From 87fbe1e96b7dee8b3f525dfc9b7be6b7be0c8edd Mon Sep 17 00:00:00 2001 From: chris warth Date: Tue, 23 Feb 2021 10:16:49 -0800 Subject: [PATCH 1/7] initial kafka integration for whylogs java client --- java/kafka-avro/README.md | 23 + java/kafka-avro/build.gradle.kts | 38 + java/kafka-avro/gradlew.bat | 89 + java/kafka-avro/settings.gradle | 9 + .../src/main/avro/lending_club.avsc | 1068 + .../com/whylogs/examples/ConsumerDemo.java | 101 + .../com/whylogs/examples/ProducerDemo.java | 114 + .../Fire_Department_Calls_for_Service.csv | 25000 ++++++++++++++++ .../whylogs/examples/lending_club_1000.csv | 1001 + 9 files changed, 27443 insertions(+) create mode 100644 java/kafka-avro/README.md create mode 100644 java/kafka-avro/build.gradle.kts create mode 100644 java/kafka-avro/gradlew.bat create mode 100644 java/kafka-avro/settings.gradle create mode 100644 java/kafka-avro/src/main/avro/lending_club.avsc create mode 100644 java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java create mode 100644 java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java create mode 100644 java/kafka-avro/src/main/resources/com/whylogs/examples/Fire_Department_Calls_for_Service.csv create mode 100644 java/kafka-avro/src/main/resources/com/whylogs/examples/lending_club_1000.csv diff --git a/java/kafka-avro/README.md b/java/kafka-avro/README.md new file mode 100644 index 0000000..1d7224c --- /dev/null +++ b/java/kafka-avro/README.md @@ -0,0 +1,23 @@ + +## Build + +These java examples are build using `gradle`. +If you already have your Java environment set up, you should not need to install anything more to build these examples. + +``` +./gradlew build +``` + +## If you get an error... + +`Could not initialize class org.codehaus.groovy.reflection.ReflectionCache` + +Try upgrading your gradle installation. +``` +gradle wrapper --gradle-version 6.3 +``` +I upgraded from 6.1 to 6.3. IntelliJ warns me that Gradle 6.3 is incompatible with +amazon-corretto-15.jdk but I have not seen ill-effects yet. + + + diff --git a/java/kafka-avro/build.gradle.kts b/java/kafka-avro/build.gradle.kts new file mode 100644 index 0000000..2a28ed7 --- /dev/null +++ b/java/kafka-avro/build.gradle.kts @@ -0,0 +1,38 @@ +plugins { + java + application + id("com.github.davidmc24.gradle.plugin.avro") version "1.0.0" +} + +application { + mainClassName = "com.whylogs.examples.WhyLogsDemo" +} + +group = "com.whylogs.example" +version = "1.0-SNAPSHOT" + +repositories { + mavenCentral() + maven(url = "https://packages.confluent.io/maven/") +} + +dependencies { + implementation("ai.whylabs:whylogs-core:0.0.2b3") + implementation("org.apache.commons:commons-csv:1.8") + implementation("org.apache.avro:avro:1.8.2") + implementation("org.apache.kafka:kafka-clients:2.7.0") + implementation("io.confluent:kafka-avro-serializer:6.1.0") +} + + +avro { + isCreateSetters.set(true) + isCreateOptionalGetters.set(false) + isGettersReturnOptional.set(false) + isOptionalGettersForNullableFieldsOnly.set(false) + fieldVisibility.set("PUBLIC_DEPRECATED") + outputCharacterEncoding.set("UTF-8") + stringType.set("String") + templateDirectory.set(null as String?) + isEnableDecimalLogicalType.set(true) +} \ No newline at end of file diff --git a/java/kafka-avro/gradlew.bat b/java/kafka-avro/gradlew.bat new file mode 100644 index 0000000..ac1b06f --- /dev/null +++ b/java/kafka-avro/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/java/kafka-avro/settings.gradle b/java/kafka-avro/settings.gradle new file mode 100644 index 0000000..f70c19a --- /dev/null +++ b/java/kafka-avro/settings.gradle @@ -0,0 +1,9 @@ +pluginManagement { + repositories { + gradlePluginPortal() + mavenCentral() + } +} + +rootProject.name = 'kafka-avro' + diff --git a/java/kafka-avro/src/main/avro/lending_club.avsc b/java/kafka-avro/src/main/avro/lending_club.avsc new file mode 100644 index 0000000..59e4e96 --- /dev/null +++ b/java/kafka-avro/src/main/avro/lending_club.avsc @@ -0,0 +1,1068 @@ +{ + "type": "record", + "namespace": "com.whylabs", + "name": "value_lending_club", + "doc": "", + "fields": [ + { + "name": "id", + "type": [ + "null", + "string" + ] + }, + { + "name": "member_id", + "type": [ + "null", + "double" + ] + }, + { + "name": "loan_amnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "funded_amnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "funded_amnt_inv", + "type": [ + "null", + "double" + ] + }, + { + "name": "term", + "type": [ + "null", + "string" + ] + }, + { + "name": "int_rate", + "type": [ + "null", + "double" + ] + }, + { + "name": "installment", + "type": [ + "null", + "double" + ] + }, + { + "name": "grade", + "type": [ + "null", + "string" + ] + }, + { + "name": "sub_grade", + "type": [ + "null", + "string" + ] + }, + { + "name": "emp_title", + "type": [ + "null", + "string" + ] + }, + { + "name": "emp_length", + "type": [ + "null", + "string" + ] + }, + { + "name": "home_ownership", + "type": [ + "null", + "string" + ] + }, + { + "name": "annual_inc", + "type": [ + "null", + "double" + ] + }, + { + "name": "verification_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "issue_d", + "type": [ + "null", + { + "type": "long", + "logicalType": "timestamp-micros" + } + ] + }, + { + "name": "loan_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "pymnt_plan", + "type": [ + "null", + "string" + ] + }, + { + "name": "url", + "type": [ + "null", + "string" + ] + }, + { + "name": "desc", + "type": [ + "null", + "double" + ] + }, + { + "name": "purpose", + "type": [ + "null", + "string" + ] + }, + { + "name": "title", + "type": [ + "null", + "string" + ] + }, + { + "name": "zip_code", + "type": [ + "null", + "string" + ] + }, + { + "name": "addr_state", + "type": [ + "null", + "string" + ] + }, + { + "name": "dti", + "type": [ + "null", + "double" + ] + }, + { + "name": "delinq_2yrs", + "type": [ + "null", + "double" + ] + }, + { + "name": "earliest_cr_line", + "type": [ + "null", + "string" + ] + }, + { + "name": "fico_range_low", + "type": [ + "null", + "double" + ] + }, + { + "name": "fico_range_high", + "type": [ + "null", + "double" + ] + }, + { + "name": "inq_last_6mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_last_delinq", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_last_record", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "pub_rec", + "type": [ + "null", + "double" + ] + }, + { + "name": "revol_bal", + "type": [ + "null", + "double" + ] + }, + { + "name": "revol_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "initial_list_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "out_prncp", + "type": [ + "null", + "double" + ] + }, + { + "name": "out_prncp_inv", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_pymnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_pymnt_inv", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_rec_prncp", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_rec_int", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_rec_late_fee", + "type": [ + "null", + "double" + ] + }, + { + "name": "recoveries", + "type": [ + "null", + "double" + ] + }, + { + "name": "collection_recovery_fee", + "type": [ + "null", + "double" + ] + }, + { + "name": "last_pymnt_d", + "type": [ + "null", + "string" + ] + }, + { + "name": "last_pymnt_amnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "next_pymnt_d", + "type": [ + "null", + "string" + ] + }, + { + "name": "last_credit_pull_d", + "type": [ + "null", + "string" + ] + }, + { + "name": "last_fico_range_high", + "type": [ + "null", + "double" + ] + }, + { + "name": "last_fico_range_low", + "type": [ + "null", + "double" + ] + }, + { + "name": "collections_12_mths_ex_med", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_last_major_derog", + "type": [ + "null", + "double" + ] + }, + { + "name": "policy_code", + "type": [ + "null", + "double" + ] + }, + { + "name": "application_type", + "type": [ + "null", + "string" + ] + }, + { + "name": "annual_inc_joint", + "type": [ + "null", + "double" + ] + }, + { + "name": "dti_joint", + "type": [ + "null", + "double" + ] + }, + { + "name": "verification_status_joint", + "type": [ + "null", + "string" + ] + }, + { + "name": "acc_now_delinq", + "type": [ + "null", + "double" + ] + }, + { + "name": "tot_coll_amt", + "type": [ + "null", + "double" + ] + }, + { + "name": "tot_cur_bal", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_acc_6m", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_act_il", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_il_12m", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_il_24m", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_rcnt_il", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_bal_il", + "type": [ + "null", + "double" + ] + }, + { + "name": "il_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_rv_12m", + "type": [ + "null", + "double" + ] + }, + { + "name": "open_rv_24m", + "type": [ + "null", + "double" + ] + }, + { + "name": "max_bal_bc", + "type": [ + "null", + "double" + ] + }, + { + "name": "all_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_rev_hi_lim", + "type": [ + "null", + "double" + ] + }, + { + "name": "inq_fi", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_cu_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "inq_last_12m", + "type": [ + "null", + "double" + ] + }, + { + "name": "acc_open_past_24mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "avg_cur_bal", + "type": [ + "null", + "double" + ] + }, + { + "name": "bc_open_to_buy", + "type": [ + "null", + "double" + ] + }, + { + "name": "bc_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "chargeoff_within_12_mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "delinq_amnt", + "type": [ + "null", + "double" + ] + }, + { + "name": "mo_sin_old_il_acct", + "type": [ + "null", + "double" + ] + }, + { + "name": "mo_sin_old_rev_tl_op", + "type": [ + "null", + "double" + ] + }, + { + "name": "mo_sin_rcnt_rev_tl_op", + "type": [ + "null", + "double" + ] + }, + { + "name": "mo_sin_rcnt_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "mort_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_recent_bc", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_recent_bc_dlq", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_recent_inq", + "type": [ + "null", + "double" + ] + }, + { + "name": "mths_since_recent_revol_delinq", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_accts_ever_120_pd", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_actv_bc_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_actv_rev_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_bc_sats", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_bc_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_il_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_op_rev_tl", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_rev_accts", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_rev_tl_bal_gt_0", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_sats", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_tl_120dpd_2m", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_tl_30dpd", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_tl_90g_dpd_24m", + "type": [ + "null", + "double" + ] + }, + { + "name": "num_tl_op_past_12m", + "type": [ + "null", + "double" + ] + }, + { + "name": "pct_tl_nvr_dlq", + "type": [ + "null", + "double" + ] + }, + { + "name": "percent_bc_gt_75", + "type": [ + "null", + "double" + ] + }, + { + "name": "pub_rec_bankruptcies", + "type": [ + "null", + "double" + ] + }, + { + "name": "tax_liens", + "type": [ + "null", + "double" + ] + }, + { + "name": "tot_hi_cred_lim", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_bal_ex_mort", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_bc_limit", + "type": [ + "null", + "double" + ] + }, + { + "name": "total_il_high_credit_limit", + "type": [ + "null", + "double" + ] + }, + { + "name": "revol_bal_joint", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_fico_range_low", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_fico_range_high", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_earliest_cr_line", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_inq_last_6mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_mort_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_open_acc", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_revol_util", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_open_act_il", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_num_rev_accts", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_chargeoff_within_12_mths", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_collections_12_mths_ex_med", + "type": [ + "null", + "double" + ] + }, + { + "name": "sec_app_mths_since_last_major_derog", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_flag", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_type", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_reason", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "deferral_term", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_amount", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_start_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_end_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "payment_plan_start_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "hardship_length", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_dpd", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_loan_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "orig_projected_additional_accrued_interest", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_payoff_balance_amount", + "type": [ + "null", + "double" + ] + }, + { + "name": "hardship_last_payment_amount", + "type": [ + "null", + "double" + ] + }, + { + "name": "disbursement_method", + "type": [ + "null", + "string" + ] + }, + { + "name": "debt_settlement_flag", + "type": [ + "null", + "string" + ] + }, + { + "name": "debt_settlement_flag_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "settlement_status", + "type": [ + "null", + "string" + ] + }, + { + "name": "settlement_date", + "type": [ + "null", + "string" + ] + }, + { + "name": "settlement_amount", + "type": [ + "null", + "double" + ] + }, + { + "name": "settlement_percentage", + "type": [ + "null", + "double" + ] + }, + { + "name": "settlement_term", + "type": [ + "null", + "double" + ] + } + ] +} \ No newline at end of file diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java new file mode 100644 index 0000000..e6304b6 --- /dev/null +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java @@ -0,0 +1,101 @@ +package com.whylogs.examples; + +import com.whylogs.core.DatasetProfile; +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVRecord; + +import java.io.InputStreamReader; +import java.io.OutputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.nio.file.StandardOpenOption; +import java.time.Instant; +import java.time.LocalDate; +import java.time.ZoneOffset; +import java.time.format.DateTimeFormatter; +import java.util.Collections; +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +/** + * An example of processing a CSV dataset. + * + * Here we demonstrate how you can extract data from a CSV file and track it with WhyLogs. We group + * the data by year here and run profiling for each year. + * + * In practice, if the data is sorted by date, you can write the data to disk as soon as you see the timestamp + * increase (in this case, you see the value of the following year in the dataset). In that way you can + * guarantee constant memory usage. + */ +public class ConsumerDemo { + + public static final String DATE_COLUMN = "Call Date"; + public static final CSVFormat CSV_FORMAT = CSVFormat.DEFAULT + .withFirstRecordAsHeader() + .withNullString("") + .withDelimiter(','); + public static final String INPUT_FILE_NAME = "Fire_Department_Calls_for_Service.csv"; + public static final DateTimeFormatter DATE_TIME_FORMAT = DateTimeFormatter.ofPattern("MM/dd/yyyy"); + + public static void main(String[] args) throws Exception { + final String sessionId = UUID.randomUUID().toString(); + final Instant now = Instant.now(); + + // map for storing the result + final Map result = new HashMap<>(); + System.out.println("opening " + INPUT_FILE_NAME); + + try (final InputStreamReader is = new InputStreamReader(ConsumerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { + final CSVParser parser = new CSVParser(is, CSV_FORMAT); + + // iterate through records + for (final CSVRecord record : parser) { + // extract date time + final Instant dataTime = parseAndTruncateToYear(record.get(DATE_COLUMN)); + + // create new dataset profile + final DatasetProfile profile = result.computeIfAbsent(dataTime, + t -> new DatasetProfile(sessionId, now, t, Collections.emptyMap(), Collections.emptyMap())); + + // track multiple features + profile.track(record.toMap()); + } + } + + System.out.println("Number of profiles: " + result.size()); + + // write to a folder called "output" + final Path output = Paths.get("output"); + Files.createDirectories(output); + + for (Map.Entry entry : result.entrySet()) { + final DatasetProfile profile = entry.getValue(); + // associate the year with filename + final String fileName = String.format("profile_%s.bin", entry.getKey().atZone(ZoneOffset.UTC).getYear()); + + // write out the output + try (final OutputStream os = + Files.newOutputStream(output.resolve(fileName), StandardOpenOption.WRITE, StandardOpenOption.CREATE)) { + profile.toProtobuf().build().writeDelimitedTo(os); + } + } + } + + /** + * Parse a text to an Instant object. This is used to extract data from the CSV and map + * them into DatasetProfile's dataset_timestamp + * + * @param text input text + * @return time in UTC as {@link Instant} + */ + private static Instant parseAndTruncateToYear(String text) { + return LocalDate.parse(text, DATE_TIME_FORMAT) + .atStartOfDay() + .withDayOfMonth(1) + .withMonth(1) + .atZone(ZoneOffset.UTC).toInstant(); + } +} diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java new file mode 100644 index 0000000..244c101 --- /dev/null +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java @@ -0,0 +1,114 @@ +package com.whylogs.examples; + +import com.whylabs; +import com.whylogs.core.DatasetProfile; +import org.apache.avro.Schema; +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVParser; +import org.apache.commons.csv.CSVRecord; +import org.apache.kafka.clients.producer.KafkaProducer; +import org.apache.kafka.clients.producer.ProducerConfig; + +import java.io.InputStreamReader; +import java.io.OutputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.nio.file.StandardOpenOption; +import java.time.Instant; +import java.time.LocalDate; +import java.time.ZoneOffset; +import java.time.format.DateTimeFormatter; +import java.util.*; + +/** + * An example of processing a CSV dataset. + * + * Here we demonstrate how you can extract data from a CSV file and track it with WhyLogs. We group + * the data by year here and run profiling for each year. + * + * In practice, if the data is sorted by date, you can write the data to disk as soon as you see the timestamp + * increase (in this case, you see the value of the following year in the dataset). In that way you can + * guarantee constant memory usage. + */ +public class ProducerDemo { + + public static final String DATE_COLUMN = "Call Date"; + public static final CSVFormat CSV_FORMAT = CSVFormat.DEFAULT + .withFirstRecordAsHeader() + .withNullString("") + .withDelimiter(','); + public static final String INPUT_FILE_NAME = "Fire_Department_Calls_for_Service.csv"; + public static final DateTimeFormatter DATE_TIME_FORMAT = DateTimeFormatter.ofPattern("MM/dd/yyyy"); + + public static void main(String[] args) throws Exception { + final String sessionId = UUID.randomUUID().toString(); + final Instant now = Instant.now(); + + + Schema schema = value_lending_club.getClassSchema(); + + Properties props = new Properties(); + props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092"); + props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, + org.apache.kafka.common.serialization.StringSerializer.class); + props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, + io.confluent.kafka.serializers.KafkaAvroSerializer.class); + props.put("schema.registry.url", "http://localhost:8081"); + KafkaProducer producer = new KafkaProducer(props); + + // map for storing the result + final Map result = new HashMap<>(); + System.out.println("opening " + INPUT_FILE_NAME); + + try (final InputStreamReader is = new InputStreamReader(ProducerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { + final CSVParser parser = new CSVParser(is, CSV_FORMAT); + + // iterate through records + for (final CSVRecord record : parser) { + // extract date time + final Instant dataTime = parseAndTruncateToYear(record.get(DATE_COLUMN)); + + // create new dataset profile + final DatasetProfile profile = result.computeIfAbsent(dataTime, + t -> new DatasetProfile(sessionId, now, t, Collections.emptyMap(), Collections.emptyMap())); + + // track multiple features + profile.track(record.toMap()); + } + } + + System.out.println("Number of profiles: " + result.size()); + + // write to a folder called "output" + final Path output = Paths.get("output"); + Files.createDirectories(output); + + for (Map.Entry entry : result.entrySet()) { + final DatasetProfile profile = entry.getValue(); + // associate the year with filename + final String fileName = String.format("profile_%s.bin", entry.getKey().atZone(ZoneOffset.UTC).getYear()); + + // write out the output + try (final OutputStream os = + Files.newOutputStream(output.resolve(fileName), StandardOpenOption.WRITE, StandardOpenOption.CREATE)) { + profile.toProtobuf().build().writeDelimitedTo(os); + } + } + } + + /** + * Parse a text to an Instant object. This is used to extract data from the CSV and map + * them into DatasetProfile's dataset_timestamp + * + * @param text input text + * @return time in UTC as {@link Instant} + */ + private static Instant parseAndTruncateToYear(String text) { + return LocalDate.parse(text, DATE_TIME_FORMAT) + .atStartOfDay() + .withDayOfMonth(1) + .withMonth(1) + .atZone(ZoneOffset.UTC).toInstant(); + } +} diff --git a/java/kafka-avro/src/main/resources/com/whylogs/examples/Fire_Department_Calls_for_Service.csv b/java/kafka-avro/src/main/resources/com/whylogs/examples/Fire_Department_Calls_for_Service.csv new file mode 100644 index 0000000..6014cc9 --- /dev/null +++ b/java/kafka-avro/src/main/resources/com/whylogs/examples/Fire_Department_Calls_for_Service.csv @@ -0,0 +1,25000 @@ +Call Number,Unit ID,Incident Number,Call Type,Call Date,Watch Date,Received DtTm,Entry DtTm,Dispatch DtTm,Response DtTm,On Scene DtTm,Transport DtTm,Hospital DtTm,Call Final Disposition,Available DtTm,Address,City,Zipcode of Incident,Battalion,Station Area,Box,Original Priority,Priority,Final Priority,ALS Unit,Call Type Group,Number of Alarms,Unit Type,Unit sequence in call dispatch,Fire Prevention District,Supervisor District,Neighborhood District,Location,RowID +142480332,B02,14086309,Alarms,09/05/2014,09/04/2014,09/05/2014 03:15:13 AM,09/05/2014 03:17:26 AM,09/05/2014 03:18:18 AM,09/05/2014 03:20:30 AM,09/05/2014 03:24:11 AM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,Fire,09/05/2014 03:33:20 AM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,3,3,3,true,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7695711762103, -122.449920089485)",142480332-B02 +153022542,T02,15115908,Structure Fire,10/29/2015,10/29/2015,10/29/2015 03:39:06 PM,10/29/2015 03:39:25 PM,10/29/2015 03:39:49 PM,10/29/2015 03:40:55 PM,10/29/2015 03:43:21 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Fire,10/29/2015 03:51:21 PM,BATTERY ST/VALLEJO ST,San Francisco,94111,B01,13,1155,3,3,3,false,Alarm,1,TRUCK,4,1,3,Financial District/South Beach,"(37.7995314468258, -122.401240243673)",153022542-T02 +143451112,AM04,14122741,Medical Incident,12/11/2014,12/11/2014,12/11/2014 09:02:07 AM,12/11/2014 09:03:01 AM,12/11/2014 09:03:11 AM,12/11/2014 09:06:19 AM,12/11/2014 09:20:16 AM,12/11/2014 09:20:26 AM,12/11/2014 09:43:41 AM,Code 2 Transport,12/11/2014 10:06:26 AM,300 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7668035178194, -122.440704687809)",143451112-AM04 +141660300,E01,14057129,Medical Incident,06/15/2014,06/14/2014,06/15/2014 02:04:57 AM,06/15/2014 02:06:42 AM,06/15/2014 02:10:01 AM,06/15/2014 02:12:55 AM,06/15/2014 02:24:55 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Code 2 Transport,06/15/2014 02:51:39 AM,0 Block of HALLAM ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7756902570435, -122.408609057895)",141660300-E01 +152633454,E36,15100829,Outside Fire,09/20/2015,09/20/2015,09/20/2015 08:15:00 PM,09/20/2015 08:15:53 PM,09/20/2015 08:16:17 PM,09/20/2015 08:18:07 PM,04/25/2016 01:08:14 PM,04/25/2016 01:08:14 PM,04/25/2016 01:08:14 PM,Fire,09/20/2015 08:22:11 PM,MARKET ST/VAN NESS AV,San Francisco,94103,B02,36,3211,3,3,3,true,Fire,1,ENGINE,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",152633454-E36 +160941229,62,16037213,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:11:05 AM,04/03/2016 10:13:32 AM,04/03/2016 10:13:50 AM,04/03/2016 10:14:04 AM,04/03/2016 10:17:26 AM,04/03/2016 10:28:20 AM,04/03/2016 11:00:27 AM,Code 2 Transport,04/03/2016 11:27:46 AM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160941229-62 +142672360,E43,14093558,Medical Incident,09/24/2014,09/24/2014,09/24/2014 03:07:36 PM,09/24/2014 03:08:31 PM,09/24/2014 03:09:33 PM,09/24/2014 03:11:28 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 03:11:52 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7188461081754, -122.439092837429)",142672360-E43 +152052982,E11,15078184,Medical Incident,07/24/2015,07/24/2015,07/24/2015 05:45:39 PM,07/24/2015 05:49:36 PM,07/24/2015 05:50:18 PM,07/24/2015 05:51:14 PM,07/24/2015 05:52:56 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Code 2 Transport,07/24/2015 06:02:50 PM,1500 Block of DOLORES ST,San Francisco,94110,B06,11,5576,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7450456172368, -122.424347725679)",152052982-E11 +150172539,RC3,15006796,Medical Incident,01/17/2015,01/17/2015,01/17/2015 04:56:52 PM,01/17/2015 04:58:19 PM,01/17/2015 05:07:34 PM,01/17/2015 05:07:34 PM,01/17/2015 05:36:03 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Code 3 Transport,01/17/2015 05:36:07 PM,BERNAL HEIGHTS BL/FOLSOM ST,San Francisco,94110,B06,11,5663,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,6,9,Bernal Heights,"(37.7435915885579, -122.412277634027)",150172539-RC3 +160921973,65,16036463,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:12:55 PM,04/01/2016 02:14:42 PM,04/01/2016 02:16:11 PM,04/01/2016 02:16:19 PM,04/01/2016 02:25:50 PM,04/01/2016 02:36:59 PM,04/01/2016 02:56:19 PM,Code 2 Transport,04/01/2016 03:26:51 PM,1800 Block of CHESTNUT ST,San Francisco,94123,B04,16,3445,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8011854069176, -122.433790937219)",160921973-65 +143130780,E16,14110820,Medical Incident,11/09/2014,11/08/2014,11/09/2014 07:27:32 AM,11/09/2014 07:28:46 AM,11/09/2014 07:29:17 AM,11/09/2014 07:31:07 AM,11/09/2014 07:32:10 AM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Code 2 Transport,11/09/2014 07:45:01 AM,2100 Block of GREENWICH ST,San Francisco,94123,B04,16,3553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7991105071928, -122.435056310717)",143130780-E16 +142463717,RC1,14085854,Medical Incident,09/03/2014,09/03/2014,09/03/2014 09:19:57 PM,09/03/2014 09:19:57 PM,09/03/2014 09:59:44 PM,09/03/2014 10:02:23 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Code 2 Transport,09/03/2014 10:11:32 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",142463717-RC1 +160960310,70,16037872,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:03:12 AM,04/05/2016 04:04:35 AM,04/05/2016 04:05:02 AM,04/05/2016 04:05:10 AM,04/05/2016 04:11:13 AM,04/05/2016 04:23:35 AM,04/05/2016 04:40:08 AM,Code 2 Transport,04/05/2016 05:13:49 AM,2300 Block of 18TH AVE,San Francisco,94116,B08,40,7416,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7440272934242, -122.474757875278)",160960310-70 +151901741,E07,15072530,Alarms,07/09/2015,07/09/2015,07/09/2015 12:37:01 PM,07/09/2015 12:37:50 PM,07/09/2015 12:37:56 PM,07/09/2015 12:39:39 PM,07/09/2015 12:40:32 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Fire,07/09/2015 12:47:40 PM,600 Block of POTRERO AVE,San Francisco,94110,B10,7,5427,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7612904814523, -122.407255401788)",151901741-E07 +151253308,E35,15047504,Medical Incident,05/05/2015,05/05/2015,05/05/2015 07:15:20 PM,05/05/2015 07:17:30 PM,05/05/2015 07:17:44 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Code 2 Transport,05/05/2015 07:20:46 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",151253308-E35 +151673573,70,15064030,Medical Incident,06/16/2015,06/16/2015,06/16/2015 10:39:25 PM,06/16/2015 10:40:36 PM,06/16/2015 10:41:05 PM,06/16/2015 10:41:15 PM,06/16/2015 10:44:24 PM,06/16/2015 11:01:59 PM,06/16/2015 11:08:10 PM,Code 2 Transport,06/16/2015 11:28:48 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",151673573-70 +160981117,AM02,16038836,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:25:20 AM,04/07/2016 09:27:05 AM,04/07/2016 09:27:23 AM,04/07/2016 09:28:22 AM,04/07/2016 09:35:03 AM,04/07/2016 09:53:19 AM,04/07/2016 10:09:06 AM,Code 2 Transport,04/07/2016 11:03:33 AM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,945,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,3,North Beach,"(37.8081679785862, -122.416634717802)",160981117-AM02 +143522265,E31,14125806,Alarms,12/18/2014,12/18/2014,12/18/2014 03:05:24 PM,12/18/2014 03:05:31 PM,12/18/2014 03:05:56 PM,12/18/2014 03:06:21 PM,12/18/2014 03:09:04 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Fire,12/18/2014 03:13:51 PM,3900 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7810182571422, -122.461592925475)",143522265-E31 +151220192,53,15046118,Medical Incident,05/02/2015,05/01/2015,05/02/2015 01:14:42 AM,05/02/2015 01:18:29 AM,05/02/2015 01:24:06 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Patient Declined Transport,05/02/2015 01:25:38 AM,1300 Block of VAN NESS AVE,San Francisco,94109,B04,3,3156,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7877876566277, -122.421631319974)",151220192-53 +142053224,E22,14071110,Medical Incident,07/24/2014,07/24/2014,07/24/2014 07:41:38 PM,07/24/2014 07:44:32 PM,07/24/2014 07:44:59 PM,07/24/2014 07:45:41 PM,07/24/2014 07:48:36 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Code 2 Transport,07/24/2014 08:00:08 PM,IRVING ST/21ST AV,San Francisco,94122,B08,22,7424,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.763467414062, -122.479266517798)",142053224-E22 +160960035,AM22,16037846,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:15:18 AM,04/05/2016 12:15:18 AM,04/05/2016 12:16:15 AM,04/05/2016 12:16:48 AM,04/05/2016 12:20:56 AM,04/05/2016 12:43:26 AM,04/05/2016 12:50:51 AM,Code 3 Transport,04/05/2016 01:08:31 AM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7095611088205, -122.450270109478)",160960035-AM22 +153441430,E26,15132393,Medical Incident,12/10/2015,12/10/2015,12/10/2015 11:01:57 AM,12/10/2015 11:02:34 AM,12/10/2015 11:03:04 AM,12/10/2015 11:05:27 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/10/2015 11:09:26 AM,600 Block of HOLLY PARK CIR,San Francisco,94110,B06,32,564,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Bernal Heights,"(37.7368887944401, -122.421170118394)",153441430-E26 +160931027,77,16036777,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:37:03 AM,04/02/2016 09:37:03 AM,04/02/2016 09:38:40 AM,04/02/2016 09:38:53 AM,04/02/2016 09:42:09 AM,04/02/2016 09:55:26 AM,04/02/2016 10:11:04 AM,Code 2 Transport,04/02/2016 10:44:11 AM,LARKIN ST/HAYES ST,San Francisco,94102,B02,36,1646,A,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7777227510073, -122.416401071795)",160931027-77 +141912973,E41,14066310,Medical Incident,07/10/2014,07/10/2014,07/10/2014 06:58:15 PM,07/10/2014 07:00:13 PM,07/10/2014 07:03:58 PM,07/10/2014 07:04:53 PM,07/10/2014 07:10:08 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Code 2 Transport,07/10/2014 07:26:57 PM,900 Block of LARKIN ST,San Francisco,94109,B04,3,1641,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7863251027379, -122.418201870328)",141912973-E41 +160961432,56,16037976,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:24:10 AM,04/05/2016 11:26:00 AM,04/05/2016 11:27:19 AM,04/05/2016 11:27:42 AM,04/05/2016 11:43:03 AM,04/05/2016 11:53:30 AM,04/05/2016 12:03:14 PM,Code 2 Transport,04/05/2016 12:34:16 PM,1800 Block of 25TH ST,San Francisco,94107,B10,37,2615,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7523071859772, -122.397488168993)",160961432-56 +160931927,75,16036886,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:58:19 PM,04/02/2016 01:58:19 PM,04/02/2016 02:07:24 PM,04/02/2016 02:08:36 PM,04/02/2016 02:13:41 PM,04/02/2016 02:27:27 PM,04/02/2016 02:43:49 PM,Code 2 Transport,04/02/2016 03:21:10 PM,1000 Block of CAPP ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7499099820999, -122.417055896284)",160931927-75 +152343573,RC1,15089392,Medical Incident,08/22/2015,08/22/2015,08/22/2015 09:06:33 PM,08/22/2015 09:07:10 PM,08/22/2015 09:09:05 PM,08/22/2015 09:09:05 PM,08/22/2015 09:11:23 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Code 2 Transport,08/22/2015 09:34:21 PM,300 Block of SPEAR ST,San Francisco,94105,B03,35,2113,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.7894150834446, -122.390249078414)",152343573-RC1 +160992184,71,16039346,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:08:56 PM,04/08/2016 03:09:56 PM,04/08/2016 03:12:29 PM,04/08/2016 03:13:35 PM,04/08/2016 03:20:26 PM,04/08/2016 03:42:44 PM,04/08/2016 04:19:26 PM,Code 2 Transport,04/08/2016 04:30:26 PM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",160992184-71 +160971459,AM10,16038371,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:57:12 AM,04/06/2016 10:58:29 AM,04/06/2016 10:59:19 AM,04/06/2016 11:01:05 AM,04/06/2016 11:06:29 AM,04/06/2016 11:17:32 AM,04/06/2016 11:45:43 AM,Code 2 Transport,04/06/2016 12:11:20 PM,100 Block of 5TH ST,San Francisco,94103,B03,1,2246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7817509861584, -122.40515072935)",160971459-AM10 +141953557,E12,14067722,Medical Incident,07/14/2014,07/14/2014,07/14/2014 10:47:23 PM,07/14/2014 10:47:58 PM,07/14/2014 10:48:22 PM,07/14/2014 10:49:46 PM,07/14/2014 10:52:17 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Code 2 Transport,07/14/2014 10:57:55 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,true,Non Life-threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",141953557-E12 +151721852,E06,15065708,Medical Incident,06/21/2015,06/21/2015,06/21/2015 02:20:10 PM,06/21/2015 02:21:22 PM,06/21/2015 02:21:49 PM,06/21/2015 02:22:54 PM,06/21/2015 02:25:31 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Code 2 Transport,06/21/2015 02:52:25 PM,300 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.76701047078, -122.422020137013)",151721852-E06 +141060309,KM11,14035842,Medical Incident,04/16/2014,04/16/2014,04/16/2014 04:02:42 PM,04/16/2014 04:04:39 PM,04/16/2014 04:04:57 PM,04/16/2014 04:06:20 PM,04/16/2014 04:11:18 PM,04/16/2014 04:25:30 PM,04/16/2014 04:33:17 PM,Code 2 Transport,04/16/2014 05:25:01 PM,1100 Block of MARKET ST,SAN FRANCISCO,94103,B02,36,2316,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",141060309-KM11 +142090688,T12,14072338,Medical Incident,07/28/2014,07/28/2014,07/28/2014 08:22:29 AM,07/28/2014 08:22:29 AM,07/28/2014 08:23:55 AM,07/28/2014 08:24:57 AM,07/28/2014 08:26:50 AM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Code 3 Transport,07/28/2014 08:27:29 AM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,E,E,3,false,Non Life-threatening,1,TRUCK,3,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",142090688-T12 +152351711,E03,15089586,Medical Incident,08/23/2015,08/23/2015,08/23/2015 12:54:00 PM,08/23/2015 12:54:56 PM,08/23/2015 12:55:48 PM,08/23/2015 12:57:06 PM,08/23/2015 12:58:53 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Code 2 Transport,08/23/2015 12:59:38 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",152351711-E03 +141180102,T15,14039738,Gas Leak (Natural and LP Gases),04/28/2014,04/28/2014,04/28/2014 08:51:25 AM,04/28/2014 08:55:04 AM,04/28/2014 08:56:32 AM,04/28/2014 08:57:09 AM,04/28/2014 09:00:55 AM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Fire,04/28/2014 09:03:09 AM,200 Block of PLYMOUTH AVE,SAN FRANCISCO,94112,B09,33,8371,3,3,3,false,Alarm,1,TRUCK,3,9,11,Oceanview/Merced/Ingleside,"(37.7127562217408, -122.456118377299)",141180102-T15 +160992903,KM01,16039409,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:00:03 PM,04/08/2016 06:00:03 PM,04/08/2016 06:01:03 PM,04/08/2016 06:01:38 PM,04/08/2016 06:29:40 PM,04/08/2016 06:50:53 PM,04/08/2016 07:12:14 PM,Code 2 Transport,04/08/2016 07:39:52 PM,MARKET ST/6TH ST,San Francisco,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160992903-KM01 +152620490,E31,15100029,Alarms,09/19/2015,09/18/2015,09/19/2015 03:25:36 AM,09/19/2015 03:27:24 AM,09/19/2015 03:27:44 AM,09/19/2015 03:29:27 AM,09/19/2015 03:31:23 AM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Fire,09/19/2015 03:42:13 AM,300 Block of 11TH AVE,San Francisco,94118,B07,31,7141,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7817321022893, -122.469767595348)",152620490-E31 +151502155,RC2,15057134,Medical Incident,05/30/2015,05/30/2015,05/30/2015 03:12:05 PM,05/30/2015 03:12:20 PM,05/30/2015 03:12:34 PM,05/30/2015 03:15:33 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Code 2 Transport,05/30/2015 03:16:53 PM,300 Block of DE LONG ST,San Francisco,94112,B09,33,8365,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,11,Outer Mission,"(37.709579867287, -122.464851258881)",151502155-RC2 +150302768,60,15011664,Medical Incident,01/30/2015,01/30/2015,01/30/2015 05:10:33 PM,01/30/2015 05:12:39 PM,01/30/2015 05:19:56 PM,01/30/2015 05:20:13 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Unable to Locate,01/30/2015 05:26:08 PM,LEAVENWORTH ST/OFARRELL ST,San Francisco,94109,B04,3,1544,2,2,2,false,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",150302768-60 +152272959,CR1,15086649,Water Rescue,08/15/2015,08/15/2015,08/15/2015 05:07:45 PM,08/15/2015 05:11:10 PM,08/15/2015 05:11:44 PM,08/15/2015 05:14:20 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Fire,08/15/2015 05:50:12 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,false,Fire,1,SUPPORT,8,7,2,Presidio,"(37.7915253713789, -122.483480228628)",152272959-CR1 +151050574,KM09,15039602,Medical Incident,04/15/2015,04/14/2015,04/15/2015 07:10:06 AM,04/15/2015 07:11:07 AM,04/15/2015 07:11:50 AM,04/15/2015 07:12:53 AM,04/15/2015 07:21:24 AM,04/15/2015 07:38:45 AM,04/15/2015 08:26:02 AM,Code 2 Transport,04/15/2015 08:29:49 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",151050574-KM09 +150760059,85,15028991,Medical Incident,03/17/2015,03/16/2015,03/17/2015 12:25:23 AM,03/17/2015 12:29:28 AM,03/17/2015 12:29:41 AM,03/17/2015 12:31:32 AM,03/17/2015 12:35:52 AM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Patient Declined Transport,03/17/2015 12:40:00 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",150760059-85 +160962156,82,16038043,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:17:16 PM,04/05/2016 02:17:45 PM,04/05/2016 02:17:54 PM,04/05/2016 02:18:01 PM,04/05/2016 02:22:04 PM,04/05/2016 02:37:11 PM,04/05/2016 03:01:36 PM,Code 2 Transport,04/05/2016 03:11:02 PM,2100 Block of POWELL ST,San Francisco,94133,B01,28,131,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8044382972452, -122.411605476142)",160962156-82 +151792039,E19,15068252,Medical Incident,06/28/2015,06/28/2015,06/28/2015 02:06:42 PM,06/28/2015 02:07:21 PM,06/28/2015 02:08:21 PM,06/28/2015 02:09:42 PM,06/28/2015 02:12:35 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 02:30:50 PM,100 Block of RIVERTON DR,San Francisco,94132,B08,19,8742,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.731499288175, -122.487171386918)",151792039-E19 +152512441,60,15095946,Medical Incident,09/08/2015,09/08/2015,09/08/2015 02:48:19 PM,09/08/2015 02:49:40 PM,09/08/2015 02:49:49 PM,09/08/2015 02:53:02 PM,09/08/2015 02:59:03 PM,09/08/2015 03:15:13 PM,09/08/2015 03:29:52 PM,Code 2 Transport,09/08/2015 04:08:12 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",152512441-60 +141551878,AM20,14053314,Medical Incident,06/04/2014,06/04/2014,06/04/2014 01:36:14 PM,06/04/2014 01:38:32 PM,06/04/2014 01:53:08 PM,06/04/2014 01:53:08 PM,06/04/2014 02:09:48 PM,06/04/2014 02:23:50 PM,06/04/2014 02:51:24 PM,Code 2 Transport,06/04/2014 03:16:59 PM,600 Block of HEARST AVE,San Francisco,94112,B09,15,8234,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7306216527598, -122.452274336751)",141551878-AM20 +153101256,T13,15119108,Alarms,11/06/2015,11/06/2015,11/06/2015 10:50:55 AM,11/06/2015 10:52:06 AM,11/06/2015 10:53:20 AM,11/06/2015 10:55:38 AM,11/06/2015 10:59:47 AM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Fire,11/06/2015 11:07:04 AM,1200 Block of MONTGOMERY ST,San Francisco,94111,B01,28,1227,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8003464419765, -122.40421934123)",153101256-T13 +141240050,RC3,14041910,Medical Incident,05/04/2014,05/03/2014,05/04/2014 03:21:29 AM,05/04/2014 03:25:01 AM,05/04/2014 05:20:40 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Code 2 Transport,05/04/2014 05:22:41 AM,MISSION ST/ACTON ST,,94112,B09,33,6213,,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,4,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",141240050-RC3 +141900833,T01,14065760,Alarms,07/09/2014,07/09/2014,07/09/2014 08:50:26 AM,07/09/2014 08:51:51 AM,07/09/2014 08:52:42 AM,07/09/2014 08:53:36 AM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Fire,07/09/2014 08:59:16 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",141900833-T01 +153401730,E01,15130836,Medical Incident,12/06/2015,12/06/2015,12/06/2015 12:59:30 PM,12/06/2015 01:02:51 PM,12/06/2015 01:03:01 PM,12/06/2015 01:04:58 PM,12/06/2015 01:06:41 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,Code 2 Transport,12/06/2015 01:15:40 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7791285379843, -122.408030111231)",153401730-E01 +142720999,AM04,14095321,Medical Incident,09/29/2014,09/29/2014,09/29/2014 09:44:32 AM,09/29/2014 09:45:41 AM,09/29/2014 09:46:59 AM,09/29/2014 09:47:58 AM,09/29/2014 09:56:17 AM,09/29/2014 10:12:23 AM,09/29/2014 10:36:31 AM,Code 2 Transport,09/29/2014 11:16:59 AM,100 Block of TOWNSEND ST,San Francisco,94107,B03,8,2154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Mission Bay,"(37.7796910137658, -122.391588816975)",142720999-AM04 +141693091,E19,14058493,Other,06/18/2014,06/18/2014,06/18/2014 08:29:34 PM,06/18/2014 08:29:34 PM,06/18/2014 08:32:49 PM,06/18/2014 08:34:13 PM,06/18/2014 08:36:46 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,No Merit,06/18/2014 08:43:32 PM,300 Block of GARCES DR,San Francisco,94132,B08,19,8484,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7162735350246, -122.482439449334)",141693091-E19 +150081061,E21,15003061,Alarms,01/08/2015,01/08/2015,01/08/2015 09:42:20 AM,01/08/2015 09:44:14 AM,01/08/2015 09:44:31 AM,01/08/2015 09:45:50 AM,01/08/2015 09:48:28 AM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Fire,01/08/2015 10:00:06 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150081061-E21 +153473074,E38,15133831,Structure Fire,12/13/2015,12/13/2015,12/13/2015 08:06:21 PM,12/13/2015 08:06:57 PM,12/13/2015 08:07:09 PM,12/13/2015 08:08:11 PM,12/13/2015 08:09:16 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Fire,12/13/2015 08:24:08 PM,1800 Block of PACIFIC AVE,San Francisco,94109,B04,38,3231,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7945566533258, -122.425703947433)",153473074-E38 +142561979,T02,14089440,Fuel Spill,09/13/2014,09/13/2014,09/13/2014 01:40:29 PM,09/13/2014 01:44:01 PM,09/13/2014 01:45:31 PM,09/13/2014 01:45:49 PM,09/13/2014 01:49:18 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 02:35:10 PM,200 Block of GEARY ST,San Francisco,94108,B01,1,1323,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",142561979-T02 +161000701,55,16039648,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:12:13 AM,04/09/2016 07:13:54 AM,04/09/2016 07:14:52 AM,04/09/2016 07:14:59 AM,04/09/2016 07:20:32 AM,04/09/2016 07:57:07 AM,04/09/2016 08:26:56 AM,Code 2 Transport,04/09/2016 09:04:04 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",161000701-55 +160990301,AM24,16039177,Medical Incident,04/08/2016,04/07/2016,04/08/2016 03:12:03 AM,04/08/2016 03:12:03 AM,04/08/2016 03:12:03 AM,04/08/2016 03:12:03 AM,04/08/2016 03:12:03 AM,04/08/2016 03:18:04 AM,04/08/2016 03:31:50 AM,Code 2 Transport,04/08/2016 04:07:53 AM,100 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2157,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7868609000277, -122.399689492621)",160990301-AM24 +160974093,89,16038659,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:37:10 PM,04/06/2016 08:37:43 PM,04/06/2016 08:38:59 PM,04/06/2016 08:39:07 PM,04/06/2016 08:42:14 PM,04/06/2016 09:03:18 PM,04/06/2016 09:08:45 PM,Code 2 Transport,04/06/2016 09:45:31 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160974093-89 +160932597,61,16036957,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:05:56 PM,04/02/2016 05:08:25 PM,04/02/2016 05:09:05 PM,04/02/2016 05:09:42 PM,04/02/2016 05:12:52 PM,04/02/2016 05:38:58 PM,04/02/2016 05:58:05 PM,Code 2 Transport,04/02/2016 06:37:06 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160932597-61 +141640382,E43,14056426,Medical Incident,06/13/2014,06/12/2014,06/13/2014 04:11:46 AM,06/13/2014 04:13:10 AM,06/13/2014 04:14:29 AM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/13/2014 04:15:41 AM,0 Block of CIELITO DR,San Francisco,94134,B09,43,6246,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7096253280817, -122.422023475946)",141640382-E43 +152052085,E20,15078107,Alarms,07/24/2015,07/24/2015,07/24/2015 02:12:14 PM,07/24/2015 02:13:51 PM,07/24/2015 02:14:01 PM,07/24/2015 02:15:38 PM,07/24/2015 02:16:58 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Fire,07/24/2015 02:20:39 PM,0 Block of STARVIEW WAY,San Francisco,94131,B08,20,5356,3,3,3,true,Alarm,1,ENGINE,2,8,7,Twin Peaks,"(37.7502049940208, -122.451518882892)",152052085-E20 +152531270,57,15096670,Traffic Collision,09/10/2015,09/10/2015,09/10/2015 10:23:31 AM,09/10/2015 10:23:47 AM,09/10/2015 10:25:10 AM,09/10/2015 10:25:23 AM,09/10/2015 10:31:17 AM,09/10/2015 10:46:13 AM,09/10/2015 10:46:29 AM,Code 2 Transport,09/10/2015 11:26:28 AM,ALEMANY BL/MOUNT VERNON AV,San Francisco,94112,B09,15,8333,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7160794278359, -122.444563067411)",152531270-57 +153063333,E36,15117750,Structure Fire,11/02/2015,11/02/2015,11/02/2015 08:20:59 PM,11/02/2015 08:20:59 PM,11/02/2015 08:21:16 PM,11/02/2015 08:24:13 PM,11/02/2015 08:24:15 PM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/02/2015 08:24:39 PM,100 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",153063333-E36 +160930524,AM20,16036721,Medical Incident,04/02/2016,04/01/2016,04/02/2016 04:46:36 AM,04/02/2016 04:48:30 AM,04/02/2016 04:49:00 AM,04/02/2016 04:49:43 AM,04/02/2016 05:00:54 AM,04/02/2016 05:09:01 AM,04/02/2016 05:28:24 AM,Code 2 Transport,04/02/2016 05:46:04 AM,0 Block of REUEL CT,San Francisco,94124,B10,25,652,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7364122535473, -122.382919645814)",160930524-AM20 +160974014,88,16038647,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:13:37 PM,04/06/2016 08:14:25 PM,04/06/2016 08:15:30 PM,04/06/2016 08:15:58 PM,04/06/2016 08:19:51 PM,04/06/2016 08:37:21 PM,04/06/2016 08:51:05 PM,Code 2 Transport,04/06/2016 09:26:53 PM,3600 Block of CLAY ST,San Francisco,94118,B07,10,4426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7882786698444, -122.45293673498)",160974014-88 +150653376,E19,15024965,Alarms,03/06/2015,03/06/2015,03/06/2015 06:41:13 PM,03/06/2015 06:42:10 PM,03/06/2015 06:42:16 PM,03/06/2015 06:43:32 PM,03/06/2015 06:47:30 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Fire,03/06/2015 06:55:53 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",150653376-E19 +142273198,85,14078993,Medical Incident,08/15/2014,08/15/2014,08/15/2014 07:44:19 PM,08/15/2014 07:46:03 PM,08/15/2014 07:53:27 PM,08/15/2014 07:53:54 PM,08/15/2014 08:08:44 PM,08/15/2014 08:19:02 PM,08/15/2014 08:27:47 PM,Code 2 Transport,08/15/2014 09:07:56 PM,2500 Block of GOUGH ST,San Francisco,94123,B04,38,3246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7967275149772, -122.427054807537)",142273198-85 +143503891,B04,14125191,Alarms,12/16/2014,12/16/2014,12/16/2014 11:58:15 PM,12/17/2014 12:00:20 AM,12/17/2014 12:01:07 AM,12/17/2014 12:03:02 AM,12/17/2014 12:07:18 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/17/2014 12:22:33 AM,2200 Block of TURK BLVD,San Francisco,94118,B05,21,4363,3,3,3,false,Alarm,1,CHIEF,3,5,5,Lone Mountain/USF,"(37.7786316785476, -122.446526415806)",143503891-B04 +142561680,68,14089410,Medical Incident,09/13/2014,09/13/2014,09/13/2014 12:18:24 PM,09/13/2014 12:19:37 PM,09/13/2014 12:20:26 PM,09/13/2014 12:21:33 PM,09/13/2014 12:26:36 PM,09/13/2014 12:44:54 PM,09/13/2014 12:50:57 PM,Code 2 Transport,09/13/2014 01:31:19 PM,MCALLISTER ST/LYON ST,San Francisco,94117,B05,21,4254,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7771644445843, -122.443321052631)",142561680-68 +150420303,E03,15016229,Medical Incident,02/11/2015,02/10/2015,02/11/2015 03:39:03 AM,02/11/2015 03:40:40 AM,02/11/2015 03:41:45 AM,02/11/2015 03:44:22 AM,02/11/2015 03:46:59 AM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Fire,02/11/2015 03:52:22 AM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",150420303-E03 +152550807,E01,15097427,Medical Incident,09/12/2015,09/12/2015,09/12/2015 08:19:01 AM,09/12/2015 08:19:01 AM,09/12/2015 08:21:07 AM,09/12/2015 08:21:07 AM,09/12/2015 08:23:12 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Code 3 Transport,09/12/2015 08:31:48 AM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,A,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",152550807-E01 +142691398,E41,14094246,Medical Incident,09/26/2014,09/26/2014,09/26/2014 11:05:57 AM,09/26/2014 11:08:46 AM,09/26/2014 11:13:16 AM,09/26/2014 11:13:40 AM,09/26/2014 11:16:00 AM,04/25/2016 01:14:53 PM,04/25/2016 01:14:53 PM,Code 2 Transport,09/26/2014 11:28:08 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",142691398-E41 +150741506,AM06,15028383,Medical Incident,03/15/2015,03/15/2015,03/15/2015 11:41:10 AM,03/15/2015 11:41:27 AM,03/15/2015 11:41:47 AM,03/15/2015 11:42:32 AM,03/15/2015 12:04:45 PM,03/15/2015 12:31:29 PM,03/15/2015 12:52:51 PM,Code 2 Transport,03/15/2015 01:26:06 PM,400 Block of MIDDLE WEST DR,San Francisco,94122,B08,23,7565,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7664523569659, -122.495934078446)",150741506-AM06 +141110403,E05,14037621,Medical Incident,04/21/2014,04/21/2014,04/21/2014 09:33:15 PM,04/21/2014 09:35:08 PM,04/21/2014 09:35:45 PM,04/21/2014 09:37:10 PM,04/21/2014 09:38:11 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Code 2 Transport,04/21/2014 09:50:20 PM,1600 Block of EDDY ST,SAN FRANCISCO,94115,B05,5,3624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7810598440913, -122.434783737987)",141110403-E05 +141903028,E13,14065959,Medical Incident,07/09/2014,07/09/2014,07/09/2014 07:08:17 PM,07/09/2014 07:08:51 PM,07/09/2014 07:11:36 PM,07/09/2014 07:12:36 PM,07/09/2014 07:14:45 PM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Code 2 Transport,07/09/2014 07:37:11 PM,1100 Block of GRANT AVE,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7971943093664, -122.406817843184)",141903028-E13 +153282755,E36,15126336,Medical Incident,11/24/2015,11/24/2015,11/24/2015 04:58:05 PM,11/24/2015 05:00:16 PM,11/24/2015 05:01:36 PM,11/24/2015 05:05:50 PM,11/24/2015 05:07:56 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,No Merit,11/24/2015 05:20:02 PM,LARKIN ST/FULTON ST,San Francisco,94102,B02,36,1645,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",153282755-E36 +143111341,E03,14110090,Medical Incident,11/07/2014,11/07/2014,11/07/2014 11:08:17 AM,11/07/2014 11:11:21 AM,11/07/2014 11:12:07 AM,11/07/2014 11:12:29 AM,11/07/2014 11:14:04 AM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Code 2 Transport,11/07/2014 11:23:24 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",143111341-E03 +160981104,77,16038835,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:21:04 AM,04/07/2016 09:22:52 AM,04/07/2016 09:23:20 AM,04/07/2016 09:23:44 AM,04/07/2016 09:30:48 AM,04/07/2016 09:54:50 AM,04/07/2016 10:13:16 AM,Code 2 Transport,04/07/2016 10:48:47 AM,MISSION ST/1ST ST,San Francisco,94105,B03,35,2126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7897625977156, -122.397574469759)",160981104-77 +151170878,T03,15044130,Structure Fire,04/27/2015,04/27/2015,04/27/2015 08:51:22 AM,04/27/2015 08:51:27 AM,04/27/2015 08:51:59 AM,04/27/2015 08:54:24 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 08:55:05 AM,LEAVENWORTH ST/GOLDEN GATE AV,San Francisco,94102,B02,1,1546,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",151170878-T03 +141293914,AM18,14044066,Medical Incident,05/09/2014,05/09/2014,05/09/2014 10:52:27 PM,05/09/2014 10:52:27 PM,05/09/2014 11:02:28 PM,05/09/2014 11:03:12 PM,05/09/2014 11:12:06 PM,04/25/2016 01:17:25 PM,04/25/2016 01:17:25 PM,No Merit,05/09/2014 11:32:16 PM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",141293914-AM18 +143501575,B01,14124986,Alarms,12/16/2014,12/16/2014,12/16/2014 12:33:40 PM,12/16/2014 12:34:30 PM,12/16/2014 12:34:51 PM,12/16/2014 12:35:02 PM,12/16/2014 12:36:57 PM,04/25/2016 01:13:24 PM,04/25/2016 01:13:24 PM,Fire,12/16/2014 12:38:07 PM,500 Block of UNION ST,San Francisco,94133,B01,28,1265,3,3,3,false,Alarm,1,CHIEF,1,1,3,North Beach,"(37.8006202294565, -122.408194672388)",143501575-B01 +150461064,RS1,15017831,Medical Incident,02/15/2015,02/15/2015,02/15/2015 09:26:07 AM,02/15/2015 09:26:07 AM,02/15/2015 09:26:21 AM,02/15/2015 09:27:52 AM,02/15/2015 09:29:36 AM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Code 2 Transport,02/15/2015 09:40:46 AM,0 Block of 5TH ST,San Francisco,94103,B03,1,2247,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7832636870331, -122.407051190493)",150461064-RS1 +143421370,KM10,14121479,Medical Incident,12/08/2014,12/08/2014,12/08/2014 11:28:10 AM,12/08/2014 11:28:52 AM,12/08/2014 11:29:26 AM,12/08/2014 11:31:15 AM,12/08/2014 11:38:03 AM,12/08/2014 11:59:51 AM,12/08/2014 12:20:48 PM,Code 3 Transport,12/08/2014 01:03:03 PM,2700 Block of 35TH AVE,San Francisco,94116,B08,18,7553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7360599451453, -122.492331865053)",143421370-KM10 +150062608,87,15002380,Medical Incident,01/06/2015,01/06/2015,01/06/2015 05:06:15 PM,01/06/2015 05:06:15 PM,01/06/2015 05:11:59 PM,01/06/2015 05:12:43 PM,01/06/2015 05:21:34 PM,01/06/2015 05:43:40 PM,01/06/2015 05:47:55 PM,Code 2 Transport,01/06/2015 06:37:15 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",150062608-87 +153271122,61,15125811,Medical Incident,11/23/2015,11/23/2015,11/23/2015 09:58:59 AM,11/23/2015 10:01:15 AM,11/23/2015 10:02:24 AM,11/23/2015 10:02:30 AM,11/23/2015 10:10:13 AM,11/23/2015 10:27:05 AM,11/23/2015 10:44:23 AM,Code 2 Transport,11/23/2015 11:10:16 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",153271122-61 +141632814,E01,14056304,Medical Incident,06/12/2014,06/12/2014,06/12/2014 06:41:22 PM,06/12/2014 06:42:12 PM,06/12/2014 07:05:17 PM,06/12/2014 07:05:37 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/12/2014 07:05:53 PM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7839914857614, -122.408066547804)",141632814-E01 +141050069,B03,14035328,Alarms,04/15/2014,04/14/2014,04/15/2014 07:42:53 AM,04/15/2014 07:44:19 AM,04/15/2014 07:44:47 AM,04/15/2014 07:45:34 AM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Fire,04/15/2014 07:51:39 AM,700 Block of MARKET ST,SAN FRANCISCO,94108,B03,1,1322,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",141050069-B03 +142922746,AM08,14103095,Medical Incident,10/19/2014,10/19/2014,10/19/2014 05:51:59 PM,10/19/2014 05:55:27 PM,10/19/2014 05:58:04 PM,10/19/2014 05:58:38 PM,10/19/2014 06:10:32 PM,10/19/2014 06:20:57 PM,10/19/2014 06:27:17 PM,Code 2 Transport,10/19/2014 06:45:59 PM,24TH ST/HAMPSHIRE ST,San Francisco,94110,B06,9,5531,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.752906613776, -122.407291184342)",142922746-AM08 +153401877,61,15130852,Medical Incident,12/06/2015,12/06/2015,12/06/2015 01:45:59 PM,12/06/2015 01:47:55 PM,12/06/2015 01:49:05 PM,12/06/2015 01:53:35 PM,12/06/2015 01:58:55 PM,12/06/2015 02:21:08 PM,12/06/2015 02:36:34 PM,Code 2 Transport,12/06/2015 03:31:39 PM,CALL BOX:,Presidio,94129,B99,51,4614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio,"(37.8041405785249, -122.454465544895)",153401877-61 +150321013,77,15012292,Medical Incident,02/01/2015,02/01/2015,02/01/2015 09:07:01 AM,02/01/2015 09:07:01 AM,02/01/2015 09:07:40 AM,02/01/2015 09:07:52 AM,02/01/2015 09:13:54 AM,02/01/2015 09:21:00 AM,02/01/2015 09:40:56 AM,Code 2 Transport,02/01/2015 10:13:23 AM,26TH ST/SAN JOSE AV,San Francisco,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7488504427694, -122.421284459714)",150321013-77 +160923119,68,16036572,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:58:45 PM,04/01/2016 07:00:18 PM,04/01/2016 07:01:48 PM,04/01/2016 07:02:21 PM,04/01/2016 07:19:31 PM,04/01/2016 07:30:15 PM,04/01/2016 07:50:20 PM,Code 2 Transport,04/01/2016 08:18:56 PM,2100 Block of THE EMBARCADERO NOR,,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080500969356, -122.409877282931)",160923119-68 +160940115,85,16037104,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:35:44 AM,04/03/2016 12:35:44 AM,04/03/2016 12:36:46 AM,04/03/2016 12:36:56 AM,04/03/2016 12:50:35 AM,04/03/2016 12:59:46 AM,04/03/2016 01:18:43 AM,Code 2 Transport,04/03/2016 01:58:11 AM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160940115-85 +160993720,71,16039492,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:46:28 PM,04/08/2016 09:48:49 PM,04/08/2016 09:55:20 PM,04/08/2016 09:55:53 PM,04/08/2016 10:08:45 PM,04/08/2016 10:19:18 PM,04/08/2016 10:37:15 PM,Code 2 Transport,04/08/2016 11:18:50 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160993720-71 +153331845,T05,15128092,Medical Incident,11/29/2015,11/29/2015,11/29/2015 03:00:06 PM,11/29/2015 03:00:38 PM,11/29/2015 03:01:35 PM,11/29/2015 03:02:43 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Code 2 Transport,11/29/2015 03:03:17 PM,FILLMORE ST/POST ST,San Francisco,94115,B04,5,3541,2,2,2,false,Non Life-threatening,1,TRUCK,2,4,5,Japantown,"(37.7851509392156, -122.433083400235)",153331845-T05 +150403355,72,15015749,Medical Incident,02/09/2015,02/09/2015,02/09/2015 08:07:07 PM,02/09/2015 08:08:12 PM,02/09/2015 08:08:22 PM,02/09/2015 08:10:55 PM,02/09/2015 08:28:15 PM,02/09/2015 08:29:37 PM,02/09/2015 08:47:39 PM,Code 2 Transport,02/09/2015 09:22:14 PM,0 Block of DOUBLE ROCK ST,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7204658651293, -122.387775002515)",150403355-72 +142562055,E12,14089445,Alarms,09/13/2014,09/13/2014,09/13/2014 02:06:13 PM,09/13/2014 02:07:45 PM,09/13/2014 02:07:55 PM,09/13/2014 02:11:35 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 02:11:57 PM,0 Block of WOODHAVEN CT,San Francisco,94131,B08,20,5366,3,3,3,true,Alarm,1,ENGINE,4,8,7,Inner Sunset,"(37.7560017985425, -122.455897306136)",142562055-E12 +143141448,54,14111224,Medical Incident,11/10/2014,11/10/2014,11/10/2014 12:11:06 PM,11/10/2014 12:12:25 PM,11/10/2014 12:14:18 PM,11/10/2014 12:15:10 PM,11/10/2014 12:27:57 PM,11/10/2014 12:42:38 PM,11/10/2014 01:09:23 PM,Code 2 Transport,11/10/2014 01:43:18 PM,1100 Block of GILMAN AVE,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7198684752103, -122.390904801268)",143141448-54 +150531206,74,15020347,Medical Incident,02/22/2015,02/22/2015,02/22/2015 10:30:32 AM,02/22/2015 10:32:39 AM,02/22/2015 10:32:49 AM,02/22/2015 10:33:08 AM,02/22/2015 10:37:43 AM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,Cancelled,02/22/2015 10:44:51 AM,100 Block of DIAMOND ST,San Francisco,94114,B05,6,5415,3,3,3,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7599536346651, -122.437183555035)",150531206-74 +152850649,52,15109325,Traffic Collision,10/12/2015,10/11/2015,10/12/2015 07:03:05 AM,10/12/2015 07:04:41 AM,10/12/2015 07:05:31 AM,10/12/2015 07:06:03 AM,10/12/2015 07:17:32 AM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Patient Declined Transport,10/12/2015 08:00:40 AM,MASONIC AV/FULTON ST,San Francisco,94117,B05,21,4463,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",152850649-52 +143092604,E36,14109449,Medical Incident,11/05/2014,11/05/2014,11/05/2014 05:07:38 PM,11/05/2014 05:07:38 PM,11/05/2014 05:18:23 PM,11/05/2014 05:19:20 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Code 2 Transport,11/05/2014 05:23:46 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7765128154607, -122.414966685701)",143092604-E36 +143331080,MA1,14117959,Structure Fire,11/29/2014,11/29/2014,11/29/2014 10:17:28 AM,11/29/2014 10:18:20 AM,11/29/2014 10:47:43 AM,11/29/2014 10:48:35 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 12:12:38 PM,600 Block of AVENUE I,Treasure Isla,94130,B03,48,2931,3,3,3,false,Fire,1,SUPPORT,19,None,6,Treasure Island,"(37.8252845100944, -122.368701610634)",143331080-MA1 +141331130,RS1,14045255,Medical Incident,05/13/2014,05/13/2014,05/13/2014 10:33:24 AM,05/13/2014 10:34:31 AM,05/13/2014 10:34:52 AM,05/13/2014 10:35:08 AM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/13/2014 10:41:35 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",141331130-RS1 +160960516,88,16037899,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:15:48 AM,04/05/2016 07:17:35 AM,04/05/2016 07:17:57 AM,04/05/2016 07:18:03 AM,04/05/2016 07:22:44 AM,04/05/2016 07:33:47 AM,04/05/2016 07:38:59 AM,Code 2 Transport,04/05/2016 08:10:24 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160960516-88 +150784219,AM24,15030109,Medical Incident,03/19/2015,03/19/2015,03/19/2015 11:42:06 PM,03/19/2015 11:43:32 PM,03/19/2015 11:43:37 PM,03/19/2015 11:44:19 PM,03/19/2015 11:48:29 PM,03/19/2015 11:55:39 PM,03/20/2015 12:20:56 AM,Code 2 Transport,03/20/2015 12:53:31 AM,1200 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",150784219-AM24 +150271058,E15,15010346,Medical Incident,01/27/2015,01/27/2015,01/27/2015 09:43:31 AM,01/27/2015 09:46:27 AM,01/27/2015 09:46:55 AM,01/27/2015 09:48:53 AM,01/27/2015 09:49:44 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Against Medical Advice,01/27/2015 10:01:09 AM,1800 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",150271058-E15 +152272206,AM06,15086584,Medical Incident,08/15/2015,08/15/2015,08/15/2015 02:11:41 PM,08/15/2015 02:11:41 PM,08/15/2015 02:13:32 PM,08/15/2015 02:16:36 PM,08/15/2015 02:22:05 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Duplicate,08/15/2015 02:28:01 PM,400 Block of 10TH ST,San Francisco,94103,B03,29,2344,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7710023420989, -122.410457857589)",152272206-AM06 +160931319,67,16036815,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:06:18 AM,04/02/2016 11:07:09 AM,04/02/2016 11:08:02 AM,04/02/2016 11:08:50 AM,04/02/2016 11:11:05 AM,04/02/2016 11:18:09 AM,04/02/2016 11:59:56 AM,Code 2 Transport,04/02/2016 12:02:42 PM,24TH ST/LILAC ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7522713668808, -122.41787692136)",160931319-67 +160980458,KM03,16038777,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:29:22 AM,04/07/2016 04:30:43 AM,04/07/2016 04:31:05 AM,04/07/2016 04:31:48 AM,04/07/2016 04:38:39 AM,04/07/2016 04:47:10 AM,04/07/2016 04:52:56 AM,Code 2 Transport,04/07/2016 05:23:50 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160980458-KM03 +152322027,RS1,15088511,Water Rescue,08/20/2015,08/20/2015,08/20/2015 01:44:09 PM,08/20/2015 01:44:43 PM,08/20/2015 01:47:26 PM,08/20/2015 01:48:53 PM,08/20/2015 01:54:32 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Fire,08/20/2015 02:07:01 PM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,3,3,3,false,Fire,1,RESCUE SQUAD,1,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",152322027-RS1 +141070111,88,14036045,Medical Incident,04/17/2014,04/17/2014,04/17/2014 10:02:00 AM,04/17/2014 10:03:00 AM,04/17/2014 10:05:03 AM,04/17/2014 10:05:26 AM,04/17/2014 10:15:32 AM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Against Medical Advice,04/17/2014 12:04:42 PM,700 Block of PORTOLA ST,PRESIDIO,94129,B99,51,4625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio,"(37.7960254927533, -122.454664097609)",141070111-88 +153102842,E41,15119257,Other,11/06/2015,11/06/2015,11/06/2015 05:42:37 PM,11/06/2015 05:42:37 PM,11/06/2015 05:42:37 PM,11/06/2015 05:42:37 PM,11/06/2015 05:42:37 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Fire,11/06/2015 06:04:51 PM,1600 Block of SACRAMENTO ST,San Francisco,94109,B01,41,3123,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",153102842-E41 +160950086,88,16037477,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:53:23 AM,04/04/2016 12:53:40 AM,04/04/2016 12:53:57 AM,04/04/2016 12:54:06 AM,04/04/2016 01:00:36 AM,04/04/2016 01:22:22 AM,04/04/2016 01:35:15 AM,Code 2 Transport,04/04/2016 02:32:15 AM,100 Block of HALE ST,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7323441875657, -122.408123114783)",160950086-88 +142400651,E36,14083385,Medical Incident,08/28/2014,08/27/2014,08/28/2014 07:58:29 AM,08/28/2014 07:58:49 AM,08/28/2014 07:59:25 AM,08/28/2014 08:01:13 AM,08/28/2014 08:05:56 AM,04/25/2016 01:15:25 PM,04/25/2016 01:15:25 PM,Against Medical Advice,08/28/2014 08:50:09 AM,POLK ST/GROVE ST,San Francisco,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7784891171437, -122.418226581728)",142400651-E36 +150383391,T02,15014939,Structure Fire,02/07/2015,02/07/2015,02/07/2015 08:22:30 PM,02/07/2015 08:25:58 PM,02/07/2015 08:26:13 PM,02/07/2015 08:29:31 PM,02/07/2015 08:29:31 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/07/2015 08:50:11 PM,800 Block of POWELL ST,San Francisco,94108,B01,2,1356,3,3,3,false,Fire,1,TRUCK,2,1,3,Chinatown,"(37.7925154459681, -122.409198002567)",150383391-T02 +142360776,89,14081969,Medical Incident,08/24/2014,08/23/2014,08/24/2014 04:43:54 AM,08/24/2014 04:44:27 AM,08/24/2014 04:45:01 AM,08/24/2014 04:45:28 AM,08/24/2014 04:52:08 AM,08/24/2014 05:08:26 AM,08/24/2014 05:15:57 AM,Code 2 Transport,08/24/2014 05:36:52 AM,3100 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7220016138662, -122.401341444894)",142360776-89 +142663246,T16,14093236,Alarms,09/23/2014,09/23/2014,09/23/2014 07:27:31 PM,09/23/2014 07:28:28 PM,09/23/2014 07:28:35 PM,09/23/2014 07:30:01 PM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/23/2014 07:30:08 PM,0 Block of LINCOLN BLVD,Presidio,94129,B99,51,4612,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.8004046009381, -122.453283883258)",142663246-T16 +160950415,62,16037518,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:51:02 AM,04/04/2016 05:52:33 AM,04/04/2016 05:53:09 AM,04/04/2016 05:53:19 AM,04/04/2016 05:58:23 AM,04/04/2016 06:17:03 AM,04/04/2016 05:58:23 AM,Code 2 Transport,04/04/2016 07:09:27 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160950415-62 +141583381,54,14054604,Medical Incident,06/07/2014,06/07/2014,06/07/2014 10:38:29 PM,06/07/2014 10:39:48 PM,06/07/2014 10:40:05 PM,06/07/2014 10:40:22 PM,06/07/2014 10:57:31 PM,06/07/2014 11:00:01 PM,06/07/2014 11:17:13 PM,Code 2 Transport,06/07/2014 11:40:28 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",141583381-54 +161000259,53,16039588,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:51:00 AM,04/09/2016 01:53:58 AM,04/09/2016 01:54:20 AM,04/09/2016 01:54:47 AM,04/09/2016 01:58:55 AM,04/09/2016 02:13:16 AM,04/09/2016 02:54:50 AM,Code 2 Transport,04/09/2016 03:29:14 AM,BUSH ST/JONES ST,San Francisco,94109,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7895293173979, -122.413728390683)",161000259-53 +153071000,AM08,15117901,Traffic Collision,11/03/2015,11/03/2015,11/03/2015 09:07:34 AM,11/03/2015 09:07:34 AM,11/03/2015 09:09:12 AM,11/03/2015 09:10:20 AM,11/03/2015 09:16:19 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Patient Declined Transport,11/03/2015 09:33:12 AM,GREEN ST/VAN NESS AV,San Francisco,94109,B04,41,3151,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Russian Hill,"(37.7976165818078, -122.423792966601)",153071000-AM08 +151413407,87,15053722,Medical Incident,05/21/2015,05/21/2015,05/21/2015 07:12:21 PM,05/21/2015 07:14:10 PM,05/21/2015 07:15:27 PM,05/21/2015 07:15:37 PM,05/21/2015 07:19:03 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Unable to Locate,05/21/2015 07:22:30 PM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",151413407-87 +160941325,54,16037222,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:39:07 AM,04/03/2016 10:40:33 AM,04/03/2016 10:41:11 AM,04/03/2016 10:41:24 AM,04/03/2016 10:46:06 AM,04/03/2016 11:04:54 AM,04/03/2016 11:32:28 AM,Code 2 Transport,04/03/2016 11:57:55 AM,100 Block of SCOTIA AVE,San Francisco,94124,B10,42,6447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.732040658819, -122.39966796159)",160941325-54 +153372414,63,15129724,Medical Incident,12/03/2015,12/03/2015,12/03/2015 03:31:34 PM,12/03/2015 03:33:12 PM,12/03/2015 03:33:22 PM,12/03/2015 03:33:33 PM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Fire,12/03/2015 03:36:31 PM,2300 Block of 15TH AVE,San Francisco,94116,B08,40,7361,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7441776053299, -122.471353651644)",153372414-63 +153201563,E29,15123014,Medical Incident,11/16/2015,11/16/2015,11/16/2015 11:59:17 AM,11/16/2015 12:01:31 PM,11/16/2015 12:02:31 PM,11/16/2015 12:03:21 PM,11/16/2015 12:04:45 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Code 2 Transport,11/16/2015 12:10:02 PM,900 Block of BRANNAN ST,San Francisco,94103,B03,29,2331,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7706341477204, -122.406164290986)",153201563-E29 +160950554,71,16037528,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:12:55 AM,04/04/2016 07:13:41 AM,04/04/2016 07:13:59 AM,04/04/2016 07:14:06 AM,04/04/2016 07:17:48 AM,04/04/2016 07:38:00 AM,04/04/2016 08:14:38 AM,Code 2 Transport,04/04/2016 08:30:39 AM,1600 Block of KIRKWOOD AVE,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7387417648077, -122.390854570377)",160950554-71 +142032512,T08,14070321,Alarms,07/22/2014,07/22/2014,07/22/2014 05:09:06 PM,07/22/2014 05:11:24 PM,07/22/2014 05:11:40 PM,07/22/2014 05:12:47 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Fire,07/22/2014 05:23:17 PM,MARIPOSA ST/3RD ST,San Francisco,94107,B03,29,2671,3,3,3,false,Alarm,1,TRUCK,3,3,10,Potrero Hill,"(37.7643218361157, -122.388851284628)",142032512-T08 +160942042,88,16037281,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:09:16 PM,04/03/2016 02:10:01 PM,04/03/2016 02:10:14 PM,04/03/2016 02:10:42 PM,04/03/2016 02:12:23 PM,04/03/2016 02:30:52 PM,04/03/2016 02:56:04 PM,Code 2 Transport,04/03/2016 03:47:05 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",160942042-88 +160940169,64,16037111,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:57:43 AM,04/03/2016 12:58:21 AM,04/03/2016 01:00:05 AM,04/03/2016 01:00:05 AM,04/03/2016 01:07:08 AM,04/03/2016 01:21:33 AM,04/03/2016 01:42:09 AM,Code 2 Transport,04/03/2016 02:13:28 AM,200 Block of KING ST,San Francisco,94107,B03,8,2171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160940169-64 +160982010,63,16038928,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:20:45 PM,04/07/2016 01:22:45 PM,04/07/2016 01:23:25 PM,04/07/2016 01:23:44 PM,04/07/2016 01:33:31 PM,04/07/2016 01:40:23 PM,04/07/2016 01:54:50 PM,Code 2 Transport,04/07/2016 02:37:12 PM,300 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.798465838236, -122.407430691755)",160982010-63 +150390480,62,15015053,Medical Incident,02/08/2015,02/07/2015,02/08/2015 02:53:04 AM,02/08/2015 02:54:12 AM,02/08/2015 02:54:29 AM,02/08/2015 02:54:48 AM,02/08/2015 03:17:09 AM,02/08/2015 03:17:15 AM,02/08/2015 03:22:46 AM,Code 2 Transport,02/08/2015 03:58:54 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Tenderloin,"(37.7842476296454, -122.408294122336)",150390480-62 +160964073,89,16038211,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:37:38 PM,04/05/2016 10:43:45 PM,04/05/2016 10:44:00 PM,04/05/2016 10:44:39 PM,04/05/2016 10:56:23 PM,04/05/2016 11:12:10 PM,04/05/2016 11:35:39 PM,Code 2 Transport,04/05/2016 11:51:22 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160964073-89 +152992619,E28,15114847,Medical Incident,10/26/2015,10/26/2015,10/26/2015 04:19:31 PM,10/26/2015 04:20:30 PM,10/26/2015 04:22:55 PM,10/26/2015 04:23:31 PM,10/26/2015 04:25:04 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,No Merit,10/26/2015 04:28:31 PM,600 Block of UNION ST,San Francisco,94133,B01,28,1334,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8004345112965, -122.409709158334)",152992619-E28 +142621507,52,14091581,Traffic Collision,09/19/2014,09/19/2014,09/19/2014 11:38:58 AM,09/19/2014 11:40:05 AM,09/19/2014 11:41:48 AM,09/19/2014 11:42:35 AM,09/19/2014 11:54:33 AM,09/19/2014 12:02:18 PM,09/19/2014 12:34:31 PM,Code 2 Transport,09/19/2014 01:28:23 PM,5TH ST/JESSIE ST,San Francisco,94103,B01,1,1363,2,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7831577478943, -122.407015679867)",142621507-52 +152742887,KM01,15104997,Medical Incident,10/01/2015,10/01/2015,10/01/2015 05:05:29 PM,10/01/2015 05:05:44 PM,10/01/2015 05:06:18 PM,10/01/2015 05:06:57 PM,10/01/2015 05:19:28 PM,10/01/2015 05:53:44 PM,10/01/2015 06:28:59 PM,Code 2 Transport,10/01/2015 06:29:02 PM,600 Block of ALVARADO ST,San Francisco,94114,B06,24,5515,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7536611563754, -122.435425173732)",152742887-KM01 +151793456,E01,15068454,Medical Incident,06/28/2015,06/28/2015,06/28/2015 07:49:23 PM,06/28/2015 07:50:30 PM,06/28/2015 07:50:39 PM,06/28/2015 07:52:00 PM,06/28/2015 07:53:31 PM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Code 2 Transport,06/28/2015 08:02:38 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",151793456-E01 +160972209,74,16038446,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 01:45:38 PM,04/06/2016 01:47:29 PM,04/06/2016 01:47:58 PM,04/06/2016 01:48:10 PM,04/06/2016 01:50:31 PM,04/06/2016 02:00:18 PM,04/06/2016 02:45:57 PM,Code 2 Transport,04/06/2016 03:41:47 PM,SUTTER ST/VAN NESS AV,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",160972209-74 +153441270,74,15132373,Medical Incident,12/10/2015,12/10/2015,12/10/2015 10:22:31 AM,12/10/2015 10:23:59 AM,12/10/2015 10:25:19 AM,12/10/2015 10:25:26 AM,12/10/2015 10:30:09 AM,12/10/2015 10:54:23 AM,12/10/2015 10:59:02 AM,Code 2 Transport,12/10/2015 11:39:08 AM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",153441270-74 +160943182,AM14,16037402,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:55:17 PM,04/03/2016 07:56:16 PM,04/03/2016 07:56:21 PM,04/03/2016 07:57:57 PM,04/03/2016 08:01:57 PM,04/03/2016 08:23:16 PM,04/03/2016 08:40:46 PM,Code 2 Transport,04/03/2016 09:07:07 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160943182-AM14 +152482936,82,15094775,Medical Incident,09/05/2015,09/05/2015,09/05/2015 05:28:57 PM,09/05/2015 05:31:27 PM,09/05/2015 05:32:27 PM,09/05/2015 05:32:45 PM,09/05/2015 05:38:30 PM,09/05/2015 05:53:51 PM,09/05/2015 06:03:33 PM,Code 2 Transport,09/05/2015 06:45:28 PM,3RD ST/WILLIAMS AV,San Francisco,94124,B10,17,6536,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292784549254, -122.392624534553)",152482936-82 +160983067,54,16039051,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:04:40 PM,04/07/2016 06:05:14 PM,04/07/2016 06:06:01 PM,04/07/2016 06:07:19 PM,04/07/2016 06:17:46 PM,04/07/2016 06:38:06 PM,04/07/2016 06:45:57 PM,Code 3 Transport,04/07/2016 07:07:35 PM,600 Block of 41ST AVE,San Francisco,94121,B07,34,7263,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7764556121722, -122.501596303357)",160983067-54 +150022651,T16,15000830,Other,01/02/2015,01/02/2015,01/02/2015 07:00:04 PM,01/02/2015 07:00:04 PM,01/02/2015 07:00:38 PM,01/02/2015 07:03:03 PM,01/02/2015 07:06:00 PM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Fire,01/02/2015 07:31:52 PM,LOMBARD ST/RICHARDSON AV,San Francisco,94123,B04,16,4223,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.7988396270006, -122.444827863712)",150022651-T16 +143262248,AM02,14115536,Medical Incident,11/22/2014,11/22/2014,11/22/2014 02:53:21 PM,11/22/2014 02:53:21 PM,11/22/2014 02:54:27 PM,11/22/2014 02:55:14 PM,11/22/2014 03:02:22 PM,11/22/2014 03:17:45 PM,11/22/2014 03:30:49 PM,Code 2 Transport,11/22/2014 04:06:13 PM,19TH ST/INDIANA ST,San Francisco,94107,B10,37,2471,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7615940539303, -122.391537617969)",143262248-AM02 +160931979,AM16,16036891,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:11:06 PM,04/02/2016 02:14:33 PM,04/02/2016 02:24:46 PM,04/02/2016 02:24:46 PM,04/02/2016 02:32:17 PM,04/02/2016 02:40:11 PM,04/02/2016 02:54:37 PM,Code 2 Transport,04/02/2016 03:19:51 PM,0 Block of LYELL ST,San Francisco,94112,B09,32,8136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,8,Outer Mission,"(37.7313118275068, -122.431604221964)",160931979-AM16 +160923403,56,16036600,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:37:54 PM,04/01/2016 08:39:34 PM,04/01/2016 08:39:49 PM,04/01/2016 08:40:00 PM,04/01/2016 08:55:03 PM,04/01/2016 09:19:26 PM,04/01/2016 09:51:08 PM,Code 2 Transport,04/01/2016 10:21:10 PM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",160923403-56 +150452976,D3,15017623,Structure Fire,02/14/2015,02/14/2015,02/14/2015 07:13:45 PM,02/14/2015 07:14:44 PM,02/14/2015 07:15:03 PM,02/14/2015 07:15:57 PM,02/14/2015 07:18:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 07:21:04 PM,1300 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,false,Alarm,1,CHIEF,2,6,9,Mission,"(37.7513090308287, -122.420516937429)",150452976-D3 +160983096,KM09,16039055,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:11:13 PM,04/07/2016 06:12:16 PM,04/07/2016 06:18:17 PM,04/07/2016 06:18:50 PM,04/07/2016 06:31:47 PM,04/07/2016 06:52:52 PM,04/07/2016 07:08:36 PM,Code 2 Transport,04/07/2016 07:32:18 PM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",160983096-KM09 +152911245,E03,15111768,Medical Incident,10/18/2015,10/18/2015,10/18/2015 10:37:48 AM,10/18/2015 10:38:20 AM,10/18/2015 10:38:58 AM,10/18/2015 10:40:18 AM,10/18/2015 10:45:49 AM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Against Medical Advice,10/18/2015 11:15:34 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",152911245-E03 +141570271,86,14053930,Medical Incident,06/06/2014,06/05/2014,06/06/2014 02:36:55 AM,06/06/2014 02:39:13 AM,06/06/2014 02:39:59 AM,06/06/2014 02:40:33 AM,06/06/2014 02:48:28 AM,06/06/2014 03:24:54 AM,06/06/2014 03:30:28 AM,Code 2 Transport,06/06/2014 03:53:36 AM,1600 Block of GREENWICH ST,San Francisco,94123,B04,16,3234,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7999975397541, -122.427205502151)",141570271-86 +160931218,77,16036798,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:32:07 AM,04/02/2016 10:34:20 AM,04/02/2016 10:44:48 AM,04/02/2016 10:47:25 AM,04/02/2016 10:58:17 AM,04/02/2016 11:12:41 AM,04/02/2016 11:22:09 AM,Code 2 Transport,04/02/2016 12:09:31 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160931218-77 +160950400,52,16037517,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:41:10 AM,04/04/2016 05:42:48 AM,04/04/2016 05:43:26 AM,04/04/2016 05:43:35 AM,04/04/2016 05:51:29 AM,04/04/2016 06:00:28 AM,04/04/2016 06:04:23 AM,Code 2 Transport,04/04/2016 06:33:31 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160950400-52 +150680308,E21,15025865,Structure Fire,03/09/2015,03/08/2015,03/09/2015 04:21:36 AM,03/09/2015 04:22:25 AM,03/09/2015 04:22:56 AM,03/09/2015 04:23:50 AM,03/09/2015 04:26:07 AM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Fire,03/09/2015 05:04:06 AM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,false,Alarm,1,ENGINE,4,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",150680308-E21 +153463491,E36,15133362,Medical Incident,12/12/2015,12/12/2015,12/12/2015 07:11:36 PM,12/12/2015 07:11:59 PM,12/12/2015 07:12:19 PM,12/12/2015 07:14:03 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Code 2 Transport,12/12/2015 07:31:08 PM,400 Block of VAN NESS AVE,San Francisco,94102,B02,36,3237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",153463491-E36 +160931299,88,16036812,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:57:13 AM,04/02/2016 11:00:12 AM,04/02/2016 11:27:13 AM,04/02/2016 11:27:30 AM,04/02/2016 11:34:05 AM,04/02/2016 11:43:00 AM,04/02/2016 12:04:43 PM,Code 2 Transport,04/02/2016 12:29:31 PM,CRESCENT AV/BACHE ST,San Francisco,94110,B06,32,5751,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7349210215802, -122.417478830471)",160931299-88 +151282280,89,15048595,Medical Incident,05/08/2015,05/08/2015,05/08/2015 03:17:54 PM,05/08/2015 03:19:10 PM,05/08/2015 03:23:40 PM,05/08/2015 03:24:03 PM,05/08/2015 03:38:02 PM,05/08/2015 03:55:14 PM,05/08/2015 04:23:10 PM,Code 2 Transport,05/08/2015 04:57:26 PM,1800 Block of GREEN ST,San Francisco,94123,B04,16,3354,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7968332559438, -122.42953707363)",151282280-89 +142862540,RS1,14100896,Medical Incident,10/13/2014,10/13/2014,10/13/2014 05:01:58 PM,10/13/2014 05:02:40 PM,10/13/2014 05:03:21 PM,10/13/2014 05:10:45 PM,10/13/2014 05:10:45 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/13/2014 05:15:44 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142862540-RS1 +141492905,KM02,14051296,Medical Incident,05/29/2014,05/29/2014,05/29/2014 06:28:26 PM,05/29/2014 06:30:43 PM,05/29/2014 06:34:00 PM,05/29/2014 06:34:00 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Patient Declined Transport,05/29/2014 06:47:13 PM,1300 Block of ALEMANY BLVD,San Francisco,94112,B09,32,8263,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,8,Outer Mission,"(37.7296319990453, -122.433808042162)",141492905-KM02 +160991828,86,16039314,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:37:42 PM,04/08/2016 01:39:16 PM,04/08/2016 01:39:40 PM,04/08/2016 01:40:16 PM,04/08/2016 01:48:10 PM,04/08/2016 02:09:16 PM,04/08/2016 02:41:05 PM,Code 2 Transport,04/08/2016 03:08:10 PM,2ND ST/JESSIE ST,San Francisco,94105,B03,1,2144,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7884421623563, -122.400343851915)",160991828-86 +151220576,AR1,15046166,Vehicle Fire,05/02/2015,05/01/2015,05/02/2015 05:26:49 AM,05/02/2015 05:28:56 AM,05/02/2015 09:10:42 AM,05/02/2015 09:11:12 AM,05/02/2015 09:11:12 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Fire,05/02/2015 11:36:07 AM,200 Block of 11TH AVE,San Francisco,94118,B07,31,7141,3,3,3,true,Fire,1,INVESTIGATION,2,7,1,Inner Richmond,"(37.783634135396, -122.469908011173)",151220576-AR1 +142722691,E36,14095482,Alarms,09/29/2014,09/29/2014,09/29/2014 06:12:47 PM,09/29/2014 06:14:34 PM,09/29/2014 06:15:29 PM,09/29/2014 06:16:35 PM,09/29/2014 06:20:46 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Fire,09/29/2014 06:39:45 PM,100 Block of HAYES ST,San Francisco,94102,B02,36,3166,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.777460008139, -122.418879416566)",142722691-E36 +160960531,64,16037900,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:21:19 AM,04/05/2016 07:21:44 AM,04/05/2016 07:22:00 AM,04/05/2016 07:22:25 AM,04/05/2016 07:29:53 AM,04/05/2016 07:41:12 AM,04/05/2016 07:55:32 AM,Code 3 Transport,04/05/2016 08:30:58 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160960531-64 +150521292,T03,15019988,Medical Incident,02/21/2015,02/21/2015,02/21/2015 10:16:23 AM,02/21/2015 10:16:23 AM,02/21/2015 10:16:40 AM,02/21/2015 10:16:59 AM,02/21/2015 10:17:39 AM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Code 2 Transport,02/21/2015 10:28:44 AM,400 Block of MCALLISTER ST,San Francisco,94102,B02,3,3112,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",150521292-T03 +141680076,T10,14057804,Structure Fire,06/17/2014,06/16/2014,06/17/2014 12:42:50 AM,06/17/2014 12:43:26 AM,06/17/2014 12:43:51 AM,06/17/2014 12:47:11 AM,06/17/2014 12:50:46 AM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/17/2014 12:56:13 AM,2700 Block of UNION ST,San Francisco,94123,B04,16,4312,3,3,3,false,Alarm,1,TRUCK,9,4,2,Marina,"(37.7959857750666, -122.444596851749)",141680076-T10 +143011770,E41,14106274,Other,10/28/2014,10/28/2014,10/28/2014 01:44:04 PM,10/28/2014 01:44:40 PM,10/28/2014 01:45:08 PM,10/28/2014 01:45:50 PM,10/28/2014 01:48:19 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Fire,10/28/2014 01:53:43 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",143011770-E41 +142171122,AM14,14075192,Medical Incident,08/05/2014,08/05/2014,08/05/2014 11:04:14 AM,08/05/2014 11:05:41 AM,08/05/2014 11:06:40 AM,08/05/2014 11:07:14 AM,08/05/2014 11:17:47 AM,08/05/2014 11:33:42 AM,08/05/2014 11:40:27 AM,Code 2 Transport,08/05/2014 12:33:45 PM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",142171122-AM14 +160941645,KM12,16037249,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:08:12 PM,04/03/2016 12:08:36 PM,04/03/2016 12:08:53 PM,04/03/2016 12:09:34 PM,04/03/2016 12:14:29 PM,04/03/2016 12:35:48 PM,04/03/2016 12:42:45 PM,Code 2 Transport,04/03/2016 01:20:32 PM,400 Block of POWELL ST,San Francisco,94108,B01,1,1362,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",160941645-KM12 +160943730,52,16037461,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:19:03 PM,04/03/2016 11:19:03 PM,04/03/2016 11:19:36 PM,04/03/2016 11:21:18 PM,04/03/2016 11:36:41 PM,04/04/2016 12:03:25 AM,04/04/2016 12:13:53 AM,Code 2 Transport,04/04/2016 12:58:31 AM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7187894867461, -122.467075645919)",160943730-52 +160950157,KM07,16037484,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:54:18 AM,04/04/2016 01:54:18 AM,04/04/2016 01:54:43 AM,04/04/2016 01:55:29 AM,04/04/2016 01:56:31 AM,04/04/2016 02:03:26 AM,04/04/2016 02:09:00 AM,Code 3 Transport,04/04/2016 02:47:33 AM,LEAVENWORTH ST/EDDY ST,San Francisco,94102,B02,3,1545,A,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",160950157-KM07 +160951639,50,16037612,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:14:04 PM,04/04/2016 12:16:05 PM,04/04/2016 12:16:53 PM,04/04/2016 12:17:01 PM,04/04/2016 12:28:26 PM,04/04/2016 12:58:49 PM,04/04/2016 01:15:36 PM,Code 2 Transport,04/04/2016 02:05:55 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160951639-50 +142651174,E10,14092645,Medical Incident,09/22/2014,09/22/2014,09/22/2014 10:23:47 AM,09/22/2014 10:25:23 AM,09/22/2014 10:26:53 AM,09/22/2014 10:27:29 AM,09/22/2014 10:29:12 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Against Medical Advice,09/22/2014 10:50:44 AM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7842371111665, -122.440760813886)",142651174-E10 +160953232,82,16037752,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:39:12 PM,04/04/2016 06:39:12 PM,04/04/2016 06:39:44 PM,04/04/2016 06:40:10 PM,04/04/2016 06:50:49 PM,04/04/2016 06:57:20 PM,04/04/2016 07:14:46 PM,Code 2 Transport,04/04/2016 07:49:47 PM,1300 Block of ALEMANY BLVD,San Francisco,94112,B09,32,8263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7294726964986, -122.433599162117)",160953232-82 +153141959,KM01,15120674,Medical Incident,11/10/2015,11/10/2015,11/10/2015 01:28:49 PM,11/10/2015 01:30:15 PM,11/10/2015 01:31:04 PM,11/10/2015 01:31:40 PM,11/10/2015 01:39:57 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Patient Declined Transport,11/10/2015 02:15:49 PM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",153141959-KM01 +150220287,E31,15008450,Medical Incident,01/22/2015,01/21/2015,01/22/2015 03:29:29 AM,01/22/2015 03:30:13 AM,01/22/2015 03:30:46 AM,01/22/2015 03:32:22 AM,01/22/2015 03:34:25 AM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Code 2 Transport,01/22/2015 03:47:50 AM,500 Block of 8TH AVE,San Francisco,94118,B07,31,7131,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.778068339982, -122.466151798637)",150220287-E31 +150213304,B02,15008346,Alarms,01/21/2015,01/21/2015,01/21/2015 07:38:58 PM,01/21/2015 07:39:50 PM,01/21/2015 07:40:19 PM,01/21/2015 07:41:23 PM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Fire,01/21/2015 07:45:56 PM,100 Block of HENRY ST,San Francisco,94114,B05,6,5212,3,3,3,true,Alarm,1,CHIEF,4,5,8,Castro/Upper Market,"(37.7665401994282, -122.434434754895)",150213304-B02 +161003699,77,16039997,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:36:46 PM,04/09/2016 11:39:53 PM,04/09/2016 11:40:11 PM,04/09/2016 11:40:25 PM,04/09/2016 11:48:04 PM,04/09/2016 11:54:24 PM,04/10/2016 12:06:13 AM,Code 2 Transport,04/10/2016 12:39:08 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",161003699-77 +151472524,KM02,15056023,Medical Incident,05/27/2015,05/27/2015,05/27/2015 03:53:45 PM,05/27/2015 03:57:06 PM,05/27/2015 03:57:30 PM,05/27/2015 03:58:07 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Cancelled,05/27/2015 04:10:20 PM,1000 Block of WISCONSIN ST,San Francisco,94107,B10,37,257,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",151472524-KM02 +150081404,E39,15003092,Medical Incident,01/08/2015,01/08/2015,01/08/2015 11:15:02 AM,01/08/2015 11:16:38 AM,01/08/2015 11:18:40 AM,01/08/2015 11:19:09 AM,01/08/2015 11:23:02 AM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 11:40:13 AM,300 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8561,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7373722059796, -122.469939861606)",150081404-E39 +150163495,E43,15006472,Medical Incident,01/16/2015,01/16/2015,01/16/2015 09:25:53 PM,01/16/2015 09:27:20 PM,01/16/2015 09:27:35 PM,01/16/2015 09:29:09 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Code 2 Transport,01/16/2015 09:41:16 PM,900 Block of EDINBURGH ST,San Francisco,94112,B09,43,6174,E,E,3,true,Potentially Life-Threatening,1,ENGINE,5,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",150163495-E43 +160970197,AM22,16038257,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:00:43 AM,04/06/2016 02:03:22 AM,04/06/2016 02:03:59 AM,04/06/2016 02:04:32 AM,04/06/2016 02:11:16 AM,04/06/2016 02:20:00 AM,04/06/2016 02:31:22 AM,Code 2 Transport,04/06/2016 03:01:58 AM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",160970197-AM22 +150301034,E20,15011498,Medical Incident,01/30/2015,01/30/2015,01/30/2015 09:11:52 AM,01/30/2015 09:12:21 AM,01/30/2015 09:15:47 AM,01/30/2015 09:17:41 AM,01/30/2015 09:20:06 AM,01/30/2015 09:36:51 AM,04/25/2016 01:12:33 PM,Code 3 Transport,01/30/2015 09:44:50 AM,0 Block of TARAVAL ST,San Francisco,94116,B08,39,8615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7437586250549, -122.464218878823)",150301034-E20 +150543042,E29,15020874,Traffic Collision,02/23/2015,02/23/2015,02/23/2015 06:07:31 PM,02/23/2015 06:08:19 PM,02/23/2015 06:09:36 PM,02/23/2015 06:10:49 PM,02/23/2015 06:16:36 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Code 2 Transport,02/23/2015 06:29:22 PM,200 Block of 25TH AVE,San Francisco,94121,B03,29,2436,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7848173202648, -122.48501034869)",150543042-E29 +160972562,AM06,16038480,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:02:07 PM,04/06/2016 03:02:18 PM,04/06/2016 03:03:35 PM,04/06/2016 03:05:20 PM,04/06/2016 03:12:22 PM,04/06/2016 03:40:43 PM,04/06/2016 03:59:25 PM,Code 2 Transport,04/06/2016 04:38:07 PM,300 Block of STONECREST DR,San Francisco,94132,B08,19,8725,3,3,3,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7257458500807, -122.474261031114)",160972562-AM06 +150983039,RC2,15037189,Medical Incident,04/08/2015,04/08/2015,04/08/2015 06:36:20 PM,04/08/2015 06:36:38 PM,04/08/2015 06:37:51 PM,04/08/2015 06:37:51 PM,04/08/2015 06:37:51 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Code 2 Transport,04/08/2015 06:54:59 PM,400 Block of 18TH AVE,San Francisco,94121,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",150983039-RC2 +143444079,T03,14122526,Alarms,12/10/2014,12/10/2014,12/10/2014 11:11:31 PM,12/10/2014 11:13:02 PM,12/10/2014 11:13:28 PM,12/10/2014 11:15:01 PM,12/10/2014 11:17:15 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/10/2014 11:21:47 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",143444079-T03 +153322570,52,15127764,Medical Incident,11/28/2015,11/28/2015,11/28/2015 05:19:13 PM,11/28/2015 05:20:17 PM,11/28/2015 05:20:45 PM,11/28/2015 05:20:52 PM,11/28/2015 05:23:57 PM,11/28/2015 05:43:01 PM,11/28/2015 05:59:54 PM,Code 2 Transport,11/28/2015 06:36:09 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7791068008612, -122.431789184532)",153322570-52 +151011087,82,15038173,Medical Incident,04/11/2015,04/11/2015,04/11/2015 10:14:53 AM,04/11/2015 10:16:15 AM,04/11/2015 10:16:29 AM,04/11/2015 10:19:37 AM,04/11/2015 10:31:55 AM,04/11/2015 10:59:32 AM,04/11/2015 11:32:30 AM,Code 2 Transport,04/11/2015 12:08:24 PM,1200 Block of RIDGE CT,San Francisco,94134,B09,43,6238,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Excelsior,"(37.7093846600237, -122.425625999419)",151011087-82 +143061406,KM04,14108272,Traffic Collision,11/02/2014,11/02/2014,11/02/2014 11:04:20 AM,11/02/2014 11:05:23 AM,11/02/2014 11:06:45 AM,11/02/2014 11:08:05 AM,11/02/2014 11:11:03 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Against Medical Advice,11/02/2014 11:48:31 AM,GUERRERO ST/20TH ST,San Francisco,94110,B06,7,5445,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Mission,"(37.7583645504187, -122.423488532463)",143061406-KM04 +160960133,65,16037854,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:13:53 AM,04/05/2016 01:15:24 AM,04/05/2016 01:16:09 AM,04/05/2016 01:16:17 AM,04/05/2016 01:34:12 AM,04/05/2016 01:54:32 AM,04/05/2016 02:33:14 AM,Code 2 Transport,04/05/2016 02:33:30 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160960133-65 +150353009,T06,15013548,Alarms,02/04/2015,02/04/2015,02/04/2015 04:47:06 PM,02/04/2015 04:48:22 PM,02/04/2015 04:48:39 PM,02/04/2015 04:50:42 PM,02/04/2015 04:53:25 PM,04/25/2016 01:12:27 PM,04/25/2016 01:12:27 PM,Fire,02/04/2015 04:55:16 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7658666581108, -122.419678114931)",150353009-T06 +142643076,74,14092490,Medical Incident,09/21/2014,09/21/2014,09/21/2014 08:34:46 PM,09/21/2014 08:34:46 PM,09/21/2014 08:35:48 PM,09/21/2014 08:36:03 PM,09/21/2014 08:57:21 PM,09/21/2014 09:07:55 PM,09/21/2014 09:22:10 PM,Code 2 Transport,09/21/2014 10:00:31 PM,200 Block of SERRANO DR,San Francisco,94132,B08,19,8682,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7200756028177, -122.478531532675)",142643076-74 +160970433,60,16038279,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:43:42 AM,04/06/2016 05:43:42 AM,04/06/2016 05:44:28 AM,04/06/2016 05:44:50 AM,04/06/2016 05:56:18 AM,04/06/2016 06:09:45 AM,04/06/2016 06:23:56 AM,Code 2 Transport,04/06/2016 06:29:19 AM,100 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7934880846575, -122.398205964751)",160970433-60 +142102811,E01,14072894,Medical Incident,07/29/2014,07/29/2014,07/29/2014 06:37:56 PM,07/29/2014 06:41:00 PM,07/29/2014 06:42:59 PM,07/29/2014 06:43:11 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Patient Declined Transport,07/29/2014 06:53:35 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",142102811-E01 +142460382,T08,14085565,Alarms,09/03/2014,09/02/2014,09/03/2014 04:03:19 AM,09/03/2014 04:04:35 AM,09/03/2014 04:04:56 AM,09/03/2014 04:07:14 AM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,Fire,09/03/2014 04:17:33 AM,1800 Block of 4TH ST,San Francisco,94158,B03,8,2374,3,3,3,false,Alarm,1,TRUCK,3,3,6,Potrero Hill,"(37.7654965381521, -122.390602942705)",142460382-T08 +160942176,71,16037297,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:45:16 PM,04/03/2016 02:46:35 PM,04/03/2016 02:46:48 PM,04/03/2016 02:46:56 PM,04/03/2016 02:51:59 PM,04/03/2016 03:00:51 PM,04/03/2016 03:24:47 PM,Code 2 Transport,04/03/2016 04:06:08 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160942176-71 +141701503,KM10,14058674,Medical Incident,06/19/2014,06/19/2014,06/19/2014 12:22:35 PM,06/19/2014 12:24:36 PM,06/19/2014 12:25:25 PM,06/19/2014 12:26:01 PM,06/19/2014 12:46:23 PM,06/19/2014 12:56:35 PM,06/19/2014 01:36:38 PM,Code 2 Transport,06/19/2014 02:02:58 PM,2100 Block of 41ST AVE,San Francisco,94116,B08,18,7635,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7466748453073, -122.49952072067)",141701503-KM10 +161003341,AM18,16039960,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:03:43 PM,04/09/2016 10:06:48 PM,04/09/2016 10:09:50 PM,04/09/2016 10:10:27 PM,04/09/2016 10:20:34 PM,04/09/2016 10:28:54 PM,04/09/2016 10:59:01 PM,Code 2 Transport,04/09/2016 11:30:35 PM,600 Block of BLK WASHINGTON ST,San Francisco,94111,B01,13,1245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7956190455799, -122.403039422993)",161003341-AM18 +160974113,60,16038662,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:44:19 PM,04/06/2016 08:44:19 PM,04/06/2016 08:46:04 PM,04/06/2016 08:49:13 PM,04/06/2016 08:52:37 PM,04/06/2016 09:53:58 PM,04/06/2016 10:08:47 PM,Code 2 Transport,04/06/2016 10:30:27 PM,0 Block of BLK EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7842476296751, -122.408294122336)",160974113-60 +160974678,76,16038723,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:43:09 PM,04/06/2016 11:43:57 PM,04/06/2016 11:44:18 PM,04/06/2016 11:44:26 PM,04/06/2016 11:48:27 PM,04/07/2016 12:00:24 AM,04/07/2016 12:19:46 AM,Code 2 Transport,04/07/2016 12:36:52 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160974678-76 +150232148,E07,15008958,Structure Fire,01/23/2015,01/23/2015,01/23/2015 03:03:58 PM,01/23/2015 03:06:02 PM,01/23/2015 03:08:14 PM,01/23/2015 03:08:14 PM,01/23/2015 03:10:51 PM,04/25/2016 01:12:40 PM,04/25/2016 01:12:40 PM,Fire,01/23/2015 03:18:11 PM,3200 Block of 26TH ST,San Francisco,94110,B06,7,5614,3,3,3,true,Alarm,1,ENGINE,6,6,9,Mission,"(37.7491990535295, -122.414593171104)",150232148-E07 +161003591,71,16039986,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:08:57 PM,04/09/2016 11:09:38 PM,04/09/2016 11:10:34 PM,04/09/2016 11:10:40 PM,04/09/2016 11:16:14 PM,04/09/2016 11:34:42 PM,04/09/2016 11:44:58 PM,Code 2 Transport,04/10/2016 12:25:44 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",161003591-71 +160990219,73,16039171,Medical Incident,04/08/2016,04/07/2016,04/08/2016 02:10:05 AM,04/08/2016 02:10:50 AM,04/08/2016 02:11:22 AM,04/08/2016 02:12:01 AM,04/08/2016 02:25:56 AM,04/08/2016 02:41:35 AM,04/08/2016 02:48:50 AM,Code 2 Transport,04/08/2016 03:38:48 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160990219-73 +160982552,59,16038994,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:42:08 PM,04/07/2016 03:43:23 PM,04/07/2016 03:45:11 PM,04/07/2016 03:45:25 PM,04/07/2016 03:57:36 PM,04/07/2016 04:33:00 PM,04/07/2016 04:57:28 PM,Code 2 Transport,04/07/2016 05:45:45 PM,100 Block of TURQUOISE WAY,San Francisco,94131,B06,26,8164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7436378283947, -122.444837341311)",160982552-59 +151331367,E08,15050395,Medical Incident,05/13/2015,05/13/2015,05/13/2015 10:38:36 AM,05/13/2015 10:39:00 AM,05/13/2015 10:39:13 AM,05/13/2015 10:40:55 AM,05/13/2015 10:42:41 AM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Code 2 Transport,05/13/2015 10:51:51 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",151331367-E08 +142980622,55,14105073,Medical Incident,10/25/2014,10/24/2014,10/25/2014 04:32:32 AM,10/25/2014 04:32:32 AM,10/25/2014 04:32:57 AM,10/25/2014 04:35:11 AM,10/25/2014 04:42:22 AM,10/25/2014 04:55:48 AM,10/25/2014 05:04:53 AM,Code 2 Transport,10/25/2014 06:10:48 AM,LARKIN ST/FULTON ST,San Francisco,94102,B02,36,1645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",142980622-55 +160981577,KM09,16038889,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:32:47 AM,04/07/2016 11:34:05 AM,04/07/2016 11:36:23 AM,04/07/2016 11:38:01 AM,04/07/2016 11:47:34 AM,04/07/2016 12:20:55 PM,04/07/2016 12:32:53 PM,Code 2 Transport,04/07/2016 01:04:14 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160981577-KM09 +160962254,KM02,16038053,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:38:44 PM,04/05/2016 02:40:24 PM,04/05/2016 02:42:12 PM,04/05/2016 02:42:52 PM,04/05/2016 03:14:47 PM,04/05/2016 03:22:56 PM,04/05/2016 03:43:25 PM,Code 2 Transport,04/05/2016 04:11:31 PM,2300 Block of 3RD ST,San Francisco,94107,B03,25,2533,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7592216556229, -122.388304288646)",160962254-KM02 +153332904,T07,15128199,Structure Fire,11/29/2015,11/29/2015,11/29/2015 09:14:35 PM,11/29/2015 09:14:35 PM,11/29/2015 09:14:49 PM,11/29/2015 09:15:48 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Fire,11/29/2015 09:19:09 PM,TREAT AV/ALAMEDA ST,San Francisco,94103,B02,29,5221,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7680736053747, -122.412424183842)",153332904-T07 +150152106,E19,15005982,Medical Incident,01/15/2015,01/15/2015,01/15/2015 02:28:31 PM,01/15/2015 02:29:06 PM,01/15/2015 02:29:41 PM,01/15/2015 02:30:37 PM,01/15/2015 02:34:40 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Code 2 Transport,01/15/2015 02:47:52 PM,100 Block of BEVERLY ST,San Francisco,94132,B09,19,8447,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7187586719508, -122.471573001806)",150152106-E19 +153032040,E13,15116216,Alarms,10/30/2015,10/30/2015,10/30/2015 01:43:31 PM,10/30/2015 01:45:07 PM,10/30/2015 01:45:17 PM,10/30/2015 01:46:06 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Fire,10/30/2015 01:57:37 PM,1200 Block of BATTERY ST,San Francisco,94111,B01,13,1153,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.8027664220787, -122.401955517289)",153032040-E13 +152402552,E10,15091482,Medical Incident,08/28/2015,08/28/2015,08/28/2015 03:04:47 PM,08/28/2015 03:05:55 PM,08/28/2015 03:06:13 PM,08/28/2015 03:06:25 PM,08/28/2015 03:10:13 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Code 2 Transport,08/28/2015 03:16:37 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",152402552-E10 +160922084,61,16036474,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:43:26 PM,04/01/2016 02:46:04 PM,04/01/2016 02:47:30 PM,04/01/2016 02:47:38 PM,04/01/2016 02:52:15 PM,04/01/2016 03:00:34 PM,04/01/2016 03:28:24 PM,Code 2 Transport,04/01/2016 04:16:28 PM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",160922084-61 +151550955,57,15059009,Water Rescue,06/04/2015,06/04/2015,06/04/2015 08:53:17 AM,06/04/2015 08:55:43 AM,06/04/2015 09:02:50 AM,06/04/2015 09:02:50 AM,06/04/2015 09:02:50 AM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,Code 2 Transport,06/04/2015 09:14:00 AM,200 Block of THE EMBARCADERO,San Francisco,94111,B01,13,901,3,3,3,true,Fire,1,MEDIC,4,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",151550955-57 +141170300,E03,14039609,Medical Incident,04/27/2014,04/27/2014,04/27/2014 07:56:14 PM,04/27/2014 07:59:52 PM,04/27/2014 08:01:11 PM,04/27/2014 08:01:11 PM,04/27/2014 08:02:26 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Code 2 Transport,04/27/2014 08:09:54 PM,800 Block of SUTTER ST,SAN FRANCISCO,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",141170300-E03 +141710489,73,14058952,Medical Incident,06/20/2014,06/19/2014,06/20/2014 06:30:31 AM,06/20/2014 06:31:30 AM,06/20/2014 06:31:46 AM,06/20/2014 06:32:01 AM,06/20/2014 06:42:19 AM,06/20/2014 06:57:39 AM,06/20/2014 07:18:08 AM,Code 2 Transport,06/20/2014 07:46:59 AM,900 Block of SHOTWELL ST,San Francisco,94110,B06,7,544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7532325565612, -122.415315206173)",141710489-73 +142091413,KM06,14072415,Medical Incident,07/28/2014,07/28/2014,07/28/2014 12:22:58 PM,07/28/2014 12:24:50 PM,07/28/2014 12:26:03 PM,07/28/2014 12:26:52 PM,07/28/2014 12:30:46 PM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Patient Declined Transport,07/28/2014 01:19:09 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",142091413-KM06 +160980471,57,16038778,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:39:13 AM,04/07/2016 04:41:24 AM,04/07/2016 04:41:31 AM,04/07/2016 04:41:46 AM,04/07/2016 04:52:12 AM,04/07/2016 05:06:44 AM,04/07/2016 05:32:48 AM,Code 2 Transport,04/07/2016 05:52:37 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",160980471-57 +141861363,KM04,14064388,Medical Incident,07/05/2014,07/05/2014,07/05/2014 11:03:26 AM,07/05/2014 11:03:26 AM,07/05/2014 11:04:05 AM,07/05/2014 11:04:37 AM,07/05/2014 11:09:48 AM,07/05/2014 11:17:33 AM,07/05/2014 11:28:58 AM,Code 2 Transport,07/05/2014 12:13:39 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",141861363-KM04 +151791857,T01,15068229,Structure Fire,06/28/2015,06/28/2015,06/28/2015 01:21:29 PM,06/28/2015 01:21:29 PM,06/28/2015 01:21:53 PM,06/28/2015 01:23:20 PM,06/28/2015 01:25:16 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 01:25:32 PM,3RD ST/HARRISON ST,San Francisco,94107,B03,8,2175,3,3,3,true,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7825535920508, -122.397385539895)",151791857-T01 +150430080,E31,15016569,Medical Incident,02/12/2015,02/11/2015,02/12/2015 12:31:12 AM,02/12/2015 12:32:02 AM,02/12/2015 12:32:24 AM,02/12/2015 12:34:21 AM,02/12/2015 12:36:39 AM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Code 2 Transport,02/12/2015 12:58:08 AM,600 Block of 19TH AVE,San Francisco,94121,B07,31,7166,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7756595098309, -122.478035799893)",150430080-E31 +151163619,E03,15044028,Medical Incident,04/26/2015,04/26/2015,04/26/2015 11:18:50 PM,04/26/2015 11:18:50 PM,04/26/2015 11:20:00 PM,04/26/2015 11:20:14 PM,04/26/2015 11:22:43 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Code 2 Transport,04/26/2015 11:28:56 PM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",151163619-E03 +141382057,E38,14047322,Traffic Collision,05/18/2014,05/18/2014,05/18/2014 02:29:19 PM,05/18/2014 02:30:23 PM,05/18/2014 02:31:12 PM,05/18/2014 02:31:32 PM,05/18/2014 02:33:35 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Code 2 Transport,05/18/2014 02:51:06 PM,MCALLISTER ST/FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",141382057-E38 +152961087,E36,15113662,Medical Incident,10/23/2015,10/23/2015,10/23/2015 09:44:29 AM,10/23/2015 09:44:44 AM,10/23/2015 09:45:02 AM,10/23/2015 09:47:38 AM,10/23/2015 09:49:57 AM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,Code 2 Transport,10/23/2015 09:53:12 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",152961087-E36 +160982960,AM08,16039038,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 05:35:19 PM,04/07/2016 05:35:19 PM,04/07/2016 05:36:19 PM,04/07/2016 05:37:01 PM,04/07/2016 06:02:05 PM,04/07/2016 06:02:07 PM,04/07/2016 06:22:56 PM,Code 2 Transport,04/07/2016 07:16:54 PM,0 Block of TAYLOR ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",160982960-AM08 +151400106,63,15053004,Medical Incident,05/20/2015,05/19/2015,05/20/2015 01:01:34 AM,05/20/2015 01:02:26 AM,05/20/2015 01:03:55 AM,05/20/2015 01:05:00 AM,05/20/2015 01:12:13 AM,05/20/2015 01:30:21 AM,05/20/2015 01:45:43 AM,Code 2 Transport,05/20/2015 02:39:49 AM,18TH AV/IRVING ST,San Francisco,94122,B08,22,7367,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Inner Sunset,"(37.7636087618473, -122.476054377932)",151400106-63 +151970206,82,15074965,Medical Incident,07/16/2015,07/15/2015,07/16/2015 02:08:31 AM,07/16/2015 02:09:04 AM,07/16/2015 02:11:31 AM,07/16/2015 02:11:40 AM,07/16/2015 02:17:36 AM,07/16/2015 02:27:21 AM,07/16/2015 02:35:03 AM,Code 2 Transport,07/16/2015 03:22:52 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",151970206-82 +151602717,65,15061226,Medical Incident,06/09/2015,06/09/2015,06/09/2015 04:48:09 PM,06/09/2015 04:48:09 PM,06/09/2015 04:48:35 PM,06/09/2015 04:48:42 PM,06/09/2015 05:03:46 PM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Unable to Locate,06/09/2015 05:08:41 PM,0 Block of HARVARD ST,San Francisco,94134,B09,42,6144,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Excelsior,"(37.7286059912574, -122.421411879716)",151602717-65 +151433031,D3,15054501,Structure Fire,05/23/2015,05/23/2015,05/23/2015 07:21:18 PM,05/23/2015 07:22:30 PM,05/23/2015 07:22:57 PM,05/23/2015 07:23:41 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Fire,05/23/2015 07:26:54 PM,600 Block of SILLIMAN ST,San Francisco,94134,B09,42,6355,3,3,3,false,Alarm,1,CHIEF,8,9,9,Portola,"(37.7295067704941, -122.411485686343)",151433031-D3 +142161216,86,14074856,Medical Incident,08/04/2014,08/04/2014,08/04/2014 10:52:29 AM,08/04/2014 10:53:50 AM,08/04/2014 10:56:46 AM,08/04/2014 10:56:46 AM,08/04/2014 10:59:26 AM,08/04/2014 11:10:56 AM,08/04/2014 11:37:45 AM,Code 2 Transport,08/04/2014 12:17:31 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",142161216-86 +150981589,E13,15037065,Alarms,04/08/2015,04/08/2015,04/08/2015 12:28:33 PM,04/08/2015 12:29:23 PM,04/08/2015 12:29:34 PM,04/08/2015 12:30:15 PM,04/08/2015 12:32:16 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Fire,04/08/2015 12:39:03 PM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.795777854883, -122.404981817889)",150981589-E13 +152942925,E39,15113082,Medical Incident,10/21/2015,10/21/2015,10/21/2015 05:34:51 PM,10/21/2015 05:37:18 PM,10/21/2015 05:37:41 PM,10/21/2015 05:39:13 PM,10/21/2015 05:39:13 PM,04/25/2016 01:07:38 PM,04/25/2016 01:07:38 PM,Code 2 Transport,10/21/2015 05:54:31 PM,1200 Block of ULLOA ST,San Francisco,94116,B08,39,8614,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7415034332952, -122.469571324271)",152942925-E39 +160931574,KM09,16036839,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:18:59 PM,04/02/2016 12:19:39 PM,04/02/2016 12:20:02 PM,04/02/2016 12:20:35 PM,04/02/2016 12:26:41 PM,04/02/2016 12:52:27 PM,04/02/2016 01:24:47 PM,Code 2 Transport,04/02/2016 01:34:08 PM,100 Block of PINE ST,San Francisco,94111,B01,13,1136,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7922788577923, -122.399164588196)",160931574-KM09 +142401250,E07,14083435,Structure Fire,08/28/2014,08/28/2014,08/28/2014 11:23:36 AM,08/28/2014 11:24:05 AM,08/28/2014 11:24:20 AM,08/28/2014 11:25:17 AM,08/28/2014 11:27:44 AM,04/25/2016 01:15:25 PM,04/25/2016 01:15:25 PM,Fire,08/28/2014 12:13:16 PM,1500 Block of MISSION ST,San Francisco,94103,B02,36,5116,3,3,3,true,Alarm,1,ENGINE,3,2,6,Mission,"(37.7737629752818, -122.417960394107)",142401250-E07 +160932632,63,16036959,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:10:23 PM,04/02/2016 05:15:25 PM,04/02/2016 05:17:37 PM,04/02/2016 05:22:41 PM,04/02/2016 05:30:23 PM,04/02/2016 05:43:01 PM,04/02/2016 05:59:01 PM,Code 2 Transport,04/02/2016 06:26:40 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160932632-63 +150322457,E12,15012423,Medical Incident,02/01/2015,02/01/2015,02/01/2015 03:59:16 PM,02/01/2015 04:03:37 PM,02/01/2015 04:03:58 PM,02/01/2015 04:04:44 PM,02/01/2015 04:07:37 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,No Merit,02/01/2015 04:10:01 PM,"CONSERVATORY DRIVE E/JOHN F KENNEDY DR,",,94122,B07,31,7111,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Golden Gate Park,"(37.7717764874446, -122.462047129132)",150322457-E12 +160993337,KM01,16039448,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:49:50 PM,04/08/2016 07:49:50 PM,04/08/2016 07:50:02 PM,04/08/2016 07:50:37 PM,04/08/2016 07:57:50 PM,04/08/2016 08:09:37 PM,04/08/2016 08:22:20 PM,Code 2 Transport,04/08/2016 08:38:29 PM,CHURCH ST/MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",160993337-KM01 +150680917,E20,15025905,Structure Fire,03/09/2015,03/09/2015,03/09/2015 09:02:54 AM,03/09/2015 09:03:47 AM,03/09/2015 09:03:57 AM,03/09/2015 09:09:01 AM,03/09/2015 09:09:01 AM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Fire,03/09/2015 09:26:47 AM,500 Block of PORTOLA DR,San Francisco,94131,B06,20,5353,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7455667070932, -122.451155727844)",150680917-E20 +151483126,75,15056453,Medical Incident,05/28/2015,05/28/2015,05/28/2015 07:24:21 PM,05/28/2015 07:27:22 PM,05/28/2015 07:28:19 PM,05/28/2015 07:28:42 PM,05/28/2015 07:34:43 PM,05/28/2015 07:39:21 PM,05/28/2015 07:46:49 PM,Code 2 Transport,05/28/2015 08:10:29 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",151483126-75 +160923414,AM16,16036601,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:44:49 PM,04/01/2016 08:45:21 PM,04/01/2016 08:45:54 PM,04/01/2016 08:46:21 PM,04/01/2016 08:48:53 PM,04/01/2016 09:06:09 PM,04/01/2016 09:13:45 PM,Code 2 Transport,04/01/2016 09:47:25 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160923414-AM16 +151370513,E03,15051908,Medical Incident,05/17/2015,05/16/2015,05/17/2015 04:21:23 AM,05/17/2015 04:22:31 AM,05/17/2015 04:23:15 AM,05/17/2015 04:25:02 AM,05/17/2015 04:28:10 AM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Code 2 Transport,05/17/2015 04:32:44 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",151370513-E03 +142810599,B02,14098750,Medical Incident,10/08/2014,10/07/2014,10/08/2014 07:26:01 AM,10/08/2014 07:26:01 AM,10/08/2014 07:26:44 AM,10/08/2014 07:28:44 AM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,No Merit,10/08/2014 07:38:31 AM,48TH AV/POINT LOBOS AV,San Francisco,94121,B07,34,7313,3,3,3,false,Non Life-threatening,1,CHIEF,5,7,1,Outer Richmond,"(37.779851069188, -122.509432938414)",142810599-B02 +151842600,E06,15070296,Medical Incident,07/03/2015,07/03/2015,07/03/2015 04:51:47 PM,07/03/2015 04:51:47 PM,07/03/2015 04:53:28 PM,07/03/2015 04:53:28 PM,07/03/2015 04:54:19 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Code 2 Transport,07/03/2015 05:06:49 PM,MARKET ST/NOE ST,San Francisco,94114,B05,6,5232,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",151842600-E06 +141974127,B06,14068404,Alarms,07/16/2014,07/16/2014,07/16/2014 11:54:16 PM,07/16/2014 11:55:59 PM,07/16/2014 11:57:35 PM,07/16/2014 11:59:57 PM,07/17/2014 12:03:20 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/17/2014 12:06:49 AM,400 Block of FAIR OAKS ST,San Francisco,94110,B06,11,5536,3,3,3,false,Alarm,1,CHIEF,3,6,8,Mission,"(37.7495118727923, -122.423684560238)",141974127-B06 +152152587,RC3,15081908,Medical Incident,08/03/2015,08/03/2015,08/03/2015 03:47:55 PM,08/03/2015 03:49:33 PM,08/03/2015 03:50:44 PM,08/03/2015 03:50:44 PM,08/03/2015 03:50:44 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Code 2 Transport,08/03/2015 04:03:00 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",152152587-RC3 +160923380,58,16036597,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:25:16 PM,04/01/2016 08:25:50 PM,04/01/2016 08:26:20 PM,04/01/2016 08:26:40 PM,04/01/2016 08:32:15 PM,04/01/2016 08:44:31 PM,04/01/2016 09:14:54 PM,Code 2 Transport,04/01/2016 09:33:42 PM,2400 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7318198889718, -122.405412091734)",160923380-58 +151723078,E03,15065816,Medical Incident,06/21/2015,06/21/2015,06/21/2015 08:35:02 PM,06/21/2015 08:35:02 PM,06/21/2015 08:35:50 PM,06/21/2015 08:37:01 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Code 2 Transport,06/21/2015 08:38:58 PM,100 Block of OFARRELL ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7864582323625, -122.407206735701)",151723078-E03 +151572384,T18,15060009,Medical Incident,06/06/2015,06/06/2015,06/06/2015 04:26:35 PM,06/06/2015 04:28:26 PM,06/06/2015 04:29:04 PM,06/06/2015 04:31:19 PM,06/06/2015 04:34:14 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Code 2 Transport,06/06/2015 04:46:57 PM,2400 Block of 35TH AVE,San Francisco,94116,B08,18,7554,2,2,2,false,Potentially Life-Threatening,1,TRUCK,2,8,4,Sunset/Parkside,"(37.741364566284, -122.492702448747)",151572384-T18 +151930728,B09,15073560,Structure Fire,07/12/2015,07/11/2015,07/12/2015 07:13:37 AM,07/12/2015 07:14:01 AM,07/12/2015 07:14:22 AM,07/12/2015 07:15:43 AM,07/12/2015 07:22:02 AM,04/25/2016 01:09:31 PM,04/25/2016 01:09:31 PM,Fire,07/12/2015 09:36:12 AM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,false,Fire,1,CHIEF,5,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",151930728-B09 +143312284,T13,14117482,Alarms,11/27/2014,11/27/2014,11/27/2014 07:33:00 PM,11/27/2014 07:34:05 PM,11/27/2014 07:34:10 PM,11/27/2014 07:35:14 PM,11/27/2014 07:39:07 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Fire,11/27/2014 07:43:12 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7904631779771, -122.405941469147)",143312284-T13 +141883279,E34,14065297,Medical Incident,07/07/2014,07/07/2014,07/07/2014 08:28:22 PM,07/07/2014 08:30:46 PM,07/07/2014 08:32:13 PM,07/07/2014 08:33:14 PM,07/07/2014 08:36:03 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/07/2014 08:58:51 PM,BALBOA ST/37TH AV,San Francisco,94121,B07,34,7254,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7757154136216, -122.497318725581)",141883279-E34 +160982936,73,16039035,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:26:17 PM,04/07/2016 05:29:10 PM,04/07/2016 05:29:29 PM,04/07/2016 05:29:40 PM,04/07/2016 05:41:34 PM,04/07/2016 05:55:22 PM,04/07/2016 06:18:37 PM,Code 2 Transport,04/07/2016 06:46:16 PM,300 Block of ELM ST,San Francisco,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7812362714808, -122.423016936452)",160982936-73 +152170836,T06,15082515,Alarms,08/05/2015,08/05/2015,08/05/2015 08:36:01 AM,08/05/2015 08:37:10 AM,08/05/2015 08:37:43 AM,08/05/2015 08:39:24 AM,08/05/2015 08:41:44 AM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/05/2015 08:48:05 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",152170836-T06 +153032133,E20,15116226,Transfer,10/30/2015,10/30/2015,10/30/2015 02:03:45 PM,10/30/2015 02:05:19 PM,10/30/2015 02:05:46 PM,10/30/2015 02:07:07 PM,10/30/2015 02:09:03 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Other,10/30/2015 03:02:45 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",153032133-E20 +150030560,E03,15000989,Medical Incident,01/03/2015,01/02/2015,01/03/2015 05:43:29 AM,01/03/2015 05:48:29 AM,01/03/2015 05:48:55 AM,01/03/2015 05:50:31 AM,01/03/2015 05:52:52 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Code 2 Transport,01/03/2015 06:08:09 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",150030560-E03 +153471485,62,15133674,Medical Incident,12/13/2015,12/13/2015,12/13/2015 11:51:06 AM,12/13/2015 11:51:56 AM,12/13/2015 11:52:07 AM,12/13/2015 11:54:19 AM,12/13/2015 12:02:32 PM,12/13/2015 12:22:23 PM,12/13/2015 12:32:57 PM,Code 2 Transport,12/13/2015 01:38:56 PM,DIVISADERO ST/OFARRELL ST,San Francisco,94115,B05,5,4153,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7824504809987, -122.439297623944)",153471485-62 +142791605,2R01,14098144,,10/06/2014,10/06/2014,10/06/2014 12:17:38 PM,10/06/2014 12:18:51 PM,10/06/2014 12:38:59 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 12:39:03 PM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6554,3,3,3,false,Alarm,1,ADMIN,0,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",142791605-2R01 +160933009,55,16036991,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:00:33 PM,04/02/2016 07:00:33 PM,04/02/2016 07:01:42 PM,04/02/2016 07:01:54 PM,04/02/2016 07:08:15 PM,04/02/2016 07:16:14 PM,04/02/2016 07:36:54 PM,Code 2 Transport,04/02/2016 07:47:11 PM,HOWARD ST/BEALE ST,San Francisco,94105,B03,35,2124,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7899262298106, -122.394276229254)",160933009-55 +151920856,E28,15073186,Structure Fire,07/11/2015,07/10/2015,07/11/2015 07:41:37 AM,07/11/2015 07:41:37 AM,07/11/2015 07:42:04 AM,07/11/2015 07:43:16 AM,07/11/2015 07:44:07 AM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,Fire,07/11/2015 07:44:42 AM,COLUMBUS AV/FILBERT ST,San Francisco,94133,B01,28,1351,3,3,3,false,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.8011251306762, -122.411376271747)",151920856-E28 +143492588,75,14124733,Structure Fire,12/15/2014,12/15/2014,12/15/2014 05:55:44 PM,12/15/2014 05:56:04 PM,12/15/2014 05:56:46 PM,12/15/2014 05:56:57 PM,12/15/2014 06:18:44 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 06:18:56 PM,2800 Block of HARRISON ST,San Francisco,94110,B06,7,5533,3,3,3,true,Fire,1,MEDIC,9,6,9,Mission,"(37.7518270551886, -122.411891999747)",143492588-75 +160940422,55,16037136,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:32:14 AM,04/03/2016 02:33:33 AM,04/03/2016 02:33:54 AM,04/03/2016 02:34:05 AM,04/03/2016 02:46:42 AM,04/03/2016 03:25:48 AM,04/03/2016 03:48:17 AM,Code 2 Transport,04/03/2016 04:30:23 AM,2300 Block of 28TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7435624337993, -122.485331778015)",160940422-55 +150951815,AM16,15036114,Medical Incident,04/05/2015,04/05/2015,04/05/2015 03:00:46 PM,04/05/2015 03:04:28 PM,04/05/2015 03:05:23 PM,04/05/2015 03:06:12 PM,04/05/2015 03:13:56 PM,04/05/2015 03:27:25 PM,04/05/2015 03:47:25 PM,Code 2 Transport,04/05/2015 04:27:27 PM,7TH ST/MINNA ST,San Francisco,94103,B02,1,2315,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7787853715958, -122.41040149505)",150951815-AM16 +160973567,78,16038604,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:27:27 PM,04/06/2016 06:28:06 PM,04/06/2016 06:30:26 PM,04/06/2016 06:34:30 PM,04/06/2016 06:38:35 PM,04/06/2016 06:51:55 PM,04/06/2016 06:56:37 PM,Code 2 Transport,04/06/2016 07:20:26 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160973567-78 +141090151,E44,14036738,Structure Fire,04/19/2014,04/19/2014,04/19/2014 11:09:30 AM,04/19/2014 11:10:19 AM,04/19/2014 11:16:08 AM,04/19/2014 11:16:08 AM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Fire,04/19/2014 11:16:45 AM,1600 Block of HUDSON AVE,SAN FRANCISCO,94124,B10,25,6467,3,3,3,true,Alarm,1,ENGINE,11,10,10,Bayview Hunters Point,"(37.740225628894, -122.388473672211)",141090151-E44 +153151662,RC2,15121036,Medical Incident,11/11/2015,11/11/2015,11/11/2015 12:39:06 PM,11/11/2015 12:43:33 PM,11/11/2015 12:54:36 PM,11/11/2015 12:55:24 PM,11/11/2015 12:57:51 PM,04/25/2016 01:07:16 PM,04/25/2016 01:07:16 PM,Code 3 Transport,11/11/2015 01:10:17 PM,3700 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7811145973229, -122.459428097601)",153151662-RC2 +142671940,E19,14093513,Structure Fire,09/24/2014,09/24/2014,09/24/2014 01:19:15 PM,09/24/2014 01:19:15 PM,09/24/2014 01:19:27 PM,09/24/2014 01:20:33 PM,09/24/2014 01:25:22 PM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/24/2014 01:34:48 PM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",142671940-E19 +151480175,B07,15056177,Structure Fire,05/28/2015,05/27/2015,05/28/2015 01:53:39 AM,05/28/2015 01:55:41 AM,05/28/2015 02:03:42 AM,05/28/2015 02:06:35 AM,05/28/2015 02:15:24 AM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Fire,05/28/2015 02:47:53 AM,BALBOA ST/48TH AV,San Francisco,94121,B07,34,7312,3,3,3,false,Alarm,1,CHIEF,8,7,1,Outer Richmond,"(37.7751768203632, -122.509091953419)",151480175-B07 +160940453,AM20,16037141,Traffic Collision,04/03/2016,04/02/2016,04/03/2016 02:47:40 AM,04/03/2016 02:49:10 AM,04/03/2016 02:50:32 AM,04/03/2016 02:51:37 AM,04/03/2016 02:54:55 AM,04/03/2016 03:08:37 AM,04/03/2016 03:20:22 AM,Code 3 Transport,04/03/2016 04:29:40 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94116,B08,39,8624,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",160940453-AM20 +152833409,71,15108781,Medical Incident,10/10/2015,10/10/2015,10/10/2015 06:49:47 PM,10/10/2015 06:51:05 PM,10/10/2015 06:52:13 PM,10/10/2015 06:52:20 PM,10/10/2015 06:57:53 PM,10/10/2015 08:23:38 PM,10/10/2015 07:18:23 PM,Code 2 Transport,10/10/2015 08:34:16 PM,0 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,3,3,3,true,Non Life-threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",152833409-71 +160972954,84,16038529,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:24:34 PM,04/06/2016 04:25:18 PM,04/06/2016 04:34:49 PM,04/06/2016 04:35:15 PM,04/06/2016 04:39:39 PM,04/06/2016 05:05:52 PM,04/06/2016 05:46:03 PM,Code 2 Transport,04/06/2016 06:35:49 PM,0 Block of DE LONG ST,San Francisco,94112,B09,33,8357,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7096061746136, -122.459869387331)",160972954-84 +150632079,T01,15024076,Structure Fire,03/04/2015,03/04/2015,03/04/2015 01:44:22 PM,03/04/2015 01:44:33 PM,03/04/2015 01:45:15 PM,03/04/2015 01:46:48 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Fire,03/04/2015 01:49:08 PM,3RD ST/MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",150632079-T01 +142963810,T02,14104593,Alarms,10/23/2014,10/23/2014,10/23/2014 10:21:58 PM,10/23/2014 10:23:27 PM,10/23/2014 10:25:14 PM,10/23/2014 10:27:18 PM,10/23/2014 10:30:21 PM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Fire,10/23/2014 10:36:08 PM,2800 Block of LEAVENWORTH ST,San Francisco,94109,B01,28,1524,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8073249129151, -122.419065516897)",142963810-T02 +143330185,E37,14117857,Medical Incident,11/29/2014,11/28/2014,11/29/2014 01:09:16 AM,11/29/2014 01:09:16 AM,11/29/2014 01:10:27 AM,11/29/2014 01:12:15 AM,11/29/2014 01:13:38 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Code 2 Transport,11/29/2014 01:20:32 AM,20TH ST/3RD ST,San Francisco,94107,B10,37,2665,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",143330185-E37 +151970475,E01,15075011,Medical Incident,07/16/2015,07/15/2015,07/16/2015 06:31:59 AM,07/16/2015 06:31:59 AM,07/16/2015 06:32:38 AM,07/16/2015 06:33:57 AM,07/16/2015 06:38:45 AM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Code 2 Transport,07/16/2015 06:52:24 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",151970475-E01 +143332603,E03,14118098,Medical Incident,11/29/2014,11/29/2014,11/29/2014 05:25:30 PM,11/29/2014 05:26:30 PM,11/29/2014 05:27:04 PM,11/29/2014 05:27:58 PM,11/29/2014 05:29:53 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,Code 2 Transport,11/29/2014 05:32:29 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",143332603-E03 +151971644,72,15075120,Medical Incident,07/16/2015,07/16/2015,07/16/2015 12:44:13 PM,07/16/2015 12:44:45 PM,07/16/2015 12:45:37 PM,07/16/2015 12:45:51 PM,07/16/2015 01:08:35 PM,07/16/2015 01:15:06 PM,07/16/2015 01:43:44 PM,Code 2 Transport,07/16/2015 02:14:15 PM,1500 Block of NORIEGA ST,San Francisco,94122,B08,40,7431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7541298921229, -122.480226734682)",151971644-72 +143301002,B07,14116945,Alarms,11/26/2014,11/26/2014,11/26/2014 09:37:01 AM,11/26/2014 09:39:44 AM,11/26/2014 09:40:05 AM,11/26/2014 09:43:25 AM,11/26/2014 09:45:00 AM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/26/2014 10:00:31 AM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",143301002-B07 +160974351,87,16038687,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:58:34 PM,04/06/2016 10:00:56 PM,04/06/2016 10:01:38 PM,04/06/2016 10:02:15 PM,04/06/2016 10:08:23 PM,04/06/2016 10:33:58 PM,04/06/2016 11:25:15 PM,Code 2 Transport,04/06/2016 11:39:13 PM,0 Block of PERSIA AVE,San Francisco,94112,B09,43,6121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7229939497296, -122.435557066402)",160974351-87 +160923343,70,16036594,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:12:56 PM,04/01/2016 08:14:07 PM,04/01/2016 08:14:20 PM,04/01/2016 08:14:28 PM,04/01/2016 08:20:21 PM,04/01/2016 08:27:02 PM,04/01/2016 08:40:55 PM,Code 2 Transport,04/01/2016 08:54:16 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160923343-70 +160962675,61,16038084,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:19:21 PM,04/05/2016 04:20:12 PM,04/05/2016 04:20:42 PM,04/05/2016 04:21:24 PM,04/05/2016 04:27:22 PM,04/05/2016 04:41:45 PM,04/05/2016 05:18:07 PM,Code 2 Transport,04/05/2016 05:21:12 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160962675-61 +160930750,AM02,16036745,Other,04/02/2016,04/01/2016,04/02/2016 07:54:13 AM,04/02/2016 07:54:13 AM,04/02/2016 07:55:51 AM,04/02/2016 07:56:35 AM,04/02/2016 07:58:08 AM,04/02/2016 08:06:48 AM,04/02/2016 08:30:43 AM,Code 2 Transport,04/02/2016 09:03:46 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,false,Alarm,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",160930750-AM02 +143251691,68,14115090,Medical Incident,11/21/2014,11/21/2014,11/21/2014 12:56:02 PM,11/21/2014 12:57:08 PM,11/21/2014 01:02:07 PM,11/21/2014 01:02:15 PM,11/21/2014 01:11:26 PM,04/25/2016 01:13:53 PM,04/25/2016 01:13:53 PM,No Merit,11/21/2014 01:16:15 PM,SPRUCE ST/CALIFORNIA ST,San Francisco,94118,B07,10,4432,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.7864177314315, -122.453406647155)",143251691-68 +160962972,71,16038115,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:21:51 PM,04/05/2016 05:25:21 PM,04/05/2016 05:26:08 PM,04/05/2016 05:26:21 PM,04/05/2016 05:42:55 PM,04/05/2016 06:15:20 PM,04/05/2016 06:51:47 PM,Code 2 Transport,04/05/2016 07:30:14 PM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160962972-71 +150603171,T02,15023049,Outside Fire,03/01/2015,03/01/2015,03/01/2015 07:19:56 PM,03/01/2015 07:20:39 PM,03/01/2015 07:21:10 PM,03/01/2015 07:22:46 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Fire,03/01/2015 07:24:52 PM,2000 Block of KEARNY ST,San Francisco,94133,B01,28,937,3,3,3,false,Alarm,1,TRUCK,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",150603171-T02 +160922101,76,16036475,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:51:13 PM,04/01/2016 02:51:13 PM,04/01/2016 02:51:23 PM,04/01/2016 02:51:31 PM,04/01/2016 02:54:06 PM,04/01/2016 03:03:03 PM,04/01/2016 03:10:04 PM,Code 2 Transport,04/01/2016 03:43:03 PM,POST ST/LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",160922101-76 +153011082,RC2,15115408,Citizen Assist / Service Call,10/28/2015,10/28/2015,10/28/2015 09:24:17 AM,10/28/2015 09:25:53 AM,10/28/2015 09:56:01 AM,10/28/2015 09:57:22 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 10:02:20 AM,FULTON ST/7TH AV,San Francisco,94122,B07,31,7133,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,7,1,Golden Gate Park,"(37.7734887431391, -122.464811669746)",153011082-RC2 +141612754,87,14055619,Medical Incident,06/10/2014,06/10/2014,06/10/2014 06:40:53 PM,06/10/2014 06:41:33 PM,06/10/2014 06:57:28 PM,06/10/2014 06:57:36 PM,06/10/2014 07:10:50 PM,06/10/2014 07:23:23 PM,06/10/2014 07:41:26 PM,Code 2 Transport,06/10/2014 08:06:52 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",141612754-87 +160963320,AM08,16038140,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:38:17 PM,04/05/2016 06:40:25 PM,04/05/2016 06:44:01 PM,04/05/2016 06:44:45 PM,04/05/2016 06:52:07 PM,04/05/2016 07:06:35 PM,04/05/2016 07:17:42 PM,Code 2 Transport,04/05/2016 07:56:22 PM,EDDY ST/BUCHANAN ST,San Francisco,94115,B02,5,3366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7818474386287, -122.42904060379)",160963320-AM08 +143072177,2R01,14108668,,11/03/2014,11/03/2014,11/03/2014 03:21:33 PM,11/03/2014 03:25:17 PM,11/03/2014 03:42:15 PM,11/03/2014 03:42:15 PM,11/03/2014 03:42:15 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,Fire,11/03/2014 03:42:17 PM,9TH ST/MINNA ST,San Francisco,94103,B02,36,2336,3,3,3,false,Alarm,1,ADMIN,0,2,6,South of Market,"(37.7758006844705, -122.414173206116)",143072177-2R01 +160930991,79,16036774,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:23:09 AM,04/02/2016 09:23:38 AM,04/02/2016 09:23:52 AM,04/02/2016 09:23:58 AM,04/02/2016 09:36:37 AM,04/02/2016 09:49:32 AM,04/02/2016 10:23:15 AM,Code 2 Transport,04/02/2016 10:49:44 AM,0 Block of EXETER ST,San Francisco,94124,B10,44,6323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7221534691563, -122.398611328475)",160930991-79 +150291702,E15,15011165,Medical Incident,01/29/2015,01/29/2015,01/29/2015 01:10:15 PM,01/29/2015 01:11:39 PM,01/29/2015 01:14:17 PM,01/29/2015 01:16:20 PM,01/29/2015 01:18:39 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Code 2 Transport,01/29/2015 01:31:49 PM,400 Block of HEARST AVE,San Francisco,94112,B09,15,8231,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7306398002734, -122.447716619314)",150291702-E15 +161000496,64,16039622,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:05:42 AM,04/09/2016 04:07:40 AM,04/09/2016 04:07:48 AM,04/09/2016 04:08:14 AM,04/09/2016 04:13:32 AM,04/09/2016 04:29:39 AM,04/09/2016 04:40:58 AM,Code 2 Transport,04/09/2016 05:11:16 AM,400 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",161000496-64 +151770856,77,15067301,Medical Incident,06/26/2015,06/26/2015,06/26/2015 08:33:00 AM,06/26/2015 08:35:32 AM,06/26/2015 08:35:48 AM,06/26/2015 08:36:11 AM,06/26/2015 08:52:46 AM,06/26/2015 08:52:51 AM,06/26/2015 09:12:28 AM,Code 2 Transport,06/26/2015 10:04:02 AM,100 Block of MIDDLE POINT RD,San Francisco,94124,B10,25,6556,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7348616704412, -122.379348557253)",151770856-77 +161002916,52,16039910,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 07:58:18 PM,04/09/2016 07:58:18 PM,04/09/2016 07:58:36 PM,04/09/2016 07:58:43 PM,04/09/2016 08:00:35 PM,04/09/2016 08:27:14 PM,04/09/2016 08:39:42 PM,Code 2 Transport,04/09/2016 09:02:22 PM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",161002916-52 +142672768,T14,14093595,Water Rescue,09/24/2014,09/24/2014,09/24/2014 04:55:59 PM,09/24/2014 04:59:33 PM,09/24/2014 05:01:40 PM,09/24/2014 05:01:49 PM,09/24/2014 05:06:27 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Fire,09/24/2014 05:25:09 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Fire,1,TRUCK,6,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",142672768-T14 +151761189,E01,15066984,Medical Incident,06/25/2015,06/25/2015,06/25/2015 10:15:02 AM,06/25/2015 10:17:28 AM,06/25/2015 10:17:40 AM,06/25/2015 10:21:18 AM,06/25/2015 10:30:50 AM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,Code 2 Transport,06/25/2015 10:45:18 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.781960649289, -122.402224095303)",151761189-E01 +141860253,T17,14064273,Alarms,07/05/2014,07/04/2014,07/05/2014 01:01:26 AM,07/05/2014 01:03:49 AM,07/05/2014 01:03:57 AM,07/05/2014 01:05:34 AM,07/05/2014 01:08:36 AM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Fire,07/05/2014 01:13:11 AM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",141860253-T17 +151672715,EMS10,15063957,Structure Fire,06/16/2015,06/16/2015,06/16/2015 06:13:59 PM,06/16/2015 06:13:59 PM,06/16/2015 06:23:58 PM,06/16/2015 06:23:58 PM,06/16/2015 06:31:18 PM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Code 2 Transport,06/16/2015 06:34:15 PM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,3,3,3,false,Alarm,1,CHIEF,4,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",151672715-EMS10 +142233461,73,14077559,Medical Incident,08/11/2014,08/11/2014,08/11/2014 10:25:55 PM,08/11/2014 10:25:55 PM,08/11/2014 10:26:19 PM,08/11/2014 10:26:49 PM,08/11/2014 10:31:57 PM,08/11/2014 10:43:45 PM,08/11/2014 10:48:51 PM,Code 2 Transport,08/11/2014 11:24:44 PM,CYRIL MAGNIN ST/ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7853882479724, -122.408667084184)",142233461-73 +150340626,E17,15013016,Medical Incident,02/03/2015,02/02/2015,02/03/2015 07:36:27 AM,02/03/2015 07:36:46 AM,02/03/2015 07:37:14 AM,02/03/2015 07:39:18 AM,02/03/2015 07:42:28 AM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Code 2 Transport,02/03/2015 07:54:43 AM,0 Block of ARDATH CT,San Francisco,94124,B10,17,6624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7345025151708, -122.382247020863)",150340626-E17 +150081595,E08,15003111,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:00:12 PM,01/08/2015 12:01:55 PM,01/08/2015 12:02:54 PM,01/08/2015 12:04:01 PM,01/08/2015 12:06:31 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 12:35:53 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",150081595-E08 +150921184,E11,15034916,Medical Incident,04/02/2015,04/02/2015,04/02/2015 10:31:25 AM,04/02/2015 10:33:35 AM,04/02/2015 10:34:17 AM,04/02/2015 10:34:31 AM,04/02/2015 10:37:27 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/02/2015 10:52:10 AM,3200 Block of FOLSOM ST,San Francisco,94110,B06,11,5664,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7459532028509, -122.413523168673)",150921184-E11 +152210461,E13,15084093,Medical Incident,08/09/2015,08/08/2015,08/09/2015 03:29:59 AM,08/09/2015 03:30:40 AM,08/09/2015 03:32:15 AM,08/09/2015 03:34:08 AM,08/09/2015 03:37:05 AM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Code 2 Transport,08/09/2015 03:46:33 AM,500 Block of MISSION ST,San Francisco,94105,B03,1,2145,2,3,3,true,Non Life-threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7887066123323, -122.399010207568)",152210461-E13 +142430260,AM30,14084487,Medical Incident,08/31/2014,08/30/2014,08/31/2014 01:43:28 AM,08/31/2014 01:44:07 AM,08/31/2014 01:45:03 AM,08/31/2014 01:45:39 AM,08/31/2014 01:47:25 AM,08/31/2014 01:54:13 AM,08/31/2014 01:59:47 AM,Code 2 Transport,08/31/2014 02:36:20 AM,2200 Block of UNION ST,San Francisco,94123,B04,16,3552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7969299394907, -122.436302808096)",142430260-AM30 +142552915,KM10,14089130,Medical Incident,09/12/2014,09/12/2014,09/12/2014 06:23:11 PM,09/12/2014 06:23:11 PM,09/12/2014 06:24:08 PM,09/12/2014 06:25:17 PM,09/12/2014 06:32:12 PM,09/12/2014 06:47:25 PM,09/12/2014 06:56:08 PM,Against Medical Advice,09/12/2014 07:18:17 PM,300 Block of 4TH ST,San Francisco,94107,B03,8,2216,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7810432179334, -122.399833846531)",142552915-KM10 +141060018,92,14035614,Medical Incident,04/16/2014,04/15/2014,04/16/2014 01:20:30 AM,04/16/2014 01:23:08 AM,04/16/2014 01:24:24 AM,04/16/2014 01:24:24 AM,04/16/2014 01:29:27 AM,04/16/2014 01:48:11 AM,04/16/2014 02:23:57 AM,Code 2 Transport,04/16/2014 02:28:59 AM,700 Block of 4TH ST,SAN FRANCISCO,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",141060018-92 +143581066,E11,14128073,Medical Incident,12/24/2014,12/24/2014,12/24/2014 10:20:24 AM,12/24/2014 10:22:35 AM,12/24/2014 10:27:33 AM,12/24/2014 10:29:30 AM,12/24/2014 10:33:36 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Code 2 Transport,12/24/2014 10:43:43 AM,300 Block of JERSEY ST,San Francisco,94114,B06,11,5522,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7505068709668, -122.432895020479)",143581066-E11 +143121806,77,14110521,Medical Incident,11/08/2014,11/08/2014,11/08/2014 01:28:42 PM,11/08/2014 01:30:21 PM,11/08/2014 01:30:43 PM,11/08/2014 01:30:53 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Code 2 Transport,11/08/2014 01:34:19 PM,1700 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7823892979181, -122.47791315608)",143121806-77 +161000208,64,16039579,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:22:19 AM,04/09/2016 01:22:19 AM,04/09/2016 01:24:22 AM,04/09/2016 01:24:39 AM,04/09/2016 01:33:43 AM,04/09/2016 01:48:25 AM,04/09/2016 02:12:40 AM,Code 2 Transport,04/09/2016 02:44:22 AM,1000 Block of FULTON ST,San Francisco,94117,B05,5,3626,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7773312858554, -122.434030283729)",161000208-64 +152552842,T03,15097613,Alarms,09/12/2015,09/12/2015,09/12/2015 06:18:51 PM,09/12/2015 06:18:52 PM,09/12/2015 06:19:06 PM,09/12/2015 06:20:35 PM,09/12/2015 06:23:31 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 06:28:08 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",152552842-T03 +151341990,KM02,15050888,Medical Incident,05/14/2015,05/14/2015,05/14/2015 01:37:36 PM,05/14/2015 01:39:08 PM,05/14/2015 01:40:42 PM,05/14/2015 01:42:02 PM,05/14/2015 01:46:58 PM,05/14/2015 02:24:18 PM,05/14/2015 02:44:55 PM,Code 2 Transport,05/14/2015 03:14:55 PM,0 Block of ROBBLEE AVE,San Francisco,94124,B10,42,6445,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7356185939593, -122.399082480325)",151341990-KM02 +153361825,53,15129225,Medical Incident,12/02/2015,12/02/2015,12/02/2015 12:43:24 PM,12/02/2015 12:43:39 PM,12/02/2015 12:43:48 PM,12/02/2015 12:43:54 PM,12/02/2015 12:48:50 PM,12/02/2015 01:03:09 PM,12/02/2015 01:09:58 PM,Code 3 Transport,12/02/2015 02:38:30 PM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.709762526111, -122.449674980499)",153361825-53 +150192810,B03,15007593,Alarms,01/19/2015,01/19/2015,01/19/2015 06:18:14 PM,01/19/2015 06:19:41 PM,01/19/2015 06:20:11 PM,01/19/2015 06:22:02 PM,01/19/2015 06:22:02 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Fire,01/19/2015 06:32:52 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7791674218963, -122.406346425632)",150192810-B03 +150141149,KM01,15005486,Medical Incident,01/14/2015,01/14/2015,01/14/2015 10:17:21 AM,01/14/2015 10:18:15 AM,01/14/2015 10:19:05 AM,01/14/2015 10:20:32 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,No Merit,01/14/2015 10:27:45 AM,0 Block of ASHTON AVE,San Francisco,94112,B09,15,8434,3,3,3,false,Non Life-threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7193876630599, -122.462323615589)",150141149-KM01 +160961588,KM08,16037989,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:03:30 PM,04/05/2016 12:03:49 PM,04/05/2016 12:05:18 PM,04/05/2016 12:08:46 PM,04/05/2016 12:11:35 PM,04/05/2016 12:59:00 PM,04/05/2016 01:08:09 PM,Code 2 Transport,04/05/2016 01:51:35 PM,OCTAVIA ST/HAYES ST,San Francisco,94102,B02,36,3314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7766875550419, -122.424513700951)",160961588-KM08 +150112655,83,15004445,Medical Incident,01/11/2015,01/11/2015,01/11/2015 05:38:22 PM,01/11/2015 05:38:22 PM,01/11/2015 05:38:44 PM,01/11/2015 05:39:01 PM,01/11/2015 05:46:34 PM,01/11/2015 06:05:07 PM,01/11/2015 06:13:54 PM,Code 2 Transport,01/11/2015 06:48:32 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",150112655-83 +153034095,E31,15116434,Alarms,10/30/2015,10/30/2015,10/30/2015 10:49:56 PM,10/30/2015 10:51:41 PM,10/30/2015 10:52:30 PM,10/30/2015 10:53:50 PM,10/30/2015 10:56:51 PM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Fire,10/30/2015 11:05:51 PM,1700 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,3,3,3,true,Alarm,1,ENGINE,2,7,1,Outer Richmond,"(37.7823892979181, -122.47791315608)",153034095-E31 +142030227,E03,14070103,Alarms,07/22/2014,07/21/2014,07/22/2014 02:18:14 AM,07/22/2014 02:19:09 AM,07/22/2014 02:19:41 AM,07/22/2014 02:21:52 AM,07/22/2014 02:23:57 AM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Fire,07/22/2014 02:28:00 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",142030227-E03 +143110219,E03,14109990,Medical Incident,11/07/2014,11/06/2014,11/07/2014 01:45:04 AM,11/07/2014 01:45:04 AM,11/07/2014 01:45:17 AM,11/07/2014 01:47:41 AM,11/07/2014 01:49:52 AM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Code 2 Transport,11/07/2014 01:53:29 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",143110219-E03 +143260933,76,14115414,Medical Incident,11/22/2014,11/22/2014,11/22/2014 08:50:12 AM,11/22/2014 08:51:51 AM,11/22/2014 08:52:40 AM,11/22/2014 08:53:17 AM,11/22/2014 08:59:00 AM,11/22/2014 09:22:21 AM,11/22/2014 09:41:56 AM,Code 2 Transport,11/22/2014 10:12:17 AM,400 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7864766476212, -122.411352334203)",143260933-76 +150403825,T11,15015788,Structure Fire,02/09/2015,02/09/2015,02/09/2015 10:50:41 PM,02/09/2015 10:50:41 PM,02/09/2015 10:50:54 PM,02/09/2015 10:52:48 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Fire,02/09/2015 10:53:27 PM,25TH ST/VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,false,Alarm,1,TRUCK,2,6,8,Mission,"(37.7505058278022, -122.420507005779)",150403825-T11 +153311927,E07,15127405,Medical Incident,11/27/2015,11/27/2015,11/27/2015 02:33:14 PM,11/27/2015 02:34:31 PM,11/27/2015 02:35:54 PM,11/27/2015 02:37:16 PM,11/27/2015 02:39:34 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,No Merit,11/27/2015 02:47:34 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Non Life-threatening,1,ENGINE,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",153311927-E07 +141990353,B01,14068762,Alarms,07/18/2014,07/17/2014,07/18/2014 03:00:59 AM,07/18/2014 03:02:21 AM,07/18/2014 03:02:31 AM,07/18/2014 03:04:10 AM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Fire,07/18/2014 03:14:37 AM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,false,Alarm,1,CHIEF,3,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",141990353-B01 +160940611,52,16037155,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:45:13 AM,04/03/2016 04:45:55 AM,04/03/2016 04:46:28 AM,04/03/2016 04:46:33 AM,04/03/2016 04:49:03 AM,04/03/2016 05:08:03 AM,04/03/2016 05:15:35 AM,Code 2 Transport,04/03/2016 05:34:41 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",160940611-52 +152760677,E12,15105663,Medical Incident,10/03/2015,10/02/2015,10/03/2015 06:23:01 AM,10/03/2015 06:23:23 AM,10/03/2015 06:23:48 AM,10/03/2015 06:25:43 AM,10/03/2015 06:28:03 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Code 2 Transport,10/03/2015 06:33:23 AM,1500 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",152760677-E12 +160941829,75,16037260,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:06:04 PM,04/03/2016 01:07:37 PM,04/03/2016 01:11:17 PM,04/03/2016 01:11:28 PM,04/03/2016 01:24:50 PM,04/03/2016 01:31:45 PM,04/03/2016 02:25:14 PM,Code 2 Transport,04/03/2016 02:28:25 PM,300 Block of GREAT HWY,San Francisco,94121,B07,34,7314,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",160941829-75 +152461962,T08,15093829,Vehicle Fire,09/03/2015,09/03/2015,09/03/2015 01:25:10 PM,09/03/2015 01:26:15 PM,09/03/2015 01:28:20 PM,09/03/2015 01:28:43 PM,09/03/2015 01:35:39 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/03/2015 01:51:35 PM,300 Block of 1ST ST,San Francisco,94105,B03,48,2136,3,3,3,false,Fire,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",152461962-T08 +153243116,E15,15124804,Medical Incident,11/20/2015,11/20/2015,11/20/2015 05:46:15 PM,11/20/2015 05:47:22 PM,11/20/2015 05:47:51 PM,11/20/2015 05:48:45 PM,11/20/2015 05:51:22 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Code 2 Transport,11/20/2015 06:01:06 PM,JULES AV/HOLLOWAY AV,San Francisco,94112,B09,15,8463,3,3,3,true,Non Life-threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7218312559176, -122.461242252435)",153243116-E15 +143280711,E08,14116185,Structure Fire,11/24/2014,11/24/2014,11/24/2014 08:07:02 AM,11/24/2014 08:07:02 AM,11/24/2014 08:07:05 AM,11/24/2014 08:08:20 AM,11/24/2014 08:09:54 AM,04/25/2016 01:13:50 PM,04/25/2016 01:13:50 PM,Fire,11/24/2014 08:10:27 AM,6TH ST/BRYANT ST,San Francisco,94107,B03,8,2255,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7760393195221, -122.402524096783)",143280711-E08 +142931102,E43,14103298,Medical Incident,10/20/2014,10/20/2014,10/20/2014 10:22:54 AM,10/20/2014 10:25:17 AM,10/20/2014 10:26:40 AM,10/20/2014 10:27:51 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Code 2 Transport,10/20/2014 10:28:36 AM,2200 Block of BAY SHORE BLVD,San Francisco,94134,B10,44,6255,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7121240018381, -122.40295368671)",142931102-E43 +142552073,KM14,14089060,Medical Incident,09/12/2014,09/12/2014,09/12/2014 02:47:27 PM,09/12/2014 02:47:59 PM,09/12/2014 02:48:48 PM,09/12/2014 02:49:44 PM,09/12/2014 02:49:55 PM,09/12/2014 03:09:46 PM,09/12/2014 03:15:26 PM,Code 2 Transport,09/12/2014 03:43:41 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142552073-KM14 +160971178,74,16038352,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:54:00 AM,04/06/2016 09:54:31 AM,04/06/2016 09:57:10 AM,04/06/2016 09:57:16 AM,04/06/2016 09:58:41 AM,04/06/2016 10:08:40 AM,04/06/2016 10:39:34 AM,Code 3 Transport,04/06/2016 11:01:47 AM,1300 Block of FILBERT ST,San Francisco,94109,B01,41,1626,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Russian Hill,"(37.7998522915105, -122.421714876438)",160971178-74 +142880990,81,14101445,Medical Incident,10/15/2014,10/15/2014,10/15/2014 09:20:10 AM,10/15/2014 09:22:36 AM,10/15/2014 09:38:39 AM,10/15/2014 09:38:48 AM,10/15/2014 09:53:51 AM,10/15/2014 10:08:39 AM,10/15/2014 10:32:38 AM,Code 2 Transport,10/15/2014 11:24:17 AM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",142880990-81 +151131388,T05,15042662,Structure Fire,04/23/2015,04/23/2015,04/23/2015 11:06:06 AM,04/23/2015 11:06:50 AM,04/23/2015 11:07:08 AM,04/23/2015 11:07:34 AM,04/23/2015 11:10:38 AM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Fire,04/23/2015 11:20:18 AM,200 Block of LINDEN ST,San Francisco,94102,B02,36,3213,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7765750171122, -122.422070047765)",151131388-T05 +160961943,64,16038029,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:22:08 PM,04/05/2016 01:27:02 PM,04/05/2016 01:27:27 PM,04/05/2016 01:27:43 PM,04/05/2016 01:43:52 PM,04/05/2016 01:58:52 PM,04/05/2016 02:40:59 PM,Code 2 Transport,04/05/2016 02:58:53 PM,LEAVENWORTH ST/TURK ST,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160961943-64 +160993462,68,16039462,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:30:41 PM,04/08/2016 08:31:40 PM,04/08/2016 08:32:03 PM,04/08/2016 08:33:32 PM,04/08/2016 09:10:28 PM,04/08/2016 09:10:30 PM,04/08/2016 09:19:03 PM,Code 2 Transport,04/08/2016 09:56:39 PM,DIVISION ST/BRYANT ST,San Francisco,94103,B02,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7694111910912, -122.410931089145)",160993462-68 +160973913,70,16038639,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:46:29 PM,04/06/2016 07:48:17 PM,04/06/2016 07:48:48 PM,04/06/2016 07:49:02 PM,04/06/2016 07:52:38 PM,04/06/2016 08:06:01 PM,04/06/2016 08:13:03 PM,Code 2 Transport,04/06/2016 08:47:12 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160973913-70 +160974145,81,16038667,Other,04/06/2016,04/06/2016,04/06/2016 08:54:50 PM,04/06/2016 08:56:09 PM,04/06/2016 09:08:20 PM,04/06/2016 09:08:44 PM,04/06/2016 09:17:20 PM,04/06/2016 09:40:51 PM,04/06/2016 10:19:00 PM,Code 2 Transport,04/06/2016 10:24:35 PM,0 Block of SKYVIEW WAY,San Francisco,94131,B08,20,5352,3,3,3,true,Alarm,1,MEDIC,2,8,7,Twin Peaks,"(37.7493307598868, -122.450432551712)",160974145-81 +150542846,62,15020859,Medical Incident,02/23/2015,02/23/2015,02/23/2015 05:17:34 PM,02/23/2015 05:18:57 PM,02/23/2015 05:19:02 PM,02/23/2015 05:20:54 PM,02/23/2015 05:32:09 PM,02/23/2015 05:47:36 PM,02/23/2015 06:07:09 PM,Code 2 Transport,02/23/2015 06:30:38 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",150542846-62 +142901037,RC2,14102169,Medical Incident,10/17/2014,10/17/2014,10/17/2014 09:40:42 AM,10/17/2014 09:40:42 AM,10/17/2014 09:47:53 AM,10/17/2014 09:47:53 AM,10/17/2014 09:50:26 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/17/2014 10:00:37 AM,500 Block of HAYES ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,2,5,Hayes Valley,"(37.7765217026729, -122.425377541131)",142901037-RC2 +141802387,E01,14062304,Medical Incident,06/29/2014,06/29/2014,06/29/2014 04:37:32 PM,06/29/2014 04:39:19 PM,06/29/2014 04:39:53 PM,06/29/2014 04:41:26 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Code 2 Transport,06/29/2014 04:44:24 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",141802387-E01 +161001223,AM12,16039709,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:53:57 AM,04/09/2016 10:53:57 AM,04/09/2016 10:56:12 AM,04/09/2016 10:56:32 AM,04/09/2016 11:03:17 AM,04/09/2016 11:10:20 AM,04/09/2016 11:29:45 AM,Code 2 Transport,04/09/2016 11:58:34 AM,100 Block of VALENCIA ST,San Francisco,94103,B02,36,5126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7707273342452, -122.422514586133)",161001223-AM12 +160933534,55,16037055,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 09:35:47 PM,04/02/2016 09:41:24 PM,04/02/2016 09:42:09 PM,04/02/2016 09:42:26 PM,04/02/2016 09:54:16 PM,04/02/2016 10:16:33 PM,04/02/2016 10:31:33 PM,Code 2 Transport,04/02/2016 11:04:35 PM,2600 Block of 22ND ST,San Francisco,94110,B06,7,5474,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7560269818852, -122.40804532047)",160933534-55 +142133502,67,14074014,Medical Incident,08/01/2014,08/01/2014,08/01/2014 10:19:41 PM,08/01/2014 10:20:25 PM,08/01/2014 10:20:39 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Code 2 Transport,08/01/2014 10:23:38 PM,1900 Block of CLAY ST,San Francisco,94109,B04,38,3253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,4,2,Pacific Heights,"(37.7919153818228, -122.425171289022)",142133502-67 +150433921,78,15016909,Medical Incident,02/12/2015,02/12/2015,02/12/2015 10:45:14 PM,02/12/2015 10:45:14 PM,02/12/2015 10:53:37 PM,02/12/2015 10:54:13 PM,02/12/2015 11:01:12 PM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/12/2015 11:05:55 PM,0 Block of GOLDEN GATE AVE,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",150433921-78 +142880330,E01,14101385,Medical Incident,10/15/2014,10/14/2014,10/15/2014 04:03:18 AM,10/15/2014 04:04:23 AM,10/15/2014 04:04:35 AM,10/15/2014 04:07:48 AM,10/15/2014 04:10:09 AM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,Code 2 Transport,10/15/2014 04:23:50 AM,700 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7841058563108, -122.401539484586)",142880330-E01 +150570190,E08,15021640,Medical Incident,02/26/2015,02/25/2015,02/26/2015 01:48:45 AM,02/26/2015 01:50:41 AM,02/26/2015 01:50:54 AM,02/26/2015 01:52:30 AM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Code 2 Transport,02/26/2015 02:19:01 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",150570190-E08 +143580820,2R01,14128047,,12/24/2014,12/24/2014,12/24/2014 08:52:14 AM,12/24/2014 08:56:08 AM,12/24/2014 09:39:35 AM,12/24/2014 09:39:35 AM,12/24/2014 09:39:35 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Patient Declined Transport,12/24/2014 09:39:38 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,ADMIN,0,3,6,South of Market,"(37.7803475492385, -122.406487967809)",143580820-2R01 +153331198,E14,15128022,Medical Incident,11/29/2015,11/29/2015,11/29/2015 11:14:00 AM,11/29/2015 11:15:39 AM,11/29/2015 11:15:56 AM,11/29/2015 11:16:48 AM,11/29/2015 11:19:32 AM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Code 2 Transport,11/29/2015 11:30:49 AM,3400 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.775733706863, -122.495712835118)",153331198-E14 +141952229,T01,14067624,Structure Fire,07/14/2014,07/14/2014,07/14/2014 03:51:34 PM,07/14/2014 03:51:34 PM,07/14/2014 03:53:20 PM,07/14/2014 03:54:59 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Fire,07/14/2014 03:55:44 PM,MASON ST/MARKET ST,San Francisco,94103,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",141952229-T01 +151901368,FD00A,15072509,,07/09/2015,07/09/2015,07/09/2015 10:51:54 AM,07/09/2015 10:51:54 AM,07/09/2015 11:10:07 AM,07/09/2015 11:10:07 AM,07/09/2015 11:10:07 AM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Fire,07/09/2015 11:10:30 AM,GILMAN AV/JENNINGS ST,San Francisco,94124,B10,17,6612,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,5,10,10,Bayview Hunters Point,"(37.7214084625386, -122.393736929535)",151901368-FD00A +152091607,E16,15079610,Structure Fire,07/28/2015,07/28/2015,07/28/2015 11:49:26 AM,07/28/2015 11:49:26 AM,07/28/2015 11:50:07 AM,07/28/2015 11:51:11 AM,07/28/2015 11:52:27 AM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/28/2015 11:53:35 AM,FILLMORE ST/UNION ST,San Francisco,94123,B04,16,3552,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7970890002513, -122.435489829172)",152091607-E16 +160993421,58,16039456,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:16:14 PM,04/08/2016 08:17:54 PM,04/08/2016 08:18:10 PM,04/08/2016 08:18:22 PM,04/08/2016 08:28:59 PM,04/08/2016 08:45:07 PM,04/08/2016 09:03:46 PM,Code 2 Transport,04/08/2016 09:33:44 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160993421-58 +160981317,62,16038862,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:17:10 AM,04/07/2016 10:19:08 AM,04/07/2016 10:20:18 AM,04/07/2016 10:20:33 AM,04/07/2016 10:44:20 AM,04/07/2016 11:11:19 AM,04/07/2016 11:28:33 AM,Code 2 Transport,04/07/2016 12:09:53 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160981317-62 +151730497,E36,15065942,Medical Incident,06/22/2015,06/21/2015,06/22/2015 06:53:54 AM,06/22/2015 06:55:44 AM,06/22/2015 07:12:09 AM,06/22/2015 07:13:34 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Code 2 Transport,06/22/2015 07:14:51 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",151730497-E36 +152182708,82,15083107,Medical Incident,08/06/2015,08/06/2015,08/06/2015 05:02:09 PM,08/06/2015 05:03:08 PM,08/06/2015 05:04:09 PM,08/06/2015 05:04:16 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/06/2015 05:20:18 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",152182708-82 +141510284,E19,14051752,Alarms,05/31/2014,05/30/2014,05/31/2014 01:33:06 AM,05/31/2014 01:34:52 AM,05/31/2014 01:35:15 AM,05/31/2014 01:37:10 AM,05/31/2014 01:37:10 AM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Fire,05/31/2014 01:57:47 AM,200 Block of WINSTON DR,San Francisco,94132,B08,19,8862,3,3,3,true,Alarm,1,ENGINE,2,8,7,Lakeshore,"(37.7269310558754, -122.477956520245)",141510284-E19 +141522575,85,14052316,Medical Incident,06/01/2014,06/01/2014,06/01/2014 06:56:03 PM,06/01/2014 06:59:24 PM,06/01/2014 07:08:56 PM,06/01/2014 07:09:19 PM,06/01/2014 07:17:14 PM,06/01/2014 07:38:07 PM,06/01/2014 07:52:41 PM,Code 2 Transport,06/01/2014 08:31:12 PM,400 Block of LISBON ST,San Francisco,94112,B09,43,6134,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7212508959999, -122.434254898637)",141522575-85 +141683697,E07,14058160,Structure Fire,06/17/2014,06/17/2014,06/17/2014 11:22:06 PM,06/17/2014 11:22:59 PM,06/17/2014 11:23:38 PM,06/17/2014 11:24:40 PM,06/17/2014 11:26:37 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Fire,06/17/2014 11:50:34 PM,1100 Block of TREAT AVE,San Francisco,94110,B06,7,5526,3,3,3,true,Fire,1,ENGINE,2,6,9,Mission,"(37.7517746674665, -122.412847894317)",141683697-E07 +151593809,E02,15060949,Medical Incident,06/08/2015,06/08/2015,06/08/2015 10:29:59 PM,06/08/2015 10:30:12 PM,06/08/2015 10:30:37 PM,06/08/2015 10:31:56 PM,06/08/2015 10:32:53 PM,04/25/2016 01:10:07 PM,04/25/2016 01:10:07 PM,Code 2 Transport,06/08/2015 10:52:12 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",151593809-E02 +160930838,54,16036757,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:27:45 AM,04/02/2016 08:30:43 AM,04/02/2016 08:31:15 AM,04/02/2016 08:31:59 AM,04/02/2016 08:43:23 AM,04/02/2016 09:00:56 AM,04/02/2016 09:20:07 AM,Code 2 Transport,04/02/2016 09:51:36 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160930838-54 +160973370,52,16038577,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:46:53 PM,04/06/2016 05:48:52 PM,04/06/2016 05:49:53 PM,04/06/2016 05:50:13 PM,04/06/2016 06:01:41 PM,04/06/2016 06:16:37 PM,04/06/2016 06:45:31 PM,Code 2 Transport,04/06/2016 06:58:39 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160973370-52 +150920886,B01,15034882,Alarms,04/02/2015,04/02/2015,04/02/2015 09:09:30 AM,04/02/2015 09:10:51 AM,04/02/2015 09:11:05 AM,04/02/2015 09:12:19 AM,04/02/2015 09:17:00 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/02/2015 09:23:34 AM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,false,Alarm,1,CHIEF,3,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",150920886-B01 +152314115,B04,15088322,Traffic Collision,08/19/2015,08/19/2015,08/19/2015 11:15:49 PM,08/19/2015 11:17:10 PM,08/19/2015 11:17:49 PM,08/19/2015 11:18:45 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Patient Declined Transport,08/19/2015 11:21:51 PM,POLK ST/POST ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,CHIEF,5,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",152314115-B04 +151192117,E36,15045043,Alarms,04/29/2015,04/29/2015,04/29/2015 01:48:29 PM,04/29/2015 01:48:46 PM,04/29/2015 01:49:54 PM,04/29/2015 01:51:24 PM,04/29/2015 01:54:40 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/29/2015 02:05:28 PM,2100 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",151192117-E36 +151962827,E25,15074843,Structure Fire,07/15/2015,07/15/2015,07/15/2015 05:55:15 PM,07/15/2015 05:55:15 PM,07/15/2015 05:55:32 PM,07/15/2015 05:57:17 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Fire,07/15/2015 06:01:17 PM,KIRKWOOD AV/ALBATROSS CT,San Francisco,94124,B10,17,6665,3,3,3,false,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7282247671866, -122.372428105739)",151962827-E25 +152261495,E06,15086101,Medical Incident,08/14/2015,08/14/2015,08/14/2015 11:20:15 AM,08/14/2015 11:21:21 AM,08/14/2015 11:21:46 AM,08/14/2015 11:21:58 AM,08/14/2015 11:25:01 AM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Against Medical Advice,08/14/2015 11:34:38 AM,1300 Block of FELL ST,San Francisco,94117,B05,21,4252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7736869919131, -122.440088215983)",152261495-E06 +160960367,AM24,16037883,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:05:01 AM,04/05/2016 05:06:26 AM,04/05/2016 05:06:46 AM,04/05/2016 05:08:49 AM,04/05/2016 05:14:01 AM,04/05/2016 05:23:22 AM,04/05/2016 05:39:04 AM,Code 2 Transport,04/05/2016 06:18:09 AM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160960367-AM24 +141280994,E17,14043439,Medical Incident,05/08/2014,05/08/2014,05/08/2014 09:38:02 AM,05/08/2014 09:40:19 AM,05/08/2014 09:44:56 AM,05/08/2014 09:45:12 AM,05/08/2014 09:48:15 AM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Fire,05/08/2014 09:57:31 AM,1300 Block of QUESADA AVE,San Francisco,94124,B10,17,6571,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7296839278885, -122.384883031645)",141280994-E17 +160931570,KM04,16036838,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:18:43 PM,04/02/2016 12:18:43 PM,04/02/2016 12:19:06 PM,04/02/2016 12:19:48 PM,04/02/2016 12:22:38 PM,04/02/2016 12:35:41 PM,04/02/2016 12:58:49 PM,Code 2 Transport,04/02/2016 01:31:49 PM,LEAVENWORTH ST/GOLDEN GATE AV,San Francisco,94102,B02,1,1546,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",160931570-KM04 +142643089,T02,14092492,Structure Fire,09/21/2014,09/21/2014,09/21/2014 08:42:11 PM,09/21/2014 08:42:11 PM,09/21/2014 08:42:22 PM,09/21/2014 08:43:30 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Fire,09/21/2014 08:43:32 PM,GRANT AV/POST ST,San Francisco,94108,B01,1,1316,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",142643089-T02 +152020717,T01,15076889,Alarms,07/21/2015,07/20/2015,07/21/2015 07:56:09 AM,07/21/2015 07:57:41 AM,07/21/2015 07:58:02 AM,07/21/2015 08:00:54 AM,07/21/2015 08:03:50 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/21/2015 08:54:46 AM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",152020717-T01 +141090038,B06,14036645,Structure Fire,04/19/2014,04/18/2014,04/19/2014 02:24:02 AM,04/19/2014 02:24:03 AM,04/19/2014 02:24:47 AM,04/19/2014 02:26:46 AM,04/19/2014 02:28:39 AM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Fire,04/19/2014 02:31:19 AM,3500 Block of CESAR CHAVEZ ST,SAN FRANCISCO,94110,B06,11,555,3,3,3,false,Alarm,1,CHIEF,3,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",141090038-B06 +141631236,E01,14056162,Medical Incident,06/12/2014,06/12/2014,06/12/2014 11:15:22 AM,06/12/2014 11:15:52 AM,06/12/2014 11:18:57 AM,06/12/2014 11:19:34 AM,06/12/2014 11:21:52 AM,04/25/2016 01:16:49 PM,04/25/2016 01:16:49 PM,Code 2 Transport,06/12/2014 11:34:45 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",141631236-E01 +160932547,56,16036952,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:58:10 PM,04/02/2016 04:58:16 PM,04/02/2016 04:58:34 PM,04/02/2016 04:59:02 PM,04/02/2016 05:05:01 PM,04/02/2016 05:11:36 PM,04/02/2016 05:39:32 PM,Code 2 Transport,04/02/2016 05:50:07 PM,POWELL ST/JEFFERSON ST,San Francisco,94133,B01,28,1344,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.808624849677, -122.412523835376)",160932547-56 +141470256,E02,14050328,Alarms,05/27/2014,05/26/2014,05/27/2014 02:28:27 AM,05/27/2014 02:35:07 AM,05/27/2014 02:36:03 AM,05/27/2014 02:37:57 AM,05/27/2014 02:39:23 AM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,Fire,05/27/2014 03:00:37 AM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.796699717573, -122.408014703843)",141470256-E02 +150371140,E41,15014200,Medical Incident,02/06/2015,02/06/2015,02/06/2015 09:36:43 AM,02/06/2015 09:37:46 AM,02/06/2015 09:38:27 AM,02/06/2015 09:42:29 AM,02/06/2015 09:42:29 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Code 2 Transport,02/06/2015 09:55:47 AM,500 Block of SUTTER ST,San Francisco,94108,B01,3,1412,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",150371140-E41 +151493191,56,15056830,Medical Incident,05/29/2015,05/29/2015,05/29/2015 06:27:01 PM,05/29/2015 06:27:37 PM,05/29/2015 06:28:02 PM,05/29/2015 06:28:22 PM,05/29/2015 06:29:50 PM,05/29/2015 06:50:48 PM,05/29/2015 07:09:55 PM,Code 2 Transport,05/29/2015 07:28:12 PM,1700 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",151493191-56 +160974557,83,16038708,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:58:41 PM,04/06/2016 11:00:31 PM,04/06/2016 11:01:11 PM,04/06/2016 11:01:24 PM,04/06/2016 11:08:08 PM,04/07/2016 12:03:50 AM,04/07/2016 12:04:04 AM,Code 2 Transport,04/07/2016 12:05:08 AM,CALIFORNIA ST/6TH AV,San Francisco,94118,B07,31,7125,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7849939711361, -122.464572158227)",160974557-83 +143131698,E17,14110915,Alarms,11/09/2014,11/09/2014,11/09/2014 01:19:25 PM,11/09/2014 01:21:01 PM,11/09/2014 01:21:10 PM,11/09/2014 01:22:38 PM,11/09/2014 01:24:32 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/09/2014 01:40:55 PM,1200 Block of LA SALLE AVE,San Francisco,94124,B10,17,668,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",143131698-E17 +160972856,85,16038512,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:05:39 PM,04/06/2016 04:07:05 PM,04/06/2016 04:07:09 PM,04/06/2016 04:07:17 PM,04/06/2016 04:11:54 PM,04/06/2016 04:30:18 PM,04/06/2016 04:41:19 PM,Code 2 Transport,04/06/2016 05:27:54 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160972856-85 +141840227,KM04,14063531,Medical Incident,07/03/2014,07/02/2014,07/03/2014 02:17:03 AM,07/03/2014 02:18:53 AM,07/03/2014 02:19:59 AM,07/03/2014 02:20:39 AM,07/03/2014 02:25:27 AM,07/03/2014 02:27:33 AM,07/03/2014 02:45:45 AM,Code 2 Transport,07/03/2014 03:16:42 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",141840227-KM04 +141702110,E36,14058740,Citizen Assist / Service Call,06/19/2014,06/19/2014,06/19/2014 03:29:18 PM,06/19/2014 03:30:13 PM,06/19/2014 03:30:37 PM,06/19/2014 03:31:12 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Other,06/19/2014 03:32:21 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",141702110-E36 +141692560,E06,14058441,Medical Incident,06/18/2014,06/18/2014,06/18/2014 05:46:35 PM,06/18/2014 05:47:40 PM,06/18/2014 05:48:22 PM,06/18/2014 05:49:40 PM,06/18/2014 05:51:41 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,No Merit,06/18/2014 05:54:54 PM,14TH ST/BELCHER ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7676621207067, -122.430081455189)",141692560-E06 +141451659,E01,14049800,Medical Incident,05/25/2014,05/25/2014,05/25/2014 01:54:34 PM,05/25/2014 01:56:00 PM,05/25/2014 01:56:41 PM,05/25/2014 01:57:34 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Code 2 Transport,05/25/2014 02:08:58 PM,200 Block of 3RD ST,San Francisco,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7846604121968, -122.39991472916)",141451659-E01 +152172797,60,15082695,Medical Incident,08/05/2015,08/05/2015,08/05/2015 05:01:40 PM,08/05/2015 05:01:40 PM,08/05/2015 05:02:48 PM,08/05/2015 05:03:04 PM,08/05/2015 05:11:06 PM,08/05/2015 05:44:38 PM,08/05/2015 05:51:42 PM,Code 2 Transport,08/05/2015 06:25:37 PM,800 Block of CAPP ST,San Francisco,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7531080512306, -122.417362867532)",152172797-60 +151630077,AM20,15062126,Medical Incident,06/12/2015,06/11/2015,06/12/2015 12:42:52 AM,06/12/2015 12:42:52 AM,06/12/2015 12:43:10 AM,06/12/2015 12:43:46 AM,06/12/2015 12:46:33 AM,06/12/2015 01:03:19 AM,06/12/2015 01:16:07 AM,Code 2 Transport,06/12/2015 02:07:17 AM,3900 Block of 18TH ST,San Francisco,94114,B05,6,5417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7611431684857, -122.431688789383)",151630077-AM20 +160921410,AM02,16036409,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 11:42:52 AM,04/01/2016 11:42:52 AM,04/01/2016 11:43:52 AM,04/01/2016 11:45:04 AM,04/01/2016 11:46:47 AM,04/01/2016 12:06:43 PM,04/01/2016 12:28:27 PM,Code 2 Transport,04/01/2016 01:13:23 PM,GREENWICH ST/POLK ST,San Francisco,94109,B01,16,3132,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Russian Hill,"(37.8006241524646, -122.422713159969)",160921410-AM02 +152983019,E34,15114544,Medical Incident,10/25/2015,10/25/2015,10/25/2015 07:32:42 PM,10/25/2015 07:33:06 PM,10/25/2015 07:33:38 PM,10/25/2015 07:34:26 PM,10/25/2015 07:37:04 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Code 2 Transport,10/25/2015 07:48:03 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",152983019-E34 +153443022,E01,15132519,Traffic Collision,12/10/2015,12/10/2015,12/10/2015 05:52:11 PM,12/10/2015 05:53:17 PM,12/10/2015 05:53:49 PM,12/10/2015 05:54:45 PM,12/10/2015 05:57:21 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Code 2 Transport,12/10/2015 06:10:06 PM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",153443022-E01 +150913946,E13,15034793,Medical Incident,04/01/2015,04/01/2015,04/01/2015 10:57:51 PM,04/01/2015 10:59:00 PM,04/01/2015 11:00:47 PM,04/01/2015 11:01:19 PM,04/01/2015 11:04:25 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/01/2015 11:12:48 PM,300 Block of KEARNY ST,San Francisco,94104,B01,13,1243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912340846194, -122.40405694935)",150913946-E13 +160941369,84,16037228,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:53:00 AM,04/03/2016 10:53:00 AM,04/03/2016 10:54:07 AM,04/03/2016 10:54:56 AM,04/03/2016 10:59:17 AM,04/03/2016 11:22:43 AM,04/03/2016 11:37:49 AM,Code 2 Transport,04/03/2016 12:22:00 PM,2500 Block of 25TH AVE,San Francisco,94116,B08,40,7462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7399677614762, -122.481993144476)",160941369-84 +151841122,E17,15070176,Medical Incident,07/03/2015,07/03/2015,07/03/2015 10:00:27 AM,07/03/2015 10:01:03 AM,07/03/2015 10:01:22 AM,07/03/2015 10:02:55 AM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Code 2 Transport,07/03/2015 10:06:23 AM,3100 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,10,9,Portola,"(37.7220016138662, -122.401341444894)",151841122-E17 +160960682,AM02,16037914,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:10:39 AM,04/05/2016 08:12:09 AM,04/05/2016 08:14:32 AM,04/05/2016 08:15:07 AM,04/05/2016 08:41:27 AM,04/05/2016 09:24:28 AM,04/05/2016 09:44:57 AM,Code 2 Transport,04/05/2016 10:16:24 AM,400 Block of 29TH AVE,San Francisco,94121,B07,14,7226,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7808610214772, -122.489016145519)",160960682-AM02 +141491385,T07,14051160,Structure Fire,05/29/2014,05/29/2014,05/29/2014 11:40:31 AM,05/29/2014 11:41:28 AM,05/29/2014 11:42:23 AM,05/29/2014 11:42:41 AM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Fire,05/29/2014 11:57:38 AM,700 Block of CHURCH ST,San Francisco,94114,B06,11,5444,3,3,3,false,Alarm,1,TRUCK,9,6,8,Castro/Upper Market,"(37.7584854996531, -122.428157223684)",141491385-T07 +150891936,T02,15033980,Structure Fire,03/30/2015,03/30/2015,03/30/2015 02:19:21 PM,03/30/2015 02:24:17 PM,03/30/2015 02:24:32 PM,03/30/2015 02:26:16 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Fire,03/30/2015 02:31:26 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Alarm,1,TRUCK,10,4,6,Tenderloin,"(37.7866019512795, -122.419812186232)",150891936-T02 +152282137,E19,15087021,Medical Incident,08/16/2015,08/16/2015,08/16/2015 02:55:12 PM,08/16/2015 02:57:34 PM,08/16/2015 02:59:32 PM,08/16/2015 03:01:26 PM,08/16/2015 03:06:17 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Code 2 Transport,08/16/2015 03:24:30 PM,0 Block of STRATFORD DR,San Francisco,94132,B09,19,8727,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7238017236034, -122.473465365097)",152282137-E19 +151910090,E08,15072732,Medical Incident,07/10/2015,07/09/2015,07/10/2015 12:31:31 AM,07/10/2015 12:32:14 AM,07/10/2015 12:32:55 AM,07/10/2015 12:33:11 AM,07/10/2015 12:37:07 AM,04/25/2016 01:09:33 PM,04/25/2016 01:09:33 PM,Code 2 Transport,07/10/2015 12:52:25 AM,300 Block of THE EMBARCADERO,San Francisco,94111,B03,35,922,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",151910090-E08 +143190532,E26,14112877,Medical Incident,11/15/2014,11/14/2014,11/15/2014 04:24:58 AM,11/15/2014 04:26:08 AM,11/15/2014 04:28:56 AM,11/15/2014 04:32:18 AM,11/15/2014 04:36:25 AM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,Code 3 Transport,11/15/2014 04:58:18 AM,0 Block of NORDHOFF ST,San Francisco,94131,B09,26,8177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,8,West of Twin Peaks,"(37.7337925121178, -122.440968305396)",143190532-E26 +153010857,E31,15115397,Alarms,10/28/2015,10/28/2015,10/28/2015 08:26:09 AM,10/28/2015 08:27:31 AM,10/28/2015 08:27:38 AM,10/28/2015 08:29:30 AM,10/28/2015 08:37:05 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 08:37:28 AM,400 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,711,3,3,3,false,Alarm,1,ENGINE,2,7,2,Presidio Heights,"(37.7822260108075, -122.458859437192)",153010857-E31 +160971915,KM02,16038412,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:39:25 PM,04/06/2016 12:40:27 PM,04/06/2016 12:40:51 PM,04/06/2016 12:41:34 PM,04/06/2016 12:43:58 PM,04/06/2016 01:11:36 PM,04/06/2016 01:23:44 PM,Code 2 Transport,04/06/2016 01:51:46 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160971915-KM02 +142862078,E38,14100867,Medical Incident,10/13/2014,10/13/2014,10/13/2014 02:57:27 PM,10/13/2014 02:59:20 PM,10/13/2014 02:59:47 PM,10/13/2014 03:00:41 PM,10/13/2014 03:02:15 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,No Merit,10/13/2014 03:06:50 PM,2300 Block of JACKSON ST,San Francisco,94115,B04,38,3465,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7925215420346, -122.433726713407)",142862078-E38 +160984110,AM18,16039147,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:33:09 PM,04/07/2016 11:37:25 PM,04/07/2016 11:37:44 PM,04/07/2016 11:38:21 PM,04/07/2016 11:42:23 PM,04/08/2016 12:07:00 AM,04/08/2016 12:11:19 AM,Code 2 Transport,04/08/2016 01:00:30 AM,BELDEN PL/PINE ST,San Francisco,94104,B01,13,1235,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7917349839842, -122.403868716336)",160984110-AM18 +152140672,82,15081387,Medical Incident,08/02/2015,08/01/2015,08/02/2015 06:45:12 AM,08/02/2015 06:47:16 AM,08/02/2015 06:47:28 AM,08/02/2015 06:48:14 AM,08/02/2015 07:10:31 AM,08/02/2015 07:16:01 AM,08/02/2015 07:38:57 AM,Code 2 Transport,08/02/2015 08:21:47 AM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",152140672-82 +160942774,50,16037362,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 05:41:20 PM,04/03/2016 05:41:20 PM,04/03/2016 05:45:43 PM,04/03/2016 05:45:43 PM,04/03/2016 05:50:57 PM,04/03/2016 06:33:46 PM,04/03/2016 06:40:35 PM,Other,04/03/2016 07:00:36 PM,WEBSTER ST/GEARY BL,San Francisco,94115,B04,5,3432,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7845682402461, -122.431204945516)",160942774-50 +141710772,T05,14058972,Alarms,06/20/2014,06/20/2014,06/20/2014 08:35:04 AM,06/20/2014 08:36:23 AM,06/20/2014 08:36:40 AM,06/20/2014 08:38:01 AM,06/20/2014 08:41:15 AM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Fire,06/20/2014 08:53:46 AM,400 Block of GROVE ST,San Francisco,94102,B02,36,3315,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7776543498914, -122.423976044858)",141710772-T05 +141360158,B01,14046390,Alarms,05/16/2014,05/15/2014,05/16/2014 01:15:31 AM,05/16/2014 01:17:03 AM,05/16/2014 01:17:26 AM,05/16/2014 01:19:20 AM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/16/2014 01:22:54 AM,1100 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1445,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",141360158-B01 +153053559,T03,15117291,Medical Incident,11/01/2015,11/01/2015,11/01/2015 06:21:18 PM,11/01/2015 06:21:47 PM,11/01/2015 06:23:45 PM,11/01/2015 06:23:45 PM,11/01/2015 06:24:40 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 2 Transport,11/01/2015 06:28:45 PM,POWELL ST/OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",153053559-T03 +151740300,E09,15066263,Medical Incident,06/23/2015,06/22/2015,06/23/2015 03:30:50 AM,06/23/2015 03:31:21 AM,06/23/2015 03:31:51 AM,06/23/2015 03:33:33 AM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Code 2 Transport,06/23/2015 03:36:14 AM,EVANS AV/3RD ST,San Francisco,94124,B10,25,6457,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",151740300-E09 +160923567,58,16036617,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:34:13 PM,04/01/2016 09:36:16 PM,04/01/2016 09:36:45 PM,04/01/2016 09:38:07 PM,04/01/2016 09:46:40 PM,04/01/2016 10:04:43 PM,04/01/2016 10:21:58 PM,Code 2 Transport,04/01/2016 10:48:04 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160923567-58 +151081679,RA48,15040903,Medical Incident,04/18/2015,04/18/2015,04/18/2015 12:48:03 PM,04/18/2015 12:48:27 PM,04/18/2015 12:48:51 PM,04/18/2015 12:49:54 PM,04/18/2015 12:54:10 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Code 2 Transport,04/18/2015 01:40:00 PM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,3,E,3,false,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8299718852834, -122.374994903359)",151081679-RA48 +151093706,61,15041448,Medical Incident,04/19/2015,04/19/2015,04/19/2015 11:35:47 PM,04/19/2015 11:36:59 PM,04/19/2015 11:38:58 PM,04/19/2015 11:39:16 PM,04/19/2015 11:43:49 PM,04/20/2015 12:02:19 AM,04/20/2015 12:12:20 AM,Code 2 Transport,04/20/2015 12:52:13 AM,1300 Block of SILVER AVE,San Francisco,94134,B10,42,6356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,9,Portola,"(37.7313928327632, -122.409221235075)",151093706-61 +143580683,E41,14128038,Structure Fire,12/24/2014,12/23/2014,12/24/2014 07:52:28 AM,12/24/2014 07:53:03 AM,12/24/2014 07:53:10 AM,12/24/2014 07:55:13 AM,12/24/2014 07:57:54 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/24/2014 07:58:25 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,ENGINE,9,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",143580683-E41 +160952037,88,16037655,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:47:44 PM,04/04/2016 01:50:09 PM,04/04/2016 01:51:29 PM,04/04/2016 01:52:08 PM,04/04/2016 01:56:53 PM,04/04/2016 02:06:48 PM,04/04/2016 02:26:55 PM,Code 2 Transport,04/04/2016 03:05:38 PM,1100 Block of LAGUNA ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Western Addition,"(37.7818107490445, -122.427415796369)",160952037-88 +143212905,E18,14113754,Medical Incident,11/17/2014,11/17/2014,11/17/2014 06:12:25 PM,11/17/2014 06:14:03 PM,11/17/2014 06:14:38 PM,11/17/2014 06:17:37 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,Code 2 Transport,11/17/2014 06:36:19 PM,1400 Block of 42ND AVE,San Francisco,94122,B08,23,7631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7596774580307, -122.501641592848)",143212905-E18 +150593116,FD00A,15022664,,02/28/2015,02/28/2015,02/28/2015 07:41:43 PM,02/28/2015 07:43:05 PM,02/28/2015 08:59:43 PM,02/28/2015 08:59:43 PM,02/28/2015 08:59:43 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Code 2 Transport,02/28/2015 08:59:51 PM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,SUPPORT,3,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",150593116-FD00A +150823598,RS2,15031533,Medical Incident,03/23/2015,03/23/2015,03/23/2015 10:02:06 PM,03/23/2015 10:02:06 PM,03/23/2015 10:02:36 PM,03/23/2015 10:03:34 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/23/2015 10:03:42 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,6,9,Mission,"(37.7580927746489, -122.414684745421)",150823598-RS2 +153003218,52,15115247,Traffic Collision,10/27/2015,10/27/2015,10/27/2015 07:27:59 PM,10/27/2015 07:27:59 PM,10/27/2015 07:28:43 PM,10/27/2015 07:28:50 PM,10/27/2015 07:31:10 PM,10/27/2015 07:50:18 PM,10/27/2015 08:10:17 PM,Code 2 Transport,10/27/2015 08:57:29 PM,MASONIC AV/FELL ST,San Francisco,94117,B05,21,4464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",153003218-52 +160952309,RC1,16037666,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:52:54 PM,04/04/2016 02:54:45 PM,04/04/2016 02:55:26 PM,04/04/2016 02:55:35 PM,04/04/2016 02:57:59 PM,04/04/2016 03:18:32 PM,04/04/2016 03:24:26 PM,Code 3 Transport,04/04/2016 03:32:42 PM,POLK ST/SUTTER ST,San Francisco,94109,B04,3,3121,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",160952309-RC1 +142322176,E20,14080631,Medical Incident,08/20/2014,08/20/2014,08/20/2014 02:45:26 PM,08/20/2014 02:45:47 PM,08/20/2014 02:47:49 PM,08/20/2014 02:49:05 PM,08/20/2014 02:52:45 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Code 2 Transport,08/20/2014 03:03:56 PM,1900 Block of 8TH AVE,San Francisco,94116,B08,40,7337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7515718468596, -122.464361555507)",142322176-E20 +142932599,E03,14103442,Medical Incident,10/20/2014,10/20/2014,10/20/2014 05:26:14 PM,10/20/2014 05:27:37 PM,10/20/2014 05:28:43 PM,10/20/2014 05:30:16 PM,10/20/2014 05:34:56 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Code 3 Transport,10/20/2014 05:42:12 PM,500 Block of MASON ST,San Francisco,94102,B01,3,1412,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7885578121115, -122.410081316773)",142932599-E03 +151171962,77,15044253,Medical Incident,04/27/2015,04/27/2015,04/27/2015 01:44:45 PM,04/27/2015 01:45:27 PM,04/27/2015 01:45:32 PM,04/27/2015 01:46:39 PM,04/27/2015 02:04:01 PM,04/27/2015 02:04:03 PM,04/27/2015 02:22:45 PM,Code 2 Transport,04/27/2015 02:57:08 PM,3RD ST/MARKET ST,San Francisco,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",151171962-77 +152730135,T03,15104350,Vehicle Fire,09/30/2015,09/29/2015,09/30/2015 01:18:09 AM,09/30/2015 01:20:04 AM,09/30/2015 01:20:13 AM,09/30/2015 01:22:00 AM,09/30/2015 01:26:56 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 01:30:22 AM,LARKIN ST/ELLIS ST,San Francisco,94109,B02,3,1643,3,3,3,false,Fire,1,TRUCK,2,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",152730135-T03 +150562101,65,15021459,Traffic Collision,02/25/2015,02/25/2015,02/25/2015 02:11:38 PM,02/25/2015 02:14:01 PM,02/25/2015 02:15:27 PM,02/25/2015 02:15:41 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Other,02/25/2015 02:17:01 PM,HANOVER ST/ALLISON ST,San Francisco,94112,B09,43,6228,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.709945819398, -122.44059761357)",150562101-65 +152421785,B03,15092310,Alarms,08/30/2015,08/30/2015,08/30/2015 01:04:34 PM,08/30/2015 01:06:16 PM,08/30/2015 01:06:46 PM,08/30/2015 01:07:43 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 01:12:05 PM,100 Block of SPEAR ST,San Francisco,94105,B03,35,2114,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7919628053601, -122.393243014407)",152421785-B03 +152251530,89,15085738,Medical Incident,08/13/2015,08/13/2015,08/13/2015 11:36:56 AM,08/13/2015 11:38:22 AM,08/13/2015 11:38:30 AM,08/13/2015 11:38:36 AM,08/13/2015 11:57:12 AM,08/13/2015 12:05:03 PM,08/13/2015 12:25:33 PM,Code 2 Transport,08/13/2015 01:19:59 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",152251530-89 +160960809,KM08,16037924,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:45:02 AM,04/05/2016 08:47:15 AM,04/05/2016 08:48:36 AM,04/05/2016 08:48:56 AM,04/05/2016 09:01:31 AM,04/05/2016 09:20:59 AM,04/05/2016 09:30:04 AM,Code 2 Transport,04/05/2016 09:55:44 AM,1200 Block of TAYLOR ST,San Francisco,94108,B01,41,1444,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7938853056858, -122.41285182735)",160960809-KM08 +153380809,83,15129971,Medical Incident,12/04/2015,12/04/2015,12/04/2015 08:15:29 AM,12/04/2015 08:17:00 AM,12/04/2015 08:27:03 AM,12/04/2015 08:27:11 AM,12/04/2015 08:47:28 AM,12/04/2015 09:02:48 AM,12/04/2015 09:18:52 AM,Code 2 Transport,12/04/2015 09:58:40 AM,400 Block of POWELL ST,San Francisco,94108,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",153380809-83 +143143025,83,14111355,Medical Incident,11/10/2014,11/10/2014,11/10/2014 07:46:55 PM,11/10/2014 07:46:55 PM,11/10/2014 07:47:08 PM,11/10/2014 07:47:21 PM,11/10/2014 07:53:28 PM,11/10/2014 08:00:56 PM,11/10/2014 08:09:20 PM,Code 2 Transport,11/10/2014 08:27:36 PM,MARKET ST/CYRIL MAGNIN ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",143143025-83 +141993008,E11,14069025,Alarms,07/18/2014,07/18/2014,07/18/2014 07:31:41 PM,07/18/2014 07:33:15 PM,07/18/2014 07:33:46 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Fire,07/18/2014 07:35:33 PM,3900 Block of 25TH ST,San Francisco,94114,B06,11,5537,3,3,3,true,Alarm,1,ENGINE,2,6,8,Noe Valley,"(37.7500523856354, -122.428949812268)",141993008-E11 +160933014,85,16036992,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:01:08 PM,04/02/2016 07:01:47 PM,04/02/2016 07:03:24 PM,04/02/2016 07:03:34 PM,04/02/2016 07:13:13 PM,04/02/2016 07:29:04 PM,04/02/2016 08:01:01 PM,Code 2 Transport,04/02/2016 08:27:05 PM,2500 Block of 47TH AVE,San Francisco,94116,B08,23,7712,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.738934697003, -122.505425150748)",160933014-85 +152193655,E36,15083568,Medical Incident,08/07/2015,08/07/2015,08/07/2015 08:32:57 PM,08/07/2015 08:35:16 PM,08/07/2015 08:36:46 PM,08/07/2015 08:37:41 PM,08/07/2015 08:41:20 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Code 2 Transport,08/07/2015 08:45:23 PM,14TH ST/NOE ST,San Francisco,94114,B05,6,5212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7674615843561, -122.433408258777)",152193655-E36 +152960174,T15,15113580,Structure Fire,10/23/2015,10/22/2015,10/23/2015 01:35:09 AM,10/23/2015 01:35:22 AM,10/23/2015 01:35:45 AM,10/23/2015 01:38:29 AM,10/23/2015 01:41:26 AM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,Fire,10/23/2015 01:48:28 AM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152960174-T15 +150122704,FD00A,15004836,,01/12/2015,01/12/2015,01/12/2015 05:15:17 PM,01/12/2015 05:15:17 PM,01/12/2015 05:46:42 PM,01/12/2015 05:46:42 PM,01/12/2015 05:46:42 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Patient Declined Transport,01/12/2015 05:46:59 PM,500 Block of RAMSELL ST,San Francisco,94132,B09,15,8435,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,3,9,11,Oceanview/Merced/Ingleside,"(37.7206727205303, -122.466335197673)",150122704-FD00A +150970813,E15,15036680,Medical Incident,04/07/2015,04/07/2015,04/07/2015 08:45:57 AM,04/07/2015 08:47:44 AM,04/07/2015 08:49:30 AM,04/07/2015 08:50:52 AM,04/07/2015 08:54:19 AM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/07/2015 09:20:56 AM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7187894867461, -122.467075645919)",150970813-E15 +150383315,KM11,15014926,Medical Incident,02/07/2015,02/07/2015,02/07/2015 08:02:14 PM,02/07/2015 08:02:14 PM,02/07/2015 08:02:45 PM,02/07/2015 08:04:07 PM,02/07/2015 08:13:46 PM,02/07/2015 08:36:02 PM,02/07/2015 08:36:06 PM,Code 2 Transport,02/07/2015 09:03:57 PM,EVANS AV/QUINT ST,San Francisco,94124,B10,25,6442,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7440459305634, -122.390327942034)",150383315-KM11 +151782289,E13,15067807,Medical Incident,06/27/2015,06/27/2015,06/27/2015 03:18:56 PM,06/27/2015 03:21:36 PM,06/27/2015 03:22:23 PM,06/27/2015 03:23:48 PM,06/27/2015 03:29:15 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,No Merit,06/27/2015 03:35:36 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",151782289-E13 +151563182,E18,15059668,Medical Incident,06/05/2015,06/05/2015,06/05/2015 07:09:00 PM,06/05/2015 07:09:00 PM,06/05/2015 07:11:38 PM,06/05/2015 07:13:54 PM,06/05/2015 07:18:26 PM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Code 2 Transport,06/05/2015 07:37:37 PM,LA PLAYA/CABRILLO ST,San Francisco,94121,B07,34,7312,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",151563182-E18 +160950697,74,16037539,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:14:06 AM,04/04/2016 08:15:01 AM,04/04/2016 08:15:27 AM,04/04/2016 08:15:51 AM,04/04/2016 08:20:23 AM,04/04/2016 08:38:26 AM,04/04/2016 09:17:33 AM,Code 2 Transport,04/04/2016 09:56:58 AM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160950697-74 +153033792,T05,15116404,Medical Incident,10/30/2015,10/30/2015,10/30/2015 09:17:23 PM,10/30/2015 09:17:23 PM,10/30/2015 09:17:53 PM,10/30/2015 09:18:45 PM,10/30/2015 09:20:04 PM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Other,10/30/2015 09:37:19 PM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,E,3,false,Potentially Life-Threatening,1,TRUCK,1,5,5,Western Addition,"(37.7809710235348, -122.432166356987)",153033792-T05 +141740720,54,14059936,Medical Incident,06/23/2014,06/23/2014,06/23/2014 08:43:05 AM,06/23/2014 08:45:46 AM,06/23/2014 08:47:59 AM,06/23/2014 08:48:15 AM,06/23/2014 08:59:09 AM,06/23/2014 09:29:25 AM,06/23/2014 09:47:54 AM,Code 2 Transport,06/23/2014 10:21:35 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",141740720-54 +150251731,89,15009658,Medical Incident,01/25/2015,01/25/2015,01/25/2015 01:06:38 PM,01/25/2015 01:09:20 PM,01/25/2015 01:10:14 PM,01/25/2015 01:10:47 PM,01/25/2015 01:20:20 PM,01/25/2015 01:31:12 PM,01/25/2015 01:51:52 PM,Code 2 Transport,01/25/2015 02:31:24 PM,2300 Block of 12TH AVE,San Francisco,94116,B08,39,8615,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7437503336489, -122.468172282533)",150251731-89 +160960016,KM03,16037840,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:04:54 AM,04/05/2016 12:05:57 AM,04/05/2016 12:06:32 AM,04/05/2016 12:07:44 AM,04/05/2016 12:08:34 AM,04/05/2016 12:23:43 AM,04/05/2016 12:33:00 AM,Code 2 Transport,04/05/2016 01:03:58 AM,100 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7600190563185, -122.436104378198)",160960016-KM03 +141220065,E09,14041219,Medical Incident,05/02/2014,05/01/2014,05/02/2014 06:56:21 AM,05/02/2014 06:57:47 AM,05/02/2014 06:58:15 AM,05/02/2014 07:00:28 AM,05/02/2014 07:01:37 AM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 2 Transport,05/02/2014 07:11:19 AM,OAKDALE AV/BARNEVELD AV,SAN FRANCISCO,94124,B10,9,6377,,3,3,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.742036221716, -122.403451320675)",141220065-E09 +141813338,B09,14062820,Structure Fire,06/30/2014,06/30/2014,06/30/2014 08:48:46 PM,06/30/2014 08:48:46 PM,06/30/2014 08:50:12 PM,06/30/2014 08:51:22 PM,06/30/2014 08:54:02 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 09:06:13 PM,1000 Block of CAYUGA AVE,San Francisco,94112,B09,15,827,3,3,3,false,Alarm,1,CHIEF,3,9,11,Outer Mission,"(37.7218172447591, -122.439998899049)",141813338-B09 +151541107,T19,15058600,Medical Incident,06/03/2015,06/03/2015,06/03/2015 09:42:54 AM,06/03/2015 09:44:33 AM,06/03/2015 09:45:05 AM,06/03/2015 09:46:27 AM,06/03/2015 09:50:56 AM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/03/2015 10:10:06 AM,1800 Block of VICENTE ST,San Francisco,94116,B08,18,7523,3,3,3,false,Non Life-threatening,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",151541107-T19 +160970966,AM06,16038337,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:11:42 AM,04/06/2016 09:12:38 AM,04/06/2016 09:15:06 AM,04/06/2016 09:16:26 AM,04/06/2016 09:22:20 AM,04/06/2016 09:24:49 AM,04/06/2016 09:59:25 AM,Code 2 Transport,04/06/2016 10:31:01 AM,DON CHEE WY/THE EMBARCADERO SOU,San Francisco,94105,B03,35,2131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,3,Financial District/South Beach,"(37.7939616016202, -122.393514175717)",160970966-AM06 +141700184,E01,14058549,Medical Incident,06/19/2014,06/18/2014,06/19/2014 01:49:38 AM,06/19/2014 01:51:30 AM,06/19/2014 01:51:56 AM,06/19/2014 01:53:03 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Code 2 Transport,06/19/2014 01:54:26 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",141700184-E01 +161000836,54,16039669,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:27:15 AM,04/09/2016 08:28:17 AM,04/09/2016 08:29:58 AM,04/09/2016 08:29:58 AM,04/09/2016 08:41:08 AM,04/09/2016 08:57:59 AM,04/09/2016 09:02:07 AM,Code 3 Transport,04/09/2016 09:34:58 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",161000836-54 +160922284,81,16036497,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:36:29 PM,04/01/2016 03:38:39 PM,04/01/2016 03:39:24 PM,04/01/2016 03:39:31 PM,04/01/2016 03:46:39 PM,04/01/2016 04:09:43 PM,04/01/2016 04:40:42 PM,Code 2 Transport,04/01/2016 05:12:13 PM,100 Block of OAK ST,San Francisco,94102,B02,36,3266,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",160922284-81 +160970877,65,16038325,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:44:44 AM,04/06/2016 08:46:11 AM,04/06/2016 08:46:44 AM,04/06/2016 08:47:03 AM,04/06/2016 08:54:31 AM,04/06/2016 09:11:35 AM,04/06/2016 09:24:45 AM,Code 2 Transport,04/06/2016 09:51:27 AM,0 Block of BACHE ST,San Francisco,94110,B06,32,5751,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7344310637683, -122.417455922735)",160970877-65 +152262709,E03,15086224,Alarms,08/14/2015,08/14/2015,08/14/2015 04:57:33 PM,08/14/2015 04:59:37 PM,08/14/2015 04:59:53 PM,08/14/2015 05:00:31 PM,08/14/2015 05:01:28 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Fire,08/14/2015 05:14:07 PM,1200 Block of VAN NESS AVE,San Francisco,94109,B04,3,3161,3,3,3,true,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7868516471087, -122.421441956086)",152262709-E03 +141050127,KM02,14035366,Medical Incident,04/15/2014,04/15/2014,04/15/2014 10:20:18 AM,04/15/2014 10:21:39 AM,04/15/2014 10:22:41 AM,04/15/2014 10:22:41 AM,04/15/2014 10:34:54 AM,04/15/2014 10:53:59 AM,04/15/2014 11:07:00 AM,Code 2 Transport,04/15/2014 11:41:40 AM,STANYAN ST/HAIGHT ST,SAN FRANCISCO,94117,B05,12,4553,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",141050127-KM02 +160980182,76,16038741,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:22:41 AM,04/07/2016 01:24:34 AM,04/07/2016 01:25:11 AM,04/07/2016 01:25:19 AM,04/07/2016 01:26:02 AM,04/07/2016 01:51:21 AM,04/07/2016 02:01:28 AM,Code 2 Transport,04/07/2016 02:25:20 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160980182-76 +161001352,75,16039730,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:31:15 AM,04/09/2016 11:34:24 AM,04/09/2016 11:50:49 AM,04/09/2016 11:50:58 AM,04/09/2016 12:04:26 PM,04/09/2016 12:10:46 PM,04/09/2016 12:19:57 PM,Code 2 Transport,04/09/2016 12:57:32 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,5,6,9,Mission,"(37.7522394549791, -122.418445272851)",161001352-75 +151030201,57,15038796,Medical Incident,04/13/2015,04/12/2015,04/13/2015 01:54:43 AM,04/13/2015 01:55:36 AM,04/13/2015 01:56:40 AM,04/13/2015 01:56:45 AM,04/13/2015 02:04:12 AM,04/13/2015 02:59:42 AM,04/13/2015 03:15:30 AM,Code 2 Transport,04/13/2015 04:06:29 AM,100 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7843212349417, -122.38904057367)",151030201-57 +160951286,KM09,16037579,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:48:53 AM,04/04/2016 10:48:53 AM,04/04/2016 10:49:22 AM,04/04/2016 10:51:30 AM,04/04/2016 10:53:34 AM,04/04/2016 11:34:31 AM,04/04/2016 11:50:47 AM,Code 2 Transport,04/04/2016 12:35:36 PM,1200 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",160951286-KM09 +160973604,60,16038611,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:37:21 PM,04/06/2016 06:37:47 PM,04/06/2016 06:38:31 PM,04/06/2016 06:39:11 PM,04/06/2016 06:43:26 PM,04/06/2016 06:49:25 PM,04/06/2016 07:58:55 PM,Code 2 Transport,04/06/2016 08:24:42 PM,500 Block of ANDERSON ST,San Francisco,94110,B06,32,5743,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7365841998563, -122.415323005615)",160973604-60 +150680118,E14,15025834,Medical Incident,03/09/2015,03/08/2015,03/09/2015 01:18:06 AM,03/09/2015 01:18:06 AM,03/09/2015 01:18:51 AM,03/09/2015 01:21:06 AM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Code 2 Transport,03/09/2015 01:23:47 AM,8TH AV/ANZA ST,San Francisco,94118,B07,31,7135,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7789939330535, -122.466288099117)",150680118-E14 +141240183,RC1,14042025,Medical Incident,05/04/2014,05/04/2014,05/04/2014 02:34:20 PM,05/04/2014 02:35:34 PM,05/04/2014 02:36:54 PM,05/04/2014 02:38:02 PM,05/04/2014 02:41:47 PM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Code 2 Transport,05/04/2014 02:51:46 PM,TAYLOR ST/SUTTER ST,SAN FRANCISCO,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",141240183-RC1 +151542623,E01,15058762,Medical Incident,06/03/2015,06/03/2015,06/03/2015 04:23:36 PM,06/03/2015 04:25:39 PM,06/03/2015 04:26:47 PM,06/03/2015 04:28:43 PM,06/03/2015 04:36:11 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Patient Declined Transport,06/03/2015 04:37:41 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",151542623-E01 +151182443,58,15044680,Traffic Collision,04/28/2015,04/28/2015,04/28/2015 04:02:54 PM,04/28/2015 04:05:21 PM,04/28/2015 04:05:42 PM,04/28/2015 04:05:51 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,Code 2 Transport,04/28/2015 04:11:26 PM,100 Block of SICKLES AVE,San Francisco,94112,B09,33,6213,2,2,2,true,Non Life-threatening,1,MEDIC,4,9,11,Outer Mission,"(37.7099816740397, -122.454168047139)",151182443-58 +141850497,E36,14063921,Medical Incident,07/04/2014,07/03/2014,07/04/2014 05:55:45 AM,07/04/2014 05:58:51 AM,07/04/2014 05:59:27 AM,07/04/2014 06:01:41 AM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/04/2014 06:05:22 AM,100 Block of 8TH ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7768049355219, -122.41243633288)",141850497-E36 +143621978,E22,14129559,Medical Incident,12/28/2014,12/28/2014,12/28/2014 03:10:58 PM,12/28/2014 03:12:05 PM,12/28/2014 03:12:48 PM,12/28/2014 03:13:44 PM,12/28/2014 03:15:46 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Code 2 Transport,12/28/2014 03:35:32 PM,1500 Block of 19TH AVE,San Francisco,94122,B08,22,7423,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7588956344045, -122.476892326601)",143621978-E22 +160960372,78,16037885,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:10:28 AM,04/05/2016 05:11:53 AM,04/05/2016 05:12:00 AM,04/05/2016 05:12:08 AM,04/05/2016 05:19:03 AM,04/05/2016 05:31:09 AM,04/05/2016 05:46:33 AM,Code 2 Transport,04/05/2016 05:59:06 AM,900 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,3411,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7803481047255, -122.425362908015)",160960372-78 +160950848,AM06,16037552,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:01:00 AM,04/04/2016 09:01:31 AM,04/04/2016 09:01:48 AM,04/04/2016 09:04:55 AM,04/04/2016 09:06:14 AM,04/04/2016 09:39:29 AM,04/04/2016 09:49:30 AM,Code 3 Transport,04/04/2016 10:44:57 AM,900 Block of MONTEREY BLVD,San Francisco,94112,B09,15,8522,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7307000413939, -122.458446412646)",160950848-AM06 +141120046,T19,14037692,Structure Fire,04/22/2014,04/21/2014,04/22/2014 04:41:55 AM,04/22/2014 04:43:13 AM,04/22/2014 04:43:43 AM,04/22/2014 04:45:20 AM,04/22/2014 04:47:37 AM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Fire,04/22/2014 07:23:22 AM,0 Block of HIGUERA AVE,SAN FRANCISCO,94132,B08,19,8583,,3,3,false,Fire,1,TRUCK,1,8,7,Lakeshore,"(37.718486831483, -122.483889856765)",141120046-T19 +151790315,AM24,15068069,Medical Incident,06/28/2015,06/27/2015,06/28/2015 01:43:07 AM,06/28/2015 01:43:19 AM,06/28/2015 01:43:42 AM,06/28/2015 01:44:09 AM,06/28/2015 01:48:33 AM,06/28/2015 02:15:02 AM,06/28/2015 02:38:24 AM,Code 2 Transport,06/28/2015 03:08:02 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",151790315-AM24 +151462229,RC1,15055597,Medical Incident,05/26/2015,05/26/2015,05/26/2015 03:08:38 PM,05/26/2015 03:11:17 PM,05/26/2015 03:11:36 PM,05/26/2015 03:13:35 PM,05/26/2015 03:18:06 PM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Medical Examiner,05/26/2015 03:26:00 PM,1800 Block of GREEN ST,San Francisco,94123,B04,16,3354,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,4,2,Marina,"(37.7969417340573, -122.429558903607)",151462229-RC1 +151282148,E36,15048587,Medical Incident,05/08/2015,05/08/2015,05/08/2015 02:37:20 PM,05/08/2015 02:38:47 PM,05/08/2015 02:39:12 PM,05/08/2015 02:39:18 PM,05/08/2015 02:43:18 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Code 2 Transport,05/08/2015 02:47:58 PM,MCALLISTER ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",151282148-E36 +151831173,E06,15069796,Medical Incident,07/02/2015,07/02/2015,07/02/2015 09:45:25 AM,07/02/2015 09:45:43 AM,07/02/2015 09:46:26 AM,07/02/2015 09:49:45 AM,07/02/2015 09:51:26 AM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Cancelled,07/02/2015 09:55:21 AM,1500 Block of MISSION ST,San Francisco,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7737629752818, -122.417960394107)",151831173-E06 +161001667,AM02,16039774,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:23:17 PM,04/09/2016 01:24:04 PM,04/09/2016 01:24:17 PM,04/09/2016 01:25:05 PM,04/09/2016 01:29:48 PM,04/09/2016 01:36:41 PM,04/09/2016 02:02:40 PM,Code 2 Transport,04/09/2016 02:43:02 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7658582826035, -122.419816092644)",161001667-AM02 +160960787,74,16037922,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:40:05 AM,04/05/2016 08:43:02 AM,04/05/2016 08:43:41 AM,04/05/2016 08:44:27 AM,04/05/2016 08:54:58 AM,04/05/2016 09:11:00 AM,04/05/2016 09:28:42 AM,Code 2 Transport,04/05/2016 09:47:24 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7739392650435, -122.412947871011)",160960787-74 +143443060,E05,14122438,Alarms,12/10/2014,12/10/2014,12/10/2014 05:58:54 PM,12/10/2014 06:00:05 PM,12/10/2014 06:01:03 PM,12/10/2014 06:02:52 PM,12/10/2014 06:06:01 PM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Fire,12/10/2014 06:17:09 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",143443060-E05 +152093005,E06,15079759,Medical Incident,07/28/2015,07/28/2015,07/28/2015 06:15:17 PM,07/28/2015 06:16:15 PM,07/28/2015 06:19:48 PM,07/28/2015 06:21:56 PM,07/28/2015 06:27:01 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Unable to Locate,07/28/2015 06:30:16 PM,FILLMORE ST/WALLER ST,San Francisco,94117,B05,6,3526,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7711736845121, -122.430260806561)",152093005-E06 +150011168,E03,15000230,Medical Incident,01/01/2015,12/31/2014,01/01/2015 06:15:06 AM,01/01/2015 06:18:52 AM,01/01/2015 06:19:36 AM,01/01/2015 06:21:53 AM,01/01/2015 06:24:36 AM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Code 2 Transport,01/01/2015 06:50:09 AM,1400 Block of PINE ST,San Francisco,94109,B04,3,3122,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",150011168-E03 +141453517,55,14049977,Medical Incident,05/25/2014,05/25/2014,05/25/2014 11:09:38 PM,05/25/2014 11:11:14 PM,05/25/2014 11:11:53 PM,05/25/2014 11:12:10 PM,05/25/2014 11:14:26 PM,05/25/2014 11:35:49 PM,05/25/2014 11:54:17 PM,Code 2 Transport,05/26/2014 12:13:17 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",141453517-55 +143070639,RA48,14108512,Traffic Collision,11/03/2014,11/02/2014,11/03/2014 07:56:58 AM,11/03/2014 08:00:46 AM,11/03/2014 08:01:42 AM,11/03/2014 08:04:29 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/03/2014 08:32:11 AM,CALL BOX: FS YB-BLDG 213,Yerba Buena,94130,B03,48,2951,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",143070639-RA48 +153250531,KM03,15124988,Medical Incident,11/21/2015,11/20/2015,11/21/2015 04:49:29 AM,11/21/2015 04:50:58 AM,11/21/2015 04:51:15 AM,11/21/2015 04:51:44 AM,11/21/2015 05:01:09 AM,11/21/2015 05:22:31 AM,11/21/2015 05:41:25 AM,Code 2 Transport,11/21/2015 06:30:38 AM,300 Block of BUCHANAN ST,San Francisco,94102,B02,36,3422,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7727541133707, -122.4272776443)",153250531-KM03 +143442700,87,14122407,Medical Incident,12/10/2014,12/10/2014,12/10/2014 04:28:24 PM,12/10/2014 04:32:42 PM,12/10/2014 04:32:55 PM,12/10/2014 04:35:52 PM,12/10/2014 04:48:58 PM,12/10/2014 05:22:33 PM,12/10/2014 06:06:14 PM,Code 2 Transport,12/10/2014 06:31:08 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",143442700-87 +141732335,B02,14059754,Alarms,06/22/2014,06/22/2014,06/22/2014 05:05:45 PM,06/22/2014 05:07:42 PM,06/22/2014 05:07:53 PM,06/22/2014 05:09:05 PM,06/22/2014 05:13:38 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Fire,06/22/2014 05:21:30 PM,1600 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,3,3,false,Alarm,1,CHIEF,3,5,5,Lone Mountain/USF,"(37.7741999233828, -122.443568815049)",141732335-B02 +160961229,KM04,16037957,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:32:35 AM,04/05/2016 10:34:41 AM,04/05/2016 10:37:17 AM,04/05/2016 10:37:35 AM,04/05/2016 10:42:22 AM,04/05/2016 11:20:38 AM,04/05/2016 11:28:46 AM,Code 2 Transport,04/05/2016 12:09:09 PM,600 Block of 7TH AVE,San Francisco,94118,B07,31,7132,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7762499153191, -122.465079518655)",160961229-KM04 +160960279,85,16037868,Medical Incident,04/05/2016,04/04/2016,04/05/2016 03:31:02 AM,04/05/2016 03:35:00 AM,04/05/2016 03:35:16 AM,04/05/2016 03:35:39 AM,04/05/2016 03:45:14 AM,04/05/2016 03:58:27 AM,04/05/2016 04:15:54 AM,Code 2 Transport,04/05/2016 04:37:03 AM,600 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",160960279-85 +160921607,73,16036433,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:39:39 PM,04/01/2016 12:40:40 PM,04/01/2016 12:41:19 PM,04/01/2016 12:41:51 PM,04/01/2016 12:49:28 PM,04/01/2016 01:03:03 PM,04/01/2016 01:37:07 PM,Code 2 Transport,04/01/2016 01:55:45 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8084350175869, -122.410774214375)",160921607-73 +161003102,89,16039935,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:53:54 PM,04/09/2016 08:54:39 PM,04/09/2016 08:54:54 PM,04/09/2016 08:58:08 PM,04/09/2016 08:58:08 PM,04/09/2016 09:10:09 PM,04/09/2016 09:25:12 PM,Code 2 Transport,04/09/2016 09:58:08 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",161003102-89 +153233582,E03,15124434,Alarms,11/19/2015,11/19/2015,11/19/2015 07:41:46 PM,11/19/2015 07:43:08 PM,11/19/2015 07:46:34 PM,11/19/2015 07:48:05 PM,11/19/2015 07:51:19 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,Fire,11/19/2015 07:58:46 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",153233582-E03 +153434198,60,15132232,Medical Incident,12/09/2015,12/09/2015,12/09/2015 11:16:17 PM,12/09/2015 11:17:58 PM,12/09/2015 11:18:13 PM,12/09/2015 11:18:25 PM,12/09/2015 11:34:29 PM,12/09/2015 11:43:53 PM,12/09/2015 11:49:07 PM,Code 2 Transport,12/10/2015 12:25:45 AM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",153434198-60 +152581164,E32,15098589,Medical Incident,09/15/2015,09/15/2015,09/15/2015 09:51:26 AM,09/15/2015 09:52:23 AM,09/15/2015 09:53:00 AM,09/15/2015 09:53:14 AM,09/15/2015 09:57:03 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 2 Transport,09/15/2015 10:03:31 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",152581164-E32 +160930224,88,16036688,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:27:18 AM,04/02/2016 01:28:23 AM,04/02/2016 01:28:40 AM,04/02/2016 01:28:52 AM,04/02/2016 01:35:43 AM,04/02/2016 01:52:29 AM,04/02/2016 02:04:38 AM,Code 2 Transport,04/02/2016 02:52:31 AM,600 Block of 17TH AVE,San Francisco,94118,B07,31,7157,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7757636998422, -122.475750536294)",160930224-88 +150421151,E29,15016309,Traffic Collision,02/11/2015,02/11/2015,02/11/2015 09:58:42 AM,02/11/2015 09:59:17 AM,02/11/2015 10:00:25 AM,02/11/2015 10:02:06 AM,02/11/2015 10:10:33 AM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Code 2 Transport,02/11/2015 10:25:35 AM,100 Block of AVENUE C,San Francisco,94130,B02,29,2345,2,2,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",150421151-E29 +141851143,E38,14063994,Medical Incident,07/04/2014,07/04/2014,07/04/2014 11:27:28 AM,07/04/2014 11:28:53 AM,07/04/2014 11:29:45 AM,07/04/2014 11:30:32 AM,07/04/2014 11:38:35 AM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Code 2 Transport,07/04/2014 11:47:23 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",141851143-E38 +150501578,B04,15019297,Alarms,02/19/2015,02/19/2015,02/19/2015 12:16:37 PM,02/19/2015 12:18:00 PM,02/19/2015 12:18:17 PM,02/19/2015 12:19:48 PM,02/19/2015 12:24:28 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Fire,02/19/2015 12:30:46 PM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",150501578-B04 +151921804,52,15073294,Traffic Collision,07/11/2015,07/11/2015,07/11/2015 01:07:12 PM,07/11/2015 01:07:12 PM,07/11/2015 01:08:40 PM,07/11/2015 01:09:19 PM,07/11/2015 01:15:19 PM,07/11/2015 01:43:51 PM,07/11/2015 02:00:53 PM,Code 2 Transport,07/11/2015 02:30:01 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",151921804-52 +160962783,87,16038095,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:42:52 PM,04/05/2016 04:43:26 PM,04/05/2016 04:43:43 PM,04/05/2016 04:43:54 PM,04/05/2016 04:48:02 PM,04/05/2016 05:12:44 PM,04/05/2016 05:31:42 PM,Code 2 Transport,04/05/2016 06:07:16 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160962783-87 +142813415,67,14099030,Medical Incident,10/08/2014,10/08/2014,10/08/2014 09:00:49 PM,10/08/2014 09:02:03 PM,10/08/2014 09:04:10 PM,10/08/2014 09:04:20 PM,10/08/2014 09:19:03 PM,10/08/2014 09:30:06 PM,10/08/2014 10:04:21 PM,Code 2 Transport,10/08/2014 10:41:34 PM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",142813415-67 +141332058,81,14045359,Medical Incident,05/13/2014,05/13/2014,05/13/2014 02:38:05 PM,05/13/2014 02:39:48 PM,05/13/2014 02:40:33 PM,05/13/2014 02:40:41 PM,05/13/2014 02:50:50 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,Patient Declined Transport,05/13/2014 02:56:32 PM,300 Block of JEFFERSON ST,San Francisco,94133,B01,28,1524,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.807853999752, -122.418254964437)",141332058-81 +150182356,E08,15007171,Medical Incident,01/18/2015,01/18/2015,01/18/2015 04:49:35 PM,01/18/2015 04:50:55 PM,01/18/2015 04:52:35 PM,01/18/2015 04:53:21 PM,01/18/2015 04:54:09 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,No Merit,01/18/2015 04:58:35 PM,900 Block of 4TH ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7753672597362, -122.392898312211)",150182356-E08 +142570694,73,14089695,Structure Fire,09/14/2014,09/13/2014,09/14/2014 06:58:12 AM,09/14/2014 06:58:12 AM,09/14/2014 07:22:57 AM,09/14/2014 07:22:57 AM,09/14/2014 07:36:23 AM,09/14/2014 07:51:29 AM,09/14/2014 08:10:05 AM,Code 2 Transport,09/14/2014 08:29:38 AM,COLUMBUS AV/UNION ST,San Francisco,94133,B01,28,1334,3,3,3,true,Alarm,1,MEDIC,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",142570694-73 +142410382,2R01,14083724,,08/29/2014,08/28/2014,08/29/2014 03:28:47 AM,08/29/2014 03:31:26 AM,08/29/2014 05:07:12 AM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,Code 2 Transport,08/29/2014 05:07:19 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,ADMIN,0,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",142410382-2R01 +160982243,82,16038957,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:23:37 PM,04/07/2016 02:24:13 PM,04/07/2016 02:25:01 PM,04/07/2016 02:25:39 PM,04/07/2016 02:45:47 PM,04/07/2016 03:13:17 PM,04/07/2016 03:35:23 PM,Code 2 Transport,04/07/2016 04:19:08 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",160982243-82 +161001012,71,16039683,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:38:19 AM,04/09/2016 09:39:34 AM,04/09/2016 09:39:45 AM,04/09/2016 09:39:52 AM,04/09/2016 09:43:56 AM,04/09/2016 10:11:04 AM,04/09/2016 10:20:40 AM,Code 2 Transport,04/09/2016 10:49:24 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",161001012-71 +150911220,T16,15034557,Water Rescue,04/01/2015,04/01/2015,04/01/2015 10:45:17 AM,04/01/2015 10:45:17 AM,04/01/2015 10:51:20 AM,04/01/2015 10:51:20 AM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Fire,04/01/2015 11:37:43 AM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,TRUCK,11,7,2,Presidio,"(37.8066581989584, -122.47471662098)",150911220-T16 +153192749,B07,15122759,Medical Incident,11/15/2015,11/15/2015,11/15/2015 05:35:16 PM,11/15/2015 05:35:56 PM,11/15/2015 05:38:04 PM,11/15/2015 05:38:58 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Code 2 Transport,11/15/2015 05:45:09 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,E,3,false,Potentially Life-Threatening,1,CHIEF,4,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",153192749-B07 +152940960,82,15112884,Medical Incident,10/21/2015,10/21/2015,10/21/2015 08:51:55 AM,10/21/2015 08:51:55 AM,10/21/2015 08:52:06 AM,10/21/2015 08:52:26 AM,10/21/2015 09:07:31 AM,10/21/2015 09:23:35 AM,10/21/2015 09:31:48 AM,Code 2 Transport,10/21/2015 10:11:31 AM,BUENA VISTA AV W/HAIGHT ST,San Francisco,94117,B05,21,4353,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7704695388214, -122.443311687099)",152940960-82 +143332126,KM10,14118054,Medical Incident,11/29/2014,11/29/2014,11/29/2014 03:20:16 PM,11/29/2014 03:21:33 PM,11/29/2014 03:22:09 PM,11/29/2014 03:25:41 PM,11/29/2014 03:27:50 PM,11/29/2014 04:16:53 PM,11/29/2014 04:17:06 PM,Code 2 Transport,11/29/2014 04:42:42 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",143332126-KM10 +160921385,AM08,16036406,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:32:29 AM,04/01/2016 11:34:08 AM,04/01/2016 11:34:25 AM,04/01/2016 11:35:17 AM,04/01/2016 11:42:01 AM,04/01/2016 11:51:12 AM,04/01/2016 12:18:11 PM,Code 2 Transport,04/01/2016 01:00:31 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160921385-AM08 +151581198,E04,15060288,Alarms,06/07/2015,06/07/2015,06/07/2015 10:16:37 AM,06/07/2015 10:17:22 AM,06/07/2015 10:18:25 AM,06/07/2015 10:18:25 AM,06/07/2015 10:21:29 AM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Fire,06/07/2015 10:27:44 AM,1100 Block of MARIPOSA ST,San Francisco,94107,B03,29,2431,3,3,3,false,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7639902811821, -122.39520057273)",151581198-E04 +160951946,56,16037646,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:29:18 PM,04/04/2016 01:30:42 PM,04/04/2016 01:34:29 PM,04/04/2016 01:34:41 PM,04/04/2016 01:38:20 PM,04/04/2016 01:51:08 PM,04/04/2016 02:12:16 PM,Code 2 Transport,04/04/2016 02:55:29 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,3,3,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160951946-56 +152433519,E07,15092846,Other,08/31/2015,08/31/2015,08/31/2015 07:43:36 PM,08/31/2015 07:48:17 PM,08/31/2015 07:48:40 PM,08/31/2015 07:51:22 PM,08/31/2015 07:53:25 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Fire,08/31/2015 08:11:02 PM,3300 Block of 20TH ST,San Francisco,94110,B06,7,5447,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7587424639071, -122.416320644866)",152433519-E07 +153473232,KM03,15133849,Medical Incident,12/13/2015,12/13/2015,12/13/2015 09:08:30 PM,12/13/2015 09:11:35 PM,12/13/2015 09:11:56 PM,12/13/2015 09:12:18 PM,12/13/2015 09:19:08 PM,12/13/2015 09:39:33 PM,12/13/2015 09:55:44 PM,Code 2 Transport,12/13/2015 10:36:42 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",153473232-KM03 +160984100,AM20,16039146,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:30:27 PM,04/07/2016 11:31:06 PM,04/07/2016 11:31:52 PM,04/07/2016 11:32:31 PM,04/08/2016 12:01:20 AM,04/08/2016 12:01:23 AM,04/08/2016 12:07:40 AM,Code 2 Transport,04/08/2016 12:58:26 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160984100-AM20 +152894135,AM18,15111237,Medical Incident,10/16/2015,10/16/2015,10/16/2015 11:08:14 PM,10/16/2015 11:09:54 PM,10/16/2015 11:10:11 PM,10/16/2015 11:10:46 PM,10/16/2015 11:14:21 PM,10/16/2015 11:29:52 PM,10/16/2015 11:43:03 PM,Code 2 Transport,10/17/2015 12:11:16 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",152894135-AM18 +143011048,E14,14106211,Medical Incident,10/28/2014,10/28/2014,10/28/2014 09:49:14 AM,10/28/2014 09:50:22 AM,10/28/2014 09:51:09 AM,10/28/2014 09:54:12 AM,10/28/2014 09:54:12 AM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Code 2 Transport,10/28/2014 10:11:12 AM,200 Block of 21ST AVE,San Francisco,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7831476181283, -122.480588567897)",143011048-E14 +152262129,70,15086163,Traffic Collision,08/14/2015,08/14/2015,08/14/2015 02:27:36 PM,08/14/2015 02:27:36 PM,08/14/2015 02:28:31 PM,08/14/2015 02:28:42 PM,08/14/2015 02:33:05 PM,08/14/2015 02:56:59 PM,08/14/2015 03:02:41 PM,Code 2 Transport,08/14/2015 04:04:58 PM,OLYMPIA WY/CLARENDON AV,San Francisco,94131,B08,20,5351,2,2,2,true,Non Life-threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7514833140805, -122.456448432223)",152262129-70 +150753181,AM16,15028910,Medical Incident,03/16/2015,03/16/2015,03/16/2015 06:55:01 PM,03/16/2015 06:57:37 PM,03/16/2015 06:58:06 PM,03/16/2015 06:58:26 PM,03/16/2015 07:20:28 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Cancelled,03/16/2015 07:28:11 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",150753181-AM16 +150690899,T01,15026279,Alarms,03/10/2015,03/10/2015,03/10/2015 09:02:55 AM,03/10/2015 09:03:57 AM,03/10/2015 09:04:06 AM,03/10/2015 09:05:09 AM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Fire,03/10/2015 09:08:57 AM,0 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,3,2,6,South of Market,"(37.7795700115888, -122.411484015918)",150690899-T01 +143171311,E29,14112241,Medical Incident,11/13/2014,11/13/2014,11/13/2014 10:52:18 AM,11/13/2014 10:54:42 AM,11/13/2014 10:54:46 AM,11/13/2014 10:55:09 AM,11/13/2014 11:03:07 AM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Code 2 Transport,11/13/2014 11:03:13 AM,POTRERO AV/16TH ST,San Francisco,94103,B02,29,2351,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",143171311-E29 +160991085,84,16039245,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:09:15 AM,04/08/2016 10:13:54 AM,04/08/2016 10:15:18 AM,04/08/2016 10:15:32 AM,04/08/2016 10:51:32 AM,04/08/2016 10:51:34 AM,04/08/2016 11:12:02 AM,Code 2 Transport,04/08/2016 11:59:04 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",160991085-84 +152631047,MCU2,15100567,Other,09/20/2015,09/20/2015,09/20/2015 08:53:28 AM,09/20/2015 08:53:36 AM,09/20/2015 09:45:07 AM,09/20/2015 09:45:07 AM,09/20/2015 10:03:08 AM,04/25/2016 01:08:14 PM,04/25/2016 01:08:14 PM,Other,09/20/2015 11:15:01 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,3,3,false,Potentially Life-Threatening,1,SUPPORT,11,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",152631047-MCU2 +142762728,KM07,14097018,Medical Incident,10/03/2014,10/03/2014,10/03/2014 04:39:14 PM,10/03/2014 04:40:49 PM,10/03/2014 04:41:40 PM,10/03/2014 04:43:52 PM,10/03/2014 04:47:46 PM,10/03/2014 05:12:01 PM,10/03/2014 05:40:20 PM,Code 2 Transport,10/03/2014 06:10:15 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",142762728-KM07 +142103279,74,14072928,Medical Incident,07/29/2014,07/29/2014,07/29/2014 09:00:32 PM,07/29/2014 09:00:32 PM,07/29/2014 09:01:04 PM,07/29/2014 09:01:42 PM,07/29/2014 09:44:10 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Patient Declined Transport,07/29/2014 10:01:20 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",142103279-74 +151933444,75,15073814,Medical Incident,07/12/2015,07/12/2015,07/12/2015 09:13:01 PM,07/12/2015 09:13:01 PM,07/12/2015 09:25:27 PM,07/12/2015 09:25:48 PM,07/12/2015 09:33:52 PM,07/12/2015 09:50:02 PM,07/12/2015 10:17:48 PM,Code 2 Transport,07/12/2015 10:53:06 PM,WEST PORTAL AV/ULLOA ST,San Francisco,94127,B08,39,8611,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7408919760876, -122.465829021907)",151933444-75 +142161276,66,14074862,Medical Incident,08/04/2014,08/04/2014,08/04/2014 11:12:50 AM,08/04/2014 11:12:50 AM,08/04/2014 11:13:05 AM,08/04/2014 11:13:18 AM,08/04/2014 11:17:01 AM,08/04/2014 11:53:33 AM,08/04/2014 12:25:34 PM,Code 2 Transport,08/04/2014 12:52:17 PM,300 Block of 19TH AVE,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7813416538301, -122.478443283523)",142161276-66 +152763463,56,15105952,Traffic Collision,10/03/2015,10/03/2015,10/03/2015 07:43:43 PM,10/03/2015 07:46:07 PM,10/03/2015 07:46:57 PM,10/03/2015 07:47:06 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,No Merit,10/03/2015 07:59:38 PM,80WB TREASURE IS YBI OF/TREASURE ISLAND,,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.808751194197, -122.363085459246)",152763463-56 +141480561,89,14050728,Medical Incident,05/28/2014,05/27/2014,05/28/2014 07:24:39 AM,05/28/2014 07:27:06 AM,05/28/2014 07:27:20 AM,05/28/2014 07:28:15 AM,05/28/2014 07:34:40 AM,05/28/2014 07:52:32 AM,05/28/2014 07:59:52 AM,Code 2 Transport,05/28/2014 08:39:02 AM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",141480561-89 +160954116,70,16037829,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:17:27 PM,04/04/2016 11:18:26 PM,04/04/2016 11:18:40 PM,04/04/2016 11:18:47 PM,04/04/2016 11:25:20 PM,04/04/2016 11:45:18 PM,04/04/2016 11:56:00 PM,Code 2 Transport,04/05/2016 12:33:54 AM,2100 Block of BAY SHORE BLVD,San Francisco,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7125905955403, -122.401535804486)",160954116-70 +143353343,E42,14118847,Alarms,12/01/2014,12/01/2014,12/01/2014 07:54:59 PM,12/01/2014 07:56:10 PM,12/01/2014 07:56:34 PM,12/01/2014 07:58:09 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Fire,12/01/2014 08:09:29 PM,3500 Block of KEITH ST,San Francisco,94124,B10,44,6542,3,3,3,true,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7188802225041, -122.398748103076)",143353343-E42 +143191208,82,14112930,Traffic Collision,11/15/2014,11/15/2014,11/15/2014 10:37:22 AM,11/15/2014 10:38:27 AM,11/15/2014 10:39:13 AM,11/15/2014 10:44:56 AM,11/15/2014 10:50:08 AM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Patient Declined Transport,11/15/2014 12:10:12 PM,SLOAT BL/47TH AV,San Francisco,94132,B08,23,7733,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7354752888502, -122.50525735067)",143191208-82 +143413328,T16,14121306,Structure Fire,12/07/2014,12/07/2014,12/07/2014 09:17:07 PM,12/07/2014 09:17:07 PM,12/07/2014 09:17:55 PM,12/07/2014 09:19:02 PM,04/25/2016 01:13:35 PM,04/25/2016 01:13:35 PM,04/25/2016 01:13:35 PM,Fire,12/07/2014 09:21:28 PM,FRANKLIN ST/GREENWICH ST,San Francisco,94123,B04,16,3234,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8002062474722, -122.426001248596)",143413328-T16 +160982175,KM05,16038947,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:07:17 PM,04/07/2016 02:07:17 PM,04/07/2016 02:07:25 PM,04/07/2016 02:08:06 PM,04/07/2016 02:14:01 PM,04/07/2016 02:26:24 PM,04/07/2016 02:30:34 PM,Code 2 Transport,04/07/2016 03:08:15 PM,700 Block of 6TH AVE,San Francisco,94118,B07,31,7132,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7744933641566, -122.463881451148)",160982175-KM05 +150090007,AM16,15003376,Medical Incident,01/09/2015,01/08/2015,01/09/2015 12:03:30 AM,01/09/2015 12:04:06 AM,01/09/2015 12:05:04 AM,01/09/2015 12:06:06 AM,01/09/2015 12:14:16 AM,01/09/2015 12:27:00 AM,01/09/2015 12:42:00 AM,Code 2 Transport,01/09/2015 01:15:43 AM,0 Block of WAWONA ST,San Francisco,94127,B08,39,8616,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.742433820104, -122.466218709113)",150090007-AM16 +160981638,KM12,16038894,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:47:25 AM,04/07/2016 11:49:52 AM,04/07/2016 11:51:19 AM,04/07/2016 11:52:12 AM,04/07/2016 11:55:16 AM,04/07/2016 12:04:10 PM,04/07/2016 12:22:31 PM,Code 2 Transport,04/07/2016 01:01:30 PM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",160981638-KM12 +160970054,KM03,16038243,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:21:04 AM,04/06/2016 12:21:44 AM,04/06/2016 12:21:52 AM,04/06/2016 12:22:21 AM,04/06/2016 12:32:07 AM,04/06/2016 12:43:40 AM,04/06/2016 12:54:50 AM,Code 2 Transport,04/06/2016 01:31:52 AM,1300 Block of 7TH AVE,San Francisco,94122,B08,22,7332,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,5,Inner Sunset,"(37.7632029010129, -122.464037930237)",160970054-KM03 +160921504,E02,16036420,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:05:50 PM,04/01/2016 12:07:41 PM,04/01/2016 12:08:37 PM,04/01/2016 12:12:35 PM,04/01/2016 12:12:35 PM,04/01/2016 12:31:27 PM,04/01/2016 12:44:13 PM,Code 3 Transport,04/01/2016 12:45:36 PM,100 Block of VARENNES ST,San Francisco,94133,B01,28,1252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8012139505767, -122.406825918153)",160921504-E02 +150892012,AM02,15033991,Medical Incident,03/30/2015,03/30/2015,03/30/2015 02:39:30 PM,03/30/2015 02:42:13 PM,03/30/2015 02:54:56 PM,03/30/2015 02:55:27 PM,03/30/2015 03:08:25 PM,03/30/2015 04:03:06 PM,03/30/2015 04:40:13 PM,Code 2 Transport,03/30/2015 05:04:45 PM,1700 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7362394819721, -122.393112998589)",150892012-AM02 +150572548,KM06,15021849,Medical Incident,02/26/2015,02/26/2015,02/26/2015 04:35:15 PM,02/26/2015 04:36:03 PM,02/26/2015 04:36:54 PM,02/26/2015 04:42:03 PM,02/26/2015 04:42:03 PM,02/26/2015 04:57:33 PM,02/26/2015 05:09:29 PM,Code 2 Transport,02/26/2015 06:15:10 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",150572548-KM06 +151431418,B09,15054347,Structure Fire,05/23/2015,05/23/2015,05/23/2015 11:20:03 AM,05/23/2015 11:21:44 AM,05/23/2015 11:22:10 AM,05/23/2015 11:22:42 AM,05/23/2015 11:26:34 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Fire,05/23/2015 11:35:30 AM,200 Block of BRIGHT ST,San Francisco,94132,B09,33,8414,3,3,3,false,Alarm,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7152184350977, -122.463441226301)",151431418-B09 +150921726,E32,15034987,Structure Fire,04/02/2015,04/02/2015,04/02/2015 01:01:02 PM,04/02/2015 01:01:29 PM,04/02/2015 01:07:26 PM,04/02/2015 01:08:33 PM,04/02/2015 01:15:15 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Fire,04/02/2015 01:35:55 PM,1400 Block of VAN DYKE AVE,San Francisco,94124,B10,17,6651,3,3,3,false,Fire,2,ENGINE,11,10,10,Bayview Hunters Point,"(37.7275267994511, -122.389650111212)",150921726-E32 +143492961,KM02,14124757,Medical Incident,12/15/2014,12/15/2014,12/15/2014 07:53:47 PM,12/15/2014 07:55:38 PM,12/15/2014 07:56:18 PM,12/15/2014 07:57:33 PM,12/15/2014 08:00:00 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Medical Examiner,12/15/2014 08:48:30 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",143492961-KM02 +152993184,87,15114895,Medical Incident,10/26/2015,10/26/2015,10/26/2015 06:38:35 PM,10/26/2015 06:38:35 PM,10/26/2015 06:39:05 PM,10/26/2015 06:39:12 PM,10/26/2015 06:48:05 PM,10/26/2015 07:10:47 PM,10/26/2015 07:32:43 PM,Code 2 Transport,10/26/2015 08:00:35 PM,7TH ST/NATOMA ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7784162815142, -122.409938240258)",152993184-87 +143542426,E38,14126532,Vehicle Fire,12/20/2014,12/20/2014,12/20/2014 01:18:19 PM,12/20/2014 01:20:56 PM,12/20/2014 01:21:30 PM,12/20/2014 01:22:42 PM,12/20/2014 01:25:10 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Fire,12/20/2014 01:29:49 PM,2000 Block of LOMBARD ST,San Francisco,94123,B04,16,3461,3,3,3,false,Fire,1,ENGINE,2,4,2,Marina,"(37.7998309235227, -122.435201947883)",143542426-E38 +142643657,T07,14092542,Alarms,09/21/2014,09/21/2014,09/21/2014 11:48:40 PM,09/21/2014 11:49:52 PM,09/21/2014 11:50:05 PM,09/21/2014 11:51:37 PM,09/21/2014 11:53:45 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Fire,09/22/2014 12:05:02 AM,700 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.7609052657931, -122.421432818786)",142643657-T07 +152052283,AM02,15078128,Medical Incident,07/24/2015,07/24/2015,07/24/2015 03:05:01 PM,07/24/2015 03:06:21 PM,07/24/2015 03:06:48 PM,07/24/2015 03:07:25 PM,07/24/2015 03:21:09 PM,07/24/2015 03:41:55 PM,04/25/2016 01:09:18 PM,Code 2 Transport,07/24/2015 04:28:44 PM,BUENA VISTA AV E/HAIGHT ST,San Francisco,94117,B05,21,4247,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7704695388214, -122.443311687099)",152052283-AM02 +153242138,57,15124708,Medical Incident,11/20/2015,11/20/2015,11/20/2015 01:43:18 PM,11/20/2015 01:43:41 PM,11/20/2015 01:53:36 PM,11/20/2015 01:54:32 PM,11/20/2015 02:01:53 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,Code 2 Transport,11/20/2015 02:38:47 PM,400 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7912932514009, -122.398614610411)",153242138-57 +150490847,64,15018880,Medical Incident,02/18/2015,02/18/2015,02/18/2015 08:33:04 AM,02/18/2015 08:34:14 AM,02/18/2015 08:37:12 AM,02/18/2015 08:37:27 AM,02/18/2015 09:07:49 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Unable to Locate,02/18/2015 09:12:28 AM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.797627561244, -122.408618845707)",150490847-64 +160922116,73,16036476,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 02:54:35 PM,04/01/2016 02:54:35 PM,04/01/2016 02:54:56 PM,04/01/2016 02:56:16 PM,04/01/2016 02:56:45 PM,04/01/2016 03:15:55 PM,04/01/2016 03:42:54 PM,Code 2 Transport,04/01/2016 04:32:12 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160922116-73 +152601289,E31,15099311,Medical Incident,09/17/2015,09/17/2015,09/17/2015 10:35:24 AM,09/17/2015 10:36:22 AM,09/17/2015 10:36:50 AM,09/17/2015 10:38:29 AM,09/17/2015 10:40:31 AM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Code 2 Transport,09/17/2015 10:45:13 AM,GEARY BL/6TH AV,San Francisco,94118,B07,31,7124,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7810189207549, -122.464279168827)",152601289-E31 +160983419,70,16039084,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:38:15 PM,04/07/2016 07:39:34 PM,04/07/2016 07:39:46 PM,04/07/2016 07:39:56 PM,04/07/2016 07:43:32 PM,04/07/2016 07:54:52 PM,04/07/2016 08:07:32 PM,Code 2 Transport,04/07/2016 08:51:07 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.797897750793, -122.40685252573)",160983419-70 +141460702,82,14050065,Medical Incident,05/26/2014,05/26/2014,05/26/2014 08:20:37 AM,05/26/2014 08:22:00 AM,05/26/2014 08:22:31 AM,05/26/2014 08:22:42 AM,05/26/2014 08:27:44 AM,05/26/2014 08:53:09 AM,05/26/2014 09:16:34 AM,Code 2 Transport,05/26/2014 09:46:02 AM,600 Block of SUTTER ST,San Francisco,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",141460702-82 +160983209,AM20,16039068,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:35:39 PM,04/07/2016 06:39:07 PM,04/07/2016 06:39:20 PM,04/07/2016 06:39:46 PM,04/07/2016 07:02:11 PM,04/07/2016 07:12:35 PM,04/07/2016 07:33:18 PM,Code 2 Transport,04/07/2016 07:59:44 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,2,3,3,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7658666581108, -122.419678114931)",160983209-AM20 +142511359,T17,14087520,Medical Incident,09/08/2014,09/08/2014,09/08/2014 11:46:53 AM,09/08/2014 11:49:01 AM,09/08/2014 11:49:24 AM,09/08/2014 11:50:55 AM,09/08/2014 11:53:26 AM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,Code 2 Transport,09/08/2014 11:53:48 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",142511359-T17 +142592586,E02,14090568,Medical Incident,09/16/2014,09/16/2014,09/16/2014 04:52:23 PM,09/16/2014 04:52:48 PM,09/16/2014 04:53:15 PM,09/16/2014 04:54:18 PM,09/16/2014 04:57:32 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Code 2 Transport,09/16/2014 05:32:31 PM,BEACH ST/GRANT AV,San Francisco,94133,B01,28,1262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8081107530325, -122.409050496518)",142592586-E02 +152033792,KM07,15077536,Medical Incident,07/22/2015,07/22/2015,07/22/2015 10:52:14 PM,07/22/2015 10:52:14 PM,07/22/2015 11:00:47 PM,07/22/2015 11:01:26 PM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,Cancelled,07/22/2015 11:07:57 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",152033792-KM07 +151731830,62,15066067,Medical Incident,06/22/2015,06/22/2015,06/22/2015 02:18:00 PM,06/22/2015 02:19:58 PM,06/22/2015 02:20:30 PM,06/22/2015 02:20:36 PM,06/22/2015 02:20:36 PM,06/22/2015 02:38:05 PM,06/22/2015 02:55:39 PM,Code 2 Transport,06/22/2015 03:18:30 PM,4TH ST/HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",151731830-62 +151610257,B09,15061376,Alarms,06/10/2015,06/09/2015,06/10/2015 02:54:20 AM,06/10/2015 02:56:15 AM,06/10/2015 02:56:22 AM,06/10/2015 02:58:11 AM,06/10/2015 03:04:57 AM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Fire,06/10/2015 03:21:46 AM,400 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",151610257-B09 +153470579,B02,15133542,Alarms,12/13/2015,12/12/2015,12/13/2015 05:03:39 AM,12/13/2015 05:04:56 AM,12/13/2015 05:05:45 AM,12/13/2015 05:08:28 AM,12/13/2015 05:12:10 AM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Fire,12/13/2015 05:17:12 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",153470579-B02 +142683123,74,14094060,Medical Incident,09/25/2014,09/25/2014,09/25/2014 07:30:07 PM,09/25/2014 07:31:00 PM,09/25/2014 07:31:26 PM,09/25/2014 07:31:41 PM,09/25/2014 07:35:35 PM,09/25/2014 08:08:13 PM,09/25/2014 08:19:18 PM,Code 2 Transport,09/25/2014 08:46:07 PM,100 Block of VALENCIA ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7707354654507, -122.422376576245)",142683123-74 +141980878,E03,14068483,Medical Incident,07/17/2014,07/17/2014,07/17/2014 08:46:48 AM,07/17/2014 08:48:32 AM,07/17/2014 08:49:10 AM,07/17/2014 08:50:30 AM,07/17/2014 08:53:14 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 2 Transport,07/17/2014 09:10:18 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",141980878-E03 +153054461,D2,15117388,Structure Fire,11/01/2015,11/01/2015,11/01/2015 11:18:17 PM,11/01/2015 11:18:55 PM,11/01/2015 11:19:29 PM,11/01/2015 11:20:43 PM,11/01/2015 11:24:06 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/01/2015 11:24:23 PM,900 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,false,Alarm,1,CHIEF,5,4,3,Nob Hill,"(37.787277154617, -122.416825199786)",153054461-D2 +152511458,81,15095843,Medical Incident,09/08/2015,09/08/2015,09/08/2015 11:00:16 AM,09/08/2015 11:00:16 AM,09/08/2015 11:01:17 AM,09/08/2015 11:01:48 AM,09/08/2015 11:21:58 AM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Patient Declined Transport,09/08/2015 12:37:38 PM,4000 Block of JUDAH ST,San Francisco,94122,B08,23,7655,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7603932695375, -122.505388569418)",152511458-81 +143444076,T13,14122525,Citizen Assist / Service Call,12/10/2014,12/10/2014,12/10/2014 11:10:22 PM,12/10/2014 11:12:21 PM,12/10/2014 11:12:54 PM,12/10/2014 11:15:07 PM,12/10/2014 11:17:26 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/10/2014 11:29:26 PM,500 Block of MARKET ST,San Francisco,94104,B01,13,1236,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7905865694353, -122.399877480803)",143444076-T13 +143351551,77,14118692,Medical Incident,12/01/2014,12/01/2014,12/01/2014 12:15:15 PM,12/01/2014 12:16:55 PM,12/01/2014 12:17:10 PM,12/01/2014 12:18:07 PM,12/01/2014 12:23:29 PM,12/01/2014 12:42:07 PM,12/01/2014 01:16:26 PM,Code 2 Transport,12/01/2014 02:00:57 PM,6100 Block of FULTON ST,San Francisco,94122,B07,34,7253,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7719526452281, -122.496505445596)",143351551-77 +143470438,E17,14123639,Medical Incident,12/13/2014,12/12/2014,12/13/2014 02:49:35 AM,12/13/2014 02:50:40 AM,12/13/2014 02:50:50 AM,12/13/2014 02:54:13 AM,12/13/2014 02:58:03 AM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Fire,12/13/2014 03:15:48 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",143470438-E17 +142033408,E12,14070398,Medical Incident,07/22/2014,07/22/2014,07/22/2014 09:29:53 PM,07/22/2014 09:31:14 PM,07/22/2014 09:31:24 PM,07/22/2014 09:32:09 PM,07/22/2014 09:34:09 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Code 2 Transport,07/22/2014 09:46:16 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",142033408-E12 +150700489,KM03,15026623,Medical Incident,03/11/2015,03/10/2015,03/11/2015 06:07:57 AM,03/11/2015 06:08:54 AM,03/11/2015 06:09:13 AM,03/11/2015 06:09:51 AM,03/11/2015 06:14:19 AM,03/11/2015 06:47:26 AM,03/11/2015 06:53:19 AM,Code 2 Transport,03/11/2015 07:16:51 AM,300 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7668035178194, -122.440704687809)",150700489-KM03 +141591967,E36,14054841,Medical Incident,06/08/2014,06/08/2014,06/08/2014 03:35:45 PM,06/08/2014 03:36:23 PM,06/08/2014 03:37:07 PM,06/08/2014 03:38:32 PM,06/08/2014 03:43:28 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Code 2 Transport,06/08/2014 03:46:53 PM,HYDE ST/MCALLISTER ST,San Francisco,94102,B02,36,1552,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",141591967-E36 +150801814,E44,15030660,Medical Incident,03/21/2015,03/21/2015,03/21/2015 01:40:49 PM,03/21/2015 01:42:52 PM,03/21/2015 01:43:15 PM,03/21/2015 01:44:42 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Patient Declined Transport,03/21/2015 01:44:56 PM,1800 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",150801814-E44 +142841559,T02,14100030,Other,10/11/2014,10/11/2014,10/11/2014 11:59:29 AM,10/11/2014 12:01:06 PM,10/11/2014 12:02:03 PM,10/11/2014 12:05:35 PM,10/11/2014 12:06:18 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Fire,10/11/2014 12:10:51 PM,2000 Block of GREEN ST,San Francisco,94123,B04,16,3463,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.7965249395334, -122.432847820562)",142841559-T02 +141872899,RS2,14064919,Structure Fire,07/06/2014,07/06/2014,07/06/2014 08:07:58 PM,07/06/2014 08:08:13 PM,07/06/2014 08:08:27 PM,07/06/2014 08:09:16 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Fire,07/06/2014 08:10:42 PM,2700 Block of IRVING ST,San Francisco,94122,B08,22,7511,3,3,3,false,Fire,1,RESCUE SQUAD,10,8,4,Sunset/Parkside,"(37.7630584789098, -122.487300731698)",141872899-RS2 +152153992,55,15082029,Medical Incident,08/03/2015,08/03/2015,08/03/2015 10:14:38 PM,08/03/2015 10:14:38 PM,08/03/2015 10:19:02 PM,08/03/2015 10:19:02 PM,08/03/2015 10:19:02 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Unable to Locate,08/03/2015 10:34:54 PM,400 Block of PACIFIC AVE,San Francisco,94133,B01,13,1212,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7974015545937, -122.403291978554)",152153992-55 +141120030,84,14037677,Medical Incident,04/22/2014,04/21/2014,04/22/2014 01:46:45 AM,04/22/2014 01:48:20 AM,04/22/2014 01:48:49 AM,04/22/2014 01:49:00 AM,04/22/2014 02:00:17 AM,04/22/2014 02:20:22 AM,04/22/2014 02:30:20 AM,Code 2 Transport,04/22/2014 03:11:50 AM,0 Block of NEW MONTGOMERY ST,SAN FRANCISCO,94105,B03,1,2144,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",141120030-84 +160943464,64,16037434,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:41:50 PM,04/03/2016 09:41:50 PM,04/03/2016 09:42:40 PM,04/03/2016 09:42:52 PM,04/03/2016 09:55:37 PM,04/03/2016 09:55:48 PM,04/03/2016 10:04:46 PM,Code 2 Transport,04/03/2016 10:39:28 PM,1500 Block of 4TH ST,San Francisco,94158,B03,4,2265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7691856282366, -122.391094397762)",160943464-64 +142553664,KM04,14089210,Medical Incident,09/12/2014,09/12/2014,09/12/2014 10:08:19 PM,09/12/2014 10:09:42 PM,09/12/2014 10:10:35 PM,09/12/2014 10:11:16 PM,09/12/2014 10:14:51 PM,09/12/2014 10:23:28 PM,09/12/2014 10:33:13 PM,Code 2 Transport,09/12/2014 11:06:19 PM,600 Block of PACIFIC AVE,San Francisco,94133,B01,13,1246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",142553664-KM04 +160962242,63,16038052,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:35:45 PM,04/05/2016 02:37:44 PM,04/05/2016 02:39:14 PM,04/05/2016 02:39:53 PM,04/05/2016 02:54:53 PM,04/05/2016 02:59:32 PM,04/05/2016 03:18:55 PM,Code 2 Transport,04/05/2016 03:57:18 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160962242-63 +152810029,E02,15107670,Structure Fire,10/08/2015,10/07/2015,10/08/2015 12:14:00 AM,10/08/2015 12:14:00 AM,10/08/2015 12:14:09 AM,10/08/2015 12:15:33 AM,10/08/2015 12:19:19 AM,04/25/2016 01:07:54 PM,04/25/2016 01:07:54 PM,Fire,10/08/2015 12:19:24 AM,STOCKTON ST/WASHINGTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",152810029-E02 +141290894,AM16,14043814,Other,05/09/2014,05/09/2014,05/09/2014 08:53:09 AM,05/09/2014 08:53:09 AM,05/09/2014 09:08:25 AM,05/09/2014 09:13:34 AM,05/09/2014 09:24:16 AM,05/09/2014 09:36:58 AM,05/09/2014 10:13:01 AM,Multi-casualty Incident,05/09/2014 11:19:21 AM,1200 Block of INGALLS ST,San Francisco,94124,B10,17,6572,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,8,10,10,Bayview Hunters Point,"(37.7305663224371, -122.381859307677)",141290894-AM16 +151080957,D2,15040834,Structure Fire,04/18/2015,04/18/2015,04/18/2015 08:53:44 AM,04/18/2015 08:54:40 AM,04/18/2015 08:55:43 AM,04/18/2015 08:57:18 AM,04/18/2015 09:01:30 AM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Fire,04/18/2015 10:22:18 AM,700 Block of PINE ST,San Francisco,94108,B01,2,1325,3,3,3,false,Alarm,1,CHIEF,9,1,3,Nob Hill,"(37.7912011681146, -122.408529251047)",151080957-D2 +142532558,71,14088363,Traffic Collision,09/10/2014,09/10/2014,09/10/2014 04:00:34 PM,09/10/2014 04:03:30 PM,09/10/2014 04:05:14 PM,09/10/2014 04:06:46 PM,09/10/2014 04:10:03 PM,09/10/2014 04:19:15 PM,09/10/2014 04:44:19 PM,Code 2 Transport,09/10/2014 05:09:01 PM,100 Block of AVENUE C,San Francisco,94130,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",142532558-71 +143170421,T03,14112162,Citizen Assist / Service Call,11/13/2014,11/12/2014,11/13/2014 05:14:04 AM,11/13/2014 05:15:11 AM,11/13/2014 05:15:41 AM,11/13/2014 05:18:47 AM,11/13/2014 05:19:48 AM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,No Merit,11/13/2014 05:23:57 AM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",143170421-T03 +152523426,KM06,15096469,Traffic Collision,09/09/2015,09/09/2015,09/09/2015 06:54:26 PM,09/09/2015 06:54:46 PM,09/09/2015 06:55:02 PM,09/09/2015 06:55:19 PM,09/09/2015 07:06:47 PM,09/09/2015 07:28:14 PM,09/09/2015 07:45:25 PM,Code 3 Transport,09/09/2015 08:39:23 PM,FULTON ST/DIVISADERO ST,San Francisco,94117,B05,21,4135,2,2,2,false,Non Life-threatening,1,PRIVATE,3,5,5,Hayes Valley,"(37.7768558891973, -122.438177046242)",152523426-KM06 +150912481,E19,15034653,Medical Incident,04/01/2015,04/01/2015,04/01/2015 04:07:32 PM,04/01/2015 04:08:17 PM,04/01/2015 04:08:38 PM,04/01/2015 04:09:44 PM,04/01/2015 04:11:35 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/01/2015 04:32:27 PM,WINSTON DR/20TH AV,San Francisco,94132,B08,19,8862,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7269499157185, -122.476039471265)",150912481-E19 +160951313,79,16037585,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:56:58 AM,04/04/2016 10:57:49 AM,04/04/2016 10:58:12 AM,04/04/2016 11:02:02 AM,04/04/2016 11:08:07 AM,04/04/2016 11:27:59 AM,04/04/2016 11:41:10 AM,Code 2 Transport,04/04/2016 12:16:08 PM,9TH AV/LINCOLN WY,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",160951313-79 +142951726,E11,14104021,Medical Incident,10/22/2014,10/22/2014,10/22/2014 12:58:50 PM,10/22/2014 12:59:37 PM,10/22/2014 01:00:00 PM,10/22/2014 01:01:22 PM,10/22/2014 01:02:51 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Code 2 Transport,10/22/2014 01:07:48 PM,1300 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7513004428428, -122.420654868929)",142951726-E11 +152060516,T02,15078367,Alarms,07/25/2015,07/24/2015,07/25/2015 03:59:43 AM,07/25/2015 03:59:43 AM,07/25/2015 04:01:29 AM,07/25/2015 04:02:59 AM,07/25/2015 04:07:44 AM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Fire,07/25/2015 04:12:52 AM,300 Block of POST ST,San Francisco,94108,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7883420975425, -122.407575452565)",152060516-T02 +160922732,KM04,16036539,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:27:33 PM,04/01/2016 05:27:33 PM,04/01/2016 05:28:19 PM,04/01/2016 05:28:48 PM,04/01/2016 05:38:28 PM,04/01/2016 05:53:44 PM,04/01/2016 06:04:26 PM,Code 2 Transport,04/01/2016 06:28:32 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160922732-KM04 +160942294,57,16037309,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:21:59 PM,04/03/2016 03:23:49 PM,04/03/2016 03:24:08 PM,04/03/2016 03:24:23 PM,04/03/2016 03:29:22 PM,04/03/2016 03:32:43 PM,04/03/2016 04:09:46 PM,Code 2 Transport,04/03/2016 04:21:44 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",160942294-57 +150621491,85,15023633,Medical Incident,03/03/2015,03/03/2015,03/03/2015 11:22:34 AM,03/03/2015 11:23:16 AM,03/03/2015 11:27:40 AM,03/03/2015 11:27:51 AM,03/03/2015 11:37:00 AM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Patient Declined Transport,03/03/2015 12:09:00 PM,TAYLOR ST/EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",150621491-85 +150011270,85,15000247,Medical Incident,01/01/2015,12/31/2014,01/01/2015 07:41:33 AM,01/01/2015 07:42:25 AM,01/01/2015 07:43:38 AM,01/01/2015 07:43:53 AM,01/01/2015 07:59:17 AM,01/01/2015 08:13:38 AM,01/01/2015 08:20:20 AM,Code 2 Transport,01/01/2015 08:51:56 AM,PAGE ST/DIVISADERO ST,San Francisco,94117,B05,21,4144,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",150011270-85 +143601763,KM11,14128818,Medical Incident,12/26/2014,12/26/2014,12/26/2014 03:16:32 PM,12/26/2014 03:17:37 PM,12/26/2014 03:19:07 PM,12/26/2014 03:20:31 PM,12/26/2014 03:30:01 PM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Medical Examiner,12/26/2014 04:25:23 PM,800 Block of 42ND AVE,San Francisco,94121,B07,34,7271,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7726678105606, -122.502536496797)",143601763-KM11 +141680762,E08,14057874,Citizen Assist / Service Call,06/17/2014,06/17/2014,06/17/2014 08:41:37 AM,06/17/2014 08:41:51 AM,06/17/2014 08:41:57 AM,06/17/2014 08:43:04 AM,06/17/2014 08:54:39 AM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/17/2014 09:59:53 AM,4TH ST/CHINA BASIN ST,San Francisco,94158,B03,8,2231,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7718971758313, -122.391284249119)",141680762-E08 +151003520,KM02,15038021,Medical Incident,04/10/2015,04/10/2015,04/10/2015 09:25:36 PM,04/10/2015 09:27:53 PM,04/10/2015 09:28:08 PM,04/10/2015 09:28:33 PM,04/10/2015 09:43:33 PM,04/10/2015 09:51:30 PM,04/10/2015 10:19:44 PM,Code 2 Transport,04/10/2015 10:55:14 PM,SUTTER ST/STOCKTON ST,San Francisco,94108,B01,1,1324,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",151003520-KM02 +151862015,E05,15071058,Medical Incident,07/05/2015,07/05/2015,07/05/2015 02:01:21 PM,07/05/2015 02:02:07 PM,07/05/2015 02:02:53 PM,07/05/2015 02:03:51 PM,07/05/2015 02:07:10 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Code 2 Transport,07/05/2015 02:18:33 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",151862015-E05 +141883646,E01,14065325,Medical Incident,07/07/2014,07/07/2014,07/07/2014 10:13:37 PM,07/07/2014 10:15:01 PM,07/07/2014 10:15:19 PM,07/07/2014 10:16:05 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/07/2014 10:39:10 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141883646-E01 +141970383,74,14068107,Medical Incident,07/16/2014,07/15/2014,07/16/2014 04:04:49 AM,07/16/2014 04:07:28 AM,07/16/2014 04:07:52 AM,07/16/2014 04:08:35 AM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,No Merit,07/16/2014 04:15:56 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",141970383-74 +160951846,KM09,16037634,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:03:29 PM,04/04/2016 01:04:18 PM,04/04/2016 01:05:05 PM,04/04/2016 01:05:56 PM,04/04/2016 01:16:58 PM,04/04/2016 01:27:04 PM,04/04/2016 01:53:56 PM,Code 2 Transport,04/04/2016 02:36:14 PM,2500 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6337,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7294190904862, -122.404411917151)",160951846-KM09 +142050868,74,14070888,Medical Incident,07/24/2014,07/24/2014,07/24/2014 08:30:32 AM,07/24/2014 08:31:10 AM,07/24/2014 08:32:05 AM,07/24/2014 08:32:24 AM,07/24/2014 08:42:59 AM,07/24/2014 09:14:47 AM,07/24/2014 09:44:50 AM,Code 2 Transport,07/24/2014 10:19:36 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",142050868-74 +142940776,E01,14103606,Structure Fire,10/21/2014,10/21/2014,10/21/2014 08:13:48 AM,10/21/2014 08:13:48 AM,10/21/2014 08:14:12 AM,10/21/2014 08:14:27 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/21/2014 08:16:25 AM,MASON ST/ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,2,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",142940776-E01 +160992920,52,16039412,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:03:50 PM,04/08/2016 06:06:46 PM,04/08/2016 06:06:58 PM,04/08/2016 06:07:07 PM,04/08/2016 06:13:55 PM,04/08/2016 06:24:10 PM,04/08/2016 06:37:22 PM,Code 3 Transport,04/08/2016 07:33:36 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160992920-52 +160963278,52,16038138,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:27:55 PM,04/05/2016 06:29:29 PM,04/05/2016 06:29:53 PM,04/05/2016 06:29:59 PM,04/05/2016 06:37:46 PM,04/05/2016 06:47:13 PM,04/05/2016 06:53:54 PM,Code 2 Transport,04/05/2016 07:16:45 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160963278-52 +142780148,59,14097649,Medical Incident,10/05/2014,10/04/2014,10/05/2014 12:38:10 AM,10/05/2014 12:40:22 AM,10/05/2014 12:40:44 AM,10/05/2014 12:40:49 AM,10/05/2014 12:52:19 AM,10/05/2014 12:59:45 AM,10/05/2014 01:22:18 AM,Code 3 Transport,10/05/2014 02:15:00 AM,JACKSON ST/TAYLOR ST,San Francisco,94108,B01,2,1443,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7951978162562, -122.413187771663)",142780148-59 +143471239,E13,14123735,Medical Incident,12/13/2014,12/13/2014,12/13/2014 10:08:16 AM,12/13/2014 10:08:49 AM,12/13/2014 10:09:00 AM,12/13/2014 10:10:07 AM,12/13/2014 10:16:08 AM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Code 2 Transport,12/13/2014 10:34:18 AM,500 Block of MISSION ST,San Francisco,94105,B03,35,2124,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7891181923442, -122.398488873746)",143471239-E13 +152540680,E12,15097002,Medical Incident,09/11/2015,09/10/2015,09/11/2015 07:40:17 AM,09/11/2015 07:41:52 AM,09/11/2015 07:42:12 AM,09/11/2015 07:43:34 AM,09/11/2015 07:46:42 AM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Code 2 Transport,09/11/2015 08:07:01 AM,500 Block of CORBETT AVE,San Francisco,94114,B05,24,5274,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7574340530806, -122.444098479895)",152540680-E12 +153024201,RS1,15116046,Traffic Collision,10/29/2015,10/29/2015,10/29/2015 11:57:16 PM,10/29/2015 11:58:46 PM,10/29/2015 11:59:04 PM,10/30/2015 12:01:24 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Gone on Arrival,10/30/2015 12:06:42 AM,100 Block of AVENUE C,San Francisco,94130,B02,29,2345,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",153024201-RS1 +152872914,E01,15110364,Medical Incident,10/14/2015,10/14/2015,10/14/2015 04:20:11 PM,10/14/2015 04:21:09 PM,10/14/2015 04:21:42 PM,10/14/2015 04:22:51 PM,10/14/2015 04:26:23 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 05:06:03 PM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",152872914-E01 +142660469,RC3,14092975,Medical Incident,09/23/2014,09/22/2014,09/23/2014 06:18:50 AM,09/23/2014 06:20:33 AM,09/23/2014 06:21:31 AM,09/23/2014 06:23:47 AM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Code 2 Transport,09/23/2014 06:24:13 AM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7120857687728, -122.445406512004)",142660469-RC3 +161002070,54,16039812,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:35:09 PM,04/09/2016 03:35:35 PM,04/09/2016 03:35:59 PM,04/09/2016 03:36:09 PM,04/09/2016 03:42:05 PM,04/09/2016 03:55:52 PM,04/09/2016 04:08:34 PM,Code 2 Transport,04/09/2016 04:46:49 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7675315414279, -122.428693725184)",161002070-54 +160981825,76,16038911,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 12:29:23 PM,04/07/2016 12:31:37 PM,04/07/2016 12:36:35 PM,04/07/2016 12:36:42 PM,04/07/2016 12:47:57 PM,04/07/2016 01:06:29 PM,04/07/2016 01:08:13 PM,Code 2 Transport,04/07/2016 01:22:51 PM,1800 Block of JACKSON ST,San Francisco,94109,B04,38,3252,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7936758446796, -122.425525660789)",160981825-76 +142220954,E18,14076999,Alarms,08/10/2014,08/10/2014,08/10/2014 09:37:03 AM,08/10/2014 09:37:51 AM,08/10/2014 09:38:20 AM,08/10/2014 09:39:22 AM,08/10/2014 09:44:00 AM,04/25/2016 01:15:44 PM,04/25/2016 01:15:44 PM,Patient Declined Transport,08/10/2014 09:50:45 AM,2500 Block of 27TH AVE,San Francisco,94116,B08,40,7466,3,3,3,true,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7398792433836, -122.483998495572)",142220954-E18 +152250421,E03,15085630,Medical Incident,08/13/2015,08/12/2015,08/13/2015 04:27:19 AM,08/13/2015 04:28:53 AM,08/13/2015 04:29:37 AM,08/13/2015 04:31:01 AM,08/13/2015 04:33:59 AM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Code 2 Transport,08/13/2015 04:36:26 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",152250421-E03 +160961782,74,16038011,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:51:23 PM,04/05/2016 12:53:04 PM,04/05/2016 12:55:34 PM,04/05/2016 12:55:41 PM,04/05/2016 01:01:30 PM,04/05/2016 01:23:59 PM,04/05/2016 01:35:18 PM,Code 2 Transport,04/05/2016 02:04:34 PM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160961782-74 +141580129,RS1,14054285,Medical Incident,06/07/2014,06/06/2014,06/07/2014 12:55:32 AM,06/07/2014 12:59:54 AM,06/07/2014 01:00:29 AM,06/07/2014 01:02:41 AM,06/07/2014 01:07:01 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Code 2 Transport,06/07/2014 01:16:39 AM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",141580129-RS1 +152521254,E03,15096278,Structure Fire,09/09/2015,09/09/2015,09/09/2015 10:09:11 AM,09/09/2015 10:09:15 AM,09/09/2015 10:11:26 AM,09/09/2015 10:11:26 AM,09/09/2015 10:12:40 AM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,Fire,09/09/2015 10:17:11 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",152521254-E03 +160982625,76,16039004,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:02:10 PM,04/07/2016 04:02:10 PM,04/07/2016 04:02:45 PM,04/07/2016 04:02:53 PM,04/07/2016 04:09:07 PM,04/07/2016 04:22:36 PM,04/07/2016 04:30:19 PM,Code 2 Transport,04/07/2016 04:52:17 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160982625-76 +141230138,E21,14041635,Structure Fire,05/03/2014,05/03/2014,05/03/2014 11:36:55 AM,05/03/2014 11:36:56 AM,05/03/2014 11:37:15 AM,05/03/2014 11:38:34 AM,05/03/2014 11:39:53 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Fire,05/03/2014 11:40:25 AM,DIVISADERO ST/PAGE ST,SAN FRANCISCO,94117,B05,21,4144,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",141230138-E21 +150583244,75,15022299,Medical Incident,02/27/2015,02/27/2015,02/27/2015 07:42:08 PM,02/27/2015 07:43:43 PM,02/27/2015 07:44:37 PM,02/27/2015 07:44:44 PM,02/27/2015 07:55:49 PM,02/27/2015 08:15:36 PM,04/25/2016 01:12:00 PM,Code 2 Transport,02/27/2015 08:57:34 PM,200 Block of ASHTON AVE,San Francisco,94112,B09,15,8434,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7224246331182, -122.462198993823)",150583244-75 +160983049,AM14,16039048,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:01:01 PM,04/07/2016 06:01:31 PM,04/07/2016 06:01:54 PM,04/07/2016 06:02:25 PM,04/07/2016 06:10:31 PM,04/07/2016 06:31:39 PM,04/07/2016 07:09:33 PM,Code 2 Transport,04/07/2016 07:16:26 PM,1400 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7901080617264, -122.420522075876)",160983049-AM14 +151721463,72,15065666,Medical Incident,06/21/2015,06/21/2015,06/21/2015 12:22:01 PM,06/21/2015 12:22:47 PM,06/21/2015 12:24:51 PM,06/21/2015 12:25:02 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Cancelled,06/21/2015 12:25:22 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",151721463-72 +142532321,KM10,14088343,Medical Incident,09/10/2014,09/10/2014,09/10/2014 03:00:00 PM,09/10/2014 03:01:48 PM,09/10/2014 03:34:12 PM,09/10/2014 03:34:31 PM,09/10/2014 03:45:50 PM,09/10/2014 03:55:50 PM,09/10/2014 04:02:11 PM,Code 2 Transport,09/10/2014 04:31:15 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",142532321-KM10 +151630084,E15,15062128,Alarms,06/12/2015,06/11/2015,06/12/2015 12:44:19 AM,06/12/2015 12:45:29 AM,06/12/2015 12:48:25 AM,06/12/2015 12:50:14 AM,06/12/2015 12:52:13 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/12/2015 01:02:59 AM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",151630084-E15 +150822413,E17,15031428,Medical Incident,03/23/2015,03/23/2015,03/23/2015 04:19:00 PM,03/23/2015 04:19:25 PM,03/23/2015 04:19:37 PM,03/23/2015 04:21:01 PM,03/23/2015 04:23:55 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Code 2 Transport,03/23/2015 04:36:05 PM,0 Block of REUEL CT,San Francisco,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",150822413-E17 +160963797,53,16038187,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:09:40 PM,04/05/2016 09:09:40 PM,04/05/2016 09:10:40 PM,04/05/2016 09:11:12 PM,04/05/2016 09:16:40 PM,04/05/2016 09:20:15 PM,04/05/2016 09:26:13 PM,Code 2 Transport,04/05/2016 10:12:29 PM,SUTTER ST/MASON ST,San Francisco,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.789016335554, -122.410242439308)",160963797-53 +151560910,E13,15059437,Medical Incident,06/05/2015,06/05/2015,06/05/2015 09:10:35 AM,06/05/2015 09:10:46 AM,06/05/2015 09:10:59 AM,06/05/2015 09:11:54 AM,06/05/2015 09:12:51 AM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Code 2 Transport,06/05/2015 09:26:55 AM,700 Block of WASHINGTON ST,San Francisco,94108,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.795117116509, -122.406249619336)",151560910-E13 +142700568,KM06,14094577,Medical Incident,09/27/2014,09/26/2014,09/27/2014 03:54:10 AM,09/27/2014 03:55:29 AM,09/27/2014 03:55:55 AM,09/27/2014 03:56:50 AM,09/27/2014 04:04:35 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Patient Declined Transport,09/27/2014 04:07:22 AM,0 Block of HOLYOKE ST,San Francisco,94134,B10,42,6356,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7304784247492, -122.410179434908)",142700568-KM06 +160973127,76,16038543,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:57:00 PM,04/06/2016 04:58:04 PM,04/06/2016 05:01:22 PM,04/06/2016 05:01:22 PM,04/06/2016 05:15:56 PM,04/06/2016 05:32:33 PM,04/06/2016 05:46:21 PM,Code 2 Transport,04/06/2016 05:56:36 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160973127-76 +160940328,70,16037128,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:52:06 AM,04/03/2016 01:52:06 AM,04/03/2016 01:58:29 AM,04/03/2016 01:58:41 AM,04/03/2016 02:10:17 AM,04/03/2016 02:27:16 AM,04/03/2016 02:33:52 AM,Code 2 Transport,04/03/2016 03:07:27 AM,1300 Block of GRANT AVE,San Francisco,94133,B01,28,1266,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.799231230896, -122.407369153529)",160940328-70 +141632438,86,14056261,Medical Incident,06/12/2014,06/12/2014,06/12/2014 05:03:49 PM,06/12/2014 05:03:49 PM,06/12/2014 05:17:19 PM,06/12/2014 05:17:29 PM,06/12/2014 05:43:40 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Patient Declined Transport,06/12/2014 05:57:51 PM,100 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7671915511213, -122.431221797415)",141632438-86 +160932096,76,16036902,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:50:15 PM,04/02/2016 02:51:36 PM,04/02/2016 02:51:54 PM,04/02/2016 02:52:01 PM,04/02/2016 02:58:20 PM,04/02/2016 03:04:15 PM,04/02/2016 03:11:12 PM,Code 2 Transport,04/02/2016 03:24:53 PM,3300 Block of 24TH ST,San Francisco,94110,B06,11,5525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7521761775715, -122.420379793048)",160932096-76 +161000916,75,16039675,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:00:32 AM,04/09/2016 09:00:48 AM,04/09/2016 09:01:05 AM,04/09/2016 09:02:36 AM,04/09/2016 09:13:17 AM,04/09/2016 09:35:01 AM,04/09/2016 09:53:55 AM,Other,04/09/2016 11:02:50 AM,TAYLOR ST/NORTH POINT ST,San Francisco,94133,B01,28,1433,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8063434294735, -122.415431571973)",161000916-75 +141362016,B01,14046594,Alarms,05/16/2014,05/16/2014,05/16/2014 02:50:53 PM,05/16/2014 02:52:05 PM,05/16/2014 02:52:57 PM,05/16/2014 02:53:40 PM,05/16/2014 03:06:26 PM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,Cancelled,05/16/2014 03:14:43 PM,900 Block of NORTH POINT ST,San Francisco,94109,B01,28,1623,3,3,3,false,Alarm,1,CHIEF,3,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",141362016-B01 +151002375,B01,15037905,Odor (Strange / Unknown),04/10/2015,04/10/2015,04/10/2015 04:12:10 PM,04/10/2015 04:15:29 PM,04/10/2015 04:15:49 PM,04/10/2015 04:16:53 PM,04/10/2015 04:20:19 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Fire,04/10/2015 04:23:02 PM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",151002375-B01 +142881775,E03,14101516,Medical Incident,10/15/2014,10/15/2014,10/15/2014 12:48:16 PM,10/15/2014 12:49:13 PM,10/15/2014 12:49:35 PM,10/15/2014 12:50:17 PM,10/15/2014 12:52:03 PM,10/15/2014 01:15:25 PM,04/25/2016 01:14:32 PM,Code 3 Transport,10/15/2014 01:32:41 PM,500 Block of POST ST,San Francisco,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.788031406746, -122.410889094263)",142881775-E03 +142001574,85,14069229,Medical Incident,07/19/2014,07/19/2014,07/19/2014 12:57:31 PM,07/19/2014 12:58:24 PM,07/19/2014 12:59:00 PM,07/19/2014 01:00:07 PM,07/19/2014 01:09:24 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,No Merit,07/19/2014 01:16:42 PM,5100 Block of MISSION ST,San Francisco,94112,B09,43,6175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7160781812918, -122.441227673446)",142001574-85 +150522714,E41,15020107,Medical Incident,02/21/2015,02/21/2015,02/21/2015 04:47:16 PM,02/21/2015 04:49:22 PM,02/21/2015 04:49:51 PM,02/21/2015 04:50:06 PM,02/21/2015 04:53:56 PM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Code 2 Transport,02/21/2015 04:54:28 PM,LARKIN ST/POST ST,San Francisco,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",150522714-E41 +160933837,AM14,16037074,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:00:00 PM,04/02/2016 11:01:39 PM,04/02/2016 11:02:57 PM,04/02/2016 11:03:38 PM,04/02/2016 11:09:39 PM,04/02/2016 11:26:22 PM,04/02/2016 11:42:55 PM,Code 2 Transport,04/02/2016 11:56:14 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160933837-AM14 +143161601,66,14111905,Medical Incident,11/12/2014,11/12/2014,11/12/2014 12:12:31 PM,11/12/2014 12:15:00 PM,11/12/2014 12:16:58 PM,11/12/2014 12:17:18 PM,11/12/2014 12:25:18 PM,11/12/2014 12:52:26 PM,11/12/2014 01:27:14 PM,Code 2 Transport,11/12/2014 01:53:55 PM,700 Block of 23RD AVE,San Francisco,94121,B07,14,7177,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7735976795866, -122.482185448619)",143161601-66 +152880400,E06,15110533,Medical Incident,10/15/2015,10/14/2015,10/15/2015 04:27:42 AM,10/15/2015 04:29:01 AM,10/15/2015 04:29:53 AM,10/15/2015 04:32:12 AM,10/15/2015 04:35:53 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/15/2015 04:37:42 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",152880400-E06 +142642233,T03,14092406,Alarms,09/21/2014,09/21/2014,09/21/2014 04:18:49 PM,09/21/2014 04:20:06 PM,09/21/2014 04:20:14 PM,09/21/2014 04:21:29 PM,09/21/2014 04:23:28 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Fire,09/21/2014 04:33:28 PM,1500 Block of VAN NESS AVE,San Francisco,94109,B04,38,3155,3,3,3,false,Alarm,1,TRUCK,1,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",142642233-T03 +160954168,60,16037835,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:47:13 PM,04/04/2016 11:48:35 PM,04/04/2016 11:49:27 PM,04/04/2016 11:49:40 PM,04/04/2016 11:56:00 PM,04/05/2016 12:13:59 AM,04/05/2016 12:30:00 AM,Code 2 Transport,04/05/2016 01:03:09 AM,3500 Block of 23RD ST,San Francisco,94110,B06,11,5512,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7536695909359, -122.422278418178)",160954168-60 +160973432,73,16038588,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:00:15 PM,04/06/2016 06:03:06 PM,04/06/2016 06:05:38 PM,04/06/2016 06:05:45 PM,04/06/2016 06:18:51 PM,04/06/2016 06:28:23 PM,04/06/2016 06:54:13 PM,Code 2 Transport,04/06/2016 07:23:32 PM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",160973432-73 +141030256,E12,14034842,Medical Incident,04/13/2014,04/13/2014,04/13/2014 04:55:24 PM,04/13/2014 04:56:29 PM,04/13/2014 04:58:16 PM,04/25/2016 01:17:54 PM,04/13/2014 04:59:46 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Code 2 Transport,04/13/2014 05:16:41 PM,800 Block of JUDAH ST,SAN FRANCISCO,94122,B08,22,7347,,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7620593970413, -122.471008400176)",141030256-E12 +151861746,E40,15071034,Structure Fire,07/05/2015,07/05/2015,07/05/2015 12:21:18 PM,07/05/2015 12:22:50 PM,07/05/2015 12:23:02 PM,07/05/2015 12:24:17 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 02:01:59 PM,2500 Block of 30TH AVE,San Francisco,94116,B08,18,7527,3,3,3,false,Alarm,1,ENGINE,8,8,4,Sunset/Parkside,"(37.7397313137846, -122.487350732756)",151861746-E40 +151311624,KM01,15049679,Medical Incident,05/11/2015,05/11/2015,05/11/2015 12:21:26 PM,05/11/2015 12:22:34 PM,05/11/2015 12:23:49 PM,05/11/2015 12:24:23 PM,05/11/2015 12:31:42 PM,05/11/2015 12:52:13 PM,05/11/2015 01:11:25 PM,Code 2 Transport,05/11/2015 01:54:00 PM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",151311624-KM01 +151860753,82,15070934,Medical Incident,07/05/2015,07/04/2015,07/05/2015 04:19:26 AM,07/05/2015 04:21:02 AM,07/05/2015 04:22:41 AM,07/05/2015 04:26:05 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Patient Declined Transport,07/05/2015 04:40:49 AM,100 Block of WINFIELD ST,San Francisco,94110,B06,32,5654,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7427271538355, -122.418363583753)",151860753-82 +150860372,KM07,15032716,Medical Incident,03/27/2015,03/26/2015,03/27/2015 04:40:12 AM,03/27/2015 04:41:20 AM,03/27/2015 04:41:46 AM,03/27/2015 04:42:18 AM,03/27/2015 04:48:06 AM,03/27/2015 04:58:05 AM,03/27/2015 05:05:19 AM,Code 2 Transport,03/27/2015 05:41:54 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",150860372-KM07 +141681462,E34,14057931,Administrative,06/17/2014,06/17/2014,06/17/2014 12:14:32 PM,06/17/2014 12:14:39 PM,06/17/2014 12:14:57 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Cancelled,06/17/2014 12:15:23 PM,400 Block of 41ST AVE,San Francisco,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",141681462-E34 +160923486,53,16036611,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:11:53 PM,04/01/2016 09:11:53 PM,04/01/2016 09:12:14 PM,04/01/2016 09:12:33 PM,04/01/2016 09:19:18 PM,04/01/2016 09:29:48 PM,04/01/2016 09:57:05 PM,Code 2 Transport,04/01/2016 10:28:19 PM,MISSION ST/GENEVA AV,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",160923486-53 +142021424,67,14069862,Medical Incident,07/21/2014,07/21/2014,07/21/2014 12:01:02 PM,07/21/2014 12:02:56 PM,07/21/2014 12:03:24 PM,07/21/2014 12:07:10 PM,07/21/2014 12:07:10 PM,07/21/2014 12:28:03 PM,07/21/2014 12:55:49 PM,Code 2 Transport,07/21/2014 01:21:37 PM,1200 Block of 5TH AVE,San Francisco,94122,B08,22,7325,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7646963394397, -122.461994155503)",142021424-67 +160962107,86,16038039,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:04:55 PM,04/05/2016 02:05:32 PM,04/05/2016 02:05:55 PM,04/05/2016 02:06:09 PM,04/05/2016 02:11:08 PM,04/05/2016 02:24:25 PM,04/05/2016 02:57:00 PM,Code 2 Transport,04/05/2016 03:37:33 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160962107-86 +160970543,52,16038289,Medical Incident,04/06/2016,04/05/2016,04/06/2016 06:44:25 AM,04/06/2016 06:45:39 AM,04/06/2016 06:46:00 AM,04/06/2016 06:46:13 AM,04/06/2016 06:58:03 AM,04/06/2016 07:13:26 AM,04/06/2016 07:44:31 AM,Code 2 Transport,04/06/2016 08:04:41 AM,3900 Block of 24TH ST,San Francisco,94114,B06,11,5522,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",160970543-52 +143033124,E19,14107217,Medical Incident,10/30/2014,10/30/2014,10/30/2014 05:59:10 PM,10/30/2014 05:59:42 PM,10/30/2014 06:00:16 PM,10/30/2014 06:01:42 PM,10/30/2014 06:04:02 PM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,Code 2 Transport,10/30/2014 06:33:39 PM,700 Block of JUNIPERO SERRA BLVD,San Francisco,94127,B09,19,8727,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7242258644878, -122.472362015086)",143033124-E19 +151493414,B06,15056847,Alarms,05/29/2015,05/29/2015,05/29/2015 07:27:46 PM,05/29/2015 07:29:19 PM,05/29/2015 07:29:27 PM,05/29/2015 07:30:29 PM,05/29/2015 07:31:48 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,Fire,05/29/2015 07:36:17 PM,0 Block of VICKSBURG ST,San Francisco,94114,B06,11,5514,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.754024451787, -122.428841355332)",151493414-B06 +142602882,KM10,14090960,Medical Incident,09/17/2014,09/17/2014,09/17/2014 06:08:45 PM,09/17/2014 06:09:29 PM,09/17/2014 06:09:54 PM,09/17/2014 06:10:36 PM,09/17/2014 06:23:44 PM,09/17/2014 06:37:45 PM,09/17/2014 06:58:41 PM,Code 3 Transport,09/17/2014 07:42:49 PM,300 Block of BEALE ST,San Francisco,94105,B03,35,2122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Financial District/South Beach,"(37.7880321954757, -122.392000314933)",142602882-KM10 +160992652,62,16039392,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:00:33 PM,04/08/2016 05:01:01 PM,04/08/2016 05:35:00 PM,04/08/2016 05:35:00 PM,04/08/2016 05:35:00 PM,04/08/2016 05:35:09 PM,04/08/2016 05:39:32 PM,Code 3 Transport,04/08/2016 06:47:24 PM,0 Block of HARRINGTON ST,San Francisco,94112,B09,43,6117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7256640493624, -122.435313776535)",160992652-62 +160973280,KM10,16038562,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:26:59 PM,04/06/2016 05:27:50 PM,04/06/2016 05:28:25 PM,04/06/2016 05:30:52 PM,04/06/2016 05:41:30 PM,04/06/2016 05:59:48 PM,04/06/2016 06:24:21 PM,Code 2 Transport,04/06/2016 07:01:46 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160973280-KM10 +160980472,52,16038779,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:38:22 AM,04/07/2016 04:41:57 AM,04/07/2016 04:42:20 AM,04/07/2016 04:42:31 AM,04/07/2016 04:50:08 AM,04/07/2016 05:11:34 AM,04/07/2016 05:31:46 AM,Code 3 Transport,04/07/2016 05:57:47 AM,1600 Block of WEBSTER ST,San Francisco,94115,B04,5,3513,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.785861209886, -122.431307648114)",160980472-52 +152803438,52,15107579,Medical Incident,10/07/2015,10/07/2015,10/07/2015 07:11:51 PM,10/07/2015 07:13:29 PM,10/07/2015 07:13:41 PM,10/07/2015 07:13:49 PM,10/07/2015 07:21:21 PM,10/07/2015 07:36:28 PM,10/07/2015 07:44:58 PM,Code 2 Transport,10/07/2015 08:07:25 PM,FREDERICK ST/MASONIC AV,San Francisco,94117,B05,12,5143,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7674258776099, -122.444731538905)",152803438-52 +141400220,T01,14047857,Structure Fire,05/20/2014,05/19/2014,05/20/2014 02:33:41 AM,05/20/2014 02:33:41 AM,05/20/2014 02:34:18 AM,05/20/2014 02:36:52 AM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,Fire,05/20/2014 02:38:29 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,false,Alarm,1,TRUCK,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",141400220-T01 +150573155,58,15021903,Medical Incident,02/26/2015,02/26/2015,02/26/2015 07:06:25 PM,02/26/2015 07:06:25 PM,02/26/2015 07:06:38 PM,02/26/2015 07:08:15 PM,02/26/2015 07:17:16 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,No Merit,02/26/2015 07:17:27 PM,ELLIS ST/LARKIN ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",150573155-58 +152730554,71,15104391,Citizen Assist / Service Call,09/30/2015,09/29/2015,09/30/2015 07:03:22 AM,09/30/2015 07:05:39 AM,09/30/2015 07:06:08 AM,09/30/2015 07:06:16 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 07:07:09 AM,2000 Block of POST ST,San Francisco,94115,B04,5,3622,3,3,3,true,Alarm,1,MEDIC,3,4,5,Japantown,"(37.7848942765225, -122.435560105122)",152730554-71 +160963710,78,16038180,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:36:14 PM,04/05/2016 08:38:57 PM,04/05/2016 08:39:07 PM,04/05/2016 08:39:55 PM,04/05/2016 08:47:25 PM,04/05/2016 09:15:49 PM,04/05/2016 09:28:20 PM,Code 2 Transport,04/05/2016 10:02:31 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7580927749863, -122.414684745414)",160963710-78 +141281753,T05,14043528,Structure Fire,05/08/2014,05/08/2014,05/08/2014 01:09:56 PM,05/08/2014 01:09:56 PM,05/08/2014 01:10:31 PM,05/08/2014 01:13:21 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Fire,05/08/2014 01:19:02 PM,1200 Block of MARKET ST,San Francisco,94103,B02,36,2337,3,3,3,false,Alarm,1,TRUCK,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",141281753-T05 +150892142,E07,15034002,Medical Incident,03/30/2015,03/30/2015,03/30/2015 03:16:03 PM,03/30/2015 03:16:56 PM,03/30/2015 03:17:30 PM,03/30/2015 03:18:02 PM,03/30/2015 03:19:26 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Code 2 Transport,03/30/2015 03:29:22 PM,600 Block of ALABAMA ST,San Francisco,94110,B02,7,5426,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7610105720239, -122.411919466827)",150892142-E07 +151353450,57,15051431,Medical Incident,05/15/2015,05/15/2015,05/15/2015 08:09:52 PM,05/15/2015 08:09:52 PM,05/15/2015 08:10:11 PM,05/15/2015 08:10:18 PM,05/15/2015 08:16:24 PM,05/15/2015 08:26:32 PM,05/15/2015 08:31:31 PM,Code 2 Transport,05/15/2015 08:57:45 PM,VAN NESS AV/WILLOW ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.783352075343, -122.420977126256)",151353450-57 +160980839,KM09,16038813,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:09:55 AM,04/07/2016 08:09:55 AM,04/07/2016 08:10:55 AM,04/07/2016 08:12:50 AM,04/07/2016 08:21:00 AM,04/07/2016 08:49:50 AM,04/07/2016 09:21:54 AM,Code 2 Transport,04/07/2016 10:04:15 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",160980839-KM09 +143470699,E02,14123679,Medical Incident,12/13/2014,12/12/2014,12/13/2014 06:07:23 AM,12/13/2014 06:08:16 AM,12/13/2014 06:08:30 AM,12/13/2014 06:11:29 AM,12/13/2014 06:12:05 AM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Code 2 Transport,12/13/2014 06:22:37 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",143470699-E02 +142910139,E03,14102472,Medical Incident,10/18/2014,10/17/2014,10/18/2014 12:37:05 AM,10/18/2014 12:40:26 AM,10/18/2014 12:41:02 AM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 2 Transport,10/18/2014 12:43:50 AM,POLK ST/OLIVE ST,San Francisco,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7845008428925, -122.419454544987)",142910139-E03 +160990910,67,16039230,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:13:44 AM,04/08/2016 09:17:08 AM,04/08/2016 09:19:14 AM,04/08/2016 09:20:10 AM,04/08/2016 09:34:51 AM,04/08/2016 09:45:58 AM,04/08/2016 10:09:09 AM,Code 2 Transport,04/08/2016 10:43:44 AM,1300 Block of 24TH AVE,San Francisco,94122,B08,22,7451,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7623920631346, -122.48248639415)",160990910-67 +152871816,54,15110247,Medical Incident,10/14/2015,10/14/2015,10/14/2015 12:04:12 PM,10/14/2015 12:06:42 PM,10/14/2015 12:06:48 PM,10/14/2015 12:07:07 PM,10/14/2015 12:15:54 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Patient Declined Transport,10/14/2015 12:47:44 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",152871816-54 +151490121,E08,15056541,Medical Incident,05/29/2015,05/28/2015,05/29/2015 01:01:13 AM,05/29/2015 01:01:53 AM,05/29/2015 01:02:41 AM,05/29/2015 01:04:39 AM,05/29/2015 01:06:31 AM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Code 2 Transport,05/29/2015 01:08:40 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151490121-E08 +141120152,E11,14037763,Medical Incident,04/22/2014,04/22/2014,04/22/2014 11:08:38 AM,04/22/2014 11:11:25 AM,04/22/2014 11:11:45 AM,04/22/2014 11:12:55 AM,04/22/2014 11:15:00 AM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Code 2 Transport,04/22/2014 11:36:40 AM,100 Block of COLERIDGE ST,SAN FRANCISCO,94110,B06,11,5662,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",141120152-E11 +150820441,RS2,15031278,Medical Incident,03/23/2015,03/22/2015,03/23/2015 06:38:49 AM,03/23/2015 06:39:35 AM,03/23/2015 06:40:11 AM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Code 2 Transport,03/23/2015 06:41:36 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,8,Mission,"(37.7621357066004, -122.421689426887)",150820441-RS2 +160980750,65,16038805,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:36:34 AM,04/07/2016 07:37:12 AM,04/07/2016 07:38:16 AM,04/07/2016 07:38:28 AM,04/07/2016 07:42:24 AM,04/07/2016 07:54:21 AM,04/07/2016 08:17:13 AM,Code 2 Transport,04/07/2016 08:46:41 AM,0 Block of RIZAL ST,San Francisco,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.781822111031, -122.399291985556)",160980750-65 +143523566,E48,14125915,Medical Incident,12/18/2014,12/18/2014,12/18/2014 08:17:08 PM,12/18/2014 08:17:49 PM,12/18/2014 08:18:38 PM,12/18/2014 08:22:02 PM,12/18/2014 08:22:48 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Code 2 Transport,12/18/2014 08:59:23 PM,1200 Block of EXPOSITION DR,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8294056262544, -122.371894601737)",143523566-E48 +141220369,E09,14041476,Medical Incident,05/02/2014,05/02/2014,05/02/2014 08:59:21 PM,05/02/2014 09:00:59 PM,05/02/2014 09:01:27 PM,05/02/2014 09:03:15 PM,05/02/2014 09:05:40 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Code 2 Transport,05/02/2014 09:28:14 PM,1400 Block of INNES AVE,SAN FRANCISCO,94124,B10,25,6532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7378257783717, -122.386265458341)",141220369-E09 +142692834,KM06,14094389,Medical Incident,09/26/2014,09/26/2014,09/26/2014 05:14:09 PM,09/26/2014 05:16:04 PM,09/26/2014 05:26:40 PM,09/26/2014 05:27:28 PM,09/26/2014 05:41:04 PM,09/26/2014 06:05:28 PM,09/26/2014 06:28:03 PM,Code 2 Transport,09/26/2014 07:07:02 PM,6400 Block of FULTON ST,San Francisco,94121,B07,34,7262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7718666971206, -122.500796603773)",142692834-KM06 +141352371,E06,14046218,Structure Fire,05/15/2014,05/15/2014,05/15/2014 03:23:17 PM,05/15/2014 03:23:17 PM,05/15/2014 03:24:46 PM,05/15/2014 03:25:28 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/15/2014 03:26:52 PM,FILLMORE ST/TURK ST,San Francisco,94115,B02,6,3525,3,3,3,false,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",141352371-E06 +150032191,RC1,15001161,Medical Incident,01/03/2015,01/03/2015,01/03/2015 03:59:26 PM,01/03/2015 03:59:26 PM,01/03/2015 04:34:43 PM,01/03/2015 04:36:07 PM,01/03/2015 04:36:07 PM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Code 3 Transport,01/03/2015 04:41:28 PM,6TH ST/JESSIE ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",150032191-RC1 +152394297,77,15091247,Medical Incident,08/27/2015,08/27/2015,08/27/2015 11:35:30 PM,08/27/2015 11:38:36 PM,08/27/2015 11:40:14 PM,08/27/2015 11:40:14 PM,08/27/2015 11:40:58 PM,08/27/2015 11:59:02 PM,08/28/2015 12:03:18 AM,Code 2 Transport,08/28/2015 12:34:15 AM,MARKET ST/MASON ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",152394297-77 +152051434,77,15078037,Medical Incident,07/24/2015,07/24/2015,07/24/2015 11:09:05 AM,07/24/2015 11:09:34 AM,07/24/2015 11:10:47 AM,07/24/2015 11:12:39 AM,07/24/2015 11:17:22 AM,07/24/2015 11:33:34 AM,07/24/2015 11:57:02 AM,Code 2 Transport,07/24/2015 12:30:44 PM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",152051434-77 +141682793,E06,14058049,Structure Fire,06/17/2014,06/17/2014,06/17/2014 06:24:57 PM,06/17/2014 06:25:24 PM,06/17/2014 06:25:42 PM,06/17/2014 06:26:53 PM,06/17/2014 06:29:15 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Fire,06/17/2014 06:29:26 PM,0 Block of DUBOCE AVE,San Francisco,94103,B02,36,5124,3,3,3,false,Alarm,1,ENGINE,1,2,9,Mission,"(37.7698769653623, -122.420425746328)",141682793-E06 +160930121,71,16036677,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:46:41 AM,04/02/2016 12:46:41 AM,04/02/2016 12:48:41 AM,04/02/2016 12:48:47 AM,04/02/2016 12:54:22 AM,04/02/2016 01:12:45 AM,04/02/2016 01:28:00 AM,Code 2 Transport,04/02/2016 02:09:55 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160930121-71 +153423760,60,15131778,Medical Incident,12/08/2015,12/08/2015,12/08/2015 09:29:33 PM,12/08/2015 09:31:24 PM,12/08/2015 09:31:30 PM,12/08/2015 09:31:39 PM,12/08/2015 09:36:08 PM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Patient Declined Transport,12/08/2015 10:22:22 PM,1400 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7497103478042, -122.420361382102)",153423760-60 +142361358,KM09,14082025,Medical Incident,08/24/2014,08/24/2014,08/24/2014 10:27:12 AM,08/24/2014 10:27:42 AM,08/24/2014 10:27:58 AM,08/24/2014 10:28:39 AM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,Other,08/24/2014 10:35:16 AM,100 Block of POWELL ST,San Francisco,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",142361358-KM09 +150751048,55,15028719,Medical Incident,03/16/2015,03/16/2015,03/16/2015 10:00:36 AM,03/16/2015 10:01:40 AM,03/16/2015 10:04:02 AM,03/16/2015 10:04:02 AM,03/16/2015 10:04:02 AM,03/16/2015 10:22:00 AM,03/16/2015 10:46:16 AM,Code 2 Transport,03/16/2015 11:16:25 AM,14TH ST/MISSION ST,San Francisco,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7682736543413, -122.419981513232)",150751048-55 +141931355,E35,14066911,Medical Incident,07/12/2014,07/12/2014,07/12/2014 11:54:44 AM,07/12/2014 11:56:53 AM,07/12/2014 11:57:41 AM,07/12/2014 12:00:34 PM,07/12/2014 12:00:34 PM,04/25/2016 01:16:15 PM,04/25/2016 01:16:15 PM,Code 2 Transport,07/12/2014 12:20:36 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",141931355-E35 +161003748,68,16039999,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:58:20 PM,04/10/2016 12:00:04 AM,04/10/2016 12:00:27 AM,04/10/2016 12:00:54 AM,04/10/2016 12:08:50 AM,04/10/2016 12:20:16 AM,04/10/2016 12:30:33 AM,Code 2 Transport,04/10/2016 01:09:33 AM,GUERRERO ST/MARKET ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7707477455746, -122.424852598702)",161003748-68 +151482631,E37,15056416,Administrative,05/28/2015,05/28/2015,05/28/2015 05:17:58 PM,05/28/2015 05:18:09 PM,05/28/2015 05:24:16 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Fire,05/28/2015 05:24:46 PM,700 Block of WISCONSIN ST,San Francisco,94107,B10,37,2521,3,3,3,false,,1,ENGINE,1,10,10,Potrero Hill,"(37.7585715950261, -122.399129212862)",151482631-E37 +150552185,E29,15021147,Medical Incident,02/24/2015,02/24/2015,02/24/2015 02:27:07 PM,02/24/2015 02:29:08 PM,02/24/2015 02:29:58 PM,02/24/2015 02:31:16 PM,02/24/2015 02:34:49 PM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,No Merit,02/24/2015 02:50:03 PM,1300 Block of MINNA ST,San Francisco,94103,B02,36,5215,3,3,3,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7675150681632, -122.419217320585)",150552185-E29 +141512831,E33,14051989,Medical Incident,05/31/2014,05/31/2014,05/31/2014 07:12:20 PM,05/31/2014 07:14:50 PM,05/31/2014 07:15:14 PM,05/31/2014 07:17:00 PM,05/31/2014 07:36:45 PM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Code 2 Transport,05/31/2014 07:39:45 PM,0 Block of BYXBEE ST,San Francisco,94132,B09,33,8417,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7151871141115, -122.469877273583)",141512831-E33 +152072922,78,15078990,Medical Incident,07/26/2015,07/26/2015,07/26/2015 06:21:46 PM,07/26/2015 06:22:33 PM,07/26/2015 06:23:42 PM,07/26/2015 06:24:31 PM,07/26/2015 06:34:10 PM,07/26/2015 06:56:04 PM,07/26/2015 07:13:25 PM,Code 2 Transport,07/26/2015 08:05:35 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",152072922-78 +151131478,89,15042670,Medical Incident,04/23/2015,04/23/2015,04/23/2015 11:31:55 AM,04/23/2015 11:33:24 AM,04/23/2015 11:33:49 AM,04/23/2015 11:34:23 AM,04/23/2015 11:38:55 AM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,No Merit,04/23/2015 11:41:40 AM,JONES ST/SUTTER ST,San Francisco,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7885982027896, -122.413541442382)",151131478-89 +142240134,B04,14077579,Alarms,08/12/2014,08/11/2014,08/12/2014 01:14:52 AM,08/12/2014 01:16:13 AM,08/12/2014 01:16:52 AM,08/12/2014 01:18:35 AM,08/12/2014 01:21:17 AM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Fire,08/12/2014 01:25:06 AM,1800 Block of JACKSON ST,San Francisco,94109,B04,38,3252,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7936758446796, -122.425525660789)",142240134-B04 +142853144,T07,14100564,Alarms,10/12/2014,10/12/2014,10/12/2014 06:49:54 PM,10/12/2014 06:51:11 PM,10/12/2014 06:54:02 PM,10/12/2014 06:54:02 PM,10/12/2014 06:54:02 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/12/2014 06:55:20 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",142853144-T07 +150833565,E18,15031860,Traffic Collision,03/24/2015,03/24/2015,03/24/2015 08:49:59 PM,03/24/2015 08:56:16 PM,03/24/2015 08:56:43 PM,03/24/2015 08:57:52 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,Code 2 Transport,03/24/2015 08:58:38 PM,37TH AV/ANZA ST,San Francisco,94121,B07,34,7255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7775793711275, -122.4974545237)",150833565-E18 +141100008,E19,14036966,Medical Incident,04/20/2014,04/19/2014,04/20/2014 12:23:39 AM,04/20/2014 12:23:39 AM,04/20/2014 12:24:07 AM,04/20/2014 12:26:11 AM,04/20/2014 12:29:01 AM,04/20/2014 12:42:33 AM,04/25/2016 01:17:47 PM,Code 3 Transport,04/20/2014 01:03:39 AM,200 Block of GONZALEZ DR,SAN FRANCISCO,94132,B08,19,8423,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7170812139508, -122.475545858001)",141100008-E19 +143231825,RWC2,14114373,Water Rescue,11/19/2014,11/19/2014,11/19/2014 02:18:40 PM,11/19/2014 02:19:57 PM,11/19/2014 02:20:41 PM,11/19/2014 02:23:46 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Code 2 Transport,11/19/2014 03:52:43 PM,0 Block of YACHT RD,San Francisco,94123,B04,16,4215,3,3,3,false,Fire,1,SUPPORT,10,None,2,Marina,"(37.8067582085576, -122.446916219003)",143231825-RWC2 +153263502,E17,15125668,Medical Incident,11/22/2015,11/22/2015,11/22/2015 10:32:59 PM,11/22/2015 10:34:42 PM,11/22/2015 10:54:11 PM,11/22/2015 10:56:12 PM,11/22/2015 10:59:33 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,Code 3 Transport,11/23/2015 12:24:28 AM,200 Block of CASHMERE ST,San Francisco,94124,B10,17,6517,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7362537955292, -122.387097160369)",153263502-E17 +160923833,68,16036639,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:41:36 PM,04/01/2016 10:43:08 PM,04/01/2016 10:43:26 PM,04/01/2016 10:43:53 PM,04/01/2016 10:49:33 PM,04/01/2016 11:00:32 PM,04/01/2016 11:18:09 PM,Code 2 Transport,04/02/2016 12:00:17 AM,300 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6374,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",160923833-68 +150400363,82,15015467,Medical Incident,02/09/2015,02/08/2015,02/09/2015 05:49:02 AM,02/09/2015 05:52:05 AM,02/09/2015 05:53:07 AM,02/09/2015 05:53:16 AM,02/09/2015 06:09:52 AM,02/09/2015 06:27:39 AM,02/09/2015 06:27:58 AM,Code 2 Transport,02/09/2015 07:26:21 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",150400363-82 +160982722,66,16039016,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:24:20 PM,04/07/2016 04:24:20 PM,04/07/2016 04:50:17 PM,04/07/2016 04:53:38 PM,04/07/2016 05:15:32 PM,04/07/2016 05:34:25 PM,04/07/2016 06:01:37 PM,Code 2 Transport,04/07/2016 06:30:33 PM,2200 Block of LOMBARD ST,San Francisco,94123,B04,16,3566,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7994131607449, -122.438492113191)",160982722-66 +150571872,56,15021797,Medical Incident,02/26/2015,02/26/2015,02/26/2015 01:35:09 PM,02/26/2015 01:35:45 PM,02/26/2015 01:36:05 PM,02/26/2015 01:36:20 PM,02/26/2015 01:43:35 PM,02/26/2015 02:04:31 PM,02/26/2015 02:21:25 PM,Code 2 Transport,02/26/2015 03:05:03 PM,2900 Block of LAKE ST,San Francisco,94121,B07,14,7236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7853244831421, -122.491853669474)",150571872-56 +160961106,53,16037946,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:04:11 AM,04/05/2016 10:07:46 AM,04/05/2016 10:10:13 AM,04/05/2016 10:10:23 AM,04/05/2016 10:15:57 AM,04/05/2016 10:19:49 AM,04/05/2016 10:52:04 AM,Code 2 Transport,04/05/2016 11:27:54 AM,800 Block of 41ST AVE,San Francisco,94121,B07,34,7262,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7727231931217, -122.501326131419)",160961106-53 +153432778,E44,15132095,Medical Incident,12/09/2015,12/09/2015,12/09/2015 04:50:16 PM,12/09/2015 04:50:39 PM,12/09/2015 04:51:43 PM,12/09/2015 04:52:45 PM,12/09/2015 04:57:00 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 05:21:33 PM,500 Block of SAWYER ST,San Francisco,94134,B09,44,6251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7106565875609, -122.415453077343)",153432778-E44 +160922116,63,16036476,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 02:54:35 PM,04/01/2016 02:54:35 PM,04/01/2016 02:55:35 PM,04/01/2016 02:55:35 PM,04/01/2016 02:59:14 PM,04/01/2016 03:12:49 PM,04/01/2016 03:42:49 PM,Code 2 Transport,04/01/2016 03:55:55 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",160922116-63 +160953982,52,16037815,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:28:13 PM,04/04/2016 10:29:34 PM,04/04/2016 10:29:54 PM,04/04/2016 10:30:03 PM,04/04/2016 10:35:48 PM,04/04/2016 10:59:28 PM,04/04/2016 11:06:33 PM,Code 3 Transport,04/04/2016 11:42:22 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160953982-52 +161001060,AM02,16039691,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:56:25 AM,04/09/2016 09:56:53 AM,04/09/2016 09:57:02 AM,04/09/2016 09:57:40 AM,04/09/2016 10:08:04 AM,04/09/2016 10:24:34 AM,04/09/2016 10:43:28 AM,Code 2 Transport,04/09/2016 11:14:35 AM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",161001060-AM02 +160922854,75,16036548,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:52:13 PM,04/01/2016 05:52:58 PM,04/01/2016 05:54:16 PM,04/01/2016 05:54:22 PM,04/01/2016 06:04:11 PM,04/01/2016 06:17:04 PM,04/01/2016 06:32:50 PM,Code 2 Transport,04/01/2016 07:13:36 PM,3RD ST/NEWCOMB AV,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",160922854-75 +160961612,55,16037993,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:07:31 PM,04/05/2016 12:08:48 PM,04/05/2016 12:09:01 PM,04/05/2016 12:09:58 PM,04/05/2016 12:13:34 PM,04/05/2016 12:26:06 PM,04/05/2016 12:38:24 PM,Code 2 Transport,04/05/2016 01:11:32 PM,300 Block of MADRID ST,San Francisco,94112,B09,43,6133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7239178664447, -122.430983870604)",160961612-55 +152830371,58,15108514,Medical Incident,10/10/2015,10/09/2015,10/10/2015 02:08:44 AM,10/10/2015 02:11:34 AM,10/10/2015 02:12:07 AM,10/10/2015 02:13:52 AM,10/10/2015 02:17:51 AM,10/10/2015 02:20:58 AM,10/10/2015 02:29:25 AM,Code 2 Transport,10/10/2015 03:03:49 AM,MISSION ST/14TH ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",152830371-58 +142732669,E13,14095793,Medical Incident,09/30/2014,09/30/2014,09/30/2014 04:57:16 PM,09/30/2014 04:57:54 PM,09/30/2014 04:58:26 PM,09/30/2014 04:59:29 PM,09/30/2014 05:02:17 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Code 2 Transport,09/30/2014 05:19:12 PM,1000 Block of THE EMBARCADERO,San Francisco,94111,B01,13,927,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",142732669-E13 +141341451,E03,14045685,Medical Incident,05/14/2014,05/14/2014,05/14/2014 11:13:03 AM,05/14/2014 11:14:16 AM,05/14/2014 11:15:48 AM,05/14/2014 11:16:04 AM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Code 2 Transport,05/14/2014 11:20:29 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",141341451-E03 +143610233,E01,14128997,Medical Incident,12/27/2014,12/26/2014,12/27/2014 02:01:42 AM,12/27/2014 02:02:41 AM,12/27/2014 02:03:45 AM,12/27/2014 02:05:37 AM,12/27/2014 02:08:54 AM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Code 2 Transport,12/27/2014 02:13:37 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",143610233-E01 +160981462,65,16038875,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:03:48 AM,04/07/2016 11:05:33 AM,04/07/2016 11:08:48 AM,04/07/2016 11:08:54 AM,04/07/2016 11:20:28 AM,04/07/2016 11:29:39 AM,04/07/2016 11:41:35 AM,Code 2 Transport,04/07/2016 12:19:44 PM,0 Block of LELAND AVE,San Francisco,94134,B10,44,6255,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7113387848327, -122.404262861765)",160981462-65 +160921507,53,16036421,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:06:55 PM,04/01/2016 12:09:20 PM,04/01/2016 12:09:34 PM,04/01/2016 12:11:01 PM,04/01/2016 12:19:54 PM,04/01/2016 12:48:56 PM,04/01/2016 01:21:13 PM,Code 2 Transport,04/01/2016 01:49:03 PM,41ST AV/FULTON ST,San Francisco,94122,B07,34,7262,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7717874120927, -122.501327709306)",160921507-53 +142182817,T13,14075673,Elevator / Escalator Rescue,08/06/2014,08/06/2014,08/06/2014 05:04:46 PM,08/06/2014 05:06:35 PM,08/06/2014 05:08:07 PM,08/06/2014 05:09:50 PM,08/06/2014 05:11:42 PM,04/25/2016 01:15:49 PM,04/25/2016 01:15:49 PM,Fire,08/06/2014 05:57:15 PM,900 Block of MONTGOMERY ST,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.7975870868314, -122.403804875894)",142182817-T13 +150283514,KM07,15010926,Medical Incident,01/28/2015,01/28/2015,01/28/2015 08:44:32 PM,01/28/2015 08:45:36 PM,01/28/2015 08:46:40 PM,01/28/2015 08:47:21 PM,01/28/2015 08:56:26 PM,01/28/2015 09:14:18 PM,01/28/2015 09:21:22 PM,Code 2 Transport,01/28/2015 09:54:52 PM,800 Block of 28TH AVE,San Francisco,94121,B07,14,7223,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7733534217521, -122.487535190044)",150283514-KM07 +160992452,AM16,16039377,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:07:07 PM,04/08/2016 04:09:18 PM,04/08/2016 04:09:52 PM,04/08/2016 04:10:36 PM,04/08/2016 04:13:09 PM,04/08/2016 04:27:23 PM,04/08/2016 04:55:47 PM,Code 2 Transport,04/08/2016 05:10:57 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160992452-AM16 +160952064,KM05,16037656,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:56:35 PM,04/04/2016 01:57:15 PM,04/04/2016 01:57:47 PM,04/04/2016 01:59:54 PM,04/04/2016 02:04:12 PM,04/04/2016 02:20:55 PM,04/04/2016 02:34:55 PM,Code 2 Transport,04/04/2016 03:02:28 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160952064-KM05 +150791363,E44,15030255,Medical Incident,03/20/2015,03/20/2015,03/20/2015 11:29:10 AM,03/20/2015 11:30:35 AM,03/20/2015 11:30:52 AM,03/20/2015 11:31:13 AM,03/20/2015 11:39:58 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,No Merit,03/20/2015 12:23:03 PM,1200 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7211257483752, -122.389791072632)",150791363-E44 +143153214,E35,14111716,Alarms,11/11/2014,11/11/2014,11/11/2014 08:56:28 PM,11/11/2014 08:57:32 PM,11/11/2014 08:58:57 PM,11/11/2014 09:00:04 PM,11/11/2014 09:01:43 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Fire,11/11/2014 09:10:49 PM,0 Block of FOLSOM ST,San Francisco,94105,B03,35,2112,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7904750361645, -122.39055604599)",143153214-E35 +150300344,E11,15011432,Medical Incident,01/30/2015,01/29/2015,01/30/2015 03:17:43 AM,01/30/2015 03:19:06 AM,01/30/2015 03:19:25 AM,01/30/2015 03:21:11 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Code 2 Transport,01/30/2015 03:22:43 AM,26TH ST/MISSION ST,San Francisco,94110,B06,11,5613,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",150300344-E11 +160992148,54,16039342,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:59:31 PM,04/08/2016 02:59:31 PM,04/08/2016 03:08:54 PM,04/08/2016 03:09:42 PM,04/08/2016 03:26:00 PM,04/08/2016 03:33:15 PM,04/08/2016 04:19:18 PM,Code 2 Transport,04/08/2016 04:43:12 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160992148-54 +161002215,52,16039829,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:17:33 PM,04/09/2016 04:19:08 PM,04/09/2016 04:19:23 PM,04/09/2016 04:19:29 PM,04/09/2016 04:27:48 PM,04/09/2016 04:47:14 PM,04/09/2016 05:07:54 PM,Code 2 Transport,04/09/2016 05:41:38 PM,0 Block of NIAGARA AVE,San Francisco,94112,B09,15,8333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7162328374833, -122.44261036378)",161002215-52 +160971067,60,16038346,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:30:06 AM,04/06/2016 09:31:37 AM,04/06/2016 09:31:51 AM,04/06/2016 09:32:29 AM,04/06/2016 09:39:48 AM,04/06/2016 10:12:47 AM,04/06/2016 10:43:40 AM,Code 2 Transport,04/06/2016 11:32:39 AM,1500 Block of 22ND AVE,San Francisco,94122,B08,22,7447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7587548266251, -122.480079443397)",160971067-60 +141512944,E03,14052005,Medical Incident,05/31/2014,05/31/2014,05/31/2014 07:49:08 PM,05/31/2014 07:52:25 PM,05/31/2014 07:53:08 PM,05/31/2014 07:57:00 PM,05/31/2014 07:57:13 PM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Code 2 Transport,05/31/2014 08:02:22 PM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",141512944-E03 +143223421,73,14114167,Medical Incident,11/18/2014,11/18/2014,11/18/2014 08:36:11 PM,11/18/2014 08:38:02 PM,11/18/2014 08:39:35 PM,11/18/2014 08:39:49 PM,11/18/2014 08:46:12 PM,11/18/2014 09:07:05 PM,11/18/2014 09:12:28 PM,Code 2 Transport,11/18/2014 09:55:08 PM,1200 Block of 3RD AVE,San Francisco,94122,B05,12,7324,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.765714323066, -122.459915622619)",143223421-73 +160962969,AM08,16038113,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:21:45 PM,04/05/2016 05:24:28 PM,04/05/2016 05:24:44 PM,04/05/2016 05:25:14 PM,04/05/2016 05:30:03 PM,04/05/2016 05:57:57 PM,04/05/2016 06:02:41 PM,Code 3 Transport,04/05/2016 06:40:30 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160962969-AM08 +160953606,81,16037791,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:34:54 PM,04/04/2016 08:36:16 PM,04/04/2016 08:53:34 PM,04/04/2016 08:53:43 PM,04/04/2016 09:01:10 PM,04/04/2016 09:17:32 PM,04/04/2016 09:33:28 PM,Code 2 Transport,04/04/2016 09:56:47 PM,300 Block of HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7839909656227, -122.415908808889)",160953606-81 +151121662,79,15042306,Medical Incident,04/22/2015,04/22/2015,04/22/2015 12:03:53 PM,04/22/2015 12:03:53 PM,04/22/2015 12:06:27 PM,04/22/2015 12:06:46 PM,04/22/2015 12:27:08 PM,04/22/2015 12:42:03 PM,04/22/2015 12:57:04 PM,Code 2 Transport,04/22/2015 01:39:46 PM,UNION ST/FRANKLIN ST,San Francisco,94123,B04,16,3233,2,2,2,false,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7983435358641, -122.42562550508)",151121662-79 +152543642,RC3,15097308,Medical Incident,09/11/2015,09/11/2015,09/11/2015 09:15:02 PM,09/11/2015 09:15:47 PM,09/11/2015 09:16:11 PM,09/11/2015 09:17:23 PM,09/11/2015 09:20:54 PM,09/11/2015 09:27:39 PM,04/25/2016 01:08:24 PM,Code 3 Transport,09/11/2015 09:42:51 PM,25TH ST/HARRISON ST,San Francisco,94110,B06,7,5533,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7510338955654, -122.411746226036)",152543642-RC3 +152464055,T05,15094028,Alarms,09/03/2015,09/03/2015,09/03/2015 10:18:39 PM,09/03/2015 10:20:28 PM,09/03/2015 10:20:49 PM,09/03/2015 10:22:47 PM,09/03/2015 10:23:48 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Fire,09/03/2015 10:42:12 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Alarm,1,TRUCK,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",152464055-T05 +160983744,60,16039115,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:26:49 PM,04/07/2016 09:30:17 PM,04/07/2016 09:30:48 PM,04/07/2016 09:31:00 PM,04/07/2016 09:41:32 PM,04/07/2016 09:59:55 PM,04/07/2016 10:10:47 PM,Code 2 Transport,04/07/2016 10:50:34 PM,900 Block of THE EMBARCADERO,San Francisco,94111,B01,13,923,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",160983744-60 +143010574,E14,14106160,Medical Incident,10/28/2014,10/27/2014,10/28/2014 06:53:24 AM,10/28/2014 06:54:37 AM,10/28/2014 06:54:48 AM,10/28/2014 06:56:15 AM,10/28/2014 07:00:05 AM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Code 2 Transport,10/28/2014 07:10:09 AM,100 Block of 18TH AVE,San Francisco,94121,B07,31,7163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7851542988251, -122.477507607941)",143010574-E14 +160962226,KM11,16038048,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:30:40 PM,04/05/2016 02:34:11 PM,04/05/2016 02:35:07 PM,04/05/2016 02:35:53 PM,04/05/2016 02:44:12 PM,04/05/2016 03:13:25 PM,04/05/2016 03:23:13 PM,Code 2 Transport,04/05/2016 04:02:02 PM,100 Block of PARIS ST,San Francisco,94112,B09,43,6131,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7261785694806, -122.431450249416)",160962226-KM11 +143060539,E25,14108191,Medical Incident,11/02/2014,11/01/2014,11/02/2014 02:58:23 AM,11/02/2014 02:59:03 AM,11/02/2014 02:59:59 AM,11/02/2014 03:01:29 AM,11/02/2014 03:03:08 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/02/2014 03:15:53 AM,3RD ST/DAVIDSON AV,San Francisco,94124,B10,25,6457,2,3,3,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7435279293656, -122.387629454703)",143060539-E25 +153054156,E03,15117352,Medical Incident,11/01/2015,11/01/2015,11/01/2015 09:34:16 PM,11/01/2015 09:35:23 PM,11/01/2015 09:35:39 PM,11/01/2015 09:36:44 PM,11/01/2015 09:38:53 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Code 2 Transport,11/01/2015 09:42:40 PM,EDDY ST/HYDE ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",153054156-E03 +141311605,KM11,14044574,Traffic Collision,05/11/2014,05/11/2014,05/11/2014 01:20:49 PM,05/11/2014 01:21:44 PM,05/11/2014 01:24:29 PM,05/11/2014 01:25:54 PM,05/11/2014 01:47:20 PM,05/11/2014 01:54:46 PM,05/11/2014 02:13:53 PM,Code 2 Transport,05/11/2014 02:57:57 PM,OCEAN AV/DORADO TR,San Francisco,94112,B09,15,8456,A,A,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7249497021259, -122.461210546404)",141311605-KM11 +160953647,72,16037797,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:45:45 PM,04/04/2016 08:47:20 PM,04/04/2016 08:50:17 PM,04/04/2016 08:50:17 PM,04/04/2016 08:58:10 PM,04/04/2016 09:06:37 PM,04/04/2016 09:29:57 PM,Code 2 Transport,04/04/2016 10:09:34 PM,600 Block of 25TH ST,San Francisco,94124,B10,25,2732,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7529754653558, -122.384393472823)",160953647-72 +152421496,E26,15092278,Other,08/30/2015,08/30/2015,08/30/2015 11:37:55 AM,08/30/2015 11:39:08 AM,08/30/2015 11:39:20 AM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 11:41:26 AM,DIAMOND ST/DIAMOND HEIGHTS BL,San Francisco,94131,B06,26,8157,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7382879698388, -122.437398204407)",152421496-E26 +160940415,88,16037134,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:31:33 AM,04/03/2016 02:31:33 AM,04/03/2016 02:32:09 AM,04/03/2016 02:32:16 AM,04/03/2016 02:36:18 AM,04/03/2016 02:48:19 AM,04/03/2016 03:03:00 AM,Code 2 Transport,04/03/2016 03:43:32 AM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160940415-88 +151130100,75,15042537,Medical Incident,04/23/2015,04/22/2015,04/23/2015 12:47:45 AM,04/23/2015 12:47:45 AM,04/23/2015 12:48:07 AM,04/23/2015 12:48:42 AM,04/23/2015 01:13:07 AM,04/23/2015 01:26:22 AM,04/23/2015 01:51:13 AM,Code 2 Transport,04/23/2015 02:30:30 AM,100 Block of NEW MONTGOMERY ST,San Francisco,94103,B03,1,2157,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7867834304358, -122.399787632605)",151130100-75 +150703623,E29,15026894,Structure Fire,03/11/2015,03/11/2015,03/11/2015 08:57:14 PM,03/11/2015 08:58:42 PM,03/11/2015 08:58:58 PM,03/11/2015 08:59:07 PM,03/11/2015 08:59:07 PM,04/25/2016 01:11:47 PM,04/25/2016 01:11:47 PM,Fire,03/11/2015 09:57:16 PM,0 Block of LUCERNE ST,San Francisco,94103,B03,8,2256,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7736261244738, -122.401715956179)",150703623-E29 +160922612,86,16036528,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:02:44 PM,04/01/2016 05:02:44 PM,04/01/2016 05:03:20 PM,04/01/2016 05:03:28 PM,04/01/2016 05:16:28 PM,04/01/2016 05:35:05 PM,04/01/2016 05:56:08 PM,Code 2 Transport,04/01/2016 06:26:53 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7594297986956, -122.419198310755)",160922612-86 +160990443,88,16039192,Medical Incident,04/08/2016,04/07/2016,04/08/2016 05:56:16 AM,04/08/2016 05:57:57 AM,04/08/2016 05:59:35 AM,04/08/2016 05:59:56 AM,04/08/2016 06:04:23 AM,04/08/2016 06:23:16 AM,04/08/2016 06:36:55 AM,Code 2 Transport,04/08/2016 07:10:05 AM,700 Block of BACON ST,San Francisco,94134,B10,42,6335,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7259026143465, -122.409997905523)",160990443-88 +143642022,E05,14130241,Medical Incident,12/30/2014,12/30/2014,12/30/2014 03:01:42 PM,12/30/2014 03:02:52 PM,12/30/2014 03:03:19 PM,12/30/2014 03:05:06 PM,12/30/2014 03:10:32 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 03:40:44 PM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",143642022-E05 +141250080,E05,14042256,Alarms,05/05/2014,05/04/2014,05/05/2014 07:08:15 AM,05/05/2014 07:08:15 AM,05/05/2014 07:08:27 AM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 07:09:51 AM,300 Block of GOLDEN GATE AVE,SAN FRANCISCO,94102,B02,3,1644,,3,3,true,Alarm,1,ENGINE,4,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",141250080-E05 +143374068,70,14119757,Medical Incident,12/03/2014,12/03/2014,12/03/2014 10:31:12 PM,12/03/2014 10:31:12 PM,12/03/2014 10:31:29 PM,12/03/2014 10:32:13 PM,12/03/2014 10:39:58 PM,12/03/2014 10:58:14 PM,12/03/2014 11:17:53 PM,Code 2 Transport,12/03/2014 11:47:20 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",143374068-70 +141712369,RWC2,14059104,Water Rescue,06/20/2014,06/20/2014,06/20/2014 04:01:25 PM,06/20/2014 04:02:57 PM,06/20/2014 04:04:45 PM,06/20/2014 04:15:52 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Fire,06/20/2014 04:53:37 PM,0 Block of YACHT RD,San Francisco,94123,B04,16,4215,3,3,3,false,Fire,1,SUPPORT,7,None,2,Marina,"(37.8067582085576, -122.446916219003)",141712369-RWC2 +160962135,74,16038041,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:11:07 PM,04/05/2016 02:12:21 PM,04/05/2016 02:13:15 PM,04/05/2016 02:13:26 PM,04/05/2016 02:32:10 PM,04/05/2016 02:48:13 PM,04/05/2016 02:59:11 PM,Code 2 Transport,04/05/2016 03:39:33 PM,HYDE ST/JEFFERSON ST,San Francisco,94109,B01,28,1616,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,2,Russian Hill,"(37.8075901055183, -122.420743268989)",160962135-74 +151240132,52,15046862,Medical Incident,05/04/2015,05/03/2015,05/04/2015 01:23:06 AM,05/04/2015 01:30:38 AM,05/04/2015 01:32:37 AM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,Code 2 Transport,05/04/2015 01:33:32 AM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",151240132-52 +151204062,64,15045665,Medical Incident,04/30/2015,04/30/2015,04/30/2015 11:09:08 PM,04/30/2015 11:09:08 PM,04/30/2015 11:09:49 PM,04/30/2015 11:09:59 PM,04/30/2015 11:31:23 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Patient Declined Transport,04/30/2015 11:51:37 PM,800 Block of VALLEJO ST,San Francisco,94133,B01,2,1421,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.798323215746, -122.411286922682)",151204062-64 +160980786,AM02,16038809,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:50:21 AM,04/07/2016 07:50:21 AM,04/07/2016 07:51:48 AM,04/07/2016 07:54:57 AM,04/07/2016 07:54:58 AM,04/07/2016 08:06:18 AM,04/07/2016 08:11:58 AM,Code 2 Transport,04/07/2016 08:50:19 AM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",160980786-AM02 +153002567,KM14,15115185,Medical Incident,10/27/2015,10/27/2015,10/27/2015 04:30:09 PM,10/27/2015 04:30:09 PM,10/27/2015 04:31:09 PM,10/27/2015 04:31:43 PM,10/27/2015 04:36:24 PM,10/27/2015 04:55:49 PM,10/27/2015 05:39:17 PM,Code 2 Transport,10/27/2015 06:14:59 PM,200 Block of EVELYN WY,San Francisco,94127,B09,39,8655,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7426820883837, -122.449417081742)",153002567-KM14 +160953872,70,16037806,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:56:18 PM,04/04/2016 09:58:20 PM,04/04/2016 09:58:38 PM,04/04/2016 09:58:46 PM,04/04/2016 10:03:23 PM,04/04/2016 10:20:07 PM,04/04/2016 10:42:44 PM,Code 2 Transport,04/04/2016 11:01:20 PM,100 Block of GUTTENBERG ST,San Francisco,94112,B09,43,6218,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7111697171207, -122.443592479)",160953872-70 +152111274,AM12,15080313,Medical Incident,07/30/2015,07/30/2015,07/30/2015 10:50:24 AM,07/30/2015 10:52:16 AM,07/30/2015 10:52:44 AM,07/30/2015 10:53:37 AM,07/30/2015 10:59:32 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Patient Declined Transport,07/30/2015 11:37:26 AM,200 Block of BARNEVELD AVE,San Francisco,94124,B10,9,6412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7450485716234, -122.402839684407)",152111274-AM12 +160980363,62,16038766,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:21:31 AM,04/07/2016 03:22:40 AM,04/07/2016 03:23:54 AM,04/07/2016 03:24:18 AM,04/07/2016 03:32:45 AM,04/07/2016 03:51:04 AM,04/07/2016 04:11:46 AM,Code 2 Transport,04/07/2016 04:27:54 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160980363-62 +161000381,88,16039604,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:45:18 AM,04/09/2016 02:47:44 AM,04/09/2016 02:47:53 AM,04/09/2016 02:48:05 AM,04/09/2016 02:52:39 AM,04/09/2016 03:02:29 AM,04/09/2016 03:28:22 AM,Code 2 Transport,04/09/2016 03:58:26 AM,1200 Block of FOLSOM ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7743416410507, -122.410787635785)",161000381-88 +160940417,85,16037135,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:30:02 AM,04/03/2016 02:32:14 AM,04/03/2016 02:32:32 AM,04/03/2016 02:32:42 AM,04/03/2016 02:43:48 AM,04/03/2016 03:09:14 AM,04/03/2016 03:26:20 AM,Code 2 Transport,04/03/2016 03:55:24 AM,500 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",160940417-85 +160922575,57,16036523,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 04:52:53 PM,04/01/2016 04:52:53 PM,04/01/2016 04:53:02 PM,04/01/2016 04:53:16 PM,04/01/2016 04:58:00 PM,04/01/2016 05:34:25 PM,04/01/2016 06:09:34 PM,Code 2 Transport,04/01/2016 06:31:00 PM,EUGENIA AV/COLERIDGE ST,San Francisco,94110,B06,32,5653,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7417501198439, -122.420979819658)",160922575-57 +141150016,E01,14038676,,04/25/2014,04/24/2014,04/25/2014 12:56:00 AM,04/25/2014 12:57:00 AM,04/25/2014 12:59:00 AM,04/25/2014 12:59:00 AM,04/25/2014 12:59:00 AM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,SFPD,04/25/2014 01:08:00 AM,1000 Block of MISSION ST,SAN FRANCISCO,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",141150016-E01 +152472723,88,15094321,Traffic Collision,09/04/2015,09/04/2015,09/04/2015 03:57:13 PM,09/04/2015 03:57:13 PM,09/04/2015 03:57:56 PM,09/04/2015 03:58:23 PM,09/04/2015 04:01:50 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Patient Declined Transport,09/04/2015 04:26:05 PM,EVANS AV/MENDELL ST,San Francisco,94124,B10,25,6464,2,B,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7408975175277, -122.384705541488)",152472723-88 +153293955,AM20,15126804,Medical Incident,11/25/2015,11/25/2015,11/25/2015 10:20:14 PM,11/25/2015 10:20:14 PM,11/25/2015 10:21:22 PM,11/25/2015 10:21:52 PM,11/25/2015 10:26:58 PM,11/25/2015 10:43:03 PM,11/25/2015 10:53:28 PM,Code 2 Transport,11/25/2015 11:42:51 PM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",153293955-AM20 +141622468,KM14,14055930,Medical Incident,06/11/2014,06/11/2014,06/11/2014 04:40:37 PM,06/11/2014 04:42:26 PM,06/11/2014 04:43:50 PM,06/11/2014 04:44:14 PM,06/11/2014 04:55:35 PM,06/11/2014 04:55:41 PM,06/11/2014 05:05:10 PM,Code 2 Transport,06/11/2014 05:23:31 PM,1300 Block of TREAT WAY,San Francisco,94110,B06,7,5533,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7491304830529, -122.41259458806)",141622468-KM14 +153300743,E09,15126907,Medical Incident,11/26/2015,11/26/2015,11/26/2015 08:45:38 AM,11/26/2015 08:46:18 AM,11/26/2015 08:47:28 AM,11/26/2015 08:48:58 AM,11/26/2015 08:52:13 AM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 3 Transport,11/26/2015 09:06:34 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",153300743-E09 +141610881,65,14055426,Medical Incident,06/10/2014,06/10/2014,06/10/2014 09:06:46 AM,06/10/2014 09:09:11 AM,06/10/2014 09:10:35 AM,06/10/2014 09:10:35 AM,06/10/2014 09:23:13 AM,06/10/2014 09:46:10 AM,06/10/2014 10:18:14 AM,Code 2 Transport,06/10/2014 11:04:50 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",141610881-65 +152603663,B02,15099544,Alarms,09/17/2015,09/17/2015,09/17/2015 08:42:53 PM,09/17/2015 08:44:42 PM,09/17/2015 08:44:57 PM,09/17/2015 08:45:52 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Fire,09/17/2015 08:50:27 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",152603663-B02 +153290288,E03,15126482,Medical Incident,11/25/2015,11/24/2015,11/25/2015 03:41:04 AM,11/25/2015 03:42:42 AM,11/25/2015 03:47:11 AM,11/25/2015 03:47:11 AM,11/25/2015 03:48:28 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Gone on Arrival,11/25/2015 03:54:29 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",153290288-E03 +143510802,E34,14125296,Outside Fire,12/17/2014,12/17/2014,12/17/2014 08:30:19 AM,12/17/2014 08:32:05 AM,12/17/2014 08:32:46 AM,12/17/2014 08:34:13 AM,12/17/2014 08:37:17 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/17/2014 08:54:29 AM,FULTON ST/38TH AV,San Francisco,94121,B07,34,7253,3,3,3,false,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7719342231841, -122.498113855478)",143510802-E34 +143452361,RC2,14122934,Aircraft Emergency,12/11/2014,12/11/2014,12/11/2014 02:58:25 PM,12/11/2014 02:59:09 PM,12/11/2014 03:00:49 PM,12/11/2014 03:02:05 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Cancelled,12/11/2014 03:06:23 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B09,44,6913,3,3,3,true,,1,RESCUE CAPTAIN,6,None,None,None,"(37.6168823239251, -122.384094238098)",143452361-RC2 +153021895,52,15115847,Traffic Collision,10/29/2015,10/29/2015,10/29/2015 01:00:36 PM,10/29/2015 01:00:36 PM,10/29/2015 01:05:45 PM,10/29/2015 01:06:06 PM,10/29/2015 01:18:55 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/29/2015 02:17:42 PM,"80 WB BAY BR Z YB/TREASURE ISLAND RD, YB",Yerba Buena,94133,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.806357256372, -122.40814435033)",153021895-52 +160992664,76,16039394,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:02:52 PM,04/08/2016 05:03:25 PM,04/08/2016 05:03:53 PM,04/08/2016 05:03:59 PM,04/08/2016 05:10:07 PM,04/08/2016 05:24:58 PM,04/08/2016 05:34:33 PM,Code 2 Transport,04/08/2016 06:21:46 PM,GEARY BL/STEINER ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",160992664-76 +150081781,T18,15003130,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:50:57 PM,01/08/2015 12:51:49 PM,01/08/2015 12:52:08 PM,01/08/2015 12:53:45 PM,01/08/2015 12:55:37 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 01:16:04 PM,2200 Block of 39TH AVE,San Francisco,94116,B08,18,7621,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7449066277285, -122.497245831134)",150081781-T18 +141740634,E01,14059929,Medical Incident,06/23/2014,06/23/2014,06/23/2014 08:09:59 AM,06/23/2014 08:10:46 AM,06/23/2014 08:12:07 AM,06/23/2014 08:13:43 AM,06/23/2014 08:25:00 AM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Code 2 Transport,06/23/2014 08:34:14 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",141740634-E01 +152042814,E29,15077817,Medical Incident,07/23/2015,07/23/2015,07/23/2015 05:53:47 PM,07/23/2015 05:57:11 PM,07/23/2015 05:58:11 PM,07/23/2015 05:58:58 PM,07/23/2015 06:00:12 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Code 2 Transport,07/23/2015 06:10:00 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.765718993574, -122.409520691153)",152042814-E29 +152310457,E03,15088007,Structure Fire,08/19/2015,08/18/2015,08/19/2015 05:57:10 AM,08/19/2015 06:00:53 AM,08/19/2015 06:01:04 AM,08/19/2015 06:01:46 AM,08/19/2015 06:04:03 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Fire,08/19/2015 06:11:50 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Alarm,1,ENGINE,4,3,6,South of Market,"(37.7816150265786, -122.40942036456)",152310457-E03 +152190039,78,15083220,Structure Fire,08/07/2015,08/06/2015,08/07/2015 12:11:39 AM,08/07/2015 12:13:59 AM,08/07/2015 12:14:12 AM,08/07/2015 12:14:38 AM,08/07/2015 12:19:31 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Fire,08/07/2015 12:21:55 AM,0 Block of 14TH AVE,San Francisco,94118,B07,31,7151,3,3,3,true,Alarm,1,MEDIC,5,7,2,Seacliff,"(37.7867374252228, -122.473356971235)",152190039-78 +143121231,E11,14110459,Medical Incident,11/08/2014,11/08/2014,11/08/2014 10:41:02 AM,11/08/2014 10:43:53 AM,11/08/2014 10:45:32 AM,11/08/2014 10:45:32 AM,11/08/2014 10:47:20 AM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Code 2 Transport,11/08/2014 11:05:02 AM,3600 Block of MISSION ST,San Francisco,94110,B06,32,5631,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7381219974808, -122.423925390723)",143121231-E11 +152263689,AM18,15086300,Medical Incident,08/14/2015,08/14/2015,08/14/2015 09:18:16 PM,08/14/2015 09:18:37 PM,08/14/2015 09:21:22 PM,08/14/2015 09:21:57 PM,08/14/2015 09:27:56 PM,08/14/2015 09:40:05 PM,08/14/2015 10:15:43 PM,Code 2 Transport,08/14/2015 10:42:41 PM,1200 Block of FILBERT ST,San Francisco,94109,B01,41,1626,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,2,Russian Hill,"(37.7999745038153, -122.420050559214)",152263689-AM18 +150690534,E22,15026255,Medical Incident,03/10/2015,03/09/2015,03/10/2015 06:57:30 AM,03/10/2015 06:57:30 AM,03/10/2015 06:58:53 AM,03/10/2015 07:00:37 AM,03/10/2015 07:02:03 AM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Code 2 Transport,03/10/2015 07:12:52 AM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",150690534-E22 +160931291,75,16036811,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:57:42 AM,04/02/2016 10:57:42 AM,04/02/2016 10:58:12 AM,04/02/2016 10:58:19 AM,04/02/2016 11:02:46 AM,04/02/2016 11:11:17 AM,04/02/2016 11:34:52 AM,Code 2 Transport,04/02/2016 12:26:43 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",160931291-75 +150222080,E38,15008610,Traffic Collision,01/22/2015,01/22/2015,01/22/2015 02:48:50 PM,01/22/2015 02:48:50 PM,01/22/2015 02:49:21 PM,01/22/2015 02:50:12 PM,01/22/2015 02:57:26 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,No Merit,01/22/2015 02:57:41 PM,BROADWAY/WEBSTER ST,San Francisco,94115,B04,38,3464,2,2,2,false,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7944741116389, -122.433274226492)",150222080-E38 +161000350,52,16039599,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:31:03 AM,04/09/2016 02:32:42 AM,04/09/2016 02:33:19 AM,04/09/2016 02:33:34 AM,04/09/2016 02:42:24 AM,04/09/2016 03:05:35 AM,04/09/2016 03:29:05 AM,Code 2 Transport,04/09/2016 04:12:08 AM,1300 Block of PALOU AVE,San Francisco,94124,B10,17,6551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7312794561445, -122.386266955452)",161000350-52 +151832626,52,15069930,Medical Incident,07/02/2015,07/02/2015,07/02/2015 04:12:37 PM,07/02/2015 04:12:37 PM,07/02/2015 04:13:39 PM,07/02/2015 04:14:45 PM,07/02/2015 04:29:35 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,No Merit,07/02/2015 04:55:06 PM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",151832626-52 +150313885,E07,15012183,Structure Fire,01/31/2015,01/31/2015,01/31/2015 11:10:48 PM,01/31/2015 11:10:56 PM,01/31/2015 11:11:20 PM,01/31/2015 11:12:03 PM,01/31/2015 11:14:13 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 11:14:24 PM,23RD ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5511,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7539677697092, -122.416413490249)",150313885-E07 +150091723,E32,15003557,Medical Incident,01/09/2015,01/09/2015,01/09/2015 01:05:24 PM,01/09/2015 01:06:01 PM,01/09/2015 01:06:12 PM,01/09/2015 01:06:47 PM,01/09/2015 01:08:39 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Code 2 Transport,01/09/2015 01:22:04 PM,400 Block of CORTLAND AVE,San Francisco,94110,B06,32,5732,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7392070733909, -122.417450548901)",150091723-E32 +151732754,E11,15066145,Medical Incident,06/22/2015,06/22/2015,06/22/2015 06:33:16 PM,06/22/2015 06:33:16 PM,06/22/2015 06:33:54 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Other,06/22/2015 06:35:00 PM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7562319946436, -122.418893283075)",151732754-E11 +143010943,KM07,14106200,Medical Incident,10/28/2014,10/28/2014,10/28/2014 09:18:02 AM,10/28/2014 09:19:26 AM,10/28/2014 09:20:12 AM,10/28/2014 09:21:28 AM,10/28/2014 09:31:19 AM,10/28/2014 09:39:34 AM,10/28/2014 09:59:00 AM,Code 2 Transport,10/28/2014 10:31:59 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",143010943-KM07 +152153526,E36,15081988,Medical Incident,08/03/2015,08/03/2015,08/03/2015 08:02:24 PM,08/03/2015 08:02:55 PM,08/03/2015 08:03:03 PM,08/03/2015 08:04:44 PM,08/03/2015 08:07:28 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Code 2 Transport,08/03/2015 08:15:44 PM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",152153526-E36 +160932195,62,16036912,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:15:12 PM,04/02/2016 03:17:53 PM,04/02/2016 03:18:39 PM,04/02/2016 03:18:46 PM,04/02/2016 03:26:48 PM,04/02/2016 03:39:46 PM,04/02/2016 03:53:17 PM,Code 2 Transport,04/02/2016 04:05:48 PM,500 Block of PARIS ST,San Francisco,94112,B09,43,6126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.720019816976, -122.436111161509)",160932195-62 +161001726,74,16039776,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:41:31 PM,04/09/2016 01:43:03 PM,04/09/2016 01:43:14 PM,04/09/2016 01:43:21 PM,04/09/2016 01:55:51 PM,04/09/2016 02:13:09 PM,04/09/2016 02:25:05 PM,Code 2 Transport,04/09/2016 03:05:27 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",161001726-74 +151473354,E17,15056094,Medical Incident,05/27/2015,05/27/2015,05/27/2015 07:41:00 PM,05/27/2015 07:41:24 PM,05/27/2015 07:41:42 PM,05/27/2015 07:43:08 PM,05/27/2015 07:45:42 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Code 3 Transport,05/27/2015 07:52:51 PM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7194008333885, -122.387234795761)",151473354-E17 +153101765,RC3,15119154,Structure Fire,11/06/2015,11/06/2015,11/06/2015 01:02:36 PM,11/06/2015 01:03:37 PM,11/06/2015 01:09:36 PM,11/06/2015 01:09:56 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Fire,11/06/2015 01:18:40 PM,300 Block of LAIDLEY ST,San Francisco,94131,B06,26,8127,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,6,8,Glen Park,"(37.7373737426443, -122.428934207579)",153101765-RC3 +141923258,B10,14066697,Structure Fire,07/11/2014,07/11/2014,07/11/2014 08:34:04 PM,07/11/2014 08:35:40 PM,07/11/2014 08:35:54 PM,07/11/2014 08:37:03 PM,07/11/2014 08:41:26 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Fire,07/11/2014 08:57:47 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",141923258-B10 +141730565,KM07,14059578,Medical Incident,06/22/2014,06/21/2014,06/22/2014 05:49:24 AM,06/22/2014 05:52:00 AM,06/22/2014 05:52:54 AM,06/22/2014 05:53:29 AM,06/22/2014 05:58:06 AM,06/22/2014 06:16:07 AM,06/22/2014 06:26:09 AM,Code 2 Transport,06/22/2014 06:53:02 AM,15TH ST/VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7665395771344, -122.422043813368)",141730565-KM07 +153250224,88,15124943,Medical Incident,11/21/2015,11/20/2015,11/21/2015 01:37:07 AM,11/21/2015 01:37:07 AM,11/21/2015 01:37:18 AM,11/21/2015 01:38:00 AM,11/21/2015 01:45:29 AM,11/21/2015 01:58:34 AM,11/21/2015 02:05:42 AM,Code 2 Transport,11/21/2015 02:33:05 AM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7798704351211, -122.437493921383)",153250224-88 +143123075,E38,14110641,Medical Incident,11/08/2014,11/08/2014,11/08/2014 07:23:33 PM,11/08/2014 07:23:33 PM,11/08/2014 07:30:14 PM,11/08/2014 07:31:09 PM,11/08/2014 07:32:53 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Code 2 Transport,11/08/2014 07:39:46 PM,1900 Block of FRANKLIN ST,San Francisco,94109,B04,38,3226,2,3,3,false,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7923946747257, -122.424497572162)",143123075-E38 +151873708,E15,15071585,Outside Fire,07/06/2015,07/06/2015,07/06/2015 08:58:18 PM,07/06/2015 08:59:49 PM,07/06/2015 09:00:33 PM,07/06/2015 09:01:28 PM,07/06/2015 09:04:07 PM,04/25/2016 01:09:36 PM,04/25/2016 01:09:36 PM,Fire,07/06/2015 09:10:53 PM,MAJESTIC AV/LAKEVIEW AV,San Francisco,94112,B09,15,8317,3,3,3,true,Fire,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7169775086753, -122.451894991762)",151873708-E15 +160931774,65,16036861,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:15:46 PM,04/02/2016 01:17:21 PM,04/02/2016 01:30:58 PM,04/02/2016 01:31:15 PM,04/02/2016 01:43:24 PM,04/02/2016 02:10:58 PM,04/02/2016 02:09:37 PM,Patient Declined Transport,04/02/2016 02:17:15 PM,2600 Block of GEARY BLVD,San Francisco,94115,B05,10,4365,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7822483679158, -122.446592481498)",160931774-65 +143352472,83,14118764,Medical Incident,12/01/2014,12/01/2014,12/01/2014 04:13:18 PM,12/01/2014 04:15:41 PM,12/01/2014 04:15:57 PM,12/01/2014 04:16:15 PM,12/01/2014 04:29:45 PM,12/01/2014 04:47:32 PM,12/01/2014 05:01:22 PM,Code 2 Transport,12/01/2014 05:33:24 PM,400 Block of 36TH AVE,San Francisco,94121,B07,34,7247,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7812627112203, -122.49657494575)",143352472-83 +160992356,58,16039367,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:51:32 PM,04/08/2016 03:51:32 PM,04/08/2016 03:52:52 PM,04/08/2016 03:53:18 PM,04/08/2016 04:02:15 PM,04/08/2016 04:10:52 PM,04/08/2016 04:29:51 PM,Code 2 Transport,04/08/2016 04:54:04 PM,MISSION ST/24TH ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7522394549791, -122.418445272851)",160992356-58 +141020158,86,14034416,Medical Incident,04/12/2014,04/12/2014,04/12/2014 11:41:57 AM,04/12/2014 11:42:43 AM,04/12/2014 11:44:29 AM,04/12/2014 11:44:41 AM,04/12/2014 12:02:26 PM,04/12/2014 12:21:00 PM,04/12/2014 12:42:39 PM,Code 2 Transport,04/12/2014 01:30:09 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",141020158-86 +160942420,AM08,16037322,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:58:00 PM,04/03/2016 04:00:39 PM,04/03/2016 04:01:45 PM,04/03/2016 04:02:46 PM,04/03/2016 04:38:07 PM,04/03/2016 04:39:12 PM,04/03/2016 04:39:20 PM,Code 2 Transport,04/03/2016 04:59:54 PM,1500 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7737629752818, -122.417960394107)",160942420-AM08 +153013865,E08,15115636,Medical Incident,10/28/2015,10/28/2015,10/28/2015 09:03:20 PM,10/28/2015 09:04:37 PM,10/28/2015 09:04:53 PM,10/28/2015 09:06:41 PM,10/28/2015 09:08:08 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,No Merit,10/28/2015 09:14:07 PM,TOWNSEND ST/4TH ST,San Francisco,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7770893320016, -122.394981482757)",153013865-E08 +142793061,E20,14098287,Structure Fire,10/06/2014,10/06/2014,10/06/2014 07:29:08 PM,10/06/2014 07:29:45 PM,10/06/2014 07:30:01 PM,10/06/2014 07:31:06 PM,10/06/2014 07:34:25 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 07:35:22 PM,100 Block of MONTALVO AVE,San Francisco,94116,B08,39,8615,3,3,3,true,Alarm,1,ENGINE,4,8,7,West of Twin Peaks,"(37.7447451209793, -122.464445384147)",142793061-E20 +150792515,E38,15030358,Medical Incident,03/20/2015,03/20/2015,03/20/2015 04:25:39 PM,03/20/2015 04:29:09 PM,03/20/2015 04:29:40 PM,03/20/2015 04:30:20 PM,03/20/2015 04:33:52 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Code 2 Transport,03/20/2015 04:42:43 PM,2100 Block of PACIFIC AVE,San Francisco,94115,B04,38,3441,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7938179536129, -122.430615255773)",150792515-E38 +142272023,E34,14078871,Medical Incident,08/15/2014,08/15/2014,08/15/2014 02:36:05 PM,08/15/2014 02:37:17 PM,08/15/2014 02:39:26 PM,08/15/2014 02:40:30 PM,08/15/2014 02:45:22 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 2 Transport,08/15/2014 02:57:05 PM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",142272023-E34 +150891032,B02,15033898,Structure Fire,03/30/2015,03/30/2015,03/30/2015 10:16:08 AM,03/30/2015 10:17:35 AM,03/30/2015 10:18:07 AM,03/30/2015 10:19:27 AM,03/30/2015 10:22:30 AM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Fire,03/30/2015 10:26:21 AM,600 Block of HAYES ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,CHIEF,7,2,5,Hayes Valley,"(37.7763047597518, -122.427077545588)",150891032-B02 +152131209,88,15081066,Medical Incident,08/01/2015,08/01/2015,08/01/2015 10:24:15 AM,08/01/2015 10:24:43 AM,08/01/2015 10:25:01 AM,08/01/2015 10:25:37 AM,08/01/2015 10:30:25 AM,08/01/2015 10:42:46 AM,08/01/2015 10:49:40 AM,Code 3 Transport,08/01/2015 11:40:49 AM,200 Block of TEXAS ST,San Francisco,94107,B03,37,2462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.7632766020841, -122.395552822379)",152131209-88 +152473261,RC3,15094368,Medical Incident,09/04/2015,09/04/2015,09/04/2015 05:57:01 PM,09/04/2015 05:57:55 PM,09/04/2015 05:59:32 PM,09/04/2015 05:59:32 PM,09/04/2015 06:03:57 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Code 2 Transport,09/04/2015 06:06:16 PM,0 Block of HARRY ST,San Francisco,94131,B06,26,8115,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Glen Park,"(37.7401430098289, -122.431255939279)",152473261-RC3 +153342016,T05,15128441,Alarms,11/30/2015,11/30/2015,11/30/2015 02:32:56 PM,11/30/2015 02:34:01 PM,11/30/2015 02:35:35 PM,11/30/2015 02:37:09 PM,11/30/2015 02:38:59 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Fire,11/30/2015 02:45:40 PM,1700 Block of OFARRELL ST,San Francisco,94115,B04,5,3623,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",153342016-T05 +150193795,77,15007687,Medical Incident,01/19/2015,01/19/2015,01/19/2015 11:43:44 PM,01/19/2015 11:45:27 PM,01/19/2015 11:47:23 PM,01/19/2015 11:47:44 PM,01/19/2015 11:54:29 PM,01/19/2015 11:58:55 PM,01/20/2015 12:13:11 AM,Code 2 Transport,01/20/2015 12:27:17 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",150193795-77 +153131523,92,15120278,Medical Incident,11/09/2015,11/09/2015,11/09/2015 12:18:27 PM,11/09/2015 12:19:53 PM,11/09/2015 12:20:20 PM,11/09/2015 12:20:38 PM,11/09/2015 12:24:53 PM,11/09/2015 12:35:27 PM,11/09/2015 12:46:50 PM,Code 2 Transport,11/09/2015 01:41:59 PM,500 Block of HAIGHT ST,San Francisco,94117,B05,6,3633,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7720569989498, -122.431274062146)",153131523-92 +150300401,E48,15011441,Medical Incident,01/30/2015,01/29/2015,01/30/2015 04:11:00 AM,01/30/2015 04:11:36 AM,01/30/2015 04:12:07 AM,01/30/2015 04:14:16 AM,01/30/2015 04:19:03 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Code 2 Transport,01/30/2015 04:32:25 AM,1400 Block of CROAKER CT,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8241187828322, -122.374566544632)",150300401-E48 +141733319,E07,14059834,Medical Incident,06/22/2014,06/22/2014,06/22/2014 10:45:37 PM,06/22/2014 10:50:37 PM,06/22/2014 10:51:00 PM,06/22/2014 10:52:09 PM,06/22/2014 10:54:19 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Code 3 Transport,06/22/2014 11:12:21 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",141733319-E07 +150131748,T18,15005160,Citizen Assist / Service Call,01/13/2015,01/13/2015,01/13/2015 12:50:46 PM,01/13/2015 12:51:49 PM,01/13/2015 12:53:07 PM,01/13/2015 12:54:34 PM,01/13/2015 01:03:35 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Fire,01/13/2015 01:29:35 PM,2300 Block of 28TH AVE,San Francisco,94116,B08,40,7471,3,3,3,false,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7435624337993, -122.485331778015)",150131748-T18 +153433850,E32,15132198,Medical Incident,12/09/2015,12/09/2015,12/09/2015 09:31:51 PM,12/09/2015 09:32:05 PM,12/09/2015 09:32:25 PM,12/09/2015 09:33:55 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Medical Examiner,12/09/2015 09:37:22 PM,400 Block of CAYUGA AVE,San Francisco,94112,B09,32,8262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7296260841298, -122.43499292651)",153433850-E32 +151993127,E22,15075950,Medical Incident,07/18/2015,07/18/2015,07/18/2015 06:44:14 PM,07/18/2015 06:45:05 PM,07/18/2015 06:45:24 PM,07/18/2015 06:46:42 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Code 2 Transport,07/18/2015 06:47:26 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,false,Potentially Life-Threatening,1,ENGINE,4,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",151993127-E22 +160951690,82,16037618,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:25:06 PM,04/04/2016 12:26:18 PM,04/04/2016 12:28:28 PM,04/04/2016 12:28:35 PM,04/04/2016 12:32:30 PM,04/04/2016 12:38:40 PM,04/04/2016 12:58:33 PM,Code 2 Transport,04/04/2016 01:25:58 PM,HYDE ST/TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",160951690-82 +161000761,50,16039656,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:53:12 AM,04/09/2016 07:54:56 AM,04/09/2016 08:04:38 AM,04/09/2016 08:04:45 AM,04/09/2016 08:12:27 AM,04/09/2016 08:37:37 AM,04/09/2016 08:57:28 AM,Code 2 Transport,04/09/2016 09:12:17 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",161000761-50 +141861176,88,14064366,Medical Incident,07/05/2014,07/05/2014,07/05/2014 09:55:20 AM,07/05/2014 09:56:57 AM,07/05/2014 09:57:10 AM,07/05/2014 09:57:37 AM,07/05/2014 10:08:12 AM,07/05/2014 10:15:59 AM,07/05/2014 10:35:27 AM,Code 2 Transport,07/05/2014 11:02:48 AM,600 Block of PORTOLA DR,San Francisco,94127,B08,39,8661,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7448131362383, -122.452761504469)",141861176-88 +152793442,88,15107196,Medical Incident,10/06/2015,10/06/2015,10/06/2015 07:55:21 PM,10/06/2015 07:55:21 PM,10/06/2015 07:55:36 PM,10/06/2015 07:55:45 PM,10/06/2015 07:59:29 PM,10/06/2015 08:13:57 PM,10/06/2015 08:25:09 PM,Code 2 Transport,10/06/2015 09:13:59 PM,800 Block of IRVING ST,San Francisco,94122,B08,22,7345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7640682841744, -122.466850747744)",152793442-88 +142800042,AM18,14098344,Medical Incident,10/07/2014,10/06/2014,10/07/2014 12:23:59 AM,10/07/2014 12:23:59 AM,10/07/2014 12:24:50 AM,10/07/2014 12:25:33 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Unable to Locate,10/07/2014 12:37:02 AM,6TH ST/STEVENSON ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7817543267261, -122.409693263148)",142800042-AM18 +160962858,KM08,16038102,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:01:36 PM,04/05/2016 05:02:48 PM,04/05/2016 05:02:59 PM,04/05/2016 05:04:10 PM,04/05/2016 05:06:34 PM,04/05/2016 05:27:54 PM,04/05/2016 05:36:42 PM,Code 2 Transport,04/05/2016 06:28:09 PM,1700 Block of CALIFORNIA ST,San Francisco,94109,B04,38,3155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Western Addition,"(37.7902108323452, -122.423141017919)",160962858-KM08 +150731916,83,15027927,Medical Incident,03/14/2015,03/14/2015,03/14/2015 01:07:28 PM,03/14/2015 01:09:10 PM,03/14/2015 01:09:50 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Code 2 Transport,03/14/2015 01:11:35 PM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",150731916-83 +152444012,77,15093242,Medical Incident,09/01/2015,09/01/2015,09/01/2015 10:14:46 PM,09/01/2015 10:16:33 PM,09/01/2015 10:17:50 PM,09/01/2015 10:18:00 PM,09/01/2015 10:31:33 PM,09/01/2015 10:48:48 PM,09/01/2015 11:12:37 PM,Code 2 Transport,09/01/2015 11:44:23 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",152444012-77 +160922075,AM10,16036472,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:43:11 PM,04/01/2016 02:45:12 PM,04/01/2016 02:45:33 PM,04/01/2016 02:47:46 PM,04/01/2016 02:49:19 PM,04/01/2016 02:52:30 PM,04/01/2016 03:28:37 PM,Code 2 Transport,04/01/2016 03:52:00 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160922075-AM10 +142682462,E08,14093999,Medical Incident,09/25/2014,09/25/2014,09/25/2014 04:45:33 PM,09/25/2014 04:46:10 PM,09/25/2014 04:50:12 PM,09/25/2014 04:50:12 PM,09/25/2014 04:53:20 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Patient Declined Transport,09/25/2014 04:57:35 PM,0 Block of SOUTH PARK,San Francisco,94107,B03,8,2152,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",142682462-E08 +150641319,B02,15024403,Alarms,03/05/2015,03/05/2015,03/05/2015 10:26:25 AM,03/05/2015 10:27:49 AM,03/05/2015 10:28:46 AM,03/05/2015 10:29:26 AM,03/05/2015 10:33:43 AM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Fire,03/05/2015 10:43:25 AM,100 Block of DIAMOND ST,San Francisco,94114,B05,6,5415,3,3,3,false,Alarm,1,CHIEF,2,6,8,Castro/Upper Market,"(37.7599536346651, -122.437183555035)",150641319-B02 +141680223,85,14057820,Medical Incident,06/17/2014,06/16/2014,06/17/2014 02:25:41 AM,06/17/2014 02:27:35 AM,06/17/2014 02:28:36 AM,06/17/2014 02:29:30 AM,06/17/2014 02:37:44 AM,06/17/2014 02:57:42 AM,06/17/2014 03:14:25 AM,Code 2 Transport,06/17/2014 03:48:58 AM,100 Block of CAMBON DR,San Francisco,94132,B08,19,8428,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",141680223-85 +151143069,77,15043199,Medical Incident,04/24/2015,04/24/2015,04/24/2015 06:19:53 PM,04/24/2015 06:21:48 PM,04/24/2015 06:22:00 PM,04/24/2015 06:23:58 PM,04/24/2015 06:29:58 PM,04/24/2015 06:37:15 PM,04/24/2015 06:40:08 PM,Code 2 Transport,04/24/2015 06:49:58 PM,MISSION ST/25TH ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7506396511688, -122.418287870978)",151143069-77 +142101358,B10,14072782,Alarms,07/29/2014,07/29/2014,07/29/2014 12:09:26 PM,07/29/2014 12:10:14 PM,07/29/2014 12:10:19 PM,07/29/2014 12:10:28 PM,07/29/2014 12:15:33 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/29/2014 12:16:28 PM,1400 Block of INDIANA ST,San Francisco,94107,B10,25,2635,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7520308514375, -122.390554233685)",142101358-B10 +160993502,79,16039465,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:45:00 PM,04/08/2016 08:46:24 PM,04/08/2016 08:46:39 PM,04/08/2016 08:46:51 PM,04/08/2016 09:21:02 PM,04/08/2016 09:21:04 PM,04/08/2016 09:23:37 PM,Code 2 Transport,04/08/2016 09:56:57 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160993502-79 +143113015,66,14110237,Medical Incident,11/07/2014,11/07/2014,11/07/2014 06:45:19 PM,11/07/2014 06:45:19 PM,11/07/2014 06:46:12 PM,11/07/2014 06:46:26 PM,11/07/2014 07:07:10 PM,11/07/2014 07:16:02 PM,11/07/2014 07:43:15 PM,Code 2 Transport,11/07/2014 08:01:11 PM,600 Block of 4TH ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7773551623763, -122.395411806894)",143113015-66 +150750902,E13,15028707,Medical Incident,03/16/2015,03/16/2015,03/16/2015 09:17:12 AM,03/16/2015 09:17:43 AM,03/16/2015 09:18:37 AM,03/16/2015 09:19:26 AM,03/16/2015 09:20:41 AM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Code 2 Transport,03/16/2015 09:34:02 AM,0 Block of SANSOME ST,San Francisco,94104,B01,13,1164,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",150750902-E13 +150092031,T03,15003598,Medical Incident,01/09/2015,01/09/2015,01/09/2015 02:35:13 PM,01/09/2015 02:36:04 PM,01/09/2015 02:36:57 PM,01/09/2015 02:38:15 PM,01/09/2015 02:39:58 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Code 2 Transport,01/09/2015 02:42:25 PM,600 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1543,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Tenderloin,"(37.7869955301845, -122.414832699131)",150092031-T03 +160932492,52,16036947,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:41:44 PM,04/02/2016 04:41:44 PM,04/02/2016 04:43:54 PM,04/02/2016 04:44:17 PM,04/02/2016 05:08:05 PM,04/02/2016 05:21:45 PM,04/02/2016 05:35:17 PM,Code 2 Transport,04/02/2016 06:13:31 PM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",160932492-52 +151642312,54,15062781,Other,06/13/2015,06/13/2015,06/13/2015 04:09:44 PM,06/13/2015 04:09:44 PM,06/13/2015 04:09:44 PM,06/13/2015 04:09:44 PM,06/13/2015 04:09:44 PM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,Fire,06/13/2015 05:18:14 PM,2300 Block of BUCHANAN ST,San Francisco,94115,B04,38,3435,3,3,3,true,Alarm,1,MEDIC,1,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",151642312-54 +161002769,68,16039892,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:04:55 PM,04/09/2016 07:07:52 PM,04/09/2016 07:08:32 PM,04/09/2016 07:08:41 PM,04/09/2016 07:12:35 PM,04/09/2016 07:25:26 PM,04/09/2016 07:55:38 PM,Code 2 Transport,04/09/2016 08:20:41 PM,SUTTER ST/FILLMORE ST,San Francisco,94115,B04,38,3542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7860854281172, -122.43327157966)",161002769-68 +150012114,E07,15000354,Medical Incident,01/01/2015,01/01/2015,01/01/2015 01:46:46 PM,01/01/2015 01:47:44 PM,01/01/2015 01:47:57 PM,01/01/2015 01:49:17 PM,01/01/2015 01:52:07 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Code 2 Transport,01/01/2015 01:52:24 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",150012114-E07 +150200025,E15,15007702,Medical Incident,01/20/2015,01/19/2015,01/20/2015 12:06:54 AM,01/20/2015 12:07:59 AM,01/20/2015 12:11:48 AM,01/20/2015 12:13:07 AM,01/20/2015 12:16:41 AM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Code 2 Transport,01/20/2015 12:21:57 AM,0 Block of RICE ST,San Francisco,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7083648058395, -122.457265666619)",150200025-E15 +142353359,T03,14081842,Medical Incident,08/23/2014,08/23/2014,08/23/2014 08:46:30 PM,08/23/2014 08:49:19 PM,08/23/2014 08:49:47 PM,08/23/2014 08:49:57 PM,08/23/2014 08:53:26 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,Code 2 Transport,08/23/2014 08:57:42 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",142353359-T03 +160942774,70,16037362,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 05:41:20 PM,04/03/2016 05:41:20 PM,04/03/2016 05:53:05 PM,04/03/2016 05:53:16 PM,04/03/2016 06:01:25 PM,04/03/2016 06:20:31 PM,04/03/2016 06:24:14 PM,Other,04/03/2016 06:44:55 PM,WEBSTER ST/GEARY BL,San Francisco,94115,B04,5,3432,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,5,Japantown,"(37.7845682402461, -122.431204945516)",160942774-70 +150301793,KM14,15011579,Medical Incident,01/30/2015,01/30/2015,01/30/2015 12:39:32 PM,01/30/2015 12:41:43 PM,01/30/2015 12:43:15 PM,01/30/2015 12:43:46 PM,01/30/2015 12:57:47 PM,01/30/2015 01:19:55 PM,01/30/2015 01:38:22 PM,Code 2 Transport,01/30/2015 02:14:57 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",150301793-KM14 +141250369,RS2,14042495,Medical Incident,05/05/2014,05/05/2014,05/05/2014 07:46:20 PM,05/05/2014 07:47:37 PM,05/05/2014 07:48:15 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 07:50:07 PM,400 Block of WHIPPLE AV,SAN FRANCISCO,94112,B09,33,8324,3,2,2,false,Non Life-threatening,1,RESCUE SQUAD,6,9,11,Oceanview/Merced/Ingleside,"(37.7140989762135, -122.451964460416)",141250369-RS2 +142993152,E13,14105711,Medical Incident,10/26/2014,10/26/2014,10/26/2014 08:28:37 PM,10/26/2014 08:28:37 PM,10/26/2014 08:28:57 PM,10/26/2014 08:30:36 PM,10/26/2014 08:32:37 PM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Code 2 Transport,10/26/2014 08:38:37 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",142993152-E13 +160991069,64,16039242,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:10:25 AM,04/08/2016 10:10:45 AM,04/08/2016 10:12:00 AM,04/08/2016 10:12:48 AM,04/08/2016 10:20:57 AM,04/08/2016 10:39:30 AM,04/08/2016 10:52:12 AM,Code 3 Transport,04/08/2016 12:06:40 PM,400 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",160991069-64 +153113210,78,15119699,Medical Incident,11/07/2015,11/07/2015,11/07/2015 07:58:21 PM,11/07/2015 07:59:34 PM,11/07/2015 08:00:13 PM,11/07/2015 08:00:22 PM,11/07/2015 08:06:49 PM,11/07/2015 08:18:54 PM,11/07/2015 08:24:28 PM,Code 2 Transport,11/07/2015 09:14:41 PM,HAIGHT ST/COLE ST,San Francisco,94117,B05,12,4525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",153113210-78 +141190125,E17,14040102,Medical Incident,04/29/2014,04/29/2014,04/29/2014 09:38:51 AM,04/29/2014 09:41:04 AM,04/29/2014 09:41:20 AM,04/29/2014 09:42:41 AM,04/29/2014 09:45:39 AM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Code 2 Transport,04/29/2014 09:52:03 AM,0 Block of LATONA ST,SAN FRANCISCO,94124,B10,17,6514,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316182572491, -122.392627218053)",141190125-E17 +143303901,74,14117220,Medical Incident,11/26/2014,11/26/2014,11/26/2014 11:50:37 PM,11/26/2014 11:52:30 PM,11/26/2014 11:52:37 PM,11/26/2014 11:52:46 PM,11/27/2014 12:03:24 AM,11/27/2014 12:19:24 AM,11/27/2014 12:26:19 AM,Code 2 Transport,11/27/2014 12:43:46 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",143303901-74 +142980767,E18,14105089,Electrical Hazard,10/25/2014,10/24/2014,10/25/2014 06:37:01 AM,10/25/2014 06:38:34 AM,10/25/2014 06:38:49 AM,10/25/2014 06:40:22 AM,10/25/2014 06:44:03 AM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Fire,10/25/2014 06:49:27 AM,2300 Block of 38TH AVE,San Francisco,94116,B08,18,7621,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.743089809039, -122.496045390903)",142980767-E18 +152430779,67,15092601,Medical Incident,08/31/2015,08/30/2015,08/31/2015 07:55:31 AM,08/31/2015 07:57:42 AM,08/31/2015 08:21:07 AM,08/31/2015 08:21:07 AM,08/31/2015 08:34:03 AM,08/31/2015 08:52:07 AM,08/31/2015 09:13:07 AM,Code 2 Transport,08/31/2015 09:46:40 AM,800 Block of SUTTER ST,San Francisco,94109,B01,3,1463,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7885472961758, -122.414374370709)",152430779-67 +160933721,KM03,16037064,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:27:52 PM,04/02/2016 10:29:20 PM,04/02/2016 10:29:33 PM,04/02/2016 10:29:59 PM,04/02/2016 10:34:59 PM,04/02/2016 10:46:06 PM,04/02/2016 11:13:04 PM,Code 2 Transport,04/02/2016 11:44:50 PM,1400 Block of UNDERWOOD AVE,San Francisco,94124,B10,17,6547,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7281527449008, -122.389085829648)",160933721-KM03 +160961147,82,16037950,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:16:41 AM,04/05/2016 10:17:14 AM,04/05/2016 10:17:36 AM,04/05/2016 10:17:45 AM,04/05/2016 10:19:03 AM,04/05/2016 10:36:54 AM,04/05/2016 10:42:00 AM,Code 3 Transport,04/05/2016 11:23:12 AM,500 Block of JESSIE ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7810630578351, -122.409767402824)",160961147-82 +152051833,E29,15078080,Medical Incident,07/24/2015,07/24/2015,07/24/2015 01:05:08 PM,07/24/2015 01:06:16 PM,07/24/2015 01:07:29 PM,07/24/2015 01:08:40 PM,07/24/2015 01:09:46 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Code 2 Transport,07/24/2015 01:21:50 PM,200 Block of POTRERO AVE,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.7664376828612, -122.407540732549)",152051833-E29 +153431913,E01,15132012,Fuel Spill,12/09/2015,12/09/2015,12/09/2015 01:09:48 PM,12/09/2015 01:11:25 PM,12/09/2015 01:13:04 PM,12/09/2015 01:13:04 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 01:24:01 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",153431913-E01 +151280603,55,15048441,Medical Incident,05/08/2015,05/07/2015,05/08/2015 07:03:12 AM,05/08/2015 07:03:47 AM,05/08/2015 07:04:17 AM,05/08/2015 07:04:50 AM,05/08/2015 07:07:45 AM,05/08/2015 07:28:53 AM,05/08/2015 07:46:35 AM,Code 2 Transport,05/08/2015 08:24:15 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",151280603-55 +142341710,T15,14081320,Outside Fire,08/22/2014,08/22/2014,08/22/2014 12:40:15 PM,08/22/2014 12:41:44 PM,08/22/2014 12:41:54 PM,08/22/2014 12:42:15 PM,08/22/2014 12:45:58 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 12:54:33 PM,1600 Block of GENEVA AVE,San Francisco,94134,B09,43,6172,3,3,3,false,Fire,1,TRUCK,2,9,11,Excelsior,"(37.7118331290822, -122.427989009711)",142341710-T15 +160991110,89,16039247,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:20:30 AM,04/08/2016 10:21:56 AM,04/08/2016 10:22:33 AM,04/08/2016 10:22:59 AM,04/08/2016 10:36:20 AM,04/08/2016 10:47:30 AM,04/08/2016 11:10:45 AM,Code 2 Transport,04/08/2016 11:38:32 AM,200 Block of MOUNT VERNON AVE,San Francisco,94112,B09,15,8335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7173580243554, -122.446252841532)",160991110-89 +150813031,E10,15031148,Medical Incident,03/22/2015,03/22/2015,03/22/2015 07:19:48 PM,03/22/2015 07:20:49 PM,03/22/2015 07:21:38 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Code 2 Transport,03/22/2015 07:25:35 PM,100 Block of 3RD AVE,San Francisco,94118,B07,31,7115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,2,Inner Richmond,"(37.786106452065, -122.461488844398)",150813031-E10 +150122389,E16,15004800,Medical Incident,01/12/2015,01/12/2015,01/12/2015 03:54:52 PM,01/12/2015 03:55:21 PM,01/12/2015 03:55:42 PM,01/12/2015 03:57:21 PM,01/12/2015 03:59:25 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Medical Examiner,01/12/2015 04:11:26 PM,2900 Block of VAN NESS AVE,San Francisco,94109,B04,16,3144,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8027660134448, -122.424654379968)",150122389-E16 +160970237,71,16038263,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:28:09 AM,04/06/2016 02:33:58 AM,04/06/2016 02:34:25 AM,04/06/2016 02:34:30 AM,04/06/2016 02:39:48 AM,04/06/2016 02:52:11 AM,04/06/2016 03:03:29 AM,Code 2 Transport,04/06/2016 03:22:04 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160970237-71 +142223081,54,14077174,Medical Incident,08/10/2014,08/10/2014,08/10/2014 08:05:05 PM,08/10/2014 08:06:17 PM,08/10/2014 08:06:57 PM,08/10/2014 08:07:05 PM,08/10/2014 08:16:14 PM,08/10/2014 08:30:38 PM,08/10/2014 08:52:50 PM,Code 2 Transport,08/10/2014 09:28:44 PM,0 Block of 25TH AVE,San Francisco,94121,B07,14,7216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7885162445141, -122.484799797447)",142223081-54 +160971594,77,16038384,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:28:36 AM,04/06/2016 11:31:08 AM,04/06/2016 11:31:32 AM,04/06/2016 11:31:39 AM,04/06/2016 11:45:01 AM,04/06/2016 12:08:12 PM,04/06/2016 12:20:49 PM,Code 2 Transport,04/06/2016 01:00:57 PM,GEARY BL/29TH AV,San Francisco,94121,B07,14,7226,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7798905753776, -122.489013490407)",160971594-77 +150913562,T05,15034752,Citizen Assist / Service Call,04/01/2015,04/01/2015,04/01/2015 09:04:01 PM,04/01/2015 09:04:01 PM,04/01/2015 09:04:13 PM,04/01/2015 09:06:19 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/01/2015 09:17:00 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,true,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",150913562-T05 +153350794,T13,15128712,Medical Incident,12/01/2015,12/01/2015,12/01/2015 08:21:51 AM,12/01/2015 08:22:48 AM,12/01/2015 08:23:24 AM,12/01/2015 08:26:02 AM,12/01/2015 08:28:37 AM,04/25/2016 01:06:54 PM,04/25/2016 01:06:54 PM,Patient Declined Transport,12/01/2015 08:44:35 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",153350794-T13 +142351965,B10,14081734,Medical Incident,08/23/2014,08/23/2014,08/23/2014 02:12:59 PM,08/23/2014 02:13:48 PM,08/23/2014 02:14:47 PM,08/23/2014 02:16:18 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,Code 2 Transport,08/23/2014 02:20:58 PM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,E,E,3,false,Potentially Life-Threatening,1,CHIEF,4,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",142351965-B10 +160953048,AM16,16037736,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:55:02 PM,04/04/2016 05:57:19 PM,04/04/2016 06:00:28 PM,04/04/2016 06:00:28 PM,04/04/2016 06:06:26 PM,04/04/2016 06:23:33 PM,04/04/2016 06:40:23 PM,Code 2 Transport,04/04/2016 07:04:00 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160953048-AM16 +152723163,E29,15104262,Medical Incident,09/29/2015,09/29/2015,09/29/2015 06:34:22 PM,09/29/2015 06:35:07 PM,09/29/2015 06:36:40 PM,09/29/2015 06:38:22 PM,09/29/2015 06:40:11 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Patient Declined Transport,09/29/2015 06:47:00 PM,500 Block of 9TH ST,San Francisco,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",152723163-E29 +160973416,81,16038587,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:58:11 PM,04/06/2016 05:59:29 PM,04/06/2016 05:59:57 PM,04/06/2016 06:00:03 PM,04/06/2016 06:06:53 PM,04/06/2016 06:33:42 PM,04/06/2016 07:17:38 PM,Code 2 Transport,04/06/2016 07:21:08 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio,"(37.7915253713789, -122.483480228628)",160973416-81 +151082850,E13,15041012,Medical Incident,04/18/2015,04/18/2015,04/18/2015 06:39:54 PM,04/18/2015 06:41:03 PM,04/18/2015 06:42:02 PM,04/18/2015 06:42:20 PM,04/18/2015 06:44:55 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,No Merit,04/18/2015 06:50:27 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",151082850-E13 +160970561,79,16038290,Medical Incident,04/06/2016,04/05/2016,04/06/2016 06:56:33 AM,04/06/2016 06:57:18 AM,04/06/2016 06:57:42 AM,04/06/2016 06:57:57 AM,04/06/2016 07:02:32 AM,04/06/2016 07:19:37 AM,04/06/2016 07:33:20 AM,Code 3 Transport,04/06/2016 08:00:16 AM,2300 Block of 17TH AVE,San Francisco,94116,B08,40,7361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7440806273784, -122.473549838264)",160970561-79 +150870905,AM08,15033154,Medical Incident,03/28/2015,03/28/2015,03/28/2015 08:34:53 AM,03/28/2015 08:35:44 AM,03/28/2015 08:51:01 AM,03/28/2015 08:51:01 AM,03/28/2015 08:53:59 AM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Patient Declined Transport,03/28/2015 09:22:30 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",150870905-AM08 +152632811,88,15100764,Medical Incident,09/20/2015,09/20/2015,09/20/2015 05:31:49 PM,09/20/2015 05:31:49 PM,09/20/2015 05:32:19 PM,09/20/2015 05:34:41 PM,09/20/2015 05:40:45 PM,09/20/2015 05:49:29 PM,09/20/2015 06:05:03 PM,Code 2 Transport,09/20/2015 06:47:29 PM,HOOPER ST/8TH ST,San Francisco,94103,B03,29,2362,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,10,Mission Bay,"(37.7673003045618, -122.40042858832)",152632811-88 +142202673,KM10,14076430,Medical Incident,08/08/2014,08/08/2014,08/08/2014 05:20:23 PM,08/08/2014 05:25:07 PM,08/08/2014 06:03:05 PM,08/08/2014 06:03:05 PM,08/08/2014 06:03:05 PM,08/08/2014 06:15:08 PM,08/08/2014 06:23:56 PM,Code 2 Transport,08/08/2014 06:48:48 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",142202673-KM10 +160960430,52,16037894,Medical Incident,04/05/2016,04/04/2016,04/05/2016 06:27:58 AM,04/05/2016 06:29:36 AM,04/05/2016 06:29:55 AM,04/05/2016 06:30:05 AM,04/05/2016 06:40:00 AM,04/05/2016 06:54:16 AM,04/05/2016 06:59:29 AM,Code 2 Transport,04/05/2016 07:23:20 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160960430-52 +150261725,E13,15010022,Medical Incident,01/26/2015,01/26/2015,01/26/2015 12:14:36 PM,01/26/2015 12:16:38 PM,01/26/2015 12:30:59 PM,01/26/2015 12:32:19 PM,01/26/2015 12:35:40 PM,04/25/2016 01:12:37 PM,04/25/2016 01:12:37 PM,Code 2 Transport,01/26/2015 01:19:18 PM,800 Block of WASHINGTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",150261725-E13 +152812049,E13,15107864,Medical Incident,10/08/2015,10/08/2015,10/08/2015 02:00:18 PM,10/08/2015 02:02:57 PM,10/08/2015 02:04:10 PM,10/08/2015 02:05:11 PM,10/08/2015 02:06:55 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Code 2 Transport,10/08/2015 02:28:54 PM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",152812049-E13 +151161478,E23,15043809,Traffic Collision,04/26/2015,04/26/2015,04/26/2015 12:03:16 PM,04/26/2015 12:04:44 PM,04/26/2015 12:05:13 PM,04/26/2015 12:05:47 PM,04/26/2015 12:11:24 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Code 3 Transport,04/26/2015 01:18:56 PM,GREAT HY/SLOAT BL,San Francisco,94132,B08,23,7733,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",151161478-E23 +150082573,E22,15003218,Medical Incident,01/08/2015,01/08/2015,01/08/2015 04:25:59 PM,01/08/2015 04:28:23 PM,01/08/2015 04:30:06 PM,01/08/2015 04:31:21 PM,01/08/2015 04:33:01 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 04:50:16 PM,1300 Block of 14TH AVE,San Francisco,94122,B08,22,7366,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7628677231628, -122.471671780993)",150082573-E22 +160970869,88,16038323,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:41:40 AM,04/06/2016 08:43:05 AM,04/06/2016 08:44:46 AM,04/06/2016 08:44:54 AM,04/06/2016 08:57:49 AM,04/06/2016 09:03:53 AM,04/06/2016 09:30:03 AM,Code 2 Transport,04/06/2016 09:59:26 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160970869-88 +143263637,61,14115680,Medical Incident,11/22/2014,11/22/2014,11/22/2014 09:39:55 PM,11/22/2014 09:41:43 PM,11/22/2014 09:42:37 PM,11/22/2014 09:42:49 PM,11/22/2014 09:52:36 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Patient Declined Transport,11/22/2014 10:34:01 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",143263637-61 +160952876,54,16037720,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:11:25 PM,04/04/2016 05:11:25 PM,04/04/2016 05:13:54 PM,04/04/2016 05:14:03 PM,04/04/2016 05:31:29 PM,04/04/2016 05:47:43 PM,04/04/2016 06:19:01 PM,Code 2 Transport,04/04/2016 06:44:13 PM,400 Block of VIENNA ST,San Francisco,94112,B09,43,6141,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7212237617558, -122.429771393114)",160952876-54 +150844132,E13,15032257,Alarms,03/25/2015,03/25/2015,03/25/2015 10:46:22 PM,03/25/2015 10:47:35 PM,03/25/2015 10:47:49 PM,03/25/2015 10:49:12 PM,03/25/2015 10:51:19 PM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Fire,03/25/2015 11:12:33 PM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",150844132-E13 +142950128,84,14103878,Medical Incident,10/22/2014,10/21/2014,10/22/2014 12:59:15 AM,10/22/2014 01:00:50 AM,10/22/2014 01:01:29 AM,10/22/2014 01:01:57 AM,10/22/2014 01:06:57 AM,10/22/2014 01:19:49 AM,10/22/2014 01:50:17 AM,Code 2 Transport,10/22/2014 02:29:58 AM,2500 Block of 46TH AVE,San Francisco,94116,B08,23,7712,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7389817886029, -122.504355407568)",142950128-84 +161002411,66,16039854,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:16:21 PM,04/09/2016 05:18:14 PM,04/09/2016 05:18:44 PM,04/09/2016 05:18:50 PM,04/09/2016 05:28:50 PM,04/09/2016 05:43:07 PM,04/09/2016 05:58:11 PM,Code 2 Transport,04/09/2016 06:38:49 PM,20TH ST/ILLINOIS ST,San Francisco,94107,B10,37,2665,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.7605502226463, -122.387568785661)",161002411-66 +142263279,T03,14078634,Elevator / Escalator Rescue,08/14/2014,08/14/2014,08/14/2014 08:46:54 PM,08/14/2014 08:47:59 PM,08/14/2014 08:49:43 PM,08/14/2014 08:51:11 PM,08/14/2014 08:53:06 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Fire,08/14/2014 09:03:30 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",142263279-T03 +160992466,64,16039381,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:10:11 PM,04/08/2016 04:12:52 PM,04/08/2016 04:14:13 PM,04/08/2016 04:14:34 PM,04/08/2016 04:27:40 PM,04/08/2016 04:49:10 PM,04/08/2016 05:18:04 PM,Code 2 Transport,04/08/2016 05:57:05 PM,400 Block of MANSELL ST,San Francisco,94134,B10,44,626,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7204133129314, -122.406069423364)",160992466-64 +151633693,AM24,15062504,Medical Incident,06/12/2015,06/12/2015,06/12/2015 09:52:23 PM,06/12/2015 09:52:23 PM,06/12/2015 09:53:57 PM,06/12/2015 09:54:21 PM,06/12/2015 10:02:13 PM,06/12/2015 10:05:55 PM,06/12/2015 10:23:17 PM,Code 2 Transport,06/12/2015 10:49:02 PM,23RD ST/WISCONSIN ST,San Francisco,94107,B10,37,2565,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7547453143315, -122.398693308443)",151633693-AM24 +160960866,KM04,16037927,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:03:44 AM,04/05/2016 09:03:44 AM,04/05/2016 09:04:27 AM,04/05/2016 09:04:38 AM,04/05/2016 09:13:48 AM,04/05/2016 09:27:33 AM,04/05/2016 09:36:42 AM,Code 2 Transport,04/05/2016 10:10:22 AM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160960866-KM04 +142450709,T08,14085266,Structure Fire,09/02/2014,09/01/2014,09/02/2014 07:49:32 AM,09/02/2014 07:49:32 AM,09/02/2014 07:50:07 AM,09/02/2014 07:51:23 AM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/02/2014 07:54:23 AM,100 Block of 10TH ST,San Francisco,94103,B02,29,2345,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7750968170762, -122.415590844463)",142450709-T08 +160961307,62,16037967,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:50:57 AM,04/05/2016 10:53:25 AM,04/05/2016 10:53:39 AM,04/05/2016 10:53:52 AM,04/05/2016 10:56:46 AM,04/05/2016 11:18:01 AM,04/05/2016 11:25:08 AM,Code 3 Transport,04/05/2016 12:01:24 PM,1900 Block of LAWTON ST,San Francisco,94122,B08,18,7454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7577150576279, -122.48370179722)",160961307-62 +150693479,T11,15026527,Alarms,03/10/2015,03/10/2015,03/10/2015 09:05:37 PM,03/10/2015 09:05:45 PM,03/10/2015 09:06:43 PM,03/10/2015 09:07:44 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 09:10:00 PM,23RD ST/VALENCIA ST,San Francisco,94110,B06,11,5512,3,3,3,false,Alarm,1,TRUCK,2,6,8,Mission,"(37.7537030945495, -122.420812137045)",150693479-T11 +152461908,D2,15093822,Structure Fire,09/03/2015,09/03/2015,09/03/2015 01:12:06 PM,09/03/2015 01:13:00 PM,09/03/2015 01:13:15 PM,09/03/2015 01:17:06 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/03/2015 01:31:14 PM,900 Block of JACKSON ST,San Francisco,94133,B01,2,1354,3,3,3,false,Alarm,1,CHIEF,6,1,3,Chinatown,"(37.7955961513636, -122.41050106502)",152461908-D2 +150091507,KM02,15003543,Medical Incident,01/09/2015,01/09/2015,01/09/2015 12:06:25 PM,01/09/2015 12:07:50 PM,01/09/2015 12:08:57 PM,01/09/2015 12:09:45 PM,01/09/2015 12:18:27 PM,01/09/2015 12:39:31 PM,01/09/2015 12:52:39 PM,Code 2 Transport,01/09/2015 01:21:52 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",150091507-KM02 +152083030,E39,15079364,Medical Incident,07/27/2015,07/27/2015,07/27/2015 06:05:26 PM,07/27/2015 06:06:03 PM,07/27/2015 06:06:26 PM,07/27/2015 06:07:47 PM,07/27/2015 06:11:31 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/27/2015 06:18:40 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",152083030-E39 +160992387,89,16039369,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:54:03 PM,04/08/2016 03:57:20 PM,04/08/2016 03:58:46 PM,04/08/2016 03:59:08 PM,04/08/2016 04:09:45 PM,04/08/2016 04:44:06 PM,04/08/2016 05:07:37 PM,Code 2 Transport,04/08/2016 05:29:35 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160992387-89 +160943680,KM03,16037455,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:02:46 PM,04/03/2016 11:03:46 PM,04/03/2016 11:04:02 PM,04/03/2016 11:04:34 PM,04/03/2016 11:08:05 PM,04/03/2016 11:21:08 PM,04/03/2016 11:33:48 PM,Code 2 Transport,04/03/2016 11:49:52 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160943680-KM03 +150411809,57,15015982,Medical Incident,02/10/2015,02/10/2015,02/10/2015 01:09:06 PM,02/10/2015 01:11:46 PM,02/10/2015 01:12:07 PM,02/10/2015 01:12:28 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Unable to Locate,02/10/2015 01:21:00 PM,19TH AV/ORTEGA ST,San Francisco,94116,B08,40,7421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7523785986376, -122.476292239944)",150411809-57 +150323039,88,15012479,Medical Incident,02/01/2015,02/01/2015,02/01/2015 07:10:42 PM,02/01/2015 07:10:42 PM,02/01/2015 07:10:54 PM,02/01/2015 07:11:38 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 3 Transport,02/01/2015 07:13:13 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Mission,"(37.7709133372974, -122.420304994325)",150323039-88 +141813699,E43,14062847,Medical Incident,06/30/2014,06/30/2014,06/30/2014 10:47:16 PM,06/30/2014 10:47:48 PM,06/30/2014 10:48:40 PM,06/30/2014 10:49:46 PM,06/30/2014 10:53:03 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Code 2 Transport,06/30/2014 11:11:15 PM,500 Block of CARTER ST,San Francisco,94134,B09,43,6245,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",141813699-E43 +142541057,T06,14088615,Traffic Collision,09/11/2014,09/11/2014,09/11/2014 09:48:56 AM,09/11/2014 09:50:52 AM,09/11/2014 09:52:14 AM,09/11/2014 09:52:14 AM,09/11/2014 09:52:14 AM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Code 2 Transport,09/11/2014 10:18:04 AM,14TH ST/SANCHEZ ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7675952427988, -122.431191120963)",142541057-T06 +141380048,E32,14047119,Medical Incident,05/18/2014,05/17/2014,05/18/2014 12:14:55 AM,05/18/2014 12:15:18 AM,05/18/2014 12:16:04 AM,05/18/2014 12:17:41 AM,05/18/2014 12:21:20 AM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,Code 2 Transport,05/18/2014 12:35:18 AM,0 Block of GORHAM ST,San Francisco,94112,B09,32,8262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,8,Outer Mission,"(37.7306016782661, -122.434476602758)",141380048-E32 +143391181,E36,14120303,Medical Incident,12/05/2014,12/05/2014,12/05/2014 09:53:27 AM,12/05/2014 09:54:20 AM,12/05/2014 09:54:39 AM,12/05/2014 09:54:50 AM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 10:31:57 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",143391181-E36 +160932578,KM04,16036955,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:03:23 PM,04/02/2016 05:04:49 PM,04/02/2016 05:06:30 PM,04/02/2016 05:07:48 PM,04/02/2016 05:15:30 PM,04/02/2016 05:34:15 PM,04/02/2016 05:49:59 PM,Code 2 Transport,04/02/2016 06:12:16 PM,2400 Block of BRYANT ST,San Francisco,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7551929288845, -122.409437552243)",160932578-KM04 +150382986,FD00D,15014889,,02/07/2015,02/07/2015,02/07/2015 06:34:52 PM,02/07/2015 06:34:52 PM,02/07/2015 06:55:53 PM,02/07/2015 06:55:53 PM,02/07/2015 06:55:53 PM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Cancelled,02/07/2015 06:56:12 PM,GEARY BL/SAINT JOSEPHS AV,San Francisco,94115,B05,10,4261,2,2,2,false,Non Life-threatening,1,SUPPORT,2,5,2,Presidio Heights,"(37.7828853346645, -122.442793100058)",150382986-FD00D +160940999,85,16037201,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:50:53 AM,04/03/2016 08:51:39 AM,04/03/2016 08:51:56 AM,04/03/2016 08:52:06 AM,04/03/2016 08:56:15 AM,04/03/2016 09:17:37 AM,04/03/2016 09:41:43 AM,Code 3 Transport,04/03/2016 10:22:34 AM,100 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843212349417, -122.38904057367)",160940999-85 +153363726,E36,15129416,Medical Incident,12/02/2015,12/02/2015,12/02/2015 09:04:57 PM,12/02/2015 09:06:04 PM,12/02/2015 09:07:01 PM,12/02/2015 09:10:14 PM,12/02/2015 09:12:15 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Code 2 Transport,12/02/2015 09:16:43 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",153363726-E36 +141310838,AM02,14044504,Medical Incident,05/11/2014,05/11/2014,05/11/2014 08:50:01 AM,05/11/2014 08:50:57 AM,05/11/2014 08:51:22 AM,05/11/2014 08:52:24 AM,05/11/2014 08:55:29 AM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Cancelled,05/11/2014 09:00:17 AM,2600 Block of 18TH AVE,San Francisco,94116,B08,40,7411,3,3,3,false,Non Life-threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7384268726639, -122.474229588463)",141310838-AM02 +161002745,88,16039890,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:00:47 PM,04/09/2016 07:00:47 PM,04/09/2016 07:01:20 PM,04/09/2016 07:01:31 PM,04/09/2016 07:04:54 PM,04/09/2016 07:43:15 PM,04/09/2016 07:53:41 PM,Code 2 Transport,04/09/2016 08:59:42 PM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",161002745-88 +160991655,88,16039288,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:53:47 PM,04/08/2016 12:54:49 PM,04/08/2016 12:55:10 PM,04/08/2016 12:55:23 PM,04/08/2016 12:58:37 PM,04/08/2016 01:14:15 PM,04/08/2016 01:29:10 PM,Code 2 Transport,04/08/2016 01:58:51 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",160991655-88 +150101407,54,15003922,Medical Incident,01/10/2015,01/10/2015,01/10/2015 11:51:35 AM,01/10/2015 11:53:36 AM,01/10/2015 11:54:51 AM,01/10/2015 11:55:06 AM,01/10/2015 12:14:41 PM,01/10/2015 12:32:05 PM,01/10/2015 12:55:07 PM,Code 2 Transport,01/10/2015 01:25:09 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",150101407-54 +151191145,RC3,15044946,Medical Incident,04/29/2015,04/29/2015,04/29/2015 09:43:43 AM,04/29/2015 09:44:20 AM,04/29/2015 09:49:26 AM,04/29/2015 09:50:28 AM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,Medical Examiner,04/29/2015 09:53:23 AM,300 Block of MOUNT VERNON AVE,San Francisco,94112,B09,15,8335,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7181807732625, -122.44769180173)",151191145-RC3 +151960965,E36,15074683,Medical Incident,07/15/2015,07/15/2015,07/15/2015 09:14:06 AM,07/15/2015 09:18:30 AM,07/15/2015 09:19:28 AM,07/15/2015 09:22:09 AM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Code 2 Transport,07/15/2015 09:24:41 AM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",151960965-E36 +160952484,66,16037683,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:32:37 PM,04/04/2016 03:33:35 PM,04/04/2016 03:35:11 PM,04/04/2016 03:35:43 PM,04/04/2016 03:40:19 PM,04/04/2016 03:57:38 PM,04/04/2016 04:14:35 PM,Code 2 Transport,04/04/2016 04:59:37 PM,1900 Block of BRYANT ST,San Francisco,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7623900668355, -122.410250127899)",160952484-66 +160953730,79,16037799,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:13:52 PM,04/04/2016 09:14:35 PM,04/04/2016 09:14:58 PM,04/04/2016 09:15:27 PM,04/04/2016 09:21:39 PM,04/04/2016 09:31:49 PM,04/04/2016 09:43:53 PM,Code 3 Transport,04/04/2016 10:58:10 PM,SILVER AV/SAN BRUNO AV,San Francisco,94134,B10,42,6362,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,10,9,Portola,"(37.7324386586756, -122.405607549199)",160953730-79 +161001036,AM10,16039687,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:45:30 AM,04/09/2016 09:48:27 AM,04/09/2016 09:49:09 AM,04/09/2016 09:49:38 AM,04/09/2016 10:04:33 AM,04/09/2016 10:22:59 AM,04/09/2016 10:32:19 AM,Code 2 Transport,04/09/2016 11:14:07 AM,JONES ST/STEVELOE PL,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7853538221219, -122.412881240585)",161001036-AM10 +142171801,T01,14075252,Structure Fire,08/05/2014,08/05/2014,08/05/2014 02:07:38 PM,08/05/2014 02:07:38 PM,08/05/2014 02:08:11 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Fire,08/05/2014 02:09:22 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,false,Alarm,1,TRUCK,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",142171801-T01 +160952309,61,16037666,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:52:54 PM,04/04/2016 02:54:45 PM,04/04/2016 02:55:26 PM,04/04/2016 02:55:35 PM,04/04/2016 02:57:42 PM,04/04/2016 03:16:56 PM,04/04/2016 03:41:36 PM,Code 3 Transport,04/04/2016 04:28:58 PM,POLK ST/SUTTER ST,San Francisco,94109,B04,3,3121,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",160952309-61 +160993927,AM14,16039518,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:53:13 PM,04/08/2016 10:54:20 PM,04/08/2016 11:01:00 PM,04/08/2016 11:01:00 PM,04/08/2016 11:07:52 PM,04/08/2016 11:21:45 PM,04/08/2016 11:53:41 PM,Code 2 Transport,04/09/2016 12:09:18 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160993927-AM14 +143481570,88,14124218,Medical Incident,12/14/2014,12/14/2014,12/14/2014 12:22:40 PM,12/14/2014 12:24:13 PM,12/14/2014 12:24:45 PM,12/14/2014 12:27:35 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,Code 2 Transport,12/14/2014 12:38:15 PM,900 Block of MASON ST,San Francisco,94108,B01,41,1414,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",143481570-88 +153371140,E08,15129575,Medical Incident,12/03/2015,12/03/2015,12/03/2015 09:32:48 AM,12/03/2015 09:35:03 AM,12/03/2015 09:36:21 AM,12/03/2015 09:36:21 AM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Code 2 Transport,12/03/2015 09:46:03 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7799892619986, -122.407376463936)",153371140-E08 +160932154,88,16036908,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:05:27 PM,04/02/2016 03:06:50 PM,04/02/2016 03:07:38 PM,04/02/2016 03:07:57 PM,04/02/2016 03:14:42 PM,04/02/2016 03:27:26 PM,04/02/2016 03:46:47 PM,Code 2 Transport,04/02/2016 04:03:04 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160932154-88 +152103045,74,15080101,Medical Incident,07/29/2015,07/29/2015,07/29/2015 06:28:21 PM,07/29/2015 06:28:21 PM,07/29/2015 06:28:21 PM,07/29/2015 06:28:21 PM,07/29/2015 06:28:21 PM,07/29/2015 06:44:27 PM,07/29/2015 07:18:05 PM,Code 3 Transport,07/29/2015 07:46:32 PM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,3,3,3,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",152103045-74 +160980418,72,16038773,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:57:32 AM,04/07/2016 03:59:06 AM,04/07/2016 03:59:15 AM,04/07/2016 04:00:19 AM,04/07/2016 04:03:02 AM,04/07/2016 04:22:53 AM,04/07/2016 04:32:30 AM,Code 3 Transport,04/07/2016 05:41:07 AM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",160980418-72 +150912535,AM08,15034655,Medical Incident,04/01/2015,04/01/2015,04/01/2015 04:17:34 PM,04/01/2015 04:18:13 PM,04/01/2015 04:18:43 PM,04/01/2015 04:19:37 PM,04/01/2015 04:26:24 PM,04/01/2015 04:37:31 PM,04/01/2015 05:02:14 PM,Code 2 Transport,04/01/2015 05:34:11 PM,100 Block of MISSISSIPPI ST,San Francisco,94107,B03,29,2431,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,10,Potrero Hill,"(37.7646017401486, -122.394837700995)",150912535-AM08 +160980181,AM22,16038740,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:23:55 AM,04/07/2016 01:23:55 AM,04/07/2016 01:24:06 AM,04/07/2016 01:25:44 AM,04/07/2016 01:29:36 AM,04/07/2016 01:51:08 AM,04/07/2016 02:12:06 AM,Code 2 Transport,04/07/2016 02:51:13 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160980181-AM22 +153323676,62,15127868,Medical Incident,11/28/2015,11/28/2015,11/28/2015 10:50:29 PM,11/28/2015 10:50:29 PM,11/28/2015 10:50:42 PM,11/28/2015 10:51:02 PM,11/28/2015 10:56:44 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Against Medical Advice,11/29/2015 12:09:30 AM,1200 Block of BRYANT ST,San Francisco,94103,B02,29,2345,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7698407815033, -122.410284863543)",153323676-62 +150491806,88,15018963,Medical Incident,02/18/2015,02/18/2015,02/18/2015 12:31:56 PM,02/18/2015 12:32:53 PM,02/18/2015 12:33:14 PM,02/18/2015 12:33:23 PM,02/18/2015 12:38:21 PM,04/25/2016 01:12:10 PM,04/25/2016 01:12:10 PM,Medical Examiner,02/18/2015 12:43:06 PM,2900 Block of GEARY BLVD,San Francisco,94118,B05,10,4454,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.781927880036, -122.450580814457)",150491806-88 +151033805,D3,15039143,Structure Fire,04/13/2015,04/13/2015,04/13/2015 10:20:07 PM,04/13/2015 10:23:43 PM,04/13/2015 10:24:05 PM,04/13/2015 10:25:39 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Fire,04/13/2015 10:27:28 PM,REVERE AV/HAWES ST,San Francisco,94124,B10,17,6634,3,3,3,false,Alarm,1,CHIEF,8,10,10,Bayview Hunters Point,"(37.7274248732127, -122.382686989318)",151033805-D3 +150553579,B06,15021240,Alarms,02/24/2015,02/24/2015,02/24/2015 08:29:01 PM,02/24/2015 08:30:26 PM,02/24/2015 08:30:34 PM,02/24/2015 08:31:37 PM,02/24/2015 08:34:54 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Fire,02/24/2015 08:38:28 PM,3700 Block of 25TH ST,San Francisco,94110,B06,11,5536,3,3,3,false,Alarm,1,CHIEF,2,6,8,Mission,"(37.750323366412, -122.424419869069)",150553579-B06 +141690857,E35,14058261,Traffic Collision,06/18/2014,06/18/2014,06/18/2014 09:18:42 AM,06/18/2014 09:18:58 AM,06/18/2014 09:20:24 AM,06/18/2014 09:20:49 AM,06/18/2014 09:23:36 AM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Code 2 Transport,06/18/2014 09:43:06 AM,FOLSOM ST/BEALE ST,San Francisco,94105,B03,35,2122,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7886866619654, -122.392722833778)",141690857-E35 +150080191,88,15002950,Medical Incident,01/08/2015,01/07/2015,01/08/2015 01:35:33 AM,01/08/2015 01:35:33 AM,01/08/2015 01:36:56 AM,01/08/2015 01:37:02 AM,01/08/2015 01:45:25 AM,01/08/2015 02:01:04 AM,01/08/2015 02:08:23 AM,Code 2 Transport,01/08/2015 02:57:18 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",150080191-88 +141410342,55,14048219,Medical Incident,05/21/2014,05/20/2014,05/21/2014 04:35:19 AM,05/21/2014 04:36:30 AM,05/21/2014 04:37:27 AM,05/21/2014 04:39:00 AM,05/21/2014 04:45:43 AM,05/21/2014 04:58:33 AM,05/21/2014 05:06:05 AM,Code 2 Transport,05/21/2014 05:59:36 AM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141410342-55 +151921551,KM11,15073258,Medical Incident,07/11/2015,07/11/2015,07/11/2015 11:55:44 AM,07/11/2015 11:57:31 AM,07/11/2015 11:57:43 AM,07/11/2015 11:59:39 AM,07/11/2015 12:04:22 PM,07/11/2015 12:11:08 PM,07/11/2015 12:53:11 PM,Code 2 Transport,07/11/2015 01:09:03 PM,2100 Block of LARKIN ST,San Francisco,94109,B01,41,1631,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7975625827342, -122.420477453586)",151921551-KM11 +141531281,B02,14052516,Alarms,06/02/2014,06/02/2014,06/02/2014 11:06:15 AM,06/02/2014 11:07:35 AM,06/02/2014 11:08:04 AM,06/02/2014 11:08:18 AM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Fire,06/02/2014 11:17:53 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,false,Alarm,1,CHIEF,4,2,8,Mission,"(37.7661259454801, -122.42207304894)",141531281-B02 +141070079,T03,14036022,Alarms,04/17/2014,04/17/2014,04/17/2014 08:40:07 AM,04/17/2014 08:40:34 AM,04/17/2014 08:40:53 AM,04/17/2014 08:41:34 AM,04/17/2014 08:44:18 AM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Fire,04/17/2014 08:45:51 AM,400 Block of MCALLISTER ST,SAN FRANCISCO,94102,B02,3,3112,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",141070079-T03 +160974399,68,16038692,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:13:49 PM,04/06/2016 10:14:28 PM,04/06/2016 10:14:48 PM,04/06/2016 10:14:57 PM,04/06/2016 10:30:24 PM,04/06/2016 10:30:27 PM,04/06/2016 10:41:55 PM,Code 2 Transport,04/06/2016 11:28:39 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160974399-68 +160983986,76,16039137,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:50:27 PM,04/07/2016 10:50:27 PM,04/07/2016 10:50:44 PM,04/07/2016 10:50:53 PM,04/07/2016 11:01:53 PM,04/07/2016 11:20:58 PM,04/07/2016 11:53:29 PM,Code 2 Transport,04/08/2016 12:24:16 AM,MCALLISTER ST/FILLMORE ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",160983986-76 +142091246,RC2,14072403,Medical Incident,07/28/2014,07/28/2014,07/28/2014 11:38:34 AM,07/28/2014 11:39:36 AM,07/28/2014 11:41:38 AM,07/28/2014 11:41:38 AM,07/28/2014 11:45:07 AM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Code 2 Transport,07/28/2014 11:51:58 AM,5100 Block of GEARY BLVD,San Francisco,94118,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.780681797301, -122.474542915002)",142091246-RC2 +141200286,87,14040628,Medical Incident,04/30/2014,04/30/2014,04/30/2014 04:49:19 PM,04/30/2014 04:49:50 PM,04/30/2014 04:51:53 PM,04/30/2014 04:52:27 PM,04/30/2014 04:56:46 PM,04/25/2016 01:17:36 PM,04/25/2016 01:17:36 PM,Patient Declined Transport,04/30/2014 05:17:17 PM,ASHBURY ST/WALLER ST,SAN FRANCISCO,94117,B05,12,4512,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.769074355559, -122.446744892572)",141200286-87 +143243709,87,14114895,Medical Incident,11/20/2014,11/20/2014,11/20/2014 11:16:44 PM,11/20/2014 11:21:21 PM,11/20/2014 11:22:04 PM,11/20/2014 11:22:15 PM,11/20/2014 11:27:15 PM,11/20/2014 11:49:20 PM,11/20/2014 11:55:14 PM,Code 2 Transport,11/21/2014 12:21:39 AM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",143243709-87 +142661732,T05,14093098,Administrative,09/23/2014,09/23/2014,09/23/2014 01:06:56 PM,09/23/2014 01:07:02 PM,09/23/2014 01:07:16 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Fire,09/23/2014 01:07:44 PM,1300 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",142661732-T05 +150490791,E13,15018874,Medical Incident,02/18/2015,02/18/2015,02/18/2015 08:18:44 AM,02/18/2015 08:20:42 AM,02/18/2015 08:21:45 AM,02/18/2015 08:22:32 AM,02/18/2015 08:25:11 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Code 2 Transport,02/18/2015 08:41:24 AM,600 Block of KEARNY ST,San Francisco,94108,B01,13,1244,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7942286247262, -122.404821897781)",150490791-E13 +141090251,E42,14036828,Medical Incident,04/19/2014,04/19/2014,04/19/2014 05:03:54 PM,04/19/2014 05:05:00 PM,04/19/2014 05:05:12 PM,04/19/2014 05:06:12 PM,04/19/2014 05:07:52 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Medical Examiner,04/19/2014 05:37:47 PM,500 Block of BURROWS ST,SAN FRANCISCO,94134,B10,42,6336,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7276186550841, -122.408522876497)",141090251-E42 +142743244,67,14096212,Medical Incident,10/01/2014,10/01/2014,10/01/2014 07:13:16 PM,10/01/2014 07:14:53 PM,10/01/2014 07:15:06 PM,10/01/2014 07:15:15 PM,10/01/2014 07:34:46 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Code 2 Transport,10/01/2014 07:38:41 PM,300 Block of FRANKLIN ST,San Francisco,94102,B02,36,3214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7773165147413, -122.421446588908)",142743244-67 +151383369,E38,15052569,Other,05/18/2015,05/18/2015,05/18/2015 08:43:56 PM,05/18/2015 08:45:25 PM,05/18/2015 08:45:51 PM,05/18/2015 08:46:47 PM,05/18/2015 08:52:40 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Fire,05/18/2015 09:05:21 PM,2400 Block of FRANKLIN ST,San Francisco,94123,B04,38,3232,3,3,3,false,Alarm,1,ENGINE,1,4,2,Marina,"(37.7969361460731, -122.42541171957)",151383369-E38 +150540773,E32,15020651,Medical Incident,02/23/2015,02/23/2015,02/23/2015 08:33:54 AM,02/23/2015 08:36:07 AM,02/23/2015 08:36:30 AM,02/23/2015 08:37:54 AM,02/23/2015 08:41:40 AM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Medical Examiner,02/23/2015 08:51:46 AM,100 Block of ELLERT ST,San Francisco,94110,B06,32,5742,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7384112563215, -122.417199146201)",150540773-E32 +142883895,81,14101676,Medical Incident,10/15/2014,10/15/2014,10/15/2014 10:38:43 PM,10/15/2014 10:40:35 PM,10/15/2014 10:40:51 PM,10/15/2014 10:41:29 PM,10/15/2014 10:59:53 PM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Patient Declined Transport,10/15/2014 11:15:27 PM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",142883895-81 +150630242,E06,15023902,Medical Incident,03/04/2015,03/03/2015,03/04/2015 02:21:21 AM,03/04/2015 02:22:59 AM,03/04/2015 02:23:08 AM,03/04/2015 02:25:10 AM,03/04/2015 02:27:08 AM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Code 2 Transport,03/04/2015 02:36:27 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",150630242-E06 +142374017,75,14082621,Medical Incident,08/25/2014,08/25/2014,08/25/2014 10:50:35 PM,08/25/2014 10:51:06 PM,08/25/2014 10:51:30 PM,08/25/2014 10:51:44 PM,08/25/2014 10:58:34 PM,08/25/2014 11:13:25 PM,08/25/2014 11:36:06 PM,Code 2 Transport,08/26/2014 12:11:54 AM,2900 Block of GRIFFITH ST,San Francisco,94124,B10,17,6642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7165907184231, -122.389695949457)",142374017-75 +141830633,68,14063214,Medical Incident,07/02/2014,07/01/2014,07/02/2014 07:48:07 AM,07/02/2014 07:48:07 AM,07/02/2014 07:48:50 AM,07/02/2014 07:49:26 AM,07/02/2014 07:59:14 AM,07/02/2014 08:17:17 AM,07/02/2014 08:32:24 AM,Code 2 Transport,07/02/2014 09:08:48 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",141830633-68 +160992280,AM02,16039357,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:31:25 PM,04/08/2016 03:33:28 PM,04/08/2016 03:33:54 PM,04/08/2016 03:34:48 PM,04/08/2016 03:37:28 PM,04/08/2016 03:54:38 PM,04/08/2016 04:07:01 PM,Code 2 Transport,04/08/2016 04:47:31 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160992280-AM02 +160980375,60,16038768,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:29:13 AM,04/07/2016 03:29:13 AM,04/07/2016 03:29:32 AM,04/07/2016 03:29:48 AM,04/07/2016 03:43:32 AM,04/07/2016 04:22:36 AM,04/07/2016 04:40:37 AM,Code 2 Transport,04/07/2016 05:29:20 AM,BEALE ST/HOWARD ST,San Francisco,94105,B03,35,2124,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7899262298106, -122.394276229254)",160980375-60 +152163550,E10,15082423,Structure Fire,08/04/2015,08/04/2015,08/04/2015 10:02:51 PM,08/04/2015 10:04:30 PM,08/04/2015 10:04:50 PM,08/04/2015 10:05:36 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/04/2015 10:17:28 PM,4100 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7125,3,3,3,true,Alarm,1,ENGINE,9,7,1,Inner Richmond,"(37.7852804027584, -122.461894057321)",152163550-E10 +151551583,KM09,15059077,Medical Incident,06/04/2015,06/04/2015,06/04/2015 11:55:04 AM,06/04/2015 11:55:41 AM,06/04/2015 11:56:11 AM,06/04/2015 11:56:57 AM,06/04/2015 12:01:18 PM,06/04/2015 12:16:11 PM,06/04/2015 12:42:27 PM,Code 2 Transport,06/04/2015 01:32:33 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",151551583-KM09 +160970842,AM02,16038320,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:35:18 AM,04/06/2016 08:36:30 AM,04/06/2016 08:37:44 AM,04/06/2016 08:38:17 AM,04/06/2016 08:59:04 AM,04/06/2016 09:13:29 AM,04/06/2016 09:35:09 AM,Code 2 Transport,04/06/2016 10:33:21 AM,2700 Block of LAKE ST,San Francisco,94121,B07,14,7236,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7851739912222, -122.488860460102)",160970842-AM02 +141020007,E01,14034284,Medical Incident,04/12/2014,04/11/2014,04/12/2014 12:18:40 AM,04/12/2014 12:20:17 AM,04/12/2014 12:20:43 AM,04/25/2016 01:17:56 PM,04/12/2014 12:24:39 AM,04/25/2016 01:17:56 PM,04/25/2016 01:17:56 PM,Code 2 Transport,04/12/2014 12:30:21 AM,200 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",141020007-E01 +142533924,67,14088492,Medical Incident,09/10/2014,09/10/2014,09/10/2014 10:10:31 PM,09/10/2014 10:10:31 PM,09/10/2014 10:10:55 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Patient Declined Transport,09/10/2014 10:12:01 PM,600 Block of PENNSYLVANIA AVE,San Francisco,94107,B10,37,2535,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7589222232501, -122.39331266783)",142533924-67 +150402287,75,15015650,Medical Incident,02/09/2015,02/09/2015,02/09/2015 03:17:27 PM,02/09/2015 03:19:04 PM,02/09/2015 03:19:22 PM,02/09/2015 03:19:58 PM,02/09/2015 03:39:55 PM,02/09/2015 03:40:02 PM,02/09/2015 03:52:54 PM,Code 2 Transport,02/09/2015 04:19:45 PM,2500 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7294190904862, -122.404411917151)",150402287-75 +160982328,57,16038969,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:44:25 PM,04/07/2016 02:45:02 PM,04/07/2016 02:45:43 PM,04/07/2016 02:46:11 PM,04/07/2016 03:01:46 PM,04/07/2016 03:19:56 PM,04/07/2016 03:48:08 PM,Code 2 Transport,04/07/2016 04:21:33 PM,UNION ST/COLUMBUS AV,San Francisco,94133,B01,28,1334,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8003154984429, -122.410206543893)",160982328-57 +141250361,E17,14042487,Vehicle Fire,05/05/2014,05/05/2014,05/05/2014 07:24:02 PM,05/05/2014 07:25:31 PM,05/05/2014 07:25:56 PM,05/05/2014 07:27:35 PM,05/05/2014 07:34:16 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,CHP,05/05/2014 07:37:05 PM,100 Block of BAY SHORE BLVD,SAN FRANCISCO,94124,B10,44,6575,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",141250361-E17 +160981936,55,16038923,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:01:33 PM,04/07/2016 01:02:49 PM,04/07/2016 01:03:44 PM,04/07/2016 01:04:14 PM,04/07/2016 01:19:03 PM,04/07/2016 01:34:40 PM,04/07/2016 01:49:33 PM,Code 2 Transport,04/07/2016 02:08:18 PM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.709762526111, -122.449674980499)",160981936-55 +160980588,53,16038790,Medical Incident,04/07/2016,04/06/2016,04/07/2016 06:36:08 AM,04/07/2016 06:36:08 AM,04/07/2016 06:36:08 AM,04/07/2016 06:36:08 AM,04/07/2016 06:36:08 AM,04/07/2016 06:54:33 AM,04/07/2016 07:27:33 AM,Code 2 Transport,04/07/2016 08:22:33 AM,900 Block of HYDE ST,San Francisco,94109,B04,3,1561,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",160980588-53 +142773319,58,14097518,Medical Incident,10/04/2014,10/04/2014,10/04/2014 06:59:57 PM,10/04/2014 06:59:57 PM,10/04/2014 07:01:16 PM,10/04/2014 07:02:17 PM,10/04/2014 07:05:10 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Patient Declined Transport,10/04/2014 07:16:15 PM,800 Block of ULLOA ST,San Francisco,94127,B08,39,8611,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7407687115215, -122.465419969863)",142773319-58 +152902255,E15,15111460,Medical Incident,10/17/2015,10/17/2015,10/17/2015 03:11:29 PM,10/17/2015 03:11:29 PM,10/17/2015 03:11:53 PM,10/17/2015 03:13:18 PM,10/17/2015 03:15:50 PM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Patient Declined Transport,10/17/2015 03:23:45 PM,700 Block of HEAD ST,San Francisco,94132,B09,33,8433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7206866121124, -122.464403388281)",152902255-E15 +151363032,E03,15051774,Medical Incident,05/16/2015,05/16/2015,05/16/2015 06:36:35 PM,05/16/2015 06:42:06 PM,05/16/2015 06:42:31 PM,05/16/2015 06:43:45 PM,05/16/2015 06:51:13 PM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Code 2 Transport,05/16/2015 06:52:05 PM,300 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",151363032-E03 +160970632,89,16038297,Traffic Collision,04/06/2016,04/05/2016,04/06/2016 07:28:36 AM,04/06/2016 07:28:36 AM,04/06/2016 07:28:36 AM,04/06/2016 07:28:36 AM,04/06/2016 07:28:36 AM,04/06/2016 08:01:59 AM,04/06/2016 08:20:53 AM,Code 2 Transport,04/06/2016 08:47:17 AM,24TH ST/SANCHEZ ST,San Francisco,94114,B99,11,5523,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7515708558103, -122.429658710779)",160970632-89 +141240270,77,14042108,Medical Incident,05/04/2014,05/04/2014,05/04/2014 06:54:59 PM,05/04/2014 06:55:39 PM,05/04/2014 07:15:31 PM,05/04/2014 07:16:18 PM,05/04/2014 07:25:25 PM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Other,05/04/2014 07:29:45 PM,1400 Block of CLAY ST,SAN FRANCISCO,94109,B01,41,1536,,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7928543973029, -122.416925086375)",141240270-77 +160940892,64,16037190,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:01:40 AM,04/03/2016 08:03:18 AM,04/03/2016 08:03:43 AM,04/03/2016 08:04:12 AM,04/03/2016 08:14:47 AM,04/03/2016 08:34:28 AM,04/03/2016 08:49:00 AM,Code 2 Transport,04/03/2016 09:39:50 AM,400 Block of CESAR CHAVEZ ST,San Francisco,94124,B10,25,980,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7504165712994, -122.384149714772)",160940892-64 +160942048,AM02,16037283,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:09:09 PM,04/03/2016 02:12:02 PM,04/03/2016 02:12:16 PM,04/03/2016 02:12:46 PM,04/03/2016 02:16:54 PM,04/03/2016 02:49:33 PM,04/03/2016 03:01:21 PM,Code 2 Transport,04/03/2016 03:41:25 PM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7867689878846, -122.416612241888)",160942048-AM02 +151441750,RC1,15054780,Traffic Collision,05/24/2015,05/24/2015,05/24/2015 01:29:53 PM,05/24/2015 01:30:18 PM,05/24/2015 01:31:15 PM,05/24/2015 01:31:35 PM,05/24/2015 01:38:13 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Code 2 Transport,05/24/2015 02:06:22 PM,WASHINGTON ST/VAN NESS AV,San Francisco,94109,B04,38,3226,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,6,4,2,Pacific Heights,"(37.7930500018548, -122.422871202871)",151441750-RC1 +150202244,E41,15007882,Structure Fire,01/20/2015,01/20/2015,01/20/2015 03:23:41 PM,01/20/2015 03:23:41 PM,01/20/2015 03:24:00 PM,01/20/2015 03:24:40 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Fire,01/20/2015 03:28:11 PM,POLK ST/GREENWICH ST,San Francisco,94109,B01,16,3132,3,3,3,false,Alarm,1,ENGINE,1,4,2,Russian Hill,"(37.8006241524646, -122.422713159969)",150202244-E41 +153271396,AM06,15125832,Medical Incident,11/23/2015,11/23/2015,11/23/2015 11:10:55 AM,11/23/2015 11:12:02 AM,11/23/2015 11:12:38 AM,11/23/2015 11:13:24 AM,11/23/2015 11:18:15 AM,11/23/2015 11:39:44 AM,11/23/2015 11:51:46 AM,Code 2 Transport,11/23/2015 12:18:43 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",153271396-AM06 +160923560,70,16036616,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:29:03 PM,04/01/2016 09:32:53 PM,04/01/2016 09:33:06 PM,04/01/2016 09:33:15 PM,04/01/2016 09:37:34 PM,04/01/2016 09:49:27 PM,04/01/2016 09:54:21 PM,Code 2 Transport,04/01/2016 10:08:22 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.780721312022, -122.415737767164)",160923560-70 +150662690,RC3,15025323,Medical Incident,03/07/2015,03/07/2015,03/07/2015 05:39:11 PM,03/07/2015 05:39:23 PM,03/07/2015 05:39:44 PM,03/07/2015 05:45:24 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,No Merit,03/07/2015 05:45:26 PM,1700 Block of TARAVAL ST,San Francisco,94116,B08,18,7522,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,8,4,Sunset/Parkside,"(37.7425947020012, -122.484795710128)",150662690-RC3 +142801017,E33,14098428,Alarms,10/07/2014,10/07/2014,10/07/2014 09:46:09 AM,10/07/2014 09:47:33 AM,10/07/2014 09:47:40 AM,10/07/2014 09:49:05 AM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Fire,10/07/2014 09:49:25 AM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,false,Alarm,1,ENGINE,4,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",142801017-E33 +160951740,87,16037625,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:35:55 PM,04/04/2016 12:37:00 PM,04/04/2016 12:37:48 PM,04/04/2016 12:39:58 PM,04/04/2016 12:45:11 PM,04/04/2016 12:56:23 PM,04/04/2016 01:15:41 PM,Code 2 Transport,04/04/2016 02:04:10 PM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160951740-87 +150950693,71,15036002,Medical Incident,04/05/2015,04/04/2015,04/05/2015 07:26:02 AM,04/05/2015 07:26:41 AM,04/05/2015 07:26:55 AM,04/25/2016 01:11:20 PM,04/25/2016 01:11:20 PM,04/25/2016 01:11:20 PM,04/25/2016 01:11:20 PM,Code 2 Transport,04/05/2015 07:32:43 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",150950693-71 +150103386,75,15004141,Medical Incident,01/10/2015,01/10/2015,01/10/2015 09:49:24 PM,01/10/2015 09:52:01 PM,01/10/2015 09:52:51 PM,01/10/2015 09:53:10 PM,01/10/2015 10:03:27 PM,01/10/2015 10:07:50 PM,01/10/2015 10:17:07 PM,Code 2 Transport,01/10/2015 10:29:39 PM,2900 Block of MISSION ST,San Francisco,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7498446220826, -122.418142583283)",150103386-75 +151633919,E35,15062530,Medical Incident,06/12/2015,06/12/2015,06/12/2015 11:08:15 PM,06/12/2015 11:08:15 PM,06/12/2015 11:08:29 PM,06/12/2015 11:09:58 PM,06/12/2015 11:14:57 PM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,Code 2 Transport,06/12/2015 11:17:07 PM,100 Block of 2ND ST,San Francisco,94105,B03,1,2146,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7869524495987, -122.398572324987)",151633919-E35 +160974021,KM07,16038648,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:15:13 PM,04/06/2016 08:17:17 PM,04/06/2016 08:17:43 PM,04/06/2016 08:18:11 PM,04/06/2016 08:23:58 PM,04/06/2016 08:50:55 PM,04/06/2016 09:13:35 PM,Code 2 Transport,04/06/2016 09:51:38 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160974021-KM07 +152553396,E36,15097661,Traffic Collision,09/12/2015,09/12/2015,09/12/2015 09:00:20 PM,09/12/2015 09:02:34 PM,09/12/2015 09:03:15 PM,09/12/2015 09:04:38 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,No Merit,09/12/2015 09:06:14 PM,300 Block of DIVISION ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,5,2,10,Mission,"(37.7690697135105, -122.409528901583)",152553396-E36 +142231556,KM02,14077385,Medical Incident,08/11/2014,08/11/2014,08/11/2014 01:05:19 PM,08/11/2014 01:06:40 PM,08/11/2014 01:07:16 PM,08/11/2014 01:08:16 PM,08/11/2014 01:21:54 PM,08/11/2014 01:21:58 PM,08/11/2014 01:28:05 PM,Code 2 Transport,08/11/2014 02:01:07 PM,UNION ST/LAGUNA ST,San Francisco,94123,B04,16,3335,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7977162114993, -122.430558960196)",142231556-KM02 +150901737,RS1,15034290,Medical Incident,03/31/2015,03/31/2015,03/31/2015 01:15:55 PM,03/31/2015 01:17:08 PM,03/31/2015 01:17:54 PM,03/31/2015 01:20:38 PM,03/31/2015 01:24:45 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Code 3 Transport,03/31/2015 01:27:15 PM,0 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,1,3,Financial District/South Beach,"(37.7895797011957, -122.402025244971)",150901737-RS1 +152313977,E41,15088313,Structure Fire,08/19/2015,08/19/2015,08/19/2015 10:28:21 PM,08/19/2015 10:29:58 PM,08/19/2015 10:30:21 PM,08/19/2015 10:31:57 PM,08/19/2015 10:33:01 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Fire,08/19/2015 10:35:21 PM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,false,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",152313977-E41 +150780068,82,15029737,Medical Incident,03/19/2015,03/18/2015,03/19/2015 12:26:31 AM,03/19/2015 12:28:18 AM,03/19/2015 12:29:16 AM,03/19/2015 12:30:00 AM,03/19/2015 12:34:30 AM,03/19/2015 12:47:56 AM,03/19/2015 12:54:36 AM,Code 2 Transport,03/19/2015 01:37:17 AM,3000 Block of MISSION ST,San Francisco,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.748597504437, -122.418163001869)",150780068-82 +150960355,60,15036301,Medical Incident,04/06/2015,04/05/2015,04/06/2015 04:49:45 AM,04/06/2015 04:49:45 AM,04/06/2015 04:50:26 AM,04/06/2015 04:50:53 AM,04/06/2015 05:02:09 AM,04/25/2016 01:11:19 PM,04/25/2016 01:11:19 PM,Patient Declined Transport,04/06/2015 05:39:26 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",150960355-60 +152693844,E36,15103267,Medical Incident,09/26/2015,09/26/2015,09/26/2015 10:12:46 PM,09/26/2015 10:14:42 PM,09/26/2015 10:16:19 PM,09/26/2015 10:18:48 PM,09/26/2015 10:20:41 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Code 3 Transport,09/26/2015 10:30:01 PM,600 Block of GOUGH ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7789716986194, -122.42346947231)",152693844-E36 +152181967,E13,15083030,Medical Incident,08/06/2015,08/06/2015,08/06/2015 01:49:55 PM,08/06/2015 01:51:55 PM,08/06/2015 01:52:18 PM,08/06/2015 01:53:20 PM,08/06/2015 01:55:09 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/06/2015 02:16:22 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",152181967-E13 +151833499,E03,15069999,Medical Incident,07/02/2015,07/02/2015,07/02/2015 07:28:36 PM,07/02/2015 07:28:36 PM,07/02/2015 07:28:58 PM,07/02/2015 07:30:08 PM,07/02/2015 07:31:08 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Code 2 Transport,07/02/2015 07:37:48 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",151833499-E03 +150120296,E36,15004595,Outside Fire,01/12/2015,01/11/2015,01/12/2015 03:43:19 AM,01/12/2015 03:44:49 AM,01/12/2015 03:47:12 AM,01/12/2015 03:50:06 AM,01/12/2015 03:52:33 AM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Fire,01/12/2015 03:57:17 AM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,3,3,3,true,Fire,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",150120296-E36 +151300145,E13,15049187,Traffic Collision,05/10/2015,05/09/2015,05/10/2015 01:03:05 AM,05/10/2015 01:03:05 AM,05/10/2015 01:03:49 AM,05/10/2015 01:04:49 AM,05/10/2015 01:06:25 AM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Code 2 Transport,05/10/2015 01:28:00 AM,BATTERY ST/SACRAMENTO ST,San Francisco,94104,B01,13,1141,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7941342341045, -122.400148778875)",151300145-E13 +151041542,RS2,15039333,Structure Fire,04/14/2015,04/14/2015,04/14/2015 12:22:14 PM,04/14/2015 12:23:05 PM,04/14/2015 12:23:18 PM,04/14/2015 12:25:05 PM,04/14/2015 12:25:50 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Fire,04/14/2015 12:34:26 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,false,Alarm,1,RESCUE SQUAD,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",151041542-RS2 +153002767,RC1,15115199,Traffic Collision,10/27/2015,10/27/2015,10/27/2015 05:14:28 PM,10/27/2015 05:14:28 PM,10/27/2015 05:16:47 PM,10/27/2015 05:18:24 PM,10/27/2015 05:20:16 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/27/2015 05:36:39 PM,MISSION ST/2ND ST,San Francisco,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.788007159489, -122.39979802517)",153002767-RC1 +151610653,83,15061422,Medical Incident,06/10/2015,06/09/2015,06/10/2015 07:35:43 AM,06/10/2015 07:36:35 AM,06/10/2015 07:36:46 AM,06/10/2015 07:36:53 AM,06/10/2015 07:45:32 AM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Patient Declined Transport,06/10/2015 08:55:38 AM,200 Block of RAMSELL ST,San Francisco,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7151957808597, -122.466278506121)",151610653-83 +141140364,E01,14038629,Medical Incident,04/24/2014,04/24/2014,04/24/2014 09:47:00 PM,04/24/2014 09:48:04 PM,04/24/2014 09:48:24 PM,04/24/2014 09:48:44 PM,04/24/2014 09:50:28 PM,04/25/2016 01:17:42 PM,04/25/2016 01:17:42 PM,Other,04/24/2014 09:52:54 PM,NATOMA ST/9TH ST,SAN FRANCISCO,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7754369813936, -122.413718153207)",141140364-E01 +153053925,B03,15117326,Structure Fire,11/01/2015,11/01/2015,11/01/2015 08:10:48 PM,11/01/2015 08:11:10 PM,11/01/2015 08:13:53 PM,11/01/2015 08:15:09 PM,11/01/2015 08:16:57 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/01/2015 08:29:27 PM,600 Block of BRANNAN ST,San Francisco,94107,B03,8,2256,3,3,3,false,Fire,1,CHIEF,2,3,6,Mission Bay,"(37.775649664208, -122.399819692455)",153053925-B03 +161000937,55,16039678,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:07:56 AM,04/09/2016 09:09:23 AM,04/09/2016 09:10:27 AM,04/09/2016 09:10:38 AM,04/09/2016 09:26:31 AM,04/09/2016 09:43:05 AM,04/09/2016 10:08:44 AM,Code 2 Transport,04/09/2016 10:21:39 AM,JACKSON ST/WEBSTER ST,San Francisco,94115,B04,38,3465,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7926799136599, -122.432917576713)",161000937-55 +152660806,63,15101759,Medical Incident,09/23/2015,09/23/2015,09/23/2015 08:17:35 AM,09/23/2015 08:18:48 AM,09/23/2015 08:19:25 AM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,Code 2 Transport,09/23/2015 08:20:05 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",152660806-63 +153331366,85,15128036,Medical Incident,11/29/2015,11/29/2015,11/29/2015 12:08:07 PM,11/29/2015 12:08:07 PM,11/29/2015 12:09:57 PM,11/29/2015 12:11:38 PM,11/29/2015 12:15:41 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Patient Declined Transport,11/29/2015 01:28:44 PM,UNION ST/WEBSTER ST,San Francisco,94123,B04,16,3443,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.7972980276891, -122.433846734643)",153331366-85 +150870932,88,15033156,Medical Incident,03/28/2015,03/28/2015,03/28/2015 08:46:42 AM,03/28/2015 08:47:21 AM,03/28/2015 09:00:26 AM,03/28/2015 09:02:20 AM,03/28/2015 09:08:20 AM,03/28/2015 09:35:34 AM,03/28/2015 09:52:35 AM,Code 2 Transport,03/28/2015 10:31:02 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",150870932-88 +151821180,E03,15069420,Medical Incident,07/01/2015,07/01/2015,07/01/2015 10:25:27 AM,07/01/2015 10:27:32 AM,07/01/2015 10:27:59 AM,07/01/2015 10:28:38 AM,07/01/2015 10:35:16 AM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Code 2 Transport,07/01/2015 10:49:18 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",151821180-E03 +152091447,E36,15079592,Medical Incident,07/28/2015,07/28/2015,07/28/2015 11:09:50 AM,07/28/2015 11:10:57 AM,07/28/2015 11:11:03 AM,07/28/2015 11:13:02 AM,07/28/2015 11:15:21 AM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/28/2015 11:17:54 AM,200 Block of 11TH ST,San Francisco,94103,B02,36,5114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7724423373209, -122.414647523858)",152091447-E36 +160954172,AM24,16037836,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:49:58 PM,04/04/2016 11:50:55 PM,04/04/2016 11:51:28 PM,04/04/2016 11:52:14 PM,04/04/2016 11:59:29 PM,04/05/2016 12:07:36 AM,04/05/2016 12:15:51 AM,Code 2 Transport,04/05/2016 12:46:03 AM,600 Block of EDDY ST,San Francisco,94102,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",160954172-AM24 +142543140,83,14088789,Elevator / Escalator Rescue,09/11/2014,09/11/2014,09/11/2014 07:31:46 PM,09/11/2014 07:32:52 PM,09/11/2014 07:34:17 PM,09/11/2014 07:34:30 PM,09/11/2014 07:37:47 PM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,No Merit,09/11/2014 08:11:29 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Alarm,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",142543140-83 +142622057,T02,14091643,Alarms,09/19/2014,09/19/2014,09/19/2014 02:09:10 PM,09/19/2014 02:10:30 PM,09/19/2014 02:11:21 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,No Merit,09/19/2014 02:13:35 PM,200 Block of BEACH ST,San Francisco,94133,B01,28,1344,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.8076407484143, -122.413163175978)",142622057-T02 +150560137,78,15021293,Medical Incident,02/25/2015,02/24/2015,02/25/2015 01:20:37 AM,02/25/2015 01:21:49 AM,02/25/2015 01:22:16 AM,02/25/2015 01:22:22 AM,02/25/2015 01:29:27 AM,02/25/2015 01:47:52 AM,02/25/2015 02:11:00 AM,Code 2 Transport,02/25/2015 02:28:30 AM,300 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8854,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",150560137-78 +160972154,65,16038439,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 01:35:25 PM,04/06/2016 01:35:25 PM,04/06/2016 01:35:49 PM,04/06/2016 01:36:31 PM,04/06/2016 01:48:32 PM,04/06/2016 02:04:53 PM,04/06/2016 02:40:31 PM,Code 2 Transport,04/06/2016 03:40:46 PM,46TH AV/TARAVAL ST,San Francisco,94116,B08,23,7713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7417646821826, -122.504620445391)",160972154-65 +152791935,87,15107062,Traffic Collision,10/06/2015,10/06/2015,10/06/2015 01:31:01 PM,10/06/2015 01:33:22 PM,10/06/2015 01:35:55 PM,10/06/2015 01:36:04 PM,10/06/2015 01:51:23 PM,10/06/2015 01:51:26 PM,10/06/2015 02:14:23 PM,Code 3 Transport,10/06/2015 03:22:35 PM,0 Block of 5TH ST,San Francisco,94103,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831860531538, -122.407149119811)",152791935-87 +152183521,63,15083177,Medical Incident,08/06/2015,08/06/2015,08/06/2015 08:41:25 PM,08/06/2015 08:42:51 PM,08/06/2015 08:44:00 PM,08/06/2015 08:44:11 PM,08/06/2015 08:50:16 PM,08/06/2015 09:15:58 PM,08/06/2015 09:22:58 PM,Code 2 Transport,08/06/2015 09:48:25 PM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",152183521-63 +153070450,B03,15117849,Alarms,11/03/2015,11/02/2015,11/03/2015 06:04:13 AM,11/03/2015 06:05:17 AM,11/03/2015 06:05:26 AM,11/03/2015 06:07:39 AM,11/03/2015 06:10:00 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/03/2015 06:16:44 AM,600 Block of HARRISON ST,San Francisco,94107,B03,8,2151,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7841356234777, -122.395480783612)",153070450-B03 +153132139,RC2,15120329,Medical Incident,11/09/2015,11/09/2015,11/09/2015 03:12:02 PM,11/09/2015 03:15:08 PM,11/09/2015 03:26:22 PM,11/09/2015 03:27:51 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,Code 2 Transport,11/09/2015 03:34:38 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",153132139-RC2 +142561986,65,14089441,Medical Incident,09/13/2014,09/13/2014,09/13/2014 01:45:09 PM,09/13/2014 01:45:47 PM,09/13/2014 01:46:05 PM,09/13/2014 01:48:25 PM,09/13/2014 01:51:25 PM,09/13/2014 02:13:24 PM,09/13/2014 02:27:55 PM,Code 2 Transport,09/13/2014 03:03:36 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",142561986-65 +150881281,T08,15033548,Elevator / Escalator Rescue,03/29/2015,03/29/2015,03/29/2015 10:24:04 AM,03/29/2015 10:24:47 AM,03/29/2015 10:24:57 AM,03/29/2015 10:31:47 AM,03/29/2015 10:35:17 AM,04/25/2016 01:11:28 PM,04/25/2016 01:11:28 PM,Fire,03/29/2015 10:38:29 AM,2100 Block of 3RD ST,San Francisco,94107,B03,29,2466,3,3,3,false,Alarm,1,TRUCK,1,10,10,Potrero Hill,"(37.7624138973788, -122.388573861689)",150881281-T08 +152604122,T01,15099571,Alarms,09/17/2015,09/17/2015,09/17/2015 10:40:39 PM,09/17/2015 10:42:27 PM,09/17/2015 10:43:08 PM,09/17/2015 10:44:26 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Fire,09/17/2015 10:53:32 PM,1000 Block of BRANNAN ST,San Francisco,94103,B02,29,2346,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7698568217817, -122.407343295373)",152604122-T01 +143573550,AM16,14127903,Medical Incident,12/23/2014,12/23/2014,12/23/2014 08:10:30 PM,12/23/2014 08:11:13 PM,12/23/2014 08:11:22 PM,12/23/2014 08:12:01 PM,12/23/2014 08:18:05 PM,12/23/2014 08:46:56 PM,12/23/2014 09:05:12 PM,Code 2 Transport,12/23/2014 09:38:09 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",143573550-AM16 +152191454,85,15083363,Medical Incident,08/07/2015,08/07/2015,08/07/2015 11:52:58 AM,08/07/2015 11:53:36 AM,08/07/2015 11:55:53 AM,08/07/2015 11:56:16 AM,08/07/2015 11:59:38 AM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Against Medical Advice,08/07/2015 01:09:42 PM,1200 Block of 15TH ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7668153988578, -122.412689745025)",152191454-85 +151523141,E38,15058019,Alarms,06/01/2015,06/01/2015,06/01/2015 07:34:11 PM,06/01/2015 07:35:43 PM,06/01/2015 07:36:27 PM,06/01/2015 07:36:56 PM,06/01/2015 07:38:32 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Fire,06/01/2015 07:46:17 PM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,3,3,3,false,Alarm,1,ENGINE,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",151523141-E38 +160962705,AM10,16038089,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:25:57 PM,04/05/2016 04:26:56 PM,04/05/2016 04:27:21 PM,04/05/2016 04:28:06 PM,04/05/2016 04:31:37 PM,04/05/2016 06:06:25 PM,04/05/2016 06:06:28 PM,Code 2 Transport,04/05/2016 07:44:29 PM,SHOTWELL ST/17TH ST,San Francisco,94110,B02,7,5237,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7636351382872, -122.416227272148)",160962705-AM10 +151241178,70,15046966,Medical Incident,05/04/2015,05/04/2015,05/04/2015 10:26:21 AM,05/04/2015 10:26:50 AM,05/04/2015 10:27:13 AM,05/04/2015 10:27:34 AM,05/04/2015 10:41:24 AM,05/04/2015 11:09:47 AM,05/04/2015 11:38:14 AM,Code 2 Transport,05/04/2015 12:12:45 PM,0 Block of MINERVA ST,San Francisco,94112,B09,33,8372,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7158849109873, -122.454797121611)",151241178-70 +150742675,AM08,15028486,Medical Incident,03/15/2015,03/15/2015,03/15/2015 05:14:01 PM,03/15/2015 05:15:53 PM,03/15/2015 05:16:30 PM,03/15/2015 05:17:28 PM,03/15/2015 05:27:26 PM,03/15/2015 05:36:38 PM,03/15/2015 05:49:11 PM,Code 3 Transport,03/15/2015 06:32:24 PM,FREMONT ST/HOWARD ST,San Francisco,94105,B03,35,2126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7892346992583, -122.395150932922)",150742675-AM08 +141793566,66,14061989,Medical Incident,06/28/2014,06/28/2014,06/28/2014 09:40:48 PM,06/28/2014 09:41:17 PM,06/28/2014 09:48:54 PM,06/28/2014 09:51:31 PM,06/28/2014 09:56:03 PM,06/28/2014 10:04:11 PM,06/28/2014 10:08:23 PM,Code 3 Transport,06/28/2014 10:34:33 PM,2100 Block of MARKET ST,San Francisco,94114,B02,6,5209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",141793566-66 +150590411,B07,15022411,Structure Fire,02/28/2015,02/27/2015,02/28/2015 02:42:11 AM,02/28/2015 02:44:43 AM,02/28/2015 02:44:59 AM,02/28/2015 02:46:23 AM,02/28/2015 02:50:15 AM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Code 2 Transport,02/28/2015 03:00:12 AM,3900 Block of FULTON ST,San Francisco,94118,B07,31,7156,3,3,3,false,Alarm,1,CHIEF,4,7,1,Outer Richmond,"(37.7730917092947, -122.473993361211)",150590411-B07 +142752654,E05,14096567,Medical Incident,10/02/2014,10/02/2014,10/02/2014 04:23:40 PM,10/02/2014 04:23:40 PM,10/02/2014 04:24:03 PM,10/02/2014 04:25:47 PM,10/02/2014 04:29:04 PM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,No Merit,10/02/2014 04:30:35 PM,OCTAVIA ST/LINDEN ST,San Francisco,94102,B02,36,3265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7762013997184, -122.424565012622)",142752654-E05 +160951322,77,16037586,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:58:52 AM,04/04/2016 11:00:28 AM,04/04/2016 11:00:49 AM,04/04/2016 11:01:16 AM,04/04/2016 11:10:12 AM,04/04/2016 11:22:20 AM,04/04/2016 11:42:56 AM,Code 2 Transport,04/04/2016 12:15:25 PM,200 Block of ROOSEVELT WY,San Francisco,94117,B05,6,5174,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.765963125213, -122.440419279999)",160951322-77 +141040167,E39,14035078,Medical Incident,04/14/2014,04/14/2014,04/14/2014 12:19:42 PM,04/14/2014 12:20:18 PM,04/14/2014 12:21:51 PM,04/14/2014 12:22:51 PM,04/14/2014 12:24:12 PM,04/25/2016 01:17:53 PM,04/25/2016 01:17:53 PM,Code 2 Transport,04/14/2014 12:38:23 PM,900 Block of LAGUNA HONDA BLVD,SAN FRANCISCO,94127,B08,39,8671,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7431995033261, -122.455660966972)",141040167-E39 +160942717,61,16037357,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:23:27 PM,04/03/2016 05:25:27 PM,04/03/2016 05:27:52 PM,04/03/2016 05:27:52 PM,04/03/2016 05:35:36 PM,04/03/2016 06:20:10 PM,04/03/2016 06:20:16 PM,Code 2 Transport,04/03/2016 06:32:04 PM,400 Block of BEACH ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8071199236217, -122.416427872068)",160942717-61 +150833097,53,15031819,Other,03/24/2015,03/24/2015,03/24/2015 06:36:51 PM,03/24/2015 06:36:51 PM,03/24/2015 07:44:10 PM,03/24/2015 07:44:34 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 07:46:37 PM,100 Block of LUNDYS LN,San Francisco,94110,B06,32,5661,3,3,3,true,Alarm,1,MEDIC,5,6,9,Bernal Heights,"(37.7431098061588, -122.419297856691)",150833097-53 +160943014,79,16037380,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:57:54 PM,04/03/2016 06:58:12 PM,04/03/2016 06:58:35 PM,04/03/2016 06:58:43 PM,04/03/2016 07:05:38 PM,04/03/2016 07:19:59 PM,04/03/2016 07:29:40 PM,Code 2 Transport,04/03/2016 08:08:51 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160943014-79 +152461908,T02,15093822,Structure Fire,09/03/2015,09/03/2015,09/03/2015 01:12:06 PM,09/03/2015 01:13:00 PM,09/03/2015 01:13:15 PM,09/03/2015 01:13:50 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/03/2015 01:38:41 PM,900 Block of JACKSON ST,San Francisco,94133,B01,2,1354,3,3,3,true,Alarm,1,TRUCK,5,1,3,Chinatown,"(37.7955961513636, -122.41050106502)",152461908-T02 +152973422,E12,15114185,Medical Incident,10/24/2015,10/24/2015,10/24/2015 08:53:27 PM,10/24/2015 08:55:35 PM,10/24/2015 08:55:53 PM,10/24/2015 08:56:02 PM,10/24/2015 08:58:51 PM,04/25/2016 01:07:35 PM,04/25/2016 01:07:35 PM,Code 2 Transport,10/24/2015 09:06:36 PM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",152973422-E12 +150983666,71,15037252,Medical Incident,04/08/2015,04/08/2015,04/08/2015 09:36:34 PM,04/08/2015 09:37:06 PM,04/08/2015 09:37:22 PM,04/08/2015 09:37:37 PM,04/08/2015 09:44:41 PM,04/08/2015 10:00:39 PM,04/08/2015 10:13:00 PM,Code 2 Transport,04/08/2015 10:49:45 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150983666-71 +152922216,60,15112247,Medical Incident,10/19/2015,10/19/2015,10/19/2015 03:12:13 PM,10/19/2015 03:12:13 PM,10/19/2015 03:12:30 PM,10/19/2015 03:13:33 PM,10/19/2015 03:19:04 PM,10/19/2015 03:36:20 PM,10/19/2015 03:47:09 PM,Code 2 Transport,10/19/2015 04:30:39 PM,NORTH POINT ST/HYDE ST,San Francisco,94109,B01,28,1525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,2,Russian Hill,"(37.8057202558221, -122.420369047528)",152922216-60 +141240069,E36,14041928,Medical Incident,05/04/2014,05/03/2014,05/04/2014 05:56:43 AM,05/04/2014 05:59:48 AM,05/04/2014 05:59:57 AM,05/04/2014 06:02:31 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Patient Declined Transport,05/04/2014 06:07:49 AM,300 Block of 11TH ST,,94103,B02,36,5112,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7712855259531, -122.413204267102)",141240069-E36 +150943003,E36,15035845,Structure Fire,04/04/2015,04/04/2015,04/04/2015 06:57:53 PM,04/04/2015 06:58:24 PM,04/04/2015 06:58:46 PM,04/04/2015 07:01:22 PM,04/04/2015 07:01:22 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Fire,04/04/2015 07:13:22 PM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,false,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7775775502239, -122.411096952518)",150943003-E36 +150783508,57,15030039,Medical Incident,03/19/2015,03/19/2015,03/19/2015 07:56:41 PM,03/19/2015 07:56:41 PM,03/19/2015 07:56:54 PM,03/19/2015 07:57:02 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,No Merit,03/19/2015 08:07:24 PM,FILLMORE ST/MCALLISTER ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",150783508-57 +150720421,KM03,15027372,Medical Incident,03/13/2015,03/12/2015,03/13/2015 04:39:53 AM,03/13/2015 04:39:53 AM,03/13/2015 04:41:41 AM,03/13/2015 04:42:12 AM,03/13/2015 04:54:27 AM,03/13/2015 05:23:55 AM,03/13/2015 05:38:05 AM,Code 2 Transport,03/13/2015 06:24:32 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",150720421-KM03 +161011157,KM05,16040141,Medical Incident,04/10/2016,04/10/2016,04/10/2016 10:12:31 AM,04/10/2016 10:14:47 AM,04/10/2016 10:15:05 AM,04/10/2016 10:16:21 AM,04/10/2016 10:23:15 AM,04/10/2016 10:45:28 AM,04/10/2016 11:10:57 AM,Code 2 Transport,04/10/2016 11:21:26 AM,300 Block of TURK ST,San Francisco,94102,B02,03,1554,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",161011157-KM05 +142351667,T02,14081706,Structure Fire,08/23/2014,08/23/2014,08/23/2014 12:48:58 PM,08/23/2014 12:49:37 PM,08/23/2014 12:52:55 PM,08/23/2014 12:53:51 PM,08/23/2014 12:57:13 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,Fire,08/23/2014 01:04:49 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,6,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",142351667-T02 +150830222,82,15031590,Medical Incident,03/24/2015,03/23/2015,03/24/2015 02:44:10 AM,03/24/2015 02:45:02 AM,03/24/2015 02:45:26 AM,03/24/2015 02:45:31 AM,03/24/2015 02:50:10 AM,03/24/2015 02:57:46 AM,03/24/2015 03:03:23 AM,Code 2 Transport,03/24/2015 03:27:16 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",150830222-82 +152062818,T06,15078595,Citizen Assist / Service Call,07/25/2015,07/25/2015,07/25/2015 05:50:06 PM,07/25/2015 05:53:41 PM,07/25/2015 05:54:08 PM,07/25/2015 05:55:09 PM,07/25/2015 05:58:07 PM,04/25/2016 01:09:16 PM,04/25/2016 01:09:16 PM,Fire,07/25/2015 06:24:52 PM,14TH ST/DOLORES ST,San Francisco,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7678690199682, -122.426693184728)",152062818-T06 +150043500,E43,15001656,Medical Incident,01/04/2015,01/04/2015,01/04/2015 11:55:36 PM,01/04/2015 11:58:23 PM,01/04/2015 11:59:37 PM,01/05/2015 12:01:34 AM,01/05/2015 12:04:43 AM,04/25/2016 01:13:01 PM,04/25/2016 01:13:01 PM,Code 2 Transport,01/05/2015 12:25:42 AM,200 Block of PARIS ST,San Francisco,94112,B09,43,6127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7246819549267, -122.432583397927)",150043500-E43 +143233279,E03,14114521,Medical Incident,11/19/2014,11/19/2014,11/19/2014 09:01:14 PM,11/19/2014 09:02:22 PM,11/19/2014 09:02:56 PM,11/19/2014 09:04:54 PM,11/19/2014 09:06:02 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Code 2 Transport,11/19/2014 09:11:02 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",143233279-E03 +153233325,79,15124407,Medical Incident,11/19/2015,11/19/2015,11/19/2015 06:39:20 PM,11/19/2015 06:40:01 PM,11/19/2015 06:40:13 PM,11/19/2015 06:40:21 PM,11/19/2015 06:53:39 PM,11/19/2015 07:13:02 PM,11/19/2015 07:44:24 PM,Code 2 Transport,11/19/2015 08:26:17 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",153233325-79 +141823015,E08,14063105,Medical Incident,07/01/2014,07/01/2014,07/01/2014 07:25:59 PM,07/01/2014 07:27:32 PM,07/01/2014 07:30:09 PM,07/01/2014 07:31:35 PM,07/01/2014 07:33:45 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Code 2 Transport,07/01/2014 07:44:51 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",141823015-E08 +151871758,E44,15071393,Medical Incident,07/06/2015,07/06/2015,07/06/2015 12:41:58 PM,07/06/2015 12:43:49 PM,07/06/2015 12:44:14 PM,07/06/2015 12:45:15 PM,07/06/2015 12:49:23 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Code 2 Transport,07/06/2015 12:50:03 PM,500 Block of ARGONAUT AVE,San Francisco,94134,B09,44,6248,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7089414812578, -122.414580328939)",151871758-E44 +161002878,89,16039907,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:47:04 PM,04/09/2016 07:47:29 PM,04/09/2016 07:47:45 PM,04/09/2016 07:48:18 PM,04/09/2016 07:53:16 PM,04/09/2016 08:10:07 PM,04/09/2016 08:16:49 PM,Code 2 Transport,04/09/2016 08:47:46 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7683148008502, -122.427682264817)",161002878-89 +152580623,T13,15098551,Citizen Assist / Service Call,09/15/2015,09/14/2015,09/15/2015 07:26:15 AM,09/15/2015 07:27:02 AM,09/15/2015 07:27:14 AM,09/15/2015 07:28:47 AM,09/15/2015 07:34:27 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Fire,09/15/2015 07:55:21 AM,0 Block of MONTAGUE PL,San Francisco,94133,B01,28,1227,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.8005882891758, -122.404633848374)",152580623-T13 +152533641,61,15096876,Medical Incident,09/10/2015,09/10/2015,09/10/2015 08:38:36 PM,09/10/2015 08:38:36 PM,09/10/2015 08:38:47 PM,09/10/2015 08:39:01 PM,09/10/2015 08:40:25 PM,09/10/2015 08:57:34 PM,09/10/2015 09:27:23 PM,Code 2 Transport,09/10/2015 09:36:40 PM,18TH ST/VALENCIA ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.7617009099893, -122.421578400735)",152533641-61 +142561787,T15,14089421,Gas Leak (Natural and LP Gases),09/13/2014,09/13/2014,09/13/2014 12:46:08 PM,09/13/2014 12:47:09 PM,09/13/2014 12:47:23 PM,09/13/2014 12:48:25 PM,09/13/2014 12:54:03 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 01:03:52 PM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,3,3,3,false,Alarm,1,TRUCK,3,9,11,Excelsior,"(37.7120147227325, -122.445301042421)",142561787-T15 +161002918,77,16039911,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:57:26 PM,04/09/2016 07:59:02 PM,04/09/2016 07:59:49 PM,04/09/2016 08:00:08 PM,04/09/2016 08:07:15 PM,04/09/2016 08:17:32 PM,04/09/2016 08:36:24 PM,Code 2 Transport,04/09/2016 08:52:11 PM,3000 Block of 23RD ST,San Francisco,94110,B06,7,5477,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7541426882469, -122.412588855535)",161002918-77 +150853505,T17,15032604,Citizen Assist / Service Call,03/26/2015,03/26/2015,03/26/2015 08:08:00 PM,03/26/2015 08:10:45 PM,03/26/2015 08:17:11 PM,03/26/2015 08:20:00 PM,03/26/2015 08:21:54 PM,04/25/2016 01:11:30 PM,04/25/2016 01:11:30 PM,Fire,03/26/2015 08:32:51 PM,0 Block of OSCEOLA LN,San Francisco,94124,B10,17,6637,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",150853505-T17 +152544244,E15,15097349,Medical Incident,09/11/2015,09/11/2015,09/11/2015 11:55:11 PM,09/11/2015 11:55:44 PM,09/11/2015 11:56:01 PM,09/11/2015 11:57:33 PM,09/11/2015 11:59:19 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Medical Examiner,09/12/2015 12:08:23 AM,0 Block of GENEVA AVE,San Francisco,94112,B09,15,8313,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7224526962267, -122.451312748281)",152544244-E15 +160952389,54,16037675,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:13:40 PM,04/04/2016 03:14:06 PM,04/04/2016 03:15:25 PM,04/04/2016 03:15:37 PM,04/04/2016 03:28:09 PM,04/04/2016 03:43:35 PM,04/04/2016 04:03:23 PM,Code 2 Transport,04/04/2016 04:51:13 PM,0 Block of GARLINGTON CT,San Francisco,94124,B10,17,6622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7325028766117, -122.384356163358)",160952389-54 +160960955,AM06,16037936,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:22:14 AM,04/05/2016 09:23:57 AM,04/05/2016 09:25:21 AM,04/05/2016 09:25:28 AM,04/05/2016 09:41:50 AM,04/05/2016 10:00:55 AM,04/05/2016 10:19:59 AM,Code 2 Transport,04/05/2016 10:56:55 AM,3500 Block of TARAVAL ST,San Francisco,94116,B08,23,7713,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7418437763429, -122.50408864104)",160960955-AM06 +152141380,E07,15081458,Medical Incident,08/02/2015,08/02/2015,08/02/2015 11:35:19 AM,08/02/2015 11:35:45 AM,08/02/2015 11:36:10 AM,08/02/2015 11:37:29 AM,08/02/2015 11:39:18 AM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Code 2 Transport,08/02/2015 11:45:15 AM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7584120495369, -122.419101058487)",152141380-E07 +151552850,E08,15059209,Medical Incident,06/04/2015,06/04/2015,06/04/2015 05:38:57 PM,06/04/2015 05:38:57 PM,06/04/2015 05:39:15 PM,06/04/2015 05:39:29 PM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,Other,06/04/2015 05:39:51 PM,100 Block of 3RD ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7853906306613, -122.401027740415)",151552850-E08 +142541757,73,14088687,Medical Incident,09/11/2014,09/11/2014,09/11/2014 01:27:12 PM,09/11/2014 01:27:39 PM,09/11/2014 01:28:54 PM,09/11/2014 01:29:46 PM,09/11/2014 01:36:44 PM,09/11/2014 01:57:15 PM,09/11/2014 02:18:24 PM,Code 2 Transport,09/11/2014 02:42:20 PM,3000 Block of 19TH AVE,San Francisco,94132,B08,19,8731,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.731765264166, -122.474767546905)",142541757-73 +160961269,87,16037962,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:42:24 AM,04/05/2016 10:43:31 AM,04/05/2016 10:44:23 AM,04/05/2016 10:45:39 AM,04/05/2016 10:52:45 AM,04/05/2016 11:09:54 AM,04/05/2016 11:36:48 AM,Code 2 Transport,04/05/2016 11:59:52 AM,5000 Block of 3RD ST,San Francisco,94124,B10,17,6514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7328587504079, -122.391514726091)",160961269-87 +152150503,T07,15081717,Alarms,08/03/2015,08/02/2015,08/03/2015 06:11:03 AM,08/03/2015 06:12:46 AM,08/03/2015 06:13:07 AM,08/03/2015 06:15:18 AM,08/03/2015 06:17:09 AM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Fire,08/03/2015 06:27:08 AM,700 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.7609052657931, -122.421432818786)",152150503-T07 +142903812,E07,14102436,Medical Incident,10/17/2014,10/17/2014,10/17/2014 10:49:05 PM,10/17/2014 10:49:05 PM,10/17/2014 10:49:22 PM,10/17/2014 10:50:24 PM,10/17/2014 10:52:15 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 2 Transport,10/17/2014 10:54:52 PM,100 Block of SAN CARLOS ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7609848622239, -122.420120540924)",142903812-E07 +153330313,65,15127914,Traffic Collision,11/29/2015,11/28/2015,11/29/2015 02:20:15 AM,11/29/2015 02:20:45 AM,11/29/2015 02:23:58 AM,11/29/2015 02:23:58 AM,11/29/2015 02:25:05 AM,11/29/2015 02:31:16 AM,11/29/2015 02:42:48 AM,Code 3 Transport,11/29/2015 03:38:03 AM,BROADWAY/MONTGOMERY ST,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.7982229704871, -122.403863019987)",153330313-65 +153410273,E29,15131065,Alarms,12/07/2015,12/06/2015,12/07/2015 02:53:21 AM,12/07/2015 02:53:21 AM,12/07/2015 02:53:41 AM,12/07/2015 02:57:42 AM,12/07/2015 02:59:00 AM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,Fire,12/07/2015 03:00:12 AM,300 Block of 12TH ST,San Francisco,94103,B02,36,5112,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7701481672269, -122.413431397414)",153410273-E29 +160953335,52,16037761,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:00:52 PM,04/04/2016 07:02:43 PM,04/04/2016 07:04:17 PM,04/04/2016 07:05:44 PM,04/04/2016 07:08:30 PM,04/04/2016 07:22:47 PM,04/04/2016 07:38:26 PM,Code 2 Transport,04/04/2016 08:21:28 PM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160953335-52 +150923236,61,15035126,Medical Incident,04/02/2015,04/02/2015,04/02/2015 07:33:10 PM,04/02/2015 07:35:18 PM,04/02/2015 07:35:45 PM,04/02/2015 07:38:14 PM,04/02/2015 07:46:37 PM,04/02/2015 07:52:52 PM,04/02/2015 08:18:53 PM,Code 2 Transport,04/02/2015 08:47:10 PM,200 Block of PENINSULA AVE,San Francisco,94134,B10,44,6272,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7122855451537, -122.398737128837)",150923236-61 +143103193,83,14109860,Medical Incident,11/06/2014,11/06/2014,11/06/2014 06:52:43 PM,11/06/2014 06:53:19 PM,11/06/2014 06:54:19 PM,11/06/2014 06:54:30 PM,11/06/2014 07:07:10 PM,11/06/2014 07:15:00 PM,11/06/2014 07:23:03 PM,Code 2 Transport,11/06/2014 07:41:20 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",143103193-83 +141150226,T07,14038849,Medical Incident,04/25/2014,04/25/2014,04/25/2014 02:48:34 PM,04/25/2014 02:49:15 PM,04/25/2014 02:49:41 PM,04/25/2014 02:50:32 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Medical Examiner,04/25/2014 02:51:25 PM,500 Block of GUERRERO ST,SAN FRANCISCO,94110,B02,7,5422,3,E,3,false,Potentially Life-Threatening,1,TRUCK,4,2,8,Mission,"(37.7619448798252, -122.423956468)",141150226-T07 +153102862,E06,15119259,Structure Fire,11/06/2015,11/06/2015,11/06/2015 05:45:38 PM,11/06/2015 05:46:08 PM,11/06/2015 05:46:28 PM,11/06/2015 05:47:07 PM,11/06/2015 05:50:04 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Fire,11/06/2015 05:54:16 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Alarm,1,ENGINE,6,2,10,Mission,"(37.765718993574, -122.409520691153)",153102862-E06 +143562120,KM08,14127394,Traffic Collision,12/22/2014,12/22/2014,12/22/2014 02:32:57 PM,12/22/2014 02:33:16 PM,12/22/2014 02:33:50 PM,12/22/2014 02:35:34 PM,12/22/2014 02:37:30 PM,12/22/2014 02:52:13 PM,12/22/2014 03:11:06 PM,Code 2 Transport,12/22/2014 03:52:23 PM,VALENCIA ST/22ND ST,San Francisco,94110,B06,7,5456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Mission,"(37.7552947827711, -122.420964094826)",143562120-KM08 +152380109,E01,15090512,Medical Incident,08/26/2015,08/25/2015,08/26/2015 12:49:16 AM,08/26/2015 12:50:12 AM,08/26/2015 12:50:42 AM,08/26/2015 12:52:17 AM,08/26/2015 12:55:26 AM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Code 2 Transport,08/26/2015 01:02:52 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",152380109-E01 +142920813,67,14102912,Structure Fire,10/19/2014,10/18/2014,10/19/2014 07:11:32 AM,10/19/2014 07:11:32 AM,10/19/2014 07:18:33 AM,10/19/2014 07:19:00 AM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,No Merit,10/19/2014 07:21:06 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,true,Alarm,1,MEDIC,4,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",142920813-67 +160932644,62,16036960,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:17:21 PM,04/02/2016 05:18:46 PM,04/02/2016 05:20:31 PM,04/02/2016 05:20:45 PM,04/02/2016 05:29:48 PM,04/02/2016 06:18:43 PM,04/02/2016 06:47:03 PM,Code 2 Transport,04/02/2016 07:07:30 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160932644-62 +152222289,FD00A,15084647,,08/10/2015,08/10/2015,08/10/2015 03:35:37 PM,08/10/2015 03:36:57 PM,08/10/2015 05:37:34 PM,08/10/2015 05:37:34 PM,08/10/2015 05:37:34 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Against Medical Advice,08/10/2015 05:38:50 PM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,2,2,2,false,Non Life-threatening,1,SUPPORT,4,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",152222289-FD00A +150621783,KM08,15023663,Medical Incident,03/03/2015,03/03/2015,03/03/2015 12:46:44 PM,03/03/2015 12:46:44 PM,03/03/2015 12:46:52 PM,03/03/2015 12:47:40 PM,03/03/2015 12:51:00 PM,03/03/2015 01:00:23 PM,03/03/2015 01:18:52 PM,Code 2 Transport,03/03/2015 02:02:12 PM,36TH AV/ORTEGA ST,San Francisco,94116,B08,18,7573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7515682602455, -122.494560806502)",150621783-KM08 +142193465,67,14076129,Medical Incident,08/07/2014,08/07/2014,08/07/2014 09:47:26 PM,08/07/2014 09:49:39 PM,08/07/2014 09:50:25 PM,08/07/2014 09:50:44 PM,08/07/2014 09:54:41 PM,08/07/2014 10:10:32 PM,08/07/2014 10:39:29 PM,Code 2 Transport,08/07/2014 11:10:49 PM,1400 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7301191034184, -122.387315155313)",142193465-67 +161000367,60,16039601,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:37:00 AM,04/09/2016 02:42:40 AM,04/09/2016 02:43:11 AM,04/09/2016 02:43:27 AM,04/09/2016 02:53:29 AM,04/09/2016 03:05:06 AM,04/09/2016 03:22:58 AM,Code 2 Transport,04/09/2016 04:04:54 AM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",161000367-60 +161000786,89,16039661,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:08:58 AM,04/09/2016 08:12:54 AM,04/09/2016 08:13:58 AM,04/09/2016 08:14:14 AM,04/09/2016 08:24:01 AM,04/09/2016 08:49:55 AM,04/09/2016 08:59:30 AM,Code 2 Transport,04/09/2016 09:42:01 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",161000786-89 +150741670,76,15028396,Medical Incident,03/15/2015,03/15/2015,03/15/2015 12:27:21 PM,03/15/2015 12:29:07 PM,03/15/2015 12:31:30 PM,03/15/2015 12:31:43 PM,03/15/2015 12:47:16 PM,03/15/2015 01:13:31 PM,03/15/2015 01:47:04 PM,Code 2 Transport,03/15/2015 02:13:26 PM,WILLIAMS AV/VAN DYKE AV,San Francisco,94124,B10,17,6536,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7292784549254, -122.392624534553)",150741670-76 +142631198,E08,14091940,Medical Incident,09/20/2014,09/20/2014,09/20/2014 10:04:27 AM,09/20/2014 10:07:59 AM,09/20/2014 10:08:45 AM,09/20/2014 10:08:57 AM,09/20/2014 10:16:19 AM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Code 2 Transport,09/20/2014 10:37:21 AM,0 Block of HARRIET ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7787390527615, -122.406871551052)",142631198-E08 +161000355,83,16039600,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:34:49 AM,04/09/2016 02:36:36 AM,04/09/2016 02:37:03 AM,04/09/2016 02:37:27 AM,04/09/2016 02:45:34 AM,04/09/2016 03:09:18 AM,04/09/2016 03:30:39 AM,Code 2 Transport,04/09/2016 04:05:17 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",161000355-83 +151783922,AM20,15067994,Medical Incident,06/27/2015,06/27/2015,06/27/2015 10:14:14 PM,06/27/2015 10:16:04 PM,06/27/2015 10:18:29 PM,06/27/2015 10:18:56 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Code 2 Transport,06/27/2015 10:20:18 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",151783922-AM20 +150322370,E19,15012417,Medical Incident,02/01/2015,02/01/2015,02/01/2015 03:34:00 PM,02/01/2015 03:35:18 PM,02/01/2015 03:35:54 PM,02/01/2015 03:36:41 PM,02/01/2015 03:43:51 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Other,02/01/2015 03:56:29 PM,600 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",150322370-E19 +141090262,E33,14036838,Medical Incident,04/19/2014,04/19/2014,04/19/2014 05:44:53 PM,04/19/2014 05:46:07 PM,04/19/2014 05:47:50 PM,04/19/2014 05:48:25 PM,04/19/2014 05:49:01 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Code 2 Transport,04/19/2014 06:30:09 PM,0 Block of CHUMASERO DR,SAN FRANCISCO,94132,B08,33,8422,,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",141090262-E33 +141250012,D3,14042201,Structure Fire,05/05/2014,05/04/2014,05/05/2014 12:34:00 AM,05/05/2014 12:37:54 AM,05/05/2014 12:38:22 AM,05/05/2014 12:39:59 AM,05/05/2014 12:43:00 AM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Fire,05/05/2014 12:43:27 AM,0 Block of MAXWELL CT,SAN FRANCISCO,94103,B02,6,5214,3,3,3,false,Alarm,1,CHIEF,5,2,8,Mission,"(37.7669025720969, -122.423141850936)",141250012-D3 +142741760,KM09,14096071,Medical Incident,10/01/2014,10/01/2014,10/01/2014 12:34:46 PM,10/01/2014 12:35:10 PM,10/01/2014 12:36:03 PM,10/01/2014 12:36:46 PM,10/01/2014 12:42:19 PM,10/01/2014 12:54:43 PM,10/01/2014 01:49:22 PM,Code 2 Transport,10/01/2014 01:53:43 PM,1400 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7747597843525, -122.41645729662)",142741760-KM09 +141090367,78,14036938,Medical Incident,04/19/2014,04/19/2014,04/19/2014 10:40:35 PM,04/19/2014 10:42:49 PM,04/19/2014 10:43:56 PM,04/19/2014 10:44:05 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Other,04/19/2014 10:45:41 PM,400 Block of 11TH ST,SAN FRANCISCO,94103,B02,36,5112,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7699815145584, -122.411754216546)",141090367-78 +161002141,76,16039820,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:55:28 PM,04/09/2016 03:57:35 PM,04/09/2016 03:58:17 PM,04/09/2016 03:58:24 PM,04/09/2016 04:16:59 PM,04/09/2016 04:29:21 PM,04/09/2016 04:55:52 PM,Code 2 Transport,04/09/2016 05:44:22 PM,300 Block of MISSION ST,San Francisco,94105,B03,35,2126,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",161002141-76 +150900315,E31,15034168,Medical Incident,03/31/2015,03/30/2015,03/31/2015 04:24:57 AM,03/31/2015 04:25:06 AM,03/31/2015 04:26:03 AM,03/31/2015 04:28:17 AM,03/31/2015 04:30:35 AM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Code 2 Transport,03/31/2015 04:36:11 AM,700 Block of 5TH AVE,San Francisco,94118,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7745856548117, -122.462813355104)",150900315-E31 +160990804,73,16039217,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:41:22 AM,04/08/2016 08:42:43 AM,04/08/2016 08:42:57 AM,04/08/2016 08:43:20 AM,04/08/2016 08:51:14 AM,04/08/2016 09:08:31 AM,04/08/2016 09:24:20 AM,Code 2 Transport,04/08/2016 09:48:15 AM,0 Block of CHENERY ST,San Francisco,94131,B06,11,5574,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7409632777896, -122.425764645931)",160990804-73 +150180979,83,15007044,Medical Incident,01/18/2015,01/18/2015,01/18/2015 09:01:06 AM,01/18/2015 09:02:21 AM,01/18/2015 09:04:57 AM,01/18/2015 09:05:07 AM,01/18/2015 09:11:03 AM,01/18/2015 09:36:05 AM,01/18/2015 09:44:06 AM,Code 2 Transport,01/18/2015 10:09:29 AM,100 Block of HARVARD ST,San Francisco,94134,B09,42,6144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7276898631505, -122.421178656883)",150180979-83 +151451746,AM04,15055177,Medical Incident,05/25/2015,05/25/2015,05/25/2015 02:07:09 PM,05/25/2015 02:07:46 PM,05/25/2015 02:08:18 PM,05/25/2015 02:09:22 PM,05/25/2015 02:11:19 PM,05/25/2015 02:27:13 PM,05/25/2015 02:58:46 PM,Code 2 Transport,05/25/2015 03:38:25 PM,CLIPPER ST/CASTRO ST,San Francisco,94114,B06,11,5546,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.748895972897, -122.433851104399)",151451746-AM04 +143580807,70,14128046,Medical Incident,12/24/2014,12/24/2014,12/24/2014 08:44:19 AM,12/24/2014 08:45:46 AM,12/24/2014 08:46:02 AM,12/24/2014 08:47:25 AM,12/24/2014 09:06:45 AM,12/24/2014 09:06:47 AM,04/25/2016 01:13:15 PM,Code 2 Transport,12/24/2014 10:00:59 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",143580807-70 +150850812,B08,15032345,Odor (Strange / Unknown),03/26/2015,03/26/2015,03/26/2015 08:26:09 AM,03/26/2015 08:28:02 AM,03/26/2015 08:28:18 AM,03/26/2015 08:29:40 AM,03/26/2015 08:33:24 AM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Fire,03/26/2015 08:45:52 AM,1200 Block of 27TH AVE,San Francisco,94122,B08,22,7511,3,3,3,false,Alarm,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7641233017365, -122.485834041845)",150850812-B08 +160941463,61,16037236,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:13:38 AM,04/03/2016 11:15:56 AM,04/03/2016 11:17:01 AM,04/03/2016 11:17:16 AM,04/03/2016 11:38:56 AM,04/03/2016 11:54:53 AM,04/03/2016 12:07:45 PM,Code 2 Transport,04/03/2016 12:53:29 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160941463-61 +142720522,E01,14095273,Structure Fire,09/29/2014,09/28/2014,09/29/2014 06:41:42 AM,09/29/2014 06:41:42 AM,09/29/2014 06:41:48 AM,09/29/2014 06:43:43 AM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Fire,09/29/2014 06:43:50 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",142720522-E01 +152513375,RS1,15096055,Structure Fire,09/08/2015,09/08/2015,09/08/2015 06:29:25 PM,09/08/2015 06:30:36 PM,09/08/2015 06:30:53 PM,09/08/2015 06:31:06 PM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,Fire,09/08/2015 06:39:03 PM,0 Block of HOBART AL,San Francisco,94102,B01,3,1463,3,3,3,false,Alarm,1,RESCUE SQUAD,11,1,3,Nob Hill,"(37.7885613392931, -122.411614463637)",152513375-RS1 +141322151,KM11,14044990,Medical Incident,05/12/2014,05/12/2014,05/12/2014 03:25:29 PM,05/12/2014 03:27:42 PM,05/12/2014 03:30:28 PM,05/12/2014 03:36:17 PM,05/12/2014 03:50:20 PM,05/12/2014 04:00:12 PM,05/12/2014 04:17:41 PM,Code 2 Transport,05/12/2014 05:09:27 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",141322151-KM11 +142170730,E01,14075154,Medical Incident,08/05/2014,08/05/2014,08/05/2014 08:39:38 AM,08/05/2014 08:41:48 AM,08/05/2014 08:44:51 AM,08/05/2014 08:46:51 AM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Code 2 Transport,08/05/2014 08:47:07 AM,NEW MONTGOMERY ST/MARKET ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",142170730-E01 +153473432,E11,15133872,Medical Incident,12/13/2015,12/13/2015,12/13/2015 10:24:30 PM,12/13/2015 10:25:25 PM,12/13/2015 10:25:44 PM,12/13/2015 10:27:17 PM,12/13/2015 10:33:10 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Code 2 Transport,12/13/2015 10:42:54 PM,1200 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7531743146878, -122.416270507567)",153473432-E11 +152402746,E21,15091507,Gas Leak (Natural and LP Gases),08/28/2015,08/28/2015,08/28/2015 03:57:07 PM,08/28/2015 03:58:09 PM,08/28/2015 03:58:22 PM,08/28/2015 03:59:42 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Cancelled,08/28/2015 04:01:59 PM,1300 Block of MASONIC AVE,San Francisco,94117,B05,21,4466,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7683637280532, -122.444850432801)",152402746-E21 +153113832,E03,15119745,Structure Fire,11/07/2015,11/07/2015,11/07/2015 11:15:02 PM,11/07/2015 11:15:02 PM,11/07/2015 11:16:29 PM,11/07/2015 11:17:00 PM,11/07/2015 11:18:08 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/07/2015 11:18:39 PM,VAN NESS AV/POST ST,San Francisco,94109,B04,3,3161,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",153113832-E03 +153390025,75,15130285,Medical Incident,12/05/2015,12/04/2015,12/05/2015 12:05:53 AM,12/05/2015 12:09:54 AM,12/05/2015 12:10:33 AM,12/05/2015 12:11:18 AM,12/05/2015 12:18:19 AM,12/05/2015 12:38:30 AM,12/05/2015 12:58:23 AM,Code 2 Transport,12/05/2015 01:46:56 AM,0 Block of REGENT ST,San Francisco,94112,B09,33,8357,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7096080859245, -122.456497387361)",153390025-75 +141412101,86,14048376,Medical Incident,05/21/2014,05/21/2014,05/21/2014 02:41:48 PM,05/21/2014 02:42:28 PM,05/21/2014 02:55:53 PM,05/21/2014 02:56:24 PM,05/21/2014 03:07:58 PM,05/21/2014 03:18:45 PM,05/21/2014 03:35:59 PM,Code 2 Transport,05/21/2014 04:06:07 PM,200 Block of BAY ST,San Francisco,94133,B01,28,1341,3,3,3,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.805980597443, -122.411141131856)",141412101-86 +141821319,T13,14062963,Alarms,07/01/2014,07/01/2014,07/01/2014 11:28:08 AM,07/01/2014 11:30:45 AM,07/01/2014 11:31:43 AM,07/01/2014 11:33:00 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,07/01/2014 11:35:52 AM,300 Block of BUSH ST,San Francisco,94108,B01,13,1235,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7908110082822, -122.403187069325)",141821319-T13 +160953379,72,16037765,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:15:41 PM,04/04/2016 07:15:41 PM,04/04/2016 07:16:00 PM,04/04/2016 07:16:17 PM,04/04/2016 07:17:22 PM,04/04/2016 07:48:33 PM,04/04/2016 08:13:18 PM,Code 2 Transport,04/04/2016 08:50:11 PM,3RD ST/PALOU AV,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",160953379-72 +150220388,KM07,15008464,Medical Incident,01/22/2015,01/21/2015,01/22/2015 05:15:32 AM,01/22/2015 05:15:32 AM,01/22/2015 05:16:38 AM,01/22/2015 05:17:31 AM,01/22/2015 05:18:52 AM,01/22/2015 05:34:06 AM,01/22/2015 06:01:03 AM,Code 2 Transport,01/22/2015 06:39:50 AM,10TH ST/HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7740433259374, -122.414367692219)",150220388-KM07 +160922170,86,16036481,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:10:14 PM,04/01/2016 03:10:45 PM,04/01/2016 03:11:19 PM,04/01/2016 03:11:38 PM,04/01/2016 03:20:27 PM,04/01/2016 03:36:59 PM,04/01/2016 03:40:52 PM,Code 3 Transport,04/01/2016 04:46:38 PM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",160922170-86 +160974190,55,16038669,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:06:39 PM,04/06/2016 09:11:39 PM,04/06/2016 09:12:07 PM,04/06/2016 09:12:18 PM,04/06/2016 09:19:58 PM,04/06/2016 09:52:53 PM,04/06/2016 10:14:52 PM,Code 2 Transport,04/06/2016 10:51:50 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160974190-55 +142193358,E28,14076119,Medical Incident,08/07/2014,08/07/2014,08/07/2014 09:12:34 PM,08/07/2014 09:13:50 PM,08/07/2014 09:14:03 PM,08/07/2014 09:15:21 PM,08/07/2014 09:17:00 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Code 2 Transport,08/07/2014 09:31:03 PM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",142193358-E28 +160963506,71,16038157,Citizen Assist / Service Call,04/05/2016,04/05/2016,04/05/2016 07:31:37 PM,04/05/2016 07:33:38 PM,04/05/2016 07:43:49 PM,04/05/2016 07:43:55 PM,04/05/2016 07:49:01 PM,04/05/2016 08:21:06 PM,04/05/2016 08:36:20 PM,Code 2 Transport,04/05/2016 09:32:44 PM,500 Block of DOUGLASS ST,San Francisco,94114,B06,24,5463,3,3,3,true,Alarm,1,MEDIC,2,6,8,Noe Valley,"(37.7548278298402, -122.438908779565)",160963506-71 +141530133,B04,14052410,Alarms,06/02/2014,06/01/2014,06/02/2014 01:28:38 AM,06/02/2014 01:29:41 AM,06/02/2014 01:30:50 AM,06/02/2014 01:32:14 AM,06/02/2014 01:35:27 AM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Fire,06/02/2014 01:46:19 AM,1500 Block of GREENWICH ST,San Francisco,94123,B04,16,3234,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8002564054218, -122.425169010729)",141530133-B04 +152671914,E06,15102286,Medical Incident,09/24/2015,09/24/2015,09/24/2015 01:00:54 PM,09/24/2015 01:01:49 PM,09/24/2015 01:02:13 PM,09/24/2015 01:03:34 PM,09/24/2015 01:05:27 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,Code 2 Transport,09/24/2015 01:17:50 PM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",152671914-E06 +150372735,56,15014419,Traffic Collision,02/06/2015,02/06/2015,02/06/2015 05:19:09 PM,02/06/2015 05:19:09 PM,02/06/2015 05:19:25 PM,02/06/2015 05:19:42 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Code 2 Transport,02/06/2015 05:20:55 PM,MASON ST/ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",150372735-56 +152581069,RS2,15098579,Other,09/15/2015,09/15/2015,09/15/2015 09:31:42 AM,09/15/2015 09:31:42 AM,09/15/2015 09:40:38 AM,09/15/2015 09:40:42 AM,09/15/2015 09:43:46 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Fire,09/15/2015 10:52:18 AM,700 Block of DUNCAN ST,San Francisco,94131,B06,26,5554,3,3,3,false,Alarm,1,RESCUE SQUAD,1,6,8,Noe Valley,"(37.7454374718214, -122.43684601016)",152581069-RS2 +151900431,KM04,15072434,Medical Incident,07/09/2015,07/08/2015,07/09/2015 05:23:21 AM,07/09/2015 05:24:29 AM,07/09/2015 05:24:52 AM,07/09/2015 05:25:27 AM,07/09/2015 05:32:09 AM,07/09/2015 05:52:31 AM,07/09/2015 06:15:18 AM,Code 2 Transport,07/09/2015 06:56:24 AM,200 Block of STONECREST DR,San Francisco,94132,B08,19,8725,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7257458500807, -122.474261031114)",151900431-KM04 +142383283,RC3,14082915,Medical Incident,08/26/2014,08/26/2014,08/26/2014 07:53:40 PM,08/26/2014 07:54:50 PM,08/26/2014 08:04:27 PM,08/26/2014 08:05:25 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Code 3 Transport,08/26/2014 08:09:45 PM,200 Block of PARQUE DR,San Francisco,94134,B09,43,6245,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,9,10,Visitacion Valley,"(37.709998706156, -122.422592099161)",142383283-RC3 +160980982,72,16038823,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:46:14 AM,04/07/2016 08:48:21 AM,04/07/2016 08:49:55 AM,04/07/2016 08:50:04 AM,04/07/2016 09:05:31 AM,04/07/2016 09:26:03 AM,04/07/2016 10:03:31 AM,Code 2 Transport,04/07/2016 10:24:51 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",160980982-72 +152103309,60,15080124,Medical Incident,07/29/2015,07/29/2015,07/29/2015 07:42:19 PM,07/29/2015 07:42:19 PM,07/29/2015 07:43:21 PM,07/29/2015 07:43:28 PM,07/29/2015 07:52:58 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Patient Declined Transport,07/29/2015 08:05:33 PM,FOLSOM ST/LANGTON ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7763183873742, -122.40838011352)",152103309-60 +160980719,71,16038803,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:23:24 AM,04/07/2016 07:26:44 AM,04/07/2016 07:27:30 AM,04/07/2016 07:27:39 AM,04/07/2016 07:40:48 AM,04/07/2016 08:05:56 AM,04/07/2016 08:19:30 AM,Code 3 Transport,04/07/2016 09:22:38 AM,0 Block of OLIVER ST,San Francisco,94112,B09,33,6212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7089141999968, -122.450236359264)",160980719-71 +160931177,61,16036792,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:20:17 AM,04/02/2016 10:20:43 AM,04/02/2016 10:21:42 AM,04/02/2016 10:22:01 AM,04/02/2016 10:28:27 AM,04/02/2016 10:45:55 AM,04/02/2016 11:11:20 AM,Code 2 Transport,04/02/2016 11:41:45 AM,100 Block of DAY ST,San Francisco,94131,B06,11,5563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.742911282819, -122.425446540944)",160931177-61 +150581120,E01,15022101,Medical Incident,02/27/2015,02/27/2015,02/27/2015 09:54:10 AM,02/27/2015 09:55:11 AM,02/27/2015 09:55:33 AM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Unable to Locate,02/27/2015 09:56:35 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",150581120-E01 +152590260,E09,15098899,Structure Fire,09/16/2015,09/15/2015,09/16/2015 03:05:39 AM,09/16/2015 03:08:38 AM,09/16/2015 03:09:28 AM,09/16/2015 03:13:36 AM,04/25/2016 01:08:19 PM,04/25/2016 01:08:19 PM,04/25/2016 01:08:19 PM,Fire,09/16/2015 03:14:36 AM,25TH ST/3RD ST,San Francisco,94107,B10,25,2611,3,3,3,true,Alarm,1,ENGINE,10,10,10,Bayview Hunters Point,"(37.7528356119566, -122.38775628178)",152590260-E09 +150724132,E21,15027716,Medical Incident,03/13/2015,03/13/2015,03/13/2015 10:27:36 PM,03/13/2015 10:27:36 PM,03/13/2015 10:28:08 PM,03/13/2015 10:29:59 PM,03/13/2015 10:29:59 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Code 2 Transport,03/13/2015 10:45:38 PM,0 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4247,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7705968083436, -122.439656029792)",150724132-E21 +152470286,T17,15094074,Other,09/04/2015,09/03/2015,09/04/2015 02:40:59 AM,09/04/2015 02:40:59 AM,09/04/2015 02:41:51 AM,09/04/2015 02:45:00 AM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Patient Declined Transport,09/04/2015 02:52:32 AM,200 Block of SAWYER ST,San Francisco,94134,B09,44,6263,3,3,3,false,Alarm,1,TRUCK,3,9,10,Visitacion Valley,"(37.7146687723374, -122.413812172304)",152470286-T17 +142370410,B04,14082307,Alarms,08/25/2014,08/24/2014,08/25/2014 04:52:16 AM,08/25/2014 04:53:50 AM,08/25/2014 04:53:59 AM,08/25/2014 04:55:56 AM,08/25/2014 05:00:21 AM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,Fire,08/25/2014 05:05:40 AM,2800 Block of DIVISADERO ST,San Francisco,94123,B04,16,4165,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.7957761463173, -122.442064661028)",142370410-B04 +142983152,72,14105320,Medical Incident,10/25/2014,10/25/2014,10/25/2014 07:37:19 PM,10/25/2014 07:37:47 PM,10/25/2014 07:39:04 PM,10/25/2014 07:39:28 PM,10/25/2014 07:47:15 PM,10/25/2014 07:58:23 PM,10/25/2014 08:23:10 PM,Code 2 Transport,10/25/2014 08:32:52 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",142983152-72 +150300638,B03,15011469,Alarms,01/30/2015,01/29/2015,01/30/2015 07:11:12 AM,01/30/2015 07:13:27 AM,01/30/2015 07:13:42 AM,01/30/2015 07:14:34 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Fire,01/30/2015 07:25:38 AM,200 Block of AVENUE B,Treasure Isla,94130,B03,48,2931,3,3,3,false,Alarm,1,CHIEF,3,None,6,Treasure Island,"(37.8192429968563, -122.373006045389)",150300638-B03 +152480220,63,15094509,Medical Incident,09/05/2015,09/04/2015,09/05/2015 01:23:11 AM,09/05/2015 01:24:13 AM,09/05/2015 01:24:27 AM,09/05/2015 01:24:37 AM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Code 2 Transport,09/05/2015 01:25:03 AM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",152480220-63 +142752728,KM10,14096574,Medical Incident,10/02/2014,10/02/2014,10/02/2014 04:40:11 PM,10/02/2014 04:41:56 PM,10/02/2014 04:42:23 PM,10/02/2014 04:43:03 PM,10/02/2014 04:47:46 PM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,No Merit,10/02/2014 04:48:58 PM,1300 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",142752728-KM10 +150750069,57,15028616,Medical Incident,03/16/2015,03/15/2015,03/16/2015 12:29:36 AM,03/16/2015 12:30:44 AM,03/16/2015 12:30:59 AM,03/16/2015 12:31:07 AM,03/16/2015 12:36:10 AM,03/16/2015 12:50:43 AM,03/16/2015 01:00:25 AM,Code 3 Transport,03/16/2015 01:23:01 AM,100 Block of DAY ST,San Francisco,94131,B06,11,5563,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,6,8,Noe Valley,"(37.7430208234357, -122.42545698897)",150750069-57 +152621206,D2,15100091,Medical Incident,09/19/2015,09/19/2015,09/19/2015 09:49:16 AM,09/19/2015 09:49:26 AM,09/19/2015 09:57:34 AM,09/19/2015 09:57:34 AM,09/19/2015 09:57:34 AM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/19/2015 10:14:57 AM,42ND AV/FULTON ST,San Francisco,94121,B07,34,7271,2,3,3,false,Potentially Life-Threatening,1,CHIEF,2,7,1,Outer Richmond,"(37.7717384269802, -122.502399614392)",152621206-D2 +160943012,70,16037379,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:56:38 PM,04/03/2016 06:57:01 PM,04/03/2016 06:57:38 PM,04/03/2016 06:59:20 PM,04/03/2016 07:01:29 PM,04/03/2016 07:11:22 PM,04/03/2016 07:19:22 PM,Code 2 Transport,04/03/2016 07:58:05 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160943012-70 +160983803,78,16039120,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:49:15 PM,04/07/2016 09:50:05 PM,04/07/2016 09:50:15 PM,04/07/2016 09:50:22 PM,04/07/2016 09:55:58 PM,04/07/2016 10:13:37 PM,04/07/2016 10:28:09 PM,Code 2 Transport,04/07/2016 11:10:11 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160983803-78 +161003117,AM20,16039937,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:58:59 PM,04/09/2016 09:00:22 PM,04/09/2016 09:00:55 PM,04/09/2016 09:01:34 PM,04/09/2016 09:17:36 PM,04/09/2016 09:26:43 PM,04/09/2016 09:41:22 PM,Code 2 Transport,04/09/2016 10:09:26 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",161003117-AM20 +160972630,53,16038486,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:14:39 PM,04/06/2016 03:15:55 PM,04/06/2016 03:16:14 PM,04/06/2016 03:16:36 PM,04/06/2016 03:30:58 PM,04/06/2016 03:39:06 PM,04/06/2016 03:55:49 PM,Code 2 Transport,04/06/2016 04:40:58 PM,400 Block of RALSTON ST,San Francisco,94132,B09,33,8432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7206536751646, -122.469031881518)",160972630-53 +151284008,79,15048781,Medical Incident,05/08/2015,05/08/2015,05/08/2015 11:42:31 PM,05/08/2015 11:44:34 PM,05/08/2015 11:45:45 PM,05/08/2015 11:46:02 PM,05/08/2015 11:52:17 PM,05/09/2015 12:39:01 AM,05/09/2015 12:54:37 AM,Code 2 Transport,05/09/2015 01:18:56 AM,400 Block of POWELL ST,San Francisco,94108,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",151284008-79 +141250259,T18,14042402,Medical Incident,05/05/2014,05/05/2014,05/05/2014 03:08:12 PM,05/05/2014 03:10:18 PM,05/05/2014 03:11:16 PM,05/05/2014 03:12:35 PM,05/05/2014 03:14:16 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 03:32:15 PM,2100 Block of 32ND AVE,SAN FRANCISCO,94116,B08,18,7532,,2,2,false,Non Life-threatening,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7470947465854, -122.490012839631)",141250259-T18 +150623996,E01,15023869,Medical Incident,03/03/2015,03/03/2015,03/03/2015 11:11:04 PM,03/03/2015 11:11:04 PM,03/03/2015 11:11:26 PM,03/03/2015 11:14:46 PM,03/03/2015 11:15:59 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Code 2 Transport,03/03/2015 11:19:42 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",150623996-E01 +142572661,E18,14089877,Electrical Hazard,09/14/2014,09/14/2014,09/14/2014 07:09:41 PM,09/14/2014 07:11:31 PM,09/14/2014 07:11:37 PM,09/14/2014 07:12:45 PM,09/14/2014 07:46:34 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 07:46:35 PM,32ND AV/RIVERA ST,San Francisco,94116,B08,18,7532,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7461649463405, -122.489878757322)",142572661-E18 +160961717,KM11,16038001,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:30:58 PM,04/05/2016 12:32:55 PM,04/05/2016 12:33:16 PM,04/05/2016 12:34:22 PM,04/05/2016 12:39:35 PM,04/05/2016 12:56:52 PM,04/05/2016 01:10:46 PM,Code 2 Transport,04/05/2016 01:43:50 PM,100 Block of EASTWOOD DR,San Francisco,94112,B09,15,8515,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7284181604487, -122.457375298028)",160961717-KM11 +160940708,AM02,16037170,Medical Incident,04/03/2016,04/02/2016,04/03/2016 06:10:15 AM,04/03/2016 06:12:34 AM,04/03/2016 06:12:45 AM,04/03/2016 06:13:45 AM,04/03/2016 06:22:29 AM,04/03/2016 06:41:22 AM,04/03/2016 07:02:35 AM,Code 2 Transport,04/03/2016 07:27:33 AM,0 Block of GEARY ST,San Francisco,94108,B01,1,1241,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",160940708-AM02 +143371423,E07,14119503,Medical Incident,12/03/2014,12/03/2014,12/03/2014 10:21:09 AM,12/03/2014 10:21:56 AM,12/03/2014 10:22:12 AM,12/03/2014 10:22:38 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Code 3 Transport,12/03/2014 10:42:37 AM,900 Block of HAMPSHIRE ST,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7569109782313, -122.407609182364)",143371423-E07 +152632761,53,15100759,Structure Fire,09/20/2015,09/20/2015,09/20/2015 05:17:23 PM,09/20/2015 05:17:40 PM,09/20/2015 05:18:07 PM,09/20/2015 05:18:16 PM,09/20/2015 05:25:20 PM,09/20/2015 05:53:44 PM,09/20/2015 05:56:17 PM,Code 2 Transport,09/20/2015 06:26:13 PM,3600 Block of MARKET ST,San Francisco,94131,B06,24,5266,3,3,3,true,Alarm,1,MEDIC,5,6,8,Twin Peaks,"(37.7559026729381, -122.441182203057)",152632761-53 +153272154,E42,15125906,Medical Incident,11/23/2015,11/23/2015,11/23/2015 02:35:34 PM,11/23/2015 02:38:07 PM,11/23/2015 02:38:38 PM,11/23/2015 02:39:38 PM,11/23/2015 02:44:38 PM,04/25/2016 01:07:02 PM,04/25/2016 01:07:02 PM,Code 3 Transport,11/23/2015 03:29:31 PM,700 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5643,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",153272154-E42 +152963834,71,15113859,Medical Incident,10/23/2015,10/23/2015,10/23/2015 09:59:42 PM,10/23/2015 10:01:02 PM,10/23/2015 10:01:38 PM,10/23/2015 10:01:44 PM,10/23/2015 10:12:21 PM,10/23/2015 10:27:22 PM,10/23/2015 10:37:28 PM,Code 2 Transport,10/23/2015 11:00:40 PM,1600 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7358945658935, -122.391072078488)",152963834-71 +160970209,52,16038258,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:06:24 AM,04/06/2016 02:07:27 AM,04/06/2016 02:07:53 AM,04/06/2016 02:07:59 AM,04/06/2016 02:13:18 AM,04/06/2016 02:16:29 AM,04/06/2016 02:44:56 AM,Code 2 Transport,04/06/2016 03:12:48 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160970209-52 +142860736,D3,14100744,Structure Fire,10/13/2014,10/13/2014,10/13/2014 08:07:34 AM,10/13/2014 08:08:14 AM,10/13/2014 08:08:45 AM,10/13/2014 08:09:46 AM,10/13/2014 08:15:08 AM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/13/2014 08:35:48 AM,600 Block of BANKS ST,San Francisco,94110,B06,32,5747,3,3,3,false,Fire,1,CHIEF,4,10,9,Bernal Heights,"(37.7352750398091, -122.41294735201)",142860736-D3 +141580361,E21,14054305,Traffic Collision,06/07/2014,06/06/2014,06/07/2014 03:12:20 AM,06/07/2014 03:13:54 AM,06/07/2014 03:14:11 AM,06/07/2014 03:15:14 AM,06/07/2014 03:17:44 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Patient Declined Transport,06/07/2014 03:19:07 AM,FULTON ST/STANYAN ST,San Francisco,94122,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7747554836103, -122.454682645753)",141580361-E21 +150322834,83,15012463,Medical Incident,02/01/2015,02/01/2015,02/01/2015 06:03:10 PM,02/01/2015 06:03:10 PM,02/01/2015 06:03:44 PM,02/01/2015 06:04:57 PM,02/01/2015 06:10:58 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Gone on Arrival,02/01/2015 06:16:09 PM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",150322834-83 +160961852,63,16038021,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:06:49 PM,04/05/2016 01:08:20 PM,04/05/2016 01:10:01 PM,04/05/2016 01:10:29 PM,04/05/2016 01:17:38 PM,04/05/2016 01:35:45 PM,04/05/2016 02:07:04 PM,Code 2 Transport,04/05/2016 02:38:07 PM,400 Block of BUSH ST,San Francisco,94108,B01,13,1315,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7907445241029, -122.404594467289)",160961852-63 +151293159,56,15049087,Medical Incident,05/09/2015,05/09/2015,05/09/2015 07:28:21 PM,05/09/2015 07:29:34 PM,05/09/2015 07:29:52 PM,05/09/2015 07:30:47 PM,05/09/2015 07:32:17 PM,05/09/2015 07:57:25 PM,05/09/2015 08:17:19 PM,Code 2 Transport,05/09/2015 08:44:01 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",151293159-56 +151771483,E38,15067351,Structure Fire,06/26/2015,06/26/2015,06/26/2015 11:42:43 AM,06/26/2015 11:43:20 AM,06/26/2015 11:43:58 AM,06/26/2015 11:44:41 AM,06/26/2015 11:46:55 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Fire,06/26/2015 11:54:46 AM,2400 Block of SCOTT ST,San Francisco,94115,B04,38,4123,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7922741323429, -122.439645100406)",151771483-E38 +141431632,E42,14049055,Medical Incident,05/23/2014,05/23/2014,05/23/2014 01:04:34 PM,05/23/2014 01:04:34 PM,05/23/2014 01:04:34 PM,05/23/2014 01:04:34 PM,05/23/2014 01:04:34 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Fire,05/23/2014 01:25:34 PM,2400 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7318198889718, -122.405412091734)",141431632-E42 +141331393,E17,14045290,Medical Incident,05/13/2014,05/13/2014,05/13/2014 11:45:20 AM,05/13/2014 11:46:55 AM,05/13/2014 11:47:16 AM,05/13/2014 11:48:25 AM,05/13/2014 11:52:58 AM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/13/2014 12:08:07 PM,1000 Block of INGERSON AVE,San Francisco,94124,B10,17,6612,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7196891289383, -122.393876588978)",141331393-E17 +160922210,KM09,16036489,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:19:08 PM,04/01/2016 03:20:30 PM,04/01/2016 03:21:06 PM,04/01/2016 03:22:06 PM,04/01/2016 03:41:02 PM,04/01/2016 04:13:23 PM,04/01/2016 04:37:20 PM,Code 2 Transport,04/01/2016 05:31:47 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160922210-KM09 +160972641,AM04,16038487,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 03:18:33 PM,04/06/2016 03:18:56 PM,04/06/2016 03:19:20 PM,04/06/2016 03:19:47 PM,04/06/2016 03:32:56 PM,04/06/2016 03:49:32 PM,04/06/2016 04:11:44 PM,Code 2 Transport,04/06/2016 04:39:42 PM,DIVISADERO ST/GEARY BL,San Francisco,94115,B05,10,4154,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833084876653, -122.439480381269)",160972641-AM04 +141703258,RC2,14058860,Medical Incident,06/19/2014,06/19/2014,06/19/2014 08:39:41 PM,06/19/2014 08:41:27 PM,06/19/2014 08:42:51 PM,06/19/2014 08:43:50 PM,06/19/2014 08:54:41 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Against Medical Advice,06/19/2014 09:06:36 PM,1200 Block of 39TH AVE,San Francisco,94122,B08,23,7626,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7635527078831, -122.498690380377)",141703258-RC2 +160971501,82,16038378,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:05:43 AM,04/06/2016 11:07:08 AM,04/06/2016 11:10:24 AM,04/06/2016 11:10:33 AM,04/06/2016 11:19:54 AM,04/06/2016 11:36:27 AM,04/06/2016 11:48:34 AM,Code 2 Transport,04/06/2016 12:39:00 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160971501-82 +150103263,E11,15004131,Medical Incident,01/10/2015,01/10/2015,01/10/2015 09:10:07 PM,01/10/2015 09:11:43 PM,01/10/2015 09:12:12 PM,01/10/2015 09:15:02 PM,01/10/2015 09:15:02 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Against Medical Advice,01/10/2015 09:28:36 PM,100 Block of 27TH ST,San Francisco,94110,B06,11,5556,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7471574360743, -122.423541884062)",150103263-E11 +142571002,B03,14089725,Water Rescue,09/14/2014,09/14/2014,09/14/2014 09:35:57 AM,09/14/2014 09:36:33 AM,09/14/2014 09:38:10 AM,09/14/2014 09:39:47 AM,09/14/2014 09:43:43 AM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 09:51:06 AM,500 Block of THE EMBARCADERO,San Francisco,94111,B03,35,930,3,3,3,false,Fire,1,CHIEF,6,1,3,Financial District/South Beach,"(37.7999726402856, -122.398572299445)",142571002-B03 +143191920,KM06,14112987,Medical Incident,11/15/2014,11/15/2014,11/15/2014 01:39:25 PM,11/15/2014 01:42:19 PM,11/15/2014 01:43:20 PM,11/15/2014 01:43:54 PM,11/15/2014 02:10:05 PM,11/15/2014 02:10:06 PM,11/15/2014 02:19:52 PM,Code 2 Transport,11/15/2014 02:56:52 PM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7801357011746, -122.40877066526)",143191920-KM06 +160971656,85,16038391,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:43:10 AM,04/06/2016 11:44:53 AM,04/06/2016 11:45:03 AM,04/06/2016 11:45:46 AM,04/06/2016 11:51:37 AM,04/06/2016 12:00:42 PM,04/06/2016 12:23:54 PM,Code 2 Transport,04/06/2016 01:02:13 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160971656-85 +142440413,T03,14084890,Structure Fire,09/01/2014,08/31/2014,09/01/2014 03:01:56 AM,09/01/2014 03:01:56 AM,09/01/2014 03:02:36 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Fire,09/01/2014 03:05:41 AM,0 Block of VAN NESS AVE,San Francisco,94102,B02,36,3211,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7752607728259, -122.419431229777)",142440413-T03 +160963926,85,16038196,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:56:20 PM,04/05/2016 09:59:42 PM,04/05/2016 09:59:52 PM,04/05/2016 10:00:00 PM,04/05/2016 10:09:25 PM,04/05/2016 10:31:00 PM,04/05/2016 10:36:20 PM,Code 2 Transport,04/05/2016 11:18:03 PM,FILLMORE ST/EDDY ST,San Francisco,94115,B05,5,3536,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7814283698384, -122.432328983123)",160963926-85 +143543633,E03,14126627,Citizen Assist / Service Call,12/20/2014,12/20/2014,12/20/2014 06:15:01 PM,12/20/2014 06:15:37 PM,12/20/2014 06:28:03 PM,12/20/2014 06:29:32 PM,12/20/2014 06:31:54 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Code 2 Transport,12/20/2014 06:51:02 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",143543633-E03 +153161542,83,15121404,Medical Incident,11/12/2015,11/12/2015,11/12/2015 11:40:36 AM,11/12/2015 11:43:23 AM,11/12/2015 11:43:52 AM,11/12/2015 11:45:37 AM,11/12/2015 12:10:52 PM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,Unable to Locate,11/12/2015 12:16:46 PM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",153161542-83 +141240134,84,14041984,Medical Incident,05/04/2014,05/04/2014,05/04/2014 11:44:39 AM,05/04/2014 11:46:37 AM,05/04/2014 11:47:03 AM,05/04/2014 11:48:04 AM,05/04/2014 11:58:13 AM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Medical Examiner,05/04/2014 12:33:32 PM,300 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",141240134-84 +160941043,AM08,16037205,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:08:02 AM,04/03/2016 09:09:13 AM,04/03/2016 09:09:38 AM,04/03/2016 09:10:31 AM,04/03/2016 09:14:40 AM,04/03/2016 09:27:24 AM,04/03/2016 09:47:22 AM,Code 2 Transport,04/03/2016 10:18:18 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160941043-AM08 +150563366,E44,15021555,Medical Incident,02/25/2015,02/25/2015,02/25/2015 07:36:41 PM,02/25/2015 07:38:12 PM,02/25/2015 07:50:30 PM,02/25/2015 07:52:11 PM,02/25/2015 07:56:43 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Code 3 Transport,02/25/2015 08:36:38 PM,100 Block of GILLETTE AVE,San Francisco,94134,B10,44,6273,2,E,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7106753239004, -122.396529453587)",150563366-E44 +160953526,AM22,16037779,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:09:08 PM,04/04/2016 08:09:28 PM,04/04/2016 08:10:14 PM,04/04/2016 08:11:07 PM,04/04/2016 08:12:48 PM,04/04/2016 08:32:25 PM,04/04/2016 08:44:12 PM,Code 2 Transport,04/04/2016 09:23:47 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160953526-AM22 +150433432,71,15016881,Medical Incident,02/12/2015,02/12/2015,02/12/2015 08:10:23 PM,02/12/2015 08:11:56 PM,02/12/2015 08:12:10 PM,02/12/2015 08:12:54 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,No Merit,02/12/2015 08:15:07 PM,400 Block of THE EMBARCADERO,San Francisco,94111,B03,35,926,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",150433432-71 +150331017,56,15012661,Medical Incident,02/02/2015,02/02/2015,02/02/2015 09:35:04 AM,02/02/2015 09:36:33 AM,02/02/2015 09:36:45 AM,02/02/2015 09:37:05 AM,02/02/2015 09:41:15 AM,02/02/2015 10:23:02 AM,02/02/2015 10:35:38 AM,Code 2 Transport,02/02/2015 11:21:03 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361676975957, -122.389641795036)",150331017-56 +153113358,E13,15119714,Alarms,11/07/2015,11/07/2015,11/07/2015 08:49:50 PM,11/07/2015 08:51:56 PM,11/07/2015 08:52:07 PM,11/07/2015 08:52:30 PM,11/07/2015 08:54:46 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/07/2015 08:56:43 PM,700 Block of MONTGOMERY ST,San Francisco,94111,B01,13,1232,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7959833924502, -122.403338490355)",153113358-E13 +150492647,E13,15019036,Medical Incident,02/18/2015,02/18/2015,02/18/2015 04:07:02 PM,02/18/2015 04:07:59 PM,02/18/2015 04:08:25 PM,02/18/2015 04:09:39 PM,02/18/2015 04:11:12 PM,04/25/2016 01:12:10 PM,04/25/2016 01:12:10 PM,Code 3 Transport,02/18/2015 04:29:03 PM,600 Block of JACKSON ST,San Francisco,94108,B01,2,1312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.796045564581, -122.406033060722)",150492647-E13 +160991292,88,16039266,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:13:57 AM,04/08/2016 11:16:01 AM,04/08/2016 11:16:42 AM,04/08/2016 11:17:02 AM,04/08/2016 11:28:15 AM,04/08/2016 11:41:42 AM,04/08/2016 11:56:10 AM,Code 2 Transport,04/08/2016 12:39:55 PM,2700 Block of BRODERICK ST,San Francisco,94123,B04,16,4225,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7955809223543, -122.443599027931)",160991292-88 +141040339,E15,14035223,Medical Incident,04/14/2014,04/14/2014,04/14/2014 09:05:19 PM,04/14/2014 09:07:16 PM,04/14/2014 09:07:37 PM,04/14/2014 09:09:03 PM,04/14/2014 09:11:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/14/2014 09:34:39 PM,MISSION ST/FRANCE AV,SAN FRANCISCO,94112,B09,43,6123,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7200155262017, -122.438329412593)",141040339-E15 +152580726,E13,15098555,Medical Incident,09/15/2015,09/15/2015,09/15/2015 08:01:28 AM,09/15/2015 08:01:45 AM,09/15/2015 08:02:19 AM,09/15/2015 08:04:48 AM,09/15/2015 08:06:04 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 3 Transport,09/15/2015 08:29:54 AM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",152580726-E13 +160940138,AM24,16037107,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:44:57 AM,04/03/2016 12:44:57 AM,04/03/2016 12:45:22 AM,04/03/2016 12:46:17 AM,04/03/2016 12:54:26 AM,04/03/2016 01:15:59 AM,04/03/2016 01:23:33 AM,Code 2 Transport,04/03/2016 01:58:50 AM,0 Block of LEDYARD ST,San Francisco,94124,B10,42,6363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7333032572374, -122.40200771228)",160940138-AM24 +160933098,76,16037004,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:24:58 PM,04/02/2016 07:24:58 PM,04/02/2016 07:26:12 PM,04/02/2016 07:26:19 PM,04/02/2016 07:31:10 PM,04/02/2016 07:46:26 PM,04/02/2016 07:57:00 PM,Code 2 Transport,04/02/2016 08:45:00 PM,POWELL ST/FILBERT ST,San Francisco,94133,B01,28,1351,A,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.801169751007, -122.41101851673)",160933098-76 +142482195,55,14086482,Medical Incident,09/05/2014,09/05/2014,09/05/2014 03:05:35 PM,09/05/2014 03:07:13 PM,09/05/2014 03:07:27 PM,09/05/2014 03:07:58 PM,09/05/2014 03:13:58 PM,09/05/2014 03:33:20 PM,09/05/2014 03:54:42 PM,Code 3 Transport,09/05/2014 04:36:19 PM,1400 Block of EDDY ST,San Francisco,94115,B05,5,3515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7814827356164, -122.431458216164)",142482195-55 +153053032,54,15117233,Medical Incident,11/01/2015,11/01/2015,11/01/2015 03:58:57 PM,11/01/2015 03:59:52 PM,11/01/2015 04:00:46 PM,11/01/2015 04:00:54 PM,11/01/2015 04:08:13 PM,11/01/2015 04:17:45 PM,11/01/2015 04:36:08 PM,Code 2 Transport,11/01/2015 05:06:36 PM,4TH ST/MISSION ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",153053032-54 +150802851,E07,15030767,Medical Incident,03/21/2015,03/21/2015,03/21/2015 06:58:21 PM,03/21/2015 06:59:08 PM,03/21/2015 06:59:37 PM,03/21/2015 07:00:48 PM,03/21/2015 07:02:07 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Code 2 Transport,03/21/2015 07:13:35 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",150802851-E07 +160972911,52,16038520,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:17:28 PM,04/06/2016 04:18:44 PM,04/06/2016 04:20:48 PM,04/06/2016 04:21:12 PM,04/06/2016 04:44:43 PM,04/06/2016 04:59:16 PM,04/06/2016 05:15:17 PM,Code 2 Transport,04/06/2016 05:46:29 PM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",160972911-52 +142010327,E01,14069448,Structure Fire,07/20/2014,07/19/2014,07/20/2014 01:46:37 AM,07/20/2014 01:46:37 AM,07/20/2014 01:46:45 AM,07/20/2014 01:46:50 AM,07/20/2014 01:47:03 AM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Fire,07/20/2014 01:47:31 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",142010327-E01 +160930799,85,16036752,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:17:20 AM,04/02/2016 08:17:20 AM,04/02/2016 08:18:19 AM,04/02/2016 08:18:31 AM,04/02/2016 08:24:20 AM,04/02/2016 08:42:36 AM,04/02/2016 09:12:01 AM,Code 2 Transport,04/02/2016 09:53:11 AM,300 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",160930799-85 +142972635,B07,14104879,Alarms,10/24/2014,10/24/2014,10/24/2014 04:49:55 PM,10/24/2014 04:50:34 PM,10/24/2014 04:51:24 PM,10/24/2014 04:52:51 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Fire,10/24/2014 04:58:28 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,false,Alarm,1,CHIEF,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",142972635-B07 +161000002,89,16039546,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:01:09 AM,04/09/2016 12:01:09 AM,04/09/2016 12:02:19 AM,04/09/2016 12:02:28 AM,04/09/2016 12:09:40 AM,04/09/2016 12:27:37 AM,04/09/2016 12:43:08 AM,Code 2 Transport,04/09/2016 01:21:13 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",161000002-89 +141492394,54,14051248,Traffic Collision,05/29/2014,05/29/2014,05/29/2014 04:18:36 PM,05/29/2014 04:22:25 PM,05/29/2014 04:22:44 PM,05/29/2014 04:23:34 PM,05/29/2014 04:32:56 PM,05/29/2014 04:48:52 PM,05/29/2014 04:59:07 PM,Code 2 Transport,05/29/2014 05:29:57 PM,GEARY BL/39TH AV,San Francisco,94121,B07,34,7255,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7794034249514, -122.499730471535)",141492394-54 +151232809,E25,15046769,Other,05/03/2015,05/03/2015,05/03/2015 06:56:14 PM,05/03/2015 06:57:31 PM,05/03/2015 06:58:17 PM,05/03/2015 06:59:46 PM,05/03/2015 07:02:10 PM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,Fire,05/03/2015 07:11:46 PM,NEWHALL ST/HUDSON AV,San Francisco,94124,B10,25,6467,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7400445538806, -122.388273077343)",151232809-E25 +160963073,75,16038123,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:43:38 PM,04/05/2016 05:45:53 PM,04/05/2016 05:46:34 PM,04/05/2016 05:47:13 PM,04/05/2016 06:19:38 PM,04/05/2016 06:35:38 PM,04/05/2016 07:08:48 PM,Code 2 Transport,04/05/2016 07:24:36 PM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7792067028319, -122.402159463556)",160963073-75 +142612033,T07,14091281,Structure Fire,09/18/2014,09/18/2014,09/18/2014 01:44:46 PM,09/18/2014 01:44:46 PM,09/18/2014 01:44:51 PM,09/18/2014 01:45:58 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,Fire,09/18/2014 01:48:20 PM,25TH ST/HARRISON ST,San Francisco,94110,B06,7,5533,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7510338955654, -122.411746226036)",142612033-T07 +160971100,KM13,16038350,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:36:30 AM,04/06/2016 09:38:14 AM,04/06/2016 09:42:09 AM,04/06/2016 09:42:56 AM,04/06/2016 09:57:40 AM,04/06/2016 11:03:57 AM,04/06/2016 11:32:58 AM,Code 2 Transport,04/06/2016 12:24:32 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160971100-KM13 +160923888,58,16036643,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:57:45 PM,04/01/2016 10:59:39 PM,04/01/2016 10:59:48 PM,04/01/2016 11:00:25 PM,04/01/2016 11:05:37 PM,04/01/2016 11:17:38 PM,04/01/2016 11:24:00 PM,Code 2 Transport,04/01/2016 11:55:10 PM,JONES ST/ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160923888-58 +161000403,71,16039607,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:05:20 AM,04/09/2016 03:05:38 AM,04/09/2016 03:09:47 AM,04/09/2016 03:09:57 AM,04/09/2016 03:29:23 AM,04/09/2016 03:40:24 AM,04/09/2016 04:02:49 AM,Code 2 Transport,04/09/2016 04:29:20 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161000403-71 +142433553,E14,14084828,Medical Incident,08/31/2014,08/31/2014,08/31/2014 10:56:12 PM,08/31/2014 10:56:45 PM,08/31/2014 10:57:59 PM,08/31/2014 10:59:49 PM,08/31/2014 11:02:31 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 2 Transport,08/31/2014 11:18:09 PM,500 Block of 18TH AVE,San Francisco,94121,B07,14,7165,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7775714175008, -122.477101447838)",142433553-E14 +151421574,E36,15053964,Medical Incident,05/22/2015,05/22/2015,05/22/2015 11:45:02 AM,05/22/2015 11:49:39 AM,05/22/2015 11:51:57 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Patient Declined Transport,05/22/2015 11:55:51 AM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",151421574-E36 +160992403,KM13,16039370,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:57:49 PM,04/08/2016 03:59:36 PM,04/08/2016 04:00:33 PM,04/08/2016 04:01:23 PM,04/08/2016 04:31:02 PM,04/08/2016 04:46:24 PM,04/08/2016 05:16:55 PM,Code 2 Transport,04/08/2016 05:46:21 PM,100 Block of 3RD ST,San Francisco,94105,B03,1,2178,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",160992403-KM13 +151283172,E07,15048683,Structure Fire,05/08/2015,05/08/2015,05/08/2015 07:12:17 PM,05/08/2015 07:12:58 PM,05/08/2015 07:14:41 PM,05/08/2015 07:14:41 PM,05/08/2015 07:17:34 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Fire,05/08/2015 07:17:36 PM,500 Block of PRECITA AVE,San Francisco,94110,B06,9,5621,3,3,3,true,Alarm,1,ENGINE,7,6,9,Bernal Heights,"(37.747236688099, -122.410117568497)",151283172-E07 +142533930,B02,14088493,Structure Fire,09/10/2014,09/10/2014,09/10/2014 10:11:59 PM,09/10/2014 10:14:07 PM,09/10/2014 10:14:36 PM,09/10/2014 10:15:41 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Fire,09/10/2014 10:26:42 PM,3800 Block of 19TH ST,San Francisco,94114,B06,6,5436,3,3,3,false,Alarm,1,CHIEF,10,6,8,Castro/Upper Market,"(37.7596793163644, -122.429316589446)",142533930-B02 +151291057,FB1,15048903,Structure Fire,05/09/2015,05/09/2015,05/09/2015 09:31:41 AM,05/09/2015 09:33:02 AM,05/09/2015 09:33:37 AM,05/09/2015 09:35:18 AM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Fire,05/09/2015 09:41:14 AM,500 Block of THE EMBARCADERO,San Francisco,94111,B03,35,930,3,3,3,false,Alarm,1,SUPPORT,11,1,3,Financial District/South Beach,"(37.7999726402856, -122.398572299445)",151291057-FB1 +160934037,AM20,16037090,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:56:57 PM,04/02/2016 11:59:22 PM,04/03/2016 12:04:36 AM,04/03/2016 12:05:08 AM,04/03/2016 12:11:38 AM,04/03/2016 12:41:00 AM,04/03/2016 12:49:21 AM,Code 2 Transport,04/03/2016 01:39:02 AM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160934037-AM20 +160992483,84,16039383,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:15:22 PM,04/08/2016 04:16:59 PM,04/08/2016 04:17:26 PM,04/08/2016 04:17:40 PM,04/08/2016 04:19:23 PM,04/08/2016 04:31:15 PM,04/08/2016 04:51:24 PM,Code 2 Transport,04/08/2016 05:37:40 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160992483-84 +151731222,70,15066017,Medical Incident,06/22/2015,06/22/2015,06/22/2015 11:07:16 AM,06/22/2015 11:08:16 AM,06/22/2015 11:08:22 AM,06/22/2015 11:09:50 AM,06/22/2015 11:16:53 AM,06/22/2015 11:30:26 AM,06/22/2015 12:16:53 PM,Code 2 Transport,06/22/2015 12:54:08 PM,400 Block of HEAD ST,San Francisco,94132,B09,33,8414,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7152096464859, -122.464479764216)",151731222-70 +151012147,52,15038249,Medical Incident,04/11/2015,04/11/2015,04/11/2015 03:17:18 PM,04/11/2015 03:18:24 PM,04/11/2015 03:18:40 PM,04/11/2015 03:19:01 PM,04/11/2015 03:23:10 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Cancelled,04/11/2015 03:23:12 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",151012147-52 +160972275,54,16038454,Citizen Assist / Service Call,04/06/2016,04/06/2016,04/06/2016 02:02:31 PM,04/06/2016 02:03:58 PM,04/06/2016 02:14:06 PM,04/06/2016 02:14:31 PM,04/06/2016 02:19:06 PM,04/06/2016 02:34:47 PM,04/06/2016 03:00:49 PM,Code 2 Transport,04/06/2016 03:26:47 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,MEDIC,2,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",160972275-54 +143082364,E15,14109060,Traffic Collision,11/04/2014,11/04/2014,11/04/2014 03:46:15 PM,11/04/2014 03:46:15 PM,11/04/2014 03:46:47 PM,11/04/2014 03:47:13 PM,11/04/2014 03:47:13 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 04:03:50 PM,OCEAN AV/PHELAN AV,San Francisco,94112,B09,15,8472,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7230802451635, -122.452331558779)",143082364-E15 +142701216,E33,14094648,Medical Incident,09/27/2014,09/27/2014,09/27/2014 09:59:03 AM,09/27/2014 10:00:54 AM,09/27/2014 10:05:15 AM,09/27/2014 10:06:52 AM,09/27/2014 10:09:29 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 10:29:07 AM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",142701216-E33 +142610509,E13,14091131,Alarms,09/18/2014,09/17/2014,09/18/2014 05:50:19 AM,09/18/2014 05:51:47 AM,09/18/2014 05:52:12 AM,09/18/2014 05:54:10 AM,09/18/2014 05:55:51 AM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,Fire,09/18/2014 06:04:38 AM,0 Block of SANSOME ST,San Francisco,94104,B01,13,1164,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",142610509-E13 +143393432,89,14120489,Medical Incident,12/05/2014,12/05/2014,12/05/2014 07:54:48 PM,12/05/2014 07:56:50 PM,12/05/2014 07:57:15 PM,12/05/2014 07:57:23 PM,12/05/2014 08:17:17 PM,12/05/2014 08:36:27 PM,12/05/2014 09:25:32 PM,Code 2 Transport,12/05/2014 09:31:18 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",143393432-89 +153141619,59,15120646,Medical Incident,11/10/2015,11/10/2015,11/10/2015 12:03:30 PM,11/10/2015 12:04:56 PM,11/10/2015 12:06:39 PM,11/10/2015 12:06:50 PM,11/10/2015 12:10:10 PM,11/10/2015 12:41:01 PM,11/10/2015 12:52:22 PM,Code 2 Transport,11/10/2015 01:38:57 PM,1400 Block of 40TH AVE,San Francisco,94122,B08,23,7631,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7597777456855, -122.499361901706)",153141619-59 +151730480,85,15065937,Medical Incident,06/22/2015,06/21/2015,06/22/2015 06:44:43 AM,06/22/2015 06:46:18 AM,06/22/2015 06:47:20 AM,06/22/2015 06:47:37 AM,06/22/2015 06:58:46 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Unable to Locate,06/22/2015 07:04:50 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",151730480-85 +151790942,E06,15068138,Medical Incident,06/28/2015,06/27/2015,06/28/2015 07:38:52 AM,06/28/2015 07:39:17 AM,06/28/2015 07:40:05 AM,06/28/2015 07:42:26 AM,06/28/2015 07:44:03 AM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Code 2 Transport,06/28/2015 07:57:31 AM,300 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7678105248182, -122.422097817333)",151790942-E06 +160992069,KM13,16039332,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:36:15 PM,04/08/2016 02:36:47 PM,04/08/2016 02:37:04 PM,04/08/2016 02:37:35 PM,04/08/2016 02:44:33 PM,04/08/2016 03:11:41 PM,04/08/2016 03:23:00 PM,Code 2 Transport,04/08/2016 03:59:00 PM,BUCHANAN ST/SACRAMENTO ST,San Francisco,94115,B04,38,3435,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7902520626448, -122.430736822977)",160992069-KM13 +142273386,74,14079017,Medical Incident,08/15/2014,08/15/2014,08/15/2014 08:39:55 PM,08/15/2014 08:41:06 PM,08/15/2014 09:32:03 PM,08/15/2014 09:32:35 PM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,Cancelled,08/15/2014 09:33:11 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",142273386-74 +142681843,E36,14093941,Structure Fire,09/25/2014,09/25/2014,09/25/2014 02:00:32 PM,09/25/2014 02:00:59 PM,09/25/2014 02:03:23 PM,09/25/2014 02:04:33 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Fire,09/25/2014 02:15:00 PM,1500 Block of HARRISON ST,San Francisco,94103,B02,36,5112,3,3,3,false,Alarm,1,ENGINE,9,2,6,Mission,"(37.770549814387, -122.412678946548)",142681843-E36 +150580772,E06,15022080,Medical Incident,02/27/2015,02/27/2015,02/27/2015 08:18:13 AM,02/27/2015 08:20:02 AM,02/27/2015 08:20:31 AM,02/27/2015 08:21:49 AM,02/27/2015 08:24:05 AM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,No Merit,02/27/2015 08:31:40 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150580772-E06 +152471605,B02,15094200,Alarms,09/04/2015,09/04/2015,09/04/2015 11:36:34 AM,09/04/2015 11:37:58 AM,09/04/2015 11:38:55 AM,09/04/2015 11:41:45 AM,09/04/2015 11:41:45 AM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Fire,09/04/2015 11:54:28 AM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,3,3,3,false,Alarm,1,CHIEF,1,2,6,Mission,"(37.7720616394566, -122.419213394918)",152471605-B02 +160971612,60,16038387,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:34:15 AM,04/06/2016 11:34:43 AM,04/06/2016 11:35:15 AM,04/06/2016 11:35:47 AM,04/06/2016 11:47:24 AM,04/06/2016 11:50:36 AM,04/06/2016 12:04:00 PM,Code 3 Transport,04/06/2016 01:06:21 PM,0 Block of HARDING RD,San Francisco,94132,B08,19,8713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248174091742, -122.497764890771)",160971612-60 +141980847,E11,14068481,Traffic Collision,07/17/2014,07/17/2014,07/17/2014 08:36:55 AM,07/17/2014 08:36:55 AM,07/17/2014 08:37:44 AM,07/17/2014 08:39:27 AM,07/17/2014 08:40:34 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 3 Transport,07/17/2014 08:54:53 AM,25TH ST/DOLORES ST,San Francisco,94110,B06,11,5536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7502327184515, -122.424999223775)",141980847-E11 +160924055,61,16036660,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:53:25 PM,04/01/2016 11:55:05 PM,04/01/2016 11:55:24 PM,04/01/2016 11:55:42 PM,04/02/2016 12:01:24 AM,04/02/2016 12:29:13 AM,04/02/2016 12:44:00 AM,Code 2 Transport,04/02/2016 01:20:31 AM,700 Block of LONG BRIDGE ST,San Francisco,94158,B03,4,2264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7713904956713, -122.394161419191)",160924055-61 +151990179,E41,15075691,Medical Incident,07/18/2015,07/17/2015,07/18/2015 01:01:36 AM,07/18/2015 01:02:06 AM,07/18/2015 01:02:15 AM,07/18/2015 01:03:33 AM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,Code 2 Transport,07/18/2015 01:06:44 AM,2000 Block of LARKIN ST,San Francisco,94109,B01,41,1632,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,Russian Hill,"(37.7966105174567, -122.420144877743)",151990179-E41 +161000277,71,16039592,Traffic Collision,04/09/2016,04/08/2016,04/09/2016 02:03:35 AM,04/09/2016 02:03:35 AM,04/09/2016 02:05:07 AM,04/09/2016 02:05:13 AM,04/09/2016 02:10:34 AM,04/09/2016 02:22:31 AM,04/09/2016 02:22:03 AM,Code 3 Transport,04/09/2016 03:09:13 AM,MISSION ST/HIGHLAND AV,San Francisco,94110,B06,32,5631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Bernal Heights,"(37.7374062487517, -122.424040149847)",161000277-71 +160993594,60,16039473,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:14:37 PM,04/08/2016 09:15:02 PM,04/08/2016 09:15:30 PM,04/08/2016 09:15:43 PM,04/08/2016 09:23:07 PM,04/08/2016 09:35:37 PM,04/08/2016 09:54:57 PM,Code 2 Transport,04/08/2016 10:33:08 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160993594-60 +160950224,85,16037494,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:56:18 AM,04/04/2016 02:58:12 AM,04/04/2016 02:59:14 AM,04/04/2016 02:59:31 AM,04/04/2016 03:15:18 AM,04/04/2016 03:15:21 AM,04/04/2016 03:31:10 AM,Code 2 Transport,04/04/2016 04:07:51 AM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160950224-85 +141200401,E07,14040734,Medical Incident,04/30/2014,04/30/2014,04/30/2014 10:31:23 PM,04/30/2014 10:33:35 PM,04/30/2014 10:34:38 PM,04/30/2014 10:36:23 PM,04/30/2014 10:38:19 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Unable to Locate,04/30/2014 10:39:23 PM,18TH ST/SHOTWELL ST,SAN FRANCISCO,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7620340026529, -122.416077987511)",141200401-E07 +143652531,KM14,14130797,Medical Incident,12/31/2014,12/31/2014,12/31/2014 06:07:31 PM,12/31/2014 06:07:31 PM,12/31/2014 06:08:14 PM,12/31/2014 06:09:36 PM,12/31/2014 06:15:23 PM,12/31/2014 06:32:25 PM,12/31/2014 06:55:07 PM,Code 2 Transport,12/31/2014 07:18:05 PM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",143652531-KM14 +142382179,52,14082819,Medical Incident,08/26/2014,08/26/2014,08/26/2014 03:00:41 PM,08/26/2014 03:02:57 PM,08/26/2014 03:03:44 PM,08/26/2014 03:03:56 PM,08/26/2014 03:06:26 PM,08/26/2014 03:26:17 PM,08/26/2014 03:41:51 PM,Code 2 Transport,08/26/2014 04:19:51 PM,11TH ST/MINNA ST,San Francisco,94103,B02,36,5114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7739062505366, -122.416575670164)",142382179-52 +142471397,RC1,14086013,Medical Incident,09/04/2014,09/04/2014,09/04/2014 11:08:23 AM,09/04/2014 11:09:21 AM,09/04/2014 11:09:53 AM,09/04/2014 11:12:47 AM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,No Merit,09/04/2014 11:13:46 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",142471397-RC1 +160990297,70,16039176,Medical Incident,04/08/2016,04/07/2016,04/08/2016 03:03:52 AM,04/08/2016 03:08:58 AM,04/08/2016 03:09:16 AM,04/08/2016 03:11:30 AM,04/08/2016 03:24:55 AM,04/08/2016 04:03:23 AM,04/08/2016 04:09:36 AM,Code 2 Transport,04/08/2016 04:29:26 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160990297-70 +141710424,E31,14058947,Medical Incident,06/20/2014,06/19/2014,06/20/2014 05:35:16 AM,06/20/2014 05:36:37 AM,06/20/2014 05:37:38 AM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Code 2 Transport,06/20/2014 05:38:37 AM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7792067028319, -122.402159463556)",141710424-E31 +142551402,T11,14088991,Alarms,09/12/2014,09/12/2014,09/12/2014 11:28:59 AM,09/12/2014 11:30:53 AM,09/12/2014 11:32:03 AM,09/12/2014 11:32:52 AM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Fire,09/12/2014 11:36:25 AM,0 Block of GLADYS ST,San Francisco,94110,B06,32,5626,3,3,3,false,Alarm,1,TRUCK,3,6,9,Bernal Heights,"(37.7394765722027, -122.422865684118)",142551402-T11 +160972939,AM08,16038526,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:21:42 PM,04/06/2016 04:23:04 PM,04/06/2016 04:24:14 PM,04/06/2016 04:28:53 PM,04/06/2016 04:31:54 PM,04/06/2016 05:06:44 PM,04/06/2016 05:06:46 PM,Code 2 Transport,04/06/2016 06:17:37 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160972939-AM08 +160932299,75,16036924,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:45:37 PM,04/02/2016 03:47:37 PM,04/02/2016 03:47:49 PM,04/02/2016 03:48:10 PM,04/02/2016 03:55:39 PM,04/02/2016 03:57:55 PM,04/02/2016 04:28:11 PM,Code 2 Transport,04/02/2016 05:00:16 PM,1400 Block of OAKDALE AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7330447252069, -122.387509881021)",160932299-75 +152570498,86,15098149,Medical Incident,09/14/2015,09/13/2015,09/14/2015 06:08:20 AM,09/14/2015 06:09:14 AM,09/14/2015 06:09:51 AM,09/14/2015 06:09:59 AM,09/14/2015 06:19:43 AM,09/14/2015 06:49:13 AM,09/14/2015 06:56:51 AM,Code 2 Transport,09/14/2015 07:36:55 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",152570498-86 +160950077,76,16037475,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:46:05 AM,04/04/2016 12:46:05 AM,04/04/2016 12:46:47 AM,04/04/2016 12:46:47 AM,04/04/2016 12:57:17 AM,04/04/2016 01:02:35 AM,04/04/2016 01:26:50 AM,Code 2 Transport,04/04/2016 01:57:09 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160950077-76 +142750324,AM26,14096337,Medical Incident,10/02/2014,10/01/2014,10/02/2014 03:00:43 AM,10/02/2014 03:02:40 AM,10/02/2014 03:03:50 AM,10/02/2014 03:04:25 AM,10/02/2014 03:08:17 AM,10/02/2014 03:14:15 AM,10/02/2014 03:23:12 AM,Code 2 Transport,10/02/2014 03:49:34 AM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",142750324-AM26 +160961478,82,16037980,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:36:49 AM,04/05/2016 11:38:11 AM,04/05/2016 11:40:06 AM,04/05/2016 11:40:11 AM,04/05/2016 11:50:10 AM,04/05/2016 12:00:00 PM,04/05/2016 12:08:16 PM,Code 2 Transport,04/05/2016 12:36:55 PM,1800 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7926340535601, -122.422611866013)",160961478-82 +151830572,AM02,15069754,Medical Incident,07/02/2015,07/01/2015,07/02/2015 06:54:11 AM,07/02/2015 06:54:11 AM,07/02/2015 06:54:47 AM,07/02/2015 06:55:40 AM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Cancelled,07/02/2015 07:01:39 AM,300 Block of DAY ST,San Francisco,94131,B06,11,5564,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7427523583192, -122.429919189858)",151830572-AM02 +161001545,61,16039753,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:37:57 PM,04/09/2016 12:37:57 PM,04/09/2016 12:39:03 PM,04/09/2016 12:39:11 PM,04/09/2016 12:58:04 PM,04/09/2016 01:02:13 PM,04/09/2016 01:29:29 PM,Code 2 Transport,04/09/2016 02:00:41 PM,1000 Block of GREEN ST,San Francisco,94133,B01,41,1533,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7986303849434, -122.416405936463)",161001545-61 +152741154,85,15104828,Medical Incident,10/01/2015,10/01/2015,10/01/2015 09:31:08 AM,10/01/2015 09:32:03 AM,10/01/2015 09:32:26 AM,10/01/2015 09:33:06 AM,10/01/2015 09:37:06 AM,10/01/2015 09:53:23 AM,10/01/2015 10:01:52 AM,Code 2 Transport,10/01/2015 10:32:00 AM,200 Block of 7TH ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7774003641379, -122.408565501698)",152741154-85 +141532790,54,14052691,Medical Incident,06/02/2014,06/02/2014,06/02/2014 07:07:59 PM,06/02/2014 07:08:07 PM,06/02/2014 07:08:33 PM,06/02/2014 07:08:58 PM,06/02/2014 07:18:06 PM,06/02/2014 07:38:43 PM,06/02/2014 07:58:08 PM,Code 2 Transport,06/02/2014 08:21:03 PM,800 Block of AVENUE D,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",141532790-54 +160993298,52,16039442,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 07:39:15 PM,04/08/2016 07:39:15 PM,04/08/2016 07:40:00 PM,04/08/2016 07:40:08 PM,04/08/2016 07:46:15 PM,04/08/2016 08:01:47 PM,04/08/2016 08:26:32 PM,Code 2 Transport,04/08/2016 08:56:34 PM,OCTAVIA ST/FELL ST,San Francisco,94102,B02,36,3314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7757539609909, -122.424324651558)",160993298-52 +153122887,61,15120043,Medical Incident,11/08/2015,11/08/2015,11/08/2015 07:36:48 PM,11/08/2015 07:38:44 PM,11/08/2015 07:48:20 PM,11/08/2015 07:48:32 PM,11/08/2015 07:54:39 PM,11/08/2015 08:12:32 PM,11/08/2015 08:18:38 PM,Code 2 Transport,11/08/2015 08:56:36 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",153122887-61 +142653555,E13,14092906,Medical Incident,09/22/2014,09/22/2014,09/22/2014 09:50:43 PM,09/22/2014 09:52:34 PM,09/22/2014 09:54:17 PM,09/22/2014 09:55:33 PM,09/22/2014 10:00:04 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Code 2 Transport,09/22/2014 10:12:08 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",142653555-E13 +160930988,KM04,16036773,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:22:53 AM,04/02/2016 09:22:53 AM,04/02/2016 09:23:02 AM,04/02/2016 09:23:31 AM,04/02/2016 09:33:18 AM,04/02/2016 09:52:05 AM,04/02/2016 10:21:52 AM,Code 2 Transport,04/02/2016 10:55:48 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029378429, -122.415436837692)",160930988-KM04 +143623426,AM20,14129699,Medical Incident,12/28/2014,12/28/2014,12/28/2014 11:27:38 PM,12/28/2014 11:29:03 PM,12/28/2014 11:30:57 PM,12/28/2014 11:32:33 PM,12/28/2014 11:47:18 PM,12/28/2014 11:50:33 PM,12/29/2014 12:03:42 AM,Code 2 Transport,12/29/2014 12:50:42 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",143623426-AM20 +141533476,68,14052758,Medical Incident,06/02/2014,06/02/2014,06/02/2014 11:14:01 PM,06/02/2014 11:15:59 PM,06/02/2014 11:16:33 PM,06/02/2014 11:16:42 PM,06/02/2014 11:22:15 PM,06/02/2014 11:33:22 PM,06/02/2014 11:49:00 PM,Code 2 Transport,06/03/2014 12:09:31 AM,MARKET ST/MASON ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",141533476-68 +141170132,72,14039461,Medical Incident,04/27/2014,04/27/2014,04/27/2014 10:21:52 AM,04/27/2014 10:21:52 AM,04/27/2014 10:26:13 AM,04/27/2014 10:26:22 AM,04/27/2014 10:38:54 AM,04/27/2014 10:52:45 AM,04/27/2014 11:04:22 AM,Code 2 Transport,04/27/2014 11:31:18 AM,POLK ST/EDDY ST,SAN FRANCISCO,94109,B02,3,1643,,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",141170132-72 +141372142,77,14046976,Medical Incident,05/17/2014,05/17/2014,05/17/2014 02:55:54 PM,05/17/2014 02:56:27 PM,05/17/2014 02:57:33 PM,05/17/2014 02:57:48 PM,05/17/2014 03:08:14 PM,05/17/2014 03:21:06 PM,05/17/2014 03:29:16 PM,Code 3 Transport,05/17/2014 04:18:45 PM,300 Block of CHANNEL ST,San Francisco,94107,B03,8,2264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7690011760023, -122.399858835933)",141372142-77 +141283874,E03,14043711,Medical Incident,05/08/2014,05/08/2014,05/08/2014 11:10:22 PM,05/08/2014 11:11:29 PM,05/08/2014 11:13:54 PM,05/08/2014 11:16:00 PM,05/08/2014 11:18:06 PM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Code 2 Transport,05/08/2014 11:19:35 PM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",141283874-E03 +160943218,57,16037409,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:08:57 PM,04/03/2016 08:08:57 PM,04/03/2016 08:09:42 PM,04/03/2016 08:09:47 PM,04/03/2016 08:11:40 PM,04/03/2016 08:32:51 PM,04/03/2016 08:35:13 PM,Code 2 Transport,04/03/2016 09:19:21 PM,1000 Block of POST ST,San Francisco,94109,B02,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",160943218-57 +151690333,74,15064485,Medical Incident,06/18/2015,06/17/2015,06/18/2015 04:37:07 AM,06/18/2015 04:38:42 AM,06/18/2015 04:38:52 AM,06/18/2015 04:38:58 AM,06/18/2015 04:41:57 AM,06/18/2015 04:51:11 AM,06/18/2015 05:02:51 AM,Code 2 Transport,06/18/2015 05:59:38 AM,MARKET ST/ORD ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7611778870806, -122.440068662343)",151690333-74 +151321118,63,15050022,Medical Incident,05/12/2015,05/12/2015,05/12/2015 10:18:34 AM,05/12/2015 10:19:20 AM,05/12/2015 10:19:41 AM,05/12/2015 10:19:55 AM,05/12/2015 10:24:11 AM,05/12/2015 10:46:22 AM,05/12/2015 11:26:04 AM,Code 2 Transport,05/12/2015 12:04:39 PM,3200 Block of 16TH ST,San Francisco,94103,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7647550887451, -122.425483296322)",151321118-63 +160983681,AM18,16039109,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:04:28 PM,04/07/2016 09:07:22 PM,04/07/2016 09:08:05 PM,04/07/2016 09:08:39 PM,04/07/2016 09:12:18 PM,04/07/2016 09:24:54 PM,04/07/2016 09:55:58 PM,Code 2 Transport,04/07/2016 10:48:30 PM,200 Block of 6TH AVE,San Francisco,94118,B07,31,7125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7838629291068, -122.464557308337)",160983681-AM18 +160922304,55,16036500,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:43:15 PM,04/01/2016 03:43:15 PM,04/01/2016 03:52:30 PM,04/01/2016 03:52:30 PM,04/01/2016 04:04:01 PM,04/01/2016 04:16:29 PM,04/01/2016 05:13:20 PM,Code 2 Transport,04/01/2016 05:29:30 PM,JEFFERSON ST/TAYLOR ST,San Francisco,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.808214052974, -122.41580242723)",160922304-55 +160950417,63,16037519,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:52:31 AM,04/04/2016 05:53:22 AM,04/04/2016 05:53:28 AM,04/04/2016 05:53:41 AM,04/04/2016 05:59:39 AM,04/04/2016 06:19:59 AM,04/04/2016 06:44:52 AM,Code 2 Transport,04/04/2016 07:17:33 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160950417-63 +152642252,E42,15101118,Medical Incident,09/21/2015,09/21/2015,09/21/2015 01:43:16 PM,09/21/2015 01:43:59 PM,09/21/2015 01:44:23 PM,09/21/2015 01:45:32 PM,09/21/2015 01:47:33 PM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Code 2 Transport,09/21/2015 02:26:46 PM,2300 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7337296444249, -122.406425846236)",152642252-E42 +160990337,64,16039179,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:01:35 AM,04/08/2016 04:02:41 AM,04/08/2016 04:02:45 AM,04/08/2016 04:03:04 AM,04/08/2016 04:09:51 AM,04/08/2016 04:26:40 AM,04/08/2016 04:49:46 AM,Code 2 Transport,04/08/2016 05:46:22 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160990337-64 +160971811,AM10,16038406,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:16:47 PM,04/06/2016 12:18:43 PM,04/06/2016 12:20:23 PM,04/06/2016 12:21:01 PM,04/06/2016 12:29:20 PM,04/06/2016 12:40:56 PM,04/06/2016 12:55:23 PM,Code 2 Transport,04/06/2016 01:20:58 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160971811-AM10 +151050209,AM20,15039565,Medical Incident,04/15/2015,04/14/2015,04/15/2015 01:48:38 AM,04/15/2015 01:50:35 AM,04/15/2015 01:50:44 AM,04/15/2015 01:51:22 AM,04/15/2015 01:53:10 AM,04/15/2015 01:58:48 AM,04/15/2015 02:05:35 AM,Code 2 Transport,04/15/2015 02:45:51 AM,POLK ST/SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",151050209-AM20 +150780584,55,15029798,Traffic Collision,03/19/2015,03/18/2015,03/19/2015 06:35:07 AM,03/19/2015 06:36:34 AM,03/19/2015 06:37:01 AM,03/19/2015 06:37:07 AM,03/19/2015 06:46:07 AM,03/19/2015 07:09:22 AM,03/19/2015 07:41:21 AM,Code 2 Transport,03/19/2015 08:20:56 AM,JACKSON ST/COLUMBUS AV,San Francisco,94111,B01,13,1232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7963020974, -122.404412161982)",150780584-55 +142780098,73,14097645,Medical Incident,10/05/2014,10/04/2014,10/05/2014 12:23:59 AM,10/05/2014 12:27:07 AM,10/05/2014 12:27:28 AM,10/05/2014 12:27:47 AM,10/05/2014 12:36:08 AM,10/05/2014 12:43:32 AM,10/05/2014 12:51:05 AM,Code 2 Transport,10/05/2014 01:21:21 AM,MASONIC AV/TURK BL,San Francisco,94118,B05,10,4461,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7786223076413, -122.447039805009)",142780098-73 +152331969,52,15088837,Medical Incident,08/21/2015,08/21/2015,08/21/2015 01:10:31 PM,08/21/2015 01:11:37 PM,08/21/2015 01:12:10 PM,08/21/2015 01:12:23 PM,08/21/2015 01:21:31 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Patient Declined Transport,08/21/2015 01:27:56 PM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",152331969-52 +152414368,55,15092110,Traffic Collision,08/29/2015,08/29/2015,08/29/2015 11:36:41 PM,08/29/2015 11:37:50 PM,08/29/2015 11:38:26 PM,08/29/2015 11:38:32 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Code 3 Transport,08/29/2015 11:38:57 PM,MISSION ST/15TH ST,San Francisco,94103,B02,36,5279,3,A,2,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7666736014927, -122.419825235405)",152414368-55 +153423588,AM14,15131757,Medical Incident,12/08/2015,12/08/2015,12/08/2015 08:37:20 PM,12/08/2015 08:37:20 PM,12/08/2015 08:38:23 PM,12/08/2015 08:39:57 PM,12/08/2015 08:54:46 PM,12/08/2015 09:10:05 PM,12/08/2015 09:26:54 PM,Code 2 Transport,12/08/2015 10:05:38 PM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",153423588-AM14 +153001433,RC1,15115109,Medical Incident,10/27/2015,10/27/2015,10/27/2015 11:23:33 AM,10/27/2015 11:24:10 AM,10/27/2015 11:34:21 AM,10/27/2015 11:40:08 AM,10/27/2015 11:41:55 AM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Code 2 Transport,10/27/2015 11:52:18 AM,1300 Block of EDDY ST,San Francisco,94115,B05,5,3515,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,5,Western Addition,"(37.7816922947029, -122.429813826585)",153001433-RC1 +141682603,77,14058031,Structure Fire,06/17/2014,06/17/2014,06/17/2014 05:26:46 PM,06/17/2014 05:27:13 PM,06/17/2014 05:28:05 PM,06/17/2014 05:28:16 PM,06/17/2014 05:38:28 PM,06/17/2014 05:48:29 PM,06/17/2014 06:02:49 PM,Fire,06/17/2014 06:41:22 PM,1000 Block of JAMESTOWN AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Fire,1,MEDIC,9,10,10,Bayview Hunters Point,"(37.7190674314646, -122.394447939557)",141682603-77 +160973294,AM18,16038564,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:30:10 PM,04/06/2016 05:31:03 PM,04/06/2016 05:33:35 PM,04/06/2016 05:34:28 PM,04/06/2016 05:40:51 PM,04/06/2016 05:54:10 PM,04/06/2016 06:35:13 PM,Code 2 Transport,04/06/2016 07:06:29 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160973294-AM18 +152222401,B02,15084656,Alarms,08/10/2015,08/10/2015,08/10/2015 04:10:11 PM,08/10/2015 04:11:49 PM,08/10/2015 04:11:56 PM,08/10/2015 04:12:48 PM,08/10/2015 04:15:58 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Fire,08/10/2015 04:20:12 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",152222401-B02 +141353126,D2,14046299,Structure Fire,05/15/2014,05/15/2014,05/15/2014 06:18:58 PM,05/15/2014 06:19:39 PM,05/15/2014 06:20:05 PM,05/15/2014 06:21:39 PM,05/15/2014 06:21:39 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/15/2014 06:38:43 PM,1500 Block of 10TH AVE,San Francisco,94122,B08,22,7344,3,3,3,false,Fire,1,CHIEF,1,8,7,Inner Sunset,"(37.7593341109976, -122.466988064549)",141353126-D2 +142391998,E13,14083140,Structure Fire,08/27/2014,08/27/2014,08/27/2014 02:32:06 PM,08/27/2014 02:32:06 PM,08/27/2014 02:32:12 PM,08/27/2014 02:32:45 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Fire,08/27/2014 02:36:01 PM,0 Block of KEARNY ST,San Francisco,94108,B01,1,1241,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7877942875414, -122.403529728368)",142391998-E13 +150920194,E07,15034818,Medical Incident,04/02/2015,04/01/2015,04/02/2015 02:01:30 AM,04/02/2015 02:01:30 AM,04/02/2015 02:08:26 AM,04/02/2015 02:09:51 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/02/2015 02:10:53 AM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7594381240168, -122.419060339091)",150920194-E07 +152831319,T12,15108632,Elevator / Escalator Rescue,10/10/2015,10/10/2015,10/10/2015 10:17:29 AM,10/10/2015 10:18:50 AM,10/10/2015 10:19:19 AM,10/10/2015 10:19:38 AM,10/10/2015 10:21:41 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Fire,10/10/2015 10:26:28 AM,500 Block of PARNASSUS AVE,San Francisco,94122,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",152831319-T12 +152521512,AM08,15096302,Medical Incident,09/09/2015,09/09/2015,09/09/2015 11:29:48 AM,09/09/2015 11:30:23 AM,09/09/2015 11:31:16 AM,09/09/2015 11:31:16 AM,09/09/2015 11:45:29 AM,09/09/2015 12:00:24 PM,09/09/2015 12:15:16 PM,Code 2 Transport,09/09/2015 12:53:19 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7867794977083, -122.450948438002)",152521512-AM08 +150172418,E03,15006783,Structure Fire,01/17/2015,01/17/2015,01/17/2015 04:23:42 PM,01/17/2015 04:24:39 PM,01/17/2015 04:24:52 PM,01/17/2015 04:35:35 PM,01/17/2015 04:38:01 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Fire,01/17/2015 05:14:58 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",150172418-E03 +143222025,72,14114046,Medical Incident,11/18/2014,11/18/2014,11/18/2014 02:32:19 PM,11/18/2014 02:32:52 PM,11/18/2014 02:34:40 PM,11/18/2014 02:34:40 PM,11/18/2014 02:38:11 PM,11/18/2014 02:57:17 PM,11/18/2014 02:58:13 PM,Code 2 Transport,11/18/2014 03:31:21 PM,1000 Block of HYDE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7905005141181, -122.417366417694)",143222025-72 +151740726,KM06,15066298,Medical Incident,06/23/2015,06/23/2015,06/23/2015 08:10:21 AM,06/23/2015 08:12:53 AM,06/23/2015 08:13:18 AM,06/23/2015 08:14:22 AM,06/23/2015 08:22:40 AM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Patient Declined Transport,06/23/2015 09:23:15 AM,GREAT HY/NORIEGA ST,San Francisco,94122,B08,23,7725,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7528302279051, -122.508432394418)",151740726-KM06 +160951633,AM08,16037611,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:13:47 PM,04/04/2016 12:14:45 PM,04/04/2016 12:15:53 PM,04/04/2016 12:16:58 PM,04/04/2016 12:19:18 PM,04/04/2016 12:41:16 PM,04/04/2016 01:10:09 PM,Code 2 Transport,04/04/2016 01:34:35 PM,FILLMORE ST/MCALLISTER ST,San Francisco,94115,B05,5,3534,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.778632035975, -122.431763221514)",160951633-AM08 +142011503,KM12,14069568,Medical Incident,07/20/2014,07/20/2014,07/20/2014 01:14:20 PM,07/20/2014 01:14:51 PM,07/20/2014 01:17:03 PM,07/20/2014 01:17:03 PM,07/20/2014 01:34:58 PM,07/20/2014 02:11:46 PM,07/20/2014 02:22:12 PM,Code 2 Transport,07/20/2014 03:49:33 PM,8100 Block of OCEANVIEW TER,San Francisco,94132,B09,33,8412,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",142011503-KM12 +152012729,E38,15076696,Structure Fire,07/20/2015,07/20/2015,07/20/2015 05:00:19 PM,07/20/2015 05:00:58 PM,07/20/2015 05:01:36 PM,07/20/2015 05:02:23 PM,07/20/2015 05:09:45 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Fire,07/20/2015 05:10:03 PM,1300 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,false,Alarm,1,ENGINE,7,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",152012729-E38 +160932652,67,16036962,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:20:13 PM,04/02/2016 05:20:13 PM,04/02/2016 05:29:37 PM,04/02/2016 05:29:44 PM,04/02/2016 05:35:47 PM,04/02/2016 05:49:17 PM,04/02/2016 06:19:19 PM,Code 2 Transport,04/02/2016 06:57:38 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160932652-67 +142443538,T17,14085198,Citizen Assist / Service Call,09/01/2014,09/01/2014,09/01/2014 10:43:22 PM,09/01/2014 10:44:20 PM,09/01/2014 10:44:32 PM,09/01/2014 10:46:34 PM,09/01/2014 10:51:26 PM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/01/2014 11:01:03 PM,400 Block of GIRARD ST,San Francisco,94134,B10,42,6333,3,3,3,false,Alarm,1,TRUCK,1,10,9,Portola,"(37.7267567260002, -122.404413040087)",142443538-T17 +160981477,89,16038878,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:08:21 AM,04/07/2016 11:08:21 AM,04/07/2016 11:09:36 AM,04/07/2016 11:10:00 AM,04/07/2016 11:15:47 AM,04/07/2016 11:47:39 AM,04/07/2016 12:13:46 PM,Other,04/07/2016 12:58:11 PM,19TH AV/GEARY BL,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7803811907228, -122.47830487835)",160981477-89 +142861026,AM08,14100768,Medical Incident,10/13/2014,10/13/2014,10/13/2014 09:43:11 AM,10/13/2014 09:43:11 AM,10/13/2014 09:43:33 AM,10/13/2014 09:44:05 AM,10/13/2014 09:50:56 AM,10/13/2014 10:06:58 AM,10/13/2014 10:17:05 AM,Code 2 Transport,10/13/2014 10:50:48 AM,5TH ST/MARKET ST,San Francisco,94103,B02,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",142861026-AM08 +141250090,T03,14042266,Alarms,05/05/2014,05/04/2014,05/05/2014 07:39:25 AM,05/05/2014 07:41:17 AM,05/05/2014 07:44:01 AM,05/05/2014 07:49:27 AM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 07:54:42 AM,600 Block of SUTTER ST,SAN FRANCISCO,94102,B01,3,1412,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",141250090-T03 +142491415,E01,14086774,Medical Incident,09/06/2014,09/06/2014,09/06/2014 11:36:22 AM,09/06/2014 11:37:51 AM,09/06/2014 11:38:16 AM,09/06/2014 11:38:56 AM,09/06/2014 11:43:07 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/06/2014 11:59:42 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142491415-E01 +143311834,88,14117417,Medical Incident,11/27/2014,11/27/2014,11/27/2014 03:59:52 PM,11/27/2014 03:59:52 PM,11/27/2014 04:07:15 PM,11/27/2014 04:07:55 PM,11/27/2014 04:07:55 PM,11/27/2014 04:15:21 PM,11/27/2014 04:21:49 PM,Other,11/27/2014 04:30:48 PM,GUERRERO ST/16TH ST,San Francisco,94103,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,8,Mission,"(37.7647834522541, -122.424102685064)",143311834-88 +151500131,58,15056941,Medical Incident,05/30/2015,05/29/2015,05/30/2015 12:51:30 AM,05/30/2015 12:53:14 AM,05/30/2015 12:54:02 AM,05/30/2015 12:55:42 AM,05/30/2015 01:02:57 AM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,No Merit,05/30/2015 01:57:06 AM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",151500131-58 +152112001,74,15080389,Medical Incident,07/30/2015,07/30/2015,07/30/2015 02:22:08 PM,07/30/2015 02:22:52 PM,07/30/2015 02:24:05 PM,07/30/2015 02:24:29 PM,07/30/2015 02:26:42 PM,04/25/2016 01:09:11 PM,04/25/2016 01:09:11 PM,No Merit,07/30/2015 02:28:58 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",152112001-74 +150052021,57,15001890,Medical Incident,01/05/2015,01/05/2015,01/05/2015 02:11:03 PM,01/05/2015 02:11:56 PM,01/05/2015 02:12:43 PM,01/05/2015 02:12:54 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Fire,01/05/2015 02:20:34 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Western Addition,"(37.782522418285, -122.423274430962)",150052021-57 +152532119,E28,15096754,Alarms,09/10/2015,09/10/2015,09/10/2015 02:11:03 PM,09/10/2015 02:12:09 PM,09/10/2015 02:13:33 PM,09/10/2015 02:14:02 PM,09/10/2015 02:17:35 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Fire,09/10/2015 02:22:44 PM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,3,3,3,false,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8038770970726, -122.404157077302)",152532119-E28 +141753409,T03,14060544,Alarms,06/24/2014,06/24/2014,06/24/2014 10:17:37 PM,06/24/2014 10:19:36 PM,06/24/2014 10:19:42 PM,06/24/2014 10:22:57 PM,06/24/2014 10:22:57 PM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,Fire,06/24/2014 10:27:14 PM,400 Block of MASON ST,San Francisco,94102,B01,3,1411,3,3,3,false,Alarm,1,TRUCK,2,1,3,Tenderloin,"(37.7877640990096, -122.409925328419)",141753409-T03 +160983812,73,16039121,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:49:59 PM,04/07/2016 09:52:04 PM,04/07/2016 09:52:35 PM,04/07/2016 09:52:42 PM,04/07/2016 09:57:44 PM,04/07/2016 10:09:27 PM,04/07/2016 10:16:48 PM,Code 2 Transport,04/07/2016 10:54:41 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160983812-73 +143031227,85,14107042,Medical Incident,10/30/2014,10/30/2014,10/30/2014 09:00:21 AM,10/30/2014 09:03:55 AM,10/30/2014 09:04:28 AM,10/30/2014 09:04:44 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Patient Declined Transport,10/30/2014 09:13:17 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",143031227-85 +160941831,57,16037261,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:06:40 PM,04/03/2016 01:08:22 PM,04/03/2016 01:11:45 PM,04/03/2016 01:12:20 PM,04/03/2016 01:26:30 PM,04/03/2016 01:53:49 PM,04/03/2016 02:20:04 PM,Code 2 Transport,04/03/2016 03:01:48 PM,1500 Block of 19TH AVE,San Francisco,94122,B08,22,7423,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7589078873421, -122.476606690049)",160941831-57 +160951307,82,16037584,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:54:30 AM,04/04/2016 10:55:56 AM,04/04/2016 10:56:36 AM,04/04/2016 10:56:41 AM,04/04/2016 11:00:36 AM,04/04/2016 11:25:48 AM,04/04/2016 11:53:54 AM,Code 2 Transport,04/04/2016 11:58:05 AM,700 Block of 21ST AVE,San Francisco,94121,B07,14,7167,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7736958053498, -122.480041380237)",160951307-82 +150231563,85,15008906,Medical Incident,01/23/2015,01/23/2015,01/23/2015 12:32:56 PM,01/23/2015 12:35:01 PM,01/23/2015 12:35:35 PM,01/23/2015 12:35:46 PM,01/23/2015 12:48:02 PM,01/23/2015 01:05:12 PM,01/23/2015 01:45:43 PM,Code 2 Transport,01/23/2015 02:23:19 PM,700 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7841058563108, -122.401539484586)",150231563-85 +150063785,T03,15002494,Structure Fire,01/06/2015,01/06/2015,01/06/2015 10:59:18 PM,01/06/2015 10:59:18 PM,01/06/2015 10:59:41 PM,01/06/2015 11:01:11 PM,01/06/2015 11:02:16 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Fire,01/06/2015 11:02:45 PM,600 Block of LARKIN ST,San Francisco,94109,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",150063785-T03 +150741138,62,15028343,Medical Incident,03/15/2015,03/15/2015,03/15/2015 09:28:00 AM,03/15/2015 09:28:36 AM,03/15/2015 09:30:23 AM,03/15/2015 09:30:35 AM,03/15/2015 09:34:37 AM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Cancelled,03/15/2015 09:42:34 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",150741138-62 +152010079,55,15076442,Water Rescue,07/20/2015,07/19/2015,07/20/2015 12:34:22 AM,07/20/2015 12:36:12 AM,07/20/2015 01:52:59 AM,07/20/2015 01:55:05 AM,07/20/2015 02:02:46 AM,07/20/2015 02:17:22 AM,07/20/2015 02:51:51 AM,Code 2 Transport,07/20/2015 04:06:15 AM,3200 Block of CLEMENT ST,San Francisco,94121,B07,34,7247,3,3,3,true,Fire,1,MEDIC,6,7,1,Lincoln Park,"(37.781656621504, -122.493997393675)",152010079-55 +153172904,KM04,15121933,Medical Incident,11/13/2015,11/13/2015,11/13/2015 04:46:41 PM,11/13/2015 04:48:08 PM,11/13/2015 05:03:37 PM,11/13/2015 05:04:14 PM,11/13/2015 05:22:36 PM,11/13/2015 05:44:39 PM,11/13/2015 06:18:35 PM,Code 2 Transport,11/13/2015 06:36:02 PM,1200 Block of HAYES ST,San Francisco,94117,B05,21,4136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7751531661488, -122.436974886082)",153172904-KM04 +160953075,AM08,16037738,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:02:32 PM,04/04/2016 06:02:32 PM,04/04/2016 06:04:04 PM,04/04/2016 06:04:47 PM,04/04/2016 06:13:14 PM,04/04/2016 06:26:40 PM,04/04/2016 06:44:21 PM,Code 2 Transport,04/04/2016 07:02:56 PM,800 Block of THE EMBARCADERO,San Francisco,94111,B01,13,919,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",160953075-AM08 +150561724,AM02,15021422,Medical Incident,02/25/2015,02/25/2015,02/25/2015 12:36:53 PM,02/25/2015 12:38:06 PM,02/25/2015 12:39:46 PM,02/25/2015 12:40:30 PM,02/25/2015 12:43:52 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Patient Declined Transport,02/25/2015 01:30:14 PM,400 Block of MISSION BAY BLVD,San Francisco,94158,B03,8,2231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7706546223516, -122.388603730121)",150561724-AM02 +152943469,89,15113130,Medical Incident,10/21/2015,10/21/2015,10/21/2015 08:13:32 PM,10/21/2015 08:14:07 PM,10/21/2015 08:14:48 PM,10/21/2015 08:14:55 PM,10/21/2015 08:17:24 PM,10/21/2015 08:26:27 PM,10/21/2015 08:50:22 PM,Code 2 Transport,10/21/2015 09:39:50 PM,FILLMORE ST/PINE ST,San Francisco,94115,B04,38,3543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7879502707315, -122.433647123974)",152943469-89 +153360587,T09,15129121,Structure Fire,12/02/2015,12/01/2015,12/02/2015 07:32:49 AM,12/02/2015 07:34:34 AM,12/02/2015 07:35:05 AM,12/02/2015 07:38:19 AM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,Fire,12/02/2015 07:43:30 AM,1500 Block of UNDERWOOD AVE,San Francisco,94124,B10,17,6547,3,3,3,false,Alarm,1,TRUCK,6,10,10,Bayview Hunters Point,"(37.7293017723841, -122.390876776583)",153360587-T09 +160980991,63,16038824,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 08:50:58 AM,04/07/2016 08:50:58 AM,04/07/2016 08:51:21 AM,04/07/2016 08:51:30 AM,04/07/2016 08:59:44 AM,04/07/2016 09:10:04 AM,04/07/2016 09:30:02 AM,Code 2 Transport,04/07/2016 10:10:25 AM,SAINT JOSEPHS AV/GEARY BL,San Francisco,94115,B05,10,4261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7828853346645, -122.442793100058)",160980991-63 +142263463,T09,14078654,Structure Fire,08/14/2014,08/14/2014,08/14/2014 09:41:27 PM,08/14/2014 09:43:08 PM,08/14/2014 09:43:27 PM,08/14/2014 09:44:25 PM,08/14/2014 09:50:49 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 3 Transport,08/15/2014 01:22:41 AM,100 Block of SALINAS AVE,San Francisco,94124,B10,44,6542,3,3,3,false,Fire,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7210792704616, -122.398297307951)",142263463-T09 +150942693,T03,15035822,Medical Incident,04/04/2015,04/04/2015,04/04/2015 05:34:01 PM,04/04/2015 05:36:07 PM,04/04/2015 05:36:19 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 05:37:49 PM,GEARY ST/LEAVENWORTH ST,San Francisco,94109,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",150942693-T03 +160931136,88,16036787,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:06:06 AM,04/02/2016 10:07:32 AM,04/02/2016 10:09:43 AM,04/02/2016 10:10:16 AM,04/02/2016 10:20:39 AM,04/02/2016 10:29:03 AM,04/02/2016 10:58:50 AM,Code 2 Transport,04/02/2016 11:24:25 AM,900 Block of AVENUE B,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8249592142354, -122.375953739895)",160931136-88 +152161248,E15,15082185,Medical Incident,08/04/2015,08/04/2015,08/04/2015 10:59:02 AM,08/04/2015 11:00:08 AM,08/04/2015 11:00:28 AM,08/04/2015 11:00:47 AM,08/04/2015 11:01:45 AM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Patient Declined Transport,08/04/2015 11:05:16 AM,100 Block of PHELAN AVE,San Francisco,94112,B09,15,8233,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",152161248-E15 +152770823,E35,15106119,Alarms,10/04/2015,10/03/2015,10/04/2015 07:33:45 AM,10/04/2015 07:35:09 AM,10/04/2015 07:35:27 AM,10/04/2015 07:36:42 AM,10/04/2015 07:38:31 AM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Fire,10/04/2015 07:47:30 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",152770823-E35 +160981015,85,16038825,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:53:31 AM,04/07/2016 08:55:38 AM,04/07/2016 08:56:03 AM,04/07/2016 08:56:10 AM,04/07/2016 09:17:11 AM,04/07/2016 09:17:12 AM,04/07/2016 10:12:42 AM,Code 2 Transport,04/07/2016 10:44:35 AM,5600 Block of MISSION ST,San Francisco,94112,B09,33,6211,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7111379399076, -122.447066438218)",160981015-85 +142000992,E03,14069180,Medical Incident,07/19/2014,07/19/2014,07/19/2014 09:51:51 AM,07/19/2014 09:51:51 AM,07/19/2014 11:28:33 AM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Code 2 Transport,07/19/2014 11:28:39 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",142000992-E03 +142131445,KM07,14073819,Medical Incident,08/01/2014,08/01/2014,08/01/2014 11:41:52 AM,08/01/2014 11:45:04 AM,08/01/2014 11:46:17 AM,08/01/2014 11:47:03 AM,08/01/2014 11:52:47 AM,08/01/2014 12:20:46 PM,08/01/2014 12:46:27 PM,Code 2 Transport,08/01/2014 01:19:16 PM,400 Block of 36TH AVE,San Francisco,94121,B07,34,7247,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7812627112203, -122.49657494575)",142131445-KM07 +160953612,AM20,16037792,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 08:38:06 PM,04/04/2016 08:38:06 PM,04/04/2016 08:39:00 PM,04/04/2016 08:40:07 PM,04/04/2016 08:52:52 PM,04/04/2016 08:59:11 PM,04/04/2016 09:26:31 PM,Code 2 Transport,04/04/2016 09:58:13 PM,GEARY BL/32ND AV,San Francisco,94121,B07,14,7237,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7797469488678, -122.492232287419)",160953612-AM20 +142502288,E32,14087244,Medical Incident,09/07/2014,09/07/2014,09/07/2014 03:52:12 PM,09/07/2014 03:53:38 PM,09/07/2014 03:54:33 PM,09/07/2014 03:56:17 PM,09/07/2014 03:58:15 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Code 2 Transport,09/07/2014 04:06:36 PM,0 Block of ROSCOE ST,San Francisco,94110,B06,32,5644,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7344958957101, -122.4187013488)",142502288-E32 +141711695,E33,14059055,Medical Incident,06/20/2014,06/20/2014,06/20/2014 01:02:51 PM,06/20/2014 01:04:49 PM,06/20/2014 01:05:42 PM,06/20/2014 01:07:13 PM,06/20/2014 01:08:17 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Code 2 Transport,06/20/2014 01:30:27 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7131061953593, -122.460796179398)",141711695-E33 +160931858,KM09,16036873,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 01:39:00 PM,04/02/2016 01:39:00 PM,04/02/2016 01:41:39 PM,04/02/2016 01:42:16 PM,04/02/2016 02:05:20 PM,04/02/2016 02:40:18 PM,04/02/2016 02:55:18 PM,Other,04/02/2016 03:46:57 PM,700 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Mission,"(37.760896938598, -122.421570792932)",160931858-KM09 +152230248,E03,15084838,Medical Incident,08/11/2015,08/10/2015,08/11/2015 02:35:14 AM,08/11/2015 02:35:42 AM,08/11/2015 02:36:53 AM,08/11/2015 02:39:09 AM,08/11/2015 02:41:25 AM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Code 3 Transport,08/11/2015 02:46:27 AM,1100 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7903887572034, -122.414938763678)",152230248-E03 +141344261,B01,14045964,Alarms,05/14/2014,05/14/2014,05/14/2014 11:16:00 PM,05/14/2014 11:18:16 PM,05/14/2014 11:19:35 PM,05/14/2014 11:21:04 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/14/2014 11:22:55 PM,400 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7912932514009, -122.398614610411)",141344261-B01 +160960406,AM02,16037890,Medical Incident,04/05/2016,04/04/2016,04/05/2016 06:00:25 AM,04/05/2016 06:00:25 AM,04/05/2016 06:01:34 AM,04/05/2016 06:02:16 AM,04/05/2016 06:23:42 AM,04/05/2016 06:23:43 AM,04/05/2016 06:36:05 AM,Code 2 Transport,04/05/2016 07:07:24 AM,400 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7991347204832, -122.408396415403)",160960406-AM02 +152912955,85,15111930,Medical Incident,10/18/2015,10/18/2015,10/18/2015 06:50:17 PM,10/18/2015 06:51:27 PM,10/18/2015 06:52:05 PM,10/18/2015 06:52:22 PM,10/18/2015 07:00:59 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Fire,10/18/2015 07:06:15 PM,0 Block of MIDDLEFIELD DR,San Francisco,94132,B08,19,8741,3,3,3,true,Non Life-threatening,1,MEDIC,3,8,7,Sunset/Parkside,"(37.7331941268924, -122.486407334912)",152912955-85 +150613855,AM24,15023482,Medical Incident,03/02/2015,03/02/2015,03/02/2015 11:03:28 PM,03/02/2015 11:05:29 PM,03/02/2015 11:06:29 PM,03/02/2015 11:08:01 PM,03/02/2015 11:19:34 PM,03/02/2015 11:29:40 PM,03/02/2015 11:53:51 PM,Code 2 Transport,03/03/2015 12:17:49 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",150613855-AM24 +143290553,77,14116573,Medical Incident,11/25/2014,11/24/2014,11/25/2014 06:56:29 AM,11/25/2014 06:57:54 AM,11/25/2014 07:01:22 AM,11/25/2014 07:01:22 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Gone on Arrival,11/25/2014 07:04:36 AM,300 Block of BERRY ST,San Francisco,94107,B03,8,2235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7731903116558, -122.396737748695)",143290553-77 +160991070,71,16039243,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:09:58 AM,04/08/2016 10:11:01 AM,04/08/2016 10:11:26 AM,04/08/2016 10:11:39 AM,04/08/2016 10:17:04 AM,04/08/2016 10:33:22 AM,04/08/2016 11:09:23 AM,Code 2 Transport,04/08/2016 11:29:25 AM,600 Block of SANSOME ST,San Francisco,94111,B01,13,1211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.79618119485, -122.401696308834)",160991070-71 +160921272,AM10,16036398,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:53:08 AM,04/01/2016 10:57:00 AM,04/01/2016 10:57:55 AM,04/01/2016 10:58:33 AM,04/01/2016 11:03:12 AM,04/01/2016 11:14:18 AM,04/01/2016 11:31:43 AM,Code 2 Transport,04/01/2016 11:52:44 AM,ALABAMA ST/23RD ST,San Francisco,94110,B06,7,5476,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7542867714777, -122.41112012571)",160921272-AM10 +150132387,FD00A,15005228,,01/13/2015,01/13/2015,01/13/2015 03:45:23 PM,01/13/2015 03:45:23 PM,01/13/2015 04:12:17 PM,01/13/2015 04:12:17 PM,01/13/2015 04:12:17 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Medical Examiner,01/13/2015 04:12:25 PM,300 Block of SPEAR ST,San Francisco,94105,B03,35,2113,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,4,3,6,Financial District/South Beach,"(37.7894150834446, -122.390249078414)",150132387-FD00A +141160359,E01,14039315,Medical Incident,04/26/2014,04/26/2014,04/26/2014 09:54:51 PM,04/26/2014 09:56:44 PM,04/26/2014 09:57:04 PM,04/26/2014 09:58:18 PM,04/26/2014 10:00:36 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Code 2 Transport,04/26/2014 10:03:30 PM,200 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",141160359-E01 +143371089,T03,14119471,Alarms,12/03/2014,12/03/2014,12/03/2014 08:47:44 AM,12/03/2014 08:49:03 AM,12/03/2014 08:49:15 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Other,12/03/2014 08:50:12 AM,2100 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Alarm,1,TRUCK,2,5,5,Japantown,"(37.7836030526522, -122.438694976295)",143371089-T03 +151862327,E35,15071086,Alarms,07/05/2015,07/05/2015,07/05/2015 03:44:15 PM,07/05/2015 03:45:40 PM,07/05/2015 03:46:07 PM,07/05/2015 03:47:20 PM,07/05/2015 03:50:25 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 04:23:42 PM,0 Block of FREMONT ST,San Francisco,94105,B03,35,2126,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7911273215916, -122.397428020134)",151862327-E35 +141592184,66,14054865,Medical Incident,06/08/2014,06/08/2014,06/08/2014 04:41:22 PM,06/08/2014 04:41:22 PM,06/08/2014 04:41:50 PM,06/08/2014 04:42:01 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Code 2 Transport,06/08/2014 04:43:52 PM,DOLORES ST/18TH ST,San Francisco,94110,B02,6,5251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,8,Mission,"(37.761427134441, -122.426076501845)",141592184-66 +150881778,E41,15033590,Medical Incident,03/29/2015,03/29/2015,03/29/2015 12:49:11 PM,03/29/2015 12:51:17 PM,03/29/2015 12:51:35 PM,03/29/2015 12:52:44 PM,03/29/2015 12:55:54 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Code 2 Transport,03/29/2015 01:07:00 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",150881778-E41 +152422349,E09,15092355,Odor (Strange / Unknown),08/30/2015,08/30/2015,08/30/2015 03:35:36 PM,08/30/2015 03:37:14 PM,08/30/2015 03:37:29 PM,08/30/2015 03:38:34 PM,08/30/2015 03:42:40 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 03:47:43 PM,500 Block of PERALTA AVE,San Francisco,94110,B06,9,5667,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7438941638531, -122.408571688527)",152422349-E09 +160951108,KM05,16037565,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:59:23 AM,04/04/2016 10:02:13 AM,04/04/2016 10:02:41 AM,04/04/2016 10:04:00 AM,04/04/2016 10:10:54 AM,04/04/2016 10:46:13 AM,04/04/2016 11:16:31 AM,Code 2 Transport,04/04/2016 11:52:15 AM,900 Block of OFARRELL ST,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848026049584, -122.420359587803)",160951108-KM05 +143220969,E38,14113948,Administrative,11/18/2014,11/18/2014,11/18/2014 09:33:01 AM,11/18/2014 09:33:05 AM,11/18/2014 09:33:36 AM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,No Merit,11/18/2014 09:34:15 AM,2100 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",143220969-E38 +152522073,63,15096339,Medical Incident,09/09/2015,09/09/2015,09/09/2015 01:43:50 PM,09/09/2015 01:43:50 PM,09/09/2015 01:44:35 PM,09/09/2015 01:45:17 PM,09/09/2015 01:53:21 PM,09/09/2015 02:06:49 PM,09/09/2015 03:07:43 PM,Code 2 Transport,09/09/2015 03:44:46 PM,POWELL ST/BEACH ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807690493217, -122.412329558798)",152522073-63 +160930025,53,16036669,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:07:33 AM,04/02/2016 12:10:10 AM,04/02/2016 12:10:24 AM,04/02/2016 12:10:47 AM,04/02/2016 12:15:10 AM,04/02/2016 12:26:56 AM,04/02/2016 12:42:01 AM,Code 3 Transport,04/02/2016 01:29:14 AM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800574377607, -122.408673540372)",160930025-53 +142041281,AM06,14070571,Medical Incident,07/23/2014,07/23/2014,07/23/2014 10:40:26 AM,07/23/2014 10:41:29 AM,07/23/2014 10:43:55 AM,07/23/2014 10:43:55 AM,07/23/2014 10:47:58 AM,07/23/2014 10:52:56 AM,07/23/2014 11:00:04 AM,Code 3 Transport,07/23/2014 11:32:40 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2245,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,South of Market,"(37.7791674218963, -122.406346425632)",142041281-AM06 +152030348,E12,15077204,Medical Incident,07/22/2015,07/21/2015,07/22/2015 04:12:48 AM,07/22/2015 04:13:08 AM,07/22/2015 04:13:39 AM,07/22/2015 04:15:27 AM,07/22/2015 04:19:49 AM,04/25/2016 01:09:20 PM,04/25/2016 01:09:20 PM,Code 2 Transport,07/22/2015 04:22:01 AM,1300 Block of JUDAH ST,San Francisco,94122,B08,22,7371,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,8,7,Inner Sunset,"(37.7616274581117, -122.476456989325)",152030348-E12 +152730173,T12,15104353,Structure Fire,09/30/2015,09/29/2015,09/30/2015 01:52:47 AM,09/30/2015 01:52:47 AM,09/30/2015 01:54:44 AM,09/30/2015 01:57:01 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 02:00:45 AM,WOODSIDE AV/BALCETA AV,San Francisco,94127,B08,39,8645,3,3,3,false,Alarm,1,TRUCK,2,8,7,Twin Peaks,"(37.7465304469553, -122.456314707116)",152730173-T12 +160962094,66,16038038,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:59:41 PM,04/05/2016 02:02:43 PM,04/05/2016 02:03:25 PM,04/05/2016 02:03:41 PM,04/05/2016 02:29:40 PM,04/05/2016 02:50:17 PM,04/05/2016 03:15:25 PM,Code 2 Transport,04/05/2016 03:52:14 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160962094-66 +160952778,KM04,16037710,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:44:15 PM,04/04/2016 04:45:57 PM,04/04/2016 04:49:25 PM,04/04/2016 04:50:38 PM,04/04/2016 05:24:09 PM,04/04/2016 05:24:18 PM,04/04/2016 05:36:21 PM,Code 2 Transport,04/04/2016 06:16:05 PM,HAYES ST/VAN NESS AV,San Francisco,94102,B02,36,3166,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7772998560434, -122.419693565739)",160952778-KM04 +142940018,81,14103534,Medical Incident,10/21/2014,10/20/2014,10/21/2014 12:07:25 AM,10/21/2014 12:12:09 AM,10/21/2014 12:12:27 AM,10/21/2014 12:12:41 AM,10/21/2014 12:18:13 AM,10/21/2014 12:32:16 AM,10/21/2014 12:59:28 AM,Code 2 Transport,10/21/2014 01:31:34 AM,2000 Block of RIVERA ST,San Francisco,94116,B08,18,7521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7461811267761, -122.488267468509)",142940018-81 +150872233,FD00A,15033256,,03/28/2015,03/28/2015,03/28/2015 03:01:52 PM,03/28/2015 03:02:02 PM,03/28/2015 03:07:29 PM,03/28/2015 03:07:29 PM,03/28/2015 03:07:29 PM,04/25/2016 01:11:28 PM,04/25/2016 01:11:28 PM,Fire,03/28/2015 03:07:36 PM,2700 Block of 25TH ST,San Francisco,94110,B10,9,2624,3,3,3,false,Alarm,1,SUPPORT,2,10,10,Mission,"(37.7517018091907, -122.405708343282)",150872233-FD00A +143380484,E06,14119843,Medical Incident,12/04/2014,12/03/2014,12/04/2014 05:59:40 AM,12/04/2014 06:01:07 AM,12/04/2014 06:01:49 AM,12/04/2014 06:03:54 AM,12/04/2014 06:05:28 AM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,Code 2 Transport,12/04/2014 06:25:50 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",143380484-E06 +160961481,KM05,16037981,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:38:09 AM,04/05/2016 11:38:52 AM,04/05/2016 11:39:19 AM,04/05/2016 11:40:02 AM,04/05/2016 11:52:25 AM,04/05/2016 11:59:50 AM,04/05/2016 12:20:08 PM,Code 3 Transport,04/05/2016 01:42:08 PM,700 Block of LONG BRIDGE ST,San Francisco,94158,B03,4,2264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7713904956713, -122.394161419191)",160961481-KM05 +142761726,74,14096896,Traffic Collision,10/03/2014,10/03/2014,10/03/2014 12:19:46 PM,10/03/2014 12:19:46 PM,10/03/2014 12:20:12 PM,10/03/2014 12:20:19 PM,10/03/2014 12:27:49 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Patient Declined Transport,10/03/2014 01:23:58 PM,CLARENCE PL/TOWNSEND ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7792774525634, -122.392210657717)",142761726-74 +153142055,E14,15120685,Alarms,11/10/2015,11/10/2015,11/10/2015 01:53:45 PM,11/10/2015 01:55:27 PM,11/10/2015 01:55:39 PM,11/10/2015 01:56:49 PM,11/10/2015 01:59:41 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Fire,11/10/2015 02:09:13 PM,400 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7232,3,3,3,true,Alarm,1,ENGINE,1,7,2,Seacliff,"(37.7875603847719, -122.487923755449)",153142055-E14 +151102636,KM10,15041699,Medical Incident,04/20/2015,04/20/2015,04/20/2015 04:41:11 PM,04/20/2015 04:44:08 PM,04/20/2015 04:55:42 PM,04/20/2015 04:58:02 PM,04/20/2015 05:14:25 PM,04/20/2015 05:21:53 PM,04/20/2015 05:39:48 PM,Code 2 Transport,04/20/2015 06:12:06 PM,100 Block of DRUMM ST,San Francisco,94111,B01,13,1115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",151102636-KM10 +152862548,E36,15109922,Medical Incident,10/13/2015,10/13/2015,10/13/2015 03:15:11 PM,10/13/2015 03:15:38 PM,10/13/2015 03:15:58 PM,10/13/2015 03:17:23 PM,10/13/2015 03:20:21 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,Code 2 Transport,10/13/2015 03:20:59 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",152862548-E36 +152720251,62,15104007,Medical Incident,09/29/2015,09/28/2015,09/29/2015 02:44:07 AM,09/29/2015 02:45:16 AM,09/29/2015 02:45:46 AM,09/29/2015 02:49:14 AM,09/29/2015 02:51:40 AM,09/29/2015 03:18:59 AM,09/29/2015 03:26:33 AM,Code 2 Transport,09/29/2015 03:58:04 AM,SAN JOSE AV/GENEVA AV,San Francisco,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",152720251-62 +160972090,53,16038429,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:14:26 PM,04/06/2016 01:19:16 PM,04/06/2016 01:19:47 PM,04/06/2016 01:19:59 PM,04/06/2016 01:23:15 PM,04/06/2016 01:44:00 PM,04/06/2016 01:49:18 PM,Code 3 Transport,04/06/2016 02:46:28 PM,400 Block of LARKIN ST,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",160972090-53 +143081899,E03,14109004,Medical Incident,11/04/2014,11/04/2014,11/04/2014 01:40:38 PM,11/04/2014 01:40:38 PM,11/04/2014 01:41:11 PM,11/04/2014 01:42:36 PM,11/04/2014 01:44:16 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 01:53:13 PM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",143081899-E03 +152681819,E06,15102680,Structure Fire,09/25/2015,09/25/2015,09/25/2015 01:04:32 PM,09/25/2015 01:05:19 PM,09/25/2015 01:05:58 PM,09/25/2015 01:07:05 PM,09/25/2015 01:08:39 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 02:31:58 PM,900 Block of OAK ST,San Francisco,94117,B05,21,4141,3,3,3,true,Fire,1,ENGINE,3,5,5,Hayes Valley,"(37.7735018159169, -122.434940936471)",152681819-E06 +142961180,73,14104326,Medical Incident,10/23/2014,10/23/2014,10/23/2014 10:09:15 AM,10/23/2014 10:09:15 AM,10/23/2014 10:09:46 AM,10/23/2014 10:10:46 AM,10/23/2014 10:20:44 AM,10/23/2014 10:40:58 AM,10/23/2014 11:00:06 AM,Code 2 Transport,10/23/2014 11:53:06 AM,0 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7705968083436, -122.439656029792)",142961180-73 +160964143,AM14,16038218,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:06:50 PM,04/05/2016 11:10:17 PM,04/05/2016 11:10:56 PM,04/05/2016 11:11:47 PM,04/05/2016 11:18:20 PM,04/05/2016 11:38:58 PM,04/06/2016 12:00:18 AM,Code 2 Transport,04/06/2016 12:16:22 AM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",160964143-AM14 +160950729,AM02,16037545,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:24:54 AM,04/04/2016 08:25:16 AM,04/04/2016 08:25:49 AM,04/04/2016 08:26:21 AM,04/04/2016 08:32:42 AM,04/04/2016 08:49:11 AM,04/04/2016 09:03:11 AM,Other,04/04/2016 09:16:55 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160950729-AM02 +160943226,88,16037412,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:08:24 PM,04/03/2016 08:11:37 PM,04/03/2016 08:12:53 PM,04/03/2016 08:13:08 PM,04/03/2016 08:19:34 PM,04/03/2016 08:35:02 PM,04/03/2016 08:49:55 PM,Code 2 Transport,04/03/2016 09:46:13 PM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7867008144662, -122.393633802417)",160943226-88 +150373198,E01,15014482,Medical Incident,02/06/2015,02/06/2015,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Code 2 Transport,02/06/2015 08:15:15 PM,SHERMAN ST/FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7773996335317, -122.407014751383)",150373198-E01 +142450093,E03,14085224,Smoke Investigation (Outside),09/02/2014,09/01/2014,09/02/2014 12:49:05 AM,09/02/2014 12:49:05 AM,09/02/2014 12:49:25 AM,09/02/2014 12:51:01 AM,09/02/2014 12:58:11 AM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/02/2014 02:10:09 AM,MASON ST/MARKET ST,San Francisco,94103,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",142450093-E03 +160954081,85,16037827,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:05:42 PM,04/04/2016 11:06:01 PM,04/04/2016 11:06:10 PM,04/04/2016 11:06:19 PM,04/04/2016 11:11:38 PM,04/04/2016 11:34:44 PM,04/04/2016 11:40:27 PM,Code 2 Transport,04/05/2016 12:11:34 AM,900 Block of MCALLISTER ST,San Francisco,94115,B02,5,3425,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7791087021011, -122.42844880474)",160954081-85 +142393121,T10,14083242,Other,08/27/2014,08/27/2014,08/27/2014 07:23:06 PM,08/27/2014 07:24:54 PM,08/27/2014 07:25:28 PM,08/27/2014 07:26:44 PM,08/27/2014 07:29:24 PM,04/25/2016 01:15:25 PM,04/25/2016 01:15:25 PM,Fire,08/27/2014 07:38:06 PM,2300 Block of SUTTER ST,San Francisco,94115,B05,10,4155,3,3,3,false,Alarm,1,TRUCK,3,5,2,Pacific Heights,"(37.7854076725191, -122.439050444523)",142393121-T10 +160962829,56,16038099,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:53:32 PM,04/05/2016 04:54:25 PM,04/05/2016 04:54:44 PM,04/05/2016 04:55:07 PM,04/05/2016 05:01:14 PM,04/05/2016 05:33:28 PM,04/05/2016 06:06:30 PM,Code 2 Transport,04/05/2016 06:37:55 PM,3RD ST/OAKDALE AV,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",160962829-56 +160952572,KM12,16037687,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:54:23 PM,04/04/2016 03:55:10 PM,04/04/2016 03:55:43 PM,04/04/2016 03:56:16 PM,04/04/2016 04:09:18 PM,04/04/2016 04:19:26 PM,04/04/2016 04:47:22 PM,Code 2 Transport,04/04/2016 05:33:39 PM,1200 Block of NORTHPOINT DR,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",160952572-KM12 +143220250,E32,14113876,Medical Incident,11/18/2014,11/17/2014,11/18/2014 03:22:34 AM,11/18/2014 03:25:17 AM,11/18/2014 03:26:58 AM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,Code 2 Transport,11/18/2014 03:30:53 AM,3200 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",143220250-E32 +143092280,E28,14109423,Medical Incident,11/05/2014,11/05/2014,11/05/2014 03:40:49 PM,11/05/2014 03:42:33 PM,11/05/2014 03:44:48 PM,11/05/2014 03:46:49 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Code 2 Transport,11/05/2014 04:03:33 PM,0 Block of JEFFERSON ST,San Francisco,94133,B01,28,1344,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,North Beach,"(37.8084686918657, -122.4133334279)",143092280-E28 +141480711,D2,14050740,Structure Fire,05/28/2014,05/28/2014,05/28/2014 08:15:38 AM,05/28/2014 08:16:09 AM,05/28/2014 08:16:26 AM,05/28/2014 08:17:16 AM,05/28/2014 08:19:24 AM,04/25/2016 01:17:05 PM,04/25/2016 01:17:05 PM,Fire,05/28/2014 08:23:49 AM,0 Block of GALILEE LN,San Francisco,94115,B04,5,3365,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7837879620082, -122.428154523133)",141480711-D2 +152502128,E10,15095530,Medical Incident,09/07/2015,09/07/2015,09/07/2015 03:33:30 PM,09/07/2015 03:35:05 PM,09/07/2015 03:35:31 PM,09/07/2015 03:36:28 PM,09/07/2015 03:38:20 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Code 2 Transport,09/07/2015 03:44:15 PM,3600 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4436,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7862765427063, -122.454079603628)",152502128-E10 +141220226,E13,14041344,Alarms,05/02/2014,05/02/2014,05/02/2014 02:04:57 PM,05/02/2014 02:05:48 PM,05/02/2014 02:05:55 PM,05/02/2014 02:06:58 PM,05/02/2014 02:09:27 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 02:18:34 PM,800 Block of KEARNY ST,SAN FRANCISCO,94111,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.795777854883, -122.404981817889)",141220226-E13 +150443244,89,15017256,Medical Incident,02/13/2015,02/13/2015,02/13/2015 07:42:02 PM,02/13/2015 07:42:55 PM,02/13/2015 07:43:12 PM,02/13/2015 07:43:20 PM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,Code 2 Transport,02/13/2015 07:44:49 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",150443244-89 +160950533,88,16037526,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:02:38 AM,04/04/2016 07:06:34 AM,04/04/2016 07:07:03 AM,04/04/2016 07:07:40 AM,04/04/2016 07:25:55 AM,04/04/2016 07:47:48 AM,04/04/2016 08:09:04 AM,Code 2 Transport,04/04/2016 08:40:58 AM,300 Block of 20TH AVE,San Francisco,94121,B07,31,7164,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7813007244851, -122.479380199949)",160950533-88 +160993214,86,16039436,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:09:02 PM,04/08/2016 07:10:08 PM,04/08/2016 07:10:21 PM,04/08/2016 07:10:45 PM,04/08/2016 07:19:01 PM,04/08/2016 07:34:46 PM,04/08/2016 07:55:31 PM,Code 2 Transport,04/08/2016 08:41:45 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160993214-86 +143612454,60,14129229,Medical Incident,12/27/2014,12/27/2014,12/27/2014 04:58:23 PM,12/27/2014 04:58:42 PM,12/27/2014 05:01:19 PM,12/27/2014 05:01:23 PM,12/27/2014 05:05:03 PM,12/27/2014 05:20:04 PM,12/27/2014 05:57:29 PM,Code 2 Transport,12/27/2014 06:33:42 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",143612454-60 +153221494,88,15123836,Medical Incident,11/18/2015,11/18/2015,11/18/2015 11:05:53 AM,11/18/2015 11:07:35 AM,11/18/2015 11:08:09 AM,11/18/2015 11:08:50 AM,11/18/2015 11:11:43 AM,11/18/2015 11:27:50 AM,11/18/2015 11:39:48 AM,Code 2 Transport,11/18/2015 12:28:02 PM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",153221494-88 +152103490,RC2,15080147,Medical Incident,07/29/2015,07/29/2015,07/29/2015 08:34:25 PM,07/29/2015 08:36:09 PM,07/29/2015 08:37:10 PM,07/29/2015 08:37:36 PM,07/29/2015 08:51:00 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Code 2 Transport,07/29/2015 08:52:04 PM,DIVISADERO ST/MCALLISTER ST,San Francisco,94115,B05,21,4151,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,5,5,Western Addition,"(37.777794188731, -122.438365500073)",152103490-RC2 +142011064,KM06,14069522,Traffic Collision,07/20/2014,07/20/2014,07/20/2014 10:26:55 AM,07/20/2014 10:29:19 AM,07/20/2014 10:30:49 AM,07/20/2014 10:31:49 AM,07/20/2014 10:35:56 AM,07/20/2014 10:46:17 AM,07/20/2014 11:02:25 AM,Code 2 Transport,07/20/2014 11:24:41 AM,CLAY ST/STOCKTON ST,San Francisco,94108,B01,13,1313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7940602956144, -122.407903302006)",142011064-KM06 +151132218,FD00A,15042746,,04/23/2015,04/23/2015,04/23/2015 02:50:30 PM,04/23/2015 02:51:48 PM,04/23/2015 03:03:56 PM,04/23/2015 03:03:56 PM,04/23/2015 03:03:56 PM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Gone on Arrival,04/23/2015 03:04:17 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,SUPPORT,2,1,3,Chinatown,"(37.7977792275329, -122.407827984258)",151132218-FD00A +150661984,E06,15025256,Medical Incident,03/07/2015,03/07/2015,03/07/2015 02:06:24 PM,03/07/2015 02:06:40 PM,03/07/2015 02:06:53 PM,03/07/2015 02:07:38 PM,03/07/2015 02:09:37 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Code 2 Transport,03/07/2015 02:16:28 PM,DOUGLASS ST/MARKET ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7614245661086, -122.439413851523)",150661984-E06 +141160144,E08,14039125,Medical Incident,04/26/2014,04/26/2014,04/26/2014 10:30:55 AM,04/26/2014 10:32:46 AM,04/26/2014 10:33:05 AM,04/26/2014 10:34:06 AM,04/26/2014 10:38:49 AM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Patient Declined Transport,04/26/2014 10:49:10 AM,800 Block of 3RD ST,,94107,B03,8,2150,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",141160144-E08 +143261677,E03,14115489,Structure Fire,11/22/2014,11/22/2014,11/22/2014 12:18:26 PM,11/22/2014 12:21:42 PM,11/22/2014 12:22:23 PM,11/22/2014 12:22:49 PM,11/22/2014 12:24:00 PM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Fire,11/22/2014 12:45:33 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",143261677-E03 +160993639,55,16039478,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:25:01 PM,04/08/2016 09:26:19 PM,04/08/2016 09:26:34 PM,04/08/2016 09:26:46 PM,04/08/2016 09:40:59 PM,04/08/2016 10:40:26 PM,04/08/2016 10:55:09 PM,Code 2 Transport,04/08/2016 11:30:00 PM,7500 Block of GEARY BLVD,San Francisco,94121,B07,34,7264,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",160993639-55 +150611879,52,15023297,Medical Incident,03/02/2015,03/02/2015,03/02/2015 01:51:47 PM,03/02/2015 01:54:06 PM,03/02/2015 01:56:44 PM,03/02/2015 01:56:58 PM,04/25/2016 01:11:57 PM,04/25/2016 01:11:57 PM,04/25/2016 01:11:57 PM,Cancelled,03/02/2015 02:05:37 PM,1500 Block of UNION ST,San Francisco,94123,B04,16,3233,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7985022314582, -122.424814777884)",150611879-52 +160924056,76,16036661,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:52:04 PM,04/01/2016 11:55:21 PM,04/01/2016 11:56:30 PM,04/01/2016 11:56:53 PM,04/02/2016 12:01:28 AM,04/02/2016 12:14:08 AM,04/02/2016 12:23:00 AM,Code 2 Transport,04/02/2016 12:44:07 AM,CORDELIA ST/PACIFIC AV,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7966502963791, -122.408848570368)",160924056-76 +141050149,E07,14035383,Medical Incident,04/15/2014,04/15/2014,04/15/2014 11:33:44 AM,04/15/2014 11:34:16 AM,04/15/2014 11:34:38 AM,04/15/2014 11:35:30 AM,04/15/2014 11:37:37 AM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 11:49:50 AM,24TH ST/FOLSOM ST,SAN FRANCISCO,94110,B06,7,5526,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",141050149-E07 +141260191,58,14042706,Medical Incident,05/06/2014,05/06/2014,05/06/2014 11:45:27 AM,05/06/2014 11:47:06 AM,05/06/2014 11:48:32 AM,05/06/2014 11:48:37 AM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Code 2 Transport,05/06/2014 01:26:13 PM,400 Block of BAY ST,SAN FRANCISCO,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",141260191-58 +160972109,AM12,16038432,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:18:14 PM,04/06/2016 01:24:26 PM,04/06/2016 01:25:09 PM,04/06/2016 01:25:48 PM,04/06/2016 01:36:33 PM,04/06/2016 02:03:36 PM,04/06/2016 02:23:31 PM,Code 2 Transport,04/06/2016 02:59:03 PM,0 Block of PARKRIDGE DR,San Francisco,94131,B06,24,5283,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Twin Peaks,"(37.751152470811, -122.445668704285)",160972109-AM12 +160973753,KM11,16038626,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:09:04 PM,04/06/2016 07:10:35 PM,04/06/2016 07:15:01 PM,04/06/2016 07:15:43 PM,04/06/2016 07:24:34 PM,04/06/2016 07:47:02 PM,04/06/2016 08:05:33 PM,Code 3 Transport,04/06/2016 08:48:10 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160973753-KM11 +151382537,71,15052493,Citizen Assist / Service Call,05/18/2015,05/18/2015,05/18/2015 04:42:02 PM,05/18/2015 04:43:51 PM,05/18/2015 04:58:03 PM,05/18/2015 04:58:18 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Cancelled,05/18/2015 04:59:48 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,1262,3,3,3,true,Alarm,1,MEDIC,3,1,3,North Beach,"(37.8079416185562, -122.409855448992)",151382537-71 +151092454,RS2,15041348,Other,04/19/2015,04/19/2015,04/19/2015 04:48:23 PM,04/19/2015 04:50:22 PM,04/19/2015 04:53:05 PM,04/19/2015 04:55:49 PM,04/19/2015 05:03:51 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Fire,04/19/2015 05:29:46 PM,1000 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,false,Alarm,1,RESCUE SQUAD,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",151092454-RS2 +151081321,E43,15040867,Electrical Hazard,04/18/2015,04/18/2015,04/18/2015 10:42:33 AM,04/18/2015 10:44:19 AM,04/18/2015 10:44:31 AM,04/18/2015 10:44:50 AM,04/18/2015 10:47:00 AM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Fire,04/18/2015 10:49:01 AM,500 Block of MOSCOW ST,San Francisco,94112,B09,43,6156,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7189576969244, -122.42945072491)",151081321-E43 +161001050,KM12,16039689,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:50:26 AM,04/09/2016 09:53:09 AM,04/09/2016 09:53:34 AM,04/09/2016 09:54:06 AM,04/09/2016 09:57:38 AM,04/09/2016 10:08:58 AM,04/09/2016 10:27:17 AM,Code 2 Transport,04/09/2016 11:00:38 AM,1600 Block of SCOTT ST,San Francisco,94115,B04,10,4131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7849864733147, -122.438181369407)",161001050-KM12 +150882898,T14,15033706,Traffic Collision,03/29/2015,03/29/2015,03/29/2015 06:15:43 PM,03/29/2015 06:16:15 PM,03/29/2015 06:17:05 PM,03/29/2015 06:18:11 PM,03/29/2015 06:22:08 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Patient Declined Transport,03/29/2015 06:25:12 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",150882898-T14 +141541894,E13,14052949,Medical Incident,06/03/2014,06/03/2014,06/03/2014 02:00:14 PM,06/03/2014 02:01:01 PM,06/03/2014 02:01:56 PM,06/03/2014 02:02:41 PM,06/03/2014 02:04:50 PM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,Code 2 Transport,06/03/2014 02:11:51 PM,0 Block of BEALE ST,San Francisco,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7917404337271, -122.396647503187)",141541894-E13 +153470076,74,15133485,Medical Incident,12/13/2015,12/12/2015,12/13/2015 12:28:02 AM,12/13/2015 12:28:02 AM,12/13/2015 12:29:00 AM,12/13/2015 12:29:11 AM,12/13/2015 12:33:08 AM,12/13/2015 01:02:05 AM,12/13/2015 01:02:06 AM,Code 2 Transport,12/13/2015 02:06:34 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",153470076-74 +141190018,E36,14040023,Structure Fire,04/29/2014,04/28/2014,04/29/2014 01:46:43 AM,04/29/2014 01:46:43 AM,04/29/2014 01:46:53 AM,04/29/2014 01:48:35 AM,04/29/2014 01:51:35 AM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Fire,04/29/2014 01:53:43 AM,1100 Block of MARKET ST,,94102,B02,36,1552,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141190018-E36 +153392722,KM09,15130534,Medical Incident,12/05/2015,12/05/2015,12/05/2015 04:53:33 PM,12/05/2015 04:54:42 PM,12/05/2015 04:55:34 PM,12/05/2015 04:56:15 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Code 2 Transport,12/05/2015 04:56:57 PM,MARKET ST/MONTGOMERY ST,San Francisco,94105,B01,13,1236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",153392722-KM09 +160942938,53,16037374,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:32:34 PM,04/03/2016 06:33:02 PM,04/03/2016 06:33:18 PM,04/03/2016 06:33:37 PM,04/03/2016 07:00:04 PM,04/03/2016 07:00:14 PM,04/03/2016 07:21:46 PM,Code 2 Transport,04/03/2016 07:47:07 PM,600 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7869781322214, -122.414969372107)",160942938-53 +143170474,70,14112170,Medical Incident,11/13/2014,11/12/2014,11/13/2014 06:07:07 AM,11/13/2014 06:07:07 AM,11/13/2014 06:07:32 AM,11/13/2014 06:07:51 AM,11/13/2014 06:12:09 AM,11/13/2014 06:28:15 AM,11/13/2014 06:40:43 AM,Code 2 Transport,11/13/2014 06:52:01 AM,JONES ST/OFARRELL ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",143170474-70 +160940090,55,16037100,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:26:56 AM,04/03/2016 12:27:20 AM,04/03/2016 12:27:33 AM,04/03/2016 12:27:47 AM,04/03/2016 12:34:34 AM,04/03/2016 01:09:10 AM,04/03/2016 01:15:19 AM,Code 2 Transport,04/03/2016 01:45:34 AM,2100 Block of 28TH AVE,San Francisco,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7472839020213, -122.485731349104)",160940090-55 +141170310,AM18,14039619,Medical Incident,04/27/2014,04/27/2014,04/27/2014 08:53:11 PM,04/27/2014 08:53:40 PM,04/27/2014 08:54:09 PM,04/27/2014 08:54:48 PM,04/27/2014 08:59:16 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Other,04/27/2014 09:01:34 PM,SUNSET BL/NORIEGA ST,SAN FRANCISCO,94122,B08,18,7573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7534138174953, -122.495226538122)",141170310-AM18 +151171537,E03,15044201,Medical Incident,04/27/2015,04/27/2015,04/27/2015 11:50:21 AM,04/27/2015 11:51:02 AM,04/27/2015 11:51:23 AM,04/27/2015 11:52:49 AM,04/27/2015 11:52:49 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Code 2 Transport,04/27/2015 12:04:06 PM,EDDY ST/VAN NESS AV,San Francisco,94109,B02,3,3163,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",151171537-E03 +150962261,E41,15036465,Medical Incident,04/06/2015,04/06/2015,04/06/2015 03:51:12 PM,04/06/2015 03:51:53 PM,04/06/2015 03:52:36 PM,04/06/2015 03:52:55 PM,04/06/2015 03:57:26 PM,04/25/2016 01:11:19 PM,04/25/2016 01:11:19 PM,Code 2 Transport,04/06/2015 04:02:40 PM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",150962261-E41 +150660776,E05,15025150,Medical Incident,03/07/2015,03/06/2015,03/07/2015 07:50:36 AM,03/07/2015 07:51:59 AM,03/07/2015 07:56:12 AM,03/07/2015 07:57:01 AM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Code 2 Transport,03/07/2015 08:00:29 AM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",150660776-E05 +151163570,D2,15044025,Structure Fire,04/26/2015,04/26/2015,04/26/2015 11:01:36 PM,04/26/2015 11:02:35 PM,04/26/2015 11:02:49 PM,04/26/2015 11:03:34 PM,04/26/2015 11:07:15 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/26/2015 11:17:43 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,3,3,3,false,Alarm,1,CHIEF,6,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",151163570-D2 +151841162,88,15070179,Medical Incident,07/03/2015,07/03/2015,07/03/2015 10:10:33 AM,07/03/2015 10:11:57 AM,07/03/2015 10:12:51 AM,07/03/2015 10:12:59 AM,07/03/2015 10:15:16 AM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,No Merit,07/03/2015 10:17:21 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",151841162-88 +143321354,E05,14117685,Medical Incident,11/28/2014,11/28/2014,11/28/2014 12:29:41 PM,11/28/2014 12:31:36 PM,11/28/2014 12:32:05 PM,11/28/2014 12:33:05 PM,11/28/2014 12:35:56 PM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Against Medical Advice,11/28/2014 12:40:44 PM,STEINER ST/MCALLISTER ST,San Francisco,94117,B05,5,3625,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7784224763419, -122.433407335297)",143321354-E05 +152441158,T12,15092997,Traffic Collision,09/01/2015,09/01/2015,09/01/2015 09:40:58 AM,09/01/2015 09:41:19 AM,09/01/2015 09:44:37 AM,09/01/2015 09:46:18 AM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Code 2 Transport,09/01/2015 09:47:07 AM,19TH AV/IRVING ST,San Francisco,94122,B08,22,7424,3,3,3,false,Potentially Life-Threatening,1,TRUCK,6,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",152441158-T12 +141923140,E03,14066691,Medical Incident,07/11/2014,07/11/2014,07/11/2014 07:59:51 PM,07/11/2014 07:59:51 PM,07/11/2014 07:59:51 PM,07/11/2014 07:59:51 PM,07/11/2014 07:59:51 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Code 2 Transport,07/11/2014 08:09:30 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",141923140-E03 +142362401,66,14082129,Medical Incident,08/24/2014,08/24/2014,08/24/2014 04:15:27 PM,08/24/2014 04:15:59 PM,08/24/2014 04:17:18 PM,08/24/2014 04:17:41 PM,08/24/2014 04:20:58 PM,08/24/2014 04:37:20 PM,08/24/2014 04:42:32 PM,Code 2 Transport,08/24/2014 05:13:00 PM,2300 Block of PINE ST,San Francisco,94115,B04,38,3543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7878999566909, -122.434481068996)",142362401-66 +151831328,RC1,15069808,Medical Incident,07/02/2015,07/02/2015,07/02/2015 10:26:29 AM,07/02/2015 10:27:40 AM,07/02/2015 10:43:03 AM,07/02/2015 10:43:53 AM,07/02/2015 10:51:00 AM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Code 2 Transport,07/02/2015 11:00:56 AM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",151831328-RC1 +160951305,57,16037583,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:54:15 AM,04/04/2016 10:55:06 AM,04/04/2016 10:55:49 AM,04/04/2016 10:56:24 AM,04/04/2016 11:00:53 AM,04/04/2016 11:14:08 AM,04/04/2016 11:32:44 AM,Code 2 Transport,04/04/2016 11:57:30 AM,1700 Block of OAK ST,San Francisco,94117,B05,21,4524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Golden Gate Park,"(37.7718274800356, -122.448146140288)",160951305-57 +152372337,E38,15090351,Medical Incident,08/25/2015,08/25/2015,08/25/2015 03:22:29 PM,08/25/2015 03:23:11 PM,08/25/2015 03:24:52 PM,08/25/2015 03:25:06 PM,08/25/2015 03:34:31 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Against Medical Advice,08/25/2015 03:52:54 PM,0 Block of MASONIC AVE,San Francisco,94118,B05,10,4411,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7837280171919, -122.447368375734)",152372337-E38 +151132368,75,15042760,Medical Incident,04/23/2015,04/23/2015,04/23/2015 03:28:11 PM,04/23/2015 03:29:43 PM,04/23/2015 03:35:03 PM,04/23/2015 03:35:18 PM,04/23/2015 04:02:08 PM,04/23/2015 04:19:49 PM,04/23/2015 04:32:27 PM,Code 2 Transport,04/23/2015 04:43:48 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",151132368-75 +160953568,55,16037784,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:25:17 PM,04/04/2016 08:25:17 PM,04/04/2016 08:27:25 PM,04/04/2016 08:27:34 PM,04/04/2016 08:33:15 PM,04/04/2016 08:45:58 PM,04/04/2016 08:55:46 PM,Code 2 Transport,04/04/2016 09:59:25 PM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800574377607, -122.408673540372)",160953568-55 +142762878,E40,14097035,Traffic Collision,10/03/2014,10/03/2014,10/03/2014 05:18:24 PM,10/03/2014 05:18:47 PM,10/03/2014 05:19:08 PM,10/03/2014 05:20:45 PM,10/03/2014 05:22:35 PM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Code 2 Transport,10/03/2014 05:26:12 PM,17TH AV/ULLOA ST,San Francisco,94116,B08,40,7376,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7412830674227, -122.473422991792)",142762878-E40 +161001744,76,16039778,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:46:45 PM,04/09/2016 01:48:54 PM,04/09/2016 02:00:26 PM,04/09/2016 02:00:43 PM,04/09/2016 02:09:59 PM,04/09/2016 02:16:23 PM,04/09/2016 02:24:33 PM,Code 2 Transport,04/09/2016 02:39:08 PM,1400 Block of BRODERICK ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Japantown,"(37.7838654796396, -122.441370226887)",161001744-76 +160964231,63,16038234,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:48:22 PM,04/05/2016 11:49:04 PM,04/05/2016 11:49:22 PM,04/05/2016 11:50:13 PM,04/06/2016 12:02:25 AM,04/06/2016 12:12:29 AM,04/06/2016 12:42:59 AM,Code 2 Transport,04/06/2016 12:56:38 AM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8299718852834, -122.374994903359)",160964231-63 +153270268,AM20,15125731,Medical Incident,11/23/2015,11/22/2015,11/23/2015 02:53:54 AM,11/23/2015 02:54:58 AM,11/23/2015 02:55:25 AM,11/23/2015 02:56:07 AM,11/23/2015 02:57:38 AM,11/23/2015 03:15:57 AM,11/23/2015 03:26:10 AM,Code 2 Transport,11/23/2015 04:03:39 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",153270268-AM20 +152731382,52,15104466,Traffic Collision,09/30/2015,09/30/2015,09/30/2015 11:16:12 AM,09/30/2015 11:23:09 AM,09/30/2015 11:24:20 AM,09/30/2015 11:24:27 AM,09/30/2015 11:34:09 AM,09/30/2015 11:51:04 AM,09/30/2015 12:05:12 PM,Code 2 Transport,09/30/2015 12:32:17 PM,INNES AV/NEWHALL ST,San Francisco,94124,B10,25,6532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7394219400946, -122.38883452306)",152731382-52 +141110232,E51,14037471,Administrative,04/21/2014,04/21/2014,04/21/2014 01:11:29 PM,04/21/2014 01:11:32 PM,04/21/2014 01:11:39 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Other,04/21/2014 01:12:07 PM,200 Block of LINCOLN BLVD,,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8016003147368, -122.456408426343)",141110232-E51 +152423886,E23,15092507,Medical Incident,08/30/2015,08/30/2015,08/30/2015 11:15:38 PM,08/30/2015 11:15:38 PM,08/30/2015 11:16:03 PM,08/30/2015 11:17:46 PM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Code 2 Transport,08/30/2015 11:22:26 PM,CUTLER AV/GREAT HY,San Francisco,94116,B08,23,7733,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.737022730844, -122.506314140272)",152423886-E23 +160950357,88,16037511,Medical Incident,04/04/2016,04/03/2016,04/04/2016 04:47:18 AM,04/04/2016 04:50:58 AM,04/04/2016 04:53:15 AM,04/04/2016 04:53:23 AM,04/04/2016 05:04:42 AM,04/04/2016 05:24:34 AM,04/04/2016 05:38:17 AM,Code 2 Transport,04/04/2016 06:06:45 AM,5300 Block of MISSION ST,San Francisco,94112,B09,43,6176,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7142832798437, -122.443056240053)",160950357-88 +143544156,E36,14126674,Medical Incident,12/20/2014,12/20/2014,12/20/2014 08:28:27 PM,12/20/2014 08:30:06 PM,12/20/2014 08:30:22 PM,12/20/2014 08:31:47 PM,12/20/2014 08:33:53 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Code 2 Transport,12/20/2014 08:41:16 PM,0 Block of WASHBURN ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",143544156-E36 +152823538,70,15108409,Medical Incident,10/09/2015,10/09/2015,10/09/2015 08:24:50 PM,10/09/2015 08:24:50 PM,10/09/2015 08:25:35 PM,10/09/2015 08:26:17 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Fire,10/09/2015 08:30:04 PM,THE EMBARCADERO SOU/BRYANT ST,San Francisco,94105,B03,35,2121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.787049345057, -122.388333561781)",152823538-70 +151810082,55,15068963,Medical Incident,06/30/2015,06/29/2015,06/30/2015 12:39:25 AM,06/30/2015 12:40:54 AM,06/30/2015 12:41:32 AM,06/30/2015 12:41:44 AM,06/30/2015 12:44:13 AM,06/30/2015 12:54:17 AM,06/30/2015 01:15:36 AM,Code 2 Transport,06/30/2015 01:27:51 AM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7849651112525, -122.421372762741)",151810082-55 +152191782,85,15083394,Medical Incident,08/07/2015,08/07/2015,08/07/2015 01:21:20 PM,08/07/2015 01:22:56 PM,08/07/2015 01:23:52 PM,08/07/2015 01:25:16 PM,08/07/2015 01:29:37 PM,08/07/2015 01:56:37 PM,08/07/2015 02:10:19 PM,Code 2 Transport,08/07/2015 02:40:46 PM,1500 Block of INDIANA ST,San Francisco,94107,B10,25,2635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.750758868663, -122.390429362473)",152191782-85 +142891998,RB1,14101889,Water Rescue,10/16/2014,10/16/2014,10/16/2014 02:00:03 PM,10/16/2014 02:00:39 PM,10/16/2014 02:28:30 PM,10/16/2014 02:28:30 PM,10/16/2014 02:57:11 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/16/2014 03:23:44 PM,CALL BOX: FORT MASON-PIER 4,San Francisco,94109,B04,16,3349,3,E,3,false,Fire,1,SUPPORT,8,1,2,Russian Hill,"(37.8085019164153, -122.420857228902)",142891998-RB1 +141980571,E32,14068456,Alarms,07/17/2014,07/16/2014,07/17/2014 06:31:27 AM,07/17/2014 06:32:43 AM,07/17/2014 06:32:52 AM,07/17/2014 06:35:04 AM,07/17/2014 06:37:08 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/17/2014 06:43:26 AM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7435550542265, -122.421128029505)",141980571-E32 +153131271,B06,15120256,Structure Fire,11/09/2015,11/09/2015,11/09/2015 11:09:50 AM,11/09/2015 11:13:05 AM,11/09/2015 11:13:47 AM,11/09/2015 11:15:14 AM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,Fire,11/09/2015 11:19:50 AM,KEITH ST/QUESADA AV,San Francisco,94124,B10,17,6551,3,3,3,false,Alarm,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7312317894346, -122.38772939119)",153131271-B06 +152162215,E07,15082293,Medical Incident,08/04/2015,08/04/2015,08/04/2015 03:29:31 PM,08/04/2015 03:31:44 PM,08/04/2015 03:34:32 PM,08/04/2015 03:34:47 PM,08/04/2015 03:38:03 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,No Merit,08/04/2015 03:39:25 PM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",152162215-E07 +152993849,E07,15114945,Medical Incident,10/26/2015,10/26/2015,10/26/2015 10:06:23 PM,10/26/2015 10:07:29 PM,10/26/2015 10:07:37 PM,10/26/2015 10:08:55 PM,10/26/2015 10:10:34 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Code 2 Transport,10/26/2015 10:17:34 PM,3100 Block of 17TH ST,San Francisco,94110,B02,7,5246,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7636581557579, -122.416784837447)",152993849-E07 +160972265,KM02,16038452,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:58:08 PM,04/06/2016 02:00:20 PM,04/06/2016 02:01:47 PM,04/06/2016 02:02:21 PM,04/06/2016 02:15:32 PM,04/06/2016 02:30:06 PM,04/06/2016 02:55:22 PM,Code 2 Transport,04/06/2016 03:21:01 PM,700 Block of BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7773986305, -122.400902402471)",160972265-KM02 +160961929,KM06,16038026,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:18:43 PM,04/05/2016 01:22:47 PM,04/05/2016 01:24:51 PM,04/05/2016 01:26:19 PM,04/05/2016 01:34:15 PM,04/05/2016 01:50:27 PM,04/05/2016 02:09:07 PM,Code 2 Transport,04/05/2016 02:52:19 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160961929-KM06 +152403713,78,15091593,Medical Incident,08/28/2015,08/28/2015,08/28/2015 08:00:19 PM,08/28/2015 08:02:10 PM,08/28/2015 08:02:48 PM,08/28/2015 08:03:28 PM,08/28/2015 08:07:14 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Unable to Locate,08/28/2015 08:14:07 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",152403713-78 +151842969,E18,15070331,Medical Incident,07/03/2015,07/03/2015,07/03/2015 06:20:51 PM,07/03/2015 06:21:46 PM,07/03/2015 06:22:06 PM,07/03/2015 06:23:59 PM,07/03/2015 06:26:14 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Code 3 Transport,07/03/2015 06:34:53 PM,1800 Block of 24TH AVE,San Francisco,94122,B08,18,7455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7530690887832, -122.481836048422)",151842969-E18 +142040711,E02,14070518,Alarms,07/23/2014,07/22/2014,07/23/2014 07:51:47 AM,07/23/2014 07:53:07 AM,07/23/2014 07:53:19 AM,07/23/2014 07:56:07 AM,07/23/2014 07:57:23 AM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Fire,07/23/2014 07:59:14 AM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7977792275329, -122.407827984258)",142040711-E02 +160974679,71,16038724,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:42:58 PM,04/06/2016 11:44:48 PM,04/06/2016 11:45:49 PM,04/06/2016 11:45:55 PM,04/06/2016 11:55:47 PM,04/07/2016 12:09:59 AM,04/07/2016 12:36:59 AM,Code 2 Transport,04/07/2016 01:08:44 AM,2200 Block of ORTEGA ST,San Francisco,94122,B08,18,7533,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7519334972204, -122.487602056441)",160974679-71 +151783169,E08,15067903,Medical Incident,06/27/2015,06/27/2015,06/27/2015 07:00:58 PM,06/27/2015 07:02:16 PM,06/27/2015 07:02:33 PM,06/27/2015 07:04:13 PM,06/27/2015 07:08:33 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,Code 2 Transport,06/27/2015 07:31:36 PM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",151783169-E08 +151650529,82,15063000,Medical Incident,06/14/2015,06/13/2015,06/14/2015 04:50:48 AM,06/14/2015 04:51:24 AM,06/14/2015 04:51:37 AM,06/14/2015 04:52:26 AM,06/14/2015 04:57:19 AM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,Medical Examiner,06/14/2015 05:04:49 AM,700 Block of KEARNY ST,San Francisco,94111,B01,13,1245,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",151650529-82 +141900413,E11,14065725,Alarms,07/09/2014,07/08/2014,07/09/2014 05:51:09 AM,07/09/2014 05:53:47 AM,07/09/2014 05:54:09 AM,07/09/2014 05:55:33 AM,07/09/2014 05:57:23 AM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Fire,07/09/2014 06:11:01 AM,1200 Block of CHURCH ST,San Francisco,94114,B06,11,5523,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7504922364404, -122.427385017637)",141900413-E11 +153091737,KM08,15118732,Medical Incident,11/05/2015,11/05/2015,11/05/2015 12:20:22 PM,11/05/2015 12:21:45 PM,11/05/2015 12:22:40 PM,11/05/2015 12:23:19 PM,11/05/2015 12:45:29 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Patient Declined Transport,11/05/2015 01:29:49 PM,JACKSON ST/BATTERY ST,San Francisco,94111,B01,13,1156,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7967768423432, -122.400681337314)",153091737-KM08 +160992323,KM11,16039362,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:42:07 PM,04/08/2016 03:42:58 PM,04/08/2016 03:43:31 PM,04/08/2016 03:44:07 PM,04/08/2016 03:52:06 PM,04/08/2016 04:14:18 PM,04/08/2016 04:43:32 PM,Code 2 Transport,04/08/2016 05:29:06 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160992323-KM11 +151910969,KM08,15072806,Medical Incident,07/10/2015,07/10/2015,07/10/2015 08:51:20 AM,07/10/2015 08:52:44 AM,07/10/2015 08:53:12 AM,07/10/2015 08:53:46 AM,07/10/2015 09:05:10 AM,07/10/2015 09:22:55 AM,07/10/2015 09:30:28 AM,Code 3 Transport,07/10/2015 10:21:13 AM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7720751846477, -122.408746829681)",151910969-KM08 +141080264,T02,14036471,Alarms,04/18/2014,04/18/2014,04/18/2014 03:43:49 PM,04/18/2014 03:44:52 PM,04/18/2014 03:45:17 PM,04/18/2014 03:46:40 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Fire,04/18/2014 03:50:22 PM,1300 Block of COLUMBUS AVE,SAN FRANCISCO,94133,B01,28,1525,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8061515935611, -122.418537074676)",141080264-T02 +161002088,66,16039813,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:39:01 PM,04/09/2016 03:40:44 PM,04/09/2016 03:44:16 PM,04/09/2016 03:44:29 PM,04/09/2016 03:55:47 PM,04/09/2016 04:20:30 PM,04/09/2016 04:40:04 PM,Code 2 Transport,04/09/2016 05:15:09 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",161002088-66 +142090040,76,14072270,Medical Incident,07/28/2014,07/27/2014,07/28/2014 12:17:50 AM,07/28/2014 12:19:24 AM,07/28/2014 12:20:36 AM,07/28/2014 12:20:48 AM,07/28/2014 12:23:09 AM,07/28/2014 01:04:44 AM,07/28/2014 01:20:32 AM,Code 2 Transport,07/28/2014 01:56:49 AM,1000 Block of CAPP ST,San Francisco,94110,B06,11,5534,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7499099820999, -122.417055896284)",142090040-76 +142362134,77,14082106,Medical Incident,08/24/2014,08/24/2014,08/24/2014 02:55:02 PM,08/24/2014 02:55:20 PM,08/24/2014 02:55:59 PM,08/24/2014 02:56:05 PM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,Gone on Arrival,08/24/2014 03:03:45 PM,PINE ST/GRANT AV,San Francisco,94108,B01,13,1243,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7914981016192, -122.405741880151)",142362134-77 +152870268,E14,15110114,Medical Incident,10/14/2015,10/13/2015,10/14/2015 02:16:09 AM,10/14/2015 02:16:09 AM,10/14/2015 02:16:27 AM,10/14/2015 02:18:58 AM,10/14/2015 02:20:17 AM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,Code 2 Transport,10/14/2015 02:26:43 AM,2700 Block of CLEMENT ST,San Francisco,94121,B07,14,7221,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.781904591369, -122.488625014278)",152870268-E14 +141800938,E01,14062162,Medical Incident,06/29/2014,06/29/2014,06/29/2014 08:23:14 AM,06/29/2014 08:23:38 AM,06/29/2014 08:24:10 AM,06/29/2014 08:25:27 AM,06/29/2014 08:27:54 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Code 2 Transport,06/29/2014 08:38:24 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",141800938-E01 +143410448,64,14121023,Medical Incident,12/07/2014,12/06/2014,12/07/2014 02:55:59 AM,12/07/2014 02:56:53 AM,12/07/2014 02:58:20 AM,12/07/2014 02:58:28 AM,12/07/2014 03:03:14 AM,12/07/2014 03:19:09 AM,12/07/2014 03:50:26 AM,Code 2 Transport,12/07/2014 04:13:26 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",143410448-64 +141572864,67,14054197,Medical Incident,06/06/2014,06/06/2014,06/06/2014 07:21:02 PM,06/06/2014 07:24:09 PM,06/06/2014 07:26:04 PM,06/06/2014 07:26:11 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Other,06/06/2014 07:36:29 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",141572864-67 +151070558,62,15040354,Medical Incident,04/17/2015,04/16/2015,04/17/2015 07:04:25 AM,04/17/2015 07:06:52 AM,04/17/2015 07:27:06 AM,04/17/2015 07:27:33 AM,04/17/2015 07:36:49 AM,04/17/2015 08:46:40 AM,04/25/2016 01:11:07 PM,Code 2 Transport,04/17/2015 08:46:46 AM,MISSION ST/SOUTH VAN NESS AV,San Francisco,94103,B02,36,5116,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",151070558-62 +160991691,73,16039294,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:06:02 PM,04/08/2016 01:06:02 PM,04/08/2016 01:06:13 PM,04/08/2016 01:06:40 PM,04/08/2016 01:19:39 PM,04/08/2016 01:32:04 PM,04/08/2016 01:49:07 PM,Code 2 Transport,04/08/2016 03:18:35 PM,200 Block of WEBSTER ST,San Francisco,94102,B02,6,3524,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7730292536228, -122.428875899713)",160991691-73 +151120516,E36,15042228,Medical Incident,04/22/2015,04/21/2015,04/22/2015 06:44:07 AM,04/22/2015 06:45:05 AM,04/22/2015 06:45:16 AM,04/22/2015 06:48:09 AM,04/22/2015 06:51:29 AM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,Code 2 Transport,04/22/2015 06:57:37 AM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",151120516-E36 +142091411,E51,14072414,Water Rescue,07/28/2014,07/28/2014,07/28/2014 12:22:13 PM,07/28/2014 12:23:13 PM,07/28/2014 12:23:49 PM,07/28/2014 12:25:43 PM,07/28/2014 12:29:39 PM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Fire,07/28/2014 12:36:16 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,true,Fire,1,ENGINE,1,7,2,Presidio,"(37.8066581989584, -122.47471662098)",142091411-E51 +141560648,RC1,14053585,Medical Incident,06/05/2014,06/05/2014,06/05/2014 08:00:52 AM,06/05/2014 08:01:53 AM,06/05/2014 08:06:29 AM,06/05/2014 08:06:29 AM,06/05/2014 08:11:00 AM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Code 2 Transport,06/05/2014 08:24:59 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",141560648-RC1 +152802955,AM08,15107537,Medical Incident,10/07/2015,10/07/2015,10/07/2015 05:19:15 PM,10/07/2015 05:20:11 PM,10/07/2015 05:21:49 PM,04/25/2016 01:07:54 PM,04/25/2016 01:07:54 PM,04/25/2016 01:07:54 PM,04/25/2016 01:07:54 PM,Patient Declined Transport,10/07/2015 05:22:59 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",152802955-AM08 +160931581,77,16036840,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:19:33 PM,04/02/2016 12:20:57 PM,04/02/2016 12:21:26 PM,04/02/2016 12:21:43 PM,04/02/2016 12:38:39 PM,04/02/2016 12:41:23 PM,04/02/2016 01:21:28 PM,Code 2 Transport,04/02/2016 02:00:00 PM,2800 Block of ALEMANY BLVD,San Francisco,94112,B09,33,8353,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.712648137171, -122.451378388888)",160931581-77 +161002871,76,16039905,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:44:14 PM,04/09/2016 07:45:46 PM,04/09/2016 07:46:28 PM,04/09/2016 07:46:35 PM,04/09/2016 07:57:04 PM,04/09/2016 08:05:54 PM,04/09/2016 08:36:51 PM,Code 2 Transport,04/09/2016 08:39:24 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",161002871-76 +142010461,RC1,14069465,Medical Incident,07/20/2014,07/19/2014,07/20/2014 02:48:00 AM,07/20/2014 02:49:43 AM,07/20/2014 02:49:55 AM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Code 2 Transport,07/20/2014 02:51:15 AM,1100 Block of ALABAMA ST,San Francisco,94110,B06,7,5527,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,6,9,Mission,"(37.7534901043626, -122.410972424143)",142010461-RC1 +152982571,63,15114499,Medical Incident,10/25/2015,10/25/2015,10/25/2015 05:29:01 PM,10/25/2015 05:30:15 PM,10/25/2015 05:33:00 PM,10/25/2015 05:33:08 PM,10/25/2015 05:49:26 PM,10/25/2015 05:49:44 PM,10/25/2015 05:55:41 PM,Code 2 Transport,10/25/2015 06:30:35 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",152982571-63 +153411471,57,15131181,Medical Incident,12/07/2015,12/07/2015,12/07/2015 11:18:24 AM,12/07/2015 11:19:10 AM,12/07/2015 11:19:26 AM,12/07/2015 11:19:38 AM,12/07/2015 11:22:10 AM,12/07/2015 11:44:03 AM,12/07/2015 12:08:54 PM,Code 2 Transport,12/07/2015 12:43:05 PM,0 Block of DE MONTFORT AVE,San Francisco,94112,B09,15,8474,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7237099095411, -122.458700057716)",153411471-57 +160952359,AM02,16037670,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:05:41 PM,04/04/2016 03:06:53 PM,04/04/2016 03:07:59 PM,04/04/2016 03:09:22 PM,04/04/2016 03:17:51 PM,04/04/2016 03:26:29 PM,04/04/2016 03:53:48 PM,Code 2 Transport,04/04/2016 04:33:53 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",160952359-AM02 +151100371,E37,15041490,Structure Fire,04/20/2015,04/19/2015,04/20/2015 04:51:53 AM,04/20/2015 04:53:59 AM,04/20/2015 04:54:36 AM,04/20/2015 04:57:20 AM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Fire,04/20/2015 04:58:25 AM,24TH ST/POTRERO AV,San Francisco,94110,B10,9,2562,3,3,3,true,Alarm,1,ENGINE,6,10,9,Mission,"(37.7530040313925, -122.406336240587)",151100371-E37 +150731388,E42,15027875,Traffic Collision,03/14/2015,03/14/2015,03/14/2015 10:34:32 AM,03/14/2015 10:40:35 AM,03/14/2015 10:41:52 AM,03/14/2015 10:44:07 AM,03/14/2015 10:47:11 AM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Cancelled,03/14/2015 10:53:48 AM,100 Block of ALEMANY BLVD,San Francisco,94110,B10,42,6373,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",150731388-E42 +150470848,T13,15018197,Alarms,02/16/2015,02/16/2015,02/16/2015 08:35:05 AM,02/16/2015 08:36:50 AM,02/16/2015 08:36:59 AM,02/16/2015 08:39:17 AM,02/16/2015 08:40:26 AM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/16/2015 08:51:08 AM,300 Block of SANSOME ST,San Francisco,94104,B01,13,1166,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7937569001579, -122.401337883985)",150470848-T13 +152701469,E08,15103430,Other,09/27/2015,09/27/2015,09/27/2015 12:19:59 PM,09/27/2015 12:19:59 PM,09/27/2015 12:19:59 PM,09/27/2015 12:19:59 PM,09/27/2015 12:19:59 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Fire,09/27/2015 12:26:33 PM,900 Block of QUINTARA ST,San Francisco,94116,B08,40,7417,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7486150608847, -122.475521188669)",152701469-E08 +152662610,T01,15101948,Structure Fire,09/23/2015,09/23/2015,09/23/2015 04:05:23 PM,09/23/2015 04:05:23 PM,09/23/2015 04:06:19 PM,09/23/2015 04:08:06 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Fire,09/23/2015 04:09:57 PM,MASON ST/MARKET ST,San Francisco,94103,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",152662610-T01 +151922080,60,15073327,Traffic Collision,07/11/2015,07/11/2015,07/11/2015 02:23:55 PM,07/11/2015 02:25:00 PM,07/11/2015 02:25:17 PM,07/11/2015 02:25:37 PM,07/11/2015 02:29:14 PM,04/25/2016 01:09:31 PM,04/25/2016 01:09:31 PM,Patient Declined Transport,07/11/2015 03:02:31 PM,VAN NESS AV/SUTTER ST,San Francisco,94109,B04,3,3161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",151922080-60 +150933762,70,15035528,Medical Incident,04/03/2015,04/03/2015,04/03/2015 10:29:03 PM,04/03/2015 10:29:03 PM,04/03/2015 10:29:16 PM,04/03/2015 10:29:23 PM,04/03/2015 10:41:13 PM,04/03/2015 11:27:47 PM,04/03/2015 11:42:56 PM,Code 2 Transport,04/04/2015 12:19:41 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",150933762-70 +160974693,52,16038725,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:48:17 PM,04/06/2016 11:48:17 PM,04/06/2016 11:48:52 PM,04/06/2016 11:48:57 PM,04/07/2016 12:04:39 AM,04/07/2016 12:13:05 AM,04/07/2016 12:41:27 AM,Code 2 Transport,04/07/2016 01:20:42 AM,2800 Block of 24TH ST,San Francisco,94110,B06,7,5527,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7528220751267, -122.40960340614)",160974693-52 +160933273,79,16037025,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:08:11 PM,04/02/2016 08:09:11 PM,04/02/2016 08:11:40 PM,04/02/2016 08:11:40 PM,04/02/2016 08:20:18 PM,04/02/2016 09:05:10 PM,04/02/2016 09:05:21 PM,Code 2 Transport,04/02/2016 09:21:09 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",160933273-79 +160960143,52,16037855,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:18:54 AM,04/05/2016 01:20:06 AM,04/05/2016 01:20:20 AM,04/05/2016 01:21:16 AM,04/05/2016 01:39:10 AM,04/05/2016 01:50:03 AM,04/05/2016 02:17:25 AM,Code 2 Transport,04/05/2016 02:54:56 AM,1500 Block of VISITACION AVE,San Francisco,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7131682413493, -122.413881370369)",160960143-52 +142723163,E03,14095507,Medical Incident,09/29/2014,09/29/2014,09/29/2014 08:39:51 PM,09/29/2014 08:42:21 PM,09/29/2014 08:45:22 PM,09/29/2014 08:45:22 PM,09/29/2014 08:46:35 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Code 2 Transport,09/29/2014 08:53:35 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142723163-E03 +142792162,AM04,14098205,Medical Incident,10/06/2014,10/06/2014,10/06/2014 03:19:14 PM,10/06/2014 03:19:46 PM,10/06/2014 03:20:07 PM,10/06/2014 03:20:50 PM,10/06/2014 03:22:41 PM,10/06/2014 03:35:44 PM,10/06/2014 03:41:37 PM,Code 2 Transport,10/06/2014 04:19:32 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",142792162-AM04 +142302723,E06,14079979,Medical Incident,08/18/2014,08/18/2014,08/18/2014 05:15:12 PM,08/18/2014 05:16:28 PM,08/18/2014 05:17:00 PM,08/18/2014 05:17:56 PM,08/18/2014 05:20:22 PM,04/25/2016 01:15:35 PM,04/25/2016 01:15:35 PM,Code 2 Transport,08/18/2014 05:30:39 PM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",142302723-E06 +150172083,T09,15006761,Alarms,01/17/2015,01/17/2015,01/17/2015 02:40:52 PM,01/17/2015 02:43:41 PM,01/17/2015 02:44:02 PM,01/17/2015 02:45:57 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Fire,01/17/2015 02:48:14 PM,400 Block of AMADOR ST,San Francisco,94124,B10,25,6463,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7458848547738, -122.382990476473)",150172083-T09 +160980298,83,16038756,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:42:57 AM,04/07/2016 02:45:53 AM,04/07/2016 02:46:07 AM,04/07/2016 02:46:23 AM,04/07/2016 02:52:25 AM,04/07/2016 03:07:54 AM,04/07/2016 03:43:46 AM,Code 2 Transport,04/07/2016 03:56:15 AM,3400 Block of 25TH ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.750643608226, -122.419135776556)",160980298-83 +151323341,E07,15050241,Structure Fire,05/12/2015,05/12/2015,05/12/2015 09:16:46 PM,05/12/2015 09:16:56 PM,05/12/2015 09:17:16 PM,05/12/2015 09:18:11 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Fire,05/12/2015 09:18:23 PM,3300 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,3,3,3,true,Alarm,1,ENGINE,3,6,9,Mission,"(37.7482858766932, -122.417044258324)",151323341-E07 +151611817,T12,15061526,Alarms,06/10/2015,06/10/2015,06/10/2015 01:09:03 PM,06/10/2015 01:09:39 PM,06/10/2015 01:09:48 PM,06/10/2015 01:11:28 PM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Fire,06/10/2015 01:34:20 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,3,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",151611817-T12 +160940780,52,16037183,Medical Incident,04/03/2016,04/02/2016,04/03/2016 07:00:35 AM,04/03/2016 07:02:18 AM,04/03/2016 07:02:59 AM,04/03/2016 07:03:18 AM,04/03/2016 07:15:33 AM,04/03/2016 07:23:40 AM,04/03/2016 07:45:28 AM,Code 2 Transport,04/03/2016 08:07:58 AM,400 Block of HOWARD ST,San Francisco,94105,B03,35,2141,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7889242269803, -122.395641699334)",160940780-52 +151433283,E01,15054524,Medical Incident,05/23/2015,05/23/2015,05/23/2015 08:42:30 PM,05/23/2015 08:43:42 PM,05/23/2015 08:44:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Code 2 Transport,05/23/2015 08:46:05 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151433283-E01 +151231171,E36,15046621,Medical Incident,05/03/2015,05/03/2015,05/03/2015 10:28:07 AM,05/03/2015 10:28:41 AM,05/03/2015 10:29:02 AM,05/03/2015 10:29:14 AM,05/03/2015 10:39:55 AM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,Medical Examiner,05/03/2015 10:41:35 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",151231171-E36 +160980280,73,16038752,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:30:29 AM,04/07/2016 02:30:29 AM,04/07/2016 02:41:32 AM,04/07/2016 02:41:32 AM,04/07/2016 02:41:32 AM,04/07/2016 03:30:25 AM,04/07/2016 03:30:30 AM,Code 2 Transport,04/07/2016 03:31:00 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160980280-73 +151632966,56,15062424,Medical Incident,06/12/2015,06/12/2015,06/12/2015 06:05:09 PM,06/12/2015 06:05:18 PM,06/12/2015 06:05:53 PM,06/12/2015 06:11:25 PM,06/12/2015 06:15:17 PM,06/12/2015 06:43:42 PM,06/12/2015 07:06:42 PM,Code 2 Transport,06/12/2015 07:25:54 PM,2600 Block of 33RD AVE,San Francisco,94116,B08,18,7547,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.738300128498, -122.49032922767)",151632966-56 +151263362,T07,15047907,Alarms,05/06/2015,05/06/2015,05/06/2015 07:44:06 PM,05/06/2015 07:46:15 PM,05/06/2015 07:46:35 PM,05/06/2015 07:48:09 PM,05/06/2015 07:51:07 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Fire,05/06/2015 07:54:36 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7627519883966, -122.421609674066)",151263362-T07 +160940273,72,16037124,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:31:23 AM,04/03/2016 01:31:23 AM,04/03/2016 01:31:46 AM,04/03/2016 01:31:55 AM,04/03/2016 01:39:21 AM,04/03/2016 02:25:44 AM,04/03/2016 02:53:59 AM,Code 2 Transport,04/03/2016 03:40:52 AM,2ND ST/MINNA ST,San Francisco,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.787579277349, -122.399255051067)",160940273-72 +142053806,E35,14071167,Medical Incident,07/24/2014,07/24/2014,07/24/2014 10:20:46 PM,07/24/2014 10:22:49 PM,07/24/2014 10:24:44 PM,07/24/2014 10:25:59 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Fire,07/24/2014 10:36:24 PM,1000 Block of HARRISON ST,San Francisco,94103,B03,8,2254,2,2,2,false,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7770983962506, -122.404388964595)",142053806-E35 +151420850,RS1,15053897,Traffic Collision,05/22/2015,05/22/2015,05/22/2015 08:28:38 AM,05/22/2015 08:29:14 AM,05/22/2015 08:30:15 AM,05/22/2015 08:32:23 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Code 2 Transport,05/22/2015 08:34:22 AM,BUSH ST/BRODERICK ST,San Francisco,94115,B04,10,4234,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,7,4,2,Pacific Heights,"(37.7859677452086, -122.441726319715)",151420850-RS1 +141342543,E03,14045793,Medical Incident,05/14/2014,05/14/2014,05/14/2014 03:41:11 PM,05/14/2014 03:44:31 PM,05/14/2014 03:45:54 PM,05/14/2014 03:46:08 PM,05/14/2014 03:51:49 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Code 2 Transport,05/14/2014 04:06:31 PM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",141342543-E03 +141621789,E01,14055853,Medical Incident,06/11/2014,06/11/2014,06/11/2014 01:26:28 PM,06/11/2014 01:27:22 PM,06/11/2014 01:28:06 PM,06/11/2014 01:29:30 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,Code 2 Transport,06/11/2014 01:38:43 PM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",141621789-E01 +150293824,B04,15011371,Structure Fire,01/29/2015,01/29/2015,01/29/2015 11:26:28 PM,01/29/2015 11:26:52 PM,01/29/2015 11:27:24 PM,01/29/2015 11:28:22 PM,01/29/2015 11:31:46 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Other,01/30/2015 01:26:37 AM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,false,Fire,2,CHIEF,4,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",150293824-B04 +150191703,E15,15007507,Medical Incident,01/19/2015,01/19/2015,01/19/2015 01:23:33 PM,01/19/2015 01:26:09 PM,01/19/2015 01:27:57 PM,01/19/2015 01:29:05 PM,01/19/2015 01:30:58 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Code 2 Transport,01/19/2015 01:44:34 PM,200 Block of MIRAMAR AVE,San Francisco,94112,B09,15,8474,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7227490413148, -122.458117167077)",150191703-E15 +143342508,65,14118451,Medical Incident,11/30/2014,11/30/2014,11/30/2014 05:49:51 PM,11/30/2014 05:51:32 PM,11/30/2014 05:52:50 PM,11/30/2014 05:54:20 PM,11/30/2014 06:15:19 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,No Merit,11/30/2014 06:43:39 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",143342508-65 +152251429,E14,15085725,Structure Fire,08/13/2015,08/13/2015,08/13/2015 11:13:54 AM,08/13/2015 11:15:23 AM,08/13/2015 11:16:10 AM,08/13/2015 11:18:22 AM,08/13/2015 11:18:22 AM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/13/2015 11:23:05 AM,400 Block of 21ST AVE,San Francisco,94121,B07,14,7172,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7793232485951, -122.480311461587)",152251429-E14 +160923115,64,16036571,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:55:09 PM,04/01/2016 06:58:00 PM,04/01/2016 07:00:59 PM,04/01/2016 07:00:59 PM,04/01/2016 07:16:16 PM,04/01/2016 07:29:20 PM,04/01/2016 07:50:17 PM,CHP,04/01/2016 08:17:40 PM,1200 Block of BAYSIDE DR,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8304547884044, -122.37629451046)",160923115-64 +151230262,60,15046533,Medical Incident,05/03/2015,05/02/2015,05/03/2015 01:40:51 AM,05/03/2015 01:43:51 AM,05/03/2015 01:44:18 AM,05/03/2015 01:44:37 AM,05/03/2015 01:50:10 AM,05/03/2015 02:08:52 AM,05/03/2015 02:23:00 AM,Code 2 Transport,05/03/2015 03:02:50 AM,WILLOW ST/LARKIN ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7837775223432, -122.417618573606)",151230262-60 +153094186,62,15118964,Medical Incident,11/05/2015,11/05/2015,11/05/2015 11:22:58 PM,11/05/2015 11:22:58 PM,11/05/2015 11:23:52 PM,11/05/2015 11:24:15 PM,11/05/2015 11:28:12 PM,11/05/2015 11:40:48 PM,11/06/2015 12:00:38 AM,Code 2 Transport,11/06/2015 12:56:43 AM,BRANNAN ST/4TH ST,San Francisco,94107,B03,8,2241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7783268314649, -122.396530638158)",153094186-62 +142782940,T14,14097890,Water Rescue,10/05/2014,10/05/2014,10/05/2014 06:02:50 PM,10/05/2014 06:04:17 PM,10/05/2014 06:04:44 PM,10/05/2014 06:06:32 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Fire,10/05/2014 06:10:32 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,TRUCK,8,7,2,Presidio,"(37.8066581989584, -122.47471662098)",142782940-T14 +142791394,E17,14098123,Fuel Spill,10/06/2014,10/06/2014,10/06/2014 11:22:03 AM,10/06/2014 11:25:17 AM,10/06/2014 11:25:23 AM,10/06/2014 11:25:37 AM,10/06/2014 11:28:14 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 11:50:28 AM,1600 Block of PALOU AVE,San Francisco,94124,B10,17,6471,3,3,3,true,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7344812749194, -122.391912066975)",142791394-E17 +142743393,B04,14096233,Alarms,10/01/2014,10/01/2014,10/01/2014 07:53:06 PM,10/01/2014 07:54:20 PM,10/01/2014 07:54:57 PM,10/01/2014 07:55:06 PM,10/01/2014 07:57:26 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Fire,10/01/2014 08:02:39 PM,2000 Block of VAN NESS AVE,San Francisco,94109,B04,41,3153,3,3,3,false,Alarm,1,CHIEF,2,4,3,Russian Hill,"(37.7943979367838, -122.422967119552)",142743393-B04 +160962346,60,16038058,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:02:26 PM,04/05/2016 03:04:26 PM,04/05/2016 03:04:36 PM,04/05/2016 03:06:18 PM,04/05/2016 03:25:08 PM,04/05/2016 03:52:52 PM,04/05/2016 04:13:35 PM,Code 3 Transport,04/05/2016 04:32:51 PM,1400 Block of CAYUGA AV,San Francisco,94112,B09,15,8335,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7177214899037, -122.444924903353)",160962346-60 +161001977,85,16039802,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:06:10 PM,04/09/2016 03:09:18 PM,04/09/2016 03:09:48 PM,04/09/2016 03:10:08 PM,04/09/2016 03:18:41 PM,04/09/2016 03:38:24 PM,04/09/2016 04:29:41 PM,Code 2 Transport,04/09/2016 04:43:00 PM,MISSION ST/14TH ST,San Francisco,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",161001977-85 +142511002,E41,14087489,Medical Incident,09/08/2014,09/08/2014,09/08/2014 09:56:59 AM,09/08/2014 09:59:16 AM,09/08/2014 09:59:42 AM,09/08/2014 10:00:40 AM,09/08/2014 10:05:39 AM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,Code 2 Transport,09/08/2014 10:15:19 AM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",142511002-E41 +142802947,RC3,14098597,Medical Incident,10/07/2014,10/07/2014,10/07/2014 07:05:39 PM,10/07/2014 07:05:39 PM,10/07/2014 07:06:13 PM,10/07/2014 07:09:31 PM,10/07/2014 07:18:49 PM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Code 2 Transport,10/07/2014 07:33:28 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",142802947-RC3 +160993275,AM16,16039440,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:32:00 PM,04/08/2016 07:32:00 PM,04/08/2016 07:32:32 PM,04/08/2016 07:33:04 PM,04/08/2016 07:37:57 PM,04/08/2016 07:58:22 PM,04/08/2016 08:24:05 PM,Code 2 Transport,04/08/2016 08:46:04 PM,SUTTER ST/MARKET ST,San Francisco,94104,B01,13,1164,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7902901603061, -122.400152471245)",160993275-AM16 +153062216,B08,15117655,Alarms,11/02/2015,11/02/2015,11/02/2015 02:47:21 PM,11/02/2015 02:48:43 PM,11/02/2015 02:49:38 PM,11/02/2015 02:51:54 PM,11/02/2015 02:56:06 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/02/2015 02:59:43 PM,3000 Block of 23RD AVE,San Francisco,94132,B08,19,8734,3,3,3,false,Alarm,1,CHIEF,2,8,7,Sunset/Parkside,"(37.7318409452501, -122.479250758716)",153062216-B08 +150123718,RC1,15004955,Medical Incident,01/12/2015,01/12/2015,01/12/2015 10:20:06 PM,01/12/2015 10:21:47 PM,01/12/2015 10:39:17 PM,01/12/2015 10:41:32 PM,01/12/2015 10:47:14 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Code 2 Transport,01/12/2015 10:59:37 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",150123718-RC1 +160963103,79,16038124,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:53:55 PM,04/05/2016 05:53:55 PM,04/05/2016 05:59:30 PM,04/05/2016 05:59:39 PM,04/05/2016 05:59:39 PM,04/05/2016 06:24:21 PM,04/05/2016 06:30:43 PM,Code 2 Transport,04/05/2016 07:02:49 PM,300 Block of BOCANA ST,San Francisco,94110,B06,32,5742,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7389424864244, -122.41889043825)",160963103-79 +143111562,KM09,14110118,Traffic Collision,11/07/2014,11/07/2014,11/07/2014 12:14:53 PM,11/07/2014 12:14:53 PM,11/07/2014 12:18:49 PM,11/07/2014 12:19:26 PM,11/07/2014 12:20:13 PM,11/07/2014 12:50:35 PM,11/07/2014 01:14:27 PM,Code 2 Transport,11/07/2014 02:15:54 PM,3200 Block of 17TH ST,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7635175983002, -122.419004027906)",143111562-KM09 +160982035,76,16038931,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:28:49 PM,04/07/2016 01:28:49 PM,04/07/2016 01:29:08 PM,04/07/2016 01:29:12 PM,04/07/2016 01:32:45 PM,04/07/2016 01:42:12 PM,04/07/2016 01:49:26 PM,Code 2 Transport,04/07/2016 02:20:31 PM,HYDE ST/FULTON ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",160982035-76 +143573887,E36,14127935,Medical Incident,12/23/2014,12/23/2014,12/23/2014 09:59:47 PM,12/23/2014 10:00:45 PM,12/23/2014 10:01:53 PM,12/23/2014 10:03:33 PM,12/23/2014 10:03:33 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Code 2 Transport,12/23/2014 10:08:02 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",143573887-E36 +160971030,82,16038342,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:21:53 AM,04/06/2016 09:23:12 AM,04/06/2016 09:24:01 AM,04/06/2016 09:24:06 AM,04/06/2016 09:29:22 AM,04/06/2016 09:39:38 AM,04/06/2016 09:55:44 AM,Code 2 Transport,04/06/2016 10:12:39 AM,1900 Block of BUCHANAN ST,San Francisco,94115,B04,38,3434,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7879132705772, -122.430193813177)",160971030-82 +153054166,E09,15117354,Electrical Hazard,11/01/2015,11/01/2015,11/01/2015 09:37:45 PM,11/01/2015 09:38:57 PM,11/01/2015 09:39:17 PM,11/01/2015 09:40:28 PM,11/01/2015 09:45:26 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/01/2015 09:48:47 PM,PERALTA AV/YORK ST,San Francisco,94110,B06,9,5671,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7474307153312, -122.407270928689)",153054166-E09 +152882081,E08,15110686,Medical Incident,10/15/2015,10/15/2015,10/15/2015 01:52:39 PM,10/15/2015 01:54:00 PM,10/15/2015 01:54:44 PM,10/15/2015 01:56:10 PM,10/15/2015 01:58:58 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Code 3 Transport,10/15/2015 02:14:08 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",152882081-E08 +160993707,88,16039490,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:43:40 PM,04/08/2016 09:44:55 PM,04/08/2016 09:45:53 PM,04/08/2016 09:45:59 PM,04/08/2016 09:54:29 PM,04/08/2016 10:11:29 PM,04/08/2016 10:23:19 PM,Code 2 Transport,04/08/2016 11:22:39 PM,2100 Block of UNION ST,San Francisco,94123,B04,16,3552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7972477502835, -122.434679239758)",160993707-88 +141480690,AM16,14050737,Medical Incident,05/28/2014,05/28/2014,05/28/2014 08:09:09 AM,05/28/2014 08:10:38 AM,05/28/2014 08:11:04 AM,05/28/2014 08:11:32 AM,05/28/2014 08:30:47 AM,05/28/2014 08:40:21 AM,05/28/2014 08:49:24 AM,Code 2 Transport,05/28/2014 09:20:56 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",141480690-AM16 +141741744,E02,14060043,Alarms,06/23/2014,06/23/2014,06/23/2014 01:59:25 PM,06/23/2014 02:00:48 PM,06/23/2014 02:02:00 PM,06/23/2014 02:04:24 PM,06/23/2014 02:04:24 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,Fire,06/23/2014 02:08:19 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",141741744-E02 +150373132,E15,15014469,Medical Incident,02/06/2015,02/06/2015,02/06/2015 06:54:10 PM,02/06/2015 06:56:08 PM,02/06/2015 06:56:29 PM,02/06/2015 06:57:38 PM,02/06/2015 07:01:45 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Code 3 Transport,02/06/2015 07:50:44 PM,300 Block of MUNICH ST,San Francisco,94112,B09,43,6163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7200682259192, -122.427352796378)",150373132-E15 +160981347,72,16038866,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:31:00 AM,04/07/2016 10:32:00 AM,04/07/2016 10:32:11 AM,04/07/2016 10:34:30 AM,04/07/2016 10:50:50 AM,04/07/2016 11:10:19 AM,04/07/2016 11:41:55 AM,Code 2 Transport,04/07/2016 12:19:23 PM,1300 Block of PIERCE ST,San Francisco,94115,B05,5,3647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",160981347-72 +152860741,E39,15109757,Vehicle Fire,10/13/2015,10/12/2015,10/13/2015 07:56:07 AM,10/13/2015 07:56:44 AM,10/13/2015 07:57:03 AM,10/13/2015 07:59:16 AM,10/13/2015 08:03:32 AM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Fire,10/13/2015 08:06:29 AM,JUNIPERO SERRA BL/SAINT FRANCIS BL,San Francisco,94132,B08,39,8555,3,3,3,true,Fire,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7347068117722, -122.471569339996)",152860741-E39 +141130057,E05,14038022,Outside Fire,04/23/2014,04/22/2014,04/23/2014 05:49:53 AM,04/23/2014 05:50:49 AM,04/23/2014 05:50:56 AM,04/23/2014 05:52:15 AM,04/23/2014 05:54:22 AM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Fire,04/23/2014 05:59:10 AM,STEINER ST/POST ST,SAN FRANCISCO,94115,B04,5,3622,3,3,3,true,Fire,1,ENGINE,1,4,5,Japantown,"(37.7849440060036, -122.434729991182)",141130057-E05 +151981315,E13,15075419,Structure Fire,07/17/2015,07/17/2015,07/17/2015 10:50:01 AM,07/17/2015 10:50:01 AM,07/17/2015 10:50:09 AM,07/17/2015 10:50:20 AM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,Fire,07/17/2015 10:51:52 AM,BATTERY ST/CALIFORNIA ST,San Francisco,94111,B01,13,1162,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",151981315-E13 +151921090,76,15073211,Medical Incident,07/11/2015,07/11/2015,07/11/2015 09:10:07 AM,07/11/2015 09:10:07 AM,07/11/2015 09:10:55 AM,07/11/2015 09:11:04 AM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,Code 2 Transport,07/11/2015 09:13:02 AM,ERIE ST/FOLSOM ST,San Francisco,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7693620195485, -122.415611508879)",151921090-76 +160980707,82,16038802,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:21:55 AM,04/07/2016 07:23:20 AM,04/07/2016 07:23:46 AM,04/07/2016 07:23:57 AM,04/07/2016 07:29:28 AM,04/07/2016 07:43:14 AM,04/07/2016 07:51:58 AM,Code 2 Transport,04/07/2016 08:12:46 AM,1100 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1445,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7915760061861, -122.413295108865)",160980707-82 +151421527,55,15053956,Medical Incident,05/22/2015,05/22/2015,05/22/2015 11:38:09 AM,05/22/2015 11:38:29 AM,05/22/2015 11:40:02 AM,05/22/2015 11:40:15 AM,05/22/2015 11:43:44 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,No Merit,05/22/2015 11:51:51 AM,5300 Block of GEARY BLVD,San Francisco,94121,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7805803412447, -122.476708282444)",151421527-55 +151870421,E08,15071264,Medical Incident,07/06/2015,07/05/2015,07/06/2015 05:27:33 AM,07/06/2015 05:29:24 AM,07/06/2015 05:30:38 AM,07/06/2015 05:33:02 AM,07/06/2015 05:34:25 AM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Code 2 Transport,07/06/2015 05:55:56 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151870421-E08 +152370335,KM03,15090165,Medical Incident,08/25/2015,08/24/2015,08/25/2015 02:49:06 AM,08/25/2015 02:50:43 AM,08/25/2015 02:51:59 AM,08/25/2015 02:52:34 AM,08/25/2015 03:09:06 AM,08/25/2015 03:26:30 AM,08/25/2015 03:43:05 AM,Code 2 Transport,08/25/2015 04:14:15 AM,200 Block of SAWYER ST,San Francisco,94134,B09,44,6263,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7146687723374, -122.413812172304)",152370335-KM03 +153010002,E29,15115320,Structure Fire,10/27/2015,10/27/2015,10/27/2015 11:59:45 PM,10/28/2015 12:01:10 AM,10/28/2015 12:01:20 AM,10/28/2015 12:02:12 AM,10/28/2015 12:03:49 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 01:50:10 AM,100 Block of CONNECTICUT ST,San Francisco,94107,B03,29,2425,3,3,3,true,Fire,1,ENGINE,1,3,10,Potrero Hill,"(37.7644288111227, -122.397744028791)",153010002-E29 +151032436,72,15039003,Medical Incident,04/13/2015,04/13/2015,04/13/2015 03:54:18 PM,04/13/2015 03:56:34 PM,04/13/2015 03:57:32 PM,04/13/2015 03:57:47 PM,04/13/2015 04:01:47 PM,04/13/2015 05:01:39 PM,04/13/2015 05:12:30 PM,Code 2 Transport,04/13/2015 05:32:58 PM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",151032436-72 +141100158,T06,14037094,Medical Incident,04/20/2014,04/20/2014,04/20/2014 01:45:58 PM,04/20/2014 01:48:11 PM,04/20/2014 01:50:12 PM,04/20/2014 01:50:12 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Code 3 Transport,04/20/2014 02:58:51 PM,100 Block of OTIS ST,SAN FRANCISCO,94103,B02,36,5125,,3,3,false,Potentially Life-Threatening,1,TRUCK,7,2,6,Mission,"(37.7709133372974, -122.420304994325)",141100158-T06 +141140350,92,14038617,Medical Incident,04/24/2014,04/24/2014,04/24/2014 08:45:58 PM,04/24/2014 08:47:54 PM,04/24/2014 08:48:14 PM,04/24/2014 08:48:20 PM,04/24/2014 09:04:33 PM,04/24/2014 09:18:59 PM,04/24/2014 09:24:17 PM,Code 2 Transport,04/24/2014 10:02:36 PM,1800 Block of BUSH ST,SAN FRANCISCO,94109,B04,38,3363,,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",141140350-92 +160942773,79,16037361,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:37:26 PM,04/03/2016 05:41:02 PM,04/03/2016 05:42:49 PM,04/03/2016 05:42:58 PM,04/03/2016 05:50:14 PM,04/03/2016 06:12:25 PM,04/03/2016 06:14:25 PM,Code 2 Transport,04/03/2016 06:43:19 PM,0 Block of 29TH ST,San Francisco,94110,B06,32,5625,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7439537432975, -122.421430545849)",160942773-79 +160943478,75,16037435,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:45:02 PM,04/03/2016 09:47:19 PM,04/03/2016 09:47:40 PM,04/03/2016 09:47:49 PM,04/03/2016 09:55:22 PM,04/03/2016 10:15:13 PM,04/03/2016 10:39:27 PM,Code 2 Transport,04/03/2016 10:59:37 PM,3400 Block of PIERCE ST,San Francisco,94123,B04,16,3662,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8021393814718, -122.439755551917)",160943478-75 +143100888,E11,14109651,Structure Fire,11/06/2014,11/06/2014,11/06/2014 09:06:19 AM,11/06/2014 09:06:47 AM,11/06/2014 09:08:08 AM,11/06/2014 09:09:49 AM,11/06/2014 09:11:44 AM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,Fire,11/06/2014 09:31:56 AM,600 Block of DOLORES ST,San Francisco,94110,B02,7,5251,3,3,3,true,Alarm,1,ENGINE,4,6,8,Mission,"(37.7594385840269, -122.425726898435)",143100888-E11 +161001385,54,16039735,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:47:38 AM,04/09/2016 11:48:17 AM,04/09/2016 11:49:57 AM,04/09/2016 11:50:05 AM,04/09/2016 11:57:05 AM,04/09/2016 12:17:33 PM,04/09/2016 12:45:07 PM,Code 2 Transport,04/09/2016 01:19:20 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",161001385-54 +151670686,88,15063758,Medical Incident,06/16/2015,06/16/2015,06/16/2015 08:18:33 AM,06/16/2015 08:19:38 AM,06/16/2015 08:20:14 AM,06/16/2015 08:21:31 AM,06/16/2015 08:24:32 AM,06/16/2015 08:40:57 AM,04/25/2016 01:09:59 PM,Code 2 Transport,06/16/2015 09:43:46 AM,1200 Block of 19TH AVE,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.764496492767, -122.47737779766)",151670686-88 +152780308,61,15106503,Medical Incident,10/05/2015,10/04/2015,10/05/2015 03:29:50 AM,10/05/2015 03:31:27 AM,10/05/2015 03:33:16 AM,10/05/2015 03:35:15 AM,10/05/2015 03:42:48 AM,10/05/2015 03:58:44 AM,10/05/2015 04:24:47 AM,Code 2 Transport,10/05/2015 04:53:26 AM,300 Block of GUTTENBERG ST,San Francisco,94112,B09,43,6231,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7091043095113, -122.44247658842)",152780308-61 +150040900,E44,15001411,Medical Incident,01/04/2015,01/04/2015,01/04/2015 09:06:12 AM,01/04/2015 09:06:35 AM,01/04/2015 09:06:42 AM,01/04/2015 09:07:49 AM,01/04/2015 09:11:57 AM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Code 3 Transport,01/04/2015 09:30:39 AM,1700 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",150040900-E44 +160982389,AM16,16038977,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:00:16 PM,04/07/2016 03:01:11 PM,04/07/2016 03:22:02 PM,04/07/2016 03:22:02 PM,04/07/2016 03:27:39 PM,04/07/2016 03:33:26 PM,04/07/2016 03:52:42 PM,Code 2 Transport,04/07/2016 04:23:48 PM,19TH AV/BUCKINGHAM WY,San Francisco,94132,B08,19,8726,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.725692147795, -122.475108832537)",160982389-AM16 +152531418,E07,15096682,Medical Incident,09/10/2015,09/10/2015,09/10/2015 11:05:32 AM,09/10/2015 11:07:50 AM,09/10/2015 11:08:53 AM,09/10/2015 11:09:19 AM,09/10/2015 11:13:54 AM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Code 2 Transport,09/10/2015 11:27:31 AM,600 Block of VERMONT ST,San Francisco,94107,B06,7,542,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7614775148441, -122.404127651173)",152531418-E07 +141783135,E32,14061562,Citizen Assist / Service Call,06/27/2014,06/27/2014,06/27/2014 08:28:46 PM,06/27/2014 08:29:29 PM,06/27/2014 08:29:49 PM,06/27/2014 08:30:52 PM,06/27/2014 08:33:37 PM,04/25/2016 01:16:32 PM,04/25/2016 01:16:32 PM,No Merit,06/27/2014 08:35:22 PM,0 Block of JUSTIN DR,San Francisco,94112,B06,32,5641,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7340952151096, -122.422644655212)",141783135-E32 +160922533,53,16036517,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 04:41:20 PM,04/01/2016 04:41:20 PM,04/01/2016 04:41:48 PM,04/01/2016 04:41:56 PM,04/01/2016 04:44:35 PM,04/01/2016 04:55:25 PM,04/01/2016 05:15:31 PM,Code 2 Transport,04/01/2016 05:50:29 PM,29TH ST/MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7440376332296, -122.420893660653)",160922533-53 +153390868,E07,15130374,Medical Incident,12/05/2015,12/05/2015,12/05/2015 08:00:09 AM,12/05/2015 08:00:42 AM,12/05/2015 08:01:15 AM,12/05/2015 08:02:51 AM,12/05/2015 08:04:46 AM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Code 2 Transport,12/05/2015 08:06:38 AM,19TH ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.760367023694, -122.417025815146)",153390868-E07 +160931281,KM04,16036808,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:53:47 AM,04/02/2016 10:55:05 AM,04/02/2016 10:56:52 AM,04/02/2016 10:57:35 AM,04/02/2016 11:01:24 AM,04/02/2016 11:18:35 AM,04/02/2016 11:35:21 AM,Code 2 Transport,04/02/2016 12:13:22 PM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7696117252991, -122.450474552631)",160931281-KM04 +150661141,E35,15025174,Alarms,03/07/2015,03/07/2015,03/07/2015 09:57:29 AM,03/07/2015 09:58:58 AM,03/07/2015 10:01:09 AM,03/07/2015 10:01:59 AM,03/07/2015 10:05:35 AM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Fire,03/07/2015 10:12:23 AM,300 Block of MAIN ST,San Francisco,94105,B03,35,2117,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",150661141-E35 +151361277,E06,15051635,Alarms,05/16/2015,05/16/2015,05/16/2015 10:35:03 AM,05/16/2015 10:36:47 AM,05/16/2015 10:37:02 AM,05/16/2015 10:40:07 AM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Fire,05/16/2015 10:57:11 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Alarm,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",151361277-E06 +151572364,E41,15060006,Structure Fire,06/06/2015,06/06/2015,06/06/2015 04:24:19 PM,06/06/2015 04:24:19 PM,06/06/2015 04:24:29 PM,06/06/2015 04:25:25 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Fire,06/06/2015 04:27:00 PM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,false,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",151572364-E41 +150783105,63,15030010,Medical Incident,03/19/2015,03/19/2015,03/19/2015 06:02:20 PM,03/19/2015 06:03:51 PM,03/19/2015 06:04:23 PM,03/19/2015 06:04:34 PM,03/19/2015 06:14:50 PM,03/19/2015 06:29:23 PM,03/19/2015 06:43:12 PM,Code 2 Transport,03/19/2015 07:13:38 PM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",150783105-63 +141682217,E06,14058001,Alarms,06/17/2014,06/17/2014,06/17/2014 03:43:06 PM,06/17/2014 03:43:51 PM,06/17/2014 03:45:59 PM,06/17/2014 03:45:59 PM,06/17/2014 03:45:59 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/17/2014 03:46:23 PM,9TH ST/MARKET ST,San Francisco,94103,B02,36,2337,3,3,3,false,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",141682217-E06 +143031761,B10,14107094,Structure Fire,10/30/2014,10/30/2014,10/30/2014 11:32:25 AM,10/30/2014 11:32:25 AM,10/30/2014 11:32:46 AM,10/30/2014 11:33:11 AM,10/30/2014 11:36:58 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Fire,10/30/2014 11:45:19 AM,3100 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,562,3,3,3,false,Alarm,1,CHIEF,2,6,9,Bernal Heights,"(37.748166431151, -122.412573078107)",143031761-B10 +141763079,KM11,14060868,Medical Incident,06/25/2014,06/25/2014,06/25/2014 07:18:30 PM,06/25/2014 07:19:07 PM,06/25/2014 07:23:00 PM,06/25/2014 07:23:00 PM,06/25/2014 07:28:14 PM,06/25/2014 07:39:21 PM,06/25/2014 07:56:35 PM,Code 2 Transport,06/25/2014 08:36:50 PM,3100 Block of 24TH ST,San Francisco,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Mission,"(37.7524180928571, -122.414623849785)",141763079-KM11 +150191242,B01,15007466,Alarms,01/19/2015,01/19/2015,01/19/2015 11:05:03 AM,01/19/2015 11:06:31 AM,01/19/2015 11:06:37 AM,01/19/2015 11:08:03 AM,01/19/2015 11:12:11 AM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Fire,01/19/2015 11:14:01 AM,2500 Block of PACIFIC AVE,San Francisco,94115,B04,38,3653,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7930860507179, -122.437212642346)",150191242-B01 +150753214,E23,15028915,Traffic Collision,03/16/2015,03/16/2015,03/16/2015 07:07:33 PM,03/16/2015 07:07:33 PM,03/16/2015 07:07:45 PM,03/16/2015 07:09:17 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Patient Declined Transport,03/16/2015 07:58:55 PM,37TH AV/JUDAH ST,San Francisco,94122,B08,23,7571,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7608504344545, -122.49628381234)",150753214-E23 +150392021,T03,15015210,Gas Leak (Natural and LP Gases),02/08/2015,02/08/2015,02/08/2015 02:09:52 PM,02/08/2015 02:11:00 PM,02/08/2015 02:11:12 PM,02/08/2015 02:12:58 PM,02/08/2015 02:14:38 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/08/2015 02:19:37 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7855629695287, -122.412993783039)",150392021-T03 +142080962,RS1,14072010,Water Rescue,07/27/2014,07/27/2014,07/27/2014 08:38:39 AM,07/27/2014 08:38:39 AM,07/27/2014 08:40:35 AM,07/27/2014 08:40:35 AM,07/27/2014 08:40:35 AM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Code 2 Transport,07/27/2014 08:51:02 AM,GREAT HY/BALBOA ST,San Francisco,94121,B07,34,7316,3,3,3,false,Fire,1,RESCUE SQUAD,1,7,1,Outer Richmond,"(37.7750759610096, -122.511294923938)",142080962-RS1 +150213573,B02,15008372,Alarms,01/21/2015,01/21/2015,01/21/2015 08:59:56 PM,01/21/2015 09:01:18 PM,01/21/2015 09:01:36 PM,01/21/2015 09:03:25 PM,01/21/2015 09:08:11 PM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Fire,01/21/2015 09:08:24 PM,800 Block of NOE ST,San Francisco,94114,B06,24,5466,3,3,3,true,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7558203733016, -122.432361430986)",150213573-B02 +143440841,E39,14122246,Medical Incident,12/10/2014,12/10/2014,12/10/2014 08:25:54 AM,12/10/2014 08:30:11 AM,12/10/2014 08:30:27 AM,12/10/2014 08:31:43 AM,12/10/2014 08:34:37 AM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Code 2 Transport,12/10/2014 08:50:43 AM,100 Block of ROBINHOOD DR,San Francisco,94127,B09,39,8257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7369377936586, -122.457079998255)",143440841-E39 +160940231,AM20,16037120,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:21:07 AM,04/03/2016 01:21:07 AM,04/03/2016 01:40:27 AM,04/03/2016 01:40:42 AM,04/03/2016 01:52:40 AM,04/03/2016 02:01:30 AM,04/03/2016 02:15:03 AM,Code 2 Transport,04/03/2016 02:40:30 AM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160940231-AM20 +153444144,E41,15132631,Alarms,12/10/2015,12/10/2015,12/10/2015 11:47:35 PM,12/10/2015 11:48:47 PM,12/10/2015 11:49:00 PM,12/10/2015 11:51:27 PM,12/10/2015 11:51:27 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Fire,12/11/2015 12:00:21 AM,1400 Block of PINE ST,San Francisco,94109,B04,3,3122,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7897794249332, -122.419678979482)",153444144-E41 +150750451,65,15028655,Medical Incident,03/16/2015,03/15/2015,03/16/2015 06:17:58 AM,03/16/2015 06:18:49 AM,03/16/2015 06:19:10 AM,03/16/2015 06:19:18 AM,03/16/2015 06:45:44 AM,03/16/2015 06:45:51 AM,03/16/2015 06:54:56 AM,Code 2 Transport,03/16/2015 07:06:41 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",150750451-65 +141344147,74,14045956,Medical Incident,05/14/2014,05/14/2014,05/14/2014 10:41:20 PM,05/14/2014 10:41:49 PM,05/14/2014 10:42:40 PM,05/14/2014 10:44:11 PM,05/14/2014 10:49:57 PM,05/14/2014 11:00:25 PM,05/14/2014 11:25:09 PM,Code 2 Transport,05/15/2014 12:09:39 AM,200 Block of PENINSULA AVE,San Francisco,94134,B10,44,6272,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7123170703778, -122.3988695936)",141344147-74 +141362368,KM06,14046620,Medical Incident,05/16/2014,05/16/2014,05/16/2014 04:28:54 PM,05/16/2014 04:29:19 PM,05/16/2014 04:29:39 PM,05/16/2014 04:33:04 PM,05/16/2014 04:36:41 PM,05/16/2014 04:47:44 PM,05/16/2014 05:10:24 PM,Code 2 Transport,05/16/2014 05:40:14 PM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7352738344938, -122.391413470729)",141362368-KM06 +150460879,61,15017819,Medical Incident,02/15/2015,02/15/2015,02/15/2015 08:12:29 AM,02/15/2015 08:12:56 AM,02/15/2015 08:14:53 AM,02/15/2015 08:15:13 AM,02/15/2015 08:21:10 AM,02/15/2015 08:38:37 AM,02/15/2015 08:52:22 AM,Code 2 Transport,02/15/2015 09:25:04 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",150460879-61 +151193933,77,15045196,Medical Incident,04/29/2015,04/29/2015,04/29/2015 10:35:07 PM,04/29/2015 10:38:48 PM,04/29/2015 10:39:11 PM,04/29/2015 10:39:20 PM,04/29/2015 10:46:33 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Unable to Locate,04/29/2015 10:50:04 PM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",151193933-77 +151904040,53,15072708,Medical Incident,07/09/2015,07/09/2015,07/09/2015 10:34:49 PM,07/09/2015 10:34:49 PM,07/09/2015 10:35:39 PM,07/09/2015 10:36:54 PM,07/09/2015 10:45:52 PM,07/09/2015 10:56:42 PM,07/09/2015 11:05:14 PM,Code 2 Transport,07/09/2015 11:42:05 PM,WALLER ST/POTOMAC ST,San Francisco,94117,B05,6,3635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.770860911053, -122.432717263713)",151904040-53 +160982169,59,16038945,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:05:25 PM,04/07/2016 02:06:09 PM,04/07/2016 02:07:03 PM,04/07/2016 02:07:18 PM,04/07/2016 02:09:33 PM,04/07/2016 02:40:02 PM,04/07/2016 03:05:18 PM,Code 2 Transport,04/07/2016 03:40:34 PM,FERN ST/POLK ST,San Francisco,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",160982169-59 +161000034,58,16039552,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:08:48 AM,04/09/2016 12:10:31 AM,04/09/2016 12:13:25 AM,04/09/2016 12:13:25 AM,04/09/2016 12:33:43 AM,04/09/2016 12:33:45 AM,04/09/2016 12:48:06 AM,Code 2 Transport,04/09/2016 01:19:45 AM,400 Block of RIVERA ST,San Francisco,94116,B08,40,736,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7470568621984, -122.470919286644)",161000034-58 +160990907,77,16039229,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:15:34 AM,04/08/2016 09:16:40 AM,04/08/2016 09:18:03 AM,04/08/2016 09:18:23 AM,04/08/2016 09:44:47 AM,04/08/2016 09:44:49 AM,04/08/2016 09:51:52 AM,Code 2 Transport,04/08/2016 10:20:15 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160990907-77 +142012104,T05,14069625,Alarms,07/20/2014,07/20/2014,07/20/2014 04:27:28 PM,07/20/2014 04:30:05 PM,07/20/2014 04:30:20 PM,07/20/2014 04:32:03 PM,07/20/2014 04:34:45 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Fire,07/20/2014 04:40:13 PM,800 Block of FRANKLIN ST,San Francisco,94102,B02,36,3216,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7824435992634, -122.422484951715)",142012104-T05 +141273548,74,14043263,Medical Incident,05/07/2014,05/07/2014,05/07/2014 06:48:57 PM,05/07/2014 06:49:20 PM,05/07/2014 06:49:44 PM,05/07/2014 06:51:14 PM,05/07/2014 06:53:34 PM,05/07/2014 07:17:51 PM,05/07/2014 07:37:08 PM,Code 2 Transport,05/07/2014 08:04:02 PM,400 Block of PERSIA AVE,San Francisco,94112,B09,43,6134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7213809153444, -122.432441314928)",141273548-74 +141273392,E03,14043257,Medical Incident,05/07/2014,05/07/2014,05/07/2014 06:07:34 PM,05/07/2014 06:09:36 PM,05/07/2014 06:11:41 PM,05/07/2014 06:13:29 PM,05/07/2014 06:16:52 PM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Code 3 Transport,05/07/2014 06:30:16 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",141273392-E03 +152491880,74,15095120,Medical Incident,09/06/2015,09/06/2015,09/06/2015 01:55:25 PM,09/06/2015 01:57:03 PM,09/06/2015 01:57:13 PM,09/06/2015 01:57:24 PM,09/06/2015 02:02:02 PM,09/06/2015 02:17:08 PM,09/06/2015 02:23:03 PM,Code 2 Transport,09/06/2015 03:07:44 PM,2000 Block of GROVE ST,San Francisco,94117,B05,21,4535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.7743000833126, -122.450329287413)",152491880-74 +143590265,B10,14128327,Medical Incident,12/25/2014,12/24/2014,12/25/2014 02:33:39 AM,12/25/2014 02:33:39 AM,12/25/2014 02:34:30 AM,12/25/2014 02:35:25 AM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,Cancelled,12/25/2014 02:42:16 AM,700 Block of JERROLD AVE,San Francisco,94124,B10,17,6713,A,E,3,false,Potentially Life-Threatening,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7296708213986, -122.373440500902)",143590265-B10 +152492580,57,15095186,Medical Incident,09/06/2015,09/06/2015,09/06/2015 05:13:43 PM,09/06/2015 05:15:43 PM,09/06/2015 05:16:07 PM,09/06/2015 05:17:19 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,No Merit,09/06/2015 05:20:52 PM,300 Block of FOERSTER ST,San Francisco,94112,B09,15,8235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7311168721104, -122.448794202063)",152492580-57 +143581199,B10,14128091,Alarms,12/24/2014,12/24/2014,12/24/2014 11:05:46 AM,12/24/2014 11:07:09 AM,12/24/2014 11:07:20 AM,12/24/2014 11:08:54 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/24/2014 11:13:05 AM,1500 Block of WALLACE AVE,San Francisco,94124,B10,17,6546,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7269904434139, -122.390132474192)",143581199-B10 +150362699,T16,15013954,Alarms,02/05/2015,02/05/2015,02/05/2015 05:47:25 PM,02/05/2015 05:48:59 PM,02/05/2015 05:49:09 PM,02/05/2015 05:50:40 PM,02/05/2015 05:53:24 PM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/05/2015 06:19:14 PM,2400 Block of PACIFIC AVE,San Francisco,94115,B04,38,3546,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.793187777528, -122.435546343579)",150362699-T16 +160942448,AM16,16037325,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:10:27 PM,04/03/2016 04:10:27 PM,04/03/2016 04:11:13 PM,04/03/2016 04:11:57 PM,04/03/2016 04:15:32 PM,04/03/2016 04:26:49 PM,04/03/2016 04:39:35 PM,Code 2 Transport,04/03/2016 05:11:37 PM,JESSIE ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",160942448-AM16 +142600296,E22,14090717,Structure Fire,09/17/2014,09/16/2014,09/17/2014 03:39:33 AM,09/17/2014 03:40:16 AM,09/17/2014 03:40:47 AM,09/17/2014 03:42:01 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 03:46:57 AM,3100 Block of CLEMENT ST,San Francisco,94121,B07,14,7237,3,3,3,false,Alarm,1,ENGINE,10,7,1,Outer Richmond,"(37.7815971138281, -122.492906734383)",142600296-E22 +160981277,63,16038854,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 10:09:50 AM,04/07/2016 10:09:50 AM,04/07/2016 10:11:26 AM,04/07/2016 10:11:36 AM,04/07/2016 10:23:01 AM,04/07/2016 10:34:56 AM,04/07/2016 10:45:10 AM,Code 2 Transport,04/07/2016 11:23:18 AM,16TH ST/GUERRERO ST,San Francisco,94103,B02,6,5235,2,A,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7647834522541, -122.424102685064)",160981277-63 +151273570,77,15048312,Medical Incident,05/07/2015,05/07/2015,05/07/2015 08:17:16 PM,05/07/2015 08:18:33 PM,05/07/2015 08:20:55 PM,05/07/2015 08:21:19 PM,05/07/2015 08:27:50 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Unable to Locate,05/07/2015 08:33:20 PM,1100 Block of GEARY BLVD,San Francisco,94109,B04,3,3222,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7855297633293, -122.422199701995)",151273570-77 +160970824,73,16038317,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:28:47 AM,04/06/2016 08:31:01 AM,04/06/2016 08:32:35 AM,04/06/2016 08:32:49 AM,04/06/2016 08:51:37 AM,04/06/2016 09:08:44 AM,04/06/2016 09:22:58 AM,Code 2 Transport,04/06/2016 10:04:24 AM,FULTON ST/LARKIN ST,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",160970824-73 +160993545,86,16039469,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:57:28 PM,04/08/2016 08:58:52 PM,04/08/2016 08:59:21 PM,04/08/2016 08:59:32 PM,04/08/2016 09:00:42 PM,04/08/2016 09:18:22 PM,04/08/2016 09:49:25 PM,Code 2 Transport,04/08/2016 10:28:48 PM,MISSION ST/7TH ST,San Francisco,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160993545-86 +161000422,AM18,16039610,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:16:31 AM,04/09/2016 03:16:31 AM,04/09/2016 03:16:50 AM,04/09/2016 03:17:50 AM,04/09/2016 03:20:18 AM,04/09/2016 03:52:29 AM,04/09/2016 04:03:14 AM,Code 2 Transport,04/09/2016 04:34:12 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",161000422-AM18 +160982501,68,16038987,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:28:12 PM,04/07/2016 03:30:17 PM,04/07/2016 03:31:45 PM,04/07/2016 03:32:01 PM,04/07/2016 03:39:19 PM,04/07/2016 03:54:29 PM,04/07/2016 04:13:17 PM,Code 2 Transport,04/07/2016 04:56:12 PM,500 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7586965959617, -122.397057095842)",160982501-68 +142850326,E16,14100277,Medical Incident,10/12/2014,10/11/2014,10/12/2014 01:46:27 AM,10/12/2014 01:47:59 AM,10/12/2014 01:48:13 AM,10/12/2014 01:50:25 AM,10/12/2014 01:51:29 AM,04/25/2016 01:14:36 PM,04/25/2016 01:14:36 PM,Code 2 Transport,10/12/2014 01:59:51 AM,1900 Block of UNION ST,San Francisco,94123,B04,16,3443,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7976099463654, -122.431831857814)",142850326-E16 +141462152,E08,14050194,Medical Incident,05/26/2014,05/26/2014,05/26/2014 05:02:27 PM,05/26/2014 05:03:36 PM,05/26/2014 05:20:10 PM,05/26/2014 05:20:24 PM,05/26/2014 05:22:31 PM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,Code 2 Transport,05/26/2014 05:30:52 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",141462152-E08 +153202174,E12,15123079,Medical Incident,11/16/2015,11/16/2015,11/16/2015 02:46:02 PM,11/16/2015 02:48:02 PM,11/16/2015 02:48:43 PM,11/16/2015 02:49:25 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,No Merit,11/16/2015 02:50:54 PM,400 Block of STANYAN ST,San Francisco,94117,B07,21,4556,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",153202174-E12 +160990469,AM24,16039195,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:16:48 AM,04/08/2016 06:19:36 AM,04/08/2016 06:21:23 AM,04/08/2016 06:21:59 AM,04/08/2016 06:34:18 AM,04/08/2016 06:46:10 AM,04/08/2016 07:22:00 AM,Code 2 Transport,04/08/2016 07:40:55 AM,0 Block of GARLINGTON CT,San Francisco,94124,B10,17,6622,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7325070966122, -122.384396871119)",160990469-AM24 +151562119,57,15059558,Medical Incident,06/05/2015,06/05/2015,06/05/2015 02:30:57 PM,06/05/2015 02:33:24 PM,06/05/2015 02:35:26 PM,06/05/2015 02:35:46 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,No Merit,06/05/2015 02:42:08 PM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",151562119-57 +141240245,86,14042084,Medical Incident,05/04/2014,05/04/2014,05/04/2014 05:33:32 PM,05/04/2014 05:36:10 PM,05/04/2014 05:36:29 PM,05/04/2014 05:37:21 PM,05/04/2014 05:41:44 PM,05/04/2014 05:47:01 PM,05/04/2014 06:06:00 PM,Code 2 Transport,05/04/2014 06:28:20 PM,1100 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",141240245-86 +150371105,AM10,15014192,Medical Incident,02/06/2015,02/06/2015,02/06/2015 09:28:53 AM,02/06/2015 09:28:53 AM,02/06/2015 09:29:54 AM,02/06/2015 09:30:29 AM,02/06/2015 09:41:52 AM,02/06/2015 10:11:45 AM,02/06/2015 10:22:56 AM,Code 3 Transport,02/06/2015 11:06:15 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7822954570262, -122.400718230959)",150371105-AM10 +143401944,E03,14120780,Medical Incident,12/06/2014,12/06/2014,12/06/2014 01:45:16 PM,12/06/2014 01:45:28 PM,12/06/2014 01:45:55 PM,12/06/2014 01:46:06 PM,12/06/2014 01:49:12 PM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Code 2 Transport,12/06/2014 01:56:39 PM,1100 Block of GOUGH ST,San Francisco,94109,B04,3,3261,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Western Addition,"(37.784358514886, -122.424559253604)",143401944-E03 +143141344,KM03,14111210,Medical Incident,11/10/2014,11/10/2014,11/10/2014 11:43:56 AM,11/10/2014 11:45:15 AM,11/10/2014 11:45:36 AM,11/10/2014 11:46:09 AM,11/10/2014 11:58:38 AM,11/10/2014 12:08:00 PM,11/10/2014 12:35:56 PM,Code 2 Transport,11/10/2014 01:10:02 PM,800 Block of HARRISON ST,San Francisco,94107,B03,8,2216,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7799507434806, -122.400778586916)",143141344-KM03 +160953810,82,16037801,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:32:23 PM,04/04/2016 09:40:25 PM,04/04/2016 09:40:39 PM,04/04/2016 09:40:54 PM,04/04/2016 09:48:56 PM,04/04/2016 11:03:23 PM,04/04/2016 11:16:19 PM,Code 2 Transport,04/04/2016 11:46:18 PM,500 Block of ATHENS ST,San Francisco,94112,B09,43,6156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7193385286348, -122.43024788404)",160953810-82 +141440173,72,14049286,Medical Incident,05/24/2014,05/23/2014,05/24/2014 12:57:36 AM,05/24/2014 12:59:36 AM,05/24/2014 01:00:05 AM,05/24/2014 01:03:57 AM,05/24/2014 01:16:49 AM,05/24/2014 01:34:05 AM,05/24/2014 01:49:25 AM,Code 2 Transport,05/24/2014 02:50:29 AM,16TH ST/VERMONT ST,San Francisco,94103,B02,29,2422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7659581887586, -122.404623338223)",141440173-72 +150592271,T12,15022601,Alarms,02/28/2015,02/28/2015,02/28/2015 03:37:04 PM,02/28/2015 03:38:45 PM,02/28/2015 03:38:59 PM,02/28/2015 03:40:51 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Fire,02/28/2015 03:44:27 PM,3700 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,false,Alarm,1,TRUCK,3,7,1,Inner Richmond,"(37.7813631196138, -122.45944025715)",150592271-T12 +143330554,E13,14117901,Structure Fire,11/29/2014,11/28/2014,11/29/2014 05:02:40 AM,11/29/2014 05:02:40 AM,11/29/2014 05:02:48 AM,11/29/2014 05:04:41 AM,11/29/2014 05:07:05 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 05:07:34 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",143330554-E13 +142031933,KM06,14070268,Medical Incident,07/22/2014,07/22/2014,07/22/2014 02:24:26 PM,07/22/2014 02:24:26 PM,07/22/2014 02:38:47 PM,07/22/2014 02:38:59 PM,07/22/2014 02:46:48 PM,07/22/2014 03:04:25 PM,07/22/2014 03:16:34 PM,Code 2 Transport,07/22/2014 04:06:37 PM,OFARRELL ST/POLK ST,San Francisco,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",142031933-KM06 +141523186,87,14052380,Traffic Collision,06/01/2014,06/01/2014,06/01/2014 10:40:37 PM,06/01/2014 10:45:17 PM,06/01/2014 10:46:58 PM,06/01/2014 10:47:08 PM,06/01/2014 11:01:06 PM,06/01/2014 11:25:51 PM,06/01/2014 11:40:41 PM,Code 2 Transport,06/02/2014 12:43:00 AM,200 Block of 18TH AVE,San Francisco,94121,B03,29,2436,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.783294686314, -122.477372735277)",141523186-87 +152830065,75,15108480,Medical Incident,10/10/2015,10/09/2015,10/10/2015 12:15:45 AM,10/10/2015 12:15:45 AM,10/10/2015 12:19:02 AM,10/10/2015 12:19:38 AM,10/10/2015 12:36:42 AM,10/10/2015 12:36:44 AM,10/10/2015 12:55:32 AM,Code 2 Transport,10/10/2015 01:42:34 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",152830065-75 +151972050,E23,15075157,Electrical Hazard,07/16/2015,07/16/2015,07/16/2015 02:44:28 PM,07/16/2015 02:45:20 PM,07/16/2015 02:45:59 PM,07/16/2015 02:47:04 PM,07/16/2015 02:49:36 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Fire,07/16/2015 02:55:01 PM,1900 Block of 46TH AVE,San Francisco,94116,B08,23,7715,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7501609656807, -122.505281479896)",151972050-E23 +160972919,82,16038522,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:18:55 PM,04/06/2016 04:19:52 PM,04/06/2016 04:20:16 PM,04/06/2016 04:20:25 PM,04/06/2016 04:29:39 PM,04/06/2016 04:52:27 PM,04/06/2016 05:20:13 PM,Code 2 Transport,04/06/2016 05:43:46 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160972919-82 +150293824,E05,15011371,Structure Fire,01/29/2015,01/29/2015,01/29/2015 11:26:28 PM,01/29/2015 11:26:52 PM,01/29/2015 11:30:49 PM,01/29/2015 11:31:14 PM,01/29/2015 11:36:02 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Other,01/30/2015 01:14:51 AM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,true,Fire,2,ENGINE,9,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",150293824-E05 +152093448,B02,15079797,Alarms,07/28/2015,07/28/2015,07/28/2015 08:46:13 PM,07/28/2015 08:47:16 PM,07/28/2015 08:50:00 PM,07/28/2015 08:51:01 PM,07/28/2015 08:54:29 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Fire,07/28/2015 08:57:33 PM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,3,3,3,false,Alarm,1,CHIEF,2,3,6,South of Market,"(37.7720751846477, -122.408746829681)",152093448-B02 +152763405,86,15105945,Medical Incident,10/03/2015,10/03/2015,10/03/2015 07:28:33 PM,10/03/2015 07:28:59 PM,10/03/2015 07:29:36 PM,10/03/2015 07:29:45 PM,10/03/2015 07:34:52 PM,10/03/2015 07:48:02 PM,10/03/2015 08:02:23 PM,Code 2 Transport,10/03/2015 08:22:21 PM,1300 Block of THOMAS AVE,San Francisco,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",152763405-86 +141580565,89,14054330,Medical Incident,06/07/2014,06/06/2014,06/07/2014 06:45:09 AM,06/07/2014 06:46:13 AM,06/07/2014 07:01:50 AM,06/07/2014 07:02:00 AM,06/07/2014 07:05:31 AM,06/07/2014 07:31:39 AM,06/07/2014 07:46:56 AM,Code 2 Transport,06/07/2014 08:14:58 AM,1100 Block of OAKDALE AVE,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",141580565-89 +151462214,E29,15055594,Medical Incident,05/26/2015,05/26/2015,05/26/2015 03:06:50 PM,05/26/2015 03:07:12 PM,05/26/2015 03:07:34 PM,05/26/2015 03:08:39 PM,05/26/2015 03:11:47 PM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Code 2 Transport,05/26/2015 03:16:15 PM,1100 Block of BRYANT ST,San Francisco,94103,B02,29,2346,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.770545304965, -122.409386500738)",151462214-E29 +153220220,E35,15123703,Medical Incident,11/18/2015,11/17/2015,11/18/2015 02:43:56 AM,11/18/2015 02:46:51 AM,11/18/2015 02:47:16 AM,11/18/2015 02:49:16 AM,11/18/2015 02:52:17 AM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Code 2 Transport,11/18/2015 03:02:54 AM,400 Block of HARRISON ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7863775741107, -122.392446006482)",153220220-E35 +160922022,KM13,16036469,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:29:05 PM,04/01/2016 02:31:29 PM,04/01/2016 02:31:49 PM,04/01/2016 02:32:17 PM,04/01/2016 02:47:19 PM,04/01/2016 03:08:46 PM,04/01/2016 03:32:10 PM,Code 2 Transport,04/01/2016 03:57:39 PM,1000 Block of BRODERICK ST,San Francisco,94115,B05,21,4241,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,2,Western Addition,"(37.7798968099593, -122.440561330041)",160922022-KM13 +160952660,AM08,16037696,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:20:11 PM,04/04/2016 04:20:11 PM,04/04/2016 04:20:47 PM,04/04/2016 04:22:15 PM,04/04/2016 04:34:24 PM,04/04/2016 04:59:47 PM,04/04/2016 05:15:37 PM,Code 2 Transport,04/04/2016 05:57:07 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160952660-AM08 +160951935,76,16037645,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:27:32 PM,04/04/2016 01:28:31 PM,04/04/2016 01:29:49 PM,04/04/2016 01:30:16 PM,04/04/2016 01:34:13 PM,04/04/2016 01:42:36 PM,04/04/2016 02:07:58 PM,Code 2 Transport,04/04/2016 02:55:01 PM,1700 Block of MARKET ST,San Francisco,94102,B02,36,3311,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7722683129989, -122.423098219736)",160951935-76 +151930161,E17,15073507,Medical Incident,07/12/2015,07/11/2015,07/12/2015 01:03:23 AM,07/12/2015 01:03:52 AM,07/12/2015 01:04:08 AM,07/12/2015 01:05:32 AM,04/25/2016 01:09:31 PM,04/25/2016 01:09:31 PM,04/25/2016 01:09:31 PM,Cancelled,07/12/2015 01:07:37 AM,1500 Block of SHAFTER AVE,San Francisco,94124,B10,17,6547,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7304640154692, -122.38983115909)",151930161-E17 +151033025,71,15039058,Medical Incident,04/13/2015,04/13/2015,04/13/2015 06:04:32 PM,04/13/2015 06:08:22 PM,04/13/2015 06:13:44 PM,04/13/2015 06:13:44 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Code 2 Transport,04/13/2015 06:14:01 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",151033025-71 +150112777,82,15004464,Medical Incident,01/11/2015,01/11/2015,01/11/2015 06:06:52 PM,01/11/2015 06:08:14 PM,01/11/2015 06:34:33 PM,01/11/2015 06:34:33 PM,01/11/2015 06:36:37 PM,01/11/2015 06:46:12 PM,01/11/2015 07:11:02 PM,Code 2 Transport,01/11/2015 07:32:11 PM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",150112777-82 +152330273,E03,15088697,Medical Incident,08/21/2015,08/20/2015,08/21/2015 02:15:59 AM,08/21/2015 02:16:56 AM,08/21/2015 02:17:17 AM,08/21/2015 02:19:07 AM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Code 2 Transport,08/21/2015 02:22:28 AM,2000 Block of SACRAMENTO ST,San Francisco,94109,B04,38,3326,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.7907164232714, -122.426614088537)",152330273-E03 +153311352,KM04,15127351,Medical Incident,11/27/2015,11/27/2015,11/27/2015 11:53:01 AM,11/27/2015 11:53:47 AM,11/27/2015 11:54:00 AM,11/27/2015 11:54:32 AM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,Code 2 Transport,11/27/2015 11:54:48 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",153311352-KM04 +160961561,63,16037987,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:57:22 AM,04/05/2016 11:58:03 AM,04/05/2016 11:58:39 AM,04/05/2016 12:00:57 PM,04/05/2016 12:02:40 PM,04/05/2016 12:18:18 PM,04/05/2016 12:47:07 PM,Code 2 Transport,04/05/2016 01:07:50 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",160961561-63 +152430594,82,15092578,Medical Incident,08/31/2015,08/30/2015,08/31/2015 06:44:50 AM,08/31/2015 06:47:44 AM,08/31/2015 06:48:07 AM,08/31/2015 06:48:15 AM,08/31/2015 06:48:15 AM,08/31/2015 07:23:46 AM,08/31/2015 07:37:05 AM,Code 2 Transport,08/31/2015 08:12:41 AM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",152430594-82 +151352620,58,15051354,Medical Incident,05/15/2015,05/15/2015,05/15/2015 04:30:39 PM,05/15/2015 04:32:04 PM,05/15/2015 04:35:35 PM,05/15/2015 04:35:43 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Code 2 Transport,05/15/2015 04:37:02 PM,3RD ST/KIRKWOOD AV,San Francisco,94124,B10,25,6467,2,2,2,true,Non Life-threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7379553967402, -122.389587380179)",151352620-58 +160992755,KM09,16039402,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:24:43 PM,04/08/2016 05:25:50 PM,04/08/2016 05:26:57 PM,04/08/2016 05:29:26 PM,04/08/2016 05:38:20 PM,04/08/2016 06:12:10 PM,04/08/2016 06:27:33 PM,Code 2 Transport,04/08/2016 06:59:25 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160992755-KM09 +160952682,64,16037698,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:25:23 PM,04/04/2016 04:27:02 PM,04/04/2016 04:27:35 PM,04/04/2016 04:28:03 PM,04/04/2016 04:34:57 PM,04/04/2016 04:56:56 PM,04/04/2016 05:17:49 PM,Code 2 Transport,04/04/2016 05:58:24 PM,900 Block of ELLIS ST,San Francisco,94109,B02,3,3221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7837758711954, -122.421841195546)",160952682-64 +143020113,55,14106457,Medical Incident,10/29/2014,10/28/2014,10/29/2014 01:00:03 AM,10/29/2014 01:00:21 AM,10/29/2014 01:00:53 AM,10/29/2014 01:01:01 AM,10/29/2014 01:20:48 AM,10/29/2014 01:36:46 AM,10/29/2014 01:41:04 AM,Code 2 Transport,10/29/2014 02:53:51 AM,1100 Block of MCALLISTER ST,San Francisco,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7786327618285, -122.431321447148)",143020113-55 +143393828,E28,14120525,Medical Incident,12/05/2014,12/05/2014,12/05/2014 10:10:32 PM,12/05/2014 10:11:32 PM,12/05/2014 10:13:16 PM,12/05/2014 10:14:28 PM,12/05/2014 10:16:46 PM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Patient Declined Transport,12/05/2014 10:30:51 PM,600 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8044727215137, -122.415562636307)",143393828-E28 +142132905,RC3,14073963,Traffic Collision,08/01/2014,08/01/2014,08/01/2014 07:08:55 PM,08/01/2014 07:09:50 PM,08/01/2014 07:12:19 PM,08/01/2014 07:13:28 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Other,08/01/2014 07:18:18 PM,200 Block of GENEVA AVE,San Francisco,94112,B09,33,8371,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",142132905-RC3 +160921667,61,16036436,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 12:54:01 PM,04/01/2016 12:54:26 PM,04/01/2016 12:54:43 PM,04/01/2016 12:54:57 PM,04/01/2016 12:59:29 PM,04/01/2016 01:18:20 PM,04/01/2016 01:37:23 PM,Code 2 Transport,04/01/2016 02:16:51 PM,MARKET ST/CHURCH ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",160921667-61 +150353847,E07,15013629,Structure Fire,02/04/2015,02/04/2015,02/04/2015 08:31:13 PM,02/04/2015 08:32:28 PM,02/04/2015 08:34:24 PM,02/04/2015 08:34:24 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Fire,02/04/2015 08:37:14 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Alarm,1,ENGINE,12,2,9,Mission,"(37.7643732096664, -122.417478491468)",150353847-E07 +141713050,T08,14059160,Structure Fire,06/20/2014,06/20/2014,06/20/2014 07:00:12 PM,06/20/2014 07:00:12 PM,06/20/2014 07:00:19 PM,06/20/2014 07:01:00 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Fire,06/20/2014 07:03:35 PM,2ND ST/TOWNSEND ST,San Francisco,94107,B03,8,2154,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7806067563614, -122.390527234709)",141713050-T08 +160972106,KM06,16038431,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:22:47 PM,04/06/2016 01:23:15 PM,04/06/2016 01:23:46 PM,04/06/2016 01:24:31 PM,04/06/2016 01:27:49 PM,04/06/2016 01:41:20 PM,04/06/2016 01:46:58 PM,Code 3 Transport,04/06/2016 02:42:23 PM,3200 Block of ANZA ST,San Francisco,94121,B07,14,7176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7782934340332, -122.482993121582)",160972106-KM06 +143472785,E02,14123903,Medical Incident,12/13/2014,12/13/2014,12/13/2014 05:41:27 PM,12/13/2014 05:41:50 PM,12/13/2014 05:43:13 PM,12/13/2014 05:43:50 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,No Merit,12/13/2014 05:46:28 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",143472785-E02 +151451238,KM09,15055119,Medical Incident,05/25/2015,05/25/2015,05/25/2015 11:19:34 AM,05/25/2015 11:19:34 AM,05/25/2015 11:22:31 AM,05/25/2015 11:22:55 AM,05/25/2015 11:36:03 AM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,Patient Declined Transport,05/25/2015 12:19:24 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",151451238-KM09 +142880509,E41,14101401,Medical Incident,10/15/2014,10/14/2014,10/15/2014 06:29:37 AM,10/15/2014 06:31:48 AM,10/15/2014 06:32:12 AM,10/15/2014 06:34:04 AM,10/15/2014 06:35:44 AM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,Code 2 Transport,10/15/2014 06:40:02 AM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",142880509-E41 +160972343,82,16038459,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:15:41 PM,04/06/2016 02:16:58 PM,04/06/2016 02:17:34 PM,04/06/2016 02:17:40 PM,04/06/2016 02:23:13 PM,04/06/2016 02:54:58 PM,04/06/2016 03:22:07 PM,Code 2 Transport,04/06/2016 03:57:52 PM,1000 Block of GREEN ST,San Francisco,94133,B01,41,1533,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Russian Hill,"(37.7986303849434, -122.416405936463)",160972343-82 +153054226,KM07,15117361,Medical Incident,11/01/2015,11/01/2015,11/01/2015 09:55:17 PM,11/01/2015 09:55:54 PM,11/01/2015 09:56:55 PM,11/01/2015 09:59:28 PM,11/01/2015 10:01:54 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Cancelled,11/01/2015 10:03:22 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",153054226-KM07 +150253480,E28,15009823,Alarms,01/25/2015,01/25/2015,01/25/2015 10:31:36 PM,01/25/2015 10:32:27 PM,01/25/2015 10:32:44 PM,01/25/2015 10:34:03 PM,01/25/2015 10:36:01 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,Fire,01/25/2015 10:40:04 PM,2600 Block of JONES ST,San Francisco,94133,B01,28,1521,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8056853345021, -122.416914137852)",150253480-E28 +150221822,E01,15008585,Medical Incident,01/22/2015,01/22/2015,01/22/2015 01:34:40 PM,01/22/2015 01:34:53 PM,01/22/2015 01:37:01 PM,01/22/2015 01:38:35 PM,01/22/2015 01:50:42 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Code 3 Transport,01/22/2015 02:28:55 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7801303744947, -122.409871449933)",150221822-E01 +160991903,77,16039321,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:01:05 PM,04/08/2016 02:01:05 PM,04/08/2016 02:03:01 PM,04/08/2016 02:03:14 PM,04/08/2016 02:10:48 PM,04/08/2016 02:19:00 PM,04/08/2016 02:44:49 PM,Code 2 Transport,04/08/2016 03:11:26 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160991903-77 +150691043,72,15026289,Traffic Collision,03/10/2015,03/10/2015,03/10/2015 09:43:18 AM,03/10/2015 09:43:54 AM,03/10/2015 09:44:06 AM,03/10/2015 09:44:38 AM,03/10/2015 09:47:32 AM,03/10/2015 10:03:50 AM,03/10/2015 10:17:02 AM,Code 2 Transport,03/10/2015 10:39:35 AM,100 Block of VALENCIA ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7707273342452, -122.422514586133)",150691043-72 +151350936,62,15051195,Medical Incident,05/15/2015,05/15/2015,05/15/2015 08:40:08 AM,05/15/2015 08:41:14 AM,05/15/2015 08:43:50 AM,05/15/2015 08:44:24 AM,05/15/2015 08:58:11 AM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Unable to Locate,05/15/2015 09:01:23 AM,LINCOLN WY/MARTIN LUTHER KING DR,San Francisco,94122,B08,23,7722,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",151350936-62 +160932757,71,16036970,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:45:19 PM,04/02/2016 05:46:34 PM,04/02/2016 05:57:21 PM,04/02/2016 05:57:21 PM,04/02/2016 06:07:12 PM,04/02/2016 06:24:55 PM,04/02/2016 06:38:56 PM,Code 2 Transport,04/02/2016 07:05:11 PM,100 Block of LOEHR ST,San Francisco,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7125873012965, -122.413542850427)",160932757-71 +151673676,E07,15064044,Gas Leak (Natural and LP Gases),06/16/2015,06/16/2015,06/16/2015 11:11:36 PM,06/16/2015 11:12:46 PM,06/16/2015 11:14:01 PM,06/16/2015 11:15:17 PM,06/16/2015 11:18:01 PM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Fire,06/16/2015 11:24:27 PM,1200 Block of TREAT AVE,San Francisco,94110,B06,7,5533,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7501648383073, -122.412831855469)",151673676-E07 +161002842,60,16039899,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:33:14 PM,04/09/2016 07:35:02 PM,04/09/2016 07:35:32 PM,04/09/2016 07:35:40 PM,04/09/2016 07:43:41 PM,04/09/2016 08:02:03 PM,04/09/2016 08:28:13 PM,Code 2 Transport,04/09/2016 09:00:20 PM,400 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7899091346907, -122.406975887776)",161002842-60 +160963761,61,16038185,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:54:32 PM,04/05/2016 08:54:32 PM,04/05/2016 08:54:47 PM,04/05/2016 08:55:08 PM,04/05/2016 08:59:39 PM,04/05/2016 09:15:59 PM,04/05/2016 09:45:04 PM,Code 2 Transport,04/05/2016 10:13:28 PM,1200 Block of JAMESTOWN AVE,San Francisco,94124,B10,44,6542,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7208108804162, -122.397802583176)",160963761-61 +153392887,56,15130550,Medical Incident,12/05/2015,12/05/2015,12/05/2015 05:32:39 PM,12/05/2015 05:32:39 PM,12/05/2015 05:36:37 PM,12/05/2015 05:36:44 PM,12/05/2015 05:55:53 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Medical Examiner,12/05/2015 06:02:38 PM,600 Block of 16TH AV,San Francisco,94118,B07,31,7155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7758059176427, -122.474822787851)",153392887-56 +142921919,54,14103031,Medical Incident,10/19/2014,10/19/2014,10/19/2014 01:52:11 PM,10/19/2014 01:53:57 PM,10/19/2014 01:54:18 PM,10/19/2014 01:55:20 PM,10/19/2014 02:00:43 PM,10/19/2014 02:21:18 PM,10/19/2014 02:49:36 PM,Code 2 Transport,10/19/2014 03:33:23 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",142921919-54 +150073143,AM16,15002824,Medical Incident,01/07/2015,01/07/2015,01/07/2015 07:07:57 PM,01/07/2015 07:07:57 PM,01/07/2015 07:08:47 PM,01/07/2015 07:09:24 PM,01/07/2015 07:16:52 PM,01/07/2015 07:33:58 PM,01/07/2015 07:41:26 PM,Code 2 Transport,01/07/2015 08:37:26 PM,6TH AV/CALIFORNIA ST,San Francisco,94118,B07,31,7126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7849939711361, -122.464572158227)",150073143-AM16 +160970605,KM13,16038294,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:13:55 AM,04/06/2016 07:14:44 AM,04/06/2016 07:30:12 AM,04/06/2016 07:30:17 AM,04/06/2016 07:30:17 AM,04/06/2016 07:55:29 AM,04/06/2016 08:14:07 AM,Code 2 Transport,04/06/2016 08:44:44 AM,0 Block of IRVING ST,San Francisco,94122,B05,12,7321,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Inner Sunset,"(37.7643374924183, -122.458207337502)",160970605-KM13 +142942756,55,14103775,Medical Incident,10/21/2014,10/21/2014,10/21/2014 05:21:55 PM,10/21/2014 05:23:58 PM,10/21/2014 05:29:22 PM,10/21/2014 05:29:48 PM,10/21/2014 05:38:59 PM,10/21/2014 05:58:33 PM,10/21/2014 06:25:36 PM,Code 2 Transport,10/21/2014 06:33:02 PM,0 Block of HENRY ST,San Francisco,94114,B05,6,5212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7667838886869, -122.432228457227)",142942756-55 +151480680,E38,15056231,Medical Incident,05/28/2015,05/28/2015,05/28/2015 08:06:04 AM,05/28/2015 08:06:57 AM,05/28/2015 08:07:02 AM,05/28/2015 08:08:33 AM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Code 2 Transport,05/28/2015 08:09:46 AM,0 Block of CLEARY CT,San Francisco,94109,B04,3,3323,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,5,Western Addition,"(37.7841466012998, -122.426445754167)",151480680-E38 +142832533,58,14099741,Medical Incident,10/10/2014,10/10/2014,10/10/2014 05:00:20 PM,10/10/2014 05:01:25 PM,10/10/2014 05:06:43 PM,10/10/2014 05:06:53 PM,10/10/2014 05:14:56 PM,10/10/2014 05:33:42 PM,10/10/2014 06:02:23 PM,Code 2 Transport,10/10/2014 06:36:05 PM,BOSWORTH ST/DIAMOND ST,San Francisco,94131,B06,26,8146,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",142832533-58 +151580319,E35,15060195,Medical Incident,06/07/2015,06/06/2015,06/07/2015 01:57:42 AM,06/07/2015 01:58:17 AM,06/07/2015 01:58:31 AM,06/07/2015 01:58:57 AM,06/07/2015 02:00:50 AM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Code 2 Transport,06/07/2015 02:07:28 AM,HOWARD ST/1ST ST,San Francisco,94105,B03,35,2141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7885359297329, -122.396034766801)",151580319-E35 +151843797,63,15070399,Medical Incident,07/03/2015,07/03/2015,07/03/2015 10:07:15 PM,07/03/2015 10:07:28 PM,07/03/2015 10:07:49 PM,07/03/2015 10:08:09 PM,07/03/2015 10:11:51 PM,07/03/2015 10:40:58 PM,07/03/2015 11:08:19 PM,Code 2 Transport,07/03/2015 11:44:07 PM,3700 Block of 25TH ST,San Francisco,94110,B06,11,5536,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7503931278259, -122.423283062895)",151843797-63 +161002363,KM08,16039846,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:05:21 PM,04/09/2016 05:06:50 PM,04/09/2016 05:06:56 PM,04/09/2016 05:08:38 PM,04/09/2016 05:09:37 PM,04/09/2016 05:26:46 PM,04/09/2016 05:26:49 PM,Code 2 Transport,04/09/2016 05:48:59 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",161002363-KM08 +160942883,KM05,16037369,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:12:42 PM,04/03/2016 06:12:42 PM,04/03/2016 06:13:09 PM,04/03/2016 06:13:34 PM,04/03/2016 06:22:32 PM,04/03/2016 06:36:07 PM,04/03/2016 06:59:38 PM,Code 2 Transport,04/03/2016 08:00:12 PM,7TH ST/STEVENSON ST,San Francisco,94103,B02,36,2316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7800058680664, -122.411933410089)",160942883-KM05 +160981505,AM10,16038884,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:14:17 AM,04/07/2016 11:16:38 AM,04/07/2016 11:18:19 AM,04/07/2016 11:19:44 AM,04/07/2016 11:32:13 AM,04/07/2016 11:32:16 AM,04/07/2016 11:54:43 AM,Code 2 Transport,04/07/2016 12:27:06 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,3,3,false,Non Life-threatening,1,PRIVATE,3,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160981505-AM10 +160982179,72,16038949,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:07:45 PM,04/07/2016 02:08:21 PM,04/07/2016 02:09:27 PM,04/07/2016 02:09:58 PM,04/07/2016 02:21:43 PM,04/07/2016 02:43:46 PM,04/07/2016 02:57:23 PM,Code 2 Transport,04/07/2016 03:43:47 PM,1300 Block of PIERCE ST,San Francisco,94115,B05,5,3647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",160982179-72 +160932800,KM12,16036976,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:58:59 PM,04/02/2016 05:58:59 PM,04/02/2016 05:59:18 PM,04/02/2016 06:00:06 PM,04/02/2016 06:05:31 PM,04/02/2016 06:14:42 PM,04/02/2016 06:19:37 PM,Code 2 Transport,04/02/2016 07:01:35 PM,SACRAMENTO ST/MASON ST,San Francisco,94108,B01,41,1414,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7927617757511, -122.41100673577)",160932800-KM12 +160942116,75,16037290,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:30:03 PM,04/03/2016 02:31:01 PM,04/03/2016 02:31:20 PM,04/03/2016 02:31:31 PM,04/03/2016 02:37:53 PM,04/03/2016 02:50:26 PM,04/03/2016 02:51:25 PM,Code 2 Transport,04/03/2016 03:27:36 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",160942116-75 +152693406,T12,15103224,Elevator / Escalator Rescue,09/26/2015,09/26/2015,09/26/2015 08:12:45 PM,09/26/2015 08:13:41 PM,09/26/2015 08:14:25 PM,09/26/2015 08:15:44 PM,09/26/2015 08:18:43 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Other,09/26/2015 08:47:11 PM,1200 Block of FUNSTON AVE,San Francisco,94122,B08,22,7346,3,3,3,false,Alarm,1,TRUCK,1,7,5,Inner Sunset,"(37.7647909798939, -122.470730253887)",152693406-T12 +150502530,KM08,15019398,Medical Incident,02/19/2015,02/19/2015,02/19/2015 04:31:46 PM,02/19/2015 04:32:57 PM,02/19/2015 04:33:18 PM,02/19/2015 04:34:06 PM,02/19/2015 04:41:39 PM,02/19/2015 05:05:01 PM,02/19/2015 05:31:50 PM,Code 2 Transport,02/19/2015 06:00:41 PM,500 Block of COLLEGE AVE,San Francisco,94112,B06,32,5642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7325875769032, -122.423413236667)",150502530-KM08 +143120626,77,14110387,Medical Incident,11/08/2014,11/07/2014,11/08/2014 06:08:53 AM,11/08/2014 06:10:00 AM,11/08/2014 06:10:32 AM,11/08/2014 06:10:42 AM,11/08/2014 06:29:57 AM,11/08/2014 06:42:24 AM,11/08/2014 07:14:30 AM,Code 2 Transport,11/08/2014 07:46:14 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143120626-77 +142103524,87,14072947,Medical Incident,07/29/2014,07/29/2014,07/29/2014 10:15:19 PM,07/29/2014 10:16:22 PM,07/29/2014 10:16:38 PM,07/29/2014 10:16:53 PM,07/29/2014 10:27:40 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Patient Declined Transport,07/29/2014 10:37:54 PM,JUDAH ST/48TH AV,San Francisco,94122,B08,23,7723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7603298172556, -122.508067560262)",142103524-87 +143163655,KM02,14112080,Medical Incident,11/12/2014,11/12/2014,11/12/2014 09:47:40 PM,11/12/2014 09:47:40 PM,11/12/2014 09:50:57 PM,11/12/2014 09:51:06 PM,11/12/2014 09:51:06 PM,11/12/2014 09:56:35 PM,04/25/2016 01:14:02 PM,Code 2 Transport,11/12/2014 10:36:18 PM,5TH ST/MARKET ST,San Francisco,94103,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",143163655-KM02 +152660806,KM09,15101759,Medical Incident,09/23/2015,09/23/2015,09/23/2015 08:17:35 AM,09/23/2015 08:18:48 AM,09/23/2015 08:20:05 AM,09/23/2015 08:20:05 AM,09/23/2015 08:27:19 AM,09/23/2015 08:49:29 AM,09/23/2015 09:38:24 AM,Code 2 Transport,09/23/2015 09:57:43 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2158,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",152660806-KM09 +150463073,KM04,15018048,Medical Incident,02/15/2015,02/15/2015,02/15/2015 06:57:06 PM,02/15/2015 06:59:05 PM,02/15/2015 07:02:03 PM,02/15/2015 07:02:03 PM,02/15/2015 07:09:12 PM,02/15/2015 07:25:38 PM,02/15/2015 07:46:06 PM,Code 2 Transport,02/15/2015 08:05:35 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,North Beach,"(37.8082633159603, -122.414972542075)",150463073-KM04 +143352148,E01,14118743,Medical Incident,12/01/2014,12/01/2014,12/01/2014 02:57:23 PM,12/01/2014 02:57:36 PM,12/01/2014 02:59:52 PM,12/01/2014 03:01:38 PM,12/01/2014 03:05:29 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Code 2 Transport,12/01/2014 03:15:02 PM,600 Block of THE EMBARCADERO,San Francisco,94111,B03,8,2134,3,3,3,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",143352148-E01 +160922076,82,16036473,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:44:35 PM,04/01/2016 02:45:16 PM,04/01/2016 02:46:33 PM,04/01/2016 02:46:49 PM,04/01/2016 02:51:36 PM,04/01/2016 03:20:09 PM,04/01/2016 03:39:51 PM,Code 2 Transport,04/01/2016 04:08:13 PM,FOLSOM ST/COLUMBIA SQUARE ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7778565371375, -122.406436335794)",160922076-82 +160922059,KM12,16036471,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:40:40 PM,04/01/2016 02:41:32 PM,04/01/2016 02:41:55 PM,04/01/2016 02:42:37 PM,04/01/2016 02:53:48 PM,04/01/2016 03:05:10 PM,04/01/2016 03:32:02 PM,Code 2 Transport,04/01/2016 04:06:30 PM,1800 Block of VICENTE ST,San Francisco,94116,B08,18,7523,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",160922059-KM12 +142142710,E07,14074304,Medical Incident,08/02/2014,08/02/2014,08/02/2014 06:50:42 PM,08/02/2014 06:51:46 PM,08/02/2014 06:52:13 PM,08/02/2014 06:54:29 PM,04/25/2016 01:15:53 PM,04/25/2016 01:15:53 PM,04/25/2016 01:15:53 PM,Patient Declined Transport,08/02/2014 06:55:26 PM,22ND ST/BRYANT ST,San Francisco,94110,B06,7,5474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7559984420071, -122.409433069774)",142142710-E07 +150162087,74,15006350,Medical Incident,01/16/2015,01/16/2015,01/16/2015 02:34:30 PM,01/16/2015 02:35:31 PM,01/16/2015 02:36:21 PM,01/16/2015 02:39:00 PM,01/16/2015 02:42:23 PM,01/16/2015 03:00:38 PM,01/16/2015 03:05:15 PM,Code 3 Transport,01/16/2015 03:34:03 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150162087-74 +160983607,89,16039102,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:40:30 PM,04/07/2016 08:42:27 PM,04/07/2016 08:42:59 PM,04/07/2016 08:43:08 PM,04/07/2016 08:55:08 PM,04/07/2016 09:18:42 PM,04/07/2016 09:28:06 PM,Code 2 Transport,04/07/2016 10:02:43 PM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8061880612091, -122.416243833913)",160983607-89 +153161157,KM08,15121374,Medical Incident,11/12/2015,11/12/2015,11/12/2015 10:00:46 AM,11/12/2015 10:00:46 AM,11/12/2015 10:03:58 AM,11/12/2015 10:04:38 AM,11/12/2015 10:17:16 AM,11/12/2015 10:34:10 AM,11/12/2015 10:42:02 AM,Code 2 Transport,11/12/2015 11:55:10 AM,POLK ST/WILLOW ST,San Francisco,94109,B02,3,3115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7835677840088, -122.419273434964)",153161157-KM08 +152521042,83,15096256,Medical Incident,09/09/2015,09/09/2015,09/09/2015 09:09:44 AM,09/09/2015 09:12:06 AM,09/09/2015 09:12:29 AM,09/09/2015 09:12:39 AM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,No Merit,09/09/2015 09:19:18 AM,2100 Block of WASHINGTON ST,San Francisco,94109,B04,38,3331,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7923752292486, -122.428636628697)",152521042-83 +161001037,66,16039688,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:46:32 AM,04/09/2016 09:48:46 AM,04/09/2016 09:49:38 AM,04/09/2016 09:49:44 AM,04/09/2016 09:58:27 AM,04/09/2016 10:23:11 AM,04/09/2016 10:28:40 AM,Code 2 Transport,04/09/2016 10:46:03 AM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7662536102334, -122.425864046062)",161001037-66 +141802612,T03,14062324,Alarms,06/29/2014,06/29/2014,06/29/2014 05:34:41 PM,06/29/2014 05:34:41 PM,06/29/2014 05:34:57 PM,06/29/2014 05:34:57 PM,06/29/2014 05:34:57 PM,04/25/2016 01:16:29 PM,04/25/2016 01:16:29 PM,Fire,06/29/2014 05:35:59 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",141802612-T03 +160930156,56,16036684,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:59:55 AM,04/02/2016 12:59:55 AM,04/02/2016 01:01:26 AM,04/02/2016 01:01:33 AM,04/02/2016 01:10:43 AM,04/02/2016 01:20:17 AM,04/02/2016 01:35:30 AM,Code 2 Transport,04/02/2016 02:10:07 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160930156-56 +153133204,63,15120419,Medical Incident,11/09/2015,11/09/2015,11/09/2015 07:50:28 PM,11/09/2015 07:50:28 PM,11/09/2015 07:52:57 PM,11/09/2015 07:53:02 PM,11/09/2015 08:04:22 PM,11/09/2015 08:12:43 PM,11/09/2015 08:29:13 PM,Code 2 Transport,11/09/2015 08:58:46 PM,1600 Block of PALOU AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7344812749194, -122.391912066975)",153133204-63 +151273418,T11,15048292,Structure Fire,05/07/2015,05/07/2015,05/07/2015 07:26:15 PM,05/07/2015 07:27:32 PM,05/07/2015 07:28:10 PM,05/07/2015 07:30:46 PM,05/07/2015 07:32:25 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Fire,05/07/2015 07:34:58 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,true,Alarm,1,TRUCK,6,6,9,Mission,"(37.7581008598273, -122.41454675379)",151273418-T11 +152781126,KM01,15106599,Medical Incident,10/05/2015,10/05/2015,10/05/2015 10:12:36 AM,10/05/2015 10:13:06 AM,10/05/2015 10:13:39 AM,10/05/2015 10:14:15 AM,10/05/2015 10:17:54 AM,10/05/2015 10:37:34 AM,10/05/2015 10:45:50 AM,Code 2 Transport,10/05/2015 11:22:33 AM,400 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",152781126-KM01 +152780317,70,15106505,Medical Incident,10/05/2015,10/04/2015,10/05/2015 03:36:17 AM,10/05/2015 03:40:08 AM,10/05/2015 03:41:23 AM,10/05/2015 03:42:12 AM,10/05/2015 03:53:22 AM,04/25/2016 01:07:57 PM,04/25/2016 01:07:57 PM,Gone on Arrival,10/05/2015 03:54:25 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",152780317-70 +143553043,75,14127020,Traffic Collision,12/21/2014,12/21/2014,12/21/2014 05:59:15 PM,12/21/2014 05:59:15 PM,12/21/2014 06:16:13 PM,12/21/2014 06:16:23 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Other,12/21/2014 06:17:18 PM,ALEMANY BL/SICKLES AV,San Francisco,94112,B09,33,8371,2,2,2,true,Non Life-threatening,1,MEDIC,6,9,11,Outer Mission,"(37.7106966624975, -122.455157828365)",143553043-75 +152121202,AM02,15080694,Medical Incident,07/31/2015,07/31/2015,07/31/2015 10:41:23 AM,07/31/2015 10:41:23 AM,07/31/2015 10:41:45 AM,07/31/2015 10:42:54 AM,07/31/2015 10:45:46 AM,07/31/2015 10:52:45 AM,07/31/2015 11:11:45 AM,Code 2 Transport,07/31/2015 12:00:26 PM,SANCHEZ ST/17TH ST,San Francisco,94114,B05,6,5252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,8,Castro/Upper Market,"(37.7627526712607, -122.430726724513)",152121202-AM02 +152823855,E03,15108441,Medical Incident,10/09/2015,10/09/2015,10/09/2015 09:53:14 PM,10/09/2015 09:54:59 PM,10/09/2015 09:56:37 PM,10/09/2015 09:56:37 PM,10/09/2015 09:56:37 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,No Merit,10/09/2015 10:04:39 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",152823855-E03 +152791394,RS1,15107013,Medical Incident,10/06/2015,10/06/2015,10/06/2015 11:22:25 AM,10/06/2015 11:22:49 AM,10/06/2015 11:23:11 AM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Patient Declined Transport,10/06/2015 11:24:00 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",152791394-RS1 +150462411,KM06,15017975,Medical Incident,02/15/2015,02/15/2015,02/15/2015 04:01:33 PM,02/15/2015 04:01:33 PM,02/15/2015 04:06:08 PM,02/15/2015 04:09:43 PM,02/15/2015 04:31:06 PM,02/15/2015 04:31:10 PM,02/15/2015 04:37:49 PM,Code 2 Transport,02/15/2015 05:18:05 PM,CYRIL MAGNIN ST/OFARRELL ST,San Francisco,94102,B01,1,1363,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",150462411-KM06 +160972032,71,16038425,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:04:19 PM,04/06/2016 01:06:29 PM,04/06/2016 01:08:53 PM,04/06/2016 01:09:28 PM,04/06/2016 01:10:38 PM,04/06/2016 01:33:07 PM,04/06/2016 01:55:18 PM,Code 2 Transport,04/06/2016 02:18:31 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160972032-71 +160981824,72,16038910,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:30:23 PM,04/07/2016 12:31:11 PM,04/07/2016 12:32:09 PM,04/07/2016 12:32:19 PM,04/07/2016 12:37:53 PM,04/07/2016 12:44:15 PM,04/07/2016 01:18:09 PM,Code 2 Transport,04/07/2016 01:42:18 PM,18TH ST/DOLORES ST,San Francisco,94110,B02,7,5422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.761427134441, -122.426076501845)",160981824-72 +141580544,68,14054329,Citizen Assist / Service Call,06/07/2014,06/06/2014,06/07/2014 06:27:04 AM,06/07/2014 06:28:45 AM,06/07/2014 06:40:50 AM,06/07/2014 06:43:29 AM,06/07/2014 06:52:03 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Patient Declined Transport,06/07/2014 07:34:45 AM,300 Block of GRANT AVE,San Francisco,94108,B01,13,1315,3,3,3,true,Alarm,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7898465521571, -122.405516597507)",141580544-68 +142894127,E08,14102064,Medical Incident,10/16/2014,10/16/2014,10/16/2014 11:12:36 PM,10/16/2014 11:13:24 PM,10/16/2014 11:15:28 PM,10/16/2014 11:15:28 PM,10/16/2014 11:17:57 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/16/2014 11:18:48 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",142894127-E08 +151081970,65,15040924,Medical Incident,04/18/2015,04/18/2015,04/18/2015 02:43:10 PM,04/18/2015 02:43:10 PM,04/18/2015 02:45:01 PM,04/18/2015 02:45:16 PM,04/18/2015 02:52:23 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Patient Declined Transport,04/18/2015 03:50:28 PM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6116,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7242679564906, -122.435032247159)",151081970-65 +160981234,KM13,16038848,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:56:15 AM,04/07/2016 09:58:46 AM,04/07/2016 09:59:17 AM,04/07/2016 10:00:29 AM,04/07/2016 10:16:18 AM,04/07/2016 10:46:50 AM,04/07/2016 11:20:13 AM,Code 2 Transport,04/07/2016 11:51:58 AM,0 Block of HOWTH ST,San Francisco,94112,B09,15,8314,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.722497260146, -122.449776721981)",160981234-KM13 +151914278,64,15073087,Medical Incident,07/10/2015,07/10/2015,07/10/2015 11:37:05 PM,07/10/2015 11:39:20 PM,07/11/2015 12:01:02 AM,07/11/2015 12:01:52 AM,07/11/2015 12:10:35 AM,07/11/2015 12:22:20 AM,07/11/2015 12:41:30 AM,Code 2 Transport,07/11/2015 01:10:04 AM,1800 Block of MARKET ST,San Francisco,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Hayes Valley,"(37.7717810622866, -122.423715048532)",151914278-64 +152933634,61,15112733,Medical Incident,10/20/2015,10/20/2015,10/20/2015 08:28:52 PM,10/20/2015 08:30:21 PM,10/20/2015 08:31:14 PM,10/20/2015 08:31:34 PM,10/20/2015 08:43:26 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,No Merit,10/20/2015 08:48:12 PM,STEINER ST/HERMANN ST,San Francisco,94117,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7700348593472, -122.431717011702)",152933634-61 +142481063,RC1,14086359,Traffic Collision,09/05/2014,09/05/2014,09/05/2014 09:50:51 AM,09/05/2014 09:51:19 AM,09/05/2014 09:52:12 AM,09/05/2014 09:52:12 AM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,Patient Declined Transport,09/05/2014 09:56:43 AM,CALIFORNIA ST/SANSOME ST,San Francisco,94104,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7930602991213, -122.401126343901)",142481063-RC1 +152233430,83,15085118,Medical Incident,08/11/2015,08/11/2015,08/11/2015 07:24:08 PM,08/11/2015 07:24:38 PM,08/11/2015 07:24:57 PM,08/11/2015 07:25:08 PM,08/11/2015 07:27:10 PM,08/11/2015 07:59:39 PM,08/11/2015 08:18:07 PM,Code 2 Transport,08/11/2015 08:30:56 PM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7941136505366, -122.407046655058)",152233430-83 +151432343,70,15054451,Medical Incident,05/23/2015,05/23/2015,05/23/2015 04:18:12 PM,05/23/2015 04:19:17 PM,05/23/2015 04:19:32 PM,05/23/2015 04:20:29 PM,05/23/2015 04:25:19 PM,05/23/2015 04:39:54 PM,05/23/2015 04:58:58 PM,Code 3 Transport,05/23/2015 05:45:02 PM,3300 Block of DIVISADERO ST,San Francisco,94123,B04,16,4211,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.800434371856, -122.443008701026)",151432343-70 +142190778,E43,14075896,Medical Incident,08/07/2014,08/07/2014,08/07/2014 08:29:00 AM,08/07/2014 08:30:21 AM,08/07/2014 08:30:40 AM,08/07/2014 08:31:54 AM,08/07/2014 08:35:17 AM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,Code 3 Transport,08/07/2014 08:46:17 AM,0 Block of KNOTT CT,San Francisco,94112,B09,43,6231,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7090597470935, -122.441217055674)",142190778-E43 +152711749,E01,15103793,Structure Fire,09/28/2015,09/28/2015,09/28/2015 12:49:29 PM,09/28/2015 12:49:56 PM,09/28/2015 12:50:36 PM,09/28/2015 12:51:06 PM,09/28/2015 12:52:48 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Fire,09/28/2015 01:09:44 PM,0 Block of STOCKTON ST,San Francisco,94102,B03,1,1322,3,3,3,true,Alarm,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7860199001268, -122.406349577387)",152711749-E01 +160950466,79,16037522,Medical Incident,04/04/2016,04/03/2016,04/04/2016 06:37:06 AM,04/04/2016 06:37:06 AM,04/04/2016 06:37:32 AM,04/04/2016 06:37:40 AM,04/04/2016 06:44:53 AM,04/04/2016 06:54:06 AM,04/04/2016 07:14:27 AM,Code 2 Transport,04/04/2016 07:38:17 AM,400 Block of RHODE ISLAND ST,San Francisco,94107,B02,29,2422,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Potrero Hill,"(37.7641381616864, -122.402572368613)",160950466-79 +151523041,RC1,15058004,Medical Incident,06/01/2015,06/01/2015,06/01/2015 07:08:22 PM,06/01/2015 07:08:22 PM,06/01/2015 07:09:25 PM,06/01/2015 07:09:25 PM,06/01/2015 07:16:55 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Code 2 Transport,06/01/2015 07:30:17 PM,0 Block of BEACH ST,San Francisco,94133,B04,28,939,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",151523041-RC1 +152561812,E06,15097917,Alarms,09/13/2015,09/13/2015,09/13/2015 01:36:50 PM,09/13/2015 01:38:23 PM,09/13/2015 01:38:35 PM,09/13/2015 01:39:12 PM,09/13/2015 01:42:22 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,Fire,09/13/2015 01:50:11 PM,0 Block of DOLORES ST,San Francisco,94114,B02,6,5127,3,3,3,true,Alarm,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7684403182059, -122.426904863087)",152561812-E06 +141320145,B10,14044776,Structure Fire,05/12/2014,05/11/2014,05/12/2014 01:43:34 AM,05/12/2014 01:43:34 AM,05/12/2014 01:44:40 AM,05/12/2014 01:46:56 AM,05/12/2014 01:49:51 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Fire,05/12/2014 01:51:37 AM,2400 Block of 22ND ST,San Francisco,94110,B10,37,2551,3,3,3,false,Alarm,1,CHIEF,2,10,10,Potrero Hill,"(37.7569910867324, -122.405001139718)",141320145-B10 +151601900,E03,15061160,Medical Incident,06/09/2015,06/09/2015,06/09/2015 01:13:34 PM,06/09/2015 01:16:04 PM,06/09/2015 01:16:23 PM,06/09/2015 01:16:32 PM,06/09/2015 01:18:26 PM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Code 2 Transport,06/09/2015 01:20:03 PM,GOLDEN GATE AV/HYDE ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",151601900-E03 +142132494,E03,14073919,Structure Fire,08/01/2014,08/01/2014,08/01/2014 05:14:04 PM,08/01/2014 05:14:04 PM,08/01/2014 05:15:14 PM,08/01/2014 05:16:12 PM,08/01/2014 05:18:14 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Fire,08/01/2014 05:18:37 PM,TURK ST/HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",142132494-E03 +151221453,T09,15046252,Alarms,05/02/2015,05/02/2015,05/02/2015 12:08:51 PM,05/02/2015 12:09:54 PM,05/02/2015 12:10:20 PM,05/02/2015 12:14:07 PM,05/02/2015 12:16:49 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Fire,05/02/2015 12:24:03 PM,1000 Block of EVANS AV,San Francisco,94124,B10,25,6555,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7364596123052, -122.376840481121)",151221453-T09 +143562391,71,14127422,Medical Incident,12/22/2014,12/22/2014,12/22/2014 03:42:12 PM,12/22/2014 03:42:12 PM,12/22/2014 03:43:13 PM,12/22/2014 03:43:13 PM,12/22/2014 04:00:18 PM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,Patient Declined Transport,12/22/2014 04:32:57 PM,400 Block of ARBALLO DR,San Francisco,94132,B08,19,8583,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7194483276503, -122.483012514362)",143562391-71 +160954184,82,16037839,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:55:33 PM,04/04/2016 11:58:00 PM,04/05/2016 12:00:21 AM,04/05/2016 12:00:21 AM,04/05/2016 12:04:52 AM,04/05/2016 01:09:06 AM,04/05/2016 01:09:09 AM,Code 2 Transport,04/05/2016 01:39:48 AM,900 Block of SLOAT BLVD,San Francisco,94132,B08,19,7464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7345788586597, -122.481780926329)",160954184-82 +141020003,94,14034281,Medical Incident,04/12/2014,04/11/2014,04/12/2014 12:02:45 AM,04/12/2014 12:04:23 AM,04/12/2014 12:17:55 AM,04/12/2014 12:18:00 AM,04/25/2016 01:17:56 PM,04/25/2016 01:17:56 PM,04/25/2016 01:17:56 PM,No Merit,04/12/2014 12:18:05 AM,500 Block of MARKET ST,,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",141020003-94 +160923430,52,16036604,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 08:52:21 PM,04/01/2016 08:52:21 PM,04/01/2016 08:52:43 PM,04/01/2016 08:53:03 PM,04/01/2016 09:12:01 PM,04/01/2016 09:13:39 PM,04/01/2016 09:23:11 PM,Code 3 Transport,04/01/2016 10:18:21 PM,19TH AV/WINSTON DR,San Francisco,94132,B08,19,8725,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Lakeshore,"(37.7269907019127, -122.474900344293)",160923430-52 +141170219,93,14039536,Medical Incident,04/27/2014,04/27/2014,04/27/2014 03:20:27 PM,04/27/2014 03:21:51 PM,04/27/2014 03:23:20 PM,04/27/2014 03:23:20 PM,04/27/2014 03:26:03 PM,04/27/2014 03:43:52 PM,04/27/2014 03:56:52 PM,Code 2 Transport,04/27/2014 04:28:22 PM,1200 Block of NOE ST,,94114,B06,11,554,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7494248005842, -122.43174723)",141170219-93 +153173315,KM04,15121983,Medical Incident,11/13/2015,11/13/2015,11/13/2015 06:37:21 PM,11/13/2015 06:37:21 PM,11/13/2015 06:37:43 PM,11/13/2015 06:38:33 PM,11/13/2015 07:22:15 PM,04/25/2016 01:07:13 PM,04/25/2016 01:07:13 PM,Patient Declined Transport,11/13/2015 07:41:26 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",153173315-KM04 +151741319,FB1,15066352,Water Rescue,06/23/2015,06/23/2015,06/23/2015 10:55:46 AM,06/23/2015 10:58:31 AM,06/23/2015 11:01:04 AM,06/23/2015 11:05:22 AM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Fire,06/23/2015 11:24:00 AM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,SUPPORT,8,7,2,Presidio,"(37.8066581989584, -122.47471662098)",151741319-FB1 +160992533,85,16039386,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:23:40 PM,04/08/2016 04:26:56 PM,04/08/2016 04:28:07 PM,04/08/2016 04:28:23 PM,04/08/2016 04:52:36 PM,04/08/2016 05:07:29 PM,04/08/2016 05:29:36 PM,Code 2 Transport,04/08/2016 05:50:15 PM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.795777854883, -122.404981817889)",160992533-85 +160973330,67,16038571,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:36:53 PM,04/06/2016 05:38:45 PM,04/06/2016 05:39:33 PM,04/06/2016 05:39:37 PM,04/06/2016 05:54:00 PM,04/06/2016 05:54:02 PM,04/06/2016 06:31:38 PM,Code 2 Transport,04/06/2016 07:02:41 PM,24TH ST/YORK ST,San Francisco,94110,B06,9,5531,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",160973330-67 +151963831,71,15074933,Medical Incident,07/15/2015,07/15/2015,07/15/2015 11:10:56 PM,07/15/2015 11:12:39 PM,07/15/2015 11:13:20 PM,07/15/2015 11:15:24 PM,07/15/2015 11:37:22 PM,07/15/2015 11:45:53 PM,07/16/2015 12:03:04 AM,Code 2 Transport,07/16/2015 12:34:45 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",151963831-71 +153103583,AM18,15119331,Medical Incident,11/06/2015,11/06/2015,11/06/2015 09:08:11 PM,11/06/2015 09:08:11 PM,11/06/2015 09:10:00 PM,11/06/2015 09:10:37 PM,11/06/2015 09:21:54 PM,11/06/2015 09:33:29 PM,11/06/2015 09:44:58 PM,Code 3 Transport,11/06/2015 10:25:41 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850960963906, -122.41275875924)",153103583-AM18 +142600073,67,14090698,Medical Incident,09/17/2014,09/16/2014,09/17/2014 12:32:42 AM,09/17/2014 12:33:24 AM,09/17/2014 12:33:56 AM,09/17/2014 12:34:09 AM,09/17/2014 12:48:28 AM,09/17/2014 01:07:55 AM,09/17/2014 01:20:28 AM,Code 2 Transport,09/17/2014 02:16:38 AM,100 Block of BRITTON ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",142600073-67 +151201695,70,15045376,Medical Incident,04/30/2015,04/30/2015,04/30/2015 12:26:08 PM,04/30/2015 12:27:52 PM,04/30/2015 12:28:05 PM,04/30/2015 12:28:37 PM,04/30/2015 12:35:37 PM,04/30/2015 12:45:44 PM,04/30/2015 01:11:52 PM,Code 2 Transport,04/30/2015 01:44:05 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",151201695-70 +151151609,E19,15043461,Medical Incident,04/25/2015,04/25/2015,04/25/2015 12:34:15 PM,04/25/2015 12:34:56 PM,04/25/2015 12:35:19 PM,04/25/2015 12:36:12 PM,04/25/2015 12:41:12 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Code 2 Transport,04/25/2015 12:55:09 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",151151609-E19 +161001796,AM08,16039784,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:06:49 PM,04/09/2016 02:08:58 PM,04/09/2016 02:16:35 PM,04/09/2016 02:16:55 PM,04/09/2016 02:29:04 PM,04/09/2016 02:41:47 PM,04/09/2016 03:00:28 PM,Code 2 Transport,04/09/2016 03:27:45 PM,1300 Block of SANSOME ST,San Francisco,94133,B01,13,1215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8026239738402, -122.403135013446)",161001796-AM08 +160991917,KM09,16039322,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:03:02 PM,04/08/2016 02:03:02 PM,04/08/2016 02:06:28 PM,04/08/2016 02:06:51 PM,04/08/2016 02:17:24 PM,04/08/2016 02:43:10 PM,04/08/2016 02:53:14 PM,Code 2 Transport,04/08/2016 03:43:42 PM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",160991917-KM09 +141383551,T03,14047466,Structure Fire,05/18/2014,05/18/2014,05/18/2014 09:42:32 PM,05/18/2014 09:42:32 PM,05/18/2014 09:43:08 PM,05/18/2014 09:44:14 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Fire,05/18/2014 09:44:52 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",141383551-T03 +143031642,E01,14107081,Medical Incident,10/30/2014,10/30/2014,10/30/2014 10:57:04 AM,10/30/2014 10:57:53 AM,10/30/2014 10:58:11 AM,10/30/2014 10:59:35 AM,10/30/2014 11:01:19 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Code 2 Transport,10/30/2014 11:17:12 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",143031642-E01 +143082410,KM03,14109065,Medical Incident,11/04/2014,11/04/2014,11/04/2014 03:58:13 PM,11/04/2014 03:59:59 PM,11/04/2014 04:00:17 PM,11/04/2014 04:01:17 PM,11/04/2014 04:07:23 PM,11/04/2014 04:29:32 PM,11/04/2014 05:05:15 PM,Code 2 Transport,11/04/2014 05:20:13 PM,700 Block of 26TH AVE,San Francisco,94121,B07,14,7212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7753169384302, -122.485533881344)",143082410-KM03 +151633973,E23,15062536,Structure Fire,06/12/2015,06/12/2015,06/12/2015 11:24:48 PM,06/12/2015 11:24:48 PM,06/12/2015 11:25:27 PM,06/12/2015 11:27:22 PM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,Fire,06/12/2015 11:31:22 PM,47TH AV/SANTIAGO ST,San Francisco,94116,B08,23,7713,3,3,3,false,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7435956339816, -122.505823809302)",151633973-E23 +143512750,E12,14125457,Medical Incident,12/17/2014,12/17/2014,12/17/2014 04:48:36 PM,12/17/2014 04:50:36 PM,12/17/2014 04:59:47 PM,12/17/2014 05:00:21 PM,12/17/2014 05:05:10 PM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Code 2 Transport,12/17/2014 05:18:43 PM,1600 Block of 18TH AVE,San Francisco,94122,B08,22,7372,2,2,2,true,Non Life-threatening,1,ENGINE,3,8,7,Inner Sunset,"(37.7570874474527, -122.475532216876)",143512750-E12 +160931917,71,16036884,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:55:06 PM,04/02/2016 01:55:06 PM,04/02/2016 02:03:16 PM,04/02/2016 02:03:42 PM,04/02/2016 02:10:29 PM,04/02/2016 02:22:24 PM,04/02/2016 02:41:08 PM,Code 2 Transport,04/02/2016 03:08:38 PM,MARKET ST/SPEAR ST,San Francisco,94105,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",160931917-71 +151381412,RC3,15052393,Citizen Assist / Service Call,05/18/2015,05/18/2015,05/18/2015 11:42:26 AM,05/18/2015 11:43:49 AM,05/18/2015 11:56:37 AM,05/18/2015 11:56:37 AM,05/18/2015 12:16:07 PM,04/25/2016 01:10:32 PM,04/25/2016 01:10:32 PM,Fire,05/18/2015 01:53:42 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",151381412-RC3 +160980234,62,16038746,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:52:39 AM,04/07/2016 01:52:39 AM,04/07/2016 01:53:09 AM,04/07/2016 01:53:19 AM,04/07/2016 01:57:59 AM,04/07/2016 02:15:10 AM,04/07/2016 02:42:14 AM,Code 2 Transport,04/07/2016 03:09:23 AM,100 Block of SADOWA ST,San Francisco,94112,B09,33,8371,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7122527739995, -122.457529574669)",160980234-62 +150561358,AM04,15021390,Medical Incident,02/25/2015,02/25/2015,02/25/2015 11:02:51 AM,02/25/2015 11:04:25 AM,02/25/2015 11:04:32 AM,02/25/2015 11:05:30 AM,02/25/2015 11:15:35 AM,02/25/2015 11:35:03 AM,02/25/2015 11:47:22 AM,Code 2 Transport,02/25/2015 12:25:44 PM,100 Block of GREENWICH ST,San Francisco,94111,B01,13,1215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,Financial District/South Beach,"(37.8032232984304, -122.402580474667)",150561358-AM04 +160981829,59,16038912,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:31:05 PM,04/07/2016 12:32:18 PM,04/07/2016 12:33:47 PM,04/07/2016 12:33:58 PM,04/07/2016 12:43:30 PM,04/07/2016 01:01:24 PM,04/07/2016 01:26:00 PM,Code 2 Transport,04/07/2016 02:04:37 PM,500 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1334,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7999440400543, -122.409564939064)",160981829-59 +153342064,E01,15128448,Medical Incident,11/30/2015,11/30/2015,11/30/2015 02:45:16 PM,11/30/2015 02:46:00 PM,11/30/2015 02:46:24 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Code 2 Transport,11/30/2015 02:47:43 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7734664897325, -122.413546904215)",153342064-E01 +160942827,KM02,16037366,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:57:49 PM,04/03/2016 05:58:11 PM,04/03/2016 05:58:43 PM,04/03/2016 05:59:26 PM,04/03/2016 06:00:52 PM,04/03/2016 06:20:27 PM,04/03/2016 06:33:23 PM,Code 2 Transport,04/03/2016 07:08:26 PM,1300 Block of 30TH AVE,San Francisco,94122,B08,23,7536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7621150161966, -122.488775364037)",160942827-KM02 +160931255,KM09,16036804,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:45:16 AM,04/02/2016 10:46:30 AM,04/02/2016 10:46:43 AM,04/02/2016 10:47:30 AM,04/02/2016 10:49:39 AM,04/02/2016 11:23:25 AM,04/02/2016 11:30:32 AM,Code 2 Transport,04/02/2016 12:15:38 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160931255-KM09 +151020661,E38,15038478,Medical Incident,04/12/2015,04/11/2015,04/12/2015 07:04:04 AM,04/12/2015 07:05:14 AM,04/12/2015 07:05:38 AM,04/12/2015 07:06:55 AM,04/12/2015 07:06:55 AM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Code 2 Transport,04/12/2015 07:18:07 AM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",151020661-E38 +160973587,AM20,16038607,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:32:47 PM,04/06/2016 06:34:26 PM,04/06/2016 07:05:33 PM,04/06/2016 07:07:05 PM,04/06/2016 07:12:12 PM,04/06/2016 07:22:50 PM,04/06/2016 07:37:46 PM,Code 2 Transport,04/06/2016 08:12:52 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,3,3,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160973587-AM20 +141750322,E07,14060248,Citizen Assist / Service Call,06/24/2014,06/23/2014,06/24/2014 04:57:17 AM,06/24/2014 05:00:13 AM,06/24/2014 05:02:25 AM,06/24/2014 05:06:07 AM,06/24/2014 05:16:39 AM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,No Merit,06/24/2014 05:16:46 AM,0 Block of LIBERTY ST,San Francisco,94110,B06,7,5456,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7575809773167, -122.422275311384)",141750322-E07 +151240400,E42,15046893,Medical Incident,05/04/2015,05/03/2015,05/04/2015 06:15:50 AM,05/04/2015 06:15:50 AM,05/04/2015 06:16:42 AM,05/04/2015 06:18:36 AM,05/04/2015 06:21:20 AM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Code 2 Transport,05/04/2015 06:28:28 AM,CRESCENT AV/ANDOVER ST,San Francisco,94110,B06,32,5751,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7348882820501, -122.416823586096)",151240400-E42 +150382374,79,15014834,Medical Incident,02/07/2015,02/07/2015,02/07/2015 03:49:14 PM,02/07/2015 03:50:47 PM,02/07/2015 03:52:47 PM,02/07/2015 03:52:47 PM,02/07/2015 03:59:51 PM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Unable to Locate,02/07/2015 04:08:40 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",150382374-79 +161000049,76,16039553,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:16:14 AM,04/09/2016 12:16:14 AM,04/09/2016 12:17:14 AM,04/09/2016 12:17:21 AM,04/09/2016 12:21:38 AM,04/09/2016 12:30:22 AM,04/09/2016 12:52:10 AM,Code 2 Transport,04/09/2016 01:01:38 AM,200 Block of TOWNSEND ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.778367882018, -122.393460595106)",161000049-76 +143543208,71,14126589,Medical Incident,12/20/2014,12/20/2014,12/20/2014 04:26:26 PM,12/20/2014 04:28:46 PM,12/20/2014 04:30:02 PM,12/20/2014 04:30:13 PM,12/20/2014 04:49:08 PM,12/20/2014 04:58:14 PM,12/20/2014 05:20:05 PM,Code 2 Transport,12/20/2014 05:48:54 PM,9TH ST/HOWARD ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",143543208-71 +153363410,E36,15129369,Medical Incident,12/02/2015,12/02/2015,12/02/2015 07:17:16 PM,12/02/2015 07:19:39 PM,12/02/2015 07:24:00 PM,12/02/2015 07:26:22 PM,12/02/2015 07:32:05 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Code 2 Transport,12/02/2015 07:41:52 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",153363410-E36 +160981668,70,16038899,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:57:25 AM,04/07/2016 11:58:20 AM,04/07/2016 12:07:21 PM,04/07/2016 12:07:31 PM,04/07/2016 12:13:57 PM,04/07/2016 12:36:28 PM,04/07/2016 01:06:36 PM,Code 2 Transport,04/07/2016 01:56:14 PM,0 Block of WESTBROOK CT,San Francisco,94124,B10,17,6624,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7350385061864, -122.382425286055)",160981668-70 +151570214,E06,15059776,Medical Incident,06/06/2015,06/05/2015,06/06/2015 01:31:15 AM,06/06/2015 01:31:29 AM,06/06/2015 01:33:22 AM,06/06/2015 01:33:22 AM,06/06/2015 01:33:22 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,No Merit,06/06/2015 01:38:10 AM,100 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7671998905043, -122.431083812685)",151570214-E06 +150561307,T03,15021384,Medical Incident,02/25/2015,02/25/2015,02/25/2015 10:47:07 AM,02/25/2015 10:49:04 AM,02/25/2015 10:49:47 AM,02/25/2015 10:50:16 AM,02/25/2015 10:53:05 AM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Code 2 Transport,02/25/2015 11:05:09 AM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",150561307-T03 +151101410,E01,15041578,Medical Incident,04/20/2015,04/20/2015,04/20/2015 11:05:58 AM,04/20/2015 11:07:54 AM,04/20/2015 11:10:54 AM,04/20/2015 11:10:54 AM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,Code 2 Transport,04/20/2015 11:11:14 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",151101410-E01 +160923206,53,16036579,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:25:26 PM,04/01/2016 07:28:22 PM,04/01/2016 07:29:12 PM,04/01/2016 07:29:19 PM,04/01/2016 07:45:36 PM,04/01/2016 08:01:12 PM,04/01/2016 08:24:06 PM,Code 2 Transport,04/01/2016 08:58:24 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160923206-53 +151660885,E03,15063405,Medical Incident,06/15/2015,06/15/2015,06/15/2015 09:14:44 AM,06/15/2015 09:15:50 AM,06/15/2015 09:16:57 AM,06/15/2015 09:18:21 AM,06/15/2015 09:21:15 AM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,No Merit,06/15/2015 09:23:23 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",151660885-E03 +150270375,77,15010279,Medical Incident,01/27/2015,01/26/2015,01/27/2015 05:32:49 AM,01/27/2015 05:33:44 AM,01/27/2015 05:34:12 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Code 2 Transport,01/27/2015 05:34:25 AM,500 Block of HOLLOWAY AVE,San Francisco,94112,B09,15,8473,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,7,Oceanview/Merced/Ingleside,"(37.721893819474, -122.45869403555)",150270375-77 +141922513,KM04,14066640,Medical Incident,07/11/2014,07/11/2014,07/11/2014 04:53:56 PM,07/11/2014 04:54:45 PM,07/11/2014 04:55:49 PM,07/11/2014 04:56:34 PM,07/11/2014 04:56:52 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,No Merit,07/11/2014 05:23:37 PM,CESAR CHAVEZ ST/BAYSHORE BL,San Francisco,94110,B10,9,2626,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7489710482463, -122.405626953003)",141922513-KM04 +153410022,E40,15131038,Medical Incident,12/07/2015,12/06/2015,12/07/2015 12:06:46 AM,12/07/2015 12:09:04 AM,12/07/2015 12:09:16 AM,12/07/2015 12:11:08 AM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,No Merit,12/07/2015 12:14:00 AM,400 Block of TARAVAL ST,San Francisco,94116,B08,40,7355,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7432097244373, -122.47079205885)",153410022-E40 +151661891,E07,15063497,Medical Incident,06/15/2015,06/15/2015,06/15/2015 01:53:09 PM,06/15/2015 01:53:09 PM,06/15/2015 01:54:03 PM,06/15/2015 01:55:11 PM,06/15/2015 01:56:42 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/15/2015 02:06:40 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",151661891-E07 +151690487,E41,15064499,Medical Incident,06/18/2015,06/17/2015,06/18/2015 06:33:50 AM,06/18/2015 06:34:22 AM,06/18/2015 06:34:32 AM,06/18/2015 06:36:15 AM,06/18/2015 06:37:21 AM,04/25/2016 01:09:56 PM,04/25/2016 01:09:56 PM,Code 3 Transport,06/18/2015 06:48:21 AM,1400 Block of CLAY ST,San Francisco,94109,B01,41,1536,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7928543973029, -122.416925086375)",151690487-E41 +141492171,E08,14051232,Medical Incident,05/29/2014,05/29/2014,05/29/2014 03:17:49 PM,05/29/2014 03:19:47 PM,05/29/2014 03:20:37 PM,05/29/2014 03:22:16 PM,05/29/2014 03:24:28 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Code 2 Transport,05/29/2014 03:30:52 PM,400 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7781649349602, -122.40085398952)",141492171-E08 +152902406,RC3,15111479,Medical Incident,10/17/2015,10/17/2015,10/17/2015 03:51:41 PM,10/17/2015 03:51:41 PM,10/17/2015 03:52:09 PM,10/17/2015 03:53:32 PM,10/17/2015 03:58:32 PM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Code 3 Transport,10/17/2015 04:35:28 PM,15TH ST/JULIAN AV,San Francisco,94103,B02,36,5279,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,9,Mission,"(37.7665992188639, -122.421056630869)",152902406-RC3 +141060021,E19,14035617,Medical Incident,04/16/2014,04/15/2014,04/16/2014 02:00:44 AM,04/16/2014 02:01:54 AM,04/16/2014 02:02:17 AM,04/16/2014 02:04:07 AM,04/16/2014 02:07:58 AM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,Code 2 Transport,04/16/2014 02:18:27 AM,0 Block of CAMBON DR,SAN FRANCISCO,94132,B08,19,8428,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7183176082845, -122.474447191909)",141060021-E19 +150683386,E28,15026121,Structure Fire,03/09/2015,03/09/2015,03/09/2015 07:29:10 PM,03/09/2015 07:31:26 PM,03/09/2015 07:32:18 PM,03/09/2015 07:33:16 PM,03/09/2015 07:35:33 PM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Fire,03/09/2015 07:53:56 PM,1000 Block of BROADWAY,San Francisco,94133,B01,2,1442,3,3,3,false,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7968985022629, -122.413996618846)",150683386-E28 +142162944,E43,14075023,Alarms,08/04/2014,08/04/2014,08/04/2014 07:14:32 PM,08/04/2014 07:15:46 PM,08/04/2014 07:15:55 PM,08/04/2014 07:17:36 PM,08/04/2014 07:20:05 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Fire,08/04/2014 07:23:30 PM,100 Block of VIENNA ST,San Francisco,94112,B09,43,6154,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7259579894266, -122.426381529611)",142162944-E43 +151893148,E17,15072285,Medical Incident,07/08/2015,07/08/2015,07/08/2015 06:23:57 PM,07/08/2015 06:24:09 PM,07/08/2015 06:25:00 PM,07/08/2015 06:27:23 PM,07/08/2015 06:30:07 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Code 2 Transport,07/08/2015 06:35:05 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",151893148-E17 +152671694,E28,15102259,Medical Incident,09/24/2015,09/24/2015,09/24/2015 12:00:50 PM,09/24/2015 12:03:03 PM,09/24/2015 12:05:30 PM,09/24/2015 12:06:55 PM,09/24/2015 12:13:18 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,No Merit,09/24/2015 12:30:24 PM,500 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",152671694-E28 +150210014,77,15008046,Medical Incident,01/21/2015,01/20/2015,01/21/2015 12:04:34 AM,01/21/2015 12:05:22 AM,01/21/2015 12:06:53 AM,01/21/2015 12:07:10 AM,01/21/2015 12:18:00 AM,01/21/2015 12:27:49 AM,01/21/2015 12:32:56 AM,Code 2 Transport,01/21/2015 01:05:04 AM,2500 Block of MARKET ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7619045858198, -122.436729883001)",150210014-77 +150043048,KM15,15001621,Medical Incident,01/04/2015,01/04/2015,01/04/2015 09:02:11 PM,01/04/2015 09:02:49 PM,01/04/2015 09:12:26 PM,01/04/2015 09:13:21 PM,01/04/2015 09:22:46 PM,01/04/2015 09:52:47 PM,01/04/2015 09:59:08 PM,Code 2 Transport,01/04/2015 10:37:56 PM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",150043048-KM15 +143281028,RC1,14116212,Medical Incident,11/24/2014,11/24/2014,11/24/2014 09:25:15 AM,11/24/2014 09:27:07 AM,11/24/2014 09:31:57 AM,11/24/2014 09:31:57 AM,11/24/2014 09:35:48 AM,11/24/2014 09:42:24 AM,11/24/2014 10:02:14 AM,Code 2 Transport,11/24/2014 10:18:49 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143281028-RC1 +160923185,AM12,16036575,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:23:28 PM,04/01/2016 07:23:28 PM,04/01/2016 07:24:35 PM,04/01/2016 07:24:35 PM,04/01/2016 07:24:56 PM,04/01/2016 07:44:28 PM,04/01/2016 08:00:59 PM,Code 2 Transport,04/01/2016 08:26:19 PM,MISSION ST/7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160923185-AM12 +153021818,AR1,15115836,Administrative,10/29/2015,10/29/2015,10/29/2015 12:43:45 PM,10/29/2015 12:44:03 PM,10/29/2015 12:44:42 PM,10/29/2015 12:51:12 PM,10/29/2015 12:51:12 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/29/2015 12:51:31 PM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,3,3,3,false,,1,INVESTIGATION,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",153021818-AR1 +142912030,E36,14102663,Medical Incident,10/18/2014,10/18/2014,10/18/2014 02:22:35 PM,10/18/2014 02:22:56 PM,10/18/2014 02:23:13 PM,10/18/2014 02:23:36 PM,10/18/2014 02:26:02 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Code 2 Transport,10/18/2014 02:38:37 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",142912030-E36 +152053652,E07,15078254,Medical Incident,07/24/2015,07/24/2015,07/24/2015 08:55:25 PM,07/24/2015 08:55:44 PM,07/24/2015 08:56:22 PM,07/24/2015 08:56:33 PM,07/24/2015 08:58:46 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Code 2 Transport,07/24/2015 09:10:01 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.769082767924, -122.413353472663)",152053652-E07 +141641347,88,14056504,Medical Incident,06/13/2014,06/13/2014,06/13/2014 11:37:58 AM,06/13/2014 11:39:29 AM,06/13/2014 11:41:09 AM,06/13/2014 11:43:31 AM,06/13/2014 11:53:19 AM,06/13/2014 12:11:01 PM,06/13/2014 12:33:23 PM,Code 2 Transport,06/13/2014 01:14:05 PM,100 Block of KING ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",141641347-88 +143163630,82,14112075,Medical Incident,11/12/2014,11/12/2014,11/12/2014 09:37:18 PM,11/12/2014 09:39:59 PM,11/12/2014 09:40:42 PM,11/12/2014 09:41:05 PM,11/12/2014 09:42:53 PM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Fire,11/12/2014 09:55:46 PM,0 Block of FLORENTINE AVE,San Francisco,94112,B09,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7126535594539, -122.443570221099)",143163630-82 +151441982,E07,15054803,Traffic Collision,05/24/2015,05/24/2015,05/24/2015 02:48:28 PM,05/24/2015 02:48:28 PM,05/24/2015 02:49:10 PM,05/24/2015 02:51:04 PM,05/24/2015 02:55:06 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Patient Declined Transport,05/24/2015 02:56:23 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",151441982-E07 +142932354,75,14103417,Medical Incident,10/20/2014,10/20/2014,10/20/2014 04:28:52 PM,10/20/2014 04:28:52 PM,10/20/2014 04:31:34 PM,10/20/2014 04:32:38 PM,04/25/2016 01:14:27 PM,10/20/2014 04:45:57 PM,10/20/2014 04:58:53 PM,Code 2 Transport,10/20/2014 05:31:06 PM,4TH ST/MARKET ST,San Francisco,94103,B01,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,1,6,South of Market,"(37.7857439877905, -122.405831012392)",142932354-75 +141420167,77,14048546,Medical Incident,05/22/2014,05/21/2014,05/22/2014 01:30:14 AM,05/22/2014 01:30:14 AM,05/22/2014 01:32:04 AM,05/22/2014 01:32:09 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Cancelled,05/22/2014 01:35:23 AM,16TH ST/ALBION ST,San Francisco,94110,B02,6,5235,A,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7648432997817, -122.42311242302)",141420167-77 +160960533,62,16037901,Traffic Collision,04/05/2016,04/04/2016,04/05/2016 07:22:16 AM,04/05/2016 07:22:16 AM,04/05/2016 07:22:43 AM,04/05/2016 07:23:10 AM,04/05/2016 07:32:27 AM,04/05/2016 07:43:06 AM,04/05/2016 08:04:01 AM,Code 2 Transport,04/05/2016 08:36:01 AM,ORTEGA ST/44TH AV,San Francisco,94116,B08,23,7646,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7511903586863, -122.503133001568)",160960533-62 +150623080,E42,15023782,Structure Fire,03/03/2015,03/03/2015,03/03/2015 06:05:40 PM,03/03/2015 06:11:54 PM,03/03/2015 06:12:28 PM,03/03/2015 06:14:27 PM,03/03/2015 06:32:01 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Fire,03/03/2015 06:52:42 PM,1500 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Fire,1,ENGINE,12,10,10,Bayview Hunters Point,"(37.7310897557507, -122.389268390192)",150623080-E42 +150681743,84,15025977,Medical Incident,03/09/2015,03/09/2015,03/09/2015 12:38:49 PM,03/09/2015 12:38:49 PM,03/09/2015 01:06:30 PM,03/09/2015 01:06:43 PM,03/09/2015 01:10:06 PM,03/09/2015 01:20:07 PM,03/09/2015 01:31:57 PM,Code 2 Transport,03/09/2015 02:03:14 PM,0 Block of 11TH ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7749028724693, -122.417930265052)",150681743-84 +151173078,E43,15044347,Medical Incident,04/27/2015,04/27/2015,04/27/2015 06:35:25 PM,04/27/2015 06:39:26 PM,04/27/2015 06:43:04 PM,04/27/2015 06:44:54 PM,04/27/2015 07:01:16 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Code 2 Transport,04/27/2015 07:03:25 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",151173078-E43 +160950043,KM07,16037471,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:28:15 AM,04/04/2016 12:29:05 AM,04/04/2016 12:29:28 AM,04/04/2016 12:30:15 AM,04/04/2016 12:37:52 AM,04/04/2016 12:50:51 AM,04/04/2016 01:23:50 AM,Code 2 Transport,04/04/2016 01:51:47 AM,NORTH POINT ST/KEARNY ST,San Francisco,94133,B01,28,1255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8073794582677, -122.407303657354)",160950043-KM07 +152711000,60,15103731,Medical Incident,09/28/2015,09/28/2015,09/28/2015 09:14:29 AM,09/28/2015 09:16:13 AM,09/28/2015 09:16:30 AM,09/28/2015 09:16:48 AM,09/28/2015 09:22:03 AM,09/28/2015 09:33:45 AM,09/28/2015 09:58:33 AM,Code 2 Transport,09/28/2015 10:42:30 AM,100 Block of STEUART ST,San Francisco,94105,B03,35,2111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7926568376756, -122.39236449327)",152711000-60 +160963988,AM16,16038202,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:14:23 PM,04/05/2016 10:17:24 PM,04/05/2016 10:17:57 PM,04/05/2016 10:18:38 PM,04/05/2016 10:27:40 PM,04/05/2016 10:36:11 PM,04/05/2016 11:00:53 PM,Code 2 Transport,04/05/2016 11:33:59 PM,GEARY BL/MASONIC AV,San Francisco,94118,B05,10,4365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",160963988-AM16 +151253324,E35,15047505,Alarms,05/05/2015,05/05/2015,05/05/2015 07:19:00 PM,05/05/2015 07:20:29 PM,05/05/2015 07:21:27 PM,05/05/2015 07:21:27 PM,05/05/2015 07:22:30 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Fire,05/05/2015 07:24:14 PM,200 Block of SPEAR ST,San Francisco,94105,B03,35,2114,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7907290972823, -122.391698710083)",151253324-E35 +161000157,AM20,16039569,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:01:10 AM,04/09/2016 01:01:51 AM,04/09/2016 01:02:27 AM,04/09/2016 01:04:34 AM,04/09/2016 01:09:08 AM,04/09/2016 01:27:10 AM,04/09/2016 01:42:28 AM,Code 2 Transport,04/09/2016 02:10:55 AM,2800 Block of TARAVAL ST,San Francisco,94116,B08,18,7612,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7420734859628, -122.496578885375)",161000157-AM20 +153232437,B03,15124325,Traffic Collision,11/19/2015,11/19/2015,11/19/2015 03:20:28 PM,11/19/2015 03:20:28 PM,11/19/2015 03:20:52 PM,11/19/2015 03:22:04 PM,11/19/2015 03:25:27 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,No Merit,11/19/2015 03:26:47 PM,FOLSOM ST/FREMONT ST,San Francisco,94105,B03,35,2122,3,A,2,false,Potentially Life-Threatening,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7879963086157, -122.393597165043)",153232437-B03 +152672555,T13,15102337,Structure Fire,09/24/2015,09/24/2015,09/24/2015 03:27:58 PM,09/24/2015 03:28:27 PM,09/24/2015 03:29:22 PM,09/24/2015 03:30:53 PM,09/24/2015 03:31:40 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,Fire,09/24/2015 03:40:36 PM,500 Block of BATTERY ST,San Francisco,94111,B01,13,1156,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7963352483576, -122.400515223296)",152672555-T13 +151033834,E19,15039145,Medical Incident,04/13/2015,04/13/2015,04/13/2015 10:32:41 PM,04/13/2015 10:32:41 PM,04/13/2015 10:32:52 PM,04/13/2015 10:34:04 PM,04/13/2015 10:37:07 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Code 2 Transport,04/13/2015 10:51:29 PM,0 Block of CHUMASERO DR,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",151033834-E19 +153083348,76,15118493,Medical Incident,11/04/2015,11/04/2015,11/04/2015 06:59:29 PM,11/04/2015 07:02:47 PM,11/04/2015 07:03:31 PM,11/04/2015 07:03:38 PM,11/04/2015 07:07:18 PM,11/04/2015 07:14:56 PM,11/04/2015 07:20:38 PM,Code 2 Transport,11/04/2015 07:39:50 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",153083348-76 +150650684,AM04,15024738,Alarms,03/06/2015,03/05/2015,03/06/2015 07:14:42 AM,03/06/2015 07:15:27 AM,03/06/2015 07:16:05 AM,03/06/2015 07:16:50 AM,03/06/2015 07:22:43 AM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Other,03/06/2015 07:33:18 AM,0 Block of ROSIE LEE LN,San Francisco,94124,B10,17,6643,3,3,3,false,Alarm,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.732100392944, -122.380819683606)",150650684-AM04 +160964155,85,16038221,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:15:36 PM,04/05/2016 11:16:24 PM,04/05/2016 11:18:09 PM,04/05/2016 11:18:47 PM,04/05/2016 11:25:09 PM,04/05/2016 11:47:38 PM,04/06/2016 12:08:01 AM,Code 2 Transport,04/06/2016 12:40:17 AM,900 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",160964155-85 +152633902,E07,15100869,Medical Incident,09/20/2015,09/20/2015,09/20/2015 10:23:22 PM,09/20/2015 10:23:22 PM,09/20/2015 10:26:00 PM,09/20/2015 10:27:12 PM,09/20/2015 10:29:21 PM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Code 2 Transport,09/20/2015 10:43:18 PM,900 Block of YORK ST,San Francisco,94110,B06,7,5474,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7568487756102, -122.40864424112)",152633902-E07 +160960411,81,16037891,Medical Incident,04/05/2016,04/04/2016,04/05/2016 06:06:55 AM,04/05/2016 06:08:18 AM,04/05/2016 06:08:48 AM,04/05/2016 06:08:55 AM,04/05/2016 06:28:15 AM,04/05/2016 06:28:20 AM,04/05/2016 06:50:16 AM,Code 2 Transport,04/05/2016 07:25:59 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160960411-81 +141190015,E09,14040020,Medical Incident,04/29/2014,04/28/2014,04/29/2014 01:24:50 AM,04/29/2014 01:26:48 AM,04/29/2014 01:27:28 AM,04/29/2014 01:29:51 AM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Code 2 Transport,04/29/2014 01:33:35 AM,700 Block of MISSOURI ST,SAN FRANCISCO,94107,B10,37,2542,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",141190015-E09 +160953429,64,16037772,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:29:28 PM,04/04/2016 07:32:07 PM,04/04/2016 07:34:48 PM,04/04/2016 07:39:12 PM,04/04/2016 07:41:22 PM,04/04/2016 08:02:42 PM,04/04/2016 08:36:55 PM,Code 2 Transport,04/04/2016 09:10:02 PM,0 Block of CANYON DR,San Francisco,94112,B09,43,6235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7090926292053, -122.43133713448)",160953429-64 +141993840,E17,14069094,Medical Incident,07/18/2014,07/18/2014,07/18/2014 11:49:32 PM,07/18/2014 11:51:17 PM,07/18/2014 11:53:10 PM,07/18/2014 11:55:22 PM,07/18/2014 11:58:35 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Gone on Arrival,07/19/2014 12:00:07 AM,1400 Block of PHELPS ST,San Francisco,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364498670013, -122.394433400473)",141993840-E17 +151932560,B02,15073728,Alarms,07/12/2015,07/12/2015,07/12/2015 04:46:05 PM,07/12/2015 04:48:11 PM,07/12/2015 04:48:26 PM,07/12/2015 04:48:43 PM,07/12/2015 04:51:33 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 04:56:47 PM,400 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1544,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",151932560-B02 +160960292,AM22,16037871,Medical Incident,04/05/2016,04/04/2016,04/05/2016 03:45:44 AM,04/05/2016 03:46:56 AM,04/05/2016 03:47:20 AM,04/05/2016 03:48:28 AM,04/05/2016 03:53:24 AM,04/05/2016 04:15:49 AM,04/05/2016 04:20:57 AM,Code 2 Transport,04/05/2016 04:48:02 AM,800 Block of 34TH AVE,San Francisco,94121,B07,34,7252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7730659199662, -122.493831266165)",160960292-AM22 +150342303,T09,15013154,Alarms,02/03/2015,02/03/2015,02/03/2015 03:29:03 PM,02/03/2015 03:30:24 PM,02/03/2015 03:31:42 PM,02/03/2015 03:34:02 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Fire,02/03/2015 03:37:48 PM,400 Block of AMADOR ST,San Francisco,94124,B10,25,6463,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7458848547738, -122.382990476473)",150342303-T09 +142970885,88,14104677,Medical Incident,10/24/2014,10/24/2014,10/24/2014 08:26:42 AM,10/24/2014 08:30:56 AM,10/24/2014 08:31:29 AM,10/24/2014 08:31:56 AM,10/24/2014 08:41:41 AM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Unable to Locate,10/24/2014 08:44:25 AM,1500 Block of SANTIAGO ST,San Francisco,94116,B08,40,7471,3,3,3,true,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7445086480861, -122.483854761763)",142970885-88 +150821070,B06,15031310,Alarms,03/23/2015,03/23/2015,03/23/2015 09:58:39 AM,03/23/2015 10:00:43 AM,03/23/2015 10:01:22 AM,03/23/2015 10:03:28 AM,03/23/2015 10:04:56 AM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Fire,03/23/2015 10:12:14 AM,200 Block of 27TH ST,San Francisco,94131,B06,11,5556,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7470197682877, -122.425834246256)",150821070-B06 +151060170,55,15039893,Medical Incident,04/16/2015,04/15/2015,04/16/2015 01:47:44 AM,04/16/2015 01:47:44 AM,04/16/2015 01:48:31 AM,04/16/2015 01:48:48 AM,04/16/2015 01:54:25 AM,04/16/2015 02:18:58 AM,04/16/2015 02:23:43 AM,Code 2 Transport,04/16/2015 02:58:31 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",151060170-55 +150142985,57,15005667,Medical Incident,01/14/2015,01/14/2015,01/14/2015 06:14:08 PM,01/14/2015 06:14:08 PM,01/14/2015 06:22:07 PM,01/14/2015 06:22:07 PM,01/14/2015 06:25:21 PM,01/14/2015 06:25:25 PM,01/14/2015 06:37:40 PM,Code 3 Transport,01/14/2015 07:15:26 PM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,A,E,3,true,Potentially Life-Threatening,1,MEDIC,4,6,9,Mission,"(37.7610314429831, -122.419351642615)",150142985-57 +143091180,B04,14109312,Traffic Collision,11/05/2014,11/05/2014,11/05/2014 10:33:13 AM,11/05/2014 10:34:17 AM,11/05/2014 10:35:17 AM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Patient Declined Transport,11/05/2014 10:36:12 AM,LARKIN ST/SUTTER ST,San Francisco,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,4,3,Nob Hill,"(37.7879662849441, -122.418465027904)",143091180-B04 +160942536,70,16037335,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:34:48 PM,04/03/2016 04:37:24 PM,04/03/2016 04:38:07 PM,04/03/2016 04:38:20 PM,04/03/2016 04:47:34 PM,04/03/2016 05:12:54 PM,04/03/2016 05:20:48 PM,Code 2 Transport,04/03/2016 05:43:18 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160942536-70 +150502021,70,15019342,Medical Incident,02/19/2015,02/19/2015,02/19/2015 02:15:21 PM,02/19/2015 02:16:25 PM,02/19/2015 02:16:36 PM,02/19/2015 02:17:05 PM,02/19/2015 02:26:41 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,No Merit,02/19/2015 02:28:09 PM,MASON ST/BUSH ST,San Francisco,94108,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7899514241836, -122.410433245777)",150502021-70 +141210419,E38,14041109,Medical Incident,05/01/2014,05/01/2014,05/01/2014 08:41:26 PM,05/01/2014 08:41:27 PM,05/01/2014 08:42:29 PM,05/01/2014 08:43:28 PM,05/01/2014 08:44:35 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 2 Transport,05/01/2014 08:56:54 PM,1700 Block of SUTTER ST,SAN FRANCISCO,94115,B04,38,3433,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",141210419-E38 +142481981,RC1,14086467,Medical Incident,09/05/2014,09/05/2014,09/05/2014 02:04:02 PM,09/05/2014 02:04:37 PM,09/05/2014 02:06:05 PM,09/05/2014 02:06:05 PM,09/05/2014 02:08:07 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/05/2014 02:17:58 PM,500 Block of BUCHANAN ST,San Francisco,94102,B02,36,3423,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,2,5,Hayes Valley,"(37.7746309836147, -122.427520205792)",142481981-RC1 +142212744,B04,14076803,Alarms,08/09/2014,08/09/2014,08/09/2014 05:25:19 PM,08/09/2014 05:27:01 PM,08/09/2014 05:27:58 PM,08/09/2014 05:28:56 PM,08/09/2014 05:32:12 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Fire,08/09/2014 05:36:17 PM,2100 Block of CHESTNUT ST,San Francisco,94123,B04,16,3661,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8004518556001, -122.438685860986)",142212744-B04 +150243073,55,15009454,Medical Incident,01/24/2015,01/24/2015,01/24/2015 08:49:09 PM,01/24/2015 08:51:05 PM,01/24/2015 08:51:36 PM,01/24/2015 08:51:46 PM,01/24/2015 09:02:29 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Gone on Arrival,01/24/2015 09:02:35 PM,TAYLOR ST/TURK ST,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",150243073-55 +150331462,B02,15012702,Alarms,02/02/2015,02/02/2015,02/02/2015 11:43:14 AM,02/02/2015 11:44:07 AM,02/02/2015 11:44:15 AM,02/02/2015 11:45:32 AM,02/02/2015 11:48:01 AM,04/25/2016 01:12:29 PM,04/25/2016 01:12:29 PM,Fire,02/02/2015 11:49:18 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7770436202636, -122.413583483648)",150331462-B02 +142650335,E41,14092587,Medical Incident,09/22/2014,09/21/2014,09/22/2014 03:25:31 AM,09/22/2014 03:26:22 AM,09/22/2014 03:27:32 AM,09/22/2014 03:29:53 AM,09/22/2014 03:30:56 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Code 2 Transport,09/22/2014 03:38:33 AM,2000 Block of LARKIN ST,San Francisco,94109,B01,41,1632,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7966105174567, -122.420144877743)",142650335-E41 +142673538,E07,14093672,Medical Incident,09/24/2014,09/24/2014,09/24/2014 08:17:18 PM,09/24/2014 08:20:28 PM,09/24/2014 08:21:00 PM,09/24/2014 08:22:07 PM,09/24/2014 08:24:25 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 08:30:45 PM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",142673538-E07 +160922666,KM13,16036536,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:13:29 PM,04/01/2016 05:13:52 PM,04/01/2016 05:16:36 PM,04/01/2016 05:17:12 PM,04/01/2016 05:28:08 PM,04/01/2016 05:32:00 PM,04/01/2016 05:34:26 PM,Code 2 Transport,04/01/2016 05:48:40 PM,LARKIN ST/EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",160922666-KM13 +141331715,KM01,14045326,Medical Incident,05/13/2014,05/13/2014,05/13/2014 01:12:48 PM,05/13/2014 01:15:14 PM,05/13/2014 01:15:45 PM,05/13/2014 01:16:21 PM,05/13/2014 01:23:12 PM,05/13/2014 01:35:07 PM,05/13/2014 01:49:29 PM,Code 2 Transport,05/13/2014 02:20:02 PM,0 Block of SHERMAN ST,San Francisco,94103,B03,8,2312,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7766015774052, -122.405924386123)",141331715-KM01 +142420165,77,14084088,Medical Incident,08/30/2014,08/29/2014,08/30/2014 12:52:59 AM,08/30/2014 12:56:02 AM,08/30/2014 12:57:02 AM,08/30/2014 12:59:14 AM,08/30/2014 01:01:48 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Other,08/30/2014 01:02:40 AM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",142420165-77 +152111292,T03,15080316,Alarms,07/30/2015,07/30/2015,07/30/2015 11:00:17 AM,07/30/2015 11:01:22 AM,07/30/2015 11:02:50 AM,07/30/2015 11:03:06 AM,07/30/2015 11:06:01 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 11:11:59 AM,200 Block of FELL ST,San Francisco,94102,B02,36,3213,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7761085487984, -122.421979000442)",152111292-T03 +150382876,74,15014882,Medical Incident,02/07/2015,02/07/2015,02/07/2015 06:03:59 PM,02/07/2015 06:07:45 PM,02/07/2015 06:08:26 PM,02/07/2015 06:08:34 PM,02/07/2015 06:23:01 PM,02/07/2015 06:36:41 PM,02/07/2015 06:41:32 PM,Code 2 Transport,02/07/2015 07:00:44 PM,MARKET ST/HYDE ST,San Francisco,94103,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",150382876-74 +161002960,79,16039916,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:10:15 PM,04/09/2016 08:11:19 PM,04/09/2016 08:11:46 PM,04/09/2016 08:12:28 PM,04/09/2016 08:33:08 PM,04/09/2016 08:47:30 PM,04/09/2016 08:58:26 PM,Code 2 Transport,04/09/2016 09:30:34 PM,1200 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",161002960-79 +160930463,70,16036712,Medical Incident,04/02/2016,04/01/2016,04/02/2016 03:27:50 AM,04/02/2016 03:28:37 AM,04/02/2016 03:29:58 AM,04/02/2016 03:30:10 AM,04/02/2016 03:35:47 AM,04/02/2016 04:00:02 AM,04/02/2016 04:04:26 AM,Code 3 Transport,04/02/2016 04:37:01 AM,0 Block of SIERRA ST,San Francisco,94107,B10,37,2541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7582688202893, -122.395614644238)",160930463-70 +142663000,E15,14093216,Medical Incident,09/23/2014,09/23/2014,09/23/2014 06:22:43 PM,09/23/2014 06:22:43 PM,09/23/2014 06:23:12 PM,09/23/2014 06:24:36 PM,09/23/2014 06:27:15 PM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Code 2 Transport,09/23/2014 06:33:56 PM,700 Block of VICTORIA ST,San Francisco,94127,B09,15,8443,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7241499080237, -122.4643137099)",142663000-E15 +151802188,E01,15068775,Medical Incident,06/29/2015,06/29/2015,06/29/2015 03:28:06 PM,06/29/2015 03:29:53 PM,06/29/2015 03:30:04 PM,06/29/2015 03:31:45 PM,06/29/2015 03:32:32 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Code 2 Transport,06/29/2015 03:39:35 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",151802188-E01 +152591778,52,15099015,Traffic Collision,09/16/2015,09/16/2015,09/16/2015 01:06:45 PM,09/16/2015 01:06:55 PM,09/16/2015 01:08:11 PM,09/16/2015 01:08:14 PM,09/16/2015 01:08:14 PM,09/16/2015 01:18:30 PM,09/16/2015 01:34:18 PM,Code 3 Transport,09/16/2015 02:51:12 PM,LEAVENWORTH ST/PINE ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7902542983068, -122.415559086188)",152591778-52 +141983259,KM03,14068681,Medical Incident,07/17/2014,07/17/2014,07/17/2014 08:41:32 PM,07/17/2014 08:42:58 PM,07/17/2014 08:43:32 PM,07/17/2014 08:44:08 PM,07/17/2014 08:48:09 PM,07/17/2014 09:10:27 PM,07/17/2014 09:21:48 PM,Code 2 Transport,07/17/2014 10:25:45 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141983259-KM03 +143543409,54,14126602,Structure Fire,12/20/2014,12/20/2014,12/20/2014 05:16:52 PM,12/20/2014 05:18:01 PM,12/20/2014 05:19:21 PM,12/20/2014 05:19:21 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Fire,12/20/2014 05:24:08 PM,700 Block of 23RD AVE,San Francisco,94121,B07,14,7177,3,3,3,true,Alarm,1,MEDIC,11,7,1,Outer Richmond,"(37.7736039646112, -122.482047279831)",143543409-54 +160953881,AM20,16037807,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:02:45 PM,04/04/2016 10:02:45 PM,04/04/2016 10:03:14 PM,04/04/2016 10:07:10 PM,04/04/2016 10:07:14 PM,04/04/2016 10:17:58 PM,04/04/2016 10:26:37 PM,Code 2 Transport,04/04/2016 11:11:40 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160953881-AM20 +141431258,E35,14049017,Medical Incident,05/23/2014,05/23/2014,05/23/2014 11:18:19 AM,05/23/2014 11:19:17 AM,05/23/2014 11:19:23 AM,05/23/2014 11:20:25 AM,05/23/2014 11:23:57 AM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Code 2 Transport,05/23/2014 11:45:59 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",141431258-E35 +153472271,RC2,15133746,Medical Incident,12/13/2015,12/13/2015,12/13/2015 03:42:02 PM,12/13/2015 03:43:44 PM,12/13/2015 03:57:22 PM,12/13/2015 03:57:22 PM,12/13/2015 03:57:22 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Code 2 Transport,12/13/2015 04:04:06 PM,300 Block of 5TH AV,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7820265124332, -122.463349690248)",153472271-RC2 +141771788,B03,14061112,Alarms,06/26/2014,06/26/2014,06/26/2014 01:49:00 PM,06/26/2014 01:50:18 PM,06/26/2014 01:51:11 PM,06/26/2014 01:52:28 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 02:17:27 PM,400 Block of KANSAS ST,San Francisco,94107,B02,29,2422,3,3,3,false,Alarm,1,CHIEF,3,2,10,Potrero Hill,"(37.7640879187175, -122.403400751845)",141771788-B03 +160990656,64,16039207,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:49:44 AM,04/08/2016 07:51:08 AM,04/08/2016 07:51:26 AM,04/08/2016 07:52:04 AM,04/08/2016 07:56:00 AM,04/08/2016 08:16:17 AM,04/08/2016 08:40:44 AM,Code 2 Transport,04/08/2016 09:11:17 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160990656-64 +160981507,85,16038885,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:15:55 AM,04/07/2016 11:16:41 AM,04/07/2016 11:18:55 AM,04/07/2016 11:19:07 AM,04/07/2016 11:42:52 AM,04/07/2016 11:42:54 AM,04/07/2016 12:30:49 PM,Code 3 Transport,04/07/2016 01:06:10 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160981507-85 +151093144,T06,15041402,Alarms,04/19/2015,04/19/2015,04/19/2015 08:22:14 PM,04/19/2015 08:23:57 PM,04/19/2015 08:24:21 PM,04/19/2015 08:26:35 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Fire,04/19/2015 08:35:54 PM,0 Block of CASELLI AVE,San Francisco,94114,B06,24,5412,3,3,3,false,Alarm,1,TRUCK,3,6,8,Castro/Upper Market,"(37.7596949501702, -122.440159402266)",151093144-T06 +152654063,RC1,15101658,Traffic Collision,09/22/2015,09/22/2015,09/22/2015 11:00:35 PM,09/22/2015 11:01:29 PM,09/22/2015 11:01:44 PM,09/22/2015 11:04:06 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,Code 2 Transport,09/22/2015 11:05:18 PM,FOLSOM ST/RODGERS ST,San Francisco,94103,B02,1,2322,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,6,South of Market,"(37.7754510045625, -122.409481488927)",152654063-RC1 +141642612,E05,14056619,Alarms,06/13/2014,06/13/2014,06/13/2014 05:27:59 PM,06/13/2014 05:30:29 PM,06/13/2014 05:30:58 PM,06/13/2014 05:31:42 PM,06/13/2014 05:33:38 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Fire,06/13/2014 05:50:55 PM,1500 Block of BUCHANAN ST,San Francisco,94115,B04,5,3432,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.784323481334, -122.429605014266)",141642612-E05 +142173386,E14,14075382,Medical Incident,08/05/2014,08/05/2014,08/05/2014 09:13:09 PM,08/05/2014 09:14:17 PM,08/05/2014 09:14:55 PM,08/05/2014 09:16:09 PM,08/05/2014 09:18:28 PM,04/25/2016 01:15:49 PM,04/25/2016 01:15:49 PM,Code 2 Transport,08/05/2014 09:39:27 PM,400 Block of 40TH AVE,San Francisco,94121,B07,34,7256,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7803168001759, -122.500804706029)",142173386-E14 +141803457,68,14062441,Medical Incident,06/29/2014,06/29/2014,06/29/2014 09:07:43 PM,06/29/2014 09:07:43 PM,06/29/2014 09:10:22 PM,06/29/2014 09:10:22 PM,06/29/2014 09:19:24 PM,06/29/2014 09:23:14 PM,06/29/2014 09:39:02 PM,Code 3 Transport,06/29/2014 10:18:13 PM,200 Block of VERMONT ST,San Francisco,94103,B02,29,2422,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,10,Mission Bay,"(37.7666119536778, -122.404617787649)",141803457-68 +142870380,E01,14101026,Alarms,10/14/2014,10/13/2014,10/14/2014 04:13:55 AM,10/14/2014 04:15:01 AM,10/14/2014 04:15:12 AM,10/14/2014 04:17:43 AM,10/14/2014 04:20:39 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Fire,10/14/2014 04:24:37 AM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",142870380-E01 +151902105,E17,15072561,Medical Incident,07/09/2015,07/09/2015,07/09/2015 02:15:50 PM,07/09/2015 02:17:22 PM,07/09/2015 02:17:44 PM,07/09/2015 02:19:13 PM,07/09/2015 02:22:29 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Code 2 Transport,07/09/2015 02:34:14 PM,0 Block of BEATRICE LN,San Francisco,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7310236054412, -122.380741249103)",151902105-E17 +142123442,T06,14073651,Citizen Assist / Service Call,07/31/2014,07/31/2014,07/31/2014 09:20:34 PM,07/31/2014 09:22:14 PM,07/31/2014 09:23:08 PM,07/31/2014 09:25:08 PM,07/31/2014 09:26:45 PM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Fire,07/31/2014 09:56:06 PM,500 Block of WALLER ST,San Francisco,94117,B05,6,3635,3,3,3,false,Alarm,1,TRUCK,1,5,8,Haight Ashbury,"(37.7707538383927, -122.433121252603)",142123442-T06 +160992907,KM04,16039411,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:01:54 PM,04/08/2016 06:02:23 PM,04/08/2016 06:03:15 PM,04/08/2016 06:03:54 PM,04/08/2016 06:08:38 PM,04/08/2016 06:20:46 PM,04/08/2016 06:32:11 PM,Code 2 Transport,04/08/2016 07:13:28 PM,800 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.8024220415516, -122.413358845822)",160992907-KM04 +141992879,KM10,14069017,Medical Incident,07/18/2014,07/18/2014,07/18/2014 06:51:43 PM,07/18/2014 06:52:27 PM,07/18/2014 06:54:53 PM,07/18/2014 06:55:48 PM,07/18/2014 07:04:43 PM,07/18/2014 07:22:57 PM,07/18/2014 08:21:40 PM,Code 2 Transport,07/18/2014 08:21:42 PM,0 Block of CORDOVA ST,San Francisco,94112,B09,43,6224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7128189051559, -122.436154623588)",141992879-KM10 +151331342,62,15050394,Medical Incident,05/13/2015,05/13/2015,05/13/2015 10:31:54 AM,05/13/2015 10:32:44 AM,05/13/2015 10:32:57 AM,05/13/2015 10:33:08 AM,05/13/2015 10:54:53 AM,05/13/2015 10:55:08 AM,05/13/2015 11:00:34 AM,Code 3 Transport,05/13/2015 11:36:04 AM,700 Block of THE EMBARCADERO,San Francisco,94111,B01,13,915,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",151331342-62 +150370125,T03,15014074,Structure Fire,02/06/2015,02/05/2015,02/06/2015 12:46:02 AM,02/06/2015 12:46:02 AM,02/06/2015 12:46:08 AM,02/06/2015 12:47:40 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/06/2015 12:49:41 AM,POLK ST/FELL ST,San Francisco,94103,B02,36,3111,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",150370125-T03 +150491377,64,15018918,Medical Incident,02/18/2015,02/18/2015,02/18/2015 10:40:31 AM,02/18/2015 10:41:29 AM,02/18/2015 10:42:19 AM,02/18/2015 10:42:32 AM,02/18/2015 10:47:21 AM,02/18/2015 11:01:49 AM,02/18/2015 11:16:19 AM,Code 2 Transport,02/18/2015 11:41:03 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",150491377-64 +160972818,KM05,16038507,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:57:17 PM,04/06/2016 03:58:54 PM,04/06/2016 04:01:17 PM,04/06/2016 04:02:00 PM,04/06/2016 04:11:34 PM,04/06/2016 04:26:10 PM,04/06/2016 04:43:15 PM,Code 2 Transport,04/06/2016 05:23:30 PM,200 Block of CLAYTON ST,San Francisco,94117,B05,21,4523,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7730602068761, -122.449166125148)",160972818-KM05 +152313495,81,15088275,Medical Incident,08/19/2015,08/19/2015,08/19/2015 07:58:39 PM,08/19/2015 08:00:48 PM,08/19/2015 08:01:21 PM,08/19/2015 08:01:32 PM,08/19/2015 08:30:06 PM,08/19/2015 08:30:08 PM,08/19/2015 08:38:23 PM,Code 2 Transport,08/19/2015 09:27:33 PM,0 Block of PUTNAM ST,San Francisco,94110,B10,32,5725,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7389778799779, -122.410875138737)",152313495-81 +151321104,85,15050021,Medical Incident,05/12/2015,05/12/2015,05/12/2015 10:11:26 AM,05/12/2015 10:12:44 AM,05/12/2015 10:13:41 AM,05/12/2015 10:13:53 AM,05/12/2015 10:20:36 AM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Medical Examiner,05/12/2015 11:11:52 AM,1800 Block of 46TH AVE,San Francisco,94122,B08,23,7662,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7520316391171, -122.505272107627)",151321104-85 +160991634,KM12,16039287,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 12:48:37 PM,04/08/2016 12:48:37 PM,04/08/2016 12:48:37 PM,04/08/2016 12:48:37 PM,04/08/2016 12:48:37 PM,04/08/2016 01:06:16 PM,04/08/2016 01:44:52 PM,Code 2 Transport,04/08/2016 02:30:49 PM,FULTON ST/3RD AV,San Francisco,94122,B07,31,7111,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7740311340131, -122.460552661372)",160991634-KM12 +152120954,E43,15080667,Medical Incident,07/31/2015,07/31/2015,07/31/2015 09:25:12 AM,07/31/2015 09:28:37 AM,07/31/2015 09:29:05 AM,07/31/2015 09:30:22 AM,07/31/2015 09:33:11 AM,04/25/2016 01:09:11 PM,04/25/2016 01:09:11 PM,Code 2 Transport,07/31/2015 09:41:26 AM,200 Block of BALTIMORE WAY,San Francisco,94112,B09,43,6228,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7087981055096, -122.437985362628)",152120954-E43 +142130140,E38,14073688,Structure Fire,08/01/2014,07/31/2014,08/01/2014 01:01:53 AM,08/01/2014 01:01:53 AM,08/01/2014 01:02:49 AM,08/01/2014 01:03:50 AM,08/01/2014 01:06:49 AM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Fire,08/01/2014 01:06:56 AM,FILLMORE ST/PACIFIC AV,San Francisco,94115,B04,38,3546,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7933472849069, -122.434733665619)",142130140-E38 +153142744,E07,15120744,Medical Incident,11/10/2015,11/10/2015,11/10/2015 04:54:02 PM,11/10/2015 04:54:44 PM,11/10/2015 04:55:03 PM,11/10/2015 04:56:03 PM,11/10/2015 04:59:33 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Code 2 Transport,11/10/2015 05:17:41 PM,1100 Block of ALABAMA ST,San Francisco,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.753481556358, -122.411110362671)",153142744-E07 +151720086,E13,15065542,Traffic Collision,06/21/2015,06/20/2015,06/21/2015 12:24:34 AM,06/21/2015 12:25:29 AM,06/21/2015 12:25:58 AM,06/21/2015 12:27:37 AM,06/21/2015 12:29:04 AM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Code 2 Transport,06/21/2015 12:36:18 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",151720086-E13 +160982773,57,16039022,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:35:43 PM,04/07/2016 04:37:20 PM,04/07/2016 04:41:43 PM,04/07/2016 04:41:48 PM,04/07/2016 04:52:51 PM,04/07/2016 05:12:24 PM,04/07/2016 06:05:23 PM,Code 2 Transport,04/07/2016 06:30:08 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160982773-57 +151571052,E35,15059861,Medical Incident,06/06/2015,06/06/2015,06/06/2015 09:42:29 AM,06/06/2015 09:44:09 AM,06/06/2015 09:44:22 AM,06/06/2015 09:46:32 AM,06/06/2015 09:48:13 AM,06/06/2015 10:13:59 AM,06/06/2015 10:35:55 AM,Code 2 Transport,06/06/2015 11:41:53 AM,200 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7829926490718, -122.390528528572)",151571052-E35 +160962241,AM08,16038051,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:37:29 PM,04/05/2016 02:37:29 PM,04/05/2016 02:45:25 PM,04/05/2016 02:45:25 PM,04/05/2016 02:50:23 PM,04/05/2016 03:03:18 PM,04/05/2016 03:18:30 PM,Code 2 Transport,04/05/2016 04:11:17 PM,POWELL ST/ELLIS ST,San Francisco,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",160962241-AM08 +142063129,67,14071491,Medical Incident,07/25/2014,07/25/2014,07/25/2014 07:40:44 PM,07/25/2014 07:41:31 PM,07/25/2014 07:42:08 PM,07/25/2014 07:43:13 PM,07/25/2014 07:47:06 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Patient Declined Transport,07/25/2014 08:17:06 PM,700 Block of GARFIELD ST,San Francisco,94132,B09,33,8432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7196005934433, -122.469400983321)",142063129-67 +160952538,77,16037685,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:47:27 PM,04/04/2016 03:48:29 PM,04/04/2016 03:50:14 PM,04/04/2016 03:50:32 PM,04/04/2016 04:15:44 PM,04/04/2016 04:24:32 PM,04/04/2016 04:41:51 PM,Code 2 Transport,04/04/2016 05:18:33 PM,0 Block of ESPANOLA ST,San Francisco,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",160952538-77 +160921694,82,16036438,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:03:24 PM,04/01/2016 01:03:53 PM,04/01/2016 01:04:06 PM,04/01/2016 01:04:16 PM,04/01/2016 01:09:49 PM,04/01/2016 01:21:32 PM,04/01/2016 01:46:25 PM,Code 2 Transport,04/01/2016 02:28:45 PM,400 Block of ASHBURY ST,San Francisco,94117,B05,21,4513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7713975294669, -122.447285890088)",160921694-82 +152782914,E05,15106768,Alarms,10/05/2015,10/05/2015,10/05/2015 06:04:35 PM,10/05/2015 06:06:56 PM,10/05/2015 06:07:13 PM,10/05/2015 06:07:57 PM,10/05/2015 06:09:50 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Fire,10/05/2015 06:13:09 PM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7796580262541, -122.438306627071)",152782914-E05 +142290634,T01,14079493,Structure Fire,08/17/2014,08/16/2014,08/17/2014 04:47:39 AM,08/17/2014 04:47:39 AM,08/17/2014 04:48:14 AM,08/17/2014 04:50:19 AM,08/17/2014 04:51:18 AM,04/25/2016 01:15:37 PM,04/25/2016 01:15:37 PM,Fire,08/17/2014 04:52:10 AM,8TH ST/FOLSOM ST,San Francisco,94103,B02,29,2322,3,3,3,false,Alarm,1,TRUCK,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",142290634-T01 +141190237,E01,14040190,Alarms,04/29/2014,04/29/2014,04/29/2014 01:54:42 PM,04/29/2014 01:56:08 PM,04/29/2014 02:00:55 PM,04/29/2014 02:00:55 PM,04/29/2014 02:01:04 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Fire,04/29/2014 02:02:29 PM,100 Block of TAYLOR ST,SAN FRANCISCO,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",141190237-E01 +142533422,88,14088453,Medical Incident,09/10/2014,09/10/2014,09/10/2014 07:36:00 PM,09/10/2014 07:37:10 PM,09/10/2014 07:37:53 PM,09/10/2014 07:40:59 PM,09/10/2014 07:44:46 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Against Medical Advice,09/10/2014 08:22:52 PM,0 Block of MISSION ST,San Francisco,94105,B03,35,2111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7935385958356, -122.392889145798)",142533422-88 +152442274,70,15093112,Medical Incident,09/01/2015,09/01/2015,09/01/2015 02:32:03 PM,09/01/2015 02:38:09 PM,09/01/2015 02:38:40 PM,09/01/2015 02:39:35 PM,09/01/2015 02:44:12 PM,09/01/2015 03:15:57 PM,09/01/2015 03:16:06 PM,Code 2 Transport,09/01/2015 04:10:15 PM,3RD ST/PALOU AV,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",152442274-70 +141553069,E05,14053440,Medical Incident,06/04/2014,06/04/2014,06/04/2014 07:19:34 PM,06/04/2014 07:21:33 PM,06/04/2014 07:22:17 PM,06/04/2014 07:23:05 PM,06/04/2014 07:25:22 PM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Patient Declined Transport,06/04/2014 07:43:15 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",141553069-E05 +141361714,82,14046566,Medical Incident,05/16/2014,05/16/2014,05/16/2014 01:22:40 PM,05/16/2014 01:22:40 PM,05/16/2014 01:24:33 PM,05/16/2014 01:25:03 PM,05/16/2014 01:51:38 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Unable to Locate,05/16/2014 01:55:32 PM,0 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7813863984085, -122.413839313834)",141361714-82 +150052439,B09,15001930,Medical Incident,01/05/2015,01/05/2015,01/05/2015 04:05:18 PM,01/05/2015 04:05:18 PM,01/05/2015 04:05:50 PM,01/05/2015 04:06:47 PM,01/05/2015 04:09:40 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,No Merit,01/05/2015 04:10:01 PM,300 Block of PARIS ST,San Francisco,94112,B09,43,6127,A,E,3,false,Potentially Life-Threatening,1,CHIEF,3,9,11,Excelsior,"(37.7231287268116, -122.433759859733)",150052439-B09 +151082321,E01,15040963,Medical Incident,04/18/2015,04/18/2015,04/18/2015 04:32:08 PM,04/18/2015 04:32:08 PM,04/18/2015 04:34:12 PM,04/18/2015 04:35:53 PM,04/18/2015 04:39:06 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Code 3 Transport,04/18/2015 04:39:28 PM,JONES ST/ELLIS ST,San Francisco,94102,B03,3,1461,2,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",151082321-E01 +143570538,T11,14127647,Administrative,12/23/2014,12/22/2014,12/23/2014 06:34:10 AM,12/23/2014 06:34:20 AM,12/23/2014 06:35:03 AM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Fire,12/23/2014 06:35:34 AM,3800 Block of 26TH ST,San Francisco,94114,B06,11,5547,3,3,3,false,,1,TRUCK,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",143570538-T11 +141370691,54,14046835,Medical Incident,05/17/2014,05/16/2014,05/17/2014 06:33:00 AM,05/17/2014 06:35:05 AM,05/17/2014 06:36:37 AM,05/17/2014 06:36:52 AM,05/17/2014 06:46:41 AM,05/17/2014 06:54:59 AM,05/17/2014 07:11:10 AM,Code 2 Transport,05/17/2014 07:35:46 AM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",141370691-54 +153302182,E22,15127105,Citizen Assist / Service Call,11/26/2015,11/26/2015,11/26/2015 05:53:52 PM,11/26/2015 05:58:19 PM,11/26/2015 05:58:58 PM,11/26/2015 06:00:24 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Fire,11/26/2015 06:16:49 PM,800 Block of PACHECO ST,San Francisco,94116,B08,40,7353,3,3,3,false,Alarm,1,ENGINE,1,8,7,Inner Sunset,"(37.7535525364428, -122.469539482215)",153302182-E22 +152453287,E31,15093560,Medical Incident,09/02/2015,09/02/2015,09/02/2015 06:16:05 PM,09/02/2015 06:17:13 PM,09/02/2015 06:17:21 PM,09/02/2015 06:18:16 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Code 3 Transport,09/02/2015 06:22:06 PM,100 Block of 2ND AVE,San Francisco,94118,B07,31,7115,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,2,Inner Richmond,"(37.7862053016842, -122.46028712472)",152453287-E31 +150212586,53,15008276,Medical Incident,01/21/2015,01/21/2015,01/21/2015 04:42:57 PM,01/21/2015 04:44:28 PM,01/21/2015 04:45:57 PM,01/21/2015 04:46:05 PM,01/21/2015 04:48:54 PM,01/21/2015 05:13:36 PM,01/21/2015 05:23:22 PM,Code 2 Transport,01/21/2015 05:52:51 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",150212586-53 +142932186,E41,14103405,Structure Fire,10/20/2014,10/20/2014,10/20/2014 03:41:51 PM,10/20/2014 03:42:52 PM,10/20/2014 03:43:35 PM,10/20/2014 03:44:10 PM,10/20/2014 03:52:20 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 03:52:27 PM,2700 Block of TAYLOR ST,San Francisco,94133,B01,28,1433,3,3,3,true,Alarm,1,ENGINE,8,1,3,North Beach,"(37.8077534960371, -122.415641041957)",142932186-E41 +150590364,55,15022408,Structure Fire,02/28/2015,02/27/2015,02/28/2015 02:23:47 AM,02/28/2015 02:24:21 AM,02/28/2015 02:24:36 AM,02/28/2015 02:26:58 AM,02/28/2015 02:35:51 AM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Patient Declined Transport,02/28/2015 03:04:56 AM,200 Block of ANZA ST,San Francisco,94118,B05,10,4456,3,3,3,true,Alarm,1,MEDIC,5,5,1,Lone Mountain/USF,"(37.7808387791397, -122.449570865244)",150590364-55 +160921623,KM09,16036434,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:43:18 PM,04/01/2016 12:45:33 PM,04/01/2016 12:46:35 PM,04/01/2016 12:46:54 PM,04/01/2016 01:00:41 PM,04/01/2016 01:24:03 PM,04/01/2016 01:52:53 PM,Code 2 Transport,04/01/2016 02:29:04 PM,MISSION ST/BEALE ST,San Francisco,94105,B03,35,2116,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7911528075814, -122.395813422768)",160921623-KM09 +161003343,KM06,16039961,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:06:22 PM,04/09/2016 10:07:33 PM,04/09/2016 10:07:54 PM,04/09/2016 10:09:32 PM,04/09/2016 10:10:36 PM,04/09/2016 10:32:15 PM,04/09/2016 11:34:45 PM,Code 2 Transport,04/09/2016 11:34:49 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",161003343-KM06 +160971092,54,16038349,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:33:40 AM,04/06/2016 09:36:36 AM,04/06/2016 09:40:40 AM,04/06/2016 09:41:28 AM,04/06/2016 09:53:22 AM,04/06/2016 09:59:59 AM,04/06/2016 10:36:06 AM,Code 2 Transport,04/06/2016 11:23:45 AM,CALL BOX: 1ST ST/HARRISON ST,Treasure Isla,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860789776532, -122.393024256721)",160971092-54 +160953950,AM16,16037814,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:21:32 PM,04/04/2016 10:21:32 PM,04/04/2016 10:35:57 PM,04/04/2016 10:36:38 PM,04/04/2016 10:44:53 PM,04/04/2016 11:03:11 PM,04/04/2016 11:10:00 PM,Other,04/04/2016 11:51:37 PM,INDUSTRIAL ST/BARNEVELD AV,San Francisco,94124,B10,42,6381,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7387125856838, -122.404257984683)",160953950-AM16 +160922445,82,16036513,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:20:52 PM,04/01/2016 04:21:23 PM,04/01/2016 04:23:26 PM,04/01/2016 04:23:26 PM,04/01/2016 04:23:38 PM,04/01/2016 04:35:14 PM,04/01/2016 05:13:54 PM,Code 2 Transport,04/01/2016 05:45:11 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160922445-82 +150623199,E03,15023792,Medical Incident,03/03/2015,03/03/2015,03/03/2015 06:44:53 PM,03/03/2015 06:46:19 PM,03/03/2015 06:47:54 PM,03/03/2015 06:49:04 PM,03/03/2015 06:54:09 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Code 2 Transport,03/03/2015 07:08:10 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",150623199-E03 +160941477,71,16037238,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:17:10 AM,04/03/2016 11:18:18 AM,04/03/2016 11:18:43 AM,04/03/2016 11:18:59 AM,04/03/2016 11:23:59 AM,04/03/2016 11:37:13 AM,04/03/2016 11:57:32 AM,Code 2 Transport,04/03/2016 12:38:23 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160941477-71 +142930891,KM12,14103265,Medical Incident,10/20/2014,10/20/2014,10/20/2014 09:05:27 AM,10/20/2014 09:07:17 AM,10/20/2014 09:10:19 AM,10/20/2014 09:10:53 AM,10/20/2014 09:36:54 AM,10/20/2014 09:55:30 AM,10/20/2014 10:05:41 AM,Code 2 Transport,10/20/2014 10:58:14 AM,FRANCISCO ST/POWELL ST,San Francisco,94133,B01,28,131,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8048960105792, -122.411766482067)",142930891-KM12 +141543409,T03,14053096,Alarms,06/03/2014,06/03/2014,06/03/2014 09:53:25 PM,06/03/2014 09:55:27 PM,06/03/2014 09:55:48 PM,06/03/2014 09:56:03 PM,06/03/2014 09:57:12 PM,04/25/2016 01:16:58 PM,04/25/2016 01:16:58 PM,Fire,06/03/2014 10:53:46 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",141543409-T03 +151613299,AM16,15061681,Medical Incident,06/10/2015,06/10/2015,06/10/2015 07:51:02 PM,06/10/2015 07:52:08 PM,06/10/2015 07:52:21 PM,06/10/2015 07:53:04 PM,06/10/2015 07:56:05 PM,06/10/2015 08:15:42 PM,06/10/2015 08:28:43 PM,Code 2 Transport,06/10/2015 09:09:56 PM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",151613299-AM16 +141692031,E35,14058382,Alarms,06/18/2014,06/18/2014,06/18/2014 03:02:33 PM,06/18/2014 03:03:35 PM,06/18/2014 03:03:53 PM,06/18/2014 03:04:54 PM,06/18/2014 03:08:03 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Fire,06/18/2014 03:35:26 PM,600 Block of FOLSOM ST,San Francisco,94107,B03,1,2147,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7850654631195, -122.397209533545)",141692031-E35 +151013796,E03,15038406,Alarms,04/11/2015,04/11/2015,04/11/2015 11:19:23 PM,04/11/2015 11:22:09 PM,04/11/2015 11:24:02 PM,04/11/2015 11:24:45 PM,04/11/2015 11:26:42 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Fire,04/11/2015 11:37:57 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",151013796-E03 +151221356,E44,15046238,Medical Incident,05/02/2015,05/02/2015,05/02/2015 11:33:59 AM,05/02/2015 11:34:33 AM,05/02/2015 11:35:06 AM,05/02/2015 11:35:20 AM,05/02/2015 11:35:57 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Code 2 Transport,05/02/2015 12:05:27 PM,0 Block of RAYMOND AVE,San Francisco,94134,B10,44,6255,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121484523973, -122.404287839917)",151221356-E44 +153342315,B02,15128467,Structure Fire,11/30/2015,11/30/2015,11/30/2015 03:50:00 PM,11/30/2015 03:51:15 PM,11/30/2015 03:51:55 PM,11/30/2015 03:53:11 PM,11/30/2015 03:56:43 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Fire,11/30/2015 03:59:58 PM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,false,Alarm,1,CHIEF,8,6,9,Mission,"(37.7546409372119, -122.418601779487)",153342315-B02 +161000451,KM09,16039616,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:32:01 AM,04/09/2016 03:35:47 AM,04/09/2016 03:43:55 AM,04/09/2016 03:47:44 AM,04/09/2016 03:53:04 AM,04/09/2016 04:02:51 AM,04/09/2016 04:19:04 AM,Code 2 Transport,04/09/2016 04:44:22 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",161000451-KM09 +150950078,71,15035937,Medical Incident,04/05/2015,04/04/2015,04/05/2015 12:27:31 AM,04/05/2015 12:28:49 AM,04/05/2015 12:29:15 AM,04/05/2015 12:29:24 AM,04/05/2015 12:34:12 AM,04/05/2015 12:58:02 AM,04/05/2015 01:22:40 AM,Code 2 Transport,04/05/2015 02:33:34 AM,1500 Block of LAKE ST,San Francisco,94118,B07,31,7152,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7862096920143, -122.476043851416)",150950078-71 +142381010,83,14082726,Medical Incident,08/26/2014,08/26/2014,08/26/2014 09:30:55 AM,08/26/2014 09:32:38 AM,08/26/2014 09:33:39 AM,08/26/2014 09:33:50 AM,08/26/2014 09:49:02 AM,08/26/2014 10:04:15 AM,08/26/2014 10:07:28 AM,Code 2 Transport,08/26/2014 10:39:23 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",142381010-83 +161003625,76,16039992,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:16:42 PM,04/09/2016 11:18:55 PM,04/09/2016 11:21:25 PM,04/09/2016 11:21:34 PM,04/09/2016 11:28:58 PM,04/09/2016 11:35:44 PM,04/09/2016 11:43:56 PM,Code 2 Transport,04/10/2016 12:24:58 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161003625-76 +160962160,53,16038044,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:17:56 PM,04/05/2016 02:19:16 PM,04/05/2016 02:19:47 PM,04/05/2016 02:22:47 PM,04/05/2016 02:34:59 PM,04/05/2016 02:42:16 PM,04/05/2016 03:10:37 PM,Code 2 Transport,04/05/2016 03:41:10 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160962160-53 +150763050,83,15029244,Structure Fire,03/17/2015,03/17/2015,03/17/2015 05:56:46 PM,03/17/2015 05:57:46 PM,03/17/2015 05:58:01 PM,03/17/2015 05:58:25 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Fire,03/17/2015 06:02:19 PM,VAN NESS AV/SUTTER ST,San Francisco,94109,B04,3,3161,3,3,3,true,Alarm,1,MEDIC,5,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",150763050-83 +153051893,KM01,15117141,Medical Incident,11/01/2015,11/01/2015,11/01/2015 10:38:02 AM,11/01/2015 10:40:17 AM,11/01/2015 10:41:19 AM,11/01/2015 10:41:59 AM,11/01/2015 10:47:39 AM,11/01/2015 11:05:59 AM,11/01/2015 11:23:08 AM,Code 2 Transport,11/01/2015 11:47:25 AM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",153051893-KM01 +151432633,77,15054468,Medical Incident,05/23/2015,05/23/2015,05/23/2015 05:39:11 PM,05/23/2015 05:40:46 PM,05/23/2015 05:41:19 PM,05/23/2015 05:41:31 PM,05/23/2015 05:46:33 PM,05/23/2015 06:29:27 PM,05/23/2015 06:30:24 PM,Code 3 Transport,05/23/2015 07:10:11 PM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",151432633-77 +160970835,67,16038319,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:30:14 AM,04/06/2016 08:35:12 AM,04/06/2016 08:36:44 AM,04/06/2016 08:36:51 AM,04/06/2016 08:49:19 AM,04/06/2016 09:03:39 AM,04/06/2016 09:08:41 AM,Code 2 Transport,04/06/2016 10:01:13 AM,2500 Block of VALLEJO ST,San Francisco,94123,B04,16,3654,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7947566019198, -122.439234819715)",160970835-67 +152263689,E28,15086300,Medical Incident,08/14/2015,08/14/2015,08/14/2015 09:18:16 PM,08/14/2015 09:18:37 PM,08/14/2015 09:21:22 PM,08/14/2015 09:22:10 PM,08/14/2015 09:25:00 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Code 2 Transport,08/14/2015 09:37:03 PM,1200 Block of FILBERT ST,San Francisco,94109,B01,41,1626,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.7999745038153, -122.420050559214)",152263689-E28 +142213901,E09,14076893,Administrative,08/09/2014,08/09/2014,08/09/2014 10:55:29 PM,08/09/2014 10:55:41 PM,08/09/2014 10:55:48 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Fire,08/09/2014 10:56:21 PM,2200 Block of JERROLD AVE,San Francisco,94124,B10,9,6411,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",142213901-E09 +160922178,RC3,16036484,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:11:13 PM,04/01/2016 03:11:44 PM,04/01/2016 03:13:44 PM,04/01/2016 03:13:54 PM,04/01/2016 03:27:53 PM,04/01/2016 03:38:18 PM,04/01/2016 04:06:12 PM,Code 3 Transport,04/01/2016 04:10:24 PM,300 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8731,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,8,7,Lakeshore,"(37.7310536423783, -122.476383904851)",160922178-RC3 +160940594,85,16037153,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:26:41 AM,04/03/2016 04:27:20 AM,04/03/2016 04:28:26 AM,04/03/2016 04:28:38 AM,04/03/2016 04:43:03 AM,04/03/2016 05:07:55 AM,04/03/2016 05:23:37 AM,Code 2 Transport,04/03/2016 05:39:05 AM,700 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",160940594-85 +160970148,78,16038252,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:12:43 AM,04/06/2016 01:14:40 AM,04/06/2016 01:15:23 AM,04/06/2016 01:15:33 AM,04/06/2016 01:20:29 AM,04/06/2016 01:26:54 AM,04/06/2016 01:47:17 AM,Code 2 Transport,04/06/2016 02:19:56 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160970148-78 +160994120,AM16,16039545,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:53:15 PM,04/08/2016 11:54:00 PM,04/08/2016 11:54:13 PM,04/08/2016 11:54:42 PM,04/09/2016 12:06:00 AM,04/09/2016 12:11:24 AM,04/09/2016 12:37:28 AM,Code 2 Transport,04/09/2016 01:11:12 AM,0 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7201828007793, -122.385924774252)",160994120-AM16 +152451719,E43,15093420,Medical Incident,09/02/2015,09/02/2015,09/02/2015 11:55:18 AM,09/02/2015 11:55:18 AM,09/02/2015 11:56:10 AM,09/02/2015 11:57:11 AM,09/02/2015 11:59:20 AM,04/25/2016 01:08:35 PM,04/25/2016 01:08:35 PM,Code 2 Transport,09/02/2015 12:04:32 PM,MISSION ST/GENEVA AV,San Francisco,94112,B09,43,6175,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",152451719-E43 +160933776,AM20,16037067,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:41:22 PM,04/02/2016 10:44:30 PM,04/02/2016 10:44:54 PM,04/02/2016 10:45:45 PM,04/02/2016 10:56:41 PM,04/02/2016 11:10:19 PM,04/02/2016 11:23:23 PM,Code 2 Transport,04/03/2016 12:00:25 AM,HAWES ST/QUESADA AV,San Francisco,94124,B10,17,6634,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7280514439142, -122.382125708607)",160933776-AM20 +153290281,E23,15126481,Other,11/25/2015,11/24/2015,11/25/2015 03:37:16 AM,11/25/2015 03:38:27 AM,11/25/2015 03:38:56 AM,11/25/2015 03:40:48 AM,11/25/2015 03:44:24 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 03:49:03 AM,38TH AV/JUDAH ST,San Francisco,94122,B08,23,7626,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7608032352486, -122.497353231517)",153290281-E23 +160933531,63,16037054,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:41:13 PM,04/02/2016 09:41:13 PM,04/02/2016 09:41:45 PM,04/02/2016 09:42:16 PM,04/02/2016 09:53:52 PM,04/02/2016 10:03:33 PM,04/02/2016 10:47:17 PM,Code 2 Transport,04/02/2016 10:51:17 PM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",160933531-63 +141080343,E35,14036544,Medical Incident,04/18/2014,04/18/2014,04/18/2014 07:35:32 PM,04/18/2014 07:38:53 PM,04/18/2014 07:55:52 PM,04/18/2014 07:56:04 PM,04/18/2014 07:57:34 PM,04/18/2014 08:10:16 PM,04/25/2016 01:17:48 PM,Code 3 Transport,04/18/2014 08:26:20 PM,300 Block of MISSION ST,SAN FRANCISCO,94105,B03,35,2126,,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",141080343-E35 +153162469,KM04,15121481,Medical Incident,11/12/2015,11/12/2015,11/12/2015 03:35:45 PM,11/12/2015 03:35:45 PM,11/12/2015 03:36:07 PM,11/12/2015 03:37:01 PM,11/12/2015 03:50:06 PM,11/12/2015 04:01:40 PM,11/12/2015 04:17:44 PM,Code 2 Transport,11/12/2015 04:49:38 PM,MARKET ST/TAYLOR ST,San Francisco,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",153162469-KM04 +160974297,65,16038681,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:42:27 PM,04/06/2016 09:43:23 PM,04/06/2016 09:43:33 PM,04/06/2016 09:43:49 PM,04/06/2016 09:50:50 PM,04/06/2016 10:04:37 PM,04/06/2016 10:28:16 PM,Code 2 Transport,04/06/2016 11:09:24 PM,2700 Block of GOLDEN GATE AV,San Francisco,94118,B07,21,4557,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.776979907748, -122.455945572423)",160974297-65 +160970686,85,16038302,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:44:24 AM,04/06/2016 07:44:54 AM,04/06/2016 07:46:48 AM,04/06/2016 07:46:54 AM,04/06/2016 08:08:37 AM,04/06/2016 08:22:57 AM,04/06/2016 08:56:34 AM,Code 2 Transport,04/06/2016 09:13:47 AM,PERRY ST/3RD ST,San Francisco,94107,B03,8,2175,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821191215942, -122.396841427362)",160970686-85 +161000418,79,16039609,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:12:23 AM,04/09/2016 03:15:03 AM,04/09/2016 03:19:17 AM,04/09/2016 03:19:35 AM,04/09/2016 03:47:57 AM,04/09/2016 04:06:43 AM,04/09/2016 04:18:19 AM,Code 2 Transport,04/09/2016 04:29:53 AM,19TH AV/ORTEGA ST,San Francisco,94116,B08,40,7421,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7523785986376, -122.476292239944)",161000418-79 +141772166,E18,14061140,Medical Incident,06/26/2014,06/26/2014,06/26/2014 03:44:24 PM,06/26/2014 03:46:06 PM,06/26/2014 03:46:51 PM,06/26/2014 03:48:48 PM,06/26/2014 03:53:22 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,No Merit,06/26/2014 03:55:36 PM,2500 Block of 40TH AVE,San Francisco,94116,B08,18,7617,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392586275396, -122.498062678439)",141772166-E18 +152091686,T19,15079622,Alarms,07/28/2015,07/28/2015,07/28/2015 12:12:49 PM,07/28/2015 12:13:51 PM,07/28/2015 12:14:02 PM,07/28/2015 12:15:52 PM,07/28/2015 12:20:15 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/28/2015 12:43:22 PM,3900 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8412,3,3,3,false,Alarm,1,TRUCK,3,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",152091686-T19 +153142272,68,15120710,Medical Incident,11/10/2015,11/10/2015,11/10/2015 03:04:21 PM,11/10/2015 03:04:58 PM,11/10/2015 03:07:59 PM,11/10/2015 03:08:18 PM,11/10/2015 03:13:02 PM,11/10/2015 03:21:28 PM,11/10/2015 03:32:13 PM,Code 3 Transport,11/10/2015 03:58:53 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",153142272-68 +142530835,AM04,14088209,Medical Incident,09/10/2014,09/10/2014,09/10/2014 08:45:39 AM,09/10/2014 08:46:14 AM,09/10/2014 08:46:18 AM,09/10/2014 08:47:10 AM,09/10/2014 08:52:28 AM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,No Merit,09/10/2014 09:08:55 AM,600 Block of MINNA ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7781634278768, -122.41108692372)",142530835-AM04 +150713846,E03,15027299,Medical Incident,03/12/2015,03/12/2015,03/12/2015 09:50:34 PM,03/12/2015 09:50:34 PM,03/12/2015 09:51:11 PM,03/12/2015 09:52:29 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Against Medical Advice,03/12/2015 09:53:05 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",150713846-E03 +160921513,77,16036422,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:08:10 PM,04/01/2016 12:10:14 PM,04/01/2016 12:12:06 PM,04/01/2016 12:13:11 PM,04/01/2016 12:26:30 PM,04/01/2016 12:51:34 PM,04/01/2016 01:36:32 PM,Code 2 Transport,04/01/2016 02:04:35 PM,1500 Block of SACRAMENTO ST,San Francisco,94109,B01,41,1563,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7918676063561, -122.418413462356)",160921513-77 +150073996,T06,15002918,Alarms,01/07/2015,01/07/2015,01/07/2015 11:34:19 PM,01/07/2015 11:36:40 PM,01/07/2015 11:37:18 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Fire,01/07/2015 11:38:47 PM,1300 Block of JESSIE ST,San Francisco,94103,B02,36,5125,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7713391009584, -122.421139607078)",150073996-T06 +151732955,KM12,15066172,Medical Incident,06/22/2015,06/22/2015,06/22/2015 07:33:52 PM,06/22/2015 07:35:12 PM,06/22/2015 07:35:41 PM,06/22/2015 07:36:27 PM,06/22/2015 07:44:58 PM,06/22/2015 07:59:48 PM,06/22/2015 08:11:00 PM,Code 2 Transport,06/22/2015 08:44:58 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",151732955-KM12 +150721315,55,15027470,Medical Incident,03/13/2015,03/13/2015,03/13/2015 10:34:28 AM,03/13/2015 10:41:24 AM,03/13/2015 10:41:52 AM,03/13/2015 10:42:04 AM,03/13/2015 10:51:31 AM,03/13/2015 11:01:50 AM,03/13/2015 11:48:00 AM,Code 2 Transport,03/13/2015 11:54:59 AM,500 Block of SUTTER ST,San Francisco,94108,B01,3,1412,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",150721315-55 +160931487,AM02,16036832,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:56:38 AM,04/02/2016 11:58:17 AM,04/02/2016 11:59:53 AM,04/02/2016 12:01:33 PM,04/02/2016 12:26:13 PM,04/02/2016 12:45:46 PM,04/02/2016 01:11:54 PM,Code 2 Transport,04/02/2016 01:31:52 PM,1700 Block of BEACH ST,San Francisco,94123,B04,16,3564,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.804214022581, -122.43864061945)",160931487-AM02 +151441683,52,15054772,Medical Incident,05/24/2015,05/24/2015,05/24/2015 01:05:32 PM,05/24/2015 01:07:38 PM,05/24/2015 01:07:47 PM,05/24/2015 01:08:12 PM,05/24/2015 01:11:49 PM,05/24/2015 01:17:07 PM,05/24/2015 01:55:14 PM,Code 2 Transport,05/24/2015 02:20:57 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7131061953593, -122.460796179398)",151441683-52 +150372206,E26,15014357,Medical Incident,02/06/2015,02/06/2015,02/06/2015 02:46:37 PM,02/06/2015 02:48:00 PM,02/06/2015 02:48:17 PM,02/06/2015 02:50:14 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Code 2 Transport,02/06/2015 02:54:49 PM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7173197736494, -122.434883626306)",150372206-E26 +143253327,T01,14115235,Structure Fire,11/21/2014,11/21/2014,11/21/2014 08:04:36 PM,11/21/2014 08:05:09 PM,11/21/2014 08:05:31 PM,11/21/2014 08:07:38 PM,11/21/2014 08:09:30 PM,04/25/2016 01:13:53 PM,04/25/2016 01:13:53 PM,Fire,11/21/2014 08:17:20 PM,200 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.782817231709, -122.402251213701)",143253327-T01 +160970752,79,16038306,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:07:23 AM,04/06/2016 08:07:23 AM,04/06/2016 08:08:01 AM,04/06/2016 08:08:07 AM,04/06/2016 08:12:14 AM,04/06/2016 08:20:23 AM,04/06/2016 08:42:44 AM,Code 2 Transport,04/06/2016 08:55:01 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",160970752-79 +143063014,E28,14108409,Medical Incident,11/02/2014,11/02/2014,11/02/2014 08:06:17 PM,11/02/2014 08:08:30 PM,11/02/2014 08:09:12 PM,11/02/2014 08:10:00 PM,11/02/2014 08:10:00 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Unable to Locate,11/02/2014 08:19:46 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",143063014-E28 +160971675,52,16038393,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:46:11 AM,04/06/2016 11:49:44 AM,04/06/2016 11:49:56 AM,04/06/2016 11:50:15 AM,04/06/2016 11:56:12 AM,04/06/2016 12:06:03 PM,04/06/2016 12:35:42 PM,Code 2 Transport,04/06/2016 01:07:28 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160971675-52 +143192030,77,14113001,Medical Incident,11/15/2014,11/15/2014,11/15/2014 02:18:00 PM,11/15/2014 02:18:38 PM,11/15/2014 02:18:59 PM,11/15/2014 02:21:06 PM,11/15/2014 02:21:06 PM,11/15/2014 02:34:09 PM,11/15/2014 03:10:09 PM,Code 2 Transport,11/15/2014 03:34:04 PM,400 Block of 10TH ST,San Francisco,94103,B02,29,2344,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7709248562482, -122.410555957263)",143192030-77 +160980559,62,16038789,Traffic Collision,04/07/2016,04/06/2016,04/07/2016 06:08:59 AM,04/07/2016 06:16:20 AM,04/07/2016 06:20:27 AM,04/07/2016 06:20:27 AM,04/07/2016 06:29:01 AM,04/07/2016 06:42:33 AM,04/07/2016 07:01:30 AM,Code 2 Transport,04/07/2016 07:27:10 AM,FOLSOM ST/2ND ST,San Francisco,94107,B03,1,2147,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",160980559-62 +143443173,E02,14122451,Alarms,12/10/2014,12/10/2014,12/10/2014 06:29:05 PM,12/10/2014 06:30:15 PM,12/10/2014 06:31:17 PM,12/10/2014 06:33:05 PM,12/10/2014 06:34:18 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/10/2014 06:37:31 PM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",143443173-E02 +161000818,AM02,16039666,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:22:02 AM,04/09/2016 08:22:37 AM,04/09/2016 08:24:32 AM,04/09/2016 08:25:16 AM,04/09/2016 08:33:25 AM,04/09/2016 08:46:54 AM,04/09/2016 09:03:04 AM,Code 2 Transport,04/09/2016 09:55:19 AM,ARGUELLO BL/GEARY BL,San Francisco,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",161000818-AM02 +161001105,AM06,16039697,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:09:23 AM,04/09/2016 10:09:45 AM,04/09/2016 10:10:08 AM,04/09/2016 10:11:04 AM,04/09/2016 10:17:53 AM,04/09/2016 10:34:41 AM,04/09/2016 11:07:45 AM,Code 2 Transport,04/09/2016 11:50:04 AM,OCEAN AV/BRIGHTON AV,San Francisco,94112,B09,15,8472,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,7,West of Twin Peaks,"(37.7236723652343, -122.455135658662)",161001105-AM06 +142571907,RC2,14089812,Medical Incident,09/14/2014,09/14/2014,09/14/2014 03:00:27 PM,09/14/2014 03:02:12 PM,09/14/2014 03:03:48 PM,09/14/2014 03:03:48 PM,09/14/2014 03:05:57 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,No Merit,09/14/2014 03:09:45 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",142571907-RC2 +152460198,T03,15093667,Medical Incident,09/03/2015,09/02/2015,09/03/2015 01:44:14 AM,09/03/2015 01:45:28 AM,09/03/2015 01:45:51 AM,09/03/2015 01:47:50 AM,09/03/2015 01:49:43 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Code 2 Transport,09/03/2015 01:55:48 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,6,Tenderloin,"(37.7862508859711, -122.413133876591)",152460198-T03 +153223477,AM20,15124002,Medical Incident,11/18/2015,11/18/2015,11/18/2015 06:47:37 PM,11/18/2015 06:48:40 PM,11/18/2015 06:48:46 PM,11/18/2015 06:50:18 PM,11/18/2015 06:59:59 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,No Merit,11/18/2015 07:08:06 PM,BAYSHORE BL/INDUSTRIAL ST,San Francisco,94124,B10,42,6374,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.737965867581, -122.406910505115)",153223477-AM20 +161002282,AM16,16039840,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:33:21 PM,04/09/2016 04:37:46 PM,04/09/2016 04:41:10 PM,04/09/2016 04:41:35 PM,04/09/2016 04:48:26 PM,04/09/2016 05:07:12 PM,04/09/2016 05:21:28 PM,Code 2 Transport,04/09/2016 05:42:45 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",161002282-AM16 +142171079,E01,14075185,Medical Incident,08/05/2014,08/05/2014,08/05/2014 10:49:25 AM,08/05/2014 10:49:46 AM,08/05/2014 10:51:44 AM,08/05/2014 10:52:12 AM,08/05/2014 10:54:27 AM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Code 2 Transport,08/05/2014 11:10:04 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",142171079-E01 +150320522,E11,15012242,Medical Incident,02/01/2015,01/31/2015,02/01/2015 03:14:30 AM,02/01/2015 03:17:18 AM,02/01/2015 03:18:35 AM,02/01/2015 03:19:51 AM,02/01/2015 03:23:09 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 2 Transport,02/01/2015 03:35:21 AM,RANDALL ST/ARLINGTON ST,San Francisco,94110,B06,32,8112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Glen Park,"(37.7398601523119, -122.424502659992)",150320522-E11 +150680034,68,15025825,Medical Incident,03/09/2015,03/08/2015,03/09/2015 12:12:22 AM,03/09/2015 12:14:13 AM,03/09/2015 12:15:23 AM,03/09/2015 12:15:33 AM,03/09/2015 12:32:11 AM,03/09/2015 12:50:02 AM,03/09/2015 01:01:14 AM,Code 2 Transport,03/09/2015 01:26:28 AM,1400 Block of 40TH AVE,San Francisco,94122,B08,23,7631,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7597777456855, -122.499361901706)",150680034-68 +152341487,E16,15089193,Traffic Collision,08/22/2015,08/22/2015,08/22/2015 11:38:31 AM,08/22/2015 11:40:29 AM,08/22/2015 11:40:54 AM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Code 2 Transport,08/22/2015 11:44:00 AM,600 Block of MASON ST,Presidio,94108,B99,51,4614,2,2,2,true,Non Life-threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",152341487-E16 +151841654,RS1,15070222,Medical Incident,07/03/2015,07/03/2015,07/03/2015 12:42:26 PM,07/03/2015 12:42:56 PM,07/03/2015 12:43:15 PM,07/03/2015 12:44:27 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Patient Declined Transport,07/03/2015 12:45:34 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,false,Non Life-threatening,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",151841654-RS1 +143630903,88,14129795,Medical Incident,12/29/2014,12/29/2014,12/29/2014 09:31:00 AM,12/29/2014 09:32:26 AM,12/29/2014 09:34:39 AM,12/29/2014 09:34:47 AM,12/29/2014 09:46:23 AM,12/29/2014 10:03:59 AM,12/29/2014 10:21:25 AM,Code 2 Transport,12/29/2014 11:29:54 AM,1200 Block of MCALLISTER ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7785814907258, -122.432596251801)",143630903-88 +141030148,E16,14034750,Medical Incident,04/13/2014,04/13/2014,04/13/2014 10:48:12 AM,04/13/2014 10:49:46 AM,04/13/2014 10:50:34 AM,04/13/2014 10:51:11 AM,04/13/2014 10:58:57 AM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Code 2 Transport,04/13/2014 11:05:17 AM,1800 Block of CHESTNUT ST,SAN FRANCISCO,94123,B04,16,3445,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8011854069176, -122.433790937219)",141030148-E16 +150540585,B02,15020637,Alarms,02/23/2015,02/22/2015,02/23/2015 07:33:41 AM,02/23/2015 07:35:01 AM,02/23/2015 07:35:09 AM,02/23/2015 07:36:05 AM,02/23/2015 07:43:39 AM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Fire,02/23/2015 07:43:54 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,CHIEF,3,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150540585-B02 +151023245,B01,15038732,Outside Fire,04/12/2015,04/12/2015,04/12/2015 09:28:08 PM,04/12/2015 09:28:32 PM,04/12/2015 09:28:51 PM,04/12/2015 09:30:53 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Fire,04/12/2015 09:33:09 PM,2000 Block of KEARNY ST,San Francisco,94133,B01,28,937,3,3,3,false,Alarm,1,CHIEF,4,1,3,North Beach,"(37.8069201392161, -122.407170160416)",151023245-B01 +142461162,AM24,14085630,Medical Incident,09/03/2014,09/03/2014,09/03/2014 09:53:47 AM,09/03/2014 09:54:24 AM,09/03/2014 09:54:40 AM,09/03/2014 09:55:19 AM,09/03/2014 09:58:16 AM,09/03/2014 10:28:48 AM,09/03/2014 10:41:47 AM,Code 2 Transport,09/03/2014 11:15:16 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",142461162-AM24 +153301375,E15,15126984,Medical Incident,11/26/2015,11/26/2015,11/26/2015 12:57:01 PM,11/26/2015 12:57:25 PM,11/26/2015 12:58:21 PM,11/26/2015 12:59:22 PM,11/26/2015 12:59:22 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 2 Transport,11/26/2015 01:22:01 PM,1800 Block of SAN JOSE AVE,San Francisco,94112,B09,15,8266,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7280468678976, -122.440623369006)",153301375-E15 +151670992,E11,15063786,Medical Incident,06/16/2015,06/16/2015,06/16/2015 09:50:15 AM,06/16/2015 09:51:34 AM,06/16/2015 09:52:39 AM,06/16/2015 09:53:59 AM,06/16/2015 09:56:19 AM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/16/2015 09:57:51 AM,3600 Block of 21ST ST,San Francisco,94114,B06,11,5461,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7564818532329, -122.429008644145)",151670992-E11 +160943069,KM02,16037387,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:16:07 PM,04/03/2016 07:18:07 PM,04/03/2016 07:18:28 PM,04/03/2016 07:18:50 PM,04/03/2016 07:26:59 PM,04/03/2016 07:53:46 PM,04/03/2016 08:00:29 PM,Code 3 Transport,04/03/2016 08:24:54 PM,900 Block of UNION ST,San Francisco,94133,B01,28,1513,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Russian Hill,"(37.7997063390042, -122.415493706507)",160943069-KM02 +142130923,E08,14073772,Other,08/01/2014,08/01/2014,08/01/2014 09:10:22 AM,08/01/2014 09:10:22 AM,08/01/2014 09:10:22 AM,08/01/2014 09:10:22 AM,08/01/2014 09:10:22 AM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Fire,08/01/2014 09:29:07 AM,5TH ST/BRANNAN ST,San Francisco,94107,B03,8,2241,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7765683820103, -122.398755450545)",142130923-E08 +160983032,59,16039043,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:55:39 PM,04/07/2016 05:57:47 PM,04/07/2016 05:59:19 PM,04/07/2016 05:59:45 PM,04/07/2016 06:06:13 PM,04/07/2016 06:11:32 PM,04/07/2016 06:20:24 PM,Code 2 Transport,04/07/2016 06:45:11 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160983032-59 +160964166,72,16038222,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:14:41 PM,04/05/2016 11:19:31 PM,04/05/2016 11:21:12 PM,04/05/2016 11:23:35 PM,04/05/2016 11:32:57 PM,04/06/2016 12:10:40 AM,04/06/2016 12:19:20 AM,Code 2 Transport,04/06/2016 01:46:28 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160964166-72 +150520693,82,15019948,Medical Incident,02/21/2015,02/20/2015,02/21/2015 04:59:49 AM,02/21/2015 05:00:30 AM,02/21/2015 05:01:09 AM,02/21/2015 05:01:43 AM,02/21/2015 05:07:14 AM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Against Medical Advice,02/21/2015 06:15:49 AM,700 Block of SHIELDS ST,San Francisco,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7179460780401, -122.469389961525)",150520693-82 +142601854,KM14,14090852,Medical Incident,09/17/2014,09/17/2014,09/17/2014 01:21:42 PM,09/17/2014 01:25:31 PM,09/17/2014 01:26:21 PM,09/17/2014 01:27:02 PM,09/17/2014 01:34:21 PM,09/17/2014 01:50:15 PM,09/17/2014 02:09:05 PM,Code 2 Transport,09/17/2014 02:35:29 PM,300 Block of CORBETT AVE,San Francisco,94114,B05,24,5265,3,3,3,false,Non Life-threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7591354950053, -122.446136454029)",142601854-KM14 +150573030,68,15021891,Medical Incident,02/26/2015,02/26/2015,02/26/2015 06:31:01 PM,02/26/2015 06:36:29 PM,02/26/2015 06:37:04 PM,02/26/2015 06:37:19 PM,02/26/2015 06:42:49 PM,02/26/2015 07:10:14 PM,02/26/2015 07:40:51 PM,Code 2 Transport,02/26/2015 08:13:16 PM,900 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6361,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7318146531856, -122.403993066647)",150573030-68 +141700392,78,14058578,Traffic Collision,06/19/2014,06/18/2014,06/19/2014 05:48:31 AM,06/19/2014 05:50:00 AM,06/19/2014 05:51:03 AM,06/19/2014 05:51:19 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Code 2 Transport,06/19/2014 05:51:54 AM,100 Block of 9TH ST,San Francisco,94103,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,7,2,6,South of Market,"(37.7760543061938, -122.414393004759)",141700392-78 +143012682,B06,14106345,Medical Incident,10/28/2014,10/28/2014,10/28/2014 06:01:59 PM,10/28/2014 06:01:59 PM,10/28/2014 06:02:17 PM,10/28/2014 06:03:49 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Code 3 Transport,10/28/2014 06:07:06 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,A,E,3,false,Potentially Life-Threatening,1,CHIEF,4,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",143012682-B06 +160980325,57,16038758,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:58:48 AM,04/07/2016 03:01:20 AM,04/07/2016 03:01:44 AM,04/07/2016 03:01:58 AM,04/07/2016 03:09:29 AM,04/07/2016 03:34:19 AM,04/07/2016 03:39:03 AM,Code 2 Transport,04/07/2016 04:14:21 AM,1200 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",160980325-57 +152750584,79,15105210,Medical Incident,10/02/2015,10/01/2015,10/02/2015 06:35:24 AM,10/02/2015 06:35:55 AM,10/02/2015 06:36:47 AM,10/02/2015 06:36:55 AM,10/02/2015 06:39:53 AM,10/02/2015 06:58:38 AM,10/02/2015 07:06:43 AM,Code 2 Transport,10/02/2015 07:23:55 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",152750584-79 +142392581,83,14083191,Traffic Collision,08/27/2014,08/27/2014,08/27/2014 05:01:44 PM,08/27/2014 05:03:18 PM,08/27/2014 05:03:47 PM,08/27/2014 05:03:57 PM,08/27/2014 05:08:27 PM,08/27/2014 05:18:59 PM,08/27/2014 05:46:21 PM,Code 3 Transport,08/27/2014 06:17:37 PM,SANSOME ST/SUTTER ST,San Francisco,94104,B01,13,1164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7902474029119, -122.400555263617)",142392581-83 +143652201,E32,14130759,Medical Incident,12/31/2014,12/31/2014,12/31/2014 04:26:54 PM,12/31/2014 04:27:53 PM,12/31/2014 04:33:15 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Code 2 Transport,12/31/2014 04:33:39 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.728489442639, -122.429995375728)",143652201-E32 +150521141,E31,15019980,Medical Incident,02/21/2015,02/21/2015,02/21/2015 09:28:08 AM,02/21/2015 09:28:34 AM,02/21/2015 09:29:08 AM,02/21/2015 09:30:27 AM,02/21/2015 09:33:54 AM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Medical Examiner,02/21/2015 09:35:35 AM,1500 Block of CABRILLO ST,San Francisco,94118,B07,31,7155,E,E,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7747974592995, -122.475214571834)",150521141-E31 +160930752,KM09,16036746,Medical Incident,04/02/2016,04/01/2016,04/02/2016 07:52:35 AM,04/02/2016 07:54:20 AM,04/02/2016 07:57:01 AM,04/02/2016 07:58:29 AM,04/02/2016 08:02:30 AM,04/02/2016 08:16:15 AM,04/02/2016 08:44:02 AM,Code 2 Transport,04/02/2016 09:11:16 AM,0 Block of TAYLOR ST,San Francisco,94102,B03,1,1454,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",160930752-KM09 +142283852,B07,14079397,Gas Leak (Natural and LP Gases),08/16/2014,08/16/2014,08/16/2014 10:52:05 PM,08/16/2014 10:53:20 PM,08/16/2014 10:53:46 PM,08/16/2014 10:55:01 PM,08/16/2014 10:57:19 PM,04/25/2016 01:15:37 PM,04/25/2016 01:15:37 PM,Fire,08/16/2014 11:08:42 PM,600 Block of 8TH AVE,San Francisco,94118,B07,31,7134,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7762007887235, -122.466155279307)",142283852-B07 +150311209,T15,15011916,Structure Fire,01/31/2015,01/31/2015,01/31/2015 10:30:03 AM,01/31/2015 10:30:50 AM,01/31/2015 10:30:58 AM,01/31/2015 10:32:21 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 11:06:04 AM,0 Block of VICTORIA ST,San Francisco,94132,B09,33,8375,3,3,3,false,Fire,1,TRUCK,7,9,7,Oceanview/Merced/Ingleside,"(37.7112640726513, -122.465195333879)",150311209-T15 +160972312,60,16038458,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:11:15 PM,04/06/2016 02:11:15 PM,04/06/2016 02:11:48 PM,04/06/2016 02:12:39 PM,04/06/2016 02:17:14 PM,04/06/2016 02:42:47 PM,04/06/2016 03:23:45 PM,Code 2 Transport,04/06/2016 04:12:43 PM,1700 Block of YOSEMITE AVE,San Francisco,94124,B10,17,6512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7284996658469, -122.39444320706)",160972312-60 +160940046,70,16037096,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:12:34 AM,04/03/2016 12:15:05 AM,04/03/2016 12:15:51 AM,04/03/2016 12:16:44 AM,04/03/2016 12:31:29 AM,04/03/2016 12:31:31 AM,04/03/2016 01:03:42 AM,Code 2 Transport,04/03/2016 01:04:58 AM,1500 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,B,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",160940046-70 +141812088,E31,14062723,Structure Fire,06/30/2014,06/30/2014,06/30/2014 03:09:08 PM,06/30/2014 03:09:08 PM,06/30/2014 03:15:16 PM,06/30/2014 03:17:39 PM,06/30/2014 03:19:32 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 03:29:53 PM,3600 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4436,3,3,3,false,Alarm,1,ENGINE,4,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",141812088-E31 +161010670,60,16040085,Medical Incident,04/10/2016,04/09/2016,04/10/2016 05:18:33 AM,04/10/2016 05:20:53 AM,04/10/2016 05:21:42 AM,04/10/2016 05:21:56 AM,04/10/2016 05:28:28 AM,04/10/2016 05:53:41 AM,04/10/2016 06:06:36 AM,Code 2 Transport,04/10/2016 06:31:59 AM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",161010670-60 +160960772,77,16037920,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:38:25 AM,04/05/2016 08:38:25 AM,04/05/2016 08:39:46 AM,04/05/2016 08:39:56 AM,04/05/2016 08:45:59 AM,04/05/2016 08:59:17 AM,04/05/2016 09:28:39 AM,Code 2 Transport,04/05/2016 10:12:25 AM,0 Block of BRIDGEVIEW DR,San Francisco,94124,B10,42,6453,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7346890592407, -122.394512701383)",160960772-77 +161001358,86,16039731,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:36:46 AM,04/09/2016 11:37:55 AM,04/09/2016 11:38:26 AM,04/09/2016 11:38:35 AM,04/09/2016 11:58:55 AM,04/09/2016 12:08:04 PM,04/09/2016 12:18:20 PM,Code 2 Transport,04/09/2016 12:51:20 PM,100 Block of KING ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",161001358-86 +152323064,B01,15088590,Structure Fire,08/20/2015,08/20/2015,08/20/2015 06:30:43 PM,08/20/2015 06:31:49 PM,08/20/2015 06:32:15 PM,08/20/2015 06:33:20 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Fire,08/20/2015 06:34:46 PM,2600 Block of GOUGH ST,San Francisco,94123,B04,38,3246,3,3,3,false,Alarm,1,CHIEF,11,4,2,Marina,"(37.7976760686896, -122.427106236282)",152323064-B01 +143642247,B07,14130265,Medical Incident,12/30/2014,12/30/2014,12/30/2014 03:58:25 PM,12/30/2014 03:59:43 PM,12/30/2014 04:03:53 PM,12/30/2014 04:04:34 PM,12/30/2014 04:09:40 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 04:18:15 PM,FULTON ST/PARK PRESIDIO BL,San Francisco,94118,B07,31,7144,3,3,3,false,Non Life-threatening,1,CHIEF,3,7,1,Golden Gate Park,"(37.7731389469461, -122.471762120845)",143642247-B07 +152970173,E28,15113903,Structure Fire,10/24/2015,10/23/2015,10/24/2015 01:02:28 AM,10/24/2015 01:02:28 AM,10/24/2015 01:02:37 AM,10/24/2015 01:03:44 AM,10/24/2015 01:06:08 AM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,Fire,10/24/2015 01:07:01 AM,LEAVENWORTH ST/JEFFERSON ST,San Francisco,94109,B01,28,1254,3,3,3,false,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",152970173-E28 +161003164,88,16039942,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:16:45 PM,04/09/2016 09:16:45 PM,04/09/2016 09:17:21 PM,04/09/2016 09:17:37 PM,04/09/2016 09:22:25 PM,04/09/2016 09:46:06 PM,04/09/2016 10:09:39 PM,Code 2 Transport,04/09/2016 10:44:06 PM,POLK ST/POST ST,San Francisco,94109,B02,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",161003164-88 +150723514,89,15027661,Medical Incident,03/13/2015,03/13/2015,03/13/2015 07:36:08 PM,03/13/2015 07:37:11 PM,03/13/2015 07:38:42 PM,03/13/2015 07:38:47 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Code 3 Transport,03/13/2015 07:39:12 PM,1100 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7892692454633, -122.416205378022)",150723514-89 +153382773,E44,15130143,Alarms,12/04/2015,12/04/2015,12/04/2015 04:52:06 PM,12/04/2015 04:52:17 PM,12/04/2015 04:52:23 PM,12/04/2015 04:53:45 PM,12/04/2015 04:56:12 PM,04/25/2016 01:06:50 PM,04/25/2016 01:06:50 PM,Fire,12/04/2015 05:35:38 PM,400 Block of MANSELL ST,San Francisco,94134,B10,44,626,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.7204133129314, -122.406069423364)",153382773-E44 +143292115,76,14116691,Medical Incident,11/25/2014,11/25/2014,11/25/2014 02:21:13 PM,11/25/2014 02:22:50 PM,11/25/2014 02:23:13 PM,11/25/2014 02:23:37 PM,11/25/2014 02:30:43 PM,11/25/2014 03:09:43 PM,11/25/2014 04:06:34 PM,Code 2 Transport,11/25/2014 04:19:20 PM,2800 Block of OAKDALE AVE,San Francisco,94124,B10,9,6376,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7427133771081, -122.404527159981)",143292115-76 +143051731,E31,14107912,Medical Incident,11/01/2014,11/01/2014,11/01/2014 10:58:49 AM,11/01/2014 10:58:49 AM,11/01/2014 10:59:08 AM,11/01/2014 11:00:00 AM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Patient Declined Transport,11/01/2014 11:01:05 AM,2ND AV/ANZA ST,San Francisco,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7792826279491, -122.459860372216)",143051731-E31 +150321211,E09,15012312,Traffic Collision,02/01/2015,02/01/2015,02/01/2015 09:58:09 AM,02/01/2015 10:00:14 AM,02/01/2015 10:02:03 AM,02/01/2015 10:03:47 AM,02/01/2015 10:08:05 AM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 10:24:37 AM,100 Block of AVENUE C,San Francisco,94130,B10,9,6375,2,2,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",150321211-E09 +153034275,75,15116459,Medical Incident,10/30/2015,10/30/2015,10/30/2015 11:34:02 PM,10/30/2015 11:35:08 PM,10/30/2015 11:35:30 PM,10/30/2015 11:35:53 PM,10/30/2015 11:40:15 PM,10/30/2015 11:54:42 PM,10/31/2015 12:02:52 AM,Code 3 Transport,10/31/2015 12:41:38 AM,MARKET ST/TURK ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",153034275-75 +143503267,RC1,14125141,Medical Incident,12/16/2014,12/16/2014,12/16/2014 08:20:03 PM,12/16/2014 08:23:39 PM,12/16/2014 08:24:08 PM,12/16/2014 08:24:52 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Code 2 Transport,12/16/2014 08:29:57 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7769455318934, -122.416807079177)",143503267-RC1 +142422755,RS2,14084340,Medical Incident,08/30/2014,08/30/2014,08/30/2014 06:22:31 PM,08/30/2014 06:23:55 PM,08/30/2014 06:26:36 PM,08/30/2014 06:28:14 PM,08/30/2014 06:29:28 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 06:42:46 PM,HARRISON ST/21ST ST,San Francisco,94110,B06,7,545,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,6,9,Mission,"(37.7574295248748, -122.41234804057)",142422755-RS2 +160933216,64,16037017,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:53:41 PM,04/02/2016 07:55:44 PM,04/02/2016 07:58:05 PM,04/02/2016 07:58:18 PM,04/02/2016 08:04:59 PM,04/02/2016 08:23:47 PM,04/02/2016 08:36:24 PM,Code 2 Transport,04/02/2016 09:07:00 PM,1200 Block of 32ND AVE,San Francisco,94122,B08,23,7537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7638872213875, -122.491188755025)",160933216-64 +141632812,E41,14056303,Medical Incident,06/12/2014,06/12/2014,06/12/2014 06:38:52 PM,06/12/2014 06:42:05 PM,06/12/2014 07:04:02 PM,06/12/2014 07:04:22 PM,06/12/2014 07:14:29 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Unable to Locate,06/12/2014 07:16:11 PM,LARKIN ST/POST ST,San Francisco,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",141632812-E41 +161000306,62,16039593,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:14:23 AM,04/09/2016 02:14:23 AM,04/09/2016 02:15:41 AM,04/09/2016 02:15:56 AM,04/09/2016 02:25:00 AM,04/09/2016 02:48:00 AM,04/09/2016 03:24:28 AM,Code 2 Transport,04/09/2016 04:00:39 AM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",161000306-62 +151223117,E05,15046442,Traffic Collision,05/02/2015,05/02/2015,05/02/2015 08:48:52 PM,05/02/2015 08:48:52 PM,05/02/2015 08:49:02 PM,05/02/2015 08:50:36 PM,05/02/2015 08:52:20 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Code 2 Transport,05/02/2015 08:56:32 PM,GOLDEN GATE AV/HYDE ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",151223117-E05 +160983084,79,16039052,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:06:39 PM,04/07/2016 06:08:49 PM,04/07/2016 06:16:08 PM,04/07/2016 06:16:08 PM,04/07/2016 06:20:27 PM,04/07/2016 06:35:21 PM,04/07/2016 06:43:31 PM,Code 3 Transport,04/07/2016 08:04:32 PM,SACRAMENTO ST/FRONT ST,San Francisco,94111,B01,13,1141,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",160983084-79 +142140830,B03,14074139,Structure Fire,08/02/2014,08/02/2014,08/02/2014 08:19:51 AM,08/02/2014 08:20:36 AM,08/02/2014 08:21:07 AM,08/02/2014 08:22:52 AM,08/02/2014 08:24:19 AM,04/25/2016 01:15:53 PM,04/25/2016 01:15:53 PM,Fire,08/02/2014 09:00:24 AM,200 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7829926490718, -122.390528528572)",142140830-B03 +150742627,E38,15028479,Alarms,03/15/2015,03/15/2015,03/15/2015 05:01:19 PM,03/15/2015 05:02:47 PM,03/15/2015 05:02:56 PM,03/15/2015 05:03:10 PM,03/15/2015 05:06:37 PM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Fire,03/15/2015 05:08:54 PM,2700 Block of BUCHANAN ST,San Francisco,94123,B04,38,3442,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7951554962576, -122.431799193187)",150742627-E38 +160991884,88,16039318,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:52:14 PM,04/08/2016 01:54:29 PM,04/08/2016 01:59:11 PM,04/08/2016 02:00:36 PM,04/08/2016 02:11:42 PM,04/08/2016 02:17:43 PM,04/08/2016 02:28:01 PM,Code 2 Transport,04/08/2016 02:59:48 PM,200 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",160991884-88 +160922899,63,16036551,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:02:01 PM,04/01/2016 06:04:40 PM,04/01/2016 06:06:09 PM,04/01/2016 06:06:47 PM,04/01/2016 06:19:33 PM,04/01/2016 06:36:41 PM,04/01/2016 06:53:17 PM,Code 2 Transport,04/01/2016 07:33:46 PM,3300 Block of 17TH ST,San Francisco,94110,B02,7,5247,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7632828833773, -122.421077099957)",160922899-63 +160991290,AM12,16039265,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:14:08 AM,04/08/2016 11:15:42 AM,04/08/2016 11:16:06 AM,04/08/2016 11:18:03 AM,04/08/2016 11:53:32 AM,04/08/2016 11:54:24 AM,04/08/2016 12:07:54 PM,Code 2 Transport,04/08/2016 12:47:09 PM,800 Block of SANSOME ST,San Francisco,94133,B01,13,1212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.7979585906161, -122.402203152588)",160991290-AM12 +141250434,E07,14042555,Medical Incident,05/05/2014,05/05/2014,05/05/2014 10:52:29 PM,05/05/2014 10:53:12 PM,05/05/2014 10:53:39 PM,05/05/2014 10:55:17 PM,05/05/2014 10:57:09 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 11:08:36 PM,2000 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",141250434-E07 +152731850,E28,15104510,Medical Incident,09/30/2015,09/30/2015,09/30/2015 01:14:17 PM,09/30/2015 01:15:15 PM,09/30/2015 01:15:30 PM,09/30/2015 01:16:32 PM,09/30/2015 01:22:35 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Code 2 Transport,09/30/2015 02:00:33 PM,1000 Block of THE EMBARCADERO,San Francisco,94111,B01,13,927,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",152731850-E28 +152891506,E42,15110997,Medical Incident,10/16/2015,10/16/2015,10/16/2015 11:45:26 AM,10/16/2015 11:46:36 AM,10/16/2015 11:47:22 AM,10/16/2015 11:48:01 AM,10/16/2015 11:49:55 AM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 12:05:27 PM,300 Block of GIRARD ST,San Francisco,94134,B10,42,634,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7279571422744, -122.404908112095)",152891506-E42 +160930468,AM24,16036714,Medical Incident,04/02/2016,04/01/2016,04/02/2016 03:35:12 AM,04/02/2016 03:37:34 AM,04/02/2016 03:38:36 AM,04/02/2016 03:39:32 AM,04/02/2016 03:42:54 AM,04/02/2016 03:59:06 AM,04/02/2016 04:13:22 AM,Code 2 Transport,04/02/2016 04:43:29 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160930468-AM24 +152223833,68,15084802,Medical Incident,08/10/2015,08/10/2015,08/10/2015 11:20:10 PM,08/10/2015 11:20:10 PM,08/10/2015 11:20:41 PM,08/10/2015 11:20:48 PM,08/10/2015 11:27:18 PM,08/11/2015 12:09:56 AM,08/11/2015 12:27:42 AM,Code 2 Transport,08/11/2015 01:16:27 AM,200 Block of BRADFORD ST,San Francisco,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7392981093573, -122.409463425691)",152223833-68 +150312966,74,15012088,Structure Fire,01/31/2015,01/31/2015,01/31/2015 06:44:48 PM,01/31/2015 06:45:38 PM,01/31/2015 06:46:15 PM,01/31/2015 06:46:24 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 06:52:07 PM,0 Block of LIEBIG ST,San Francisco,94112,B09,33,8357,3,3,3,true,Alarm,1,MEDIC,5,9,11,Outer Mission,"(37.7089888345409, -122.456754288707)",150312966-74 +160981253,53,16038850,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:04:23 AM,04/07/2016 10:04:23 AM,04/07/2016 10:04:54 AM,04/07/2016 10:05:06 AM,04/07/2016 10:08:57 AM,04/07/2016 10:20:27 AM,04/07/2016 10:20:08 AM,Code 3 Transport,04/07/2016 12:44:33 PM,400 Block of SHOTWELL ST,San Francisco,94110,B02,7,5424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.761229577891, -122.416072364125)",160981253-53 +160954115,79,16037828,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:18:20 PM,04/04/2016 11:18:20 PM,04/04/2016 11:19:15 PM,04/04/2016 11:19:23 PM,04/04/2016 11:32:25 PM,04/04/2016 11:34:42 PM,04/05/2016 12:09:45 AM,Code 2 Transport,04/05/2016 01:00:01 AM,700 Block of SUNNYDALE AVE,San Francisco,94134,B09,44,6253,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7100284529534, -122.409088364768)",160954115-79 +152970951,79,15113976,Medical Incident,10/24/2015,10/24/2015,10/24/2015 08:37:42 AM,10/24/2015 08:43:42 AM,10/24/2015 08:44:07 AM,10/24/2015 08:46:09 AM,10/24/2015 08:51:32 AM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,Patient Declined Transport,10/24/2015 10:06:16 AM,3600 Block of BAKER ST,San Francisco,94123,B04,16,4321,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8046799984804, -122.447260557826)",152970951-79 +151451784,E02,15055184,Medical Incident,05/25/2015,05/25/2015,05/25/2015 02:16:06 PM,05/25/2015 02:17:41 PM,05/25/2015 02:19:05 PM,05/25/2015 02:21:00 PM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,Cancelled,05/25/2015 02:25:05 PM,1100 Block of UNION ST,San Francisco,94109,B01,41,1611,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.7993058366445, -122.418648752342)",151451784-E02 +151132923,E38,15042812,Medical Incident,04/23/2015,04/23/2015,04/23/2015 05:45:28 PM,04/23/2015 05:47:31 PM,04/23/2015 05:47:52 PM,04/23/2015 05:48:42 PM,04/23/2015 05:50:19 PM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Code 2 Transport,04/23/2015 05:54:19 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,false,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",151132923-E38 +141210315,E01,14041018,Medical Incident,05/01/2014,05/01/2014,05/01/2014 04:36:29 PM,05/01/2014 04:37:28 PM,05/01/2014 04:37:57 PM,05/01/2014 04:41:44 PM,05/01/2014 04:41:47 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 2 Transport,05/01/2014 05:11:21 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141210315-E01 +160942655,87,16037351,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:08:20 PM,04/03/2016 05:09:33 PM,04/03/2016 05:10:37 PM,04/03/2016 05:11:50 PM,04/03/2016 05:20:59 PM,04/03/2016 05:37:57 PM,04/03/2016 06:21:55 PM,Code 2 Transport,04/03/2016 06:50:48 PM,300 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.798465838236, -122.407430691755)",160942655-87 +160983084,RC1,16039052,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:06:39 PM,04/07/2016 06:08:49 PM,04/07/2016 06:15:28 PM,04/07/2016 06:16:58 PM,04/07/2016 06:18:15 PM,04/07/2016 06:33:49 PM,04/07/2016 06:43:05 PM,Code 3 Transport,04/07/2016 06:46:03 PM,SACRAMENTO ST/FRONT ST,San Francisco,94111,B01,13,1141,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",160983084-RC1 +151010589,E36,15038139,Alarms,04/11/2015,04/10/2015,04/11/2015 06:36:04 AM,04/11/2015 06:38:35 AM,04/11/2015 06:39:04 AM,04/11/2015 06:41:46 AM,04/11/2015 06:44:23 AM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Fire,04/11/2015 06:46:34 AM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",151010589-E36 +143092253,83,14109422,Medical Incident,11/05/2014,11/05/2014,11/05/2014 03:33:26 PM,11/05/2014 03:35:03 PM,11/05/2014 03:36:24 PM,11/05/2014 03:36:50 PM,11/05/2014 03:45:44 PM,11/05/2014 04:05:26 PM,11/05/2014 04:36:40 PM,Code 2 Transport,11/05/2014 05:11:57 PM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",143092253-83 +153223881,KM07,15124047,Medical Incident,11/18/2015,11/18/2015,11/18/2015 08:38:11 PM,11/18/2015 08:39:18 PM,11/18/2015 08:39:58 PM,11/18/2015 08:42:22 PM,11/18/2015 08:44:17 PM,11/18/2015 09:07:44 PM,11/18/2015 09:28:15 PM,Code 2 Transport,11/18/2015 09:58:50 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",153223881-KM07 +143012939,83,14106375,Medical Incident,10/28/2014,10/28/2014,10/28/2014 07:16:03 PM,10/28/2014 07:16:03 PM,10/28/2014 07:27:44 PM,10/28/2014 07:28:29 PM,10/28/2014 07:31:54 PM,10/28/2014 07:42:52 PM,10/28/2014 07:56:28 PM,Code 2 Transport,10/28/2014 08:27:22 PM,300 Block of MCALLISTER ST,San Francisco,94102,B02,3,3113,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7804194722111, -122.417784021678)",143012939-83 +143622475,E31,14129594,Medical Incident,12/28/2014,12/28/2014,12/28/2014 05:47:36 PM,12/28/2014 05:49:34 PM,12/28/2014 05:50:18 PM,12/28/2014 05:51:30 PM,12/28/2014 05:52:46 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Code 2 Transport,12/28/2014 06:16:11 PM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,2,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7796175741202, -122.473838626607)",143622475-E31 +141412966,E35,14048451,Medical Incident,05/21/2014,05/21/2014,05/21/2014 07:06:22 PM,05/21/2014 07:06:59 PM,05/21/2014 07:13:17 PM,05/21/2014 07:14:29 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 07:17:19 PM,NORTH POINT ST/POWELL ST,San Francisco,94133,B01,28,1262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,North Beach,"(37.8067580824981, -122.412141425527)",141412966-E35 +142930266,E01,14103204,Alarms,10/20/2014,10/19/2014,10/20/2014 02:51:47 AM,10/20/2014 02:52:58 AM,10/20/2014 02:54:39 AM,10/20/2014 02:55:00 AM,10/20/2014 02:57:04 AM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,Fire,10/20/2014 03:03:48 AM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",142930266-E01 +141230172,82,14041665,Medical Incident,05/03/2014,05/03/2014,05/03/2014 01:01:11 PM,05/03/2014 01:02:32 PM,05/03/2014 01:03:43 PM,05/03/2014 01:04:05 PM,05/03/2014 01:12:56 PM,05/03/2014 01:34:03 PM,05/03/2014 01:52:46 PM,Code 2 Transport,05/03/2014 02:12:37 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141230172-82 +152352512,61,15089653,Medical Incident,08/23/2015,08/23/2015,08/23/2015 04:51:09 PM,08/23/2015 04:52:15 PM,08/23/2015 04:53:02 PM,08/23/2015 04:53:11 PM,08/23/2015 05:02:36 PM,08/23/2015 05:22:01 PM,08/23/2015 05:32:42 PM,Code 2 Transport,08/23/2015 06:07:20 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",152352512-61 +143081583,AM08,14108975,Medical Incident,11/04/2014,11/04/2014,11/04/2014 12:14:37 PM,11/04/2014 12:17:03 PM,11/04/2014 12:42:27 PM,11/04/2014 12:42:27 PM,11/04/2014 12:44:46 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Other,11/04/2014 12:54:00 PM,SACRAMENTO ST/PIERCE ST,San Francisco,94115,B04,38,3652,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7894216306873, -122.437318569396)",143081583-AM08 +160982474,85,16038983,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:21:53 PM,04/07/2016 03:23:14 PM,04/07/2016 03:23:56 PM,04/07/2016 03:24:06 PM,04/07/2016 03:34:25 PM,04/07/2016 04:02:24 PM,04/07/2016 04:24:34 PM,Code 2 Transport,04/07/2016 05:17:33 PM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",160982474-85 +152921756,T01,15112193,Alarms,10/19/2015,10/19/2015,10/19/2015 01:17:55 PM,10/19/2015 01:18:50 PM,10/19/2015 01:19:01 PM,10/19/2015 01:20:04 PM,10/19/2015 01:22:51 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Fire,10/19/2015 01:28:22 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",152921756-T01 +150291998,T02,15011197,Medical Incident,01/29/2015,01/29/2015,01/29/2015 02:32:04 PM,01/29/2015 02:33:02 PM,01/29/2015 02:33:26 PM,01/29/2015 02:35:05 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Against Medical Advice,01/29/2015 02:35:17 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",150291998-T02 +153033614,68,15116386,Medical Incident,10/30/2015,10/30/2015,10/30/2015 08:25:11 PM,10/30/2015 08:27:06 PM,10/30/2015 08:29:23 PM,10/30/2015 08:29:31 PM,10/30/2015 08:33:01 PM,10/30/2015 08:50:42 PM,10/30/2015 08:52:07 PM,Code 2 Transport,10/30/2015 09:10:54 PM,2200 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3435,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7904100295768, -122.429925412032)",153033614-68 +161000263,70,16039589,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:54:59 AM,04/09/2016 01:56:23 AM,04/09/2016 01:57:15 AM,04/09/2016 01:58:10 AM,04/09/2016 02:11:32 AM,04/09/2016 02:28:13 AM,04/09/2016 02:35:26 AM,Code 2 Transport,04/09/2016 03:09:05 AM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",161000263-70 +152221781,E06,15084591,Medical Incident,08/10/2015,08/10/2015,08/10/2015 01:22:04 PM,08/10/2015 01:22:31 PM,08/10/2015 01:23:09 PM,08/10/2015 01:24:25 PM,08/10/2015 01:25:59 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,No Merit,08/10/2015 01:26:07 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Non Life-threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",152221781-E06 +150040689,63,15001385,Medical Incident,01/04/2015,01/03/2015,01/04/2015 07:28:43 AM,01/04/2015 07:30:38 AM,01/04/2015 07:31:04 AM,01/04/2015 07:31:29 AM,01/04/2015 07:42:01 AM,01/04/2015 07:54:46 AM,01/04/2015 08:06:35 AM,Code 2 Transport,01/04/2015 08:36:47 AM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",150040689-63 +152370297,E03,15090158,Odor (Strange / Unknown),08/25/2015,08/24/2015,08/25/2015 02:21:57 AM,08/25/2015 02:29:16 AM,08/25/2015 02:29:27 AM,08/25/2015 02:30:36 AM,08/25/2015 02:33:01 AM,04/25/2016 01:08:44 PM,04/25/2016 01:08:44 PM,Fire,08/25/2015 02:40:42 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",152370297-E03 +152333327,RC1,15088948,Medical Incident,08/21/2015,08/21/2015,08/21/2015 06:56:08 PM,08/21/2015 06:57:38 PM,08/21/2015 06:58:56 PM,08/21/2015 06:58:56 PM,08/21/2015 06:58:56 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,No Merit,08/21/2015 07:02:18 PM,OCTAVIA ST/PAGE ST,San Francisco,94102,B02,36,3313,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,2,5,Hayes Valley,"(37.7738892381955, -122.42394706123)",152333327-RC1 +143510740,E15,14125289,Structure Fire,12/17/2014,12/17/2014,12/17/2014 08:17:16 AM,12/17/2014 08:17:16 AM,12/17/2014 08:17:39 AM,12/17/2014 08:19:50 AM,12/17/2014 08:21:46 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/17/2014 08:29:12 AM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",143510740-E15 +142222443,89,14077115,Medical Incident,08/10/2014,08/10/2014,08/10/2014 05:12:19 PM,08/10/2014 05:12:47 PM,08/10/2014 05:13:53 PM,08/10/2014 05:17:13 PM,08/10/2014 05:25:59 PM,08/10/2014 05:26:03 PM,08/10/2014 05:34:39 PM,Code 3 Transport,08/10/2014 06:20:33 PM,1400 Block of LA SALLE AVE,San Francisco,94124,B10,17,6517,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,10,10,Bayview Hunters Point,"(37.7349050342849, -122.386304220968)",142222443-89 +151073277,E09,15040642,Medical Incident,04/17/2015,04/17/2015,04/17/2015 07:09:59 PM,04/17/2015 07:10:55 PM,04/17/2015 07:11:22 PM,04/17/2015 07:12:52 PM,04/17/2015 07:15:12 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Code 2 Transport,04/17/2015 07:33:03 PM,2400 Block of 24TH ST,San Francisco,94110,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Mission,"(37.7530951176845, -122.403879225833)",151073277-E09 +152122936,E17,15080877,Medical Incident,07/31/2015,07/31/2015,07/31/2015 06:42:19 PM,07/31/2015 06:44:40 PM,07/31/2015 06:45:05 PM,07/31/2015 06:46:28 PM,07/31/2015 06:49:16 PM,04/25/2016 01:09:10 PM,04/25/2016 01:09:10 PM,Patient Declined Transport,07/31/2015 06:57:22 PM,1000 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7282764057526, -122.380737923208)",152122936-E17 +143173382,66,14112417,Medical Incident,11/13/2014,11/13/2014,11/13/2014 08:38:51 PM,11/13/2014 08:39:23 PM,11/13/2014 08:39:35 PM,11/13/2014 08:40:04 PM,11/13/2014 08:44:09 PM,11/13/2014 09:11:59 PM,11/13/2014 09:22:45 PM,Code 2 Transport,11/13/2014 10:10:48 PM,3200 Block of BRODERICK ST,San Francisco,94123,B04,16,4222,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8002218946625, -122.444678474843)",143173382-66 +141930576,E25,14066819,Medical Incident,07/12/2014,07/11/2014,07/12/2014 05:22:59 AM,07/12/2014 05:25:34 AM,07/12/2014 05:26:09 AM,07/12/2014 05:28:19 AM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Code 2 Transport,07/12/2014 05:49:39 AM,600 Block of KEITH ST,San Francisco,94124,B10,25,6565,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7371958243577, -122.382770664389)",141930576-E25 +142811784,83,14098865,Medical Incident,10/08/2014,10/08/2014,10/08/2014 01:16:37 PM,10/08/2014 01:16:51 PM,10/08/2014 01:17:07 PM,10/08/2014 01:17:18 PM,10/08/2014 01:29:23 PM,10/08/2014 01:40:19 PM,10/08/2014 01:42:45 PM,Code 2 Transport,10/08/2014 02:00:47 PM,HYDE ST/FULTON ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",142811784-83 +151200071,E28,15045217,Water Rescue,04/30/2015,04/29/2015,04/30/2015 12:31:33 AM,04/30/2015 12:35:13 AM,04/30/2015 12:35:55 AM,04/30/2015 12:37:40 AM,04/30/2015 12:42:36 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/30/2015 01:00:17 AM,VAN NESS AV/NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,false,Fire,1,ENGINE,4,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",151200071-E28 +160993344,55,16039449,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:51:06 PM,04/08/2016 07:52:17 PM,04/08/2016 07:52:31 PM,04/08/2016 07:52:46 PM,04/08/2016 07:58:08 PM,04/08/2016 08:12:48 PM,04/08/2016 08:33:32 PM,Code 2 Transport,04/08/2016 09:04:44 PM,3900 Block of 24TH ST,San Francisco,94114,B06,11,5522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",160993344-55 +141050205,E40,14035430,Medical Incident,04/15/2014,04/15/2014,04/15/2014 01:57:37 PM,04/15/2014 01:59:59 PM,04/15/2014 02:01:35 PM,04/15/2014 02:02:45 PM,04/15/2014 02:09:11 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 02:25:59 PM,100 Block of GRANVILLE WAY,SAN FRANCISCO,94127,B08,39,8573,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.741788979478, -122.461440084289)",141050205-E40 +141030062,88,14034679,Medical Incident,04/13/2014,04/12/2014,04/13/2014 05:41:57 AM,04/13/2014 05:42:46 AM,04/13/2014 05:43:30 AM,04/13/2014 05:43:46 AM,04/13/2014 05:51:57 AM,04/13/2014 06:05:50 AM,04/13/2014 06:21:59 AM,Code 2 Transport,04/13/2014 06:56:40 AM,STATE DR/LAKE MERCED BL,SAN FRANCISCO,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",141030062-88 +160960882,87,16037929,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:06:16 AM,04/05/2016 09:07:48 AM,04/05/2016 09:08:08 AM,04/05/2016 09:08:22 AM,04/05/2016 09:23:53 AM,04/05/2016 09:49:02 AM,04/05/2016 09:58:22 AM,Code 2 Transport,04/05/2016 10:37:41 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160960882-87 +150742497,B09,15028466,Outside Fire,03/15/2015,03/15/2015,03/15/2015 04:11:51 PM,03/15/2015 04:18:15 PM,03/15/2015 04:22:20 PM,03/15/2015 04:22:20 PM,03/15/2015 04:23:08 PM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Fire,03/15/2015 04:24:09 PM,100 Block of SANTA ROSA AVE,San Francisco,94112,B09,15,8265,3,3,3,false,Fire,1,CHIEF,2,9,11,Outer Mission,"(37.7275598591199, -122.437406172595)",150742497-B09 +153481483,E03,15134045,Medical Incident,12/14/2015,12/14/2015,12/14/2015 11:51:12 AM,12/14/2015 11:51:43 AM,12/14/2015 11:52:53 AM,12/14/2015 11:55:36 AM,12/14/2015 11:55:36 AM,04/25/2016 01:06:38 PM,04/25/2016 01:06:38 PM,Code 2 Transport,12/14/2015 12:01:44 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",153481483-E03 +160950112,52,16037479,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:06:13 AM,04/04/2016 01:10:39 AM,04/04/2016 01:14:12 AM,04/04/2016 01:14:35 AM,04/04/2016 01:27:13 AM,04/04/2016 01:38:19 AM,04/04/2016 02:04:13 AM,Code 2 Transport,04/04/2016 03:14:45 AM,3300 Block of 26TH ST,San Francisco,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7490361654123, -122.417303028119)",160950112-52 +152360731,76,15089824,Medical Incident,08/24/2015,08/23/2015,08/24/2015 07:36:20 AM,08/24/2015 07:46:27 AM,08/24/2015 07:47:18 AM,08/24/2015 07:48:00 AM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,Medical Examiner,08/24/2015 07:56:31 AM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7647586086861, -122.423602301722)",152360731-76 +153192725,E36,15122758,Alarms,11/15/2015,11/15/2015,11/15/2015 05:27:43 PM,11/15/2015 05:28:31 PM,11/15/2015 05:28:59 PM,11/15/2015 05:30:19 PM,11/15/2015 05:32:32 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Fire,11/15/2015 05:38:04 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",153192725-E36 +151123547,AM18,15042478,Medical Incident,04/22/2015,04/22/2015,04/22/2015 08:13:21 PM,04/22/2015 08:14:51 PM,04/22/2015 08:15:07 PM,04/22/2015 08:15:57 PM,04/22/2015 08:25:31 PM,04/22/2015 08:46:38 PM,04/22/2015 08:59:19 PM,Code 2 Transport,04/22/2015 09:33:56 PM,1400 Block of 6TH AVE,San Francisco,94122,B08,22,7331,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,5,Inner Sunset,"(37.7613870516024, -122.462837876303)",151123547-AM18 +150564090,B08,15021617,Alarms,02/25/2015,02/25/2015,02/25/2015 11:33:17 PM,02/25/2015 11:35:30 PM,02/25/2015 11:36:09 PM,02/25/2015 11:38:32 PM,02/25/2015 11:41:06 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Fire,02/26/2015 12:00:03 AM,3300 Block of TARAVAL ST,San Francisco,94116,B08,18,7644,3,3,3,false,Alarm,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7419408431193, -122.501944117716)",150564090-B08 +160923399,64,16036599,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:36:03 PM,04/01/2016 08:37:30 PM,04/01/2016 08:38:02 PM,04/01/2016 08:38:10 PM,04/01/2016 08:58:03 PM,04/01/2016 09:03:44 PM,04/01/2016 09:17:09 PM,Code 2 Transport,04/01/2016 09:46:38 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160923399-64 +160922665,AM16,16036535,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:12:00 PM,04/01/2016 05:13:33 PM,04/01/2016 05:15:28 PM,04/01/2016 05:16:17 PM,04/01/2016 05:47:57 PM,04/01/2016 05:47:58 PM,04/01/2016 06:21:04 PM,Code 2 Transport,04/01/2016 06:49:12 PM,0 Block of MERCURY ST,San Francisco,94124,B10,42,6447,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7319018847034, -122.401643423217)",160922665-AM16 +150593871,78,15022750,Medical Incident,02/28/2015,02/28/2015,02/28/2015 11:35:38 PM,02/28/2015 11:37:50 PM,02/28/2015 11:39:08 PM,02/28/2015 11:39:15 PM,02/28/2015 11:41:40 PM,03/01/2015 12:02:10 AM,03/01/2015 12:13:50 AM,Code 2 Transport,03/01/2015 12:45:12 AM,0 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7814037950794, -122.413702650883)",150593871-78 +161001034,89,16039686,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:47:55 AM,04/09/2016 09:48:23 AM,04/09/2016 09:48:39 AM,04/09/2016 09:52:40 AM,04/09/2016 10:03:21 AM,04/09/2016 10:15:03 AM,04/09/2016 10:43:26 AM,Code 2 Transport,04/09/2016 11:14:20 AM,POWELL ST/BEACH ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.807690493217, -122.412329558798)",161001034-89 +151792864,GATOR1,15068365,Medical Incident,06/28/2015,06/28/2015,06/28/2015 05:26:07 PM,06/28/2015 05:26:22 PM,06/28/2015 05:33:31 PM,06/28/2015 05:33:31 PM,06/28/2015 05:46:35 PM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Other,06/28/2015 07:05:01 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,SUPPORT,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",151792864-GATOR1 +160991174,63,16039252,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:39:25 AM,04/08/2016 10:40:53 AM,04/08/2016 10:41:42 AM,04/08/2016 10:41:51 AM,04/08/2016 10:59:10 AM,04/08/2016 11:10:05 AM,04/08/2016 11:32:58 AM,Code 2 Transport,04/08/2016 11:57:29 AM,100 Block of GLADEVIEW WAY,San Francisco,94131,B08,20,5361,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.752031784008, -122.450511726322)",160991174-63 +153432168,T01,15132027,Other,12/09/2015,12/09/2015,12/09/2015 02:23:09 PM,12/09/2015 02:23:09 PM,12/09/2015 02:24:22 PM,12/09/2015 02:26:27 PM,12/09/2015 02:29:02 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 02:49:54 PM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7796069319747, -122.402660683695)",153432168-T01 +160942607,88,16037346,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 04:56:40 PM,04/03/2016 04:56:40 PM,04/03/2016 04:57:26 PM,04/03/2016 04:57:37 PM,04/03/2016 05:04:41 PM,04/03/2016 05:08:52 PM,04/03/2016 05:18:23 PM,Code 3 Transport,04/03/2016 06:28:17 PM,REVERE AV/GRIFFITH ST,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7263635168567, -122.380817113123)",160942607-88 +150091761,E19,15003563,Medical Incident,01/09/2015,01/09/2015,01/09/2015 01:17:10 PM,01/09/2015 01:18:12 PM,01/09/2015 01:18:24 PM,01/09/2015 01:18:44 PM,01/09/2015 01:20:53 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Code 2 Transport,01/09/2015 01:37:04 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",150091761-E19 +160943326,78,16037421,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:52:47 PM,04/03/2016 08:55:06 PM,04/03/2016 09:03:03 PM,04/03/2016 09:03:24 PM,04/03/2016 09:12:02 PM,04/03/2016 09:26:41 PM,04/03/2016 09:58:09 PM,Code 2 Transport,04/03/2016 10:24:15 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160943326-78 +141281243,E05,14043469,Medical Incident,05/08/2014,05/08/2014,05/08/2014 10:47:59 AM,05/08/2014 10:48:34 AM,05/08/2014 10:49:15 AM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 10:50:36 AM,1200 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,3,3,3,false,Potentially Life-Threatening,1,ENGINE,5,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",141281243-E05 +152140902,E08,15081416,Medical Incident,08/02/2015,08/02/2015,08/02/2015 08:54:44 AM,08/02/2015 08:56:12 AM,08/02/2015 08:56:55 AM,08/02/2015 08:57:43 AM,08/02/2015 09:03:43 AM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Code 2 Transport,08/02/2015 09:03:57 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",152140902-E08 +152351008,RC3,15089520,Train / Rail Incident,08/23/2015,08/23/2015,08/23/2015 09:03:30 AM,08/23/2015 09:05:27 AM,08/23/2015 09:07:28 AM,08/23/2015 09:09:56 AM,08/23/2015 09:13:34 AM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Fire,08/23/2015 10:18:54 AM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,true,Fire,1,RESCUE CAPTAIN,7,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",152351008-RC3 +142730543,E31,14095605,Medical Incident,09/30/2014,09/29/2014,09/30/2014 06:35:33 AM,09/30/2014 06:35:53 AM,09/30/2014 06:36:27 AM,09/30/2014 06:38:15 AM,09/30/2014 06:40:13 AM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Code 2 Transport,09/30/2014 06:49:53 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",142730543-E31 +150681424,77,15025944,Medical Incident,03/09/2015,03/09/2015,03/09/2015 11:12:29 AM,03/09/2015 11:15:42 AM,03/09/2015 11:15:58 AM,03/09/2015 11:16:08 AM,03/09/2015 11:32:06 AM,03/09/2015 11:41:57 AM,03/09/2015 11:54:41 AM,Code 2 Transport,03/09/2015 12:22:30 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",150681424-77 +141901528,58,14065816,Medical Incident,07/09/2014,07/09/2014,07/09/2014 12:10:25 PM,07/09/2014 12:10:25 PM,07/09/2014 12:11:15 PM,07/09/2014 12:11:25 PM,07/09/2014 12:23:18 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Against Medical Advice,07/09/2014 02:03:22 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",141901528-58 +142940463,E29,14103579,Medical Incident,10/21/2014,10/20/2014,10/21/2014 05:52:06 AM,10/21/2014 05:53:21 AM,10/21/2014 05:53:33 AM,10/21/2014 05:57:43 AM,10/21/2014 05:57:43 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Code 2 Transport,10/21/2014 06:10:17 AM,2200 Block of 17TH ST,San Francisco,94103,B02,29,2421,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.7646315810414, -122.405951536611)",142940463-E29 +161002768,58,16039891,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:05:53 PM,04/09/2016 07:07:41 PM,04/09/2016 07:08:08 PM,04/09/2016 07:08:22 PM,04/09/2016 07:26:49 PM,04/09/2016 07:26:51 PM,04/09/2016 07:38:15 PM,Code 2 Transport,04/09/2016 07:58:00 PM,400 Block of HEAD ST,San Francisco,94132,B09,33,8414,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7152096464859, -122.464479764216)",161002768-58 +152481131,E29,15094616,Medical Incident,09/05/2015,09/05/2015,09/05/2015 09:39:47 AM,09/05/2015 09:39:47 AM,09/05/2015 09:39:47 AM,09/05/2015 09:39:47 AM,09/05/2015 09:39:47 AM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Code 2 Transport,09/05/2015 09:56:26 AM,200 Block of VERMONT ST,San Francisco,94103,B02,29,2422,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,10,Mission Bay,"(37.7666119536778, -122.404617787649)",152481131-E29 +153392117,E08,15130474,Medical Incident,12/05/2015,12/05/2015,12/05/2015 02:04:34 PM,12/05/2015 02:07:14 PM,12/05/2015 02:08:03 PM,12/05/2015 02:08:25 PM,12/05/2015 02:11:36 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,No Merit,12/05/2015 02:32:14 PM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",153392117-E08 +151241168,76,15046964,Medical Incident,05/04/2015,05/04/2015,05/04/2015 10:22:00 AM,05/04/2015 10:23:52 AM,05/04/2015 10:24:06 AM,05/04/2015 10:24:26 AM,05/04/2015 10:35:09 AM,05/04/2015 10:53:52 AM,05/04/2015 11:01:43 AM,Code 2 Transport,05/04/2015 11:23:58 AM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",151241168-76 +160931685,54,16036851,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:47:26 PM,04/02/2016 12:49:15 PM,04/02/2016 12:49:45 PM,04/02/2016 12:54:16 PM,04/02/2016 12:59:14 PM,04/02/2016 01:13:42 PM,04/02/2016 01:26:11 PM,Code 2 Transport,04/02/2016 01:50:54 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160931685-54 +142754184,58,14096699,Medical Incident,10/02/2014,10/02/2014,10/02/2014 11:04:08 PM,10/02/2014 11:04:18 PM,10/02/2014 11:04:59 PM,10/02/2014 11:05:45 PM,10/02/2014 11:08:49 PM,10/02/2014 11:24:16 PM,10/02/2014 11:51:25 PM,Code 2 Transport,10/03/2014 12:18:27 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",142754184-58 +160960926,62,16037933,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:15:26 AM,04/05/2016 09:17:29 AM,04/05/2016 09:18:29 AM,04/05/2016 09:19:18 AM,04/05/2016 09:29:26 AM,04/05/2016 09:44:09 AM,04/05/2016 09:58:24 AM,Code 2 Transport,04/05/2016 10:35:44 AM,TARAVAL ST/30TH AV,San Francisco,94116,B08,18,7531,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7425317860759, -122.487476479056)",160960926-62 +143311776,64,14117409,Medical Incident,11/27/2014,11/27/2014,11/27/2014 03:37:16 PM,11/27/2014 03:37:16 PM,11/27/2014 03:37:16 PM,11/27/2014 03:37:16 PM,11/27/2014 03:37:16 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Patient Declined Transport,11/27/2014 04:29:11 PM,24TH ST/CAPP ST,San Francisco,94110,B99,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7523059787388, -122.417357818307)",143311776-64 +150210663,E01,15008112,Medical Incident,01/21/2015,01/20/2015,01/21/2015 07:57:36 AM,01/21/2015 07:59:13 AM,01/21/2015 08:00:34 AM,01/21/2015 08:01:34 AM,01/21/2015 08:06:33 AM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Against Medical Advice,01/21/2015 08:19:23 AM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",150210663-E01 +152763100,E14,15105916,Medical Incident,10/03/2015,10/03/2015,10/03/2015 06:10:46 PM,10/03/2015 06:12:52 PM,10/03/2015 06:13:14 PM,10/03/2015 06:14:26 PM,10/03/2015 06:16:51 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Code 2 Transport,10/03/2015 06:25:10 PM,2200 Block of LAKE ST,San Francisco,94121,B07,14,7174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7857597027575, -122.483539028526)",152763100-E14 +143060048,T01,14108137,Structure Fire,11/02/2014,11/01/2014,11/02/2014 12:12:07 AM,11/02/2014 12:12:48 AM,11/02/2014 12:13:04 AM,11/02/2014 12:14:48 AM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Fire,11/02/2014 12:21:06 AM,STOCKTON ST/POST ST,San Francisco,94108,B01,1,1323,3,3,3,false,Alarm,1,TRUCK,9,1,3,Financial District/South Beach,"(37.7884994798068, -122.406771145217)",143060048-T01 +160931861,KM04,16036875,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:39:29 PM,04/02/2016 01:40:23 PM,04/02/2016 01:40:57 PM,04/02/2016 01:41:29 PM,04/02/2016 01:46:07 PM,04/02/2016 02:02:49 PM,04/02/2016 02:18:50 PM,Code 2 Transport,04/02/2016 02:50:19 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",160931861-KM04 +160991760,76,16039303,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:24:08 PM,04/08/2016 01:24:08 PM,04/08/2016 01:26:20 PM,04/08/2016 01:26:20 PM,04/08/2016 01:34:59 PM,04/08/2016 01:46:39 PM,04/08/2016 01:59:46 PM,Code 2 Transport,04/08/2016 02:17:06 PM,3600 Block of LYON ST,San Francisco,94123,B04,16,4323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.804271887891, -122.44827840533)",160991760-76 +141420869,E44,14048608,Administrative,05/22/2014,05/22/2014,05/22/2014 09:00:35 AM,05/22/2014 09:00:47 AM,05/22/2014 09:02:38 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Fire,05/22/2014 09:03:31 AM,1200 Block of GIRARD ST,San Francisco,94134,B10,44,6317,3,3,3,true,,1,ENGINE,1,10,10,Visitacion Valley,"(37.7171579376975, -122.400434432883)",141420869-E44 +153420363,T15,15131479,Structure Fire,12/08/2015,12/07/2015,12/08/2015 03:55:02 AM,12/08/2015 03:55:02 AM,12/08/2015 03:55:11 AM,12/08/2015 03:57:20 AM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,Fire,12/08/2015 03:59:32 AM,MISSION ST/FOOTE AV,San Francisco,94112,B09,33,6177,3,3,3,false,Alarm,1,TRUCK,2,9,11,Outer Mission,"(37.7126222176645, -122.444743290966)",153420363-T15 +151731252,KM14,15066018,Medical Incident,06/22/2015,06/22/2015,06/22/2015 11:16:51 AM,06/22/2015 11:17:18 AM,06/22/2015 11:17:29 AM,06/22/2015 11:17:58 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,No Merit,06/22/2015 11:22:33 AM,800 Block of LISBON ST,San Francisco,94112,B09,43,6174,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7158405916513, -122.438322483619)",151731252-KM14 +151681813,E01,15064232,Alarms,06/17/2015,06/17/2015,06/17/2015 12:54:13 PM,06/17/2015 12:56:02 PM,06/17/2015 12:56:25 PM,06/17/2015 12:57:54 PM,06/17/2015 12:59:55 PM,04/25/2016 01:09:57 PM,04/25/2016 01:09:57 PM,Fire,06/17/2015 01:08:17 PM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",151681813-E01 +152573228,85,15098404,Traffic Collision,09/14/2015,09/14/2015,09/14/2015 07:24:37 PM,09/14/2015 07:26:00 PM,09/14/2015 07:27:42 PM,09/14/2015 07:30:03 PM,09/14/2015 07:42:29 PM,09/14/2015 08:03:32 PM,09/14/2015 08:35:47 PM,Code 2 Transport,09/14/2015 09:13:45 PM,0 Block of HARRISON ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7892474519723, -122.389008295709)",152573228-85 +151493899,E03,15056898,Medical Incident,05/29/2015,05/29/2015,05/29/2015 10:00:28 PM,05/29/2015 10:01:27 PM,05/29/2015 10:01:50 PM,05/29/2015 10:03:30 PM,05/29/2015 10:05:15 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,Code 2 Transport,05/29/2015 10:13:38 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",151493899-E03 +143521326,57,14125728,Medical Incident,12/18/2014,12/18/2014,12/18/2014 10:59:55 AM,12/18/2014 11:01:46 AM,12/18/2014 11:02:38 AM,12/18/2014 11:02:52 AM,12/18/2014 11:29:43 AM,12/18/2014 11:29:52 AM,04/25/2016 01:13:22 PM,Code 2 Transport,12/18/2014 12:19:28 PM,0 Block of HAWTHORNE ST,San Francisco,94105,B03,1,2177,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",143521326-57 +141962766,RC3,14067994,Medical Incident,07/15/2014,07/15/2014,07/15/2014 05:14:55 PM,07/15/2014 05:17:14 PM,07/15/2014 05:17:58 PM,07/15/2014 05:19:11 PM,07/15/2014 05:21:21 PM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Code 2 Transport,07/15/2014 05:30:37 PM,400 Block of HOFFMAN AVE,San Francisco,94114,B06,24,5517,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,8,Noe Valley,"(37.750105701763, -122.440468327667)",141962766-RC3 +152930497,B04,15112472,Alarms,10/20/2015,10/19/2015,10/20/2015 06:18:59 AM,10/20/2015 06:20:10 AM,10/20/2015 06:20:26 AM,10/20/2015 06:23:13 AM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Fire,10/20/2015 06:26:14 AM,2400 Block of GEARY BLVD,San Francisco,94115,B05,10,4261,3,3,3,false,Alarm,1,CHIEF,3,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",152930497-B04 +151982815,KM01,15075543,Medical Incident,07/17/2015,07/17/2015,07/17/2015 05:03:27 PM,07/17/2015 05:04:42 PM,07/17/2015 05:05:09 PM,07/17/2015 05:05:45 PM,07/17/2015 05:21:57 PM,07/17/2015 05:31:13 PM,07/17/2015 05:39:50 PM,Code 2 Transport,07/17/2015 06:21:01 PM,0 Block of LYON ST,San Francisco,94117,B05,21,4353,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7710955690311, -122.442161127811)",151982815-KM01 +160932274,KM04,16036921,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:40:46 PM,04/02/2016 03:42:15 PM,04/02/2016 03:45:13 PM,04/02/2016 03:46:13 PM,04/02/2016 03:53:49 PM,04/02/2016 04:05:20 PM,04/02/2016 04:16:48 PM,Code 2 Transport,04/02/2016 05:02:58 PM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160932274-KM04 +160964135,75,16038217,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:04:26 PM,04/05/2016 11:07:12 PM,04/05/2016 11:07:44 PM,04/05/2016 11:07:51 PM,04/05/2016 11:20:17 PM,04/05/2016 11:23:32 PM,04/05/2016 11:24:23 PM,No Merit,04/05/2016 11:42:51 PM,ELLIS ST/CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7853882479724, -122.408667084184)",160964135-75 +160923923,70,16036647,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:10:35 PM,04/01/2016 11:10:35 PM,04/01/2016 11:10:57 PM,04/01/2016 11:11:05 PM,04/01/2016 11:11:07 PM,04/01/2016 11:29:33 PM,04/01/2016 11:40:31 PM,Code 2 Transport,04/02/2016 12:03:10 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160923923-70 +152323493,FD00A,15088630,,08/20/2015,08/20/2015,08/20/2015 08:53:57 PM,08/20/2015 08:53:57 PM,08/20/2015 09:06:02 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Cancelled,08/20/2015 09:06:14 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,SUPPORT,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",152323493-FD00A +150030025,E36,15000921,Structure Fire,01/03/2015,01/02/2015,01/03/2015 12:11:13 AM,01/03/2015 12:11:13 AM,01/03/2015 12:11:26 AM,01/03/2015 12:13:16 AM,01/03/2015 12:14:56 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Code 2 Transport,01/03/2015 12:23:43 AM,1000 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",150030025-E36 +151791325,T05,15068171,Medical Incident,06/28/2015,06/28/2015,06/28/2015 10:21:05 AM,06/28/2015 10:21:54 AM,06/28/2015 10:22:25 AM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Code 2 Transport,06/28/2015 10:23:23 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",151791325-T05 +160960379,62,16037886,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:24:24 AM,04/05/2016 05:25:37 AM,04/05/2016 05:26:15 AM,04/05/2016 05:26:43 AM,04/05/2016 05:41:19 AM,04/05/2016 06:09:43 AM,04/05/2016 06:31:06 AM,Code 2 Transport,04/05/2016 07:08:40 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160960379-62 +142871214,T03,14101105,Medical Incident,10/14/2014,10/14/2014,10/14/2014 10:29:37 AM,10/14/2014 10:29:56 AM,10/14/2014 10:30:54 AM,10/14/2014 10:32:11 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/14/2014 10:33:53 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,1363,2,2,2,false,Non Life-threatening,1,TRUCK,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",142871214-T03 +141160317,T07,14039272,Structure Fire,04/26/2014,04/26/2014,04/26/2014 07:48:56 PM,04/26/2014 07:50:43 PM,04/26/2014 07:50:50 PM,04/26/2014 07:52:09 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/26/2014 07:56:30 PM,0 Block of DAKOTA ST,SAN FRANCISCO,94107,B10,37,2614,3,3,3,false,Alarm,1,TRUCK,8,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",141160317-T07 +161000141,83,16039567,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:53:21 AM,04/09/2016 12:54:43 AM,04/09/2016 12:55:11 AM,04/09/2016 12:56:02 AM,04/09/2016 01:06:22 AM,04/09/2016 01:20:38 AM,04/09/2016 01:49:32 AM,Code 2 Transport,04/09/2016 02:36:13 AM,300 Block of HOWTH ST,San Francisco,94112,B09,15,8316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7192476254901, -122.452000571796)",161000141-83 +160982954,56,16039036,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:33:38 PM,04/07/2016 05:34:08 PM,04/07/2016 05:34:44 PM,04/07/2016 05:35:14 PM,04/07/2016 05:38:42 PM,04/07/2016 06:30:00 PM,04/07/2016 06:37:43 PM,Code 3 Transport,04/07/2016 07:39:33 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160982954-56 +141190183,AM04,14040146,Medical Incident,04/29/2014,04/29/2014,04/29/2014 11:49:36 AM,04/29/2014 11:52:27 AM,04/29/2014 12:17:50 PM,04/29/2014 12:18:34 PM,04/29/2014 12:22:46 PM,04/29/2014 12:37:49 PM,04/29/2014 12:44:09 PM,Code 2 Transport,04/29/2014 01:13:54 PM,1100 Block of PINE ST,SAN FRANCISCO,94109,B01,41,1464,,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7903887572034, -122.414938763678)",141190183-AM04 +150122071,E24,15004780,Structure Fire,01/12/2015,01/12/2015,01/12/2015 02:23:01 PM,01/12/2015 02:23:01 PM,01/12/2015 02:23:17 PM,01/12/2015 02:24:20 PM,01/12/2015 02:28:18 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Fire,01/12/2015 02:29:02 PM,300 Block of PORTOLA DR,San Francisco,94131,B06,24,8172,3,3,3,false,Alarm,1,ENGINE,1,6,8,Twin Peaks,"(37.7469637081907, -122.445755288382)",150122071-E24 +152093915,82,15079840,Medical Incident,07/28/2015,07/28/2015,07/28/2015 11:22:02 PM,07/28/2015 11:24:45 PM,07/28/2015 11:25:18 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Unable to Locate,07/28/2015 11:27:34 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",152093915-82 +150880519,E33,15033480,Medical Incident,03/29/2015,03/28/2015,03/29/2015 03:27:01 AM,03/29/2015 03:27:36 AM,03/29/2015 03:28:02 AM,03/29/2015 03:30:46 AM,03/29/2015 03:34:12 AM,04/25/2016 01:11:28 PM,04/25/2016 01:11:28 PM,Code 2 Transport,03/29/2015 04:02:06 AM,600 Block of SHIELDS ST,San Francisco,94132,B09,33,8431,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7178422382696, -122.468488213878)",150880519-E33 +151510106,E03,15057301,Medical Incident,05/31/2015,05/30/2015,05/31/2015 12:29:37 AM,05/31/2015 12:31:43 AM,05/31/2015 12:32:44 AM,05/31/2015 12:34:52 AM,05/31/2015 12:36:38 AM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Patient Declined Transport,05/31/2015 12:40:51 AM,400 Block of MASON ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7877640990096, -122.409925328419)",151510106-E03 +142371720,T06,14082429,Medical Incident,08/25/2014,08/25/2014,08/25/2014 12:40:51 PM,08/25/2014 12:41:08 PM,08/25/2014 12:46:29 PM,08/25/2014 12:48:22 PM,08/25/2014 12:49:25 PM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,No Merit,08/25/2014 12:50:52 PM,700 Block of 14TH ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7676408778052, -122.429519876751)",142371720-T06 +141100239,E19,14037163,Medical Incident,04/20/2014,04/20/2014,04/20/2014 04:56:22 PM,04/20/2014 04:57:34 PM,04/20/2014 04:59:58 PM,04/20/2014 05:01:00 PM,04/20/2014 05:06:24 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/20/2014 05:22:42 PM,300 Block of GARCES DR,SAN FRANCISCO,94132,B08,19,8484,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7161637772047, -122.482445258922)",141100239-E19 +150354188,B01,15013664,Structure Fire,02/04/2015,02/04/2015,02/04/2015 10:30:58 PM,02/04/2015 10:32:46 PM,02/04/2015 10:33:15 PM,02/04/2015 10:35:32 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Fire,02/04/2015 10:37:48 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Alarm,1,CHIEF,5,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",150354188-B01 +142630010,E01,14091816,Medical Incident,09/20/2014,09/19/2014,09/20/2014 12:03:57 AM,09/20/2014 12:04:20 AM,09/20/2014 12:04:29 AM,09/20/2014 12:05:55 AM,09/20/2014 12:07:43 AM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Code 2 Transport,09/20/2014 12:10:10 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",142630010-E01 +142581374,77,14090083,Medical Incident,09/15/2014,09/15/2014,09/15/2014 11:44:45 AM,09/15/2014 11:46:28 AM,09/15/2014 11:47:04 AM,09/15/2014 11:47:25 AM,09/15/2014 11:52:12 AM,09/15/2014 11:56:02 AM,09/15/2014 12:27:25 PM,Code 2 Transport,09/15/2014 12:33:36 PM,400 Block of LARKIN ST,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",142581374-77 +160930856,67,16036759,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:39:51 AM,04/02/2016 08:39:51 AM,04/02/2016 08:40:19 AM,04/02/2016 08:43:28 AM,04/02/2016 08:49:20 AM,04/02/2016 09:05:09 AM,04/02/2016 09:14:39 AM,Code 2 Transport,04/02/2016 09:55:36 AM,3400 Block of MISSION ST,San Francisco,94110,B06,32,5626,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7408597419405, -122.423026769778)",160930856-67 +152293628,E36,15087538,Medical Incident,08/17/2015,08/17/2015,08/17/2015 08:21:11 PM,08/17/2015 08:21:44 PM,08/17/2015 08:22:01 PM,08/17/2015 08:25:27 PM,08/17/2015 08:25:27 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Code 2 Transport,08/17/2015 08:34:15 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",152293628-E36 +150543296,E07,15020903,Explosion,02/23/2015,02/23/2015,02/23/2015 07:18:33 PM,02/23/2015 07:18:33 PM,02/23/2015 07:19:23 PM,02/23/2015 07:19:50 PM,02/23/2015 07:22:30 PM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,Fire,02/23/2015 07:22:34 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,true,Fire,1,ENGINE,3,2,9,Mission,"(37.7695749975007, -122.420224560888)",150543296-E07 +150290838,68,15011070,Traffic Collision,01/29/2015,01/29/2015,01/29/2015 08:34:06 AM,01/29/2015 08:35:23 AM,01/29/2015 08:35:39 AM,01/29/2015 08:35:50 AM,01/29/2015 08:41:59 AM,01/29/2015 08:54:46 AM,01/29/2015 09:25:36 AM,Code 2 Transport,01/29/2015 10:08:44 AM,SAN JOSE AV/GENEVA AV,San Francisco,94112,B09,15,8311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",150290838-68 +160942602,62,16037344,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:55:17 PM,04/03/2016 04:55:17 PM,04/03/2016 04:56:26 PM,04/03/2016 04:56:32 PM,04/03/2016 04:58:44 PM,04/03/2016 05:07:09 PM,04/03/2016 05:19:33 PM,Code 2 Transport,04/03/2016 05:51:59 PM,JERROLD AV/BARNEVELD AV,San Francisco,94124,B10,9,6412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7463340944535, -122.402698013436)",160942602-62 +142273873,E19,14079056,Medical Incident,08/15/2014,08/15/2014,08/15/2014 11:09:13 PM,08/15/2014 11:09:13 PM,08/15/2014 11:19:20 PM,08/15/2014 11:20:33 PM,08/15/2014 11:24:03 PM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,Code 2 Transport,08/15/2014 11:34:22 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,2,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",142273873-E19 +160922362,AM12,16036508,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:00:41 PM,04/01/2016 04:00:41 PM,04/01/2016 04:01:25 PM,04/01/2016 04:01:48 PM,04/01/2016 04:13:24 PM,04/01/2016 04:25:22 PM,04/01/2016 05:12:55 PM,Code 2 Transport,04/01/2016 05:44:03 PM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7927299343809, -122.40328650281)",160922362-AM12 +150483734,E03,15018778,Alarms,02/17/2015,02/17/2015,02/17/2015 10:08:54 PM,02/17/2015 10:09:06 PM,02/17/2015 10:10:56 PM,02/17/2015 10:10:56 PM,02/17/2015 10:12:26 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/17/2015 10:13:20 PM,LEAVENWORTH ST/GOLDEN GATE AV,San Francisco,94102,B02,1,1546,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",150483734-E03 +151431418,RS2,15054347,Structure Fire,05/23/2015,05/23/2015,05/23/2015 11:20:03 AM,05/23/2015 11:21:44 AM,05/23/2015 11:22:10 AM,05/23/2015 11:24:14 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Fire,05/23/2015 11:28:43 AM,200 Block of BRIGHT ST,San Francisco,94132,B09,33,8414,3,3,3,false,Alarm,1,RESCUE SQUAD,8,9,11,Oceanview/Merced/Ingleside,"(37.7152184350977, -122.463441226301)",151431418-RS2 +160922675,67,16036537,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:16:19 PM,04/01/2016 05:17:13 PM,04/01/2016 05:17:32 PM,04/01/2016 05:17:40 PM,04/01/2016 05:28:47 PM,04/01/2016 06:17:53 PM,04/01/2016 06:17:58 PM,Code 2 Transport,04/01/2016 06:59:49 PM,NORTH STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160922675-67 +143130457,T03,14110780,Citizen Assist / Service Call,11/09/2014,11/08/2014,11/09/2014 02:42:35 AM,11/09/2014 02:43:51 AM,11/09/2014 02:46:01 AM,11/09/2014 02:47:18 AM,11/09/2014 02:48:57 AM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/09/2014 02:55:21 AM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7844637837491, -122.417824560275)",143130457-T03 +160933898,63,16037082,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:17:52 PM,04/02/2016 11:18:34 PM,04/02/2016 11:19:05 PM,04/02/2016 11:19:17 PM,04/02/2016 11:47:16 PM,04/02/2016 11:47:20 PM,04/02/2016 11:54:23 PM,Code 2 Transport,04/03/2016 12:30:42 AM,0 Block of BACHE ST,San Francisco,94110,B06,32,5751,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7344393110914, -122.417593854342)",160933898-63 +151242694,E43,15047091,Medical Incident,05/04/2015,05/04/2015,05/04/2015 05:40:42 PM,05/04/2015 05:42:41 PM,05/04/2015 05:42:52 PM,05/04/2015 05:44:18 PM,05/04/2015 05:45:26 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Patient Declined Transport,05/04/2015 06:03:43 PM,300 Block of MOSCOW ST,San Francisco,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7220134926276, -122.426997006948)",151242694-E43 +150563014,E08,15021526,,02/25/2015,02/25/2015,02/25/2015 06:03:00 PM,02/25/2015 06:05:00 PM,02/25/2015 06:06:00 PM,02/25/2015 06:08:00 PM,02/25/2015 06:16:00 PM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,SFPD,02/25/2015 06:43:00 PM,BRYANT ST/5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",150563014-E08 +143371027,54,14119465,Medical Incident,12/03/2014,12/03/2014,12/03/2014 08:28:55 AM,12/03/2014 08:29:43 AM,12/03/2014 08:29:58 AM,12/03/2014 08:30:19 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Unable to Locate,12/03/2014 08:37:04 AM,26TH ST/MISSION ST,San Francisco,94110,B06,11,5613,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7490412884368, -122.418135251703)",143371027-54 +151150090,E11,15043305,Traffic Collision,04/25/2015,04/24/2015,04/25/2015 12:33:12 AM,04/25/2015 12:37:14 AM,04/25/2015 12:37:25 AM,04/25/2015 12:39:28 AM,04/25/2015 12:40:49 AM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Code 2 Transport,04/25/2015 01:02:43 AM,3100 Block of MISSION ST,San Francisco,94110,B06,11,5624,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7474955268543, -122.418732763058)",151150090-E11 +152243399,KM11,15085521,Medical Incident,08/12/2015,08/12/2015,08/12/2015 08:00:47 PM,08/12/2015 08:02:21 PM,08/12/2015 08:02:32 PM,08/12/2015 08:03:06 PM,08/12/2015 08:08:02 PM,08/12/2015 08:37:11 PM,08/12/2015 08:37:15 PM,Code 2 Transport,08/12/2015 09:00:32 PM,FREMONT ST/MISSION ST,San Francisco,94105,B03,35,2126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.790461066593, -122.396689696588)",152243399-KM11 +150891383,E06,15033933,Medical Incident,03/30/2015,03/30/2015,03/30/2015 11:50:51 AM,03/30/2015 11:52:08 AM,03/30/2015 11:52:27 AM,03/30/2015 11:53:16 AM,03/30/2015 11:56:33 AM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Code 2 Transport,03/30/2015 12:03:25 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",150891383-E06 +143104212,E35,14109955,Outside Fire,11/06/2014,11/06/2014,11/06/2014 11:42:16 PM,11/06/2014 11:42:16 PM,11/06/2014 11:42:36 PM,11/06/2014 11:47:07 PM,11/06/2014 11:47:07 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Fire,11/06/2014 11:47:12 PM,3RD ST/BERRY ST,San Francisco,94158,B03,8,2171,3,3,3,true,Alarm,1,ENGINE,3,3,6,Mission Bay,"(37.7775532772091, -122.391121418858)",143104212-E35 +151350001,KM03,15051067,Medical Incident,05/15/2015,05/14/2015,05/15/2015 12:00:04 AM,05/15/2015 12:00:42 AM,05/15/2015 12:02:23 AM,05/15/2015 12:03:11 AM,05/15/2015 12:11:19 AM,05/15/2015 12:29:50 AM,05/15/2015 12:52:52 AM,Code 3 Transport,05/15/2015 01:36:06 AM,900 Block of FELTON ST,San Francisco,94134,B09,42,6147,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7276379267754, -122.413989306516)",151350001-KM03 +141140245,RS1,14038520,Structure Fire,04/24/2014,04/24/2014,04/24/2014 03:27:30 PM,04/24/2014 03:29:24 PM,04/24/2014 03:30:13 PM,04/24/2014 03:31:47 PM,04/24/2014 03:37:05 PM,04/25/2016 01:17:42 PM,04/25/2016 01:17:42 PM,Fire,04/24/2014 03:44:09 PM,0 Block of POWELL ST,SAN FRANCISCO,94102,B03,1,1364,3,3,3,false,Alarm,1,RESCUE SQUAD,8,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",141140245-RS1 +160932752,KM04,16036969,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:43:41 PM,04/02/2016 05:45:28 PM,04/02/2016 06:13:25 PM,04/02/2016 06:13:25 PM,04/02/2016 06:22:38 PM,04/02/2016 06:38:42 PM,04/02/2016 06:54:57 PM,Code 2 Transport,04/02/2016 07:40:01 PM,3100 Block of KAMILLE CT,San Francisco,94110,B06,7,5614,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7487950591223, -122.413176365916)",160932752-KM04 +150221895,E17,15008594,Medical Incident,01/22/2015,01/22/2015,01/22/2015 01:54:59 PM,01/22/2015 01:56:01 PM,01/22/2015 01:56:20 PM,01/22/2015 01:58:02 PM,01/22/2015 02:00:33 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Code 2 Transport,01/22/2015 02:17:34 PM,1700 Block of REVERE AVE,San Francisco,94124,B10,17,6514,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7330651667655, -122.392752918729)",150221895-E17 +153070555,E15,15117858,Traffic Collision,11/03/2015,11/02/2015,11/03/2015 07:00:53 AM,11/03/2015 07:00:53 AM,11/03/2015 07:01:10 AM,11/03/2015 07:02:16 AM,11/03/2015 07:04:27 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Code 2 Transport,11/03/2015 07:10:55 AM,GENEVA AV/DELANO AV,San Francisco,94112,B09,15,833,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7200867053727, -122.445127871312)",153070555-E15 +161010560,64,16040066,Medical Incident,04/10/2016,04/09/2016,04/10/2016 03:42:55 AM,04/10/2016 03:44:17 AM,04/10/2016 03:45:08 AM,04/10/2016 03:46:47 AM,04/10/2016 03:50:48 AM,04/10/2016 04:00:10 AM,04/10/2016 04:17:38 AM,Code 2 Transport,04/10/2016 04:49:37 AM,500 Block of 3RD ST,San Francisco,94107,B03,08,2173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7805661978095, -122.394799124177)",161010560-64 +141130110,E21,14038062,,04/23/2014,04/23/2014,04/23/2014 09:19:00 AM,04/23/2014 09:20:00 AM,04/23/2014 09:20:00 AM,04/23/2014 09:21:00 AM,04/23/2014 09:23:00 AM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,SFPD,04/23/2014 09:28:00 AM,1400 Block of HAIGHT ST,SAN FRANCISCO,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",141130110-E21 +141060148,E02,14035708,Medical Incident,04/16/2014,04/16/2014,04/16/2014 09:47:25 AM,04/16/2014 09:50:04 AM,04/16/2014 09:52:46 AM,04/16/2014 09:52:46 AM,04/16/2014 09:54:55 AM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,Code 2 Transport,04/16/2014 10:04:39 AM,400 Block of STOCKTON ST,SAN FRANCISCO,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7898930161582, -122.407112815209)",141060148-E02 +143552553,B01,14126983,Alarms,12/21/2014,12/21/2014,12/21/2014 04:03:58 PM,12/21/2014 04:04:58 PM,12/21/2014 04:08:28 PM,12/21/2014 04:10:15 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 04:15:52 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7824182864419, -122.403869611535)",143552553-B01 +151722042,E35,15065729,Medical Incident,06/21/2015,06/21/2015,06/21/2015 03:15:45 PM,06/21/2015 03:16:42 PM,06/21/2015 03:17:00 PM,06/21/2015 03:18:38 PM,06/21/2015 03:21:01 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Patient Declined Transport,06/21/2015 03:23:05 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",151722042-E35 +142022376,E02,14069949,Medical Incident,07/21/2014,07/21/2014,07/21/2014 04:35:11 PM,07/21/2014 04:39:25 PM,07/21/2014 04:40:34 PM,07/21/2014 04:42:23 PM,07/21/2014 04:45:25 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Code 2 Transport,07/21/2014 05:26:21 PM,1200 Block of STOCKTON ST,San Francisco,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7970067945044, -122.408562639884)",142022376-E02 +151353956,74,15051487,Medical Incident,05/15/2015,05/15/2015,05/15/2015 10:36:09 PM,05/15/2015 10:37:07 PM,05/15/2015 10:50:24 PM,05/15/2015 10:50:44 PM,05/15/2015 11:04:55 PM,05/15/2015 11:18:07 PM,05/15/2015 11:25:54 PM,Code 3 Transport,05/16/2015 12:00:26 AM,5600 Block of ANZA ST,San Francisco,94121,B07,34,7276,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7771231360845, -122.508698316635)",151353956-74 +153231997,E33,15124287,Medical Incident,11/19/2015,11/19/2015,11/19/2015 01:31:16 PM,11/19/2015 01:32:48 PM,11/19/2015 01:34:03 PM,11/19/2015 01:36:04 PM,11/19/2015 01:38:03 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Code 2 Transport,11/19/2015 01:55:03 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",153231997-E33 +143391641,E07,14120339,Medical Incident,12/05/2014,12/05/2014,12/05/2014 12:05:23 PM,12/05/2014 12:05:46 PM,12/05/2014 12:07:02 PM,12/05/2014 12:07:02 PM,12/05/2014 12:08:06 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 12:13:22 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",143391641-E07 +160930646,88,16036734,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:54:11 AM,04/02/2016 06:55:39 AM,04/02/2016 06:56:32 AM,04/02/2016 06:57:05 AM,04/02/2016 07:03:02 AM,04/02/2016 07:24:32 AM,04/02/2016 07:42:00 AM,Code 2 Transport,04/02/2016 08:17:06 AM,100 Block of ELLINGTON AVE,San Francisco,94112,B09,43,8334,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7145087398157, -122.44369163229)",160930646-88 +160974428,KM07,16038695,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:21:51 PM,04/06/2016 10:22:19 PM,04/06/2016 10:22:31 PM,04/06/2016 10:22:57 PM,04/06/2016 10:28:04 PM,04/06/2016 10:40:48 PM,04/06/2016 10:54:50 PM,Code 2 Transport,04/06/2016 11:37:14 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160974428-KM07 +150533362,63,15020551,Medical Incident,02/22/2015,02/22/2015,02/22/2015 10:00:01 PM,02/22/2015 10:02:29 PM,02/22/2015 10:02:48 PM,02/22/2015 10:02:58 PM,02/22/2015 10:07:36 PM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,No Merit,02/22/2015 10:09:33 PM,0 Block of CABRILLO ST,San Francisco,94118,B07,31,7121,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7755376101744, -122.459021681906)",150533362-63 +160943738,AM24,16037462,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:20:45 PM,04/03/2016 11:22:05 PM,04/03/2016 11:22:30 PM,04/03/2016 11:22:57 PM,04/03/2016 11:33:57 PM,04/03/2016 11:58:32 PM,04/04/2016 12:19:00 AM,Code 2 Transport,04/04/2016 12:37:14 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160943738-AM24 +141050132,E07,14035369,Medical Incident,04/15/2014,04/15/2014,04/15/2014 10:35:43 AM,04/15/2014 10:37:51 AM,04/15/2014 10:38:13 AM,04/15/2014 10:38:34 AM,04/15/2014 10:40:57 AM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 10:44:35 AM,11TH ST/MISSION ST,SAN FRANCISCO,94103,B02,36,5116,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",141050132-E07 +152410978,B03,15091801,Alarms,08/29/2015,08/29/2015,08/29/2015 08:08:20 AM,08/29/2015 08:09:50 AM,08/29/2015 08:10:06 AM,08/29/2015 08:12:29 AM,08/29/2015 08:14:47 AM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 08:15:26 AM,100 Block of TOWNSEND ST,San Francisco,94107,B03,8,2154,3,3,3,false,Alarm,1,CHIEF,3,3,6,Mission Bay,"(37.7796910137658, -122.391588816975)",152410978-B03 +152860487,T02,15109736,Structure Fire,10/13/2015,10/12/2015,10/13/2015 05:39:05 AM,10/13/2015 05:39:05 AM,10/13/2015 05:39:41 AM,10/13/2015 05:41:28 AM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Code 2 Transport,10/13/2015 05:42:39 AM,COLUMBUS AV/UNION ST,San Francisco,94133,B01,28,1334,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8003154984429, -122.410206543893)",152860487-T02 +161000660,AM02,16039640,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:51:20 AM,04/09/2016 06:51:20 AM,04/09/2016 06:51:36 AM,04/09/2016 06:51:59 AM,04/09/2016 06:57:15 AM,04/09/2016 07:09:35 AM,04/09/2016 07:24:15 AM,Code 2 Transport,04/09/2016 08:09:53 AM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",161000660-AM02 +150641370,E37,15024407,Medical Incident,03/05/2015,03/05/2015,03/05/2015 10:40:08 AM,03/05/2015 10:41:47 AM,03/05/2015 10:41:53 AM,03/05/2015 10:42:11 AM,03/05/2015 10:45:06 AM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Other,03/05/2015 10:52:06 AM,25TH ST/CONNECTICUT ST,San Francisco,94107,B10,37,2614,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",150641370-E37 +142100047,E07,14072658,Medical Incident,07/29/2014,07/28/2014,07/29/2014 12:32:21 AM,07/29/2014 12:33:11 AM,07/29/2014 12:33:35 AM,07/29/2014 12:35:16 AM,07/29/2014 12:38:59 AM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Code 2 Transport,07/29/2014 12:44:29 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",142100047-E07 +160950185,78,16037489,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:17:21 AM,04/04/2016 02:18:10 AM,04/04/2016 02:18:46 AM,04/04/2016 02:18:54 AM,04/04/2016 02:22:45 AM,04/04/2016 02:32:11 AM,04/04/2016 03:00:17 AM,Code 2 Transport,04/04/2016 03:30:45 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160950185-78 +142670289,B02,14093346,Alarms,09/24/2014,09/23/2014,09/24/2014 02:42:42 AM,09/24/2014 02:44:07 AM,09/24/2014 02:45:11 AM,09/24/2014 02:47:08 AM,09/24/2014 02:50:36 AM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/24/2014 03:26:30 AM,800 Block of FRANKLIN ST,San Francisco,94102,B02,36,3216,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7819947126055, -122.422254006576)",142670289-B02 +152251422,E13,15085724,Alarms,08/13/2015,08/13/2015,08/13/2015 11:12:14 AM,08/13/2015 11:13:26 AM,08/13/2015 11:24:47 AM,08/13/2015 11:26:37 AM,08/13/2015 11:46:39 AM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/13/2015 01:00:06 PM,100 Block of PORTOLA DR,San Francisco,94131,B06,24,5354,3,3,3,true,Alarm,1,ENGINE,4,6,8,Twin Peaks,"(37.7484965077695, -122.444276468858)",152251422-E13 +150170791,E36,15006609,Structure Fire,01/17/2015,01/16/2015,01/17/2015 07:18:25 AM,01/17/2015 07:18:25 AM,01/17/2015 07:19:08 AM,01/17/2015 07:22:24 AM,01/17/2015 07:23:52 AM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Cancelled,01/17/2015 07:24:37 AM,9TH ST/HOWARD ST,San Francisco,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",150170791-E36 +160992213,KM01,16039348,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:13:51 PM,04/08/2016 03:16:35 PM,04/08/2016 03:16:55 PM,04/08/2016 03:17:25 PM,04/08/2016 03:33:47 PM,04/08/2016 04:05:49 PM,04/08/2016 04:16:28 PM,Code 3 Transport,04/08/2016 05:34:50 PM,1700 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160992213-KM01 +160971390,65,16038365,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:39:14 AM,04/06/2016 10:39:42 AM,04/06/2016 10:40:03 AM,04/06/2016 10:40:19 AM,04/06/2016 10:59:06 AM,04/06/2016 11:10:00 AM,04/06/2016 11:21:27 AM,Code 2 Transport,04/06/2016 11:59:05 AM,500 Block of TERRY A FRANCOIS BLVD,San Francisco,94158,B03,4,2364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7699167000745, -122.386442168137)",160971390-65 +142943600,E22,14103835,Medical Incident,10/21/2014,10/21/2014,10/21/2014 10:03:11 PM,10/21/2014 10:04:20 PM,10/21/2014 10:04:41 PM,10/21/2014 10:08:40 PM,10/21/2014 10:08:40 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,Code 2 Transport,10/21/2014 10:15:40 PM,1500 Block of 10TH AVE,San Francisco,94122,B08,22,7344,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7593341109976, -122.466988064549)",142943600-E22 +141010074,E31,14034020,Medical Incident,04/11/2014,04/11/2014,04/11/2014 08:04:20 AM,04/11/2014 08:05:53 AM,04/11/2014 08:06:18 AM,04/11/2014 08:07:44 AM,04/11/2014 08:11:48 AM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Patient Declined Transport,04/11/2014 08:28:04 AM,700 Block of 6TH AVE,SAN FRANCISCO,94118,B07,31,7132,3,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7744933641566, -122.463881451148)",141010074-E31 +141190241,RC3,14040193,Traffic Collision,04/29/2014,04/29/2014,04/29/2014 02:00:18 PM,04/29/2014 02:00:52 PM,04/29/2014 02:04:20 PM,04/29/2014 02:05:52 PM,04/29/2014 02:12:28 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Code 2 Transport,04/29/2014 02:43:01 PM,300 Block of MAYNARD ST,SAN FRANCISCO,94112,B09,32,5683,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,9,11,Excelsior,"(37.7299407202717, -122.422848816355)",141190241-RC3 +142511020,66,14087491,Medical Incident,09/08/2014,09/08/2014,09/08/2014 10:01:38 AM,09/08/2014 10:03:42 AM,09/08/2014 10:06:52 AM,09/08/2014 10:07:44 AM,09/08/2014 10:19:35 AM,09/08/2014 10:52:33 AM,09/08/2014 11:08:31 AM,Code 2 Transport,09/08/2014 11:35:30 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",142511020-66 +142790130,E42,14098003,Traffic Collision,10/06/2014,10/05/2014,10/06/2014 01:08:44 AM,10/06/2014 01:11:02 AM,10/06/2014 01:12:38 AM,10/06/2014 01:15:01 AM,10/06/2014 01:17:57 AM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Code 2 Transport,10/06/2014 02:05:26 AM,100 Block of ALEMANY BLVD,San Francisco,94110,B10,42,6374,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",142790130-E42 +151360417,55,15051550,Medical Incident,05/16/2015,05/15/2015,05/16/2015 03:13:59 AM,05/16/2015 03:16:57 AM,05/16/2015 03:17:55 AM,05/16/2015 03:18:03 AM,05/16/2015 03:26:59 AM,05/16/2015 03:48:23 AM,05/16/2015 04:22:18 AM,Code 2 Transport,05/16/2015 04:52:43 AM,1400 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7497020110556, -122.420499334167)",151360417-55 +151722260,E31,15065751,Structure Fire,06/21/2015,06/21/2015,06/21/2015 04:24:50 PM,06/21/2015 04:24:50 PM,06/21/2015 04:25:57 PM,06/21/2015 04:27:23 PM,06/21/2015 04:29:44 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Fire,06/21/2015 04:41:22 PM,700 Block of 16TH AVE,San Francisco,94118,B07,31,715,3,3,3,false,Alarm,1,ENGINE,2,7,1,Outer Richmond,"(37.773947007152, -122.474549425866)",151722260-E31 +152360261,E12,15089787,Medical Incident,08/24/2015,08/23/2015,08/24/2015 02:41:46 AM,08/24/2015 02:42:22 AM,08/24/2015 02:43:14 AM,08/24/2015 02:44:50 AM,08/24/2015 02:47:39 AM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,Code 3 Transport,08/24/2015 02:58:54 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",152360261-E12 +143100450,54,14109616,Medical Incident,11/06/2014,11/05/2014,11/06/2014 06:05:46 AM,11/06/2014 06:05:46 AM,11/06/2014 06:06:17 AM,11/06/2014 06:07:55 AM,11/06/2014 06:31:03 AM,11/06/2014 06:52:34 AM,11/06/2014 07:30:18 AM,Code 2 Transport,11/06/2014 08:47:44 AM,800 Block of TREAT AVE,San Francisco,94110,B06,7,545,A,E,3,false,Potentially Life-Threatening,1,MEDIC,4,6,9,Mission,"(37.7565605303297, -122.413439435953)",143100450-54 +152543362,E12,15097280,Medical Incident,09/11/2015,09/11/2015,09/11/2015 07:44:58 PM,09/11/2015 07:45:27 PM,09/11/2015 07:46:44 PM,09/11/2015 07:47:23 PM,09/11/2015 07:50:00 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Patient Declined Transport,09/11/2015 07:58:11 PM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",152543362-E12 +161000915,64,16039674,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:59:26 AM,04/09/2016 08:59:45 AM,04/09/2016 09:00:16 AM,04/09/2016 09:00:27 AM,04/09/2016 09:07:46 AM,04/09/2016 09:24:57 AM,04/09/2016 09:50:34 AM,Code 2 Transport,04/09/2016 10:20:14 AM,1600 Block of 48TH AVE,San Francisco,94122,B08,23,7724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7556644793089, -122.507808351695)",161000915-64 +143260691,81,14115383,Medical Incident,11/22/2014,11/21/2014,11/22/2014 06:35:09 AM,11/22/2014 06:37:11 AM,11/22/2014 06:47:29 AM,11/22/2014 06:47:36 AM,11/22/2014 06:58:05 AM,11/22/2014 07:10:44 AM,11/22/2014 07:25:33 AM,Code 2 Transport,11/22/2014 07:59:54 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143260691-81 +151350153,E06,15051086,Medical Incident,05/15/2015,05/14/2015,05/15/2015 01:00:26 AM,05/15/2015 01:00:26 AM,05/15/2015 01:01:09 AM,05/15/2015 01:03:05 AM,05/15/2015 01:05:16 AM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,Code 2 Transport,05/15/2015 01:17:49 AM,14TH ST/MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7682736543413, -122.419981513232)",151350153-E06 +160994058,55,16039536,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:33:07 PM,04/08/2016 11:33:34 PM,04/08/2016 11:33:51 PM,04/08/2016 11:34:11 PM,04/08/2016 11:48:33 PM,04/09/2016 12:05:56 AM,04/09/2016 12:35:29 AM,Code 2 Transport,04/09/2016 01:36:29 AM,500 Block of SAWYER ST,San Francisco,94134,B09,44,6251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7106933191259, -122.415583396236)",160994058-55 +150690349,55,15026236,Medical Incident,03/10/2015,03/09/2015,03/10/2015 03:58:13 AM,03/10/2015 03:59:30 AM,03/10/2015 03:59:53 AM,03/10/2015 04:00:09 AM,03/10/2015 04:11:59 AM,03/10/2015 04:30:03 AM,03/10/2015 04:49:35 AM,Code 2 Transport,03/10/2015 05:30:41 AM,20TH ST/3RD ST,San Francisco,94107,B10,37,2665,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",150690349-55 +160930892,62,16036763,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:49:52 AM,04/02/2016 08:52:24 AM,04/02/2016 08:53:05 AM,04/02/2016 08:53:55 AM,04/02/2016 09:13:38 AM,04/02/2016 09:35:00 AM,04/02/2016 09:54:48 AM,Code 2 Transport,04/02/2016 10:35:04 AM,OFARRELL ST/POLK ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",160930892-62 +153152538,E03,15121114,Medical Incident,11/11/2015,11/11/2015,11/11/2015 04:20:25 PM,11/11/2015 04:20:47 PM,11/11/2015 04:25:06 PM,11/11/2015 04:26:32 PM,04/25/2016 01:07:16 PM,04/25/2016 01:07:16 PM,04/25/2016 01:07:16 PM,Code 2 Transport,11/11/2015 04:27:10 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,3,Financial District/South Beach,"(37.7851034545661, -122.407707096397)",153152538-E03 +160922194,84,16036486,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:14:21 PM,04/01/2016 03:16:35 PM,04/01/2016 03:17:15 PM,04/01/2016 03:19:13 PM,04/01/2016 03:30:35 PM,04/01/2016 04:05:46 PM,04/01/2016 04:24:50 PM,Code 2 Transport,04/01/2016 05:06:04 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",160922194-84 +160992096,67,16039337,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:44:17 PM,04/08/2016 02:44:37 PM,04/08/2016 02:45:27 PM,04/08/2016 02:45:32 PM,04/08/2016 02:50:08 PM,04/08/2016 03:05:36 PM,04/08/2016 03:31:17 PM,Code 3 Transport,04/08/2016 04:10:44 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160992096-67 +141982342,E51,14068610,Medical Incident,07/17/2014,07/17/2014,07/17/2014 04:04:40 PM,07/17/2014 04:06:48 PM,07/17/2014 04:08:01 PM,07/17/2014 04:08:21 PM,07/17/2014 04:14:51 PM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,No Merit,07/17/2014 04:15:39 PM,0 Block of MALLORCA WAY,San Francisco,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8011205431739, -122.437458335533)",141982342-E51 +160963675,KM07,16038176,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:26:25 PM,04/05/2016 08:27:03 PM,04/05/2016 08:27:24 PM,04/05/2016 08:28:03 PM,04/05/2016 08:56:41 PM,04/05/2016 08:56:43 PM,04/05/2016 09:05:06 PM,Code 2 Transport,04/05/2016 10:03:19 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160963675-KM07 +151230365,88,15046547,Medical Incident,05/03/2015,05/02/2015,05/03/2015 02:24:29 AM,05/03/2015 02:27:55 AM,05/03/2015 02:31:28 AM,05/03/2015 02:31:28 AM,05/03/2015 02:43:44 AM,05/03/2015 03:12:00 AM,05/03/2015 03:43:12 AM,Code 2 Transport,05/03/2015 04:12:26 AM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",151230365-88 +160982056,KM10,16038932,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:32:30 PM,04/07/2016 01:34:50 PM,04/07/2016 01:38:06 PM,04/07/2016 01:38:24 PM,04/07/2016 01:46:32 PM,04/07/2016 02:07:26 PM,04/07/2016 02:36:28 PM,Code 2 Transport,04/07/2016 03:00:52 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160982056-KM10 +160942003,85,16037276,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:56:15 PM,04/03/2016 01:57:06 PM,04/03/2016 01:57:30 PM,04/03/2016 01:59:26 PM,04/03/2016 02:01:41 PM,04/03/2016 02:22:13 PM,04/03/2016 02:34:12 PM,Code 2 Transport,04/03/2016 03:02:29 PM,BRYANT ST/17TH ST,San Francisco,94110,B02,29,5242,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7643099865933, -122.410363751269)",160942003-85 +151480618,E03,15056222,Medical Incident,05/28/2015,05/27/2015,05/28/2015 07:44:08 AM,05/28/2015 07:46:58 AM,05/28/2015 07:47:56 AM,05/28/2015 07:49:13 AM,05/28/2015 07:52:11 AM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Code 2 Transport,05/28/2015 07:59:54 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",151480618-E03 +142351441,74,14081689,Medical Incident,08/23/2014,08/23/2014,08/23/2014 11:45:29 AM,08/23/2014 11:46:45 AM,08/23/2014 11:47:06 AM,08/23/2014 11:47:12 AM,08/23/2014 11:56:38 AM,08/23/2014 12:08:46 PM,08/23/2014 12:30:15 PM,Code 2 Transport,08/23/2014 01:21:49 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7514438314246, -122.41829760412)",142351441-74 +160952906,71,16037723,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:16:58 PM,04/04/2016 05:19:26 PM,04/04/2016 05:22:29 PM,04/04/2016 05:22:39 PM,04/04/2016 05:30:18 PM,04/04/2016 05:50:17 PM,04/04/2016 05:56:49 PM,Code 2 Transport,04/04/2016 06:45:11 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160952906-71 +141610478,E44,14055393,Medical Incident,06/10/2014,06/09/2014,06/10/2014 06:42:03 AM,06/10/2014 06:42:45 AM,06/10/2014 06:43:26 AM,06/10/2014 06:44:00 AM,06/10/2014 06:47:23 AM,06/10/2014 07:06:55 AM,06/10/2014 07:23:54 AM,Code 3 Transport,06/10/2014 07:36:05 AM,3300 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7197749568073, -122.400653137346)",141610478-E44 +161001985,AM16,16039804,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:12:46 PM,04/09/2016 03:13:01 PM,04/09/2016 03:13:17 PM,04/09/2016 03:13:54 PM,04/09/2016 03:18:27 PM,04/09/2016 03:40:24 PM,04/09/2016 04:05:32 PM,Code 2 Transport,04/09/2016 04:36:50 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",161001985-AM16 +161001343,KM12,16039729,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:30:34 AM,04/09/2016 11:31:59 AM,04/09/2016 11:32:25 AM,04/09/2016 11:33:08 AM,04/09/2016 11:54:14 AM,04/09/2016 11:58:44 AM,04/09/2016 12:13:34 PM,Code 2 Transport,04/09/2016 12:44:36 PM,800 Block of WASHINGTON ST,San Francisco,94108,B01,2,1331,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7949240919282, -122.407771230175)",161001343-KM12 +160922985,85,16036557,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:24:05 PM,04/01/2016 06:25:29 PM,04/01/2016 06:25:51 PM,04/01/2016 06:26:05 PM,04/01/2016 06:31:04 PM,04/01/2016 06:42:33 PM,04/01/2016 06:44:40 PM,Code 3 Transport,04/01/2016 07:37:24 PM,2500 Block of BRYANT ST,San Francisco,94110,B06,7,5474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7536039830321, -122.409137616637)",160922985-85 +152173214,E02,15082731,Medical Incident,08/05/2015,08/05/2015,08/05/2015 06:33:19 PM,08/05/2015 06:35:08 PM,08/05/2015 06:35:52 PM,08/05/2015 06:37:17 PM,08/05/2015 06:37:17 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 06:40:43 PM,1400 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7992531925554, -122.409031505971)",152173214-E02 +142912686,T14,14102719,Structure Fire,10/18/2014,10/18/2014,10/18/2014 05:06:45 PM,10/18/2014 05:06:45 PM,10/18/2014 05:07:21 PM,10/18/2014 05:10:19 PM,10/18/2014 05:11:20 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Fire,10/18/2014 05:33:25 PM,400 Block of 30TH AVE,San Francisco,94121,B07,14,722,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",142912686-T14 +141400162,89,14047851,Medical Incident,05/20/2014,05/19/2014,05/20/2014 01:43:53 AM,05/20/2014 01:47:39 AM,05/20/2014 01:49:19 AM,05/20/2014 01:49:43 AM,05/20/2014 01:53:23 AM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,No Merit,05/20/2014 01:58:20 AM,200 Block of MARINA BLVD,San Francisco,94123,B04,16,3561,3,3,3,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8064044780344, -122.43650488639)",141400162-89 +151202151,61,15045434,Medical Incident,04/30/2015,04/30/2015,04/30/2015 02:17:34 PM,04/30/2015 02:18:12 PM,04/30/2015 02:18:37 PM,04/30/2015 02:18:47 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,Code 2 Transport,04/30/2015 02:20:01 PM,700 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,5,5,Haight Ashbury,"(37.7716381141296, -122.434564848231)",151202151-61 +160972416,AM16,16038463,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:55:23 PM,04/06/2016 02:30:04 PM,04/06/2016 02:33:39 PM,04/06/2016 02:34:45 PM,04/06/2016 02:39:29 PM,04/06/2016 02:55:58 PM,04/06/2016 03:29:39 PM,Code 2 Transport,04/06/2016 04:14:23 PM,300 Block of PROSPECT AVE,San Francisco,94110,B06,32,5653,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Bernal Heights,"(37.7411852364094, -122.420155503598)",160972416-AM16 +150690585,AM02,15026259,Medical Incident,03/10/2015,03/09/2015,03/10/2015 07:16:23 AM,03/10/2015 07:17:38 AM,03/10/2015 07:18:15 AM,03/10/2015 07:19:28 AM,03/10/2015 07:33:10 AM,03/10/2015 07:33:20 AM,04/25/2016 01:11:49 PM,Code 2 Transport,03/10/2015 08:27:30 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150690585-AM02 +142830004,E03,14099466,Medical Incident,10/09/2014,10/09/2014,10/09/2014 11:59:21 PM,10/10/2014 12:00:35 AM,10/10/2014 12:02:21 AM,10/10/2014 12:04:34 AM,04/25/2016 01:14:38 PM,04/25/2016 01:14:38 PM,04/25/2016 01:14:38 PM,Code 2 Transport,10/10/2014 12:06:25 AM,MCALLISTER ST/VAN NESS AV,San Francisco,94102,B02,3,3113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",142830004-E03 +152181352,AM02,15082979,Medical Incident,08/06/2015,08/06/2015,08/06/2015 11:10:57 AM,08/06/2015 11:12:20 AM,08/06/2015 11:12:53 AM,08/06/2015 11:13:32 AM,08/06/2015 11:21:08 AM,08/06/2015 11:39:28 AM,08/06/2015 12:09:30 PM,Code 2 Transport,08/06/2015 12:41:27 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,3,3,6,South of Market,"(37.7811617395427, -122.403433976322)",152181352-AM02 +142332476,T17,14081001,Structure Fire,08/21/2014,08/21/2014,08/21/2014 04:38:48 PM,08/21/2014 04:39:19 PM,08/21/2014 04:39:39 PM,08/21/2014 04:40:41 PM,08/21/2014 04:45:32 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,Fire,08/21/2014 05:56:40 PM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,3,3,3,false,Fire,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",142332476-T17 +150581082,70,15022097,Medical Incident,02/27/2015,02/27/2015,02/27/2015 09:41:39 AM,02/27/2015 09:43:26 AM,02/27/2015 09:45:01 AM,02/27/2015 09:45:13 AM,02/27/2015 09:55:58 AM,02/27/2015 10:14:59 AM,02/27/2015 10:39:01 AM,Code 2 Transport,02/27/2015 11:12:49 AM,900 Block of FILLMORE ST,San Francisco,94117,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",150581082-70 +143013341,73,14106401,Medical Incident,10/28/2014,10/28/2014,10/28/2014 09:06:11 PM,10/28/2014 09:06:53 PM,10/28/2014 09:07:01 PM,10/28/2014 09:07:42 PM,10/28/2014 09:11:54 PM,10/28/2014 09:24:38 PM,10/28/2014 09:43:39 PM,Code 2 Transport,10/28/2014 10:11:33 PM,1400 Block of SHAFTER AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294942313003, -122.387879447239)",143013341-73 +160932057,63,16036899,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:37:06 PM,04/02/2016 02:39:34 PM,04/02/2016 02:40:32 PM,04/02/2016 02:40:40 PM,04/02/2016 02:47:12 PM,04/02/2016 02:53:25 PM,04/02/2016 03:17:55 PM,Code 3 Transport,04/02/2016 04:13:54 PM,HYDE ST/MARKET ST,San Francisco,94103,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160932057-63 +142650825,E14,14092622,Medical Incident,09/22/2014,09/22/2014,09/22/2014 08:41:12 AM,09/22/2014 08:41:55 AM,09/22/2014 08:42:11 AM,09/22/2014 08:43:05 AM,09/22/2014 08:44:59 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Code 2 Transport,09/22/2014 09:04:40 AM,500 Block of 24TH AVE,San Francisco,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7791756022124, -122.483662765837)",142650825-E14 +150162738,56,15006399,Medical Incident,01/16/2015,01/16/2015,01/16/2015 05:30:59 PM,01/16/2015 05:32:08 PM,01/16/2015 05:32:29 PM,01/16/2015 05:32:57 PM,01/16/2015 06:15:07 PM,01/16/2015 06:15:21 PM,01/16/2015 06:06:00 PM,Code 2 Transport,01/16/2015 06:53:20 PM,300 Block of PARNASSUS AVE,San Francisco,94117,B05,12,5155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7641615127899, -122.454996890694)",150162738-56 +141471079,E36,14050389,Medical Incident,05/27/2014,05/27/2014,05/27/2014 09:50:38 AM,05/27/2014 09:52:28 AM,05/27/2014 09:54:36 AM,05/27/2014 09:54:46 AM,05/27/2014 09:57:53 AM,04/25/2016 01:17:06 PM,04/25/2016 01:17:06 PM,No Merit,05/27/2014 09:58:54 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",141471079-E36 +152923304,85,15112351,Medical Incident,10/19/2015,10/19/2015,10/19/2015 07:54:49 PM,10/19/2015 08:00:06 PM,10/19/2015 08:01:01 PM,10/19/2015 08:01:08 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Patient Declined Transport,10/19/2015 08:07:21 PM,100 Block of SAN FELIPE AVE,San Francisco,94127,B09,15,8547,2,2,2,true,Non Life-threatening,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7314812018322, -122.462473997503)",152923304-85 +161001218,71,16039708,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:49:41 AM,04/09/2016 10:52:04 AM,04/09/2016 11:03:03 AM,04/09/2016 11:03:25 AM,04/09/2016 11:10:11 AM,04/09/2016 11:26:02 AM,04/09/2016 11:43:15 AM,Code 2 Transport,04/09/2016 01:20:58 PM,100 Block of APOLLO ST,San Francisco,94124,B10,42,6447,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7308676952396, -122.398741672226)",161001218-71 +142640794,82,14092275,Medical Incident,09/21/2014,09/20/2014,09/21/2014 07:25:07 AM,09/21/2014 07:25:07 AM,09/21/2014 07:26:31 AM,09/21/2014 07:26:55 AM,09/21/2014 07:30:57 AM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Patient Declined Transport,09/21/2014 07:55:16 AM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6464,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",142640794-82 +153320752,E37,15127630,Medical Incident,11/28/2015,11/28/2015,11/28/2015 08:09:12 AM,11/28/2015 08:09:46 AM,11/28/2015 08:10:12 AM,11/28/2015 08:11:37 AM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,Code 2 Transport,11/28/2015 08:13:26 AM,300 Block of CONNECTICUT ST,San Francisco,94107,B03,37,2462,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7618859006044, -122.397364393329)",153320752-E37 +150770122,B04,15029356,Alarms,03/18/2015,03/17/2015,03/18/2015 12:49:10 AM,03/18/2015 12:51:01 AM,03/18/2015 12:51:06 AM,03/18/2015 12:51:50 AM,03/18/2015 12:54:57 AM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Fire,03/18/2015 01:01:01 AM,1600 Block of EDDY ST,San Francisco,94115,B05,5,3624,3,3,3,false,Alarm,1,CHIEF,1,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",150770122-B04 +161002112,64,16039816,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:44:03 PM,04/09/2016 03:46:03 PM,04/09/2016 03:46:47 PM,04/09/2016 03:49:54 PM,04/09/2016 04:04:39 PM,04/09/2016 04:22:03 PM,04/09/2016 04:47:08 PM,Code 2 Transport,04/09/2016 04:54:05 PM,1400 Block of 38TH AVE,San Francisco,94122,B08,23,7571,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.759865764672, -122.497356645994)",161002112-64 +153282745,77,15126335,Traffic Collision,11/24/2015,11/24/2015,11/24/2015 04:57:55 PM,11/24/2015 04:57:55 PM,11/24/2015 05:29:01 PM,11/24/2015 05:29:01 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Patient Declined Transport,11/24/2015 05:31:07 PM,1300 Block of JUNIPERO SERRA BL,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7137485042315, -122.471303751514)",153282745-77 +151421138,E22,15053917,Traffic Collision,05/22/2015,05/22/2015,05/22/2015 09:45:28 AM,05/22/2015 09:45:28 AM,05/22/2015 09:45:52 AM,05/22/2015 09:46:08 AM,05/22/2015 09:48:49 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,No Merit,05/22/2015 09:51:35 AM,JUDAH ST/18TH AV,San Francisco,94122,B08,22,7371,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Inner Sunset,"(37.7617471516544, -122.475924091366)",151421138-E22 +161000737,88,16039653,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:39:12 AM,04/09/2016 07:39:38 AM,04/09/2016 07:40:03 AM,04/09/2016 07:40:36 AM,04/09/2016 07:49:07 AM,04/09/2016 08:01:15 AM,04/09/2016 08:27:00 AM,Code 2 Transport,04/09/2016 09:01:43 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",161000737-88 +150850998,SR1,15032357,Water Rescue,03/26/2015,03/26/2015,03/26/2015 09:18:30 AM,03/26/2015 09:19:27 AM,03/26/2015 09:21:17 AM,03/26/2015 09:24:33 AM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Fire,03/26/2015 10:14:10 AM,ORTEGA ST/GREAT HY,San Francisco,94122,B08,23,7715,3,3,3,false,Fire,1,SUPPORT,10,8,4,Sunset/Parkside,"(37.7509682006019, -122.508186650127)",150850998-SR1 +160931838,63,16036870,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:33:53 PM,04/02/2016 01:33:53 PM,04/02/2016 01:38:40 PM,04/02/2016 01:38:50 PM,04/02/2016 01:58:39 PM,04/02/2016 02:01:32 PM,04/02/2016 02:27:07 PM,Code 2 Transport,04/02/2016 02:37:08 PM,1500 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",160931838-63 +141020064,RS1,14034336,Medical Incident,04/12/2014,04/11/2014,04/12/2014 05:26:34 AM,04/12/2014 05:27:07 AM,04/12/2014 05:28:32 AM,04/12/2014 05:31:02 AM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Code 2 Transport,04/12/2014 05:34:05 AM,100 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7807144867659, -122.408483722327)",141020064-RS1 +160933756,71,16037065,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:37:32 PM,04/02/2016 10:37:32 PM,04/02/2016 10:37:43 PM,04/02/2016 10:37:51 PM,04/02/2016 10:50:36 PM,04/02/2016 11:07:02 PM,04/02/2016 11:31:40 PM,Code 2 Transport,04/02/2016 11:57:25 PM,1200 Block of GRANT AVE,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7986417020523, -122.407109258598)",160933756-71 +153272173,E09,15125910,Citizen Assist / Service Call,11/23/2015,11/23/2015,11/23/2015 02:41:01 PM,11/23/2015 02:42:35 PM,11/23/2015 02:42:45 PM,11/23/2015 02:44:11 PM,11/23/2015 02:45:18 PM,04/25/2016 01:07:02 PM,04/25/2016 01:07:02 PM,Fire,11/23/2015 02:51:19 PM,BARNEVELD AV/JERROLD AV,San Francisco,94124,B10,9,6412,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7463340944535, -122.402698013436)",153272173-E09 +151580648,74,15060234,Medical Incident,06/07/2015,06/06/2015,06/07/2015 05:34:27 AM,06/07/2015 05:34:27 AM,06/07/2015 05:34:59 AM,06/07/2015 05:35:29 AM,06/07/2015 05:47:55 AM,06/07/2015 06:17:05 AM,06/07/2015 06:26:49 AM,Code 2 Transport,06/07/2015 07:01:39 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,2,3,3,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",151580648-74 +143081210,B04,14108931,Alarms,11/04/2014,11/04/2014,11/04/2014 10:33:58 AM,11/04/2014 10:35:31 AM,11/04/2014 10:35:50 AM,11/04/2014 10:37:48 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Fire,11/04/2014 10:40:02 AM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,3,3,3,false,Alarm,1,CHIEF,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",143081210-B04 +150421484,E32,15016330,Other,02/11/2015,02/11/2015,02/11/2015 11:30:55 AM,02/11/2015 11:31:40 AM,02/11/2015 11:32:02 AM,02/11/2015 11:32:50 AM,02/11/2015 11:35:59 AM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Fire,02/11/2015 11:51:30 AM,300 Block of CHENERY ST,San Francisco,94131,B06,26,8127,2,2,2,false,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7367583902916, -122.428298414187)",150421484-E32 +141080007,E10,14036272,Medical Incident,04/18/2014,04/17/2014,04/18/2014 12:15:25 AM,04/18/2014 12:16:43 AM,04/18/2014 12:17:41 AM,04/18/2014 12:19:54 AM,04/18/2014 12:22:24 AM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Fire,04/18/2014 12:23:57 AM,3500 Block of GEARY BLVD,SAN FRANCISCO,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",141080007-E10 +141952825,79,14067666,Odor (Strange / Unknown),07/14/2014,07/14/2014,07/14/2014 06:55:37 PM,07/14/2014 06:58:04 PM,07/14/2014 06:58:19 PM,07/14/2014 06:58:52 PM,07/14/2014 07:08:10 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Fire,07/14/2014 07:13:24 PM,400 Block of LYON ST,San Francisco,94117,B05,21,4351,3,3,3,true,Alarm,1,MEDIC,4,5,5,Lone Mountain/USF,"(37.7748359375241, -122.442781839636)",141952825-79 +160960664,82,16037912,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:03:59 AM,04/05/2016 08:04:50 AM,04/05/2016 08:05:53 AM,04/05/2016 08:05:59 AM,04/05/2016 08:17:51 AM,04/05/2016 08:38:33 AM,04/05/2016 08:59:48 AM,Code 2 Transport,04/05/2016 09:23:44 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160960664-82 +153050959,78,15117035,Medical Incident,11/01/2015,10/31/2015,11/01/2015 03:09:57 AM,11/01/2015 03:11:33 AM,11/01/2015 03:12:04 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 2 Transport,11/01/2015 03:12:21 AM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7826425026927, -122.407832679288)",153050959-78 +150830216,75,15031589,Medical Incident,03/24/2015,03/23/2015,03/24/2015 02:32:48 AM,03/24/2015 02:34:48 AM,03/24/2015 02:40:56 AM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/24/2015 02:41:42 AM,300 Block of GAVEN ST,San Francisco,94134,B09,42,6367,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,9,9,Portola,"(37.7323061102001, -122.412177293202)",150830216-75 +150550123,68,15020980,Medical Incident,02/24/2015,02/23/2015,02/24/2015 01:03:37 AM,02/24/2015 01:04:52 AM,02/24/2015 01:06:12 AM,02/24/2015 01:06:23 AM,02/24/2015 01:18:14 AM,02/24/2015 01:47:54 AM,02/24/2015 02:08:09 AM,Code 2 Transport,02/24/2015 02:30:17 AM,0 Block of STANFORD HEIGHTS AVE,San Francisco,94127,B09,15,8244,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7349122372305, -122.449968929607)",150550123-68 +142763044,AM26,14097058,Medical Incident,10/03/2014,10/03/2014,10/03/2014 05:59:47 PM,10/03/2014 06:03:21 PM,10/03/2014 06:03:54 PM,10/03/2014 06:04:42 PM,10/03/2014 06:06:57 PM,10/03/2014 06:14:12 PM,10/03/2014 06:33:41 PM,Code 2 Transport,10/03/2014 06:33:46 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",142763044-AM26 +160981760,56,16038904,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:16:57 PM,04/07/2016 12:18:10 PM,04/07/2016 12:25:31 PM,04/07/2016 12:26:00 PM,04/07/2016 12:37:33 PM,04/07/2016 01:03:08 PM,04/07/2016 01:46:52 PM,Code 2 Transport,04/07/2016 01:48:43 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160981760-56 +152381819,54,15090645,Medical Incident,08/26/2015,08/26/2015,08/26/2015 01:18:05 PM,08/26/2015 01:19:14 PM,08/26/2015 01:19:50 PM,08/26/2015 01:20:02 PM,08/26/2015 01:29:35 PM,08/26/2015 01:40:44 PM,08/26/2015 02:00:25 PM,Code 2 Transport,08/26/2015 02:46:44 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",152381819-54 +150371010,E13,15014178,Structure Fire,02/06/2015,02/06/2015,02/06/2015 09:06:13 AM,02/06/2015 09:06:13 AM,02/06/2015 09:06:44 AM,02/06/2015 09:07:42 AM,02/06/2015 09:08:31 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/06/2015 09:08:59 AM,KEARNY ST/WASHINGTON ST,San Francisco,94108,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7953266906824, -122.404957209767)",150371010-E13 +142380295,54,14082667,Medical Incident,08/26/2014,08/25/2014,08/26/2014 03:24:04 AM,08/26/2014 03:24:04 AM,08/26/2014 03:26:40 AM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,Code 2 Transport,08/26/2014 03:28:28 AM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",142380295-54 +141050246,93,14035464,Medical Incident,04/15/2014,04/15/2014,04/15/2014 03:33:17 PM,04/15/2014 03:33:40 PM,04/15/2014 03:35:43 PM,04/15/2014 03:35:43 PM,04/15/2014 03:40:41 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,No Merit,04/15/2014 03:41:01 PM,3RD ST/STILLMAN ST,SAN FRANCISCO,94107,B03,8,2174,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",141050246-93 +143030625,E11,14106984,Medical Incident,10/30/2014,10/29/2014,10/30/2014 03:21:00 AM,10/30/2014 03:21:00 AM,10/30/2014 03:22:36 AM,10/30/2014 03:24:12 AM,10/30/2014 03:25:57 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Code 2 Transport,10/30/2014 03:31:52 AM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,A,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",143030625-E11 +153121424,KM02,15119914,Medical Incident,11/08/2015,11/08/2015,11/08/2015 11:51:09 AM,11/08/2015 11:53:20 AM,11/08/2015 11:54:32 AM,11/08/2015 11:56:17 AM,11/08/2015 11:59:27 AM,11/08/2015 12:22:31 PM,11/08/2015 12:32:49 PM,Code 2 Transport,11/08/2015 01:10:51 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",153121424-KM02 +151040414,E01,15039225,Alarms,04/14/2015,04/13/2015,04/14/2015 05:33:58 AM,04/14/2015 05:36:21 AM,04/14/2015 05:36:33 AM,04/14/2015 05:38:19 AM,04/14/2015 05:40:37 AM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Fire,04/14/2015 05:42:41 AM,100 Block of 3RD ST,San Francisco,94105,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",151040414-E01 +152202225,E06,15083861,Vehicle Fire,08/08/2015,08/08/2015,08/08/2015 03:28:17 PM,08/08/2015 03:29:00 PM,08/08/2015 03:29:47 PM,08/08/2015 03:31:11 PM,08/08/2015 03:36:22 PM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Fire,08/08/2015 03:43:48 PM,MARKET ST/OCTAVIA ST,San Francisco,94102,B02,36,3311,3,3,3,true,Fire,1,ENGINE,1,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",152202225-E06 +160980062,73,16038730,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:30:48 AM,04/07/2016 12:30:48 AM,04/07/2016 12:31:18 AM,04/07/2016 12:34:53 AM,04/07/2016 12:42:15 AM,04/07/2016 12:52:42 AM,04/07/2016 12:58:08 AM,Code 2 Transport,04/07/2016 01:45:47 AM,1500 Block of BLK EDDY ST,San Francisco,94115,B05,5,3624,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7809799644788, -122.432168165552)",160980062-73 +153443072,RS1,15132523,Traffic Collision,12/10/2015,12/10/2015,12/10/2015 06:06:50 PM,12/10/2015 06:06:50 PM,12/10/2015 06:07:30 PM,12/10/2015 06:08:58 PM,12/10/2015 06:10:48 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Code 2 Transport,12/10/2015 06:14:56 PM,SHERMAN ST/HARRISON ST,San Francisco,94103,B03,8,2312,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7761619773283, -122.405476065054)",153443072-RS1 +151791937,B02,15068237,Alarms,06/28/2015,06/28/2015,06/28/2015 01:40:59 PM,06/28/2015 01:41:48 PM,06/28/2015 01:41:56 PM,06/28/2015 01:43:30 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 01:49:08 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",151791937-B02 +161001099,54,16039696,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:04:01 AM,04/09/2016 10:07:38 AM,04/09/2016 10:08:19 AM,04/09/2016 10:08:36 AM,04/09/2016 10:24:10 AM,04/09/2016 10:27:41 AM,04/09/2016 10:44:29 AM,Code 2 Transport,04/09/2016 11:14:49 AM,0 Block of NORTHRIDGE RD,San Francisco,94124,B10,17,6633,2,3,3,true,Non Life-threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",161001099-54 +160971523,AM08,16038379,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:14:13 AM,04/06/2016 11:15:37 AM,04/06/2016 11:16:23 AM,04/06/2016 11:17:41 AM,04/06/2016 11:29:02 AM,04/06/2016 11:45:56 AM,04/06/2016 12:13:33 PM,Code 2 Transport,04/06/2016 12:46:53 PM,900 Block of CORBETT AVE,San Francisco,94131,B06,24,5374,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Twin Peaks,"(37.7511571597361, -122.443968371476)",160971523-AM08 +161003360,60,16039964,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:08:53 PM,04/09/2016 10:10:10 PM,04/09/2016 10:10:39 PM,04/09/2016 10:10:50 PM,04/09/2016 10:16:33 PM,04/09/2016 10:42:39 PM,04/09/2016 10:52:26 PM,Code 2 Transport,04/09/2016 11:34:34 PM,0 Block of 8TH ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7778103407202, -122.413699499217)",161003360-60 +142900798,73,14102147,Medical Incident,10/17/2014,10/17/2014,10/17/2014 08:08:34 AM,10/17/2014 08:10:30 AM,10/17/2014 08:11:48 AM,10/17/2014 08:12:24 AM,10/17/2014 08:17:55 AM,10/17/2014 08:49:14 AM,10/17/2014 09:05:16 AM,Code 3 Transport,10/17/2014 09:40:42 AM,300 Block of BRANNAN ST,San Francisco,94107,B03,8,2153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7811569213596, -122.392851555469)",142900798-73 +151063269,E31,15040188,Medical Incident,04/16/2015,04/16/2015,04/16/2015 06:50:15 PM,04/16/2015 06:51:31 PM,04/16/2015 06:52:01 PM,04/16/2015 06:53:04 PM,04/16/2015 06:54:25 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Code 2 Transport,04/16/2015 06:55:45 PM,300 Block of 7TH AVE,San Francisco,94118,B07,31,7127,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.781931388363, -122.465353537218)",151063269-E31 +141502286,E12,14051607,Structure Fire,05/30/2014,05/30/2014,05/30/2014 04:39:20 PM,05/30/2014 04:40:29 PM,05/30/2014 04:41:07 PM,05/30/2014 04:44:14 PM,05/30/2014 04:44:14 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 05:01:18 PM,300 Block of FREDERICK ST,San Francisco,94117,B05,12,5144,3,3,3,true,Alarm,1,ENGINE,2,5,5,Haight Ashbury,"(37.7668851669849, -122.448532611392)",141502286-E12 +160931401,82,16036825,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:31:07 AM,04/02/2016 11:32:27 AM,04/02/2016 11:32:41 AM,04/02/2016 11:33:08 AM,04/02/2016 12:04:43 PM,04/02/2016 12:08:17 PM,04/02/2016 12:23:33 PM,Code 2 Transport,04/02/2016 12:51:28 PM,1000 Block of NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",160931401-82 +160932648,79,16036961,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:18:58 PM,04/02/2016 05:19:27 PM,04/02/2016 05:23:14 PM,04/02/2016 05:23:14 PM,04/02/2016 05:43:11 PM,04/02/2016 05:45:39 PM,04/02/2016 06:08:28 PM,Code 2 Transport,04/02/2016 06:20:40 PM,700 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",160932648-79 +152502879,FB1,15095601,Water Rescue,09/07/2015,09/07/2015,09/07/2015 06:43:57 PM,09/07/2015 06:45:09 PM,09/07/2015 06:45:26 PM,09/07/2015 06:48:58 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Fire,09/07/2015 06:53:35 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,false,Fire,1,SUPPORT,6,7,2,Presidio,"(37.7915253713789, -122.483480228628)",152502879-FB1 +142973951,B01,14104998,Alarms,10/24/2014,10/24/2014,10/24/2014 10:51:22 PM,10/24/2014 10:52:52 PM,10/24/2014 10:53:08 PM,10/24/2014 10:54:05 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Fire,10/24/2014 10:57:20 PM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7975061057448, -122.409143124942)",142973951-B01 +143203051,87,14113449,Medical Incident,11/16/2014,11/16/2014,11/16/2014 08:15:34 PM,11/16/2014 08:16:57 PM,11/16/2014 08:20:32 PM,11/16/2014 08:23:32 PM,11/16/2014 08:23:32 PM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,No Merit,11/16/2014 08:29:47 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",143203051-87 +141990318,T18,14068757,Structure Fire,07/18/2014,07/17/2014,07/18/2014 02:44:16 AM,07/18/2014 02:44:16 AM,07/18/2014 02:45:26 AM,07/18/2014 02:49:08 AM,07/18/2014 02:49:33 AM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Fire,07/18/2014 02:49:53 AM,45TH AV/NORIEGA ST,San Francisco,94122,B08,23,7662,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7530115306014, -122.50433336712)",141990318-T18 +152193649,E21,15083566,Medical Incident,08/07/2015,08/07/2015,08/07/2015 08:33:06 PM,08/07/2015 08:33:20 PM,08/07/2015 08:36:15 PM,08/07/2015 08:37:42 PM,08/07/2015 08:39:43 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Code 2 Transport,08/07/2015 08:48:55 PM,2100 Block of GROVE ST,San Francisco,94117,B05,21,4535,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740904696407, -122.451977200353)",152193649-E21 +143130873,E32,14110827,Medical Incident,11/09/2014,11/09/2014,11/09/2014 08:24:50 AM,11/09/2014 08:25:56 AM,11/09/2014 08:26:39 AM,11/09/2014 08:27:10 AM,11/09/2014 08:30:04 AM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Code 2 Transport,11/09/2014 08:36:12 AM,100 Block of SAINT MARYS AVE,San Francisco,94112,B06,32,8134,3,E,3,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Outer Mission,"(37.7347741172504, -122.428170806067)",143130873-E32 +143341283,B01,14118356,Alarms,11/30/2014,11/30/2014,11/30/2014 11:35:50 AM,11/30/2014 11:36:51 AM,11/30/2014 11:38:04 AM,11/30/2014 11:38:12 AM,11/30/2014 11:40:58 AM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,Fire,11/30/2014 11:43:45 AM,300 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,CHIEF,1,1,3,North Beach,"(37.7982414067113, -122.403286579807)",143341283-B01 +160951738,62,16037624,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:36:30 PM,04/04/2016 12:36:30 PM,04/04/2016 12:39:00 PM,04/04/2016 12:39:08 PM,04/04/2016 12:56:23 PM,04/04/2016 01:11:06 PM,04/04/2016 12:56:23 PM,Code 2 Transport,04/04/2016 02:30:42 PM,BROOKDALE AV/SANTOS ST,San Francisco,94134,B09,43,6243,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7119334337486, -122.418765995806)",160951738-62 +153370536,E03,15129518,Alarms,12/03/2015,12/02/2015,12/03/2015 06:36:10 AM,12/03/2015 06:37:58 AM,12/03/2015 06:38:09 AM,12/03/2015 06:39:38 AM,12/03/2015 06:41:22 AM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Fire,12/03/2015 06:45:44 AM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",153370536-E03 +161000897,KM08,16039672,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:52:40 AM,04/09/2016 08:53:25 AM,04/09/2016 08:53:48 AM,04/09/2016 08:54:31 AM,04/09/2016 09:02:40 AM,04/09/2016 09:35:36 AM,04/09/2016 09:55:06 AM,Code 2 Transport,04/09/2016 10:26:25 AM,400 Block of 14TH AVE,San Francisco,94118,B07,31,7146,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7796642527316, -122.472845331016)",161000897-KM08 +160990346,72,16039182,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:09:12 AM,04/08/2016 04:11:49 AM,04/08/2016 04:12:00 AM,04/08/2016 04:12:20 AM,04/08/2016 04:19:01 AM,04/08/2016 04:47:54 AM,04/08/2016 05:45:43 AM,Code 2 Transport,04/08/2016 06:00:44 AM,0 Block of PIERCE ST,San Francisco,94117,B05,6,3635,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7702879508133, -122.433383131974)",160990346-72 +143003607,B03,14106082,Alarms,10/27/2014,10/27/2014,10/27/2014 09:46:07 PM,10/27/2014 09:48:29 PM,10/27/2014 09:48:34 PM,10/27/2014 09:49:39 PM,10/27/2014 09:51:11 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Fire,10/27/2014 09:58:49 PM,200 Block of TOWNSEND ST,San Francisco,94107,B03,8,2224,3,3,3,false,Alarm,1,CHIEF,1,3,6,South of Market,"(37.778142703314, -122.393745741982)",143003607-B03 +160971964,KM13,16038418,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:48:35 PM,04/06/2016 12:49:27 PM,04/06/2016 12:50:02 PM,04/06/2016 12:50:43 PM,04/06/2016 12:59:25 PM,04/06/2016 01:24:58 PM,04/06/2016 01:44:24 PM,Code 2 Transport,04/06/2016 02:18:50 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160971964-KM13 +152604158,E31,15099574,Medical Incident,09/17/2015,09/17/2015,09/17/2015 10:49:53 PM,09/17/2015 10:52:01 PM,09/17/2015 10:52:11 PM,09/17/2015 10:53:22 PM,09/17/2015 10:55:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/17/2015 11:08:14 PM,400 Block of 7TH AVE,San Francisco,94118,B07,31,7131,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7800072533778, -122.465212678125)",152604158-E31 +141250392,E01,14042516,Medical Incident,05/05/2014,05/05/2014,05/05/2014 08:45:17 PM,05/05/2014 08:46:33 PM,05/05/2014 08:51:46 PM,05/05/2014 08:56:53 PM,05/05/2014 08:59:41 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 09:11:03 PM,400 Block of TURK ST,SAN FRANCISCO,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",141250392-E01 +160941624,50,16037247,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:56:08 AM,04/03/2016 11:58:04 AM,04/03/2016 11:58:24 AM,04/03/2016 11:58:30 AM,04/03/2016 12:05:10 PM,04/03/2016 12:21:09 PM,04/03/2016 12:29:52 PM,Code 2 Transport,04/03/2016 01:12:20 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160941624-50 +152662360,E36,15101916,Medical Incident,09/23/2015,09/23/2015,09/23/2015 03:03:17 PM,09/23/2015 03:04:29 PM,09/23/2015 03:04:55 PM,09/23/2015 03:08:18 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Gone on Arrival,09/23/2015 03:12:36 PM,SOUTH VAN NESS AV/MISSION ST,San Francisco,94103,B02,36,5117,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",152662360-E36 +142603429,E05,14091022,Structure Fire,09/17/2014,09/17/2014,09/17/2014 08:38:32 PM,09/17/2014 08:39:13 PM,09/17/2014 08:39:43 PM,09/17/2014 08:40:27 PM,09/17/2014 08:42:01 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 08:45:15 PM,1300 Block of GOUGH ST,San Francisco,94109,B04,3,3256,3,3,3,true,Alarm,1,ENGINE,3,4,5,Japantown,"(37.7857569605828, -122.424841094899)",142603429-E05 +142702385,E17,14094748,Medical Incident,09/27/2014,09/27/2014,09/27/2014 03:33:28 PM,09/27/2014 03:33:47 PM,09/27/2014 03:34:08 PM,09/27/2014 03:36:07 PM,09/27/2014 03:38:38 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 03:40:06 PM,3RD ST/PALOU AV,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",142702385-E17 +142353413,KM07,14081848,Medical Incident,08/23/2014,08/23/2014,08/23/2014 09:03:18 PM,08/23/2014 09:04:20 PM,08/23/2014 09:04:57 PM,08/23/2014 09:05:41 PM,08/23/2014 09:13:48 PM,08/23/2014 09:24:47 PM,08/23/2014 09:32:39 PM,Code 2 Transport,08/23/2014 09:59:48 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142353413-KM07 +153073798,E21,15118153,Medical Incident,11/03/2015,11/03/2015,11/03/2015 08:38:25 PM,11/03/2015 08:43:04 PM,11/03/2015 08:43:09 PM,11/03/2015 08:44:05 PM,11/03/2015 08:46:15 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Code 2 Transport,11/03/2015 08:53:56 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",153073798-E21 +153292617,E32,15126692,Medical Incident,11/25/2015,11/25/2015,11/25/2015 04:06:43 PM,11/25/2015 04:09:26 PM,11/25/2015 04:11:30 PM,11/25/2015 04:12:29 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Code 2 Transport,11/25/2015 04:44:02 PM,300 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5741,2,3,3,false,Non Life-threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.737129343331, -122.417359895828)",153292617-E32 +151451887,56,15055198,Medical Incident,05/25/2015,05/25/2015,05/25/2015 02:48:32 PM,05/25/2015 02:50:36 PM,05/25/2015 02:51:40 PM,05/25/2015 02:52:15 PM,05/25/2015 03:07:21 PM,05/25/2015 03:17:34 PM,05/25/2015 03:34:11 PM,Code 2 Transport,05/25/2015 04:17:10 PM,27TH ST/GUERRERO ST,San Francisco,94110,B06,11,5551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7471719168985, -122.422383537284)",151451887-56 +151171199,B10,15044159,Alarms,04/27/2015,04/27/2015,04/27/2015 10:13:21 AM,04/27/2015 10:14:37 AM,04/27/2015 10:14:50 AM,04/27/2015 10:16:00 AM,04/27/2015 10:25:52 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 10:25:57 AM,1300 Block of KANSAS ST,San Francisco,94107,B10,37,2622,3,3,3,false,Alarm,1,CHIEF,3,10,10,Potrero Hill,"(37.7526024925455, -122.402306414737)",151171199-B10 +160930528,AM24,16036722,Medical Incident,04/02/2016,04/01/2016,04/02/2016 05:00:37 AM,04/02/2016 05:01:15 AM,04/02/2016 05:02:08 AM,04/02/2016 05:03:50 AM,04/02/2016 05:08:46 AM,04/02/2016 05:27:58 AM,04/02/2016 05:44:46 AM,Code 2 Transport,04/02/2016 06:22:17 AM,1700 Block of 41ST AVE,San Francisco,94122,B08,18,7633,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.754123912378, -122.500178002095)",160930528-AM24 +141700581,E11,14058597,Medical Incident,06/19/2014,06/18/2014,06/19/2014 07:30:58 AM,06/19/2014 07:32:39 AM,06/19/2014 07:33:04 AM,06/19/2014 07:34:26 AM,06/19/2014 07:36:52 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Code 2 Transport,06/19/2014 07:56:27 AM,3800 Block of 23RD ST,San Francisco,94114,B06,11,5514,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7531208955209, -122.429515744116)",141700581-E11 +141292256,AM02,14043938,Medical Incident,05/09/2014,05/09/2014,05/09/2014 03:19:16 PM,05/09/2014 03:20:09 PM,05/09/2014 03:21:15 PM,05/09/2014 03:21:52 PM,05/09/2014 03:26:04 PM,05/09/2014 03:33:06 PM,05/09/2014 03:55:27 PM,Code 2 Transport,05/09/2014 04:19:01 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7563716216308, -122.416574134534)",141292256-AM02 +150992938,E17,15037580,Medical Incident,04/09/2015,04/09/2015,04/09/2015 07:08:29 PM,04/09/2015 07:13:18 PM,04/09/2015 07:13:31 PM,04/09/2015 07:14:50 PM,04/09/2015 07:19:04 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Patient Declined Transport,04/09/2015 07:41:49 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",150992938-E17 +160993980,AM16,16039523,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 11:10:31 PM,04/08/2016 11:10:31 PM,04/08/2016 11:10:47 PM,04/08/2016 11:11:18 PM,04/08/2016 11:14:57 PM,04/08/2016 11:35:01 PM,04/08/2016 11:35:03 PM,Code 2 Transport,04/08/2016 11:52:36 PM,CESAR CHAVEZ ST/VALENCIA ST,San Francisco,94110,B06,11,555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7481252844229, -122.420278831044)",160993980-AM16 +160990841,AM08,16039222,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:51:43 AM,04/08/2016 08:53:45 AM,04/08/2016 08:54:32 AM,04/08/2016 08:54:32 AM,04/08/2016 09:07:02 AM,04/08/2016 09:27:22 AM,04/08/2016 09:46:35 AM,Code 2 Transport,04/08/2016 10:23:24 AM,800 Block of MISSION ST,San Francisco,94103,B03,1,2213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7842816168857, -122.404614647152)",160990841-AM08 +160981101,59,16038834,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:21:13 AM,04/07/2016 09:22:30 AM,04/07/2016 09:24:54 AM,04/07/2016 09:25:24 AM,04/07/2016 09:48:04 AM,04/07/2016 10:33:16 AM,04/07/2016 10:44:27 AM,Code 2 Transport,04/07/2016 11:22:13 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160981101-59 +160950373,53,16037512,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:11:29 AM,04/04/2016 05:12:39 AM,04/04/2016 05:12:58 AM,04/04/2016 05:13:07 AM,04/04/2016 05:16:44 AM,04/04/2016 05:30:22 AM,04/04/2016 05:40:00 AM,Code 2 Transport,04/04/2016 06:27:34 AM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",160950373-53 +151121229,56,15042274,Medical Incident,04/22/2015,04/22/2015,04/22/2015 10:07:56 AM,04/22/2015 10:09:37 AM,04/22/2015 10:10:04 AM,04/22/2015 10:11:04 AM,04/22/2015 10:21:59 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,No Merit,04/22/2015 10:25:16 AM,1100 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",151121229-56 +161003039,72,16039926,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:37:59 PM,04/09/2016 08:37:59 PM,04/09/2016 08:38:42 PM,04/09/2016 08:41:53 PM,04/09/2016 08:43:56 PM,04/09/2016 09:12:36 PM,04/09/2016 09:23:08 PM,Code 2 Transport,04/09/2016 10:01:22 PM,MASONIC AV/GEARY BL,San Francisco,94118,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",161003039-72 +153091691,D2,15118728,Structure Fire,11/05/2015,11/05/2015,11/05/2015 12:06:38 PM,11/05/2015 12:07:17 PM,11/05/2015 12:07:23 PM,11/05/2015 12:07:39 PM,11/05/2015 12:14:58 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Fire,11/05/2015 12:19:25 PM,1600 Block of ANZA ST,San Francisco,94118,B07,31,7131,3,3,3,false,Alarm,1,CHIEF,5,7,1,Inner Richmond,"(37.7790730953134, -122.465753308972)",153091691-D2 +141240067,E34,14041926,Medical Incident,05/04/2014,05/03/2014,05/04/2014 05:24:27 AM,05/04/2014 05:26:52 AM,05/04/2014 05:27:00 AM,05/04/2014 05:28:21 AM,05/04/2014 05:31:18 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Code 2 Transport,05/04/2014 05:39:54 AM,500 Block of POINT LOBOS AVE,SAN FRANCISCO,94121,B07,34,7313,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7798321975251, -122.508894113463)",141240067-E34 +150022666,64,15000831,Medical Incident,01/02/2015,01/02/2015,01/02/2015 07:02:42 PM,01/02/2015 07:04:08 PM,01/02/2015 07:04:40 PM,01/02/2015 07:05:02 PM,01/02/2015 07:14:53 PM,01/02/2015 07:38:55 PM,01/02/2015 08:04:36 PM,Code 2 Transport,01/02/2015 08:41:22 PM,1900 Block of 14TH AVE,San Francisco,94116,B08,40,7368,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.751629099333, -122.47047025628)",150022666-64 +143361842,E37,14119127,Structure Fire,12/02/2014,12/02/2014,12/02/2014 02:17:33 PM,12/02/2014 02:18:22 PM,12/02/2014 02:19:13 PM,12/02/2014 02:20:19 PM,12/02/2014 02:22:43 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,Fire,12/02/2014 02:27:26 PM,2900 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5621,3,3,3,false,Alarm,1,ENGINE,4,6,9,Bernal Heights,"(37.7482373940092, -122.4091747167)",143361842-E37 +160992660,88,16039393,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:00:11 PM,04/08/2016 05:02:51 PM,04/08/2016 05:03:03 PM,04/08/2016 05:03:12 PM,04/08/2016 05:16:00 PM,04/08/2016 05:27:59 PM,04/08/2016 05:52:53 PM,Code 2 Transport,04/08/2016 06:23:47 PM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",160992660-88 +153232365,64,15124322,Medical Incident,11/19/2015,11/19/2015,11/19/2015 03:00:17 PM,11/19/2015 03:02:35 PM,11/19/2015 03:03:04 PM,11/19/2015 03:03:14 PM,11/19/2015 03:25:46 PM,11/19/2015 03:34:31 PM,11/19/2015 03:51:53 PM,Code 2 Transport,11/19/2015 04:26:12 PM,201-C TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.78253867476, -122.412386379783)",153232365-64 +160973318,AM16,16038569,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:35:48 PM,04/06/2016 05:35:48 PM,04/06/2016 05:36:17 PM,04/06/2016 05:37:43 PM,04/06/2016 05:51:24 PM,04/06/2016 05:59:17 PM,04/06/2016 06:39:17 PM,Code 2 Transport,04/06/2016 07:15:38 PM,CLAY ST/DAVIS ST,San Francisco,94111,B01,13,1133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7953129409013, -122.397974750623)",160973318-AM16 +143442123,KM11,14122356,Medical Incident,12/10/2014,12/10/2014,12/10/2014 02:18:47 PM,12/10/2014 02:20:32 PM,12/10/2014 02:22:26 PM,12/10/2014 02:23:09 PM,12/10/2014 02:47:38 PM,12/10/2014 02:54:49 PM,12/10/2014 03:15:26 PM,Code 2 Transport,12/10/2014 03:41:49 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",143442123-KM11 +151600293,E03,15061010,Medical Incident,06/09/2015,06/08/2015,06/09/2015 04:09:37 AM,06/09/2015 04:11:57 AM,06/09/2015 04:12:08 AM,06/09/2015 04:14:24 AM,06/09/2015 04:17:48 AM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Code 2 Transport,06/09/2015 04:20:40 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",151600293-E03 +152482993,68,15094783,Medical Incident,09/05/2015,09/05/2015,09/05/2015 05:47:38 PM,09/05/2015 05:47:38 PM,09/05/2015 05:49:11 PM,09/05/2015 05:49:30 PM,09/05/2015 06:00:07 PM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Unable to Locate,09/05/2015 06:14:31 PM,BUSH ST/FRANKLIN ST,San Francisco,94109,B04,3,3156,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Western Addition,"(37.7882797328681, -122.423594074468)",152482993-68 +151590205,B01,15060561,Structure Fire,06/08/2015,06/07/2015,06/08/2015 01:56:12 AM,06/08/2015 01:58:44 AM,06/08/2015 01:59:13 AM,06/08/2015 02:00:30 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Fire,06/08/2015 02:04:48 AM,3200 Block of OCTAVIA ST,San Francisco,94123,B04,16,3341,3,3,3,false,Alarm,1,CHIEF,10,4,2,Marina,"(37.8021273515424, -122.429692779866)",151590205-B01 +152282859,E03,15087099,Medical Incident,08/16/2015,08/16/2015,08/16/2015 06:00:52 PM,08/16/2015 06:01:44 PM,08/16/2015 06:04:00 PM,08/16/2015 06:05:47 PM,08/16/2015 06:06:36 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Code 2 Transport,08/16/2015 06:22:19 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",152282859-E03 +160970403,70,16038277,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:17:52 AM,04/06/2016 05:18:32 AM,04/06/2016 05:19:07 AM,04/06/2016 05:19:16 AM,04/06/2016 05:42:59 AM,04/06/2016 05:43:14 AM,04/06/2016 06:22:45 AM,Code 2 Transport,04/06/2016 06:23:15 AM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160970403-70 +150411060,E05,15015905,Medical Incident,02/10/2015,02/10/2015,02/10/2015 09:47:49 AM,02/10/2015 09:50:11 AM,02/10/2015 09:50:22 AM,02/10/2015 09:51:57 AM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/10/2015 09:56:57 AM,0 Block of AVILA ST,San Francisco,94123,B04,16,3661,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Marina,"(37.8007998983639, -122.440340759487)",150411060-E05 +150143569,85,15005722,Medical Incident,01/14/2015,01/14/2015,01/14/2015 09:07:27 PM,01/14/2015 09:08:59 PM,01/14/2015 09:10:01 PM,01/14/2015 09:10:23 PM,01/14/2015 09:19:18 PM,01/14/2015 09:35:45 PM,01/14/2015 09:50:58 PM,Code 2 Transport,01/14/2015 10:12:29 PM,100 Block of 2ND AVE,San Francisco,94118,B07,31,7115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Inner Richmond,"(37.7862053016842, -122.46028712472)",150143569-85 +141582810,D2,14054554,Structure Fire,06/07/2014,06/07/2014,06/07/2014 07:25:36 PM,06/07/2014 07:26:56 PM,06/07/2014 07:27:52 PM,06/07/2014 07:28:36 PM,06/07/2014 07:30:42 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 07:35:25 PM,GEARY BL/SCOTT ST,San Francisco,94115,B04,5,3645,3,3,3,false,Alarm,1,CHIEF,5,5,5,Western Addition,"(37.7837176369493, -122.437847942301)",141582810-D2 +151420056,E02,15053806,Medical Incident,05/22/2015,05/21/2015,05/22/2015 12:24:31 AM,05/22/2015 12:27:06 AM,05/22/2015 12:27:19 AM,05/22/2015 12:28:47 AM,05/22/2015 12:30:48 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,No Merit,05/22/2015 12:43:17 AM,2000 Block of POLK ST,San Francisco,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",151420056-E02 +141490002,85,14051023,Medical Incident,05/29/2014,05/28/2014,05/29/2014 12:00:51 AM,05/29/2014 12:02:30 AM,05/29/2014 12:04:26 AM,05/29/2014 12:05:02 AM,05/29/2014 12:11:56 AM,05/29/2014 12:28:05 AM,05/29/2014 01:00:24 AM,Code 2 Transport,05/29/2014 01:29:06 AM,BATTERY ST/PINE ST,San Francisco,94111,B01,13,1163,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7922579471835, -122.399763355201)",141490002-85 +150692818,E10,15026448,Structure Fire,03/10/2015,03/10/2015,03/10/2015 05:55:00 PM,03/10/2015 05:56:19 PM,03/10/2015 05:57:17 PM,03/10/2015 05:58:20 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 05:58:37 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,Alarm,1,ENGINE,11,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",150692818-E10 +142422014,E20,14084256,Traffic Collision,08/30/2014,08/30/2014,08/30/2014 03:06:12 PM,08/30/2014 03:07:39 PM,08/30/2014 03:09:34 PM,08/30/2014 03:12:55 PM,08/30/2014 03:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 03:28:47 PM,LAGUNA HONDA BL/WOODSIDE AV,San Francisco,94127,B08,20,8641,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7467554297514, -122.458728516657)",142422014-E20 +160982565,KM13,16038996,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:44:33 PM,04/07/2016 03:47:13 PM,04/07/2016 03:47:56 PM,04/07/2016 03:48:35 PM,04/07/2016 03:57:02 PM,04/07/2016 04:33:46 PM,04/07/2016 04:34:37 PM,Code 2 Transport,04/07/2016 05:40:51 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160982565-KM13 +151953129,E36,15074509,Medical Incident,07/14/2015,07/14/2015,07/14/2015 06:57:44 PM,07/14/2015 06:58:49 PM,07/14/2015 07:00:00 PM,07/14/2015 07:01:48 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,Code 2 Transport,07/14/2015 07:51:12 PM,MARKET ST/LARKIN ST,San Francisco,94103,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7774938436091, -122.41629170277)",151953129-E36 +160973887,66,16038637,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:39:46 PM,04/06/2016 07:40:47 PM,04/06/2016 07:41:21 PM,04/06/2016 07:41:34 PM,04/06/2016 08:06:15 PM,04/06/2016 08:18:50 PM,04/06/2016 08:50:33 PM,Code 2 Transport,04/06/2016 09:17:01 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160973887-66 +160921955,55,16036462,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:09:30 PM,04/01/2016 02:10:42 PM,04/01/2016 02:11:20 PM,04/01/2016 02:11:36 PM,04/01/2016 02:19:23 PM,04/01/2016 02:40:14 PM,04/01/2016 02:58:15 PM,Code 2 Transport,04/01/2016 03:24:28 PM,4200 Block of JUDAH ST,San Francisco,94122,B08,23,7723,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7602986009431, -122.507529535954)",160921955-55 +151213641,68,15046058,Medical Incident,05/01/2015,05/01/2015,05/01/2015 09:33:59 PM,05/01/2015 09:35:22 PM,05/01/2015 09:35:34 PM,05/01/2015 09:35:41 PM,05/01/2015 09:52:30 PM,05/01/2015 09:58:52 PM,05/01/2015 10:21:53 PM,Code 2 Transport,05/01/2015 10:45:16 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",151213641-68 +143191002,E32,14112917,Gas Leak (Natural and LP Gases),11/15/2014,11/15/2014,11/15/2014 09:26:49 AM,11/15/2014 09:26:49 AM,11/15/2014 09:27:31 AM,11/15/2014 09:28:06 AM,11/15/2014 09:42:46 AM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Fire,11/15/2014 09:48:43 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,false,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7330103867416, -122.416517427405)",143191002-E32 +160972785,54,16038504,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:49:09 PM,04/06/2016 03:51:23 PM,04/06/2016 03:51:42 PM,04/06/2016 03:52:17 PM,04/06/2016 04:05:33 PM,04/06/2016 04:16:49 PM,04/06/2016 04:57:06 PM,Code 2 Transport,04/06/2016 05:06:55 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160972785-54 +142553206,E13,14089162,Structure Fire,09/12/2014,09/12/2014,09/12/2014 07:51:03 PM,09/12/2014 07:51:03 PM,09/12/2014 07:51:12 PM,09/12/2014 07:52:23 PM,09/12/2014 07:54:29 PM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Fire,09/12/2014 07:54:51 PM,GRANT AV/CLAY ST,San Francisco,94108,B01,13,1313,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7942636257508, -122.406304988112)",142553206-E13 +151894277,E41,15072377,Structure Fire,07/08/2015,07/08/2015,07/08/2015 11:46:31 PM,07/08/2015 11:46:31 PM,07/08/2015 11:46:51 PM,07/08/2015 11:48:06 PM,07/08/2015 11:50:06 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Fire,07/08/2015 11:53:19 PM,HYDE ST/PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",151894277-E41 +151623387,62,15062052,Medical Incident,06/11/2015,06/11/2015,06/11/2015 08:01:06 PM,06/11/2015 08:01:34 PM,06/11/2015 08:02:23 PM,06/11/2015 08:02:44 PM,06/11/2015 08:06:57 PM,06/11/2015 08:20:57 PM,06/11/2015 08:47:19 PM,Code 2 Transport,06/11/2015 09:31:35 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",151623387-62 +142910709,AM02,14102540,Medical Incident,10/18/2014,10/17/2014,10/18/2014 06:39:45 AM,10/18/2014 06:41:24 AM,10/18/2014 06:41:41 AM,10/18/2014 06:42:15 AM,10/18/2014 06:54:40 AM,10/18/2014 07:15:14 AM,10/18/2014 07:44:15 AM,Code 2 Transport,10/18/2014 08:02:28 AM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",142910709-AM02 +151822099,AM02,15069497,Medical Incident,07/01/2015,07/01/2015,07/01/2015 02:10:19 PM,07/01/2015 02:11:48 PM,07/01/2015 02:12:40 PM,07/01/2015 02:13:19 PM,07/01/2015 02:21:52 PM,07/01/2015 02:48:38 PM,07/01/2015 03:04:04 PM,Code 2 Transport,07/01/2015 03:40:27 PM,900 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4353,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7699856148425, -122.44323710704)",151822099-AM02 +160930030,70,16036670,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:10:57 AM,04/02/2016 12:11:59 AM,04/02/2016 12:12:20 AM,04/02/2016 12:12:29 AM,04/02/2016 12:15:50 AM,04/02/2016 12:30:22 AM,04/02/2016 12:54:22 AM,Code 2 Transport,04/02/2016 01:26:17 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160930030-70 +142681141,AM14,14093870,Medical Incident,09/25/2014,09/25/2014,09/25/2014 10:29:31 AM,09/25/2014 10:30:50 AM,09/25/2014 10:32:04 AM,09/25/2014 10:32:53 AM,09/25/2014 10:41:06 AM,09/25/2014 10:45:48 AM,04/25/2016 01:14:54 PM,Code 2 Transport,09/25/2014 11:45:57 AM,2800 Block of 24TH ST,,94110,B06,9,5531,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7528787651491, -122.408664686116)",142681141-AM14 +142152114,72,14074624,Medical Incident,08/03/2014,08/03/2014,08/03/2014 04:53:15 PM,08/03/2014 04:53:43 PM,08/03/2014 04:54:08 PM,08/03/2014 04:54:40 PM,08/03/2014 05:07:56 PM,08/03/2014 05:23:51 PM,08/03/2014 05:51:14 PM,Code 2 Transport,08/03/2014 06:08:16 PM,700 Block of BRANNAN ST,San Francisco,94103,B03,8,2276,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7732232142847, -122.402889298062)",142152114-72 +142022960,89,14070012,Structure Fire,07/21/2014,07/21/2014,07/21/2014 07:33:01 PM,07/21/2014 07:33:01 PM,07/21/2014 07:36:26 PM,07/21/2014 07:36:32 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Fire,07/21/2014 07:38:34 PM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Alarm,1,MEDIC,3,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",142022960-89 +143342991,E41,14118505,Medical Incident,11/30/2014,11/30/2014,11/30/2014 08:15:00 PM,11/30/2014 08:16:44 PM,11/30/2014 08:16:55 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,Patient Declined Transport,11/30/2014 08:17:59 PM,1200 Block of SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,false,Non Life-threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7877066353114, -122.420948027457)",143342991-E41 +150840605,B01,15031959,Structure Fire,03/25/2015,03/24/2015,03/25/2015 07:31:59 AM,03/25/2015 07:33:44 AM,03/25/2015 07:34:08 AM,03/25/2015 07:35:37 AM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,Fire,03/25/2015 07:38:48 AM,1000 Block of HYDE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Alarm,1,CHIEF,6,4,3,Nob Hill,"(37.7905178178349, -122.417229719258)",150840605-B01 +143462636,T16,14123444,Structure Fire,12/12/2014,12/12/2014,12/12/2014 04:55:26 PM,12/12/2014 04:55:26 PM,12/12/2014 04:55:49 PM,12/12/2014 04:57:51 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Fire,12/12/2014 05:00:42 PM,POLK ST/GREENWICH ST,San Francisco,94109,B01,16,3132,3,3,3,false,Alarm,1,TRUCK,2,4,2,Russian Hill,"(37.8006241524646, -122.422713159969)",143462636-T16 +142113761,E33,14073322,Medical Incident,07/30/2014,07/30/2014,07/30/2014 10:48:07 PM,07/30/2014 10:49:36 PM,07/30/2014 10:50:31 PM,07/30/2014 10:50:57 PM,07/30/2014 10:52:00 PM,04/25/2016 01:15:56 PM,04/25/2016 01:15:56 PM,Code 2 Transport,07/30/2014 11:05:58 PM,0 Block of SADOWA ST,San Francisco,94112,B09,33,8371,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7122702602925, -122.455354635173)",142113761-E33 +142160552,87,14074799,Medical Incident,08/04/2014,08/03/2014,08/04/2014 07:06:18 AM,08/04/2014 07:07:01 AM,08/04/2014 07:49:56 AM,08/04/2014 07:50:10 AM,08/04/2014 08:07:01 AM,08/04/2014 08:15:11 AM,08/04/2014 08:39:55 AM,Code 2 Transport,08/04/2014 08:53:49 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142160552-87 +160953402,63,16037767,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:24:13 PM,04/04/2016 07:24:32 PM,04/04/2016 07:24:51 PM,04/04/2016 07:25:29 PM,04/04/2016 07:28:06 PM,04/04/2016 08:21:41 PM,04/04/2016 08:46:30 PM,Code 2 Transport,04/04/2016 09:12:55 PM,200 Block of DORLAND ST,San Francisco,94114,B02,6,5421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7620293658927, -122.429546492088)",160953402-63 +150992928,E29,15037578,Medical Incident,04/09/2015,04/09/2015,04/09/2015 07:07:18 PM,04/09/2015 07:09:34 PM,04/09/2015 07:11:54 PM,04/09/2015 07:12:54 PM,04/09/2015 07:15:17 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Code 2 Transport,04/09/2015 07:23:55 PM,BRYANT ST/RINCON ST,San Francisco,94107,B03,35,2135,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7842053064379, -122.392118767755)",150992928-E29 +141130101,E07,14038058,Medical Incident,04/23/2014,04/23/2014,04/23/2014 09:04:05 AM,04/23/2014 09:08:49 AM,04/23/2014 09:12:54 AM,04/23/2014 09:12:54 AM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Code 2 Transport,04/23/2014 09:17:23 AM,16TH ST/MISSION ST,SAN FRANCISCO,94103,B02,7,5236,,2,2,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7650513381945, -122.419668973861)",141130101-E07 +141490001,E44,14051022,Medical Incident,05/29/2014,05/28/2014,05/29/2014 12:01:16 AM,05/29/2014 12:02:22 AM,05/29/2014 12:02:46 AM,05/29/2014 12:04:30 AM,05/29/2014 12:07:56 AM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Other,05/29/2014 12:12:22 AM,100 Block of LELAND AVE,San Francisco,94134,B09,44,6256,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",141490001-E44 +150081727,KM12,15003126,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:34:35 PM,01/08/2015 12:35:07 PM,01/08/2015 12:36:10 PM,01/08/2015 12:37:50 PM,01/08/2015 12:40:12 PM,01/08/2015 12:54:30 PM,01/08/2015 01:12:26 PM,Code 2 Transport,01/08/2015 01:43:55 PM,3700 Block of 18TH ST,San Francisco,94114,B06,6,541,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",150081727-KM12 +142341774,KM06,14081326,Medical Incident,08/22/2014,08/22/2014,08/22/2014 01:00:39 PM,08/22/2014 01:02:13 PM,08/22/2014 01:02:23 PM,08/22/2014 01:02:50 PM,08/22/2014 01:24:19 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Patient Declined Transport,08/22/2014 01:47:22 PM,0 Block of 2ND ST,San Francisco,94105,B03,1,2144,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7886675869095, -122.400529034534)",142341774-KM06 +151813415,E51,15069272,Medical Incident,06/30/2015,06/30/2015,06/30/2015 09:13:02 PM,06/30/2015 09:15:18 PM,06/30/2015 09:15:44 PM,06/30/2015 09:16:56 PM,06/30/2015 09:18:19 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,Code 2 Transport,06/30/2015 09:31:49 PM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",151813415-E51 +143240804,E03,14114629,Medical Incident,11/20/2014,11/20/2014,11/20/2014 08:46:57 AM,11/20/2014 08:46:57 AM,11/20/2014 08:47:19 AM,11/20/2014 08:47:49 AM,11/20/2014 08:49:14 AM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Code 2 Transport,11/20/2014 08:52:12 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",143240804-E03 +160980668,72,16038796,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:07:18 AM,04/07/2016 07:08:07 AM,04/07/2016 07:09:00 AM,04/07/2016 07:09:11 AM,04/07/2016 07:16:41 AM,04/07/2016 07:37:20 AM,04/07/2016 08:20:56 AM,Code 2 Transport,04/07/2016 08:48:30 AM,UNION ST/VAN NESS AV,San Francisco,94109,B04,41,3131,3,3,3,true,Non Life-threatening,1,MEDIC,3,4,2,Russian Hill,"(37.7985524526538, -122.423982146754)",160980668-72 +143621518,T09,14129510,Alarms,12/28/2014,12/28/2014,12/28/2014 12:52:45 PM,12/28/2014 12:54:31 PM,12/28/2014 12:54:47 PM,12/28/2014 12:56:55 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Fire,12/28/2014 01:26:21 PM,3400 Block of 3RD ST,San Francisco,94124,B10,25,6437,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7456103513279, -122.387266109164)",143621518-T09 +142764032,E13,14097156,Alarms,10/03/2014,10/03/2014,10/03/2014 10:11:40 PM,10/03/2014 10:14:05 PM,10/03/2014 10:17:37 PM,10/03/2014 10:19:10 PM,10/03/2014 10:20:39 PM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Fire,10/03/2014 10:24:16 PM,400 Block of PACIFIC AVE,San Francisco,94133,B01,13,1212,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.7975049363143, -122.402474789742)",142764032-E13 +142591742,KM10,14090482,Medical Incident,09/16/2014,09/16/2014,09/16/2014 01:02:35 PM,09/16/2014 01:04:24 PM,09/16/2014 01:05:44 PM,09/16/2014 01:07:01 PM,09/16/2014 01:17:26 PM,09/16/2014 01:45:42 PM,09/16/2014 01:50:55 PM,Code 2 Transport,09/16/2014 02:34:54 PM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",142591742-KM10 +150301718,T07,15011569,Structure Fire,01/30/2015,01/30/2015,01/30/2015 12:21:53 PM,01/30/2015 12:22:29 PM,01/30/2015 12:22:55 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Fire,01/30/2015 12:25:34 PM,200 Block of DIAMOND ST,San Francisco,94114,B06,24,5442,3,3,3,false,Alarm,1,TRUCK,11,6,8,Castro/Upper Market,"(37.7583612138452, -122.436893464387)",150301718-T07 +151700022,E13,15064818,Alarms,06/19/2015,06/18/2015,06/19/2015 12:06:58 AM,06/19/2015 12:08:08 AM,06/19/2015 12:09:11 AM,06/19/2015 12:11:13 AM,06/19/2015 12:14:13 AM,04/25/2016 01:09:56 PM,04/25/2016 01:09:56 PM,Fire,06/19/2015 01:10:11 AM,100 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7905126810084, -122.402216710445)",151700022-E13 +151713186,58,15065485,Medical Incident,06/20/2015,06/20/2015,06/20/2015 08:46:46 PM,06/20/2015 08:46:46 PM,06/20/2015 08:47:14 PM,06/20/2015 08:47:25 PM,06/20/2015 08:53:05 PM,06/20/2015 09:04:23 PM,06/20/2015 09:34:27 PM,Code 3 Transport,06/20/2015 10:15:32 PM,2700 Block of FRANKLIN ST,San Francisco,94123,B04,16,3234,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.7997322773361, -122.425975742414)",151713186-58 +141673617,T03,14057787,Alarms,06/16/2014,06/16/2014,06/16/2014 11:31:18 PM,06/16/2014 11:32:51 PM,06/16/2014 11:32:56 PM,06/16/2014 11:34:16 PM,06/16/2014 11:36:25 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/16/2014 11:40:57 PM,700 Block of SUTTER ST,San Francisco,94109,B01,3,1463,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7887571187597, -122.412724440796)",141673617-T03 +160951444,85,16037597,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:30:42 AM,04/04/2016 11:30:55 AM,04/04/2016 11:32:22 AM,04/04/2016 11:36:15 AM,04/04/2016 11:45:31 AM,04/04/2016 12:15:42 PM,04/04/2016 12:28:22 PM,Code 2 Transport,04/04/2016 01:08:24 PM,1200 Block of LA SALLE AVE,San Francisco,94124,B10,17,668,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",160951444-85 +152932784,79,15112644,Medical Incident,10/20/2015,10/20/2015,10/20/2015 04:39:05 PM,10/20/2015 04:39:05 PM,10/20/2015 04:39:05 PM,10/20/2015 04:39:05 PM,10/20/2015 04:39:05 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Code 2 Transport,10/20/2015 04:39:05 PM,STANYAN ST/HAIGHT ST,San Francisco,94117,B99,12,4553,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",152932784-79 +151231378,KM08,15046637,Medical Incident,05/03/2015,05/03/2015,05/03/2015 11:30:59 AM,05/03/2015 11:31:38 AM,05/03/2015 11:32:14 AM,05/03/2015 11:34:29 AM,05/03/2015 11:34:29 AM,05/03/2015 11:42:52 AM,05/03/2015 12:23:52 PM,Code 2 Transport,05/03/2015 12:31:11 PM,1300 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",151231378-KM08 +142971366,E34,14104735,Medical Incident,10/24/2014,10/24/2014,10/24/2014 11:12:30 AM,10/24/2014 11:13:51 AM,10/24/2014 11:13:59 AM,10/24/2014 11:14:41 AM,10/24/2014 11:17:30 AM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Patient Declined Transport,10/24/2014 11:23:32 AM,29TH AV/CALIFORNIA ST,San Francisco,94121,B07,14,7227,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7836886123731, -122.489289781128)",142971366-E34 +142630866,E36,14091906,Medical Incident,09/20/2014,09/20/2014,09/20/2014 08:05:51 AM,09/20/2014 08:06:35 AM,09/20/2014 08:12:30 AM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Code 2 Transport,09/20/2014 08:15:00 AM,9TH ST/BRYANT ST,San Francisco,94103,B03,29,2333,2,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7712907918294, -122.408531083232)",142630866-E36 +160970037,64,16038242,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:13:46 AM,04/06/2016 12:14:54 AM,04/06/2016 12:15:22 AM,04/06/2016 12:16:16 AM,04/06/2016 12:23:03 AM,04/06/2016 12:35:06 AM,04/06/2016 12:46:45 AM,Code 2 Transport,04/06/2016 01:09:58 AM,3RD ST/MARKET ST,San Francisco,94103,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",160970037-64 +151353107,E44,15051400,Medical Incident,05/15/2015,05/15/2015,05/15/2015 06:30:50 PM,05/15/2015 06:33:02 PM,05/15/2015 06:33:53 PM,05/15/2015 06:35:01 PM,05/15/2015 06:41:35 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Fire,05/15/2015 06:53:23 PM,400 Block of RAYMOND AVE,San Francisco,94134,B09,44,628,2,2,2,false,Non Life-threatening,1,ENGINE,2,9,10,McLaren Park,"(37.7147287919997, -122.412436034218)",151353107-E44 +151591579,KM04,15060705,Medical Incident,06/08/2015,06/08/2015,06/08/2015 11:49:40 AM,06/08/2015 11:50:08 AM,06/08/2015 11:56:53 AM,06/08/2015 12:00:57 PM,06/08/2015 12:22:37 PM,04/25/2016 01:10:07 PM,04/25/2016 01:10:07 PM,Patient Declined Transport,06/08/2015 12:47:07 PM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",151591579-KM04 +160923367,60,16036596,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:20:38 PM,04/01/2016 08:20:38 PM,04/01/2016 08:21:05 PM,04/01/2016 08:21:19 PM,04/01/2016 08:34:22 PM,04/01/2016 08:52:19 PM,04/01/2016 09:04:22 PM,Code 2 Transport,04/01/2016 09:38:32 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160923367-60 +160960326,72,16037878,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:19:54 AM,04/05/2016 04:21:54 AM,04/05/2016 04:22:05 AM,04/05/2016 04:22:21 AM,04/05/2016 04:28:53 AM,04/05/2016 04:41:37 AM,04/05/2016 04:48:28 AM,Code 3 Transport,04/05/2016 05:48:04 AM,1600 Block of YOSEMITE AVE,San Francisco,94124,B10,17,6546,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7273371737416, -122.392411239852)",160960326-72 +160993727,AM16,16039496,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:50:57 PM,04/08/2016 09:50:57 PM,04/08/2016 09:52:14 PM,04/08/2016 09:53:21 PM,04/08/2016 10:04:42 PM,04/08/2016 10:16:52 PM,04/08/2016 10:41:41 PM,Code 2 Transport,04/08/2016 11:09:40 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160993727-AM16 +142632769,71,14092099,Medical Incident,09/20/2014,09/20/2014,09/20/2014 06:10:53 PM,09/20/2014 06:10:53 PM,09/20/2014 06:12:56 PM,09/20/2014 06:12:56 PM,09/20/2014 06:20:21 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Against Medical Advice,09/20/2014 07:14:20 PM,1100 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7517406897648, -122.396529537539)",142632769-71 +150090405,AM20,15003431,Medical Incident,01/09/2015,01/08/2015,01/09/2015 04:44:29 AM,01/09/2015 04:46:40 AM,01/09/2015 04:48:06 AM,01/09/2015 04:48:44 AM,01/09/2015 04:50:43 AM,01/09/2015 05:02:55 AM,01/09/2015 05:22:07 AM,Code 2 Transport,01/09/2015 05:50:18 AM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",150090405-AM20 +142133216,82,14073992,Medical Incident,08/01/2014,08/01/2014,08/01/2014 08:48:48 PM,08/01/2014 08:49:13 PM,08/01/2014 08:51:59 PM,08/01/2014 08:51:59 PM,08/01/2014 08:55:27 PM,08/01/2014 09:12:19 PM,08/01/2014 09:53:59 PM,Code 2 Transport,08/01/2014 10:27:04 PM,CESAR CHAVEZ ST/HARRISON ST,San Francisco,94110,B06,9,5622,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7482982868438, -122.411484131055)",142133216-82 +160991269,KM05,16039263,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:04:20 AM,04/08/2016 11:07:41 AM,04/08/2016 11:08:05 AM,04/08/2016 11:11:22 AM,04/08/2016 11:12:45 AM,04/08/2016 11:56:01 AM,04/08/2016 12:02:18 PM,Code 2 Transport,04/08/2016 12:45:12 PM,2200 Block of HAYES ST,San Francisco,94117,B05,21,4543,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",160991269-KM05 +160960485,55,16037897,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:01:48 AM,04/05/2016 07:03:57 AM,04/05/2016 07:04:14 AM,04/05/2016 07:05:11 AM,04/05/2016 07:08:28 AM,04/05/2016 07:26:18 AM,04/05/2016 07:47:38 AM,Code 2 Transport,04/05/2016 08:20:29 AM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",160960485-55 +151653102,E18,15063277,Medical Incident,06/14/2015,06/14/2015,06/14/2015 09:22:34 PM,06/14/2015 09:24:06 PM,06/14/2015 09:24:17 PM,06/14/2015 09:26:38 PM,06/14/2015 09:29:01 PM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,No Merit,06/14/2015 09:32:19 PM,1600 Block of 29TH AVE,San Francisco,94122,B08,18,7514,3,3,3,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7565620032209, -122.487451554087)",151653102-E18 +160942173,AM08,16037296,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:42:00 PM,04/03/2016 02:44:31 PM,04/03/2016 02:47:42 PM,04/03/2016 02:47:42 PM,04/03/2016 02:49:20 PM,04/03/2016 03:00:01 PM,04/03/2016 03:13:46 PM,Code 2 Transport,04/03/2016 03:42:41 PM,3000 Block of FILLMORE ST,San Francisco,94123,B04,16,3552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7975637588622, -122.435515673585)",160942173-AM08 +160970677,62,16038300,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:39:47 AM,04/06/2016 07:42:26 AM,04/06/2016 07:43:25 AM,04/06/2016 07:43:40 AM,04/06/2016 07:55:29 AM,04/06/2016 08:31:34 AM,04/06/2016 09:12:12 AM,Code 2 Transport,04/06/2016 09:46:06 AM,1000 Block of GILMAN AV,San Francisco,94124,B10,17,6611,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7187222855195, -122.389118324416)",160970677-62 +152361229,70,15089860,Medical Incident,08/24/2015,08/24/2015,08/24/2015 09:55:34 AM,08/24/2015 09:56:26 AM,08/24/2015 09:58:29 AM,08/24/2015 10:00:39 AM,08/24/2015 10:02:51 AM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,Patient Declined Transport,08/24/2015 10:58:17 AM,700 Block of PARNASSUS AVE,San Francisco,94122,B08,12,7326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7624428137898, -122.461350952018)",152361229-70 +151212278,E36,15045916,Structure Fire,05/01/2015,05/01/2015,05/01/2015 02:51:53 PM,05/01/2015 02:52:09 PM,05/01/2015 02:52:21 PM,05/01/2015 02:53:48 PM,05/01/2015 02:53:53 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Fire,05/01/2015 02:54:10 PM,LAGUNA ST/HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7727343110864, -122.425512056036)",151212278-E36 +160962505,86,16038070,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:41:55 PM,04/05/2016 03:42:12 PM,04/05/2016 03:42:36 PM,04/05/2016 03:42:47 PM,04/05/2016 03:52:42 PM,04/05/2016 04:15:37 PM,04/05/2016 04:34:38 PM,Code 2 Transport,04/05/2016 05:20:58 PM,TURK ST/FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",160962505-86 +160932241,KM11,16036917,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:31:34 PM,04/02/2016 03:33:55 PM,04/02/2016 03:34:05 PM,04/02/2016 03:34:44 PM,04/02/2016 03:37:04 PM,04/02/2016 03:44:45 PM,04/02/2016 04:07:53 PM,Code 2 Transport,04/02/2016 04:26:56 PM,MISSION ST/SPEAR ST,San Francisco,94105,B03,35,2111,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7925372164019, -122.394059624933)",160932241-KM11 +151570225,55,15059777,Medical Incident,06/06/2015,06/05/2015,06/06/2015 01:33:54 AM,06/06/2015 01:35:16 AM,06/06/2015 01:35:30 AM,06/06/2015 01:35:38 AM,06/06/2015 01:52:38 AM,06/06/2015 02:10:28 AM,06/06/2015 02:19:32 AM,Code 2 Transport,06/06/2015 03:11:20 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2175,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",151570225-55 +151250200,E06,15047218,Medical Incident,05/05/2015,05/04/2015,05/05/2015 02:27:47 AM,05/05/2015 02:29:33 AM,05/05/2015 02:35:35 AM,05/05/2015 02:35:35 AM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Code 2 Transport,05/05/2015 02:41:04 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,6,8,Castro/Upper Market,"(37.7608670671665, -122.434446928667)",151250200-E06 +152060521,89,15078368,Medical Incident,07/25/2015,07/24/2015,07/25/2015 04:04:22 AM,07/25/2015 04:04:22 AM,07/25/2015 04:05:18 AM,07/25/2015 04:05:35 AM,07/25/2015 04:22:22 AM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Patient Declined Transport,07/25/2015 04:58:05 AM,1200 Block of 3RD ST,San Francisco,94158,B03,8,2231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",152060521-89 +150490838,E02,15018878,Medical Incident,02/18/2015,02/18/2015,02/18/2015 08:30:13 AM,02/18/2015 08:31:20 AM,02/18/2015 08:31:59 AM,02/18/2015 08:33:54 AM,02/18/2015 08:46:22 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Patient Declined Transport,02/18/2015 08:48:50 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",150490838-E02 +160981286,KM10,16038856,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:10:28 AM,04/07/2016 10:11:48 AM,04/07/2016 10:13:47 AM,04/07/2016 10:15:20 AM,04/07/2016 10:33:49 AM,04/07/2016 10:50:51 AM,04/07/2016 11:10:39 AM,Code 2 Transport,04/07/2016 11:45:17 AM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",160981286-KM10 +152210957,54,15084140,Medical Incident,08/09/2015,08/09/2015,08/09/2015 09:00:05 AM,08/09/2015 09:02:16 AM,08/09/2015 09:02:30 AM,08/09/2015 09:02:41 AM,08/09/2015 09:08:10 AM,08/09/2015 09:23:37 AM,08/09/2015 09:35:04 AM,Code 2 Transport,08/09/2015 10:06:29 AM,0 Block of CORDOVA ST,San Francisco,94112,B09,43,6224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7128189051559, -122.436154623588)",152210957-54 +151493335,T01,15056841,Alarms,05/29/2015,05/29/2015,05/29/2015 07:04:43 PM,05/29/2015 07:05:38 PM,05/29/2015 07:06:00 PM,05/29/2015 07:07:58 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,Fire,05/29/2015 07:11:55 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",151493335-T01 +161002419,KM06,16039856,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:19:43 PM,04/09/2016 05:20:28 PM,04/09/2016 05:20:46 PM,04/09/2016 05:21:21 PM,04/09/2016 05:31:00 PM,04/09/2016 05:38:55 PM,04/09/2016 06:15:27 PM,Code 2 Transport,04/09/2016 06:41:10 PM,DORADO TR/OCEAN AV,San Francisco,94112,B09,15,8456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7249497021259, -122.461210546404)",161002419-KM06 +161002334,53,16039842,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:56:29 PM,04/09/2016 04:59:16 PM,04/09/2016 04:59:29 PM,04/09/2016 04:59:36 PM,04/09/2016 05:10:24 PM,04/09/2016 05:26:02 PM,04/09/2016 05:54:16 PM,Code 2 Transport,04/09/2016 06:17:47 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",161002334-53 +141160125,AM12,14039114,Medical Incident,04/26/2014,04/26/2014,04/26/2014 09:38:25 AM,04/26/2014 09:39:06 AM,04/26/2014 09:39:22 AM,04/26/2014 09:39:56 AM,04/26/2014 09:45:46 AM,04/26/2014 09:54:06 AM,04/26/2014 10:01:48 AM,Code 2 Transport,04/26/2014 10:43:41 AM,9TH ST/HOWARD ST,SAN FRANCISCO,94103,B02,36,2335,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",141160125-AM12 +160930628,75,16036732,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:50:42 AM,04/02/2016 06:51:32 AM,04/02/2016 06:51:44 AM,04/02/2016 06:51:52 AM,04/02/2016 06:57:36 AM,04/02/2016 07:06:23 AM,04/02/2016 07:12:20 AM,Code 2 Transport,04/02/2016 08:03:14 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160930628-75 +160922207,85,16036488,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:17:12 PM,04/01/2016 03:19:55 PM,04/01/2016 03:20:18 PM,04/01/2016 03:20:27 PM,04/01/2016 03:30:06 PM,04/01/2016 03:49:15 PM,04/01/2016 04:26:16 PM,Code 2 Transport,04/01/2016 05:14:45 PM,100 Block of NAUTILUS DR,San Francisco,94124,B10,17,6665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.728115531126, -122.372708921939)",160922207-85 +160931930,KM11,16036887,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:55:42 PM,04/02/2016 01:59:19 PM,04/02/2016 02:09:41 PM,04/02/2016 02:10:21 PM,04/02/2016 02:16:06 PM,04/02/2016 02:46:55 PM,04/02/2016 02:55:23 PM,Code 2 Transport,04/02/2016 03:25:43 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160931930-KM11 +160943798,75,16037467,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:48:06 PM,04/03/2016 11:48:58 PM,04/03/2016 11:49:04 PM,04/03/2016 11:49:18 PM,04/03/2016 11:52:50 PM,04/04/2016 12:09:21 AM,04/04/2016 12:28:19 AM,Code 2 Transport,04/04/2016 12:52:34 AM,1600 Block of 25TH AVE,San Francisco,94122,B08,18,7454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7567511438898, -122.483167036761)",160943798-75 +142300817,E43,14079833,Alarms,08/18/2014,08/18/2014,08/18/2014 08:30:29 AM,08/18/2014 08:31:18 AM,08/18/2014 08:32:13 AM,08/18/2014 08:34:13 AM,08/18/2014 08:37:09 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,No Merit,08/18/2014 08:37:15 AM,300 Block of ATHENS ST,San Francisco,94112,B09,43,6155,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7224448653377, -122.427900525777)",142300817-E43 +160970456,88,16038283,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:50:28 AM,04/06/2016 05:53:07 AM,04/06/2016 05:54:08 AM,04/06/2016 05:54:13 AM,04/06/2016 06:01:27 AM,04/06/2016 06:07:26 AM,04/06/2016 06:23:10 AM,Code 2 Transport,04/06/2016 06:51:08 AM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7810688918781, -122.407387172098)",160970456-88 +160950172,53,16037487,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:10:05 AM,04/04/2016 02:10:31 AM,04/04/2016 02:10:52 AM,04/04/2016 02:11:02 AM,04/04/2016 02:15:17 AM,04/04/2016 02:43:05 AM,04/04/2016 02:55:38 AM,Code 2 Transport,04/04/2016 03:32:16 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160950172-53 +143263652,68,14115681,Medical Incident,11/22/2014,11/22/2014,11/22/2014 09:45:03 PM,11/22/2014 09:45:15 PM,11/22/2014 09:46:41 PM,11/22/2014 09:46:48 PM,11/22/2014 09:56:52 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Patient Declined Transport,11/22/2014 10:36:30 PM,0 Block of SANTA FE AVE,San Francisco,94124,B10,42,6363,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7341519140031, -122.400741582809)",143263652-68 +151672112,E41,15063905,Alarms,06/16/2015,06/16/2015,06/16/2015 03:37:42 PM,06/16/2015 03:39:13 PM,06/16/2015 03:42:15 PM,06/16/2015 03:43:11 PM,06/16/2015 03:48:11 PM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Fire,06/16/2015 03:48:31 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",151672112-E41 +160950144,AM22,16037482,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:43:32 AM,04/04/2016 01:43:32 AM,04/04/2016 01:43:59 AM,04/04/2016 01:44:26 AM,04/04/2016 01:45:15 AM,04/04/2016 01:56:51 AM,04/04/2016 02:05:51 AM,Code 2 Transport,04/04/2016 02:43:23 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160950144-AM22 +150502184,62,15019363,Other,02/19/2015,02/19/2015,02/19/2015 03:01:40 PM,02/19/2015 03:02:31 PM,02/19/2015 03:08:46 PM,02/19/2015 03:08:59 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Other,02/19/2015 03:09:09 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,3,3,true,Alarm,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",150502184-62 +150321023,E01,15012293,Medical Incident,02/01/2015,02/01/2015,02/01/2015 09:09:33 AM,02/01/2015 09:09:33 AM,02/01/2015 09:10:31 AM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 09:11:50 AM,MONTGOMERY ST/MARKET ST,San Francisco,94105,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",150321023-E01 +152233130,AM16,15085090,Medical Incident,08/11/2015,08/11/2015,08/11/2015 05:58:27 PM,08/11/2015 06:06:56 PM,08/11/2015 06:07:32 PM,08/11/2015 06:07:54 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Unable to Locate,08/11/2015 06:21:40 PM,ALEMANY BL/PALMETTO AV,San Francisco,94132,B09,33,8412,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,Oceanview/Merced/Ingleside,"(37.7105934401882, -122.469288459018)",152233130-AM16 +150832751,E03,15031799,Medical Incident,03/24/2015,03/24/2015,03/24/2015 05:12:00 PM,03/24/2015 05:15:04 PM,03/24/2015 05:15:40 PM,03/24/2015 05:16:57 PM,03/24/2015 05:22:44 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 05:34:30 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",150832751-E03 +150652956,T02,15024937,Alarms,03/06/2015,03/06/2015,03/06/2015 04:55:52 PM,03/06/2015 04:57:38 PM,03/06/2015 04:57:44 PM,03/06/2015 05:00:01 PM,03/06/2015 05:02:00 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Fire,03/06/2015 05:24:52 PM,600 Block of CHESTNUT ST,San Francisco,94133,B01,28,1424,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8035976378197, -122.414038394751)",150652956-T02 +152012870,E01,15076709,Medical Incident,07/20/2015,07/20/2015,07/20/2015 05:28:20 PM,07/20/2015 05:29:27 PM,07/20/2015 05:30:01 PM,07/20/2015 05:31:06 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Cancelled,07/20/2015 05:32:47 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",152012870-E01 +150390800,E44,15015097,Vehicle Fire,02/08/2015,02/07/2015,02/08/2015 06:59:15 AM,02/08/2015 07:01:35 AM,02/08/2015 07:11:35 AM,02/08/2015 07:11:35 AM,02/08/2015 07:11:35 AM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/08/2015 07:15:15 AM,900 Block of INGERSON AVE,San Francisco,94124,B10,17,6642,3,3,3,false,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7188939789224, -122.392475562324)",150390800-E44 +152910823,E15,15111719,Structure Fire,10/18/2015,10/17/2015,10/18/2015 07:32:21 AM,10/18/2015 07:32:21 AM,10/18/2015 07:33:20 AM,10/18/2015 07:34:08 AM,10/18/2015 07:36:43 AM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Fire,10/18/2015 07:37:28 AM,APTOS AV/UPLAND DR,San Francisco,94127,B09,15,8535,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7303290228288, -122.466257283615)",152910823-E15 +152770741,62,15106113,Medical Incident,10/04/2015,10/03/2015,10/04/2015 06:44:30 AM,10/04/2015 06:46:49 AM,10/04/2015 06:47:11 AM,10/04/2015 06:48:06 AM,10/04/2015 06:58:00 AM,10/04/2015 07:06:03 AM,10/04/2015 07:13:22 AM,Code 2 Transport,10/04/2015 07:48:30 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",152770741-62 +150060812,E29,15002183,Medical Incident,01/06/2015,01/06/2015,01/06/2015 08:33:45 AM,01/06/2015 08:34:50 AM,01/06/2015 08:38:38 AM,01/06/2015 08:39:28 AM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 2 Transport,01/06/2015 08:43:58 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7738617771611, -122.413045971966)",150060812-E29 +153053205,67,15117255,Medical Incident,11/01/2015,11/01/2015,11/01/2015 04:42:40 PM,11/01/2015 04:43:18 PM,11/01/2015 04:46:01 PM,11/01/2015 04:46:01 PM,11/01/2015 04:48:35 PM,11/01/2015 05:04:58 PM,11/01/2015 05:20:13 PM,Code 2 Transport,11/01/2015 05:57:03 PM,1100 Block of STEINER ST,San Francisco,94115,B05,5,3625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7798119295256, -122.433758569735)",153053205-67 +151481779,RC1,15056331,Water Rescue,05/28/2015,05/28/2015,05/28/2015 01:19:31 PM,05/28/2015 01:21:38 PM,05/28/2015 01:23:12 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Fire,05/28/2015 01:25:03 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,true,Fire,1,RESCUE CAPTAIN,12,7,2,Presidio,"(37.8066581989584, -122.47471662098)",151481779-RC1 +150632138,E17,15024084,Medical Incident,03/04/2015,03/04/2015,03/04/2015 02:01:31 PM,03/04/2015 02:01:31 PM,03/04/2015 02:03:00 PM,03/04/2015 02:05:00 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 02:06:17 PM,HARKNESS AV/GIRARD ST,San Francisco,94134,B10,44,6317,3,3,3,true,Non Life-threatening,1,ENGINE,3,10,10,Visitacion Valley,"(37.7177764111045, -122.400618615115)",150632138-E17 +142412130,E14,14083905,Medical Incident,08/29/2014,08/29/2014,08/29/2014 03:17:23 PM,08/29/2014 03:19:24 PM,08/29/2014 03:21:19 PM,08/29/2014 03:22:13 PM,08/29/2014 03:27:13 PM,04/25/2016 01:15:23 PM,04/25/2016 01:15:23 PM,Patient Declined Transport,08/29/2014 03:46:05 PM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",142412130-E14 +141693197,E31,14058504,Medical Incident,06/18/2014,06/18/2014,06/18/2014 09:07:12 PM,06/18/2014 09:11:24 PM,06/18/2014 09:11:39 PM,06/18/2014 09:12:49 PM,06/18/2014 09:15:20 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Unable to Locate,06/18/2014 09:18:41 PM,5TH AV/FULTON ST,San Francisco,94122,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7737597510029, -122.462683796008)",141693197-E31 +143521156,E39,14125715,Medical Incident,12/18/2014,12/18/2014,12/18/2014 10:17:45 AM,12/18/2014 10:17:45 AM,12/18/2014 10:18:05 AM,12/18/2014 10:18:48 AM,12/18/2014 10:25:37 AM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Code 2 Transport,12/18/2014 10:43:47 AM,100 Block of MAYWOOD DR,San Francisco,94127,B09,39,8527,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7334505288886, -122.461766387551)",143521156-E39 +151092324,E39,15041335,Medical Incident,04/19/2015,04/19/2015,04/19/2015 04:15:54 PM,04/19/2015 04:18:24 PM,04/19/2015 04:19:05 PM,04/19/2015 04:21:13 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Code 2 Transport,04/19/2015 04:32:41 PM,100 Block of YERBA BUENA AVE,San Francisco,94127,B08,39,8564,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7361051017533, -122.461594716833)",151092324-E39 +152522277,KM11,15096363,Medical Incident,09/09/2015,09/09/2015,09/09/2015 02:34:49 PM,09/09/2015 02:36:51 PM,09/09/2015 02:37:27 PM,09/09/2015 02:38:00 PM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,No Merit,09/09/2015 02:43:55 PM,100 Block of NATOMA ST,San Francisco,94105,B03,1,2157,3,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7868759472905, -122.399092765393)",152522277-KM11 +142061298,T08,14071328,Alarms,07/25/2014,07/25/2014,07/25/2014 10:52:44 AM,07/25/2014 10:54:36 AM,07/25/2014 10:56:31 AM,07/25/2014 10:56:36 AM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Fire,07/25/2014 10:57:26 AM,500 Block of FOLSOM ST,San Francisco,94105,B03,35,2137,3,3,3,false,Alarm,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7859994709135, -122.396224141199)",142061298-T08 +151352702,E12,15051365,Medical Incident,05/15/2015,05/15/2015,05/15/2015 04:51:23 PM,05/15/2015 04:51:23 PM,05/15/2015 04:52:01 PM,05/15/2015 04:52:36 PM,05/15/2015 04:55:40 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Code 2 Transport,05/15/2015 05:12:09 PM,100 Block of MARTIN LUTHER KING JR DR,San Francisco,94122,B07,12,7743,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,5,Golden Gate Park,"(37.7669591119289, -122.462470187645)",151352702-E12 +160981157,70,16038839,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:37:08 AM,04/07/2016 09:37:08 AM,04/07/2016 09:37:30 AM,04/07/2016 09:38:03 AM,04/07/2016 09:52:54 AM,04/07/2016 10:08:07 AM,04/07/2016 10:35:11 AM,Code 2 Transport,04/07/2016 12:07:16 PM,500 Block of GRANT AVE,San Francisco,94108,B01,13,1314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7921056209358, -122.405937157736)",160981157-70 +160951215,87,16037575,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:30:30 AM,04/04/2016 10:31:08 AM,04/04/2016 10:31:33 AM,04/04/2016 10:32:02 AM,04/04/2016 10:37:40 AM,04/04/2016 11:00:49 AM,04/04/2016 11:04:47 AM,Code 2 Transport,04/04/2016 11:40:22 AM,2300 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3511,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7891171836076, -122.432618741613)",160951215-87 +150581896,E01,15022171,Medical Incident,02/27/2015,02/27/2015,02/27/2015 01:23:24 PM,02/27/2015 01:25:54 PM,02/27/2015 01:26:54 PM,02/27/2015 01:28:04 PM,02/27/2015 01:31:27 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Code 2 Transport,02/27/2015 01:51:25 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790900137996, -122.406444631984)",150581896-E01 +142412843,AM12,14083964,Medical Incident,08/29/2014,08/29/2014,08/29/2014 06:13:17 PM,08/29/2014 06:15:32 PM,08/29/2014 06:25:27 PM,08/29/2014 06:26:05 PM,08/29/2014 06:37:59 PM,08/29/2014 06:56:19 PM,08/29/2014 07:13:25 PM,Code 2 Transport,08/29/2014 08:04:44 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",142412843-AM12 +160982082,74,16038934,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:43:21 PM,04/07/2016 01:44:52 PM,04/07/2016 01:45:06 PM,04/07/2016 01:46:01 PM,04/07/2016 01:56:56 PM,04/07/2016 02:11:27 PM,04/07/2016 02:36:35 PM,Code 2 Transport,04/07/2016 03:27:52 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",160982082-74 +152731102,E03,15104432,Medical Incident,09/30/2015,09/30/2015,09/30/2015 10:03:21 AM,09/30/2015 10:04:39 AM,09/30/2015 10:05:14 AM,09/30/2015 10:06:55 AM,09/30/2015 10:09:21 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Code 2 Transport,09/30/2015 10:15:44 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",152731102-E03 +160963634,66,16038171,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:13:13 PM,04/05/2016 08:13:41 PM,04/05/2016 08:13:53 PM,04/05/2016 08:14:55 PM,04/05/2016 08:20:28 PM,04/05/2016 09:06:08 PM,04/05/2016 09:37:08 PM,Code 2 Transport,04/05/2016 10:15:56 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",160963634-66 +153130644,E36,15120192,Alarms,11/09/2015,11/08/2015,11/09/2015 07:56:10 AM,11/09/2015 07:58:31 AM,11/09/2015 07:58:45 AM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,Fire,11/09/2015 08:00:25 AM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,6,2,6,Tenderloin,"(37.7814966331106, -122.416314542947)",153130644-E36 +152270729,AM24,15086444,Medical Incident,08/15/2015,08/14/2015,08/15/2015 06:47:51 AM,08/15/2015 06:51:05 AM,08/15/2015 06:56:40 AM,08/15/2015 06:57:09 AM,08/15/2015 07:04:33 AM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Unable to Locate,08/15/2015 07:12:21 AM,ELLIS ST/MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",152270729-AM24 +141310465,E13,14044465,Medical Incident,05/11/2014,05/10/2014,05/11/2014 03:59:51 AM,05/11/2014 03:59:51 AM,05/11/2014 04:00:14 AM,05/11/2014 04:02:09 AM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Code 2 Transport,05/11/2014 04:04:53 AM,SUTTER ST/KEARNY ST,San Francisco,94108,B01,13,1242,,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7898293371562, -122.403841564352)",141310465-E13 +150642099,T15,15024480,Alarms,03/05/2015,03/05/2015,03/05/2015 02:01:09 PM,03/05/2015 02:02:21 PM,03/05/2015 02:02:47 PM,03/05/2015 02:05:00 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Fire,03/05/2015 02:08:31 PM,900 Block of ROCKDALE DR,San Francisco,94127,B09,39,8652,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7407226927779, -122.454898275432)",150642099-T15 +160954051,64,16037823,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:52:45 PM,04/04/2016 10:53:44 PM,04/04/2016 10:53:56 PM,04/04/2016 10:54:25 PM,04/04/2016 10:59:46 PM,04/04/2016 11:28:01 PM,04/04/2016 11:43:37 PM,Code 2 Transport,04/05/2016 12:14:34 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160954051-64 +141610215,68,14055360,Medical Incident,06/10/2014,06/09/2014,06/10/2014 02:25:43 AM,06/10/2014 02:25:43 AM,06/10/2014 02:27:15 AM,06/10/2014 02:27:29 AM,06/10/2014 02:35:14 AM,06/10/2014 02:48:52 AM,06/10/2014 03:01:23 AM,Fire,06/10/2014 03:34:04 AM,PORTOLA DR/LAGUNA HONDA BL,San Francisco,94127,B08,39,8671,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7430486658264, -122.455271074722)",141610215-68 +150101601,74,15003939,Medical Incident,01/10/2015,01/10/2015,01/10/2015 12:38:13 PM,01/10/2015 12:40:10 PM,01/10/2015 12:42:54 PM,01/10/2015 12:44:02 PM,01/10/2015 12:51:09 PM,01/10/2015 01:08:41 PM,01/10/2015 01:34:20 PM,Code 2 Transport,01/10/2015 02:02:08 PM,1200 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",150101601-74 +143351234,73,14118672,Medical Incident,12/01/2014,12/01/2014,12/01/2014 10:57:05 AM,12/01/2014 10:57:05 AM,12/01/2014 10:58:54 AM,12/01/2014 10:58:54 AM,12/01/2014 11:04:48 AM,12/01/2014 12:23:05 PM,12/01/2014 11:42:14 AM,Code 2 Transport,12/01/2014 12:23:09 PM,0 Block of HAHN ST,San Francisco,94134,B09,44,6263,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7140533220214, -122.415121573719)",143351234-73 +151553970,E33,15059331,Medical Incident,06/04/2015,06/04/2015,06/04/2015 11:15:02 PM,06/04/2015 11:23:28 PM,06/04/2015 11:24:05 PM,06/04/2015 11:25:12 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Code 2 Transport,06/04/2015 11:29:02 PM,1100 Block of JUNIPERO SERRA BLVD,San Francisco,94132,B08,33,8422,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.7175079598578, -122.472388669721)",151553970-E33 +160952111,50,16037657,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:09:00 PM,04/04/2016 02:09:31 PM,04/04/2016 02:09:58 PM,04/04/2016 02:10:05 PM,04/04/2016 02:26:47 PM,04/04/2016 03:47:40 PM,04/04/2016 03:47:44 PM,Code 2 Transport,04/04/2016 03:47:58 PM,2100 Block of VAN NESS AVE,San Francisco,94109,B04,41,3152,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.795296761924, -122.423148793536)",160952111-50 +151531986,E05,15058304,Medical Incident,06/02/2015,06/02/2015,06/02/2015 02:04:59 PM,06/02/2015 02:06:31 PM,06/02/2015 02:07:03 PM,06/02/2015 02:08:16 PM,06/02/2015 02:10:58 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/02/2015 02:24:57 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",151531986-E05 +160921768,76,16036447,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:23:33 PM,04/01/2016 01:25:11 PM,04/01/2016 01:26:27 PM,04/01/2016 01:26:27 PM,04/01/2016 01:31:02 PM,04/01/2016 01:42:47 PM,04/01/2016 01:49:17 PM,Code 2 Transport,04/01/2016 02:19:43 PM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160921768-76 +142311569,72,14080228,Medical Incident,08/19/2014,08/19/2014,08/19/2014 12:31:09 PM,08/19/2014 12:31:50 PM,08/19/2014 12:32:19 PM,08/19/2014 12:33:48 PM,08/19/2014 12:38:54 PM,08/19/2014 12:58:39 PM,08/19/2014 01:12:12 PM,Code 3 Transport,08/19/2014 02:07:14 PM,1200 Block of JACKSON ST,San Francisco,94109,B01,41,1535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7949369487607, -122.415660216005)",142311569-72 +160991694,71,16039295,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:03:38 PM,04/08/2016 01:07:09 PM,04/08/2016 01:08:40 PM,04/08/2016 01:09:25 PM,04/08/2016 01:21:46 PM,04/08/2016 02:14:51 PM,04/08/2016 02:33:21 PM,Code 2 Transport,04/08/2016 03:12:07 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160991694-71 +143070300,E01,14108482,Medical Incident,11/03/2014,11/02/2014,11/03/2014 03:31:03 AM,11/03/2014 03:31:03 AM,11/03/2014 03:31:45 AM,11/03/2014 03:33:18 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/03/2014 03:35:51 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",143070300-E01 +160922817,KM12,16036546,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:44:08 PM,04/01/2016 05:44:08 PM,04/01/2016 05:44:31 PM,04/01/2016 05:45:20 PM,04/01/2016 05:45:34 PM,04/01/2016 06:04:55 PM,04/01/2016 06:09:25 PM,Code 2 Transport,04/01/2016 06:45:14 PM,HAIGHT ST/STANYAN ST,San Francisco,94117,B05,12,4545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",160922817-KM12 +142402511,KM09,14083579,Medical Incident,08/28/2014,08/28/2014,08/28/2014 04:52:32 PM,08/28/2014 04:54:55 PM,08/28/2014 05:07:11 PM,08/28/2014 05:07:53 PM,08/28/2014 05:20:13 PM,08/28/2014 05:32:24 PM,08/28/2014 06:09:15 PM,Code 2 Transport,08/28/2014 06:24:57 PM,700 Block of 2ND ST,San Francisco,94107,B03,8,2154,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.78019523865, -122.390107968661)",142402511-KM09 +160922409,AM10,16036512,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:09:38 PM,04/01/2016 04:12:05 PM,04/01/2016 04:12:37 PM,04/01/2016 04:13:20 PM,04/01/2016 04:19:06 PM,04/01/2016 04:32:48 PM,04/01/2016 04:42:54 PM,Code 2 Transport,04/01/2016 05:00:04 PM,3100 Block of 24TH ST,San Francisco,94110,B06,7,5526,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7524609846175, -122.415724213925)",160922409-AM10 +152703313,T03,15103604,Alarms,09/27/2015,09/27/2015,09/27/2015 09:13:59 PM,09/27/2015 09:15:03 PM,09/27/2015 09:17:11 PM,09/27/2015 09:17:11 PM,09/27/2015 09:18:58 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Fire,09/27/2015 09:26:31 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",152703313-T03 +141861895,B08,14064452,Alarms,07/05/2014,07/05/2014,07/05/2014 01:51:16 PM,07/05/2014 01:52:42 PM,07/05/2014 01:53:03 PM,07/05/2014 01:55:59 PM,07/05/2014 01:58:32 PM,04/25/2016 01:16:23 PM,04/25/2016 01:16:23 PM,Fire,07/05/2014 02:16:26 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,false,Alarm,1,CHIEF,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",141861895-B08 +160971468,88,16038372,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:58:47 AM,04/06/2016 10:59:34 AM,04/06/2016 11:00:27 AM,04/06/2016 11:00:38 AM,04/06/2016 11:03:49 AM,04/06/2016 11:17:53 AM,04/06/2016 11:43:28 AM,Code 2 Transport,04/06/2016 12:12:31 PM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",160971468-88 +143610372,68,14129017,Medical Incident,12/27/2014,12/26/2014,12/27/2014 03:26:15 AM,12/27/2014 03:27:35 AM,12/27/2014 03:28:26 AM,12/27/2014 03:28:36 AM,12/27/2014 03:37:52 AM,12/27/2014 03:52:08 AM,12/27/2014 03:59:37 AM,Code 2 Transport,12/27/2014 04:24:14 AM,2900 Block of GOUGH ST,San Francisco,94123,B04,16,3244,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8004333103903, -122.427803521956)",143610372-68 +161000668,85,16039642,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:55:53 AM,04/09/2016 06:57:54 AM,04/09/2016 06:58:18 AM,04/09/2016 06:58:27 AM,04/09/2016 07:02:06 AM,04/09/2016 07:24:05 AM,04/09/2016 07:38:48 AM,Code 2 Transport,04/09/2016 08:10:48 AM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",161000668-85 +151993797,E42,15076030,Medical Incident,07/18/2015,07/18/2015,07/18/2015 10:12:52 PM,07/18/2015 10:13:29 PM,07/18/2015 10:13:49 PM,07/18/2015 10:15:12 PM,07/18/2015 10:18:06 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Code 2 Transport,07/18/2015 10:38:39 PM,0 Block of APOLLO ST,San Francisco,94124,B10,42,6473,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7322144272033, -122.397845534183)",151993797-E42 +152842131,E01,15109090,Alarms,10/11/2015,10/11/2015,10/11/2015 02:08:11 PM,10/11/2015 02:09:27 PM,10/11/2015 02:09:38 PM,10/11/2015 02:11:32 PM,10/11/2015 02:12:53 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Fire,10/11/2015 02:15:05 PM,100 Block of 3RD ST,San Francisco,94105,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",152842131-E01 +151953336,E43,15074525,Gas Leak (Natural and LP Gases),07/14/2015,07/14/2015,07/14/2015 08:08:15 PM,07/14/2015 08:09:18 PM,07/14/2015 08:09:36 PM,07/14/2015 08:10:35 PM,07/14/2015 08:16:04 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,No Merit,07/14/2015 08:16:07 PM,100 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",151953336-E43 +153372315,E19,15129713,Medical Incident,12/03/2015,12/03/2015,12/03/2015 02:58:48 PM,12/03/2015 03:04:36 PM,12/03/2015 03:04:51 PM,12/03/2015 03:05:51 PM,12/03/2015 03:08:22 PM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Fire,12/03/2015 03:15:32 PM,19TH AV/JUNIPERO SERRA BL,San Francisco,94132,B08,19,8427,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Lakeshore,"(37.71717386983, -122.472572451935)",153372315-E19 +160964195,61,16038226,Structure Fire,04/05/2016,04/05/2016,04/05/2016 11:34:30 PM,04/05/2016 11:34:30 PM,04/05/2016 11:39:22 PM,04/05/2016 11:39:26 PM,04/05/2016 11:41:43 PM,04/05/2016 11:56:57 PM,04/06/2016 12:03:30 AM,Code 3 Transport,04/06/2016 12:31:07 AM,TAYLOR ST/EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,MEDIC,3,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",160964195-61 +143002031,E01,14105936,Medical Incident,10/27/2014,10/27/2014,10/27/2014 02:07:00 PM,10/27/2014 02:07:49 PM,10/27/2014 02:08:39 PM,10/27/2014 02:10:04 PM,10/27/2014 02:13:24 PM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Code 2 Transport,10/27/2014 02:13:55 PM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",143002031-E01 +160952773,AM12,16037708,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:43:59 PM,04/04/2016 04:45:09 PM,04/04/2016 04:47:02 PM,04/04/2016 04:47:34 PM,04/04/2016 04:57:01 PM,04/04/2016 05:21:00 PM,04/04/2016 05:30:28 PM,Code 2 Transport,04/04/2016 05:58:17 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160952773-AM12 +143402809,89,14120851,Medical Incident,12/06/2014,12/06/2014,12/06/2014 05:48:54 PM,12/06/2014 05:51:04 PM,12/06/2014 05:52:18 PM,12/06/2014 05:57:45 PM,12/06/2014 06:01:01 PM,12/06/2014 06:39:02 PM,12/06/2014 06:57:48 PM,Code 2 Transport,12/06/2014 07:21:21 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",143402809-89 +150301325,65,15011523,Medical Incident,01/30/2015,01/30/2015,01/30/2015 10:30:13 AM,01/30/2015 10:31:24 AM,01/30/2015 10:31:32 AM,01/30/2015 10:32:00 AM,01/30/2015 10:37:07 AM,01/30/2015 10:52:04 AM,01/30/2015 11:15:21 AM,Code 2 Transport,01/30/2015 11:40:37 AM,2500 Block of 40TH AVE,San Francisco,94116,B08,18,7617,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7392586275396, -122.498062678439)",150301325-65 +143641685,E40,14130208,Medical Incident,12/30/2014,12/30/2014,12/30/2014 01:24:14 PM,12/30/2014 01:24:36 PM,12/30/2014 01:25:31 PM,12/30/2014 01:26:21 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 01:26:58 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,10,Mission,"(37.765718993574, -122.409520691153)",143641685-E40 +160960365,88,16037882,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:03:43 AM,04/05/2016 05:04:04 AM,04/05/2016 05:04:30 AM,04/05/2016 05:04:38 AM,04/05/2016 05:07:02 AM,04/05/2016 05:22:55 AM,04/05/2016 05:40:03 AM,Code 2 Transport,04/05/2016 06:09:21 AM,100 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843212349417, -122.38904057367)",160960365-88 +160930132,76,16036681,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:48:14 AM,04/02/2016 12:49:48 AM,04/02/2016 12:50:40 AM,04/02/2016 12:50:46 AM,04/02/2016 12:57:11 AM,04/02/2016 01:04:37 AM,04/02/2016 01:35:44 AM,Code 2 Transport,04/02/2016 02:04:21 AM,100 Block of UTAH ST,San Francisco,94103,B02,29,2351,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7677826861899, -122.406668803339)",160930132-76 +160972996,64,16038531,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:30:49 PM,04/06/2016 04:33:28 PM,04/06/2016 04:33:47 PM,04/06/2016 04:33:53 PM,04/06/2016 04:59:36 PM,04/06/2016 05:19:38 PM,04/06/2016 05:37:50 PM,Code 2 Transport,04/06/2016 06:04:35 PM,GEARY BL/DIVISADERO ST,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7833084876653, -122.439480381269)",160972996-64 +152600392,70,15099255,Structure Fire,09/17/2015,09/16/2015,09/17/2015 05:18:20 AM,09/17/2015 05:21:47 AM,09/17/2015 05:22:03 AM,09/17/2015 05:23:08 AM,09/17/2015 05:26:38 AM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Fire,09/17/2015 05:29:24 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Alarm,1,MEDIC,6,2,9,Mission,"(37.7661343875141, -122.421935077177)",152600392-70 +160983749,85,16039116,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:31:23 PM,04/07/2016 09:31:50 PM,04/07/2016 09:32:25 PM,04/07/2016 09:33:17 PM,04/07/2016 09:34:46 PM,04/07/2016 09:40:35 PM,04/07/2016 09:58:35 PM,Code 2 Transport,04/07/2016 10:33:50 PM,1500 Block of 8TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.759427932261, -122.464847191753)",160983749-85 +151182739,E19,15044707,Alarms,04/28/2015,04/28/2015,04/28/2015 05:15:17 PM,04/28/2015 05:16:58 PM,04/28/2015 05:17:15 PM,04/28/2015 05:17:54 PM,04/28/2015 05:24:27 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,Fire,04/28/2015 05:27:26 PM,500 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Alarm,1,ENGINE,2,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",151182739-E19 +160993199,78,16039434,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 07:05:23 PM,04/08/2016 07:05:23 PM,04/08/2016 07:05:50 PM,04/08/2016 07:05:57 PM,04/08/2016 07:12:04 PM,04/08/2016 07:26:09 PM,04/08/2016 08:05:21 PM,Code 2 Transport,04/08/2016 08:41:59 PM,100 Block of 3RD ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",160993199-78 +142943696,77,14103847,Medical Incident,10/21/2014,10/21/2014,10/21/2014 10:29:53 PM,10/21/2014 10:31:41 PM,10/21/2014 10:32:49 PM,10/21/2014 10:32:49 PM,10/21/2014 10:34:58 PM,10/21/2014 10:51:10 PM,10/21/2014 11:21:17 PM,Code 2 Transport,10/21/2014 11:28:47 PM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",142943696-77 +160921575,67,16036427,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:28:49 PM,04/01/2016 12:29:27 PM,04/01/2016 12:29:50 PM,04/01/2016 12:30:00 PM,04/01/2016 12:39:42 PM,04/01/2016 12:59:17 PM,04/01/2016 01:36:41 PM,Code 2 Transport,04/01/2016 01:44:38 PM,0 Block of SONOMA ST,San Francisco,94133,B01,28,1252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8003106284648, -122.406381656512)",160921575-67 +150393387,63,15015356,Medical Incident,02/08/2015,02/08/2015,02/08/2015 09:07:37 PM,02/08/2015 09:08:35 PM,02/08/2015 09:10:12 PM,02/08/2015 09:12:28 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Cancelled,02/08/2015 09:20:12 PM,3500 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.7864621207579, -122.452571132404)",150393387-63 +150993333,E01,15037624,Medical Incident,04/09/2015,04/09/2015,04/09/2015 09:21:51 PM,04/09/2015 09:26:06 PM,04/09/2015 09:26:15 PM,04/09/2015 09:27:19 PM,04/09/2015 09:28:58 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,No Merit,04/09/2015 09:30:36 PM,HOWARD ST/5TH ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",150993333-E01 +142012523,75,14069661,Medical Incident,07/20/2014,07/20/2014,07/20/2014 06:41:27 PM,07/20/2014 06:43:03 PM,07/20/2014 06:47:11 PM,07/20/2014 06:47:21 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Code 2 Transport,07/20/2014 06:51:05 PM,6TH ST/HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",142012523-75 +160950280,AM20,16037498,Medical Incident,04/04/2016,04/03/2016,04/04/2016 03:45:09 AM,04/04/2016 03:45:09 AM,04/04/2016 03:46:00 AM,04/04/2016 03:46:45 AM,04/04/2016 03:54:34 AM,04/04/2016 04:11:07 AM,04/04/2016 04:19:25 AM,Code 2 Transport,04/04/2016 04:42:08 AM,1700 Block of 9TH AV,San Francisco,94122,B08,22,7336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7556426325016, -122.465795068368)",160950280-AM20 +150383703,B10,15014968,Structure Fire,02/07/2015,02/07/2015,02/07/2015 09:57:18 PM,02/07/2015 09:58:33 PM,02/07/2015 09:59:12 PM,02/07/2015 10:00:14 PM,02/07/2015 10:05:00 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/07/2015 10:05:08 PM,2400 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,false,Alarm,1,CHIEF,2,10,9,Portola,"(37.7307945918953, -122.404830420604)",150383703-B10 +153420328,AM18,15131470,Medical Incident,12/08/2015,12/07/2015,12/08/2015 03:20:13 AM,12/08/2015 03:23:26 AM,12/08/2015 03:23:49 AM,12/08/2015 03:24:15 AM,12/08/2015 03:30:45 AM,12/08/2015 03:45:05 AM,12/08/2015 04:29:24 AM,Code 2 Transport,12/08/2015 04:31:42 AM,1600 Block of LOMBARD ST,San Francisco,94123,B04,16,3244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.800665922599, -122.428624511812)",153420328-AM18 +160961182,AM04,16037953,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:26:13 AM,04/05/2016 10:26:13 AM,04/05/2016 10:26:47 AM,04/05/2016 10:27:43 AM,04/05/2016 10:29:54 AM,04/05/2016 10:39:35 AM,04/05/2016 10:51:48 AM,Code 2 Transport,04/05/2016 11:18:34 AM,1300 Block of 9TH AVE,San Francisco,94122,B07,22,7334,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,5,Inner Sunset,"(37.7631090580661, -122.466176505201)",160961182-AM04 +152953079,66,15113475,Medical Incident,10/22/2015,10/22/2015,10/22/2015 06:57:32 PM,10/22/2015 06:57:32 PM,10/22/2015 06:58:33 PM,10/22/2015 06:58:43 PM,10/22/2015 07:05:50 PM,10/22/2015 07:17:51 PM,10/22/2015 07:27:47 PM,Code 2 Transport,10/22/2015 07:59:17 PM,900 Block of 16TH ST,San Francisco,94107,B03,29,2414,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7664325184439, -122.395973403657)",152953079-66 +161000254,KM09,16039587,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:45:55 AM,04/09/2016 01:48:20 AM,04/09/2016 01:48:37 AM,04/09/2016 01:50:59 AM,04/09/2016 01:58:40 AM,04/09/2016 02:14:40 AM,04/09/2016 02:40:17 AM,Code 2 Transport,04/09/2016 03:21:58 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161000254-KM09 +153160803,71,15121331,Traffic Collision,11/12/2015,11/12/2015,11/12/2015 08:34:25 AM,11/12/2015 08:34:25 AM,11/12/2015 08:35:24 AM,11/12/2015 08:35:31 AM,11/12/2015 08:36:08 AM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,No Merit,11/12/2015 09:04:53 AM,8TH ST/BRYANT ST,San Francisco,94103,B03,29,2324,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.772526268193, -122.406968289725)",153160803-71 +160960685,88,16037916,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:10:37 AM,04/05/2016 08:12:31 AM,04/05/2016 08:13:50 AM,04/05/2016 08:13:58 AM,04/05/2016 08:23:44 AM,04/05/2016 08:28:41 AM,04/05/2016 09:05:48 AM,Code 2 Transport,04/05/2016 09:28:57 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160960685-88 +152692533,E07,15103156,Medical Incident,09/26/2015,09/26/2015,09/26/2015 04:17:26 PM,09/26/2015 04:19:30 PM,09/26/2015 04:20:22 PM,09/26/2015 04:22:17 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Code 2 Transport,09/26/2015 04:30:52 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",152692533-E07 +141761403,E36,14060714,Medical Incident,06/25/2014,06/25/2014,06/25/2014 11:37:36 AM,06/25/2014 11:38:11 AM,06/25/2014 11:39:26 AM,06/25/2014 11:39:38 AM,06/25/2014 11:51:14 AM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Code 2 Transport,06/25/2014 12:02:08 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",141761403-E36 +141690377,88,14058223,Medical Incident,06/18/2014,06/17/2014,06/18/2014 05:44:17 AM,06/18/2014 05:47:24 AM,06/18/2014 05:50:07 AM,06/18/2014 05:50:32 AM,06/18/2014 06:01:38 AM,06/18/2014 06:18:05 AM,06/18/2014 06:33:10 AM,Code 2 Transport,06/18/2014 07:06:06 AM,2200 Block of 28TH AVE,San Francisco,94116,B08,18,7521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7454203725674, -122.485600832491)",141690377-88 +151791162,E38,15068150,Alarms,06/28/2015,06/28/2015,06/28/2015 09:18:24 AM,06/28/2015 09:19:26 AM,06/28/2015 09:19:44 AM,06/28/2015 09:20:47 AM,06/28/2015 09:22:54 AM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 09:34:55 AM,2500 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7897873621099, -122.434861054284)",151791162-E38 +160963245,53,16038135,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:21:47 PM,04/05/2016 06:21:47 PM,04/05/2016 06:21:47 PM,04/05/2016 06:21:47 PM,04/05/2016 06:21:47 PM,04/05/2016 06:36:27 PM,04/05/2016 06:43:29 PM,Code 2 Transport,04/05/2016 07:30:40 PM,JONES ST/ELLIS ST,San Francisco,94102,B01,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160963245-53 +153201867,E18,15123047,Medical Incident,11/16/2015,11/16/2015,11/16/2015 01:28:34 PM,11/16/2015 01:28:54 PM,11/16/2015 01:29:45 PM,11/16/2015 01:30:47 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Patient Declined Transport,11/16/2015 01:33:59 PM,1500 Block of 43RD AVE,San Francisco,94122,B08,23,765,2,2,2,true,Non Life-threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.757770435301, -122.502447012656)",153201867-E18 +150823772,E01,15031551,Medical Incident,03/23/2015,03/23/2015,03/23/2015 10:55:38 PM,03/23/2015 10:56:24 PM,03/23/2015 10:56:43 PM,03/23/2015 10:59:13 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,No Merit,03/23/2015 11:07:08 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",150823772-E01 +142430726,85,14084534,Medical Incident,08/31/2014,08/30/2014,08/31/2014 06:53:02 AM,08/31/2014 06:53:02 AM,08/31/2014 06:54:08 AM,08/31/2014 06:54:19 AM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Patient Declined Transport,08/31/2014 07:10:12 AM,THOMAS AV/INGALLS ST,San Francisco,94124,B10,17,6547,2,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272332288185, -122.385682204312)",142430726-85 +142331503,E21,14080910,Administrative,08/21/2014,08/21/2014,08/21/2014 12:21:38 PM,08/21/2014 12:21:43 PM,08/21/2014 12:22:41 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,Fire,08/21/2014 12:23:31 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",142331503-E21 +161002664,62,16039880,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:31:04 PM,04/09/2016 06:33:20 PM,04/09/2016 06:33:28 PM,04/09/2016 06:33:33 PM,04/09/2016 06:37:21 PM,04/09/2016 06:49:57 PM,04/09/2016 07:06:09 PM,Code 2 Transport,04/09/2016 07:24:18 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",161002664-62 +160992347,KM09,16039365,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:47:06 PM,04/08/2016 03:48:52 PM,04/08/2016 03:59:28 PM,04/08/2016 03:59:28 PM,04/08/2016 03:59:28 PM,04/08/2016 04:30:28 PM,04/08/2016 04:49:37 PM,Code 2 Transport,04/08/2016 05:15:59 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160992347-KM09 +141282333,E11,14043570,Traffic Collision,05/08/2014,05/08/2014,05/08/2014 03:47:06 PM,05/08/2014 03:49:49 PM,05/08/2014 03:51:19 PM,05/08/2014 03:51:47 PM,05/08/2014 03:54:34 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 04:10:56 PM,SANCHEZ ST/CESAR CHAVEZ ST,San Francisco,94131,B06,11,5552,2,2,2,false,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7475644672031, -122.429270028456)",141282333-E11 +153444045,E06,15132627,Medical Incident,12/10/2015,12/10/2015,12/10/2015 11:12:40 PM,12/10/2015 11:12:40 PM,12/10/2015 11:13:15 PM,12/10/2015 11:15:05 PM,12/10/2015 11:15:52 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Code 2 Transport,12/10/2015 11:27:25 PM,CHURCH ST/RESERVOIR ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.768674599859, -122.42905378685)",153444045-E06 +150631526,E12,15024027,Medical Incident,03/04/2015,03/04/2015,03/04/2015 11:26:18 AM,03/04/2015 11:27:52 AM,03/04/2015 11:28:34 AM,03/04/2015 11:29:24 AM,03/04/2015 11:32:02 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 11:40:40 AM,1300 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7702640437118, -122.444486067677)",150631526-E12 +160963153,KM04,16038128,Traffic Collision,04/05/2016,04/05/2016,04/05/2016 06:03:37 PM,04/05/2016 06:03:37 PM,04/05/2016 06:03:57 PM,04/05/2016 06:04:36 PM,04/05/2016 06:26:25 PM,04/05/2016 06:26:26 PM,04/05/2016 06:49:51 PM,Code 2 Transport,04/05/2016 07:29:49 PM,17TH AV/LAKE ST,San Francisco,94118,B07,31,7163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,2,Seacliff,"(37.7861282808337, -122.476575146725)",160963153-KM04 +160973375,76,16038578,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:49:38 PM,04/06/2016 05:49:38 PM,04/06/2016 06:06:42 PM,04/06/2016 06:06:49 PM,04/06/2016 06:12:00 PM,04/06/2016 06:34:09 PM,04/06/2016 06:42:12 PM,Code 2 Transport,04/06/2016 06:52:17 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160973375-76 +141451754,E13,14049808,Medical Incident,05/25/2014,05/25/2014,05/25/2014 02:23:21 PM,05/25/2014 02:25:42 PM,05/25/2014 02:26:20 PM,05/25/2014 02:26:46 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Patient Declined Transport,05/25/2014 02:32:40 PM,KEARNY ST/VER MEHR PL,San Francisco,94104,B01,13,1242,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7893632762983, -122.403746847886)",141451754-E13 +160930994,KM08,16036775,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:23:42 AM,04/02/2016 09:24:59 AM,04/02/2016 09:25:20 AM,04/02/2016 09:26:08 AM,04/02/2016 09:35:49 AM,04/02/2016 09:49:22 AM,04/02/2016 10:24:24 AM,Code 2 Transport,04/02/2016 11:11:35 AM,900 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7228877389932, -122.451962418129)",160930994-KM08 +150911028,E36,15034544,Alarms,04/01/2015,04/01/2015,04/01/2015 09:51:31 AM,04/01/2015 09:52:58 AM,04/01/2015 09:53:04 AM,04/01/2015 09:54:32 AM,04/01/2015 09:58:08 AM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Fire,04/01/2015 10:06:06 AM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",150911028-E36 +142362001,KM01,14082094,Medical Incident,08/24/2014,08/24/2014,08/24/2014 02:09:32 PM,08/24/2014 02:09:42 PM,08/24/2014 02:10:03 PM,08/24/2014 02:10:46 PM,08/24/2014 02:50:07 PM,08/24/2014 02:50:08 PM,08/24/2014 03:09:28 PM,Code 2 Transport,08/24/2014 03:53:42 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",142362001-KM01 +160981770,83,16038905,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:19:33 PM,04/07/2016 12:20:35 PM,04/07/2016 12:20:58 PM,04/07/2016 12:21:59 PM,04/07/2016 12:36:10 PM,04/07/2016 12:47:53 PM,04/07/2016 01:19:13 PM,Code 2 Transport,04/07/2016 02:00:53 PM,300 Block of OCEAN AVE,San Francisco,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7230819396446, -122.444018805055)",160981770-83 +150782334,RC3,15029937,Traffic Collision,03/19/2015,03/19/2015,03/19/2015 02:52:36 PM,03/19/2015 02:52:36 PM,03/19/2015 02:54:33 PM,03/19/2015 02:54:33 PM,03/19/2015 02:59:40 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Code 2 Transport,03/19/2015 03:11:57 PM,3RD ST/OAKDALE AV,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",150782334-RC3 +142661663,E15,14093091,Medical Incident,09/23/2014,09/23/2014,09/23/2014 12:45:07 PM,09/23/2014 12:46:34 PM,09/23/2014 12:47:11 PM,09/23/2014 12:48:26 PM,09/23/2014 12:50:39 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,No Merit,09/23/2014 01:00:48 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",142661663-E15 +143401321,82,14120725,Structure Fire,12/06/2014,12/06/2014,12/06/2014 10:44:08 AM,12/06/2014 10:45:17 AM,12/06/2014 10:48:50 AM,12/06/2014 10:49:07 AM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Fire,12/06/2014 10:53:38 AM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,3,3,3,true,Alarm,1,MEDIC,9,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",143401321-82 +141342149,E39,14045750,Medical Incident,05/14/2014,05/14/2014,05/14/2014 02:00:37 PM,05/14/2014 02:00:37 PM,05/14/2014 02:09:55 PM,05/14/2014 02:11:14 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Other,05/14/2014 02:42:36 PM,TARAVAL ST/36TH AV,San Francisco,94116,B08,18,7555,3,3,3,false,Potentially Life-Threatening,1,ENGINE,5,8,4,Sunset/Parkside,"(37.74224865426, -122.493907039318)",141342149-E39 +143552330,HT48,14126965,Structure Fire,12/21/2014,12/21/2014,12/21/2014 03:03:39 PM,12/21/2014 03:05:21 PM,12/21/2014 03:06:14 PM,12/21/2014 03:08:05 PM,12/21/2014 03:14:44 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 04:14:35 PM,0 Block of CLIPPER COVE WAY,Treasure Isla,94130,B03,48,2931,3,3,3,false,Alarm,1,SUPPORT,5,None,6,Treasure Island,"(37.8163207162813, -122.370727071585)",143552330-HT48 +160980174,85,16038738,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:16:01 AM,04/07/2016 01:17:21 AM,04/07/2016 01:17:56 AM,04/07/2016 01:21:43 AM,04/07/2016 01:21:43 AM,04/07/2016 01:46:25 AM,04/07/2016 01:54:56 AM,Code 2 Transport,04/07/2016 02:42:54 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160980174-85 +153451140,E01,15132739,Traffic Collision,12/11/2015,12/11/2015,12/11/2015 09:33:29 AM,12/11/2015 09:33:29 AM,12/11/2015 09:34:05 AM,12/11/2015 09:35:07 AM,12/11/2015 09:48:58 AM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Patient Declined Transport,12/11/2015 09:53:04 AM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,3,A,2,true,Potentially Life-Threatening,1,ENGINE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",153451140-E01 +151443170,E08,15054923,Citizen Assist / Service Call,05/24/2015,05/24/2015,05/24/2015 08:27:35 PM,05/24/2015 08:30:10 PM,05/24/2015 08:30:37 PM,05/24/2015 08:32:24 PM,05/24/2015 08:34:13 PM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,Fire,05/24/2015 08:41:53 PM,1100 Block of 4TH ST,San Francisco,94158,B03,8,2226,3,3,3,true,Alarm,1,ENGINE,2,3,6,Mission Bay,"(37.7731448011713, -122.391472934142)",151443170-E08 +153120309,52,15119792,Medical Incident,11/08/2015,11/07/2015,11/08/2015 02:17:51 AM,11/08/2015 02:20:19 AM,11/08/2015 02:20:36 AM,11/08/2015 02:20:43 AM,11/08/2015 02:24:21 AM,04/25/2016 01:07:19 PM,04/25/2016 01:07:19 PM,Cancelled,11/08/2015 02:25:57 AM,600 Block of HAMPSHIRE ST,San Francisco,94110,B10,7,5427,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,10,Mission,"(37.76123422286, -122.408194330773)",153120309-52 +160991766,89,16039304,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:26:07 PM,04/08/2016 01:26:47 PM,04/08/2016 01:28:06 PM,04/08/2016 01:28:20 PM,04/08/2016 01:33:33 PM,04/08/2016 01:54:59 PM,04/08/2016 02:09:25 PM,Code 2 Transport,04/08/2016 02:36:04 PM,600 Block of SHOTWELL ST,San Francisco,94110,B06,7,5447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.758027155218, -122.415771731954)",160991766-89 +160950197,75,16037490,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:29:24 AM,04/04/2016 02:29:24 AM,04/04/2016 02:29:44 AM,04/04/2016 02:29:52 AM,04/04/2016 02:34:10 AM,04/04/2016 02:43:20 AM,04/04/2016 02:52:48 AM,Code 2 Transport,04/04/2016 03:31:04 AM,500 Block of MISSION ST,San Francisco,94105,B03,1,2145,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887066123323, -122.399010207568)",160950197-75 +153420913,RC2,15131526,Medical Incident,12/08/2015,12/08/2015,12/08/2015 08:51:00 AM,12/08/2015 08:51:22 AM,12/08/2015 08:58:21 AM,12/08/2015 08:58:21 AM,12/08/2015 08:58:21 AM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Code 2 Transport,12/08/2015 09:09:05 AM,600 Block of 23RD AVE,San Francisco,94121,B07,14,7177,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7754703290477, -122.482182023429)",153420913-RC2 +160942863,62,16037368,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:06:31 PM,04/03/2016 06:08:38 PM,04/03/2016 06:09:53 PM,04/03/2016 06:10:06 PM,04/03/2016 06:19:23 PM,04/03/2016 06:22:58 PM,04/03/2016 07:00:10 PM,Code 2 Transport,04/03/2016 07:32:26 PM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7797665517286, -122.438328082289)",160942863-62 +150680541,55,15025885,Medical Incident,03/09/2015,03/08/2015,03/09/2015 07:14:06 AM,03/09/2015 07:16:57 AM,03/09/2015 07:18:54 AM,03/09/2015 07:25:02 AM,03/09/2015 07:41:02 AM,03/09/2015 08:00:23 AM,03/09/2015 08:50:25 AM,Code 2 Transport,03/09/2015 10:07:38 AM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782320193191, -122.41402801662)",150680541-55 +141591916,E35,14054835,Structure Fire,06/08/2014,06/08/2014,06/08/2014 03:20:14 PM,06/08/2014 03:20:58 PM,06/08/2014 03:21:33 PM,06/08/2014 03:22:41 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Fire,06/08/2014 03:25:35 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,3,3,3,true,Alarm,1,ENGINE,8,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",141591916-E35 +153311076,T13,15127323,Alarms,11/27/2015,11/27/2015,11/27/2015 10:30:20 AM,11/27/2015 10:31:42 AM,11/27/2015 10:32:11 AM,11/27/2015 10:33:12 AM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,Fire,11/27/2015 10:37:14 AM,100 Block of DRUMM ST,San Francisco,94111,B01,13,1115,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",153311076-T13 +150170709,E39,15006600,Structure Fire,01/17/2015,01/16/2015,01/17/2015 06:19:10 AM,01/17/2015 06:19:41 AM,01/17/2015 06:26:00 AM,01/17/2015 06:28:12 AM,01/17/2015 06:32:21 AM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Fire,01/17/2015 07:28:54 AM,0 Block of URBANO DR,San Francisco,94127,B09,15,8456,3,3,3,true,Alarm,1,ENGINE,9,9,7,West of Twin Peaks,"(37.7251469979939, -122.463865761043)",150170709-E39 +160971216,73,16038356,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:02:14 AM,04/06/2016 10:03:49 AM,04/06/2016 10:05:06 AM,04/06/2016 10:06:30 AM,04/06/2016 10:08:03 AM,04/06/2016 10:24:57 AM,04/06/2016 10:46:32 AM,Code 2 Transport,04/06/2016 11:46:48 AM,2200 Block of MARIPOSA ST,San Francisco,94110,B02,29,2451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Potrero Hill,"(37.7632235866447, -122.405930298917)",160971216-73 +152650432,70,15101362,Medical Incident,09/22/2015,09/21/2015,09/22/2015 05:10:42 AM,09/22/2015 05:12:37 AM,09/22/2015 05:12:52 AM,09/22/2015 05:13:19 AM,09/22/2015 05:16:06 AM,09/22/2015 05:41:43 AM,09/22/2015 06:03:37 AM,Code 2 Transport,09/22/2015 06:23:40 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",152650432-70 +150053673,T13,15002057,Medical Incident,01/05/2015,01/05/2015,01/05/2015 10:14:07 PM,01/05/2015 10:15:34 PM,01/05/2015 10:15:54 PM,01/05/2015 10:17:48 PM,01/05/2015 10:20:45 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 2 Transport,01/05/2015 10:21:07 PM,600 Block of MARKET ST,San Francisco,94104,B03,1,2211,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",150053673-T13 +151460017,E25,15055363,Medical Incident,05/26/2015,05/25/2015,05/26/2015 12:06:08 AM,05/26/2015 12:06:08 AM,05/26/2015 12:07:29 AM,05/26/2015 12:09:01 AM,05/26/2015 12:11:26 AM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,Code 2 Transport,05/26/2015 12:11:54 AM,2300 Block of 3RD ST,San Francisco,94107,B10,25,2533,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7592069260893, -122.388577089603)",151460017-E25 +142581197,E08,14090072,Medical Incident,09/15/2014,09/15/2014,09/15/2014 10:51:00 AM,09/15/2014 10:51:26 AM,09/15/2014 10:51:48 AM,09/15/2014 10:54:25 AM,09/15/2014 11:01:04 AM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Code 2 Transport,09/15/2014 11:02:09 AM,400 Block of CHINA BASIN ST,San Francisco,94158,B03,8,2231,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7720245149608, -122.388255494514)",142581197-E08 +151960820,B01,15074677,Alarms,07/15/2015,07/15/2015,07/15/2015 08:38:07 AM,07/15/2015 08:39:55 AM,07/15/2015 08:40:21 AM,07/15/2015 08:42:02 AM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Fire,07/15/2015 08:45:13 AM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",151960820-B01 +160951908,85,16037641,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:20:19 PM,04/04/2016 01:21:55 PM,04/04/2016 01:22:25 PM,04/04/2016 01:22:35 PM,04/04/2016 01:26:57 PM,04/04/2016 01:44:59 PM,04/04/2016 02:09:50 PM,Code 2 Transport,04/04/2016 02:31:52 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7755801285655, -122.413994780042)",160951908-85 +152431521,E08,15092666,Medical Incident,08/31/2015,08/31/2015,08/31/2015 11:24:48 AM,08/31/2015 11:25:32 AM,08/31/2015 11:25:47 AM,08/31/2015 11:25:57 AM,08/31/2015 11:29:43 AM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Code 2 Transport,08/31/2015 11:31:12 AM,100 Block of BERRY ST,San Francisco,94158,B03,8,2171,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",152431521-E08 +151291866,52,15048972,Medical Incident,05/09/2015,05/09/2015,05/09/2015 01:23:29 PM,05/09/2015 01:24:33 PM,05/09/2015 01:25:00 PM,05/09/2015 01:26:55 PM,05/09/2015 01:33:07 PM,05/09/2015 01:44:50 PM,05/09/2015 02:07:30 PM,Code 2 Transport,05/09/2015 02:35:08 PM,0 Block of WATCHMAN WAY,San Francisco,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7553520145946, -122.395257871762)",151291866-52 +160970225,78,16038261,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:24:58 AM,04/06/2016 02:24:58 AM,04/06/2016 02:26:06 AM,04/06/2016 02:26:14 AM,04/06/2016 02:30:33 AM,04/06/2016 02:37:04 AM,04/06/2016 02:54:29 AM,Code 2 Transport,04/06/2016 03:22:54 AM,1300 Block of CHESTNUT ST,San Francisco,94123,B04,16,3235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8021221938701, -122.425543360244)",160970225-78 +153292768,E51,15126705,Water Rescue,11/25/2015,11/25/2015,11/25/2015 04:38:59 PM,11/25/2015 04:40:24 PM,11/25/2015 04:42:00 PM,11/25/2015 04:45:08 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 05:01:16 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,true,Fire,1,ENGINE,10,7,2,Presidio,"(37.8066581989584, -122.47471662098)",153292768-E51 +160922616,64,16036530,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:03:11 PM,04/01/2016 05:04:07 PM,04/01/2016 05:06:22 PM,04/01/2016 05:06:22 PM,04/01/2016 05:08:38 PM,04/01/2016 05:21:44 PM,04/01/2016 05:40:34 PM,Code 2 Transport,04/01/2016 06:01:09 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160922616-64 +160971707,61,16038397,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:54:43 AM,04/06/2016 11:55:55 AM,04/06/2016 11:56:19 AM,04/06/2016 11:58:10 AM,04/06/2016 12:18:14 PM,04/06/2016 12:34:01 PM,04/06/2016 12:39:39 PM,Code 2 Transport,04/06/2016 01:14:55 PM,100 Block of STOCKTON ST,San Francisco,94108,B01,1,1323,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7871003167622, -122.406426031165)",160971707-61 +160974618,78,16038714,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:22:14 PM,04/06/2016 11:24:38 PM,04/06/2016 11:27:15 PM,04/06/2016 11:27:25 PM,04/06/2016 11:34:21 PM,04/06/2016 11:48:35 PM,04/06/2016 11:56:05 PM,Code 2 Transport,04/07/2016 12:36:56 AM,MARKET ST/DRUMM ST,San Francisco,94105,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",160974618-78 +150221416,E01,15008548,Medical Incident,01/22/2015,01/22/2015,01/22/2015 11:37:02 AM,01/22/2015 11:38:10 AM,01/22/2015 11:39:39 AM,01/22/2015 11:41:09 AM,01/22/2015 11:45:46 AM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Code 3 Transport,01/22/2015 12:09:01 PM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",150221416-E01 +143633431,E40,14130005,Medical Incident,12/29/2014,12/29/2014,12/29/2014 10:03:17 PM,12/29/2014 10:03:33 PM,12/29/2014 10:03:45 PM,12/29/2014 10:05:12 PM,12/29/2014 10:09:05 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Code 2 Transport,12/29/2014 10:17:25 PM,2600 Block of 23RD AVE,San Francisco,94116,B08,40,7441,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.738203639933, -122.479590920377)",143633431-E40 +151403068,E39,15053281,Medical Incident,05/20/2015,05/20/2015,05/20/2015 06:30:37 PM,05/20/2015 06:32:06 PM,05/20/2015 06:32:56 PM,05/20/2015 06:34:09 PM,05/20/2015 06:36:17 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Code 2 Transport,05/20/2015 06:55:04 PM,200 Block of CLAREMONT BLVD,San Francisco,94127,B08,39,8611,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7411897106235, -122.464775525939)",151403068-E39 +142132681,74,14073939,Medical Incident,08/01/2014,08/01/2014,08/01/2014 06:05:33 PM,08/01/2014 06:06:59 PM,08/01/2014 06:07:15 PM,08/01/2014 06:07:29 PM,08/01/2014 06:18:12 PM,08/01/2014 06:36:06 PM,08/01/2014 06:49:39 PM,Code 2 Transport,08/01/2014 07:25:33 PM,5200 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7442928064892, -122.439091578977)",142132681-74 +151811308,RS2,15069071,Medical Incident,06/30/2015,06/30/2015,06/30/2015 11:27:26 AM,06/30/2015 11:27:26 AM,06/30/2015 11:27:52 AM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,No Merit,06/30/2015 11:29:31 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,9,Mission,"(37.7643732096664, -122.417478491468)",151811308-RS2 +141210146,E20,14040871,Medical Incident,05/01/2014,05/01/2014,05/01/2014 11:04:09 AM,05/01/2014 11:05:21 AM,05/01/2014 11:05:39 AM,05/01/2014 11:06:48 AM,05/01/2014 11:09:57 AM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,No Merit,05/01/2014 11:12:40 AM,0 Block of FOREST SIDE AVE,SAN FRANCISCO,94127,B08,39,8616,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7424403841446, -122.468088904362)",141210146-E20 +160962144,AM02,16038042,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:13:08 PM,04/05/2016 02:14:08 PM,04/05/2016 02:14:47 PM,04/05/2016 02:15:22 PM,04/05/2016 02:18:07 PM,04/05/2016 02:43:48 PM,04/05/2016 03:02:01 PM,Code 2 Transport,04/05/2016 03:43:14 PM,400 Block of POST ST,San Francisco,94102,B01,1,1362,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",160962144-AM02 +150791159,T03,15030237,Structure Fire,03/20/2015,03/20/2015,03/20/2015 10:30:39 AM,03/20/2015 10:30:53 AM,03/20/2015 10:31:46 AM,03/20/2015 10:32:01 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 10:34:09 AM,POWELL ST/OFARRELL ST,San Francisco,94102,B01,1,1363,3,3,3,false,Alarm,1,TRUCK,3,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",150791159-T03 +151424015,AM16,15054200,Medical Incident,05/22/2015,05/22/2015,05/22/2015 10:32:41 PM,05/22/2015 10:34:16 PM,05/22/2015 10:36:32 PM,05/22/2015 10:37:54 PM,05/22/2015 10:48:47 PM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Unable to Locate,05/22/2015 10:54:33 PM,23RD ST/BARTLETT ST,San Francisco,94110,B06,11,5512,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7537697016513, -122.419705450379)",151424015-AM16 +161002196,AM10,16039828,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:12:48 PM,04/09/2016 04:13:30 PM,04/09/2016 04:14:21 PM,04/09/2016 04:14:51 PM,04/09/2016 04:22:08 PM,04/09/2016 04:42:02 PM,04/09/2016 05:04:48 PM,Code 2 Transport,04/09/2016 05:35:32 PM,7500 Block of GEARY BLVD,San Francisco,94121,B07,34,7264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",161002196-AM10 +150470189,E29,15018138,Citizen Assist / Service Call,02/16/2015,02/15/2015,02/16/2015 01:31:32 AM,02/16/2015 01:33:42 AM,02/16/2015 01:33:56 AM,02/16/2015 01:35:33 AM,02/16/2015 01:39:05 AM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/16/2015 01:56:18 AM,INDIANA ST/MARIPOSA ST,San Francisco,94107,B03,29,2436,3,3,3,true,Alarm,1,ENGINE,1,3,6,Potrero Hill,"(37.7641414045887, -122.391781010422)",150470189-E29 +153300463,T03,15126881,Citizen Assist / Service Call,11/26/2015,11/25/2015,11/26/2015 05:53:49 AM,11/26/2015 05:55:33 AM,11/26/2015 05:55:45 AM,11/26/2015 05:57:17 AM,11/26/2015 06:00:16 AM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Fire,11/26/2015 06:09:22 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",153300463-T03 +152072958,T03,15078992,Alarms,07/26/2015,07/26/2015,07/26/2015 06:28:16 PM,07/26/2015 06:29:39 PM,07/26/2015 06:30:02 PM,07/26/2015 06:31:56 PM,07/26/2015 06:33:25 PM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,Fire,07/26/2015 06:40:37 PM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,false,Alarm,1,TRUCK,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",152072958-T03 +143552330,B03,14126965,Structure Fire,12/21/2014,12/21/2014,12/21/2014 03:03:39 PM,12/21/2014 03:05:21 PM,12/21/2014 03:06:14 PM,12/21/2014 03:06:58 PM,12/21/2014 03:14:14 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 04:25:21 PM,0 Block of CLIPPER COVE WAY,Treasure Isla,94130,B03,48,2931,3,3,3,false,Alarm,1,CHIEF,2,None,6,Treasure Island,"(37.8163207162813, -122.370727071585)",143552330-B03 +160990679,71,16039209,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:59:24 AM,04/08/2016 08:00:39 AM,04/08/2016 08:00:57 AM,04/08/2016 08:01:06 AM,04/08/2016 08:39:48 AM,04/08/2016 08:39:58 AM,04/08/2016 08:42:51 AM,Code 2 Transport,04/08/2016 09:17:33 AM,0 Block of CARMEL ST,San Francisco,94117,B05,12,5257,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7609468144915, -122.44829742127)",160990679-71 +141290897,T07,14043815,Structure Fire,05/09/2014,05/09/2014,05/09/2014 08:53:11 AM,05/09/2014 08:54:02 AM,05/09/2014 08:54:56 AM,05/09/2014 08:55:50 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Fire,05/09/2014 09:15:30 AM,200 Block of DORLAND ST,San Francisco,94114,B02,6,5421,3,3,3,false,Alarm,1,TRUCK,10,2,8,Castro/Upper Market,"(37.7621392187709, -122.429547024002)",141290897-T07 +141732544,B02,14059767,Alarms,06/22/2014,06/22/2014,06/22/2014 06:15:39 PM,06/22/2014 06:17:08 PM,06/22/2014 06:17:38 PM,06/22/2014 06:18:45 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Fire,06/22/2014 06:28:25 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",141732544-B02 +160991358,KM01,16039269,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:30:46 AM,04/08/2016 11:33:26 AM,04/08/2016 11:34:10 AM,04/08/2016 11:34:43 AM,04/08/2016 12:05:31 PM,04/08/2016 12:12:53 PM,04/08/2016 12:42:24 PM,Code 2 Transport,04/08/2016 01:11:22 PM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",160991358-KM01 +142411494,E37,14083845,Medical Incident,08/29/2014,08/29/2014,08/29/2014 12:07:47 PM,08/29/2014 12:09:24 PM,08/29/2014 12:09:38 PM,08/29/2014 12:10:41 PM,08/29/2014 12:12:20 PM,04/25/2016 01:15:23 PM,04/25/2016 01:15:23 PM,Code 2 Transport,08/29/2014 12:18:16 PM,23RD ST/KANSAS ST,San Francisco,94107,B10,37,2556,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7545121210191, -122.402557510955)",142411494-E37 +143430381,KM07,14121811,Medical Incident,12/09/2014,12/08/2014,12/09/2014 04:14:37 AM,12/09/2014 04:14:37 AM,12/09/2014 04:17:14 AM,12/09/2014 04:18:30 AM,12/09/2014 04:26:19 AM,12/09/2014 04:38:44 AM,12/09/2014 05:00:09 AM,Code 2 Transport,12/09/2014 05:38:56 AM,22ND ST/PENNSYLVANIA AV,San Francisco,94107,B10,37,2535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7576507860287, -122.393122630932)",143430381-KM07 +143592176,KM03,14128565,Medical Incident,12/25/2014,12/25/2014,12/25/2014 08:04:00 PM,12/25/2014 08:04:49 PM,12/25/2014 08:05:20 PM,12/25/2014 08:07:53 PM,12/25/2014 08:10:58 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Against Medical Advice,12/25/2014 08:52:26 PM,2200 Block of MASON ST,San Francisco,94133,B01,28,1424,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8040752422338, -122.413359103869)",143592176-KM03 +143290521,AP,14116568,Aircraft Emergency,11/25/2014,11/24/2014,11/25/2014 06:42:29 AM,11/25/2014 06:42:29 AM,11/25/2014 06:42:29 AM,11/25/2014 06:42:29 AM,11/25/2014 06:42:29 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/25/2014 06:42:58 AM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Fire,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",143290521-AP +150901535,E43,15034272,Medical Incident,03/31/2015,03/31/2015,03/31/2015 12:17:00 PM,03/31/2015 12:18:00 PM,03/31/2015 12:18:24 PM,03/31/2015 12:20:00 PM,03/31/2015 12:22:56 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Code 2 Transport,03/31/2015 12:38:20 PM,MISSION ST/PERSIA AV,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",150901535-E43 +150371998,T15,15014328,Other,02/06/2015,02/06/2015,02/06/2015 01:48:09 PM,02/06/2015 01:51:22 PM,02/06/2015 01:54:15 PM,02/06/2015 01:56:29 PM,02/06/2015 02:01:15 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Fire,02/06/2015 02:08:56 PM,0 Block of NAYLOR ST,San Francisco,94112,B09,43,6226,3,3,3,false,Alarm,1,TRUCK,1,9,11,Excelsior,"(37.7111261027761, -122.433838208452)",150371998-T15 +160992900,KM11,16039408,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:59:07 PM,04/08/2016 05:59:54 PM,04/08/2016 06:00:10 PM,04/08/2016 06:00:52 PM,04/08/2016 06:07:59 PM,04/08/2016 06:33:24 PM,04/08/2016 06:49:48 PM,Code 2 Transport,04/08/2016 07:40:42 PM,5100 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7468468006918, -122.44040482926)",160992900-KM11 +150110892,61,15004291,Medical Incident,01/11/2015,01/10/2015,01/11/2015 07:59:34 AM,01/11/2015 08:02:19 AM,01/11/2015 08:52:58 AM,01/11/2015 08:52:58 AM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Patient Declined Transport,01/11/2015 08:55:05 AM,STEUART ST/MISSION ST,San Francisco,94105,B03,35,2111,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",150110892-61 +153090987,E21,15118671,Medical Incident,11/05/2015,11/05/2015,11/05/2015 08:57:14 AM,11/05/2015 08:57:33 AM,11/05/2015 08:57:44 AM,11/05/2015 08:59:43 AM,11/05/2015 09:02:01 AM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,Against Medical Advice,11/05/2015 09:18:13 AM,600 Block of DIVISADERO ST,San Francisco,94117,B05,21,4146,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7754436617793, -122.438015276303)",153090987-E21 +160970609,55,16038295,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:16:50 AM,04/06/2016 07:16:50 AM,04/06/2016 07:17:32 AM,04/06/2016 07:17:46 AM,04/06/2016 07:24:55 AM,04/06/2016 08:00:26 AM,04/06/2016 09:10:23 AM,Code 2 Transport,04/06/2016 09:18:22 AM,2400 Block of GREAT HWY,San Francisco,94116,B08,23,7731,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7407574919496, -122.506743511008)",160970609-55 +160922577,AM10,16036524,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:52:04 PM,04/01/2016 04:53:17 PM,04/01/2016 05:00:07 PM,04/01/2016 05:00:07 PM,04/01/2016 05:11:11 PM,04/01/2016 05:19:50 PM,04/01/2016 05:48:10 PM,Code 2 Transport,04/01/2016 06:02:55 PM,500 Block of DOLORES ST,San Francisco,94114,B06,7,5435,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.759419804663, -122.426036566526)",160922577-AM10 +160953330,71,16037759,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 06:59:23 PM,04/04/2016 07:00:52 PM,04/04/2016 07:02:41 PM,04/04/2016 07:03:21 PM,04/04/2016 07:19:22 PM,04/04/2016 07:40:20 PM,04/04/2016 08:01:18 PM,Code 2 Transport,04/04/2016 08:36:27 PM,CALL BOX: FS YB-BLDG 213,Yerba Buena,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",160953330-71 +151062471,E17,15040112,Medical Incident,04/16/2015,04/16/2015,04/16/2015 03:32:25 PM,04/16/2015 03:33:01 PM,04/16/2015 03:33:22 PM,04/16/2015 03:34:37 PM,04/16/2015 03:37:42 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Code 3 Transport,04/16/2015 04:38:28 PM,PALOU AV/QUINT ST,San Francisco,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7371561854175, -122.396515237254)",151062471-E17 +153162760,82,15121511,Medical Incident,11/12/2015,11/12/2015,11/12/2015 04:48:16 PM,11/12/2015 04:48:16 PM,11/12/2015 04:48:16 PM,11/12/2015 04:48:16 PM,11/12/2015 04:48:16 PM,11/12/2015 04:49:25 PM,11/12/2015 05:05:56 PM,Code 2 Transport,11/12/2015 05:45:07 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",153162760-82 +160921236,75,16036393,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:40:30 AM,04/01/2016 10:44:07 AM,04/01/2016 10:46:00 AM,04/01/2016 10:46:17 AM,04/01/2016 10:55:33 AM,04/01/2016 11:06:29 AM,04/01/2016 11:18:03 AM,Code 2 Transport,04/01/2016 11:54:36 AM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160921236-75 +160923422,AM20,16036603,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:47:58 PM,04/01/2016 08:49:36 PM,04/01/2016 08:50:02 PM,04/01/2016 08:50:35 PM,04/01/2016 09:00:15 PM,04/01/2016 09:13:11 PM,04/01/2016 09:36:23 PM,Code 2 Transport,04/01/2016 10:15:39 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.738908396847, -122.468107626184)",160923422-AM20 +142161474,BE1,14074884,Structure Fire,08/04/2014,08/04/2014,08/04/2014 12:03:58 PM,08/04/2014 12:04:28 PM,08/04/2014 12:10:25 PM,08/04/2014 12:56:58 PM,08/04/2014 12:56:58 PM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,Other,08/04/2014 03:59:21 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,,3,3,false,Fire,3,SUPPORT,,2,6,Tenderloin,"(37.7810107317128, -122.412575156486)",142161474-BE1 +151932495,T02,15073721,Structure Fire,07/12/2015,07/12/2015,07/12/2015 04:32:48 PM,07/12/2015 04:33:57 PM,07/12/2015 04:34:12 PM,07/12/2015 04:35:27 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 04:39:14 PM,2900 Block of GOUGH ST,San Francisco,94123,B04,16,3244,3,3,3,false,Alarm,1,TRUCK,8,4,2,Marina,"(37.8004333103903, -122.427803521956)",151932495-T02 +151223659,E20,15046489,Medical Incident,05/02/2015,05/02/2015,05/02/2015 11:24:33 PM,05/02/2015 11:25:53 PM,05/02/2015 11:27:30 PM,05/02/2015 11:29:21 PM,05/02/2015 11:32:25 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Code 2 Transport,05/02/2015 11:49:27 PM,600 Block of CLARENDON AVE,San Francisco,94131,B08,20,5367,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7519950375446, -122.458952047787)",151223659-E20 +153442239,E16,15132461,Water Rescue,12/10/2015,12/10/2015,12/10/2015 02:47:35 PM,12/10/2015 02:47:35 PM,12/10/2015 02:48:41 PM,12/10/2015 02:49:52 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/10/2015 03:22:48 PM,900 Block of BEACH ST,San Francisco,94109,B01,28,3135,3,3,3,true,Fire,1,ENGINE,9,1,2,Russian Hill,"(37.806210458565, -122.424360355387)",153442239-E16 +141120065,55,14037707,Medical Incident,04/22/2014,04/21/2014,04/22/2014 07:22:26 AM,04/22/2014 07:23:12 AM,04/22/2014 07:49:01 AM,04/22/2014 07:49:01 AM,04/22/2014 07:55:20 AM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Fire,04/22/2014 08:15:30 AM,1000 Block of 7TH ST,SAN FRANCISCO,94158,B03,29,2362,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7692548745928, -122.398349317953)",141120065-55 +142161248,83,14074859,Medical Incident,08/04/2014,08/04/2014,08/04/2014 11:02:41 AM,08/04/2014 11:04:07 AM,08/04/2014 11:04:27 AM,08/04/2014 11:05:01 AM,08/04/2014 11:12:17 AM,08/04/2014 11:39:25 AM,08/04/2014 11:57:49 AM,Code 2 Transport,08/04/2014 12:42:18 PM,3000 Block of SCOTT ST,San Francisco,94123,B04,16,4116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7978676957246, -122.440635763801)",142161248-83 +153210780,73,15123326,Medical Incident,11/17/2015,11/17/2015,11/17/2015 08:24:14 AM,11/17/2015 08:28:57 AM,11/17/2015 08:29:42 AM,11/17/2015 08:29:57 AM,11/17/2015 08:51:19 AM,11/17/2015 09:09:36 AM,11/17/2015 09:26:23 AM,Code 2 Transport,11/17/2015 10:04:39 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",153210780-73 +152862896,B10,15109962,Structure Fire,10/13/2015,10/13/2015,10/13/2015 04:32:11 PM,10/13/2015 04:33:28 PM,10/13/2015 04:33:45 PM,10/13/2015 04:34:43 PM,10/13/2015 04:39:36 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,Fire,10/13/2015 04:59:22 PM,1800 Block of 4TH ST,San Francisco,94158,B03,4,2436,3,3,3,false,Alarm,1,CHIEF,6,3,6,Potrero Hill,"(37.7654965381521, -122.390602942705)",152862896-B10 +160982262,KM12,16038962,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:27:06 PM,04/07/2016 02:27:51 PM,04/07/2016 02:28:34 PM,04/07/2016 02:29:21 PM,04/07/2016 02:40:14 PM,04/07/2016 03:06:13 PM,04/07/2016 03:41:10 PM,Code 2 Transport,04/07/2016 04:12:21 PM,1400 Block of 43RD AVE,San Francisco,94122,B08,23,7652,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7596302865022, -122.50271641994)",160982262-KM12 +151343423,75,15050995,Medical Incident,05/14/2015,05/14/2015,05/14/2015 08:09:50 PM,05/14/2015 08:10:53 PM,05/14/2015 08:11:26 PM,05/14/2015 08:12:00 PM,05/14/2015 08:13:09 PM,05/14/2015 08:27:45 PM,05/14/2015 08:31:40 PM,Code 3 Transport,05/14/2015 09:34:23 PM,1900 Block of BROADWAY,San Francisco,94123,B04,38,3355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7950545006064, -122.429177912873)",151343423-75 +160962669,AM08,16038083,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:18:33 PM,04/05/2016 04:19:30 PM,04/05/2016 04:19:47 PM,04/05/2016 04:20:37 PM,04/05/2016 04:26:14 PM,04/05/2016 04:35:47 PM,04/05/2016 04:50:42 PM,Code 2 Transport,04/05/2016 05:23:33 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160962669-AM08 +160980660,85,16038795,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:03:51 AM,04/07/2016 07:05:18 AM,04/07/2016 07:05:47 AM,04/07/2016 07:05:56 AM,04/07/2016 07:11:27 AM,04/07/2016 07:20:25 AM,04/07/2016 07:50:41 AM,Code 2 Transport,04/07/2016 08:21:41 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160980660-85 +141752110,E03,14060435,Medical Incident,06/24/2014,06/24/2014,06/24/2014 03:17:29 PM,06/24/2014 03:21:38 PM,06/24/2014 03:43:39 PM,06/24/2014 03:44:22 PM,06/24/2014 03:52:55 PM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,No Merit,06/24/2014 03:57:40 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",141752110-E03 +152110105,70,15080203,Medical Incident,07/30/2015,07/29/2015,07/30/2015 12:48:07 AM,07/30/2015 12:50:12 AM,07/30/2015 12:50:48 AM,07/30/2015 12:51:03 AM,07/30/2015 01:00:35 AM,07/30/2015 01:11:44 AM,07/30/2015 01:21:32 AM,Code 2 Transport,07/30/2015 01:44:27 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",152110105-70 +160991787,KM01,16039308,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 01:32:15 PM,04/08/2016 01:32:15 PM,04/08/2016 01:36:21 PM,04/08/2016 01:37:41 PM,04/08/2016 01:56:06 PM,04/08/2016 02:15:11 PM,04/08/2016 02:30:46 PM,Code 2 Transport,04/08/2016 02:59:02 PM,16TH ST/TREAT AV,San Francisco,94110,B02,29,5241,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7654476102712, -122.413105244954)",160991787-KM01 +142032717,E05,14070342,Traffic Collision,07/22/2014,07/22/2014,07/22/2014 06:14:51 PM,07/22/2014 06:14:51 PM,07/22/2014 06:16:48 PM,07/22/2014 06:18:04 PM,07/22/2014 06:19:59 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Code 2 Transport,07/22/2014 06:33:32 PM,FRANKLIN ST/EDDY ST,San Francisco,94109,B02,36,3216,2,3,3,true,Non Life-threatening,1,ENGINE,2,2,5,Western Addition,"(37.7826853684048, -122.422463744653)",142032717-E05 +152464085,T02,15094030,Alarms,09/03/2015,09/03/2015,09/03/2015 10:31:05 PM,09/03/2015 10:32:20 PM,09/03/2015 10:32:35 PM,09/03/2015 10:34:02 PM,09/03/2015 10:35:55 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Fire,09/03/2015 10:49:19 PM,0 Block of NOBLES ALY,San Francisco,94133,B01,28,1265,3,3,3,true,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8009233422917, -122.407362148981)",152464085-T02 +142030330,E03,14070114,Medical Incident,07/22/2014,07/21/2014,07/22/2014 04:30:45 AM,07/22/2014 04:34:16 AM,07/22/2014 04:35:24 AM,07/22/2014 04:38:40 AM,07/22/2014 04:41:28 AM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Code 2 Transport,07/22/2014 04:46:18 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",142030330-E03 +152183853,71,15083204,Medical Incident,08/06/2015,08/06/2015,08/06/2015 10:27:56 PM,08/06/2015 10:30:05 PM,08/06/2015 10:30:16 PM,08/06/2015 10:30:24 PM,08/06/2015 10:36:08 PM,08/06/2015 10:44:59 PM,08/06/2015 10:59:35 PM,Code 2 Transport,08/06/2015 11:31:56 PM,1100 Block of VALENCIA ST,San Francisco,94110,B06,11,5512,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.754503089819, -122.420819132506)",152183853-71 +151570251,T06,15059780,Structure Fire,06/06/2015,06/05/2015,06/06/2015 01:45:31 AM,06/06/2015 01:45:31 AM,06/06/2015 01:46:20 AM,06/06/2015 01:48:02 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Fire,06/06/2015 01:50:01 AM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",151570251-T06 +150470234,E02,15018146,Medical Incident,02/16/2015,02/15/2015,02/16/2015 02:12:11 AM,02/16/2015 02:12:11 AM,02/16/2015 02:12:38 AM,02/16/2015 02:14:41 AM,02/16/2015 02:16:31 AM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Code 2 Transport,02/16/2015 02:24:41 AM,COLUMBUS AV/BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",150470234-E02 +160990499,71,16039198,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:41:37 AM,04/08/2016 06:44:24 AM,04/08/2016 06:44:36 AM,04/08/2016 06:45:14 AM,04/08/2016 06:48:28 AM,04/08/2016 07:12:57 AM,04/08/2016 07:40:54 AM,Code 2 Transport,04/08/2016 07:52:12 AM,400 Block of 16TH AVE,San Francisco,94118,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7795682474859, -122.474950761103)",160990499-71 +160990199,79,16039169,Medical Incident,04/08/2016,04/07/2016,04/08/2016 01:50:46 AM,04/08/2016 01:55:09 AM,04/08/2016 01:56:16 AM,04/08/2016 01:57:54 AM,04/08/2016 02:02:53 AM,04/08/2016 02:17:26 AM,04/08/2016 02:41:47 AM,Code 2 Transport,04/08/2016 03:14:40 AM,4100 Block of NORIEGA ST,San Francisco,94122,B08,23,7725,E,E,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7527950009872, -122.507985239819)",160990199-79 +152893177,E13,15111149,Medical Incident,10/16/2015,10/16/2015,10/16/2015 06:32:56 PM,10/16/2015 06:34:49 PM,10/16/2015 06:35:10 PM,10/16/2015 06:36:04 PM,10/16/2015 06:40:35 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 06:47:14 PM,GEARY ST/GRANT AV,San Francisco,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7877654947625, -122.405041399977)",152893177-E13 +160961406,AM12,16037971,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:16:07 AM,04/05/2016 11:19:17 AM,04/05/2016 11:19:39 AM,04/05/2016 11:20:12 AM,04/05/2016 11:51:26 AM,04/05/2016 11:51:39 AM,04/05/2016 12:20:28 PM,Code 2 Transport,04/05/2016 12:59:16 PM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,3,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160961406-AM12 +151292487,B04,15049031,Alarms,05/09/2015,05/09/2015,05/09/2015 04:23:23 PM,05/09/2015 04:24:30 PM,05/09/2015 04:24:41 PM,05/09/2015 04:26:25 PM,05/09/2015 04:30:28 PM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Fire,05/09/2015 04:48:35 PM,1200 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",151292487-B04 +142192555,E13,14076052,Structure Fire,08/07/2014,08/07/2014,08/07/2014 05:27:07 PM,08/07/2014 05:27:07 PM,08/07/2014 05:27:25 PM,08/07/2014 05:28:51 PM,08/07/2014 05:30:43 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Fire,08/07/2014 05:31:26 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1112,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",142192555-E13 +160980331,85,16038760,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:05:36 AM,04/07/2016 03:05:36 AM,04/07/2016 03:05:46 AM,04/07/2016 03:05:58 AM,04/07/2016 03:09:10 AM,04/07/2016 03:24:45 AM,04/07/2016 04:06:37 AM,Code 2 Transport,04/07/2016 04:32:27 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160980331-85 +141250307,E05,14042438,Citizen Assist / Service Call,05/05/2014,05/05/2014,05/05/2014 04:58:51 PM,05/05/2014 05:01:03 PM,05/05/2014 05:01:39 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 05:57:47 PM,CALIFORNIA ST/WEBSTER ST,SAN FRANCISCO,94115,B04,38,3511,3,3,3,true,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7891152301036, -122.432196681009)",141250307-E05 +160932074,KM12,16036900,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:45:09 PM,04/02/2016 02:45:24 PM,04/02/2016 02:45:42 PM,04/02/2016 02:46:47 PM,04/02/2016 02:53:41 PM,04/02/2016 03:36:06 PM,04/02/2016 03:45:28 PM,Code 3 Transport,04/02/2016 04:01:43 PM,600 Block of MOSCOW ST,San Francisco,94112,B09,43,6162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7173988817758, -122.430625202274)",160932074-KM12 +141220226,B01,14041344,Alarms,05/02/2014,05/02/2014,05/02/2014 02:04:57 PM,05/02/2014 02:05:48 PM,05/02/2014 02:05:55 PM,05/02/2014 02:07:30 PM,05/02/2014 02:09:33 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 02:13:55 PM,800 Block of KEARNY ST,SAN FRANCISCO,94111,B01,13,1245,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.795777854883, -122.404981817889)",141220226-B01 +142992214,E07,14105626,Medical Incident,10/26/2014,10/26/2014,10/26/2014 03:33:52 PM,10/26/2014 03:35:16 PM,10/26/2014 03:38:35 PM,10/26/2014 03:38:35 PM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,Code 2 Transport,10/26/2014 03:55:21 PM,200 Block of SAN CARLOS ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,ENGINE,3,6,9,Mission,"(37.7593905434172, -122.419839098278)",142992214-E07 +160950206,62,16037493,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:37:34 AM,04/04/2016 02:39:25 AM,04/04/2016 02:40:59 AM,04/04/2016 02:41:15 AM,04/04/2016 02:52:52 AM,04/04/2016 03:14:58 AM,04/04/2016 03:35:30 AM,Code 2 Transport,04/04/2016 03:41:31 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160950206-62 +151002528,85,15037922,Medical Incident,04/10/2015,04/10/2015,04/10/2015 04:52:05 PM,04/10/2015 04:53:20 PM,04/10/2015 04:56:29 PM,04/10/2015 04:56:45 PM,04/10/2015 05:21:24 PM,04/10/2015 05:26:40 PM,04/10/2015 05:30:04 PM,Code 2 Transport,04/10/2015 05:58:11 PM,1300 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",151002528-85 +143291552,B01,14116646,Alarms,11/25/2014,11/25/2014,11/25/2014 11:48:23 AM,11/25/2014 11:51:00 AM,11/25/2014 11:51:54 AM,11/25/2014 11:52:19 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/25/2014 11:56:15 AM,2200 Block of STOCKTON ST,San Francisco,94133,B01,28,1341,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8064867194015, -122.410472573644)",143291552-B01 +141411588,E12,14048322,Industrial Accidents,05/21/2014,05/21/2014,05/21/2014 12:18:32 PM,05/21/2014 12:24:56 PM,05/21/2014 12:30:54 PM,05/21/2014 12:31:27 PM,05/21/2014 12:36:35 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 12:55:46 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B03,1,2245,3,3,3,true,Fire,1,ENGINE,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",141411588-E12 +160932388,63,16036934,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:14:28 PM,04/02/2016 04:17:05 PM,04/02/2016 04:18:40 PM,04/02/2016 04:18:49 PM,04/02/2016 04:35:06 PM,04/02/2016 04:47:24 PM,04/02/2016 04:55:01 PM,Code 2 Transport,04/02/2016 05:14:36 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160932388-63 +142380864,E11,14082721,Medical Incident,08/26/2014,08/26/2014,08/26/2014 08:52:22 AM,08/26/2014 08:54:35 AM,08/26/2014 09:02:28 AM,08/26/2014 09:04:32 AM,08/26/2014 09:07:34 AM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,No Merit,08/26/2014 09:15:08 AM,18TH ST/MISSION ST,San Francisco,94110,B02,7,5423,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",142380864-E11 +161000221,76,16039581,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:27:17 AM,04/09/2016 01:27:58 AM,04/09/2016 01:28:08 AM,04/09/2016 01:28:19 AM,04/09/2016 01:31:08 AM,04/09/2016 01:42:12 AM,04/09/2016 01:54:22 AM,Code 3 Transport,04/09/2016 02:26:54 AM,200 Block of SUTTER ST,San Francisco,94108,B01,13,1242,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7897518225049, -122.404013943546)",161000221-76 +152350836,62,15089506,Medical Incident,08/23/2015,08/22/2015,08/23/2015 07:51:48 AM,08/23/2015 07:52:29 AM,08/23/2015 07:52:46 AM,08/23/2015 07:53:51 AM,08/23/2015 08:01:15 AM,08/23/2015 08:22:25 AM,08/23/2015 08:22:36 AM,Code 2 Transport,08/23/2015 08:40:46 AM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",152350836-62 +143232855,E02,14114480,Structure Fire,11/19/2014,11/19/2014,11/19/2014 06:52:37 PM,11/19/2014 06:53:49 PM,11/19/2014 06:56:01 PM,11/19/2014 06:57:00 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Fire,11/19/2014 07:00:10 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,true,Alarm,1,ENGINE,9,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",143232855-E02 +142623612,B01,14091783,Alarms,09/19/2014,09/19/2014,09/19/2014 09:25:51 PM,09/19/2014 09:27:31 PM,09/19/2014 09:27:43 PM,09/19/2014 09:29:09 PM,09/19/2014 09:33:52 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Fire,09/19/2014 09:41:19 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",142623612-B01 +143121806,RC2,14110521,Medical Incident,11/08/2014,11/08/2014,11/08/2014 01:28:42 PM,11/08/2014 01:30:21 PM,11/08/2014 01:33:10 PM,11/08/2014 01:33:10 PM,11/08/2014 01:34:00 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Code 2 Transport,11/08/2014 01:46:32 PM,1700 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7823892979181, -122.47791315608)",143121806-RC2 +150462442,E05,15017979,Citizen Assist / Service Call,02/15/2015,02/15/2015,02/15/2015 04:06:27 PM,02/15/2015 04:08:34 PM,02/15/2015 04:09:08 PM,02/15/2015 04:13:06 PM,02/15/2015 04:13:50 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/15/2015 04:20:08 PM,TURK ST/SCOTT ST,San Francisco,94115,B05,5,3643,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7798673958952, -122.437071862847)",150462442-E05 +160973843,78,16038634,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 07:30:36 PM,04/06/2016 07:31:01 PM,04/06/2016 07:31:27 PM,04/06/2016 07:31:38 PM,04/06/2016 07:36:36 PM,04/06/2016 08:08:57 PM,04/06/2016 08:25:03 PM,Code 2 Transport,04/06/2016 08:51:45 PM,BRYANT ST/2ND ST,San Francisco,94107,B03,8,2152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7830778523618, -122.393618077491)",160973843-78 +141601837,T11,14055184,Alarms,06/09/2014,06/09/2014,06/09/2014 02:15:08 PM,06/09/2014 02:16:37 PM,06/09/2014 02:16:54 PM,06/09/2014 02:18:34 PM,06/09/2014 02:24:51 PM,04/25/2016 01:16:52 PM,04/25/2016 01:16:52 PM,Fire,06/09/2014 02:28:11 PM,0 Block of ONONDAGA AVE,San Francisco,94112,B09,43,6123,3,3,3,false,Alarm,1,TRUCK,3,9,11,Outer Mission,"(37.7214442237375, -122.438020843578)",141601837-T11 +151393801,E35,15052985,Structure Fire,05/19/2015,05/19/2015,05/19/2015 11:06:07 PM,05/19/2015 11:06:07 PM,05/19/2015 11:06:19 PM,05/19/2015 11:10:25 PM,05/19/2015 11:10:25 PM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/19/2015 11:10:31 PM,1ST ST/HARRISON ST,San Francisco,94105,B03,35,2136,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860675314585, -122.392936686281)",151393801-E35 +142390808,T11,14083043,Alarms,08/27/2014,08/27/2014,08/27/2014 08:29:50 AM,08/27/2014 08:31:20 AM,08/27/2014 08:31:41 AM,08/27/2014 08:33:52 AM,08/27/2014 08:37:55 AM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Fire,08/27/2014 08:39:20 AM,200 Block of CORTLAND AVE,San Francisco,94110,B06,32,5652,3,3,3,false,Alarm,1,TRUCK,2,6,9,Bernal Heights,"(37.7395659399142, -122.419397044846)",142390808-T11 +151481290,T02,15056292,Vehicle Fire,05/28/2015,05/28/2015,05/28/2015 11:04:04 AM,05/28/2015 11:05:29 AM,05/28/2015 11:05:38 AM,05/28/2015 11:07:03 AM,05/28/2015 11:10:35 AM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Fire,05/28/2015 11:11:56 AM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Fire,1,TRUCK,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",151481290-T02 +160973944,68,16038643,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:55:08 PM,04/06/2016 07:56:41 PM,04/06/2016 07:57:54 PM,04/06/2016 07:58:06 PM,04/06/2016 08:04:50 PM,04/06/2016 08:20:49 PM,04/06/2016 08:55:45 PM,Code 2 Transport,04/06/2016 09:20:58 PM,0 Block of PEREGO TER,San Francisco,94131,B06,24,5282,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Twin Peaks,"(37.7504497937546, -122.444702072201)",160973944-68 +153272505,T07,15125945,Structure Fire,11/23/2015,11/23/2015,11/23/2015 04:14:58 PM,11/23/2015 04:17:18 PM,11/23/2015 04:17:25 PM,11/23/2015 04:18:59 PM,11/23/2015 04:21:08 PM,04/25/2016 01:07:02 PM,04/25/2016 01:07:02 PM,Fire,11/23/2015 04:22:50 PM,3300 Block of 23RD ST,San Francisco,94110,B06,11,5512,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7537483769495, -122.419144470556)",153272505-T07 +150871667,KM02,15033213,Medical Incident,03/28/2015,03/28/2015,03/28/2015 12:28:29 PM,03/28/2015 12:29:47 PM,03/28/2015 12:30:10 PM,03/28/2015 12:31:16 PM,03/28/2015 12:48:17 PM,03/28/2015 12:55:32 PM,03/28/2015 01:14:24 PM,Code 3 Transport,03/28/2015 02:07:00 PM,1400 Block of FLOUNDER CT,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8265525347336, -122.374807644457)",150871667-KM02 +141010043,T12,14033998,Citizen Assist / Service Call,04/11/2014,04/10/2014,04/11/2014 03:39:40 AM,04/11/2014 03:41:29 AM,04/11/2014 03:42:02 AM,04/11/2014 03:43:41 AM,04/11/2014 03:49:49 AM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Fire,04/11/2014 04:16:33 AM,100 Block of LAWTON ST,SAN FRANCISCO,94122,B08,22,7335,3,3,3,false,Alarm,1,TRUCK,1,8,7,Inner Sunset,"(37.7584599284468, -122.464312701704)",141010043-T12 +143483474,KM07,14124395,Medical Incident,12/14/2014,12/14/2014,12/14/2014 09:48:47 PM,12/14/2014 09:50:34 PM,12/14/2014 09:50:48 PM,12/14/2014 09:53:23 PM,12/14/2014 09:57:59 PM,12/14/2014 10:15:24 PM,12/14/2014 10:42:29 PM,Code 2 Transport,12/14/2014 10:50:59 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",143483474-KM07 +160932514,AM16,16036950,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:48:59 PM,04/02/2016 04:50:18 PM,04/02/2016 04:52:20 PM,04/02/2016 04:53:32 PM,04/02/2016 05:02:33 PM,04/02/2016 05:19:50 PM,04/02/2016 05:38:26 PM,Code 2 Transport,04/02/2016 06:07:45 PM,2900 Block of DIVISADERO ST,San Francisco,94123,B04,16,4165,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.7967238761875, -122.442116502502)",160932514-AM16 +141502782,66,14051653,Medical Incident,05/30/2014,05/30/2014,05/30/2014 06:56:41 PM,05/30/2014 06:59:29 PM,05/30/2014 07:10:29 PM,05/30/2014 07:11:11 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Unable to Locate,05/30/2014 07:21:30 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",141502782-66 +153171716,E36,15121816,Medical Incident,11/13/2015,11/13/2015,11/13/2015 11:49:37 AM,11/13/2015 11:50:21 AM,11/13/2015 11:50:40 AM,11/13/2015 11:52:19 AM,11/13/2015 11:53:46 AM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,Code 2 Transport,11/13/2015 12:16:06 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",153171716-E36 +160982298,63,16038965,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:36:42 PM,04/07/2016 02:38:12 PM,04/07/2016 02:39:05 PM,04/07/2016 02:39:15 PM,04/07/2016 02:44:09 PM,04/07/2016 02:51:44 PM,04/07/2016 03:11:28 PM,Code 2 Transport,04/07/2016 03:55:09 PM,900 Block of GREEN ST,San Francisco,94133,B01,2,1441,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",160982298-63 +161001622,76,16039766,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:09:55 PM,04/09/2016 01:09:55 PM,04/09/2016 01:11:00 PM,04/09/2016 01:11:06 PM,04/09/2016 01:14:00 PM,04/09/2016 01:22:01 PM,04/09/2016 01:35:22 PM,Code 2 Transport,04/09/2016 01:59:05 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",161001622-76 +160980519,70,16038786,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:26:49 AM,04/07/2016 05:27:29 AM,04/07/2016 05:27:45 AM,04/07/2016 05:27:54 AM,04/07/2016 05:33:41 AM,04/07/2016 05:43:07 AM,04/07/2016 05:52:20 AM,Code 3 Transport,04/07/2016 06:30:39 AM,200 Block of NAPLES ST,San Francisco,94112,B09,43,6142,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7247649649334, -122.428320157023)",160980519-70 +152110085,62,15080200,Medical Incident,07/30/2015,07/29/2015,07/30/2015 12:35:02 AM,07/30/2015 12:36:13 AM,07/30/2015 12:36:51 AM,07/30/2015 12:37:16 AM,07/30/2015 12:39:17 AM,07/30/2015 12:59:24 AM,07/30/2015 01:15:09 AM,Code 2 Transport,07/30/2015 01:49:06 AM,200 Block of MASON ST,San Francisco,94102,B03,1,1366,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",152110085-62 +142683589,E06,14094102,Structure Fire,09/25/2014,09/25/2014,09/25/2014 09:58:21 PM,09/25/2014 10:00:12 PM,09/25/2014 10:00:53 PM,09/25/2014 10:01:48 PM,09/25/2014 10:03:53 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Fire,09/25/2014 10:04:53 PM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,3,3,3,true,Alarm,1,ENGINE,6,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",142683589-E06 +150061360,E25,15002243,Other,01/06/2015,01/06/2015,01/06/2015 11:26:21 AM,01/06/2015 11:27:49 AM,01/06/2015 11:28:24 AM,01/06/2015 11:28:32 AM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Other,01/06/2015 11:29:26 AM,HUDSON AV/BERTHA LN,San Francisco,94124,B10,17,6626,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.732422175742, -122.380184589161)",150061360-E25 +160963069,76,16038122,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:44:19 PM,04/05/2016 05:45:08 PM,04/05/2016 05:45:19 PM,04/05/2016 05:45:41 PM,04/05/2016 05:53:17 PM,04/05/2016 06:09:31 PM,04/05/2016 06:35:04 PM,Code 2 Transport,04/05/2016 06:56:23 PM,600 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",160963069-76 +150403966,68,15015799,Traffic Collision,02/09/2015,02/09/2015,02/09/2015 11:39:01 PM,02/09/2015 11:42:37 PM,02/09/2015 11:42:48 PM,02/09/2015 11:43:08 PM,02/09/2015 11:44:41 PM,02/10/2015 12:00:07 AM,02/10/2015 12:36:15 AM,Code 2 Transport,02/10/2015 01:09:00 AM,OAK ST/OCTAVIA ST,San Francisco,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748247940204, -122.42413649936)",150403966-68 +142682081,E20,14093964,Traffic Collision,09/25/2014,09/25/2014,09/25/2014 03:10:12 PM,09/25/2014 03:12:22 PM,09/25/2014 03:13:05 PM,09/25/2014 03:14:23 PM,09/25/2014 03:15:45 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Code 3 Transport,09/25/2014 03:59:53 PM,0 Block of DELLBROOK AVE,San Francisco,94131,B08,20,5351,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7495984464655, -122.454170280228)",142682081-E20 +161002488,71,16039862,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:40:42 PM,04/09/2016 05:41:43 PM,04/09/2016 05:42:46 PM,04/09/2016 05:42:53 PM,04/09/2016 05:59:49 PM,04/09/2016 06:16:53 PM,04/09/2016 06:38:46 PM,Code 2 Transport,04/09/2016 07:14:11 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",161002488-71 +160952580,74,16037689,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:55:51 PM,04/04/2016 03:57:44 PM,04/04/2016 03:58:20 PM,04/04/2016 03:59:02 PM,04/04/2016 04:01:32 PM,04/04/2016 04:11:34 PM,04/04/2016 04:18:45 PM,Code 2 Transport,04/04/2016 04:30:52 PM,900 Block of OAK ST,San Francisco,94117,B05,21,4141,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7735018159169, -122.434940936471)",160952580-74 +141100195,E21,14037124,Medical Incident,04/20/2014,04/20/2014,04/20/2014 03:07:55 PM,04/20/2014 03:10:31 PM,04/20/2014 03:11:04 PM,04/20/2014 03:11:50 PM,04/20/2014 03:13:43 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Code 2 Transport,04/20/2014 03:24:03 PM,1600 Block of MCALLISTER ST,SAN FRANCISCO,94115,B05,21,4151,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7777447403026, -122.439206964463)",141100195-E21 +160952784,65,16037711,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 04:47:23 PM,04/04/2016 04:47:32 PM,04/04/2016 04:48:00 PM,04/04/2016 04:48:07 PM,04/04/2016 04:57:28 PM,04/04/2016 05:09:59 PM,04/04/2016 05:41:35 PM,Code 2 Transport,04/04/2016 06:24:14 PM,WEBSTER ST/MCALLISTER ST,San Francisco,94117,B05,5,3521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7788509281441, -122.43004726646)",160952784-65 +141942926,85,14067398,Structure Fire,07/13/2014,07/13/2014,07/13/2014 08:45:04 PM,07/13/2014 08:45:23 PM,07/13/2014 08:45:39 PM,07/13/2014 08:46:30 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Fire,07/13/2014 08:52:41 PM,300 Block of GAMBIER ST,San Francisco,94134,B09,43,6152,3,3,3,true,Alarm,1,MEDIC,6,9,9,Excelsior,"(37.7250707860115, -122.421042972954)",141942926-85 +160982688,KM09,16039010,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:10:03 PM,04/07/2016 04:16:42 PM,04/07/2016 04:29:45 PM,04/07/2016 04:31:30 PM,04/07/2016 04:45:12 PM,04/07/2016 05:13:24 PM,04/07/2016 05:34:43 PM,Code 2 Transport,04/07/2016 06:17:14 PM,300 Block of 20TH AVE,San Francisco,94121,B07,31,7164,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7813007244851, -122.479380199949)",160982688-KM09 +152912894,73,15111922,Medical Incident,10/18/2015,10/18/2015,10/18/2015 06:33:45 PM,10/18/2015 06:35:45 PM,10/18/2015 06:38:06 PM,10/18/2015 06:38:31 PM,10/18/2015 06:48:20 PM,10/18/2015 07:00:43 PM,10/18/2015 07:10:52 PM,Code 2 Transport,10/18/2015 07:38:32 PM,100 Block of TALBERT ST,San Francisco,94134,B09,44,6256,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7101618943601, -122.406532453491)",152912894-73 +151583636,61,15060522,Medical Incident,06/07/2015,06/07/2015,06/07/2015 10:52:15 PM,06/07/2015 10:52:15 PM,06/07/2015 10:54:08 PM,06/07/2015 10:54:53 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Code 2 Transport,06/07/2015 10:55:06 PM,3400 Block of 25TH ST,San Francisco,94110,B06,11,5535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7506771297941, -122.418579871188)",151583636-61 +161000384,89,16039605,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:49:03 AM,04/09/2016 02:50:58 AM,04/09/2016 02:56:33 AM,04/09/2016 02:57:08 AM,04/09/2016 03:03:53 AM,04/09/2016 03:20:20 AM,04/09/2016 03:26:16 AM,Code 2 Transport,04/09/2016 04:06:48 AM,1400 Block of FUNSTON AV,San Francisco,94122,B08,22,7347,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7610583163858, -122.470330705499)",161000384-89 +153400228,B06,15130686,Structure Fire,12/06/2015,12/05/2015,12/06/2015 01:15:05 AM,12/06/2015 01:15:46 AM,12/06/2015 01:15:56 AM,12/06/2015 01:17:14 AM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Fire,12/06/2015 01:21:21 AM,2100 Block of 26TH ST,San Francisco,94107,B10,37,2622,3,3,3,false,Alarm,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7506048382754, -122.400710627784)",153400228-B06 +141373185,79,14047061,Medical Incident,05/17/2014,05/17/2014,05/17/2014 08:18:28 PM,05/17/2014 08:19:12 PM,05/17/2014 08:26:21 PM,05/17/2014 08:26:48 PM,05/17/2014 08:29:24 PM,05/17/2014 08:38:58 PM,05/17/2014 08:52:33 PM,Code 2 Transport,05/17/2014 09:25:52 PM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7789337876718, -122.404974448604)",141373185-79 +153361884,E07,15129232,Medical Incident,12/02/2015,12/02/2015,12/02/2015 12:55:09 PM,12/02/2015 12:55:52 PM,12/02/2015 12:56:05 PM,12/02/2015 12:56:43 PM,12/02/2015 12:58:20 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Code 2 Transport,12/02/2015 01:06:36 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",153361884-E07 +152691220,KM09,15103034,Medical Incident,09/26/2015,09/26/2015,09/26/2015 10:16:43 AM,09/26/2015 10:17:25 AM,09/26/2015 10:17:40 AM,09/26/2015 10:19:07 AM,09/26/2015 10:26:10 AM,09/26/2015 10:43:02 AM,09/26/2015 10:55:57 AM,Code 2 Transport,09/26/2015 11:26:55 AM,0 Block of VALENCIA ST,San Francisco,94103,B02,36,5115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7720472598025, -122.422586141904)",152691220-KM09 +160961617,62,16037994,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:07:23 PM,04/05/2016 12:11:00 PM,04/05/2016 12:11:47 PM,04/05/2016 12:12:10 PM,04/05/2016 12:17:21 PM,04/05/2016 12:31:47 PM,04/05/2016 12:36:07 PM,Code 3 Transport,04/05/2016 01:13:18 PM,0 Block of JULIAN AVE,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7674034990276, -122.421064263268)",160961617-62 +160953428,66,16037771,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:30:07 PM,04/04/2016 07:32:02 PM,04/04/2016 07:33:27 PM,04/04/2016 07:34:07 PM,04/04/2016 07:34:07 PM,04/04/2016 08:24:13 PM,04/04/2016 08:27:03 PM,Code 3 Transport,04/04/2016 09:07:54 PM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",160953428-66 +152970169,85,15113902,Medical Incident,10/24/2015,10/23/2015,10/24/2015 01:01:33 AM,10/24/2015 01:01:33 AM,10/24/2015 01:03:31 AM,10/24/2015 01:04:05 AM,10/24/2015 01:15:42 AM,10/24/2015 01:52:22 AM,10/24/2015 02:02:58 AM,Code 2 Transport,10/24/2015 03:21:54 AM,11TH AV/GEARY BL,San Francisco,94118,B07,31,7141,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7807687380348, -122.469627030052)",152970169-85 +151372425,E05,15052116,Medical Incident,05/17/2015,05/17/2015,05/17/2015 04:13:33 PM,05/17/2015 04:14:12 PM,05/17/2015 04:14:32 PM,05/17/2015 04:15:43 PM,05/17/2015 04:17:27 PM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Code 2 Transport,05/17/2015 04:26:40 PM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",151372425-E05 +143342249,66,14118434,Medical Incident,11/30/2014,11/30/2014,11/30/2014 04:31:12 PM,11/30/2014 04:32:16 PM,11/30/2014 04:33:29 PM,11/30/2014 04:33:45 PM,11/30/2014 04:36:20 PM,11/30/2014 04:44:47 PM,11/30/2014 04:53:20 PM,Code 2 Transport,11/30/2014 05:05:18 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",143342249-66 +142581877,E15,14090143,Medical Incident,09/15/2014,09/15/2014,09/15/2014 02:18:57 PM,09/15/2014 02:19:42 PM,09/15/2014 02:21:46 PM,09/15/2014 02:24:07 PM,09/15/2014 02:27:50 PM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Medical Examiner,09/15/2014 03:04:55 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7131061953593, -122.460796179398)",142581877-E15 +153013268,76,15115579,Medical Incident,10/28/2015,10/28/2015,10/28/2015 06:07:16 PM,10/28/2015 06:09:44 PM,10/28/2015 06:11:08 PM,10/28/2015 06:11:14 PM,10/28/2015 06:16:28 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,No Merit,10/28/2015 06:18:40 PM,MISSION ST/23RD ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7538365885417, -122.418593946321)",153013268-76 +142731172,66,14095657,Medical Incident,09/30/2014,09/30/2014,09/30/2014 10:02:57 AM,09/30/2014 10:04:36 AM,09/30/2014 10:05:23 AM,09/30/2014 10:06:44 AM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Patient Declined Transport,09/30/2014 10:23:35 AM,CLAY ST/FRANKLIN ST,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7919653673686, -122.424340517867)",142731172-66 +150330971,E15,15012656,Medical Incident,02/02/2015,02/02/2015,02/02/2015 09:23:20 AM,02/02/2015 09:24:13 AM,02/02/2015 09:39:50 AM,02/02/2015 09:41:10 AM,02/02/2015 09:43:16 AM,04/25/2016 01:12:29 PM,04/25/2016 01:12:29 PM,Code 2 Transport,02/02/2015 09:50:31 AM,1000 Block of CAYUGA AVE,San Francisco,94112,B09,15,8332,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7218172447591, -122.439998899049)",150330971-E15 +160983283,55,16039074,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:55:53 PM,04/07/2016 06:57:39 PM,04/07/2016 06:57:53 PM,04/07/2016 06:58:06 PM,04/07/2016 07:06:14 PM,04/07/2016 07:34:10 PM,04/07/2016 08:03:08 PM,Code 2 Transport,04/07/2016 08:54:14 PM,600 Block of THE EMBARCADERO,San Francisco,94111,B01,13,915,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",160983283-55 +141521794,KM15,14052244,Medical Incident,06/01/2014,06/01/2014,06/01/2014 03:01:03 PM,06/01/2014 03:03:11 PM,06/01/2014 03:04:21 PM,06/01/2014 03:06:02 PM,06/01/2014 03:38:18 PM,06/01/2014 03:38:19 PM,06/01/2014 03:55:16 PM,Code 2 Transport,06/01/2014 04:24:19 PM,300 Block of HAYES ST,San Francisco,94102,B02,36,3265,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7770415005882, -122.42216513419)",141521794-KM15 +160964036,53,16038207,Industrial Accidents,04/05/2016,04/05/2016,04/05/2016 10:28:26 PM,04/05/2016 10:30:40 PM,04/05/2016 10:31:42 PM,04/05/2016 10:32:29 PM,04/05/2016 10:38:12 PM,04/05/2016 10:54:12 PM,04/05/2016 11:01:59 PM,Code 3 Transport,04/06/2016 12:16:42 AM,3RD ST/FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,true,Fire,1,MEDIC,2,3,6,South of Market,"(37.7837849329145, -122.398930333419)",160964036-53 +153280733,E26,15126150,Medical Incident,11/24/2015,11/24/2015,11/24/2015 08:16:19 AM,11/24/2015 08:17:00 AM,11/24/2015 08:17:20 AM,11/24/2015 08:19:02 AM,11/24/2015 08:25:02 AM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Code 2 Transport,11/24/2015 08:31:41 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.728489442639, -122.429995375728)",153280733-E26 +142931027,E03,14103280,Alarms,10/20/2014,10/20/2014,10/20/2014 10:01:50 AM,10/20/2014 10:02:55 AM,10/20/2014 10:03:04 AM,10/20/2014 10:03:13 AM,10/20/2014 10:05:13 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 10:16:04 AM,100 Block of OFARRELL ST,San Francisco,94102,B01,1,1363,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",142931027-E03 +150852684,82,15032523,Medical Incident,03/26/2015,03/26/2015,03/26/2015 04:37:16 PM,03/26/2015 04:40:07 PM,03/26/2015 04:44:48 PM,03/26/2015 04:44:56 PM,03/26/2015 04:57:49 PM,03/26/2015 05:12:43 PM,03/26/2015 05:37:35 PM,Code 2 Transport,03/26/2015 06:11:25 PM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7764944808779, -122.411359138357)",150852684-82 +151133254,T02,15042847,Alarms,04/23/2015,04/23/2015,04/23/2015 07:14:24 PM,04/23/2015 07:15:23 PM,04/23/2015 07:16:32 PM,04/23/2015 07:17:30 PM,04/23/2015 07:19:22 PM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Fire,04/23/2015 07:29:44 PM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",151133254-T02 +152641046,E35,15100998,Alarms,09/21/2015,09/21/2015,09/21/2015 08:57:51 AM,09/21/2015 08:59:10 AM,09/21/2015 08:59:39 AM,09/21/2015 09:00:21 AM,09/21/2015 09:05:45 AM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Fire,09/21/2015 09:15:36 AM,500 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",152641046-E35 +142621377,72,14091566,Medical Incident,09/19/2014,09/19/2014,09/19/2014 11:04:47 AM,09/19/2014 11:06:27 AM,09/19/2014 11:08:47 AM,09/19/2014 11:09:00 AM,09/19/2014 11:21:44 AM,09/19/2014 11:36:19 AM,09/19/2014 11:52:57 AM,Code 2 Transport,09/19/2014 12:00:48 PM,0 Block of POTRERO AVE,San Francisco,94103,B10,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.768813834852, -122.407774443281)",142621377-72 +150863163,KM10,15032952,Medical Incident,03/27/2015,03/27/2015,03/27/2015 07:01:12 PM,03/27/2015 07:05:28 PM,03/27/2015 07:08:26 PM,03/27/2015 07:09:04 PM,03/27/2015 07:27:32 PM,03/27/2015 07:49:07 PM,03/27/2015 08:18:46 PM,Code 2 Transport,03/27/2015 08:42:50 PM,MISSION ST/22ND ST,San Francisco,94110,B06,7,5472,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",150863163-KM10 +151113168,E42,15042099,Medical Incident,04/21/2015,04/21/2015,04/21/2015 06:56:12 PM,04/21/2015 06:59:25 PM,04/21/2015 07:00:17 PM,04/21/2015 07:01:47 PM,04/21/2015 07:03:50 PM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,Patient Declined Transport,04/21/2015 07:12:35 PM,2000 Block of QUESADA AVE,San Francisco,94124,B10,42,6431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7372708883243, -122.398263664701)",151113168-E42 +151543604,E10,15058857,Alarms,06/03/2015,06/03/2015,06/03/2015 08:58:32 PM,06/03/2015 09:00:10 PM,06/03/2015 09:00:18 PM,06/03/2015 09:01:05 PM,06/03/2015 09:03:40 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Fire,06/03/2015 09:18:20 PM,3600 Block of WASHINGTON ST,San Francisco,94118,B07,10,4433,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio Heights,"(37.7891489677203, -122.453112381719)",151543604-E10 +141500932,84,14051468,Medical Incident,05/30/2014,05/30/2014,05/30/2014 09:49:55 AM,05/30/2014 09:51:42 AM,05/30/2014 09:52:17 AM,05/30/2014 09:53:56 AM,05/30/2014 09:59:01 AM,05/30/2014 10:19:46 AM,05/30/2014 10:30:07 AM,Code 2 Transport,05/30/2014 11:01:08 AM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800574377607, -122.408673540372)",141500932-84 +142940345,E18,14103568,Medical Incident,10/21/2014,10/20/2014,10/21/2014 04:13:30 AM,10/21/2014 04:13:30 AM,10/21/2014 04:14:02 AM,10/21/2014 04:16:23 AM,10/21/2014 04:19:19 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Code 3 Transport,10/21/2014 04:29:45 AM,19TH AV/KIRKHAM ST,San Francisco,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7598339367344, -122.47681389085)",142940345-E18 +160982956,62,16039037,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:33:10 PM,04/07/2016 05:34:24 PM,04/07/2016 05:35:44 PM,04/07/2016 05:36:30 PM,04/07/2016 05:41:48 PM,04/07/2016 06:05:53 PM,04/07/2016 06:49:35 PM,Code 2 Transport,04/07/2016 07:03:21 PM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160982956-62 +151810371,E01,15069000,Medical Incident,06/30/2015,06/29/2015,06/30/2015 05:27:32 AM,06/30/2015 05:27:48 AM,06/30/2015 05:28:25 AM,06/30/2015 05:30:01 AM,06/30/2015 05:33:39 AM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Code 2 Transport,06/30/2015 05:41:57 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151810371-E01 +142791420,E07,14098124,Medical Incident,10/06/2014,10/06/2014,10/06/2014 11:30:44 AM,10/06/2014 11:31:03 AM,10/06/2014 11:31:31 AM,10/06/2014 11:32:12 AM,10/06/2014 11:37:30 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Code 2 Transport,10/06/2014 11:45:31 AM,2600 Block of 21ST ST,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7577882299664, -122.407282307621)",142791420-E07 +142122357,83,14073547,Medical Incident,07/31/2014,07/31/2014,07/31/2014 03:58:49 PM,07/31/2014 03:59:37 PM,07/31/2014 04:00:04 PM,07/31/2014 04:00:39 PM,07/31/2014 04:04:53 PM,07/31/2014 04:16:12 PM,07/31/2014 04:41:05 PM,Code 2 Transport,07/31/2014 05:14:50 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7692177178614, -122.452690310191)",142122357-83 +152640611,56,15100959,Medical Incident,09/21/2015,09/20/2015,09/21/2015 06:37:39 AM,09/21/2015 06:38:18 AM,09/21/2015 06:38:55 AM,09/21/2015 06:39:59 AM,09/21/2015 06:47:16 AM,09/21/2015 07:16:11 AM,09/21/2015 07:28:17 AM,Code 2 Transport,09/21/2015 08:19:02 AM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",152640611-56 +151163613,E08,15044027,Structure Fire,04/26/2015,04/26/2015,04/26/2015 11:16:00 PM,04/26/2015 11:17:20 PM,04/26/2015 11:17:39 PM,04/26/2015 11:18:49 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/26/2015 11:23:36 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,8,3,6,South of Market,"(37.7803475492385, -122.406487967809)",151163613-E08 +143632660,84,14129945,Medical Incident,12/29/2014,12/29/2014,12/29/2014 05:44:28 PM,12/29/2014 05:45:26 PM,12/29/2014 05:45:54 PM,12/29/2014 05:48:32 PM,12/29/2014 06:02:55 PM,12/29/2014 06:14:25 PM,12/29/2014 06:43:43 PM,Code 2 Transport,12/29/2014 07:07:19 PM,TURK BL/MASONIC AV,San Francisco,94118,B05,21,4363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,2,Lone Mountain/USF,"(37.7786223076413, -122.447039805009)",143632660-84 +152172625,E13,15082682,Medical Incident,08/05/2015,08/05/2015,08/05/2015 04:24:10 PM,08/05/2015 04:24:10 PM,08/05/2015 04:24:27 PM,08/05/2015 04:25:17 PM,08/05/2015 04:28:41 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,Code 2 Transport,08/05/2015 04:37:48 PM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",152172625-E13 +160981435,AM12,16038871,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 10:53:42 AM,04/07/2016 10:56:54 AM,04/07/2016 10:57:14 AM,04/07/2016 10:58:08 AM,04/07/2016 11:00:28 AM,04/07/2016 11:25:10 AM,04/07/2016 11:39:31 AM,Code 2 Transport,04/07/2016 12:20:56 PM,26TH ST/SHOTWELL ST,San Francisco,94110,B06,11,5613,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7492378671728, -122.414861249537)",160981435-AM12 +143022401,KM11,14106681,Medical Incident,10/29/2014,10/29/2014,10/29/2014 04:28:18 PM,10/29/2014 04:28:18 PM,10/29/2014 04:30:56 PM,10/29/2014 04:33:09 PM,10/29/2014 04:40:04 PM,10/29/2014 04:58:08 PM,10/29/2014 05:21:31 PM,Code 2 Transport,10/29/2014 05:55:08 PM,MCCOPPIN ST/GOUGH ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7717702499037, -122.420344369487)",143022401-KM11 +142432432,FB1,14084716,Water Rescue,08/31/2014,08/31/2014,08/31/2014 05:21:28 PM,08/31/2014 05:22:49 PM,08/31/2014 05:24:38 PM,08/31/2014 05:25:51 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Fire,08/31/2014 05:30:59 PM,900 Block of THE EMBARCADERO,San Francisco,94111,B01,13,923,3,3,3,false,Fire,1,SUPPORT,7,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",142432432-FB1 +152812035,E03,15107862,Medical Incident,10/08/2015,10/08/2015,10/08/2015 01:57:38 PM,10/08/2015 01:59:01 PM,10/08/2015 01:59:52 PM,10/08/2015 02:01:15 PM,10/08/2015 02:03:36 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Code 2 Transport,10/08/2015 02:14:14 PM,OFARRELL ST/FRANKLIN ST,San Francisco,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7845466088299, -122.4228380875)",152812035-E03 +152472295,E05,15094269,Medical Incident,09/04/2015,09/04/2015,09/04/2015 02:22:57 PM,09/04/2015 02:23:57 PM,09/04/2015 02:24:44 PM,09/04/2015 02:25:49 PM,09/04/2015 02:28:47 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Medical Examiner,09/04/2015 02:38:56 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",152472295-E05 +160990466,53,16039194,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:17:56 AM,04/08/2016 06:17:56 AM,04/08/2016 06:18:08 AM,04/08/2016 06:19:14 AM,04/08/2016 06:29:58 AM,04/08/2016 06:48:16 AM,04/08/2016 07:01:04 AM,Code 2 Transport,04/08/2016 07:39:17 AM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160990466-53 +160983662,64,16039106,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:02:09 PM,04/07/2016 09:02:57 PM,04/07/2016 09:03:16 PM,04/07/2016 09:04:13 PM,04/07/2016 09:08:56 PM,04/07/2016 09:29:06 PM,04/07/2016 09:44:35 PM,Code 2 Transport,04/07/2016 10:23:58 PM,2600 Block of LYON ST,San Francisco,94123,B04,16,4332,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7951802111491, -122.446730665283)",160983662-64 +152662745,E02,15101959,Structure Fire,09/23/2015,09/23/2015,09/23/2015 04:37:07 PM,09/23/2015 04:37:37 PM,09/23/2015 04:37:46 PM,09/23/2015 04:38:22 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Fire,09/23/2015 04:40:24 PM,2300 Block of LARKIN ST,San Francisco,94109,B01,41,1626,3,3,3,true,Alarm,1,ENGINE,8,1,2,Russian Hill,"(37.7994277963625, -122.420854016482)",152662745-E02 +160970029,AM16,16038240,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:08:32 AM,04/06/2016 12:10:02 AM,04/06/2016 12:10:31 AM,04/06/2016 12:11:14 AM,04/06/2016 12:18:29 AM,04/06/2016 12:32:05 AM,04/06/2016 12:47:24 AM,Code 2 Transport,04/06/2016 01:16:21 AM,2500 Block of 31ST AV,San Francisco,94116,B08,18,7527,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7396901089453, -122.488282653576)",160970029-AM16 +150141187,T08,15005492,Structure Fire,01/14/2015,01/14/2015,01/14/2015 10:29:40 AM,01/14/2015 10:29:40 AM,01/14/2015 10:29:49 AM,01/14/2015 10:30:50 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Cancelled,01/14/2015 10:31:31 AM,MAIN ST/BRYANT ST,San Francisco,94105,B03,35,2121,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7868986775116, -122.388779437164)",150141187-T08 +143360648,E01,14118981,Medical Incident,12/02/2014,12/02/2014,12/02/2014 08:03:39 AM,12/02/2014 08:04:40 AM,12/02/2014 08:05:08 AM,12/02/2014 08:06:56 AM,12/02/2014 08:14:46 AM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Code 2 Transport,12/02/2014 08:30:39 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",143360648-E01 +142743230,87,14096209,Medical Incident,10/01/2014,10/01/2014,10/01/2014 07:10:46 PM,10/01/2014 07:11:32 PM,10/01/2014 07:11:51 PM,10/01/2014 07:12:41 PM,10/01/2014 07:24:11 PM,10/01/2014 07:32:56 PM,10/01/2014 07:36:13 PM,Code 3 Transport,10/01/2014 07:58:19 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",142743230-87 +152260021,T14,15085975,Gas Leak (Natural and LP Gases),08/14/2015,08/13/2015,08/14/2015 12:09:37 AM,08/14/2015 12:10:44 AM,08/14/2015 12:10:55 AM,08/14/2015 12:13:24 AM,08/14/2015 12:15:19 AM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Fire,08/14/2015 12:28:48 AM,200 Block of 20TH AVE,San Francisco,94121,B07,14,7173,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7831899010435, -122.479652365289)",152260021-T14 +160992232,75,16039350,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:19:11 PM,04/08/2016 03:21:16 PM,04/08/2016 03:21:53 PM,04/08/2016 03:22:03 PM,04/08/2016 03:37:50 PM,04/08/2016 03:37:53 PM,04/08/2016 03:58:16 PM,Code 2 Transport,04/08/2016 04:31:04 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160992232-75 +141641695,KM14,14056533,Medical Incident,06/13/2014,06/13/2014,06/13/2014 01:10:19 PM,06/13/2014 01:11:40 PM,06/13/2014 01:13:57 PM,06/13/2014 01:14:53 PM,06/13/2014 01:24:59 PM,06/13/2014 01:36:32 PM,06/13/2014 01:52:30 PM,Code 2 Transport,06/13/2014 02:19:28 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",141641695-KM14 +151662422,E12,15063544,Medical Incident,06/15/2015,06/15/2015,06/15/2015 04:21:54 PM,06/15/2015 04:22:48 PM,06/15/2015 04:23:19 PM,06/15/2015 04:24:20 PM,06/15/2015 04:27:39 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/15/2015 04:42:41 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",151662422-E12 +143630816,KM02,14129787,Medical Incident,12/29/2014,12/29/2014,12/29/2014 08:59:13 AM,12/29/2014 09:01:35 AM,12/29/2014 09:15:24 AM,12/29/2014 09:15:24 AM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Patient Declined Transport,12/29/2014 09:18:52 AM,100 Block of ARLETA AVE,San Francisco,94134,B10,44,6267,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,10,Visitacion Valley,"(37.7136338116844, -122.405760298273)",143630816-KM02 +153430649,E20,15131898,Medical Incident,12/09/2015,12/08/2015,12/09/2015 07:41:47 AM,12/09/2015 07:42:36 AM,12/09/2015 07:43:12 AM,12/09/2015 07:44:38 AM,12/09/2015 07:50:49 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 08:23:22 AM,0 Block of BELLA VISTA WAY,San Francisco,94127,B09,39,8254,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7377122932371, -122.447013896083)",153430649-E20 +153413206,E07,15131346,Traffic Collision,12/07/2015,12/07/2015,12/07/2015 06:43:38 PM,12/07/2015 06:43:38 PM,12/07/2015 06:43:53 PM,12/07/2015 06:44:33 PM,12/07/2015 06:46:20 PM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,Patient Declined Transport,12/07/2015 06:53:57 PM,21ST ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",153413206-E07 +150583870,61,15022359,Traffic Collision,02/27/2015,02/27/2015,02/27/2015 10:45:23 PM,02/27/2015 10:47:41 PM,02/27/2015 10:48:19 PM,02/27/2015 10:54:19 PM,02/27/2015 11:08:22 PM,02/27/2015 11:24:29 PM,02/27/2015 11:33:42 PM,Code 2 Transport,02/28/2015 12:19:17 AM,1700 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2634,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7499142654366, -122.394328983742)",150583870-61 +143403041,E12,14120876,Medical Incident,12/06/2014,12/06/2014,12/06/2014 06:53:50 PM,12/06/2014 06:55:05 PM,12/06/2014 06:55:49 PM,12/06/2014 06:56:42 PM,12/06/2014 06:58:28 PM,04/25/2016 01:13:36 PM,04/25/2016 01:13:36 PM,Code 2 Transport,12/06/2014 07:12:30 PM,600 Block of FREDERICK ST,San Francisco,94117,B05,12,4551,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Inner Sunset,"(37.7659077959827, -122.456186927179)",143403041-E12 +152793111,55,15107166,Medical Incident,10/06/2015,10/06/2015,10/06/2015 06:19:23 PM,10/06/2015 06:19:23 PM,10/06/2015 06:19:23 PM,10/06/2015 06:19:23 PM,10/06/2015 06:19:23 PM,04/25/2016 01:07:55 PM,04/25/2016 01:07:55 PM,Patient Declined Transport,10/06/2015 06:44:21 PM,23RD ST/ILLINOIS ST,San Francisco,94107,B99,25,2731,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7554462218185, -122.387065853353)",152793111-55 +152404360,61,15091678,Medical Incident,08/28/2015,08/28/2015,08/28/2015 10:48:26 PM,08/28/2015 10:57:19 PM,08/28/2015 10:58:06 PM,08/28/2015 11:02:52 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Unable to Locate,08/28/2015 11:09:01 PM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",152404360-61 +152970968,56,15113977,Medical Incident,10/24/2015,10/24/2015,10/24/2015 08:50:20 AM,10/24/2015 08:51:05 AM,10/24/2015 08:52:16 AM,10/24/2015 08:55:27 AM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,Gone on Arrival,10/24/2015 09:01:18 AM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",152970968-56 +160940070,KM07,16037099,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:19:34 AM,04/03/2016 12:19:48 AM,04/03/2016 12:20:08 AM,04/03/2016 12:20:43 AM,04/03/2016 12:25:54 AM,04/03/2016 12:49:31 AM,04/03/2016 12:57:05 AM,Code 2 Transport,04/03/2016 01:25:47 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",160940070-KM07 +150422241,E36,15016388,Medical Incident,02/11/2015,02/11/2015,02/11/2015 02:58:10 PM,02/11/2015 02:59:07 PM,02/11/2015 03:02:02 PM,02/11/2015 03:02:30 PM,02/11/2015 03:03:38 PM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Code 2 Transport,02/11/2015 03:09:35 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",150422241-E36 +150151724,77,15005947,Medical Incident,01/15/2015,01/15/2015,01/15/2015 12:50:39 PM,01/15/2015 12:53:25 PM,01/15/2015 12:53:53 PM,01/15/2015 12:54:10 PM,01/15/2015 12:59:09 PM,01/15/2015 01:17:29 PM,01/15/2015 01:59:03 PM,Code 2 Transport,01/15/2015 02:24:38 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",150151724-77 +141371413,AM12,14046917,Medical Incident,05/17/2014,05/17/2014,05/17/2014 11:21:36 AM,05/17/2014 11:22:41 AM,05/17/2014 11:24:12 AM,05/17/2014 11:25:03 AM,05/17/2014 11:33:42 AM,05/17/2014 11:46:49 AM,05/17/2014 12:18:43 PM,Code 2 Transport,05/17/2014 01:09:16 PM,30TH AV/GEARY BL,San Francisco,94121,B07,14,722,3,A,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7798398321439, -122.490096577723)",141371413-AM12 +141913090,71,14066321,Medical Incident,07/10/2014,07/10/2014,07/10/2014 07:31:54 PM,07/10/2014 07:34:05 PM,07/10/2014 07:47:21 PM,07/10/2014 07:47:21 PM,07/10/2014 07:56:28 PM,07/10/2014 08:14:05 PM,07/10/2014 08:23:29 PM,Code 2 Transport,07/10/2014 08:44:34 PM,400 Block of 3RD AVE,San Francisco,94118,B07,31,7117,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7802004442701, -122.46092794533)",141913090-71 +160943569,85,16037448,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:20:46 PM,04/03/2016 10:20:46 PM,04/03/2016 10:23:32 PM,04/03/2016 10:23:41 PM,04/03/2016 10:42:01 PM,04/03/2016 10:49:09 PM,04/03/2016 11:12:45 PM,Code 2 Transport,04/03/2016 11:41:14 PM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",160943569-85 +160974069,72,16038654,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:30:26 PM,04/06/2016 08:31:12 PM,04/06/2016 08:33:20 PM,04/06/2016 08:33:38 PM,04/06/2016 08:37:11 PM,04/06/2016 08:51:44 PM,04/06/2016 09:19:12 PM,Code 2 Transport,04/06/2016 09:40:30 PM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160974069-72 +150390543,E03,15015061,Alarms,02/08/2015,02/07/2015,02/08/2015 03:22:56 AM,02/08/2015 03:24:09 AM,02/08/2015 03:24:16 AM,02/08/2015 03:25:59 AM,02/08/2015 03:28:29 AM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/08/2015 03:43:56 AM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",150390543-E03 +150010988,RS1,15000199,Medical Incident,01/01/2015,12/31/2014,01/01/2015 04:05:07 AM,01/01/2015 04:06:08 AM,01/01/2015 04:07:23 AM,01/01/2015 04:09:58 AM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Cancelled,01/01/2015 04:14:14 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",150010988-RS1 +151211868,60,15045875,Medical Incident,05/01/2015,05/01/2015,05/01/2015 01:03:06 PM,05/01/2015 01:03:06 PM,05/01/2015 01:03:36 PM,05/01/2015 01:04:08 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,No Merit,05/01/2015 01:09:45 PM,AMAZON AV/MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7172446200647, -122.440417736667)",151211868-60 +143261522,T05,14115474,Alarms,11/22/2014,11/22/2014,11/22/2014 11:45:27 AM,11/22/2014 11:46:55 AM,11/22/2014 11:47:06 AM,11/22/2014 11:47:35 AM,11/22/2014 11:51:24 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Fire,11/22/2014 11:56:28 AM,200 Block of IVY ST,San Francisco,94102,B02,36,3214,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7775087887745, -122.422260661613)",143261522-T05 +142572903,E11,14089898,Structure Fire,09/14/2014,09/14/2014,09/14/2014 08:36:46 PM,09/14/2014 08:36:46 PM,09/14/2014 08:37:23 PM,09/14/2014 08:38:39 PM,09/14/2014 08:39:45 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 08:40:18 PM,25TH ST/VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7505058278022, -122.420507005779)",142572903-E11 +151850901,E26,15070532,Medical Incident,07/04/2015,07/04/2015,07/04/2015 08:24:55 AM,07/04/2015 08:25:11 AM,07/04/2015 08:25:28 AM,07/04/2015 08:26:54 AM,07/04/2015 08:31:25 AM,04/25/2016 01:09:39 PM,04/25/2016 01:09:39 PM,Code 3 Transport,07/04/2015 08:48:07 AM,300 Block of RICHLAND AVE,San Francisco,94110,B06,32,5644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7356359705853, -122.418465889681)",151850901-E26 +141902278,71,14065890,Medical Incident,07/09/2014,07/09/2014,07/09/2014 03:36:41 PM,07/09/2014 03:37:44 PM,07/09/2014 03:38:38 PM,07/09/2014 03:38:48 PM,07/09/2014 03:44:23 PM,07/09/2014 03:56:29 PM,07/09/2014 04:00:14 PM,Code 2 Transport,07/09/2014 04:44:23 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7755801285655, -122.413994780042)",141902278-71 +161003321,75,16039957,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:00:32 PM,04/09/2016 10:02:25 PM,04/09/2016 10:03:13 PM,04/09/2016 10:03:23 PM,04/09/2016 10:18:39 PM,04/09/2016 10:18:41 PM,04/09/2016 10:44:52 PM,Code 2 Transport,04/09/2016 11:33:30 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",161003321-75 +152971087,57,15113987,Medical Incident,10/24/2015,10/24/2015,10/24/2015 09:30:13 AM,10/24/2015 09:32:40 AM,10/24/2015 09:33:32 AM,10/24/2015 09:33:40 AM,10/24/2015 09:44:48 AM,10/24/2015 10:17:30 AM,10/24/2015 10:53:21 AM,Code 2 Transport,10/24/2015 11:22:32 AM,0 Block of MARSTON AVE,San Francisco,94112,B09,15,8226,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7274123424876, -122.44593049272)",152971087-57 +143553841,E11,14127101,Medical Incident,12/21/2014,12/21/2014,12/21/2014 10:12:11 PM,12/21/2014 10:12:11 PM,12/21/2014 10:12:28 PM,12/21/2014 10:13:53 PM,12/21/2014 10:15:13 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Code 2 Transport,12/21/2014 10:21:34 PM,27TH ST/GUERRERO ST,San Francisco,94110,B06,11,5551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7471719168985, -122.422383537284)",143553841-E11 +141320297,86,14044793,Medical Incident,05/12/2014,05/11/2014,05/12/2014 03:45:13 AM,05/12/2014 03:46:30 AM,05/12/2014 03:48:06 AM,05/12/2014 03:49:02 AM,05/12/2014 04:06:31 AM,05/12/2014 04:24:57 AM,05/12/2014 04:56:41 AM,Code 2 Transport,05/12/2014 05:26:08 AM,1300 Block of NEWHALL ST,San Francisco,94124,B10,17,6471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7359424972351, -122.391874407163)",141320297-86 +160991155,54,16039251,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:34:49 AM,04/08/2016 10:35:55 AM,04/08/2016 10:36:38 AM,04/08/2016 10:36:47 AM,04/08/2016 10:44:02 AM,04/08/2016 11:04:40 AM,04/08/2016 11:17:24 AM,Code 2 Transport,04/08/2016 12:12:09 PM,1600 Block of BRYANT ST,San Francisco,94103,B02,29,5222,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7662587674103, -122.410479250127)",160991155-54 +160923453,88,16036607,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:02:01 PM,04/01/2016 09:02:01 PM,04/01/2016 09:06:50 PM,04/01/2016 09:06:59 PM,04/01/2016 09:18:18 PM,04/01/2016 09:34:00 PM,04/01/2016 09:41:41 PM,Code 2 Transport,04/01/2016 10:17:23 PM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",160923453-88 +160963197,62,16038130,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:09:09 PM,04/05/2016 06:12:55 PM,04/05/2016 06:13:08 PM,04/05/2016 06:14:24 PM,04/05/2016 06:27:46 PM,04/05/2016 06:41:59 PM,04/05/2016 07:15:49 PM,Other,04/05/2016 07:37:22 PM,1400 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.770198458048, -122.389578265491)",160963197-62 +160972176,66,16038442,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:40:13 PM,04/06/2016 01:40:13 PM,04/06/2016 01:44:23 PM,04/06/2016 01:44:35 PM,04/06/2016 01:56:56 PM,04/06/2016 02:15:26 PM,04/06/2016 02:41:07 PM,Code 2 Transport,04/06/2016 03:18:17 PM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160972176-66 +151090519,E03,15041171,Medical Incident,04/19/2015,04/18/2015,04/19/2015 03:55:00 AM,04/19/2015 03:56:28 AM,04/19/2015 03:57:19 AM,04/19/2015 03:59:18 AM,04/19/2015 04:03:14 AM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Code 2 Transport,04/19/2015 04:11:33 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",151090519-E03 +141552772,E44,14053418,Structure Fire,06/04/2014,06/04/2014,06/04/2014 05:55:17 PM,06/04/2014 05:55:17 PM,06/04/2014 05:55:50 PM,06/04/2014 05:56:33 PM,06/04/2014 06:00:19 PM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Fire,06/04/2014 06:01:11 PM,SAWYER ST/SUNRISE WY,San Francisco,94134,B09,44,6251,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7096948691249, -122.415955915854)",141552772-E44 +152071126,AM02,15078816,Medical Incident,07/26/2015,07/26/2015,07/26/2015 09:56:29 AM,07/26/2015 09:57:22 AM,07/26/2015 09:57:36 AM,07/26/2015 09:58:07 AM,07/26/2015 10:15:31 AM,07/26/2015 10:15:34 AM,07/26/2015 10:37:45 AM,Code 2 Transport,07/26/2015 11:08:19 AM,100 Block of 28TH AVE,San Francisco,94121,B07,14,7231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7859048053744, -122.488355259583)",152071126-AM02 +151972492,72,15075198,Traffic Collision,07/16/2015,07/16/2015,07/16/2015 04:41:49 PM,07/16/2015 04:41:49 PM,07/16/2015 04:42:36 PM,07/16/2015 04:42:55 PM,07/16/2015 05:00:29 PM,07/16/2015 05:19:45 PM,07/16/2015 05:35:58 PM,Code 2 Transport,07/16/2015 06:14:53 PM,GENEVA AV/ALEMANY BL,San Francisco,94112,B09,15,8332,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7178334463476, -122.442328161761)",151972492-72 +160951069,AM10,16037562,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:52:30 AM,04/04/2016 09:52:30 AM,04/04/2016 09:52:45 AM,04/04/2016 09:53:16 AM,04/04/2016 10:03:22 AM,04/04/2016 10:14:39 AM,04/04/2016 10:26:57 AM,Code 2 Transport,04/04/2016 10:51:07 AM,CALIFORNIA ST/GRANT AV,San Francisco,94108,B01,13,1314,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",160951069-AM10 +142752282,RS1,14096529,Medical Incident,10/02/2014,10/02/2014,10/02/2014 02:45:15 PM,10/02/2014 02:45:42 PM,10/02/2014 02:46:14 PM,10/02/2014 02:46:40 PM,10/02/2014 02:48:10 PM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Code 2 Transport,10/02/2014 03:02:45 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",142752282-RS1 +142261474,E07,14078462,Structure Fire,08/14/2014,08/14/2014,08/14/2014 12:00:39 PM,08/14/2014 12:00:39 PM,08/14/2014 12:02:19 PM,08/14/2014 12:03:08 PM,08/14/2014 12:03:13 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Fire,08/14/2014 12:04:54 PM,19TH ST/DOLORES ST,San Francisco,94110,B06,7,5435,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",142261474-E07 +143070770,T13,14108523,Medical Incident,11/03/2014,11/03/2014,11/03/2014 08:40:57 AM,11/03/2014 08:41:46 AM,11/03/2014 08:42:24 AM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,Code 2 Transport,11/03/2014 08:43:45 AM,400 Block of WASHINGTON ST,San Francisco,94111,B01,13,1211,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,1,3,Chinatown,"(37.795810567555, -122.401404304282)",143070770-T13 +160991035,85,16039240,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:59:25 AM,04/08/2016 09:59:48 AM,04/08/2016 10:00:53 AM,04/08/2016 10:00:59 AM,04/08/2016 10:08:53 AM,04/08/2016 10:22:25 AM,04/08/2016 10:44:46 AM,Code 2 Transport,04/08/2016 11:13:10 AM,900 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7871735250079, -122.417641342653)",160991035-85 +153360290,AM20,15129090,Medical Incident,12/02/2015,12/01/2015,12/02/2015 03:56:28 AM,12/02/2015 03:58:26 AM,12/02/2015 03:58:48 AM,12/02/2015 04:00:08 AM,12/02/2015 04:01:51 AM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,No Merit,12/02/2015 04:10:03 AM,300 Block of CHICAGO WAY,San Francisco,94112,B09,43,6233,3,3,3,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7091794603106, -122.433353103591)",153360290-AM20 +151533606,79,15058470,Structure Fire,06/02/2015,06/02/2015,06/02/2015 10:11:10 PM,06/02/2015 10:11:10 PM,06/02/2015 10:15:13 PM,06/02/2015 10:15:34 PM,06/02/2015 10:22:09 PM,06/02/2015 10:22:11 PM,06/02/2015 10:57:49 PM,Code 2 Transport,06/02/2015 11:05:43 PM,18TH ST/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",151533606-79 +150651099,E11,15024774,Medical Incident,03/06/2015,03/06/2015,03/06/2015 09:13:29 AM,03/06/2015 09:13:29 AM,03/06/2015 09:13:56 AM,03/06/2015 09:14:36 AM,03/06/2015 09:17:49 AM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Code 2 Transport,03/06/2015 09:34:10 AM,1500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7486963283794, -122.415839742458)",150651099-E11 +152403643,77,15091584,Medical Incident,08/28/2015,08/28/2015,08/28/2015 07:34:23 PM,08/28/2015 07:40:04 PM,08/28/2015 07:40:36 PM,08/28/2015 07:40:47 PM,08/28/2015 07:43:08 PM,08/28/2015 07:58:48 PM,08/28/2015 08:11:54 PM,Code 2 Transport,08/28/2015 08:58:30 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",152403643-77 +160932802,54,16036977,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:59:13 PM,04/02/2016 05:59:13 PM,04/02/2016 06:19:35 PM,04/02/2016 06:22:55 PM,04/02/2016 06:30:19 PM,04/02/2016 06:55:14 PM,04/02/2016 07:15:22 PM,Code 2 Transport,04/02/2016 07:41:59 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160932802-54 +160931421,61,16036826,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:36:10 AM,04/02/2016 11:37:55 AM,04/02/2016 11:53:11 AM,04/02/2016 11:53:39 AM,04/02/2016 12:24:27 PM,04/02/2016 12:47:09 PM,04/02/2016 12:52:43 PM,Code 2 Transport,04/02/2016 01:39:02 PM,100 Block of GRANT AV,San Francisco,94108,B01,1,1316,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879895535036, -122.405154804677)",160931421-61 +160982632,55,16039005,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:02:43 PM,04/07/2016 04:03:37 PM,04/07/2016 04:07:35 PM,04/07/2016 04:07:43 PM,04/07/2016 04:19:54 PM,04/07/2016 04:38:09 PM,04/07/2016 05:11:21 PM,Code 2 Transport,04/07/2016 05:27:14 PM,1500 Block of STOCKTON ST,San Francisco,94133,B01,28,1334,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.799975359605, -122.40903359976)",160982632-55 +142581239,E06,14090078,Medical Incident,09/15/2014,09/15/2014,09/15/2014 11:02:48 AM,09/15/2014 11:05:32 AM,09/15/2014 11:06:05 AM,09/15/2014 11:06:47 AM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Code 2 Transport,09/15/2014 11:07:33 AM,1500 Block of 15TH ST,San Francisco,94103,B02,7,5225,3,3,3,true,Non Life-threatening,1,ENGINE,3,2,9,Mission,"(37.7667276112047, -122.418018847374)",142581239-E06 +150533292,E08,15020541,Medical Incident,02/22/2015,02/22/2015,02/22/2015 09:36:07 PM,02/22/2015 09:37:51 PM,02/22/2015 09:38:10 PM,02/22/2015 09:39:07 PM,02/22/2015 09:41:03 PM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,Code 2 Transport,02/22/2015 09:50:12 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",150533292-E08 +150643344,B03,15024602,Alarms,03/05/2015,03/05/2015,03/05/2015 07:12:06 PM,03/05/2015 07:13:50 PM,03/05/2015 07:14:09 PM,03/05/2015 07:15:42 PM,03/05/2015 07:17:13 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Fire,03/05/2015 07:29:26 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,3,3,3,false,Alarm,1,CHIEF,3,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",150643344-B03 +152180877,E06,15082926,Medical Incident,08/06/2015,08/06/2015,08/06/2015 08:41:11 AM,08/06/2015 08:42:52 AM,08/06/2015 08:49:18 AM,08/06/2015 08:50:58 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/06/2015 08:51:13 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",152180877-E06 +150911264,52,15034560,Medical Incident,04/01/2015,04/01/2015,04/01/2015 10:53:36 AM,04/01/2015 10:55:00 AM,04/01/2015 10:55:58 AM,04/01/2015 10:56:24 AM,04/01/2015 11:00:36 AM,04/01/2015 11:10:51 AM,04/01/2015 11:24:02 AM,Code 2 Transport,04/01/2015 11:51:15 AM,JONES ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",150911264-52 +141170165,E01,14039486,Alarms,04/27/2014,04/27/2014,04/27/2014 12:26:06 PM,04/27/2014 12:26:52 PM,04/27/2014 12:27:06 PM,04/25/2016 01:17:39 PM,04/27/2014 12:29:54 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Fire,04/27/2014 12:36:03 PM,400 Block of EDDY ST,SAN FRANCISCO,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",141170165-E01 +160953407,62,16037768,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:25:30 PM,04/04/2016 07:25:30 PM,04/04/2016 07:26:16 PM,04/04/2016 07:26:23 PM,04/04/2016 07:31:22 PM,04/04/2016 07:50:04 PM,04/04/2016 08:15:42 PM,Code 2 Transport,04/04/2016 08:37:24 PM,300 Block of HOWARD ST,San Francisco,94105,B03,35,2124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",160953407-62 +150723401,E44,15027650,Medical Incident,03/13/2015,03/13/2015,03/13/2015 07:08:35 PM,03/13/2015 07:10:13 PM,03/13/2015 07:10:36 PM,03/13/2015 07:12:09 PM,03/13/2015 07:13:58 PM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Code 2 Transport,03/13/2015 07:23:21 PM,300 Block of ORDWAY ST,San Francisco,94134,B10,44,6313,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7194829515563, -122.40403720006)",150723401-E44 +161000124,62,16039564,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:45:57 AM,04/09/2016 12:46:56 AM,04/09/2016 12:49:42 AM,04/09/2016 12:50:01 AM,04/09/2016 12:55:43 AM,04/09/2016 01:30:40 AM,04/09/2016 01:49:22 AM,Code 2 Transport,04/09/2016 02:13:06 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",161000124-62 +142490089,E38,14086648,Structure Fire,09/06/2014,09/05/2014,09/06/2014 12:35:09 AM,09/06/2014 12:39:10 AM,09/06/2014 12:39:42 AM,09/06/2014 12:40:33 AM,09/06/2014 12:43:09 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Fire,09/06/2014 12:46:59 AM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",142490089-E38 +142541478,B06,14088652,Alarms,09/11/2014,09/11/2014,09/11/2014 12:10:10 PM,09/11/2014 12:13:05 PM,09/11/2014 12:13:26 PM,09/11/2014 12:14:22 PM,09/11/2014 12:17:48 PM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Fire,09/11/2014 12:27:36 PM,600 Block of ALVARADO ST,San Francisco,94114,B06,24,5515,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7536611563754, -122.435425173732)",142541478-B06 +142780305,75,14097662,Medical Incident,10/05/2014,10/04/2014,10/05/2014 01:28:20 AM,10/05/2014 01:34:15 AM,10/05/2014 01:35:08 AM,10/05/2014 01:35:22 AM,10/05/2014 01:42:22 AM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,No Merit,10/05/2014 01:43:21 AM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",142780305-75 +141703258,66,14058860,Medical Incident,06/19/2014,06/19/2014,06/19/2014 08:39:41 PM,06/19/2014 08:41:27 PM,06/19/2014 08:42:51 PM,06/19/2014 08:43:35 PM,06/19/2014 08:52:22 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Against Medical Advice,06/19/2014 09:07:39 PM,1200 Block of 39TH AVE,San Francisco,94122,B08,23,7626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7635527078831, -122.498690380377)",141703258-66 +142521876,66,14087977,Medical Incident,09/09/2014,09/09/2014,09/09/2014 02:32:26 PM,09/09/2014 02:33:10 PM,09/09/2014 02:33:53 PM,09/09/2014 02:34:38 PM,09/09/2014 02:37:23 PM,09/09/2014 02:57:39 PM,09/09/2014 03:13:16 PM,Code 2 Transport,09/09/2014 03:31:43 PM,16TH ST/SHOTWELL ST,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7652494943866, -122.416387524486)",142521876-66 +150061811,E13,15002299,Medical Incident,01/06/2015,01/06/2015,01/06/2015 01:31:42 PM,01/06/2015 01:33:00 PM,01/06/2015 01:33:42 PM,01/06/2015 01:34:07 PM,01/06/2015 01:35:31 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Code 2 Transport,01/06/2015 01:58:26 PM,100 Block of SANSOME ST,San Francisco,94104,B01,13,1165,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7916515232471, -122.400770219415)",150061811-E13 +143592099,58,14128553,Medical Incident,12/25/2014,12/25/2014,12/25/2014 07:32:13 PM,12/25/2014 07:33:29 PM,12/25/2014 07:34:50 PM,12/25/2014 07:38:41 PM,12/25/2014 07:46:36 PM,12/25/2014 07:51:48 PM,12/25/2014 07:59:41 PM,Code 2 Transport,12/25/2014 08:24:46 PM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7720751846477, -122.408746829681)",143592099-58 +160931701,82,16036852,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:54:00 PM,04/02/2016 12:55:09 PM,04/02/2016 12:56:39 PM,04/02/2016 12:56:51 PM,04/02/2016 01:10:10 PM,04/02/2016 01:28:00 PM,04/02/2016 02:20:17 PM,Code 2 Transport,04/02/2016 02:41:58 PM,700 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.732924646566, -122.416428558162)",160931701-82 +160970682,82,16038301,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:43:32 AM,04/06/2016 07:44:10 AM,04/06/2016 07:45:05 AM,04/06/2016 07:45:21 AM,04/06/2016 07:58:35 AM,04/06/2016 08:25:19 AM,04/06/2016 08:48:47 AM,Code 2 Transport,04/06/2016 09:20:12 AM,1000 Block of ALABAMA ST,San Francisco,94110,B06,7,5476,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7550913132748, -122.411127388078)",160970682-82 +151730190,E36,15065893,Medical Incident,06/22/2015,06/21/2015,06/22/2015 01:59:54 AM,06/22/2015 02:00:38 AM,06/22/2015 02:00:51 AM,06/22/2015 02:02:54 AM,06/22/2015 02:05:21 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Code 2 Transport,06/22/2015 02:08:09 AM,500 Block of HAYES ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7766301642126, -122.425399507344)",151730190-E36 +150720361,E18,15027363,Medical Incident,03/13/2015,03/12/2015,03/13/2015 03:43:35 AM,03/13/2015 03:45:32 AM,03/13/2015 03:45:48 AM,03/13/2015 03:48:13 AM,03/13/2015 03:53:09 AM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Code 2 Transport,03/13/2015 03:59:41 AM,2500 Block of 40TH AVE,San Francisco,94116,B08,18,7617,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392647601662, -122.497924563428)",150720361-E18 +152932876,KM08,15112656,Traffic Collision,10/20/2015,10/20/2015,10/20/2015 04:59:38 PM,10/20/2015 05:01:25 PM,10/20/2015 05:01:42 PM,10/20/2015 05:02:28 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,No Merit,10/20/2015 05:07:35 PM,19TH AV/OCEAN AV,San Francisco,94132,B08,19,7413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7324561388297, -122.474954620812)",152932876-KM08 +160950158,79,16037485,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:53:02 AM,04/04/2016 01:54:38 AM,04/04/2016 01:55:33 AM,04/04/2016 01:56:25 AM,04/04/2016 01:59:35 AM,04/04/2016 02:24:29 AM,04/04/2016 02:34:17 AM,Code 2 Transport,04/04/2016 03:00:52 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160950158-79 +160981267,74,16038851,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:06:22 AM,04/07/2016 10:08:11 AM,04/07/2016 10:10:39 AM,04/07/2016 10:10:49 AM,04/07/2016 10:22:01 AM,04/07/2016 10:30:25 AM,04/07/2016 10:37:35 AM,Code 2 Transport,04/07/2016 11:21:21 AM,3000 Block of 25TH ST,San Francisco,94110,B06,7,5533,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7511731433127, -122.410367728863)",160981267-74 +141582110,D2,14054478,Structure Fire,06/07/2014,06/07/2014,06/07/2014 03:59:10 PM,06/07/2014 03:59:48 PM,06/07/2014 04:00:43 PM,06/07/2014 04:01:38 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 04:07:14 PM,1400 Block of ANZA ST,San Francisco,94118,B07,31,7131,3,3,3,false,Alarm,1,CHIEF,7,7,1,Inner Richmond,"(37.7790598295311, -122.463606673844)",141582110-D2 +150480747,E37,15018541,Medical Incident,02/17/2015,02/17/2015,02/17/2015 08:14:54 AM,02/17/2015 08:17:02 AM,02/17/2015 08:17:19 AM,02/17/2015 08:18:40 AM,02/17/2015 08:21:23 AM,04/25/2016 01:12:12 PM,04/25/2016 01:12:12 PM,Code 2 Transport,02/17/2015 08:36:21 AM,1700 Block of 26TH ST,San Francisco,94107,B10,37,2615,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.751171434556, -122.397379770345)",150480747-E37 +160933432,60,16037047,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:08:29 PM,04/02/2016 09:09:19 PM,04/02/2016 09:09:32 PM,04/02/2016 09:09:50 PM,04/02/2016 09:15:38 PM,04/02/2016 09:39:36 PM,04/02/2016 10:01:31 PM,Code 2 Transport,04/02/2016 10:54:00 PM,400 Block of GATES ST,San Francisco,94110,B06,32,5737,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7377232495282, -122.413978458596)",160933432-60 +160990629,52,16039205,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:39:26 AM,04/08/2016 07:40:22 AM,04/08/2016 07:40:50 AM,04/08/2016 07:42:46 AM,04/08/2016 07:48:35 AM,04/08/2016 08:07:13 AM,04/08/2016 08:44:35 AM,Code 2 Transport,04/08/2016 09:04:54 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160990629-52 +151861400,AM02,15071003,Medical Incident,07/05/2015,07/05/2015,07/05/2015 10:31:19 AM,07/05/2015 10:32:47 AM,07/05/2015 10:33:20 AM,07/05/2015 10:33:58 AM,07/05/2015 10:39:48 AM,07/05/2015 10:46:10 AM,07/05/2015 11:15:13 AM,Code 2 Transport,07/05/2015 11:32:00 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151861400-AM02 +161000887,61,16039671,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:48:31 AM,04/09/2016 08:48:56 AM,04/09/2016 08:51:14 AM,04/09/2016 08:51:14 AM,04/09/2016 08:54:04 AM,04/09/2016 09:10:38 AM,04/09/2016 09:20:54 AM,Code 3 Transport,04/09/2016 10:11:35 AM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",161000887-61 +142293749,55,14079747,Medical Incident,08/17/2014,08/17/2014,08/17/2014 11:05:56 PM,08/17/2014 11:07:53 PM,08/17/2014 11:08:26 PM,08/17/2014 11:08:47 PM,08/17/2014 11:17:42 PM,08/17/2014 11:36:45 PM,08/17/2014 11:46:55 PM,Code 2 Transport,08/18/2014 12:25:51 AM,100 Block of TUNNEL AVE,San Francisco,94134,B10,44,6271,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7125241926611, -122.400524162654)",142293749-55 +141613079,68,14055644,Medical Incident,06/10/2014,06/10/2014,06/10/2014 08:24:46 PM,06/10/2014 08:25:35 PM,06/10/2014 08:26:04 PM,06/10/2014 08:26:12 PM,06/10/2014 08:37:49 PM,06/10/2014 09:03:07 PM,06/10/2014 09:24:31 PM,Code 2 Transport,06/10/2014 09:48:35 PM,100 Block of LELAND AVE,San Francisco,94134,B09,44,6256,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",141613079-68 +160933033,88,16036995,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:05:53 PM,04/02/2016 07:07:06 PM,04/02/2016 07:07:24 PM,04/02/2016 07:07:46 PM,04/02/2016 07:15:05 PM,04/02/2016 07:27:59 PM,04/02/2016 07:38:11 PM,Code 2 Transport,04/02/2016 08:21:53 PM,33RD AV/FULTON ST,San Francisco,94121,B07,14,7243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7721785309842, -122.492761385207)",160933033-88 +151402343,KM12,15053218,Medical Incident,05/20/2015,05/20/2015,05/20/2015 03:27:44 PM,05/20/2015 03:28:19 PM,05/20/2015 03:28:59 PM,05/20/2015 03:29:50 PM,05/20/2015 03:38:17 PM,05/20/2015 04:13:18 PM,05/20/2015 04:18:54 PM,Code 2 Transport,05/20/2015 05:06:57 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7777903094246, -122.412834332129)",151402343-KM12 +152762788,57,15105887,Medical Incident,10/03/2015,10/03/2015,10/03/2015 04:58:18 PM,10/03/2015 04:59:08 PM,10/03/2015 04:59:54 PM,10/03/2015 05:00:13 PM,10/03/2015 05:04:19 PM,10/03/2015 05:24:35 PM,10/03/2015 05:34:25 PM,Code 2 Transport,10/03/2015 06:16:01 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7658582826035, -122.419816092644)",152762788-57 +150352888,E08,15013538,Medical Incident,02/04/2015,02/04/2015,02/04/2015 04:19:48 PM,02/04/2015 04:19:48 PM,02/04/2015 04:20:39 PM,02/04/2015 04:22:07 PM,04/25/2016 01:12:27 PM,04/25/2016 01:12:27 PM,04/25/2016 01:12:27 PM,Code 2 Transport,02/04/2015 04:24:07 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.781960649289, -122.402224095303)",150352888-E08 +160951705,KM11,16037621,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:27:12 PM,04/04/2016 12:29:51 PM,04/04/2016 12:30:50 PM,04/04/2016 12:31:27 PM,04/04/2016 12:35:55 PM,04/04/2016 12:39:35 PM,04/04/2016 01:05:14 PM,Code 2 Transport,04/04/2016 01:40:51 PM,800 Block of SILVER AVE,San Francisco,94134,B09,42,6145,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7290310292149, -122.418931444009)",160951705-KM11 +150440860,AM06,15017028,Medical Incident,02/13/2015,02/13/2015,02/13/2015 08:25:30 AM,02/13/2015 08:26:53 AM,02/13/2015 08:34:04 AM,02/13/2015 08:34:04 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Other,02/13/2015 08:43:55 AM,400 Block of ROLPH ST,San Francisco,94112,B09,43,6226,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7123368698446, -122.433796156182)",150440860-AM06 +152712327,RC1,15103841,Medical Incident,09/28/2015,09/28/2015,09/28/2015 03:27:41 PM,09/28/2015 03:27:56 PM,09/28/2015 03:33:11 PM,09/28/2015 03:33:11 PM,09/28/2015 03:33:11 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Code 2 Transport,09/28/2015 03:50:21 PM,PINE ST/MASON ST,San Francisco,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Nob Hill,"(37.7908806970808, -122.410622872864)",152712327-RC1 +160951692,56,16037619,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:25:24 PM,04/04/2016 12:26:37 PM,04/04/2016 12:27:10 PM,04/04/2016 12:27:25 PM,04/04/2016 12:33:13 PM,04/04/2016 12:52:52 PM,04/04/2016 01:04:20 PM,Code 2 Transport,04/04/2016 01:32:35 PM,300 Block of CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Inner Richmond,"(37.7829589368788, -122.462810653671)",160951692-56 +142080654,RS1,14071963,Train / Rail Incident,07/27/2014,07/26/2014,07/27/2014 05:03:05 AM,07/27/2014 05:04:14 AM,07/27/2014 05:08:04 AM,07/27/2014 05:09:39 AM,07/27/2014 05:09:39 AM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Fire,07/27/2014 07:38:22 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Fire,1,RESCUE SQUAD,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",142080654-RS1 +142051465,E13,14070940,Alarms,07/24/2014,07/24/2014,07/24/2014 11:42:33 AM,07/24/2014 11:44:07 AM,07/24/2014 11:44:19 AM,07/24/2014 11:47:14 AM,07/24/2014 11:47:42 AM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/24/2014 11:51:54 AM,100 Block of SUTTER ST,San Francisco,94104,B01,13,1242,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7898368259498, -122.403344544792)",142051465-E13 +152843636,E13,15109222,Other,10/11/2015,10/11/2015,10/11/2015 08:58:17 PM,10/11/2015 08:58:30 PM,10/11/2015 08:58:42 PM,10/11/2015 09:00:07 PM,10/11/2015 09:02:56 PM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/11/2015 09:10:44 PM,500 Block of MARKET ST,San Francisco,94104,B01,13,1164,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7909708601112, -122.399388634958)",152843636-E13 +151761758,E17,15067044,Medical Incident,06/25/2015,06/25/2015,06/25/2015 01:04:19 PM,06/25/2015 01:05:18 PM,06/25/2015 01:05:52 PM,06/25/2015 01:06:50 PM,06/25/2015 01:10:26 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,Against Medical Advice,06/25/2015 02:40:21 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",151761758-E17 +160964180,AM18,16038225,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:23:07 PM,04/05/2016 11:25:56 PM,04/05/2016 11:27:38 PM,04/05/2016 11:28:09 PM,04/05/2016 11:29:15 PM,04/06/2016 12:18:10 AM,04/06/2016 12:18:14 AM,Code 2 Transport,04/06/2016 12:18:16 AM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160964180-AM18 +161002841,70,16039898,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:34:36 PM,04/09/2016 07:34:36 PM,04/09/2016 07:34:55 PM,04/09/2016 07:35:05 PM,04/09/2016 07:51:51 PM,04/09/2016 07:52:00 PM,04/09/2016 08:22:34 PM,Code 2 Transport,04/09/2016 08:37:12 PM,MISSION ST/24TH ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7522394549791, -122.418445272851)",161002841-70 +152873687,62,15110417,Medical Incident,10/14/2015,10/14/2015,10/14/2015 07:21:39 PM,10/14/2015 07:22:27 PM,10/14/2015 07:22:53 PM,10/14/2015 07:23:08 PM,10/14/2015 07:29:37 PM,10/14/2015 07:36:17 PM,10/14/2015 07:44:33 PM,Code 2 Transport,10/14/2015 08:15:23 PM,GEARY BL/WEBSTER ST,San Francisco,94115,B04,5,3432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7845682402461, -122.431204945516)",152873687-62 +142063618,B04,14071521,Structure Fire,07/25/2014,07/25/2014,07/25/2014 10:02:41 PM,07/25/2014 10:05:24 PM,07/25/2014 10:05:36 PM,07/25/2014 10:07:09 PM,07/25/2014 10:09:49 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Fire,07/25/2014 10:11:51 PM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,false,Alarm,1,CHIEF,5,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",142063618-B04 +141911482,E07,14066191,Medical Incident,07/10/2014,07/10/2014,07/10/2014 11:45:50 AM,07/10/2014 11:47:52 AM,07/10/2014 11:50:02 AM,07/10/2014 11:51:05 AM,07/10/2014 11:58:05 AM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Code 2 Transport,07/10/2014 12:07:26 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",141911482-E07 +152162110,E08,15082284,Alarms,08/04/2015,08/04/2015,08/04/2015 02:58:32 PM,08/04/2015 02:59:32 PM,08/04/2015 02:59:39 PM,08/04/2015 03:01:54 PM,08/04/2015 03:04:34 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/04/2015 03:12:15 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",152162110-E08 +143473221,KM03,14123962,Medical Incident,12/13/2014,12/13/2014,12/13/2014 08:03:04 PM,12/13/2014 08:03:43 PM,12/13/2014 08:04:04 PM,12/13/2014 08:04:50 PM,12/13/2014 08:08:10 PM,12/13/2014 08:17:41 PM,12/13/2014 08:27:09 PM,Code 2 Transport,12/13/2014 09:00:40 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",143473221-KM03 +160940785,KM08,16037185,Medical Incident,04/03/2016,04/02/2016,04/03/2016 07:05:15 AM,04/03/2016 07:06:16 AM,04/03/2016 07:07:50 AM,04/03/2016 07:07:50 AM,04/03/2016 07:14:00 AM,04/03/2016 07:54:37 AM,04/03/2016 08:08:42 AM,Code 3 Transport,04/03/2016 08:21:26 AM,2100 Block of LARKIN ST,San Francisco,94109,B01,41,1631,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,4,3,Russian Hill,"(37.7975625827342, -122.420477453586)",160940785-KM08 +142042079,T10,14070644,Structure Fire,07/23/2014,07/23/2014,07/23/2014 02:05:11 PM,07/23/2014 02:05:49 PM,07/23/2014 02:06:25 PM,07/23/2014 02:07:37 PM,07/23/2014 02:09:39 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/23/2014 02:14:34 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7829763286601, -122.441111760659)",142042079-T10 +142531381,AM04,14088254,Traffic Collision,09/10/2014,09/10/2014,09/10/2014 11:13:18 AM,09/10/2014 11:14:26 AM,09/10/2014 11:22:20 AM,09/10/2014 11:22:20 AM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,Code 3 Transport,09/10/2014 11:33:19 AM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3219,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,11,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",142531381-AM04 +160991600,52,16039284,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:39:37 PM,04/08/2016 12:39:37 PM,04/08/2016 12:40:26 PM,04/08/2016 12:40:36 PM,04/08/2016 01:00:05 PM,04/08/2016 01:17:06 PM,04/08/2016 01:29:19 PM,Code 2 Transport,04/08/2016 02:04:38 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245977, -122.446150377688)",160991600-52 +160953923,KM03,16037812,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:12:41 PM,04/04/2016 10:14:42 PM,04/04/2016 10:14:53 PM,04/04/2016 10:15:24 PM,04/04/2016 10:22:20 PM,04/04/2016 10:37:13 PM,04/04/2016 10:44:59 PM,Code 2 Transport,04/04/2016 11:22:20 PM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",160953923-KM03 +142122418,74,14073555,Medical Incident,07/31/2014,07/31/2014,07/31/2014 04:17:16 PM,07/31/2014 04:19:06 PM,07/31/2014 04:22:49 PM,07/31/2014 04:23:10 PM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Code 2 Transport,07/31/2014 04:24:05 PM,300 Block of ARGUELLO BLVD,San Francisco,94118,B07,10,7114,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7844395880636, -122.459158221689)",142122418-74 +152650603,E06,15101378,Alarms,09/22/2015,09/21/2015,09/22/2015 07:13:54 AM,09/22/2015 07:15:28 AM,09/22/2015 07:15:38 AM,09/22/2015 07:17:38 AM,09/22/2015 07:20:33 AM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/22/2015 07:46:36 AM,4000 Block of 17TH ST,San Francisco,94114,B05,6,5253,3,3,3,true,Alarm,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7624364423334, -122.436895079866)",152650603-E06 +142472836,RS1,14086158,Structure Fire,09/04/2014,09/04/2014,09/04/2014 05:59:02 PM,09/04/2014 05:59:30 PM,09/04/2014 06:00:29 PM,09/04/2014 06:02:37 PM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,Fire,09/04/2014 06:04:59 PM,300 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,RESCUE SQUAD,7,1,3,North Beach,"(37.7981913307058, -122.40367998233)",142472836-RS1 +141422743,KM10,14048778,Medical Incident,05/22/2014,05/22/2014,05/22/2014 05:44:06 PM,05/22/2014 05:45:55 PM,05/22/2014 05:46:16 PM,05/22/2014 05:47:12 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,Cancelled,05/22/2014 05:51:54 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",141422743-KM10 +150651986,B04,15024849,Alarms,03/06/2015,03/06/2015,03/06/2015 12:52:49 PM,03/06/2015 12:54:02 PM,03/06/2015 12:54:15 PM,03/06/2015 12:55:24 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Fire,03/06/2015 01:00:50 PM,200 Block of LINCOLN BLVD,Presidio,94129,B99,51,4612,3,3,3,false,Alarm,1,CHIEF,2,7,2,Presidio,"(37.8015231495142, -122.455935974002)",150651986-B04 +142541831,E18,14088696,Structure Fire,09/11/2014,09/11/2014,09/11/2014 01:46:01 PM,09/11/2014 01:47:21 PM,09/11/2014 01:48:02 PM,09/11/2014 01:49:07 PM,09/11/2014 01:52:36 PM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Fire,09/11/2014 02:11:05 PM,2500 Block of 39TH AVE,San Francisco,94116,B08,18,7617,3,3,3,true,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7393058595121, -122.496988889113)",142541831-E18 +150871670,E01,15033214,Medical Incident,03/28/2015,03/28/2015,03/28/2015 12:29:25 PM,03/28/2015 12:30:11 PM,03/28/2015 12:31:55 PM,03/28/2015 12:33:19 PM,03/28/2015 12:34:59 PM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Code 2 Transport,03/28/2015 12:58:05 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",150871670-E01 +151912044,E03,15072911,Citizen Assist / Service Call,07/10/2015,07/10/2015,07/10/2015 01:43:50 PM,07/10/2015 01:44:30 PM,07/10/2015 01:44:43 PM,07/10/2015 01:46:05 PM,07/10/2015 01:47:21 PM,04/25/2016 01:09:33 PM,04/25/2016 01:09:33 PM,Fire,07/10/2015 01:54:17 PM,OFARRELL ST/VAN NESS AV,San Francisco,94109,B04,3,3162,3,3,3,true,Alarm,1,ENGINE,1,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",151912044-E03 +143042359,B07,14107585,Structure Fire,10/31/2014,10/31/2014,10/31/2014 04:53:43 PM,10/31/2014 04:53:43 PM,10/31/2014 04:54:16 PM,10/31/2014 04:55:29 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,Fire,10/31/2014 04:58:57 PM,100 Block of GRATTAN ST,San Francisco,94117,B05,12,516,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7638803864645, -122.450310275747)",143042359-B07 +160981321,82,16038863,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:19:08 AM,04/07/2016 10:20:04 AM,04/07/2016 10:20:44 AM,04/07/2016 10:21:10 AM,04/07/2016 10:47:41 AM,04/07/2016 10:47:44 AM,04/07/2016 11:11:25 AM,Code 2 Transport,04/07/2016 11:55:13 AM,THE EMBARCADERO NOR/MARKET ST,San Francisco,94111,B01,13,901,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7953080071442, -122.3938439729)",160981321-82 +141170317,E01,14039626,Structure Fire,04/27/2014,04/27/2014,04/27/2014 09:34:42 PM,04/27/2014 09:36:21 PM,04/27/2014 09:36:35 PM,04/27/2014 09:37:00 PM,04/27/2014 09:38:58 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Fire,04/27/2014 09:41:37 PM,600 Block of POST ST,SAN FRANCISCO,94109,B01,3,1451,3,3,3,true,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7878082243767, -122.412644332435)",141170317-E01 +150382529,AM02,15014843,Medical Incident,02/07/2015,02/07/2015,02/07/2015 04:31:16 PM,02/07/2015 04:32:23 PM,02/07/2015 04:32:46 PM,02/07/2015 04:34:08 PM,02/07/2015 04:53:04 PM,02/07/2015 04:53:11 PM,02/07/2015 05:08:46 PM,Code 2 Transport,02/07/2015 05:28:22 PM,0 Block of YACHT RD,San Francisco,94123,B04,16,4215,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,None,2,Marina,"(37.8067582085576, -122.446916219003)",150382529-AM02 +150692120,E07,15026384,Alarms,03/10/2015,03/10/2015,03/10/2015 03:00:04 PM,03/10/2015 03:01:21 PM,03/10/2015 03:01:51 PM,03/10/2015 03:03:55 PM,03/10/2015 03:03:55 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 03:39:28 PM,19TH ST/LEXINGTON ST,San Francisco,94110,B06,7,5434,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7601475545791, -122.420659533979)",150692120-E07 +160983025,76,16039040,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:53:24 PM,04/07/2016 05:56:09 PM,04/07/2016 06:17:31 PM,04/07/2016 06:17:38 PM,04/07/2016 06:28:58 PM,04/07/2016 06:35:54 PM,04/07/2016 06:46:58 PM,Code 2 Transport,04/07/2016 07:08:06 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160983025-76 +150302835,E13,15011671,Medical Incident,01/30/2015,01/30/2015,01/30/2015 05:27:50 PM,01/30/2015 05:28:26 PM,01/30/2015 05:28:53 PM,01/30/2015 05:29:48 PM,01/30/2015 05:32:14 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Code 2 Transport,01/30/2015 05:42:19 PM,200 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7914249452441, -122.402544180964)",150302835-E13 +152710087,AP,15103649,Other,09/28/2015,09/27/2015,09/28/2015 12:42:43 AM,09/28/2015 12:42:43 AM,09/28/2015 12:42:43 AM,09/28/2015 12:42:43 AM,09/28/2015 12:42:43 AM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Fire,09/28/2015 12:42:43 AM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",152710087-AP +143024030,E01,14106844,Structure Fire,10/29/2014,10/29/2014,10/29/2014 10:54:40 PM,10/29/2014 10:54:40 PM,10/29/2014 10:54:54 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Fire,10/29/2014 10:55:42 PM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",143024030-E01 +142763432,E31,14097095,Medical Incident,10/03/2014,10/03/2014,10/03/2014 07:45:18 PM,10/03/2014 07:45:58 PM,10/03/2014 07:46:19 PM,10/03/2014 07:47:23 PM,10/03/2014 07:50:08 PM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Code 2 Transport,10/03/2014 07:54:42 PM,FULTON ST/5TH AV,San Francisco,94122,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7737597510029, -122.462683796008)",142763432-E31 +152723126,D2,15104258,Structure Fire,09/29/2015,09/29/2015,09/29/2015 06:24:33 PM,09/29/2015 06:25:10 PM,09/29/2015 06:26:10 PM,09/29/2015 06:27:30 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Fire,09/29/2015 06:32:17 PM,900 Block of BAY ST,San Francisco,94109,B01,28,3134,3,3,3,false,Alarm,1,CHIEF,7,1,2,Russian Hill,"(37.8044682925217, -122.423012152019)",152723126-D2 +142920813,T03,14102912,Structure Fire,10/19/2014,10/18/2014,10/19/2014 07:11:32 AM,10/19/2014 07:11:32 AM,10/19/2014 07:12:30 AM,10/19/2014 07:14:04 AM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,No Merit,10/19/2014 07:19:18 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",142920813-T03 +151854161,77,15070811,Medical Incident,07/04/2015,07/04/2015,07/04/2015 11:05:15 PM,07/04/2015 11:05:15 PM,07/04/2015 11:07:09 PM,07/04/2015 11:07:30 PM,07/04/2015 11:23:04 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Against Medical Advice,07/05/2015 12:06:42 AM,JEFFERSON ST/MASON ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8084210588577, -122.414164435002)",151854161-77 +151431825,E08,15054384,Medical Incident,05/23/2015,05/23/2015,05/23/2015 01:31:55 PM,05/23/2015 01:34:55 PM,05/23/2015 01:35:29 PM,05/23/2015 01:36:36 PM,05/23/2015 01:39:46 PM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Code 2 Transport,05/23/2015 01:44:42 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",151431825-E08 +152191508,E19,15083364,Medical Incident,08/07/2015,08/07/2015,08/07/2015 12:05:22 PM,08/07/2015 12:08:24 PM,08/07/2015 12:08:34 PM,08/07/2015 12:08:56 PM,08/07/2015 12:17:20 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Code 3 Transport,08/07/2015 12:27:19 PM,LAKE MERCED BL/JOHN MUIR DR,San Francisco,,B08,19,8775,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,None,None,None,"(37.7080857299394, -122.485723865524)",152191508-E19 +143502957,B03,14125113,Alarms,12/16/2014,12/16/2014,12/16/2014 06:47:30 PM,12/16/2014 06:48:45 PM,12/16/2014 06:49:12 PM,12/16/2014 06:50:42 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/16/2014 06:53:56 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,CHIEF,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",143502957-B03 +152942277,E22,15113020,Medical Incident,10/21/2015,10/21/2015,10/21/2015 02:43:31 PM,10/21/2015 02:45:46 PM,10/21/2015 02:46:48 PM,10/21/2015 02:47:42 PM,10/21/2015 02:52:16 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Code 2 Transport,10/21/2015 03:10:05 PM,900 Block of LAWTON ST,San Francisco,94122,B08,22,7351,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7591659914101, -122.472912658983)",152942277-E22 +153150239,E02,15120894,Structure Fire,11/11/2015,11/10/2015,11/11/2015 02:47:47 AM,11/11/2015 02:49:03 AM,11/11/2015 02:49:26 AM,11/11/2015 02:51:49 AM,11/11/2015 02:51:57 AM,04/25/2016 01:07:16 PM,04/25/2016 01:07:16 PM,Fire,11/11/2015 02:59:54 AM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,2,1,3,North Beach,"(37.7979466732983, -122.406460643507)",153150239-E02 +160930974,KM09,16036771,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:17:02 AM,04/02/2016 09:18:48 AM,04/02/2016 09:19:54 AM,04/02/2016 09:20:44 AM,04/02/2016 09:22:40 AM,04/02/2016 09:46:36 AM,04/02/2016 10:01:15 AM,Code 2 Transport,04/02/2016 10:46:11 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",160930974-KM09 +141120161,78,14037772,Medical Incident,04/22/2014,04/22/2014,04/22/2014 11:25:20 AM,04/22/2014 11:27:05 AM,04/22/2014 11:27:29 AM,04/22/2014 11:27:35 AM,04/22/2014 11:34:59 AM,04/22/2014 11:55:38 AM,04/22/2014 12:22:30 PM,Code 2 Transport,04/22/2014 12:43:58 PM,1000 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,1557,,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",141120161-78 +142894009,E08,14102048,Medical Incident,10/16/2014,10/16/2014,10/16/2014 10:34:15 PM,10/16/2014 10:36:00 PM,10/16/2014 10:36:48 PM,10/16/2014 10:38:28 PM,10/16/2014 10:40:55 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Unable to Locate,10/16/2014 10:44:58 PM,0 Block of MISSION ROCK ST,San Francisco,94158,B03,8,2231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7731157627784, -122.38857804747)",142894009-E08 +141990618,T07,14068793,Alarms,07/18/2014,07/17/2014,07/18/2014 06:56:08 AM,07/18/2014 06:58:14 AM,07/18/2014 06:58:33 AM,07/18/2014 07:01:02 AM,07/18/2014 07:04:35 AM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Fire,07/18/2014 07:15:34 AM,700 Block of KANSAS ST,San Francisco,94107,B10,37,2522,3,3,3,false,Alarm,1,TRUCK,3,10,10,Potrero Hill,"(37.7602588003168, -122.403040580003)",141990618-T07 +142123047,85,14073618,Medical Incident,07/31/2014,07/31/2014,07/31/2014 07:11:36 PM,07/31/2014 07:11:55 PM,07/31/2014 07:22:25 PM,07/31/2014 07:22:39 PM,07/31/2014 07:27:57 PM,07/31/2014 07:43:32 PM,07/31/2014 07:55:29 PM,Code 2 Transport,07/31/2014 08:33:52 PM,2100 Block of BUSH ST,San Francisco,94115,B04,38,3512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870349820474, -122.432911990737)",142123047-85 +141210149,T18,14040874,Medical Incident,05/01/2014,05/01/2014,05/01/2014 11:09:59 AM,05/01/2014 11:10:20 AM,05/01/2014 11:11:06 AM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Code 2 Transport,05/01/2014 11:12:11 AM,2400 Block of 40TH AVE,SAN FRANCISCO,94116,B08,18,7636,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7411202245251, -122.498193339522)",141210149-T18 +143270552,AM20,14115778,Medical Incident,11/23/2014,11/22/2014,11/23/2014 03:18:22 AM,11/23/2014 03:21:21 AM,11/23/2014 03:21:38 AM,11/23/2014 03:22:16 AM,11/23/2014 03:25:35 AM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Medical Examiner,11/23/2014 04:53:43 AM,500 Block of EDDY ST,San Francisco,94102,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",143270552-AM20 +161001704,64,16039775,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:34:44 PM,04/09/2016 01:35:32 PM,04/09/2016 01:35:56 PM,04/09/2016 01:36:24 PM,04/09/2016 01:37:57 PM,04/09/2016 01:52:40 PM,04/09/2016 02:30:25 PM,Code 2 Transport,04/09/2016 03:15:26 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",161001704-64 +143423689,E31,14121727,Traffic Collision,12/08/2014,12/08/2014,12/08/2014 09:12:32 PM,12/08/2014 09:12:32 PM,12/08/2014 09:13:01 PM,12/08/2014 09:14:56 PM,12/08/2014 09:16:52 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 09:26:01 PM,17TH AV/FULTON ST,San Francisco,94118,B07,31,7156,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7729624089558, -122.475613626473)",143423689-E31 +152030346,E02,15077202,Medical Incident,07/22/2015,07/21/2015,07/22/2015 04:10:16 AM,07/22/2015 04:10:48 AM,07/22/2015 04:11:01 AM,07/22/2015 04:12:44 AM,07/22/2015 04:12:44 AM,04/25/2016 01:09:20 PM,04/25/2016 01:09:20 PM,Code 2 Transport,07/22/2015 04:23:58 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",152030346-E02 +151001259,E42,15037795,Odor (Strange / Unknown),04/10/2015,04/10/2015,04/10/2015 11:16:12 AM,04/10/2015 11:17:33 AM,04/10/2015 11:17:41 AM,04/10/2015 11:19:13 AM,04/10/2015 11:20:35 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Fire,04/10/2015 11:26:45 AM,400 Block of BURROWS ST,San Francisco,94134,B10,42,633,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.7278769871167, -122.407535487433)",151001259-E42 +143263881,E38,14115697,"Extrication / Entrapped (Machinery, Vehicle)",11/22/2014,11/22/2014,11/22/2014 10:36:44 PM,11/22/2014 10:39:00 PM,11/22/2014 10:41:38 PM,11/22/2014 10:41:38 PM,11/22/2014 10:43:16 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,No Merit,11/22/2014 10:44:38 PM,VAN NESS AV/CALIFORNIA ST,San Francisco,94109,B04,38,3155,2,E,3,false,Fire,1,ENGINE,1,4,2,Nob Hill,"(37.7903696585646, -122.422328957341)",143263881-E38 +160991681,KM05,16039293,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:03:32 PM,04/08/2016 01:03:32 PM,04/08/2016 01:03:49 PM,04/08/2016 01:04:43 PM,04/08/2016 01:35:43 PM,04/08/2016 01:54:38 PM,04/08/2016 02:20:19 PM,Code 2 Transport,04/08/2016 02:55:01 PM,PERSIA AV/LONDON ST,San Francisco,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7227637319069, -122.435208400094)",160991681-KM05 +153112847,E36,15119654,Medical Incident,11/07/2015,11/07/2015,11/07/2015 06:10:48 PM,11/07/2015 06:10:48 PM,11/07/2015 06:14:12 PM,11/07/2015 06:15:13 PM,11/07/2015 06:17:06 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Code 2 Transport,11/07/2015 06:21:14 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",153112847-E36 +141901099,KM09,14065782,Medical Incident,07/09/2014,07/09/2014,07/09/2014 10:07:58 AM,07/09/2014 10:07:58 AM,07/09/2014 10:07:58 AM,07/09/2014 10:07:58 AM,07/09/2014 10:07:58 AM,07/09/2014 10:30:02 AM,07/09/2014 10:38:49 AM,Code 2 Transport,07/09/2014 11:45:22 AM,19TH AV/ORTEGA ST,San Francisco,94116,B99,40,7421,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7523785986376, -122.476292239944)",141901099-KM09 +142572565,E18,14089867,Structure Fire,09/14/2014,09/14/2014,09/14/2014 06:41:34 PM,09/14/2014 06:42:28 PM,09/14/2014 06:42:52 PM,09/14/2014 06:44:11 PM,09/14/2014 06:45:22 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 06:54:36 PM,34TH AV/ORTEGA ST,San Francisco,94116,B08,18,7543,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7516620266117, -122.492417457857)",142572565-E18 +141333441,E17,14045489,Medical Incident,05/13/2014,05/13/2014,05/13/2014 09:30:41 PM,05/13/2014 09:30:41 PM,05/13/2014 09:32:38 PM,05/13/2014 09:33:30 PM,05/13/2014 09:34:48 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,Code 2 Transport,05/13/2014 09:55:50 PM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",141333441-E17 +160972023,88,16038424,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:03:50 PM,04/06/2016 01:03:50 PM,04/06/2016 01:04:10 PM,04/06/2016 01:04:18 PM,04/06/2016 01:12:00 PM,04/06/2016 01:38:47 PM,04/06/2016 01:46:38 PM,Code 2 Transport,04/06/2016 02:23:57 PM,1300 Block of OAKDALE AVE,San Francisco,94124,B10,17,653,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.732342352455, -122.386280381355)",160972023-88 +150583945,E01,15022362,Alarms,02/27/2015,02/27/2015,02/27/2015 11:06:15 PM,02/27/2015 11:06:44 PM,02/27/2015 11:06:56 PM,02/27/2015 11:08:20 PM,02/27/2015 11:09:21 PM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Fire,02/27/2015 11:09:30 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",150583945-E01 +143080741,E40,14108897,Medical Incident,11/04/2014,11/04/2014,11/04/2014 08:17:22 AM,11/04/2014 08:20:37 AM,11/04/2014 08:21:23 AM,11/04/2014 08:22:28 AM,11/04/2014 08:24:23 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 3 Transport,11/04/2014 08:33:37 AM,2400 Block of 19TH AVE,San Francisco,94116,B08,40,7415,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7421133651274, -122.475733220027)",143080741-E40 +141280081,T09,14043334,Structure Fire,05/08/2014,05/07/2014,05/08/2014 12:28:42 AM,05/08/2014 12:28:42 AM,05/08/2014 12:29:31 AM,05/08/2014 12:31:08 AM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Fire,05/08/2014 12:34:55 AM,3RD ST/CESAR CHAVEZ ST,San Francisco,94124,B10,25,2641,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.750263378729, -122.3875852715)",141280081-T09 +161002520,AM06,16039867,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:49:27 PM,04/09/2016 05:51:52 PM,04/09/2016 05:52:53 PM,04/09/2016 05:54:15 PM,04/09/2016 06:03:12 PM,04/09/2016 06:18:58 PM,04/09/2016 06:32:33 PM,Code 2 Transport,04/09/2016 06:59:53 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",161002520-AM06 +150972356,70,15036809,Medical Incident,04/07/2015,04/07/2015,04/07/2015 04:13:54 PM,04/07/2015 04:15:41 PM,04/07/2015 04:17:05 PM,04/07/2015 04:17:37 PM,04/07/2015 04:34:10 PM,04/07/2015 04:49:26 PM,04/07/2015 05:39:00 PM,Code 2 Transport,04/07/2015 06:20:35 PM,FOLSOM ST/5TH ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",150972356-70 +151822063,AM08,15069493,Traffic Collision,07/01/2015,07/01/2015,07/01/2015 02:05:08 PM,07/01/2015 02:05:08 PM,07/01/2015 02:05:47 PM,07/01/2015 02:06:47 PM,07/01/2015 02:08:26 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,No Merit,07/01/2015 02:10:26 PM,2ND ST/STILLMAN ST,San Francisco,94107,B03,8,2151,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7835035083625, -122.39415051609)",151822063-AM08 +152602019,KM12,15099394,Medical Incident,09/17/2015,09/17/2015,09/17/2015 01:36:59 PM,09/17/2015 01:36:59 PM,09/17/2015 01:48:28 PM,09/17/2015 01:48:59 PM,09/17/2015 01:58:05 PM,09/17/2015 02:08:20 PM,09/17/2015 02:23:42 PM,Code 2 Transport,09/17/2015 02:54:59 PM,JACKSON ST/SANSOME ST,San Francisco,94111,B01,13,1156,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7966261628877, -122.401853391642)",152602019-KM12 +151570484,E07,15059811,Medical Incident,06/06/2015,06/05/2015,06/06/2015 04:04:23 AM,06/06/2015 04:05:31 AM,06/06/2015 04:06:12 AM,06/06/2015 04:07:22 AM,06/06/2015 04:09:36 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Code 2 Transport,06/06/2015 04:19:36 AM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7578954435745, -122.417957286582)",151570484-E07 +142480125,85,14086281,Medical Incident,09/05/2014,09/04/2014,09/05/2014 12:49:32 AM,09/05/2014 12:52:00 AM,09/05/2014 12:52:38 AM,09/05/2014 12:53:04 AM,09/05/2014 12:56:33 AM,09/05/2014 01:27:38 AM,09/05/2014 01:43:12 AM,Code 2 Transport,09/05/2014 02:32:34 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",142480125-85 +142501969,RC2,14087213,Water Rescue,09/07/2014,09/07/2014,09/07/2014 02:27:09 PM,09/07/2014 02:28:36 PM,09/07/2014 02:30:28 PM,09/07/2014 02:32:01 PM,09/07/2014 02:37:32 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Fire,09/07/2014 02:57:50 PM,1000 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7234,3,E,3,true,Fire,1,RESCUE CAPTAIN,3,7,1,Lincoln Park,"(37.7859619989064, -122.496761041371)",142501969-RC2 +141401336,E05,14047965,Medical Incident,05/20/2014,05/20/2014,05/20/2014 11:22:48 AM,05/20/2014 11:23:06 AM,05/20/2014 11:23:18 AM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,Cancelled,05/20/2014 11:23:57 AM,1000 Block of TURK ST,San Francisco,94102,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",141401336-E05 +160953468,KM11,16037774,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:43:01 PM,04/04/2016 07:44:35 PM,04/04/2016 07:47:02 PM,04/04/2016 07:47:02 PM,04/04/2016 07:53:14 PM,04/04/2016 08:26:59 PM,04/04/2016 08:32:37 PM,Code 2 Transport,04/04/2016 08:52:34 PM,1000 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,Nob Hill,"(37.7918323962484, -122.411275585139)",160953468-KM11 +151840715,E42,15070150,Medical Incident,07/03/2015,07/02/2015,07/03/2015 07:36:31 AM,07/03/2015 07:38:07 AM,07/03/2015 07:38:44 AM,07/03/2015 07:39:15 AM,07/03/2015 07:45:22 AM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Code 2 Transport,07/03/2015 07:55:31 AM,1000 Block of WOOLSEY ST,San Francisco,94134,B09,42,6344,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.7227347726385, -122.411955017443)",151840715-E42 +142040893,B01,14070534,Structure Fire,07/23/2014,07/23/2014,07/23/2014 08:53:12 AM,07/23/2014 08:54:02 AM,07/23/2014 08:54:37 AM,07/23/2014 08:55:19 AM,07/23/2014 09:00:57 AM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Fire,07/23/2014 09:05:09 AM,0 Block of VAN NESS AVE,San Francisco,94102,B02,36,3211,3,3,3,false,Alarm,1,CHIEF,8,2,6,Tenderloin,"(37.7757784176924, -122.419234662317)",142040893-B01 +142592320,E01,14090537,Medical Incident,09/16/2014,09/16/2014,09/16/2014 03:40:31 PM,09/16/2014 03:44:43 PM,09/16/2014 03:45:47 PM,09/16/2014 03:47:33 PM,09/16/2014 03:50:17 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Code 2 Transport,09/16/2014 03:56:13 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7742496611166, -122.414204535023)",142592320-E01 +153222437,B04,15123927,Alarms,11/18/2015,11/18/2015,11/18/2015 02:38:12 PM,11/18/2015 02:39:30 PM,11/18/2015 02:39:59 PM,11/18/2015 02:40:46 PM,11/18/2015 02:42:17 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Fire,11/18/2015 02:43:27 PM,1900 Block of CALIFORNIA ST,San Francisco,94109,B04,38,3254,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7897931395754, -122.4264272862)",153222437-B04 +141723508,B03,14059503,Alarms,06/21/2014,06/21/2014,06/21/2014 10:14:59 PM,06/21/2014 10:16:30 PM,06/21/2014 10:16:34 PM,06/21/2014 10:17:24 PM,06/21/2014 10:20:55 PM,04/25/2016 01:16:38 PM,04/25/2016 01:16:38 PM,Fire,06/21/2014 10:39:18 PM,500 Block of HOWARD ST,San Francisco,94105,B03,1,2146,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7869461751428, -122.398143526066)",141723508-B03 +143481983,83,14124255,Medical Incident,12/14/2014,12/14/2014,12/14/2014 02:31:47 PM,12/14/2014 02:32:08 PM,12/14/2014 02:32:53 PM,12/14/2014 02:33:19 PM,12/14/2014 02:41:02 PM,12/14/2014 02:54:41 PM,12/14/2014 03:08:49 PM,Code 2 Transport,12/14/2014 03:57:08 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",143481983-83 +151362028,AM08,15051694,Medical Incident,05/16/2015,05/16/2015,05/16/2015 02:15:54 PM,05/16/2015 02:17:56 PM,05/16/2015 02:18:48 PM,05/16/2015 02:19:51 PM,05/16/2015 02:26:38 PM,05/16/2015 02:43:39 PM,05/16/2015 02:59:57 PM,Code 3 Transport,05/16/2015 03:45:43 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7628860418812, -122.419391026615)",151362028-AM08 +141373374,E18,14047086,Medical Incident,05/17/2014,05/17/2014,05/17/2014 09:26:41 PM,05/17/2014 09:27:42 PM,05/17/2014 09:28:15 PM,05/17/2014 09:28:51 PM,05/17/2014 09:32:50 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,No Merit,05/17/2014 09:43:53 PM,28TH AV/LINCOLN WY,San Francisco,94122,B08,22,7512,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7650189095413, -122.486902419801)",141373374-E18 +142092580,T03,14072544,Citizen Assist / Service Call,07/28/2014,07/28/2014,07/28/2014 06:05:37 PM,07/28/2014 06:07:10 PM,07/28/2014 06:07:44 PM,07/28/2014 06:09:20 PM,07/28/2014 06:11:26 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Fire,07/28/2014 06:17:02 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",142092580-T03 +160983231,AM16,16039069,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:42:08 PM,04/07/2016 06:43:04 PM,04/07/2016 06:43:25 PM,04/07/2016 06:44:04 PM,04/07/2016 06:47:58 PM,04/07/2016 07:01:10 PM,04/07/2016 07:13:01 PM,Code 2 Transport,04/07/2016 07:36:24 PM,0 Block of HEATHER AVE,San Francisco,94118,B05,10,4374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7849091591108, -122.452936292976)",160983231-AM16 +152010748,KM08,15076512,Medical Incident,07/20/2015,07/20/2015,07/20/2015 08:07:11 AM,07/20/2015 08:09:01 AM,07/20/2015 08:10:36 AM,07/20/2015 08:11:52 AM,07/20/2015 08:20:42 AM,07/20/2015 08:26:41 AM,04/25/2016 01:09:22 PM,Code 2 Transport,07/20/2015 08:52:12 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",152010748-KM08 +143062910,RC2,14108398,Medical Incident,11/02/2014,11/02/2014,11/02/2014 07:27:11 PM,11/02/2014 07:27:59 PM,11/02/2014 07:28:50 PM,11/02/2014 07:29:57 PM,11/02/2014 07:37:36 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/02/2014 07:51:50 PM,500 Block of 40TH AVE,San Francisco,94121,B07,34,7264,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,7,1,Outer Richmond,"(37.7783895132557, -122.500800304869)",143062910-RC2 +150971800,AM02,15036761,Medical Incident,04/07/2015,04/07/2015,04/07/2015 01:43:34 PM,04/07/2015 01:43:34 PM,04/07/2015 01:46:03 PM,04/07/2015 01:46:38 PM,04/07/2015 02:03:12 PM,04/07/2015 02:05:19 PM,04/07/2015 02:28:40 PM,Code 2 Transport,04/07/2015 02:59:44 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",150971800-AM02 +152853601,E37,15109594,Medical Incident,10/12/2015,10/12/2015,10/12/2015 08:26:25 PM,10/12/2015 08:27:50 PM,10/12/2015 08:28:21 PM,10/12/2015 08:30:05 PM,10/12/2015 08:32:50 PM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Patient Declined Transport,10/12/2015 08:47:14 PM,18TH ST/CONNECTICUT ST,San Francisco,94107,B03,37,2462,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,10,Potrero Hill,"(37.7625212031096, -122.397494999858)",152853601-E37 +142340142,55,14081179,Medical Incident,08/22/2014,08/21/2014,08/22/2014 01:01:57 AM,08/22/2014 01:06:55 AM,08/22/2014 01:15:43 AM,08/22/2014 01:17:03 AM,08/22/2014 01:28:24 AM,08/22/2014 01:41:23 AM,08/22/2014 02:02:59 AM,Code 2 Transport,08/22/2014 02:27:10 AM,MISSION ST/ACTON ST,San Francisco,94112,B09,33,6213,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",142340142-55 +151253757,E21,15047543,Alarms,05/05/2015,05/05/2015,05/05/2015 09:37:41 PM,05/05/2015 09:38:07 PM,05/05/2015 09:38:40 PM,05/05/2015 09:39:29 PM,05/05/2015 09:42:05 PM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Fire,05/05/2015 09:46:01 PM,700 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7715296499469, -122.434542909739)",151253757-E21 +151171517,E01,15044199,Alarms,04/27/2015,04/27/2015,04/27/2015 11:44:07 AM,04/27/2015 11:44:53 AM,04/27/2015 11:45:24 AM,04/27/2015 11:45:56 AM,04/27/2015 11:50:23 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 11:50:50 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",151171517-E01 +160983624,79,16039104,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:50:10 PM,04/07/2016 08:51:20 PM,04/07/2016 08:51:31 PM,04/07/2016 08:51:43 PM,04/07/2016 08:56:15 PM,04/07/2016 09:09:29 PM,04/07/2016 09:25:05 PM,Code 2 Transport,04/07/2016 09:54:48 PM,3900 Block of 24TH ST,San Francisco,94114,B06,11,5522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",160983624-79 +160993112,58,16039427,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:44:26 PM,04/08/2016 06:47:27 PM,04/08/2016 06:48:02 PM,04/08/2016 06:53:48 PM,04/08/2016 06:53:48 PM,04/08/2016 06:54:47 PM,04/08/2016 07:06:39 PM,Code 3 Transport,04/08/2016 07:27:22 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,2,9,Mission,"(37.7632358693888, -122.419563499673)",160993112-58 +141320827,T18,14044860,Structure Fire,05/12/2014,05/12/2014,05/12/2014 09:07:25 AM,05/12/2014 09:08:26 AM,05/12/2014 09:09:20 AM,05/12/2014 09:10:38 AM,05/12/2014 09:12:37 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Fire,05/12/2014 09:27:15 AM,1700 Block of 34TH AVE,San Francisco,94122,B08,18,7562,3,3,3,false,Fire,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7544622718852, -122.492680703899)",141320827-T18 +151710921,66,15065269,Medical Incident,06/20/2015,06/20/2015,06/20/2015 09:00:33 AM,06/20/2015 09:00:33 AM,06/20/2015 09:00:53 AM,06/20/2015 09:01:34 AM,06/20/2015 09:05:01 AM,06/20/2015 09:17:47 AM,06/20/2015 09:37:53 AM,Code 2 Transport,06/20/2015 10:13:57 AM,GLORIA CT/GENEVA AV,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7172581733719, -122.441622839514)",151710921-66 +151333816,E23,15050630,Citizen Assist / Service Call,05/13/2015,05/13/2015,05/13/2015 09:00:15 PM,05/13/2015 09:01:05 PM,05/13/2015 09:01:57 PM,05/13/2015 09:03:04 PM,05/13/2015 09:04:55 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Fire,05/13/2015 09:16:21 PM,1500 Block of 44TH AVE,San Francisco,94122,B08,23,7652,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7577173938026, -122.503657105125)",151333816-E23 +161003057,KM06,16039928,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:42:53 PM,04/09/2016 08:42:53 PM,04/09/2016 08:43:34 PM,04/09/2016 08:44:45 PM,04/09/2016 08:53:25 PM,04/09/2016 09:05:49 PM,04/09/2016 09:19:24 PM,Code 2 Transport,04/09/2016 09:53:09 PM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",161003057-KM06 +151483872,T09,15056515,Medical Incident,05/28/2015,05/28/2015,05/28/2015 11:17:52 PM,05/28/2015 11:17:52 PM,05/28/2015 11:18:16 PM,05/28/2015 11:19:52 PM,05/28/2015 11:22:28 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Code 3 Transport,05/28/2015 11:25:43 PM,24TH ST/YORK ST,San Francisco,94110,B06,9,5531,A,E,3,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",151483872-T09 +141851562,T03,14064045,Alarms,07/04/2014,07/04/2014,07/04/2014 02:08:00 PM,07/04/2014 02:10:44 PM,07/04/2014 02:11:12 PM,07/04/2014 02:12:24 PM,07/04/2014 02:15:11 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Fire,07/04/2014 02:19:37 PM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,false,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",141851562-T03 +152650402,E37,15101357,Smoke Investigation (Outside),09/22/2015,09/21/2015,09/22/2015 04:41:32 AM,09/22/2015 04:43:50 AM,09/22/2015 04:44:26 AM,09/22/2015 04:46:22 AM,09/22/2015 04:47:19 AM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/22/2015 04:51:04 AM,1200 Block of RHODE ISLAND ST,San Francisco,94107,B10,37,2556,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7539279404747, -122.401597623185)",152650402-E37 +150193346,B02,15007652,Administrative,01/19/2015,01/19/2015,01/19/2015 09:06:49 PM,01/19/2015 09:06:57 PM,01/19/2015 09:07:16 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Fire,01/19/2015 09:08:46 PM,100 Block of OAK ST,San Francisco,94102,B02,36,3266,3,3,3,false,,1,CHIEF,1,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",150193346-B02 +150220198,B03,15008433,Alarms,01/22/2015,01/21/2015,01/22/2015 02:11:13 AM,01/22/2015 02:13:01 AM,01/22/2015 02:13:12 AM,01/22/2015 02:16:11 AM,01/22/2015 02:20:21 AM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Fire,01/22/2015 02:20:35 AM,900 Block of DE HARO ST,San Francisco,94107,B10,37,2511,3,3,3,false,Alarm,1,CHIEF,2,10,10,Potrero Hill,"(37.7589370511593, -122.400966701986)",150220198-B03 +153070379,KM03,15117839,Medical Incident,11/03/2015,11/02/2015,11/03/2015 04:59:44 AM,11/03/2015 05:05:55 AM,11/03/2015 05:06:55 AM,11/03/2015 05:07:38 AM,11/03/2015 05:17:37 AM,11/03/2015 05:33:16 AM,11/03/2015 06:01:47 AM,Code 2 Transport,11/03/2015 06:46:13 AM,400 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.779915446382, -122.507564306305)",153070379-KM03 +150780347,89,15029763,Medical Incident,03/19/2015,03/18/2015,03/19/2015 03:02:23 AM,03/19/2015 03:05:14 AM,03/19/2015 03:05:26 AM,03/19/2015 03:05:34 AM,03/19/2015 03:11:12 AM,03/19/2015 03:40:18 AM,03/19/2015 03:52:02 AM,Code 2 Transport,03/19/2015 04:14:18 AM,300 Block of 25TH AVE,San Francisco,94121,B07,14,7214,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7829570675264, -122.484873511385)",150780347-89 +153182077,E28,15122298,Medical Incident,11/14/2015,11/14/2015,11/14/2015 02:01:35 PM,11/14/2015 02:02:28 PM,11/14/2015 02:03:43 PM,11/14/2015 02:04:45 PM,11/14/2015 02:07:31 PM,04/25/2016 01:07:12 PM,04/25/2016 01:07:12 PM,Code 2 Transport,11/14/2015 02:35:35 PM,900 Block of NORTH POINT ST,San Francisco,94109,B01,28,1623,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",153182077-E28 +151301608,E41,15049343,Medical Incident,05/10/2015,05/10/2015,05/10/2015 01:28:43 PM,05/10/2015 01:28:43 PM,05/10/2015 01:29:10 PM,05/10/2015 01:30:33 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Cancelled,05/10/2015 01:34:20 PM,POLK ST/CALIFORNIA ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7905782582579, -122.420687383115)",151301608-E41 +150260328,AM20,15009874,Medical Incident,01/26/2015,01/25/2015,01/26/2015 03:51:56 AM,01/26/2015 03:54:43 AM,01/26/2015 03:55:10 AM,01/26/2015 03:55:40 AM,01/26/2015 04:03:01 AM,01/26/2015 04:10:54 AM,01/26/2015 04:32:00 AM,Code 2 Transport,01/26/2015 05:14:43 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",150260328-AM20 +142991548,T09,14105572,Medical Incident,10/26/2014,10/26/2014,10/26/2014 12:08:50 PM,10/26/2014 12:08:50 PM,10/26/2014 12:09:28 PM,10/26/2014 12:10:47 PM,10/26/2014 12:12:47 PM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,Code 3 Transport,10/26/2014 12:18:33 PM,25TH ST/UTAH ST,San Francisco,94110,B10,9,2624,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,10,10,Mission,"(37.7517869490269, -122.405207702984)",142991548-T09 +153192861,E06,15122770,Medical Incident,11/15/2015,11/15/2015,11/15/2015 06:05:45 PM,11/15/2015 06:05:45 PM,11/15/2015 06:06:25 PM,11/15/2015 06:08:18 PM,11/15/2015 06:10:55 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Code 2 Transport,11/15/2015 06:16:03 PM,200 Block of VALENCIA ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7684427416002, -122.422297658234)",153192861-E06 +141160283,RC3,14039245,Medical Incident,04/26/2014,04/26/2014,04/26/2014 05:58:44 PM,04/26/2014 06:00:47 PM,04/26/2014 06:01:34 PM,04/26/2014 06:03:09 PM,04/26/2014 06:09:11 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Code 2 Transport,04/26/2014 06:25:31 PM,1200 Block of HOLLISTER AVE,SAN FRANCISCO,94124,B10,44,6544,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7212941468458, -122.395082655815)",141160283-RC3 +143192030,E29,14113001,Medical Incident,11/15/2014,11/15/2014,11/15/2014 02:18:00 PM,11/15/2014 02:18:38 PM,11/15/2014 02:18:59 PM,11/15/2014 02:19:38 PM,11/15/2014 02:22:27 PM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Code 2 Transport,11/15/2014 02:26:18 PM,400 Block of 10TH ST,San Francisco,94103,B02,29,2344,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7709248562482, -122.410555957263)",143192030-E29 +160982277,65,16038963,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:31:30 PM,04/07/2016 02:33:18 PM,04/07/2016 02:33:58 PM,04/07/2016 02:34:05 PM,04/07/2016 02:37:46 PM,04/07/2016 02:51:04 PM,04/07/2016 03:01:01 PM,Code 2 Transport,04/07/2016 03:56:27 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",160982277-65 +142500748,67,14087092,Medical Incident,09/07/2014,09/06/2014,09/07/2014 06:24:17 AM,09/07/2014 06:25:24 AM,09/07/2014 06:27:13 AM,09/07/2014 06:27:20 AM,09/07/2014 06:33:48 AM,09/07/2014 06:52:11 AM,09/07/2014 07:21:01 AM,Code 2 Transport,09/07/2014 07:44:57 AM,BRANNAN ST/6TH ST,San Francisco,94103,B03,8,2256,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748087750185, -122.400981567592)",142500748-67 +160980285,KM03,16038754,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:34:22 AM,04/07/2016 02:35:23 AM,04/07/2016 02:35:45 AM,04/07/2016 02:36:48 AM,04/07/2016 02:40:24 AM,04/07/2016 03:08:36 AM,04/07/2016 03:27:26 AM,Code 2 Transport,04/07/2016 04:12:16 AM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",160980285-KM03 +143080966,E03,14108916,Medical Incident,11/04/2014,11/04/2014,11/04/2014 09:25:07 AM,11/04/2014 09:28:30 AM,11/04/2014 09:29:02 AM,11/04/2014 09:31:37 AM,11/04/2014 09:35:49 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 09:44:03 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",143080966-E03 +142551244,E36,14088976,Medical Incident,09/12/2014,09/12/2014,09/12/2014 10:32:08 AM,09/12/2014 10:34:38 AM,09/12/2014 10:36:44 AM,09/12/2014 10:36:44 AM,09/12/2014 10:40:23 AM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Patient Declined Transport,09/12/2014 10:43:03 AM,18TH ST/CHURCH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",142551244-E36 +153341908,56,15128428,Medical Incident,11/30/2015,11/30/2015,11/30/2015 02:06:51 PM,11/30/2015 02:07:29 PM,11/30/2015 02:08:08 PM,11/30/2015 02:09:09 PM,11/30/2015 02:15:10 PM,11/30/2015 02:40:07 PM,11/30/2015 02:52:04 PM,Code 2 Transport,11/30/2015 04:01:18 PM,1400 Block of STEINER ST,San Francisco,94115,B04,5,3623,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7826256736324, -122.434187755055)",153341908-56 +152460871,T01,15093723,Medical Incident,09/03/2015,09/03/2015,09/03/2015 08:35:29 AM,09/03/2015 08:39:06 AM,09/03/2015 08:40:21 AM,09/03/2015 08:43:33 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Patient Declined Transport,09/03/2015 08:45:22 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,E,3,false,Potentially Life-Threatening,1,TRUCK,4,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",152460871-T01 +161001608,75,16039762,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:00:25 PM,04/09/2016 01:03:27 PM,04/09/2016 01:04:02 PM,04/09/2016 01:04:10 PM,04/09/2016 01:28:33 PM,04/09/2016 01:47:15 PM,04/09/2016 01:56:28 PM,Code 2 Transport,04/09/2016 02:22:24 PM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",161001608-75 +152992896,E51,15114867,Outside Fire,10/26/2015,10/26/2015,10/26/2015 05:19:13 PM,10/26/2015 05:21:59 PM,10/26/2015 05:25:38 PM,10/26/2015 05:27:38 PM,10/26/2015 05:31:32 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Fire,10/26/2015 05:40:11 PM,300 Block of ARGUELLO BL,Presidio,94118,B99,51,4631,3,3,3,true,Fire,1,ENGINE,1,7,2,Presidio Heights,"(37.7853734299746, -122.459087140011)",152992896-E51 +141611121,E03,14055456,Medical Incident,06/10/2014,06/10/2014,06/10/2014 10:24:17 AM,06/10/2014 10:25:39 AM,06/10/2014 10:26:00 AM,06/10/2014 10:26:22 AM,06/10/2014 10:28:26 AM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,No Merit,06/10/2014 10:31:02 AM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7855449803674, -122.415357786653)",141611121-E03 +152822193,T03,15108286,Medical Incident,10/09/2015,10/09/2015,10/09/2015 02:53:26 PM,10/09/2015 02:56:28 PM,10/09/2015 02:57:23 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Code 2 Transport,10/09/2015 02:59:14 PM,400 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1544,3,3,3,false,Non Life-threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",152822193-T03 +142031347,T01,14070210,Alarms,07/22/2014,07/22/2014,07/22/2014 11:26:49 AM,07/22/2014 11:28:25 AM,07/22/2014 11:28:29 AM,07/22/2014 11:30:31 AM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Fire,07/22/2014 11:30:41 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Alarm,1,TRUCK,4,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",142031347-T01 +152603454,E36,15099524,Medical Incident,09/17/2015,09/17/2015,09/17/2015 07:33:46 PM,09/17/2015 07:38:23 PM,09/17/2015 07:39:51 PM,09/17/2015 07:41:10 PM,09/17/2015 07:46:01 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/17/2015 07:52:22 PM,600 Block of HAYES ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7764132200225, -122.427099517601)",152603454-E36 +150790013,T15,15030113,Structure Fire,03/20/2015,03/19/2015,03/20/2015 12:01:07 AM,03/20/2015 12:04:49 AM,03/20/2015 12:04:58 AM,03/20/2015 12:06:21 AM,03/20/2015 12:09:05 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 03:02:42 AM,MADRID ST/BRAZIL AV,San Francisco,94112,B09,43,6133,3,3,3,false,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.7231672404647, -122.43163313445)",150790013-T15 +160941506,87,16037240,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:24:48 AM,04/03/2016 11:26:19 AM,04/03/2016 11:26:53 AM,04/03/2016 11:27:01 AM,04/03/2016 11:33:55 AM,04/03/2016 12:10:11 PM,04/03/2016 12:32:35 PM,Code 2 Transport,04/03/2016 01:15:36 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",160941506-87 +152640384,E11,15100934,Medical Incident,09/21/2015,09/20/2015,09/21/2015 03:46:19 AM,09/21/2015 03:46:41 AM,09/21/2015 03:47:31 AM,09/21/2015 03:49:23 AM,09/21/2015 03:52:44 AM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Code 2 Transport,09/21/2015 04:02:25 AM,3300 Block of FOLSOM ST,San Francisco,94110,B06,11,5663,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7446537800097, -122.413259224164)",152640384-E11 +141812537,T02,14062763,Structure Fire,06/30/2014,06/30/2014,06/30/2014 05:06:20 PM,06/30/2014 05:06:20 PM,06/30/2014 05:07:01 PM,06/30/2014 05:08:14 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 05:09:35 PM,GRANT AV/BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",141812537-T02 +150913281,B02,15034721,Alarms,04/01/2015,04/01/2015,04/01/2015 07:25:24 PM,04/01/2015 07:28:00 PM,04/01/2015 07:28:20 PM,04/01/2015 07:31:35 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/01/2015 07:40:45 PM,700 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.779520032299, -122.425195823386)",150913281-B02 +151072414,83,15040551,Medical Incident,04/17/2015,04/17/2015,04/17/2015 03:18:25 PM,04/17/2015 03:19:36 PM,04/17/2015 03:20:05 PM,04/17/2015 03:20:19 PM,04/17/2015 03:25:17 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Patient Declined Transport,04/17/2015 03:47:55 PM,0 Block of BEALE ST,San Francisco,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7918179006358, -122.396549353378)",151072414-83 +153160508,82,15121300,Traffic Collision,11/12/2015,11/11/2015,11/12/2015 06:48:57 AM,11/12/2015 06:48:57 AM,11/12/2015 06:49:53 AM,11/12/2015 06:50:04 AM,11/12/2015 06:59:17 AM,11/12/2015 07:09:39 AM,11/12/2015 07:16:53 AM,Code 3 Transport,11/12/2015 08:07:14 AM,OFARRELL ST/HYDE ST,San Francisco,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7853759730503, -122.416259705763)",153160508-82 +141920475,E31,14066443,Traffic Collision,07/11/2014,07/10/2014,07/11/2014 04:45:34 AM,07/11/2014 04:46:16 AM,07/11/2014 04:47:05 AM,07/11/2014 04:48:40 AM,07/11/2014 04:50:02 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Other,07/11/2014 05:20:40 AM,1100 Block of BALBOA ST,San Francisco,94118,B07,31,7145,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7769718505659, -122.470973447149)",141920475-E31 +161000088,53,16039561,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:31:54 AM,04/09/2016 12:32:35 AM,04/09/2016 12:32:46 AM,04/09/2016 12:33:01 AM,04/09/2016 12:35:35 AM,04/09/2016 12:50:50 AM,04/09/2016 01:27:10 AM,Code 2 Transport,04/09/2016 01:47:34 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",161000088-53 +152652434,63,15101519,Medical Incident,09/22/2015,09/22/2015,09/22/2015 03:35:13 PM,09/22/2015 03:36:42 PM,09/22/2015 03:36:55 PM,09/22/2015 03:37:36 PM,09/22/2015 03:41:23 PM,09/22/2015 03:48:27 PM,09/22/2015 04:00:52 PM,Code 2 Transport,09/22/2015 04:29:48 PM,2500 Block of SAN JOSE AVE,San Francisco,94112,B09,33,8325,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7166727233715, -122.450032664131)",152652434-63 +160972134,86,16038437,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:27:36 PM,04/06/2016 01:28:47 PM,04/06/2016 01:33:40 PM,04/06/2016 01:33:49 PM,04/06/2016 02:02:09 PM,04/06/2016 02:16:59 PM,04/06/2016 02:43:50 PM,Code 3 Transport,04/06/2016 03:42:55 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160972134-86 +151780228,E21,15067602,Medical Incident,06/27/2015,06/26/2015,06/27/2015 01:18:39 AM,06/27/2015 01:19:34 AM,06/27/2015 01:19:52 AM,06/27/2015 01:21:52 AM,06/27/2015 01:23:36 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/27/2015 01:27:22 AM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,E,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",151780228-E21 +152460407,E03,15093688,Medical Incident,09/03/2015,09/02/2015,09/03/2015 04:45:08 AM,09/03/2015 04:45:08 AM,09/03/2015 04:47:23 AM,09/03/2015 04:48:34 AM,09/03/2015 04:50:26 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Other,09/03/2015 04:50:41 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7813958668825, -122.417987996268)",152460407-E03 +142432044,82,14084683,Water Rescue,08/31/2014,08/31/2014,08/31/2014 03:18:23 PM,08/31/2014 03:19:20 PM,08/31/2014 03:23:20 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Fire,08/31/2014 03:27:46 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,true,Fire,1,MEDIC,12,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",142432044-82 +150223597,AM24,15008747,Medical Incident,01/22/2015,01/22/2015,01/22/2015 10:31:56 PM,01/22/2015 10:34:21 PM,01/22/2015 10:34:44 PM,01/22/2015 10:35:30 PM,01/22/2015 10:41:08 PM,01/22/2015 10:47:18 PM,01/22/2015 11:15:29 PM,Code 2 Transport,01/22/2015 11:38:45 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",150223597-AM24 +152772967,T03,15106338,Structure Fire,10/04/2015,10/04/2015,10/04/2015 06:20:42 PM,10/04/2015 06:22:25 PM,10/04/2015 06:22:42 PM,10/04/2015 06:23:31 PM,10/04/2015 06:25:36 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Fire,10/04/2015 06:32:04 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",152772967-T03 +161000935,85,16039677,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:05:59 AM,04/09/2016 09:05:59 AM,04/09/2016 09:07:35 AM,04/09/2016 09:07:46 AM,04/09/2016 09:31:50 AM,04/09/2016 09:50:52 AM,04/09/2016 10:23:06 AM,Code 2 Transport,04/09/2016 11:05:52 AM,800 Block of GREAT HWY,San Francisco,94121,B07,34,7316,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7721351097841, -122.511311019216)",161000935-85 +150611217,E03,15023220,Medical Incident,03/02/2015,03/02/2015,03/02/2015 10:44:22 AM,03/02/2015 10:44:22 AM,03/02/2015 10:46:03 AM,03/02/2015 10:46:03 AM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Unable to Locate,03/02/2015 10:49:27 AM,TURK ST/MASON ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,South of Market,"(37.7832878520296, -122.408952160052)",150611217-E03 +142032424,E32,14070311,Alarms,07/22/2014,07/22/2014,07/22/2014 04:45:06 PM,07/22/2014 04:47:22 PM,07/22/2014 04:48:07 PM,07/22/2014 04:48:58 PM,07/22/2014 04:54:52 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Fire,07/22/2014 05:13:17 PM,400 Block of FRANCONIA ST,San Francisco,94110,B10,32,5722,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7427331584639, -122.408199890691)",142032424-E32 +152083177,E43,15079377,Medical Incident,07/27/2015,07/27/2015,07/27/2015 06:40:25 PM,07/27/2015 06:43:59 PM,07/27/2015 06:44:19 PM,07/27/2015 06:46:41 PM,07/27/2015 06:58:28 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/27/2015 07:06:46 PM,0 Block of DEL MONTE ST,San Francisco,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.715912649699, -122.443539419785)",152083177-E43 +152562730,E24,15097997,Medical Incident,09/13/2015,09/13/2015,09/13/2015 05:53:48 PM,09/13/2015 05:54:22 PM,09/13/2015 05:54:40 PM,09/13/2015 05:55:36 PM,09/13/2015 05:57:14 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,Code 2 Transport,09/13/2015 06:08:38 PM,300 Block of HOFFMAN AVE,San Francisco,94114,B06,24,5517,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7512957078396, -122.440724224321)",152562730-E24 +142163437,84,14075064,Medical Incident,08/04/2014,08/04/2014,08/04/2014 09:47:42 PM,08/04/2014 09:48:20 PM,08/04/2014 09:49:02 PM,08/04/2014 09:49:08 PM,08/04/2014 10:03:25 PM,08/04/2014 10:26:01 PM,08/04/2014 10:51:41 PM,Code 2 Transport,08/04/2014 11:18:01 PM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",142163437-84 +160933993,KM03,16037086,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:44:01 PM,04/02/2016 11:47:09 PM,04/02/2016 11:47:13 PM,04/02/2016 11:47:37 PM,04/02/2016 11:52:17 PM,04/03/2016 12:07:56 AM,04/03/2016 12:22:53 AM,Code 3 Transport,04/03/2016 01:01:06 AM,300 Block of 4TH AVE,San Francisco,94118,B07,31,7116,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7820778169902, -122.462139928652)",160933993-KM03 +151361007,KM08,15051612,Medical Incident,05/16/2015,05/16/2015,05/16/2015 09:12:43 AM,05/16/2015 09:13:47 AM,05/16/2015 09:14:38 AM,05/16/2015 09:15:21 AM,05/16/2015 09:27:51 AM,05/16/2015 09:45:20 AM,05/16/2015 09:53:36 AM,Code 2 Transport,05/16/2015 10:12:34 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",151361007-KM08 +152542514,E03,15097193,Traffic Collision,09/11/2015,09/11/2015,09/11/2015 04:15:25 PM,09/11/2015 04:15:25 PM,09/11/2015 04:15:45 PM,09/11/2015 04:16:23 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Code 2 Transport,09/11/2015 04:20:00 PM,1600 Block of HYDE ST,San Francisco,94109,B01,41,1565,2,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Russian Hill,"(37.79559861643, -122.418250699774)",152542514-E03 +151082875,55,15041015,Medical Incident,04/18/2015,04/18/2015,04/18/2015 06:44:55 PM,04/18/2015 06:48:11 PM,04/18/2015 06:48:27 PM,04/18/2015 06:48:35 PM,04/18/2015 07:04:07 PM,04/18/2015 07:47:08 PM,04/18/2015 07:47:17 PM,Code 2 Transport,04/18/2015 08:21:00 PM,BROADWAY/GRANT AV,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",151082875-55 +152811475,E19,15107794,Structure Fire,10/08/2015,10/08/2015,10/08/2015 11:25:47 AM,10/08/2015 11:25:47 AM,10/08/2015 11:26:18 AM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Fire,10/08/2015 11:28:35 AM,EUCALYPTUS DR/SYLVAN DR,San Francisco,94132,B08,19,8743,3,3,3,true,Alarm,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",152811475-E19 +142950573,AM02,14103932,Traffic Collision,10/22/2014,10/21/2014,10/22/2014 07:17:31 AM,10/22/2014 07:20:52 AM,10/22/2014 07:21:05 AM,10/22/2014 07:21:47 AM,10/22/2014 07:33:18 AM,10/22/2014 07:53:02 AM,10/22/2014 08:17:11 AM,Code 2 Transport,10/22/2014 08:44:45 AM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",142950573-AM02 +151543194,E06,15058813,Medical Incident,06/03/2015,06/03/2015,06/03/2015 06:51:04 PM,06/03/2015 06:52:10 PM,06/03/2015 06:52:47 PM,06/03/2015 06:54:07 PM,06/03/2015 06:55:53 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Code 2 Transport,06/03/2015 07:04:55 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",151543194-E06 +151230412,56,15046552,,05/03/2015,05/02/2015,05/03/2015 02:57:00 AM,05/03/2015 02:57:00 AM,05/03/2015 02:58:00 AM,05/03/2015 02:58:00 AM,05/03/2015 03:11:00 AM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,SFPD,05/03/2015 03:14:00 AM,800 Block of LYON ST,San Francisco,94115,B05,21,4345,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7785548965034, -122.44367133871)",151230412-56 +141150027,82,14038686,Medical Incident,04/25/2014,04/24/2014,04/25/2014 03:01:23 AM,04/25/2014 03:02:40 AM,04/25/2014 03:02:59 AM,04/25/2014 03:03:11 AM,04/25/2014 03:20:38 AM,04/25/2014 03:53:01 AM,04/25/2014 04:10:09 AM,Code 2 Transport,04/25/2014 05:03:50 AM,500 Block of BEACH ST,SAN FRANCISCO,94133,B01,28,1521,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8069135411381, -122.418073383892)",141150027-82 +160933822,57,16037071,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:57:08 PM,04/02/2016 10:57:29 PM,04/02/2016 10:57:51 PM,04/02/2016 10:58:16 PM,04/02/2016 11:02:15 PM,04/02/2016 11:20:14 PM,04/02/2016 11:36:00 PM,Code 2 Transport,04/03/2016 12:15:27 AM,5000 Block of MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7168806522557, -122.440777706649)",160933822-57 +160981549,59,16038887,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:25:52 AM,04/07/2016 11:26:30 AM,04/07/2016 11:28:33 AM,04/07/2016 11:28:52 AM,04/07/2016 11:38:20 AM,04/07/2016 11:57:23 AM,04/07/2016 12:06:34 PM,Code 2 Transport,04/07/2016 12:32:00 PM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",160981549-59 +160971814,64,16038407,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:18:19 PM,04/06/2016 12:19:08 PM,04/06/2016 12:19:41 PM,04/06/2016 12:20:57 PM,04/06/2016 12:28:31 PM,04/06/2016 12:56:35 PM,04/06/2016 01:08:14 PM,Code 2 Transport,04/06/2016 01:46:29 PM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,5,1,Lone Mountain/USF,"(37.7744969083055, -122.452976375626)",160971814-64 +151392954,E15,15052891,Structure Fire,05/19/2015,05/19/2015,05/19/2015 06:28:00 PM,05/19/2015 06:28:00 PM,05/19/2015 06:28:42 PM,05/19/2015 06:29:33 PM,05/19/2015 06:30:21 PM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/19/2015 06:31:30 PM,OCEAN AV/BRIGHTON AV,San Francisco,94112,B09,15,8472,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7236723652343, -122.455135658662)",151392954-E15 +152752431,64,15105404,Traffic Collision,10/02/2015,10/02/2015,10/02/2015 03:49:47 PM,10/02/2015 03:49:47 PM,10/02/2015 03:50:33 PM,10/02/2015 03:50:42 PM,10/02/2015 03:52:37 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,No Merit,10/02/2015 03:57:28 PM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774574199485, -122.413157691577)",152752431-64 +160942041,KM12,16037280,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:09:43 PM,04/03/2016 02:09:43 PM,04/03/2016 02:10:46 PM,04/03/2016 02:11:05 PM,04/03/2016 02:23:33 PM,04/03/2016 02:37:41 PM,04/03/2016 02:55:43 PM,Code 3 Transport,04/03/2016 03:32:41 PM,7TH ST/MISSION ST,San Francisco,94103,B02,1,2315,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160942041-KM12 +142260066,E01,14078338,Medical Incident,08/14/2014,08/13/2014,08/14/2014 12:25:50 AM,08/14/2014 12:26:44 AM,08/14/2014 12:27:07 AM,08/14/2014 12:28:24 AM,08/14/2014 12:30:25 AM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Code 2 Transport,08/14/2014 12:43:02 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142260066-E01 +151241572,KM14,15047007,Medical Incident,05/04/2015,05/04/2015,05/04/2015 12:22:28 PM,05/04/2015 12:24:06 PM,05/04/2015 12:25:03 PM,05/04/2015 12:25:37 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Patient Declined Transport,05/04/2015 12:33:31 PM,1500 Block of SHAFTER AVE,San Francisco,94124,B10,17,6547,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7304640154692, -122.38983115909)",151241572-KM14 +153390190,68,15130304,Medical Incident,12/05/2015,12/04/2015,12/05/2015 01:05:21 AM,12/05/2015 01:05:21 AM,12/05/2015 01:05:36 AM,12/05/2015 01:05:43 AM,12/05/2015 01:20:16 AM,12/05/2015 01:27:43 AM,12/05/2015 01:44:27 AM,Code 2 Transport,12/05/2015 02:27:50 AM,POLK ST/FERN ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",153390190-68 +152172982,RC1,15082707,Medical Incident,08/05/2015,08/05/2015,08/05/2015 05:37:18 PM,08/05/2015 05:38:26 PM,08/05/2015 05:39:54 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 05:43:00 PM,6TH ST/MINNA ST,San Francisco,94103,B03,1,2251,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,South of Market,"(37.7805353840251, -122.40816079453)",152172982-RC1 +143081606,77,14108982,Medical Incident,11/04/2014,11/04/2014,11/04/2014 12:22:06 PM,11/04/2014 12:23:03 PM,11/04/2014 12:23:41 PM,11/04/2014 12:23:51 PM,11/04/2014 12:37:39 PM,11/04/2014 12:37:43 PM,11/04/2014 01:08:43 PM,Code 2 Transport,11/04/2014 01:44:11 PM,1300 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",143081606-77 +141353989,88,14046355,Medical Incident,05/15/2014,05/15/2014,05/15/2014 10:30:33 PM,05/15/2014 10:33:08 PM,05/15/2014 10:34:15 PM,05/15/2014 10:34:43 PM,05/15/2014 10:48:43 PM,05/15/2014 10:57:56 PM,05/15/2014 11:20:24 PM,Code 2 Transport,05/16/2014 12:27:49 AM,100 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843212349417, -122.38904057367)",141353989-88 +142240941,KM02,14077648,Medical Incident,08/12/2014,08/12/2014,08/12/2014 09:20:47 AM,08/12/2014 09:20:47 AM,08/12/2014 09:21:36 AM,08/12/2014 09:23:59 AM,08/12/2014 09:33:19 AM,08/12/2014 09:51:35 AM,08/12/2014 10:10:25 AM,Code 2 Transport,08/12/2014 10:28:30 AM,800 Block of PINE ST,San Francisco,94108,B01,41,1413,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7909306094565, -122.409788680324)",142240941-KM02 +142242883,RS1,14077852,Structure Fire,08/12/2014,08/12/2014,08/12/2014 06:41:31 PM,08/12/2014 06:42:09 PM,08/12/2014 06:43:01 PM,08/12/2014 06:43:20 PM,08/12/2014 06:49:30 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Fire,08/12/2014 06:54:27 PM,1800 Block of WASHINGTON ST,San Francisco,94109,B04,38,3226,3,3,3,false,Alarm,1,RESCUE SQUAD,9,4,2,Pacific Heights,"(37.7928914704423, -122.423683668421)",142242883-RS1 +150241931,83,15009335,Traffic Collision,01/24/2015,01/24/2015,01/24/2015 02:47:58 PM,01/24/2015 02:47:58 PM,01/24/2015 02:52:28 PM,01/24/2015 02:52:43 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,No Merit,01/24/2015 03:03:28 PM,2600 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7825841925678, -122.447617194265)",150241931-83 +160972720,66,16038495,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:33:53 PM,04/06/2016 03:33:53 PM,04/06/2016 03:34:20 PM,04/06/2016 03:34:32 PM,04/06/2016 03:38:42 PM,04/06/2016 03:51:58 PM,04/06/2016 04:48:39 PM,Code 2 Transport,04/06/2016 05:38:46 PM,CASTRO ST/MARKET ST,San Francisco,94114,B05,6,5253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",160972720-66 +142261159,E24,14078430,Outside Fire,08/14/2014,08/14/2014,08/14/2014 10:26:39 AM,08/14/2014 10:27:43 AM,08/14/2014 10:28:36 AM,08/14/2014 10:28:48 AM,08/14/2014 10:31:15 AM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Fire,08/14/2014 11:18:13 AM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5415,3,3,3,true,Fire,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",142261159-E24 +151513067,77,15057612,Medical Incident,05/31/2015,05/31/2015,05/31/2015 08:24:34 PM,05/31/2015 08:26:34 PM,05/31/2015 08:26:51 PM,05/31/2015 08:29:10 PM,05/31/2015 08:37:45 PM,05/31/2015 08:46:45 PM,05/31/2015 08:57:52 PM,Code 2 Transport,05/31/2015 09:18:35 PM,1700 Block of INDIANA ST,San Francisco,94124,B10,25,2635,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7484542727181, -122.390331398029)",151513067-77 +160924068,62,16036664,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:57:06 PM,04/01/2016 11:58:32 PM,04/01/2016 11:58:54 PM,04/01/2016 11:59:18 PM,04/02/2016 12:03:11 AM,04/02/2016 12:51:24 AM,04/02/2016 01:13:37 AM,Code 2 Transport,04/02/2016 01:45:17 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160924068-62 +142793494,E32,14098319,Medical Incident,10/06/2014,10/06/2014,10/06/2014 09:36:22 PM,10/06/2014 09:37:16 PM,10/06/2014 09:38:30 PM,10/06/2014 09:39:41 PM,10/06/2014 09:40:40 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,No Merit,10/06/2014 09:48:36 PM,CORTLAND AV/ANDOVER ST,San Francisco,94110,B06,32,5732,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7390616989426, -122.416519601586)",142793494-E32 +161001604,85,16039760,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:01:23 PM,04/09/2016 01:02:46 PM,04/09/2016 01:03:08 PM,04/09/2016 01:03:18 PM,04/09/2016 01:18:50 PM,04/09/2016 01:27:26 PM,04/09/2016 01:57:47 PM,Code 2 Transport,04/09/2016 02:53:38 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",161001604-85 +150440103,E22,15016939,Structure Fire,02/13/2015,02/12/2015,02/13/2015 12:45:34 AM,02/13/2015 12:45:41 AM,02/13/2015 12:45:48 AM,02/13/2015 12:47:27 AM,02/13/2015 12:49:30 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Fire,02/13/2015 12:49:56 AM,21ST AV/JUDAH ST,San Francisco,94122,B08,22,7426,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",150440103-E22 +152233330,E01,15085109,Medical Incident,08/11/2015,08/11/2015,08/11/2015 06:55:23 PM,08/11/2015 06:55:23 PM,08/11/2015 06:55:47 PM,08/11/2015 06:56:48 PM,08/11/2015 06:59:39 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Code 2 Transport,08/11/2015 07:00:00 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",152233330-E01 +153043722,E10,15116831,Medical Incident,10/31/2015,10/31/2015,10/31/2015 08:55:08 PM,10/31/2015 08:55:24 PM,10/31/2015 09:01:13 PM,10/31/2015 09:02:12 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,Patient Declined Transport,10/31/2015 09:03:34 PM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",153043722-E10 +142640875,E01,14092284,Medical Incident,09/21/2014,09/21/2014,09/21/2014 08:09:58 AM,09/21/2014 08:12:01 AM,09/21/2014 08:12:38 AM,09/21/2014 08:12:49 AM,09/21/2014 08:15:44 AM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Code 2 Transport,09/21/2014 08:17:12 AM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",142640875-E01 +152683334,E11,15102824,Medical Incident,09/25/2015,09/25/2015,09/25/2015 07:33:39 PM,09/25/2015 07:35:12 PM,09/25/2015 07:40:45 PM,09/25/2015 07:42:10 PM,09/25/2015 07:45:04 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Code 2 Transport,09/25/2015 07:52:55 PM,800 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Mission,"(37.7589313181833, -122.421382559773)",152683334-E11 +142463792,E05,14085856,Structure Fire,09/03/2014,09/03/2014,09/03/2014 09:41:53 PM,09/03/2014 09:41:53 PM,09/03/2014 09:42:33 PM,09/03/2014 09:43:46 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Fire,09/03/2014 09:45:26 PM,POLK ST/ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",142463792-E05 +150053458,E17,15002035,Medical Incident,01/05/2015,01/05/2015,01/05/2015 09:08:33 PM,01/05/2015 09:09:47 PM,01/05/2015 09:10:09 PM,01/05/2015 09:14:36 PM,01/05/2015 09:14:36 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Patient Declined Transport,01/05/2015 09:25:27 PM,0 Block of COMMER CT,San Francisco,94124,B10,17,6622,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7325365939267, -122.385005626506)",150053458-E17 +152481809,67,15094683,Medical Incident,09/05/2015,09/05/2015,09/05/2015 12:56:52 PM,09/05/2015 12:57:39 PM,09/05/2015 12:59:13 PM,09/05/2015 01:00:44 PM,09/05/2015 01:28:41 PM,09/05/2015 01:32:25 PM,09/05/2015 01:52:08 PM,Code 2 Transport,09/05/2015 02:22:42 PM,200 Block of CLIPPER ST,San Francisco,94114,B06,11,5537,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7490382606221, -122.430526091379)",152481809-67 +141282016,E10,14043548,Medical Incident,05/08/2014,05/08/2014,05/08/2014 02:18:39 PM,05/08/2014 02:19:51 PM,05/08/2014 02:21:35 PM,05/08/2014 02:22:46 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 02:26:32 PM,700 Block of LA PLAYA,San Francisco,94121,B07,34,7312,2,3,3,false,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",141282016-E10 +160974272,88,16038680,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:35:10 PM,04/06/2016 09:36:39 PM,04/06/2016 09:37:41 PM,04/06/2016 09:37:50 PM,04/06/2016 09:43:01 PM,04/06/2016 10:03:19 PM,04/06/2016 10:10:56 PM,Code 2 Transport,04/06/2016 10:47:48 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7899917286128, -122.418035034103)",160974272-88 +160974195,76,16038670,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:11:59 PM,04/06/2016 09:14:19 PM,04/06/2016 09:15:26 PM,04/06/2016 09:15:34 PM,04/06/2016 09:18:03 PM,04/06/2016 09:33:42 PM,04/06/2016 09:36:12 PM,Code 2 Transport,04/06/2016 09:54:24 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160974195-76 +151994092,E10,15076054,Structure Fire,07/18/2015,07/18/2015,07/18/2015 11:43:00 PM,07/18/2015 11:45:49 PM,07/18/2015 11:46:34 PM,07/18/2015 11:47:52 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Fire,07/18/2015 11:51:26 PM,2600 Block of GREENWICH ST,San Francisco,94123,B04,16,4166,3,3,3,true,Alarm,1,ENGINE,6,4,2,Marina,"(37.7980599014421, -122.443314080143)",151994092-E10 +143102678,67,14109803,Medical Incident,11/06/2014,11/06/2014,11/06/2014 04:48:59 PM,11/06/2014 04:50:36 PM,11/06/2014 04:54:18 PM,11/06/2014 04:54:18 PM,11/06/2014 05:01:34 PM,11/06/2014 05:28:04 PM,11/06/2014 05:46:14 PM,Code 2 Transport,11/06/2014 05:53:11 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7754785492962, -122.415745332716)",143102678-67 +153221411,84,15123824,Medical Incident,11/18/2015,11/18/2015,11/18/2015 10:45:24 AM,11/18/2015 10:46:07 AM,11/18/2015 10:46:30 AM,11/18/2015 10:46:39 AM,11/18/2015 10:52:32 AM,11/18/2015 11:09:32 AM,11/18/2015 11:23:59 AM,Code 2 Transport,11/18/2015 12:00:46 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7597015509874, -122.414696971308)",153221411-84 +161002058,KM12,16039810,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:31:27 PM,04/09/2016 03:32:45 PM,04/09/2016 03:33:07 PM,04/09/2016 03:34:06 PM,04/09/2016 03:35:29 PM,04/09/2016 03:51:06 PM,04/09/2016 04:10:57 PM,Code 2 Transport,04/09/2016 04:37:59 PM,HYDE ST/BUSH ST,San Francisco,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7891101748937, -122.417016879226)",161002058-KM12 +152752321,B02,15105390,Alarms,10/02/2015,10/02/2015,10/02/2015 03:16:19 PM,10/02/2015 03:18:09 PM,10/02/2015 03:18:31 PM,10/02/2015 03:20:21 PM,10/02/2015 03:22:20 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,Fire,10/02/2015 03:31:30 PM,300 Block of OCTAVIA ST,San Francisco,94102,B02,36,3314,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.7749981271703, -122.424402172028)",152752321-B02 +160954042,88,16037822,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:46:51 PM,04/04/2016 10:51:22 PM,04/04/2016 10:56:15 PM,04/04/2016 10:57:06 PM,04/04/2016 11:07:51 PM,04/04/2016 11:13:00 PM,04/04/2016 11:47:00 PM,Code 2 Transport,04/05/2016 12:30:50 AM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160954042-88 +152850492,B01,15109305,Alarms,10/12/2015,10/11/2015,10/12/2015 04:59:53 AM,10/12/2015 05:01:12 AM,10/12/2015 05:01:19 AM,10/12/2015 05:03:51 AM,10/12/2015 05:06:23 AM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/12/2015 05:07:45 AM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8055721065651, -122.414433429446)",152850492-B01 +142183619,T05,14075739,Citizen Assist / Service Call,08/06/2014,08/06/2014,08/06/2014 08:47:26 PM,08/06/2014 08:47:26 PM,08/06/2014 08:47:26 PM,08/06/2014 08:47:26 PM,08/06/2014 08:47:26 PM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,Fire,08/06/2014 08:59:43 PM,1300 Block of EDDY ST,San Francisco,94115,B04,5,3515,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7816922947029, -122.429813826585)",142183619-T05 +151960820,E02,15074677,Alarms,07/15/2015,07/15/2015,07/15/2015 08:38:07 AM,07/15/2015 08:39:55 AM,07/15/2015 08:40:21 AM,07/15/2015 08:42:15 AM,07/15/2015 08:44:20 AM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Fire,07/15/2015 08:46:54 AM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",151960820-E02 +141652797,E11,14057017,Medical Incident,06/14/2014,06/14/2014,06/14/2014 06:33:55 PM,06/14/2014 06:35:51 PM,06/14/2014 06:36:50 PM,06/14/2014 06:38:16 PM,06/14/2014 06:46:21 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Patient Declined Transport,06/14/2014 07:06:02 PM,21ST ST/FLORIDA ST,San Francisco,94110,B06,7,545,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7575387230598, -122.410526546495)",141652797-E11 +152801277,KM11,15107389,Medical Incident,10/07/2015,10/07/2015,10/07/2015 10:17:17 AM,10/07/2015 10:18:47 AM,10/07/2015 10:19:48 AM,10/07/2015 10:20:24 AM,10/07/2015 10:33:31 AM,10/07/2015 10:37:35 AM,10/07/2015 11:09:07 AM,Code 2 Transport,10/07/2015 11:47:48 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",152801277-KM11 +143081577,83,14108974,Medical Incident,11/04/2014,11/04/2014,11/04/2014 12:15:12 PM,11/04/2014 12:15:33 PM,11/04/2014 12:23:39 PM,11/04/2014 12:26:21 PM,11/04/2014 12:33:31 PM,11/04/2014 12:33:59 PM,11/04/2014 01:06:18 PM,Patient Declined Transport,11/04/2014 01:30:27 PM,900 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7840676683775, -122.420906968642)",143081577-83 +150713200,E05,15027239,Medical Incident,03/12/2015,03/12/2015,03/12/2015 06:35:18 PM,03/12/2015 06:35:18 PM,03/12/2015 06:36:05 PM,03/12/2015 06:36:53 PM,03/12/2015 06:39:13 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Code 2 Transport,03/12/2015 06:50:45 PM,0 Block of SEYMOUR ST,San Francisco,94115,B05,5,4134,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7792900134424, -122.437869182837)",150713200-E05 +150591294,RC1,15022514,Other,02/28/2015,02/28/2015,02/28/2015 10:49:13 AM,02/28/2015 10:49:13 AM,02/28/2015 11:31:15 AM,02/28/2015 11:31:45 AM,02/28/2015 11:32:29 AM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Patient Declined Transport,02/28/2015 11:50:43 AM,SANSOME ST/CALIFORNIA ST,San Francisco,94104,B01,13,1165,3,3,3,true,Alarm,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7930602991213, -122.401126343901)",150591294-RC1 +160931370,KM11,16036820,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:21:14 AM,04/02/2016 11:22:56 AM,04/02/2016 11:35:17 AM,04/02/2016 11:36:04 AM,04/02/2016 11:39:42 AM,04/02/2016 11:59:29 AM,04/02/2016 12:32:17 PM,Code 3 Transport,04/02/2016 12:35:58 PM,500 Block of DELLBROOK AVE,San Francisco,94131,B08,20,5365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7558034271253, -122.453603802787)",160931370-KM11 +151790790,70,15068126,Medical Incident,06/28/2015,06/27/2015,06/28/2015 06:01:18 AM,06/28/2015 06:02:23 AM,06/28/2015 06:03:07 AM,06/28/2015 06:03:15 AM,06/28/2015 06:06:36 AM,06/28/2015 06:21:20 AM,06/28/2015 06:28:20 AM,Code 2 Transport,06/28/2015 06:36:13 AM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",151790790-70 +142270781,E36,14078753,Medical Incident,08/15/2014,08/14/2014,08/15/2014 07:58:02 AM,08/15/2014 07:59:30 AM,08/15/2014 07:59:56 AM,08/15/2014 08:01:06 AM,08/15/2014 08:06:55 AM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 2 Transport,08/15/2014 08:09:55 AM,1100 Block of TURK ST,San Francisco,94115,B05,5,3426,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",142270781-E36 +152123392,KM07,15080923,Medical Incident,07/31/2015,07/31/2015,07/31/2015 09:15:20 PM,07/31/2015 09:16:22 PM,07/31/2015 09:18:01 PM,07/31/2015 09:18:31 PM,07/31/2015 09:29:32 PM,07/31/2015 09:29:34 PM,07/31/2015 10:08:42 PM,Code 2 Transport,07/31/2015 10:35:12 PM,1700 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7914466216221, -122.421704925005)",152123392-KM07 +152551333,E06,15097474,Alarms,09/12/2015,09/12/2015,09/12/2015 11:18:48 AM,09/12/2015 11:20:04 AM,09/12/2015 11:20:11 AM,09/12/2015 11:20:36 AM,09/12/2015 11:23:05 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 11:38:40 AM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,3,3,3,true,Alarm,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",152551333-E06 +151251569,KM08,15047350,Medical Incident,05/05/2015,05/05/2015,05/05/2015 12:16:11 PM,05/05/2015 12:19:01 PM,05/05/2015 12:20:41 PM,05/05/2015 12:21:10 PM,05/05/2015 12:29:22 PM,05/05/2015 12:41:29 PM,05/05/2015 12:56:26 PM,Code 2 Transport,05/05/2015 01:25:32 PM,1700 Block of GROVE ST,San Francisco,94117,B05,21,4361,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7750328323783, -122.445449213896)",151251569-KM08 +152253296,E05,15085891,Medical Incident,08/13/2015,08/13/2015,08/13/2015 07:21:26 PM,08/13/2015 07:21:26 PM,08/13/2015 07:34:35 PM,08/13/2015 07:35:26 PM,08/13/2015 07:37:44 PM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Other,08/13/2015 07:51:14 PM,600 Block of OAK ST,San Francisco,94117,B02,5,3523,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",152253296-E05 +152242676,E12,15085443,Medical Incident,08/12/2015,08/12/2015,08/12/2015 04:41:11 PM,08/12/2015 04:41:11 PM,08/12/2015 04:42:01 PM,08/12/2015 04:43:05 PM,08/12/2015 04:45:04 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Code 2 Transport,08/12/2015 04:58:47 PM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7693981235751, -122.451276976837)",152242676-E12 +160921946,81,16036460,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:06:59 PM,04/01/2016 02:08:33 PM,04/01/2016 02:08:59 PM,04/01/2016 02:09:16 PM,04/01/2016 02:13:35 PM,04/01/2016 02:27:49 PM,04/01/2016 02:58:52 PM,Code 2 Transport,04/01/2016 03:35:29 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160921946-81 +153080015,KM07,15118196,Medical Incident,11/04/2015,11/03/2015,11/04/2015 12:02:58 AM,11/04/2015 12:03:51 AM,11/04/2015 12:04:22 AM,11/04/2015 12:04:58 AM,11/04/2015 12:10:27 AM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,No Merit,11/04/2015 12:11:39 AM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",153080015-KM07 +141772013,T10,14061129,Odor (Strange / Unknown),06/26/2014,06/26/2014,06/26/2014 02:58:52 PM,06/26/2014 03:00:59 PM,06/26/2014 03:01:24 PM,06/26/2014 03:04:15 PM,06/26/2014 03:05:37 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 03:10:34 PM,0 Block of PARKER AVE,San Francisco,94118,B07,10,4436,3,3,3,false,Alarm,1,TRUCK,2,7,2,Presidio Heights,"(37.7851399842228, -122.454627027921)",141772013-T10 +160922218,75,16036490,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:22:50 PM,04/01/2016 03:23:52 PM,04/01/2016 03:24:14 PM,04/01/2016 03:24:55 PM,04/01/2016 03:27:50 PM,04/01/2016 03:34:57 PM,04/01/2016 03:43:05 PM,Code 2 Transport,04/01/2016 04:16:04 PM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",160922218-75 +141210187,E05,14040905,Alarms,05/01/2014,05/01/2014,05/01/2014 12:07:02 PM,05/01/2014 12:07:03 PM,05/01/2014 12:07:40 PM,05/01/2014 12:08:19 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Fire,05/01/2014 12:12:34 PM,1200 Block of MARKET ST,SAN FRANCISCO,94103,B02,36,2337,,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7780365108208, -122.415429100912)",141210187-E05 +150662142,B02,15025275,Alarms,03/07/2015,03/07/2015,03/07/2015 02:55:58 PM,03/07/2015 02:57:23 PM,03/07/2015 03:00:24 PM,03/07/2015 03:00:24 PM,03/07/2015 03:00:24 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Fire,03/07/2015 03:07:22 PM,0 Block of OAK ST,San Francisco,94102,B02,36,3211,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.7753796573025, -122.420188747323)",150662142-B02 +152552909,E28,15097620,Citizen Assist / Service Call,09/12/2015,09/12/2015,09/12/2015 06:37:07 PM,09/12/2015 06:38:28 PM,09/12/2015 06:38:36 PM,09/12/2015 06:40:00 PM,09/12/2015 06:43:12 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 06:54:13 PM,1100 Block of GREENWICH ST,San Francisco,94133,B01,41,1612,3,3,3,true,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.801186152544, -122.418883612653)",152552909-E28 +143360581,85,14118968,Medical Incident,12/02/2014,12/01/2014,12/02/2014 07:31:33 AM,12/02/2014 07:32:12 AM,12/02/2014 07:33:04 AM,12/02/2014 07:33:21 AM,12/02/2014 07:36:55 AM,12/02/2014 07:50:45 AM,12/02/2014 08:01:13 AM,Code 2 Transport,12/02/2014 08:43:31 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143360581-85 +160953214,55,16037751,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 06:32:57 PM,04/04/2016 06:33:59 PM,04/04/2016 06:36:35 PM,04/04/2016 06:36:47 PM,04/04/2016 06:45:18 PM,04/04/2016 07:00:58 PM,04/04/2016 07:13:06 PM,Code 2 Transport,04/04/2016 07:45:43 PM,ALEMANY NB BL/TRUMBULL ST,San Francisco,94112,B09,32,8263,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7311597944138, -122.421271998512)",160953214-55 +160940526,71,16037146,Medical Incident,04/03/2016,04/02/2016,04/03/2016 03:28:52 AM,04/03/2016 03:30:02 AM,04/03/2016 03:32:19 AM,04/03/2016 03:32:48 AM,04/03/2016 03:37:34 AM,04/03/2016 03:43:45 AM,04/03/2016 04:04:54 AM,Code 2 Transport,04/03/2016 04:30:40 AM,9TH ST/HOWARD ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",160940526-71 +141180144,KM12,14039765,Medical Incident,04/28/2014,04/28/2014,04/28/2014 10:19:29 AM,04/28/2014 10:19:57 AM,04/28/2014 10:20:44 AM,04/28/2014 10:21:43 AM,04/28/2014 10:28:16 AM,04/28/2014 10:49:38 AM,04/28/2014 10:58:05 AM,Code 2 Transport,04/28/2014 11:33:12 AM,TURK ST/JONES ST,SAN FRANCISCO,94102,B03,1,1456,,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",141180144-KM12 +141760269,T15,14060603,Administrative,06/25/2014,06/24/2014,06/25/2014 03:13:54 AM,06/25/2014 03:14:04 AM,06/25/2014 03:15:20 AM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Fire,06/25/2014 03:16:02 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,false,,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",141760269-T15 +141603062,68,14055291,Medical Incident,06/09/2014,06/09/2014,06/09/2014 08:17:18 PM,06/09/2014 08:18:42 PM,06/09/2014 08:18:59 PM,06/09/2014 08:19:16 PM,06/09/2014 08:31:14 PM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Unable to Locate,06/09/2014 08:37:09 PM,1700 Block of SILVER AVE,San Francisco,94124,B10,42,6364,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.733361342902, -122.403884306786)",141603062-68 +153430645,E15,15131897,Alarms,12/09/2015,12/08/2015,12/09/2015 07:40:54 AM,12/09/2015 07:41:24 AM,12/09/2015 07:41:38 AM,12/09/2015 07:43:36 AM,12/09/2015 07:45:50 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 08:01:50 AM,1000 Block of CAYUGA AVE,San Francisco,94112,B09,15,8332,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7218172447591, -122.439998899049)",153430645-E15 +150652213,KM14,15024873,Medical Incident,03/06/2015,03/06/2015,03/06/2015 01:48:18 PM,03/06/2015 01:50:57 PM,03/06/2015 01:53:35 PM,03/06/2015 01:54:13 PM,03/06/2015 02:02:34 PM,03/06/2015 02:15:04 PM,03/06/2015 02:45:18 PM,Code 2 Transport,03/06/2015 03:40:27 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7833716368249, -122.407382686506)",150652213-KM14 +141532651,RS1,14052676,Structure Fire,06/02/2014,06/02/2014,06/02/2014 06:15:12 PM,06/02/2014 06:15:48 PM,06/02/2014 06:16:39 PM,06/02/2014 06:17:49 PM,06/02/2014 06:21:10 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Code 2 Transport,06/02/2014 06:23:54 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,false,Alarm,1,RESCUE SQUAD,9,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",141532651-RS1 +150363265,B09,15014006,Alarms,02/05/2015,02/05/2015,02/05/2015 08:29:45 PM,02/05/2015 08:31:42 PM,02/05/2015 08:32:23 PM,02/05/2015 08:33:37 PM,02/05/2015 08:35:07 PM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/05/2015 09:16:11 PM,200 Block of MIRAMAR AVE,San Francisco,94112,B09,15,8474,3,3,3,false,Alarm,1,CHIEF,2,9,7,Oceanview/Merced/Ingleside,"(37.7227490413148, -122.458117167077)",150363265-B09 +152472730,E03,15094322,Medical Incident,09/04/2015,09/04/2015,09/04/2015 03:59:47 PM,09/04/2015 04:00:11 PM,09/04/2015 04:00:52 PM,09/04/2015 04:00:52 PM,09/04/2015 04:03:18 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Code 2 Transport,09/04/2015 04:18:09 PM,1200 Block of SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7877066353114, -122.420948027457)",152472730-E03 +150030591,E21,15000995,Outside Fire,01/03/2015,01/02/2015,01/03/2015 06:08:57 AM,01/03/2015 06:09:26 AM,01/03/2015 06:10:11 AM,01/03/2015 06:11:43 AM,01/03/2015 06:14:01 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Fire,01/03/2015 06:22:32 AM,CENTRAL AV/WALLER ST,San Francisco,94117,B05,21,4354,3,3,3,false,Fire,1,ENGINE,1,5,5,Haight Ashbury,"(37.7694969972362, -122.443461439796)",150030591-E21 +143471423,AM02,14123750,Medical Incident,12/13/2014,12/13/2014,12/13/2014 11:10:36 AM,12/13/2014 11:10:36 AM,12/13/2014 11:10:51 AM,12/13/2014 11:11:17 AM,12/13/2014 11:17:49 AM,12/13/2014 11:35:17 AM,12/13/2014 11:41:31 AM,Code 2 Transport,12/13/2014 12:12:36 PM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",143471423-AM02 +160972760,67,16038501,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:43:32 PM,04/06/2016 03:43:32 PM,04/06/2016 03:43:57 PM,04/06/2016 03:44:04 PM,04/06/2016 03:49:28 PM,04/06/2016 04:28:23 PM,04/06/2016 04:40:20 PM,Code 2 Transport,04/06/2016 05:39:10 PM,GOUGH ST/HAIGHT ST,San Francisco,94102,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7731517441996, -122.422229369585)",160972760-67 +153110981,T08,15119497,Alarms,11/07/2015,11/07/2015,11/07/2015 09:03:22 AM,11/07/2015 09:05:00 AM,11/07/2015 09:05:14 AM,11/07/2015 09:07:06 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/07/2015 09:15:55 AM,800 Block of BRANNAN ST,San Francisco,94103,B03,29,2325,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7722126507146, -122.404363751305)",153110981-T08 +150431677,E31,15016704,Medical Incident,02/12/2015,02/12/2015,02/12/2015 12:17:50 PM,02/12/2015 12:19:50 PM,02/12/2015 12:20:33 PM,02/12/2015 12:22:03 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Against Medical Advice,02/12/2015 12:24:25 PM,CLEMENT ST/21ST AV,San Francisco,94121,B07,31,7164,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7822123116523, -122.48059001563)",150431677-E31 +150273632,E23,15010564,Medical Incident,01/27/2015,01/27/2015,01/27/2015 09:23:53 PM,01/27/2015 09:25:25 PM,01/27/2015 09:25:39 PM,01/27/2015 09:26:45 PM,01/27/2015 09:28:27 PM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,Other,01/27/2015 09:39:33 PM,45TH AV/JUDAH ST,San Francisco,94122,B08,23,7655,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7604717922137, -122.504856721474)",150273632-E23 +160931095,82,16036786,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:53:45 AM,04/02/2016 09:55:19 AM,04/02/2016 09:57:47 AM,04/02/2016 09:58:13 AM,04/02/2016 10:10:32 AM,04/02/2016 10:31:40 AM,04/02/2016 11:00:29 AM,Code 2 Transport,04/02/2016 11:31:23 AM,5300 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8162,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",160931095-82 +141511649,B03,14051882,Alarms,05/31/2014,05/31/2014,05/31/2014 01:13:42 PM,05/31/2014 01:14:59 PM,05/31/2014 01:16:05 PM,05/31/2014 01:17:23 PM,05/31/2014 01:21:43 PM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Fire,05/31/2014 01:35:24 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7734664897325, -122.413546904215)",141511649-B03 +152770408,E21,15106072,Medical Incident,10/04/2015,10/03/2015,10/04/2015 02:39:53 AM,10/04/2015 02:41:12 AM,10/04/2015 02:42:12 AM,10/04/2015 02:45:54 AM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Code 2 Transport,10/04/2015 02:47:35 AM,1200 Block of MASONIC AVE,San Francisco,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.769728147466, -122.44532047465)",152770408-E21 +142051251,E13,14070914,Structure Fire,07/24/2014,07/24/2014,07/24/2014 10:42:23 AM,07/24/2014 10:42:23 AM,07/24/2014 10:42:47 AM,07/24/2014 10:42:53 AM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/24/2014 10:46:34 AM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1112,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",142051251-E13 +152331648,E29,15088809,Alarms,08/21/2015,08/21/2015,08/21/2015 11:47:19 AM,08/21/2015 11:48:33 AM,08/21/2015 11:48:37 AM,08/21/2015 11:49:29 AM,08/21/2015 11:51:45 AM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Fire,08/21/2015 11:58:27 AM,1000 Block of 17TH ST,San Francisco,94107,B03,29,2431,3,3,3,true,Alarm,1,ENGINE,1,3,10,Mission Bay,"(37.7652728869862, -122.395323009408)",152331648-E29 +160983436,61,16039086,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:44:45 PM,04/07/2016 07:45:04 PM,04/07/2016 07:45:18 PM,04/07/2016 07:45:31 PM,04/07/2016 07:51:36 PM,04/07/2016 08:06:31 PM,04/07/2016 08:33:17 PM,Code 2 Transport,04/07/2016 08:57:37 PM,3RD ST/MCKINNON AV,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7363901964496, -122.390145053188)",160983436-61 +142650393,E09,14092596,Medical Incident,09/22/2014,09/21/2014,09/22/2014 04:41:23 AM,09/22/2014 04:41:23 AM,09/22/2014 04:43:19 AM,09/22/2014 04:46:07 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Cancelled,09/22/2014 04:47:44 AM,100 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6665,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7283147464933, -122.37246183357)",142650393-E09 +152400445,74,15091299,Medical Incident,08/28/2015,08/27/2015,08/28/2015 04:36:15 AM,08/28/2015 04:36:34 AM,08/28/2015 04:37:18 AM,08/28/2015 04:37:53 AM,08/28/2015 04:43:59 AM,08/28/2015 04:59:25 AM,08/28/2015 05:17:34 AM,Code 2 Transport,08/28/2015 05:50:13 AM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.715844082258, -122.431797985467)",152400445-74 +141080037,B04,14036300,Alarms,04/18/2014,04/17/2014,04/18/2014 02:24:51 AM,04/18/2014 02:26:03 AM,04/18/2014 02:26:13 AM,04/18/2014 02:27:45 AM,04/18/2014 02:37:18 AM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Fire,04/18/2014 02:45:39 AM,900 Block of MARINE DR,PRESIDIO,94129,B99,51,4628,3,3,3,false,Alarm,1,CHIEF,3,7,2,Presidio,"(37.8089767888005, -122.47460956271)",141080037-B04 +150921064,T11,15034900,Medical Incident,04/02/2015,04/02/2015,04/02/2015 09:59:09 AM,04/02/2015 09:59:40 AM,04/02/2015 10:01:13 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/02/2015 10:02:29 AM,1600 Block of SANCHEZ ST,San Francisco,94131,B06,11,5564,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,6,8,Noe Valley,"(37.742359954214, -122.428836055927)",150921064-T11 +160921851,84,16036455,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:42:55 PM,04/01/2016 01:44:49 PM,04/01/2016 01:45:02 PM,04/01/2016 01:45:19 PM,04/01/2016 01:50:04 PM,04/01/2016 02:16:17 PM,04/01/2016 02:27:19 PM,Code 2 Transport,04/01/2016 03:03:26 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160921851-84 +143102427,55,14109785,Medical Incident,11/06/2014,11/06/2014,11/06/2014 03:55:04 PM,11/06/2014 03:56:22 PM,11/06/2014 03:56:48 PM,11/06/2014 03:57:19 PM,11/06/2014 04:04:09 PM,11/06/2014 04:18:10 PM,11/06/2014 04:42:20 PM,Code 2 Transport,11/06/2014 05:09:27 PM,2900 Block of 24TH AVE,San Francisco,94132,B08,19,8734,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7334656394381, -122.480247903443)",143102427-55 +150991434,70,15037426,Medical Incident,04/09/2015,04/09/2015,04/09/2015 11:52:42 AM,04/09/2015 11:57:38 AM,04/09/2015 11:57:49 AM,04/09/2015 11:57:59 AM,04/09/2015 12:05:20 PM,04/25/2016 01:11:16 PM,04/25/2016 01:11:16 PM,Patient Declined Transport,04/09/2015 12:12:19 PM,HOWARD ST/MAIN ST,San Francisco,94105,B03,35,2114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",150991434-70 +151832305,KM08,15069903,Medical Incident,07/02/2015,07/02/2015,07/02/2015 02:38:56 PM,07/02/2015 02:38:56 PM,07/02/2015 02:39:26 PM,07/02/2015 02:39:46 PM,07/02/2015 02:57:18 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Patient Declined Transport,07/02/2015 03:18:35 PM,GOUGH ST/FELL ST,San Francisco,94102,B02,36,3266,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7759498626653, -122.422787633791)",151832305-KM08 +150413393,E37,15016133,Medical Incident,02/10/2015,02/10/2015,02/10/2015 08:32:24 PM,02/10/2015 08:32:24 PM,02/10/2015 08:32:37 PM,02/10/2015 08:33:41 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Code 2 Transport,02/10/2015 08:36:23 PM,23RD ST/POTRERO AV,San Francisco,94110,B10,37,2554,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,10,9,Potrero Hill,"(37.7545642123343, -122.406480459209)",150413393-E37 +160932321,82,16036927,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:50:50 PM,04/02/2016 03:54:30 PM,04/02/2016 03:54:39 PM,04/02/2016 03:55:06 PM,04/02/2016 04:01:22 PM,04/02/2016 04:10:01 PM,04/02/2016 04:10:35 PM,Code 2 Transport,04/02/2016 05:44:22 PM,GEARY BL/9TH AV,San Francisco,94118,B07,31,7135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7808797138944, -122.46748765154)",160932321-82 +150732800,E06,15028042,Medical Incident,03/14/2015,03/14/2015,03/14/2015 05:05:18 PM,03/14/2015 05:06:56 PM,03/14/2015 05:07:52 PM,03/14/2015 05:07:52 PM,03/14/2015 05:08:26 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,No Merit,03/14/2015 05:09:32 PM,0 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7614765846451, -122.436246937814)",150732800-E06 +152691011,E44,15103021,Medical Incident,09/26/2015,09/26/2015,09/26/2015 08:52:11 AM,09/26/2015 08:53:36 AM,09/26/2015 08:54:01 AM,09/26/2015 08:54:54 AM,09/26/2015 08:56:54 AM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Medical Examiner,09/26/2015 10:15:26 AM,300 Block of ALPHA ST,San Francisco,94134,B10,44,6267,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7129209245678, -122.405100970462)",152691011-E44 +160990983,KM04,16039237,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:40:20 AM,04/08/2016 09:41:27 AM,04/08/2016 09:41:53 AM,04/08/2016 09:43:49 AM,04/08/2016 09:49:31 AM,04/08/2016 10:15:30 AM,04/08/2016 10:54:31 AM,Code 2 Transport,04/08/2016 11:35:29 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160990983-KM04 +160942378,70,16037317,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:43:26 PM,04/03/2016 03:45:51 PM,04/03/2016 03:46:37 PM,04/03/2016 03:46:44 PM,04/03/2016 03:54:30 PM,04/03/2016 04:03:43 PM,04/03/2016 04:10:43 PM,Code 2 Transport,04/03/2016 04:29:01 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160942378-70 +143483534,62,14124401,Medical Incident,12/14/2014,12/14/2014,12/14/2014 10:07:11 PM,12/14/2014 10:07:39 PM,12/14/2014 10:07:58 PM,12/14/2014 10:08:09 PM,12/14/2014 10:16:45 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,Patient Declined Transport,12/14/2014 10:56:26 PM,200 Block of BONVIEW ST,San Francisco,94110,B06,32,5655,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7401358083277, -122.418694782728)",143483534-62 +142721859,D2,14095412,Structure Fire,09/29/2014,09/29/2014,09/29/2014 02:08:11 PM,09/29/2014 02:08:45 PM,09/29/2014 02:08:56 PM,09/29/2014 02:09:06 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Fire,09/29/2014 02:16:07 PM,1900 Block of MCALLISTER ST,San Francisco,94117,B05,21,4362,3,3,3,false,Alarm,1,CHIEF,9,5,5,Lone Mountain/USF,"(37.7770068075735, -122.444133013363)",142721859-D2 +160924057,AM16,16036662,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:53:59 PM,04/01/2016 11:55:23 PM,04/01/2016 11:57:11 PM,04/01/2016 11:57:33 PM,04/02/2016 12:03:04 AM,04/02/2016 12:17:35 AM,04/02/2016 12:41:25 AM,Code 2 Transport,04/02/2016 01:14:07 AM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",160924057-AM16 +143220286,E08,14113883,Outside Fire,11/18/2014,11/17/2014,11/18/2014 04:06:48 AM,11/18/2014 04:07:38 AM,11/18/2014 04:13:29 AM,11/18/2014 04:15:34 AM,11/18/2014 04:17:03 AM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,Fire,11/18/2014 04:25:12 AM,5TH ST/SHIPLEY ST,San Francisco,94107,B03,1,2244,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7798285228536, -122.402840617488)",143220286-E08 +152881142,T02,15110595,Alarms,10/15/2015,10/15/2015,10/15/2015 09:48:24 AM,10/15/2015 09:50:45 AM,10/15/2015 09:50:49 AM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Other,10/15/2015 09:51:09 AM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",152881142-T02 +141502286,D2,14051607,Structure Fire,05/30/2014,05/30/2014,05/30/2014 04:39:20 PM,05/30/2014 04:40:29 PM,05/30/2014 04:41:07 PM,05/30/2014 04:41:17 PM,05/30/2014 04:45:38 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 04:55:02 PM,300 Block of FREDERICK ST,San Francisco,94117,B05,12,5144,3,3,3,false,Alarm,1,CHIEF,4,5,5,Haight Ashbury,"(37.7668851669849, -122.448532611392)",141502286-D2 +150172322,AM08,15006778,Medical Incident,01/17/2015,01/17/2015,01/17/2015 03:59:45 PM,01/17/2015 03:59:45 PM,01/17/2015 04:00:13 PM,01/17/2015 04:05:16 PM,01/17/2015 04:05:16 PM,01/17/2015 04:32:19 PM,01/17/2015 05:00:59 PM,Code 2 Transport,01/17/2015 05:36:42 PM,600 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",150172322-AM08 +150314028,E07,15012197,Medical Incident,01/31/2015,01/31/2015,01/31/2015 11:59:22 PM,02/01/2015 12:00:15 AM,02/01/2015 12:00:57 AM,02/01/2015 12:01:29 AM,02/01/2015 12:04:07 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 3 Transport,02/01/2015 12:10:39 AM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",150314028-E07 +160960075,64,16037849,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:30:05 AM,04/05/2016 12:33:08 AM,04/05/2016 12:33:19 AM,04/05/2016 12:33:40 AM,04/05/2016 12:44:38 AM,04/05/2016 01:03:12 AM,04/05/2016 01:20:59 AM,Code 2 Transport,04/05/2016 01:52:02 AM,600 Block of BOWDOIN ST,San Francisco,94134,B10,42,6342,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.727645228856, -122.411190444687)",160960075-64 +153343678,E01,15128596,Medical Incident,11/30/2015,11/30/2015,11/30/2015 10:18:01 PM,11/30/2015 10:23:27 PM,11/30/2015 10:23:55 PM,11/30/2015 10:26:00 PM,11/30/2015 10:27:10 PM,04/25/2016 01:06:54 PM,04/25/2016 01:06:54 PM,Code 2 Transport,11/30/2015 10:36:24 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",153343678-E01 +153173775,RC2,15122036,Medical Incident,11/13/2015,11/13/2015,11/13/2015 09:06:44 PM,11/13/2015 09:07:50 PM,11/13/2015 09:08:11 PM,11/13/2015 09:09:43 PM,11/13/2015 09:12:38 PM,04/25/2016 01:07:13 PM,04/25/2016 01:07:13 PM,Code 3 Transport,11/13/2015 09:41:31 PM,500 Block of 23RD AVE,San Francisco,94121,B07,14,7176,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7773345279064, -122.482316616098)",153173775-RC2 +150393043,61,15015310,Medical Incident,02/08/2015,02/08/2015,02/08/2015 07:09:40 PM,02/08/2015 07:12:17 PM,02/08/2015 07:13:43 PM,02/08/2015 07:13:49 PM,02/08/2015 07:24:17 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Patient Declined Transport,02/08/2015 07:55:46 PM,1700 Block of OFARRELL ST,San Francisco,94115,B04,5,3623,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",150393043-61 +141273047,KM09,14043232,Medical Incident,05/07/2014,05/07/2014,05/07/2014 04:35:44 PM,05/07/2014 04:37:29 PM,05/07/2014 04:38:37 PM,05/07/2014 04:39:16 PM,05/07/2014 04:58:01 PM,05/07/2014 05:03:03 PM,05/07/2014 05:16:54 PM,Code 2 Transport,05/07/2014 05:36:37 PM,MISSION ST/DUBOCE AV,San Francisco,94103,B02,36,5124,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7701114489219, -122.420008323243)",141273047-KM09 +150312142,E25,15012006,Medical Incident,01/31/2015,01/31/2015,01/31/2015 03:02:06 PM,01/31/2015 03:04:50 PM,01/31/2015 03:05:24 PM,01/31/2015 03:06:16 PM,01/31/2015 03:08:33 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 2 Transport,01/31/2015 03:28:36 PM,2500 Block of 3RD ST,San Francisco,94107,B10,25,2533,3,3,3,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7566800066504, -122.387999428154)",150312142-E25 +141892585,E03,14065570,Medical Incident,07/08/2014,07/08/2014,07/08/2014 04:34:50 PM,07/08/2014 04:37:04 PM,07/08/2014 04:41:22 PM,07/08/2014 04:43:02 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Fire,07/08/2014 04:45:34 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",141892585-E03 +151582764,E33,15060431,Alarms,06/07/2015,06/07/2015,06/07/2015 06:18:31 PM,06/07/2015 06:19:25 PM,06/07/2015 06:19:34 PM,06/07/2015 06:21:20 PM,06/07/2015 06:23:50 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Fire,06/07/2015 06:34:57 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,false,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",151582764-E33 +153254196,E18,15125334,Medical Incident,11/21/2015,11/21/2015,11/21/2015 11:58:49 PM,11/21/2015 11:58:49 PM,11/21/2015 11:58:57 PM,11/22/2015 12:00:27 AM,11/22/2015 12:03:50 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Code 2 Transport,11/22/2015 12:20:42 AM,1300 Block of 35TH AV,San Francisco,94122,B08,23,7564,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7618724654682, -122.494274168229)",153254196-E18 +151980744,89,15075393,Medical Incident,07/17/2015,07/17/2015,07/17/2015 08:03:18 AM,07/17/2015 08:04:59 AM,07/17/2015 08:06:54 AM,07/17/2015 08:07:14 AM,07/17/2015 08:23:26 AM,07/17/2015 08:43:51 AM,07/17/2015 09:21:14 AM,Code 2 Transport,07/17/2015 09:53:41 AM,0 Block of FUENTE AVE,San Francisco,94132,B08,19,8426,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7193975439514, -122.477992700478)",151980744-89 +151500888,E03,15057017,Medical Incident,05/30/2015,05/30/2015,05/30/2015 09:00:10 AM,05/30/2015 09:00:10 AM,05/30/2015 09:00:28 AM,05/30/2015 09:01:06 AM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Code 2 Transport,05/30/2015 09:03:09 AM,OFARRELL ST/CYRIL MAGNIN ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",151500888-E03 +150311814,B01,15011973,Alarms,01/31/2015,01/31/2015,01/31/2015 01:23:21 PM,01/31/2015 01:26:16 PM,01/31/2015 01:27:30 PM,01/31/2015 01:28:53 PM,01/31/2015 01:33:02 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 01:33:41 PM,2400 Block of WASHINGTON ST,San Francisco,94115,B04,38,3545,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7917498896271, -122.433570936569)",150311814-B01 +152980127,78,15114262,Medical Incident,10/25/2015,10/24/2015,10/25/2015 12:39:35 AM,10/25/2015 12:40:44 AM,10/25/2015 12:41:01 AM,10/25/2015 12:41:44 AM,10/25/2015 12:47:06 AM,10/25/2015 01:01:22 AM,10/25/2015 01:06:08 AM,Code 3 Transport,10/25/2015 01:41:45 AM,1200 Block of 14TH AVE,San Francisco,94122,B08,22,7346,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7647478412807, -122.471664663461)",152980127-78 +161000181,88,16039576,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:08:30 AM,04/09/2016 01:10:03 AM,04/09/2016 01:10:16 AM,04/09/2016 01:10:24 AM,04/09/2016 01:19:18 AM,04/09/2016 01:40:11 AM,04/09/2016 01:46:12 AM,Code 2 Transport,04/09/2016 02:41:06 AM,100 Block of HUGO ST,San Francisco,94122,B05,12,7321,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7652257112384, -122.45941290589)",161000181-88 +152530149,82,15096575,Medical Incident,09/10/2015,09/09/2015,09/10/2015 12:57:52 AM,09/10/2015 12:59:07 AM,09/10/2015 12:59:13 AM,09/10/2015 12:59:49 AM,09/10/2015 01:09:31 AM,09/10/2015 01:32:03 AM,09/10/2015 01:44:02 AM,Code 2 Transport,09/10/2015 02:10:05 AM,200 Block of VALLEY ST,San Francisco,94131,B06,11,5563,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7444850964362, -122.427858095746)",152530149-82 +151170060,E17,15044047,Medical Incident,04/27/2015,04/26/2015,04/27/2015 12:26:44 AM,04/27/2015 12:30:25 AM,04/27/2015 12:31:15 AM,04/27/2015 12:32:55 AM,04/27/2015 12:35:32 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Cancelled,04/27/2015 12:36:38 AM,3RD ST/NEWCOMB AV,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",151170060-E17 +152170905,T09,15082525,Medical Incident,08/05/2015,08/05/2015,08/05/2015 08:55:25 AM,08/05/2015 08:55:25 AM,08/05/2015 08:55:44 AM,08/05/2015 08:57:03 AM,08/05/2015 09:01:22 AM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,No Merit,08/05/2015 09:03:35 AM,PALOU AV/PHELPS ST,San Francisco,94124,B10,17,6471,A,E,3,false,Potentially Life-Threatening,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7361065057562, -122.394662059081)",152170905-T09 +161000116,68,16039562,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:40:55 AM,04/09/2016 12:43:29 AM,04/09/2016 12:43:53 AM,04/09/2016 12:44:16 AM,04/09/2016 12:51:41 AM,04/09/2016 01:03:13 AM,04/09/2016 01:17:22 AM,Code 2 Transport,04/09/2016 01:53:37 AM,OCEAN AV/GRANADA AV,San Francisco,94112,B09,15,8474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7241379892838, -122.457340951709)",161000116-68 +141130258,FB1,14038170,Administrative,04/23/2014,04/23/2014,04/23/2014 02:10:23 PM,04/23/2014 02:10:25 PM,04/23/2014 02:11:34 PM,04/25/2016 01:17:43 PM,04/25/2016 01:17:43 PM,04/25/2016 01:17:43 PM,04/25/2016 01:17:43 PM,Other,04/23/2014 02:12:04 PM,300 Block of THE EMBARCADERO,,94111,B03,35,900,3,3,3,false,,1,SUPPORT,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",141130258-FB1 +152083473,RS1,15079405,Structure Fire,07/27/2015,07/27/2015,07/27/2015 08:36:08 PM,07/27/2015 08:37:17 PM,07/27/2015 08:37:54 PM,07/27/2015 08:39:01 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/27/2015 08:41:49 PM,100 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,false,Alarm,1,RESCUE SQUAD,10,2,5,Hayes Valley,"(37.7727916205308, -122.424624269709)",152083473-RS1 +161000716,86,16039650,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:25:38 AM,04/09/2016 07:25:59 AM,04/09/2016 07:26:14 AM,04/09/2016 07:26:27 AM,04/09/2016 07:41:13 AM,04/09/2016 07:45:37 AM,04/09/2016 08:17:52 AM,Code 2 Transport,04/09/2016 08:43:53 AM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",161000716-86 +160941705,84,16037258,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:26:49 PM,04/03/2016 12:29:10 PM,04/03/2016 12:29:57 PM,04/03/2016 12:32:27 PM,04/03/2016 12:38:58 PM,04/03/2016 12:55:13 PM,04/03/2016 01:21:45 PM,Code 2 Transport,04/03/2016 02:03:34 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160941705-84 +160953033,81,16037732,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:49:38 PM,04/04/2016 05:53:53 PM,04/04/2016 05:57:25 PM,04/04/2016 05:58:25 PM,04/04/2016 06:24:26 PM,04/04/2016 06:32:26 PM,04/04/2016 06:55:51 PM,Code 2 Transport,04/04/2016 07:25:42 PM,23RD AV/TARAVAL ST,San Francisco,94116,B08,40,7442,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7428615042896, -122.479977643784)",160953033-81 +141653203,E26,14057053,Alarms,06/14/2014,06/14/2014,06/14/2014 08:36:08 PM,06/14/2014 08:38:20 PM,06/14/2014 08:39:09 PM,06/14/2014 08:40:00 PM,06/14/2014 08:45:04 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Fire,06/14/2014 08:58:31 PM,300 Block of SURREY ST,San Francisco,94131,B06,26,8175,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7357956635918, -122.438415048488)",141653203-E26 +160971312,62,16038361,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:22:57 AM,04/06/2016 10:23:22 AM,04/06/2016 10:23:33 AM,04/06/2016 10:23:42 AM,04/06/2016 10:29:15 AM,04/06/2016 10:45:17 AM,04/06/2016 10:50:15 AM,Code 3 Transport,04/06/2016 11:56:26 AM,1200 Block of PAGE ST,San Francisco,94117,B05,21,4251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7716208307015, -122.441356135466)",160971312-62 +143330654,E19,14117915,Medical Incident,11/29/2014,11/28/2014,11/29/2014 06:44:08 AM,11/29/2014 06:45:41 AM,11/29/2014 06:46:34 AM,11/29/2014 06:48:38 AM,11/29/2014 06:51:04 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 07:02:11 AM,200 Block of STRATFORD DR,San Francisco,94132,B09,19,8752,3,3,3,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7206744418505, -122.473579319627)",143330654-E19 +142790646,85,14098053,Medical Incident,10/06/2014,10/05/2014,10/06/2014 07:37:48 AM,10/06/2014 07:38:28 AM,10/06/2014 07:44:40 AM,10/06/2014 07:44:51 AM,10/06/2014 07:48:46 AM,10/06/2014 08:03:22 AM,10/06/2014 08:21:00 AM,Code 2 Transport,10/06/2014 08:56:42 AM,17TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7635716035073, -122.41733240732)",142790646-85 +143241578,E44,14114712,Medical Incident,11/20/2014,11/20/2014,11/20/2014 12:39:55 PM,11/20/2014 12:41:18 PM,11/20/2014 12:42:23 PM,11/20/2014 12:43:16 PM,11/20/2014 12:46:20 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Code 2 Transport,11/20/2014 01:03:43 PM,200 Block of PEABODY ST,San Francisco,94134,B09,44,6256,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7090147282704, -122.407917700697)",143241578-E44 +153340302,64,15128268,Medical Incident,11/30/2015,11/29/2015,11/30/2015 04:18:41 AM,11/30/2015 04:20:21 AM,11/30/2015 04:20:59 AM,11/30/2015 04:21:31 AM,11/30/2015 04:28:25 AM,11/30/2015 04:45:58 AM,11/30/2015 05:04:38 AM,Code 2 Transport,11/30/2015 06:59:09 AM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7720751846477, -122.408746829681)",153340302-64 +160960683,KM06,16037915,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:10:52 AM,04/05/2016 08:12:10 AM,04/05/2016 08:12:49 AM,04/05/2016 08:13:42 AM,04/05/2016 08:19:50 AM,04/05/2016 08:46:43 AM,04/05/2016 09:01:05 AM,Code 2 Transport,04/05/2016 09:30:09 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160960683-KM06 +152550088,E03,15097361,Medical Incident,09/12/2015,09/11/2015,09/12/2015 12:24:52 AM,09/12/2015 12:27:11 AM,09/12/2015 12:27:49 AM,09/12/2015 12:29:12 AM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Code 2 Transport,09/12/2015 12:31:07 AM,1500 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",152550088-E03 +142130272,55,14073708,Medical Incident,08/01/2014,07/31/2014,08/01/2014 02:22:06 AM,08/01/2014 02:22:06 AM,08/01/2014 02:22:52 AM,08/01/2014 02:23:05 AM,08/01/2014 02:34:47 AM,08/01/2014 02:45:47 AM,08/01/2014 02:55:39 AM,Code 2 Transport,08/01/2014 03:19:39 AM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7788157426427, -122.409325210496)",142130272-55 +142500530,KM01,14087069,Medical Incident,09/07/2014,09/06/2014,09/07/2014 03:13:48 AM,09/07/2014 03:14:29 AM,09/07/2014 03:40:44 AM,09/07/2014 03:40:44 AM,09/07/2014 03:51:30 AM,09/07/2014 04:08:43 AM,09/07/2014 04:30:24 AM,Code 2 Transport,09/07/2014 05:16:24 AM,2500 Block of 14TH AVE,San Francisco,94127,B08,40,7357,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,7,West of Twin Peaks,"(37.7404916850864, -122.470109127479)",142500530-KM01 +141050144,KM01,14035378,Medical Incident,04/15/2014,04/15/2014,04/15/2014 11:02:24 AM,04/15/2014 11:05:01 AM,04/15/2014 11:05:27 AM,04/15/2014 11:05:27 AM,04/15/2014 11:13:51 AM,04/15/2014 11:39:32 AM,04/15/2014 11:49:11 AM,Code 2 Transport,04/15/2014 12:28:07 PM,1000 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",141050144-KM01 +151390414,E03,15052662,Medical Incident,05/19/2015,05/18/2015,05/19/2015 06:04:24 AM,05/19/2015 06:06:17 AM,05/19/2015 06:06:34 AM,05/19/2015 06:09:05 AM,05/19/2015 06:10:56 AM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Code 2 Transport,05/19/2015 06:17:45 AM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",151390414-E03 +141160245,B04,14039211,Alarms,04/26/2014,04/26/2014,04/26/2014 03:58:48 PM,04/26/2014 03:59:54 PM,04/26/2014 04:00:11 PM,04/26/2014 04:01:29 PM,04/26/2014 04:03:51 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/26/2014 04:15:11 PM,800 Block of HYDE ST,SAN FRANCISCO,94109,B04,3,1557,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.7886527895166, -122.416853689502)",141160245-B04 +160991955,52,16039325,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:09:21 PM,04/08/2016 02:10:56 PM,04/08/2016 02:12:38 PM,04/08/2016 02:12:45 PM,04/08/2016 02:24:52 PM,04/08/2016 02:38:48 PM,04/08/2016 02:59:24 PM,Code 2 Transport,04/08/2016 03:18:26 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160991955-52 +150733565,E07,15028116,Medical Incident,03/14/2015,03/14/2015,03/14/2015 07:54:49 PM,03/14/2015 07:54:49 PM,03/14/2015 07:54:58 PM,03/14/2015 07:55:42 PM,03/14/2015 08:01:17 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,No Merit,03/14/2015 08:07:07 PM,18TH ST/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",150733565-E07 +143581005,KM02,14128066,Medical Incident,12/24/2014,12/24/2014,12/24/2014 10:06:29 AM,12/24/2014 10:06:29 AM,12/24/2014 10:08:46 AM,12/24/2014 10:09:43 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Unable to Locate,12/24/2014 10:16:13 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",143581005-KM02 +142391420,E03,14083090,Structure Fire,08/27/2014,08/27/2014,08/27/2014 11:50:39 AM,08/27/2014 11:50:39 AM,08/27/2014 11:51:27 AM,08/27/2014 11:51:55 AM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Fire,08/27/2014 11:54:50 AM,600 Block of LARKIN ST,San Francisco,94109,B02,3,1643,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",142391420-E03 +152432846,53,15092794,Medical Incident,08/31/2015,08/31/2015,08/31/2015 05:04:41 PM,08/31/2015 05:06:57 PM,08/31/2015 05:07:37 PM,08/31/2015 05:10:31 PM,08/31/2015 05:18:00 PM,08/31/2015 05:19:53 PM,08/31/2015 05:48:56 PM,Code 2 Transport,08/31/2015 06:24:44 PM,1200 Block of 17TH AVE,San Francisco,94122,B08,22,7367,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,4,Inner Sunset,"(37.7645970345757, -122.475120956654)",152432846-53 +142812992,E12,14098984,Medical Incident,10/08/2014,10/08/2014,10/08/2014 06:50:56 PM,10/08/2014 06:52:25 PM,10/08/2014 06:53:42 PM,10/08/2014 06:55:17 PM,10/08/2014 06:56:40 PM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 07:07:24 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",142812992-E12 +151712003,KM14,15065376,Medical Incident,06/20/2015,06/20/2015,06/20/2015 02:57:32 PM,06/20/2015 02:57:46 PM,06/20/2015 02:58:10 PM,06/20/2015 02:59:05 PM,06/20/2015 03:14:20 PM,06/20/2015 03:35:59 PM,06/20/2015 04:05:57 PM,Code 2 Transport,06/20/2015 04:55:46 PM,1200 Block of 3RD ST,San Francisco,94158,B03,8,2231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",151712003-KM14 +151331812,RC3,15050432,Medical Incident,05/13/2015,05/13/2015,05/13/2015 12:30:20 PM,05/13/2015 12:30:20 PM,05/13/2015 12:32:43 PM,05/13/2015 12:33:10 PM,05/13/2015 12:41:19 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Code 2 Transport,05/13/2015 12:50:17 PM,1500 Block of DOLORES ST,San Francisco,94110,B06,11,5576,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Noe Valley,"(37.7450456172368, -122.424347725679)",151331812-RC3 +141843215,E03,14063836,Medical Incident,07/03/2014,07/03/2014,07/03/2014 08:57:36 PM,07/03/2014 08:58:28 PM,07/03/2014 08:59:11 PM,07/03/2014 08:59:20 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/03/2014 09:00:29 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",141843215-E03 +152364001,E41,15090099,Structure Fire,08/24/2015,08/24/2015,08/24/2015 09:56:36 PM,08/24/2015 09:56:57 PM,08/24/2015 09:57:09 PM,08/24/2015 09:59:40 PM,08/24/2015 09:59:40 PM,04/25/2016 01:08:44 PM,04/25/2016 01:08:44 PM,Fire,08/24/2015 10:03:53 PM,700 Block of BUSH ST,San Francisco,94108,B01,2,1361,3,3,3,false,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",152364001-E41 +160921339,73,16036402,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:17:01 AM,04/01/2016 11:21:08 AM,04/01/2016 11:21:37 AM,04/01/2016 11:22:02 AM,04/01/2016 11:29:36 AM,04/01/2016 11:41:09 AM,04/01/2016 12:14:01 PM,Code 2 Transport,04/01/2016 12:29:00 PM,EL CAMINO DEL MAR/POINT LOBOS AV,San Francisco,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.779851069188, -122.509432938414)",160921339-73 +151181043,E07,15044547,Medical Incident,04/28/2015,04/28/2015,04/28/2015 09:39:50 AM,04/28/2015 09:39:50 AM,04/28/2015 09:41:24 AM,04/28/2015 09:42:52 AM,04/28/2015 09:46:23 AM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Other,04/28/2015 10:01:46 AM,16TH ST/MISSOURI ST,San Francisco,94107,B03,29,2414,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,10,Mission Bay,"(37.7664299686096, -122.396897105337)",151181043-E07 +142260642,T08,14078386,Structure Fire,08/14/2014,08/13/2014,08/14/2014 07:18:10 AM,08/14/2014 07:18:10 AM,08/14/2014 07:18:59 AM,08/14/2014 07:20:51 AM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Fire,08/14/2014 07:21:17 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",142260642-T08 +143043710,T01,14107710,Alarms,10/31/2014,10/31/2014,10/31/2014 10:35:21 PM,10/31/2014 10:37:01 PM,10/31/2014 10:37:14 PM,10/31/2014 10:38:40 PM,10/31/2014 10:41:36 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,Fire,10/31/2014 10:48:43 PM,1100 Block of FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,false,Alarm,1,TRUCK,1,2,6,South of Market,"(37.7760967348453, -122.40856429774)",143043710-T01 +152753719,E01,15105529,Structure Fire,10/02/2015,10/02/2015,10/02/2015 09:13:19 PM,10/02/2015 09:13:19 PM,10/02/2015 09:13:55 PM,10/02/2015 09:15:25 PM,10/02/2015 09:17:25 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,Fire,10/02/2015 09:18:22 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Alarm,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",152753719-E01 +160943203,70,16037407,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:03:04 PM,04/03/2016 08:03:47 PM,04/03/2016 08:04:11 PM,04/03/2016 08:04:43 PM,04/03/2016 08:04:43 PM,04/03/2016 08:16:44 PM,04/03/2016 08:25:13 PM,Code 3 Transport,04/03/2016 08:50:20 PM,900 Block of HYDE ST,San Francisco,94109,B04,3,1561,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",160943203-70 +142790695,87,14098059,Traffic Collision,10/06/2014,10/05/2014,10/06/2014 07:54:02 AM,10/06/2014 07:54:02 AM,10/06/2014 07:58:12 AM,10/06/2014 08:00:18 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 08:04:41 AM,SKYLINE BL/FORT FUNSTON RD,San Francisco,94132,B08,19,8714,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7136941259081, -122.498357018484)",142790695-87 +152333261,E21,15088940,Medical Incident,08/21/2015,08/21/2015,08/21/2015 06:43:51 PM,08/21/2015 06:43:51 PM,08/21/2015 06:44:09 PM,08/21/2015 06:46:03 PM,08/21/2015 06:46:52 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Code 2 Transport,08/21/2015 06:52:31 PM,500 Block of SCOTT ST,San Francisco,94117,B05,21,4136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7747325666892, -122.436102962462)",152333261-E21 +142531829,66,14088297,Medical Incident,09/10/2014,09/10/2014,09/10/2014 01:03:02 PM,09/10/2014 01:03:02 PM,09/10/2014 01:11:34 PM,09/10/2014 01:11:55 PM,09/10/2014 01:27:30 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,Patient Declined Transport,09/10/2014 02:02:55 PM,1100 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",142531829-66 +152783323,T12,15106818,Citizen Assist / Service Call,10/05/2015,10/05/2015,10/05/2015 08:01:51 PM,10/05/2015 08:03:50 PM,10/05/2015 08:04:09 PM,10/05/2015 08:05:09 PM,10/05/2015 08:07:13 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Code 2 Transport,10/05/2015 08:31:04 PM,1200 Block of STANYAN ST,San Francisco,94117,B05,12,5261,3,3,3,false,Alarm,1,TRUCK,1,5,5,Inner Sunset,"(37.7604839722785, -122.451687109267)",152783323-T12 +143454017,64,14123128,Medical Incident,12/11/2014,12/11/2014,12/11/2014 11:40:33 PM,12/11/2014 11:42:16 PM,12/11/2014 11:42:25 PM,12/11/2014 11:44:38 PM,12/11/2014 11:49:45 PM,12/12/2014 12:07:03 AM,12/12/2014 12:27:02 AM,Code 2 Transport,12/12/2014 01:00:32 AM,400 Block of WINSTON DR,San Francisco,94132,B08,19,8854,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7276780963446, -122.481160230776)",143454017-64 +160961000,KM06,16037939,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:33:56 AM,04/05/2016 09:33:56 AM,04/05/2016 09:35:43 AM,04/05/2016 09:36:24 AM,04/05/2016 09:48:17 AM,04/05/2016 10:14:30 AM,04/05/2016 11:04:53 AM,Code 2 Transport,04/05/2016 11:22:03 AM,0 Block of NEW MONTGOMERY ST,,94105,B03,1,2144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",160961000-KM06 +153202913,T10,15123148,Structure Fire,11/16/2015,11/16/2015,11/16/2015 06:00:44 PM,11/16/2015 06:00:44 PM,11/16/2015 06:00:54 PM,11/16/2015 06:02:37 PM,11/16/2015 06:04:31 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Fire,11/16/2015 06:11:04 PM,SCOTT ST/POST ST,San Francisco,94115,B04,10,4131,3,3,3,false,Alarm,1,TRUCK,1,5,5,Japantown,"(37.7845309189576, -122.438019671354)",153202913-T10 +143612056,B02,14129198,Alarms,12/27/2014,12/27/2014,12/27/2014 03:17:34 PM,12/27/2014 03:19:11 PM,12/27/2014 03:20:01 PM,12/27/2014 03:21:49 PM,12/27/2014 03:24:54 PM,04/25/2016 01:13:11 PM,04/25/2016 01:13:11 PM,Fire,12/27/2014 03:44:50 PM,300 Block of SANCHEZ ST,San Francisco,94114,B05,6,5252,3,3,3,true,Alarm,1,CHIEF,3,5,8,Castro/Upper Market,"(37.7635589214674, -122.430873426898)",143612056-B02 +152814000,RC1,15108048,Medical Incident,10/08/2015,10/08/2015,10/08/2015 10:19:24 PM,10/08/2015 10:20:08 PM,10/08/2015 10:28:53 PM,10/08/2015 10:29:15 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Patient Declined Transport,10/08/2015 10:29:48 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",152814000-RC1 +152103576,88,15080152,Medical Incident,07/29/2015,07/29/2015,07/29/2015 09:09:22 PM,07/29/2015 09:10:36 PM,07/29/2015 09:11:01 PM,07/29/2015 09:11:32 PM,07/29/2015 09:18:45 PM,07/29/2015 09:29:04 PM,07/29/2015 09:45:23 PM,Code 2 Transport,07/29/2015 10:20:56 PM,1400 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7300297211845, -122.387395567373)",152103576-88 +152850018,B03,15109253,Alarms,10/12/2015,10/11/2015,10/12/2015 12:03:43 AM,10/12/2015 12:05:25 AM,10/12/2015 12:05:50 AM,10/12/2015 12:08:14 AM,10/12/2015 12:13:16 AM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/12/2015 12:33:58 AM,900 Block of TENNESSEE ST,San Francisco,94107,B10,4,2471,3,3,3,false,Alarm,1,CHIEF,2,10,10,Potrero Hill,"(37.7591635202376, -122.389298021323)",152850018-B03 +160983148,89,16039059,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:23:38 PM,04/07/2016 06:25:12 PM,04/07/2016 06:25:26 PM,04/07/2016 06:25:46 PM,04/07/2016 06:48:46 PM,04/07/2016 07:05:20 PM,04/07/2016 07:18:16 PM,Code 2 Transport,04/07/2016 08:06:23 PM,BEACH ST/LARKIN ST,San Francisco,94109,B01,28,1615,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8064363647501, -122.422196208979)",160983148-89 +160931387,AM08,16036822,Citizen Assist / Service Call,04/02/2016,04/02/2016,04/02/2016 11:25:00 AM,04/02/2016 11:26:05 AM,04/02/2016 11:39:06 AM,04/02/2016 11:39:06 AM,04/02/2016 11:52:48 AM,04/02/2016 12:09:24 PM,04/02/2016 12:31:49 PM,Code 2 Transport,04/02/2016 01:05:22 PM,1100 Block of CHURCH ST,San Francisco,94114,B06,11,5523,3,3,3,false,Alarm,1,PRIVATE,2,6,8,Noe Valley,"(37.7528749335192, -122.427474292895)",160931387-AM08 +152581035,65,15098574,Medical Incident,09/15/2015,09/15/2015,09/15/2015 09:23:12 AM,09/15/2015 09:23:24 AM,09/15/2015 09:26:56 AM,09/15/2015 09:28:14 AM,09/15/2015 09:31:26 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Fire,09/15/2015 09:36:38 AM,1700 Block of 21ST AVE,San Francisco,94122,B08,40,7431,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.755082711617, -122.478610954739)",152581035-65 +160930494,85,16036715,Medical Incident,04/02/2016,04/01/2016,04/02/2016 04:05:17 AM,04/02/2016 04:06:31 AM,04/02/2016 04:06:44 AM,04/02/2016 04:06:54 AM,04/02/2016 04:09:19 AM,04/02/2016 04:42:19 AM,04/02/2016 05:06:44 AM,Code 2 Transport,04/02/2016 05:31:29 AM,100 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",160930494-85 +160922539,KM02,16036518,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:42:28 PM,04/01/2016 04:43:00 PM,04/01/2016 04:43:13 PM,04/01/2016 04:43:35 PM,04/01/2016 04:53:28 PM,04/01/2016 05:17:23 PM,04/01/2016 05:43:39 PM,Code 2 Transport,04/01/2016 06:24:02 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160922539-KM02 +160970807,53,16038314,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 08:25:18 AM,04/06/2016 08:25:55 AM,04/06/2016 08:26:35 AM,04/06/2016 08:26:49 AM,04/06/2016 08:31:51 AM,04/06/2016 08:54:26 AM,04/06/2016 09:10:36 AM,Code 2 Transport,04/06/2016 09:48:32 AM,4100 Block of 20TH ST,San Francisco,94114,B06,6,5443,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7576652664, -122.434139079273)",160970807-53 +143571970,B01,14127784,Alarms,12/23/2014,12/23/2014,12/23/2014 01:40:59 PM,12/23/2014 01:43:00 PM,12/23/2014 01:43:14 PM,12/23/2014 01:45:08 PM,12/23/2014 01:47:30 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Fire,12/23/2014 01:55:00 PM,300 Block of FRANCISCO ST,San Francisco,94133,B01,28,131,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8050285945628, -122.411146080313)",143571970-B01 +143012026,KM12,14106294,Medical Incident,10/28/2014,10/28/2014,10/28/2014 02:53:26 PM,10/28/2014 02:53:26 PM,10/28/2014 02:54:09 PM,10/28/2014 02:55:55 PM,10/28/2014 03:01:52 PM,10/28/2014 03:36:36 PM,10/28/2014 03:49:30 PM,Code 2 Transport,10/28/2014 04:29:56 PM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",143012026-KM12 +160940928,52,16037195,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:20:29 AM,04/03/2016 08:20:29 AM,04/03/2016 08:20:58 AM,04/03/2016 08:21:05 AM,04/03/2016 08:29:00 AM,04/03/2016 08:41:59 AM,04/03/2016 08:47:10 AM,Code 2 Transport,04/03/2016 09:23:10 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160940928-52 +143290993,E48,14116603,Vehicle Fire,11/25/2014,11/25/2014,11/25/2014 09:14:57 AM,11/25/2014 09:18:31 AM,11/25/2014 09:20:13 AM,11/25/2014 09:21:49 AM,11/25/2014 09:30:48 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/25/2014 09:33:14 AM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,3,3,3,true,Fire,1,ENGINE,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",143290993-E48 +160933422,64,16037044,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:04:31 PM,04/02/2016 09:05:21 PM,04/02/2016 09:07:49 PM,04/02/2016 09:08:18 PM,04/02/2016 09:22:26 PM,04/02/2016 09:35:37 PM,04/02/2016 09:56:59 PM,Code 2 Transport,04/02/2016 10:31:09 PM,500 Block of BEACH ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8069135411381, -122.418073383892)",160933422-64 +160980952,74,16038821,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:38:22 AM,04/07/2016 08:40:40 AM,04/07/2016 08:42:46 AM,04/07/2016 08:42:54 AM,04/07/2016 09:03:19 AM,04/07/2016 09:08:10 AM,04/07/2016 09:29:58 AM,Code 2 Transport,04/07/2016 10:06:06 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160980952-74 +160993629,64,16039477,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:21:58 PM,04/08/2016 09:23:26 PM,04/08/2016 09:23:48 PM,04/08/2016 09:24:06 PM,04/08/2016 09:30:56 PM,04/08/2016 09:41:18 PM,04/08/2016 09:51:58 PM,Code 2 Transport,04/08/2016 10:30:14 PM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160993629-64 +152311180,T06,15088059,Structure Fire,08/19/2015,08/19/2015,08/19/2015 10:11:19 AM,08/19/2015 10:11:19 AM,08/19/2015 10:12:24 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Other,08/19/2015 10:12:52 AM,17TH ST/TREAT AV,San Francisco,94110,B02,7,5245,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.76382320884, -122.41358757035)",152311180-T06 +160993723,83,16039494,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:49:27 PM,04/08/2016 09:49:27 PM,04/08/2016 09:54:46 PM,04/08/2016 09:55:00 PM,04/08/2016 09:59:27 PM,04/08/2016 10:02:57 PM,04/08/2016 10:43:43 PM,Code 2 Transport,04/08/2016 11:17:57 PM,100 Block of SICKLES AVE,San Francisco,94112,B09,33,6213,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7099816740397, -122.454168047139)",160993723-83 +151952261,E07,15074432,Other,07/14/2015,07/14/2015,07/14/2015 03:31:07 PM,07/14/2015 03:34:21 PM,07/14/2015 03:34:57 PM,07/14/2015 03:36:06 PM,07/14/2015 03:37:01 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,Fire,07/14/2015 03:58:41 PM,800 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5433,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7595614667718, -122.417018134108)",151952261-E07 +160952733,87,16037703,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:35:06 PM,04/04/2016 04:36:55 PM,04/04/2016 04:37:20 PM,04/04/2016 04:38:23 PM,04/04/2016 04:43:42 PM,04/04/2016 05:04:17 PM,04/04/2016 05:23:41 PM,Code 2 Transport,04/04/2016 06:06:30 PM,100 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7215,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7876931888724, -122.484718840648)",160952733-87 +160932711,77,16036966,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:29:48 PM,04/02/2016 05:32:09 PM,04/02/2016 05:34:35 PM,04/02/2016 05:34:35 PM,04/02/2016 05:44:43 PM,04/02/2016 05:51:48 PM,04/02/2016 05:55:42 PM,Code 2 Transport,04/02/2016 06:30:26 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160932711-77 +151140062,E05,15042914,Medical Incident,04/24/2015,04/23/2015,04/24/2015 12:28:52 AM,04/24/2015 12:30:14 AM,04/24/2015 12:32:23 AM,04/24/2015 12:33:56 AM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Code 2 Transport,04/24/2015 12:37:23 AM,1500 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7754543454069, -122.442133697759)",151140062-E05 +161001589,89,16039758,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:54:38 PM,04/09/2016 12:56:02 PM,04/09/2016 12:56:23 PM,04/09/2016 12:56:42 PM,04/09/2016 01:04:28 PM,04/09/2016 01:28:32 PM,04/09/2016 01:46:51 PM,Code 2 Transport,04/09/2016 02:46:53 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",161001589-89 +160950336,75,16037507,Medical Incident,04/04/2016,04/03/2016,04/04/2016 04:29:28 AM,04/04/2016 04:31:00 AM,04/04/2016 04:32:04 AM,04/04/2016 04:32:51 AM,04/04/2016 04:43:51 AM,04/04/2016 04:55:13 AM,04/04/2016 05:07:55 AM,Code 2 Transport,04/04/2016 05:30:48 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160950336-75 +142400778,72,14083395,Medical Incident,08/28/2014,08/28/2014,08/28/2014 08:37:24 AM,08/28/2014 08:38:10 AM,08/28/2014 08:38:36 AM,08/28/2014 08:38:49 AM,08/28/2014 08:42:58 AM,08/28/2014 09:11:22 AM,08/28/2014 09:17:39 AM,Code 3 Transport,08/28/2014 10:07:00 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",142400778-72 +152550698,E07,15097415,Structure Fire,09/12/2015,09/11/2015,09/12/2015 07:20:25 AM,09/12/2015 07:20:25 AM,09/12/2015 07:20:50 AM,09/12/2015 07:22:16 AM,09/12/2015 07:24:12 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 07:28:04 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",152550698-E07 +141120348,T01,14037936,Structure Fire,04/22/2014,04/22/2014,04/22/2014 08:50:14 PM,04/22/2014 08:50:14 PM,04/22/2014 08:50:31 PM,04/22/2014 08:52:56 PM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Fire,04/22/2014 08:53:45 PM,0 Block of TAYLOR ST,,94102,B03,1,1454,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",141120348-T01 +152960861,RC2,15113646,Medical Incident,10/23/2015,10/23/2015,10/23/2015 08:36:39 AM,10/23/2015 08:37:59 AM,10/23/2015 08:40:37 AM,10/23/2015 08:40:37 AM,10/23/2015 08:42:25 AM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,No Merit,10/23/2015 09:04:15 AM,18TH AV/GEARY BL,San Francisco,94121,B07,31,7164,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7804396365064, -122.477239888569)",152960861-RC2 +143520152,T07,14125623,Alarms,12/18/2014,12/17/2014,12/18/2014 01:18:48 AM,12/18/2014 01:19:54 AM,12/18/2014 01:20:11 AM,12/18/2014 01:22:32 AM,12/18/2014 01:24:50 AM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Fire,12/18/2014 01:29:30 AM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",143520152-T07 +152633238,71,15100805,Medical Incident,09/20/2015,09/20/2015,09/20/2015 07:11:44 PM,09/20/2015 07:11:44 PM,09/20/2015 07:12:46 PM,09/20/2015 07:13:15 PM,09/20/2015 07:33:19 PM,09/20/2015 07:44:30 PM,09/20/2015 07:49:48 PM,Code 2 Transport,09/20/2015 08:21:30 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695032629887, -122.450452600564)",152633238-71 +160970849,54,16038321,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:38:04 AM,04/06/2016 08:38:04 AM,04/06/2016 08:38:39 AM,04/06/2016 08:38:54 AM,04/06/2016 08:47:51 AM,04/06/2016 08:50:44 AM,04/06/2016 09:12:40 AM,Code 2 Transport,04/06/2016 09:39:00 AM,OFARRELL ST/JONES ST,San Francisco,94102,B02,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160970849-54 +150310294,RC3,15011828,Traffic Collision,01/31/2015,01/30/2015,01/31/2015 01:59:24 AM,01/31/2015 01:59:24 AM,01/31/2015 01:59:59 AM,01/31/2015 02:01:52 AM,01/31/2015 02:05:38 AM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Other,01/31/2015 02:26:51 AM,100 Block of CHURCH ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,8,Castro/Upper Market,"(37.7690612353533, -122.429159883658)",150310294-RC3 +160952785,50,16037712,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:47:11 PM,04/04/2016 04:47:43 PM,04/04/2016 04:48:43 PM,04/04/2016 04:48:50 PM,04/04/2016 04:57:15 PM,04/04/2016 05:28:38 PM,04/04/2016 05:38:12 PM,Code 2 Transport,04/04/2016 06:22:51 PM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",160952785-50 +152532516,68,15096772,Medical Incident,09/10/2015,09/10/2015,09/10/2015 03:38:45 PM,09/10/2015 03:41:24 PM,09/10/2015 03:45:02 PM,09/10/2015 03:45:23 PM,09/10/2015 03:56:15 PM,09/10/2015 04:12:18 PM,09/10/2015 04:45:37 PM,Code 2 Transport,09/10/2015 05:19:03 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.773955543025, -122.420958448413)",152532516-68 +151220214,67,15046121,Medical Incident,05/02/2015,05/01/2015,05/02/2015 01:25:31 AM,05/02/2015 01:27:53 AM,05/02/2015 01:28:47 AM,05/02/2015 01:29:21 AM,05/02/2015 01:34:06 AM,05/02/2015 01:41:48 AM,04/25/2016 01:10:50 PM,Code 2 Transport,05/02/2015 02:14:14 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",151220214-67 +153473408,AM14,15133869,Medical Incident,12/13/2015,12/13/2015,12/13/2015 10:14:25 PM,12/13/2015 10:16:30 PM,12/13/2015 10:17:17 PM,12/13/2015 10:18:03 PM,12/13/2015 10:20:50 PM,12/13/2015 10:45:21 PM,12/13/2015 10:56:58 PM,Code 2 Transport,12/13/2015 11:24:25 PM,PARNASSUS AV/HILLWAY AV,San Francisco,94131,B05,12,5155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,7,Inner Sunset,"(37.7638146894796, -122.456669911754)",153473408-AM14 +143191761,E10,14112970,Medical Incident,11/15/2014,11/15/2014,11/15/2014 01:03:45 PM,11/15/2014 01:04:21 PM,11/15/2014 01:04:35 PM,11/15/2014 01:05:49 PM,11/15/2014 01:08:21 PM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Code 2 Transport,11/15/2014 01:14:14 PM,SACRAMENTO ST/CHERRY ST,San Francisco,94118,B07,10,4441,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7869282192113, -122.45687451949)",143191761-E10 +161001057,50,16039690,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:55:04 AM,04/09/2016 09:56:03 AM,04/09/2016 09:56:24 AM,04/09/2016 09:56:31 AM,04/09/2016 10:16:05 AM,04/09/2016 10:32:27 AM,04/09/2016 10:56:33 AM,Code 2 Transport,04/09/2016 11:37:12 AM,100 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",161001057-50 +143422117,E13,14121558,Medical Incident,12/08/2014,12/08/2014,12/08/2014 02:23:05 PM,12/08/2014 02:25:56 PM,12/08/2014 02:26:09 PM,12/08/2014 02:27:02 PM,12/08/2014 02:31:25 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 03:05:32 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",143422117-E13 +160983278,63,16039073,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:55:23 PM,04/07/2016 06:55:23 PM,04/07/2016 06:56:16 PM,04/07/2016 06:56:31 PM,04/07/2016 07:01:42 PM,04/07/2016 07:10:38 PM,04/07/2016 07:33:42 PM,Code 2 Transport,04/07/2016 08:09:55 PM,UNION ST/VAN NESS AV,San Francisco,94109,B04,41,3131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Russian Hill,"(37.7985524526538, -122.423982146754)",160983278-63 +141351443,B03,14046138,Alarms,05/15/2014,05/15/2014,05/15/2014 11:17:52 AM,05/15/2014 11:19:16 AM,05/15/2014 11:19:33 AM,05/15/2014 11:20:46 AM,05/15/2014 11:29:20 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/15/2014 11:29:44 AM,1500 Block of BRYANT ST,San Francisco,94103,B02,29,5222,3,3,3,false,Alarm,1,CHIEF,3,2,9,Mission,"(37.767536533024, -122.410739256407)",141351443-B03 +160930094,AM24,16036675,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:36:43 AM,04/02/2016 12:37:11 AM,04/02/2016 12:38:02 AM,04/02/2016 12:38:23 AM,04/02/2016 12:45:39 AM,04/02/2016 12:56:50 AM,04/02/2016 01:09:02 AM,Code 2 Transport,04/02/2016 01:39:09 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160930094-AM24 +160931673,76,16036850,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 12:44:43 PM,04/02/2016 12:45:24 PM,04/02/2016 12:46:42 PM,04/02/2016 12:46:48 PM,04/02/2016 12:55:17 PM,04/02/2016 01:03:30 PM,04/02/2016 01:10:33 PM,Code 2 Transport,04/02/2016 01:26:15 PM,SILVER AV/BAYSHORE BL,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Portola,"(37.7329487834835, -122.404657098442)",160931673-76 +150361733,E28,15013825,Medical Incident,02/05/2015,02/05/2015,02/05/2015 12:53:40 PM,02/05/2015 12:54:02 PM,02/05/2015 12:54:16 PM,02/05/2015 12:54:59 PM,02/05/2015 12:57:25 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Code 2 Transport,02/05/2015 01:07:45 PM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",150361733-E28 +142721110,E03,14095335,Medical Incident,09/29/2014,09/29/2014,09/29/2014 10:13:43 AM,09/29/2014 10:14:44 AM,09/29/2014 10:16:34 AM,09/29/2014 10:16:51 AM,09/29/2014 10:20:07 AM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Code 2 Transport,09/29/2014 10:25:30 AM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",142721110-E03 +160990949,88,16039234,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:24:14 AM,04/08/2016 09:29:18 AM,04/08/2016 09:29:41 AM,04/08/2016 09:30:04 AM,04/08/2016 09:53:06 AM,04/08/2016 10:13:00 AM,04/08/2016 10:31:45 AM,Code 2 Transport,04/08/2016 11:11:52 AM,POLK ST/MARKET ST,San Francisco,94103,B02,36,3111,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",160990949-88 +151470297,E09,15055793,Medical Incident,05/27/2015,05/26/2015,05/27/2015 03:41:00 AM,05/27/2015 03:43:36 AM,05/27/2015 03:43:43 AM,05/27/2015 03:45:53 AM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Code 2 Transport,05/27/2015 03:47:59 AM,3RD ST/EVANS AV,San Francisco,94124,B10,25,6457,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",151470297-E09 +150030351,57,15000959,Medical Incident,01/03/2015,01/02/2015,01/03/2015 02:26:36 AM,01/03/2015 02:42:18 AM,01/03/2015 02:42:33 AM,01/03/2015 02:42:45 AM,01/03/2015 02:44:25 AM,01/03/2015 03:01:23 AM,01/03/2015 03:11:30 AM,Code 2 Transport,01/03/2015 04:03:00 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",150030351-57 +151382663,53,15052504,Medical Incident,05/18/2015,05/18/2015,05/18/2015 05:15:56 PM,05/18/2015 05:15:56 PM,05/18/2015 05:16:42 PM,05/18/2015 05:17:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Code 2 Transport,05/18/2015 05:17:53 PM,600 Block of CAPITOL AVE,San Francisco,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Oceanview/Merced/Ingleside,"(37.7161811504722, -122.458990060206)",151382663-53 +143400589,62,14120621,Medical Incident,12/06/2014,12/05/2014,12/06/2014 04:49:10 AM,12/06/2014 04:53:31 AM,12/06/2014 04:53:54 AM,12/06/2014 04:54:11 AM,12/06/2014 04:54:11 AM,12/06/2014 05:18:03 AM,12/06/2014 05:47:50 AM,Code 2 Transport,12/06/2014 06:32:16 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,2,B,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",143400589-62 +153022004,89,15115857,Medical Incident,10/29/2015,10/29/2015,10/29/2015 01:22:41 PM,10/29/2015 01:24:29 PM,10/29/2015 01:27:05 PM,10/29/2015 01:29:00 PM,10/29/2015 01:48:55 PM,10/29/2015 01:48:57 PM,10/29/2015 02:32:28 PM,Code 2 Transport,10/29/2015 02:47:29 PM,2200 Block of HAYES ST,San Francisco,94117,B05,21,4543,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",153022004-89 +151290307,E01,15048827,Medical Incident,05/09/2015,05/08/2015,05/09/2015 02:01:41 AM,05/09/2015 02:03:31 AM,05/09/2015 02:04:25 AM,05/09/2015 02:06:41 AM,05/09/2015 02:14:48 AM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Code 2 Transport,05/09/2015 02:27:19 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",151290307-E01 +160921697,52,16036439,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 01:04:13 PM,04/01/2016 01:04:13 PM,04/01/2016 01:04:55 PM,04/01/2016 01:05:05 PM,04/01/2016 01:12:45 PM,04/01/2016 01:44:39 PM,04/01/2016 02:25:24 PM,Code 2 Transport,04/01/2016 03:08:01 PM,BAY ST/HYDE ST,San Francisco,94109,B01,28,1614,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8047903067381, -122.420178127211)",160921697-52 +150463556,E01,15018093,Medical Incident,02/15/2015,02/15/2015,02/15/2015 09:45:16 PM,02/15/2015 09:46:04 PM,02/15/2015 09:46:36 PM,02/15/2015 09:48:11 PM,02/15/2015 09:51:43 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Code 2 Transport,02/15/2015 09:57:02 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",150463556-E01 +153452239,KM06,15132844,Medical Incident,12/11/2015,12/11/2015,12/11/2015 02:51:06 PM,12/11/2015 02:53:12 PM,12/11/2015 02:54:27 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,No Merit,12/11/2015 02:58:59 PM,BUSH ST/KEARNY ST,San Francisco,94104,B01,13,1235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",153452239-KM06 +150530495,60,15020267,Medical Incident,02/22/2015,02/21/2015,02/22/2015 03:13:27 AM,02/22/2015 03:13:27 AM,02/22/2015 03:14:05 AM,02/22/2015 03:14:14 AM,02/22/2015 03:25:53 AM,02/22/2015 03:36:55 AM,04/25/2016 01:12:06 PM,Code 2 Transport,02/22/2015 04:41:45 AM,LEAVENWORTH ST/TURK ST,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",150530495-60 +143422803,E31,14121628,Medical Incident,12/08/2014,12/08/2014,12/08/2014 05:07:51 PM,12/08/2014 05:07:51 PM,12/08/2014 05:13:05 PM,12/08/2014 05:13:05 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,No Merit,12/08/2014 05:14:43 PM,2300 Block of MARKET ST,San Francisco,94114,B05,6,5252,2,3,3,false,Potentially Life-Threatening,1,ENGINE,3,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",143422803-E31 +141190395,E38,14040338,Medical Incident,04/29/2014,04/29/2014,04/29/2014 08:16:37 PM,04/29/2014 08:17:26 PM,04/29/2014 08:18:26 PM,04/29/2014 08:19:28 PM,04/29/2014 08:33:01 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Other,04/29/2014 08:40:26 PM,1800 Block of PINE ST,SAN FRANCISCO,94109,B04,38,3325,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",141190395-E38 +143563431,AM20,14127502,Medical Incident,12/22/2014,12/22/2014,12/22/2014 07:34:47 PM,12/22/2014 07:35:36 PM,12/22/2014 07:35:44 PM,12/22/2014 07:36:49 PM,12/22/2014 07:40:12 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Cancelled,12/22/2014 07:46:19 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",143563431-AM20 +150322123,83,15012400,Medical Incident,02/01/2015,02/01/2015,02/01/2015 02:18:23 PM,02/01/2015 02:18:56 PM,02/01/2015 02:20:11 PM,02/01/2015 02:20:14 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,No Merit,02/01/2015 02:30:17 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",150322123-83 +151890695,E03,15072081,Medical Incident,07/08/2015,07/07/2015,07/08/2015 07:50:10 AM,07/08/2015 07:51:56 AM,07/08/2015 07:53:46 AM,07/08/2015 07:54:57 AM,07/08/2015 07:59:34 AM,04/25/2016 01:09:35 PM,04/25/2016 01:09:35 PM,No Merit,07/08/2015 08:00:41 AM,OFARRELL ST/LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",151890695-E03 +153294035,E32,15126814,Structure Fire,11/25/2015,11/25/2015,11/25/2015 10:42:51 PM,11/25/2015 10:42:51 PM,11/25/2015 10:43:42 PM,11/25/2015 10:44:48 PM,11/25/2015 10:47:16 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Fire,11/25/2015 10:47:20 PM,CHENERY ST/CHARLES ST,San Francisco,94131,B06,32,8113,3,3,3,false,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7383577387837, -122.42607557791)",153294035-E32 +150051813,E19,15001864,Medical Incident,01/05/2015,01/05/2015,01/05/2015 01:15:34 PM,01/05/2015 01:17:56 PM,01/05/2015 01:19:07 PM,01/05/2015 01:19:58 PM,01/05/2015 01:24:11 PM,04/25/2016 01:13:01 PM,04/25/2016 01:13:01 PM,Code 2 Transport,01/05/2015 02:14:37 PM,2900 Block of 21ST AVE,San Francisco,94132,B08,19,8732,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7336313643554, -122.477083030431)",150051813-E19 +151230349,E01,15046542,Medical Incident,05/03/2015,05/02/2015,05/03/2015 02:17:04 AM,05/03/2015 02:19:07 AM,05/03/2015 02:20:12 AM,05/03/2015 02:21:08 AM,05/03/2015 02:26:23 AM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Code 2 Transport,05/03/2015 02:26:36 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151230349-E01 +142192211,88,14076028,Medical Incident,08/07/2014,08/07/2014,08/07/2014 03:49:29 PM,08/07/2014 03:50:36 PM,08/07/2014 03:51:17 PM,08/07/2014 03:51:31 PM,08/07/2014 03:53:10 PM,08/07/2014 04:04:12 PM,08/07/2014 04:22:12 PM,Code 2 Transport,08/07/2014 04:29:47 PM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",142192211-88 +142781146,87,14097738,Medical Incident,10/05/2014,10/05/2014,10/05/2014 09:28:44 AM,10/05/2014 09:30:26 AM,10/05/2014 09:33:09 AM,10/05/2014 09:35:34 AM,10/05/2014 10:06:18 AM,10/05/2014 10:06:24 AM,10/05/2014 10:52:50 AM,Code 2 Transport,10/05/2014 10:55:47 AM,200 Block of PAGE ST,San Francisco,94102,B02,36,3313,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7737235017153, -122.424812687358)",142781146-87 +153472045,55,15133725,Medical Incident,12/13/2015,12/13/2015,12/13/2015 02:27:26 PM,12/13/2015 02:28:46 PM,12/13/2015 02:29:32 PM,12/13/2015 02:30:14 PM,12/13/2015 02:48:10 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Medical Examiner,12/13/2015 03:50:36 PM,500 Block of AMAZON AVE,San Francisco,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7155859094303, -122.435741243059)",153472045-55 +142731848,E36,14095720,Medical Incident,09/30/2014,09/30/2014,09/30/2014 01:09:10 PM,09/30/2014 01:16:21 PM,09/30/2014 01:18:07 PM,09/30/2014 01:19:13 PM,09/30/2014 01:23:46 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Code 2 Transport,09/30/2014 01:32:06 PM,0 Block of DR CARLTON B GOODLETT PL,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",142731848-E36 +160981926,AM14,16038921,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:57:25 PM,04/07/2016 12:59:06 PM,04/07/2016 12:59:47 PM,04/07/2016 01:00:36 PM,04/07/2016 01:03:19 PM,04/07/2016 01:23:18 PM,04/07/2016 01:34:16 PM,Code 2 Transport,04/07/2016 02:00:39 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160981926-AM14 +153212445,E10,15123501,Medical Incident,11/17/2015,11/17/2015,11/17/2015 03:29:09 PM,11/17/2015 03:30:25 PM,11/17/2015 03:31:25 PM,11/17/2015 03:32:08 PM,11/17/2015 03:32:08 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Code 2 Transport,11/17/2015 03:54:34 PM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",153212445-E10 +143222432,75,14114083,Medical Incident,11/18/2014,11/18/2014,11/18/2014 04:19:59 PM,11/18/2014 04:21:57 PM,11/18/2014 04:23:18 PM,11/18/2014 04:23:33 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,Gone on Arrival,11/18/2014 04:28:35 PM,JONES ST/GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",143222432-75 +160993195,70,16039433,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:03:50 PM,04/08/2016 07:04:54 PM,04/08/2016 07:06:29 PM,04/08/2016 07:06:53 PM,04/08/2016 07:15:23 PM,04/08/2016 07:19:04 PM,04/08/2016 07:32:09 PM,Code 2 Transport,04/08/2016 07:46:39 PM,0 Block of SHERMAN ST,San Francisco,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7766015774052, -122.405924386123)",160993195-70 +142332148,B09,14080972,Structure Fire,08/21/2014,08/21/2014,08/21/2014 03:14:58 PM,08/21/2014 03:14:58 PM,08/21/2014 03:16:05 PM,08/21/2014 03:17:17 PM,08/21/2014 03:22:18 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,Fire,08/21/2014 03:31:57 PM,300 Block of LA GRANDE AVE,San Francisco,94112,B09,43,616,3,3,3,false,Alarm,1,CHIEF,2,9,11,McLaren Park,"(37.7197515959451, -122.425588438069)",142332148-B09 +150492512,E17,15019021,Alarms,02/18/2015,02/18/2015,02/18/2015 03:34:16 PM,02/18/2015 03:34:52 PM,02/18/2015 03:35:51 PM,02/18/2015 03:38:00 PM,02/18/2015 03:39:58 PM,04/25/2016 01:12:10 PM,04/25/2016 01:12:10 PM,Fire,02/18/2015 03:43:38 PM,1500 Block of OAKDALE AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7341109185818, -122.389372863694)",150492512-E17 +141782768,E14,14061518,Medical Incident,06/27/2014,06/27/2014,06/27/2014 06:30:35 PM,06/27/2014 06:33:27 PM,06/27/2014 06:39:35 PM,06/27/2014 06:40:39 PM,06/27/2014 06:41:50 PM,04/25/2016 01:16:32 PM,04/25/2016 01:16:32 PM,Code 2 Transport,06/27/2014 07:25:48 PM,5900 Block of GEARY BLVD,San Francisco,94121,B07,14,7213,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7800403908757, -122.483118050539)",141782768-E14 +161002511,AM16,16039865,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 05:49:25 PM,04/09/2016 05:49:25 PM,04/09/2016 05:51:05 PM,04/09/2016 05:51:46 PM,04/09/2016 05:53:54 PM,04/09/2016 06:26:03 PM,04/09/2016 06:34:02 PM,Code 2 Transport,04/09/2016 07:31:36 PM,VAN NESS AV/OFARRELL ST,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",161002511-AM16 +160960174,62,16037859,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:35:37 AM,04/05/2016 01:38:05 AM,04/05/2016 01:38:25 AM,04/05/2016 01:38:36 AM,04/05/2016 01:45:25 AM,04/05/2016 02:26:15 AM,04/05/2016 02:56:32 AM,Code 2 Transport,04/05/2016 03:57:20 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160960174-62 +142023024,E08,14070021,Medical Incident,07/21/2014,07/21/2014,07/21/2014 07:56:50 PM,07/21/2014 07:58:30 PM,07/21/2014 07:58:36 PM,07/21/2014 07:59:42 PM,07/21/2014 08:02:54 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Code 2 Transport,07/21/2014 08:20:09 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",142023024-E08 +143383091,E26,14120096,Medical Incident,12/04/2014,12/04/2014,12/04/2014 06:21:41 PM,12/04/2014 06:25:22 PM,12/04/2014 06:25:39 PM,12/04/2014 06:27:04 PM,12/04/2014 06:31:10 PM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,Code 2 Transport,12/04/2014 06:36:06 PM,4600 Block of 25TH ST,San Francisco,94114,B06,24,5544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Noe Valley,"(37.7492110432955, -122.440992705965)",143383091-E26 +151630555,77,15062186,Medical Incident,06/12/2015,06/11/2015,06/12/2015 06:59:32 AM,06/12/2015 06:59:32 AM,06/12/2015 07:00:12 AM,06/12/2015 07:01:30 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/12/2015 07:05:52 AM,600 Block of RHODE ISLAND ST,San Francisco,94107,B02,37,2455,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7615942041508, -122.402196081672)",151630555-77 +160982251,67,16038959,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:24:37 PM,04/07/2016 02:26:28 PM,04/07/2016 02:30:10 PM,04/07/2016 02:30:19 PM,04/07/2016 02:50:59 PM,04/07/2016 03:30:47 PM,04/07/2016 03:22:05 PM,Code 2 Transport,04/07/2016 03:53:18 PM,2200 Block of PACIFIC AVE,San Francisco,94115,B04,38,3441,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7936081074622, -122.432257471767)",160982251-67 +142980783,E36,14105090,Medical Incident,10/25/2014,10/24/2014,10/25/2014 06:51:37 AM,10/25/2014 06:51:37 AM,10/25/2014 06:51:54 AM,10/25/2014 06:53:56 AM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Patient Declined Transport,10/25/2014 07:02:29 AM,800 Block of FRANKLIN ST,San Francisco,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7824610050691, -122.422348287686)",142980783-E36 +160961202,61,16037955,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:28:00 AM,04/05/2016 10:28:46 AM,04/05/2016 10:29:53 AM,04/05/2016 10:30:05 AM,04/05/2016 10:37:13 AM,04/05/2016 10:48:28 AM,04/05/2016 10:58:25 AM,Code 2 Transport,04/05/2016 11:32:44 AM,1300 Block of JONES ST,San Francisco,94109,B01,41,1466,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",160961202-61 +153320739,KM09,15127629,Medical Incident,11/28/2015,11/28/2015,11/28/2015 08:05:35 AM,11/28/2015 08:05:35 AM,11/28/2015 08:07:37 AM,11/28/2015 08:08:08 AM,11/28/2015 08:12:21 AM,11/28/2015 08:35:33 AM,11/28/2015 08:39:42 AM,Code 3 Transport,11/28/2015 09:26:03 AM,GRANT AV/SUTTER ST,San Francisco,94108,B01,1,1316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",153320739-KM09 +141413160,E02,14048471,Medical Incident,05/21/2014,05/21/2014,05/21/2014 08:12:58 PM,05/21/2014 08:14:00 PM,05/21/2014 08:17:12 PM,05/21/2014 08:18:47 PM,05/21/2014 08:24:05 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 08:38:09 PM,800 Block of WASHINGTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7950325698412, -122.407793068572)",141413160-E02 +153240821,65,15124577,Medical Incident,11/20/2015,11/20/2015,11/20/2015 08:13:57 AM,11/20/2015 08:16:06 AM,11/20/2015 08:17:30 AM,11/20/2015 08:17:39 AM,11/20/2015 08:24:01 AM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,No Merit,11/20/2015 08:29:59 AM,10TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7639898892897, -122.467383230289)",153240821-65 +152490051,E38,15094927,Structure Fire,09/06/2015,09/05/2015,09/06/2015 12:19:21 AM,09/06/2015 12:19:21 AM,09/06/2015 12:19:36 AM,09/06/2015 12:21:45 AM,09/06/2015 12:23:48 AM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,Fire,09/06/2015 12:24:22 AM,VAN NESS AV/BUSH ST,San Francisco,94109,B04,3,3156,3,3,3,false,Alarm,1,ENGINE,1,4,2,Nob Hill,"(37.7884896423018, -122.421948587259)",152490051-E38 +160962537,66,16038074,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:46:31 PM,04/05/2016 03:48:26 PM,04/05/2016 03:52:40 PM,04/05/2016 03:52:48 PM,04/05/2016 04:09:06 PM,04/05/2016 04:35:34 PM,04/05/2016 05:08:25 PM,Code 2 Transport,04/05/2016 06:00:18 PM,100 Block of GLADSTONE DR,San Francisco,94134,B09,32,5683,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7292603844598, -122.42319081657)",160962537-66 +160980164,KM07,16038737,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:10:47 AM,04/07/2016 01:12:40 AM,04/07/2016 01:13:13 AM,04/07/2016 01:13:49 AM,04/07/2016 01:19:44 AM,04/07/2016 01:31:12 AM,04/07/2016 01:46:16 AM,Code 2 Transport,04/07/2016 02:36:51 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160980164-KM07 +160923420,KM06,16036602,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:46:56 PM,04/01/2016 08:47:22 PM,04/01/2016 08:47:33 PM,04/01/2016 08:48:11 PM,04/01/2016 08:54:19 PM,04/01/2016 09:09:46 PM,04/01/2016 09:27:13 PM,Code 2 Transport,04/01/2016 09:52:04 PM,1700 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7914466216221, -122.421704925005)",160923420-KM06 +151540196,E26,15058521,Structure Fire,06/03/2015,06/02/2015,06/03/2015 01:55:25 AM,06/03/2015 01:56:29 AM,06/03/2015 02:01:01 AM,06/03/2015 02:02:17 AM,06/03/2015 02:09:30 AM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Fire,06/03/2015 02:46:34 AM,3400 Block of 26TH ST,San Francisco,94110,B06,11,5613,3,3,3,true,Fire,1,ENGINE,12,6,9,Mission,"(37.7490786029711, -122.41842788258)",151540196-E26 +142131926,T03,14073869,Medical Incident,08/01/2014,08/01/2014,08/01/2014 02:17:01 PM,08/01/2014 02:17:34 PM,08/01/2014 02:18:32 PM,08/01/2014 02:20:00 PM,08/01/2014 02:22:55 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Code 2 Transport,08/01/2014 02:28:54 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",142131926-T03 +141391756,T08,14047672,Alarms,05/19/2014,05/19/2014,05/19/2014 01:42:30 PM,05/19/2014 01:44:50 PM,05/19/2014 01:46:09 PM,05/19/2014 01:47:51 PM,05/19/2014 01:47:51 PM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,Fire,05/19/2014 01:57:34 PM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,3,3,3,false,Alarm,1,TRUCK,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",141391756-T08 +151333739,AM20,15050622,Medical Incident,05/13/2015,05/13/2015,05/13/2015 08:33:26 PM,05/13/2015 08:34:53 PM,05/13/2015 08:35:38 PM,05/13/2015 08:36:06 PM,05/13/2015 08:47:28 PM,05/13/2015 09:01:40 PM,05/13/2015 09:12:59 PM,Code 2 Transport,05/13/2015 09:44:48 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151333739-AM20 +150523405,62,15020162,Medical Incident,02/21/2015,02/21/2015,02/21/2015 08:28:15 PM,02/21/2015 08:30:01 PM,02/21/2015 08:30:36 PM,02/21/2015 08:30:50 PM,02/21/2015 08:41:57 PM,02/21/2015 08:58:42 PM,02/21/2015 09:20:14 PM,Code 2 Transport,02/21/2015 09:52:37 PM,0 Block of SOUTHPARK AV,San Francisco,94107,B03,8,2153,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7822551330244, -122.392998702818)",150523405-62 +151831615,AM08,15069837,Medical Incident,07/02/2015,07/02/2015,07/02/2015 11:49:40 AM,07/02/2015 11:52:35 AM,07/02/2015 11:52:50 AM,07/02/2015 11:53:08 AM,07/02/2015 11:57:34 AM,07/02/2015 12:06:07 PM,07/02/2015 12:27:21 PM,Code 2 Transport,07/02/2015 12:52:50 PM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",151831615-AM08 +160981161,54,16038840,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:35:28 AM,04/07/2016 09:38:36 AM,04/07/2016 09:38:55 AM,04/07/2016 09:39:08 AM,04/07/2016 09:49:03 AM,04/07/2016 10:20:51 AM,04/07/2016 10:20:33 AM,Code 2 Transport,04/07/2016 11:01:33 AM,700 Block of FONT BLVD,San Francisco,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7228264884978, -122.483785839073)",160981161-54 +152213572,B02,15084381,Alarms,08/09/2015,08/09/2015,08/09/2015 09:30:03 PM,08/09/2015 09:31:13 PM,08/09/2015 09:32:48 PM,08/09/2015 09:33:33 PM,08/09/2015 09:36:34 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Fire,08/09/2015 09:40:13 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",152213572-B02 +160971013,64,16038341,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:19:45 AM,04/06/2016 09:20:28 AM,04/06/2016 09:20:47 AM,04/06/2016 09:20:58 AM,04/06/2016 09:29:52 AM,04/06/2016 09:50:05 AM,04/06/2016 10:22:15 AM,Code 2 Transport,04/06/2016 10:53:43 AM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",160971013-64 +150751546,56,15028766,Medical Incident,03/16/2015,03/16/2015,03/16/2015 12:15:18 PM,03/16/2015 12:15:18 PM,03/16/2015 12:15:26 PM,03/16/2015 12:16:26 PM,03/16/2015 12:19:29 PM,03/16/2015 12:22:59 PM,03/16/2015 12:34:56 PM,Code 2 Transport,03/16/2015 01:23:06 PM,1500 Block of MARKET ST,San Francisco,94103,B02,36,5117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7746823329875, -122.419666717917)",150751546-56 +151201122,E29,15045322,Medical Incident,04/30/2015,04/30/2015,04/30/2015 09:48:04 AM,04/30/2015 09:50:20 AM,04/30/2015 09:51:52 AM,04/30/2015 09:51:52 AM,04/30/2015 09:52:21 AM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,Code 2 Transport,04/30/2015 10:09:07 AM,600 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7627737268131, -122.417186682545)",151201122-E29 +160980508,89,16038784,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:14:56 AM,04/07/2016 05:16:45 AM,04/07/2016 05:16:59 AM,04/07/2016 05:18:04 AM,04/07/2016 05:25:37 AM,04/07/2016 05:31:36 AM,04/07/2016 05:42:03 AM,Code 2 Transport,04/07/2016 05:53:04 AM,100 Block of TOWNSEND ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7803556642385, -122.390747101617)",160980508-89 +160942884,71,16037370,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:12:49 PM,04/03/2016 06:13:46 PM,04/03/2016 06:13:58 PM,04/03/2016 06:14:03 PM,04/03/2016 06:24:08 PM,04/03/2016 06:41:26 PM,04/03/2016 07:10:19 PM,Code 2 Transport,04/03/2016 07:44:05 PM,0 Block of TUCKER AVE,San Francisco,94134,B09,44,6311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7155319865115, -122.404500268176)",160942884-71 +150111000,E13,15004302,Medical Incident,01/11/2015,01/11/2015,01/11/2015 08:47:37 AM,01/11/2015 08:47:37 AM,01/11/2015 08:48:50 AM,01/11/2015 08:50:42 AM,01/11/2015 08:53:32 AM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 2 Transport,01/11/2015 09:03:40 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",150111000-E13 +160921501,AM10,16036419,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:06:57 PM,04/01/2016 12:07:24 PM,04/01/2016 12:07:43 PM,04/01/2016 12:08:29 PM,04/01/2016 12:13:12 PM,04/01/2016 12:22:12 PM,04/01/2016 12:22:29 PM,Code 2 Transport,04/01/2016 01:19:39 PM,HYDE ST/CALIFORNIA ST,San Francisco,94109,B04,41,1562,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160921501-AM10 +160961625,KM04,16037995,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:11:36 PM,04/05/2016 12:12:29 PM,04/05/2016 12:22:59 PM,04/05/2016 12:24:10 PM,04/05/2016 12:31:36 PM,04/05/2016 12:48:56 PM,04/05/2016 01:05:20 PM,Code 2 Transport,04/05/2016 01:47:41 PM,500 Block of 9TH AVE,San Francisco,94118,B07,31,7134,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7780136978042, -122.4673562944)",160961625-KM04 +160950685,79,16037538,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:10:27 AM,04/04/2016 08:11:24 AM,04/04/2016 08:11:43 AM,04/04/2016 08:11:54 AM,04/04/2016 08:15:51 AM,04/04/2016 08:29:59 AM,04/04/2016 08:46:46 AM,Code 2 Transport,04/04/2016 09:13:08 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160950685-79 +141321057,E02,14044878,Structure Fire,05/12/2014,05/12/2014,05/12/2014 10:19:53 AM,05/12/2014 10:19:53 AM,05/12/2014 10:20:27 AM,05/12/2014 10:21:53 AM,05/12/2014 10:24:34 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Fire,05/12/2014 10:24:51 AM,GRANT AV/CALIFORNIA ST,San Francisco,94108,B01,13,1314,3,3,3,false,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",141321057-E02 +150412831,E38,15016080,Medical Incident,02/10/2015,02/10/2015,02/10/2015 05:53:12 PM,02/10/2015 05:55:41 PM,02/10/2015 05:56:15 PM,02/10/2015 05:57:18 PM,02/10/2015 06:01:55 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Code 2 Transport,02/10/2015 06:24:28 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",150412831-E38 +152943544,E03,15113140,Alarms,10/21/2015,10/21/2015,10/21/2015 08:40:14 PM,10/21/2015 08:42:08 PM,10/21/2015 08:42:20 PM,10/21/2015 08:44:38 PM,10/21/2015 08:46:56 PM,04/25/2016 01:07:38 PM,04/25/2016 01:07:38 PM,Fire,10/21/2015 08:55:49 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",152943544-E03 +152923930,E42,15112409,Traffic Collision,10/19/2015,10/19/2015,10/19/2015 11:15:19 PM,10/19/2015 11:19:21 PM,10/19/2015 11:20:47 PM,10/19/2015 11:23:31 PM,10/19/2015 11:24:52 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Code 2 Transport,10/19/2015 11:42:38 PM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6362,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",152923930-E42 +160952270,53,16037660,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:43:58 PM,04/04/2016 02:44:26 PM,04/04/2016 02:44:56 PM,04/04/2016 02:45:06 PM,04/04/2016 02:47:46 PM,04/04/2016 03:02:54 PM,04/04/2016 03:19:36 PM,Code 2 Transport,04/04/2016 03:34:44 PM,GOLDEN GATE AV/HYDE ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",160952270-53 +151870464,54,15071272,Medical Incident,07/06/2015,07/05/2015,07/06/2015 06:05:22 AM,07/06/2015 06:06:41 AM,07/06/2015 06:06:54 AM,07/06/2015 06:07:06 AM,07/06/2015 06:13:33 AM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Patient Declined Transport,07/06/2015 06:44:59 AM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",151870464-54 +150282582,AP,15010826,Other,01/28/2015,01/28/2015,01/28/2015 04:12:01 PM,01/28/2015 04:12:01 PM,01/28/2015 04:12:01 PM,01/28/2015 04:12:01 PM,01/28/2015 04:12:01 PM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,Fire,01/28/2015 04:12:39 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",150282582-AP +143590146,62,14128312,Medical Incident,12/25/2014,12/24/2014,12/25/2014 01:18:20 AM,12/25/2014 01:20:09 AM,12/25/2014 01:20:30 AM,12/25/2014 01:20:37 AM,12/25/2014 01:26:56 AM,12/25/2014 01:40:36 AM,12/25/2014 01:49:00 AM,Code 3 Transport,12/25/2014 02:27:51 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803099082814, -122.407975093043)",143590146-62 +150630710,E13,15023955,Medical Incident,03/04/2015,03/03/2015,03/04/2015 07:39:08 AM,03/04/2015 07:43:48 AM,03/04/2015 08:29:19 AM,03/04/2015 08:30:38 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 08:33:52 AM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Chinatown,"(37.7977792275329, -122.407827984258)",150630710-E13 +141080309,E23,14036512,Medical Incident,04/18/2014,04/18/2014,04/18/2014 06:13:38 PM,04/18/2014 06:15:20 PM,04/18/2014 06:15:37 PM,04/18/2014 06:17:04 PM,04/18/2014 06:18:25 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Code 2 Transport,04/18/2014 06:33:18 PM,1300 Block of 46TH AVE,SAN FRANCISCO,94122,B08,23,7721,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7613577781783, -122.505924512458)",141080309-E23 +150722210,E06,15027551,Medical Incident,03/13/2015,03/13/2015,03/13/2015 02:28:46 PM,03/13/2015 02:31:21 PM,03/13/2015 02:32:25 PM,03/13/2015 02:35:17 PM,03/13/2015 02:36:05 PM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Code 2 Transport,03/13/2015 02:50:48 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",150722210-E06 +160981968,KM09,16038924,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:11:51 PM,04/07/2016 01:12:15 PM,04/07/2016 01:13:07 PM,04/07/2016 01:13:32 PM,04/07/2016 01:17:04 PM,04/07/2016 01:34:56 PM,04/07/2016 01:39:55 PM,Code 3 Transport,04/07/2016 02:36:41 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",160981968-KM09 +142190392,E09,14075847,Structure Fire,08/07/2014,08/06/2014,08/07/2014 04:29:02 AM,08/07/2014 04:29:02 AM,08/07/2014 04:30:05 AM,08/07/2014 04:32:35 AM,08/07/2014 04:35:57 AM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,Fire,08/07/2014 04:44:23 AM,2700 Block of BRYANT ST,San Francisco,94110,B06,9,553,3,3,3,true,Alarm,1,ENGINE,3,6,9,Mission,"(37.750396573149, -122.408970541511)",142190392-E09 +141991207,E06,14068846,Medical Incident,07/18/2014,07/18/2014,07/18/2014 10:49:26 AM,07/18/2014 10:50:30 AM,07/18/2014 10:51:39 AM,07/18/2014 10:56:37 AM,07/18/2014 11:00:51 AM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Code 2 Transport,07/18/2014 11:05:56 AM,400 Block of LILY ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7739147499901, -122.427942284187)",141991207-E06 +160984037,61,16039143,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:08:43 PM,04/07/2016 11:10:24 PM,04/07/2016 11:10:40 PM,04/07/2016 11:11:45 PM,04/07/2016 11:21:49 PM,04/07/2016 11:33:30 PM,04/07/2016 11:47:22 PM,Code 2 Transport,04/08/2016 12:21:56 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160984037-61 +151833557,KM11,15070003,Traffic Collision,07/02/2015,07/02/2015,07/02/2015 07:45:05 PM,07/02/2015 07:45:05 PM,07/02/2015 07:47:31 PM,07/02/2015 07:48:03 PM,07/02/2015 08:02:01 PM,07/02/2015 08:13:13 PM,07/02/2015 08:13:33 PM,Code 3 Transport,07/02/2015 09:01:10 PM,FOLSOM ST/9TH ST,San Francisco,94103,B02,36,2343,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,7,2,6,South of Market,"(37.7737693455048, -122.411610116682)",151833557-KM11 +151312155,E14,15049748,Medical Incident,05/11/2015,05/11/2015,05/11/2015 02:43:13 PM,05/11/2015 02:44:59 PM,05/11/2015 02:47:12 PM,05/11/2015 02:48:13 PM,05/11/2015 02:50:34 PM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,Cancelled,05/11/2015 02:53:45 PM,500 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7777197046394, -122.473834612431)",151312155-E14 +160973776,AM16,16038628,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:12:42 PM,04/06/2016 07:15:32 PM,04/06/2016 07:17:01 PM,04/06/2016 07:27:09 PM,04/06/2016 07:27:09 PM,04/06/2016 07:37:57 PM,04/06/2016 08:03:22 PM,Code 2 Transport,04/06/2016 08:10:42 PM,3400 Block of 19TH ST,San Francisco,94110,B06,7,5434,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7601573650684, -122.41958524775)",160973776-AM16 +152274224,E23,15086759,Medical Incident,08/15/2015,08/15/2015,08/15/2015 10:55:40 PM,08/15/2015 10:57:05 PM,08/15/2015 10:57:23 PM,08/15/2015 10:59:00 PM,08/15/2015 11:01:48 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Code 2 Transport,08/15/2015 11:24:09 PM,1200 Block of 40TH AVE,San Francisco,94122,B08,23,7627,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7635126167767, -122.499624471473)",152274224-E23 +160981833,65,16038913,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:31:46 PM,04/07/2016 12:33:00 PM,04/07/2016 12:34:58 PM,04/07/2016 12:35:04 PM,04/07/2016 12:47:11 PM,04/07/2016 01:00:41 PM,04/07/2016 01:05:40 PM,Code 2 Transport,04/07/2016 01:40:41 PM,POLK ST/ELLIS ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",160981833-65 +142901293,E02,14102198,Medical Incident,10/17/2014,10/17/2014,10/17/2014 11:08:06 AM,10/17/2014 11:09:10 AM,10/17/2014 11:11:11 AM,10/17/2014 11:11:25 AM,10/17/2014 11:13:38 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Patient Declined Transport,10/17/2014 11:25:11 AM,300 Block of JEFFERSON ST,San Francisco,94133,B01,28,1524,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.807853999752, -122.418254964437)",142901293-E02 +151310072,E11,15049527,Structure Fire,05/11/2015,05/10/2015,05/11/2015 12:36:01 AM,05/11/2015 12:36:16 AM,05/11/2015 12:36:22 AM,05/11/2015 12:38:33 AM,05/11/2015 12:38:33 AM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Fire,05/11/2015 12:46:57 AM,2900 Block of MISSION ST,San Francisco,94110,B06,11,561,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.749836317622, -122.418280538883)",151310072-E11 +142673480,T03,14093661,Citizen Assist / Service Call,09/24/2014,09/24/2014,09/24/2014 08:02:33 PM,09/24/2014 08:04:36 PM,09/24/2014 08:04:59 PM,09/24/2014 08:06:39 PM,09/24/2014 08:08:26 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Fire,09/24/2014 08:16:45 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",142673480-T03 +161003137,77,16039939,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:05:24 PM,04/09/2016 09:07:01 PM,04/09/2016 09:07:25 PM,04/09/2016 09:07:40 PM,04/09/2016 09:17:21 PM,04/09/2016 09:38:28 PM,04/09/2016 09:42:18 PM,Code 2 Transport,04/09/2016 10:19:21 PM,2000 Block of HAYES ST,San Francisco,94117,B05,21,4523,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7733660129603, -122.45013888651)",161003137-77 +150852003,B04,15032449,Alarms,03/26/2015,03/26/2015,03/26/2015 01:48:04 PM,03/26/2015 01:49:25 PM,03/26/2015 01:49:39 PM,03/26/2015 01:50:33 PM,03/26/2015 01:53:29 PM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Fire,03/26/2015 02:02:57 PM,3400 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4422,3,3,3,false,Alarm,1,CHIEF,3,4,2,Presidio Heights,"(37.7879259430405, -122.449490749024)",150852003-B04 +150863882,E06,15033037,Alarms,03/27/2015,03/27/2015,03/27/2015 10:41:49 PM,03/27/2015 10:43:17 PM,03/27/2015 10:43:24 PM,03/27/2015 10:44:02 PM,03/27/2015 10:45:24 PM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Fire,03/27/2015 10:50:15 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150863882-E06 +141170159,55,14039481,Medical Incident,04/27/2014,04/27/2014,04/27/2014 12:15:45 PM,04/27/2014 12:16:09 PM,04/27/2014 12:16:24 PM,04/27/2014 12:19:03 PM,04/27/2014 12:28:44 PM,04/27/2014 12:41:51 PM,04/27/2014 12:55:20 PM,Code 2 Transport,04/27/2014 01:34:23 PM,CHESTNUT ST/BUCHANAN ST,SAN FRANCISCO,94123,B04,16,3445,,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8012356976907, -122.432957626885)",141170159-55 +151310391,68,15049568,Medical Incident,05/11/2015,05/10/2015,05/11/2015 06:09:00 AM,05/11/2015 06:09:00 AM,05/11/2015 06:09:30 AM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Code 2 Transport,05/11/2015 06:09:41 AM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",151310391-68 +153000104,E28,15114982,Alarms,10/27/2015,10/26/2015,10/27/2015 12:45:10 AM,10/27/2015 12:46:28 AM,10/27/2015 12:46:38 AM,10/27/2015 12:48:12 AM,10/27/2015 12:51:11 AM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Fire,10/27/2015 12:55:40 AM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",153000104-E28 +142562497,E38,14089487,Medical Incident,09/13/2014,09/13/2014,09/13/2014 04:15:35 PM,09/13/2014 04:16:18 PM,09/13/2014 04:16:50 PM,09/13/2014 04:18:02 PM,09/13/2014 04:20:57 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/13/2014 04:21:49 PM,1600 Block of VAN NESS AVE,San Francisco,94109,B04,38,3155,2,2,2,false,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7908098690342, -122.422593273694)",142562497-E38 +142552676,79,14089108,Medical Incident,09/12/2014,09/12/2014,09/12/2014 05:21:52 PM,09/12/2014 05:22:38 PM,09/12/2014 05:24:48 PM,09/12/2014 05:24:48 PM,09/12/2014 05:31:47 PM,09/12/2014 05:40:05 PM,09/12/2014 05:48:17 PM,Code 2 Transport,09/12/2014 06:15:42 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",142552676-79 +141852148,E31,14064095,Medical Incident,07/04/2014,07/04/2014,07/04/2014 05:06:43 PM,07/04/2014 05:08:06 PM,07/04/2014 05:09:19 PM,07/04/2014 05:11:00 PM,07/04/2014 05:15:42 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Code 2 Transport,07/04/2014 06:11:01 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7694537012686, -122.469609049655)",141852148-E31 +150402277,E03,15015649,Medical Incident,02/09/2015,02/09/2015,02/09/2015 03:16:23 PM,02/09/2015 03:16:55 PM,02/09/2015 03:17:14 PM,02/09/2015 03:18:01 PM,02/09/2015 03:20:53 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/09/2015 03:30:55 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",150402277-E03 +150942840,E42,15035833,Medical Incident,04/04/2015,04/04/2015,04/04/2015 06:09:20 PM,04/04/2015 06:11:00 PM,04/04/2015 06:11:31 PM,04/04/2015 06:13:20 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 06:14:26 PM,200 Block of MAYNARD ST,San Francisco,94112,B09,32,5683,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7295080178827, -122.424915560486)",150942840-E42 +143222648,74,14114101,Medical Incident,11/18/2014,11/18/2014,11/18/2014 05:13:14 PM,11/18/2014 05:14:32 PM,11/18/2014 05:14:52 PM,11/18/2014 05:14:59 PM,11/18/2014 05:28:41 PM,11/18/2014 05:42:52 PM,11/18/2014 06:02:26 PM,Code 2 Transport,11/18/2014 06:45:52 PM,MARKET ST/9TH ST,San Francisco,94103,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",143222648-74 +160962543,KM05,16038075,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:48:35 PM,04/05/2016 03:49:59 PM,04/05/2016 03:50:14 PM,04/05/2016 03:50:38 PM,04/05/2016 03:59:06 PM,04/05/2016 04:05:17 PM,04/05/2016 04:14:55 PM,Code 2 Transport,04/05/2016 04:46:01 PM,1300 Block of FULTON ST,San Francisco,94117,B05,21,4243,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7768041861121, -122.439021582946)",160962543-KM05 +153400443,E02,15130716,Alarms,12/06/2015,12/05/2015,12/06/2015 03:04:48 AM,12/06/2015 03:06:40 AM,12/06/2015 03:07:17 AM,12/06/2015 03:07:35 AM,12/06/2015 03:10:58 AM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Fire,12/06/2015 04:16:21 AM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",153400443-E02 +151541115,52,15058602,Medical Incident,06/03/2015,06/03/2015,06/03/2015 09:46:36 AM,06/03/2015 09:46:36 AM,06/03/2015 09:50:51 AM,06/03/2015 09:50:51 AM,06/03/2015 09:54:55 AM,06/03/2015 09:57:33 AM,06/03/2015 10:29:11 AM,Code 2 Transport,06/03/2015 11:07:35 AM,3RD ST/WALLACE AV,San Francisco,94124,B10,17,6536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.728489580525, -122.392899420759)",151541115-52 +161001906,AM02,16039795,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:43:41 PM,04/09/2016 02:44:26 PM,04/09/2016 02:44:44 PM,04/09/2016 02:45:17 PM,04/09/2016 02:54:32 PM,04/09/2016 03:08:41 PM,04/09/2016 03:47:19 PM,Code 2 Transport,04/09/2016 04:19:29 PM,0 Block of REARDON RD,San Francisco,94124,B10,17,6625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7294970477126, -122.37690786669)",161001906-AM02 +142441477,E12,14085004,Traffic Collision,09/01/2014,09/01/2014,09/01/2014 12:26:40 PM,09/01/2014 12:28:53 PM,09/01/2014 12:29:53 PM,09/01/2014 12:31:03 PM,09/01/2014 12:32:17 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 2 Transport,09/01/2014 12:48:10 PM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",142441477-E12 +143262126,E17,14115524,Medical Incident,11/22/2014,11/22/2014,11/22/2014 02:17:19 PM,11/22/2014 02:18:19 PM,11/22/2014 02:19:38 PM,11/22/2014 02:20:42 PM,11/22/2014 02:23:32 PM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Code 2 Transport,11/22/2014 02:49:00 PM,5100 Block of 3RD ST,San Francisco,94124,B10,17,6514,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7312770805905, -122.392068063625)",143262126-E17 +141861302,KM10,14064383,Medical Incident,07/05/2014,07/05/2014,07/05/2014 10:39:28 AM,07/05/2014 10:40:14 AM,07/05/2014 10:40:34 AM,07/05/2014 10:41:06 AM,07/05/2014 10:50:22 AM,07/05/2014 11:05:06 AM,07/05/2014 11:10:27 AM,Code 2 Transport,07/05/2014 11:43:26 AM,1600 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7916541828949, -122.420058319923)",141861302-KM10 +152733567,B09,15104672,Structure Fire,09/30/2015,09/30/2015,09/30/2015 09:13:57 PM,09/30/2015 09:13:57 PM,09/30/2015 09:14:32 PM,09/30/2015 09:15:27 PM,09/30/2015 09:18:02 PM,04/25/2016 01:08:02 PM,04/25/2016 01:08:02 PM,Fire,09/30/2015 09:29:06 PM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,false,Alarm,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152733567-B09 +152771640,KM13,15106212,Medical Incident,10/04/2015,10/04/2015,10/04/2015 12:25:28 PM,10/04/2015 12:25:28 PM,10/04/2015 12:26:28 PM,10/04/2015 12:26:53 PM,10/04/2015 12:41:28 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Patient Declined Transport,10/04/2015 01:29:47 PM,300 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",152771640-KM13 +160943514,AM16,16037441,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:59:59 PM,04/03/2016 10:01:10 PM,04/03/2016 10:01:48 PM,04/03/2016 10:02:55 PM,04/03/2016 10:11:06 PM,04/03/2016 10:18:54 PM,04/03/2016 10:30:23 PM,Code 2 Transport,04/03/2016 10:52:12 PM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",160943514-AM16 +142542907,AM26,14088763,Medical Incident,09/11/2014,09/11/2014,09/11/2014 06:24:02 PM,09/11/2014 06:25:17 PM,09/11/2014 06:26:07 PM,09/11/2014 06:26:48 PM,09/11/2014 06:33:50 PM,09/11/2014 06:52:02 PM,09/11/2014 07:03:29 PM,Code 2 Transport,09/11/2014 07:35:56 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",142542907-AM26 +160983202,RC1,16039067,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:37:01 PM,04/07/2016 06:37:32 PM,04/07/2016 06:46:10 PM,04/07/2016 06:46:10 PM,04/07/2016 06:49:51 PM,04/07/2016 07:06:06 PM,04/07/2016 07:11:55 PM,Code 2 Transport,04/07/2016 07:26:04 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160983202-RC1 +150382224,56,15014819,Medical Incident,02/07/2015,02/07/2015,02/07/2015 03:10:39 PM,02/07/2015 03:10:39 PM,02/07/2015 03:11:05 PM,02/07/2015 03:11:40 PM,02/07/2015 03:15:16 PM,02/07/2015 03:26:46 PM,02/07/2015 03:48:20 PM,Code 2 Transport,02/07/2015 04:55:52 PM,FILLMORE ST/POST ST,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7851509392156, -122.433083400235)",150382224-56 +141381387,E29,14047255,Traffic Collision,05/18/2014,05/18/2014,05/18/2014 11:29:11 AM,05/18/2014 11:29:48 AM,05/18/2014 11:34:07 AM,05/18/2014 11:35:20 AM,05/18/2014 11:37:27 AM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Code 2 Transport,05/18/2014 11:59:48 AM,9TH ST/HARRISON ST,San Francisco,94103,B03,29,2333,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7725264425971, -122.410076850083)",141381387-E29 +160962210,KM08,16038046,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:27:58 PM,04/05/2016 02:30:29 PM,04/05/2016 02:31:38 PM,04/05/2016 02:32:09 PM,04/05/2016 02:45:57 PM,04/05/2016 03:11:42 PM,04/05/2016 03:32:25 PM,Code 2 Transport,04/05/2016 04:05:42 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160962210-KM08 +160940129,62,16037106,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:39:09 AM,04/03/2016 12:40:33 AM,04/03/2016 12:40:45 AM,04/03/2016 12:40:53 AM,04/03/2016 12:46:08 AM,04/03/2016 01:03:55 AM,04/03/2016 01:34:36 AM,Code 2 Transport,04/03/2016 02:00:20 AM,1300 Block of 35TH AVE,San Francisco,94122,B08,23,7564,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7618724655505, -122.494274168693)",160940129-62 +161001779,61,16039783,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:00:14 PM,04/09/2016 02:00:42 PM,04/09/2016 02:01:12 PM,04/09/2016 02:01:29 PM,04/09/2016 02:06:52 PM,04/09/2016 02:22:38 PM,04/09/2016 02:28:56 PM,Code 2 Transport,04/09/2016 03:06:11 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",161001779-61 +152474433,E03,15094466,Structure Fire,09/04/2015,09/04/2015,09/04/2015 11:08:15 PM,09/04/2015 11:08:15 PM,09/04/2015 11:08:51 PM,09/04/2015 11:10:20 PM,09/04/2015 11:11:22 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Fire,09/04/2015 11:12:18 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",152474433-E03 +151413254,T03,15053711,Alarms,05/21/2015,05/21/2015,05/21/2015 06:30:13 PM,05/21/2015 06:31:39 PM,05/21/2015 06:31:47 PM,05/21/2015 06:33:03 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 06:36:21 PM,1900 Block of JACKSON ST,San Francisco,94109,B04,38,3252,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7934665720195, -122.427170164466)",151413254-T03 +151572732,76,15060038,Medical Incident,06/06/2015,06/06/2015,06/06/2015 05:52:45 PM,06/06/2015 05:53:31 PM,06/06/2015 05:53:41 PM,06/06/2015 05:54:03 PM,06/06/2015 06:00:10 PM,06/06/2015 06:14:25 PM,06/06/2015 06:42:56 PM,Code 2 Transport,06/06/2015 07:24:26 PM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",151572732-76 +152161732,T02,15082243,Other,08/04/2015,08/04/2015,08/04/2015 01:10:12 PM,08/04/2015 01:14:12 PM,08/04/2015 01:14:44 PM,08/04/2015 01:16:31 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/04/2015 01:25:31 PM,900 Block of BEACH ST,San Francisco,94109,B01,28,3135,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.806210458565, -122.424360355387)",152161732-T02 +141653521,T01,14057084,Medical Incident,06/14/2014,06/14/2014,06/14/2014 10:24:48 PM,06/14/2014 10:26:13 PM,06/14/2014 10:28:33 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Code 2 Transport,06/14/2014 10:30:35 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",141653521-T01 +160923509,78,16036612,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:15:57 PM,04/01/2016 09:17:51 PM,04/01/2016 09:19:16 PM,04/01/2016 09:19:25 PM,04/01/2016 09:40:26 PM,04/01/2016 10:17:41 PM,04/01/2016 10:40:00 PM,Code 2 Transport,04/01/2016 11:22:32 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160923509-78 +152852767,E29,15109507,Outside Fire,10/12/2015,10/12/2015,10/12/2015 04:46:25 PM,10/12/2015 04:46:25 PM,10/12/2015 04:46:25 PM,10/12/2015 04:46:25 PM,10/12/2015 04:46:25 PM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/12/2015 04:51:44 PM,9TH ST/DIVISION ST,San Francisco,94103,B02,29,2331,3,3,3,true,Fire,1,ENGINE,1,2,10,Mission,"(37.7694625463697, -122.406213364615)",152852767-E29 +151153778,63,15043642,Medical Incident,04/25/2015,04/25/2015,04/25/2015 11:35:01 PM,04/25/2015 11:35:01 PM,04/25/2015 11:35:01 PM,04/25/2015 11:35:01 PM,04/25/2015 11:35:01 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Fire,04/25/2015 11:36:57 PM,900 Block of HYDE ST,San Francisco,94109,B99,3,1561,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",151153778-63 +142301816,E32,14079911,Medical Incident,08/18/2014,08/18/2014,08/18/2014 01:19:42 PM,08/18/2014 01:19:42 PM,08/18/2014 01:19:58 PM,08/18/2014 01:20:36 PM,08/18/2014 01:22:54 PM,04/25/2016 01:15:35 PM,04/25/2016 01:15:35 PM,Code 2 Transport,08/18/2014 01:38:47 PM,100 Block of JARBOE AVE,San Francisco,94110,B06,32,5732,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7384898787619, -122.41552789353)",142301816-E32 +160932722,53,16036967,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:35:30 PM,04/02/2016 05:37:12 PM,04/02/2016 05:46:14 PM,04/02/2016 05:47:02 PM,04/02/2016 05:54:12 PM,04/02/2016 06:03:01 PM,04/02/2016 06:23:48 PM,Code 3 Transport,04/02/2016 07:03:38 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160932722-53 +161002915,KM12,16039909,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:56:06 PM,04/09/2016 07:58:15 PM,04/09/2016 07:59:17 PM,04/09/2016 08:00:57 PM,04/09/2016 08:13:06 PM,04/09/2016 08:19:12 PM,04/09/2016 08:47:02 PM,Code 2 Transport,04/09/2016 08:47:39 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",161002915-KM12 +141661903,E32,14057312,Alarms,06/15/2014,06/15/2014,06/15/2014 03:29:40 PM,06/15/2014 03:32:20 PM,06/15/2014 03:32:45 PM,06/15/2014 03:34:07 PM,06/15/2014 03:36:31 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Cancelled,06/15/2014 03:36:42 PM,0 Block of MAYNARD ST,San Francisco,94112,B09,32,6113,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7291642311889, -122.42954335067)",141661903-E32 +152351281,E26,15089544,Medical Incident,08/23/2015,08/23/2015,08/23/2015 10:42:32 AM,08/23/2015 10:43:49 AM,08/23/2015 10:44:13 AM,08/23/2015 10:46:06 AM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Code 2 Transport,08/23/2015 11:43:56 AM,0 Block of BERKELEY WAY,San Francisco,94131,B06,26,8173,2,3,3,true,Non Life-threatening,1,ENGINE,2,6,8,Glen Park,"(37.7388992785275, -122.437885215201)",152351281-E26 +152312708,E22,15088208,Medical Incident,08/19/2015,08/19/2015,08/19/2015 04:28:20 PM,08/19/2015 04:33:37 PM,08/19/2015 04:34:09 PM,08/19/2015 04:35:28 PM,08/19/2015 04:39:07 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Code 2 Transport,08/19/2015 04:57:44 PM,LINCOLN WY/24TH AV,San Francisco,94122,B08,22,7452,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7652098273516, -122.482614553943)",152312708-E22 +141843258,E01,14063839,Medical Incident,07/03/2014,07/03/2014,07/03/2014 09:12:44 PM,07/03/2014 09:12:44 PM,07/03/2014 09:18:16 PM,07/03/2014 09:18:28 PM,07/03/2014 09:24:43 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/03/2014 09:27:48 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",141843258-E01 +150062168,RS1,15002335,Medical Incident,01/06/2015,01/06/2015,01/06/2015 03:10:52 PM,01/06/2015 03:11:49 PM,01/06/2015 03:12:30 PM,01/06/2015 03:13:32 PM,01/06/2015 03:16:11 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Code 2 Transport,01/06/2015 03:23:59 PM,0 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,South of Market,"(37.7795700115888, -122.411484015918)",150062168-RS1 +142883494,87,14101656,Medical Incident,10/15/2014,10/15/2014,10/15/2014 08:43:38 PM,10/15/2014 08:44:09 PM,10/15/2014 08:44:32 PM,10/15/2014 08:44:41 PM,10/15/2014 09:01:46 PM,10/15/2014 09:31:50 PM,10/15/2014 10:03:25 PM,Code 2 Transport,10/15/2014 10:40:05 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",142883494-87 +152540475,E03,15096983,Medical Incident,09/11/2015,09/10/2015,09/11/2015 05:50:45 AM,09/11/2015 05:53:14 AM,09/11/2015 05:53:23 AM,09/11/2015 05:55:16 AM,09/11/2015 05:58:35 AM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,No Merit,09/11/2015 06:06:13 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",152540475-E03 +141660859,E02,14057197,Administrative,06/15/2014,06/15/2014,06/15/2014 09:19:48 AM,06/15/2014 09:20:02 AM,06/15/2014 09:20:55 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Fire,06/15/2014 09:28:33 AM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",141660859-E02 +160963004,53,16038117,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:32:06 PM,04/05/2016 05:32:06 PM,04/05/2016 05:32:53 PM,04/05/2016 05:32:53 PM,04/05/2016 05:32:53 PM,04/05/2016 05:41:01 PM,04/05/2016 05:57:20 PM,Code 2 Transport,04/05/2016 06:16:06 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",160963004-53 +150520127,T10,15019889,Alarms,02/21/2015,02/20/2015,02/21/2015 12:38:46 AM,02/21/2015 12:38:46 AM,02/21/2015 12:39:13 AM,02/21/2015 12:41:01 AM,02/21/2015 12:43:52 AM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Fire,02/21/2015 12:51:59 AM,100 Block of ARGUELLO BLVD,San Francisco,94118,B07,10,4445,3,3,3,false,Alarm,1,TRUCK,1,7,2,Inner Richmond,"(37.7872141377473, -122.459370613431)",150520127-T10 +160932631,76,16036958,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:14:04 PM,04/02/2016 05:15:15 PM,04/02/2016 05:15:37 PM,04/02/2016 05:15:52 PM,04/02/2016 05:25:27 PM,04/02/2016 05:39:58 PM,04/02/2016 05:47:55 PM,Code 2 Transport,04/02/2016 06:11:06 PM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160932631-76 +152720938,E17,15104063,Medical Incident,09/29/2015,09/29/2015,09/29/2015 09:17:50 AM,09/29/2015 09:20:09 AM,09/29/2015 09:20:15 AM,09/29/2015 09:23:38 AM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Patient Declined Transport,09/29/2015 09:27:22 AM,3RD ST/PALOU AV,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",152720938-E17 +160941607,KM06,16037245,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:51:44 AM,04/03/2016 11:51:44 AM,04/03/2016 11:52:11 AM,04/03/2016 11:52:57 AM,04/03/2016 11:56:31 AM,04/03/2016 12:14:07 PM,04/03/2016 12:22:31 PM,Code 2 Transport,04/03/2016 12:50:13 PM,GOLDEN GATE AV/TAYLOR ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160941607-KM06 +150702917,T03,15026828,Structure Fire,03/11/2015,03/11/2015,03/11/2015 05:39:52 PM,03/11/2015 05:39:56 PM,03/11/2015 05:40:28 PM,03/11/2015 05:41:40 PM,04/25/2016 01:11:47 PM,04/25/2016 01:11:47 PM,04/25/2016 01:11:47 PM,Fire,03/11/2015 05:43:18 PM,LEAVENWORTH ST/OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",150702917-T03 +160970780,52,16038309,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:14:26 AM,04/06/2016 08:16:33 AM,04/06/2016 08:17:52 AM,04/06/2016 08:18:22 AM,04/06/2016 08:32:32 AM,04/06/2016 08:45:18 AM,04/06/2016 09:22:54 AM,Code 2 Transport,04/06/2016 09:45:21 AM,200 Block of CHESTER AVE,San Francisco,94132,B09,33,8412,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7114157201308, -122.470499531884)",160970780-52 +160942180,KM08,16037299,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:40:24 PM,04/03/2016 02:48:20 PM,04/03/2016 02:52:32 PM,04/03/2016 02:54:29 PM,04/03/2016 03:13:54 PM,04/03/2016 03:38:12 PM,04/03/2016 03:57:41 PM,Code 2 Transport,04/03/2016 04:23:20 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",160942180-KM08 +141503074,E35,14051678,Structure Fire,05/30/2014,05/30/2014,05/30/2014 08:29:33 PM,05/30/2014 08:30:48 PM,05/30/2014 08:31:27 PM,05/30/2014 08:32:33 PM,05/30/2014 08:34:21 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 08:44:35 PM,2ND ST/HOWARD ST,San Francisco,94105,B03,1,2146,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7867789486792, -122.398256963317)",141503074-E35 +152910163,70,15111646,Medical Incident,10/18/2015,10/17/2015,10/18/2015 12:57:52 AM,10/18/2015 12:57:52 AM,10/18/2015 12:58:19 AM,10/18/2015 12:58:27 AM,10/18/2015 01:04:35 AM,10/18/2015 01:24:10 AM,10/18/2015 01:41:13 AM,Code 2 Transport,10/18/2015 02:13:08 AM,4100 Block of 18TH ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7608016861704, -122.435552336885)",152910163-70 +152813756,E01,15108023,Structure Fire,10/08/2015,10/08/2015,10/08/2015 09:14:14 PM,10/08/2015 09:15:05 PM,10/08/2015 09:15:19 PM,10/08/2015 09:15:31 PM,10/08/2015 09:15:31 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Fire,10/08/2015 09:52:45 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,A,2,true,Alarm,1,ENGINE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",152813756-E01 +152752319,E13,15105389,Traffic Collision,10/02/2015,10/02/2015,10/02/2015 03:17:18 PM,10/02/2015 03:17:18 PM,10/02/2015 03:17:56 PM,10/02/2015 03:18:52 PM,10/02/2015 03:21:08 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,Against Medical Advice,10/02/2015 03:46:36 PM,SACRAMENTO ST/MONTGOMERY ST,San Francisco,94104,B01,13,1166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7937798566723, -122.402957361388)",152752319-E13 +143123658,53,14110695,Medical Incident,11/08/2014,11/08/2014,11/08/2014 10:00:51 PM,11/08/2014 10:02:33 PM,11/08/2014 10:03:14 PM,11/08/2014 10:03:25 PM,11/08/2014 10:07:52 PM,11/08/2014 10:22:41 PM,11/08/2014 10:34:47 PM,Code 2 Transport,11/08/2014 10:55:38 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",143123658-53 +141250223,E41,14042371,Alarms,05/05/2014,05/05/2014,05/05/2014 01:13:09 PM,05/05/2014 01:14:47 PM,05/05/2014 01:15:23 PM,05/05/2014 01:16:26 PM,05/05/2014 01:17:43 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 01:28:08 PM,1200 Block of CALIFORNIA ST,SAN FRANCISCO,94109,B01,41,1541,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",141250223-E41 +153040225,RS1,15116493,Medical Incident,10/31/2015,10/30/2015,10/31/2015 01:11:32 AM,10/31/2015 01:13:32 AM,10/31/2015 01:13:49 AM,10/31/2015 01:17:36 AM,10/31/2015 01:18:12 AM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,No Merit,10/31/2015 01:20:31 AM,MISSION ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",153040225-RS1 +161003253,68,16039951,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:43:04 PM,04/09/2016 09:43:21 PM,04/09/2016 09:45:54 PM,04/09/2016 09:46:04 PM,04/09/2016 09:47:21 PM,04/09/2016 10:02:45 PM,04/09/2016 10:23:03 PM,Code 2 Transport,04/09/2016 10:59:43 PM,1000 Block of CAPP ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7499099820999, -122.417055896284)",161003253-68 +160960611,60,16037907,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:47:36 AM,04/05/2016 07:49:21 AM,04/05/2016 07:49:52 AM,04/05/2016 07:50:11 AM,04/05/2016 08:10:41 AM,04/05/2016 08:26:04 AM,04/05/2016 09:07:26 AM,Other,04/05/2016 09:49:12 AM,1500 Block of GREAT HWY,San Francisco,94122,B08,23,7724,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7574877093047, -122.508938004244)",160960611-60 +151320645,E06,15049977,Medical Incident,05/12/2015,05/11/2015,05/12/2015 07:37:08 AM,05/12/2015 07:38:11 AM,05/12/2015 07:39:15 AM,05/12/2015 07:41:32 AM,05/12/2015 07:43:07 AM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,Code 2 Transport,05/12/2015 07:53:09 AM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",151320645-E06 +152133295,E19,15081274,Structure Fire,08/01/2015,08/01/2015,08/01/2015 08:29:41 PM,08/01/2015 08:29:41 PM,08/01/2015 08:29:57 PM,08/01/2015 08:31:15 PM,08/01/2015 08:33:04 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Fire,08/01/2015 08:43:27 PM,EUCALYPTUS DR/SYLVAN DR,San Francisco,94132,B08,19,8743,3,3,3,true,Alarm,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",152133295-E19 +160930253,53,16036691,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:42:10 AM,04/02/2016 01:43:59 AM,04/02/2016 01:44:08 AM,04/02/2016 01:44:21 AM,04/02/2016 01:56:09 AM,04/02/2016 02:14:29 AM,04/02/2016 02:30:00 AM,Code 3 Transport,04/02/2016 03:29:46 AM,200 Block of LAKE MERCED HILL ST,San Francisco,94132,B08,19,8777,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7130437838335, -122.483644013853)",160930253-53 +150461555,KM11,15017871,Medical Incident,02/15/2015,02/15/2015,02/15/2015 12:06:57 PM,02/15/2015 12:08:15 PM,02/15/2015 12:08:37 PM,02/15/2015 12:09:18 PM,02/15/2015 12:15:36 PM,02/15/2015 12:24:18 PM,02/15/2015 12:55:57 PM,Code 2 Transport,02/15/2015 01:31:33 PM,1000 Block of INGERSON AVE,San Francisco,94124,B10,17,6612,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7196891289383, -122.393876588978)",150461555-KM11 +141412823,77,14048432,Medical Incident,05/21/2014,05/21/2014,05/21/2014 06:21:20 PM,05/21/2014 06:22:29 PM,05/21/2014 06:23:16 PM,05/21/2014 06:23:33 PM,05/21/2014 06:35:43 PM,05/21/2014 06:42:40 PM,05/21/2014 07:11:29 PM,Code 2 Transport,05/21/2014 07:33:58 PM,600 Block of CAMBRIDGE ST,San Francisco,94134,B09,42,6346,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7234377415581, -122.417097436921)",141412823-77 +141773345,T05,14061226,Citizen Assist / Service Call,06/26/2014,06/26/2014,06/26/2014 09:40:03 PM,06/26/2014 09:41:50 PM,06/26/2014 09:42:11 PM,06/26/2014 09:43:43 PM,06/26/2014 09:45:50 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 09:59:05 PM,300 Block of GOUGH ST,San Francisco,94102,B02,36,3265,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.776658453148, -122.422862121316)",141773345-T05 +142243394,E35,14077903,Medical Incident,08/12/2014,08/12/2014,08/12/2014 09:27:36 PM,08/12/2014 09:29:43 PM,08/12/2014 09:30:20 PM,08/12/2014 09:31:26 PM,08/12/2014 09:34:33 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Code 2 Transport,08/12/2014 09:39:41 PM,MAIN ST/HARRISON ST,San Francisco,94105,B03,35,2117,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.78813450058, -122.390319483833)",142243394-E35 +152183601,E01,15083182,Medical Incident,08/06/2015,08/06/2015,08/06/2015 09:06:30 PM,08/06/2015 09:08:45 PM,08/06/2015 09:09:27 PM,08/06/2015 09:10:10 PM,08/06/2015 09:15:59 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Patient Declined Transport,08/06/2015 09:19:48 PM,500 Block of 9TH ST,San Francisco,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7707086968349, -122.407716820686)",152183601-E01 +160973337,66,16038572,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:38:49 PM,04/06/2016 05:40:05 PM,04/06/2016 05:40:46 PM,04/06/2016 05:40:55 PM,04/06/2016 05:49:43 PM,04/06/2016 06:02:42 PM,04/06/2016 06:28:32 PM,Code 2 Transport,04/06/2016 07:36:34 PM,1500 Block of GOUGH ST,San Francisco,94109,B04,38,3255,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7873547976188, -122.42516229913)",160973337-66 +160953100,62,16037740,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:06:55 PM,04/04/2016 06:07:59 PM,04/04/2016 06:12:17 PM,04/04/2016 06:12:25 PM,04/04/2016 06:18:28 PM,04/04/2016 06:30:09 PM,04/04/2016 06:44:34 PM,Code 2 Transport,04/04/2016 07:06:47 PM,FULTON ST/LARKIN ST,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",160953100-62 +150383868,E11,15014988,Medical Incident,02/07/2015,02/07/2015,02/07/2015 10:48:28 PM,02/07/2015 10:49:35 PM,02/07/2015 10:50:33 PM,02/07/2015 10:51:03 PM,02/07/2015 10:53:39 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,No Merit,02/07/2015 10:59:30 PM,1000 Block of SANCHEZ ST,San Francisco,94114,B06,11,5514,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7519624380564, -122.429764001075)",150383868-E11 +152942243,B04,15113017,Structure Fire,10/21/2015,10/21/2015,10/21/2015 02:32:48 PM,10/21/2015 02:34:28 PM,10/21/2015 02:35:23 PM,10/21/2015 02:35:41 PM,10/21/2015 02:49:38 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Fire,10/21/2015 02:49:41 PM,500 Block of THE EMBARCADERO,San Francisco,94111,B01,13,909,3,3,3,false,Alarm,1,CHIEF,10,1,3,Financial District/South Beach,"(37.8001622325974, -122.398220311065)",152942243-B04 +142263201,66,14078630,Medical Incident,08/14/2014,08/14/2014,08/14/2014 08:19:27 PM,08/14/2014 08:21:39 PM,08/14/2014 08:21:56 PM,08/14/2014 08:22:05 PM,08/14/2014 08:32:46 PM,08/14/2014 08:53:36 PM,08/14/2014 09:24:43 PM,Code 2 Transport,08/14/2014 10:05:06 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.769431688682, -122.424669373999)",142263201-66 +160981646,82,16038895,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:50:19 AM,04/07/2016 11:51:24 AM,04/07/2016 11:55:23 AM,04/07/2016 11:55:48 AM,04/07/2016 12:03:59 PM,04/07/2016 12:15:52 PM,04/07/2016 12:41:46 PM,Code 2 Transport,04/07/2016 01:23:52 PM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",160981646-82 +142420663,AM02,14084144,Medical Incident,08/30/2014,08/29/2014,08/30/2014 07:14:41 AM,08/30/2014 07:15:24 AM,08/30/2014 07:29:31 AM,08/30/2014 07:29:31 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 07:30:17 AM,1800 Block of THE EMBARCADERO,San Francisco,94133,B01,28,935,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,North Beach,"(37.8088354051007, -122.414108783784)",142420663-AM02 +150432969,B04,15016831,Structure Fire,02/12/2015,02/12/2015,02/12/2015 06:12:48 PM,02/12/2015 06:13:05 PM,02/12/2015 06:13:24 PM,02/12/2015 06:14:15 PM,02/12/2015 06:14:15 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Fire,02/12/2015 06:32:58 PM,500 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7113,3,3,3,false,Fire,1,CHIEF,1,7,1,Lone Mountain/USF,"(37.7802979836229, -122.458726030762)",150432969-B04 +153461284,64,15133190,Medical Incident,12/12/2015,12/12/2015,12/12/2015 10:03:17 AM,12/12/2015 10:05:13 AM,12/12/2015 10:06:43 AM,12/12/2015 10:06:54 AM,12/12/2015 10:20:14 AM,12/12/2015 11:26:04 AM,12/12/2015 11:26:05 AM,Code 2 Transport,12/12/2015 11:38:09 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",153461284-64 +150383325,KM02,15014929,Medical Incident,02/07/2015,02/07/2015,02/07/2015 08:03:21 PM,02/07/2015 08:04:45 PM,02/07/2015 08:05:06 PM,02/07/2015 08:05:32 PM,02/07/2015 08:20:51 PM,02/07/2015 08:39:00 PM,02/07/2015 08:52:53 PM,Code 2 Transport,02/07/2015 09:35:18 PM,1400 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,2,3,3,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7427360023761, -122.481581768623)",150383325-KM02 +152980834,54,15114331,Medical Incident,10/25/2015,10/25/2015,10/25/2015 08:22:51 AM,10/25/2015 08:22:51 AM,10/25/2015 08:35:59 AM,10/25/2015 08:36:14 AM,10/25/2015 08:39:19 AM,10/25/2015 08:50:34 AM,10/25/2015 08:59:57 AM,Code 3 Transport,10/25/2015 09:39:18 AM,INNES AV/ARELIOUS WALKER DR,San Francisco,94124,B10,25,6663,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7309360720471, -122.373890366307)",152980834-54 +161011015,85,16040124,Medical Incident,04/10/2016,04/10/2016,04/10/2016 09:22:05 AM,04/10/2016 09:23:12 AM,04/10/2016 09:23:19 AM,04/10/2016 09:23:40 AM,04/10/2016 09:30:07 AM,04/10/2016 09:45:07 AM,04/10/2016 09:51:13 AM,Code 2 Transport,04/10/2016 10:34:10 AM,1200 Block of TREAT AVE,San Francisco,94110,B06,07,5533,2,3,3,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7501730752061, -122.412693892535)",161011015-85 +152020399,B01,15076851,Alarms,07/21/2015,07/20/2015,07/21/2015 04:54:36 AM,07/21/2015 04:56:54 AM,07/21/2015 04:57:01 AM,07/21/2015 04:58:58 AM,07/21/2015 05:01:31 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/21/2015 05:08:21 AM,2100 Block of LEAVENWORTH ST,San Francisco,94133,B01,28,1532,3,3,3,false,Alarm,1,CHIEF,2,1,2,Russian Hill,"(37.8008138657608, -122.417624696225)",152020399-B01 +150381430,E32,15014738,Medical Incident,02/07/2015,02/07/2015,02/07/2015 11:23:54 AM,02/07/2015 11:26:38 AM,02/07/2015 11:27:25 AM,02/07/2015 11:28:28 AM,02/07/2015 11:32:20 AM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Code 2 Transport,02/07/2015 11:38:18 AM,30TH ST/MISSION ST,San Francisco,94110,B06,32,5575,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",150381430-E32 +160961930,53,16038027,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:21:46 PM,04/05/2016 01:22:48 PM,04/05/2016 01:23:16 PM,04/05/2016 01:23:25 PM,04/05/2016 01:27:15 PM,04/05/2016 01:50:37 PM,04/05/2016 02:14:43 PM,Code 2 Transport,04/05/2016 02:18:17 PM,2700 Block of LOMBARD ST,San Francisco,94123,B04,16,4326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7985968788664, -122.446649276894)",160961930-53 +161003457,65,16039977,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:36:11 PM,04/09/2016 10:37:35 PM,04/09/2016 10:44:47 PM,04/09/2016 10:44:58 PM,04/09/2016 10:56:22 PM,04/09/2016 11:05:18 PM,04/09/2016 11:20:46 PM,Code 2 Transport,04/09/2016 11:57:03 PM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7111753869011, -122.41625926444)",161003457-65 +153423226,63,15131722,Medical Incident,12/08/2015,12/08/2015,12/08/2015 06:42:59 PM,12/08/2015 06:43:38 PM,12/08/2015 06:49:58 PM,12/08/2015 06:50:09 PM,12/08/2015 07:09:48 PM,12/08/2015 07:30:39 PM,12/08/2015 07:42:37 PM,Code 2 Transport,12/08/2015 08:18:39 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",153423226-63 +143333159,87,14118151,Medical Incident,11/29/2014,11/29/2014,11/29/2014 08:02:44 PM,11/29/2014 08:06:34 PM,11/29/2014 08:06:59 PM,11/29/2014 08:11:33 PM,11/29/2014 08:16:29 PM,11/29/2014 08:53:03 PM,11/29/2014 09:06:00 PM,Code 2 Transport,11/29/2014 09:39:53 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",143333159-87 +152030796,87,15077251,Medical Incident,07/22/2015,07/22/2015,07/22/2015 08:32:22 AM,07/22/2015 08:33:52 AM,07/22/2015 08:34:54 AM,07/22/2015 08:35:04 AM,07/22/2015 08:46:40 AM,07/22/2015 09:02:46 AM,07/22/2015 09:43:06 AM,Code 2 Transport,07/22/2015 10:16:59 AM,700 Block of BURROWS ST,San Francisco,94134,B10,42,6335,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.727103069953, -122.41049342333)",152030796-87 +153400488,64,15130720,Medical Incident,12/06/2015,12/05/2015,12/06/2015 03:36:21 AM,12/06/2015 03:36:48 AM,12/06/2015 03:37:47 AM,12/06/2015 03:37:58 AM,12/06/2015 03:44:03 AM,12/06/2015 03:51:48 AM,12/06/2015 03:59:00 AM,Code 3 Transport,12/06/2015 04:17:51 AM,1000 Block of FOLSOM ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.778254811523, -122.405834032593)",153400488-64 +150902244,KM14,15034323,Medical Incident,03/31/2015,03/31/2015,03/31/2015 03:22:51 PM,03/31/2015 03:23:44 PM,03/31/2015 03:23:52 PM,03/31/2015 03:24:35 PM,03/31/2015 03:28:45 PM,03/31/2015 03:59:05 PM,03/31/2015 04:15:35 PM,Code 2 Transport,03/31/2015 04:51:39 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",150902244-KM14 +151613605,KM03,15061711,Medical Incident,06/10/2015,06/10/2015,06/10/2015 09:38:22 PM,06/10/2015 09:42:18 PM,06/10/2015 09:42:29 PM,06/10/2015 09:45:12 PM,06/10/2015 09:49:26 PM,04/25/2016 01:10:04 PM,04/25/2016 01:10:04 PM,Code 2 Transport,06/10/2015 09:54:35 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",151613605-KM03 +152574013,58,15098481,Medical Incident,09/14/2015,09/14/2015,09/14/2015 11:42:29 PM,09/14/2015 11:42:45 PM,09/14/2015 11:43:07 PM,09/14/2015 11:43:11 PM,09/14/2015 11:46:48 PM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Against Medical Advice,09/15/2015 01:09:09 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",152574013-58 +141943415,89,14067433,Medical Incident,07/13/2014,07/13/2014,07/13/2014 11:44:36 PM,07/13/2014 11:44:36 PM,07/13/2014 11:45:10 PM,07/13/2014 11:45:20 PM,07/13/2014 11:50:06 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Patient Declined Transport,07/14/2014 12:28:18 AM,0 Block of ELGIN PARK,San Francisco,94103,B02,36,5126,C,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7706578716685, -122.423156759671)",141943415-89 +160943455,AM24,16037433,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:37:50 PM,04/03/2016 09:38:42 PM,04/03/2016 09:38:54 PM,04/03/2016 09:39:14 PM,04/03/2016 09:45:22 PM,04/03/2016 09:54:00 PM,04/03/2016 10:12:17 PM,Code 2 Transport,04/03/2016 10:39:22 PM,MARKET ST/4TH ST,San Francisco,94103,B03,1,1322,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160943455-AM24 +142240134,E38,14077579,Alarms,08/12/2014,08/11/2014,08/12/2014 01:14:52 AM,08/12/2014 01:16:13 AM,08/12/2014 01:16:52 AM,08/12/2014 01:18:53 AM,08/12/2014 01:21:08 AM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Fire,08/12/2014 01:25:06 AM,1800 Block of JACKSON ST,San Francisco,94109,B04,38,3252,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7936758446796, -122.425525660789)",142240134-E38 +151050140,B03,15039558,Alarms,04/15/2015,04/14/2015,04/15/2015 01:03:28 AM,04/15/2015 01:05:11 AM,04/15/2015 01:05:21 AM,04/15/2015 01:07:37 AM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Fire,04/15/2015 01:13:11 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",151050140-B03 +160991404,89,16039274,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:44:30 AM,04/08/2016 11:47:38 AM,04/08/2016 11:48:18 AM,04/08/2016 11:48:28 AM,04/08/2016 12:13:57 PM,04/08/2016 12:26:00 PM,04/08/2016 12:47:14 PM,Code 2 Transport,04/08/2016 01:07:16 PM,1400 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6516,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",160991404-89 +141090274,E26,14036850,Citizen Assist / Service Call,04/19/2014,04/19/2014,04/19/2014 06:16:10 PM,04/19/2014 06:17:34 PM,04/19/2014 06:17:48 PM,04/19/2014 06:19:48 PM,04/19/2014 06:21:16 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Fire,04/19/2014 06:27:33 PM,DIAMOND ST/DIAMOND HEIGHTS BL,SAN FRANCISCO,94131,B06,26,8173,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7382879698388, -122.437398204407)",141090274-E26 +142791211,E03,14098105,Citizen Assist / Service Call,10/06/2014,10/06/2014,10/06/2014 10:35:15 AM,10/06/2014 10:37:36 AM,10/06/2014 10:38:32 AM,10/06/2014 10:41:26 AM,10/06/2014 10:44:20 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 11:01:42 AM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",142791211-E03 +143242782,T05,14114809,Structure Fire,11/20/2014,11/20/2014,11/20/2014 06:22:03 PM,11/20/2014 06:22:47 PM,11/20/2014 06:23:26 PM,11/20/2014 06:24:34 PM,11/20/2014 06:27:12 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Fire,11/20/2014 06:33:55 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,TRUCK,5,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",143242782-T05 +160962353,62,16038059,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:03:04 PM,04/05/2016 03:05:48 PM,04/05/2016 03:05:55 PM,04/05/2016 03:07:43 PM,04/05/2016 03:10:28 PM,04/05/2016 03:31:49 PM,04/05/2016 03:54:43 PM,Code 2 Transport,04/05/2016 04:30:59 PM,157-159 COLLINGWOOD ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7600122430169, -122.435964918002)",160962353-62 +160963223,77,16038133,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:17:20 PM,04/05/2016 06:17:20 PM,04/05/2016 06:19:38 PM,04/05/2016 06:19:49 PM,04/05/2016 06:24:38 PM,04/05/2016 06:32:54 PM,04/05/2016 07:01:55 PM,Code 3 Transport,04/05/2016 07:15:32 PM,300 Block of GOUGH ST,San Francisco,94102,B02,36,3265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.776658453148, -122.422862121316)",160963223-77 +141100295,E05,14037212,Medical Incident,04/20/2014,04/20/2014,04/20/2014 07:06:52 PM,04/20/2014 07:09:14 PM,04/20/2014 07:09:48 PM,04/20/2014 07:11:15 PM,04/20/2014 07:12:57 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/20/2014 07:47:49 PM,1200 Block of BUCHANAN ST,SAN FRANCISCO,94115,B02,5,3426,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7816468439098, -122.428929933146)",141100295-E05 +150782047,RC3,15029916,Medical Incident,03/19/2015,03/19/2015,03/19/2015 01:33:09 PM,03/19/2015 01:34:28 PM,03/19/2015 01:36:56 PM,03/19/2015 01:36:56 PM,03/19/2015 01:40:36 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Medical Examiner,03/19/2015 02:49:08 PM,1500 Block of ALABAMA ST,San Francisco,94110,B06,9,5622,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,9,Bernal Heights,"(37.7478290562548, -122.410568705339)",150782047-RC3 +153012367,B01,15115514,Other,10/28/2015,10/28/2015,10/28/2015 02:30:10 PM,10/28/2015 02:30:10 PM,10/28/2015 02:40:04 PM,10/28/2015 02:40:04 PM,10/28/2015 02:44:12 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 04:00:56 PM,JEFFERSON ST/HYDE ST,San Francisco,94109,B01,28,947,3,3,3,false,Alarm,1,CHIEF,2,1,2,Russian Hill,"(37.8075901055183, -122.420743268989)",153012367-B01 +150132683,79,15005256,Medical Incident,01/13/2015,01/13/2015,01/13/2015 04:57:40 PM,01/13/2015 04:58:24 PM,01/13/2015 04:58:45 PM,01/13/2015 04:58:55 PM,01/13/2015 05:24:41 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Unable to Locate,01/13/2015 05:26:44 PM,5TH ST/FOLSOM ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",150132683-79 +141130329,89,14038233,Medical Incident,04/23/2014,04/23/2014,04/23/2014 05:48:26 PM,04/23/2014 05:49:27 PM,04/23/2014 05:50:25 PM,04/23/2014 05:51:24 PM,04/23/2014 05:54:08 PM,04/23/2014 05:59:13 PM,04/23/2014 06:21:29 PM,Code 2 Transport,04/23/2014 06:25:47 PM,100 Block of LARKIN ST,SAN FRANCISCO,94102,B02,36,1645,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",141130329-89 +151370909,E09,15051957,Medical Incident,05/17/2015,05/17/2015,05/17/2015 08:29:58 AM,05/17/2015 08:32:50 AM,05/17/2015 08:33:24 AM,05/17/2015 08:34:44 AM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Code 2 Transport,05/17/2015 09:02:19 AM,POTRERO AV/22ND ST,San Francisco,94110,B10,37,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",151370909-E09 +160983941,85,16039133,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:37:52 PM,04/07/2016 10:38:51 PM,04/07/2016 10:39:05 PM,04/07/2016 10:39:21 PM,04/07/2016 10:42:04 PM,04/07/2016 10:51:43 PM,04/07/2016 11:15:35 PM,Code 2 Transport,04/07/2016 11:41:18 PM,POWELL ST/BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7974201856554, -122.410263526117)",160983941-85 +151872517,E21,15071475,Medical Incident,07/06/2015,07/06/2015,07/06/2015 03:50:58 PM,07/06/2015 03:53:30 PM,07/06/2015 04:20:51 PM,07/06/2015 04:21:55 PM,07/06/2015 04:24:16 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Code 2 Transport,07/06/2015 04:30:43 PM,1000 Block of HAYES ST,San Francisco,94117,B05,21,3631,2,2,2,false,Non Life-threatening,1,ENGINE,2,5,5,Hayes Valley,"(37.7754672344817, -122.433645632366)",151872517-E21 +150291831,E38,15011182,Administrative,01/29/2015,01/29/2015,01/29/2015 01:49:52 PM,01/29/2015 01:50:00 PM,01/29/2015 01:50:37 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Fire,01/29/2015 01:51:33 PM,2100 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",150291831-E38 +141250277,55,14042417,Medical Incident,05/05/2014,05/05/2014,05/05/2014 04:02:23 PM,05/05/2014 04:02:57 PM,05/05/2014 04:03:25 PM,05/05/2014 04:03:38 PM,05/05/2014 04:08:54 PM,05/05/2014 04:28:00 PM,05/05/2014 04:40:07 PM,Code 2 Transport,05/05/2014 05:08:41 PM,0 Block of ESSEX ST,SAN FRANCISCO,94105,B03,35,2136,E,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",141250277-55 +150932391,72,15035410,Medical Incident,04/03/2015,04/03/2015,04/03/2015 04:03:05 PM,04/03/2015 04:05:13 PM,04/03/2015 04:07:55 PM,04/03/2015 04:08:13 PM,04/03/2015 04:30:05 PM,04/03/2015 04:53:53 PM,04/03/2015 05:18:28 PM,Code 2 Transport,04/03/2015 05:54:56 PM,200 Block of EVELYN WAY,San Francisco,94127,B09,39,8655,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7426820880698, -122.449417082278)",150932391-72 +141150372,E41,14038988,Alarms,04/25/2014,04/25/2014,04/25/2014 10:46:12 PM,04/25/2014 10:46:57 PM,04/25/2014 10:47:25 PM,04/25/2014 10:48:31 PM,04/25/2014 10:50:43 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Fire,04/25/2014 11:05:21 PM,1200 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3121,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.787598161751, -122.420926156157)",141150372-E41 +151521864,57,15057881,Medical Incident,06/01/2015,06/01/2015,06/01/2015 01:43:53 PM,06/01/2015 01:45:12 PM,06/01/2015 01:45:43 PM,06/01/2015 01:45:58 PM,06/01/2015 01:49:12 PM,04/25/2016 01:10:16 PM,04/25/2016 01:10:16 PM,Patient Declined Transport,06/01/2015 02:58:14 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,true,Non Life-threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",151521864-57 +152040331,E35,15077590,Medical Incident,07/23/2015,07/22/2015,07/23/2015 03:45:01 AM,07/23/2015 03:46:15 AM,07/23/2015 03:46:26 AM,07/23/2015 03:49:30 AM,07/23/2015 03:52:15 AM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,No Merit,07/23/2015 03:59:14 AM,STEUART ST/MISSION ST,San Francisco,94105,B03,35,2111,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",152040331-E35 +160961747,54,16038004,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:40:43 PM,04/05/2016 12:42:02 PM,04/05/2016 12:42:14 PM,04/05/2016 12:42:23 PM,04/05/2016 12:54:06 PM,04/05/2016 01:12:54 PM,04/05/2016 01:31:46 PM,Code 2 Transport,04/05/2016 02:03:24 PM,3400 Block of CABRILLO ST,San Francisco,94121,B07,34,7252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7739770464702, -122.495581192111)",160961747-54 +150270316,AM24,15010274,Medical Incident,01/27/2015,01/26/2015,01/27/2015 04:15:47 AM,01/27/2015 04:16:43 AM,01/27/2015 04:16:57 AM,01/27/2015 04:17:23 AM,01/27/2015 04:19:41 AM,01/27/2015 04:36:25 AM,01/27/2015 05:09:57 AM,Code 2 Transport,01/27/2015 05:36:07 AM,GEARY BL/27TH AV,San Francisco,94121,B07,14,7213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7799935399655, -122.486878047232)",150270316-AM24 +160932206,54,16036914,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:20:26 PM,04/02/2016 03:21:31 PM,04/02/2016 03:21:51 PM,04/02/2016 03:22:01 PM,04/02/2016 03:28:24 PM,04/02/2016 03:43:07 PM,04/02/2016 04:19:10 PM,Code 2 Transport,04/02/2016 04:48:22 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160932206-54 +141501295,55,14051507,Medical Incident,05/30/2014,05/30/2014,05/30/2014 11:50:12 AM,05/30/2014 11:51:17 AM,05/30/2014 11:51:45 AM,05/30/2014 11:53:23 AM,05/30/2014 11:59:57 AM,05/30/2014 12:23:32 PM,05/30/2014 12:32:07 PM,Code 2 Transport,05/30/2014 01:04:42 PM,3100 Block of 25TH ST,San Francisco,94110,B06,7,5533,2,3,3,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7509742606075, -122.41365037931)",141501295-55 +160992120,KM04,16039339,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:49:17 PM,04/08/2016 02:51:03 PM,04/08/2016 02:53:49 PM,04/08/2016 02:54:29 PM,04/08/2016 02:59:41 PM,04/08/2016 03:10:28 PM,04/08/2016 03:29:04 PM,Code 2 Transport,04/08/2016 04:07:42 PM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",160992120-KM04 +150133550,T10,15005326,Alarms,01/13/2015,01/13/2015,01/13/2015 08:53:52 PM,01/13/2015 08:54:47 PM,01/13/2015 08:55:08 PM,01/13/2015 08:56:15 PM,01/13/2015 08:59:03 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Fire,01/13/2015 09:19:38 PM,3300 Block of GEARY BLVD,San Francisco,94118,B07,10,4453,3,3,3,false,Alarm,1,TRUCK,2,7,2,Presidio Heights,"(37.7816501739638, -122.454753954171)",150133550-T10 +151100371,RS2,15041490,Structure Fire,04/20/2015,04/19/2015,04/20/2015 04:51:53 AM,04/20/2015 04:53:59 AM,04/20/2015 04:54:36 AM,04/20/2015 04:56:12 AM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Fire,04/20/2015 04:57:48 AM,24TH ST/POTRERO AV,San Francisco,94110,B10,9,2562,3,3,3,false,Alarm,1,RESCUE SQUAD,9,10,9,Mission,"(37.7530040313925, -122.406336240587)",151100371-RS2 +152190148,AM18,15083230,Medical Incident,08/07/2015,08/06/2015,08/07/2015 12:56:19 AM,08/07/2015 12:58:24 AM,08/07/2015 12:58:54 AM,08/07/2015 12:59:36 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Unable to Locate,08/07/2015 01:00:10 AM,GEARY ST/STOCKTON ST,San Francisco,94108,B01,1,1323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7875680237553, -122.40658988461)",152190148-AM18 +142790315,T01,14098027,Alarms,10/06/2014,10/05/2014,10/06/2014 03:28:11 AM,10/06/2014 03:29:56 AM,10/06/2014 03:30:16 AM,10/06/2014 03:31:47 AM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Fire,10/06/2014 03:34:49 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",142790315-T01 +160940895,75,16037191,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:04:43 AM,04/03/2016 08:04:43 AM,04/03/2016 08:04:59 AM,04/03/2016 08:05:09 AM,04/03/2016 08:13:21 AM,04/03/2016 08:21:34 AM,04/03/2016 08:45:01 AM,Code 2 Transport,04/03/2016 09:11:54 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160940895-75 +150072803,E06,15002791,Medical Incident,01/07/2015,01/07/2015,01/07/2015 05:35:46 PM,01/07/2015 05:36:14 PM,01/07/2015 05:37:04 PM,01/07/2015 05:37:57 PM,01/07/2015 05:57:28 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Code 2 Transport,01/07/2015 06:15:44 PM,400 Block of DUBOCE AVE,San Francisco,94117,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",150072803-E06 +150060198,89,15002109,Medical Incident,01/06/2015,01/05/2015,01/06/2015 01:59:50 AM,01/06/2015 02:00:25 AM,01/06/2015 02:00:59 AM,01/06/2015 02:01:12 AM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 3 Transport,01/06/2015 02:06:58 AM,16TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7651831353816, -122.417486597301)",150060198-89 +160992510,KM04,16039385,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:21:48 PM,04/08/2016 04:22:38 PM,04/08/2016 04:23:26 PM,04/08/2016 04:24:04 PM,04/08/2016 04:30:01 PM,04/08/2016 05:06:38 PM,04/08/2016 05:25:30 PM,Code 2 Transport,04/08/2016 06:02:22 PM,700 Block of GRANT AVE,San Francisco,94108,B01,13,1313,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7936143920332, -122.406106633361)",160992510-KM04 +150661144,AM12,15025175,Medical Incident,03/07/2015,03/07/2015,03/07/2015 09:57:39 AM,03/07/2015 09:59:12 AM,03/07/2015 09:59:57 AM,03/07/2015 10:02:59 AM,03/07/2015 10:02:59 AM,03/07/2015 10:13:28 AM,03/07/2015 10:21:16 AM,Code 2 Transport,03/07/2015 10:44:04 AM,VAN NESS AV/MCALLISTER ST,San Francisco,94102,B02,36,3165,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",150661144-AM12 +142120972,B01,14073412,Alarms,07/31/2014,07/31/2014,07/31/2014 09:19:51 AM,07/31/2014 09:21:30 AM,07/31/2014 09:22:50 AM,07/31/2014 09:22:58 AM,07/31/2014 09:31:00 AM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Fire,07/31/2014 09:38:18 AM,200 Block of OFARRELL ST,San Francisco,94102,B01,1,1363,3,3,3,false,Alarm,1,CHIEF,2,3,3,Tenderloin,"(37.7862985138478, -122.408477809664)",142120972-B01 +141650145,81,14056760,Citizen Assist / Service Call,06/14/2014,06/13/2014,06/14/2014 12:51:20 AM,06/14/2014 12:53:46 AM,06/14/2014 12:55:08 AM,06/14/2014 12:56:28 AM,06/14/2014 01:06:28 AM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Patient Declined Transport,06/14/2014 01:22:50 AM,1400 Block of QUESADA AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Alarm,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7307439718873, -122.386750852742)",141650145-81 +160930128,KM06,16036679,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:46:46 AM,04/02/2016 12:48:48 AM,04/02/2016 12:51:30 AM,04/02/2016 12:52:49 AM,04/02/2016 12:55:46 AM,04/02/2016 01:15:00 AM,04/02/2016 01:34:25 AM,Code 2 Transport,04/02/2016 02:09:53 AM,3200 Block of LAGUNA ST,San Francisco,94123,B04,16,3352,2,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8012058695901, -122.43133357328)",160930128-KM06 +143450279,E15,14122564,Medical Incident,12/11/2014,12/10/2014,12/11/2014 02:30:27 AM,12/11/2014 02:30:52 AM,12/11/2014 02:31:14 AM,12/11/2014 02:31:48 AM,12/11/2014 02:34:06 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Code 2 Transport,12/11/2014 02:44:06 AM,200 Block of THERESA ST,San Francisco,94112,B09,15,8267,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7298371341208, -122.435916984704)",143450279-E15 +150631081,T06,15023989,Traffic Collision,03/04/2015,03/04/2015,03/04/2015 09:24:30 AM,03/04/2015 09:24:30 AM,03/04/2015 09:26:39 AM,03/04/2015 09:27:48 AM,03/04/2015 09:29:31 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 09:38:48 AM,16TH ST/GUERRERO ST,San Francisco,94103,B02,6,5235,2,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",150631081-T06 +143432807,KM02,14122034,Medical Incident,12/09/2014,12/09/2014,12/09/2014 04:38:45 PM,12/09/2014 04:39:51 PM,12/09/2014 04:41:23 PM,12/09/2014 04:42:16 PM,12/09/2014 04:48:05 PM,12/09/2014 05:03:10 PM,12/09/2014 05:35:19 PM,Code 2 Transport,12/09/2014 06:14:39 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",143432807-KM02 +150842377,E36,15032104,Medical Incident,03/25/2015,03/25/2015,03/25/2015 03:01:22 PM,03/25/2015 03:04:11 PM,03/25/2015 03:04:44 PM,03/25/2015 03:05:01 PM,03/25/2015 03:10:06 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,Code 2 Transport,03/25/2015 03:26:02 PM,1500 Block of HOWARD ST,San Francisco,94103,B02,36,5114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.772123277472, -122.416667284185)",150842377-E36 +160940012,72,16037094,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:02:47 AM,04/03/2016 12:03:26 AM,04/03/2016 12:03:37 AM,04/03/2016 12:03:45 AM,04/03/2016 12:12:07 AM,04/03/2016 12:35:29 AM,04/03/2016 01:06:03 AM,Code 2 Transport,04/03/2016 01:30:17 AM,4600 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7846372330279, -122.467225536623)",160940012-72 +150820979,B07,15031305,Alarms,03/23/2015,03/23/2015,03/23/2015 09:34:32 AM,03/23/2015 09:36:00 AM,03/23/2015 09:36:05 AM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Fire,03/23/2015 09:41:22 AM,1000 Block of GREAT HWY,San Francisco,94122,B08,23,7722,3,3,3,false,Alarm,1,CHIEF,2,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",150820979-B07 +142632054,65,14092035,Medical Incident,09/20/2014,09/20/2014,09/20/2014 02:54:35 PM,09/20/2014 02:55:23 PM,09/20/2014 02:55:42 PM,09/20/2014 02:55:58 PM,09/20/2014 02:59:50 PM,09/20/2014 03:08:25 PM,09/20/2014 03:23:43 PM,Code 2 Transport,09/20/2014 03:58:57 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142632054-65 +160953890,AM24,16037811,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:04:31 PM,04/04/2016 10:05:02 PM,04/04/2016 10:05:43 PM,04/04/2016 10:06:37 PM,04/04/2016 10:11:57 PM,04/04/2016 10:17:38 PM,04/04/2016 10:30:02 PM,Code 2 Transport,04/04/2016 11:06:49 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160953890-AM24 +143510339,E06,14125242,Medical Incident,12/17/2014,12/16/2014,12/17/2014 04:29:58 AM,12/17/2014 04:30:36 AM,12/17/2014 04:30:59 AM,12/17/2014 04:32:53 AM,12/17/2014 04:34:40 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Code 2 Transport,12/17/2014 04:44:48 AM,HAIGHT ST/FILLMORE ST,San Francisco,94117,B02,6,3524,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7721082581802, -122.430433920263)",143510339-E06 +143480384,T02,14124097,Structure Fire,12/14/2014,12/13/2014,12/14/2014 02:24:42 AM,12/14/2014 02:25:45 AM,12/14/2014 02:26:26 AM,12/14/2014 02:28:46 AM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,Fire,12/14/2014 02:47:07 AM,1500 Block of BAY ST,San Francisco,94123,B04,16,3446,3,3,3,false,Alarm,1,TRUCK,8,4,2,Marina,"(37.8032160457543, -122.43251463112)",143480384-T02 +151334000,E29,15050654,Medical Incident,05/13/2015,05/13/2015,05/13/2015 09:53:58 PM,05/13/2015 09:54:37 PM,05/13/2015 09:55:14 PM,05/13/2015 09:56:51 PM,05/13/2015 09:58:53 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Code 2 Transport,05/13/2015 10:05:25 PM,1200 Block of 17TH ST,San Francisco,94107,B03,29,2431,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,10,Potrero Hill,"(37.7651047966858, -122.396283594618)",151334000-E29 +151370654,B07,15051930,Alarms,05/17/2015,05/16/2015,05/17/2015 06:13:43 AM,05/17/2015 06:15:38 AM,05/17/2015 06:15:46 AM,05/17/2015 06:17:36 AM,05/17/2015 06:21:08 AM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Code 2 Transport,05/17/2015 06:23:44 AM,1400 Block of CLEMENT ST,San Francisco,94118,B07,31,7153,3,3,3,false,Alarm,1,CHIEF,1,7,1,Outer Richmond,"(37.7824283415319, -122.474669098316)",151370654-B07 +142230379,74,14077280,Medical Incident,08/11/2014,08/10/2014,08/11/2014 04:12:37 AM,08/11/2014 04:14:38 AM,08/11/2014 04:15:12 AM,08/11/2014 04:15:26 AM,08/11/2014 04:22:49 AM,08/11/2014 04:26:10 AM,08/11/2014 04:39:45 AM,Code 2 Transport,08/11/2014 04:55:56 AM,100 Block of GAMBIER ST,San Francisco,94134,B09,43,6146,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Excelsior,"(37.7274340443365, -122.422164419861)",142230379-74 +141792690,T07,14061886,Structure Fire,06/28/2014,06/28/2014,06/28/2014 05:49:31 PM,06/28/2014 05:49:56 PM,06/28/2014 05:51:08 PM,06/28/2014 05:52:28 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,Fire,06/28/2014 06:53:05 PM,3300 Block of 17TH ST,San Francisco,94110,B02,7,5247,3,3,3,false,Fire,1,TRUCK,10,2,9,Mission,"(37.7632828833773, -122.421077099957)",141792690-T07 +153141304,77,15120613,Medical Incident,11/10/2015,11/10/2015,11/10/2015 10:38:26 AM,11/10/2015 10:40:04 AM,11/10/2015 11:24:26 AM,11/10/2015 11:24:26 AM,11/10/2015 11:24:26 AM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Code 2 Transport,11/10/2015 11:25:00 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",153141304-77 +142670996,KM06,14093417,Medical Incident,09/24/2014,09/24/2014,09/24/2014 08:59:38 AM,09/24/2014 08:59:38 AM,09/24/2014 08:59:49 AM,09/24/2014 09:00:18 AM,09/24/2014 09:05:50 AM,09/24/2014 09:21:06 AM,09/24/2014 09:27:18 AM,Code 2 Transport,09/24/2014 09:50:41 AM,100 Block of DIAMOND ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7599619000358, -122.437045577764)",142670996-KM06 +141982538,E15,14068631,Medical Incident,07/17/2014,07/17/2014,07/17/2014 05:01:57 PM,07/17/2014 05:04:05 PM,07/17/2014 05:05:06 PM,07/17/2014 05:06:49 PM,07/17/2014 05:08:33 PM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Code 2 Transport,07/17/2014 05:23:58 PM,OCEAN AV/HOWTH ST,San Francisco,94112,B09,15,8314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7229613197443, -122.449558618759)",141982538-E15 +160951877,74,16037637,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:12:39 PM,04/04/2016 01:12:39 PM,04/04/2016 01:17:41 PM,04/04/2016 01:17:51 PM,04/04/2016 01:25:59 PM,04/04/2016 02:08:39 PM,04/04/2016 02:14:09 PM,Code 2 Transport,04/04/2016 03:21:41 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160951877-74 +150120910,83,15004663,Traffic Collision,01/12/2015,01/12/2015,01/12/2015 09:06:55 AM,01/12/2015 09:08:05 AM,01/12/2015 09:08:25 AM,01/12/2015 09:08:33 AM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Code 3 Transport,01/12/2015 09:11:11 AM,TAYLOR ST/CALIFORNIA ST,San Francisco,94108,B01,41,1445,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Nob Hill,"(37.7916270743525, -122.412460881674)",150120910-83 +141200184,E25,14040547,Citizen Assist / Service Call,04/30/2014,04/30/2014,04/30/2014 12:58:10 PM,04/30/2014 12:58:42 PM,04/30/2014 01:01:14 PM,04/30/2014 01:02:23 PM,04/30/2014 01:07:37 PM,04/25/2016 01:17:36 PM,04/25/2016 01:17:36 PM,Fire,04/30/2014 01:23:55 PM,INDIANA ST/TULARE ST,SAN FRANCISCO,94124,B10,25,2635,3,3,3,false,Alarm,1,ENGINE,1,None,10,None,"(37.7476067377254, -122.390174876659)",141200184-E25 +160982599,89,16039001,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:52:15 PM,04/07/2016 03:52:15 PM,04/07/2016 03:53:29 PM,04/07/2016 03:53:29 PM,04/07/2016 03:57:28 PM,04/07/2016 04:02:02 PM,04/07/2016 04:19:24 PM,Code 3 Transport,04/07/2016 05:26:21 PM,900 Block of MCALLISTER ST,San Francisco,94102,B02,5,3425,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",160982599-89 +143411842,AM08,14121168,,12/07/2014,12/07/2014,12/07/2014 01:37:00 PM,12/07/2014 01:37:00 PM,12/07/2014 01:38:00 PM,12/07/2014 01:39:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,SFPD,12/07/2014 01:44:00 PM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,13,1246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",143411842-AM08 +151971578,E32,15075110,Medical Incident,07/16/2015,07/16/2015,07/16/2015 12:23:05 PM,07/16/2015 12:26:32 PM,07/16/2015 12:27:19 PM,07/16/2015 12:28:01 PM,07/16/2015 12:33:48 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Unable to Locate,07/16/2015 12:36:31 PM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",151971578-E32 +160990748,AM02,16039211,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:18:30 AM,04/08/2016 08:23:18 AM,04/08/2016 08:24:02 AM,04/08/2016 08:24:02 AM,04/08/2016 08:39:35 AM,04/08/2016 09:04:54 AM,04/08/2016 09:28:13 AM,Code 2 Transport,04/08/2016 10:15:45 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160990748-AM02 +143460748,T06,14123229,Citizen Assist / Service Call,12/12/2014,12/12/2014,12/12/2014 08:17:36 AM,12/12/2014 08:20:51 AM,12/12/2014 08:26:53 AM,12/12/2014 08:28:39 AM,12/12/2014 08:29:38 AM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Fire,12/12/2014 09:14:14 AM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Alarm,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",143460748-T06 +141872423,E36,14064871,Medical Incident,07/06/2014,07/06/2014,07/06/2014 05:37:42 PM,07/06/2014 05:38:17 PM,07/06/2014 05:38:35 PM,07/06/2014 05:40:30 PM,07/06/2014 05:45:20 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,No Merit,07/06/2014 06:01:33 PM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,3,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7774574199485, -122.413157691577)",141872423-E36 +142183280,T03,14075718,Medical Incident,08/06/2014,08/06/2014,08/06/2014 07:07:07 PM,08/06/2014 07:07:51 PM,08/06/2014 07:08:02 PM,08/06/2014 07:09:04 PM,08/06/2014 07:10:00 PM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,No Merit,08/06/2014 07:13:51 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,E,E,3,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142183280-T03 +153030304,89,15116074,Medical Incident,10/30/2015,10/29/2015,10/30/2015 02:41:55 AM,10/30/2015 02:43:41 AM,10/30/2015 02:46:35 AM,10/30/2015 02:46:49 AM,10/30/2015 02:53:14 AM,10/30/2015 03:11:48 AM,10/30/2015 03:27:37 AM,Code 2 Transport,10/30/2015 04:20:59 AM,1600 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7726948236861, -122.422188261426)",153030304-89 +160980391,AM20,16038770,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:39:38 AM,04/07/2016 03:40:11 AM,04/07/2016 03:40:26 AM,04/07/2016 03:41:07 AM,04/07/2016 03:46:09 AM,04/07/2016 03:55:51 AM,04/07/2016 04:23:27 AM,Code 2 Transport,04/07/2016 05:02:37 AM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",160980391-AM20 +161003085,AM18,16039933,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:48:17 PM,04/09/2016 08:49:26 PM,04/09/2016 08:51:24 PM,04/09/2016 08:52:39 PM,04/09/2016 09:02:33 PM,04/09/2016 09:10:15 PM,04/09/2016 09:19:49 PM,Code 2 Transport,04/09/2016 09:59:29 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",161003085-AM18 +151263561,RS1,15047924,Structure Fire,05/06/2015,05/06/2015,05/06/2015 08:42:25 PM,05/06/2015 08:43:15 PM,05/06/2015 08:43:43 PM,05/06/2015 08:43:50 PM,05/06/2015 08:46:20 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Fire,05/06/2015 08:59:38 PM,POST ST/JONES ST,San Francisco,94109,B01,3,1451,3,3,3,false,Alarm,1,RESCUE SQUAD,4,1,3,Tenderloin,"(37.787663597879, -122.413353964838)",151263561-RS1 +152614246,E12,15099958,Medical Incident,09/18/2015,09/18/2015,09/18/2015 10:49:57 PM,09/18/2015 10:50:34 PM,09/18/2015 10:50:57 PM,09/18/2015 10:52:35 PM,09/18/2015 11:00:04 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/18/2015 11:14:05 PM,800 Block of CORBETT AVE,San Francisco,94131,B06,24,5273,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Twin Peaks,"(37.753396813252, -122.443420334793)",152614246-E12 +141920272,T06,14066417,Alarms,07/11/2014,07/10/2014,07/11/2014 01:56:21 AM,07/11/2014 01:59:03 AM,07/11/2014 01:59:12 AM,07/11/2014 02:00:55 AM,07/11/2014 02:02:25 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Fire,07/11/2014 02:06:20 AM,1900 Block of 15TH ST,San Francisco,94114,B02,6,5227,3,3,3,false,Alarm,1,TRUCK,3,2,8,Castro/Upper Market,"(37.7661763079166, -122.427142652668)",141920272-T06 +160972529,89,16038474,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:51:26 PM,04/06/2016 02:53:57 PM,04/06/2016 02:54:46 PM,04/06/2016 03:04:17 PM,04/06/2016 03:04:17 PM,04/06/2016 03:29:46 PM,04/06/2016 04:07:58 PM,Code 2 Transport,04/06/2016 04:47:20 PM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",160972529-89 +152552757,E29,15097608,Medical Incident,09/12/2015,09/12/2015,09/12/2015 05:56:13 PM,09/12/2015 05:56:39 PM,09/12/2015 05:57:34 PM,09/12/2015 05:58:03 PM,09/12/2015 06:03:25 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Code 2 Transport,09/12/2015 06:08:57 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",152552757-E29 +150484025,E06,15018800,Medical Incident,02/17/2015,02/17/2015,02/17/2015 11:43:59 PM,02/17/2015 11:44:51 PM,02/17/2015 11:45:13 PM,02/17/2015 11:46:32 PM,02/17/2015 11:47:48 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Code 2 Transport,02/18/2015 12:01:12 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150484025-E06 +151800891,CD2,15068639,Structure Fire,06/29/2015,06/29/2015,06/29/2015 08:55:41 AM,06/29/2015 08:56:03 AM,06/29/2015 09:12:36 AM,06/29/2015 09:12:36 AM,06/29/2015 09:21:12 AM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Code 2 Transport,06/29/2015 01:03:52 PM,1100 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8473,3,3,3,false,Fire,3,CHIEF,20,9,7,Oceanview/Merced/Ingleside,"(37.7228660555737, -122.456215121014)",151800891-CD2 +160983334,62,16039078,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:14:47 PM,04/07/2016 07:14:47 PM,04/07/2016 07:15:15 PM,04/07/2016 07:15:26 PM,04/07/2016 07:39:23 PM,04/07/2016 07:55:55 PM,04/07/2016 08:22:01 PM,Code 2 Transport,04/07/2016 08:52:06 PM,GRANT AV/BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",160983334-62 +160931212,AM02,16036797,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:29:28 AM,04/02/2016 10:32:32 AM,04/02/2016 10:32:57 AM,04/02/2016 10:34:38 AM,04/02/2016 10:45:06 AM,04/02/2016 10:51:14 AM,04/02/2016 11:14:05 AM,Code 3 Transport,04/02/2016 11:55:57 AM,1200 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7211257483752, -122.389791072632)",160931212-AM02 +141390118,KM07,14047508,Medical Incident,05/19/2014,05/18/2014,05/19/2014 12:55:41 AM,05/19/2014 12:58:34 AM,05/19/2014 12:59:30 AM,05/19/2014 12:59:30 AM,05/19/2014 01:05:01 AM,05/19/2014 01:07:09 AM,04/25/2016 01:17:15 PM,Code 2 Transport,05/19/2014 01:40:56 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",141390118-KM07 +143033904,E01,14107291,Alarms,10/30/2014,10/30/2014,10/30/2014 10:08:09 PM,10/30/2014 10:09:09 PM,10/30/2014 10:09:14 PM,10/30/2014 10:10:31 PM,10/30/2014 10:12:46 PM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,Fire,10/30/2014 10:18:09 PM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",143033904-E01 +141160217,84,14039186,Medical Incident,04/26/2014,04/26/2014,04/26/2014 01:52:04 PM,04/26/2014 01:55:49 PM,04/26/2014 01:56:11 PM,04/26/2014 01:56:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Patient Declined Transport,04/26/2014 02:16:45 PM,600 Block of EDDY ST,SAN FRANCISCO,94109,B02,3,1643,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",141160217-84 +142732819,RS2,14095805,Traffic Collision,09/30/2014,09/30/2014,09/30/2014 05:33:20 PM,09/30/2014 05:34:58 PM,09/30/2014 05:35:45 PM,09/30/2014 05:37:11 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Code 2 Transport,09/30/2014 05:40:36 PM,MARTIN LUTHER KING DR/MUSIC CONCOURSE DR,,94118,B07,22,7744,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,8,7,5,Golden Gate Park,"(37.7687765289695, -122.468334201321)",142732819-RS2 +143591618,62,14128492,Medical Incident,12/25/2014,12/25/2014,12/25/2014 03:59:05 PM,12/25/2014 03:59:32 PM,12/25/2014 04:00:39 PM,12/25/2014 04:02:01 PM,12/25/2014 04:07:56 PM,12/25/2014 04:27:35 PM,12/25/2014 05:06:23 PM,Code 2 Transport,12/25/2014 05:12:56 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",143591618-62 +153012987,74,15115551,Medical Incident,10/28/2015,10/28/2015,10/28/2015 05:06:50 PM,10/28/2015 05:06:50 PM,10/28/2015 05:08:13 PM,10/28/2015 05:08:29 PM,10/28/2015 05:10:14 PM,10/28/2015 05:25:28 PM,10/28/2015 05:36:07 PM,Code 3 Transport,10/28/2015 06:17:32 PM,OAK ST/COLE ST,San Francisco,94117,B05,21,4524,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.7714601419293, -122.450600179338)",153012987-74 +160970563,65,16038291,Medical Incident,04/06/2016,04/05/2016,04/06/2016 06:57:24 AM,04/06/2016 06:58:18 AM,04/06/2016 06:59:11 AM,04/06/2016 06:59:20 AM,04/06/2016 07:12:00 AM,04/06/2016 07:24:37 AM,04/06/2016 07:56:21 AM,Code 2 Transport,04/06/2016 08:25:42 AM,100 Block of SANTOS ST,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",160970563-65 +152393767,89,15091203,Medical Incident,08/27/2015,08/27/2015,08/27/2015 08:49:28 PM,08/27/2015 08:50:20 PM,08/27/2015 08:51:01 PM,08/27/2015 08:51:09 PM,08/27/2015 08:53:49 PM,08/27/2015 09:13:16 PM,08/27/2015 09:25:37 PM,Code 2 Transport,08/27/2015 09:50:32 PM,600 Block of SUTTER ST,San Francisco,94102,B01,3,1412,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",152393767-89 +142771193,E34,14097317,Medical Incident,10/04/2014,10/04/2014,10/04/2014 09:11:37 AM,10/04/2014 09:11:54 AM,10/04/2014 09:12:28 AM,10/04/2014 09:13:14 AM,10/04/2014 09:15:57 AM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Code 2 Transport,10/04/2014 09:44:03 AM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",142771193-E34 +151593421,AR1,15060916,Structure Fire,06/08/2015,06/08/2015,06/08/2015 08:12:29 PM,06/08/2015 08:14:04 PM,06/08/2015 08:28:23 PM,06/08/2015 08:30:16 PM,06/08/2015 08:42:30 PM,04/25/2016 01:10:07 PM,04/25/2016 01:10:07 PM,Fire,06/08/2015 09:04:27 PM,200 Block of CAPP ST,San Francisco,94110,B02,7,5246,3,3,3,false,Fire,1,INVESTIGATION,12,2,9,Mission,"(37.7627107311563, -122.4182793889)",151593421-AR1 +160923284,86,16036586,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:52:26 PM,04/01/2016 07:54:16 PM,04/01/2016 07:54:35 PM,04/01/2016 07:55:03 PM,04/01/2016 08:02:12 PM,04/01/2016 08:09:35 PM,04/01/2016 08:27:32 PM,Code 2 Transport,04/01/2016 08:57:49 PM,0 Block of BRUSSELS ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7312651168885, -122.40737168547)",160923284-86 +150392220,E39,15015229,Medical Incident,02/08/2015,02/08/2015,02/08/2015 03:16:48 PM,02/08/2015 03:17:12 PM,02/08/2015 03:17:30 PM,02/08/2015 03:19:09 PM,02/08/2015 03:22:13 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Code 2 Transport,02/08/2015 03:48:43 PM,400 Block of LANSDALE AVE,San Francisco,94127,B09,39,8257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7361216480123, -122.456086792055)",150392220-E39 +141160373,88,14039328,Medical Incident,04/26/2014,04/26/2014,04/26/2014 10:25:22 PM,04/26/2014 10:26:56 PM,04/26/2014 10:27:46 PM,04/26/2014 10:28:05 PM,04/26/2014 10:36:59 PM,04/26/2014 10:48:27 PM,04/26/2014 10:53:40 PM,Code 2 Transport,04/26/2014 11:20:47 PM,TREAT AV/PRECITA AV,SAN FRANCISCO,94110,B06,9,5665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7468250015212, -122.412547050685)",141160373-88 +161002134,55,16039818,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:54:15 PM,04/09/2016 03:56:07 PM,04/09/2016 03:57:45 PM,04/09/2016 03:58:01 PM,04/09/2016 04:27:10 PM,04/09/2016 04:49:22 PM,04/09/2016 05:19:14 PM,Code 2 Transport,04/09/2016 05:33:05 PM,SUNSET BL/TARAVAL ST,San Francisco,94116,B08,18,7555,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7422250284614, -122.494443282149)",161002134-55 +143223553,75,14114175,Medical Incident,11/18/2014,11/18/2014,11/18/2014 09:19:13 PM,11/18/2014 09:21:10 PM,11/18/2014 09:21:36 PM,11/18/2014 09:22:11 PM,11/18/2014 09:26:36 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,No Merit,11/18/2014 09:33:53 PM,COLE ST/GROVE ST,San Francisco,94117,B05,21,4535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7742487344431, -122.451163296988)",143223553-75 +150941842,E02,15035739,Medical Incident,04/04/2015,04/04/2015,04/04/2015 01:19:39 PM,04/04/2015 01:21:30 PM,04/04/2015 01:21:48 PM,04/04/2015 01:22:57 PM,04/04/2015 01:27:50 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 01:34:32 PM,POST ST/POWELL ST,San Francisco,94108,B01,1,1362,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7882931920047, -122.408401551902)",150941842-E02 +150942983,E20,15035844,Outside Fire,04/04/2015,04/04/2015,04/04/2015 06:50:13 PM,04/04/2015 06:51:27 PM,04/04/2015 06:51:37 PM,04/04/2015 06:53:28 PM,04/04/2015 06:55:07 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Fire,04/04/2015 07:10:51 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Fire,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",150942983-E20 +142130112,E06,14073687,Other,08/01/2014,07/31/2014,08/01/2014 12:41:27 AM,08/01/2014 12:43:20 AM,08/01/2014 12:43:46 AM,08/01/2014 12:45:37 AM,08/01/2014 12:47:11 AM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Fire,08/01/2014 12:59:03 AM,3500 Block of JOSE SARRIA CT,San Francisco,94114,B05,6,5233,3,3,3,false,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7642498917209, -122.43201489379)",142130112-E06 +150600917,E32,15022842,Citizen Assist / Service Call,03/01/2015,03/01/2015,03/01/2015 08:19:48 AM,03/01/2015 08:22:26 AM,03/01/2015 08:22:35 AM,03/01/2015 08:23:41 AM,03/01/2015 08:26:33 AM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Other,03/01/2015 08:36:42 AM,SAN JOSE AV/RANDALL ST,San Francisco,94110,B06,32,8112,3,3,3,false,Alarm,1,ENGINE,1,6,8,Bernal Heights,"(37.7398692305663, -122.42414715532)",150600917-E32 +143423136,E38,14121658,Medical Incident,12/08/2014,12/08/2014,12/08/2014 06:28:23 PM,12/08/2014 06:29:19 PM,12/08/2014 06:29:46 PM,12/08/2014 06:30:42 PM,12/08/2014 06:34:26 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 06:40:33 PM,2700 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,2,2,false,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7881185452243, -122.439595812264)",143423136-E38 +153263606,68,15125679,Medical Incident,11/22/2015,11/22/2015,11/22/2015 11:24:19 PM,11/22/2015 11:24:19 PM,11/22/2015 11:24:35 PM,11/22/2015 11:24:43 PM,11/22/2015 11:30:48 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,Patient Declined Transport,11/22/2015 11:42:49 PM,0 Block of CLEARY CT,San Francisco,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7841466012998, -122.426445754167)",153263606-68 +150040883,E08,15001408,Medical Incident,01/04/2015,01/04/2015,01/04/2015 08:58:24 AM,01/04/2015 09:00:41 AM,01/04/2015 09:00:54 AM,01/04/2015 09:02:12 AM,01/04/2015 09:04:31 AM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Code 2 Transport,01/04/2015 09:26:06 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",150040883-E08 +152861239,KM04,15109800,Medical Incident,10/13/2015,10/13/2015,10/13/2015 10:10:29 AM,10/13/2015 10:11:32 AM,10/13/2015 10:12:04 AM,10/13/2015 10:12:41 AM,10/13/2015 10:17:13 AM,10/13/2015 10:40:57 AM,10/13/2015 11:23:04 AM,Code 2 Transport,10/13/2015 11:27:37 AM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7788157426427, -122.409325210496)",152861239-KM04 +160940690,52,16037168,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:53:59 AM,04/03/2016 05:54:34 AM,04/03/2016 05:56:21 AM,04/03/2016 05:56:28 AM,04/03/2016 06:12:44 AM,04/03/2016 06:24:23 AM,04/03/2016 06:34:39 AM,Code 2 Transport,04/03/2016 06:58:43 AM,0 Block of CARNELIAN WAY,San Francisco,94131,B06,26,8171,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7477530185212, -122.441891753212)",160940690-52 +151013891,E31,15038414,Medical Incident,04/11/2015,04/11/2015,04/11/2015 11:49:31 PM,04/11/2015 11:49:31 PM,04/11/2015 11:50:04 PM,04/11/2015 11:51:43 PM,04/11/2015 11:53:01 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Code 2 Transport,04/12/2015 12:00:04 AM,200 Block of 11TH AVE,San Francisco,94118,B07,31,7141,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.783634135396, -122.469908011173)",151013891-E31 +160933877,55,16037078,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:11:28 PM,04/02/2016 11:13:09 PM,04/02/2016 11:13:38 PM,04/02/2016 11:13:58 PM,04/02/2016 11:18:05 PM,04/02/2016 11:26:05 PM,04/02/2016 11:34:27 PM,Code 2 Transport,04/03/2016 12:14:09 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160933877-55 +152053287,B09,15078214,Alarms,07/24/2015,07/24/2015,07/24/2015 07:15:19 PM,07/24/2015 07:16:30 PM,07/24/2015 07:16:50 PM,07/24/2015 07:18:07 PM,07/24/2015 07:22:11 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Fire,07/24/2015 07:28:33 PM,8400 Block of OCEANVIEW TER,San Francisco,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,3,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",152053287-B09 +160994070,88,16039538,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:37:27 PM,04/08/2016 11:37:27 PM,04/08/2016 11:37:44 PM,04/08/2016 11:37:57 PM,04/08/2016 11:48:25 PM,04/08/2016 11:57:47 PM,04/09/2016 12:12:42 AM,Code 2 Transport,04/09/2016 12:58:18 AM,2500 Block of MARIN ST,San Francisco,94124,B10,9,6417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7481117411226, -122.402741618876)",160994070-88 +153250055,E07,15124929,Medical Incident,11/21/2015,11/20/2015,11/21/2015 12:18:20 AM,11/21/2015 12:20:03 AM,11/21/2015 12:20:34 AM,11/21/2015 12:21:58 AM,11/21/2015 12:25:42 AM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Code 2 Transport,11/21/2015 12:38:33 AM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",153250055-E07 +151152239,AM08,15043516,Medical Incident,04/25/2015,04/25/2015,04/25/2015 03:46:23 PM,04/25/2015 03:47:46 PM,04/25/2015 03:48:06 PM,04/25/2015 03:48:58 PM,04/25/2015 04:04:05 PM,04/25/2015 04:09:24 PM,04/25/2015 04:44:16 PM,Code 2 Transport,04/25/2015 05:10:32 PM,0 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,2,2,2,false,Non Life-threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",151152239-AM08 +160943429,52,16037431,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:28:30 PM,04/03/2016 09:30:24 PM,04/03/2016 09:32:24 PM,04/03/2016 09:32:33 PM,04/03/2016 09:47:08 PM,04/03/2016 10:01:19 PM,04/03/2016 10:13:41 PM,Code 2 Transport,04/03/2016 11:00:56 PM,7TH ST/16TH ST,San Francisco,94158,B03,29,2414,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,10,Mission Bay,"(37.7665445770442, -122.39506054595)",160943429-52 +143090606,E39,14109277,Medical Incident,11/05/2014,11/04/2014,11/05/2014 07:20:26 AM,11/05/2014 07:21:26 AM,11/05/2014 07:22:17 AM,11/05/2014 07:24:21 AM,11/05/2014 07:31:14 AM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Code 2 Transport,11/05/2014 07:47:27 AM,0 Block of SAN JACINTO WAY,San Francisco,94127,B09,39,8551,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7351849311429, -122.463509193108)",143090606-E39 +142420903,AM08,14084163,Medical Incident,08/30/2014,08/30/2014,08/30/2014 09:04:25 AM,08/30/2014 09:07:35 AM,08/30/2014 09:11:59 AM,08/30/2014 09:27:13 AM,08/30/2014 09:27:13 AM,08/30/2014 09:31:20 AM,08/30/2014 09:56:17 AM,Code 2 Transport,08/30/2014 10:36:45 AM,0 Block of LYNDHURST DR,San Francisco,94132,B08,19,8726,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7242907364176, -122.473796333072)",142420903-AM08 +151662201,E01,15063530,Medical Incident,06/15/2015,06/15/2015,06/15/2015 03:15:10 PM,06/15/2015 03:17:06 PM,06/15/2015 03:22:34 PM,06/15/2015 03:22:41 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/15/2015 03:23:18 PM,1200 Block of HOWARD ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7756454671917, -122.412432457912)",151662201-E01 +160961757,52,16038006,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:44:09 PM,04/05/2016 12:44:09 PM,04/05/2016 12:47:13 PM,04/05/2016 12:47:18 PM,04/05/2016 01:00:57 PM,04/05/2016 01:03:09 PM,04/05/2016 01:27:45 PM,Code 2 Transport,04/05/2016 02:01:39 PM,100 Block of 2ND ST,San Francisco,94105,B03,1,2145,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877542424451, -122.399575303785)",160961757-52 +160974114,63,16038663,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:42:38 PM,04/06/2016 08:44:25 PM,04/06/2016 08:47:15 PM,04/06/2016 08:47:29 PM,04/06/2016 09:09:25 PM,04/06/2016 09:09:32 PM,04/06/2016 09:30:43 PM,Code 2 Transport,04/06/2016 10:00:23 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7196213473258, -122.438507243932)",160974114-63 +142632567,53,14092085,Medical Incident,09/20/2014,09/20/2014,09/20/2014 05:21:40 PM,09/20/2014 05:22:28 PM,09/20/2014 05:23:45 PM,09/20/2014 05:24:02 PM,09/20/2014 05:31:40 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Against Medical Advice,09/20/2014 06:11:56 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",142632567-53 +141532692,T02,14052680,Medical Incident,06/02/2014,06/02/2014,06/02/2014 06:27:14 PM,06/02/2014 06:29:58 PM,06/02/2014 07:06:01 PM,06/02/2014 07:07:34 PM,06/02/2014 07:15:22 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Code 2 Transport,06/02/2014 07:24:37 PM,1200 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,false,Non Life-threatening,1,TRUCK,2,4,3,Nob Hill,"(37.788955611099, -122.417825829364)",141532692-T02 +152512183,E03,15095911,Medical Incident,09/08/2015,09/08/2015,09/08/2015 01:47:55 PM,09/08/2015 01:48:55 PM,09/08/2015 01:49:17 PM,09/08/2015 01:49:35 PM,09/08/2015 01:51:23 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Code 2 Transport,09/08/2015 02:04:23 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",152512183-E03 +153092101,RC1,15118764,Medical Incident,11/05/2015,11/05/2015,11/05/2015 01:43:36 PM,11/05/2015 01:43:36 PM,11/05/2015 01:49:05 PM,11/05/2015 01:50:55 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Patient Declined Transport,11/05/2015 01:53:32 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",153092101-RC1 +160930906,71,16036765,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:58:05 AM,04/02/2016 08:58:51 AM,04/02/2016 08:59:31 AM,04/02/2016 09:00:00 AM,04/02/2016 09:08:16 AM,04/02/2016 09:22:03 AM,04/02/2016 09:35:23 AM,Code 2 Transport,04/02/2016 09:51:04 AM,1900 Block of 43RD AVE,San Francisco,94116,B08,23,7646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7503116383635, -122.501926047564)",160930906-71 +152711223,E06,15103751,Medical Incident,09/28/2015,09/28/2015,09/28/2015 10:17:09 AM,09/28/2015 10:18:34 AM,09/28/2015 10:19:48 AM,09/28/2015 10:23:47 AM,09/28/2015 10:23:47 AM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Patient Declined Transport,09/28/2015 10:36:50 AM,3600 Block of 16TH ST,San Francisco,94114,B05,6,5233,3,3,3,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.764225010443, -122.434199642473)",152711223-E06 +143051879,2R01,14107926,,11/01/2014,11/01/2014,11/01/2014 11:46:02 AM,11/01/2014 11:46:02 AM,11/01/2014 11:53:42 AM,11/01/2014 11:53:42 AM,11/01/2014 11:53:42 AM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Fire,11/01/2014 11:54:01 AM,46TH AV/SLOAT BL,San Francisco,94132,B08,23,7733,3,3,3,false,Alarm,1,ADMIN,0,8,7,Lakeshore,"(37.7355578832844, -122.504185328317)",143051879-2R01 +160963395,85,16038148,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:00:40 PM,04/05/2016 07:00:40 PM,04/05/2016 07:03:56 PM,04/05/2016 07:04:08 PM,04/05/2016 07:11:15 PM,04/05/2016 07:20:30 PM,04/05/2016 07:38:34 PM,Code 2 Transport,04/05/2016 08:11:08 PM,14TH ST/HARRISON ST,San Francisco,94103,B02,7,5216,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7686712258347, -122.413396248713)",160963395-85 +142732741,E09,14095799,Medical Incident,09/30/2014,09/30/2014,09/30/2014 05:12:08 PM,09/30/2014 05:16:57 PM,09/30/2014 05:20:02 PM,09/30/2014 05:21:36 PM,09/30/2014 05:23:17 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,No Merit,09/30/2014 05:27:28 PM,2000 Block of MCKINNON AVE,San Francisco,94124,B10,9,6425,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7405654947946, -122.397682095894)",142732741-E09 +152491688,E03,15095102,Medical Incident,09/06/2015,09/06/2015,09/06/2015 12:50:32 PM,09/06/2015 12:50:55 PM,09/06/2015 12:51:07 PM,09/06/2015 12:53:04 PM,09/06/2015 12:55:32 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,Code 2 Transport,09/06/2015 01:03:49 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",152491688-E03 +160943513,79,16037440,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:00:21 PM,04/03/2016 10:00:52 PM,04/03/2016 10:01:13 PM,04/03/2016 10:01:28 PM,04/03/2016 10:07:43 PM,04/03/2016 10:18:48 PM,04/03/2016 10:26:30 PM,Code 3 Transport,04/03/2016 11:09:23 PM,100 Block of BOSWORTH ST,San Francisco,94112,B06,32,5633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,8,Outer Mission,"(37.7334588269513, -122.428119241701)",160943513-79 +143482125,63,14124267,Medical Incident,12/14/2014,12/14/2014,12/14/2014 03:04:54 PM,12/14/2014 03:04:54 PM,12/14/2014 03:05:30 PM,12/14/2014 03:07:01 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,No Merit,12/14/2014 03:11:16 PM,15TH ST/BRYANT ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7669034447897, -122.410609802507)",143482125-63 +151780147,T03,15067596,Alarms,06/27/2015,06/26/2015,06/27/2015 12:43:31 AM,06/27/2015 12:44:25 AM,06/27/2015 12:44:30 AM,06/27/2015 12:46:08 AM,06/27/2015 12:49:22 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Fire,06/27/2015 01:01:04 AM,1900 Block of WASHINGTON ST,San Francisco,94109,B04,38,3226,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7926833548965, -122.425326587971)",151780147-T03 +160953677,60,16037798,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:57:23 PM,04/04/2016 08:59:49 PM,04/04/2016 09:01:19 PM,04/04/2016 09:02:21 PM,04/04/2016 09:11:29 PM,04/04/2016 09:20:41 PM,04/04/2016 09:45:20 PM,Code 2 Transport,04/04/2016 10:05:17 PM,400 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,3,E,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,North Beach,"(37.8063948128853, -122.414598058157)",160953677-60 +152892114,AM16,15111051,Medical Incident,10/16/2015,10/16/2015,10/16/2015 02:20:23 PM,10/16/2015 02:20:23 PM,10/16/2015 02:21:23 PM,10/16/2015 02:22:07 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,No Merit,10/16/2015 02:35:14 PM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",152892114-AM16 +151152476,RC3,15043540,Medical Incident,04/25/2015,04/25/2015,04/25/2015 04:51:48 PM,04/25/2015 04:54:16 PM,04/25/2015 05:00:51 PM,04/25/2015 05:00:51 PM,04/25/2015 05:00:51 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Code 2 Transport,04/25/2015 05:13:49 PM,26TH ST/VALENCIA ST,San Francisco,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7489065309397, -122.420353712148)",151152476-RC3 +141901516,86,14065815,Medical Incident,07/09/2014,07/09/2014,07/09/2014 12:07:07 PM,07/09/2014 12:07:07 PM,07/09/2014 12:08:18 PM,07/09/2014 12:08:32 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Cancelled,07/09/2014 12:14:15 PM,2900 Block of 26TH ST,San Francisco,94110,B06,9,5616,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7495741641705, -122.408349594359)",141901516-86 +153250591,T05,15124996,Citizen Assist / Service Call,11/21/2015,11/20/2015,11/21/2015 05:56:33 AM,11/21/2015 05:57:38 AM,11/21/2015 05:57:50 AM,11/21/2015 06:00:10 AM,11/21/2015 06:05:01 AM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Fire,11/21/2015 06:06:29 AM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",153250591-T05 +143550286,58,14126764,Medical Incident,12/21/2014,12/20/2014,12/21/2014 01:39:56 AM,12/21/2014 01:43:53 AM,12/21/2014 01:44:00 AM,12/21/2014 01:44:12 AM,12/21/2014 01:50:27 AM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Cancelled,12/21/2014 01:51:18 AM,4TH ST/BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7757873146535, -122.393355126399)",143550286-58 +150322816,E03,15012461,Medical Incident,02/01/2015,02/01/2015,02/01/2015 05:51:24 PM,02/01/2015 05:56:17 PM,02/01/2015 06:01:04 PM,02/01/2015 06:02:23 PM,02/01/2015 06:08:27 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Other,02/01/2015 06:20:31 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",150322816-E03 +143491507,E09,14124615,Other,12/15/2014,12/15/2014,12/15/2014 12:28:05 PM,12/15/2014 12:28:05 PM,12/15/2014 12:28:33 PM,12/15/2014 12:29:58 PM,12/15/2014 12:29:58 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 12:40:48 PM,HAMPSHIRE ST/CESAR CHAVEZ ST,San Francisco,94110,B06,9,5616,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7487664800327, -122.406757777171)",143491507-E09 +150782959,KM01,15029994,Medical Incident,03/19/2015,03/19/2015,03/19/2015 05:26:30 PM,03/19/2015 05:28:09 PM,03/19/2015 05:29:56 PM,03/19/2015 05:30:17 PM,03/19/2015 05:35:42 PM,03/19/2015 06:53:46 PM,03/19/2015 06:54:03 PM,Code 2 Transport,03/19/2015 07:01:43 PM,1500 Block of 9TH AVE,San Francisco,94122,B08,22,7335,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7593750369715, -122.466054263269)",150782959-KM01 +153281180,65,15126187,Medical Incident,11/24/2015,11/24/2015,11/24/2015 10:21:57 AM,11/24/2015 10:23:34 AM,11/24/2015 10:24:20 AM,11/24/2015 10:24:27 AM,11/24/2015 10:33:40 AM,11/24/2015 10:57:21 AM,11/24/2015 11:10:38 AM,Code 2 Transport,11/24/2015 11:44:08 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",153281180-65 +142894094,E16,14102060,Medical Incident,10/16/2014,10/16/2014,10/16/2014 11:02:49 PM,10/16/2014 11:02:49 PM,10/16/2014 11:04:05 PM,10/16/2014 11:05:56 PM,10/16/2014 11:06:57 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Against Medical Advice,10/16/2014 11:12:15 PM,CHESTNUT ST/PIERCE ST,San Francisco,94123,B04,16,3661,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8004034299938, -122.439504170635)",142894094-E16 +151971839,74,15075134,Medical Incident,07/16/2015,07/16/2015,07/16/2015 01:41:48 PM,07/16/2015 01:42:34 PM,07/16/2015 01:43:12 PM,07/16/2015 01:43:22 PM,07/16/2015 01:47:05 PM,07/16/2015 02:08:37 PM,07/16/2015 02:53:08 PM,Code 2 Transport,07/16/2015 03:01:04 PM,200 Block of 30TH ST,San Francisco,94131,B06,11,5574,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.742133681941, -122.425018174758)",151971839-74 +160960594,52,16037905,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:41:36 AM,04/05/2016 07:44:36 AM,04/05/2016 07:44:57 AM,04/05/2016 07:45:12 AM,04/05/2016 07:56:06 AM,04/05/2016 08:23:05 AM,04/05/2016 08:56:37 AM,Code 2 Transport,04/05/2016 09:12:29 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160960594-52 +152840233,E03,15108896,Medical Incident,10/11/2015,10/10/2015,10/11/2015 01:15:14 AM,10/11/2015 01:16:06 AM,10/11/2015 01:16:26 AM,10/11/2015 01:17:55 AM,10/11/2015 01:20:49 AM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Code 2 Transport,10/11/2015 01:24:57 AM,2100 Block of POLK ST,San Francisco,94109,B04,41,3126,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Russian Hill,"(37.7964138831057, -122.421932885069)",152840233-E03 +153213974,B07,15123653,Structure Fire,11/17/2015,11/17/2015,11/17/2015 09:58:40 PM,11/17/2015 10:01:06 PM,11/17/2015 10:01:25 PM,11/17/2015 10:02:11 PM,11/17/2015 10:05:05 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Fire,11/17/2015 10:12:30 PM,2400 Block of GEARY BLVD,San Francisco,94115,B05,10,4261,3,3,3,false,Alarm,1,CHIEF,7,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",153213974-B07 +160930808,77,16036754,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:20:17 AM,04/02/2016 08:22:03 AM,04/02/2016 08:22:35 AM,04/02/2016 08:22:47 AM,04/02/2016 08:50:12 AM,04/02/2016 08:51:08 AM,04/02/2016 09:12:09 AM,Code 2 Transport,04/02/2016 09:38:38 AM,300 Block of HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7839735143019, -122.416045465656)",160930808-77 +152002643,53,15076292,Medical Incident,07/19/2015,07/19/2015,07/19/2015 05:02:22 PM,07/19/2015 05:02:22 PM,07/19/2015 05:02:37 PM,07/19/2015 05:03:01 PM,07/19/2015 05:06:15 PM,04/25/2016 01:09:23 PM,04/25/2016 01:09:23 PM,Patient Declined Transport,07/19/2015 05:36:52 PM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",152002643-53 +160943619,88,16037453,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:40:19 PM,04/03/2016 10:41:32 PM,04/03/2016 10:42:27 PM,04/03/2016 10:43:06 PM,04/03/2016 10:49:48 PM,04/03/2016 11:06:48 PM,04/03/2016 11:16:12 PM,Code 2 Transport,04/04/2016 12:07:54 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",160943619-88 +151212591,T14,15045945,Water Rescue,05/01/2015,05/01/2015,05/01/2015 04:21:25 PM,05/01/2015 04:22:51 PM,05/01/2015 04:25:33 PM,05/01/2015 04:26:52 PM,05/01/2015 04:33:11 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Fire,05/01/2015 04:47:12 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,TRUCK,2,7,2,Presidio,"(37.8066581989584, -122.47471662098)",151212591-T14 +143152680,E01,14111667,Medical Incident,11/11/2014,11/11/2014,11/11/2014 06:08:10 PM,11/11/2014 06:10:22 PM,11/11/2014 06:10:57 PM,11/11/2014 06:13:24 PM,11/11/2014 06:13:24 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Code 2 Transport,11/11/2014 06:23:11 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",143152680-E01 +152762132,E02,15105813,Medical Incident,10/03/2015,10/03/2015,10/03/2015 02:34:31 PM,10/03/2015 02:34:46 PM,10/03/2015 02:35:14 PM,10/03/2015 02:36:40 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Patient Declined Transport,10/03/2015 02:38:18 PM,JEFFERSON ST/LEAVENWORTH ST,San Francisco,94109,B01,28,947,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",152762132-E02 +142901087,B06,14102173,Structure Fire,10/17/2014,10/17/2014,10/17/2014 09:54:44 AM,10/17/2014 09:54:44 AM,10/17/2014 09:54:49 AM,10/17/2014 09:55:19 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Fire,10/17/2014 09:59:46 AM,800 Block of TOLAND ST,San Francisco,94124,B10,9,6434,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7418599052661, -122.400654312614)",142901087-B06 +160941269,KM04,16037217,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:22:50 AM,04/03/2016 10:23:39 AM,04/03/2016 10:24:07 AM,04/03/2016 10:25:06 AM,04/03/2016 10:34:52 AM,04/03/2016 10:54:17 AM,04/03/2016 11:18:35 AM,Code 2 Transport,04/03/2016 11:46:25 AM,HYDE ST/MCALLISTER ST,San Francisco,94102,B02,36,1552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160941269-KM04 +141100199,E05,14037127,Medical Incident,04/20/2014,04/20/2014,04/20/2014 03:20:10 PM,04/20/2014 03:20:10 PM,04/20/2014 03:20:10 PM,04/20/2014 03:20:10 PM,04/20/2014 03:20:10 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/20/2014 03:33:30 PM,1600 Block of LAGUNA ST,,94109,B04,38,3364,,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7860242243988, -122.42812650503)",141100199-E05 +160990838,75,16039221,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:48:36 AM,04/08/2016 08:51:54 AM,04/08/2016 08:52:22 AM,04/08/2016 08:52:22 AM,04/08/2016 08:58:50 AM,04/08/2016 09:05:04 AM,04/08/2016 09:29:13 AM,Code 2 Transport,04/08/2016 09:58:15 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160990838-75 +152880230,E23,15110513,Medical Incident,10/15/2015,10/14/2015,10/15/2015 02:05:39 AM,10/15/2015 02:07:12 AM,10/15/2015 02:07:38 AM,10/15/2015 02:10:47 AM,10/15/2015 02:15:45 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,No Merit,10/15/2015 02:16:46 AM,46TH AV/WAWONA ST,San Francisco,94116,B08,18,7711,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7361821250694, -122.504227749875)",152880230-E23 +153254156,E08,15125331,Structure Fire,11/21/2015,11/21/2015,11/21/2015 11:44:04 PM,11/21/2015 11:44:04 PM,11/21/2015 11:44:15 PM,11/21/2015 11:45:04 PM,11/21/2015 11:47:17 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Fire,11/21/2015 11:47:44 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",153254156-E08 +160981363,56,16038867,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:35:48 AM,04/07/2016 10:36:32 AM,04/07/2016 10:36:45 AM,04/07/2016 10:37:01 AM,04/07/2016 10:44:06 AM,04/07/2016 11:12:20 AM,04/07/2016 11:34:59 AM,Code 2 Transport,04/07/2016 12:08:29 PM,300 Block of SPEAR ST,San Francisco,94105,B03,35,2113,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7894924999912, -122.390150869347)",160981363-56 +150452339,B02,15017564,Structure Fire,02/14/2015,02/14/2015,02/14/2015 04:01:39 PM,02/14/2015 04:02:34 PM,02/14/2015 04:02:59 PM,02/14/2015 04:04:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 04:17:11 PM,1700 Block of UNION ST,San Francisco,94123,B04,16,3335,3,3,3,false,Alarm,1,CHIEF,8,4,2,Marina,"(37.7979757626675, -122.428080525252)",150452339-B02 +151712464,E28,15065423,Outside Fire,06/20/2015,06/20/2015,06/20/2015 05:18:40 PM,06/20/2015 05:18:54 PM,06/20/2015 05:19:13 PM,06/20/2015 05:20:02 PM,06/20/2015 05:21:42 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Fire,06/20/2015 05:29:19 PM,JEFFERSON ST/POWELL ST,San Francisco,94133,B01,28,1344,3,3,3,false,Fire,1,ENGINE,1,1,3,North Beach,"(37.808624849677, -122.412523835376)",151712464-E28 +153142394,61,15120721,Medical Incident,11/10/2015,11/10/2015,11/10/2015 03:30:15 PM,11/10/2015 03:32:38 PM,11/10/2015 03:34:16 PM,11/10/2015 03:34:32 PM,11/10/2015 03:46:26 PM,11/10/2015 04:01:42 PM,11/10/2015 04:16:49 PM,Code 2 Transport,11/10/2015 04:46:23 PM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",153142394-61 +153060522,E08,15117482,Medical Incident,11/02/2015,11/01/2015,11/02/2015 06:41:47 AM,11/02/2015 06:44:12 AM,11/02/2015 06:44:59 AM,11/02/2015 06:46:25 AM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Code 2 Transport,11/02/2015 06:50:42 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7775775502239, -122.411096952518)",153060522-E08 +141940663,77,14067196,Medical Incident,07/13/2014,07/12/2014,07/13/2014 05:55:27 AM,07/13/2014 05:56:47 AM,07/13/2014 06:00:43 AM,07/13/2014 06:01:10 AM,07/13/2014 06:07:14 AM,07/13/2014 06:19:36 AM,07/13/2014 06:55:52 AM,Code 2 Transport,07/13/2014 07:27:09 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.783815387293, -122.432878599409)",141940663-77 +150272362,KM08,15010467,Medical Incident,01/27/2015,01/27/2015,01/27/2015 03:36:21 PM,01/27/2015 03:36:21 PM,01/27/2015 03:36:43 PM,01/27/2015 03:37:06 PM,01/27/2015 03:43:57 PM,01/27/2015 03:50:11 PM,01/27/2015 04:16:42 PM,Code 2 Transport,01/27/2015 04:44:48 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",150272362-KM08 +141040356,E10,14035240,Medical Incident,04/14/2014,04/14/2014,04/14/2014 10:10:36 PM,04/14/2014 10:11:47 PM,04/14/2014 10:12:08 PM,04/14/2014 10:13:23 PM,04/14/2014 10:16:29 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Patient Declined Transport,04/14/2014 10:33:55 PM,2100 Block of GEARY BLVD,SAN FRANCISCO,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.783357968274, -122.438601387081)",141040356-E10 +142402178,E38,14083544,Traffic Collision,08/28/2014,08/28/2014,08/28/2014 03:36:18 PM,08/28/2014 03:36:18 PM,08/28/2014 03:37:53 PM,08/28/2014 03:38:28 PM,08/28/2014 03:39:56 PM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,Code 2 Transport,08/28/2014 03:49:24 PM,SUTTER ST/GOUGH ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,2,Western Addition,"(37.7871304332186, -122.425046954972)",142402178-E38 +141180341,E02,14039932,Medical Incident,04/28/2014,04/28/2014,04/28/2014 07:26:03 PM,04/28/2014 07:27:08 PM,04/28/2014 07:27:33 PM,04/28/2014 07:27:46 PM,04/28/2014 07:29:55 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Code 2 Transport,04/28/2014 07:45:01 PM,1600 Block of THE EMBARCADERONORTH ST,,94133,B01,28,941,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8084350175869, -122.410774214375)",141180341-E02 +150052021,E08,15001890,Medical Incident,01/05/2015,01/05/2015,01/05/2015 02:11:03 PM,01/05/2015 02:11:56 PM,01/05/2015 02:12:43 PM,01/05/2015 02:14:11 PM,01/05/2015 02:19:46 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Fire,01/05/2015 02:20:34 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",150052021-E08 +141732782,54,14059792,Medical Incident,06/22/2014,06/22/2014,06/22/2014 07:37:59 PM,06/22/2014 07:40:10 PM,06/22/2014 08:18:52 PM,06/22/2014 08:18:52 PM,06/22/2014 08:18:52 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Code 2 Transport,06/22/2014 08:23:37 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",141732782-54 +151623456,RS1,15062060,Medical Incident,06/11/2015,06/11/2015,06/11/2015 08:23:29 PM,06/11/2015 08:24:00 PM,06/11/2015 08:24:36 PM,06/11/2015 08:26:08 PM,06/11/2015 08:26:08 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Code 2 Transport,06/11/2015 08:27:58 PM,FOLSOM ST/5TH ST,San Francisco,94107,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",151623456-RS1 +141902516,KM06,14065906,Medical Incident,07/09/2014,07/09/2014,07/09/2014 04:38:01 PM,07/09/2014 04:39:25 PM,07/09/2014 04:40:09 PM,07/09/2014 04:40:48 PM,07/09/2014 04:50:50 PM,07/09/2014 05:10:50 PM,07/09/2014 06:02:31 PM,Other,07/09/2014 06:33:25 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",141902516-KM06 +142903959,RC1,14102448,Medical Incident,10/17/2014,10/17/2014,10/17/2014 11:30:01 PM,10/17/2014 11:30:52 PM,10/17/2014 11:31:20 PM,10/17/2014 11:33:49 PM,10/17/2014 11:38:32 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 3 Transport,10/17/2014 11:48:01 PM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",142903959-RC1 +152680812,E41,15102596,Medical Incident,09/25/2015,09/25/2015,09/25/2015 08:11:26 AM,09/25/2015 08:12:37 AM,09/25/2015 08:13:06 AM,09/25/2015 08:15:18 AM,09/25/2015 08:23:19 AM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 08:27:29 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",152680812-E41 +141723252,78,14059475,Medical Incident,06/21/2014,06/21/2014,06/21/2014 08:53:42 PM,06/21/2014 08:56:29 PM,06/21/2014 08:56:55 PM,06/21/2014 08:56:59 PM,06/21/2014 09:04:22 PM,06/21/2014 09:14:33 PM,06/21/2014 09:39:46 PM,Code 2 Transport,06/21/2014 10:07:03 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",141723252-78 +152051782,E13,15078071,Medical Incident,07/24/2015,07/24/2015,07/24/2015 12:47:24 PM,07/24/2015 12:48:17 PM,07/24/2015 12:50:36 PM,07/24/2015 12:50:36 PM,07/24/2015 12:53:35 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Code 2 Transport,07/24/2015 01:17:09 PM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",152051782-E13 +161002745,AM20,16039890,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:00:47 PM,04/09/2016 07:00:47 PM,04/09/2016 07:01:20 PM,04/09/2016 07:02:04 PM,04/09/2016 07:06:31 PM,04/09/2016 07:49:54 PM,04/09/2016 08:05:20 PM,Code 2 Transport,04/09/2016 08:32:43 PM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",161002745-AM20 +142110022,89,14072968,Medical Incident,07/30/2014,07/29/2014,07/30/2014 12:04:09 AM,07/30/2014 12:06:56 AM,07/30/2014 12:07:23 AM,07/30/2014 12:07:34 AM,07/30/2014 12:12:42 AM,07/30/2014 12:27:03 AM,07/30/2014 12:35:20 AM,Code 2 Transport,07/30/2014 12:53:10 AM,CAPP ST/20TH ST,San Francisco,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7586982725851, -122.417964706277)",142110022-89 +142603498,77,14091033,Medical Incident,09/17/2014,09/17/2014,09/17/2014 09:00:37 PM,09/17/2014 09:01:24 PM,09/17/2014 09:01:36 PM,09/17/2014 09:02:54 PM,09/17/2014 09:07:27 PM,09/17/2014 09:31:06 PM,09/17/2014 09:45:32 PM,Code 2 Transport,09/17/2014 10:12:55 PM,500 Block of 26TH AVE,San Francisco,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",142603498-77 +143613245,T15,14129300,Traffic Collision,12/27/2014,12/27/2014,12/27/2014 09:01:01 PM,12/27/2014 09:02:12 PM,12/27/2014 09:02:44 PM,12/27/2014 09:03:52 PM,12/27/2014 09:05:05 PM,04/25/2016 01:13:11 PM,04/25/2016 01:13:11 PM,Code 2 Transport,12/27/2014 09:57:52 PM,GENEVA AV/OCEAN AV,San Francisco,94112,B09,15,8313,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,9,7,West of Twin Peaks,"(37.7230802451635, -122.452331558779)",143613245-T15 +152011652,88,15076598,Medical Incident,07/20/2015,07/20/2015,07/20/2015 12:13:34 PM,07/20/2015 12:14:49 PM,07/20/2015 12:19:55 PM,07/20/2015 12:21:04 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Other,07/20/2015 12:24:12 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",152011652-88 +151880328,68,15071677,Medical Incident,07/07/2015,07/06/2015,07/07/2015 03:43:58 AM,07/07/2015 03:46:44 AM,07/07/2015 03:47:16 AM,07/07/2015 03:47:46 AM,07/07/2015 03:59:08 AM,04/25/2016 01:09:36 PM,04/25/2016 01:09:36 PM,Unable to Locate,07/07/2015 04:13:10 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",151880328-68 +143221071,E07,14113958,Structure Fire,11/18/2014,11/18/2014,11/18/2014 09:59:32 AM,11/18/2014 09:59:32 AM,11/18/2014 09:59:46 AM,11/18/2014 10:01:17 AM,11/18/2014 10:02:40 AM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,Fire,11/18/2014 10:02:48 AM,22ND ST/FOLSOM ST,San Francisco,94110,B06,7,5473,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7556994645677, -122.414387602502)",143221071-E07 +142744015,E33,14096298,Medical Incident,10/01/2014,10/01/2014,10/01/2014 11:02:02 PM,10/01/2014 11:02:02 PM,10/01/2014 11:11:17 PM,10/01/2014 11:12:33 PM,10/01/2014 11:14:55 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Code 2 Transport,10/01/2014 11:25:21 PM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7098635927288, -122.449729173956)",142744015-E33 +160990981,KM05,16039236,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:39:24 AM,04/08/2016 09:40:41 AM,04/08/2016 09:43:06 AM,04/08/2016 09:43:48 AM,04/08/2016 09:47:36 AM,04/08/2016 10:13:41 AM,04/08/2016 10:15:30 AM,Code 2 Transport,04/08/2016 11:03:38 AM,400 Block of PARNASSUS AVE,San Francisco,94122,B05,12,5155,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",160990981-KM05 +153230705,E39,15124151,Medical Incident,11/19/2015,11/19/2015,11/19/2015 08:02:51 AM,11/19/2015 08:03:25 AM,11/19/2015 08:03:49 AM,11/19/2015 08:05:41 AM,11/19/2015 08:09:35 AM,11/19/2015 08:35:05 AM,04/25/2016 01:07:07 PM,Code 3 Transport,11/19/2015 09:06:52 AM,2200 Block of 15TH AV,San Francisco,94116,B08,40,7361,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7460416780064, -122.471357971603)",153230705-E39 +153254073,E13,15125326,Medical Incident,11/21/2015,11/21/2015,11/21/2015 11:13:13 PM,11/21/2015 11:15:06 PM,11/21/2015 11:16:29 PM,11/21/2015 11:17:37 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Unable to Locate,11/21/2015 11:19:16 PM,600 Block of THE EMBARCADERO,San Francisco,94111,B03,13,2134,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",153254073-E13 +151072490,E22,15040562,Traffic Collision,04/17/2015,04/17/2015,04/17/2015 03:41:31 PM,04/17/2015 03:42:42 PM,04/17/2015 03:43:42 PM,04/17/2015 03:45:02 PM,04/17/2015 03:48:19 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Code 2 Transport,04/17/2015 03:54:53 PM,FULTON ST/10TH AV,San Francisco,94118,B07,31,7133,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7733038332102, -122.468023915566)",151072490-E22 +151220274,E03,15046131,Medical Incident,05/02/2015,05/01/2015,05/02/2015 01:51:26 AM,05/02/2015 01:52:34 AM,05/02/2015 01:54:36 AM,05/02/2015 01:54:36 AM,05/02/2015 01:56:02 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Code 2 Transport,05/02/2015 01:58:54 AM,GOLDEN GATE AV/LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",151220274-E03 +141070018,T15,14035973,Vehicle Fire,04/17/2014,04/16/2014,04/17/2014 01:45:08 AM,04/17/2014 01:45:34 AM,04/17/2014 01:45:52 AM,04/17/2014 01:47:58 AM,04/17/2014 01:51:15 AM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Fire,04/17/2014 02:10:47 AM,AVALON AV/LONDON ST,SAN FRANCISCO,94112,B09,43,6131,3,3,3,false,Fire,1,TRUCK,2,9,11,Excelsior,"(37.7273106754719, -122.431767136972)",141070018-T15 +152103508,75,15080148,Medical Incident,07/29/2015,07/29/2015,07/29/2015 08:42:01 PM,07/29/2015 08:42:01 PM,07/29/2015 08:42:45 PM,07/29/2015 08:42:56 PM,07/29/2015 08:51:05 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,No Merit,07/29/2015 08:52:30 PM,HAIGHT ST/DIVISADERO ST,San Francisco,94117,B05,21,4142,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7712674239457, -122.437045611029)",152103508-75 +151871077,T03,15071323,Alarms,07/06/2015,07/06/2015,07/06/2015 09:43:07 AM,07/06/2015 09:44:29 AM,07/06/2015 09:44:52 AM,07/06/2015 09:47:10 AM,07/06/2015 09:49:55 AM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Fire,07/06/2015 09:52:58 AM,1300 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",151871077-T03 +143454012,E01,14123125,Structure Fire,12/11/2014,12/11/2014,12/11/2014 11:41:17 PM,12/11/2014 11:41:17 PM,12/11/2014 11:43:16 PM,12/11/2014 11:43:16 PM,12/11/2014 11:43:19 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Fire,12/11/2014 11:43:57 PM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",143454012-E01 +150672757,E08,15025734,Medical Incident,03/08/2015,03/08/2015,03/08/2015 07:04:37 PM,03/08/2015 07:06:50 PM,03/08/2015 07:07:30 PM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Code 2 Transport,03/08/2015 07:09:04 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7811458612596, -122.409026046516)",150672757-E08 +141872322,83,14064863,Medical Incident,07/06/2014,07/06/2014,07/06/2014 05:06:55 PM,07/06/2014 05:07:37 PM,07/06/2014 05:08:28 PM,07/06/2014 05:08:41 PM,07/06/2014 05:16:54 PM,07/06/2014 05:23:19 PM,04/25/2016 01:16:22 PM,Against Medical Advice,07/06/2014 06:01:53 PM,1100 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6615,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7204964019129, -122.390342560546)",141872322-83 +143361842,E07,14119127,Structure Fire,12/02/2014,12/02/2014,12/02/2014 02:17:33 PM,12/02/2014 02:18:22 PM,12/02/2014 02:19:13 PM,12/02/2014 02:20:11 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,Fire,12/02/2014 02:27:26 PM,2900 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5621,3,3,3,true,Alarm,1,ENGINE,8,6,9,Bernal Heights,"(37.7482373940092, -122.4091747167)",143361842-E07 +160940580,KM03,16037149,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:13:21 AM,04/03/2016 04:13:21 AM,04/03/2016 04:14:10 AM,04/03/2016 04:14:51 AM,04/03/2016 04:21:14 AM,04/03/2016 04:42:21 AM,04/03/2016 05:01:14 AM,Code 2 Transport,04/03/2016 05:23:41 AM,200 Block of BROADWAY,San Francisco,94111,B01,13,1155,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7984506502378, -122.401628969112)",160940580-KM03 +151622407,82,15061981,Medical Incident,06/11/2015,06/11/2015,06/11/2015 03:53:46 PM,06/11/2015 03:53:46 PM,06/11/2015 03:53:46 PM,06/11/2015 03:53:46 PM,06/11/2015 03:53:46 PM,04/25/2016 01:10:04 PM,04/25/2016 01:10:04 PM,Code 2 Transport,06/11/2015 04:06:46 PM,MARKET ST/GOUGH ST,San Francisco,94103,B99,36,3311,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",151622407-82 +143423433,RS2,14121691,Structure Fire,12/08/2014,12/08/2014,12/08/2014 07:50:33 PM,12/08/2014 07:51:52 PM,12/08/2014 07:53:11 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Fire,12/08/2014 07:53:52 PM,300 Block of VALLEY ST,San Francisco,94131,B06,11,5564,3,3,3,false,Alarm,1,RESCUE SQUAD,10,6,8,Noe Valley,"(37.7443506892082, -122.430074980706)",143423433-RS2 +142090141,KM06,14072290,Medical Incident,07/28/2014,07/27/2014,07/28/2014 01:21:24 AM,07/28/2014 01:24:51 AM,07/28/2014 01:25:54 AM,07/28/2014 01:26:28 AM,07/28/2014 01:42:35 AM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,No Merit,07/28/2014 01:43:56 AM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.7980228452184, -122.405863212632)",142090141-KM06 +151770791,E08,15067297,Medical Incident,06/26/2015,06/26/2015,06/26/2015 08:12:32 AM,06/26/2015 08:16:25 AM,06/26/2015 08:17:03 AM,06/26/2015 08:17:42 AM,06/26/2015 08:20:48 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 08:23:46 AM,4TH ST/TOWNSEND ST,San Francisco,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7770893320016, -122.394981482757)",151770791-E08 +142301128,E08,14079859,Medical Incident,08/18/2014,08/18/2014,08/18/2014 10:03:09 AM,08/18/2014 10:03:25 AM,08/18/2014 10:05:45 AM,08/18/2014 10:05:45 AM,08/18/2014 10:06:41 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Code 2 Transport,08/18/2014 10:14:22 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",142301128-E08 +160982617,AM08,16039003,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:56:57 PM,04/07/2016 03:58:47 PM,04/07/2016 03:59:13 PM,04/07/2016 04:00:25 PM,04/07/2016 04:07:44 PM,04/07/2016 04:22:46 PM,04/07/2016 04:27:20 PM,Code 3 Transport,04/07/2016 05:33:52 PM,3600 Block of SACRAMENTO ST,San Francisco,94118,B07,10,4432,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7873936866832, -122.452758503157)",160982617-AM08 +161010722,54,16040094,Medical Incident,04/10/2016,04/09/2016,04/10/2016 06:25:00 AM,04/10/2016 06:27:11 AM,04/10/2016 06:30:22 AM,04/10/2016 06:30:32 AM,04/10/2016 06:40:55 AM,04/10/2016 06:52:03 AM,04/10/2016 07:48:33 AM,Code 2 Transport,04/10/2016 08:18:44 AM,700 Block of LAKEVIEW AVE,San Francisco,94112,B09,33,8462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7181751959676, -122.459698022491)",161010722-54 +150163495,RC3,15006472,Medical Incident,01/16/2015,01/16/2015,01/16/2015 09:25:53 PM,01/16/2015 09:27:20 PM,01/16/2015 09:27:35 PM,01/16/2015 09:28:09 PM,01/16/2015 09:37:16 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Code 2 Transport,01/16/2015 09:59:29 PM,900 Block of EDINBURGH ST,San Francisco,94112,B09,43,6174,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",150163495-RC3 +142860462,B02,14100719,Alarms,10/13/2014,10/12/2014,10/13/2014 05:51:36 AM,10/13/2014 05:53:52 AM,10/13/2014 05:54:13 AM,10/13/2014 05:57:54 AM,10/13/2014 05:59:45 AM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/13/2014 06:05:27 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",142860462-B02 +160970289,AM22,16038270,Medical Incident,04/06/2016,04/05/2016,04/06/2016 03:18:56 AM,04/06/2016 03:20:48 AM,04/06/2016 03:21:03 AM,04/06/2016 03:21:54 AM,04/06/2016 03:27:33 AM,04/06/2016 03:37:45 AM,04/06/2016 03:49:58 AM,Code 2 Transport,04/06/2016 04:20:12 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160970289-AM22 +151421631,D3,15053972,Structure Fire,05/22/2015,05/22/2015,05/22/2015 12:04:04 PM,05/22/2015 12:04:26 PM,05/22/2015 12:05:29 PM,05/22/2015 12:05:53 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Fire,05/22/2015 12:11:26 PM,4000 Block of 22ND ST,San Francisco,94114,B06,24,5465,3,3,3,false,Alarm,1,CHIEF,6,6,8,Noe Valley,"(37.7542723591053, -122.437118941)",151421631-D3 +160993987,79,16039524,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:11:03 PM,04/08/2016 11:13:09 PM,04/08/2016 11:14:09 PM,04/08/2016 11:14:43 PM,04/08/2016 11:22:04 PM,04/08/2016 11:50:33 PM,04/09/2016 12:10:05 AM,Code 2 Transport,04/09/2016 12:48:04 AM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",160993987-79 +143060142,E36,14108146,Medical Incident,11/02/2014,11/01/2014,11/02/2014 12:53:07 AM,11/02/2014 12:55:23 AM,11/02/2014 12:55:42 AM,11/02/2014 12:56:50 AM,11/02/2014 01:00:23 AM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Code 2 Transport,11/02/2014 01:11:27 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",143060142-E36 +143392846,AM16,14120441,Medical Incident,12/05/2014,12/05/2014,12/05/2014 05:13:05 PM,12/05/2014 05:13:42 PM,12/05/2014 05:14:20 PM,12/05/2014 05:15:07 PM,12/05/2014 05:19:36 PM,12/05/2014 05:28:47 PM,12/05/2014 05:53:29 PM,Code 2 Transport,12/05/2014 06:14:18 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7817569847968, -122.414263390372)",143392846-AM16 +160983285,KM12,16039075,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:57:06 PM,04/07/2016 06:58:17 PM,04/07/2016 06:58:40 PM,04/07/2016 06:59:18 PM,04/07/2016 07:03:28 PM,04/07/2016 07:22:55 PM,04/07/2016 07:32:40 PM,Code 2 Transport,04/07/2016 08:17:57 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160983285-KM12 +160982122,AM08,16038939,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:52:12 PM,04/07/2016 01:54:35 PM,04/07/2016 01:55:41 PM,04/07/2016 01:56:30 PM,04/07/2016 01:59:28 PM,04/07/2016 03:06:04 PM,04/07/2016 03:22:08 PM,Code 2 Transport,04/07/2016 03:56:52 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7905716665918, -122.405963225465)",160982122-AM08 +152251476,E03,15085733,Medical Incident,08/13/2015,08/13/2015,08/13/2015 11:25:01 AM,08/13/2015 11:26:16 AM,08/13/2015 11:26:32 AM,08/13/2015 11:30:36 AM,08/13/2015 11:30:36 AM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Code 2 Transport,08/13/2015 11:46:52 AM,LEAVENWORTH ST/TURK ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",152251476-E03 +161002712,KM12,16039885,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:50:44 PM,04/09/2016 06:50:44 PM,04/09/2016 06:50:56 PM,04/09/2016 06:51:23 PM,04/09/2016 07:00:44 PM,04/09/2016 07:15:24 PM,04/09/2016 07:24:30 PM,Code 2 Transport,04/09/2016 07:46:11 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800389118973, -122.431977767761)",161002712-KM12 +142232214,AM12,14077445,Medical Incident,08/11/2014,08/11/2014,08/11/2014 04:33:04 PM,08/11/2014 04:34:26 PM,08/11/2014 04:35:59 PM,08/11/2014 04:36:57 PM,08/11/2014 04:40:05 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Against Medical Advice,08/11/2014 05:02:00 PM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6117,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7242679564906, -122.435032247159)",142232214-AM12 +143580944,E15,14128057,Medical Incident,12/24/2014,12/24/2014,12/24/2014 09:43:49 AM,12/24/2014 09:46:07 AM,12/24/2014 09:46:30 AM,12/24/2014 09:47:14 AM,12/24/2014 09:52:56 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Code 2 Transport,12/24/2014 10:10:55 AM,0 Block of MERCEDES WAY,San Francisco,94127,B09,19,8451,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.72794450844, -122.470267971581)",143580944-E15 +160921219,79,16036392,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:35:43 AM,04/01/2016 10:37:20 AM,04/01/2016 10:37:46 AM,04/01/2016 10:37:51 AM,04/01/2016 10:42:04 AM,04/01/2016 11:12:23 AM,04/01/2016 11:15:26 AM,Code 2 Transport,04/01/2016 11:51:18 AM,500 Block of CORTLAND AVE,San Francisco,94110,B06,32,5732,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7390863113994, -122.416201199461)",160921219-79 +160933829,79,16037072,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:58:43 PM,04/02/2016 10:59:41 PM,04/02/2016 11:00:15 PM,04/02/2016 11:00:22 PM,04/02/2016 11:13:04 PM,04/02/2016 11:25:00 PM,04/02/2016 11:38:00 PM,Code 2 Transport,04/03/2016 12:06:09 AM,HAIGHT ST/STANYAN ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",160933829-79 +150121602,KM12,15004725,Medical Incident,01/12/2015,01/12/2015,01/12/2015 12:23:27 PM,01/12/2015 12:23:27 PM,01/12/2015 12:24:22 PM,01/12/2015 12:25:34 PM,01/12/2015 12:30:42 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Patient Declined Transport,01/12/2015 12:55:57 PM,1800 Block of MCALLISTER ST,San Francisco,94117,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7772146315852, -122.442488680247)",150121602-KM12 +142380312,E01,14082670,Medical Incident,08/26/2014,08/25/2014,08/26/2014 03:29:59 AM,08/26/2014 03:35:07 AM,08/26/2014 03:36:02 AM,08/26/2014 03:36:42 AM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,Unable to Locate,08/26/2014 03:45:08 AM,400 Block of TEHAMA ST,San Francisco,94103,B03,1,2245,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801567611888, -122.40546707057)",142380312-E01 +152013556,T03,15076768,Alarms,07/20/2015,07/20/2015,07/20/2015 09:08:00 PM,07/20/2015 09:08:02 PM,07/20/2015 09:08:11 PM,07/20/2015 09:09:33 PM,07/20/2015 09:11:09 PM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/20/2015 09:16:10 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7852173616307, -122.417069611395)",152013556-T03 +151321989,T13,15050107,Structure Fire,05/12/2015,05/12/2015,05/12/2015 02:38:39 PM,05/12/2015 02:39:13 PM,05/12/2015 02:39:27 PM,05/12/2015 02:40:35 PM,05/12/2015 02:41:39 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Fire,05/12/2015 03:22:06 PM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.7982249345487, -122.404282497745)",151321989-T13 +142940226,E13,14103552,Medical Incident,10/21/2014,10/20/2014,10/21/2014 02:26:36 AM,10/21/2014 02:27:41 AM,10/21/2014 02:28:03 AM,10/21/2014 02:29:28 AM,10/21/2014 02:31:20 AM,10/21/2014 02:56:18 AM,04/25/2016 01:14:27 PM,Code 3 Transport,10/21/2014 03:16:11 AM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",142940226-E13 +161002117,56,16039817,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:48:11 PM,04/09/2016 03:49:26 PM,04/09/2016 03:50:06 PM,04/09/2016 03:50:11 PM,04/09/2016 03:59:53 PM,04/09/2016 04:16:35 PM,04/09/2016 04:40:23 PM,Code 2 Transport,04/09/2016 05:17:06 PM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821103331421, -122.403196436662)",161002117-56 +150860902,E51,15032761,Alarms,03/27/2015,03/27/2015,03/27/2015 09:00:02 AM,03/27/2015 09:02:33 AM,03/27/2015 09:02:51 AM,03/27/2015 09:04:21 AM,03/27/2015 09:08:11 AM,04/25/2016 01:11:30 PM,04/25/2016 01:11:30 PM,Fire,03/27/2015 09:12:20 AM,300 Block of PARK BLVD,Presidio,94129,B99,51,4618,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.7927192448322, -122.469803418761)",150860902-E51 +151830345,88,15069734,Medical Incident,07/02/2015,07/01/2015,07/02/2015 03:31:40 AM,07/02/2015 03:34:43 AM,07/02/2015 03:35:19 AM,07/02/2015 03:35:27 AM,07/02/2015 03:38:45 AM,07/02/2015 03:49:55 AM,07/02/2015 04:03:00 AM,Code 2 Transport,07/02/2015 04:26:56 AM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",151830345-88 +160974257,83,16038678,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:32:14 PM,04/06/2016 09:32:43 PM,04/06/2016 09:33:11 PM,04/06/2016 09:33:22 PM,04/06/2016 09:38:48 PM,04/06/2016 09:50:09 PM,04/06/2016 10:35:23 PM,Code 2 Transport,04/06/2016 10:43:26 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160974257-83 +142992214,76,14105626,Medical Incident,10/26/2014,10/26/2014,10/26/2014 03:33:52 PM,10/26/2014 03:35:16 PM,10/26/2014 03:35:52 PM,10/26/2014 03:36:20 PM,10/26/2014 03:41:20 PM,10/26/2014 03:58:49 PM,10/26/2014 04:29:48 PM,Code 2 Transport,10/26/2014 04:56:53 PM,200 Block of SAN CARLOS ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7593905434172, -122.419839098278)",142992214-76 +152173710,RS1,15082769,Structure Fire,08/05/2015,08/05/2015,08/05/2015 08:48:09 PM,08/05/2015 08:49:03 PM,08/05/2015 08:49:26 PM,08/05/2015 08:51:23 PM,08/05/2015 08:53:03 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 08:54:28 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,false,Alarm,1,RESCUE SQUAD,7,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",152173710-RS1 +160982170,89,16038946,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:05:05 PM,04/07/2016 02:06:13 PM,04/07/2016 02:06:29 PM,04/07/2016 02:08:19 PM,04/07/2016 02:13:29 PM,04/07/2016 02:37:27 PM,04/07/2016 03:00:49 PM,Code 2 Transport,04/07/2016 03:29:26 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160982170-89 +152203768,62,15084005,Medical Incident,08/08/2015,08/08/2015,08/08/2015 10:29:02 PM,08/08/2015 10:29:28 PM,08/08/2015 10:29:41 PM,08/08/2015 10:29:57 PM,08/08/2015 10:37:18 PM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Patient Declined Transport,08/08/2015 11:03:34 PM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",152203768-62 +142423739,RC1,14084448,Traffic Collision,08/30/2014,08/30/2014,08/30/2014 10:57:11 PM,08/30/2014 10:58:38 PM,08/30/2014 11:07:30 PM,08/30/2014 11:07:33 PM,08/30/2014 11:07:33 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Code 2 Transport,08/31/2014 12:16:31 AM,400 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,6,Tenderloin,"(37.7864592940991, -122.411489016028)",142423739-RC1 +160981191,71,16038843,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:47:31 AM,04/07/2016 09:48:49 AM,04/07/2016 09:49:37 AM,04/07/2016 09:49:44 AM,04/07/2016 09:59:28 AM,04/07/2016 10:21:36 AM,04/07/2016 11:01:03 AM,Code 2 Transport,04/07/2016 11:36:48 AM,200 Block of LOUISBURG ST,San Francisco,94112,B09,15,8315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7198936943619, -122.450400205622)",160981191-71 +153480071,70,15133902,Medical Incident,12/14/2015,12/13/2015,12/14/2015 12:27:40 AM,12/14/2015 12:27:40 AM,12/14/2015 12:27:40 AM,12/14/2015 12:27:40 AM,12/14/2015 12:27:40 AM,12/14/2015 12:27:47 AM,12/14/2015 12:29:43 AM,Code 2 Transport,12/14/2015 01:17:16 AM,400 Block of 7TH ST,San Francisco,94103,B99,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",153480071-70 +153462578,KM13,15133309,Medical Incident,12/12/2015,12/12/2015,12/12/2015 03:39:29 PM,12/12/2015 03:42:20 PM,12/12/2015 03:42:31 PM,12/12/2015 03:43:08 PM,12/12/2015 03:49:30 PM,12/12/2015 04:00:46 PM,12/12/2015 04:24:18 PM,Code 2 Transport,12/12/2015 05:03:59 PM,1500 Block of OCEAN AVE,San Francisco,94112,B09,15,8474,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7245049424335, -122.458675264922)",153462578-KM13 +153060468,52,15117476,Structure Fire,11/02/2015,11/01/2015,11/02/2015 06:13:34 AM,11/02/2015 06:14:28 AM,11/02/2015 06:15:03 AM,11/02/2015 06:15:21 AM,11/02/2015 06:31:49 AM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/02/2015 06:56:18 AM,1500 Block of PALOU AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Fire,1,MEDIC,8,10,10,Bayview Hunters Point,"(37.7335111055643, -122.389961310232)",153060468-52 +152990162,E19,15114641,Traffic Collision,10/26/2015,10/25/2015,10/26/2015 01:33:51 AM,10/26/2015 01:33:51 AM,10/26/2015 01:34:23 AM,10/26/2015 01:36:04 AM,10/26/2015 01:39:04 AM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Code 2 Transport,10/26/2015 02:02:10 AM,19TH AV/SLOAT BL,San Francisco,94132,B08,19,7413,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",152990162-E19 +160983854,63,16039124,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:08:11 PM,04/07/2016 10:08:11 PM,04/07/2016 10:08:26 PM,04/07/2016 10:08:37 PM,04/07/2016 10:13:34 PM,04/07/2016 10:23:21 PM,04/07/2016 11:01:33 PM,Code 2 Transport,04/07/2016 11:39:16 PM,CABRILLO ST/7TH AV,San Francisco,94118,B07,31,7132,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7753209455444, -122.464942088513)",160983854-63 +141070153,AM08,14036075,Medical Incident,04/17/2014,04/17/2014,04/17/2014 12:07:32 PM,04/17/2014 12:08:03 PM,04/17/2014 12:08:34 PM,04/25/2016 01:17:50 PM,04/17/2014 12:14:01 PM,04/17/2014 12:21:41 PM,04/17/2014 12:39:04 PM,Code 2 Transport,04/17/2014 01:23:44 PM,5TH ST/MISSION ST,SAN FRANCISCO,94103,B03,1,2246,,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",141070153-AM08 +152680407,KM07,15102569,Medical Incident,09/25/2015,09/24/2015,09/25/2015 04:08:26 AM,09/25/2015 04:12:26 AM,09/25/2015 04:13:12 AM,09/25/2015 04:13:38 AM,09/25/2015 04:25:33 AM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,Patient Declined Transport,09/25/2015 04:58:44 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",152680407-KM07 +141200394,E02,14040727,Medical Incident,04/30/2014,04/30/2014,04/30/2014 10:21:10 PM,04/30/2014 10:21:43 PM,04/30/2014 10:22:02 PM,04/30/2014 10:24:20 PM,04/30/2014 10:28:10 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Code 2 Transport,04/30/2014 10:43:33 PM,300 Block of COLUMBUS AVE,SAN FRANCISCO,94133,B01,2,1311,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7983830790911, -122.407521730924)",141200394-E02 +142113584,77,14073302,Medical Incident,07/30/2014,07/30/2014,07/30/2014 09:55:15 PM,07/30/2014 09:57:15 PM,07/30/2014 09:59:02 PM,07/30/2014 09:59:27 PM,07/30/2014 10:13:49 PM,07/30/2014 10:44:51 PM,07/30/2014 10:54:39 PM,Code 2 Transport,07/30/2014 11:32:33 PM,2600 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",142113584-77 +152052864,E28,15078170,Structure Fire,07/24/2015,07/24/2015,07/24/2015 05:25:32 PM,07/24/2015 05:26:34 PM,07/24/2015 05:27:15 PM,07/24/2015 05:29:23 PM,07/24/2015 05:30:17 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Fire,07/24/2015 06:28:23 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",152052864-E28 +160960932,54,16037934,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:14:43 AM,04/05/2016 09:18:28 AM,04/05/2016 09:19:16 AM,04/05/2016 09:19:24 AM,04/05/2016 09:33:59 AM,04/05/2016 09:56:19 AM,04/05/2016 10:06:15 AM,Code 2 Transport,04/05/2016 10:41:46 AM,600 Block of LYON ST,San Francisco,94117,B05,21,4346,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7767038929732, -122.443158415512)",160960932-54 +160990884,54,16039226,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:05:20 AM,04/08/2016 09:07:31 AM,04/08/2016 09:08:20 AM,04/08/2016 09:09:03 AM,04/08/2016 09:15:13 AM,04/08/2016 09:20:36 AM,04/08/2016 09:43:26 AM,Code 2 Transport,04/08/2016 10:18:11 AM,2900 Block of INGALLS ST,San Francisco,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7206944759769, -122.391644681071)",160990884-54 +151030217,E01,15038799,Structure Fire,04/13/2015,04/12/2015,04/13/2015 02:06:35 AM,04/13/2015 02:06:40 AM,04/13/2015 02:06:46 AM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Fire,04/13/2015 02:08:07 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,true,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7777990101501, -122.40029776053)",151030217-E01 +142820608,T06,14099157,Alarms,10/09/2014,10/08/2014,10/09/2014 07:19:30 AM,10/09/2014 07:20:55 AM,10/09/2014 07:21:38 AM,10/09/2014 07:23:03 AM,10/09/2014 07:24:02 AM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,Fire,10/09/2014 07:30:07 AM,400 Block of DUBOCE AVE,San Francisco,94117,B02,6,3525,3,3,3,false,Alarm,1,TRUCK,1,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",142820608-T06 +160972243,81,16038449,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:52:20 PM,04/06/2016 01:54:21 PM,04/06/2016 01:59:23 PM,04/06/2016 02:00:03 PM,04/06/2016 02:20:04 PM,04/06/2016 02:34:14 PM,04/06/2016 03:06:22 PM,Code 2 Transport,04/06/2016 03:34:52 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160972243-81 +161000203,58,16039578,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:17:33 AM,04/09/2016 01:18:51 AM,04/09/2016 01:19:54 AM,04/09/2016 01:26:17 AM,04/09/2016 01:31:57 AM,04/09/2016 01:40:36 AM,04/09/2016 01:57:46 AM,Code 2 Transport,04/09/2016 02:27:02 AM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",161000203-58 +160961446,AM02,16037978,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:27:48 AM,04/05/2016 11:29:16 AM,04/05/2016 11:30:54 AM,04/05/2016 11:31:37 AM,04/05/2016 11:44:00 AM,04/05/2016 12:08:49 PM,04/05/2016 12:33:27 PM,Code 2 Transport,04/05/2016 01:14:15 PM,3900 Block of 24TH ST,San Francisco,94114,B06,11,5522,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",160961446-AM02 +160982281,54,16038964,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:31:58 PM,04/07/2016 02:34:04 PM,04/07/2016 02:52:51 PM,04/07/2016 02:52:51 PM,04/07/2016 02:57:10 PM,04/07/2016 03:49:25 PM,04/07/2016 03:33:17 PM,Code 2 Transport,04/07/2016 04:12:45 PM,100 Block of FILLMORE ST,San Francisco,94117,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7704847870776, -122.430052169451)",160982281-54 +150623659,E19,15023837,Medical Incident,03/03/2015,03/03/2015,03/03/2015 09:15:35 PM,03/03/2015 09:17:02 PM,03/03/2015 09:17:37 PM,03/03/2015 09:18:40 PM,03/03/2015 09:21:27 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Code 2 Transport,03/03/2015 09:48:44 PM,0 Block of SPRINGFIELD DR,San Francisco,94132,B08,19,8742,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7327647658373, -122.488007999144)",150623659-E19 +150792709,61,15030376,Medical Incident,03/20/2015,03/20/2015,03/20/2015 05:12:24 PM,03/20/2015 05:15:20 PM,03/20/2015 05:15:38 PM,03/20/2015 05:15:50 PM,03/20/2015 05:17:13 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Patient Declined Transport,03/20/2015 05:50:08 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",150792709-61 +152612685,AM08,15099828,Medical Incident,09/18/2015,09/18/2015,09/18/2015 04:11:57 PM,09/18/2015 04:14:44 PM,09/18/2015 04:18:32 PM,09/18/2015 04:18:32 PM,09/18/2015 04:25:22 PM,09/18/2015 04:36:57 PM,09/18/2015 05:08:01 PM,Code 2 Transport,09/18/2015 05:31:24 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",152612685-AM08 +143562935,75,14127466,Medical Incident,12/22/2014,12/22/2014,12/22/2014 05:36:17 PM,12/22/2014 05:37:20 PM,12/22/2014 05:48:28 PM,12/22/2014 05:48:45 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Patient Declined Transport,12/22/2014 06:26:50 PM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",143562935-75 +151032850,77,15039038,Medical Incident,04/13/2015,04/13/2015,04/13/2015 05:27:02 PM,04/13/2015 05:27:02 PM,04/13/2015 05:27:59 PM,04/13/2015 05:28:33 PM,04/13/2015 05:29:53 PM,04/13/2015 05:44:09 PM,04/13/2015 06:11:40 PM,Code 2 Transport,04/13/2015 06:53:33 PM,3RD ST/KING ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",151032850-77 +160924033,88,16036659,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:48:04 PM,04/01/2016 11:48:44 PM,04/01/2016 11:49:37 PM,04/01/2016 11:49:45 PM,04/01/2016 11:58:25 PM,04/02/2016 12:23:50 AM,04/02/2016 12:39:25 AM,Code 2 Transport,04/02/2016 01:16:26 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160924033-88 +160993255,60,16039438,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:23:05 PM,04/08/2016 07:24:15 PM,04/08/2016 07:24:38 PM,04/08/2016 07:24:47 PM,04/08/2016 07:28:00 PM,04/08/2016 07:47:26 PM,04/08/2016 08:06:48 PM,Code 2 Transport,04/08/2016 08:45:36 PM,TURK ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160993255-60 +151573328,T11,15060095,Alarms,06/06/2015,06/06/2015,06/06/2015 08:38:06 PM,06/06/2015 08:39:53 PM,06/06/2015 08:40:13 PM,06/06/2015 08:41:54 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Fire,06/06/2015 08:45:40 PM,400 Block of LIBERTY ST,San Francisco,94114,B06,11,5452,3,3,3,false,Alarm,1,TRUCK,3,6,8,Castro/Upper Market,"(37.7570349130864, -122.431257187281)",151573328-T11 +152862333,75,15109904,Medical Incident,10/13/2015,10/13/2015,10/13/2015 02:18:13 PM,10/13/2015 02:18:13 PM,10/13/2015 02:18:55 PM,10/13/2015 02:19:07 PM,10/13/2015 02:26:32 PM,10/13/2015 02:29:24 PM,10/13/2015 02:35:27 PM,Code 3 Transport,10/13/2015 03:00:19 PM,SAN BRUNO AV/GAVEN ST,San Francisco,94134,B10,42,6366,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7340177516286, -122.406515383742)",152862333-75 +142901011,E03,14102165,Medical Incident,10/17/2014,10/17/2014,10/17/2014 09:27:49 AM,10/17/2014 09:27:49 AM,10/17/2014 09:27:49 AM,10/17/2014 09:27:49 AM,10/17/2014 09:27:49 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/17/2014 09:43:49 AM,1000 Block of POST ST,San Francisco,94109,B02,3,1641,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",142901011-E03 +160933238,KM03,16037020,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:59:23 PM,04/02/2016 08:00:59 PM,04/02/2016 08:02:25 PM,04/02/2016 08:03:05 PM,04/02/2016 08:15:46 PM,04/02/2016 08:38:00 PM,04/02/2016 08:55:28 PM,Code 2 Transport,04/02/2016 09:46:15 PM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",160933238-KM03 +152603105,71,15099494,Medical Incident,09/17/2015,09/17/2015,09/17/2015 06:00:09 PM,09/17/2015 06:01:50 PM,09/17/2015 06:02:01 PM,09/17/2015 06:03:40 PM,09/17/2015 06:21:19 PM,09/17/2015 06:43:32 PM,09/17/2015 07:06:03 PM,Code 2 Transport,09/17/2015 07:49:54 PM,1300 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8061515935611, -122.418537074676)",152603105-71 +153181837,61,15122273,Medical Incident,11/14/2015,11/14/2015,11/14/2015 12:52:30 PM,11/14/2015 12:52:30 PM,11/14/2015 12:53:00 PM,11/14/2015 12:53:09 PM,11/14/2015 01:00:21 PM,11/14/2015 01:12:55 PM,11/14/2015 01:31:28 PM,Code 2 Transport,11/14/2015 02:19:03 PM,21ST ST/POTRERO AV,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7577620587984, -122.406799738992)",153181837-61 +160943089,75,16037389,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:23:16 PM,04/03/2016 07:25:10 PM,04/03/2016 07:25:20 PM,04/03/2016 07:25:28 PM,04/03/2016 07:32:47 PM,04/03/2016 07:48:30 PM,04/03/2016 08:19:02 PM,Code 2 Transport,04/03/2016 08:22:14 PM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.717376392628, -122.435002134703)",160943089-75 +141972938,E37,14068325,Outside Fire,07/16/2014,07/16/2014,07/16/2014 06:17:06 PM,07/16/2014 06:18:25 PM,07/16/2014 06:28:31 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/16/2014 06:29:44 PM,100 Block of AVENUE C,San Francisco,94130,B10,9,2626,3,3,3,false,Fire,1,ENGINE,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",141972938-E37 +141611781,RC1,14055524,Medical Incident,06/10/2014,06/10/2014,06/10/2014 01:42:47 PM,06/10/2014 01:43:12 PM,06/10/2014 01:45:49 PM,06/10/2014 01:49:25 PM,06/10/2014 01:52:52 PM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Code 2 Transport,06/10/2014 02:12:44 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",141611781-RC1 +150541754,T06,15020758,Alarms,02/23/2015,02/23/2015,02/23/2015 12:39:43 PM,02/23/2015 12:42:46 PM,02/23/2015 12:42:53 PM,02/23/2015 12:44:56 PM,02/23/2015 12:47:36 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Fire,02/23/2015 12:51:55 PM,ROSE ST/GOUGH ST,San Francisco,94102,B02,36,3311,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7736191300216, -122.422312068647)",150541754-T06 +160933389,AM22,16037040,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:49:11 PM,04/02/2016 08:50:37 PM,04/02/2016 08:54:59 PM,04/02/2016 08:54:59 PM,04/02/2016 09:05:15 PM,04/02/2016 09:40:45 PM,04/02/2016 10:03:22 PM,Code 2 Transport,04/02/2016 10:45:09 PM,2000 Block of GREEN ST,San Francisco,94123,B04,16,3463,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.7965249395334, -122.432847820562)",160933389-AM22 +160982557,KM12,16038995,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:42:10 PM,04/07/2016 03:44:24 PM,04/07/2016 04:12:37 PM,04/07/2016 04:13:05 PM,04/07/2016 04:33:41 PM,04/07/2016 04:51:44 PM,04/07/2016 05:10:53 PM,Code 2 Transport,04/07/2016 06:40:46 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160982557-KM12 +151822952,63,15069575,Medical Incident,07/01/2015,07/01/2015,07/01/2015 05:35:08 PM,07/01/2015 05:35:08 PM,07/01/2015 05:35:33 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Fire,07/01/2015 05:35:45 PM,GOUGH ST/GOLDEN GATE AV,San Francisco,94102,B02,5,3263,A,E,3,true,Potentially Life-Threatening,1,MEDIC,4,2,5,Western Addition,"(37.780611620733, -122.423730984614)",151822952-63 +160992246,73,16039352,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:23:55 PM,04/08/2016 03:25:06 PM,04/08/2016 03:26:48 PM,04/08/2016 03:27:00 PM,04/08/2016 03:35:34 PM,04/08/2016 03:47:32 PM,04/08/2016 04:13:49 PM,Code 2 Transport,04/08/2016 04:33:03 PM,100 Block of LOBOS ST,San Francisco,94112,B09,33,8372,2,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7148631962455, -122.457556576704)",160992246-73 +160952863,62,16037716,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:07:13 PM,04/04/2016 05:07:13 PM,04/04/2016 05:07:51 PM,04/04/2016 05:09:00 PM,04/04/2016 05:12:42 PM,04/04/2016 05:21:11 PM,04/04/2016 05:51:20 PM,Code 2 Transport,04/04/2016 06:08:33 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160952863-62 +160951339,64,16037588,Citizen Assist / Service Call,04/04/2016,04/04/2016,04/04/2016 11:03:11 AM,04/04/2016 11:04:44 AM,04/04/2016 11:15:18 AM,04/04/2016 11:16:05 AM,04/04/2016 12:22:04 PM,04/04/2016 12:22:09 PM,04/04/2016 12:22:13 PM,Code 2 Transport,04/04/2016 12:59:02 PM,100 Block of DOLORES ST,San Francisco,94114,B02,6,5127,3,3,3,true,Alarm,1,MEDIC,2,2,8,Castro/Upper Market,"(37.767452628597, -122.42680873617)",160951339-64 +152883776,88,15110818,Medical Incident,10/15/2015,10/15/2015,10/15/2015 09:25:46 PM,10/15/2015 09:28:18 PM,10/15/2015 09:28:43 PM,10/15/2015 09:28:50 PM,10/15/2015 09:39:42 PM,10/15/2015 09:50:39 PM,10/15/2015 09:56:31 PM,Code 2 Transport,10/15/2015 10:15:30 PM,1600 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7868728989189, -122.427512151715)",152883776-88 +151141118,B02,15043038,Structure Fire,04/24/2015,04/24/2015,04/24/2015 10:07:01 AM,04/24/2015 10:07:31 AM,04/24/2015 10:08:15 AM,04/24/2015 10:08:25 AM,04/24/2015 10:15:23 AM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Fire,04/24/2015 10:26:43 AM,1500 Block of FULTON ST,San Francisco,94117,B05,21,4346,3,3,3,false,Alarm,1,CHIEF,8,5,5,Lone Mountain/USF,"(37.776384773708, -122.442321333784)",151141118-B02 +153391174,E13,15130398,Alarms,12/05/2015,12/05/2015,12/05/2015 09:35:47 AM,12/05/2015 09:36:50 AM,12/05/2015 09:40:03 AM,12/05/2015 09:40:52 AM,12/05/2015 09:43:50 AM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Fire,12/05/2015 09:49:34 AM,100 Block of SUTTER ST,San Francisco,94104,B01,13,1242,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7898368259498, -122.403344544792)",153391174-E13 +141973183,T03,14068345,Alarms,07/16/2014,07/16/2014,07/16/2014 07:18:03 PM,07/16/2014 07:19:22 PM,07/16/2014 07:20:27 PM,07/16/2014 07:22:01 PM,07/16/2014 07:23:41 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/16/2014 07:27:12 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",141973183-T03 +161010731,53,16040097,Medical Incident,04/10/2016,04/09/2016,04/10/2016 06:37:08 AM,04/10/2016 06:41:51 AM,04/10/2016 06:42:36 AM,04/10/2016 06:42:45 AM,04/10/2016 06:55:20 AM,04/10/2016 07:10:06 AM,04/10/2016 07:43:08 AM,Code 2 Transport,04/10/2016 08:09:18 AM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7188461081754, -122.439092837429)",161010731-53 +142111426,T16,14073087,Alarms,07/30/2014,07/30/2014,07/30/2014 11:52:42 AM,07/30/2014 11:55:44 AM,07/30/2014 11:58:29 AM,07/30/2014 11:59:27 AM,07/30/2014 12:04:01 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/30/2014 12:04:29 PM,1200 Block of LOMBARD ST,San Francisco,94109,B01,41,1625,3,3,3,false,Alarm,1,TRUCK,2,1,2,Russian Hill,"(37.8017125270087, -122.422090188622)",142111426-T16 +150561307,KM14,15021384,Medical Incident,02/25/2015,02/25/2015,02/25/2015 10:47:07 AM,02/25/2015 10:49:04 AM,02/25/2015 10:49:47 AM,02/25/2015 10:50:32 AM,02/25/2015 10:59:44 AM,02/25/2015 11:13:42 AM,02/25/2015 11:22:55 AM,Code 2 Transport,02/25/2015 11:43:45 AM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",150561307-KM14 +150353344,54,15013576,Medical Incident,02/04/2015,02/04/2015,02/04/2015 05:55:15 PM,02/04/2015 05:58:52 PM,02/04/2015 06:00:37 PM,02/04/2015 06:01:25 PM,02/04/2015 06:11:42 PM,02/04/2015 06:26:10 PM,02/04/2015 06:45:54 PM,Cancelled,02/04/2015 07:12:30 PM,4400 Block of MISSION ST,San Francisco,94112,B09,43,6116,2,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7269111586163, -122.433193907155)",150353344-54 +160940783,85,16037184,Medical Incident,04/03/2016,04/02/2016,04/03/2016 07:04:00 AM,04/03/2016 07:06:00 AM,04/03/2016 07:06:08 AM,04/03/2016 07:06:15 AM,04/03/2016 07:16:31 AM,04/03/2016 07:23:45 AM,04/03/2016 07:38:00 AM,Code 2 Transport,04/03/2016 08:16:52 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",160940783-85 +143071052,83,14108564,Medical Incident,11/03/2014,11/03/2014,11/03/2014 10:11:23 AM,11/03/2014 10:12:27 AM,11/03/2014 10:16:13 AM,11/03/2014 10:16:23 AM,11/03/2014 10:19:23 AM,11/03/2014 10:32:06 AM,11/03/2014 10:45:48 AM,Code 2 Transport,11/03/2014 11:08:38 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",143071052-83 +151590160,E05,15060555,Medical Incident,06/08/2015,06/07/2015,06/08/2015 01:33:01 AM,06/08/2015 01:33:28 AM,06/08/2015 01:33:46 AM,06/08/2015 01:35:20 AM,06/08/2015 01:37:14 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Medical Examiner,06/08/2015 01:55:39 AM,1700 Block of OFARRELL ST,San Francisco,94115,B04,5,3623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",151590160-E05 +150692871,E01,15026453,Traffic Collision,03/10/2015,03/10/2015,03/10/2015 06:04:17 PM,03/10/2015 06:07:58 PM,03/10/2015 06:31:17 PM,03/10/2015 06:31:28 PM,03/10/2015 06:31:28 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Code 2 Transport,03/10/2015 06:51:36 PM,4TH ST/MISSION ST,San Francisco,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",150692871-E01 +160982532,74,16038990,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:37:17 PM,04/07/2016 03:38:26 PM,04/07/2016 03:41:19 PM,04/07/2016 03:41:26 PM,04/07/2016 03:44:49 PM,04/07/2016 04:15:04 PM,04/07/2016 04:19:37 PM,Code 3 Transport,04/07/2016 04:58:57 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7853585501162, -122.415955969312)",160982532-74 +142651256,84,14092654,Medical Incident,09/22/2014,09/22/2014,09/22/2014 10:48:50 AM,09/22/2014 10:50:16 AM,09/22/2014 10:51:19 AM,09/22/2014 10:53:34 AM,09/22/2014 11:01:33 AM,09/22/2014 11:18:28 AM,09/22/2014 11:59:57 AM,Code 2 Transport,09/22/2014 12:08:46 PM,700 Block of LOMBARD ST,San Francisco,94133,B01,28,1435,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.8026189273087, -122.414260104964)",142651256-84 +142260461,E11,14078371,Structure Fire,08/14/2014,08/13/2014,08/14/2014 05:24:05 AM,08/14/2014 05:24:05 AM,08/14/2014 05:24:23 AM,08/14/2014 05:25:47 AM,08/14/2014 05:26:42 AM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Fire,08/14/2014 05:27:11 AM,25TH ST/DOLORES ST,San Francisco,94110,B06,11,5536,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7502327184515, -122.424999223775)",142260461-E11 +160964101,78,16038214,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:54:17 PM,04/05/2016 10:55:31 PM,04/05/2016 10:56:26 PM,04/05/2016 10:56:32 PM,04/05/2016 11:23:48 PM,04/05/2016 11:23:51 PM,04/05/2016 11:36:25 PM,Code 2 Transport,04/06/2016 12:06:59 AM,200 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7862985138478, -122.408477809664)",160964101-78 +151111175,89,15041920,Medical Incident,04/21/2015,04/21/2015,04/21/2015 10:00:06 AM,04/21/2015 10:01:53 AM,04/21/2015 10:02:10 AM,04/21/2015 10:02:20 AM,04/21/2015 10:10:11 AM,04/21/2015 10:42:46 AM,04/21/2015 11:02:13 AM,Code 2 Transport,04/21/2015 12:01:18 PM,2100 Block of FUNSTON AVE,San Francisco,94116,B08,40,7348,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7480100621282, -122.469558531535)",151111175-89 +141713325,84,14059189,Medical Incident,06/20/2014,06/20/2014,06/20/2014 08:35:51 PM,06/20/2014 08:36:05 PM,06/20/2014 08:36:10 PM,06/20/2014 08:36:18 PM,06/20/2014 08:44:29 PM,06/20/2014 09:23:02 PM,06/20/2014 09:41:24 PM,Code 2 Transport,06/20/2014 10:19:46 PM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",141713325-84 +152833593,E36,15108795,Traffic Collision,10/10/2015,10/10/2015,10/10/2015 07:35:33 PM,10/10/2015 07:35:33 PM,10/10/2015 07:36:52 PM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Patient Declined Transport,10/10/2015 07:38:54 PM,OCTAVIA ST/PAGE ST,San Francisco,94102,B02,36,3313,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7738892381955, -122.42394706123)",152833593-E36 +153160932,E25,15121346,Medical Incident,11/12/2015,11/12/2015,11/12/2015 09:09:43 AM,11/12/2015 09:14:06 AM,11/12/2015 09:14:32 AM,11/12/2015 09:14:54 AM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,Code 2 Transport,11/12/2015 09:23:40 AM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",153160932-E25 +141913058,E05,14066316,Medical Incident,07/10/2014,07/10/2014,07/10/2014 07:23:54 PM,07/10/2014 07:25:41 PM,07/10/2014 07:26:12 PM,07/10/2014 07:27:12 PM,07/10/2014 07:29:29 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,No Merit,07/10/2014 07:35:13 PM,100 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7727916205308, -122.424624269709)",141913058-E05 +160933968,88,16037084,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:38:20 PM,04/02/2016 11:38:53 PM,04/02/2016 11:39:04 PM,04/02/2016 11:39:14 PM,04/02/2016 11:47:25 PM,04/03/2016 12:19:39 AM,04/03/2016 12:41:26 AM,Code 2 Transport,04/03/2016 01:16:20 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160933968-88 +153253354,E08,15125265,Medical Incident,11/21/2015,11/21/2015,11/21/2015 07:45:35 PM,11/21/2015 07:47:23 PM,11/21/2015 07:47:30 PM,11/21/2015 07:48:19 PM,11/21/2015 07:52:11 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,No Merit,11/21/2015 07:59:36 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",153253354-E08 +143293520,T10,14116811,Structure Fire,11/25/2014,11/25/2014,11/25/2014 09:17:51 PM,11/25/2014 09:17:51 PM,11/25/2014 09:18:37 PM,11/25/2014 09:20:03 PM,11/25/2014 09:22:03 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/25/2014 09:24:19 PM,ARGUELLO BL/GEARY BL,San Francisco,94118,B07,31,7113,3,3,3,false,Alarm,1,TRUCK,1,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",143293520-T10 +153290308,B02,15126485,Alarms,11/25/2015,11/24/2015,11/25/2015 04:14:59 AM,11/25/2015 04:16:14 AM,11/25/2015 04:18:22 AM,11/25/2015 04:20:19 AM,11/25/2015 04:23:43 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 04:32:37 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,false,Alarm,1,CHIEF,3,2,9,Mission,"(37.7661343875141, -122.421935077177)",153290308-B02 +160922172,79,16036482,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:11:11 PM,04/01/2016 03:11:11 PM,04/01/2016 03:14:23 PM,04/01/2016 03:14:40 PM,04/01/2016 03:24:40 PM,04/01/2016 03:29:53 PM,04/01/2016 04:16:45 PM,Code 2 Transport,04/01/2016 04:36:38 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160922172-79 +160952871,52,16037718,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:07:57 PM,04/04/2016 05:10:06 PM,04/04/2016 05:11:56 PM,04/04/2016 05:12:06 PM,04/04/2016 05:33:20 PM,04/04/2016 06:00:52 PM,04/04/2016 06:22:39 PM,Code 2 Transport,04/04/2016 06:49:23 PM,4400 Block of 18TH ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7607142872789, -122.438806415851)",160952871-52 +152492915,E18,15095214,Medical Incident,09/06/2015,09/06/2015,09/06/2015 06:35:49 PM,09/06/2015 06:38:01 PM,09/06/2015 06:38:21 PM,09/06/2015 06:39:27 PM,09/06/2015 06:42:20 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,Code 2 Transport,09/06/2015 07:02:06 PM,1400 Block of 31ST AVE,San Francisco,94122,B08,18,7535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7601963960987, -122.489856806327)",152492915-E18 +142562975,79,14089530,Medical Incident,09/13/2014,09/13/2014,09/13/2014 06:41:44 PM,09/13/2014 06:41:44 PM,09/13/2014 06:42:48 PM,09/13/2014 06:44:00 PM,09/13/2014 06:52:21 PM,09/13/2014 07:05:52 PM,09/13/2014 07:08:25 PM,Code 2 Transport,09/13/2014 07:49:12 PM,1000 Block of POLK ST,San Francisco,94109,B02,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7866019512795, -122.419812186232)",142562975-79 +151943972,E02,15074228,Structure Fire,07/13/2015,07/13/2015,07/13/2015 10:44:47 PM,07/13/2015 10:45:21 PM,07/13/2015 10:45:37 PM,07/13/2015 10:46:27 PM,07/13/2015 10:48:08 PM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,No Merit,07/13/2015 10:51:26 PM,400 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",151943972-E02 +160941192,AM02,16037211,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:02:04 AM,04/03/2016 10:03:38 AM,04/03/2016 10:04:46 AM,04/03/2016 10:05:25 AM,04/03/2016 10:10:46 AM,04/03/2016 10:25:23 AM,04/03/2016 10:37:32 AM,Code 2 Transport,04/03/2016 11:05:51 AM,1200 Block of CLAYTON ST,San Francisco,94114,B05,24,5265,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7607153948771, -122.446304924609)",160941192-AM02 +141942023,RC1,14067318,Medical Incident,07/13/2014,07/13/2014,07/13/2014 03:59:58 PM,07/13/2014 04:00:53 PM,07/13/2014 04:01:13 PM,07/13/2014 04:02:44 PM,07/13/2014 04:04:29 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Code 2 Transport,07/13/2014 04:15:55 PM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Chinatown,"(37.7945054272056, -122.403956804569)",141942023-RC1 +150353377,KM12,15013579,Medical Incident,02/04/2015,02/04/2015,02/04/2015 06:06:36 PM,02/04/2015 06:06:36 PM,02/04/2015 06:07:53 PM,02/04/2015 06:09:57 PM,02/04/2015 06:21:55 PM,02/04/2015 06:31:40 PM,02/04/2015 06:55:40 PM,Code 2 Transport,02/04/2015 07:39:03 PM,200 Block of FARALLONES ST,San Francisco,94112,B09,33,8374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,11,Oceanview/Merced/Ingleside,"(37.7140973591305, -122.460812686036)",150353377-KM12 +151612287,E02,15061589,Medical Incident,06/10/2015,06/10/2015,06/10/2015 03:24:03 PM,06/10/2015 03:24:29 PM,06/10/2015 03:25:43 PM,06/10/2015 03:27:00 PM,06/10/2015 03:31:14 PM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Code 2 Transport,06/10/2015 03:39:10 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",151612287-E02 +153451816,89,15132806,Medical Incident,12/11/2015,12/11/2015,12/11/2015 12:43:48 PM,12/11/2015 12:44:12 PM,12/11/2015 12:44:42 PM,12/11/2015 12:46:13 PM,12/11/2015 12:58:43 PM,12/11/2015 01:13:36 PM,12/11/2015 01:48:02 PM,Code 2 Transport,12/11/2015 02:26:58 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8057759671113, -122.412787887195)",153451816-89 +141502565,E41,14051635,Medical Incident,05/30/2014,05/30/2014,05/30/2014 05:54:00 PM,05/30/2014 05:54:34 PM,05/30/2014 05:56:11 PM,05/30/2014 05:57:34 PM,05/30/2014 05:59:56 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Code 3 Transport,05/30/2014 06:28:12 PM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",141502565-E41 +142692143,E42,14094323,Medical Incident,09/26/2014,09/26/2014,09/26/2014 02:21:11 PM,09/26/2014 02:21:11 PM,09/26/2014 02:22:28 PM,09/26/2014 02:24:23 PM,09/26/2014 02:29:12 PM,04/25/2016 01:14:53 PM,04/25/2016 01:14:53 PM,Code 2 Transport,09/26/2014 02:40:00 PM,LONDON ST/PERSIA AV,San Francisco,94112,B09,43,6127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7227637319069, -122.435208400094)",142692143-E42 +160983606,63,16039101,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:40:38 PM,04/07/2016 08:42:12 PM,04/07/2016 08:42:31 PM,04/07/2016 08:42:46 PM,04/07/2016 08:49:18 PM,04/07/2016 09:00:51 PM,04/07/2016 09:30:29 PM,Code 2 Transport,04/07/2016 09:47:14 PM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696117252991, -122.450474552631)",160983606-63 +152274006,E42,15086741,Medical Incident,08/15/2015,08/15/2015,08/15/2015 09:51:05 PM,08/15/2015 09:52:45 PM,08/15/2015 09:53:07 PM,08/15/2015 09:54:29 PM,08/15/2015 09:55:58 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Code 2 Transport,08/15/2015 10:14:56 PM,1900 Block of SILVER AVE,San Francisco,94124,B10,42,6454,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7350297571638, -122.401211564111)",152274006-E42 +153200026,E29,15122870,Structure Fire,11/16/2015,11/15/2015,11/16/2015 12:10:14 AM,11/16/2015 12:10:14 AM,11/16/2015 12:10:26 AM,11/16/2015 12:12:08 AM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Fire,11/16/2015 12:16:37 AM,100 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",153200026-E29 +150943915,E11,15035924,Medical Incident,04/04/2015,04/04/2015,04/04/2015 11:34:56 PM,04/04/2015 11:35:54 PM,04/04/2015 11:36:12 PM,04/04/2015 11:37:18 PM,04/04/2015 11:39:03 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 11:48:25 PM,3600 Block of 26TH ST,San Francisco,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7487569032068, -122.421922526358)",150943915-E11 +160982843,KM05,16039028,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:59:23 PM,04/07/2016 04:59:23 PM,04/07/2016 05:00:01 PM,04/07/2016 05:00:51 PM,04/07/2016 05:04:46 PM,04/07/2016 05:23:31 PM,04/07/2016 05:31:37 PM,Code 2 Transport,04/07/2016 06:08:55 PM,ELLIS ST/LEAVENWORTH ST,San Francisco,94109,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",160982843-KM05 +151270630,64,15048047,Medical Incident,05/07/2015,05/06/2015,05/07/2015 07:13:19 AM,05/07/2015 07:14:34 AM,05/07/2015 07:15:01 AM,05/07/2015 07:15:24 AM,05/07/2015 07:34:07 AM,05/07/2015 07:56:19 AM,05/07/2015 08:45:35 AM,Code 2 Transport,05/07/2015 08:53:03 AM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",151270630-64 +160972091,AM10,16038430,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:17:13 PM,04/06/2016 01:19:24 PM,04/06/2016 01:25:58 PM,04/06/2016 01:26:34 PM,04/06/2016 01:52:16 PM,04/06/2016 01:55:06 PM,04/06/2016 02:10:58 PM,Code 2 Transport,04/06/2016 02:36:00 PM,300 Block of 30TH AVE,San Francisco,94121,B07,14,7227,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7827045726487, -122.490366876901)",160972091-AM10 +152613684,E26,15099913,Medical Incident,09/18/2015,09/18/2015,09/18/2015 08:23:08 PM,09/18/2015 08:24:49 PM,09/18/2015 08:25:05 PM,09/18/2015 08:26:31 PM,09/18/2015 08:28:36 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/18/2015 08:51:39 PM,100 Block of ADDISON ST,San Francisco,94131,B06,26,8122,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7377457409223, -122.432498108885)",152613684-E26 +151282464,RC3,15048622,Medical Incident,05/08/2015,05/08/2015,05/08/2015 04:09:50 PM,05/08/2015 04:10:55 PM,05/08/2015 04:12:33 PM,05/08/2015 04:14:17 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Medical Examiner,05/08/2015 04:18:00 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",151282464-RC3 +153033972,B10,15116421,Structure Fire,10/30/2015,10/30/2015,10/30/2015 10:07:49 PM,10/30/2015 10:09:59 PM,10/30/2015 10:10:13 PM,10/30/2015 10:11:40 PM,10/30/2015 10:15:19 PM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Fire,10/30/2015 10:27:15 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,false,Alarm,1,CHIEF,3,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",153033972-B10 +160940361,KM03,16037130,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:06:03 AM,04/03/2016 02:06:03 AM,04/03/2016 02:06:46 AM,04/03/2016 02:07:30 AM,04/03/2016 02:15:36 AM,04/03/2016 02:49:32 AM,04/03/2016 03:08:40 AM,Code 2 Transport,04/03/2016 03:28:43 AM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160940361-KM03 +150842497,75,15032113,Medical Incident,03/25/2015,03/25/2015,03/25/2015 03:34:39 PM,03/25/2015 03:34:39 PM,03/25/2015 03:34:54 PM,03/25/2015 03:35:01 PM,03/25/2015 03:40:13 PM,03/25/2015 03:55:16 PM,03/25/2015 04:05:13 PM,Code 2 Transport,03/25/2015 04:51:05 PM,200 Block of LARKIN ST,San Francisco,94102,B02,36,1645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",150842497-75 +142891539,76,14101854,Medical Incident,10/16/2014,10/16/2014,10/16/2014 11:48:00 AM,10/16/2014 11:49:43 AM,10/16/2014 11:49:52 AM,10/16/2014 11:50:03 AM,10/16/2014 12:05:05 PM,10/16/2014 12:20:13 PM,10/16/2014 12:42:09 PM,Code 2 Transport,10/16/2014 01:11:33 PM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2158,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7881178022274, -122.401226932683)",142891539-76 +151330652,E36,15050346,Gas Leak (Natural and LP Gases),05/13/2015,05/12/2015,05/13/2015 07:27:39 AM,05/13/2015 07:29:07 AM,05/13/2015 07:29:21 AM,05/13/2015 07:30:39 AM,05/13/2015 07:32:34 AM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Fire,05/13/2015 07:41:01 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",151330652-E36 +160973558,85,16038603,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:25:35 PM,04/06/2016 06:26:29 PM,04/06/2016 06:27:40 PM,04/06/2016 06:27:48 PM,04/06/2016 06:32:22 PM,04/06/2016 06:55:39 PM,04/06/2016 07:09:01 PM,Code 2 Transport,04/06/2016 07:57:29 PM,1400 Block of INNES AVE,San Francisco,94124,B10,25,6532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7378257783717, -122.386265458341)",160973558-85 +160940637,62,16037158,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:01:10 AM,04/03/2016 05:02:49 AM,04/03/2016 05:03:39 AM,04/03/2016 05:03:50 AM,04/03/2016 05:10:30 AM,04/03/2016 05:28:19 AM,04/03/2016 05:43:16 AM,Code 2 Transport,04/03/2016 06:03:21 AM,ELLIS ST/TAYLOR ST,San Francisco,94102,B03,1,1366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",160940637-62 +150321455,KM12,15012334,Medical Incident,02/01/2015,02/01/2015,02/01/2015 11:15:25 AM,02/01/2015 11:16:27 AM,02/01/2015 11:17:17 AM,02/01/2015 11:18:18 AM,02/01/2015 11:22:57 AM,02/01/2015 11:45:54 AM,02/01/2015 12:10:03 PM,Code 2 Transport,02/01/2015 12:31:01 PM,1100 Block of MCALLISTER ST,San Francisco,94117,B02,5,3425,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7787422073706, -122.430463470215)",150321455-KM12 +150450924,64,15017414,Medical Incident,02/14/2015,02/14/2015,02/14/2015 08:21:39 AM,02/14/2015 08:24:23 AM,02/14/2015 08:25:10 AM,02/14/2015 08:25:24 AM,02/14/2015 08:29:50 AM,02/14/2015 08:53:37 AM,02/14/2015 09:12:19 AM,Code 2 Transport,02/14/2015 09:40:20 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",150450924-64 +153081624,E02,15118350,Medical Incident,11/04/2015,11/04/2015,11/04/2015 11:54:48 AM,11/04/2015 11:55:56 AM,11/04/2015 11:58:53 AM,11/04/2015 11:58:53 AM,11/04/2015 12:00:51 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,No Merit,11/04/2015 12:04:02 PM,1400 Block of TAYLOR ST,San Francisco,94133,B01,2,1443,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7956493531705, -122.413208626831)",153081624-E02 +160974646,57,16038719,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:31:41 PM,04/06/2016 11:32:38 PM,04/06/2016 11:34:10 PM,04/06/2016 11:34:16 PM,04/06/2016 11:37:03 PM,04/07/2016 12:07:17 AM,04/07/2016 12:25:33 AM,Code 2 Transport,04/07/2016 01:28:58 AM,5000 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7466063701183, -122.442785848189)",160974646-57 +161001298,AM08,16039722,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:17:01 AM,04/09/2016 11:17:01 AM,04/09/2016 11:19:42 AM,04/09/2016 11:20:12 AM,04/09/2016 11:27:16 AM,04/09/2016 11:43:45 AM,04/09/2016 11:43:58 AM,Code 2 Transport,04/09/2016 12:01:48 PM,MASON ST/CALIFORNIA ST,San Francisco,94108,B01,41,1418,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7918346271881, -122.410817535296)",161001298-AM08 +141900263,E28,14065707,Medical Incident,07/09/2014,07/08/2014,07/09/2014 03:18:27 AM,07/09/2014 03:21:37 AM,07/09/2014 03:24:10 AM,07/09/2014 03:26:52 AM,07/09/2014 03:30:05 AM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Code 2 Transport,07/09/2014 03:42:22 AM,800 Block of UNION ST,San Francisco,94133,B01,28,1422,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7999825843443, -122.413306427828)",141900263-E28 +143503307,E18,14125146,Medical Incident,12/16/2014,12/16/2014,12/16/2014 08:37:42 PM,12/16/2014 08:40:26 PM,12/16/2014 08:59:17 PM,12/16/2014 09:00:25 PM,12/16/2014 09:02:42 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/16/2014 09:25:53 PM,1800 Block of 29TH AVE,San Francisco,94122,B08,18,7515,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7528389433197, -122.48704896526)",143503307-E18 +151781692,E05,15067747,Medical Incident,06/27/2015,06/27/2015,06/27/2015 12:18:52 PM,06/27/2015 12:19:57 PM,06/27/2015 12:21:04 PM,06/27/2015 12:22:08 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,Code 2 Transport,06/27/2015 12:23:04 PM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",151781692-E05 +153071489,B01,15117944,Alarms,11/03/2015,11/03/2015,11/03/2015 11:06:09 AM,11/03/2015 11:08:43 AM,11/03/2015 11:10:39 AM,11/03/2015 11:10:51 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/03/2015 11:14:53 AM,500 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1334,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.7999440400543, -122.409564939064)",153071489-B01 +151943458,E03,15074185,Vehicle Fire,07/13/2015,07/13/2015,07/13/2015 08:15:04 PM,07/13/2015 08:15:39 PM,07/13/2015 08:15:59 PM,07/13/2015 08:17:41 PM,07/13/2015 08:18:45 PM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,Fire,07/13/2015 08:26:45 PM,1300 Block of FRANKLIN ST,San Francisco,94109,B04,3,3223,3,3,3,true,Fire,1,ENGINE,1,4,2,Western Addition,"(37.7866266269211, -122.423329395229)",151943458-E03 +153001349,E14,15115098,Administrative,10/27/2015,10/27/2015,10/27/2015 11:02:59 AM,10/27/2015 11:03:17 AM,10/27/2015 11:06:23 AM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Fire,10/27/2015 11:08:55 AM,500 Block of 26TH AVE,San Francisco,94121,B07,14,7213,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",153001349-E14 +141853021,67,14064165,Medical Incident,07/04/2014,07/04/2014,07/04/2014 09:11:56 PM,07/04/2014 09:12:51 PM,07/04/2014 09:13:35 PM,07/04/2014 09:13:42 PM,07/04/2014 09:17:15 PM,07/04/2014 09:27:35 PM,07/04/2014 09:32:09 PM,Code 2 Transport,07/04/2014 10:04:05 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",141853021-67 +160930297,85,16036698,Medical Incident,04/02/2016,04/01/2016,04/02/2016 02:05:00 AM,04/02/2016 02:05:00 AM,04/02/2016 02:05:43 AM,04/02/2016 02:05:52 AM,04/02/2016 02:07:41 AM,04/02/2016 02:21:05 AM,04/02/2016 02:26:46 AM,Code 2 Transport,04/02/2016 02:50:09 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",160930297-85 +160971694,AM04,16038396,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:51:09 AM,04/06/2016 11:53:00 AM,04/06/2016 11:53:55 AM,04/06/2016 11:55:16 AM,04/06/2016 12:08:22 PM,04/06/2016 12:19:27 PM,04/06/2016 12:57:54 PM,Code 2 Transport,04/06/2016 01:26:06 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160971694-AM04 +150482307,E14,15018662,Medical Incident,02/17/2015,02/17/2015,02/17/2015 03:23:11 PM,02/17/2015 03:26:12 PM,02/17/2015 03:28:15 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Cancelled,02/17/2015 03:30:46 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150482307-E14 +153280049,52,15126078,Medical Incident,11/24/2015,11/23/2015,11/24/2015 12:21:21 AM,11/24/2015 12:21:21 AM,11/24/2015 12:22:12 AM,11/24/2015 12:22:18 AM,11/24/2015 12:29:35 AM,11/24/2015 12:39:47 AM,11/24/2015 12:45:10 AM,Code 2 Transport,11/24/2015 01:14:24 AM,26TH ST/HARRISON ST,San Francisco,94110,B06,9,5615,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7494362303275, -122.411592845472)",153280049-52 +153382063,B04,15130092,Alarms,12/04/2015,12/04/2015,12/04/2015 01:37:02 PM,12/04/2015 01:38:31 PM,12/04/2015 01:38:38 PM,12/04/2015 01:39:19 PM,12/04/2015 01:41:12 PM,04/25/2016 01:06:50 PM,04/25/2016 01:06:50 PM,Fire,12/04/2015 01:52:29 PM,2600 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",153382063-B04 +152800932,E03,15107363,Medical Incident,10/07/2015,10/07/2015,10/07/2015 08:48:24 AM,10/07/2015 08:50:37 AM,10/07/2015 08:50:52 AM,10/07/2015 08:51:50 AM,10/07/2015 08:53:19 AM,04/25/2016 01:07:55 PM,04/25/2016 01:07:55 PM,Code 2 Transport,10/07/2015 08:57:09 AM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",152800932-E03 +160982005,AM04,16038927,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:20:10 PM,04/07/2016 01:20:56 PM,04/07/2016 01:21:54 PM,04/07/2016 01:22:55 PM,04/07/2016 01:32:57 PM,04/07/2016 01:43:29 PM,04/07/2016 02:04:21 PM,Code 2 Transport,04/07/2016 02:43:33 PM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160982005-AM04 +150361942,83,15013852,Medical Incident,02/05/2015,02/05/2015,02/05/2015 01:45:57 PM,02/05/2015 01:46:47 PM,02/05/2015 01:48:26 PM,02/05/2015 01:48:26 PM,02/05/2015 01:49:55 PM,02/05/2015 02:04:56 PM,02/05/2015 02:16:16 PM,Code 2 Transport,02/05/2015 02:29:07 PM,100 Block of BEAUMONT AVE,San Francisco,94118,B07,10,4563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7795186951087, -122.454767801221)",150361942-83 +153333040,B01,15128212,Alarms,11/29/2015,11/29/2015,11/29/2015 10:06:04 PM,11/29/2015 10:06:58 PM,11/29/2015 10:07:13 PM,11/29/2015 10:09:06 PM,11/29/2015 10:10:27 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Fire,11/29/2015 10:12:35 PM,0 Block of EMERY LN,San Francisco,94133,B01,2,1333,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",153333040-B01 +161001618,AM08,16039765,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:08:05 PM,04/09/2016 01:08:05 PM,04/09/2016 01:10:11 PM,04/09/2016 01:11:50 PM,04/09/2016 01:23:19 PM,04/09/2016 01:38:28 PM,04/09/2016 01:45:31 PM,Code 2 Transport,04/09/2016 02:15:38 PM,1900 Block of OAK ST,San Francisco,94117,B05,12,4544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7713013028881, -122.451412659858)",161001618-AM08 +152640189,KM07,15100911,Medical Incident,09/21/2015,09/20/2015,09/21/2015 01:36:45 AM,09/21/2015 01:37:36 AM,09/21/2015 01:38:25 AM,09/21/2015 01:39:04 AM,09/21/2015 01:48:18 AM,09/21/2015 02:08:52 AM,09/21/2015 02:17:55 AM,Code 2 Transport,09/21/2015 02:49:31 AM,4000 Block of MISSION ST,San Francisco,94112,B06,32,5633,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7321745845353, -122.427793514714)",152640189-KM07 +152934108,D3,15112775,Structure Fire,10/20/2015,10/20/2015,10/20/2015 11:16:26 PM,10/20/2015 11:16:41 PM,10/20/2015 11:17:27 PM,10/20/2015 11:18:30 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Fire,10/20/2015 11:21:23 PM,200 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,false,Alarm,1,CHIEF,9,2,8,Mission,"(37.7668770284191, -122.424185302421)",152934108-D3 +141501409,T03,14051517,Traffic Collision,05/30/2014,05/30/2014,05/30/2014 12:22:45 PM,05/30/2014 12:22:45 PM,05/30/2014 12:24:15 PM,05/30/2014 12:24:29 PM,05/30/2014 12:28:53 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Unable to Locate,05/30/2014 12:30:48 PM,POST ST/GOUGH ST,San Francisco,94109,B04,3,3256,A,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,5,Japantown,"(37.7861964263218, -122.42485842363)",141501409-T03 +160980360,70,16038764,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:19:29 AM,04/07/2016 03:20:09 AM,04/07/2016 03:26:45 AM,04/07/2016 03:26:45 AM,04/07/2016 03:32:06 AM,04/07/2016 03:39:26 AM,04/07/2016 03:51:17 AM,Code 2 Transport,04/07/2016 04:55:24 AM,SILVER AV/LISBON ST,San Francisco,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7285344326981, -122.428666969225)",160980360-70 +150430221,E36,15016592,Medical Incident,02/12/2015,02/11/2015,02/12/2015 02:10:47 AM,02/12/2015 02:12:48 AM,02/12/2015 02:13:02 AM,02/12/2015 02:15:21 AM,02/12/2015 02:20:34 AM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Code 2 Transport,02/12/2015 02:26:25 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",150430221-E36 +161000319,55,16039597,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:18:02 AM,04/09/2016 02:21:37 AM,04/09/2016 02:23:23 AM,04/09/2016 02:24:03 AM,04/09/2016 02:42:53 AM,04/09/2016 03:16:52 AM,04/09/2016 03:47:53 AM,Code 2 Transport,04/09/2016 04:20:58 AM,MAIN ST/HOWARD ST,San Francisco,94105,B03,35,2116,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",161000319-55 +142721246,52,14095345,Medical Incident,09/29/2014,09/29/2014,09/29/2014 10:53:58 AM,09/29/2014 10:54:30 AM,09/29/2014 10:55:31 AM,09/29/2014 10:56:14 AM,09/29/2014 11:03:58 AM,09/29/2014 11:11:40 AM,09/29/2014 11:36:59 AM,Code 2 Transport,09/29/2014 12:22:31 PM,0 Block of GAVEN ST,San Francisco,94134,B10,42,6366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7338089312246, -122.407005779924)",142721246-52 +142903959,KM07,14102448,Medical Incident,10/17/2014,10/17/2014,10/17/2014 11:30:01 PM,10/17/2014 11:30:52 PM,10/17/2014 11:31:20 PM,10/17/2014 11:32:22 PM,10/17/2014 11:37:01 PM,10/17/2014 11:49:04 PM,10/17/2014 11:49:29 PM,Code 3 Transport,10/18/2014 12:51:57 AM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",142903959-KM07 +141790522,54,14061678,Medical Incident,06/28/2014,06/27/2014,06/28/2014 03:28:56 AM,06/28/2014 03:28:56 AM,06/28/2014 03:33:49 AM,06/28/2014 03:34:41 AM,06/28/2014 03:47:06 AM,06/28/2014 04:08:38 AM,06/28/2014 04:20:11 AM,Code 2 Transport,06/28/2014 05:04:34 AM,200 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5444,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7588840549508, -122.429141172461)",141790522-54 +151031759,81,15038947,Medical Incident,04/13/2015,04/13/2015,04/13/2015 12:49:58 PM,04/13/2015 12:50:49 PM,04/13/2015 12:51:10 PM,04/13/2015 12:51:22 PM,04/13/2015 12:52:48 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Patient Declined Transport,04/13/2015 01:25:29 PM,900 Block of MASON ST,San Francisco,94108,B01,41,1414,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",151031759-81 +142801056,E36,14098430,HazMat,10/07/2014,10/07/2014,10/07/2014 09:57:33 AM,10/07/2014 09:58:31 AM,10/07/2014 10:15:43 AM,10/07/2014 10:15:43 AM,10/07/2014 10:15:43 AM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Fire,10/07/2014 11:53:36 AM,100 Block of BERRY ST,San Francisco,94158,B03,8,2171,3,3,3,true,Alarm,1,ENGINE,4,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",142801056-E36 +160992266,77,16039355,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:27:49 PM,04/08/2016 03:29:35 PM,04/08/2016 03:30:07 PM,04/08/2016 03:30:30 PM,04/08/2016 03:50:46 PM,04/08/2016 03:58:01 PM,04/08/2016 04:34:53 PM,Code 2 Transport,04/08/2016 04:48:14 PM,3100 Block of 20TH AVE,San Francisco,94132,B08,19,8862,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7306107022051, -122.475862776859)",160992266-77 +150780654,T13,15029801,Alarms,03/19/2015,03/18/2015,03/19/2015 07:07:30 AM,03/19/2015 07:08:09 AM,03/19/2015 07:08:18 AM,03/19/2015 07:09:55 AM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Fire,03/19/2015 07:12:57 AM,STEUART ST/MARKET ST,San Francisco,94105,B03,35,2111,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",150780654-T13 +160981290,AM10,16038858,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:11:27 AM,04/07/2016 10:13:14 AM,04/07/2016 10:16:53 AM,04/07/2016 10:17:35 AM,04/07/2016 10:29:48 AM,04/07/2016 10:36:10 AM,04/07/2016 10:43:46 AM,Code 2 Transport,04/07/2016 11:11:59 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160981290-AM10 +143621117,B09,14129470,Structure Fire,12/28/2014,12/28/2014,12/28/2014 10:42:56 AM,12/28/2014 10:43:39 AM,12/28/2014 10:43:58 AM,12/28/2014 10:44:20 AM,12/28/2014 10:48:34 AM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Fire,12/28/2014 10:51:27 AM,SADOWA ST/SAN JOSE AV,San Francisco,94112,B09,33,8371,3,3,3,false,Alarm,1,CHIEF,5,9,11,Oceanview/Merced/Ingleside,"(37.7123307247569, -122.454665237567)",143621117-B09 +142604024,E36,14091080,Other,09/17/2014,09/17/2014,09/17/2014 11:28:54 PM,09/17/2014 11:28:54 PM,09/17/2014 11:36:58 PM,09/17/2014 11:39:16 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,No Merit,09/17/2014 11:45:21 PM,STEVENSON ST/14TH ST,San Francisco,94103,B02,36,5215,2,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7681901113743, -122.421364522442)",142604024-E36 +152662401,E06,15101923,Medical Incident,09/23/2015,09/23/2015,09/23/2015 03:14:54 PM,09/23/2015 03:16:42 PM,09/23/2015 03:19:17 PM,09/23/2015 03:20:28 PM,09/23/2015 03:27:03 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Code 2 Transport,09/23/2015 03:38:34 PM,3600 Block of 20TH ST,San Francisco,94110,B06,7,5445,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Mission,"(37.7584863037287, -122.422385383463)",152662401-E06 +152352156,E17,15089631,,08/23/2015,08/23/2015,08/23/2015 03:10:00 PM,08/23/2015 03:10:00 PM,08/23/2015 03:12:00 PM,08/23/2015 03:13:00 PM,08/23/2015 03:16:00 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,SFPD,08/23/2015 03:21:00 PM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",152352156-E17 +143352668,E20,14118778,Medical Incident,12/01/2014,12/01/2014,12/01/2014 05:01:38 PM,12/01/2014 05:03:43 PM,12/01/2014 05:04:14 PM,12/01/2014 05:06:07 PM,12/01/2014 05:07:24 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Code 2 Transport,12/01/2014 05:20:51 PM,100 Block of GLADEVIEW WAY,San Francisco,94131,B08,20,5361,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.752031784008, -122.450511726322)",143352668-E20 +160962526,82,16038071,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:41:49 PM,04/05/2016 03:45:31 PM,04/05/2016 03:45:39 PM,04/05/2016 03:45:54 PM,04/05/2016 03:58:23 PM,04/05/2016 04:07:09 PM,04/05/2016 04:34:14 PM,Code 2 Transport,04/05/2016 04:34:24 PM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774574199485, -122.413157691577)",160962526-82 +153074218,88,15118186,Structure Fire,11/03/2015,11/03/2015,11/03/2015 10:59:46 PM,11/03/2015 11:00:22 PM,11/03/2015 11:01:02 PM,11/03/2015 11:01:26 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Fire,11/03/2015 11:05:52 PM,2400 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3616,3,3,3,true,Alarm,1,MEDIC,9,4,2,Pacific Heights,"(37.7888558494073, -122.434673564554)",153074218-88 +160982315,70,16038967,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:41:45 PM,04/07/2016 02:42:10 PM,04/07/2016 02:42:39 PM,04/07/2016 02:43:03 PM,04/07/2016 02:54:06 PM,04/07/2016 03:10:07 PM,04/07/2016 03:37:21 PM,Code 2 Transport,04/07/2016 04:28:21 PM,WAWONA ST/47TH AV,San Francisco,94116,B08,23,7733,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7361351419095, -122.505296602351)",160982315-70 +150592817,56,15022637,Medical Incident,02/28/2015,02/28/2015,02/28/2015 06:12:40 PM,02/28/2015 06:12:40 PM,02/28/2015 06:14:34 PM,02/28/2015 06:14:42 PM,02/28/2015 06:20:37 PM,02/28/2015 06:47:16 PM,02/28/2015 06:55:01 PM,Code 2 Transport,02/28/2015 07:35:09 PM,JONES ST/MARKET ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",150592817-56 +141160279,KM14,14039242,Citizen Assist / Service Call,04/26/2014,04/26/2014,04/26/2014 05:26:39 PM,04/26/2014 05:28:24 PM,04/26/2014 05:28:30 PM,04/26/2014 05:29:11 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/25/2016 01:17:40 PM,25TH ST/HAMPSHIRE ST,SAN FRANCISCO,94110,B10,9,2624,3,3,3,false,Alarm,1,PRIVATE,2,6,9,Mission,"(37.7513102329158, -122.407139008213)",141160279-KM14 +160951450,AM10,16037598,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:32:02 AM,04/04/2016 11:32:39 AM,04/04/2016 11:33:33 AM,04/04/2016 11:34:13 AM,04/04/2016 11:36:29 AM,04/04/2016 11:45:37 AM,04/04/2016 12:16:39 PM,Code 2 Transport,04/04/2016 12:37:42 PM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",160951450-AM10 +141180263,E29,14039863,Alarms,04/28/2014,04/28/2014,04/28/2014 02:55:23 PM,04/28/2014 02:59:53 PM,04/28/2014 03:00:00 PM,04/28/2014 03:00:49 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,No Merit,04/28/2014 03:06:24 PM,MARIPOSA ST/3RD ST,SAN FRANCISCO,94107,B03,29,2671,3,3,3,false,Alarm,1,ENGINE,3,3,10,Potrero Hill,"(37.7643218361157, -122.388851284628)",141180263-E29 +150103170,E12,15004119,Medical Incident,01/10/2015,01/10/2015,01/10/2015 08:33:08 PM,01/10/2015 08:35:19 PM,01/10/2015 08:35:36 PM,01/10/2015 08:36:43 PM,01/10/2015 08:39:37 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 2 Transport,01/10/2015 08:40:03 PM,HILLWAY AV/CARL ST,San Francisco,94117,B05,12,7321,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Inner Sunset,"(37.7649324615306, -122.456759007543)",150103170-E12 +160943205,85,16037408,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:02:30 PM,04/03/2016 08:04:10 PM,04/03/2016 08:04:55 PM,04/03/2016 08:05:00 PM,04/03/2016 08:17:06 PM,04/03/2016 08:50:48 PM,04/03/2016 09:22:17 PM,Code 2 Transport,04/03/2016 10:07:21 PM,200 Block of PEABODY ST,San Francisco,94134,B09,44,6256,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7090147282704, -122.407917700697)",160943205-85 +150030921,2R01,15001038,,01/03/2015,01/03/2015,01/03/2015 09:24:18 AM,01/03/2015 09:25:25 AM,01/03/2015 09:41:01 AM,01/03/2015 09:41:01 AM,01/03/2015 09:41:01 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Patient Declined Transport,01/03/2015 09:41:06 AM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,ADMIN,0,2,6,Tenderloin,"(37.782320193191, -122.41402801662)",150030921-2R01 +160991568,54,16039281,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:31:07 PM,04/08/2016 12:32:41 PM,04/08/2016 12:33:00 PM,04/08/2016 12:33:23 PM,04/08/2016 12:51:29 PM,04/08/2016 01:02:27 PM,04/08/2016 01:21:59 PM,Code 2 Transport,04/08/2016 01:53:12 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160991568-54 +160963694,76,16038179,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:32:55 PM,04/05/2016 08:33:27 PM,04/05/2016 08:33:41 PM,04/05/2016 08:33:55 PM,04/05/2016 08:41:31 PM,04/05/2016 08:52:14 PM,04/05/2016 09:17:35 PM,Code 2 Transport,04/05/2016 09:53:59 PM,900 Block of GENEVA AVE,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7161388666379, -122.440743149905)",160963694-76 +160981905,52,16038919,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:49:17 PM,04/07/2016 12:51:52 PM,04/07/2016 12:52:19 PM,04/07/2016 12:53:07 PM,04/07/2016 01:05:26 PM,04/07/2016 01:20:51 PM,04/07/2016 02:01:42 PM,Code 2 Transport,04/07/2016 02:29:12 PM,200 Block of WAWONA ST,San Francisco,94127,B08,39,8612,2,2,2,true,Non Life-threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7392918441899, -122.468883827068)",160981905-52 +160922607,62,16036527,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:59:52 PM,04/01/2016 05:01:36 PM,04/01/2016 05:02:02 PM,04/01/2016 05:02:08 PM,04/01/2016 05:13:30 PM,04/01/2016 05:48:54 PM,04/01/2016 06:15:12 PM,Code 2 Transport,04/01/2016 06:50:13 PM,0 Block of JULES AVE,San Francisco,94112,B09,33,8462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.719124726717, -122.461301532222)",160922607-62 +143463107,E38,14123492,Administrative,12/12/2014,12/12/2014,12/12/2014 06:57:46 PM,12/12/2014 06:58:01 PM,12/12/2014 06:58:46 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Fire,12/12/2014 06:59:26 PM,2100 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",143463107-E38 +143463469,B02,14123537,Alarms,12/12/2014,12/12/2014,12/12/2014 08:54:44 PM,12/12/2014 08:54:44 PM,12/12/2014 08:55:28 PM,12/12/2014 08:56:46 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Fire,12/12/2014 09:08:38 PM,100 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,3,3,3,false,Alarm,1,CHIEF,2,6,8,Castro/Upper Market,"(37.7600190563185, -122.436104378198)",143463469-B02 +141260166,B06,14042688,Alarms,05/06/2014,05/06/2014,05/06/2014 11:03:07 AM,05/06/2014 11:04:09 AM,05/06/2014 11:05:03 AM,05/06/2014 11:05:54 AM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Fire,05/06/2014 11:13:40 AM,100 Block of JENNINGS ST,,94124,B10,25,996,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",141260166-B06 +150432888,E01,15016823,Medical Incident,02/12/2015,02/12/2015,02/12/2015 05:44:57 PM,02/12/2015 05:45:37 PM,02/12/2015 05:46:02 PM,02/12/2015 05:47:21 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Against Medical Advice,02/12/2015 05:54:14 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",150432888-E01 +141010128,E36,14034057,Alarms,04/11/2014,04/11/2014,04/11/2014 10:44:05 AM,04/11/2014 10:44:23 AM,04/11/2014 10:44:50 AM,04/11/2014 10:46:21 AM,04/11/2014 10:49:13 AM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Fire,04/11/2014 10:54:09 AM,0 Block of VAN NESS AVE,SAN FRANCISCO,94102,B02,36,3211,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7757784176924, -122.419234662317)",141010128-E36 +142872330,E21,14101225,Administrative,10/14/2014,10/14/2014,10/14/2014 03:50:16 PM,10/14/2014 03:50:20 PM,10/14/2014 03:50:29 PM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,Cancelled,10/14/2014 03:52:31 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",142872330-E21 +141580999,T06,14054367,Structure Fire,06/07/2014,06/07/2014,06/07/2014 10:08:08 AM,06/07/2014 10:09:20 AM,06/07/2014 10:10:19 AM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 10:14:03 AM,500 Block of SHOTWELL ST,San Francisco,94110,B06,7,5433,3,3,3,false,Alarm,1,TRUCK,9,6,9,Mission,"(37.7596358018147, -122.415785026906)",141580999-T06 +150441449,E36,15017071,Medical Incident,02/13/2015,02/13/2015,02/13/2015 11:13:58 AM,02/13/2015 11:15:36 AM,02/13/2015 11:15:47 AM,02/13/2015 11:17:34 AM,02/13/2015 11:19:43 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/13/2015 11:33:33 AM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",150441449-E36 +150641605,65,15024433,Medical Incident,03/05/2015,03/05/2015,03/05/2015 11:40:22 AM,03/05/2015 11:48:22 AM,03/05/2015 11:49:29 AM,03/05/2015 11:51:14 AM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Unable to Locate,03/05/2015 11:57:42 AM,SOUTH VAN NESS AV/23RD ST,San Francisco,94110,B06,7,5511,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7539677697092, -122.416413490249)",150641605-65 +160942462,64,16037326,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:15:24 PM,04/03/2016 04:15:34 PM,04/03/2016 04:15:47 PM,04/03/2016 04:16:12 PM,04/03/2016 04:21:54 PM,04/03/2016 04:40:42 PM,04/03/2016 05:01:48 PM,Code 2 Transport,04/03/2016 05:29:32 PM,100 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7789597633583, -122.410718060304)",160942462-64 +150353489,E33,15013590,Alarms,02/04/2015,02/04/2015,02/04/2015 06:35:54 PM,02/04/2015 06:37:48 PM,02/04/2015 06:37:57 PM,02/04/2015 06:39:15 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Fire,02/04/2015 06:42:37 PM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,false,Alarm,1,ENGINE,4,6,8,Mission,"(37.7600451698328, -122.423265598657)",150353489-E33 +150580196,77,15022015,Medical Incident,02/27/2015,02/26/2015,02/27/2015 01:48:31 AM,02/27/2015 01:48:31 AM,02/27/2015 01:49:20 AM,02/27/2015 01:50:45 AM,02/27/2015 02:06:32 AM,02/27/2015 02:17:35 AM,02/27/2015 02:36:23 AM,Code 2 Transport,02/27/2015 03:19:40 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7981219270604, -122.405087523335)",150580196-77 +160952791,KM13,16037713,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:48:42 PM,04/04/2016 04:49:45 PM,04/04/2016 04:51:49 PM,04/04/2016 04:52:59 PM,04/04/2016 05:07:32 PM,04/04/2016 05:36:13 PM,04/04/2016 06:00:06 PM,Code 2 Transport,04/04/2016 06:26:50 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160952791-KM13 +141453562,B06,14049984,Structure Fire,05/25/2014,05/25/2014,05/25/2014 11:25:25 PM,05/25/2014 11:25:44 PM,05/25/2014 11:25:56 PM,05/25/2014 11:30:52 PM,05/25/2014 11:30:52 PM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,Fire,05/26/2014 12:18:06 AM,3700 Block of 16TH ST,San Francisco,94114,B05,6,5233,3,3,3,false,Fire,1,CHIEF,5,5,8,Castro/Upper Market,"(37.7637474230004, -122.43687116756)",141453562-B06 +160931828,AM10,16036868,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:31:55 PM,04/02/2016 01:31:55 PM,04/02/2016 01:37:30 PM,04/02/2016 01:37:55 PM,04/02/2016 01:52:31 PM,04/02/2016 02:05:40 PM,04/02/2016 02:19:01 PM,Code 2 Transport,04/02/2016 02:34:38 PM,HOWARD ST/BEALE ST,San Francisco,94105,B03,35,2124,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7899262298106, -122.394276229254)",160931828-AM10 +151731208,AM08,15066015,Medical Incident,06/22/2015,06/22/2015,06/22/2015 11:01:15 AM,06/22/2015 11:02:07 AM,06/22/2015 11:02:31 AM,06/22/2015 11:03:30 AM,06/22/2015 11:05:54 AM,06/22/2015 11:12:54 AM,06/22/2015 11:45:55 AM,Code 2 Transport,06/22/2015 12:11:54 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7755801285655, -122.413994780042)",151731208-AM08 +160973543,KM04,16038601,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:22:45 PM,04/06/2016 06:22:45 PM,04/06/2016 06:26:56 PM,04/06/2016 06:27:54 PM,04/06/2016 06:30:15 PM,04/06/2016 06:49:03 PM,04/06/2016 07:12:47 PM,Code 2 Transport,04/06/2016 07:48:35 PM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160973543-KM04 +160942177,64,16037298,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:43:44 PM,04/03/2016 02:46:54 PM,04/03/2016 02:48:16 PM,04/03/2016 02:48:43 PM,04/03/2016 02:53:19 PM,04/03/2016 03:26:12 PM,04/03/2016 03:43:58 PM,Code 2 Transport,04/03/2016 04:12:32 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",160942177-64 +150512827,74,15019751,Medical Incident,02/20/2015,02/20/2015,02/20/2015 05:02:03 PM,02/20/2015 05:03:03 PM,02/20/2015 05:03:28 PM,02/20/2015 05:03:38 PM,02/20/2015 05:16:30 PM,02/20/2015 05:17:08 PM,02/20/2015 05:28:26 PM,Code 2 Transport,02/20/2015 06:14:02 PM,500 Block of VALENCIA ST,San Francisco,94103,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",150512827-74 +142960237,88,14104236,Medical Incident,10/23/2014,10/22/2014,10/23/2014 02:00:45 AM,10/23/2014 02:00:45 AM,10/23/2014 02:01:04 AM,10/23/2014 02:01:12 AM,10/23/2014 02:03:18 AM,10/23/2014 02:18:25 AM,10/23/2014 02:22:17 AM,Code 2 Transport,10/23/2014 02:45:48 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",142960237-88 +142083563,E01,14072260,Medical Incident,07/27/2014,07/27/2014,07/27/2014 11:11:58 PM,07/27/2014 11:13:43 PM,07/27/2014 11:14:01 PM,07/27/2014 11:15:25 PM,07/27/2014 11:18:18 PM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Code 2 Transport,07/27/2014 11:22:34 PM,JESSIE ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",142083563-E01 +143311002,RS1,14117332,Medical Incident,11/27/2014,11/27/2014,11/27/2014 10:30:54 AM,11/27/2014 10:31:14 AM,11/27/2014 10:31:41 AM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,Other,11/27/2014 10:32:21 AM,GOLDEN GATE AV/TAYLOR ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",143311002-RS1 +152620408,E44,15100015,Medical Incident,09/19/2015,09/18/2015,09/19/2015 02:33:17 AM,09/19/2015 02:35:23 AM,09/19/2015 02:36:00 AM,09/19/2015 02:38:31 AM,09/19/2015 02:57:00 AM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/19/2015 03:10:25 AM,0 Block of TEDDY AVE,San Francisco,94134,B10,44,6265,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7133320726694, -122.403313250253)",152620408-E44 +142960371,B02,14104259,Medical Incident,10/23/2014,10/22/2014,10/23/2014 04:13:55 AM,10/23/2014 04:14:51 AM,10/23/2014 04:15:16 AM,10/23/2014 04:16:59 AM,10/23/2014 04:20:33 AM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Code 3 Transport,10/23/2014 04:40:44 AM,13TH ST/MISSION ST,San Francisco,94103,B02,36,5123,E,E,3,false,Potentially Life-Threatening,1,CHIEF,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",142960371-B02 +141592737,B09,14054928,Structure Fire,06/08/2014,06/08/2014,06/08/2014 07:44:19 PM,06/08/2014 07:45:18 PM,06/08/2014 07:45:48 PM,06/08/2014 07:47:55 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Fire,06/08/2014 07:50:55 PM,800 Block of FELTON ST,San Francisco,94134,B10,42,6342,3,3,3,false,Fire,1,CHIEF,5,9,9,Portola,"(37.7278955738181, -122.413004150415)",141592737-B09 +141991769,66,14068918,Medical Incident,07/18/2014,07/18/2014,07/18/2014 01:35:50 PM,07/18/2014 01:36:32 PM,07/18/2014 01:36:48 PM,07/18/2014 01:37:26 PM,07/18/2014 01:41:40 PM,07/18/2014 02:05:17 PM,07/18/2014 02:20:38 PM,Code 2 Transport,07/18/2014 02:59:30 PM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",141991769-66 +160940964,61,16037198,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:37:11 AM,04/03/2016 08:39:02 AM,04/03/2016 08:40:51 AM,04/03/2016 08:41:05 AM,04/03/2016 08:46:35 AM,04/03/2016 09:06:22 AM,04/03/2016 09:30:04 AM,Code 2 Transport,04/03/2016 09:54:34 AM,600 Block of SHIELDS ST,San Francisco,94132,B09,33,8431,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7178422382696, -122.468488213878)",160940964-61 +160951550,74,16037604,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:53:34 AM,04/04/2016 11:55:37 AM,04/04/2016 11:56:13 AM,04/04/2016 11:56:29 AM,04/04/2016 12:09:05 PM,04/04/2016 12:22:13 PM,04/04/2016 12:43:20 PM,Code 2 Transport,04/04/2016 01:14:28 PM,1700 Block of 16TH AV,San Francisco,94122,B08,40,7373,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7558726539116, -122.473577826888)",160951550-74 +143391667,54,14120341,Medical Incident,12/05/2014,12/05/2014,12/05/2014 12:11:43 PM,12/05/2014 12:12:21 PM,12/05/2014 12:14:26 PM,12/05/2014 12:14:26 PM,12/05/2014 12:25:00 PM,12/05/2014 12:41:01 PM,12/05/2014 01:03:55 PM,Code 2 Transport,12/05/2014 01:43:34 PM,800 Block of 3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",143391667-54 +160970926,77,16038329,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:57:12 AM,04/06/2016 08:59:45 AM,04/06/2016 09:01:27 AM,04/06/2016 09:01:34 AM,04/06/2016 09:08:16 AM,04/06/2016 09:18:06 AM,04/06/2016 09:48:56 AM,Code 2 Transport,04/06/2016 10:16:05 AM,100 Block of BATTERY ST,San Francisco,94111,B01,13,1167,2,3,3,true,Non Life-threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7927423612432, -122.399792731222)",160970926-77 +142972222,E11,14104826,Structure Fire,10/24/2014,10/24/2014,10/24/2014 03:12:58 PM,10/24/2014 03:12:58 PM,10/24/2014 03:13:40 PM,10/24/2014 03:14:30 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Fire,10/24/2014 03:17:27 PM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Alarm,1,ENGINE,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",142972222-E11 +141301053,E13,14044172,Traffic Collision,05/10/2014,05/10/2014,05/10/2014 09:49:50 AM,05/10/2014 09:50:59 AM,05/10/2014 09:52:55 AM,05/10/2014 09:57:00 AM,05/10/2014 09:57:00 AM,04/25/2016 01:17:25 PM,04/25/2016 01:17:25 PM,No Merit,05/10/2014 10:12:07 AM,BATTERY ST/WASHINGTON ST,San Francisco,94111,B01,13,1161,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7958750038383, -122.400485537558)",141301053-E13 +151750391,57,15066594,Medical Incident,06/24/2015,06/23/2015,06/24/2015 05:09:55 AM,06/24/2015 05:10:57 AM,06/24/2015 05:11:11 AM,06/24/2015 05:12:26 AM,06/24/2015 05:16:50 AM,04/25/2016 01:09:50 PM,04/25/2016 01:09:50 PM,Unable to Locate,06/24/2015 05:19:17 AM,MISSION ST/SOUTH VAN NESS AV,San Francisco,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7730534532281, -122.418618217459)",151750391-57 +152070150,53,15078717,Medical Incident,07/26/2015,07/25/2015,07/26/2015 01:06:14 AM,07/26/2015 01:07:25 AM,07/26/2015 01:08:03 AM,07/26/2015 01:08:19 AM,07/26/2015 01:13:01 AM,07/26/2015 01:26:24 AM,07/26/2015 01:56:42 AM,Code 2 Transport,07/26/2015 02:13:25 AM,DORMITORY RD/NORTHRIDGE RD,San Francisco,94124,B10,17,6713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7301766773279, -122.374217334822)",152070150-53 +151203864,E35,15045645,Alarms,04/30/2015,04/30/2015,04/30/2015 10:06:51 PM,04/30/2015 10:08:01 PM,04/30/2015 10:08:59 PM,04/30/2015 10:10:05 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Fire,04/30/2015 10:10:34 PM,0 Block of FOLSOM ST,San Francisco,94105,B03,35,2112,3,3,3,false,Alarm,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7904750361645, -122.39055604599)",151203864-E35 +160943540,62,16037444,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:09:12 PM,04/03/2016 10:11:38 PM,04/03/2016 10:12:09 PM,04/03/2016 10:12:13 PM,04/03/2016 10:19:47 PM,04/03/2016 10:38:24 PM,04/03/2016 11:08:52 PM,Code 2 Transport,04/03/2016 11:29:21 PM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",160943540-62 +142780169,E03,14097651,Medical Incident,10/05/2014,10/04/2014,10/05/2014 12:45:37 AM,10/05/2014 12:46:21 AM,10/05/2014 12:47:13 AM,10/05/2014 12:47:24 AM,10/05/2014 12:48:43 AM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Code 2 Transport,10/05/2014 01:00:51 AM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",142780169-E03 +160971884,67,16038409,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 12:31:27 PM,04/06/2016 12:33:51 PM,04/06/2016 12:35:10 PM,04/06/2016 12:35:18 PM,04/06/2016 12:37:46 PM,04/06/2016 01:03:51 PM,04/06/2016 01:24:36 PM,Code 2 Transport,04/06/2016 02:06:58 PM,MARKET ST/GOUGH ST,San Francisco,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",160971884-67 +150531650,B07,15020376,Other,02/22/2015,02/22/2015,02/22/2015 01:01:31 PM,02/22/2015 01:01:31 PM,02/22/2015 01:01:31 PM,02/22/2015 01:01:31 PM,02/22/2015 01:01:31 PM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,Fire,02/22/2015 01:25:09 PM,800 Block of 42ND AVE,San Francisco,94121,B07,34,7271,3,3,3,false,Alarm,1,CHIEF,1,7,1,Outer Richmond,"(37.7726741401354, -122.502398333157)",150531650-B07 +153030578,E14,15116101,Medical Incident,10/30/2015,10/29/2015,10/30/2015 06:41:04 AM,10/30/2015 06:41:34 AM,10/30/2015 06:43:04 AM,10/30/2015 06:44:46 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Code 2 Transport,10/30/2015 06:47:29 AM,300 Block of 11TH AVE,San Francisco,94118,B07,31,7141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7817385392724, -122.469629422744)",153030578-E14 +153091815,T07,15118737,Alarms,11/05/2015,11/05/2015,11/05/2015 12:38:04 PM,11/05/2015 12:39:19 PM,11/05/2015 12:39:35 PM,11/05/2015 12:40:32 PM,11/05/2015 12:44:58 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Fire,11/05/2015 12:47:06 PM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",153091815-T07 +151320713,E36,15049981,Medical Incident,05/12/2015,05/12/2015,05/12/2015 08:02:45 AM,05/12/2015 08:03:17 AM,05/12/2015 08:05:00 AM,05/12/2015 08:06:01 AM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,Code 2 Transport,05/12/2015 08:10:25 AM,0 Block of OAK ST,San Francisco,94102,B02,36,3211,2,2,2,true,Non Life-threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7753796573025, -122.420188747323)",151320713-E36 +141960323,66,14067777,Medical Incident,07/15/2014,07/14/2014,07/15/2014 03:30:34 AM,07/15/2014 03:30:34 AM,07/15/2014 03:30:34 AM,07/15/2014 03:30:34 AM,07/15/2014 03:30:34 AM,07/15/2014 03:43:59 AM,07/15/2014 03:47:25 AM,Code 2 Transport,07/15/2014 04:36:58 AM,CASTRO ST/18TH ST,San Francisco,94114,B99,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",141960323-66 +152320681,T19,15088404,Other,08/20/2015,08/19/2015,08/20/2015 07:32:30 AM,08/20/2015 07:33:04 AM,08/20/2015 07:33:34 AM,08/20/2015 07:35:56 AM,08/20/2015 07:40:00 AM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Medical Examiner,08/20/2015 07:59:19 AM,300 Block of BYXBEE ST,San Francisco,94132,B09,19,8436,3,3,3,false,Alarm,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7206483756035, -122.469795367301)",152320681-T19 +152510459,E37,15095750,Outside Fire,09/08/2015,09/07/2015,09/08/2015 05:53:51 AM,09/08/2015 05:55:10 AM,09/08/2015 05:57:10 AM,09/08/2015 05:57:10 AM,09/08/2015 06:01:05 AM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Fire,09/08/2015 06:09:07 AM,CESAR CHAVEZ ST/BAYSHORE BL,San Francisco,94110,B10,9,2626,3,3,3,false,Fire,1,ENGINE,1,6,9,Bernal Heights,"(37.7489710482463, -122.405626953003)",152510459-E37 +142672499,RWC2,14093573,Water Rescue,09/24/2014,09/24/2014,09/24/2014 03:44:11 PM,09/24/2014 03:44:52 PM,09/24/2014 03:56:47 PM,09/24/2014 03:56:47 PM,09/24/2014 03:56:47 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 3 Transport,09/24/2014 04:14:12 PM,2100 Block of JOHN F KENNEDY DR,,94122,B08,23,7722,3,3,3,false,Fire,1,SUPPORT,12,7,1,Golden Gate Park,"(37.7702544606336, -122.510223148548)",142672499-RWC2 +142963621,E21,14104574,Structure Fire,10/23/2014,10/23/2014,10/23/2014 09:30:09 PM,10/23/2014 09:33:34 PM,10/23/2014 09:34:08 PM,10/23/2014 09:34:48 PM,10/23/2014 09:37:25 PM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Fire,10/23/2014 09:44:35 PM,3000 Block of GEARY BLVD,San Francisco,94118,B05,10,4454,3,3,3,false,Alarm,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7817906390201, -122.451605977691)",142963621-E21 +151982892,E18,15075546,Medical Incident,07/17/2015,07/17/2015,07/17/2015 05:22:39 PM,07/17/2015 05:22:48 PM,07/17/2015 05:23:28 PM,07/17/2015 05:24:43 PM,07/17/2015 05:27:01 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,Against Medical Advice,07/17/2015 05:45:16 PM,2600 Block of JUDAH ST,San Francisco,94122,B08,23,7541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7611653096685, -122.490391943862)",151982892-E18 +150700725,T02,15026641,Citizen Assist / Service Call,03/11/2015,03/11/2015,03/11/2015 08:03:54 AM,03/11/2015 08:05:17 AM,03/11/2015 08:05:24 AM,03/11/2015 08:07:04 AM,03/11/2015 08:11:27 AM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/11/2015 08:24:46 AM,GEARY ST/POWELL ST,San Francisco,94102,B01,1,1323,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",150700725-T02 +150133503,E41,15005323,Medical Incident,01/13/2015,01/13/2015,01/13/2015 08:36:38 PM,01/13/2015 08:37:52 PM,01/13/2015 08:38:49 PM,01/13/2015 08:40:09 PM,01/13/2015 08:42:22 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Code 2 Transport,01/13/2015 08:59:59 PM,1300 Block of BROADWAY,San Francisco,94109,B01,41,1632,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7963703833309, -122.419356391011)",150133503-E41 +152132920,RC1,15081227,Medical Incident,08/01/2015,08/01/2015,08/01/2015 06:34:01 PM,08/01/2015 06:34:26 PM,08/01/2015 06:39:03 PM,08/01/2015 06:40:10 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Code 2 Transport,08/01/2015 06:41:25 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7811458612596, -122.409026046516)",152132920-RC1 +160933773,53,16037066,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:41:38 PM,04/02/2016 10:43:59 PM,04/02/2016 10:44:25 PM,04/02/2016 10:44:34 PM,04/02/2016 10:47:25 PM,04/02/2016 10:58:35 PM,04/02/2016 11:18:00 PM,Code 2 Transport,04/03/2016 12:07:30 AM,1100 Block of FRANKLIN ST,San Francisco,94109,B04,3,3222,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7852397067254, -122.423049038172)",160933773-53 +142593082,83,14090615,Medical Incident,09/16/2014,09/16/2014,09/16/2014 06:49:56 PM,09/16/2014 06:50:55 PM,09/16/2014 06:51:25 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Patient Declined Transport,09/16/2014 07:00:00 PM,600 Block of GRANT AVE,San Francisco,94108,B01,13,1314,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7929063668829, -122.406102110273)",142593082-83 +143503202,81,14125137,Medical Incident,12/16/2014,12/16/2014,12/16/2014 08:05:08 PM,12/16/2014 08:05:30 PM,12/16/2014 08:05:48 PM,12/16/2014 08:05:57 PM,12/16/2014 08:15:52 PM,12/16/2014 08:39:47 PM,12/16/2014 09:12:44 PM,Code 2 Transport,12/16/2014 09:36:41 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",143503202-81 +150063503,B06,15002472,Alarms,01/06/2015,01/06/2015,01/06/2015 09:30:59 PM,01/06/2015 09:32:29 PM,01/06/2015 09:32:45 PM,01/06/2015 09:34:28 PM,01/06/2015 09:37:36 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Fire,01/06/2015 09:54:13 PM,700 Block of BURNETT AVE,San Francisco,94131,B06,24,5282,3,3,3,false,Alarm,1,CHIEF,2,6,8,Twin Peaks,"(37.7500932216051, -122.44535716216)",150063503-B06 +142963046,E09,14104518,Medical Incident,10/23/2014,10/23/2014,10/23/2014 06:39:50 PM,10/23/2014 06:42:08 PM,10/23/2014 06:44:51 PM,10/23/2014 06:46:08 PM,10/23/2014 06:49:37 PM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Code 2 Transport,10/23/2014 07:09:42 PM,POTRERO AV/25TH ST,San Francisco,94110,B10,9,2624,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Mission,"(37.7517262101212, -122.406219413558)",142963046-E09 +141030227,AM16,14034818,Medical Incident,04/13/2014,04/13/2014,04/13/2014 02:52:40 PM,04/13/2014 02:52:40 PM,04/13/2014 02:53:12 PM,04/13/2014 02:53:47 PM,04/13/2014 02:58:28 PM,04/13/2014 03:10:40 PM,04/13/2014 03:28:57 PM,Code 2 Transport,04/13/2014 04:13:06 PM,0 Block of DORE ST,SAN FRANCISCO,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",141030227-AM16 +142662236,E26,14093145,Medical Incident,09/23/2014,09/23/2014,09/23/2014 03:09:49 PM,09/23/2014 03:10:08 PM,09/23/2014 03:10:36 PM,09/23/2014 03:11:42 PM,09/23/2014 03:14:29 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Code 3 Transport,09/23/2014 03:33:14 PM,0 Block of TOPAZ WAY,San Francisco,94131,B06,26,8154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7414994488003, -122.436549553342)",142662236-E26 +153142773,E03,15120748,Medical Incident,11/10/2015,11/10/2015,11/10/2015 05:01:08 PM,11/10/2015 05:01:59 PM,11/10/2015 05:02:43 PM,11/10/2015 05:03:51 PM,11/10/2015 05:06:22 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Code 2 Transport,11/10/2015 05:14:45 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",153142773-E03 +150900866,KM01,15034213,Medical Incident,03/31/2015,03/31/2015,03/31/2015 09:10:35 AM,03/31/2015 09:12:36 AM,03/31/2015 09:13:13 AM,03/31/2015 09:14:36 AM,03/31/2015 09:33:36 AM,03/31/2015 09:52:31 AM,03/31/2015 10:22:03 AM,Code 2 Transport,03/31/2015 10:56:47 AM,1500 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7310897557507, -122.389268390192)",150900866-KM01 +151800729,KM08,15068627,Medical Incident,06/29/2015,06/29/2015,06/29/2015 08:03:42 AM,06/29/2015 08:05:51 AM,06/29/2015 08:06:24 AM,06/29/2015 08:06:52 AM,06/29/2015 08:22:22 AM,06/29/2015 08:42:33 AM,06/29/2015 08:56:14 AM,Code 2 Transport,06/29/2015 09:29:59 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",151800729-KM08 +152553396,RC3,15097661,Traffic Collision,09/12/2015,09/12/2015,09/12/2015 09:00:20 PM,09/12/2015 09:02:34 PM,09/12/2015 09:03:15 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,No Merit,09/12/2015 09:07:52 PM,300 Block of DIVISION ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,2,10,Mission,"(37.7690697135105, -122.409528901583)",152553396-RC3 +142700440,67,14094561,Medical Incident,09/27/2014,09/26/2014,09/27/2014 02:36:12 AM,09/27/2014 02:36:30 AM,09/27/2014 02:38:51 AM,09/27/2014 02:38:51 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 02:39:49 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",142700440-67 +160951570,53,16037606,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:59:09 AM,04/04/2016 12:00:35 PM,04/04/2016 12:01:11 PM,04/04/2016 12:01:18 PM,04/04/2016 12:21:08 PM,04/04/2016 12:54:04 PM,04/04/2016 01:33:57 PM,Code 2 Transport,04/04/2016 02:21:34 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160951570-53 +141130342,E16,14038243,Medical Incident,04/23/2014,04/23/2014,04/23/2014 06:27:10 PM,04/23/2014 06:30:50 PM,04/23/2014 06:31:03 PM,04/23/2014 06:32:27 PM,04/23/2014 06:34:48 PM,04/25/2016 01:17:43 PM,04/25/2016 01:17:43 PM,Code 2 Transport,04/23/2014 07:25:38 PM,1500 Block of NORTH POINT ST,SAN FRANCISCO,94123,B04,16,3346,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8040848078318, -122.432688436131)",141130342-E16 +143181468,E29,14112599,Alarms,11/14/2014,11/14/2014,11/14/2014 11:41:26 AM,11/14/2014 11:42:34 AM,11/14/2014 11:43:34 AM,11/14/2014 11:44:39 AM,11/14/2014 11:47:44 AM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,Fire,11/14/2014 11:51:01 AM,1100 Block of HARRISON ST,San Francisco,94103,B03,8,2312,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7740164857371, -122.408093281105)",143181468-E29 +141312785,E22,14044689,Medical Incident,05/11/2014,05/11/2014,05/11/2014 08:13:33 PM,05/11/2014 08:15:27 PM,05/11/2014 08:20:22 PM,05/11/2014 08:21:59 PM,05/11/2014 08:23:47 PM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Code 2 Transport,05/11/2014 08:53:36 PM,1800 Block of IRVING ST,San Francisco,94122,B08,22,7424,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.763482287794, -122.477678638767)",141312785-E22 +150882260,RC3,15033639,Medical Incident,03/29/2015,03/29/2015,03/29/2015 03:00:11 PM,03/29/2015 03:00:57 PM,03/29/2015 03:06:47 PM,03/29/2015 03:06:47 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Cancelled,03/29/2015 03:12:29 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",150882260-RC3 +153261085,KM04,15125454,Medical Incident,11/22/2015,11/22/2015,11/22/2015 10:00:29 AM,11/22/2015 10:02:15 AM,11/22/2015 10:03:08 AM,11/22/2015 10:03:56 AM,11/22/2015 10:09:33 AM,11/22/2015 10:24:01 AM,11/22/2015 10:32:30 AM,Code 2 Transport,11/22/2015 11:12:40 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",153261085-KM04 +143040403,73,14107355,Medical Incident,10/31/2014,10/30/2014,10/31/2014 03:51:11 AM,10/31/2014 03:53:48 AM,10/31/2014 03:53:59 AM,10/31/2014 03:54:25 AM,10/31/2014 03:59:05 AM,10/31/2014 04:20:18 AM,10/31/2014 04:29:47 AM,Code 2 Transport,10/31/2014 04:44:20 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",143040403-73 +151842688,68,15070303,Medical Incident,07/03/2015,07/03/2015,07/03/2015 05:13:35 PM,07/03/2015 05:15:23 PM,07/03/2015 05:17:11 PM,07/03/2015 05:17:42 PM,07/03/2015 05:24:23 PM,07/03/2015 05:42:36 PM,07/03/2015 05:59:26 PM,Code 2 Transport,07/03/2015 06:29:36 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",151842688-68 +141531886,74,14052587,Medical Incident,06/02/2014,06/02/2014,06/02/2014 02:21:24 PM,06/02/2014 02:21:56 PM,06/02/2014 02:22:30 PM,06/02/2014 02:22:40 PM,06/02/2014 02:31:02 PM,06/02/2014 02:38:56 PM,06/02/2014 02:50:28 PM,Code 2 Transport,06/02/2014 03:13:03 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",141531886-74 +151430181,KM06,15054232,Medical Incident,05/23/2015,05/22/2015,05/23/2015 12:55:48 AM,05/23/2015 12:58:18 AM,05/23/2015 12:58:30 AM,05/23/2015 12:58:59 AM,05/23/2015 01:08:11 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Unable to Locate,05/23/2015 01:16:18 AM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",151430181-KM06 +160983716,55,16039113,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:19:47 PM,04/07/2016 09:19:47 PM,04/07/2016 09:20:04 PM,04/07/2016 09:20:44 PM,04/07/2016 09:30:38 PM,04/07/2016 09:50:59 PM,04/07/2016 10:00:21 PM,Code 2 Transport,04/07/2016 10:41:51 PM,0 Block of STATES ST,San Francisco,94114,B05,6,5176,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",160983716-55 +150242455,E18,15009387,Medical Incident,01/24/2015,01/24/2015,01/24/2015 05:35:32 PM,01/24/2015 05:37:50 PM,01/24/2015 05:38:08 PM,01/24/2015 05:38:59 PM,01/24/2015 05:42:03 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Code 2 Transport,01/24/2015 05:56:31 PM,1800 Block of 29TH AVE,San Francisco,94122,B08,18,7515,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7528389433197, -122.48704896526)",150242455-E18 +151080256,58,15040745,Medical Incident,04/18/2015,04/17/2015,04/18/2015 01:33:37 AM,04/18/2015 01:37:49 AM,04/18/2015 01:38:28 AM,04/18/2015 01:38:45 AM,04/18/2015 01:57:36 AM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Patient Declined Transport,04/18/2015 02:26:33 AM,100 Block of UTAH ST,San Francisco,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7677826861899, -122.406668803339)",151080256-58 +150391042,E03,15015119,Medical Incident,02/08/2015,02/08/2015,02/08/2015 08:46:08 AM,02/08/2015 08:48:41 AM,02/08/2015 08:48:51 AM,02/08/2015 08:49:59 AM,02/08/2015 08:51:54 AM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Code 2 Transport,02/08/2015 08:56:12 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",150391042-E03 +141862902,T05,14064540,Structure Fire,07/05/2014,07/05/2014,07/05/2014 06:50:56 PM,07/05/2014 06:50:56 PM,07/05/2014 06:51:14 PM,07/05/2014 06:52:09 PM,07/05/2014 06:52:55 PM,04/25/2016 01:16:23 PM,04/25/2016 01:16:23 PM,Fire,07/05/2014 06:53:19 PM,WEBSTER ST/GOLDEN GATE AV,San Francisco,94115,B05,5,3516,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7797827933333, -122.430233236395)",141862902-T05 +141983035,E03,14068665,Medical Incident,07/17/2014,07/17/2014,07/17/2014 07:19:35 PM,07/17/2014 07:21:56 PM,07/17/2014 07:24:46 PM,07/17/2014 07:25:59 PM,07/17/2014 07:29:43 PM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,No Merit,07/17/2014 07:33:18 PM,EDDY ST/LARKIN ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",141983035-E03 +152283049,56,15087116,Medical Incident,08/16/2015,08/16/2015,08/16/2015 06:44:03 PM,08/16/2015 06:48:54 PM,08/16/2015 06:49:20 PM,08/16/2015 06:49:27 PM,08/16/2015 07:00:10 PM,08/16/2015 07:19:37 PM,08/16/2015 07:24:23 PM,Code 3 Transport,08/16/2015 08:04:29 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",152283049-56 +152032058,T13,15077361,Medical Incident,07/22/2015,07/22/2015,07/22/2015 02:29:58 PM,07/22/2015 02:30:59 PM,07/22/2015 02:33:09 PM,07/22/2015 02:34:59 PM,07/22/2015 02:39:52 PM,04/25/2016 01:09:20 PM,04/25/2016 01:09:20 PM,Code 2 Transport,07/22/2015 02:39:58 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",152032058-T13 +161002152,AM06,16039823,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 04:00:55 PM,04/09/2016 04:02:09 PM,04/09/2016 04:16:17 PM,04/09/2016 04:16:50 PM,04/09/2016 04:47:29 PM,04/09/2016 04:57:37 PM,04/09/2016 05:17:04 PM,Code 2 Transport,04/09/2016 05:49:10 PM,0 Block of 0NB MARINA BL ON,Presidio,94123,B04,16,4323,2,2,2,false,Non Life-threatening,1,PRIVATE,3,4,2,Marina,"(37.8055133591227, -122.434812261281)",161002152-AM06 +142421377,B03,14084200,Alarms,08/30/2014,08/30/2014,08/30/2014 11:39:24 AM,08/30/2014 11:41:02 AM,08/30/2014 11:41:43 AM,08/30/2014 11:42:40 AM,08/30/2014 11:43:21 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Fire,08/30/2014 11:45:31 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",142421377-B03 +141482267,E28,14050894,Medical Incident,05/28/2014,05/28/2014,05/28/2014 03:43:34 PM,05/28/2014 03:44:11 PM,05/28/2014 03:45:19 PM,05/28/2014 03:46:31 PM,05/28/2014 03:49:20 PM,04/25/2016 01:17:05 PM,04/25/2016 01:17:05 PM,Code 2 Transport,05/28/2014 04:03:04 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,945,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8082633159603, -122.414972542075)",141482267-E28 +152750123,T18,15105154,Outside Fire,10/02/2015,10/01/2015,10/02/2015 12:49:26 AM,10/02/2015 12:51:21 AM,10/02/2015 12:52:09 AM,10/02/2015 12:54:05 AM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Fire,10/02/2015 12:59:42 AM,2100 Block of MARTIN LUTHER KING JR DR,San Francisco,94122,B08,23,7722,3,3,3,false,Fire,1,TRUCK,2,7,1,Golden Gate Park,"(37.7645636979158, -122.509108368188)",152750123-T18 +153180503,E06,15122147,Medical Incident,11/14/2015,11/13/2015,11/14/2015 03:50:43 AM,11/14/2015 03:50:43 AM,11/14/2015 03:52:02 AM,11/14/2015 03:54:08 AM,11/14/2015 03:56:35 AM,04/25/2016 01:07:13 PM,04/25/2016 01:07:13 PM,Code 3 Transport,11/14/2015 04:20:31 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",153180503-E06 +152831584,E05,15108655,Medical Incident,10/10/2015,10/10/2015,10/10/2015 11:43:02 AM,10/10/2015 11:44:03 AM,10/10/2015 11:44:18 AM,10/10/2015 11:45:02 AM,10/10/2015 11:50:10 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Code 2 Transport,10/10/2015 12:00:27 PM,1900 Block of GEARY BLVD,San Francisco,94115,B04,5,3645,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.784050435359, -122.43623257567)",152831584-E05 +152612429,RS1,15099807,Medical Incident,09/18/2015,09/18/2015,09/18/2015 03:12:08 PM,09/18/2015 03:12:52 PM,09/18/2015 03:13:26 PM,09/18/2015 03:15:55 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Medical Examiner,09/18/2015 03:19:54 PM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,E,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7764944808779, -122.411359138357)",152612429-RS1 +151111858,KM04,15041978,"Extrication / Entrapped (Machinery, Vehicle)",04/21/2015,04/21/2015,04/21/2015 01:09:15 PM,04/21/2015 01:10:08 PM,04/21/2015 01:10:27 PM,04/21/2015 01:11:01 PM,04/21/2015 01:17:49 PM,04/21/2015 01:39:01 PM,04/21/2015 01:51:45 PM,Code 2 Transport,04/21/2015 02:09:36 PM,1600 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,E,3,false,Fire,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7743083992665, -122.443590663405)",151111858-KM04 +160994094,78,16039543,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:42:41 PM,04/08/2016 11:44:35 PM,04/08/2016 11:45:57 PM,04/08/2016 11:46:31 PM,04/08/2016 11:55:14 PM,04/09/2016 12:30:59 AM,04/09/2016 12:42:14 AM,Code 2 Transport,04/09/2016 01:20:24 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160994094-78 +150563755,62,15021599,Medical Incident,02/25/2015,02/25/2015,02/25/2015 09:36:35 PM,02/25/2015 09:40:55 PM,02/25/2015 09:41:29 PM,02/25/2015 09:41:43 PM,02/25/2015 09:54:39 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Patient Declined Transport,02/25/2015 10:18:11 PM,CAPP ST/19TH ST,San Francisco,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7603010632565, -122.41811811905)",150563755-62 +152333364,B08,15088955,Smoke Investigation (Outside),08/21/2015,08/21/2015,08/21/2015 07:04:08 PM,08/21/2015 07:06:54 PM,08/21/2015 07:07:36 PM,08/21/2015 07:08:59 PM,08/21/2015 07:11:01 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Fire,08/21/2015 07:12:21 PM,0 Block of CRAGMONT AVE,San Francisco,94116,B08,40,7341,3,3,3,false,Alarm,1,CHIEF,1,8,7,Inner Sunset,"(37.7499093206117, -122.467372947313)",152333364-B08 +151173463,61,15044391,Medical Incident,04/27/2015,04/27/2015,04/27/2015 08:40:44 PM,04/27/2015 08:41:12 PM,04/27/2015 08:41:24 PM,04/27/2015 08:41:35 PM,04/27/2015 08:46:48 PM,04/27/2015 08:59:25 PM,04/27/2015 09:28:56 PM,Code 2 Transport,04/27/2015 09:39:02 PM,1500 Block of THOMAS AVE,San Francisco,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299273763086, -122.390314136294)",151173463-61 +150133458,AM18,15005318,Medical Incident,01/13/2015,01/13/2015,01/13/2015 08:21:34 PM,01/13/2015 08:23:25 PM,01/13/2015 08:25:47 PM,01/13/2015 08:26:36 PM,01/13/2015 08:36:10 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Patient Declined Transport,01/13/2015 08:38:53 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",150133458-AM18 +142150477,AM20,14074445,Traffic Collision,08/03/2014,08/02/2014,08/03/2014 03:30:22 AM,08/03/2014 03:33:21 AM,08/03/2014 03:34:05 AM,08/03/2014 03:38:21 AM,08/03/2014 03:41:28 AM,08/03/2014 03:52:22 AM,08/03/2014 04:11:28 AM,Code 3 Transport,08/03/2014 04:45:40 AM,WEBSTER ST/GEARY BL,San Francisco,94115,B04,5,3514,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,7,4,5,Japantown,"(37.7845682402461, -122.431204945516)",142150477-AM20 +143291488,77,14116640,Medical Incident,11/25/2014,11/25/2014,11/25/2014 11:35:51 AM,11/25/2014 11:37:18 AM,11/25/2014 11:37:48 AM,11/25/2014 11:38:22 AM,11/25/2014 11:59:39 AM,11/25/2014 11:59:42 AM,11/25/2014 12:16:01 PM,Code 2 Transport,11/25/2014 12:36:46 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",143291488-77 +141340252,E06,14045556,Medical Incident,05/14/2014,05/13/2014,05/14/2014 02:10:29 AM,05/14/2014 02:12:02 AM,05/14/2014 02:13:05 AM,05/14/2014 02:14:54 AM,05/14/2014 02:18:36 AM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,No Merit,05/14/2014 02:24:19 AM,SOUTH VAN NESS AV/12TH ST,San Francisco,94103,B02,36,5117,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7730534532281, -122.418618217459)",141340252-E06 +151643299,E03,15062883,Medical Incident,06/13/2015,06/13/2015,06/13/2015 08:29:11 PM,06/13/2015 08:29:31 PM,06/13/2015 08:29:52 PM,06/13/2015 08:30:22 PM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,Code 2 Transport,06/13/2015 08:35:12 PM,1700 Block of OCTAVIA ST,San Francisco,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,5,Pacific Heights,"(37.7880861497268, -122.426982013119)",151643299-E03 +143280192,89,14116119,Medical Incident,11/24/2014,11/23/2014,11/24/2014 01:34:17 AM,11/24/2014 01:34:17 AM,11/24/2014 01:34:34 AM,11/24/2014 01:34:53 AM,11/24/2014 01:41:14 AM,11/24/2014 01:58:03 AM,11/24/2014 02:43:40 AM,Code 2 Transport,11/24/2014 02:49:53 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",143280192-89 +152411300,KM13,15091832,Medical Incident,08/29/2015,08/29/2015,08/29/2015 09:48:12 AM,08/29/2015 09:50:04 AM,08/29/2015 09:50:14 AM,08/29/2015 09:50:53 AM,08/29/2015 10:00:51 AM,08/29/2015 10:08:45 AM,08/29/2015 10:39:56 AM,Code 2 Transport,08/29/2015 11:12:24 AM,1400 Block of WILLARD ST,San Francisco,94117,B05,12,5154,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7632959662513, -122.454025953231)",152411300-KM13 +152932389,82,15112615,Medical Incident,10/20/2015,10/20/2015,10/20/2015 03:08:45 PM,10/20/2015 03:10:32 PM,10/20/2015 03:11:17 PM,10/20/2015 03:11:47 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Code 2 Transport,10/20/2015 03:12:14 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",152932389-82 +152611136,E07,15099685,Structure Fire,09/18/2015,09/18/2015,09/18/2015 09:28:36 AM,09/18/2015 09:28:36 AM,09/18/2015 09:28:42 AM,09/18/2015 09:29:50 AM,09/18/2015 09:29:50 AM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/18/2015 09:39:47 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,ENGINE,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",152611136-E07 +150943361,E26,15035877,Medical Incident,04/04/2015,04/04/2015,04/04/2015 08:48:26 PM,04/04/2015 08:48:26 PM,04/04/2015 08:48:42 PM,04/04/2015 08:49:58 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 08:53:03 PM,SANCHEZ ST/VALLEY ST,San Francisco,94131,B06,11,5564,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Noe Valley,"(37.7443632395525, -122.428959474009)",150943361-E26 +152450550,74,15093321,Medical Incident,09/02/2015,09/01/2015,09/02/2015 06:38:57 AM,09/02/2015 06:41:00 AM,09/02/2015 06:41:14 AM,09/02/2015 06:42:49 AM,09/02/2015 06:55:48 AM,09/02/2015 07:02:20 AM,09/02/2015 07:05:24 AM,Code 2 Transport,09/02/2015 07:49:40 AM,2500 Block of FILLMORE ST,San Francisco,94115,B04,38,3546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.792900812087, -122.434714045412)",152450550-74 +160970070,60,16038245,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:27:45 AM,04/06/2016 12:28:55 AM,04/06/2016 12:29:06 AM,04/06/2016 12:30:15 AM,04/06/2016 12:37:48 AM,04/06/2016 12:47:55 AM,04/06/2016 01:20:13 AM,Code 2 Transport,04/06/2016 01:40:21 AM,100 Block of CLAREMONT BL,San Francisco,94127,B08,39,8613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7425820345941, -122.463786718805)",160970070-60 +143640740,T03,14130110,Structure Fire,12/30/2014,12/30/2014,12/30/2014 08:48:47 AM,12/30/2014 08:48:47 AM,12/30/2014 08:48:58 AM,12/30/2014 08:50:10 AM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 08:54:24 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",143640740-T03 +143311524,T10,14117382,Structure Fire,11/27/2014,11/27/2014,11/27/2014 02:05:40 PM,11/27/2014 02:06:38 PM,11/27/2014 02:07:25 PM,11/27/2014 02:08:59 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Fire,11/27/2014 02:14:42 PM,400 Block of 35TH AVE,San Francisco,94121,B07,34,7247,3,3,3,false,Alarm,1,TRUCK,7,7,1,Outer Richmond,"(37.7805557790228, -122.495589494256)",143311524-T10 +142672759,RC3,14093594,Medical Incident,09/24/2014,09/24/2014,09/24/2014 04:55:36 PM,09/24/2014 04:57:48 PM,09/24/2014 04:59:58 PM,09/24/2014 05:01:45 PM,09/24/2014 05:12:09 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Medical Examiner,09/24/2014 05:48:20 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7850811742657, -122.406497767804)",142672759-RC3 +150903297,E38,15034406,Gas Leak (Natural and LP Gases),03/31/2015,03/31/2015,03/31/2015 07:58:20 PM,03/31/2015 07:58:20 PM,03/31/2015 07:58:36 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Fire,03/31/2015 08:00:00 PM,2200 Block of STEINER ST,San Francisco,94115,B04,38,3615,3,3,3,false,Alarm,1,ENGINE,4,4,2,Pacific Heights,"(37.7900741941349, -122.435692772979)",150903297-E38 +150010555,PT03,15000113,Medical Incident,01/01/2015,12/31/2014,01/01/2015 02:07:11 AM,01/01/2015 02:07:11 AM,01/01/2015 02:09:08 AM,01/01/2015 02:09:29 AM,01/01/2015 02:17:04 AM,01/01/2015 02:24:24 AM,01/01/2015 02:37:22 AM,Code 2 Transport,01/01/2015 03:08:16 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",150010555-PT03 +150782638,55,15029968,Medical Incident,03/19/2015,03/19/2015,03/19/2015 04:10:25 PM,03/19/2015 04:11:59 PM,03/19/2015 04:12:28 PM,03/19/2015 04:15:38 PM,03/19/2015 04:15:38 PM,03/19/2015 04:32:12 PM,03/19/2015 04:51:12 PM,Code 2 Transport,03/19/2015 05:34:22 PM,18TH ST/EUREKA ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7606923184407, -122.438265380857)",150782638-55 +160932074,E43,16036900,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:45:09 PM,04/02/2016 02:45:24 PM,04/02/2016 02:45:42 PM,04/02/2016 02:45:57 PM,04/02/2016 02:47:39 PM,04/02/2016 03:36:12 PM,04/02/2016 04:16:24 PM,Code 3 Transport,04/02/2016 04:36:05 PM,600 Block of MOSCOW ST,San Francisco,94112,B09,43,6162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7173988817758, -122.430625202274)",160932074-E43 +160931776,KM08,16036862,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 01:18:00 PM,04/02/2016 01:18:00 PM,04/02/2016 01:20:15 PM,04/02/2016 01:22:25 PM,04/02/2016 01:30:43 PM,04/02/2016 01:45:37 PM,04/02/2016 01:55:26 PM,Against Medical Advice,04/02/2016 02:59:29 PM,4000 Block of 26TH ST,San Francisco,94131,B06,11,5546,2,2,2,false,,1,PRIVATE,4,6,8,Noe Valley,"(37.7482411048651, -122.430446357124)",160931776-KM08 +150603932,AM16,15023108,Medical Incident,03/01/2015,03/01/2015,03/01/2015 11:35:02 PM,03/01/2015 11:35:02 PM,03/01/2015 11:40:33 PM,03/01/2015 11:40:50 PM,03/01/2015 11:43:30 PM,03/01/2015 11:53:41 PM,03/02/2015 12:01:14 AM,Code 2 Transport,03/02/2015 12:24:56 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",150603932-AM16 +150112147,E28,15004397,Structure Fire,01/11/2015,01/11/2015,01/11/2015 03:08:46 PM,01/11/2015 03:08:46 PM,01/11/2015 03:08:58 PM,01/11/2015 03:11:25 PM,01/11/2015 03:12:40 PM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Fire,01/11/2015 03:13:10 PM,LEAVENWORTH ST/NORTH POINT ST,San Francisco,94133,B01,28,1525,3,3,3,false,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.8059315195401, -122.418718266695)",150112147-E28 +142753876,74,14096676,Medical Incident,10/02/2014,10/02/2014,10/02/2014 09:40:19 PM,10/02/2014 09:43:21 PM,10/02/2014 09:43:52 PM,10/02/2014 09:44:15 PM,10/02/2014 09:48:06 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Unable to Locate,10/02/2014 09:54:15 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142753876-74 +141322958,E10,14045055,Medical Incident,05/12/2014,05/12/2014,05/12/2014 07:29:00 PM,05/12/2014 07:30:04 PM,05/12/2014 07:31:48 PM,05/12/2014 07:33:17 PM,05/12/2014 07:37:08 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/12/2014 08:06:57 PM,600 Block of CENTRAL AVE,San Francisco,94117,B05,21,4361,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.7755599914695, -122.444618039254)",141322958-E10 +142440358,E01,14084880,Medical Incident,09/01/2014,08/31/2014,09/01/2014 02:32:05 AM,09/01/2014 02:36:53 AM,09/01/2014 02:37:06 AM,09/01/2014 02:39:05 AM,09/01/2014 02:40:50 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 2 Transport,09/01/2014 02:44:23 AM,MISSION ST/5TH ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",142440358-E01 +160980397,73,16038771,Traffic Collision,04/07/2016,04/06/2016,04/07/2016 03:42:55 AM,04/07/2016 03:42:55 AM,04/07/2016 03:43:11 AM,04/07/2016 03:43:25 AM,04/07/2016 03:59:25 AM,04/07/2016 03:59:29 AM,04/07/2016 04:14:29 AM,Code 2 Transport,04/07/2016 04:31:55 AM,17TH ST/MISSION ST,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7634292740134, -122.419512736792)",160980397-73 +160972544,KM13,16038476,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:56:36 PM,04/06/2016 02:57:24 PM,04/06/2016 02:58:17 PM,04/06/2016 02:58:51 PM,04/06/2016 02:59:12 PM,04/06/2016 03:26:34 PM,04/06/2016 03:50:27 PM,Code 2 Transport,04/06/2016 04:38:13 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160972544-KM13 +141592476,74,14054902,Medical Incident,06/08/2014,06/08/2014,06/08/2014 06:09:02 PM,06/08/2014 06:11:23 PM,06/08/2014 06:12:10 PM,06/08/2014 06:12:17 PM,06/08/2014 06:22:28 PM,06/08/2014 06:49:11 PM,06/08/2014 07:07:34 PM,Code 2 Transport,06/08/2014 07:42:03 PM,500 Block of SAN JOSE AVE,San Francisco,94110,B06,11,555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.746836737093, -122.421621453992)",141592476-74 +151073682,71,15040682,Medical Incident,04/17/2015,04/17/2015,04/17/2015 09:10:45 PM,04/17/2015 09:14:10 PM,04/17/2015 09:14:43 PM,04/17/2015 09:15:49 PM,04/17/2015 09:25:06 PM,04/17/2015 09:44:20 PM,04/17/2015 10:05:22 PM,Code 2 Transport,04/17/2015 10:29:36 PM,800 Block of FRONT ST,San Francisco,94111,B01,13,1144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7991965032191, -122.400038115304)",151073682-71 +150350515,63,15013364,Medical Incident,02/04/2015,02/03/2015,02/04/2015 06:05:23 AM,02/04/2015 06:07:10 AM,02/04/2015 06:11:26 AM,02/04/2015 06:11:26 AM,02/04/2015 06:16:45 AM,02/04/2015 06:34:07 AM,02/04/2015 06:39:38 AM,Code 3 Transport,02/04/2015 07:18:35 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",150350515-63 +150142509,62,15005620,Medical Incident,01/14/2015,01/14/2015,01/14/2015 04:16:01 PM,01/14/2015 04:17:15 PM,01/14/2015 04:17:31 PM,01/14/2015 04:18:31 PM,01/14/2015 04:25:11 PM,01/14/2015 04:37:24 PM,01/14/2015 05:09:11 PM,Code 2 Transport,01/14/2015 05:28:10 PM,MARKET ST/MASON ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",150142509-62 +152053657,T17,15078255,Structure Fire,07/24/2015,07/24/2015,07/24/2015 08:57:42 PM,07/24/2015 08:57:42 PM,07/24/2015 08:57:59 PM,07/24/2015 08:59:37 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Fire,07/24/2015 09:05:16 PM,HUDSON AV/CASHMERE ST,San Francisco,94124,B10,25,652,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",152053657-T17 +150392413,KM12,15015249,Medical Incident,02/08/2015,02/08/2015,02/08/2015 04:10:06 PM,02/08/2015 04:12:03 PM,02/08/2015 04:12:13 PM,02/08/2015 04:12:48 PM,02/08/2015 04:22:18 PM,02/08/2015 04:47:58 PM,02/08/2015 04:59:24 PM,Code 2 Transport,02/08/2015 05:51:38 PM,1600 Block of BROADWAY,San Francisco,94123,B04,38,3232,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7956860710912, -122.42424620746)",150392413-KM12 +150552338,E03,15021156,Medical Incident,02/24/2015,02/24/2015,02/24/2015 03:06:28 PM,02/24/2015 03:07:42 PM,02/24/2015 03:08:17 PM,02/24/2015 03:08:39 PM,02/24/2015 03:10:16 PM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,Patient Declined Transport,02/24/2015 03:16:24 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",150552338-E03 +142563911,B06,14089622,Alarms,09/13/2014,09/13/2014,09/13/2014 11:42:39 PM,09/13/2014 11:44:10 PM,09/13/2014 11:47:06 PM,09/13/2014 11:48:23 PM,09/13/2014 11:50:14 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 11:57:39 PM,200 Block of DAY ST,San Francisco,94131,B06,11,5563,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7427760488742, -122.427694653316)",142563911-B06 +152203338,E02,15083968,Medical Incident,08/08/2015,08/08/2015,08/08/2015 08:28:24 PM,08/08/2015 08:28:50 PM,08/08/2015 08:29:57 PM,08/08/2015 08:30:14 PM,08/08/2015 08:33:53 PM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Code 2 Transport,08/08/2015 08:42:58 PM,VAN NESS AV/BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Russian Hill,"(37.7957371093016, -122.423413055255)",152203338-E02 +151120228,T01,15042194,Alarms,04/22/2015,04/21/2015,04/22/2015 02:21:46 AM,04/22/2015 02:23:02 AM,04/22/2015 02:23:10 AM,04/22/2015 02:24:50 AM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,Fire,04/22/2015 02:28:37 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",151120228-T01 +160931085,85,16036783,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:47:42 AM,04/02/2016 09:53:02 AM,04/02/2016 09:53:14 AM,04/02/2016 09:53:59 AM,04/02/2016 10:02:54 AM,04/02/2016 10:11:20 AM,04/02/2016 10:46:17 AM,Code 3 Transport,04/02/2016 11:28:37 AM,900 Block of EDINBURGH ST,San Francisco,94112,B09,43,6174,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",160931085-85 +143180476,82,14112522,Medical Incident,11/14/2014,11/13/2014,11/14/2014 05:56:04 AM,11/14/2014 05:57:12 AM,11/14/2014 06:04:04 AM,11/14/2014 06:04:04 AM,11/14/2014 06:12:32 AM,11/14/2014 06:26:18 AM,11/14/2014 06:45:19 AM,Code 3 Transport,11/14/2014 07:02:24 AM,200 Block of RIVOLI ST,San Francisco,94117,B05,12,5257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7622000098518, -122.451405661053)",143180476-82 +142371473,KM15,14082407,Medical Incident,08/25/2014,08/25/2014,08/25/2014 11:44:19 AM,08/25/2014 11:45:15 AM,08/25/2014 11:46:01 AM,08/25/2014 11:46:34 AM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,Medical Examiner,08/25/2014 11:52:38 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",142371473-KM15 +153232486,79,15124329,Traffic Collision,11/19/2015,11/19/2015,11/19/2015 03:32:58 PM,11/19/2015 03:32:58 PM,11/19/2015 03:34:38 PM,11/19/2015 03:34:38 PM,11/19/2015 03:35:46 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Patient Declined Transport,11/19/2015 04:04:11 PM,1200 Block of EDDY ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",153232486-79 +153293107,E13,15126735,Medical Incident,11/25/2015,11/25/2015,11/25/2015 06:01:24 PM,11/25/2015 06:03:24 PM,11/25/2015 06:04:42 PM,11/25/2015 06:05:57 PM,11/25/2015 06:10:12 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Code 2 Transport,11/25/2015 06:35:55 PM,800 Block of GRANT AVE,San Francisco,94108,B01,13,1313,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7947123862364, -122.406321854883)",153293107-E13 +142951854,E22,14104034,Structure Fire,10/22/2014,10/22/2014,10/22/2014 01:35:43 PM,10/22/2014 01:36:32 PM,10/22/2014 01:36:56 PM,10/22/2014 01:37:53 PM,10/22/2014 01:41:18 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Fire,10/22/2014 01:43:59 PM,500 Block of 28TH AVE,San Francisco,94121,B07,14,7226,3,3,3,false,Alarm,1,ENGINE,4,7,1,Outer Richmond,"(37.7789805573402, -122.487944517456)",142951854-E22 +143561751,E01,14127341,Medical Incident,12/22/2014,12/22/2014,12/22/2014 12:52:56 PM,12/22/2014 12:54:50 PM,12/22/2014 12:58:23 PM,12/22/2014 12:58:40 PM,12/22/2014 12:59:46 PM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,Code 2 Transport,12/22/2014 01:12:21 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",143561751-E01 +150912934,B07,15034681,Alarms,04/01/2015,04/01/2015,04/01/2015 05:46:51 PM,04/01/2015 05:47:47 PM,04/01/2015 05:49:40 PM,04/01/2015 05:50:50 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/01/2015 05:57:06 PM,100 Block of HUGO ST,San Francisco,94122,B05,12,7321,3,3,3,false,Alarm,1,CHIEF,3,5,5,Inner Sunset,"(37.7653353938771, -122.459420620518)",150912934-B07 +142322313,73,14080646,Medical Incident,08/20/2014,08/20/2014,08/20/2014 03:18:35 PM,08/20/2014 03:20:21 PM,08/20/2014 03:23:48 PM,08/20/2014 03:23:48 PM,08/20/2014 03:28:20 PM,08/20/2014 04:00:20 PM,08/20/2014 04:00:28 PM,Code 2 Transport,08/20/2014 04:30:18 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",142322313-73 +143361709,85,14119112,Medical Incident,12/02/2014,12/02/2014,12/02/2014 01:41:23 PM,12/02/2014 01:43:16 PM,12/02/2014 01:49:40 PM,12/02/2014 01:49:40 PM,12/02/2014 02:00:26 PM,12/02/2014 02:13:09 PM,12/02/2014 02:38:30 PM,Code 2 Transport,12/02/2014 02:48:58 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",143361709-85 +142053347,T18,14071125,Structure Fire,07/24/2014,07/24/2014,07/24/2014 08:15:21 PM,07/24/2014 08:15:21 PM,07/24/2014 08:15:27 PM,07/24/2014 08:16:36 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Fire,07/24/2014 08:20:10 PM,21ST AV/JUDAH ST,San Francisco,94122,B08,22,7426,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",142053347-T18 +160922243,89,16036494,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:27:33 PM,04/01/2016 03:30:12 PM,04/01/2016 03:31:04 PM,04/01/2016 03:33:07 PM,04/01/2016 03:41:28 PM,04/01/2016 03:52:04 PM,04/01/2016 03:58:11 PM,Code 3 Transport,04/01/2016 04:40:41 PM,200 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7845991269502, -122.411114048741)",160922243-89 +142211863,D2,14076737,Structure Fire,08/09/2014,08/09/2014,08/09/2014 01:32:58 PM,08/09/2014 01:39:00 PM,08/09/2014 01:39:22 PM,08/09/2014 01:40:08 PM,08/09/2014 01:42:24 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Fire,08/09/2014 01:49:56 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,CHIEF,4,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",142211863-D2 +152601788,E28,15099362,Medical Incident,09/17/2015,09/17/2015,09/17/2015 12:41:19 PM,09/17/2015 12:42:50 PM,09/17/2015 12:43:41 PM,09/17/2015 12:45:38 PM,09/17/2015 12:47:22 PM,09/17/2015 01:11:04 PM,04/25/2016 01:08:18 PM,Code 3 Transport,09/17/2015 01:33:19 PM,100 Block of FRANCISCO ST,San Francisco,94133,B01,28,1255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8054738067872, -122.407570127181)",152601788-E28 +150582906,E16,15022266,Medical Incident,02/27/2015,02/27/2015,02/27/2015 06:05:24 PM,02/27/2015 06:07:15 PM,02/27/2015 06:07:48 PM,02/27/2015 06:09:09 PM,02/27/2015 06:11:24 PM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Code 2 Transport,02/27/2015 06:22:30 PM,2500 Block of VAN NESS AVE,San Francisco,94123,B04,16,3234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7989967483908, -122.424247224738)",150582906-E16 +143151428,KM11,14111546,Medical Incident,11/11/2014,11/11/2014,11/11/2014 12:16:12 PM,11/11/2014 12:17:14 PM,11/11/2014 12:17:55 PM,11/11/2014 12:19:24 PM,11/11/2014 12:22:49 PM,11/11/2014 12:46:54 PM,11/11/2014 12:58:13 PM,Code 2 Transport,11/11/2014 01:30:17 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",143151428-KM11 +161002522,KM12,16039868,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:51:22 PM,04/09/2016 05:51:56 PM,04/09/2016 05:52:12 PM,04/09/2016 05:53:40 PM,04/09/2016 05:57:09 PM,04/09/2016 06:11:42 PM,04/09/2016 06:22:51 PM,Code 2 Transport,04/09/2016 06:45:15 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",161002522-KM12 +150301268,E03,15011517,Alarms,01/30/2015,01/30/2015,01/30/2015 10:15:04 AM,01/30/2015 10:16:21 AM,01/30/2015 10:16:27 AM,01/30/2015 10:18:29 AM,01/30/2015 10:20:48 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Fire,01/30/2015 10:24:13 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",150301268-E03 +151080063,E06,15040730,Other,04/18/2015,04/17/2015,04/18/2015 12:21:01 AM,04/18/2015 12:23:59 AM,04/18/2015 12:24:10 AM,04/18/2015 12:26:36 AM,04/18/2015 12:28:23 AM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Fire,04/18/2015 12:30:19 AM,VALENCIA ST/15TH ST,San Francisco,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7665395771344, -122.422043813368)",151080063-E06 +142500284,E03,14087035,Medical Incident,09/07/2014,09/06/2014,09/07/2014 01:38:28 AM,09/07/2014 01:40:44 AM,09/07/2014 01:42:06 AM,09/07/2014 01:43:59 AM,09/07/2014 01:46:45 AM,04/25/2016 01:15:14 PM,04/25/2016 01:15:14 PM,Code 2 Transport,09/07/2014 01:59:39 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",142500284-E03 +160953857,76,16037803,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:51:24 PM,04/04/2016 09:52:25 PM,04/04/2016 09:52:43 PM,04/04/2016 09:53:12 PM,04/04/2016 09:55:56 PM,04/04/2016 10:08:31 PM,04/04/2016 10:16:04 PM,Code 2 Transport,04/04/2016 10:42:30 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160953857-76 +152110317,RC3,15080226,Structure Fire,07/30/2015,07/29/2015,07/30/2015 03:19:53 AM,07/30/2015 03:20:20 AM,07/30/2015 03:24:36 AM,07/30/2015 03:24:40 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 04:27:22 AM,2300 Block of CASTRO ST,San Francisco,94131,B06,26,5565,3,3,3,true,Fire,2,RESCUE CAPTAIN,20,6,8,Glen Park,"(37.742895594432, -122.433422735149)",152110317-RC3 +160962001,81,16038033,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:39:38 PM,04/05/2016 01:40:52 PM,04/05/2016 01:42:29 PM,04/05/2016 01:42:39 PM,04/05/2016 01:57:34 PM,04/05/2016 02:13:59 PM,04/05/2016 02:45:24 PM,Code 2 Transport,04/05/2016 03:10:20 PM,600 Block of MASON ST,Presidio,94108,B99,51,4613,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",160962001-81 +152083616,E03,15079417,Medical Incident,07/27/2015,07/27/2015,07/27/2015 09:25:04 PM,07/27/2015 09:25:04 PM,07/27/2015 09:27:55 PM,07/27/2015 09:29:42 PM,07/27/2015 09:33:29 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,No Merit,07/27/2015 09:40:01 PM,300 Block of HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7839909656227, -122.415908808889)",152083616-E03 +160983579,AM16,16039098,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:31:00 PM,04/07/2016 08:31:21 PM,04/07/2016 08:31:30 PM,04/07/2016 08:32:12 PM,04/07/2016 08:35:17 PM,04/07/2016 09:06:57 PM,04/07/2016 09:21:05 PM,Code 2 Transport,04/07/2016 10:00:26 PM,100 Block of 3RD AVE,San Francisco,94118,B07,31,7115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Inner Richmond,"(37.7861127461326, -122.461350652607)",160983579-AM16 +151062382,68,15040104,Medical Incident,04/16/2015,04/16/2015,04/16/2015 03:09:25 PM,04/16/2015 03:09:25 PM,04/16/2015 03:10:55 PM,04/16/2015 03:11:06 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,No Merit,04/16/2015 03:11:24 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5279,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7674693820862, -122.419972358911)",151062382-68 +142491657,E03,14086791,Medical Incident,09/06/2014,09/06/2014,09/06/2014 12:44:35 PM,09/06/2014 12:45:54 PM,09/06/2014 12:46:19 PM,09/06/2014 12:47:50 PM,09/06/2014 12:48:38 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/06/2014 12:54:49 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",142491657-E03 +142070459,73,14071588,Traffic Collision,07/26/2014,07/25/2014,07/26/2014 02:50:45 AM,07/26/2014 02:50:45 AM,07/26/2014 02:51:09 AM,07/26/2014 02:52:07 AM,07/26/2014 03:21:45 AM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Patient Declined Transport,07/26/2014 03:28:13 AM,3800 Block of MARKET ST,San Francisco,94131,B06,24,5276,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Twin Peaks,"(37.7513440923832, -122.443179216565)",142070459-73 +151672715,62,15063957,Structure Fire,06/16/2015,06/16/2015,06/16/2015 06:13:59 PM,06/16/2015 06:13:59 PM,06/16/2015 06:19:12 PM,06/16/2015 06:19:21 PM,06/16/2015 06:22:24 PM,06/16/2015 06:31:21 PM,06/16/2015 06:40:54 PM,Code 2 Transport,06/16/2015 07:01:26 PM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,3,3,3,true,Alarm,1,MEDIC,3,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",151672715-62 +143172714,E22,14112363,Medical Incident,11/13/2014,11/13/2014,11/13/2014 05:19:41 PM,11/13/2014 05:20:05 PM,11/13/2014 05:20:19 PM,11/13/2014 05:21:23 PM,11/13/2014 05:23:36 PM,04/25/2016 01:14:01 PM,04/25/2016 01:14:01 PM,Cancelled,11/13/2014 05:24:09 PM,25TH AV/IRVING ST,San Francisco,94122,B08,22,7452,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7632786301806, -122.483553556446)",143172714-E22 +160931918,62,16036885,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:54:12 PM,04/02/2016 01:55:34 PM,04/02/2016 02:10:47 PM,04/02/2016 02:10:56 PM,04/02/2016 02:20:30 PM,04/02/2016 02:38:18 PM,04/02/2016 02:41:04 PM,Code 3 Transport,04/02/2016 03:09:39 PM,1600 Block of VALENCIA ST,San Francisco,94110,B06,11,5611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7473464894373, -122.420273560089)",160931918-62 +152161444,E12,15082212,Alarms,08/04/2015,08/04/2015,08/04/2015 11:53:50 AM,08/04/2015 11:55:32 AM,08/04/2015 11:57:28 AM,08/04/2015 11:59:15 AM,08/04/2015 12:03:48 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/04/2015 12:13:10 PM,200 Block of UPPER TER,San Francisco,94117,B05,12,5165,3,3,3,true,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.76292533177, -122.445175477305)",152161444-E12 +160950255,71,16037497,Medical Incident,04/04/2016,04/03/2016,04/04/2016 03:20:27 AM,04/04/2016 03:20:27 AM,04/04/2016 03:20:40 AM,04/04/2016 03:20:58 AM,04/04/2016 03:32:09 AM,04/04/2016 03:47:08 AM,04/04/2016 04:07:18 AM,Code 2 Transport,04/04/2016 04:29:49 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160950255-71 +161002384,AM08,16039849,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:11:20 PM,04/09/2016 05:11:47 PM,04/09/2016 05:12:02 PM,04/09/2016 05:13:35 PM,04/09/2016 05:20:43 PM,04/09/2016 05:38:39 PM,04/09/2016 05:47:27 PM,Code 2 Transport,04/09/2016 06:20:04 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",161002384-AM08 +141883580,E08,14065322,Traffic Collision,07/07/2014,07/07/2014,07/07/2014 09:54:52 PM,07/07/2014 09:54:52 PM,07/07/2014 09:55:18 PM,07/07/2014 09:56:41 PM,07/07/2014 09:58:31 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/07/2014 10:08:17 PM,TOWNSEND ST/7TH ST,San Francisco,94107,B03,29,2275,A,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7718171244689, -122.401656683321)",141883580-E08 +143621189,E11,14129478,Medical Incident,12/28/2014,12/28/2014,12/28/2014 11:09:46 AM,12/28/2014 11:09:46 AM,12/28/2014 11:10:05 AM,12/28/2014 11:11:01 AM,12/28/2014 11:13:14 AM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Code 2 Transport,12/28/2014 11:20:57 AM,VALLEY ST/CHURCH ST,San Francisco,94131,B06,11,5576,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Noe Valley,"(37.7444974074355, -122.426746185523)",143621189-E11 +152171976,KM11,15082618,Medical Incident,08/05/2015,08/05/2015,08/05/2015 01:35:20 PM,08/05/2015 01:36:40 PM,08/05/2015 01:36:58 PM,08/05/2015 01:42:16 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 01:37:59 PM,SUTTER ST/GRANT AV,San Francisco,94108,B01,13,1242,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,7,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",152171976-KM11 +142570499,E03,14089673,Medical Incident,09/14/2014,09/13/2014,09/14/2014 03:23:09 AM,09/14/2014 03:25:14 AM,09/14/2014 03:28:35 AM,09/14/2014 03:28:35 AM,09/14/2014 03:30:45 AM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/14/2014 03:37:41 AM,600 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7875326960335, -122.413256140114)",142570499-E03 +141813357,74,14062821,Medical Incident,06/30/2014,06/30/2014,06/30/2014 08:56:59 PM,06/30/2014 08:56:59 PM,06/30/2014 08:57:16 PM,06/30/2014 08:57:23 PM,06/30/2014 09:04:06 PM,06/30/2014 09:16:50 PM,06/30/2014 09:19:57 PM,Code 2 Transport,06/30/2014 09:44:59 PM,MCALLISTER ST/LARKIN ST,San Francisco,94102,B02,3,1553,B,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",141813357-74 +152771058,T06,15106147,Medical Incident,10/04/2015,10/04/2015,10/04/2015 09:19:38 AM,10/04/2015 09:21:03 AM,10/04/2015 09:21:36 AM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Code 2 Transport,10/04/2015 09:22:51 AM,300 Block of DOLORES ST,San Francisco,94110,B02,6,5251,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,2,8,Mission,"(37.7635158382169, -122.426118705944)",152771058-T06 +150750499,64,15028660,Medical Incident,03/16/2015,03/15/2015,03/16/2015 06:45:05 AM,03/16/2015 06:46:56 AM,03/16/2015 06:47:09 AM,03/16/2015 06:47:23 AM,03/16/2015 06:50:47 AM,03/16/2015 07:13:09 AM,03/16/2015 07:52:03 AM,Code 2 Transport,03/16/2015 08:03:37 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",150750499-64 +153260558,60,15125395,Medical Incident,11/22/2015,11/21/2015,11/22/2015 04:57:01 AM,11/22/2015 04:59:10 AM,11/22/2015 04:59:23 AM,11/22/2015 04:59:36 AM,11/22/2015 05:03:44 AM,11/22/2015 05:23:21 AM,11/22/2015 05:32:09 AM,Code 2 Transport,11/22/2015 05:55:51 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",153260558-60 +152732248,88,15104553,Medical Incident,09/30/2015,09/30/2015,09/30/2015 03:06:54 PM,09/30/2015 03:10:23 PM,09/30/2015 03:10:39 PM,09/30/2015 03:11:00 PM,09/30/2015 03:28:40 PM,09/30/2015 03:42:17 PM,09/30/2015 03:53:08 PM,Code 2 Transport,09/30/2015 04:04:39 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",152732248-88 +151360261,79,15051526,Medical Incident,05/16/2015,05/15/2015,05/16/2015 01:46:50 AM,05/16/2015 01:46:50 AM,05/16/2015 01:46:55 AM,05/16/2015 01:47:05 AM,05/16/2015 01:50:41 AM,05/16/2015 01:53:09 AM,05/16/2015 02:01:08 AM,Code 2 Transport,05/16/2015 02:26:31 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",151360261-79 +161001540,KM06,16039752,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:34:41 PM,04/09/2016 12:37:33 PM,04/09/2016 12:38:06 PM,04/09/2016 12:38:33 PM,04/09/2016 12:51:37 PM,04/09/2016 01:13:00 PM,04/09/2016 01:38:31 PM,Code 2 Transport,04/09/2016 02:16:54 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",161001540-KM06 +160993483,88,16039464,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:37:21 PM,04/08/2016 08:37:21 PM,04/08/2016 08:37:30 PM,04/08/2016 08:37:38 PM,04/08/2016 08:42:25 PM,04/08/2016 08:55:33 PM,04/08/2016 09:01:18 PM,Code 2 Transport,04/08/2016 09:45:32 PM,1700 Block of FULTON ST,San Francisco,94117,B05,21,4463,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",160993483-88 +160991776,64,16039307,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:29:12 PM,04/08/2016 01:29:48 PM,04/08/2016 01:30:39 PM,04/08/2016 01:30:48 PM,04/08/2016 01:36:56 PM,04/08/2016 01:59:13 PM,04/08/2016 02:24:26 PM,Code 2 Transport,04/08/2016 03:02:04 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160991776-64 +150813437,71,15031193,Medical Incident,03/22/2015,03/22/2015,03/22/2015 09:23:01 PM,03/22/2015 09:23:01 PM,03/22/2015 09:23:21 PM,03/22/2015 09:23:34 PM,03/22/2015 09:42:07 PM,03/22/2015 09:57:44 PM,03/22/2015 10:22:26 PM,Code 2 Transport,03/22/2015 11:26:16 PM,400 Block of RANDOLPH ST,San Francisco,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7142217076678, -122.466645826345)",150813437-71 +143130439,70,14110778,Medical Incident,11/09/2014,11/08/2014,11/09/2014 02:36:57 AM,11/09/2014 02:38:52 AM,11/09/2014 02:45:02 AM,11/09/2014 02:45:52 AM,11/09/2014 02:50:11 AM,11/09/2014 03:00:03 AM,11/09/2014 03:30:21 AM,Code 2 Transport,11/09/2014 03:35:10 AM,PINE ST/LEAVENWORTH ST,San Francisco,94109,B01,41,1464,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7902542983068, -122.415559086188)",143130439-70 +160983043,68,16039046,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:58:04 PM,04/07/2016 06:00:21 PM,04/07/2016 06:00:37 PM,04/07/2016 06:01:20 PM,04/07/2016 06:14:49 PM,04/07/2016 06:23:55 PM,04/07/2016 06:51:15 PM,Code 2 Transport,04/07/2016 07:48:48 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160983043-68 +160931760,67,16036857,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:12:12 PM,04/02/2016 01:14:07 PM,04/02/2016 01:14:32 PM,04/02/2016 01:14:38 PM,04/02/2016 01:20:57 PM,04/02/2016 01:35:08 PM,04/02/2016 02:05:55 PM,Code 2 Transport,04/02/2016 02:34:43 PM,JONES ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1455,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",160931760-67 +142270753,89,14078752,Medical Incident,08/15/2014,08/14/2014,08/15/2014 07:49:02 AM,08/15/2014 07:50:35 AM,08/15/2014 07:51:39 AM,08/15/2014 07:51:57 AM,08/15/2014 07:57:41 AM,08/15/2014 08:12:50 AM,08/15/2014 08:20:52 AM,Code 2 Transport,08/15/2014 09:06:02 AM,5900 Block of GEARY BLVD,San Francisco,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7800403908757, -122.483118050539)",142270753-89 +152464055,E05,15094028,Alarms,09/03/2015,09/03/2015,09/03/2015 10:18:39 PM,09/03/2015 10:20:28 PM,09/03/2015 10:20:49 PM,09/03/2015 10:21:42 PM,09/03/2015 10:23:38 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Fire,09/03/2015 10:41:39 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",152464055-E05 +143523625,E05,14125919,Traffic Collision,12/18/2014,12/18/2014,12/18/2014 08:35:46 PM,12/18/2014 08:35:46 PM,12/18/2014 08:36:04 PM,12/18/2014 08:37:04 PM,12/18/2014 08:38:36 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Code 2 Transport,12/18/2014 08:49:16 PM,600 Block of OAK ST,San Francisco,94117,B02,5,3523,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",143523625-E05 +153002380,E38,15115165,Alarms,10/27/2015,10/27/2015,10/27/2015 03:43:44 PM,10/27/2015 03:44:57 PM,10/27/2015 03:45:23 PM,10/27/2015 03:46:26 PM,10/27/2015 03:49:04 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Fire,10/27/2015 04:48:30 PM,1700 Block of JACKSON ST,San Francisco,94109,B04,38,3231,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7937762800279, -122.423860535824)",153002380-E38 +152853307,E05,15109557,Structure Fire,10/12/2015,10/12/2015,10/12/2015 06:57:32 PM,10/12/2015 06:57:56 PM,10/12/2015 06:58:10 PM,10/12/2015 06:59:10 PM,10/12/2015 07:01:00 PM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Fire,10/12/2015 07:08:00 PM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",152853307-E05 +150430030,E01,15016564,Medical Incident,02/12/2015,02/11/2015,02/12/2015 12:10:10 AM,02/12/2015 12:11:45 AM,02/12/2015 12:12:11 AM,02/12/2015 12:14:09 AM,02/12/2015 12:18:35 AM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Code 2 Transport,02/12/2015 12:31:18 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",150430030-E01 +150102410,T14,15004041,Medical Incident,01/10/2015,01/10/2015,01/10/2015 04:33:05 PM,01/10/2015 04:33:50 PM,01/10/2015 04:34:06 PM,01/10/2015 04:35:26 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 3 Transport,01/10/2015 04:36:26 PM,400 Block of 20TH AVE,San Francisco,94121,B07,14,7172,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,7,1,Outer Richmond,"(37.7793682984654, -122.479380963947)",150102410-T14 +151872175,RC3,15071443,Medical Incident,07/06/2015,07/06/2015,07/06/2015 02:26:45 PM,07/06/2015 02:27:14 PM,07/06/2015 02:31:20 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Code 2 Transport,07/06/2015 02:33:16 PM,2100 Block of 20TH AVE,San Francisco,94116,B08,40,7417,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,8,4,Sunset/Parkside,"(37.7476622873216, -122.477157809386)",151872175-RC3 +141903090,71,14065966,Medical Incident,07/09/2014,07/09/2014,07/09/2014 07:24:00 PM,07/09/2014 07:24:51 PM,07/09/2014 07:34:27 PM,07/09/2014 07:34:36 PM,07/09/2014 07:37:18 PM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Against Medical Advice,07/09/2014 08:25:16 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",141903090-71 +142283282,KM11,14079356,Alarms,08/16/2014,08/16/2014,08/16/2014 07:58:29 PM,08/16/2014 08:00:44 PM,08/16/2014 08:01:42 PM,08/16/2014 08:02:25 PM,08/16/2014 08:12:15 PM,08/16/2014 08:23:59 PM,08/16/2014 08:41:07 PM,Code 2 Transport,08/16/2014 08:59:14 PM,300 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8561,3,3,3,false,Alarm,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7373722059796, -122.469939861606)",142283282-KM11 +160953632,70,16037795,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:41:45 PM,04/04/2016 08:43:50 PM,04/04/2016 08:44:55 PM,04/04/2016 08:45:02 PM,04/04/2016 08:50:58 PM,04/04/2016 09:01:12 PM,04/04/2016 09:29:57 PM,Code 2 Transport,04/04/2016 09:33:25 PM,0 Block of DORE ST,San Francisco,94103,B03,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7738617775325, -122.413045971918)",160953632-70 +160941627,52,16037248,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:57:54 AM,04/03/2016 11:58:47 AM,04/03/2016 11:59:11 AM,04/03/2016 11:59:34 AM,04/03/2016 12:08:08 PM,04/03/2016 12:20:26 PM,04/03/2016 12:41:45 PM,Code 2 Transport,04/03/2016 01:14:35 PM,0 Block of CORTLAND AVE,San Francisco,94110,B06,32,5626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,6,9,Bernal Heights,"(37.7404496865399, -122.421267489131)",160941627-52 +152052197,E01,15078117,Structure Fire,07/24/2015,07/24/2015,07/24/2015 02:44:55 PM,07/24/2015 02:45:26 PM,07/24/2015 02:45:58 PM,07/24/2015 02:48:12 PM,07/24/2015 02:52:27 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Fire,07/24/2015 02:54:59 PM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,7,2,6,South of Market,"(37.7775775502239, -122.411096952518)",152052197-E01 +152510187,61,15095718,Medical Incident,09/08/2015,09/07/2015,09/08/2015 01:43:16 AM,09/08/2015 01:44:48 AM,09/08/2015 01:44:56 AM,09/08/2015 01:45:18 AM,09/08/2015 01:55:04 AM,09/08/2015 02:10:58 AM,09/08/2015 02:22:38 AM,Code 2 Transport,09/08/2015 03:22:04 AM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7810688918781, -122.407387172098)",152510187-61 +151973619,E17,15075291,Medical Incident,07/16/2015,07/16/2015,07/16/2015 09:55:30 PM,07/16/2015 09:56:35 PM,07/16/2015 09:56:52 PM,07/16/2015 09:58:36 PM,07/16/2015 10:00:30 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Code 2 Transport,07/16/2015 10:05:36 PM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7291630976058, -122.382538001818)",151973619-E17 +160951060,AM04,16037561,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:48:17 AM,04/04/2016 09:50:41 AM,04/04/2016 09:50:55 AM,04/04/2016 09:51:34 AM,04/04/2016 09:56:15 AM,04/04/2016 10:09:32 AM,04/04/2016 10:40:33 AM,Code 2 Transport,04/04/2016 10:59:43 AM,1800 Block of 25TH AVE,San Francisco,94122,B08,18,7455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7530220350499, -122.482903541099)",160951060-AM04 +151123029,AM08,15042425,Medical Incident,04/22/2015,04/22/2015,04/22/2015 05:45:06 PM,04/22/2015 05:46:15 PM,04/22/2015 05:46:36 PM,04/22/2015 05:47:49 PM,04/22/2015 05:52:43 PM,04/22/2015 06:07:28 PM,04/22/2015 06:28:03 PM,Code 2 Transport,04/22/2015 07:00:21 PM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",151123029-AM08 +150943256,E18,15035867,Medical Incident,04/04/2015,04/04/2015,04/04/2015 08:11:51 PM,04/04/2015 08:12:43 PM,04/04/2015 08:12:53 PM,04/04/2015 08:14:35 PM,04/04/2015 08:18:50 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 08:35:03 PM,1400 Block of 18TH AVE,San Francisco,94122,B08,22,7371,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7608162669498, -122.475791240665)",150943256-E18 +161002637,AM08,16039877,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:22:35 PM,04/09/2016 06:25:55 PM,04/09/2016 06:26:15 PM,04/09/2016 06:26:42 PM,04/09/2016 06:37:48 PM,04/09/2016 06:48:49 PM,04/09/2016 06:56:55 PM,Code 2 Transport,04/09/2016 07:32:21 PM,200 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",161002637-AM08 +160922770,KM09,16036542,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:34:49 PM,04/01/2016 05:34:49 PM,04/01/2016 05:35:03 PM,04/01/2016 05:35:45 PM,04/01/2016 05:43:29 PM,04/01/2016 06:00:14 PM,04/01/2016 06:14:53 PM,Code 2 Transport,04/01/2016 06:45:44 PM,1100 Block of FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7761748805979, -122.408661568722)",160922770-KM09 +141250161,E02,14042319,Structure Fire,05/05/2014,05/05/2014,05/05/2014 10:49:36 AM,05/05/2014 10:50:16 AM,05/05/2014 10:50:43 AM,05/05/2014 10:52:22 AM,05/05/2014 10:53:38 AM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 11:24:18 AM,1300 Block of STOCKTON ST,SAN FRANCISCO,94133,B01,2,1333,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",141250161-E02 +160993915,83,16039517,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:51:50 PM,04/08/2016 10:52:10 PM,04/08/2016 11:18:30 PM,04/08/2016 11:18:43 PM,04/08/2016 11:25:57 PM,04/08/2016 11:38:05 PM,04/09/2016 12:20:08 AM,Code 2 Transport,04/09/2016 12:37:22 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160993915-83 +160922924,54,16036553,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:09:28 PM,04/01/2016 06:09:28 PM,04/01/2016 06:10:05 PM,04/01/2016 06:10:48 PM,04/01/2016 06:18:20 PM,04/01/2016 06:40:21 PM,04/01/2016 06:48:28 PM,Code 2 Transport,04/01/2016 07:14:43 PM,2600 Block of BRYANT ST,San Francisco,94110,B06,9,5532,2,3,3,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7520023380427, -122.408984897471)",160922924-54 +150790837,T03,15030201,Citizen Assist / Service Call,03/20/2015,03/20/2015,03/20/2015 09:04:01 AM,03/20/2015 09:06:08 AM,03/20/2015 09:06:28 AM,03/20/2015 09:08:24 AM,03/20/2015 09:11:54 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 09:18:49 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,false,Alarm,1,TRUCK,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",150790837-T03 +141030167,E21,14034765,Medical Incident,04/13/2014,04/13/2014,04/13/2014 11:57:25 AM,04/13/2014 11:58:23 AM,04/13/2014 11:59:01 AM,04/13/2014 12:00:51 PM,04/13/2014 12:01:42 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Code 2 Transport,04/13/2014 12:15:37 PM,CENTRAL AV/FELL ST,SAN FRANCISCO,94117,B05,21,4356,,2,2,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7732120673067, -122.444216182973)",141030167-E21 +152171778,60,15082596,Structure Fire,08/05/2015,08/05/2015,08/05/2015 12:48:11 PM,08/05/2015 12:49:22 PM,08/05/2015 12:50:33 PM,08/05/2015 12:50:46 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,Fire,08/05/2015 12:57:12 PM,200 Block of STATES ST,San Francisco,94114,B05,6,5253,3,3,3,true,Alarm,1,MEDIC,12,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",152171778-60 +142200893,T15,14076261,Structure Fire,08/08/2014,08/08/2014,08/08/2014 09:05:30 AM,08/08/2014 09:05:30 AM,08/08/2014 09:06:22 AM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Fire,08/08/2014 09:07:38 AM,ROCKDALE DR/OMAR WY,San Francisco,94127,B09,39,8662,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7393078970174, -122.449569567755)",142200893-T15 +141803510,AM18,14062449,Medical Incident,06/29/2014,06/29/2014,06/29/2014 09:21:39 PM,06/29/2014 09:23:02 PM,06/29/2014 09:23:30 PM,06/29/2014 09:24:22 PM,06/29/2014 09:29:14 PM,06/29/2014 09:45:51 PM,06/29/2014 10:02:18 PM,Code 2 Transport,06/29/2014 10:34:07 PM,11TH ST/DIVISION ST,San Francisco,94103,B02,36,5112,E,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,South of Market,"(37.7694111910912, -122.410931089145)",141803510-AM18 +160950602,63,16037532,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:35:49 AM,04/04/2016 07:37:28 AM,04/04/2016 07:38:03 AM,04/04/2016 07:39:06 AM,04/04/2016 07:47:11 AM,04/04/2016 08:05:36 AM,04/04/2016 08:20:24 AM,Code 3 Transport,04/04/2016 09:03:56 AM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160950602-63 +150302767,T02,15011663,Alarms,01/30/2015,01/30/2015,01/30/2015 05:11:00 PM,01/30/2015 05:12:32 PM,01/30/2015 05:13:46 PM,01/30/2015 05:15:24 PM,01/30/2015 05:16:21 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Fire,01/30/2015 05:20:10 PM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",150302767-T02 +141542519,B09,14053018,Structure Fire,06/03/2014,06/03/2014,06/03/2014 05:20:38 PM,06/03/2014 05:21:36 PM,06/03/2014 05:22:49 PM,06/03/2014 05:23:07 PM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,Fire,06/03/2014 05:30:04 PM,2200 Block of TARAVAL ST,San Francisco,94116,B08,18,7555,3,3,3,false,Alarm,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7424686874787, -122.490159966243)",141542519-B09 +151192542,RS2,15045077,Structure Fire,04/29/2015,04/29/2015,04/29/2015 03:53:52 PM,04/29/2015 03:54:34 PM,04/29/2015 03:54:45 PM,04/29/2015 03:55:57 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/29/2015 03:59:48 PM,100 Block of FAIR OAKS ST,San Francisco,94110,B06,11,5471,3,3,3,false,Alarm,1,RESCUE SQUAD,7,6,8,Mission,"(37.7543002541266, -122.424281978972)",151192542-RS2 +143023675,E36,14106794,Medical Incident,10/29/2014,10/29/2014,10/29/2014 09:39:23 PM,10/29/2014 09:41:16 PM,10/29/2014 09:42:26 PM,10/29/2014 09:44:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Unable to Locate,10/29/2014 09:48:16 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",143023675-E36 +141920292,E07,14066421,Medical Incident,07/11/2014,07/10/2014,07/11/2014 02:12:20 AM,07/11/2014 02:12:57 AM,07/11/2014 02:14:34 AM,07/11/2014 02:16:24 AM,07/11/2014 02:18:25 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Code 2 Transport,07/11/2014 02:32:26 AM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",141920292-E07 +143493196,E13,14124783,Medical Incident,12/15/2014,12/15/2014,12/15/2014 09:18:18 PM,12/15/2014 09:19:41 PM,12/15/2014 09:22:36 PM,12/15/2014 09:23:20 PM,12/15/2014 09:27:05 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Code 2 Transport,12/15/2014 10:00:25 PM,200 Block of JACKSON ST,San Francisco,94111,B01,13,1156,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7967959708794, -122.400094703073)",143493196-E13 +141150242,T05,14038867,Administrative,04/25/2014,04/25/2014,04/25/2014 03:34:28 PM,04/25/2014 03:34:32 PM,04/25/2014 03:35:19 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Other,04/25/2014 03:35:41 PM,1300 Block of TURK ST,,94115,B05,5,3535,3,3,3,false,,1,TRUCK,2,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",141150242-T05 +152602140,E06,15099405,Medical Incident,09/17/2015,09/17/2015,09/17/2015 02:03:17 PM,09/17/2015 02:03:52 PM,09/17/2015 02:04:17 PM,09/17/2015 02:05:15 PM,09/17/2015 02:08:22 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Code 2 Transport,09/17/2015 02:21:37 PM,400 Block of HAIGHT ST,San Francisco,94117,B02,6,3524,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",152602140-E06 +160981496,73,16038881,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:12:22 AM,04/07/2016 11:13:57 AM,04/07/2016 11:14:57 AM,04/07/2016 11:15:23 AM,04/07/2016 11:23:48 AM,04/07/2016 11:49:35 AM,04/07/2016 12:21:50 PM,Code 2 Transport,04/07/2016 12:39:28 PM,300 Block of WEBSTER ST,San Francisco,94102,B02,5,3523,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7737232931729, -122.429015869716)",160981496-73 +160921428,54,16036413,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:46:37 AM,04/01/2016 11:48:38 AM,04/01/2016 11:49:04 AM,04/01/2016 11:49:14 AM,04/01/2016 11:52:16 AM,04/01/2016 12:08:34 PM,04/01/2016 12:28:22 PM,Code 2 Transport,04/01/2016 12:54:32 PM,2500 Block of MARIPOSA ST,San Francisco,94110,B02,29,5243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7631695375953, -122.408796075221)",160921428-54 +160942635,AM08,16037349,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:05:16 PM,04/03/2016 05:05:16 PM,04/03/2016 05:05:48 PM,04/03/2016 05:06:29 PM,04/03/2016 05:10:49 PM,04/03/2016 05:33:02 PM,04/03/2016 05:57:51 PM,Code 2 Transport,04/03/2016 06:23:34 PM,1800 Block of POST ST,San Francisco,94115,B04,5,3513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.785207581828, -122.432213785968)",160942635-AM08 +150422002,E13,15016364,Medical Incident,02/11/2015,02/11/2015,02/11/2015 01:52:49 PM,02/11/2015 01:55:29 PM,02/11/2015 01:56:27 PM,02/11/2015 01:57:23 PM,02/11/2015 01:58:07 PM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Code 2 Transport,02/11/2015 02:17:39 PM,700 Block of SANSOME ST,San Francisco,94133,B01,13,1212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7971811710736, -122.402042217539)",150422002-E13 +160994013,71,16039529,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:19:32 PM,04/08/2016 11:21:03 PM,04/08/2016 11:22:19 PM,04/08/2016 11:23:07 PM,04/08/2016 11:44:01 PM,04/08/2016 11:56:25 PM,04/09/2016 12:15:30 AM,Code 2 Transport,04/09/2016 12:41:53 AM,OCEAN AV/LEE AV,San Francisco,94112,B09,15,8224,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7234570070328, -122.454115751965)",160994013-71 +142322365,E03,14080656,Medical Incident,08/20/2014,08/20/2014,08/20/2014 03:32:15 PM,08/20/2014 03:33:54 PM,08/20/2014 03:35:22 PM,08/20/2014 03:35:37 PM,08/20/2014 03:41:33 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Code 2 Transport,08/20/2014 03:52:20 PM,DIVISADERO ST/GEARY BL,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Japantown,"(37.7833084876653, -122.439480381269)",142322365-E03 +141050377,54,14035582,Medical Incident,04/15/2014,04/15/2014,04/15/2014 10:30:56 PM,04/15/2014 10:30:56 PM,04/15/2014 10:31:33 PM,04/15/2014 10:32:02 PM,04/15/2014 10:34:58 PM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,No Merit,04/15/2014 10:45:57 PM,2200 Block of MARKET ST,SAN FRANCISCO,94114,B05,6,5231,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",141050377-54 +160971671,73,16038392,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:48:28 AM,04/06/2016 11:48:28 AM,04/06/2016 11:48:40 AM,04/06/2016 11:49:15 AM,04/06/2016 11:52:49 AM,04/06/2016 12:06:40 PM,04/06/2016 12:15:30 PM,Code 2 Transport,04/06/2016 01:14:12 PM,400 Block of LAKE ST,San Francisco,94118,B07,31,7126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Inner Richmond,"(37.7867508385362, -122.464159839739)",160971671-73 +141683592,E41,14058150,Traffic Collision,06/17/2014,06/17/2014,06/17/2014 10:43:06 PM,06/17/2014 10:44:25 PM,06/17/2014 10:44:42 PM,06/17/2014 10:45:02 PM,06/17/2014 10:47:36 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Code 2 Transport,06/17/2014 11:00:30 PM,TAYLOR ST/PINE ST,San Francisco,94108,B01,41,1446,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7906727830021, -122.412266188172)",141683592-E41 +160963957,AM20,16038198,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:09:10 PM,04/05/2016 10:09:10 PM,04/05/2016 10:09:21 PM,04/05/2016 10:10:24 PM,04/05/2016 10:14:42 PM,04/05/2016 11:12:19 PM,04/05/2016 11:12:23 PM,Code 2 Transport,04/05/2016 11:42:18 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160963957-AM20 +142280663,T16,14079136,Alarms,08/16/2014,08/15/2014,08/16/2014 05:26:33 AM,08/16/2014 05:27:55 AM,08/16/2014 05:28:40 AM,08/16/2014 05:30:54 AM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,Fire,08/16/2014 05:33:04 AM,200 Block of HALLECK ST,Presidio,94129,B99,51,4612,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.8028889129245, -122.454325428639)",142280663-T16 +150081781,E23,15003130,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:50:57 PM,01/08/2015 12:51:49 PM,01/08/2015 12:52:08 PM,01/08/2015 12:52:51 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 12:54:57 PM,2200 Block of 39TH AVE,San Francisco,94116,B08,18,7621,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7449066277285, -122.497245831134)",150081781-E23 +142441199,RC3,14084986,Medical Incident,09/01/2014,09/01/2014,09/01/2014 10:53:52 AM,09/01/2014 10:55:07 AM,09/01/2014 11:02:04 AM,09/01/2014 11:02:33 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 3 Transport,09/01/2014 11:39:22 AM,1200 Block of 14TH AVE,San Francisco,94122,B08,22,7346,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,7,5,Inner Sunset,"(37.7647478412807, -122.471664663461)",142441199-RC3 +161000248,89,16039586,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:43:15 AM,04/09/2016 01:44:06 AM,04/09/2016 01:44:33 AM,04/09/2016 01:44:44 AM,04/09/2016 01:48:14 AM,04/09/2016 02:11:35 AM,04/09/2016 02:29:38 AM,Code 2 Transport,04/09/2016 02:56:18 AM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",161000248-89 +160971983,82,16038420,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:53:51 PM,04/06/2016 12:55:14 PM,04/06/2016 12:56:12 PM,04/06/2016 12:56:17 PM,04/06/2016 12:59:17 PM,04/06/2016 01:17:04 PM,04/06/2016 01:33:24 PM,Code 2 Transport,04/06/2016 02:14:35 PM,MARKET ST/7TH ST,San Francisco,94103,B03,36,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160971983-82 +142771865,E23,14097384,Fuel Spill,10/04/2014,10/04/2014,10/04/2014 12:38:07 PM,10/04/2014 12:41:29 PM,10/04/2014 12:41:34 PM,10/04/2014 12:43:04 PM,10/04/2014 12:46:22 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Fire,10/04/2014 01:24:14 PM,2700 Block of LAWTON ST,San Francisco,94122,B08,18,7542,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7573370299532, -122.492275221487)",142771865-E23 +143431974,T02,14121964,Structure Fire,12/09/2014,12/09/2014,12/09/2014 01:29:00 PM,12/09/2014 01:29:00 PM,12/09/2014 01:31:51 PM,12/09/2014 01:32:54 PM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,Code 2 Transport,12/09/2014 01:33:29 PM,COLUMBUS AV/UNION ST,San Francisco,94133,B01,28,1334,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8003154984429, -122.410206543893)",143431974-T02 +152500318,E03,15095356,Medical Incident,09/07/2015,09/06/2015,09/07/2015 02:56:29 AM,09/07/2015 02:57:55 AM,09/07/2015 02:58:15 AM,09/07/2015 02:59:43 AM,09/07/2015 03:02:35 AM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Code 3 Transport,09/07/2015 03:11:38 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",152500318-E03 +150483014,82,15018715,Medical Incident,02/17/2015,02/17/2015,02/17/2015 06:22:13 PM,02/17/2015 06:23:32 PM,02/17/2015 06:23:45 PM,02/17/2015 06:23:58 PM,02/17/2015 06:27:25 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Patient Declined Transport,02/17/2015 06:42:39 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",150483014-82 +160961755,87,16038005,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:43:06 PM,04/05/2016 12:43:46 PM,04/05/2016 12:43:59 PM,04/05/2016 12:44:24 PM,04/05/2016 12:49:19 PM,04/05/2016 01:00:48 PM,04/05/2016 01:22:26 PM,Code 2 Transport,04/05/2016 02:06:04 PM,1200 Block of SHAFTER AVE,San Francisco,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",160961755-87 +150581167,AM26,15022106,Medical Incident,02/27/2015,02/27/2015,02/27/2015 10:08:32 AM,02/27/2015 10:08:32 AM,02/27/2015 10:08:57 AM,02/27/2015 10:09:58 AM,02/27/2015 10:17:48 AM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Patient Declined Transport,02/27/2015 10:51:02 AM,0 Block of NORDHOFF ST,San Francisco,94131,B09,26,8177,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,8,West of Twin Peaks,"(37.7337925121178, -122.440968305396)",150581167-AM26 +152812926,T13,15107950,Water Rescue,10/08/2015,10/08/2015,10/08/2015 05:28:42 PM,10/08/2015 05:29:54 PM,10/08/2015 05:31:09 PM,10/08/2015 05:31:51 PM,10/08/2015 05:34:59 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,No Merit,10/08/2015 05:43:23 PM,HOWARD ST/THE EMBARCADERO SOU,San Francisco,94105,B03,35,2114,3,3,3,false,Fire,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7918502464418, -122.391360186894)",152812926-T13 +160993897,AM18,16039514,Structure Fire,04/08/2016,04/08/2016,04/08/2016 10:46:42 PM,04/08/2016 10:46:42 PM,04/08/2016 11:09:49 PM,04/08/2016 11:10:21 PM,04/08/2016 11:24:18 PM,04/08/2016 11:31:34 PM,04/08/2016 11:47:33 PM,Code 2 Transport,04/09/2016 12:03:58 AM,21ST ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5455,3,3,3,false,Alarm,1,PRIVATE,3,6,9,Mission,"(37.7571666434801, -122.416719595074)",160993897-AM18 +142960359,T16,14104257,Alarms,10/23/2014,10/22/2014,10/23/2014 04:04:56 AM,10/23/2014 04:06:30 AM,10/23/2014 04:14:00 AM,10/23/2014 04:16:19 AM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Fire,10/23/2014 04:23:18 AM,900 Block of MASON ST,Presidio,94108,B99,51,4613,3,3,3,false,Alarm,1,TRUCK,6,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",142960359-T16 +150582120,RC1,15022199,Traffic Collision,02/27/2015,02/27/2015,02/27/2015 02:29:18 PM,02/27/2015 02:32:44 PM,02/27/2015 02:34:19 PM,02/27/2015 02:34:19 PM,02/27/2015 02:37:57 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Patient Declined Transport,02/27/2015 02:48:34 PM,100 Block of BERRY ST,San Francisco,94158,B03,8,2171,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",150582120-RC1 +141260332,54,14042818,Medical Incident,05/06/2014,05/06/2014,05/06/2014 06:27:03 PM,05/06/2014 06:28:50 PM,05/06/2014 06:29:51 PM,05/06/2014 06:29:57 PM,05/06/2014 06:56:50 PM,05/06/2014 07:14:37 PM,05/06/2014 07:26:13 PM,Code 2 Transport,05/06/2014 07:57:33 PM,0 Block of BEAVER ST,SAN FRANCISCO,94114,B05,6,5233,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7650483291206, -122.434292441696)",141260332-54 +160992447,76,16039376,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:08:09 PM,04/08/2016 04:08:32 PM,04/08/2016 04:09:04 PM,04/08/2016 04:09:09 PM,04/08/2016 04:15:08 PM,04/08/2016 04:27:49 PM,04/08/2016 04:35:07 PM,Code 2 Transport,04/08/2016 05:02:31 PM,400 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1234,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7933243680206, -122.402793749172)",160992447-76 +152541085,E42,15097029,Traffic Collision,09/11/2015,09/11/2015,09/11/2015 09:35:00 AM,09/11/2015 09:36:08 AM,09/11/2015 09:38:41 AM,09/11/2015 09:41:46 AM,09/11/2015 09:45:15 AM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Code 2 Transport,09/11/2015 10:01:48 AM,0 Block of OGDEN AV,San Francisco,94110,B10,42,6373,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7357223682795, -122.409678079531)",152541085-E42 +151400737,E44,15053073,Structure Fire,05/20/2015,05/20/2015,05/20/2015 08:19:20 AM,05/20/2015 08:20:15 AM,05/20/2015 08:20:43 AM,05/20/2015 08:21:28 AM,05/20/2015 08:25:05 AM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/20/2015 08:57:10 AM,200 Block of EXECUTIVE PARK BLVD,San Francisco,94134,B10,44,6275,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7111243307685, -122.39173301635)",151400737-E44 +150240410,60,15009174,Medical Incident,01/24/2015,01/23/2015,01/24/2015 02:52:21 AM,01/24/2015 02:52:21 AM,01/24/2015 02:52:33 AM,01/24/2015 02:53:08 AM,01/24/2015 03:07:42 AM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Unable to Locate,01/24/2015 03:10:15 AM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",150240410-60 +143511134,E03,14125326,Traffic Collision,12/17/2014,12/17/2014,12/17/2014 09:58:22 AM,12/17/2014 10:00:00 AM,12/17/2014 10:02:01 AM,12/17/2014 10:04:34 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Patient Declined Transport,12/17/2014 10:07:22 AM,OFARRELL ST/VAN NESS AV,San Francisco,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",143511134-E03 +160951436,88,16037596,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:27:43 AM,04/04/2016 11:29:32 AM,04/04/2016 11:30:34 AM,04/04/2016 11:31:01 AM,04/04/2016 11:46:06 AM,04/04/2016 12:02:39 PM,04/04/2016 12:22:55 PM,Code 2 Transport,04/04/2016 12:52:37 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,3,3,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160951436-88 +153143421,88,15120807,Medical Incident,11/10/2015,11/10/2015,11/10/2015 08:01:34 PM,11/10/2015 08:03:03 PM,11/10/2015 08:03:31 PM,11/10/2015 08:03:43 PM,11/10/2015 08:07:35 PM,11/10/2015 08:25:41 PM,11/10/2015 08:34:57 PM,Code 2 Transport,11/10/2015 09:13:24 PM,500 Block of MINNA ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7791823933462, -122.409793939547)",153143421-88 +151340211,64,15050705,Medical Incident,05/14/2015,05/13/2015,05/14/2015 02:05:55 AM,05/14/2015 02:07:53 AM,05/14/2015 02:09:20 AM,05/14/2015 02:09:32 AM,05/14/2015 02:17:49 AM,05/14/2015 02:29:03 AM,05/14/2015 02:43:40 AM,Code 2 Transport,05/14/2015 02:58:31 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",151340211-64 +160941436,KM08,16037234,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:08:21 AM,04/03/2016 11:09:15 AM,04/03/2016 11:09:32 AM,04/03/2016 11:10:14 AM,04/03/2016 11:14:50 AM,04/03/2016 11:33:12 AM,04/03/2016 11:45:53 AM,Code 2 Transport,04/03/2016 12:12:20 PM,6300 Block of CALIFORNIA ST,San Francisco,94121,B07,14,7214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7838030202773, -122.485545885783)",160941436-KM08 +150200193,82,15007716,Medical Incident,01/20/2015,01/19/2015,01/20/2015 01:39:01 AM,01/20/2015 01:39:01 AM,01/20/2015 01:39:38 AM,01/20/2015 01:39:49 AM,01/20/2015 01:42:54 AM,01/20/2015 02:09:29 AM,01/20/2015 02:27:33 AM,Code 2 Transport,01/20/2015 03:10:45 AM,MISSION ST/17TH ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7634292740134, -122.419512736792)",150200193-82 +143222674,E36,14114104,Medical Incident,11/18/2014,11/18/2014,11/18/2014 05:19:18 PM,11/18/2014 05:19:38 PM,11/18/2014 05:19:52 PM,11/18/2014 05:21:18 PM,11/18/2014 05:25:16 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,Other,11/18/2014 05:51:35 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",143222674-E36 +153120275,E17,15119786,Medical Incident,11/08/2015,11/07/2015,11/08/2015 02:02:46 AM,11/08/2015 02:04:03 AM,11/08/2015 02:04:13 AM,11/08/2015 02:06:27 AM,11/08/2015 02:08:41 AM,04/25/2016 01:07:19 PM,04/25/2016 01:07:19 PM,Code 2 Transport,11/08/2015 02:15:02 AM,REVERE AV/KEITH ST,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7306061047196, -122.388292259313)",153120275-E17 +150920761,61,15034869,Medical Incident,04/02/2015,04/02/2015,04/02/2015 08:25:30 AM,04/02/2015 08:26:56 AM,04/02/2015 08:28:26 AM,04/02/2015 08:28:35 AM,04/02/2015 08:47:49 AM,04/02/2015 08:55:02 AM,04/02/2015 09:30:23 AM,Code 2 Transport,04/02/2015 09:51:37 AM,0 Block of DENSLOWE DR,San Francisco,94132,B08,19,8726,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7235652911851, -122.474326821419)",150920761-61 +160982132,KM13,16038942,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:55:48 PM,04/07/2016 01:56:49 PM,04/07/2016 01:58:13 PM,04/07/2016 01:58:38 PM,04/07/2016 02:14:33 PM,04/07/2016 02:39:10 PM,04/07/2016 03:09:31 PM,Code 2 Transport,04/07/2016 03:38:23 PM,CLAY ST/DAVIS ST,San Francisco,94111,B01,13,1133,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7953129409013, -122.397974750623)",160982132-KM13 +141872159,T05,14064841,Citizen Assist / Service Call,07/06/2014,07/06/2014,07/06/2014 04:22:41 PM,07/06/2014 04:22:56 PM,07/06/2014 04:25:33 PM,07/06/2014 04:25:33 PM,07/06/2014 04:27:28 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Fire,07/06/2014 04:38:59 PM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,3,3,3,false,Alarm,1,TRUCK,2,5,5,Japantown,"(37.7848770596387, -122.442348914658)",141872159-T05 +161002107,KM08,16039815,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:43:36 PM,04/09/2016 03:45:08 PM,04/09/2016 03:45:29 PM,04/09/2016 03:46:17 PM,04/09/2016 03:51:14 PM,04/09/2016 04:08:45 PM,04/09/2016 04:28:31 PM,Code 2 Transport,04/09/2016 04:57:52 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7853585501162, -122.415955969312)",161002107-KM08 +160991442,63,16039275,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:00:58 PM,04/08/2016 12:00:58 PM,04/08/2016 12:01:11 PM,04/08/2016 12:01:19 PM,04/08/2016 12:13:45 PM,04/08/2016 12:16:38 PM,04/08/2016 12:46:37 PM,Code 2 Transport,04/08/2016 01:15:49 PM,POWELL ST/ELLIS ST,San Francisco,94102,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",160991442-63 +150463001,53,15018039,Medical Incident,02/15/2015,02/15/2015,02/15/2015 06:36:14 PM,02/15/2015 06:36:14 PM,02/15/2015 06:36:29 PM,02/15/2015 06:37:09 PM,02/15/2015 06:55:39 PM,02/15/2015 07:11:20 PM,02/15/2015 07:12:30 PM,Code 2 Transport,02/15/2015 08:07:42 PM,400 Block of JEFFERSON ST,San Francisco,94133,B01,28,947,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8077508336049, -122.419925741179)",150463001-53 +152173931,E03,15082795,Medical Incident,08/05/2015,08/05/2015,08/05/2015 09:57:30 PM,08/05/2015 09:58:16 PM,08/05/2015 09:58:51 PM,08/05/2015 10:00:15 PM,08/05/2015 10:02:07 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,Patient Declined Transport,08/05/2015 10:14:39 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",152173931-E03 +160960706,55,16037918,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:19:35 AM,04/05/2016 08:21:22 AM,04/05/2016 08:21:51 AM,04/05/2016 08:22:02 AM,04/05/2016 08:30:10 AM,04/05/2016 08:53:25 AM,04/05/2016 09:21:48 AM,Code 2 Transport,04/05/2016 09:46:36 AM,3700 Block of 18TH ST,San Francisco,94114,B06,6,541,2,3,3,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",160960706-55 +160961596,AM08,16037991,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:04:31 PM,04/05/2016 12:05:15 PM,04/05/2016 12:06:54 PM,04/05/2016 12:07:47 PM,04/05/2016 12:13:54 PM,04/05/2016 12:30:48 PM,04/05/2016 12:49:58 PM,Code 2 Transport,04/05/2016 01:22:37 PM,1600 Block of DIVISADERO ST,San Francisco,94115,B05,10,4155,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Japantown,"(37.7847979838284, -122.439663867351)",160961596-AM08 +151361277,B02,15051635,Alarms,05/16/2015,05/16/2015,05/16/2015 10:35:03 AM,05/16/2015 10:36:47 AM,05/16/2015 10:37:02 AM,05/16/2015 10:39:11 AM,05/16/2015 10:39:11 AM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Fire,05/16/2015 11:03:01 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,CHIEF,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",151361277-B02 +142622274,B07,14091662,Alarms,09/19/2014,09/19/2014,09/19/2014 03:15:16 PM,09/19/2014 03:16:22 PM,09/19/2014 03:16:36 PM,09/19/2014 03:18:43 PM,09/19/2014 03:21:26 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,Fire,09/19/2014 03:31:38 PM,100 Block of 11TH AVE,San Francisco,94118,B07,31,7137,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7855017910126, -122.470044893397)",142622274-B07 +152481693,E36,15094667,Alarms,09/05/2015,09/05/2015,09/05/2015 12:28:32 PM,09/05/2015 12:29:40 PM,09/05/2015 12:29:54 PM,09/05/2015 12:31:42 PM,09/05/2015 12:32:06 PM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Fire,09/05/2015 12:41:17 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",152481693-E36 +150441517,E36,15017082,Medical Incident,02/13/2015,02/13/2015,02/13/2015 11:28:21 AM,02/13/2015 11:30:01 AM,02/13/2015 11:34:55 AM,02/13/2015 11:35:55 AM,02/13/2015 11:44:44 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/13/2015 12:05:20 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",150441517-E36 +143072324,E29,14108682,Citizen Assist / Service Call,11/03/2014,11/03/2014,11/03/2014 04:05:50 PM,11/03/2014 04:07:30 PM,11/03/2014 04:08:02 PM,11/03/2014 04:08:48 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,Fire,11/03/2014 04:10:11 PM,16TH ST/KANSAS ST,San Francisco,94103,B03,29,2413,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission Bay,"(37.7660170692888, -122.403643056467)",143072324-E29 +160970333,70,16038271,Medical Incident,04/06/2016,04/05/2016,04/06/2016 03:52:19 AM,04/06/2016 03:52:19 AM,04/06/2016 03:52:29 AM,04/06/2016 03:52:43 AM,04/06/2016 03:56:50 AM,04/06/2016 04:13:56 AM,04/06/2016 04:34:35 AM,Code 2 Transport,04/06/2016 04:58:27 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160970333-70 +141160319,E14,14039275,Medical Incident,04/26/2014,04/26/2014,04/26/2014 07:50:10 PM,04/26/2014 07:50:58 PM,04/26/2014 07:53:59 PM,04/26/2014 07:56:03 PM,04/26/2014 07:58:06 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Code 2 Transport,04/26/2014 08:08:36 PM,5000 Block of FULTON ST,SAN FRANCISCO,94121,B07,14,7211,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7725508354803, -122.485802008075)",141160319-E14 +143290339,E01,14116547,Medical Incident,11/25/2014,11/24/2014,11/25/2014 04:13:24 AM,11/25/2014 04:15:21 AM,11/25/2014 04:16:01 AM,11/25/2014 04:18:22 AM,11/25/2014 04:27:12 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Code 2 Transport,11/25/2014 04:47:14 AM,6TH ST/STEVENSON ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7817543267261, -122.409693263148)",143290339-E01 +142662099,E08,14093140,Alarms,09/23/2014,09/23/2014,09/23/2014 02:34:07 PM,09/23/2014 02:35:17 PM,09/23/2014 02:35:47 PM,09/23/2014 02:36:28 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Fire,09/23/2014 02:36:45 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Alarm,1,ENGINE,5,1,3,North Beach,"(37.8080500969059, -122.409877282931)",142662099-E08 +160921447,62,16036414,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:52:46 AM,04/01/2016 11:53:14 AM,04/01/2016 11:53:31 AM,04/01/2016 11:53:43 AM,04/01/2016 12:00:55 PM,04/01/2016 12:19:48 PM,04/01/2016 12:32:48 PM,Code 2 Transport,04/01/2016 01:06:28 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160921447-62 +160982616,83,16039002,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:57:27 PM,04/07/2016 03:58:46 PM,04/07/2016 04:01:21 PM,04/07/2016 04:04:17 PM,04/07/2016 04:11:48 PM,04/07/2016 04:31:35 PM,04/07/2016 04:45:47 PM,Code 2 Transport,04/07/2016 05:07:58 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160982616-83 +160943428,AM18,16037430,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:25:48 PM,04/03/2016 09:29:54 PM,04/03/2016 09:31:26 PM,04/03/2016 09:32:29 PM,04/03/2016 09:36:04 PM,04/03/2016 09:47:23 PM,04/03/2016 10:13:05 PM,Code 2 Transport,04/03/2016 10:21:21 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",160943428-AM18 +160931902,54,16036881,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:51:03 PM,04/02/2016 01:52:22 PM,04/02/2016 01:54:24 PM,04/02/2016 01:57:36 PM,04/02/2016 02:09:50 PM,04/02/2016 02:09:58 PM,04/02/2016 02:37:39 PM,Code 2 Transport,04/02/2016 03:13:59 PM,BAY ST/JONES ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8052118696218, -122.416887674066)",160931902-54 +160941349,KM02,16037223,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:43:45 AM,04/03/2016 10:46:49 AM,04/03/2016 10:47:28 AM,04/03/2016 10:47:55 AM,04/03/2016 10:56:31 AM,04/03/2016 11:21:33 AM,04/03/2016 11:37:56 AM,Code 2 Transport,04/03/2016 12:08:15 PM,1100 Block of PIERCE ST,San Francisco,94115,B05,5,3643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7805346367144, -122.435588688565)",160941349-KM02 +152571452,T11,15098233,Alarms,09/14/2015,09/14/2015,09/14/2015 11:02:12 AM,09/14/2015 11:04:30 AM,09/14/2015 11:04:49 AM,09/14/2015 11:06:17 AM,09/14/2015 11:09:48 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Fire,09/14/2015 11:23:00 AM,100 Block of APPLETON AVE,San Francisco,94110,B06,32,5646,3,3,3,false,Alarm,1,TRUCK,2,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",152571452-T11 +150291046,52,15011088,Medical Incident,01/29/2015,01/29/2015,01/29/2015 09:38:28 AM,01/29/2015 09:41:08 AM,01/29/2015 09:41:20 AM,01/29/2015 09:42:15 AM,01/29/2015 09:50:44 AM,01/29/2015 10:02:51 AM,01/29/2015 10:40:06 AM,Code 2 Transport,01/29/2015 11:14:58 AM,0 Block of WILLIAMS AVE,San Francisco,94124,B10,17,6536,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7295170043908, -122.394018185467)",150291046-52 +160932211,56,16036916,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:22:14 PM,04/02/2016 03:22:39 PM,04/02/2016 03:24:38 PM,04/02/2016 03:24:49 PM,04/02/2016 03:50:39 PM,04/02/2016 03:50:41 PM,04/02/2016 04:07:07 PM,Code 3 Transport,04/02/2016 04:43:29 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160932211-56 +141772023,74,14061131,Medical Incident,06/26/2014,06/26/2014,06/26/2014 03:00:49 PM,06/26/2014 03:03:56 PM,06/26/2014 03:04:30 PM,06/26/2014 03:05:06 PM,06/26/2014 03:21:08 PM,06/26/2014 03:41:55 PM,06/26/2014 04:34:46 PM,Code 2 Transport,06/26/2014 04:59:21 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8055721065651, -122.414433429446)",141772023-74 +160943056,AM16,16037384,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:10:25 PM,04/03/2016 07:11:22 PM,04/03/2016 07:11:34 PM,04/03/2016 07:12:15 PM,04/03/2016 07:16:39 PM,04/03/2016 07:44:00 PM,04/03/2016 07:53:33 PM,Code 2 Transport,04/03/2016 08:22:23 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160943056-AM16 +142263849,E05,14078689,Medical Incident,08/14/2014,08/14/2014,08/14/2014 11:40:35 PM,08/14/2014 11:41:06 PM,08/14/2014 11:41:26 PM,08/14/2014 11:43:04 PM,08/14/2014 11:48:50 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 2 Transport,08/15/2014 12:13:24 AM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",142263849-E05 +153042817,T08,15116754,Traffic Collision,10/31/2015,10/31/2015,10/31/2015 05:06:17 PM,10/31/2015 05:06:47 PM,10/31/2015 05:09:30 PM,10/31/2015 05:09:30 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,Code 2 Transport,10/31/2015 05:11:47 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,South of Market,"(37.7777990101501, -122.40029776053)",153042817-T08 +141070017,E03,14035972,Medical Incident,04/17/2014,04/16/2014,04/17/2014 01:37:46 AM,04/17/2014 01:41:02 AM,04/17/2014 01:41:40 AM,04/17/2014 01:43:37 AM,04/17/2014 01:46:12 AM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Code 2 Transport,04/17/2014 01:49:31 AM,300 Block of EDDY ST,SAN FRANCISCO,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",141070017-E03 +153170668,67,15121736,Medical Incident,11/13/2015,11/12/2015,11/13/2015 07:05:16 AM,11/13/2015 07:05:41 AM,11/13/2015 07:06:20 AM,11/13/2015 07:06:39 AM,11/13/2015 07:20:58 AM,11/13/2015 07:36:17 AM,11/13/2015 08:29:53 AM,Code 2 Transport,11/13/2015 09:12:17 AM,0 Block of KELLOCH AVE,San Francisco,94134,B09,44,6252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7089951218333, -122.41338600281)",153170668-67 +152650613,68,15101380,Medical Incident,09/22/2015,09/21/2015,09/22/2015 07:17:10 AM,09/22/2015 07:20:02 AM,09/22/2015 07:20:18 AM,09/22/2015 07:20:30 AM,09/22/2015 07:26:00 AM,09/22/2015 07:47:32 AM,09/22/2015 07:47:34 AM,Code 2 Transport,09/22/2015 08:00:41 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,false,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",152650613-68 +151782647,82,15067845,Medical Incident,06/27/2015,06/27/2015,06/27/2015 04:49:13 PM,06/27/2015 04:50:09 PM,06/27/2015 04:50:23 PM,06/27/2015 04:50:31 PM,06/27/2015 04:57:28 PM,06/27/2015 05:08:15 PM,06/27/2015 05:35:34 PM,Code 2 Transport,06/27/2015 06:00:21 PM,1200 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7112938482152, -122.414007130842)",151782647-82 +143110093,AM20,14109972,Medical Incident,11/07/2014,11/06/2014,11/07/2014 12:32:50 AM,11/07/2014 12:34:43 AM,11/07/2014 12:34:46 AM,11/07/2014 12:35:42 AM,11/07/2014 12:42:15 AM,11/07/2014 01:05:28 AM,11/07/2014 01:23:42 AM,Code 2 Transport,11/07/2014 01:44:40 AM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",143110093-AM20 +142910377,55,14102502,Medical Incident,10/18/2014,10/17/2014,10/18/2014 02:18:24 AM,10/18/2014 02:20:11 AM,10/18/2014 02:20:34 AM,10/18/2014 02:20:41 AM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 2 Transport,10/18/2014 02:21:49 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",142910377-55 +152200701,RC1,15083714,Structure Fire,08/08/2015,08/07/2015,08/08/2015 06:45:21 AM,08/08/2015 06:46:16 AM,08/08/2015 06:52:13 AM,08/08/2015 06:54:15 AM,08/08/2015 06:58:30 AM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Against Medical Advice,08/08/2015 07:43:54 AM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",152200701-RC1 +161003444,58,16039973,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:34:02 PM,04/09/2016 10:34:02 PM,04/09/2016 10:34:02 PM,04/09/2016 10:34:02 PM,04/09/2016 10:34:02 PM,04/09/2016 10:38:36 PM,04/09/2016 10:41:32 PM,Code 2 Transport,04/09/2016 11:09:09 PM,CASTRO ST/DUBOCE AV,San Francisco,94117,B99,6,5133,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7690584547768, -122.435794213255)",161003444-58 +150272206,79,15010454,Medical Incident,01/27/2015,01/27/2015,01/27/2015 02:56:26 PM,01/27/2015 02:57:41 PM,01/27/2015 02:58:52 PM,01/27/2015 02:58:59 PM,01/27/2015 03:17:33 PM,01/27/2015 03:40:01 PM,01/27/2015 03:46:59 PM,Code 3 Transport,01/27/2015 04:28:22 PM,0 Block of KING ST,San Francisco,94107,B03,35,940,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7807643532489, -122.388778001806)",150272206-79 +141673214,AM22,14057752,Medical Incident,06/16/2014,06/16/2014,06/16/2014 09:04:53 PM,06/16/2014 09:06:03 PM,06/16/2014 09:06:34 PM,06/16/2014 09:07:19 PM,06/16/2014 09:10:46 PM,06/16/2014 09:21:17 PM,06/16/2014 09:29:37 PM,Code 2 Transport,06/16/2014 09:46:18 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",141673214-AM22 +152561275,64,15097868,Medical Incident,09/13/2015,09/13/2015,09/13/2015 11:05:48 AM,09/13/2015 11:07:05 AM,09/13/2015 11:07:23 AM,09/13/2015 11:07:43 AM,09/13/2015 11:20:41 AM,09/13/2015 12:05:09 PM,09/13/2015 12:47:01 PM,Code 2 Transport,09/13/2015 01:28:23 PM,1700 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",152561275-64 +160931262,79,16036806,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:47:06 AM,04/02/2016 10:48:45 AM,04/02/2016 10:50:34 AM,04/02/2016 10:50:41 AM,04/02/2016 10:59:15 AM,04/02/2016 11:12:14 AM,04/02/2016 11:24:57 AM,Code 2 Transport,04/02/2016 11:48:51 AM,15TH ST/CALEDONIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7665705430089, -122.421531295291)",160931262-79 +143001123,E17,14105861,Traffic Collision,10/27/2014,10/27/2014,10/27/2014 10:18:55 AM,10/27/2014 10:21:20 AM,10/27/2014 10:22:30 AM,10/27/2014 10:23:07 AM,10/27/2014 10:34:49 AM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Code 2 Transport,10/27/2014 11:02:08 AM,100 Block of 3RD ST,,94105,B10,44,6544,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",143001123-E17 +151533722,E04,15058486,Traffic Collision,06/02/2015,06/02/2015,06/02/2015 10:49:06 PM,06/02/2015 10:52:41 PM,06/02/2015 10:52:59 PM,06/02/2015 10:54:08 PM,06/02/2015 10:58:36 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/02/2015 11:35:10 PM,900 Block of MARIPOSA ST,San Francisco,94158,B03,29,2436,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Potrero Hill,"(37.7641315614152, -122.392835067648)",151533722-E04 +143552087,E38,14126937,Administrative,12/21/2014,12/21/2014,12/21/2014 01:57:26 PM,12/21/2014 01:57:31 PM,12/21/2014 01:59:11 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 01:59:31 PM,2100 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",143552087-E38 +152852740,KM01,15109505,Medical Incident,10/12/2015,10/12/2015,10/12/2015 04:40:37 PM,10/12/2015 04:40:37 PM,10/12/2015 04:41:09 PM,10/12/2015 04:42:00 PM,10/12/2015 04:47:07 PM,10/12/2015 05:10:12 PM,10/12/2015 05:16:44 PM,Code 2 Transport,10/12/2015 05:51:15 PM,900 Block of FULTON ST,San Francisco,94117,B05,5,3626,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7776493804363, -122.432407664511)",152852740-KM01 +142701335,E21,14094657,Alarms,09/27/2014,09/27/2014,09/27/2014 10:34:16 AM,09/27/2014 10:35:32 AM,09/27/2014 10:35:46 AM,09/27/2014 10:39:40 AM,09/27/2014 10:43:10 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Fire,09/27/2014 10:45:07 AM,700 Block of PARKER AVE,San Francisco,94118,B05,21,4542,3,3,3,false,Alarm,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7753639647551, -122.452955343611)",142701335-E21 +152393018,KM02,15091124,Medical Incident,08/27/2015,08/27/2015,08/27/2015 05:38:35 PM,08/27/2015 05:39:01 PM,08/27/2015 05:39:38 PM,08/27/2015 05:40:18 PM,08/27/2015 05:46:04 PM,08/27/2015 06:14:51 PM,08/27/2015 06:24:42 PM,Code 3 Transport,08/27/2015 06:47:08 PM,300 Block of MAIN ST,San Francisco,94105,B03,35,2117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",152393018-KM02 +160974174,52,16038668,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:06:05 PM,04/06/2016 09:07:19 PM,04/06/2016 09:07:46 PM,04/06/2016 09:07:58 PM,04/06/2016 09:16:25 PM,04/06/2016 09:32:25 PM,04/06/2016 09:58:50 PM,Code 2 Transport,04/06/2016 10:36:01 PM,5TH ST/HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160974174-52 +161000494,60,16039621,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:02:52 AM,04/09/2016 04:04:23 AM,04/09/2016 04:05:28 AM,04/09/2016 04:05:40 AM,04/09/2016 04:16:55 AM,04/09/2016 04:40:59 AM,04/09/2016 04:48:06 AM,Code 2 Transport,04/09/2016 05:19:20 AM,8100 Block of OCEANVIEW TER,San Francisco,94132,B09,33,8412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",161000494-60 +150070559,E36,15002572,Alarms,01/07/2015,01/06/2015,01/07/2015 07:02:32 AM,01/07/2015 07:03:58 AM,01/07/2015 07:04:13 AM,01/07/2015 07:07:47 AM,01/07/2015 07:07:56 AM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Fire,01/07/2015 07:16:08 AM,300 Block of FELL ST,San Francisco,94102,B02,36,3314,3,3,3,true,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7757976823178, -122.423545172225)",150070559-E36 +151822724,86,15069554,Medical Incident,07/01/2015,07/01/2015,07/01/2015 04:43:52 PM,07/01/2015 04:44:15 PM,07/01/2015 04:46:38 PM,07/01/2015 04:46:49 PM,07/01/2015 04:55:49 PM,07/01/2015 05:10:36 PM,07/01/2015 05:31:35 PM,Code 2 Transport,07/01/2015 06:07:33 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",151822724-86 +161000466,AM20,16039617,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:49:04 AM,04/09/2016 03:49:46 AM,04/09/2016 03:50:20 AM,04/09/2016 03:50:52 AM,04/09/2016 03:56:54 AM,04/09/2016 04:11:23 AM,04/09/2016 04:25:13 AM,Code 2 Transport,04/09/2016 04:58:19 AM,600 Block of SPRUCE ST,San Francisco,94118,B05,10,4374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7828949768475, -122.453342258872)",161000466-AM20 +150361721,77,15013822,Medical Incident,02/05/2015,02/05/2015,02/05/2015 12:48:19 PM,02/05/2015 12:49:55 PM,02/05/2015 12:51:16 PM,02/05/2015 12:51:51 PM,02/05/2015 01:15:56 PM,02/05/2015 01:43:38 PM,02/05/2015 02:17:36 PM,Code 2 Transport,02/05/2015 02:57:52 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",150361721-77 +160981823,AM08,16038909,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:28:41 PM,04/07/2016 12:31:10 PM,04/07/2016 12:32:59 PM,04/07/2016 12:35:27 PM,04/07/2016 12:38:29 PM,04/07/2016 12:59:46 PM,04/07/2016 01:19:18 PM,Code 2 Transport,04/07/2016 01:50:05 PM,0 Block of BUENA VISTA TR,San Francisco,94117,B05,21,5135,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7704944345623, -122.439706222597)",160981823-AM08 +160951834,64,16037633,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:59:41 PM,04/04/2016 01:02:04 PM,04/04/2016 01:02:33 PM,04/04/2016 01:03:14 PM,04/04/2016 01:22:12 PM,04/04/2016 01:33:41 PM,04/04/2016 02:13:26 PM,Code 2 Transport,04/04/2016 02:53:25 PM,100 Block of DRUMM ST,San Francisco,94111,B01,13,1115,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",160951834-64 +160982129,KM04,16038940,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:53:22 PM,04/07/2016 01:56:10 PM,04/07/2016 01:59:24 PM,04/07/2016 02:00:08 PM,04/07/2016 02:17:05 PM,04/07/2016 02:36:59 PM,04/07/2016 03:09:11 PM,Code 2 Transport,04/07/2016 03:53:00 PM,5100 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7458165668766, -122.44007828523)",160982129-KM04 +161002224,AM14,16039830,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:18:35 PM,04/09/2016 04:20:46 PM,04/09/2016 04:20:58 PM,04/09/2016 04:21:20 PM,04/09/2016 04:29:46 PM,04/09/2016 04:53:46 PM,04/09/2016 05:14:50 PM,Code 2 Transport,04/09/2016 05:35:31 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",161002224-AM14 +153200847,B02,15122948,Gas Leak (Natural and LP Gases),11/16/2015,11/16/2015,11/16/2015 08:53:32 AM,11/16/2015 08:54:50 AM,11/16/2015 08:56:13 AM,11/16/2015 08:56:13 AM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Fire,11/16/2015 09:10:36 AM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,false,Alarm,1,CHIEF,4,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",153200847-B02 +152744165,E07,15105118,Medical Incident,10/01/2015,10/01/2015,10/01/2015 10:57:04 PM,10/01/2015 10:58:43 PM,10/01/2015 11:00:08 PM,10/01/2015 11:01:25 PM,10/01/2015 11:04:11 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Unable to Locate,10/01/2015 11:05:26 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",152744165-E07 +153111398,E26,15119531,Medical Incident,11/07/2015,11/07/2015,11/07/2015 11:17:12 AM,11/07/2015 11:18:44 AM,11/07/2015 11:19:09 AM,11/07/2015 11:21:28 AM,11/07/2015 11:24:20 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,No Merit,11/07/2015 11:31:31 AM,0 Block of LIPPARD AVE,San Francisco,94131,B09,26,8176,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Glen Park,"(37.7343228660254, -122.435628143027)",153111398-E26 +152771658,E12,15106216,Medical Incident,10/04/2015,10/04/2015,10/04/2015 12:29:05 PM,10/04/2015 12:29:52 PM,10/04/2015 12:30:25 PM,10/04/2015 12:30:38 PM,10/04/2015 12:33:04 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Code 2 Transport,10/04/2015 12:36:32 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",152771658-E12 +151401784,E51,15053154,Alarms,05/20/2015,05/20/2015,05/20/2015 01:02:22 PM,05/20/2015 01:04:31 PM,05/20/2015 01:04:42 PM,05/20/2015 01:07:54 PM,05/20/2015 01:07:54 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Fire,05/20/2015 01:12:37 PM,0 Block of GRAHAM ST,Presidio,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.8007066173192, -122.456882143505)",151401784-E51 +161001745,55,16039779,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:46:25 PM,04/09/2016 01:49:02 PM,04/09/2016 01:49:14 PM,04/09/2016 01:52:11 PM,04/09/2016 01:54:47 PM,04/09/2016 02:13:52 PM,04/09/2016 02:35:49 PM,Code 2 Transport,04/09/2016 03:14:48 PM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",161001745-55 +151794134,B02,15068529,Medical Incident,06/28/2015,06/28/2015,06/28/2015 10:56:20 PM,06/28/2015 10:56:20 PM,06/28/2015 10:56:59 PM,06/28/2015 10:58:16 PM,06/28/2015 11:01:03 PM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,No Merit,06/28/2015 11:13:54 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,A,E,3,false,Potentially Life-Threatening,1,CHIEF,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",151794134-B02 +141581906,T03,14054456,Traffic Collision,06/07/2014,06/07/2014,06/07/2014 02:47:25 PM,06/07/2014 02:47:25 PM,06/07/2014 02:48:25 PM,06/07/2014 02:49:11 PM,06/07/2014 02:50:38 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Code 2 Transport,06/07/2014 02:51:37 PM,VAN NESS AV/ELLIS ST,San Francisco,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,5,Western Addition,"(37.7838241173643, -122.421008360007)",141581906-T03 +153113729,E02,15119737,Elevator / Escalator Rescue,11/07/2015,11/07/2015,11/07/2015 10:49:03 PM,11/07/2015 10:49:46 PM,11/07/2015 10:54:05 PM,11/07/2015 10:55:51 PM,11/07/2015 10:58:42 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Patient Declined Transport,11/07/2015 11:39:58 PM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,3,3,3,true,Alarm,1,ENGINE,3,1,3,North Beach,"(37.8061880612091, -122.416243833913)",153113729-E02 +150483016,B10,15018716,Alarms,02/17/2015,02/17/2015,02/17/2015 06:23:17 PM,02/17/2015 06:24:31 PM,02/17/2015 06:24:42 PM,02/17/2015 06:25:59 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/17/2015 06:30:51 PM,1100 Block of BOWDOIN ST,San Francisco,94134,B09,42,6321,3,3,3,false,Alarm,1,CHIEF,2,9,9,Portola,"(37.7216111443853, -122.408837675477)",150483016-B10 +141260365,E36,14042851,Structure Fire,05/06/2014,05/06/2014,05/06/2014 08:38:07 PM,05/06/2014 08:38:08 PM,05/06/2014 08:38:18 PM,04/25/2016 01:17:29 PM,05/06/2014 08:42:22 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Fire,05/06/2014 08:42:38 PM,0 Block of HAIGHT ST,SAN FRANCISCO,94102,B02,36,3311,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7730976142378, -122.42211684621)",141260365-E36 +160923218,88,16036580,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:30:49 PM,04/01/2016 07:32:02 PM,04/01/2016 07:32:27 PM,04/01/2016 07:32:38 PM,04/01/2016 07:40:41 PM,04/01/2016 08:01:48 PM,04/01/2016 08:26:45 PM,Code 2 Transport,04/01/2016 09:03:49 PM,200 Block of MONTANA ST,San Francisco,94112,B09,33,8373,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7166530820689, -122.45964389425)",160923218-88 +160951204,63,16037573,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:26:40 AM,04/04/2016 10:26:40 AM,04/04/2016 10:27:21 AM,04/04/2016 10:27:49 AM,04/04/2016 10:35:03 AM,04/04/2016 12:38:05 PM,04/04/2016 01:03:24 PM,Code 2 Transport,04/04/2016 01:48:03 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,3,3,3,true,Non Life-threatening,1,MEDIC,5,2,6,Mission,"(37.7740948566882, -122.420001436964)",160951204-63 +160981489,AM02,16038880,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:10:53 AM,04/07/2016 11:11:34 AM,04/07/2016 11:12:31 AM,04/07/2016 11:12:45 AM,04/07/2016 11:18:56 AM,04/07/2016 11:35:07 AM,04/07/2016 11:53:44 AM,Code 2 Transport,04/07/2016 12:41:43 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160981489-AM02 +142062985,82,14071476,Medical Incident,07/25/2014,07/25/2014,07/25/2014 07:03:31 PM,07/25/2014 07:05:42 PM,07/25/2014 07:07:02 PM,07/25/2014 07:07:25 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Other,07/25/2014 07:24:44 PM,6TH ST/JESSIE ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",142062985-82 +150442306,B03,15017148,Alarms,02/13/2015,02/13/2015,02/13/2015 03:11:28 PM,02/13/2015 03:12:52 PM,02/13/2015 03:14:12 PM,02/13/2015 03:15:10 PM,02/13/2015 03:18:10 PM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Fire,02/13/2015 03:30:20 PM,600 Block of MISSION ST,San Francisco,94105,B03,1,2145,3,3,3,false,Alarm,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7877677693899, -122.400199374734)",150442306-B03 +151481929,AM12,15056351,Medical Incident,05/28/2015,05/28/2015,05/28/2015 02:07:20 PM,05/28/2015 02:09:43 PM,05/28/2015 02:11:20 PM,05/28/2015 02:12:01 PM,05/28/2015 02:23:32 PM,05/28/2015 02:26:31 PM,05/28/2015 02:50:16 PM,Code 2 Transport,05/28/2015 03:36:11 PM,600 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8044727215137, -122.415562636307)",151481929-AM12 +160931238,AM10,16036802,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:38:37 AM,04/02/2016 10:40:30 AM,04/02/2016 10:42:13 AM,04/02/2016 10:42:54 AM,04/02/2016 10:49:10 AM,04/02/2016 11:02:46 AM,04/02/2016 11:32:29 AM,Code 2 Transport,04/02/2016 12:11:10 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160931238-AM10 +160952739,61,16037705,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:36:41 PM,04/04/2016 04:38:32 PM,04/04/2016 04:42:14 PM,04/04/2016 04:42:28 PM,04/04/2016 05:00:11 PM,04/04/2016 05:21:25 PM,04/04/2016 05:41:26 PM,Code 2 Transport,04/04/2016 05:59:06 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",160952739-61 +142023111,RC1,14070032,Medical Incident,07/21/2014,07/21/2014,07/21/2014 08:22:28 PM,07/21/2014 08:24:30 PM,07/21/2014 08:28:47 PM,07/21/2014 08:30:31 PM,07/21/2014 08:38:08 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Patient Declined Transport,07/21/2014 09:09:35 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142023111-RC1 +150820937,E05,15031303,Gas Leak (Natural and LP Gases),03/23/2015,03/23/2015,03/23/2015 09:23:21 AM,03/23/2015 09:24:54 AM,03/23/2015 09:25:40 AM,03/23/2015 09:29:12 AM,03/23/2015 09:30:24 AM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Fire,03/23/2015 09:45:18 AM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,3,3,3,true,Alarm,1,ENGINE,1,4,5,Japantown,"(37.7865540233875, -122.42914633387)",150820937-E05 +141110425,E12,14037643,Structure Fire,04/21/2014,04/21/2014,04/21/2014 11:26:58 PM,04/21/2014 11:29:01 PM,04/21/2014 11:29:22 PM,04/25/2016 01:17:45 PM,04/21/2014 11:31:30 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Fire,04/21/2014 11:41:05 PM,500 Block of PARNASSUS AVE,SAN FRANCISCO,94131,B05,12,7323,3,3,3,true,Alarm,1,ENGINE,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",141110425-E12 +160933042,KM11,16036997,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:07:57 PM,04/02/2016 07:07:57 PM,04/02/2016 07:09:23 PM,04/02/2016 07:09:47 PM,04/02/2016 07:16:03 PM,04/02/2016 07:31:17 PM,04/02/2016 07:40:07 PM,Code 2 Transport,04/02/2016 08:00:08 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160933042-KM11 +150190552,85,15007393,Medical Incident,01/19/2015,01/18/2015,01/19/2015 06:43:05 AM,01/19/2015 06:47:50 AM,01/19/2015 06:48:05 AM,01/19/2015 06:48:21 AM,01/19/2015 07:01:30 AM,01/19/2015 07:26:05 AM,01/19/2015 07:48:03 AM,Code 2 Transport,01/19/2015 08:18:51 AM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",150190552-85 +160940979,50,16037200,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:43:49 AM,04/03/2016 08:44:43 AM,04/03/2016 08:44:57 AM,04/03/2016 08:45:08 AM,04/03/2016 08:49:04 AM,04/03/2016 08:57:00 AM,04/03/2016 09:05:35 AM,Code 3 Transport,04/03/2016 10:06:19 AM,300 Block of 11TH ST,San Francisco,94103,B02,36,5112,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7712080387402, -122.413302363173)",160940979-50 +151102797,E07,15041710,Outside Fire,04/20/2015,04/20/2015,04/20/2015 05:23:14 PM,04/20/2015 05:24:36 PM,04/20/2015 05:24:50 PM,04/20/2015 05:26:02 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,Cancelled,04/20/2015 05:27:17 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Fire,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",151102797-E07 +151221453,E25,15046252,Alarms,05/02/2015,05/02/2015,05/02/2015 12:08:51 PM,05/02/2015 12:09:54 PM,05/02/2015 12:10:20 PM,05/02/2015 12:11:50 PM,05/02/2015 12:14:43 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Fire,05/02/2015 12:24:44 PM,1000 Block of EVANS AV,San Francisco,94124,B10,25,6555,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364596123052, -122.376840481121)",151221453-E25 +150513643,E32,15019820,Medical Incident,02/20/2015,02/20/2015,02/20/2015 08:37:21 PM,02/20/2015 08:38:31 PM,02/20/2015 08:38:49 PM,02/20/2015 08:39:39 PM,04/25/2016 01:12:08 PM,04/25/2016 01:12:08 PM,04/25/2016 01:12:08 PM,Code 2 Transport,02/20/2015 08:40:00 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,6,8,Mission,"(37.748178766022, -122.4214039484)",150513643-E32 +160961671,AM10,16037999,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:20:32 PM,04/05/2016 12:21:47 PM,04/05/2016 12:23:00 PM,04/05/2016 12:24:15 PM,04/05/2016 12:28:03 PM,04/05/2016 12:50:17 PM,04/05/2016 01:19:45 PM,Code 2 Transport,04/05/2016 01:32:12 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160961671-AM10 +142371641,T10,14082420,Citizen Assist / Service Call,08/25/2014,08/25/2014,08/25/2014 12:23:16 PM,08/25/2014 12:26:38 PM,08/25/2014 12:30:31 PM,08/25/2014 12:30:31 PM,08/25/2014 12:32:18 PM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,No Merit,08/25/2014 12:37:23 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,3,3,3,false,Alarm,1,TRUCK,1,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",142371641-T10 +150952490,KM06,15036176,Medical Incident,04/05/2015,04/05/2015,04/05/2015 06:44:49 PM,04/05/2015 06:47:04 PM,04/05/2015 06:47:17 PM,04/05/2015 06:47:54 PM,04/05/2015 07:08:35 PM,04/05/2015 07:37:20 PM,04/05/2015 07:48:44 PM,Code 2 Transport,04/05/2015 08:04:05 PM,300 Block of LOWER FORT MASON ST,Fort Mason,94123,B99,51,3343,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8058923703038, -122.431246520303)",150952490-KM06 +141100256,T12,14037177,Structure Fire,04/20/2014,04/20/2014,04/20/2014 05:45:06 PM,04/20/2014 05:47:04 PM,04/20/2014 05:47:26 PM,04/20/2014 05:48:53 PM,04/20/2014 05:51:53 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Fire,04/20/2014 06:03:41 PM,4300 Block of 17TH ST,SAN FRANCISCO,94114,B05,24,5413,3,3,3,false,Alarm,1,TRUCK,6,5,8,Castro/Upper Market,"(37.7620502545235, -122.44153298408)",141100256-T12 +142812198,82,14098910,Medical Incident,10/08/2014,10/08/2014,10/08/2014 03:07:49 PM,10/08/2014 03:08:14 PM,10/08/2014 03:08:57 PM,10/08/2014 03:09:09 PM,10/08/2014 03:19:44 PM,10/08/2014 03:33:56 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 04:27:31 PM,0 Block of REDDY ST,San Francisco,94124,B10,17,6513,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7303641478199, -122.395285364874)",142812198-82 +141502061,E15,14051586,Medical Incident,05/30/2014,05/30/2014,05/30/2014 03:45:11 PM,05/30/2014 03:46:09 PM,05/30/2014 03:47:28 PM,05/30/2014 03:49:23 PM,05/30/2014 03:51:54 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Code 2 Transport,05/30/2014 03:53:33 PM,300 Block of RUSSIA AVE,San Francisco,94112,B09,43,6126,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7203009310959, -122.434349394708)",141502061-E15 +152340584,E36,15089105,Structure Fire,08/22/2015,08/21/2015,08/22/2015 05:04:25 AM,08/22/2015 05:04:25 AM,08/22/2015 05:05:11 AM,08/22/2015 05:07:15 AM,08/22/2015 05:08:42 AM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Fire,08/22/2015 05:09:00 AM,LAGUNA ST/HAYES ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7764643062528, -122.426263344902)",152340584-E36 +151541844,62,15058675,Medical Incident,06/03/2015,06/03/2015,06/03/2015 12:59:55 PM,06/03/2015 01:02:12 PM,06/03/2015 01:03:09 PM,06/03/2015 01:03:18 PM,06/03/2015 01:22:57 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Medical Examiner,06/03/2015 01:58:21 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",151541844-62 +151210967,77,15045777,Medical Incident,05/01/2015,05/01/2015,05/01/2015 08:46:15 AM,05/01/2015 08:46:15 AM,05/01/2015 08:55:16 AM,05/01/2015 08:55:42 AM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Gone on Arrival,05/01/2015 09:03:23 AM,17TH ST/VERMONT ST,San Francisco,94107,B02,29,2422,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,10,Mission Bay,"(37.7646643171585, -122.4044969781)",151210967-77 +160983588,68,16039100,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:32:09 PM,04/07/2016 08:35:39 PM,04/07/2016 08:35:58 PM,04/07/2016 08:36:08 PM,04/07/2016 08:44:00 PM,04/07/2016 08:57:55 PM,04/07/2016 09:12:18 PM,Code 2 Transport,04/07/2016 09:45:04 PM,LARKIN ST/TURK ST,San Francisco,94102,B02,3,1644,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782378943359, -122.41733888153)",160983588-68 +142282839,74,14079315,Medical Incident,08/16/2014,08/16/2014,08/16/2014 06:05:59 PM,08/16/2014 06:07:15 PM,08/16/2014 06:07:46 PM,08/16/2014 06:09:15 PM,08/16/2014 06:15:42 PM,08/16/2014 06:29:42 PM,08/16/2014 06:48:46 PM,Code 2 Transport,08/16/2014 07:12:02 PM,16TH ST/POTRERO AV,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,10,Mission,"(37.7657832995202, -122.407534230594)",142282839-74 +160940033,53,16037095,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:08:59 AM,04/03/2016 12:09:58 AM,04/03/2016 12:10:06 AM,04/03/2016 12:10:19 AM,04/03/2016 12:24:28 AM,04/03/2016 12:37:23 AM,04/03/2016 01:12:24 AM,Code 2 Transport,04/03/2016 01:37:53 AM,1300 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",160940033-53 +142983561,E21,14105358,Outside Fire,10/25/2014,10/25/2014,10/25/2014 09:41:49 PM,10/25/2014 09:42:07 PM,10/25/2014 09:42:28 PM,10/25/2014 09:45:00 PM,10/25/2014 09:45:37 PM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,Fire,10/25/2014 09:53:23 PM,200 Block of DIVISADERO ST,San Francisco,94117,B05,21,4144,3,3,3,false,Fire,1,ENGINE,1,5,5,Haight Ashbury,"(37.7717499829743, -122.437022956853)",142983561-E21 +160932291,77,16036923,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:43:42 PM,04/02/2016 03:45:58 PM,04/02/2016 03:46:11 PM,04/02/2016 03:47:05 PM,04/02/2016 03:56:51 PM,04/02/2016 04:12:45 PM,04/02/2016 04:41:31 PM,Code 2 Transport,04/02/2016 05:34:28 PM,500 Block of 33RD AVE,San Francisco,94121,B07,14,7245,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7787282416429, -122.493301622886)",160932291-77 +151010443,D3,15038118,Structure Fire,04/11/2015,04/10/2015,04/11/2015 04:04:25 AM,04/11/2015 04:07:50 AM,04/11/2015 04:08:01 AM,04/11/2015 04:09:12 AM,04/11/2015 04:11:58 AM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Fire,04/11/2015 04:15:48 AM,200 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5524,3,3,3,false,Alarm,1,CHIEF,4,6,8,Mission,"(37.7512525436366, -122.421447402761)",151010443-D3 +160983901,64,16039128,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:26:48 PM,04/07/2016 10:26:48 PM,04/07/2016 10:27:00 PM,04/07/2016 10:30:05 PM,04/07/2016 10:31:13 PM,04/07/2016 10:48:48 PM,04/07/2016 11:01:08 PM,Code 2 Transport,04/07/2016 11:52:51 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160983901-64 +143111355,KM03,14110094,Medical Incident,11/07/2014,11/07/2014,11/07/2014 11:13:38 AM,11/07/2014 11:15:09 AM,11/07/2014 11:15:48 AM,11/07/2014 11:18:16 AM,11/07/2014 11:21:49 AM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Patient Declined Transport,11/07/2014 11:55:22 AM,0 Block of DARIEN WAY,San Francisco,94127,B09,19,8553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7318676967011, -122.470957144212)",143111355-KM03 +160951695,61,16037620,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:25:43 PM,04/04/2016 12:27:08 PM,04/04/2016 12:27:48 PM,04/04/2016 12:28:00 PM,04/04/2016 12:31:36 PM,04/04/2016 12:41:32 PM,04/04/2016 01:30:18 PM,Code 2 Transport,04/04/2016 01:48:51 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160951695-61 +161001119,88,16039699,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:15:01 AM,04/09/2016 10:15:08 AM,04/09/2016 10:15:47 AM,04/09/2016 10:16:08 AM,04/09/2016 10:21:08 AM,04/09/2016 10:39:00 AM,04/09/2016 10:38:47 AM,Code 2 Transport,04/09/2016 11:13:29 AM,CALIFORNIA ST/PARKER AV,San Francisco,94118,B07,10,4436,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.786243820524, -122.454774455185)",161001119-88 +151920430,85,15073142,Medical Incident,07/11/2015,07/10/2015,07/11/2015 02:47:47 AM,07/11/2015 02:47:47 AM,07/11/2015 02:48:29 AM,07/11/2015 02:49:10 AM,07/11/2015 03:01:46 AM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,Patient Declined Transport,07/11/2015 03:58:11 AM,700 Block of ANDERSON ST,San Francisco,94110,B06,32,5743,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.734061249401, -122.415687438278)",151920430-85 +142540960,E24,14088605,Medical Incident,09/11/2014,09/11/2014,09/11/2014 09:15:24 AM,09/11/2014 09:17:04 AM,09/11/2014 09:17:28 AM,09/11/2014 09:19:26 AM,09/11/2014 09:20:27 AM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Code 2 Transport,09/11/2014 09:35:19 AM,4200 Block of 22ND ST,San Francisco,94114,B06,24,5463,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7541880494362, -122.440397827371)",142540960-E24 +153340396,88,15128275,Medical Incident,11/30/2015,11/29/2015,11/30/2015 05:39:56 AM,11/30/2015 05:39:56 AM,11/30/2015 05:41:59 AM,11/30/2015 05:42:35 AM,11/30/2015 05:48:30 AM,11/30/2015 06:04:13 AM,11/30/2015 06:10:42 AM,Code 2 Transport,11/30/2015 07:08:20 AM,MASONIC AV/GEARY BL,San Francisco,94118,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",153340396-88 +143201212,E05,14113287,Medical Incident,11/16/2014,11/16/2014,11/16/2014 10:32:36 AM,11/16/2014 10:33:52 AM,11/16/2014 10:35:29 AM,11/16/2014 10:36:12 AM,11/16/2014 10:39:49 AM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,Unable to Locate,11/16/2014 10:42:45 AM,1100 Block of SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,true,Non Life-threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",143201212-E05 +160950726,52,16037544,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:21:49 AM,04/04/2016 08:23:45 AM,04/04/2016 08:24:17 AM,04/04/2016 08:24:28 AM,04/04/2016 08:31:15 AM,04/04/2016 08:43:44 AM,04/04/2016 08:56:00 AM,Code 2 Transport,04/04/2016 09:20:45 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160950726-52 +152100470,AM24,15079892,Medical Incident,07/29/2015,07/28/2015,07/29/2015 06:34:05 AM,07/29/2015 06:35:14 AM,07/29/2015 06:37:33 AM,07/29/2015 06:38:37 AM,07/29/2015 06:41:20 AM,07/29/2015 06:47:01 AM,07/29/2015 07:12:32 AM,Code 2 Transport,07/29/2015 07:33:25 AM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.781585403105, -122.423090188841)",152100470-AM24 +153241357,E15,15124626,Medical Incident,11/20/2015,11/20/2015,11/20/2015 10:30:41 AM,11/20/2015 10:31:54 AM,11/20/2015 10:32:22 AM,11/20/2015 10:32:59 AM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,Code 2 Transport,11/20/2015 10:35:00 AM,1100 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8473,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7228664396788, -122.456076821755)",153241357-E15 +143651954,E06,14130732,Alarms,12/31/2014,12/31/2014,12/31/2014 03:11:07 PM,12/31/2014 03:12:31 PM,12/31/2014 03:14:06 PM,12/31/2014 03:14:16 PM,12/31/2014 03:15:31 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Fire,12/31/2014 03:52:10 PM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",143651954-E06 +152622879,E25,15100275,Outside Fire,09/19/2015,09/19/2015,09/19/2015 05:25:05 PM,09/19/2015 05:25:32 PM,09/19/2015 05:25:43 PM,09/19/2015 05:26:17 PM,09/19/2015 05:28:06 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Fire,09/19/2015 05:40:47 PM,CESAR CHAVEZ ST/INDIANA ST,San Francisco,94124,B10,25,2641,3,3,3,false,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7501183410943, -122.390433038827)",152622879-E25 +142462367,KM06,14085732,Medical Incident,09/03/2014,09/03/2014,09/03/2014 03:13:45 PM,09/03/2014 03:13:45 PM,09/03/2014 03:16:02 PM,09/03/2014 03:17:31 PM,09/03/2014 03:18:37 PM,09/03/2014 03:35:20 PM,09/03/2014 03:47:06 PM,Code 2 Transport,09/03/2014 04:30:45 PM,16TH ST/DOLORES ST,San Francisco,94103,B07,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",142462367-KM06 +151590779,E13,15060624,Medical Incident,06/08/2015,06/08/2015,06/08/2015 08:15:07 AM,06/08/2015 08:16:10 AM,06/08/2015 08:17:05 AM,06/08/2015 08:18:23 AM,06/08/2015 08:21:30 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Code 2 Transport,06/08/2015 08:28:36 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",151590779-E13 +150531315,57,15020357,Medical Incident,02/22/2015,02/22/2015,02/22/2015 11:14:14 AM,02/22/2015 11:15:34 AM,02/22/2015 11:15:56 AM,02/22/2015 11:16:09 AM,02/22/2015 11:20:40 AM,02/22/2015 11:34:15 AM,02/22/2015 11:58:31 AM,Code 2 Transport,02/22/2015 12:57:47 PM,0 Block of GOUGH ST,San Francisco,94102,B02,36,3311,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7733777975899, -122.422339243333)",150531315-57 +160933115,60,16037008,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:28:05 PM,04/02/2016 07:28:53 PM,04/02/2016 07:29:15 PM,04/02/2016 07:29:25 PM,04/02/2016 07:33:47 PM,04/02/2016 08:01:33 PM,04/02/2016 08:09:12 PM,Code 2 Transport,04/02/2016 08:50:20 PM,700 Block of MISSOURI ST,San Francisco,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",160933115-60 +160923610,62,16036622,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:46:33 PM,04/01/2016 09:46:33 PM,04/01/2016 09:46:48 PM,04/01/2016 09:46:56 PM,04/01/2016 09:52:59 PM,04/01/2016 10:10:16 PM,04/01/2016 10:31:36 PM,Code 2 Transport,04/01/2016 10:52:27 PM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7562403438982, -122.418755320213)",160923610-62 +141852802,E21,14064156,Structure Fire,07/04/2014,07/04/2014,07/04/2014 08:17:30 PM,07/04/2014 08:18:18 PM,07/04/2014 08:18:43 PM,07/04/2014 08:19:27 PM,07/04/2014 08:22:37 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Fire,07/04/2014 08:23:18 PM,400 Block of PRESIDIO AVE,San Francisco,94115,B04,10,4412,3,3,3,false,Alarm,1,ENGINE,5,4,2,Presidio Heights,"(37.7877326063497, -122.446815084744)",141852802-E21 +141973253,E03,14068348,Medical Incident,07/16/2014,07/16/2014,07/16/2014 07:36:59 PM,07/16/2014 07:38:11 PM,07/16/2014 07:43:57 PM,07/16/2014 07:44:49 PM,07/16/2014 07:50:23 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,No Merit,07/16/2014 07:56:30 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7769455318934, -122.416807079177)",141973253-E03 +150703049,71,15026842,Medical Incident,03/11/2015,03/11/2015,03/11/2015 06:08:28 PM,03/11/2015 06:10:04 PM,03/11/2015 06:12:05 PM,03/11/2015 06:14:20 PM,03/11/2015 06:36:19 PM,03/11/2015 07:01:30 PM,03/11/2015 07:29:49 PM,Code 2 Transport,03/11/2015 07:57:16 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",150703049-71 +141662039,E12,14057326,Medical Incident,06/15/2014,06/15/2014,06/15/2014 04:17:07 PM,06/15/2014 04:18:25 PM,06/15/2014 04:20:03 PM,06/15/2014 04:21:17 PM,06/15/2014 04:29:00 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Code 2 Transport,06/15/2014 05:13:08 PM,500 Block of MORAGA ST,San Francisco,94122,B08,22,7343,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7565171047592, -122.468471054553)",141662039-E12 +160953398,AM10,16037766,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:20:43 PM,04/04/2016 07:22:21 PM,04/04/2016 07:22:41 PM,04/04/2016 07:23:13 PM,04/04/2016 07:29:25 PM,04/04/2016 07:47:09 PM,04/04/2016 08:10:23 PM,Code 2 Transport,04/04/2016 08:22:50 PM,800 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7828439870217, -122.421651290681)",160953398-AM10 +160951587,KM13,16037610,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:01:57 PM,04/04/2016 12:04:06 PM,04/04/2016 12:05:16 PM,04/04/2016 12:08:00 PM,04/04/2016 12:20:02 PM,04/04/2016 12:45:37 PM,04/04/2016 01:24:24 PM,Code 2 Transport,04/04/2016 01:51:11 PM,0 Block of REARDON RD,San Francisco,94124,B10,17,6625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7294970477126, -122.37690786669)",160951587-KM13 +141080403,RC1,14036599,Medical Incident,04/18/2014,04/18/2014,04/18/2014 10:57:26 PM,04/18/2014 10:59:37 PM,04/18/2014 11:00:10 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Code 3 Transport,04/18/2014 11:00:50 PM,0 Block of FALLON PL,SAN FRANCISCO,94133,B01,2,1442,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Nob Hill,"(37.7977464099697, -122.413400804085)",141080403-RC1 +160961499,KM06,16037983,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:43:11 AM,04/05/2016 11:43:40 AM,04/05/2016 11:43:57 AM,04/05/2016 11:44:50 AM,04/05/2016 11:50:11 AM,04/05/2016 12:11:23 PM,04/05/2016 12:32:34 PM,Code 2 Transport,04/05/2016 01:22:25 PM,100 Block of NUEVA AVE,San Francisco,94134,B10,44,6271,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7121182087675, -122.39706939553)",160961499-KM06 +143353334,83,14118845,Medical Incident,12/01/2014,12/01/2014,12/01/2014 07:51:31 PM,12/01/2014 07:51:31 PM,12/01/2014 07:51:40 PM,12/01/2014 07:51:50 PM,12/01/2014 08:02:20 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Other,12/01/2014 08:09:31 PM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",143353334-83 +160990003,68,16039149,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:00:40 AM,04/08/2016 12:01:01 AM,04/08/2016 12:03:17 AM,04/08/2016 12:03:36 AM,04/08/2016 12:23:34 AM,04/08/2016 12:23:41 AM,04/08/2016 12:39:56 AM,Code 2 Transport,04/08/2016 01:09:35 AM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",160990003-68 +160923037,AM20,16036564,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:35:12 PM,04/01/2016 06:36:48 PM,04/01/2016 06:38:23 PM,04/01/2016 06:38:52 PM,04/01/2016 06:56:36 PM,04/01/2016 07:27:05 PM,04/01/2016 07:41:01 PM,Code 2 Transport,04/01/2016 08:25:35 PM,300 Block of FELL ST,San Francisco,94102,B02,36,3314,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7757976823178, -122.423545172225)",160923037-AM20 +150301291,T02,15011518,Medical Incident,01/30/2015,01/30/2015,01/30/2015 10:21:36 AM,01/30/2015 10:22:03 AM,01/30/2015 10:22:15 AM,01/30/2015 10:22:42 AM,01/30/2015 10:25:19 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Code 2 Transport,01/30/2015 10:31:44 AM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",150301291-T02 +153163949,E02,15121631,Medical Incident,11/12/2015,11/12/2015,11/12/2015 10:39:16 PM,11/12/2015 10:41:08 PM,11/12/2015 10:42:51 PM,11/12/2015 10:42:51 PM,11/12/2015 10:45:26 PM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,Code 2 Transport,11/12/2015 10:54:29 PM,700 Block of KEARNY ST,San Francisco,94111,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",153163949-E02 +160991267,KM09,16039262,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:05:26 AM,04/08/2016 11:07:04 AM,04/08/2016 11:09:12 AM,04/08/2016 11:10:45 AM,04/08/2016 11:16:54 AM,04/08/2016 11:38:20 AM,04/08/2016 11:49:20 AM,Code 2 Transport,04/08/2016 12:28:25 PM,1300 Block of PIERCE ST,San Francisco,94115,B05,5,3647,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",160991267-KM09 +152973574,AM24,15114201,Medical Incident,10/24/2015,10/24/2015,10/24/2015 09:45:57 PM,10/24/2015 09:47:51 PM,10/24/2015 09:48:05 PM,10/24/2015 09:48:43 PM,10/24/2015 09:51:08 PM,10/24/2015 10:04:17 PM,10/24/2015 10:23:03 PM,Code 2 Transport,10/24/2015 10:52:30 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",152973574-AM24 +150691434,T13,15026326,Alarms,03/10/2015,03/10/2015,03/10/2015 11:37:33 AM,03/10/2015 11:39:08 AM,03/10/2015 11:39:31 AM,03/10/2015 11:40:17 AM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Fire,03/10/2015 11:45:52 AM,1000 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.7942855985686, -122.409699641182)",150691434-T13 +142300572,E41,14079807,Medical Incident,08/18/2014,08/17/2014,08/18/2014 07:00:07 AM,08/18/2014 07:01:18 AM,08/18/2014 07:01:47 AM,08/18/2014 07:03:06 AM,08/18/2014 07:05:57 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Code 3 Transport,08/18/2014 07:31:57 AM,1400 Block of UNION ST,San Francisco,94109,B04,41,3131,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7986027828859, -122.423148602058)",142300572-E41 +151052589,RS2,15039746,Structure Fire,04/15/2015,04/15/2015,04/15/2015 04:14:50 PM,04/15/2015 04:16:57 PM,04/15/2015 04:19:38 PM,04/15/2015 04:21:28 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Fire,04/15/2015 04:22:47 PM,700 Block of PHELPS ST,San Francisco,94124,B10,25,6455,3,3,3,false,Alarm,1,RESCUE SQUAD,10,10,10,Bayview Hunters Point,"(37.7408256448127, -122.390478925971)",151052589-RS2 +160950524,82,16037525,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:00:57 AM,04/04/2016 07:02:33 AM,04/04/2016 07:02:50 AM,04/04/2016 07:03:00 AM,04/04/2016 07:24:39 AM,04/04/2016 07:24:42 AM,04/04/2016 07:41:20 AM,Code 2 Transport,04/04/2016 07:50:34 AM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.795777854883, -122.404981817889)",160950524-82 +161002176,50,16039825,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:07:16 PM,04/09/2016 04:08:11 PM,04/09/2016 04:08:38 PM,04/09/2016 04:08:45 PM,04/09/2016 04:10:52 PM,04/09/2016 04:42:31 PM,04/09/2016 05:17:15 PM,Code 2 Transport,04/09/2016 06:09:47 PM,0 Block of POLK ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7769444030522, -122.417995382094)",161002176-50 +161000787,AM06,16039662,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:11:47 AM,04/09/2016 08:13:06 AM,04/09/2016 08:13:21 AM,04/09/2016 08:13:54 AM,04/09/2016 08:20:14 AM,04/09/2016 08:32:35 AM,04/09/2016 08:57:41 AM,Code 2 Transport,04/09/2016 09:27:45 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",161000787-AM06 +142040193,E36,14070461,Medical Incident,07/23/2014,07/22/2014,07/23/2014 01:22:15 AM,07/23/2014 01:22:15 AM,07/23/2014 01:22:44 AM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Code 2 Transport,07/23/2014 01:25:23 AM,GROVE ST/HYDE ST,San Francisco,94103,B02,36,1552,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",142040193-E36 +141383935,E02,14047493,Medical Incident,05/18/2014,05/18/2014,05/18/2014 11:40:11 PM,05/18/2014 11:41:55 PM,05/18/2014 11:43:43 PM,05/18/2014 11:45:12 PM,05/18/2014 11:50:08 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Code 2 Transport,05/19/2014 12:01:09 AM,GEARY ST/POWELL ST,San Francisco,94102,B01,1,1323,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",141383935-E02 +160992727,AM12,16039400,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:18:47 PM,04/08/2016 05:19:34 PM,04/08/2016 05:19:55 PM,04/08/2016 05:20:36 PM,04/08/2016 05:27:29 PM,04/08/2016 05:44:46 PM,04/08/2016 06:06:35 PM,Code 2 Transport,04/08/2016 06:58:22 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",160992727-AM12 +160993040,88,16039421,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:29:36 PM,04/08/2016 06:30:42 PM,04/08/2016 06:30:51 PM,04/08/2016 06:31:11 PM,04/08/2016 06:55:13 PM,04/08/2016 07:21:43 PM,04/08/2016 07:27:57 PM,Code 2 Transport,04/08/2016 08:03:35 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160993040-88 +141583063,E11,14054575,Outside Fire,06/07/2014,06/07/2014,06/07/2014 08:52:40 PM,06/07/2014 08:55:36 PM,06/07/2014 08:55:42 PM,06/07/2014 08:57:31 PM,06/07/2014 09:00:37 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 09:05:35 PM,3000 Block of 22ND ST,San Francisco,94110,B06,7,5473,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7556120190745, -122.414925208812)",141583063-E11 +151500630,64,15056996,Medical Incident,05/30/2015,05/29/2015,05/30/2015 07:03:14 AM,05/30/2015 07:03:14 AM,05/30/2015 07:03:39 AM,05/30/2015 07:03:47 AM,05/30/2015 07:09:11 AM,05/30/2015 07:18:29 AM,05/30/2015 07:53:43 AM,Code 2 Transport,05/30/2015 08:02:29 AM,TENNESSEE ST/CESAR CHAVEZ ST,San Francisco,94124,B10,25,2641,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7502059759559, -122.388507729538)",151500630-64 +150731654,FD00A,15027898,,03/14/2015,03/14/2015,03/14/2015 12:02:01 PM,03/14/2015 12:02:55 PM,03/14/2015 01:36:37 PM,03/14/2015 01:36:37 PM,03/14/2015 01:36:37 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Code 2 Transport,03/14/2015 01:36:52 PM,1000 Block of CAYUGA AVE,San Francisco,94112,B09,15,8332,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,3,9,11,Outer Mission,"(37.7218172447591, -122.439998899049)",150731654-FD00A +141583194,E41,14054590,Structure Fire,06/07/2014,06/07/2014,06/07/2014 09:37:43 PM,06/07/2014 09:39:24 PM,06/07/2014 09:40:51 PM,06/07/2014 09:42:07 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 09:46:26 PM,600 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,false,Alarm,1,ENGINE,6,1,6,Tenderloin,"(37.7865705542086, -122.413973061638)",141583194-E41 +160960925,52,16037932,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:17:03 AM,04/05/2016 09:17:03 AM,04/05/2016 09:17:20 AM,04/05/2016 09:21:09 AM,04/05/2016 09:24:33 AM,04/05/2016 09:35:29 AM,04/05/2016 10:04:15 AM,Code 2 Transport,04/05/2016 10:25:12 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160960925-52 +142680257,87,14093762,Medical Incident,09/25/2014,09/24/2014,09/25/2014 02:20:32 AM,09/25/2014 02:23:01 AM,09/25/2014 02:23:23 AM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/25/2014 02:24:26 AM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",142680257-87 +151003681,B01,15038035,Medical Incident,04/10/2015,04/10/2015,04/10/2015 10:13:35 PM,04/10/2015 10:13:54 PM,04/10/2015 10:14:36 PM,04/10/2015 10:15:48 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Code 3 Transport,04/10/2015 10:17:00 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,E,E,3,false,Potentially Life-Threatening,1,CHIEF,7,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",151003681-B01 +143602856,T06,14128925,Medical Incident,12/26/2014,12/26/2014,12/26/2014 08:42:55 PM,12/26/2014 08:44:17 PM,12/26/2014 08:44:25 PM,12/26/2014 08:45:13 PM,12/26/2014 08:47:21 PM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Code 2 Transport,12/26/2014 08:51:10 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",143602856-T06 +152533430,T12,15096862,Alarms,09/10/2015,09/10/2015,09/10/2015 07:32:21 PM,09/10/2015 07:34:57 PM,09/10/2015 07:35:07 PM,09/10/2015 07:37:03 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Fire,09/10/2015 07:57:28 PM,1300 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,false,Alarm,1,TRUCK,3,5,5,Haight Ashbury,"(37.7703725071371, -122.444508010123)",152533430-T12 +143491354,B06,14124593,Structure Fire,12/15/2014,12/15/2014,12/15/2014 11:42:35 AM,12/15/2014 11:45:20 AM,12/15/2014 11:45:41 AM,12/15/2014 11:47:16 AM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 11:52:17 AM,0 Block of GRIJALVA DR,San Francisco,94132,B08,19,8424,3,3,3,false,Alarm,1,CHIEF,4,8,7,Lakeshore,"(37.7169631286319, -122.478704029229)",143491354-B06 +153171586,63,15121805,Medical Incident,11/13/2015,11/13/2015,11/13/2015 11:14:46 AM,11/13/2015 11:14:46 AM,11/13/2015 11:15:40 AM,11/13/2015 11:16:26 AM,11/13/2015 11:20:37 AM,11/13/2015 11:53:44 AM,11/13/2015 12:10:48 PM,Code 2 Transport,11/13/2015 12:46:32 PM,MOSCOW ST/GENEVA AV,San Francisco,94134,B09,43,6161,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7131431588266, -122.433706822023)",153171586-63 +143301000,87,14116944,Medical Incident,11/26/2014,11/26/2014,11/26/2014 09:37:30 AM,11/26/2014 09:39:14 AM,11/26/2014 09:39:36 AM,11/26/2014 09:40:17 AM,11/26/2014 09:45:50 AM,11/26/2014 10:11:12 AM,11/26/2014 10:23:01 AM,Code 2 Transport,11/26/2014 11:12:09 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",143301000-87 +143583107,AM16,14128273,Medical Incident,12/24/2014,12/24/2014,12/24/2014 10:12:00 PM,12/24/2014 10:12:00 PM,12/24/2014 10:12:35 PM,12/24/2014 10:13:07 PM,12/24/2014 10:18:42 PM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,No Merit,12/24/2014 10:22:54 PM,CHESTNUT ST/DIVISADERO ST,San Francisco,94123,B04,16,4211,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7999779796302, -122.442846090742)",143583107-AM16 +152291758,E24,15087382,Medical Incident,08/17/2015,08/17/2015,08/17/2015 12:25:41 PM,08/17/2015 12:26:17 PM,08/17/2015 12:26:39 PM,08/17/2015 12:27:53 PM,08/17/2015 12:29:07 PM,04/25/2016 01:08:52 PM,04/25/2016 01:08:52 PM,Code 2 Transport,08/17/2015 12:51:04 PM,600 Block of DOUGLASS ST,San Francisco,94114,B06,24,5516,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",152291758-E24 +150802347,FD00A,15030712,,03/21/2015,03/21/2015,03/21/2015 04:35:22 PM,03/21/2015 04:38:55 PM,03/21/2015 05:36:38 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Patient Declined Transport,03/21/2015 05:36:48 PM,20TH ST/MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,false,Potentially Life-Threatening,1,SUPPORT,4,6,9,Mission,"(37.7586325666591, -122.419052607701)",150802347-FD00A +151323189,E36,15050228,Traffic Collision,05/12/2015,05/12/2015,05/12/2015 08:18:31 PM,05/12/2015 08:18:57 PM,05/12/2015 08:23:30 PM,05/12/2015 08:23:30 PM,05/12/2015 08:25:50 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Code 3 Transport,05/12/2015 08:39:06 PM,FOLSOM ST/6TH ST,San Francisco,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7785051047871, -122.405615267864)",151323189-E36 +141090207,E07,14036789,Medical Incident,04/19/2014,04/19/2014,04/19/2014 02:06:16 PM,04/19/2014 02:06:39 PM,04/19/2014 02:06:53 PM,04/19/2014 02:07:59 PM,04/19/2014 02:10:08 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Code 2 Transport,04/19/2014 02:34:14 PM,600 Block of VALENCIA ST,SAN FRANCISCO,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",141090207-E07 +151282515,60,15048626,Medical Incident,05/08/2015,05/08/2015,05/08/2015 04:24:23 PM,05/08/2015 04:24:23 PM,05/08/2015 04:24:49 PM,05/08/2015 04:25:15 PM,05/08/2015 04:32:45 PM,05/08/2015 04:55:52 PM,05/08/2015 05:09:16 PM,Code 2 Transport,05/08/2015 05:49:16 PM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",151282515-60 +160932107,67,16036905,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:54:00 PM,04/02/2016 02:54:39 PM,04/02/2016 02:58:51 PM,04/02/2016 02:59:05 PM,04/02/2016 03:10:36 PM,04/02/2016 03:26:40 PM,04/02/2016 03:46:34 PM,Code 2 Transport,04/02/2016 04:04:21 PM,0 Block of DANIEL BURNHAM CT,San Francisco,94109,B04,3,3161,2,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7869107185707, -122.422525749968)",160932107-67 +142422044,T19,14084263,Medical Incident,08/30/2014,08/30/2014,08/30/2014 03:16:10 PM,08/30/2014 03:16:25 PM,08/30/2014 03:17:16 PM,08/30/2014 03:19:00 PM,08/30/2014 03:21:46 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 3 Transport,08/30/2014 03:30:19 PM,700 Block of JUNIPERO SERRA BLVD,San Francisco,94127,B09,19,8727,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7242258644878, -122.472362015086)",142422044-T19 +160972451,71,16038468,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:36:01 PM,04/06/2016 02:36:17 PM,04/06/2016 02:36:34 PM,04/06/2016 02:36:46 PM,04/06/2016 02:39:24 PM,04/06/2016 03:00:53 PM,04/06/2016 03:44:34 PM,Code 2 Transport,04/06/2016 03:49:41 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160972451-71 +151342584,79,15050932,Medical Incident,05/14/2015,05/14/2015,05/14/2015 04:25:44 PM,05/14/2015 04:26:23 PM,05/14/2015 04:26:48 PM,05/14/2015 04:27:00 PM,05/14/2015 04:30:55 PM,05/14/2015 04:43:13 PM,05/14/2015 05:03:15 PM,Code 2 Transport,05/14/2015 05:39:57 PM,3100 Block of 22ND ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.755524488206, -122.418208517373)",151342584-79 +143340542,82,14118268,Medical Incident,11/30/2014,11/29/2014,11/30/2014 04:09:49 AM,11/30/2014 04:11:54 AM,11/30/2014 04:29:52 AM,11/30/2014 04:29:52 AM,11/30/2014 04:41:12 AM,11/30/2014 04:55:53 AM,11/30/2014 05:06:58 AM,Code 2 Transport,11/30/2014 05:33:33 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",143340542-82 +141341357,KM04,14045679,Medical Incident,05/14/2014,05/14/2014,05/14/2014 10:45:05 AM,05/14/2014 10:47:17 AM,05/14/2014 10:49:35 AM,05/14/2014 10:50:03 AM,05/14/2014 10:57:55 AM,05/14/2014 11:22:26 AM,05/14/2014 11:30:19 AM,Code 2 Transport,05/14/2014 11:58:02 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141341357-KM04 +150562036,B04,15021447,Alarms,02/25/2015,02/25/2015,02/25/2015 01:58:29 PM,02/25/2015 01:59:30 PM,02/25/2015 02:00:17 PM,02/25/2015 02:02:10 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,No Merit,02/25/2015 02:07:00 PM,1500 Block of 4TH ST,San Francisco,94158,B03,8,2264,3,3,3,false,Alarm,1,CHIEF,2,3,6,Mission Bay,"(37.7691939413316, -122.390956407633)",150562036-B04 +152550427,T06,15097390,Structure Fire,09/12/2015,09/11/2015,09/12/2015 03:38:31 AM,09/12/2015 03:38:31 AM,09/12/2015 03:38:46 AM,09/12/2015 03:41:04 AM,09/12/2015 03:43:44 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 03:57:25 AM,400 Block of CHURCH ST,San Francisco,94114,B02,6,523,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",152550427-T06 +160952872,88,16037719,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:10:07 PM,04/04/2016 05:10:07 PM,04/04/2016 05:11:03 PM,04/04/2016 05:11:26 PM,04/04/2016 05:25:48 PM,04/04/2016 05:43:33 PM,04/04/2016 06:05:33 PM,Code 2 Transport,04/04/2016 06:43:51 PM,BAYSHORE BL/PAUL AV,San Francisco,94124,B10,44,6542,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7236162096696, -122.40078474994)",160952872-88 +160933839,KM07,16037075,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:00:53 PM,04/02/2016 11:01:48 PM,04/02/2016 11:02:01 PM,04/02/2016 11:03:00 PM,04/02/2016 11:07:07 PM,04/02/2016 11:18:25 PM,04/02/2016 11:33:25 PM,Code 2 Transport,04/03/2016 12:12:39 AM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.769082767924, -122.413353472663)",160933839-KM07 +142870404,74,14101031,Structure Fire,10/14/2014,10/13/2014,10/14/2014 04:50:21 AM,10/14/2014 04:54:39 AM,10/14/2014 04:55:26 AM,10/14/2014 04:55:38 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Fire,10/14/2014 05:01:27 AM,2500 Block of HARRISON ST,San Francisco,94110,B06,7,545,3,3,3,true,Alarm,1,MEDIC,9,6,9,Mission,"(37.7566269297106, -122.412341955639)",142870404-74 +151410787,RS1,15053489,Medical Incident,05/21/2015,05/21/2015,05/21/2015 08:06:39 AM,05/21/2015 08:07:52 AM,05/21/2015 08:08:46 AM,05/21/2015 08:12:34 AM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Code 2 Transport,05/21/2015 08:12:49 AM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2158,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7881178022274, -122.401226932683)",151410787-RS1 +151512558,E21,15057567,Alarms,05/31/2015,05/31/2015,05/31/2015 05:50:41 PM,05/31/2015 05:51:43 PM,05/31/2015 05:53:12 PM,05/31/2015 05:53:34 PM,05/31/2015 05:56:11 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Fire,05/31/2015 06:05:16 PM,800 Block of BRODERICK ST,San Francisco,94115,B05,21,4242,3,3,3,false,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",151512558-E21 +160982568,67,16038998,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:46:23 PM,04/07/2016 03:47:52 PM,04/07/2016 03:55:26 PM,04/07/2016 03:55:34 PM,04/07/2016 04:08:43 PM,04/07/2016 04:56:36 PM,04/07/2016 04:41:43 PM,Code 2 Transport,04/07/2016 05:25:12 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",160982568-67 +160940389,64,16037131,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:16:19 AM,04/03/2016 02:17:44 AM,04/03/2016 02:21:23 AM,04/03/2016 02:21:49 AM,04/03/2016 02:25:08 AM,04/03/2016 02:41:47 AM,04/03/2016 03:04:29 AM,Code 2 Transport,04/03/2016 03:48:56 AM,WEBSTER ST/LOMBARD ST,San Francisco,94123,B04,16,3461,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8000515477468, -122.434404699853)",160940389-64 +141502010,E08,14051581,Medical Incident,05/30/2014,05/30/2014,05/30/2014 03:32:07 PM,05/30/2014 03:32:59 PM,05/30/2014 03:33:57 PM,05/30/2014 03:35:52 PM,05/30/2014 03:37:29 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Code 2 Transport,05/30/2014 03:55:19 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",141502010-E08 +153211818,E32,15123435,Administrative,11/17/2015,11/17/2015,11/17/2015 12:43:32 PM,11/17/2015 12:43:37 PM,11/17/2015 12:44:17 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Cancelled,11/17/2015 12:46:20 PM,3800 Block of 26TH ST,San Francisco,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",153211818-E32 +152913402,E36,15111975,Medical Incident,10/18/2015,10/18/2015,10/18/2015 09:35:22 PM,10/18/2015 09:37:55 PM,10/18/2015 09:38:30 PM,10/18/2015 09:40:26 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Code 2 Transport,10/18/2015 09:50:05 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",152913402-E36 +151712822,E07,15065446,Structure Fire,06/20/2015,06/20/2015,06/20/2015 06:58:01 PM,06/20/2015 06:58:16 PM,06/20/2015 07:02:03 PM,06/20/2015 07:03:25 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Fire,06/20/2015 07:09:51 PM,700 Block of CASTRO ST,San Francisco,94114,B06,24,5462,3,3,3,true,Fire,1,ENGINE,12,6,8,Castro/Upper Market,"(37.7572825907591, -122.434728567346)",151712822-E07 +143621689,KM09,14129528,Medical Incident,12/28/2014,12/28/2014,12/28/2014 01:47:53 PM,12/28/2014 01:48:28 PM,12/28/2014 01:48:52 PM,12/28/2014 01:49:56 PM,12/28/2014 01:57:37 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Patient Declined Transport,12/28/2014 02:48:31 PM,2800 Block of JONES ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8075434625252, -122.41742346242)",143621689-KM09 +150121508,E13,15004713,Outside Fire,01/12/2015,01/12/2015,01/12/2015 11:57:38 AM,01/12/2015 11:57:38 AM,01/12/2015 11:58:01 AM,01/12/2015 12:01:48 PM,01/12/2015 12:01:48 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Fire,01/12/2015 12:04:31 PM,2000 Block of KEARNY ST,San Francisco,94133,B01,28,937,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",150121508-E13 +143601616,E03,14128799,Medical Incident,12/26/2014,12/26/2014,12/26/2014 02:27:20 PM,12/26/2014 02:28:17 PM,12/26/2014 02:29:17 PM,12/26/2014 02:31:19 PM,12/26/2014 02:33:37 PM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Code 2 Transport,12/26/2014 02:45:37 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",143601616-E03 +143650232,74,14130503,Medical Incident,12/31/2014,12/30/2014,12/31/2014 02:18:40 AM,12/31/2014 02:23:31 AM,12/31/2014 02:24:08 AM,12/31/2014 02:24:18 AM,12/31/2014 02:35:40 AM,12/31/2014 02:49:50 AM,12/31/2014 02:59:38 AM,Code 2 Transport,12/31/2014 03:27:36 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",143650232-74 +160974084,57,16038657,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:34:02 PM,04/06/2016 08:34:41 PM,04/06/2016 08:34:57 PM,04/06/2016 08:35:09 PM,04/06/2016 08:40:52 PM,04/06/2016 09:04:32 PM,04/06/2016 09:22:21 PM,Code 2 Transport,04/06/2016 09:50:36 PM,0 Block of MUSEUM WAY,San Francisco,94114,B05,6,5175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7645174149932, -122.440219513694)",160974084-57 +160993405,53,16039455,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:12:54 PM,04/08/2016 08:12:54 PM,04/08/2016 08:13:29 PM,04/08/2016 08:13:38 PM,04/08/2016 08:25:57 PM,04/08/2016 08:40:42 PM,04/08/2016 09:04:04 PM,Code 3 Transport,04/08/2016 09:46:26 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160993405-53 +152110848,B01,15080270,Structure Fire,07/30/2015,07/30/2015,07/30/2015 08:35:21 AM,07/30/2015 08:36:45 AM,07/30/2015 08:37:14 AM,07/30/2015 08:39:10 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 08:43:37 AM,400 Block of TERRY A FRANCOIS BL,San Francisco,94158,B03,8,2231,3,3,3,false,Alarm,1,CHIEF,6,3,6,Mission Bay,"(37.7717101258274, -122.386797176708)",152110848-B01 +142763042,83,14097057,Medical Incident,10/03/2014,10/03/2014,10/03/2014 06:01:03 PM,10/03/2014 06:02:47 PM,10/03/2014 06:03:02 PM,10/03/2014 06:03:17 PM,10/03/2014 06:09:24 PM,10/03/2014 06:18:05 PM,10/03/2014 06:30:36 PM,Code 2 Transport,10/03/2014 06:38:52 PM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",142763042-83 +152020325,AM24,15076841,Medical Incident,07/21/2015,07/20/2015,07/21/2015 03:40:24 AM,07/21/2015 03:41:07 AM,07/21/2015 03:41:22 AM,07/21/2015 03:43:06 AM,07/21/2015 03:45:10 AM,07/21/2015 03:57:38 AM,07/21/2015 04:11:25 AM,Code 2 Transport,07/21/2015 05:03:08 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",152020325-AM24 +142681046,83,14093857,Medical Incident,09/25/2014,09/25/2014,09/25/2014 09:54:21 AM,09/25/2014 09:57:49 AM,09/25/2014 09:59:43 AM,09/25/2014 09:59:49 AM,09/25/2014 10:20:05 AM,09/25/2014 10:56:18 AM,09/25/2014 11:20:24 AM,Code 2 Transport,09/25/2014 11:44:20 AM,1400 Block of QUESADA AVE,San Francisco,94124,B10,17,6571,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7307439718873, -122.386750852742)",142681046-83 +153253645,85,15125292,Medical Incident,11/21/2015,11/21/2015,11/21/2015 09:15:20 PM,11/21/2015 09:15:20 PM,11/21/2015 09:15:32 PM,11/21/2015 09:15:45 PM,11/21/2015 09:21:22 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Patient Declined Transport,11/21/2015 10:27:19 PM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",153253645-85 +160960364,KM03,16037881,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:59:57 AM,04/05/2016 05:02:42 AM,04/05/2016 05:02:51 AM,04/05/2016 05:03:16 AM,04/05/2016 05:15:48 AM,04/05/2016 05:24:14 AM,04/05/2016 06:00:49 AM,Code 2 Transport,04/05/2016 06:32:40 AM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7120147227325, -122.445301042421)",160960364-KM03 +150841808,FD00A,15032042,,03/25/2015,03/25/2015,03/25/2015 12:42:52 PM,03/25/2015 12:44:22 PM,03/25/2015 01:52:41 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,Other,03/25/2015 01:53:03 PM,BOSWORTH ST/DIAMOND ST,San Francisco,94131,B06,26,8146,3,3,3,false,Non Life-threatening,1,SUPPORT,4,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",150841808-FD00A +141981325,58,14068525,Structure Fire,07/17/2014,07/17/2014,07/17/2014 11:19:19 AM,07/17/2014 11:19:51 AM,07/17/2014 11:20:06 AM,07/17/2014 11:20:19 AM,07/17/2014 11:31:34 AM,07/17/2014 12:42:22 PM,07/17/2014 01:10:02 PM,Code 2 Transport,07/17/2014 02:03:09 PM,1000 Block of CAPITOL AVE,San Francisco,94112,B09,15,8464,3,3,3,true,Fire,1,MEDIC,10,9,11,Oceanview/Merced/Ingleside,"(37.7209309503943, -122.459132175362)",141981325-58 +151170386,64,15044096,Medical Incident,04/27/2015,04/26/2015,04/27/2015 05:06:30 AM,04/27/2015 05:08:11 AM,04/27/2015 05:17:23 AM,04/27/2015 05:17:50 AM,04/27/2015 05:25:32 AM,04/27/2015 05:33:55 AM,04/27/2015 06:03:19 AM,Code 2 Transport,04/27/2015 06:21:24 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",151170386-64 +152823662,B09,15108422,Alarms,10/09/2015,10/09/2015,10/09/2015 08:54:54 PM,10/09/2015 08:56:12 PM,10/09/2015 08:59:01 PM,10/09/2015 08:59:55 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Fire,10/09/2015 09:04:36 PM,200 Block of VIENNA ST,San Francisco,94112,B09,43,6142,3,3,3,false,Alarm,1,CHIEF,2,9,11,Excelsior,"(37.7243430998879, -122.427433355933)",152823662-B09 +160930204,75,16036687,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:17:34 AM,04/02/2016 01:17:34 AM,04/02/2016 01:23:31 AM,04/02/2016 01:25:24 AM,04/02/2016 01:33:56 AM,04/02/2016 01:59:34 AM,04/02/2016 02:13:40 AM,Code 2 Transport,04/02/2016 03:07:49 AM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",160930204-75 +152050741,B03,15077991,Structure Fire,07/24/2015,07/24/2015,07/24/2015 08:08:50 AM,07/24/2015 08:10:04 AM,07/24/2015 08:10:27 AM,07/24/2015 08:12:05 AM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Fire,07/24/2015 08:19:16 AM,0 Block of GRANT AVE,San Francisco,94108,B01,1,1321,3,3,3,false,Alarm,1,CHIEF,10,1,3,Financial District/South Beach,"(37.7871853698326, -122.404995219077)",152050741-B03 +150572001,KM04,15021809,Medical Incident,02/26/2015,02/26/2015,02/26/2015 02:05:13 PM,02/26/2015 02:07:49 PM,02/26/2015 02:08:31 PM,02/26/2015 02:09:36 PM,02/26/2015 02:15:03 PM,02/26/2015 02:37:54 PM,02/26/2015 03:05:45 PM,Code 2 Transport,02/26/2015 04:06:44 PM,POST ST/TAYLOR ST,San Francisco,94102,B01,3,1451,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7878721676702, -122.411699233294)",150572001-KM04 +160980921,67,16038817,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:33:16 AM,04/07/2016 08:33:16 AM,04/07/2016 08:33:53 AM,04/07/2016 08:34:03 AM,04/07/2016 08:39:21 AM,04/07/2016 09:17:10 AM,04/07/2016 09:30:14 AM,Code 2 Transport,04/07/2016 10:07:34 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160980921-67 +150022042,AM08,15000766,Medical Incident,01/02/2015,01/02/2015,01/02/2015 03:57:44 PM,01/02/2015 03:58:29 PM,01/02/2015 04:00:02 PM,01/02/2015 04:01:18 PM,01/02/2015 04:10:29 PM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Medical Examiner,01/02/2015 04:12:56 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",150022042-AM08 +151630951,E03,15062210,Structure Fire,06/12/2015,06/12/2015,06/12/2015 08:59:27 AM,06/12/2015 08:59:27 AM,06/12/2015 09:07:50 AM,06/12/2015 09:09:32 AM,06/12/2015 09:11:17 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/12/2015 09:12:07 AM,OFARRELL ST/TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,1,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",151630951-E03 +142440671,E03,14084929,Medical Incident,09/01/2014,08/31/2014,09/01/2014 06:49:37 AM,09/01/2014 06:49:37 AM,09/01/2014 06:50:30 AM,09/01/2014 06:50:56 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Other,09/01/2014 06:53:16 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",142440671-E03 +153050410,53,15116945,Medical Incident,11/01/2015,10/31/2015,11/01/2015 01:30:44 AM,11/01/2015 01:31:52 AM,11/01/2015 01:32:11 AM,11/01/2015 01:32:21 AM,11/01/2015 01:50:20 AM,11/01/2015 01:00:30 AM,11/01/2015 01:00:30 AM,Code 2 Transport,11/01/2015 01:43:31 AM,3600 Block of WEBSTER ST,San Francisco,94123,B04,16,3455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8042813823377, -122.435331634961)",153050410-53 +141450732,E02,14049697,Traffic Collision,05/25/2014,05/24/2014,05/25/2014 07:18:14 AM,05/25/2014 07:18:14 AM,05/25/2014 07:18:36 AM,05/25/2014 07:20:16 AM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Other,05/25/2014 07:40:43 AM,STOCKTON ST/FILBERT ST,San Francisco,94133,B01,28,1335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,1,3,North Beach,"(37.8013706557311, -122.409369119363)",141450732-E02 +152903621,E25,15111583,Fuel Spill,10/17/2015,10/17/2015,10/17/2015 09:31:16 PM,10/17/2015 09:32:18 PM,10/17/2015 09:32:34 PM,10/17/2015 09:34:19 PM,10/17/2015 09:36:10 PM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Fire,10/17/2015 09:42:56 PM,2800 Block of 3RD ST,San Francisco,94107,B10,25,2611,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7534661505978, -122.387955478164)",152903621-E25 +142262063,E03,14078515,Medical Incident,08/14/2014,08/14/2014,08/14/2014 02:48:07 PM,08/14/2014 02:48:27 PM,08/14/2014 02:50:37 PM,08/14/2014 02:50:37 PM,08/14/2014 02:52:59 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Code 2 Transport,08/14/2014 02:56:17 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",142262063-E03 +151260886,E23,15047676,Medical Incident,05/06/2015,05/06/2015,05/06/2015 08:25:44 AM,05/06/2015 08:30:20 AM,05/06/2015 08:31:05 AM,05/06/2015 08:32:44 AM,05/06/2015 08:39:53 AM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 2 Transport,05/06/2015 08:57:28 AM,TARAVAL ST/GREAT HY,San Francisco,94116,B08,23,7727,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7416730182637, -122.506865451052)",151260886-E23 +142070486,E29,14071592,Medical Incident,07/26/2014,07/25/2014,07/26/2014 03:05:30 AM,07/26/2014 03:07:09 AM,07/26/2014 03:07:58 AM,07/26/2014 03:10:27 AM,07/26/2014 03:20:30 AM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Code 2 Transport,07/26/2014 03:33:44 AM,700 Block of VERMONT ST,San Francisco,94107,B10,29,2512,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7602007427273, -122.404003567536)",142070486-E29 +151752799,E05,15066801,Medical Incident,06/24/2015,06/24/2015,06/24/2015 05:47:25 PM,06/24/2015 05:48:14 PM,06/24/2015 05:48:39 PM,06/24/2015 05:49:33 PM,06/24/2015 05:52:52 PM,04/25/2016 01:09:50 PM,04/25/2016 01:09:50 PM,Code 2 Transport,06/24/2015 05:54:25 PM,100 Block of CHURCH ST,San Francisco,94114,B02,6,5213,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7681979747465, -122.429080297019)",151752799-E05 +150942442,85,15035801,Medical Incident,04/04/2015,04/04/2015,04/04/2015 04:29:12 PM,04/04/2015 04:31:08 PM,04/04/2015 04:33:11 PM,04/04/2015 04:33:26 PM,04/04/2015 04:46:09 PM,04/04/2015 05:03:28 PM,04/04/2015 05:18:32 PM,Code 2 Transport,04/04/2015 05:38:23 PM,100 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8731,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7311387135191, -122.473787299214)",150942442-85 +141322842,T03,14045043,Medical Incident,05/12/2014,05/12/2014,05/12/2014 07:00:21 PM,05/12/2014 07:00:57 PM,05/12/2014 07:03:32 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/12/2014 07:04:56 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",141322842-T03 +160961287,57,16037964,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:47:10 AM,04/05/2016 10:47:10 AM,04/05/2016 10:47:48 AM,04/05/2016 10:47:57 AM,04/05/2016 10:59:58 AM,04/05/2016 11:26:10 AM,04/05/2016 11:53:58 AM,Code 2 Transport,04/05/2016 12:49:22 PM,100 Block of LELAND AVE,San Francisco,94134,B09,44,6256,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",160961287-57 +152012850,65,15076706,Traffic Collision,07/20/2015,07/20/2015,07/20/2015 05:24:59 PM,07/20/2015 05:25:22 PM,07/20/2015 05:29:13 PM,07/20/2015 05:29:24 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Code 2 Transport,07/20/2015 05:32:16 PM,600 Block of BAKER ST,San Francisco,94117,B05,21,4254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,5,5,Lone Mountain/USF,"(37.7768954492269, -122.44165158276)",152012850-65 +151301141,E21,15049290,Alarms,05/10/2015,05/10/2015,05/10/2015 10:49:43 AM,05/10/2015 10:51:23 AM,05/10/2015 10:51:39 AM,05/10/2015 10:53:32 AM,05/10/2015 10:56:03 AM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Fire,05/10/2015 11:28:05 AM,600 Block of STEINER ST,San Francisco,94117,B05,21,3631,3,3,3,false,Alarm,1,ENGINE,2,5,5,Hayes Valley,"(37.7751510634662, -122.432804075352)",151301141-E21 +160993666,62,16039483,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:33:13 PM,04/08/2016 09:34:06 PM,04/08/2016 09:40:21 PM,04/08/2016 09:41:09 PM,04/08/2016 09:49:53 PM,04/08/2016 10:24:56 PM,04/08/2016 10:50:58 PM,Code 2 Transport,04/08/2016 11:13:16 PM,1600 Block of GREAT HY,San Francisco,94122,B08,23,7724,2,3,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7553466896794, -122.508687726545)",160993666-62 +141060018,E08,14035614,Medical Incident,04/16/2014,04/15/2014,04/16/2014 01:20:30 AM,04/16/2014 01:23:08 AM,04/16/2014 01:23:32 AM,04/16/2014 01:24:07 AM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,Code 2 Transport,04/16/2014 01:32:14 AM,700 Block of 4TH ST,SAN FRANCISCO,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",141060018-E08 +161003344,55,16039962,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:06:51 PM,04/09/2016 10:07:37 PM,04/09/2016 10:08:23 PM,04/09/2016 10:08:35 PM,04/09/2016 10:12:13 PM,04/09/2016 10:30:13 PM,04/09/2016 10:44:24 PM,Code 2 Transport,04/09/2016 11:15:23 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",161003344-55 +151052318,RC1,15039728,Traffic Collision,04/15/2015,04/15/2015,04/15/2015 03:12:03 PM,04/15/2015 03:13:04 PM,04/15/2015 03:16:23 PM,04/15/2015 03:16:23 PM,04/15/2015 03:17:37 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Code 2 Transport,04/15/2015 04:01:51 PM,JACKSON ST/VAN NESS AV,San Francisco,94109,B04,41,3153,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,3,Russian Hill,"(37.7939350051074, -122.423048803014)",151052318-RC1 +143410202,68,14120995,Medical Incident,12/07/2014,12/06/2014,12/07/2014 01:09:14 AM,12/07/2014 01:11:38 AM,12/07/2014 01:17:53 AM,12/07/2014 01:18:12 AM,12/07/2014 01:25:49 AM,12/07/2014 01:41:36 AM,12/07/2014 01:48:48 AM,Code 2 Transport,12/07/2014 02:13:35 AM,2000 Block of OFARRELL ST,San Francisco,94115,B04,5,413,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.782664870999, -122.438053867276)",143410202-68 +151340981,E36,15050783,Medical Incident,05/14/2015,05/14/2015,05/14/2015 09:14:35 AM,05/14/2015 09:16:50 AM,05/14/2015 09:17:43 AM,05/14/2015 09:18:28 AM,05/14/2015 09:23:06 AM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,Code 2 Transport,05/14/2015 09:35:42 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",151340981-E36 +150811722,E35,15031037,Citizen Assist / Service Call,03/22/2015,03/22/2015,03/22/2015 01:17:38 PM,03/22/2015 01:18:16 PM,03/22/2015 01:18:32 PM,03/22/2015 01:19:55 PM,03/22/2015 01:22:36 PM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,Fire,03/22/2015 01:25:14 PM,MISSION ST/FREMONT ST,San Francisco,94105,B03,35,2126,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.790461066593, -122.396689696588)",150811722-E35 +151560010,64,15059344,Medical Incident,06/05/2015,06/04/2015,06/05/2015 12:05:20 AM,06/05/2015 12:05:20 AM,06/05/2015 12:05:58 AM,06/05/2015 12:06:12 AM,06/05/2015 12:08:23 AM,06/05/2015 12:17:18 AM,06/05/2015 12:44:22 AM,Code 2 Transport,06/05/2015 12:56:39 AM,6TH ST/JESSIE ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",151560010-64 +152981890,AM16,15114440,Medical Incident,10/25/2015,10/25/2015,10/25/2015 02:19:18 PM,10/25/2015 02:20:50 PM,10/25/2015 02:21:55 PM,10/25/2015 02:23:13 PM,10/25/2015 02:26:27 PM,10/25/2015 02:32:49 PM,10/25/2015 02:50:44 PM,Code 2 Transport,10/25/2015 03:17:40 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",152981890-AM16 +143060577,T05,14108198,Alarms,11/02/2014,11/01/2014,11/02/2014 03:29:16 AM,11/02/2014 03:30:39 AM,11/02/2014 03:32:25 AM,11/02/2014 03:34:25 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Fire,11/02/2014 03:38:26 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Alarm,1,TRUCK,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",143060577-T05 +160921584,88,16036429,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:31:12 PM,04/01/2016 12:33:23 PM,04/01/2016 12:33:37 PM,04/01/2016 12:33:48 PM,04/01/2016 12:36:00 PM,04/01/2016 12:51:38 PM,04/01/2016 01:04:21 PM,Code 2 Transport,04/01/2016 01:55:11 PM,1100 Block of LAGUNA ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7818107490445, -122.427415796369)",160921584-88 +150863064,77,15032946,Medical Incident,03/27/2015,03/27/2015,03/27/2015 06:36:15 PM,03/27/2015 06:36:42 PM,03/27/2015 06:37:14 PM,03/27/2015 06:37:28 PM,03/27/2015 06:42:47 PM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Other,03/27/2015 07:07:46 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",150863064-77 +141733374,77,14059838,Medical Incident,06/22/2014,06/22/2014,06/22/2014 11:08:31 PM,06/22/2014 11:08:31 PM,06/22/2014 11:09:28 PM,06/22/2014 11:10:28 PM,06/22/2014 11:21:19 PM,06/22/2014 11:27:30 PM,06/22/2014 11:38:45 PM,Code 2 Transport,06/22/2014 11:53:38 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",141733374-77 +150661740,55,15025232,Medical Incident,03/07/2015,03/07/2015,03/07/2015 12:53:19 PM,03/07/2015 12:54:56 PM,03/07/2015 12:57:30 PM,03/07/2015 12:58:09 PM,03/07/2015 01:23:10 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Against Medical Advice,03/07/2015 01:43:44 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",150661740-55 +152421516,E05,15092281,Medical Incident,08/30/2015,08/30/2015,08/30/2015 11:43:28 AM,08/30/2015 11:44:36 AM,08/30/2015 11:45:09 AM,08/30/2015 11:46:14 AM,08/30/2015 11:47:55 AM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Code 2 Transport,08/30/2015 11:57:30 AM,ELLIS ST/PIERCE ST,San Francisco,94115,B05,5,3644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7819403246016, -122.435813741095)",152421516-E05 +143390048,66,14120191,Medical Incident,12/05/2014,12/04/2014,12/05/2014 12:19:29 AM,12/05/2014 12:19:29 AM,12/05/2014 12:19:56 AM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 12:20:32 AM,24TH ST/POTRERO AV,San Francisco,94110,B10,9,2562,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Mission,"(37.7530040313925, -122.406336240587)",143390048-66 +143292588,84,14116732,Traffic Collision,11/25/2014,11/25/2014,11/25/2014 04:23:21 PM,11/25/2014 04:23:46 PM,11/25/2014 04:27:56 PM,11/25/2014 04:27:56 PM,11/25/2014 04:33:29 PM,11/25/2014 04:45:11 PM,11/25/2014 04:56:26 PM,Code 2 Transport,11/25/2014 05:32:52 PM,4TH ST/BRYANT ST,San Francisco,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7795669099357, -122.398059940086)",143292588-84 +150183470,AM20,15007298,Medical Incident,01/18/2015,01/18/2015,01/18/2015 11:02:59 PM,01/18/2015 11:02:59 PM,01/18/2015 11:03:31 PM,01/18/2015 11:04:08 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,Cancelled,01/18/2015 11:05:42 PM,200 Block of CLAY ST,San Francisco,94111,B01,13,1133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7951839313126, -122.398551121673)",150183470-AM20 +142001511,T06,14069224,Alarms,07/19/2014,07/19/2014,07/19/2014 12:43:27 PM,07/19/2014 12:45:20 PM,07/19/2014 12:46:02 PM,07/19/2014 12:48:25 PM,07/19/2014 12:48:25 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Fire,07/19/2014 12:53:05 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,3,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",142001511-T06 +152092059,T16,15079662,Medical Incident,07/28/2015,07/28/2015,07/28/2015 02:05:07 PM,07/28/2015 02:05:07 PM,07/28/2015 02:05:07 PM,07/28/2015 02:05:07 PM,07/28/2015 02:05:07 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,No Merit,07/28/2015 02:11:10 PM,SCOTT ST/MARINA BL,San Francisco,94123,B04,16,4111,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,2,Marina,"(37.8057862730196, -122.442209784032)",152092059-T16 +141080203,67,14036416,Medical Incident,04/18/2014,04/18/2014,04/18/2014 12:52:16 PM,04/18/2014 12:52:39 PM,04/18/2014 12:53:26 PM,04/18/2014 12:53:49 PM,04/18/2014 01:10:40 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Patient Declined Transport,04/18/2014 01:48:49 PM,16TH ST/GUERRERO ST,SAN FRANCISCO,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",141080203-67 +142680956,KM14,14093844,Medical Incident,09/25/2014,09/25/2014,09/25/2014 09:27:05 AM,09/25/2014 09:27:05 AM,09/25/2014 09:28:08 AM,09/25/2014 09:28:35 AM,09/25/2014 09:36:31 AM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Medical Examiner,09/25/2014 10:25:05 AM,300 Block of CHESTNUT ST,San Francisco,94133,B01,28,1336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.8041512141147, -122.409619669383)",142680956-KM14 +143493374,E36,14124800,Medical Incident,12/15/2014,12/15/2014,12/15/2014 10:20:34 PM,12/15/2014 10:21:24 PM,12/15/2014 10:21:39 PM,12/15/2014 10:22:57 PM,12/15/2014 10:25:12 PM,04/25/2016 01:13:24 PM,04/25/2016 01:13:24 PM,Code 2 Transport,12/15/2014 10:32:56 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",143493374-E36 +150222212,83,15008621,Medical Incident,01/22/2015,01/22/2015,01/22/2015 03:19:22 PM,01/22/2015 03:22:24 PM,01/22/2015 03:28:23 PM,01/22/2015 03:29:46 PM,01/22/2015 03:47:54 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Patient Declined Transport,01/22/2015 04:12:16 PM,EDDY ST/TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",150222212-83 +151042631,79,15039439,Medical Incident,04/14/2015,04/14/2015,04/14/2015 05:34:44 PM,04/14/2015 05:36:36 PM,04/14/2015 05:41:35 PM,04/14/2015 05:42:01 PM,04/14/2015 05:44:47 PM,04/14/2015 05:58:20 PM,04/14/2015 06:02:18 PM,Code 3 Transport,04/14/2015 06:27:30 PM,CHURCH ST/MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",151042631-79 +151013005,E01,15038325,Structure Fire,04/11/2015,04/11/2015,04/11/2015 07:13:45 PM,04/11/2015 07:14:23 PM,04/11/2015 07:15:35 PM,04/11/2015 07:16:38 PM,04/11/2015 07:20:44 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Fire,04/11/2015 07:22:59 PM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",151013005-E01 +160973950,83,16038644,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:56:16 PM,04/06/2016 07:57:45 PM,04/06/2016 07:58:40 PM,04/06/2016 07:58:51 PM,04/06/2016 08:24:17 PM,04/06/2016 08:24:19 PM,04/06/2016 08:54:05 PM,Code 2 Transport,04/06/2016 09:15:46 PM,500 Block of SACRAMENTO ST,San Francisco,94111,B01,13,1166,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7938844190655, -122.402569303912)",160973950-83 +141821549,T07,14062983,Structure Fire,07/01/2014,07/01/2014,07/01/2014 12:30:40 PM,07/01/2014 12:30:40 PM,07/01/2014 12:30:59 PM,07/01/2014 12:32:30 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Fire,07/01/2014 12:34:49 PM,20TH ST/MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",141821549-T07 +151860157,FD00A,15070853,,07/05/2015,07/04/2015,07/05/2015 12:31:01 AM,07/05/2015 12:31:47 AM,07/05/2015 12:38:58 AM,07/05/2015 12:38:58 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 12:39:11 AM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,3,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",151860157-FD00A +150481522,E02,15018592,Outside Fire,02/17/2015,02/17/2015,02/17/2015 11:50:49 AM,02/17/2015 11:52:35 AM,02/17/2015 11:55:27 AM,02/17/2015 11:55:27 AM,02/17/2015 11:58:55 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/17/2015 12:08:31 PM,POWELL ST/PINE ST,San Francisco,94108,B01,2,1361,3,3,3,true,Fire,1,ENGINE,2,1,3,Nob Hill,"(37.7910890007991, -122.408976276978)",150481522-E02 +160982700,82,16039013,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:18:45 PM,04/07/2016 04:19:56 PM,04/07/2016 04:49:04 PM,04/07/2016 04:49:18 PM,04/07/2016 04:52:48 PM,04/07/2016 05:04:09 PM,04/07/2016 05:20:54 PM,Code 2 Transport,04/07/2016 05:43:41 PM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",160982700-82 +142692573,E05,14094366,Medical Incident,09/26/2014,09/26/2014,09/26/2014 04:14:34 PM,09/26/2014 04:15:59 PM,09/26/2014 04:19:27 PM,09/26/2014 04:20:29 PM,09/26/2014 04:23:27 PM,04/25/2016 01:14:53 PM,04/25/2016 01:14:53 PM,Code 2 Transport,09/26/2014 04:30:55 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Japantown,"(37.7842371111665, -122.440760813886)",142692573-E05 +143532131,AM02,14126207,Medical Incident,12/19/2014,12/19/2014,12/19/2014 03:14:53 PM,12/19/2014 03:14:53 PM,12/19/2014 03:15:03 PM,12/19/2014 03:16:23 PM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,Unable to Locate,12/19/2014 03:24:10 PM,GEARY BL/STANYAN BL,San Francisco,94118,B07,10,4452,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7813812828119, -122.456295738729)",143532131-AM02 +151242952,B02,15047117,Alarms,05/04/2015,05/04/2015,05/04/2015 06:50:40 PM,05/04/2015 06:51:50 PM,05/04/2015 06:52:01 PM,05/04/2015 06:53:01 PM,05/04/2015 06:55:25 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Fire,05/04/2015 06:58:15 PM,500 Block of GOLDEN GATE AVE,San Francisco,94102,B02,36,3164,3,3,3,true,Alarm,1,CHIEF,1,2,6,Tenderloin,"(37.7810731211416, -122.419611556858)",151242952-B02 +160930919,AM02,16036767,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:04:18 AM,04/02/2016 09:04:18 AM,04/02/2016 09:05:27 AM,04/02/2016 09:06:30 AM,04/02/2016 09:17:55 AM,04/02/2016 09:33:50 AM,04/02/2016 09:45:52 AM,Code 2 Transport,04/02/2016 10:23:39 AM,0 Block of RANDALL ST,San Francisco,94131,B06,32,8112,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Glen Park,"(37.7397726632436, -122.425034949068)",160930919-AM02 +142760855,85,14096805,Medical Incident,10/03/2014,10/03/2014,10/03/2014 08:01:56 AM,10/03/2014 08:01:56 AM,10/03/2014 08:02:18 AM,10/03/2014 08:06:42 AM,10/03/2014 08:12:01 AM,10/03/2014 08:24:26 AM,10/03/2014 08:38:20 AM,Code 2 Transport,10/03/2014 09:10:51 AM,VAN NESS AV/EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",142760855-85 +142912669,AM08,14102716,Medical Incident,10/18/2014,10/18/2014,10/18/2014 05:00:45 PM,10/18/2014 05:01:41 PM,10/18/2014 05:02:29 PM,10/18/2014 05:03:37 PM,10/18/2014 05:06:11 PM,10/18/2014 05:22:21 PM,10/18/2014 05:47:41 PM,Code 2 Transport,10/18/2014 06:27:12 PM,2700 Block of TARAVAL ST,San Francisco,94116,B08,18,7621,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7422314603268, -122.495518294799)",142912669-AM08 +151202580,E05,15045500,Medical Incident,04/30/2015,04/30/2015,04/30/2015 04:07:00 PM,04/30/2015 04:08:00 PM,04/30/2015 04:08:15 PM,04/30/2015 04:09:54 PM,04/30/2015 04:12:30 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,Code 2 Transport,04/30/2015 04:26:13 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",151202580-E05 +151132176,E02,15042741,Alarms,04/23/2015,04/23/2015,04/23/2015 02:41:11 PM,04/23/2015 02:42:28 PM,04/23/2015 02:42:39 PM,04/23/2015 02:44:35 PM,04/23/2015 02:47:54 PM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Fire,04/23/2015 02:53:32 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,true,Alarm,1,ENGINE,2,1,3,North Beach,"(37.8083718015584, -122.414994322457)",151132176-E02 +143180227,E07,14112494,Medical Incident,11/14/2014,11/13/2014,11/14/2014 02:07:45 AM,11/14/2014 02:08:06 AM,11/14/2014 02:08:35 AM,11/14/2014 02:09:50 AM,11/14/2014 02:12:55 AM,04/25/2016 01:14:01 PM,04/25/2016 01:14:01 PM,Code 2 Transport,11/14/2014 02:13:55 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",143180227-E07 +153090577,T01,15118643,Alarms,11/05/2015,11/04/2015,11/05/2015 06:48:38 AM,11/05/2015 06:51:03 AM,11/05/2015 06:51:21 AM,11/05/2015 06:53:39 AM,11/05/2015 06:55:40 AM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,Fire,11/05/2015 06:58:03 AM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7826425026927, -122.407832679288)",153090577-T01 +142090059,68,14072277,Medical Incident,07/28/2014,07/27/2014,07/28/2014 12:28:09 AM,07/28/2014 12:31:06 AM,07/28/2014 12:37:09 AM,07/28/2014 12:37:09 AM,07/28/2014 12:48:03 AM,07/28/2014 01:02:08 AM,07/28/2014 01:19:56 AM,Code 2 Transport,07/28/2014 01:34:31 AM,100 Block of EUREKA ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7598966472322, -122.438119879768)",142090059-68 +152640277,E01,15100922,Medical Incident,09/21/2015,09/20/2015,09/21/2015 02:35:09 AM,09/21/2015 02:35:48 AM,09/21/2015 02:36:24 AM,09/21/2015 02:39:01 AM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Code 2 Transport,09/21/2015 02:41:41 AM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7744210164083, -122.412349532554)",152640277-E01 +143100296,E36,14109592,Medical Incident,11/06/2014,11/05/2014,11/06/2014 03:33:43 AM,11/06/2014 03:34:09 AM,11/06/2014 03:34:20 AM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Patient Declined Transport,11/06/2014 03:39:37 AM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",143100296-E36 +142343974,B02,14081525,Alarms,08/22/2014,08/22/2014,08/22/2014 11:30:48 PM,08/22/2014 11:30:48 PM,08/22/2014 11:31:06 PM,08/22/2014 11:32:58 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 11:48:40 PM,1000 Block of MINNA ST,San Francisco,94103,B02,36,5114,3,3,3,true,Alarm,1,CHIEF,3,2,6,Mission,"(37.7734838277891, -122.416961978206)",142343974-B02 +152051766,77,15078066,Medical Incident,07/24/2015,07/24/2015,07/24/2015 12:44:07 PM,07/24/2015 12:44:07 PM,07/24/2015 12:44:59 PM,07/24/2015 12:45:08 PM,07/24/2015 12:50:48 PM,07/24/2015 12:59:06 PM,07/24/2015 01:40:05 PM,Code 2 Transport,07/24/2015 02:17:32 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",152051766-77 +152331440,E17,15088797,Medical Incident,08/21/2015,08/21/2015,08/21/2015 10:49:56 AM,08/21/2015 10:52:56 AM,08/21/2015 10:53:06 AM,08/21/2015 10:53:39 AM,08/21/2015 10:58:05 AM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Code 2 Transport,08/21/2015 11:08:01 AM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7194008333885, -122.387234795761)",152331440-E17 +150030840,E38,15001024,Structure Fire,01/03/2015,01/03/2015,01/03/2015 08:49:29 AM,01/03/2015 08:50:29 AM,01/03/2015 08:50:43 AM,01/03/2015 08:52:21 AM,01/03/2015 08:55:21 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Fire,01/03/2015 09:04:42 AM,2200 Block of CHESTNUT ST,San Francisco,94123,B04,16,3661,3,3,3,false,Alarm,1,ENGINE,3,4,2,Marina,"(37.800406453512, -122.439917841054)",150030840-E38 +151530054,89,15058107,Medical Incident,06/02/2015,06/01/2015,06/02/2015 12:16:55 AM,06/02/2015 12:16:55 AM,06/02/2015 12:17:42 AM,06/02/2015 12:17:56 AM,06/02/2015 12:21:13 AM,06/02/2015 12:48:27 AM,06/02/2015 01:12:07 AM,Code 2 Transport,06/02/2015 02:01:58 AM,31ST AV/NORIEGA ST,San Francisco,94122,B08,18,7534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7536741932902, -122.489323710584)",151530054-89 +152421758,E25,15092306,Medical Incident,08/30/2015,08/30/2015,08/30/2015 12:56:05 PM,08/30/2015 12:56:15 PM,08/30/2015 12:56:35 PM,08/30/2015 12:57:33 PM,08/30/2015 12:59:28 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Code 2 Transport,08/30/2015 01:05:50 PM,700 Block of NEWHALL ST,San Francisco,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7397012677427, -122.388497566799)",152421758-E25 +160961986,62,16038031,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:35:21 PM,04/05/2016 01:37:09 PM,04/05/2016 01:39:21 PM,04/05/2016 01:39:39 PM,04/05/2016 01:45:30 PM,04/05/2016 02:22:17 PM,04/05/2016 02:44:23 PM,Code 2 Transport,04/05/2016 03:03:00 PM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7720616394566, -122.419213394918)",160961986-62 +160983052,52,16039049,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:02:14 PM,04/07/2016 06:02:39 PM,04/07/2016 06:02:51 PM,04/07/2016 06:03:46 PM,04/07/2016 06:18:59 PM,04/07/2016 06:48:30 PM,04/07/2016 07:24:32 PM,Code 2 Transport,04/07/2016 07:46:57 PM,0 Block of CHUMASERO DR,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",160983052-52 +150440849,E09,15017025,Medical Incident,02/13/2015,02/13/2015,02/13/2015 08:21:38 AM,02/13/2015 08:24:00 AM,02/13/2015 08:28:26 AM,02/13/2015 08:29:41 AM,02/13/2015 08:53:44 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Against Medical Advice,02/13/2015 09:07:30 AM,100 Block of NAPOLEON ST,San Francisco,94124,B10,9,6422,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7469874361298, -122.399147231229)",150440849-E09 +142561043,E01,14089356,Medical Incident,09/13/2014,09/13/2014,09/13/2014 09:18:29 AM,09/13/2014 09:20:09 AM,09/13/2014 09:23:08 AM,09/13/2014 09:23:08 AM,09/13/2014 09:23:37 AM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/13/2014 09:29:58 AM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7865110076551, -122.401594634646)",142561043-E01 +160943199,52,16037405,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:01:41 PM,04/03/2016 08:02:31 PM,04/03/2016 08:03:05 PM,04/03/2016 08:06:02 PM,04/03/2016 08:06:22 PM,04/03/2016 08:31:23 PM,04/03/2016 08:40:43 PM,Code 2 Transport,04/03/2016 09:26:15 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7848479162045, -122.40394643108)",160943199-52 +152624187,D2,15100422,Structure Fire,09/19/2015,09/19/2015,09/19/2015 11:09:34 PM,09/19/2015 11:10:26 PM,09/19/2015 11:10:41 PM,09/19/2015 11:12:01 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Fire,09/19/2015 11:15:49 PM,FELL ST/VAN NESS AV,San Francisco,94102,B02,36,3111,3,3,3,false,Alarm,1,CHIEF,11,2,5,Hayes Valley,"(37.7763688687361, -122.419506294961)",152624187-D2 +152000115,79,15076064,Medical Incident,07/19/2015,07/18/2015,07/19/2015 12:28:50 AM,07/19/2015 12:30:43 AM,07/19/2015 12:32:38 AM,07/19/2015 12:32:45 AM,07/19/2015 12:41:46 AM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,No Merit,07/19/2015 12:59:02 AM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",152000115-79 +143093116,75,14109494,Traffic Collision,11/05/2014,11/05/2014,11/05/2014 07:30:57 PM,11/05/2014 07:31:38 PM,11/05/2014 07:32:08 PM,11/05/2014 07:32:17 PM,11/05/2014 07:38:34 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Patient Declined Transport,11/05/2014 08:09:01 PM,GEARY BL/MASONIC AV,San Francisco,94118,B05,10,4365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",143093116-75 +160942989,AM10,16037377,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 06:48:48 PM,04/03/2016 06:49:09 PM,04/03/2016 06:49:59 PM,04/03/2016 06:50:34 PM,04/03/2016 06:53:33 PM,04/03/2016 07:07:35 PM,04/03/2016 07:25:28 PM,Code 2 Transport,04/03/2016 08:14:52 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7854670505017, -122.415977627827)",160942989-AM10 +150251948,57,15009680,Medical Incident,01/25/2015,01/25/2015,01/25/2015 02:09:47 PM,01/25/2015 02:10:34 PM,01/25/2015 02:10:42 PM,01/25/2015 02:11:01 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,Code 3 Transport,01/25/2015 02:19:37 PM,1500 Block of 24TH AVE,San Francisco,94122,B08,22,7447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,8,4,Sunset/Parkside,"(37.7586664205644, -122.482086757814)",150251948-57 +142520802,E08,14087886,Structure Fire,09/09/2014,09/09/2014,09/09/2014 09:30:15 AM,09/09/2014 09:30:15 AM,09/09/2014 09:31:12 AM,09/09/2014 09:31:38 AM,09/09/2014 09:32:51 AM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,Fire,09/09/2014 09:35:10 AM,6TH ST/BRYANT ST,San Francisco,94107,B03,8,2255,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7760393195221, -122.402524096783)",142520802-E08 +143230980,KM09,14114284,Medical Incident,11/19/2014,11/19/2014,11/19/2014 10:08:37 AM,11/19/2014 10:08:44 AM,11/19/2014 10:09:16 AM,11/19/2014 10:12:00 AM,11/19/2014 10:16:59 AM,11/19/2014 10:38:11 AM,11/19/2014 10:45:51 AM,Code 3 Transport,11/19/2014 12:13:06 PM,600 Block of CHESTNUT ST,San Francisco,94133,B01,28,1424,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8037059928604, -122.414061181051)",143230980-KM09 +141413426,82,14048505,Medical Incident,05/21/2014,05/21/2014,05/21/2014 09:47:37 PM,05/21/2014 09:48:07 PM,05/21/2014 09:48:54 PM,05/21/2014 09:49:02 PM,05/21/2014 09:59:44 PM,05/21/2014 10:29:22 PM,05/21/2014 10:46:55 PM,Code 2 Transport,05/21/2014 11:17:40 PM,1800 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",141413426-82 +141641256,E07,14056494,Medical Incident,06/13/2014,06/13/2014,06/13/2014 11:11:19 AM,06/13/2014 11:13:06 AM,06/13/2014 11:14:02 AM,06/13/2014 11:14:28 AM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/13/2014 11:23:19 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7563716216308, -122.416574134534)",141641256-E07 +160990921,KM09,16039232,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:18:50 AM,04/08/2016 09:21:21 AM,04/08/2016 09:23:03 AM,04/08/2016 09:23:56 AM,04/08/2016 09:31:13 AM,04/08/2016 10:10:45 AM,04/08/2016 10:24:43 AM,Code 2 Transport,04/08/2016 11:00:12 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160990921-KM09 +152840495,E38,15108928,Alarms,10/11/2015,10/10/2015,10/11/2015 02:51:53 AM,10/11/2015 02:53:44 AM,10/11/2015 02:54:34 AM,10/11/2015 02:55:46 AM,10/11/2015 02:57:23 AM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Fire,10/11/2015 03:02:54 AM,2500 Block of CLAY ST,San Francisco,94115,B04,38,3615,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7905522545332, -122.435015102798)",152840495-E38 +143060477,E44,14108182,Medical Incident,11/02/2014,11/01/2014,11/02/2014 02:22:43 AM,11/02/2014 02:22:58 AM,11/02/2014 02:23:27 AM,11/02/2014 02:25:43 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/02/2014 02:30:20 AM,300 Block of ELLIOT ST,San Francisco,94134,B09,44,6312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7140497782166, -122.411525566922)",143060477-E44 +141833046,E14,14063434,Medical Incident,07/02/2014,07/02/2014,07/02/2014 06:49:00 PM,07/02/2014 06:50:10 PM,07/02/2014 06:52:57 PM,07/02/2014 06:54:09 PM,07/02/2014 07:05:20 PM,04/25/2016 01:16:26 PM,04/25/2016 01:16:26 PM,Code 3 Transport,07/02/2014 07:46:19 PM,100 Block of 26TH AVE,San Francisco,94121,B07,14,7217,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Seacliff,"(37.7866330014173, -122.486212276615)",141833046-E14 +141953259,E19,14067703,Traffic Collision,07/14/2014,07/14/2014,07/14/2014 09:27:22 PM,07/14/2014 09:27:22 PM,07/14/2014 09:28:00 PM,07/14/2014 09:29:11 PM,07/14/2014 09:30:50 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Unable to Locate,07/14/2014 09:36:10 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",141953259-E19 +151000970,T07,15037771,Alarms,04/10/2015,04/10/2015,04/10/2015 09:44:59 AM,04/10/2015 09:46:20 AM,04/10/2015 09:46:55 AM,04/10/2015 09:48:59 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Fire,04/10/2015 09:51:34 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7650413541786, -122.420746190588)",151000970-T07 +150724329,E43,15027738,Medical Incident,03/13/2015,03/13/2015,03/13/2015 11:18:35 PM,03/13/2015 11:20:12 PM,03/13/2015 11:27:48 PM,03/13/2015 11:29:36 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Patient Declined Transport,03/13/2015 11:31:30 PM,0 Block of LOBOS ST,San Francisco,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.714970324741, -122.454264273625)",150724329-E43 +160980296,78,16038755,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:43:21 AM,04/07/2016 02:45:15 AM,04/07/2016 02:45:36 AM,04/07/2016 02:45:47 AM,04/07/2016 02:51:20 AM,04/07/2016 03:10:35 AM,04/07/2016 03:22:38 AM,Code 2 Transport,04/07/2016 03:48:00 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.781960649289, -122.402224095303)",160980296-78 +151770394,77,15067258,Medical Incident,06/26/2015,06/25/2015,06/26/2015 03:53:07 AM,06/26/2015 03:53:07 AM,06/26/2015 03:55:02 AM,06/26/2015 03:55:20 AM,06/26/2015 04:03:03 AM,06/26/2015 04:05:14 AM,06/26/2015 04:16:47 AM,Code 2 Transport,06/26/2015 04:28:58 AM,800 Block of ULLOA ST,San Francisco,94127,B08,39,8619,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7409217122072, -122.466013598224)",151770394-77 +161001768,71,16039781,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:55:18 PM,04/09/2016 01:55:18 PM,04/09/2016 01:56:42 PM,04/09/2016 01:56:52 PM,04/09/2016 02:05:10 PM,04/09/2016 02:19:25 PM,04/09/2016 02:39:31 PM,Code 2 Transport,04/09/2016 03:16:18 PM,1500 Block of SLOAT BLVD,San Francisco,94132,B08,19,7552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",161001768-71 +150591540,AM12,15022531,Medical Incident,02/28/2015,02/28/2015,02/28/2015 12:01:54 PM,02/28/2015 12:02:28 PM,02/28/2015 12:02:59 PM,02/28/2015 12:03:33 PM,02/28/2015 12:05:59 PM,02/28/2015 12:17:03 PM,02/28/2015 12:26:18 PM,Code 3 Transport,02/28/2015 01:09:15 PM,100 Block of SAN CARLOS ST,San Francisco,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7609848622239, -122.420120540924)",150591540-AM12 +150053847,E44,15002075,Medical Incident,01/05/2015,01/05/2015,01/05/2015 11:09:12 PM,01/05/2015 11:11:30 PM,01/05/2015 11:11:53 PM,01/05/2015 11:12:47 PM,01/05/2015 11:17:23 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 2 Transport,01/05/2015 11:27:13 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",150053847-E44 +142732743,E25,14095800,Alarms,09/30/2014,09/30/2014,09/30/2014 05:15:20 PM,09/30/2014 05:17:02 PM,09/30/2014 05:17:08 PM,09/30/2014 05:18:37 PM,09/30/2014 05:21:02 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Fire,09/30/2014 05:28:56 PM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6554,3,3,3,false,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",142732743-E25 +150172486,71,15006790,Traffic Collision,01/17/2015,01/17/2015,01/17/2015 04:42:28 PM,01/17/2015 04:43:07 PM,01/17/2015 04:44:50 PM,01/17/2015 04:45:00 PM,01/17/2015 04:54:17 PM,01/17/2015 05:09:12 PM,01/17/2015 05:42:46 PM,Code 2 Transport,01/17/2015 06:23:54 PM,TURK BL/STANYAN BL,San Francisco,94118,B07,21,4557,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7775992781141, -122.455216941832)",150172486-71 +152900382,RC1,15111273,Medical Incident,10/17/2015,10/16/2015,10/17/2015 02:20:03 AM,10/17/2015 02:20:33 AM,10/17/2015 02:23:40 AM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/17/2015 02:27:28 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",152900382-RC1 +160943584,78,16037450,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:26:17 PM,04/03/2016 10:28:07 PM,04/03/2016 10:28:23 PM,04/03/2016 10:28:31 PM,04/03/2016 10:37:44 PM,04/03/2016 10:45:25 PM,04/03/2016 10:59:50 PM,Code 2 Transport,04/03/2016 11:29:05 PM,100 Block of LANGTON ST,San Francisco,94103,B03,8,2312,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7756106325157, -122.407388973087)",160943584-78 +150312966,B08,15012088,Structure Fire,01/31/2015,01/31/2015,01/31/2015 06:44:48 PM,01/31/2015 06:45:38 PM,01/31/2015 06:46:15 PM,01/31/2015 06:47:53 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 06:52:07 PM,0 Block of LIEBIG ST,San Francisco,94112,B09,33,8357,3,3,3,false,Alarm,1,CHIEF,6,9,11,Outer Mission,"(37.7089888345409, -122.456754288707)",150312966-B08 +143540262,E36,14126381,Medical Incident,12/20/2014,12/19/2014,12/20/2014 01:07:24 AM,12/20/2014 01:09:04 AM,12/20/2014 01:09:21 AM,12/20/2014 01:11:55 AM,12/20/2014 01:14:31 AM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,Code 2 Transport,12/20/2014 01:24:48 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",143540262-E36 +152920763,AM06,15112096,Medical Incident,10/19/2015,10/19/2015,10/19/2015 08:38:01 AM,10/19/2015 08:38:30 AM,10/19/2015 08:40:00 AM,10/19/2015 08:40:39 AM,10/19/2015 08:48:39 AM,10/19/2015 09:10:30 AM,10/19/2015 09:18:50 AM,Code 3 Transport,10/19/2015 09:55:19 AM,100 Block of BRUSSELS ST,San Francisco,94134,B10,42,6341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7301008339849, -122.406891125919)",152920763-AM06 +152334193,E24,15089024,Medical Incident,08/21/2015,08/21/2015,08/21/2015 11:02:51 PM,08/21/2015 11:02:51 PM,08/21/2015 11:03:04 PM,08/21/2015 11:05:08 PM,08/21/2015 11:07:35 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Patient Declined Transport,08/21/2015 11:18:41 PM,3400 Block of MARKET ST,San Francisco,94114,B05,24,5271,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7569301468399, -122.44269078808)",152334193-E24 +151500714,61,15057004,Medical Incident,05/30/2015,05/29/2015,05/30/2015 07:55:21 AM,05/30/2015 07:57:00 AM,05/30/2015 07:57:59 AM,05/30/2015 07:58:14 AM,05/30/2015 08:10:53 AM,05/30/2015 08:16:34 AM,05/30/2015 08:36:20 AM,Code 2 Transport,05/30/2015 09:07:59 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",151500714-61 +151080688,70,15040802,Medical Incident,04/18/2015,04/17/2015,04/18/2015 07:11:43 AM,04/18/2015 07:13:30 AM,04/18/2015 07:29:31 AM,04/18/2015 07:30:58 AM,04/18/2015 07:49:38 AM,04/18/2015 07:59:57 AM,04/18/2015 08:22:05 AM,Code 2 Transport,04/18/2015 08:57:22 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",151080688-70 +141800579,E05,14062113,Medical Incident,06/29/2014,06/28/2014,06/29/2014 03:39:02 AM,06/29/2014 03:39:37 AM,06/29/2014 03:39:47 AM,06/29/2014 03:41:36 AM,06/29/2014 03:42:54 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Other,06/29/2014 03:49:07 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",141800579-E05 +160933241,71,16037022,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:59:49 PM,04/02/2016 08:01:34 PM,04/02/2016 08:03:24 PM,04/02/2016 08:03:47 PM,04/02/2016 08:26:39 PM,04/02/2016 08:41:35 PM,04/02/2016 09:11:07 PM,Code 2 Transport,04/02/2016 09:36:46 PM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",160933241-71 +160992765,86,16039403,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:24:35 PM,04/08/2016 05:27:30 PM,04/08/2016 05:28:48 PM,04/08/2016 05:28:57 PM,04/08/2016 05:41:00 PM,04/08/2016 06:03:57 PM,04/08/2016 06:24:24 PM,Code 2 Transport,04/08/2016 07:10:14 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160992765-86 +150521861,B03,15020027,Alarms,02/21/2015,02/21/2015,02/21/2015 12:54:41 PM,02/21/2015 12:55:48 PM,02/21/2015 12:55:58 PM,02/21/2015 12:57:44 PM,02/21/2015 12:59:20 PM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Fire,02/21/2015 01:08:41 PM,100 Block of TOWNSEND ST,San Francisco,94107,B03,8,2172,3,3,3,false,Alarm,1,CHIEF,2,3,6,Mission Bay,"(37.7796910137658, -122.391588816975)",150521861-B03 +141080286,T02,14036490,Structure Fire,04/18/2014,04/18/2014,04/18/2014 04:54:51 PM,04/18/2014 04:54:51 PM,04/18/2014 04:54:59 PM,04/18/2014 04:57:07 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Fire,04/18/2014 04:59:34 PM,GRANT AV/JACKSON ST,SAN FRANCISCO,94133,B01,2,1312,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",141080286-T02 +160983202,53,16039067,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:37:01 PM,04/07/2016 06:37:32 PM,04/07/2016 06:37:58 PM,04/07/2016 06:38:08 PM,04/07/2016 06:43:31 PM,04/07/2016 07:08:26 PM,04/07/2016 07:12:59 PM,Code 2 Transport,04/07/2016 09:05:46 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160983202-53 +141200205,85,14040560,Medical Incident,04/30/2014,04/30/2014,04/30/2014 01:40:55 PM,04/30/2014 01:42:23 PM,04/30/2014 01:42:51 PM,04/30/2014 01:43:03 PM,04/30/2014 02:02:40 PM,04/30/2014 02:14:46 PM,04/30/2014 02:26:13 PM,Code 2 Transport,04/30/2014 02:45:30 PM,7500 Block of GEARY BLVD,SAN FRANCISCO,94121,B07,34,7264,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",141200205-85 +142671859,AM24,14093506,Medical Incident,09/24/2014,09/24/2014,09/24/2014 12:57:54 PM,09/24/2014 12:59:09 PM,09/24/2014 12:59:31 PM,09/24/2014 01:07:17 PM,09/24/2014 01:25:52 PM,09/24/2014 01:25:54 PM,09/24/2014 01:54:36 PM,Code 2 Transport,09/24/2014 02:10:37 PM,3RD ST/EVANS AV,San Francisco,94124,B10,25,6457,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",142671859-AM24 +152020816,B08,15076898,Alarms,07/21/2015,07/21/2015,07/21/2015 08:25:43 AM,07/21/2015 08:27:19 AM,07/21/2015 08:27:40 AM,07/21/2015 08:28:39 AM,07/21/2015 08:32:08 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/21/2015 08:49:12 AM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,false,Alarm,1,CHIEF,3,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",152020816-B08 +142630563,84,14091880,Medical Incident,09/20/2014,09/19/2014,09/20/2014 04:22:30 AM,09/20/2014 04:23:12 AM,09/20/2014 04:23:29 AM,09/20/2014 04:23:44 AM,09/20/2014 04:27:28 AM,09/20/2014 04:41:39 AM,09/20/2014 04:52:16 AM,Code 2 Transport,09/20/2014 05:42:06 AM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7562319946436, -122.418893283075)",142630563-84 +150012273,AM08,15000377,Medical Incident,01/01/2015,01/01/2015,01/01/2015 02:42:01 PM,01/01/2015 02:45:54 PM,01/01/2015 02:46:16 PM,01/01/2015 02:47:01 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,No Merit,01/01/2015 02:53:14 PM,1900 Block of LOMBARD ST,San Francisco,94123,B04,16,3461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8002723548355, -122.433605968659)",150012273-AM08 +161002341,64,16039845,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:00:44 PM,04/09/2016 05:01:32 PM,04/09/2016 05:01:44 PM,04/09/2016 05:03:25 PM,04/09/2016 05:09:29 PM,04/09/2016 05:18:44 PM,04/09/2016 05:42:15 PM,Code 2 Transport,04/09/2016 05:59:51 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",161002341-64 +152503657,KM07,15095682,Medical Incident,09/07/2015,09/07/2015,09/07/2015 11:03:05 PM,09/07/2015 11:05:20 PM,09/07/2015 11:06:44 PM,09/07/2015 11:07:12 PM,09/07/2015 11:16:19 PM,09/07/2015 11:36:38 PM,09/07/2015 11:47:31 PM,Code 2 Transport,09/08/2015 12:13:24 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",152503657-KM07 +152912819,E14,15111912,Medical Incident,10/18/2015,10/18/2015,10/18/2015 06:12:57 PM,10/18/2015 06:12:57 PM,10/18/2015 06:13:02 PM,10/18/2015 06:14:39 PM,10/18/2015 06:17:56 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Medical Examiner,10/18/2015 06:53:21 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,2,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",152912819-E14 +160942324,76,16037312,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:30:29 PM,04/03/2016 03:31:45 PM,04/03/2016 03:32:34 PM,04/03/2016 03:32:52 PM,04/03/2016 03:43:31 PM,04/03/2016 04:07:34 PM,04/03/2016 04:21:45 PM,Code 2 Transport,04/03/2016 04:49:56 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160942324-76 +160941595,62,16037244,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:46:55 AM,04/03/2016 11:47:52 AM,04/03/2016 11:48:20 AM,04/03/2016 11:48:42 AM,04/03/2016 12:08:20 PM,04/03/2016 12:38:43 PM,04/03/2016 01:28:03 PM,Code 2 Transport,04/03/2016 02:00:02 PM,600 Block of 39TH AVE,San Francisco,94121,B07,34,7257,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.776553267268, -122.499453605944)",160941595-62 +141350470,E34,14046031,Outside Fire,05/15/2014,05/14/2014,05/15/2014 05:36:24 AM,05/15/2014 05:37:18 AM,05/15/2014 05:37:32 AM,05/15/2014 05:39:49 AM,05/15/2014 05:41:53 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/15/2014 06:12:29 AM,FULTON ST/47TH AV,San Francisco,94121,B07,34,7272,3,3,3,false,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7714950322209, -122.507750664634)",141350470-E34 +160921278,AM12,16036399,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:59:38 AM,04/01/2016 11:00:47 AM,04/01/2016 11:01:15 AM,04/01/2016 11:01:49 AM,04/01/2016 11:05:28 AM,04/01/2016 11:35:36 AM,04/01/2016 11:50:31 AM,Code 2 Transport,04/01/2016 12:20:48 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160921278-AM12 +161002190,AM12,16039826,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:12:27 PM,04/09/2016 04:12:27 PM,04/09/2016 04:13:32 PM,04/09/2016 04:14:14 PM,04/09/2016 04:22:20 PM,04/09/2016 04:29:06 PM,04/09/2016 04:39:11 PM,Code 2 Transport,04/09/2016 05:12:00 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",161002190-AM12 +151421177,E03,15053921,Alarms,05/22/2015,05/22/2015,05/22/2015 09:54:48 AM,05/22/2015 09:56:55 AM,05/22/2015 09:57:08 AM,05/22/2015 09:58:38 AM,05/22/2015 10:01:08 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Fire,05/22/2015 10:04:05 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",151421177-E03 +160991537,AM02,16039279,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:23:31 PM,04/08/2016 12:23:31 PM,04/08/2016 12:24:24 PM,04/08/2016 12:24:39 PM,04/08/2016 12:33:02 PM,04/08/2016 12:47:23 PM,04/08/2016 12:55:44 PM,Code 2 Transport,04/08/2016 01:46:23 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7832636870331, -122.407051190493)",160991537-AM02 +160923904,60,16036645,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:03:53 PM,04/01/2016 11:03:53 PM,04/01/2016 11:05:26 PM,04/01/2016 11:06:10 PM,04/01/2016 11:09:02 PM,04/01/2016 11:28:26 PM,04/01/2016 11:37:00 PM,Code 2 Transport,04/02/2016 12:23:14 AM,700 Block of JACKSON ST,San Francisco,94133,B01,2,1312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7959498779613, -122.407691357512)",160923904-60 +160940004,64,16037091,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:59:32 PM,04/03/2016 12:01:29 AM,04/03/2016 12:02:22 AM,04/03/2016 12:02:44 AM,04/03/2016 12:04:08 AM,04/03/2016 12:16:52 AM,04/03/2016 12:19:28 AM,Code 2 Transport,04/03/2016 12:59:56 AM,CASTRO ST/STATES ST,San Francisco,94114,B05,6,5253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7634628374889, -122.435258661264)",160940004-64 +151803786,KM06,15068939,Medical Incident,06/29/2015,06/29/2015,06/29/2015 11:05:16 PM,06/29/2015 11:06:12 PM,06/29/2015 11:06:29 PM,06/29/2015 11:07:03 PM,06/29/2015 11:11:58 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,No Merit,06/29/2015 11:18:02 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7785992634984, -122.408503211368)",151803786-KM06 +141421256,E02,14048641,Medical Incident,05/22/2014,05/22/2014,05/22/2014 10:52:24 AM,05/22/2014 10:55:43 AM,05/22/2014 10:56:12 AM,05/22/2014 10:56:39 AM,05/22/2014 10:59:00 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 3 Transport,05/22/2014 11:14:09 AM,800 Block of GREENWICH ST,San Francisco,94133,B01,28,1423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.8016854989716, -122.414070883397)",141421256-E02 +161002964,86,16039917,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:09:35 PM,04/09/2016 08:12:43 PM,04/09/2016 08:13:13 PM,04/09/2016 08:13:23 PM,04/09/2016 08:19:52 PM,04/09/2016 08:40:49 PM,04/09/2016 09:13:57 PM,Code 2 Transport,04/09/2016 09:42:13 PM,400 Block of 25TH AVE,San Francisco,94121,B07,14,7213,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7810622346199, -122.484734171651)",161002964-86 +151783400,E13,15067936,Structure Fire,06/27/2015,06/27/2015,06/27/2015 08:03:00 PM,06/27/2015 08:03:00 PM,06/27/2015 08:03:06 PM,06/27/2015 08:03:58 PM,06/27/2015 08:05:27 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,Fire,06/27/2015 08:05:31 PM,BATTERY ST/CLAY ST,San Francisco,94111,B01,13,1161,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7950131479598, -122.400329335061)",151783400-E13 +143280842,AM06,14116196,Medical Incident,11/24/2014,11/24/2014,11/24/2014 08:38:04 AM,11/24/2014 08:40:46 AM,11/24/2014 08:41:02 AM,11/24/2014 08:42:20 AM,11/24/2014 08:48:16 AM,04/25/2016 01:13:50 PM,04/25/2016 01:13:50 PM,Against Medical Advice,11/24/2014 09:18:36 AM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7120857687728, -122.445406512004)",143280842-AM06 +150482830,B02,15018701,Alarms,02/17/2015,02/17/2015,02/17/2015 05:28:11 PM,02/17/2015 05:29:35 PM,02/17/2015 05:29:45 PM,02/17/2015 05:30:56 PM,02/17/2015 05:33:26 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/17/2015 05:44:18 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7777903094246, -122.412834332129)",150482830-B02 +143533536,T06,14126317,Citizen Assist / Service Call,12/19/2014,12/19/2014,12/19/2014 09:25:57 PM,12/19/2014 09:27:06 PM,12/19/2014 09:27:36 PM,12/19/2014 09:28:33 PM,12/19/2014 09:32:37 PM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,Fire,12/19/2014 09:48:41 PM,CASTRO ST/STATES ST,San Francisco,94114,B05,6,5253,3,3,3,false,Alarm,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7634628374889, -122.435258661264)",143533536-T06 +151250931,T03,15047291,Medical Incident,05/05/2015,05/05/2015,05/05/2015 09:17:33 AM,05/05/2015 09:18:43 AM,05/05/2015 09:19:20 AM,05/05/2015 09:21:22 AM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Code 2 Transport,05/05/2015 09:21:44 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,E,3,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",151250931-T03 +152860276,E01,15109706,Medical Incident,10/13/2015,10/12/2015,10/13/2015 02:45:48 AM,10/13/2015 02:47:03 AM,10/13/2015 02:47:40 AM,10/13/2015 02:49:48 AM,10/13/2015 02:50:38 AM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Code 2 Transport,10/13/2015 02:54:32 AM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7798137203933, -122.403860419019)",152860276-E01 +160991899,85,16039320,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:58:58 PM,04/08/2016 01:59:31 PM,04/08/2016 02:00:02 PM,04/08/2016 02:00:35 PM,04/08/2016 02:19:56 PM,04/08/2016 02:27:52 PM,04/08/2016 02:52:17 PM,Code 2 Transport,04/08/2016 03:56:35 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160991899-85 +160930023,78,16036668,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:08:26 AM,04/02/2016 12:08:26 AM,04/02/2016 12:08:55 AM,04/02/2016 12:09:55 AM,04/02/2016 12:14:24 AM,04/02/2016 12:29:19 AM,04/02/2016 12:41:55 AM,Code 3 Transport,04/02/2016 01:48:42 AM,300 Block of CHESTNUT ST,San Francisco,94133,B01,28,1336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8042509638985, -122.408817647565)",160930023-78 +142333661,E14,14081141,Structure Fire,08/21/2014,08/21/2014,08/21/2014 10:35:13 PM,08/21/2014 10:36:11 PM,08/21/2014 10:36:44 PM,08/21/2014 10:48:53 PM,08/21/2014 10:48:53 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,Fire,08/21/2014 11:00:22 PM,300 Block of 24TH AVE,San Francisco,94121,B07,14,7214,3,3,3,true,Fire,1,ENGINE,8,7,1,Outer Richmond,"(37.7830006442599, -122.483939034671)",142333661-E14 +143450247,77,14122562,Structure Fire,12/11/2014,12/10/2014,12/11/2014 02:09:47 AM,12/11/2014 02:10:52 AM,12/11/2014 02:12:45 AM,12/11/2014 02:13:16 AM,12/11/2014 02:19:58 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/11/2014 02:24:45 AM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,3,3,3,true,Alarm,1,MEDIC,6,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",143450247-77 +141531156,KM09,14052506,Medical Incident,06/02/2014,06/02/2014,06/02/2014 10:26:11 AM,06/02/2014 10:26:33 AM,06/02/2014 10:27:36 AM,06/02/2014 10:28:11 AM,06/02/2014 10:29:48 AM,06/02/2014 10:47:49 AM,06/02/2014 10:55:15 AM,Code 3 Transport,06/02/2014 11:23:37 AM,MISSION ST/19TH ST,San Francisco,94110,B02,7,5423,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",141531156-KM09 +153051435,57,15117097,Medical Incident,11/01/2015,10/31/2015,11/01/2015 07:54:30 AM,11/01/2015 07:56:33 AM,11/01/2015 07:56:52 AM,11/01/2015 07:57:31 AM,11/01/2015 08:09:26 AM,11/01/2015 08:41:18 AM,11/01/2015 09:11:39 AM,Code 2 Transport,11/01/2015 09:45:26 AM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",153051435-57 +151030465,E17,15038830,Medical Incident,04/13/2015,04/12/2015,04/13/2015 05:57:13 AM,04/13/2015 05:58:36 AM,04/13/2015 05:59:14 AM,04/13/2015 06:01:27 AM,04/13/2015 06:05:19 AM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Code 2 Transport,04/13/2015 06:13:17 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",151030465-E17 +160963545,52,16038159,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:42:53 PM,04/05/2016 07:44:32 PM,04/05/2016 07:45:08 PM,04/05/2016 07:45:15 PM,04/05/2016 07:51:02 PM,04/05/2016 08:00:05 PM,04/05/2016 08:18:47 PM,Code 2 Transport,04/05/2016 09:10:18 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160963545-52 +152781826,61,15106662,Medical Incident,10/05/2015,10/05/2015,10/05/2015 01:27:07 PM,10/05/2015 01:27:58 PM,10/05/2015 01:28:24 PM,10/05/2015 01:29:05 PM,10/05/2015 01:38:25 PM,10/05/2015 01:59:28 PM,10/05/2015 02:30:23 PM,Code 2 Transport,10/05/2015 03:06:59 PM,1700 Block of 8TH AVE,San Francisco,94122,B08,22,7336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7556932552649, -122.464586495079)",152781826-61 +143470728,77,14123680,Medical Incident,12/13/2014,12/12/2014,12/13/2014 06:33:26 AM,12/13/2014 06:33:56 AM,12/13/2014 06:34:22 AM,12/13/2014 06:35:34 AM,12/13/2014 06:44:36 AM,12/13/2014 07:04:35 AM,12/13/2014 07:23:47 AM,Code 2 Transport,12/13/2014 08:11:06 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",143470728-77 +152213072,E15,15084327,Structure Fire,08/09/2015,08/09/2015,08/09/2015 06:46:21 PM,08/09/2015 06:46:21 PM,08/09/2015 06:46:38 PM,08/09/2015 06:47:31 PM,08/09/2015 06:49:48 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Fire,08/09/2015 07:21:12 PM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152213072-E15 +151132425,56,15042766,Medical Incident,04/23/2015,04/23/2015,04/23/2015 03:45:22 PM,04/23/2015 03:46:22 PM,04/23/2015 03:47:58 PM,04/23/2015 03:48:11 PM,04/23/2015 04:09:26 PM,04/23/2015 04:09:30 PM,04/23/2015 04:22:26 PM,Code 2 Transport,04/23/2015 04:45:49 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",151132425-56 +151441897,E19,15054796,Medical Incident,05/24/2015,05/24/2015,05/24/2015 02:17:33 PM,05/24/2015 02:19:03 PM,05/24/2015 02:21:39 PM,05/24/2015 02:22:29 PM,05/24/2015 02:24:59 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Code 2 Transport,05/24/2015 02:49:25 PM,100 Block of HAVENSIDE DR,San Francisco,94132,B08,19,8813,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7316476125403, -122.489645928446)",151441897-E19 +151061002,E15,15039975,Medical Incident,04/16/2015,04/16/2015,04/16/2015 09:16:34 AM,04/16/2015 09:17:19 AM,04/16/2015 09:18:20 AM,04/16/2015 09:19:26 AM,04/16/2015 09:20:20 AM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Code 2 Transport,04/16/2015 09:29:39 AM,200 Block of LEE AVE,San Francisco,94112,B09,15,8472,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7226539396892, -122.454180300555)",151061002-E15 +142673528,E33,14093670,Medical Incident,09/24/2014,09/24/2014,09/24/2014 08:14:21 PM,09/24/2014 08:16:22 PM,09/24/2014 08:16:43 PM,09/24/2014 08:18:24 PM,09/24/2014 08:21:32 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 08:50:25 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",142673528-E33 +160922178,54,16036484,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:11:13 PM,04/01/2016 03:11:44 PM,04/01/2016 03:12:52 PM,04/01/2016 03:13:23 PM,04/01/2016 03:35:52 PM,04/01/2016 03:35:54 PM,04/01/2016 03:45:55 PM,Code 3 Transport,04/01/2016 04:11:03 PM,300 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8731,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Lakeshore,"(37.7310536423783, -122.476383904851)",160922178-54 +153013610,E03,15115606,Medical Incident,10/28/2015,10/28/2015,10/28/2015 07:41:30 PM,10/28/2015 07:42:11 PM,10/28/2015 07:43:02 PM,10/28/2015 07:44:21 PM,10/28/2015 07:46:34 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Code 2 Transport,10/28/2015 07:53:35 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",153013610-E03 +151282204,55,15048591,Medical Incident,05/08/2015,05/08/2015,05/08/2015 02:53:17 PM,05/08/2015 02:53:34 PM,05/08/2015 02:53:55 PM,05/08/2015 02:54:06 PM,05/08/2015 03:03:54 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Patient Declined Transport,05/08/2015 03:53:45 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",151282204-55 +160973268,77,16038560,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:25:41 PM,04/06/2016 05:25:41 PM,04/06/2016 05:25:58 PM,04/06/2016 05:26:03 PM,04/06/2016 05:39:28 PM,04/06/2016 05:56:13 PM,04/06/2016 06:15:24 PM,Code 2 Transport,04/06/2016 06:47:37 PM,HYDE ST/CALIFORNIA ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160973268-77 +143563953,62,14127560,Medical Incident,12/22/2014,12/22/2014,12/22/2014 10:02:18 PM,12/22/2014 10:05:38 PM,12/22/2014 10:11:58 PM,12/22/2014 10:12:07 PM,12/22/2014 10:16:55 PM,12/22/2014 10:34:33 PM,12/22/2014 10:49:54 PM,Code 2 Transport,12/22/2014 11:24:54 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",143563953-62 +150432655,B03,15016803,Alarms,02/12/2015,02/12/2015,02/12/2015 04:46:34 PM,02/12/2015 04:47:51 PM,02/12/2015 04:48:00 PM,02/12/2015 04:49:38 PM,02/12/2015 04:54:02 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Fire,02/12/2015 05:00:28 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",150432655-B03 +150183220,RC2,15007268,Medical Incident,01/18/2015,01/18/2015,01/18/2015 09:46:53 PM,01/18/2015 09:48:41 PM,01/18/2015 09:49:54 PM,01/18/2015 09:51:22 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,Code 2 Transport,01/18/2015 09:54:24 PM,2400 Block of GRIFFITH ST,San Francisco,94124,B10,17,6573,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7191884467237, -122.386431507122)",150183220-RC2 +160993936,89,16039520,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:54:00 PM,04/08/2016 10:55:47 PM,04/08/2016 11:02:02 PM,04/08/2016 11:02:02 PM,04/08/2016 11:05:33 PM,04/08/2016 11:19:41 PM,04/08/2016 11:30:00 PM,Code 2 Transport,04/09/2016 12:00:23 AM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7821283722658, -122.415531198141)",160993936-89 +160943023,AM20,16037381,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:00:34 PM,04/03/2016 07:01:18 PM,04/03/2016 07:01:40 PM,04/03/2016 07:02:06 PM,04/03/2016 07:06:57 PM,04/03/2016 07:20:41 PM,04/03/2016 07:35:31 PM,Code 2 Transport,04/03/2016 08:04:17 PM,0 Block of COLUMBIA SQUARE ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7772769755923, -122.405617030416)",160943023-AM20 +150790013,B09,15030113,Structure Fire,03/20/2015,03/19/2015,03/20/2015 12:01:07 AM,03/20/2015 12:04:49 AM,03/20/2015 12:04:58 AM,03/20/2015 12:06:09 AM,03/20/2015 12:10:28 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 02:39:05 AM,MADRID ST/BRAZIL AV,San Francisco,94112,B09,43,6133,3,3,3,false,Alarm,1,CHIEF,3,9,11,Excelsior,"(37.7231672404647, -122.43163313445)",150790013-B09 +160973942,86,16038642,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:55:38 PM,04/06/2016 07:56:33 PM,04/06/2016 07:57:16 PM,04/06/2016 07:57:49 PM,04/06/2016 08:04:37 PM,04/06/2016 08:28:05 PM,04/06/2016 08:53:30 PM,Code 2 Transport,04/06/2016 09:28:33 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160973942-86 +151063422,RC2,15040203,Medical Incident,04/16/2015,04/16/2015,04/16/2015 07:32:18 PM,04/16/2015 07:33:31 PM,04/16/2015 07:35:07 PM,04/16/2015 07:36:04 PM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,Code 3 Transport,04/16/2015 07:41:15 PM,HAIGHT ST/STANYAN ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",151063422-RC2 +150061905,T02,15002311,Structure Fire,01/06/2015,01/06/2015,01/06/2015 01:56:40 PM,01/06/2015 01:56:40 PM,01/06/2015 01:56:46 PM,01/06/2015 01:58:16 PM,01/06/2015 01:59:13 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Fire,01/06/2015 01:59:15 PM,STOCKTON ST/PACIFIC AV,San Francisco,94133,B01,2,1332,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7967039027671, -122.40843088815)",150061905-T02 +151091658,RC3,15041266,Medical Incident,04/19/2015,04/19/2015,04/19/2015 12:49:43 PM,04/19/2015 12:50:13 PM,04/19/2015 12:50:57 PM,04/19/2015 12:52:18 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Against Medical Advice,04/19/2015 12:56:41 PM,4900 Block of 3RD ST,San Francisco,94124,B10,17,6514,E,E,3,true,Non Life-threatening,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7336495044123, -122.391238077668)",151091658-RC3 +153050965,E12,15117036,Medical Incident,11/01/2015,10/31/2015,11/01/2015 03:13:12 AM,11/01/2015 03:14:28 AM,11/01/2015 03:15:05 AM,11/01/2015 03:16:58 AM,11/01/2015 03:19:10 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 2 Transport,11/01/2015 03:20:04 AM,HAIGHT ST/CLAYTON ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",153050965-E12 +143103890,KM06,14109932,Medical Incident,11/06/2014,11/06/2014,11/06/2014 10:07:52 PM,11/06/2014 10:10:04 PM,11/06/2014 10:12:37 PM,11/06/2014 10:13:56 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,No Merit,11/06/2014 10:21:03 PM,100 Block of CYRIL MAGNIN ST,San Francisco,94102,B01,1,1363,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",143103890-KM06 +160970993,55,16038339,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:17:23 AM,04/06/2016 09:17:23 AM,04/06/2016 09:18:28 AM,04/06/2016 09:18:45 AM,04/06/2016 09:30:51 AM,04/06/2016 09:58:00 AM,04/06/2016 10:20:22 AM,Code 3 Transport,04/06/2016 10:51:58 AM,100 Block of BRIDGEVIEW DR,San Francisco,94124,B10,42,6453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7353451321776, -122.396732910008)",160970993-55 +153321697,62,15127693,Medical Incident,11/28/2015,11/28/2015,11/28/2015 01:07:53 PM,11/28/2015 01:08:19 PM,11/28/2015 01:08:37 PM,11/28/2015 01:08:48 PM,11/28/2015 01:12:16 PM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,Against Medical Advice,11/28/2015 01:56:34 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",153321697-62 +152264055,B04,15086343,Alarms,08/14/2015,08/14/2015,08/14/2015 11:06:40 PM,08/14/2015 11:08:06 PM,08/14/2015 11:08:47 PM,08/14/2015 11:10:15 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Fire,08/14/2015 11:12:39 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,false,Alarm,1,CHIEF,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",152264055-B04 +142060925,52,14071300,Structure Fire,07/25/2014,07/25/2014,07/25/2014 08:58:52 AM,07/25/2014 08:59:54 AM,07/25/2014 09:02:00 AM,07/25/2014 09:05:33 AM,07/25/2014 09:09:18 AM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Fire,07/25/2014 09:19:09 AM,3400 Block of PIERCE ST,San Francisco,94123,B04,16,3662,3,3,3,true,Alarm,1,MEDIC,7,4,2,Marina,"(37.8021393814199, -122.439755551629)",142060925-52 +160932705,AM10,16036965,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:30:57 PM,04/02/2016 05:30:57 PM,04/02/2016 05:31:40 PM,04/02/2016 05:32:16 PM,04/02/2016 05:38:43 PM,04/02/2016 05:44:48 PM,04/02/2016 06:03:29 PM,Code 2 Transport,04/02/2016 06:30:07 PM,3200 Block of 18TH ST,San Francisco,94110,B02,7,5424,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7621213524354, -122.415543548355)",160932705-AM10 +142451586,KM12,14085344,Medical Incident,09/02/2014,09/02/2014,09/02/2014 12:12:42 PM,09/02/2014 12:13:00 PM,09/02/2014 12:13:43 PM,09/02/2014 12:13:44 PM,09/02/2014 12:20:02 PM,09/02/2014 12:37:34 PM,09/02/2014 01:21:08 PM,Code 2 Transport,09/02/2014 01:36:14 PM,BAY ST/STOCKTON ST,San Francisco,94133,B01,28,1341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8060277167068, -122.410310842828)",142451586-KM12 +151402226,E08,15053210,Structure Fire,05/20/2015,05/20/2015,05/20/2015 02:58:39 PM,05/20/2015 02:59:38 PM,05/20/2015 02:59:47 PM,05/20/2015 03:01:01 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Fire,05/20/2015 03:20:53 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,10,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",151402226-E08 +141080239,86,14036448,Medical Incident,04/18/2014,04/18/2014,04/18/2014 02:31:10 PM,04/18/2014 02:33:00 PM,04/18/2014 02:37:41 PM,04/18/2014 02:37:41 PM,04/18/2014 02:38:36 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,No Merit,04/18/2014 02:42:12 PM,BUSH ST/TAYLOR ST,SAN FRANCISCO,94108,B01,41,1446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7897399070402, -122.412075869047)",141080239-86 +152873589,77,15110410,Medical Incident,10/14/2015,10/14/2015,10/14/2015 06:54:39 PM,10/14/2015 06:55:30 PM,10/14/2015 06:55:56 PM,10/14/2015 06:56:33 PM,10/14/2015 07:00:40 PM,10/14/2015 07:08:18 PM,10/14/2015 07:25:34 PM,Code 2 Transport,10/14/2015 07:44:09 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",152873589-77 +143650808,E28,14130585,Administrative,12/31/2014,12/31/2014,12/31/2014 09:06:50 AM,12/31/2014 09:07:00 AM,12/31/2014 09:07:14 AM,12/31/2014 09:07:41 AM,12/31/2014 09:13:43 AM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Other,12/31/2014 09:13:48 AM,1800 Block of STOCKTON ST,San Francisco,94133,B01,28,1335,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8027782547729, -122.409586942281)",143650808-E28 +160951363,54,16037591,Citizen Assist / Service Call,04/04/2016,04/04/2016,04/04/2016 11:07:31 AM,04/04/2016 11:10:22 AM,04/04/2016 11:24:26 AM,04/04/2016 11:24:36 AM,04/04/2016 11:35:53 AM,04/04/2016 11:57:46 AM,04/04/2016 12:23:50 PM,Code 2 Transport,04/04/2016 12:55:36 PM,700 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5643,3,3,3,true,Alarm,1,MEDIC,2,6,9,Bernal Heights,"(37.732924646566, -122.416428558162)",160951363-54 +142292998,T11,14079683,Alarms,08/17/2014,08/17/2014,08/17/2014 06:55:30 PM,08/17/2014 06:56:35 PM,08/17/2014 06:56:48 PM,08/17/2014 06:58:09 PM,08/17/2014 07:01:46 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Fire,08/17/2014 07:02:36 PM,1600 Block of DIAMOND ST,San Francisco,94131,B06,26,5557,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7443849548808, -122.435572829279)",142292998-T11 +160952948,66,16037727,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:31:19 PM,04/04/2016 05:31:19 PM,04/04/2016 05:31:51 PM,04/04/2016 05:32:11 PM,04/04/2016 05:44:50 PM,04/04/2016 06:11:15 PM,04/04/2016 06:46:30 PM,Code 2 Transport,04/04/2016 07:23:40 PM,3RD ST/STILLMAN ST,San Francisco,94107,B03,8,2174,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",160952948-66 +142200970,B04,14076266,Medical Incident,08/08/2014,08/08/2014,08/08/2014 09:26:52 AM,08/08/2014 09:26:52 AM,08/08/2014 09:28:58 AM,08/08/2014 09:30:23 AM,08/08/2014 09:35:14 AM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Code 2 Transport,08/08/2014 09:40:04 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,CHIEF,5,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142200970-B04 +141310813,KM06,14044501,Medical Incident,05/11/2014,05/11/2014,05/11/2014 08:32:12 AM,05/11/2014 08:34:05 AM,05/11/2014 08:34:35 AM,05/11/2014 08:35:29 AM,05/11/2014 08:40:30 AM,05/11/2014 08:58:44 AM,05/11/2014 09:08:25 AM,Code 2 Transport,05/11/2014 09:38:10 AM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.794138132306, -122.407728738815)",141310813-KM06 +160972156,85,16038440,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:33:22 PM,04/06/2016 01:35:46 PM,04/06/2016 01:38:26 PM,04/06/2016 01:40:14 PM,04/06/2016 01:59:31 PM,04/06/2016 02:20:55 PM,04/06/2016 02:30:16 PM,Code 2 Transport,04/06/2016 02:50:41 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160972156-85 +142060455,66,14071255,Medical Incident,07/25/2014,07/24/2014,07/25/2014 04:28:26 AM,07/25/2014 04:29:47 AM,07/25/2014 04:30:07 AM,07/25/2014 04:31:43 AM,07/25/2014 04:37:28 AM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Patient Declined Transport,07/25/2014 04:59:40 AM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",142060455-66 +153170966,74,15121758,Medical Incident,11/13/2015,11/13/2015,11/13/2015 08:42:19 AM,11/13/2015 08:44:49 AM,11/13/2015 08:45:56 AM,11/13/2015 08:46:09 AM,11/13/2015 09:00:37 AM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,No Merit,11/13/2015 09:03:27 AM,JONES ST/MARKET ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",153170966-74 +141640972,E05,14056469,Medical Incident,06/13/2014,06/13/2014,06/13/2014 09:37:32 AM,06/13/2014 09:38:36 AM,06/13/2014 09:45:24 AM,06/13/2014 09:47:04 AM,06/13/2014 09:57:36 AM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Fire,06/13/2014 10:03:29 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.769431688682, -122.424669373999)",141640972-E05 +160933028,AM14,16036993,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:04:06 PM,04/02/2016 07:04:44 PM,04/02/2016 07:05:06 PM,04/02/2016 07:06:00 PM,04/02/2016 07:14:03 PM,04/02/2016 07:17:14 PM,04/02/2016 07:46:03 PM,Code 2 Transport,04/02/2016 08:11:52 PM,900 Block of GILMAN AVE,San Francisco,94124,B10,17,6611,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7179170978407, -122.387453211837)",160933028-AM14 +161000013,70,16039549,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:59:17 PM,04/09/2016 12:04:23 AM,04/09/2016 12:04:38 AM,04/09/2016 12:04:50 AM,04/09/2016 12:15:23 AM,04/09/2016 12:41:07 AM,04/09/2016 12:51:37 AM,Code 2 Transport,04/09/2016 01:19:08 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",161000013-70 +143383548,77,14120141,Medical Incident,12/04/2014,12/04/2014,12/04/2014 08:50:55 PM,12/04/2014 08:52:03 PM,12/04/2014 08:52:46 PM,12/04/2014 08:53:15 PM,12/04/2014 08:55:37 PM,12/04/2014 09:12:12 PM,12/04/2014 09:15:21 PM,Code 2 Transport,12/04/2014 09:56:48 PM,1500 Block of CALIFORNIA ST,San Francisco,94109,B04,3,1635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",143383548-77 +141974143,82,14068406,Medical Incident,07/16/2014,07/16/2014,07/16/2014 11:58:51 PM,07/16/2014 11:59:16 PM,07/17/2014 12:00:13 AM,07/17/2014 12:00:55 AM,07/17/2014 12:03:37 AM,07/17/2014 12:22:39 AM,07/17/2014 12:58:30 AM,Code 2 Transport,07/17/2014 02:15:15 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",141974143-82 +161000775,62,16039658,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:06:20 AM,04/09/2016 08:07:14 AM,04/09/2016 08:08:28 AM,04/09/2016 08:08:43 AM,04/09/2016 08:14:35 AM,04/09/2016 08:31:12 AM,04/09/2016 08:49:12 AM,Code 2 Transport,04/09/2016 09:13:55 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",161000775-62 +152223598,88,15084781,Medical Incident,08/10/2015,08/10/2015,08/10/2015 09:56:42 PM,08/10/2015 09:56:42 PM,08/10/2015 09:57:44 PM,08/10/2015 09:57:55 PM,08/10/2015 10:07:55 PM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Patient Declined Transport,08/10/2015 10:46:25 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",152223598-88 +141310078,B04,14044432,Alarms,05/11/2014,05/10/2014,05/11/2014 12:29:58 AM,05/11/2014 12:31:54 AM,05/11/2014 12:33:03 AM,05/11/2014 12:37:44 AM,05/11/2014 12:37:44 AM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Fire,05/11/2014 12:40:31 AM,1400 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.790090632912, -122.420658749212)",141310078-B04 +160981288,KM12,16038857,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:11:46 AM,04/07/2016 10:12:36 AM,04/07/2016 10:12:56 AM,04/07/2016 10:13:40 AM,04/07/2016 10:15:28 AM,04/07/2016 10:39:49 AM,04/07/2016 11:02:32 AM,Code 2 Transport,04/07/2016 11:51:17 AM,1300 Block of HAYES ST,San Francisco,94117,B05,21,4244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7749393187177, -122.438643513422)",160981288-KM12 +151163097,72,15043964,Medical Incident,04/26/2015,04/26/2015,04/26/2015 08:05:15 PM,04/26/2015 08:06:41 PM,04/26/2015 08:38:25 PM,04/26/2015 08:38:52 PM,04/26/2015 08:52:35 PM,04/26/2015 08:52:36 PM,04/26/2015 09:06:50 PM,Code 2 Transport,04/26/2015 09:13:01 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",151163097-72 +143380075,75,14119794,Medical Incident,12/04/2014,12/03/2014,12/04/2014 12:28:27 AM,12/04/2014 12:29:37 AM,12/04/2014 12:32:38 AM,12/04/2014 12:32:50 AM,12/04/2014 12:40:14 AM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,Patient Declined Transport,12/04/2014 12:51:29 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",143380075-75 +161001335,88,16039728,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:25:50 AM,04/09/2016 11:27:33 AM,04/09/2016 11:30:14 AM,04/09/2016 11:30:39 AM,04/09/2016 11:53:11 AM,04/09/2016 12:02:04 PM,04/09/2016 12:34:51 PM,Code 2 Transport,04/09/2016 01:07:54 PM,2400 Block of 44TH AVE,San Francisco,94116,B08,18,7665,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7409346206043, -122.50234227379)",161001335-88 +142203012,86,14076465,Medical Incident,08/08/2014,08/08/2014,08/08/2014 06:38:01 PM,08/08/2014 06:38:01 PM,08/08/2014 06:55:41 PM,08/08/2014 06:55:49 PM,08/08/2014 06:59:27 PM,08/08/2014 07:05:00 PM,08/08/2014 07:19:19 PM,Code 2 Transport,08/08/2014 07:24:29 PM,400 Block of 3RD AVE,San Francisco,94118,B07,31,7117,3,3,3,false,Potentially Life-Threatening,1,MEDIC,4,7,1,Inner Richmond,"(37.7801944963642, -122.461066150045)",142203012-86 +141890703,E41,14065423,Medical Incident,07/08/2014,07/07/2014,07/08/2014 07:55:39 AM,07/08/2014 07:59:38 AM,07/08/2014 07:59:55 AM,07/08/2014 08:02:12 AM,07/08/2014 08:10:09 AM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/08/2014 08:16:28 AM,700 Block of SUTTER ST,San Francisco,94109,B01,3,1463,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",141890703-E41 +143123467,AM20,14110676,Medical Incident,11/08/2014,11/08/2014,11/08/2014 09:11:27 PM,11/08/2014 09:11:48 PM,11/08/2014 09:12:54 PM,11/08/2014 09:14:05 PM,11/08/2014 09:18:13 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Patient Declined Transport,11/08/2014 10:08:17 PM,600 Block of ELIZABETH ST,San Francisco,94114,B06,24,5515,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,8,Noe Valley,"(37.7520810030582, -122.435274998348)",143123467-AM20 +160994011,53,16039528,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:21:00 PM,04/08/2016 11:21:00 PM,04/08/2016 11:22:53 PM,04/08/2016 11:23:12 PM,04/08/2016 11:50:59 PM,04/08/2016 11:51:03 PM,04/09/2016 12:02:35 AM,Code 2 Transport,04/09/2016 12:27:03 AM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160994011-53 +151000384,60,15037725,Medical Incident,04/10/2015,04/09/2015,04/10/2015 05:25:46 AM,04/10/2015 05:27:31 AM,04/10/2015 05:29:46 AM,04/10/2015 05:30:05 AM,04/10/2015 05:40:08 AM,04/10/2015 05:54:30 AM,04/10/2015 06:06:19 AM,Code 2 Transport,04/10/2015 06:29:21 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",151000384-60 +142130978,T03,14073777,Structure Fire,08/01/2014,08/01/2014,08/01/2014 09:25:21 AM,08/01/2014 09:25:21 AM,08/01/2014 09:25:47 AM,08/01/2014 09:27:54 AM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Code 2 Transport,08/01/2014 09:29:43 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,false,Alarm,1,TRUCK,5,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",142130978-T03 +151030216,AM20,15038798,Medical Incident,04/13/2015,04/12/2015,04/13/2015 02:04:12 AM,04/13/2015 02:05:45 AM,04/13/2015 02:06:05 AM,04/13/2015 02:06:35 AM,04/13/2015 02:10:00 AM,04/13/2015 02:24:21 AM,04/13/2015 02:40:07 AM,Code 2 Transport,04/13/2015 03:02:58 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",151030216-AM20 +141352252,AM26,14046211,Traffic Collision,05/15/2014,05/15/2014,05/15/2014 02:45:46 PM,05/15/2014 02:46:31 PM,05/15/2014 02:47:53 PM,05/15/2014 02:48:43 PM,05/15/2014 02:51:59 PM,05/15/2014 03:02:58 PM,05/15/2014 03:35:33 PM,Code 2 Transport,05/15/2014 04:09:14 PM,GILMAN AV/PAUL AV,San Francisco,94124,B10,17,6614,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7224316058888, -122.395622760595)",141352252-AM26 +142931010,89,14103277,Medical Incident,10/20/2014,10/20/2014,10/20/2014 09:54:02 AM,10/20/2014 09:55:00 AM,10/20/2014 09:57:45 AM,10/20/2014 09:58:31 AM,10/20/2014 10:10:28 AM,10/20/2014 10:30:27 AM,10/20/2014 10:44:18 AM,Code 2 Transport,10/20/2014 10:57:41 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",142931010-89 +160991810,AM02,16039312,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:34:50 PM,04/08/2016 01:36:17 PM,04/08/2016 01:48:05 PM,04/08/2016 01:48:30 PM,04/08/2016 01:56:05 PM,04/08/2016 02:03:36 PM,04/08/2016 02:31:02 PM,Code 2 Transport,04/08/2016 03:10:40 PM,4TH ST/MISSION ST,San Francisco,94103,B03,1,2213,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",160991810-AM02 +153440335,T03,15132287,Alarms,12/10/2015,12/09/2015,12/10/2015 03:42:11 AM,12/10/2015 03:45:22 AM,12/10/2015 03:45:37 AM,12/10/2015 03:46:45 AM,12/10/2015 03:48:45 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Fire,12/10/2015 03:57:03 AM,1400 Block of LARKIN ST,San Francisco,94109,B04,41,1635,3,3,3,false,Alarm,1,TRUCK,1,4,3,Nob Hill,"(37.7912547502949, -122.419060635955)",153440335-T03 +150871897,E20,15033226,Structure Fire,03/28/2015,03/28/2015,03/28/2015 01:33:22 PM,03/28/2015 01:34:07 PM,03/28/2015 01:34:39 PM,03/28/2015 01:35:53 PM,03/28/2015 01:39:55 PM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Fire,03/28/2015 02:59:33 PM,300 Block of JUDAH ST,San Francisco,94122,B08,22,7334,3,3,3,true,Fire,1,ENGINE,5,8,5,Inner Sunset,"(37.7622532632059, -122.465651521109)",150871897-E20 +152753632,E04,15105515,Medical Incident,10/02/2015,10/02/2015,10/02/2015 08:47:16 PM,10/02/2015 08:49:01 PM,10/02/2015 08:50:06 PM,10/02/2015 08:51:26 PM,10/02/2015 09:04:32 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,No Merit,10/02/2015 09:15:25 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",152753632-E04 +143453410,T08,14123056,Alarms,12/11/2014,12/11/2014,12/11/2014 08:07:18 PM,12/11/2014 08:08:27 PM,12/11/2014 08:08:34 PM,12/11/2014 08:09:49 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Fire,12/11/2014 08:52:38 PM,200 Block of CLARA ST,San Francisco,94107,B03,8,2243,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7786181340292, -122.403540316869)",143453410-T08 +141623205,B01,14055985,Alarms,06/11/2014,06/11/2014,06/11/2014 08:15:56 PM,06/11/2014 08:17:03 PM,06/11/2014 08:17:40 PM,06/11/2014 08:18:55 PM,06/11/2014 08:20:33 PM,04/25/2016 01:16:49 PM,04/25/2016 01:16:49 PM,Fire,06/11/2014 08:23:38 PM,600 Block of MONTGOMERY ST,San Francisco,94111,B01,13,1233,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7948751336497, -122.403112031242)",141623205-B01 +141831196,E02,14063256,Other,07/02/2014,07/02/2014,07/02/2014 10:42:18 AM,07/02/2014 10:45:11 AM,07/02/2014 10:45:43 AM,07/02/2014 10:48:34 AM,07/02/2014 10:48:34 AM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Fire,07/02/2014 10:56:27 AM,400 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7898930161582, -122.407112815209)",141831196-E02 +151740406,T06,15066277,Outside Fire,06/23/2015,06/22/2015,06/23/2015 05:32:25 AM,06/23/2015 05:35:15 AM,06/23/2015 05:35:44 AM,06/23/2015 05:37:52 AM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Fire,06/23/2015 05:40:14 AM,200 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,3,3,3,false,Fire,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7684845842925, -122.438671421834)",151740406-T06 +141230117,E48,14041620,Administrative,05/03/2014,05/03/2014,05/03/2014 10:09:03 AM,05/03/2014 10:09:07 AM,05/03/2014 10:09:17 AM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Other,05/03/2014 10:09:47 AM,800 Block of AVENUE D,,94130,B03,48,2931,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",141230117-E48 +152760136,E14,15105600,Medical Incident,10/03/2015,10/02/2015,10/03/2015 12:49:11 AM,10/03/2015 12:49:11 AM,10/03/2015 12:49:46 AM,10/03/2015 12:51:45 AM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,Code 2 Transport,10/03/2015 12:55:57 AM,3100 Block of CLEMENT ST,San Francisco,94121,B07,14,7237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7815971138281, -122.492906734383)",152760136-E14 +153462547,77,15133306,Traffic Collision,12/12/2015,12/12/2015,12/12/2015 03:32:27 PM,12/12/2015 03:34:12 PM,12/12/2015 03:34:23 PM,12/12/2015 03:35:54 PM,12/12/2015 03:44:26 PM,12/12/2015 04:03:22 PM,12/12/2015 04:14:23 PM,Code 2 Transport,12/12/2015 04:56:46 PM,VAN NESS AV/GEARY BL,San Francisco,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",153462547-77 +150583199,63,15022291,Medical Incident,02/27/2015,02/27/2015,02/27/2015 07:30:16 PM,02/27/2015 07:31:49 PM,02/27/2015 07:32:16 PM,02/27/2015 07:32:27 PM,02/27/2015 07:39:32 PM,02/27/2015 08:03:26 PM,02/27/2015 08:17:02 PM,Code 2 Transport,02/27/2015 08:48:55 PM,0 Block of CASA WAY,San Francisco,94123,B04,16,3563,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8056782117499, -122.439043901003)",150583199-63 +150063054,KM14,15002423,Medical Incident,01/06/2015,01/06/2015,01/06/2015 06:57:03 PM,01/06/2015 06:57:03 PM,01/06/2015 07:00:41 PM,01/06/2015 07:00:49 PM,01/06/2015 07:10:48 PM,01/06/2015 07:33:53 PM,01/06/2015 07:50:16 PM,Code 2 Transport,01/06/2015 08:00:44 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",150063054-KM14 +160993654,AM24,16039481,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:28:59 PM,04/08/2016 09:29:34 PM,04/08/2016 09:32:22 PM,04/08/2016 09:34:55 PM,04/08/2016 09:40:07 PM,04/08/2016 09:50:41 PM,04/08/2016 10:14:09 PM,Code 2 Transport,04/08/2016 10:38:03 PM,1900 Block of 23RD ST,San Francisco,94107,B10,37,2561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7547646595372, -122.399285688665)",160993654-AM24 +151301746,55,15049360,Medical Incident,05/10/2015,05/10/2015,05/10/2015 02:25:41 PM,05/10/2015 02:27:03 PM,05/10/2015 02:27:18 PM,05/10/2015 02:27:26 PM,05/10/2015 02:40:04 PM,05/10/2015 03:00:24 PM,05/10/2015 03:24:58 PM,Code 2 Transport,05/10/2015 03:53:50 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",151301746-55 +143490918,65,14124545,Medical Incident,12/15/2014,12/15/2014,12/15/2014 09:33:13 AM,12/15/2014 09:33:41 AM,12/15/2014 09:34:57 AM,12/15/2014 09:35:06 AM,12/15/2014 09:46:09 AM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Unable to Locate,12/15/2014 09:48:47 AM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",143490918-65 +160922614,77,16036529,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:01:52 PM,04/01/2016 05:03:48 PM,04/01/2016 05:04:06 PM,04/01/2016 05:04:23 PM,04/01/2016 05:06:36 PM,04/01/2016 05:17:44 PM,04/01/2016 05:41:22 PM,Code 2 Transport,04/01/2016 06:10:00 PM,1200 Block of LA PLAYA,San Francisco,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7630908951705, -122.509266553866)",160922614-77 +153052141,E43,15117164,Medical Incident,11/01/2015,11/01/2015,11/01/2015 11:46:54 AM,11/01/2015 11:46:54 AM,11/01/2015 11:47:16 AM,11/01/2015 11:47:51 AM,11/01/2015 11:58:38 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 2 Transport,11/01/2015 12:02:29 PM,GENEVA AV/CARTER ST,San Francisco,94134,B09,43,6245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Excelsior,"(37.7092509506804, -122.423353437119)",153052141-E43 +153003218,E10,15115247,Traffic Collision,10/27/2015,10/27/2015,10/27/2015 07:27:59 PM,10/27/2015 07:27:59 PM,10/27/2015 07:28:43 PM,10/27/2015 07:29:56 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Code 2 Transport,10/27/2015 07:33:07 PM,MASONIC AV/FELL ST,San Francisco,94117,B05,21,4464,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",153003218-E10 +142940394,81,14103573,Medical Incident,10/21/2014,10/20/2014,10/21/2014 04:57:20 AM,10/21/2014 04:59:03 AM,10/21/2014 05:00:37 AM,10/21/2014 05:00:46 AM,10/21/2014 05:12:40 AM,10/21/2014 05:25:10 AM,10/21/2014 05:39:45 AM,Code 2 Transport,10/21/2014 06:19:38 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142940394-81 +151450556,E01,15055056,Medical Incident,05/25/2015,05/24/2015,05/25/2015 06:42:37 AM,05/25/2015 06:43:15 AM,05/25/2015 06:45:18 AM,05/25/2015 06:45:18 AM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,Code 2 Transport,05/25/2015 06:48:01 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151450556-E01 +153384147,T02,15130279,Elevator / Escalator Rescue,12/04/2015,12/04/2015,12/04/2015 11:37:15 PM,12/04/2015 11:38:32 PM,12/04/2015 11:40:28 PM,12/04/2015 11:42:37 PM,12/04/2015 11:45:47 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Fire,12/05/2015 12:04:01 AM,300 Block of POST ST,San Francisco,94108,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7883420975425, -122.407575452565)",153384147-T02 +151571788,E42,15059938,Medical Incident,06/06/2015,06/06/2015,06/06/2015 01:25:53 PM,06/06/2015 01:28:14 PM,06/06/2015 01:28:24 PM,06/06/2015 01:30:01 PM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Cancelled,06/06/2015 01:32:03 PM,200 Block of BRIDGEVIEW DR,San Francisco,94124,B10,42,6453,2,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7341892337922, -122.397454110928)",151571788-E42 +151020506,B02,15038464,Structure Fire,04/12/2015,04/11/2015,04/12/2015 04:15:32 AM,04/12/2015 04:16:57 AM,04/12/2015 04:17:13 AM,04/12/2015 04:18:22 AM,04/12/2015 04:20:13 AM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Fire,04/12/2015 04:28:03 AM,500 Block of PAGE ST,San Francisco,94117,B05,6,3531,3,3,3,false,Alarm,1,CHIEF,4,2,5,Hayes Valley,"(37.7730893171157, -122.429798621528)",151020506-B02 +150763870,AM24,15029323,Medical Incident,03/17/2015,03/17/2015,03/17/2015 10:02:42 PM,03/17/2015 10:05:04 PM,03/17/2015 10:05:19 PM,03/17/2015 10:05:43 PM,03/17/2015 10:17:26 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,No Merit,03/17/2015 10:22:10 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",150763870-AM24 +160992964,77,16039417,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:12:01 PM,04/08/2016 06:16:11 PM,04/08/2016 06:16:18 PM,04/08/2016 06:17:28 PM,04/08/2016 06:36:33 PM,04/08/2016 06:50:00 PM,04/08/2016 07:13:49 PM,Code 2 Transport,04/08/2016 07:30:33 PM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8061880612091, -122.416243833913)",160992964-77 +153440301,B01,15132279,Alarms,12/10/2015,12/09/2015,12/10/2015 03:22:54 AM,12/10/2015 03:23:52 AM,12/10/2015 03:24:13 AM,12/10/2015 03:25:57 AM,12/10/2015 03:28:52 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Fire,12/10/2015 03:39:00 AM,1800 Block of GREEN ST,San Francisco,94123,B04,16,3354,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.7968332559438, -122.42953707363)",153440301-B01 +152333638,KM07,15088983,Medical Incident,08/21/2015,08/21/2015,08/21/2015 08:32:47 PM,08/21/2015 08:32:54 PM,08/21/2015 08:33:23 PM,08/21/2015 08:33:51 PM,08/21/2015 08:43:37 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,No Merit,08/21/2015 08:56:56 PM,1400 Block of 39TH AVE,San Francisco,94122,B08,23,7625,3,3,3,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7598248382333, -122.498289765101)",152333638-KM07 +160993995,AM20,16039526,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:16:07 PM,04/08/2016 11:16:27 PM,04/08/2016 11:17:11 PM,04/08/2016 11:17:47 PM,04/08/2016 11:27:38 PM,04/08/2016 11:47:57 PM,04/09/2016 12:15:11 AM,Code 2 Transport,04/09/2016 12:55:56 AM,400 Block of ROLPH ST,San Francisco,94112,B09,43,6226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7123368698446, -122.433796156182)",160993995-AM20 +150432501,E13,15016784,Medical Incident,02/12/2015,02/12/2015,02/12/2015 04:04:21 PM,02/12/2015 04:04:21 PM,02/12/2015 04:05:57 PM,02/12/2015 04:06:34 PM,02/12/2015 04:10:04 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Code 2 Transport,02/12/2015 04:17:51 PM,KEARNY ST/GEARY ST,San Francisco,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7879630907543, -122.403491776385)",150432501-E13 +150340574,KM09,15013009,Medical Incident,02/03/2015,02/02/2015,02/03/2015 07:14:19 AM,02/03/2015 07:14:41 AM,02/03/2015 07:15:13 AM,02/03/2015 07:16:48 AM,02/03/2015 07:24:18 AM,02/03/2015 07:36:42 AM,02/03/2015 07:58:19 AM,Code 2 Transport,02/03/2015 08:47:37 AM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7751756623626, -122.413488730988)",150340574-KM09 +152761063,75,15105697,Medical Incident,10/03/2015,10/03/2015,10/03/2015 09:20:33 AM,10/03/2015 09:21:03 AM,10/03/2015 09:21:37 AM,10/03/2015 09:22:09 AM,10/03/2015 09:27:42 AM,10/03/2015 09:51:50 AM,10/03/2015 09:56:52 AM,Code 2 Transport,10/03/2015 10:45:44 AM,0 Block of ELLIS ST,San Francisco,94102,B02,1,1322,2,3,3,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7856720367472, -122.406852525575)",152761063-75 +141633195,54,14056333,Structure Fire,06/12/2014,06/12/2014,06/12/2014 08:47:49 PM,06/12/2014 08:48:58 PM,06/12/2014 08:49:21 PM,06/12/2014 08:49:35 PM,06/12/2014 08:52:49 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Fire,06/12/2014 08:59:52 PM,1900 Block of FULTON ST,San Francisco,94117,B05,21,4522,3,3,3,true,Alarm,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7753902625756, -122.44926791485)",141633195-54 +142470251,84,14085913,Medical Incident,09/04/2014,09/03/2014,09/04/2014 02:00:44 AM,09/04/2014 02:02:19 AM,09/04/2014 02:02:55 AM,09/04/2014 02:03:17 AM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Code 2 Transport,09/04/2014 02:04:41 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7777990101501, -122.40029776053)",142470251-84 +142822038,E25,14099286,Alarms,10/09/2014,10/09/2014,10/09/2014 02:25:44 PM,10/09/2014 02:27:45 PM,10/09/2014 02:28:25 PM,10/09/2014 02:30:24 PM,10/09/2014 02:33:34 PM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,Fire,10/09/2014 02:42:58 PM,1200 Block of INDIANA ST,San Francisco,94107,B10,25,2573,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7539362428116, -122.390732816042)",142822038-E25 +141090339,T09,14036911,Structure Fire,04/19/2014,04/19/2014,04/19/2014 09:29:54 PM,04/19/2014 09:31:02 PM,04/19/2014 09:31:18 PM,04/19/2014 09:32:54 PM,04/19/2014 09:36:48 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Fire,04/19/2014 09:39:16 PM,1700 Block of REVERE AVE,SAN FRANCISCO,94124,B10,17,6514,3,3,3,false,Alarm,1,TRUCK,5,10,10,Bayview Hunters Point,"(37.733154464931, -122.392672357808)",141090339-T09 +160932949,AM20,16036985,Medical Incident,04/02/2016,04/02/2016,04/02/2016 06:40:43 PM,04/02/2016 06:40:43 PM,04/02/2016 06:41:37 PM,04/02/2016 06:42:15 PM,04/02/2016 06:45:49 PM,04/02/2016 06:55:28 PM,04/02/2016 07:04:47 PM,Code 2 Transport,04/02/2016 07:26:58 PM,400 Block of 14TH ST,San Francisco,94103,B02,6,5214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7681278298266, -122.423310668511)",160932949-AM20 +160942240,62,16037304,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:05:02 PM,04/03/2016 03:06:15 PM,04/03/2016 03:06:34 PM,04/03/2016 03:07:08 PM,04/03/2016 03:12:30 PM,04/03/2016 03:25:08 PM,04/03/2016 03:51:36 PM,Code 2 Transport,04/03/2016 04:45:19 PM,1500 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160942240-62 +142093424,84,14072627,Traffic Collision,07/28/2014,07/28/2014,07/28/2014 10:19:05 PM,07/28/2014 10:19:29 PM,07/28/2014 10:29:03 PM,07/28/2014 10:29:27 PM,07/28/2014 10:38:14 PM,07/28/2014 10:53:56 PM,07/28/2014 11:11:02 PM,Code 2 Transport,07/29/2014 12:05:41 AM,POST ST/JONES ST,San Francisco,94109,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,9,1,3,Tenderloin,"(37.787663597879, -122.413353964838)",142093424-84 +151963772,E10,15074929,Transfer,07/15/2015,07/15/2015,07/15/2015 10:52:00 PM,07/15/2015 10:52:45 PM,07/15/2015 10:53:06 PM,07/15/2015 10:54:20 PM,07/15/2015 10:56:42 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Fire,07/15/2015 10:58:49 PM,1600 Block of SCOTT ST,San Francisco,94115,B04,10,4131,3,3,3,true,Alarm,1,ENGINE,1,5,5,Japantown,"(37.7849864733147, -122.438181369407)",151963772-E10 +160981232,57,16038847,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:55:05 AM,04/07/2016 09:57:48 AM,04/07/2016 09:58:15 AM,04/07/2016 09:58:38 AM,04/07/2016 10:09:04 AM,04/07/2016 10:25:49 AM,04/07/2016 11:05:50 AM,Code 2 Transport,04/07/2016 11:37:29 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160981232-57 +143012791,AM20,14106359,Medical Incident,10/28/2014,10/28/2014,10/28/2014 06:30:21 PM,10/28/2014 06:32:35 PM,10/28/2014 06:33:05 PM,10/28/2014 06:34:47 PM,10/28/2014 06:38:02 PM,10/28/2014 06:43:07 PM,10/28/2014 07:04:43 PM,Code 2 Transport,10/28/2014 07:39:02 PM,400 Block of SILVER AVE,San Francisco,94112,B09,32,6143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7285368903189, -122.426997607236)",143012791-AM20 +160940665,KM03,16037162,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:22:44 AM,04/03/2016 05:24:03 AM,04/03/2016 05:24:20 AM,04/03/2016 05:24:59 AM,04/03/2016 05:30:51 AM,04/03/2016 05:51:59 AM,04/03/2016 06:13:07 AM,Code 2 Transport,04/03/2016 06:26:06 AM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",160940665-KM03 +152722933,58,15104239,Traffic Collision,09/29/2015,09/29/2015,09/29/2015 05:39:40 PM,09/29/2015 05:39:40 PM,09/29/2015 05:40:46 PM,09/29/2015 05:41:00 PM,09/29/2015 05:43:59 PM,09/29/2015 05:56:34 PM,09/29/2015 06:06:38 PM,Code 2 Transport,09/29/2015 06:39:41 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",152722933-58 +161001332,61,16039727,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:26:40 AM,04/09/2016 11:27:09 AM,04/09/2016 11:27:54 AM,04/09/2016 11:28:02 AM,04/09/2016 11:42:32 AM,04/09/2016 11:50:40 AM,04/09/2016 12:04:13 PM,Code 2 Transport,04/09/2016 12:29:32 PM,1700 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7726948236861, -122.422188261426)",161001332-61 +160981910,73,16038920,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:52:36 PM,04/07/2016 12:53:51 PM,04/07/2016 12:54:42 PM,04/07/2016 12:55:05 PM,04/07/2016 01:06:17 PM,04/07/2016 01:29:26 PM,04/07/2016 01:57:57 PM,Code 2 Transport,04/07/2016 02:37:08 PM,1200 Block of 15TH AVE,San Francisco,94122,B08,22,7366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7646998273343, -122.472787133735)",160981910-73 +160932199,71,16036913,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:16:08 PM,04/02/2016 03:18:49 PM,04/02/2016 03:19:39 PM,04/02/2016 03:19:44 PM,04/02/2016 03:32:25 PM,04/02/2016 03:43:13 PM,04/02/2016 04:03:58 PM,Code 2 Transport,04/02/2016 04:29:59 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160932199-71 +142853820,85,14100620,Medical Incident,10/12/2014,10/12/2014,10/12/2014 09:50:08 PM,10/12/2014 09:52:31 PM,10/12/2014 09:52:53 PM,10/12/2014 09:53:03 PM,10/12/2014 10:04:56 PM,10/12/2014 10:28:24 PM,10/12/2014 10:56:05 PM,Code 2 Transport,10/12/2014 11:14:38 PM,200 Block of SHIPLEY ST,San Francisco,94107,B03,1,2253,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7784980708735, -122.404427110658)",142853820-85 +160960060,63,16037848,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:25:35 AM,04/05/2016 12:27:24 AM,04/05/2016 12:27:48 AM,04/05/2016 12:28:12 AM,04/05/2016 12:37:12 AM,04/05/2016 12:55:52 AM,04/05/2016 12:10:00 AM,Code 2 Transport,04/05/2016 01:47:53 AM,1300 Block of 35TH AVE,San Francisco,94122,B08,23,7564,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7618724655505, -122.494274168693)",160960060-63 +160961814,77,16038015,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:57:33 PM,04/05/2016 12:59:47 PM,04/05/2016 01:00:29 PM,04/05/2016 01:00:56 PM,04/05/2016 01:08:29 PM,04/05/2016 01:30:18 PM,04/05/2016 01:56:42 PM,Code 2 Transport,04/05/2016 02:27:52 PM,0 Block of PETERS AV,San Francisco,94110,B06,11,5662,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7450089219972, -122.419443973575)",160961814-77 +160921854,KM11,16036456,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:44:10 PM,04/01/2016 01:46:02 PM,04/01/2016 01:46:31 PM,04/01/2016 01:51:12 PM,04/01/2016 01:51:12 PM,04/01/2016 01:53:50 PM,04/01/2016 02:06:52 PM,Code 2 Transport,04/01/2016 02:32:01 PM,11TH ST/FOLSOM ST,San Francisco,94103,B02,36,5114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.771863706441, -122.414026708032)",160921854-KM11 +143152923,AP,14111693,Other,11/11/2014,11/11/2014,11/11/2014 07:23:43 PM,11/11/2014 07:23:43 PM,11/11/2014 07:23:43 PM,11/11/2014 07:23:43 PM,11/11/2014 07:23:43 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Fire,11/11/2014 07:23:43 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",143152923-AP +150911871,KM06,15034606,Medical Incident,04/01/2015,04/01/2015,04/01/2015 01:20:02 PM,04/01/2015 01:23:00 PM,04/01/2015 01:23:36 PM,04/01/2015 01:24:53 PM,04/01/2015 01:36:23 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,No Merit,04/01/2015 01:45:31 PM,2400 Block of GEARY BLVD,San Francisco,94115,B05,10,4261,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",150911871-KM06 +153291475,E03,15126592,Medical Incident,11/25/2015,11/25/2015,11/25/2015 11:34:32 AM,11/25/2015 11:37:33 AM,11/25/2015 11:38:01 AM,11/25/2015 11:40:05 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Patient Declined Transport,11/25/2015 11:42:33 AM,VAN NESS AV/SACRAMENTO ST,San Francisco,94109,B04,38,3155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7912888912559, -122.422514944187)",153291475-E03 +160943396,53,16037427,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:18:23 PM,04/03/2016 09:19:22 PM,04/03/2016 09:19:38 PM,04/03/2016 09:19:51 PM,04/03/2016 09:27:57 PM,04/03/2016 09:36:58 PM,04/03/2016 10:06:43 PM,Code 2 Transport,04/03/2016 10:38:10 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160943396-53 +152693551,RC3,15103238,Medical Incident,09/26/2015,09/26/2015,09/26/2015 08:52:27 PM,09/26/2015 08:53:10 PM,09/26/2015 09:20:09 PM,09/26/2015 09:21:27 PM,09/26/2015 09:26:33 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Against Medical Advice,09/26/2015 09:41:47 PM,1100 Block of FOLSOM ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7765710578401, -122.408160058123)",152693551-RC3 +153260778,85,15125421,Medical Incident,11/22/2015,11/21/2015,11/22/2015 07:59:36 AM,11/22/2015 07:59:36 AM,11/22/2015 08:01:30 AM,11/22/2015 08:01:41 AM,11/22/2015 08:11:43 AM,11/22/2015 08:25:19 AM,11/22/2015 08:28:42 AM,Code 2 Transport,11/22/2015 09:18:57 AM,900 Block of BUSH ST,San Francisco,94109,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",153260778-85 +160983759,72,16039118,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:34:35 PM,04/07/2016 09:36:23 PM,04/07/2016 09:37:08 PM,04/07/2016 09:37:17 PM,04/07/2016 10:00:42 PM,04/07/2016 10:18:32 PM,04/07/2016 10:44:09 PM,Code 2 Transport,04/07/2016 11:40:00 PM,7500 Block of GEARY BLVD,San Francisco,94121,B07,34,7264,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.779202123681, -122.501331891706)",160983759-72 +142143248,67,14074358,Medical Incident,08/02/2014,08/02/2014,08/02/2014 09:26:53 PM,08/02/2014 09:28:02 PM,08/02/2014 09:29:29 PM,08/02/2014 09:29:36 PM,08/02/2014 09:32:39 PM,08/02/2014 09:43:40 PM,08/02/2014 10:00:34 PM,Code 2 Transport,08/02/2014 10:27:46 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",142143248-67 +161003378,53,16039967,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:12:12 PM,04/09/2016 10:13:45 PM,04/09/2016 10:14:02 PM,04/09/2016 10:14:10 PM,04/09/2016 10:18:15 PM,04/09/2016 10:31:06 PM,04/09/2016 10:59:02 PM,Code 2 Transport,04/09/2016 11:25:42 PM,2200 Block of FULTON ST,San Francisco,94118,B05,21,4542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7749173457757, -122.45385402151)",161003378-53 +151750390,E03,15066593,Medical Incident,06/24/2015,06/23/2015,06/24/2015 05:10:10 AM,06/24/2015 05:10:52 AM,06/24/2015 05:11:46 AM,06/24/2015 05:13:23 AM,06/24/2015 05:18:20 AM,04/25/2016 01:09:50 PM,04/25/2016 01:09:50 PM,Code 2 Transport,06/24/2015 05:31:24 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",151750390-E03 +160972782,KM10,16038503,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:46:22 PM,04/06/2016 03:49:28 PM,04/06/2016 03:49:41 PM,04/06/2016 03:50:20 PM,04/06/2016 04:01:17 PM,04/06/2016 04:17:33 PM,04/06/2016 04:34:29 PM,Code 2 Transport,04/06/2016 05:02:35 PM,48TH AV/POINT LOBOS AV,San Francisco,94121,B07,34,7313,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.779851069188, -122.509432938414)",160972782-KM10 +150350269,AM24,15013340,Medical Incident,02/04/2015,02/03/2015,02/04/2015 02:13:13 AM,02/04/2015 02:14:13 AM,02/04/2015 02:20:57 AM,02/04/2015 02:20:57 AM,02/04/2015 02:44:02 AM,02/04/2015 02:44:08 AM,02/04/2015 02:58:26 AM,Code 3 Transport,02/04/2015 03:44:44 AM,400 Block of 31ST AVE,San Francisco,94121,B07,14,7237,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",150350269-AM24 +151140723,70,15042995,Medical Incident,04/24/2015,04/24/2015,04/24/2015 08:11:16 AM,04/24/2015 08:13:24 AM,04/24/2015 08:13:43 AM,04/24/2015 08:14:05 AM,04/24/2015 08:39:31 AM,04/24/2015 09:06:11 AM,04/24/2015 09:32:50 AM,Code 2 Transport,04/24/2015 10:06:30 AM,100 Block of EVERSON ST,San Francisco,94131,B06,26,8117,2,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7387288505192, -122.432719348311)",151140723-70 +160954131,78,16037833,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:26:22 PM,04/04/2016 11:26:22 PM,04/04/2016 11:26:32 PM,04/04/2016 11:26:38 PM,04/04/2016 11:44:07 PM,04/05/2016 12:07:48 AM,04/05/2016 12:16:00 AM,Code 2 Transport,04/05/2016 12:51:32 AM,3200 Block of 25TH ST,San Francisco,94110,B06,11,5534,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7507663247144, -122.415272717729)",160954131-78 +160941365,75,16037225,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:50:40 AM,04/03/2016 10:51:07 AM,04/03/2016 10:51:30 AM,04/03/2016 10:51:37 AM,04/03/2016 10:55:06 AM,04/03/2016 11:07:50 AM,04/03/2016 11:37:30 AM,Code 2 Transport,04/03/2016 12:02:37 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160941365-75 +151612870,RWC2,15061643,Medical Incident,06/10/2015,06/10/2015,06/10/2015 05:51:34 PM,06/10/2015 05:52:30 PM,06/10/2015 06:02:26 PM,06/10/2015 06:04:46 PM,06/10/2015 06:14:53 PM,04/25/2016 01:10:04 PM,04/25/2016 01:10:04 PM,Code 3 Transport,06/10/2015 07:44:18 PM,300 Block of LOWER FORT MASON ST,Fort Mason,94123,B99,51,3343,2,3,3,false,Potentially Life-Threatening,1,SUPPORT,5,4,2,Marina,"(37.8058923703038, -122.431246520303)",151612870-RWC2 +152370752,74,15090206,Medical Incident,08/25/2015,08/24/2015,08/25/2015 07:54:31 AM,08/25/2015 07:59:05 AM,08/25/2015 08:00:17 AM,08/25/2015 08:02:12 AM,08/25/2015 08:10:58 AM,08/25/2015 08:30:23 AM,08/25/2015 08:38:53 AM,Code 2 Transport,08/25/2015 09:13:23 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",152370752-74 +141160005,67,14039012,Medical Incident,04/26/2014,04/25/2014,04/26/2014 12:07:33 AM,04/26/2014 12:14:33 AM,04/26/2014 12:16:28 AM,04/26/2014 12:16:35 AM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Patient Declined Transport,04/26/2014 12:29:20 AM,0 Block of KISKA RD,SAN FRANCISCO,94124,B10,17,6636,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7303111453429, -122.378558276545)",141160005-67 +152282172,AM14,15087024,Medical Incident,08/16/2015,08/16/2015,08/16/2015 03:05:09 PM,08/16/2015 03:08:00 PM,08/16/2015 03:09:11 PM,08/16/2015 03:09:45 PM,08/16/2015 03:13:15 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,No Merit,08/16/2015 03:27:26 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",152282172-AM14 +143250493,73,14114975,Structure Fire,11/21/2014,11/20/2014,11/21/2014 06:03:11 AM,11/21/2014 06:03:33 AM,11/21/2014 06:03:46 AM,11/21/2014 06:04:14 AM,11/21/2014 06:12:41 AM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Fire,11/21/2014 07:10:38 AM,4600 Block of 3RD ST,San Francisco,94124,B10,17,6516,3,3,3,true,Fire,1,MEDIC,8,10,10,Bayview Hunters Point,"(37.7360180524544, -122.390409391697)",143250493-73 +150972798,E38,15036839,Medical Incident,04/07/2015,04/07/2015,04/07/2015 06:20:59 PM,04/07/2015 06:22:12 PM,04/07/2015 06:22:28 PM,04/07/2015 06:23:14 PM,04/07/2015 06:24:42 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/07/2015 06:33:23 PM,2300 Block of LAGUNA ST,San Francisco,94115,B04,38,3356,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7926489939322, -122.429604561551)",150972798-E38 +160941402,88,16037230,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:58:59 AM,04/03/2016 11:00:30 AM,04/03/2016 11:01:04 AM,04/03/2016 11:02:02 AM,04/03/2016 11:16:15 AM,04/03/2016 11:31:23 AM,04/03/2016 12:04:46 PM,Code 2 Transport,04/03/2016 12:38:17 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160941402-88 +141622839,83,14055962,Medical Incident,06/11/2014,06/11/2014,06/11/2014 06:18:49 PM,06/11/2014 06:18:49 PM,06/11/2014 06:25:42 PM,06/11/2014 06:25:42 PM,06/11/2014 06:29:56 PM,06/11/2014 06:47:24 PM,06/11/2014 07:10:58 PM,Code 2 Transport,06/11/2014 07:25:14 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",141622839-83 +150323523,E32,15012538,Traffic Collision,02/01/2015,02/01/2015,02/01/2015 10:00:42 PM,02/01/2015 10:00:42 PM,02/01/2015 10:01:45 PM,02/01/2015 10:02:52 PM,02/01/2015 10:08:42 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 10:27:35 PM,SAN JOSE AV/RANDALL ST,San Francisco,94110,B06,32,8112,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.7398692305663, -122.42414715532)",150323523-E32 +160973376,62,16038579,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:48:33 PM,04/06/2016 05:49:46 PM,04/06/2016 05:50:27 PM,04/06/2016 05:50:35 PM,04/06/2016 05:57:39 PM,04/06/2016 06:07:23 PM,04/06/2016 06:24:45 PM,Code 2 Transport,04/06/2016 07:16:22 PM,HUDSON AV/NEWHALL ST,San Francisco,94124,B10,25,6467,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7400445538806, -122.388273077343)",160973376-62 +160992975,54,16039418,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:15:55 PM,04/08/2016 06:18:56 PM,04/08/2016 06:19:24 PM,04/08/2016 06:19:32 PM,04/08/2016 06:36:20 PM,04/08/2016 06:48:44 PM,04/08/2016 07:04:35 PM,Code 2 Transport,04/08/2016 07:31:47 PM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7600451698328, -122.423265598657)",160992975-54 +151682300,E13,15064294,Structure Fire,06/17/2015,06/17/2015,06/17/2015 02:57:12 PM,06/17/2015 02:57:46 PM,06/17/2015 02:58:57 PM,06/17/2015 02:59:41 PM,04/25/2016 01:09:57 PM,04/25/2016 01:09:57 PM,04/25/2016 01:09:57 PM,Fire,06/17/2015 03:05:19 PM,0 Block of GRANT AVE,San Francisco,94108,B01,1,1321,3,3,3,true,Alarm,1,ENGINE,10,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",151682300-E13 +160930587,AM02,16036727,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:09:53 AM,04/02/2016 06:11:02 AM,04/02/2016 06:11:33 AM,04/02/2016 06:12:05 AM,04/02/2016 06:19:03 AM,04/02/2016 06:35:24 AM,04/02/2016 06:46:41 AM,Code 2 Transport,04/02/2016 07:03:23 AM,2900 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6326,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7246523794049, -122.402288649686)",160930587-AM02 +151750537,AM24,15066610,Medical Incident,06/24/2015,06/23/2015,06/24/2015 07:06:37 AM,06/24/2015 07:09:13 AM,06/24/2015 07:09:54 AM,06/24/2015 07:11:18 AM,06/24/2015 07:24:00 AM,06/24/2015 07:49:10 AM,06/24/2015 08:35:27 AM,Code 2 Transport,06/24/2015 08:58:30 AM,0 Block of HAWKINS LN,San Francisco,94124,B10,17,6621,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7350823527483, -122.383845681498)",151750537-AM24 +150161668,E06,15006309,Medical Incident,01/16/2015,01/16/2015,01/16/2015 12:43:13 PM,01/16/2015 12:44:40 PM,01/16/2015 12:44:55 PM,01/16/2015 12:46:10 PM,01/16/2015 12:47:12 PM,04/25/2016 01:12:48 PM,04/25/2016 01:12:48 PM,Code 2 Transport,01/16/2015 12:50:10 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7684539072982, -122.431342864403)",150161668-E06 +160990395,88,16039188,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:57:57 AM,04/08/2016 04:57:57 AM,04/08/2016 05:05:24 AM,04/08/2016 05:05:24 AM,04/08/2016 05:09:55 AM,04/08/2016 05:22:28 AM,04/08/2016 05:26:42 AM,Code 2 Transport,04/08/2016 05:56:30 AM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",160990395-88 +153232934,E41,15124374,Medical Incident,11/19/2015,11/19/2015,11/19/2015 05:07:09 PM,11/19/2015 05:09:58 PM,11/19/2015 05:10:13 PM,11/19/2015 05:10:47 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,Code 2 Transport,11/19/2015 05:11:31 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,ENGINE,3,3,6,South of Market,"(37.78026973391, -122.406390271833)",153232934-E41 +141511991,AP,14051912,Other,05/31/2014,05/31/2014,05/31/2014 03:07:44 PM,05/31/2014 03:07:44 PM,05/31/2014 03:07:44 PM,05/31/2014 03:07:44 PM,05/31/2014 03:07:44 PM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Fire,05/31/2014 03:07:44 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",141511991-AP +142281952,74,14079243,Medical Incident,08/16/2014,08/16/2014,08/16/2014 01:53:58 PM,08/16/2014 01:55:03 PM,08/16/2014 01:55:36 PM,08/16/2014 01:55:46 PM,08/16/2014 02:13:09 PM,08/16/2014 02:39:07 PM,08/16/2014 02:53:56 PM,Code 2 Transport,08/16/2014 03:29:31 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",142281952-74 +153433658,E37,15132179,Structure Fire,12/09/2015,12/09/2015,12/09/2015 08:25:01 PM,12/09/2015 08:25:01 PM,12/09/2015 08:25:08 PM,12/09/2015 08:25:57 PM,12/09/2015 08:27:01 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Fire,12/09/2015 08:27:15 PM,20TH ST/WISCONSIN ST,San Francisco,94107,B10,37,2521,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7598505212671, -122.399181613989)",153433658-E37 +150161631,63,15006306,Medical Incident,01/16/2015,01/16/2015,01/16/2015 12:32:47 PM,01/16/2015 12:32:47 PM,01/16/2015 12:33:39 PM,01/16/2015 12:33:50 PM,01/16/2015 12:38:02 PM,01/16/2015 12:50:43 PM,01/16/2015 01:08:22 PM,Code 2 Transport,01/16/2015 01:41:37 PM,400 Block of THE EMBARCADERO,San Francisco,94111,B03,35,928,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",150161631-63 +142802353,E43,14098554,Medical Incident,10/07/2014,10/07/2014,10/07/2014 04:06:42 PM,10/07/2014 04:10:05 PM,10/07/2014 04:10:48 PM,10/07/2014 04:12:59 PM,10/07/2014 04:13:09 PM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Code 2 Transport,10/07/2014 04:33:53 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",142802353-E43 +151711313,B02,15065305,Structure Fire,06/20/2015,06/20/2015,06/20/2015 11:21:17 AM,06/20/2015 11:21:42 AM,06/20/2015 11:28:20 AM,06/20/2015 11:28:20 AM,06/20/2015 11:31:20 AM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Fire,06/20/2015 11:31:27 AM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,false,Alarm,1,CHIEF,5,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",151711313-B02 +152192696,E04,15083491,Alarms,08/07/2015,08/07/2015,08/07/2015 04:58:27 PM,08/07/2015 04:59:55 PM,08/07/2015 05:00:27 PM,08/07/2015 05:02:27 PM,08/07/2015 05:03:32 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Fire,08/07/2015 05:13:52 PM,1600 Block of 3RD ST,San Francisco,94158,B03,8,2364,3,3,3,false,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7683474110857, -122.389401336294)",152192696-E04 +150140716,E13,15005456,Vehicle Fire,01/14/2015,01/14/2015,01/14/2015 08:05:43 AM,01/14/2015 08:07:22 AM,01/14/2015 08:07:39 AM,01/14/2015 08:09:18 AM,01/14/2015 08:10:50 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Fire,01/14/2015 08:23:38 AM,CALIFORNIA ST/MONTGOMERY ST,San Francisco,94104,B01,13,1234,3,3,3,true,Fire,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928512206877, -122.40276676965)",150140716-E13 +160993901,KM06,16039515,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:45:16 PM,04/08/2016 10:47:27 PM,04/08/2016 10:54:07 PM,04/08/2016 10:54:07 PM,04/08/2016 11:00:58 PM,04/08/2016 11:19:26 PM,04/08/2016 11:27:42 PM,Code 2 Transport,04/09/2016 12:04:52 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160993901-KM06 +142950680,T03,14103942,Structure Fire,10/22/2014,10/21/2014,10/22/2014 07:57:52 AM,10/22/2014 07:57:52 AM,10/22/2014 07:57:58 AM,10/22/2014 07:58:59 AM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,Fire,10/22/2014 08:01:17 AM,0 Block of LARKIN ST,San Francisco,94102,B02,36,1646,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7775888205813, -122.416411092393)",142950680-T03 +151171463,T17,15044191,Medical Incident,04/27/2015,04/27/2015,04/27/2015 11:30:51 AM,04/27/2015 11:31:20 AM,04/27/2015 11:31:35 AM,04/27/2015 11:32:50 AM,04/27/2015 11:35:20 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Code 2 Transport,04/27/2015 11:54:07 AM,2400 Block of KEITH ST,San Francisco,94124,B10,17,6546,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",151171463-T17 +141820228,B04,14062881,Medical Incident,07/01/2014,06/30/2014,07/01/2014 02:28:24 AM,07/01/2014 02:28:24 AM,07/01/2014 02:29:09 AM,07/01/2014 02:31:08 AM,07/01/2014 02:34:01 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Code 2 Transport,07/01/2014 02:46:14 AM,OFARRELL ST/LARKIN ST,San Francisco,94109,B04,3,1642,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",141820228-B04 +143562254,E08,14127406,Alarms,12/22/2014,12/22/2014,12/22/2014 03:04:36 PM,12/22/2014 03:07:17 PM,12/22/2014 03:07:46 PM,12/22/2014 03:08:18 PM,12/22/2014 03:12:45 PM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,Fire,12/22/2014 03:14:42 PM,800 Block of FOLSOM ST,San Francisco,94103,B03,1,2215,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7811835585525, -122.402322293906)",143562254-E08 +160991233,52,16039258,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:58:49 AM,04/08/2016 10:59:15 AM,04/08/2016 10:59:57 AM,04/08/2016 11:00:07 AM,04/08/2016 11:07:41 AM,04/08/2016 11:30:04 AM,04/08/2016 11:53:01 AM,Code 2 Transport,04/08/2016 12:33:56 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160991233-52 +151583291,70,15060495,Medical Incident,06/07/2015,06/07/2015,06/07/2015 09:03:45 PM,06/07/2015 09:04:37 PM,06/07/2015 09:05:16 PM,06/07/2015 09:05:26 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Cancelled,06/07/2015 09:10:25 PM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",151583291-70 +160974310,62,16038682,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:46:38 PM,04/06/2016 09:46:38 PM,04/06/2016 09:47:07 PM,04/06/2016 09:47:15 PM,04/06/2016 10:03:59 PM,04/06/2016 10:18:12 PM,04/06/2016 10:36:35 PM,Code 2 Transport,04/06/2016 11:16:51 PM,3RD ST/22ND ST,San Francisco,94107,B10,25,2533,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7579397061731, -122.388315530161)",160974310-62 +150494031,B04,15019147,Structure Fire,02/18/2015,02/18/2015,02/18/2015 10:35:36 PM,02/18/2015 10:36:48 PM,02/18/2015 10:38:37 PM,02/18/2015 10:39:20 PM,02/18/2015 10:42:26 PM,04/25/2016 01:12:10 PM,04/25/2016 01:12:10 PM,Fire,02/18/2015 10:45:50 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Alarm,1,CHIEF,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",150494031-B04 +153260441,RC1,15125376,Medical Incident,11/22/2015,11/21/2015,11/22/2015 03:18:58 AM,11/22/2015 03:21:02 AM,11/22/2015 03:21:19 AM,11/22/2015 03:23:18 AM,11/22/2015 03:28:20 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Code 2 Transport,11/22/2015 03:31:48 AM,400 Block of 6TH ST,San Francisco,94107,B03,8,2254,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7770324435946, -122.403671442177)",153260441-RC1 +152840393,E10,15108914,Medical Incident,10/11/2015,10/10/2015,10/11/2015 02:08:50 AM,10/11/2015 02:12:10 AM,10/11/2015 02:12:43 AM,10/11/2015 02:14:25 AM,10/11/2015 02:18:26 AM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Code 2 Transport,10/11/2015 02:21:51 AM,2800 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7820549038039, -122.449570101296)",152840393-E10 +141663034,T18,14057427,Medical Incident,06/15/2014,06/15/2014,06/15/2014 09:49:21 PM,06/15/2014 09:50:35 PM,06/15/2014 09:51:54 PM,06/15/2014 09:53:38 PM,04/25/2016 01:16:44 PM,04/25/2016 01:16:44 PM,04/25/2016 01:16:44 PM,Code 2 Transport,06/15/2014 09:55:57 PM,2100 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,8,7,West of Twin Peaks,"(37.7477208608215, -122.475835310645)",141663034-T18 +150210617,E07,15008104,Medical Incident,01/21/2015,01/20/2015,01/21/2015 07:42:22 AM,01/21/2015 07:43:53 AM,01/21/2015 07:44:03 AM,01/21/2015 07:45:40 AM,01/21/2015 07:49:02 AM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Code 2 Transport,01/21/2015 07:51:35 AM,600 Block of CAPP ST,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7563058757575, -122.417666463858)",150210617-E07 +151261385,E11,15047720,Medical Incident,05/06/2015,05/06/2015,05/06/2015 10:43:17 AM,05/06/2015 10:44:07 AM,05/06/2015 10:44:59 AM,05/06/2015 10:45:19 AM,05/06/2015 10:48:25 AM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 2 Transport,05/06/2015 11:01:34 AM,1000 Block of YORK ST,San Francisco,94110,B06,7,5474,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7552495476347, -122.408489986396)",151261385-E11 +160932440,KM09,16036940,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:26:20 PM,04/02/2016 04:27:55 PM,04/02/2016 04:30:01 PM,04/02/2016 04:31:02 PM,04/02/2016 04:48:49 PM,04/02/2016 05:10:05 PM,04/02/2016 05:34:58 PM,Code 2 Transport,04/02/2016 06:09:16 PM,24TH ST/FLORIDA ST,San Francisco,94110,B06,7,5527,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7527390254513, -122.410066406492)",160932440-KM09 +141373268,85,14047073,Medical Incident,05/17/2014,05/17/2014,05/17/2014 08:50:58 PM,05/17/2014 08:52:40 PM,05/17/2014 08:53:37 PM,05/17/2014 08:54:21 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,No Merit,05/17/2014 09:06:17 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,false,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",141373268-85 +160990005,85,16039150,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:01:17 AM,04/08/2016 12:01:17 AM,04/08/2016 12:01:34 AM,04/08/2016 12:02:00 AM,04/08/2016 12:07:36 AM,04/08/2016 12:14:33 AM,04/08/2016 12:26:27 AM,Code 2 Transport,04/08/2016 12:53:02 AM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",160990005-85 +153461607,E01,15133214,Medical Incident,12/12/2015,12/12/2015,12/12/2015 11:35:40 AM,12/12/2015 11:37:16 AM,12/12/2015 11:44:01 AM,12/12/2015 11:44:52 AM,12/12/2015 11:48:09 AM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Code 2 Transport,12/12/2015 11:56:32 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",153461607-E01 +160922219,77,16036491,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:21:45 PM,04/01/2016 03:24:20 PM,04/01/2016 03:24:51 PM,04/01/2016 03:25:05 PM,04/01/2016 03:37:34 PM,04/01/2016 03:59:01 PM,04/01/2016 04:11:18 PM,Code 2 Transport,04/01/2016 04:45:51 PM,200 Block of MARTIN LUTHER KING JR DR,San Francisco,94122,B07,12,7743,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7669591119289, -122.462470187645)",160922219-77 +160991789,84,16039309,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:32:54 PM,04/08/2016 01:32:54 PM,04/08/2016 01:33:03 PM,04/08/2016 01:33:47 PM,04/08/2016 01:52:13 PM,04/08/2016 01:56:33 PM,04/08/2016 02:03:11 PM,Code 2 Transport,04/08/2016 02:32:13 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160991789-84 +160951573,57,16037607,Other,04/04/2016,04/04/2016,04/04/2016 12:00:10 PM,04/04/2016 12:01:13 PM,04/04/2016 12:09:02 PM,04/04/2016 12:11:28 PM,04/04/2016 12:16:21 PM,04/04/2016 12:50:44 PM,04/04/2016 01:01:03 PM,Code 2 Transport,04/04/2016 01:48:16 PM,600 Block of 3RD AVE,San Francisco,94118,B07,31,7121,3,3,3,true,Alarm,1,MEDIC,2,7,1,Inner Richmond,"(37.7764518013552, -122.460659464774)",160951573-57 +150652791,RS2,15024927,Medical Incident,03/06/2015,03/06/2015,03/06/2015 04:10:01 PM,03/06/2015 04:12:53 PM,03/06/2015 04:14:16 PM,03/06/2015 04:15:33 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Code 2 Transport,03/06/2015 04:17:26 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,9,Mission,"(37.769082767924, -122.413353472663)",150652791-RS2 +141851310,RC1,14064017,Medical Incident,07/04/2014,07/04/2014,07/04/2014 12:34:45 PM,07/04/2014 12:37:57 PM,07/04/2014 12:38:11 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Code 2 Transport,07/04/2014 12:41:31 PM,2200 Block of VAN NESS AVE,San Francisco,94109,B04,41,3152,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,3,Russian Hill,"(37.7962357754021, -122.423338594122)",141851310-RC1 +160991662,75,16039290,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:54:32 PM,04/08/2016 12:57:10 PM,04/08/2016 12:57:27 PM,04/08/2016 12:57:50 PM,04/08/2016 01:06:44 PM,04/08/2016 01:15:32 PM,04/08/2016 01:42:19 PM,Code 2 Transport,04/08/2016 02:22:43 PM,1900 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",160991662-75 +160982796,79,16039023,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:44:57 PM,04/07/2016 04:46:34 PM,04/07/2016 04:50:57 PM,04/07/2016 04:51:07 PM,04/07/2016 05:18:55 PM,04/07/2016 05:32:24 PM,04/07/2016 05:44:03 PM,Code 2 Transport,04/07/2016 06:16:00 PM,0 Block of 7TH ST,San Francisco,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795700115888, -122.411484015918)",160982796-79 +150411990,56,15015999,Medical Incident,02/10/2015,02/10/2015,02/10/2015 01:58:04 PM,02/10/2015 01:59:06 PM,02/10/2015 02:00:53 PM,02/10/2015 02:01:16 PM,02/10/2015 02:08:34 PM,02/10/2015 02:18:25 PM,04/25/2016 01:12:19 PM,Code 2 Transport,02/10/2015 03:07:39 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",150411990-56 +152100494,85,15079894,Medical Incident,07/29/2015,07/28/2015,07/29/2015 06:42:54 AM,07/29/2015 06:45:50 AM,07/29/2015 06:46:00 AM,07/29/2015 06:46:10 AM,07/29/2015 06:52:55 AM,07/29/2015 07:45:19 AM,07/29/2015 07:45:26 AM,Code 2 Transport,07/29/2015 08:00:27 AM,100 Block of CONCORD ST,San Francisco,94112,B09,43,6221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7115512141038, -122.442338856113)",152100494-85 +151072490,62,15040562,Traffic Collision,04/17/2015,04/17/2015,04/17/2015 03:41:31 PM,04/17/2015 03:42:42 PM,04/17/2015 03:43:42 PM,04/17/2015 03:46:05 PM,04/17/2015 03:50:21 PM,04/17/2015 04:07:42 PM,04/17/2015 04:14:35 PM,Code 2 Transport,04/17/2015 04:56:40 PM,FULTON ST/10TH AV,San Francisco,94118,B07,31,7133,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7733038332102, -122.468023915566)",151072490-62 +150283136,E01,15010880,Medical Incident,01/28/2015,01/28/2015,01/28/2015 06:49:24 PM,01/28/2015 06:49:54 PM,01/28/2015 06:51:14 PM,01/28/2015 06:52:19 PM,01/28/2015 06:55:03 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Code 2 Transport,01/28/2015 06:59:22 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",150283136-E01 +152713185,52,15103915,Medical Incident,09/28/2015,09/28/2015,09/28/2015 07:22:30 PM,09/28/2015 07:22:30 PM,09/28/2015 07:23:23 PM,09/28/2015 07:23:35 PM,09/28/2015 07:31:24 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Patient Declined Transport,09/28/2015 08:00:02 PM,300 Block of FAXON AVE,San Francisco,94112,B09,15,8463,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7209280246624, -122.460152149561)",152713185-52 +142693902,67,14094478,Medical Incident,09/26/2014,09/26/2014,09/26/2014 10:02:33 PM,09/26/2014 10:05:41 PM,09/26/2014 10:05:53 PM,09/26/2014 10:06:05 PM,09/26/2014 10:30:58 PM,09/26/2014 10:31:00 PM,09/26/2014 10:55:48 PM,Code 2 Transport,09/26/2014 11:29:27 PM,2300 Block of POWELL ST,San Francisco,94133,B01,28,131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8062826874223, -122.412114085659)",142693902-67 +160984067,70,16039144,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:18:38 PM,04/07/2016 11:20:34 PM,04/07/2016 11:20:46 PM,04/07/2016 11:20:57 PM,04/07/2016 11:28:21 PM,04/07/2016 11:39:31 PM,04/07/2016 11:45:00 PM,Code 2 Transport,04/08/2016 12:07:33 AM,100 Block of 10TH AVE,San Francisco,94118,B07,31,7137,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7855485905185, -122.468976308915)",160984067-70 +152911734,RC1,15111813,Medical Incident,10/18/2015,10/18/2015,10/18/2015 01:08:10 PM,10/18/2015 01:08:10 PM,10/18/2015 01:14:29 PM,10/18/2015 01:14:29 PM,10/18/2015 01:19:16 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Code 3 Transport,10/18/2015 01:53:20 PM,2200 Block of MASON ST,San Francisco,94133,B01,28,1424,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,North Beach,"(37.8045564846872, -122.413325822715)",152911734-RC1 +151261481,E36,15047729,Traffic Collision,05/06/2015,05/06/2015,05/06/2015 11:06:06 AM,05/06/2015 11:07:23 AM,05/06/2015 11:08:05 AM,05/06/2015 11:09:40 AM,05/06/2015 11:12:59 AM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 2 Transport,05/06/2015 11:29:13 AM,MINNA ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7805353840251, -122.40816079453)",151261481-E36 +143462708,75,14123450,Medical Incident,12/12/2014,12/12/2014,12/12/2014 05:15:45 PM,12/12/2014 05:17:01 PM,12/12/2014 05:29:43 PM,12/12/2014 05:29:43 PM,12/12/2014 05:42:43 PM,12/12/2014 06:05:09 PM,12/12/2014 06:11:28 PM,Code 2 Transport,12/12/2014 07:06:41 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",143462708-75 +143630190,AM24,14129730,Medical Incident,12/29/2014,12/28/2014,12/29/2014 02:03:10 AM,12/29/2014 02:03:29 AM,12/29/2014 02:04:05 AM,12/29/2014 02:04:05 AM,12/29/2014 02:07:46 AM,12/29/2014 02:24:29 AM,12/29/2014 02:51:48 AM,Code 2 Transport,12/29/2014 03:11:11 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",143630190-AM24 +142210900,E10,14076655,Medical Incident,08/09/2014,08/09/2014,08/09/2014 08:41:49 AM,08/09/2014 08:42:09 AM,08/09/2014 08:42:25 AM,08/09/2014 08:43:36 AM,08/09/2014 08:44:20 AM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,No Merit,08/09/2014 08:45:03 AM,MASONIC AV/PINE ST,San Francisco,94115,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7863022984419, -122.446610464943)",142210900-E10 +152193806,E01,15083579,Medical Incident,08/07/2015,08/07/2015,08/07/2015 09:21:09 PM,08/07/2015 09:21:47 PM,08/07/2015 09:22:17 PM,08/07/2015 09:23:36 PM,08/07/2015 09:25:38 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Code 2 Transport,08/07/2015 09:45:57 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",152193806-E01 +142781943,E05,14097805,Medical Incident,10/05/2014,10/05/2014,10/05/2014 01:27:26 PM,10/05/2014 01:28:52 PM,10/05/2014 01:30:46 PM,10/05/2014 01:31:31 PM,10/05/2014 01:34:45 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Code 2 Transport,10/05/2014 01:36:57 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",142781943-E05 +160930571,KM09,16036726,Medical Incident,04/02/2016,04/01/2016,04/02/2016 05:49:23 AM,04/02/2016 05:51:15 AM,04/02/2016 05:51:22 AM,04/02/2016 05:51:50 AM,04/02/2016 06:01:07 AM,04/02/2016 06:16:23 AM,04/02/2016 06:30:24 AM,Code 2 Transport,04/02/2016 06:53:29 AM,3100 Block of BALBOA ST,San Francisco,94121,B07,14,7244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7759901352962, -122.492505810279)",160930571-KM09 +160972487,KM05,16038470,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:42:35 PM,04/06/2016 02:42:35 PM,04/06/2016 02:43:03 PM,04/06/2016 02:43:42 PM,04/06/2016 02:48:43 PM,04/06/2016 02:57:45 PM,04/06/2016 03:10:19 PM,Code 2 Transport,04/06/2016 03:39:31 PM,PARK PRESIDIO BL/CALIFORNIA ST,San Francisco,94118,B07,31,7152,3,3,3,false,Non Life-threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7844488888819, -122.472585865925)",160972487-KM05 +142010104,RA48,14069434,Medical Incident,07/20/2014,07/19/2014,07/20/2014 12:30:49 AM,07/20/2014 12:32:04 AM,07/20/2014 12:32:23 AM,07/20/2014 12:43:52 AM,07/20/2014 12:44:09 AM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Code 3 Transport,07/20/2014 12:52:49 AM,1300 Block of GATEVIEW AVE,Treasure Islan,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8240338488424, -122.376458039001)",142010104-RA48 +152760915,E17,15105680,Medical Incident,10/03/2015,10/03/2015,10/03/2015 08:26:38 AM,10/03/2015 08:27:12 AM,10/03/2015 08:27:24 AM,10/03/2015 08:29:00 AM,10/03/2015 08:32:02 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Code 2 Transport,10/03/2015 08:46:01 AM,0 Block of WESTBROOK CT,San Francisco,94124,B10,17,6624,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7350385061864, -122.382425286055)",152760915-E17 +152790008,79,15106873,Medical Incident,10/06/2015,10/05/2015,10/06/2015 12:05:26 AM,10/06/2015 12:05:26 AM,10/06/2015 12:05:38 AM,10/06/2015 12:05:55 AM,10/06/2015 12:15:13 AM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Patient Declined Transport,10/06/2015 12:45:26 AM,500 Block of ARBALLO DR,San Francisco,94132,B08,19,8583,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7179307261278, -122.483251553838)",152790008-79 +161002725,76,16039886,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:52:55 PM,04/09/2016 06:54:53 PM,04/09/2016 06:55:17 PM,04/09/2016 06:55:27 PM,04/09/2016 07:01:06 PM,04/09/2016 07:10:38 PM,04/09/2016 07:17:40 PM,Code 2 Transport,04/09/2016 07:38:09 PM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,2,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7945054272056, -122.403956804569)",161002725-76 +160952975,77,16037728,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:37:51 PM,04/04/2016 05:38:23 PM,04/04/2016 05:38:47 PM,04/04/2016 05:39:02 PM,04/04/2016 05:50:17 PM,04/04/2016 06:14:53 PM,04/04/2016 06:50:08 PM,Code 2 Transport,04/04/2016 07:31:23 PM,0 Block of COMMER CT,San Francisco,94124,B10,17,6622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7325365939267, -122.385005626506)",160952975-77 +153051504,T06,15117107,Structure Fire,11/01/2015,11/01/2015,11/01/2015 08:25:58 AM,11/01/2015 08:25:58 AM,11/01/2015 08:26:15 AM,11/01/2015 08:28:06 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Fire,11/01/2015 08:28:58 AM,2300 Block of MARKET ST,San Francisco,94114,B05,6,5233,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7635007029742, -122.434209629009)",153051504-T06 +141020298,E29,14034541,,04/12/2014,04/12/2014,04/12/2014 06:29:00 PM,04/12/2014 06:30:00 PM,04/12/2014 06:31:00 PM,04/12/2014 06:32:00 PM,04/12/2014 06:36:00 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,SFPD,04/12/2014 06:41:00 PM,800 Block of TERRY A FRANCOIS BLVD,SAN FRANCISCO,94107,B03,29,2671,3,3,3,false,Fire,1,ENGINE,1,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",141020298-E29 +152522351,72,15096370,Medical Incident,09/09/2015,09/09/2015,09/09/2015 02:49:37 PM,09/09/2015 02:51:59 PM,09/09/2015 02:52:33 PM,09/09/2015 02:52:47 PM,09/09/2015 02:56:15 PM,09/09/2015 03:06:23 PM,09/09/2015 03:15:37 PM,Code 2 Transport,09/09/2015 04:01:45 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",152522351-72 +150150375,KM07,15005816,Medical Incident,01/15/2015,01/14/2015,01/15/2015 04:32:56 AM,01/15/2015 04:34:55 AM,01/15/2015 04:36:05 AM,01/15/2015 04:37:19 AM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Code 2 Transport,01/15/2015 04:38:39 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150150375-KM07 +143241484,KM01,14114702,Medical Incident,11/20/2014,11/20/2014,11/20/2014 12:07:57 PM,11/20/2014 12:07:57 PM,11/20/2014 12:12:21 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Cancelled,11/20/2014 12:16:19 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",143241484-KM01 +143122324,64,14110578,Medical Incident,11/08/2014,11/08/2014,11/08/2014 04:02:22 PM,11/08/2014 04:04:20 PM,11/08/2014 04:04:37 PM,11/08/2014 04:04:50 PM,11/08/2014 04:09:28 PM,11/08/2014 04:24:38 PM,11/08/2014 05:11:44 PM,Code 2 Transport,11/08/2014 05:19:33 PM,ORIZABA AV/SAGAMORE ST,San Francisco,94112,B09,33,8375,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7113703025663, -122.462570048877)",143122324-64 +141150054,77,14038710,Medical Incident,04/25/2014,04/24/2014,04/25/2014 06:47:21 AM,04/25/2014 06:47:54 AM,04/25/2014 06:49:42 AM,04/25/2014 06:49:58 AM,04/25/2014 06:57:08 AM,04/25/2014 07:04:15 AM,04/25/2014 07:13:00 AM,Code 3 Transport,04/25/2014 07:45:15 AM,1000 Block of NORIEGA ST,SAN FRANCISCO,94122,B08,40,7373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7543653273459, -122.47487407645)",141150054-77 +141653692,88,14057101,Medical Incident,06/14/2014,06/14/2014,06/14/2014 11:20:20 PM,06/14/2014 11:20:20 PM,06/14/2014 11:36:02 PM,06/14/2014 11:36:19 PM,06/14/2014 11:57:30 PM,06/15/2014 12:08:40 AM,06/15/2014 12:19:26 AM,Code 2 Transport,06/15/2014 12:50:01 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",141653692-88 +160930093,64,16036674,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:29:56 AM,04/02/2016 12:36:14 AM,04/02/2016 12:36:42 AM,04/02/2016 12:36:50 AM,04/02/2016 12:49:31 AM,04/02/2016 12:59:02 AM,04/02/2016 01:24:22 AM,Code 2 Transport,04/02/2016 01:56:11 AM,1300 Block of 41ST AV,San Francisco,94122,B08,23,7631,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7615947609278, -122.500563667463)",160930093-64 +141140008,88,14038329,Medical Incident,04/24/2014,04/23/2014,04/24/2014 12:58:24 AM,04/24/2014 01:00:27 AM,04/24/2014 01:11:00 AM,04/24/2014 01:11:17 AM,04/25/2016 01:17:43 PM,04/24/2014 01:29:14 AM,04/24/2014 01:59:45 AM,Code 2 Transport,04/24/2014 02:27:54 AM,1000 Block of POLK ST,SAN FRANCISCO,94109,B04,3,3121,,2,2,false,Non Life-threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",141140008-88 +151773620,E17,15067538,Medical Incident,06/26/2015,06/26/2015,06/26/2015 09:43:44 PM,06/26/2015 09:46:12 PM,06/26/2015 09:46:30 PM,06/26/2015 09:47:43 PM,06/26/2015 09:51:28 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 10:17:41 PM,1700 Block of LANE ST,San Francisco,94124,B10,17,6535,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7313181238579, -122.390389464317)",151773620-E17 +152020477,E28,15076864,Medical Incident,07/21/2015,07/20/2015,07/21/2015 05:56:47 AM,07/21/2015 05:56:47 AM,07/21/2015 05:56:54 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Other,07/21/2015 05:59:53 AM,BUSH ST/MONTGOMERY ST,San Francisco,94104,B01,13,1235,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",152020477-E28 +160923865,56,16036642,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:50:44 PM,04/01/2016 10:52:40 PM,04/01/2016 10:53:15 PM,04/01/2016 10:53:23 PM,04/01/2016 11:06:57 PM,04/01/2016 11:32:06 PM,04/01/2016 11:47:59 PM,Code 2 Transport,04/02/2016 12:34:11 AM,500 Block of VELASCO AVE,San Francisco,94134,B09,43,6247,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7094039046609, -122.417209624448)",160923865-56 +152411530,B09,15091855,Alarms,08/29/2015,08/29/2015,08/29/2015 11:04:35 AM,08/29/2015 11:05:51 AM,08/29/2015 11:06:25 AM,08/29/2015 11:06:37 AM,08/29/2015 11:11:32 AM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 11:19:45 AM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,false,Alarm,1,CHIEF,3,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",152411530-B09 +141993001,T03,14069024,Alarms,07/18/2014,07/18/2014,07/18/2014 07:29:35 PM,07/18/2014 07:31:10 PM,07/18/2014 07:31:38 PM,07/18/2014 07:32:56 PM,07/18/2014 07:35:59 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Fire,07/18/2014 07:44:04 PM,700 Block of VAN NESS AVE,San Francisco,94102,B02,3,3163,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7824440383404, -122.420574545604)",141993001-T03 +143563759,57,14127543,Medical Incident,12/22/2014,12/22/2014,12/22/2014 09:01:14 PM,12/22/2014 09:06:13 PM,12/22/2014 09:07:28 PM,12/22/2014 09:08:40 PM,12/22/2014 09:11:19 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,No Merit,12/22/2014 09:16:00 PM,LOBOS ST/CAPITOL AV,San Francisco,94112,B09,33,8372,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7149083465788, -122.459046133877)",143563759-57 +143574214,66,14127960,Medical Incident,12/23/2014,12/23/2014,12/23/2014 11:48:12 PM,12/23/2014 11:49:44 PM,12/23/2014 11:50:28 PM,12/23/2014 11:50:37 PM,12/24/2014 12:09:27 AM,12/24/2014 12:19:01 AM,12/24/2014 12:47:51 AM,Code 2 Transport,12/24/2014 12:55:41 AM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",143574214-66 +152731708,E32,15104496,Structure Fire,09/30/2015,09/30/2015,09/30/2015 12:48:29 PM,09/30/2015 12:48:44 PM,09/30/2015 12:49:07 PM,09/30/2015 12:50:34 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 12:54:35 PM,300 Block of FLOOD AVE,San Francisco,94112,B09,15,8231,3,3,3,true,Alarm,1,ENGINE,8,9,7,West of Twin Peaks,"(37.7299423312189, -122.447712264183)",152731708-E32 +160972890,AM16,16038518,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:14:31 PM,04/06/2016 04:15:02 PM,04/06/2016 04:15:15 PM,04/06/2016 04:16:00 PM,04/06/2016 04:25:45 PM,04/06/2016 04:37:54 PM,04/06/2016 04:56:31 PM,Code 2 Transport,04/06/2016 05:30:09 PM,1400 Block of 34TH AVE,San Francisco,94122,B08,23,7541,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7600606659429, -122.492933417481)",160972890-AM16 +160932532,88,16036951,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:53:59 PM,04/02/2016 04:54:11 PM,04/02/2016 04:57:09 PM,04/02/2016 04:57:19 PM,04/02/2016 05:25:56 PM,04/02/2016 05:52:10 PM,04/02/2016 06:18:50 PM,Code 2 Transport,04/02/2016 06:53:52 PM,2200 Block of 24TH AVE,San Francisco,94116,B08,40,7457,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7456092377694, -122.481314885049)",160932532-88 +142523003,T15,14088078,Vehicle Fire,09/09/2014,09/09/2014,09/09/2014 07:37:02 PM,09/09/2014 07:38:23 PM,09/09/2014 07:39:04 PM,09/09/2014 07:41:09 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,Fire,09/09/2014 07:43:39 PM,300 Block of SAINT CHARLES AV,Daly City,94132,B09,15,8313,3,3,3,false,Fire,1,TRUCK,2,9,7,Oceanview/Merced/Ingleside,"(37.7083764026475, -122.469270912671)",142523003-T15 +160923678,79,16036628,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:02:38 PM,04/01/2016 10:02:38 PM,04/01/2016 10:03:58 PM,04/01/2016 10:04:09 PM,04/01/2016 10:10:53 PM,04/01/2016 10:35:54 PM,04/01/2016 10:44:04 PM,Code 2 Transport,04/01/2016 11:15:09 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",160923678-79 +161000684,64,16039646,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:03:30 AM,04/09/2016 07:05:30 AM,04/09/2016 07:06:14 AM,04/09/2016 07:07:02 AM,04/09/2016 07:13:00 AM,04/09/2016 07:33:13 AM,04/09/2016 07:59:18 AM,Code 2 Transport,04/09/2016 08:33:26 AM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7796175741202, -122.473838626607)",161000684-64 +152412978,T02,15091981,Structure Fire,08/29/2015,08/29/2015,08/29/2015 05:24:40 PM,08/29/2015 05:26:40 PM,08/29/2015 05:27:05 PM,08/29/2015 05:28:30 PM,08/29/2015 05:32:14 PM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 05:37:01 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,3,3,3,false,,1,TRUCK,4,1,3,North Beach,"(37.8084350175869, -122.410774214375)",152412978-T02 +152240484,E17,15085242,Medical Incident,08/12/2015,08/11/2015,08/12/2015 05:56:36 AM,08/12/2015 05:58:02 AM,08/12/2015 05:58:20 AM,08/12/2015 06:01:21 AM,08/12/2015 06:04:37 AM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Code 2 Transport,08/12/2015 06:10:12 AM,100 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",152240484-E17 +160923584,71,16036619,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:36:37 PM,04/01/2016 09:40:01 PM,04/01/2016 09:40:20 PM,04/01/2016 09:40:27 PM,04/01/2016 09:43:56 PM,04/01/2016 09:57:55 PM,04/01/2016 10:07:11 PM,Code 2 Transport,04/01/2016 10:40:13 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7716028339242, -122.445694365285)",160923584-71 +151993388,62,15075978,Medical Incident,07/18/2015,07/18/2015,07/18/2015 08:02:22 PM,07/18/2015 08:04:18 PM,07/18/2015 08:05:06 PM,07/18/2015 08:05:15 PM,07/18/2015 08:08:01 PM,07/18/2015 08:14:58 PM,07/18/2015 08:48:00 PM,Code 2 Transport,07/18/2015 08:59:58 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",151993388-62 +141820118,E19,14062872,Alarms,07/01/2014,06/30/2014,07/01/2014 12:58:04 AM,07/01/2014 12:59:09 AM,07/01/2014 12:59:59 AM,07/01/2014 01:01:15 AM,07/01/2014 01:03:35 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,07/01/2014 01:16:19 AM,400 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8733,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7310685242349, -122.477740350434)",141820118-E19 +142503444,E18,14087349,Other,09/07/2014,09/07/2014,09/07/2014 09:29:15 PM,09/07/2014 09:30:51 PM,09/07/2014 09:31:29 PM,09/07/2014 09:33:12 PM,09/07/2014 09:38:43 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Other,09/07/2014 09:54:19 PM,46TH AV/SLOAT BL,San Francisco,94132,B08,23,7733,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7355578832844, -122.504185328317)",142503444-E18 +143282498,86,14116367,Structure Fire,11/24/2014,11/24/2014,11/24/2014 04:06:28 PM,11/24/2014 04:07:13 PM,11/24/2014 04:07:27 PM,11/24/2014 04:08:15 PM,11/24/2014 04:13:01 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/24/2014 04:13:54 PM,CLAYTON ST/FELL ST,San Francisco,94117,B05,21,4523,3,3,3,true,Alarm,1,MEDIC,6,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",143282498-86 +151171211,E03,15044161,Medical Incident,04/27/2015,04/27/2015,04/27/2015 10:17:26 AM,04/27/2015 10:18:23 AM,04/27/2015 10:18:33 AM,04/27/2015 10:19:41 AM,04/27/2015 10:23:14 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Code 2 Transport,04/27/2015 10:35:29 AM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",151171211-E03 +160930588,79,16036728,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:13:01 AM,04/02/2016 06:14:53 AM,04/02/2016 06:15:12 AM,04/02/2016 06:15:28 AM,04/02/2016 06:21:57 AM,04/02/2016 06:44:32 AM,04/02/2016 06:47:18 AM,Code 2 Transport,04/02/2016 07:25:53 AM,0 Block of LOCKSLEY AVE,San Francisco,94122,B08,22,7331,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7592626627211, -122.463439272342)",160930588-79 +153051083,RS2,15117052,Traffic Collision,11/01/2015,10/31/2015,11/01/2015 04:08:08 AM,11/01/2015 04:10:45 AM,11/01/2015 04:11:15 AM,11/01/2015 04:12:55 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 3 Transport,11/01/2015 04:19:31 AM,100 Block of AVENUE C,San Francisco,94130,B10,9,2626,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",153051083-RS2 +160970270,85,16038268,Medical Incident,04/06/2016,04/05/2016,04/06/2016 03:03:34 AM,04/06/2016 03:05:54 AM,04/06/2016 03:06:13 AM,04/06/2016 03:06:21 AM,04/06/2016 03:15:38 AM,04/06/2016 03:27:40 AM,04/06/2016 03:32:31 AM,Code 2 Transport,04/06/2016 04:03:17 AM,600 Block of LINCOLN WAY,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7658879294478, -122.464839640313)",160970270-85 +143571621,E01,14127754,Medical Incident,12/23/2014,12/23/2014,12/23/2014 12:17:00 PM,12/23/2014 12:17:46 PM,12/23/2014 12:18:23 PM,12/23/2014 12:20:41 PM,12/23/2014 12:23:18 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Code 2 Transport,12/23/2014 12:41:03 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",143571621-E01 +160992892,79,16039407,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:57:56 PM,04/08/2016 05:58:18 PM,04/08/2016 05:58:28 PM,04/08/2016 05:58:41 PM,04/08/2016 06:09:39 PM,04/08/2016 06:23:54 PM,04/08/2016 06:32:39 PM,Code 3 Transport,04/08/2016 07:25:05 PM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.794138132306, -122.407728738815)",160992892-79 +160983488,83,16039090,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:58:03 PM,04/07/2016 07:59:39 PM,04/07/2016 08:00:00 PM,04/07/2016 08:01:38 PM,04/07/2016 08:10:01 PM,04/07/2016 08:32:24 PM,04/07/2016 09:17:35 PM,Code 2 Transport,04/07/2016 10:04:19 PM,0 Block of BERKELEY WAY,San Francisco,94131,B06,26,8173,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Glen Park,"(37.7387923508903, -122.437916930426)",160983488-83 +150091964,E35,15003589,Water Rescue,01/09/2015,01/09/2015,01/09/2015 02:17:28 PM,01/09/2015 02:17:28 PM,01/09/2015 02:18:11 PM,01/09/2015 02:19:20 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Fire,01/09/2015 02:58:21 PM,VAN NESS AV/BAY ST,San Francisco,94109,B04,16,3144,3,3,3,false,Fire,1,ENGINE,7,1,2,Russian Hill,"(37.8041458445112, -122.425109522103)",150091964-E35 +160993307,64,16039443,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:42:06 PM,04/08/2016 07:42:27 PM,04/08/2016 07:43:30 PM,04/08/2016 07:43:56 PM,04/08/2016 07:54:48 PM,04/08/2016 08:15:11 PM,04/08/2016 08:29:50 PM,Code 2 Transport,04/08/2016 09:05:58 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160993307-64 +160982685,52,16039009,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:14:38 PM,04/07/2016 04:16:07 PM,04/07/2016 04:36:14 PM,04/07/2016 04:36:29 PM,04/07/2016 04:38:28 PM,04/07/2016 04:50:29 PM,04/07/2016 05:13:10 PM,Code 2 Transport,04/07/2016 05:39:32 PM,24TH ST/SHOTWELL ST,San Francisco,94110,B06,7,5526,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.752439647175, -122.415172290461)",160982685-52 +152211133,84,15084156,Medical Incident,08/09/2015,08/09/2015,08/09/2015 10:11:50 AM,08/09/2015 10:13:16 AM,08/09/2015 10:13:27 AM,08/09/2015 10:13:37 AM,08/09/2015 10:27:06 AM,08/09/2015 11:00:54 AM,08/09/2015 11:02:17 AM,Code 2 Transport,08/09/2015 12:05:22 PM,200 Block of HARRISON ST,San Francisco,94105,B03,35,2123,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",152211133-84 +152630233,E23,15100455,Medical Incident,09/20/2015,09/19/2015,09/20/2015 01:13:14 AM,09/20/2015 01:13:14 AM,09/20/2015 01:13:24 AM,09/20/2015 01:14:49 AM,09/20/2015 01:17:39 AM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Patient Declined Transport,09/20/2015 01:26:35 AM,4000 Block of MORAGA ST,San Francisco,94122,B08,23,7716,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7548622845517, -122.506073804076)",152630233-E23 +141330976,E02,14045236,Medical Incident,05/13/2014,05/13/2014,05/13/2014 09:50:06 AM,05/13/2014 09:50:45 AM,05/13/2014 10:03:56 AM,05/13/2014 10:03:56 AM,05/13/2014 10:08:14 AM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/13/2014 10:11:22 AM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,41,1311,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",141330976-E02 +143072735,AM16,14108720,Odor (Strange / Unknown),11/03/2014,11/03/2014,11/03/2014 06:05:24 PM,11/03/2014 06:06:54 PM,11/03/2014 06:11:17 PM,11/03/2014 06:11:48 PM,11/03/2014 06:25:09 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,Cancelled,11/03/2014 06:33:32 PM,2500 Block of PACHECO ST,San Francisco,94116,B08,18,7516,3,3,3,false,Alarm,1,PRIVATE,4,8,4,Sunset/Parkside,"(37.7499589406442, -122.487455739938)",143072735-AM16 +143403845,77,14120957,Medical Incident,12/06/2014,12/06/2014,12/06/2014 10:46:42 PM,12/06/2014 10:46:42 PM,12/06/2014 10:46:42 PM,12/06/2014 10:46:42 PM,12/06/2014 10:46:42 PM,12/06/2014 11:14:12 PM,12/06/2014 11:22:05 PM,Code 2 Transport,12/06/2014 11:44:46 PM,24TH ST/ALABAMA ST,San Francisco,94110,B99,7,5527,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7526848900219, -122.410962662832)",143403845-77 +151301442,B07,15049328,Medical Incident,05/10/2015,05/10/2015,05/10/2015 12:29:36 PM,05/10/2015 12:29:36 PM,05/10/2015 12:44:29 PM,05/10/2015 12:44:29 PM,05/10/2015 12:44:29 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Other,05/10/2015 12:58:28 PM,41ST AV/FULTON ST,San Francisco,94122,B07,34,7262,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,7,1,Outer Richmond,"(37.7717874120927, -122.501327709306)",151301442-B07 +142932766,RC3,14103455,Medical Incident,10/20/2014,10/20/2014,10/20/2014 06:10:42 PM,10/20/2014 06:11:59 PM,10/20/2014 06:14:34 PM,10/20/2014 06:14:45 PM,10/20/2014 06:23:42 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Medical Examiner,10/20/2014 06:25:01 PM,400 Block of 30TH ST,San Francisco,94131,B06,26,5573,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Glen Park,"(37.7418068442196, -122.430412415465)",142932766-RC3 +151391275,AM12,15052736,Medical Incident,05/19/2015,05/19/2015,05/19/2015 10:42:29 AM,05/19/2015 10:42:29 AM,05/19/2015 10:43:28 AM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Patient Declined Transport,05/19/2015 10:44:13 AM,3100 Block of MISSION ST,San Francisco,94110,B06,11,5624,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7458637646978, -122.419633930118)",151391275-AM12 +150131518,56,15005139,Medical Incident,01/13/2015,01/13/2015,01/13/2015 12:00:51 PM,01/13/2015 12:02:23 PM,01/13/2015 12:02:47 PM,01/13/2015 12:03:13 PM,01/13/2015 12:09:09 PM,01/13/2015 12:26:51 PM,01/13/2015 12:43:18 PM,Code 2 Transport,01/13/2015 01:32:52 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",150131518-56 +160974453,AM20,16038697,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:27:24 PM,04/06/2016 10:28:02 PM,04/06/2016 10:28:10 PM,04/06/2016 10:28:54 PM,04/06/2016 10:34:41 PM,04/06/2016 10:54:10 PM,04/06/2016 11:07:17 PM,Code 2 Transport,04/06/2016 11:51:15 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,false,Non Life-threatening,1,PRIVATE,3,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",160974453-AM20 +160960623,81,16037909,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:50:52 AM,04/05/2016 07:51:42 AM,04/05/2016 07:52:19 AM,04/05/2016 07:53:11 AM,04/05/2016 08:00:19 AM,04/05/2016 08:07:33 AM,04/05/2016 08:31:10 AM,Code 2 Transport,04/05/2016 08:59:33 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160960623-81 +152190239,E18,15083244,Medical Incident,08/07/2015,08/06/2015,08/07/2015 02:04:29 AM,08/07/2015 02:05:01 AM,08/07/2015 02:05:11 AM,08/07/2015 02:07:26 AM,08/07/2015 02:11:03 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/07/2015 02:25:01 AM,2000 Block of 47TH AVE,San Francisco,94116,B08,23,7714,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7482566370152, -122.506083721211)",152190239-E18 +143544070,E39,14126664,Fuel Spill,12/20/2014,12/20/2014,12/20/2014 08:01:30 PM,12/20/2014 08:01:30 PM,12/20/2014 08:01:44 PM,12/20/2014 08:03:11 PM,12/20/2014 08:08:12 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Fire,12/20/2014 09:08:05 PM,400 Block of STAPLES AVE,San Francisco,94112,B09,15,8233,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7290053514986, -122.451785387701)",143544070-E39 +143542317,KM09,14126526,Medical Incident,12/20/2014,12/20/2014,12/20/2014 12:54:37 PM,12/20/2014 12:55:46 PM,12/20/2014 12:56:11 PM,12/20/2014 12:59:18 PM,12/20/2014 01:16:13 PM,12/20/2014 01:16:16 PM,12/20/2014 01:36:03 PM,Code 2 Transport,12/20/2014 02:14:12 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",143542317-KM09 +160951238,KM04,16037576,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:35:10 AM,04/04/2016 10:35:52 AM,04/04/2016 10:36:19 AM,04/04/2016 10:38:37 AM,04/04/2016 10:39:37 AM,04/04/2016 11:05:08 AM,04/04/2016 11:26:36 AM,Code 2 Transport,04/04/2016 12:30:37 PM,1400 Block of MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7759986613945, -122.418004260708)",160951238-KM04 +161002938,55,16039914,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:02:45 PM,04/09/2016 08:05:36 PM,04/09/2016 08:05:54 PM,04/09/2016 08:06:35 PM,04/09/2016 08:18:01 PM,04/09/2016 08:27:53 PM,04/09/2016 08:41:56 PM,Code 2 Transport,04/09/2016 09:08:00 PM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7945054272056, -122.403956804569)",161002938-55 +142432790,E02,14084746,Medical Incident,08/31/2014,08/31/2014,08/31/2014 07:00:42 PM,08/31/2014 07:01:22 PM,08/31/2014 07:01:50 PM,08/31/2014 07:03:31 PM,08/31/2014 07:06:54 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Patient Declined Transport,08/31/2014 07:09:31 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",142432790-E02 +152521123,64,15096263,Medical Incident,09/09/2015,09/09/2015,09/09/2015 09:31:55 AM,09/09/2015 09:32:57 AM,09/09/2015 09:33:14 AM,09/09/2015 09:33:25 AM,09/09/2015 09:38:20 AM,09/09/2015 09:55:30 AM,09/09/2015 10:07:38 AM,Code 2 Transport,09/09/2015 10:40:51 AM,2100 Block of BALBOA ST,San Francisco,94121,B07,14,7171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7763694845957, -122.481778677383)",152521123-64 +160981724,KM05,16038902,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:08:51 PM,04/07/2016 12:10:53 PM,04/07/2016 12:11:17 PM,04/07/2016 12:11:42 PM,04/07/2016 12:24:22 PM,04/07/2016 12:48:37 PM,04/07/2016 01:13:19 PM,Code 2 Transport,04/07/2016 01:46:30 PM,9TH ST/MARKET ST,San Francisco,94103,B02,36,2337,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160981724-KM05 +161003326,56,16039958,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:01:47 PM,04/09/2016 10:03:07 PM,04/09/2016 10:03:58 PM,04/09/2016 10:04:05 PM,04/09/2016 10:19:16 PM,04/09/2016 11:03:28 PM,04/09/2016 11:18:23 PM,Code 2 Transport,04/09/2016 11:58:28 PM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",161003326-56 +150392853,53,15015290,Medical Incident,02/08/2015,02/08/2015,02/08/2015 06:16:03 PM,02/08/2015 06:17:36 PM,02/08/2015 06:17:49 PM,02/08/2015 06:18:03 PM,02/08/2015 06:34:29 PM,02/08/2015 06:52:58 PM,02/08/2015 07:15:56 PM,Code 2 Transport,02/08/2015 07:51:46 PM,100 Block of ASHTON AVE,San Francisco,94132,B09,15,8434,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7208515092179, -122.462328795152)",150392853-53 +151062816,79,15040145,Medical Incident,04/16/2015,04/16/2015,04/16/2015 04:55:56 PM,04/16/2015 04:56:56 PM,04/16/2015 04:57:12 PM,04/16/2015 04:57:21 PM,04/16/2015 05:10:00 PM,04/16/2015 05:27:49 PM,04/16/2015 05:43:33 PM,Code 2 Transport,04/16/2015 06:16:22 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",151062816-79 +150460336,71,15017750,Medical Incident,02/15/2015,02/14/2015,02/15/2015 02:04:34 AM,02/15/2015 02:07:06 AM,02/15/2015 02:07:23 AM,02/15/2015 02:08:01 AM,02/15/2015 02:14:25 AM,02/15/2015 02:34:50 AM,02/15/2015 02:46:31 AM,Code 2 Transport,02/15/2015 03:06:28 AM,5400 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8157,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7408206188766, -122.435408604445)",150460336-71 +151000355,E36,15037718,Medical Incident,04/10/2015,04/09/2015,04/10/2015 04:46:33 AM,04/10/2015 04:48:34 AM,04/10/2015 04:48:47 AM,04/10/2015 04:51:40 AM,04/10/2015 04:53:45 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Code 2 Transport,04/10/2015 05:11:22 AM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7771444793102, -122.415757033207)",151000355-E36 +151413643,E51,15053748,Administrative,05/21/2015,05/21/2015,05/21/2015 08:25:20 PM,05/21/2015 08:25:29 PM,05/21/2015 08:25:47 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 08:26:13 PM,200 Block of LINCOLN BLVD,Presidio,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8016003147368, -122.456408426343)",151413643-E51 +151403293,E04,15053309,Medical Incident,05/20/2015,05/20/2015,05/20/2015 07:32:55 PM,05/20/2015 07:35:38 PM,05/20/2015 07:35:47 PM,05/20/2015 07:37:12 PM,05/20/2015 07:42:25 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Code 2 Transport,05/20/2015 07:58:02 PM,BERRY ST/4TH ST,San Francisco,94158,B03,8,2171,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7757873146535, -122.393355126399)",151403293-E04 +153133352,E15,15120432,Medical Incident,11/09/2015,11/09/2015,11/09/2015 08:43:48 PM,11/09/2015 08:44:31 PM,11/09/2015 08:45:14 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,Code 3 Transport,11/09/2015 08:46:21 PM,900 Block of FRANCE AV,San Francisco,94112,B09,43,6157,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7165657671723, -122.430897952623)",153133352-E15 +142130761,84,14073759,Medical Incident,08/01/2014,08/01/2014,08/01/2014 08:13:00 AM,08/01/2014 08:15:44 AM,08/01/2014 08:19:41 AM,08/01/2014 08:19:46 AM,08/01/2014 08:27:11 AM,08/01/2014 08:42:33 AM,08/01/2014 08:45:22 AM,Code 3 Transport,08/01/2014 09:36:05 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",142130761-84 +151531763,B09,15058278,Structure Fire,06/02/2015,06/02/2015,06/02/2015 01:03:48 PM,06/02/2015 01:05:15 PM,06/02/2015 01:05:46 PM,06/02/2015 01:07:12 PM,06/02/2015 01:12:08 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Fire,06/02/2015 01:14:12 PM,1000 Block of GOETTINGEN ST,San Francisco,94134,B10,44,6313,3,3,3,false,Alarm,1,CHIEF,3,10,10,Portola,"(37.7190470338959, -122.403385740748)",151531763-B09 +150790013,RS2,15030113,Structure Fire,03/20/2015,03/19/2015,03/20/2015 12:01:07 AM,03/20/2015 12:04:49 AM,03/20/2015 12:04:58 AM,03/20/2015 12:06:16 AM,03/20/2015 12:12:19 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 12:41:15 AM,MADRID ST/BRAZIL AV,San Francisco,94112,B09,43,6133,3,3,3,false,Alarm,1,RESCUE SQUAD,7,9,11,Excelsior,"(37.7231672404647, -122.43163313445)",150790013-RS2 +153181619,E31,15122248,Medical Incident,11/14/2015,11/14/2015,11/14/2015 11:55:42 AM,11/14/2015 11:56:35 AM,11/14/2015 11:57:16 AM,11/14/2015 11:58:20 AM,11/14/2015 11:59:13 AM,04/25/2016 01:07:12 PM,04/25/2016 01:07:12 PM,Patient Declined Transport,11/14/2015 12:04:25 PM,GEARY BL/9TH AV,San Francisco,94118,B07,31,7135,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7808797138944, -122.46748765154)",153181619-E31 +160971907,KM11,16038411,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:39:06 PM,04/06/2016 12:39:06 PM,04/06/2016 12:43:01 PM,04/06/2016 12:43:01 PM,04/06/2016 12:54:49 PM,04/06/2016 01:22:05 PM,04/06/2016 02:11:40 PM,Code 2 Transport,04/06/2016 02:45:55 PM,1400 Block of 48TH AVE,San Francisco,94122,B08,23,7723,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7594009210763, -122.507932858048)",160971907-KM11 +142862951,58,14100932,Medical Incident,10/13/2014,10/13/2014,10/13/2014 06:53:18 PM,10/13/2014 06:55:20 PM,10/13/2014 07:00:40 PM,10/13/2014 07:01:03 PM,10/13/2014 07:27:35 PM,10/13/2014 07:37:28 PM,10/13/2014 07:56:11 PM,Code 2 Transport,10/13/2014 08:26:29 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",142862951-58 +141641576,E05,14056521,Traffic Collision,06/13/2014,06/13/2014,06/13/2014 12:40:32 PM,06/13/2014 12:40:32 PM,06/13/2014 12:40:46 PM,06/13/2014 12:41:52 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Patient Declined Transport,06/13/2014 12:43:06 PM,13TH ST/SOUTH VAN NESS AV,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Mission,"(37.769815078903, -122.417753195885)",141641576-E05 +160922124,KM11,16036477,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:56:22 PM,04/01/2016 02:57:42 PM,04/01/2016 02:58:07 PM,04/01/2016 02:58:34 PM,04/01/2016 03:01:45 PM,04/01/2016 03:14:45 PM,04/01/2016 03:36:43 PM,Code 2 Transport,04/01/2016 03:59:40 PM,EDDY ST/FILLMORE ST,San Francisco,94115,B05,5,3515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7814283698384, -122.432328983123)",160922124-KM11 +150553226,T19,15021207,Structure Fire,02/24/2015,02/24/2015,02/24/2015 06:39:33 PM,02/24/2015 06:40:30 PM,02/24/2015 06:40:45 PM,02/24/2015 06:42:25 PM,02/24/2015 06:45:48 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Fire,02/24/2015 07:02:06 PM,700 Block of GONZALEZ DR,San Francisco,94132,B08,29,8482,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",150553226-T19 +153080446,79,15118238,Medical Incident,11/04/2015,11/03/2015,11/04/2015 05:53:07 AM,11/04/2015 05:53:49 AM,11/04/2015 05:55:45 AM,11/04/2015 05:58:25 AM,11/04/2015 06:07:21 AM,11/04/2015 06:36:16 AM,11/04/2015 06:49:43 AM,Code 2 Transport,11/04/2015 08:02:00 AM,GENEVA AV/CARTER ST,San Francisco,94134,B09,43,6245,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Excelsior,"(37.7092509506804, -122.423353437119)",153080446-79 +152254022,52,15085957,Medical Incident,08/13/2015,08/13/2015,08/13/2015 10:55:50 PM,08/13/2015 10:57:00 PM,08/13/2015 10:57:45 PM,08/13/2015 10:58:21 PM,08/13/2015 11:06:19 PM,08/13/2015 11:15:10 PM,08/13/2015 11:16:12 PM,Code 2 Transport,08/13/2015 11:33:55 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7443660385474, -122.422657009241)",152254022-52 +160940751,71,16037178,Medical Incident,04/03/2016,04/02/2016,04/03/2016 06:44:57 AM,04/03/2016 06:45:49 AM,04/03/2016 06:46:14 AM,04/03/2016 06:46:24 AM,04/03/2016 06:49:42 AM,04/03/2016 06:56:42 AM,04/03/2016 07:09:21 AM,Code 2 Transport,04/03/2016 07:32:33 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160940751-71 +153311337,62,15127350,Medical Incident,11/27/2015,11/27/2015,11/27/2015 11:46:32 AM,11/27/2015 11:48:54 AM,11/27/2015 11:49:13 AM,11/27/2015 11:49:27 AM,11/27/2015 12:17:17 PM,11/27/2015 12:17:23 PM,11/27/2015 12:37:10 PM,Code 2 Transport,11/27/2015 01:23:27 PM,800 Block of 44TH AVE,San Francisco,94121,B07,34,7271,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7725696176603, -122.504681383518)",153311337-62 +161002680,55,16039881,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:36:41 PM,04/09/2016 06:39:47 PM,04/09/2016 06:39:56 PM,04/09/2016 06:40:04 PM,04/09/2016 06:52:23 PM,04/09/2016 07:02:59 PM,04/09/2016 07:23:19 PM,Code 2 Transport,04/09/2016 08:03:42 PM,OAK GROVE ST/BRYANT ST,San Francisco,94107,B03,8,2255,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.776920406141, -122.40140937936)",161002680-55 +160940961,KM06,16037197,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:38:11 AM,04/03/2016 08:38:28 AM,04/03/2016 08:39:07 AM,04/03/2016 08:39:55 AM,04/03/2016 08:42:53 AM,04/03/2016 09:04:00 AM,04/03/2016 09:12:39 AM,Code 2 Transport,04/03/2016 09:45:42 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160940961-KM06 +152381498,E05,15090613,Medical Incident,08/26/2015,08/26/2015,08/26/2015 11:53:13 AM,08/26/2015 11:53:13 AM,08/26/2015 11:53:36 AM,08/26/2015 11:55:04 AM,08/26/2015 11:55:04 AM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Code 2 Transport,08/26/2015 12:02:00 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",152381498-E05 +160961048,88,16037941,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:47:52 AM,04/05/2016 09:49:54 AM,04/05/2016 09:50:22 AM,04/05/2016 09:50:28 AM,04/05/2016 09:54:43 AM,04/05/2016 10:12:23 AM,04/05/2016 10:19:00 AM,Code 2 Transport,04/05/2016 10:49:37 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160961048-88 +150453724,E08,15017689,Medical Incident,02/14/2015,02/14/2015,02/14/2015 10:41:17 PM,02/14/2015 10:42:31 PM,02/14/2015 10:43:14 PM,02/14/2015 10:44:53 PM,02/14/2015 10:46:19 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Other,02/14/2015 10:50:40 PM,4TH ST/BRYANT ST,San Francisco,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7795669099357, -122.398059940086)",150453724-E08 +160970032,89,16038241,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:11:25 AM,04/06/2016 12:11:25 AM,04/06/2016 12:11:57 AM,04/06/2016 12:12:04 AM,04/06/2016 12:27:34 AM,04/06/2016 12:45:10 AM,04/06/2016 12:57:52 AM,Code 2 Transport,04/06/2016 01:37:06 AM,400 Block of FILBERT ST,San Francisco,94133,B01,28,126,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8016501276831, -122.406745753507)",160970032-89 +143652858,82,14130840,Medical Incident,12/31/2014,12/31/2014,12/31/2014 07:45:46 PM,12/31/2014 07:45:46 PM,12/31/2014 07:46:56 PM,12/31/2014 07:47:15 PM,12/31/2014 08:03:06 PM,04/25/2016 01:13:06 PM,04/25/2016 01:13:06 PM,No Merit,12/31/2014 08:07:18 PM,PARKER AV/ANZA ST,San Francisco,94118,B07,10,4453,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7802390495145, -122.453876628903)",143652858-82 +153170346,75,15121697,Medical Incident,11/13/2015,11/12/2015,11/13/2015 03:03:21 AM,11/13/2015 03:04:02 AM,11/13/2015 03:04:51 AM,11/13/2015 03:05:06 AM,11/13/2015 03:11:38 AM,11/13/2015 03:39:17 AM,11/13/2015 03:58:08 AM,Code 2 Transport,11/13/2015 04:29:10 AM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",153170346-75 +143561051,70,14127261,Medical Incident,12/22/2014,12/22/2014,12/22/2014 09:57:41 AM,12/22/2014 10:00:00 AM,12/22/2014 10:00:45 AM,12/22/2014 10:01:17 AM,12/22/2014 10:22:57 AM,12/22/2014 10:47:44 AM,12/22/2014 11:02:21 AM,Code 2 Transport,12/22/2014 11:59:19 AM,800 Block of LOMBARD ST,San Francisco,94133,B01,28,1435,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.80246176674, -122.41549175952)",143561051-70 +150930444,E23,15035229,Medical Incident,04/03/2015,04/02/2015,04/03/2015 05:10:31 AM,04/03/2015 05:12:46 AM,04/03/2015 05:13:25 AM,04/03/2015 05:15:07 AM,04/03/2015 05:18:25 AM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Code 2 Transport,04/03/2015 05:25:52 AM,1300 Block of 38TH AVE,San Francisco,94122,B08,23,7626,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7617306094157, -122.497487695779)",150930444-E23 +160990290,60,16039175,Medical Incident,04/08/2016,04/07/2016,04/08/2016 03:02:00 AM,04/08/2016 03:04:25 AM,04/08/2016 03:04:50 AM,04/08/2016 03:04:58 AM,04/08/2016 03:10:03 AM,04/08/2016 03:19:36 AM,04/08/2016 03:26:44 AM,Code 2 Transport,04/08/2016 04:09:43 AM,500 Block of 15TH AV,San Francisco,94118,B07,31,7154,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7777197048948, -122.473834612035)",160990290-60 +151200539,B08,15045274,Alarms,04/30/2015,04/29/2015,04/30/2015 06:52:10 AM,04/30/2015 06:54:05 AM,04/30/2015 06:54:45 AM,04/30/2015 06:56:50 AM,04/30/2015 07:00:36 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/30/2015 07:01:53 AM,2400 Block of 32ND AVE,San Francisco,94116,B08,18,7546,3,3,3,false,Alarm,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7415063192431, -122.489486072568)",151200539-B08 +141230125,E06,14041625,Medical Incident,05/03/2014,05/03/2014,05/03/2014 10:41:44 AM,05/03/2014 10:44:16 AM,05/03/2014 10:44:28 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Code 2 Transport,05/03/2014 11:53:21 AM,100 Block of GUERRERO ST,SAN FRANCISCO,94103,B02,6,5214,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,8,Mission,"(37.7688930095544, -122.42438060559)",141230125-E06 +160974213,AM24,16038674,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:20:37 PM,04/06/2016 09:21:24 PM,04/06/2016 09:22:12 PM,04/06/2016 09:23:00 PM,04/06/2016 09:45:02 PM,04/06/2016 09:47:06 PM,04/06/2016 10:08:10 PM,Code 2 Transport,04/06/2016 10:48:18 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160974213-AM24 +151962866,E31,15074846,Medical Incident,07/15/2015,07/15/2015,07/15/2015 06:07:21 PM,07/15/2015 06:07:58 PM,07/15/2015 06:08:32 PM,07/15/2015 06:09:30 PM,07/15/2015 06:11:03 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Code 3 Transport,07/15/2015 06:17:39 PM,400 Block of 8TH AVE,San Francisco,94118,B07,31,7135,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7799623898106, -122.466288408431)",151962866-E31 +141793425,RS2,14061976,Medical Incident,06/28/2014,06/28/2014,06/28/2014 09:08:16 PM,06/28/2014 09:10:31 PM,06/28/2014 09:10:59 PM,06/28/2014 09:11:44 PM,06/28/2014 09:13:20 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,Patient Declined Transport,06/28/2014 09:20:29 PM,SOUTH VAN NESS AV/16TH ST,San Francisco,94110,B02,7,5225,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7651831353816, -122.417486597301)",141793425-RS2 +160940297,76,16037126,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:32:27 AM,04/03/2016 01:36:59 AM,04/03/2016 01:37:12 AM,04/03/2016 01:37:20 AM,04/03/2016 01:40:34 AM,04/03/2016 02:05:39 AM,04/03/2016 01:44:48 AM,Code 2 Transport,04/03/2016 02:27:07 AM,FELL ST/MARKET ST,San Francisco,94103,B02,36,3111,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",160940297-76 +160951954,AM08,16037649,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:31:42 PM,04/04/2016 01:32:20 PM,04/04/2016 01:35:22 PM,04/04/2016 01:36:06 PM,04/04/2016 01:43:20 PM,04/04/2016 01:55:28 PM,04/04/2016 02:09:11 PM,Code 2 Transport,04/04/2016 03:03:14 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160951954-AM08 +150452339,75,15017564,Structure Fire,02/14/2015,02/14/2015,02/14/2015 04:01:39 PM,02/14/2015 04:02:34 PM,02/14/2015 04:02:59 PM,02/14/2015 04:03:13 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 04:09:02 PM,1700 Block of UNION ST,San Francisco,94123,B04,16,3335,3,3,3,true,Alarm,1,MEDIC,10,4,2,Marina,"(37.7979757626675, -122.428080525252)",150452339-75 +161000554,KM06,16039628,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:55:12 AM,04/09/2016 04:56:07 AM,04/09/2016 04:56:32 AM,04/09/2016 04:58:22 AM,04/09/2016 05:06:22 AM,04/09/2016 05:24:04 AM,04/09/2016 06:04:29 AM,Code 3 Transport,04/09/2016 06:14:45 AM,400 Block of 39TH AVE,San Francisco,94121,B07,34,7256,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7803684793126, -122.499731430722)",161000554-KM06 +153103558,70,15119328,Medical Incident,11/06/2015,11/06/2015,11/06/2015 08:59:30 PM,11/06/2015 08:59:48 PM,11/06/2015 09:00:51 PM,11/06/2015 09:01:14 PM,11/06/2015 09:19:30 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Patient Declined Transport,11/06/2015 09:46:50 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",153103558-70 +160941434,AM10,16037233,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:06:23 AM,04/03/2016 11:09:07 AM,04/03/2016 11:10:29 AM,04/03/2016 11:11:05 AM,04/03/2016 11:21:06 AM,04/03/2016 12:07:47 PM,04/03/2016 12:26:41 PM,Code 2 Transport,04/03/2016 01:07:37 PM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",160941434-AM10 +141040285,54,14035176,Medical Incident,04/14/2014,04/14/2014,04/14/2014 06:12:28 PM,04/14/2014 06:12:34 PM,04/14/2014 06:22:09 PM,04/14/2014 06:24:32 PM,04/14/2014 06:39:42 PM,04/25/2016 01:17:53 PM,04/25/2016 01:17:53 PM,Patient Declined Transport,04/14/2014 06:58:04 PM,100 Block of BLYTHDALE AVE,SAN FRANCISCO,94134,B09,43,6244,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",141040285-54 +152510805,E14,15095790,Traffic Collision,09/08/2015,09/08/2015,09/08/2015 08:15:23 AM,09/08/2015 08:15:23 AM,09/08/2015 08:17:17 AM,09/08/2015 08:19:43 AM,09/08/2015 08:24:00 AM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Code 2 Transport,09/08/2015 09:17:22 AM,FULTON ST/CROSSOVER DR,San Francisco,94121,B07,14,7211,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7725690611121, -122.484194200958)",152510805-E14 +141250246,T19,14042391,Traffic Collision,05/05/2014,05/05/2014,05/05/2014 02:31:29 PM,05/05/2014 02:33:50 PM,05/05/2014 02:34:08 PM,05/05/2014 02:35:58 PM,05/05/2014 02:38:23 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 02:52:30 PM,19TH AV/DENSLOWE DR,SAN FRANCISCO,94132,B08,19,8726,2,2,2,false,Non Life-threatening,1,TRUCK,1,9,7,Lakeshore,"(37.7249055482586, -122.474848312213)",141250246-T19 +150451834,77,15017505,Medical Incident,02/14/2015,02/14/2015,02/14/2015 01:36:59 PM,02/14/2015 01:36:59 PM,02/14/2015 01:37:36 PM,02/14/2015 01:37:46 PM,02/14/2015 02:02:35 PM,02/14/2015 02:10:29 PM,02/14/2015 02:48:27 PM,Code 2 Transport,02/14/2015 03:07:10 PM,KIRKHAM ST/46TH AV,San Francisco,94122,B08,23,7717,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7585595250477, -122.505796847162)",150451834-77 +160991669,AM08,16039291,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:58:12 PM,04/08/2016 12:59:41 PM,04/08/2016 01:00:18 PM,04/08/2016 01:00:18 PM,04/08/2016 01:17:25 PM,04/08/2016 01:43:04 PM,04/08/2016 02:13:00 PM,Code 2 Transport,04/08/2016 02:51:07 PM,"CALL BOX: ELLSWORTH ST/ALEMANY SB BL,SF",San Francisco,94110,B06,32,5645,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7322713620509, -122.418897144818)",160991669-AM08 +160921210,67,16036391,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:33:27 AM,04/01/2016 10:35:27 AM,04/01/2016 10:35:44 AM,04/01/2016 10:35:58 AM,04/01/2016 10:42:04 AM,04/01/2016 10:56:29 AM,04/01/2016 11:27:53 AM,Code 2 Transport,04/01/2016 12:06:21 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",160921210-67 +150752380,E43,15028833,Medical Incident,03/16/2015,03/16/2015,03/16/2015 03:40:48 PM,03/16/2015 03:40:48 PM,03/16/2015 03:41:17 PM,03/16/2015 03:42:53 PM,03/16/2015 03:44:29 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Code 2 Transport,03/16/2015 03:55:47 PM,RUSSIA AV/MISSION ST,San Francisco,94112,B09,43,6126,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7215750031455, -122.437149523285)",150752380-E43 +152790121,55,15106881,Medical Incident,10/06/2015,10/05/2015,10/06/2015 01:10:05 AM,10/06/2015 01:11:48 AM,10/06/2015 01:12:23 AM,10/06/2015 01:12:34 AM,10/06/2015 01:15:07 AM,10/06/2015 01:26:56 AM,10/06/2015 01:35:13 AM,Code 2 Transport,10/06/2015 02:30:17 AM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",152790121-55 +143303557,61,14117182,Structure Fire,11/26/2014,11/26/2014,11/26/2014 09:49:40 PM,11/26/2014 09:51:16 PM,11/26/2014 09:51:35 PM,11/26/2014 09:51:50 PM,11/26/2014 09:54:49 PM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,Fire,11/26/2014 10:29:15 PM,2100 Block of FILBERT ST,San Francisco,94123,B04,16,3462,3,3,3,true,Alarm,1,MEDIC,3,4,2,Marina,"(37.7981798327213, -122.434867916145)",143303557-61 +153120485,65,15119810,Medical Incident,11/08/2015,11/07/2015,11/08/2015 04:35:31 AM,11/08/2015 04:35:31 AM,11/08/2015 04:35:49 AM,11/08/2015 04:35:58 AM,11/08/2015 04:49:51 AM,11/08/2015 04:59:09 AM,11/08/2015 05:11:53 AM,Code 2 Transport,11/08/2015 05:51:25 AM,100 Block of LANDERS ST,San Francisco,94114,B02,6,5234,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7659143603231, -122.427799913559)",153120485-65 +160990455,63,16039193,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:10:45 AM,04/08/2016 06:12:00 AM,04/08/2016 06:12:25 AM,04/08/2016 06:12:38 AM,04/08/2016 06:16:46 AM,04/08/2016 06:35:33 AM,04/08/2016 06:42:04 AM,Code 2 Transport,04/08/2016 07:13:28 AM,800 Block of WALLER ST,San Francisco,94117,B05,21,4143,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7703324728476, -122.437337332628)",160990455-63 +150053766,T14,15002064,Structure Fire,01/05/2015,01/05/2015,01/05/2015 10:47:41 PM,01/05/2015 10:47:41 PM,01/05/2015 10:47:47 PM,01/05/2015 10:49:38 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Fire,01/05/2015 10:51:24 PM,9TH AV/GEARY BL,San Francisco,94118,B07,31,7135,3,3,3,false,Alarm,1,TRUCK,2,7,1,Inner Richmond,"(37.7808797138944, -122.46748765154)",150053766-T14 +141921019,54,14066495,Medical Incident,07/11/2014,07/11/2014,07/11/2014 09:31:03 AM,07/11/2014 09:34:00 AM,07/11/2014 09:36:53 AM,07/11/2014 09:36:53 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,No Merit,07/11/2014 09:42:17 AM,1800 Block of MASON ST,San Francisco,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Chinatown,"(37.800652951997, -122.412526437494)",141921019-54 +141570150,E09,14053911,Medical Incident,06/06/2014,06/05/2014,06/06/2014 01:18:20 AM,06/06/2014 01:18:56 AM,06/06/2014 01:19:39 AM,06/06/2014 01:21:50 AM,06/06/2014 01:27:03 AM,04/25/2016 01:16:56 PM,04/25/2016 01:16:56 PM,Code 2 Transport,06/06/2014 01:41:02 AM,300 Block of MULLEN AVE,San Francisco,94110,B06,9,5672,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7462179903221, -122.405851870951)",141570150-E09 +143140619,E44,14111143,Medical Incident,11/10/2014,11/09/2014,11/10/2014 07:39:03 AM,11/10/2014 07:45:50 AM,11/10/2014 08:08:34 AM,11/10/2014 08:13:42 AM,11/10/2014 08:16:46 AM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Code 2 Transport,11/10/2014 08:25:01 AM,0 Block of LE CONTE CIR,San Francisco,94124,B10,44,6575,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7178752136595, -122.395298429153)",143140619-E44 +160952448,71,16037680,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:25:28 PM,04/04/2016 03:26:37 PM,04/04/2016 03:27:05 PM,04/04/2016 03:27:19 PM,04/04/2016 03:34:17 PM,04/04/2016 03:50:06 PM,04/04/2016 04:04:05 PM,Code 2 Transport,04/04/2016 04:31:00 PM,0 Block of MAXWELL CT,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7670121090246, -122.423152344259)",160952448-71 +151600060,74,15060982,Medical Incident,06/09/2015,06/08/2015,06/09/2015 12:25:24 AM,06/09/2015 12:28:42 AM,06/09/2015 12:29:02 AM,06/09/2015 12:29:17 AM,06/09/2015 12:33:02 AM,06/09/2015 12:54:17 AM,06/09/2015 12:58:52 AM,Code 3 Transport,06/09/2015 01:49:45 AM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",151600060-74 +142833714,E01,14099846,Medical Incident,10/10/2014,10/10/2014,10/10/2014 11:10:58 PM,10/10/2014 11:12:40 PM,10/10/2014 11:13:16 PM,10/10/2014 11:14:19 PM,10/10/2014 11:15:39 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Code 2 Transport,10/10/2014 11:22:57 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7853585501162, -122.415955969312)",142833714-E01 +143432133,E22,14121981,Administrative,12/09/2014,12/09/2014,12/09/2014 02:11:07 PM,12/09/2014 02:11:14 PM,12/09/2014 02:11:26 PM,12/09/2014 02:11:56 PM,12/09/2014 02:11:56 PM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,Other,12/09/2014 02:11:58 PM,1200 Block of 16TH AVE,San Francisco,94122,B08,22,7367,3,3,3,false,,1,ENGINE,1,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",143432133-E22 +151641378,54,15062684,Medical Incident,06/13/2015,06/13/2015,06/13/2015 11:32:29 AM,06/13/2015 11:34:53 AM,06/13/2015 11:35:46 AM,06/13/2015 11:35:58 AM,06/13/2015 11:44:50 AM,06/13/2015 12:05:09 PM,06/13/2015 12:30:20 PM,Code 2 Transport,06/13/2015 01:05:02 PM,0 Block of LOS PALMOS DR,San Francisco,94127,B09,15,8246,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7349122711117, -122.447517632589)",151641378-54 +142202826,E01,14076449,Medical Incident,08/08/2014,08/08/2014,08/08/2014 05:54:41 PM,08/08/2014 05:56:01 PM,08/08/2014 05:58:17 PM,08/08/2014 05:58:58 PM,08/08/2014 06:03:49 PM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,Code 2 Transport,08/08/2014 06:31:23 PM,200 Block of GEARY ST,San Francisco,94108,B01,1,1323,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",142202826-E01 +151521983,76,15057894,Medical Incident,06/01/2015,06/01/2015,06/01/2015 02:21:27 PM,06/01/2015 02:21:27 PM,06/01/2015 02:22:29 PM,06/01/2015 02:22:35 PM,06/01/2015 02:29:30 PM,06/01/2015 02:50:50 PM,06/01/2015 03:00:25 PM,Code 3 Transport,06/01/2015 04:03:30 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",151521983-76 +150921726,MA1,15034987,Structure Fire,04/02/2015,04/02/2015,04/02/2015 01:01:02 PM,04/02/2015 01:01:29 PM,04/02/2015 01:07:26 PM,04/02/2015 01:25:34 PM,04/02/2015 01:25:34 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Fire,04/02/2015 02:30:06 PM,1400 Block of VAN DYKE AVE,San Francisco,94124,B10,17,6651,3,3,3,false,Fire,2,SUPPORT,14,10,10,Bayview Hunters Point,"(37.7275267994511, -122.389650111212)",150921726-MA1 +161010774,82,16040098,Medical Incident,04/10/2016,04/09/2016,04/10/2016 07:15:41 AM,04/10/2016 07:17:23 AM,04/10/2016 07:18:29 AM,04/10/2016 07:18:40 AM,04/10/2016 07:27:02 AM,04/10/2016 07:59:50 AM,04/10/2016 08:20:09 AM,Code 2 Transport,04/10/2016 08:40:41 AM,100 Block of CROWN TER,San Francisco,94114,B05,20,5286,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7575965261375, -122.447006923006)",161010774-82 +142870132,E06,14100997,Medical Incident,10/14/2014,10/13/2014,10/14/2014 12:54:14 AM,10/14/2014 12:55:56 AM,10/14/2014 01:08:53 AM,10/14/2014 01:08:53 AM,10/14/2014 01:08:53 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/14/2014 01:12:07 AM,2300 Block of MARKET ST,San Francisco,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",142870132-E06 +142611892,E07,14091269,Medical Incident,09/18/2014,09/18/2014,09/18/2014 01:06:33 PM,09/18/2014 01:07:36 PM,09/18/2014 01:07:41 PM,09/18/2014 01:11:23 PM,09/18/2014 01:11:23 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,Code 2 Transport,09/18/2014 01:17:53 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",142611892-E07 +151440793,T17,15054685,Structure Fire,05/24/2015,05/23/2015,05/24/2015 07:21:35 AM,05/24/2015 07:22:48 AM,05/24/2015 07:23:23 AM,05/24/2015 07:33:07 AM,05/24/2015 07:33:07 AM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Fire,05/24/2015 07:34:24 AM,PAUL AV/SAN BRUNO AV,San Francisco,94134,B10,44,6326,3,3,3,false,Alarm,1,TRUCK,6,10,9,Portola,"(37.7239199964679, -122.402060968175)",151440793-T17 +152501506,E29,15095463,Medical Incident,09/07/2015,09/07/2015,09/07/2015 12:43:07 PM,09/07/2015 12:45:01 PM,09/07/2015 12:58:54 PM,09/07/2015 01:00:05 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Code 2 Transport,09/07/2015 01:00:52 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7760463471271, -122.41128875661)",152501506-E29 +160953411,78,16037769,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:23:28 PM,04/04/2016 07:25:59 PM,04/04/2016 07:27:16 PM,04/04/2016 07:27:30 PM,04/04/2016 07:43:01 PM,04/04/2016 08:07:11 PM,04/04/2016 08:33:44 PM,Code 2 Transport,04/04/2016 09:09:10 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160953411-78 +151330699,60,15050350,Medical Incident,05/13/2015,05/12/2015,05/13/2015 07:45:36 AM,05/13/2015 07:45:36 AM,05/13/2015 07:45:49 AM,05/13/2015 07:47:28 AM,05/13/2015 07:53:27 AM,05/13/2015 08:08:48 AM,05/13/2015 08:59:14 AM,Code 2 Transport,05/13/2015 09:26:19 AM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",151330699-60 +160961255,KM02,16037960,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:39:11 AM,04/05/2016 10:40:41 AM,04/05/2016 10:40:56 AM,04/05/2016 10:41:29 AM,04/05/2016 10:43:53 AM,04/05/2016 11:08:24 AM,04/05/2016 11:23:09 AM,Code 2 Transport,04/05/2016 12:10:53 PM,400 Block of OAK ST,San Francisco,94102,B02,36,3414,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7744393910372, -122.426706539021)",160961255-KM02 +151630292,E36,15062154,Medical Incident,06/12/2015,06/11/2015,06/12/2015 03:17:35 AM,06/12/2015 03:19:48 AM,06/12/2015 03:20:29 AM,06/12/2015 03:23:13 AM,06/12/2015 03:26:35 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Code 2 Transport,06/12/2015 03:34:50 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",151630292-E36 +153321051,E22,15127655,Medical Incident,11/28/2015,11/28/2015,11/28/2015 09:44:23 AM,11/28/2015 09:45:00 AM,11/28/2015 09:45:36 AM,11/28/2015 09:46:50 AM,11/28/2015 09:49:51 AM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,Against Medical Advice,11/28/2015 09:54:25 AM,600 Block of MORAGA ST,San Francisco,94122,B08,22,7343,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7563595382328, -122.469534301951)",153321051-E22 +151091224,T17,15041242,Medical Incident,04/19/2015,04/19/2015,04/19/2015 10:41:41 AM,04/19/2015 10:42:32 AM,04/19/2015 10:43:01 AM,04/19/2015 10:44:25 AM,04/19/2015 10:48:05 AM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Code 3 Transport,04/19/2015 10:51:51 AM,0 Block of CASHMERE ST,San Francisco,94124,B10,25,652,E,E,3,false,Potentially Life-Threatening,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",151091224-T17 +160993165,68,16039431,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:56:44 PM,04/08/2016 06:56:44 PM,04/08/2016 06:57:03 PM,04/08/2016 06:57:10 PM,04/08/2016 07:04:07 PM,04/08/2016 07:16:30 PM,04/08/2016 07:39:32 PM,Code 2 Transport,04/08/2016 08:09:33 PM,POLK ST/CLAY ST,San Francisco,94109,B04,41,3123,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7923832522829, -122.421052874002)",160993165-68 +151570170,E06,15059771,Structure Fire,06/06/2015,06/05/2015,06/06/2015 01:07:25 AM,06/06/2015 01:07:25 AM,06/06/2015 01:07:32 AM,06/06/2015 01:08:59 AM,06/06/2015 01:10:54 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Fire,06/06/2015 01:11:18 AM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",151570170-E06 +151003494,82,15038018,Medical Incident,04/10/2015,04/10/2015,04/10/2015 09:12:43 PM,04/10/2015 09:15:00 PM,04/10/2015 09:15:25 PM,04/10/2015 09:15:34 PM,04/10/2015 09:24:08 PM,04/10/2015 09:39:49 PM,04/10/2015 09:50:17 PM,Code 2 Transport,04/10/2015 10:08:04 PM,1800 Block of OAKDALE AVE,San Francisco,94124,B10,42,6444,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.736976517963, -122.394646403308)",151003494-82 +160921365,88,16036405,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:26:41 AM,04/01/2016 11:28:02 AM,04/01/2016 11:29:28 AM,04/01/2016 11:29:59 AM,04/01/2016 11:32:26 AM,04/01/2016 11:50:07 AM,04/01/2016 12:06:39 PM,Code 2 Transport,04/01/2016 12:28:27 PM,300 Block of SAN CARLOS ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7577905969289, -122.419696229764)",160921365-88 +143572082,KM12,14127796,Medical Incident,12/23/2014,12/23/2014,12/23/2014 02:07:40 PM,12/23/2014 02:09:15 PM,12/23/2014 02:09:44 PM,12/23/2014 02:10:18 PM,12/23/2014 02:16:48 PM,12/23/2014 02:31:22 PM,12/23/2014 02:38:17 PM,Code 3 Transport,12/23/2014 03:30:16 PM,GOLDEN GATE AV/JONES ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",143572082-KM12 +142323479,E23,14080730,Medical Incident,08/20/2014,08/20/2014,08/20/2014 08:18:47 PM,08/20/2014 08:19:23 PM,08/20/2014 08:19:57 PM,08/20/2014 08:21:23 PM,08/20/2014 08:22:52 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Code 3 Transport,08/20/2014 08:44:05 PM,1300 Block of 48TH AVE,San Francisco,94122,B08,23,7721,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.761256999261, -122.508202143455)",142323479-E23 +142823132,77,14099382,Medical Incident,10/09/2014,10/09/2014,10/09/2014 07:23:17 PM,10/09/2014 07:23:50 PM,10/09/2014 07:24:14 PM,10/09/2014 07:24:23 PM,10/09/2014 07:50:50 PM,10/09/2014 07:50:51 PM,10/09/2014 08:00:40 PM,Code 2 Transport,10/09/2014 08:39:43 PM,1100 Block of CHESTNUT ST,San Francisco,94109,B01,16,3133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8024713065089, -122.422796373799)",142823132-77 +141250270,88,14042410,Medical Incident,05/05/2014,05/05/2014,05/05/2014 03:39:52 PM,05/05/2014 03:41:45 PM,05/05/2014 03:42:47 PM,05/05/2014 03:42:58 PM,05/05/2014 03:50:53 PM,05/05/2014 04:16:22 PM,05/05/2014 04:32:04 PM,Code 2 Transport,05/05/2014 04:40:11 PM,1300 Block of WEBSTER ST,SAN FRANCISCO,94115,B04,5,3514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",141250270-88 +160970177,89,16038255,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:43:18 AM,04/06/2016 01:44:04 AM,04/06/2016 01:45:30 AM,04/06/2016 01:45:45 AM,04/06/2016 01:50:27 AM,04/06/2016 02:01:02 AM,04/06/2016 02:32:45 AM,Code 2 Transport,04/06/2016 03:10:24 AM,BROADWAY/THE EMBARCADERO NOR,San Francisco,94111,B01,13,1131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7989312720846, -122.398114598896)",160970177-89 +143152776,E36,14111675,Medical Incident,11/11/2014,11/11/2014,11/11/2014 06:41:07 PM,11/11/2014 06:42:26 PM,11/11/2014 06:42:45 PM,11/11/2014 06:44:12 PM,11/11/2014 06:46:56 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Code 2 Transport,11/11/2014 06:54:08 PM,1600 Block of MARKET ST,San Francisco,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7732180675925, -122.421522300696)",143152776-E36 +160952298,KM04,16037664,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:51:49 PM,04/04/2016 02:51:49 PM,04/04/2016 02:52:23 PM,04/04/2016 02:54:05 PM,04/04/2016 02:55:27 PM,04/04/2016 03:34:56 PM,04/04/2016 03:58:40 PM,Code 2 Transport,04/04/2016 04:35:04 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7623242063084, -122.43565391414)",160952298-KM04 +160982353,KM09,16038971,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:50:21 PM,04/07/2016 02:53:02 PM,04/07/2016 02:54:03 PM,04/07/2016 02:56:20 PM,04/07/2016 03:09:13 PM,04/07/2016 03:28:43 PM,04/07/2016 03:43:40 PM,Code 2 Transport,04/07/2016 04:26:41 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160982353-KM09 +142502509,E03,14087263,Medical Incident,09/07/2014,09/07/2014,09/07/2014 04:49:29 PM,09/07/2014 04:50:28 PM,09/07/2014 04:50:41 PM,09/07/2014 04:52:17 PM,09/07/2014 04:54:35 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Code 2 Transport,09/07/2014 04:56:34 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",142502509-E03 +142363681,E19,14082248,Traffic Collision,08/24/2014,08/24/2014,08/24/2014 11:02:49 PM,08/24/2014 11:02:49 PM,08/24/2014 11:04:57 PM,08/24/2014 11:07:11 PM,08/24/2014 11:09:21 PM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,Fire,08/24/2014 11:14:38 PM,19TH AV/BUCKINGHAM WY,San Francisco,94132,B08,19,8726,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.725692147795, -122.475108832537)",142363681-E19 +160940614,70,16037156,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:47:01 AM,04/03/2016 04:47:57 AM,04/03/2016 04:48:26 AM,04/03/2016 04:49:01 AM,04/03/2016 05:00:20 AM,04/03/2016 05:11:33 AM,04/03/2016 05:21:42 AM,Code 2 Transport,04/03/2016 06:24:37 AM,ESSEX ST/FOLSOM ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7863789368239, -122.395645466731)",160940614-70 +160961989,56,16038032,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:37:37 PM,04/05/2016 01:37:37 PM,04/05/2016 01:38:58 PM,04/05/2016 01:39:09 PM,04/05/2016 01:46:04 PM,04/05/2016 02:03:59 PM,04/05/2016 02:28:32 PM,Code 2 Transport,04/05/2016 02:58:33 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",160961989-56 +142853968,AM20,14100635,Medical Incident,10/12/2014,10/12/2014,10/12/2014 10:34:21 PM,10/12/2014 10:34:21 PM,10/12/2014 10:35:32 PM,10/12/2014 10:36:17 PM,10/12/2014 10:46:03 PM,10/12/2014 11:07:45 PM,10/12/2014 11:15:57 PM,Code 2 Transport,10/12/2014 11:38:02 PM,600 Block of OAK ST,San Francisco,94117,B02,5,3523,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",142853968-AM20 +160980133,88,16038735,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:55:16 AM,04/07/2016 12:56:23 AM,04/07/2016 12:57:08 AM,04/07/2016 12:57:55 AM,04/07/2016 01:02:45 AM,04/07/2016 01:37:21 AM,04/07/2016 01:39:56 AM,Code 3 Transport,04/07/2016 03:08:48 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7775775502239, -122.411096952518)",160980133-88 +160974651,55,16038720,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:31:32 PM,04/06/2016 11:33:46 PM,04/06/2016 11:35:43 PM,04/06/2016 11:35:58 PM,04/06/2016 11:44:19 PM,04/07/2016 12:06:51 AM,04/07/2016 12:33:39 AM,Code 2 Transport,04/07/2016 01:05:55 AM,OTIS ST/MCCOPPIN ST,San Francisco,94103,B02,36,5125,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7717702499037, -122.420344369487)",160974651-55 +150831942,E42,15031741,Traffic Collision,03/24/2015,03/24/2015,03/24/2015 01:58:04 PM,03/24/2015 01:58:55 PM,03/24/2015 02:00:11 PM,03/24/2015 02:01:49 PM,03/24/2015 02:04:06 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/24/2015 02:28:00 PM,100 Block of AVENUE C,San Francisco,94130,B10,42,6373,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",150831942-E42 +151182633,KM08,15044697,Medical Incident,04/28/2015,04/28/2015,04/28/2015 04:47:19 PM,04/28/2015 04:49:32 PM,04/28/2015 04:49:59 PM,04/28/2015 04:49:59 PM,04/28/2015 04:59:45 PM,04/28/2015 05:14:23 PM,04/28/2015 05:40:18 PM,Code 2 Transport,04/28/2015 05:55:39 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7858072151093, -122.458631333986)",151182633-KM08 +150963343,E41,15036548,Medical Incident,04/06/2015,04/06/2015,04/06/2015 09:11:25 PM,04/06/2015 09:13:12 PM,04/06/2015 09:13:31 PM,04/06/2015 09:14:33 PM,04/06/2015 09:16:33 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/06/2015 09:23:08 PM,1300 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",150963343-E41 +150121334,E07,15004694,Medical Incident,01/12/2015,01/12/2015,01/12/2015 11:06:53 AM,01/12/2015 11:08:10 AM,01/12/2015 11:08:34 AM,01/12/2015 11:10:02 AM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Code 2 Transport,01/12/2015 11:15:57 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",150121334-E07 +142292435,E40,14079638,Structure Fire,08/17/2014,08/17/2014,08/17/2014 04:23:48 PM,08/17/2014 04:26:29 PM,08/17/2014 04:26:48 PM,08/17/2014 04:28:17 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Fire,08/17/2014 04:32:52 PM,1700 Block of 38TH AVE,San Francisco,94122,B08,18,7624,3,3,3,false,Alarm,1,ENGINE,7,8,4,Sunset/Parkside,"(37.7542694898327, -122.496966375985)",142292435-E40 +152131625,E08,15081102,Structure Fire,08/01/2015,08/01/2015,08/01/2015 12:30:43 PM,08/01/2015 12:31:27 PM,08/01/2015 12:31:43 PM,08/01/2015 12:32:41 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Fire,08/01/2015 12:43:23 PM,100 Block of UTAH ST,San Francisco,94103,B02,29,2351,3,3,3,true,Alarm,1,ENGINE,9,2,10,Mission,"(37.7677826861899, -122.406668803339)",152131625-E08 +160943769,78,16037464,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:31:49 PM,04/03/2016 11:32:23 PM,04/03/2016 11:32:43 PM,04/03/2016 11:33:21 PM,04/03/2016 11:42:00 PM,04/03/2016 11:51:45 PM,04/03/2016 11:57:00 PM,Code 2 Transport,04/04/2016 12:47:13 AM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",160943769-78 +143243723,E05,14114899,Medical Incident,11/20/2014,11/20/2014,11/20/2014 11:26:19 PM,11/20/2014 11:26:19 PM,11/20/2014 11:35:18 PM,11/20/2014 11:37:05 PM,11/20/2014 11:39:53 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Against Medical Advice,11/21/2014 12:07:17 AM,WEBSTER ST/SUTTER ST,San Francisco,94115,B04,5,3513,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Japantown,"(37.7863039619679, -122.431552025504)",143243723-E05 +141090369,KM03,14036941,Medical Incident,04/19/2014,04/19/2014,04/19/2014 10:49:13 PM,04/19/2014 10:49:13 PM,04/19/2014 10:49:24 PM,04/19/2014 10:49:57 PM,04/19/2014 10:53:23 PM,04/19/2014 11:10:53 PM,04/19/2014 11:17:56 PM,Code 2 Transport,04/19/2014 11:45:13 PM,21ST ST/SHOTWELL ST,,94110,B06,7,5455,,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7572324112144, -122.415626198524)",141090369-KM03 +151980539,E06,15075382,Medical Incident,07/17/2015,07/16/2015,07/17/2015 06:30:17 AM,07/17/2015 06:34:25 AM,07/17/2015 06:36:03 AM,07/17/2015 06:37:14 AM,07/17/2015 06:42:10 AM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Code 2 Transport,07/17/2015 07:01:17 AM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",151980539-E06 +143300856,T18,14116929,Structure Fire,11/26/2014,11/26/2014,11/26/2014 08:58:10 AM,11/26/2014 08:58:40 AM,11/26/2014 08:59:06 AM,11/26/2014 09:00:02 AM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/26/2014 09:33:37 AM,2600 Block of JUDAH ST,San Francisco,94122,B08,23,7541,3,3,3,false,Alarm,1,TRUCK,9,8,4,Sunset/Parkside,"(37.7611653096685, -122.490391943862)",143300856-T18 +143531920,66,14126185,Medical Incident,12/19/2014,12/19/2014,12/19/2014 01:56:29 PM,12/19/2014 01:57:08 PM,12/19/2014 01:57:43 PM,12/19/2014 01:58:10 PM,12/19/2014 02:16:15 PM,12/19/2014 02:36:59 PM,12/19/2014 02:55:55 PM,Code 2 Transport,12/19/2014 03:31:19 PM,200 Block of SHOTWELL ST,San Francisco,94110,B02,7,5237,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7644380015359, -122.416376372761)",143531920-66 +160973471,71,16038592,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:07:22 PM,04/06/2016 06:09:30 PM,04/06/2016 06:11:37 PM,04/06/2016 06:12:20 PM,04/06/2016 06:15:42 PM,04/06/2016 06:33:18 PM,04/06/2016 07:01:52 PM,Code 2 Transport,04/06/2016 07:29:38 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,E,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160973471-71 +143290704,60,14116583,Medical Incident,11/25/2014,11/24/2014,11/25/2014 07:54:26 AM,11/25/2014 07:55:50 AM,11/25/2014 07:56:45 AM,11/25/2014 07:57:32 AM,11/25/2014 07:58:42 AM,11/25/2014 08:14:58 AM,11/25/2014 09:01:18 AM,Code 3 Transport,11/25/2014 09:24:12 AM,LAWTON ST/9TH AV,San Francisco,94122,B08,22,7335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7584445947996, -122.46591998484)",143290704-60 +151630184,60,15062145,Medical Incident,06/12/2015,06/11/2015,06/12/2015 01:43:38 AM,06/12/2015 01:44:58 AM,06/12/2015 01:47:47 AM,06/12/2015 01:48:13 AM,06/12/2015 01:56:40 AM,06/12/2015 02:15:02 AM,06/12/2015 02:32:11 AM,Code 2 Transport,06/12/2015 02:58:45 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",151630184-60 +160990081,76,16039157,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:41:42 AM,04/08/2016 12:42:55 AM,04/08/2016 12:43:15 AM,04/08/2016 12:44:01 AM,04/08/2016 12:46:27 AM,04/08/2016 01:04:01 AM,04/08/2016 01:09:12 AM,Code 3 Transport,04/08/2016 02:26:43 AM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160990081-76 +160992094,AM10,16039336,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:40:21 PM,04/08/2016 02:44:21 PM,04/08/2016 02:47:44 PM,04/08/2016 02:48:20 PM,04/08/2016 02:55:17 PM,04/08/2016 03:06:02 PM,04/08/2016 03:38:00 PM,Code 2 Transport,04/08/2016 04:07:03 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160992094-AM10 +142462379,T16,14085735,Medical Incident,09/03/2014,09/03/2014,09/03/2014 03:17:28 PM,09/03/2014 03:17:28 PM,09/03/2014 03:18:48 PM,09/03/2014 03:20:00 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,Code 2 Transport,09/03/2014 03:23:12 PM,2500 Block of VAN NESS AVE,San Francisco,94109,B04,16,3146,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,2,Russian Hill,"(37.7990402347578, -122.42390548516)",142462379-T16 +151940114,64,15073856,Medical Incident,07/13/2015,07/12/2015,07/13/2015 12:43:25 AM,07/13/2015 12:49:39 AM,07/13/2015 12:52:06 AM,07/13/2015 12:52:06 AM,07/13/2015 12:52:18 AM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/13/2015 12:52:48 AM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",151940114-64 +153213000,E03,15123556,Alarms,11/17/2015,11/17/2015,11/17/2015 05:34:37 PM,11/17/2015 05:35:12 PM,11/17/2015 05:35:24 PM,11/17/2015 05:36:23 PM,11/17/2015 05:39:25 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 05:43:12 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",153213000-E03 +153180461,89,15122139,Medical Incident,11/14/2015,11/13/2015,11/14/2015 03:24:42 AM,11/14/2015 03:25:29 AM,11/14/2015 03:25:48 AM,11/14/2015 03:26:32 AM,11/14/2015 03:29:26 AM,11/14/2015 03:45:58 AM,11/14/2015 03:55:38 AM,Code 2 Transport,11/14/2015 04:47:43 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",153180461-89 +150812324,B04,15031092,Alarms,03/22/2015,03/22/2015,03/22/2015 04:13:45 PM,03/22/2015 04:14:39 PM,03/22/2015 04:14:50 PM,03/22/2015 04:16:28 PM,03/22/2015 04:19:33 PM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,Fire,03/22/2015 04:19:50 PM,3000 Block of WASHINGTON ST,San Francisco,94115,B04,10,4265,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7903787788638, -122.443466217227)",150812324-B04 +160983009,KM04,16039039,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:49:45 PM,04/07/2016 05:50:56 PM,04/07/2016 05:51:13 PM,04/07/2016 05:51:47 PM,04/07/2016 05:56:21 PM,04/07/2016 06:17:13 PM,04/07/2016 06:48:21 PM,Code 2 Transport,04/07/2016 07:36:38 PM,LARKIN ST/MARKET ST,San Francisco,94103,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160983009-KM04 +141810992,89,14062611,Medical Incident,06/30/2014,06/30/2014,06/30/2014 09:51:48 AM,06/30/2014 09:55:04 AM,06/30/2014 09:56:28 AM,06/30/2014 09:57:07 AM,06/30/2014 10:11:20 AM,06/30/2014 10:28:05 AM,06/30/2014 10:58:43 AM,Code 2 Transport,06/30/2014 11:20:24 AM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",141810992-89 +143043761,RC2,14107716,Medical Incident,10/31/2014,10/31/2014,10/31/2014 10:45:28 PM,10/31/2014 10:47:38 PM,10/31/2014 10:52:10 PM,10/31/2014 10:52:10 PM,10/31/2014 10:52:10 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,Code 2 Transport,10/31/2014 11:23:21 PM,1500 Block of BALBOA ST,San Francisco,94118,B07,31,7157,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,7,1,Outer Richmond,"(37.7766624377714, -122.475350817684)",143043761-RC2 +151904219,B06,15072718,Alarms,07/09/2015,07/09/2015,07/09/2015 11:28:47 PM,07/09/2015 11:30:02 PM,07/09/2015 11:30:15 PM,07/09/2015 11:34:18 PM,07/09/2015 11:34:58 PM,04/25/2016 01:09:33 PM,04/25/2016 01:09:33 PM,Fire,07/10/2015 12:19:14 AM,0 Block of RED ROCK WAY,San Francisco,94131,B06,26,8167,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",151904219-B06 +160943557,70,16037446,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:16:32 PM,04/03/2016 10:16:32 PM,04/03/2016 10:18:49 PM,04/03/2016 10:19:40 PM,04/03/2016 10:26:58 PM,04/03/2016 10:30:56 PM,04/03/2016 10:38:40 PM,Code 2 Transport,04/03/2016 11:07:00 PM,3RD ST/OAKDALE AV,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",160943557-70 +160992725,71,16039399,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:19:17 PM,04/08/2016 05:19:17 PM,04/08/2016 05:25:22 PM,04/08/2016 05:25:30 PM,04/08/2016 05:33:28 PM,04/08/2016 05:44:08 PM,04/08/2016 05:54:48 PM,Code 2 Transport,04/08/2016 06:42:18 PM,ALEMANY BL/JUSTIN DR,San Francisco,94112,B09,32,8263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,6,9,Bernal Heights,"(37.7318157735492, -122.425919714278)",160992725-71 +151370487,77,15051907,Structure Fire,05/17/2015,05/16/2015,05/17/2015 04:01:25 AM,05/17/2015 04:02:23 AM,05/17/2015 04:04:07 AM,05/17/2015 04:04:07 AM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Fire,05/17/2015 04:10:16 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Alarm,1,MEDIC,10,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",151370487-77 +160983520,65,16039094,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:07:15 PM,04/07/2016 08:09:30 PM,04/07/2016 08:09:48 PM,04/07/2016 08:10:00 PM,04/07/2016 08:28:37 PM,04/07/2016 08:35:17 PM,04/07/2016 08:50:09 PM,Code 2 Transport,04/07/2016 09:33:33 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7580927749863, -122.414684745414)",160983520-65 +160933642,88,16037061,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:05:28 PM,04/02/2016 10:06:44 PM,04/02/2016 10:06:57 PM,04/02/2016 10:07:14 PM,04/02/2016 10:17:47 PM,04/02/2016 10:30:10 PM,04/02/2016 10:40:47 PM,Code 2 Transport,04/02/2016 11:21:30 PM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",160933642-88 +160950426,AM24,16037521,Medical Incident,04/04/2016,04/03/2016,04/04/2016 06:02:34 AM,04/04/2016 06:05:03 AM,04/04/2016 06:05:27 AM,04/04/2016 06:06:03 AM,04/04/2016 06:15:26 AM,04/04/2016 06:33:46 AM,04/04/2016 06:44:08 AM,Code 2 Transport,04/04/2016 07:07:32 AM,1500 Block of 22ND AVE,San Francisco,94122,B08,22,7447,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7587609255623, -122.479941289193)",160950426-AM24 +150423823,AM20,15016541,Medical Incident,02/11/2015,02/11/2015,02/11/2015 09:51:47 PM,02/11/2015 09:52:54 PM,02/11/2015 09:53:14 PM,02/11/2015 09:53:58 PM,02/11/2015 10:02:14 PM,02/11/2015 10:18:56 PM,02/11/2015 10:28:03 PM,Code 2 Transport,02/11/2015 10:55:05 PM,MARKET ST/VAN NESS AV,San Francisco,94103,B02,36,3211,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",150423823-AM20 +161003437,AM20,16039972,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:30:48 PM,04/09/2016 10:32:28 PM,04/09/2016 10:40:07 PM,04/09/2016 10:40:36 PM,04/09/2016 11:03:15 PM,04/09/2016 11:03:18 PM,04/09/2016 11:14:33 PM,Code 2 Transport,04/09/2016 11:41:49 PM,900 Block of THE EMBARCADERO,San Francisco,94111,B01,13,923,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",161003437-AM20 +142171422,54,14075223,Medical Incident,08/05/2014,08/05/2014,08/05/2014 12:26:08 PM,08/05/2014 12:28:09 PM,08/05/2014 12:29:16 PM,08/05/2014 12:29:30 PM,08/05/2014 12:31:17 PM,08/05/2014 12:46:52 PM,08/05/2014 01:02:08 PM,Code 2 Transport,08/05/2014 01:20:59 PM,8TH AV/LAKE ST,San Francisco,94118,B07,31,7126,3,3,3,true,Non Life-threatening,1,MEDIC,1,7,2,Inner Richmond,"(37.786568134843, -122.466830333948)",142171422-54 +151510378,T01,15057335,Medical Incident,05/31/2015,05/30/2015,05/31/2015 02:33:06 AM,05/31/2015 02:34:13 AM,05/31/2015 02:35:36 AM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Code 2 Transport,05/31/2015 02:37:00 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",151510378-T01 +151512314,E36,15057539,Medical Incident,05/31/2015,05/31/2015,05/31/2015 04:47:48 PM,05/31/2015 04:49:26 PM,05/31/2015 04:49:35 PM,05/31/2015 04:51:00 PM,05/31/2015 04:53:03 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Code 2 Transport,05/31/2015 04:56:56 PM,FOLSOM ST/10TH ST,San Francisco,94103,B02,36,2343,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7728121600424, -122.412824228759)",151512314-E36 +161001607,62,16039761,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:02:13 PM,04/09/2016 01:03:26 PM,04/09/2016 01:04:25 PM,04/09/2016 01:04:31 PM,04/09/2016 01:17:12 PM,04/09/2016 01:39:26 PM,04/09/2016 02:05:27 PM,Code 2 Transport,04/09/2016 02:24:42 PM,2700 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",161001607-62 +153231580,E29,15124244,Medical Incident,11/19/2015,11/19/2015,11/19/2015 11:50:18 AM,11/19/2015 11:50:18 AM,11/19/2015 11:50:43 AM,11/19/2015 11:51:54 AM,11/19/2015 11:56:33 AM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Code 2 Transport,11/19/2015 12:05:39 PM,26TH ST/CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7511787572207, -122.396407603676)",153231580-E29 +153300242,70,15126852,Medical Incident,11/26/2015,11/25/2015,11/26/2015 02:10:53 AM,11/26/2015 02:12:58 AM,11/26/2015 02:15:56 AM,11/26/2015 02:16:04 AM,11/26/2015 02:20:44 AM,11/26/2015 02:31:17 AM,11/26/2015 02:42:43 AM,Code 2 Transport,11/26/2015 03:17:04 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",153300242-70 +150734287,70,15028193,Medical Incident,03/14/2015,03/14/2015,03/14/2015 10:58:56 PM,03/14/2015 11:00:06 PM,03/14/2015 11:01:05 PM,03/14/2015 11:01:39 PM,03/14/2015 11:05:57 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,Against Medical Advice,03/14/2015 11:53:51 PM,800 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7714276968784, -122.43622021087)",150734287-70 +141352805,E01,14046266,Alarms,05/15/2014,05/15/2014,05/15/2014 05:11:17 PM,05/15/2014 05:12:22 PM,05/15/2014 05:12:41 PM,05/15/2014 05:13:42 PM,05/15/2014 05:15:49 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/15/2014 05:27:14 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",141352805-E01 +152061514,86,15078464,Medical Incident,07/25/2015,07/25/2015,07/25/2015 11:42:07 AM,07/25/2015 11:45:07 AM,07/25/2015 11:45:38 AM,07/25/2015 11:45:49 AM,07/25/2015 11:51:44 AM,07/25/2015 12:15:10 PM,07/25/2015 12:31:30 PM,Code 2 Transport,07/25/2015 01:24:26 PM,700 Block of FULTON ST,San Francisco,94102,B05,5,3521,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",152061514-86 +153463898,T17,15133406,Citizen Assist / Service Call,12/12/2015,12/12/2015,12/12/2015 09:07:03 PM,12/12/2015 09:09:12 PM,12/12/2015 09:09:40 PM,12/12/2015 09:10:59 PM,12/12/2015 09:13:47 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Fire,12/12/2015 09:18:29 PM,0 Block of KISKA RD,San Francisco,94124,B10,17,6636,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",153463898-T17 +151622468,72,15061987,Medical Incident,06/11/2015,06/11/2015,06/11/2015 04:06:40 PM,06/11/2015 04:08:01 PM,06/11/2015 04:08:18 PM,06/11/2015 04:09:02 PM,06/11/2015 04:15:28 PM,06/11/2015 04:47:44 PM,06/11/2015 05:03:53 PM,Code 2 Transport,06/11/2015 05:29:05 PM,0 Block of OCEAN AVE,San Francisco,94112,B09,43,6121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7237942596577, -122.435907357723)",151622468-72 +143532270,E03,14126210,Structure Fire,12/19/2014,12/19/2014,12/19/2014 03:48:06 PM,12/19/2014 03:49:35 PM,12/19/2014 03:49:58 PM,12/19/2014 03:50:32 PM,12/19/2014 03:55:05 PM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,Fire,12/19/2014 03:59:16 PM,0 Block of GRANT AVE,San Francisco,94108,B01,1,1321,3,3,3,true,Alarm,1,ENGINE,6,1,3,Financial District/South Beach,"(37.7871853698326, -122.404995219077)",143532270-E03 +151683533,T03,15064402,Medical Incident,06/17/2015,06/17/2015,06/17/2015 08:43:14 PM,06/17/2015 08:47:13 PM,06/17/2015 08:47:23 PM,06/17/2015 08:49:02 PM,06/17/2015 08:51:22 PM,04/25/2016 01:09:57 PM,04/25/2016 01:09:57 PM,Code 2 Transport,06/17/2015 08:51:59 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",151683533-T03 +153222204,E32,15123902,Traffic Collision,11/18/2015,11/18/2015,11/18/2015 01:50:26 PM,11/18/2015 01:50:26 PM,11/18/2015 01:52:29 PM,11/18/2015 01:53:23 PM,11/18/2015 01:55:38 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Code 2 Transport,11/18/2015 02:11:05 PM,3500 Block of MISSION ST,San Francisco,94110,B06,32,5626,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7408095549035, -122.422903715345)",153222204-E32 +151362546,E33,15051732,Other,05/16/2015,05/16/2015,05/16/2015 04:31:54 PM,05/16/2015 04:34:27 PM,05/16/2015 04:35:02 PM,05/16/2015 04:35:48 PM,05/16/2015 04:39:35 PM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Fire,05/16/2015 04:52:10 PM,0 Block of MONETA WAY,San Francisco,94112,B09,33,8347,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7129011058725, -122.449757085087)",151362546-E33 +153094160,78,15118961,Structure Fire,11/05/2015,11/05/2015,11/05/2015 11:12:12 PM,11/05/2015 11:13:18 PM,11/05/2015 11:16:15 PM,11/05/2015 11:16:29 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Fire,11/05/2015 11:23:16 PM,300 Block of ARBALLO DR,San Francisco,94132,B08,19,8582,3,3,3,true,Alarm,1,MEDIC,12,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",153094160-78 +160950627,KM13,16037535,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:47:04 AM,04/04/2016 07:49:02 AM,04/04/2016 07:49:29 AM,04/04/2016 07:50:02 AM,04/04/2016 08:02:34 AM,04/04/2016 08:47:34 AM,04/04/2016 08:48:02 AM,Code 2 Transport,04/04/2016 09:26:23 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160950627-KM13 +151130128,E07,15042541,Medical Incident,04/23/2015,04/22/2015,04/23/2015 01:03:35 AM,04/23/2015 01:05:41 AM,04/23/2015 01:06:20 AM,04/23/2015 01:08:32 AM,04/23/2015 01:12:17 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,Gone on Arrival,04/23/2015 01:12:53 AM,500 Block of GUERRERO ST,San Francisco,94110,B02,7,5422,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7627513875316, -122.424036887526)",151130128-E07 +141591900,E03,14054834,Medical Incident,06/08/2014,06/08/2014,06/08/2014 03:14:32 PM,06/08/2014 03:15:59 PM,06/08/2014 03:16:07 PM,06/08/2014 03:16:43 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Patient Declined Transport,06/08/2014 03:19:08 PM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",141591900-E03 +160951128,74,16037567,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:06:01 AM,04/04/2016 10:07:27 AM,04/04/2016 10:07:37 AM,04/04/2016 10:07:47 AM,04/04/2016 10:12:50 AM,04/04/2016 10:34:13 AM,04/04/2016 10:43:46 AM,Code 2 Transport,04/04/2016 11:17:11 AM,33RD AV/JUDAH ST,San Francisco,94122,B08,23,7541,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7610395138922, -122.491997470686)",160951128-74 +160974057,62,16038651,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:28:11 PM,04/06/2016 08:28:50 PM,04/06/2016 08:29:05 PM,04/06/2016 08:29:50 PM,04/06/2016 08:33:57 PM,04/06/2016 08:42:07 PM,04/06/2016 09:02:49 PM,Code 2 Transport,04/06/2016 09:34:17 PM,1800 Block of PALOU AVE,San Francisco,94124,B10,17,6471,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7363516779415, -122.395214003225)",160974057-62 +142950782,KM15,14103950,Medical Incident,10/22/2014,10/22/2014,10/22/2014 08:25:31 AM,10/22/2014 08:27:15 AM,10/22/2014 08:29:23 AM,10/22/2014 08:31:12 AM,10/22/2014 08:43:13 AM,10/22/2014 08:58:43 AM,10/22/2014 09:25:59 AM,Code 2 Transport,10/22/2014 09:32:31 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",142950782-KM15 +152020946,E07,15076905,Medical Incident,07/21/2015,07/21/2015,07/21/2015 08:56:41 AM,07/21/2015 08:58:55 AM,07/21/2015 08:59:24 AM,07/21/2015 09:00:26 AM,07/21/2015 09:03:28 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Code 2 Transport,07/21/2015 09:15:36 AM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7600451698328, -122.423265598657)",152020946-E07 +151153070,B03,15043572,Alarms,04/25/2015,04/25/2015,04/25/2015 07:48:13 PM,04/25/2015 07:49:16 PM,04/25/2015 07:49:24 PM,04/25/2015 07:50:10 PM,04/25/2015 07:52:33 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Fire,04/25/2015 07:58:57 PM,600 Block of 2ND ST,San Francisco,94107,B03,8,2153,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7812651618119, -122.391253221395)",151153070-B03 +152783477,RC1,15106830,Medical Incident,10/05/2015,10/05/2015,10/05/2015 08:56:42 PM,10/05/2015 08:57:00 PM,10/05/2015 08:57:18 PM,10/05/2015 08:58:17 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Code 2 Transport,10/05/2015 09:01:30 PM,400 Block of NATOMA ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7807728096562, -122.407018493217)",152783477-RC1 +150280177,63,15010626,Medical Incident,01/28/2015,01/27/2015,01/28/2015 02:03:19 AM,01/28/2015 02:05:31 AM,01/28/2015 02:06:07 AM,01/28/2015 02:07:13 AM,01/28/2015 02:10:58 AM,01/28/2015 02:25:43 AM,01/28/2015 02:37:47 AM,Code 3 Transport,01/28/2015 03:08:48 AM,4400 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7125,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7849774199796, -122.465113708318)",150280177-63 +141392458,KM10,14047730,Medical Incident,05/19/2014,05/19/2014,05/19/2014 04:59:22 PM,05/19/2014 05:01:21 PM,05/19/2014 05:03:25 PM,05/19/2014 05:04:16 PM,05/19/2014 05:09:42 PM,05/19/2014 05:12:07 PM,05/19/2014 05:36:58 PM,Code 2 Transport,05/19/2014 05:53:51 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",141392458-KM10 +152340165,62,15089056,Medical Incident,08/22/2015,08/21/2015,08/22/2015 01:02:26 AM,08/22/2015 01:02:26 AM,08/22/2015 01:02:58 AM,08/22/2015 01:03:08 AM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Other,08/22/2015 01:05:16 AM,100 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",152340165-62 +152651620,KM01,15101450,Medical Incident,09/22/2015,09/22/2015,09/22/2015 11:49:27 AM,09/22/2015 11:49:27 AM,09/22/2015 11:49:42 AM,09/22/2015 11:50:11 AM,09/22/2015 12:00:13 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,No Merit,09/22/2015 12:04:07 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",152651620-KM01 +150403597,E48,15015770,Administrative,02/09/2015,02/09/2015,02/09/2015 09:27:21 PM,02/09/2015 09:27:27 PM,02/09/2015 09:28:06 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Fire,02/09/2015 09:28:37 PM,800 Block of AVENUE D,Treasure Isla,94130,B03,48,2931,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",150403597-E48 +160933616,AM16,16037058,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:00:29 PM,04/02/2016 10:01:50 PM,04/02/2016 10:02:20 PM,04/02/2016 10:02:49 PM,04/02/2016 10:08:00 PM,04/02/2016 10:20:56 PM,04/02/2016 10:34:02 PM,Code 2 Transport,04/02/2016 11:04:58 PM,500 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7834675310494, -122.416716373273)",160933616-AM16 +150312814,E44,15012069,Medical Incident,01/31/2015,01/31/2015,01/31/2015 06:01:58 PM,01/31/2015 06:02:53 PM,01/31/2015 06:03:35 PM,01/31/2015 06:04:40 PM,01/31/2015 06:08:07 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Against Medical Advice,01/31/2015 06:14:58 PM,1100 Block of KEY AVE,San Francisco,94124,B10,44,6542,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7204396917778, -122.398575059753)",150312814-E44 +143450537,E24,14122604,Administrative,12/11/2014,12/10/2014,12/11/2014 06:14:27 AM,12/11/2014 06:14:31 AM,12/11/2014 06:14:48 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/11/2014 06:15:26 AM,100 Block of HOFFMAN AVE,San Francisco,94114,B06,24,5373,3,3,3,false,,1,ENGINE,1,6,8,Noe Valley,"(37.7528969269445, -122.440882334547)",143450537-E24 +150073497,79,15002870,Medical Incident,01/07/2015,01/07/2015,01/07/2015 08:46:03 PM,01/07/2015 08:49:11 PM,01/07/2015 08:49:35 PM,01/07/2015 08:49:43 PM,01/07/2015 09:02:28 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,No Merit,01/07/2015 09:07:13 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",150073497-79 +142211073,E03,14076672,Medical Incident,08/09/2014,08/09/2014,08/09/2014 09:36:51 AM,08/09/2014 09:38:18 AM,08/09/2014 09:39:09 AM,08/09/2014 09:40:03 AM,08/09/2014 09:42:09 AM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Code 3 Transport,08/09/2014 10:01:26 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",142211073-E03 +143054187,E41,14108123,Outside Fire,11/01/2014,11/01/2014,11/01/2014 11:40:11 PM,11/01/2014 11:41:17 PM,11/01/2014 11:41:25 PM,11/01/2014 11:43:02 PM,11/01/2014 11:44:33 PM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Fire,11/01/2014 11:46:26 PM,TAYLOR ST/CALIFORNIA ST,San Francisco,94108,B01,41,1445,3,3,3,false,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7916270743525, -122.412460881674)",143054187-E41 +160983882,89,16039127,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:19:37 PM,04/07/2016 10:20:43 PM,04/07/2016 10:21:09 PM,04/07/2016 10:21:15 PM,04/07/2016 10:28:55 PM,04/07/2016 10:46:56 PM,04/07/2016 10:56:02 PM,Code 2 Transport,04/07/2016 11:23:51 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160983882-89 +142111154,2R01,14073060,,07/30/2014,07/30/2014,07/30/2014 10:35:12 AM,07/30/2014 10:35:55 AM,07/30/2014 10:51:20 AM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/30/2014 10:51:31 AM,100 Block of GILLETTE AVE,San Francisco,94134,B10,44,6273,3,3,3,false,Alarm,1,ADMIN,0,10,10,Bayview Hunters Point,"(37.7106753239004, -122.396529453587)",142111154-2R01 +160961291,54,16037965,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:47:49 AM,04/05/2016 10:48:53 AM,04/05/2016 10:49:30 AM,04/05/2016 10:49:44 AM,04/05/2016 10:54:58 AM,04/05/2016 11:21:23 AM,04/05/2016 11:39:38 AM,Code 2 Transport,04/05/2016 12:14:16 PM,300 Block of 18TH AVE,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7814031484353, -122.477238000486)",160961291-54 +161003529,AM24,16039982,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:49:22 PM,04/09/2016 10:51:07 PM,04/09/2016 10:51:49 PM,04/09/2016 10:52:42 PM,04/09/2016 10:56:13 PM,04/09/2016 11:08:02 PM,04/09/2016 11:25:21 PM,Code 2 Transport,04/09/2016 11:58:01 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",161003529-AM24 +152973695,E36,15114209,Alarms,10/24/2015,10/24/2015,10/24/2015 10:20:26 PM,10/24/2015 10:21:27 PM,10/24/2015 10:21:44 PM,10/24/2015 10:22:55 PM,10/24/2015 10:25:32 PM,04/25/2016 01:07:35 PM,04/25/2016 01:07:35 PM,Fire,10/24/2015 10:30:16 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",152973695-E36 +152512025,B02,15095895,Alarms,09/08/2015,09/08/2015,09/08/2015 01:11:26 PM,09/08/2015 01:12:31 PM,09/08/2015 01:13:13 PM,09/08/2015 01:14:47 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Fire,09/08/2015 01:20:42 PM,800 Block of ASHBURY ST,San Francisco,94117,B05,12,5143,3,3,3,false,Alarm,1,CHIEF,3,5,8,Haight Ashbury,"(37.766226956283, -122.44609764054)",152512025-B02 +141110257,E16,14037489,Citizen Assist / Service Call,04/21/2014,04/21/2014,04/21/2014 01:56:22 PM,04/21/2014 01:57:46 PM,04/21/2014 01:58:39 PM,04/21/2014 02:00:12 PM,04/21/2014 02:02:30 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Fire,04/21/2014 02:13:08 PM,1400 Block of FILBERT ST,SAN FRANCISCO,94109,B04,16,3146,3,3,3,true,Alarm,1,ENGINE,1,4,2,Russian Hill,"(37.7995348686798, -122.423336942553)",141110257-E16 +161002012,KM09,16039806,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:19:38 PM,04/09/2016 03:19:38 PM,04/09/2016 03:22:17 PM,04/09/2016 03:22:38 PM,04/09/2016 03:34:02 PM,04/09/2016 03:50:43 PM,04/09/2016 04:10:29 PM,Code 2 Transport,04/09/2016 04:24:25 PM,700 Block of WASHINGTON ST,San Francisco,94133,B01,13,1245,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7953293080075, -122.405411518793)",161002012-KM09 +151311442,E29,15049664,Medical Incident,05/11/2015,05/11/2015,05/11/2015 11:29:05 AM,05/11/2015 11:29:56 AM,05/11/2015 11:30:26 AM,05/11/2015 11:30:44 AM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Code 2 Transport,05/11/2015 11:31:47 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151311442-E29 +141323291,55,14045093,Medical Incident,05/12/2014,05/12/2014,05/12/2014 09:07:20 PM,05/12/2014 09:07:58 PM,05/12/2014 09:19:15 PM,05/12/2014 09:19:43 PM,05/12/2014 09:32:41 PM,05/12/2014 09:33:54 PM,05/12/2014 09:42:24 PM,Code 2 Transport,05/12/2014 10:08:09 PM,200 Block of BOCANA ST,San Francisco,94110,B06,32,5655,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7399553992173, -122.418238995545)",141323291-55 +142110810,T01,14073030,Alarms,07/30/2014,07/30/2014,07/30/2014 08:40:36 AM,07/30/2014 08:42:12 AM,07/30/2014 08:42:20 AM,07/30/2014 08:45:01 AM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/30/2014 08:49:17 AM,100 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2146,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.786383021575, -122.399289033567)",142110810-T01 +142172720,66,14075328,Traffic Collision,08/05/2014,08/05/2014,08/05/2014 06:20:14 PM,08/05/2014 06:21:02 PM,08/05/2014 06:33:29 PM,08/05/2014 06:33:49 PM,08/05/2014 06:55:17 PM,08/05/2014 06:58:42 PM,08/05/2014 07:28:05 PM,Code 2 Transport,08/05/2014 08:10:32 PM,OCTAVIA ST/MARKET ST,San Francisco,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",142172720-66 +160953618,85,16037793,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 08:40:42 PM,04/04/2016 08:40:42 PM,04/04/2016 08:43:28 PM,04/04/2016 08:43:41 PM,04/04/2016 09:00:09 PM,04/04/2016 09:26:03 PM,04/04/2016 09:52:16 PM,Code 2 Transport,04/04/2016 10:26:14 PM,100 Block of 32ND AVE,San Francisco,94121,B07,14,7234,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,2,Seacliff,"(37.7851225952484, -122.492555764358)",160953618-85 +160991564,85,16039280,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:31:10 PM,04/08/2016 12:31:10 PM,04/08/2016 12:31:14 PM,04/08/2016 12:31:19 PM,04/08/2016 12:51:31 PM,04/08/2016 01:09:57 PM,04/08/2016 01:29:10 PM,Code 2 Transport,04/08/2016 01:59:43 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160991564-85 +153430373,AR1,15131866,Outside Fire,12/09/2015,12/08/2015,12/09/2015 04:38:42 AM,12/09/2015 04:40:39 AM,12/09/2015 04:55:00 AM,12/09/2015 04:57:06 AM,12/09/2015 05:09:27 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 05:24:56 AM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,3,3,3,false,Fire,1,INVESTIGATION,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",153430373-AR1 +151471660,E20,15055942,Outside Fire,05/27/2015,05/27/2015,05/27/2015 12:18:26 PM,05/27/2015 12:19:45 PM,05/27/2015 12:20:43 PM,05/27/2015 12:23:28 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Fire,05/27/2015 12:27:48 PM,100 Block of LANSDALE AVE,San Francisco,94127,B09,39,8571,3,3,3,true,Fire,1,ENGINE,7,9,7,West of Twin Peaks,"(37.7381384408202, -122.460418080788)",151471660-E20 +160971498,AM12,16038376,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:05:55 AM,04/06/2016 11:06:38 AM,04/06/2016 11:08:55 AM,04/06/2016 11:10:01 AM,04/06/2016 11:12:44 AM,04/06/2016 12:00:42 PM,04/06/2016 12:21:31 PM,Code 2 Transport,04/06/2016 01:13:37 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160971498-AM12 +142500052,81,14087009,Medical Incident,09/07/2014,09/06/2014,09/07/2014 12:11:20 AM,09/07/2014 12:12:38 AM,09/07/2014 12:13:05 AM,09/07/2014 12:13:21 AM,09/07/2014 12:14:43 AM,09/07/2014 12:30:51 AM,09/07/2014 12:38:30 AM,Code 2 Transport,09/07/2014 01:09:16 AM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",142500052-81 +150990461,E01,15037332,Medical Incident,04/09/2015,04/08/2015,04/09/2015 07:05:36 AM,04/09/2015 07:06:08 AM,04/09/2015 07:06:17 AM,04/09/2015 07:07:13 AM,04/09/2015 07:10:36 AM,04/25/2016 01:11:16 PM,04/25/2016 01:11:16 PM,Code 3 Transport,04/09/2015 07:22:57 AM,400 Block of STEVENSON ST,San Francisco,94103,B01,1,2247,2,E,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7826030106461, -122.408538835413)",150990461-E01 +143290229,E38,14116525,Medical Incident,11/25/2014,11/24/2014,11/25/2014 02:26:04 AM,11/25/2014 02:26:58 AM,11/25/2014 02:27:24 AM,11/25/2014 02:29:02 AM,11/25/2014 02:30:55 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Code 2 Transport,11/25/2014 02:35:25 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",143290229-E38 +150901152,T03,15034240,Alarms,03/31/2015,03/31/2015,03/31/2015 10:35:28 AM,03/31/2015 10:36:55 AM,03/31/2015 10:37:04 AM,03/31/2015 10:37:19 AM,03/31/2015 10:38:43 AM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Fire,03/31/2015 10:45:13 AM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,3,3,3,false,Alarm,1,TRUCK,1,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",150901152-T03 +142290532,85,14079476,Medical Incident,08/17/2014,08/16/2014,08/17/2014 03:26:06 AM,08/17/2014 03:27:25 AM,08/17/2014 03:27:39 AM,08/17/2014 03:28:02 AM,08/17/2014 03:34:40 AM,08/17/2014 03:53:28 AM,08/17/2014 04:08:51 AM,Code 2 Transport,08/17/2014 04:22:50 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",142290532-85 +143123713,E35,14110706,Medical Incident,11/08/2014,11/08/2014,11/08/2014 10:12:02 PM,11/08/2014 10:14:23 PM,11/08/2014 10:15:03 PM,11/08/2014 10:16:44 PM,11/08/2014 10:19:41 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,No Merit,11/08/2014 10:23:14 PM,0 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7898688685777, -122.397805556033)",143123713-E35 +152100823,66,15079928,Structure Fire,07/29/2015,07/29/2015,07/29/2015 08:44:50 AM,07/29/2015 08:45:52 AM,07/29/2015 08:46:18 AM,07/29/2015 08:46:29 AM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Code 3 Transport,07/29/2015 08:54:33 AM,600 Block of 8TH AVE,San Francisco,94118,B07,31,7134,3,3,3,true,Alarm,1,MEDIC,7,7,1,Inner Richmond,"(37.7762070882708, -122.46601710634)",152100823-66 +151540293,86,15058537,Medical Incident,06/03/2015,06/02/2015,06/03/2015 03:32:05 AM,06/03/2015 03:33:54 AM,06/03/2015 03:34:09 AM,06/03/2015 03:34:25 AM,06/03/2015 03:39:36 AM,06/03/2015 03:50:28 AM,06/03/2015 03:57:04 AM,Code 2 Transport,06/03/2015 04:23:38 AM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",151540293-86 +160951865,52,16037636,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:08:46 PM,04/04/2016 01:10:38 PM,04/04/2016 01:11:14 PM,04/04/2016 01:11:26 PM,04/04/2016 01:20:26 PM,04/04/2016 01:48:19 PM,04/04/2016 02:09:29 PM,Code 2 Transport,04/04/2016 02:59:28 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160951865-52 +141863353,81,14064575,Medical Incident,07/05/2014,07/05/2014,07/05/2014 09:14:01 PM,07/05/2014 09:15:14 PM,07/05/2014 09:15:27 PM,07/05/2014 09:15:36 PM,07/05/2014 09:17:15 PM,07/05/2014 09:37:06 PM,07/05/2014 09:47:10 PM,Code 2 Transport,07/05/2014 10:14:39 PM,200 Block of POWELL ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",141863353-81 +151413109,E07,15053701,Medical Incident,05/21/2015,05/21/2015,05/21/2015 05:54:10 PM,05/21/2015 05:56:07 PM,05/21/2015 05:56:35 PM,05/21/2015 05:57:47 PM,05/21/2015 06:01:27 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,No Merit,05/21/2015 06:04:37 PM,1100 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5511,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7547638628686, -122.416559046903)",151413109-E07 +151181111,E02,15044550,Medical Incident,04/28/2015,04/28/2015,04/28/2015 09:53:56 AM,04/28/2015 09:55:40 AM,04/28/2015 10:01:46 AM,04/28/2015 10:03:21 AM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Code 2 Transport,04/28/2015 10:06:36 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Non Life-threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",151181111-E02 +141452000,RS1,14049838,Structure Fire,05/25/2014,05/25/2014,05/25/2014 03:35:44 PM,05/25/2014 03:37:42 PM,05/25/2014 03:38:06 PM,05/25/2014 03:39:10 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Fire,05/25/2014 03:42:35 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,false,Alarm,1,RESCUE SQUAD,10,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",141452000-RS1 +161002736,64,16039888,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:56:21 PM,04/09/2016 06:57:46 PM,04/09/2016 06:58:04 PM,04/09/2016 06:58:19 PM,04/09/2016 07:02:39 PM,04/09/2016 07:21:29 PM,04/09/2016 07:29:29 PM,Code 2 Transport,04/09/2016 08:09:36 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",161002736-64 +160932281,79,16036922,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:40:37 PM,04/02/2016 03:43:50 PM,04/02/2016 03:44:25 PM,04/02/2016 03:44:31 PM,04/02/2016 03:48:23 PM,04/02/2016 04:00:23 PM,04/02/2016 04:20:39 PM,Code 2 Transport,04/02/2016 04:37:47 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",160932281-79 +152882990,E03,15110762,Medical Incident,10/15/2015,10/15/2015,10/15/2015 05:40:15 PM,10/15/2015 05:42:13 PM,10/15/2015 05:43:35 PM,10/15/2015 05:43:35 PM,10/15/2015 05:44:57 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Code 2 Transport,10/15/2015 05:58:23 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",152882990-E03 +160993675,58,16039486,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:35:01 PM,04/08/2016 09:36:46 PM,04/08/2016 09:38:12 PM,04/08/2016 09:39:15 PM,04/08/2016 09:44:39 PM,04/08/2016 10:04:16 PM,04/08/2016 10:49:48 PM,Code 2 Transport,04/08/2016 10:52:26 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,A,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",160993675-58 +142900443,E07,14102122,Medical Incident,10/17/2014,10/16/2014,10/17/2014 04:25:39 AM,10/17/2014 04:25:39 AM,10/17/2014 04:26:08 AM,10/17/2014 04:28:46 AM,10/17/2014 04:31:18 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/17/2014 04:40:53 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",142900443-E07 +160971709,53,16038398,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:56:12 AM,04/06/2016 11:56:22 AM,04/06/2016 11:56:48 AM,04/06/2016 11:56:55 AM,04/06/2016 12:04:47 PM,04/06/2016 12:25:32 PM,04/06/2016 12:35:48 PM,Code 2 Transport,04/06/2016 01:13:54 PM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160971709-53 +142021230,E19,14069849,Structure Fire,07/21/2014,07/21/2014,07/21/2014 11:08:55 AM,07/21/2014 11:08:55 AM,07/21/2014 11:09:06 AM,07/21/2014 11:10:39 AM,07/21/2014 11:15:18 AM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Fire,07/21/2014 11:15:27 AM,SERRANO DR/CARDENAS AV,San Francisco,94132,B08,19,8426,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7200812689917, -122.477052607427)",142021230-E19 +141230001,E19,14041522,Medical Incident,05/03/2014,05/02/2014,05/03/2014 12:16:01 AM,05/03/2014 12:16:02 AM,05/03/2014 12:16:20 AM,05/03/2014 12:17:58 AM,05/03/2014 12:22:36 AM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Code 2 Transport,05/03/2014 12:36:08 AM,400 Block of FONT BLVD,SAN FRANCISCO,94132,B08,19,8424,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7191481762563, -122.47900214742)",141230001-E19 +152291092,E42,15087314,Medical Incident,08/17/2015,08/17/2015,08/17/2015 09:30:36 AM,08/17/2015 09:31:38 AM,08/17/2015 09:36:05 AM,08/17/2015 09:38:01 AM,08/17/2015 09:40:34 AM,04/25/2016 01:08:52 PM,04/25/2016 01:08:52 PM,No Merit,08/17/2015 09:44:26 AM,JAMESTOWN AV/SALINAS AV,San Francisco,94124,B10,44,6542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7211206836459, -122.398229564595)",152291092-E42 +150290424,KM07,15011039,Medical Incident,01/29/2015,01/28/2015,01/29/2015 05:17:53 AM,01/29/2015 05:20:29 AM,01/29/2015 05:20:41 AM,01/29/2015 05:21:00 AM,01/29/2015 05:26:16 AM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Fire,01/29/2015 05:41:30 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",150290424-KM07 +160933801,64,16037069,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:50:21 PM,04/02/2016 10:51:38 PM,04/02/2016 10:51:53 PM,04/02/2016 10:52:23 PM,04/02/2016 11:01:05 PM,04/02/2016 11:14:37 PM,04/02/2016 11:20:35 PM,Code 2 Transport,04/02/2016 11:54:01 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94116,B08,39,8624,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",160933801-64 +151142841,E14,15043187,Medical Incident,04/24/2015,04/24/2015,04/24/2015 05:25:01 PM,04/24/2015 05:25:01 PM,04/24/2015 05:27:26 PM,04/24/2015 05:28:57 PM,04/24/2015 05:30:39 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Code 2 Transport,04/24/2015 05:45:28 PM,GEARY BL/20TH AV,San Francisco,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.780334689944, -122.479382974071)",151142841-E14 +152870045,89,15110088,Medical Incident,10/14/2015,10/13/2015,10/14/2015 12:10:49 AM,10/14/2015 12:13:27 AM,10/14/2015 12:15:02 AM,10/14/2015 12:15:19 AM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,No Merit,10/14/2015 12:21:47 AM,3RD ST/INNES AV,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7395334481561, -122.38903096939)",152870045-89 +160953237,AM20,16037753,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:40:45 PM,04/04/2016 06:41:04 PM,04/04/2016 06:43:10 PM,04/04/2016 06:43:44 PM,04/04/2016 06:48:35 PM,04/04/2016 07:08:20 PM,04/04/2016 07:32:57 PM,Code 2 Transport,04/04/2016 07:51:04 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160953237-AM20 +160970217,72,16038259,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:17:34 AM,04/06/2016 02:19:19 AM,04/06/2016 02:20:28 AM,04/06/2016 02:21:16 AM,04/06/2016 02:27:52 AM,04/06/2016 02:40:27 AM,04/06/2016 03:07:43 AM,Code 2 Transport,04/06/2016 03:22:18 AM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160970217-72 +150410146,E44,15015819,Medical Incident,02/10/2015,02/09/2015,02/10/2015 01:32:30 AM,02/10/2015 01:32:59 AM,02/10/2015 01:33:28 AM,02/10/2015 01:34:26 AM,02/10/2015 01:38:56 AM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 3 Transport,02/10/2015 01:57:49 AM,0 Block of TOWERSIDE AVE,San Francisco,94134,B09,44,6252,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7103110425525, -122.412019505456)",150410146-E44 +142082064,E01,14072109,Medical Incident,07/27/2014,07/27/2014,07/27/2014 03:04:47 PM,07/27/2014 03:08:22 PM,07/27/2014 03:08:35 PM,07/27/2014 03:10:43 PM,07/27/2014 03:12:21 PM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Patient Declined Transport,07/27/2014 03:21:44 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",142082064-E01 +160964212,62,16038230,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:40:48 PM,04/05/2016 11:41:26 PM,04/05/2016 11:41:32 PM,04/05/2016 11:42:17 PM,04/05/2016 11:52:40 PM,04/06/2016 12:23:57 AM,04/06/2016 12:49:44 AM,Code 2 Transport,04/06/2016 01:22:48 AM,200 Block of FLOOD AVE,San Francisco,94112,B09,15,8231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7299496082095, -122.445430218846)",160964212-62 +160961123,KM08,16037948,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:11:09 AM,04/05/2016 10:12:45 AM,04/05/2016 10:13:11 AM,04/05/2016 10:14:42 AM,04/05/2016 10:32:09 AM,04/05/2016 10:57:03 AM,04/05/2016 11:15:19 AM,Code 2 Transport,04/05/2016 11:46:34 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",160961123-KM08 +160971686,56,16038395,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:51:43 AM,04/06/2016 11:51:43 AM,04/06/2016 11:53:31 AM,04/06/2016 11:53:58 AM,04/06/2016 12:16:13 PM,04/06/2016 12:24:58 PM,04/06/2016 12:42:58 PM,Code 2 Transport,04/06/2016 01:29:54 PM,2100 Block of QUESADA AVE,San Francisco,94124,B10,42,6431,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7381634010463, -122.39983494065)",160971686-56 +151522072,E11,15057901,Medical Incident,06/01/2015,06/01/2015,06/01/2015 02:47:23 PM,06/01/2015 02:47:43 PM,06/01/2015 02:47:56 PM,06/01/2015 02:49:33 PM,06/01/2015 02:49:53 PM,04/25/2016 01:10:16 PM,04/25/2016 01:10:16 PM,No Merit,06/01/2015 03:00:20 PM,1500 Block of VALENCIA ST,San Francisco,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.748520075538, -122.420247296449)",151522072-E11 +142231081,E01,14077347,Medical Incident,08/11/2014,08/11/2014,08/11/2014 10:46:56 AM,08/11/2014 10:48:19 AM,08/11/2014 10:48:36 AM,08/11/2014 10:56:34 AM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Unable to Locate,08/11/2014 11:00:25 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",142231081-E01 +142550710,E21,14088929,Medical Incident,09/12/2014,09/11/2014,09/12/2014 07:45:06 AM,09/12/2014 07:46:30 AM,09/12/2014 07:47:06 AM,09/12/2014 07:48:13 AM,09/12/2014 07:51:08 AM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,No Merit,09/12/2014 08:09:38 AM,0 Block of CASTRO ST,San Francisco,94117,B05,21,4143,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,8,Haight Ashbury,"(37.7701295276066, -122.436422965066)",142550710-E21 +151042033,RS2,15039380,Structure Fire,04/14/2015,04/14/2015,04/14/2015 02:31:47 PM,04/14/2015 02:32:23 PM,04/14/2015 02:33:16 PM,04/14/2015 02:33:21 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Fire,04/14/2015 02:36:29 PM,100 Block of PARNASSUS AVE,San Francisco,94117,B05,12,5153,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,5,Haight Ashbury,"(37.764541634292, -122.451880232062)",151042033-RS2 +141610394,88,14055383,Structure Fire,06/10/2014,06/09/2014,06/10/2014 05:42:14 AM,06/10/2014 05:43:05 AM,06/10/2014 05:48:51 AM,06/10/2014 05:49:09 AM,06/10/2014 05:52:21 AM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Fire,06/10/2014 06:10:55 AM,800 Block of VAN NESS AVE,San Francisco,94109,B02,3,3163,3,3,3,true,Alarm,1,MEDIC,8,2,5,Western Addition,"(37.7831032668735, -122.420996914)",141610394-88 +160940428,79,16037137,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:34:10 AM,04/03/2016 02:34:56 AM,04/03/2016 02:35:23 AM,04/03/2016 02:35:29 AM,04/03/2016 02:53:54 AM,04/03/2016 02:54:01 AM,04/03/2016 03:23:49 AM,Code 2 Transport,04/03/2016 03:25:20 AM,MISSION ST/MAIN ST,San Francisco,94105,B03,35,2116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",160940428-79 +160922862,76,16036549,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:54:31 PM,04/01/2016 05:54:42 PM,04/01/2016 05:54:55 PM,04/01/2016 05:55:02 PM,04/01/2016 06:00:39 PM,04/01/2016 06:13:46 PM,04/01/2016 06:27:25 PM,Code 2 Transport,04/01/2016 06:44:03 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160922862-76 +151590364,E23,15060592,Other,06/08/2015,06/07/2015,06/08/2015 03:47:21 AM,06/08/2015 03:47:21 AM,06/08/2015 03:47:40 AM,06/08/2015 03:48:23 AM,06/08/2015 03:50:16 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Fire,06/08/2015 03:56:10 AM,3800 Block of NORIEGA ST,San Francisco,94122,B08,23,7662,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7529329797778, -122.504865731206)",151590364-E23 +142771513,72,14097345,Medical Incident,10/04/2014,10/04/2014,10/04/2014 10:54:42 AM,10/04/2014 10:56:23 AM,10/04/2014 10:56:50 AM,10/04/2014 10:57:07 AM,10/04/2014 11:01:44 AM,10/04/2014 11:30:40 AM,10/04/2014 11:50:13 AM,Code 2 Transport,10/04/2014 12:16:45 PM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",142771513-72 +141411509,87,14048312,Medical Incident,05/21/2014,05/21/2014,05/21/2014 12:02:54 PM,05/21/2014 12:03:31 PM,05/21/2014 12:03:50 PM,05/21/2014 12:04:28 PM,05/21/2014 12:10:28 PM,05/21/2014 12:36:49 PM,05/21/2014 01:00:17 PM,Code 2 Transport,05/21/2014 01:25:32 PM,1800 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",141411509-87 +150923747,AM18,15035174,Medical Incident,04/02/2015,04/02/2015,04/02/2015 10:10:58 PM,04/02/2015 10:11:58 PM,04/02/2015 10:12:21 PM,04/02/2015 10:12:59 PM,04/02/2015 10:24:18 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Patient Declined Transport,04/02/2015 10:52:50 PM,100 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5646,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7373636780892, -122.422094532922)",150923747-AM18 +160992881,84,16039406,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:54:24 PM,04/08/2016 05:54:56 PM,04/08/2016 05:55:16 PM,04/08/2016 05:56:34 PM,04/08/2016 06:14:00 PM,04/08/2016 06:26:36 PM,04/08/2016 06:33:25 PM,Code 2 Transport,04/08/2016 07:04:59 PM,0 Block of MASONIC AVE,San Francisco,94118,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7837280171919, -122.447368375734)",160992881-84 +160950284,57,16037499,Medical Incident,04/04/2016,04/03/2016,04/04/2016 03:46:08 AM,04/04/2016 03:46:42 AM,04/04/2016 03:46:59 AM,04/04/2016 03:47:05 AM,04/04/2016 03:51:42 AM,04/04/2016 04:30:41 AM,04/04/2016 04:42:37 AM,Code 3 Transport,04/04/2016 05:51:02 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160950284-57 +142972138,77,14104819,Medical Incident,10/24/2014,10/24/2014,10/24/2014 02:50:11 PM,10/24/2014 02:51:13 PM,10/24/2014 02:52:05 PM,10/24/2014 02:52:14 PM,10/24/2014 03:06:18 PM,10/24/2014 03:31:14 PM,10/24/2014 04:05:25 PM,Code 2 Transport,10/24/2014 04:27:17 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",142972138-77 +160961888,55,16038023,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:13:30 PM,04/05/2016 01:14:19 PM,04/05/2016 01:14:38 PM,04/05/2016 01:14:49 PM,04/05/2016 01:22:39 PM,04/05/2016 01:46:38 PM,04/05/2016 02:27:20 PM,Code 2 Transport,04/05/2016 02:58:43 PM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160961888-55 +141610442,AM02,14055389,Citizen Assist / Service Call,06/10/2014,06/09/2014,06/10/2014 06:23:19 AM,06/10/2014 06:24:13 AM,06/10/2014 06:38:52 AM,06/10/2014 06:40:30 AM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Fire,06/10/2014 06:45:46 AM,2000 Block of LEAVENWORTH ST,San Francisco,94133,B01,28,1532,3,3,3,false,Alarm,1,PRIVATE,3,1,2,Russian Hill,"(37.8001328583441, -122.417471541396)",141610442-AM02 +153033433,70,15116367,Medical Incident,10/30/2015,10/30/2015,10/30/2015 07:28:59 PM,10/30/2015 07:30:15 PM,10/30/2015 07:31:09 PM,10/30/2015 07:31:15 PM,10/30/2015 07:35:38 PM,10/30/2015 07:55:37 PM,10/30/2015 07:59:47 PM,Code 2 Transport,10/30/2015 08:33:46 PM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",153033433-70 +150613327,88,15023426,Citizen Assist / Service Call,03/02/2015,03/02/2015,03/02/2015 08:14:58 PM,03/02/2015 08:16:37 PM,03/02/2015 08:25:22 PM,03/02/2015 08:25:30 PM,03/02/2015 08:28:19 PM,03/02/2015 08:59:54 PM,03/02/2015 09:13:41 PM,Code 2 Transport,03/02/2015 09:59:29 PM,300 Block of 25TH AVE,San Francisco,94121,B07,14,7214,3,3,3,true,Alarm,1,MEDIC,3,7,1,Outer Richmond,"(37.7829570675264, -122.484873511385)",150613327-88 +150361171,KM14,15013775,Medical Incident,02/05/2015,02/05/2015,02/05/2015 10:11:55 AM,02/05/2015 10:18:01 AM,02/05/2015 10:18:23 AM,02/05/2015 10:19:10 AM,02/05/2015 10:23:43 AM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Other,02/05/2015 10:24:24 AM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",150361171-KM14 +142491682,E31,14086794,Medical Incident,09/06/2014,09/06/2014,09/06/2014 12:51:26 PM,09/06/2014 12:51:26 PM,09/06/2014 12:51:42 PM,09/06/2014 12:52:11 PM,09/06/2014 12:58:47 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,No Merit,09/06/2014 01:00:15 PM,300 Block of 9TH AVE,San Francisco,94118,B07,31,7135,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7818377800951, -122.467627461804)",142491682-E31 +142603575,E03,14091040,Structure Fire,09/17/2014,09/17/2014,09/17/2014 09:22:48 PM,09/17/2014 09:22:48 PM,09/17/2014 09:22:56 PM,09/17/2014 09:23:54 PM,09/17/2014 09:25:39 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 09:26:20 PM,1000 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",142603575-E03 +151393270,B02,15052932,Structure Fire,05/19/2015,05/19/2015,05/19/2015 08:00:18 PM,05/19/2015 08:01:34 PM,05/19/2015 08:04:00 PM,05/19/2015 08:04:00 PM,05/19/2015 08:04:59 PM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/19/2015 08:17:22 PM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,3,3,3,false,Alarm,1,CHIEF,1,2,6,Mission,"(37.7720141510333, -122.419088601412)",151393270-B02 +150111650,E08,15004345,Medical Incident,01/11/2015,01/11/2015,01/11/2015 12:37:14 PM,01/11/2015 12:38:50 PM,01/11/2015 12:39:31 PM,01/11/2015 12:40:14 PM,01/11/2015 12:44:05 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 2 Transport,01/11/2015 01:02:23 PM,700 Block of 2ND ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.78019523865, -122.390107968661)",150111650-E08 +142232117,E15,14077434,Medical Incident,08/11/2014,08/11/2014,08/11/2014 04:07:38 PM,08/11/2014 04:08:29 PM,08/11/2014 04:09:27 PM,08/11/2014 04:10:27 PM,08/11/2014 04:12:51 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Code 3 Transport,08/11/2014 04:25:58 PM,500 Block of MIRAMAR AVE,San Francisco,94112,B09,15,8474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7266535727469, -122.458078876137)",142232117-E15 +150690144,77,15026212,Medical Incident,03/10/2015,03/09/2015,03/10/2015 01:10:32 AM,03/10/2015 01:11:54 AM,03/10/2015 01:12:22 AM,03/10/2015 01:12:43 AM,03/10/2015 01:25:36 AM,03/10/2015 01:52:02 AM,03/10/2015 02:04:55 AM,Code 2 Transport,03/10/2015 02:30:23 AM,400 Block of ALVARADO ST,San Francisco,94114,B06,11,5514,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7538353252202, -122.430987101522)",150690144-77 +152751414,E04,15105292,Traffic Collision,10/02/2015,10/02/2015,10/02/2015 11:02:21 AM,10/02/2015 11:03:26 AM,10/02/2015 11:03:49 AM,10/02/2015 11:04:37 AM,10/02/2015 11:07:55 AM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Code 2 Transport,10/02/2015 11:23:36 AM,TERRY A FRANCOIS BL/3RD ST,San Francisco,94158,B03,4,2162,2,3,3,false,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763001444296, -122.390025041862)",152751414-E04 +160991531,76,16039278,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:21:48 PM,04/08/2016 12:22:50 PM,04/08/2016 12:22:55 PM,04/08/2016 12:23:03 PM,04/08/2016 12:31:48 PM,04/08/2016 12:45:27 PM,04/08/2016 12:51:57 PM,Code 2 Transport,04/08/2016 01:23:55 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160991531-76 +160962916,57,16038107,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:12:15 PM,04/05/2016 05:12:32 PM,04/05/2016 05:12:38 PM,04/05/2016 05:13:14 PM,04/05/2016 05:45:40 PM,04/05/2016 05:45:49 PM,04/05/2016 06:16:37 PM,Code 3 Transport,04/05/2016 06:34:00 PM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7876129515348, -122.414185698261)",160962916-57 +143081476,E43,14108963,Medical Incident,11/04/2014,11/04/2014,11/04/2014 11:48:41 AM,11/04/2014 11:48:55 AM,11/04/2014 11:49:25 AM,11/04/2014 11:50:03 AM,11/04/2014 11:54:30 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 12:02:06 PM,300 Block of BALTIMORE WAY,San Francisco,94112,B09,43,6228,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7087981055096, -122.437985362628)",143081476-E43 +160972112,77,16038434,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:25:52 PM,04/06/2016 01:25:52 PM,04/06/2016 01:25:52 PM,04/06/2016 01:25:52 PM,04/06/2016 01:25:52 PM,04/06/2016 01:44:12 PM,04/06/2016 02:13:55 PM,Code 2 Transport,04/06/2016 02:47:48 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160972112-77 +142573087,54,14089922,Medical Incident,09/14/2014,09/14/2014,09/14/2014 09:39:47 PM,09/14/2014 09:41:14 PM,09/14/2014 09:51:02 PM,09/14/2014 09:51:02 PM,09/14/2014 09:51:15 PM,09/14/2014 10:01:13 PM,09/14/2014 10:17:17 PM,Code 2 Transport,09/14/2014 10:30:13 PM,SUTTER ST/MARKET ST,San Francisco,94104,B01,13,1164,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7902901603061, -122.400152471245)",142573087-54 +143572108,E15,14127797,Alarms,12/23/2014,12/23/2014,12/23/2014 02:16:16 PM,12/23/2014 02:17:45 PM,12/23/2014 02:17:59 PM,12/23/2014 02:19:13 PM,12/23/2014 02:20:57 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/23/2014 02:27:46 PM,100 Block of DORADO TER,San Francisco,94112,B09,15,8532,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7269434192738, -122.461281996252)",143572108-E15 +143093737,81,14109554,Medical Incident,11/05/2014,11/05/2014,11/05/2014 10:41:59 PM,11/05/2014 10:43:45 PM,11/05/2014 10:44:00 PM,11/05/2014 10:44:08 PM,11/05/2014 10:47:44 PM,11/05/2014 11:01:50 PM,11/05/2014 11:34:30 PM,Code 2 Transport,11/06/2014 12:05:04 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",143093737-81 +161001097,86,16039695,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:03:48 AM,04/09/2016 10:05:40 AM,04/09/2016 10:06:00 AM,04/09/2016 10:06:12 AM,04/09/2016 10:13:58 AM,04/09/2016 10:20:54 AM,04/09/2016 10:34:30 AM,Code 2 Transport,04/09/2016 11:10:45 AM,700 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7879296328088, -122.415022016948)",161001097-86 +152931650,E21,15112556,Medical Incident,10/20/2015,10/20/2015,10/20/2015 12:04:57 PM,10/20/2015 12:07:26 PM,10/20/2015 12:09:19 PM,10/20/2015 12:10:06 PM,10/20/2015 12:11:56 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Code 2 Transport,10/20/2015 12:37:18 PM,600 Block of SCOTT ST,San Francisco,94117,B05,21,4136,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7756631447471, -122.436291871367)",152931650-E21 +153130059,58,15120123,Medical Incident,11/09/2015,11/08/2015,11/09/2015 12:38:11 AM,11/09/2015 12:38:46 AM,11/09/2015 12:39:11 AM,11/09/2015 12:39:25 AM,11/09/2015 12:44:21 AM,11/09/2015 12:54:14 AM,04/25/2016 01:07:18 PM,Code 2 Transport,11/09/2015 01:42:17 AM,500 Block of 16TH ST,San Francisco,94158,B03,4,2364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7669077375636, -122.389953310859)",153130059-58 +142491735,B02,14086800,Alarms,09/06/2014,09/06/2014,09/06/2014 01:04:34 PM,09/06/2014 01:06:17 PM,09/06/2014 01:06:34 PM,09/06/2014 01:07:52 PM,09/06/2014 01:10:22 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Fire,09/06/2014 01:14:20 PM,200 Block of DIVISADERO ST,San Francisco,94117,B05,21,4144,3,3,3,false,Alarm,1,CHIEF,2,5,5,Haight Ashbury,"(37.7717499829743, -122.437022956853)",142491735-B02 +151351294,T10,15051228,Medical Incident,05/15/2015,05/15/2015,05/15/2015 10:28:07 AM,05/15/2015 10:29:08 AM,05/15/2015 10:29:29 AM,05/15/2015 10:30:13 AM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Code 2 Transport,05/15/2015 10:32:02 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,5,Japantown,"(37.7846877609559, -122.437204719428)",151351294-T10 +160960311,82,16037873,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:06:15 AM,04/05/2016 04:06:46 AM,04/05/2016 04:06:57 AM,04/05/2016 04:07:12 AM,04/05/2016 04:11:23 AM,04/05/2016 04:28:35 AM,04/05/2016 04:33:59 AM,Code 2 Transport,04/05/2016 05:28:48 AM,1100 Block of CHURCH ST,San Francisco,94114,B06,11,5523,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7520811273688, -122.427401362186)",160960311-82 +160921504,81,16036420,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:05:50 PM,04/01/2016 12:07:41 PM,04/01/2016 12:08:37 PM,04/01/2016 12:09:02 PM,04/01/2016 12:14:41 PM,04/01/2016 12:47:05 PM,04/01/2016 12:33:58 PM,Code 3 Transport,04/01/2016 01:28:47 PM,100 Block of VARENNES ST,San Francisco,94133,B01,28,1252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8012139505767, -122.406825918153)",160921504-81 +161001150,KM06,16039703,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:24:10 AM,04/09/2016 10:25:46 AM,04/09/2016 10:40:57 AM,04/09/2016 10:40:57 AM,04/09/2016 10:43:42 AM,04/09/2016 10:51:44 AM,04/09/2016 11:08:00 AM,Code 2 Transport,04/09/2016 11:48:59 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",161001150-KM06 +152953308,66,15113497,Medical Incident,10/22/2015,10/22/2015,10/22/2015 08:07:03 PM,10/22/2015 08:07:48 PM,10/22/2015 08:08:42 PM,10/22/2015 08:08:54 PM,10/22/2015 08:13:35 PM,10/22/2015 08:26:37 PM,10/22/2015 08:41:38 PM,Code 2 Transport,10/22/2015 09:25:37 PM,100 Block of LINDA ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7594094951426, -122.422887066133)",152953308-66 +152023610,55,15077119,Medical Incident,07/21/2015,07/21/2015,07/21/2015 09:14:21 PM,07/21/2015 09:16:52 PM,07/21/2015 09:17:32 PM,07/21/2015 09:17:44 PM,07/21/2015 09:21:24 PM,07/21/2015 09:34:03 PM,07/21/2015 09:44:31 PM,Code 2 Transport,07/21/2015 10:08:07 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",152023610-55 +152931551,AM06,15112545,Medical Incident,10/20/2015,10/20/2015,10/20/2015 11:36:35 AM,10/20/2015 11:37:55 AM,10/20/2015 11:38:28 AM,10/20/2015 11:39:15 AM,10/20/2015 11:58:57 AM,10/20/2015 11:59:00 AM,10/20/2015 12:19:36 PM,Code 2 Transport,10/20/2015 12:48:18 PM,0 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",152931551-AM06 +141110044,E01,14037329,Medical Incident,04/21/2014,04/20/2014,04/21/2014 03:49:24 AM,04/21/2014 03:53:28 AM,04/21/2014 03:54:20 AM,04/21/2014 03:56:38 AM,04/21/2014 03:59:40 AM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/21/2014 04:03:24 AM,100 Block of MASON ST,SAN FRANCISCO,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",141110044-E01 +152900753,E03,15111317,Outside Fire,10/17/2015,10/16/2015,10/17/2015 06:45:41 AM,10/17/2015 06:47:43 AM,10/17/2015 06:47:53 AM,10/17/2015 06:49:56 AM,10/17/2015 06:51:41 AM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Fire,10/17/2015 06:54:04 AM,HEMLOCK ST/LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,true,Fire,1,ENGINE,1,4,3,Nob Hill,"(37.7874871163793, -122.41836486841)",152900753-E03 +150022190,72,15000781,Citizen Assist / Service Call,01/02/2015,01/02/2015,01/02/2015 04:39:20 PM,01/02/2015 04:40:59 PM,01/02/2015 04:48:58 PM,01/02/2015 04:52:57 PM,01/02/2015 04:55:14 PM,01/02/2015 05:22:09 PM,01/02/2015 05:26:26 PM,Code 3 Transport,01/02/2015 06:05:36 PM,1200 Block of UNION ST,San Francisco,94109,B01,41,1611,3,3,3,true,Alarm,1,MEDIC,2,1,2,Russian Hill,"(37.7991880778429, -122.419577927088)",150022190-72 +151542842,RS2,15058782,Structure Fire,06/03/2015,06/03/2015,06/03/2015 05:14:20 PM,06/03/2015 05:15:16 PM,06/03/2015 05:15:36 PM,06/03/2015 05:15:45 PM,06/03/2015 05:17:50 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Fire,06/03/2015 05:38:38 PM,2800 Block of 26TH ST,San Francisco,94110,B06,9,5616,3,3,3,false,Fire,1,RESCUE SQUAD,1,6,9,Mission,"(37.7497416991631, -122.40739562751)",151542842-RS2 +160993873,AM24,16039511,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:37:21 PM,04/08/2016 10:38:09 PM,04/08/2016 10:39:45 PM,04/08/2016 10:41:21 PM,04/08/2016 10:46:34 PM,04/08/2016 11:06:30 PM,04/08/2016 11:31:32 PM,Code 2 Transport,04/09/2016 12:08:30 AM,800 Block of POST ST,San Francisco,94109,B04,3,1543,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7874037664371, -122.415827994726)",160993873-AM24 +150423137,E03,15016476,Medical Incident,02/11/2015,02/11/2015,02/11/2015 06:40:40 PM,02/11/2015 06:41:33 PM,02/11/2015 06:42:42 PM,02/11/2015 06:42:42 PM,02/11/2015 06:42:42 PM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Code 2 Transport,02/11/2015 06:51:47 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",150423137-E03 +160922141,AM16,16036478,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 03:01:04 PM,04/01/2016 03:03:36 PM,04/01/2016 03:04:26 PM,04/01/2016 03:05:06 PM,04/01/2016 03:21:10 PM,04/01/2016 03:39:10 PM,04/01/2016 03:56:50 PM,Code 2 Transport,04/01/2016 04:27:14 PM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,2,3,3,false,Non Life-threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",160922141-AM16 +152643779,T13,15101252,Structure Fire,09/21/2015,09/21/2015,09/21/2015 08:00:40 PM,09/21/2015 08:00:40 PM,09/21/2015 08:00:49 PM,09/21/2015 08:02:18 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/21/2015 08:03:53 PM,MAIN ST/MISSION ST,San Francisco,94105,B03,35,2116,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",152643779-T13 +160923294,76,16036589,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:56:28 PM,04/01/2016 07:57:48 PM,04/01/2016 07:58:16 PM,04/01/2016 07:58:24 PM,04/01/2016 08:03:15 PM,04/01/2016 08:16:21 PM,04/01/2016 08:26:27 PM,Code 3 Transport,04/01/2016 08:43:37 PM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",160923294-76 +161001198,74,16039706,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:41:55 AM,04/09/2016 10:43:59 AM,04/09/2016 10:55:17 AM,04/09/2016 10:55:17 AM,04/09/2016 11:02:15 AM,04/09/2016 11:10:36 AM,04/09/2016 11:25:51 AM,Code 2 Transport,04/09/2016 11:58:44 AM,3100 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7220016138662, -122.401341444894)",161001198-74 +160993838,64,16039507,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:23:02 PM,04/08/2016 10:25:27 PM,04/08/2016 10:31:27 PM,04/08/2016 10:35:13 PM,04/08/2016 10:35:13 PM,04/08/2016 10:55:44 PM,04/08/2016 11:01:48 PM,Code 2 Transport,04/08/2016 11:35:31 PM,4300 Block of 17TH ST,San Francisco,94114,B05,6,5254,2,3,3,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7621598004404, -122.441543331354)",160993838-64 +142380092,CD2,14082637,Structure Fire,08/26/2014,08/25/2014,08/26/2014 12:34:34 AM,08/26/2014 12:35:02 AM,08/26/2014 12:51:03 AM,08/26/2014 12:51:03 AM,08/26/2014 12:56:58 AM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,Fire,08/26/2014 02:19:49 AM,2000 Block of SAN JOSE AVE,San Francisco,94112,B09,15,8311,3,3,3,false,Fire,3,CHIEF,33,9,11,Outer Mission,"(37.7239471712086, -122.443848555561)",142380092-CD2 +151001046,E36,15037775,Medical Incident,04/10/2015,04/10/2015,04/10/2015 10:11:55 AM,04/10/2015 10:13:49 AM,04/10/2015 10:17:38 AM,04/10/2015 10:19:12 AM,04/10/2015 10:27:55 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Unable to Locate,04/10/2015 10:29:14 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",151001046-E36 +141731175,AR1,14059634,Outside Fire,06/22/2014,06/22/2014,06/22/2014 11:16:50 AM,06/22/2014 11:17:44 AM,06/22/2014 11:23:12 AM,06/22/2014 11:23:58 AM,06/22/2014 11:40:04 AM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Fire,06/22/2014 02:23:03 PM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,false,Fire,1,INVESTIGATION,3,3,6,Financial District/South Beach,"(37.7865200257762, -122.398029767539)",141731175-AR1 +160941113,KM05,16037207,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:35:10 AM,04/03/2016 09:35:50 AM,04/03/2016 09:36:25 AM,04/03/2016 09:38:14 AM,04/03/2016 09:44:44 AM,04/03/2016 09:53:46 AM,04/03/2016 10:14:08 AM,Code 2 Transport,04/03/2016 10:35:04 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160941113-KM05 +150041879,82,15001500,Medical Incident,01/04/2015,01/04/2015,01/04/2015 02:33:07 PM,01/04/2015 02:34:36 PM,01/04/2015 02:35:11 PM,01/04/2015 02:36:12 PM,01/04/2015 02:42:04 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Patient Declined Transport,01/04/2015 03:32:52 PM,100 Block of FRANKLIN ST,San Francisco,94102,B02,36,3213,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7759358319818, -122.421032543678)",150041879-82 +152891113,E02,15110955,Medical Incident,10/16/2015,10/16/2015,10/16/2015 09:55:55 AM,10/16/2015 09:56:25 AM,10/16/2015 09:57:44 AM,10/16/2015 09:59:29 AM,10/16/2015 10:03:20 AM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 10:34:17 AM,1700 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7913381286071, -122.421683207706)",152891113-E02 +153143258,52,15120794,Medical Incident,11/10/2015,11/10/2015,11/10/2015 07:13:41 PM,11/10/2015 07:16:21 PM,11/10/2015 07:17:02 PM,11/10/2015 07:17:17 PM,11/10/2015 07:36:41 PM,11/10/2015 08:04:04 PM,11/10/2015 08:14:33 PM,Code 2 Transport,11/10/2015 08:55:07 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",153143258-52 +141610839,T08,14055421,Alarms,06/10/2014,06/10/2014,06/10/2014 08:58:15 AM,06/10/2014 08:59:59 AM,06/10/2014 09:00:31 AM,06/10/2014 09:02:01 AM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Fire,06/10/2014 09:06:08 AM,100 Block of VERMONT ST,San Francisco,94103,B02,29,2355,3,3,3,false,Alarm,1,TRUCK,2,2,10,Mission Bay,"(37.76789826103, -122.404743414302)",141610839-T08 +142021764,E36,14069888,Medical Incident,07/21/2014,07/21/2014,07/21/2014 01:48:31 PM,07/21/2014 01:50:08 PM,07/21/2014 01:50:15 PM,07/21/2014 01:51:20 PM,07/21/2014 01:54:51 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,No Merit,07/21/2014 02:02:40 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",142021764-E36 +150140938,E07,15005469,Medical Incident,01/14/2015,01/14/2015,01/14/2015 09:18:17 AM,01/14/2015 09:18:58 AM,01/14/2015 09:19:32 AM,01/14/2015 09:19:58 AM,01/14/2015 09:22:15 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Code 2 Transport,01/14/2015 09:26:35 AM,16TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7651831353816, -122.417486597301)",150140938-E07 +151873393,B08,15071551,Structure Fire,07/06/2015,07/06/2015,07/06/2015 07:38:15 PM,07/06/2015 07:38:15 PM,07/06/2015 07:38:24 PM,07/06/2015 07:41:38 PM,07/06/2015 07:41:38 PM,04/25/2016 01:09:36 PM,04/25/2016 01:09:36 PM,Fire,07/06/2015 07:42:05 PM,2600 Block of 42ND AVE,San Francisco,94116,B08,18,768,3,3,3,false,Alarm,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7373076750322, -122.49992945011)",151873393-B08 +160973187,54,16038552,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:08:59 PM,04/06/2016 05:10:46 PM,04/06/2016 05:11:02 PM,04/06/2016 05:11:14 PM,04/06/2016 05:28:20 PM,04/06/2016 05:28:23 PM,04/06/2016 05:55:56 PM,Code 2 Transport,04/06/2016 06:10:53 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",160973187-54 +151080604,E24,15040792,Medical Incident,04/18/2015,04/17/2015,04/18/2015 06:21:57 AM,04/18/2015 06:22:21 AM,04/18/2015 06:22:31 AM,04/18/2015 06:24:42 AM,04/18/2015 06:26:40 AM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Patient Declined Transport,04/18/2015 06:35:18 AM,500 Block of EUREKA ST,San Francisco,94114,B06,24,5465,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7535004906756, -122.437502084533)",151080604-E24 +142700775,85,14094598,Medical Incident,09/27/2014,09/26/2014,09/27/2014 07:10:05 AM,09/27/2014 07:12:17 AM,09/27/2014 07:13:42 AM,09/27/2014 07:15:57 AM,09/27/2014 07:20:56 AM,09/27/2014 07:30:59 AM,09/27/2014 07:44:01 AM,Code 2 Transport,09/27/2014 08:32:49 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",142700775-85 +150472125,63,15018315,Medical Incident,02/16/2015,02/16/2015,02/16/2015 02:23:31 PM,02/16/2015 02:24:29 PM,02/16/2015 02:26:25 PM,02/16/2015 02:26:49 PM,02/16/2015 02:34:20 PM,02/16/2015 02:44:52 PM,02/16/2015 03:03:26 PM,Code 2 Transport,02/16/2015 03:18:31 PM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",150472125-63 +142171120,E03,14075191,Medical Incident,08/05/2014,08/05/2014,08/05/2014 11:03:56 AM,08/05/2014 11:04:19 AM,08/05/2014 11:09:15 AM,08/05/2014 11:09:50 AM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Code 2 Transport,08/05/2014 11:10:35 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",142171120-E03 +160962932,52,16038108,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:14:59 PM,04/05/2016 05:15:55 PM,04/05/2016 05:16:04 PM,04/05/2016 05:16:11 PM,04/05/2016 05:22:32 PM,04/05/2016 05:33:06 PM,04/05/2016 05:44:04 PM,Code 3 Transport,04/05/2016 06:28:08 PM,0 Block of VARNEY PL,San Francisco,94107,B03,8,2173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7807548883206, -122.394026397385)",160962932-52 +160942566,53,16037339,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:41:33 PM,04/03/2016 04:45:01 PM,04/03/2016 04:45:22 PM,04/03/2016 04:45:31 PM,04/03/2016 04:50:05 PM,04/03/2016 05:18:39 PM,04/03/2016 05:46:48 PM,Code 2 Transport,04/03/2016 06:14:07 PM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",160942566-53 +161000672,AM24,16039644,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:58:52 AM,04/09/2016 06:59:26 AM,04/09/2016 07:00:06 AM,04/09/2016 07:01:06 AM,04/09/2016 07:10:55 AM,04/09/2016 07:29:19 AM,04/09/2016 07:47:44 AM,Code 2 Transport,04/09/2016 08:18:07 AM,0 Block of NORTON ST,San Francisco,94112,B09,43,6117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7250514707571, -122.435709128534)",161000672-AM24 +142182430,B10,14075634,Structure Fire,08/06/2014,08/06/2014,08/06/2014 03:22:20 PM,08/06/2014 03:23:05 PM,08/06/2014 03:23:21 PM,08/06/2014 03:24:40 PM,08/06/2014 03:28:55 PM,04/25/2016 01:15:49 PM,04/25/2016 01:15:49 PM,Fire,08/06/2014 03:36:48 PM,0 Block of LATONA ST,San Francisco,94124,B10,17,6514,3,3,3,false,Alarm,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.7316182572491, -122.392627218053)",142182430-B10 +160971551,KM05,16038381,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:21:27 AM,04/06/2016 11:22:05 AM,04/06/2016 11:22:40 AM,04/06/2016 11:23:23 AM,04/06/2016 11:29:39 AM,04/06/2016 11:59:27 AM,04/06/2016 12:14:31 PM,Code 2 Transport,04/06/2016 12:46:12 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160971551-KM05 +160980362,88,16038765,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:15:54 AM,04/07/2016 03:20:42 AM,04/07/2016 03:23:37 AM,04/07/2016 03:23:48 AM,04/07/2016 03:29:27 AM,04/07/2016 03:35:58 AM,04/07/2016 03:42:33 AM,Code 2 Transport,04/07/2016 04:01:43 AM,11TH ST/MARKET ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",160980362-88 +153482099,82,15134105,Medical Incident,12/14/2015,12/14/2015,12/14/2015 02:26:02 PM,12/14/2015 02:27:04 PM,12/14/2015 02:27:51 PM,12/14/2015 02:28:00 PM,12/14/2015 02:32:49 PM,12/14/2015 02:48:45 PM,12/14/2015 03:19:48 PM,Code 2 Transport,12/14/2015 03:44:34 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",153482099-82 +153172444,54,15121894,Other,11/13/2015,11/13/2015,11/13/2015 02:53:18 PM,11/13/2015 02:54:52 PM,11/13/2015 03:01:13 PM,11/13/2015 03:01:13 PM,11/13/2015 03:14:06 PM,11/13/2015 03:42:06 PM,11/13/2015 03:48:22 PM,Multi-casualty Incident,11/13/2015 04:55:48 PM,200 Block of STOCKTON ST,San Francisco,94108,B01,1,1323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,9,1,3,Financial District/South Beach,"(37.7882745285785, -122.406658711008)",153172444-54 +141910967,KM06,14066137,Medical Incident,07/10/2014,07/10/2014,07/10/2014 09:17:01 AM,07/10/2014 09:19:33 AM,07/10/2014 09:22:29 AM,07/10/2014 09:23:35 AM,07/10/2014 09:25:49 AM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Patient Declined Transport,07/10/2014 10:13:52 AM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",141910967-KM06 +161002486,KM09,16039861,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:40:15 PM,04/09/2016 05:40:54 PM,04/09/2016 05:41:55 PM,04/09/2016 05:42:34 PM,04/09/2016 06:18:58 PM,04/09/2016 06:44:30 PM,04/09/2016 07:12:58 PM,Code 2 Transport,04/09/2016 07:32:16 PM,400 Block of GREENWICH ST,San Francisco,94133,B01,28,1335,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.8025926398562, -122.407698526758)",161002486-KM09 +153431198,T16,15131939,Structure Fire,12/09/2015,12/09/2015,12/09/2015 10:05:44 AM,12/09/2015 10:05:44 AM,12/09/2015 10:05:56 AM,12/09/2015 10:06:09 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 10:09:47 AM,VAN NESS AV/NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,false,Alarm,1,TRUCK,2,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",153431198-T16 +141751296,E03,14060346,Medical Incident,06/24/2014,06/24/2014,06/24/2014 11:36:59 AM,06/24/2014 11:37:59 AM,06/24/2014 11:48:54 AM,06/24/2014 11:49:54 AM,06/24/2014 11:55:14 AM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,Code 3 Transport,06/24/2014 12:29:17 PM,1600 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",141751296-E03 +143472976,53,14123927,Medical Incident,12/13/2014,12/13/2014,12/13/2014 06:41:17 PM,12/13/2014 06:43:05 PM,12/13/2014 06:43:16 PM,12/13/2014 06:43:25 PM,12/13/2014 06:47:39 PM,12/13/2014 06:59:42 PM,12/13/2014 07:12:45 PM,Code 2 Transport,12/13/2014 07:30:14 PM,600 Block of 27TH AVE,San Francisco,94121,B07,14,7222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7771331089354, -122.486739386436)",143472976-53 +141060337,E06,14035867,Medical Incident,04/16/2014,04/16/2014,04/16/2014 05:35:31 PM,04/16/2014 05:37:15 PM,04/16/2014 05:38:06 PM,04/16/2014 05:39:10 PM,04/16/2014 05:41:30 PM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Code 2 Transport,04/16/2014 06:35:28 PM,0 Block of WEBSTER ST,SAN FRANCISCO,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7695619068143, -122.428315606371)",141060337-E06 +160981294,67,16038860,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:10:42 AM,04/07/2016 10:13:48 AM,04/07/2016 10:17:43 AM,04/07/2016 10:17:48 AM,04/07/2016 10:35:12 AM,04/07/2016 10:53:58 AM,04/07/2016 11:14:51 AM,Code 2 Transport,04/07/2016 12:06:03 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160981294-67 +142991309,E15,14105548,Medical Incident,10/26/2014,10/26/2014,10/26/2014 10:56:01 AM,10/26/2014 10:57:41 AM,10/26/2014 10:57:51 AM,10/26/2014 10:58:50 AM,10/26/2014 11:01:46 AM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,Fire,10/26/2014 11:07:08 AM,200 Block of TARA ST,San Francisco,94112,B09,15,8315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7195632591737, -122.449576132342)",142991309-E15 +152603600,78,15099535,Medical Incident,09/17/2015,09/17/2015,09/17/2015 08:20:28 PM,09/17/2015 08:22:30 PM,09/17/2015 08:23:47 PM,09/17/2015 08:24:03 PM,09/17/2015 08:40:02 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Cancelled,09/17/2015 08:43:36 PM,900 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1435,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",152603600-78 +151771784,E13,15067375,Medical Incident,06/26/2015,06/26/2015,06/26/2015 01:04:10 PM,06/26/2015 01:06:13 PM,06/26/2015 01:06:37 PM,06/26/2015 01:07:27 PM,06/26/2015 01:08:27 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 01:36:08 PM,500 Block of BATTERY ST,San Francisco,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7963165979031, -122.40065165037)",151771784-E13 +160923230,78,16036581,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:35:11 PM,04/01/2016 07:35:11 PM,04/01/2016 07:36:42 PM,04/01/2016 07:36:49 PM,04/01/2016 07:48:23 PM,04/01/2016 08:03:45 PM,04/01/2016 08:11:02 PM,Code 2 Transport,04/01/2016 08:58:14 PM,3500 Block of MISSION ST,San Francisco,94110,B06,32,5626,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7408095549035, -122.422903715345)",160923230-78 +152282661,79,15087075,Medical Incident,08/16/2015,08/16/2015,08/16/2015 05:10:40 PM,08/16/2015 05:13:05 PM,08/16/2015 05:13:51 PM,08/16/2015 05:14:06 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,No Merit,08/16/2015 05:24:54 PM,3RD ST/STILLMAN ST,San Francisco,94107,B03,8,2174,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",152282661-79 +142151878,83,14074596,Traffic Collision,08/03/2014,08/03/2014,08/03/2014 03:38:27 PM,08/03/2014 03:38:27 PM,08/03/2014 03:38:39 PM,08/03/2014 03:38:54 PM,04/25/2016 01:15:52 PM,04/25/2016 01:15:52 PM,04/25/2016 01:15:52 PM,Patient Declined Transport,08/03/2014 03:40:31 PM,19TH AV/KIRKHAM ST,San Francisco,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,7,8,7,Inner Sunset,"(37.7598339367344, -122.47681389085)",142151878-83 +160982681,71,16039008,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:12:58 PM,04/07/2016 04:15:24 PM,04/07/2016 04:15:59 PM,04/07/2016 04:16:09 PM,04/07/2016 04:24:23 PM,04/07/2016 04:46:54 PM,04/07/2016 05:12:32 PM,Code 2 Transport,04/07/2016 05:29:12 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7658666581108, -122.419678114931)",160982681-71 +152683262,E38,15102812,Structure Fire,09/25/2015,09/25/2015,09/25/2015 07:15:07 PM,09/25/2015 07:15:07 PM,09/25/2015 07:15:38 PM,09/25/2015 07:17:44 PM,09/25/2015 07:17:44 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 07:26:50 PM,2300 Block of BUCHANAN ST,San Francisco,94115,B04,38,343,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",152683262-E38 +160983755,70,16039117,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:34:47 PM,04/07/2016 09:35:25 PM,04/07/2016 09:35:55 PM,04/07/2016 09:37:20 PM,04/07/2016 09:39:33 PM,04/07/2016 09:57:58 PM,04/07/2016 10:03:18 PM,Code 2 Transport,04/07/2016 10:33:02 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160983755-70 +141200366,E31,14040700,Medical Incident,04/30/2014,04/30/2014,04/30/2014 08:54:00 PM,04/30/2014 08:54:34 PM,04/30/2014 08:54:55 PM,04/30/2014 08:56:12 PM,04/30/2014 09:00:21 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Code 2 Transport,04/30/2014 09:10:53 PM,1900 Block of CABRILLO ST,SAN FRANCISCO,94121,B07,31,7166,,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7746018884228, -122.479501884325)",141200366-E31 +151553136,KM11,15059235,Medical Incident,06/04/2015,06/04/2015,06/04/2015 06:50:31 PM,06/04/2015 06:51:55 PM,06/04/2015 06:52:14 PM,06/04/2015 06:52:45 PM,06/04/2015 06:58:12 PM,06/04/2015 07:04:49 PM,06/04/2015 07:15:25 PM,Code 2 Transport,06/04/2015 07:33:18 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",151553136-KM11 +160932269,AM02,16036920,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:41:37 PM,04/02/2016 03:41:37 PM,04/02/2016 03:43:10 PM,04/02/2016 03:44:35 PM,04/02/2016 03:50:29 PM,04/02/2016 04:13:30 PM,04/02/2016 04:25:14 PM,Code 2 Transport,04/02/2016 04:51:37 PM,600 Block of PRESIDIO AVE,San Francisco,94115,B05,10,4411,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,2,Presidio Heights,"(37.7858449979837, -122.44644775326)",160932269-AM02 +161000664,89,16039641,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:52:26 AM,04/09/2016 06:53:42 AM,04/09/2016 06:53:55 AM,04/09/2016 06:54:25 AM,04/09/2016 06:59:52 AM,04/09/2016 07:19:21 AM,04/09/2016 07:25:47 AM,Code 2 Transport,04/09/2016 08:08:16 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",161000664-89 +160981082,65,16038831,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:16:46 AM,04/07/2016 09:16:46 AM,04/07/2016 09:16:53 AM,04/07/2016 09:16:59 AM,04/07/2016 09:21:41 AM,04/07/2016 09:42:00 AM,04/07/2016 09:47:34 AM,Code 2 Transport,04/07/2016 10:29:02 AM,23RD ST/HAMPSHIRE ST,San Francisco,94110,B06,7,5476,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7545063381607, -122.407448561841)",160981082-65 +142622011,E39,14091634,Medical Incident,09/19/2014,09/19/2014,09/19/2014 01:56:45 PM,09/19/2014 01:58:13 PM,09/19/2014 02:04:04 PM,09/19/2014 02:05:39 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,Code 2 Transport,09/19/2014 02:36:20 PM,300 Block of SAN LEANDRO WAY,San Francisco,94127,B09,39,8552,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7308612889348, -122.468777345903)",142622011-E39 +152990128,71,15114634,Medical Incident,10/26/2015,10/25/2015,10/26/2015 01:09:36 AM,10/26/2015 01:09:36 AM,10/26/2015 01:22:49 AM,10/26/2015 01:23:12 AM,10/26/2015 01:36:12 AM,10/26/2015 02:12:46 AM,10/26/2015 02:22:52 AM,Code 2 Transport,10/26/2015 03:29:29 AM,900 Block of MEADE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7178922273054, -122.397583035187)",152990128-71 +142501535,T01,14087172,Structure Fire,09/07/2014,09/07/2014,09/07/2014 12:04:41 PM,09/07/2014 12:04:41 PM,09/07/2014 12:05:04 PM,09/07/2014 12:06:30 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Fire,09/07/2014 12:07:14 PM,1200 Block of MARKET ST,San Francisco,94103,B02,36,2337,3,3,3,false,Alarm,1,TRUCK,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",142501535-T01 +152562415,E51,15097973,Medical Incident,09/13/2015,09/13/2015,09/13/2015 04:36:35 PM,09/13/2015 04:37:16 PM,09/13/2015 04:37:38 PM,09/13/2015 04:39:26 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,Code 2 Transport,09/13/2015 04:40:10 PM,100 Block of 18TH AVE,San Francisco,94121,B07,31,7163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7851542988251, -122.477507607941)",152562415-E51 +142032973,86,14070367,Medical Incident,07/22/2014,07/22/2014,07/22/2014 07:26:02 PM,07/22/2014 07:26:02 PM,07/22/2014 07:36:24 PM,07/22/2014 07:36:24 PM,07/22/2014 07:44:58 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Cancelled,07/22/2014 07:46:58 PM,EDDY ST/JONES ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",142032973-86 +141651209,E12,14056866,Medical Incident,06/14/2014,06/14/2014,06/14/2014 10:36:11 AM,06/14/2014 10:38:26 AM,06/14/2014 10:40:19 AM,06/14/2014 10:41:35 AM,06/14/2014 10:43:43 AM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Code 2 Transport,06/14/2014 11:16:36 AM,0 Block of DOWNEY ST,San Francisco,94117,B05,12,4512,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7680490579838, -122.447311591482)",141651209-E12 +160980544,65,16038787,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:50:12 AM,04/07/2016 05:51:39 AM,04/07/2016 05:51:50 AM,04/07/2016 05:51:55 AM,04/07/2016 05:58:45 AM,04/07/2016 06:19:20 AM,04/07/2016 06:29:01 AM,Code 2 Transport,04/07/2016 07:02:53 AM,0 Block of DE LONG ST,San Francisco,94112,B09,33,8357,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7096061746136, -122.459869387331)",160980544-65 +152550373,E02,15097382,Medical Incident,09/12/2015,09/11/2015,09/12/2015 02:53:29 AM,09/12/2015 02:53:29 AM,09/12/2015 02:53:55 AM,09/12/2015 02:55:34 AM,09/12/2015 02:57:14 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Patient Declined Transport,09/12/2015 03:04:44 AM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7979466732983, -122.406460643507)",152550373-E02 +152242144,E15,15085385,Medical Incident,08/12/2015,08/12/2015,08/12/2015 02:10:25 PM,08/12/2015 02:13:05 PM,08/12/2015 02:15:10 PM,08/12/2015 02:17:21 PM,08/12/2015 02:19:14 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Code 3 Transport,08/12/2015 02:29:09 PM,200 Block of DETROIT ST,San Francisco,94131,B09,15,8222,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7294956324936, -122.444218631361)",152242144-E15 +152830544,E15,15108540,Alarms,10/10/2015,10/09/2015,10/10/2015 03:37:45 AM,10/10/2015 03:38:10 AM,10/10/2015 03:38:43 AM,10/10/2015 03:40:47 AM,10/10/2015 03:42:47 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Fire,10/10/2015 03:52:31 AM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152830544-E15 +152803864,66,15107618,Medical Incident,10/07/2015,10/07/2015,10/07/2015 09:14:05 PM,10/07/2015 09:15:12 PM,10/07/2015 09:15:22 PM,10/07/2015 09:15:55 PM,10/07/2015 09:23:43 PM,10/07/2015 09:28:18 PM,10/07/2015 09:46:47 PM,Code 2 Transport,10/07/2015 10:27:24 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",152803864-66 +150830981,79,15031662,Medical Incident,03/24/2015,03/24/2015,03/24/2015 09:41:40 AM,03/24/2015 09:43:10 AM,03/24/2015 09:43:31 AM,03/24/2015 09:44:00 AM,03/24/2015 10:01:07 AM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Gone on Arrival,03/24/2015 10:05:46 AM,19TH AV/WINSTON DR,San Francisco,94132,B08,19,8725,2,3,3,true,Non Life-threatening,1,MEDIC,1,9,7,Lakeshore,"(37.7269907019127, -122.474900344293)",150830981-79 +151940262,63,15073875,Medical Incident,07/13/2015,07/12/2015,07/13/2015 02:46:10 AM,07/13/2015 02:46:38 AM,07/13/2015 02:47:27 AM,07/13/2015 02:48:17 AM,07/13/2015 02:51:11 AM,07/13/2015 03:10:38 AM,07/13/2015 03:14:52 AM,Code 2 Transport,07/13/2015 03:34:09 AM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",151940262-63 +151802231,T01,15068778,Alarms,06/29/2015,06/29/2015,06/29/2015 03:37:03 PM,06/29/2015 03:38:45 PM,06/29/2015 03:38:53 PM,06/29/2015 03:41:02 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Fire,06/29/2015 03:42:13 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",151802231-T01 +143522510,E11,14125822,Medical Incident,12/18/2014,12/18/2014,12/18/2014 04:02:27 PM,12/18/2014 04:04:05 PM,12/18/2014 04:08:17 PM,12/18/2014 04:09:40 PM,12/18/2014 04:14:19 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,No Merit,12/18/2014 04:17:48 PM,3300 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.748078304368, -122.41703818877)",143522510-E11 +141950388,58,14067474,Medical Incident,07/14/2014,07/13/2014,07/14/2014 04:50:33 AM,07/14/2014 04:51:58 AM,07/14/2014 04:52:56 AM,07/14/2014 04:53:08 AM,07/14/2014 05:02:38 AM,07/14/2014 05:19:16 AM,07/14/2014 05:25:07 AM,Code 2 Transport,07/14/2014 05:39:25 AM,0 Block of WINFIELD ST,San Francisco,94110,B06,11,5657,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7445134943553, -122.41736579364)",141950388-58 +160970017,52,16038239,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:06:30 AM,04/06/2016 12:06:30 AM,04/06/2016 12:07:43 AM,04/06/2016 12:07:50 AM,04/06/2016 12:19:01 AM,04/06/2016 12:30:21 AM,04/06/2016 12:42:12 AM,Code 2 Transport,04/06/2016 01:31:32 AM,GUERRERO ST/CLINTON PARK ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7685443407606, -122.424582398809)",160970017-52 +141973146,E01,14068343,Medical Incident,07/16/2014,07/16/2014,07/16/2014 07:08:23 PM,07/16/2014 07:09:57 PM,07/16/2014 07:17:21 PM,07/16/2014 07:18:58 PM,07/16/2014 07:26:50 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 2 Transport,07/16/2014 07:41:40 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",141973146-E01 +160930354,70,16036704,Medical Incident,04/02/2016,04/01/2016,04/02/2016 02:27:54 AM,04/02/2016 02:30:00 AM,04/02/2016 02:30:20 AM,04/02/2016 02:30:29 AM,04/02/2016 02:38:51 AM,04/02/2016 02:50:29 AM,04/02/2016 03:06:04 AM,Code 2 Transport,04/02/2016 03:22:59 AM,1100 Block of GILMAN AVE,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7198684752103, -122.390904801268)",160930354-70 +160962872,62,16038103,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:05:21 PM,04/05/2016 05:06:16 PM,04/05/2016 05:06:40 PM,04/05/2016 05:06:55 PM,04/05/2016 05:09:59 PM,04/05/2016 05:20:22 PM,04/05/2016 05:29:42 PM,Code 2 Transport,04/05/2016 06:12:34 PM,MISSION ST/8TH ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",160962872-62 +160974406,89,16038693,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:15:57 PM,04/06/2016 10:16:54 PM,04/06/2016 10:17:02 PM,04/06/2016 10:17:11 PM,04/06/2016 10:19:56 PM,04/06/2016 10:39:36 PM,04/06/2016 10:55:19 PM,Code 2 Transport,04/06/2016 11:24:26 PM,200 Block of SOUTH VAN NESS AV,San Francisco,94103,B02,36,5123,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7688016803298, -122.417713021943)",160974406-89 +141030317,52,14034899,Medical Incident,04/13/2014,04/13/2014,04/13/2014 08:18:06 PM,04/13/2014 08:19:50 PM,04/13/2014 08:20:16 PM,04/13/2014 08:20:33 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Other,04/13/2014 08:22:53 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141030317-52 +152313977,B01,15088313,Structure Fire,08/19/2015,08/19/2015,08/19/2015 10:28:21 PM,08/19/2015 10:29:58 PM,08/19/2015 10:30:21 PM,08/19/2015 10:31:10 PM,08/19/2015 10:33:09 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Fire,08/19/2015 10:45:03 PM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,false,Alarm,1,CHIEF,5,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",152313977-B01 +141190147,AM26,14040120,Medical Incident,04/29/2014,04/29/2014,04/29/2014 10:34:07 AM,04/29/2014 10:34:28 AM,04/29/2014 10:35:12 AM,04/29/2014 10:36:20 AM,04/29/2014 10:41:07 AM,04/29/2014 10:50:34 AM,04/29/2014 11:00:30 AM,Code 2 Transport,04/29/2014 11:30:06 AM,0 Block of TURK ST,SAN FRANCISCO,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",141190147-AM26 +150073308,RC3,15002848,Medical Incident,01/07/2015,01/07/2015,01/07/2015 07:44:27 PM,01/07/2015 07:44:57 PM,01/07/2015 07:49:27 PM,01/07/2015 07:50:51 PM,01/07/2015 07:56:07 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Code 3 Transport,01/07/2015 08:58:39 PM,100 Block of TOPAZ WAY,San Francisco,94131,B06,26,8154,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,8,Glen Park,"(37.7415230498503, -122.436414447656)",150073308-RC3 +141773219,55,14061221,Medical Incident,06/26/2014,06/26/2014,06/26/2014 08:58:09 PM,06/26/2014 09:00:01 PM,06/26/2014 09:00:33 PM,06/26/2014 09:00:45 PM,06/26/2014 09:05:38 PM,06/26/2014 09:33:02 PM,06/26/2014 09:49:42 PM,Code 2 Transport,06/26/2014 10:13:50 PM,1300 Block of JONES ST,San Francisco,94109,B01,41,1466,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",141773219-55 +160940667,KM07,16037163,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:24:04 AM,04/03/2016 05:25:55 AM,04/03/2016 05:26:51 AM,04/03/2016 05:27:19 AM,04/03/2016 05:32:49 AM,04/03/2016 05:38:28 AM,04/03/2016 05:46:08 AM,Code 2 Transport,04/03/2016 06:25:48 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",160940667-KM07 +150561176,E23,15021367,Electrical Hazard,02/25/2015,02/25/2015,02/25/2015 10:10:56 AM,02/25/2015 10:13:43 AM,02/25/2015 10:14:22 AM,02/25/2015 10:15:24 AM,02/25/2015 10:21:49 AM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Fire,02/25/2015 10:56:53 AM,3600 Block of LAWTON ST,San Francisco,94122,B08,23,7632,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7568033599895, -122.501908526941)",150561176-E23 +150183091,RC1,15007252,Medical Incident,01/18/2015,01/18/2015,01/18/2015 09:12:34 PM,01/18/2015 09:12:34 PM,01/18/2015 09:15:23 PM,01/18/2015 09:15:23 PM,01/18/2015 09:16:14 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,Code 3 Transport,01/18/2015 09:23:08 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,A,E,3,true,Non Life-threatening,1,RESCUE CAPTAIN,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",150183091-RC1 +152143281,E28,15081625,Medical Incident,08/02/2015,08/02/2015,08/02/2015 09:20:27 PM,08/02/2015 09:21:29 PM,08/02/2015 09:22:11 PM,08/02/2015 09:23:24 PM,08/02/2015 09:32:02 PM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Code 2 Transport,08/02/2015 09:36:13 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",152143281-E28 +141130260,AM04,14038172,Medical Incident,04/23/2014,04/23/2014,04/23/2014 02:14:17 PM,04/23/2014 02:14:36 PM,04/23/2014 02:14:55 PM,04/23/2014 02:15:25 PM,04/23/2014 02:54:14 PM,04/23/2014 02:54:19 PM,04/23/2014 02:57:12 PM,Code 2 Transport,04/23/2014 03:13:43 PM,500 Block of LARKIN ST,SAN FRANCISCO,94102,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",141130260-AM04 +160972599,55,16038485,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:10:01 PM,04/06/2016 03:10:26 PM,04/06/2016 03:11:20 PM,04/06/2016 03:11:32 PM,04/06/2016 03:18:40 PM,04/06/2016 03:49:54 PM,04/06/2016 04:12:34 PM,Code 2 Transport,04/06/2016 04:44:32 PM,600 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7798433146326, -122.510504603354)",160972599-55 +151523342,E39,15058045,Medical Incident,06/01/2015,06/01/2015,06/01/2015 08:49:00 PM,06/01/2015 08:49:00 PM,06/01/2015 08:49:15 PM,06/01/2015 08:50:42 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Code 2 Transport,06/01/2015 08:51:32 PM,800 Block of ULLOA ST,San Francisco,94127,B08,39,8619,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7409217122072, -122.466013598224)",151523342-E39 +142173904,88,14075410,Medical Incident,08/05/2014,08/05/2014,08/05/2014 11:28:22 PM,08/05/2014 11:28:22 PM,08/05/2014 11:29:12 PM,08/05/2014 11:29:26 PM,08/05/2014 11:32:31 PM,08/05/2014 11:42:25 PM,08/06/2014 12:02:05 AM,Code 2 Transport,08/06/2014 12:37:19 AM,3600 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7811661910196, -122.458279197581)",142173904-88 +141392180,83,14047704,Medical Incident,05/19/2014,05/19/2014,05/19/2014 03:46:26 PM,05/19/2014 03:47:04 PM,05/19/2014 03:47:52 PM,05/19/2014 03:51:38 PM,05/19/2014 03:58:49 PM,05/19/2014 04:22:42 PM,05/19/2014 04:30:16 PM,Code 3 Transport,05/19/2014 05:28:19 PM,1400 Block of SOMERSET ST,San Francisco,94134,B10,44,6265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.71412193463, -122.402424966987)",141392180-83 +160973659,55,16038618,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:50:07 PM,04/06/2016 06:50:40 PM,04/06/2016 06:51:10 PM,04/06/2016 06:51:37 PM,04/06/2016 06:59:08 PM,04/06/2016 07:18:54 PM,04/06/2016 07:48:38 PM,Code 2 Transport,04/06/2016 08:27:01 PM,600 Block of FELTON ST,San Francisco,94134,B10,42,6342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7283065847283, -122.410990232945)",160973659-55 +141572712,E01,14054181,Medical Incident,06/06/2014,06/06/2014,06/06/2014 06:27:00 PM,06/06/2014 06:30:50 PM,06/06/2014 06:32:40 PM,06/06/2014 06:33:18 PM,06/06/2014 06:35:37 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,No Merit,06/06/2014 06:38:37 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141572712-E01 +150284007,E10,15010970,Alarms,01/28/2015,01/28/2015,01/28/2015 11:22:35 PM,01/28/2015 11:24:17 PM,01/28/2015 11:26:16 PM,01/28/2015 11:27:44 PM,01/28/2015 11:30:38 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Fire,01/29/2015 12:28:14 AM,2100 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Alarm,1,ENGINE,1,5,5,Japantown,"(37.7836030526522, -122.438694976295)",150284007-E10 +150550666,62,15021030,Medical Incident,02/24/2015,02/23/2015,02/24/2015 07:55:47 AM,02/24/2015 07:57:00 AM,02/24/2015 07:57:39 AM,02/24/2015 07:57:52 AM,02/24/2015 08:07:51 AM,02/24/2015 08:22:07 AM,02/24/2015 08:49:13 AM,Code 2 Transport,02/24/2015 09:07:09 AM,2900 Block of GRIFFITH ST,San Francisco,94124,B10,17,6642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7165268542588, -122.389583429416)",150550666-62 +160970244,64,16038264,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:39:48 AM,04/06/2016 02:40:29 AM,04/06/2016 02:42:35 AM,04/06/2016 02:42:35 AM,04/06/2016 02:43:55 AM,04/06/2016 02:53:24 AM,04/06/2016 03:02:54 AM,Code 2 Transport,04/06/2016 04:00:32 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160970244-64 +160971333,67,16038362,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:26:58 AM,04/06/2016 10:26:58 AM,04/06/2016 10:27:21 AM,04/06/2016 10:27:26 AM,04/06/2016 10:33:35 AM,04/06/2016 10:42:34 AM,04/06/2016 11:02:25 AM,Code 2 Transport,04/06/2016 11:05:55 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160971333-67 +160931949,KM02,16036889,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:05:28 PM,04/02/2016 02:06:38 PM,04/02/2016 02:29:43 PM,04/02/2016 02:29:43 PM,04/02/2016 02:38:43 PM,04/02/2016 02:47:11 PM,04/02/2016 03:09:14 PM,Code 2 Transport,04/02/2016 03:32:44 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7658666581108, -122.419678114931)",160931949-KM02 +160974487,63,16038703,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:36:19 PM,04/06/2016 10:36:19 PM,04/06/2016 10:36:41 PM,04/06/2016 10:36:53 PM,04/06/2016 10:47:17 PM,04/06/2016 11:16:45 PM,04/06/2016 11:41:21 PM,Code 2 Transport,04/07/2016 12:21:09 AM,200 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",160974487-63 +150061173,E24,15002219,Medical Incident,01/06/2015,01/06/2015,01/06/2015 10:24:48 AM,01/06/2015 10:26:57 AM,01/06/2015 10:28:11 AM,01/06/2015 10:28:39 AM,01/06/2015 10:34:18 AM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 2 Transport,01/06/2015 11:11:30 AM,500 Block of ALVARADO ST,San Francisco,94114,B06,24,5466,2,2,2,false,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7538112613871, -122.433213686451)",150061173-E24 +142501182,E21,14087138,Medical Incident,09/07/2014,09/07/2014,09/07/2014 10:06:28 AM,09/07/2014 10:07:18 AM,09/07/2014 10:07:34 AM,09/07/2014 10:08:57 AM,09/07/2014 10:11:12 AM,04/25/2016 01:15:14 PM,04/25/2016 01:15:14 PM,Code 2 Transport,09/07/2014 10:19:16 AM,HAYES ST/SHRADER ST,San Francisco,94117,B05,21,4543,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7731061328555, -122.452623843038)",142501182-E21 +152951959,E43,15113368,Medical Incident,10/22/2015,10/22/2015,10/22/2015 01:41:59 PM,10/22/2015 01:43:49 PM,10/22/2015 01:44:12 PM,10/22/2015 01:45:37 PM,10/22/2015 01:46:54 PM,04/25/2016 01:07:38 PM,04/25/2016 01:07:38 PM,Code 2 Transport,10/22/2015 01:54:29 PM,400 Block of ITALY AVE,San Francisco,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7168091113163, -122.435895554038)",152951959-E43 +152311178,RC1,15088058,Traffic Collision,08/19/2015,08/19/2015,08/19/2015 10:09:29 AM,08/19/2015 10:11:07 AM,08/19/2015 10:11:17 AM,08/19/2015 10:13:29 AM,08/19/2015 10:14:27 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Patient Declined Transport,08/19/2015 10:14:33 AM,TREAT AV/17TH ST,San Francisco,94110,B02,7,5245,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,9,Mission,"(37.76382320884, -122.41358757035)",152311178-RC1 +141272172,KM12,14043149,Medical Incident,05/07/2014,05/07/2014,05/07/2014 12:33:53 PM,05/07/2014 12:35:03 PM,05/07/2014 12:36:31 PM,05/07/2014 12:37:16 PM,05/07/2014 12:42:43 PM,05/07/2014 12:58:21 PM,05/07/2014 01:15:16 PM,Code 2 Transport,05/07/2014 01:50:34 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",141272172-KM12 +151103194,E12,15041749,Medical Incident,04/20/2015,04/20/2015,04/20/2015 07:02:52 PM,04/20/2015 07:03:44 PM,04/20/2015 07:04:17 PM,04/20/2015 07:04:56 PM,04/20/2015 07:07:05 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,Unable to Locate,04/20/2015 07:30:49 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",151103194-E12 +141842938,E13,14063800,Alarms,07/03/2014,07/03/2014,07/03/2014 07:24:58 PM,07/03/2014 07:26:02 PM,07/03/2014 07:27:40 PM,07/03/2014 07:28:38 PM,07/03/2014 07:31:52 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Fire,07/03/2014 07:35:43 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7904631779771, -122.405941469147)",141842938-E13 +152101224,83,15079959,Medical Incident,07/29/2015,07/29/2015,07/29/2015 10:45:05 AM,07/29/2015 10:45:05 AM,07/29/2015 10:45:18 AM,07/29/2015 10:45:31 AM,07/29/2015 10:48:55 AM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Patient Declined Transport,07/29/2015 11:01:21 AM,700 Block of POLK ST,San Francisco,94109,B02,3,3115,A,E,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838069204559, -122.41925042197)",152101224-83 +152710439,B08,15103691,Alarms,09/28/2015,09/27/2015,09/28/2015 05:05:54 AM,09/28/2015 05:06:56 AM,09/28/2015 05:07:05 AM,09/28/2015 05:08:40 AM,09/28/2015 05:12:06 AM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Fire,09/28/2015 05:22:38 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,false,Alarm,1,CHIEF,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",152710439-B08 +160980435,83,16038774,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:07:56 AM,04/07/2016 04:10:06 AM,04/07/2016 04:14:31 AM,04/07/2016 04:14:31 AM,04/07/2016 04:30:21 AM,04/07/2016 04:47:43 AM,04/07/2016 05:12:06 AM,Code 2 Transport,04/07/2016 05:45:39 AM,800 Block of NOE ST,San Francisco,94114,B06,24,5466,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7550209479479, -122.43228464622)",160980435-83 +150913830,KM07,15034782,Medical Incident,04/01/2015,04/01/2015,04/01/2015 10:27:18 PM,04/01/2015 10:27:18 PM,04/01/2015 10:28:18 PM,04/01/2015 10:28:54 PM,04/01/2015 10:33:23 PM,04/01/2015 10:45:15 PM,04/01/2015 10:52:33 PM,Code 2 Transport,04/01/2015 11:37:40 PM,2500 Block of VAN NESS AVE,San Francisco,94123,B04,16,3234,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7989967483908, -122.424247224738)",150913830-KM07 +160980854,83,16038814,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 08:11:49 AM,04/07/2016 08:13:40 AM,04/07/2016 08:14:32 AM,04/07/2016 08:14:55 AM,04/07/2016 08:38:11 AM,04/07/2016 08:48:03 AM,04/07/2016 09:18:07 AM,Code 2 Transport,04/07/2016 10:03:06 AM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,2,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",160980854-83 +151414035,D2,15053773,Structure Fire,05/21/2015,05/21/2015,05/21/2015 10:29:58 PM,05/21/2015 10:30:38 PM,05/21/2015 10:31:03 PM,05/21/2015 10:32:30 PM,05/21/2015 10:42:41 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 11:14:05 PM,1600 Block of 48TH AVE,San Francisco,94122,B08,23,7724,3,3,3,false,Fire,1,CHIEF,9,8,4,Sunset/Parkside,"(37.7556706107482, -122.507670205519)",151414035-D2 +161003234,AM14,16039947,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:39:34 PM,04/09/2016 09:39:50 PM,04/09/2016 09:40:44 PM,04/09/2016 09:41:29 PM,04/09/2016 09:42:07 PM,04/09/2016 10:06:35 PM,04/09/2016 10:15:08 PM,Code 3 Transport,04/09/2016 11:06:16 PM,19TH ST/MISSION ST,San Francisco,94110,B06,7,5433,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",161003234-AM14 +143022891,KM04,14106715,Medical Incident,10/29/2014,10/29/2014,10/29/2014 06:42:08 PM,10/29/2014 06:42:38 PM,10/29/2014 06:43:22 PM,10/29/2014 06:44:09 PM,10/29/2014 06:52:46 PM,10/29/2014 07:04:51 PM,10/29/2014 07:07:55 PM,Code 3 Transport,10/29/2014 07:48:08 PM,0 Block of CHURCH ST,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",143022891-KM04 +150650080,E11,15024685,Medical Incident,03/06/2015,03/05/2015,03/06/2015 12:33:34 AM,03/06/2015 12:35:14 AM,03/06/2015 12:35:33 AM,03/06/2015 12:37:12 AM,03/06/2015 12:38:44 AM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Code 2 Transport,03/06/2015 12:54:59 AM,3200 Block of MISSION ST,San Francisco,94110,B06,11,5624,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",150650080-E11 +151973024,T01,15075238,Structure Fire,07/16/2015,07/16/2015,07/16/2015 06:58:57 PM,07/16/2015 06:58:57 PM,07/16/2015 06:59:09 PM,07/16/2015 07:00:52 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Fire,07/16/2015 07:02:49 PM,6TH ST/HARRISON ST,San Francisco,94103,B03,8,2254,3,3,3,true,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7772727011897, -122.404070256526)",151973024-T01 +160931354,54,16036818,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:14:56 AM,04/02/2016 11:17:44 AM,04/02/2016 11:37:16 AM,04/02/2016 11:37:26 AM,04/02/2016 11:46:31 AM,04/02/2016 12:03:54 PM,04/02/2016 12:22:09 PM,Code 2 Transport,04/02/2016 12:48:46 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160931354-54 +143440120,82,14122180,Medical Incident,12/10/2014,12/09/2014,12/10/2014 12:59:30 AM,12/10/2014 01:01:37 AM,12/10/2014 01:01:51 AM,12/10/2014 01:02:22 AM,12/10/2014 01:05:56 AM,12/10/2014 01:20:47 AM,12/10/2014 01:42:27 AM,Code 2 Transport,12/10/2014 02:09:39 AM,OCEAN AV/PLYMOUTH AV,San Francisco,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",143440120-82 +142042341,E23,14070664,Medical Incident,07/23/2014,07/23/2014,07/23/2014 02:58:54 PM,07/23/2014 02:59:33 PM,07/23/2014 03:00:09 PM,07/23/2014 03:02:18 PM,07/23/2014 03:02:18 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Code 2 Transport,07/23/2014 03:19:26 PM,1900 Block of 47TH AVE,San Francisco,94116,B08,23,7715,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7501226485047, -122.506214055721)",142042341-E23 +151063656,E48,15040235,Vehicle Fire,04/16/2015,04/16/2015,04/16/2015 08:42:13 PM,04/16/2015 08:43:45 PM,04/16/2015 08:44:08 PM,04/16/2015 08:45:24 PM,04/16/2015 08:52:54 PM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,Unable to Locate,04/16/2015 08:58:47 PM,0 Block of 5TH ST,San Francisco,94103,B03,48,2951,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7831860531538, -122.407149119811)",151063656-E48 +142854005,T10,14100640,Alarms,10/12/2014,10/12/2014,10/12/2014 10:38:23 PM,10/12/2014 10:41:10 PM,10/12/2014 10:43:02 PM,10/12/2014 10:44:34 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/12/2014 10:48:53 PM,3600 Block of FILLMORE ST,San Francisco,94123,B04,16,3556,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8040008898331, -122.436811214512)",142854005-T10 +152233624,58,15085142,Medical Incident,08/11/2015,08/11/2015,08/11/2015 08:23:45 PM,08/11/2015 08:24:05 PM,08/11/2015 08:24:15 PM,08/11/2015 08:24:29 PM,08/11/2015 08:42:52 PM,08/11/2015 08:52:44 PM,08/11/2015 09:13:28 PM,Code 2 Transport,08/11/2015 10:06:32 PM,GREAT HY/MORAGA ST,San Francisco,94122,B08,23,7724,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7546917355168, -122.508679283459)",152233624-58 +141140139,87,14038438,Medical Incident,04/24/2014,04/24/2014,04/24/2014 10:22:26 AM,04/24/2014 10:23:07 AM,04/24/2014 10:26:09 AM,04/24/2014 10:26:09 AM,04/24/2014 10:33:55 AM,04/24/2014 10:55:06 AM,04/24/2014 11:07:00 AM,Code 2 Transport,04/24/2014 11:51:16 AM,400 Block of TURK ST,SAN FRANCISCO,94102,B02,3,1554,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",141140139-87 +143160227,70,14111780,Medical Incident,11/12/2014,11/11/2014,11/12/2014 02:51:15 AM,11/12/2014 02:53:19 AM,11/12/2014 03:53:11 AM,11/12/2014 03:53:11 AM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Code 2 Transport,11/12/2014 03:57:19 AM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,5,Western Addition,"(37.7815345081004, -122.428135307501)",143160227-70 +152881191,RC2,15110599,Medical Incident,10/15/2015,10/15/2015,10/15/2015 10:01:16 AM,10/15/2015 10:02:02 AM,10/15/2015 10:03:07 AM,10/15/2015 10:03:23 AM,10/15/2015 10:07:34 AM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Code 2 Transport,10/15/2015 10:16:41 AM,400 Block of 40TH AVE,San Francisco,94121,B07,34,7256,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7803103617533, -122.500942876496)",152881191-RC2 +143261427,T01,14115465,Alarms,11/22/2014,11/22/2014,11/22/2014 11:20:16 AM,11/22/2014 11:21:34 AM,11/22/2014 11:23:53 AM,11/22/2014 11:23:53 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Fire,11/22/2014 11:28:15 AM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,5,3,6,South of Market,"(37.7810688918781, -122.407387172098)",143261427-T01 +160971797,84,16038403,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:14:30 PM,04/06/2016 12:16:49 PM,04/06/2016 12:17:14 PM,04/06/2016 12:17:39 PM,04/06/2016 12:37:37 PM,04/06/2016 01:05:54 PM,04/06/2016 01:29:40 PM,Code 2 Transport,04/06/2016 02:29:18 PM,300 Block of ARBALLO DR,San Francisco,94132,B08,19,8582,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",160971797-84 +151152212,E41,15043513,Structure Fire,04/25/2015,04/25/2015,04/25/2015 03:37:01 PM,04/25/2015 03:39:22 PM,04/25/2015 03:39:36 PM,04/25/2015 03:40:45 PM,04/25/2015 03:42:17 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Fire,04/25/2015 03:51:08 PM,HYDE ST/PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",151152212-E41 +153431492,57,15131977,Medical Incident,12/09/2015,12/09/2015,12/09/2015 11:19:56 AM,12/09/2015 11:21:11 AM,12/09/2015 11:22:12 AM,12/09/2015 11:25:47 AM,12/09/2015 11:54:36 AM,12/09/2015 11:54:37 AM,12/09/2015 12:01:26 PM,Code 2 Transport,12/09/2015 01:16:47 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",153431492-57 +152220394,AM24,15084467,Medical Incident,08/10/2015,08/09/2015,08/10/2015 05:07:25 AM,08/10/2015 05:07:25 AM,08/10/2015 05:07:49 AM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Cancelled,08/10/2015 05:08:50 AM,1700 Block of LINCOLN WAY,San Francisco,94122,B08,22,7367,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,4,Inner Sunset,"(37.7653663960044, -122.476737311837)",152220394-AM24 +151101572,RC3,15041598,Medical Incident,04/20/2015,04/20/2015,04/20/2015 11:59:06 AM,04/20/2015 11:59:54 AM,04/20/2015 12:03:19 PM,04/20/2015 12:04:17 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,Code 2 Transport,04/20/2015 12:10:06 PM,2900 Block of GREAT HWY,San Francisco,94132,B08,19,8712,2,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,3,8,7,Lakeshore,"(37.7297644793355, -122.506576531064)",151101572-RC3 +151812040,B01,15069124,Medical Incident,06/30/2015,06/30/2015,06/30/2015 02:43:52 PM,06/30/2015 02:43:52 PM,06/30/2015 02:44:01 PM,06/30/2015 02:44:21 PM,06/30/2015 02:58:21 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,Fire,06/30/2015 03:13:07 PM,WEBSTER ST/EDDY ST,San Francisco,94115,B04,5,3515,2,2,2,false,Non Life-threatening,1,CHIEF,2,5,5,Western Addition,"(37.7816455834376, -122.430609199134)",151812040-B01 +153441328,E13,15132376,Traffic Collision,12/10/2015,12/10/2015,12/10/2015 10:38:24 AM,12/10/2015 10:39:39 AM,12/10/2015 10:40:44 AM,12/10/2015 10:40:58 AM,12/10/2015 10:46:00 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Cancelled,12/10/2015 10:56:41 AM,900 Block of THE EMBARCADERO,San Francisco,94111,B01,13,923,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",153441328-E13 +160942104,54,16037287,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:26:48 PM,04/03/2016 02:26:48 PM,04/03/2016 02:27:13 PM,04/03/2016 02:27:27 PM,04/03/2016 02:48:15 PM,04/03/2016 03:12:00 PM,04/03/2016 03:38:12 PM,Code 2 Transport,04/03/2016 04:19:45 PM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160942104-54 +153262781,RS2,15125603,Structure Fire,11/22/2015,11/22/2015,11/22/2015 06:25:04 PM,11/22/2015 06:25:57 PM,11/22/2015 06:26:23 PM,11/22/2015 06:27:45 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,Fire,11/22/2015 06:28:14 PM,3200 Block of 18TH ST,San Francisco,94110,B02,7,5424,3,3,3,false,Alarm,1,RESCUE SQUAD,11,2,9,Mission,"(37.7621213524354, -122.415543548355)",153262781-RS2 +160930627,65,16036731,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:50:36 AM,04/02/2016 06:51:31 AM,04/02/2016 06:52:44 AM,04/02/2016 06:52:51 AM,04/02/2016 06:57:28 AM,04/02/2016 07:22:08 AM,04/02/2016 07:45:18 AM,Code 2 Transport,04/02/2016 08:07:07 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160930627-65 +161001504,KM09,16039746,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:23:19 PM,04/09/2016 12:23:36 PM,04/09/2016 12:23:49 PM,04/09/2016 12:24:38 PM,04/09/2016 12:28:26 PM,04/09/2016 12:55:17 PM,04/09/2016 01:01:32 PM,Code 3 Transport,04/09/2016 01:50:59 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",161001504-KM09 +142670650,E35,14093388,Outside Fire,09/24/2014,09/23/2014,09/24/2014 07:08:43 AM,09/24/2014 07:10:40 AM,09/24/2014 07:10:56 AM,09/24/2014 07:12:32 AM,09/24/2014 07:15:05 AM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/24/2014 09:51:23 AM,200 Block of MAIN ST,San Francisco,94105,B03,35,2117,3,3,3,true,Fire,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7900295956883, -122.392583899031)",142670650-E35 +153341342,KM11,15128378,Medical Incident,11/30/2015,11/30/2015,11/30/2015 11:33:00 AM,11/30/2015 11:33:39 AM,11/30/2015 11:33:52 AM,11/30/2015 11:34:31 AM,11/30/2015 11:40:23 AM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,No Merit,11/30/2015 11:42:53 AM,200 Block of KING ST,San Francisco,94107,B03,8,2171,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",153341342-KM11 +152312457,E02,15088184,Traffic Collision,08/19/2015,08/19/2015,08/19/2015 03:31:58 PM,08/19/2015 03:32:38 PM,08/19/2015 03:32:53 PM,08/19/2015 03:34:26 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Code 3 Transport,08/19/2015 03:40:47 PM,1400 Block of PACIFIC AVE,San Francisco,94109,B01,41,1565,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Russian Hill,"(37.7954660831968, -122.418715545845)",152312457-E02 +143523474,E34,14125905,Medical Incident,12/18/2014,12/18/2014,12/18/2014 07:52:43 PM,12/18/2014 07:54:19 PM,12/18/2014 07:57:13 PM,12/18/2014 07:58:01 PM,12/18/2014 07:59:11 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Code 2 Transport,12/18/2014 08:18:29 PM,0 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7264,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7796028187333, -122.503522163162)",143523474-E34 +142772591,AR1,14097460,Structure Fire,10/04/2014,10/04/2014,10/04/2014 04:02:25 PM,10/04/2014 04:02:59 PM,10/04/2014 04:28:06 PM,10/04/2014 04:28:06 PM,10/04/2014 04:38:34 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Fire,10/04/2014 04:58:55 PM,1500 Block of WALLACE AVE,San Francisco,94124,B10,17,6546,3,3,3,false,Fire,1,INVESTIGATION,8,10,10,Bayview Hunters Point,"(37.7269904434139, -122.390132474192)",142772591-AR1 +160930139,79,16036683,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:50:41 AM,04/02/2016 12:52:36 AM,04/02/2016 12:52:57 AM,04/02/2016 12:53:08 AM,04/02/2016 12:59:54 AM,04/02/2016 01:08:45 AM,04/02/2016 01:36:11 AM,Code 2 Transport,04/02/2016 01:53:47 AM,100 Block of 28TH ST,San Francisco,94131,B06,11,5562,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7454218861486, -122.425685856124)",160930139-79 +151812905,86,15069216,Medical Incident,06/30/2015,06/30/2015,06/30/2015 06:29:33 PM,06/30/2015 06:29:33 PM,06/30/2015 06:29:46 PM,06/30/2015 06:29:54 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,No Merit,06/30/2015 06:37:40 PM,19TH AV/JUDAH ST,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7616993757061, -122.477010885827)",151812905-86 +152421029,FB1,15092245,Outside Fire,08/30/2015,08/30/2015,08/30/2015 08:54:33 AM,08/30/2015 08:54:33 AM,08/30/2015 08:54:57 AM,08/30/2015 08:56:02 AM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 08:59:08 AM,400 Block of THE EMBARCADERO,San Francisco,94111,B01,13,905,3,3,3,false,Alarm,1,SUPPORT,5,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",152421029-FB1 +142293681,RS1,14079744,Structure Fire,08/17/2014,08/17/2014,08/17/2014 10:45:21 PM,08/17/2014 10:46:34 PM,08/17/2014 10:47:01 PM,08/17/2014 10:48:09 PM,08/17/2014 10:53:40 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Fire,08/17/2014 10:55:06 PM,1100 Block of BROADWAY,San Francisco,94109,B01,41,1534,3,3,3,false,Alarm,1,RESCUE SQUAD,6,1,3,Nob Hill,"(37.7967543439705, -122.416027111494)",142293681-RS1 +141913051,E07,14066315,Medical Incident,07/10/2014,07/10/2014,07/10/2014 07:21:52 PM,07/10/2014 07:23:17 PM,07/10/2014 07:24:12 PM,07/10/2014 07:24:54 PM,07/10/2014 07:27:38 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Other,07/10/2014 07:53:02 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",141913051-E07 +141993733,RC1,14069086,Medical Incident,07/18/2014,07/18/2014,07/18/2014 11:20:24 PM,07/18/2014 11:22:54 PM,07/18/2014 11:23:43 PM,07/18/2014 11:26:27 PM,07/18/2014 11:28:52 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,No Merit,07/18/2014 11:38:00 PM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",141993733-RC1 +151451634,52,15055164,Medical Incident,05/25/2015,05/25/2015,05/25/2015 01:32:44 PM,05/25/2015 01:33:57 PM,05/25/2015 01:35:23 PM,05/25/2015 01:35:36 PM,05/25/2015 01:44:18 PM,05/25/2015 01:56:55 PM,05/25/2015 02:03:33 PM,Code 2 Transport,05/25/2015 02:33:53 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",151451634-52 +153251267,E01,15125065,Traffic Collision,11/21/2015,11/21/2015,11/21/2015 10:31:56 AM,11/21/2015 10:32:29 AM,11/21/2015 10:36:40 AM,11/21/2015 10:36:40 AM,11/21/2015 10:38:11 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Code 3 Transport,11/21/2015 11:19:16 AM,NEW MONTGOMERY ST/JESSIE ST,San Francisco,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7878896127727, -122.401043044615)",153251267-E01 +161002192,68,16039827,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:11:42 PM,04/09/2016 04:12:42 PM,04/09/2016 04:13:01 PM,04/09/2016 04:13:23 PM,04/09/2016 04:19:45 PM,04/09/2016 04:29:01 PM,04/09/2016 04:37:50 PM,Code 2 Transport,04/09/2016 05:09:51 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",161002192-68 +160931610,75,16036843,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:27:55 PM,04/02/2016 12:28:25 PM,04/02/2016 12:29:15 PM,04/02/2016 12:29:24 PM,04/02/2016 12:47:04 PM,04/02/2016 12:56:07 PM,04/02/2016 01:01:32 PM,Code 3 Transport,04/02/2016 02:07:22 PM,0 Block of SCOTIA AVE,San Francisco,94124,B10,42,6363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7337135883349, -122.401319078602)",160931610-75 +143263091,75,14115616,Medical Incident,11/22/2014,11/22/2014,11/22/2014 06:47:25 PM,11/22/2014 06:49:20 PM,11/22/2014 06:50:20 PM,11/22/2014 06:51:09 PM,11/22/2014 06:57:30 PM,11/22/2014 07:21:25 PM,11/22/2014 07:29:42 PM,Code 2 Transport,11/22/2014 08:17:08 PM,1900 Block of UNION ST,San Francisco,94123,B04,16,3443,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7977145786189, -122.431009192575)",143263091-75 +142810382,B08,14098721,Alarms,10/08/2014,10/07/2014,10/08/2014 05:08:40 AM,10/08/2014 05:10:49 AM,10/08/2014 05:12:48 AM,10/08/2014 05:14:24 AM,10/08/2014 05:16:52 AM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 09:35:28 AM,1200 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,3,3,3,false,Alarm,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",142810382-B08 +142820255,55,14099116,Medical Incident,10/09/2014,10/08/2014,10/09/2014 02:31:06 AM,10/09/2014 02:32:37 AM,10/09/2014 02:33:11 AM,10/09/2014 02:33:50 AM,10/09/2014 02:42:08 AM,10/09/2014 02:58:57 AM,10/09/2014 03:25:49 AM,Code 2 Transport,10/09/2014 03:42:32 AM,SAN BRUNO AV/MANSELL ST,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7215343997982, -122.401074132147)",142820255-55 +152681210,E01,15102626,Alarms,09/25/2015,09/25/2015,09/25/2015 10:10:56 AM,09/25/2015 10:12:11 AM,09/25/2015 10:12:47 AM,09/25/2015 10:14:39 AM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 10:24:31 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,3,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",152681210-E01 +142431824,E36,14084656,Medical Incident,08/31/2014,08/31/2014,08/31/2014 02:12:09 PM,08/31/2014 02:12:34 PM,08/31/2014 02:12:55 PM,08/31/2014 02:14:26 PM,08/31/2014 02:21:10 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Code 2 Transport,08/31/2014 02:21:42 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",142431824-E36 +153060866,KM13,15117525,Medical Incident,11/02/2015,11/02/2015,11/02/2015 08:47:53 AM,11/02/2015 08:49:43 AM,11/02/2015 08:51:14 AM,11/02/2015 08:51:14 AM,11/02/2015 09:12:09 AM,11/02/2015 09:41:47 AM,11/02/2015 10:11:05 AM,Code 2 Transport,11/02/2015 10:52:21 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",153060866-KM13 +143433143,60,14122055,Medical Incident,12/09/2014,12/09/2014,12/09/2014 05:47:20 PM,12/09/2014 05:47:20 PM,12/09/2014 05:47:20 PM,12/09/2014 05:47:20 PM,12/09/2014 05:47:20 PM,12/09/2014 05:53:03 PM,12/09/2014 06:20:02 PM,Code 2 Transport,12/09/2014 06:35:40 PM,0 Block of 6TH ST,San Francisco,94103,B99,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",143433143-60 +142220510,84,14076948,Medical Incident,08/10/2014,08/09/2014,08/10/2014 03:59:05 AM,08/10/2014 04:00:29 AM,08/10/2014 04:00:46 AM,08/10/2014 04:01:35 AM,08/10/2014 04:06:04 AM,08/10/2014 05:18:43 AM,08/10/2014 05:56:03 AM,Code 2 Transport,08/10/2014 06:29:54 AM,2800 Block of ANZA ST,San Francisco,94121,B07,14,7165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7783778138153, -122.47869953508)",142220510-84 +160931560,71,16036835,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:13:48 PM,04/02/2016 12:14:42 PM,04/02/2016 12:15:26 PM,04/02/2016 12:16:26 PM,04/02/2016 12:19:25 PM,04/02/2016 12:36:31 PM,04/02/2016 12:47:04 PM,Code 2 Transport,04/02/2016 01:08:20 PM,3100 Block of SACRAMENTO ST,San Francisco,94115,B04,10,4264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7884127178988, -122.444753541117)",160931560-71 +150451175,E23,15017438,Medical Incident,02/14/2015,02/14/2015,02/14/2015 09:54:38 AM,02/14/2015 09:56:57 AM,02/14/2015 09:57:13 AM,02/14/2015 09:57:35 AM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,No Merit,02/14/2015 10:06:06 AM,40TH AV/JUDAH ST,San Francisco,94122,B08,23,7626,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7607086067608, -122.499496634076)",150451175-E23 +152190120,B03,15083228,Alarms,08/07/2015,08/06/2015,08/07/2015 12:42:54 AM,08/07/2015 12:44:14 AM,08/07/2015 12:44:22 AM,08/07/2015 12:46:12 AM,08/07/2015 12:49:33 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Fire,08/07/2015 12:50:52 AM,300 Block of SPEAR ST,San Francisco,94105,B03,35,2113,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7894150834446, -122.390249078414)",152190120-B03 +143112341,B07,14110182,Structure Fire,11/07/2014,11/07/2014,11/07/2014 03:38:21 PM,11/07/2014 03:39:12 PM,11/07/2014 03:39:41 PM,11/07/2014 03:40:22 PM,11/07/2014 03:42:09 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Fire,11/07/2014 03:45:51 PM,300 Block of 5TH AVE,San Francisco,94118,B07,31,7124,3,3,3,false,Alarm,1,CHIEF,1,7,1,Inner Richmond,"(37.7820328555271, -122.463211509933)",143112341-B07 +160982130,85,16038941,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:55:56 PM,04/07/2016 01:56:12 PM,04/07/2016 01:56:59 PM,04/07/2016 01:57:07 PM,04/07/2016 02:00:20 PM,04/07/2016 02:14:31 PM,04/07/2016 02:40:58 PM,Code 3 Transport,04/07/2016 03:16:58 PM,1300 Block of 25TH AVE,San Francisco,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7623510063353, -122.483419246846)",160982130-85 +161001129,55,16039700,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:19:01 AM,04/09/2016 10:19:12 AM,04/09/2016 10:21:42 AM,04/09/2016 10:21:42 AM,04/09/2016 10:21:42 AM,04/09/2016 10:33:20 AM,04/09/2016 11:01:31 AM,Code 2 Transport,04/09/2016 11:54:13 AM,BUSH ST/LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",161001129-55 +161000172,60,16039574,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:08:12 AM,04/09/2016 01:08:12 AM,04/09/2016 01:08:27 AM,04/09/2016 01:08:37 AM,04/09/2016 01:12:32 AM,04/09/2016 01:28:29 AM,04/09/2016 01:46:08 AM,Code 2 Transport,04/09/2016 02:36:10 AM,4200 Block of FOLSOM ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7339951018567, -122.413826799773)",161000172-60 +160973458,64,16038590,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:05:05 PM,04/06/2016 06:06:49 PM,04/06/2016 06:07:33 PM,04/06/2016 06:07:58 PM,04/06/2016 06:15:23 PM,04/06/2016 06:27:43 PM,04/06/2016 06:58:07 PM,Code 2 Transport,04/06/2016 07:27:02 PM,CARL ST/HILLWAY AV,San Francisco,94117,B05,12,5145,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7649324615306, -122.456759007543)",160973458-64 +151480031,E21,15056165,Medical Incident,05/28/2015,05/27/2015,05/28/2015 12:15:53 AM,05/28/2015 12:18:21 AM,05/28/2015 12:19:15 AM,05/28/2015 12:20:41 AM,05/28/2015 12:23:25 AM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Code 2 Transport,05/28/2015 01:30:53 AM,COLE ST/FELL ST,San Francisco,94117,B05,21,4534,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Golden Gate Park,"(37.7723676628179, -122.450786707128)",151480031-E21 +151003704,E02,15038040,Structure Fire,04/10/2015,04/10/2015,04/10/2015 10:20:35 PM,04/10/2015 10:21:05 PM,04/10/2015 10:22:05 PM,04/10/2015 10:22:43 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Fire,04/10/2015 10:40:16 PM,500 Block of SUTTER ST,San Francisco,94108,B01,3,1412,3,3,3,true,Fire,1,ENGINE,10,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",151003704-E02 +150392131,RC3,15015221,Medical Incident,02/08/2015,02/08/2015,02/08/2015 02:48:22 PM,02/08/2015 02:48:33 PM,02/08/2015 02:50:18 PM,02/08/2015 02:51:58 PM,02/08/2015 02:52:59 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Code 2 Transport,02/08/2015 03:10:42 PM,300 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5452,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,8,Castro/Upper Market,"(37.7586437839521, -122.431292238826)",150392131-RC3 +160970127,AM24,16038248,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:59:25 AM,04/06/2016 01:01:38 AM,04/06/2016 01:01:44 AM,04/06/2016 01:02:06 AM,04/06/2016 01:07:23 AM,04/06/2016 01:37:18 AM,04/06/2016 01:51:11 AM,Code 2 Transport,04/06/2016 02:12:06 AM,3100 Block of 21ST ST,San Francisco,94110,B06,7,5455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7570790190504, -122.417260520587)",160970127-AM24 +152562099,83,15097947,Medical Incident,09/13/2015,09/13/2015,09/13/2015 02:58:56 PM,09/13/2015 02:59:37 PM,09/13/2015 02:59:51 PM,09/13/2015 03:00:01 PM,09/13/2015 03:04:14 PM,09/13/2015 03:15:47 PM,09/13/2015 03:25:43 PM,Code 2 Transport,09/13/2015 04:07:15 PM,12TH AV/JUDAH ST,San Francisco,94122,B08,22,7345,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,5,Inner Sunset,"(37.7620341085148, -122.469391825088)",152562099-83 +152953875,88,15113550,Medical Incident,10/22/2015,10/22/2015,10/22/2015 11:08:48 PM,10/22/2015 11:09:42 PM,10/22/2015 11:10:10 PM,10/22/2015 11:10:19 PM,10/22/2015 11:13:44 PM,10/22/2015 11:20:28 PM,10/22/2015 11:27:08 PM,Code 2 Transport,10/22/2015 11:46:52 PM,1300 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",152953875-88 +143292483,E12,14116724,Medical Incident,11/25/2014,11/25/2014,11/25/2014 04:00:46 PM,11/25/2014 04:01:13 PM,11/25/2014 04:03:11 PM,11/25/2014 04:04:36 PM,11/25/2014 04:08:50 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Against Medical Advice,11/25/2014 04:28:36 PM,1400 Block of 24TH AVE,San Francisco,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7605270219002, -122.48235570811)",143292483-E12 +160962959,61,16038111,Traffic Collision,04/05/2016,04/05/2016,04/05/2016 05:22:12 PM,04/05/2016 05:22:37 PM,04/05/2016 05:22:56 PM,04/05/2016 05:23:08 PM,04/05/2016 05:30:20 PM,04/05/2016 05:57:43 PM,04/05/2016 06:20:17 PM,Code 2 Transport,04/05/2016 06:36:08 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160962959-61 +142893629,E35,14102017,Medical Incident,10/16/2014,10/16/2014,10/16/2014 08:54:14 PM,10/16/2014 08:56:26 PM,10/16/2014 08:59:23 PM,10/16/2014 09:00:06 PM,10/16/2014 09:02:00 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/16/2014 09:16:25 PM,300 Block of HARRISON ST,San Francisco,94105,B03,35,2123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7870714019354, -122.391567493465)",142893629-E35 +151853797,E11,15070769,Medical Incident,07/04/2015,07/04/2015,07/04/2015 10:02:44 PM,07/04/2015 10:03:26 PM,07/04/2015 10:04:04 PM,07/04/2015 10:05:00 PM,07/04/2015 10:09:19 PM,04/25/2016 01:09:39 PM,04/25/2016 01:09:39 PM,Code 2 Transport,07/04/2015 10:32:41 PM,200 Block of ELSIE ST,San Francisco,94110,B06,32,5652,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7404260062385, -122.419364252727)",151853797-E11 +153091565,T02,15118719,Administrative,11/05/2015,11/05/2015,11/05/2015 11:35:49 AM,11/05/2015 11:36:09 AM,11/05/2015 11:36:54 AM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,Fire,11/05/2015 11:37:24 AM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",153091565-T02 +152062682,74,15078585,Traffic Collision,07/25/2015,07/25/2015,07/25/2015 05:16:32 PM,07/25/2015 05:16:32 PM,07/25/2015 05:16:39 PM,07/25/2015 05:16:51 PM,07/25/2015 05:24:27 PM,07/25/2015 05:37:47 PM,07/25/2015 05:47:45 PM,Code 2 Transport,07/25/2015 06:01:47 PM,4200 Block of MISSION ST,San Francisco,94112,B09,32,6113,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7289192734481, -122.430951550919)",152062682-74 +151591886,E41,15060746,Medical Incident,06/08/2015,06/08/2015,06/08/2015 01:14:54 PM,06/08/2015 01:17:58 PM,06/08/2015 01:30:16 PM,06/08/2015 01:31:41 PM,06/08/2015 01:41:42 PM,04/25/2016 01:10:07 PM,04/25/2016 01:10:07 PM,Patient Declined Transport,06/08/2015 01:42:51 PM,1700 Block of POLK ST,San Francisco,94109,B04,41,3124,2,2,2,false,Non Life-threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7928292738954, -122.421073088422)",151591886-E41 +150101319,E36,15003911,Structure Fire,01/10/2015,01/10/2015,01/10/2015 11:27:25 AM,01/10/2015 11:27:25 AM,01/10/2015 11:27:48 AM,01/10/2015 11:29:17 AM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,Fire,01/10/2015 11:31:25 AM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",150101319-E36 +160930914,88,16036766,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:59:55 AM,04/02/2016 09:01:38 AM,04/02/2016 09:01:45 AM,04/02/2016 09:01:55 AM,04/02/2016 09:08:39 AM,04/02/2016 09:23:34 AM,04/02/2016 09:41:16 AM,Code 2 Transport,04/02/2016 10:09:17 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160930914-88 +142532365,53,14088347,Medical Incident,09/10/2014,09/10/2014,09/10/2014 03:13:16 PM,09/10/2014 03:14:55 PM,09/10/2014 03:15:59 PM,09/10/2014 03:16:08 PM,09/10/2014 03:25:30 PM,09/10/2014 03:50:26 PM,09/10/2014 04:14:28 PM,Code 2 Transport,09/10/2014 04:39:18 PM,100 Block of CAINE AVE,San Francisco,94112,B09,33,8325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7157481523614, -122.451744181527)",142532365-53 +150360381,T15,15013722,Citizen Assist / Service Call,02/05/2015,02/04/2015,02/05/2015 04:49:08 AM,02/05/2015 04:51:02 AM,02/05/2015 04:51:29 AM,02/05/2015 04:55:59 AM,02/05/2015 04:59:23 AM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Code 2 Transport,02/05/2015 05:28:58 AM,100 Block of ASHTON AVE,San Francisco,94112,B09,15,8434,3,3,3,true,Alarm,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7208520519158, -122.462190499132)",150360381-T15 +142633260,52,14092153,Medical Incident,09/20/2014,09/20/2014,09/20/2014 08:25:08 PM,09/20/2014 08:30:34 PM,09/20/2014 08:53:44 PM,09/20/2014 08:53:44 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,No Merit,09/20/2014 08:53:52 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",142633260-52 +143571601,AM02,14127752,Medical Incident,12/23/2014,12/23/2014,12/23/2014 12:12:40 PM,12/23/2014 12:12:40 PM,12/23/2014 12:13:01 PM,12/23/2014 12:14:02 PM,12/23/2014 12:25:33 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Cancelled,12/23/2014 12:35:18 PM,JUDAH ST/25TH AV,San Francisco,94122,B08,22,7453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.761417280216, -122.483423100639)",143571601-AM02 +160962026,KM05,16038036,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:42:37 PM,04/05/2016 01:46:17 PM,04/05/2016 01:46:44 PM,04/05/2016 01:47:43 PM,04/05/2016 01:51:10 PM,04/05/2016 02:17:43 PM,04/05/2016 02:44:33 PM,Code 2 Transport,04/05/2016 03:45:06 PM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",160962026-KM05 +151840693,E22,15070147,Medical Incident,07/03/2015,07/02/2015,07/03/2015 07:31:54 AM,07/03/2015 07:31:54 AM,07/03/2015 07:32:19 AM,07/03/2015 07:33:49 AM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Patient Declined Transport,07/03/2015 07:36:39 AM,LINCOLN WY/9TH AV,San Francisco,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",151840693-E22 +160941233,52,16037214,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:09:19 AM,04/03/2016 10:14:40 AM,04/03/2016 10:15:14 AM,04/03/2016 10:15:23 AM,04/03/2016 10:21:36 AM,04/03/2016 11:00:57 AM,04/03/2016 11:15:46 AM,Code 2 Transport,04/03/2016 11:46:42 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160941233-52 +160940143,KM03,16037108,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:47:03 AM,04/03/2016 12:47:03 AM,04/03/2016 01:06:35 AM,04/03/2016 01:07:02 AM,04/03/2016 01:18:52 AM,04/03/2016 01:21:00 AM,04/03/2016 01:40:17 AM,Code 2 Transport,04/03/2016 02:01:12 AM,POWELL ST/ELLIS ST,San Francisco,94102,B03,1,1364,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",160940143-KM03 +151973426,E05,15075270,Medical Incident,07/16/2015,07/16/2015,07/16/2015 08:58:53 PM,07/16/2015 09:00:45 PM,07/16/2015 09:01:15 PM,07/16/2015 09:02:33 PM,07/16/2015 09:15:09 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,No Merit,07/16/2015 09:15:40 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",151973426-E05 +143622678,AM20,14129615,Medical Incident,12/28/2014,12/28/2014,12/28/2014 06:55:42 PM,12/28/2014 06:58:27 PM,12/28/2014 06:59:12 PM,12/28/2014 06:59:50 PM,12/28/2014 07:08:26 PM,12/28/2014 07:26:26 PM,12/28/2014 07:57:14 PM,Code 2 Transport,12/28/2014 08:18:32 PM,1400 Block of HALIBUT CT,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",143622678-AM20 +150781311,56,15029856,Medical Incident,03/19/2015,03/19/2015,03/19/2015 10:15:18 AM,03/19/2015 10:16:33 AM,03/19/2015 10:17:31 AM,03/19/2015 10:17:39 AM,03/19/2015 10:23:26 AM,03/19/2015 10:38:26 AM,03/19/2015 10:44:54 AM,Code 3 Transport,03/19/2015 11:38:04 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Potrero Hill,"(37.7585565185063, -122.407002630959)",150781311-56 +142042079,E21,14070644,Structure Fire,07/23/2014,07/23/2014,07/23/2014 02:05:11 PM,07/23/2014 02:05:49 PM,07/23/2014 02:06:25 PM,07/23/2014 02:07:19 PM,07/23/2014 02:10:00 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/23/2014 02:17:22 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Alarm,1,ENGINE,3,5,5,Western Addition,"(37.7829763286601, -122.441111760659)",142042079-E21 +143413067,B08,14121275,Alarms,12/07/2014,12/07/2014,12/07/2014 07:39:57 PM,12/07/2014 07:41:10 PM,12/07/2014 07:41:18 PM,12/07/2014 07:42:47 PM,12/07/2014 07:46:23 PM,04/25/2016 01:13:35 PM,04/25/2016 01:13:35 PM,Fire,12/07/2014 07:53:24 PM,2300 Block of 12TH AVE,San Francisco,94116,B08,39,8615,3,3,3,false,Alarm,1,CHIEF,2,8,7,West of Twin Peaks,"(37.7444903504363, -122.468232229151)",143413067-B08 +143111004,77,14110066,Medical Incident,11/07/2014,11/07/2014,11/07/2014 09:24:46 AM,11/07/2014 09:27:21 AM,11/07/2014 09:27:39 AM,11/07/2014 09:27:46 AM,11/07/2014 09:33:12 AM,11/07/2014 09:56:17 AM,11/07/2014 10:26:55 AM,Code 2 Transport,11/07/2014 11:07:38 AM,1200 Block of 19TH AVE,San Francisco,94122,B08,22,7424,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,4,Inner Sunset,"(37.7645085780924, -122.477112517357)",143111004-77 +152570124,E07,15098095,Medical Incident,09/14/2015,09/13/2015,09/14/2015 01:09:05 AM,09/14/2015 01:10:29 AM,09/14/2015 01:10:54 AM,09/14/2015 01:12:58 AM,09/14/2015 01:14:57 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Code 2 Transport,09/14/2015 01:33:28 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",152570124-E07 +160953398,60,16037766,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:20:43 PM,04/04/2016 07:22:21 PM,04/04/2016 07:43:05 PM,04/04/2016 07:43:23 PM,04/04/2016 07:50:08 PM,04/04/2016 08:00:51 PM,04/04/2016 08:23:59 PM,Code 2 Transport,04/04/2016 08:52:03 PM,800 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,5,Western Addition,"(37.7828439870217, -122.421651290681)",160953398-60 +160953003,KM11,16037730,Citizen Assist / Service Call,04/04/2016,04/04/2016,04/04/2016 05:44:10 PM,04/04/2016 05:46:07 PM,04/04/2016 05:54:19 PM,04/04/2016 05:55:03 PM,04/04/2016 06:00:45 PM,04/04/2016 06:37:34 PM,04/04/2016 06:37:37 PM,Code 2 Transport,04/04/2016 07:04:10 PM,2700 Block of LAKE ST,San Francisco,94121,B07,14,7236,3,3,3,false,Alarm,1,PRIVATE,3,7,2,Seacliff,"(37.7851739912222, -122.488860460102)",160953003-KM11 +141522385,E08,14052299,Medical Incident,06/01/2014,06/01/2014,06/01/2014 06:10:25 PM,06/01/2014 06:11:16 PM,06/01/2014 06:19:55 PM,06/01/2014 06:21:28 PM,06/01/2014 06:24:16 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Code 2 Transport,06/01/2014 06:41:59 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",141522385-E08 +152711343,88,15103766,Medical Incident,09/28/2015,09/28/2015,09/28/2015 10:56:55 AM,09/28/2015 10:57:25 AM,09/28/2015 10:58:34 AM,09/28/2015 10:58:51 AM,09/28/2015 11:00:28 AM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Gone on Arrival,09/28/2015 11:03:18 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",152711343-88 +152912138,E44,15111849,Medical Incident,10/18/2015,10/18/2015,10/18/2015 03:06:41 PM,10/18/2015 03:09:09 PM,10/18/2015 03:11:00 PM,10/18/2015 03:11:55 PM,10/18/2015 03:18:12 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,No Merit,10/18/2015 03:24:22 PM,200 Block of SAWYER ST,San Francisco,94134,B09,44,6263,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7146687723374, -122.413812172304)",152912138-E44 +160983668,AM24,16039107,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:00:06 PM,04/07/2016 09:04:36 PM,04/07/2016 09:04:51 PM,04/07/2016 09:19:49 PM,04/07/2016 09:19:49 PM,04/07/2016 09:19:50 PM,04/07/2016 09:45:32 PM,Code 2 Transport,04/07/2016 10:10:10 PM,3000 Block of 23RD ST,San Francisco,94110,B06,7,5477,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7541426882469, -122.412588855535)",160983668-AM24 +150400142,E25,15015437,Citizen Assist / Service Call,02/09/2015,02/08/2015,02/09/2015 01:37:28 AM,02/09/2015 01:40:44 AM,02/09/2015 01:41:08 AM,02/09/2015 01:42:35 AM,02/09/2015 01:47:57 AM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Fire,02/09/2015 01:56:48 AM,0 Block of DEDMAN CT,San Francisco,94124,B10,25,6522,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7368469604958, -122.384907106098)",150400142-E25 +143560773,63,14127222,Medical Incident,12/22/2014,12/22/2014,12/22/2014 08:29:09 AM,12/22/2014 08:29:37 AM,12/22/2014 08:30:10 AM,12/22/2014 08:31:04 AM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,Code 2 Transport,12/22/2014 08:32:17 AM,300 Block of BALTIMORE WAY,San Francisco,94112,B09,43,6228,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7086978644454, -122.43804193132)",143560773-63 +141441552,74,14049394,Medical Incident,05/24/2014,05/24/2014,05/24/2014 12:54:55 PM,05/24/2014 12:56:56 PM,05/24/2014 12:58:54 PM,05/24/2014 01:01:35 PM,05/24/2014 01:11:12 PM,05/24/2014 01:31:41 PM,05/24/2014 01:47:01 PM,Code 2 Transport,05/24/2014 01:47:09 PM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",141441552-74 +160933034,KM12,16036996,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:06:54 PM,04/02/2016 07:07:27 PM,04/02/2016 07:10:01 PM,04/02/2016 07:11:24 PM,04/02/2016 07:15:38 PM,04/02/2016 07:24:52 PM,04/02/2016 07:51:12 PM,Code 2 Transport,04/02/2016 08:33:09 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8082633159603, -122.414972542075)",160933034-KM12 +151680239,55,15064089,Medical Incident,06/17/2015,06/16/2015,06/17/2015 02:34:09 AM,06/17/2015 02:37:23 AM,06/17/2015 02:54:50 AM,06/17/2015 02:55:30 AM,06/17/2015 03:03:24 AM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Patient Declined Transport,06/17/2015 03:33:55 AM,MISSION ST/CORTLAND AV,San Francisco,94110,B06,32,5626,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7410274087506, -122.422840577347)",151680239-55 +160952814,76,16037714,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:52:40 PM,04/04/2016 04:53:51 PM,04/04/2016 04:55:25 PM,04/04/2016 04:55:33 PM,04/04/2016 05:00:51 PM,04/04/2016 05:16:53 PM,04/04/2016 05:29:29 PM,Code 2 Transport,04/04/2016 06:03:24 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160952814-76 +141762059,E20,14060763,Medical Incident,06/25/2014,06/25/2014,06/25/2014 02:33:40 PM,06/25/2014 02:34:26 PM,06/25/2014 02:34:39 PM,06/25/2014 02:35:47 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Medical Examiner,06/25/2014 02:39:38 PM,1400 Block of 48TH AVE,San Francisco,94122,B08,23,7723,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7593947893332, -122.508071011138)",141762059-E20 +160992558,AM10,16039389,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:32:40 PM,04/08/2016 04:33:35 PM,04/08/2016 04:33:55 PM,04/08/2016 04:34:34 PM,04/08/2016 04:46:14 PM,04/08/2016 04:48:30 PM,04/08/2016 05:04:30 PM,Code 2 Transport,04/08/2016 05:29:31 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160992558-AM10 +142600296,54,14090717,Structure Fire,09/17/2014,09/16/2014,09/17/2014 03:39:33 AM,09/17/2014 03:40:16 AM,09/17/2014 03:40:47 AM,09/17/2014 03:45:07 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 03:47:25 AM,3100 Block of CLEMENT ST,San Francisco,94121,B07,14,7237,3,3,3,true,Alarm,1,MEDIC,7,7,1,Outer Richmond,"(37.7815971138281, -122.492906734383)",142600296-54 +150653045,62,15024943,Medical Incident,03/06/2015,03/06/2015,03/06/2015 05:20:50 PM,03/06/2015 05:21:10 PM,03/06/2015 05:23:14 PM,03/06/2015 05:23:14 PM,03/06/2015 05:30:00 PM,03/06/2015 05:42:00 PM,03/06/2015 06:03:11 PM,Code 2 Transport,03/06/2015 06:29:53 PM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",150653045-62 +150562977,KM15,15021524,Medical Incident,02/25/2015,02/25/2015,02/25/2015 05:55:25 PM,02/25/2015 05:55:25 PM,02/25/2015 05:56:25 PM,02/25/2015 05:58:04 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Patient Declined Transport,02/25/2015 06:06:17 PM,2500 Block of MARIN ST,San Francisco,94124,B10,9,6417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7482212701716, -122.402752255138)",150562977-KM15 +153461376,T03,15133198,Alarms,12/12/2015,12/12/2015,12/12/2015 10:28:04 AM,12/12/2015 10:29:18 AM,12/12/2015 10:29:57 AM,12/12/2015 10:30:42 AM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Fire,12/12/2015 10:36:04 AM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",153461376-T03 +152910106,AM22,15111639,Medical Incident,10/18/2015,10/17/2015,10/18/2015 12:33:51 AM,10/18/2015 12:35:35 AM,10/18/2015 12:36:29 AM,10/18/2015 12:37:30 AM,10/18/2015 12:55:54 AM,10/18/2015 12:56:07 AM,10/18/2015 01:01:13 AM,Code 2 Transport,10/18/2015 01:35:45 AM,500 Block of JACKSON ST,San Francisco,94133,B01,13,1232,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7964140386351, -122.403965295719)",152910106-AM22 +153132101,61,15120324,Medical Incident,11/09/2015,11/09/2015,11/09/2015 03:03:18 PM,11/09/2015 03:04:03 PM,11/09/2015 03:04:31 PM,11/09/2015 03:04:39 PM,11/09/2015 03:08:39 PM,11/09/2015 03:31:04 PM,11/09/2015 03:53:53 PM,Code 2 Transport,11/09/2015 04:28:07 PM,300 Block of KEARNY ST,San Francisco,94108,B01,13,1243,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",153132101-61 +142082227,E10,14072127,Structure Fire,07/27/2014,07/27/2014,07/27/2014 04:00:11 PM,07/27/2014 04:00:11 PM,07/27/2014 04:00:24 PM,07/27/2014 04:02:10 PM,07/27/2014 04:04:17 PM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Fire,07/27/2014 04:04:51 PM,2400 Block of LYON ST,San Francisco,94123,B04,10,4333,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7932944271794, -122.446448206967)",142082227-E10 +141220205,T08,14041326,Alarms,05/02/2014,05/02/2014,05/02/2014 01:14:57 PM,05/02/2014 01:16:22 PM,05/02/2014 01:17:13 PM,05/02/2014 01:18:46 PM,05/02/2014 01:21:29 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 01:30:15 PM,600 Block of 2ND ST,SAN FRANCISCO,94107,B03,8,2153,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7811877689642, -122.391351449722)",141220205-T08 +151854304,89,15070827,Alarms,07/04/2015,07/04/2015,07/04/2015 11:35:20 PM,07/04/2015 11:36:17 PM,07/04/2015 11:36:29 PM,07/04/2015 11:36:36 PM,07/04/2015 11:44:53 PM,07/05/2015 12:01:29 AM,07/05/2015 12:22:52 AM,Code 2 Transport,07/05/2015 12:55:04 AM,2400 Block of 38TH AVE,San Francisco,94116,B08,18,7612,3,3,3,true,Alarm,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7412158807869, -122.496053142156)",151854304-89 +153251334,E26,15125077,Medical Incident,11/21/2015,11/21/2015,11/21/2015 10:52:04 AM,11/21/2015 10:54:47 AM,11/21/2015 10:55:04 AM,11/21/2015 10:55:21 AM,11/21/2015 10:58:35 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Code 2 Transport,11/21/2015 11:15:15 AM,0 Block of ELK ST,San Francisco,94131,B06,26,8175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7357104260855, -122.439799173378)",153251334-E26 +152420444,74,15092172,Medical Incident,08/30/2015,08/29/2015,08/30/2015 02:16:48 AM,08/30/2015 02:18:10 AM,08/30/2015 02:20:24 AM,08/30/2015 02:20:31 AM,08/30/2015 02:24:53 AM,08/30/2015 02:33:07 AM,08/30/2015 02:41:05 AM,Code 2 Transport,08/30/2015 03:28:06 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",152420444-74 +142953246,T01,14104159,Structure Fire,10/22/2014,10/22/2014,10/22/2014 08:01:58 PM,10/22/2014 08:03:13 PM,10/22/2014 08:03:54 PM,10/22/2014 08:05:22 PM,10/22/2014 08:08:38 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,No Merit,10/22/2014 08:10:35 PM,200 Block of 11TH ST,San Francisco,94103,B02,36,5114,3,3,3,false,Alarm,1,TRUCK,7,2,6,Mission,"(37.7728364882287, -122.415330822576)",142953246-T01 +160930425,AM20,16036710,Medical Incident,04/02/2016,04/01/2016,04/02/2016 03:09:02 AM,04/02/2016 03:09:02 AM,04/02/2016 03:09:49 AM,04/02/2016 03:10:42 AM,04/02/2016 03:27:17 AM,04/02/2016 03:27:19 AM,04/02/2016 03:48:40 AM,Code 2 Transport,04/02/2016 04:12:38 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",160930425-AM20 +142622570,T03,14091693,Medical Incident,09/19/2014,09/19/2014,09/19/2014 04:31:03 PM,09/19/2014 04:35:00 PM,09/19/2014 04:35:08 PM,09/19/2014 04:36:35 PM,09/19/2014 04:39:30 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,Code 2 Transport,09/19/2014 04:54:18 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",142622570-T03 +141432713,T11,14049174,Structure Fire,05/23/2014,05/23/2014,05/23/2014 06:06:01 PM,05/23/2014 06:08:49 PM,05/23/2014 06:09:06 PM,05/23/2014 06:12:42 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Fire,05/23/2014 06:31:54 PM,300 Block of ADDISON ST,San Francisco,94131,B06,26,8153,3,3,3,false,Alarm,1,TRUCK,5,6,8,Glen Park,"(37.7400105466221, -122.435088097526)",141432713-T11 +143410293,64,14121004,Medical Incident,12/07/2014,12/06/2014,12/07/2014 01:49:44 AM,12/07/2014 01:50:27 AM,12/07/2014 01:50:52 AM,12/07/2014 01:51:09 AM,12/07/2014 01:54:30 AM,12/07/2014 02:15:26 AM,12/07/2014 02:36:05 AM,Code 2 Transport,12/07/2014 02:58:08 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",143410293-64 +153470195,58,15133496,Medical Incident,12/13/2015,12/12/2015,12/13/2015 01:20:31 AM,12/13/2015 01:20:31 AM,12/13/2015 01:20:31 AM,12/13/2015 01:20:31 AM,12/13/2015 01:20:31 AM,12/13/2015 01:20:38 AM,12/13/2015 01:20:38 AM,Code 3 Transport,12/13/2015 02:26:51 AM,0 Block of CASTRO ST,San Francisco,94114,B99,6,513,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",153470195-58 +160923297,71,16036590,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:59:13 PM,04/01/2016 07:59:25 PM,04/01/2016 07:59:41 PM,04/01/2016 07:59:47 PM,04/01/2016 08:07:10 PM,04/01/2016 08:37:11 PM,04/01/2016 09:01:21 PM,Code 2 Transport,04/01/2016 09:36:58 PM,600 Block of PRESIDIO AVE,San Francisco,94115,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7858449979837, -122.44644775326)",160923297-71 +150380641,62,15014659,Medical Incident,02/07/2015,02/06/2015,02/07/2015 06:06:18 AM,02/07/2015 06:07:50 AM,02/07/2015 06:07:57 AM,02/07/2015 06:09:24 AM,02/07/2015 06:10:38 AM,02/07/2015 06:17:26 AM,02/07/2015 06:33:32 AM,Code 2 Transport,02/07/2015 06:39:29 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",150380641-62 +152853635,E42,15109599,Medical Incident,10/12/2015,10/12/2015,10/12/2015 08:38:16 PM,10/12/2015 08:38:16 PM,10/12/2015 08:38:41 PM,10/12/2015 08:51:53 PM,10/12/2015 08:51:55 PM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Code 2 Transport,10/12/2015 09:07:40 PM,CARROLL AV/3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7254756512383, -122.394243494238)",152853635-E42 +152460941,KM08,15093731,Medical Incident,09/03/2015,09/03/2015,09/03/2015 08:55:14 AM,09/03/2015 08:55:50 AM,09/03/2015 08:58:30 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Cancelled,09/03/2015 08:59:11 AM,16TH ST/BRYANT ST,San Francisco,94110,B02,29,5241,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",152460941-KM08 +151262643,T12,15047841,Alarms,05/06/2015,05/06/2015,05/06/2015 04:31:09 PM,05/06/2015 04:32:18 PM,05/06/2015 04:33:22 PM,05/06/2015 04:34:35 PM,05/06/2015 04:51:34 PM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Fire,05/06/2015 04:51:36 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",151262643-T12 +160950785,57,16037548,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:41:00 AM,04/04/2016 08:41:28 AM,04/04/2016 08:41:41 AM,04/04/2016 08:42:18 AM,04/04/2016 09:01:23 AM,04/04/2016 09:14:04 AM,04/04/2016 09:45:57 AM,Code 2 Transport,04/04/2016 10:27:25 AM,PORTOLA DR/VICENTE ST,San Francisco,94127,B08,39,8562,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7392358314406, -122.466157325803)",160950785-57 +150252424,79,15009729,Medical Incident,01/25/2015,01/25/2015,01/25/2015 04:37:34 PM,01/25/2015 04:37:34 PM,01/25/2015 04:37:55 PM,01/25/2015 04:38:03 PM,01/25/2015 04:52:08 PM,01/25/2015 05:04:58 PM,01/25/2015 05:22:28 PM,Code 2 Transport,01/25/2015 05:36:31 PM,300 Block of HERMANN ST,San Francisco,94117,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Hayes Valley,"(37.7700847251602, -122.430884412237)",150252424-79 +160923602,75,16036620,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:42:48 PM,04/01/2016 09:44:55 PM,04/01/2016 09:45:13 PM,04/01/2016 09:45:18 PM,04/01/2016 09:55:28 PM,04/01/2016 10:04:04 PM,04/01/2016 10:13:15 PM,Code 3 Transport,04/01/2016 11:23:38 PM,2200 Block of 15TH ST,San Francisco,94114,B05,6,5232,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7657397887972, -122.43435845366)",160923602-75 +141613355,85,14055664,Medical Incident,06/10/2014,06/10/2014,06/10/2014 10:02:44 PM,06/10/2014 10:05:26 PM,06/10/2014 10:08:01 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,Code 2 Transport,06/10/2014 10:08:36 PM,400 Block of ROSE ST,San Francisco,94102,B02,36,3422,E,E,3,true,Potentially Life-Threatening,1,MEDIC,6,2,5,Hayes Valley,"(37.7728432861727, -122.42806845332)",141613355-85 +151700282,E31,15064849,Medical Incident,06/19/2015,06/18/2015,06/19/2015 02:32:40 AM,06/19/2015 02:34:21 AM,06/19/2015 02:35:49 AM,06/19/2015 02:37:20 AM,06/19/2015 02:39:39 AM,04/25/2016 01:09:55 PM,04/25/2016 01:09:55 PM,Code 2 Transport,06/19/2015 02:46:36 AM,600 Block of 10TH AVE,San Francisco,94118,B07,31,7134,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7761033802138, -122.468294601251)",151700282-E31 +150102992,RS1,15004101,Medical Incident,01/10/2015,01/10/2015,01/10/2015 07:24:54 PM,01/10/2015 07:26:23 PM,01/10/2015 07:26:52 PM,01/10/2015 07:28:21 PM,01/10/2015 07:30:48 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 2 Transport,01/10/2015 07:34:38 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Non Life-threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",150102992-RS1 +141923971,E41,14066742,Medical Incident,07/11/2014,07/11/2014,07/11/2014 11:45:28 PM,07/11/2014 11:45:54 PM,07/11/2014 11:46:09 PM,07/11/2014 11:47:27 PM,07/11/2014 11:49:47 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Code 2 Transport,07/12/2014 12:05:30 AM,1200 Block of GREEN ST,San Francisco,94109,B01,41,1631,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7982535635087, -122.419386977986)",141923971-E41 +153220468,63,15123733,Medical Incident,11/18/2015,11/17/2015,11/18/2015 06:43:22 AM,11/18/2015 06:44:16 AM,11/18/2015 06:44:57 AM,11/18/2015 06:46:13 AM,11/18/2015 06:54:15 AM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Patient Declined Transport,11/18/2015 07:32:06 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",153220468-63 +152880653,E36,15110556,Medical Incident,10/15/2015,10/14/2015,10/15/2015 07:35:58 AM,10/15/2015 07:35:58 AM,10/15/2015 07:36:33 AM,10/15/2015 07:39:50 AM,10/15/2015 07:44:23 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/15/2015 07:49:51 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,3,3,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",152880653-E36 +142571924,T12,14089816,Other,09/14/2014,09/14/2014,09/14/2014 03:07:12 PM,09/14/2014 03:09:30 PM,09/14/2014 03:09:56 PM,09/14/2014 03:15:47 PM,09/14/2014 03:18:33 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 03:35:16 PM,1600 Block of NORIEGA ST,San Francisco,94122,B08,18,7455,3,3,3,false,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.753973012813, -122.481291383585)",142571924-T12 +151400702,85,15053069,Medical Incident,05/20/2015,05/20/2015,05/20/2015 08:10:21 AM,05/20/2015 08:11:10 AM,05/20/2015 08:13:17 AM,05/20/2015 08:13:24 AM,05/20/2015 08:25:08 AM,05/20/2015 08:44:06 AM,05/20/2015 09:11:26 AM,Code 2 Transport,05/20/2015 09:42:35 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.728489442639, -122.429995375728)",151400702-85 +153111157,52,15119511,Medical Incident,11/07/2015,11/07/2015,11/07/2015 10:09:04 AM,11/07/2015 10:09:29 AM,11/07/2015 10:10:30 AM,11/07/2015 10:10:54 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,No Merit,11/07/2015 10:12:58 AM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",153111157-52 +143560199,61,14127157,Medical Incident,12/22/2014,12/21/2014,12/22/2014 01:42:40 AM,12/22/2014 01:43:08 AM,12/22/2014 01:43:31 AM,12/22/2014 01:44:04 AM,12/22/2014 02:01:44 AM,12/22/2014 02:01:50 AM,12/22/2014 02:05:39 AM,Code 2 Transport,12/22/2014 02:39:02 AM,TURK ST/POLK ST,San Francisco,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7821692691963, -122.418993274637)",143560199-61 +141662058,B07,14057329,Structure Fire,06/15/2014,06/15/2014,06/15/2014 04:24:59 PM,06/15/2014 04:25:33 PM,06/15/2014 04:25:47 PM,06/15/2014 04:27:29 PM,06/15/2014 04:31:33 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Fire,06/15/2014 07:08:16 PM,5300 Block of ANZA ST,San Francisco,94121,B07,34,7267,3,3,3,false,Fire,1,CHIEF,4,7,1,Outer Richmond,"(37.7772690739662, -122.505491169869)",141662058-B07 +142133627,82,14074025,Medical Incident,08/01/2014,08/01/2014,08/01/2014 10:48:27 PM,08/01/2014 10:51:09 PM,08/01/2014 10:53:06 PM,08/01/2014 10:53:16 PM,08/01/2014 11:04:59 PM,08/01/2014 11:38:00 PM,08/01/2014 11:58:01 PM,Code 2 Transport,08/02/2014 12:37:56 AM,900 Block of DUNCAN ST,San Francisco,94131,B06,26,8163,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7451902673044, -122.442132312223)",142133627-82 +142081131,B04,14072029,Alarms,07/27/2014,07/27/2014,07/27/2014 09:59:19 AM,07/27/2014 10:00:56 AM,07/27/2014 10:03:02 AM,07/27/2014 10:03:42 AM,07/27/2014 10:08:00 AM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Fire,07/27/2014 10:08:29 AM,2400 Block of GEARY BLVD,San Francisco,94115,B05,10,4261,3,3,3,false,Alarm,1,CHIEF,3,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",142081131-B04 +141593077,T03,14054985,Medical Incident,06/08/2014,06/08/2014,06/08/2014 09:38:09 PM,06/08/2014 09:38:50 PM,06/08/2014 09:43:28 PM,06/08/2014 09:43:28 PM,06/08/2014 09:43:40 PM,04/25/2016 01:16:52 PM,04/25/2016 01:16:52 PM,Code 3 Transport,06/08/2014 09:51:39 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",141593077-T03 +142992197,73,14105625,Medical Incident,10/26/2014,10/26/2014,10/26/2014 03:27:45 PM,10/26/2014 03:31:26 PM,10/26/2014 03:33:21 PM,10/26/2014 03:33:21 PM,10/26/2014 03:36:38 PM,10/26/2014 03:49:41 PM,10/26/2014 04:06:29 PM,Code 2 Transport,10/26/2014 04:28:13 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",142992197-73 +160993387,62,16039453,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:01:29 PM,04/08/2016 08:03:39 PM,04/08/2016 08:04:06 PM,04/08/2016 08:04:15 PM,04/08/2016 08:06:27 PM,04/08/2016 08:25:48 PM,04/08/2016 09:13:29 PM,Code 2 Transport,04/08/2016 09:29:01 PM,OCEAN AV/HAROLD AV,San Francisco,94112,B09,15,8224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7232440375255, -122.453107196732)",160993387-62 +143392432,T03,14120412,Medical Incident,12/05/2014,12/05/2014,12/05/2014 03:32:36 PM,12/05/2014 03:34:26 PM,12/05/2014 03:34:41 PM,12/05/2014 03:35:45 PM,12/05/2014 03:37:37 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 03:45:56 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,E,E,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7854364798696, -122.41533612902)",143392432-T03 +153093057,E31,15118860,Water Rescue,11/05/2015,11/05/2015,11/05/2015 05:28:35 PM,11/05/2015 05:31:31 PM,11/05/2015 05:35:08 PM,11/05/2015 05:36:59 PM,11/05/2015 05:43:24 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Fire,11/05/2015 05:59:13 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,false,Fire,1,ENGINE,3,7,2,Presidio,"(37.7915253713789, -122.483480228628)",153093057-E31 +151532307,65,15058344,Medical Incident,06/02/2015,06/02/2015,06/02/2015 03:39:31 PM,06/02/2015 03:41:47 PM,06/02/2015 03:43:40 PM,06/02/2015 03:44:04 PM,06/02/2015 03:51:16 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Patient Declined Transport,06/02/2015 04:25:21 PM,100 Block of SEVILLE ST,San Francisco,94112,B09,43,6225,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7115147093645, -122.436759114316)",151532307-65 +151433590,T14,15054557,Alarms,05/23/2015,05/23/2015,05/23/2015 10:08:29 PM,05/23/2015 10:10:18 PM,05/23/2015 10:10:27 PM,05/23/2015 10:12:08 PM,05/23/2015 10:17:06 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Fire,05/23/2015 10:30:09 PM,1800 Block of WEDEMEYER ST,Presidio,94129,B99,31,4623,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.7876952229351, -122.473970150545)",151433590-T14 +152232433,E17,15085040,Medical Incident,08/11/2015,08/11/2015,08/11/2015 03:21:42 PM,08/11/2015 03:23:42 PM,08/11/2015 03:23:57 PM,08/11/2015 03:26:08 PM,08/11/2015 03:28:29 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Code 2 Transport,08/11/2015 03:40:02 PM,1500 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7310897557507, -122.389268390192)",152232433-E17 +151220656,E06,15046177,Medical Incident,05/02/2015,05/01/2015,05/02/2015 06:56:05 AM,05/02/2015 06:56:51 AM,05/02/2015 06:57:25 AM,05/02/2015 06:59:53 AM,05/02/2015 07:03:02 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Code 2 Transport,05/02/2015 07:13:46 AM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",151220656-E06 +143411448,72,14121133,Medical Incident,12/07/2014,12/07/2014,12/07/2014 11:38:12 AM,12/07/2014 11:38:12 AM,12/07/2014 11:38:41 AM,12/07/2014 11:38:55 AM,12/07/2014 12:04:09 PM,04/25/2016 01:13:36 PM,04/25/2016 01:13:36 PM,Patient Declined Transport,12/07/2014 12:14:49 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",143411448-72 +143452343,T02,14122933,Structure Fire,12/11/2014,12/11/2014,12/11/2014 02:50:05 PM,12/11/2014 02:53:35 PM,12/11/2014 02:54:09 PM,12/11/2014 02:55:41 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Fire,12/11/2014 03:02:16 PM,HYDE ST/CHESTNUT ST,San Francisco,94109,B01,28,1613,3,3,3,false,Alarm,1,TRUCK,7,1,2,Russian Hill,"(37.8029268278162, -122.419797280581)",143452343-T02 +151371740,72,15052057,Medical Incident,05/17/2015,05/17/2015,05/17/2015 12:58:34 PM,05/17/2015 12:58:44 PM,05/17/2015 01:01:09 PM,05/17/2015 01:01:52 PM,05/17/2015 01:15:04 PM,05/17/2015 01:15:07 PM,05/17/2015 01:45:16 PM,Code 2 Transport,05/17/2015 02:10:36 PM,4000 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,E,3,true,Potentially Life-Threatening,1,MEDIC,4,7,2,Inner Richmond,"(37.7855250745972, -122.460849447925)",151371740-72 +160983995,60,16039138,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:51:28 PM,04/07/2016 10:54:39 PM,04/07/2016 10:55:05 PM,04/07/2016 10:55:17 PM,04/07/2016 10:57:05 PM,04/07/2016 11:12:31 PM,04/07/2016 11:19:19 PM,Code 2 Transport,04/08/2016 12:19:29 AM,GEARY BL/VAN NESS AV,San Francisco,94109,B04,3,3222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",160983995-60 +150461660,B02,15017889,Alarms,02/15/2015,02/15/2015,02/15/2015 12:38:34 PM,02/15/2015 12:39:35 PM,02/15/2015 12:40:14 PM,02/15/2015 12:41:37 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/15/2015 12:48:00 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Alarm,1,CHIEF,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",150461660-B02 +141351187,E32,14046110,Medical Incident,05/15/2014,05/15/2014,05/15/2014 10:07:32 AM,05/15/2014 10:07:32 AM,05/15/2014 10:08:52 AM,05/15/2014 10:10:17 AM,05/15/2014 10:13:05 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Code 2 Transport,05/15/2014 10:16:08 AM,MISSION ST/30TH ST,San Francisco,94110,B06,32,5625,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",141351187-E32 +150502138,E14,15019355,Alarms,02/19/2015,02/19/2015,02/19/2015 02:47:48 PM,02/19/2015 02:47:59 PM,02/19/2015 02:48:09 PM,02/19/2015 02:49:10 PM,02/19/2015 02:52:50 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Fire,02/19/2015 02:55:58 PM,9TH AV/GEARY BL,San Francisco,94118,B07,31,7135,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7808797138944, -122.46748765154)",150502138-E14 +152091722,E06,15079629,Traffic Collision,07/28/2015,07/28/2015,07/28/2015 12:23:23 PM,07/28/2015 12:23:47 PM,07/28/2015 12:24:51 PM,07/28/2015 12:26:13 PM,07/28/2015 12:28:05 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Code 2 Transport,07/28/2015 12:42:14 PM,300 Block of SCOTT ST,San Francisco,94117,B05,21,4141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7728905512688, -122.435589091732)",152091722-E06 +160991726,53,16039300,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:15:00 PM,04/08/2016 01:16:36 PM,04/08/2016 01:17:07 PM,04/08/2016 01:17:19 PM,04/08/2016 01:29:36 PM,04/08/2016 01:52:16 PM,04/08/2016 02:37:16 PM,Code 2 Transport,04/08/2016 03:22:27 PM,1800 Block of CABRILLO ST,San Francisco,94121,B07,31,7166,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7746507096792, -122.478431950812)",160991726-53 +143141233,E05,14111204,Electrical Hazard,11/10/2014,11/10/2014,11/10/2014 11:03:39 AM,11/10/2014 11:06:57 AM,11/10/2014 11:07:51 AM,11/10/2014 11:08:48 AM,11/10/2014 11:12:29 AM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Fire,11/10/2014 11:23:55 AM,OAK ST/WEBSTER ST,San Francisco,94102,B02,5,3523,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.774181421555, -122.429178343494)",143141233-E05 +151613370,AM20,15061691,Medical Incident,06/10/2015,06/10/2015,06/10/2015 08:17:57 PM,06/10/2015 08:18:30 PM,06/10/2015 08:18:35 PM,06/10/2015 08:19:14 PM,06/10/2015 08:21:36 PM,06/10/2015 08:36:58 PM,06/10/2015 08:46:57 PM,Code 2 Transport,06/10/2015 09:06:35 PM,CLARION AL/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7630508400294, -122.419476288648)",151613370-AM20 +141130115,E32,14038066,Alarms,04/23/2014,04/23/2014,04/23/2014 09:24:39 AM,04/23/2014 09:26:00 AM,04/23/2014 09:26:15 AM,04/23/2014 09:26:44 AM,04/23/2014 09:30:28 AM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Fire,04/23/2014 09:32:04 AM,100 Block of ANDOVER ST,SAN FRANCISCO,94110,B06,32,5716,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7410333976813, -122.41628667844)",141130115-E32 +152891856,E05,15111026,Medical Incident,10/16/2015,10/16/2015,10/16/2015 01:18:50 PM,10/16/2015 01:18:50 PM,10/16/2015 01:19:29 PM,10/16/2015 01:20:20 PM,10/16/2015 01:21:34 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 01:31:52 PM,1600 Block of TURK ST,San Francisco,94115,B05,5,3643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.780026750015, -122.436259177468)",152891856-E05 +160931279,KM02,16036807,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:52:07 AM,04/02/2016 10:54:16 AM,04/02/2016 11:06:03 AM,04/02/2016 11:06:31 AM,04/02/2016 11:22:15 AM,04/02/2016 11:33:23 AM,04/02/2016 12:06:11 PM,Code 2 Transport,04/02/2016 12:52:42 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160931279-KM02 +161001743,KM12,16039777,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:47:08 PM,04/09/2016 01:48:45 PM,04/09/2016 02:12:58 PM,04/09/2016 02:12:58 PM,04/09/2016 02:21:01 PM,04/09/2016 02:34:34 PM,04/09/2016 02:43:41 PM,Code 2 Transport,04/09/2016 03:15:49 PM,3000 Block of DIVISADERO ST,San Francisco,94123,B04,16,4166,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.7976378513126, -122.442441940779)",161001743-KM12 +150322704,E03,15012447,Medical Incident,02/01/2015,02/01/2015,02/01/2015 05:23:49 PM,02/01/2015 05:23:49 PM,02/01/2015 05:27:12 PM,02/01/2015 05:29:05 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Patient Declined Transport,02/01/2015 05:31:05 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",150322704-E03 +141320082,E18,14044768,Medical Incident,05/12/2014,05/11/2014,05/12/2014 12:56:59 AM,05/12/2014 12:57:39 AM,05/12/2014 01:03:41 AM,05/12/2014 01:05:53 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Code 2 Transport,05/12/2014 01:08:45 AM,2400 Block of 23RD AVE,San Francisco,94116,B08,40,7442,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7419314290573, -122.479843626378)",141320082-E18 +142900094,E12,14102087,Medical Incident,10/17/2014,10/16/2014,10/17/2014 12:39:42 AM,10/17/2014 12:44:53 AM,10/17/2014 12:45:38 AM,10/17/2014 12:47:41 AM,10/17/2014 12:49:31 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/17/2014 12:58:10 AM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7692177178614, -122.452690310191)",142900094-E12 +151571971,85,15059958,Medical Incident,06/06/2015,06/06/2015,06/06/2015 02:21:17 PM,06/06/2015 02:22:44 PM,06/06/2015 02:22:51 PM,06/06/2015 02:23:03 PM,06/06/2015 02:35:20 PM,06/06/2015 02:51:20 PM,06/06/2015 03:28:35 PM,Code 2 Transport,06/06/2015 03:57:03 PM,FILLMORE ST/JACKSON ST,San Francisco,94115,B04,38,3545,2,3,3,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7924716369741, -122.434557722228)",151571971-85 +150121777,89,15004750,Medical Incident,01/12/2015,01/12/2015,01/12/2015 01:05:19 PM,01/12/2015 01:05:19 PM,01/12/2015 01:07:58 PM,01/12/2015 01:08:47 PM,01/12/2015 01:13:20 PM,01/12/2015 01:18:49 PM,01/12/2015 01:58:21 PM,Code 3 Transport,01/12/2015 02:31:25 PM,TURK ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1456,A,E,3,true,Potentially Life-Threatening,1,MEDIC,6,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",150121777-89 +160930260,58,16036693,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:45:27 AM,04/02/2016 01:46:06 AM,04/02/2016 01:47:43 AM,04/02/2016 01:48:08 AM,04/02/2016 01:54:59 AM,04/02/2016 02:04:47 AM,04/02/2016 02:09:19 AM,Code 2 Transport,04/02/2016 02:29:59 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160930260-58 +152391067,83,15090950,Medical Incident,08/27/2015,08/27/2015,08/27/2015 09:38:08 AM,08/27/2015 09:38:31 AM,08/27/2015 09:40:37 AM,08/27/2015 09:40:37 AM,08/27/2015 09:49:42 AM,08/27/2015 09:56:41 AM,08/27/2015 10:07:37 AM,Code 2 Transport,08/27/2015 10:36:33 AM,900 Block of GRANT AVE,San Francisco,94108,B01,2,1312,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7955759617339, -122.406632308192)",152391067-83 +143430496,89,14121824,Medical Incident,12/09/2014,12/08/2014,12/09/2014 05:50:22 AM,12/09/2014 05:51:27 AM,12/09/2014 05:51:50 AM,12/09/2014 05:52:41 AM,12/09/2014 05:56:50 AM,12/09/2014 06:04:25 AM,12/09/2014 06:15:10 AM,Code 2 Transport,12/09/2014 06:36:21 AM,FRANKLIN ST/FULTON ST,San Francisco,94102,B02,36,3214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7789568629409, -122.421709307211)",143430496-89 +142750474,E51,14096354,Alarms,10/02/2014,10/01/2014,10/02/2014 05:16:17 AM,10/02/2014 05:17:46 AM,10/02/2014 05:18:04 AM,10/02/2014 05:20:15 AM,10/02/2014 05:23:46 AM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Fire,10/02/2014 05:32:17 AM,900 Block of MASON ST,Presidio,94108,B99,51,4613,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",142750474-E51 +160982314,73,16038966,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:42:10 PM,04/07/2016 02:42:10 PM,04/07/2016 02:43:47 PM,04/07/2016 02:50:34 PM,04/07/2016 03:05:19 PM,04/07/2016 04:01:06 PM,04/07/2016 04:01:21 PM,Code 2 Transport,04/07/2016 04:35:45 PM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",160982314-73 +151580583,55,15060221,Traffic Collision,06/07/2015,06/06/2015,06/07/2015 04:29:51 AM,06/07/2015 04:32:56 AM,06/07/2015 04:35:17 AM,06/07/2015 04:35:27 AM,06/07/2015 04:38:28 AM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,No Merit,06/07/2015 04:40:28 AM,HYDE ST/POST ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7872452103353, -122.41663869807)",151580583-55 +142001523,E32,14069225,Other,07/19/2014,07/19/2014,07/19/2014 12:46:50 PM,07/19/2014 12:47:56 PM,07/19/2014 12:48:26 PM,07/19/2014 12:48:47 PM,07/19/2014 12:54:25 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Fire,07/19/2014 01:03:41 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",142001523-E32 +141403236,E33,14048131,Medical Incident,05/20/2014,05/20/2014,05/20/2014 08:33:58 PM,05/20/2014 08:36:12 PM,05/20/2014 08:36:45 PM,05/20/2014 08:37:43 PM,05/20/2014 08:39:12 PM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,Code 2 Transport,05/20/2014 09:05:14 PM,0 Block of BROAD ST,San Francisco,94112,B09,33,8371,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7132579074067, -122.454756002084)",141403236-E33 +160923362,79,16036595,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:18:24 PM,04/01/2016 08:19:08 PM,04/01/2016 08:19:29 PM,04/01/2016 08:19:47 PM,04/01/2016 08:23:37 PM,04/01/2016 08:39:16 PM,04/01/2016 08:48:34 PM,Code 2 Transport,04/01/2016 09:19:53 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160923362-79 +142490084,B04,14086647,Alarms,09/06/2014,09/05/2014,09/06/2014 12:37:18 AM,09/06/2014 12:38:19 AM,09/06/2014 12:38:43 AM,09/06/2014 12:39:00 AM,09/06/2014 12:42:40 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Fire,09/06/2014 12:47:38 AM,1900 Block of VAN NESS AVE,San Francisco,94109,B04,41,3153,3,3,3,false,Alarm,1,CHIEF,1,4,3,Russian Hill,"(37.7935141253124, -122.422789161737)",142490084-B04 +153020217,E05,15115713,Structure Fire,10/29/2015,10/28/2015,10/29/2015 01:49:19 AM,10/29/2015 01:49:19 AM,10/29/2015 01:49:34 AM,10/29/2015 01:51:16 AM,10/29/2015 01:53:07 AM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/29/2015 02:05:56 AM,1500 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,414,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",153020217-E05 +153223472,E18,15124000,Traffic Collision,11/18/2015,11/18/2015,11/18/2015 06:47:19 PM,11/18/2015 06:47:19 PM,11/18/2015 06:47:40 PM,11/18/2015 06:48:49 PM,11/18/2015 06:56:05 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Code 2 Transport,11/18/2015 07:26:46 PM,GREAT HY/SLOAT BL,San Francisco,94132,B08,23,7733,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",153223472-E18 +142960623,E14,14104291,Medical Incident,10/23/2014,10/22/2014,10/23/2014 07:24:29 AM,10/23/2014 07:25:44 AM,10/23/2014 07:25:57 AM,10/23/2014 07:27:29 AM,10/23/2014 07:29:09 AM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Medical Examiner,10/23/2014 08:16:15 AM,700 Block of 24TH AVE,San Francisco,94121,B07,14,7212,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7754214554732, -122.483253320428)",142960623-E14 +152601833,T02,15099372,Medical Incident,09/17/2015,09/17/2015,09/17/2015 12:49:15 PM,09/17/2015 12:51:43 PM,09/17/2015 12:52:04 PM,09/17/2015 12:52:58 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Against Medical Advice,09/17/2015 12:54:55 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,1,3,North Beach,"(37.8082633159603, -122.414972542075)",152601833-T02 +151400079,75,15053001,Medical Incident,05/20/2015,05/19/2015,05/20/2015 12:41:27 AM,05/20/2015 12:41:27 AM,05/20/2015 12:41:52 AM,05/20/2015 12:42:16 AM,05/20/2015 12:51:17 AM,05/20/2015 01:05:54 AM,05/20/2015 01:51:03 AM,Code 2 Transport,05/20/2015 02:27:05 AM,200 Block of 20TH AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7831962163812, -122.479514181601)",151400079-75 +143101426,E31,14109694,Medical Incident,11/06/2014,11/06/2014,11/06/2014 11:40:13 AM,11/06/2014 11:41:58 AM,11/06/2014 11:42:56 AM,11/06/2014 11:43:31 AM,11/06/2014 11:45:50 AM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,Code 2 Transport,11/06/2014 11:55:20 AM,400 Block of 11TH AVE,San Francisco,94118,B07,31,7142,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7798119162225, -122.469491762912)",143101426-E31 +153332398,E44,15128149,Medical Incident,11/29/2015,11/29/2015,11/29/2015 06:02:40 PM,11/29/2015 06:03:24 PM,11/29/2015 06:03:48 PM,11/29/2015 06:05:55 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,No Merit,11/29/2015 06:21:30 PM,0 Block of LELAND AVE,San Francisco,94134,B10,44,6255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7113387848327, -122.404262861765)",153332398-E44 +151660073,E01,15063326,Medical Incident,06/15/2015,06/14/2015,06/15/2015 12:43:17 AM,06/15/2015 12:45:19 AM,06/15/2015 12:45:35 AM,06/15/2015 12:47:17 AM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,Code 2 Transport,06/15/2015 12:48:38 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",151660073-E01 +160933689,52,16037063,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:19:46 PM,04/02/2016 10:19:46 PM,04/02/2016 10:20:13 PM,04/02/2016 10:20:20 PM,04/02/2016 10:25:18 PM,04/02/2016 10:41:44 PM,04/02/2016 10:56:31 PM,Code 2 Transport,04/02/2016 11:48:38 PM,HAYES ST/OCTAVIA ST,San Francisco,94102,B02,36,3265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7766875550419, -122.424513700951)",160933689-52 +153312417,64,15127444,Medical Incident,11/27/2015,11/27/2015,11/27/2015 04:51:18 PM,11/27/2015 04:51:18 PM,11/27/2015 04:51:18 PM,11/27/2015 04:51:18 PM,11/27/2015 04:51:18 PM,11/27/2015 05:02:44 PM,11/27/2015 05:13:08 PM,Code 2 Transport,11/27/2015 06:03:02 PM,BUSH ST/LEAVENWORTH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",153312417-64 +142721307,E06,14095352,Medical Incident,09/29/2014,09/29/2014,09/29/2014 11:12:51 AM,09/29/2014 11:15:06 AM,09/29/2014 11:18:53 AM,09/29/2014 11:19:12 AM,09/29/2014 11:21:43 AM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Code 3 Transport,09/29/2014 11:38:57 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",142721307-E06 +160970248,AM24,16038265,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:44:14 AM,04/06/2016 02:45:41 AM,04/06/2016 02:46:38 AM,04/06/2016 02:47:20 AM,04/06/2016 02:53:05 AM,04/06/2016 03:00:44 AM,04/06/2016 03:21:52 AM,Code 2 Transport,04/06/2016 03:44:37 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160970248-AM24 +161001156,KM08,16039704,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:26:15 AM,04/09/2016 10:27:47 AM,04/09/2016 10:28:23 AM,04/09/2016 10:28:48 AM,04/09/2016 10:45:09 AM,04/09/2016 10:56:34 AM,04/09/2016 11:20:33 AM,Code 2 Transport,04/09/2016 11:54:53 AM,2600 Block of 23RD AVE,San Francisco,94116,B08,40,7441,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.738203639933, -122.479590920377)",161001156-KM08 +153140700,E06,15120553,Medical Incident,11/10/2015,11/10/2015,11/10/2015 08:08:24 AM,11/10/2015 08:09:14 AM,11/10/2015 08:10:12 AM,11/10/2015 08:11:51 AM,11/10/2015 08:15:44 AM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Code 2 Transport,11/10/2015 08:17:36 AM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",153140700-E06 +151263421,T03,15047910,Medical Incident,05/06/2015,05/06/2015,05/06/2015 08:05:27 PM,05/06/2015 08:06:07 PM,05/06/2015 08:06:41 PM,05/06/2015 08:07:35 PM,05/06/2015 08:09:28 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Code 2 Transport,05/06/2015 08:12:26 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",151263421-T03 +152541089,67,15097030,Medical Incident,09/11/2015,09/11/2015,09/11/2015 09:37:24 AM,09/11/2015 09:37:41 AM,09/11/2015 09:37:53 AM,09/11/2015 09:38:12 AM,09/11/2015 09:45:52 AM,09/11/2015 10:04:30 AM,09/11/2015 10:17:53 AM,Code 2 Transport,09/11/2015 10:52:23 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",152541089-67 +150132122,KM02,15005198,Medical Incident,01/13/2015,01/13/2015,01/13/2015 02:30:19 PM,01/13/2015 02:31:00 PM,01/13/2015 02:57:37 PM,01/13/2015 02:58:19 PM,01/13/2015 03:08:32 PM,01/13/2015 03:16:46 PM,01/13/2015 03:43:27 PM,Code 2 Transport,01/13/2015 04:17:05 PM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",150132122-KM02 +160993376,AM18,16039452,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:58:12 PM,04/08/2016 08:00:03 PM,04/08/2016 08:07:10 PM,04/08/2016 08:07:40 PM,04/08/2016 08:41:13 PM,04/08/2016 08:55:51 PM,04/08/2016 08:57:33 PM,Code 2 Transport,04/08/2016 09:44:25 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",160993376-AM18 +153221037,E15,15123790,Administrative,11/18/2015,11/18/2015,11/18/2015 09:29:57 AM,11/18/2015 09:30:24 AM,11/18/2015 09:30:36 AM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Fire,11/18/2015 09:31:02 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",153221037-E15 +150530939,63,15020327,Medical Incident,02/22/2015,02/22/2015,02/22/2015 08:36:27 AM,02/22/2015 08:37:44 AM,02/22/2015 08:37:54 AM,02/22/2015 08:38:25 AM,02/22/2015 08:44:24 AM,02/22/2015 09:09:49 AM,02/22/2015 09:24:36 AM,Code 2 Transport,02/22/2015 10:01:29 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150530939-63 +142820298,T19,14099120,Alarms,10/09/2014,10/08/2014,10/09/2014 03:09:50 AM,10/09/2014 03:11:31 AM,10/09/2014 03:11:41 AM,10/09/2014 03:13:17 AM,10/09/2014 03:13:17 AM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,Fire,10/09/2014 04:12:04 AM,0 Block of CHUMASERO DR,San Francisco,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",142820298-T19 +143330002,B10,14117845,Alarms,11/28/2014,11/28/2014,11/28/2014 11:57:16 PM,11/29/2014 12:01:34 AM,11/29/2014 12:01:42 AM,11/29/2014 12:03:43 AM,11/29/2014 12:08:25 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 12:19:53 AM,1400 Block of LA SALLE AVE,San Francisco,94124,B10,17,6517,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7349050342849, -122.386304220968)",143330002-B10 +143631494,86,14129846,Medical Incident,12/29/2014,12/29/2014,12/29/2014 12:30:52 PM,12/29/2014 12:33:10 PM,12/29/2014 12:33:41 PM,12/29/2014 12:34:00 PM,12/29/2014 12:44:49 PM,12/29/2014 01:08:17 PM,12/29/2014 01:38:56 PM,Code 2 Transport,12/29/2014 02:17:48 PM,100 Block of RALSTON ST,San Francisco,94132,B09,33,8411,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7151777593562, -122.468838490776)",143631494-86 +151713100,E17,15065478,Medical Incident,06/20/2015,06/20/2015,06/20/2015 08:15:31 PM,06/20/2015 08:18:24 PM,06/20/2015 08:18:38 PM,06/20/2015 08:20:06 PM,06/20/2015 08:22:59 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Code 2 Transport,06/20/2015 08:29:34 PM,KISKA RD/DORMITORY RD,San Francisco,94124,B10,17,6625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7296596946267, -122.374928082685)",151713100-E17 +141652565,E08,14056993,Medical Incident,06/14/2014,06/14/2014,06/14/2014 05:31:08 PM,06/14/2014 05:38:08 PM,06/14/2014 05:45:31 PM,06/14/2014 05:47:27 PM,06/14/2014 05:50:36 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Other,06/14/2014 06:50:27 PM,300 Block of TERRY A FRANCOIS BLVD,San Francisco,94158,B03,8,950,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7757198568858, -122.387651994804)",141652565-E08 +150181746,AM08,15007116,Medical Incident,01/18/2015,01/18/2015,01/18/2015 01:28:09 PM,01/18/2015 01:29:46 PM,01/18/2015 01:29:56 PM,01/18/2015 01:30:22 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,No Merit,01/18/2015 01:35:35 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",150181746-AM08 +152982390,E02,15114485,Other,10/25/2015,10/25/2015,10/25/2015 04:44:37 PM,10/25/2015 04:44:37 PM,10/25/2015 04:44:37 PM,10/25/2015 04:44:37 PM,10/25/2015 04:44:37 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Fire,10/25/2015 04:44:37 PM,KEARNY ST/PACIFIC AV,San Francisco,94133,B01,13,1246,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7970898479827, -122.405318332195)",152982390-E02 +160980347,63,16038761,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:12:06 AM,04/07/2016 03:14:00 AM,04/07/2016 03:14:44 AM,04/07/2016 03:15:32 AM,04/07/2016 03:22:25 AM,04/07/2016 03:44:49 AM,04/07/2016 03:58:41 AM,Code 2 Transport,04/07/2016 04:01:07 AM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160980347-63 +160950470,52,16037523,Medical Incident,04/04/2016,04/03/2016,04/04/2016 06:39:15 AM,04/04/2016 06:39:53 AM,04/04/2016 06:40:16 AM,04/04/2016 06:40:29 AM,04/04/2016 06:43:34 AM,04/04/2016 07:00:22 AM,04/04/2016 07:21:43 AM,Code 2 Transport,04/04/2016 07:46:50 AM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",160950470-52 +160981976,57,16038925,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:12:44 PM,04/07/2016 01:14:28 PM,04/07/2016 01:14:42 PM,04/07/2016 01:15:24 PM,04/07/2016 01:20:40 PM,04/07/2016 01:41:18 PM,04/07/2016 02:06:23 PM,Code 2 Transport,04/07/2016 02:44:23 PM,1200 Block of KEARNY ST,San Francisco,94133,B01,2,1251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7994263611943, -122.405808002393)",160981976-57 +151202686,KM06,15045515,Medical Incident,04/30/2015,04/30/2015,04/30/2015 04:33:09 PM,04/30/2015 04:33:29 PM,04/30/2015 04:47:41 PM,04/30/2015 04:48:01 PM,04/30/2015 05:12:14 PM,04/30/2015 05:30:22 PM,04/30/2015 05:46:14 PM,Code 2 Transport,04/30/2015 06:21:57 PM,BRYANT ST/5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",151202686-KM06 +141150333,68,14038955,Medical Incident,04/25/2014,04/25/2014,04/25/2014 09:08:43 PM,04/25/2014 09:08:43 PM,04/25/2014 09:11:25 PM,04/25/2014 09:11:36 PM,04/25/2014 09:33:29 PM,04/25/2014 09:45:45 PM,04/25/2014 10:07:32 PM,Code 2 Transport,04/25/2014 10:38:35 PM,100 Block of TUCKER AVE,SAN FRANCISCO,94134,B09,44,6311,,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7161672177858, -122.406980111926)",141150333-68 +143112056,KM06,14110159,Medical Incident,11/07/2014,11/07/2014,11/07/2014 02:18:37 PM,11/07/2014 02:20:17 PM,11/07/2014 02:21:00 PM,11/07/2014 02:21:43 PM,11/07/2014 02:25:41 PM,11/07/2014 03:04:19 PM,11/07/2014 03:18:26 PM,Code 2 Transport,11/07/2014 03:56:13 PM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",143112056-KM06 +150671358,E01,15025579,Medical Incident,03/08/2015,03/08/2015,03/08/2015 12:08:05 PM,03/08/2015 12:09:35 PM,03/08/2015 12:11:13 PM,03/08/2015 12:11:13 PM,03/08/2015 12:12:12 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,Patient Declined Transport,03/08/2015 12:13:33 PM,HOWARD ST/9TH ST,San Francisco,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",150671358-E01 +142553443,E07,14089191,Smoke Investigation (Outside),09/12/2014,09/12/2014,09/12/2014 09:04:38 PM,09/12/2014 09:06:49 PM,09/12/2014 09:07:08 PM,09/12/2014 09:07:54 PM,09/12/2014 09:10:41 PM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Fire,09/12/2014 09:28:59 PM,100 Block of SAN CARLOS ST,San Francisco,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7609848622239, -122.420120540924)",142553443-E07 +150302720,E03,15011652,Medical Incident,01/30/2015,01/30/2015,01/30/2015 04:58:40 PM,01/30/2015 04:59:34 PM,01/30/2015 05:00:06 PM,01/30/2015 05:02:06 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Code 2 Transport,01/30/2015 05:03:40 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Non Life-threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",150302720-E03 +160923291,75,16036588,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:55:57 PM,04/01/2016 07:56:55 PM,04/01/2016 07:57:16 PM,04/01/2016 07:57:26 PM,04/01/2016 08:16:38 PM,04/01/2016 08:32:45 PM,04/01/2016 08:54:25 PM,Code 2 Transport,04/01/2016 09:39:45 PM,400 Block of LAKEVIEW AVE,San Francisco,94112,B09,33,8323,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7180076683643, -122.453703341526)",160923291-75 +160972259,56,16038451,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:56:36 PM,04/06/2016 01:59:12 PM,04/06/2016 02:00:45 PM,04/06/2016 02:01:35 PM,04/06/2016 02:11:39 PM,04/06/2016 02:16:49 PM,04/06/2016 02:46:49 PM,Code 2 Transport,04/06/2016 03:18:03 PM,0 Block of 3RD ST,San Francisco,94103,B03,1,2178,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.786410584846, -122.402331679146)",160972259-56 +143120772,87,14110409,Medical Incident,11/08/2014,11/07/2014,11/08/2014 07:46:01 AM,11/08/2014 07:46:31 AM,11/08/2014 07:46:46 AM,11/08/2014 07:46:55 AM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Cancelled,11/08/2014 07:57:11 AM,0 Block of WALTER U LUM PL,San Francisco,94108,B01,13,1313,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7947752887967, -122.405822767871)",143120772-87 +161002790,AM10,16039895,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:11:26 PM,04/09/2016 07:14:05 PM,04/09/2016 07:16:41 PM,04/09/2016 07:17:35 PM,04/09/2016 07:23:40 PM,04/09/2016 07:36:54 PM,04/09/2016 07:49:14 PM,Code 2 Transport,04/09/2016 08:15:18 PM,0 Block of STOCKTON ST,San Francisco,94102,B03,1,1322,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7860199001268, -122.406349577387)",161002790-AM10 +160983348,64,16039079,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:16:33 PM,04/07/2016 07:18:06 PM,04/07/2016 07:18:20 PM,04/07/2016 07:19:27 PM,04/07/2016 07:27:08 PM,04/07/2016 07:29:05 PM,04/07/2016 08:07:49 PM,Code 2 Transport,04/07/2016 08:52:44 PM,200 Block of ADDISON ST,San Francisco,94131,B06,26,8122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7378218134824, -122.432398313711)",160983348-64 +160962914,63,16038106,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:09:47 PM,04/05/2016 05:12:29 PM,04/05/2016 05:13:10 PM,04/05/2016 05:13:27 PM,04/05/2016 05:22:53 PM,04/05/2016 05:51:24 PM,04/05/2016 06:15:21 PM,Code 2 Transport,04/05/2016 06:38:13 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160962914-63 +153461646,B01,15133218,Alarms,12/12/2015,12/12/2015,12/12/2015 11:50:06 AM,12/12/2015 11:51:21 AM,12/12/2015 11:51:34 AM,12/12/2015 11:53:29 AM,12/12/2015 11:55:15 AM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Cancelled,12/12/2015 11:58:21 AM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7974024321534, -122.409965345352)",153461646-B01 +160962375,57,16038061,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:09:34 PM,04/05/2016 03:10:46 PM,04/05/2016 03:11:24 PM,04/05/2016 03:11:33 PM,04/05/2016 03:22:54 PM,04/05/2016 03:45:04 PM,04/05/2016 04:03:05 PM,Code 2 Transport,04/05/2016 05:07:51 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160962375-57 +160951327,56,16037587,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:01:20 AM,04/04/2016 11:01:33 AM,04/04/2016 11:02:37 AM,04/04/2016 11:06:34 AM,04/04/2016 11:11:12 AM,04/04/2016 11:30:00 AM,04/04/2016 11:39:47 AM,Code 2 Transport,04/04/2016 12:27:05 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",160951327-56 +151670846,54,15063770,Medical Incident,06/16/2015,06/16/2015,06/16/2015 09:04:28 AM,06/16/2015 09:07:04 AM,06/16/2015 09:07:21 AM,06/16/2015 09:08:09 AM,06/16/2015 09:17:20 AM,06/16/2015 09:39:27 AM,06/16/2015 09:57:31 AM,Code 2 Transport,06/16/2015 10:41:18 AM,0 Block of SOUTH VAN NESS AVE,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7741251002903, -122.418810211803)",151670846-54 +160941480,85,16037239,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:18:46 AM,04/03/2016 11:18:46 AM,04/03/2016 11:19:52 AM,04/03/2016 11:20:00 AM,04/03/2016 11:30:43 AM,04/03/2016 12:00:27 PM,04/03/2016 01:03:33 PM,Code 2 Transport,04/03/2016 01:51:42 PM,JOHN F KENNEDY DR/6TH AV,San Francisco,94122,B07,31,7122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7721623498746, -122.463332858858)",160941480-85 +143643531,E01,14130438,Medical Incident,12/30/2014,12/30/2014,12/30/2014 09:28:26 PM,12/30/2014 09:30:25 PM,12/30/2014 09:30:41 PM,12/30/2014 09:32:07 PM,12/30/2014 09:37:00 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 09:41:40 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",143643531-E01 +160964226,AM24,16038233,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:47:09 PM,04/05/2016 11:47:40 PM,04/05/2016 11:47:47 PM,04/05/2016 11:48:25 PM,04/05/2016 11:54:13 PM,04/06/2016 12:03:21 AM,04/06/2016 12:17:27 AM,Code 2 Transport,04/06/2016 12:40:25 AM,1700 Block of MCKINNON AVE,San Francisco,94124,B10,25,6455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7374788316121, -122.391986352639)",160964226-AM24 +150483054,76,15018722,Medical Incident,02/17/2015,02/17/2015,02/17/2015 06:31:35 PM,02/17/2015 06:31:57 PM,02/17/2015 06:32:12 PM,02/17/2015 06:32:40 PM,02/17/2015 06:34:50 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Patient Declined Transport,02/17/2015 06:57:02 PM,3900 Block of 17TH ST,San Francisco,94114,B05,6,5417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7625723537425, -122.43466870921)",150483054-76 +160941386,57,16037229,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:56:44 AM,04/03/2016 10:56:44 AM,04/03/2016 10:57:10 AM,04/03/2016 10:59:30 AM,04/03/2016 11:03:22 AM,04/03/2016 11:24:27 AM,04/03/2016 12:05:11 PM,Code 2 Transport,04/03/2016 12:44:43 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7206322139604, -122.437984003995)",160941386-57 +160930818,65,16036755,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:24:34 AM,04/02/2016 08:25:46 AM,04/02/2016 08:26:00 AM,04/02/2016 08:26:39 AM,04/02/2016 08:31:54 AM,04/02/2016 08:49:18 AM,04/02/2016 09:01:16 AM,Code 3 Transport,04/02/2016 09:49:24 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160930818-65 +141220357,54,14041464,Medical Incident,05/02/2014,05/02/2014,05/02/2014 08:15:03 PM,05/02/2014 08:15:17 PM,05/02/2014 08:15:50 PM,05/02/2014 08:16:16 PM,05/02/2014 08:21:07 PM,05/02/2014 08:31:34 PM,05/02/2014 08:41:26 PM,Code 2 Transport,05/02/2014 09:16:55 PM,48TH AV/JUDAH ST,SAN FRANCISCO,94122,B08,23,7723,3,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7603298172556, -122.508067560262)",141220357-54 +161002367,88,16039847,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:05:06 PM,04/09/2016 05:07:19 PM,04/09/2016 05:07:44 PM,04/09/2016 05:07:55 PM,04/09/2016 05:09:53 PM,04/09/2016 05:37:32 PM,04/09/2016 05:47:13 PM,Code 2 Transport,04/09/2016 06:33:26 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",161002367-88 +142110409,E01,14073009,Outside Fire,07/30/2014,07/29/2014,07/30/2014 05:35:16 AM,07/30/2014 05:36:15 AM,07/30/2014 05:37:28 AM,07/30/2014 05:37:28 AM,07/30/2014 05:38:08 AM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/30/2014 05:45:15 AM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Fire,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",142110409-E01 +141361117,E35,14046505,Traffic Collision,05/16/2014,05/16/2014,05/16/2014 10:14:16 AM,05/16/2014 10:15:10 AM,05/16/2014 10:15:51 AM,05/16/2014 10:17:02 AM,05/16/2014 10:22:16 AM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Code 2 Transport,05/16/2014 10:40:09 AM,MISSION ST/NEW MONTGOMERY ST,San Francisco,94105,B03,1,2145,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",141361117-E35 +160950200,KM03,16037491,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:33:38 AM,04/04/2016 02:33:38 AM,04/04/2016 02:33:47 AM,04/04/2016 02:34:16 AM,04/04/2016 02:42:06 AM,04/04/2016 03:01:50 AM,04/04/2016 03:13:03 AM,Code 2 Transport,04/04/2016 03:51:59 AM,MISSION ST/LEO ST,San Francisco,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7224652192127, -122.436468164217)",160950200-KM03 +142022006,T09,14069912,Traffic Collision,07/21/2014,07/21/2014,07/21/2014 02:53:05 PM,07/21/2014 02:53:50 PM,07/21/2014 02:54:53 PM,07/21/2014 02:55:19 PM,07/21/2014 03:00:27 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Other,07/21/2014 03:00:55 PM,CALL BOX: MANSELL ST/DARTMOUTH ST,San Francisco,94134,B09,44,6322,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,9,10,McLaren Park,"(37.7194470839158, -122.409038060668)",142022006-T09 +152160807,E43,15082143,Medical Incident,08/04/2015,08/04/2015,08/04/2015 08:47:24 AM,08/04/2015 08:47:47 AM,08/04/2015 08:48:04 AM,08/04/2015 08:49:19 AM,08/04/2015 08:50:24 AM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Code 2 Transport,08/04/2015 09:01:40 AM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.715844082258, -122.431797985467)",152160807-E43 +160952296,KM11,16037663,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:48:43 PM,04/04/2016 02:50:19 PM,04/04/2016 02:56:32 PM,04/04/2016 02:57:10 PM,04/04/2016 03:02:26 PM,04/04/2016 03:27:14 PM,04/04/2016 03:36:48 PM,Code 2 Transport,04/04/2016 04:02:07 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160952296-KM11 +150903258,RS1,15034402,Structure Fire,03/31/2015,03/31/2015,03/31/2015 07:45:08 PM,03/31/2015 07:46:33 PM,03/31/2015 07:47:21 PM,03/31/2015 07:49:52 PM,03/31/2015 07:55:20 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Fire,03/31/2015 07:55:24 PM,1700 Block of MCALLISTER ST,San Francisco,94117,B05,21,4254,3,3,3,false,Alarm,1,RESCUE SQUAD,8,5,5,Western Addition,"(37.7774258159143, -122.440841432204)",150903258-RS1 +150322465,E22,15012424,Medical Incident,02/01/2015,02/01/2015,02/01/2015 04:04:48 PM,02/01/2015 04:06:41 PM,02/01/2015 04:06:59 PM,02/01/2015 04:08:16 PM,02/01/2015 04:14:26 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 04:18:01 PM,1400 Block of 21ST AVE,San Francisco,94122,B08,22,7426,2,2,2,false,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7606747175008, -122.479001684778)",150322465-E22 +142632747,E36,14092096,Alarms,09/20/2014,09/20/2014,09/20/2014 06:05:46 PM,09/20/2014 06:07:41 PM,09/20/2014 06:08:49 PM,09/20/2014 06:15:31 PM,09/20/2014 06:15:31 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Fire,09/20/2014 06:20:08 PM,400 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Alarm,1,ENGINE,3,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",142632747-E36 +143423646,E01,14121722,Medical Incident,12/08/2014,12/08/2014,12/08/2014 08:57:50 PM,12/08/2014 08:57:50 PM,12/08/2014 08:58:10 PM,12/08/2014 08:59:19 PM,12/08/2014 09:03:16 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 09:10:07 PM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",143423646-E01 +160963385,76,16038146,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:55:03 PM,04/05/2016 06:56:56 PM,04/05/2016 06:57:12 PM,04/05/2016 06:57:25 PM,04/05/2016 07:03:43 PM,04/05/2016 07:30:36 PM,04/05/2016 07:56:24 PM,Code 2 Transport,04/05/2016 08:26:18 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160963385-76 +153260189,85,15125349,Medical Incident,11/22/2015,11/21/2015,11/22/2015 01:11:43 AM,11/22/2015 01:13:30 AM,11/22/2015 01:13:47 AM,11/22/2015 01:14:04 AM,11/22/2015 01:30:31 AM,11/22/2015 01:43:25 AM,11/22/2015 01:52:08 AM,Code 2 Transport,11/22/2015 02:34:54 AM,300 Block of DIVISADERO ST,San Francisco,94117,B05,21,4144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7726538451108, -122.437444929872)",153260189-85 +150283120,E19,15010877,Structure Fire,01/28/2015,01/28/2015,01/28/2015 06:44:43 PM,01/28/2015 06:45:42 PM,01/29/2015 03:30:35 AM,01/29/2015 03:36:51 AM,01/29/2015 05:58:17 AM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Code 2 Transport,01/29/2015 08:16:27 AM,3200 Block of 22ND ST,,94110,B06,7,5472,3,3,3,true,Fire,4,ENGINE,63,6,9,Mission,"(37.7554560834882, -122.419308328755)",150283120-E19 +143632265,60,14129913,Medical Incident,12/29/2014,12/29/2014,12/29/2014 04:06:26 PM,12/29/2014 04:08:03 PM,12/29/2014 04:08:31 PM,12/29/2014 04:08:49 PM,12/29/2014 04:24:08 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Patient Declined Transport,12/29/2014 04:43:54 PM,2200 Block of NORTH POINT ST,San Francisco,94123,B04,16,4221,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8026137463285, -122.444236772715)",143632265-60 +141611266,KM09,14055472,Medical Incident,06/10/2014,06/10/2014,06/10/2014 11:11:17 AM,06/10/2014 11:14:30 AM,06/10/2014 11:17:09 AM,06/10/2014 11:17:52 AM,06/10/2014 11:39:13 AM,06/10/2014 11:46:01 AM,06/10/2014 12:06:33 PM,Code 2 Transport,06/10/2014 12:36:37 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",141611266-KM09 +152761961,79,15105799,Medical Incident,10/03/2015,10/03/2015,10/03/2015 01:49:04 PM,10/03/2015 01:49:11 PM,10/03/2015 01:49:26 PM,10/03/2015 01:49:32 PM,10/03/2015 02:01:16 PM,10/03/2015 02:10:14 PM,10/03/2015 02:26:31 PM,Code 2 Transport,10/03/2015 02:45:13 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7709213255516, -122.420166970004)",152761961-79 +160964081,60,16038212,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:45:21 PM,04/05/2016 10:47:01 PM,04/05/2016 10:48:22 PM,04/05/2016 10:48:41 PM,04/05/2016 10:54:40 PM,04/05/2016 11:00:42 PM,04/05/2016 11:09:52 PM,Code 3 Transport,04/06/2016 12:09:04 AM,0 Block of NAVAJO AVE,San Francisco,94112,B09,15,8332,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7200829725539, -122.443857351608)",160964081-60 +141792505,KM01,14061858,Traffic Collision,06/28/2014,06/28/2014,06/28/2014 04:55:25 PM,06/28/2014 04:58:48 PM,06/28/2014 05:00:16 PM,06/28/2014 05:01:46 PM,06/28/2014 05:10:57 PM,06/28/2014 05:26:52 PM,06/28/2014 06:05:38 PM,Code 2 Transport,06/28/2014 06:10:35 PM,1000 Block of VERMONT ST,San Francisco,94110,B02,36,5116,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7563940950772, -122.403638440407)",141792505-KM01 +142201124,RC2,14076278,Other,08/08/2014,08/08/2014,08/08/2014 10:17:25 AM,08/08/2014 10:17:25 AM,08/08/2014 10:17:25 AM,08/08/2014 10:17:25 AM,08/08/2014 10:17:25 AM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Fire,08/08/2014 11:04:41 AM,400 Block of MIDDLE WEST DR,San Francisco,94122,B07,23,7565,3,3,3,true,Alarm,1,RESCUE CAPTAIN,1,7,1,Golden Gate Park,"(37.7664523569659, -122.495934078446)",142201124-RC2 +160962447,81,16038066,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:27:02 PM,04/05/2016 03:28:11 PM,04/05/2016 03:28:21 PM,04/05/2016 03:28:31 PM,04/05/2016 03:33:24 PM,04/05/2016 03:47:51 PM,04/05/2016 04:12:49 PM,Code 2 Transport,04/05/2016 04:58:30 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",160962447-81 +152161540,E13,15082224,Medical Incident,08/04/2015,08/04/2015,08/04/2015 12:23:35 PM,08/04/2015 12:24:11 PM,08/04/2015 12:29:08 PM,08/04/2015 12:29:41 PM,08/04/2015 12:33:34 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,No Merit,08/04/2015 12:35:12 PM,POWELL ST/NORTH POINT ST,San Francisco,94133,B01,28,1344,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8067580824981, -122.412141425527)",152161540-E13 +152432323,76,15092743,Medical Incident,08/31/2015,08/31/2015,08/31/2015 03:07:02 PM,08/31/2015 03:08:20 PM,08/31/2015 03:08:57 PM,08/31/2015 03:09:04 PM,08/31/2015 03:27:44 PM,08/31/2015 03:39:09 PM,08/31/2015 03:59:32 PM,Code 2 Transport,08/31/2015 04:37:15 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7323409564372, -122.406116198284)",152432323-76 +152220276,64,15084447,Medical Incident,08/10/2015,08/09/2015,08/10/2015 03:04:21 AM,08/10/2015 03:08:14 AM,08/10/2015 03:08:25 AM,08/10/2015 03:08:48 AM,08/10/2015 03:13:57 AM,08/10/2015 03:29:01 AM,08/10/2015 03:40:23 AM,Code 2 Transport,08/10/2015 03:59:58 AM,200 Block of MAIN ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7900295956883, -122.392583899031)",152220276-64 +152242857,T09,15085465,Structure Fire,08/12/2015,08/12/2015,08/12/2015 05:23:04 PM,08/12/2015 05:23:04 PM,08/12/2015 05:23:45 PM,08/12/2015 05:25:58 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 05:26:35 PM,AUGUSTA ST/CHARTER OAK AV,San Francisco,94124,B10,42,6364,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7343432018483, -122.404544035212)",152242857-T09 +152393423,55,15091165,Medical Incident,08/27/2015,08/27/2015,08/27/2015 07:18:08 PM,08/27/2015 07:20:18 PM,08/27/2015 07:21:06 PM,08/27/2015 07:21:15 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Other,08/27/2015 07:24:23 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",152393423-55 +143290627,87,14116576,Medical Incident,11/25/2014,11/24/2014,11/25/2014 07:30:23 AM,11/25/2014 07:30:58 AM,11/25/2014 07:32:54 AM,11/25/2014 07:35:45 AM,11/25/2014 07:43:52 AM,11/25/2014 07:49:44 AM,11/25/2014 08:10:46 AM,Code 2 Transport,11/25/2014 08:38:34 AM,900 Block of BRYANT ST,San Francisco,94103,B03,8,2311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7740297538027, -122.404968319078)",143290627-87 +141580115,E01,14054282,Medical Incident,06/07/2014,06/06/2014,06/07/2014 12:54:03 AM,06/07/2014 12:54:52 AM,06/07/2014 12:55:55 AM,06/07/2014 12:56:59 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Code 2 Transport,06/07/2014 01:11:07 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",141580115-E01 +151061078,E10,15039983,Medical Incident,04/16/2015,04/16/2015,04/16/2015 09:34:38 AM,04/16/2015 09:34:57 AM,04/16/2015 09:35:11 AM,04/16/2015 09:37:30 AM,04/16/2015 09:46:56 AM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Code 2 Transport,04/16/2015 09:49:27 AM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,7,2,Presidio Heights,"(37.7867794977083, -122.450948438002)",151061078-E10 +152320306,AM20,15088362,Medical Incident,08/20/2015,08/19/2015,08/20/2015 03:02:33 AM,08/20/2015 03:04:28 AM,08/20/2015 03:04:41 AM,08/20/2015 03:05:27 AM,08/20/2015 03:13:36 AM,08/20/2015 03:27:12 AM,08/20/2015 03:41:45 AM,Code 2 Transport,08/20/2015 04:12:26 AM,400 Block of 16TH AVE,San Francisco,94118,B07,31,7161,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7795682474859, -122.474950761103)",152320306-AM20 +142961453,RS1,14104361,Medical Incident,10/23/2014,10/23/2014,10/23/2014 11:33:57 AM,10/23/2014 11:35:38 AM,10/23/2014 11:36:35 AM,10/23/2014 11:36:43 AM,10/23/2014 11:40:27 AM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Unable to Locate,10/23/2014 11:44:00 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",142961453-RS1 +152201821,KM08,15083823,Medical Incident,08/08/2015,08/08/2015,08/08/2015 01:32:15 PM,08/08/2015 01:32:43 PM,08/08/2015 01:33:14 PM,08/08/2015 01:33:45 PM,08/08/2015 01:53:58 PM,08/08/2015 02:25:44 PM,08/08/2015 02:51:18 PM,Code 2 Transport,08/08/2015 03:32:14 PM,2400 Block of 39TH AVE,San Francisco,94116,B08,18,7617,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7411681900571, -122.497119701951)",152201821-KM08 +151400710,KM01,15053070,Medical Incident,05/20/2015,05/20/2015,05/20/2015 08:12:15 AM,05/20/2015 08:13:42 AM,05/20/2015 08:16:06 AM,05/20/2015 08:16:52 AM,05/20/2015 08:35:13 AM,05/20/2015 08:36:17 AM,05/20/2015 08:48:14 AM,Code 2 Transport,05/20/2015 09:13:30 AM,GEARY BL/WEBSTER ST,San Francisco,94115,B04,5,3432,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.7845682402461, -122.431204945516)",151400710-KM01 +141030303,AM22,14034885,Medical Incident,04/13/2014,04/13/2014,04/13/2014 07:18:25 PM,04/13/2014 07:19:31 PM,04/13/2014 07:20:05 PM,04/13/2014 07:20:05 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Code 2 Transport,04/25/2016 01:17:54 PM,1100 Block of MARKET ST,,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141030303-AM22 +141681479,AM24,14057935,Medical Incident,06/17/2014,06/17/2014,06/17/2014 12:19:06 PM,06/17/2014 12:19:20 PM,06/17/2014 12:21:47 PM,06/17/2014 12:22:30 PM,06/17/2014 12:27:12 PM,06/17/2014 12:46:54 PM,06/17/2014 01:17:59 PM,Code 2 Transport,06/17/2014 01:50:29 PM,0 Block of MIRALOMA DR,San Francisco,94127,B08,39,8572,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7391526905065, -122.461315603134)",141681479-AM24 +143491810,B07,14124646,Alarms,12/15/2014,12/15/2014,12/15/2014 01:54:24 PM,12/15/2014 01:55:32 PM,12/15/2014 01:55:38 PM,12/15/2014 01:56:36 PM,12/15/2014 02:04:16 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 02:08:32 PM,500 Block of CLAYTON ST,San Francisco,94117,B05,12,4525,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7702730913586, -122.448605048056)",143491810-B07 +142982568,68,14105257,Medical Incident,10/25/2014,10/25/2014,10/25/2014 04:48:42 PM,10/25/2014 04:49:37 PM,10/25/2014 04:50:02 PM,10/25/2014 04:50:08 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,No Merit,10/25/2014 04:59:15 PM,FILBERT ST/GRANT AV,San Francisco,94133,B01,28,1265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8015708251232, -122.407769591357)",142982568-68 +160931160,65,16036790,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 10:14:31 AM,04/02/2016 10:14:31 AM,04/02/2016 10:19:32 AM,04/02/2016 10:19:40 AM,04/02/2016 10:27:51 AM,04/02/2016 10:50:24 AM,04/02/2016 11:17:12 AM,Code 2 Transport,04/02/2016 11:42:39 AM,22ND AV/LAWTON ST,San Francisco,94122,B08,22,7447,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7578254814546, -122.479945065812)",160931160-65 +141691643,E28,14058342,Medical Incident,06/18/2014,06/18/2014,06/18/2014 01:09:51 PM,06/18/2014 01:10:44 PM,06/18/2014 01:11:21 PM,06/18/2014 01:12:22 PM,06/18/2014 01:16:30 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,No Merit,06/18/2014 01:21:13 PM,2600 Block of MASON ST,San Francisco,94133,B01,28,1344,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8079604704743, -122.414001361661)",141691643-E28 +152252695,T15,15085848,Structure Fire,08/13/2015,08/13/2015,08/13/2015 04:38:11 PM,08/13/2015 04:39:20 PM,08/13/2015 04:39:35 PM,08/13/2015 04:40:50 PM,08/13/2015 04:44:38 PM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Fire,08/13/2015 04:45:13 PM,MISSION ST/AVALON AV,San Francisco,94112,B09,32,6113,3,3,3,false,Alarm,1,TRUCK,4,9,11,Outer Mission,"(37.7276372090899, -122.432447324509)",152252695-T15 +151021156,E01,15038517,Medical Incident,04/12/2015,04/12/2015,04/12/2015 10:20:54 AM,04/12/2015 10:20:54 AM,04/12/2015 10:21:24 AM,04/12/2015 10:23:03 AM,04/12/2015 10:24:59 AM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Code 2 Transport,04/12/2015 10:30:26 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",151021156-E01 +150683467,B04,15026131,Alarms,03/09/2015,03/09/2015,03/09/2015 07:51:22 PM,03/09/2015 07:53:21 PM,03/09/2015 07:53:30 PM,03/09/2015 07:53:56 PM,03/09/2015 07:56:27 PM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Fire,03/09/2015 08:03:54 PM,3100 Block of SACRAMENTO ST,San Francisco,94115,B04,10,4264,3,3,3,false,Alarm,1,CHIEF,1,4,2,Pacific Heights,"(37.7884127178988, -122.444753541117)",150683467-B04 +141180086,AM02,14039730,Medical Incident,04/28/2014,04/28/2014,04/28/2014 08:26:38 AM,04/28/2014 08:29:20 AM,04/28/2014 08:33:39 AM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Other,04/25/2016 01:17:39 PM,MARKET ST/7TH ST,SAN FRANCISCO,94103,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",141180086-AM02 +143443131,E03,14122447,Medical Incident,12/10/2014,12/10/2014,12/10/2014 06:16:06 PM,12/10/2014 06:17:29 PM,12/10/2014 06:22:09 PM,12/10/2014 06:22:53 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Unable to Locate,12/10/2014 06:43:17 PM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",143443131-E03 +142450915,B02,14085281,Alarms,09/02/2014,09/02/2014,09/02/2014 08:54:20 AM,09/02/2014 08:55:14 AM,09/02/2014 08:56:04 AM,09/02/2014 08:56:17 AM,09/02/2014 09:04:19 AM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/02/2014 09:10:04 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",142450915-B02 +153472458,85,15133764,Structure Fire,12/13/2015,12/13/2015,12/13/2015 04:40:23 PM,12/13/2015 04:42:25 PM,12/13/2015 04:45:34 PM,12/13/2015 04:45:53 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Fire,12/13/2015 04:49:41 PM,400 Block of 31ST AVE,San Francisco,94121,B07,14,7237,3,3,3,true,Alarm,1,MEDIC,5,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",153472458-85 +152892135,T04,15111055,Structure Fire,10/16/2015,10/16/2015,10/16/2015 02:23:11 PM,10/16/2015 02:23:37 PM,10/16/2015 02:24:10 PM,10/16/2015 02:30:52 PM,10/16/2015 02:36:35 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Cancelled,10/16/2015 02:38:18 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,3,3,3,false,Alarm,1,TRUCK,4,5,5,Japantown,"(37.7842371111665, -122.440760813886)",152892135-T04 +150341616,T18,15013092,Alarms,02/03/2015,02/03/2015,02/03/2015 12:20:59 PM,02/03/2015 12:22:10 PM,02/03/2015 12:22:16 PM,02/03/2015 12:23:54 PM,02/03/2015 12:27:03 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Fire,02/03/2015 12:29:10 PM,2500 Block of 34TH AVE,San Francisco,94116,B08,18,7554,3,3,3,false,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7395472638893, -122.491499679744)",150341616-T18 +160952219,62,16037659,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:31:02 PM,04/04/2016 02:33:05 PM,04/04/2016 02:33:24 PM,04/04/2016 02:33:38 PM,04/04/2016 02:47:29 PM,04/04/2016 03:06:00 PM,04/04/2016 03:27:15 PM,Code 2 Transport,04/04/2016 04:05:33 PM,2900 Block of FOLSOM ST,San Francisco,94110,B06,7,5614,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7500991052351, -122.41391717161)",160952219-62 +142322119,54,14080622,Medical Incident,08/20/2014,08/20/2014,08/20/2014 02:32:41 PM,08/20/2014 02:34:13 PM,08/20/2014 02:45:43 PM,08/20/2014 02:46:50 PM,08/20/2014 02:52:12 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Patient Declined Transport,08/20/2014 03:38:55 PM,200 Block of POTRERO AVE,San Francisco,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,10,Mission,"(37.7664376828612, -122.407540732549)",142322119-54 +143070193,RC1,14108470,Medical Incident,11/03/2014,11/02/2014,11/03/2014 01:56:09 AM,11/03/2014 01:57:43 AM,11/03/2014 01:59:56 AM,11/03/2014 02:01:14 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/03/2014 02:03:21 AM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7804785121736, -122.412512257219)",143070193-RC1 +143600585,RC1,14128695,Medical Incident,12/26/2014,12/26/2014,12/26/2014 08:20:37 AM,12/26/2014 08:20:37 AM,12/26/2014 08:21:23 AM,12/26/2014 08:23:11 AM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Code 2 Transport,12/26/2014 08:27:21 AM,LEAVENWORTH ST/MCALLISTER ST,San Francisco,94102,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",143600585-RC1 +152761057,RC3,15105696,Medical Incident,10/03/2015,10/03/2015,10/03/2015 09:18:47 AM,10/03/2015 09:20:14 AM,10/03/2015 09:20:35 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,No Merit,10/03/2015 09:25:50 AM,3700 Block of 16TH ST,San Francisco,94114,B05,6,5233,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,5,8,Castro/Upper Market,"(37.7638400659979, -122.436945532546)",152761057-RC3 +160983861,62,16039125,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:09:45 PM,04/07/2016 10:11:09 PM,04/07/2016 10:11:17 PM,04/07/2016 10:11:25 PM,04/07/2016 10:21:27 PM,04/07/2016 10:41:25 PM,04/07/2016 11:09:23 PM,Code 2 Transport,04/07/2016 11:37:02 PM,1000 Block of DOLORES ST,San Francisco,94110,B06,11,5513,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7526439245964, -122.425087778383)",160983861-62 +151591837,AM12,15060736,Medical Incident,06/08/2015,06/08/2015,06/08/2015 01:01:11 PM,06/08/2015 01:01:44 PM,06/08/2015 01:08:50 PM,06/08/2015 01:09:34 PM,06/08/2015 01:13:51 PM,06/08/2015 01:34:58 PM,06/08/2015 01:46:20 PM,Code 2 Transport,06/08/2015 02:05:57 PM,400 Block of LIBERTY ST,San Francisco,94114,B06,11,5452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,8,Castro/Upper Market,"(37.7571444493487, -122.431267699117)",151591837-AM12 +153202763,75,15123133,Medical Incident,11/16/2015,11/16/2015,11/16/2015 05:18:31 PM,11/16/2015 05:19:35 PM,11/16/2015 05:20:00 PM,11/16/2015 05:20:13 PM,11/16/2015 05:23:21 PM,11/16/2015 05:37:27 PM,11/16/2015 05:55:34 PM,Code 2 Transport,11/16/2015 06:29:13 PM,1600 Block of KIRKWOOD AVE,San Francisco,94124,B10,25,6467,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7387417648077, -122.390854570377)",153202763-75 +151730660,T10,15065957,Alarms,06/22/2015,06/22/2015,06/22/2015 08:04:34 AM,06/22/2015 08:05:49 AM,06/22/2015 08:06:02 AM,06/22/2015 08:08:18 AM,06/22/2015 08:14:10 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Fire,06/22/2015 08:38:21 AM,1600 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,3,3,false,Alarm,1,TRUCK,2,5,5,Lone Mountain/USF,"(37.7741999233828, -122.443568815049)",151730660-T10 +150271512,61,15010390,Medical Incident,01/27/2015,01/27/2015,01/27/2015 11:49:32 AM,01/27/2015 11:49:56 AM,01/27/2015 11:50:03 AM,01/27/2015 11:51:02 AM,01/27/2015 11:55:17 AM,01/27/2015 12:22:38 PM,01/27/2015 12:41:53 PM,Code 2 Transport,01/27/2015 01:19:16 PM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",150271512-61 +160930265,61,16036694,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:47:37 AM,04/02/2016 01:49:11 AM,04/02/2016 01:49:21 AM,04/02/2016 01:49:31 AM,04/02/2016 01:53:58 AM,04/02/2016 02:15:52 AM,04/02/2016 02:21:42 AM,Code 2 Transport,04/02/2016 02:52:01 AM,MINNA ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7805353840251, -122.40816079453)",160930265-61 +142262365,E03,14078553,Medical Incident,08/14/2014,08/14/2014,08/14/2014 04:18:18 PM,08/14/2014 04:19:58 PM,08/14/2014 04:20:50 PM,08/14/2014 04:21:06 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Code 2 Transport,08/14/2014 04:21:36 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142262365-E03 +143371500,RC3,14119511,Medical Incident,12/03/2014,12/03/2014,12/03/2014 10:39:52 AM,12/03/2014 10:40:45 AM,12/03/2014 10:41:30 AM,12/03/2014 10:41:37 AM,12/03/2014 10:45:27 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Code 2 Transport,12/03/2014 11:19:33 AM,500 Block of 27TH ST,San Francisco,94131,B06,11,5553,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,8,Noe Valley,"(37.7464538550572, -122.432847009979)",143371500-RC3 +153053359,E41,15117269,Medical Incident,11/01/2015,11/01/2015,11/01/2015 05:21:59 PM,11/01/2015 05:22:55 PM,11/01/2015 05:23:08 PM,11/01/2015 05:24:45 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Against Medical Advice,11/01/2015 05:34:09 PM,900 Block of BUSH ST,San Francisco,94109,B01,41,1446,3,3,3,false,Non Life-threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7896888465146, -122.412913104115)",153053359-E41 +150880373,64,15033454,Medical Incident,03/29/2015,03/28/2015,03/29/2015 02:15:32 AM,03/29/2015 02:15:58 AM,03/29/2015 02:16:38 AM,03/29/2015 02:17:08 AM,03/29/2015 02:21:49 AM,03/29/2015 03:03:37 AM,03/29/2015 03:11:37 AM,Code 3 Transport,03/29/2015 03:47:24 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",150880373-64 +152043457,82,15077870,Medical Incident,07/23/2015,07/23/2015,07/23/2015 09:07:08 PM,07/23/2015 09:07:42 PM,07/23/2015 09:08:16 PM,07/23/2015 09:08:25 PM,07/23/2015 09:10:51 PM,07/23/2015 09:37:52 PM,07/23/2015 10:06:34 PM,Code 2 Transport,07/23/2015 10:41:29 PM,1700 Block of JACKSON ST,San Francisco,94109,B04,38,3231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7938847529032, -122.423882414366)",152043457-82 +141652330,81,14056976,Medical Incident,06/14/2014,06/14/2014,06/14/2014 04:30:37 PM,06/14/2014 04:31:10 PM,06/14/2014 04:31:37 PM,06/14/2014 04:35:08 PM,06/14/2014 04:35:08 PM,06/14/2014 04:41:05 PM,06/14/2014 05:04:10 PM,Code 2 Transport,06/14/2014 05:19:08 PM,JONES ST/GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",141652330-81 +142292670,73,14079658,Traffic Collision,08/17/2014,08/17/2014,08/17/2014 05:29:21 PM,08/17/2014 05:30:35 PM,08/17/2014 05:31:39 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,No Merit,08/17/2014 05:32:12 PM,VALENCIA ST/25TH ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7505058278022, -122.420507005779)",142292670-73 +141220237,E06,14041353,Traffic Collision,05/02/2014,05/02/2014,05/02/2014 02:37:20 PM,05/02/2014 02:37:51 PM,05/02/2014 02:38:07 PM,05/02/2014 02:38:52 PM,05/02/2014 02:42:10 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Code 2 Transport,05/02/2014 02:50:20 PM,18TH ST/DIAMOND ST,SAN FRANCISCO,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.760758109732, -122.437190626277)",141220237-E06 +153230732,E14,15124154,Outside Fire,11/19/2015,11/19/2015,11/19/2015 08:09:50 AM,11/19/2015 08:11:34 AM,11/19/2015 08:12:21 AM,11/19/2015 08:17:05 AM,11/19/2015 08:17:05 AM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Fire,11/19/2015 08:59:20 AM,25TH AV/FULTON ST,San Francisco,94121,B07,14,7211,3,3,3,true,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7725690611121, -122.484194200958)",153230732-E14 +142340609,T13,14081223,Alarms,08/22/2014,08/21/2014,08/22/2014 06:40:33 AM,08/22/2014 06:41:36 AM,08/22/2014 06:41:55 AM,08/22/2014 06:44:06 AM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 06:46:00 AM,500 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",142340609-T13 +141353044,AP,14046290,Other,05/15/2014,05/15/2014,05/15/2014 06:02:31 PM,05/15/2014 06:02:31 PM,05/15/2014 06:02:31 PM,05/15/2014 06:02:31 PM,05/15/2014 06:02:31 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/15/2014 06:02:31 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,,2,2,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",141353044-AP +160940099,AM16,16037102,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:27:21 AM,04/03/2016 12:29:58 AM,04/03/2016 12:30:05 AM,04/03/2016 12:30:45 AM,04/03/2016 12:36:04 AM,04/03/2016 12:37:51 AM,04/03/2016 12:55:48 AM,Code 2 Transport,04/03/2016 01:16:07 AM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",160940099-AM16 +153030952,74,15116131,Medical Incident,10/30/2015,10/30/2015,10/30/2015 08:56:17 AM,10/30/2015 08:58:02 AM,10/30/2015 08:59:01 AM,10/30/2015 08:59:10 AM,10/30/2015 09:07:26 AM,10/30/2015 09:40:42 AM,10/30/2015 09:52:04 AM,Code 2 Transport,10/30/2015 10:14:57 AM,1500 Block of VAN NESS AVE,San Francisco,94109,B04,38,3155,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",153030952-74 +150713230,E36,15027241,Medical Incident,03/12/2015,03/12/2015,03/12/2015 06:36:19 PM,03/12/2015 06:42:10 PM,03/12/2015 06:42:24 PM,03/12/2015 06:45:19 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Code 2 Transport,03/12/2015 06:56:30 PM,11TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Mission,"(37.7706298531325, -122.41247993514)",150713230-E36 +160930800,79,16036753,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:17:07 AM,04/02/2016 08:17:40 AM,04/02/2016 08:18:52 AM,04/02/2016 08:19:05 AM,04/02/2016 08:25:13 AM,04/02/2016 08:35:14 AM,04/02/2016 08:44:41 AM,Code 2 Transport,04/02/2016 09:07:41 AM,700 Block of 2ND AVE,San Francisco,94118,B07,31,7121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7748635124053, -122.459606389961)",160930800-79 +152760596,60,15105652,Medical Incident,10/03/2015,10/02/2015,10/03/2015 04:57:11 AM,10/03/2015 04:59:53 AM,10/03/2015 05:00:17 AM,10/03/2015 05:01:02 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Unable to Locate,10/03/2015 05:08:45 AM,ATHENS ST/ROLPH ST,San Francisco,94112,B09,43,6173,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7128131325429, -122.434999159668)",152760596-60 +153433712,64,15132185,Medical Incident,12/09/2015,12/09/2015,12/09/2015 08:43:49 PM,12/09/2015 08:45:51 PM,12/09/2015 08:46:26 PM,12/09/2015 08:49:02 PM,12/09/2015 08:57:32 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/09/2015 10:16:39 PM,1100 Block of GIRARD ST,San Francisco,94134,B10,44,6317,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7183608550035, -122.40093599207)",153433712-64 +150050396,E38,15001714,Medical Incident,01/05/2015,01/04/2015,01/05/2015 04:54:11 AM,01/05/2015 04:56:08 AM,01/05/2015 04:57:05 AM,01/05/2015 04:59:29 AM,01/05/2015 05:02:40 AM,04/25/2016 01:13:01 PM,04/25/2016 01:13:01 PM,Code 2 Transport,01/05/2015 05:18:30 AM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",150050396-E38 +142743076,E28,14096194,Medical Incident,10/01/2014,10/01/2014,10/01/2014 06:24:45 PM,10/01/2014 06:25:09 PM,10/01/2014 06:25:23 PM,10/01/2014 06:26:53 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Code 2 Transport,10/01/2014 06:36:33 PM,JONES ST/JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8080133240409, -122.417445939002)",142743076-E28 +153290308,E06,15126485,Alarms,11/25/2015,11/24/2015,11/25/2015 04:14:59 AM,11/25/2015 04:16:14 AM,11/25/2015 04:18:22 AM,11/25/2015 04:20:43 AM,11/25/2015 04:22:55 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 04:32:37 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,2,2,9,Mission,"(37.7661343875141, -122.421935077177)",153290308-E06 +153191451,RC2,15122636,Traffic Collision,11/15/2015,11/15/2015,11/15/2015 11:32:26 AM,11/15/2015 11:33:12 AM,11/15/2015 11:44:27 AM,11/15/2015 11:44:27 AM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Other,11/15/2015 11:46:26 AM,POST ST/DIVISADERO ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,5,5,5,Japantown,"(37.7843186737916, -122.439684677541)",153191451-RC2 +141370936,E18,14046870,Medical Incident,05/17/2014,05/17/2014,05/17/2014 08:43:52 AM,05/17/2014 08:45:22 AM,05/17/2014 08:51:15 AM,05/17/2014 08:51:15 AM,05/17/2014 08:56:07 AM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,Code 2 Transport,05/17/2014 09:06:26 AM,1200 Block of 32ND AVE,San Francisco,94122,B08,23,7537,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7638872213875, -122.491188755025)",141370936-E18 +143330842,E12,14117937,Medical Incident,11/29/2014,11/29/2014,11/29/2014 08:47:59 AM,11/29/2014 08:48:54 AM,11/29/2014 08:52:30 AM,11/29/2014 08:53:53 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Code 2 Transport,11/29/2014 08:57:42 AM,1200 Block of 16TH AVE,San Francisco,94122,B08,22,7367,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",143330842-E12 +141170241,E15,14039553,Medical Incident,04/27/2014,04/27/2014,04/27/2014 04:40:34 PM,04/27/2014 04:43:09 PM,04/27/2014 04:43:33 PM,04/27/2014 04:44:50 PM,04/27/2014 04:47:21 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Code 2 Transport,04/27/2014 05:04:38 PM,2400 Block of ALEMANY BLVD,SAN FRANCISCO,94112,B09,15,8333,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7155539993329, -122.445057537091)",141170241-E15 +153213350,E16,15123588,Smoke Investigation (Outside),11/17/2015,11/17/2015,11/17/2015 06:58:09 PM,11/17/2015 06:59:20 PM,11/17/2015 06:59:36 PM,11/17/2015 07:00:18 PM,11/17/2015 07:03:25 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 07:06:54 PM,1500 Block of FRANCISCO ST,San Francisco,94123,B04,16,3351,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8025340608773, -122.430687416035)",153213350-E16 +160973064,KM06,16038538,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:43:03 PM,04/06/2016 04:45:21 PM,04/06/2016 04:46:00 PM,04/06/2016 04:51:09 PM,04/06/2016 04:56:23 PM,04/06/2016 05:14:15 PM,04/06/2016 05:32:10 PM,Code 2 Transport,04/06/2016 06:18:05 PM,18TH ST/SANCHEZ ST,San Francisco,94114,B02,6,5421,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7611554774347, -122.430573567918)",160973064-KM06 +150263135,B06,15010160,Alarms,01/26/2015,01/26/2015,01/26/2015 06:41:14 PM,01/26/2015 06:42:24 PM,01/26/2015 06:42:34 PM,01/26/2015 06:43:19 PM,01/26/2015 06:47:18 PM,04/25/2016 01:12:37 PM,04/25/2016 01:12:37 PM,Fire,01/26/2015 06:47:38 PM,0 Block of ELIZABETH ST,San Francisco,94110,B06,11,5524,3,3,3,false,Alarm,1,CHIEF,3,6,8,Mission,"(37.7528716382254, -122.422232538943)",150263135-B06 +151293549,75,15049132,Medical Incident,05/09/2015,05/09/2015,05/09/2015 09:41:13 PM,05/09/2015 09:41:48 PM,05/09/2015 09:42:08 PM,05/09/2015 09:42:34 PM,05/09/2015 09:51:21 PM,05/09/2015 10:06:01 PM,05/09/2015 10:15:29 PM,Code 2 Transport,05/09/2015 10:49:34 PM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",151293549-75 +142560755,E01,14089322,Medical Incident,09/13/2014,09/12/2014,09/13/2014 06:56:33 AM,09/13/2014 06:57:21 AM,09/13/2014 06:58:37 AM,09/13/2014 06:59:53 AM,09/13/2014 07:04:02 AM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Code 2 Transport,09/13/2014 07:07:47 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",142560755-E01 +142440922,T03,14084952,Medical Incident,09/01/2014,09/01/2014,09/01/2014 09:06:25 AM,09/01/2014 09:07:47 AM,09/01/2014 09:08:33 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 2 Transport,09/01/2014 09:09:25 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Potentially Life-Threatening,1,TRUCK,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",142440922-T03 +160940590,64,16037151,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:18:46 AM,04/03/2016 04:21:30 AM,04/03/2016 04:22:13 AM,04/03/2016 04:22:40 AM,04/03/2016 04:30:51 AM,04/03/2016 04:44:02 AM,04/03/2016 05:03:11 AM,Code 2 Transport,04/03/2016 05:48:30 AM,200 Block of GUTTENBERG ST,San Francisco,94112,B09,43,6218,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7096059467883, -122.442898080759)",160940590-64 +160982566,76,16038997,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:44:05 PM,04/07/2016 03:47:29 PM,04/07/2016 05:22:06 PM,04/07/2016 05:22:14 PM,04/07/2016 05:33:46 PM,04/07/2016 05:47:46 PM,04/07/2016 06:02:07 PM,Code 2 Transport,04/07/2016 06:16:03 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160982566-76 +160980191,52,16038743,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:27:32 AM,04/07/2016 01:28:04 AM,04/07/2016 01:30:13 AM,04/07/2016 01:30:32 AM,04/07/2016 01:37:53 AM,04/07/2016 01:59:00 AM,04/07/2016 02:12:34 AM,Code 2 Transport,04/07/2016 02:52:05 AM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160980191-52 +141670256,KM07,14057476,Medical Incident,06/16/2014,06/15/2014,06/16/2014 02:59:09 AM,06/16/2014 02:59:35 AM,06/16/2014 02:59:51 AM,06/16/2014 03:00:34 AM,06/16/2014 03:03:58 AM,06/16/2014 03:35:19 AM,06/16/2014 03:49:11 AM,Code 2 Transport,06/16/2014 04:15:23 AM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",141670256-KM07 +160942133,KM05,16037293,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:31:49 PM,04/03/2016 02:34:33 PM,04/03/2016 02:48:10 PM,04/03/2016 02:48:10 PM,04/03/2016 03:02:51 PM,04/03/2016 03:17:21 PM,04/03/2016 03:33:53 PM,Code 2 Transport,04/03/2016 04:03:02 PM,11TH ST/MISSION ST,San Francisco,94103,B02,36,5117,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160942133-KM05 +151793041,AM54,15068386,Medical Incident,06/28/2015,06/28/2015,06/28/2015 06:08:33 PM,06/28/2015 06:11:07 PM,06/28/2015 06:16:26 PM,06/28/2015 07:03:56 PM,06/28/2015 07:03:56 PM,06/28/2015 07:03:57 PM,06/28/2015 07:32:45 PM,Code 2 Transport,06/28/2015 07:33:20 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",151793041-AM54 +160931995,AM10,16036893,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:20:54 PM,04/02/2016 02:22:15 PM,04/02/2016 02:35:37 PM,04/02/2016 02:36:28 PM,04/02/2016 02:45:05 PM,04/02/2016 02:48:36 PM,04/02/2016 03:02:10 PM,Code 2 Transport,04/02/2016 03:44:53 PM,SAN JOSE AV/NIAGARA AV,San Francisco,94112,B09,15,8312,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7194811206803, -122.447562061428)",160931995-AM10 +152991632,54,15114761,Medical Incident,10/26/2015,10/26/2015,10/26/2015 12:09:56 PM,10/26/2015 12:10:57 PM,10/26/2015 12:11:20 PM,10/26/2015 12:11:50 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Patient Declined Transport,10/26/2015 12:17:59 PM,500 Block of BARNEVELD AVE,San Francisco,94124,B10,9,6427,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7395094141534, -122.404475255785)",152991632-54 +143132312,FB1,14110968,Outside Fire,11/09/2014,11/09/2014,11/09/2014 04:40:11 PM,11/09/2014 04:40:11 PM,11/09/2014 04:40:40 PM,11/09/2014 04:42:11 PM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Fire,11/09/2014 04:48:10 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,3,3,3,false,Alarm,1,SUPPORT,4,1,3,North Beach,"(37.8084350175869, -122.410774214375)",143132312-FB1 +161002406,86,16039853,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:16:52 PM,04/09/2016 05:17:33 PM,04/09/2016 05:17:44 PM,04/09/2016 05:22:24 PM,04/09/2016 05:24:18 PM,04/09/2016 05:46:36 PM,04/09/2016 06:10:58 PM,Code 2 Transport,04/09/2016 06:47:29 PM,1600 Block of HOLLOWAY AVE,San Francisco,94132,B08,19,8871,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",161002406-86 +152533120,83,15096829,Medical Incident,09/10/2015,09/10/2015,09/10/2015 06:15:50 PM,09/10/2015 06:17:36 PM,09/10/2015 06:17:55 PM,09/10/2015 06:18:34 PM,09/10/2015 06:29:03 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Cancelled,09/10/2015 06:38:15 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",152533120-83 +153290086,E15,15126459,Medical Incident,11/25/2015,11/24/2015,11/25/2015 12:39:44 AM,11/25/2015 12:40:25 AM,11/25/2015 12:41:54 AM,11/25/2015 12:43:50 AM,11/25/2015 12:47:31 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Code 2 Transport,11/25/2015 01:04:37 AM,300 Block of ROME ST,San Francisco,94112,B09,33,8344,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7160634247508, -122.448008831975)",153290086-E15 +141230163,E18,14041657,Medical Incident,05/03/2014,05/03/2014,05/03/2014 12:47:28 PM,05/03/2014 12:48:05 PM,05/03/2014 12:48:36 PM,05/03/2014 12:50:27 PM,05/03/2014 12:52:36 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Code 2 Transport,05/03/2014 01:02:28 PM,37TH AV/WAWONA ST,SAN FRANCISCO,94116,B08,18,7613,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7366049276125, -122.494590812025)",141230163-E18 +160982383,66,16038976,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:00:15 PM,04/07/2016 03:00:15 PM,04/07/2016 03:03:19 PM,04/07/2016 03:05:32 PM,04/07/2016 03:24:15 PM,04/07/2016 03:36:52 PM,04/07/2016 04:13:25 PM,Code 2 Transport,04/07/2016 04:49:44 PM,HYDE ST/FULTON ST,San Francisco,94102,B02,36,1552,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",160982383-66 +142920150,82,14102841,Medical Incident,10/19/2014,10/18/2014,10/19/2014 12:38:00 AM,10/19/2014 12:41:53 AM,10/19/2014 12:42:45 AM,10/19/2014 12:42:58 AM,10/19/2014 12:57:08 AM,10/19/2014 01:06:26 AM,10/19/2014 01:22:51 AM,Code 2 Transport,10/19/2014 01:53:09 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",142920150-82 +161001638,86,16039768,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:16:04 PM,04/09/2016 01:16:04 PM,04/09/2016 01:16:28 PM,04/09/2016 01:16:44 PM,04/09/2016 01:22:28 PM,04/09/2016 01:27:17 PM,04/09/2016 02:01:26 PM,Code 2 Transport,04/09/2016 02:51:02 PM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",161001638-86 +143091587,E08,14109368,Medical Incident,11/05/2014,11/05/2014,11/05/2014 12:36:14 PM,11/05/2014 12:36:14 PM,11/05/2014 12:37:15 PM,11/05/2014 12:38:45 PM,11/05/2014 12:41:05 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Code 2 Transport,11/05/2014 01:11:43 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,A,E,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",143091587-E08 +160961230,74,16037958,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:34:42 AM,04/05/2016 10:34:42 AM,04/05/2016 10:36:03 AM,04/05/2016 10:36:10 AM,04/05/2016 10:39:20 AM,04/05/2016 10:51:13 AM,04/05/2016 11:12:34 AM,Code 2 Transport,04/05/2016 11:23:59 AM,HOWARD ST/3RD ST,San Francisco,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",160961230-74 +142753733,73,14096663,Medical Incident,10/02/2014,10/02/2014,10/02/2014 09:00:16 PM,10/02/2014 09:01:42 PM,10/02/2014 09:02:05 PM,10/02/2014 09:02:13 PM,10/02/2014 09:13:31 PM,10/02/2014 09:33:40 PM,10/02/2014 10:06:13 PM,Code 2 Transport,10/02/2014 10:18:15 PM,100 Block of JOOST AVE,San Francisco,94131,B09,26,8214,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,8,West of Twin Peaks,"(37.7324276673535, -122.438605252758)",142753733-73 +160941853,KM08,16037263,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:13:25 PM,04/03/2016 01:15:13 PM,04/03/2016 01:17:07 PM,04/03/2016 01:17:39 PM,04/03/2016 01:24:52 PM,04/03/2016 01:34:16 PM,04/03/2016 01:59:31 PM,Code 2 Transport,04/03/2016 02:26:22 PM,NATOMA ST/5TH ST,San Francisco,94103,B03,1,2245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.781925017269, -122.405466275848)",160941853-KM08 +142890998,E02,14101788,Other,10/16/2014,10/16/2014,10/16/2014 09:00:52 AM,10/16/2014 09:02:07 AM,10/16/2014 09:04:40 AM,10/16/2014 09:05:24 AM,10/16/2014 09:09:35 AM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Fire,10/16/2014 09:11:12 AM,WASHINGTON ST/STOCKTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",142890998-E02 +160980370,KM07,16038767,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:24:14 AM,04/07/2016 03:26:36 AM,04/07/2016 03:27:16 AM,04/07/2016 03:27:42 AM,04/07/2016 03:30:00 AM,04/07/2016 03:35:32 AM,04/07/2016 04:28:40 AM,Code 2 Transport,04/07/2016 04:38:10 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",160980370-KM07 +142533953,E09,14088495,Structure Fire,09/10/2014,09/10/2014,09/10/2014 10:21:13 PM,09/10/2014 10:21:13 PM,09/10/2014 10:21:18 PM,09/10/2014 10:22:37 PM,09/10/2014 10:23:41 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Fire,09/10/2014 10:24:21 PM,2700 Block of 25TH ST,San Francisco,94110,B10,9,2624,3,3,3,true,Alarm,1,ENGINE,1,10,10,Mission,"(37.7517018091907, -122.405708343282)",142533953-E09 +151932850,T13,15073754,Alarms,07/12/2015,07/12/2015,07/12/2015 06:06:29 PM,07/12/2015 06:07:13 PM,07/12/2015 06:07:36 PM,07/12/2015 06:09:16 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 06:10:28 PM,100 Block of STEUART ST,San Francisco,94105,B03,35,2111,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7926568376756, -122.39236449327)",151932850-T13 +161000076,AM18,16039559,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:27:02 AM,04/09/2016 12:27:15 AM,04/09/2016 12:28:04 AM,04/09/2016 12:28:41 AM,04/09/2016 12:35:22 AM,04/09/2016 12:59:39 AM,04/09/2016 01:24:24 AM,Code 2 Transport,04/09/2016 01:58:29 AM,4000 Block of MISSION ST,San Francisco,94112,B06,32,5633,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Bernal Heights,"(37.7321745845353, -122.427793514714)",161000076-AM18 +160991026,KM11,16039239,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:55:30 AM,04/08/2016 09:57:02 AM,04/08/2016 09:57:52 AM,04/08/2016 09:58:15 AM,04/08/2016 10:05:41 AM,04/08/2016 10:31:08 AM,04/08/2016 10:43:37 AM,Code 2 Transport,04/08/2016 11:32:15 AM,2200 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Japantown,"(37.7843705673053, -122.438841200784)",160991026-KM11 +141200389,E02,14040723,Alarms,04/30/2014,04/30/2014,04/30/2014 10:07:40 PM,04/30/2014 10:09:00 PM,04/30/2014 10:09:16 PM,04/30/2014 10:10:56 PM,04/30/2014 10:12:42 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Fire,04/30/2014 10:15:02 PM,700 Block of MONTGOMERY ST,SAN FRANCISCO,94111,B01,13,1232,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7959659233971, -122.403475165635)",141200389-E02 +141250287,E36,14042428,Medical Incident,05/05/2014,05/05/2014,05/05/2014 04:24:43 PM,05/05/2014 04:27:59 PM,05/05/2014 04:31:22 PM,05/05/2014 04:33:02 PM,05/05/2014 04:41:56 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Gone on Arrival,05/05/2014 04:42:05 PM,VALENCIA ST/16TH ST,SAN FRANCISCO,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",141250287-E36 +160932172,61,16036909,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:10:58 PM,04/02/2016 03:12:17 PM,04/02/2016 03:14:53 PM,04/02/2016 03:15:26 PM,04/02/2016 03:33:02 PM,04/02/2016 03:49:14 PM,04/02/2016 04:16:36 PM,Code 2 Transport,04/02/2016 05:08:19 PM,GRANT AV/PACIFIC AV,San Francisco,94133,B01,2,1312,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7969019046439, -122.406827678757)",160932172-61 +160982538,77,16038991,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:37:26 PM,04/07/2016 03:40:23 PM,04/07/2016 03:42:09 PM,04/07/2016 03:42:24 PM,04/07/2016 03:50:26 PM,04/07/2016 04:13:01 PM,04/07/2016 04:33:55 PM,Code 2 Transport,04/07/2016 04:47:03 PM,1200 Block of PAGE ST,San Francisco,94117,B05,21,4251,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7717293101583, -122.441377954936)",160982538-77 +153452198,62,15132839,Medical Incident,12/11/2015,12/11/2015,12/11/2015 02:40:42 PM,12/11/2015 02:40:42 PM,12/11/2015 02:41:47 PM,12/11/2015 02:42:02 PM,12/11/2015 02:57:12 PM,12/11/2015 03:11:31 PM,12/11/2015 03:20:58 PM,Code 3 Transport,12/11/2015 04:09:30 PM,13TH ST/FOLSOM ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7695911594816, -122.415577014994)",153452198-62 +152503173,E44,15095637,Medical Incident,09/07/2015,09/07/2015,09/07/2015 08:23:44 PM,09/07/2015 08:25:11 PM,09/07/2015 08:25:46 PM,09/07/2015 08:27:18 PM,09/07/2015 08:33:06 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Code 2 Transport,09/07/2015 08:44:04 PM,100 Block of HAHN ST,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7126910626884, -122.415580395245)",152503173-E44 +160993864,60,16039510,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 10:35:11 PM,04/08/2016 10:35:11 PM,04/08/2016 10:36:23 PM,04/08/2016 10:36:34 PM,04/08/2016 10:47:35 PM,04/08/2016 11:11:45 PM,04/08/2016 11:24:35 PM,Other,04/09/2016 01:00:32 AM,5TH ST/TOWNSEND ST,San Francisco,94107,B03,8,2236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7753322431291, -122.397206310605)",160993864-60 +153003901,E29,15115304,Alarms,10/27/2015,10/27/2015,10/27/2015 11:21:52 PM,10/27/2015 11:23:15 PM,10/27/2015 11:24:08 PM,10/27/2015 11:25:32 PM,10/27/2015 11:28:02 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/27/2015 11:32:25 PM,100 Block of POTRERO AVE,San Francisco,94103,B02,29,2351,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission,"(37.7677134622868, -122.407818231121)",153003901-E29 +141631766,E32,14056199,Medical Incident,06/12/2014,06/12/2014,06/12/2014 01:45:38 PM,06/12/2014 01:48:26 PM,06/12/2014 01:49:12 PM,06/12/2014 01:49:54 PM,06/12/2014 01:55:50 PM,04/25/2016 01:16:49 PM,04/25/2016 01:16:49 PM,No Merit,06/12/2014 01:58:55 PM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",141631766-E32 +142201786,E03,14076350,Medical Incident,08/08/2014,08/08/2014,08/08/2014 01:33:41 PM,08/08/2014 01:34:28 PM,08/08/2014 01:35:40 PM,08/08/2014 01:35:40 PM,08/08/2014 01:37:21 PM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,Code 2 Transport,08/08/2014 01:41:58 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",142201786-E03 +143000666,E51,14105815,Alarms,10/27/2014,10/26/2014,10/27/2014 07:56:14 AM,10/27/2014 07:57:20 AM,10/27/2014 07:58:00 AM,10/27/2014 08:00:11 AM,10/27/2014 08:01:52 AM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Fire,10/27/2014 08:08:46 AM,100 Block of FISHER LOOP,Presidio,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.7998898584318, -122.461819826995)",143000666-E51 +143082115,E17,14109034,Medical Incident,11/04/2014,11/04/2014,11/04/2014 02:35:23 PM,11/04/2014 02:37:02 PM,11/04/2014 02:40:01 PM,11/04/2014 02:43:53 PM,11/04/2014 02:43:53 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 03:09:48 PM,1200 Block of LA SALLE AVE,San Francisco,94124,B10,17,668,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",143082115-E17 +160933628,62,16037060,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:02:32 PM,04/02/2016 10:03:59 PM,04/02/2016 10:04:35 PM,04/02/2016 10:05:08 PM,04/02/2016 10:09:50 PM,04/02/2016 10:24:24 PM,04/02/2016 10:50:50 PM,Code 2 Transport,04/02/2016 11:15:39 PM,1100 Block of FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7756232938088, -122.409165302353)",160933628-62 +153221276,54,15123810,Medical Incident,11/18/2015,11/18/2015,11/18/2015 10:16:53 AM,11/18/2015 10:17:40 AM,11/18/2015 10:18:08 AM,11/18/2015 10:18:39 AM,11/18/2015 10:25:59 AM,11/18/2015 10:40:08 AM,11/18/2015 10:59:03 AM,Code 2 Transport,11/18/2015 11:30:11 AM,100 Block of ARCH ST,San Francisco,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7133480410118, -122.467014365606)",153221276-54 +141383961,T01,14047495,Alarms,05/18/2014,05/18/2014,05/18/2014 11:48:53 PM,05/18/2014 11:49:55 PM,05/18/2014 11:50:07 PM,05/18/2014 11:51:40 PM,05/18/2014 11:54:03 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Fire,05/18/2014 11:58:30 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",141383961-T01 +151081760,KM11,15040907,Medical Incident,04/18/2015,04/18/2015,04/18/2015 01:16:14 PM,04/18/2015 01:18:08 PM,04/18/2015 01:18:19 PM,04/18/2015 01:19:04 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,No Merit,04/18/2015 01:25:51 PM,2000 Block of 46TH AVE,San Francisco,94116,B08,23,7663,3,3,3,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.748304163787, -122.5050122918)",151081760-KM11 +151041025,E18,15039282,Medical Incident,04/14/2015,04/14/2015,04/14/2015 09:46:09 AM,04/14/2015 09:47:42 AM,04/14/2015 09:49:02 AM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Code 2 Transport,04/14/2015 09:51:13 AM,600 Block of 33RD AVE,San Francisco,94121,B07,14,7244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7768393829407, -122.493175110923)",151041025-E18 +150982558,B01,15037155,Alarms,04/08/2015,04/08/2015,04/08/2015 04:32:32 PM,04/08/2015 04:33:43 PM,04/08/2015 04:34:05 PM,04/08/2015 04:35:47 PM,04/08/2015 04:37:06 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Fire,04/08/2015 04:51:25 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Alarm,1,CHIEF,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",150982558-B01 +151972021,KM08,15075154,Medical Incident,07/16/2015,07/16/2015,07/16/2015 02:39:03 PM,07/16/2015 02:39:13 PM,07/16/2015 02:39:25 PM,07/16/2015 02:40:21 PM,07/16/2015 02:43:20 PM,07/16/2015 02:52:02 PM,07/16/2015 02:59:07 PM,Code 2 Transport,07/16/2015 03:28:03 PM,900 Block of POLK ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",151972021-KM08 +141913314,E12,14066344,Medical Incident,07/10/2014,07/10/2014,07/10/2014 08:48:23 PM,07/10/2014 08:49:17 PM,07/10/2014 08:49:54 PM,07/10/2014 08:51:44 PM,07/10/2014 08:54:13 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Code 2 Transport,07/10/2014 09:08:56 PM,7TH AV/LINCOLN WY,San Francisco,94122,B08,22,7332,3,2,2,true,Non Life-threatening,1,ENGINE,1,7,5,Golden Gate Park,"(37.7660718301398, -122.464312454358)",141913314-E12 +143642188,E13,14130259,Traffic Collision,12/30/2014,12/30/2014,12/30/2014 03:46:11 PM,12/30/2014 03:46:11 PM,12/30/2014 03:46:28 PM,12/30/2014 03:47:16 PM,12/30/2014 03:52:53 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 04:00:58 PM,BUSH ST/KEARNY ST,San Francisco,94104,B01,13,1235,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",143642188-E13 +160963010,KM11,16038118,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:33:13 PM,04/05/2016 05:33:13 PM,04/05/2016 05:33:22 PM,04/05/2016 05:33:54 PM,04/05/2016 05:41:26 PM,04/05/2016 06:15:31 PM,04/05/2016 06:29:54 PM,Code 2 Transport,04/05/2016 07:02:20 PM,0 Block of EMERY LN,San Francisco,94133,B01,2,1333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",160963010-KM11 +160953344,65,16037763,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:05:19 PM,04/04/2016 07:05:19 PM,04/04/2016 07:08:20 PM,04/04/2016 07:08:36 PM,04/04/2016 07:21:34 PM,04/04/2016 07:46:50 PM,04/04/2016 08:11:58 PM,Code 2 Transport,04/04/2016 08:55:26 PM,17TH ST/DIAMOND ST,San Francisco,94114,B05,6,5253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.762354748364, -122.437342368442)",160953344-65 +160992555,52,16039388,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:32:26 PM,04/08/2016 04:32:26 PM,04/08/2016 04:33:01 PM,04/08/2016 04:33:08 PM,04/08/2016 04:47:19 PM,04/08/2016 05:07:39 PM,04/08/2016 05:29:06 PM,Code 2 Transport,04/08/2016 06:02:02 PM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",160992555-52 +151532626,AM16,15058380,Medical Incident,06/02/2015,06/02/2015,06/02/2015 04:59:17 PM,06/02/2015 04:59:17 PM,06/02/2015 04:59:40 PM,06/02/2015 05:00:02 PM,06/02/2015 05:26:03 PM,06/02/2015 05:45:13 PM,06/02/2015 06:34:13 PM,Code 2 Transport,06/02/2015 06:52:07 PM,22ND ST/CAPP ST,San Francisco,94110,B06,7,5472,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7555024984315, -122.417658993752)",151532626-AM16 +150583490,75,15022319,Medical Incident,02/27/2015,02/27/2015,02/27/2015 08:56:24 PM,02/27/2015 08:58:02 PM,02/27/2015 08:58:41 PM,02/27/2015 08:58:45 PM,02/27/2015 09:10:04 PM,02/27/2015 09:27:27 PM,02/27/2015 09:49:02 PM,Code 2 Transport,02/27/2015 10:06:40 PM,1300 Block of JUDAH ST,San Francisco,94122,B08,22,7371,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Inner Sunset,"(37.7618193942181, -122.476470689515)",150583490-75 +160973479,54,16038593,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:09:08 PM,04/06/2016 06:11:11 PM,04/06/2016 06:12:21 PM,04/06/2016 06:13:06 PM,04/06/2016 06:14:20 PM,04/06/2016 06:23:02 PM,04/06/2016 06:48:36 PM,Code 2 Transport,04/06/2016 07:22:38 PM,LARKIN ST/FERN ST,San Francisco,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7884323407324, -122.418559316151)",160973479-54 +160941654,KM04,16037251,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:11:49 PM,04/03/2016 12:12:37 PM,04/03/2016 12:12:50 PM,04/03/2016 12:13:26 PM,04/03/2016 12:18:19 PM,04/03/2016 12:44:09 PM,04/03/2016 12:57:38 PM,Code 2 Transport,04/03/2016 01:44:12 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160941654-KM04 +143552153,T03,14126948,Structure Fire,12/21/2014,12/21/2014,12/21/2014 02:14:09 PM,12/21/2014 02:14:31 PM,12/21/2014 02:14:40 PM,12/21/2014 02:15:49 PM,12/21/2014 02:16:33 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 02:22:02 PM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,false,Alarm,1,TRUCK,2,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",143552153-T03 +153280392,E33,15126123,Medical Incident,11/24/2015,11/23/2015,11/24/2015 05:39:31 AM,11/24/2015 05:40:44 AM,11/24/2015 05:40:53 AM,11/24/2015 05:42:55 AM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Code 2 Transport,11/24/2015 05:46:45 AM,200 Block of MONTICELLO ST,San Francisco,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7187646692644, -122.470673338489)",153280392-E33 +142383937,T05,14082972,Medical Incident,08/26/2014,08/26/2014,08/26/2014 11:25:19 PM,08/26/2014 11:26:46 PM,08/26/2014 11:27:25 PM,08/26/2014 11:28:40 PM,08/26/2014 11:33:43 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Code 2 Transport,08/26/2014 11:34:25 PM,WEBSTER ST/MCALLISTER ST,San Francisco,94117,B05,5,3521,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,2,5,Western Addition,"(37.7788509281441, -122.43004726646)",142383937-T05 +152843297,E05,15109189,Alarms,10/11/2015,10/11/2015,10/11/2015 07:08:36 PM,10/11/2015 07:10:27 PM,10/11/2015 07:10:37 PM,10/11/2015 07:11:14 PM,10/11/2015 07:13:21 PM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/11/2015 07:25:10 PM,1000 Block of EDDY ST,San Francisco,94109,B02,5,3262,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",152843297-E05 +151861479,E38,15071010,Medical Incident,07/05/2015,07/05/2015,07/05/2015 11:02:21 AM,07/05/2015 11:03:01 AM,07/05/2015 11:03:46 AM,07/05/2015 11:04:06 AM,07/05/2015 11:06:49 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Code 2 Transport,07/05/2015 11:16:56 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,E,3,false,Potentially Life-Threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",151861479-E38 +153020362,B04,15115726,Alarms,10/29/2015,10/28/2015,10/29/2015 04:08:07 AM,10/29/2015 04:09:52 AM,10/29/2015 04:10:51 AM,10/29/2015 04:12:40 AM,10/29/2015 04:15:43 AM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/29/2015 04:19:55 AM,1800 Block of POST ST,San Francisco,94115,B04,5,3513,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.785207581828, -122.432213785968)",153020362-B04 +160964131,76,16038216,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:05:31 PM,04/05/2016 11:06:02 PM,04/05/2016 11:07:22 PM,04/05/2016 11:07:33 PM,04/05/2016 11:22:36 PM,04/05/2016 11:34:25 PM,04/05/2016 11:50:48 PM,Code 2 Transport,04/06/2016 12:02:22 AM,200 Block of BLK TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836778741421, -122.410928353347)",160964131-76 +153121491,E32,15119922,Medical Incident,11/08/2015,11/08/2015,11/08/2015 12:14:04 PM,11/08/2015 12:14:46 PM,11/08/2015 12:16:14 PM,11/08/2015 12:17:01 PM,11/08/2015 12:21:03 PM,04/25/2016 01:07:19 PM,04/25/2016 01:07:19 PM,Code 2 Transport,11/08/2015 12:46:07 PM,300 Block of ADDISON ST,San Francisco,94131,B06,26,8153,3,E,3,false,Potentially Life-Threatening,1,ENGINE,2,6,8,Glen Park,"(37.7400105468901, -122.435088097166)",153121491-E32 +141601448,E28,14055153,Medical Incident,06/09/2014,06/09/2014,06/09/2014 12:29:43 PM,06/09/2014 12:29:43 PM,06/09/2014 12:29:55 PM,06/09/2014 12:31:11 PM,06/09/2014 12:33:38 PM,04/25/2016 01:16:52 PM,04/25/2016 01:16:52 PM,Code 2 Transport,06/09/2014 12:59:42 PM,BEACH ST/MASON ST,San Francisco,94133,B01,28,1344,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8074825129146, -122.41397500769)",141601448-E28 +152033938,KM07,15077547,Medical Incident,07/22/2015,07/22/2015,07/22/2015 11:39:44 PM,07/22/2015 11:39:44 PM,07/22/2015 11:40:29 PM,07/22/2015 11:41:43 PM,07/22/2015 11:52:49 PM,07/23/2015 12:02:24 AM,07/23/2015 12:09:19 AM,Code 2 Transport,07/23/2015 01:12:40 AM,0 Block of ROSEMONT PL,San Francisco,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7683700727601, -122.425508057106)",152033938-KM07 +161000406,70,16039608,Traffic Collision,04/09/2016,04/08/2016,04/09/2016 03:05:46 AM,04/09/2016 03:07:04 AM,04/09/2016 03:09:18 AM,04/09/2016 03:09:18 AM,04/09/2016 03:15:31 AM,04/09/2016 03:21:35 AM,04/09/2016 03:42:44 AM,Code 2 Transport,04/09/2016 04:23:35 AM,2400 Block of 14TH AV,San Francisco,94116,B08,40,7355,2,3,3,true,Potentially Life-Threatening,1,MEDIC,4,8,7,West of Twin Peaks,"(37.7423541053888, -122.470238987635)",161000406-70 +151761555,T02,15067021,Alarms,06/25/2015,06/25/2015,06/25/2015 12:05:24 PM,06/25/2015 12:06:36 PM,06/25/2015 12:07:02 PM,06/25/2015 12:09:08 PM,06/25/2015 12:12:18 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,Fire,06/25/2015 12:30:23 PM,1000 Block of CHESTNUT ST,San Francisco,94109,B01,28,1613,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8028649959918, -122.420650668279)",151761555-T02 +150441517,E06,15017082,Medical Incident,02/13/2015,02/13/2015,02/13/2015 11:28:21 AM,02/13/2015 11:30:01 AM,02/13/2015 11:35:53 AM,02/13/2015 11:36:54 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/13/2015 11:52:32 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,4,2,9,Mission,"(37.7697208630457, -122.417949217834)",150441517-E06 +151362654,RS1,15051747,Structure Fire,05/16/2015,05/16/2015,05/16/2015 04:55:08 PM,05/16/2015 04:56:10 PM,05/16/2015 04:57:35 PM,05/16/2015 04:59:04 PM,05/16/2015 05:00:54 PM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Fire,05/16/2015 05:04:09 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,false,Alarm,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",151362654-RS1 +152682981,E29,15102792,Alarms,09/25/2015,09/25/2015,09/25/2015 06:00:17 PM,09/25/2015 06:01:39 PM,09/25/2015 06:02:38 PM,09/25/2015 06:05:03 PM,09/25/2015 06:22:10 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 06:39:12 PM,1500 Block of BRYANT ST,San Francisco,94103,B02,29,5222,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.767536533024, -122.410739256407)",152682981-E29 +152901926,KM08,15111430,Medical Incident,10/17/2015,10/17/2015,10/17/2015 01:26:16 PM,10/17/2015 01:29:01 PM,10/17/2015 01:29:39 PM,10/17/2015 01:31:04 PM,10/17/2015 01:37:29 PM,10/17/2015 01:48:51 PM,10/17/2015 02:05:17 PM,Code 2 Transport,10/17/2015 02:34:30 PM,1400 Block of SHRADER ST,San Francisco,94117,B05,12,5257,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7619427731413, -122.450726690787)",152901926-KM08 +152402365,D2,15091463,Structure Fire,08/28/2015,08/28/2015,08/28/2015 02:16:19 PM,08/28/2015 02:17:46 PM,08/28/2015 02:19:53 PM,08/28/2015 02:20:28 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Fire,08/28/2015 02:29:37 PM,2900 Block of SANTIAGO ST,San Francisco,94116,B08,18,7644,3,3,3,false,Alarm,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7438477705502, -122.498863304615)",152402365-D2 +152980633,AM02,15114310,Medical Incident,10/25/2015,10/24/2015,10/25/2015 05:55:40 AM,10/25/2015 05:57:06 AM,10/25/2015 05:57:29 AM,10/25/2015 05:58:09 AM,10/25/2015 06:05:26 AM,10/25/2015 06:23:23 AM,10/25/2015 06:39:32 AM,Code 2 Transport,10/25/2015 07:18:56 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",152980633-AM02 +161001535,AM10,16039751,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:33:06 PM,04/09/2016 12:35:17 PM,04/09/2016 12:35:45 PM,04/09/2016 12:36:07 PM,04/09/2016 12:40:30 PM,04/09/2016 01:04:54 PM,04/09/2016 01:24:10 PM,Code 2 Transport,04/09/2016 01:57:36 PM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",161001535-AM10 +150853038,E03,15032556,Medical Incident,03/26/2015,03/26/2015,03/26/2015 06:06:50 PM,03/26/2015 06:07:23 PM,03/26/2015 06:08:24 PM,03/26/2015 06:09:36 PM,03/26/2015 06:10:52 PM,03/26/2015 06:18:27 PM,03/26/2015 06:34:54 PM,Code 3 Transport,03/26/2015 06:52:00 PM,LARKIN ST/ELLIS ST,San Francisco,94109,B02,3,1643,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",150853038-E03 +160950716,KM09,16037542,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:17:35 AM,04/04/2016 08:19:22 AM,04/04/2016 08:21:06 AM,04/04/2016 08:23:27 AM,04/04/2016 08:35:24 AM,04/04/2016 09:04:56 AM,04/04/2016 09:32:05 AM,Code 2 Transport,04/04/2016 10:29:20 AM,200 Block of 9TH AVE,San Francisco,94118,B07,31,7136,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",160950716-KM09 +160960668,65,16037913,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:04:47 AM,04/05/2016 08:06:55 AM,04/05/2016 08:08:32 AM,04/05/2016 08:08:51 AM,04/05/2016 08:37:51 AM,04/05/2016 09:15:01 AM,04/05/2016 09:49:56 AM,Code 2 Transport,04/05/2016 10:02:20 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160960668-65 +160933206,AM20,16037015,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:53:48 PM,04/02/2016 07:53:48 PM,04/02/2016 07:55:55 PM,04/02/2016 07:56:23 PM,04/02/2016 08:13:02 PM,04/02/2016 08:27:03 PM,04/02/2016 08:44:59 PM,Code 2 Transport,04/02/2016 09:58:08 PM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7797671147527, -122.408298620023)",160933206-AM20 +143181535,AP,14112609,Aircraft Emergency,11/14/2014,11/14/2014,11/14/2014 11:59:15 AM,11/14/2014 11:59:15 AM,11/14/2014 11:59:15 AM,11/14/2014 11:59:15 AM,11/14/2014 11:59:15 AM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,Fire,11/14/2014 11:59:15 AM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Fire,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",143181535-AP +161002886,71,16039908,Citizen Assist / Service Call,04/09/2016,04/09/2016,04/09/2016 07:48:37 PM,04/09/2016 07:49:46 PM,04/09/2016 08:01:05 PM,04/09/2016 08:01:41 PM,04/09/2016 08:07:41 PM,04/09/2016 08:33:09 PM,04/09/2016 08:56:11 PM,Code 2 Transport,04/09/2016 09:27:04 PM,0 Block of WATTSON PL,San Francisco,94112,B09,43,6121,3,3,3,true,Alarm,1,MEDIC,2,9,11,Outer Mission,"(37.7235779760949, -122.437028124174)",161002886-71 +142623278,T12,14091753,Alarms,09/19/2014,09/19/2014,09/19/2014 07:46:11 PM,09/19/2014 07:48:14 PM,09/19/2014 07:48:25 PM,09/19/2014 07:54:01 PM,09/19/2014 07:54:01 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Fire,09/19/2014 08:03:52 PM,1800 Block of 9TH AVE,San Francisco,94122,B08,22,7336,3,3,3,false,Alarm,1,TRUCK,3,8,7,Inner Sunset,"(37.7537771563703, -122.465666708675)",142623278-T12 +160991186,77,16039253,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:43:22 AM,04/08/2016 10:45:09 AM,04/08/2016 10:45:19 AM,04/08/2016 10:46:40 AM,04/08/2016 10:52:14 AM,04/08/2016 11:17:43 AM,04/08/2016 11:59:15 AM,Code 2 Transport,04/08/2016 12:22:41 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160991186-77 +150671032,E03,15025553,Alarms,03/08/2015,03/08/2015,03/08/2015 10:20:43 AM,03/08/2015 10:22:09 AM,03/08/2015 10:22:20 AM,03/08/2015 10:24:22 AM,03/08/2015 10:28:12 AM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,Cancelled,03/08/2015 10:34:07 AM,1300 Block of MARKET ST,San Francisco,94102,B02,36,2338,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",150671032-E03 +160962693,74,16038087,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:22:06 PM,04/05/2016 04:23:39 PM,04/05/2016 04:24:44 PM,04/05/2016 04:25:20 PM,04/05/2016 04:33:33 PM,04/05/2016 04:51:30 PM,04/05/2016 05:23:38 PM,Code 2 Transport,04/05/2016 05:49:19 PM,700 Block of 9TH AVE,Treasure Isla,94118,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7742838362114, -122.467088086382)",160962693-74 +160991263,73,16039261,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:03:43 AM,04/08/2016 11:05:37 AM,04/08/2016 11:08:46 AM,04/08/2016 11:09:01 AM,04/08/2016 11:16:30 AM,04/08/2016 11:38:02 AM,04/08/2016 12:10:29 PM,Code 2 Transport,04/08/2016 12:59:11 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160991263-73 +153251432,E09,15125089,Alarms,11/21/2015,11/21/2015,11/21/2015 11:20:08 AM,11/21/2015 11:21:24 AM,11/21/2015 11:21:56 AM,11/21/2015 11:22:49 AM,11/21/2015 11:24:31 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Fire,11/21/2015 11:31:34 AM,2000 Block of EVANS AVE,San Francisco,94124,B10,9,6422,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7477614969563, -122.396439770818)",153251432-E09 +141402046,88,14048032,Medical Incident,05/20/2014,05/20/2014,05/20/2014 02:40:00 PM,05/20/2014 02:41:56 PM,05/20/2014 02:47:16 PM,05/20/2014 02:47:26 PM,05/20/2014 02:58:55 PM,05/20/2014 03:16:25 PM,05/20/2014 03:33:29 PM,Code 2 Transport,05/20/2014 03:34:16 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",141402046-88 +151153523,62,15043624,Medical Incident,04/25/2015,04/25/2015,04/25/2015 10:13:29 PM,04/25/2015 10:13:29 PM,04/25/2015 10:14:08 PM,04/25/2015 10:14:16 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,No Merit,04/25/2015 10:18:02 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151153523-62 +150373957,AM20,15014577,Medical Incident,02/06/2015,02/06/2015,02/06/2015 10:54:36 PM,02/06/2015 10:55:48 PM,02/06/2015 10:56:18 PM,02/06/2015 10:57:17 PM,02/06/2015 11:09:15 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,No Merit,02/06/2015 11:21:29 PM,POST ST/MASON ST,San Francisco,94102,B01,1,1362,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7880821862879, -122.410056930949)",150373957-AM20 +143510176,67,14125212,Medical Incident,12/17/2014,12/16/2014,12/17/2014 01:58:00 AM,12/17/2014 02:01:14 AM,12/17/2014 02:01:59 AM,12/17/2014 02:02:50 AM,12/17/2014 02:11:20 AM,12/17/2014 02:31:54 AM,12/17/2014 02:38:05 AM,Code 2 Transport,12/17/2014 03:20:32 AM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7942850258424, -122.406574058341)",143510176-67 +152232527,78,15085048,Medical Incident,08/11/2015,08/11/2015,08/11/2015 03:42:42 PM,08/11/2015 03:43:28 PM,08/11/2015 03:43:43 PM,08/11/2015 03:44:03 PM,08/11/2015 03:53:58 PM,08/11/2015 04:01:58 PM,08/11/2015 04:08:32 PM,Code 2 Transport,08/11/2015 04:51:28 PM,1700 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2634,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7499142654366, -122.394328983742)",152232527-78 +160941868,50,16037266,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 01:18:54 PM,04/03/2016 01:18:54 PM,04/03/2016 01:20:15 PM,04/03/2016 01:20:23 PM,04/03/2016 01:34:48 PM,04/03/2016 01:55:47 PM,04/03/2016 02:42:51 PM,Code 2 Transport,04/03/2016 03:00:53 PM,CROSSOVER DR/19TH AV,San Francisco,94122,B08,22,7425,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,4,Sunset/Parkside,"(37.7654479866215, -122.477308393483)",160941868-50 +160922143,57,16036479,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:03:45 PM,04/01/2016 03:03:45 PM,04/01/2016 03:05:51 PM,04/01/2016 03:06:12 PM,04/01/2016 03:11:18 PM,04/01/2016 03:22:30 PM,04/01/2016 03:54:28 PM,Code 2 Transport,04/01/2016 04:42:18 PM,DIVISION ST/11TH ST,San Francisco,94103,B02,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7694111910912, -122.410931089145)",160922143-57 +151950177,B02,15074264,Medical Incident,07/14/2015,07/13/2015,07/14/2015 02:02:17 AM,07/14/2015 02:02:17 AM,07/14/2015 02:02:30 AM,07/14/2015 02:04:16 AM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,Cancelled,07/14/2015 02:08:35 AM,CAPP ST/20TH ST,San Francisco,94110,B06,7,5433,A,E,3,false,Potentially Life-Threatening,1,CHIEF,5,6,9,Mission,"(37.7586982725851, -122.417964706277)",151950177-B02 +141643521,E14,14056712,Medical Incident,06/13/2014,06/13/2014,06/13/2014 10:04:52 PM,06/13/2014 10:05:37 PM,06/13/2014 10:05:49 PM,06/13/2014 10:07:50 PM,06/13/2014 10:09:13 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Code 2 Transport,06/13/2014 10:22:50 PM,6300 Block of CALIFORNIA ST,San Francisco,94121,B07,14,7214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7838030202773, -122.485545885783)",141643521-E14 +160990422,KM03,16039189,Medical Incident,04/08/2016,04/07/2016,04/08/2016 05:31:23 AM,04/08/2016 05:32:31 AM,04/08/2016 05:32:40 AM,04/08/2016 05:33:10 AM,04/08/2016 05:38:40 AM,04/08/2016 05:59:29 AM,04/08/2016 06:17:10 AM,Code 2 Transport,04/08/2016 06:38:55 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160990422-KM03 +141530392,RC1,14052448,Medical Incident,06/02/2014,06/01/2014,06/02/2014 05:53:19 AM,06/02/2014 05:54:02 AM,06/02/2014 06:01:09 AM,06/02/2014 06:03:25 AM,06/02/2014 06:04:56 AM,06/02/2014 06:34:02 AM,06/02/2014 06:39:07 AM,Code 3 Transport,06/02/2014 06:53:01 AM,900 Block of MONTGOMERY ST,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,North Beach,"(37.7975870868314, -122.403804875894)",141530392-RC1 +161001939,89,16039800,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:52:28 PM,04/09/2016 02:54:23 PM,04/09/2016 02:54:49 PM,04/09/2016 02:56:50 PM,04/09/2016 03:23:25 PM,04/09/2016 03:31:17 PM,04/09/2016 03:53:11 PM,Code 2 Transport,04/09/2016 04:36:25 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",161001939-89 +151532055,E51,15058315,Medical Incident,06/02/2015,06/02/2015,06/02/2015 02:22:26 PM,06/02/2015 02:26:32 PM,06/02/2015 02:28:19 PM,06/02/2015 02:28:50 PM,06/02/2015 02:31:46 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/02/2015 03:05:18 PM,300 Block of FINLEY RD,Presidio,94129,B99,51,4631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio,"(37.7907112514893, -122.459579736296)",151532055-E51 +160932122,KM08,16036907,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:59:06 PM,04/02/2016 02:59:06 PM,04/02/2016 03:00:31 PM,04/02/2016 03:08:09 PM,04/02/2016 03:08:09 PM,04/02/2016 03:25:48 PM,04/02/2016 03:47:11 PM,Code 2 Transport,04/02/2016 04:11:56 PM,4200 Block of FOLSOM ST,San Francisco,94110,B06,32,5747,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,9,Bernal Heights,"(37.7340009567337, -122.413687558489)",160932122-KM08 +141971884,E36,14068234,Medical Incident,07/16/2014,07/16/2014,07/16/2014 01:26:30 PM,07/16/2014 01:29:20 PM,07/16/2014 01:29:38 PM,07/16/2014 01:30:57 PM,07/16/2014 01:34:25 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Against Medical Advice,07/16/2014 01:37:23 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Non Life-threatening,1,ENGINE,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",141971884-E36 +142630541,E29,14091878,Structure Fire,09/20/2014,09/19/2014,09/20/2014 04:10:21 AM,09/20/2014 04:10:21 AM,09/20/2014 04:11:24 AM,09/20/2014 04:12:47 AM,09/20/2014 04:15:02 AM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Fire,09/20/2014 04:15:14 AM,9TH ST/HARRISON ST,San Francisco,94103,B03,29,2333,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7725264425971, -122.410076850083)",142630541-E29 +160990101,78,16039158,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:51:07 AM,04/08/2016 12:54:40 AM,04/08/2016 12:54:57 AM,04/08/2016 12:55:07 AM,04/08/2016 01:00:27 AM,04/08/2016 01:28:45 AM,04/08/2016 01:39:39 AM,Code 2 Transport,04/08/2016 02:05:00 AM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",160990101-78 +160942810,KM12,16037365,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:50:23 PM,04/03/2016 05:52:12 PM,04/03/2016 05:54:36 PM,04/03/2016 05:55:27 PM,04/03/2016 06:06:03 PM,04/03/2016 06:47:21 PM,04/03/2016 06:47:36 PM,Code 2 Transport,04/03/2016 07:07:31 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160942810-KM12 +160972932,KM04,16038524,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 04:20:21 PM,04/06/2016 04:22:13 PM,04/06/2016 04:26:25 PM,04/06/2016 04:27:18 PM,04/06/2016 04:40:44 PM,04/06/2016 05:31:30 PM,04/06/2016 05:32:28 PM,Other,04/06/2016 06:15:09 PM,SOUTH VAN NESS AV/22ND ST,San Francisco,94110,B06,7,5455,2,2,2,false,Non Life-threatening,1,PRIVATE,3,6,9,Mission,"(37.7555682781294, -122.416566643053)",160972932-KM04 +160972010,74,16038422,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:01:02 PM,04/06/2016 01:01:02 PM,04/06/2016 01:02:01 PM,04/06/2016 01:02:08 PM,04/06/2016 01:08:18 PM,04/06/2016 01:21:39 PM,04/06/2016 01:43:51 PM,Code 2 Transport,04/06/2016 01:45:29 PM,WENTWORTH PL/WASHINGTON ST,San Francisco,94108,B01,13,1245,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7951982822872, -122.406045237964)",160972010-74 +141780347,E01,14061289,Medical Incident,06/27/2014,06/26/2014,06/27/2014 04:19:16 AM,06/27/2014 04:21:24 AM,06/27/2014 04:22:01 AM,06/27/2014 04:23:46 AM,06/27/2014 04:25:39 AM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Code 2 Transport,06/27/2014 04:36:31 AM,400 Block of TEHAMA ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.78023451932, -122.405564838884)",141780347-E01 +153162924,59,15121523,Medical Incident,11/12/2015,11/12/2015,11/12/2015 05:23:08 PM,11/12/2015 05:24:22 PM,11/12/2015 05:25:05 PM,11/12/2015 05:25:19 PM,11/12/2015 05:31:08 PM,11/12/2015 05:53:40 PM,11/12/2015 05:57:58 PM,Code 2 Transport,11/12/2015 06:30:11 PM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",153162924-59 +152213316,RS1,15084356,Medical Incident,08/09/2015,08/09/2015,08/09/2015 08:00:31 PM,08/09/2015 08:02:05 PM,08/09/2015 08:02:30 PM,08/09/2015 08:03:51 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Code 3 Transport,08/09/2015 08:06:43 PM,100 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7789597633583, -122.410718060304)",152213316-RS1 +152040156,57,15077564,Medical Incident,07/23/2015,07/22/2015,07/23/2015 01:18:37 AM,07/23/2015 01:20:00 AM,07/23/2015 01:20:19 AM,07/23/2015 01:20:53 AM,07/23/2015 01:32:02 AM,07/23/2015 01:36:21 AM,07/23/2015 01:54:31 AM,Code 2 Transport,07/23/2015 02:24:54 AM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",152040156-57 +160963726,68,16038183,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:43:23 PM,04/05/2016 08:44:11 PM,04/05/2016 08:44:39 PM,04/05/2016 08:45:37 PM,04/05/2016 08:53:47 PM,04/05/2016 09:12:18 PM,04/05/2016 09:32:06 PM,Code 2 Transport,04/05/2016 10:06:17 PM,1500 Block of FRANCISCO ST,San Francisco,94123,B04,16,3351,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8025340608773, -122.430687416035)",160963726-68 +160950806,62,16037550,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:49:09 AM,04/04/2016 08:49:09 AM,04/04/2016 08:49:13 AM,04/04/2016 08:49:20 AM,04/04/2016 09:31:36 AM,04/04/2016 09:34:19 AM,04/04/2016 09:31:37 AM,Code 2 Transport,04/04/2016 11:02:14 AM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",160950806-62 +141260111,88,14042653,Traffic Collision,05/06/2014,05/06/2014,05/06/2014 08:24:20 AM,05/06/2014 08:24:56 AM,05/06/2014 08:25:14 AM,05/06/2014 08:27:42 AM,05/06/2014 08:30:16 AM,05/06/2014 09:05:44 AM,05/06/2014 09:20:41 AM,Code 2 Transport,05/06/2014 10:25:50 AM,FULTON ST/WEBSTER ST,SAN FRANCISCO,94117,B05,5,3521,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7779192948104, -122.42984920232)",141260111-88 +143090028,AM24,14109212,Medical Incident,11/05/2014,11/04/2014,11/05/2014 12:14:44 AM,11/05/2014 12:14:44 AM,11/05/2014 12:14:58 AM,11/05/2014 12:15:44 AM,11/05/2014 12:26:10 AM,11/05/2014 12:33:15 AM,11/05/2014 01:02:38 AM,Code 2 Transport,11/05/2014 01:20:28 AM,3RD ST/STEVENSON ST,San Francisco,94103,B03,1,2211,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7870244175155, -122.403028194221)",143090028-AM24 +153010156,E26,15115328,Medical Incident,10/28/2015,10/27/2015,10/28/2015 01:19:16 AM,10/28/2015 01:21:08 AM,10/28/2015 01:21:32 AM,10/28/2015 01:23:31 AM,10/28/2015 01:26:27 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Against Medical Advice,10/28/2015 01:52:05 AM,5200 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",153010156-E26 +141352040,85,14046187,Medical Incident,05/15/2014,05/15/2014,05/15/2014 01:47:36 PM,05/15/2014 01:49:44 PM,05/15/2014 01:50:08 PM,05/15/2014 01:52:29 PM,05/15/2014 02:01:22 PM,05/15/2014 02:16:29 PM,05/15/2014 02:42:56 PM,Code 2 Transport,05/15/2014 03:21:07 PM,0 Block of ALPINE TER,San Francisco,94117,B05,6,5134,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7696195180952, -122.437747677878)",141352040-85 +141652443,T15,14056985,Citizen Assist / Service Call,06/14/2014,06/14/2014,06/14/2014 05:04:10 PM,06/14/2014 05:05:57 PM,06/14/2014 05:07:21 PM,06/14/2014 05:08:34 PM,06/14/2014 05:11:20 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Fire,06/14/2014 05:18:00 PM,1400 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8515,3,3,3,false,Alarm,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7281546742461, -122.456574518176)",141652443-T15 +141680374,E38,14057840,Alarms,06/17/2014,06/16/2014,06/17/2014 05:26:50 AM,06/17/2014 05:27:57 AM,06/17/2014 05:32:52 AM,06/17/2014 05:34:38 AM,06/17/2014 05:36:25 AM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/17/2014 05:44:26 AM,2300 Block of PINE ST,San Francisco,94115,B04,38,3543,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7878999566909, -122.434481068996)",141680374-E38 +141060256,82,14035798,Medical Incident,04/16/2014,04/16/2014,04/16/2014 01:38:52 PM,04/16/2014 01:41:04 PM,04/16/2014 01:41:43 PM,04/16/2014 01:41:55 PM,04/16/2014 01:58:06 PM,04/16/2014 02:12:15 PM,04/16/2014 02:22:03 PM,Code 2 Transport,04/16/2014 03:20:54 PM,1300 Block of BOSWORTH ST,SAN FRANCISCO,94131,B09,26,8179,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7364473397419, -122.441834902263)",141060256-82 +150332856,74,15012847,Medical Incident,02/02/2015,02/02/2015,02/02/2015 06:12:06 PM,02/02/2015 06:13:48 PM,02/02/2015 06:14:11 PM,02/02/2015 06:14:28 PM,02/02/2015 06:34:03 PM,04/25/2016 01:12:29 PM,04/25/2016 01:12:29 PM,Patient Declined Transport,02/02/2015 06:54:31 PM,200 Block of 11TH ST,San Francisco,94103,B02,36,5114,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7729135734441, -122.415232222181)",150332856-74 +160982100,AM02,16038936,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:46:03 PM,04/07/2016 01:48:05 PM,04/07/2016 01:49:11 PM,04/07/2016 01:49:59 PM,04/07/2016 02:02:14 PM,04/07/2016 02:23:11 PM,04/07/2016 02:48:21 PM,Code 2 Transport,04/07/2016 03:33:53 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160982100-AM02 +152051290,D2,15078024,Structure Fire,07/24/2015,07/24/2015,07/24/2015 10:34:51 AM,07/24/2015 10:35:29 AM,07/24/2015 10:37:21 AM,07/24/2015 10:37:21 AM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Fire,07/24/2015 10:40:25 AM,800 Block of STANYAN ST,San Francisco,94117,B05,12,4551,3,3,3,false,Alarm,1,CHIEF,11,5,5,Haight Ashbury,"(37.7668463317755, -122.453001181451)",152051290-D2 +143491379,72,14124599,Medical Incident,12/15/2014,12/15/2014,12/15/2014 11:49:01 AM,12/15/2014 11:52:23 AM,12/15/2014 11:54:42 AM,12/15/2014 11:55:07 AM,12/15/2014 12:07:30 PM,12/15/2014 12:24:47 PM,12/15/2014 12:38:25 PM,Code 2 Transport,12/15/2014 12:55:42 PM,16TH ST/CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",143491379-72 +152220460,AM02,15084476,Medical Incident,08/10/2015,08/09/2015,08/10/2015 06:11:33 AM,08/10/2015 06:15:39 AM,08/10/2015 06:15:59 AM,08/10/2015 06:16:33 AM,08/10/2015 06:22:00 AM,08/10/2015 06:48:44 AM,08/10/2015 07:18:12 AM,Code 2 Transport,08/10/2015 07:47:58 AM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",152220460-AM02 +150583051,64,15022280,Medical Incident,02/27/2015,02/27/2015,02/27/2015 06:42:38 PM,02/27/2015 06:43:32 PM,02/27/2015 06:43:40 PM,02/27/2015 06:43:54 PM,02/27/2015 06:48:23 PM,02/27/2015 07:06:04 PM,02/27/2015 07:34:37 PM,Code 2 Transport,02/27/2015 08:03:44 PM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7600451698328, -122.423265598657)",150583051-64 +160930291,AM24,16036697,Structure Fire,04/02/2016,04/01/2016,04/02/2016 02:01:33 AM,04/02/2016 02:01:33 AM,04/02/2016 02:08:27 AM,04/02/2016 02:09:24 AM,04/02/2016 02:11:32 AM,04/02/2016 02:30:12 AM,04/02/2016 02:41:54 AM,Code 2 Transport,04/02/2016 03:18:36 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,false,Alarm,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160930291-AM24 +152121723,55,15080751,Medical Incident,07/31/2015,07/31/2015,07/31/2015 01:17:01 PM,07/31/2015 01:17:15 PM,07/31/2015 01:17:24 PM,07/31/2015 01:17:34 PM,07/31/2015 01:24:17 PM,07/31/2015 01:38:05 PM,07/31/2015 02:32:23 PM,Code 2 Transport,07/31/2015 02:59:22 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",152121723-55 +150781391,E01,15029866,Medical Incident,03/19/2015,03/19/2015,03/19/2015 10:39:45 AM,03/19/2015 10:40:41 AM,03/19/2015 10:41:52 AM,03/19/2015 10:42:22 AM,03/19/2015 10:42:22 AM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Code 2 Transport,03/19/2015 10:46:55 AM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",150781391-E01 +152673037,72,15102390,Medical Incident,09/24/2015,09/24/2015,09/24/2015 05:15:39 PM,09/24/2015 05:15:39 PM,09/24/2015 05:16:09 PM,09/24/2015 05:17:44 PM,09/24/2015 05:25:38 PM,09/24/2015 05:37:18 PM,09/24/2015 05:44:12 PM,Code 2 Transport,09/24/2015 06:18:15 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",152673037-72 +142191250,E15,14075947,Medical Incident,08/07/2014,08/07/2014,08/07/2014 11:09:53 AM,08/07/2014 11:11:57 AM,08/07/2014 11:12:24 AM,08/07/2014 11:13:10 AM,08/07/2014 11:17:14 AM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,Code 2 Transport,08/07/2014 11:33:27 AM,300 Block of HOLLOWAY AVE,San Francisco,94112,B09,15,8473,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7217895414689, -122.456652046014)",142191250-E15 +160962947,54,16038109,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:19:16 PM,04/05/2016 05:19:16 PM,04/05/2016 05:19:26 PM,04/05/2016 05:19:35 PM,04/05/2016 05:25:17 PM,04/05/2016 05:59:00 PM,04/05/2016 06:08:22 PM,Code 2 Transport,04/05/2016 06:46:46 PM,2300 Block of FILBERT ST,San Francisco,94123,B04,16,3611,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.797652774687, -122.438136095814)",160962947-54 +153013823,79,15115625,Medical Incident,10/28/2015,10/28/2015,10/28/2015 08:49:01 PM,10/28/2015 08:49:01 PM,10/28/2015 09:01:42 PM,10/28/2015 09:01:42 PM,10/28/2015 09:11:58 PM,10/28/2015 09:25:45 PM,10/28/2015 09:34:18 PM,Code 2 Transport,10/28/2015 10:21:42 PM,5TH ST/CLARA ST,San Francisco,94107,B03,8,2243,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7794587157277, -122.40237749197)",153013823-79 +151630044,AM20,15062121,,06/12/2015,06/11/2015,06/12/2015 12:26:00 AM,06/12/2015 12:26:00 AM,06/12/2015 12:27:00 AM,06/12/2015 12:27:00 AM,06/12/2015 12:28:00 AM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,SFPD,06/12/2015 12:29:00 AM,18TH ST/CHURCH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",151630044-AM20 +142253305,E31,14078266,Medical Incident,08/13/2014,08/13/2014,08/13/2014 07:53:10 PM,08/13/2014 07:57:46 PM,08/13/2014 07:59:51 PM,08/13/2014 08:00:54 PM,08/13/2014 08:02:43 PM,04/25/2016 01:15:41 PM,04/25/2016 01:15:41 PM,No Merit,08/13/2014 08:12:45 PM,12TH AV/GEARY BL,San Francisco,94118,B07,31,7141,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7807233526762, -122.470716748604)",142253305-E31 +152821558,E41,15108227,Medical Incident,10/09/2015,10/09/2015,10/09/2015 12:07:55 PM,10/09/2015 12:07:55 PM,10/09/2015 12:10:25 PM,10/09/2015 12:11:16 PM,10/09/2015 12:14:44 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Code 2 Transport,10/09/2015 12:32:54 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",152821558-E41 +151992613,E40,15075919,Medical Incident,07/18/2015,07/18/2015,07/18/2015 04:37:58 PM,07/18/2015 04:39:25 PM,07/18/2015 04:40:20 PM,07/18/2015 04:41:14 PM,07/18/2015 04:42:53 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Code 2 Transport,07/18/2015 04:58:04 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",151992613-E40 +150980427,61,15036972,Medical Incident,04/08/2015,04/07/2015,04/08/2015 06:41:08 AM,04/08/2015 06:41:08 AM,04/08/2015 06:41:42 AM,04/08/2015 06:41:51 AM,04/08/2015 06:49:34 AM,04/08/2015 07:05:41 AM,04/08/2015 07:50:34 AM,Code 2 Transport,04/08/2015 08:19:49 AM,FULTON ST/14TH AV,San Francisco,94118,B07,31,7144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7731144219056, -122.472297340928)",150980427-61 +150601739,KM04,15022925,Traffic Collision,03/01/2015,03/01/2015,03/01/2015 12:39:29 PM,03/01/2015 12:40:23 PM,03/01/2015 12:40:38 PM,03/01/2015 12:41:10 PM,03/01/2015 12:45:54 PM,03/01/2015 01:04:15 PM,03/01/2015 01:14:44 PM,Code 2 Transport,03/01/2015 01:47:18 PM,13TH ST/FOLSOM ST,San Francisco,94103,B02,36,5123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7695911594816, -122.415577014994)",150601739-KM04 +151561707,B10,15059511,Structure Fire,06/05/2015,06/05/2015,06/05/2015 12:43:22 PM,06/05/2015 12:43:22 PM,06/05/2015 12:43:30 PM,06/05/2015 12:45:47 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Fire,06/05/2015 12:48:32 PM,1200 Block of CAROLINA ST,San Francisco,94107,B10,37,256,3,3,3,false,Alarm,1,CHIEF,2,10,10,Potrero Hill,"(37.7526323138734, -122.398696830553)",151561707-B10 +142731412,BE1,14095682,Traffic Collision,09/30/2014,09/30/2014,09/30/2014 11:06:51 AM,09/30/2014 11:06:51 AM,09/30/2014 11:17:27 AM,09/30/2014 11:17:27 AM,09/30/2014 11:17:27 AM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Fire,09/30/2014 12:16:51 PM,CUMBERLAND ST/DOLORES ST,San Francisco,94110,B06,7,5445,2,2,2,false,Non Life-threatening,1,SUPPORT,3,6,8,Castro/Upper Market,"(37.7590293975402, -122.425843423554)",142731412-BE1 +160941191,KM06,16037210,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:00:00 AM,04/03/2016 10:03:01 AM,04/03/2016 10:03:39 AM,04/03/2016 10:04:08 AM,04/03/2016 10:20:51 AM,04/03/2016 10:42:35 AM,04/03/2016 11:03:52 AM,Code 2 Transport,04/03/2016 11:30:21 AM,400 Block of GREENWICH ST,San Francisco,94133,B01,28,1335,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.8025926398562, -122.407698526758)",160941191-KM06 +160931313,71,16036814,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:03:23 AM,04/02/2016 11:05:06 AM,04/02/2016 11:05:32 AM,04/02/2016 11:05:37 AM,04/02/2016 11:15:11 AM,04/02/2016 11:30:18 AM,04/02/2016 11:51:39 AM,Code 2 Transport,04/02/2016 12:11:23 PM,1800 Block of ALABAMA ST,San Francisco,94110,B10,9,5723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7440407303083, -122.410294185336)",160931313-71 +142870916,E17,14101077,Medical Incident,10/14/2014,10/14/2014,10/14/2014 09:05:05 AM,10/14/2014 09:07:01 AM,10/14/2014 09:07:49 AM,10/14/2014 09:09:56 AM,10/14/2014 09:12:55 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/14/2014 09:26:08 AM,BAYSHORE BL/FITZGERALD AV,San Francisco,94134,B10,17,6451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7269647590739, -122.401875118972)",142870916-E17 +152683423,75,15102833,Medical Incident,09/25/2015,09/25/2015,09/25/2015 08:03:03 PM,09/25/2015 08:04:41 PM,09/25/2015 08:04:53 PM,09/25/2015 08:05:00 PM,09/25/2015 08:09:29 PM,09/25/2015 08:16:28 PM,09/25/2015 08:46:58 PM,Code 2 Transport,09/25/2015 08:52:01 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",152683423-75 +152721263,RS2,15104098,Medical Incident,09/29/2015,09/29/2015,09/29/2015 10:43:09 AM,09/29/2015 10:44:45 AM,09/29/2015 10:45:00 AM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Code 2 Transport,09/29/2015 10:46:06 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",152721263-RS2 +160983046,67,16039047,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 06:01:06 PM,04/07/2016 06:01:06 PM,04/07/2016 06:01:20 PM,04/07/2016 06:02:01 PM,04/07/2016 06:02:57 PM,04/07/2016 06:23:29 PM,04/07/2016 06:37:50 PM,Code 2 Transport,04/07/2016 06:55:19 PM,16TH ST/DOLORES ST,San Francisco,94103,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7646456890217, -122.426381708495)",160983046-67 +160951525,AM06,16037603,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:49:38 AM,04/04/2016 11:49:56 AM,04/04/2016 11:51:06 AM,04/04/2016 11:52:35 AM,04/04/2016 11:57:58 AM,04/04/2016 12:16:21 PM,04/04/2016 12:57:05 PM,Code 2 Transport,04/04/2016 01:16:30 PM,200 Block of ATHENS ST,San Francisco,94112,B09,43,6155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.723939347671, -122.426606498513)",160951525-AM06 +152363868,58,15090092,Medical Incident,08/24/2015,08/24/2015,08/24/2015 09:09:54 PM,08/24/2015 09:10:08 PM,08/24/2015 09:11:50 PM,08/24/2015 09:11:58 PM,08/24/2015 09:22:28 PM,04/25/2016 01:08:44 PM,04/25/2016 01:08:44 PM,Medical Examiner,08/24/2015 09:22:56 PM,0 Block of ESQUINA DR,San Francisco,94134,B09,43,6246,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7094419771959, -122.421375208172)",152363868-58 +142932805,82,14103457,Alarms,10/20/2014,10/20/2014,10/20/2014 06:21:14 PM,10/20/2014 06:24:35 PM,10/20/2014 06:26:10 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 06:26:59 PM,200 Block of LAKE MERCED HILL ST,San Francisco,94132,B08,19,8777,3,3,3,true,Alarm,1,MEDIC,2,8,7,Lakeshore,"(37.7130437838335, -122.483644013853)",142932805-82 +153252514,AM08,15125191,Medical Incident,11/21/2015,11/21/2015,11/21/2015 04:04:55 PM,11/21/2015 04:05:53 PM,11/21/2015 04:09:37 PM,11/21/2015 04:10:13 PM,11/21/2015 04:25:30 PM,11/21/2015 04:40:44 PM,11/21/2015 05:05:25 PM,Code 2 Transport,11/21/2015 05:37:01 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",153252514-AM08 +143491632,T12,14124629,Medical Incident,12/15/2014,12/15/2014,12/15/2014 01:02:51 PM,12/15/2014 01:03:12 PM,12/15/2014 01:05:53 PM,12/15/2014 01:07:04 PM,12/15/2014 01:09:22 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,No Merit,12/15/2014 01:16:10 PM,500 Block of PARNASSUS AVE,San Francisco,94122,B05,12,7323,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",143491632-T12 +152651095,87,15101414,Medical Incident,09/22/2015,09/22/2015,09/22/2015 09:34:39 AM,09/22/2015 09:36:03 AM,09/22/2015 09:37:03 AM,09/22/2015 09:37:17 AM,09/22/2015 09:49:09 AM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,No Merit,09/22/2015 09:49:44 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",152651095-87 +141851112,B10,14063989,Other,07/04/2014,07/04/2014,07/04/2014 11:19:36 AM,07/04/2014 11:19:36 AM,07/04/2014 11:21:24 AM,07/04/2014 11:21:30 AM,07/04/2014 11:35:17 AM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Code 2 Transport,07/04/2014 12:03:05 PM,1000 Block of PENNSYLVANIA AVE,San Francisco,94107,B10,25,2612,3,3,3,false,Alarm,1,CHIEF,3,10,10,Potrero Hill,"(37.7528044929205, -122.39273368843)",141851112-B10 +141190353,T16,14040298,Citizen Assist / Service Call,04/29/2014,04/29/2014,04/29/2014 07:21:44 PM,04/29/2014 07:23:16 PM,04/29/2014 07:23:37 PM,04/29/2014 07:25:17 PM,04/29/2014 07:26:52 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Fire,04/29/2014 07:51:05 PM,2600 Block of GREENWICH ST,SAN FRANCISCO,94123,B04,16,4166,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.7980599014421, -122.443314080143)",141190353-T16 +142490898,E18,14086734,Medical Incident,09/06/2014,09/06/2014,09/06/2014 08:25:05 AM,09/06/2014 08:25:05 AM,09/06/2014 08:25:47 AM,09/06/2014 08:27:50 AM,09/06/2014 08:30:26 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/06/2014 08:57:41 AM,2400 Block of 27TH AVE,San Francisco,94116,B08,40,7466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7417422791405, -122.484128892254)",142490898-E18 +150130277,E08,15005010,Medical Incident,01/13/2015,01/12/2015,01/13/2015 02:43:46 AM,01/13/2015 02:46:34 AM,01/13/2015 02:50:45 AM,01/13/2015 02:52:43 AM,01/13/2015 02:54:56 AM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Code 2 Transport,01/13/2015 03:16:46 AM,200 Block of KING ST,San Francisco,94107,B03,8,2171,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",150130277-E08 +143272253,82,14115928,Medical Incident,11/23/2014,11/23/2014,11/23/2014 02:45:41 PM,11/23/2014 02:46:58 PM,11/23/2014 02:47:35 PM,11/23/2014 02:47:43 PM,11/23/2014 02:58:30 PM,11/23/2014 03:12:49 PM,11/23/2014 03:31:25 PM,Code 2 Transport,11/23/2014 03:57:48 PM,JUDAH ST/11TH AV,San Francisco,94122,B08,22,7334,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7620811129062, -122.468321004117)",143272253-82 +152212652,E20,15084297,Structure Fire,08/09/2015,08/09/2015,08/09/2015 05:13:14 PM,08/09/2015 05:14:11 PM,08/09/2015 05:14:50 PM,08/09/2015 05:16:22 PM,08/09/2015 05:22:26 PM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Fire,08/09/2015 05:47:19 PM,4500 Block of 18TH ST,San Francisco,94114,B05,24,5413,3,3,3,true,Fire,1,ENGINE,7,6,8,Castro/Upper Market,"(37.7604535146359, -122.441241695805)",152212652-E20 +160973260,61,16038559,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:23:50 PM,04/06/2016 05:24:09 PM,04/06/2016 05:26:04 PM,04/06/2016 05:26:04 PM,04/06/2016 05:31:02 PM,04/06/2016 05:46:42 PM,04/06/2016 06:31:27 PM,Code 2 Transport,04/06/2016 06:55:23 PM,0 Block of ATHENS ST,San Francisco,94112,B09,43,6146,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7272929954166, -122.424276475396)",160973260-61 +143450087,54,14122543,Medical Incident,12/11/2014,12/10/2014,12/11/2014 12:43:04 AM,12/11/2014 12:43:04 AM,12/11/2014 12:44:12 AM,12/11/2014 12:46:34 AM,12/11/2014 01:30:04 AM,12/11/2014 01:30:14 AM,12/11/2014 01:30:18 AM,Code 2 Transport,12/11/2014 02:01:28 AM,13TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",143450087-54 +160940108,63,16037103,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:32:42 AM,04/03/2016 12:34:17 AM,04/03/2016 12:34:46 AM,04/03/2016 12:35:03 AM,04/03/2016 01:04:14 AM,04/03/2016 01:09:44 AM,04/03/2016 01:27:24 AM,Code 2 Transport,04/03/2016 01:39:02 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160940108-63 +152080656,E28,15079169,Medical Incident,07/27/2015,07/26/2015,07/27/2015 07:34:10 AM,07/27/2015 07:34:55 AM,07/27/2015 07:35:21 AM,07/27/2015 07:36:18 AM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,Cancelled,07/27/2015 07:37:50 AM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8056674488919, -122.412766371216)",152080656-E28 +141420706,E13,14048594,Medical Incident,05/22/2014,05/22/2014,05/22/2014 08:08:06 AM,05/22/2014 08:10:43 AM,05/22/2014 08:11:05 AM,05/22/2014 08:11:21 AM,05/22/2014 08:14:35 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,No Merit,05/22/2014 08:23:20 AM,MARKET ST/SPEAR ST,San Francisco,94105,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",141420706-E13 +160942525,KM02,16037334,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:33:12 PM,04/03/2016 04:34:15 PM,04/03/2016 04:34:27 PM,04/03/2016 04:35:19 PM,04/03/2016 04:38:13 PM,04/03/2016 04:57:00 PM,04/03/2016 05:09:15 PM,Code 3 Transport,04/03/2016 05:40:47 PM,300 Block of FAXON AVE,San Francisco,94112,B09,15,8463,2,3,3,false,Non Life-threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209277240745, -122.460290446387)",160942525-KM02 +151832046,T19,15069878,Outside Fire,07/02/2015,07/02/2015,07/02/2015 01:27:41 PM,07/02/2015 01:28:52 PM,07/02/2015 01:30:08 PM,07/02/2015 01:31:25 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Fire,07/02/2015 01:34:59 PM,100 Block of ROLPH ST,San Francisco,94112,B09,43,6232,3,3,3,false,Fire,1,TRUCK,4,9,11,Excelsior,"(37.7149019427969, -122.439514308609)",151832046-T19 +152070867,68,15078804,Medical Incident,07/26/2015,07/26/2015,07/26/2015 08:22:13 AM,07/26/2015 08:24:03 AM,07/26/2015 08:24:23 AM,07/26/2015 08:25:10 AM,07/26/2015 08:37:02 AM,07/26/2015 08:45:47 AM,07/26/2015 08:59:08 AM,Code 2 Transport,07/26/2015 09:32:35 AM,18TH ST/VALENCIA ST,San Francisco,94110,B02,7,5423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7617009099893, -122.421578400735)",152070867-68 +141351966,T10,14046179,Structure Fire,05/15/2014,05/15/2014,05/15/2014 01:30:31 PM,05/15/2014 01:30:31 PM,05/15/2014 01:31:32 PM,05/15/2014 01:33:07 PM,05/15/2014 01:35:08 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/15/2014 01:35:14 PM,100 Block of ANZA ST,San Francisco,94118,B05,10,4456,3,3,3,false,Alarm,1,TRUCK,2,5,1,Lone Mountain/USF,"(37.7810168561812, -122.448161393313)",141351966-T10 +141362395,55,14046622,Medical Incident,05/16/2014,05/16/2014,05/16/2014 04:35:15 PM,05/16/2014 04:37:09 PM,05/16/2014 04:37:49 PM,05/16/2014 04:38:00 PM,05/16/2014 04:41:02 PM,05/16/2014 04:53:48 PM,05/16/2014 05:26:40 PM,Code 2 Transport,05/16/2014 06:01:18 PM,1400 Block of FRANKLIN ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7880337548121, -122.423614357336)",141362395-55 +143171666,E11,14112267,Structure Fire,11/13/2014,11/13/2014,11/13/2014 12:31:53 PM,11/13/2014 12:31:53 PM,11/13/2014 12:32:01 PM,11/13/2014 12:34:17 PM,11/13/2014 12:34:17 PM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Fire,11/13/2014 12:41:08 PM,3300 Block of 23RD ST,San Francisco,94110,B06,11,552,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7536816295495, -122.420253564524)",143171666-E11 +142743076,81,14096194,Medical Incident,10/01/2014,10/01/2014,10/01/2014 06:24:45 PM,10/01/2014 06:25:09 PM,10/01/2014 06:25:58 PM,10/01/2014 06:26:04 PM,10/01/2014 06:31:02 PM,10/01/2014 06:48:17 PM,10/01/2014 07:12:31 PM,Code 2 Transport,10/01/2014 07:49:07 PM,JONES ST/JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8080133240409, -122.417445939002)",142743076-81 +142113722,AP,14073316,Other,07/30/2014,07/30/2014,07/30/2014 10:37:26 PM,07/30/2014 10:37:26 PM,07/30/2014 10:37:26 PM,07/30/2014 10:37:26 PM,07/30/2014 10:37:26 PM,04/25/2016 01:15:56 PM,04/25/2016 01:15:56 PM,Fire,07/30/2014 10:38:15 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",142113722-AP +142813263,E15,14099011,Medical Incident,10/08/2014,10/08/2014,10/08/2014 08:04:23 PM,10/08/2014 08:06:22 PM,10/08/2014 08:06:42 PM,10/08/2014 08:08:10 PM,10/08/2014 08:10:54 PM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 08:20:51 PM,1400 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7290819702136, -122.434340378969)",142813263-E15 +150501154,AM08,15019260,Medical Incident,02/19/2015,02/19/2015,02/19/2015 10:18:54 AM,02/19/2015 10:21:09 AM,02/19/2015 10:22:05 AM,02/19/2015 10:23:03 AM,02/19/2015 10:27:37 AM,02/19/2015 10:31:43 AM,02/19/2015 10:44:47 AM,Code 2 Transport,02/19/2015 11:18:58 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",150501154-AM08 +143410775,E03,14121075,Outside Fire,12/07/2014,12/06/2014,12/07/2014 07:06:19 AM,12/07/2014 07:10:19 AM,12/07/2014 07:10:57 AM,12/07/2014 07:12:23 AM,12/07/2014 07:14:46 AM,04/25/2016 01:13:36 PM,04/25/2016 01:13:36 PM,Fire,12/07/2014 07:19:51 AM,800 Block of POLK ST,San Francisco,94109,B02,3,3116,3,3,3,true,Fire,1,ENGINE,1,2,6,Tenderloin,"(37.7842697641002, -122.419480276468)",143410775-E03 +143612122,E13,14129202,Medical Incident,12/27/2014,12/27/2014,12/27/2014 03:33:09 PM,12/27/2014 03:34:03 PM,12/27/2014 03:35:01 PM,12/27/2014 03:35:40 PM,12/27/2014 03:38:13 PM,04/25/2016 01:13:11 PM,04/25/2016 01:13:11 PM,Fire,12/27/2014 03:42:34 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",143612122-E13 +153162707,T06,15121504,Other,11/12/2015,11/12/2015,11/12/2015 04:26:52 PM,11/12/2015 04:36:05 PM,11/12/2015 04:36:36 PM,11/12/2015 04:37:50 PM,11/12/2015 04:40:51 PM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,Fire,11/12/2015 04:53:08 PM,1900 Block of MARKET ST,San Francisco,94102,B02,36,3416,3,3,3,false,Alarm,1,TRUCK,2,2,8,Hayes Valley,"(37.7702451976438, -122.425669041358)",153162707-T06 +160953190,87,16037747,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:25:53 PM,04/04/2016 06:26:46 PM,04/04/2016 06:28:04 PM,04/04/2016 06:28:28 PM,04/04/2016 06:34:33 PM,04/04/2016 06:53:26 PM,04/04/2016 07:27:02 PM,Code 2 Transport,04/04/2016 07:55:52 PM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",160953190-87 +142242738,E36,14077839,Medical Incident,08/12/2014,08/12/2014,08/12/2014 06:01:07 PM,08/12/2014 06:03:32 PM,08/12/2014 06:05:25 PM,08/12/2014 06:05:40 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Code 2 Transport,08/12/2014 06:14:20 PM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",142242738-E36 +142920455,T03,14102866,Citizen Assist / Service Call,10/19/2014,10/18/2014,10/19/2014 02:38:40 AM,10/19/2014 02:43:47 AM,10/19/2014 02:44:14 AM,10/19/2014 02:46:24 AM,10/19/2014 02:48:31 AM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Fire,10/19/2014 03:10:08 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",142920455-T03 +141841425,65,14063642,Medical Incident,07/03/2014,07/03/2014,07/03/2014 12:21:46 PM,07/03/2014 12:22:40 PM,07/03/2014 12:23:29 PM,07/03/2014 12:23:38 PM,07/03/2014 12:26:58 PM,07/03/2014 12:41:43 PM,07/03/2014 12:58:26 PM,Code 2 Transport,07/03/2014 01:26:27 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",141841425-65 +160974548,AM16,16038707,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:56:08 PM,04/06/2016 10:56:45 PM,04/06/2016 10:56:55 PM,04/06/2016 10:57:27 PM,04/06/2016 11:01:20 PM,04/06/2016 11:26:09 PM,04/06/2016 11:43:50 PM,Code 2 Transport,04/07/2016 12:12:48 AM,900 Block of GREEN ST,San Francisco,94133,B01,2,1441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",160974548-AM16 +153120160,B03,15119775,Alarms,11/08/2015,11/07/2015,11/08/2015 01:06:42 AM,11/08/2015 01:08:09 AM,11/08/2015 01:08:23 AM,11/08/2015 01:11:18 AM,11/08/2015 01:16:11 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/08/2015 01:56:53 AM,400 Block of BRYANT ST,San Francisco,94107,B03,8,2174,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7817993684645, -122.395335307159)",153120160-B03 +142502999,65,14087295,Medical Incident,09/07/2014,09/07/2014,09/07/2014 07:11:59 PM,09/07/2014 07:15:00 PM,09/07/2014 07:15:17 PM,09/07/2014 07:16:49 PM,09/07/2014 07:24:15 PM,09/07/2014 07:59:25 PM,09/07/2014 08:10:45 PM,Code 2 Transport,09/07/2014 08:28:05 PM,1500 Block of BRYANT ST,San Francisco,94103,B02,29,5222,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.767544783627, -122.410601263668)",142502999-65 +150562043,KM01,15021448,Medical Incident,02/25/2015,02/25/2015,02/25/2015 01:59:56 PM,02/25/2015 02:01:22 PM,02/25/2015 02:01:48 PM,02/25/2015 02:04:53 PM,02/25/2015 02:09:11 PM,02/25/2015 02:25:23 PM,02/25/2015 03:11:07 PM,Code 2 Transport,02/25/2015 03:15:23 PM,100 Block of CHURCH ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7690612353533, -122.429159883658)",150562043-KM01 +142090361,E11,14072314,Medical Incident,07/28/2014,07/27/2014,07/28/2014 04:19:02 AM,07/28/2014 04:19:46 AM,07/28/2014 04:20:07 AM,07/28/2014 04:21:32 AM,07/28/2014 04:24:23 AM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Code 2 Transport,07/28/2014 04:37:48 AM,SOUTH VAN NESS AV/CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7482121503815, -122.41586279408)",142090361-E11 +151733232,B07,15066204,Alarms,06/22/2015,06/22/2015,06/22/2015 09:21:33 PM,06/22/2015 09:23:17 PM,06/22/2015 09:23:38 PM,06/22/2015 09:24:56 PM,06/22/2015 09:28:09 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Fire,06/22/2015 09:31:59 PM,400 Block of 20TH AVE,San Francisco,94121,B07,14,7172,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7793747233139, -122.479242794814)",151733232-B07 +152393429,E36,15091169,Medical Incident,08/27/2015,08/27/2015,08/27/2015 07:19:43 PM,08/27/2015 07:21:43 PM,08/27/2015 07:21:57 PM,08/27/2015 07:23:22 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Code 2 Transport,08/27/2015 07:46:46 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",152393429-E36 +152832604,T10,15108724,Alarms,10/10/2015,10/10/2015,10/10/2015 03:53:01 PM,10/10/2015 03:54:02 PM,10/10/2015 03:54:09 PM,10/10/2015 03:56:22 PM,10/10/2015 03:58:45 PM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Fire,10/10/2015 04:08:38 PM,3300 Block of GEARY BLVD,San Francisco,94118,B07,10,4453,3,3,3,false,Alarm,1,TRUCK,1,7,2,Presidio Heights,"(37.7816501739638, -122.454753954171)",152832604-T10 +151642010,E36,15062757,Medical Incident,06/13/2015,06/13/2015,06/13/2015 02:47:44 PM,06/13/2015 02:47:44 PM,06/13/2015 02:48:12 PM,06/13/2015 02:48:16 PM,06/13/2015 02:51:24 PM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,Patient Declined Transport,06/13/2015 02:56:13 PM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",151642010-E36 +160982674,53,16039007,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:13:36 PM,04/07/2016 04:13:36 PM,04/07/2016 04:39:49 PM,04/07/2016 04:40:01 PM,04/07/2016 05:01:58 PM,04/07/2016 05:16:33 PM,04/07/2016 05:48:49 PM,Code 2 Transport,04/07/2016 06:32:03 PM,300 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",160982674-53 +143550443,E43,14126784,Medical Incident,12/21/2014,12/20/2014,12/21/2014 02:48:59 AM,12/21/2014 02:48:59 AM,12/21/2014 02:50:15 AM,12/21/2014 02:52:09 AM,12/21/2014 02:55:16 AM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Code 2 Transport,12/21/2014 02:56:32 AM,MISSION ST/GENEVA AV,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",143550443-E43 +152301592,E11,15087756,Medical Incident,08/18/2015,08/18/2015,08/18/2015 12:45:21 PM,08/18/2015 12:46:29 PM,08/18/2015 12:46:41 PM,08/18/2015 12:47:25 PM,08/18/2015 12:50:10 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Code 2 Transport,08/18/2015 01:02:33 PM,3300 Block of 23RD ST,San Francisco,94110,B06,11,5512,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7537483769495, -122.419144470556)",152301592-E11 +152530462,E03,15096603,Alarms,09/10/2015,09/09/2015,09/10/2015 05:27:57 AM,09/10/2015 05:29:24 AM,09/10/2015 05:30:05 AM,09/10/2015 05:31:33 AM,09/10/2015 05:34:32 AM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,Fire,09/10/2015 05:38:37 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",152530462-E03 +152720270,63,15104008,Medical Incident,09/29/2015,09/28/2015,09/29/2015 03:06:06 AM,09/29/2015 03:06:06 AM,09/29/2015 03:07:13 AM,09/29/2015 03:07:31 AM,09/29/2015 03:13:51 AM,09/29/2015 03:19:14 AM,09/29/2015 03:24:13 AM,Code 2 Transport,09/29/2015 04:00:13 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291630976058, -122.382538001818)",152720270-63 +160993331,AM20,16039447,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:47:23 PM,04/08/2016 07:48:39 PM,04/08/2016 07:49:00 PM,04/08/2016 07:49:39 PM,04/08/2016 08:15:16 PM,04/08/2016 08:15:20 PM,04/08/2016 08:33:25 PM,Code 2 Transport,04/08/2016 09:07:07 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160993331-AM20 +141190267,B03,14040219,Alarms,04/29/2014,04/29/2014,04/29/2014 03:11:41 PM,04/29/2014 03:12:49 PM,04/29/2014 03:12:56 PM,04/29/2014 03:13:07 PM,04/29/2014 03:17:28 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Fire,04/29/2014 03:21:23 PM,0 Block of 3RD ST,SAN FRANCISCO,94103,B03,1,2211,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",141190267-B03 +151570478,KM07,15059810,Medical Incident,06/06/2015,06/05/2015,06/06/2015 03:53:34 AM,06/06/2015 03:56:25 AM,06/06/2015 03:59:05 AM,06/06/2015 04:00:36 AM,06/06/2015 04:08:31 AM,06/06/2015 04:22:34 AM,06/06/2015 04:37:55 AM,Code 2 Transport,06/06/2015 05:19:55 AM,400 Block of PARIS ST,San Francisco,94112,B09,43,6126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7215760816833, -122.434936472806)",151570478-KM07 +152423847,RC1,15092502,Medical Incident,08/30/2015,08/30/2015,08/30/2015 11:07:30 PM,08/30/2015 11:07:30 PM,08/30/2015 11:08:09 PM,08/30/2015 11:09:28 PM,08/30/2015 11:12:22 PM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Code 3 Transport,08/30/2015 11:21:57 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",152423847-RC1 +160970169,AM20,16038254,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:36:14 AM,04/06/2016 01:36:14 AM,04/06/2016 01:36:48 AM,04/06/2016 01:37:49 AM,04/06/2016 02:07:15 AM,04/06/2016 02:07:19 AM,04/06/2016 02:15:56 AM,Code 2 Transport,04/06/2016 02:38:28 AM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8083718016522, -122.414994322047)",160970169-AM20 +151913790,E05,15073050,Medical Incident,07/10/2015,07/10/2015,07/10/2015 09:16:04 PM,07/10/2015 09:16:28 PM,07/10/2015 09:16:43 PM,07/10/2015 09:16:57 PM,07/10/2015 09:20:04 PM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,Code 2 Transport,07/10/2015 09:29:52 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",151913790-E05 +160930747,KM08,16036744,Medical Incident,04/02/2016,04/01/2016,04/02/2016 07:51:38 AM,04/02/2016 07:53:29 AM,04/02/2016 07:54:45 AM,04/02/2016 07:58:03 AM,04/02/2016 08:05:27 AM,04/02/2016 08:17:45 AM,04/02/2016 08:42:48 AM,Code 2 Transport,04/02/2016 09:21:53 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160930747-KM08 +160971606,KM06,16038386,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:32:21 AM,04/06/2016 11:33:56 AM,04/06/2016 11:36:34 AM,04/06/2016 11:37:47 AM,04/06/2016 11:40:31 AM,04/06/2016 12:07:53 PM,04/06/2016 12:17:47 PM,Code 2 Transport,04/06/2016 01:02:49 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160971606-KM06 +160982061,53,16038933,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:34:00 PM,04/07/2016 01:37:33 PM,04/07/2016 01:38:29 PM,04/07/2016 01:38:39 PM,04/07/2016 01:51:45 PM,04/07/2016 02:24:56 PM,04/07/2016 03:00:41 PM,Code 2 Transport,04/07/2016 03:24:10 PM,200 Block of WILSON ST,San Francisco,94112,B09,33,8364,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7093179070354, -122.461575199884)",160982061-53 +160951963,77,16037650,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:33:36 PM,04/04/2016 01:34:54 PM,04/04/2016 01:52:20 PM,04/04/2016 01:52:31 PM,04/04/2016 02:11:20 PM,04/04/2016 02:25:14 PM,04/04/2016 02:49:33 PM,Code 2 Transport,04/04/2016 03:21:35 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",160951963-77 +152650906,E01,15101404,Alarms,09/22/2015,09/22/2015,09/22/2015 08:47:44 AM,09/22/2015 08:48:59 AM,09/22/2015 08:49:34 AM,09/22/2015 08:50:03 AM,09/22/2015 08:51:56 AM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/22/2015 08:55:14 AM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7826425026927, -122.407832679288)",152650906-E01 +141420117,D2,14048543,Administrative,05/22/2014,05/21/2014,05/22/2014 12:56:33 AM,05/22/2014 12:57:17 AM,05/22/2014 12:57:27 AM,05/22/2014 12:57:27 AM,05/22/2014 12:57:42 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Other,05/22/2014 12:57:50 AM,1300 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,false,,1,CHIEF,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",141420117-D2 +150403763,E43,15015782,Medical Incident,02/09/2015,02/09/2015,02/09/2015 10:23:05 PM,02/09/2015 10:23:46 PM,02/09/2015 10:24:09 PM,02/09/2015 10:25:30 PM,02/09/2015 10:28:47 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/09/2015 10:34:44 PM,0 Block of ALLISON ST,San Francisco,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7141809805565, -122.442285746649)",150403763-E43 +143163017,E17,14112029,Medical Incident,11/12/2014,11/12/2014,11/12/2014 06:27:19 PM,11/12/2014 06:28:13 PM,11/12/2014 06:29:06 PM,11/12/2014 06:30:39 PM,11/12/2014 06:32:39 PM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Code 2 Transport,11/12/2014 06:44:23 PM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",143163017-E17 +141070254,E05,14036157,Medical Incident,04/17/2014,04/17/2014,04/17/2014 04:07:13 PM,04/17/2014 04:09:16 PM,04/17/2014 04:10:38 PM,04/17/2014 04:10:49 PM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Against Medical Advice,04/17/2014 04:14:28 PM,CALIFORNIA ST/LAUREL ST,SAN FRANCISCO,94118,B05,10,4373,E,2,2,true,Non Life-threatening,1,ENGINE,5,7,2,Presidio Heights,"(37.7868376588545, -122.45011844217)",141070254-E05 +141743154,T14,14060177,Structure Fire,06/23/2014,06/23/2014,06/23/2014 09:13:30 PM,06/23/2014 09:13:47 PM,06/23/2014 09:16:12 PM,06/23/2014 09:17:50 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,Fire,06/23/2014 09:21:21 PM,19TH AV/IRVING ST,San Francisco,94122,B08,22,7424,3,3,3,false,Alarm,1,TRUCK,10,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",141743154-T14 +152250773,AM02,15085667,Medical Incident,08/13/2015,08/12/2015,08/13/2015 07:58:28 AM,08/13/2015 07:59:27 AM,08/13/2015 08:00:09 AM,08/13/2015 08:00:53 AM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Other,08/13/2015 08:08:06 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",152250773-AM02 +150833759,KM15,15031876,Medical Incident,03/24/2015,03/24/2015,03/24/2015 10:00:50 PM,03/24/2015 10:02:41 PM,03/24/2015 10:03:04 PM,03/24/2015 10:03:50 PM,03/24/2015 10:08:30 PM,03/24/2015 10:16:31 PM,03/24/2015 10:31:23 PM,Code 2 Transport,03/24/2015 10:45:06 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",150833759-KM15 +143023604,AM30,14106788,Medical Incident,10/29/2014,10/29/2014,10/29/2014 09:26:31 PM,10/29/2014 09:26:51 PM,10/29/2014 09:27:53 PM,10/29/2014 09:32:44 PM,10/29/2014 09:35:22 PM,10/29/2014 09:54:26 PM,10/29/2014 10:14:17 PM,Code 2 Transport,10/29/2014 10:42:53 PM,1200 Block of 18TH AVE,San Francisco,94122,B08,22,7367,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,4,Inner Sunset,"(37.7645566497921, -122.476051423463)",143023604-AM30 +160933357,KM07,16037033,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:38:14 PM,04/02/2016 08:40:14 PM,04/02/2016 08:41:09 PM,04/02/2016 08:41:38 PM,04/02/2016 08:49:30 PM,04/02/2016 08:53:33 PM,04/02/2016 09:05:34 PM,Code 2 Transport,04/02/2016 09:30:14 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160933357-KM07 +142131723,KM01,14073845,Medical Incident,08/01/2014,08/01/2014,08/01/2014 01:09:12 PM,08/01/2014 01:09:34 PM,08/01/2014 01:09:58 PM,08/01/2014 01:13:30 PM,08/01/2014 01:26:30 PM,08/01/2014 01:26:35 PM,08/01/2014 01:49:22 PM,Code 2 Transport,08/01/2014 02:04:55 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",142131723-KM01 +153391809,79,15130446,Other,12/05/2015,12/05/2015,12/05/2015 12:43:22 PM,12/05/2015 12:43:22 PM,12/05/2015 12:44:06 PM,12/05/2015 12:46:11 PM,12/05/2015 12:51:36 PM,12/05/2015 01:04:34 PM,12/05/2015 01:15:03 PM,Code 3 Transport,12/05/2015 02:18:47 PM,5300 Block of GEARY BLVD,San Francisco,94121,B07,31,7161,3,3,3,true,Alarm,1,MEDIC,3,7,1,Outer Richmond,"(37.7805803412447, -122.476708282444)",153391809-79 +150012657,53,15000415,Medical Incident,01/01/2015,01/01/2015,01/01/2015 04:54:13 PM,01/01/2015 04:54:13 PM,01/01/2015 04:57:26 PM,01/01/2015 04:57:51 PM,01/01/2015 05:07:36 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Patient Declined Transport,01/01/2015 05:36:46 PM,300 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1162,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",150012657-53 +150383281,E13,15014922,Medical Incident,02/07/2015,02/07/2015,02/07/2015 07:52:55 PM,02/07/2015 07:52:55 PM,02/07/2015 07:54:25 PM,02/07/2015 07:55:51 PM,02/07/2015 07:57:22 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Code 2 Transport,02/07/2015 08:03:37 PM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",150383281-E13 +152842427,E08,15109112,Traffic Collision,10/11/2015,10/11/2015,10/11/2015 03:34:01 PM,10/11/2015 03:34:01 PM,10/11/2015 03:34:44 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Code 2 Transport,10/11/2015 03:34:56 PM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,Financial District/South Beach,"(37.7877468463797, -122.396934740624)",152842427-E08 +151260079,E05,15047589,Medical Incident,05/06/2015,05/05/2015,05/06/2015 12:36:38 AM,05/06/2015 12:37:10 AM,05/06/2015 12:37:26 AM,05/06/2015 12:39:11 AM,05/06/2015 12:39:17 AM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 3 Transport,05/06/2015 12:50:52 AM,WEBSTER ST/TURK ST,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.780715573218, -122.430424414848)",151260079-E05 +152181823,E14,15083010,Medical Incident,08/06/2015,08/06/2015,08/06/2015 01:19:03 PM,08/06/2015 01:20:08 PM,08/06/2015 01:20:25 PM,08/06/2015 01:21:27 PM,08/06/2015 01:23:14 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/06/2015 01:35:35 PM,1800 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7822297310045, -122.47897570251)",152181823-E14 +152301763,E36,15087770,Medical Incident,08/18/2015,08/18/2015,08/18/2015 01:27:05 PM,08/18/2015 01:27:32 PM,08/18/2015 01:27:45 PM,08/18/2015 01:29:11 PM,08/18/2015 01:32:17 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Code 2 Transport,08/18/2015 01:43:13 PM,900 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,3411,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,5,Western Addition,"(37.7803481047255, -122.425362908015)",152301763-E36 +152782002,E41,15106688,Alarms,10/05/2015,10/05/2015,10/05/2015 02:12:54 PM,10/05/2015 02:16:23 PM,10/05/2015 02:18:38 PM,10/05/2015 02:18:38 PM,10/05/2015 02:20:17 PM,04/25/2016 01:07:57 PM,04/25/2016 01:07:57 PM,Fire,10/05/2015 02:32:17 PM,2000 Block of HYDE ST,San Francisco,94109,B01,41,1611,3,3,3,false,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.7998094709512, -122.419239608183)",152782002-E41 +161000022,KM09,16039551,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:07:30 AM,04/09/2016 12:07:30 AM,04/09/2016 12:08:06 AM,04/09/2016 12:09:44 AM,04/09/2016 12:15:30 AM,04/09/2016 12:31:11 AM,04/09/2016 12:51:03 AM,Code 2 Transport,04/09/2016 01:29:42 AM,POLK ST/BAY ST,San Francisco,94109,B01,28,3134,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8043549238836, -122.423466054216)",161000022-KM09 +142170997,55,14075177,Medical Incident,08/05/2014,08/05/2014,08/05/2014 10:17:39 AM,08/05/2014 10:18:14 AM,08/05/2014 10:19:09 AM,08/05/2014 10:19:32 AM,08/05/2014 10:25:01 AM,08/05/2014 10:42:26 AM,08/05/2014 11:25:09 AM,Code 2 Transport,08/05/2014 11:33:37 AM,1300 Block of FELL ST,San Francisco,94117,B05,21,4252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7736869919131, -122.440088215983)",142170997-55 +161001507,64,16039747,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:23:15 PM,04/09/2016 12:24:00 PM,04/09/2016 12:24:49 PM,04/09/2016 12:25:49 PM,04/09/2016 12:34:07 PM,04/09/2016 12:50:57 PM,04/09/2016 01:00:11 PM,Code 2 Transport,04/09/2016 01:26:14 PM,800 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7909306094565, -122.409788680324)",161001507-64 +161002875,AM12,16039906,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:45:50 PM,04/09/2016 07:46:48 PM,04/09/2016 07:47:12 PM,04/09/2016 07:48:36 PM,04/09/2016 07:54:31 PM,04/09/2016 08:25:26 PM,04/09/2016 09:07:58 PM,Code 2 Transport,04/09/2016 09:41:35 PM,100 Block of PINE ST,San Francisco,94111,B01,13,1136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.792387312641, -122.399186604536)",161002875-AM12 +143342720,E44,14118470,Structure Fire,11/30/2014,11/30/2014,11/30/2014 06:53:37 PM,11/30/2014 06:54:31 PM,11/30/2014 06:55:10 PM,11/30/2014 06:57:27 PM,11/30/2014 06:58:36 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,Fire,11/30/2014 07:05:06 PM,800 Block of COLBY ST,San Francisco,94134,B09,44,6322,3,3,3,false,Alarm,1,ENGINE,1,9,9,Portola,"(37.7199386133639, -122.410177936421)",143342720-E44 +150172076,70,15006760,Medical Incident,01/17/2015,01/17/2015,01/17/2015 02:40:51 PM,01/17/2015 02:40:51 PM,01/17/2015 02:40:51 PM,01/17/2015 02:40:51 PM,01/17/2015 02:40:51 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Fire,01/17/2015 02:42:26 PM,MISSION ST/NAGLEE AV,San Francisco,94112,B99,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7115920214903, -122.446091129597)",150172076-70 +142092847,E31,14072573,Administrative,07/28/2014,07/28/2014,07/28/2014 07:18:37 PM,07/28/2014 07:18:54 PM,07/28/2014 07:19:42 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Fire,07/28/2014 07:21:27 PM,400 Block of 12TH AVE,San Francisco,94118,B07,31,7146,3,3,3,false,,1,ENGINE,1,7,1,Inner Richmond,"(37.7797586065018, -122.470711254543)",142092847-E31 +152530248,E43,15096580,Traffic Collision,09/10/2015,09/09/2015,09/10/2015 02:06:36 AM,09/10/2015 02:06:36 AM,09/10/2015 02:07:05 AM,09/10/2015 02:09:34 AM,09/10/2015 02:13:06 AM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,Code 2 Transport,09/10/2015 02:19:55 AM,1500 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8271,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7275315597461, -122.43567234398)",152530248-E43 +152351008,RS2,15089520,Train / Rail Incident,08/23/2015,08/23/2015,08/23/2015 09:03:30 AM,08/23/2015 09:05:27 AM,08/23/2015 09:07:28 AM,08/23/2015 09:07:53 AM,08/23/2015 09:13:05 AM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Fire,08/23/2015 10:11:27 AM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Fire,1,RESCUE SQUAD,4,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",152351008-RS2 +151853290,GATR1,15070732,Medical Incident,07/04/2015,07/04/2015,07/04/2015 08:38:54 PM,07/04/2015 08:39:36 PM,07/04/2015 08:41:56 PM,07/04/2015 08:45:10 PM,07/04/2015 08:45:10 PM,04/25/2016 01:09:39 PM,04/25/2016 01:09:39 PM,Code 2 Transport,07/04/2015 08:53:43 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,false,Potentially Life-Threatening,1,SUPPORT,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",151853290-GATR1 +142102447,KM06,14072869,Medical Incident,07/29/2014,07/29/2014,07/29/2014 04:51:20 PM,07/29/2014 04:53:11 PM,07/29/2014 04:53:41 PM,07/29/2014 04:54:26 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Patient Declined Transport,07/29/2014 05:03:04 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",142102447-KM06 +143291803,B01,14116663,Alarms,11/25/2014,11/25/2014,11/25/2014 12:54:19 PM,11/25/2014 12:55:34 PM,11/25/2014 12:55:40 PM,11/25/2014 12:57:12 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/25/2014 01:01:03 PM,100 Block of PINE ST,San Francisco,94111,B01,13,1136,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7922788577923, -122.399164588196)",143291803-B01 +161002929,75,16039912,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:59:57 PM,04/09/2016 08:02:22 PM,04/09/2016 08:02:38 PM,04/09/2016 08:02:50 PM,04/09/2016 08:12:40 PM,04/09/2016 08:19:03 PM,04/09/2016 08:29:11 PM,Code 2 Transport,04/09/2016 09:17:32 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",161002929-75 +160933528,79,16037053,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:39:37 PM,04/02/2016 09:40:18 PM,04/02/2016 09:40:27 PM,04/02/2016 09:40:33 PM,04/02/2016 09:42:32 PM,04/02/2016 09:54:43 PM,04/02/2016 10:33:47 PM,Code 2 Transport,04/02/2016 10:59:41 PM,400 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",160933528-79 +153051829,53,15117134,Medical Incident,11/01/2015,11/01/2015,11/01/2015 10:15:31 AM,11/01/2015 10:16:15 AM,11/01/2015 10:16:29 AM,11/01/2015 10:16:37 AM,11/01/2015 10:19:41 AM,11/01/2015 10:38:15 AM,11/01/2015 10:56:18 AM,Code 2 Transport,11/01/2015 11:48:26 AM,1100 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8473,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7228664396788, -122.456076821755)",153051829-53 +152221567,E14,15084571,Medical Incident,08/10/2015,08/10/2015,08/10/2015 12:25:06 PM,08/10/2015 12:25:06 PM,08/10/2015 12:25:18 PM,08/10/2015 12:26:29 PM,08/10/2015 12:29:47 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Code 2 Transport,08/10/2015 12:37:26 PM,700 Block of GREAT HWY,San Francisco,94121,B07,34,7316,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7740125883152, -122.511077438213)",152221567-E14 +153081278,E05,15118316,Structure Fire,11/04/2015,11/04/2015,11/04/2015 10:17:48 AM,11/04/2015 10:18:57 AM,11/04/2015 10:20:12 AM,11/04/2015 10:20:12 AM,11/04/2015 10:21:02 AM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Fire,11/04/2015 11:03:14 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",153081278-E05 +143261500,KM204,14115471,Medical Incident,11/22/2014,11/22/2014,11/22/2014 11:39:53 AM,11/22/2014 11:40:49 AM,11/22/2014 11:46:51 AM,11/22/2014 11:46:51 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Patient Declined Transport,11/22/2014 11:48:18 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,4,5,Western Addition,"(37.783815387293, -122.432878599409)",143261500-KM204 +160962686,55,16038085,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:22:14 PM,04/05/2016 04:22:55 PM,04/05/2016 04:36:54 PM,04/05/2016 04:37:02 PM,04/05/2016 04:44:05 PM,04/05/2016 05:13:51 PM,04/05/2016 04:44:05 PM,Code 2 Transport,04/05/2016 05:45:18 PM,400 Block of PARNASSUS AVE,San Francisco,94122,B05,12,5155,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",160962686-55 +153292617,KM06,15126692,Medical Incident,11/25/2015,11/25/2015,11/25/2015 04:06:43 PM,11/25/2015 04:09:26 PM,11/25/2015 04:11:30 PM,11/25/2015 04:12:16 PM,11/25/2015 04:21:43 PM,11/25/2015 04:55:04 PM,11/25/2015 05:08:27 PM,Code 2 Transport,11/25/2015 06:06:05 PM,300 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5741,2,3,3,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.737129343331, -122.417359895828)",153292617-KM06 +160971405,KM02,16038366,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:43:20 AM,04/06/2016 10:44:40 AM,04/06/2016 10:47:01 AM,04/06/2016 10:47:46 AM,04/06/2016 10:52:53 AM,04/06/2016 11:13:22 AM,04/06/2016 11:27:41 AM,Code 2 Transport,04/06/2016 12:01:37 PM,700 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1314,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7924557516623, -122.406339052802)",160971405-KM02 +152282666,RB1,15087076,Water Rescue,08/16/2015,08/16/2015,08/16/2015 05:11:11 PM,08/16/2015 05:14:18 PM,08/16/2015 05:16:11 PM,08/16/2015 05:21:40 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Patient Declined Transport,08/16/2015 06:04:10 PM,400 Block of SEACLIFF AVE,San Francisco,94121,B07,14,7232,3,3,3,false,Fire,1,SUPPORT,9,7,2,Seacliff,"(37.7875454268637, -122.490200284081)",152282666-RB1 +150413178,E44,15016108,Traffic Collision,02/10/2015,02/10/2015,02/10/2015 07:23:59 PM,02/10/2015 07:23:59 PM,02/10/2015 07:24:58 PM,02/10/2015 07:27:13 PM,02/10/2015 07:27:13 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Code 3 Transport,02/10/2015 07:47:26 PM,EXECUTIVE PARK BL/CRESCENT WY,San Francisco,94134,B10,44,6275,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7111697725514, -122.390835881597)",150413178-E44 +142253346,T17,14078268,Structure Fire,08/13/2014,08/13/2014,08/13/2014 08:10:48 PM,08/13/2014 08:10:48 PM,08/13/2014 08:11:28 PM,08/13/2014 08:16:31 PM,04/25/2016 01:15:41 PM,04/25/2016 01:15:41 PM,04/25/2016 01:15:41 PM,Fire,08/13/2014 08:20:12 PM,HUDSON AV/ARDATH CT,San Francisco,94124,B10,17,6624,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",142253346-T17 +152873122,88,15110384,Medical Incident,10/14/2015,10/14/2015,10/14/2015 05:02:08 PM,10/14/2015 05:03:01 PM,10/14/2015 05:03:11 PM,10/14/2015 05:03:20 PM,10/14/2015 05:09:17 PM,10/14/2015 05:22:27 PM,10/14/2015 05:36:23 PM,Code 2 Transport,10/14/2015 06:21:33 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",152873122-88 +153143094,75,15120780,Medical Incident,11/10/2015,11/10/2015,11/10/2015 06:28:30 PM,11/10/2015 06:28:30 PM,11/10/2015 06:28:53 PM,11/10/2015 06:29:31 PM,11/10/2015 06:35:55 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Patient Declined Transport,11/10/2015 06:40:07 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",153143094-75 +142231248,KM04,14077357,Medical Incident,08/11/2014,08/11/2014,08/11/2014 11:39:55 AM,08/11/2014 11:42:34 AM,08/11/2014 11:43:01 AM,08/11/2014 11:44:15 AM,08/11/2014 11:55:11 AM,08/11/2014 12:12:29 PM,08/11/2014 12:30:21 PM,Code 2 Transport,08/11/2014 01:41:31 PM,BALBOA ST/36TH AV,San Francisco,94121,B07,34,7254,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7757638040834, -122.496258762327)",142231248-KM04 +152242996,B06,15085478,Structure Fire,08/12/2015,08/12/2015,08/12/2015 05:58:05 PM,08/12/2015 05:58:32 PM,08/12/2015 05:59:35 PM,08/12/2015 06:01:11 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 06:05:42 PM,1400 Block of KIRKWOOD AVE,San Francisco,94124,B10,25,6467,3,3,3,false,Alarm,1,CHIEF,10,10,10,Bayview Hunters Point,"(37.7370092796022, -122.387724952664)",152242996-B06 +151811276,B07,15069068,Alarms,06/30/2015,06/30/2015,06/30/2015 11:15:45 AM,06/30/2015 11:16:50 AM,06/30/2015 11:19:32 AM,06/30/2015 11:21:00 AM,06/30/2015 11:25:22 AM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,Fire,06/30/2015 11:34:25 AM,0 Block of ROSSI AVE,San Francisco,94118,B07,21,4557,3,3,3,false,Alarm,1,CHIEF,3,7,1,Lone Mountain/USF,"(37.779215348773, -122.45632948558)",151811276-B07 +153460670,T08,15133126,Structure Fire,12/12/2015,12/11/2015,12/12/2015 06:01:24 AM,12/12/2015 06:01:24 AM,12/12/2015 06:02:06 AM,12/12/2015 06:04:47 AM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,Fire,12/12/2015 06:05:59 AM,5TH ST/TOWNSEND ST,San Francisco,94107,B03,8,2236,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7753322431291, -122.397206310605)",153460670-T08 +160972465,AM02,16038469,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:35:32 PM,04/06/2016 02:39:10 PM,04/06/2016 02:39:40 PM,04/06/2016 02:41:26 PM,04/06/2016 03:29:05 PM,04/06/2016 03:29:09 PM,04/06/2016 03:29:28 PM,Code 2 Transport,04/06/2016 03:55:36 PM,0 Block of SANTA YNEZ AVE,San Francisco,94112,B09,15,8274,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7240297969149, -122.438972799349)",160972465-AM02 +160980479,KM07,16038780,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:49:33 AM,04/07/2016 04:50:51 AM,04/07/2016 04:51:13 AM,04/07/2016 04:51:48 AM,04/07/2016 05:08:00 AM,04/07/2016 05:11:13 AM,04/07/2016 05:31:41 AM,Code 2 Transport,04/07/2016 06:15:44 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160980479-KM07 +151453492,E19,15055353,Medical Incident,05/25/2015,05/25/2015,05/25/2015 11:10:33 PM,05/25/2015 11:11:09 PM,05/25/2015 11:12:16 PM,05/25/2015 11:13:58 PM,05/25/2015 11:19:28 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,Code 2 Transport,05/25/2015 11:28:06 PM,500 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",151453492-E19 +142850082,87,14100251,Medical Incident,10/12/2014,10/11/2014,10/12/2014 12:24:05 AM,10/12/2014 12:25:13 AM,10/12/2014 12:25:20 AM,10/12/2014 12:25:32 AM,10/12/2014 12:31:04 AM,10/12/2014 12:43:48 AM,10/12/2014 01:00:43 AM,Code 2 Transport,10/12/2014 01:25:08 AM,FILLMORE ST/GREEN ST,San Francisco,94123,B04,16,3551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7961582761838, -122.435301731687)",142850082-87 +150380020,B02,15014595,Structure Fire,02/07/2015,02/06/2015,02/07/2015 12:02:08 AM,02/07/2015 12:05:52 AM,02/07/2015 12:06:12 AM,02/07/2015 12:07:23 AM,02/07/2015 12:10:01 AM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Fire,02/07/2015 12:15:34 AM,0 Block of MAXWELL CT,San Francisco,94103,B02,6,5226,3,3,3,true,Alarm,1,CHIEF,2,2,8,Mission,"(37.7669025720969, -122.423141850936)",150380020-B02 +160921556,KM13,16036424,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:22:23 PM,04/01/2016 12:23:49 PM,04/01/2016 12:24:37 PM,04/01/2016 12:25:35 PM,04/01/2016 12:31:13 PM,04/01/2016 12:39:41 PM,04/01/2016 01:09:37 PM,Code 2 Transport,04/01/2016 01:48:22 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",160921556-KM13 +141060274,KM12,14035813,Medical Incident,04/16/2014,04/16/2014,04/16/2014 02:25:05 PM,04/16/2014 02:25:51 PM,04/16/2014 02:26:11 PM,04/16/2014 02:26:50 PM,04/16/2014 02:31:50 PM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,Against Medical Advice,04/16/2014 03:29:45 PM,700 Block of THE EMBARCADERO,SAN FRANCISCO,94111,B01,13,915,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",141060274-KM12 +160963052,74,16038121,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:41:11 PM,04/05/2016 05:42:01 PM,04/05/2016 06:05:56 PM,04/05/2016 06:06:33 PM,04/05/2016 06:09:32 PM,04/05/2016 06:32:57 PM,04/05/2016 06:43:08 PM,Patient Declined Transport,04/05/2016 07:00:08 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160963052-74 +151523090,E18,15058012,Structure Fire,06/01/2015,06/01/2015,06/01/2015 07:21:52 PM,06/01/2015 07:21:52 PM,06/01/2015 07:22:03 PM,06/01/2015 07:22:53 PM,06/01/2015 07:24:27 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Fire,06/01/2015 07:24:57 PM,27TH AV/QUINTARA ST,San Francisco,94116,B08,18,7472,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7482671912272, -122.484653663644)",151523090-E18 +141483319,E40,14050995,Medical Incident,05/28/2014,05/28/2014,05/28/2014 09:11:12 PM,05/28/2014 09:12:28 PM,05/28/2014 09:13:02 PM,05/28/2014 09:15:04 PM,05/28/2014 09:17:34 PM,04/25/2016 01:17:05 PM,04/25/2016 01:17:05 PM,Code 2 Transport,05/28/2014 09:33:25 PM,1100 Block of TARAVAL ST,San Francisco,94116,B08,40,7416,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.742986949819, -122.478374336558)",141483319-E40 +141380482,E35,14047162,Medical Incident,05/18/2014,05/17/2014,05/18/2014 03:32:36 AM,05/18/2014 03:35:48 AM,05/18/2014 03:37:38 AM,05/18/2014 03:39:36 AM,05/18/2014 03:43:49 AM,05/18/2014 03:58:54 AM,04/25/2016 01:17:16 PM,Code 3 Transport,05/18/2014 04:23:17 AM,600 Block of FOLSOM ST,San Francisco,94107,B03,1,2147,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7850654631195, -122.397209533545)",141380482-E35 +142930401,RS2,14103224,Medical Incident,10/20/2014,10/19/2014,10/20/2014 04:56:54 AM,10/20/2014 04:56:54 AM,10/20/2014 04:57:43 AM,10/20/2014 05:00:19 AM,10/20/2014 05:01:41 AM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,Code 3 Transport,10/20/2014 05:15:14 AM,SYCAMORE ST/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7627128676897, -122.419443736852)",142930401-RS2 +141050267,E22,14035481,Structure Fire,04/15/2014,04/15/2014,04/15/2014 04:24:57 PM,04/15/2014 04:25:19 PM,04/15/2014 04:25:37 PM,04/15/2014 04:26:51 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 04:28:05 PM,2000 Block of 42ND AVE,SAN FRANCISCO,94116,B08,18,7634,3,3,3,false,Fire,1,ENGINE,15,8,4,Sunset/Parkside,"(37.7484879992501, -122.500860898167)",141050267-E22 +141320855,B01,14044862,Alarms,05/12/2014,05/12/2014,05/12/2014 09:14:24 AM,05/12/2014 09:15:41 AM,05/12/2014 09:16:01 AM,05/12/2014 09:17:20 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Fire,05/12/2014 09:24:36 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",141320855-B01 +160973601,76,16038609,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:35:36 PM,04/06/2016 06:37:02 PM,04/06/2016 07:06:52 PM,04/06/2016 07:06:58 PM,04/06/2016 07:20:03 PM,04/06/2016 07:29:29 PM,04/06/2016 07:35:35 PM,Code 2 Transport,04/06/2016 07:49:07 PM,100 Block of VAN NESS AVE,San Francisco,94102,B02,36,3166,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7768524577717, -122.419455012102)",160973601-76 +151011976,T02,15038236,Alarms,04/11/2015,04/11/2015,04/11/2015 02:28:29 PM,04/11/2015 02:29:41 PM,04/11/2015 02:30:11 PM,04/11/2015 02:31:14 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Fire,04/11/2015 02:32:26 PM,1500 Block of HYDE ST,San Francisco,94109,B01,41,1565,3,3,3,false,Alarm,1,TRUCK,3,1,3,Russian Hill,"(37.7950241733506, -122.418134549676)",151011976-T02 +152433797,E07,15092869,Smoke Investigation (Outside),08/31/2015,08/31/2015,08/31/2015 09:09:33 PM,08/31/2015 09:09:47 PM,08/31/2015 09:10:38 PM,08/31/2015 09:11:38 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Fire,08/31/2015 09:17:43 PM,15TH ST/NOE ST,San Francisco,94114,B05,6,5232,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7658616276668, -122.433255474794)",152433797-E07 +152412630,E22,15091955,Medical Incident,08/29/2015,08/29/2015,08/29/2015 04:02:41 PM,08/29/2015 04:04:16 PM,08/29/2015 04:04:30 PM,08/29/2015 04:07:15 PM,08/29/2015 04:07:33 PM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,No Merit,08/29/2015 04:13:12 PM,9TH AV/LINCOLN WY,San Francisco,94122,B08,22,7333,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",152412630-E22 +151471878,89,15055962,Medical Incident,05/27/2015,05/27/2015,05/27/2015 01:14:00 PM,05/27/2015 01:14:26 PM,05/27/2015 01:14:36 PM,05/27/2015 01:14:48 PM,05/27/2015 01:20:45 PM,05/27/2015 01:40:21 PM,05/27/2015 02:06:03 PM,Code 2 Transport,05/27/2015 03:02:28 PM,VELASCO AV/RIO VERDE ST,San Francisco,94134,B09,44,6251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7087380347247, -122.415049085774)",151471878-89 +143630882,KM02,14129792,Medical Incident,12/29/2014,12/29/2014,12/29/2014 09:25:17 AM,12/29/2014 09:26:45 AM,12/29/2014 09:28:42 AM,12/29/2014 09:30:20 AM,12/29/2014 09:54:42 AM,12/29/2014 10:08:59 AM,12/29/2014 10:38:16 AM,Code 2 Transport,12/29/2014 11:15:12 AM,500 Block of 33RD AVE,San Francisco,94121,B07,14,7245,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7787282416429, -122.493301622886)",143630882-KM02 +160974048,76,16038650,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:22:17 PM,04/06/2016 08:26:09 PM,04/06/2016 08:27:04 PM,04/06/2016 08:27:11 PM,04/06/2016 08:31:18 PM,04/06/2016 08:39:43 PM,04/06/2016 08:45:37 PM,Code 2 Transport,04/06/2016 09:05:57 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160974048-76 +141430284,73,14048922,Medical Incident,05/23/2014,05/22/2014,05/23/2014 02:43:27 AM,05/23/2014 02:46:58 AM,05/23/2014 02:48:49 AM,05/23/2014 02:49:11 AM,05/23/2014 02:59:29 AM,05/23/2014 03:19:32 AM,05/23/2014 03:40:31 AM,Code 2 Transport,05/23/2014 04:14:15 AM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7649777859582, -122.466445638121)",141430284-73 +152614255,E21,15099960,Medical Incident,09/18/2015,09/18/2015,09/18/2015 10:54:11 PM,09/18/2015 10:54:21 PM,09/18/2015 10:55:08 PM,09/18/2015 10:56:32 PM,09/18/2015 10:58:36 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/18/2015 10:58:55 PM,900 Block of CENTRAL AVE,San Francisco,94115,B05,21,4363,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7783702231035, -122.445182906759)",152614255-E21 +141732511,E42,14059764,Medical Incident,06/22/2014,06/22/2014,06/22/2014 06:06:43 PM,06/22/2014 06:07:04 PM,06/22/2014 06:07:33 PM,06/22/2014 06:08:36 PM,06/22/2014 06:11:10 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Code 3 Transport,06/22/2014 06:50:36 PM,600 Block of THORNTON AVE,San Francisco,94124,B10,42,6447,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7313162270083, -122.400690668956)",141732511-E42 +143293868,E01,14116844,Traffic Collision,11/25/2014,11/25/2014,11/25/2014 11:13:18 PM,11/25/2014 11:13:18 PM,11/25/2014 11:13:54 PM,11/25/2014 11:14:15 PM,11/25/2014 11:16:25 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Gone on Arrival,11/25/2014 11:16:44 PM,MISSION ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",143293868-E01 +160922625,AM26,16036531,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:04:44 PM,04/01/2016 05:06:32 PM,04/01/2016 05:07:25 PM,04/01/2016 05:08:07 PM,04/01/2016 05:17:53 PM,04/01/2016 05:39:40 PM,04/01/2016 05:54:50 PM,Code 2 Transport,04/01/2016 06:29:54 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160922625-AM26 +152272519,E07,15086620,Medical Incident,08/15/2015,08/15/2015,08/15/2015 03:25:55 PM,08/15/2015 03:25:55 PM,08/15/2015 03:27:44 PM,08/15/2015 03:27:53 PM,08/15/2015 03:30:34 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Code 2 Transport,08/15/2015 03:39:56 PM,1200 Block of 15TH ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7668153988578, -122.412689745025)",152272519-E07 +151671588,E09,15063844,Medical Incident,06/16/2015,06/16/2015,06/16/2015 01:00:52 PM,06/16/2015 01:00:52 PM,06/16/2015 01:02:20 PM,06/16/2015 01:03:19 PM,06/16/2015 01:05:20 PM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Fire,06/16/2015 01:09:30 PM,1200 Block of UTAH ST,San Francisco,94110,B10,9,2562,A,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Mission,"(37.7537047353826, -122.405323661789)",151671588-E09 +150373198,KM02,15014482,Medical Incident,02/06/2015,02/06/2015,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,02/06/2015 07:15:21 PM,02/06/2015 07:15:21 PM,02/06/2015 07:17:24 PM,02/06/2015 07:28:38 PM,02/06/2015 07:42:17 PM,Code 2 Transport,02/06/2015 08:21:46 PM,SHERMAN ST/FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7773996335317, -122.407014751383)",150373198-KM02 +141282871,E19,14043618,Medical Incident,05/08/2014,05/08/2014,05/08/2014 06:03:16 PM,05/08/2014 06:05:22 PM,05/08/2014 06:09:02 PM,05/08/2014 06:09:41 PM,05/08/2014 06:14:20 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 07:02:45 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",141282871-E19 +143651914,64,14130724,Medical Incident,12/31/2014,12/31/2014,12/31/2014 03:00:16 PM,12/31/2014 03:01:40 PM,12/31/2014 03:02:13 PM,12/31/2014 03:03:55 PM,12/31/2014 03:09:11 PM,12/31/2014 03:25:23 PM,12/31/2014 03:42:10 PM,Code 2 Transport,12/31/2014 04:21:35 PM,500 Block of 47TH AVE,San Francisco,94121,B07,34,7276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7780500044705, -122.508299698216)",143651914-64 +160981190,KM05,16038842,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:46:43 AM,04/07/2016 09:48:08 AM,04/07/2016 09:48:40 AM,04/07/2016 09:49:06 AM,04/07/2016 09:57:21 AM,04/07/2016 10:14:32 AM,04/07/2016 10:36:41 AM,Code 2 Transport,04/07/2016 11:15:17 AM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160981190-KM05 +160982828,63,16039024,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:53:35 PM,04/07/2016 04:54:25 PM,04/07/2016 04:54:44 PM,04/07/2016 04:55:01 PM,04/07/2016 05:09:10 PM,04/07/2016 05:20:30 PM,04/07/2016 05:56:52 PM,Code 2 Transport,04/07/2016 06:24:20 PM,300 Block of LA GRANDE AVE,San Francisco,94112,B09,43,6165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,McLaren Park,"(37.7197515959451, -122.425588438069)",160982828-63 +141473154,55,14050596,Traffic Collision,05/27/2014,05/27/2014,05/27/2014 07:02:45 PM,05/27/2014 07:02:45 PM,05/27/2014 07:03:07 PM,05/27/2014 07:03:23 PM,04/25/2016 01:17:06 PM,04/25/2016 01:17:06 PM,04/25/2016 01:17:06 PM,Patient Declined Transport,05/27/2014 07:12:08 PM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,13,1246,B,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7973530798881, -122.405824166189)",141473154-55 +160940815,84,16037188,Medical Incident,04/03/2016,04/02/2016,04/03/2016 07:23:47 AM,04/03/2016 07:26:06 AM,04/03/2016 07:26:45 AM,04/03/2016 07:29:27 AM,04/03/2016 07:47:01 AM,04/03/2016 08:05:52 AM,04/03/2016 08:39:25 AM,Code 2 Transport,04/03/2016 09:08:41 AM,2100 Block of 33RD AVE,San Francisco,94116,B08,18,7545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7470473149304, -122.491085954607)",160940815-84 +152834182,AM16,15108845,Medical Incident,10/10/2015,10/10/2015,10/10/2015 10:19:45 PM,10/10/2015 10:21:33 PM,10/10/2015 10:21:57 PM,10/10/2015 10:22:43 PM,10/10/2015 11:07:20 PM,10/10/2015 11:07:22 PM,10/10/2015 11:07:58 PM,Code 2 Transport,10/10/2015 11:13:28 PM,3300 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.775892549655, -122.49464338851)",152834182-AM16 +142800436,73,14098392,Medical Incident,10/07/2014,10/06/2014,10/07/2014 06:41:09 AM,10/07/2014 06:41:51 AM,10/07/2014 06:42:33 AM,10/07/2014 06:50:21 AM,10/07/2014 06:58:56 AM,10/07/2014 07:02:15 AM,10/07/2014 08:00:13 AM,Code 2 Transport,10/07/2014 08:24:56 AM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7754785492962, -122.415745332716)",142800436-73 +160970149,75,16038253,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:15:05 AM,04/06/2016 01:15:05 AM,04/06/2016 01:16:13 AM,04/06/2016 01:16:24 AM,04/06/2016 01:23:03 AM,04/06/2016 01:35:06 AM,04/06/2016 01:45:21 AM,Code 2 Transport,04/06/2016 02:16:41 AM,16TH ST/DOLORES ST,San Francisco,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7646456890217, -122.426381708495)",160970149-75 +143000738,E37,14105824,Structure Fire,10/27/2014,10/27/2014,10/27/2014 08:20:57 AM,10/27/2014 08:23:40 AM,10/27/2014 08:25:17 AM,10/27/2014 08:25:17 AM,10/27/2014 08:26:55 AM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Fire,10/27/2014 09:45:07 AM,2300 Block of 3RD ST,San Francisco,94107,B10,25,2533,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7592069260893, -122.388577089603)",143000738-E37 +151192178,E18,15045048,Medical Incident,04/29/2015,04/29/2015,04/29/2015 02:06:41 PM,04/29/2015 02:07:11 PM,04/29/2015 02:07:42 PM,04/29/2015 02:09:37 PM,04/29/2015 02:14:52 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Code 3 Transport,04/29/2015 03:39:56 PM,2900 Block of GREAT HWY,San Francisco,94132,B08,19,8712,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7297644793355, -122.506576531064)",151192178-E18 +141831169,89,14063252,Medical Incident,07/02/2014,07/02/2014,07/02/2014 10:31:46 AM,07/02/2014 10:32:52 AM,07/02/2014 10:33:38 AM,07/02/2014 10:33:48 AM,07/02/2014 10:50:46 AM,07/02/2014 11:04:48 AM,07/02/2014 11:23:07 AM,Code 2 Transport,07/02/2014 12:03:44 PM,500 Block of PACIFIC AVE,San Francisco,94133,B01,13,1246,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.797224260088, -122.404699326635)",141831169-89 +160931516,KM08,16036834,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:02:37 PM,04/02/2016 12:05:33 PM,04/02/2016 12:06:34 PM,04/02/2016 12:07:32 PM,04/02/2016 12:28:09 PM,04/02/2016 12:28:13 PM,04/02/2016 12:56:26 PM,Code 2 Transport,04/02/2016 01:15:30 PM,48TH AV/ORTEGA ST,San Francisco,94116,B08,23,7725,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.751003286283, -122.507416228519)",160931516-KM08 +141672058,E21,14057651,Medical Incident,06/16/2014,06/16/2014,06/16/2014 03:32:57 PM,06/16/2014 03:33:34 PM,06/16/2014 03:34:25 PM,06/16/2014 03:35:29 PM,06/16/2014 03:37:24 PM,04/25/2016 01:16:44 PM,04/25/2016 01:16:44 PM,No Merit,06/16/2014 03:40:38 PM,500 Block of DIVISADERO ST,San Francisco,94117,B05,21,4145,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7745415617003, -122.437589912285)",141672058-E21 +150360055,62,15013687,Medical Incident,02/05/2015,02/04/2015,02/05/2015 12:16:45 AM,02/05/2015 12:19:38 AM,02/05/2015 12:19:51 AM,02/05/2015 12:20:02 AM,02/05/2015 12:27:45 AM,02/05/2015 12:46:30 AM,02/05/2015 12:58:13 AM,Code 2 Transport,02/05/2015 01:25:57 AM,1400 Block of 48TH AVE,San Francisco,94122,B08,23,7723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7593947893332, -122.508071011138)",150360055-62 +152441098,64,15092989,Medical Incident,09/01/2015,09/01/2015,09/01/2015 09:26:22 AM,09/01/2015 09:28:01 AM,09/01/2015 09:28:32 AM,09/01/2015 09:28:42 AM,09/01/2015 09:54:29 AM,09/01/2015 10:00:54 AM,09/01/2015 10:33:39 AM,Code 2 Transport,09/01/2015 11:35:29 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",152441098-64 +153262001,E13,15125538,Medical Incident,11/22/2015,11/22/2015,11/22/2015 02:51:58 PM,11/22/2015 02:52:31 PM,11/22/2015 02:52:39 PM,11/22/2015 02:53:38 PM,11/22/2015 02:56:48 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,Code 2 Transport,11/22/2015 03:07:48 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",153262001-E13 +153280891,E29,15126162,Transfer,11/24/2015,11/24/2015,11/24/2015 09:02:30 AM,11/24/2015 09:02:36 AM,11/24/2015 09:07:12 AM,11/24/2015 09:07:40 AM,11/24/2015 09:15:17 AM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Patient Declined Transport,11/24/2015 09:23:01 AM,TERRY A FRANCOIS BL/ILLINOIS ST,San Francisco,94158,B03,4,2671,2,2,2,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7643793716071, -122.387916811135)",153280891-E29 +160942312,87,16037310,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:26:41 PM,04/03/2016 03:28:55 PM,04/03/2016 03:29:36 PM,04/03/2016 03:29:53 PM,04/03/2016 03:46:56 PM,04/03/2016 04:03:23 PM,04/03/2016 04:23:25 PM,Code 2 Transport,04/03/2016 05:09:09 PM,0 Block of WOODACRE DR,San Francisco,94132,B08,19,8452,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7328132822142, -122.472791037621)",160942312-87 +151153374,85,15043608,Medical Incident,04/25/2015,04/25/2015,04/25/2015 09:27:02 PM,04/25/2015 09:27:25 PM,04/25/2015 09:27:46 PM,04/25/2015 09:27:55 PM,04/25/2015 09:36:57 PM,04/25/2015 09:53:04 PM,04/25/2015 10:16:57 PM,Code 2 Transport,04/25/2015 10:54:38 PM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7174171049991, -122.480660975829)",151153374-85 +160951952,KM11,16037647,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:31:31 PM,04/04/2016 01:32:12 PM,04/04/2016 01:41:20 PM,04/04/2016 01:41:36 PM,04/04/2016 01:47:50 PM,04/04/2016 02:02:19 PM,04/04/2016 02:13:20 PM,Code 2 Transport,04/04/2016 02:47:35 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",160951952-KM11 +152643930,E02,15101263,Structure Fire,09/21/2015,09/21/2015,09/21/2015 08:41:00 PM,09/21/2015 08:42:00 PM,09/21/2015 08:42:15 PM,09/21/2015 08:43:50 PM,09/21/2015 08:46:06 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/21/2015 08:46:23 PM,700 Block of HYDE ST,San Francisco,94109,B04,3,1557,3,3,3,true,Alarm,1,ENGINE,6,4,3,Nob Hill,"(37.7877028540247, -122.416801264327)",152643930-E02 +143442632,E43,14122401,Medical Incident,12/10/2014,12/10/2014,12/10/2014 04:18:59 PM,12/10/2014 04:19:40 PM,12/10/2014 04:21:03 PM,12/10/2014 04:26:55 PM,12/10/2014 04:26:55 PM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Code 3 Transport,12/10/2014 05:19:08 PM,100 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",143442632-E43 +160971723,65,16038400,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:56:59 AM,04/06/2016 11:59:27 AM,04/06/2016 12:00:03 PM,04/06/2016 12:00:22 PM,04/06/2016 12:11:07 PM,04/06/2016 12:22:32 PM,04/06/2016 12:37:59 PM,Code 2 Transport,04/06/2016 01:27:43 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",160971723-65 +152512100,E16,15095901,Structure Fire,09/08/2015,09/08/2015,09/08/2015 01:29:01 PM,09/08/2015 01:29:47 PM,09/08/2015 01:30:09 PM,09/08/2015 01:31:56 PM,09/08/2015 01:51:31 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Fire,09/08/2015 01:52:48 PM,1100 Block of BAY ST,San Francisco,94123,B04,16,3236,3,3,3,true,Alarm,1,ENGINE,6,4,2,Marina,"(37.8039665464038, -122.426081542745)",152512100-E16 +150920292,T01,15034830,Alarms,04/02/2015,04/01/2015,04/02/2015 03:29:47 AM,04/02/2015 03:31:39 AM,04/02/2015 03:31:44 AM,04/02/2015 03:34:16 AM,04/02/2015 03:36:41 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/02/2015 03:44:41 AM,100 Block of 2ND ST,San Francisco,94105,B03,1,2145,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7878321941049, -122.399477770814)",150920292-T01 +141741426,65,14060021,Medical Incident,06/23/2014,06/23/2014,06/23/2014 12:23:36 PM,06/23/2014 12:23:36 PM,06/23/2014 12:25:10 PM,06/23/2014 12:25:10 PM,06/23/2014 12:28:34 PM,06/23/2014 01:17:52 PM,06/23/2014 01:18:05 PM,Code 2 Transport,06/23/2014 02:01:37 PM,POLK ST/WILLOW ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835677840088, -122.419273434964)",141741426-65 +151481374,RS1,15056301,Medical Incident,05/28/2015,05/28/2015,05/28/2015 11:25:48 AM,05/28/2015 11:26:51 AM,05/28/2015 11:27:26 AM,05/28/2015 11:27:47 AM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Against Medical Advice,05/28/2015 11:37:05 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",151481374-RS1 +151441262,E37,15054733,Medical Incident,05/24/2015,05/24/2015,05/24/2015 10:39:49 AM,05/24/2015 10:40:44 AM,05/24/2015 10:41:38 AM,05/24/2015 10:42:21 AM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Code 2 Transport,05/24/2015 10:48:00 AM,1100 Block of WISCONSIN ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7531483460231, -122.39847312276)",151441262-E37 +152871890,E21,15110254,Alarms,10/14/2015,10/14/2015,10/14/2015 12:24:12 PM,10/14/2015 12:25:50 PM,10/14/2015 12:25:55 PM,10/14/2015 12:26:12 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Fire,10/14/2015 12:31:01 PM,100 Block of OAK ST,San Francisco,94102,B02,36,3266,3,3,3,true,Alarm,1,ENGINE,3,2,5,Hayes Valley,"(37.7751828010225, -122.421790707519)",152871890-E21 +150381520,72,15014747,Medical Incident,02/07/2015,02/07/2015,02/07/2015 11:51:25 AM,02/07/2015 11:54:19 AM,02/07/2015 11:55:29 AM,02/07/2015 11:55:49 AM,02/07/2015 12:07:23 PM,02/07/2015 12:08:39 PM,02/07/2015 12:14:50 PM,Code 2 Transport,02/07/2015 12:38:18 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",150381520-72 +141410357,67,14048223,Medical Incident,05/21/2014,05/20/2014,05/21/2014 04:57:43 AM,05/21/2014 04:58:44 AM,05/21/2014 05:01:30 AM,05/21/2014 05:02:59 AM,05/21/2014 05:09:08 AM,05/21/2014 05:19:06 AM,05/21/2014 05:23:52 AM,Code 2 Transport,05/21/2014 05:43:19 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563716216308, -122.416574134534)",141410357-67 +142072417,B09,14071762,Medical Incident,07/26/2014,07/26/2014,07/26/2014 04:40:07 PM,07/26/2014 04:40:07 PM,07/26/2014 04:43:00 PM,07/26/2014 04:43:05 PM,07/26/2014 04:44:14 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,Other,07/26/2014 05:45:25 PM,PAUL AV/SAN BRUNO AV,San Francisco,94134,B10,44,6326,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,10,9,Portola,"(37.7239199964679, -122.402060968175)",142072417-B09 +160930249,AM18,16036690,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:40:14 AM,04/02/2016 01:41:24 AM,04/02/2016 01:41:35 AM,04/02/2016 01:42:02 AM,04/02/2016 01:44:55 AM,04/02/2016 02:07:37 AM,04/02/2016 02:15:45 AM,Code 2 Transport,04/02/2016 02:46:10 AM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",160930249-AM18 +153350169,T13,15128647,Alarms,12/01/2015,11/30/2015,12/01/2015 01:46:19 AM,12/01/2015 01:48:00 AM,12/01/2015 01:48:37 AM,12/01/2015 01:50:23 AM,12/01/2015 01:53:49 AM,04/25/2016 01:06:54 PM,04/25/2016 01:06:54 PM,Fire,12/01/2015 02:05:11 AM,0 Block of KEARNY ST,San Francisco,94108,B01,1,1241,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7877942875414, -122.403529728368)",153350169-T13 +151201435,E02,15045351,Medical Incident,04/30/2015,04/30/2015,04/30/2015 11:20:13 AM,04/30/2015 11:21:42 AM,04/30/2015 11:22:22 AM,04/30/2015 11:23:26 AM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,No Merit,04/30/2015 11:25:47 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",151201435-E02 +143360565,AM02,14118967,Traffic Collision,12/02/2014,12/01/2014,12/02/2014 07:24:19 AM,12/02/2014 07:25:47 AM,12/02/2014 07:26:05 AM,12/02/2014 07:26:43 AM,12/02/2014 07:29:14 AM,12/02/2014 07:48:00 AM,12/02/2014 08:14:52 AM,Code 2 Transport,12/02/2014 08:31:42 AM,SPEAR ST/HARRISON ST,San Francisco,94105,B03,35,2113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7888377778921, -122.389428941783)",143360565-AM02 +152613337,E01,15099874,Traffic Collision,09/18/2015,09/18/2015,09/18/2015 06:49:08 PM,09/18/2015 06:49:38 PM,09/18/2015 06:50:30 PM,09/18/2015 06:52:18 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/18/2015 06:55:37 PM,TAYLOR ST/MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",152613337-E01 +160963979,70,16038200,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:10:43 PM,04/05/2016 10:14:07 PM,04/05/2016 10:15:13 PM,04/05/2016 10:15:48 PM,04/05/2016 10:19:18 PM,04/05/2016 10:40:26 PM,04/05/2016 11:17:18 PM,Code 2 Transport,04/05/2016 11:34:49 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160963979-70 +143350720,RC1,14118622,Medical Incident,12/01/2014,12/01/2014,12/01/2014 08:24:58 AM,12/01/2014 08:26:39 AM,12/01/2014 08:27:28 AM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,Code 2 Transport,12/01/2014 08:28:19 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",143350720-RC1 +141593222,68,14054996,Medical Incident,06/08/2014,06/08/2014,06/08/2014 10:21:45 PM,06/08/2014 10:24:37 PM,06/08/2014 10:35:30 PM,06/08/2014 10:35:38 PM,06/08/2014 10:43:05 PM,06/08/2014 10:58:11 PM,06/08/2014 11:05:22 PM,Code 2 Transport,06/08/2014 11:51:03 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",141593222-68 +150841940,AM02,15032056,Medical Incident,03/25/2015,03/25/2015,03/25/2015 01:14:41 PM,03/25/2015 01:15:34 PM,03/25/2015 01:15:50 PM,03/25/2015 01:17:06 PM,03/25/2015 01:20:37 PM,03/25/2015 01:29:34 PM,03/25/2015 01:50:27 PM,Code 2 Transport,03/25/2015 02:22:32 PM,500 Block of 34TH AVE,San Francisco,94121,B07,14,7245,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7786907477401, -122.494241004163)",150841940-AM02 +150081629,85,15003114,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:07:00 PM,01/08/2015 12:09:24 PM,01/08/2015 12:38:18 PM,01/08/2015 12:38:59 PM,01/08/2015 12:58:06 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Patient Declined Transport,01/08/2015 01:32:49 PM,0 Block of SOUTH PARK,San Francisco,94107,B02,8,2152,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",150081629-85 +160923604,60,16036621,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:42:44 PM,04/01/2016 09:45:14 PM,04/01/2016 09:45:41 PM,04/01/2016 09:45:47 PM,04/01/2016 09:57:36 PM,04/01/2016 10:19:05 PM,04/01/2016 10:27:49 PM,Code 2 Transport,04/01/2016 11:03:13 PM,MARKET ST/4TH ST,San Francisco,94103,B03,1,1322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160923604-60 +160933430,53,16037046,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:08:53 PM,04/02/2016 09:09:17 PM,04/02/2016 09:09:58 PM,04/02/2016 09:10:04 PM,04/02/2016 09:15:27 PM,04/02/2016 09:30:28 PM,04/02/2016 10:08:15 PM,Code 3 Transport,04/02/2016 10:35:49 PM,1200 Block of 48TH AVE,San Francisco,94122,B08,23,7721,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7631362332956, -122.508195889084)",160933430-53 +150742453,55,15028462,Medical Incident,03/15/2015,03/15/2015,03/15/2015 04:05:43 PM,03/15/2015 04:08:49 PM,03/15/2015 04:10:34 PM,03/15/2015 04:13:57 PM,03/15/2015 04:17:47 PM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Patient Declined Transport,03/15/2015 04:38:15 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150742453-55 +160953413,85,16037770,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:25:14 PM,04/04/2016 07:26:31 PM,04/04/2016 07:26:46 PM,04/04/2016 07:26:58 PM,04/04/2016 07:31:57 PM,04/04/2016 07:44:10 PM,04/04/2016 07:47:33 PM,Code 3 Transport,04/04/2016 08:42:39 PM,1100 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",160953413-85 +142171520,82,14075232,Medical Incident,08/05/2014,08/05/2014,08/05/2014 12:52:26 PM,08/05/2014 12:52:26 PM,08/05/2014 12:53:59 PM,08/05/2014 12:54:06 PM,08/05/2014 01:24:56 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Medical Examiner,08/05/2014 02:02:57 PM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,3,E,3,true,Potentially Life-Threatening,1,MEDIC,5,2,6,South of Market,"(37.7780365108208, -122.415429100912)",142171520-82 +141893447,82,14065641,Medical Incident,07/08/2014,07/08/2014,07/08/2014 08:37:29 PM,07/08/2014 08:39:41 PM,07/08/2014 08:51:01 PM,07/08/2014 08:51:09 PM,07/08/2014 09:07:08 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Patient Declined Transport,07/08/2014 09:24:59 PM,0 Block of SOUTH PARK,San Francisco,94107,B03,8,2153,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",141893447-82 +143360757,E02,14118996,Medical Incident,12/02/2014,12/02/2014,12/02/2014 08:46:44 AM,12/02/2014 08:48:01 AM,12/02/2014 09:00:43 AM,12/02/2014 09:02:18 AM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Code 2 Transport,12/02/2014 09:05:14 AM,1600 Block of GRANT AVE,San Francisco,94133,B01,28,1265,2,2,2,true,Non Life-threatening,1,ENGINE,3,1,3,North Beach,"(37.8018955776903, -122.407764273463)",143360757-E02 +152730536,T15,15104388,Alarms,09/30/2015,09/29/2015,09/30/2015 06:55:43 AM,09/30/2015 06:56:14 AM,09/30/2015 06:56:46 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 06:57:56 AM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152730536-T15 +152092818,AM08,15079741,Medical Incident,07/28/2015,07/28/2015,07/28/2015 05:25:04 PM,07/28/2015 05:26:08 PM,07/28/2015 05:26:55 PM,07/28/2015 05:27:47 PM,07/28/2015 05:44:11 PM,07/28/2015 05:57:07 PM,07/28/2015 06:07:04 PM,Code 2 Transport,07/28/2015 06:41:05 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.773955543025, -122.420958448413)",152092818-AM08 +153331971,KM08,15128111,Medical Incident,11/29/2015,11/29/2015,11/29/2015 03:46:14 PM,11/29/2015 03:48:31 PM,11/29/2015 03:51:11 PM,11/29/2015 03:53:03 PM,11/29/2015 04:05:25 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,No Merit,11/29/2015 04:22:15 PM,300 Block of 9TH AVE,San Francisco,94118,B07,31,7135,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7818377800951, -122.467627461804)",153331971-KM08 +151932511,87,15073724,Medical Incident,07/12/2015,07/12/2015,07/12/2015 04:34:43 PM,07/12/2015 04:37:36 PM,07/12/2015 04:37:47 PM,07/12/2015 04:38:14 PM,07/12/2015 04:50:55 PM,07/12/2015 05:09:22 PM,07/12/2015 05:22:45 PM,Code 2 Transport,07/12/2015 05:51:59 PM,2400 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8333,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7155539993329, -122.445057537091)",151932511-87 +160943287,75,16037418,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:38:25 PM,04/03/2016 08:39:16 PM,04/03/2016 08:39:31 PM,04/03/2016 08:39:43 PM,04/03/2016 08:46:08 PM,04/03/2016 08:59:00 PM,04/03/2016 09:21:17 PM,Code 2 Transport,04/03/2016 09:39:06 PM,100 Block of 28TH ST,San Francisco,94131,B06,11,5562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7454218862265, -122.425685856236)",160943287-75 +143342902,87,14118491,Medical Incident,11/30/2014,11/30/2014,11/30/2014 07:43:23 PM,11/30/2014 07:48:29 PM,11/30/2014 07:51:34 PM,11/30/2014 07:51:58 PM,11/30/2014 08:18:33 PM,11/30/2014 08:20:46 PM,04/25/2016 01:13:43 PM,Code 2 Transport,11/30/2014 08:46:27 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",143342902-87 +153481763,E11,15134073,Alarms,12/14/2015,12/14/2015,12/14/2015 01:01:27 PM,12/14/2015 01:02:37 PM,12/14/2015 01:02:52 PM,12/14/2015 01:04:49 PM,04/25/2016 01:06:38 PM,04/25/2016 01:06:38 PM,04/25/2016 01:06:38 PM,Fire,12/14/2015 01:10:24 PM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Alarm,1,ENGINE,3,6,9,Bernal Heights,"(37.7436052440139, -122.421251086174)",153481763-E11 +160972115,62,16038435,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:24:52 PM,04/06/2016 01:26:15 PM,04/06/2016 01:27:47 PM,04/06/2016 01:28:01 PM,04/06/2016 01:30:54 PM,04/06/2016 01:37:49 PM,04/06/2016 02:20:33 PM,Code 2 Transport,04/06/2016 03:00:27 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",160972115-62 +153311435,87,15127355,Medical Incident,11/27/2015,11/27/2015,11/27/2015 12:19:47 PM,11/27/2015 12:20:03 PM,11/27/2015 12:21:12 PM,11/27/2015 12:21:20 PM,11/27/2015 12:34:49 PM,11/27/2015 12:50:32 PM,11/27/2015 01:26:23 PM,Code 2 Transport,11/27/2015 02:20:32 PM,500 Block of FONT BLVD,San Francisco,94132,B08,19,8681,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7202157803025, -122.480295974155)",153311435-87 +150882167,88,15033629,Medical Incident,03/29/2015,03/29/2015,03/29/2015 02:33:00 PM,03/29/2015 02:33:33 PM,03/29/2015 02:34:02 PM,03/29/2015 02:34:54 PM,03/29/2015 02:36:57 PM,03/29/2015 02:51:56 PM,03/29/2015 02:59:17 PM,Code 2 Transport,03/29/2015 03:25:46 PM,1400 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7497020110556, -122.420499334167)",150882167-88 +142860375,D3,14100708,Structure Fire,10/13/2014,10/12/2014,10/13/2014 04:04:26 AM,10/13/2014 04:04:52 AM,10/13/2014 04:05:45 AM,10/13/2014 04:06:59 AM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/13/2014 04:10:30 AM,18TH ST/DIAMOND ST,San Francisco,94114,B05,6,5415,3,3,3,false,Alarm,1,CHIEF,7,5,8,Castro/Upper Market,"(37.760758109732, -122.437190626277)",142860375-D3 +160923286,85,16036587,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:55:30 PM,04/01/2016 07:55:30 PM,04/01/2016 07:56:55 PM,04/01/2016 07:57:04 PM,04/01/2016 08:12:16 PM,04/01/2016 08:38:09 PM,04/01/2016 08:55:26 PM,Code 2 Transport,04/01/2016 09:25:10 PM,SILVER AV/PALOU AV,San Francisco,94124,B10,42,6431,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371561854175, -122.396515237254)",160923286-85 +141980961,T01,14068494,Medical Incident,07/17/2014,07/17/2014,07/17/2014 09:18:27 AM,07/17/2014 09:18:27 AM,07/17/2014 09:19:21 AM,07/17/2014 09:21:31 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 3 Transport,07/17/2014 09:21:34 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,E,E,3,false,Potentially Life-Threatening,1,TRUCK,5,3,6,South of Market,"(37.7813340573864, -122.399027495005)",141980961-T01 +142543605,E03,14088834,Medical Incident,09/11/2014,09/11/2014,09/11/2014 10:00:21 PM,09/11/2014 10:00:21 PM,09/11/2014 10:00:57 PM,09/11/2014 10:02:20 PM,09/11/2014 10:04:33 PM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Code 2 Transport,09/11/2014 10:15:23 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",142543605-E03 +152031944,88,15077341,Medical Incident,07/22/2015,07/22/2015,07/22/2015 01:55:13 PM,07/22/2015 01:57:16 PM,07/22/2015 01:58:50 PM,07/22/2015 02:01:57 PM,07/22/2015 02:02:06 PM,04/25/2016 01:09:20 PM,04/25/2016 01:09:20 PM,Unable to Locate,07/22/2015 02:11:09 PM,1200 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7912571694899, -122.414917737337)",152031944-88 +142421116,E01,14084183,Medical Incident,08/30/2014,08/30/2014,08/30/2014 10:21:30 AM,08/30/2014 10:23:41 AM,08/30/2014 10:26:37 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Unable to Locate,08/30/2014 10:27:59 AM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",142421116-E01 +142412182,E33,14083910,Medical Incident,08/29/2014,08/29/2014,08/29/2014 03:31:16 PM,08/29/2014 03:32:48 PM,08/29/2014 03:40:05 PM,08/29/2014 03:41:53 PM,08/29/2014 03:43:28 PM,04/25/2016 01:15:23 PM,04/25/2016 01:15:23 PM,Code 2 Transport,08/29/2014 03:46:53 PM,5800 Block of MISSION ST,San Francisco,94112,B09,33,6213,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7090590578532, -122.451746963381)",142412182-E33 +142203251,E43,14076480,Traffic Collision,08/08/2014,08/08/2014,08/08/2014 07:30:35 PM,08/08/2014 07:32:26 PM,08/08/2014 07:33:04 PM,08/08/2014 07:34:11 PM,08/08/2014 07:36:13 PM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,Code 2 Transport,08/08/2014 08:00:01 PM,CURTIS ST/BRUNSWICK ST,San Francisco,94112,B09,43,6222,2,2,2,false,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.711749776528, -122.439081694478)",142203251-E43 +151123280,61,15042448,Medical Incident,04/22/2015,04/22/2015,04/22/2015 06:47:51 PM,04/22/2015 06:50:28 PM,04/22/2015 06:51:13 PM,04/22/2015 06:51:21 PM,04/22/2015 07:08:19 PM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,No Merit,04/22/2015 07:34:05 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151123280-61 +151633730,75,15062509,Medical Incident,06/12/2015,06/12/2015,06/12/2015 10:05:14 PM,06/12/2015 10:07:13 PM,06/12/2015 10:07:35 PM,06/12/2015 10:07:42 PM,06/12/2015 10:13:28 PM,06/12/2015 10:29:28 PM,06/12/2015 10:35:21 PM,Code 2 Transport,06/12/2015 11:06:51 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",151633730-75 +152994068,E15,15114975,Medical Incident,10/26/2015,10/26/2015,10/26/2015 11:19:16 PM,10/26/2015 11:19:24 PM,10/26/2015 11:19:38 PM,10/26/2015 11:22:10 PM,10/26/2015 11:26:16 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Code 3 Transport,10/26/2015 11:35:35 PM,400 Block of ALLISON ST,San Francisco,94112,B09,43,6228,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7096831224031, -122.440542779914)",152994068-E15 +160931234,KM12,16036801,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:39:50 AM,04/02/2016 10:39:50 AM,04/02/2016 10:40:05 AM,04/02/2016 10:41:12 AM,04/02/2016 10:50:28 AM,04/02/2016 11:01:17 AM,04/02/2016 11:17:27 AM,Code 2 Transport,04/02/2016 11:37:03 AM,1700 Block of FELL ST,San Francisco,94117,B05,21,4514,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7729471525997, -122.446710864606)",160931234-KM12 +143380912,KM10,14119886,Medical Incident,12/04/2014,12/04/2014,12/04/2014 08:44:52 AM,12/04/2014 08:47:43 AM,12/04/2014 08:58:07 AM,12/04/2014 08:58:41 AM,12/04/2014 09:14:02 AM,12/04/2014 09:24:17 AM,12/04/2014 09:34:00 AM,Code 2 Transport,12/04/2014 10:19:06 AM,HARRISON ST/14TH ST,San Francisco,94103,B02,36,5112,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7686712258347, -122.413396248713)",143380912-KM10 +141100194,AM28,14037122,Medical Incident,04/20/2014,04/20/2014,04/20/2014 02:57:06 PM,04/20/2014 02:57:45 PM,04/20/2014 03:13:25 PM,04/20/2014 03:13:25 PM,04/20/2014 03:13:25 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Patient Declined Transport,04/20/2014 03:13:31 PM,POST ST/WEBSTER ST,SAN FRANCISCO,94115,B04,5,3513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.7853726453487, -122.431366397986)",141100194-AM28 +153361322,84,15129170,Medical Incident,12/02/2015,12/02/2015,12/02/2015 10:40:43 AM,12/02/2015 10:40:43 AM,12/02/2015 10:41:06 AM,12/02/2015 10:41:14 AM,12/02/2015 10:45:36 AM,12/02/2015 11:07:21 AM,12/02/2015 11:24:03 AM,Code 2 Transport,12/02/2015 12:02:34 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",153361322-84 +160940179,76,16037113,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:59:47 AM,04/03/2016 01:01:40 AM,04/03/2016 01:03:03 AM,04/03/2016 01:03:10 AM,04/03/2016 01:07:22 AM,04/03/2016 01:15:15 AM,04/03/2016 01:17:45 AM,Code 2 Transport,04/03/2016 01:31:07 AM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",160940179-76 +153430068,E17,15131827,Medical Incident,12/09/2015,12/08/2015,12/09/2015 12:28:04 AM,12/09/2015 12:30:02 AM,12/09/2015 12:30:32 AM,12/09/2015 12:35:24 AM,12/09/2015 12:35:24 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 12:44:58 AM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",153430068-E17 +160971056,KM05,16038344,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:26:52 AM,04/06/2016 09:29:00 AM,04/06/2016 09:29:30 AM,04/06/2016 09:30:39 AM,04/06/2016 09:36:08 AM,04/06/2016 09:50:25 AM,04/06/2016 10:11:51 AM,Code 2 Transport,04/06/2016 10:44:13 AM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7626731562116, -122.431130525646)",160971056-KM05 +152874210,E03,15110465,Medical Incident,10/14/2015,10/14/2015,10/14/2015 10:08:00 PM,10/14/2015 10:08:00 PM,10/14/2015 10:08:46 PM,10/14/2015 10:09:29 PM,10/14/2015 10:12:30 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 10:20:12 PM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",152874210-E03 +151232097,56,15046706,Medical Incident,05/03/2015,05/03/2015,05/03/2015 03:32:14 PM,05/03/2015 03:33:49 PM,05/03/2015 03:34:42 PM,05/03/2015 03:35:04 PM,05/03/2015 03:44:14 PM,05/03/2015 04:25:05 PM,05/03/2015 04:50:41 PM,Code 2 Transport,05/03/2015 05:29:03 PM,800 Block of 34TH AVE,San Francisco,94121,B07,34,7252,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7730659199662, -122.493831266165)",151232097-56 +141200237,E36,14040586,Medical Incident,04/30/2014,04/30/2014,04/30/2014 02:52:02 PM,04/30/2014 02:53:40 PM,04/30/2014 02:55:25 PM,04/30/2014 02:57:14 PM,04/30/2014 03:01:03 PM,04/25/2016 01:17:36 PM,04/25/2016 01:17:36 PM,Code 2 Transport,04/30/2014 03:20:42 PM,200 Block of GOUGH ST,SAN FRANCISCO,94102,B02,36,3266,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.775244832582, -122.422713876818)",141200237-E36 +160964035,63,16038206,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:27:59 PM,04/05/2016 10:30:27 PM,04/05/2016 10:30:57 PM,04/05/2016 10:31:16 PM,04/05/2016 10:36:44 PM,04/05/2016 10:42:56 PM,04/05/2016 11:17:20 PM,Code 2 Transport,04/05/2016 11:47:35 PM,231-B 2ND AV,San Francisco,94118,B07,10,7114,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7840503667825, -122.460271225886)",160964035-63 +151503942,E36,15057286,Other,05/30/2015,05/30/2015,05/30/2015 11:50:15 PM,05/30/2015 11:51:05 PM,05/30/2015 11:51:52 PM,05/30/2015 11:54:15 PM,05/30/2015 11:56:22 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Cancelled,05/30/2015 11:57:19 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",151503942-E36 +141010370,RC2,14034260,Structure Fire,04/11/2014,04/11/2014,04/11/2014 10:52:14 PM,04/11/2014 10:53:37 PM,04/11/2014 10:58:19 PM,04/25/2016 01:17:56 PM,04/11/2014 10:58:28 PM,04/25/2016 01:17:56 PM,04/25/2016 01:17:56 PM,Code 2 Transport,04/11/2014 11:46:03 PM,400 Block of 3RD AVE,SAN FRANCISCO,94118,B07,31,7117,,3,3,true,Fire,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7801944963642, -122.461066150045)",141010370-RC2 +142910457,E21,14102512,Medical Incident,10/18/2014,10/17/2014,10/18/2014 03:05:12 AM,10/18/2014 03:07:01 AM,10/18/2014 03:07:54 AM,10/18/2014 03:08:56 AM,10/18/2014 03:11:10 AM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 3 Transport,10/18/2014 03:31:00 AM,900 Block of BUENAVISTAWEST AV,San Francisco,94117,B05,21,4353,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7699941054658, -122.44324157754)",142910457-E21 +143530505,67,14126025,Medical Incident,12/19/2014,12/18/2014,12/19/2014 06:47:00 AM,12/19/2014 06:48:07 AM,12/19/2014 06:50:39 AM,12/19/2014 06:50:49 AM,12/19/2014 07:07:12 AM,12/19/2014 07:16:21 AM,12/19/2014 07:39:33 AM,Code 2 Transport,12/19/2014 08:30:22 AM,POTRERO AV/16TH ST,San Francisco,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",143530505-67 +160933208,62,16037016,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:53:03 PM,04/02/2016 07:53:54 PM,04/02/2016 07:54:49 PM,04/02/2016 07:55:00 PM,04/02/2016 08:01:50 PM,04/02/2016 08:32:56 PM,04/02/2016 09:03:45 PM,Code 2 Transport,04/02/2016 09:28:11 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160933208-62 +151483682,58,15056502,Medical Incident,05/28/2015,05/28/2015,05/28/2015 10:16:35 PM,05/28/2015 10:17:48 PM,05/28/2015 10:19:42 PM,05/28/2015 10:19:42 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Code 3 Transport,05/28/2015 10:20:45 PM,MARKET ST/CASTRO ST,San Francisco,94114,B05,6,5233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",151483682-58 +160993842,76,16039508,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:27:09 PM,04/08/2016 10:27:09 PM,04/08/2016 10:27:59 PM,04/08/2016 10:28:04 PM,04/08/2016 10:39:57 PM,04/08/2016 10:53:46 PM,04/08/2016 11:03:54 PM,Code 2 Transport,04/08/2016 11:27:27 PM,HAYES ST/PIERCE ST,San Francisco,94117,B05,21,3631,2,3,3,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7754168593305, -122.434483319865)",160993842-76 +141371930,D2,14046954,Structure Fire,05/17/2014,05/17/2014,05/17/2014 01:56:42 PM,05/17/2014 01:57:36 PM,05/17/2014 01:57:45 PM,05/17/2014 01:59:47 PM,05/17/2014 02:02:25 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,Fire,05/17/2014 02:10:43 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,false,Alarm,1,CHIEF,6,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",141371930-D2 +152073140,E09,15079014,Structure Fire,07/26/2015,07/26/2015,07/26/2015 07:15:22 PM,07/26/2015 07:15:22 PM,07/26/2015 07:15:45 PM,07/26/2015 07:16:50 PM,07/26/2015 07:18:28 PM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,Fire,07/26/2015 07:18:41 PM,QUINT ST/JERROLD AV,San Francisco,94124,B10,9,6443,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7409009621796, -122.393114979107)",152073140-E09 +160922661,84,16036534,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:12:26 PM,04/01/2016 05:13:24 PM,04/01/2016 05:14:07 PM,04/01/2016 05:14:21 PM,04/01/2016 05:17:18 PM,04/01/2016 05:55:43 PM,04/01/2016 06:17:06 PM,Code 2 Transport,04/01/2016 06:44:17 PM,17TH ST/FOLSOM ST,San Francisco,94110,B02,7,5245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.763696767377, -122.415155085854)",160922661-84 +161002685,89,16039882,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:41:02 PM,04/09/2016 06:41:35 PM,04/09/2016 06:42:02 PM,04/09/2016 06:42:15 PM,04/09/2016 06:50:57 PM,04/09/2016 07:01:14 PM,04/09/2016 07:14:20 PM,Code 2 Transport,04/09/2016 07:43:41 PM,0 Block of SHERMAN ST,San Francisco,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7766015774052, -122.405924386123)",161002685-89 +143322161,E10,14117755,Alarms,11/28/2014,11/28/2014,11/28/2014 04:49:37 PM,11/28/2014 04:51:00 PM,11/28/2014 04:51:09 PM,11/28/2014 04:54:17 PM,11/28/2014 04:54:17 PM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/28/2014 05:08:43 PM,0 Block of HEATHER AVE,San Francisco,94118,B05,10,4374,3,3,3,true,Alarm,1,ENGINE,1,5,2,Presidio Heights,"(37.7849091591108, -122.452936292976)",143322161-E10 +150452339,RS1,15017564,Structure Fire,02/14/2015,02/14/2015,02/14/2015 04:01:39 PM,02/14/2015 04:02:34 PM,02/14/2015 04:02:59 PM,02/14/2015 04:04:18 PM,02/14/2015 04:08:43 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 04:08:59 PM,1700 Block of UNION ST,San Francisco,94123,B04,16,3335,3,3,3,false,Alarm,1,RESCUE SQUAD,7,4,2,Marina,"(37.7979757626675, -122.428080525252)",150452339-RS1 +142771374,E08,14097328,Traffic Collision,10/04/2014,10/04/2014,10/04/2014 10:09:55 AM,10/04/2014 10:10:54 AM,10/04/2014 10:12:53 AM,10/04/2014 10:12:53 AM,10/04/2014 10:15:51 AM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Code 3 Transport,10/04/2014 10:44:07 AM,16TH ST/HARRISON ST,San Francisco,94110,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7654476102712, -122.413105244954)",142771374-E08 +151551489,KM04,15059067,Medical Incident,06/04/2015,06/04/2015,06/04/2015 11:31:29 AM,06/04/2015 11:31:57 AM,06/04/2015 11:32:30 AM,06/04/2015 11:33:48 AM,06/04/2015 11:48:38 AM,06/04/2015 12:17:30 PM,06/04/2015 12:29:37 PM,Code 2 Transport,06/04/2015 01:44:44 PM,800 Block of BEACH ST,San Francisco,94109,B01,28,3135,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,2,Russian Hill,"(37.8063833343464, -122.423031649739)",151551489-KM04 +160961952,88,16038030,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:29:32 PM,04/05/2016 01:29:32 PM,04/05/2016 01:31:36 PM,04/05/2016 01:31:47 PM,04/05/2016 01:44:59 PM,04/05/2016 02:01:21 PM,04/05/2016 02:13:25 PM,Code 2 Transport,04/05/2016 03:00:14 PM,WAWONA ST/15TH AV,San Francisco,94127,B08,39,7356,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7376489058712, -122.470962727821)",160961952-88 +141180338,E36,14039929,Medical Incident,04/28/2014,04/28/2014,04/28/2014 07:11:04 PM,04/28/2014 07:12:47 PM,04/28/2014 07:13:35 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Code 2 Transport,04/28/2014 07:14:27 PM,900 Block of EDDY ST,SAN FRANCISCO,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,5,Western Addition,"(37.782522418285, -122.423274430962)",141180338-E36 +150693098,E12,15026481,Outside Fire,03/10/2015,03/10/2015,03/10/2015 07:04:24 PM,03/10/2015 07:05:24 PM,03/10/2015 07:05:29 PM,03/10/2015 07:06:52 PM,03/10/2015 07:06:52 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 07:14:07 PM,0 Block of CARMEL ST,San Francisco,94117,B05,12,5256,3,3,3,true,Fire,1,ENGINE,1,5,5,Inner Sunset,"(37.7609149457937, -122.447023831964)",150693098-E12 +160942058,84,16037284,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:13:19 PM,04/03/2016 02:15:33 PM,04/03/2016 02:15:51 PM,04/03/2016 02:16:23 PM,04/03/2016 02:26:44 PM,04/03/2016 03:22:42 PM,04/03/2016 03:22:44 PM,Code 2 Transport,04/03/2016 03:51:41 PM,0 Block of ELK ST,San Francisco,94131,B06,26,8175,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7357104260855, -122.439799173378)",160942058-84 +143311599,T03,14117390,Other,11/27/2014,11/27/2014,11/27/2014 02:32:10 PM,11/27/2014 02:32:32 PM,11/27/2014 02:34:28 PM,11/27/2014 02:35:24 PM,11/27/2014 02:36:53 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Fire,11/27/2014 02:39:35 PM,POLK ST/EDDY ST,San Francisco,94109,B02,3,3114,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",143311599-T03 +153283535,64,15126405,Medical Incident,11/24/2015,11/24/2015,11/24/2015 08:23:48 PM,11/24/2015 08:26:17 PM,11/24/2015 08:27:47 PM,11/24/2015 08:27:55 PM,11/24/2015 08:33:28 PM,11/24/2015 08:48:47 PM,11/24/2015 09:00:57 PM,Code 2 Transport,11/24/2015 09:39:59 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",153283535-64 +142761792,E36,14096901,Medical Incident,10/03/2014,10/03/2014,10/03/2014 12:38:16 PM,10/03/2014 12:38:42 PM,10/03/2014 12:39:53 PM,10/03/2014 12:39:53 PM,10/03/2014 12:40:59 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Code 2 Transport,10/03/2014 12:53:06 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",142761792-E36 +150221759,T12,15008578,Traffic Collision,01/22/2015,01/22/2015,01/22/2015 01:16:56 PM,01/22/2015 01:16:56 PM,01/22/2015 01:18:29 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Other,01/22/2015 01:19:36 PM,1700 Block of 41ST AVE,San Francisco,94122,B08,18,7633,3,3,3,false,Potentially Life-Threatening,1,TRUCK,9,8,4,Sunset/Parkside,"(37.7541299376639, -122.500039850996)",150221759-T12 +153302414,E01,15127136,Medical Incident,11/26/2015,11/26/2015,11/26/2015 07:21:57 PM,11/26/2015 07:23:38 PM,11/26/2015 07:26:02 PM,11/26/2015 07:26:02 PM,11/26/2015 07:37:05 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,Code 2 Transport,11/26/2015 07:37:13 PM,0 Block of PERRY ST,San Francisco,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",153302414-E01 +142731676,KM12,14095704,Medical Incident,09/30/2014,09/30/2014,09/30/2014 12:25:14 PM,09/30/2014 12:27:02 PM,09/30/2014 12:27:47 PM,09/30/2014 12:28:32 PM,09/30/2014 12:49:25 PM,09/30/2014 01:07:54 PM,09/30/2014 01:28:25 PM,Code 2 Transport,09/30/2014 01:57:09 PM,1400 Block of SOMERSET ST,San Francisco,94134,B10,44,6265,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.71412193463, -122.402424966987)",142731676-KM12 +160953605,62,16037790,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:32:29 PM,04/04/2016 08:35:21 PM,04/04/2016 08:38:01 PM,04/04/2016 08:38:11 PM,04/04/2016 08:45:14 PM,04/04/2016 08:58:40 PM,04/04/2016 09:16:59 PM,Code 2 Transport,04/04/2016 09:46:03 PM,2700 Block of FOLSOM ST,San Francisco,94110,B06,7,5526,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7532984471084, -122.414228764111)",160953605-62 +160931221,62,16036800,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:34:05 AM,04/02/2016 10:35:48 AM,04/02/2016 10:36:28 AM,04/02/2016 10:36:53 AM,04/02/2016 10:55:47 AM,04/02/2016 11:15:28 AM,04/02/2016 11:42:01 AM,Code 2 Transport,04/02/2016 12:10:42 PM,400 Block of GROVE ST,San Francisco,94102,B02,36,3315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7777627622065, -122.423998389584)",160931221-62 +151510843,E03,15057402,Medical Incident,05/31/2015,05/31/2015,05/31/2015 08:36:09 AM,05/31/2015 08:38:08 AM,05/31/2015 08:38:16 AM,05/31/2015 08:40:18 AM,05/31/2015 08:41:51 AM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,No Merit,05/31/2015 08:55:36 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",151510843-E03 +160970145,64,16038251,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:13:30 AM,04/06/2016 01:13:30 AM,04/06/2016 01:13:30 AM,04/06/2016 01:13:30 AM,04/06/2016 01:13:30 AM,04/06/2016 01:46:15 AM,04/06/2016 01:53:32 AM,Code 2 Transport,04/06/2016 02:42:30 AM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B99,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",160970145-64 +152661923,E03,15101868,Medical Incident,09/23/2015,09/23/2015,09/23/2015 01:09:31 PM,09/23/2015 01:09:31 PM,09/23/2015 01:10:03 PM,09/23/2015 01:11:14 PM,09/23/2015 01:13:21 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,Code 2 Transport,09/23/2015 01:21:17 PM,400 Block of MCALLISTER ST,San Francisco,94102,B02,3,3112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",152661923-E03 +151402850,E05,15053261,Medical Incident,05/20/2015,05/20/2015,05/20/2015 05:32:16 PM,05/20/2015 05:33:00 PM,05/20/2015 05:33:33 PM,05/20/2015 05:34:48 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Code 2 Transport,05/20/2015 05:34:55 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",151402850-E05 +143161109,84,14111860,Medical Incident,11/12/2014,11/12/2014,11/12/2014 10:07:19 AM,11/12/2014 10:09:31 AM,11/12/2014 10:09:55 AM,11/12/2014 10:10:09 AM,11/12/2014 10:18:19 AM,11/12/2014 10:35:02 AM,11/12/2014 10:56:26 AM,Code 2 Transport,11/12/2014 11:29:38 AM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3311,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7730330183515, -122.422127579529)",143161109-84 +161001643,88,16039770,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:16:39 PM,04/09/2016 01:18:15 PM,04/09/2016 01:19:11 PM,04/09/2016 01:19:42 PM,04/09/2016 01:43:27 PM,04/09/2016 01:53:24 PM,04/09/2016 02:07:01 PM,Code 2 Transport,04/09/2016 02:40:56 PM,100 Block of ARMORY DR,San Francisco,94132,B08,19,8716,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7293138660089, -122.502677767441)",161001643-88 +150171878,B08,15006735,Alarms,01/17/2015,01/17/2015,01/17/2015 01:36:56 PM,01/17/2015 01:38:23 PM,01/17/2015 01:38:31 PM,01/17/2015 01:39:12 PM,01/17/2015 01:43:29 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Fire,01/17/2015 01:45:02 PM,2500 Block of JUDAH ST,San Francisco,94122,B08,18,7513,3,3,3,false,Alarm,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7612125537078, -122.489320068189)",150171878-B08 +141590810,B04,14054717,Gas Leak (Natural and LP Gases),06/08/2014,06/08/2014,06/08/2014 08:35:40 AM,06/08/2014 08:37:29 AM,06/08/2014 08:37:37 AM,06/08/2014 08:38:06 AM,06/08/2014 08:42:22 AM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Fire,06/08/2014 08:50:30 AM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,3,3,3,false,Alarm,1,CHIEF,3,5,5,Japantown,"(37.7848770596387, -122.442348914658)",141590810-B04 +142681683,E08,14093926,Alarms,09/25/2014,09/25/2014,09/25/2014 01:15:47 PM,09/25/2014 01:17:48 PM,09/25/2014 01:17:57 PM,09/25/2014 01:18:49 PM,09/25/2014 01:20:54 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Fire,09/25/2014 01:44:02 PM,500 Block of 3RD ST,San Francisco,94107,B03,8,2173,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7809200704439, -122.395242268798)",142681683-E08 +150770794,E07,15029430,Medical Incident,03/18/2015,03/18/2015,03/18/2015 08:12:46 AM,03/18/2015 08:14:35 AM,03/18/2015 08:15:41 AM,03/18/2015 08:16:57 AM,04/25/2016 01:11:39 PM,04/25/2016 01:11:39 PM,04/25/2016 01:11:39 PM,Code 2 Transport,03/18/2015 08:18:31 AM,200 Block of SHOTWELL ST,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7644380015359, -122.416376372761)",150770794-E07 +153423638,E08,15131764,Medical Incident,12/08/2015,12/08/2015,12/08/2015 08:53:06 PM,12/08/2015 08:53:06 PM,12/08/2015 08:55:10 PM,12/08/2015 08:57:27 PM,12/08/2015 08:59:00 PM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Code 2 Transport,12/08/2015 09:11:45 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",153423638-E08 +152723603,E16,15104284,Alarms,09/29/2015,09/29/2015,09/29/2015 08:52:23 PM,09/29/2015 08:53:57 PM,09/29/2015 08:54:24 PM,09/29/2015 08:55:50 PM,09/29/2015 08:56:52 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/29/2015 09:17:01 PM,2100 Block of GREEN ST,San Francisco,94123,B04,16,3463,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7962082237995, -122.434468900005)",152723603-E16 +150623362,E02,15023809,Alarms,03/03/2015,03/03/2015,03/03/2015 07:34:18 PM,03/03/2015 07:35:42 PM,03/03/2015 07:36:05 PM,03/03/2015 07:37:18 PM,03/03/2015 07:40:52 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Fire,03/03/2015 07:56:07 PM,100 Block of GRANT AVE,San Francisco,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7884704854224, -122.405107875654)",150623362-E02 +160950081,AM16,16037476,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:46:46 AM,04/04/2016 12:48:13 AM,04/04/2016 12:48:31 AM,04/04/2016 12:49:05 AM,04/04/2016 12:52:24 AM,04/04/2016 01:05:59 AM,04/04/2016 01:23:26 AM,Code 2 Transport,04/04/2016 01:33:52 AM,600 Block of GEARY ST,San Francisco,94109,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",160950081-AM16 +141632555,E05,14056271,Medical Incident,06/12/2014,06/12/2014,06/12/2014 05:31:07 PM,06/12/2014 05:32:41 PM,06/12/2014 05:37:33 PM,06/12/2014 05:39:10 PM,06/12/2014 05:40:52 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/12/2014 06:16:38 PM,1700 Block of OFARRELL ST,San Francisco,94115,B04,5,3623,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",141632555-E05 +151712594,E18,15065434,Medical Incident,06/20/2015,06/20/2015,06/20/2015 05:49:58 PM,06/20/2015 05:53:07 PM,06/20/2015 05:53:33 PM,06/20/2015 05:54:34 PM,06/20/2015 05:57:51 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Code 2 Transport,06/20/2015 06:11:27 PM,1400 Block of 40TH AVE,San Francisco,94122,B08,23,7631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7597777456855, -122.499361901706)",151712594-E18 +152452789,T02,15093528,Structure Fire,09/02/2015,09/02/2015,09/02/2015 04:21:19 PM,09/02/2015 04:21:19 PM,09/02/2015 04:21:31 PM,09/02/2015 04:23:02 PM,09/02/2015 04:24:32 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/02/2015 04:24:35 PM,STOCKTON ST/WASHINGTON ST,San Francisco,94108,B01,2,1331,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",152452789-T02 +160930510,56,16036717,Medical Incident,04/02/2016,04/01/2016,04/02/2016 04:26:29 AM,04/02/2016 04:27:15 AM,04/02/2016 04:27:32 AM,04/02/2016 04:27:45 AM,04/02/2016 04:32:08 AM,04/02/2016 04:52:12 AM,04/02/2016 04:58:51 AM,Code 2 Transport,04/02/2016 05:30:47 AM,800 Block of MISSION ST,San Francisco,94103,B03,1,2213,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7842816168857, -122.404614647152)",160930510-56 +142661910,E16,14093123,Other,09/23/2014,09/23/2014,09/23/2014 01:50:39 PM,09/23/2014 01:52:32 PM,09/23/2014 02:14:44 PM,09/23/2014 02:16:37 PM,09/23/2014 02:35:30 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Fire,09/23/2014 03:11:33 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,true,Alarm,1,ENGINE,6,7,2,Presidio,"(37.7915253713789, -122.483480228628)",142661910-E16 +152853555,78,15109589,Medical Incident,10/12/2015,10/12/2015,10/12/2015 08:08:38 PM,10/12/2015 08:09:07 PM,10/12/2015 08:09:24 PM,10/12/2015 08:10:07 PM,10/12/2015 08:17:36 PM,10/12/2015 08:26:20 PM,10/12/2015 08:28:43 PM,Code 2 Transport,10/12/2015 09:06:48 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7700546614555, -122.446128431298)",152853555-78 +160943363,70,16037424,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:07:57 PM,04/03/2016 09:07:57 PM,04/03/2016 09:09:24 PM,04/03/2016 09:09:39 PM,04/03/2016 09:25:06 PM,04/03/2016 09:33:08 PM,04/03/2016 09:44:56 PM,Code 2 Transport,04/03/2016 10:18:46 PM,JENNINGS ST/DONNER AV,San Francisco,94124,B10,17,6537,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7232939196136, -122.392066575318)",160943363-70 +150212998,E17,15008316,Medical Incident,01/21/2015,01/21/2015,01/21/2015 06:20:46 PM,01/21/2015 06:23:42 PM,01/21/2015 06:25:55 PM,01/21/2015 06:27:55 PM,01/21/2015 06:31:59 PM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Code 2 Transport,01/21/2015 06:47:33 PM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",150212998-E17 +150911931,AM04,15034609,Medical Incident,04/01/2015,04/01/2015,04/01/2015 01:38:32 PM,04/01/2015 01:38:32 PM,04/01/2015 01:39:00 PM,04/01/2015 01:39:58 PM,04/01/2015 01:44:39 PM,04/01/2015 02:00:59 PM,04/01/2015 02:32:47 PM,Code 2 Transport,04/01/2015 03:00:51 PM,2500 Block of 40TH AVE,San Francisco,94116,B08,18,7617,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7392647601662, -122.497924563428)",150911931-AM04 +143511801,E36,14125386,Medical Incident,12/17/2014,12/17/2014,12/17/2014 12:52:50 PM,12/17/2014 12:54:38 PM,12/17/2014 12:55:09 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Unable to Locate,12/17/2014 12:55:45 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,2,2,2,false,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",143511801-E36 +153293630,71,15126773,Medical Incident,11/25/2015,11/25/2015,11/25/2015 08:29:35 PM,11/25/2015 08:30:27 PM,11/25/2015 08:30:50 PM,11/25/2015 08:31:52 PM,11/25/2015 08:35:36 PM,11/25/2015 08:47:56 PM,11/25/2015 08:58:33 PM,Code 2 Transport,11/25/2015 09:22:21 PM,FOLSOM ST/21ST ST,San Francisco,94110,B06,7,5447,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7572976449633, -122.414541469066)",153293630-71 +150182135,KM02,15007151,Medical Incident,01/18/2015,01/18/2015,01/18/2015 03:41:10 PM,01/18/2015 03:42:54 PM,01/18/2015 03:43:42 PM,01/18/2015 03:44:12 PM,01/18/2015 03:45:24 PM,01/18/2015 04:09:08 PM,01/18/2015 04:31:35 PM,Code 2 Transport,01/18/2015 05:05:38 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",150182135-KM02 +160964045,68,16038208,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:29:46 PM,04/05/2016 10:32:20 PM,04/05/2016 10:32:26 PM,04/05/2016 10:32:37 PM,04/05/2016 10:34:54 PM,04/05/2016 10:48:53 PM,04/05/2016 10:55:25 PM,Code 2 Transport,04/05/2016 11:44:05 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160964045-68 +142393741,E01,14083304,Medical Incident,08/27/2014,08/27/2014,08/27/2014 10:40:36 PM,08/27/2014 10:40:36 PM,08/27/2014 10:41:04 PM,08/27/2014 10:43:15 PM,08/27/2014 10:45:59 PM,04/25/2016 01:15:25 PM,04/25/2016 01:15:25 PM,Code 2 Transport,08/27/2014 10:47:31 PM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",142393741-E01 +160930129,AM20,16036680,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:48:01 AM,04/02/2016 12:49:07 AM,04/02/2016 12:49:53 AM,04/02/2016 12:50:41 AM,04/02/2016 12:56:25 AM,04/02/2016 01:26:23 AM,04/02/2016 01:51:52 AM,Code 2 Transport,04/02/2016 02:31:58 AM,100 Block of VERNON ST,San Francisco,94132,B09,33,8411,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7151841543994, -122.46807546609)",160930129-AM20 +153473275,T16,15133854,Structure Fire,12/13/2015,12/13/2015,12/13/2015 09:25:32 PM,12/13/2015 09:25:32 PM,12/13/2015 09:25:47 PM,12/13/2015 09:26:54 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Fire,12/13/2015 09:28:22 PM,FILLMORE ST/UNION ST,San Francisco,94123,B04,16,3552,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.7970890002513, -122.435489829172)",153473275-T16 +142100295,T17,14072692,Structure Fire,07/29/2014,07/28/2014,07/29/2014 04:36:31 AM,07/29/2014 04:36:31 AM,07/29/2014 04:37:44 AM,07/29/2014 04:39:21 AM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Fire,07/29/2014 04:43:01 AM,100 Block of CASHMERE ST,San Francisco,94124,B10,25,6522,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",142100295-T17 +151463262,E01,15055686,Medical Incident,05/26/2015,05/26/2015,05/26/2015 07:40:41 PM,05/26/2015 07:42:01 PM,05/26/2015 07:43:26 PM,05/26/2015 07:45:21 PM,05/26/2015 07:49:01 PM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Code 2 Transport,05/26/2015 07:57:08 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",151463262-E01 +151060735,E04,15039951,Outside Fire,04/16/2015,04/16/2015,04/16/2015 08:16:20 AM,04/16/2015 08:17:55 AM,04/16/2015 08:18:03 AM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Fire,04/16/2015 08:19:47 AM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,3,3,3,false,Fire,1,ENGINE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",151060735-E04 +142733491,T12,14095875,Alarms,09/30/2014,09/30/2014,09/30/2014 09:11:01 PM,09/30/2014 09:12:36 PM,09/30/2014 09:12:54 PM,09/30/2014 09:15:03 PM,09/30/2014 09:19:33 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Fire,09/30/2014 09:26:34 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,false,Alarm,1,TRUCK,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",142733491-T12 +152682689,B02,15102768,Alarms,09/25/2015,09/25/2015,09/25/2015 04:42:55 PM,09/25/2015 04:45:12 PM,09/25/2015 04:45:16 PM,09/25/2015 04:47:23 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 04:48:08 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",152682689-B02 +142593407,E07,14090644,Outside Fire,09/16/2014,09/16/2014,09/16/2014 08:36:29 PM,09/16/2014 08:37:54 PM,09/16/2014 08:39:38 PM,09/16/2014 08:40:01 PM,09/16/2014 08:42:15 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Fire,09/16/2014 09:18:18 PM,500 Block of DOLORES ST,San Francisco,94114,B06,7,5435,3,3,3,true,Fire,1,ENGINE,2,6,8,Castro/Upper Market,"(37.759419804663, -122.426036566526)",142593407-E07 +141932690,E34,14067048,Medical Incident,07/12/2014,07/12/2014,07/12/2014 06:57:27 PM,07/12/2014 06:57:27 PM,07/12/2014 06:59:00 PM,07/12/2014 07:00:03 PM,07/12/2014 07:03:20 PM,04/25/2016 01:16:15 PM,04/25/2016 01:16:15 PM,Code 2 Transport,07/12/2014 07:34:27 PM,FULTON ST/43RD AV,San Francisco,94122,B07,34,7262,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7716893806494, -122.50347269064)",141932690-E34 +152211990,61,15084236,Medical Incident,08/09/2015,08/09/2015,08/09/2015 02:33:53 PM,08/09/2015 02:33:53 PM,08/09/2015 02:34:08 PM,08/09/2015 02:34:35 PM,08/09/2015 02:37:29 PM,08/09/2015 02:50:04 PM,08/09/2015 03:02:02 PM,Code 2 Transport,08/09/2015 03:41:17 PM,400 Block of GROVE ST,San Francisco,94102,B02,36,3315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7777627622065, -122.423998389584)",152211990-61 +142172228,83,14075287,Medical Incident,08/05/2014,08/05/2014,08/05/2014 04:13:37 PM,08/05/2014 04:14:09 PM,08/05/2014 04:21:41 PM,08/05/2014 04:22:16 PM,08/05/2014 04:30:20 PM,08/05/2014 04:44:44 PM,08/05/2014 05:14:55 PM,Code 2 Transport,08/05/2014 05:49:35 PM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7748170645635, -122.412845031536)",142172228-83 +160954074,76,16037825,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:03:24 PM,04/04/2016 11:04:53 PM,04/04/2016 11:05:09 PM,04/04/2016 11:05:33 PM,04/04/2016 11:10:06 PM,04/04/2016 11:30:23 PM,04/05/2016 12:08:01 AM,Code 2 Transport,04/05/2016 12:29:00 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160954074-76 +143642646,T17,14130326,Citizen Assist / Service Call,12/30/2014,12/30/2014,12/30/2014 05:18:07 PM,12/30/2014 05:23:38 PM,12/30/2014 05:24:05 PM,12/30/2014 05:26:47 PM,12/30/2014 05:41:28 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 05:42:09 PM,KEITH ST/HUDSON AV,San Francisco,94124,B10,25,6565,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7375142173662, -122.384046508774)",143642646-T17 +152432747,E17,15092787,Smoke Investigation (Outside),08/31/2015,08/31/2015,08/31/2015 04:47:43 PM,08/31/2015 04:49:00 PM,08/31/2015 04:49:48 PM,08/31/2015 04:50:59 PM,08/31/2015 04:54:18 PM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Fire,08/31/2015 05:13:04 PM,400 Block of BAYVIEW CIR,San Francisco,94124,B10,42,6494,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7328817611128, -122.39603203068)",152432747-E17 +160943354,71,16037422,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:01:56 PM,04/03/2016 09:04:56 PM,04/03/2016 09:05:12 PM,04/03/2016 09:05:47 PM,04/03/2016 09:14:37 PM,04/03/2016 09:47:30 PM,04/03/2016 10:04:31 PM,Code 2 Transport,04/03/2016 10:40:02 PM,500 Block of STAPLES AV,San Francisco,94112,B09,15,8233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7291779436625, -122.453210747646)",160943354-71 +160923101,AM16,16036567,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:55:15 PM,04/01/2016 06:55:15 PM,04/01/2016 06:56:11 PM,04/01/2016 06:56:33 PM,04/01/2016 07:04:51 PM,04/01/2016 07:19:07 PM,04/01/2016 07:40:36 PM,Code 2 Transport,04/01/2016 08:13:56 PM,LARKIN ST/MCALLISTER ST,San Francisco,94102,B02,36,1645,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",160923101-AM16 +160982029,62,16038930,Structure Fire,04/07/2016,04/07/2016,04/07/2016 01:27:19 PM,04/07/2016 01:27:43 PM,04/07/2016 01:28:06 PM,04/07/2016 01:29:09 PM,04/07/2016 01:34:24 PM,04/07/2016 01:59:27 PM,04/07/2016 02:36:25 PM,Code 2 Transport,04/07/2016 02:57:07 PM,100 Block of JULIAN AVE,San Francisco,94103,B02,6,5226,3,3,3,true,Fire,1,MEDIC,9,2,9,Mission,"(37.7657922226195, -122.420909958943)",160982029-62 +153081074,52,15118295,Medical Incident,11/04/2015,11/04/2015,11/04/2015 09:25:13 AM,11/04/2015 09:27:23 AM,11/04/2015 09:28:57 AM,11/04/2015 09:30:02 AM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,No Merit,11/04/2015 09:32:43 AM,100 Block of ORIZABA AVE,San Francisco,94112,B09,33,8375,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7118224553199, -122.462506537127)",153081074-52 +151030385,B02,15038823,Structure Fire,04/13/2015,04/12/2015,04/13/2015 04:38:12 AM,04/13/2015 04:39:45 AM,04/13/2015 04:40:06 AM,04/13/2015 04:41:15 AM,04/13/2015 04:44:45 AM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Fire,04/13/2015 04:50:11 AM,ROOSEVELT WY/LEVANT ST,San Francisco,94114,B05,6,5175,3,3,3,false,Alarm,1,CHIEF,2,5,8,Castro/Upper Market,"(37.7652950997532, -122.441931911631)",151030385-B02 +143273114,AR1,14116009,Structure Fire,11/23/2014,11/23/2014,11/23/2014 06:50:54 PM,11/23/2014 06:51:23 PM,11/23/2014 06:57:32 PM,11/23/2014 06:58:21 PM,11/23/2014 07:14:33 PM,04/25/2016 01:13:50 PM,04/25/2016 01:13:50 PM,Fire,11/23/2014 10:04:04 PM,400 Block of RANDOLPH ST,San Francisco,94132,B09,33,8416,3,3,3,false,Alarm,1,INVESTIGATION,3,9,11,Oceanview/Merced/Ingleside,"(37.7143315576982, -122.4666471648)",143273114-AR1 +151892687,E11,15072244,Medical Incident,07/08/2015,07/08/2015,07/08/2015 04:30:51 PM,07/08/2015 04:31:56 PM,07/08/2015 04:32:10 PM,07/08/2015 04:33:07 PM,07/08/2015 04:35:41 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Code 2 Transport,07/08/2015 04:48:35 PM,28TH ST/DOLORES ST,San Francisco,94110,B06,11,5577,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7454357192251, -122.424538966505)",151892687-E11 +160952743,56,16037706,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:39:09 PM,04/04/2016 04:39:09 PM,04/04/2016 04:40:14 PM,04/04/2016 04:40:36 PM,04/04/2016 04:45:46 PM,04/04/2016 04:57:20 PM,04/04/2016 05:04:18 PM,Code 3 Transport,04/04/2016 05:57:26 PM,3900 Block of 23RD ST,San Francisco,94114,B06,11,5514,A,E,3,true,Potentially Life-Threatening,1,MEDIC,5,6,8,Noe Valley,"(37.7531464685627, -122.430920904363)",160952743-56 +150490816,77,15018877,Medical Incident,02/18/2015,02/18/2015,02/18/2015 08:23:09 AM,02/18/2015 08:26:23 AM,02/18/2015 08:27:30 AM,02/18/2015 08:27:43 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Code 2 Transport,02/18/2015 08:29:56 AM,2ND ST/BRYANT ST,San Francisco,94107,B03,8,2151,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7830778523618, -122.393618077491)",150490816-77 +153112644,53,15119640,Medical Incident,11/07/2015,11/07/2015,11/07/2015 05:19:53 PM,11/07/2015 05:19:53 PM,11/07/2015 05:20:30 PM,11/07/2015 05:20:36 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Cancelled,11/07/2015 05:26:54 PM,0 Block of BRADY ST,San Francisco,94103,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7725484288115, -122.420084353921)",153112644-53 +160940728,62,16037172,Medical Incident,04/03/2016,04/02/2016,04/03/2016 06:32:44 AM,04/03/2016 06:33:52 AM,04/03/2016 06:34:09 AM,04/03/2016 06:34:22 AM,04/03/2016 06:44:52 AM,04/03/2016 07:06:47 AM,04/03/2016 07:11:57 AM,Code 2 Transport,04/03/2016 07:44:06 AM,3RD AV/GEARY BL,San Francisco,94118,B07,31,7116,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.78116026165, -122.461062828563)",160940728-62 +142310769,E07,14080153,Medical Incident,08/19/2014,08/19/2014,08/19/2014 08:21:57 AM,08/19/2014 08:22:39 AM,08/19/2014 08:22:49 AM,08/19/2014 08:24:20 AM,08/19/2014 08:26:41 AM,04/25/2016 01:15:35 PM,04/25/2016 01:15:35 PM,Code 2 Transport,08/19/2014 08:31:30 AM,20TH ST/LEXINGTON ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7585447222443, -122.420506832893)",142310769-E07 +150313986,E07,15012192,Other,01/31/2015,01/31/2015,01/31/2015 11:46:30 PM,01/31/2015 11:47:08 PM,01/31/2015 11:47:27 PM,01/31/2015 11:47:48 PM,01/31/2015 11:48:42 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 11:59:53 PM,2100 Block of FOLSOM ST,San Francisco,94110,B02,7,5424,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7628937069404, -122.415145830574)",150313986-E07 +151662175,57,15063526,Medical Incident,06/15/2015,06/15/2015,06/15/2015 03:08:34 PM,06/15/2015 03:09:31 PM,06/15/2015 03:09:43 PM,06/15/2015 03:09:55 PM,06/15/2015 03:15:55 PM,06/15/2015 03:33:00 PM,06/15/2015 04:03:29 PM,Code 2 Transport,06/15/2015 04:10:11 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",151662175-57 +152202202,RC2,15083857,Medical Incident,08/08/2015,08/08/2015,08/08/2015 03:23:23 PM,08/08/2015 03:24:26 PM,08/08/2015 03:28:52 PM,08/08/2015 03:30:49 PM,08/08/2015 03:34:51 PM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Code 2 Transport,08/08/2015 03:35:41 PM,700 Block of 5TH AVE,San Francisco,94118,B07,31,7122,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7745856548117, -122.462813355104)",152202202-RC2 +143243444,T10,14114876,Structure Fire,11/20/2014,11/20/2014,11/20/2014 09:52:55 PM,11/20/2014 09:53:27 PM,11/20/2014 09:53:57 PM,11/20/2014 09:55:04 PM,11/20/2014 10:01:00 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Fire,11/20/2014 10:03:47 PM,3400 Block of PIERCE ST,San Francisco,94123,B04,16,3662,3,3,3,false,Alarm,1,TRUCK,8,4,2,Marina,"(37.8021393814199, -122.439755551629)",143243444-T10 +160953591,52,16037786,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:31:59 PM,04/04/2016 08:31:59 PM,04/04/2016 08:33:04 PM,04/04/2016 08:33:53 PM,04/04/2016 08:34:33 PM,04/04/2016 08:49:23 PM,04/04/2016 08:53:17 PM,Code 2 Transport,04/04/2016 09:42:35 PM,1500 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",160953591-52 +150592881,KM04,15022640,Medical Incident,02/28/2015,02/28/2015,02/28/2015 06:32:52 PM,02/28/2015 06:32:52 PM,02/28/2015 06:33:32 PM,02/28/2015 06:35:56 PM,02/28/2015 06:38:23 PM,02/28/2015 07:08:15 PM,02/28/2015 07:18:36 PM,Code 2 Transport,02/28/2015 07:47:47 PM,11TH ST/MARKET ST,San Francisco,94103,B02,36,5117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",150592881-KM04 +152303277,E01,15087905,Medical Incident,08/18/2015,08/18/2015,08/18/2015 07:55:30 PM,08/18/2015 07:57:03 PM,08/18/2015 07:58:12 PM,08/18/2015 07:59:10 PM,08/18/2015 08:02:40 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Code 3 Transport,08/18/2015 08:16:58 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",152303277-E01 +142011129,E09,14069530,Medical Incident,07/20/2014,07/20/2014,07/20/2014 10:55:29 AM,07/20/2014 10:55:44 AM,07/20/2014 11:02:55 AM,07/20/2014 11:03:56 AM,07/20/2014 11:05:52 AM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Medical Examiner,07/20/2014 11:22:51 AM,1700 Block of 25TH ST,San Francisco,94107,B10,37,2614,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7523945846734, -122.396035863128)",142011129-E09 +160933229,AM16,16037019,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:54:53 PM,04/02/2016 07:58:08 PM,04/02/2016 07:58:29 PM,04/02/2016 07:59:02 PM,04/02/2016 08:05:35 PM,04/02/2016 08:13:41 PM,04/02/2016 08:28:49 PM,Code 2 Transport,04/02/2016 09:15:25 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160933229-AM16 +160970460,62,16038284,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:53:55 AM,04/06/2016 05:55:13 AM,04/06/2016 05:57:15 AM,04/06/2016 05:57:24 AM,04/06/2016 06:00:43 AM,04/06/2016 06:22:53 AM,04/06/2016 06:44:24 AM,Code 2 Transport,04/06/2016 07:16:26 AM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,2,3,3,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",160970460-62 +152623143,E41,15100312,Alarms,09/19/2015,09/19/2015,09/19/2015 06:24:26 PM,09/19/2015 06:26:21 PM,09/19/2015 06:26:30 PM,09/19/2015 06:27:20 PM,09/19/2015 06:31:20 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Fire,09/19/2015 06:44:19 PM,200 Block of GREEN ST,San Francisco,94111,B01,28,1226,3,3,3,false,Alarm,1,ENGINE,2,1,3,North Beach,"(37.8001897775591, -122.403986863773)",152623143-E41 +141220009,77,14041166,Medical Incident,05/02/2014,05/01/2014,05/02/2014 12:40:13 AM,05/02/2014 12:41:29 AM,05/02/2014 12:41:45 AM,05/02/2014 12:42:11 AM,05/02/2014 12:45:52 AM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Patient Declined Transport,05/02/2014 12:50:44 AM,500 Block of 5TH ST,SAN FRANCISCO,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",141220009-77 +160953984,60,16037816,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:30:51 PM,04/04/2016 10:30:51 PM,04/04/2016 10:31:00 PM,04/04/2016 10:31:19 PM,04/04/2016 10:42:56 PM,04/04/2016 10:54:51 PM,04/04/2016 11:06:32 PM,Code 2 Transport,04/04/2016 11:48:01 PM,BRANNAN ST/8TH ST,San Francisco,94103,B03,29,2325,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7712963527723, -122.405424735702)",160953984-60 +161010794,85,16040103,Medical Incident,04/10/2016,04/09/2016,04/10/2016 07:39:08 AM,04/10/2016 07:39:08 AM,04/10/2016 07:39:17 AM,04/10/2016 07:39:24 AM,04/10/2016 07:43:41 AM,04/10/2016 08:01:06 AM,04/10/2016 08:12:34 AM,Code 2 Transport,04/10/2016 08:43:34 AM,MCALLISTER ST/LARKIN ST,San Francisco,94102,B02,03,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",161010794-85 +160973502,AM08,16038596,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:13:52 PM,04/06/2016 06:15:32 PM,04/06/2016 06:24:20 PM,04/06/2016 06:25:15 PM,04/06/2016 06:31:15 PM,04/06/2016 06:46:58 PM,04/06/2016 06:55:03 PM,Code 2 Transport,04/06/2016 07:29:53 PM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",160973502-AM08 +150080296,D2,15002968,Structure Fire,01/08/2015,01/07/2015,01/08/2015 02:40:09 AM,01/08/2015 02:46:44 AM,01/08/2015 02:47:29 AM,01/08/2015 02:48:48 AM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Fire,01/08/2015 02:53:47 AM,300 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,3,3,3,false,Alarm,1,CHIEF,7,1,3,Chinatown,"(37.7983830790911, -122.407521730924)",150080296-D2 +160963577,70,16038162,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:56:02 PM,04/05/2016 07:56:28 PM,04/05/2016 07:57:01 PM,04/05/2016 07:57:08 PM,04/05/2016 08:00:16 PM,04/05/2016 08:11:45 PM,04/05/2016 08:36:05 PM,Code 2 Transport,04/05/2016 08:51:31 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160963577-70 +152423111,T05,15092431,Alarms,08/30/2015,08/30/2015,08/30/2015 06:58:22 PM,08/30/2015 06:59:48 PM,08/30/2015 07:00:19 PM,08/30/2015 07:01:42 PM,08/30/2015 07:03:00 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 07:10:32 PM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",152423111-T05 +150322251,E38,15012409,Vehicle Fire,02/01/2015,02/01/2015,02/01/2015 02:55:00 PM,02/01/2015 02:56:22 PM,02/01/2015 02:56:26 PM,02/01/2015 02:57:27 PM,02/01/2015 03:00:15 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Fire,02/01/2015 03:03:51 PM,SUTTER ST/STEINER ST,San Francisco,94115,B04,38,3542,3,3,3,false,Fire,1,ENGINE,1,4,5,Pacific Heights,"(37.785876207366, -122.434917663413)",150322251-E38 +141020301,E44,14034543,Medical Incident,04/12/2014,04/12/2014,04/12/2014 06:36:19 PM,04/12/2014 06:37:51 PM,04/12/2014 06:38:36 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Code 2 Transport,04/12/2014 06:40:08 PM,0 Block of DIANA ST,SAN FRANCISCO,94124,B10,42,6474,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7303371702583, -122.396357565836)",141020301-E44 +143030764,RC3,14107000,Medical Incident,10/30/2014,10/29/2014,10/30/2014 05:44:19 AM,10/30/2014 05:48:08 AM,10/30/2014 05:48:19 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Medical Examiner,10/30/2014 05:50:33 AM,2700 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,4,2,Pacific Heights,"(37.7882270245748, -122.439617640821)",143030764-RC3 +160974370,KM03,16038689,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:06:02 PM,04/06/2016 10:06:02 PM,04/06/2016 10:07:02 PM,04/06/2016 10:07:23 PM,04/06/2016 10:20:49 PM,04/06/2016 10:37:27 PM,04/06/2016 10:47:16 PM,Code 2 Transport,04/06/2016 11:32:38 PM,300 Block of HANOVER ST,San Francisco,94112,B09,33,6215,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.708901685713, -122.443726889731)",160974370-KM03 +161003020,53,16039923,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:28:51 PM,04/09/2016 08:28:51 PM,04/09/2016 08:29:15 PM,04/09/2016 08:29:29 PM,04/09/2016 08:47:14 PM,04/09/2016 09:06:50 PM,04/09/2016 09:34:01 PM,Code 2 Transport,04/09/2016 10:11:58 PM,264-A 19TH AV,San Francisco,94121,B07,31,7164,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7832264447382, -122.478440779828)",161003020-53 +142913033,B02,14102749,Alarms,10/18/2014,10/18/2014,10/18/2014 06:41:38 PM,10/18/2014 06:43:14 PM,10/18/2014 06:43:40 PM,10/18/2014 06:45:01 PM,10/18/2014 06:47:23 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Fire,10/18/2014 06:56:27 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,3,3,3,false,Alarm,1,CHIEF,2,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",142913033-B02 +143051890,KM02,14107928,Medical Incident,11/01/2014,11/01/2014,11/01/2014 11:48:09 AM,11/01/2014 11:48:55 AM,11/01/2014 11:49:20 AM,11/01/2014 11:50:00 AM,11/01/2014 11:56:33 AM,11/01/2014 12:09:47 PM,11/01/2014 12:32:04 PM,Code 2 Transport,11/01/2014 01:23:30 PM,100 Block of POWELL ST,San Francisco,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",143051890-KM02 +161011259,86,16040155,Medical Incident,04/10/2016,04/10/2016,04/10/2016 10:50:11 AM,04/10/2016 10:51:52 AM,04/10/2016 10:52:10 AM,04/10/2016 10:53:11 AM,04/10/2016 11:24:58 AM,04/10/2016 11:25:05 AM,04/10/2016 12:01:10 PM,Code 2 Transport,04/10/2016 12:35:54 PM,2100 Block of CLEMENT ST,San Francisco,94121,B07,14,7175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7820751633481, -122.482193568097)",161011259-86 +160933813,70,16037070,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:54:40 PM,04/02/2016 10:55:35 PM,04/02/2016 10:56:11 PM,04/02/2016 10:56:22 PM,04/02/2016 11:02:42 PM,04/02/2016 11:15:12 PM,04/02/2016 11:25:11 PM,Code 2 Transport,04/02/2016 11:59:02 PM,2000 Block of 16TH AVE,San Francisco,94116,B08,40,7374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.749722183236, -122.472868824443)",160933813-70 +152421228,E21,15092260,Alarms,08/30/2015,08/30/2015,08/30/2015 10:04:51 AM,08/30/2015 10:06:07 AM,08/30/2015 10:06:26 AM,08/30/2015 10:07:50 AM,08/30/2015 10:09:33 AM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 10:22:43 AM,1500 Block of FELL ST,San Francisco,94117,B05,21,4356,3,3,3,false,Alarm,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7733723701041, -122.443401573539)",152421228-E21 +153444039,E07,15132626,Medical Incident,12/10/2015,12/10/2015,12/10/2015 11:11:35 PM,12/10/2015 11:11:35 PM,12/10/2015 11:12:28 PM,12/10/2015 11:13:44 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Code 2 Transport,12/10/2015 11:16:24 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",153444039-E07 +160972512,AM10,16038472,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:47:51 PM,04/06/2016 02:48:55 PM,04/06/2016 02:49:59 PM,04/06/2016 02:50:32 PM,04/06/2016 02:54:46 PM,04/06/2016 03:24:24 PM,04/06/2016 03:45:01 PM,Code 2 Transport,04/06/2016 04:13:43 PM,900 Block of CORBETT AVE,San Francisco,94131,B06,24,5374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Twin Peaks,"(37.7511253671014, -122.443835939422)",160972512-AM10 +152073423,53,15079048,Medical Incident,07/26/2015,07/26/2015,07/26/2015 08:43:26 PM,07/26/2015 08:43:34 PM,07/26/2015 08:43:49 PM,07/26/2015 08:47:48 PM,07/26/2015 08:47:48 PM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,Against Medical Advice,07/26/2015 09:44:31 PM,1500 Block of LARKIN ST,San Francisco,94109,B04,41,1634,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7921398324466, -122.419380098357)",152073423-53 +160960368,52,16037884,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:05:39 AM,04/05/2016 05:07:18 AM,04/05/2016 05:07:59 AM,04/05/2016 05:08:09 AM,04/05/2016 05:16:54 AM,04/05/2016 05:31:55 AM,04/05/2016 05:36:47 AM,Code 2 Transport,04/05/2016 05:55:11 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160960368-52 +160970250,79,16038266,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:46:08 AM,04/06/2016 02:47:47 AM,04/06/2016 02:47:57 AM,04/06/2016 02:48:05 AM,04/06/2016 03:02:42 AM,04/06/2016 03:02:47 AM,04/06/2016 03:13:20 AM,Code 2 Transport,04/06/2016 03:37:07 AM,100 Block of VAN NESS AVE,San Francisco,94102,B02,36,3166,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7768524577717, -122.419455012102)",160970250-79 +160971973,AM14,16038419,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:52:00 PM,04/06/2016 12:52:00 PM,04/06/2016 12:52:27 PM,04/06/2016 12:53:03 PM,04/06/2016 12:59:09 PM,04/06/2016 01:16:58 PM,04/06/2016 01:39:27 PM,Code 2 Transport,04/06/2016 02:10:02 PM,1100 Block of BATTERY ST,San Francisco,94111,B01,13,1153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8018540856955, -122.401636127625)",160971973-AM14 +152623143,B01,15100312,Alarms,09/19/2015,09/19/2015,09/19/2015 06:24:26 PM,09/19/2015 06:26:21 PM,09/19/2015 06:26:30 PM,09/19/2015 06:27:43 PM,09/19/2015 06:31:30 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Fire,09/19/2015 06:44:19 PM,200 Block of GREEN ST,San Francisco,94111,B01,28,1226,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8001897775591, -122.403986863773)",152623143-B01 +150431839,KM09,15016719,Medical Incident,02/12/2015,02/12/2015,02/12/2015 01:01:12 PM,02/12/2015 01:02:10 PM,02/12/2015 01:05:05 PM,02/12/2015 01:05:33 PM,02/12/2015 01:16:44 PM,02/12/2015 01:40:23 PM,02/12/2015 02:05:14 PM,Code 2 Transport,02/12/2015 02:38:28 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",150431839-KM09 +160950045,AM20,16037472,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:29:35 AM,04/04/2016 12:29:35 AM,04/04/2016 12:30:19 AM,04/04/2016 12:31:20 AM,04/04/2016 12:41:17 AM,04/04/2016 01:04:55 AM,04/04/2016 01:11:24 AM,Code 3 Transport,04/04/2016 02:05:34 AM,20TH AV/ULLOA ST,San Francisco,94116,B08,40,7434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7411382289161, -122.4766300481)",160950045-AM20 +161010783,55,16040101,Medical Incident,04/10/2016,04/09/2016,04/10/2016 07:26:38 AM,04/10/2016 07:26:38 AM,04/10/2016 07:27:11 AM,04/10/2016 07:27:21 AM,04/10/2016 07:33:34 AM,04/10/2016 07:45:18 AM,04/10/2016 08:12:41 AM,Code 2 Transport,04/10/2016 09:00:03 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,01,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",161010783-55 +151041440,E14,15039320,Medical Incident,04/14/2015,04/14/2015,04/14/2015 11:50:34 AM,04/14/2015 11:51:08 AM,04/14/2015 11:51:33 AM,04/14/2015 11:53:01 AM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Code 2 Transport,04/14/2015 11:56:20 AM,500 Block of 24TH AVE,San Francisco,94121,B07,14,7213,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7791817647436, -122.483524577803)",151041440-E14 +153400182,62,15130681,Medical Incident,12/06/2015,12/05/2015,12/06/2015 12:57:35 AM,12/06/2015 12:59:30 AM,12/06/2015 12:59:45 AM,12/06/2015 01:03:11 AM,12/06/2015 01:06:52 AM,12/06/2015 01:28:07 AM,12/06/2015 01:38:55 AM,Code 2 Transport,12/06/2015 02:33:30 AM,3RD ST/HARRISON ST,San Francisco,94107,B03,8,2175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7825535920508, -122.397385539895)",153400182-62 +150350617,E22,15013375,Medical Incident,02/04/2015,02/03/2015,02/04/2015 07:03:20 AM,02/04/2015 07:05:44 AM,02/04/2015 07:05:55 AM,02/04/2015 07:08:25 AM,02/04/2015 07:10:32 AM,04/25/2016 01:12:27 PM,04/25/2016 01:12:27 PM,Code 2 Transport,02/04/2015 07:23:22 AM,LINCOLN WY/10TH AV,San Francisco,94122,B08,22,7333,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,5,Golden Gate Park,"(37.7658772470031, -122.467515104486)",150350617-E22 +160932308,AM10,16036925,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:50:26 PM,04/02/2016 03:50:26 PM,04/02/2016 03:50:31 PM,04/02/2016 03:52:08 PM,04/02/2016 03:54:10 PM,04/02/2016 04:09:19 PM,04/02/2016 04:30:59 PM,Code 2 Transport,04/02/2016 05:29:14 PM,500 Block of JESSIE ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7810630578351, -122.409767402824)",160932308-AM10 +141020275,E33,14034520,Medical Incident,04/12/2014,04/12/2014,04/12/2014 05:08:02 PM,04/12/2014 05:08:37 PM,04/12/2014 05:09:02 PM,04/12/2014 05:10:51 PM,04/12/2014 05:12:58 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Code 2 Transport,04/12/2014 05:18:21 PM,0 Block of LOBOS ST,SAN FRANCISCO,94112,B09,33,8372,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7148604733878, -122.454263242717)",141020275-E33 +160990394,89,16039187,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:57:53 AM,04/08/2016 04:57:53 AM,04/08/2016 04:58:27 AM,04/08/2016 04:58:36 AM,04/08/2016 05:05:24 AM,04/08/2016 05:20:37 AM,04/08/2016 05:33:26 AM,Code 2 Transport,04/08/2016 05:52:47 AM,1500 Block of DIVISADERO ST,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7840751928704, -122.439752776223)",160990394-89 +151550256,E18,15058958,Medical Incident,06/04/2015,06/03/2015,06/04/2015 02:41:11 AM,06/04/2015 02:43:15 AM,06/04/2015 02:43:47 AM,06/04/2015 02:45:51 AM,06/04/2015 02:49:10 AM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,Code 2 Transport,06/04/2015 03:00:39 AM,1300 Block of 41ST AVE,San Francisco,94122,B08,23,7631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7615947612234, -122.500563667351)",151550256-E18 +152742555,E07,15104967,Structure Fire,10/01/2015,10/01/2015,10/01/2015 03:46:28 PM,10/01/2015 03:46:28 PM,10/01/2015 03:46:52 PM,10/01/2015 03:47:28 PM,10/01/2015 03:49:30 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Fire,10/01/2015 03:50:07 PM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",152742555-E07 +142493104,76,14086928,Medical Incident,09/06/2014,09/06/2014,09/06/2014 07:37:02 PM,09/06/2014 07:38:06 PM,09/06/2014 07:38:18 PM,09/06/2014 07:38:32 PM,09/06/2014 07:47:38 PM,09/06/2014 08:01:26 PM,09/06/2014 08:28:13 PM,Code 2 Transport,09/06/2014 08:52:56 PM,700 Block of SUTTER ST,San Francisco,94109,B01,3,1463,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7887571187597, -122.412724440796)",142493104-76 +152131913,T17,15081130,Structure Fire,08/01/2015,08/01/2015,08/01/2015 01:54:08 PM,08/01/2015 01:55:28 PM,08/01/2015 01:55:34 PM,08/01/2015 01:57:07 PM,08/01/2015 01:59:17 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Fire,08/01/2015 02:08:23 PM,1400 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7232705740351, -122.393808114504)",152131913-T17 +150652442,E03,15024894,Medical Incident,03/06/2015,03/06/2015,03/06/2015 02:48:22 PM,03/06/2015 02:48:22 PM,03/06/2015 02:49:18 PM,03/06/2015 02:50:58 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Code 2 Transport,03/06/2015 02:58:39 PM,700 Block of TAYLOR ST,San Francisco,94109,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7892649467456, -122.412049085376)",150652442-E03 +160983539,KM03,16039096,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:19:43 PM,04/07/2016 08:20:06 PM,04/07/2016 08:20:22 PM,04/07/2016 08:20:41 PM,04/07/2016 08:31:38 PM,04/07/2016 08:39:10 PM,04/07/2016 08:49:34 PM,Code 2 Transport,04/07/2016 09:18:38 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160983539-KM03 +152471481,76,15094178,Medical Incident,09/04/2015,09/04/2015,09/04/2015 11:08:25 AM,09/04/2015 11:09:34 AM,09/04/2015 11:09:49 AM,09/04/2015 11:09:55 AM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Other,09/04/2015 11:11:55 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",152471481-76 +150243130,E17,15009458,Medical Incident,01/24/2015,01/24/2015,01/24/2015 09:13:00 PM,01/24/2015 09:14:29 PM,01/24/2015 09:14:48 PM,01/24/2015 09:17:04 PM,01/24/2015 09:19:58 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Code 2 Transport,01/24/2015 09:30:17 PM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7352738344938, -122.391413470729)",150243130-E17 +143002147,T19,14105949,Other,10/27/2014,10/27/2014,10/27/2014 02:41:44 PM,10/27/2014 02:42:07 PM,10/27/2014 02:43:35 PM,10/27/2014 02:44:32 PM,10/27/2014 02:46:51 PM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Fire,10/27/2014 03:06:56 PM,1500 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8815,3,3,3,false,Alarm,1,TRUCK,1,8,7,Sunset/Parkside,"(37.7307930146473, -122.48752297277)",143002147-T19 +141050217,RC1,14035443,Medical Incident,04/15/2014,04/15/2014,04/15/2014 02:22:57 PM,04/15/2014 02:24:35 PM,04/15/2014 02:29:12 PM,04/15/2014 02:29:12 PM,04/15/2014 02:32:09 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 03:05:06 PM,700 Block of CLAY ST,SAN FRANCISCO,94108,B01,13,1313,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,1,3,Chinatown,"(37.794250188811, -122.405973153434)",141050217-RC1 +151600205,E06,15060996,Medical Incident,06/09/2015,06/08/2015,06/09/2015 02:29:57 AM,06/09/2015 02:30:27 AM,06/09/2015 02:30:52 AM,06/09/2015 02:31:29 AM,06/09/2015 02:37:51 AM,06/09/2015 02:39:42 AM,04/25/2016 01:10:06 PM,Code 3 Transport,06/09/2015 02:55:35 AM,VALENCIA ST/15TH ST,San Francisco,94103,B02,6,5226,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7665395771344, -122.422043813368)",151600205-E06 +150950894,60,15036024,Medical Incident,04/05/2015,04/05/2015,04/05/2015 09:19:45 AM,04/05/2015 09:22:13 AM,04/05/2015 09:22:27 AM,04/05/2015 09:22:44 AM,04/05/2015 09:38:16 AM,04/05/2015 09:53:47 AM,04/05/2015 10:18:28 AM,Code 2 Transport,04/05/2015 10:56:47 AM,100 Block of KISKA RD,San Francisco,94124,B10,17,6625,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7301576924252, -122.375989158092)",150950894-60 +143433746,75,14122107,Medical Incident,12/09/2014,12/09/2014,12/09/2014 08:16:18 PM,12/09/2014 08:17:51 PM,12/09/2014 08:18:11 PM,12/09/2014 08:18:30 PM,12/09/2014 08:29:39 PM,12/09/2014 08:59:53 PM,12/09/2014 09:17:54 PM,Code 2 Transport,12/09/2014 09:45:06 PM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",143433746-75 +160931656,62,16036846,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:39:45 PM,04/02/2016 12:40:20 PM,04/02/2016 12:41:29 PM,04/02/2016 12:41:36 PM,04/02/2016 12:47:19 PM,04/02/2016 01:07:20 PM,04/02/2016 01:32:45 PM,Code 2 Transport,04/02/2016 02:08:07 PM,400 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160931656-62 +160973990,KM03,16038646,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 08:07:26 PM,04/06/2016 08:09:08 PM,04/06/2016 08:09:29 PM,04/06/2016 08:10:13 PM,04/06/2016 08:17:18 PM,04/06/2016 08:39:07 PM,04/06/2016 08:59:07 PM,Code 2 Transport,04/06/2016 09:28:51 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160973990-KM03 +160982380,52,16038975,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:58:34 PM,04/07/2016 03:00:07 PM,04/07/2016 03:00:21 PM,04/07/2016 03:00:59 PM,04/07/2016 03:06:32 PM,04/07/2016 03:18:20 PM,04/07/2016 03:33:32 PM,Code 2 Transport,04/07/2016 03:36:23 PM,1300 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",160982380-52 +142071101,54,14071634,Medical Incident,07/26/2014,07/26/2014,07/26/2014 09:53:05 AM,07/26/2014 09:56:02 AM,07/26/2014 09:56:18 AM,07/26/2014 09:56:27 AM,07/26/2014 10:07:35 AM,07/26/2014 10:21:49 AM,07/26/2014 10:29:11 AM,Code 2 Transport,07/26/2014 10:42:00 AM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",142071101-54 +142711802,E03,14095039,Structure Fire,09/28/2014,09/28/2014,09/28/2014 01:46:33 PM,09/28/2014 01:46:33 PM,09/28/2014 01:46:42 PM,09/28/2014 01:47:31 PM,09/28/2014 01:49:15 PM,04/25/2016 01:14:51 PM,04/25/2016 01:14:51 PM,Fire,09/28/2014 01:49:50 PM,VAN NESS AV/GOLDEN GATE AV,San Francisco,94102,B02,36,3164,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",142711802-E03 +141452973,T01,14049927,Citizen Assist / Service Call,05/25/2014,05/25/2014,05/25/2014 08:34:44 PM,05/25/2014 08:37:34 PM,05/25/2014 08:37:47 PM,05/25/2014 08:40:05 PM,05/25/2014 08:42:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Fire,05/25/2014 09:02:49 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141452973-T01 +141763164,E36,14060876,Medical Incident,06/25/2014,06/25/2014,06/25/2014 07:38:07 PM,06/25/2014 07:38:58 PM,06/25/2014 07:39:48 PM,06/25/2014 07:40:59 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Code 2 Transport,06/25/2014 07:44:30 PM,500 Block of GROVE ST,San Francisco,94102,B02,36,3315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7774408255184, -122.425619373234)",141763164-E36 +151880161,58,15071661,Medical Incident,07/07/2015,07/06/2015,07/07/2015 01:23:47 AM,07/07/2015 01:24:19 AM,07/07/2015 01:25:15 AM,07/07/2015 01:25:21 AM,07/07/2015 01:32:31 AM,07/07/2015 01:51:18 AM,07/07/2015 02:03:01 AM,Code 2 Transport,07/07/2015 02:24:31 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",151880161-58 +152463557,E03,15093980,Medical Incident,09/03/2015,09/03/2015,09/03/2015 07:59:34 PM,09/03/2015 07:59:34 PM,09/03/2015 08:00:25 PM,09/03/2015 08:02:39 PM,09/03/2015 08:03:09 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Code 2 Transport,09/03/2015 08:06:22 PM,EDDY ST/CYRIL MAGNIN ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",152463557-E03 +141522283,E31,14052284,Medical Incident,06/01/2014,06/01/2014,06/01/2014 05:37:01 PM,06/01/2014 05:39:31 PM,06/01/2014 05:41:13 PM,06/01/2014 05:42:25 PM,06/01/2014 05:44:34 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Code 2 Transport,06/01/2014 06:37:44 PM,400 Block of 10TH AVE,San Francisco,94118,B07,31,7135,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7798628073822, -122.468425980116)",141522283-E31 +152661600,B10,15101831,Alarms,09/23/2015,09/23/2015,09/23/2015 11:41:57 AM,09/23/2015 11:43:11 AM,09/23/2015 11:43:25 AM,09/23/2015 11:43:42 AM,09/23/2015 11:46:52 AM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,No Merit,09/23/2015 11:56:01 AM,100 Block of NAPOLEON ST,San Francisco,94124,B10,9,6422,3,3,3,false,Alarm,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7469874361298, -122.399147231229)",152661600-B10 +141280636,E01,14043398,Medical Incident,05/08/2014,05/07/2014,05/08/2014 07:43:52 AM,05/08/2014 07:46:16 AM,05/08/2014 07:48:01 AM,05/08/2014 07:50:03 AM,05/08/2014 08:01:15 AM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 08:14:28 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",141280636-E01 +161002401,AM12,16039852,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:13:52 PM,04/09/2016 05:15:12 PM,04/09/2016 05:15:35 PM,04/09/2016 05:16:25 PM,04/09/2016 05:20:51 PM,04/09/2016 05:29:21 PM,04/09/2016 05:51:43 PM,Code 2 Transport,04/09/2016 06:18:16 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",161002401-AM12 +152771077,E12,15106148,Medical Incident,10/04/2015,10/04/2015,10/04/2015 09:29:38 AM,10/04/2015 09:29:49 AM,10/04/2015 09:31:18 AM,10/04/2015 09:31:38 AM,10/04/2015 09:32:41 AM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Code 2 Transport,10/04/2015 09:42:36 AM,HAIGHT ST/COLE ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",152771077-E12 +160953087,76,16037739,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:04:57 PM,04/04/2016 06:05:19 PM,04/04/2016 06:05:45 PM,04/04/2016 06:05:53 PM,04/04/2016 06:13:14 PM,04/04/2016 06:31:54 PM,04/04/2016 06:54:39 PM,Code 2 Transport,04/04/2016 08:01:36 PM,1400 Block of HAMPSHIRE ST,San Francisco,94110,B06,9,5616,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7493153346241, -122.406755512994)",160953087-76 +141692006,KM04,14058379,Medical Incident,06/18/2014,06/18/2014,06/18/2014 02:50:08 PM,06/18/2014 02:53:07 PM,06/18/2014 02:53:24 PM,06/18/2014 02:54:14 PM,06/18/2014 02:59:02 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,No Merit,06/18/2014 03:07:31 PM,400 Block of LINDEN ST,San Francisco,94102,B02,36,3314,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7761535059822, -122.425377177116)",141692006-KM04 +150452124,E05,15017541,Medical Incident,02/14/2015,02/14/2015,02/14/2015 03:08:34 PM,02/14/2015 03:08:34 PM,02/14/2015 03:08:34 PM,02/14/2015 03:08:34 PM,02/14/2015 03:08:34 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Code 2 Transport,02/14/2015 03:29:54 PM,1400 Block of FILLMORE ST,San Francisco,94115,B04,5,3536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",150452124-E05 +160961546,61,16037986,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:50:16 AM,04/05/2016 11:52:17 AM,04/05/2016 11:52:45 AM,04/05/2016 11:52:53 AM,04/05/2016 11:57:27 AM,04/05/2016 12:08:15 PM,04/05/2016 12:18:21 PM,Code 2 Transport,04/05/2016 12:54:53 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",160961546-61 +142070672,E36,14071602,Structure Fire,07/26/2014,07/25/2014,07/26/2014 05:40:29 AM,07/26/2014 05:42:43 AM,07/26/2014 05:42:58 AM,07/26/2014 05:46:09 AM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,Fire,07/26/2014 07:35:22 AM,1400 Block of MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,false,Alarm,1,ENGINE,10,2,6,South of Market,"(37.7759986613945, -122.418004260708)",142070672-E36 +150300626,AM24,15011467,Medical Incident,01/30/2015,01/29/2015,01/30/2015 07:05:32 AM,01/30/2015 07:05:32 AM,01/30/2015 07:06:04 AM,01/30/2015 07:07:33 AM,01/30/2015 07:12:08 AM,01/30/2015 07:26:04 AM,01/30/2015 07:52:09 AM,Code 2 Transport,01/30/2015 08:26:31 AM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",150300626-AM24 +151942158,E10,15074051,Alarms,07/13/2015,07/13/2015,07/13/2015 02:40:33 PM,07/13/2015 02:41:12 PM,07/13/2015 02:41:24 PM,07/13/2015 02:43:23 PM,07/13/2015 02:44:53 PM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,Fire,07/13/2015 02:52:45 PM,3400 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4422,3,3,3,true,Alarm,1,ENGINE,2,4,2,Presidio Heights,"(37.7878174923685, -122.449468699027)",151942158-E10 +151933763,E31,15073834,Medical Incident,07/12/2015,07/12/2015,07/12/2015 11:01:16 PM,07/12/2015 11:02:37 PM,07/12/2015 11:02:55 PM,07/12/2015 11:04:02 PM,07/12/2015 11:06:06 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/12/2015 11:17:23 PM,400 Block of 14TH AVE,San Francisco,94118,B07,31,7146,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7796642527316, -122.472845331016)",151933763-E31 +152713528,T12,15103948,Structure Fire,09/28/2015,09/28/2015,09/28/2015 09:17:06 PM,09/28/2015 09:17:06 PM,09/28/2015 09:17:23 PM,09/28/2015 09:18:54 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Fire,09/28/2015 09:19:43 PM,STANYAN ST/FREDERICK ST,San Francisco,94117,B05,12,4551,3,3,3,false,Alarm,1,TRUCK,2,5,5,Haight Ashbury,"(37.766374073924, -122.452947033535)",152713528-T12 +160983093,KM05,16039054,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:09:46 PM,04/07/2016 06:11:21 PM,04/07/2016 06:11:54 PM,04/07/2016 06:12:35 PM,04/07/2016 06:23:15 PM,04/07/2016 06:39:11 PM,04/07/2016 07:21:06 PM,Code 2 Transport,04/07/2016 07:36:08 PM,100 Block of KING ST,San Francisco,94107,B03,8,2154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",160983093-KM05 +151003958,57,15038065,Medical Incident,04/10/2015,04/10/2015,04/10/2015 11:50:49 PM,04/10/2015 11:50:49 PM,04/10/2015 11:51:39 PM,04/10/2015 11:52:04 PM,04/10/2015 11:56:44 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Patient Declined Transport,04/11/2015 12:29:37 AM,4800 Block of GEARY BLVD,San Francisco,94118,B07,31,7146,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7808276804129, -122.471256466777)",151003958-57 +160993799,78,16039503,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:07:51 PM,04/08/2016 10:07:51 PM,04/08/2016 10:16:04 PM,04/08/2016 10:16:14 PM,04/08/2016 10:29:36 PM,04/08/2016 10:47:01 PM,04/08/2016 10:56:53 PM,Code 2 Transport,04/08/2016 11:44:07 PM,0 Block of DORMAN AV,San Francisco,94124,B10,9,6426,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7397311188141, -122.402879180629)",160993799-78 +152482992,79,15094782,Medical Incident,09/05/2015,09/05/2015,09/05/2015 05:47:36 PM,09/05/2015 05:47:36 PM,09/05/2015 05:48:04 PM,09/05/2015 05:48:13 PM,09/05/2015 06:01:32 PM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Patient Declined Transport,09/05/2015 06:07:47 PM,1400 Block of HAMPSHIRE ST,San Francisco,94110,B10,9,2624,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Mission,"(37.749358536947, -122.406628311526)",152482992-79 +160931220,54,16036799,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:35:40 AM,04/02/2016 10:35:40 AM,04/02/2016 10:55:55 AM,04/02/2016 10:55:55 AM,04/02/2016 10:59:48 AM,04/02/2016 10:59:51 AM,04/02/2016 11:14:41 AM,Code 2 Transport,04/02/2016 11:33:47 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160931220-54 +142632528,87,14092081,Structure Fire,09/20/2014,09/20/2014,09/20/2014 05:09:59 PM,09/20/2014 05:10:36 PM,09/20/2014 05:10:47 PM,09/20/2014 05:10:56 PM,09/20/2014 05:15:21 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Fire,09/20/2014 05:20:02 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,3,3,3,true,Alarm,1,MEDIC,6,5,8,Castro/Upper Market,"(37.7623242063084, -122.43565391414)",142632528-87 +160950923,AM08,16037558,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:16:15 AM,04/04/2016 09:18:25 AM,04/04/2016 09:18:42 AM,04/04/2016 09:20:02 AM,04/04/2016 09:23:35 AM,04/04/2016 09:49:52 AM,04/04/2016 10:01:10 AM,Code 3 Transport,04/04/2016 10:33:34 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",160950923-AM08 +152271327,KM02,15086497,Medical Incident,08/15/2015,08/15/2015,08/15/2015 10:16:07 AM,08/15/2015 10:17:27 AM,08/15/2015 10:18:10 AM,08/15/2015 10:19:01 AM,08/15/2015 10:27:24 AM,08/15/2015 10:32:43 AM,08/15/2015 10:37:20 AM,Code 2 Transport,08/15/2015 10:51:53 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",152271327-KM02 +151792237,T18,15068279,Alarms,06/28/2015,06/28/2015,06/28/2015 02:57:24 PM,06/28/2015 02:58:40 PM,06/28/2015 02:58:46 PM,06/28/2015 03:00:55 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 03:14:57 PM,1300 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,3,3,3,false,Alarm,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7427831125622, -122.480509766994)",151792237-T18 +160980606,AM02,16038791,Medical Incident,04/07/2016,04/06/2016,04/07/2016 06:43:46 AM,04/07/2016 06:45:55 AM,04/07/2016 06:46:59 AM,04/07/2016 06:47:10 AM,04/07/2016 06:55:18 AM,04/07/2016 07:00:03 AM,04/07/2016 07:17:25 AM,Code 2 Transport,04/07/2016 07:46:48 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160980606-AM02 +152703668,65,15103635,Medical Incident,09/27/2015,09/27/2015,09/27/2015 11:20:05 PM,09/27/2015 11:20:05 PM,09/27/2015 11:20:05 PM,09/27/2015 11:20:05 PM,09/27/2015 11:20:05 PM,09/27/2015 11:20:21 PM,09/27/2015 11:20:32 PM,Code 2 Transport,09/27/2015 11:50:11 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B99,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",152703668-65 +143581145,T03,14128084,Alarms,12/24/2014,12/24/2014,12/24/2014 10:44:24 AM,12/24/2014 10:46:04 AM,12/24/2014 10:46:11 AM,12/24/2014 10:46:48 AM,12/24/2014 10:49:11 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/24/2014 11:00:27 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",143581145-T03 +141691348,KM14,14058314,Medical Incident,06/18/2014,06/18/2014,06/18/2014 11:45:48 AM,06/18/2014 11:46:53 AM,06/18/2014 11:48:04 AM,06/18/2014 11:48:45 AM,06/18/2014 12:01:46 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Patient Declined Transport,06/18/2014 12:32:34 PM,100 Block of JULES AVE,San Francisco,94112,B09,15,8463,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209248245928, -122.461168962553)",141691348-KM14 +150092278,56,15003626,Medical Incident,01/09/2015,01/09/2015,01/09/2015 03:54:25 PM,01/09/2015 03:55:05 PM,01/09/2015 03:55:39 PM,01/09/2015 03:55:56 PM,01/09/2015 04:03:34 PM,01/09/2015 04:13:56 PM,01/09/2015 04:26:08 PM,Code 2 Transport,01/09/2015 05:11:12 PM,1500 Block of STOCKTON ST,San Francisco,94133,B01,28,1334,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.799975359605, -122.40903359976)",150092278-56 +160921595,85,16036432,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:35:08 PM,04/01/2016 12:36:29 PM,04/01/2016 12:37:04 PM,04/01/2016 12:37:14 PM,04/01/2016 12:43:26 PM,04/01/2016 12:54:48 PM,04/01/2016 01:26:47 PM,Code 2 Transport,04/01/2016 03:02:53 PM,0 Block of FREMONT ST,San Francisco,94105,B03,35,2126,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7911273215916, -122.397428020134)",160921595-85 +150123263,E05,15004897,Medical Incident,01/12/2015,01/12/2015,01/12/2015 08:01:28 PM,01/12/2015 08:02:39 PM,01/12/2015 08:03:03 PM,01/12/2015 08:03:51 PM,01/12/2015 08:05:49 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Code 2 Transport,01/12/2015 08:12:50 PM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",150123263-E05 +143460895,RS1,14123244,Medical Incident,12/12/2014,12/12/2014,12/12/2014 09:04:35 AM,12/12/2014 09:05:44 AM,12/12/2014 09:06:39 AM,12/12/2014 09:08:03 AM,12/12/2014 09:11:34 AM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Code 2 Transport,12/12/2014 09:21:44 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7786852295711, -122.405938165868)",143460895-RS1 +150061399,KM07,15002249,Medical Incident,01/06/2015,01/06/2015,01/06/2015 11:36:36 AM,01/06/2015 11:36:36 AM,01/06/2015 11:36:50 AM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Cancelled,01/06/2015 11:42:36 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",150061399-KM07 +143001173,E05,14105866,Alarms,10/27/2014,10/27/2014,10/27/2014 10:34:58 AM,10/27/2014 10:35:15 AM,10/27/2014 10:35:49 AM,10/27/2014 10:37:32 AM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Fire,10/27/2014 10:39:43 AM,1500 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,4134,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",143001173-E05 +141160186,93,14039161,Medical Incident,04/26/2014,04/26/2014,04/26/2014 12:33:48 PM,04/26/2014 12:36:16 PM,04/26/2014 12:36:41 PM,04/26/2014 12:37:29 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Other,04/26/2014 12:40:06 PM,200 Block of VALENCIA ST,SAN FRANCISCO,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7690117510129, -122.422352223863)",141160186-93 +141941251,E38,14067259,Traffic Collision,07/13/2014,07/13/2014,07/13/2014 11:30:34 AM,07/13/2014 11:30:34 AM,07/13/2014 11:30:34 AM,07/13/2014 11:30:34 AM,07/13/2014 11:30:34 AM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Code 2 Transport,07/13/2014 11:46:13 AM,MARINA BL/LAGUNA ST,San Francisco,94123,B04,16,3452,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8051995453814, -122.432090718256)",141941251-E38 +152472558,83,15094297,Medical Incident,09/04/2015,09/04/2015,09/04/2015 03:18:38 PM,09/04/2015 03:20:21 PM,09/04/2015 03:20:58 PM,09/04/2015 03:21:06 PM,09/04/2015 03:25:17 PM,09/04/2015 03:38:29 PM,09/04/2015 03:52:52 PM,Code 2 Transport,09/04/2015 04:11:53 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.781960649289, -122.402224095303)",152472558-83 +141560325,84,14053543,Medical Incident,06/05/2014,06/04/2014,06/05/2014 04:28:46 AM,06/05/2014 04:28:46 AM,06/05/2014 04:30:16 AM,06/05/2014 04:30:29 AM,06/05/2014 04:45:33 AM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Patient Declined Transport,06/05/2014 05:18:48 AM,600 Block of STOCKTON ST,San Francisco,94108,B01,2,1325,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",141560325-84 +150133494,E17,15005322,Medical Incident,01/13/2015,01/13/2015,01/13/2015 08:30:35 PM,01/13/2015 08:32:01 PM,01/13/2015 08:32:58 PM,01/13/2015 08:34:31 PM,01/13/2015 08:36:46 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Code 2 Transport,01/13/2015 08:50:56 PM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7331435009212, -122.380990356551)",150133494-E17 +153302668,E03,15127173,Alarms,11/26/2015,11/26/2015,11/26/2015 09:33:55 PM,11/26/2015 09:35:49 PM,11/26/2015 09:36:15 PM,11/26/2015 09:37:13 PM,11/26/2015 09:39:27 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,Fire,11/26/2015 09:44:37 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",153302668-E03 +153433147,T08,15132132,Alarms,12/09/2015,12/09/2015,12/09/2015 06:03:31 PM,12/09/2015 06:04:52 PM,12/09/2015 06:05:10 PM,12/09/2015 06:06:44 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 06:10:58 PM,400 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7858304242786, -122.392540509238)",153433147-T08 +142550225,E19,14088884,Structure Fire,09/12/2014,09/11/2014,09/12/2014 01:55:38 AM,09/12/2014 01:56:56 AM,09/12/2014 01:57:15 AM,09/12/2014 01:58:36 AM,09/12/2014 02:02:22 AM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Fire,09/12/2014 02:14:20 AM,200 Block of LAKESHORE DR,San Francisco,94132,B08,19,8832,3,3,3,true,Alarm,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7305733491665, -122.497476010183)",142550225-E19 +160971055,89,16038343,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:27:16 AM,04/06/2016 09:28:57 AM,04/06/2016 09:30:50 AM,04/06/2016 09:37:06 AM,04/06/2016 09:59:13 AM,04/06/2016 09:59:14 AM,04/06/2016 10:29:03 AM,Code 2 Transport,04/06/2016 11:26:48 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160971055-89 +152740322,E32,15104752,Medical Incident,10/01/2015,09/30/2015,10/01/2015 02:48:34 AM,10/01/2015 02:49:17 AM,10/01/2015 02:49:54 AM,10/01/2015 02:51:44 AM,10/01/2015 02:52:35 AM,10/01/2015 03:24:14 AM,10/01/2015 03:24:14 AM,Code 3 Transport,10/01/2015 03:51:01 AM,0 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.737355217845, -122.424854520466)",152740322-E32 +161000222,78,16039582,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:24:48 AM,04/09/2016 01:28:10 AM,04/09/2016 01:29:07 AM,04/09/2016 01:29:14 AM,04/09/2016 01:39:07 AM,04/09/2016 01:54:22 AM,04/09/2016 02:12:27 AM,Code 2 Transport,04/09/2016 02:53:32 AM,JULIA ST/MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.778045328738, -122.41241334498)",161000222-78 +141170009,E09,14039356,Alarms,04/27/2014,04/26/2014,04/27/2014 12:35:08 AM,04/27/2014 12:36:40 AM,04/27/2014 12:36:46 AM,04/27/2014 12:38:13 AM,04/27/2014 12:40:31 AM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/27/2014 12:47:53 AM,500 Block of BARNEVELD AVE,SAN FRANCISCO,94124,B10,9,6427,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.74044593571, -122.404296869791)",141170009-E09 +152282949,AP,15087106,Other,08/16/2015,08/16/2015,08/16/2015 06:23:12 PM,08/16/2015 06:23:12 PM,08/16/2015 06:23:12 PM,08/16/2015 06:23:12 PM,08/16/2015 06:23:12 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Fire,08/16/2015 06:23:12 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",152282949-AP +142600338,T01,14090723,Structure Fire,09/17/2014,09/16/2014,09/17/2014 04:19:24 AM,09/17/2014 04:19:24 AM,09/17/2014 04:19:30 AM,09/17/2014 04:21:50 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 04:22:37 AM,6TH ST/HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",142600338-T01 +142982541,82,14105254,Medical Incident,10/25/2014,10/25/2014,10/25/2014 04:40:37 PM,10/25/2014 04:41:48 PM,10/25/2014 05:11:55 PM,10/25/2014 05:11:55 PM,10/25/2014 05:22:40 PM,10/25/2014 05:26:08 PM,10/25/2014 05:48:11 PM,Code 2 Transport,10/25/2014 06:28:28 PM,700 Block of INNES AVE,San Francisco,94124,B10,25,6663,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7304497726907, -122.372908002511)",142982541-82 +142641442,E18,14092341,Medical Incident,09/21/2014,09/21/2014,09/21/2014 11:51:02 AM,09/21/2014 11:53:54 AM,09/21/2014 11:54:24 AM,09/21/2014 11:56:18 AM,09/21/2014 12:02:40 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Code 2 Transport,09/21/2014 12:02:52 PM,GREAT HY/NORIEGA ST,San Francisco,94122,B08,23,7725,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7528302279051, -122.508432394418)",142641442-E18 +160923437,76,16036605,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:53:17 PM,04/01/2016 08:55:22 PM,04/01/2016 08:55:37 PM,04/01/2016 08:55:45 PM,04/01/2016 09:00:07 PM,04/01/2016 09:13:21 PM,04/01/2016 09:25:47 PM,Code 2 Transport,04/01/2016 09:52:24 PM,400 Block of ILLINOIS ST,San Francisco,94158,B03,4,2374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7656728119264, -122.387971481588)",160923437-76 +143070191,77,14108469,Medical Incident,11/03/2014,11/02/2014,11/03/2014 01:52:16 AM,11/03/2014 01:55:26 AM,11/03/2014 01:55:55 AM,11/03/2014 01:56:10 AM,11/03/2014 01:59:02 AM,11/03/2014 02:10:18 AM,11/03/2014 02:21:18 AM,Code 2 Transport,11/03/2014 02:58:47 AM,HYDE ST/TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",143070191-77 +160971478,KM04,16038374,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:00:41 AM,04/06/2016 11:02:13 AM,04/06/2016 11:03:58 AM,04/06/2016 11:04:32 AM,04/06/2016 11:25:17 AM,04/06/2016 11:39:06 AM,04/06/2016 12:11:40 PM,Code 2 Transport,04/06/2016 12:46:01 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160971478-KM04 +153232657,E42,15124345,Medical Incident,11/19/2015,11/19/2015,11/19/2015 04:17:22 PM,11/19/2015 04:17:22 PM,11/19/2015 04:18:11 PM,11/19/2015 04:19:43 PM,11/19/2015 04:20:25 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Code 2 Transport,11/19/2015 04:32:26 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",153232657-E42 +141920243,E21,14066410,Alarms,07/11/2014,07/10/2014,07/11/2014 01:41:15 AM,07/11/2014 01:42:43 AM,07/11/2014 01:42:47 AM,07/11/2014 01:43:50 AM,07/11/2014 01:45:19 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Fire,07/11/2014 01:49:27 AM,1300 Block of FELL ST,San Francisco,94117,B05,21,4252,3,3,3,false,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7736869919131, -122.440088215983)",141920243-E21 +143021509,E01,14106598,Medical Incident,10/29/2014,10/29/2014,10/29/2014 12:10:30 PM,10/29/2014 12:10:38 PM,10/29/2014 12:10:44 PM,10/29/2014 12:10:57 PM,10/29/2014 12:13:48 PM,04/25/2016 01:14:18 PM,04/25/2016 01:14:18 PM,Code 2 Transport,10/29/2014 12:35:10 PM,MARKET ST/STOCKTON ST,San Francisco,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",143021509-E01 +150660393,E13,15025105,Medical Incident,03/07/2015,03/06/2015,03/07/2015 02:44:08 AM,03/07/2015 02:45:55 AM,03/07/2015 02:46:08 AM,03/07/2015 02:48:59 AM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Code 2 Transport,03/07/2015 02:52:45 AM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",150660393-E13 +160941990,KM02,16037275,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 01:53:22 PM,04/03/2016 01:53:22 PM,04/03/2016 01:53:39 PM,04/03/2016 01:54:31 PM,04/03/2016 01:57:36 PM,04/03/2016 02:26:14 PM,04/03/2016 02:34:27 PM,Code 3 Transport,04/03/2016 03:18:35 PM,5100 Block of MISSION ST,San Francisco,94112,B09,43,6176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7156913862181, -122.441681969143)",160941990-KM02 +161001570,KM08,16039756,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:46:51 PM,04/09/2016 12:48:18 PM,04/09/2016 12:48:36 PM,04/09/2016 12:49:06 PM,04/09/2016 01:18:55 PM,04/09/2016 01:47:31 PM,04/09/2016 01:59:14 PM,Code 2 Transport,04/09/2016 02:24:13 PM,200 Block of ANDERSON ST,San Francisco,94110,B06,32,5731,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7396333437351, -122.415157999099)",161001570-KM08 +150900247,E05,15034161,Medical Incident,03/31/2015,03/30/2015,03/31/2015 02:42:27 AM,03/31/2015 02:43:55 AM,03/31/2015 02:44:29 AM,03/31/2015 02:46:33 AM,03/31/2015 02:47:49 AM,03/31/2015 03:09:22 AM,03/31/2015 03:09:45 AM,Code 3 Transport,03/31/2015 03:13:54 AM,1300 Block of EDDY ST,San Francisco,94115,B05,5,3515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7818007316796, -122.429835978464)",150900247-E05 +150393213,E38,15015330,Medical Incident,02/08/2015,02/08/2015,02/08/2015 07:59:06 PM,02/08/2015 08:02:06 PM,02/08/2015 08:02:27 PM,02/08/2015 08:03:11 PM,02/08/2015 08:04:26 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Patient Declined Transport,02/08/2015 08:10:29 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",150393213-E38 +152532543,E02,15096776,Citizen Assist / Service Call,09/10/2015,09/10/2015,09/10/2015 03:53:39 PM,09/10/2015 03:53:39 PM,09/10/2015 03:55:12 PM,09/10/2015 03:56:12 PM,09/10/2015 04:00:08 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Fire,09/10/2015 04:00:16 PM,900 Block of UNION ST,San Francisco,94133,B01,28,1513,3,3,3,true,Alarm,1,ENGINE,2,1,3,Russian Hill,"(37.7997017701213, -122.414650950077)",152532543-E02 +160921452,79,16036416,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:52:44 AM,04/01/2016 11:54:01 AM,04/01/2016 11:54:28 AM,04/01/2016 11:54:39 AM,04/01/2016 11:59:23 AM,04/01/2016 12:21:37 PM,04/01/2016 12:32:02 PM,Code 2 Transport,04/01/2016 01:15:31 PM,HARRISON ST/16TH ST,San Francisco,94110,B02,29,5217,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7654476102712, -122.413105244954)",160921452-79 +160993130,76,16039428,Citizen Assist / Service Call,04/08/2016,04/08/2016,04/08/2016 06:47:56 PM,04/08/2016 06:50:13 PM,04/08/2016 06:51:35 PM,04/08/2016 06:51:41 PM,04/08/2016 06:59:52 PM,04/08/2016 07:23:46 PM,04/08/2016 07:23:58 PM,Code 2 Transport,04/08/2016 07:36:12 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,true,Alarm,1,MEDIC,2,2,6,Tenderloin,"(37.7844637837491, -122.417824560275)",160993130-76 +160932840,76,16036981,Medical Incident,04/02/2016,04/02/2016,04/02/2016 06:09:50 PM,04/02/2016 06:11:06 PM,04/02/2016 06:12:09 PM,04/02/2016 06:12:16 PM,04/02/2016 06:18:58 PM,04/02/2016 06:38:38 PM,04/02/2016 06:44:31 PM,Code 2 Transport,04/02/2016 07:08:34 PM,TAYLOR ST/TURK ST,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",160932840-76 +152851125,65,15109355,Medical Incident,10/12/2015,10/12/2015,10/12/2015 09:52:08 AM,10/12/2015 09:55:44 AM,10/12/2015 09:56:02 AM,10/12/2015 09:56:09 AM,10/12/2015 10:30:10 AM,10/12/2015 10:40:24 AM,10/12/2015 11:04:43 AM,Code 2 Transport,10/12/2015 11:32:48 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",152851125-65 +142340136,66,14081178,Medical Incident,08/22/2014,08/21/2014,08/22/2014 12:57:43 AM,08/22/2014 01:00:07 AM,08/22/2014 01:00:22 AM,08/22/2014 01:01:07 AM,08/22/2014 01:08:12 AM,08/22/2014 01:22:46 AM,08/22/2014 01:47:08 AM,Code 2 Transport,08/22/2014 02:25:09 AM,OFARRELL ST/CYRIL MAGNIN ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",142340136-66 +142303128,85,14080019,Medical Incident,08/18/2014,08/18/2014,08/18/2014 07:05:20 PM,08/18/2014 07:07:34 PM,08/18/2014 07:08:07 PM,08/18/2014 07:08:26 PM,08/18/2014 07:13:07 PM,08/18/2014 07:32:42 PM,08/18/2014 07:53:16 PM,Code 2 Transport,08/18/2014 08:25:20 PM,100 Block of ONONDAGA AVE,San Francisco,94112,B09,15,8277,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7225996028106, -122.440955205931)",142303128-85 +160943506,KM07,16037438,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:55:36 PM,04/03/2016 09:57:12 PM,04/03/2016 09:57:26 PM,04/03/2016 09:58:16 PM,04/03/2016 10:03:01 PM,04/03/2016 10:18:38 PM,04/03/2016 10:52:49 PM,Code 2 Transport,04/03/2016 11:11:07 PM,200 Block of MADISON ST,San Francisco,94134,B09,43,6153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7259789357251, -122.422657178254)",160943506-KM07 +152861605,AM04,15109826,Medical Incident,10/13/2015,10/13/2015,10/13/2015 11:38:46 AM,10/13/2015 11:40:44 AM,10/13/2015 11:41:41 AM,10/13/2015 11:46:58 AM,10/13/2015 11:46:58 AM,10/13/2015 12:20:40 PM,10/13/2015 12:45:52 PM,Code 2 Transport,10/13/2015 01:25:09 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",152861605-AM04 +160974536,81,16038706,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:50:49 PM,04/06/2016 10:52:55 PM,04/06/2016 10:53:07 PM,04/06/2016 10:53:16 PM,04/06/2016 11:24:39 PM,04/06/2016 11:26:41 PM,04/07/2016 12:12:18 AM,Code 2 Transport,04/07/2016 12:26:19 AM,100 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7727916205308, -122.424624269709)",160974536-81 +142662212,E29,14093144,Medical Incident,09/23/2014,09/23/2014,09/23/2014 03:04:16 PM,09/23/2014 03:06:04 PM,09/23/2014 03:06:25 PM,09/23/2014 03:07:09 PM,09/23/2014 03:13:02 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Code 2 Transport,09/23/2014 03:40:06 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",142662212-E29 +153441354,E09,15132382,Traffic Collision,12/10/2015,12/10/2015,12/10/2015 10:43:15 AM,12/10/2015 10:44:44 AM,12/10/2015 10:45:45 AM,12/10/2015 10:46:51 AM,12/10/2015 10:56:59 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Patient Declined Transport,12/10/2015 11:22:33 AM,100 Block of 9TH ST,San Francisco,94103,B10,9,6375,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7760543061938, -122.414393004759)",153441354-E09 +150773755,58,15029685,Medical Incident,03/18/2015,03/18/2015,03/18/2015 09:13:07 PM,03/18/2015 09:14:09 PM,03/18/2015 09:15:32 PM,03/18/2015 09:15:59 PM,03/18/2015 09:19:08 PM,03/18/2015 09:36:06 PM,03/18/2015 09:58:41 PM,Code 2 Transport,03/18/2015 10:09:50 PM,1200 Block of 15TH AVE,San Francisco,94122,B08,22,7366,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7646998273343, -122.472787133735)",150773755-58 +152432233,74,15092738,Medical Incident,08/31/2015,08/31/2015,08/31/2015 02:43:26 PM,08/31/2015 02:45:33 PM,08/31/2015 02:45:49 PM,08/31/2015 02:45:59 PM,08/31/2015 02:52:06 PM,08/31/2015 03:16:05 PM,08/31/2015 03:23:52 PM,Code 2 Transport,08/31/2015 03:39:50 PM,900 Block of HAIGHT ST,San Francisco,94117,B05,21,4246,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7712162010371, -122.437888283036)",152432233-74 +160974642,88,16038718,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:30:24 PM,04/06/2016 11:31:22 PM,04/06/2016 11:31:44 PM,04/06/2016 11:33:35 PM,04/06/2016 11:36:52 PM,04/06/2016 11:50:28 PM,04/07/2016 12:06:25 AM,Code 2 Transport,04/07/2016 12:38:04 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160974642-88 +151712530,77,15065428,Medical Incident,06/20/2015,06/20/2015,06/20/2015 05:33:01 PM,06/20/2015 05:35:50 PM,06/20/2015 05:36:06 PM,06/20/2015 05:36:26 PM,06/20/2015 05:43:55 PM,06/20/2015 05:49:33 PM,06/20/2015 06:11:34 PM,Code 2 Transport,06/20/2015 06:24:22 PM,1000 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",151712530-77 +143391054,E32,14120291,Medical Incident,12/05/2014,12/05/2014,12/05/2014 09:18:13 AM,12/05/2014 09:18:39 AM,12/05/2014 09:19:04 AM,12/05/2014 09:20:50 AM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 09:22:36 AM,0 Block of 30TH ST,San Francisco,94110,B06,32,5575,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7422802041277, -122.42262182889)",143391054-E32 +160930340,56,16036702,Medical Incident,04/02/2016,04/01/2016,04/02/2016 02:21:00 AM,04/02/2016 02:22:22 AM,04/02/2016 02:25:19 AM,04/02/2016 02:25:25 AM,04/02/2016 02:33:52 AM,04/02/2016 02:52:33 AM,04/02/2016 02:58:52 AM,Code 2 Transport,04/02/2016 03:28:25 AM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",160930340-56 +143240220,RC1,14114580,Medical Incident,11/20/2014,11/19/2014,11/20/2014 02:03:37 AM,11/20/2014 02:06:06 AM,11/20/2014 02:07:11 AM,11/20/2014 02:12:56 AM,11/20/2014 02:18:12 AM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Medical Examiner,11/20/2014 02:37:29 AM,TABER PL/JACK LONDON AL,San Francisco,94107,B03,8,2152,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Financial District/South Beach,"(37.7819421101543, -122.394407042244)",143240220-RC1 +150732446,52,15027998,Medical Incident,03/14/2015,03/14/2015,03/14/2015 03:33:09 PM,03/14/2015 03:33:09 PM,03/14/2015 03:35:04 PM,03/14/2015 03:35:14 PM,03/14/2015 03:56:52 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Patient Declined Transport,03/14/2015 04:17:13 PM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7796886144323, -122.408201798882)",150732446-52 +150822640,65,15031452,Medical Incident,03/23/2015,03/23/2015,03/23/2015 05:11:46 PM,03/23/2015 05:11:46 PM,03/23/2015 05:12:56 PM,03/23/2015 05:13:06 PM,03/23/2015 05:13:06 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Against Medical Advice,03/23/2015 06:27:47 PM,4TH ST/HARRISON ST,San Francisco,94107,B03,8,2216,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807914830651, -122.399616233554)",150822640-65 +142950406,66,14103917,Medical Incident,10/22/2014,10/21/2014,10/22/2014 05:07:48 AM,10/22/2014 05:10:24 AM,10/22/2014 05:10:50 AM,10/22/2014 05:11:27 AM,10/22/2014 05:18:33 AM,10/22/2014 05:53:31 AM,10/22/2014 06:13:23 AM,Code 2 Transport,10/22/2014 06:45:44 AM,3700 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7627665130308, -122.429612363376)",142950406-66 +160972232,61,16038448,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:50:46 PM,04/06/2016 01:51:48 PM,04/06/2016 01:52:25 PM,04/06/2016 01:52:34 PM,04/06/2016 01:56:27 PM,04/06/2016 02:12:42 PM,04/06/2016 02:39:32 PM,Code 2 Transport,04/06/2016 03:18:53 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7742496611166, -122.414204535023)",160972232-61 +151601139,76,15061087,Medical Incident,06/09/2015,06/09/2015,06/09/2015 10:34:01 AM,06/09/2015 10:35:05 AM,06/09/2015 10:35:25 AM,06/09/2015 10:35:35 AM,06/09/2015 10:41:04 AM,06/09/2015 10:59:42 AM,06/09/2015 11:14:47 AM,Code 2 Transport,06/09/2015 11:47:46 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",151601139-76 +160961430,81,16037975,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:22:57 AM,04/05/2016 11:25:52 AM,04/05/2016 11:26:14 AM,04/05/2016 11:28:40 AM,04/05/2016 11:41:18 AM,04/05/2016 11:45:27 AM,04/05/2016 12:08:30 PM,Code 2 Transport,04/05/2016 12:43:16 PM,2800 Block of CALIFORNIA ST,San Francisco,94115,B04,10,4233,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.78801561135, -122.441285735387)",160961430-81 +152400853,E39,15091341,Citizen Assist / Service Call,08/28/2015,08/28/2015,08/28/2015 08:06:34 AM,08/28/2015 08:07:40 AM,08/28/2015 08:08:50 AM,08/28/2015 08:09:45 AM,08/28/2015 08:15:50 AM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/28/2015 08:46:46 AM,0 Block of ROSEWOOD DR,San Francisco,94127,B09,39,8541,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7339375362462, -122.46018903916)",152400853-E39 +143452202,KM10,14122908,Medical Incident,12/11/2014,12/11/2014,12/11/2014 02:14:17 PM,12/11/2014 02:15:21 PM,12/11/2014 02:15:59 PM,12/11/2014 02:16:46 PM,12/11/2014 02:23:59 PM,12/11/2014 02:46:14 PM,12/11/2014 03:06:57 PM,Code 2 Transport,12/11/2014 03:41:16 PM,1000 Block of GOLDEN GATE AVE,San Francisco,94115,B02,5,3411,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",143452202-KM10 +151943807,78,15074217,Medical Incident,07/13/2015,07/13/2015,07/13/2015 09:57:30 PM,07/13/2015 09:59:28 PM,07/13/2015 10:00:50 PM,07/13/2015 10:01:35 PM,07/13/2015 10:12:07 PM,07/13/2015 10:30:22 PM,07/13/2015 10:49:12 PM,Code 2 Transport,07/13/2015 11:18:28 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",151943807-78 +153212170,56,15123476,Medical Incident,11/17/2015,11/17/2015,11/17/2015 02:13:16 PM,11/17/2015 02:15:19 PM,11/17/2015 02:17:38 PM,11/17/2015 02:17:38 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 02:24:42 PM,MISSION ST/GRACE ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,6,South of Market,"(37.7756072560706, -122.415484750494)",153212170-56 +151522225,KM02,15057923,Medical Incident,06/01/2015,06/01/2015,06/01/2015 03:32:09 PM,06/01/2015 03:32:09 PM,06/01/2015 03:34:43 PM,06/01/2015 03:35:16 PM,06/01/2015 03:37:37 PM,04/25/2016 01:10:16 PM,04/25/2016 01:10:16 PM,No Merit,06/01/2015 03:38:49 PM,1600 Block of PAGE ST,San Francisco,94117,B05,21,4513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7707784947492, -122.447934641901)",151522225-KM02 +152971207,55,15114002,Medical Incident,10/24/2015,10/24/2015,10/24/2015 10:10:45 AM,10/24/2015 10:13:09 AM,10/24/2015 10:14:17 AM,10/24/2015 10:15:29 AM,10/24/2015 10:27:05 AM,10/24/2015 10:49:10 AM,10/24/2015 11:02:55 AM,Code 2 Transport,10/24/2015 11:50:14 AM,200 Block of LOWELL ST,San Francisco,94112,B09,33,6215,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7089435673907, -122.444958461881)",152971207-55 +151462343,65,15055607,Medical Incident,05/26/2015,05/26/2015,05/26/2015 03:39:35 PM,05/26/2015 03:40:33 PM,05/26/2015 03:41:06 PM,05/26/2015 03:41:19 PM,05/26/2015 03:44:22 PM,05/26/2015 04:17:17 PM,05/26/2015 04:37:30 PM,Code 2 Transport,05/26/2015 05:12:27 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7769455318934, -122.416807079177)",151462343-65 +153212717,E12,15123529,Medical Incident,11/17/2015,11/17/2015,11/17/2015 04:31:45 PM,11/17/2015 04:34:17 PM,11/17/2015 04:35:19 PM,11/17/2015 04:36:11 PM,11/17/2015 04:39:43 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Medical Examiner,11/17/2015 05:14:38 PM,700 Block of 4TH AVE,San Francisco,94118,B07,31,7121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7746781793453, -122.461745676123)",153212717-E12 +142853212,KM11,14100571,Medical Incident,10/12/2014,10/12/2014,10/12/2014 07:07:10 PM,10/12/2014 07:09:30 PM,10/12/2014 07:10:23 PM,10/12/2014 07:12:48 PM,10/12/2014 07:32:20 PM,10/12/2014 07:32:22 PM,10/12/2014 07:48:17 PM,Code 2 Transport,10/12/2014 08:29:11 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",142853212-KM11 +160943138,62,16037395,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:39:30 PM,04/03/2016 07:40:57 PM,04/03/2016 07:41:34 PM,04/03/2016 07:44:54 PM,04/03/2016 07:57:24 PM,04/03/2016 08:16:51 PM,04/03/2016 08:39:39 PM,Code 2 Transport,04/03/2016 09:04:01 PM,0 Block of BEAUMONT AVE,San Francisco,94118,B07,10,4453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7807425792871, -122.455063675296)",160943138-62 +143403136,E28,14120888,Medical Incident,12/06/2014,12/06/2014,12/06/2014 07:25:39 PM,12/06/2014 07:26:02 PM,12/06/2014 07:26:39 PM,12/06/2014 07:27:51 PM,12/06/2014 07:29:04 PM,04/25/2016 01:13:36 PM,04/25/2016 01:13:36 PM,Code 2 Transport,12/06/2014 07:42:45 PM,600 Block of UNION ST,San Francisco,94133,B01,28,1334,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8003260482415, -122.40968720575)",143403136-E28 +152822833,B01,15108344,Alarms,10/09/2015,10/09/2015,10/09/2015 05:24:42 PM,10/09/2015 05:25:47 PM,10/09/2015 05:26:26 PM,10/09/2015 05:28:05 PM,10/09/2015 05:30:38 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Fire,10/09/2015 05:40:35 PM,0 Block of WAVERLY PL,San Francisco,94108,B01,2,1326,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7937477470757, -122.406800604626)",152822833-B01 +150391432,B07,15015162,Alarms,02/08/2015,02/08/2015,02/08/2015 11:07:38 AM,02/08/2015 11:08:52 AM,02/08/2015 11:09:01 AM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/08/2015 11:10:20 AM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,false,Alarm,1,CHIEF,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",150391432-B07 +160930950,75,16036770,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:13:48 AM,04/02/2016 09:13:48 AM,04/02/2016 09:14:21 AM,04/02/2016 09:14:34 AM,04/02/2016 09:23:11 AM,04/02/2016 09:36:41 AM,04/02/2016 09:49:28 AM,Code 2 Transport,04/02/2016 10:24:23 AM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160930950-75 +141712413,E11,14059108,Traffic Collision,06/20/2014,06/20/2014,06/20/2014 04:14:02 PM,06/20/2014 04:16:04 PM,06/20/2014 04:16:16 PM,06/20/2014 04:17:18 PM,06/20/2014 04:18:51 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Code 3 Transport,06/20/2014 04:34:08 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",141712413-E11 +152090930,E07,15079539,Medical Incident,07/28/2015,07/28/2015,07/28/2015 08:45:43 AM,07/28/2015 08:46:37 AM,07/28/2015 08:48:49 AM,07/28/2015 08:50:58 AM,07/28/2015 08:54:17 AM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/28/2015 09:04:04 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",152090930-E07 +151121888,AM02,15042322,Medical Incident,04/22/2015,04/22/2015,04/22/2015 01:03:31 PM,04/22/2015 01:05:08 PM,04/22/2015 01:07:18 PM,04/22/2015 01:08:28 PM,04/22/2015 01:12:58 PM,04/22/2015 01:38:19 PM,04/22/2015 02:10:24 PM,Code 2 Transport,04/22/2015 02:45:49 PM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",151121888-AM02 +150070680,89,15002582,Medical Incident,01/07/2015,01/06/2015,01/07/2015 07:56:21 AM,01/07/2015 07:56:57 AM,01/07/2015 07:57:15 AM,01/07/2015 07:57:55 AM,01/07/2015 08:02:34 AM,01/07/2015 08:11:08 AM,01/07/2015 08:38:17 AM,Code 2 Transport,01/07/2015 08:56:56 AM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7792067028319, -122.402159463556)",150070680-89 +143193346,E31,14113120,Gas Leak (Natural and LP Gases),11/15/2014,11/15/2014,11/15/2014 08:15:13 PM,11/15/2014 08:16:52 PM,11/15/2014 08:17:06 PM,11/15/2014 08:18:40 PM,11/15/2014 08:19:53 PM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Fire,11/15/2014 08:35:51 PM,400 Block of FUNSTON AVE,San Francisco,94118,B07,31,7146,3,3,3,false,Alarm,1,ENGINE,2,7,1,Inner Richmond,"(37.7797197447141, -122.47163791656)",143193346-E31 +151860199,T19,15070856,Alarms,07/05/2015,07/04/2015,07/05/2015 12:38:14 AM,07/05/2015 12:39:17 AM,07/05/2015 12:39:25 AM,07/05/2015 12:41:37 AM,07/05/2015 12:46:47 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 12:51:45 AM,100 Block of CAMBON DR,San Francisco,94132,B08,19,8428,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",151860199-T19 +150951029,E08,15036042,Medical Incident,04/05/2015,04/05/2015,04/05/2015 10:13:53 AM,04/05/2015 10:17:20 AM,04/05/2015 10:17:55 AM,04/05/2015 10:18:16 AM,04/05/2015 10:26:46 AM,04/25/2016 01:11:20 PM,04/25/2016 01:11:20 PM,Code 2 Transport,04/05/2015 11:03:04 AM,0 Block of BAYSIDE VILLAGE PL,San Francisco,94107,B03,8,2134,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.784851966461, -122.389795266719)",150951029-E08 +150981792,B01,15037082,Structure Fire,04/08/2015,04/08/2015,04/08/2015 01:14:20 PM,04/08/2015 01:15:07 PM,04/08/2015 01:16:00 PM,04/08/2015 01:17:22 PM,04/08/2015 01:20:59 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Fire,04/08/2015 02:11:30 PM,1200 Block of GREENWICH ST,San Francisco,94109,B01,41,1612,3,3,3,false,Alarm,1,CHIEF,4,1,2,Russian Hill,"(37.8009065560237, -122.420238670227)",150981792-B01 +142821404,E38,14099237,Medical Incident,10/09/2014,10/09/2014,10/09/2014 11:43:55 AM,10/09/2014 11:44:24 AM,10/09/2014 11:45:58 AM,10/09/2014 11:46:53 AM,10/09/2014 11:48:32 AM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,Against Medical Advice,10/09/2014 12:02:20 PM,1700 Block of CALIFORNIA ST,San Francisco,94109,B04,38,3155,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7903193034194, -122.4231629068)",142821404-E38 +152300640,54,15087667,Medical Incident,08/18/2015,08/17/2015,08/18/2015 07:56:20 AM,08/18/2015 07:56:20 AM,08/18/2015 07:57:36 AM,08/18/2015 08:00:48 AM,08/18/2015 08:17:12 AM,08/18/2015 08:25:36 AM,08/18/2015 08:25:36 AM,Code 2 Transport,08/18/2015 09:02:04 AM,PIERCE ST/HAIGHT ST,San Francisco,94117,B05,6,3635,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7716882728802, -122.433734773899)",152300640-54 +152872503,63,15110318,Medical Incident,10/14/2015,10/14/2015,10/14/2015 02:53:06 PM,10/14/2015 02:53:06 PM,10/14/2015 02:54:17 PM,10/14/2015 02:54:17 PM,10/14/2015 02:54:24 PM,10/14/2015 03:14:57 PM,10/14/2015 03:23:23 PM,Code 2 Transport,10/14/2015 03:56:51 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",152872503-63 +161002302,KM12,16039841,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:47:02 PM,04/09/2016 04:47:14 PM,04/09/2016 04:48:30 PM,04/09/2016 04:49:16 PM,04/09/2016 04:58:49 PM,04/09/2016 05:11:34 PM,04/09/2016 05:16:06 PM,Code 2 Transport,04/09/2016 05:48:19 PM,CEDAR ST/LARKIN ST,San Francisco,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7865659835783, -122.418178854944)",161002302-KM12 +160950492,53,16037524,Medical Incident,04/04/2016,04/03/2016,04/04/2016 06:48:38 AM,04/04/2016 06:50:04 AM,04/04/2016 06:50:21 AM,04/04/2016 06:50:28 AM,04/04/2016 06:54:24 AM,04/04/2016 07:17:02 AM,04/04/2016 07:38:18 AM,Code 2 Transport,04/04/2016 08:16:28 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160950492-53 +160990369,60,16039185,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:32:13 AM,04/08/2016 04:34:03 AM,04/08/2016 04:34:21 AM,04/08/2016 04:34:28 AM,04/08/2016 04:45:14 AM,04/08/2016 05:09:29 AM,04/08/2016 05:13:51 AM,Code 2 Transport,04/08/2016 05:59:29 AM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",160990369-60 +160963992,64,16038203,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:17:21 PM,04/05/2016 10:18:14 PM,04/05/2016 10:18:52 PM,04/05/2016 10:21:01 PM,04/05/2016 10:23:59 PM,04/05/2016 10:47:19 PM,04/05/2016 11:02:48 PM,Code 2 Transport,04/06/2016 12:12:56 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160963992-64 +142782940,RWC1,14097890,Water Rescue,10/05/2014,10/05/2014,10/05/2014 06:02:50 PM,10/05/2014 06:04:17 PM,10/05/2014 06:11:49 PM,10/05/2014 06:11:49 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Fire,10/05/2014 06:54:56 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,SUPPORT,13,7,2,Presidio,"(37.8066581989584, -122.47471662098)",142782940-RWC1 +142222214,E08,14077102,Medical Incident,08/10/2014,08/10/2014,08/10/2014 04:11:07 PM,08/10/2014 04:12:54 PM,08/10/2014 04:13:51 PM,08/10/2014 04:15:11 PM,08/10/2014 04:16:56 PM,04/25/2016 01:15:44 PM,04/25/2016 01:15:44 PM,Code 2 Transport,08/10/2014 04:23:01 PM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",142222214-E08 +151510667,74,15057378,Medical Incident,05/31/2015,05/30/2015,05/31/2015 06:34:10 AM,05/31/2015 06:37:27 AM,05/31/2015 06:39:13 AM,05/31/2015 06:39:13 AM,05/31/2015 06:45:42 AM,05/31/2015 07:07:01 AM,05/31/2015 07:31:27 AM,Code 2 Transport,05/31/2015 08:06:54 AM,200 Block of FARALLONES ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7139875097179, -122.460811423157)",151510667-74 +152934064,RS2,15112769,Structure Fire,10/20/2015,10/20/2015,10/20/2015 10:58:08 PM,10/20/2015 11:00:39 PM,10/20/2015 11:00:55 PM,10/20/2015 11:02:43 PM,10/20/2015 11:04:07 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Fire,10/20/2015 11:05:23 PM,500 Block of GUERRERO ST,San Francisco,94110,B02,7,5422,3,3,3,false,Alarm,1,RESCUE SQUAD,3,2,8,Mission,"(37.7623740658777, -122.4237632921)",152934064-RS2 +141850674,E05,14063935,Medical Incident,07/04/2014,07/04/2014,07/04/2014 08:03:29 AM,07/04/2014 08:04:40 AM,07/04/2014 08:04:58 AM,07/04/2014 08:05:47 AM,07/04/2014 08:08:09 AM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/04/2014 08:23:52 AM,2000 Block of SUTTER ST,San Francisco,94115,B04,38,3542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Japantown,"(37.7859265850289, -122.434083678259)",141850674-E05 +153430464,E03,15131877,Medical Incident,12/09/2015,12/08/2015,12/09/2015 06:10:55 AM,12/09/2015 06:13:29 AM,12/09/2015 06:14:09 AM,12/09/2015 06:16:07 AM,12/09/2015 06:18:54 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 06:45:13 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Japantown,"(37.7860447238816, -122.426514096484)",153430464-E03 +160922655,68,16036532,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:09:07 PM,04/01/2016 05:11:14 PM,04/01/2016 05:11:25 PM,04/01/2016 05:11:34 PM,04/01/2016 05:20:59 PM,04/01/2016 05:51:46 PM,04/01/2016 06:18:57 PM,Code 2 Transport,04/01/2016 06:53:24 PM,700 Block of LAKEVIEW AVE,San Francisco,94112,B09,33,8462,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7182804925223, -122.461738906058)",160922655-68 +150311288,56,15011929,Medical Incident,01/31/2015,01/31/2015,01/31/2015 10:58:43 AM,01/31/2015 11:00:06 AM,01/31/2015 11:07:34 AM,01/31/2015 11:07:41 AM,01/31/2015 11:29:51 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 2 Transport,01/31/2015 12:11:31 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",150311288-56 +152162100,KM06,15082282,Medical Incident,08/04/2015,08/04/2015,08/04/2015 02:56:24 PM,08/04/2015 02:56:39 PM,08/04/2015 02:56:56 PM,08/04/2015 02:58:47 PM,08/04/2015 03:03:49 PM,08/04/2015 03:40:29 PM,08/04/2015 03:40:39 PM,Code 2 Transport,08/04/2015 04:08:33 PM,7100 Block of GEARY BLVD,San Francisco,94121,B07,34,7255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7796854448315, -122.49598717999)",152162100-KM06 +151330803,B04,15050356,Structure Fire,05/13/2015,05/13/2015,05/13/2015 08:17:36 AM,05/13/2015 08:18:10 AM,05/13/2015 08:18:45 AM,05/13/2015 08:20:09 AM,05/13/2015 08:23:00 AM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Fire,05/13/2015 08:28:50 AM,1400 Block of HYDE ST,San Francisco,94109,B01,41,1564,3,3,3,false,Alarm,1,CHIEF,4,1,3,Russian Hill,"(37.7941341731235, -122.417955659155)",151330803-B04 +141691475,KM01,14058326,Medical Incident,06/18/2014,06/18/2014,06/18/2014 12:20:41 PM,06/18/2014 12:22:36 PM,06/18/2014 12:23:03 PM,06/18/2014 12:27:34 PM,06/18/2014 12:52:36 PM,06/18/2014 12:52:43 PM,06/18/2014 01:20:59 PM,Code 2 Transport,06/18/2014 01:43:08 PM,900 Block of JACKSON ST,San Francisco,94133,B01,2,1354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7955961513636, -122.41050106502)",141691475-KM01 +160952848,AM10,16037715,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:03:05 PM,04/04/2016 05:03:05 PM,04/04/2016 05:05:38 PM,04/04/2016 05:12:59 PM,04/04/2016 05:13:01 PM,04/04/2016 05:43:43 PM,04/04/2016 06:09:08 PM,Code 2 Transport,04/04/2016 06:32:54 PM,3900 Block of 23RD ST,San Francisco,94114,B06,11,5514,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7531464685627, -122.430920904363)",160952848-AM10 +161002337,62,16039844,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:59:29 PM,04/09/2016 05:00:10 PM,04/09/2016 05:00:34 PM,04/09/2016 05:00:44 PM,04/09/2016 05:04:53 PM,04/09/2016 05:15:50 PM,04/09/2016 05:28:59 PM,Code 2 Transport,04/09/2016 06:00:16 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",161002337-62 +152643339,E32,15101213,Medical Incident,09/21/2015,09/21/2015,09/21/2015 06:07:08 PM,09/21/2015 06:07:17 PM,09/21/2015 06:07:31 PM,09/21/2015 06:08:13 PM,09/21/2015 06:11:46 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Against Medical Advice,09/21/2015 06:21:29 PM,1300 Block of ALEMANY BLVD,San Francisco,94112,B09,32,8263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7294726964986, -122.433599162117)",152643339-E32 +143483752,E25,14124423,Medical Incident,12/14/2014,12/14/2014,12/14/2014 11:35:44 PM,12/14/2014 11:35:44 PM,12/14/2014 11:35:57 PM,12/14/2014 11:37:34 PM,12/14/2014 11:41:36 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,Code 2 Transport,12/14/2014 11:53:17 PM,INNES AV/DONAHUE ST,San Francisco,94124,B10,47,6721,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7288061449325, -122.370145383783)",143483752-E25 +151064081,57,15040275,Medical Incident,04/16/2015,04/16/2015,04/16/2015 10:58:08 PM,04/16/2015 10:59:25 PM,04/16/2015 11:00:07 PM,04/16/2015 11:00:16 PM,04/16/2015 11:03:32 PM,04/16/2015 11:15:35 PM,04/16/2015 11:21:07 PM,Code 2 Transport,04/17/2015 12:02:50 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",151064081-57 +152310911,84,15088039,Medical Incident,08/19/2015,08/19/2015,08/19/2015 09:01:29 AM,08/19/2015 09:02:22 AM,08/19/2015 09:02:59 AM,08/19/2015 09:03:35 AM,08/19/2015 09:08:16 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Patient Declined Transport,08/19/2015 09:12:38 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",152310911-84 +160954067,72,16037824,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:58:59 PM,04/04/2016 11:01:00 PM,04/04/2016 11:01:53 PM,04/04/2016 11:02:04 PM,04/04/2016 11:05:44 PM,04/05/2016 12:07:02 AM,04/05/2016 12:07:07 AM,Code 2 Transport,04/05/2016 12:38:30 AM,1300 Block of 37TH AVE,San Francisco,94122,B08,23,7571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7617778269302, -122.496418264934)",160954067-72 +150970751,B10,15036677,Structure Fire,04/07/2015,04/07/2015,04/07/2015 08:21:16 AM,04/07/2015 08:22:24 AM,04/07/2015 08:23:04 AM,04/07/2015 08:24:16 AM,04/07/2015 08:28:41 AM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Fire,04/07/2015 08:29:52 AM,600 Block of 27TH ST,San Francisco,94131,B06,26,5554,3,3,3,false,Alarm,1,CHIEF,5,6,8,Noe Valley,"(37.7463542503622, -122.435399737394)",150970751-B10 +143471265,RB1,14123736,Water Rescue,12/13/2014,12/13/2014,12/13/2014 10:16:46 AM,12/13/2014 10:17:22 AM,12/13/2014 10:24:34 AM,12/13/2014 10:26:55 AM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Fire,12/13/2014 10:37:59 AM,GREAT HY/QUINTARA ST,San Francisco,94116,B08,23,7726,3,3,3,false,Fire,1,SUPPORT,14,8,4,Sunset/Parkside,"(37.7472485360166, -122.507694893853)",143471265-RB1 +160952349,KM05,16037669,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:02:58 PM,04/04/2016 03:03:35 PM,04/04/2016 03:04:19 PM,04/04/2016 03:05:09 PM,04/04/2016 03:08:58 PM,04/04/2016 03:33:33 PM,04/04/2016 04:06:40 PM,Code 2 Transport,04/04/2016 04:54:06 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160952349-KM05 +161010377,64,16040041,Medical Incident,04/10/2016,04/09/2016,04/10/2016 02:20:23 AM,04/10/2016 02:20:39 AM,04/10/2016 02:21:36 AM,04/10/2016 02:22:10 AM,04/10/2016 02:30:27 AM,04/10/2016 02:54:50 AM,04/10/2016 02:58:50 AM,Code 2 Transport,04/10/2016 03:39:20 AM,0 Block of QUICKSTEP LN,San Francisco,94115,B04,05,3365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7832767200998, -122.428138545877)",161010377-64 +152541589,FD00A,15097085,,09/11/2015,09/11/2015,09/11/2015 12:07:52 PM,09/11/2015 12:07:52 PM,09/11/2015 12:18:31 PM,09/11/2015 12:18:31 PM,09/11/2015 12:18:31 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Fire,09/11/2015 12:18:41 PM,45TH AV/SLOAT BL,San Francisco,94132,B08,18,7711,2,2,2,false,Non Life-threatening,1,SUPPORT,2,8,4,Sunset/Parkside,"(37.7354664918076, -122.503104759024)",152541589-FD00A +153353019,52,15128930,Structure Fire,12/01/2015,12/01/2015,12/01/2015 05:42:26 PM,12/01/2015 05:43:17 PM,12/01/2015 05:43:31 PM,12/01/2015 05:43:52 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,Fire,12/01/2015 05:45:19 PM,1400 Block of 32ND AVE,San Francisco,94122,B08,23,7541,3,3,3,true,Alarm,1,MEDIC,11,8,4,Sunset/Parkside,"(37.7601552025292, -122.490789575329)",153353019-52 +151353597,E01,15051450,Structure Fire,05/15/2015,05/15/2015,05/15/2015 08:58:28 PM,05/15/2015 08:58:28 PM,05/15/2015 08:58:38 PM,05/15/2015 08:59:39 PM,05/15/2015 09:01:34 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,No Merit,05/15/2015 09:02:13 PM,100 Block of 7TH ST,San Francisco,94103,B03,8,2312,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7790372933741, -122.41062000696)",151353597-E01 +141913439,55,14066353,Medical Incident,07/10/2014,07/10/2014,07/10/2014 09:33:17 PM,07/10/2014 09:33:17 PM,07/10/2014 09:35:11 PM,07/10/2014 09:36:12 PM,07/10/2014 09:46:09 PM,07/10/2014 10:02:45 PM,07/10/2014 10:18:12 PM,Code 2 Transport,07/10/2014 11:32:31 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",141913439-55 +160940608,57,16037154,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:41:18 AM,04/03/2016 04:41:46 AM,04/03/2016 04:41:56 AM,04/03/2016 04:42:39 AM,04/03/2016 04:51:00 AM,04/03/2016 05:10:05 AM,04/03/2016 05:38:53 AM,Code 2 Transport,04/03/2016 05:58:30 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160940608-57 +141312391,T06,14044656,Alarms,05/11/2014,05/11/2014,05/11/2014 05:52:15 PM,05/11/2014 05:53:34 PM,05/11/2014 05:54:10 PM,05/11/2014 05:56:29 PM,05/11/2014 05:57:29 PM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Fire,05/11/2014 06:05:39 PM,200 Block of STEINER ST,San Francisco,94117,B05,6,3633,3,3,3,false,Alarm,1,TRUCK,3,5,5,Haight Ashbury,"(37.7711888020343, -122.432019614304)",141312391-T06 +152900594,T14,15111302,Alarms,10/17/2015,10/16/2015,10/17/2015 04:19:29 AM,10/17/2015 04:20:24 AM,10/17/2015 04:20:32 AM,10/17/2015 04:23:06 AM,10/17/2015 04:27:47 AM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Fire,10/17/2015 04:32:42 AM,700 Block of 16TH AVE,San Francisco,94118,B07,31,715,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.773947007152, -122.474549425866)",152900594-T14 +160952738,KM09,16037704,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:37:12 PM,04/04/2016 04:38:28 PM,04/04/2016 04:38:51 PM,04/04/2016 04:39:59 PM,04/04/2016 04:45:22 PM,04/04/2016 05:21:19 PM,04/04/2016 05:38:47 PM,Code 2 Transport,04/04/2016 06:06:57 PM,800 Block of SILVER AVE,San Francisco,94134,B09,42,635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7291408602856, -122.418934279861)",160952738-KM09 +152570396,T13,15098136,Medical Incident,09/14/2015,09/13/2015,09/14/2015 05:06:35 AM,09/14/2015 05:07:00 AM,09/14/2015 05:08:17 AM,09/14/2015 05:10:00 AM,09/14/2015 05:11:59 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Code 2 Transport,09/14/2015 05:19:06 AM,200 Block of SANSOME ST,San Francisco,94104,B01,13,1165,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Financial District/South Beach,"(37.792575613742, -122.401098046872)",152570396-T13 +160922036,KM02,16036470,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:33:45 PM,04/01/2016 02:35:49 PM,04/01/2016 02:36:30 PM,04/01/2016 02:36:58 PM,04/01/2016 02:49:40 PM,04/01/2016 03:15:52 PM,04/01/2016 03:35:20 PM,Code 2 Transport,04/01/2016 04:05:15 PM,2600 Block of NORIEGA ST,San Francisco,94122,B08,18,7543,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7536105132475, -122.492015354093)",160922036-KM02 +142330405,AM18,14080818,Medical Incident,08/21/2014,08/20/2014,08/21/2014 05:05:16 AM,08/21/2014 05:10:06 AM,08/21/2014 05:12:06 AM,08/21/2014 05:13:00 AM,08/21/2014 05:23:33 AM,08/21/2014 05:47:01 AM,08/21/2014 05:55:48 AM,Code 2 Transport,08/21/2014 06:21:23 AM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",142330405-AM18 +141220230,B04,14041347,Alarms,05/02/2014,05/02/2014,05/02/2014 02:13:23 PM,05/02/2014 02:14:22 PM,05/02/2014 02:14:37 PM,05/02/2014 02:15:32 PM,05/02/2014 02:19:05 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 02:23:37 PM,900 Block of GEARY ST,SAN FRANCISCO,94109,B04,3,3116,3,3,3,false,Alarm,1,CHIEF,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",141220230-B04 +153003894,E08,15115303,Outside Fire,10/27/2015,10/27/2015,10/27/2015 11:20:48 PM,10/27/2015 11:21:18 PM,10/27/2015 11:21:45 PM,10/27/2015 11:22:52 PM,10/27/2015 11:25:27 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/27/2015 11:32:15 PM,100 Block of STILLMAN ST,San Francisco,94107,B03,8,2174,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7808261048723, -122.397440476002)",153003894-E08 +160950322,64,16037506,Medical Incident,04/04/2016,04/03/2016,04/04/2016 04:10:18 AM,04/04/2016 04:12:00 AM,04/04/2016 04:12:32 AM,04/04/2016 04:13:06 AM,04/04/2016 04:27:24 AM,04/04/2016 04:49:23 AM,04/04/2016 05:00:00 AM,Code 3 Transport,04/04/2016 05:40:04 AM,0 Block of MAJESTIC AVE,San Francisco,94112,B09,15,8317,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7176384872377, -122.451258431283)",160950322-64 +151022730,E01,15038676,Medical Incident,04/12/2015,04/12/2015,04/12/2015 06:29:20 PM,04/12/2015 06:32:34 PM,04/12/2015 06:33:12 PM,04/12/2015 06:33:54 PM,04/12/2015 06:36:39 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Code 3 Transport,04/12/2015 06:45:42 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",151022730-E01 +160974418,85,16038694,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:18:43 PM,04/06/2016 10:20:28 PM,04/06/2016 10:30:10 PM,04/06/2016 10:30:32 PM,04/06/2016 10:42:03 PM,04/06/2016 10:57:12 PM,04/06/2016 11:23:56 PM,Code 2 Transport,04/07/2016 12:00:34 AM,2400 Block of 28TH AVE,San Francisco,94116,B08,18,7522,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7416950719764, -122.485200987218)",160974418-85 +160954175,52,16037837,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:51:25 PM,04/04/2016 11:54:10 PM,04/04/2016 11:54:40 PM,04/04/2016 11:54:46 PM,04/05/2016 12:00:27 AM,04/05/2016 12:17:15 AM,04/05/2016 12:38:35 AM,Code 2 Transport,04/05/2016 01:03:10 AM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160954175-52 +141570821,E17,14053981,Structure Fire,06/06/2014,06/06/2014,06/06/2014 08:51:10 AM,06/06/2014 08:51:10 AM,06/06/2014 08:51:39 AM,06/06/2014 08:52:01 AM,06/06/2014 08:55:24 AM,04/25/2016 01:16:56 PM,04/25/2016 01:16:56 PM,Fire,06/06/2014 08:57:26 AM,GRIFFITH ST/GILMAN AV,San Francisco,94124,B10,17,6611,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7182356436301, -122.388136869889)",141570821-E17 +142980622,E36,14105073,Medical Incident,10/25/2014,10/24/2014,10/25/2014 04:32:32 AM,10/25/2014 04:32:32 AM,10/25/2014 04:32:57 AM,10/25/2014 04:34:53 AM,10/25/2014 04:40:06 AM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Code 2 Transport,10/25/2014 04:44:15 AM,LARKIN ST/FULTON ST,San Francisco,94102,B02,36,1645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",142980622-E36 +160933853,AM16,16037076,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:08:31 PM,04/02/2016 11:08:31 PM,04/02/2016 11:08:36 PM,04/02/2016 11:09:11 PM,04/02/2016 11:18:37 PM,04/02/2016 11:31:01 PM,04/02/2016 11:49:43 PM,Code 2 Transport,04/03/2016 12:23:04 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160933853-AM16 +151933143,E02,15073782,Medical Incident,07/12/2015,07/12/2015,07/12/2015 07:22:10 PM,07/12/2015 07:22:52 PM,07/12/2015 07:23:30 PM,07/12/2015 07:25:25 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/12/2015 07:27:46 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",151933143-E02 +152230817,E15,15084898,Traffic Collision,08/11/2015,08/11/2015,08/11/2015 08:22:04 AM,08/11/2015 08:27:01 AM,08/11/2015 08:27:10 AM,08/11/2015 08:31:19 AM,08/11/2015 08:31:25 AM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Patient Declined Transport,08/11/2015 08:47:38 AM,200 Block of SAN JOSE AVE,San Francisco,94110,B09,15,8313,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Mission,"(37.7512439644709, -122.421585334305)",152230817-E15 +150410479,E01,15015866,Medical Incident,02/10/2015,02/09/2015,02/10/2015 06:33:05 AM,02/10/2015 06:33:05 AM,02/10/2015 06:39:09 AM,02/10/2015 06:39:09 AM,02/10/2015 06:39:09 AM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/10/2015 07:45:01 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",150410479-E01 +142081261,E33,14072037,Medical Incident,07/27/2014,07/27/2014,07/27/2014 10:38:44 AM,07/27/2014 10:41:22 AM,07/27/2014 10:41:43 AM,07/27/2014 10:43:56 AM,07/27/2014 10:48:36 AM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Code 2 Transport,07/27/2014 11:06:35 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",142081261-E33 +160973230,68,16038555,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:17:34 PM,04/06/2016 05:18:16 PM,04/06/2016 05:19:51 PM,04/06/2016 05:20:20 PM,04/06/2016 05:33:31 PM,04/06/2016 05:49:28 PM,04/06/2016 06:24:04 PM,Code 2 Transport,04/06/2016 06:48:52 PM,600 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7798433146326, -122.510504603354)",160973230-68 +141321551,E03,14044926,Medical Incident,05/12/2014,05/12/2014,05/12/2014 12:36:15 PM,05/12/2014 12:37:09 PM,05/12/2014 12:38:50 PM,05/12/2014 12:39:41 PM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Code 2 Transport,05/12/2014 12:54:03 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,E,3,false,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",141321551-E03 +142703080,E36,14094808,Medical Incident,09/27/2014,09/27/2014,09/27/2014 06:46:48 PM,09/27/2014 06:48:03 PM,09/27/2014 06:48:17 PM,09/27/2014 06:49:42 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 06:51:14 PM,300 Block of FELL ST,San Francisco,94102,B02,36,3314,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7759061463478, -122.423567115167)",142703080-E36 +152500779,67,15095394,Medical Incident,09/07/2015,09/07/2015,09/07/2015 08:31:08 AM,09/07/2015 08:32:55 AM,09/07/2015 08:36:13 AM,09/07/2015 08:42:09 AM,09/07/2015 08:45:02 AM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Fire,09/07/2015 08:50:42 AM,ELLIS ST/HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",152500779-67 +141670796,KM04,14057532,Medical Incident,06/16/2014,06/16/2014,06/16/2014 09:14:00 AM,06/16/2014 09:14:00 AM,06/16/2014 09:15:17 AM,06/16/2014 09:16:57 AM,06/16/2014 09:21:36 AM,06/16/2014 09:29:51 AM,06/16/2014 09:51:05 AM,Code 2 Transport,06/16/2014 10:17:09 AM,5TH ST/MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",141670796-KM04 +161002933,58,16039913,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:03:29 PM,04/09/2016 08:03:29 PM,04/09/2016 08:06:43 PM,04/09/2016 08:07:01 PM,04/09/2016 08:14:27 PM,04/09/2016 08:19:23 PM,04/09/2016 08:33:58 PM,Code 2 Transport,04/09/2016 09:16:46 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",161002933-58 +142202694,KM01,14076434,Medical Incident,08/08/2014,08/08/2014,08/08/2014 05:30:43 PM,08/08/2014 05:30:43 PM,08/08/2014 05:44:00 PM,08/08/2014 05:50:32 PM,08/08/2014 05:57:24 PM,08/08/2014 06:04:51 PM,08/08/2014 06:21:19 PM,Code 2 Transport,08/08/2014 06:46:04 PM,16TH ST/CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",142202694-KM01 +142770210,65,14097216,Medical Incident,10/04/2014,10/03/2014,10/04/2014 12:51:10 AM,10/04/2014 12:52:40 AM,10/04/2014 12:54:44 AM,10/04/2014 12:55:05 AM,10/04/2014 01:16:34 AM,10/04/2014 01:35:18 AM,10/04/2014 01:40:46 AM,Code 2 Transport,10/04/2014 02:28:18 AM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",142770210-65 +160943497,76,16037437,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:52:07 PM,04/03/2016 09:53:55 PM,04/03/2016 09:54:08 PM,04/03/2016 09:54:19 PM,04/03/2016 10:25:26 PM,04/03/2016 10:28:32 PM,04/03/2016 10:38:40 PM,Code 2 Transport,04/03/2016 11:18:00 PM,700 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7794115468887, -122.425174050161)",160943497-76 +142233238,E05,14077547,Medical Incident,08/11/2014,08/11/2014,08/11/2014 09:10:01 PM,08/11/2014 09:12:30 PM,08/11/2014 09:13:14 PM,08/11/2014 09:14:08 PM,08/11/2014 09:15:51 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Code 2 Transport,08/11/2014 09:26:07 PM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",142233238-E05 +150183306,60,15007278,Medical Incident,01/18/2015,01/18/2015,01/18/2015 10:13:39 PM,01/18/2015 10:16:22 PM,01/18/2015 10:17:15 PM,01/18/2015 10:17:28 PM,01/18/2015 10:26:09 PM,01/18/2015 10:38:05 PM,01/18/2015 11:08:56 PM,Code 2 Transport,01/18/2015 11:26:05 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",150183306-60 +142672449,53,14093564,Medical Incident,09/24/2014,09/24/2014,09/24/2014 03:32:55 PM,09/24/2014 03:33:40 PM,09/24/2014 03:34:09 PM,09/24/2014 03:34:19 PM,09/24/2014 03:45:26 PM,09/24/2014 04:03:47 PM,09/24/2014 04:39:51 PM,Code 2 Transport,09/24/2014 05:04:56 PM,200 Block of GUTTENBERG ST,San Francisco,94112,B09,43,6218,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.710266260591, -122.443104356111)",142672449-53 +143102218,82,14109763,Medical Incident,11/06/2014,11/06/2014,11/06/2014 02:59:46 PM,11/06/2014 03:01:07 PM,11/06/2014 03:03:03 PM,11/06/2014 03:03:53 PM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,No Merit,11/06/2014 03:06:48 PM,900 Block of CAPITOL AVE,San Francisco,94112,B09,33,8462,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7191266407655, -122.459261969444)",143102218-82 +160943165,78,16037399,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:50:36 PM,04/03/2016 07:50:55 PM,04/03/2016 07:51:19 PM,04/03/2016 07:51:27 PM,04/03/2016 08:14:54 PM,04/03/2016 08:14:56 PM,04/03/2016 08:27:35 PM,Code 2 Transport,04/03/2016 09:00:52 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160943165-78 +160973768,52,16038627,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:12:25 PM,04/06/2016 07:13:20 PM,04/06/2016 07:13:51 PM,04/06/2016 07:14:00 PM,04/06/2016 07:20:31 PM,04/06/2016 07:32:25 PM,04/06/2016 08:25:57 PM,Code 2 Transport,04/06/2016 08:51:11 PM,200 Block of HAMILTON ST,San Francisco,94134,B10,42,6342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7279029896841, -122.410205044034)",160973768-52 +160942563,75,16037338,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:44:20 PM,04/03/2016 04:44:20 PM,04/03/2016 04:44:53 PM,04/03/2016 04:45:17 PM,04/03/2016 04:53:43 PM,04/03/2016 05:05:31 PM,04/03/2016 05:22:43 PM,Code 2 Transport,04/03/2016 05:31:57 PM,400 Block of FRANKLIN ST,San Francisco,94102,B02,36,3214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7784801386574, -122.421683336458)",160942563-75 +141592829,E32,14054946,Medical Incident,06/08/2014,06/08/2014,06/08/2014 08:14:53 PM,06/08/2014 08:19:10 PM,06/08/2014 08:21:19 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Code 2 Transport,06/08/2014 08:24:03 PM,BRAZIL AV/MISSION ST,San Francisco,94112,B09,43,6117,2,2,2,true,Non Life-threatening,1,ENGINE,4,9,11,Outer Mission,"(37.724682555301, -122.434798413615)",141592829-E32 +160971248,71,16038358,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:06:07 AM,04/06/2016 10:10:43 AM,04/06/2016 10:11:15 AM,04/06/2016 10:11:22 AM,04/06/2016 10:17:31 AM,04/06/2016 10:30:21 AM,04/06/2016 10:53:28 AM,Code 2 Transport,04/06/2016 11:10:33 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160971248-71 +141413592,85,14048517,Medical Incident,05/21/2014,05/21/2014,05/21/2014 10:33:59 PM,05/21/2014 10:36:14 PM,05/21/2014 10:38:13 PM,05/21/2014 10:40:30 PM,05/21/2014 10:47:17 PM,05/21/2014 11:03:09 PM,05/21/2014 11:31:35 PM,Code 2 Transport,05/22/2014 12:02:50 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7819536537257, -122.410041631816)",141413592-85 +143123763,85,14110708,Medical Incident,11/08/2014,11/08/2014,11/08/2014 10:26:21 PM,11/08/2014 10:26:48 PM,11/08/2014 10:41:07 PM,11/08/2014 10:41:17 PM,11/08/2014 10:46:39 PM,11/08/2014 11:11:52 PM,11/08/2014 11:14:37 PM,Code 3 Transport,11/09/2014 12:07:47 AM,1700 Block of GOLDEN GATE AVE,San Francisco,94115,B05,21,4242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7786720146338, -122.439393825172)",143123763-85 +152761980,E11,15105800,Traffic Collision,10/03/2015,10/03/2015,10/03/2015 01:54:42 PM,10/03/2015 01:54:42 PM,10/03/2015 01:55:01 PM,10/03/2015 01:56:30 PM,10/03/2015 01:57:52 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,No Merit,10/03/2015 02:01:32 PM,DOLORES ST/VALLEY ST,San Francisco,94110,B06,11,5576,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7446359985829, -122.424459210506)",152761980-E11 +152892798,71,15111120,Medical Incident,10/16/2015,10/16/2015,10/16/2015 05:05:04 PM,10/16/2015 05:08:19 PM,10/16/2015 05:08:50 PM,10/16/2015 05:09:09 PM,10/16/2015 05:30:42 PM,10/16/2015 05:41:10 PM,10/16/2015 05:52:23 PM,Code 2 Transport,10/16/2015 06:36:18 PM,300 Block of EXCELSIOR AVE,San Francisco,94112,B09,43,6133,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7248687518278, -122.430888833532)",152892798-71 +151421557,AM12,15053961,Medical Incident,05/22/2015,05/22/2015,05/22/2015 11:44:44 AM,05/22/2015 11:45:22 AM,05/22/2015 11:46:20 AM,05/22/2015 11:51:39 AM,05/22/2015 11:51:41 AM,05/22/2015 01:04:52 PM,05/22/2015 01:04:58 PM,Code 2 Transport,05/22/2015 01:11:40 PM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7892754139105, -122.407765078811)",151421557-AM12 +151800891,E33,15068639,Structure Fire,06/29/2015,06/29/2015,06/29/2015 08:55:41 AM,06/29/2015 08:56:03 AM,06/29/2015 08:56:18 AM,06/29/2015 08:57:06 AM,06/29/2015 08:59:06 AM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Code 2 Transport,06/29/2015 01:26:04 PM,1100 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8473,3,3,3,false,Fire,3,ENGINE,3,9,7,Oceanview/Merced/Ingleside,"(37.7228660555737, -122.456215121014)",151800891-E33 +160942679,KM06,16037354,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:15:25 PM,04/03/2016 05:15:25 PM,04/03/2016 05:15:45 PM,04/03/2016 05:16:12 PM,04/03/2016 05:22:55 PM,04/03/2016 05:42:56 PM,04/03/2016 05:52:43 PM,Code 2 Transport,04/03/2016 06:30:41 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160942679-KM06 +151882272,AM08,15071830,Medical Incident,07/07/2015,07/07/2015,07/07/2015 02:16:18 PM,07/07/2015 02:20:13 PM,07/07/2015 02:20:19 PM,07/07/2015 02:21:07 PM,07/07/2015 02:23:45 PM,04/25/2016 01:09:36 PM,04/25/2016 01:09:36 PM,Patient Declined Transport,07/07/2015 03:01:15 PM,300 Block of 10TH AVE,San Francisco,94118,B07,31,7141,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7817833010833, -122.468703263759)",151882272-AM08 +151193902,E14,15045195,Medical Incident,04/29/2015,04/29/2015,04/29/2015 10:29:30 PM,04/29/2015 10:30:32 PM,04/29/2015 10:31:15 PM,04/29/2015 10:32:30 PM,04/29/2015 10:33:42 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Medical Examiner,04/29/2015 11:10:58 PM,400 Block of 31ST AVE,San Francisco,94121,B07,14,7237,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",151193902-E14 +160971724,62,16038401,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:57:31 AM,04/06/2016 11:59:34 AM,04/06/2016 12:00:37 PM,04/06/2016 12:02:59 PM,04/06/2016 12:15:31 PM,04/06/2016 12:26:33 PM,04/06/2016 01:10:00 PM,Code 2 Transport,04/06/2016 01:16:02 PM,719-A UNION ST,San Francisco,94133,B01,28,1422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.8001349297204, -122.411218702709)",160971724-62 +152151011,RS1,15081757,Medical Incident,08/03/2015,08/03/2015,08/03/2015 09:15:25 AM,08/03/2015 09:16:40 AM,08/03/2015 09:20:02 AM,08/03/2015 09:20:54 AM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Code 2 Transport,08/03/2015 09:22:08 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",152151011-RS1 +153202945,81,15123155,Medical Incident,11/16/2015,11/16/2015,11/16/2015 06:03:53 PM,11/16/2015 06:07:22 PM,11/16/2015 06:08:35 PM,11/16/2015 06:08:58 PM,11/16/2015 06:20:56 PM,11/16/2015 06:38:04 PM,11/16/2015 06:59:35 PM,Code 2 Transport,11/16/2015 07:13:11 PM,0 Block of BELVEDERE ST,San Francisco,94117,B05,12,4532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7692041935605, -122.449481332809)",153202945-81 +153301594,E03,15127018,Medical Incident,11/26/2015,11/26/2015,11/26/2015 02:19:27 PM,11/26/2015 02:22:13 PM,11/26/2015 02:23:02 PM,11/26/2015 02:25:29 PM,11/26/2015 02:28:10 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Unable to Locate,11/26/2015 02:35:34 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",153301594-E03 +151600649,68,15061039,Medical Incident,06/09/2015,06/09/2015,06/09/2015 08:06:20 AM,06/09/2015 08:06:20 AM,06/09/2015 08:09:38 AM,06/09/2015 08:09:38 AM,06/09/2015 08:12:36 AM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Patient Declined Transport,06/09/2015 10:27:53 AM,3500 Block of 3RD ST,San Francisco,94124,B10,25,6525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7446864036072, -122.387362879495)",151600649-68 +150611195,87,15023218,Medical Incident,03/02/2015,03/02/2015,03/02/2015 10:38:24 AM,03/02/2015 10:38:24 AM,03/02/2015 10:39:13 AM,03/02/2015 10:40:24 AM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Other,03/02/2015 10:40:48 AM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",150611195-87 +142062283,E17,14071420,Medical Incident,07/25/2014,07/25/2014,07/25/2014 03:57:25 PM,07/25/2014 03:58:16 PM,07/25/2014 03:58:43 PM,07/25/2014 04:00:44 PM,07/25/2014 04:02:00 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Code 2 Transport,07/25/2014 04:18:24 PM,1200 Block of INGALLS ST,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7305663224371, -122.381859307677)",142062283-E17 +142981446,81,14105143,Medical Incident,10/25/2014,10/25/2014,10/25/2014 11:10:59 AM,10/25/2014 11:16:42 AM,10/25/2014 11:25:34 AM,10/25/2014 11:25:41 AM,10/25/2014 11:29:08 AM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Patient Declined Transport,10/25/2014 12:05:16 PM,TARAVAL ST/40TH AV,San Francisco,94116,B08,18,7621,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7420556772933, -122.498189525757)",142981446-81 +152830188,KM07,15108489,Medical Incident,10/10/2015,10/09/2015,10/10/2015 12:59:54 AM,10/10/2015 01:00:58 AM,10/10/2015 01:01:14 AM,10/10/2015 01:03:43 AM,10/10/2015 01:10:28 AM,10/10/2015 01:23:31 AM,10/10/2015 01:51:11 AM,Code 2 Transport,10/10/2015 02:20:48 AM,3300 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.775892549655, -122.49464338851)",152830188-KM07 +141531811,KM01,14052577,Medical Incident,06/02/2014,06/02/2014,06/02/2014 01:54:31 PM,06/02/2014 01:55:57 PM,06/02/2014 01:56:35 PM,06/02/2014 01:58:26 PM,06/02/2014 02:04:36 PM,06/02/2014 02:18:34 PM,06/02/2014 02:34:19 PM,Code 2 Transport,06/02/2014 03:03:13 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",141531811-KM01 +152442308,77,15093116,Medical Incident,09/01/2015,09/01/2015,09/01/2015 02:46:56 PM,09/01/2015 02:46:56 PM,09/01/2015 02:47:34 PM,09/01/2015 02:47:51 PM,09/01/2015 02:57:09 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Unable to Locate,09/01/2015 03:07:18 PM,1000 Block of GREAT HWY,San Francisco,94122,B08,23,7722,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",152442308-77 +151811109,67,15069048,Medical Incident,06/30/2015,06/30/2015,06/30/2015 10:20:22 AM,06/30/2015 10:22:26 AM,06/30/2015 10:22:35 AM,06/30/2015 10:22:41 AM,06/30/2015 10:23:57 AM,06/30/2015 10:32:18 AM,06/30/2015 10:46:08 AM,Code 2 Transport,06/30/2015 11:02:27 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",151811109-67 +151233463,64,15046827,Medical Incident,05/03/2015,05/03/2015,05/03/2015 10:40:20 PM,05/03/2015 10:41:35 PM,05/03/2015 10:42:03 PM,05/03/2015 10:42:19 PM,05/03/2015 10:52:13 PM,05/03/2015 11:32:00 PM,05/03/2015 11:42:00 PM,Code 2 Transport,05/04/2015 12:13:45 AM,900 Block of ALVARADO ST,San Francisco,94114,B06,24,5373,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7532139558843, -122.441434209988)",151233463-64 +161001642,54,16039769,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:16:10 PM,04/09/2016 01:18:00 PM,04/09/2016 01:20:31 PM,04/09/2016 01:20:40 PM,04/09/2016 01:39:45 PM,04/09/2016 01:54:02 PM,04/09/2016 02:29:10 PM,Code 2 Transport,04/09/2016 03:14:02 PM,BEACH ST/MASON ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8074825129146, -122.41397500769)",161001642-54 +160930517,60,16036719,Medical Incident,04/02/2016,04/01/2016,04/02/2016 04:34:39 AM,04/02/2016 04:35:43 AM,04/02/2016 04:35:51 AM,04/02/2016 04:36:50 AM,04/02/2016 04:45:52 AM,04/02/2016 05:05:18 AM,04/02/2016 05:17:02 AM,Code 2 Transport,04/02/2016 06:12:41 AM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",160930517-60 +160951272,KM12,16037578,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:42:53 AM,04/04/2016 10:44:28 AM,04/04/2016 10:44:45 AM,04/04/2016 10:45:44 AM,04/04/2016 10:51:51 AM,04/04/2016 11:09:12 AM,04/04/2016 11:29:22 AM,Code 2 Transport,04/04/2016 11:55:12 AM,9TH ST/MARKET ST,San Francisco,94103,B02,36,2337,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160951272-KM12 +141801238,T13,14062191,Structure Fire,06/29/2014,06/29/2014,06/29/2014 10:31:04 AM,06/29/2014 10:31:04 AM,06/29/2014 10:31:58 AM,06/29/2014 10:34:41 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Fire,06/29/2014 10:34:45 AM,KEARNY ST/SACRAMENTO ST,San Francisco,94104,B01,13,1244,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",141801238-T13 +143254086,53,14115307,Medical Incident,11/21/2014,11/21/2014,11/21/2014 11:51:46 PM,11/21/2014 11:52:27 PM,11/21/2014 11:52:53 PM,11/21/2014 11:53:21 PM,11/21/2014 11:53:49 PM,11/22/2014 12:02:09 AM,11/22/2014 12:28:16 AM,Code 2 Transport,11/22/2014 12:55:30 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",143254086-53 +160932853,52,16036982,Medical Incident,04/02/2016,04/02/2016,04/02/2016 06:12:18 PM,04/02/2016 06:13:35 PM,04/02/2016 06:14:21 PM,04/02/2016 06:14:43 PM,04/02/2016 06:19:10 PM,04/02/2016 06:34:12 PM,04/02/2016 06:51:24 PM,Code 3 Transport,04/02/2016 06:59:51 PM,800 Block of SHOTWELL ST,San Francisco,94110,B06,7,544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7548379824748, -122.415327726268)",160932853-52 +141540652,E37,14052831,Medical Incident,06/03/2014,06/02/2014,06/03/2014 07:54:23 AM,06/03/2014 07:54:23 AM,06/03/2014 07:54:40 AM,06/03/2014 07:56:15 AM,06/03/2014 07:58:51 AM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,Medical Examiner,06/03/2014 08:05:56 AM,IOWA ST/23RD ST,San Francisco,94107,B10,37,2535,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7551548898327, -122.391901127872)",141540652-E37 +142671235,E18,14093438,Medical Incident,09/24/2014,09/24/2014,09/24/2014 10:05:14 AM,09/24/2014 10:06:21 AM,09/24/2014 10:07:28 AM,09/24/2014 10:10:07 AM,09/24/2014 10:14:10 AM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Code 2 Transport,09/24/2014 10:21:00 AM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",142671235-E18 +141930163,E07,14066763,Alarms,07/12/2014,07/11/2014,07/12/2014 01:04:52 AM,07/12/2014 01:05:59 AM,07/12/2014 01:06:07 AM,07/12/2014 01:07:19 AM,07/12/2014 01:10:25 AM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Fire,07/12/2014 01:35:31 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,2,2,9,Mission,"(37.7621440348149, -122.421551451612)",141930163-E07 +151000727,E01,15037753,Other,04/10/2015,04/10/2015,04/10/2015 08:28:22 AM,04/10/2015 08:34:09 AM,04/10/2015 08:39:44 AM,04/10/2015 08:39:44 AM,04/10/2015 08:39:46 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Fire,04/10/2015 08:41:22 AM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",151000727-E01 +141642751,E34,14056638,Medical Incident,06/13/2014,06/13/2014,06/13/2014 06:08:36 PM,06/13/2014 06:10:07 PM,06/13/2014 06:12:14 PM,06/13/2014 06:12:27 PM,06/13/2014 06:14:25 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Code 3 Transport,06/13/2014 06:26:26 PM,500 Block of 47TH AVE,San Francisco,94121,B07,34,7276,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7780500044705, -122.508299698216)",141642751-E34 +143631695,E08,14129861,Medical Incident,12/29/2014,12/29/2014,12/29/2014 01:25:58 PM,12/29/2014 01:29:05 PM,12/29/2014 01:30:58 PM,12/29/2014 01:36:21 PM,12/29/2014 01:36:21 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,No Merit,12/29/2014 01:39:50 PM,300 Block of BERRY ST,San Francisco,94158,B03,8,2235,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7731124835363, -122.39664007904)",143631695-E08 +160931069,AM08,16036781,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:47:13 AM,04/02/2016 09:49:45 AM,04/02/2016 09:50:02 AM,04/02/2016 09:51:00 AM,04/02/2016 09:53:21 AM,04/02/2016 10:14:25 AM,04/02/2016 10:40:55 AM,Code 2 Transport,04/02/2016 10:56:34 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160931069-AM08 +143471552,RWC1,14123764,Water Rescue,12/13/2014,12/13/2014,12/13/2014 12:01:59 PM,12/13/2014 12:02:32 PM,12/13/2014 12:03:58 PM,12/13/2014 12:05:35 PM,12/13/2014 12:22:14 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Code 2 Transport,12/13/2014 12:51:05 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Fire,1,SUPPORT,7,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",143471552-RWC1 +151033131,FD00A,15039071,,04/13/2015,04/13/2015,04/13/2015 06:34:22 PM,04/13/2015 06:39:13 PM,04/13/2015 07:30:41 PM,04/13/2015 07:30:41 PM,04/13/2015 07:30:41 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Code 2 Transport,04/13/2015 07:30:49 PM,0 Block of PIXLEY ST,San Francisco,94123,B04,16,3444,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,3,4,2,Marina,"(37.798746384821, -122.433297567626)",151033131-FD00A +160982525,AM02,16038989,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:34:46 PM,04/07/2016 03:35:45 PM,04/07/2016 03:36:41 PM,04/07/2016 03:37:35 PM,04/07/2016 03:44:46 PM,04/07/2016 04:00:07 PM,04/07/2016 04:08:37 PM,Code 2 Transport,04/07/2016 04:25:20 PM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7800578530259, -122.464142970045)",160982525-AM02 +150563419,E40,15021563,Medical Incident,02/25/2015,02/25/2015,02/25/2015 07:49:15 PM,02/25/2015 07:50:40 PM,02/25/2015 07:53:13 PM,02/25/2015 07:54:51 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Patient Declined Transport,02/25/2015 07:57:00 PM,14TH AV/VICENTE ST,San Francisco,94127,B08,40,7357,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7395643288093, -122.469975195615)",150563419-E40 +151641149,KM11,15062663,Medical Incident,06/13/2015,06/13/2015,06/13/2015 10:19:02 AM,06/13/2015 10:20:42 AM,06/13/2015 10:21:01 AM,06/13/2015 10:21:34 AM,06/13/2015 10:21:44 AM,06/13/2015 10:48:03 AM,06/13/2015 11:00:23 AM,Code 2 Transport,06/13/2015 11:34:57 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",151641149-KM11 +151062553,E07,15040122,Alarms,04/16/2015,04/16/2015,04/16/2015 03:52:43 PM,04/16/2015 03:53:59 PM,04/16/2015 03:54:41 PM,04/16/2015 03:55:20 PM,04/16/2015 03:57:55 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Fire,04/16/2015 04:11:08 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",151062553-E07 +161002245,65,16039832,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:24:11 PM,04/09/2016 04:25:02 PM,04/09/2016 04:25:28 PM,04/09/2016 04:26:02 PM,04/09/2016 04:54:48 PM,04/09/2016 05:13:34 PM,04/09/2016 05:29:31 PM,Code 2 Transport,04/09/2016 05:53:32 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",161002245-65 +141310802,T03,14044500,Structure Fire,05/11/2014,05/11/2014,05/11/2014 08:28:53 AM,05/11/2014 08:28:53 AM,05/11/2014 08:29:17 AM,05/11/2014 08:30:14 AM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Cancelled,05/11/2014 08:33:26 AM,HYDE ST/ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",141310802-T03 +153421038,E07,15131533,Medical Incident,12/08/2015,12/08/2015,12/08/2015 09:19:49 AM,12/08/2015 09:21:12 AM,12/08/2015 09:21:26 AM,12/08/2015 09:22:27 AM,12/08/2015 09:24:12 AM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Code 2 Transport,12/08/2015 10:06:21 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",153421038-E07 +160981471,52,16038876,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:04:29 AM,04/07/2016 11:07:15 AM,04/07/2016 11:07:54 AM,04/07/2016 11:16:12 AM,04/07/2016 11:20:19 AM,04/07/2016 11:43:01 AM,04/07/2016 12:03:34 PM,Code 2 Transport,04/07/2016 12:32:10 PM,3100 Block of BALBOA ST,San Francisco,94121,B07,14,7244,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7759901352962, -122.492505810279)",160981471-52 +151991583,61,15075829,Medical Incident,07/18/2015,07/18/2015,07/18/2015 12:01:26 PM,07/18/2015 12:02:45 PM,07/18/2015 12:03:34 PM,07/18/2015 12:03:45 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,No Merit,07/18/2015 12:14:25 PM,JUNIPERO SERRA BL/19TH AV,San Francisco,94132,B08,33,8422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Lakeshore,"(37.71717386983, -122.472572451935)",151991583-61 +160973257,KM05,16038558,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:23:45 PM,04/06/2016 05:23:45 PM,04/06/2016 05:25:04 PM,04/06/2016 05:26:35 PM,04/06/2016 05:42:22 PM,04/06/2016 05:54:50 PM,04/06/2016 06:31:15 PM,Code 2 Transport,04/06/2016 06:42:12 PM,2600 Block of 17TH AVE,San Francisco,94116,B08,40,7411,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7384875345339, -122.473157752879)",160973257-KM05 +161002152,AM08,16039823,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 04:00:55 PM,04/09/2016 04:02:09 PM,04/09/2016 04:03:08 PM,04/09/2016 04:04:01 PM,04/09/2016 04:12:24 PM,04/09/2016 04:24:55 PM,04/09/2016 04:42:09 PM,Code 2 Transport,04/09/2016 05:10:06 PM,0 Block of 0NB MARINA BL ON,Presidio,94123,B04,16,4323,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.8055133591227, -122.434812261281)",161002152-AM08 +141811198,T16,14062643,Citizen Assist / Service Call,06/30/2014,06/30/2014,06/30/2014 10:57:47 AM,06/30/2014 10:59:13 AM,06/30/2014 10:59:37 AM,06/30/2014 11:00:52 AM,06/30/2014 11:06:51 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 11:10:39 AM,MARINA BL/DIVISADERO ST,San Francisco,94123,B04,16,4214,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.8055811385957, -122.44398351784)",141811198-T16 +160993721,79,16039493,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:48:21 PM,04/08/2016 09:49:18 PM,04/08/2016 10:03:47 PM,04/08/2016 10:04:32 PM,04/08/2016 10:17:35 PM,04/08/2016 10:28:58 PM,04/08/2016 10:44:40 PM,Code 2 Transport,04/08/2016 11:08:13 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7844637837491, -122.417824560275)",160993721-79 +142160522,E07,14074791,Medical Incident,08/04/2014,08/03/2014,08/04/2014 06:48:12 AM,08/04/2014 06:48:27 AM,08/04/2014 06:49:06 AM,08/04/2014 06:50:17 AM,08/04/2014 06:52:50 AM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,Code 2 Transport,08/04/2014 07:00:26 AM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",142160522-E07 +143471802,64,14123795,Medical Incident,12/13/2014,12/13/2014,12/13/2014 01:07:36 PM,12/13/2014 01:09:03 PM,12/13/2014 01:09:38 PM,12/13/2014 01:09:48 PM,12/13/2014 01:26:53 PM,12/13/2014 01:49:36 PM,12/13/2014 02:12:54 PM,Code 2 Transport,12/13/2014 02:47:40 PM,100 Block of VICTORIA ST,San Francisco,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7136151594856, -122.465362817213)",143471802-64 +152110677,T02,15080257,Alarms,07/30/2015,07/29/2015,07/30/2015 07:29:28 AM,07/30/2015 07:30:42 AM,07/30/2015 07:30:59 AM,07/30/2015 07:33:11 AM,07/30/2015 07:35:17 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 07:44:14 AM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",152110677-T02 +160994079,64,16039540,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:36:20 PM,04/08/2016 11:39:57 PM,04/08/2016 11:40:26 PM,04/08/2016 11:40:42 PM,04/08/2016 11:49:55 PM,04/08/2016 11:59:54 PM,04/09/2016 12:26:50 AM,Code 2 Transport,04/09/2016 01:01:54 AM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",160994079-64 +143483320,KM02,14124381,Medical Incident,12/14/2014,12/14/2014,12/14/2014 08:47:38 PM,12/14/2014 08:51:09 PM,12/14/2014 08:51:26 PM,12/14/2014 08:52:06 PM,12/14/2014 08:59:34 PM,12/14/2014 09:07:11 PM,12/14/2014 09:29:15 PM,Code 2 Transport,12/14/2014 10:06:17 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7836127222201, -122.403258537277)",143483320-KM02 +160950384,KM03,16037514,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:26:03 AM,04/04/2016 05:29:00 AM,04/04/2016 05:30:02 AM,04/04/2016 05:30:02 AM,04/04/2016 05:40:41 AM,04/04/2016 06:01:09 AM,04/04/2016 06:11:12 AM,Code 2 Transport,04/04/2016 06:39:44 AM,0 Block of 3RD ST,San Francisco,94103,B03,1,2211,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",160950384-KM03 +153442263,E03,15132464,Medical Incident,12/10/2015,12/10/2015,12/10/2015 02:54:10 PM,12/10/2015 02:55:35 PM,12/10/2015 02:59:20 PM,12/10/2015 03:02:47 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/10/2015 03:09:31 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",153442263-E03 +141872186,T02,14064845,Medical Incident,07/06/2014,07/06/2014,07/06/2014 04:30:08 PM,07/06/2014 04:30:51 PM,07/06/2014 04:31:05 PM,07/06/2014 04:32:37 PM,07/06/2014 04:36:07 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Code 2 Transport,07/06/2014 04:43:58 PM,1000 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,North Beach,"(37.8041876050837, -122.415703120443)",141872186-T02 +160922187,67,16036485,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:12:42 PM,04/01/2016 03:13:33 PM,04/01/2016 03:15:17 PM,04/01/2016 03:15:25 PM,04/01/2016 03:23:04 PM,04/01/2016 03:42:47 PM,04/01/2016 03:53:09 PM,Code 2 Transport,04/01/2016 04:38:19 PM,2700 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",160922187-67 +152872540,E07,15110326,Medical Incident,10/14/2015,10/14/2015,10/14/2015 03:00:28 PM,10/14/2015 03:00:48 PM,10/14/2015 03:01:19 PM,10/14/2015 03:02:26 PM,10/14/2015 03:06:02 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 03:13:06 PM,300 Block of DOLORES ST,San Francisco,94110,B02,6,5251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.764312724903, -122.426194224065)",152872540-E07 +152011944,65,15076630,Medical Incident,07/20/2015,07/20/2015,07/20/2015 01:30:28 PM,07/20/2015 01:33:31 PM,07/20/2015 01:33:53 PM,07/20/2015 01:34:43 PM,07/20/2015 01:45:10 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Cancelled,07/20/2015 01:57:39 PM,HOWARD ST/3RD ST,San Francisco,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",152011944-65 +153350422,KM07,15128677,Medical Incident,12/01/2015,11/30/2015,12/01/2015 05:43:12 AM,12/01/2015 05:44:50 AM,12/01/2015 05:45:05 AM,12/01/2015 05:45:53 AM,12/01/2015 05:48:19 AM,04/25/2016 01:06:54 PM,04/25/2016 01:06:54 PM,Code 2 Transport,12/01/2015 06:44:18 AM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",153350422-KM07 +160931324,85,16036816,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 11:04:48 AM,04/02/2016 11:07:42 AM,04/02/2016 11:28:42 AM,04/02/2016 11:28:42 AM,04/02/2016 11:40:13 AM,04/02/2016 11:40:16 AM,04/02/2016 12:19:47 PM,Code 2 Transport,04/02/2016 01:27:42 PM,FULTON ST/8TH AV,San Francisco,94122,B07,31,7133,2,2,2,true,Non Life-threatening,1,MEDIC,4,7,1,Inner Richmond,"(37.7733982051293, -122.4658831608)",160931324-85 +152433193,B03,15092823,Structure Fire,08/31/2015,08/31/2015,08/31/2015 06:21:05 PM,08/31/2015 06:21:51 PM,08/31/2015 06:23:14 PM,08/31/2015 06:24:37 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Fire,08/31/2015 06:26:55 PM,500 Block of AMADOR ST,San Francisco,94124,B10,25,6463,3,3,3,false,Alarm,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.745994401434, -122.383000828344)",152433193-B03 +150370017,E25,15014064,Alarms,02/06/2015,02/05/2015,02/06/2015 12:04:27 AM,02/06/2015 12:05:44 AM,02/06/2015 12:05:51 AM,02/06/2015 12:08:19 AM,02/06/2015 12:11:08 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/06/2015 12:17:43 AM,2000 Block of EVANS AVE,San Francisco,94124,B10,9,6422,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7477614969563, -122.396439770818)",150370017-E25 +152581813,AM12,15098659,Medical Incident,09/15/2015,09/15/2015,09/15/2015 12:22:54 PM,09/15/2015 12:24:35 PM,09/15/2015 12:26:07 PM,09/15/2015 12:27:15 PM,09/15/2015 12:30:51 PM,09/15/2015 12:53:40 PM,09/15/2015 01:10:44 PM,Code 2 Transport,09/15/2015 01:41:29 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",152581813-AM12 +152311191,B06,15088061,Alarms,08/19/2015,08/19/2015,08/19/2015 10:12:17 AM,08/19/2015 10:13:17 AM,08/19/2015 10:14:41 AM,08/19/2015 10:15:54 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Fire,08/19/2015 10:25:12 AM,100 Block of GRAYSTONE TER,San Francisco,94114,B05,24,5275,3,3,3,false,Alarm,1,CHIEF,3,6,8,Castro/Upper Market,"(37.7572594107459, -122.445435497389)",152311191-B06 +142050756,E03,14070879,Structure Fire,07/24/2014,07/23/2014,07/24/2014 07:48:58 AM,07/24/2014 07:48:58 AM,07/24/2014 07:49:35 AM,07/24/2014 07:51:43 AM,07/24/2014 07:53:38 AM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/24/2014 07:54:10 AM,1000 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",142050756-E03 +142513353,78,14087695,Medical Incident,09/08/2014,09/08/2014,09/08/2014 09:34:39 PM,09/08/2014 09:36:26 PM,09/08/2014 09:36:55 PM,09/08/2014 09:37:21 PM,09/08/2014 09:40:20 PM,09/08/2014 09:56:38 PM,09/08/2014 10:16:47 PM,Code 2 Transport,09/08/2014 10:25:59 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",142513353-78 +152273196,T03,15086668,Structure Fire,08/15/2015,08/15/2015,08/15/2015 06:11:05 PM,08/15/2015 06:11:05 PM,08/15/2015 06:11:31 PM,08/15/2015 06:12:52 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Fire,08/15/2015 06:15:11 PM,POWELL ST/OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Alarm,1,TRUCK,2,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",152273196-T03 +153361458,B03,15129189,Alarms,12/02/2015,12/02/2015,12/02/2015 11:14:40 AM,12/02/2015 11:16:22 AM,12/02/2015 11:17:34 AM,12/02/2015 11:19:23 AM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Fire,12/02/2015 11:21:54 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7889890278006, -122.392241749489)",153361458-B03 +153050451,60,15116951,Medical Incident,11/01/2015,10/31/2015,11/01/2015 01:39:57 AM,11/01/2015 01:40:19 AM,11/01/2015 01:40:55 AM,11/01/2015 01:42:03 AM,11/01/2015 01:50:14 AM,11/01/2015 01:01:11 AM,11/01/2015 01:01:12 AM,Code 2 Transport,11/01/2015 01:40:55 AM,KEITH ST/QUESADA AV,San Francisco,94124,B10,17,6551,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,10,10,Bayview Hunters Point,"(37.7312317894346, -122.38772939119)",153050451-60 +152503695,E26,15095685,Medical Incident,09/07/2015,09/07/2015,09/07/2015 11:16:03 PM,09/07/2015 11:16:13 PM,09/07/2015 11:16:27 PM,09/07/2015 11:18:49 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Code 2 Transport,09/07/2015 11:19:14 PM,200 Block of SILVER AVE,San Francisco,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7294754378112, -122.432892177428)",152503695-E26 +152840716,78,15108963,Medical Incident,10/11/2015,10/10/2015,10/11/2015 05:17:25 AM,10/11/2015 05:19:15 AM,10/11/2015 05:19:50 AM,10/11/2015 05:20:07 AM,10/11/2015 05:26:48 AM,10/11/2015 05:33:27 AM,10/11/2015 05:39:48 AM,Code 2 Transport,10/11/2015 06:00:58 AM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",152840716-78 +160921316,KM09,16036401,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:11:58 AM,04/01/2016 11:13:46 AM,04/01/2016 11:14:24 AM,04/01/2016 11:14:57 AM,04/01/2016 11:22:00 AM,04/01/2016 11:44:38 AM,04/01/2016 11:53:18 AM,Code 2 Transport,04/01/2016 12:39:39 PM,GEARY BL/LAGUNA ST,San Francisco,94109,B04,3,3323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7849538777807, -122.427988928146)",160921316-KM09 +160950398,71,16037516,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:40:24 AM,04/04/2016 05:42:25 AM,04/04/2016 05:42:54 AM,04/04/2016 05:43:00 AM,04/04/2016 05:45:01 AM,04/04/2016 05:47:18 AM,04/04/2016 06:33:02 AM,Code 2 Transport,04/04/2016 06:46:00 AM,24TH ST/VERMONT ST,San Francisco,94107,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7531783675357, -122.403405609347)",160950398-71 +142601408,D2,14090804,Structure Fire,09/17/2014,09/17/2014,09/17/2014 11:20:53 AM,09/17/2014 11:21:22 AM,09/17/2014 11:22:26 AM,09/17/2014 11:23:45 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 11:28:38 AM,2400 Block of 43RD AVE,San Francisco,94116,B08,18,7643,3,3,3,false,Alarm,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7409765003941, -122.501407108268)",142601408-D2 +150311547,70,15011951,Medical Incident,01/31/2015,01/31/2015,01/31/2015 12:10:44 PM,01/31/2015 12:11:47 PM,01/31/2015 12:12:58 PM,01/31/2015 12:13:23 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Cancelled,01/31/2015 12:14:35 PM,CALIFORNIA ST/22ND AV,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7840282375156, -122.481791171826)",150311547-70 +160991481,64,16039276,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:09:49 PM,04/08/2016 12:10:53 PM,04/08/2016 12:11:09 PM,04/08/2016 12:12:15 PM,04/08/2016 12:17:22 PM,04/08/2016 12:26:46 PM,04/08/2016 12:53:39 PM,Code 2 Transport,04/08/2016 01:30:16 PM,2ND ST/MISSION ST,San Francisco,94105,B03,1,2145,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.788007159489, -122.39979802517)",160991481-64 +141420209,68,14048550,Medical Incident,05/22/2014,05/21/2014,05/22/2014 02:04:05 AM,05/22/2014 02:04:05 AM,05/22/2014 02:04:36 AM,05/22/2014 02:04:41 AM,05/22/2014 02:29:47 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Patient Declined Transport,05/22/2014 02:29:58 AM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",141420209-68 +151250275,E41,15047226,Alarms,05/05/2015,05/04/2015,05/05/2015 04:06:44 AM,05/05/2015 04:07:54 AM,05/05/2015 04:08:04 AM,05/05/2015 04:09:35 AM,05/05/2015 04:12:02 AM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Fire,05/05/2015 04:33:05 AM,500 Block of SUTTER ST,San Francisco,94108,B01,3,1412,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",151250275-E41 +160972971,56,16038530,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:28:56 PM,04/06/2016 04:28:56 PM,04/06/2016 04:33:16 PM,04/06/2016 04:33:30 PM,04/06/2016 04:43:56 PM,04/06/2016 04:54:31 PM,04/06/2016 05:21:22 PM,Code 2 Transport,04/06/2016 05:40:26 PM,PUEBLO ST/VELASCO AV,San Francisco,94134,B09,43,6247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7092328196087, -122.416808446994)",160972971-56 +152682810,77,15102780,Medical Incident,09/25/2015,09/25/2015,09/25/2015 05:13:06 PM,09/25/2015 05:14:33 PM,09/25/2015 05:15:52 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Code 2 Transport,09/25/2015 05:18:23 PM,900 Block of RUTLAND ST,San Francisco,94134,B09,44,6256,2,2,2,false,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7106276693523, -122.408217888233)",152682810-77 +150332774,T02,15012839,Alarms,02/02/2015,02/02/2015,02/02/2015 05:49:11 PM,02/02/2015 05:50:40 PM,02/02/2015 05:50:50 PM,02/02/2015 05:52:49 PM,02/02/2015 05:55:50 PM,04/25/2016 01:12:29 PM,04/25/2016 01:12:29 PM,Fire,02/02/2015 06:10:44 PM,200 Block of POST ST,San Francisco,94108,B01,1,1316,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7886509906461, -122.406006971458)",150332774-T02 +160933029,72,16036994,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:04:50 PM,04/02/2016 07:04:50 PM,04/02/2016 07:08:14 PM,04/02/2016 07:08:17 PM,04/02/2016 07:12:01 PM,04/02/2016 07:31:48 PM,04/02/2016 08:10:52 PM,Code 2 Transport,04/02/2016 08:53:43 PM,WASHINGTON ST/THE EMBARCADERO NOR,San Francisco,94111,B01,13,1116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7965582462412, -122.396189037335)",160933029-72 +151331074,RS2,15050377,Medical Incident,05/13/2015,05/13/2015,05/13/2015 09:26:52 AM,05/13/2015 09:27:19 AM,05/13/2015 09:30:27 AM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Patient Declined Transport,05/13/2015 09:31:30 AM,200 Block of FILBERT ST,San Francisco,94133,B01,28,1225,3,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,7,1,3,North Beach,"(37.8020858209588, -122.403174666373)",151331074-RS2 +141792690,E29,14061886,Structure Fire,06/28/2014,06/28/2014,06/28/2014 05:49:31 PM,06/28/2014 05:49:56 PM,06/28/2014 05:51:08 PM,06/28/2014 05:52:08 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,Fire,06/28/2014 06:49:01 PM,3300 Block of 17TH ST,San Francisco,94110,B02,7,5247,3,3,3,false,Fire,1,ENGINE,11,2,9,Mission,"(37.7632828833773, -122.421077099957)",141792690-E29 +141971100,T09,14068168,Medical Incident,07/16/2014,07/16/2014,07/16/2014 09:33:25 AM,07/16/2014 09:35:26 AM,07/16/2014 09:36:16 AM,07/16/2014 09:37:07 AM,07/16/2014 09:39:37 AM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Code 2 Transport,07/16/2014 09:47:30 AM,1100 Block of YORK ST,San Francisco,94110,B06,9,5531,3,3,3,false,Non Life-threatening,1,TRUCK,1,6,9,Mission,"(37.7536568191077, -122.408196896475)",141971100-T09 +143650414,E36,14130537,Alarms,12/31/2014,12/30/2014,12/31/2014 05:32:02 AM,12/31/2014 05:32:02 AM,12/31/2014 05:32:20 AM,12/31/2014 05:34:14 AM,12/31/2014 05:37:03 AM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Fire,12/31/2014 05:58:49 AM,1600 Block of 16TH ST,San Francisco,94103,B02,29,2413,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission Bay,"(37.7659910693857, -122.403158787515)",143650414-E36 +160931733,KM02,16036855,Elevator / Escalator Rescue,04/02/2016,04/02/2016,04/02/2016 01:03:56 PM,04/02/2016 01:05:26 PM,04/02/2016 01:07:21 PM,04/02/2016 01:08:36 PM,04/02/2016 01:14:08 PM,04/02/2016 01:35:20 PM,04/02/2016 01:45:10 PM,Code 2 Transport,04/02/2016 02:08:51 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,false,Alarm,1,PRIVATE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160931733-KM02 +141532762,RS2,14052690,Medical Incident,06/02/2014,06/02/2014,06/02/2014 06:55:28 PM,06/02/2014 06:56:10 PM,06/02/2014 06:58:23 PM,06/02/2014 07:02:18 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Code 2 Transport,06/02/2014 07:02:20 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,255,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",141532762-RS2 +151721192,KM11,15065634,Medical Incident,06/21/2015,06/21/2015,06/21/2015 10:47:47 AM,06/21/2015 10:49:23 AM,06/21/2015 10:49:41 AM,06/21/2015 10:51:07 AM,06/21/2015 10:58:12 AM,06/21/2015 11:17:21 AM,06/21/2015 11:47:32 AM,Code 2 Transport,06/21/2015 12:28:00 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8084350175869, -122.410774214375)",151721192-KM11 +160983039,77,16039044,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:58:37 PM,04/07/2016 05:58:58 PM,04/07/2016 06:00:08 PM,04/07/2016 06:00:26 PM,04/07/2016 06:09:14 PM,04/07/2016 06:25:26 PM,04/07/2016 06:43:57 PM,Code 2 Transport,04/07/2016 07:31:07 PM,2300 Block of 44TH AV,San Francisco,94116,B08,18,7644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7427965808116, -122.502611747737)",160983039-77 +141850917,73,14063970,Medical Incident,07/04/2014,07/04/2014,07/04/2014 09:59:44 AM,07/04/2014 10:00:54 AM,07/04/2014 10:03:14 AM,07/04/2014 10:03:14 AM,07/04/2014 10:08:03 AM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Medical Examiner,07/04/2014 10:33:31 AM,1600 Block of 43RD AVE,San Francisco,94122,B08,23,7651,E,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7558907938511, -122.502453384004)",141850917-73 +161001661,50,16039773,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:19:59 PM,04/09/2016 01:22:11 PM,04/09/2016 01:22:31 PM,04/09/2016 01:22:39 PM,04/09/2016 01:26:29 PM,04/09/2016 01:54:54 PM,04/09/2016 02:02:34 PM,Code 2 Transport,04/09/2016 03:06:24 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",161001661-50 +151201993,79,15045407,Medical Incident,04/30/2015,04/30/2015,04/30/2015 01:40:22 PM,04/30/2015 01:40:39 PM,04/30/2015 01:40:56 PM,04/30/2015 01:41:32 PM,04/30/2015 01:50:54 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,No Merit,04/30/2015 01:58:08 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",151201993-79 +153160847,E03,15121336,Medical Incident,11/12/2015,11/12/2015,11/12/2015 08:45:57 AM,11/12/2015 08:49:54 AM,11/12/2015 08:50:39 AM,11/12/2015 08:51:46 AM,11/12/2015 08:59:15 AM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,Code 2 Transport,11/12/2015 09:07:25 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",153160847-E03 +143233433,T03,14114530,Structure Fire,11/19/2014,11/19/2014,11/19/2014 09:48:38 PM,11/19/2014 09:49:44 PM,11/19/2014 09:50:18 PM,11/19/2014 09:51:14 PM,11/19/2014 09:55:04 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Code 2 Transport,11/19/2014 10:44:51 PM,1700 Block of FILBERT ST,San Francisco,94123,B04,16,3245,3,3,3,false,Fire,1,TRUCK,5,4,2,Marina,"(37.7990163402564, -122.428290722411)",143233433-T03 +151334109,T03,15050662,Structure Fire,05/13/2015,05/13/2015,05/13/2015 10:21:34 PM,05/13/2015 10:21:45 PM,05/13/2015 10:22:00 PM,05/13/2015 10:22:48 PM,05/13/2015 10:25:31 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Fire,05/13/2015 10:26:33 PM,1200 Block of SACRAMENTO ST,San Francisco,94108,B01,41,1465,3,3,3,false,Alarm,1,TRUCK,6,1,3,Nob Hill,"(37.7925017052559, -122.413482452376)",151334109-T03 +143551574,61,14126893,Medical Incident,12/21/2014,12/21/2014,12/21/2014 11:53:22 AM,12/21/2014 11:53:22 AM,12/21/2014 11:54:51 AM,12/21/2014 11:55:22 AM,12/21/2014 12:08:25 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Cancelled,12/21/2014 12:12:25 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",143551574-61 +150871330,56,15033186,Medical Incident,03/28/2015,03/28/2015,03/28/2015 10:57:23 AM,03/28/2015 10:58:57 AM,03/28/2015 10:59:27 AM,03/28/2015 11:00:01 AM,03/28/2015 11:15:18 AM,03/28/2015 11:29:47 AM,03/28/2015 11:46:04 AM,Code 2 Transport,03/28/2015 12:13:32 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",150871330-56 +141730051,E01,14059530,Medical Incident,06/22/2014,06/21/2014,06/22/2014 12:17:56 AM,06/22/2014 12:18:29 AM,06/22/2014 12:20:06 AM,06/22/2014 12:21:55 AM,04/25/2016 01:16:38 PM,04/25/2016 01:16:38 PM,04/25/2016 01:16:38 PM,Cancelled,06/22/2014 12:24:36 AM,0 Block of SUMNER ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7763307297964, -122.410457019853)",141730051-E01 +150893197,T17,15034080,Structure Fire,03/30/2015,03/30/2015,03/30/2015 08:43:01 PM,03/30/2015 08:43:12 PM,03/30/2015 08:43:25 PM,03/30/2015 08:43:39 PM,03/30/2015 08:45:18 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Fire,03/30/2015 08:45:32 PM,ARLETA AV/ALPHA ST,San Francisco,94134,B10,44,6267,3,3,3,false,Alarm,1,TRUCK,1,9,10,Visitacion Valley,"(37.713215734393, -122.404842431928)",150893197-T17 +141373812,E35,14047109,Medical Incident,05/17/2014,05/17/2014,05/17/2014 11:35:47 PM,05/17/2014 11:37:46 PM,05/17/2014 11:40:24 PM,05/17/2014 11:42:00 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,Code 2 Transport,05/17/2014 11:44:17 PM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",141373812-E35 +141401032,73,14047937,Medical Incident,05/20/2014,05/20/2014,05/20/2014 09:53:00 AM,05/20/2014 09:54:25 AM,05/20/2014 09:54:42 AM,05/20/2014 09:54:56 AM,05/20/2014 10:01:45 AM,05/20/2014 10:28:05 AM,04/25/2016 01:17:13 PM,Code 2 Transport,05/20/2014 11:15:07 AM,3900 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",141401032-73 +160941856,KM05,16037264,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:14:34 PM,04/03/2016 01:15:47 PM,04/03/2016 01:16:19 PM,04/03/2016 01:16:51 PM,04/03/2016 01:24:05 PM,04/03/2016 01:47:02 PM,04/03/2016 02:10:49 PM,Code 2 Transport,04/03/2016 02:41:55 PM,300 Block of RICHLAND AV,San Francisco,94110,B06,32,5644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Bernal Heights,"(37.7356359705253, -122.418465889447)",160941856-KM05 +160973487,88,16038594,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:13:13 PM,04/06/2016 06:13:13 PM,04/06/2016 06:15:31 PM,04/06/2016 06:15:40 PM,04/06/2016 06:25:26 PM,04/06/2016 06:43:25 PM,04/06/2016 06:52:33 PM,Code 2 Transport,04/06/2016 07:24:53 PM,1300 Block of 20TH AVE,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7625809452391, -122.478195483155)",160973487-88 +142771689,E13,14097367,Alarms,10/04/2014,10/04/2014,10/04/2014 11:53:17 AM,10/04/2014 11:54:27 AM,10/04/2014 11:54:40 AM,10/04/2014 11:55:15 AM,10/04/2014 11:57:17 AM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Fire,10/04/2014 12:05:51 PM,0 Block of SANSOME ST,San Francisco,94104,B01,13,1164,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",142771689-E13 +160960044,71,16037847,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:21:12 AM,04/05/2016 12:21:37 AM,04/05/2016 12:21:55 AM,04/05/2016 12:22:03 AM,04/05/2016 12:25:16 AM,04/05/2016 12:49:49 AM,04/05/2016 01:00:50 AM,Code 2 Transport,04/05/2016 01:36:08 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160960044-71 +160950418,AM02,16037520,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:58:01 AM,04/04/2016 05:58:49 AM,04/04/2016 05:59:26 AM,04/04/2016 06:00:04 AM,04/04/2016 06:06:19 AM,04/04/2016 06:22:55 AM,04/04/2016 06:42:06 AM,Code 2 Transport,04/04/2016 07:00:11 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160950418-AM02 +142202943,E29,14076459,Medical Incident,08/08/2014,08/08/2014,08/08/2014 06:22:21 PM,08/08/2014 06:23:29 PM,08/08/2014 06:23:53 PM,08/08/2014 06:25:19 PM,08/08/2014 06:28:03 PM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,Code 2 Transport,08/08/2014 06:35:18 PM,400 Block of 10TH ST,San Francisco,94103,B02,29,2345,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7709248562482, -122.410555957263)",142202943-E29 +142832834,B03,14099769,Structure Fire,10/10/2014,10/10/2014,10/10/2014 06:22:26 PM,10/10/2014 06:23:12 PM,10/10/2014 06:24:23 PM,10/10/2014 06:24:33 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Fire,10/10/2014 06:30:18 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,3,3,3,false,Alarm,1,CHIEF,9,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",142832834-B03 +161003445,62,16039974,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:34:10 PM,04/09/2016 10:34:10 PM,04/09/2016 10:36:34 PM,04/09/2016 10:36:40 PM,04/09/2016 10:45:53 PM,04/09/2016 11:03:11 PM,04/09/2016 11:18:01 PM,Code 2 Transport,04/09/2016 11:50:31 PM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",161003445-62 +152153041,T09,15081947,Structure Fire,08/03/2015,08/03/2015,08/03/2015 05:49:24 PM,08/03/2015 05:49:24 PM,08/03/2015 05:49:30 PM,08/03/2015 05:51:18 PM,08/03/2015 05:52:18 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Fire,08/03/2015 05:52:55 PM,QUINT ST/JERROLD AV,San Francisco,94124,B10,9,6443,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7409009621796, -122.393114979107)",152153041-T09 +152602013,KM12,15099391,Medical Incident,09/17/2015,09/17/2015,09/17/2015 01:33:08 PM,09/17/2015 01:34:58 PM,09/17/2015 01:44:21 PM,09/17/2015 01:44:21 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Patient Declined Transport,09/17/2015 01:46:15 PM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,2,2,2,false,Non Life-threatening,1,PRIVATE,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",152602013-KM12 +143620933,E37,14129450,Medical Incident,12/28/2014,12/28/2014,12/28/2014 09:33:37 AM,12/28/2014 09:35:38 AM,12/28/2014 09:36:33 AM,12/28/2014 09:38:44 AM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Code 2 Transport,12/28/2014 09:49:54 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",143620933-E37 +142351667,E02,14081706,Structure Fire,08/23/2014,08/23/2014,08/23/2014 12:48:58 PM,08/23/2014 12:49:37 PM,08/23/2014 12:52:55 PM,08/23/2014 12:53:44 PM,08/23/2014 12:56:13 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,Fire,08/23/2014 01:07:10 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,4,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",142351667-E02 +143181743,AM08,14112629,Medical Incident,11/14/2014,11/14/2014,11/14/2014 12:49:04 PM,11/14/2014 12:49:48 PM,11/14/2014 12:50:36 PM,11/14/2014 12:52:04 PM,11/14/2014 01:03:46 PM,11/14/2014 01:15:10 PM,11/14/2014 01:46:47 PM,Code 2 Transport,11/14/2014 02:20:00 PM,1400 Block of VAN DYKE AVE,San Francisco,94124,B10,17,6651,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7276164365297, -122.389570152393)",143181743-AM08 +152083364,B01,15079395,Outside Fire,07/27/2015,07/27/2015,07/27/2015 07:48:09 PM,07/27/2015 07:48:09 PM,07/27/2015 07:49:00 PM,07/27/2015 07:50:22 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/27/2015 07:53:23 PM,2000 Block of KEARNY ST,San Francisco,94133,B01,28,937,3,3,3,false,Alarm,1,CHIEF,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",152083364-B01 +160922178,E19,16036484,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:11:13 PM,04/01/2016 03:11:44 PM,04/01/2016 03:12:52 PM,04/01/2016 03:14:05 PM,04/01/2016 03:16:04 PM,04/01/2016 03:38:11 PM,04/01/2016 04:06:12 PM,Code 3 Transport,04/01/2016 04:26:49 PM,300 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8731,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7310536423783, -122.476383904851)",160922178-E19 +161001316,62,16039725,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:20:34 AM,04/09/2016 11:23:07 AM,04/09/2016 11:24:44 AM,04/09/2016 11:24:52 AM,04/09/2016 11:46:00 AM,04/09/2016 12:06:31 PM,04/09/2016 12:27:30 PM,Code 3 Transport,04/09/2016 12:55:49 PM,2400 Block of 40TH AVE,San Francisco,94116,B08,18,7636,2,E,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7411202245251, -122.498193339522)",161001316-62 +160942023,KM06,16037279,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:05:03 PM,04/03/2016 02:05:03 PM,04/03/2016 02:05:27 PM,04/03/2016 02:06:07 PM,04/03/2016 02:11:14 PM,04/03/2016 02:38:34 PM,04/03/2016 02:47:43 PM,Code 2 Transport,04/03/2016 03:40:50 PM,1300 Block of GREENWICH ST,San Francisco,94109,B01,16,3132,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Russian Hill,"(37.8007832193619, -122.421899178198)",160942023-KM06 +160991671,77,16039292,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:59:35 PM,04/08/2016 01:00:36 PM,04/08/2016 01:00:59 PM,04/08/2016 01:01:12 PM,04/08/2016 01:04:06 PM,04/08/2016 01:18:32 PM,04/08/2016 01:26:44 PM,Code 2 Transport,04/08/2016 02:02:44 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160991671-77 +160953563,82,16037783,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:22:56 PM,04/04/2016 08:22:56 PM,04/04/2016 08:22:56 PM,04/04/2016 08:22:56 PM,04/04/2016 08:22:56 PM,04/04/2016 08:40:44 PM,04/04/2016 08:53:24 PM,Code 2 Transport,04/04/2016 09:39:05 PM,3800 Block of 3RD ST,San Francisco,94124,B10,25,6457,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7422681434531, -122.387936728644)",160953563-82 +153464410,61,15133462,Medical Incident,12/12/2015,12/12/2015,12/12/2015 11:34:00 PM,12/12/2015 11:35:55 PM,12/12/2015 11:36:44 PM,12/12/2015 11:40:42 PM,12/12/2015 11:45:06 PM,12/12/2015 11:59:09 PM,12/13/2015 12:06:37 AM,Code 2 Transport,12/13/2015 12:42:11 AM,900 Block of MARKET ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",153464410-61 +160921838,89,16036453,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:38:59 PM,04/01/2016 01:41:26 PM,04/01/2016 01:42:20 PM,04/01/2016 01:42:36 PM,04/01/2016 01:56:37 PM,04/01/2016 02:27:22 PM,04/01/2016 02:58:42 PM,Code 2 Transport,04/01/2016 03:30:55 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160921838-89 +142433675,T08,14084841,Alarms,08/31/2014,08/31/2014,08/31/2014 11:41:17 PM,08/31/2014 11:42:23 PM,08/31/2014 11:43:48 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Fire,08/31/2014 11:45:32 PM,1100 Block of MISSION ST,San Francisco,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,4,2,6,South of Market,"(37.7785895740312, -122.411626152299)",142433675-T08 +151193045,82,15045121,Medical Incident,04/29/2015,04/29/2015,04/29/2015 05:53:39 PM,04/29/2015 05:54:49 PM,04/29/2015 05:59:38 PM,04/29/2015 05:59:38 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,No Merit,04/29/2015 06:05:19 PM,700 Block of 2ND ST,San Francisco,94107,B03,8,2154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,5,3,6,Mission Bay,"(37.78019523865, -122.390107968661)",151193045-82 +142821394,E20,14099234,Transfer,10/09/2014,10/09/2014,10/09/2014 11:42:43 AM,10/09/2014 11:42:43 AM,10/09/2014 11:43:13 AM,10/09/2014 11:44:40 AM,10/09/2014 11:46:51 AM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,No Merit,10/09/2014 11:58:58 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",142821394-E20 +151242595,E07,15047080,Alarms,05/04/2015,05/04/2015,05/04/2015 05:13:24 PM,05/04/2015 05:14:45 PM,05/04/2015 05:15:25 PM,05/04/2015 05:16:47 PM,05/04/2015 05:18:36 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Fire,05/04/2015 05:20:52 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7580927746489, -122.414684745421)",151242595-E07 +143542217,B02,14126520,Alarms,12/20/2014,12/20/2014,12/20/2014 12:23:27 PM,12/20/2014 12:25:49 PM,12/20/2014 12:26:05 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Fire,12/20/2014 12:27:09 PM,600 Block of SCOTT ST,San Francisco,94117,B05,21,4136,3,3,3,false,Alarm,1,CHIEF,2,5,5,Hayes Valley,"(37.7756631447471, -122.436291871367)",143542217-B02 +161000514,83,16039624,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:23:15 AM,04/09/2016 04:24:58 AM,04/09/2016 04:25:14 AM,04/09/2016 04:25:37 AM,04/09/2016 04:30:30 AM,04/09/2016 04:47:20 AM,04/09/2016 05:13:35 AM,Code 2 Transport,04/09/2016 05:27:30 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",161000514-83 +143451437,70,14122801,Medical Incident,12/11/2014,12/11/2014,12/11/2014 10:34:02 AM,12/11/2014 10:34:46 AM,12/11/2014 10:35:05 AM,12/11/2014 10:35:30 AM,12/11/2014 10:40:21 AM,12/11/2014 10:52:48 AM,12/11/2014 11:06:41 AM,Code 2 Transport,12/11/2014 12:20:33 PM,1600 Block of QUESADA AVE,San Francisco,94124,B10,17,6535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7327119317696, -122.390462761272)",143451437-70 +151162165,E13,15043877,Medical Incident,04/26/2015,04/26/2015,04/26/2015 03:38:16 PM,04/26/2015 03:40:04 PM,04/26/2015 03:40:20 PM,04/26/2015 03:41:22 PM,04/26/2015 03:58:15 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Code 2 Transport,04/26/2015 04:03:09 PM,700 Block of KEARNY ST,San Francisco,94111,B01,13,1245,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",151162165-E13 +141433389,84,14049237,Medical Incident,05/23/2014,05/23/2014,05/23/2014 09:34:37 PM,05/23/2014 09:35:35 PM,05/23/2014 09:36:33 PM,05/23/2014 09:36:45 PM,05/23/2014 09:48:25 PM,05/23/2014 10:08:48 PM,05/23/2014 10:25:44 PM,Code 2 Transport,05/23/2014 10:51:53 PM,NORTH STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",141433389-84 +142230555,E24,14077299,Medical Incident,08/11/2014,08/10/2014,08/11/2014 07:21:45 AM,08/11/2014 07:23:15 AM,08/11/2014 07:23:48 AM,08/11/2014 07:25:27 AM,08/11/2014 07:28:39 AM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,No Merit,08/11/2014 07:31:10 AM,22ND ST/CASTRO ST,San Francisco,94114,B06,24,5466,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7544940096449, -122.43439413561)",142230555-E24 +151312179,64,15049752,Medical Incident,05/11/2015,05/11/2015,05/11/2015 02:48:56 PM,05/11/2015 02:50:56 PM,05/11/2015 03:01:33 PM,05/11/2015 03:01:49 PM,05/11/2015 03:17:02 PM,05/11/2015 03:24:42 PM,05/11/2015 03:47:29 PM,Code 2 Transport,05/11/2015 04:25:13 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7799892619986, -122.407376463936)",151312179-64 +160931383,65,16036821,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:23:20 AM,04/02/2016 11:25:33 AM,04/02/2016 11:52:43 AM,04/02/2016 11:53:28 AM,04/02/2016 12:01:45 PM,04/02/2016 12:36:11 PM,04/02/2016 01:00:18 PM,Code 2 Transport,04/02/2016 01:28:06 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160931383-65 +161002496,68,16039863,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:41:36 PM,04/09/2016 05:43:57 PM,04/09/2016 05:44:25 PM,04/09/2016 05:44:53 PM,04/09/2016 05:53:06 PM,04/09/2016 06:13:04 PM,04/09/2016 06:29:28 PM,Code 2 Transport,04/09/2016 07:04:23 PM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",161002496-68 +143641467,87,14130179,Medical Incident,12/30/2014,12/30/2014,12/30/2014 12:24:14 PM,12/30/2014 12:25:02 PM,12/30/2014 12:28:04 PM,12/30/2014 12:29:41 PM,12/30/2014 12:29:41 PM,12/30/2014 12:55:13 PM,12/30/2014 01:22:35 PM,Code 2 Transport,12/30/2014 01:58:33 PM,2300 Block of 43RD AVE,San Francisco,94116,B08,18,7644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7428445256261, -122.501538737612)",143641467-87 +142932859,T01,14103461,Alarms,10/20/2014,10/20/2014,10/20/2014 06:39:28 PM,10/20/2014 06:41:11 PM,10/20/2014 06:41:35 PM,10/20/2014 06:43:15 PM,10/20/2014 06:45:13 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 06:52:23 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",142932859-T01 +143232199,AM16,14114420,Medical Incident,11/19/2014,11/19/2014,11/19/2014 04:10:20 PM,11/19/2014 04:10:20 PM,11/19/2014 04:10:49 PM,11/19/2014 04:15:11 PM,11/19/2014 04:15:22 PM,11/19/2014 04:33:48 PM,11/19/2014 04:47:18 PM,Code 2 Transport,11/19/2014 05:25:42 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7734563328786, -122.421591110968)",143232199-AM16 +160981589,71,16038890,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:36:11 AM,04/07/2016 11:37:09 AM,04/07/2016 11:37:37 AM,04/07/2016 11:37:51 AM,04/07/2016 11:46:21 AM,04/07/2016 12:16:48 PM,04/07/2016 12:47:55 PM,Code 2 Transport,04/07/2016 01:55:34 PM,3400 Block of VAN NESS AV,San Francisco,94123,B04,28,3143,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Russian Hill,"(37.8070858944911, -122.426067255404)",160981589-71 +150471897,KM04,15018290,Medical Incident,02/16/2015,02/16/2015,02/16/2015 01:27:32 PM,02/16/2015 01:27:32 PM,02/16/2015 01:36:40 PM,02/16/2015 01:39:51 PM,02/16/2015 01:50:21 PM,02/16/2015 02:00:24 PM,02/16/2015 02:13:42 PM,Code 2 Transport,02/16/2015 02:42:22 PM,MARKET ST/LARKIN ST,San Francisco,94103,B02,36,1646,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",150471897-KM04 +143040849,RC1,14107395,Medical Incident,10/31/2014,10/31/2014,10/31/2014 09:00:32 AM,10/31/2014 09:00:32 AM,10/31/2014 09:06:03 AM,10/31/2014 09:06:03 AM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,Code 2 Transport,10/31/2014 09:08:15 AM,MARKET ST/SUTTER ST,San Francisco,94104,B01,13,1164,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Financial District/South Beach,"(37.7902901603061, -122.400152471245)",143040849-RC1 +141270014,B09,14042907,Alarms,05/07/2014,05/06/2014,05/07/2014 12:57:09 AM,05/07/2014 12:58:08 AM,05/07/2014 12:58:18 AM,05/07/2014 01:00:55 AM,05/07/2014 01:03:46 AM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Fire,05/07/2014 01:12:31 AM,3900 Block of ALEMANY BLVD,SAN FRANCISCO,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,2,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",141270014-B09 +151553891,85,15059318,Medical Incident,06/04/2015,06/04/2015,06/04/2015 10:55:21 PM,06/04/2015 10:55:21 PM,06/04/2015 10:56:11 PM,06/04/2015 10:56:54 PM,06/04/2015 11:09:52 PM,06/04/2015 11:24:05 PM,06/04/2015 11:35:39 PM,Code 2 Transport,06/05/2015 12:03:11 AM,FELL ST/ASHBURY ST,San Francisco,94117,B05,21,4514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.772790452811, -122.447497243592)",151553891-85 +141200217,E01,14040570,Alarms,04/30/2014,04/30/2014,04/30/2014 02:08:10 PM,04/30/2014 02:09:27 PM,04/30/2014 02:10:24 PM,04/30/2014 02:10:24 PM,04/30/2014 02:11:55 PM,04/25/2016 01:17:36 PM,04/25/2016 01:17:36 PM,Fire,04/30/2014 02:17:00 PM,700 Block of MARKET ST,SAN FRANCISCO,94108,B03,1,1322,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",141200217-E01 +150101285,E38,15003907,Medical Incident,01/10/2015,01/10/2015,01/10/2015 11:14:07 AM,01/10/2015 11:14:53 AM,01/10/2015 11:15:35 AM,01/10/2015 11:16:30 AM,01/10/2015 11:17:45 AM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,Code 3 Transport,01/10/2015 11:32:11 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",150101285-E38 +151034034,55,15039164,Medical Incident,04/13/2015,04/13/2015,04/13/2015 11:35:43 PM,04/13/2015 11:38:06 PM,04/13/2015 11:40:19 PM,04/13/2015 11:40:30 PM,04/14/2015 12:09:37 AM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Unable to Locate,04/14/2015 12:09:54 AM,HARRIET ST/AHERN WY,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7763129803883, -122.403959383179)",151034034-55 +152823915,E41,15108443,Medical Incident,10/09/2015,10/09/2015,10/09/2015 10:12:04 PM,10/09/2015 10:12:39 PM,10/09/2015 10:12:55 PM,10/09/2015 10:13:47 PM,10/09/2015 10:15:00 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Code 2 Transport,10/09/2015 10:18:59 PM,HYDE ST/CALIFORNIA ST,San Francisco,94109,B04,41,1562,3,E,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",152823915-E41 +150842256,77,15032089,Medical Incident,03/25/2015,03/25/2015,03/25/2015 02:29:28 PM,03/25/2015 02:31:08 PM,03/25/2015 02:31:40 PM,03/25/2015 02:32:27 PM,03/25/2015 02:35:57 PM,03/25/2015 03:07:00 PM,03/25/2015 03:51:51 PM,Code 2 Transport,03/25/2015 04:29:01 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",150842256-77 +150654002,E03,15025022,Medical Incident,03/06/2015,03/06/2015,03/06/2015 09:36:31 PM,03/06/2015 09:36:49 PM,03/06/2015 09:39:47 PM,03/06/2015 09:40:23 PM,03/06/2015 09:41:31 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Code 2 Transport,03/06/2015 09:42:51 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",150654002-E03 +150403441,E07,15015755,Medical Incident,02/09/2015,02/09/2015,02/09/2015 08:35:27 PM,02/09/2015 08:36:28 PM,02/09/2015 08:36:50 PM,02/09/2015 08:37:28 PM,02/09/2015 08:39:53 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/09/2015 08:46:00 PM,2800 Block of FOLSOM ST,San Francisco,94110,B06,7,5526,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.751708669465, -122.413936942101)",150403441-E07 +142432160,72,14084693,Traffic Collision,08/31/2014,08/31/2014,08/31/2014 03:59:45 PM,08/31/2014 03:59:45 PM,08/31/2014 04:00:28 PM,08/31/2014 04:01:04 PM,08/31/2014 04:05:45 PM,08/31/2014 04:18:19 PM,08/31/2014 04:28:16 PM,Code 2 Transport,08/31/2014 04:54:38 PM,14TH ST/WOODWARD ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682256253701, -122.420776616009)",142432160-72 +151571257,E24,15059886,Other,06/06/2015,06/06/2015,06/06/2015 10:46:08 AM,06/06/2015 10:46:08 AM,06/06/2015 10:46:08 AM,06/06/2015 10:46:08 AM,06/06/2015 10:46:08 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Fire,06/06/2015 11:31:58 AM,DANVERS ST/MARKET ST,San Francisco,94114,B06,24,5413,3,3,3,false,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7605092104224, -122.443517046069)",151571257-E24 +142461947,E07,14085690,Administrative,09/03/2014,09/03/2014,09/03/2014 01:21:09 PM,09/03/2014 01:21:17 PM,09/03/2014 01:26:31 PM,09/03/2014 01:27:15 PM,09/03/2014 01:27:15 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,Fire,09/03/2014 01:27:23 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",142461947-E07 +141710282,88,14058937,Medical Incident,06/20/2014,06/19/2014,06/20/2014 02:48:25 AM,06/20/2014 02:50:47 AM,06/20/2014 02:51:05 AM,06/20/2014 02:51:15 AM,06/20/2014 02:59:52 AM,06/20/2014 03:19:46 AM,06/20/2014 03:35:00 AM,Code 2 Transport,06/20/2014 04:22:30 AM,500 Block of BLANKEN AVE,San Francisco,94134,B10,44,6273,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7110441572788, -122.396932398875)",141710282-88 +160960808,AM08,16037923,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:45:42 AM,04/05/2016 08:47:12 AM,04/05/2016 08:47:28 AM,04/05/2016 08:48:03 AM,04/05/2016 08:48:03 AM,04/05/2016 09:25:28 AM,04/05/2016 09:51:53 AM,Code 2 Transport,04/05/2016 10:28:40 AM,100 Block of LEESE ST,San Francisco,94110,B06,32,5632,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.735541540271, -122.422981511864)",160960808-AM08 +151460572,63,15055423,Medical Incident,05/26/2015,05/25/2015,05/26/2015 07:35:39 AM,05/26/2015 07:37:29 AM,05/26/2015 07:37:37 AM,05/26/2015 07:37:47 AM,05/26/2015 07:45:39 AM,05/26/2015 07:55:30 AM,05/26/2015 08:23:38 AM,Code 2 Transport,05/26/2015 08:51:34 AM,2200 Block of NORIEGA ST,San Francisco,94122,B08,18,7515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7536898844301, -122.487719711365)",151460572-63 +142692189,E18,14094324,Medical Incident,09/26/2014,09/26/2014,09/26/2014 02:34:39 PM,09/26/2014 02:35:33 PM,09/26/2014 02:35:44 PM,09/26/2014 02:37:04 PM,09/26/2014 02:37:04 PM,09/26/2014 02:59:19 PM,09/26/2014 03:20:28 PM,Code 3 Transport,09/26/2014 03:26:19 PM,2300 Block of 38TH AVE,San Francisco,94116,B08,18,7621,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.743089809039, -122.496045390903)",142692189-E18 +160952720,82,16037702,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:34:26 PM,04/04/2016 04:34:26 PM,04/04/2016 04:35:03 PM,04/04/2016 04:35:08 PM,04/04/2016 04:37:23 PM,04/04/2016 04:52:49 PM,04/04/2016 05:14:25 PM,Code 2 Transport,04/04/2016 05:40:58 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160952720-82 +160931147,KM11,16036788,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:09:25 AM,04/02/2016 10:10:00 AM,04/02/2016 10:12:03 AM,04/02/2016 10:12:38 AM,04/02/2016 10:19:30 AM,04/02/2016 10:35:28 AM,04/02/2016 10:48:30 AM,Code 2 Transport,04/02/2016 11:30:43 AM,500 Block of CLIPPER ST,San Francisco,94114,B06,11,5545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,8,Noe Valley,"(37.7486412460099, -122.437154038433)",160931147-KM11 +153482375,E36,15134143,Medical Incident,12/14/2015,12/14/2015,12/14/2015 03:41:12 PM,12/14/2015 03:42:14 PM,12/14/2015 03:42:45 PM,12/14/2015 03:42:57 PM,12/14/2015 03:44:33 PM,04/25/2016 01:06:38 PM,04/25/2016 01:06:38 PM,Code 2 Transport,12/14/2015 03:56:42 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",153482375-E36 +153220178,E43,15123698,Medical Incident,11/18/2015,11/17/2015,11/18/2015 02:07:17 AM,11/18/2015 02:11:56 AM,11/18/2015 02:13:07 AM,11/18/2015 02:15:21 AM,11/18/2015 02:17:22 AM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Patient Declined Transport,11/18/2015 02:37:01 AM,600 Block of ROLPH ST,San Francisco,94112,B09,43,6226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7115337740541, -122.432290776934)",153220178-E43 +160943783,70,16037466,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:40:39 PM,04/03/2016 11:42:14 PM,04/03/2016 11:42:25 PM,04/03/2016 11:44:07 PM,04/03/2016 11:57:26 PM,04/04/2016 12:11:23 AM,04/04/2016 12:14:02 AM,Code 2 Transport,04/04/2016 12:35:54 AM,0 Block of DASHIELL HAMMETT ST,San Francisco,94108,B01,2,1361,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7907312387799, -122.408032993171)",160943783-70 +142342424,T15,14081388,Vehicle Fire,08/22/2014,08/22/2014,08/22/2014 04:18:13 PM,08/22/2014 04:18:44 PM,08/22/2014 04:18:54 PM,08/22/2014 04:20:39 PM,08/22/2014 04:22:47 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 04:24:35 PM,800 Block of GENEVA AVE,San Francisco,94112,B09,43,6175,3,3,3,false,Fire,1,TRUCK,2,9,11,Outer Mission,"(37.7174664800469, -122.442071515409)",142342424-T15 +141343458,B03,14045890,Structure Fire,05/14/2014,05/14/2014,05/14/2014 07:27:18 PM,05/14/2014 07:29:01 PM,05/14/2014 07:33:28 PM,05/14/2014 07:33:55 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Code 2 Transport,05/14/2014 07:35:22 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Alarm,1,CHIEF,9,3,6,South of Market,"(37.7815374331217, -122.409518341416)",141343458-B03 +142712552,E09,14095114,Medical Incident,09/28/2014,09/28/2014,09/28/2014 05:32:22 PM,09/28/2014 05:33:49 PM,09/28/2014 05:36:21 PM,09/28/2014 05:38:32 PM,09/28/2014 05:55:48 PM,04/25/2016 01:14:51 PM,04/25/2016 01:14:51 PM,Code 2 Transport,09/28/2014 06:33:53 PM,0 Block of OSCEOLA LN,San Francisco,94124,B10,17,6637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",142712552-E09 +142951966,E43,14104048,Medical Incident,10/22/2014,10/22/2014,10/22/2014 02:06:34 PM,10/22/2014 02:07:54 PM,10/22/2014 02:11:26 PM,10/22/2014 02:12:37 PM,10/22/2014 02:14:23 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Code 2 Transport,10/22/2014 02:30:02 PM,800 Block of PRAGUE ST,San Francisco,94112,B09,43,622,2,3,3,true,Non Life-threatening,1,ENGINE,2,9,11,Excelsior,"(37.7104309664976, -122.434220514636)",142951966-E43 +152660273,E34,15101703,Medical Incident,09/23/2015,09/22/2015,09/23/2015 02:58:08 AM,09/23/2015 02:58:35 AM,09/23/2015 02:59:23 AM,09/23/2015 03:02:30 AM,09/23/2015 03:03:39 AM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,Code 2 Transport,09/23/2015 03:21:26 AM,5600 Block of ANZA ST,San Francisco,94121,B07,34,7276,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7771231360845, -122.508698316635)",152660273-E34 +153380627,E25,15129954,Medical Incident,12/04/2015,12/03/2015,12/04/2015 07:28:02 AM,12/04/2015 07:28:21 AM,12/04/2015 07:28:54 AM,12/04/2015 07:30:36 AM,12/04/2015 07:33:47 AM,04/25/2016 01:06:50 PM,04/25/2016 01:06:50 PM,Code 2 Transport,12/04/2015 07:37:45 AM,1600 Block of LA SALLE AVE,San Francisco,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7373109218109, -122.390232962318)",153380627-E25 +153044314,B01,15116877,Alarms,10/31/2015,10/31/2015,10/31/2015 11:03:42 PM,10/31/2015 11:04:56 PM,10/31/2015 11:05:43 PM,10/31/2015 11:06:50 PM,10/31/2015 11:10:07 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,Fire,10/31/2015 11:15:34 PM,400 Block of KEARNY ST,San Francisco,94108,B01,13,1240,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7921556124727, -122.404387410062)",153044314-B01 +160971957,KM05,16038417,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:47:27 PM,04/06/2016 12:48:05 PM,04/06/2016 12:48:29 PM,04/06/2016 12:49:05 PM,04/06/2016 12:52:10 PM,04/06/2016 01:04:00 PM,04/06/2016 01:49:24 PM,Code 2 Transport,04/06/2016 01:49:31 PM,400 Block of 30TH AVE,San Francisco,94121,B07,14,722,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",160971957-KM05 +150801694,55,15030646,Medical Incident,03/21/2015,03/21/2015,03/21/2015 01:11:47 PM,03/21/2015 01:12:43 PM,03/21/2015 01:13:30 PM,03/21/2015 01:16:03 PM,03/21/2015 01:33:39 PM,03/21/2015 01:33:41 PM,03/21/2015 01:39:29 PM,Code 2 Transport,03/21/2015 02:16:19 PM,FULTON ST/HYDE ST,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",150801694-55 +151332779,E09,15050537,Outside Fire,05/13/2015,05/13/2015,05/13/2015 04:29:36 PM,05/13/2015 04:30:51 PM,05/13/2015 04:32:58 PM,05/13/2015 04:34:19 PM,05/13/2015 04:35:41 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Fire,05/13/2015 04:37:52 PM,CESAR CHAVEZ ST/VERMONT ST,San Francisco,94124,B10,9,6821,3,3,3,true,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7494784599942, -122.402866310476)",151332779-E09 +160993764,53,16039501,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:01:35 PM,04/08/2016 10:01:35 PM,04/08/2016 10:13:57 PM,04/08/2016 10:17:52 PM,04/08/2016 10:17:52 PM,04/08/2016 10:24:46 PM,04/08/2016 10:57:03 PM,Code 2 Transport,04/08/2016 11:19:25 PM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",160993764-53 +152172222,E03,15082638,Medical Incident,08/05/2015,08/05/2015,08/05/2015 02:37:13 PM,08/05/2015 02:38:55 PM,08/05/2015 02:39:18 PM,08/05/2015 02:40:49 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 02:42:29 PM,LARKIN ST/GROVE ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",152172222-E03 +153301469,E26,15127000,Medical Incident,11/26/2015,11/26/2015,11/26/2015 01:29:53 PM,11/26/2015 01:31:45 PM,11/26/2015 01:32:26 PM,11/26/2015 01:35:10 PM,11/26/2015 01:38:22 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 3 Transport,11/26/2015 01:46:58 PM,700 Block of HOLLY PARK CIR,San Francisco,94110,B06,32,5646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7374570862058, -122.421089139711)",153301469-E26 +151741666,63,15066381,Traffic Collision,06/23/2015,06/23/2015,06/23/2015 12:29:41 PM,06/23/2015 12:29:41 PM,06/23/2015 12:30:17 PM,06/23/2015 12:30:42 PM,06/23/2015 12:31:14 PM,06/23/2015 12:53:27 PM,06/23/2015 01:32:31 PM,Code 2 Transport,06/23/2015 01:56:41 PM,SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7257926850407, -122.442387189271)",151741666-63 +150831649,57,15031721,Traffic Collision,03/24/2015,03/24/2015,03/24/2015 12:42:22 PM,03/24/2015 12:42:22 PM,03/24/2015 12:42:29 PM,03/24/2015 12:42:44 PM,03/24/2015 12:52:38 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Patient Declined Transport,03/24/2015 01:21:21 PM,3800 Block of MARKET ST,San Francisco,94131,B06,24,5276,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Twin Peaks,"(37.7528119669252, -122.442792603258)",150831649-57 +152313545,T09,15088280,Vehicle Fire,08/19/2015,08/19/2015,08/19/2015 08:16:53 PM,08/19/2015 08:17:22 PM,08/19/2015 08:17:34 PM,08/19/2015 08:18:41 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Fire,08/19/2015 08:20:38 PM,0 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,3,3,3,false,Fire,1,TRUCK,2,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",152313545-T09 +142561567,RC1,14089395,Medical Incident,09/13/2014,09/13/2014,09/13/2014 11:49:28 AM,09/13/2014 11:52:01 AM,09/13/2014 11:52:59 AM,09/13/2014 11:52:59 AM,09/13/2014 11:52:59 AM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/13/2014 12:08:27 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",142561567-RC1 +153101069,57,15119094,Medical Incident,11/06/2015,11/06/2015,11/06/2015 10:03:13 AM,11/06/2015 10:03:43 AM,11/06/2015 10:04:50 AM,11/06/2015 10:05:24 AM,11/06/2015 10:27:25 AM,11/06/2015 10:34:52 AM,11/06/2015 11:03:58 AM,Code 2 Transport,11/06/2015 11:33:02 AM,500 Block of LELAND AVE,San Francisco,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7147054321972, -122.41512332127)",153101069-57 +141762304,65,14060787,Medical Incident,06/25/2014,06/25/2014,06/25/2014 03:43:33 PM,06/25/2014 03:44:01 PM,06/25/2014 03:50:11 PM,06/25/2014 03:50:26 PM,06/25/2014 04:00:19 PM,06/25/2014 04:17:50 PM,06/25/2014 05:02:43 PM,Code 2 Transport,06/25/2014 05:30:34 PM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",141762304-65 +150593793,E28,15022737,Administrative,02/28/2015,02/28/2015,02/28/2015 11:13:19 PM,02/28/2015 11:14:10 PM,02/28/2015 11:14:39 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Fire,02/28/2015 11:16:35 PM,1800 Block of STOCKTON ST,San Francisco,94133,B01,28,1335,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8027782547729, -122.409586942281)",150593793-E28 +152430031,T01,15092524,Alarms,08/31/2015,08/30/2015,08/31/2015 12:10:35 AM,08/31/2015 12:12:05 AM,08/31/2015 12:12:24 AM,08/31/2015 12:13:53 AM,08/31/2015 12:17:38 AM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Fire,08/31/2015 12:22:50 AM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",152430031-T01 +141761086,89,14060682,Traffic Collision,06/25/2014,06/25/2014,06/25/2014 10:03:56 AM,06/25/2014 10:04:01 AM,06/25/2014 10:15:09 AM,06/25/2014 10:25:09 AM,06/25/2014 10:32:40 AM,06/25/2014 10:45:18 AM,06/25/2014 10:58:37 AM,Code 2 Transport,06/25/2014 12:25:50 PM,SUNNYDALE AV/BAYSHORE BL,San Francisco,94134,B10,44,6254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,7,9,10,Bayview Hunters Point,"(37.7088536077159, -122.405109455132)",141761086-89 +151292318,72,15049015,Medical Incident,05/09/2015,05/09/2015,05/09/2015 03:34:42 PM,05/09/2015 03:36:34 PM,05/09/2015 03:36:56 PM,05/09/2015 03:37:09 PM,05/09/2015 03:44:34 PM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Against Medical Advice,05/09/2015 04:26:33 PM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",151292318-72 +160930901,61,16036764,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:55:20 AM,04/02/2016 08:56:18 AM,04/02/2016 08:56:29 AM,04/02/2016 08:56:38 AM,04/02/2016 09:02:23 AM,04/02/2016 09:27:34 AM,04/02/2016 09:42:40 AM,Code 2 Transport,04/02/2016 10:21:32 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160930901-61 +150832445,E05,15031771,Medical Incident,03/24/2015,03/24/2015,03/24/2015 04:08:51 PM,03/24/2015 04:09:25 PM,03/24/2015 04:10:57 PM,03/24/2015 04:11:06 PM,03/24/2015 04:14:07 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/24/2015 04:24:41 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",150832445-E05 +142531221,E37,14088243,Medical Incident,09/10/2014,09/10/2014,09/10/2014 10:28:49 AM,09/10/2014 10:30:32 AM,09/10/2014 10:31:29 AM,09/10/2014 10:32:19 AM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,Gone on Arrival,09/10/2014 10:37:07 AM,25TH ST/POTRERO AV,San Francisco,94110,B10,9,2624,2,2,2,false,Non Life-threatening,1,ENGINE,3,10,9,Mission,"(37.7517262101212, -122.406219413558)",142531221-E37 +160974667,KM07,16038722,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:38:02 PM,04/06/2016 11:39:55 PM,04/06/2016 11:40:38 PM,04/06/2016 11:41:29 PM,04/06/2016 11:45:28 PM,04/06/2016 11:50:40 PM,04/07/2016 12:04:15 AM,Code 2 Transport,04/07/2016 12:41:48 AM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",160974667-KM07 +152962147,RS2,15113737,Traffic Collision,10/23/2015,10/23/2015,10/23/2015 02:41:43 PM,10/23/2015 02:43:40 PM,10/23/2015 02:44:57 PM,10/23/2015 02:45:43 PM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,Code 2 Transport,10/23/2015 02:50:58 PM,500 Block of ARBALLO DR,San Francisco,94132,B08,19,8583,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,8,7,Lakeshore,"(37.7169177956994, -122.483309155838)",152962147-RS2 +150541810,KM02,15020762,Medical Incident,02/23/2015,02/23/2015,02/23/2015 12:57:04 PM,02/23/2015 12:58:13 PM,02/23/2015 12:58:50 PM,02/23/2015 12:58:50 PM,02/23/2015 01:05:06 PM,02/23/2015 01:17:28 PM,02/23/2015 01:44:13 PM,Code 2 Transport,02/23/2015 02:05:48 PM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",150541810-KM02 +150761209,68,15029100,Medical Incident,03/17/2015,03/17/2015,03/17/2015 10:30:18 AM,03/17/2015 10:30:39 AM,03/17/2015 10:31:34 AM,03/17/2015 10:31:44 AM,03/17/2015 10:40:59 AM,03/17/2015 11:11:22 AM,03/17/2015 11:39:15 AM,Code 2 Transport,03/17/2015 12:14:03 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",150761209-68 +160931564,79,16036837,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:15:10 PM,04/02/2016 12:16:02 PM,04/02/2016 12:16:28 PM,04/02/2016 12:16:38 PM,04/02/2016 12:22:14 PM,04/02/2016 01:07:54 PM,04/02/2016 01:19:23 PM,Code 3 Transport,04/02/2016 01:52:55 PM,100 Block of GENEBERN WY,San Francisco,94112,B06,32,5641,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.733180521508, -122.424988633946)",160931564-79 +152791414,E35,15107018,Medical Incident,10/06/2015,10/06/2015,10/06/2015 11:25:32 AM,10/06/2015 11:26:21 AM,10/06/2015 11:27:49 AM,10/06/2015 11:27:49 AM,10/06/2015 11:30:47 AM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Against Medical Advice,10/06/2015 11:39:06 AM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7867008144662, -122.393633802417)",152791414-E35 +153342683,AM08,15128494,Medical Incident,11/30/2015,11/30/2015,11/30/2015 05:23:47 PM,11/30/2015 05:25:36 PM,11/30/2015 05:25:43 PM,11/30/2015 05:26:18 PM,11/30/2015 05:34:42 PM,11/30/2015 05:54:51 PM,11/30/2015 06:07:24 PM,Code 3 Transport,11/30/2015 06:54:10 PM,4400 Block of BALBOA ST,San Francisco,94121,B07,34,7273,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7753538886432, -122.506424798012)",153342683-AM08 +153211789,T08,15123431,Structure Fire,11/17/2015,11/17/2015,11/17/2015 12:35:10 PM,11/17/2015 12:35:36 PM,11/17/2015 12:36:09 PM,11/17/2015 12:37:27 PM,11/17/2015 12:39:46 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 12:59:24 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,false,Alarm,1,TRUCK,4,3,6,South of Market,"(37.7820387146172, -122.40232147638)",153211789-T08 +142681406,E03,14093896,,09/25/2014,09/25/2014,09/25/2014 12:00:00 PM,09/25/2014 12:01:00 PM,09/25/2014 12:05:00 PM,09/25/2014 12:06:00 PM,09/25/2014 12:09:00 PM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,SFPD,09/25/2014 12:16:00 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142681406-E03 +153151625,63,15121033,Medical Incident,11/11/2015,11/11/2015,11/11/2015 12:32:15 PM,11/11/2015 12:32:38 PM,11/11/2015 12:34:38 PM,11/11/2015 12:34:48 PM,11/11/2015 12:47:32 PM,11/11/2015 12:50:40 PM,11/11/2015 01:12:38 PM,Code 2 Transport,11/11/2015 01:54:57 PM,200 Block of ALLISON ST,San Francisco,94112,B09,43,6221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7117773963729, -122.441441540963)",153151625-63 +150090282,E06,15003417,Medical Incident,01/09/2015,01/08/2015,01/09/2015 02:52:52 AM,01/09/2015 02:53:36 AM,01/09/2015 02:53:54 AM,01/09/2015 02:56:01 AM,01/09/2015 02:58:10 AM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Code 2 Transport,01/09/2015 03:01:11 AM,300 Block of HAIGHT ST,San Francisco,94102,B02,6,3524,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7724746185561, -122.427991225235)",150090282-E06 +152880578,T18,15110547,Outside Fire,10/15/2015,10/14/2015,10/15/2015 06:58:57 AM,10/15/2015 07:01:28 AM,10/15/2015 07:02:20 AM,10/15/2015 07:04:30 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Fire,10/15/2015 07:09:39 AM,1300 Block of MARTIN LUTHER KING JR DR,San Francisco,94122,B08,22,7452,3,3,3,false,Fire,1,TRUCK,3,7,1,Golden Gate Park,"(37.7664824713851, -122.48669126531)",152880578-T18 +160943686,AM16,16037457,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:04:08 PM,04/03/2016 11:05:04 PM,04/03/2016 11:05:14 PM,04/03/2016 11:05:55 PM,04/03/2016 11:12:26 PM,04/03/2016 11:45:49 PM,04/03/2016 11:57:00 PM,Code 2 Transport,04/04/2016 12:30:13 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160943686-AM16 +150902601,KM10,15034348,Medical Incident,03/31/2015,03/31/2015,03/31/2015 04:51:43 PM,03/31/2015 04:55:26 PM,03/31/2015 04:55:43 PM,03/31/2015 04:56:17 PM,03/31/2015 05:05:11 PM,03/31/2015 05:19:01 PM,03/31/2015 05:49:22 PM,Code 2 Transport,03/31/2015 06:36:38 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",150902601-KM10 +151212914,RS1,15045980,Water Rescue,05/01/2015,05/01/2015,05/01/2015 05:56:45 PM,05/01/2015 05:58:25 PM,05/01/2015 06:00:31 PM,05/01/2015 06:01:06 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Fire,05/01/2015 06:26:35 PM,900 Block of MARINE DR,Presidio,94129,B99,51,4628,3,3,3,false,Fire,1,RESCUE SQUAD,11,7,2,Presidio,"(37.8089767888005, -122.47460956271)",151212914-RS1 +161000385,78,16039606,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:49:16 AM,04/09/2016 02:51:25 AM,04/09/2016 02:53:59 AM,04/09/2016 02:54:11 AM,04/09/2016 03:07:30 AM,04/09/2016 03:38:05 AM,04/09/2016 03:55:04 AM,Code 2 Transport,04/09/2016 04:21:59 AM,2100 Block of GENEVA AVE,San Francisco,94134,B09,43,6246,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7085351675634, -122.420460511784)",161000385-78 +141831206,T03,14063257,Alarms,07/02/2014,07/02/2014,07/02/2014 10:45:32 AM,07/02/2014 10:47:40 AM,07/02/2014 10:48:03 AM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Other,07/02/2014 10:48:47 AM,400 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7898930161582, -122.407112815209)",141831206-T03 +160963631,79,16038169,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:12:35 PM,04/05/2016 08:12:35 PM,04/05/2016 08:12:42 PM,04/05/2016 08:12:59 PM,04/05/2016 08:16:30 PM,04/05/2016 08:36:54 PM,04/05/2016 08:45:49 PM,Code 2 Transport,04/05/2016 09:33:32 PM,GEARY BL/8TH AV,San Francisco,94118,B07,31,7135,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7809245879397, -122.466426902852)",160963631-79 +151410202,E01,15053410,Alarms,05/21/2015,05/20/2015,05/21/2015 01:56:41 AM,05/21/2015 01:58:41 AM,05/21/2015 02:00:09 AM,05/21/2015 02:03:00 AM,05/21/2015 02:05:11 AM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Fire,05/21/2015 02:22:54 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",151410202-E01 +142072643,E03,14071790,Medical Incident,07/26/2014,07/26/2014,07/26/2014 05:47:46 PM,07/26/2014 05:48:18 PM,07/26/2014 05:51:42 PM,07/26/2014 05:51:55 PM,07/26/2014 05:55:45 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,Code 2 Transport,07/26/2014 06:27:19 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",142072643-E03 +141250241,E03,14042385,Medical Incident,05/05/2014,05/05/2014,05/05/2014 02:08:26 PM,05/05/2014 02:09:05 PM,05/05/2014 02:09:30 PM,05/05/2014 02:10:00 PM,05/05/2014 02:12:13 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 02:23:40 PM,600 Block of EDDY ST,SAN FRANCISCO,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",141250241-E03 +160980053,65,16038729,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:24:55 AM,04/07/2016 12:26:02 AM,04/07/2016 12:26:19 AM,04/07/2016 12:26:29 AM,04/07/2016 12:34:25 AM,04/07/2016 01:03:11 AM,04/07/2016 02:20:01 AM,Code 2 Transport,04/07/2016 02:29:58 AM,600 Block of 48TH AVE,San Francisco,94121,B07,34,7312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.77563546489, -122.509194725072)",160980053-65 +151993920,E34,15076039,Medical Incident,07/18/2015,07/18/2015,07/18/2015 10:48:16 PM,07/18/2015 10:49:04 PM,07/18/2015 10:49:40 PM,07/18/2015 10:50:46 PM,07/18/2015 10:53:35 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Code 2 Transport,07/18/2015 11:18:55 PM,800 Block of 41ST AVE,San Francisco,94121,B07,34,7262,2,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7727168918088, -122.501464297104)",151993920-E34 +160921357,KM12,16036404,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:23:12 AM,04/01/2016 11:25:28 AM,04/01/2016 11:26:09 AM,04/01/2016 11:26:47 AM,04/01/2016 11:35:02 AM,04/01/2016 11:58:54 AM,04/01/2016 12:12:56 PM,Code 2 Transport,04/01/2016 12:58:05 PM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160921357-KM12 +160993878,58,16039512,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:39:45 PM,04/08/2016 10:39:57 PM,04/08/2016 10:52:31 PM,04/08/2016 10:52:31 PM,04/08/2016 11:08:08 PM,04/08/2016 11:13:21 PM,04/08/2016 11:34:46 PM,Code 2 Transport,04/09/2016 12:12:40 AM,100 Block of ELMIRA ST,San Francisco,94124,B10,42,6364,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735315131937, -122.403595624573)",160993878-58 +160943123,76,16037392,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:34:23 PM,04/03/2016 07:37:04 PM,04/03/2016 07:37:14 PM,04/03/2016 07:38:16 PM,04/03/2016 07:53:07 PM,04/03/2016 08:28:06 PM,04/03/2016 08:36:17 PM,Code 2 Transport,04/03/2016 09:21:57 PM,0 Block of SOLA AVE,San Francisco,94116,B08,39,8624,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7479640067054, -122.460361522553)",160943123-76 +153072883,E34,15118077,Medical Incident,11/03/2015,11/03/2015,11/03/2015 04:46:03 PM,11/03/2015 04:47:14 PM,11/03/2015 04:47:44 PM,11/03/2015 04:48:44 PM,11/03/2015 04:51:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Code 2 Transport,11/03/2015 05:07:59 PM,4300 Block of BALBOA ST,San Francisco,94121,B07,34,7273,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7752931917775, -122.505346299871)",153072883-E34 +150550122,E11,15020979,Medical Incident,02/24/2015,02/23/2015,02/24/2015 01:01:54 AM,02/24/2015 01:04:28 AM,02/24/2015 01:04:42 AM,02/24/2015 01:06:05 AM,02/24/2015 01:08:15 AM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,Patient Declined Transport,02/24/2015 01:16:46 AM,SAN JOSE AV/28TH ST,San Francisco,94110,B06,11,5577,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7455788145196, -122.422218292303)",150550122-E11 +151423394,B01,15054143,Structure Fire,05/22/2015,05/22/2015,05/22/2015 07:25:55 PM,05/22/2015 07:25:55 PM,05/22/2015 07:26:11 PM,05/22/2015 07:27:28 PM,05/22/2015 07:29:21 PM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Fire,05/22/2015 07:34:30 PM,800 Block of BROADWAY,San Francisco,94133,B01,2,134,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7973761566581, -122.411122316679)",151423394-B01 +151551516,63,15059069,Medical Incident,06/04/2015,06/04/2015,06/04/2015 11:39:47 AM,06/04/2015 11:40:19 AM,06/04/2015 11:48:09 AM,06/04/2015 11:48:09 AM,06/04/2015 11:59:57 AM,06/04/2015 12:31:42 PM,06/04/2015 01:09:49 PM,Code 2 Transport,06/04/2015 01:50:15 PM,700 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6713,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",151551516-63 +142801421,RC3,14098466,Traffic Collision,10/07/2014,10/07/2014,10/07/2014 11:46:45 AM,10/07/2014 11:47:47 AM,10/07/2014 11:52:03 AM,10/07/2014 11:52:10 AM,10/07/2014 11:58:39 AM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Code 2 Transport,10/07/2014 11:59:26 AM,LAGUNA ST/FULTON ST,San Francisco,94102,B02,5,3412,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,5,Hayes Valley,"(37.778328563042, -122.426641497595)",142801421-RC3 +142321902,E02,14080608,Medical Incident,08/20/2014,08/20/2014,08/20/2014 01:38:33 PM,08/20/2014 01:39:37 PM,08/20/2014 01:40:36 PM,08/20/2014 01:41:14 PM,08/20/2014 01:45:45 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Medical Examiner,08/20/2014 02:18:50 PM,2000 Block of HYDE ST,San Francisco,94109,B01,41,1611,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.7998262980137, -122.419102797761)",142321902-E02 +160971088,KM04,16038348,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:35:08 AM,04/06/2016 09:35:35 AM,04/06/2016 09:36:26 AM,04/06/2016 09:37:26 AM,04/06/2016 09:52:15 AM,04/06/2016 09:52:46 AM,04/06/2016 10:04:39 AM,Code 2 Transport,04/06/2016 10:51:26 AM,PINE ST/OCTAVIA ST,San Francisco,94109,B04,38,3325,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.7887868948983, -122.427059673264)",160971088-KM04 +142850643,81,14100307,Medical Incident,10/12/2014,10/11/2014,10/12/2014 04:35:59 AM,10/12/2014 04:36:27 AM,10/12/2014 04:36:38 AM,10/12/2014 04:37:46 AM,10/12/2014 04:41:55 AM,10/12/2014 04:55:24 AM,10/12/2014 05:15:27 AM,Code 2 Transport,10/12/2014 05:27:44 AM,700 Block of KANSAS ST,San Francisco,94107,B10,37,2522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7602588003168, -122.403040580003)",142850643-81 +151031987,82,15038967,Medical Incident,04/13/2015,04/13/2015,04/13/2015 01:48:26 PM,04/13/2015 01:49:59 PM,04/13/2015 01:50:47 PM,04/13/2015 01:51:03 PM,04/13/2015 02:02:13 PM,04/13/2015 02:29:55 PM,04/13/2015 03:17:55 PM,Code 2 Transport,04/13/2015 03:32:25 PM,800 Block of TARAVAL ST,San Francisco,94116,B08,40,7376,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7430193724468, -122.475130331429)",151031987-82 +141540684,55,14052834,Medical Incident,06/03/2014,06/03/2014,06/03/2014 08:02:33 AM,06/03/2014 08:03:59 AM,06/03/2014 08:06:44 AM,06/03/2014 08:06:53 AM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,Unable to Locate,06/03/2014 08:16:04 AM,FERN ST/VAN NESS AV,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7880011777275, -122.421954907158)",141540684-55 +141911207,E12,14066166,Medical Incident,07/10/2014,07/10/2014,07/10/2014 10:21:29 AM,07/10/2014 10:24:40 AM,07/10/2014 10:32:03 AM,07/10/2014 10:32:17 AM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Code 2 Transport,07/10/2014 10:38:35 AM,1200 Block of BRODERICK ST,San Francisco,94115,B05,10,4236,2,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Western Addition,"(37.7817829572775, -122.440805077382)",141911207-E12 +142941606,E08,14103677,Medical Incident,10/21/2014,10/21/2014,10/21/2014 12:22:56 PM,10/21/2014 12:24:31 PM,10/21/2014 12:24:56 PM,10/21/2014 12:26:04 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,Patient Declined Transport,10/21/2014 12:31:05 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",142941606-E08 +153201999,E02,15123062,Medical Incident,11/16/2015,11/16/2015,11/16/2015 02:03:47 PM,11/16/2015 02:04:12 PM,11/16/2015 02:04:46 PM,11/16/2015 02:06:24 PM,11/16/2015 02:09:29 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Code 2 Transport,11/16/2015 02:33:34 PM,GRANT AV/NORTH POINT ST,San Francisco,94133,B01,28,1262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8071632523492, -122.408897336834)",153201999-E02 +143582720,75,14128230,Medical Incident,12/24/2014,12/24/2014,12/24/2014 07:18:59 PM,12/24/2014 07:20:07 PM,12/24/2014 07:20:39 PM,12/24/2014 07:20:48 PM,12/24/2014 07:29:28 PM,12/24/2014 07:35:46 PM,12/24/2014 07:42:03 PM,Code 2 Transport,12/24/2014 08:12:04 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",143582720-75 +151532620,E44,15058378,Outside Fire,06/02/2015,06/02/2015,06/02/2015 04:56:06 PM,06/02/2015 04:57:46 PM,06/02/2015 04:58:17 PM,06/02/2015 04:59:48 PM,06/02/2015 05:06:12 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Fire,06/02/2015 05:17:27 PM,400 Block of RAYMOND AVE,San Francisco,94134,B09,44,628,3,3,3,false,Fire,1,ENGINE,1,9,10,McLaren Park,"(37.7147287919997, -122.412436034218)",151532620-E44 +150280183,57,15010628,Medical Incident,01/28/2015,01/27/2015,01/28/2015 02:11:22 AM,01/28/2015 02:11:22 AM,01/28/2015 02:12:05 AM,01/28/2015 02:12:13 AM,01/28/2015 02:17:53 AM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,Patient Declined Transport,01/28/2015 02:34:29 AM,KEARNY ST/POST ST,San Francisco,94104,B01,1,1241,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7888944287124, -122.403660676968)",150280183-57 +143591154,T11,14128448,Alarms,12/25/2014,12/25/2014,12/25/2014 01:02:07 PM,12/25/2014 01:03:42 PM,12/25/2014 01:03:59 PM,12/25/2014 01:05:45 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Fire,12/25/2014 01:08:30 PM,0 Block of BERKELEY WAY,San Francisco,94131,B06,26,8173,3,3,3,false,Alarm,1,TRUCK,3,6,8,Glen Park,"(37.7387923508903, -122.437916930426)",143591154-T11 +151140740,E03,15042997,Medical Incident,04/24/2015,04/24/2015,04/24/2015 08:16:51 AM,04/24/2015 08:17:37 AM,04/24/2015 08:22:04 AM,04/24/2015 08:22:04 AM,04/24/2015 08:23:27 AM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,No Merit,04/24/2015 08:35:26 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",151140740-E03 +160993651,76,16039479,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:28:41 PM,04/08/2016 09:29:10 PM,04/08/2016 09:30:14 PM,04/08/2016 09:30:23 PM,04/08/2016 09:34:50 PM,04/08/2016 09:48:12 PM,04/08/2016 09:56:17 PM,Code 2 Transport,04/08/2016 10:27:13 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",160993651-76 +152880080,E42,15110495,Smoke Investigation (Outside),10/15/2015,10/14/2015,10/15/2015 12:30:35 AM,10/15/2015 12:31:39 AM,10/15/2015 12:32:05 AM,10/15/2015 12:34:38 AM,10/15/2015 12:38:12 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Fire,10/15/2015 01:40:00 AM,400 Block of OXFORD ST,San Francisco,94134,B09,43,6151,3,3,3,true,Alarm,1,ENGINE,1,9,9,Portola,"(37.7243497669411, -122.418705405465)",152880080-E42 +160941680,54,16037255,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:17:47 PM,04/03/2016 12:20:52 PM,04/03/2016 12:21:04 PM,04/03/2016 12:21:14 PM,04/03/2016 12:42:48 PM,04/03/2016 01:12:11 PM,04/03/2016 01:30:18 PM,Code 2 Transport,04/03/2016 02:13:35 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160941680-54 +142672340,E39,14093557,Medical Incident,09/24/2014,09/24/2014,09/24/2014 03:01:25 PM,09/24/2014 03:03:04 PM,09/24/2014 03:05:11 PM,09/24/2014 03:06:38 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 03:08:25 PM,2400 Block of MARKET ST,San Francisco,94114,B08,39,5259,2,2,2,true,Non Life-threatening,1,ENGINE,4,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",142672340-E39 +152830573,E35,15108542,Medical Incident,10/10/2015,10/09/2015,10/10/2015 03:50:03 AM,10/10/2015 03:54:43 AM,10/10/2015 03:55:11 AM,10/10/2015 03:57:19 AM,10/10/2015 04:02:37 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Code 2 Transport,10/10/2015 04:32:24 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7877468463797, -122.396934740624)",152830573-E35 +143543996,63,14126656,Medical Incident,12/20/2014,12/20/2014,12/20/2014 07:39:09 PM,12/20/2014 07:40:27 PM,12/20/2014 07:40:36 PM,12/20/2014 07:40:48 PM,12/20/2014 07:53:11 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Cancelled,12/20/2014 07:56:47 PM,0 Block of STERLING ST,San Francisco,94107,B03,8,2152,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7839848401345, -122.393109070293)",143543996-63 +141632976,89,14056313,Medical Incident,06/12/2014,06/12/2014,06/12/2014 07:35:35 PM,06/12/2014 07:35:35 PM,06/12/2014 07:50:32 PM,06/12/2014 07:50:42 PM,06/12/2014 08:06:32 PM,06/12/2014 08:32:25 PM,06/12/2014 08:51:46 PM,Code 2 Transport,06/12/2014 09:30:18 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",141632976-89 +153331790,E29,15128083,Structure Fire,11/29/2015,11/29/2015,11/29/2015 02:36:27 PM,11/29/2015 02:37:21 PM,11/29/2015 02:37:31 PM,11/29/2015 02:38:22 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Fire,11/29/2015 02:41:54 PM,23RD ST/HARRISON ST,San Francisco,94110,B06,7,5476,3,3,3,true,Alarm,1,ENGINE,10,6,9,Mission,"(37.7542303329372, -122.412047267054)",153331790-E29 +160963334,54,16038141,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:43:22 PM,04/05/2016 06:43:22 PM,04/05/2016 06:47:16 PM,04/05/2016 06:47:43 PM,04/05/2016 07:05:12 PM,04/05/2016 07:30:59 PM,04/05/2016 07:43:18 PM,Code 2 Transport,04/05/2016 08:10:51 PM,7TH ST/BRANNAN ST,San Francisco,94103,B03,8,2311,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7730511015721, -122.40320508207)",160963334-54 +160962719,KM04,16038092,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:30:06 PM,04/05/2016 04:30:06 PM,04/05/2016 04:31:17 PM,04/05/2016 04:31:40 PM,04/05/2016 04:46:51 PM,04/05/2016 05:03:02 PM,04/05/2016 05:23:23 PM,Code 2 Transport,04/05/2016 05:58:23 PM,400 Block of 19TH AVE,San Francisco,94121,B07,14,7165,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7794159427352, -122.478304610244)",160962719-KM04 +141700308,B03,14058565,Alarms,06/19/2014,06/18/2014,06/19/2014 03:58:41 AM,06/19/2014 04:00:03 AM,06/19/2014 04:00:12 AM,06/19/2014 04:02:34 AM,06/19/2014 04:07:32 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Fire,06/19/2014 04:07:38 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",141700308-B03 +143081634,RC3,14108984,Medical Incident,11/04/2014,11/04/2014,11/04/2014 12:32:09 PM,11/04/2014 12:32:47 PM,11/04/2014 12:33:44 PM,11/04/2014 12:35:20 PM,11/04/2014 12:36:05 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Medical Examiner,11/04/2014 01:22:46 PM,1400 Block of CHURCH ST,San Francisco,94131,B06,11,5547,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,8,Noe Valley,"(37.7480916389577, -122.427153088731)",143081634-RC3 +141000401,AP,14033937,Other,04/10/2014,04/10/2014,04/10/2014 10:21:46 PM,04/10/2014 10:21:46 PM,04/10/2014 10:21:46 PM,04/10/2014 10:21:46 PM,04/10/2014 10:21:46 PM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Fire,04/10/2014 10:22:07 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B09,44,6913,,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",141000401-AP +142523199,82,14088095,Medical Incident,09/09/2014,09/09/2014,09/09/2014 08:31:47 PM,09/09/2014 08:32:22 PM,09/09/2014 08:32:46 PM,09/09/2014 08:33:41 PM,09/09/2014 08:36:23 PM,09/09/2014 09:10:08 PM,09/09/2014 09:22:35 PM,Code 2 Transport,09/09/2014 09:52:12 PM,600 Block of 10TH AVE,San Francisco,94118,B07,31,7134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7761033802138, -122.468294601251)",142523199-82 +151382604,E44,15052499,Medical Incident,05/18/2015,05/18/2015,05/18/2015 04:58:19 PM,05/18/2015 04:59:33 PM,05/18/2015 05:00:05 PM,05/18/2015 05:01:25 PM,05/18/2015 05:04:51 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Code 2 Transport,05/18/2015 05:07:40 PM,100 Block of SCHWERIN ST,San Francisco,94134,B09,44,6257,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7114235777776, -122.411060135574)",151382604-E44 +151091949,KM10,15041292,Medical Incident,04/19/2015,04/19/2015,04/19/2015 02:15:23 PM,04/19/2015 02:17:10 PM,04/19/2015 02:17:49 PM,04/19/2015 02:18:24 PM,04/19/2015 02:31:41 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Against Medical Advice,04/19/2015 03:21:45 PM,300 Block of DE HARO ST,San Francisco,94103,B03,29,2413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission Bay,"(37.7654817940477, -122.401728756227)",151091949-KM10 +153011377,B10,15115434,Alarms,10/28/2015,10/28/2015,10/28/2015 10:39:03 AM,10/28/2015 10:40:51 AM,10/28/2015 10:41:27 AM,10/28/2015 10:42:06 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 10:45:43 AM,400 Block of DONAHUE ST,Hunters Point,94124,B10,47,6721,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7274697355387, -122.371271384913)",153011377-B10 +152664324,AM16,15102094,Medical Incident,09/23/2015,09/23/2015,09/23/2015 11:40:04 PM,09/23/2015 11:41:43 PM,09/23/2015 11:42:16 PM,09/23/2015 11:43:27 PM,09/24/2015 12:20:49 AM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Other,09/24/2015 12:26:51 AM,JENNINGS ST/WALLACE AV,San Francisco,94124,B10,17,6651,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7264151508885, -122.38923775426)",152664324-AM16 +160993150,89,16039429,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:53:57 PM,04/08/2016 06:53:57 PM,04/08/2016 06:54:42 PM,04/08/2016 06:54:52 PM,04/08/2016 06:58:39 PM,04/08/2016 07:30:58 PM,04/08/2016 07:44:56 PM,Code 2 Transport,04/08/2016 08:17:14 PM,LAGUNA ST/HERMANN ST,San Francisco,94102,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7708685446413, -122.425135508368)",160993150-89 +143380113,53,14119801,Medical Incident,12/04/2014,12/03/2014,12/04/2014 12:48:56 AM,12/04/2014 12:48:56 AM,12/04/2014 12:49:14 AM,12/04/2014 12:49:23 AM,12/04/2014 12:57:59 AM,12/04/2014 01:15:16 AM,12/04/2014 01:19:46 AM,Code 2 Transport,12/04/2014 01:30:27 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",143380113-53 +150233110,KM14,15009048,Medical Incident,01/23/2015,01/23/2015,01/23/2015 07:26:04 PM,01/23/2015 07:27:15 PM,01/23/2015 07:27:40 PM,01/23/2015 07:28:25 PM,01/23/2015 07:33:36 PM,01/23/2015 07:53:42 PM,01/23/2015 08:05:51 PM,Code 2 Transport,01/23/2015 08:21:55 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",150233110-KM14 +152701872,E01,15103477,Medical Incident,09/27/2015,09/27/2015,09/27/2015 02:21:28 PM,09/27/2015 02:22:43 PM,09/27/2015 02:22:50 PM,09/27/2015 02:25:56 PM,09/27/2015 02:26:36 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Code 2 Transport,09/27/2015 02:33:14 PM,JESSIE ST/6TH ST,San Francisco,94103,B03,1,2251,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",152701872-E01 +143133346,71,14111048,Medical Incident,11/09/2014,11/09/2014,11/09/2014 10:22:29 PM,11/09/2014 10:23:16 PM,11/09/2014 10:24:02 PM,11/09/2014 10:24:16 PM,11/09/2014 10:31:21 PM,11/09/2014 10:36:56 PM,11/09/2014 10:54:38 PM,Code 2 Transport,11/09/2014 11:18:46 PM,1500 Block of LA SALLE AVE,San Francisco,94124,B10,17,6517,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7359790207517, -122.387994549073)",143133346-71 +153451986,T11,15132819,Structure Fire,12/11/2015,12/11/2015,12/11/2015 01:35:21 PM,12/11/2015 01:35:21 PM,12/11/2015 01:36:04 PM,12/11/2015 01:36:58 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Fire,12/11/2015 01:38:28 PM,24TH ST/CHURCH ST,San Francisco,94114,B06,11,5523,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",153451986-T11 +142592814,T13,14090591,Alarms,09/16/2014,09/16/2014,09/16/2014 05:40:36 PM,09/16/2014 05:41:55 PM,09/16/2014 05:44:03 PM,09/16/2014 05:44:45 PM,09/16/2014 05:48:25 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Fire,09/16/2014 06:01:07 PM,100 Block of CHESTNUT ST,San Francisco,94133,B01,28,1224,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8046380785616, -122.40638450904)",142592814-T13 +161000763,KM09,16039657,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:54:11 AM,04/09/2016 07:56:00 AM,04/09/2016 08:05:30 AM,04/09/2016 08:06:03 AM,04/09/2016 08:15:28 AM,04/09/2016 08:51:31 AM,04/09/2016 09:07:24 AM,Code 2 Transport,04/09/2016 09:50:09 AM,FOLSOM ST/THE EMBARCADERO SOU,San Francisco,94105,B03,35,2112,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7904750361941, -122.39055604599)",161000763-KM09 +143230980,E28,14114284,Medical Incident,11/19/2014,11/19/2014,11/19/2014 10:08:37 AM,11/19/2014 10:08:44 AM,11/19/2014 10:09:16 AM,11/19/2014 10:12:08 AM,11/19/2014 10:15:43 AM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Code 3 Transport,11/19/2014 10:16:32 AM,600 Block of CHESTNUT ST,San Francisco,94133,B01,28,1424,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8037059928604, -122.414061181051)",143230980-E28 +160950115,64,16037480,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:12:39 AM,04/04/2016 01:13:11 AM,04/04/2016 01:13:24 AM,04/04/2016 01:13:39 AM,04/04/2016 01:18:58 AM,04/04/2016 01:48:27 AM,04/04/2016 02:01:42 AM,Code 2 Transport,04/04/2016 02:48:16 AM,100 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7131278901995, -122.45753811019)",160950115-64 +152474536,70,15094475,Medical Incident,09/04/2015,09/04/2015,09/04/2015 11:33:01 PM,09/04/2015 11:35:16 PM,09/04/2015 11:35:35 PM,09/04/2015 11:36:01 PM,09/04/2015 11:41:54 PM,09/05/2015 12:05:17 AM,09/05/2015 12:11:12 AM,Code 2 Transport,09/05/2015 12:42:13 AM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",152474536-70 +152052817,72,15078167,Medical Incident,07/24/2015,07/24/2015,07/24/2015 05:14:45 PM,07/24/2015 05:15:25 PM,07/24/2015 05:15:47 PM,07/24/2015 05:16:28 PM,07/24/2015 05:19:31 PM,07/24/2015 05:29:06 PM,07/24/2015 05:46:10 PM,Code 3 Transport,07/24/2015 05:59:03 PM,JOHN F KENNEDY DR/36TH AV,San Francisco,94122,B07,34,7262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7699670033298, -122.495263464051)",152052817-72 +160993811,AM14,16039504,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:11:50 PM,04/08/2016 10:12:21 PM,04/08/2016 10:13:00 PM,04/08/2016 10:13:33 PM,04/08/2016 10:17:05 PM,04/08/2016 10:30:49 PM,04/08/2016 10:43:01 PM,Code 2 Transport,04/08/2016 11:00:18 PM,SUTTER ST/STOCKTON ST,San Francisco,94108,B01,1,1324,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",160993811-AM14 +142092715,68,14072558,Structure Fire,07/28/2014,07/28/2014,07/28/2014 06:40:32 PM,07/28/2014 06:41:43 PM,07/28/2014 06:49:01 PM,07/28/2014 06:49:10 PM,07/28/2014 06:50:27 PM,07/28/2014 07:02:14 PM,07/28/2014 07:18:47 PM,Fire,07/28/2014 08:02:57 PM,14TH ST/FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,true,Alarm,1,MEDIC,6,2,9,Mission,"(37.7685373884214, -122.415613781366)",142092715-68 +142200170,T03,14076181,Medical Incident,08/08/2014,08/07/2014,08/08/2014 01:22:14 AM,08/08/2014 01:24:53 AM,08/08/2014 01:25:13 AM,08/08/2014 01:27:07 AM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Code 2 Transport,08/08/2014 01:27:58 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",142200170-T03 +151410964,B03,15053501,Alarms,05/21/2015,05/21/2015,05/21/2015 08:50:13 AM,05/21/2015 08:51:12 AM,05/21/2015 08:51:23 AM,05/21/2015 08:53:09 AM,05/21/2015 08:56:37 AM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 09:09:15 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.779911669335, -122.407474439624)",151410964-B03 +160953862,63,16037804,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:53:30 PM,04/04/2016 09:55:32 PM,04/04/2016 09:55:43 PM,04/04/2016 09:55:55 PM,04/04/2016 10:04:01 PM,04/04/2016 10:38:08 PM,04/04/2016 11:15:57 PM,Code 2 Transport,04/04/2016 11:55:34 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160953862-63 +152402522,64,15091477,Medical Incident,08/28/2015,08/28/2015,08/28/2015 02:55:22 PM,08/28/2015 02:55:44 PM,08/28/2015 02:56:25 PM,08/28/2015 02:56:36 PM,08/28/2015 03:03:12 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Patient Declined Transport,08/28/2015 04:15:50 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",152402522-64 +152290595,54,15087276,Traffic Collision,08/17/2015,08/16/2015,08/17/2015 07:04:58 AM,08/17/2015 07:04:58 AM,08/17/2015 07:05:04 AM,08/17/2015 07:05:22 AM,08/17/2015 07:12:12 AM,04/25/2016 01:08:52 PM,04/25/2016 01:08:52 PM,Against Medical Advice,08/17/2015 08:10:32 AM,RAYMOND AV/RUTLAND ST,San Francisco,94134,B10,44,6267,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.713225683669, -122.407056445013)",152290595-54 +150542368,E48,15020822,Traffic Collision,02/23/2015,02/23/2015,02/23/2015 03:19:15 PM,02/23/2015 03:21:29 PM,02/23/2015 03:22:41 PM,02/23/2015 03:23:43 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Cancelled,02/23/2015 03:23:50 PM,0 Block of FREMONT ST,San Francisco,94105,B03,48,2951,2,2,2,true,Non Life-threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",150542368-E48 +141973097,E02,14068336,Medical Incident,07/16/2014,07/16/2014,07/16/2014 06:58:56 PM,07/16/2014 06:59:58 PM,07/16/2014 07:06:40 PM,07/16/2014 07:08:36 PM,07/16/2014 07:09:02 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 2 Transport,07/16/2014 07:30:01 PM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",141973097-E02 +160984005,AM14,16039139,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:58:24 PM,04/07/2016 10:58:24 PM,04/07/2016 10:59:05 PM,04/07/2016 10:59:39 PM,04/07/2016 11:04:54 PM,04/07/2016 11:21:49 PM,04/07/2016 11:41:14 PM,Code 2 Transport,04/08/2016 12:10:23 AM,GREEN ST/MONTGOMERY ST,San Francisco,94133,B01,28,1226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8001042889247, -122.404240417655)",160984005-AM14 +142442328,E19,14085088,Structure Fire,09/01/2014,09/01/2014,09/01/2014 04:31:12 PM,09/01/2014 04:32:23 PM,09/01/2014 04:33:19 PM,09/01/2014 04:34:21 PM,09/01/2014 04:39:08 PM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/01/2014 04:57:14 PM,600 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",142442328-E19 +150441013,T01,15017038,Alarms,02/13/2015,02/13/2015,02/13/2015 09:08:06 AM,02/13/2015 09:09:02 AM,02/13/2015 09:09:19 AM,02/13/2015 09:11:20 AM,02/13/2015 09:14:25 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Fire,02/13/2015 09:32:13 AM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",150441013-T01 +153034274,E25,15116458,Smoke Investigation (Outside),10/30/2015,10/30/2015,10/30/2015 11:33:00 PM,10/30/2015 11:34:58 PM,10/30/2015 11:36:54 PM,10/30/2015 11:38:19 PM,10/30/2015 11:43:19 PM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Fire,10/30/2015 11:43:22 PM,1300 Block of CESAR CHAVEZ ST,San Francisco,94124,B10,25,2635,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7500745703609, -122.390927671815)",153034274-E25 +160941931,71,16037270,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:38:50 PM,04/03/2016 01:39:00 PM,04/03/2016 01:39:28 PM,04/03/2016 01:39:40 PM,04/03/2016 02:04:28 PM,04/03/2016 02:04:33 PM,04/03/2016 02:15:10 PM,Code 2 Transport,04/03/2016 02:43:09 PM,300 Block of ELIZABETH ST,San Francisco,94114,B06,11,5514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Noe Valley,"(37.7523110363157, -122.428880466079)",160941931-71 +143453655,71,14123095,Medical Incident,12/11/2014,12/11/2014,12/11/2014 09:41:51 PM,12/11/2014 09:42:51 PM,12/11/2014 09:50:01 PM,12/11/2014 09:50:17 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Cancelled,12/11/2014 10:04:03 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",143453655-71 +152683959,FD00A,15102885,,09/25/2015,09/25/2015,09/25/2015 10:24:20 PM,09/25/2015 10:24:20 PM,09/25/2015 11:31:17 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Code 2 Transport,09/25/2015 11:31:20 PM,1100 Block of PINE ST,San Francisco,94109,B01,41,1464,2,2,2,false,Non Life-threatening,1,SUPPORT,2,1,3,Nob Hill,"(37.7902802865906, -122.414916875484)",152683959-FD00A +153260107,AM24,15125340,Medical Incident,11/22/2015,11/21/2015,11/22/2015 12:39:07 AM,11/22/2015 12:41:57 AM,11/22/2015 12:42:35 AM,11/22/2015 12:44:33 AM,11/22/2015 12:58:32 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Gone on Arrival,11/22/2015 01:15:20 AM,400 Block of MASON ST,San Francisco,94102,B01,3,1411,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7877640990096, -122.409925328419)",153260107-AM24 +160993959,52,16039522,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:00:12 PM,04/08/2016 11:04:20 PM,04/08/2016 11:04:40 PM,04/08/2016 11:04:52 PM,04/08/2016 11:06:22 PM,04/08/2016 11:28:02 PM,04/08/2016 11:48:09 PM,Code 2 Transport,04/09/2016 12:23:31 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160993959-52 +150332261,KM12,15012781,Medical Incident,02/02/2015,02/02/2015,02/02/2015 03:20:37 PM,02/02/2015 03:20:44 PM,02/02/2015 03:21:08 PM,02/02/2015 03:21:17 PM,02/02/2015 03:42:33 PM,02/02/2015 03:42:38 PM,02/02/2015 04:23:40 PM,Code 2 Transport,02/02/2015 04:35:19 PM,0 Block of CLIPPER ST,San Francisco,94114,B06,11,5536,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7494200824928, -122.426066828895)",150332261-KM12 +151800282,KM07,15068571,Medical Incident,06/29/2015,06/28/2015,06/29/2015 02:39:15 AM,06/29/2015 02:40:33 AM,06/29/2015 02:40:40 AM,06/29/2015 02:41:41 AM,06/29/2015 02:45:07 AM,06/29/2015 03:04:31 AM,06/29/2015 03:10:00 AM,Code 2 Transport,06/29/2015 03:35:02 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",151800282-KM07 +161002228,58,16039831,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:17:50 PM,04/09/2016 04:21:43 PM,04/09/2016 04:21:54 PM,04/09/2016 04:22:32 PM,04/09/2016 04:29:57 PM,04/09/2016 04:37:43 PM,04/09/2016 04:49:07 PM,Code 2 Transport,04/09/2016 05:10:40 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",161002228-58 +142362060,E15,14082096,Smoke Investigation (Outside),08/24/2014,08/24/2014,08/24/2014 02:23:32 PM,08/24/2014 02:25:20 PM,08/24/2014 02:25:33 PM,08/24/2014 02:26:43 PM,08/24/2014 02:28:40 PM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,Fire,08/24/2014 02:33:37 PM,ALEMANY BL/ONONDAGA AV,San Francisco,94112,B09,15,8274,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7216263841889, -122.438641759079)",142362060-E15 +151723139,70,15065826,Medical Incident,06/21/2015,06/21/2015,06/21/2015 08:57:00 PM,06/21/2015 08:57:00 PM,06/21/2015 08:57:18 PM,06/21/2015 08:57:38 PM,06/21/2015 09:11:58 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Patient Declined Transport,06/21/2015 10:00:46 PM,44TH AV/TARAVAL ST,San Francisco,94116,B08,18,7644,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7418617232147, -122.502476736682)",151723139-70 +160932513,54,16036949,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:49:23 PM,04/02/2016 04:50:15 PM,04/02/2016 04:50:32 PM,04/02/2016 04:51:19 PM,04/02/2016 04:57:04 PM,04/02/2016 05:36:09 PM,04/02/2016 05:33:17 PM,Code 2 Transport,04/02/2016 06:19:13 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160932513-54 +160933369,85,16037035,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:43:22 PM,04/02/2016 08:45:18 PM,04/02/2016 08:45:36 PM,04/02/2016 08:45:45 PM,04/02/2016 08:55:59 PM,04/02/2016 09:26:02 PM,04/02/2016 09:39:46 PM,Code 2 Transport,04/02/2016 10:32:48 PM,1900 Block of EDDY ST,San Francisco,94115,B05,21,4241,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7805348135093, -122.439769204544)",160933369-85 +141481160,77,14050779,Medical Incident,05/28/2014,05/28/2014,05/28/2014 10:26:29 AM,05/28/2014 10:27:57 AM,05/28/2014 10:28:14 AM,05/28/2014 10:30:19 AM,05/28/2014 10:37:07 AM,05/28/2014 11:03:08 AM,05/28/2014 11:41:46 AM,Code 2 Transport,05/28/2014 12:30:11 PM,1000 Block of NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",141481160-77 +142241467,E01,14077711,Medical Incident,08/12/2014,08/12/2014,08/12/2014 12:09:17 PM,08/12/2014 12:09:26 PM,08/12/2014 12:17:12 PM,08/12/2014 12:17:17 PM,08/12/2014 12:20:45 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Code 2 Transport,08/12/2014 12:22:49 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",142241467-E01 +150913495,53,15034747,Medical Incident,04/01/2015,04/01/2015,04/01/2015 08:41:03 PM,04/01/2015 08:41:47 PM,04/01/2015 08:42:00 PM,04/01/2015 08:42:33 PM,04/01/2015 08:46:24 PM,04/01/2015 09:15:45 PM,04/01/2015 09:48:51 PM,Code 2 Transport,04/01/2015 10:30:14 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",150913495-53 +143632902,T11,14129962,Structure Fire,12/29/2014,12/29/2014,12/29/2014 06:58:02 PM,12/29/2014 06:58:02 PM,12/29/2014 06:58:33 PM,12/29/2014 07:00:31 PM,12/29/2014 07:06:52 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Fire,12/29/2014 07:28:35 PM,500 Block of PORTOLA DR,San Francisco,94131,B06,39,866,3,3,3,false,Alarm,1,TRUCK,3,6,8,Glen Park,"(37.7455667070932, -122.451155727844)",143632902-T11 +151823878,E13,15069655,Medical Incident,07/01/2015,07/01/2015,07/01/2015 10:03:38 PM,07/01/2015 10:04:10 PM,07/01/2015 10:04:27 PM,07/01/2015 10:06:21 PM,07/01/2015 10:07:53 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Code 2 Transport,07/01/2015 10:26:15 PM,KEARNY ST/SACRAMENTO ST,San Francisco,94104,B01,13,1244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",151823878-E13 +160962013,AM10,16038035,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:40:47 PM,04/05/2016 01:42:51 PM,04/05/2016 01:44:46 PM,04/05/2016 01:45:29 PM,04/05/2016 02:17:22 PM,04/05/2016 02:17:24 PM,04/05/2016 02:53:44 PM,Code 2 Transport,04/05/2016 03:21:19 PM,900 Block of BRYANT ST,San Francisco,94103,B03,8,2311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7740297538027, -122.404968319078)",160962013-AM10 +160961134,AM10,16037949,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:10:34 AM,04/05/2016 10:14:44 AM,04/05/2016 10:15:27 AM,04/05/2016 10:16:29 AM,04/05/2016 10:19:18 AM,04/05/2016 10:53:16 AM,04/05/2016 11:33:19 AM,Code 2 Transport,04/05/2016 11:58:59 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7794880680759, -122.40694292477)",160961134-AM10 +141553487,75,14053468,Medical Incident,06/04/2014,06/04/2014,06/04/2014 09:50:00 PM,06/04/2014 09:50:56 PM,06/04/2014 09:52:39 PM,06/04/2014 09:53:34 PM,06/04/2014 09:56:37 PM,06/04/2014 10:10:37 PM,06/04/2014 10:20:33 PM,Code 2 Transport,06/04/2014 10:44:50 PM,1600 Block of CAYUGA AVE,San Francisco,94112,B09,33,8344,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.715925352275, -122.447178760466)",141553487-75 +143361033,85,14119025,Medical Incident,12/02/2014,12/02/2014,12/02/2014 10:19:28 AM,12/02/2014 10:20:47 AM,12/02/2014 10:21:25 AM,12/02/2014 10:21:34 AM,12/02/2014 10:24:23 AM,12/02/2014 10:39:35 AM,12/02/2014 10:59:04 AM,Code 2 Transport,12/02/2014 11:49:57 AM,1600 Block of BRYANT ST,San Francisco,94103,B02,29,5222,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7662587674103, -122.410479250127)",143361033-85 +161002335,89,16039843,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:58:58 PM,04/09/2016 04:59:36 PM,04/09/2016 04:59:59 PM,04/09/2016 05:01:51 PM,04/09/2016 05:03:51 PM,04/09/2016 05:05:47 PM,04/09/2016 05:16:39 PM,Code 2 Transport,04/09/2016 05:43:54 PM,0 Block of PERSIA AVE,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7229939497296, -122.435557066402)",161002335-89 +151970694,85,15075033,Medical Incident,07/16/2015,07/15/2015,07/16/2015 07:58:41 AM,07/16/2015 08:00:47 AM,07/16/2015 08:05:36 AM,07/16/2015 08:05:36 AM,07/16/2015 08:09:44 AM,07/16/2015 08:25:26 AM,07/16/2015 08:55:27 AM,Code 2 Transport,07/16/2015 09:38:09 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",151970694-85 +151500747,89,15057007,Medical Incident,05/30/2015,05/30/2015,05/30/2015 08:08:57 AM,05/30/2015 08:11:00 AM,05/30/2015 08:11:37 AM,05/30/2015 08:12:14 AM,05/30/2015 08:17:51 AM,05/30/2015 08:34:22 AM,05/30/2015 08:52:41 AM,Code 2 Transport,05/30/2015 09:29:54 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",151500747-89 +160922324,68,16036504,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:43:56 PM,04/01/2016 03:47:15 PM,04/01/2016 03:47:47 PM,04/01/2016 03:47:57 PM,04/01/2016 03:51:23 PM,04/01/2016 03:55:20 PM,04/01/2016 04:14:36 PM,Code 2 Transport,04/01/2016 05:02:42 PM,100 Block of KISKA RD,San Francisco,94124,B10,17,6625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",160922324-68 +152592780,E33,15099088,Medical Incident,09/16/2015,09/16/2015,09/16/2015 05:18:26 PM,09/16/2015 05:19:51 PM,09/16/2015 05:20:14 PM,09/16/2015 05:22:03 PM,09/16/2015 05:24:59 PM,04/25/2016 01:08:19 PM,04/25/2016 01:08:19 PM,Code 2 Transport,09/16/2015 05:33:35 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",152592780-E33 +152071219,84,15078823,Medical Incident,07/26/2015,07/26/2015,07/26/2015 10:28:58 AM,07/26/2015 10:30:44 AM,07/26/2015 10:33:01 AM,07/26/2015 10:33:20 AM,07/26/2015 10:38:19 AM,07/26/2015 10:45:46 AM,07/26/2015 11:06:13 AM,Code 2 Transport,07/26/2015 11:36:25 AM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",152071219-84 +160983685,61,16039110,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:06:44 PM,04/07/2016 09:08:42 PM,04/07/2016 09:08:57 PM,04/07/2016 09:09:34 PM,04/07/2016 09:17:57 PM,04/07/2016 09:32:27 PM,04/07/2016 09:47:01 PM,Code 2 Transport,04/07/2016 10:11:31 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5259,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",160983685-61 +151191563,54,15044976,Medical Incident,04/29/2015,04/29/2015,04/29/2015 11:33:58 AM,04/29/2015 11:34:19 AM,04/29/2015 11:34:42 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Code 2 Transport,04/29/2015 11:35:27 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",151191563-54 +150293883,KM03,15011379,Medical Incident,01/29/2015,01/29/2015,01/29/2015 11:41:53 PM,01/29/2015 11:43:47 PM,01/29/2015 11:45:31 PM,01/29/2015 11:46:37 PM,01/29/2015 11:53:02 PM,01/30/2015 12:15:27 AM,01/30/2015 12:38:39 AM,Code 2 Transport,01/30/2015 01:01:13 AM,1000 Block of POWELL ST,San Francisco,94108,B01,2,1355,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7942855985686, -122.409699641182)",150293883-KM03 +142764198,79,14097179,Medical Incident,10/03/2014,10/03/2014,10/03/2014 10:54:50 PM,10/03/2014 10:54:50 PM,10/03/2014 11:27:03 PM,10/03/2014 11:27:11 PM,10/03/2014 11:45:46 PM,10/03/2014 11:48:23 PM,10/04/2014 12:05:55 AM,Code 2 Transport,10/04/2014 12:45:47 AM,CASTILLO ST/VELASCO AV,San Francisco,94134,B09,43,6247,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7094714296635, -122.417656944074)",142764198-79 +160921415,65,16036410,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:41:33 AM,04/01/2016 11:43:46 AM,04/01/2016 11:44:57 AM,04/01/2016 11:45:06 AM,04/01/2016 11:54:24 AM,04/01/2016 12:06:48 PM,04/01/2016 12:38:54 PM,Code 2 Transport,04/01/2016 01:12:45 PM,500 Block of EDDY ST,San Francisco,94102,B02,3,1643,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",160921415-65 +142301260,E18,14079875,Medical Incident,08/18/2014,08/18/2014,08/18/2014 10:35:18 AM,08/18/2014 10:39:30 AM,08/18/2014 10:40:09 AM,08/18/2014 10:43:31 AM,08/18/2014 10:46:32 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Code 2 Transport,08/18/2014 11:00:19 AM,1800 Block of 48TH AVE,San Francisco,94122,B08,23,7725,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7519393941701, -122.50741193175)",142301260-E18 +151273844,86,15048340,Medical Incident,05/07/2015,05/07/2015,05/07/2015 09:55:48 PM,05/07/2015 09:56:05 PM,05/07/2015 09:56:22 PM,05/07/2015 09:56:35 PM,05/07/2015 10:00:47 PM,05/07/2015 10:25:52 PM,05/07/2015 10:36:04 PM,Code 2 Transport,05/07/2015 10:58:24 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",151273844-86 +160981808,67,16038908,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:27:47 PM,04/07/2016 12:29:03 PM,04/07/2016 12:29:42 PM,04/07/2016 12:29:55 PM,04/07/2016 12:37:26 PM,04/07/2016 12:56:18 PM,04/07/2016 01:31:55 PM,Code 2 Transport,04/07/2016 02:09:28 PM,2400 Block of 28TH AVE,San Francisco,94116,B08,18,7522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7416950719764, -122.485200987218)",160981808-67 +142491305,B03,14086761,Alarms,09/06/2014,09/06/2014,09/06/2014 10:59:55 AM,09/06/2014 11:01:23 AM,09/06/2014 11:01:42 AM,09/06/2014 11:01:58 AM,09/06/2014 11:08:38 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Fire,09/06/2014 11:24:32 AM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,false,Alarm,1,CHIEF,3,2,10,Mission,"(37.765718993574, -122.409520691153)",142491305-B03 +160973700,72,16038622,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:58:12 PM,04/06/2016 06:59:48 PM,04/06/2016 07:02:13 PM,04/06/2016 07:08:39 PM,04/06/2016 07:08:40 PM,04/06/2016 07:26:26 PM,04/06/2016 07:35:10 PM,Code 3 Transport,04/06/2016 08:30:46 PM,200 Block of ALPHA ST,San Francisco,94134,B10,44,6267,2,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7135034154294, -122.404588282011)",160973700-72 +161000271,AM18,16039590,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:59:31 AM,04/09/2016 02:02:22 AM,04/09/2016 02:06:16 AM,04/09/2016 02:07:05 AM,04/09/2016 02:21:44 AM,04/09/2016 02:38:25 AM,04/09/2016 02:49:15 AM,Code 2 Transport,04/09/2016 03:12:18 AM,1ST ST/JESSIE ST,San Francisco,94105,B03,13,2143,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7902287946656, -122.398159693162)",161000271-AM18 +153122832,58,15120038,Medical Incident,11/08/2015,11/08/2015,11/08/2015 07:21:43 PM,11/08/2015 07:24:35 PM,11/08/2015 07:24:57 PM,11/08/2015 07:25:21 PM,11/08/2015 07:29:40 PM,04/25/2016 01:07:19 PM,04/25/2016 01:07:19 PM,Patient Declined Transport,11/08/2015 08:19:43 PM,600 Block of 7TH AVE,San Francisco,94118,B07,31,7132,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7762562982269, -122.46494135115)",153122832-58 +152952435,E40,15113418,Medical Incident,10/22/2015,10/22/2015,10/22/2015 04:01:12 PM,10/22/2015 04:01:12 PM,10/22/2015 04:02:55 PM,10/22/2015 04:04:26 PM,10/22/2015 04:07:44 PM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,Patient Declined Transport,10/22/2015 04:29:12 PM,200 Block of KENSINGTON WAY,San Francisco,94127,B08,39,8577,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7427618057134, -122.461688421967)",152952435-E40 +151300438,KM01,15049226,Medical Incident,05/10/2015,05/09/2015,05/10/2015 03:51:56 AM,05/10/2015 03:51:56 AM,05/10/2015 03:53:39 AM,05/10/2015 03:56:16 AM,05/10/2015 03:58:40 AM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Patient Declined Transport,05/10/2015 04:25:09 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",151300438-KM01 +153392586,E03,15130515,Alarms,12/05/2015,12/05/2015,12/05/2015 04:16:55 PM,12/05/2015 04:18:03 PM,12/05/2015 04:18:37 PM,12/05/2015 04:18:58 PM,12/05/2015 04:22:01 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Fire,12/05/2015 04:34:11 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",153392586-E03 +152103553,E21,15080151,Structure Fire,07/29/2015,07/29/2015,07/29/2015 09:01:04 PM,07/29/2015 09:01:04 PM,07/29/2015 09:02:11 PM,07/29/2015 09:03:06 PM,07/29/2015 09:04:53 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/29/2015 09:05:00 PM,BRODERICK ST/HAIGHT ST,San Francisco,94117,B05,21,4246,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7710564942104, -122.438709122602)",152103553-E21 +151153605,KM07,15043630,Medical Incident,04/25/2015,04/25/2015,04/25/2015 10:38:44 PM,04/25/2015 10:40:00 PM,04/25/2015 10:40:09 PM,04/25/2015 10:40:44 PM,04/25/2015 10:46:02 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,No Merit,04/25/2015 10:53:59 PM,900 Block of HYDE ST,San Francisco,94109,B04,3,1561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",151153605-KM07 +152474116,64,15094441,Traffic Collision,09/04/2015,09/04/2015,09/04/2015 09:52:26 PM,09/04/2015 09:54:42 PM,09/04/2015 09:55:04 PM,09/04/2015 09:56:08 PM,09/04/2015 10:01:11 PM,09/04/2015 10:37:35 PM,09/04/2015 10:48:08 PM,Code 2 Transport,09/04/2015 11:17:29 PM,1600 Block of PLYMOUTH AVE,San Francisco,94127,B09,15,8522,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7315966401409, -122.457500269837)",152474116-64 +160981654,KM10,16038897,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:53:10 AM,04/07/2016 11:53:10 AM,04/07/2016 12:00:43 PM,04/07/2016 12:01:50 PM,04/07/2016 12:24:40 PM,04/07/2016 12:41:33 PM,04/07/2016 01:09:13 PM,Code 2 Transport,04/07/2016 01:34:43 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160981654-KM10 +152840697,65,15108959,Medical Incident,10/11/2015,10/10/2015,10/11/2015 05:02:19 AM,10/11/2015 05:06:35 AM,10/11/2015 05:09:03 AM,10/11/2015 05:09:24 AM,10/11/2015 05:11:18 AM,10/11/2015 05:26:22 AM,10/11/2015 05:37:43 AM,Code 2 Transport,10/11/2015 05:52:21 AM,200 Block of 20TH AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7831899010435, -122.479652365289)",152840697-65 +151021780,D3,15038586,Structure Fire,04/12/2015,04/12/2015,04/12/2015 01:43:04 PM,04/12/2015 01:44:15 PM,04/12/2015 01:44:38 PM,04/12/2015 01:45:42 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Fire,04/12/2015 01:48:47 PM,1900 Block of OCEAN AVE,San Francisco,94127,B09,15,8456,3,3,3,false,Alarm,1,CHIEF,10,9,7,West of Twin Peaks,"(37.7252945346576, -122.46256031901)",151021780-D3 +142673607,T13,14093682,Medical Incident,09/24/2014,09/24/2014,09/24/2014 08:40:32 PM,09/24/2014 08:42:15 PM,09/24/2014 08:44:29 PM,09/24/2014 08:45:59 PM,09/24/2014 08:48:24 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 08:56:54 PM,600 Block of KEARNY ST,San Francisco,94108,B01,13,1244,2,E,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.7942286247262, -122.404821897781)",142673607-T13 +150764061,E36,15029338,Medical Incident,03/17/2015,03/17/2015,03/17/2015 10:59:18 PM,03/17/2015 11:00:30 PM,03/17/2015 11:00:42 PM,03/17/2015 11:02:19 PM,03/17/2015 11:04:09 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Code 2 Transport,03/17/2015 11:16:43 PM,400 Block of FELL ST,San Francisco,94102,B02,36,3314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.775693445214, -122.425208793392)",150764061-E36 +160983512,78,16039093,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:07:52 PM,04/07/2016 08:07:52 PM,04/07/2016 08:08:04 PM,04/07/2016 08:08:10 PM,04/07/2016 08:31:46 PM,04/07/2016 08:32:51 PM,04/07/2016 08:40:01 PM,Code 2 Transport,04/07/2016 09:11:58 PM,MARKET ST/LAGUNA ST,San Francisco,94103,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",160983512-78 +160961516,74,16037985,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:46:03 AM,04/05/2016 11:47:31 AM,04/05/2016 11:48:01 AM,04/05/2016 11:48:09 AM,04/05/2016 11:51:44 AM,04/05/2016 12:05:35 PM,04/05/2016 12:19:02 PM,Code 2 Transport,04/05/2016 12:40:14 PM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",160961516-74 +160941121,AM10,16037208,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:38:26 AM,04/03/2016 09:38:50 AM,04/03/2016 09:39:06 AM,04/03/2016 09:42:01 AM,04/03/2016 09:42:01 AM,04/03/2016 09:59:18 AM,04/03/2016 10:14:05 AM,Code 2 Transport,04/03/2016 10:52:52 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7649874026625, -122.421639212531)",160941121-AM10 +150310950,60,15011899,Medical Incident,01/31/2015,01/31/2015,01/31/2015 09:05:13 AM,01/31/2015 09:07:01 AM,01/31/2015 09:07:26 AM,01/31/2015 09:07:54 AM,01/31/2015 09:15:15 AM,01/31/2015 09:38:06 AM,01/31/2015 09:56:16 AM,Code 2 Transport,01/31/2015 10:25:31 AM,3RD ST/MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",150310950-60 +152093163,AM16,15079775,Medical Incident,07/28/2015,07/28/2015,07/28/2015 07:03:11 PM,07/28/2015 07:03:11 PM,07/28/2015 07:03:49 PM,07/28/2015 07:04:21 PM,07/28/2015 07:12:54 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,No Merit,07/28/2015 07:26:37 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",152093163-AM16 +152943421,72,15113125,Water Rescue,10/21/2015,10/21/2015,10/21/2015 07:58:30 PM,10/21/2015 08:01:28 PM,10/21/2015 08:02:44 PM,10/21/2015 08:03:21 PM,10/21/2015 08:14:35 PM,04/25/2016 01:07:38 PM,04/25/2016 01:07:38 PM,Fire,10/21/2015 08:56:13 PM,FS25,,94158,B03,4,2231,3,3,3,true,Fire,1,MEDIC,8,3,6,Mission Bay,"(37.7717396203256, -122.386663865791)",152943421-72 +153330285,E40,15127909,Medical Incident,11/29/2015,11/28/2015,11/29/2015 02:05:22 AM,11/29/2015 02:06:12 AM,11/29/2015 02:07:05 AM,11/29/2015 02:09:18 AM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,No Merit,11/29/2015 02:11:58 AM,27TH AV/TARAVAL ST,San Francisco,94116,B08,40,7471,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7426731137163, -122.484263608694)",153330285-E40 +141813738,66,14062849,Medical Incident,06/30/2014,06/30/2014,06/30/2014 11:02:35 PM,06/30/2014 11:03:11 PM,06/30/2014 11:03:48 PM,06/30/2014 11:05:06 PM,06/30/2014 11:07:23 PM,06/30/2014 11:22:53 PM,06/30/2014 11:37:43 PM,Code 2 Transport,07/01/2014 12:25:53 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",141813738-66 +142483861,E06,14086628,Medical Incident,09/05/2014,09/05/2014,09/05/2014 11:19:06 PM,09/05/2014 11:20:19 PM,09/05/2014 11:20:31 PM,09/05/2014 11:21:38 PM,09/05/2014 11:24:34 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/05/2014 11:27:44 PM,400 Block of GUERRERO ST,San Francisco,94110,B02,6,5235,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7635692964528, -122.423876975455)",142483861-E06 +151233333,RC3,15046814,Medical Incident,05/03/2015,05/03/2015,05/03/2015 09:59:18 PM,05/03/2015 10:00:00 PM,05/03/2015 10:12:41 PM,05/03/2015 10:13:55 PM,05/03/2015 10:17:09 PM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,Against Medical Advice,05/03/2015 10:34:01 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7650513381945, -122.419668973861)",151233333-RC3 +141070354,E07,14036251,Medical Incident,04/17/2014,04/17/2014,04/17/2014 10:14:46 PM,04/17/2014 10:16:15 PM,04/17/2014 10:16:38 PM,04/17/2014 10:18:54 PM,04/17/2014 10:21:15 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Code 2 Transport,04/17/2014 10:26:41 PM,16TH ST/CAPP ST,SAN FRANCISCO,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",141070354-E07 +160980948,AM08,16038819,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:38:13 AM,04/07/2016 08:38:53 AM,04/07/2016 08:39:39 AM,04/07/2016 08:40:40 AM,04/07/2016 09:11:02 AM,04/07/2016 09:11:12 AM,04/07/2016 09:24:07 AM,Code 3 Transport,04/07/2016 10:04:06 AM,0 Block of RICO WAY,San Francisco,94123,B04,16,3563,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8050074623635, -122.439280584538)",160980948-AM08 +160983733,KM03,16039114,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:24:15 PM,04/07/2016 09:24:15 PM,04/07/2016 09:24:51 PM,04/07/2016 09:25:14 PM,04/07/2016 09:38:45 PM,04/07/2016 09:55:06 PM,04/07/2016 10:12:07 PM,Code 2 Transport,04/07/2016 10:41:47 PM,17TH ST/FLORIDA ST,San Francisco,94110,B02,29,5242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.76425158706, -122.411330180595)",160983733-KM03 +142703454,T01,14094837,Structure Fire,09/27/2014,09/27/2014,09/27/2014 08:41:49 PM,09/27/2014 08:42:40 PM,09/27/2014 08:43:27 PM,09/27/2014 08:44:36 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Fire,09/27/2014 09:31:08 PM,200 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Alarm,1,TRUCK,9,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",142703454-T01 +160923033,KM02,16036563,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:33:22 PM,04/01/2016 06:35:53 PM,04/01/2016 06:47:30 PM,04/01/2016 06:48:24 PM,04/01/2016 07:06:24 PM,04/01/2016 07:31:19 PM,04/01/2016 07:57:53 PM,Code 2 Transport,04/01/2016 08:22:11 PM,100 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7600276029721, -122.435966427346)",160923033-KM02 +143060564,E07,14108196,Medical Incident,11/02/2014,11/01/2014,11/02/2014 03:21:04 AM,11/02/2014 03:21:04 AM,11/02/2014 03:21:17 AM,11/02/2014 03:23:26 AM,11/02/2014 03:26:48 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,No Merit,11/02/2014 03:28:14 AM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",143060564-E07 +142453353,82,14085488,Medical Incident,09/02/2014,09/02/2014,09/02/2014 08:02:42 PM,09/02/2014 08:04:52 PM,09/02/2014 08:05:41 PM,09/02/2014 08:05:49 PM,09/02/2014 08:10:55 PM,09/02/2014 08:20:46 PM,09/02/2014 08:27:16 PM,Code 2 Transport,09/02/2014 08:55:25 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7787626372516, -122.405839959524)",142453353-82 +142830796,E43,14099558,Medical Incident,10/10/2014,10/10/2014,10/10/2014 08:15:42 AM,10/10/2014 08:17:23 AM,10/10/2014 08:17:43 AM,10/10/2014 08:23:19 AM,10/10/2014 08:23:28 AM,04/25/2016 01:14:38 PM,04/25/2016 01:14:38 PM,Code 2 Transport,10/10/2014 08:43:15 AM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",142830796-E43 +153081145,T03,15118302,Medical Incident,11/04/2015,11/04/2015,11/04/2015 09:44:21 AM,11/04/2015 09:45:23 AM,11/04/2015 09:46:22 AM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Code 2 Transport,11/04/2015 09:49:10 AM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",153081145-T03 +161003047,76,16039927,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:37:39 PM,04/09/2016 08:40:37 PM,04/09/2016 08:41:05 PM,04/09/2016 08:41:22 PM,04/09/2016 09:03:05 PM,04/09/2016 09:06:51 PM,04/09/2016 09:15:19 PM,Code 2 Transport,04/09/2016 09:41:27 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",161003047-76 +151221895,SR1,15046300,Water Rescue,05/02/2015,05/02/2015,05/02/2015 02:29:43 PM,05/02/2015 02:30:50 PM,05/02/2015 02:34:26 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Fire,05/02/2015 02:36:59 PM,500 Block of SKYLINE BLVD,San Francisco,94132,B08,19,8772,3,3,3,false,Fire,1,SUPPORT,12,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",151221895-SR1 +150640045,T09,15024283,Other,03/05/2015,03/04/2015,03/05/2015 12:18:59 AM,03/05/2015 12:18:59 AM,03/05/2015 12:19:33 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Cancelled,03/05/2015 12:22:57 AM,2300 Block of 3RD ST,San Francisco,94107,B10,25,2533,3,3,3,false,Alarm,1,TRUCK,1,10,10,Potrero Hill,"(37.7592216556229, -122.388304288646)",150640045-T09 +142413007,E01,14083982,Medical Incident,08/29/2014,08/29/2014,08/29/2014 07:00:34 PM,08/29/2014 07:00:34 PM,08/29/2014 07:02:59 PM,08/29/2014 07:04:14 PM,08/29/2014 07:11:58 PM,04/25/2016 01:15:23 PM,04/25/2016 01:15:23 PM,Code 2 Transport,08/29/2014 07:33:46 PM,ELLIS ST/MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",142413007-E01 +152602192,B08,15099413,Alarms,09/17/2015,09/17/2015,09/17/2015 02:13:28 PM,09/17/2015 02:15:41 PM,09/17/2015 02:16:51 PM,09/17/2015 02:17:37 PM,09/17/2015 02:22:17 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Fire,09/17/2015 02:32:40 PM,4600 Block of OCEAN AVE,San Francisco,94132,B08,19,8814,3,3,3,false,Alarm,1,CHIEF,3,8,7,Sunset/Parkside,"(37.7320092887112, -122.492708907365)",152602192-B08 +152151759,B07,15081830,Alarms,08/03/2015,08/03/2015,08/03/2015 12:30:11 PM,08/03/2015 12:32:09 PM,08/03/2015 12:32:16 PM,08/03/2015 12:33:09 PM,08/03/2015 12:35:02 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Fire,08/03/2015 12:36:48 PM,100 Block of 6TH AVE,San Francisco,94118,B07,31,7126,3,3,3,false,Alarm,1,CHIEF,1,7,1,Inner Richmond,"(37.785829055853, -122.46470190439)",152151759-B07 +141970304,82,14068100,Medical Incident,07/16/2014,07/15/2014,07/16/2014 02:49:07 AM,07/16/2014 02:51:05 AM,07/16/2014 02:51:54 AM,07/16/2014 02:58:20 AM,07/16/2014 02:59:03 AM,07/16/2014 03:15:06 AM,07/16/2014 03:40:33 AM,Code 2 Transport,07/16/2014 04:14:34 AM,800 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7854130686566, -122.417880487161)",141970304-82 +160983612,66,16039103,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:45:46 PM,04/07/2016 08:46:33 PM,04/07/2016 08:49:52 PM,04/07/2016 08:49:52 PM,04/07/2016 08:54:48 PM,04/07/2016 09:27:35 PM,04/07/2016 09:57:44 PM,Code 2 Transport,04/07/2016 10:29:46 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160983612-66 +143093365,68,14109519,Medical Incident,11/05/2014,11/05/2014,11/05/2014 08:44:56 PM,11/05/2014 08:48:19 PM,11/05/2014 08:48:59 PM,11/05/2014 08:49:18 PM,11/05/2014 08:57:25 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Gone on Arrival,11/05/2014 09:01:40 PM,CHENERY ST/DIAMOND ST,San Francisco,94131,B06,26,8146,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7345078169797, -122.433879093161)",143093365-68 +142432670,E16,14084736,Structure Fire,08/31/2014,08/31/2014,08/31/2014 06:23:03 PM,08/31/2014 06:29:33 PM,08/31/2014 06:29:53 PM,08/31/2014 06:31:48 PM,08/31/2014 06:33:55 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Fire,08/31/2014 06:43:31 PM,2200 Block of BAY ST,San Francisco,94123,B04,16,4212,3,3,3,true,Fire,1,ENGINE,1,4,2,Marina,"(37.8016779500291, -122.444047061113)",142432670-E16 +152231014,E01,15084922,Medical Incident,08/11/2015,08/11/2015,08/11/2015 09:27:27 AM,08/11/2015 09:29:23 AM,08/11/2015 09:30:00 AM,08/11/2015 09:30:11 AM,08/11/2015 09:30:47 AM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Code 3 Transport,08/11/2015 09:48:44 AM,800 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811056901316, -122.402224662374)",152231014-E01 +141781128,E40,14061359,Medical Incident,06/27/2014,06/27/2014,06/27/2014 11:07:50 AM,06/27/2014 11:10:02 AM,06/27/2014 11:10:59 AM,06/27/2014 11:12:17 AM,06/27/2014 11:16:39 AM,04/25/2016 01:16:32 PM,04/25/2016 01:16:32 PM,Code 2 Transport,06/27/2014 11:29:33 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",141781128-E40 +150230704,E51,15008830,Alarms,01/23/2015,01/23/2015,01/23/2015 08:23:15 AM,01/23/2015 08:24:39 AM,01/23/2015 08:25:08 AM,01/23/2015 08:27:00 AM,01/23/2015 08:27:49 AM,04/25/2016 01:12:40 PM,04/25/2016 01:12:40 PM,Fire,01/23/2015 08:36:26 AM,0 Block of KEYES AVE,Presidio,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.8007138815184, -122.455902073561)",150230704-E51 +160950312,AM24,16037504,Medical Incident,04/04/2016,04/03/2016,04/04/2016 04:06:32 AM,04/04/2016 04:06:32 AM,04/04/2016 04:08:29 AM,04/04/2016 04:09:09 AM,04/04/2016 04:48:36 AM,04/04/2016 04:48:39 AM,04/04/2016 05:07:00 AM,Code 2 Transport,04/04/2016 05:38:09 AM,0 Block of BACHE ST,San Francisco,94110,B06,32,5751,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7344393110914, -122.417593854342)",160950312-AM24 +141840254,E01,14063535,Medical Incident,07/03/2014,07/02/2014,07/03/2014 02:51:25 AM,07/03/2014 02:53:07 AM,07/03/2014 02:53:46 AM,07/03/2014 02:55:39 AM,07/03/2014 02:56:55 AM,04/25/2016 01:16:26 PM,04/25/2016 01:16:26 PM,Code 2 Transport,07/03/2014 03:05:52 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.78026973391, -122.406390271833)",141840254-E01 +142711203,81,14094988,Medical Incident,09/28/2014,09/28/2014,09/28/2014 10:14:54 AM,09/28/2014 10:16:22 AM,09/28/2014 10:16:39 AM,09/28/2014 10:16:48 AM,09/28/2014 10:20:51 AM,04/25/2016 01:14:51 PM,04/25/2016 01:14:51 PM,Fire,09/28/2014 10:22:22 AM,18TH ST/GUERRERO ST,San Francisco,94110,B02,7,5422,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7615656740721, -122.42380067092)",142711203-81 +160993831,70,16039506,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:17:59 PM,04/08/2016 10:18:48 PM,04/08/2016 10:25:07 PM,04/08/2016 10:27:48 PM,04/08/2016 10:31:10 PM,04/08/2016 10:49:22 PM,04/08/2016 11:01:44 PM,Code 2 Transport,04/08/2016 11:50:29 PM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160993831-70 +160992877,AM10,16039404,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:52:46 PM,04/08/2016 05:53:56 PM,04/08/2016 05:54:04 PM,04/08/2016 05:54:46 PM,04/08/2016 06:00:55 PM,04/08/2016 06:24:03 PM,04/08/2016 06:45:10 PM,Code 2 Transport,04/08/2016 07:24:18 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160992877-AM10 +153162617,KM11,15121500,Medical Incident,11/12/2015,11/12/2015,11/12/2015 04:12:56 PM,11/12/2015 04:12:56 PM,11/12/2015 04:13:53 PM,11/12/2015 04:15:19 PM,11/12/2015 04:28:37 PM,11/12/2015 04:52:39 PM,11/12/2015 05:13:50 PM,Code 2 Transport,11/12/2015 05:55:37 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",153162617-KM11 +143512268,E03,14125428,Medical Incident,12/17/2014,12/17/2014,12/17/2014 03:02:09 PM,12/17/2014 03:02:45 PM,12/17/2014 03:04:43 PM,12/17/2014 03:06:39 PM,12/17/2014 03:09:15 PM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Code 2 Transport,12/17/2014 03:14:57 PM,JONES ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",143512268-E03 +141523101,E07,14052373,Structure Fire,06/01/2014,06/01/2014,06/01/2014 10:16:24 PM,06/01/2014 10:16:24 PM,06/01/2014 10:16:35 PM,06/01/2014 10:17:34 PM,06/01/2014 10:19:04 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Fire,06/01/2014 10:19:31 PM,17TH ST/TREAT AV,San Francisco,94110,B02,7,5245,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.76382320884, -122.41358757035)",141523101-E07 +153030328,E10,15116078,Medical Incident,10/30/2015,10/29/2015,10/30/2015 02:59:08 AM,10/30/2015 02:59:08 AM,10/30/2015 02:59:55 AM,10/30/2015 03:02:43 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Patient Declined Transport,10/30/2015 03:06:24 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",153030328-E10 +161001368,50,16039733,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:40:54 AM,04/09/2016 11:40:54 AM,04/09/2016 11:41:05 AM,04/09/2016 11:41:12 AM,04/09/2016 11:49:33 AM,04/09/2016 12:07:39 PM,04/09/2016 12:21:29 PM,Code 2 Transport,04/09/2016 01:05:28 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",161001368-50 +152132853,74,15081220,Medical Incident,08/01/2015,08/01/2015,08/01/2015 06:15:27 PM,08/01/2015 06:15:27 PM,08/01/2015 06:15:27 PM,08/01/2015 06:15:27 PM,08/01/2015 06:15:27 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Against Medical Advice,08/01/2015 06:40:01 PM,2700 Block of 23RD ST,San Francisco,94110,B99,7,5476,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7544248344217, -122.407890478368)",152132853-74 +160931050,54,16036780,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:42:04 AM,04/02/2016 09:44:14 AM,04/02/2016 09:52:33 AM,04/02/2016 09:52:44 AM,04/02/2016 10:00:54 AM,04/02/2016 10:11:15 AM,04/02/2016 10:36:37 AM,Code 2 Transport,04/02/2016 10:49:41 AM,700 Block of FULTON ST,San Francisco,94102,B05,5,3521,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",160931050-54 +150462206,T02,15017944,Odor (Strange / Unknown),02/15/2015,02/15/2015,02/15/2015 02:54:39 PM,02/15/2015 02:57:30 PM,02/15/2015 02:58:24 PM,02/15/2015 03:02:35 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/15/2015 03:12:56 PM,STOCKTON ST/POST ST,San Francisco,94108,B01,1,1323,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7884994798068, -122.406771145217)",150462206-T02 +152453645,RC1,15093589,Medical Incident,09/02/2015,09/02/2015,09/02/2015 07:58:25 PM,09/02/2015 08:00:05 PM,09/02/2015 08:02:19 PM,09/02/2015 08:03:12 PM,09/02/2015 08:07:16 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Medical Examiner,09/02/2015 09:31:07 PM,500 Block of GRANT AVE,San Francisco,94108,B01,13,1314,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7921056209358, -122.405937157736)",152453645-RC1 +143210279,E03,14113532,Medical Incident,11/17/2014,11/16/2014,11/17/2014 03:22:00 AM,11/17/2014 03:24:08 AM,11/17/2014 03:24:32 AM,11/17/2014 03:26:52 AM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,Code 2 Transport,11/17/2014 03:40:30 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",143210279-E03 +142650696,RS1,14092615,Medical Incident,09/22/2014,09/22/2014,09/22/2014 08:00:49 AM,09/22/2014 08:02:11 AM,09/22/2014 08:02:59 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Code 2 Transport,09/22/2014 08:04:52 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142650696-RS1 +142150208,71,14074412,Structure Fire,08/03/2014,08/02/2014,08/03/2014 01:24:06 AM,08/03/2014 01:24:42 AM,08/03/2014 01:24:51 AM,08/03/2014 01:25:09 AM,04/25/2016 01:15:52 PM,04/25/2016 01:15:52 PM,04/25/2016 01:15:52 PM,Other,08/03/2014 01:27:46 AM,COLUMBUS AV/MASON ST,San Francisco,94133,B01,28,1423,3,3,3,true,Alarm,1,MEDIC,5,1,3,Russian Hill,"(37.8021837702734, -122.41290808763)",142150208-71 +152691559,B04,15103066,Structure Fire,09/26/2015,09/26/2015,09/26/2015 11:56:15 AM,09/26/2015 11:56:15 AM,09/26/2015 11:56:37 AM,09/26/2015 11:57:26 AM,09/26/2015 12:00:26 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Fire,09/26/2015 12:09:59 PM,DIVISADERO ST/SUTTER ST,San Francisco,94115,B05,10,4155,3,3,3,false,Alarm,1,CHIEF,1,5,5,Japantown,"(37.7852475259262, -122.439872612659)",152691559-B04 +150101381,B03,15003918,Alarms,01/10/2015,01/10/2015,01/10/2015 11:46:46 AM,01/10/2015 11:48:05 AM,01/10/2015 11:48:56 AM,01/10/2015 11:50:33 AM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,Fire,01/10/2015 11:54:45 AM,300 Block of MISSION ST,San Francisco,94105,B03,35,2126,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",150101381-B03 +152410256,B01,15091727,Structure Fire,08/29/2015,08/28/2015,08/29/2015 01:24:08 AM,08/29/2015 01:24:52 AM,08/29/2015 01:25:10 AM,08/29/2015 01:26:16 AM,08/29/2015 01:29:58 AM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 01:33:12 AM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,false,Alarm,1,CHIEF,5,3,6,Tenderloin,"(37.7851245205483, -122.410307742137)",152410256-B01 +151803798,62,15068940,Medical Incident,06/29/2015,06/29/2015,06/29/2015 11:08:17 PM,06/29/2015 11:10:19 PM,06/29/2015 11:10:40 PM,06/29/2015 11:10:59 PM,06/29/2015 11:14:35 PM,06/29/2015 11:26:41 PM,06/29/2015 11:34:08 PM,Code 2 Transport,06/30/2015 12:07:39 AM,3900 Block of 17TH ST,San Francisco,94114,B05,6,5417,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.762462765244, -122.434659092708)",151803798-62 +153322662,77,15127774,Medical Incident,11/28/2015,11/28/2015,11/28/2015 05:44:19 PM,11/28/2015 05:46:38 PM,11/28/2015 05:47:26 PM,11/28/2015 05:50:08 PM,11/28/2015 06:00:48 PM,11/28/2015 06:08:42 PM,11/28/2015 06:26:33 PM,Code 2 Transport,11/28/2015 07:30:45 PM,500 Block of 35TH AVE,San Francisco,94121,B07,34,7251,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7786369475704, -122.495306373953)",153322662-77 +152071217,KM08,15078822,Medical Incident,07/26/2015,07/26/2015,07/26/2015 10:27:11 AM,07/26/2015 10:30:36 AM,07/26/2015 10:31:12 AM,07/26/2015 10:32:21 AM,07/26/2015 10:34:49 AM,07/26/2015 10:46:07 AM,07/26/2015 11:02:21 AM,Code 2 Transport,07/26/2015 11:35:56 AM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",152071217-KM08 +141170057,T01,14039400,Structure Fire,04/27/2014,04/26/2014,04/27/2014 04:01:25 AM,04/27/2014 04:01:25 AM,04/27/2014 04:01:34 AM,04/27/2014 04:04:10 AM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/27/2014 04:05:24 AM,800 Block of MARKET ST,SAN FRANCISCO,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",141170057-T01 +151173925,E03,15044437,Medical Incident,04/27/2015,04/27/2015,04/27/2015 11:29:29 PM,04/27/2015 11:30:48 PM,04/27/2015 11:30:58 PM,04/27/2015 11:32:28 PM,04/27/2015 11:34:22 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Code 2 Transport,04/27/2015 11:46:53 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",151173925-E03 +150123478,E38,15004929,Alarms,01/12/2015,01/12/2015,01/12/2015 09:14:20 PM,01/12/2015 09:15:44 PM,01/12/2015 09:15:55 PM,01/12/2015 09:17:15 PM,01/12/2015 09:19:09 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Fire,01/12/2015 09:24:17 PM,1600 Block of BROADWAY,San Francisco,94123,B04,38,3232,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7956860710912, -122.42424620746)",150123478-E38 +143400167,E21,14120571,Alarms,12/06/2014,12/05/2014,12/06/2014 12:59:09 AM,12/06/2014 01:01:15 AM,12/06/2014 01:01:44 AM,12/06/2014 01:02:48 AM,12/06/2014 01:05:49 AM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Fire,12/06/2014 01:12:18 AM,1700 Block of MCALLISTER ST,San Francisco,94117,B05,21,4254,3,3,3,false,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7774258159143, -122.440841432204)",143400167-E21 +142751218,B01,14096413,Other,10/02/2014,10/02/2014,10/02/2014 09:56:03 AM,10/02/2014 09:57:29 AM,10/02/2014 09:58:28 AM,10/02/2014 10:00:27 AM,10/02/2014 10:06:02 AM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Fire,10/02/2014 10:12:26 AM,0 Block of GRANT AVE,San Francisco,94108,B01,1,1321,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",142751218-B01 +152122030,E01,15080788,Medical Incident,07/31/2015,07/31/2015,07/31/2015 02:40:57 PM,07/31/2015 02:44:02 PM,07/31/2015 02:52:15 PM,07/31/2015 02:52:15 PM,07/31/2015 02:53:41 PM,04/25/2016 01:09:10 PM,04/25/2016 01:09:10 PM,Unable to Locate,07/31/2015 03:06:40 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",152122030-E01 +160943000,87,16037378,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:53:12 PM,04/03/2016 06:53:12 PM,04/03/2016 06:53:34 PM,04/03/2016 06:53:47 PM,04/03/2016 07:10:02 PM,04/03/2016 07:24:49 PM,04/03/2016 07:28:38 PM,Code 2 Transport,04/03/2016 08:08:00 PM,POLK ST/PINE ST,San Francisco,94109,B04,3,3122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",160943000-87 +151553088,AM08,15059233,Medical Incident,06/04/2015,06/04/2015,06/04/2015 06:38:24 PM,06/04/2015 06:38:57 PM,06/04/2015 06:40:14 PM,06/04/2015 06:40:45 PM,06/04/2015 06:49:25 PM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,Other,06/04/2015 07:00:11 PM,1600 Block of GREAT HWY,San Francisco,94122,B08,23,7724,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7553466892581, -122.508687725993)",151553088-AM08 +142013323,84,14069721,Medical Incident,07/20/2014,07/20/2014,07/20/2014 11:00:23 PM,07/20/2014 11:00:23 PM,07/20/2014 11:01:38 PM,07/20/2014 11:01:49 PM,07/20/2014 11:07:45 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Patient Declined Transport,07/20/2014 11:38:57 PM,SOUTH VAN NESS AV/MISSION ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7730534532281, -122.418618217459)",142013323-84 +160921254,63,16036396,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:50:02 AM,04/01/2016 10:51:16 AM,04/01/2016 10:51:53 AM,04/01/2016 10:52:13 AM,04/01/2016 10:57:09 AM,04/01/2016 11:13:04 AM,04/01/2016 11:36:39 AM,Code 2 Transport,04/01/2016 12:00:29 PM,500 Block of RAMSELL ST,San Francisco,94132,B09,15,8435,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7206737484405, -122.466196907192)",160921254-63 +152120610,64,15080636,Medical Incident,07/31/2015,07/30/2015,07/31/2015 07:23:24 AM,07/31/2015 07:24:08 AM,07/31/2015 07:24:22 AM,07/31/2015 07:25:00 AM,07/31/2015 07:30:06 AM,07/31/2015 07:40:47 AM,07/31/2015 08:20:20 AM,Code 2 Transport,07/31/2015 08:41:27 AM,1100 Block of OAKDALE AVE,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",152120610-64 +150810978,72,15030977,Medical Incident,03/22/2015,03/22/2015,03/22/2015 09:36:02 AM,03/22/2015 09:36:02 AM,03/22/2015 09:37:55 AM,03/22/2015 09:38:26 AM,03/22/2015 09:45:38 AM,03/22/2015 09:59:50 AM,03/22/2015 10:11:17 AM,Code 2 Transport,03/22/2015 10:45:08 AM,0 Block of RUTH ST,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7232126211966, -122.436631289328)",150810978-72 +141811811,T17,14062697,Alarms,06/30/2014,06/30/2014,06/30/2014 01:50:51 PM,06/30/2014 01:52:20 PM,06/30/2014 01:52:38 PM,06/30/2014 01:54:09 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 01:57:45 PM,1500 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6324,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7245737128195, -122.401104242184)",141811811-T17 +150510142,E21,15019535,Medical Incident,02/20/2015,02/19/2015,02/20/2015 01:04:41 AM,02/20/2015 01:06:07 AM,02/20/2015 01:06:21 AM,02/20/2015 01:08:33 AM,02/20/2015 01:10:44 AM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Code 2 Transport,02/20/2015 01:12:00 AM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",150510142-E21 +151393576,E25,15052960,Electrical Hazard,05/19/2015,05/19/2015,05/19/2015 09:49:15 PM,05/19/2015 09:51:12 PM,05/19/2015 09:52:22 PM,05/19/2015 09:53:48 PM,05/19/2015 09:56:30 PM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/19/2015 10:04:39 PM,900 Block of MINNESOTA ST,San Francisco,94107,B10,37,2535,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",151393576-E25 +161000054,AM24,16039555,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:14:30 AM,04/09/2016 12:17:53 AM,04/09/2016 12:22:28 AM,04/09/2016 12:22:53 AM,04/09/2016 12:41:56 AM,04/09/2016 12:58:12 AM,04/09/2016 01:06:24 AM,Code 2 Transport,04/09/2016 01:39:31 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",161000054-AM24 +150274070,58,15010609,Medical Incident,01/27/2015,01/27/2015,01/27/2015 11:53:25 PM,01/27/2015 11:54:09 PM,01/27/2015 11:54:31 PM,01/27/2015 11:54:43 PM,01/27/2015 11:57:24 PM,01/28/2015 12:12:55 AM,01/28/2015 12:34:02 AM,Code 2 Transport,01/28/2015 01:07:00 AM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",150274070-58 +142520616,KM09,14087866,Medical Incident,09/09/2014,09/09/2014,09/09/2014 08:31:16 AM,09/09/2014 08:33:09 AM,09/09/2014 08:33:27 AM,09/09/2014 08:34:38 AM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,Unable to Locate,09/09/2014 08:43:09 AM,POTRERO AV/16TH ST,San Francisco,94103,B02,29,2351,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",142520616-KM09 +142562353,E39,14089469,Medical Incident,09/13/2014,09/13/2014,09/13/2014 03:42:13 PM,09/13/2014 03:43:39 PM,09/13/2014 03:47:11 PM,09/13/2014 03:48:49 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/13/2014 03:54:56 PM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",142562353-E39 +152550574,RC1,15097402,Medical Incident,09/12/2015,09/11/2015,09/12/2015 05:57:23 AM,09/12/2015 05:58:19 AM,09/12/2015 06:00:16 AM,09/12/2015 06:04:01 AM,09/12/2015 06:06:52 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Code 3 Transport,09/12/2015 06:17:26 AM,400 Block of PACIFIC AVE,San Francisco,94133,B01,13,1212,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,4,1,3,North Beach,"(37.7974015545937, -122.403291978554)",152550574-RC1 +160964217,AM20,16038231,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:43:03 PM,04/05/2016 11:43:03 PM,04/05/2016 11:44:14 PM,04/05/2016 11:45:13 PM,04/05/2016 11:47:34 PM,04/06/2016 12:08:10 AM,04/06/2016 12:15:05 AM,Code 2 Transport,04/06/2016 12:46:03 AM,LAGUNA ST/GROVE ST,San Francisco,94102,B02,36,3413,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7773881939183, -122.426452239181)",160964217-AM20 +151341965,E19,15050886,Medical Incident,05/14/2015,05/14/2015,05/14/2015 01:30:23 PM,05/14/2015 01:31:41 PM,05/14/2015 01:32:16 PM,05/14/2015 01:33:29 PM,05/14/2015 01:36:10 PM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,Code 2 Transport,05/14/2015 01:52:44 PM,ARELLANO AV/SERRANO DR,San Francisco,94132,B08,19,8682,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7201472076595, -122.479030446591)",151341965-E19 +161003584,70,16039985,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:07:48 PM,04/09/2016 11:07:48 PM,04/09/2016 11:08:49 PM,04/09/2016 11:08:59 PM,04/09/2016 11:20:30 PM,04/09/2016 11:32:15 PM,04/10/2016 12:27:05 AM,Code 2 Transport,04/10/2016 12:48:56 AM,600 Block of KEITH ST,San Francisco,94124,B10,25,6565,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371958241628, -122.382770663852)",161003584-70 +151102633,53,15041698,Medical Incident,04/20/2015,04/20/2015,04/20/2015 04:42:49 PM,04/20/2015 04:43:30 PM,04/20/2015 04:43:42 PM,04/20/2015 04:43:48 PM,04/20/2015 04:46:58 PM,04/20/2015 05:08:41 PM,04/20/2015 05:25:55 PM,Code 2 Transport,04/20/2015 05:57:00 PM,1700 Block of OAK ST,San Francisco,94117,B05,21,4524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.7718274800356, -122.448146140288)",151102633-53 +150051786,E03,15001858,Medical Incident,01/05/2015,01/05/2015,01/05/2015 01:09:15 PM,01/05/2015 01:11:19 PM,01/05/2015 01:11:32 PM,01/05/2015 01:12:33 PM,01/05/2015 01:15:35 PM,04/25/2016 01:13:01 PM,04/25/2016 01:13:01 PM,Code 2 Transport,01/05/2015 01:32:51 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",150051786-E03 +160981657,KM13,16038898,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:52:22 AM,04/07/2016 11:54:04 AM,04/07/2016 12:00:00 PM,04/07/2016 12:02:30 PM,04/07/2016 12:20:51 PM,04/07/2016 12:47:43 PM,04/07/2016 01:20:00 PM,Code 2 Transport,04/07/2016 01:55:40 PM,900 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160981657-KM13 +151270896,AM02,15048068,Medical Incident,05/07/2015,05/07/2015,05/07/2015 08:35:49 AM,05/07/2015 08:38:35 AM,05/07/2015 08:48:04 AM,05/07/2015 08:48:50 AM,05/07/2015 09:11:04 AM,05/07/2015 09:37:34 AM,05/07/2015 09:58:39 AM,Code 2 Transport,05/07/2015 10:24:54 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",151270896-AM02 +160962235,87,16038050,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:34:41 PM,04/05/2016 02:36:31 PM,04/05/2016 02:36:53 PM,04/05/2016 02:37:18 PM,04/05/2016 03:08:18 PM,04/05/2016 03:32:00 PM,04/05/2016 03:54:51 PM,Code 2 Transport,04/05/2016 04:42:34 PM,1400 Block of GRANT AVE,San Francisco,94133,B01,28,1266,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8001795612037, -122.40742149758)",160962235-87 +151182100,55,15044644,Medical Incident,04/28/2015,04/28/2015,04/28/2015 02:38:04 PM,04/28/2015 02:39:04 PM,04/28/2015 02:52:56 PM,04/28/2015 02:52:56 PM,04/28/2015 03:07:18 PM,04/28/2015 03:25:15 PM,04/28/2015 03:52:16 PM,Code 2 Transport,04/28/2015 04:13:02 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7770436202636, -122.413583483648)",151182100-55 +143123019,E38,14110637,Structure Fire,11/08/2014,11/08/2014,11/08/2014 07:08:14 PM,11/08/2014 07:08:14 PM,11/08/2014 07:08:40 PM,11/08/2014 07:09:23 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/08/2014 07:11:20 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,ENGINE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",143123019-E38 +150983517,T09,15037237,Structure Fire,04/08/2015,04/08/2015,04/08/2015 08:50:06 PM,04/08/2015 08:50:50 PM,04/08/2015 08:51:01 PM,04/08/2015 08:51:58 PM,04/25/2016 01:11:16 PM,04/25/2016 01:11:16 PM,04/25/2016 01:11:16 PM,Code 2 Transport,04/08/2015 09:05:35 PM,200 Block of TEDDY AVE,San Francisco,94134,B09,44,6311,3,3,3,false,Alarm,1,TRUCK,5,9,10,Visitacion Valley,"(37.7149172327739, -122.407517670009)",150983517-T09 +150832751,71,15031799,Medical Incident,03/24/2015,03/24/2015,03/24/2015 05:12:00 PM,03/24/2015 05:15:04 PM,03/24/2015 05:15:40 PM,03/24/2015 05:16:29 PM,03/24/2015 05:25:06 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 05:37:34 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",150832751-71 +151631203,FD00A,15062234,,06/12/2015,06/12/2015,06/12/2015 10:09:23 AM,06/12/2015 10:10:37 AM,06/12/2015 10:18:53 AM,06/12/2015 10:18:53 AM,06/12/2015 10:18:53 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/12/2015 10:18:56 AM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,3,3,3,false,Alarm,1,SUPPORT,2,5,5,Western Addition,"(37.7796580262541, -122.438306627071)",151631203-FD00A +160993746,68,16039498,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:53:55 PM,04/08/2016 09:55:53 PM,04/08/2016 10:00:06 PM,04/08/2016 10:00:06 PM,04/08/2016 10:05:14 PM,04/08/2016 10:38:40 PM,04/08/2016 11:18:42 PM,Code 2 Transport,04/08/2016 11:20:10 PM,1700 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",160993746-68 +141080314,T03,14036516,Medical Incident,04/18/2014,04/18/2014,04/18/2014 06:33:21 PM,04/18/2014 06:35:36 PM,04/18/2014 06:35:49 PM,04/18/2014 06:37:10 PM,04/18/2014 06:38:50 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,No Merit,04/18/2014 06:52:54 PM,1400 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3223,3,3,3,false,Non Life-threatening,1,TRUCK,1,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",141080314-T03 +160962377,56,16038062,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:09:28 PM,04/05/2016 03:11:04 PM,04/05/2016 03:11:46 PM,04/05/2016 03:12:25 PM,04/05/2016 03:25:53 PM,04/05/2016 03:43:20 PM,04/05/2016 04:03:59 PM,Code 2 Transport,04/05/2016 04:54:17 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",160962377-56 +150720791,88,15027407,Medical Incident,03/13/2015,03/13/2015,03/13/2015 08:12:45 AM,03/13/2015 08:12:45 AM,03/13/2015 08:13:21 AM,03/13/2015 08:13:55 AM,03/13/2015 08:42:21 AM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Patient Declined Transport,03/13/2015 08:58:22 AM,4600 Block of 3RD ST,San Francisco,94124,B10,17,6516,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360180524544, -122.390409391697)",150720791-88 +151161894,E02,15043849,Structure Fire,04/26/2015,04/26/2015,04/26/2015 02:14:15 PM,04/26/2015 02:14:18 PM,04/26/2015 02:14:26 PM,04/26/2015 02:16:29 PM,04/26/2015 02:17:25 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Cancelled,04/26/2015 02:18:19 PM,MASON ST/WASHINGTON ST,San Francisco,94108,B01,2,1415,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7945266519311, -122.41136404552)",151161894-E02 +160943449,57,16037432,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:37:14 PM,04/03/2016 09:37:45 PM,04/03/2016 09:38:01 PM,04/03/2016 09:38:10 PM,04/03/2016 09:40:47 PM,04/03/2016 10:12:41 PM,04/03/2016 10:37:12 PM,Code 2 Transport,04/03/2016 11:29:10 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",160943449-57 +153252707,74,15125206,Medical Incident,11/21/2015,11/21/2015,11/21/2015 04:49:41 PM,11/21/2015 04:50:29 PM,11/21/2015 04:51:22 PM,11/21/2015 04:51:52 PM,11/21/2015 04:55:09 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,No Merit,11/21/2015 04:59:06 PM,HARRIET ST/HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7793184597995, -122.407691082986)",153252707-74 +160951656,71,16037615,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:17:01 PM,04/04/2016 12:19:45 PM,04/04/2016 12:20:06 PM,04/04/2016 12:20:12 PM,04/04/2016 12:37:28 PM,04/04/2016 12:52:03 PM,04/04/2016 01:20:29 PM,Code 2 Transport,04/04/2016 01:41:41 PM,5100 Block of MISSION ST,San Francisco,94112,B09,43,6176,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7154728757373, -122.441686062166)",160951656-71 +160990881,AM06,16039225,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:06:02 AM,04/08/2016 09:06:44 AM,04/08/2016 09:07:27 AM,04/08/2016 09:08:41 AM,04/08/2016 09:13:18 AM,04/08/2016 09:24:03 AM,04/08/2016 09:35:33 AM,Code 3 Transport,04/08/2016 10:28:33 AM,0 Block of MIRABEL AVE,San Francisco,94110,B06,11,5657,2,A,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7464196657942, -122.416456065811)",160990881-AM06 +151771319,E34,15067338,Medical Incident,06/26/2015,06/26/2015,06/26/2015 10:49:39 AM,06/26/2015 10:49:39 AM,06/26/2015 10:49:59 AM,06/26/2015 10:50:38 AM,06/26/2015 10:53:33 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 10:55:27 AM,FULTON ST/LA PLAYA,San Francisco,94121,B07,34,7311,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7713960328361, -122.509894748816)",151771319-E34 +160940282,63,16037125,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:34:10 AM,04/03/2016 01:34:10 AM,04/03/2016 01:39:12 AM,04/03/2016 01:39:20 AM,04/03/2016 01:57:42 AM,04/03/2016 02:13:55 AM,04/03/2016 02:37:19 AM,Code 2 Transport,04/03/2016 02:49:34 AM,700 Block of TAYLOR ST,San Francisco,94109,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7892649467456, -122.412049085376)",160940282-63 +153463454,72,15133359,Medical Incident,12/12/2015,12/12/2015,12/12/2015 06:59:15 PM,12/12/2015 07:02:22 PM,12/12/2015 07:18:48 PM,12/12/2015 07:18:48 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Other,12/12/2015 07:19:43 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",153463454-72 +152332456,87,15088884,Medical Incident,08/21/2015,08/21/2015,08/21/2015 03:11:10 PM,08/21/2015 03:12:32 PM,08/21/2015 03:13:25 PM,08/21/2015 03:13:49 PM,08/21/2015 03:31:36 PM,08/21/2015 03:46:43 PM,08/21/2015 04:03:33 PM,Code 2 Transport,08/21/2015 04:48:09 PM,600 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",152332456-87 +160941548,AM02,16037242,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:36:33 AM,04/03/2016 11:36:33 AM,04/03/2016 11:37:13 AM,04/03/2016 11:38:00 AM,04/03/2016 11:49:25 AM,04/03/2016 11:58:55 AM,04/03/2016 12:33:09 PM,Code 2 Transport,04/03/2016 12:58:19 PM,LA PLAYA/JUDAH ST,San Francisco,94122,B08,23,7723,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7602823232257, -122.509141220867)",160941548-AM02 +151863001,72,15071150,Medical Incident,07/05/2015,07/05/2015,07/05/2015 07:04:44 PM,07/05/2015 07:04:44 PM,07/05/2015 07:06:46 PM,07/05/2015 07:07:11 PM,07/05/2015 07:09:28 PM,07/05/2015 07:38:10 PM,07/05/2015 08:02:43 PM,Code 2 Transport,07/05/2015 08:27:22 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",151863001-72 +160982120,56,16038938,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:53:58 PM,04/07/2016 01:54:30 PM,04/07/2016 01:54:49 PM,04/07/2016 01:55:36 PM,04/07/2016 02:20:13 PM,04/07/2016 02:36:20 PM,04/07/2016 02:49:38 PM,Code 2 Transport,04/07/2016 03:22:41 PM,500 Block of POST ST,San Francisco,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",160982120-56 +160972750,73,16038500,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:40:18 PM,04/06/2016 03:40:18 PM,04/06/2016 03:40:24 PM,04/06/2016 03:40:49 PM,04/06/2016 03:45:02 PM,04/06/2016 03:59:17 PM,04/06/2016 04:06:28 PM,Code 2 Transport,04/06/2016 04:31:02 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160972750-73 +160960631,53,16037911,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:52:20 AM,04/05/2016 07:53:30 AM,04/05/2016 07:54:50 AM,04/05/2016 07:55:00 AM,04/05/2016 08:14:28 AM,04/05/2016 08:35:52 AM,04/05/2016 08:57:28 AM,Code 2 Transport,04/05/2016 09:38:37 AM,100 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",160960631-53 +150333410,E17,15012907,Medical Incident,02/02/2015,02/02/2015,02/02/2015 09:04:22 PM,02/02/2015 09:05:02 PM,02/02/2015 09:05:41 PM,02/02/2015 09:07:07 PM,02/02/2015 09:09:38 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Code 2 Transport,02/02/2015 09:12:14 PM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",150333410-E17 +150810318,E32,15030888,Traffic Collision,03/22/2015,03/21/2015,03/22/2015 02:07:05 AM,03/22/2015 02:07:05 AM,03/22/2015 02:09:02 AM,03/22/2015 02:11:23 AM,03/22/2015 02:14:17 AM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,No Merit,03/22/2015 02:16:24 AM,0 Block of ADMIRAL AVE,San Francisco,94112,B09,32,8263,2,2,2,false,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7301242352377, -122.430492617968)",150810318-E32 +152892903,63,15111128,Medical Incident,10/16/2015,10/16/2015,10/16/2015 05:27:52 PM,10/16/2015 05:32:18 PM,10/16/2015 05:33:56 PM,10/16/2015 05:34:09 PM,10/16/2015 05:43:21 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 05:44:40 PM,200 Block of THRIFT ST,San Francisco,94112,B09,33,8415,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7174874499717, -122.46143337515)",152892903-63 +153302446,86,15127139,Medical Incident,11/26/2015,11/26/2015,11/26/2015 07:36:37 PM,11/26/2015 07:38:20 PM,11/26/2015 07:38:32 PM,11/26/2015 07:38:45 PM,11/26/2015 07:49:01 PM,11/26/2015 08:06:48 PM,11/26/2015 08:35:08 PM,Code 2 Transport,11/26/2015 09:03:36 PM,3900 Block of NORIEGA ST,San Francisco,94122,B08,23,7662,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7528855969567, -122.505937216548)",153302446-86 +161002026,61,16039808,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:24:28 PM,04/09/2016 03:25:01 PM,04/09/2016 03:25:26 PM,04/09/2016 03:25:36 PM,04/09/2016 03:27:12 PM,04/09/2016 03:37:05 PM,04/09/2016 03:55:39 PM,Code 2 Transport,04/09/2016 04:36:44 PM,2400 Block of LOMBARD ST,San Francisco,94123,B04,16,4115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.799211828954, -122.441837584836)",161002026-61 +153443781,60,15132606,Medical Incident,12/10/2015,12/10/2015,12/10/2015 09:40:02 PM,12/10/2015 09:40:46 PM,12/10/2015 09:56:08 PM,12/10/2015 09:56:20 PM,12/10/2015 10:08:44 PM,12/10/2015 10:24:54 PM,12/10/2015 10:38:48 PM,Code 2 Transport,12/10/2015 11:00:30 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",153443781-60 +160951794,AM02,16037627,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:48:51 PM,04/04/2016 12:51:39 PM,04/04/2016 12:52:35 PM,04/04/2016 12:53:07 PM,04/04/2016 01:30:40 PM,04/04/2016 01:50:39 PM,04/04/2016 02:10:38 PM,Code 2 Transport,04/04/2016 02:51:01 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7642910155103, -122.418689416733)",160951794-AM02 +151742188,AM16,15066417,Traffic Collision,06/23/2015,06/23/2015,06/23/2015 02:48:07 PM,06/23/2015 02:49:02 PM,06/23/2015 02:49:38 PM,06/23/2015 02:50:59 PM,06/23/2015 02:58:22 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Patient Declined Transport,06/23/2015 03:42:57 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",151742188-AM16 +152922131,E18,15112238,Structure Fire,10/19/2015,10/19/2015,10/19/2015 02:48:56 PM,10/19/2015 02:48:56 PM,10/19/2015 02:49:09 PM,10/19/2015 02:49:57 PM,10/19/2015 02:55:17 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Fire,10/19/2015 03:12:28 PM,EUCALYPTUS DR/SYLVAN DR,San Francisco,94132,B08,19,8743,3,3,3,true,Alarm,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",152922131-E18 +143622700,T10,14129619,Alarms,12/28/2014,12/28/2014,12/28/2014 07:03:10 PM,12/28/2014 07:05:16 PM,12/28/2014 07:05:30 PM,12/28/2014 07:07:19 PM,12/28/2014 07:10:13 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Fire,12/28/2014 07:18:03 PM,0 Block of LOYOLA TER,San Francisco,94117,B05,21,4522,3,3,3,false,Alarm,1,TRUCK,2,5,1,Lone Mountain/USF,"(37.775869026469, -122.448995273702)",143622700-T10 +160984006,53,16039140,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 10:57:55 PM,04/07/2016 10:58:41 PM,04/07/2016 10:59:51 PM,04/07/2016 11:00:46 PM,04/07/2016 11:13:14 PM,04/07/2016 11:22:06 PM,04/08/2016 12:02:51 AM,Code 2 Transport,04/08/2016 12:37:53 AM,SAN BRUNO AV/CAMPBELL AV,San Francisco,94134,B10,44,6266,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7153903186308, -122.39954775395)",160984006-53 +142790038,59,14097995,Medical Incident,10/06/2014,10/05/2014,10/06/2014 12:15:07 AM,10/06/2014 12:16:12 AM,10/06/2014 12:16:49 AM,10/06/2014 12:17:19 AM,10/06/2014 12:24:28 AM,10/06/2014 12:37:18 AM,10/06/2014 12:45:10 AM,Code 2 Transport,10/06/2014 01:27:34 AM,13TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",142790038-59 +143631306,KM04,14129829,Medical Incident,12/29/2014,12/29/2014,12/29/2014 11:35:11 AM,12/29/2014 11:37:36 AM,12/29/2014 11:37:55 AM,12/29/2014 11:40:15 AM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Cancelled,12/29/2014 11:58:45 AM,1800 Block of 25TH ST,San Francisco,94107,B10,37,2615,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7521976465641, -122.397477711041)",143631306-KM04 +150963374,B07,15036552,Alarms,04/06/2015,04/06/2015,04/06/2015 09:19:23 PM,04/06/2015 09:23:16 PM,04/06/2015 09:23:25 PM,04/06/2015 09:25:34 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Fire,04/06/2015 09:51:57 PM,500 Block of 27TH AVE,San Francisco,94121,B07,14,7222,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7790279638161, -122.486876869791)",150963374-B07 +150160884,B10,15006235,Alarms,01/16/2015,01/16/2015,01/16/2015 08:58:45 AM,01/16/2015 09:00:03 AM,01/16/2015 09:00:50 AM,01/16/2015 09:02:06 AM,01/16/2015 09:06:40 AM,04/25/2016 01:12:48 PM,04/25/2016 01:12:48 PM,Fire,01/16/2015 09:07:39 AM,1100 Block of 26TH ST,San Francisco,94107,B10,25,2635,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7514316446928, -122.390804345826)",150160884-B10 +160973469,KM06,16038591,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:07:13 PM,04/06/2016 06:08:41 PM,04/06/2016 06:18:24 PM,04/06/2016 06:18:55 PM,04/06/2016 06:30:23 PM,04/06/2016 06:46:33 PM,04/06/2016 07:06:01 PM,Code 2 Transport,04/06/2016 07:25:56 PM,2800 Block of BALBOA ST,San Francisco,94121,B07,14,7225,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7761370214685, -122.489282129294)",160973469-KM06 +160930670,62,16036737,Medical Incident,04/02/2016,04/01/2016,04/02/2016 07:07:03 AM,04/02/2016 07:08:35 AM,04/02/2016 07:09:35 AM,04/02/2016 07:09:43 AM,04/02/2016 07:15:45 AM,04/02/2016 07:28:42 AM,04/02/2016 07:37:45 AM,Code 2 Transport,04/02/2016 08:11:20 AM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",160930670-62 +152922200,E01,15112245,Medical Incident,10/19/2015,10/19/2015,10/19/2015 03:07:48 PM,10/19/2015 03:07:48 PM,10/19/2015 03:08:26 PM,10/19/2015 03:10:50 PM,10/19/2015 03:10:50 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Patient Declined Transport,10/19/2015 03:13:53 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",152922200-E01 +160962818,KM02,16038098,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:50:28 PM,04/05/2016 04:52:23 PM,04/05/2016 04:52:45 PM,04/05/2016 04:53:28 PM,04/05/2016 05:02:38 PM,04/05/2016 05:23:29 PM,04/05/2016 05:50:29 PM,Code 2 Transport,04/05/2016 06:21:02 PM,4100 Block of NORIEGA ST,San Francisco,94122,B08,23,7725,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7527950009872, -122.507985239819)",160962818-KM02 +160980934,KM13,16038818,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:35:18 AM,04/07/2016 08:36:16 AM,04/07/2016 08:36:45 AM,04/07/2016 08:37:28 AM,04/07/2016 08:42:04 AM,04/07/2016 08:52:50 AM,04/07/2016 09:13:18 AM,Code 2 Transport,04/07/2016 09:56:42 AM,POLK ST/TURK ST,San Francisco,94102,B02,3,3114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7821692691963, -122.418993274637)",160980934-KM13 +143050927,55,14107841,Medical Incident,11/01/2014,10/31/2014,11/01/2014 04:29:56 AM,11/01/2014 04:30:52 AM,11/01/2014 04:31:51 AM,11/01/2014 04:32:27 AM,11/01/2014 04:36:52 AM,11/01/2014 04:54:12 AM,11/01/2014 04:57:25 AM,Code 2 Transport,11/01/2014 05:26:12 AM,LARKIN ST/ELLIS ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",143050927-55 +160953325,54,16037758,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:59:32 PM,04/04/2016 07:00:22 PM,04/04/2016 07:03:13 PM,04/04/2016 07:03:29 PM,04/04/2016 07:07:53 PM,04/04/2016 07:24:20 PM,04/04/2016 07:40:24 PM,Code 2 Transport,04/04/2016 07:52:48 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160953325-54 +142383918,E43,14082971,Medical Incident,08/26/2014,08/26/2014,08/26/2014 11:18:35 PM,08/26/2014 11:20:28 PM,08/26/2014 11:21:31 PM,08/26/2014 11:23:28 PM,08/26/2014 11:27:45 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Code 2 Transport,08/26/2014 11:34:47 PM,0 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",142383918-E43 +160991207,AM10,16039255,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:48:35 AM,04/08/2016 10:53:11 AM,04/08/2016 10:53:35 AM,04/08/2016 10:54:03 AM,04/08/2016 11:12:34 AM,04/08/2016 11:15:52 AM,04/08/2016 11:28:08 AM,Code 2 Transport,04/08/2016 11:58:05 AM,1300 Block of FAIRFAX AVE,San Francisco,94124,B10,25,6521,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.739663922403, -122.38438627487)",160991207-AM10 +161000517,89,16039625,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:26:00 AM,04/09/2016 04:27:06 AM,04/09/2016 04:28:07 AM,04/09/2016 04:28:19 AM,04/09/2016 04:37:21 AM,04/09/2016 05:01:19 AM,04/09/2016 05:16:17 AM,Code 2 Transport,04/09/2016 05:35:47 AM,0 Block of HOWARD ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7916972492914, -122.392134062208)",161000517-89 +150081752,E03,15003127,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:39:44 PM,01/08/2015 12:41:03 PM,01/08/2015 12:41:18 PM,01/08/2015 12:42:17 PM,01/08/2015 12:43:57 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 12:53:10 PM,900 Block of HYDE ST,San Francisco,94109,B04,3,1561,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7895690055037, -122.417179187296)",150081752-E03 +160974101,AM16,16038660,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:39:16 PM,04/06/2016 08:39:54 PM,04/06/2016 08:40:21 PM,04/06/2016 08:41:01 PM,04/06/2016 08:43:27 PM,04/06/2016 09:20:44 PM,04/06/2016 09:30:11 PM,Code 2 Transport,04/06/2016 10:03:26 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160974101-AM16 +160952403,76,16037677,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:16:56 PM,04/04/2016 03:16:56 PM,04/04/2016 03:18:12 PM,04/04/2016 03:18:20 PM,04/04/2016 03:21:29 PM,04/04/2016 03:32:31 PM,04/04/2016 03:49:25 PM,Code 3 Transport,04/04/2016 04:36:43 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,A,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7662536102334, -122.425864046062)",160952403-76 +142341653,E43,14081318,Alarms,08/22/2014,08/22/2014,08/22/2014 12:22:30 PM,08/22/2014 12:24:18 PM,08/22/2014 12:24:37 PM,08/22/2014 12:25:18 PM,08/22/2014 12:27:48 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 12:34:52 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",142341653-E43 +160952656,52,16037695,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:19:11 PM,04/04/2016 04:19:11 PM,04/04/2016 04:19:55 PM,04/04/2016 04:20:04 PM,04/04/2016 04:23:34 PM,04/04/2016 04:38:20 PM,04/04/2016 04:47:34 PM,Code 2 Transport,04/04/2016 05:10:54 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160952656-52 +151130182,89,15042545,Medical Incident,04/23/2015,04/22/2015,04/23/2015 01:28:27 AM,04/23/2015 01:31:02 AM,04/23/2015 01:31:26 AM,04/23/2015 01:31:48 AM,04/23/2015 01:35:51 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,Patient Declined Transport,04/23/2015 02:00:30 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",151130182-89 +153120255,E21,15119782,Structure Fire,11/08/2015,11/07/2015,11/08/2015 01:55:30 AM,11/08/2015 01:57:11 AM,11/08/2015 01:57:53 AM,11/08/2015 01:59:04 AM,11/08/2015 02:00:30 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/08/2015 02:03:25 AM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,3,3,3,false,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",153120255-E21 +152894247,AM20,15111245,Medical Incident,10/16/2015,10/16/2015,10/16/2015 11:35:34 PM,10/16/2015 11:38:06 PM,10/16/2015 11:38:37 PM,10/16/2015 11:38:59 PM,10/16/2015 11:47:41 PM,10/17/2015 12:12:11 AM,10/17/2015 12:24:00 AM,Code 3 Transport,10/17/2015 01:04:12 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",152894247-AM20 +142600336,67,14090722,Medical Incident,09/17/2014,09/16/2014,09/17/2014 04:16:03 AM,09/17/2014 04:16:30 AM,09/17/2014 04:16:50 AM,09/17/2014 04:17:01 AM,09/17/2014 04:30:50 AM,09/17/2014 04:45:34 AM,09/17/2014 05:01:15 AM,Code 2 Transport,09/17/2014 05:31:10 AM,3500 Block of ORTEGA ST,San Francisco,94122,B08,23,7646,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7513179271246, -122.501527685378)",142600336-67 +141762194,B02,14060776,Structure Fire,06/25/2014,06/25/2014,06/25/2014 03:12:14 PM,06/25/2014 03:14:03 PM,06/25/2014 03:14:33 PM,06/25/2014 03:15:51 PM,06/25/2014 03:18:54 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Code 3 Transport,06/25/2014 03:20:37 PM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,3,3,3,false,Alarm,1,CHIEF,5,2,5,Western Addition,"(37.7815345081004, -122.428135307501)",141762194-B02 +152230664,60,15084886,Medical Incident,08/11/2015,08/10/2015,08/11/2015 07:38:17 AM,08/11/2015 07:38:17 AM,08/11/2015 07:38:30 AM,08/11/2015 07:38:37 AM,08/11/2015 07:55:58 AM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Patient Declined Transport,08/11/2015 08:41:49 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",152230664-60 +160954163,55,16037834,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:41:44 PM,04/04/2016 11:44:04 PM,04/04/2016 11:44:17 PM,04/04/2016 11:44:32 PM,04/04/2016 11:49:08 PM,04/05/2016 12:00:12 AM,04/05/2016 12:10:29 AM,Code 2 Transport,04/05/2016 12:46:32 AM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",160954163-55 +143431113,E01,14121885,Medical Incident,12/09/2014,12/09/2014,12/09/2014 09:49:00 AM,12/09/2014 09:51:29 AM,12/09/2014 09:51:38 AM,12/09/2014 09:52:39 AM,12/09/2014 09:56:08 AM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,No Merit,12/09/2014 09:59:01 AM,2ND ST/STEVENSON ST,San Francisco,94105,B03,1,2144,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7888154965828, -122.400812304237)",143431113-E01 +161003271,AM24,16039953,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:49:34 PM,04/09/2016 09:49:34 PM,04/09/2016 09:50:14 PM,04/09/2016 09:51:31 PM,04/09/2016 09:54:42 PM,04/09/2016 10:05:18 PM,04/09/2016 10:15:52 PM,Code 2 Transport,04/09/2016 10:49:49 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",161003271-AM24 +160980486,85,16038781,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:56:03 AM,04/07/2016 04:57:01 AM,04/07/2016 04:57:11 AM,04/07/2016 04:57:18 AM,04/07/2016 05:00:56 AM,04/07/2016 05:20:31 AM,04/07/2016 05:34:02 AM,Code 2 Transport,04/07/2016 05:41:46 AM,100 Block of HEARST AV,San Francisco,94131,B09,26,8214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7306724174625, -122.440876078678)",160980486-85 +160940218,88,16037116,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:15:44 AM,04/03/2016 01:16:07 AM,04/03/2016 01:16:30 AM,04/03/2016 01:16:47 AM,04/03/2016 01:21:29 AM,04/03/2016 01:25:20 AM,04/03/2016 01:35:34 AM,Code 2 Transport,04/03/2016 02:23:28 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160940218-88 +161000885,86,16039670,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:47:52 AM,04/09/2016 08:48:37 AM,04/09/2016 08:51:14 AM,04/09/2016 08:51:14 AM,04/09/2016 08:57:05 AM,04/09/2016 09:10:23 AM,04/09/2016 09:27:38 AM,Code 2 Transport,04/09/2016 10:03:23 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",161000885-86 +150652649,B01,15024914,Alarms,03/06/2015,03/06/2015,03/06/2015 03:39:46 PM,03/06/2015 03:41:05 PM,03/06/2015 03:41:20 PM,03/06/2015 03:42:59 PM,03/06/2015 03:46:44 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Fire,03/06/2015 03:52:36 PM,2700 Block of TAYLOR ST,San Francisco,94133,B01,28,1433,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8077534960371, -122.415641041957)",150652649-B01 +141783183,76,14061565,Traffic Collision,06/27/2014,06/27/2014,06/27/2014 08:46:02 PM,06/27/2014 08:46:27 PM,06/27/2014 08:47:00 PM,06/27/2014 08:47:14 PM,06/27/2014 08:48:52 PM,04/25/2016 01:16:32 PM,04/25/2016 01:16:32 PM,Unable to Locate,06/27/2014 08:59:09 PM,POWELL ST/GEARY ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",141783183-76 +151521288,65,15057811,Medical Incident,06/01/2015,06/01/2015,06/01/2015 11:11:59 AM,06/01/2015 11:13:33 AM,06/01/2015 11:17:36 AM,06/01/2015 11:17:36 AM,06/01/2015 11:26:56 AM,06/01/2015 11:41:17 AM,06/01/2015 12:03:20 PM,Code 2 Transport,06/01/2015 12:31:15 PM,0 Block of LELAND AVE,San Francisco,94134,B10,44,6255,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7114374150913, -122.4042019699)",151521288-65 +152461391,T13,15093766,Structure Fire,09/03/2015,09/03/2015,09/03/2015 11:02:26 AM,09/03/2015 11:02:26 AM,09/03/2015 11:02:37 AM,09/03/2015 11:03:46 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/03/2015 11:05:44 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7934507425915, -122.396414422165)",152461391-T13 +150182925,E34,15007230,Medical Incident,01/18/2015,01/18/2015,01/18/2015 08:02:42 PM,01/18/2015 08:04:59 PM,01/18/2015 08:05:53 PM,01/18/2015 08:08:28 PM,01/18/2015 08:09:16 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,Code 2 Transport,01/18/2015 08:26:08 PM,500 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7798321975251, -122.508894113463)",150182925-E34 +141120216,AR1,14037815,Structure Fire,04/22/2014,04/22/2014,04/22/2014 01:34:14 PM,04/22/2014 01:34:47 PM,04/22/2014 01:42:36 PM,04/22/2014 01:47:17 PM,04/22/2014 02:13:34 PM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Code 2 Transport,04/22/2014 06:53:09 PM,0 Block of WALTER ST,SAN FRANCISCO,94114,B05,6,5131,,3,3,false,Fire,1,INVESTIGATION,28,5,8,Castro/Upper Market,"(37.7683848780008, -122.432450783401)",141120216-AR1 +141370876,89,14046858,Medical Incident,05/17/2014,05/17/2014,05/17/2014 08:21:39 AM,05/17/2014 08:22:15 AM,05/17/2014 08:23:32 AM,05/17/2014 08:23:43 AM,05/17/2014 08:24:23 AM,05/17/2014 08:42:32 AM,05/17/2014 08:52:24 AM,Code 2 Transport,05/17/2014 09:27:57 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",141370876-89 +141160339,E42,14039295,Medical Incident,04/26/2014,04/26/2014,04/26/2014 08:37:20 PM,04/26/2014 08:38:36 PM,04/26/2014 08:39:35 PM,04/26/2014 08:41:12 PM,04/26/2014 08:45:10 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Code 2 Transport,04/26/2014 08:59:34 PM,300 Block of TEDDY AVE,SAN FRANCISCO,94134,B09,44,6312,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.715499055529, -122.409647993428)",141160339-E42 +142051722,T03,14070964,Medical Incident,07/24/2014,07/24/2014,07/24/2014 12:51:02 PM,07/24/2014 12:51:02 PM,07/24/2014 12:51:08 PM,07/24/2014 12:52:36 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Code 2 Transport,07/24/2014 12:53:52 PM,500 Block of EDDY ST,San Francisco,94102,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",142051722-T03 +142220709,T06,14076975,Medical Incident,08/10/2014,08/09/2014,08/10/2014 07:30:46 AM,08/10/2014 07:31:32 AM,08/10/2014 07:33:53 AM,08/10/2014 07:36:04 AM,08/10/2014 07:37:29 AM,04/25/2016 01:15:44 PM,04/25/2016 01:15:44 PM,Code 2 Transport,08/10/2014 07:40:38 AM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",142220709-T06 +152413303,T08,15092017,Structure Fire,08/29/2015,08/29/2015,08/29/2015 06:48:44 PM,08/29/2015 06:50:09 PM,08/29/2015 06:50:28 PM,08/29/2015 06:53:39 PM,08/29/2015 06:53:39 PM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 07:21:04 PM,100 Block of HENRY ADAMS ST,San Francisco,94103,B02,29,2355,3,3,3,false,Alarm,1,TRUCK,3,2,10,Mission Bay,"(37.7679576263106, -122.403747661473)",152413303-T08 +160983827,68,16039123,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 09:55:52 PM,04/07/2016 09:55:52 PM,04/07/2016 09:56:12 PM,04/07/2016 09:56:23 PM,04/07/2016 10:03:20 PM,04/07/2016 10:21:27 PM,04/07/2016 10:30:18 PM,Code 2 Transport,04/07/2016 11:06:49 PM,VAN NESS AV/SUTTER ST,San Francisco,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",160983827-68 +141923876,T01,14066735,Structure Fire,07/11/2014,07/11/2014,07/11/2014 11:23:49 PM,07/11/2014 11:23:49 PM,07/11/2014 11:24:01 PM,07/11/2014 11:26:51 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,No Merit,07/11/2014 11:28:29 PM,STOCKTON ST/MARKET ST,San Francisco,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",141923876-T01 +160972681,62,16038493,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:23:34 PM,04/06/2016 03:25:56 PM,04/06/2016 03:26:13 PM,04/06/2016 03:26:23 PM,04/06/2016 03:33:03 PM,04/06/2016 03:45:30 PM,04/06/2016 03:50:45 PM,Code 2 Transport,04/06/2016 04:14:38 PM,GEARY BL/WEBSTER ST,San Francisco,94115,B04,5,3432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Japantown,"(37.7845682402461, -122.431204945516)",160972681-62 +151212717,E15,15045962,Medical Incident,05/01/2015,05/01/2015,05/01/2015 05:02:21 PM,05/01/2015 05:02:31 PM,05/01/2015 05:03:09 PM,05/01/2015 05:05:15 PM,05/01/2015 05:07:02 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Patient Declined Transport,05/01/2015 05:07:32 PM,300 Block of JULES AVE,San Francisco,94112,B09,15,8457,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7242989670231, -122.461184373042)",151212717-E15 +142102514,AM24,14072875,Medical Incident,07/29/2014,07/29/2014,07/29/2014 05:10:30 PM,07/29/2014 05:11:43 PM,07/29/2014 05:12:20 PM,07/29/2014 05:13:52 PM,07/29/2014 05:24:35 PM,07/29/2014 05:34:08 PM,07/29/2014 05:53:17 PM,Code 2 Transport,07/29/2014 06:26:49 PM,1900 Block of 14TH AVE,San Francisco,94116,B08,40,7368,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7517948389528, -122.470646308955)",142102514-AM24 +151263105,B03,15047888,Medical Incident,05/06/2015,05/06/2015,05/06/2015 06:30:55 PM,05/06/2015 06:30:55 PM,05/06/2015 06:31:25 PM,05/06/2015 06:31:41 PM,05/06/2015 06:36:58 PM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 2 Transport,05/06/2015 06:42:39 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,A,E,3,false,Potentially Life-Threatening,1,CHIEF,4,3,6,South of Market,"(37.7811458612596, -122.409026046516)",151263105-B03 +153463245,E17,15133346,Medical Incident,12/12/2015,12/12/2015,12/12/2015 06:17:44 PM,12/12/2015 06:17:44 PM,12/12/2015 06:18:57 PM,12/12/2015 06:20:54 PM,12/12/2015 06:25:55 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Code 2 Transport,12/12/2015 06:40:01 PM,0 Block of RAYMOND AVE,San Francisco,94134,B10,44,6255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121484523973, -122.404287839917)",153463245-E17 +141780325,B01,14061287,Alarms,06/27/2014,06/26/2014,06/27/2014 04:01:42 AM,06/27/2014 04:03:12 AM,06/27/2014 04:03:29 AM,06/27/2014 04:05:46 AM,06/27/2014 04:09:17 AM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/27/2014 04:12:00 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,false,Alarm,1,CHIEF,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",141780325-B01 +141332561,T08,14045407,Structure Fire,05/13/2014,05/13/2014,05/13/2014 04:55:18 PM,05/13/2014 04:55:18 PM,05/13/2014 04:57:58 PM,05/13/2014 05:00:05 PM,05/13/2014 05:00:18 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,Fire,05/13/2014 05:00:31 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",141332561-T08 +141341468,B03,14045687,Structure Fire,05/14/2014,05/14/2014,05/14/2014 11:17:11 AM,05/14/2014 11:17:59 AM,05/14/2014 11:18:35 AM,05/14/2014 11:20:32 AM,05/14/2014 11:29:57 AM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Fire,05/14/2014 11:53:36 AM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,false,Alarm,1,CHIEF,9,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",141341468-B03 +142604029,E01,14091082,Medical Incident,09/17/2014,09/17/2014,09/17/2014 11:31:44 PM,09/17/2014 11:32:38 PM,09/17/2014 11:34:03 PM,09/17/2014 11:35:01 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,No Merit,09/17/2014 11:43:16 PM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",142604029-E01 +161000630,75,16039637,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:25:06 AM,04/09/2016 06:26:15 AM,04/09/2016 06:26:28 AM,04/09/2016 06:26:51 AM,04/09/2016 06:29:39 AM,04/09/2016 06:37:23 AM,04/09/2016 06:56:30 AM,Code 2 Transport,04/09/2016 07:35:08 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",161000630-75 +142283697,B09,14079387,Gas Leak (Natural and LP Gases),08/16/2014,08/16/2014,08/16/2014 10:08:46 PM,08/16/2014 10:12:29 PM,08/16/2014 10:13:32 PM,08/16/2014 10:15:00 PM,08/16/2014 10:21:14 PM,04/25/2016 01:15:37 PM,04/25/2016 01:15:37 PM,Fire,08/16/2014 10:25:16 PM,300 Block of FONT BLVD,San Francisco,94132,B08,19,8423,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7170992839815, -122.476744283658)",142283697-B09 +143161370,E43,14111886,Medical Incident,11/12/2014,11/12/2014,11/12/2014 11:13:12 AM,11/12/2014 11:18:44 AM,11/12/2014 11:19:25 AM,11/12/2014 11:20:10 AM,11/12/2014 11:21:38 AM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Code 3 Transport,11/12/2014 11:32:26 AM,0 Block of CORDOVA ST,San Francisco,94112,B09,43,6224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7128542066496, -122.43602367503)",143161370-E43 +141040333,E41,14035218,Structure Fire,04/14/2014,04/14/2014,04/14/2014 08:47:35 PM,04/14/2014 08:48:16 PM,04/14/2014 08:48:25 PM,04/14/2014 08:49:08 PM,04/14/2014 08:51:41 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Fire,04/14/2014 08:58:22 PM,900 Block of BAY ST,SAN FRANCISCO,94109,B01,28,3134,3,3,3,false,Alarm,1,ENGINE,3,1,2,Russian Hill,"(37.8044682925217, -122.423012152019)",141040333-E41 +150611315,RS1,15023229,Medical Incident,03/02/2015,03/02/2015,03/02/2015 11:07:58 AM,03/02/2015 11:10:06 AM,03/02/2015 11:11:09 AM,03/02/2015 11:11:24 AM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Against Medical Advice,03/02/2015 11:12:35 AM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7742496611166, -122.414204535023)",150611315-RS1 +141432381,E05,14049135,Medical Incident,05/23/2014,05/23/2014,05/23/2014 04:29:31 PM,05/23/2014 04:29:31 PM,05/23/2014 04:30:52 PM,05/23/2014 04:31:54 PM,05/23/2014 04:35:19 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Code 2 Transport,05/23/2014 04:53:55 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",141432381-E05 +150701606,E05,15026714,Alarms,03/11/2015,03/11/2015,03/11/2015 12:11:42 PM,03/11/2015 12:13:02 PM,03/11/2015 12:13:27 PM,03/11/2015 12:14:43 PM,03/11/2015 12:16:03 PM,04/25/2016 01:11:47 PM,04/25/2016 01:11:47 PM,Fire,03/11/2015 12:21:48 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",150701606-E05 +151100258,E01,15041476,Medical Incident,04/20/2015,04/19/2015,04/20/2015 02:56:00 AM,04/20/2015 03:01:27 AM,04/20/2015 03:01:40 AM,04/20/2015 03:03:12 AM,04/20/2015 03:05:41 AM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,No Merit,04/20/2015 03:06:40 AM,5TH ST/JESSIE ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7831577478943, -122.407015679867)",151100258-E01 +150133327,E18,15005304,Medical Incident,01/13/2015,01/13/2015,01/13/2015 07:34:35 PM,01/13/2015 07:38:17 PM,01/13/2015 07:46:15 PM,01/13/2015 07:47:35 PM,01/13/2015 07:52:14 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Code 2 Transport,01/13/2015 08:08:12 PM,1800 Block of VISITACION AVE,San Francisco,94134,B08,44,7523,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,McLaren Park,"(37.7162666820869, -122.414215025813)",150133327-E18 +160921837,86,16036452,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:38:35 PM,04/01/2016 01:41:21 PM,04/01/2016 01:41:43 PM,04/01/2016 01:42:04 PM,04/01/2016 01:52:03 PM,04/01/2016 02:05:17 PM,04/01/2016 02:26:36 PM,Code 2 Transport,04/01/2016 02:47:56 PM,600 Block of ANDOVER ST,San Francisco,94110,B06,32,5751,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7358356078054, -122.416669530055)",160921837-86 +141601144,KM04,14055130,Medical Incident,06/09/2014,06/09/2014,06/09/2014 11:09:05 AM,06/09/2014 11:09:33 AM,06/09/2014 11:10:38 AM,06/09/2014 11:12:42 AM,06/09/2014 11:15:15 AM,04/25/2016 01:16:52 PM,04/25/2016 01:16:52 PM,Patient Declined Transport,06/09/2014 11:54:38 AM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7584203036531, -122.418963082325)",141601144-KM04 +152720726,E28,15104044,Medical Incident,09/29/2015,09/29/2015,09/29/2015 08:15:14 AM,09/29/2015 08:15:16 AM,09/29/2015 08:15:48 AM,09/29/2015 08:16:35 AM,09/29/2015 08:19:52 AM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Code 2 Transport,09/29/2015 08:29:43 AM,MASON ST/LOMBARD ST,San Francisco,94133,B01,28,1423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8028276981651, -122.413034336779)",152720726-E28 +160933895,62,16037081,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:15:33 PM,04/02/2016 11:18:00 PM,04/02/2016 11:18:24 PM,04/02/2016 11:18:39 PM,04/02/2016 11:26:07 PM,04/02/2016 11:43:37 PM,04/03/2016 12:03:00 AM,Code 2 Transport,04/03/2016 12:35:57 AM,0 Block of HAIGHT ST,San Francisco,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7730003350445, -122.422982934489)",160933895-62 +150540773,E42,15020651,Medical Incident,02/23/2015,02/23/2015,02/23/2015 08:33:54 AM,02/23/2015 08:36:07 AM,02/23/2015 08:40:45 AM,02/23/2015 08:43:24 AM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Medical Examiner,02/23/2015 08:43:52 AM,100 Block of ELLERT ST,San Francisco,94110,B06,32,5742,E,E,3,true,Potentially Life-Threatening,1,ENGINE,5,6,9,Bernal Heights,"(37.7384112563215, -122.417199146201)",150540773-E42 +161001770,KM09,16039782,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:54:55 PM,04/09/2016 01:55:53 PM,04/09/2016 01:58:28 PM,04/09/2016 01:59:07 PM,04/09/2016 02:06:26 PM,04/09/2016 02:25:50 PM,04/09/2016 02:45:17 PM,Code 2 Transport,04/09/2016 03:19:51 PM,0 Block of RAMONA AVE,San Francisco,94103,B02,6,5214,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,2,8,Mission,"(37.7671451020863, -122.42534582533)",161001770-KM09 +152611849,E02,15099750,Medical Incident,09/18/2015,09/18/2015,09/18/2015 12:39:56 PM,09/18/2015 12:39:56 PM,09/18/2015 12:40:19 PM,09/18/2015 12:41:44 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/18/2015 12:44:53 PM,TAYLOR ST/JEFFERSON ST,San Francisco,94133,B01,28,1433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.808214052974, -122.41580242723)",152611849-E02 +161002372,79,16039848,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:09:15 PM,04/09/2016 05:09:15 PM,04/09/2016 05:10:43 PM,04/09/2016 05:10:51 PM,04/09/2016 05:28:11 PM,04/09/2016 05:48:43 PM,04/09/2016 05:56:53 PM,Code 2 Transport,04/09/2016 06:25:18 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",161002372-79 +160940688,AM22,16037166,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:51:27 AM,04/03/2016 05:54:28 AM,04/03/2016 05:55:10 AM,04/03/2016 05:56:13 AM,04/03/2016 05:59:32 AM,04/03/2016 06:12:42 AM,04/03/2016 06:26:37 AM,Code 3 Transport,04/03/2016 07:34:05 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",160940688-AM22 +142570994,E40,14089722,Medical Incident,09/14/2014,09/14/2014,09/14/2014 09:32:51 AM,09/14/2014 09:33:58 AM,09/14/2014 09:34:41 AM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Code 2 Transport,09/14/2014 09:43:06 AM,1700 Block of 22ND AVE,San Francisco,94122,B08,18,7446,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7550294506836, -122.479821287281)",142570994-E40 +143282502,72,14116369,Medical Incident,11/24/2014,11/24/2014,11/24/2014 04:05:27 PM,11/24/2014 04:07:41 PM,11/24/2014 04:09:18 PM,11/24/2014 04:09:44 PM,11/24/2014 04:12:50 PM,11/24/2014 04:26:15 PM,11/24/2014 04:46:38 PM,Code 2 Transport,11/24/2014 05:57:09 PM,1600 Block of GENEVA AVE,San Francisco,94112,B09,43,6172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7115816415732, -122.427965645504)",143282502-72 +151822534,E44,15069538,Gas Leak (Natural and LP Gases),07/01/2015,07/01/2015,07/01/2015 03:54:32 PM,07/01/2015 03:55:27 PM,07/01/2015 03:56:05 PM,07/01/2015 03:56:39 PM,07/01/2015 03:59:11 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Fire,07/01/2015 04:05:30 PM,200 Block of LELAND AVE,San Francisco,94134,B09,44,6256,3,3,3,false,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7126284936114, -122.407863164797)",151822534-E44 +160932044,82,16036897,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:33:10 PM,04/02/2016 02:35:19 PM,04/02/2016 02:42:04 PM,04/02/2016 02:42:10 PM,04/02/2016 02:48:52 PM,04/02/2016 03:07:27 PM,04/02/2016 03:27:50 PM,Code 2 Transport,04/02/2016 03:53:42 PM,1300 Block of 39TH AVE,San Francisco,94122,B08,23,7626,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7616832994128, -122.498558977966)",160932044-82 +142953678,E01,14104196,Alarms,10/22/2014,10/22/2014,10/22/2014 10:11:28 PM,10/22/2014 10:13:53 PM,10/22/2014 10:14:15 PM,10/22/2014 10:15:44 PM,10/22/2014 10:17:44 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Fire,10/22/2014 10:34:07 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",142953678-E01 +150621332,52,15023618,Medical Incident,03/03/2015,03/03/2015,03/03/2015 10:34:49 AM,03/03/2015 10:35:34 AM,03/03/2015 10:36:11 AM,03/03/2015 10:36:37 AM,03/03/2015 10:45:27 AM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Patient Declined Transport,03/03/2015 11:14:14 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",150621332-52 +160942493,61,16037329,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:21:17 PM,04/03/2016 04:24:16 PM,04/03/2016 04:25:11 PM,04/03/2016 04:25:19 PM,04/03/2016 04:31:51 PM,04/03/2016 04:42:35 PM,04/03/2016 04:53:25 PM,Code 2 Transport,04/03/2016 05:20:54 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160942493-61 +152982398,KM01,15114487,Medical Incident,10/25/2015,10/25/2015,10/25/2015 04:43:39 PM,10/25/2015 04:46:18 PM,10/25/2015 04:48:39 PM,10/25/2015 04:49:22 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,No Merit,10/25/2015 04:56:18 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",152982398-KM01 +150692001,T01,15026373,Alarms,03/10/2015,03/10/2015,03/10/2015 02:29:00 PM,03/10/2015 02:30:30 PM,03/10/2015 02:30:44 PM,03/10/2015 02:31:52 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 02:32:53 PM,300 Block of PINE ST,San Francisco,94104,B01,13,1165,3,3,3,false,Alarm,1,TRUCK,5,1,3,Financial District/South Beach,"(37.7919141534886, -122.402017229103)",150692001-T01 +152971154,E21,15113995,Outside Fire,10/24/2015,10/24/2015,10/24/2015 09:50:09 AM,10/24/2015 09:51:55 AM,10/24/2015 09:52:07 AM,10/24/2015 09:52:26 AM,10/24/2015 09:57:12 AM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,Fire,10/24/2015 10:00:20 AM,GROVE ST/BUCHANAN ST,San Francisco,94102,B02,5,3424,3,3,3,false,Fire,1,ENGINE,1,2,5,Hayes Valley,"(37.7771781151663, -122.42810097686)",152971154-E21 +160974267,86,16038679,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:34:01 PM,04/06/2016 09:34:47 PM,04/06/2016 09:35:43 PM,04/06/2016 09:36:00 PM,04/06/2016 09:43:09 PM,04/06/2016 09:49:26 PM,04/06/2016 10:02:32 PM,Code 2 Transport,04/06/2016 10:33:31 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160974267-86 +151952922,T06,15074497,Alarms,07/14/2015,07/14/2015,07/14/2015 05:59:06 PM,07/14/2015 06:01:10 PM,07/14/2015 06:01:21 PM,07/14/2015 06:02:45 PM,07/14/2015 06:04:00 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,Fire,07/14/2015 06:12:31 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",151952922-T06 +153173465,AM20,15122006,Medical Incident,11/13/2015,11/13/2015,11/13/2015 07:26:12 PM,11/13/2015 07:27:02 PM,11/13/2015 07:28:02 PM,11/13/2015 07:28:48 PM,11/13/2015 07:38:43 PM,11/13/2015 07:52:29 PM,11/13/2015 08:29:20 PM,Code 2 Transport,11/13/2015 09:00:03 PM,100 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8199670399591, -122.37426944654)",153173465-AM20 +160970066,AM22,16038244,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:27:10 AM,04/06/2016 12:27:10 AM,04/06/2016 12:27:24 AM,04/06/2016 12:27:53 AM,04/06/2016 12:30:32 AM,04/06/2016 12:46:50 AM,04/06/2016 01:02:53 AM,Code 2 Transport,04/06/2016 01:55:13 AM,BUCHANAN ST/CHESTNUT ST,San Francisco,94123,B04,16,3445,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.8012356976907, -122.432957626885)",160970066-AM22 +143433115,B04,14122054,Gas Leak (Natural and LP Gases),12/09/2014,12/09/2014,12/09/2014 05:40:57 PM,12/09/2014 05:42:12 PM,12/09/2014 05:42:35 PM,12/09/2014 05:42:56 PM,12/09/2014 05:50:37 PM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,Fire,12/09/2014 06:08:45 PM,1400 Block of WALLER ST,San Francisco,94117,B05,12,4512,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7690761306116, -122.447167289368)",143433115-B04 +160954124,KM07,16037832,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:19:12 PM,04/04/2016 11:23:30 PM,04/04/2016 11:24:09 PM,04/04/2016 11:24:41 PM,04/04/2016 11:27:44 PM,04/04/2016 11:37:48 PM,04/04/2016 11:46:09 PM,Code 2 Transport,04/05/2016 12:07:49 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160954124-KM07 +150312966,E43,15012088,Structure Fire,01/31/2015,01/31/2015,01/31/2015 06:44:48 PM,01/31/2015 06:45:38 PM,01/31/2015 06:46:15 PM,01/31/2015 06:47:10 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 06:52:07 PM,0 Block of LIEBIG ST,San Francisco,94112,B09,33,8357,3,3,3,true,Alarm,1,ENGINE,8,9,11,Outer Mission,"(37.7089888345409, -122.456754288707)",150312966-E43 +143523171,E15,14125883,Medical Incident,12/18/2014,12/18/2014,12/18/2014 06:38:24 PM,12/18/2014 06:38:24 PM,12/18/2014 06:38:59 PM,12/18/2014 06:40:26 PM,12/18/2014 06:43:30 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Patient Declined Transport,12/18/2014 06:50:05 PM,300 Block of GARFIELD ST,San Francisco,94132,B09,33,8433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7197369271653, -122.465806378562)",143523171-E15 +153070629,59,15117865,Structure Fire,11/03/2015,11/02/2015,11/03/2015 07:30:22 AM,11/03/2015 07:31:15 AM,11/03/2015 07:31:48 AM,11/03/2015 07:31:56 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/03/2015 07:35:23 AM,LARCH ST/LAGUNA ST,San Francisco,94102,B02,5,3426,3,3,3,true,Alarm,1,MEDIC,5,2,5,Western Addition,"(37.7815822902533, -122.427298600182)",153070629-59 +160963841,72,16038193,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:23:14 PM,04/05/2016 09:23:39 PM,04/05/2016 09:23:51 PM,04/05/2016 09:24:15 PM,04/05/2016 09:28:58 PM,04/05/2016 09:54:26 PM,04/05/2016 10:12:46 PM,Code 2 Transport,04/05/2016 11:17:37 PM,3200 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7447384333683, -122.420517921043)",160963841-72 +141940413,85,14067163,Medical Incident,07/13/2014,07/12/2014,07/13/2014 02:36:39 AM,07/13/2014 02:36:39 AM,07/13/2014 02:36:51 AM,07/13/2014 02:37:16 AM,07/13/2014 02:49:16 AM,07/13/2014 03:05:23 AM,07/13/2014 03:15:16 AM,Code 2 Transport,07/13/2014 03:47:59 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",141940413-85 +160982257,77,16038961,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:27:10 PM,04/07/2016 02:27:10 PM,04/07/2016 02:28:07 PM,04/07/2016 02:28:25 PM,04/07/2016 02:37:10 PM,04/07/2016 02:46:05 PM,04/07/2016 03:03:52 PM,Code 2 Transport,04/07/2016 03:33:24 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160982257-77 +160960316,AM20,16037874,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:09:51 AM,04/05/2016 04:13:22 AM,04/05/2016 04:13:28 AM,04/05/2016 04:14:04 AM,04/05/2016 04:19:11 AM,04/05/2016 04:41:05 AM,04/05/2016 05:11:56 AM,Code 2 Transport,04/05/2016 05:12:07 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160960316-AM20 +152703430,E04,15103614,Medical Incident,09/27/2015,09/27/2015,09/27/2015 09:45:03 PM,09/27/2015 09:48:22 PM,09/27/2015 09:48:34 PM,09/27/2015 09:49:52 PM,09/27/2015 09:51:20 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Code 2 Transport,09/27/2015 09:54:58 PM,100 Block of CHANNEL,San Francisco,94158,B03,8,2226,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7743802809644, -122.390735918846)",152703430-E04 +152603673,75,15099545,Medical Incident,09/17/2015,09/17/2015,09/17/2015 08:46:10 PM,09/17/2015 08:46:10 PM,09/17/2015 08:48:14 PM,09/17/2015 08:48:21 PM,09/17/2015 09:02:14 PM,09/17/2015 09:12:02 PM,09/17/2015 09:19:53 PM,Code 2 Transport,09/17/2015 09:41:30 PM,1100 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,2,C,3,true,Non Life-threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",152603673-75 +142632787,T13,14092102,Alarms,09/20/2014,09/20/2014,09/20/2014 06:12:07 PM,09/20/2014 06:15:15 PM,09/20/2014 06:15:38 PM,09/20/2014 06:16:13 PM,09/20/2014 06:23:15 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Fire,09/20/2014 06:34:25 PM,0 Block of AUGUST ALY,San Francisco,94133,B01,2,1352,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7996793592902, -122.411464011148)",142632787-T13 +141220414,89,14041519,Medical Incident,05/02/2014,05/02/2014,05/02/2014 11:51:24 PM,05/02/2014 11:53:13 PM,05/02/2014 11:53:56 PM,05/02/2014 11:54:03 PM,05/03/2014 12:09:30 AM,05/03/2014 12:24:06 AM,05/03/2014 12:30:37 AM,Code 2 Transport,05/03/2014 12:57:19 AM,0 Block of ESSEX ST,SAN FRANCISCO,94105,B03,35,2136,,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",141220414-89 +161001255,85,16039715,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:59:59 AM,04/09/2016 11:01:35 AM,04/09/2016 11:07:57 AM,04/09/2016 11:08:23 AM,04/09/2016 11:24:03 AM,04/09/2016 11:34:02 AM,04/09/2016 11:55:32 AM,Code 3 Transport,04/09/2016 12:51:26 PM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",161001255-85 +160980269,71,16038751,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:21:55 AM,04/07/2016 02:22:57 AM,04/07/2016 02:23:16 AM,04/07/2016 02:23:22 AM,04/07/2016 02:31:16 AM,04/07/2016 02:56:37 AM,04/07/2016 03:27:30 AM,Code 2 Transport,04/07/2016 03:57:33 AM,4400 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",160980269-71 +160983642,KM07,16039105,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:55:54 PM,04/07/2016 08:56:59 PM,04/07/2016 08:57:17 PM,04/07/2016 08:58:20 PM,04/07/2016 09:06:01 PM,04/07/2016 09:26:31 PM,04/07/2016 09:55:34 PM,Code 2 Transport,04/07/2016 10:25:19 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160983642-KM07 +151662715,T15,15063571,Structure Fire,06/15/2015,06/15/2015,06/15/2015 05:40:18 PM,06/15/2015 05:40:18 PM,06/15/2015 05:40:31 PM,06/15/2015 05:40:50 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Fire,06/15/2015 05:47:18 PM,ATHENS ST/PERSIA AV,San Francisco,94112,B09,43,6156,3,3,3,false,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.7200903159964, -122.429599155572)",151662715-T15 +142572260,E01,14089845,Medical Incident,09/14/2014,09/14/2014,09/14/2014 04:59:20 PM,09/14/2014 05:01:15 PM,09/14/2014 05:03:01 PM,09/14/2014 05:05:27 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Code 2 Transport,09/14/2014 05:11:21 PM,POWELL ST/GEARY ST,San Francisco,94102,B01,1,1363,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",142572260-E01 +160933107,AM22,16037007,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:26:33 PM,04/02/2016 07:26:55 PM,04/02/2016 07:27:21 PM,04/02/2016 07:28:00 PM,04/02/2016 07:32:34 PM,04/02/2016 07:49:43 PM,04/02/2016 08:06:45 PM,Code 2 Transport,04/02/2016 08:44:48 PM,400 Block of LIBERTY ST,San Francisco,94114,B06,11,5452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7569826190885, -122.432121595722)",160933107-AM22 +152464248,61,15094049,Medical Incident,09/03/2015,09/03/2015,09/03/2015 11:30:12 PM,09/03/2015 11:32:01 PM,09/03/2015 11:32:16 PM,09/03/2015 11:32:38 PM,09/03/2015 11:42:17 PM,09/03/2015 11:59:32 PM,09/04/2015 12:17:23 AM,Code 2 Transport,09/04/2015 12:49:24 AM,100 Block of TOPEKA AVE,San Francisco,94124,B10,42,6446,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7337492510332, -122.399013429976)",152464248-61 +160992093,AM16,16039335,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:42:38 PM,04/08/2016 02:43:58 PM,04/08/2016 02:46:50 PM,04/08/2016 02:47:15 PM,04/08/2016 03:02:23 PM,04/08/2016 03:12:15 PM,04/08/2016 03:21:33 PM,Code 2 Transport,04/08/2016 03:52:26 PM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",160992093-AM16 +160980266,AM20,16038750,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:18:27 AM,04/07/2016 02:20:28 AM,04/07/2016 02:20:57 AM,04/07/2016 02:21:49 AM,04/07/2016 02:25:17 AM,04/07/2016 02:35:07 AM,04/07/2016 02:51:50 AM,Code 2 Transport,04/07/2016 03:29:12 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160980266-AM20 +151753143,E03,15066828,Fuel Spill,06/24/2015,06/24/2015,06/24/2015 07:39:05 PM,06/24/2015 07:41:28 PM,06/24/2015 07:41:53 PM,06/24/2015 07:43:36 PM,06/24/2015 07:45:51 PM,04/25/2016 01:09:50 PM,04/25/2016 01:09:50 PM,Fire,06/24/2015 07:49:19 PM,800 Block of SUTTER ST,San Francisco,94109,B01,3,1463,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7885472961758, -122.414374370709)",151753143-E03 +142153186,E07,14074719,Medical Incident,08/03/2014,08/03/2014,08/03/2014 10:43:45 PM,08/03/2014 10:47:41 PM,08/03/2014 10:48:15 PM,08/03/2014 10:49:19 PM,08/03/2014 10:49:19 PM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,Patient Declined Transport,08/03/2014 10:56:54 PM,2900 Block of 18TH ST,San Francisco,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7616171946557, -122.411565020696)",142153186-E07 +141660302,E39,14057130,Medical Incident,06/15/2014,06/14/2014,06/15/2014 02:04:44 AM,06/15/2014 02:07:03 AM,06/15/2014 02:09:27 AM,06/15/2014 02:11:06 AM,06/15/2014 02:15:29 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Code 2 Transport,06/15/2014 02:32:10 AM,100 Block of MOLIMO DR,San Francisco,94127,B09,39,8253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7372399371982, -122.448567487126)",141660302-E39 +150983172,72,15037206,Medical Incident,04/08/2015,04/08/2015,04/08/2015 07:05:42 PM,04/08/2015 07:06:37 PM,04/08/2015 07:08:12 PM,04/08/2015 07:08:19 PM,04/08/2015 07:19:35 PM,04/08/2015 07:40:29 PM,04/08/2015 07:52:40 PM,Code 2 Transport,04/08/2015 08:27:31 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",150983172-72 +150843848,89,15032234,Medical Incident,03/25/2015,03/25/2015,03/25/2015 09:20:01 PM,03/25/2015 09:20:58 PM,03/25/2015 09:21:35 PM,03/25/2015 09:21:48 PM,03/25/2015 09:26:50 PM,03/25/2015 09:43:36 PM,03/25/2015 09:57:05 PM,Code 2 Transport,03/25/2015 10:38:37 PM,4200 Block of 22ND ST,San Francisco,94114,B06,24,5463,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7541420316645, -122.439312442583)",150843848-89 +151142240,E15,15043133,Medical Incident,04/24/2015,04/24/2015,04/24/2015 02:58:10 PM,04/24/2015 02:59:20 PM,04/24/2015 02:59:58 PM,04/24/2015 03:01:08 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Code 2 Transport,04/24/2015 03:04:23 PM,FARALLONES ST/CAPITOL AV,San Francisco,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.7140553033338, -122.45903538493)",151142240-E15 +151861267,E43,15070989,Citizen Assist / Service Call,07/05/2015,07/05/2015,07/05/2015 09:43:33 AM,07/05/2015 09:44:35 AM,07/05/2015 09:59:53 AM,07/05/2015 09:59:53 AM,07/05/2015 09:59:53 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 10:00:16 AM,2100 Block of THOMAS AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7357375877022, -122.400562306251)",151861267-E43 +160921450,84,16036415,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:53:54 AM,04/01/2016 11:53:54 AM,04/01/2016 11:53:54 AM,04/01/2016 11:53:54 AM,04/01/2016 11:53:54 AM,04/01/2016 11:59:33 AM,04/01/2016 12:27:41 PM,Code 2 Transport,04/01/2016 12:54:42 PM,GENEVA AV/MOSCOW ST,San Francisco,94134,B99,43,6173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7131431588266, -122.433706822023)",160921450-84 +141640194,E05,14056398,Medical Incident,06/13/2014,06/12/2014,06/13/2014 01:44:01 AM,06/13/2014 01:45:54 AM,06/13/2014 01:46:53 AM,06/13/2014 01:49:16 AM,06/13/2014 01:51:23 AM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/13/2014 01:59:17 AM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",141640194-E05 +160973192,KM11,16038553,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:10:42 PM,04/06/2016 05:11:23 PM,04/06/2016 05:11:50 PM,04/06/2016 05:12:40 PM,04/06/2016 05:17:27 PM,04/06/2016 05:31:51 PM,04/06/2016 05:53:00 PM,Code 2 Transport,04/06/2016 06:30:30 PM,100 Block of DIAMOND ST,San Francisco,94114,B05,6,5415,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7599536346651, -122.437183555035)",160973192-KM11 +141090373,68,14036945,Medical Incident,04/19/2014,04/19/2014,04/19/2014 10:57:13 PM,04/19/2014 10:57:13 PM,04/19/2014 10:57:33 PM,04/19/2014 10:57:49 PM,04/19/2014 11:10:51 PM,04/19/2014 11:23:37 PM,04/19/2014 11:38:57 PM,Code 2 Transport,04/20/2014 12:07:33 AM,100 Block of SHIPLEY ST,SAN FRANCISCO,94107,B03,1,2215,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807470349417, -122.401775669242)",141090373-68 +152383813,75,15090828,Medical Incident,08/26/2015,08/26/2015,08/26/2015 10:10:19 PM,08/26/2015 10:10:52 PM,08/26/2015 10:11:02 PM,08/26/2015 10:11:13 PM,08/26/2015 10:16:16 PM,08/26/2015 10:40:44 PM,08/26/2015 10:57:37 PM,Code 2 Transport,08/26/2015 11:51:48 PM,600 Block of KING ST,San Francisco,94107,B03,29,2275,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7705405549826, -122.401653062396)",152383813-75 +141180080,KM14,14039726,Medical Incident,04/28/2014,04/28/2014,04/28/2014 08:06:53 AM,04/28/2014 08:08:41 AM,04/28/2014 08:10:27 AM,04/28/2014 08:10:27 AM,04/28/2014 08:30:43 AM,04/28/2014 08:58:13 AM,04/28/2014 09:06:42 AM,Code 2 Transport,04/28/2014 09:30:47 AM,1100 Block of MARKET ST,,94102,B02,1,2309,,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141180080-KM14 +160990053,52,16039153,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:20:57 AM,04/08/2016 12:20:57 AM,04/08/2016 12:21:22 AM,04/08/2016 12:21:40 AM,04/08/2016 12:31:52 AM,04/08/2016 12:44:45 AM,04/08/2016 01:03:51 AM,Code 2 Transport,04/08/2016 01:45:33 AM,MISSION ST/CASTLE MANOR AV,San Francisco,94112,B09,32,6113,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7292278459628, -122.430809258615)",160990053-52 +153201381,E11,15122998,Alarms,11/16/2015,11/16/2015,11/16/2015 11:12:11 AM,11/16/2015 11:13:41 AM,11/16/2015 11:14:35 AM,11/16/2015 11:15:20 AM,11/16/2015 11:19:07 AM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Fire,11/16/2015 11:22:35 AM,300 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5452,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7586437839521, -122.431292238826)",153201381-E11 +150752500,53,15028844,Medical Incident,03/16/2015,03/16/2015,03/16/2015 04:08:17 PM,03/16/2015 04:09:38 PM,03/16/2015 04:10:03 PM,03/16/2015 04:10:52 PM,03/16/2015 04:14:02 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,No Merit,03/16/2015 04:19:21 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",150752500-53 +141751550,E01,14060370,Other,06/24/2014,06/24/2014,06/24/2014 12:50:32 PM,06/24/2014 12:51:20 PM,06/24/2014 12:51:42 PM,06/24/2014 12:53:40 PM,06/24/2014 12:57:16 PM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,Fire,06/24/2014 01:00:08 PM,MCALLISTER ST/LARKIN ST,San Francisco,94102,B02,3,1553,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",141751550-E01 +160990180,85,16039168,Medical Incident,04/08/2016,04/07/2016,04/08/2016 01:42:14 AM,04/08/2016 01:42:14 AM,04/08/2016 01:42:47 AM,04/08/2016 01:43:09 AM,04/08/2016 01:47:04 AM,04/08/2016 01:57:37 AM,04/08/2016 02:14:54 AM,Code 2 Transport,04/08/2016 02:42:22 AM,1700 Block of BLK BRYANT ST,San Francisco,94103,B02,29,5242,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7656309356296, -122.410985492978)",160990180-85 +143282498,RS2,14116367,Structure Fire,11/24/2014,11/24/2014,11/24/2014 04:06:28 PM,11/24/2014 04:07:13 PM,11/24/2014 04:07:27 PM,11/24/2014 04:09:15 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/24/2014 04:12:39 PM,CLAYTON ST/FELL ST,San Francisco,94117,B05,21,4523,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",143282498-RS2 +142311894,KM15,14080249,Medical Incident,08/19/2014,08/19/2014,08/19/2014 01:51:02 PM,08/19/2014 01:53:08 PM,08/19/2014 01:53:35 PM,08/19/2014 01:54:43 PM,08/19/2014 02:13:32 PM,08/19/2014 02:36:40 PM,08/19/2014 02:56:38 PM,Code 2 Transport,08/19/2014 03:27:25 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",142311894-KM15 +151302808,75,15049456,Medical Incident,05/10/2015,05/10/2015,05/10/2015 08:06:37 PM,05/10/2015 08:08:05 PM,05/10/2015 08:08:20 PM,05/10/2015 08:08:46 PM,05/10/2015 08:23:23 PM,05/10/2015 08:26:45 PM,05/10/2015 08:38:10 PM,Code 2 Transport,05/10/2015 09:08:50 PM,4600 Block of BALBOA ST,San Francisco,94121,B07,34,7312,2,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7752560862249, -122.50856215551)",151302808-75 +141613478,67,14055672,Medical Incident,06/10/2014,06/10/2014,06/10/2014 10:46:22 PM,06/10/2014 10:46:22 PM,06/10/2014 11:04:41 PM,06/10/2014 11:04:41 PM,06/10/2014 11:12:18 PM,06/10/2014 11:21:22 PM,06/10/2014 11:37:00 PM,Code 2 Transport,06/11/2014 12:21:50 AM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,945,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8083718015584, -122.414994322457)",141613478-67 +153281155,B04,15126186,Alarms,11/24/2015,11/24/2015,11/24/2015 10:14:05 AM,11/24/2015 10:15:46 AM,11/24/2015 10:16:21 AM,11/24/2015 10:16:57 AM,11/24/2015 10:19:31 AM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Fire,11/24/2015 10:22:10 AM,300 Block of EUCLID AVE,San Francisco,94118,B05,10,4373,3,3,3,false,Alarm,1,CHIEF,3,5,2,Presidio Heights,"(37.7841473276603, -122.451429128226)",153281155-B04 +150452101,D2,15017535,Outside Fire,02/14/2015,02/14/2015,02/14/2015 02:59:59 PM,02/14/2015 03:00:36 PM,02/14/2015 03:01:50 PM,02/14/2015 03:02:54 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 03:06:28 PM,10TH AV/CALIFORNIA ST,San Francisco,94118,B07,31,7137,3,3,3,false,Fire,1,CHIEF,5,7,1,Inner Richmond,"(37.7846209046597, -122.468839736978)",150452101-D2 +141420373,E36,14048570,Structure Fire,05/22/2014,05/21/2014,05/22/2014 04:56:37 AM,05/22/2014 04:56:37 AM,05/22/2014 04:56:46 AM,05/22/2014 04:59:12 AM,05/22/2014 05:02:45 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/22/2014 05:08:12 AM,15TH ST/MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,false,Alarm,1,ENGINE,1,2,9,Mission,"(37.7666736014927, -122.419825235405)",141420373-E36 +150891323,E13,15033923,Medical Incident,03/30/2015,03/30/2015,03/30/2015 11:37:39 AM,03/30/2015 11:38:08 AM,03/30/2015 11:38:40 AM,03/30/2015 11:39:43 AM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,No Merit,03/30/2015 11:44:04 AM,0 Block of CLAY ST,San Francisco,94111,B01,13,1133,3,3,3,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.795488462612, -122.396159020859)",150891323-E13 +141220282,E08,14041392,Alarms,05/02/2014,05/02/2014,05/02/2014 04:30:14 PM,05/02/2014 04:30:59 PM,05/02/2014 04:31:37 PM,05/02/2014 04:33:45 PM,05/02/2014 04:35:51 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,No Merit,05/02/2014 04:53:27 PM,400 Block of ILLINOIS ST,SAN FRANCISCO,94158,B03,8,2374,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7656728122297, -122.387971482123)",141220282-E08 +150413278,E13,15016118,Medical Incident,02/10/2015,02/10/2015,02/10/2015 07:50:41 PM,02/10/2015 07:52:11 PM,02/10/2015 07:52:29 PM,02/10/2015 07:53:38 PM,02/10/2015 07:55:45 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,No Merit,02/10/2015 07:58:08 PM,MISSION ST/BEALE ST,San Francisco,94105,B03,35,2116,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7911528075814, -122.395813422768)",150413278-E13 +160962357,64,16038060,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:06:42 PM,04/05/2016 03:06:42 PM,04/05/2016 03:06:51 PM,04/05/2016 03:07:20 PM,04/05/2016 03:18:59 PM,04/05/2016 04:00:20 PM,04/05/2016 04:30:13 PM,Code 2 Transport,04/05/2016 04:53:44 PM,2300 Block of CHESTNUT ST,San Francisco,94123,B04,16,4211,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8000298508197, -122.442000780052)",160962357-64 +141290236,E34,14043753,Medical Incident,05/09/2014,05/08/2014,05/09/2014 02:27:22 AM,05/09/2014 02:28:30 AM,05/09/2014 02:29:40 AM,05/09/2014 02:32:04 AM,05/09/2014 02:34:36 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Code 2 Transport,05/09/2014 02:42:50 AM,7500 Block of GEARY BLVD,San Francisco,94121,B07,34,7264,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",141290236-E34 +150690031,KM07,15026198,Medical Incident,03/10/2015,03/09/2015,03/10/2015 12:10:35 AM,03/10/2015 12:10:35 AM,03/10/2015 12:11:12 AM,03/10/2015 12:12:33 AM,03/10/2015 12:17:32 AM,03/10/2015 12:27:46 AM,03/10/2015 12:36:29 AM,Code 2 Transport,03/10/2015 12:48:06 AM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",150690031-KM07 +151950451,AM24,15074296,Medical Incident,07/14/2015,07/13/2015,07/14/2015 06:20:56 AM,07/14/2015 06:23:26 AM,07/14/2015 06:24:44 AM,07/14/2015 06:26:29 AM,07/14/2015 06:29:30 AM,07/14/2015 06:48:03 AM,07/14/2015 07:02:32 AM,Code 2 Transport,07/14/2015 07:30:37 AM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5259,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",151950451-AM24 +150592371,T01,15022609,Structure Fire,02/28/2015,02/28/2015,02/28/2015 04:09:51 PM,02/28/2015 04:10:32 PM,02/28/2015 04:10:46 PM,02/28/2015 04:12:13 PM,02/28/2015 04:15:52 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Fire,02/28/2015 04:17:16 PM,1200 Block of BUSH ST,San Francisco,94109,B04,3,1636,3,3,3,false,Alarm,1,TRUCK,6,4,3,Nob Hill,"(37.788955611099, -122.417825829364)",150592371-T01 +143163872,E03,14112094,Structure Fire,11/12/2014,11/12/2014,11/12/2014 10:51:36 PM,11/12/2014 10:53:01 PM,11/12/2014 10:53:35 PM,11/12/2014 10:54:19 PM,11/12/2014 10:55:59 PM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Fire,11/12/2014 11:05:53 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",143163872-E03 +141780100,E01,14061267,Alarms,06/27/2014,06/26/2014,06/27/2014 12:53:05 AM,06/27/2014 12:55:29 AM,06/27/2014 12:55:36 AM,06/27/2014 12:57:42 AM,06/27/2014 01:00:10 AM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/27/2014 01:31:56 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.780906077687, -122.413401299155)",141780100-E01 +142883709,E08,14101669,Medical Incident,10/15/2014,10/15/2014,10/15/2014 09:49:57 PM,10/15/2014 09:51:16 PM,10/15/2014 09:52:37 PM,10/15/2014 09:52:46 PM,10/15/2014 09:54:24 PM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Code 2 Transport,10/15/2014 10:11:50 PM,3RD ST/PERRY ST,San Francisco,94107,B03,8,2174,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7821191215942, -122.396841427362)",142883709-E08 +152232859,B04,15085072,Alarms,08/11/2015,08/11/2015,08/11/2015 05:02:07 PM,08/11/2015 05:02:57 PM,08/11/2015 05:03:09 PM,08/11/2015 05:05:52 PM,08/11/2015 05:11:39 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Fire,08/11/2015 05:54:48 PM,300 Block of LOWER FORT MASON ST,Fort Mason,94123,B99,51,3343,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8058923703038, -122.431246520303)",152232859-B04 +151071605,E25,15040461,Medical Incident,04/17/2015,04/17/2015,04/17/2015 11:43:15 AM,04/17/2015 11:44:37 AM,04/17/2015 11:48:08 AM,04/17/2015 11:50:02 AM,04/17/2015 11:56:58 AM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,Code 2 Transport,04/17/2015 12:26:00 PM,2000 Block of EVANS AVE,San Francisco,94124,B10,9,6422,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7477614969563, -122.396439770818)",151071605-E25 +142293378,E03,14079717,Medical Incident,08/17/2014,08/17/2014,08/17/2014 08:56:02 PM,08/17/2014 08:57:56 PM,08/17/2014 08:58:49 PM,08/17/2014 08:59:21 PM,08/17/2014 09:02:13 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,No Merit,08/17/2014 09:04:56 PM,TURK ST/HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",142293378-E03 +143471908,62,14123806,Medical Incident,12/13/2014,12/13/2014,12/13/2014 01:43:55 PM,12/13/2014 01:44:48 PM,12/13/2014 01:45:29 PM,12/13/2014 01:45:46 PM,12/13/2014 01:50:41 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,Unable to Locate,12/13/2014 01:54:43 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",143471908-62 +143353646,53,14118875,Medical Incident,12/01/2014,12/01/2014,12/01/2014 09:32:06 PM,12/01/2014 09:32:06 PM,12/01/2014 09:32:40 PM,12/01/2014 09:32:50 PM,12/01/2014 09:38:06 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Unable to Locate,12/01/2014 09:40:18 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",143353646-53 +141641875,KM12,14056557,Medical Incident,06/13/2014,06/13/2014,06/13/2014 02:06:23 PM,06/13/2014 02:07:52 PM,06/13/2014 02:08:38 PM,06/13/2014 02:09:23 PM,06/13/2014 02:19:32 PM,06/13/2014 02:50:12 PM,06/13/2014 02:50:14 PM,Code 2 Transport,06/13/2014 03:22:16 PM,600 Block of FLORIDA ST,San Francisco,94110,B02,7,5426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7610597892071, -122.411095051828)",141641875-KM12 +152433690,BE1,15092859,Structure Fire,08/31/2015,08/31/2015,08/31/2015 08:36:28 PM,08/31/2015 08:36:41 PM,08/31/2015 08:47:44 PM,08/31/2015 08:50:36 PM,08/31/2015 09:01:54 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Fire,08/31/2015 11:03:33 PM,1000 Block of CLAYTON ST,San Francisco,94117,B05,12,5151,3,3,3,false,Fire,2,SUPPORT,20,5,5,Haight Ashbury,"(37.7639371081016, -122.447310588487)",152433690-BE1 +152874153,E44,15110459,Medical Incident,10/14/2015,10/14/2015,10/14/2015 09:49:28 PM,10/14/2015 09:49:46 PM,10/14/2015 09:51:01 PM,10/14/2015 09:52:18 PM,10/14/2015 09:56:53 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 10:05:26 PM,900 Block of OLMSTEAD ST,San Francisco,94134,B09,42,6321,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.7203295039017, -122.410958859199)",152874153-E44 +143121437,RS2,14110482,Traffic Collision,11/08/2014,11/08/2014,11/08/2014 11:49:38 AM,11/08/2014 11:49:38 AM,11/08/2014 11:51:49 AM,11/08/2014 11:53:03 AM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Code 3 Transport,11/08/2014 12:04:00 PM,100 Block of VERMONT ST,San Francisco,94103,B02,29,2355,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,7,2,10,Mission,"(37.7678897698094, -122.404881386108)",143121437-RS2 +143122727,B01,14110611,Alarms,11/08/2014,11/08/2014,11/08/2014 05:53:01 PM,11/08/2014 05:54:03 PM,11/08/2014 05:54:25 PM,11/08/2014 05:54:35 PM,11/08/2014 05:57:21 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/08/2014 06:02:34 PM,300 Block of GRANT AVE,San Francisco,94108,B01,13,1315,3,3,3,false,Alarm,1,CHIEF,1,1,3,Financial District/South Beach,"(37.7903312930658, -122.405480762269)",143122727-B01 +160954121,AM20,16037830,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:21:08 PM,04/04/2016 11:21:08 PM,04/04/2016 11:21:35 PM,04/04/2016 11:22:50 PM,04/04/2016 11:28:46 PM,04/04/2016 11:49:50 PM,04/05/2016 12:10:51 AM,Code 2 Transport,04/05/2016 12:38:28 AM,STANFORD ST/TOWNSEND ST,San Francisco,94107,B03,8,2153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7801824494501, -122.391064585451)",160954121-AM20 +152671810,RS1,15102271,Medical Incident,09/24/2015,09/24/2015,09/24/2015 12:30:25 PM,09/24/2015 12:30:25 PM,09/24/2015 12:30:48 PM,09/24/2015 12:32:11 PM,09/24/2015 12:35:17 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,Code 2 Transport,09/24/2015 12:36:48 PM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",152671810-RS1 +151862188,E28,15071075,Medical Incident,07/05/2015,07/05/2015,07/05/2015 02:59:47 PM,07/05/2015 03:00:36 PM,07/05/2015 03:01:05 PM,07/05/2015 03:01:36 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Code 2 Transport,07/05/2015 03:04:46 PM,COLUMBUS AV/LOMBARD ST,San Francisco,94133,B01,28,1423,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8027432009748, -122.413718749936)",151862188-E28 +160962628,KM11,16038079,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:12:21 PM,04/05/2016 04:13:13 PM,04/05/2016 04:13:25 PM,04/05/2016 04:13:57 PM,04/05/2016 04:19:05 PM,04/05/2016 04:41:34 PM,04/05/2016 04:59:11 PM,Code 2 Transport,04/05/2016 05:29:27 PM,400 Block of MANSELL ST,San Francisco,94134,B10,44,626,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,9,Portola,"(37.7204133129314, -122.406069423364)",160962628-KM11 +153362694,T01,15129312,Citizen Assist / Service Call,12/02/2015,12/02/2015,12/02/2015 04:29:23 PM,12/02/2015 04:30:35 PM,12/02/2015 04:56:17 PM,12/02/2015 04:58:54 PM,12/02/2015 05:04:44 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Fire,12/02/2015 06:09:29 PM,300 Block of BEALE ST,San Francisco,94105,B03,35,2122,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7880321954757, -122.392000314933)",153362694-T01 +160963686,63,16038178,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:30:28 PM,04/05/2016 08:31:12 PM,04/05/2016 08:31:19 PM,04/05/2016 08:32:16 PM,04/05/2016 08:36:13 PM,04/05/2016 08:56:18 PM,04/05/2016 09:18:51 PM,Code 2 Transport,04/05/2016 09:36:49 PM,1500 Block of POST ST,San Francisco,94109,B04,38,3364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160963686-63 +160921249,89,16036395,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:48:33 AM,04/01/2016 10:48:33 AM,04/01/2016 10:49:03 AM,04/01/2016 10:53:50 AM,04/01/2016 10:54:55 AM,04/01/2016 11:14:36 AM,04/01/2016 11:28:02 AM,Other,04/01/2016 12:38:42 PM,300 Block of AMBER DR,San Francisco,94131,B06,26,8164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7445636381979, -122.441704934967)",160921249-89 +142410389,67,14083726,Medical Incident,08/29/2014,08/28/2014,08/29/2014 03:37:49 AM,08/29/2014 03:39:15 AM,08/29/2014 03:39:26 AM,08/29/2014 03:41:32 AM,08/29/2014 03:48:56 AM,08/29/2014 04:20:28 AM,08/29/2014 04:52:17 AM,Code 2 Transport,08/29/2014 05:28:15 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",142410389-67 +160923017,58,16036560,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 06:31:37 PM,04/01/2016 06:32:20 PM,04/01/2016 06:46:10 PM,04/01/2016 06:46:10 PM,04/01/2016 06:46:10 PM,04/01/2016 07:18:44 PM,04/01/2016 07:23:05 PM,Other,04/01/2016 08:15:51 PM,CESAR CHAVEZ ST/YORK ST,San Francisco,94110,B06,9,5621,2,3,3,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7484050013611, -122.407882029523)",160923017-58 +151320112,E11,15049907,Medical Incident,05/12/2015,05/11/2015,05/12/2015 12:55:03 AM,05/12/2015 12:55:03 AM,05/12/2015 12:55:12 AM,05/12/2015 12:57:42 AM,05/12/2015 12:57:42 AM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,Code 2 Transport,05/12/2015 01:07:08 AM,3900 Block of CESAR CHAVEZ ST,San Francisco,94131,B06,11,5547,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7476849416066, -122.428162883346)",151320112-E11 +160990009,72,16039151,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:59:21 PM,04/08/2016 12:02:21 AM,04/08/2016 12:02:34 AM,04/08/2016 12:02:44 AM,04/08/2016 12:20:40 AM,04/08/2016 12:34:29 AM,04/08/2016 12:46:16 AM,Code 2 Transport,04/08/2016 01:46:05 AM,VAN DYKE AV/KEITH ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7280990808493, -122.390547463769)",160990009-72 +160972676,KM06,16038492,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:23:17 PM,04/06/2016 03:24:55 PM,04/06/2016 03:25:10 PM,04/06/2016 03:25:41 PM,04/06/2016 03:30:12 PM,04/06/2016 03:45:43 PM,04/06/2016 03:57:29 PM,Code 2 Transport,04/06/2016 04:43:28 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160972676-KM06 +151711334,E31,15065309,Medical Incident,06/20/2015,06/20/2015,06/20/2015 11:27:43 AM,06/20/2015 11:31:34 AM,06/20/2015 11:32:39 AM,06/20/2015 11:33:10 AM,06/20/2015 11:37:31 AM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Code 2 Transport,06/20/2015 11:50:14 AM,1500 Block of CLEMENT ST,San Francisco,94118,B07,31,7153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7824864414047, -122.475775257372)",151711334-E31 +160983390,72,16039082,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:30:31 PM,04/07/2016 07:30:31 PM,04/07/2016 07:31:45 PM,04/07/2016 07:32:04 PM,04/07/2016 08:21:11 PM,04/07/2016 08:21:24 PM,04/07/2016 08:21:27 PM,Code 2 Transport,04/07/2016 09:20:03 PM,600 Block of 25TH ST,San Francisco,94124,B10,25,2732,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7529754653558, -122.384393472823)",160983390-72 +143471567,81,14123766,Medical Incident,12/13/2014,12/13/2014,12/13/2014 12:06:36 PM,12/13/2014 12:07:30 PM,12/13/2014 12:08:52 PM,12/13/2014 12:09:11 PM,12/13/2014 12:39:05 PM,12/13/2014 01:05:48 PM,12/13/2014 01:29:12 PM,Code 2 Transport,12/13/2014 02:12:42 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",143471567-81 +141000316,E25,14033859,Medical Incident,04/10/2014,04/10/2014,04/10/2014 05:51:44 PM,04/10/2014 05:53:11 PM,04/10/2014 05:54:49 PM,04/10/2014 05:56:32 PM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Code 2 Transport,04/10/2014 05:59:00 PM,200 Block of ALEMANY BLVD,SAN FRANCISCO,94110,B10,25,2612,,3,3,false,Potentially Life-Threatening,1,ENGINE,3,10,9,Bernal Heights,"(37.7351501389095, -122.410360631063)",141000316-E25 +151061904,63,15040047,Medical Incident,04/16/2015,04/16/2015,04/16/2015 01:02:06 PM,04/16/2015 01:03:49 PM,04/16/2015 01:04:25 PM,04/16/2015 01:04:38 PM,04/16/2015 01:08:20 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Patient Declined Transport,04/16/2015 01:44:03 PM,22ND ST/FOLSOM ST,San Francisco,94110,B06,7,5473,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7556994645677, -122.414387602502)",151061904-63 +141800268,E18,14062061,Medical Incident,06/29/2014,06/28/2014,06/29/2014 01:24:49 AM,06/29/2014 01:28:18 AM,06/29/2014 01:30:14 AM,06/29/2014 01:35:18 AM,06/29/2014 01:35:18 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Patient Declined Transport,06/29/2014 01:38:05 AM,1700 Block of 42ND AVE,San Francisco,94122,B08,23,7651,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7540751309451, -122.501252648169)",141800268-E18 +142650391,74,14092595,Medical Incident,09/22/2014,09/21/2014,09/22/2014 04:37:37 AM,09/22/2014 04:39:05 AM,09/22/2014 04:40:40 AM,09/22/2014 04:40:57 AM,09/22/2014 04:51:12 AM,09/22/2014 05:17:39 AM,09/22/2014 05:31:11 AM,Code 2 Transport,09/22/2014 05:54:18 AM,100 Block of PRENTISS ST,San Francisco,94110,B10,32,5727,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7408152927988, -122.411946068655)",142650391-74 +152222177,T01,15084630,Medical Incident,08/10/2015,08/10/2015,08/10/2015 03:05:47 PM,08/10/2015 03:05:47 PM,08/10/2015 03:06:15 PM,08/10/2015 03:07:47 PM,08/10/2015 03:08:59 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Code 2 Transport,08/10/2015 03:21:30 PM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,A,E,3,false,Non Life-threatening,1,TRUCK,1,3,6,South of Market,"(37.7792067028319, -122.402159463556)",152222177-T01 +151202466,E08,15045480,Medical Incident,04/30/2015,04/30/2015,04/30/2015 03:35:47 PM,04/30/2015 03:36:18 PM,04/30/2015 03:38:37 PM,04/30/2015 03:39:39 PM,04/30/2015 03:43:29 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,No Merit,04/30/2015 03:47:16 PM,6TH ST/NATOMA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7801620260598, -122.407691417119)",151202466-E08 +151610760,E28,15061427,Medical Incident,06/10/2015,06/10/2015,06/10/2015 08:15:33 AM,06/10/2015 08:17:26 AM,06/10/2015 08:17:39 AM,06/10/2015 08:20:13 AM,06/10/2015 08:23:22 AM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,No Merit,06/10/2015 08:25:44 AM,BAY ST/STOCKTON ST,San Francisco,94133,B01,28,1341,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8060277167068, -122.410310842828)",151610760-E28 +160972065,54,16038428,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:12:26 PM,04/06/2016 01:13:40 PM,04/06/2016 01:15:01 PM,04/06/2016 01:16:21 PM,04/06/2016 01:26:35 PM,04/06/2016 01:37:20 PM,04/06/2016 01:46:24 PM,Code 2 Transport,04/06/2016 02:10:22 PM,KEARNY ST/GEARY ST,San Francisco,94108,B01,1,1241,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7879630907543, -122.403491776385)",160972065-54 +161000688,71,16039647,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:05:52 AM,04/09/2016 07:07:45 AM,04/09/2016 07:08:30 AM,04/09/2016 07:08:44 AM,04/09/2016 07:15:23 AM,04/09/2016 07:32:21 AM,04/09/2016 07:40:40 AM,Code 2 Transport,04/09/2016 08:07:58 AM,1100 Block of SCOTT ST,San Francisco,94115,B05,5,4133,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7803432529788, -122.437097623047)",161000688-71 +150971027,E37,15036694,Alarms,04/07/2015,04/07/2015,04/07/2015 09:52:32 AM,04/07/2015 09:53:41 AM,04/07/2015 09:53:47 AM,04/07/2015 09:55:27 AM,04/07/2015 09:57:26 AM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Fire,04/07/2015 10:05:40 AM,1000 Block of MISSISSIPPI ST,San Francisco,94107,B10,37,2614,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7529776205732, -122.393736653052)",150971027-E37 +160983687,76,16039111,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:09:48 PM,04/07/2016 09:09:48 PM,04/07/2016 09:10:03 PM,04/07/2016 09:11:10 PM,04/07/2016 09:15:31 PM,04/07/2016 09:18:03 PM,04/07/2016 09:25:20 PM,Code 2 Transport,04/07/2016 09:49:01 PM,100 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786395920196, -122.410120840963)",160983687-76 +160970578,71,16038292,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:03:59 AM,04/06/2016 07:03:59 AM,04/06/2016 07:04:14 AM,04/06/2016 07:04:33 AM,04/06/2016 07:15:26 AM,04/06/2016 07:32:05 AM,04/06/2016 07:54:22 AM,Code 2 Transport,04/06/2016 08:15:01 AM,2200 Block of LOMBARD ST,San Francisco,94123,B04,16,3566,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7994131607449, -122.438492113191)",160970578-71 +160991596,KM09,16039283,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:38:58 PM,04/08/2016 12:38:58 PM,04/08/2016 12:39:13 PM,04/08/2016 12:40:06 PM,04/08/2016 12:54:34 PM,04/08/2016 01:13:47 PM,04/08/2016 01:32:56 PM,Code 2 Transport,04/08/2016 02:04:44 PM,THE EMBARCADERO SOU/HOWARD ST,San Francisco,94105,B03,35,2131,2,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7918502464418, -122.391360186894)",160991596-KM09 +150680086,E05,15025830,Medical Incident,03/09/2015,03/08/2015,03/09/2015 12:50:06 AM,03/09/2015 12:52:00 AM,03/09/2015 12:52:38 AM,03/09/2015 12:54:20 AM,03/09/2015 12:55:25 AM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Fire,03/09/2015 01:04:22 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",150680086-E05 +142932415,E08,14103427,Structure Fire,10/20/2014,10/20/2014,10/20/2014 04:42:32 PM,10/20/2014 04:42:32 PM,10/20/2014 04:43:55 PM,10/20/2014 04:43:55 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 04:45:19 PM,6TH ST/HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7797389055689, -122.407159489165)",142932415-E08 +160930776,75,16036747,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:03:47 AM,04/02/2016 08:06:58 AM,04/02/2016 08:09:58 AM,04/02/2016 08:10:53 AM,04/02/2016 08:21:56 AM,04/02/2016 08:27:25 AM,04/02/2016 08:34:04 AM,Code 2 Transport,04/02/2016 09:08:07 AM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160930776-75 +151170566,E36,15044108,Structure Fire,04/27/2015,04/26/2015,04/27/2015 07:11:24 AM,04/27/2015 07:11:24 AM,04/27/2015 07:13:52 AM,04/27/2015 07:16:23 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 07:24:19 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,3,3,3,true,Alarm,1,ENGINE,12,2,9,Mission,"(37.7642361189447, -122.419659842408)",151170566-E36 +152620922,E03,15100066,Medical Incident,09/19/2015,09/19/2015,09/19/2015 08:16:35 AM,09/19/2015 08:17:49 AM,09/19/2015 08:18:23 AM,09/19/2015 08:18:53 AM,09/19/2015 08:23:38 AM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/19/2015 08:27:45 AM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",152620922-E03 +160982431,76,16038980,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:11:38 PM,04/07/2016 03:12:20 PM,04/07/2016 03:12:43 PM,04/07/2016 03:12:49 PM,04/07/2016 03:18:53 PM,04/07/2016 03:27:35 PM,04/07/2016 03:41:29 PM,Code 2 Transport,04/07/2016 03:59:19 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160982431-76 +150172257,E07,15006774,Medical Incident,01/17/2015,01/17/2015,01/17/2015 03:34:05 PM,01/17/2015 03:36:29 PM,01/17/2015 03:37:36 PM,01/17/2015 03:39:07 PM,01/17/2015 03:40:36 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Code 2 Transport,01/17/2015 03:45:11 PM,FOLSOM ST/24TH ST,San Francisco,94110,B06,7,5526,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",150172257-E07 +151972339,76,15075186,Medical Incident,07/16/2015,07/16/2015,07/16/2015 04:03:16 PM,07/16/2015 04:04:33 PM,07/16/2015 04:05:16 PM,07/16/2015 04:05:41 PM,07/16/2015 04:08:28 PM,07/16/2015 04:17:51 PM,07/16/2015 04:39:39 PM,Code 2 Transport,07/16/2015 04:52:20 PM,300 Block of BARTLETT ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7513677227555, -122.419547489612)",151972339-76 +160952867,KM05,16037717,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:05:27 PM,04/04/2016 05:07:50 PM,04/04/2016 05:08:33 PM,04/04/2016 05:09:11 PM,04/04/2016 05:15:45 PM,04/04/2016 05:37:51 PM,04/04/2016 05:52:30 PM,Code 2 Transport,04/04/2016 06:15:23 PM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",160952867-KM05 +143501324,81,14124963,Medical Incident,12/16/2014,12/16/2014,12/16/2014 11:24:59 AM,12/16/2014 11:26:39 AM,12/16/2014 11:28:42 AM,12/16/2014 11:28:42 AM,12/16/2014 11:40:33 AM,04/25/2016 01:13:24 PM,04/25/2016 01:13:24 PM,Unable to Locate,12/16/2014 11:43:38 AM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695711762103, -122.449920089485)",143501324-81 +152093125,E37,15079770,Medical Incident,07/28/2015,07/28/2015,07/28/2015 06:50:06 PM,07/28/2015 06:51:12 PM,07/28/2015 06:53:52 PM,07/28/2015 07:01:48 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Patient Declined Transport,07/28/2015 07:03:25 PM,20TH ST/3RD ST,San Francisco,94107,B10,37,2665,2,2,2,false,Non Life-threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",152093125-E37 +141902251,75,14065884,Medical Incident,07/09/2014,07/09/2014,07/09/2014 03:27:38 PM,07/09/2014 03:28:37 PM,07/09/2014 03:29:09 PM,07/09/2014 03:29:18 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Code 2 Transport,07/09/2014 03:31:00 PM,100 Block of WEBSTER ST,San Francisco,94117,B02,6,3524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Hayes Valley,"(37.7716078589058, -122.428729400943)",141902251-75 +160940396,62,16037132,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:22:02 AM,04/03/2016 02:22:02 AM,04/03/2016 02:22:54 AM,04/03/2016 02:23:04 AM,04/03/2016 02:39:32 AM,04/03/2016 02:59:57 AM,04/03/2016 03:24:06 AM,Code 2 Transport,04/03/2016 03:42:52 AM,FOLSOM ST/11TH ST,San Francisco,94103,B02,36,5114,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.771863706441, -122.414026708032)",160940396-62 +141240236,T11,14042075,Medical Incident,05/04/2014,05/04/2014,05/04/2014 05:01:36 PM,05/04/2014 05:03:34 PM,05/04/2014 05:04:31 PM,05/04/2014 05:06:53 PM,05/04/2014 05:08:25 PM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Code 2 Transport,05/04/2014 05:12:44 PM,1600 Block of VALENCIA ST,SAN FRANCISCO,94110,B06,11,5611,,3,3,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Bernal Heights,"(37.7459784515022, -122.420143715406)",141240236-T11 +150660733,E13,15025148,Structure Fire,03/07/2015,03/06/2015,03/07/2015 07:28:28 AM,03/07/2015 07:28:34 AM,03/07/2015 07:28:43 AM,03/07/2015 07:30:09 AM,03/07/2015 07:32:13 AM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Fire,03/07/2015 07:32:36 AM,DAVIS ST/BROADWAY,San Francisco,94111,B01,13,1131,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7988809653389, -122.398695702123)",150660733-E13 +152093137,87,15079772,Medical Incident,07/28/2015,07/28/2015,07/28/2015 06:53:26 PM,07/28/2015 06:54:46 PM,07/28/2015 06:55:31 PM,07/28/2015 06:55:51 PM,07/28/2015 07:05:01 PM,07/28/2015 07:08:24 PM,07/28/2015 07:20:26 PM,Code 2 Transport,07/28/2015 07:43:25 PM,2100 Block of MARKET ST,San Francisco,94114,B05,6,5231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",152093137-87 +160940557,60,16037148,Medical Incident,04/03/2016,04/02/2016,04/03/2016 03:55:37 AM,04/03/2016 03:55:37 AM,04/03/2016 03:56:04 AM,04/03/2016 03:56:19 AM,04/03/2016 04:03:20 AM,04/03/2016 04:27:04 AM,04/03/2016 04:35:20 AM,Code 2 Transport,04/03/2016 05:07:39 AM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",160940557-60 +152841422,E34,15109028,Traffic Collision,10/11/2015,10/11/2015,10/11/2015 11:00:24 AM,10/11/2015 11:00:24 AM,10/11/2015 11:01:14 AM,10/11/2015 11:01:53 AM,10/11/2015 11:03:20 AM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Patient Declined Transport,10/11/2015 11:25:35 AM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7723244294895, -122.510034921211)",152841422-E34 +150073222,E36,15002832,Alarms,01/07/2015,01/07/2015,01/07/2015 07:24:28 PM,01/07/2015 07:26:01 PM,01/07/2015 07:26:44 PM,01/07/2015 07:27:54 PM,01/07/2015 07:29:27 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Fire,01/07/2015 07:36:17 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7686566965213, -122.420075902774)",150073222-E36 +160930466,64,16036713,Medical Incident,04/02/2016,04/01/2016,04/02/2016 03:32:41 AM,04/02/2016 03:34:16 AM,04/02/2016 03:34:39 AM,04/02/2016 03:38:32 AM,04/02/2016 03:46:19 AM,04/02/2016 04:06:09 AM,04/02/2016 04:25:48 AM,Code 2 Transport,04/02/2016 04:52:39 AM,1600 Block of 9TH AVE,San Francisco,94122,B08,22,7335,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7575102196308, -122.465924011653)",160930466-64 +150320354,B04,15012223,Alarms,02/01/2015,01/31/2015,02/01/2015 02:04:54 AM,02/01/2015 02:06:07 AM,02/01/2015 02:06:19 AM,02/01/2015 02:07:59 AM,02/01/2015 02:15:35 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,02/01/2015 02:21:20 AM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,3,3,3,false,Alarm,1,CHIEF,3,7,2,Presidio,"(37.8013251294544, -122.453498244358)",150320354-B04 +153391340,KM06,15130416,Medical Incident,12/05/2015,12/05/2015,12/05/2015 10:20:48 AM,12/05/2015 10:23:02 AM,12/05/2015 10:23:21 AM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Code 2 Transport,12/05/2015 10:24:11 AM,500 Block of 5TH ST,San Francisco,94107,B07,31,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",153391340-KM06 +160951915,57,16037642,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:23:34 PM,04/04/2016 01:23:34 PM,04/04/2016 01:49:39 PM,04/04/2016 01:49:50 PM,04/04/2016 02:09:48 PM,04/04/2016 02:31:54 PM,04/04/2016 02:49:28 PM,Code 2 Transport,04/04/2016 03:23:34 PM,1200 Block of LA PLAYA,San Francisco,94122,B08,23,7722,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7630908951705, -122.509266553866)",160951915-57 +152141474,73,15081468,Medical Incident,08/02/2015,08/02/2015,08/02/2015 12:04:19 PM,08/02/2015 12:05:46 PM,08/02/2015 12:06:23 PM,08/02/2015 12:06:59 PM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Cancelled,08/02/2015 12:10:50 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",152141474-73 +152401377,E05,15091373,Structure Fire,08/28/2015,08/28/2015,08/28/2015 10:15:17 AM,08/28/2015 10:18:36 AM,08/28/2015 10:19:17 AM,08/28/2015 10:19:35 AM,08/28/2015 10:21:02 AM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/28/2015 10:30:36 AM,ALICE B TOKLAS PL/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7854330360145, -122.419638990474)",152401377-E05 +161001004,74,16039681,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 09:35:29 AM,04/09/2016 09:35:29 AM,04/09/2016 09:35:45 AM,04/09/2016 09:35:52 AM,04/09/2016 09:41:33 AM,04/09/2016 10:05:36 AM,04/09/2016 10:18:54 AM,Code 2 Transport,04/09/2016 10:55:04 AM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",161001004-74 +151523026,E11,15058000,Medical Incident,06/01/2015,06/01/2015,06/01/2015 07:03:41 PM,06/01/2015 07:04:22 PM,06/01/2015 07:06:34 PM,06/01/2015 07:06:34 PM,06/01/2015 07:08:49 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Code 3 Transport,06/01/2015 07:29:08 PM,1100 Block of GUERRERO ST,San Francisco,94110,B06,11,5524,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Mission,"(37.7527637339649, -122.423063371439)",151523026-E11 +160971500,KM11,16038377,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:06:18 AM,04/06/2016 11:06:49 AM,04/06/2016 11:07:40 AM,04/06/2016 11:08:37 AM,04/06/2016 11:15:32 AM,04/06/2016 11:54:32 AM,04/06/2016 12:14:48 PM,Code 2 Transport,04/06/2016 12:42:12 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160971500-KM11 +161003375,72,16039966,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:12:06 PM,04/09/2016 10:13:00 PM,04/09/2016 10:13:19 PM,04/09/2016 10:13:24 PM,04/09/2016 11:22:29 PM,04/09/2016 11:22:39 PM,04/09/2016 11:48:32 PM,Code 2 Transport,04/10/2016 12:30:59 AM,1600 Block of 10TH AVE,San Francisco,94122,B08,22,7335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7574688628424, -122.466858392243)",161003375-72 +150271088,88,15010349,Medical Incident,01/27/2015,01/27/2015,01/27/2015 09:55:57 AM,01/27/2015 09:56:43 AM,01/27/2015 09:57:04 AM,01/27/2015 10:03:13 AM,01/27/2015 10:08:06 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Patient Declined Transport,01/27/2015 11:19:37 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",150271088-88 +152213087,56,15084329,Medical Incident,08/09/2015,08/09/2015,08/09/2015 06:49:22 PM,08/09/2015 06:51:23 PM,08/09/2015 06:52:27 PM,08/09/2015 06:52:37 PM,08/09/2015 06:58:58 PM,08/09/2015 07:15:25 PM,08/09/2015 07:34:52 PM,Code 2 Transport,08/09/2015 08:10:10 PM,2100 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2631,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7495954457365, -122.399678768071)",152213087-56 +160960873,81,16037928,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:01:34 AM,04/05/2016 09:05:24 AM,04/05/2016 09:06:10 AM,04/05/2016 09:07:00 AM,04/05/2016 09:15:38 AM,04/05/2016 09:20:56 AM,04/05/2016 09:33:09 AM,Code 2 Transport,04/05/2016 09:50:37 AM,TURK ST/LARKIN ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.782378943359, -122.41733888153)",160960873-81 +141762874,T13,14060841,Structure Fire,06/25/2014,06/25/2014,06/25/2014 06:20:44 PM,06/25/2014 06:20:44 PM,06/25/2014 06:21:21 PM,06/25/2014 06:22:19 PM,06/25/2014 06:22:19 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Fire,06/25/2014 06:22:43 PM,500 Block of MARKET ST,San Francisco,94105,B03,1,2144,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",141762874-T13 +152633354,E43,15100817,Medical Incident,09/20/2015,09/20/2015,09/20/2015 07:43:40 PM,09/20/2015 07:46:48 PM,09/20/2015 07:50:13 PM,09/20/2015 07:51:17 PM,09/20/2015 07:55:28 PM,09/20/2015 08:10:35 PM,04/25/2016 01:08:14 PM,Code 3 Transport,09/20/2015 08:39:29 PM,1500 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",152633354-E43 +151270453,AM24,15048028,Medical Incident,05/07/2015,05/06/2015,05/07/2015 05:23:15 AM,05/07/2015 05:24:34 AM,05/07/2015 05:25:03 AM,05/07/2015 05:25:55 AM,05/07/2015 05:27:57 AM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Medical Examiner,05/07/2015 06:25:51 AM,600 Block of POST ST,San Francisco,94109,B01,3,1451,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7877566203397, -122.413055713332)",151270453-AM24 +152971232,KM02,15114004,Medical Incident,10/24/2015,10/24/2015,10/24/2015 10:20:49 AM,10/24/2015 10:20:49 AM,10/24/2015 10:21:13 AM,10/24/2015 10:22:23 AM,10/24/2015 10:28:21 AM,10/24/2015 10:34:53 AM,10/24/2015 11:08:15 AM,Code 2 Transport,10/24/2015 11:24:12 AM,500 Block of DAVIS ST,San Francisco,94111,B01,13,1132,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7979952301231, -122.398446080847)",152971232-KM02 +151823067,EMS10,15069585,Water Rescue,07/01/2015,07/01/2015,07/01/2015 05:56:12 PM,07/01/2015 05:57:51 PM,07/01/2015 06:01:54 PM,07/01/2015 06:01:54 PM,07/01/2015 06:15:06 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Medical Examiner,07/01/2015 06:24:34 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,CHIEF,6,7,2,Presidio,"(37.8066581989584, -122.47471662098)",151823067-EMS10 +143080553,E17,14108884,Traffic Collision,11/04/2014,11/03/2014,11/04/2014 06:52:57 AM,11/04/2014 06:52:57 AM,11/04/2014 06:53:08 AM,11/04/2014 06:54:07 AM,11/04/2014 06:56:26 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 07:00:05 AM,OAKDALE AV/LANE ST,San Francisco,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7335339618641, -122.388481996795)",143080553-E17 +152042117,RS2,15077749,Medical Incident,07/23/2015,07/23/2015,07/23/2015 02:50:30 PM,07/23/2015 02:52:27 PM,07/23/2015 02:53:02 PM,07/23/2015 02:53:38 PM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,Code 2 Transport,07/23/2015 02:56:42 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",152042117-RS2 +160951990,63,16037652,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:39:23 PM,04/04/2016 01:39:23 PM,04/04/2016 01:48:08 PM,04/04/2016 01:48:36 PM,04/04/2016 02:13:55 PM,04/04/2016 02:43:03 PM,04/04/2016 02:59:59 PM,Code 2 Transport,04/04/2016 03:36:27 PM,300 Block of ARBALLO DR,San Francisco,94132,B08,19,8582,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",160951990-63 +152883638,E08,15110808,Medical Incident,10/15/2015,10/15/2015,10/15/2015 08:45:17 PM,10/15/2015 08:45:17 PM,10/15/2015 08:45:36 PM,10/15/2015 08:47:34 PM,10/15/2015 08:49:01 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Code 2 Transport,10/15/2015 08:56:47 PM,6TH ST/BRYANT ST,San Francisco,94107,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7760393195221, -122.402524096783)",152883638-E08 +161000707,KM08,16039649,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:19:59 AM,04/09/2016 07:20:21 AM,04/09/2016 07:20:46 AM,04/09/2016 07:23:05 AM,04/09/2016 07:28:25 AM,04/09/2016 07:48:00 AM,04/09/2016 08:05:57 AM,Code 2 Transport,04/09/2016 08:33:16 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",161000707-KM08 +160981483,54,16038879,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:08:18 AM,04/07/2016 11:10:22 AM,04/07/2016 11:11:43 AM,04/07/2016 11:11:55 AM,04/07/2016 11:18:31 AM,04/07/2016 11:30:14 AM,04/07/2016 11:51:46 AM,Code 2 Transport,04/07/2016 12:27:42 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160981483-54 +143423252,E03,14121673,Medical Incident,12/08/2014,12/08/2014,12/08/2014 06:59:51 PM,12/08/2014 07:01:23 PM,12/08/2014 07:04:50 PM,12/08/2014 07:04:50 PM,12/08/2014 07:09:58 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 07:22:20 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",143423252-E03 +141403534,E23,14048157,Electrical Hazard,05/20/2014,05/20/2014,05/20/2014 10:27:29 PM,05/20/2014 10:29:16 PM,05/20/2014 10:29:31 PM,05/20/2014 10:31:03 PM,05/20/2014 10:39:47 PM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,Fire,05/20/2014 11:21:54 PM,2100 Block of 46TH AVE,San Francisco,94116,B08,23,7714,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7464385384362, -122.504881060231)",141403534-E23 +150780522,61,15029789,Medical Incident,03/19/2015,03/18/2015,03/19/2015 06:00:05 AM,03/19/2015 06:01:28 AM,03/19/2015 06:01:40 AM,03/19/2015 06:01:59 AM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Code 2 Transport,03/19/2015 06:04:43 AM,900 Block of FOLSOM ST,San Francisco,94103,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7798915874961, -122.403958049432)",150780522-61 +142780639,B10,14097693,Alarms,10/05/2014,10/04/2014,10/05/2014 04:20:26 AM,10/05/2014 04:21:52 AM,10/05/2014 04:22:07 AM,10/05/2014 04:22:48 AM,10/05/2014 04:30:18 AM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Fire,10/05/2014 04:40:37 AM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",142780639-B10 +150412761,61,15016073,Structure Fire,02/10/2015,02/10/2015,02/10/2015 05:38:15 PM,02/10/2015 05:39:30 PM,02/10/2015 05:39:57 PM,02/10/2015 05:40:08 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Fire,02/10/2015 05:47:38 PM,400 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2523,3,3,3,true,Alarm,1,MEDIC,5,10,10,Potrero Hill,"(37.7606006238505, -122.397379326161)",150412761-61 +141100237,E31,14037161,Medical Incident,04/20/2014,04/20/2014,04/20/2014 04:54:18 PM,04/20/2014 04:55:56 PM,04/20/2014 04:56:24 PM,04/20/2014 04:57:38 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/20/2014 05:00:02 PM,CABRILLO ST/3RD AV,SAN FRANCISCO,94118,B07,31,7121,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7755169441237, -122.460660760765)",141100237-E31 +150783518,T07,15030040,Structure Fire,03/19/2015,03/19/2015,03/19/2015 07:59:14 PM,03/19/2015 07:59:22 PM,03/19/2015 07:59:27 PM,03/19/2015 08:00:42 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Fire,03/19/2015 08:02:27 PM,21ST ST/VALENCIA ST,San Francisco,94110,B06,7,5456,3,3,3,true,Alarm,1,TRUCK,2,6,9,Mission,"(37.7569020093743, -122.421117541576)",150783518-T07 +151381701,E02,15052418,Structure Fire,05/18/2015,05/18/2015,05/18/2015 12:58:12 PM,05/18/2015 12:58:12 PM,05/18/2015 12:59:08 PM,04/25/2016 01:10:32 PM,04/25/2016 01:10:32 PM,04/25/2016 01:10:32 PM,04/25/2016 01:10:32 PM,Fire,05/18/2015 01:02:24 PM,TAYLOR ST/BROADWAY ST,San Francisco,94133,B01,2,1442,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7970385137093, -122.413558545037)",151381701-E02 +160980868,73,16038816,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:18:52 AM,04/07/2016 08:18:52 AM,04/07/2016 08:19:31 AM,04/07/2016 08:19:52 AM,04/07/2016 08:19:52 AM,04/07/2016 09:06:32 AM,04/07/2016 09:30:49 AM,Code 2 Transport,04/07/2016 10:26:47 AM,3700 Block of NORIEGA ST,San Francisco,94122,B08,23,7662,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7529803535273, -122.503794258137)",160980868-73 +142780234,E01,14097655,Medical Incident,10/05/2014,10/04/2014,10/05/2014 01:09:07 AM,10/05/2014 01:09:07 AM,10/05/2014 01:10:40 AM,10/05/2014 01:10:40 AM,10/05/2014 01:13:43 AM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Code 2 Transport,10/05/2014 01:22:41 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",142780234-E01 +150792034,E02,15030313,Gas Leak (Natural and LP Gases),03/20/2015,03/20/2015,03/20/2015 02:29:41 PM,03/20/2015 02:31:05 PM,03/20/2015 02:33:30 PM,03/20/2015 02:35:13 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 02:35:42 PM,900 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Alarm,1,ENGINE,4,1,3,Nob Hill,"(37.7897956957533, -122.41539714915)",150792034-E02 +141210031,E11,14040775,Structure Fire,05/01/2014,04/30/2014,05/01/2014 03:06:18 AM,05/01/2014 03:06:55 AM,05/01/2014 03:07:26 AM,05/01/2014 03:08:53 AM,05/01/2014 03:10:26 AM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Fire,05/01/2014 03:18:48 AM,900 Block of VALENCIA ST,SAN FRANCISCO,94110,B06,7,5456,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7581042111797, -122.421163821698)",141210031-E11 +142590848,T12,14090396,Structure Fire,09/16/2014,09/16/2014,09/16/2014 08:56:30 AM,09/16/2014 08:57:19 AM,09/16/2014 08:57:58 AM,09/16/2014 08:59:18 AM,09/16/2014 09:05:01 AM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Fire,09/16/2014 09:14:06 AM,5200 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8162,3,3,3,false,Alarm,1,TRUCK,4,6,8,Glen Park,"(37.7442928064892, -122.439091578977)",142590848-T12 +150630630,B01,15023947,Alarms,03/04/2015,03/03/2015,03/04/2015 07:11:56 AM,03/04/2015 07:13:18 AM,03/04/2015 07:13:44 AM,03/04/2015 07:16:01 AM,03/04/2015 07:19:19 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Fire,03/04/2015 07:24:23 AM,1000 Block of VALLEJO ST,San Francisco,94133,B01,2,1441,3,3,3,false,Alarm,1,CHIEF,1,1,3,Nob Hill,"(37.7979035406044, -122.414605972129)",150630630-B01 +160982585,KM04,16038999,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:49:40 PM,04/07/2016 03:50:49 PM,04/07/2016 03:54:49 PM,04/07/2016 03:55:29 PM,04/07/2016 04:05:44 PM,04/07/2016 04:29:09 PM,04/07/2016 04:54:21 PM,Code 2 Transport,04/07/2016 05:38:13 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160982585-KM04 +143412584,E13,14121234,Medical Incident,12/07/2014,12/07/2014,12/07/2014 05:10:00 PM,12/07/2014 05:14:10 PM,12/07/2014 05:18:16 PM,12/07/2014 05:20:09 PM,12/07/2014 05:22:58 PM,04/25/2016 01:13:35 PM,04/25/2016 01:13:35 PM,Code 2 Transport,12/07/2014 05:31:22 PM,1000 Block of THE EMBARCADERO,San Francisco,94111,B01,13,927,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",143412584-E13 +151200177,B03,15045233,Alarms,04/30/2015,04/29/2015,04/30/2015 01:45:54 AM,04/30/2015 01:47:19 AM,04/30/2015 01:47:31 AM,04/30/2015 01:49:36 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/30/2015 01:53:45 AM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",151200177-B03 +142670291,E39,14093347,Alarms,09/24/2014,09/23/2014,09/24/2014 02:45:11 AM,09/24/2014 02:46:28 AM,09/24/2014 02:47:35 AM,09/24/2014 02:49:41 AM,09/24/2014 02:53:39 AM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/24/2014 03:10:30 AM,400 Block of WAWONA ST,San Francisco,94132,B08,39,7356,3,3,3,true,Alarm,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7375196184662, -122.472621186741)",142670291-E39 +151570607,RC1,15059827,Vehicle Fire,06/06/2015,06/05/2015,06/06/2015 06:09:07 AM,06/06/2015 06:09:57 AM,06/06/2015 06:15:21 AM,06/06/2015 06:18:10 AM,06/06/2015 06:24:10 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Fire,06/06/2015 06:49:25 AM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Fire,1,RESCUE CAPTAIN,4,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",151570607-RC1 +152761332,KM09,15105722,Medical Incident,10/03/2015,10/03/2015,10/03/2015 10:45:05 AM,10/03/2015 10:47:45 AM,10/03/2015 10:48:37 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Other,10/03/2015 10:49:11 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",152761332-KM09 +152663597,62,15102031,Medical Incident,09/23/2015,09/23/2015,09/23/2015 08:12:05 PM,09/23/2015 08:12:54 PM,09/23/2015 08:13:23 PM,09/23/2015 08:13:45 PM,09/23/2015 08:40:34 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Patient Declined Transport,09/23/2015 09:07:52 PM,STEUART ST/MISSION ST,San Francisco,94105,B03,35,2111,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",152663597-62 +160971208,53,16038355,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:59:55 AM,04/06/2016 10:02:32 AM,04/06/2016 10:07:21 AM,04/06/2016 10:07:42 AM,04/06/2016 10:20:53 AM,04/06/2016 10:49:05 AM,04/06/2016 11:29:00 AM,Code 2 Transport,04/06/2016 11:54:34 AM,0 Block of CHUMASERO DR,San Francisco,94132,B08,33,8422,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",160971208-53 +160980412,78,16038772,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:54:58 AM,04/07/2016 03:55:41 AM,04/07/2016 03:56:35 AM,04/07/2016 03:56:52 AM,04/07/2016 04:02:53 AM,04/07/2016 04:26:06 AM,04/07/2016 04:31:09 AM,Code 2 Transport,04/07/2016 05:11:18 AM,1700 Block of BRYANT ST,San Francisco,94110,B02,29,5242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7649537879117, -122.410494214244)",160980412-78 +151222892,T19,15046411,Alarms,05/02/2015,05/02/2015,05/02/2015 07:28:27 PM,05/02/2015 07:30:09 PM,05/02/2015 07:30:27 PM,05/02/2015 07:32:17 PM,05/02/2015 07:33:27 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Fire,05/02/2015 07:41:57 PM,200 Block of WINSTON DR,San Francisco,94132,B08,19,8862,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7269310558754, -122.477956520245)",151222892-T19 +143022665,88,14106698,Medical Incident,10/29/2014,10/29/2014,10/29/2014 05:39:07 PM,10/29/2014 05:39:36 PM,10/29/2014 05:40:21 PM,10/29/2014 05:41:08 PM,10/29/2014 05:46:18 PM,10/29/2014 05:58:48 PM,10/29/2014 06:18:31 PM,Code 2 Transport,10/29/2014 07:07:46 PM,BAYSHORE BL/CESAR CHAVEZ ST,San Francisco,94110,B10,9,6375,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7489710482463, -122.405626953003)",143022665-88 +160963020,86,16038119,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:35:45 PM,04/05/2016 05:35:45 PM,04/05/2016 05:35:50 PM,04/05/2016 05:36:17 PM,04/05/2016 05:46:55 PM,04/05/2016 05:57:43 PM,04/05/2016 06:22:08 PM,Code 2 Transport,04/05/2016 07:13:51 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160963020-86 +160960168,78,16037858,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:33:39 AM,04/05/2016 01:35:12 AM,04/05/2016 01:35:24 AM,04/05/2016 01:35:36 AM,04/05/2016 01:43:50 AM,04/05/2016 01:59:39 AM,04/05/2016 02:30:12 AM,Code 2 Transport,04/05/2016 02:53:54 AM,100 Block of PRECITA AVE,San Francisco,94110,B06,11,5664,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7471529746853, -122.417246254691)",160960168-78 +160923822,AM20,16036637,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:38:42 PM,04/01/2016 10:40:27 PM,04/01/2016 10:40:40 PM,04/01/2016 10:41:17 PM,04/01/2016 10:55:41 PM,04/01/2016 11:29:15 PM,04/01/2016 11:56:47 PM,Code 2 Transport,04/02/2016 12:37:43 AM,200 Block of SAN MARCOS AVE,San Francisco,94116,B08,39,8623,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7463859667322, -122.466443069131)",160923822-AM20 +160982424,KM05,16038979,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:09:35 PM,04/07/2016 03:11:19 PM,04/07/2016 03:11:45 PM,04/07/2016 03:14:16 PM,04/07/2016 03:19:42 PM,04/07/2016 03:39:58 PM,04/07/2016 03:51:58 PM,Code 2 Transport,04/07/2016 04:31:22 PM,2300 Block of POLK ST,San Francisco,94109,B04,41,3131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7983019573761, -122.422174014862)",160982424-KM05 +152743194,AM08,15105024,Medical Incident,10/01/2015,10/01/2015,10/01/2015 06:20:19 PM,10/01/2015 06:20:19 PM,10/01/2015 06:20:54 PM,10/01/2015 06:21:28 PM,10/01/2015 06:30:33 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Patient Declined Transport,10/01/2015 06:43:24 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",152743194-AM08 +143582219,E05,14128174,Medical Incident,12/24/2014,12/24/2014,12/24/2014 04:21:24 PM,12/24/2014 04:23:39 PM,12/24/2014 04:25:03 PM,12/24/2014 04:25:22 PM,12/24/2014 04:26:42 PM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,Code 2 Transport,12/24/2014 05:17:10 PM,1200 Block of EDDY ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",143582219-E05 +143642954,T05,14130374,Structure Fire,12/30/2014,12/30/2014,12/30/2014 06:34:31 PM,12/30/2014 06:34:31 PM,12/30/2014 06:35:03 PM,12/30/2014 06:35:16 PM,12/30/2014 06:39:56 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 06:42:30 PM,HYDE ST/ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",143642954-T05 +142223072,74,14077172,Medical Incident,08/10/2014,08/10/2014,08/10/2014 08:01:53 PM,08/10/2014 08:01:53 PM,08/10/2014 08:03:06 PM,08/10/2014 08:03:27 PM,08/10/2014 08:22:44 PM,04/25/2016 01:15:44 PM,04/25/2016 01:15:44 PM,Unable to Locate,08/10/2014 08:23:32 PM,800 Block of LISBON ST,San Francisco,94112,B09,43,6174,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7158405916513, -122.438322483619)",142223072-74 +151802361,T12,15068797,Structure Fire,06/29/2015,06/29/2015,06/29/2015 04:09:58 PM,06/29/2015 04:11:25 PM,06/29/2015 04:11:39 PM,06/29/2015 04:13:03 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Fire,06/29/2015 04:17:11 PM,1400 Block of 31ST AVE,San Francisco,94122,B08,18,7535,3,3,3,false,Alarm,1,TRUCK,8,8,4,Sunset/Parkside,"(37.7601963960987, -122.489856806327)",151802361-T12 +160993074,53,16039425,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:38:11 PM,04/08/2016 06:38:42 PM,04/08/2016 06:39:16 PM,04/08/2016 06:39:26 PM,04/08/2016 07:03:30 PM,04/08/2016 07:03:32 PM,04/08/2016 07:27:28 PM,Code 2 Transport,04/08/2016 07:31:10 PM,0 Block of ELGIN PARK,San Francisco,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7706495415688, -122.423294751714)",160993074-53 +160963477,KM11,16038153,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:21:17 PM,04/05/2016 07:24:57 PM,04/05/2016 07:28:08 PM,04/05/2016 07:29:00 PM,04/05/2016 07:31:38 PM,04/05/2016 07:47:40 PM,04/05/2016 08:23:32 PM,Code 2 Transport,04/05/2016 08:45:40 PM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",160963477-KM11 +160992149,76,16039343,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:58:33 PM,04/08/2016 03:00:06 PM,04/08/2016 03:00:27 PM,04/08/2016 03:00:35 PM,04/08/2016 03:04:29 PM,04/08/2016 03:20:46 PM,04/08/2016 03:26:17 PM,Code 2 Transport,04/08/2016 04:06:23 PM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",160992149-76 +142291656,E07,14079576,Medical Incident,08/17/2014,08/17/2014,08/17/2014 12:26:15 PM,08/17/2014 12:27:26 PM,08/17/2014 12:28:51 PM,08/17/2014 12:30:30 PM,08/17/2014 12:34:13 PM,04/25/2016 01:15:37 PM,04/25/2016 01:15:37 PM,Code 2 Transport,08/17/2014 12:48:37 PM,2800 Block of 22ND ST,San Francisco,94110,B06,7,5474,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7559148150977, -122.411740426812)",142291656-E07 +152530034,T03,15096564,Medical Incident,09/10/2015,09/09/2015,09/10/2015 12:09:39 AM,09/10/2015 12:12:02 AM,09/10/2015 12:12:42 AM,09/10/2015 12:13:45 AM,09/10/2015 12:17:16 AM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,Code 2 Transport,09/10/2015 12:18:14 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",152530034-T03 +151834341,E09,15070070,Medical Incident,07/02/2015,07/02/2015,07/02/2015 11:21:54 PM,07/02/2015 11:22:54 PM,07/02/2015 11:23:32 PM,07/02/2015 11:25:32 PM,07/02/2015 11:28:24 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Code 2 Transport,07/02/2015 11:37:58 PM,3100 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7483773808375, -122.412579951922)",151834341-E09 +151000337,E07,15037714,Medical Incident,04/10/2015,04/09/2015,04/10/2015 04:13:32 AM,04/10/2015 04:14:21 AM,04/10/2015 04:16:07 AM,04/10/2015 04:18:04 AM,04/10/2015 04:22:53 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Code 2 Transport,04/10/2015 04:32:12 AM,2900 Block of 23RD ST,San Francisco,94110,B06,7,5476,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.754258922424, -122.410664828857)",151000337-E07 +160943554,72,16037445,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:15:26 PM,04/03/2016 10:15:44 PM,04/03/2016 10:16:14 PM,04/03/2016 10:16:22 PM,04/03/2016 10:25:59 PM,04/03/2016 10:32:34 PM,04/03/2016 11:03:02 PM,Code 2 Transport,04/03/2016 11:30:47 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160943554-72 +160973667,KM10,16038619,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:50:46 PM,04/06/2016 06:52:11 PM,04/06/2016 07:07:42 PM,04/06/2016 07:08:17 PM,04/06/2016 07:29:41 PM,04/06/2016 07:54:43 PM,04/06/2016 08:17:02 PM,Code 2 Transport,04/06/2016 08:49:52 PM,100 Block of RIVERTON DR,San Francisco,94132,B08,19,8742,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Sunset/Parkside,"(37.731499288175, -122.487171386918)",160973667-KM10 +160931968,65,16036890,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:11:48 PM,04/02/2016 02:12:12 PM,04/02/2016 02:18:28 PM,04/02/2016 02:19:02 PM,04/02/2016 02:23:30 PM,04/02/2016 02:46:42 PM,04/02/2016 03:00:17 PM,Code 2 Transport,04/02/2016 03:13:08 PM,MCALLISTER ST/HYDE ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160931968-65 +142882116,T03,14101550,Medical Incident,10/15/2014,10/15/2014,10/15/2014 02:24:06 PM,10/15/2014 02:25:14 PM,10/15/2014 02:25:47 PM,10/15/2014 02:27:09 PM,10/15/2014 02:29:11 PM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Patient Declined Transport,10/15/2014 02:32:47 PM,300 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",142882116-T03 +141580352,E16,14054304,Alarms,06/07/2014,06/06/2014,06/07/2014 03:08:20 AM,06/07/2014 03:09:39 AM,06/07/2014 03:10:08 AM,06/07/2014 03:12:01 AM,06/07/2014 03:13:09 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Fire,06/07/2014 03:27:14 AM,2100 Block of FILBERT ST,San Francisco,94123,B04,16,3462,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7981798327213, -122.434867916145)",141580352-E16 +152373057,E01,15090411,Medical Incident,08/25/2015,08/25/2015,08/25/2015 06:19:41 PM,08/25/2015 06:21:33 PM,08/25/2015 06:21:59 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Gone on Arrival,08/25/2015 06:22:56 PM,MASON ST/GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Tenderloin,"(37.787149142759, -122.409874017562)",152373057-E01 +152640529,T05,15100954,Other,09/21/2015,09/20/2015,09/21/2015 05:52:34 AM,09/21/2015 05:52:34 AM,09/21/2015 05:52:44 AM,09/21/2015 05:57:53 AM,09/21/2015 06:01:06 AM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Fire,09/21/2015 06:10:06 AM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",152640529-T05 +151492221,RC3,15056742,Citizen Assist / Service Call,05/29/2015,05/29/2015,05/29/2015 02:44:36 PM,05/29/2015 02:48:02 PM,05/29/2015 02:50:45 PM,05/29/2015 02:53:04 PM,05/29/2015 03:12:33 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,Fire,05/29/2015 03:20:33 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",151492221-RC3 +152521681,E01,15096312,Medical Incident,09/09/2015,09/09/2015,09/09/2015 12:17:38 PM,09/09/2015 12:19:02 PM,09/09/2015 12:23:20 PM,09/09/2015 12:23:20 PM,09/09/2015 12:25:48 PM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,Cancelled,09/09/2015 12:27:11 PM,0 Block of 3RD ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7864240602838, -122.402348906735)",152521681-E01 +143180786,88,14112544,Medical Incident,11/14/2014,11/14/2014,11/14/2014 08:18:23 AM,11/14/2014 08:20:55 AM,11/14/2014 08:21:34 AM,11/14/2014 08:25:19 AM,11/14/2014 08:43:01 AM,11/14/2014 08:53:36 AM,11/14/2014 09:34:05 AM,Code 2 Transport,11/14/2014 09:38:28 AM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",143180786-88 +150543778,E35,15020944,Alarms,02/23/2015,02/23/2015,02/23/2015 09:57:24 PM,02/23/2015 09:58:49 PM,02/23/2015 09:59:03 PM,02/23/2015 10:00:55 PM,02/23/2015 10:02:52 PM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,Fire,02/23/2015 10:19:52 PM,100 Block of SPEAR ST,San Francisco,94105,B03,35,2114,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7919628053601, -122.393243014407)",150543778-E35 +150721059,RC1,15027441,Medical Incident,03/13/2015,03/13/2015,03/13/2015 09:28:04 AM,03/13/2015 09:29:40 AM,03/13/2015 09:30:25 AM,03/13/2015 09:32:12 AM,03/13/2015 09:35:18 AM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Code 2 Transport,03/13/2015 09:39:57 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",150721059-RC1 +150712947,89,15027216,Medical Incident,03/12/2015,03/12/2015,03/12/2015 05:38:00 PM,03/12/2015 05:39:24 PM,03/12/2015 05:39:36 PM,03/12/2015 05:40:47 PM,03/12/2015 05:51:27 PM,03/12/2015 06:07:17 PM,03/12/2015 06:28:53 PM,Code 2 Transport,03/12/2015 06:50:36 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",150712947-89 +142792163,KM02,14098206,Medical Incident,10/06/2014,10/06/2014,10/06/2014 03:19:03 PM,10/06/2014 03:19:54 PM,10/06/2014 03:21:15 PM,10/06/2014 03:21:57 PM,10/06/2014 03:28:25 PM,10/06/2014 03:45:47 PM,10/06/2014 04:08:54 PM,Code 2 Transport,10/06/2014 04:27:15 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",142792163-KM02 +152923634,89,15112380,Medical Incident,10/19/2015,10/19/2015,10/19/2015 09:46:17 PM,10/19/2015 09:47:35 PM,10/19/2015 09:47:52 PM,10/19/2015 09:49:03 PM,10/19/2015 09:55:36 PM,10/19/2015 10:08:23 PM,10/19/2015 10:12:13 PM,Code 2 Transport,10/19/2015 10:49:16 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",152923634-89 +152562471,B07,15097979,Alarms,09/13/2015,09/13/2015,09/13/2015 04:49:41 PM,09/13/2015 04:51:30 PM,09/13/2015 04:51:40 PM,09/13/2015 04:52:30 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,Fire,09/13/2015 04:59:22 PM,100 Block of 27TH AVE,San Francisco,94121,B07,14,7217,3,3,3,false,Alarm,1,CHIEF,3,7,2,Seacliff,"(37.7865836559731, -122.487284964923)",152562471-B07 +151450278,KM06,15055018,Medical Incident,05/25/2015,05/24/2015,05/25/2015 02:22:46 AM,05/25/2015 02:23:51 AM,05/25/2015 02:24:23 AM,05/25/2015 02:25:06 AM,05/25/2015 02:29:34 AM,05/25/2015 02:47:10 AM,05/25/2015 02:52:35 AM,Code 2 Transport,05/25/2015 03:31:12 AM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.765718993574, -122.409520691153)",151450278-KM06 +152213212,T02,15084344,Alarms,08/09/2015,08/09/2015,08/09/2015 07:24:57 PM,08/09/2015 07:26:00 PM,08/09/2015 07:26:06 PM,08/09/2015 07:27:40 PM,08/09/2015 07:28:44 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Fire,08/09/2015 07:41:12 PM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",152213212-T02 +160970461,AM24,16038285,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:54:57 AM,04/06/2016 05:56:50 AM,04/06/2016 05:57:35 AM,04/06/2016 05:57:59 AM,04/06/2016 06:08:19 AM,04/06/2016 06:48:46 AM,04/06/2016 07:13:55 AM,Code 2 Transport,04/06/2016 08:00:55 AM,BAKER ST/BAY ST,San Francisco,94123,B04,16,4315,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8017873424756, -122.446609575987)",160970461-AM24 +142661266,67,14093052,Medical Incident,09/23/2014,09/23/2014,09/23/2014 11:07:38 AM,09/23/2014 11:08:07 AM,09/23/2014 11:08:53 AM,09/23/2014 11:11:24 AM,09/23/2014 11:16:03 AM,09/23/2014 11:39:20 AM,09/23/2014 11:57:58 AM,Code 2 Transport,09/23/2014 12:05:08 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",142661266-67 +160974562,AM24,16038709,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:00:19 PM,04/06/2016 11:01:15 PM,04/06/2016 11:02:30 PM,04/06/2016 11:04:40 PM,04/06/2016 11:25:31 PM,04/06/2016 11:25:42 PM,04/06/2016 11:38:52 PM,Code 2 Transport,04/07/2016 12:11:31 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160974562-AM24 +153283272,T02,15126383,Alarms,11/24/2015,11/24/2015,11/24/2015 07:03:51 PM,11/24/2015 07:06:03 PM,11/24/2015 07:06:32 PM,11/24/2015 07:08:10 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Fire,11/24/2015 07:21:27 PM,1200 Block of WASHINGTON ST,San Francisco,94108,B01,41,1466,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.7942694224795, -122.41384044734)",153283272-T02 +161003062,56,16039930,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:43:02 PM,04/09/2016 08:43:58 PM,04/09/2016 08:44:32 PM,04/09/2016 08:44:53 PM,04/09/2016 08:46:47 PM,04/09/2016 09:11:53 PM,04/09/2016 09:21:41 PM,Code 2 Transport,04/09/2016 09:56:46 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",161003062-56 +161000615,88,16039636,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:11:25 AM,04/09/2016 06:12:31 AM,04/09/2016 06:13:05 AM,04/09/2016 06:13:32 AM,04/09/2016 06:29:20 AM,04/09/2016 06:43:36 AM,04/09/2016 06:59:51 AM,Code 2 Transport,04/09/2016 07:36:19 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",161000615-88 +142241427,B09,14077705,Structure Fire,08/12/2014,08/12/2014,08/12/2014 11:56:28 AM,08/12/2014 11:57:44 AM,08/12/2014 11:58:07 AM,08/12/2014 11:58:40 AM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Fire,08/12/2014 12:02:01 PM,2000 Block of 18TH AVE,San Francisco,94116,B08,40,7374,3,3,3,false,Alarm,1,CHIEF,8,8,7,Inner Sunset,"(37.7496216661836, -122.475150816566)",142241427-B09 +161000318,AM20,16039596,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:20:46 AM,04/09/2016 02:21:03 AM,04/09/2016 02:21:22 AM,04/09/2016 02:21:59 AM,04/09/2016 02:24:52 AM,04/09/2016 02:45:21 AM,04/09/2016 03:08:25 AM,Code 2 Transport,04/09/2016 03:49:44 AM,1000 Block of GOLDEN GATE AVE,San Francisco,94115,B02,5,3411,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",161000318-AM20 +150102929,E15,15004095,Medical Incident,01/10/2015,01/10/2015,01/10/2015 07:03:34 PM,01/10/2015 07:04:41 PM,01/10/2015 07:04:52 PM,01/10/2015 07:06:18 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 3 Transport,01/10/2015 07:10:19 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.7131061953593, -122.460796179398)",150102929-E15 +153070241,E13,15117827,Structure Fire,11/03/2015,11/02/2015,11/03/2015 02:39:27 AM,11/03/2015 02:39:27 AM,11/03/2015 02:39:41 AM,11/03/2015 02:41:01 AM,11/03/2015 02:43:31 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/03/2015 02:44:08 AM,FRONT ST/SACRAMENTO ST,San Francisco,94111,B01,13,1141,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",153070241-E13 +160960841,64,16037925,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:53:00 AM,04/05/2016 08:55:30 AM,04/05/2016 08:55:56 AM,04/05/2016 08:56:28 AM,04/05/2016 09:14:04 AM,04/05/2016 09:37:16 AM,04/05/2016 09:58:03 AM,Code 2 Transport,04/05/2016 10:18:04 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160960841-64 +151073502,T07,15040664,Alarms,04/17/2015,04/17/2015,04/17/2015 08:19:35 PM,04/17/2015 08:20:38 PM,04/17/2015 08:20:57 PM,04/17/2015 08:22:18 PM,04/17/2015 08:25:39 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Fire,04/17/2015 08:30:49 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",151073502-T07 +143532797,KM15,14126261,Medical Incident,12/19/2014,12/19/2014,12/19/2014 06:00:59 PM,12/19/2014 06:01:39 PM,12/19/2014 06:02:33 PM,12/19/2014 06:03:08 PM,12/19/2014 06:06:34 PM,12/19/2014 06:20:32 PM,12/19/2014 06:44:05 PM,Code 2 Transport,12/19/2014 06:47:50 PM,CHURCH ST/DUBOCE AV,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",143532797-KM15 +151871954,E42,15071410,Medical Incident,07/06/2015,07/06/2015,07/06/2015 01:26:18 PM,07/06/2015 01:30:16 PM,07/06/2015 01:31:04 PM,07/06/2015 01:32:21 PM,07/06/2015 01:33:49 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Patient Declined Transport,07/06/2015 01:39:44 PM,100 Block of COLBY ST,San Francisco,94134,B09,42,6355,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,9,Portola,"(37.7283319628838, -122.413657198247)",151871954-E42 +151720957,KM09,15065614,Medical Incident,06/21/2015,06/21/2015,06/21/2015 09:08:15 AM,06/21/2015 09:08:55 AM,06/21/2015 09:09:36 AM,06/21/2015 09:10:05 AM,06/21/2015 09:23:34 AM,06/21/2015 09:31:13 AM,06/21/2015 09:42:57 AM,Code 2 Transport,06/21/2015 10:11:04 AM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",151720957-KM09 +151421364,B02,15053941,Structure Fire,05/22/2015,05/22/2015,05/22/2015 10:51:24 AM,05/22/2015 10:51:24 AM,05/22/2015 10:51:31 AM,05/22/2015 10:51:41 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Fire,05/22/2015 10:52:41 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,false,Alarm,1,CHIEF,4,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",151421364-B02 +160953523,76,16037778,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:06:57 PM,04/04/2016 08:07:59 PM,04/04/2016 08:09:16 PM,04/04/2016 08:09:42 PM,04/04/2016 08:16:30 PM,04/04/2016 08:39:44 PM,04/04/2016 08:56:45 PM,Code 2 Transport,04/04/2016 09:38:27 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160953523-76 +160993663,AM20,16039482,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:30:52 PM,04/08/2016 09:32:36 PM,04/08/2016 09:33:27 PM,04/08/2016 09:33:57 PM,04/08/2016 09:47:39 PM,04/08/2016 10:08:24 PM,04/08/2016 10:43:23 PM,Code 2 Transport,04/08/2016 11:13:03 PM,1100 Block of HOLLISTER AVE,San Francisco,94124,B10,17,6612,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.720226117433, -122.393393791933)",160993663-AM20 +150462922,T19,15018030,Alarms,02/15/2015,02/15/2015,02/15/2015 06:14:52 PM,02/15/2015 06:16:25 PM,02/15/2015 06:16:48 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/15/2015 06:18:08 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",150462922-T19 +150412831,82,15016080,Medical Incident,02/10/2015,02/10/2015,02/10/2015 05:53:12 PM,02/10/2015 05:55:41 PM,02/10/2015 05:56:15 PM,02/10/2015 05:56:22 PM,02/10/2015 06:16:09 PM,02/10/2015 06:34:26 PM,02/10/2015 06:39:20 PM,Code 2 Transport,02/10/2015 07:23:17 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",150412831-82 +152722524,64,15104209,Traffic Collision,09/29/2015,09/29/2015,09/29/2015 04:03:26 PM,09/29/2015 04:04:50 PM,09/29/2015 04:06:08 PM,09/29/2015 04:08:45 PM,09/29/2015 04:18:07 PM,09/29/2015 04:32:50 PM,09/29/2015 04:56:38 PM,Code 2 Transport,09/29/2015 05:43:54 PM,HARRISON ST/8TH ST,San Francisco,94103,B03,8,2312,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7737596997868, -122.408516330795)",152722524-64 +143282222,KM02,14116343,Medical Incident,11/24/2014,11/24/2014,11/24/2014 02:57:14 PM,11/24/2014 02:58:56 PM,11/24/2014 03:01:01 PM,11/24/2014 03:01:37 PM,11/24/2014 03:04:28 PM,11/24/2014 03:18:58 PM,11/24/2014 03:49:08 PM,Code 2 Transport,11/24/2014 04:03:00 PM,TAYLOR ST/ELLIS ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",143282222-KM02 +141501123,T02,14051489,Alarms,05/30/2014,05/30/2014,05/30/2014 10:58:05 AM,05/30/2014 10:59:14 AM,05/30/2014 10:59:47 AM,05/30/2014 11:00:29 AM,05/30/2014 11:01:07 AM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 11:05:58 AM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",141501123-T02 +151620178,E03,15061752,Medical Incident,06/11/2015,06/10/2015,06/11/2015 01:37:22 AM,06/11/2015 01:38:54 AM,06/11/2015 01:39:02 AM,06/11/2015 01:40:59 AM,06/11/2015 01:44:35 AM,04/25/2016 01:10:04 PM,04/25/2016 01:10:04 PM,Code 2 Transport,06/11/2015 01:51:19 AM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7854941424186, -122.408270724034)",151620178-E03 +152593101,KM11,15099113,Medical Incident,09/16/2015,09/16/2015,09/16/2015 06:42:06 PM,09/16/2015 06:43:16 PM,09/16/2015 06:43:39 PM,09/16/2015 06:44:12 PM,09/16/2015 06:54:38 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Against Medical Advice,09/16/2015 07:57:30 PM,2300 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3511,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7890127108804, -122.433440229295)",152593101-KM11 +142902000,KM10,14102278,Medical Incident,10/17/2014,10/17/2014,10/17/2014 02:30:07 PM,10/17/2014 02:31:40 PM,10/17/2014 02:31:47 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 2 Transport,10/17/2014 02:31:53 PM,2100 Block of WEBSTER ST,San Francisco,94115,B04,38,3466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Pacific Heights,"(37.7904907937316, -122.432404755801)",142902000-KM10 +142152715,T07,14074681,Alarms,08/03/2014,08/03/2014,08/03/2014 08:02:47 PM,08/03/2014 08:04:01 PM,08/03/2014 08:05:23 PM,08/03/2014 08:06:46 PM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,Fire,08/03/2014 08:12:13 PM,0 Block of HOFF ST,San Francisco,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7641898782543, -122.420437704275)",142152715-T07 +150582988,KM15,15022273,Medical Incident,02/27/2015,02/27/2015,02/27/2015 06:26:40 PM,02/27/2015 06:26:40 PM,02/27/2015 06:27:25 PM,02/27/2015 06:28:09 PM,02/27/2015 06:30:55 PM,02/27/2015 06:49:54 PM,02/27/2015 07:01:26 PM,Code 2 Transport,02/27/2015 07:26:11 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",150582988-KM15 +153352766,T07,15128908,Medical Incident,12/01/2015,12/01/2015,12/01/2015 04:46:10 PM,12/01/2015 04:46:59 PM,12/01/2015 04:49:18 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,Other,12/01/2015 04:49:44 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",153352766-T07 +151764086,E01,15067207,Medical Incident,06/25/2015,06/25/2015,06/25/2015 11:46:36 PM,06/25/2015 11:47:35 PM,06/25/2015 11:48:23 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,Medical Examiner,06/25/2015 11:49:04 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,E,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",151764086-E01 +151211365,E41,15045817,Medical Incident,05/01/2015,05/01/2015,05/01/2015 10:37:38 AM,05/01/2015 10:38:19 AM,05/01/2015 10:38:30 AM,05/01/2015 10:39:07 AM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Medical Examiner,05/01/2015 10:41:32 AM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,E,E,3,false,Potentially Life-Threatening,1,ENGINE,4,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",151211365-E41 +161003075,62,16039931,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:44:27 PM,04/09/2016 08:47:15 PM,04/09/2016 08:50:35 PM,04/09/2016 08:50:42 PM,04/09/2016 08:59:50 PM,04/09/2016 09:23:31 PM,04/09/2016 09:59:54 PM,Code 2 Transport,04/09/2016 10:25:46 PM,2500 Block of VALLEJO ST,San Francisco,94123,B04,16,3654,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7947566019198, -122.439234819715)",161003075-62 +153211041,B07,15123346,Structure Fire,11/17/2015,11/17/2015,11/17/2015 09:39:13 AM,11/17/2015 09:39:13 AM,11/17/2015 09:40:39 AM,11/17/2015 09:41:54 AM,11/17/2015 09:50:06 AM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 09:50:18 AM,600 Block of 32ND AVE,San Francisco,94121,B07,14,724,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",153211041-B07 +160960554,KM08,16037902,Traffic Collision,04/05/2016,04/04/2016,04/05/2016 07:29:18 AM,04/05/2016 07:29:18 AM,04/05/2016 07:29:37 AM,04/05/2016 07:30:14 AM,04/05/2016 07:36:26 AM,04/05/2016 08:01:00 AM,04/05/2016 08:16:15 AM,Code 2 Transport,04/05/2016 08:40:57 AM,600 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7868166701711, -122.489937526821)",160960554-KM08 +152861239,E29,15109800,Medical Incident,10/13/2015,10/13/2015,10/13/2015 10:10:29 AM,10/13/2015 10:11:32 AM,10/13/2015 10:12:04 AM,10/13/2015 10:13:12 AM,10/13/2015 10:17:38 AM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Code 2 Transport,10/13/2015 10:34:14 AM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7788157426427, -122.409325210496)",152861239-E29 +152811286,AM04,15107777,Medical Incident,10/08/2015,10/08/2015,10/08/2015 10:23:57 AM,10/08/2015 10:27:21 AM,10/08/2015 10:27:35 AM,10/08/2015 10:28:19 AM,10/08/2015 10:39:54 AM,10/08/2015 10:54:03 AM,10/08/2015 11:36:29 AM,Code 2 Transport,10/08/2015 12:01:31 PM,900 Block of MARINE DR,Presidio,94129,B99,51,4628,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,2,Presidio,"(37.8089767888005, -122.47460956271)",152811286-AM04 +142600519,E13,14090736,Medical Incident,09/17/2014,09/16/2014,09/17/2014 06:45:58 AM,09/17/2014 06:47:15 AM,09/17/2014 06:48:08 AM,09/17/2014 06:49:42 AM,09/17/2014 06:51:56 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Code 2 Transport,09/17/2014 07:07:33 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",142600519-E13 +143041320,T03,14107461,Alarms,10/31/2014,10/31/2014,10/31/2014 11:46:06 AM,10/31/2014 11:47:11 AM,10/31/2014 11:47:30 AM,10/31/2014 11:50:16 AM,10/31/2014 11:53:08 AM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,Fire,10/31/2014 11:53:13 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",143041320-T03 +143264058,E34,14115713,Structure Fire,11/22/2014,11/22/2014,11/22/2014 11:29:30 PM,11/22/2014 11:30:09 PM,11/22/2014 11:30:22 PM,11/22/2014 11:31:36 PM,11/22/2014 11:44:15 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Fire,11/22/2014 11:44:19 PM,2300 Block of CLEMENT ST,San Francisco,94121,B07,14,7175,3,3,3,false,Alarm,1,ENGINE,8,7,1,Outer Richmond,"(37.7819962396516, -122.484334834334)",143264058-E34 +160931877,61,16036877,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:44:28 PM,04/02/2016 01:44:28 PM,04/02/2016 01:45:35 PM,04/02/2016 01:45:43 PM,04/02/2016 01:48:27 PM,04/02/2016 02:02:05 PM,04/02/2016 02:39:37 PM,Code 2 Transport,04/02/2016 03:02:31 PM,CALIFORNIA ST/DRUMM ST,San Francisco,94111,B01,13,1134,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7936637772453, -122.396390415025)",160931877-61 +143572671,E05,14127834,Medical Incident,12/23/2014,12/23/2014,12/23/2014 04:25:14 PM,12/23/2014 04:25:38 PM,12/23/2014 04:25:58 PM,12/23/2014 04:27:11 PM,12/23/2014 04:28:54 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Code 2 Transport,12/23/2014 04:47:58 PM,LAGUNA ST/MCALLISTER ST,San Francisco,94102,B02,5,3412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7792579701506, -122.426828557488)",143572671-E05 +143081571,D3,14108973,Structure Fire,11/04/2014,11/04/2014,11/04/2014 12:13:22 PM,11/04/2014 12:13:33 PM,11/04/2014 12:14:16 PM,11/04/2014 12:14:30 PM,11/04/2014 12:23:03 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Fire,11/04/2014 12:31:23 PM,900 Block of CHENERY ST,San Francisco,94131,B06,26,8175,3,3,3,false,Alarm,1,CHIEF,9,6,8,Glen Park,"(37.735492369963, -122.438476731734)",143081571-D3 +143073078,77,14108762,Medical Incident,11/03/2014,11/03/2014,11/03/2014 07:45:05 PM,11/03/2014 07:46:59 PM,11/03/2014 07:47:15 PM,11/03/2014 07:47:35 PM,11/03/2014 07:53:22 PM,11/03/2014 08:17:08 PM,11/03/2014 08:24:38 PM,Code 2 Transport,11/03/2014 08:59:00 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",143073078-77 +151020188,71,15038431,Medical Incident,04/12/2015,04/11/2015,04/12/2015 01:02:48 AM,04/12/2015 01:02:48 AM,04/12/2015 01:03:50 AM,04/12/2015 01:04:09 AM,04/12/2015 01:10:23 AM,04/12/2015 01:18:12 AM,04/12/2015 01:27:04 AM,Code 3 Transport,04/12/2015 02:29:24 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7982249345487, -122.404282497745)",151020188-71 +152721767,87,15104141,Medical Incident,09/29/2015,09/29/2015,09/29/2015 12:46:55 PM,09/29/2015 12:49:28 PM,09/29/2015 12:49:53 PM,09/29/2015 12:50:01 PM,09/29/2015 12:54:30 PM,09/29/2015 01:16:19 PM,09/29/2015 01:35:50 PM,Code 2 Transport,09/29/2015 02:11:49 PM,3700 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7755874491042, -122.498916215286)",152721767-87 +160933383,76,16037037,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:46:14 PM,04/02/2016 08:47:45 PM,04/02/2016 08:48:32 PM,04/02/2016 08:48:42 PM,04/02/2016 08:56:28 PM,04/02/2016 09:15:53 PM,04/02/2016 09:25:32 PM,Code 2 Transport,04/02/2016 09:52:56 PM,1100 Block of FRANKLIN ST,San Francisco,94109,B04,3,3222,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7852397067254, -122.423049038172)",160933383-76 +143642496,T05,14130304,Citizen Assist / Service Call,12/30/2014,12/30/2014,12/30/2014 04:46:41 PM,12/30/2014 04:47:39 PM,12/30/2014 04:47:55 PM,12/30/2014 04:48:13 PM,12/30/2014 04:50:44 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 05:43:37 PM,SCOTT ST/TURK ST,San Francisco,94115,B05,5,4134,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7798673958952, -122.437071862847)",143642496-T05 +151403238,RS2,15053300,Other,05/20/2015,05/20/2015,05/20/2015 07:18:02 PM,05/20/2015 07:18:02 PM,05/20/2015 07:37:51 PM,05/20/2015 07:37:51 PM,05/20/2015 07:37:51 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Fire,05/20/2015 07:57:29 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,false,Alarm,1,RESCUE SQUAD,2,6,9,Mission,"(37.7596933117757, -122.414834950578)",151403238-RS2 +142581515,E37,14090097,Structure Fire,09/15/2014,09/15/2014,09/15/2014 12:25:28 PM,09/15/2014 12:25:28 PM,09/15/2014 12:25:41 PM,09/15/2014 12:27:02 PM,09/15/2014 12:29:20 PM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Fire,09/15/2014 12:39:44 PM,1200 Block of CAROLINA ST,San Francisco,94107,B10,37,256,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7526323138734, -122.398696830553)",142581515-E37 +152742610,T10,15104973,Medical Incident,10/01/2015,10/01/2015,10/01/2015 04:02:17 PM,10/01/2015 04:03:46 PM,10/01/2015 04:03:58 PM,10/01/2015 04:04:23 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Code 2 Transport,10/01/2015 04:05:00 PM,2300 Block of SUTTER ST,San Francisco,94115,B05,10,4155,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,5,2,Pacific Heights,"(37.7854076725191, -122.439050444523)",152742610-T10 +152882937,77,15110754,Medical Incident,10/15/2015,10/15/2015,10/15/2015 05:28:08 PM,10/15/2015 05:30:32 PM,10/15/2015 05:30:57 PM,10/15/2015 05:31:09 PM,10/15/2015 05:36:41 PM,10/15/2015 05:47:33 PM,10/15/2015 05:59:33 PM,Code 2 Transport,10/15/2015 06:21:57 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",152882937-77 +160973338,56,16038573,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:39:24 PM,04/06/2016 05:40:19 PM,04/06/2016 05:41:22 PM,04/06/2016 05:42:06 PM,04/06/2016 05:51:36 PM,04/06/2016 06:11:39 PM,04/06/2016 06:37:12 PM,Code 2 Transport,04/06/2016 07:02:17 PM,1300 Block of 27TH AVE,San Francisco,94122,B08,22,7511,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7622565136355, -122.485564556768)",160973338-56 +142021972,52,14069910,Medical Incident,07/21/2014,07/21/2014,07/21/2014 02:43:18 PM,07/21/2014 02:44:20 PM,07/21/2014 02:44:24 PM,07/21/2014 02:45:17 PM,07/21/2014 02:53:25 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Unable to Locate,07/21/2014 02:58:14 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",142021972-52 +142942227,52,14103725,Medical Incident,10/21/2014,10/21/2014,10/21/2014 03:01:19 PM,10/21/2014 03:03:20 PM,10/21/2014 03:04:49 PM,10/21/2014 03:06:18 PM,10/21/2014 03:11:46 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,Patient Declined Transport,10/21/2014 04:06:04 PM,SACRAMENTO ST/POLK ST,San Francisco,94109,B04,41,3123,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7914958541783, -122.420873185108)",142942227-52 +160932408,KM08,16036936,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:20:08 PM,04/02/2016 04:21:18 PM,04/02/2016 04:21:39 PM,04/02/2016 04:22:06 PM,04/02/2016 04:29:18 PM,04/02/2016 04:51:42 PM,04/02/2016 05:16:41 PM,Code 2 Transport,04/02/2016 05:53:13 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",160932408-KM08 +160964034,KM03,16038205,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:28:32 PM,04/05/2016 10:29:59 PM,04/05/2016 10:30:14 PM,04/05/2016 10:31:04 PM,04/05/2016 10:35:53 PM,04/05/2016 10:48:31 PM,04/05/2016 11:02:52 PM,Code 2 Transport,04/05/2016 11:26:31 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160964034-KM03 +152581133,E12,15098587,Medical Incident,09/15/2015,09/15/2015,09/15/2015 09:45:06 AM,09/15/2015 09:45:25 AM,09/15/2015 09:45:46 AM,09/15/2015 09:47:55 AM,09/15/2015 09:50:45 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 2 Transport,09/15/2015 10:11:22 AM,1500 Block of MASONIC AVE,San Francisco,94117,B05,12,5141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Haight Ashbury,"(37.7661440496945, -122.444450177181)",152581133-E12 +150503062,RC2,15019438,Medical Incident,02/19/2015,02/19/2015,02/19/2015 06:49:43 PM,02/19/2015 06:51:02 PM,02/19/2015 06:51:23 PM,02/19/2015 06:53:47 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Code 3 Transport,02/19/2015 06:54:20 PM,CHURCH ST/18TH ST,San Francisco,94114,B02,6,5421,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",150503062-RC2 +150532323,AM04,15020434,Medical Incident,02/22/2015,02/22/2015,02/22/2015 04:40:58 PM,02/22/2015 04:40:58 PM,02/22/2015 05:06:35 PM,02/22/2015 05:07:30 PM,02/22/2015 05:15:04 PM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,Against Medical Advice,02/22/2015 06:12:05 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",150532323-AM04 +160931367,KM12,16036819,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:19:58 AM,04/02/2016 11:21:38 AM,04/02/2016 11:37:06 AM,04/02/2016 11:37:21 AM,04/02/2016 11:50:14 AM,04/02/2016 12:11:38 PM,04/02/2016 12:32:15 PM,Code 2 Transport,04/02/2016 12:52:12 PM,100 Block of CASTENADA AVE,San Francisco,94116,B08,39,8627,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7496244997415, -122.462027484211)",160931367-KM12 +150133598,64,15005336,Medical Incident,01/13/2015,01/13/2015,01/13/2015 09:07:27 PM,01/13/2015 09:11:44 PM,01/13/2015 09:12:23 PM,01/13/2015 09:12:37 PM,01/13/2015 09:16:11 PM,01/13/2015 09:31:33 PM,01/13/2015 09:35:12 PM,Code 2 Transport,01/13/2015 10:23:23 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",150133598-64 +151763899,53,15067196,Medical Incident,06/25/2015,06/25/2015,06/25/2015 10:42:20 PM,06/25/2015 10:45:18 PM,06/25/2015 10:45:33 PM,06/25/2015 10:45:44 PM,06/25/2015 10:49:40 PM,06/25/2015 10:58:38 PM,06/25/2015 11:08:38 PM,Code 2 Transport,06/25/2015 11:30:12 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",151763899-53 +141963175,B04,14068019,Alarms,07/15/2014,07/15/2014,07/15/2014 07:04:03 PM,07/15/2014 07:04:02 PM,07/15/2014 07:04:23 PM,07/15/2014 07:05:17 PM,07/15/2014 07:08:42 PM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Fire,07/15/2014 07:10:53 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",141963175-B04 +143462089,83,14123391,Medical Incident,12/12/2014,12/12/2014,12/12/2014 02:45:43 PM,12/12/2014 02:47:45 PM,12/12/2014 02:55:46 PM,12/12/2014 02:56:06 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Code 2 Transport,12/12/2014 02:56:08 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",143462089-83 +141741047,RC3,14059982,Medical Incident,06/23/2014,06/23/2014,06/23/2014 10:28:22 AM,06/23/2014 10:28:22 AM,06/23/2014 10:29:14 AM,06/23/2014 10:29:29 AM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,Patient Declined Transport,06/23/2014 10:35:25 AM,0 Block of GEORGE CT,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,10,10,Bayview Hunters Point,"(37.7307978040332, -122.382651551605)",141741047-RC3 +142803328,E13,14098632,Structure Fire,10/07/2014,10/07/2014,10/07/2014 09:17:59 PM,10/07/2014 09:17:59 PM,10/07/2014 09:18:10 PM,10/07/2014 09:19:02 PM,10/07/2014 09:21:37 PM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Fire,10/07/2014 09:22:48 PM,1ST ST/MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,true,Alarm,1,ENGINE,1,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",142803328-E13 +151041698,T08,15039349,Structure Fire,04/14/2015,04/14/2015,04/14/2015 01:03:55 PM,04/14/2015 01:04:20 PM,04/14/2015 01:05:01 PM,04/14/2015 01:06:46 PM,04/14/2015 01:09:47 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Fire,04/14/2015 01:13:33 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,5,3,6,South of Market,"(37.7850811742657, -122.406497767804)",151041698-T08 +141460721,87,14050070,Medical Incident,05/26/2014,05/26/2014,05/26/2014 08:32:50 AM,05/26/2014 08:34:27 AM,05/26/2014 08:34:58 AM,05/26/2014 08:35:17 AM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,Patient Declined Transport,05/26/2014 08:42:08 AM,24TH ST/UTAH ST,San Francisco,94110,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Mission,"(37.7530638329046, -122.405331103731)",141460721-87 +161003671,79,16039995,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:29:36 PM,04/09/2016 11:30:16 PM,04/09/2016 11:31:25 PM,04/09/2016 11:31:37 PM,04/09/2016 11:39:44 PM,04/09/2016 11:55:06 PM,04/10/2016 12:06:27 AM,Code 3 Transport,04/10/2016 01:05:16 AM,2300 Block of 32ND AVE,San Francisco,94116,B08,18,7531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7433678265215, -122.489754348894)",161003671-79 +160931890,85,16036878,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:46:39 PM,04/02/2016 01:48:16 PM,04/02/2016 01:52:08 PM,04/02/2016 01:52:16 PM,04/02/2016 01:59:24 PM,04/02/2016 02:19:43 PM,04/02/2016 03:09:34 PM,Code 2 Transport,04/02/2016 04:09:40 PM,1800 Block of ALABAMA ST,San Francisco,94110,B10,9,5723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7440407302527, -122.410294185886)",160931890-85 +141562903,B02,14053795,Alarms,06/05/2014,06/05/2014,06/05/2014 06:45:01 PM,06/05/2014 06:46:24 PM,06/05/2014 06:46:28 PM,06/05/2014 06:52:05 PM,06/05/2014 06:52:07 PM,04/25/2016 01:16:56 PM,04/25/2016 01:16:56 PM,Fire,06/05/2014 06:56:43 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,false,Alarm,1,CHIEF,3,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",141562903-B02 +152272575,E51,15086626,Alarms,08/15/2015,08/15/2015,08/15/2015 03:36:48 PM,08/15/2015 03:38:49 PM,08/15/2015 03:39:10 PM,08/15/2015 03:40:49 PM,08/15/2015 03:45:03 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Fire,08/15/2015 03:50:53 PM,1600 Block of BEACH ST,San Francisco,94123,B04,16,3556,3,3,3,true,Alarm,1,ENGINE,2,4,2,Marina,"(37.80469368505, -122.436278801878)",152272575-E51 +160930783,82,16036748,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:05:49 AM,04/02/2016 08:09:35 AM,04/02/2016 08:10:45 AM,04/02/2016 08:11:10 AM,04/02/2016 08:22:39 AM,04/02/2016 08:43:13 AM,04/02/2016 09:07:06 AM,Code 2 Transport,04/02/2016 09:38:50 AM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807300216, -122.378268018048)",160930783-82 +143451315,E09,14122777,Medical Incident,12/11/2014,12/11/2014,12/11/2014 09:57:23 AM,12/11/2014 09:59:00 AM,12/11/2014 10:02:02 AM,12/11/2014 10:03:01 AM,12/11/2014 10:07:42 AM,12/11/2014 10:24:59 AM,04/25/2016 01:13:31 PM,Code 3 Transport,12/11/2014 10:42:25 AM,200 Block of BRADFORD ST,San Francisco,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Bernal Heights,"(37.7385015279059, -122.409676930557)",143451315-E09 +152342955,E07,15089338,Structure Fire,08/22/2015,08/22/2015,08/22/2015 06:08:42 PM,08/22/2015 06:08:42 PM,08/22/2015 06:09:05 PM,08/22/2015 06:09:43 PM,08/22/2015 06:11:43 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Fire,08/22/2015 06:12:09 PM,18TH ST/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",152342955-E07 +142983556,77,14105356,Medical Incident,10/25/2014,10/25/2014,10/25/2014 09:40:45 PM,10/25/2014 09:40:45 PM,10/25/2014 09:43:06 PM,10/25/2014 09:43:17 PM,10/25/2014 09:52:21 PM,10/25/2014 09:57:12 PM,10/25/2014 10:07:41 PM,Code 2 Transport,10/25/2014 10:23:52 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",142983556-77 +142562876,T01,14089518,Alarms,09/13/2014,09/13/2014,09/13/2014 06:07:13 PM,09/13/2014 06:08:38 PM,09/13/2014 06:09:06 PM,09/13/2014 06:10:44 PM,09/13/2014 06:13:20 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 06:21:18 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",142562876-T01 +160972740,81,16038497,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:36:14 PM,04/06/2016 03:37:56 PM,04/06/2016 03:40:00 PM,04/06/2016 03:40:06 PM,04/06/2016 03:44:05 PM,04/06/2016 03:48:03 PM,04/06/2016 04:30:00 PM,Code 2 Transport,04/06/2016 04:36:52 PM,1200 Block of 7TH AVE,San Francisco,94122,B08,22,7332,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7655176924661, -122.464198007052)",160972740-81 +153060230,E01,15117435,Medical Incident,11/02/2015,11/01/2015,11/02/2015 02:33:19 AM,11/02/2015 02:35:16 AM,11/02/2015 02:35:34 AM,11/02/2015 02:38:19 AM,11/02/2015 02:40:25 AM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Code 2 Transport,11/02/2015 02:42:28 AM,300 Block of 3RD ST,San Francisco,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7833526602624, -122.398485675312)",153060230-E01 +151973587,62,15075287,Medical Incident,07/16/2015,07/16/2015,07/16/2015 09:49:13 PM,07/16/2015 09:49:13 PM,07/16/2015 09:49:13 PM,07/16/2015 09:49:13 PM,07/16/2015 09:49:13 PM,07/16/2015 10:03:49 PM,07/16/2015 10:18:18 PM,Code 2 Transport,07/16/2015 10:39:09 PM,700 Block of MARKET ST,San Francisco,94108,B99,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",151973587-62 +152062267,E01,15078542,Medical Incident,07/25/2015,07/25/2015,07/25/2015 03:17:57 PM,07/25/2015 03:18:21 PM,07/25/2015 03:19:54 PM,07/25/2015 03:19:54 PM,07/25/2015 03:20:56 PM,04/25/2016 01:09:16 PM,04/25/2016 01:09:16 PM,No Merit,07/25/2015 03:21:49 PM,CLEMENTINA ST/6TH ST,San Francisco,94103,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.778942761412, -122.406162859193)",152062267-E01 +150151762,87,15005953,Medical Incident,01/15/2015,01/15/2015,01/15/2015 01:03:32 PM,01/15/2015 01:04:50 PM,01/15/2015 01:05:25 PM,01/15/2015 01:06:15 PM,01/15/2015 01:13:44 PM,01/15/2015 01:30:24 PM,01/15/2015 01:54:20 PM,Code 2 Transport,01/15/2015 02:27:47 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",150151762-87 +142452190,E34,14085391,Medical Incident,09/02/2014,09/02/2014,09/02/2014 02:33:25 PM,09/02/2014 02:35:20 PM,09/02/2014 02:35:49 PM,09/02/2014 02:36:56 PM,09/02/2014 02:38:33 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,Code 2 Transport,09/02/2014 02:57:30 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",142452190-E34 +160942624,57,16037348,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:59:54 PM,04/03/2016 05:01:01 PM,04/03/2016 05:01:49 PM,04/03/2016 05:02:42 PM,04/03/2016 05:09:23 PM,04/03/2016 05:12:44 PM,04/03/2016 05:46:36 PM,Code 2 Transport,04/03/2016 06:22:43 PM,EVANS AV/CESAR CHAVEZ ST,San Francisco,94124,B10,9,6422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7496846238091, -122.397285418019)",160942624-57 +160974529,76,16038705,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:49:15 PM,04/06/2016 10:51:13 PM,04/06/2016 10:51:37 PM,04/06/2016 10:51:48 PM,04/06/2016 10:56:40 PM,04/06/2016 11:10:35 PM,04/06/2016 11:14:27 PM,Code 2 Transport,04/06/2016 11:36:46 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160974529-76 +153301795,56,15127054,Medical Incident,11/26/2015,11/26/2015,11/26/2015 03:36:07 PM,11/26/2015 03:38:35 PM,11/26/2015 03:40:06 PM,11/26/2015 03:40:50 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 2 Transport,11/26/2015 03:40:59 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7849474956973, -122.417785340586)",153301795-56 +153031010,62,15116141,Medical Incident,10/30/2015,10/30/2015,10/30/2015 09:13:16 AM,10/30/2015 09:13:16 AM,10/30/2015 09:14:06 AM,10/30/2015 09:14:28 AM,10/30/2015 09:26:11 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Patient Declined Transport,10/30/2015 09:50:16 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",153031010-62 +142202186,74,14076383,Medical Incident,08/08/2014,08/08/2014,08/08/2014 03:20:18 PM,08/08/2014 03:21:19 PM,08/08/2014 03:29:49 PM,08/08/2014 03:29:56 PM,08/08/2014 03:37:36 PM,08/08/2014 03:46:09 PM,08/08/2014 04:11:08 PM,Code 2 Transport,08/08/2014 04:12:29 PM,TURK BL/ROSELYN TR,San Francisco,94118,B05,21,4564,2,3,3,true,Non Life-threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.778277008364, -122.449767077852)",142202186-74 +161002505,AM18,16039864,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:47:45 PM,04/09/2016 05:47:45 PM,04/09/2016 05:48:07 PM,04/09/2016 05:49:35 PM,04/09/2016 05:53:56 PM,04/09/2016 06:07:36 PM,04/09/2016 06:20:38 PM,Code 2 Transport,04/09/2016 06:58:41 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7621440348149, -122.421551451612)",161002505-AM18 +153424128,D2,15131811,Structure Fire,12/08/2015,12/08/2015,12/08/2015 11:34:38 PM,12/08/2015 11:35:12 PM,12/08/2015 11:35:48 PM,12/08/2015 11:37:08 PM,12/08/2015 11:38:54 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/08/2015 11:40:38 PM,FRANKLIN ST/FELL ST,San Francisco,94102,B02,36,3213,3,3,3,false,Alarm,1,CHIEF,4,2,5,Hayes Valley,"(37.7761587640112, -122.421148424067)",153424128-D2 +152302581,E13,15087835,Alarms,08/18/2015,08/18/2015,08/18/2015 04:45:01 PM,08/18/2015 04:46:31 PM,08/18/2015 04:47:07 PM,08/18/2015 04:48:25 PM,08/18/2015 04:50:31 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Fire,08/18/2015 04:56:26 PM,0 Block of SANSOME ST,San Francisco,94104,B01,13,1164,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",152302581-E13 +141260362,E01,14042849,Alarms,05/06/2014,05/06/2014,05/06/2014 08:24:36 PM,05/06/2014 08:25:45 PM,05/06/2014 08:27:39 PM,05/06/2014 08:29:07 PM,05/06/2014 08:31:17 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Fire,05/06/2014 08:34:18 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141260362-E01 +160963341,63,16038142,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:43:47 PM,04/05/2016 06:45:32 PM,04/05/2016 06:45:55 PM,04/05/2016 06:46:53 PM,04/05/2016 06:49:24 PM,04/05/2016 07:03:34 PM,04/05/2016 07:23:00 PM,Code 2 Transport,04/05/2016 07:51:18 PM,0 Block of SHERMAN ST,San Francisco,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7766015774052, -122.405924386123)",160963341-63 +151012295,78,15038262,Medical Incident,04/11/2015,04/11/2015,04/11/2015 03:59:11 PM,04/11/2015 03:59:11 PM,04/11/2015 03:59:47 PM,04/11/2015 03:59:55 PM,04/11/2015 04:03:33 PM,04/11/2015 04:11:51 PM,04/11/2015 04:43:58 PM,Code 2 Transport,04/11/2015 05:32:26 PM,MISSION ST/19TH ST,San Francisco,94110,B02,7,5433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",151012295-78 +160991861,63,16039315,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:45:08 PM,04/08/2016 01:48:42 PM,04/08/2016 01:48:53 PM,04/08/2016 01:49:06 PM,04/08/2016 01:55:14 PM,04/08/2016 02:42:51 PM,04/08/2016 03:01:16 PM,Code 2 Transport,04/08/2016 03:56:42 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160991861-63 +151421563,62,15053962,Medical Incident,05/22/2015,05/22/2015,05/22/2015 11:45:44 AM,05/22/2015 11:46:56 AM,05/22/2015 11:47:24 AM,05/22/2015 11:47:35 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Patient Declined Transport,05/22/2015 11:49:24 AM,2400 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,2,2,2,true,Non Life-threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.7770932891379, -122.450891105827)",151421563-62 +160971653,71,16038390,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:42:36 AM,04/06/2016 11:44:04 AM,04/06/2016 11:44:13 AM,04/06/2016 11:44:33 AM,04/06/2016 11:50:03 AM,04/06/2016 12:03:59 PM,04/06/2016 12:14:21 PM,Code 2 Transport,04/06/2016 12:46:49 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160971653-71 +161000735,61,16039652,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:36:55 AM,04/09/2016 07:38:28 AM,04/09/2016 07:38:41 AM,04/09/2016 07:38:50 AM,04/09/2016 07:45:19 AM,04/09/2016 08:05:08 AM,04/09/2016 08:16:37 AM,Code 2 Transport,04/09/2016 08:30:35 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161000735-61 +160922791,71,16036543,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:36:32 PM,04/01/2016 05:38:53 PM,04/01/2016 05:40:22 PM,04/01/2016 05:40:34 PM,04/01/2016 06:01:15 PM,04/01/2016 06:09:40 PM,04/01/2016 06:23:33 PM,Code 2 Transport,04/01/2016 07:07:40 PM,DIVISADERO ST/OAK ST,San Francisco,94117,B05,21,4144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.773133492205, -122.437422938764)",160922791-71 +152991876,E11,15114778,Medical Incident,10/26/2015,10/26/2015,10/26/2015 01:06:32 PM,10/26/2015 01:08:03 PM,10/26/2015 01:18:23 PM,10/26/2015 01:19:24 PM,10/26/2015 01:22:13 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Code 2 Transport,10/26/2015 02:21:58 PM,2900 Block of 22ND ST,San Francisco,94110,B06,7,5473,2,3,3,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7557444481479, -122.412740693913)",152991876-E11 +150513360,E02,15019799,Medical Incident,02/20/2015,02/20/2015,02/20/2015 07:16:14 PM,02/20/2015 07:17:10 PM,02/20/2015 07:18:50 PM,02/20/2015 07:19:59 PM,02/20/2015 07:27:24 PM,04/25/2016 01:12:08 PM,04/25/2016 01:12:08 PM,Unable to Locate,02/20/2015 07:31:11 PM,MARKET ST/POWELL ST,San Francisco,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",150513360-E02 +143544782,E05,14126729,Medical Incident,12/20/2014,12/20/2014,12/20/2014 11:23:23 PM,12/20/2014 11:23:23 PM,12/20/2014 11:31:25 PM,12/20/2014 11:31:46 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Code 2 Transport,12/20/2014 11:33:29 PM,1100 Block of POLK ST,San Francisco,94109,B04,3,3121,2,E,3,true,Potentially Life-Threatening,1,ENGINE,6,4,3,Nob Hill,"(37.7875270531816, -122.419999491247)",143544782-E05 +141721731,B08,14059363,Structure Fire,06/21/2014,06/21/2014,06/21/2014 01:18:55 PM,06/21/2014 01:20:24 PM,06/21/2014 01:21:33 PM,06/21/2014 01:22:30 PM,06/21/2014 01:28:53 PM,04/25/2016 01:16:38 PM,04/25/2016 01:16:38 PM,Fire,06/21/2014 01:36:07 PM,0 Block of DENSLOWE DR,San Francisco,94132,B08,19,8726,3,3,3,false,Alarm,1,CHIEF,4,9,7,West of Twin Peaks,"(37.7246736689793, -122.474242189275)",141721731-B08 +152913406,E12,15111976,Medical Incident,10/18/2015,10/18/2015,10/18/2015 09:36:47 PM,10/18/2015 09:38:03 PM,10/18/2015 09:39:12 PM,10/18/2015 09:39:21 PM,10/18/2015 09:42:06 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Against Medical Advice,10/18/2015 09:54:16 PM,700 Block of SHRADER ST,San Francisco,94117,B05,12,4546,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7679729379823, -122.45164990634)",152913406-E12 +160950393,78,16037515,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:36:19 AM,04/04/2016 05:37:34 AM,04/04/2016 05:37:57 AM,04/04/2016 05:38:03 AM,04/04/2016 05:44:07 AM,04/04/2016 05:57:17 AM,04/04/2016 06:14:24 AM,Code 2 Transport,04/04/2016 06:25:34 AM,2300 Block of 18TH AVE,San Francisco,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7440272934242, -122.474757875278)",160950393-78 +150712994,72,15027222,Traffic Collision,03/12/2015,03/12/2015,03/12/2015 05:46:57 PM,03/12/2015 05:46:57 PM,03/12/2015 05:47:11 PM,03/12/2015 05:47:35 PM,03/12/2015 06:15:31 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Against Medical Advice,03/12/2015 06:34:42 PM,FREMONT ST/HARRISON ST,San Francisco,94105,B03,35,2137,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.78676548234, -122.392052962945)",150712994-72 +152361741,E41,15089904,Medical Incident,08/24/2015,08/24/2015,08/24/2015 12:23:04 PM,08/24/2015 12:23:27 PM,08/24/2015 12:23:46 PM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,Code 2 Transport,08/24/2015 12:26:10 PM,1400 Block of VAN NESS AVE,San Francisco,94109,B04,3,3156,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,2,Western Addition,"(37.7886856403573, -122.422163486157)",152361741-E41 +151922858,77,15073396,Medical Incident,07/11/2015,07/11/2015,07/11/2015 05:58:35 PM,07/11/2015 05:59:49 PM,07/11/2015 06:00:18 PM,07/11/2015 06:00:29 PM,07/11/2015 06:03:19 PM,07/11/2015 06:39:50 PM,07/11/2015 06:49:06 PM,Code 2 Transport,07/11/2015 07:25:56 PM,1200 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7912571694899, -122.414917737337)",151922858-77 +151801651,2R01,15068726,,06/29/2015,06/29/2015,06/29/2015 12:55:19 PM,06/29/2015 12:55:53 PM,06/29/2015 01:05:57 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Code 2 Transport,06/29/2015 01:07:30 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,ADMIN,0,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",151801651-2R01 +160974220,71,16038676,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:23:13 PM,04/06/2016 09:23:52 PM,04/06/2016 09:24:48 PM,04/06/2016 09:24:59 PM,04/06/2016 09:31:36 PM,04/06/2016 09:53:44 PM,04/06/2016 10:05:41 PM,Code 2 Transport,04/06/2016 10:34:11 PM,2700 Block of PINE ST,San Francisco,94115,B04,10,4156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7869521630601, -122.441071822801)",160974220-71 +150133327,68,15005304,Medical Incident,01/13/2015,01/13/2015,01/13/2015 07:34:35 PM,01/13/2015 07:38:17 PM,01/13/2015 07:39:47 PM,01/13/2015 07:39:56 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Code 2 Transport,01/13/2015 07:44:00 PM,1800 Block of VISITACION AVE,San Francisco,94134,B08,44,7523,2,2,2,true,Non Life-threatening,1,MEDIC,4,9,10,McLaren Park,"(37.7162666820869, -122.414215025813)",150133327-68 +160973619,KM05,16038613,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:39:37 PM,04/06/2016 06:40:10 PM,04/06/2016 06:44:40 PM,04/06/2016 06:44:40 PM,04/06/2016 06:49:12 PM,04/06/2016 06:55:49 PM,04/06/2016 07:23:57 PM,Code 2 Transport,04/06/2016 07:50:27 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160973619-KM05 +151071164,T11,15040415,Gas Leak (Natural and LP Gases),04/17/2015,04/17/2015,04/17/2015 09:50:20 AM,04/17/2015 09:51:53 AM,04/17/2015 09:52:05 AM,04/17/2015 09:54:39 AM,04/17/2015 10:04:04 AM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,Fire,04/17/2015 10:22:57 AM,700 Block of CORBETT AVE,San Francisco,94131,B06,24,526,3,3,3,false,Alarm,1,TRUCK,2,6,8,Twin Peaks,"(37.7552854398529, -122.442400038837)",151071164-T11 +142893471,53,14102000,Medical Incident,10/16/2014,10/16/2014,10/16/2014 08:24:34 PM,10/16/2014 08:24:34 PM,10/16/2014 08:25:17 PM,10/16/2014 08:25:24 PM,10/16/2014 08:30:34 PM,10/16/2014 08:34:17 PM,10/16/2014 08:51:40 PM,Code 2 Transport,10/16/2014 09:11:37 PM,4TH ST/BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7757873146535, -122.393355126399)",142893471-53 +143563026,E42,14127475,Medical Incident,12/22/2014,12/22/2014,12/22/2014 05:55:33 PM,12/22/2014 05:56:11 PM,12/22/2014 06:06:20 PM,12/22/2014 06:08:17 PM,12/22/2014 06:11:09 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Code 2 Transport,12/22/2014 06:14:05 PM,200 Block of BANKS ST,San Francisco,94110,B10,32,5727,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,9,Bernal Heights,"(37.7397664770684, -122.412789358109)",143563026-E42 +160921757,64,16036446,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:20:24 PM,04/01/2016 01:21:15 PM,04/01/2016 01:21:31 PM,04/01/2016 01:21:55 PM,04/01/2016 01:26:09 PM,04/01/2016 01:34:38 PM,04/01/2016 01:47:32 PM,Code 2 Transport,04/01/2016 02:20:59 PM,1700 Block of LA SALLE AVE,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7381169167757, -122.391416846144)",160921757-64 +150290838,E15,15011070,Traffic Collision,01/29/2015,01/29/2015,01/29/2015 08:34:06 AM,01/29/2015 08:35:23 AM,01/29/2015 08:35:39 AM,01/29/2015 08:36:56 AM,01/29/2015 08:39:14 AM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Code 2 Transport,01/29/2015 08:46:43 AM,SAN JOSE AV/GENEVA AV,San Francisco,94112,B09,15,8311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",150290838-E15 +160950228,KM07,16037495,Medical Incident,04/04/2016,04/03/2016,04/04/2016 03:02:06 AM,04/04/2016 03:02:54 AM,04/04/2016 03:03:52 AM,04/04/2016 03:04:34 AM,04/04/2016 03:10:33 AM,04/04/2016 03:35:35 AM,04/04/2016 03:54:03 AM,Code 2 Transport,04/04/2016 04:27:57 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160950228-KM07 +142613340,RC2,14091388,Medical Incident,09/18/2014,09/18/2014,09/18/2014 07:15:35 PM,09/18/2014 07:16:29 PM,09/18/2014 07:21:11 PM,09/18/2014 07:21:11 PM,09/18/2014 07:23:05 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,Code 2 Transport,09/18/2014 07:33:48 PM,600 Block of 27TH AVE,San Francisco,94121,B07,14,7222,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7771393848797, -122.486601211072)",142613340-RC2 +141660878,AM04,14057200,Traffic Collision,06/15/2014,06/15/2014,06/15/2014 09:29:51 AM,06/15/2014 09:30:47 AM,06/15/2014 09:35:09 AM,06/15/2014 09:35:09 AM,06/15/2014 09:50:32 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Patient Declined Transport,06/15/2014 09:52:32 AM,25TH AV/ANZA ST,San Francisco,94121,B07,14,7213,A,A,2,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7781658332143, -122.484595235477)",141660878-AM04 +143590595,B09,14128373,Structure Fire,12/25/2014,12/24/2014,12/25/2014 07:17:49 AM,12/25/2014 07:20:31 AM,12/25/2014 07:20:50 AM,12/25/2014 07:22:08 AM,12/25/2014 07:27:37 AM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,Fire,12/25/2014 07:39:40 AM,1600 Block of YORK ST,San Francisco,94110,B06,9,5672,3,3,3,false,Alarm,1,CHIEF,4,6,9,Bernal Heights,"(37.7472126200736, -122.406528665244)",143590595-B09 +141661085,E36,14057223,Structure Fire,06/15/2014,06/15/2014,06/15/2014 10:55:34 AM,06/15/2014 10:56:42 AM,06/15/2014 10:57:07 AM,06/15/2014 10:58:24 AM,06/15/2014 10:59:56 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Fire,06/15/2014 11:12:44 AM,500 Block of 14TH ST,San Francisco,94103,B02,6,5214,3,3,3,true,Alarm,1,ENGINE,3,2,8,Mission,"(37.7679989787163, -122.425450057275)",141661085-E36 +150450614,64,15017388,Medical Incident,02/14/2015,02/13/2015,02/14/2015 04:27:48 AM,02/14/2015 04:27:48 AM,02/14/2015 04:28:24 AM,02/14/2015 04:28:33 AM,02/14/2015 04:37:15 AM,02/14/2015 05:34:49 AM,02/14/2015 05:34:52 AM,Code 2 Transport,02/14/2015 05:35:00 AM,100 Block of LOUISBURG ST,San Francisco,94112,B09,15,8315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7210924859099, -122.449637733495)",150450614-64 +151412824,E02,15053671,Medical Incident,05/21/2015,05/21/2015,05/21/2015 04:45:49 PM,05/21/2015 04:47:38 PM,05/21/2015 04:48:44 PM,05/21/2015 04:49:36 PM,05/21/2015 04:56:34 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Patient Declined Transport,05/21/2015 05:07:53 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",151412824-E02 +150903325,78,15034408,Medical Incident,03/31/2015,03/31/2015,03/31/2015 08:06:57 PM,03/31/2015 08:08:30 PM,03/31/2015 08:11:38 PM,03/31/2015 08:11:45 PM,03/31/2015 08:35:33 PM,03/31/2015 08:46:52 PM,03/31/2015 09:06:20 PM,Code 2 Transport,03/31/2015 09:26:00 PM,1500 Block of 15TH AVE,San Francisco,94122,B08,22,7351,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7586227526525, -122.471702948704)",150903325-78 +160923548,85,16036614,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:27:44 PM,04/01/2016 09:29:13 PM,04/01/2016 09:29:40 PM,04/01/2016 09:29:48 PM,04/01/2016 09:46:11 PM,04/01/2016 09:58:54 PM,04/01/2016 10:23:35 PM,Code 2 Transport,04/01/2016 10:56:52 PM,400 Block of DETROIT ST,San Francisco,94112,B09,15,8222,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7308894613147, -122.444365830843)",160923548-85 +142403483,E17,14083650,Vehicle Fire,08/28/2014,08/28/2014,08/28/2014 09:48:07 PM,08/28/2014 09:48:54 PM,08/28/2014 09:49:04 PM,08/28/2014 09:50:18 PM,08/28/2014 09:53:28 PM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,Fire,08/28/2014 10:31:51 PM,700 Block of INGERSON AVE,San Francisco,94124,B10,17,6642,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7168759037258, -122.389247520149)",142403483-E17 +160982370,55,16038973,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:55:09 PM,04/07/2016 02:56:43 PM,04/07/2016 02:57:24 PM,04/07/2016 02:57:32 PM,04/07/2016 03:06:51 PM,04/07/2016 03:17:08 PM,04/07/2016 03:28:13 PM,Code 2 Transport,04/07/2016 04:07:22 PM,1400 Block of GRANT AVE,San Francisco,94133,B01,28,1266,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8001795612037, -122.40742149758)",160982370-55 +161001557,66,16039754,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:38:08 PM,04/09/2016 12:43:01 PM,04/09/2016 12:43:10 PM,04/09/2016 12:43:32 PM,04/09/2016 12:54:48 PM,04/09/2016 01:53:25 PM,04/09/2016 02:01:02 PM,Code 2 Transport,04/09/2016 02:26:08 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,2,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",161001557-66 +143260922,KM01,14115412,Medical Incident,11/22/2014,11/22/2014,11/22/2014 08:45:23 AM,11/22/2014 08:47:32 AM,11/22/2014 08:48:54 AM,11/22/2014 08:49:30 AM,11/22/2014 08:54:48 AM,11/22/2014 09:03:16 AM,11/22/2014 09:24:49 AM,Code 2 Transport,11/22/2014 10:00:08 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143260922-KM01 +160962229,52,16038049,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:33:02 PM,04/05/2016 02:35:10 PM,04/05/2016 02:36:02 PM,04/05/2016 02:36:11 PM,04/05/2016 02:46:00 PM,04/05/2016 03:00:22 PM,04/05/2016 03:26:16 PM,Code 2 Transport,04/05/2016 03:51:20 PM,100 Block of MONETA WAY,San Francisco,94112,B09,33,8347,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7125970808133, -122.450510469126)",160962229-52 +160960290,KM07,16037870,Medical Incident,04/05/2016,04/04/2016,04/05/2016 03:44:29 AM,04/05/2016 03:45:46 AM,04/05/2016 03:46:05 AM,04/05/2016 03:47:23 AM,04/05/2016 03:59:39 AM,04/05/2016 04:15:42 AM,04/05/2016 04:32:51 AM,Code 2 Transport,04/05/2016 05:06:48 AM,0 Block of YERBA BUENA LN,San Francisco,94103,B03,1,2178,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7856865420014, -122.404306322623)",160960290-KM07 +160952435,85,16037678,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:22:39 PM,04/04/2016 03:25:24 PM,04/04/2016 03:26:20 PM,04/04/2016 03:26:27 PM,04/04/2016 03:38:28 PM,04/04/2016 04:07:37 PM,04/04/2016 04:20:56 PM,Code 2 Transport,04/04/2016 05:05:33 PM,400 Block of 18TH AVE,San Francisco,94121,B07,31,7161,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",160952435-85 +161001019,62,16039684,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:40:03 AM,04/09/2016 09:41:51 AM,04/09/2016 09:42:03 AM,04/09/2016 09:42:18 AM,04/09/2016 09:50:30 AM,04/09/2016 10:03:58 AM,04/09/2016 10:33:40 AM,Code 2 Transport,04/09/2016 11:13:27 AM,2100 Block of LEAVENWORTH ST,San Francisco,94109,B01,28,1532,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8007942724264, -122.417760921659)",161001019-62 +141391253,E03,14047628,Structure Fire,05/19/2014,05/19/2014,05/19/2014 11:14:50 AM,05/19/2014 11:16:13 AM,05/19/2014 11:16:56 AM,05/19/2014 11:19:43 AM,05/19/2014 11:19:43 AM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,Fire,05/19/2014 11:39:27 AM,900 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,3,3,3,false,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7833939650918, -122.422536931307)",141391253-E03 +142410355,RC2,14083720,Medical Incident,08/29/2014,08/28/2014,08/29/2014 03:09:23 AM,08/29/2014 03:12:19 AM,08/29/2014 03:12:39 AM,08/29/2014 03:13:29 AM,08/29/2014 03:25:43 AM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,Code 3 Transport,08/29/2014 03:28:04 AM,2900 Block of 19TH AVE,San Francisco,94132,B08,19,7413,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,7,West of Twin Peaks,"(37.7335450689603, -122.474892764584)",142410355-RC2 +151660723,82,15063389,Medical Incident,06/15/2015,06/15/2015,06/15/2015 08:23:30 AM,06/15/2015 08:25:06 AM,06/15/2015 08:25:15 AM,06/15/2015 08:25:44 AM,06/15/2015 08:30:13 AM,06/15/2015 08:50:34 AM,06/15/2015 09:15:55 AM,Code 2 Transport,06/15/2015 09:44:12 AM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",151660723-82 +143572122,E28,14127800,Alarms,12/23/2014,12/23/2014,12/23/2014 02:19:56 PM,12/23/2014 02:21:33 PM,12/23/2014 02:21:55 PM,12/23/2014 02:22:55 PM,12/23/2014 02:24:39 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/23/2014 02:41:34 PM,300 Block of FRANCISCO ST,San Francisco,94133,B01,28,131,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8050285945628, -122.411146080313)",143572122-E28 +150540551,RS1,15020633,Structure Fire,02/23/2015,02/22/2015,02/23/2015 07:18:38 AM,02/23/2015 07:19:29 AM,02/23/2015 07:19:39 AM,02/23/2015 07:21:34 AM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Fire,02/23/2015 07:26:15 AM,800 Block of 32ND AVE,San Francisco,94121,B07,14,7242,3,3,3,false,Alarm,1,RESCUE SQUAD,10,7,1,Outer Richmond,"(37.7731638886859, -122.491686815577)",150540551-RS1 +142810963,B02,14098787,Alarms,10/08/2014,10/08/2014,10/08/2014 09:31:11 AM,10/08/2014 09:32:40 AM,10/08/2014 09:33:14 AM,10/08/2014 09:38:42 AM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Fire,10/08/2014 09:42:02 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",142810963-B02 +143542893,KM01,14126565,Medical Incident,12/20/2014,12/20/2014,12/20/2014 03:05:20 PM,12/20/2014 03:06:26 PM,12/20/2014 03:07:22 PM,12/20/2014 03:08:04 PM,12/20/2014 03:11:24 PM,12/20/2014 03:26:07 PM,12/20/2014 03:41:54 PM,Code 2 Transport,12/20/2014 04:32:09 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",143542893-KM01 +152872368,E03,15110308,Medical Incident,10/14/2015,10/14/2015,10/14/2015 02:15:05 PM,10/14/2015 02:17:02 PM,10/14/2015 02:18:53 PM,10/14/2015 02:19:12 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 02:27:16 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",152872368-E03 +142042977,KM14,14070717,Water Rescue,07/23/2014,07/23/2014,07/23/2014 05:43:25 PM,07/23/2014 05:47:18 PM,07/23/2014 05:49:50 PM,07/23/2014 05:51:07 PM,07/23/2014 06:00:31 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/23/2014 06:28:13 PM,300 Block of GREAT HWY,San Francisco,94121,B07,34,7314,3,3,3,false,Fire,1,PRIVATE,7,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",142042977-KM14 +143383466,E10,14120130,Medical Incident,12/04/2014,12/04/2014,12/04/2014 08:20:58 PM,12/04/2014 08:22:33 PM,12/04/2014 08:26:07 PM,12/04/2014 08:27:08 PM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,Code 2 Transport,12/04/2014 08:29:10 PM,400 Block of 41ST AVE,San Francisco,94121,B07,34,7264,2,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7803675145572, -122.502018689071)",143383466-E10 +141060362,AM08,14035893,Medical Incident,04/16/2014,04/16/2014,04/16/2014 07:12:03 PM,04/16/2014 07:13:37 PM,04/16/2014 07:16:13 PM,04/16/2014 07:16:47 PM,04/16/2014 07:28:28 PM,04/16/2014 07:41:42 PM,04/16/2014 08:19:04 PM,Code 2 Transport,04/16/2014 08:45:31 PM,700 Block of GEARY ST,SAN FRANCISCO,94109,B04,3,1556,,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",141060362-AM08 +142681115,E14,14093866,Medical Incident,09/25/2014,09/25/2014,09/25/2014 10:19:40 AM,09/25/2014 10:21:44 AM,09/25/2014 10:22:30 AM,09/25/2014 10:23:04 AM,09/25/2014 10:23:04 AM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Cancelled,09/25/2014 10:29:56 AM,4100 Block of CLEMENT ST,San Francisco,94121,B07,34,7265,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",142681115-E14 +151052816,E34,15039761,Outside Fire,04/15/2015,04/15/2015,04/15/2015 05:03:07 PM,04/15/2015 05:08:22 PM,04/15/2015 05:08:39 PM,04/15/2015 05:10:13 PM,04/15/2015 05:13:43 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Fire,04/15/2015 05:16:41 PM,3200 Block of CLEMENT ST,San Francisco,94121,B07,34,7247,3,3,3,false,Fire,1,ENGINE,1,7,1,Lincoln Park,"(37.781656621504, -122.493997393675)",151052816-E34 +152422677,B07,15092392,Traffic Collision,08/30/2015,08/30/2015,08/30/2015 05:07:17 PM,08/30/2015 05:07:58 PM,08/30/2015 05:08:22 PM,08/30/2015 05:09:32 PM,08/30/2015 05:15:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Code 2 Transport,08/30/2015 05:36:57 PM,LINCOLN WY/48TH AV,San Francisco,94122,B08,23,7722,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7640760213768, -122.508331368123)",152422677-B07 +152430466,E36,15092570,Medical Incident,08/31/2015,08/30/2015,08/31/2015 04:38:07 AM,08/31/2015 04:39:41 AM,08/31/2015 04:39:58 AM,08/31/2015 04:42:05 AM,08/31/2015 04:44:57 AM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Code 2 Transport,08/31/2015 04:49:51 AM,200 Block of LARKIN ST,San Francisco,94102,B02,36,1645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",152430466-E36 +152392444,E44,15091075,Vehicle Fire,08/27/2015,08/27/2015,08/27/2015 03:26:27 PM,08/27/2015 03:28:08 PM,08/27/2015 03:28:25 PM,08/27/2015 03:29:15 PM,08/27/2015 03:31:14 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/27/2015 03:50:58 PM,BAYSHORE BL/HESTER AV,San Francisco,94134,B10,44,6271,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7135840393129, -122.400016691724)",152392444-E44 +160932209,AM16,16036915,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:20:54 PM,04/02/2016 03:21:45 PM,04/02/2016 03:23:40 PM,04/02/2016 03:24:38 PM,04/02/2016 03:30:36 PM,04/02/2016 03:41:22 PM,04/02/2016 03:55:38 PM,Code 2 Transport,04/02/2016 04:33:28 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160932209-AM16 +142901829,E08,14102258,Other,10/17/2014,10/17/2014,10/17/2014 01:40:22 PM,10/17/2014 01:42:23 PM,10/17/2014 01:42:36 PM,10/17/2014 01:43:57 PM,10/17/2014 01:47:10 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Fire,10/17/2014 01:50:52 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7786852295711, -122.405938165868)",142901829-E08 +143523353,KM11,14125896,Medical Incident,12/18/2014,12/18/2014,12/18/2014 07:23:07 PM,12/18/2014 07:24:40 PM,12/18/2014 07:25:06 PM,12/18/2014 07:25:50 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Code 2 Transport,12/18/2014 07:26:27 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",143523353-KM11 +143332199,RC3,14118064,Medical Incident,11/29/2014,11/29/2014,11/29/2014 03:42:53 PM,11/29/2014 03:42:53 PM,11/29/2014 03:43:14 PM,11/29/2014 03:43:24 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,Medical Examiner,11/29/2014 03:52:42 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",143332199-RC3 +143590271,E06,14128330,Structure Fire,12/25/2014,12/24/2014,12/25/2014 02:37:34 AM,12/25/2014 02:37:34 AM,12/25/2014 02:37:55 AM,12/25/2014 02:39:02 AM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,Fire,12/25/2014 02:51:39 AM,3700 Block of 18TH ST,San Francisco,94114,B06,6,541,3,3,3,true,Alarm,1,ENGINE,3,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",143590271-E06 +141660966,E13,14057213,Medical Incident,06/15/2014,06/15/2014,06/15/2014 10:04:30 AM,06/15/2014 10:05:04 AM,06/15/2014 10:06:15 AM,06/15/2014 10:07:06 AM,06/15/2014 10:08:30 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Code 2 Transport,06/15/2014 10:25:25 AM,CALIFORNIA ST/BATTERY ST,San Francisco,94111,B01,13,1162,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",141660966-E13 +160972658,56,16038491,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:20:43 PM,04/06/2016 03:22:13 PM,04/06/2016 03:22:22 PM,04/06/2016 03:22:57 PM,04/06/2016 03:29:33 PM,04/06/2016 03:44:26 PM,04/06/2016 04:03:20 PM,Code 2 Transport,04/06/2016 04:33:05 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",160972658-56 +152781826,E22,15106662,Medical Incident,10/05/2015,10/05/2015,10/05/2015 01:27:07 PM,10/05/2015 01:27:58 PM,10/05/2015 01:29:16 PM,10/05/2015 01:29:21 PM,10/05/2015 01:32:40 PM,04/25/2016 01:07:57 PM,04/25/2016 01:07:57 PM,Code 2 Transport,10/05/2015 01:33:01 PM,1700 Block of 8TH AVE,San Francisco,94122,B08,22,7336,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7556932552649, -122.464586495079)",152781826-E22 +141562965,66,14053800,Medical Incident,06/05/2014,06/05/2014,06/05/2014 07:01:03 PM,06/05/2014 07:02:21 PM,06/05/2014 07:02:55 PM,06/05/2014 07:03:26 PM,06/05/2014 07:07:29 PM,06/05/2014 07:27:38 PM,06/05/2014 08:00:14 PM,Code 2 Transport,06/05/2014 08:07:41 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",141562965-66 +160973149,55,16038547,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:01:22 PM,04/06/2016 05:04:28 PM,04/06/2016 05:04:52 PM,04/06/2016 05:05:25 PM,04/06/2016 05:09:21 PM,04/06/2016 05:16:42 PM,04/06/2016 05:24:40 PM,Code 2 Transport,04/06/2016 05:40:38 PM,0 Block of VAN NESS AVE,San Francisco,94102,B02,36,3211,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7756495714097, -122.419512541033)",160973149-55 +142102652,KM14,14072884,Medical Incident,07/29/2014,07/29/2014,07/29/2014 05:55:34 PM,07/29/2014 05:56:57 PM,07/29/2014 05:57:19 PM,07/29/2014 05:57:56 PM,07/29/2014 06:07:33 PM,07/29/2014 06:15:34 PM,07/29/2014 06:30:33 PM,Code 2 Transport,07/29/2014 06:51:28 PM,500 Block of BRYANT ST,San Francisco,94107,B03,8,2217,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7806714111875, -122.39656521118)",142102652-KM14 +143450245,T06,14122561,Citizen Assist / Service Call,12/11/2014,12/10/2014,12/11/2014 02:09:57 AM,12/11/2014 02:10:12 AM,12/11/2014 02:10:42 AM,12/11/2014 02:13:28 AM,12/11/2014 02:13:28 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/11/2014 02:20:14 AM,SANCHEZ ST/MARKET ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7658679882367, -122.431025473299)",143450245-T06 +142173702,84,14075396,Medical Incident,08/05/2014,08/05/2014,08/05/2014 10:26:11 PM,08/05/2014 10:27:38 PM,08/05/2014 10:28:58 PM,08/05/2014 10:29:05 PM,08/05/2014 10:37:03 PM,08/05/2014 10:43:45 PM,08/05/2014 10:58:16 PM,Code 2 Transport,08/05/2014 11:32:50 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",142173702-84 +152202424,T08,15083881,Structure Fire,08/08/2015,08/08/2015,08/08/2015 04:25:35 PM,08/08/2015 04:25:50 PM,08/08/2015 04:26:08 PM,08/08/2015 04:27:57 PM,08/08/2015 04:31:10 PM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Fire,08/08/2015 04:34:23 PM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,5,3,6,South of Market,"(37.7810688918781, -122.407387172098)",152202424-T08 +153290415,RC2,15126495,Structure Fire,11/25/2015,11/24/2015,11/25/2015 06:19:18 AM,11/25/2015 06:20:04 AM,11/25/2015 06:25:12 AM,11/25/2015 06:27:28 AM,11/25/2015 06:34:43 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 07:07:27 AM,1400 Block of 42ND AVE,San Francisco,94122,B08,23,7631,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,8,4,Sunset/Parkside,"(37.759683719968, -122.501503448088)",153290415-RC2 +160922816,52,16036545,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:43:58 PM,04/01/2016 05:43:58 PM,04/01/2016 05:45:42 PM,04/01/2016 05:46:06 PM,04/01/2016 06:00:55 PM,04/01/2016 06:21:30 PM,04/01/2016 06:37:25 PM,Code 2 Transport,04/01/2016 07:12:39 PM,WELSH ST/5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.777371993601, -122.399762587518)",160922816-52 +142701539,E40,14094681,Medical Incident,09/27/2014,09/27/2014,09/27/2014 11:31:12 AM,09/27/2014 11:31:12 AM,09/27/2014 11:31:12 AM,09/27/2014 11:31:12 AM,09/27/2014 11:31:12 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 11:56:34 AM,30TH AV/NORIEGA ST,San Francisco,94122,B08,18,7534,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7537209038952, -122.48826407821)",142701539-E40 +160942934,88,16037373,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:32:14 PM,04/03/2016 06:32:14 PM,04/03/2016 06:32:40 PM,04/03/2016 06:32:53 PM,04/03/2016 06:40:09 PM,04/03/2016 06:47:39 PM,04/03/2016 07:07:13 PM,Code 2 Transport,04/03/2016 07:46:27 PM,100 Block of SCHWERIN ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7114235777776, -122.411060135574)",160942934-88 +160973046,81,16038535,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:41:02 PM,04/06/2016 04:42:27 PM,04/06/2016 04:42:36 PM,04/06/2016 04:46:39 PM,04/06/2016 04:47:34 PM,04/06/2016 04:58:28 PM,04/06/2016 05:27:40 PM,Code 3 Transport,04/06/2016 05:58:40 PM,400 Block of 20TH AVE,San Francisco,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7793747233139, -122.479242794814)",160973046-81 +150263335,E06,15010178,Medical Incident,01/26/2015,01/26/2015,01/26/2015 07:44:44 PM,01/26/2015 07:46:53 PM,01/26/2015 07:47:40 PM,01/26/2015 07:49:03 PM,01/26/2015 07:50:27 PM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Code 3 Transport,01/26/2015 08:02:13 PM,GERMANIA ST/STEINER ST,San Francisco,94117,B05,6,3526,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7705009598645, -122.431810934846)",150263335-E06 +141532241,83,14052629,Medical Incident,06/02/2014,06/02/2014,06/02/2014 04:17:19 PM,06/02/2014 04:18:41 PM,06/02/2014 04:19:32 PM,06/02/2014 04:19:48 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,No Merit,06/02/2014 04:27:28 PM,600 Block of JOOST AVE,San Francisco,94127,B09,15,8241,3,3,3,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7322661984276, -122.450010655402)",141532241-83 +160923836,76,16036640,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:43:51 PM,04/01/2016 10:43:51 PM,04/01/2016 10:44:04 PM,04/01/2016 10:44:11 PM,04/01/2016 10:54:52 PM,04/01/2016 11:12:06 PM,04/01/2016 11:19:03 PM,Code 2 Transport,04/01/2016 11:51:08 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160923836-76 +152351891,E17,15089604,Medical Incident,08/23/2015,08/23/2015,08/23/2015 01:45:57 PM,08/23/2015 01:47:09 PM,08/23/2015 01:47:28 PM,08/23/2015 01:49:05 PM,08/23/2015 01:53:38 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Code 2 Transport,08/23/2015 02:09:41 PM,HARBOR RD/NORTHRIDGE RD,San Francisco,94124,B10,17,6633,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7310098713367, -122.376999546443)",152351891-E17 +150133438,RS2,15005316,Structure Fire,01/13/2015,01/13/2015,01/13/2015 08:16:00 PM,01/13/2015 08:16:56 PM,01/13/2015 08:17:22 PM,01/13/2015 08:18:30 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Fire,01/13/2015 08:22:32 PM,1800 Block of JEFFERSON ST,San Francisco,94123,B04,16,4112,3,3,3,false,Alarm,1,RESCUE SQUAD,9,4,2,Marina,"(37.8046896513344, -122.442947872587)",150133438-RS2 +143270515,84,14115774,Medical Incident,11/23/2014,11/22/2014,11/23/2014 03:00:30 AM,11/23/2014 03:03:19 AM,11/23/2014 03:06:32 AM,11/23/2014 03:06:37 AM,11/23/2014 03:18:31 AM,11/23/2014 03:48:35 AM,11/23/2014 04:07:05 AM,Code 2 Transport,11/23/2014 04:14:02 AM,400 Block of PENINSULA AVE,San Francisco,94134,B10,44,6272,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7102260075137, -122.399658103785)",143270515-84 +142901662,B06,14102237,Alarms,10/17/2014,10/17/2014,10/17/2014 12:51:02 PM,10/17/2014 12:52:12 PM,10/17/2014 12:52:59 PM,10/17/2014 12:54:44 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Fire,10/17/2014 12:59:15 PM,100 Block of CASELLI AVE,San Francisco,94114,B06,24,5412,3,3,3,false,Alarm,1,CHIEF,3,6,8,Castro/Upper Market,"(37.7595848958756, -122.441893547895)",142901662-B06 +160980671,55,16038797,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:06:16 AM,04/07/2016 07:09:20 AM,04/07/2016 07:09:45 AM,04/07/2016 07:09:51 AM,04/07/2016 07:17:27 AM,04/07/2016 07:29:22 AM,04/07/2016 07:58:03 AM,Code 3 Transport,04/07/2016 08:45:18 AM,1900 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",160980671-55 +141160384,E21,14039340,Citizen Assist / Service Call,04/26/2014,04/26/2014,04/26/2014 11:22:33 PM,04/26/2014 11:23:31 PM,04/26/2014 11:26:46 PM,04/26/2014 11:27:51 PM,04/26/2014 11:30:21 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/26/2014 11:33:11 PM,700 Block of PARKER AVE,SAN FRANCISCO,94118,B05,21,4542,3,3,3,false,Alarm,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7753639647551, -122.452955343611)",141160384-E21 +160921582,63,16036428,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:31:26 PM,04/01/2016 12:32:52 PM,04/01/2016 12:33:08 PM,04/01/2016 12:33:26 PM,04/01/2016 12:39:16 PM,04/01/2016 01:26:37 PM,04/01/2016 01:26:54 PM,Code 3 Transport,04/01/2016 01:57:59 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160921582-63 +152121062,E17,15080676,Citizen Assist / Service Call,07/31/2015,07/31/2015,07/31/2015 10:04:21 AM,07/31/2015 10:05:05 AM,07/31/2015 10:05:52 AM,07/31/2015 10:09:15 AM,07/31/2015 10:13:34 AM,04/25/2016 01:09:11 PM,04/25/2016 01:09:11 PM,Fire,07/31/2015 10:19:55 AM,700 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7168290872241, -122.396710749994)",152121062-E17 +143253976,B09,14115300,Structure Fire,11/21/2014,11/21/2014,11/21/2014 11:17:40 PM,11/21/2014 11:18:42 PM,11/21/2014 11:21:35 PM,11/21/2014 11:21:40 PM,11/21/2014 11:27:19 PM,04/25/2016 01:13:53 PM,04/25/2016 01:13:53 PM,Fire,11/21/2014 11:52:16 PM,100 Block of CAMBON DR,San Francisco,94132,B08,19,8428,3,3,3,false,Alarm,1,CHIEF,6,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",143253976-B09 +142082245,E06,14072129,Medical Incident,07/27/2014,07/27/2014,07/27/2014 04:02:52 PM,07/27/2014 04:06:16 PM,07/27/2014 04:06:43 PM,07/27/2014 04:07:46 PM,07/27/2014 04:12:35 PM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Code 2 Transport,07/27/2014 04:12:43 PM,COLE ST/HAIGHT ST,San Francisco,94117,B05,12,4533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",142082245-E06 +160970654,88,16038298,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:33:33 AM,04/06/2016 07:35:21 AM,04/06/2016 07:35:51 AM,04/06/2016 07:35:55 AM,04/06/2016 07:44:47 AM,04/06/2016 07:48:59 AM,04/06/2016 08:08:40 AM,Code 2 Transport,04/06/2016 08:39:11 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160970654-88 +150780572,AM24,15029796,Medical Incident,03/19/2015,03/18/2015,03/19/2015 06:24:27 AM,03/19/2015 06:28:09 AM,03/19/2015 06:29:16 AM,03/19/2015 06:30:19 AM,03/19/2015 06:40:08 AM,03/19/2015 06:51:33 AM,03/19/2015 07:03:19 AM,Code 2 Transport,03/19/2015 07:23:39 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",150780572-AM24 +151413476,E29,15053730,Fuel Spill,05/21/2015,05/21/2015,05/21/2015 07:32:11 PM,05/21/2015 07:32:11 PM,05/21/2015 07:32:42 PM,05/21/2015 07:34:46 PM,05/21/2015 07:37:08 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 07:43:51 PM,1000 Block of BRANNAN ST,San Francisco,94103,B02,29,2346,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7697790272579, -122.407245586705)",151413476-E29 +160923462,86,16036609,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:03:30 PM,04/01/2016 09:05:28 PM,04/01/2016 09:06:17 PM,04/01/2016 09:06:27 PM,04/01/2016 09:09:59 PM,04/01/2016 09:40:14 PM,04/01/2016 10:02:23 PM,Code 2 Transport,04/01/2016 10:29:38 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7824182864419, -122.403869611535)",160923462-86 +150281258,E43,15010715,Medical Incident,01/28/2015,01/28/2015,01/28/2015 10:25:45 AM,01/28/2015 10:28:07 AM,01/28/2015 10:28:26 AM,01/28/2015 10:32:10 AM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,Code 2 Transport,01/28/2015 10:37:03 AM,100 Block of BRITTON ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",150281258-E43 +152303133,T01,15087890,Alarms,08/18/2015,08/18/2015,08/18/2015 07:13:26 PM,08/18/2015 07:15:03 PM,08/18/2015 07:15:54 PM,08/18/2015 07:18:06 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Fire,08/18/2015 07:25:50 PM,600 Block of MARKET ST,San Francisco,94104,B03,1,2211,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",152303133-T01 +160981650,63,16038896,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:52:10 AM,04/07/2016 11:52:10 AM,04/07/2016 11:56:29 AM,04/07/2016 11:56:37 AM,04/07/2016 12:09:30 PM,04/07/2016 12:18:26 PM,04/07/2016 12:35:33 PM,Code 2 Transport,04/07/2016 12:54:41 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160981650-63 +160990596,KM13,16039204,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:28:36 AM,04/08/2016 07:29:05 AM,04/08/2016 07:29:32 AM,04/08/2016 07:29:34 AM,04/08/2016 07:34:45 AM,04/08/2016 07:55:25 AM,04/08/2016 08:17:03 AM,Code 2 Transport,04/08/2016 08:41:09 AM,400 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7785884194197, -122.424165131998)",160990596-KM13 +142971564,T01,14104753,Alarms,10/24/2014,10/24/2014,10/24/2014 12:17:10 PM,10/24/2014 12:19:31 PM,10/24/2014 12:19:44 PM,10/24/2014 12:21:52 PM,10/24/2014 12:24:55 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Fire,10/24/2014 12:27:43 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Alarm,1,TRUCK,1,2,6,South of Market,"(37.7771214885462, -122.413681109495)",142971564-T01 +152170933,E32,15082527,Electrical Hazard,08/05/2015,08/05/2015,08/05/2015 09:01:46 AM,08/05/2015 09:02:52 AM,08/05/2015 09:04:02 AM,08/05/2015 09:04:46 AM,08/05/2015 09:08:39 AM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/05/2015 09:14:13 AM,200 Block of NEY ST,San Francisco,94112,B09,32,5682,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7302743599027, -122.424439950124)",152170933-E32 +150593704,E35,15022727,Medical Incident,02/28/2015,02/28/2015,02/28/2015 10:50:33 PM,02/28/2015 10:50:44 PM,02/28/2015 10:51:33 PM,02/28/2015 10:53:25 PM,02/28/2015 10:56:46 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Code 2 Transport,02/28/2015 11:00:36 PM,100 Block of THE EMBARCADERO,San Francisco,94111,B03,35,2131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7953080071145, -122.3938439729)",150593704-E35 +150734159,E05,15028184,Medical Incident,03/14/2015,03/14/2015,03/14/2015 10:23:55 PM,03/14/2015 10:24:10 PM,03/14/2015 10:25:10 PM,03/14/2015 10:26:42 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,Cancelled,03/14/2015 10:27:40 PM,500 Block of DIVISADERO ST,San Francisco,94117,B05,21,4145,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Hayes Valley,"(37.7745415617003, -122.437589912285)",150734159-E05 +160951389,62,16037594,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:17:45 AM,04/04/2016 11:18:01 AM,04/04/2016 11:18:27 AM,04/04/2016 11:18:53 AM,04/04/2016 11:21:31 AM,04/04/2016 11:37:37 AM,04/04/2016 11:21:31 AM,Code 2 Transport,04/04/2016 12:32:50 PM,200 Block of CAPP ST,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7627024067539, -122.418417366729)",160951389-62 +141770761,B06,14061011,Alarms,06/26/2014,06/26/2014,06/26/2014 08:42:19 AM,06/26/2014 08:43:43 AM,06/26/2014 08:44:55 AM,06/26/2014 08:45:49 AM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 08:51:29 AM,1400 Block of DIAMOND ST,San Francisco,94131,B06,26,5557,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7459652262236, -122.435734840559)",141770761-B06 +143183116,E24,14112740,Medical Incident,11/14/2014,11/14/2014,11/14/2014 06:35:27 PM,11/14/2014 06:35:46 PM,11/14/2014 06:36:24 PM,11/14/2014 06:37:41 PM,11/14/2014 06:39:57 PM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,Code 2 Transport,11/14/2014 06:58:48 PM,100 Block of GRAND VIEW AVE,San Francisco,94131,B06,24,5463,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Twin Peaks,"(37.7554585827955, -122.440403277833)",143183116-E24 +160923274,AM10,16036584,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:49:49 PM,04/01/2016 07:51:09 PM,04/01/2016 07:52:27 PM,04/01/2016 07:52:53 PM,04/01/2016 08:01:28 PM,04/01/2016 08:08:04 PM,04/01/2016 08:27:05 PM,Code 2 Transport,04/01/2016 08:34:30 PM,600 Block of PRECITA AVE,San Francisco,94110,B06,9,5621,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7478011070519, -122.409150981733)",160923274-AM10 +143082115,KM10,14109034,Medical Incident,11/04/2014,11/04/2014,11/04/2014 02:35:23 PM,11/04/2014 02:37:02 PM,11/04/2014 02:46:38 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 02:47:16 PM,1200 Block of LA SALLE AVE,San Francisco,94124,B10,17,668,2,2,2,false,Non Life-threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",143082115-KM10 +160942047,KM04,16037282,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:10:47 PM,04/03/2016 02:11:25 PM,04/03/2016 02:11:40 PM,04/03/2016 02:12:07 PM,04/03/2016 02:15:33 PM,04/03/2016 02:37:23 PM,04/03/2016 02:48:26 PM,Code 2 Transport,04/03/2016 03:45:05 PM,3800 Block of 22ND ST,San Francisco,94114,B06,24,5466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7545060743536, -122.433280576051)",160942047-KM04 +142533358,T13,14088440,Alarms,09/10/2014,09/10/2014,09/10/2014 07:18:39 PM,09/10/2014 07:19:32 PM,09/10/2014 07:20:09 PM,09/10/2014 07:22:30 PM,09/10/2014 07:26:11 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Fire,09/10/2014 07:38:43 PM,200 Block of HARRISON ST,San Francisco,94105,B03,35,2123,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",142533358-T13 +141341468,E13,14045687,Structure Fire,05/14/2014,05/14/2014,05/14/2014 11:17:11 AM,05/14/2014 11:17:59 AM,05/14/2014 11:18:35 AM,05/14/2014 11:19:34 AM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Fire,05/14/2014 11:21:59 AM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,false,Alarm,1,ENGINE,11,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",141341468-E13 +150202353,T19,15007889,Water Rescue,01/20/2015,01/20/2015,01/20/2015 03:50:57 PM,01/20/2015 03:53:38 PM,01/20/2015 03:54:12 PM,01/20/2015 03:57:43 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,No Merit,01/20/2015 04:39:36 PM,GREAT HY/SKYLINE BL,San Francisco,94132,B08,19,8713,3,3,3,false,Fire,1,TRUCK,13,8,7,Lakeshore,"(37.7252595509479, -122.503040635623)",150202353-T19 +160931982,AM02,16036892,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:16:11 PM,04/02/2016 02:16:56 PM,04/02/2016 02:28:58 PM,04/02/2016 02:28:58 PM,04/02/2016 02:30:33 PM,04/02/2016 02:41:13 PM,04/02/2016 03:07:38 PM,Code 2 Transport,04/02/2016 03:34:53 PM,200 Block of 15TH AVE,San Francisco,94118,B07,31,7153,2,2,2,false,Non Life-threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7834366116406, -122.474247157669)",160931982-AM02 +143612105,E20,14129200,Medical Incident,12/27/2014,12/27/2014,12/27/2014 03:30:18 PM,12/27/2014 03:30:18 PM,12/27/2014 03:31:09 PM,12/27/2014 03:32:30 PM,12/27/2014 03:34:54 PM,04/25/2016 01:13:11 PM,04/25/2016 01:13:11 PM,No Merit,12/27/2014 04:22:16 PM,0 Block of FOREST KNOLLS DR,San Francisco,94131,B08,20,5366,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7563421171606, -122.454841188545)",143612105-E20 +141891154,E21,14065452,Traffic Collision,07/08/2014,07/08/2014,07/08/2014 10:11:40 AM,07/08/2014 10:13:52 AM,07/08/2014 10:14:56 AM,07/08/2014 10:16:33 AM,07/08/2014 10:19:21 AM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/08/2014 10:28:18 AM,ASHBURY ST/FELL ST,San Francisco,94117,B05,21,4514,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.772790452811, -122.447497243592)",141891154-E21 +141871729,E10,14064791,Medical Incident,07/06/2014,07/06/2014,07/06/2014 02:07:05 PM,07/06/2014 02:07:05 PM,07/06/2014 02:07:57 PM,07/06/2014 02:09:29 PM,07/06/2014 02:11:24 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Medical Examiner,07/06/2014 02:47:33 PM,2500 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3616,,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7886466380145, -122.436318334702)",141871729-E10 +151532807,E13,15058391,Medical Incident,06/02/2015,06/02/2015,06/02/2015 05:41:13 PM,06/02/2015 05:42:44 PM,06/02/2015 05:43:33 PM,06/02/2015 05:44:32 PM,06/02/2015 05:46:01 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/02/2015 06:02:11 PM,CLAY ST/DRUMM ST,San Francisco,94111,B01,13,1133,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",151532807-E13 +143350367,KM03,14118589,Medical Incident,12/01/2014,11/30/2014,12/01/2014 05:04:08 AM,12/01/2014 05:05:44 AM,12/01/2014 05:05:56 AM,12/01/2014 05:07:21 AM,12/01/2014 05:11:28 AM,12/01/2014 05:19:53 AM,12/01/2014 05:30:32 AM,Code 2 Transport,12/01/2014 05:49:44 AM,CESAR CHAVEZ ST/FOLSOM ST,San Francisco,94110,B06,9,5622,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7482553292633, -122.413668845654)",143350367-KM03 +160971578,54,16038383,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:25:38 AM,04/06/2016 11:26:12 AM,04/06/2016 11:26:59 AM,04/06/2016 11:27:35 AM,04/06/2016 11:34:44 AM,04/06/2016 11:41:50 AM,04/06/2016 12:14:41 PM,Code 2 Transport,04/06/2016 01:12:07 PM,100 Block of KENWOOD WAY,San Francisco,94112,B09,15,8533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7281049342319, -122.461725604614)",160971578-54 +152210134,T13,15084040,Structure Fire,08/09/2015,08/08/2015,08/09/2015 12:50:07 AM,08/09/2015 12:51:40 AM,08/09/2015 12:52:33 AM,08/09/2015 12:54:39 AM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Fire,08/09/2015 12:57:03 AM,1400 Block of JONES ST,San Francisco,94109,B01,41,1466,3,3,3,false,Alarm,1,TRUCK,10,1,3,Nob Hill,"(37.7945402595974, -122.414804971391)",152210134-T13 +142683238,T06,14094071,Medical Incident,09/25/2014,09/25/2014,09/25/2014 08:07:12 PM,09/25/2014 08:08:47 PM,09/25/2014 08:09:16 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Code 2 Transport,09/25/2014 08:10:23 PM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Non Life-threatening,1,TRUCK,4,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",142683238-T06 +152460656,E17,15093703,Traffic Collision,09/03/2015,09/02/2015,09/03/2015 07:37:37 AM,09/03/2015 07:38:26 AM,09/03/2015 07:38:58 AM,09/03/2015 07:40:41 AM,09/03/2015 07:43:17 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Code 2 Transport,09/03/2015 07:55:49 AM,0 Block of ESPANOLA ST,San Francisco,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",152460656-E17 +143210248,KM03,14113529,Medical Incident,11/17/2014,11/16/2014,11/17/2014 02:52:27 AM,11/17/2014 02:55:05 AM,11/17/2014 02:55:18 AM,11/17/2014 02:55:59 AM,11/17/2014 03:06:18 AM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,Against Medical Advice,11/17/2014 03:51:42 AM,700 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7206398514521, -122.411562850299)",143210248-KM03 +160962954,KM05,16038110,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:20:52 PM,04/05/2016 05:21:09 PM,04/05/2016 05:21:38 PM,04/05/2016 05:22:12 PM,04/05/2016 05:29:10 PM,04/05/2016 05:41:05 PM,04/05/2016 06:13:23 PM,Code 2 Transport,04/05/2016 07:07:24 PM,300 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7873084363522, -122.409061356434)",160962954-KM05 +160970479,53,16038286,Medical Incident,04/06/2016,04/05/2016,04/06/2016 06:09:47 AM,04/06/2016 06:09:47 AM,04/06/2016 06:10:09 AM,04/06/2016 06:10:17 AM,04/06/2016 06:16:51 AM,04/06/2016 06:42:12 AM,04/06/2016 07:04:10 AM,Code 2 Transport,04/06/2016 07:55:59 AM,0 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,4247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7705968082049, -122.439656029959)",160970479-53 +141350980,E18,14046083,Medical Incident,05/15/2014,05/15/2014,05/15/2014 09:10:46 AM,05/15/2014 09:11:21 AM,05/15/2014 09:12:31 AM,05/15/2014 09:15:12 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Code 2 Transport,05/15/2014 09:28:00 AM,CROSSOVER DR/MARTIN LUTHER KING DR,San Francisco,94122,B08,22,7425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,7,1,Golden Gate Park,"(37.7660624876111, -122.477362829088)",141350980-E18 +161001179,64,16039705,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:32:39 AM,04/09/2016 10:34:40 AM,04/09/2016 10:35:05 AM,04/09/2016 10:35:16 AM,04/09/2016 10:39:23 AM,04/09/2016 11:00:31 AM,04/09/2016 11:29:21 AM,Code 2 Transport,04/09/2016 12:02:16 PM,400 Block of JACKSON ST,San Francisco,94133,B01,13,1232,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7965767359425, -122.402670936518)",161001179-64 +141453028,87,14049934,Structure Fire,05/25/2014,05/25/2014,05/25/2014 08:51:45 PM,05/25/2014 08:51:45 PM,05/25/2014 08:57:41 PM,05/25/2014 08:57:48 PM,05/25/2014 09:02:10 PM,05/25/2014 09:15:12 PM,05/25/2014 09:33:58 PM,Code 2 Transport,05/25/2014 09:58:40 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,MEDIC,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",141453028-87 +151201630,E51,15045368,Medical Incident,04/30/2015,04/30/2015,04/30/2015 12:10:59 PM,04/30/2015 12:12:02 PM,04/30/2015 12:12:34 PM,04/30/2015 12:12:43 PM,04/30/2015 12:17:52 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,Code 2 Transport,04/30/2015 12:29:57 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",151201630-E51 +152270413,T14,15086404,Structure Fire,08/15/2015,08/14/2015,08/15/2015 02:56:13 AM,08/15/2015 02:56:13 AM,08/15/2015 02:56:22 AM,08/15/2015 02:59:31 AM,08/15/2015 03:00:37 AM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Fire,08/15/2015 03:05:02 AM,400 Block of 30TH AVE,San Francisco,94121,B07,14,722,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",152270413-T14 +141412412,E01,14048400,Medical Incident,05/21/2014,05/21/2014,05/21/2014 04:15:07 PM,05/21/2014 04:18:02 PM,05/21/2014 04:18:36 PM,05/21/2014 04:19:52 PM,05/21/2014 04:21:58 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 04:38:00 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",141412412-E01 +160930138,60,16036682,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:51:55 AM,04/02/2016 12:51:55 AM,04/02/2016 12:52:16 AM,04/02/2016 12:52:39 AM,04/02/2016 01:02:41 AM,04/02/2016 01:30:51 AM,04/02/2016 01:47:51 AM,Code 2 Transport,04/02/2016 02:44:26 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160930138-60 +143110004,E14,14109962,Medical Incident,11/07/2014,11/06/2014,11/07/2014 12:02:51 AM,11/07/2014 12:03:56 AM,11/07/2014 12:04:10 AM,11/07/2014 12:05:54 AM,11/07/2014 12:08:41 AM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Medical Examiner,11/07/2014 12:26:56 AM,200 Block of 11TH AVE,San Francisco,94118,B07,31,7141,E,E,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Inner Richmond,"(37.7836405491389, -122.469769833287)",143110004-E14 +160931914,77,16036883,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:51:39 PM,04/02/2016 01:54:23 PM,04/02/2016 02:06:12 PM,04/02/2016 02:06:38 PM,04/02/2016 02:13:51 PM,04/02/2016 02:32:53 PM,04/02/2016 02:38:54 PM,Code 2 Transport,04/02/2016 03:22:11 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",160931914-77 +151820498,74,15069367,Structure Fire,07/01/2015,06/30/2015,07/01/2015 06:57:15 AM,07/01/2015 06:59:02 AM,07/01/2015 06:59:19 AM,07/01/2015 06:59:41 AM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Fire,07/01/2015 07:05:56 AM,4200 Block of FOLSOM ST,San Francisco,94110,B06,32,5747,3,3,3,true,Alarm,1,MEDIC,7,6,9,Bernal Heights,"(37.7340090413625, -122.413825505409)",151820498-74 +160971383,84,16038364,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:36:50 AM,04/06/2016 10:37:41 AM,04/06/2016 10:37:54 AM,04/06/2016 10:38:06 AM,04/06/2016 10:45:53 AM,04/06/2016 11:12:29 AM,04/06/2016 11:29:05 AM,Code 2 Transport,04/06/2016 12:06:37 PM,3400 Block of 19TH AVE,San Francisco,94132,B08,19,8726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7259732123613, -122.474721241777)",160971383-84 +160963379,68,16038145,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:55:13 PM,04/05/2016 06:56:14 PM,04/05/2016 06:57:43 PM,04/05/2016 06:58:00 PM,04/05/2016 07:21:19 PM,04/05/2016 07:32:56 PM,04/05/2016 07:45:43 PM,Code 2 Transport,04/05/2016 08:20:00 PM,CABRILLO ST/7TH AV,San Francisco,94118,B07,31,7132,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7753209455444, -122.464942088513)",160963379-68 +152703482,E43,15103620,Medical Incident,09/27/2015,09/27/2015,09/27/2015 10:08:39 PM,09/27/2015 10:08:39 PM,09/27/2015 10:10:18 PM,09/27/2015 10:11:41 PM,09/27/2015 10:13:57 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Code 2 Transport,09/27/2015 10:23:05 PM,0 Block of ALLISON ST,San Francisco,94112,B09,43,6176,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7141809805565, -122.442285746649)",152703482-E43 +160990122,55,16039161,Medical Incident,04/08/2016,04/07/2016,04/08/2016 01:05:35 AM,04/08/2016 01:06:15 AM,04/08/2016 01:06:24 AM,04/08/2016 01:07:43 AM,04/08/2016 01:11:14 AM,04/08/2016 01:36:30 AM,04/08/2016 01:56:58 AM,Code 2 Transport,04/08/2016 02:42:23 AM,0 Block of VALLEY ST,San Francisco,94110,B06,11,5577,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Noe Valley,"(37.7446426352778, -122.423443750063)",160990122-55 +150781239,83,15029848,Medical Incident,03/19/2015,03/19/2015,03/19/2015 09:50:12 AM,03/19/2015 09:53:21 AM,03/19/2015 09:54:24 AM,03/19/2015 09:54:30 AM,03/19/2015 10:01:37 AM,03/19/2015 10:08:35 AM,03/19/2015 10:43:10 AM,Code 2 Transport,03/19/2015 10:47:01 AM,2400 Block of KEITH ST,San Francisco,94124,B10,17,6546,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",150781239-83 +152673026,79,15102387,Medical Incident,09/24/2015,09/24/2015,09/24/2015 05:13:11 PM,09/24/2015 05:13:11 PM,09/24/2015 05:13:49 PM,09/24/2015 05:13:56 PM,09/24/2015 05:19:22 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,No Merit,09/24/2015 05:19:52 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",152673026-79 +160962661,68,16038081,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:17:11 PM,04/05/2016 04:18:27 PM,04/05/2016 04:26:14 PM,04/05/2016 04:26:45 PM,04/05/2016 04:43:18 PM,04/05/2016 05:03:12 PM,04/05/2016 05:31:43 PM,Code 2 Transport,04/05/2016 05:51:00 PM,1600 Block of OWENS ST,San Francisco,94158,B03,4,2265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7679924471876, -122.394391507395)",160962661-68 +143280809,54,14116194,Traffic Collision,11/24/2014,11/24/2014,11/24/2014 08:32:39 AM,11/24/2014 08:34:19 AM,11/24/2014 08:34:56 AM,11/24/2014 08:36:20 AM,11/24/2014 08:43:25 AM,11/24/2014 08:46:38 AM,11/24/2014 09:04:08 AM,Code 2 Transport,11/24/2014 09:19:26 AM,ALEMANY BL/SENECA AV,San Francisco,94112,B09,15,8331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Outer Mission,"(37.7186340567809, -122.441317764702)",143280809-54 +143520904,E13,14125697,Medical Incident,12/18/2014,12/18/2014,12/18/2014 08:56:42 AM,12/18/2014 08:59:49 AM,12/18/2014 09:00:13 AM,12/18/2014 09:01:18 AM,12/18/2014 09:03:44 AM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Code 2 Transport,12/18/2014 09:10:35 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",143520904-E13 +142581006,RC3,14090057,Medical Incident,09/15/2014,09/15/2014,09/15/2014 09:52:24 AM,09/15/2014 09:55:31 AM,09/15/2014 10:01:32 AM,09/15/2014 10:03:32 AM,09/15/2014 10:07:37 AM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Medical Examiner,09/15/2014 10:41:01 AM,100 Block of LANDERS ST,San Francisco,94114,B02,6,5234,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,2,8,Castro/Upper Market,"(37.7651080913316, -122.427584518743)",142581006-RC3 +160992045,AM14,16039331,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:29:39 PM,04/08/2016 02:31:07 PM,04/08/2016 02:32:28 PM,04/08/2016 02:33:07 PM,04/08/2016 02:38:58 PM,04/08/2016 02:54:38 PM,04/08/2016 03:10:02 PM,Code 2 Transport,04/08/2016 03:36:41 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",160992045-AM14 +153230233,E41,15124105,Structure Fire,11/19/2015,11/18/2015,11/19/2015 02:32:54 AM,11/19/2015 02:32:54 AM,11/19/2015 02:33:01 AM,11/19/2015 02:34:49 AM,11/19/2015 02:36:51 AM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Fire,11/19/2015 02:37:15 AM,MASON ST/SUTTER ST,San Francisco,94102,B01,3,1412,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.789016335554, -122.410242439308)",153230233-E41 +151772451,E05,15067443,Medical Incident,06/26/2015,06/26/2015,06/26/2015 04:04:59 PM,06/26/2015 04:05:16 PM,06/26/2015 04:05:45 PM,06/26/2015 04:06:56 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 04:07:25 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",151772451-E05 +152152584,78,15081907,Medical Incident,08/03/2015,08/03/2015,08/03/2015 03:46:29 PM,08/03/2015 03:48:57 PM,08/03/2015 03:49:11 PM,08/03/2015 03:49:39 PM,08/03/2015 04:00:14 PM,08/03/2015 04:11:18 PM,08/03/2015 04:23:51 PM,Code 2 Transport,08/03/2015 05:08:46 PM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",152152584-78 +160952360,56,16037671,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:06:11 PM,04/04/2016 03:07:12 PM,04/04/2016 03:08:26 PM,04/04/2016 03:08:36 PM,04/04/2016 03:12:08 PM,04/04/2016 03:31:30 PM,04/04/2016 03:42:01 PM,Code 2 Transport,04/04/2016 04:18:18 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160952360-56 +160953604,KM07,16037789,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:32:08 PM,04/04/2016 08:35:09 PM,04/04/2016 08:52:50 PM,04/04/2016 08:53:33 PM,04/04/2016 09:06:26 PM,04/04/2016 09:23:15 PM,04/04/2016 09:35:14 PM,Code 2 Transport,04/04/2016 09:55:27 PM,COLUMBUS AV/GRANT AV,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.7981520556113, -122.407082928114)",160953604-KM07 +142892395,76,14101924,Medical Incident,10/16/2014,10/16/2014,10/16/2014 03:37:10 PM,10/16/2014 03:40:20 PM,10/16/2014 03:42:03 PM,10/16/2014 03:42:17 PM,10/16/2014 03:45:33 PM,10/16/2014 04:06:23 PM,10/16/2014 04:44:42 PM,Code 2 Transport,10/16/2014 05:22:22 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786769584105, -122.408601057595)",142892395-76 +160991709,67,16039297,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:10:13 PM,04/08/2016 01:10:50 PM,04/08/2016 01:11:13 PM,04/08/2016 01:12:05 PM,04/08/2016 01:17:37 PM,04/08/2016 01:34:30 PM,04/08/2016 01:43:53 PM,Code 3 Transport,04/08/2016 02:41:02 PM,2400 Block of 19TH AVE,San Francisco,94116,B08,40,7415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7421133651274, -122.475733220027)",160991709-67 +142190745,KM09,14075891,Medical Incident,08/07/2014,08/07/2014,08/07/2014 08:16:58 AM,08/07/2014 08:19:15 AM,08/07/2014 08:19:24 AM,08/07/2014 08:20:07 AM,08/07/2014 08:28:19 AM,08/07/2014 09:09:29 AM,08/07/2014 09:20:06 AM,Code 2 Transport,08/07/2014 09:51:25 AM,1900 Block of BROADWAY,San Francisco,94123,B04,38,3355,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7950545006064, -122.429177912873)",142190745-KM09 +150033164,T03,15001272,Structure Fire,01/03/2015,01/03/2015,01/03/2015 08:54:50 PM,01/03/2015 08:55:21 PM,01/03/2015 08:55:39 PM,01/03/2015 08:56:50 PM,01/03/2015 08:58:03 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Fire,01/03/2015 09:10:44 PM,700 Block of SUTTER ST,San Francisco,94109,B01,3,1463,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",150033164-T03 +160974378,73,16038690,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:07:59 PM,04/06/2016 10:07:59 PM,04/06/2016 10:08:09 PM,04/06/2016 10:08:20 PM,04/06/2016 10:35:31 PM,04/06/2016 10:35:33 PM,04/06/2016 10:49:51 PM,Code 2 Transport,04/06/2016 11:22:39 PM,9TH ST/FOLSOM ST,San Francisco,94103,B03,29,2333,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7737693455048, -122.411610116682)",160974378-73 +151290176,E01,15048811,Medical Incident,05/09/2015,05/08/2015,05/09/2015 01:07:45 AM,05/09/2015 01:08:56 AM,05/09/2015 01:09:54 AM,05/09/2015 01:12:11 AM,05/09/2015 01:14:37 AM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Code 2 Transport,05/09/2015 01:19:21 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",151290176-E01 +151430597,RC3,15054281,Medical Incident,05/23/2015,05/22/2015,05/23/2015 04:46:51 AM,05/23/2015 04:47:47 AM,05/23/2015 04:54:15 AM,05/23/2015 04:55:23 AM,05/23/2015 05:03:58 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Code 2 Transport,05/23/2015 05:11:56 AM,600 Block of BURNETT AVE,San Francisco,94131,B06,24,5281,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Twin Peaks,"(37.7513305525726, -122.44446883035)",151430597-RC3 +150591010,E06,15022482,Alarms,02/28/2015,02/28/2015,02/28/2015 09:11:50 AM,02/28/2015 09:13:24 AM,02/28/2015 09:13:38 AM,02/28/2015 09:14:40 AM,02/28/2015 09:16:28 AM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Fire,02/28/2015 10:04:06 AM,MARKET ST/CASTRO ST,San Francisco,94114,B05,6,5233,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",150591010-E06 +141280711,AM06,14043407,Medical Incident,05/08/2014,05/08/2014,05/08/2014 08:11:33 AM,05/08/2014 08:13:30 AM,05/08/2014 08:55:30 AM,05/08/2014 08:55:30 AM,05/08/2014 09:13:17 AM,05/08/2014 09:30:08 AM,05/08/2014 09:39:34 AM,Code 2 Transport,05/08/2014 10:05:05 AM,100 Block of PAGE ST,San Francisco,94102,B02,36,3313,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",141280711-AM06 +142270622,E01,14078744,Medical Incident,08/15/2014,08/14/2014,08/15/2014 06:43:28 AM,08/15/2014 06:43:49 AM,08/15/2014 06:44:08 AM,08/15/2014 06:46:37 AM,08/15/2014 06:47:44 AM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 2 Transport,08/15/2014 06:56:41 AM,4TH ST/STOCKTON ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",142270622-E01 +151253386,RS2,15047510,Structure Fire,05/05/2015,05/05/2015,05/05/2015 07:35:34 PM,05/05/2015 07:35:53 PM,05/05/2015 07:36:13 PM,05/05/2015 07:36:57 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Fire,05/05/2015 07:45:01 PM,1400 Block of 35TH AVE,San Francisco,94122,B08,18,7563,3,3,3,false,Alarm,1,RESCUE SQUAD,10,8,4,Sunset/Parkside,"(37.7600132948214, -122.494005782539)",151253386-RS2 +142952110,RS1,14104070,Traffic Collision,10/22/2014,10/22/2014,10/22/2014 02:50:50 PM,10/22/2014 02:51:04 PM,10/22/2014 02:51:15 PM,10/22/2014 02:52:52 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Fire,10/22/2014 03:34:43 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",142952110-RS1 +150632611,E08,15024134,Medical Incident,03/04/2015,03/04/2015,03/04/2015 04:05:42 PM,03/04/2015 04:10:23 PM,03/04/2015 04:10:48 PM,03/04/2015 04:12:44 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 04:25:43 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150632611-E08 +141960960,E07,14067830,Medical Incident,07/15/2014,07/15/2014,07/15/2014 09:20:38 AM,07/15/2014 09:22:12 AM,07/15/2014 09:23:29 AM,07/15/2014 09:25:45 AM,07/15/2014 09:30:03 AM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Code 2 Transport,07/15/2014 09:35:56 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",141960960-E07 +160980105,63,16038731,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:48:02 AM,04/07/2016 12:48:02 AM,04/07/2016 12:49:45 AM,04/07/2016 12:50:29 AM,04/07/2016 12:54:14 AM,04/07/2016 01:18:58 AM,04/07/2016 01:35:41 AM,Code 2 Transport,04/07/2016 02:06:06 AM,BROADWAY/POLK ST,San Francisco,94109,B01,41,1632,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7959454020039, -122.421768166879)",160980105-63 +160923984,AM24,16036652,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:29:01 PM,04/01/2016 11:33:19 PM,04/01/2016 11:33:35 PM,04/01/2016 11:39:30 PM,04/01/2016 11:43:57 PM,04/01/2016 11:50:18 PM,04/02/2016 12:01:29 AM,Code 2 Transport,04/02/2016 12:34:41 AM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",160923984-AM24 +141354180,E35,14046372,Medical Incident,05/15/2014,05/15/2014,05/15/2014 11:38:46 PM,05/15/2014 11:39:33 PM,05/15/2014 11:41:33 PM,05/15/2014 11:41:33 PM,05/15/2014 11:41:33 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Code 2 Transport,05/16/2014 12:03:16 AM,300 Block of THE EMBARCADERO,San Francisco,94111,B03,35,2112,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",141354180-E35 +152003648,KM03,15076391,Medical Incident,07/19/2015,07/19/2015,07/19/2015 09:43:58 PM,07/19/2015 09:45:41 PM,07/19/2015 09:45:59 PM,07/19/2015 09:46:51 PM,07/19/2015 10:03:54 PM,07/19/2015 10:04:01 PM,07/19/2015 10:16:54 PM,Code 2 Transport,07/19/2015 10:50:13 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",152003648-KM03 +160931859,56,16036874,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:38:05 PM,04/02/2016 01:39:34 PM,04/02/2016 01:46:42 PM,04/02/2016 01:47:12 PM,04/02/2016 02:00:31 PM,04/02/2016 02:14:50 PM,04/02/2016 02:45:42 PM,Code 2 Transport,04/02/2016 03:23:34 PM,11TH ST/MINNA ST,San Francisco,94103,B02,36,5114,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7739062505366, -122.416575670164)",160931859-56 +150692220,T06,15026396,Structure Fire,03/10/2015,03/10/2015,03/10/2015 03:30:11 PM,03/10/2015 03:30:44 PM,03/10/2015 03:31:22 PM,03/10/2015 03:32:27 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 03:34:20 PM,0 Block of DUBOCE AVE,San Francisco,94103,B02,36,5124,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7698769653623, -122.420425746328)",150692220-T06 +160921825,75,16036451,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:36:49 PM,04/01/2016 01:39:19 PM,04/01/2016 01:39:54 PM,04/01/2016 01:40:01 PM,04/01/2016 01:44:01 PM,04/01/2016 01:51:49 PM,04/01/2016 02:12:26 PM,Code 2 Transport,04/01/2016 02:38:09 PM,1100 Block of CAPP ST,San Francisco,94110,B06,11,5613,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7484635498318, -122.417383097943)",160921825-75 +151503164,62,15057218,Medical Incident,05/30/2015,05/30/2015,05/30/2015 07:44:18 PM,05/30/2015 07:44:18 PM,05/30/2015 07:44:37 PM,05/30/2015 07:44:47 PM,05/30/2015 07:52:06 PM,05/30/2015 08:25:44 PM,05/30/2015 08:38:17 PM,Other,05/30/2015 09:20:43 PM,600 Block of KEITH ST,San Francisco,94124,B10,25,6565,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371958243577, -122.382770664389)",151503164-62 +141573588,E44,14054266,Vehicle Fire,06/06/2014,06/06/2014,06/06/2014 11:09:00 PM,06/06/2014 11:10:00 PM,06/06/2014 11:10:07 PM,06/06/2014 11:11:38 PM,06/06/2014 11:14:03 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Fire,06/06/2014 11:55:04 PM,KEITH ST/KEY AV,San Francisco,94124,B10,44,6542,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7202867942492, -122.397568505773)",141573588-E44 +150153125,KM01,15006057,Medical Incident,01/15/2015,01/15/2015,01/15/2015 06:48:30 PM,01/15/2015 06:49:05 PM,01/15/2015 06:49:22 PM,01/15/2015 06:50:02 PM,01/15/2015 06:54:36 PM,01/15/2015 07:19:24 PM,01/15/2015 07:19:28 PM,Code 2 Transport,01/15/2015 08:00:28 PM,2100 Block of GROVE ST,San Francisco,94117,B05,21,4535,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7741989625507, -122.451998918385)",150153125-KM01 +152571250,54,15098214,Medical Incident,09/14/2015,09/14/2015,09/14/2015 10:14:24 AM,09/14/2015 10:15:54 AM,09/14/2015 10:16:11 AM,09/14/2015 10:16:27 AM,09/14/2015 10:25:18 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Other,09/14/2015 10:39:14 AM,0 Block of ESCONDIDO AVE,San Francisco,94132,B08,19,7551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7347016705244, -122.489917028744)",152571250-54 +142041455,68,14070586,Medical Incident,07/23/2014,07/23/2014,07/23/2014 11:27:45 AM,07/23/2014 11:28:50 AM,07/23/2014 11:29:47 AM,07/23/2014 11:29:56 AM,07/23/2014 11:53:40 AM,07/23/2014 12:07:02 PM,07/23/2014 12:34:57 PM,Code 2 Transport,07/23/2014 01:02:50 PM,MCALLISTER ST/HYDE ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",142041455-68 +152332457,E02,15088885,Alarms,08/21/2015,08/21/2015,08/21/2015 03:10:50 PM,08/21/2015 03:12:57 PM,08/21/2015 03:15:15 PM,08/21/2015 03:15:40 PM,08/21/2015 03:17:54 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Fire,08/21/2015 03:20:08 PM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7892188294799, -122.406842699035)",152332457-E02 +150602816,T12,15023016,Structure Fire,03/01/2015,03/01/2015,03/01/2015 05:37:07 PM,03/01/2015 05:38:14 PM,03/01/2015 05:38:33 PM,03/01/2015 05:39:39 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Fire,03/01/2015 05:46:10 PM,1700 Block of 20TH AVE,San Francisco,94122,B08,40,7422,3,3,3,false,Alarm,1,TRUCK,7,8,4,Sunset/Parkside,"(37.755123574931, -122.477683428402)",150602816-T12 +160990896,KM13,16039228,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:11:04 AM,04/08/2016 09:11:33 AM,04/08/2016 09:12:23 AM,04/08/2016 09:14:04 AM,04/08/2016 09:18:42 AM,04/08/2016 09:37:48 AM,04/08/2016 09:49:29 AM,Code 2 Transport,04/08/2016 10:20:35 AM,LEAVENWORTH ST/TURK ST,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160990896-KM13 +143031864,T03,14107115,Medical Incident,10/30/2014,10/30/2014,10/30/2014 12:00:10 PM,10/30/2014 12:01:07 PM,10/30/2014 12:02:53 PM,10/30/2014 12:02:53 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Unable to Locate,10/30/2014 12:07:01 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7826266328595, -122.41915582123)",143031864-T03 +160964173,KM03,16038224,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:21:51 PM,04/05/2016 11:24:04 PM,04/05/2016 11:26:50 PM,04/05/2016 11:27:53 PM,04/05/2016 11:49:27 PM,04/05/2016 11:49:30 PM,04/05/2016 11:54:58 PM,Code 2 Transport,04/06/2016 12:18:49 AM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",160964173-KM03 +142750340,E15,14096339,Medical Incident,10/02/2014,10/01/2014,10/02/2014 03:11:21 AM,10/02/2014 03:14:48 AM,10/02/2014 03:17:29 AM,10/02/2014 03:20:21 AM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Code 2 Transport,10/02/2014 03:27:21 AM,1500 Block of OCEAN AVE,San Francisco,94112,B09,15,8474,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7245049424335, -122.458675264922)",142750340-E15 +141531659,E03,14052557,Alarms,06/02/2014,06/02/2014,06/02/2014 01:07:30 PM,06/02/2014 01:09:06 PM,06/02/2014 01:10:23 PM,06/02/2014 01:11:13 PM,06/02/2014 01:12:50 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Fire,06/02/2014 01:24:11 PM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",141531659-E03 +152092331,B01,15079688,Structure Fire,07/28/2015,07/28/2015,07/28/2015 03:21:40 PM,07/28/2015 03:22:06 PM,07/28/2015 03:23:07 PM,07/28/2015 03:23:51 PM,07/28/2015 03:25:28 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Code 2 Transport,07/28/2015 05:20:33 PM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,CHIEF,2,1,3,North Beach,"(37.7982249345487, -122.404282497745)",152092331-B01 +153224384,KM03,15124088,Medical Incident,11/18/2015,11/18/2015,11/18/2015 11:40:06 PM,11/18/2015 11:42:37 PM,11/18/2015 11:43:27 PM,11/18/2015 11:45:29 PM,11/18/2015 11:50:29 PM,11/19/2015 12:03:26 AM,11/19/2015 12:25:32 AM,Code 2 Transport,11/19/2015 01:13:11 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",153224384-KM03 +151181549,E22,15044596,Medical Incident,04/28/2015,04/28/2015,04/28/2015 12:08:55 PM,04/28/2015 12:10:18 PM,04/28/2015 12:10:51 PM,04/28/2015 12:11:48 PM,04/28/2015 12:14:55 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Patient Declined Transport,04/28/2015 12:17:07 PM,1200 Block of 28TH AVE,San Francisco,94122,B08,22,7512,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7640748354161, -122.486905503606)",151181549-E22 +141430333,T03,14048929,Medical Incident,05/23/2014,05/22/2014,05/23/2014 03:28:58 AM,05/23/2014 03:28:58 AM,05/23/2014 03:29:38 AM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,Code 2 Transport,05/23/2014 03:31:14 AM,POLK ST/GROVE ST,San Francisco,94102,B02,36,381,,E,3,false,Potentially Life-Threatening,1,TRUCK,5,2,6,Tenderloin,"(37.7784891171437, -122.418226581728)",141430333-T03 +150383915,74,15014994,Medical Incident,02/07/2015,02/07/2015,02/07/2015 11:01:53 PM,02/07/2015 11:03:24 PM,02/07/2015 11:04:27 PM,02/07/2015 11:04:35 PM,02/07/2015 11:13:52 PM,02/07/2015 11:37:52 PM,02/08/2015 12:00:59 AM,Code 2 Transport,02/08/2015 12:38:10 AM,600 Block of DWIGHT ST,San Francisco,94134,B09,42,6321,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7223051919109, -122.408505544416)",150383915-74 +161002154,KM06,16039824,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:01:57 PM,04/09/2016 04:02:56 PM,04/09/2016 04:04:07 PM,04/09/2016 04:04:46 PM,04/09/2016 04:20:41 PM,04/09/2016 04:35:16 PM,04/09/2016 04:43:24 PM,Code 2 Transport,04/09/2016 05:12:52 PM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",161002154-KM06 +143251120,E41,14115036,Citizen Assist / Service Call,11/21/2014,11/21/2014,11/21/2014 10:26:14 AM,11/21/2014 10:26:59 AM,11/21/2014 10:27:07 AM,11/21/2014 10:28:23 AM,11/21/2014 10:29:02 AM,04/25/2016 01:13:53 PM,04/25/2016 01:13:53 PM,Fire,11/21/2014 11:18:40 AM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",143251120-E41 +141510091,82,14051734,Medical Incident,05/31/2014,05/30/2014,05/31/2014 12:25:39 AM,05/31/2014 12:28:02 AM,05/31/2014 12:29:40 AM,05/31/2014 12:30:17 AM,05/31/2014 12:42:26 AM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Patient Declined Transport,05/31/2014 12:48:07 AM,1800 Block of MARKET ST,San Francisco,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7715743266843, -122.42361379771)",141510091-82 +160990920,52,16039231,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:19:23 AM,04/08/2016 09:21:14 AM,04/08/2016 09:22:04 AM,04/08/2016 09:22:13 AM,04/08/2016 09:31:49 AM,04/08/2016 09:48:38 AM,04/08/2016 10:17:33 AM,Code 2 Transport,04/08/2016 10:41:23 AM,300 Block of GRANT AVE,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7903312930658, -122.405480762269)",160990920-52 +160943390,KM03,16037426,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:14:11 PM,04/03/2016 09:16:26 PM,04/03/2016 09:16:46 PM,04/03/2016 09:21:24 PM,04/03/2016 09:21:26 PM,04/03/2016 09:33:50 PM,04/03/2016 09:58:30 PM,Code 2 Transport,04/03/2016 10:04:52 PM,CEDAR ST/POLK ST,San Francisco,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",160943390-KM03 +143500157,E07,14124842,Alarms,12/16/2014,12/15/2014,12/16/2014 01:55:04 AM,12/16/2014 01:56:31 AM,12/16/2014 01:56:40 AM,12/16/2014 01:59:34 AM,12/16/2014 02:01:54 AM,04/25/2016 01:13:24 PM,04/25/2016 01:13:24 PM,Fire,12/16/2014 02:04:39 AM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",143500157-E07 +151080024,79,15040727,Medical Incident,04/18/2015,04/17/2015,04/18/2015 12:08:21 AM,04/18/2015 12:08:21 AM,04/18/2015 12:09:05 AM,04/18/2015 12:09:21 AM,04/18/2015 12:13:30 AM,04/18/2015 12:19:47 AM,04/18/2015 12:49:54 AM,Code 2 Transport,04/18/2015 01:00:20 AM,8TH ST/TOWNSEND ST,San Francisco,94107,B03,29,2325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7700628654605, -122.403877700631)",151080024-79 +160993781,89,16039502,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:03:09 PM,04/08/2016 10:04:30 PM,04/08/2016 10:05:37 PM,04/08/2016 10:06:14 PM,04/08/2016 10:15:01 PM,04/08/2016 10:30:39 PM,04/08/2016 10:35:45 PM,Code 2 Transport,04/08/2016 11:01:26 PM,TAYLOR ST/PINE ST,San Francisco,94108,B01,41,1446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7906727830021, -122.412266188172)",160993781-89 +142833359,T03,14099816,Structure Fire,10/10/2014,10/10/2014,10/10/2014 09:25:51 PM,10/10/2014 09:25:51 PM,10/10/2014 09:26:13 PM,10/10/2014 09:27:14 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Fire,10/10/2014 09:28:55 PM,JONES ST/ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",142833359-T03 +141642629,88,14056622,Medical Incident,06/13/2014,06/13/2014,06/13/2014 05:36:31 PM,06/13/2014 05:38:15 PM,06/13/2014 05:41:27 PM,06/13/2014 05:41:40 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Unable to Locate,06/13/2014 05:53:56 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",141642629-88 +141100074,82,14037023,Medical Incident,04/20/2014,04/20/2014,04/20/2014 08:07:07 AM,04/20/2014 08:07:55 AM,04/20/2014 08:08:31 AM,04/20/2014 08:09:20 AM,04/20/2014 08:24:01 AM,04/20/2014 08:36:16 AM,04/20/2014 08:57:07 AM,Code 2 Transport,04/20/2014 09:27:15 AM,19TH AV/BUCKINGHAM WY,SAN FRANCISCO,94132,B08,19,8851,,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.725692147795, -122.475108832537)",141100074-82 +161003432,KM09,16039971,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:29:42 PM,04/09/2016 10:30:34 PM,04/09/2016 10:31:24 PM,04/09/2016 10:32:38 PM,04/09/2016 10:38:24 PM,04/09/2016 10:44:32 PM,04/09/2016 11:06:50 PM,Code 2 Transport,04/09/2016 11:20:14 PM,1400 Block of PINE ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",161003432-KM09 +160962710,AM16,16038090,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:26:27 PM,04/05/2016 04:28:12 PM,04/05/2016 04:32:11 PM,04/05/2016 04:32:40 PM,04/05/2016 04:44:51 PM,04/05/2016 04:57:14 PM,04/05/2016 05:22:03 PM,Code 2 Transport,04/05/2016 05:52:29 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160962710-AM16 +160991739,KM11,16039302,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:20:19 PM,04/08/2016 01:20:41 PM,04/08/2016 01:27:11 PM,04/08/2016 01:30:42 PM,04/08/2016 01:30:42 PM,04/08/2016 01:51:49 PM,04/08/2016 01:58:02 PM,Code 2 Transport,04/08/2016 02:23:38 PM,7TH ST/MISSION ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160991739-KM11 +152580827,T07,15098561,Alarms,09/15/2015,09/15/2015,09/15/2015 08:27:57 AM,09/15/2015 08:29:34 AM,09/15/2015 08:29:42 AM,09/15/2015 08:31:32 AM,09/15/2015 08:34:22 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Fire,09/15/2015 08:41:29 AM,400 Block of ALABAMA ST,San Francisco,94110,B02,7,5244,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7635505472738, -122.412302339229)",152580827-T07 +150471916,65,15018294,Structure Fire,02/16/2015,02/16/2015,02/16/2015 01:29:50 PM,02/16/2015 01:31:29 PM,02/16/2015 01:32:00 PM,02/16/2015 01:32:21 PM,04/25/2016 01:12:12 PM,04/25/2016 01:12:12 PM,04/25/2016 01:12:12 PM,Fire,02/16/2015 01:37:10 PM,100 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5646,3,3,3,true,Alarm,1,MEDIC,7,6,9,Bernal Heights,"(37.7373636780892, -122.422094532922)",150471916-65 +153470863,T06,15133586,Traffic Collision,12/13/2015,12/13/2015,12/13/2015 08:25:16 AM,12/13/2015 08:25:16 AM,12/13/2015 08:25:48 AM,12/13/2015 08:26:31 AM,12/13/2015 08:26:58 AM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Code 2 Transport,12/13/2015 12:19:24 PM,DUBOCE AV/SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7693209102526, -122.431356623822)",153470863-T06 +152812506,E14,15107908,Medical Incident,10/08/2015,10/08/2015,10/08/2015 03:47:52 PM,10/08/2015 03:49:39 PM,10/08/2015 03:53:33 PM,10/08/2015 03:55:22 PM,10/08/2015 03:59:09 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Medical Examiner,10/08/2015 04:21:03 PM,500 Block of 40TH AVE,San Francisco,94121,B07,34,7264,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7783895132557, -122.500800304869)",152812506-E14 +152622059,E01,15100174,Medical Incident,09/19/2015,09/19/2015,09/19/2015 01:56:32 PM,09/19/2015 01:57:54 PM,09/19/2015 01:58:09 PM,09/19/2015 01:59:14 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Cancelled,09/19/2015 02:09:33 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",152622059-E01 +151661957,60,15063505,Medical Incident,06/15/2015,06/15/2015,06/15/2015 02:05:34 PM,06/15/2015 02:08:10 PM,06/15/2015 02:08:56 PM,06/15/2015 02:09:23 PM,06/15/2015 02:22:57 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Patient Declined Transport,06/15/2015 03:11:31 PM,400 Block of SLOAT BLVD,San Francisco,94132,B08,19,8732,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Sunset/Parkside,"(37.7344879538632, -122.476637765637)",151661957-60 +150843260,E19,15032180,Medical Incident,03/25/2015,03/25/2015,03/25/2015 06:29:37 PM,03/25/2015 06:31:32 PM,03/25/2015 06:32:18 PM,03/25/2015 06:33:08 PM,03/25/2015 06:36:45 PM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Code 3 Transport,03/25/2015 06:43:52 PM,0 Block of JOSEPHA AVE,San Francisco,94132,B08,19,8481,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7167057551283, -122.47768004947)",150843260-E19 +160940005,52,16037092,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:00:12 AM,04/03/2016 12:01:59 AM,04/03/2016 12:03:10 AM,04/03/2016 12:03:20 AM,04/03/2016 12:15:10 AM,04/03/2016 12:42:02 AM,04/03/2016 12:58:42 AM,Code 2 Transport,04/03/2016 01:57:23 AM,500 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7803303915285, -122.420129233501)",160940005-52 +160923010,86,16036559,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:29:49 PM,04/01/2016 06:31:22 PM,04/01/2016 06:33:05 PM,04/01/2016 06:33:13 PM,04/01/2016 06:46:45 PM,04/01/2016 07:07:40 PM,04/01/2016 07:20:46 PM,Code 2 Transport,04/01/2016 07:48:51 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160923010-86 +142040228,B09,14070466,Medical Incident,07/23/2014,07/22/2014,07/23/2014 01:38:10 AM,07/23/2014 01:42:37 AM,07/23/2014 01:43:02 AM,07/23/2014 01:43:52 AM,07/23/2014 01:50:20 AM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Patient Declined Transport,07/23/2014 01:56:31 AM,1800 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",142040228-B09 +151411698,E05,15053565,Medical Incident,05/21/2015,05/21/2015,05/21/2015 12:22:08 PM,05/21/2015 12:24:07 PM,05/21/2015 12:25:08 PM,05/21/2015 12:26:36 PM,05/21/2015 12:29:12 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Code 2 Transport,05/21/2015 12:36:17 PM,2200 Block of OFARRELL ST,San Francisco,94115,B05,10,4236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",151411698-E05 +142771764,T07,14097373,Citizen Assist / Service Call,10/04/2014,10/04/2014,10/04/2014 12:13:07 PM,10/04/2014 12:14:10 PM,10/04/2014 12:14:19 PM,10/04/2014 12:15:29 PM,10/04/2014 12:17:06 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Fire,10/04/2014 12:29:43 PM,MISSION ST/20TH ST,San Francisco,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",142771764-T07 +161002514,52,16039866,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:49:15 PM,04/09/2016 05:49:47 PM,04/09/2016 05:50:09 PM,04/09/2016 05:50:15 PM,04/09/2016 06:04:28 PM,04/09/2016 06:15:11 PM,04/09/2016 06:39:33 PM,Code 2 Transport,04/09/2016 07:05:34 PM,700 Block of FONT BLVD,San Francisco,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",161002514-52 +141230033,89,14041548,Medical Incident,05/03/2014,05/02/2014,05/03/2014 02:05:40 AM,05/03/2014 02:06:27 AM,05/03/2014 02:08:07 AM,05/03/2014 02:08:11 AM,05/03/2014 02:24:15 AM,05/03/2014 02:40:39 AM,05/03/2014 02:56:14 AM,Code 2 Transport,05/03/2014 03:25:53 AM,300 Block of TAYLOR ST,SAN FRANCISCO,94102,B01,1,1452,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",141230033-89 +161003201,64,16039945,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:29:40 PM,04/09/2016 09:29:40 PM,04/09/2016 09:30:06 PM,04/09/2016 09:30:16 PM,04/09/2016 09:42:54 PM,04/09/2016 09:54:28 PM,04/09/2016 10:05:40 PM,Code 2 Transport,04/09/2016 10:40:35 PM,1800 Block of GEARY BLVD,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7842501079896, -122.432035315509)",161003201-64 +161002272,74,16039839,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:32:23 PM,04/09/2016 04:33:20 PM,04/09/2016 04:36:15 PM,04/09/2016 04:37:23 PM,04/09/2016 04:46:44 PM,04/09/2016 04:55:53 PM,04/09/2016 05:19:16 PM,Code 2 Transport,04/09/2016 06:05:59 PM,100 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,3,3,true,Non Life-threatening,1,MEDIC,2,9,10,McLaren Park,"(37.7104146366126, -122.423115904861)",161002272-74 +160940593,KM07,16037152,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:25:19 AM,04/03/2016 04:25:19 AM,04/03/2016 04:29:42 AM,04/03/2016 04:30:21 AM,04/03/2016 04:38:26 AM,04/03/2016 04:51:26 AM,04/03/2016 05:00:57 AM,Code 2 Transport,04/03/2016 05:26:02 AM,200 Block of BROADWAY,San Francisco,94111,B01,13,1155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7984506502378, -122.401628969112)",160940593-KM07 +160942642,85,16037350,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:06:18 PM,04/03/2016 05:07:07 PM,04/03/2016 05:07:25 PM,04/03/2016 05:11:41 PM,04/03/2016 05:20:15 PM,04/03/2016 05:22:04 PM,04/03/2016 05:20:15 PM,Code 2 Transport,04/03/2016 06:17:48 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",160942642-85 +152242195,E02,15085393,Outside Fire,08/12/2015,08/12/2015,08/12/2015 02:23:19 PM,08/12/2015 02:23:26 PM,08/12/2015 02:28:03 PM,08/12/2015 02:28:03 PM,08/12/2015 02:29:29 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 02:30:13 PM,COLUMBUS AV/FILBERT ST,San Francisco,94133,B01,28,1351,3,3,3,true,Fire,1,ENGINE,1,1,3,Chinatown,"(37.8011251306762, -122.411376271747)",152242195-E02 +151631909,E19,15062328,Medical Incident,06/12/2015,06/12/2015,06/12/2015 01:34:26 PM,06/12/2015 01:35:15 PM,06/12/2015 01:36:02 PM,06/12/2015 01:36:55 PM,06/12/2015 01:41:04 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Code 2 Transport,06/12/2015 01:57:44 PM,100 Block of COUNTRY CLUB DR,San Francisco,94132,B08,19,8826,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.730788409194, -122.496687609617)",151631909-E19 +142122106,E03,14073519,Medical Incident,07/31/2014,07/31/2014,07/31/2014 02:40:43 PM,07/31/2014 02:42:19 PM,07/31/2014 02:42:48 PM,07/31/2014 02:43:17 PM,07/31/2014 02:48:21 PM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Code 2 Transport,07/31/2014 02:52:26 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",142122106-E03 +152482332,72,15094728,Medical Incident,09/05/2015,09/05/2015,09/05/2015 03:04:23 PM,09/05/2015 03:07:10 PM,09/05/2015 03:07:30 PM,09/05/2015 03:08:10 PM,09/05/2015 03:12:39 PM,09/05/2015 03:29:30 PM,09/05/2015 03:35:25 PM,Code 2 Transport,09/05/2015 04:12:20 PM,2400 Block of UNION ST,San Francisco,94123,B04,16,3655,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.796620178157, -122.43961153478)",152482332-72 +160974199,66,16038671,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:13:37 PM,04/06/2016 09:14:55 PM,04/06/2016 09:17:05 PM,04/06/2016 09:17:05 PM,04/06/2016 09:20:20 PM,04/06/2016 09:32:34 PM,04/06/2016 10:06:17 PM,Code 2 Transport,04/06/2016 10:30:51 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160974199-66 +160930336,78,16036700,Medical Incident,04/02/2016,04/01/2016,04/02/2016 02:21:02 AM,04/02/2016 02:21:02 AM,04/02/2016 02:22:44 AM,04/02/2016 02:24:35 AM,04/02/2016 02:32:19 AM,04/02/2016 02:53:40 AM,04/02/2016 03:23:42 AM,Code 2 Transport,04/02/2016 03:41:00 AM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7610397684815, -122.419213667994)",160930336-78 +150830526,T06,15031628,Alarms,03/24/2015,03/23/2015,03/24/2015 07:07:00 AM,03/24/2015 07:08:37 AM,03/24/2015 07:09:02 AM,03/24/2015 07:11:41 AM,03/24/2015 07:13:33 AM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 07:18:43 AM,CHURCH ST/MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",150830526-T06 +143101617,KM15,14109712,Medical Incident,11/06/2014,11/06/2014,11/06/2014 12:25:29 PM,11/06/2014 12:30:05 PM,11/06/2014 12:30:35 PM,11/06/2014 12:33:06 PM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,Unable to Locate,11/06/2014 12:38:22 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",143101617-KM15 +151844137,85,15070422,Medical Incident,07/03/2015,07/03/2015,07/03/2015 11:34:46 PM,07/03/2015 11:38:50 PM,07/03/2015 11:39:05 PM,07/03/2015 11:39:59 PM,07/03/2015 11:45:51 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Unable to Locate,07/03/2015 11:46:59 PM,16TH ST/SHOTWELL ST,San Francisco,94110,B02,7,5237,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7652494943866, -122.416387524486)",151844137-85 +151632722,E10,15062404,Medical Incident,06/12/2015,06/12/2015,06/12/2015 05:08:47 PM,06/12/2015 05:08:47 PM,06/12/2015 05:09:13 PM,06/12/2015 05:10:43 PM,06/12/2015 05:15:02 PM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,Code 2 Transport,06/12/2015 05:34:34 PM,LOMBARD ST/LYON ST,San Francisco,94123,B99,51,4611,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7984592319601, -122.447303042915)",151632722-E10 +152730674,E14,15104399,Medical Incident,09/30/2015,09/29/2015,09/30/2015 07:54:42 AM,09/30/2015 07:56:30 AM,09/30/2015 07:56:58 AM,09/30/2015 07:58:41 AM,09/30/2015 08:00:54 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Code 3 Transport,09/30/2015 08:14:29 AM,500 Block of 27TH AVE,San Francisco,94121,B07,14,7222,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7790343191537, -122.486738695304)",152730674-E14 +160942385,50,16037318,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:48:40 PM,04/03/2016 03:48:40 PM,04/03/2016 03:48:59 PM,04/03/2016 03:49:06 PM,04/03/2016 03:55:11 PM,04/03/2016 04:27:42 PM,04/03/2016 04:41:54 PM,Code 2 Transport,04/03/2016 05:45:34 PM,200 Block of 27TH AVE,San Francisco,94121,B07,14,7217,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Seacliff,"(37.7847139650563, -122.487287630184)",160942385-50 +160953211,KM04,16037750,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:32:48 PM,04/04/2016 06:33:14 PM,04/04/2016 06:33:54 PM,04/04/2016 06:34:30 PM,04/04/2016 06:36:12 PM,04/04/2016 06:51:16 PM,04/04/2016 07:06:39 PM,Code 2 Transport,04/04/2016 07:29:35 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160953211-KM04 +152410089,E09,15091710,Medical Incident,08/29/2015,08/28/2015,08/29/2015 12:26:29 AM,08/29/2015 12:26:29 AM,08/29/2015 12:26:47 AM,08/29/2015 12:31:43 AM,08/29/2015 12:31:43 AM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,No Merit,08/29/2015 12:37:00 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",152410089-E09 +151571900,77,15059949,Medical Incident,06/06/2015,06/06/2015,06/06/2015 02:01:48 PM,06/06/2015 02:02:48 PM,06/06/2015 02:02:58 PM,06/06/2015 02:05:32 PM,06/06/2015 02:09:24 PM,06/06/2015 02:24:05 PM,06/06/2015 03:07:36 PM,Code 2 Transport,06/06/2015 03:28:20 PM,0 Block of DUKES CT,San Francisco,94124,B10,17,6517,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.737007707134, -122.38650210262)",151571900-77 +152301118,E19,15087707,Structure Fire,08/18/2015,08/18/2015,08/18/2015 10:15:13 AM,08/18/2015 10:15:58 AM,08/18/2015 10:16:40 AM,08/18/2015 10:17:07 AM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Fire,08/18/2015 01:40:25 PM,3600 Block of TARAVAL ST,San Francisco,94116,B08,18,7665,3,3,3,true,Fire,2,ENGINE,21,8,4,Sunset/Parkside,"(37.7416856071451, -122.505151778205)",152301118-E19 +152622464,E35,15100231,Water Rescue,09/19/2015,09/19/2015,09/19/2015 03:50:49 PM,09/19/2015 03:51:41 PM,09/19/2015 03:53:09 PM,09/19/2015 03:55:16 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Unable to Locate,09/19/2015 04:01:47 PM,900 Block of 3RD ST,San Francisco,94158,B03,8,946,3,3,3,true,Fire,1,ENGINE,9,None,6,None,"(37.7765531472403, -122.390007762623)",152622464-E35 +160963521,KM02,16038158,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:35:44 PM,04/05/2016 07:37:26 PM,04/05/2016 07:38:00 PM,04/05/2016 07:38:50 PM,04/05/2016 07:58:07 PM,04/05/2016 07:58:08 PM,04/05/2016 08:28:49 PM,Code 2 Transport,04/05/2016 08:45:25 PM,CALL BOX:,Presidio,94129,B99,51,4617,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,2,Presidio,"(37.7905658380644, -122.481242453801)",160963521-KM02 +160963980,52,16038201,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:12:12 PM,04/05/2016 10:14:15 PM,04/05/2016 10:14:30 PM,04/05/2016 10:14:38 PM,04/05/2016 10:17:26 PM,04/05/2016 10:36:54 PM,04/05/2016 10:45:20 PM,Code 2 Transport,04/05/2016 11:43:19 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160963980-52 +141220293,T01,14041402,Structure Fire,05/02/2014,05/02/2014,05/02/2014 05:07:11 PM,05/02/2014 05:07:11 PM,05/02/2014 05:07:18 PM,05/02/2014 05:09:07 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 05:11:58 PM,10TH ST/MISSION ST,SAN FRANCISCO,94103,B02,36,2341,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7752720593077, -122.415908181241)",141220293-T01 +153450980,E25,15132729,Administrative,12/11/2015,12/11/2015,12/11/2015 08:52:01 AM,12/11/2015 08:52:10 AM,12/11/2015 08:53:27 AM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Fire,12/11/2015 08:53:54 AM,3300 Block of 3RD ST,San Francisco,94124,B10,25,2641,3,3,3,false,,1,ENGINE,1,None,None,None,"(37.7475912199361, -122.387182780653)",153450980-E25 +150782008,64,15029912,Medical Incident,03/19/2015,03/19/2015,03/19/2015 01:22:07 PM,03/19/2015 01:22:52 PM,03/19/2015 01:23:10 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Code 2 Transport,03/19/2015 01:25:35 PM,MARKET ST/LAGUNA ST,San Francisco,94103,B02,36,3416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7707477455746, -122.424852598702)",150782008-64 +150122967,54,15004866,Medical Incident,01/12/2015,01/12/2015,01/12/2015 06:23:14 PM,01/12/2015 06:24:40 PM,01/12/2015 06:41:54 PM,01/12/2015 06:44:12 PM,01/12/2015 06:44:12 PM,01/12/2015 06:53:45 PM,01/12/2015 07:15:40 PM,Code 2 Transport,01/12/2015 07:43:28 PM,1200 Block of MENDELL ST,San Francisco,94124,B10,17,6515,2,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7355718905805, -122.38955219063)",150122967-54 +160932470,53,16036943,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:32:08 PM,04/02/2016 04:33:06 PM,04/02/2016 04:35:15 PM,04/02/2016 04:35:28 PM,04/02/2016 04:44:46 PM,04/02/2016 04:54:00 PM,04/02/2016 05:19:43 PM,Code 2 Transport,04/02/2016 05:43:11 PM,500 Block of BURNETT AVE,San Francisco,94131,B06,24,5281,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Twin Peaks,"(37.7522092988242, -122.444482891572)",160932470-53 +142541148,72,14088622,Medical Incident,09/11/2014,09/11/2014,09/11/2014 10:24:07 AM,09/11/2014 10:25:21 AM,09/11/2014 10:25:53 AM,09/11/2014 10:26:05 AM,09/11/2014 10:30:44 AM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,No Merit,09/11/2014 10:38:19 AM,700 Block of 8TH AVE,San Francisco,94118,B07,31,7132,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7743379667606, -122.465881851458)",142541148-72 +152520161,E15,15096179,Medical Incident,09/09/2015,09/08/2015,09/09/2015 01:04:05 AM,09/09/2015 01:04:38 AM,09/09/2015 01:04:46 AM,09/09/2015 01:08:14 AM,09/09/2015 01:08:39 AM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,Code 2 Transport,09/09/2015 01:16:29 AM,200 Block of GRANADA AVE,San Francisco,94112,B09,15,8473,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7229722670575, -122.457235193832)",152520161-E15 +141250183,83,14042338,Medical Incident,05/05/2014,05/05/2014,05/05/2014 11:35:38 AM,05/05/2014 11:36:41 AM,05/05/2014 11:37:28 AM,05/05/2014 11:37:48 AM,05/05/2014 11:42:35 AM,05/05/2014 12:02:45 PM,05/05/2014 12:07:30 PM,Code 2 Transport,05/05/2014 12:30:20 PM,HYDE ST/GOLDEN GATE AV,SAN FRANCISCO,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",141250183-83 +160993373,76,16039451,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:56:22 PM,04/08/2016 07:58:04 PM,04/08/2016 07:58:52 PM,04/08/2016 07:59:00 PM,04/08/2016 08:02:47 PM,04/08/2016 08:07:54 PM,04/08/2016 08:21:59 PM,Code 2 Transport,04/08/2016 08:58:30 PM,FOLSOM ST/BEALE ST,San Francisco,94105,B03,35,2122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7886866619654, -122.392722833778)",160993373-76 +151452941,D2,15055302,Structure Fire,05/25/2015,05/25/2015,05/25/2015 08:03:32 PM,05/25/2015 08:04:18 PM,05/25/2015 08:04:41 PM,05/25/2015 08:05:53 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,Fire,05/25/2015 08:09:42 PM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,false,Alarm,1,CHIEF,7,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",151452941-D2 +142272078,E19,14078882,Fuel Spill,08/15/2014,08/15/2014,08/15/2014 02:52:33 PM,08/15/2014 02:54:52 PM,08/15/2014 02:55:53 PM,08/15/2014 02:56:45 PM,08/15/2014 03:01:13 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Fire,08/15/2014 03:06:51 PM,19TH AV/HOLLOWAY AV,San Francisco,94132,B08,19,8751,3,3,3,true,Alarm,1,ENGINE,1,9,7,Lakeshore,"(37.7210572969552, -122.475221950242)",142272078-E19 +143260746,E05,14115388,Medical Incident,11/22/2014,11/21/2014,11/22/2014 07:17:21 AM,11/22/2014 07:17:47 AM,11/22/2014 07:18:36 AM,11/22/2014 07:20:25 AM,11/22/2014 07:21:33 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Code 2 Transport,11/22/2014 07:44:31 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",143260746-E05 +160980449,71,16038775,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:20:11 AM,04/07/2016 04:20:11 AM,04/07/2016 04:20:36 AM,04/07/2016 04:20:56 AM,04/07/2016 04:23:34 AM,04/07/2016 04:27:07 AM,04/07/2016 04:44:02 AM,Code 2 Transport,04/07/2016 04:47:27 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160980449-71 +150380391,E10,15014629,Medical Incident,02/07/2015,02/06/2015,02/07/2015 02:44:36 AM,02/07/2015 02:46:39 AM,02/07/2015 02:46:46 AM,02/07/2015 02:48:59 AM,02/07/2015 02:50:25 AM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Code 2 Transport,02/07/2015 03:00:13 AM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7848770596387, -122.442348914658)",150380391-E10 +151072693,E32,15040589,Outside Fire,04/17/2015,04/17/2015,04/17/2015 04:36:26 PM,04/17/2015 04:37:38 PM,04/17/2015 04:37:43 PM,04/17/2015 04:41:06 PM,04/17/2015 04:41:06 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Fire,04/17/2015 04:45:01 PM,SILVER AV/ALEMANY BL,San Francisco,94112,B09,32,6113,3,3,3,false,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.7297755767155, -122.433386844031)",151072693-E32 +141731859,E33,14059706,Medical Incident,06/22/2014,06/22/2014,06/22/2014 02:47:55 PM,06/22/2014 02:48:13 PM,06/22/2014 02:49:04 PM,06/22/2014 02:50:43 PM,06/22/2014 02:53:15 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Against Medical Advice,06/22/2014 03:05:51 PM,100 Block of GOETHE ST,San Francisco,94112,B09,33,8364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7090126221049, -122.45976907124)",141731859-E33 +142751041,E42,14096397,Traffic Collision,10/02/2014,10/02/2014,10/02/2014 09:09:02 AM,10/02/2014 09:10:33 AM,10/02/2014 09:10:49 AM,10/02/2014 09:12:14 AM,10/02/2014 09:13:59 AM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Unable to Locate,10/02/2014 09:19:52 AM,100 Block of PAUL AVE,San Francisco,94124,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.722697633179, -122.397167021381)",142751041-E42 +141293115,E03,14044006,Structure Fire,05/09/2014,05/09/2014,05/09/2014 07:14:30 PM,05/09/2014 07:14:30 PM,05/09/2014 07:16:25 PM,05/09/2014 07:17:14 PM,05/09/2014 07:20:03 PM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Cancelled,05/09/2014 07:21:19 PM,STOCKTON ST/MARKET ST,San Francisco,94103,B03,1,1322,3,3,3,false,Alarm,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",141293115-E03 +141763867,81,14060932,Medical Incident,06/25/2014,06/25/2014,06/25/2014 11:40:29 PM,06/25/2014 11:40:29 PM,06/25/2014 11:40:53 PM,06/25/2014 11:41:04 PM,06/25/2014 11:46:32 PM,06/26/2014 12:02:08 AM,06/26/2014 12:04:36 AM,Code 2 Transport,06/26/2014 12:45:03 AM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",141763867-81 +160930202,52,16036686,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:16:33 AM,04/02/2016 01:16:33 AM,04/02/2016 01:21:38 AM,04/02/2016 01:21:38 AM,04/02/2016 01:30:06 AM,04/02/2016 01:48:38 AM,04/02/2016 02:07:00 AM,Code 2 Transport,04/02/2016 02:42:11 AM,200 Block of ALLISON ST,San Francisco,94112,B09,43,6221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7118122383608, -122.441310400337)",160930202-52 +150912250,60,15034637,Medical Incident,04/01/2015,04/01/2015,04/01/2015 02:59:41 PM,04/01/2015 03:02:24 PM,04/01/2015 03:02:49 PM,04/01/2015 03:02:59 PM,04/01/2015 03:19:09 PM,04/01/2015 03:41:48 PM,04/01/2015 04:00:42 PM,Code 2 Transport,04/01/2015 04:25:43 PM,1500 Block of 28TH AVE,San Francisco,94122,B08,18,7475,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7584772685573, -122.486377709798)",150912250-60 +142113384,T11,14073271,Structure Fire,07/30/2014,07/30/2014,07/30/2014 08:51:39 PM,07/30/2014 08:52:21 PM,07/30/2014 08:53:17 PM,07/30/2014 08:54:30 PM,07/30/2014 08:56:53 PM,04/25/2016 01:15:56 PM,04/25/2016 01:15:56 PM,Fire,07/30/2014 09:05:22 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,3,3,3,false,Alarm,1,TRUCK,1,6,8,Bernal Heights,"(37.7459390289798, -122.421805189275)",142113384-T11 +160922912,AM10,16036552,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 06:07:01 PM,04/01/2016 06:07:01 PM,04/01/2016 06:07:17 PM,04/01/2016 06:07:50 PM,04/01/2016 06:14:36 PM,04/01/2016 06:19:56 PM,04/01/2016 06:31:01 PM,Code 3 Transport,04/01/2016 07:13:10 PM,LAGUNA ST/BROADWAY,San Francisco,94109,B04,38,3355,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Pacific Heights,"(37.7948949363979, -122.429989277715)",160922912-AM10 +150491344,52,15018915,Medical Incident,02/18/2015,02/18/2015,02/18/2015 10:32:04 AM,02/18/2015 10:32:34 AM,02/18/2015 10:34:57 AM,02/18/2015 10:35:31 AM,02/18/2015 10:51:01 AM,02/18/2015 11:33:56 AM,02/18/2015 11:33:59 AM,Code 2 Transport,02/18/2015 11:53:44 AM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.765718993574, -122.409520691153)",150491344-52 +153470393,88,15133519,Medical Incident,12/13/2015,12/12/2015,12/13/2015 02:40:06 AM,12/13/2015 02:40:51 AM,12/13/2015 02:41:12 AM,12/13/2015 02:41:28 AM,12/13/2015 02:42:36 AM,12/13/2015 02:56:28 AM,12/13/2015 03:14:13 AM,Code 2 Transport,12/13/2015 03:56:52 AM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",153470393-88 +141760270,85,14060604,Medical Incident,06/25/2014,06/24/2014,06/25/2014 03:11:40 AM,06/25/2014 03:14:13 AM,06/25/2014 03:16:09 AM,06/25/2014 03:16:30 AM,06/25/2014 03:29:34 AM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Patient Declined Transport,06/25/2014 04:21:00 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",141760270-85 +152000273,T11,15076084,Traffic Collision,07/19/2015,07/18/2015,07/19/2015 01:35:37 AM,07/19/2015 01:37:37 AM,07/19/2015 01:39:03 AM,07/19/2015 01:41:23 AM,07/19/2015 01:45:48 AM,04/25/2016 01:09:23 PM,04/25/2016 01:09:23 PM,Other,07/19/2015 02:14:45 AM,200 Block of OCEAN AVE,San Francisco,94112,B06,26,8146,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,9,11,Outer Mission,"(37.7232033054721, -122.442927356983)",152000273-T11 +151240397,KM07,15046892,Medical Incident,05/04/2015,05/03/2015,05/04/2015 06:13:17 AM,05/04/2015 06:13:17 AM,05/04/2015 06:13:33 AM,05/04/2015 06:14:10 AM,05/04/2015 06:20:33 AM,05/04/2015 06:31:33 AM,05/04/2015 06:42:51 AM,Code 2 Transport,05/04/2015 07:12:19 AM,100 Block of 2ND AVE,San Francisco,94118,B07,10,7114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7852692574959, -122.460358015278)",151240397-KM07 +141190217,68,14040172,Other,04/29/2014,04/29/2014,04/29/2014 01:10:23 PM,04/29/2014 01:11:55 PM,04/29/2014 01:19:38 PM,04/29/2014 01:20:08 PM,04/29/2014 01:23:30 PM,04/29/2014 01:48:59 PM,04/29/2014 02:14:37 PM,Code 2 Transport,04/29/2014 02:53:31 PM,0 Block of PARK HILL AVE,SAN FRANCISCO,94117,B05,21,5136,,3,3,true,Alarm,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7673531246888, -122.439155550726)",141190217-68 +160943133,KM12,16037393,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:38:52 PM,04/03/2016 07:39:46 PM,04/03/2016 07:39:57 PM,04/03/2016 07:40:29 PM,04/03/2016 07:43:36 PM,04/03/2016 07:54:06 PM,04/03/2016 08:04:49 PM,Code 2 Transport,04/03/2016 08:25:29 PM,MISSION ST/24TH ST,San Francisco,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160943133-KM12 +160970954,AM08,16038335,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:07:54 AM,04/06/2016 09:09:41 AM,04/06/2016 09:12:05 AM,04/06/2016 09:15:57 AM,04/06/2016 09:22:27 AM,04/06/2016 09:55:15 AM,04/06/2016 10:13:41 AM,Code 3 Transport,04/06/2016 11:06:52 AM,300 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,5,8,Castro/Upper Market,"(37.7668035178194, -122.440704687809)",160970954-AM08 +160960088,70,16037850,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:44:38 AM,04/05/2016 12:46:16 AM,04/05/2016 12:49:34 AM,04/05/2016 12:50:11 AM,04/05/2016 01:02:20 AM,04/05/2016 01:14:37 AM,04/05/2016 01:45:53 AM,Code 2 Transport,04/05/2016 02:22:16 AM,200 Block of DETROIT ST,San Francisco,94131,B09,15,8222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7294956324936, -122.444218631361)",160960088-70 +150211006,RS2,15008145,Structure Fire,01/21/2015,01/21/2015,01/21/2015 09:47:33 AM,01/21/2015 09:48:25 AM,01/21/2015 09:48:48 AM,01/21/2015 09:50:59 AM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Fire,01/21/2015 09:59:36 AM,1800 Block of 48TH AVE,San Francisco,94122,B08,23,7725,3,3,3,false,Fire,1,RESCUE SQUAD,10,8,4,Sunset/Parkside,"(37.7519393941701, -122.50741193175)",150211006-RS2 +151560982,74,15059443,Medical Incident,06/05/2015,06/05/2015,06/05/2015 09:31:06 AM,06/05/2015 09:32:25 AM,06/05/2015 09:32:40 AM,06/05/2015 09:32:55 AM,06/05/2015 09:46:53 AM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Medical Examiner,06/05/2015 10:22:16 AM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7984618025387, -122.410177852644)",151560982-74 +150693577,70,15026537,Medical Incident,03/10/2015,03/10/2015,03/10/2015 09:28:43 PM,03/10/2015 09:31:52 PM,03/10/2015 09:32:37 PM,03/10/2015 09:33:35 PM,03/10/2015 09:39:12 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,No Merit,03/10/2015 10:20:04 PM,100 Block of APPLETON AVE,San Francisco,94110,B06,32,5646,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",150693577-70 +143352791,T17,14118785,Alarms,12/01/2014,12/01/2014,12/01/2014 05:33:05 PM,12/01/2014 05:34:38 PM,12/01/2014 05:34:54 PM,12/01/2014 05:37:13 PM,12/01/2014 05:44:52 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Fire,12/01/2014 06:03:27 PM,0 Block of MELRA CT,San Francisco,94134,B09,44,6253,3,3,3,false,Alarm,1,TRUCK,3,9,10,Visitacion Valley,"(37.7098764268239, -122.410689969891)",143352791-T17 +152301212,66,15087720,Medical Incident,08/18/2015,08/18/2015,08/18/2015 10:44:44 AM,08/18/2015 10:46:43 AM,08/18/2015 10:46:56 AM,08/18/2015 10:47:25 AM,08/18/2015 10:52:30 AM,08/18/2015 11:24:40 AM,08/18/2015 12:04:04 PM,Code 3 Transport,08/18/2015 12:44:54 PM,3100 Block of TARAVAL ST,San Francisco,94116,B08,18,7636,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7419281236536, -122.499793309862)",152301212-66 +151291467,RC3,15048941,Medical Incident,05/09/2015,05/09/2015,05/09/2015 11:33:18 AM,05/09/2015 11:33:59 AM,05/09/2015 11:35:23 AM,05/09/2015 11:35:34 AM,05/09/2015 11:45:48 AM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Code 3 Transport,05/09/2015 11:52:38 AM,100 Block of DUBLIN ST,San Francisco,94112,B09,43,6165,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7177507837412, -122.426921683599)",151291467-RC3 +141260194,E18,14042708,Electrical Hazard,05/06/2014,05/06/2014,05/06/2014 11:59:57 AM,05/06/2014 12:01:39 PM,05/06/2014 12:01:44 PM,05/06/2014 12:02:35 PM,05/06/2014 12:04:11 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Fire,05/06/2014 12:09:26 PM,2000 Block of 30TH AVE,SAN FRANCISCO,94116,B08,18,7516,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7490546568877, -122.488000185963)",141260194-E18 +160970692,AM06,16038303,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:45:29 AM,04/06/2016 07:46:52 AM,04/06/2016 07:50:17 AM,04/06/2016 07:50:48 AM,04/06/2016 08:10:28 AM,04/06/2016 08:22:33 AM,04/06/2016 08:39:23 AM,Code 2 Transport,04/06/2016 09:04:52 AM,MARKET ST/MAIN ST,San Francisco,94105,B01,13,1113,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7930970823054, -122.396504488933)",160970692-AM06 +150853348,72,15032586,Traffic Collision,03/26/2015,03/26/2015,03/26/2015 07:22:31 PM,03/26/2015 07:23:37 PM,03/26/2015 07:24:48 PM,03/26/2015 07:25:11 PM,03/26/2015 07:29:39 PM,03/26/2015 07:42:51 PM,03/26/2015 08:06:11 PM,Code 2 Transport,03/26/2015 08:29:29 PM,26TH AV/KIRKHAM ST,San Francisco,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7595012019911, -122.484365170611)",150853348-72 +141753580,E10,14060559,Medical Incident,06/24/2014,06/24/2014,06/24/2014 11:16:59 PM,06/24/2014 11:19:17 PM,06/24/2014 11:21:16 PM,06/24/2014 11:22:46 PM,06/24/2014 11:25:40 PM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,Cancelled,06/24/2014 11:29:39 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,ENGINE,3,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",141753580-E10 +152772325,76,15106288,Medical Incident,10/04/2015,10/04/2015,10/04/2015 03:30:51 PM,10/04/2015 03:32:46 PM,10/04/2015 03:32:56 PM,10/04/2015 03:33:05 PM,10/04/2015 03:38:55 PM,10/04/2015 03:51:50 PM,10/04/2015 04:00:28 PM,Code 2 Transport,10/04/2015 04:44:05 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",152772325-76 +153451350,85,15132760,Medical Incident,12/11/2015,12/11/2015,12/11/2015 10:26:50 AM,12/11/2015 10:26:50 AM,12/11/2015 10:27:08 AM,12/11/2015 10:27:18 AM,12/11/2015 10:36:30 AM,12/11/2015 10:51:10 AM,12/11/2015 10:51:11 AM,Code 2 Transport,12/11/2015 11:41:47 AM,2200 Block of HAYES ST,San Francisco,94117,B05,21,4543,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",153451350-85 +160940163,71,16037110,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:54:34 AM,04/03/2016 12:55:11 AM,04/03/2016 12:55:19 AM,04/03/2016 12:55:28 AM,04/03/2016 01:10:57 AM,04/03/2016 01:40:02 AM,04/03/2016 01:51:35 AM,Code 2 Transport,04/03/2016 02:24:17 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,6,Tenderloin,"(37.7862508859711, -122.413133876591)",160940163-71 +160942499,KM08,16037330,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:24:30 PM,04/03/2016 04:25:26 PM,04/03/2016 04:26:16 PM,04/03/2016 04:27:19 PM,04/03/2016 04:33:12 PM,04/03/2016 04:48:21 PM,04/03/2016 05:01:46 PM,Code 2 Transport,04/03/2016 05:31:17 PM,TURK BL/KITTREDGE TR,San Francisco,94118,B05,21,4564,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7781645979681, -122.450654811306)",160942499-KM08 +141630368,73,14056089,Medical Incident,06/12/2014,06/11/2014,06/12/2014 05:34:52 AM,06/12/2014 05:36:29 AM,06/12/2014 05:38:41 AM,06/12/2014 05:40:38 AM,06/12/2014 05:48:34 AM,06/12/2014 06:11:07 AM,06/12/2014 06:50:21 AM,Code 2 Transport,06/12/2014 07:20:03 AM,CASTRO ST/MARKET ST,San Francisco,94114,B05,6,5253,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",141630368-73 +141712446,E31,14059112,Medical Incident,06/20/2014,06/20/2014,06/20/2014 04:24:12 PM,06/20/2014 04:24:29 PM,06/20/2014 04:24:44 PM,06/20/2014 04:25:47 PM,06/20/2014 04:29:26 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Code 2 Transport,06/20/2014 04:48:06 PM,3600 Block of FULTON ST,San Francisco,94118,B07,31,7144,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.773225431204, -122.468554367118)",141712446-E31 +151501782,T13,15057097,Structure Fire,05/30/2015,05/30/2015,05/30/2015 01:26:08 PM,05/30/2015 01:28:01 PM,05/30/2015 01:28:52 PM,05/30/2015 01:30:00 PM,05/30/2015 01:38:49 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Fire,05/30/2015 01:41:45 PM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,false,Alarm,1,TRUCK,5,1,3,Chinatown,"(37.796699717573, -122.408014703843)",151501782-T13 +150573913,E10,15021985,Medical Incident,02/26/2015,02/26/2015,02/26/2015 10:58:38 PM,02/26/2015 11:00:28 PM,02/26/2015 11:01:03 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Patient Declined Transport,02/26/2015 11:02:12 PM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7800578530259, -122.464142970045)",150573913-E10 +151492189,KM06,15056741,Medical Incident,05/29/2015,05/29/2015,05/29/2015 02:39:10 PM,05/29/2015 02:40:40 PM,05/29/2015 02:41:36 PM,05/29/2015 02:41:58 PM,05/29/2015 02:50:34 PM,05/29/2015 03:21:12 PM,05/29/2015 03:27:29 PM,Code 2 Transport,05/29/2015 04:31:57 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",151492189-KM06 +151991730,B01,15075844,Structure Fire,07/18/2015,07/18/2015,07/18/2015 12:35:33 PM,07/18/2015 12:38:38 PM,07/18/2015 12:38:51 PM,07/18/2015 12:39:32 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,No Merit,07/18/2015 12:44:15 PM,SOUTH PARK/3RD ST,San Francisco,94107,B03,8,2173,3,3,3,false,Alarm,1,CHIEF,11,3,6,South of Market,"(37.7807005594218, -122.395064952988)",151991730-B01 +150911716,72,15034593,Medical Incident,04/01/2015,04/01/2015,04/01/2015 12:43:50 PM,04/01/2015 12:43:50 PM,04/01/2015 12:58:55 PM,04/01/2015 12:59:30 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Patient Declined Transport,04/01/2015 01:16:48 PM,800 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",150911716-72 +151742480,FD00A,15066432,,06/23/2015,06/23/2015,06/23/2015 03:57:37 PM,06/23/2015 04:01:18 PM,06/23/2015 04:58:24 PM,06/23/2015 04:58:24 PM,06/23/2015 04:58:24 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Patient Declined Transport,06/23/2015 04:58:30 PM,1300 Block of 43RD AVE,San Francisco,94122,B08,23,7653,2,2,2,false,Non Life-threatening,1,SUPPORT,3,8,4,Sunset/Parkside,"(37.7614938129235, -122.502847511693)",151742480-FD00A +151161429,T11,15043804,Structure Fire,04/26/2015,04/26/2015,04/26/2015 11:49:22 AM,04/26/2015 11:49:27 AM,04/26/2015 11:49:49 AM,04/26/2015 11:50:35 AM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Fire,04/26/2015 12:03:05 PM,1200 Block of NOE ST,San Francisco,94114,B06,11,554,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7494248005842, -122.43174723)",151161429-T11 +150072333,T01,15002741,Medical Incident,01/07/2015,01/07/2015,01/07/2015 03:33:23 PM,01/07/2015 03:34:48 PM,01/07/2015 03:35:33 PM,01/07/2015 03:37:16 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,No Merit,01/07/2015 03:39:27 PM,LARKIN ST/FULTON ST,San Francisco,94102,B02,36,1645,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",150072333-T01 +160982545,72,16038992,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:39:46 PM,04/07/2016 03:42:05 PM,04/07/2016 03:44:19 PM,04/07/2016 03:44:34 PM,04/07/2016 03:52:40 PM,04/07/2016 04:10:09 PM,04/07/2016 04:44:22 PM,Code 2 Transport,04/07/2016 05:06:20 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,2,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7742496611166, -122.414204535023)",160982545-72 +151502232,E40,15057140,Structure Fire,05/30/2015,05/30/2015,05/30/2015 03:29:55 PM,05/30/2015 03:31:54 PM,05/30/2015 03:32:15 PM,05/30/2015 03:32:41 PM,05/30/2015 03:35:30 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Fire,05/30/2015 03:37:30 PM,21ST AV/SLOAT BL,San Francisco,94132,B08,19,8732,3,3,3,false,Alarm,1,ENGINE,4,8,7,Sunset/Parkside,"(37.7346176626069, -122.477080828344)",151502232-E40 +151143974,E16,15043278,Medical Incident,04/24/2015,04/24/2015,04/24/2015 10:57:25 PM,04/24/2015 10:58:14 PM,04/24/2015 10:58:30 PM,04/24/2015 10:59:21 PM,04/24/2015 11:00:46 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Code 3 Transport,04/24/2015 11:09:19 PM,2500 Block of GREENWICH ST,San Francisco,94123,B04,16,4166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.798163952853, -122.44162207097)",151143974-E16 +152550754,AM02,15097422,Medical Incident,09/12/2015,09/11/2015,09/12/2015 07:51:49 AM,09/12/2015 07:52:13 AM,09/12/2015 07:52:45 AM,09/12/2015 07:53:18 AM,09/12/2015 08:00:10 AM,09/12/2015 08:23:56 AM,09/12/2015 08:36:22 AM,Code 2 Transport,09/12/2015 09:17:23 AM,200 Block of BRADFORD ST,San Francisco,94110,B10,32,5735,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Bernal Heights,"(37.7392981093573, -122.409463425691)",152550754-AM02 +141150045,RS1,14038703,Structure Fire,04/25/2014,04/24/2014,04/25/2014 06:20:13 AM,04/25/2014 06:21:08 AM,04/25/2014 06:22:22 AM,04/25/2014 06:25:40 AM,04/25/2016 01:17:42 PM,04/25/2016 01:17:42 PM,04/25/2016 01:17:42 PM,Fire,04/25/2014 06:34:12 AM,500 Block of BANKS ST,SAN FRANCISCO,94110,B10,32,573,,3,3,false,Fire,1,RESCUE SQUAD,12,10,9,Bernal Heights,"(37.7364499536633, -122.412979790377)",141150045-RS1 +160953339,AM08,16037762,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:02:59 PM,04/04/2016 07:04:17 PM,04/04/2016 07:05:38 PM,04/04/2016 07:06:18 PM,04/04/2016 07:09:57 PM,04/04/2016 07:18:33 PM,04/04/2016 07:30:24 PM,Code 2 Transport,04/04/2016 07:48:18 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160953339-AM08 +151983695,70,15075621,Medical Incident,07/17/2015,07/17/2015,07/17/2015 08:32:34 PM,07/17/2015 08:35:33 PM,07/17/2015 08:35:49 PM,07/17/2015 08:36:11 PM,07/17/2015 08:43:32 PM,07/17/2015 09:02:47 PM,07/17/2015 09:15:12 PM,Code 2 Transport,07/17/2015 10:01:13 PM,900 Block of GRANT AVE,San Francisco,94108,B01,2,1312,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7955759617339, -122.406632308192)",151983695-70 +160992457,67,16039379,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:10:18 PM,04/08/2016 04:10:42 PM,04/08/2016 04:16:56 PM,04/08/2016 04:16:59 PM,04/08/2016 04:26:13 PM,04/08/2016 04:37:46 PM,04/08/2016 05:03:32 PM,Code 2 Transport,04/08/2016 05:30:43 PM,700 Block of 7TH AVE,San Francisco,94118,B07,31,7132,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",160992457-67 +160951808,79,16037630,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:52:18 PM,04/04/2016 12:53:57 PM,04/04/2016 12:55:22 PM,04/04/2016 12:55:37 PM,04/04/2016 01:03:06 PM,04/04/2016 01:15:18 PM,04/04/2016 01:24:34 PM,Code 2 Transport,04/04/2016 02:20:55 PM,4TH ST/FREELON ST,San Francisco,94107,B03,8,2217,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7787510516113, -122.397061718419)",160951808-79 +160981563,74,16038888,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:29:44 AM,04/07/2016 11:30:21 AM,04/07/2016 11:31:30 AM,04/07/2016 11:32:24 AM,04/07/2016 11:44:24 AM,04/07/2016 12:05:55 PM,04/07/2016 12:17:02 PM,Code 2 Transport,04/07/2016 12:56:28 PM,200 Block of BROADWAY,San Francisco,94111,B01,13,1155,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7984506502378, -122.401628969112)",160981563-74 +150232363,55,15008975,Medical Incident,01/23/2015,01/23/2015,01/23/2015 04:02:08 PM,01/23/2015 04:02:50 PM,01/23/2015 04:04:12 PM,01/23/2015 04:05:45 PM,01/23/2015 04:27:04 PM,01/23/2015 04:27:05 PM,01/23/2015 05:06:36 PM,Code 2 Transport,01/23/2015 05:43:57 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",150232363-55 +141692168,KM04,14058394,Traffic Collision,06/18/2014,06/18/2014,06/18/2014 03:40:56 PM,06/18/2014 03:41:54 PM,06/18/2014 03:42:17 PM,06/18/2014 03:43:21 PM,06/18/2014 03:46:32 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Patient Declined Transport,06/18/2014 04:18:37 PM,10TH ST/HARRISON ST,San Francisco,94103,B02,29,2344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7715786771769, -122.411277938324)",141692168-KM04 +152000059,RC3,15076058,Medical Incident,07/19/2015,07/18/2015,07/19/2015 12:11:56 AM,07/19/2015 12:13:21 AM,07/19/2015 12:33:23 AM,07/19/2015 12:35:32 AM,07/19/2015 12:47:04 AM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Other,07/19/2015 01:00:53 AM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7650513381945, -122.419668973861)",152000059-RC3 +142072766,B10,14071800,Alarms,07/26/2014,07/26/2014,07/26/2014 06:30:41 PM,07/26/2014 06:31:59 PM,07/26/2014 06:32:05 PM,07/26/2014 06:33:52 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,Fire,07/26/2014 06:36:33 PM,0 Block of PERALTA AVE,San Francisco,94110,B06,9,5671,3,3,3,false,Alarm,1,CHIEF,3,6,9,Bernal Heights,"(37.7479927009855, -122.405423607202)",142072766-B10 +141891208,AM08,14065455,Medical Incident,07/08/2014,07/08/2014,07/08/2014 10:24:35 AM,07/08/2014 10:27:59 AM,07/08/2014 10:28:33 AM,07/08/2014 10:29:33 AM,07/08/2014 10:38:50 AM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Cancelled,07/08/2014 10:38:58 AM,2300 Block of 21ST ST,San Francisco,94107,B10,9,2626,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7583116848372, -122.404384791763)",141891208-AM08 +141892871,66,14065589,Medical Incident,07/08/2014,07/08/2014,07/08/2014 05:47:05 PM,07/08/2014 05:49:23 PM,07/08/2014 05:50:13 PM,07/08/2014 05:50:47 PM,07/08/2014 05:57:40 PM,07/08/2014 06:22:04 PM,07/08/2014 06:51:39 PM,Code 2 Transport,07/08/2014 07:09:09 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",141892871-66 +160993993,62,16039525,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:13:33 PM,04/08/2016 11:15:23 PM,04/08/2016 11:18:14 PM,04/08/2016 11:18:28 PM,04/08/2016 11:36:49 PM,04/08/2016 11:54:16 PM,04/09/2016 12:12:54 AM,Code 2 Transport,04/09/2016 12:31:12 AM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8056674488919, -122.412766371216)",160993993-62 +153283829,AM18,15126436,Medical Incident,11/24/2015,11/24/2015,11/24/2015 10:10:39 PM,11/24/2015 10:11:14 PM,11/24/2015 10:11:34 PM,11/24/2015 10:13:13 PM,11/24/2015 10:18:32 PM,11/24/2015 10:44:19 PM,11/24/2015 10:56:26 PM,Code 2 Transport,11/24/2015 11:35:17 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",153283829-AM18 +160922368,KM13,16036509,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:01:45 PM,04/01/2016 04:02:24 PM,04/01/2016 04:03:44 PM,04/01/2016 04:04:18 PM,04/01/2016 04:12:18 PM,04/01/2016 04:18:50 PM,04/01/2016 04:37:09 PM,Code 2 Transport,04/01/2016 05:03:38 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160922368-KM13 +160924069,85,16036665,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:57:35 PM,04/01/2016 11:58:50 PM,04/01/2016 11:59:30 PM,04/01/2016 11:59:40 PM,04/02/2016 12:08:27 AM,04/02/2016 12:30:54 AM,04/02/2016 12:49:03 AM,Code 2 Transport,04/02/2016 01:24:01 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94116,B08,39,8624,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",160924069-85 +160980282,89,16038753,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:31:56 AM,04/07/2016 02:33:29 AM,04/07/2016 02:33:59 AM,04/07/2016 02:34:07 AM,04/07/2016 02:38:40 AM,04/07/2016 02:56:29 AM,04/07/2016 03:11:22 AM,Code 2 Transport,04/07/2016 03:45:32 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160980282-89 +150523170,85,15020149,Medical Incident,02/21/2015,02/21/2015,02/21/2015 07:07:23 PM,02/21/2015 07:08:29 PM,02/21/2015 07:09:25 PM,02/21/2015 07:09:33 PM,02/21/2015 07:19:29 PM,02/21/2015 07:32:01 PM,02/21/2015 07:57:18 PM,Code 2 Transport,02/21/2015 08:24:27 PM,300 Block of MORAGA ST,San Francisco,94122,B08,22,7343,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7566128040507, -122.466329999361)",150523170-85 +141370317,E28,14046783,Medical Incident,05/17/2014,05/16/2014,05/17/2014 02:02:58 AM,05/17/2014 02:04:05 AM,05/17/2014 02:04:28 AM,05/17/2014 02:06:43 AM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,Code 2 Transport,05/17/2014 02:09:09 AM,LOMBARD ST/LARKIN ST,San Francisco,94109,B01,41,1625,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,2,Russian Hill,"(37.8017584160095, -122.421257557973)",141370317-E28 +160970394,61,16038276,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:05:34 AM,04/06/2016 05:05:34 AM,04/06/2016 05:05:57 AM,04/06/2016 05:06:28 AM,04/06/2016 05:12:33 AM,04/06/2016 05:22:41 AM,04/06/2016 05:55:37 AM,Code 2 Transport,04/06/2016 06:28:28 AM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",160970394-61 +142672863,T16,14093604,Water Rescue,09/24/2014,09/24/2014,09/24/2014 05:24:42 PM,09/24/2014 05:24:42 PM,09/24/2014 05:29:01 PM,09/24/2014 05:30:50 PM,09/24/2014 05:53:44 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Fire,09/24/2014 07:01:01 PM,300 Block of GREAT HWY,San Francisco,94121,B08,34,7314,3,3,3,false,Fire,1,TRUCK,14,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",142672863-T16 +161001844,75,16039791,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:22:47 PM,04/09/2016 02:22:47 PM,04/09/2016 02:23:06 PM,04/09/2016 02:23:12 PM,04/09/2016 02:34:19 PM,04/09/2016 02:37:58 PM,04/09/2016 02:51:08 PM,Code 2 Transport,04/09/2016 03:23:46 PM,13TH ST/TRAINOR ST,San Francisco,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7695357781802, -122.414494438911)",161001844-75 +161001920,76,16039796,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:47:29 PM,04/09/2016 02:49:15 PM,04/09/2016 02:49:42 PM,04/09/2016 02:49:48 PM,04/09/2016 02:56:28 PM,04/09/2016 03:03:29 PM,04/09/2016 03:14:30 PM,Code 2 Transport,04/09/2016 03:43:12 PM,2600 Block of LYON ST,San Francisco,94123,B04,16,4332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7951802111491, -122.446730665283)",161001920-76 +160923925,64,16036648,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:10:44 PM,04/01/2016 11:13:17 PM,04/01/2016 11:13:53 PM,04/01/2016 11:14:11 PM,04/01/2016 11:18:10 PM,04/01/2016 11:38:32 PM,04/02/2016 12:12:18 AM,Code 2 Transport,04/02/2016 12:35:47 AM,200 Block of 9TH AVE,San Francisco,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",160923925-64 +142791979,KM10,14098184,Medical Incident,10/06/2014,10/06/2014,10/06/2014 02:16:07 PM,10/06/2014 02:16:46 PM,10/06/2014 02:17:50 PM,10/06/2014 02:20:37 PM,10/06/2014 02:26:51 PM,10/06/2014 02:55:08 PM,10/06/2014 03:13:41 PM,Code 3 Transport,10/06/2014 03:56:26 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",142791979-KM10 +160974111,85,16038661,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 08:43:31 PM,04/06/2016 08:43:31 PM,04/06/2016 08:51:29 PM,04/06/2016 08:51:37 PM,04/06/2016 09:01:31 PM,04/06/2016 09:18:50 PM,04/06/2016 09:33:03 PM,Code 2 Transport,04/06/2016 10:16:36 PM,JUNIPERO SERRA BL/MERCEDES WY,San Francisco,94127,B09,19,8446,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7268240515521, -122.47205688367)",160974111-85 +150441081,E51,15017040,Medical Incident,02/13/2015,02/13/2015,02/13/2015 09:23:52 AM,02/13/2015 09:25:45 AM,02/13/2015 09:26:24 AM,02/13/2015 09:27:50 AM,02/13/2015 09:36:23 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/13/2015 11:06:31 AM,3400 Block of SCOTT ST,San Francisco,94123,B04,16,4114,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8015791056304, -122.441531958949)",150441081-E51 +143452223,E08,14122914,Medical Incident,12/11/2014,12/11/2014,12/11/2014 02:18:54 PM,12/11/2014 02:19:48 PM,12/11/2014 02:24:03 PM,12/11/2014 02:25:27 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Code 2 Transport,12/11/2014 02:47:42 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",143452223-E08 +141471057,AM04,14050384,Medical Incident,05/27/2014,05/27/2014,05/27/2014 09:47:10 AM,05/27/2014 09:47:52 AM,05/27/2014 09:48:36 AM,05/27/2014 09:49:28 AM,05/27/2014 09:53:44 AM,05/27/2014 10:19:21 AM,05/27/2014 10:22:16 AM,Code 2 Transport,05/27/2014 10:59:39 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",141471057-AM04 +143072702,E09,14108714,Traffic Collision,11/03/2014,11/03/2014,11/03/2014 05:52:33 PM,11/03/2014 05:55:14 PM,11/03/2014 06:02:13 PM,11/03/2014 06:03:25 PM,11/03/2014 06:16:43 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,CHP,11/03/2014 06:20:29 PM,100 Block of AVENUE C,San Francisco,94130,B10,9,2626,2,2,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",143072702-E09 +143311599,E36,14117390,Other,11/27/2014,11/27/2014,11/27/2014 02:32:10 PM,11/27/2014 02:32:32 PM,11/27/2014 02:34:28 PM,11/27/2014 02:35:15 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Fire,11/27/2014 02:37:53 PM,POLK ST/EDDY ST,San Francisco,94109,B02,3,3114,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",143311599-E36 +160993726,52,16039495,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:50:16 PM,04/08/2016 09:50:55 PM,04/08/2016 09:53:54 PM,04/08/2016 09:54:03 PM,04/08/2016 10:00:53 PM,04/08/2016 10:15:50 PM,04/08/2016 10:42:15 PM,Code 2 Transport,04/08/2016 11:04:33 PM,1500 Block of GRANT AVE,San Francisco,94133,B01,28,1265,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8012484334227, -122.407775929611)",160993726-52 +151250734,62,15047269,Medical Incident,05/05/2015,05/05/2015,05/05/2015 08:23:42 AM,05/05/2015 08:24:33 AM,05/05/2015 08:27:32 AM,05/05/2015 08:27:32 AM,05/05/2015 08:33:12 AM,05/05/2015 08:42:28 AM,05/05/2015 09:22:32 AM,Code 2 Transport,05/05/2015 09:52:32 AM,2400 Block of KEITH ST,San Francisco,94124,B10,17,6546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",151250734-62 +160940778,88,16037182,Medical Incident,04/03/2016,04/02/2016,04/03/2016 06:58:19 AM,04/03/2016 07:00:42 AM,04/03/2016 07:01:04 AM,04/03/2016 07:01:13 AM,04/03/2016 07:04:57 AM,04/03/2016 07:27:23 AM,04/03/2016 07:31:59 AM,Code 3 Transport,04/03/2016 08:22:28 AM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",160940778-88 +141582110,84,14054478,Structure Fire,06/07/2014,06/07/2014,06/07/2014 03:59:10 PM,06/07/2014 03:59:48 PM,06/07/2014 04:00:43 PM,06/07/2014 04:00:55 PM,06/07/2014 04:05:25 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 04:07:21 PM,1400 Block of ANZA ST,San Francisco,94118,B07,31,7131,3,3,3,true,Alarm,1,MEDIC,6,7,1,Inner Richmond,"(37.7790598295311, -122.463606673844)",141582110-84 +152712057,E11,15103821,Medical Incident,09/28/2015,09/28/2015,09/28/2015 02:10:32 PM,09/28/2015 02:10:39 PM,09/28/2015 02:11:00 PM,09/28/2015 02:11:26 PM,09/28/2015 02:14:39 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Against Medical Advice,09/28/2015 02:33:06 PM,200 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5444,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7588840549508, -122.429141172461)",152712057-E11 +142140908,KM06,14074143,Medical Incident,08/02/2014,08/02/2014,08/02/2014 08:46:05 AM,08/02/2014 08:47:31 AM,08/02/2014 08:47:46 AM,08/02/2014 08:48:45 AM,08/02/2014 08:53:43 AM,08/02/2014 08:57:45 AM,08/02/2014 09:11:07 AM,Code 2 Transport,08/02/2014 10:09:24 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",142140908-KM06 +141750272,T11,14060240,Structure Fire,06/24/2014,06/23/2014,06/24/2014 03:49:53 AM,06/24/2014 03:49:53 AM,06/24/2014 03:50:29 AM,06/24/2014 03:52:14 AM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,Code 2 Transport,06/24/2014 03:54:27 AM,300 Block of 30TH ST,San Francisco,94131,B06,11,5574,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7421427387206, -122.426687551057)",141750272-T11 +151183400,E39,15044774,Medical Incident,04/28/2015,04/28/2015,04/28/2015 08:24:58 PM,04/28/2015 08:25:47 PM,04/28/2015 08:26:00 PM,04/28/2015 08:27:28 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,Code 2 Transport,04/28/2015 08:30:41 PM,1000 Block of CAPITOL AVE,San Francisco,94112,B09,15,8464,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.7209306726237, -122.459270472767)",151183400-E39 +160943632,64,16037454,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:46:08 PM,04/03/2016 10:46:08 PM,04/03/2016 10:46:47 PM,04/03/2016 10:47:22 PM,04/03/2016 10:54:36 PM,04/03/2016 11:03:35 PM,04/03/2016 11:18:40 PM,Code 2 Transport,04/03/2016 11:36:35 PM,GENEVA AV/MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",160943632-64 +143491502,E18,14124614,Medical Incident,12/15/2014,12/15/2014,12/15/2014 12:22:44 PM,12/15/2014 12:26:37 PM,12/15/2014 12:27:14 PM,12/15/2014 12:28:39 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Code 2 Transport,12/15/2014 12:29:28 PM,700 Block of 27TH AVE,San Francisco,94121,B07,14,7223,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.775274399629, -122.486466775057)",143491502-E18 +160961762,82,16038008,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:43:43 PM,04/05/2016 12:44:53 PM,04/05/2016 12:47:32 PM,04/05/2016 12:56:16 PM,04/05/2016 01:13:08 PM,04/05/2016 01:44:10 PM,04/05/2016 01:41:07 PM,Code 2 Transport,04/05/2016 02:10:07 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160961762-82 +160974318,72,16038684,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:48:31 PM,04/06/2016 09:49:40 PM,04/06/2016 09:49:58 PM,04/06/2016 09:51:10 PM,04/06/2016 10:00:17 PM,04/06/2016 10:17:56 PM,04/06/2016 10:35:37 PM,Code 2 Transport,04/06/2016 11:07:10 PM,900 Block of PACIFIC AV,San Francisco,94133,B01,2,1416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964133979376, -122.410283359191)",160974318-72 +150611867,E13,15023295,Medical Incident,03/02/2015,03/02/2015,03/02/2015 01:51:02 PM,03/02/2015 01:51:15 PM,03/02/2015 01:51:45 PM,03/02/2015 01:52:43 PM,03/02/2015 01:54:38 PM,04/25/2016 01:11:57 PM,04/25/2016 01:11:57 PM,Unable to Locate,03/02/2015 01:59:28 PM,PINE ST/BATTERY ST,San Francisco,94111,B01,13,1136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7922579471835, -122.399763355201)",150611867-E13 +150831377,E01,15031698,Medical Incident,03/24/2015,03/24/2015,03/24/2015 11:32:19 AM,03/24/2015 11:32:38 AM,03/24/2015 11:34:06 AM,03/24/2015 11:34:31 AM,03/24/2015 11:41:31 AM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/24/2015 12:04:20 PM,500 Block of PINE ST,San Francisco,94108,B01,13,1243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.79153985856, -122.404971889407)",150831377-E01 +153003115,RS1,15115232,Structure Fire,10/27/2015,10/27/2015,10/27/2015 07:01:51 PM,10/27/2015 07:01:51 PM,10/27/2015 07:01:59 PM,10/27/2015 07:02:56 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/27/2015 07:06:09 PM,700 Block of GROVE ST,San Francisco,94102,B02,5,3424,3,3,3,false,Alarm,1,RESCUE SQUAD,8,2,5,Hayes Valley,"(37.7769836058087, -122.429190835712)",153003115-RS1 +142710551,E17,14094923,Medical Incident,09/28/2014,09/27/2014,09/28/2014 03:49:39 AM,09/28/2014 03:49:56 AM,09/28/2014 03:50:05 AM,09/28/2014 03:52:22 AM,09/28/2014 03:55:59 AM,04/25/2016 01:14:51 PM,04/25/2016 01:14:51 PM,Code 2 Transport,09/28/2014 04:02:44 AM,3RD ST/WILLIAMS AV,San Francisco,94124,B10,17,6536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7292784549254, -122.392624534553)",142710551-E17 +160983688,AM20,16039112,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:08:27 PM,04/07/2016 09:09:57 PM,04/07/2016 09:10:33 PM,04/07/2016 09:11:09 PM,04/07/2016 09:15:42 PM,04/07/2016 09:46:14 PM,04/07/2016 10:05:30 PM,Code 3 Transport,04/07/2016 10:50:55 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,3,3,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160983688-AM20 +143131288,E06,14110873,Medical Incident,11/09/2014,11/09/2014,11/09/2014 11:05:34 AM,11/09/2014 11:06:59 AM,11/09/2014 11:07:19 AM,11/09/2014 11:11:06 AM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Code 2 Transport,11/09/2014 11:16:45 AM,LIBERTY ST/CASTRO ST,San Francisco,94114,B06,6,5443,2,2,2,false,Non Life-threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7568869049312, -122.434621577843)",143131288-E06 +160980491,53,16038782,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:01:38 AM,04/07/2016 05:02:12 AM,04/07/2016 05:02:20 AM,04/07/2016 05:02:29 AM,04/07/2016 05:07:45 AM,04/07/2016 05:30:04 AM,04/07/2016 05:49:12 AM,Code 2 Transport,04/07/2016 06:25:50 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160980491-53 +151541855,E18,15058677,Medical Incident,06/03/2015,06/03/2015,06/03/2015 01:05:06 PM,06/03/2015 01:05:28 PM,06/03/2015 01:05:45 PM,06/03/2015 01:07:07 PM,06/03/2015 01:09:09 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Code 2 Transport,06/03/2015 01:17:06 PM,2000 Block of 41ST AVE,San Francisco,94116,B08,18,7634,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7485355186812, -122.499788371286)",151541855-E18 +152321901,55,15088501,Medical Incident,08/20/2015,08/20/2015,08/20/2015 01:09:36 PM,08/20/2015 01:10:07 PM,08/20/2015 01:10:34 PM,08/20/2015 01:11:06 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,No Merit,08/20/2015 01:17:29 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",152321901-55 +143143048,E15,14111358,Alarms,11/10/2014,11/10/2014,11/10/2014 07:53:56 PM,11/10/2014 07:55:17 PM,11/10/2014 07:56:03 PM,11/10/2014 07:57:50 PM,11/10/2014 08:01:17 PM,04/25/2016 01:14:04 PM,04/25/2016 01:14:04 PM,Fire,11/10/2014 08:05:42 PM,0 Block of LOS PALMOS DR,San Francisco,94127,B09,15,8246,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7350155582705, -122.447470524539)",143143048-E15 +153170561,T15,15121722,Structure Fire,11/13/2015,11/12/2015,11/13/2015 05:56:37 AM,11/13/2015 05:56:37 AM,11/13/2015 05:57:32 AM,11/13/2015 06:00:06 AM,11/13/2015 06:03:21 AM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,Fire,11/13/2015 06:09:26 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,false,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",153170561-T15 +142391266,E22,14083080,Traffic Collision,08/27/2014,08/27/2014,08/27/2014 11:05:18 AM,08/27/2014 11:06:11 AM,08/27/2014 11:06:38 AM,08/27/2014 11:08:10 AM,08/27/2014 11:09:50 AM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Patient Declined Transport,08/27/2014 11:21:11 AM,1500 Block of 18TH AVE,San Francisco,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7589496557657, -122.475662134651)",142391266-E22 +161000587,62,16039632,Medical Incident,04/09/2016,04/08/2016,04/09/2016 05:31:13 AM,04/09/2016 05:32:38 AM,04/09/2016 05:32:49 AM,04/09/2016 05:33:09 AM,04/09/2016 05:39:53 AM,04/09/2016 06:14:38 AM,04/09/2016 06:41:08 AM,Code 2 Transport,04/09/2016 07:00:01 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",161000587-62 +151531583,E07,15058256,Medical Incident,06/02/2015,06/02/2015,06/02/2015 12:07:46 PM,06/02/2015 12:08:56 PM,06/02/2015 12:09:24 PM,06/02/2015 12:10:06 PM,06/02/2015 12:12:05 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Code 2 Transport,06/02/2015 12:19:09 PM,3300 Block of 20TH ST,San Francisco,94110,B06,7,5447,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7588083436412, -122.415229420851)",151531583-E07 +151400394,T17,15053043,Alarms,05/20/2015,05/19/2015,05/20/2015 05:40:04 AM,05/20/2015 05:41:13 AM,05/20/2015 05:41:28 AM,05/20/2015 05:43:37 AM,05/20/2015 05:52:26 AM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/20/2015 06:47:14 AM,200 Block of EXECUTIVE PARK BLVD,San Francisco,94134,B10,44,6275,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7111243307685, -122.39173301635)",151400394-T17 +151640543,E15,15062605,Medical Incident,06/13/2015,06/12/2015,06/13/2015 05:41:54 AM,06/13/2015 05:42:44 AM,06/13/2015 05:43:00 AM,06/13/2015 05:45:47 AM,06/13/2015 05:48:36 AM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,Against Medical Advice,06/13/2015 05:58:09 AM,0 Block of FARALLONES ST,San Francisco,94112,B09,33,8324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7141452033327, -122.454118358679)",151640543-E15 +150890659,FD00A,15033861,,03/30/2015,03/30/2015,03/30/2015 08:19:59 AM,03/30/2015 08:20:12 AM,03/30/2015 08:22:20 AM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Fire,03/30/2015 08:22:39 AM,1200 Block of 3RD ST,San Francisco,94158,B03,8,2231,3,3,3,false,,1,SUPPORT,2,3,6,Mission Bay,"(37.7724682400061, -122.389517648036)",150890659-FD00A +151932376,T13,15073704,Vehicle Fire,07/12/2015,07/12/2015,07/12/2015 04:06:47 PM,07/12/2015 04:08:00 PM,07/12/2015 04:09:12 PM,07/12/2015 04:12:29 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 04:12:49 PM,STEUART ST/HOWARD ST,San Francisco,94105,B03,35,2111,3,3,3,false,Fire,1,TRUCK,2,3,6,Financial District/South Beach,"(37.792005700577, -122.391645799833)",151932376-T13 +143631463,E02,14129840,Medical Incident,12/29/2014,12/29/2014,12/29/2014 12:21:47 PM,12/29/2014 12:22:51 PM,12/29/2014 12:24:36 PM,12/29/2014 12:25:47 PM,12/29/2014 12:29:29 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Code 2 Transport,12/29/2014 12:40:43 PM,2600 Block of MASON ST,San Francisco,94133,B01,28,1344,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8079431013757, -122.414138079819)",143631463-E02 +152310796,E43,15088035,Medical Incident,08/19/2015,08/19/2015,08/19/2015 08:28:55 AM,08/19/2015 08:29:32 AM,08/19/2015 08:29:45 AM,08/19/2015 08:30:44 AM,08/19/2015 08:34:11 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Code 2 Transport,08/19/2015 08:51:50 AM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",152310796-E43 +161000313,KM06,16039595,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:18:57 AM,04/09/2016 02:18:57 AM,04/09/2016 02:19:59 AM,04/09/2016 02:20:36 AM,04/09/2016 02:31:45 AM,04/09/2016 02:48:13 AM,04/09/2016 03:05:49 AM,Code 2 Transport,04/09/2016 03:53:05 AM,LA SALLE AV/NEWCOMB AV,San Francisco,94124,B10,17,6622,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7330708214796, -122.38500153982)",161000313-KM06 +150972070,E43,15036782,Medical Incident,04/07/2015,04/07/2015,04/07/2015 02:53:19 PM,04/07/2015 02:53:19 PM,04/07/2015 03:02:15 PM,04/07/2015 03:04:04 PM,04/07/2015 03:06:36 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/07/2015 03:15:09 PM,ALEMANY BL/ONONDAGA AV,San Francisco,94112,B09,15,8274,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7216263841889, -122.438641759079)",150972070-E43 +141701207,E13,14058650,Structure Fire,06/19/2014,06/19/2014,06/19/2014 11:02:56 AM,06/19/2014 11:03:07 AM,06/19/2014 11:03:45 AM,06/19/2014 11:03:56 AM,06/19/2014 11:07:02 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Fire,06/19/2014 11:07:08 AM,SANSOME ST/PINE ST,San Francisco,94104,B01,13,1165,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7921084008601, -122.400933083929)",141701207-E13 +152632953,72,15100780,Medical Incident,09/20/2015,09/20/2015,09/20/2015 05:59:58 PM,09/20/2015 06:01:15 PM,09/20/2015 06:03:24 PM,09/20/2015 06:03:55 PM,09/20/2015 06:19:45 PM,09/20/2015 06:19:46 PM,09/20/2015 06:43:34 PM,Code 2 Transport,09/20/2015 07:31:29 PM,1600 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7358945658935, -122.391072078488)",152632953-72 +143363755,T11,14119293,Alarms,12/02/2014,12/02/2014,12/02/2014 11:15:47 PM,12/02/2014 11:16:51 PM,12/02/2014 11:17:10 PM,12/02/2014 11:19:33 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,Fire,12/02/2014 11:29:14 PM,500 Block of GRAND VIEW AVE,San Francisco,94114,B06,24,5543,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7511853616935, -122.442744571978)",143363755-T11 +160982703,54,16039015,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:19:44 PM,04/07/2016 04:21:04 PM,04/07/2016 04:27:02 PM,04/07/2016 04:27:02 PM,04/07/2016 04:29:19 PM,04/07/2016 04:43:32 PM,04/07/2016 05:01:53 PM,Code 2 Transport,04/07/2016 05:27:46 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160982703-54 +160951662,77,16037616,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:20:59 PM,04/04/2016 12:20:59 PM,04/04/2016 12:30:05 PM,04/04/2016 12:30:07 PM,04/04/2016 12:30:19 PM,04/04/2016 12:43:10 PM,04/04/2016 01:11:31 PM,Code 2 Transport,04/04/2016 01:52:14 PM,HAIGHT ST/SHRADER ST,San Francisco,94117,B07,12,4545,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7693786636844, -122.451865726136)",160951662-77 +143320751,E12,14117630,Medical Incident,11/28/2014,11/28/2014,11/28/2014 08:41:03 AM,11/28/2014 08:41:17 AM,11/28/2014 08:41:39 AM,11/28/2014 08:42:43 AM,11/28/2014 08:45:27 AM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Code 2 Transport,11/28/2014 08:51:27 AM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7696117252991, -122.450474552631)",143320751-E12 +160962050,KM04,16038037,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:49:53 PM,04/05/2016 01:50:43 PM,04/05/2016 01:51:49 PM,04/05/2016 01:53:00 PM,04/05/2016 01:56:17 PM,04/05/2016 02:44:33 PM,04/05/2016 02:44:39 PM,Code 2 Transport,04/05/2016 03:44:41 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160962050-KM04 +160981498,AM08,16038882,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:14:17 AM,04/07/2016 11:15:01 AM,04/07/2016 11:16:58 AM,04/07/2016 11:20:31 AM,04/07/2016 11:24:34 AM,04/07/2016 11:46:19 AM,04/07/2016 12:00:00 PM,Code 2 Transport,04/07/2016 12:24:35 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7674693820862, -122.419972358911)",160981498-AM08 +150422923,E12,15016457,Structure Fire,02/11/2015,02/11/2015,02/11/2015 05:48:33 PM,02/11/2015 05:48:45 PM,02/11/2015 05:49:09 PM,02/11/2015 05:49:48 PM,02/11/2015 05:51:42 PM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Fire,02/11/2015 06:07:39 PM,4800 Block of 17TH ST,San Francisco,94117,B05,12,5257,3,3,3,true,Alarm,1,ENGINE,1,5,5,Inner Sunset,"(37.7615498630091, -122.449844912444)",150422923-E12 +141090071,E33,14036675,Medical Incident,04/19/2014,04/18/2014,04/19/2014 06:32:00 AM,04/19/2014 06:34:17 AM,04/19/2014 06:36:45 AM,04/19/2014 06:38:56 AM,04/19/2014 06:46:20 AM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Patient Declined Transport,04/19/2014 07:00:12 AM,100 Block of BRIGHT ST,SAN FRANCISCO,94132,B09,33,8375,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7134077846355, -122.463558451153)",141090071-E33 +143371092,T02,14119472,Alarms,12/03/2014,12/03/2014,12/03/2014 08:47:59 AM,12/03/2014 08:49:24 AM,12/03/2014 08:51:04 AM,12/03/2014 08:54:12 AM,12/03/2014 08:55:54 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Fire,12/03/2014 09:00:45 AM,800 Block of STOCKTON ST,San Francisco,94108,B01,2,1326,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7936278952214, -122.407746881294)",143371092-T02 +142732363,68,14095766,Medical Incident,09/30/2014,09/30/2014,09/30/2014 03:38:46 PM,09/30/2014 03:38:46 PM,09/30/2014 03:38:59 PM,09/30/2014 03:39:34 PM,09/30/2014 03:50:24 PM,09/30/2014 04:01:57 PM,09/30/2014 04:19:54 PM,Code 2 Transport,09/30/2014 05:31:13 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",142732363-68 +141353516,E41,14046326,Structure Fire,05/15/2014,05/15/2014,05/15/2014 08:07:31 PM,05/15/2014 08:08:26 PM,05/15/2014 08:09:06 PM,05/15/2014 08:10:16 PM,05/15/2014 08:11:37 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/15/2014 08:26:22 PM,1300 Block of PACIFIC AVE,San Francisco,94109,B01,41,1565,3,3,3,false,Alarm,1,ENGINE,2,1,3,Russian Hill,"(37.7954904018711, -122.417638463771)",141353516-E41 +141501416,D2,14051518,Structure Fire,05/30/2014,05/30/2014,05/30/2014 12:23:05 PM,05/30/2014 12:24:04 PM,05/30/2014 12:24:37 PM,05/30/2014 12:27:16 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 12:32:19 PM,100 Block of CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,false,Alarm,1,CHIEF,9,7,1,Inner Richmond,"(37.7830571301381, -122.460668346821)",141501416-D2 +152103415,E15,15080136,Odor (Strange / Unknown),07/29/2015,07/29/2015,07/29/2015 08:07:05 PM,07/29/2015 08:09:38 PM,07/29/2015 08:10:18 PM,07/29/2015 08:11:50 PM,07/29/2015 08:14:47 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/29/2015 08:25:08 PM,400 Block of MELROSE AVE,San Francisco,94127,B09,15,8241,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7337437306271, -122.451836824085)",152103415-E15 +160961826,KM02,16038018,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:02:34 PM,04/05/2016 01:02:52 PM,04/05/2016 01:03:18 PM,04/05/2016 01:03:53 PM,04/05/2016 01:05:18 PM,04/05/2016 01:29:01 PM,04/05/2016 02:26:11 PM,Code 2 Transport,04/05/2016 02:34:48 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160961826-KM02 +142891082,E05,14101800,Medical Incident,10/16/2014,10/16/2014,10/16/2014 09:24:12 AM,10/16/2014 09:25:48 AM,10/16/2014 09:38:46 AM,10/16/2014 09:40:54 AM,10/16/2014 09:42:24 AM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Code 2 Transport,10/16/2014 09:51:13 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,2,3,3,true,Non Life-threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",142891082-E05 +141702318,E11,14058765,Medical Incident,06/19/2014,06/19/2014,06/19/2014 04:21:00 PM,06/19/2014 04:22:11 PM,06/19/2014 04:26:06 PM,06/19/2014 04:26:06 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Code 2 Transport,06/19/2014 04:38:13 PM,900 Block of DOLORES ST,San Francisco,94110,B06,11,5513,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Mission,"(37.754237849245, -122.425238261655)",141702318-E11 +153301593,E05,15127017,Medical Incident,11/26/2015,11/26/2015,11/26/2015 02:21:33 PM,11/26/2015 02:21:58 PM,11/26/2015 02:22:33 PM,11/26/2015 02:23:27 PM,11/26/2015 02:24:29 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 2 Transport,11/26/2015 02:45:11 PM,1000 Block of GOLDEN GATE AVE,San Francisco,94115,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7799336918957, -122.428614022348)",153301593-E05 +161003028,KM09,16039924,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:32:04 PM,04/09/2016 08:32:58 PM,04/09/2016 08:34:55 PM,04/09/2016 08:35:55 PM,04/09/2016 08:44:01 PM,04/09/2016 09:04:09 PM,04/09/2016 09:27:24 PM,Code 2 Transport,04/09/2016 10:10:04 PM,1500 Block of 43RD AVE,San Francisco,94122,B08,23,7652,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7577643099664, -122.502585164302)",161003028-KM09 +153471846,E06,15133706,Medical Incident,12/13/2015,12/13/2015,12/13/2015 01:30:32 PM,12/13/2015 01:31:26 PM,12/13/2015 01:31:41 PM,12/13/2015 01:32:43 PM,12/13/2015 01:34:42 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Code 2 Transport,12/13/2015 02:12:19 PM,200 Block of DORLAND ST,San Francisco,94114,B02,6,5421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7620293658927, -122.429546492088)",153471846-E06 +142091641,KM09,14072445,Medical Incident,07/28/2014,07/28/2014,07/28/2014 01:27:09 PM,07/28/2014 01:27:27 PM,07/28/2014 01:28:32 PM,07/28/2014 01:29:09 PM,07/28/2014 01:33:38 PM,07/28/2014 01:47:08 PM,07/28/2014 01:51:23 PM,Code 3 Transport,07/28/2014 02:31:59 PM,900 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7897956957533, -122.41539714915)",142091641-KM09 +160992310,68,16039361,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:38:01 PM,04/08/2016 03:39:56 PM,04/08/2016 03:40:14 PM,04/08/2016 03:41:38 PM,04/08/2016 03:51:25 PM,04/08/2016 04:16:56 PM,04/08/2016 04:25:21 PM,Code 2 Transport,04/08/2016 05:13:15 PM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",160992310-68 +160983494,AM12,16039091,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:59:04 PM,04/07/2016 08:02:22 PM,04/07/2016 08:02:33 PM,04/07/2016 08:03:03 PM,04/07/2016 08:13:53 PM,04/07/2016 08:43:40 PM,04/07/2016 09:07:07 PM,Code 2 Transport,04/07/2016 09:37:23 PM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160983494-AM12 +152231190,67,15084941,Medical Incident,08/11/2015,08/11/2015,08/11/2015 10:16:34 AM,08/11/2015 10:16:46 AM,08/11/2015 10:18:21 AM,08/11/2015 10:18:48 AM,08/11/2015 10:44:51 AM,08/11/2015 10:44:52 AM,08/11/2015 10:53:18 AM,Code 2 Transport,08/11/2015 11:56:36 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",152231190-67 +153030211,E01,15116064,Medical Incident,10/30/2015,10/29/2015,10/30/2015 01:42:40 AM,10/30/2015 01:44:32 AM,10/30/2015 01:44:38 AM,10/30/2015 01:46:30 AM,10/30/2015 01:48:17 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Code 2 Transport,10/30/2015 01:54:12 AM,400 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7797818176702, -122.404993271058)",153030211-E01 +160964036,KM07,16038207,Industrial Accidents,04/05/2016,04/05/2016,04/05/2016 10:28:26 PM,04/05/2016 10:30:40 PM,04/05/2016 10:33:18 PM,04/05/2016 10:33:45 PM,04/05/2016 10:38:34 PM,04/05/2016 11:19:06 PM,04/05/2016 11:19:12 PM,Code 3 Transport,04/06/2016 12:32:43 AM,3RD ST/FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,false,Fire,1,PRIVATE,3,3,6,South of Market,"(37.7837849329145, -122.398930333419)",160964036-KM07 +150270817,T06,15010324,Alarms,01/27/2015,01/27/2015,01/27/2015 08:40:59 AM,01/27/2015 08:42:28 AM,01/27/2015 08:43:09 AM,01/27/2015 08:46:03 AM,01/27/2015 08:47:32 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Fire,01/27/2015 09:06:45 AM,700 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,3,3,3,false,Alarm,1,TRUCK,2,5,5,Haight Ashbury,"(37.7715296499469, -122.434542909739)",150270817-T06 +152083382,E03,15079396,Medical Incident,07/27/2015,07/27/2015,07/27/2015 07:56:51 PM,07/27/2015 07:57:55 PM,07/27/2015 07:58:09 PM,07/27/2015 07:59:43 PM,07/27/2015 08:00:34 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/27/2015 08:02:49 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",152083382-E03 +141700596,E32,14058599,Structure Fire,06/19/2014,06/18/2014,06/19/2014 07:38:40 AM,06/19/2014 07:38:40 AM,06/19/2014 07:38:45 AM,06/19/2014 07:40:28 AM,06/19/2014 07:44:06 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Fire,06/19/2014 07:52:10 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",141700596-E32 +142282048,84,14079251,Traffic Collision,08/16/2014,08/16/2014,08/16/2014 02:20:09 PM,08/16/2014 02:20:48 PM,08/16/2014 02:21:10 PM,08/16/2014 02:22:33 PM,08/16/2014 02:29:47 PM,08/16/2014 02:37:44 PM,08/16/2014 02:53:19 PM,Code 3 Transport,08/16/2014 04:03:42 PM,1100 Block of JOHN F KENNEDY DR,San Francisco,94122,B07,14,7211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7699644482679, -122.484935947228)",142282048-84 +160971926,AM02,16038414,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:41:56 PM,04/06/2016 12:42:19 PM,04/06/2016 12:44:10 PM,04/06/2016 12:45:59 PM,04/06/2016 12:52:33 PM,04/06/2016 01:20:26 PM,04/06/2016 01:41:57 PM,Code 2 Transport,04/06/2016 02:12:26 PM,3200 Block of CALIFORNIA ST,San Francisco,94118,B04,10,4421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7872098592651, -122.447641497264)",160971926-AM02 +151030295,AM20,15038811,Medical Incident,04/13/2015,04/12/2015,04/13/2015 03:14:23 AM,04/13/2015 03:16:46 AM,04/13/2015 03:17:22 AM,04/13/2015 03:18:25 AM,04/13/2015 03:24:25 AM,04/13/2015 03:35:24 AM,04/13/2015 03:40:55 AM,Code 2 Transport,04/13/2015 04:10:44 AM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",151030295-AM20 +153223718,T02,15124032,Alarms,11/18/2015,11/18/2015,11/18/2015 07:51:23 PM,11/18/2015 07:52:35 PM,11/18/2015 07:52:44 PM,11/18/2015 07:54:28 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Fire,11/18/2015 07:58:11 PM,900 Block of CHESTNUT ST,San Francisco,94109,B01,28,1613,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8030283886099, -122.419434720235)",153223718-T02 +142933493,75,14103519,Traffic Collision,10/20/2014,10/20/2014,10/20/2014 10:12:41 PM,10/20/2014 10:19:03 PM,10/20/2014 10:21:19 PM,10/20/2014 10:21:31 PM,10/20/2014 10:31:34 PM,10/20/2014 10:46:34 PM,10/20/2014 10:54:01 PM,Code 2 Transport,10/20/2014 11:09:44 PM,200 Block of 13TH ST,San Francisco,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",142933493-75 +151143567,E44,15043241,Vehicle Fire,04/24/2015,04/24/2015,04/24/2015 08:58:47 PM,04/24/2015 08:59:17 PM,04/24/2015 08:59:49 PM,04/24/2015 09:02:38 PM,04/24/2015 09:02:38 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Fire,04/24/2015 09:51:08 PM,SAN BRUNO AV/HARKNESS AV,San Francisco,94134,B10,44,6317,3,3,3,false,Fire,1,ENGINE,1,10,10,Visitacion Valley,"(37.7179063109096, -122.400131476961)",151143567-E44 +141521551,E36,14052222,Medical Incident,06/01/2014,06/01/2014,06/01/2014 01:33:49 PM,06/01/2014 01:33:49 PM,06/01/2014 01:34:47 PM,06/01/2014 01:35:56 PM,06/01/2014 01:38:55 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,No Merit,06/01/2014 01:39:51 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,A,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",141521551-E36 +153383405,E01,15130219,Medical Incident,12/04/2015,12/04/2015,12/04/2015 07:40:45 PM,12/04/2015 07:43:27 PM,12/04/2015 07:43:51 PM,12/04/2015 07:45:19 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Code 2 Transport,12/04/2015 07:49:52 PM,558-A NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.779308053036, -122.409163648556)",153383405-E01 +152750645,E31,15105214,Medical Incident,10/02/2015,10/01/2015,10/02/2015 07:04:26 AM,10/02/2015 07:04:26 AM,10/02/2015 07:04:44 AM,10/02/2015 07:06:14 AM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Against Medical Advice,10/02/2015 07:12:36 AM,17TH ST/CAROLINA ST,San Francisco,94107,B07,29,2425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,3,10,Potrero Hill,"(37.7648975086548, -122.400633321358)",152750645-E31 +151662404,RC1,15063543,Traffic Collision,06/15/2015,06/15/2015,06/15/2015 04:14:25 PM,06/15/2015 04:14:55 PM,06/15/2015 04:15:43 PM,06/15/2015 04:16:51 PM,06/15/2015 04:19:03 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/15/2015 04:24:22 PM,MARKET ST/NEW MONTGOMERY ST,San Francisco,94105,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",151662404-RC1 +151843705,AM20,15070389,Medical Incident,07/03/2015,07/03/2015,07/03/2015 09:44:22 PM,07/03/2015 09:47:50 PM,07/03/2015 09:48:44 PM,07/03/2015 09:49:56 PM,07/03/2015 09:56:09 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Unable to Locate,07/03/2015 09:56:39 PM,STEINER ST/FULTON ST,San Francisco,94117,B05,5,3626,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.777490365503, -122.433218739321)",151843705-AM20 +160933795,76,16037068,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:50:01 PM,04/02/2016 10:50:43 PM,04/02/2016 10:51:03 PM,04/02/2016 10:51:12 PM,04/02/2016 10:55:54 PM,04/02/2016 11:07:33 PM,04/02/2016 11:12:23 PM,Code 2 Transport,04/02/2016 11:44:32 PM,1900 Block of VAN NESS AVE,San Francisco,94109,B04,41,3153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7935141253124, -122.422789161737)",160933795-76 +142553409,77,14089188,Medical Incident,09/12/2014,09/12/2014,09/12/2014 08:54:36 PM,09/12/2014 08:55:14 PM,09/12/2014 08:55:34 PM,09/12/2014 08:55:42 PM,09/12/2014 09:07:26 PM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Patient Declined Transport,09/12/2014 09:10:05 PM,100 Block of NORIEGA ST,San Francisco,94122,B08,22,7336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7547848935573, -122.465129645607)",142553409-77 +160982866,65,16039029,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:06:15 PM,04/07/2016 05:06:35 PM,04/07/2016 05:06:59 PM,04/07/2016 05:07:09 PM,04/07/2016 05:15:34 PM,04/07/2016 05:26:12 PM,04/07/2016 05:53:58 PM,Code 2 Transport,04/07/2016 06:17:24 PM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",160982866-65 +141933302,84,14067107,Medical Incident,07/12/2014,07/12/2014,07/12/2014 10:19:51 PM,07/12/2014 10:21:37 PM,07/12/2014 10:22:50 PM,07/12/2014 10:22:57 PM,07/12/2014 10:30:32 PM,07/12/2014 10:45:22 PM,07/12/2014 11:03:00 PM,Code 2 Transport,07/12/2014 11:26:50 PM,5TH ST/MARKET ST,San Francisco,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",141933302-84 +141040135,RA48,14035047,Traffic Collision,04/14/2014,04/14/2014,04/14/2014 10:43:52 AM,04/14/2014 10:47:12 AM,04/14/2014 10:52:59 AM,04/14/2014 10:52:59 AM,04/14/2014 11:22:54 AM,04/25/2016 01:17:53 PM,04/25/2016 01:17:53 PM,Patient Declined Transport,04/14/2014 11:53:13 AM,0 Block of 5TH ST,SAN FRANCISCO,94103,B03,8,2243,2,2,2,false,Non Life-threatening,1,MEDIC,4,3,6,South of Market,"(37.7831860531538, -122.407149119811)",141040135-RA48 +143563725,E02,14127540,Medical Incident,12/22/2014,12/22/2014,12/22/2014 08:54:21 PM,12/22/2014 08:55:42 PM,12/22/2014 08:58:06 PM,12/22/2014 08:58:39 PM,12/22/2014 09:01:14 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Code 2 Transport,12/22/2014 09:13:14 PM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7976703321108, -122.406492704819)",143563725-E02 +160973049,87,16038536,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:42:55 PM,04/06/2016 04:42:55 PM,04/06/2016 04:43:10 PM,04/06/2016 04:43:23 PM,04/06/2016 05:18:17 PM,04/06/2016 05:34:21 PM,04/06/2016 05:56:41 PM,Code 2 Transport,04/06/2016 06:02:39 PM,2800 Block of CALIFORNIA ST,San Francisco,94115,B04,10,4233,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.78801561135, -122.441285735387)",160973049-87 +160933091,70,16037003,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:23:51 PM,04/02/2016 07:23:51 PM,04/02/2016 07:24:36 PM,04/02/2016 07:24:49 PM,04/02/2016 07:29:31 PM,04/02/2016 07:40:18 PM,04/02/2016 07:56:43 PM,Code 2 Transport,04/02/2016 08:12:28 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160933091-70 +142743018,E20,14096189,Medical Incident,10/01/2014,10/01/2014,10/01/2014 06:08:11 PM,10/01/2014 06:09:51 PM,10/01/2014 06:14:20 PM,10/01/2014 06:18:48 PM,10/01/2014 06:18:51 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Code 2 Transport,10/01/2014 06:38:21 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",142743018-E20 +142773025,72,14097498,Medical Incident,10/04/2014,10/04/2014,10/04/2014 05:46:02 PM,10/04/2014 05:46:02 PM,10/04/2014 05:46:14 PM,10/04/2014 05:46:29 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,No Merit,10/04/2014 05:50:46 PM,900 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7871735250079, -122.417641342653)",142773025-72 +142930215,73,14103199,Medical Incident,10/20/2014,10/19/2014,10/20/2014 02:17:48 AM,10/20/2014 02:18:17 AM,10/20/2014 02:18:33 AM,10/20/2014 02:18:58 AM,10/20/2014 02:25:36 AM,10/20/2014 02:42:01 AM,10/20/2014 02:50:45 AM,Code 2 Transport,10/20/2014 03:15:04 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",142930215-73 +150721090,88,15027445,Medical Incident,03/13/2015,03/13/2015,03/13/2015 09:33:41 AM,03/13/2015 09:35:26 AM,03/13/2015 09:36:51 AM,03/13/2015 09:37:00 AM,03/13/2015 09:40:54 AM,03/13/2015 10:05:47 AM,03/13/2015 10:21:50 AM,Code 2 Transport,03/13/2015 10:49:50 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",150721090-88 +150972296,E11,15036803,Medical Incident,04/07/2015,04/07/2015,04/07/2015 04:01:43 PM,04/07/2015 04:02:29 PM,04/07/2015 04:02:45 PM,04/07/2015 04:03:43 PM,04/07/2015 04:05:41 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/07/2015 04:10:37 PM,1300 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7515676527812, -122.41625553265)",150972296-E11 +142781253,T03,14097752,Medical Incident,10/05/2014,10/05/2014,10/05/2014 10:06:35 AM,10/05/2014 10:07:36 AM,10/05/2014 10:07:53 AM,10/05/2014 10:08:22 AM,10/05/2014 10:11:37 AM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Code 3 Transport,10/05/2014 10:16:39 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",142781253-T03 +153371385,62,15129614,Medical Incident,12/03/2015,12/03/2015,12/03/2015 10:42:16 AM,12/03/2015 10:46:51 AM,12/03/2015 10:50:53 AM,12/03/2015 10:50:53 AM,12/03/2015 11:00:16 AM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Unable to Locate,12/03/2015 11:01:50 AM,EDDY ST/LARKIN ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",153371385-62 +150313319,E07,15012123,Medical Incident,01/31/2015,01/31/2015,01/31/2015 08:24:22 PM,01/31/2015 08:24:22 PM,01/31/2015 08:25:14 PM,01/31/2015 08:26:08 PM,01/31/2015 08:30:07 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,No Merit,01/31/2015 08:31:20 PM,CHURCH ST/CUMBERLAND ST,San Francisco,94114,B06,11,5444,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7588904965959, -122.428126284271)",150313319-E07 +151931670,E07,15073629,Alarms,07/12/2015,07/12/2015,07/12/2015 01:00:45 PM,07/12/2015 01:01:57 PM,07/12/2015 01:02:06 PM,07/12/2015 01:03:11 PM,07/12/2015 01:05:31 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 01:26:32 PM,1500 Block of FOLSOM ST,San Francisco,94103,B02,36,5121,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7716700767604, -122.414328770789)",151931670-E07 +153242666,E36,15124754,Medical Incident,11/20/2015,11/20/2015,11/20/2015 04:08:37 PM,11/20/2015 04:08:49 PM,11/20/2015 04:09:43 PM,11/20/2015 04:11:03 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Unable to Locate,11/20/2015 04:17:43 PM,LEAVENWORTH ST/MCALLISTER ST,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",153242666-E36 +142232566,E41,14077477,Medical Incident,08/11/2014,08/11/2014,08/11/2014 06:01:08 PM,08/11/2014 06:03:51 PM,08/11/2014 06:05:11 PM,08/11/2014 06:07:19 PM,08/11/2014 06:11:03 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Unable to Locate,08/11/2014 06:12:11 PM,FRANKLIN ST/CLAY ST,San Francisco,94109,B04,38,3225,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7919653673686, -122.424340517867)",142232566-E41 +151143893,T18,15043270,Structure Fire,04/24/2015,04/24/2015,04/24/2015 10:33:46 PM,04/24/2015 10:33:52 PM,04/24/2015 10:34:09 PM,04/24/2015 10:35:58 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Fire,04/24/2015 10:37:25 PM,21ST AV/JUDAH ST,San Francisco,94122,B08,22,7426,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",151143893-T18 +152492331,EMS10,15095166,Medical Incident,09/06/2015,09/06/2015,09/06/2015 04:12:41 PM,09/06/2015 04:13:22 PM,09/06/2015 04:14:50 PM,09/06/2015 04:15:24 PM,09/06/2015 04:20:44 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,Code 2 Transport,09/06/2015 04:35:22 PM,300 Block of JEFFERSON ST,San Francisco,94133,B01,28,947,2,3,3,false,Potentially Life-Threatening,1,CHIEF,2,1,3,North Beach,"(37.8079624466014, -122.418277044979)",152492331-EMS10 +152920392,71,15112056,Medical Incident,10/19/2015,10/18/2015,10/19/2015 05:39:13 AM,10/19/2015 05:40:58 AM,10/19/2015 05:41:57 AM,10/19/2015 05:42:08 AM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Other,10/19/2015 05:44:02 AM,LA PLAYA/LINCOLN WY,San Francisco,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",152920392-71 +160951088,71,16037563,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:55:41 AM,04/04/2016 09:57:50 AM,04/04/2016 09:58:01 AM,04/04/2016 09:58:09 AM,04/04/2016 10:02:26 AM,04/04/2016 10:06:59 AM,04/04/2016 10:49:00 AM,Code 2 Transport,04/04/2016 11:28:17 AM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7649777859582, -122.466445638121)",160951088-71 +150313451,E07,15012136,Medical Incident,01/31/2015,01/31/2015,01/31/2015 09:05:44 PM,01/31/2015 09:08:08 PM,01/31/2015 09:08:42 PM,01/31/2015 09:10:21 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 2 Transport,01/31/2015 09:28:43 PM,600 Block of SHOTWELL ST,San Francisco,94110,B06,7,5447,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.758027155218, -122.415771731954)",150313451-E07 +152933768,HT48,15112744,Alarms,10/20/2015,10/20/2015,10/20/2015 09:12:35 PM,10/20/2015 09:13:48 PM,10/20/2015 09:17:59 PM,10/20/2015 09:17:59 PM,10/20/2015 09:19:30 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Fire,10/20/2015 09:21:58 PM,300 Block of AVENUE H,Treasure Isla,94130,B03,48,2931,3,3,3,false,Alarm,1,SUPPORT,2,None,6,Treasure Island,"(37.8222647104202, -122.368044134136)",152933768-HT48 +161001567,KM12,16039755,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:46:34 PM,04/09/2016 12:46:57 PM,04/09/2016 12:47:24 PM,04/09/2016 12:47:48 PM,04/09/2016 01:12:41 PM,04/09/2016 01:24:01 PM,04/09/2016 01:44:22 PM,Code 2 Transport,04/09/2016 02:11:58 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",161001567-KM12 +160942435,KM05,16037324,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:03:53 PM,04/03/2016 04:05:00 PM,04/03/2016 04:05:48 PM,04/03/2016 04:06:31 PM,04/03/2016 04:10:36 PM,04/03/2016 04:28:35 PM,04/03/2016 04:43:05 PM,Code 2 Transport,04/03/2016 05:12:03 PM,CHURCH ST/HILL ST,San Francisco,94114,B06,11,5467,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7556902206459, -122.427813059384)",160942435-KM05 +150201633,AM02,15007821,Medical Incident,01/20/2015,01/20/2015,01/20/2015 12:22:43 PM,01/20/2015 12:23:48 PM,01/20/2015 12:25:12 PM,01/20/2015 12:26:28 PM,01/20/2015 12:32:42 PM,01/20/2015 12:49:51 PM,01/20/2015 01:35:54 PM,Code 2 Transport,01/20/2015 01:36:05 PM,200 Block of PRINCETON ST,San Francisco,94134,B09,42,6147,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,9,Portola,"(37.7268798759627, -122.415393783299)",150201633-AM02 +150502594,E01,15019402,Medical Incident,02/19/2015,02/19/2015,02/19/2015 04:45:17 PM,02/19/2015 04:48:54 PM,02/19/2015 04:49:54 PM,02/19/2015 04:51:02 PM,02/19/2015 04:59:38 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Code 2 Transport,02/19/2015 05:16:53 PM,MISSION ST/7TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",150502594-E01 +150872788,83,15033303,Medical Incident,03/28/2015,03/28/2015,03/28/2015 05:21:11 PM,03/28/2015 05:22:30 PM,03/28/2015 05:24:10 PM,03/28/2015 05:24:20 PM,03/28/2015 05:25:57 PM,04/25/2016 01:11:28 PM,04/25/2016 01:11:28 PM,Patient Declined Transport,03/28/2015 06:07:35 PM,2600 Block of PINE ST,San Francisco,94115,B04,10,4156,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7871644491834, -122.439404798679)",150872788-83 +153350946,AM02,15128729,Medical Incident,12/01/2015,12/01/2015,12/01/2015 09:05:26 AM,12/01/2015 09:07:06 AM,12/01/2015 09:07:34 AM,12/01/2015 09:08:24 AM,12/01/2015 09:20:04 AM,12/01/2015 09:46:47 AM,12/01/2015 10:06:25 AM,Code 2 Transport,12/01/2015 10:48:12 AM,0 Block of RIZAL ST,San Francisco,94107,B03,8,2175,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.781822111031, -122.399291985556)",153350946-AM02 +160950574,64,16037529,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:21:39 AM,04/04/2016 07:24:51 AM,04/04/2016 07:25:17 AM,04/04/2016 07:25:46 AM,04/04/2016 07:29:16 AM,04/04/2016 07:48:03 AM,04/04/2016 08:07:43 AM,Code 2 Transport,04/04/2016 08:29:03 AM,0 Block of VIRGINIA AVE,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7429496460829, -122.420904705802)",160950574-64 +142611991,77,14091277,Medical Incident,09/18/2014,09/18/2014,09/18/2014 01:36:14 PM,09/18/2014 01:36:31 PM,09/18/2014 01:36:44 PM,09/18/2014 01:38:49 PM,09/18/2014 01:56:38 PM,09/18/2014 01:56:45 PM,09/18/2014 02:21:55 PM,Code 2 Transport,09/18/2014 02:52:13 PM,500 Block of AMAZON AVE,San Francisco,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7155859094303, -122.435741243059)",142611991-77 +141943389,T03,14067430,Structure Fire,07/13/2014,07/13/2014,07/13/2014 11:33:37 PM,07/13/2014 11:33:37 PM,07/13/2014 11:33:49 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Fire,07/13/2014 11:35:04 PM,LEAVENWORTH ST/UNITED NATIONS PZ,San Francisco,94102,B02,1,1551,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7799917401811, -122.413487401339)",141943389-T03 +142850333,E11,14100279,Medical Incident,10/12/2014,10/11/2014,10/12/2014 01:49:22 AM,10/12/2014 01:50:15 AM,10/12/2014 01:51:20 AM,10/12/2014 01:52:35 AM,10/12/2014 01:55:17 AM,04/25/2016 01:14:36 PM,04/25/2016 01:14:36 PM,Code 2 Transport,10/12/2014 02:07:01 AM,100 Block of APPLETON AVE,San Francisco,94110,B06,32,5646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",142850333-E11 +152290325,63,15087251,Medical Incident,08/17/2015,08/16/2015,08/17/2015 03:33:32 AM,08/17/2015 03:35:46 AM,08/17/2015 03:36:00 AM,08/17/2015 03:36:10 AM,08/17/2015 03:42:40 AM,04/25/2016 01:08:52 PM,04/25/2016 01:08:52 PM,Medical Examiner,08/17/2015 04:26:28 AM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,E,E,3,true,Non Life-threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7854941424186, -122.408270724034)",152290325-63 +160983276,66,16039072,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:53:04 PM,04/07/2016 06:55:13 PM,04/07/2016 06:55:42 PM,04/07/2016 06:57:10 PM,04/07/2016 07:04:06 PM,04/07/2016 07:36:36 PM,04/07/2016 08:11:10 PM,Code 2 Transport,04/07/2016 08:49:45 PM,400 Block of LINDEN ST,San Francisco,94102,B02,36,3314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7761535059822, -122.425377177116)",160983276-66 +141962800,E34,14067996,Alarms,07/15/2014,07/15/2014,07/15/2014 05:22:16 PM,07/15/2014 05:23:38 PM,07/15/2014 05:24:53 PM,07/15/2014 05:26:29 PM,07/15/2014 05:29:19 PM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Fire,07/15/2014 05:42:11 PM,800 Block of 28TH AVE,San Francisco,94121,B07,14,7223,3,3,3,false,Alarm,1,ENGINE,2,7,1,Outer Richmond,"(37.7733534217521, -122.487535190044)",141962800-E34 +152401441,T13,15091379,Structure Fire,08/28/2015,08/28/2015,08/28/2015 10:30:43 AM,08/28/2015 10:31:30 AM,08/28/2015 10:31:53 AM,08/28/2015 10:32:26 AM,08/28/2015 10:34:00 AM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/28/2015 10:52:52 AM,2ND ST/MISSION ST,San Francisco,94105,B03,1,2145,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.788007159489, -122.39979802517)",152401441-T13 +141822028,B01,14063017,Alarms,07/01/2014,07/01/2014,07/01/2014 02:49:21 PM,07/01/2014 02:50:27 PM,07/01/2014 02:51:16 PM,07/01/2014 02:53:03 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Fire,07/01/2014 02:54:30 PM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",141822028-B01 +152830480,E03,15108529,Medical Incident,10/10/2015,10/09/2015,10/10/2015 03:00:44 AM,10/10/2015 03:02:10 AM,10/10/2015 03:02:28 AM,10/10/2015 03:04:02 AM,10/10/2015 03:06:15 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Code 2 Transport,10/10/2015 03:09:10 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",152830480-E03 +153040747,E02,15116552,Medical Incident,10/31/2015,10/30/2015,10/31/2015 05:51:40 AM,10/31/2015 05:54:35 AM,10/31/2015 05:55:15 AM,10/31/2015 05:57:31 AM,10/31/2015 06:00:54 AM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Code 2 Transport,10/31/2015 06:18:49 AM,0 Block of SHEPHARD PL,San Francisco,94108,B01,2,1415,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.794144828254, -122.411035917169)",153040747-E02 +161000158,79,16039570,Traffic Collision,04/09/2016,04/08/2016,04/09/2016 12:58:14 AM,04/09/2016 01:02:20 AM,04/09/2016 01:03:13 AM,04/09/2016 01:03:37 AM,04/09/2016 01:10:36 AM,04/09/2016 01:59:33 AM,04/09/2016 02:23:45 AM,Code 2 Transport,04/09/2016 03:18:24 AM,3300 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7482858766932, -122.417044258324)",161000158-79 +160960109,AM24,16037853,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:59:42 AM,04/05/2016 01:01:21 AM,04/05/2016 01:01:49 AM,04/05/2016 01:02:24 AM,04/05/2016 01:06:38 AM,04/05/2016 01:14:31 AM,04/05/2016 01:20:00 AM,Code 2 Transport,04/05/2016 01:52:05 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160960109-AM24 +141220077,82,14041227,Medical Incident,05/02/2014,05/01/2014,05/02/2014 07:30:40 AM,05/02/2014 07:31:10 AM,05/02/2014 07:35:22 AM,05/02/2014 07:35:22 AM,05/02/2014 08:02:41 AM,05/02/2014 08:03:14 AM,05/02/2014 08:26:35 AM,Code 2 Transport,05/02/2014 08:55:48 AM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",141220077-82 +152381975,AM08,15090658,Traffic Collision,08/26/2015,08/26/2015,08/26/2015 01:59:46 PM,08/26/2015 02:03:14 PM,08/26/2015 02:33:42 PM,08/26/2015 02:35:06 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Other,08/26/2015 02:37:58 PM,HOLLOWAY AV/19TH AV,San Francisco,94132,B08,19,8751,2,2,2,false,Non Life-threatening,1,PRIVATE,5,9,7,Lakeshore,"(37.7210572969552, -122.475221950242)",152381975-AM08 +151332306,RS1,15050482,Medical Incident,05/13/2015,05/13/2015,05/13/2015 02:27:45 PM,05/13/2015 02:30:49 PM,05/13/2015 02:31:11 PM,05/13/2015 02:32:41 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Code 3 Transport,05/13/2015 02:35:41 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",151332306-RS1 +160933417,70,16037043,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:01:55 PM,04/02/2016 09:03:21 PM,04/02/2016 09:04:58 PM,04/02/2016 09:07:19 PM,04/02/2016 09:10:10 PM,04/02/2016 09:21:33 PM,04/02/2016 09:27:52 PM,Code 2 Transport,04/02/2016 09:55:53 PM,1200 Block of LAGUNA ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7822812615868, -122.427511862361)",160933417-70 +152090258,E19,15079473,Gas Leak (Natural and LP Gases),07/28/2015,07/27/2015,07/28/2015 02:37:06 AM,07/28/2015 02:38:04 AM,07/28/2015 02:38:19 AM,07/28/2015 02:40:45 AM,07/28/2015 02:46:46 AM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/28/2015 03:01:59 AM,300 Block of SHIELDS ST,San Francisco,94132,B09,33,8444,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7179700694997, -122.465789243584)",152090258-E19 +151400954,E10,15053088,Medical Incident,05/20/2015,05/20/2015,05/20/2015 09:19:06 AM,05/20/2015 09:20:45 AM,05/20/2015 09:20:55 AM,05/20/2015 09:21:55 AM,05/20/2015 09:23:51 AM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Code 2 Transport,05/20/2015 09:55:34 AM,0 Block of TAMALPAIS TER,San Francisco,94118,B05,21,4564,3,3,3,true,Non Life-threatening,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7779023473383, -122.44884956665)",151400954-E10 +141742694,E29,14060129,Medical Incident,06/23/2014,06/23/2014,06/23/2014 06:35:55 PM,06/23/2014 06:36:45 PM,06/23/2014 06:37:11 PM,06/23/2014 06:37:59 PM,06/23/2014 06:39:26 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,No Merit,06/23/2014 06:45:52 PM,SAN BRUNO AV/ALAMEDA ST,San Francisco,94103,B02,29,2352,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.7684733919631, -122.405827564891)",141742694-E29 +160932268,76,16036919,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:39:18 PM,04/02/2016 03:41:09 PM,04/02/2016 03:42:13 PM,04/02/2016 03:42:20 PM,04/02/2016 03:54:22 PM,04/02/2016 03:54:23 PM,04/02/2016 03:58:19 PM,Code 2 Transport,04/02/2016 04:31:25 PM,CALIFORNIA ST/HYDE ST,San Francisco,94109,B01,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160932268-76 +160931456,67,16036829,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:50:50 AM,04/02/2016 11:50:50 AM,04/02/2016 12:12:11 PM,04/02/2016 12:12:35 PM,04/02/2016 12:18:59 PM,04/02/2016 12:33:42 PM,04/02/2016 01:07:22 PM,Code 2 Transport,04/02/2016 01:11:46 PM,21ST ST/CAPP ST,San Francisco,94110,B06,7,5455,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7571009328923, -122.417811900579)",160931456-67 +150292562,60,15011258,Medical Incident,01/29/2015,01/29/2015,01/29/2015 05:10:44 PM,01/29/2015 05:13:12 PM,01/29/2015 05:13:27 PM,01/29/2015 05:13:41 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Code 3 Transport,01/29/2015 05:15:07 PM,1500 Block of 11TH AVE,San Francisco,94122,B08,22,7344,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7592873104181, -122.468056486172)",150292562-60 +151300709,B07,15049256,Alarms,05/10/2015,05/09/2015,05/10/2015 07:42:57 AM,05/10/2015 07:44:34 AM,05/10/2015 07:45:03 AM,05/10/2015 07:47:07 AM,05/10/2015 07:53:21 AM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Fire,05/10/2015 07:57:05 AM,200 Block of 29TH AVE,San Francisco,94121,B07,14,7227,3,3,3,false,Alarm,1,CHIEF,3,7,2,Seacliff,"(37.7843914755854, -122.489271547892)",151300709-B07 +150671678,KM01,15025617,Medical Incident,03/08/2015,03/08/2015,03/08/2015 01:48:46 PM,03/08/2015 01:49:15 PM,03/08/2015 01:56:32 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,Patient Declined Transport,03/08/2015 02:12:31 PM,COLE ST/CARL ST,San Francisco,94117,B05,12,5144,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,5,5,Haight Ashbury,"(37.7658000298196, -122.449958130403)",150671678-KM01 +143353338,E07,14118846,Medical Incident,12/01/2014,12/01/2014,12/01/2014 07:50:51 PM,12/01/2014 07:54:15 PM,12/01/2014 07:54:32 PM,12/01/2014 07:56:07 PM,12/01/2014 07:58:55 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,No Merit,12/01/2014 08:01:23 PM,22ND ST/CAPP ST,San Francisco,94110,B06,7,5472,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7555024984315, -122.417658993752)",143353338-E07 +153441193,E42,15132359,Medical Incident,12/10/2015,12/10/2015,12/10/2015 10:01:04 AM,12/10/2015 10:02:19 AM,12/10/2015 10:03:15 AM,12/10/2015 10:03:31 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/10/2015 10:04:06 AM,0 Block of TUCKER AV,San Francisco,94134,B09,44,6311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7154333562497, -122.404561161911)",153441193-E42 +143171629,88,14112266,Medical Incident,11/13/2014,11/13/2014,11/13/2014 12:22:21 PM,11/13/2014 12:23:45 PM,11/13/2014 12:23:59 PM,11/13/2014 12:24:34 PM,11/13/2014 12:25:39 PM,11/13/2014 12:46:19 PM,11/13/2014 01:01:28 PM,Code 2 Transport,11/13/2014 01:12:04 PM,300 Block of CORTLAND AVE,San Francisco,94110,B06,32,5652,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7392773970379, -122.418180028379)",143171629-88 +141291143,B07,14043846,Alarms,05/09/2014,05/09/2014,05/09/2014 10:10:22 AM,05/09/2014 10:11:30 AM,05/09/2014 10:13:46 AM,05/09/2014 10:16:05 AM,05/09/2014 10:27:21 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Fire,05/09/2014 10:27:38 AM,0 Block of ZOO RD,San Francisco,94132,B08,19,8716,3,3,3,false,Alarm,1,CHIEF,2,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",141291143-B07 +160921976,88,16036464,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:14:26 PM,04/01/2016 02:15:19 PM,04/01/2016 02:15:33 PM,04/01/2016 02:16:07 PM,04/01/2016 02:20:09 PM,04/01/2016 02:37:18 PM,04/01/2016 02:40:47 PM,Code 2 Transport,04/01/2016 03:25:27 PM,ALICE B TOKLAS PL/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7854330360145, -122.419638990474)",160921976-88 +150601144,76,15022870,Medical Incident,03/01/2015,03/01/2015,03/01/2015 09:44:27 AM,03/01/2015 09:45:50 AM,03/01/2015 09:46:56 AM,03/01/2015 09:47:05 AM,03/01/2015 10:00:28 AM,03/01/2015 10:11:11 AM,03/01/2015 10:42:33 AM,Code 2 Transport,03/01/2015 11:20:15 AM,700 Block of RHODE ISLAND ST,San Francisco,94107,B02,37,2455,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7603172235791, -122.402072482082)",150601144-76 +150012586,E11,15000405,Other,01/01/2015,01/01/2015,01/01/2015 04:36:30 PM,01/01/2015 04:36:30 PM,01/01/2015 04:43:16 PM,01/01/2015 04:44:11 PM,01/01/2015 04:48:11 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Fire,01/01/2015 05:12:04 PM,FOLSOM ST/RIPLEY ST,San Francisco,94110,B06,11,5663,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7441500449109, -122.413280063816)",150012586-E11 +161010453,AM20,16040051,Medical Incident,04/10/2016,04/09/2016,04/10/2016 02:48:46 AM,04/10/2016 02:50:13 AM,04/10/2016 02:50:48 AM,04/10/2016 02:51:36 AM,04/10/2016 03:02:27 AM,04/10/2016 03:23:59 AM,04/10/2016 03:50:00 AM,Code 2 Transport,04/10/2016 04:23:18 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.807027306345, -122.413812485246)",161010453-AM20 +142923365,67,14103154,Medical Incident,10/19/2014,10/19/2014,10/19/2014 09:20:42 PM,10/19/2014 09:21:44 PM,10/19/2014 09:21:57 PM,10/19/2014 09:22:51 PM,10/19/2014 09:26:17 PM,10/19/2014 09:45:22 PM,10/19/2014 10:13:20 PM,Code 2 Transport,10/19/2014 11:27:32 PM,1300 Block of 35TH AVE,San Francisco,94122,B08,23,7564,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7618785811402, -122.494136008724)",142923365-67 +153402110,E22,15130875,Medical Incident,12/06/2015,12/06/2015,12/06/2015 02:44:09 PM,12/06/2015 02:45:44 PM,12/06/2015 02:45:56 PM,12/06/2015 02:46:14 PM,12/06/2015 02:51:03 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,Code 2 Transport,12/06/2015 03:01:57 PM,1800 Block of 30TH AVE,San Francisco,94122,B08,18,7515,2,2,2,false,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7527846529683, -122.488272720267)",153402110-E22 +141373869,E13,14047116,Medical Incident,05/17/2014,05/17/2014,05/17/2014 11:57:36 PM,05/17/2014 11:58:09 PM,05/17/2014 11:59:28 PM,05/18/2014 12:01:07 AM,05/18/2014 12:05:42 AM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,Code 2 Transport,05/18/2014 12:17:13 AM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",141373869-E13 +150163495,T15,15006472,Medical Incident,01/16/2015,01/16/2015,01/16/2015 09:25:53 PM,01/16/2015 09:27:20 PM,01/16/2015 09:27:35 PM,01/16/2015 09:29:04 PM,01/16/2015 09:32:19 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Code 2 Transport,01/16/2015 09:40:01 PM,900 Block of EDINBURGH ST,San Francisco,94112,B09,43,6174,E,E,3,false,Potentially Life-Threatening,1,TRUCK,1,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",150163495-T15 +160940662,71,16037161,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:19:26 AM,04/03/2016 05:20:14 AM,04/03/2016 05:23:12 AM,04/03/2016 05:23:12 AM,04/03/2016 05:34:14 AM,04/03/2016 05:52:56 AM,04/03/2016 05:58:36 AM,Code 2 Transport,04/03/2016 06:31:35 AM,1800 Block of BROADWAY,San Francisco,94123,B04,38,3251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.795265168848, -122.427533073347)",160940662-71 +160931872,88,16036876,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:42:16 PM,04/02/2016 01:43:19 PM,04/02/2016 01:53:37 PM,04/02/2016 01:53:49 PM,04/02/2016 02:00:09 PM,04/02/2016 02:27:08 PM,04/02/2016 02:52:37 PM,Code 2 Transport,04/02/2016 03:06:18 PM,100 Block of ELMIRA ST,San Francisco,94124,B10,42,6364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735315131937, -122.403595624573)",160931872-88 +141803062,E05,14062385,Medical Incident,06/29/2014,06/29/2014,06/29/2014 07:28:51 PM,06/29/2014 07:29:25 PM,06/29/2014 07:54:41 PM,06/29/2014 07:55:32 PM,04/25/2016 01:16:29 PM,04/25/2016 01:16:29 PM,04/25/2016 01:16:29 PM,Code 2 Transport,06/29/2014 08:29:18 PM,2300 Block of PINE ST,San Francisco,94115,B04,38,3543,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7878999566909, -122.434481068996)",141803062-E05 +141772284,E21,14061149,Alarms,06/26/2014,06/26/2014,06/26/2014 04:18:37 PM,06/26/2014 04:19:53 PM,06/26/2014 04:20:04 PM,06/26/2014 04:21:05 PM,06/26/2014 04:23:22 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 04:30:35 PM,2800 Block of TURK BLVD,San Francisco,94118,B05,21,4565,3,3,3,false,Alarm,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7778289303266, -122.452897856893)",141772284-E21 +150692881,54,15026454,Medical Incident,03/10/2015,03/10/2015,03/10/2015 06:10:26 PM,03/10/2015 06:10:26 PM,03/10/2015 06:24:51 PM,03/10/2015 06:24:51 PM,03/10/2015 06:35:16 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Patient Declined Transport,03/10/2015 07:12:26 PM,4TH ST/MISSION ST,San Francisco,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",150692881-54 +151120492,E01,15042225,Medical Incident,04/22/2015,04/21/2015,04/22/2015 06:28:26 AM,04/22/2015 06:29:47 AM,04/22/2015 06:30:05 AM,04/22/2015 06:32:55 AM,04/22/2015 06:45:30 AM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,Code 2 Transport,04/22/2015 06:45:32 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",151120492-E01 +152152359,KM04,15081892,Medical Incident,08/03/2015,08/03/2015,08/03/2015 02:54:05 PM,08/03/2015 02:55:34 PM,08/03/2015 02:56:38 PM,08/03/2015 02:57:16 PM,08/03/2015 03:29:03 PM,08/03/2015 03:32:21 PM,08/03/2015 03:41:23 PM,Code 2 Transport,08/03/2015 04:23:49 PM,1500 Block of HYDE ST,San Francisco,94109,B01,41,1565,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.7950067697844, -122.418271236608)",152152359-KM04 +142852373,E01,14100491,Medical Incident,10/12/2014,10/12/2014,10/12/2014 03:54:54 PM,10/12/2014 03:57:47 PM,10/12/2014 03:58:31 PM,10/12/2014 03:59:09 PM,10/12/2014 03:59:11 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Gone on Arrival,10/12/2014 04:04:16 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",142852373-E01 +142771590,T13,14097356,Structure Fire,10/04/2014,10/04/2014,10/04/2014 11:19:33 AM,10/04/2014 11:19:33 AM,10/04/2014 11:20:27 AM,10/04/2014 11:21:24 AM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Fire,10/04/2014 11:23:11 AM,500 Block of MARKET ST,San Francisco,94105,B03,1,2144,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",142771590-T13 +143481047,E34,14124172,Alarms,12/14/2014,12/14/2014,12/14/2014 09:22:57 AM,12/14/2014 09:25:20 AM,12/14/2014 09:25:44 AM,12/14/2014 09:27:29 AM,12/14/2014 09:30:12 AM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,Fire,12/14/2014 09:36:54 AM,800 Block of 48TH AVE,San Francisco,94121,B07,34,7277,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7723803993002, -122.508821436971)",143481047-E34 +151372946,72,15052160,Medical Incident,05/17/2015,05/17/2015,05/17/2015 06:19:57 PM,05/17/2015 06:19:57 PM,05/17/2015 06:20:16 PM,05/17/2015 06:20:26 PM,05/17/2015 06:23:12 PM,05/17/2015 06:37:10 PM,05/17/2015 06:58:00 PM,Code 2 Transport,05/17/2015 07:18:49 PM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",151372946-72 +160943266,AM16,16037415,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:30:59 PM,04/03/2016 08:31:25 PM,04/03/2016 08:31:48 PM,04/03/2016 08:32:52 PM,04/03/2016 08:36:52 PM,04/03/2016 08:45:42 PM,04/03/2016 09:06:41 PM,Code 2 Transport,04/03/2016 09:23:56 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",160943266-AM16 +142262636,T16,14078579,Traffic Collision,08/14/2014,08/14/2014,08/14/2014 05:30:57 PM,08/14/2014 05:30:57 PM,08/14/2014 05:34:53 PM,08/14/2014 05:34:53 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Patient Declined Transport,08/14/2014 05:35:56 PM,1100 Block of MASON ST,San Francisco,94108,B01,2,1415,2,2,2,false,Non Life-threatening,1,TRUCK,3,1,3,Nob Hill,"(37.7942845562863, -122.411386186498)",142262636-T16 +160931079,56,16036782,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:51:18 AM,04/02/2016 09:51:50 AM,04/02/2016 09:52:06 AM,04/02/2016 09:52:43 AM,04/02/2016 10:02:25 AM,04/02/2016 10:15:45 AM,04/02/2016 10:46:31 AM,Code 2 Transport,04/02/2016 11:45:48 AM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",160931079-56 +141493167,E08,14051313,Medical Incident,05/29/2014,05/29/2014,05/29/2014 07:47:19 PM,05/29/2014 07:50:27 PM,05/29/2014 07:51:49 PM,05/29/2014 07:53:37 PM,05/29/2014 07:57:30 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Code 2 Transport,05/29/2014 08:02:40 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",141493167-E08 +160971603,89,16038385,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:31:56 AM,04/06/2016 11:32:45 AM,04/06/2016 11:33:06 AM,04/06/2016 11:33:27 AM,04/06/2016 11:41:29 AM,04/06/2016 11:54:04 AM,04/06/2016 12:13:05 PM,Code 2 Transport,04/06/2016 12:43:12 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160971603-89 +160932763,AM16,16036972,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:46:26 PM,04/02/2016 05:47:45 PM,04/02/2016 06:09:30 PM,04/02/2016 06:09:30 PM,04/02/2016 06:17:23 PM,04/02/2016 06:37:49 PM,04/02/2016 06:54:48 PM,Code 2 Transport,04/02/2016 07:33:30 PM,15TH ST/CAPP ST,San Francisco,94103,B02,7,5225,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7667394820803, -122.418734448927)",160932763-AM16 +141771580,E07,14061094,Medical Incident,06/26/2014,06/26/2014,06/26/2014 12:53:47 PM,06/26/2014 12:54:11 PM,06/26/2014 12:54:37 PM,06/26/2014 12:55:31 PM,06/26/2014 12:57:15 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Code 3 Transport,06/26/2014 01:02:51 PM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",141771580-E07 +142611938,RS1,14091274,Structure Fire,09/18/2014,09/18/2014,09/18/2014 01:19:06 PM,09/18/2014 01:19:38 PM,09/18/2014 01:19:46 PM,09/18/2014 01:20:48 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,Fire,09/18/2014 01:24:55 PM,2100 Block of FILLMORE ST,San Francisco,94115,B04,38,3544,3,3,3,false,Alarm,1,RESCUE SQUAD,8,4,2,Pacific Heights,"(37.7893629585146, -122.434001717064)",142611938-RS1 +160943683,71,16037456,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:04:05 PM,04/03/2016 11:04:22 PM,04/03/2016 11:04:44 PM,04/03/2016 11:04:50 PM,04/03/2016 11:11:12 PM,04/03/2016 11:49:43 PM,04/04/2016 12:21:11 AM,Code 2 Transport,04/04/2016 12:33:07 AM,600 Block of CLARENDON AVE,San Francisco,94131,B08,20,5367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7519950375446, -122.458952047787)",160943683-71 +160922227,AM02,16036493,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:27:08 PM,04/01/2016 03:27:08 PM,04/01/2016 03:28:45 PM,04/01/2016 03:29:26 PM,04/01/2016 03:37:50 PM,04/01/2016 03:45:29 PM,04/01/2016 04:09:33 PM,Code 2 Transport,04/01/2016 04:25:56 PM,500 Block of VALENCIA ST,San Francisco,94103,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",160922227-AM02 +160940513,79,16037144,Medical Incident,04/03/2016,04/02/2016,04/03/2016 03:24:14 AM,04/03/2016 03:24:14 AM,04/03/2016 03:25:20 AM,04/03/2016 03:25:20 AM,04/03/2016 03:31:00 AM,04/03/2016 03:48:07 AM,04/03/2016 04:04:12 AM,Code 2 Transport,04/03/2016 04:23:01 AM,300 Block of 3RD ST,San Francisco,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7834301703176, -122.398387591798)",160940513-79 +161002645,75,16039878,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:28:23 PM,04/09/2016 06:28:23 PM,04/09/2016 06:28:47 PM,04/09/2016 06:29:14 PM,04/09/2016 06:35:06 PM,04/09/2016 06:45:29 PM,04/09/2016 07:22:44 PM,Code 2 Transport,04/09/2016 07:58:05 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.769082767924, -122.413353472663)",161002645-75 +160922458,KM12,16036514,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:22:37 PM,04/01/2016 04:24:25 PM,04/01/2016 04:24:50 PM,04/01/2016 04:25:40 PM,04/01/2016 04:36:20 PM,04/01/2016 04:54:02 PM,04/01/2016 05:11:14 PM,Code 2 Transport,04/01/2016 05:41:48 PM,ULLOA ST/FOREST SIDE AV,San Francisco,94127,B08,39,8614,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7415033476138, -122.468561096869)",160922458-KM12 +143012599,E03,14106336,Medical Incident,10/28/2014,10/28/2014,10/28/2014 05:35:43 PM,10/28/2014 05:36:02 PM,10/28/2014 05:36:31 PM,10/28/2014 05:37:34 PM,10/28/2014 05:38:51 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Code 2 Transport,10/28/2014 05:44:17 PM,CEDAR ST/LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7865659835783, -122.418178854944)",143012599-E03 +161001500,76,16039745,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:18:40 PM,04/09/2016 12:20:39 PM,04/09/2016 12:20:54 PM,04/09/2016 12:21:01 PM,04/09/2016 12:37:16 PM,04/09/2016 12:43:13 PM,04/09/2016 12:56:32 PM,Code 2 Transport,04/09/2016 01:05:01 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.773955543025, -122.420958448413)",161001500-76 +152301118,E34,15087707,Structure Fire,08/18/2015,08/18/2015,08/18/2015 10:15:13 AM,08/18/2015 10:15:58 AM,08/18/2015 10:30:20 AM,08/18/2015 10:30:20 AM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Fire,08/18/2015 11:35:59 AM,3600 Block of TARAVAL ST,San Francisco,94116,B08,18,7665,3,3,3,false,Fire,2,ENGINE,24,8,4,Sunset/Parkside,"(37.7416856071451, -122.505151778205)",152301118-E34 +150982518,E28,15037152,Medical Incident,04/08/2015,04/08/2015,04/08/2015 04:24:11 PM,04/08/2015 04:24:26 PM,04/08/2015 04:24:50 PM,04/08/2015 04:26:39 PM,04/08/2015 04:28:06 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Code 2 Transport,04/08/2015 04:34:43 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",150982518-E28 +142891000,88,14101789,Medical Incident,10/16/2014,10/16/2014,10/16/2014 09:03:15 AM,10/16/2014 09:03:15 AM,10/16/2014 09:04:11 AM,10/16/2014 09:05:36 AM,10/16/2014 09:11:13 AM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Cancelled,10/16/2014 09:12:25 AM,16TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7651831353816, -122.417486597301)",142891000-88 +142391200,E08,14083074,Medical Incident,08/27/2014,08/27/2014,08/27/2014 10:38:22 AM,08/27/2014 10:39:52 AM,08/27/2014 10:40:45 AM,08/27/2014 10:41:00 AM,08/27/2014 10:44:11 AM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,No Merit,08/27/2014 10:53:10 AM,500 Block of BRANNAN ST,San Francisco,94107,B03,8,2241,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7774865325812, -122.397691886789)",142391200-E08 +150522558,E36,15020090,Structure Fire,02/21/2015,02/21/2015,02/21/2015 04:11:43 PM,02/21/2015 04:12:55 PM,02/21/2015 04:13:21 PM,02/21/2015 04:14:20 PM,02/21/2015 04:21:19 PM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Fire,02/21/2015 08:29:45 PM,1900 Block of 15TH ST,San Francisco,94114,B02,6,5227,3,3,3,true,Fire,3,ENGINE,8,2,8,Castro/Upper Market,"(37.7661073531609, -122.428282992711)",150522558-E36 +142761792,T06,14096901,Medical Incident,10/03/2014,10/03/2014,10/03/2014 12:38:16 PM,10/03/2014 12:38:42 PM,10/03/2014 12:39:09 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Code 2 Transport,10/03/2014 12:40:58 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",142761792-T06 +150603821,E03,15023098,Medical Incident,03/01/2015,03/01/2015,03/01/2015 10:57:38 PM,03/01/2015 10:57:38 PM,03/01/2015 10:58:22 PM,03/01/2015 11:00:11 PM,03/01/2015 11:01:25 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Code 2 Transport,03/01/2015 11:05:02 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",150603821-E03 +142940705,E06,14103599,Alarms,10/21/2014,10/20/2014,10/21/2014 07:51:27 AM,10/21/2014 07:52:59 AM,10/21/2014 07:53:55 AM,10/21/2014 07:56:04 AM,10/21/2014 07:57:36 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/21/2014 08:06:41 AM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,false,Alarm,1,ENGINE,1,2,8,Mission,"(37.7662536102334, -122.425864046062)",142940705-E06 +150593763,E03,15022734,Medical Incident,02/28/2015,02/28/2015,02/28/2015 11:02:18 PM,02/28/2015 11:05:17 PM,02/28/2015 11:09:23 PM,02/28/2015 11:10:13 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Code 2 Transport,02/28/2015 11:11:20 PM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,E,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",150593763-E03 +160974705,60,16038726,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:54:31 PM,04/06/2016 11:55:35 PM,04/06/2016 11:55:42 PM,04/06/2016 11:56:26 PM,04/07/2016 12:01:25 AM,04/07/2016 12:03:58 AM,04/07/2016 12:34:06 AM,Code 2 Transport,04/07/2016 01:18:36 AM,MCKINNON AV/3RD ST,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7363901964496, -122.390145053188)",160974705-60 +150013166,E07,15000485,Medical Incident,01/01/2015,01/01/2015,01/01/2015 07:42:39 PM,01/01/2015 07:43:59 PM,01/01/2015 07:44:34 PM,01/01/2015 07:45:24 PM,01/01/2015 07:47:13 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Code 2 Transport,01/01/2015 08:02:48 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",150013166-E07 +141470061,84,14050304,Medical Incident,05/27/2014,05/26/2014,05/27/2014 12:28:22 AM,05/27/2014 12:28:57 AM,05/27/2014 12:29:32 AM,05/27/2014 12:29:56 AM,05/27/2014 12:33:55 AM,05/27/2014 12:52:45 AM,05/27/2014 01:15:01 AM,Code 2 Transport,05/27/2014 01:53:26 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141470061-84 +142292297,54,14079629,Medical Incident,08/17/2014,08/17/2014,08/17/2014 03:39:20 PM,08/17/2014 03:41:28 PM,08/17/2014 03:41:51 PM,08/17/2014 03:42:13 PM,08/17/2014 03:49:14 PM,08/17/2014 04:09:53 PM,08/17/2014 04:36:13 PM,Code 2 Transport,08/17/2014 05:07:18 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",142292297-54 +160941673,64,16037254,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:18:23 PM,04/03/2016 12:18:44 PM,04/03/2016 12:19:20 PM,04/03/2016 12:22:32 PM,04/03/2016 12:28:43 PM,04/03/2016 12:42:47 PM,04/03/2016 01:08:59 PM,Code 2 Transport,04/03/2016 02:02:27 PM,CESAR CHAVEZ ST/SOUTH VAN NESS AV,San Francisco,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7482121503815, -122.41586279408)",160941673-64 +160953950,65,16037814,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:21:32 PM,04/04/2016 10:21:32 PM,04/04/2016 10:23:33 PM,04/04/2016 10:23:33 PM,04/04/2016 10:33:45 PM,04/04/2016 10:49:20 PM,04/04/2016 11:05:53 PM,Other,04/04/2016 11:56:24 PM,INDUSTRIAL ST/BARNEVELD AV,San Francisco,94124,B10,42,6381,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7387125856838, -122.404257984683)",160953950-65 +151283570,63,15048737,Medical Incident,05/08/2015,05/08/2015,05/08/2015 09:24:15 PM,05/08/2015 09:26:39 PM,05/08/2015 09:26:59 PM,05/08/2015 09:27:14 PM,05/08/2015 09:34:23 PM,05/08/2015 09:51:55 PM,05/08/2015 10:15:56 PM,Code 2 Transport,05/08/2015 10:46:47 PM,100 Block of LOUISBURG ST,San Francisco,94112,B09,15,8315,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7210924859099, -122.449637733495)",151283570-63 +151532499,AM10,15058362,Medical Incident,06/02/2015,06/02/2015,06/02/2015 04:26:54 PM,06/02/2015 04:28:47 PM,06/02/2015 04:33:20 PM,06/02/2015 04:34:39 PM,06/02/2015 04:41:31 PM,06/02/2015 04:56:37 PM,06/02/2015 05:26:38 PM,Code 2 Transport,06/02/2015 05:53:13 PM,0 Block of DOLORES ST,San Francisco,94103,B02,6,5127,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7684229704131, -122.426590385503)",151532499-AM10 +153000464,AM24,15115024,Medical Incident,10/27/2015,10/26/2015,10/27/2015 05:45:32 AM,10/27/2015 05:47:11 AM,10/27/2015 05:47:31 AM,10/27/2015 05:48:10 AM,10/27/2015 05:51:36 AM,10/27/2015 06:14:30 AM,10/27/2015 06:33:41 AM,Code 2 Transport,10/27/2015 07:08:40 AM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",153000464-AM24 +160961789,61,16038013,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:54:32 PM,04/05/2016 12:54:57 PM,04/05/2016 12:56:01 PM,04/05/2016 12:56:08 PM,04/05/2016 01:05:56 PM,04/05/2016 01:45:11 PM,04/05/2016 02:09:16 PM,Code 2 Transport,04/05/2016 02:57:54 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160961789-61 +160963439,AM16,16038150,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:13:26 PM,04/05/2016 07:13:26 PM,04/05/2016 07:14:29 PM,04/05/2016 07:15:07 PM,04/05/2016 08:01:10 PM,04/05/2016 08:01:12 PM,04/05/2016 08:20:28 PM,Code 2 Transport,04/05/2016 08:56:58 PM,400 Block of 43RD AVE,San Francisco,94121,B07,34,7265,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7804126251317, -122.504177712633)",160963439-AM16 +160960278,79,16037867,Medical Incident,04/05/2016,04/04/2016,04/05/2016 03:33:46 AM,04/05/2016 03:33:46 AM,04/05/2016 03:33:55 AM,04/05/2016 03:34:07 AM,04/05/2016 03:40:47 AM,04/05/2016 03:56:48 AM,04/05/2016 04:13:31 AM,Code 2 Transport,04/05/2016 04:34:46 AM,WEST PORTAL AV/ULLOA ST,San Francisco,94127,B08,39,8611,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7408919760876, -122.465829021907)",160960278-79 +160930688,71,16036739,Medical Incident,04/02/2016,04/01/2016,04/02/2016 07:16:00 AM,04/02/2016 07:16:54 AM,04/02/2016 07:17:15 AM,04/02/2016 07:17:20 AM,04/02/2016 07:36:33 AM,04/02/2016 07:36:36 AM,04/02/2016 08:07:40 AM,Code 2 Transport,04/02/2016 08:09:30 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",160930688-71 +141220293,E36,14041402,Structure Fire,05/02/2014,05/02/2014,05/02/2014 05:07:11 PM,05/02/2014 05:07:11 PM,05/02/2014 05:07:18 PM,05/02/2014 05:08:13 PM,05/02/2014 05:11:31 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 05:12:06 PM,10TH ST/MISSION ST,SAN FRANCISCO,94103,B02,36,2341,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7752720593077, -122.415908181241)",141220293-E36 +141980700,T09,14068466,Structure Fire,07/17/2014,07/16/2014,07/17/2014 07:35:15 AM,07/17/2014 07:35:15 AM,07/17/2014 07:35:27 AM,07/17/2014 07:37:53 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/17/2014 07:39:37 AM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,3,3,3,false,Alarm,1,TRUCK,2,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",141980700-T09 +150842386,70,15032106,Medical Incident,03/25/2015,03/25/2015,03/25/2015 03:04:17 PM,03/25/2015 03:06:19 PM,03/25/2015 03:06:51 PM,03/25/2015 03:08:24 PM,03/25/2015 03:15:36 PM,03/25/2015 03:26:57 PM,03/25/2015 03:34:15 PM,Code 2 Transport,03/25/2015 04:25:00 PM,200 Block of STANYAN ST,San Francisco,94118,B07,21,4557,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7766831964988, -122.454982834151)",150842386-70 +160931769,KM12,16036858,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:15:03 PM,04/02/2016 01:16:01 PM,04/02/2016 01:16:52 PM,04/02/2016 01:18:30 PM,04/02/2016 01:26:48 PM,04/02/2016 01:47:14 PM,04/02/2016 02:05:06 PM,Code 3 Transport,04/02/2016 02:39:05 PM,300 Block of SAWYER ST,San Francisco,94134,B09,44,6263,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,10,Visitacion Valley,"(37.7137624845835, -122.414066093052)",160931769-KM12 +150270128,T05,15010254,Alarms,01/27/2015,01/26/2015,01/27/2015 01:11:47 AM,01/27/2015 01:13:01 AM,01/27/2015 01:13:12 AM,01/27/2015 01:15:02 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Fire,01/27/2015 01:18:08 AM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,3,3,3,true,Alarm,1,TRUCK,3,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",150270128-T05 +143241828,61,14114734,Medical Incident,11/20/2014,11/20/2014,11/20/2014 01:59:26 PM,11/20/2014 02:01:10 PM,11/20/2014 02:02:56 PM,11/20/2014 02:03:33 PM,11/20/2014 02:12:22 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Patient Declined Transport,11/20/2014 02:47:57 PM,MISSION ST/11TH ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",143241828-61 +142892610,E32,14101935,Outside Fire,10/16/2014,10/16/2014,10/16/2014 04:28:23 PM,10/16/2014 04:30:06 PM,10/16/2014 04:30:27 PM,10/16/2014 04:30:42 PM,10/16/2014 04:34:03 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Fire,10/16/2014 04:35:25 PM,MISSION ST/SILVER AV,San Francisco,94112,B09,32,6113,3,3,3,false,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",142892610-E32 +160952647,KM11,16037693,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:15:14 PM,04/04/2016 04:16:10 PM,04/04/2016 04:16:35 PM,04/04/2016 04:17:39 PM,04/04/2016 04:20:07 PM,04/04/2016 04:53:30 PM,04/04/2016 04:53:36 PM,Code 2 Transport,04/04/2016 05:27:59 PM,500 Block of KEARNY ST,San Francisco,94104,B01,13,1244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7931109185713, -122.404447655569)",160952647-KM11 +150642726,E01,15024539,Medical Incident,03/05/2015,03/05/2015,03/05/2015 04:45:59 PM,03/05/2015 04:47:55 PM,03/05/2015 04:48:04 PM,03/05/2015 04:50:56 PM,03/05/2015 04:58:43 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Fire,03/05/2015 05:04:48 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",150642726-E01 +151901401,E01,15072510,Medical Incident,07/09/2015,07/09/2015,07/09/2015 11:01:58 AM,07/09/2015 11:02:42 AM,07/09/2015 11:02:57 AM,07/09/2015 11:03:51 AM,07/09/2015 11:06:48 AM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Patient Declined Transport,07/09/2015 11:08:23 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",151901401-E01 +152021148,86,15076927,Medical Incident,07/21/2015,07/21/2015,07/21/2015 09:59:48 AM,07/21/2015 10:00:22 AM,07/21/2015 10:01:26 AM,07/21/2015 10:01:34 AM,07/21/2015 10:13:48 AM,07/21/2015 10:45:50 AM,07/21/2015 11:06:04 AM,Code 2 Transport,07/21/2015 11:54:00 AM,SAN BRUNO AV/ALAMEDA ST,San Francisco,94103,B02,29,2352,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7684733919631, -122.405827564891)",152021148-86 +141040064,68,14034996,Medical Incident,04/14/2014,04/14/2014,04/14/2014 08:09:49 AM,04/14/2014 08:09:52 AM,04/14/2014 08:11:26 AM,04/14/2014 08:11:34 AM,04/14/2014 08:25:30 AM,04/14/2014 08:45:24 AM,04/14/2014 09:06:44 AM,Code 2 Transport,04/14/2014 09:44:01 AM,200 Block of CUMBERLAND ST,SAN FRANCISCO,94114,B06,11,5444,,2,2,true,Non Life-threatening,1,MEDIC,3,6,8,Castro/Upper Market,"(37.7588840549508, -122.429141172461)",141040064-68 +160954014,62,16037820,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:40:16 PM,04/04/2016 10:40:16 PM,04/04/2016 10:40:53 PM,04/04/2016 10:41:01 PM,04/04/2016 10:58:27 PM,04/04/2016 11:14:36 PM,04/04/2016 11:34:29 PM,Code 2 Transport,04/05/2016 12:01:38 AM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160954014-62 +142883351,55,14101640,Medical Incident,10/15/2014,10/15/2014,10/15/2014 07:52:34 PM,10/15/2014 07:55:18 PM,10/15/2014 07:58:38 PM,10/15/2014 07:58:50 PM,10/15/2014 08:11:22 PM,10/15/2014 08:33:18 PM,10/15/2014 08:40:06 PM,Code 2 Transport,10/15/2014 09:12:02 PM,MISSION ST/SILVER AV,San Francisco,94112,B09,32,6113,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",142883351-55 +151991298,B09,15075800,Other,07/18/2015,07/18/2015,07/18/2015 10:34:40 AM,07/18/2015 10:34:40 AM,07/18/2015 10:35:43 AM,07/18/2015 10:35:51 AM,07/18/2015 10:44:22 AM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Fire,07/18/2015 12:17:04 PM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,false,Alarm,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",151991298-B09 +150753706,RC2,15028962,Medical Incident,03/16/2015,03/16/2015,03/16/2015 09:49:27 PM,03/16/2015 09:50:27 PM,03/16/2015 09:51:07 PM,03/16/2015 09:52:39 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Code 2 Transport,03/16/2015 09:53:38 PM,700 Block of 27TH AVE,San Francisco,94121,B07,14,7223,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.775274399629, -122.486466775057)",150753706-RC2 +152930391,KM07,15112456,Medical Incident,10/20/2015,10/19/2015,10/20/2015 04:39:30 AM,10/20/2015 04:40:12 AM,10/20/2015 04:40:27 AM,10/20/2015 04:40:52 AM,10/20/2015 04:46:54 AM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Patient Declined Transport,10/20/2015 04:49:55 AM,DIVISADERO ST/HAYES ST,San Francisco,94117,B05,21,4145,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7749919470007, -122.437798745964)",152930391-KM07 +142470961,E09,14085970,Medical Incident,09/04/2014,09/04/2014,09/04/2014 08:58:38 AM,09/04/2014 09:01:05 AM,09/04/2014 09:01:25 AM,09/04/2014 09:02:59 AM,09/04/2014 09:07:02 AM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Code 2 Transport,09/04/2014 09:13:44 AM,24TH ST/YORK ST,San Francisco,94110,B06,9,5531,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7528524062967, -122.408188967839)",142470961-E09 +153412141,RC1,15131245,Medical Incident,12/07/2015,12/07/2015,12/07/2015 02:19:25 PM,12/07/2015 02:20:06 PM,12/07/2015 02:20:59 PM,12/07/2015 02:21:49 PM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,No Merit,12/07/2015 02:25:37 PM,AUSTIN ST/VAN NESS AV,San Francisco,94109,B04,3,3122,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,2,Western Addition,"(37.7889426233667, -122.42214537963)",153412141-RC1 +151730258,KM06,15065906,Medical Incident,06/22/2015,06/21/2015,06/22/2015 03:04:17 AM,06/22/2015 03:04:51 AM,06/22/2015 03:05:20 AM,06/22/2015 03:05:56 AM,06/22/2015 03:10:01 AM,06/22/2015 03:18:50 AM,06/22/2015 03:25:35 AM,Code 2 Transport,06/22/2015 03:55:33 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",151730258-KM06 +151130246,E14,15042556,Medical Incident,04/23/2015,04/22/2015,04/23/2015 02:15:46 AM,04/23/2015 02:19:49 AM,04/23/2015 02:20:31 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,No Merit,04/23/2015 02:23:12 AM,500 Block of 47TH AVE,San Francisco,94121,B07,34,7276,3,3,3,true,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7780500044705, -122.508299698216)",151130246-E14 +152490558,63,15094988,Medical Incident,09/06/2015,09/05/2015,09/06/2015 03:57:29 AM,09/06/2015 03:57:29 AM,09/06/2015 03:58:47 AM,09/06/2015 03:58:57 AM,09/06/2015 04:05:19 AM,09/06/2015 04:16:39 AM,09/06/2015 04:21:47 AM,Code 2 Transport,09/06/2015 04:43:39 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7774997276449, -122.410999268699)",152490558-63 +152570528,T03,15098150,Alarms,09/14/2015,09/13/2015,09/14/2015 06:32:49 AM,09/14/2015 06:34:13 AM,09/14/2015 06:34:20 AM,09/14/2015 06:35:39 AM,09/14/2015 06:37:50 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,No Merit,09/14/2015 06:47:44 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,false,Alarm,1,TRUCK,3,4,5,Japantown,"(37.7860447238816, -122.426514096484)",152570528-T03 +153421314,65,15131546,Medical Incident,12/08/2015,12/08/2015,12/08/2015 10:33:11 AM,12/08/2015 10:33:43 AM,12/08/2015 10:34:01 AM,12/08/2015 10:35:21 AM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Gone on Arrival,12/08/2015 10:38:40 AM,600 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1244,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.792508340252, -122.405025778458)",153421314-65 +160923276,61,16036585,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:50:15 PM,04/01/2016 07:51:29 PM,04/01/2016 07:51:45 PM,04/01/2016 07:53:57 PM,04/01/2016 08:01:04 PM,04/01/2016 08:18:59 PM,04/01/2016 08:25:48 PM,Code 3 Transport,04/01/2016 09:06:38 PM,100 Block of GLADSTONE DR,San Francisco,94134,B09,32,5684,3,3,3,true,Non Life-threatening,1,MEDIC,3,9,11,Excelsior,"(37.7292316529265, -122.42196809859)",160923276-61 +141020181,54,14034435,Medical Incident,04/12/2014,04/12/2014,04/12/2014 12:31:47 PM,04/12/2014 12:33:36 PM,04/12/2014 12:35:45 PM,04/12/2014 12:35:59 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Other,04/25/2016 01:17:55 PM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141020181-54 +151040504,E36,15039232,Medical Incident,04/14/2015,04/13/2015,04/14/2015 06:50:01 AM,04/14/2015 06:50:17 AM,04/14/2015 06:50:26 AM,04/14/2015 06:52:20 AM,04/14/2015 06:55:14 AM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Code 3 Transport,04/14/2015 07:13:03 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",151040504-E36 +150051431,63,15001818,Medical Incident,01/05/2015,01/05/2015,01/05/2015 11:37:54 AM,01/05/2015 11:39:43 AM,01/05/2015 11:41:22 AM,01/05/2015 11:41:22 AM,01/05/2015 11:44:31 AM,01/05/2015 11:58:30 AM,01/05/2015 12:19:23 PM,Code 3 Transport,01/05/2015 12:28:00 PM,FILBERT ST/GRANT AV,San Francisco,94133,B01,28,1265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8015708251232, -122.407769591357)",150051431-63 +152061687,AM08,15078486,Medical Incident,07/25/2015,07/25/2015,07/25/2015 12:32:20 PM,07/25/2015 12:34:00 PM,07/25/2015 12:34:49 PM,07/25/2015 12:35:51 PM,07/25/2015 01:07:26 PM,07/25/2015 01:07:55 PM,04/25/2016 01:09:16 PM,Code 2 Transport,07/25/2015 01:29:04 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",152061687-AM08 +150071099,E13,15002614,Medical Incident,01/07/2015,01/07/2015,01/07/2015 09:56:07 AM,01/07/2015 09:58:04 AM,01/07/2015 09:58:47 AM,01/07/2015 09:59:31 AM,01/07/2015 10:03:49 AM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Code 2 Transport,01/07/2015 10:06:00 AM,100 Block of FREMONT ST,San Francisco,94105,B03,35,2126,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7894863287687, -122.395368983007)",150071099-E13 +160974368,57,16038688,Structure Fire,04/06/2016,04/06/2016,04/06/2016 10:05:47 PM,04/06/2016 10:05:47 PM,04/06/2016 10:11:48 PM,04/06/2016 10:12:06 PM,04/06/2016 10:17:15 PM,04/06/2016 10:33:09 PM,04/06/2016 10:52:08 PM,Code 2 Transport,04/06/2016 11:19:03 PM,24TH ST/ALABAMA ST,San Francisco,94110,B06,7,5527,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7526848900219, -122.410962662832)",160974368-57 +141050026,T14,14035290,Citizen Assist / Service Call,04/15/2014,04/14/2014,04/15/2014 02:56:11 AM,04/15/2014 02:57:40 AM,04/15/2014 02:58:17 AM,04/15/2014 03:01:25 AM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Fire,04/15/2014 03:04:16 AM,200 Block of 21ST AVE,SAN FRANCISCO,94121,B07,14,7173,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.7831476181283, -122.480588567897)",141050026-T14 +150011223,E32,15000242,Medical Incident,01/01/2015,12/31/2014,01/01/2015 07:05:14 AM,01/01/2015 07:06:59 AM,01/01/2015 07:07:41 AM,01/01/2015 07:09:44 AM,01/01/2015 07:12:04 AM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Code 2 Transport,01/01/2015 07:17:35 AM,100 Block of RICHLAND AVE,San Francisco,94110,B06,32,5632,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.736063156695, -122.423797717702)",150011223-E32 +150402316,E29,15015653,Medical Incident,02/09/2015,02/09/2015,02/09/2015 03:24:13 PM,02/09/2015 03:26:21 PM,02/09/2015 03:26:39 PM,02/09/2015 03:26:54 PM,02/09/2015 03:30:21 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/09/2015 03:43:49 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",150402316-E29 +150402039,T08,15015627,Structure Fire,02/09/2015,02/09/2015,02/09/2015 02:13:35 PM,02/09/2015 02:14:13 PM,02/09/2015 02:14:52 PM,02/09/2015 02:15:25 PM,02/09/2015 02:23:09 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Fire,02/09/2015 02:48:06 PM,300 Block of 20TH ST,San Francisco,94107,B10,25,970,3,3,3,false,Alarm,1,TRUCK,9,3,10,Potrero Hill,"(37.7606927106062, -122.386101233024)",150402039-T08 +160951198,61,16037571,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:23:53 AM,04/04/2016 10:25:44 AM,04/04/2016 10:26:29 AM,04/04/2016 10:26:38 AM,04/04/2016 10:38:39 AM,04/04/2016 10:48:54 AM,04/04/2016 11:02:02 AM,Code 2 Transport,04/04/2016 11:44:36 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160951198-61 +160972745,77,16038499,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:37:41 PM,04/06/2016 03:39:00 PM,04/06/2016 03:39:15 PM,04/06/2016 03:39:23 PM,04/06/2016 03:46:58 PM,04/06/2016 03:59:07 PM,04/06/2016 04:32:00 PM,Code 2 Transport,04/06/2016 05:15:00 PM,700 Block of 35TH AVE,San Francisco,94121,B07,34,7252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7748832270511, -122.495037870754)",160972745-77 +141070291,E38,14036192,Alarms,04/17/2014,04/17/2014,04/17/2014 05:46:20 PM,04/17/2014 05:47:34 PM,04/17/2014 05:48:05 PM,04/17/2014 05:49:17 PM,04/17/2014 05:51:02 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Fire,04/17/2014 06:07:42 PM,1600 Block of SUTTER ST,SAN FRANCISCO,94109,B04,38,3324,3,3,3,false,Alarm,1,ENGINE,2,4,5,Japantown,"(37.78676442656, -122.427490271072)",141070291-E38 +141850585,E29,14063929,Medical Incident,07/04/2014,07/03/2014,07/04/2014 07:10:02 AM,07/04/2014 07:11:29 AM,07/04/2014 07:32:17 AM,07/04/2014 07:33:21 AM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Patient Declined Transport,07/04/2014 07:35:12 AM,2200 Block of MARIPOSA ST,San Francisco,94110,B02,29,2422,2,2,2,false,Non Life-threatening,1,ENGINE,3,2,10,Potrero Hill,"(37.7633330615748, -122.405941784687)",141850585-E29 +142322903,T15,14080695,Structure Fire,08/20/2014,08/20/2014,08/20/2014 05:48:23 PM,08/20/2014 05:50:54 PM,08/20/2014 05:51:09 PM,08/20/2014 05:52:51 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Fire,08/20/2014 05:57:13 PM,100 Block of SICKLES AVE,San Francisco,94112,B09,33,6213,3,3,3,false,Alarm,1,TRUCK,7,9,11,Outer Mission,"(37.7093841611046, -122.453617461387)",142322903-T15 +142971353,E36,14104733,Medical Incident,10/24/2014,10/24/2014,10/24/2014 11:08:19 AM,10/24/2014 11:09:05 AM,10/24/2014 11:09:37 AM,10/24/2014 11:10:07 AM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Code 2 Transport,10/24/2014 11:23:28 AM,300 Block of OCTAVIA ST,San Francisco,94102,B02,36,3314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7755247155908, -122.424508536202)",142971353-E36 +161002772,72,16039893,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:07:10 PM,04/09/2016 07:09:10 PM,04/09/2016 07:09:21 PM,04/09/2016 07:11:05 PM,04/09/2016 07:21:31 PM,04/09/2016 07:34:52 PM,04/09/2016 07:47:49 PM,Code 2 Transport,04/09/2016 08:15:32 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,2,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",161002772-72 +160992158,88,16039344,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:02:40 PM,04/08/2016 03:03:59 PM,04/08/2016 03:05:49 PM,04/08/2016 03:05:49 PM,04/08/2016 03:12:37 PM,04/08/2016 03:18:51 PM,04/08/2016 03:49:54 PM,Code 2 Transport,04/08/2016 04:49:12 PM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",160992158-88 +141971126,83,14068172,Medical Incident,07/16/2014,07/16/2014,07/16/2014 09:40:39 AM,07/16/2014 09:41:05 AM,07/16/2014 09:41:36 AM,07/16/2014 09:42:11 AM,07/16/2014 09:59:39 AM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Medical Examiner,07/16/2014 10:17:26 AM,0 Block of CLIPPER COVE WAY,Yerba Buena,94130,B03,48,2931,3,3,3,true,Non Life-threatening,1,MEDIC,4,None,6,Treasure Island,"(37.8163207162813, -122.370727071585)",141971126-83 +151950488,66,15074298,Structure Fire,07/14/2015,07/13/2015,07/14/2015 06:41:05 AM,07/14/2015 06:42:30 AM,07/14/2015 06:42:52 AM,07/14/2015 06:44:14 AM,07/14/2015 06:51:50 AM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,Fire,07/14/2015 06:52:48 AM,NEWMAN ST/BENNINGTON ST,San Francisco,94110,B06,32,5742,3,3,3,true,Alarm,1,MEDIC,8,6,9,Bernal Heights,"(37.7378049507258, -122.417990072972)",151950488-66 +151603732,EMS10,15061310,Medical Incident,06/09/2015,06/09/2015,06/09/2015 09:34:15 PM,06/09/2015 09:34:59 PM,06/09/2015 09:39:33 PM,06/09/2015 09:39:33 PM,06/09/2015 09:40:56 PM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Code 2 Transport,06/09/2015 10:02:07 PM,18TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5424,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,6,9,Mission,"(37.7619675295768, -122.417178937573)",151603732-EMS10 +141453497,77,14049973,Medical Incident,05/25/2014,05/25/2014,05/25/2014 11:02:53 PM,05/25/2014 11:04:20 PM,05/25/2014 11:06:15 PM,05/25/2014 11:06:52 PM,05/25/2014 11:11:00 PM,05/25/2014 11:35:59 PM,05/25/2014 11:52:56 PM,Code 2 Transport,05/26/2014 12:25:15 AM,1300 Block of JONES ST,San Francisco,94108,B01,41,1466,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7936750957454, -122.41449049505)",141453497-77 +152133735,E41,15081306,Medical Incident,08/01/2015,08/01/2015,08/01/2015 10:47:10 PM,08/01/2015 10:47:27 PM,08/01/2015 10:48:16 PM,08/01/2015 10:50:10 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Code 2 Transport,08/01/2015 10:51:02 PM,LEAVENWORTH ST/BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",152133735-E41 +161003287,76,16039954,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:53:37 PM,04/09/2016 09:53:37 PM,04/09/2016 09:54:07 PM,04/09/2016 09:54:16 PM,04/09/2016 10:02:41 PM,04/09/2016 10:23:02 PM,04/09/2016 10:31:44 PM,Code 2 Transport,04/09/2016 11:05:12 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",161003287-76 +142420165,E36,14084088,Medical Incident,08/30/2014,08/29/2014,08/30/2014 12:52:59 AM,08/30/2014 12:56:02 AM,08/30/2014 12:56:14 AM,08/30/2014 12:57:48 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Other,08/30/2014 01:00:32 AM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,E,E,3,true,Potentially Life-Threatening,1,ENGINE,5,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",142420165-E36 +142300688,T13,14079823,Medical Incident,08/18/2014,08/17/2014,08/18/2014 07:50:19 AM,08/18/2014 07:51:18 AM,08/18/2014 07:53:08 AM,08/18/2014 07:55:21 AM,08/18/2014 07:58:14 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Code 2 Transport,08/18/2014 08:11:10 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",142300688-T13 +142922395,E07,14103077,Outside Fire,10/19/2014,10/19/2014,10/19/2014 04:15:14 PM,10/19/2014 04:15:14 PM,10/19/2014 04:15:25 PM,10/19/2014 04:15:33 PM,10/19/2014 04:16:37 PM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,Fire,10/19/2014 04:18:16 PM,16TH ST/DOLORES ST,San Francisco,94103,B06,6,5235,3,3,3,true,Fire,1,ENGINE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",142922395-E07 +152592471,58,15099067,Medical Incident,09/16/2015,09/16/2015,09/16/2015 04:02:11 PM,09/16/2015 04:04:05 PM,09/16/2015 04:05:48 PM,09/16/2015 04:06:04 PM,09/16/2015 04:23:32 PM,09/16/2015 04:32:12 PM,09/16/2015 04:35:28 PM,Code 2 Transport,09/16/2015 05:02:26 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",152592471-58 +142323770,88,14080754,Medical Incident,08/20/2014,08/20/2014,08/20/2014 09:52:54 PM,08/20/2014 09:56:44 PM,08/20/2014 09:57:44 PM,08/20/2014 09:59:46 PM,08/20/2014 10:03:08 PM,08/20/2014 10:13:43 PM,08/20/2014 10:22:26 PM,Code 2 Transport,08/20/2014 10:48:24 PM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",142323770-88 +142133132,E19,14073981,Medical Incident,08/01/2014,08/01/2014,08/01/2014 08:21:08 PM,08/01/2014 08:22:45 PM,08/01/2014 08:23:02 PM,08/01/2014 08:23:51 PM,08/01/2014 08:31:23 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Fire,08/01/2014 08:38:01 PM,1500 Block of SLOAT BLVD,San Francisco,94132,B08,19,7552,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",142133132-E19 +142423709,54,14084445,Medical Incident,08/30/2014,08/30/2014,08/30/2014 10:49:37 PM,08/30/2014 10:52:03 PM,08/30/2014 10:53:41 PM,08/30/2014 10:55:55 PM,08/30/2014 11:04:54 PM,08/30/2014 11:23:22 PM,08/30/2014 11:43:15 PM,Code 3 Transport,08/31/2014 12:27:36 AM,3700 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8375,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7116460094192, -122.465708079897)",142423709-54 +142961445,77,14104360,Medical Incident,10/23/2014,10/23/2014,10/23/2014 11:31:31 AM,10/23/2014 11:33:36 AM,10/23/2014 11:33:57 AM,10/23/2014 11:34:04 AM,10/23/2014 11:39:06 AM,10/23/2014 12:06:57 PM,10/23/2014 12:40:50 PM,Code 2 Transport,10/23/2014 01:22:15 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",142961445-77 +143452486,E18,14122950,Electrical Hazard,12/11/2014,12/11/2014,12/11/2014 03:32:33 PM,12/11/2014 03:34:14 PM,12/11/2014 03:34:25 PM,12/11/2014 03:35:40 PM,12/11/2014 03:38:15 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Fire,12/11/2014 03:43:53 PM,26TH AV/QUINTARA ST,San Francisco,94116,B08,18,7472,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7483145142052, -122.48358179)",143452486-E18 +151922383,58,15073351,Medical Incident,07/11/2015,07/11/2015,07/11/2015 03:57:28 PM,07/11/2015 03:58:21 PM,07/11/2015 03:59:38 PM,07/11/2015 03:59:45 PM,07/11/2015 04:02:44 PM,07/11/2015 04:13:35 PM,07/11/2015 04:27:27 PM,Code 2 Transport,07/11/2015 04:55:31 PM,LARKIN ST/EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",151922383-58 +142380646,77,14082702,Medical Incident,08/26/2014,08/25/2014,08/26/2014 07:33:50 AM,08/26/2014 07:35:32 AM,08/26/2014 08:30:12 AM,08/26/2014 08:30:23 AM,08/26/2014 08:49:41 AM,08/26/2014 08:53:29 AM,08/26/2014 09:25:46 AM,Code 2 Transport,08/26/2014 09:59:05 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",142380646-77 +153002769,E18,15115200,Medical Incident,10/27/2015,10/27/2015,10/27/2015 05:09:59 PM,10/27/2015 05:14:29 PM,10/27/2015 05:15:07 PM,10/27/2015 05:16:27 PM,10/27/2015 05:21:42 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Code 2 Transport,10/27/2015 05:40:01 PM,2700 Block of 35TH AVE,San Francisco,94116,B08,18,7553,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7360599451453, -122.492331865053)",153002769-E18 +160970232,60,16038262,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:29:24 AM,04/06/2016 02:30:36 AM,04/06/2016 02:30:58 AM,04/06/2016 02:31:16 AM,04/06/2016 02:53:50 AM,04/06/2016 02:53:55 AM,04/06/2016 02:56:01 AM,Against Medical Advice,04/06/2016 03:31:46 AM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",160970232-60 +142241781,52,14077739,Medical Incident,08/12/2014,08/12/2014,08/12/2014 01:37:19 PM,08/12/2014 01:40:52 PM,08/12/2014 01:41:31 PM,08/12/2014 01:41:42 PM,08/12/2014 02:08:26 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,No Merit,08/12/2014 02:15:40 PM,700 Block of GREAT HWY,San Francisco,94121,B07,34,7316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7740125883152, -122.511077438213)",142241781-52 +151361181,RS1,15051627,Water Rescue,05/16/2015,05/16/2015,05/16/2015 10:08:02 AM,05/16/2015 10:08:50 AM,05/16/2015 10:11:02 AM,05/16/2015 10:11:13 AM,05/16/2015 10:11:38 AM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Code 3 Transport,05/16/2015 10:22:51 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Fire,1,RESCUE SQUAD,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",151361181-RS1 +160973620,77,16038614,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:39:50 PM,04/06/2016 06:40:22 PM,04/06/2016 06:49:10 PM,04/06/2016 06:49:29 PM,04/06/2016 06:51:09 PM,04/06/2016 06:57:39 PM,04/06/2016 07:15:26 PM,Code 2 Transport,04/06/2016 07:28:32 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",160973620-77 +141422777,E09,14048784,Medical Incident,05/22/2014,05/22/2014,05/22/2014 05:57:21 PM,05/22/2014 05:57:21 PM,05/22/2014 05:58:59 PM,05/22/2014 06:00:06 PM,05/22/2014 06:02:29 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,Other,05/22/2014 06:39:48 PM,23RD ST/SAN BRUNO AV,San Francisco,94110,B10,37,2554,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Mission,"(37.7543957935287, -122.404484367196)",141422777-E09 +150393236,E08,15015334,Medical Incident,02/08/2015,02/08/2015,02/08/2015 08:10:12 PM,02/08/2015 08:10:20 PM,02/08/2015 08:11:37 PM,02/08/2015 08:11:37 PM,02/08/2015 08:12:38 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Code 2 Transport,02/08/2015 08:22:14 PM,5TH ST/BRANNAN ST,San Francisco,94107,B03,8,2241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7765683820103, -122.398755450545)",150393236-E08 +160950607,61,16037533,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:39:42 AM,04/04/2016 07:39:42 AM,04/04/2016 07:40:00 AM,04/04/2016 07:40:09 AM,04/04/2016 07:43:32 AM,04/04/2016 08:38:17 AM,04/04/2016 08:31:52 AM,Code 2 Transport,04/04/2016 08:57:46 AM,16TH ST/GUERRERO ST,San Francisco,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",160950607-61 +150140418,B02,15005428,Alarms,01/14/2015,01/13/2015,01/14/2015 05:29:00 AM,01/14/2015 05:30:17 AM,01/14/2015 05:31:59 AM,01/14/2015 05:33:55 AM,01/14/2015 05:36:38 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Fire,01/14/2015 05:46:36 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7764944808779, -122.411359138357)",150140418-B02 +150370226,RC3,15014085,Medical Incident,02/06/2015,02/05/2015,02/06/2015 01:41:57 AM,02/06/2015 01:43:28 AM,02/06/2015 01:43:40 AM,02/06/2015 01:45:43 AM,02/06/2015 01:49:55 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Code 2 Transport,02/06/2015 01:50:12 AM,400 Block of EXCELSIOR AVE,San Francisco,94112,B09,43,6133,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7245813287149, -122.430017030485)",150370226-RC3 +152862563,71,15109925,Medical Incident,10/13/2015,10/13/2015,10/13/2015 03:17:17 PM,10/13/2015 03:17:17 PM,10/13/2015 03:18:34 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,Code 2 Transport,10/13/2015 03:18:43 PM,3RD ST/STEVENSON ST,San Francisco,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,3,6,Financial District/South Beach,"(37.7870244175155, -122.403028194221)",152862563-71 +160963478,75,16038154,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:24:17 PM,04/05/2016 07:25:04 PM,04/05/2016 07:26:55 PM,04/05/2016 07:27:00 PM,04/05/2016 07:31:49 PM,04/05/2016 08:00:31 PM,04/05/2016 08:26:16 PM,Code 2 Transport,04/05/2016 08:53:30 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160963478-75 +142463546,B09,14085841,Alarms,09/03/2014,09/03/2014,09/03/2014 08:23:34 PM,09/03/2014 08:25:14 PM,09/03/2014 08:25:33 PM,09/03/2014 08:26:28 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Fire,09/03/2014 08:45:58 PM,1800 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,false,Alarm,1,CHIEF,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",142463546-B09 +150170921,E20,15006625,Citizen Assist / Service Call,01/17/2015,01/17/2015,01/17/2015 08:10:24 AM,01/17/2015 08:12:29 AM,01/17/2015 08:12:53 AM,01/17/2015 08:15:06 AM,01/17/2015 08:17:08 AM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Fire,01/17/2015 08:19:48 AM,200 Block of MARVIEW WAY,San Francisco,94114,B05,20,5264,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7564882720613, -122.449685843694)",150170921-E20 +142683179,E01,14094065,Medical Incident,09/25/2014,09/25/2014,09/25/2014 07:51:13 PM,09/25/2014 07:51:13 PM,09/25/2014 07:51:24 PM,09/25/2014 07:52:32 PM,09/25/2014 07:54:26 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Code 2 Transport,09/25/2014 07:59:13 PM,MARKET ST/6TH ST,San Francisco,94102,B02,1,1454,A,E,3,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",142683179-E01 +150911490,63,15034576,Medical Incident,04/01/2015,04/01/2015,04/01/2015 11:49:39 AM,04/01/2015 11:51:25 AM,04/01/2015 11:52:10 AM,04/01/2015 11:53:31 AM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Code 2 Transport,04/01/2015 11:55:09 AM,2500 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6337,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7294190904862, -122.404411917151)",150911490-63 +143520636,68,14125672,Medical Incident,12/18/2014,12/17/2014,12/18/2014 07:39:21 AM,12/18/2014 07:41:56 AM,12/18/2014 07:51:20 AM,12/18/2014 07:51:20 AM,12/18/2014 07:55:43 AM,12/18/2014 08:30:45 AM,12/18/2014 08:39:50 AM,Code 2 Transport,12/18/2014 09:18:23 AM,0 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5135,3,3,3,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7705968083436, -122.439656029792)",143520636-68 +150082627,KM07,15003227,Medical Incident,01/08/2015,01/08/2015,01/08/2015 04:42:01 PM,01/08/2015 04:43:22 PM,01/08/2015 04:43:59 PM,01/08/2015 04:44:29 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 3 Transport,01/08/2015 04:48:12 PM,1700 Block of 18TH AVE,San Francisco,94122,B08,40,7422,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,8,7,Inner Sunset,"(37.755224049837, -122.475402242227)",150082627-KM07 +150021187,E34,15000689,Electrical Hazard,01/02/2015,01/02/2015,01/02/2015 11:39:22 AM,01/02/2015 11:39:22 AM,01/02/2015 11:39:22 AM,01/02/2015 11:39:22 AM,01/02/2015 11:39:22 AM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Fire,01/02/2015 11:58:53 AM,800 Block of 46TH AVE,San Francisco,94121,B07,34,7277,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7724779182768, -122.506684203589)",150021187-E34 +160943800,62,16037468,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:48:29 PM,04/03/2016 11:49:55 PM,04/03/2016 11:50:18 PM,04/03/2016 11:50:23 PM,04/03/2016 11:55:19 PM,04/04/2016 12:11:03 AM,04/04/2016 12:18:29 AM,Code 2 Transport,04/04/2016 01:00:20 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160943800-62 +151884064,E12,15071986,Medical Incident,07/07/2015,07/07/2015,07/07/2015 09:45:46 PM,07/07/2015 09:46:47 PM,07/07/2015 09:47:43 PM,07/07/2015 09:49:05 PM,07/07/2015 09:53:02 PM,04/25/2016 01:09:35 PM,04/25/2016 01:09:35 PM,Code 2 Transport,07/07/2015 10:03:14 PM,2700 Block of MCALLISTER ST,San Francisco,94118,B07,21,4556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Lone Mountain/USF,"(37.7753072503421, -122.45744329965)",151884064-E12 +161000670,62,16039643,Traffic Collision,04/09/2016,04/08/2016,04/09/2016 06:57:22 AM,04/09/2016 06:59:21 AM,04/09/2016 07:01:55 AM,04/09/2016 07:02:29 AM,04/09/2016 07:12:27 AM,04/09/2016 07:27:22 AM,04/09/2016 07:35:21 AM,Code 2 Transport,04/09/2016 08:06:01 AM,200 Block of AVENUE C,San Francisco,94130,B09,32,5681,2,2,2,true,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8192257500347, -122.370976475899)",161000670-62 +143142566,77,14111319,Medical Incident,11/10/2014,11/10/2014,11/10/2014 05:24:36 PM,11/10/2014 05:27:14 PM,11/10/2014 05:34:21 PM,11/10/2014 05:34:55 PM,11/10/2014 05:41:07 PM,11/10/2014 06:00:03 PM,11/10/2014 06:40:46 PM,Code 2 Transport,11/10/2014 07:04:52 PM,400 Block of MANSELL ST,San Francisco,94134,B10,44,626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7204133129314, -122.406069423364)",143142566-77 +151393198,78,15052919,Medical Incident,05/19/2015,05/19/2015,05/19/2015 07:38:43 PM,05/19/2015 07:40:28 PM,05/19/2015 07:41:00 PM,05/19/2015 07:41:31 PM,05/19/2015 07:47:26 PM,05/19/2015 07:56:51 PM,05/19/2015 08:00:52 PM,Code 3 Transport,05/19/2015 08:46:45 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",151393198-78 +143310911,AM02,14117323,Medical Incident,11/27/2014,11/27/2014,11/27/2014 09:56:25 AM,11/27/2014 09:57:35 AM,11/27/2014 09:59:17 AM,11/27/2014 10:00:06 AM,11/27/2014 10:05:02 AM,11/27/2014 10:23:02 AM,11/27/2014 10:39:40 AM,Code 2 Transport,11/27/2014 11:01:43 AM,300 Block of CHURCH ST,San Francisco,94114,B02,6,5234,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7653229426081, -122.428673143078)",143310911-AM02 +142343266,RC2,14081456,Medical Incident,08/22/2014,08/22/2014,08/22/2014 07:56:41 PM,08/22/2014 07:58:52 PM,08/22/2014 09:36:33 PM,08/22/2014 09:36:33 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Code 2 Transport,08/22/2014 09:37:50 PM,300 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7907285143037, -122.403840372288)",142343266-RC2 +160921588,KM02,16036431,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:30:55 PM,04/01/2016 12:34:14 PM,04/01/2016 12:35:34 PM,04/01/2016 12:36:01 PM,04/01/2016 12:43:30 PM,04/01/2016 01:10:44 PM,04/01/2016 01:32:03 PM,Code 2 Transport,04/01/2016 02:27:16 PM,100 Block of WESTGATE DR,San Francisco,94127,B09,15,8533,2,3,3,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7292259668238, -122.4650272665)",160921588-KM02 +143633617,65,14130018,Medical Incident,12/29/2014,12/29/2014,12/29/2014 11:16:45 PM,12/29/2014 11:20:16 PM,12/29/2014 11:20:42 PM,12/29/2014 11:20:54 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,No Merit,12/29/2014 11:30:40 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",143633617-65 +160970356,78,16038274,Medical Incident,04/06/2016,04/05/2016,04/06/2016 04:15:04 AM,04/06/2016 04:15:04 AM,04/06/2016 04:16:26 AM,04/06/2016 04:16:42 AM,04/06/2016 04:24:38 AM,04/06/2016 04:31:59 AM,04/06/2016 05:23:42 AM,Code 2 Transport,04/06/2016 05:50:38 AM,0 Block of LANDERS ST,San Francisco,94114,B02,6,5227,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.766987109811, -122.427857167521)",160970356-78 +150490017,E03,15018806,Administrative,02/18/2015,02/17/2015,02/18/2015 12:07:51 AM,02/18/2015 12:07:56 AM,02/18/2015 12:08:11 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/18/2015 12:08:35 AM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",150490017-E03 +150310242,T17,15011821,Structure Fire,01/31/2015,01/30/2015,01/31/2015 01:37:20 AM,01/31/2015 01:38:49 AM,01/31/2015 01:39:13 AM,01/31/2015 01:40:19 AM,01/31/2015 01:46:12 AM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Fire,01/31/2015 01:53:47 AM,200 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,false,Alarm,1,TRUCK,6,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",150310242-T17 +150253109,E06,15009784,Alarms,01/25/2015,01/25/2015,01/25/2015 08:10:15 PM,01/25/2015 08:12:16 PM,01/25/2015 08:12:29 PM,01/25/2015 08:13:35 PM,01/25/2015 08:15:16 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,Fire,01/25/2015 08:30:54 PM,3700 Block of 17TH ST,San Francisco,94114,B05,6,5252,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7627665130308, -122.429612363376)",150253109-E06 +160972205,52,16038445,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:46:50 PM,04/06/2016 01:46:50 PM,04/06/2016 01:47:12 PM,04/06/2016 01:47:21 PM,04/06/2016 01:51:36 PM,04/06/2016 02:04:04 PM,04/06/2016 02:30:06 PM,Code 2 Transport,04/06/2016 02:57:50 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160972205-52 +151470600,B09,15055835,Structure Fire,05/27/2015,05/26/2015,05/27/2015 07:22:28 AM,05/27/2015 07:22:28 AM,05/27/2015 07:22:33 AM,05/27/2015 07:23:26 AM,05/27/2015 07:28:43 AM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Fire,05/27/2015 07:34:32 AM,800 Block of PRAGUE ST,San Francisco,94112,B09,43,622,3,3,3,false,Alarm,1,CHIEF,2,9,11,Excelsior,"(37.7104309664976, -122.434220514636)",151470600-B09 +151981798,E21,15075452,Medical Incident,07/17/2015,07/17/2015,07/17/2015 01:06:41 PM,07/17/2015 01:06:48 PM,07/17/2015 01:08:29 PM,07/17/2015 01:09:49 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,Cancelled,07/17/2015 01:10:01 PM,500 Block of DIVISADERO ST,San Francisco,94117,B05,21,4145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7745125726593, -122.437820869473)",151981798-E21 +141981453,E17,14068535,Medical Incident,07/17/2014,07/17/2014,07/17/2014 11:58:38 AM,07/17/2014 11:59:15 AM,07/17/2014 11:59:51 AM,07/17/2014 12:01:29 PM,07/17/2014 12:03:58 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 2 Transport,07/17/2014 12:13:43 PM,1400 Block of MENDELL ST,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7342500709949, -122.3905725228)",141981453-E17 +143264148,E03,14115717,Medical Incident,11/22/2014,11/22/2014,11/22/2014 11:56:46 PM,11/22/2014 11:56:46 PM,11/22/2014 11:56:54 PM,11/22/2014 11:58:26 PM,11/23/2014 12:01:28 AM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Code 3 Transport,11/23/2014 12:09:32 AM,JONES ST/TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",143264148-E03 +151150626,AM02,15043378,Medical Incident,04/25/2015,04/24/2015,04/25/2015 06:52:23 AM,04/25/2015 06:53:05 AM,04/25/2015 06:53:19 AM,04/25/2015 06:54:10 AM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Other,04/25/2015 06:55:49 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",151150626-AM02 +160951984,71,16037651,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:35:17 PM,04/04/2016 01:37:34 PM,04/04/2016 01:43:22 PM,04/04/2016 01:43:31 PM,04/04/2016 01:53:53 PM,04/04/2016 01:59:49 PM,04/04/2016 02:12:19 PM,Code 2 Transport,04/04/2016 02:59:31 PM,3500 Block of 17TH ST,San Francisco,94110,B02,6,5251,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7631541226795, -122.425099106789)",160951984-71 +161003446,77,16039975,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:34:19 PM,04/09/2016 10:34:19 PM,04/09/2016 10:37:18 PM,04/09/2016 10:37:35 PM,04/09/2016 10:48:04 PM,04/09/2016 10:54:30 PM,04/09/2016 11:09:57 PM,Code 2 Transport,04/09/2016 11:33:12 PM,ULLOA ST/KNOCKASH HL,San Francisco,94127,B08,39,8576,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7418772771925, -122.45662726884)",161003446-77 +142982793,RS2,14105289,Structure Fire,10/25/2014,10/25/2014,10/25/2014 05:44:45 PM,10/25/2014 05:45:57 PM,10/25/2014 05:46:20 PM,10/25/2014 05:47:20 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Fire,10/25/2014 05:51:37 PM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Alarm,1,RESCUE SQUAD,9,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",142982793-RS2 +160963241,KM02,16038134,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:20:12 PM,04/05/2016 06:21:21 PM,04/05/2016 06:22:05 PM,04/05/2016 06:23:08 PM,04/05/2016 06:32:04 PM,04/05/2016 06:40:53 PM,04/05/2016 06:49:52 PM,Code 3 Transport,04/05/2016 07:26:24 PM,0 Block of FERNWOOD DR,San Francisco,94127,B09,39,8541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7336600028559, -122.461166385784)",160963241-KM02 +160960468,82,16037895,Medical Incident,04/05/2016,04/04/2016,04/05/2016 06:44:23 AM,04/05/2016 06:53:57 AM,04/05/2016 06:54:07 AM,04/05/2016 06:54:59 AM,04/05/2016 07:01:17 AM,04/05/2016 07:04:54 AM,04/05/2016 07:38:35 AM,Code 2 Transport,04/05/2016 07:38:42 AM,TURK ST/HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",160960468-82 +160922311,76,16036501,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:44:01 PM,04/01/2016 03:44:01 PM,04/01/2016 03:46:16 PM,04/01/2016 03:46:21 PM,04/01/2016 03:51:55 PM,04/01/2016 04:11:33 PM,04/01/2016 04:17:16 PM,Code 2 Transport,04/01/2016 04:40:42 PM,100 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",160922311-76 +152262516,E14,15086199,Medical Incident,08/14/2015,08/14/2015,08/14/2015 04:10:42 PM,08/14/2015 04:11:45 PM,08/14/2015 04:11:56 PM,08/14/2015 04:13:16 PM,08/14/2015 04:16:45 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Code 2 Transport,08/14/2015 04:31:51 PM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7728702084518, -122.498112678583)",152262516-E14 +151272723,E16,15048234,Gas Leak (Natural and LP Gases),05/07/2015,05/07/2015,05/07/2015 04:41:34 PM,05/07/2015 04:43:16 PM,05/07/2015 04:43:23 PM,05/07/2015 04:45:15 PM,05/07/2015 04:47:25 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Fire,05/07/2015 04:49:08 PM,FRANKLIN ST/CHESTNUT ST,San Francisco,94123,B04,16,3235,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8020718699266, -122.426377344364)",151272723-E16 +161002702,53,16039884,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:46:56 PM,04/09/2016 06:48:33 PM,04/09/2016 06:48:47 PM,04/09/2016 06:48:56 PM,04/09/2016 07:00:47 PM,04/09/2016 07:29:28 PM,04/09/2016 07:53:28 PM,Code 2 Transport,04/09/2016 08:03:49 PM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",161002702-53 +152311810,75,15088121,Medical Incident,08/19/2015,08/19/2015,08/19/2015 12:58:34 PM,08/19/2015 01:00:09 PM,08/19/2015 01:00:43 PM,08/19/2015 01:01:02 PM,08/19/2015 01:08:21 PM,08/19/2015 01:19:21 PM,08/19/2015 01:25:28 PM,Code 3 Transport,08/19/2015 02:18:01 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7205476379806, -122.437805967469)",152311810-75 +141273796,55,14043288,Structure Fire,05/07/2014,05/07/2014,05/07/2014 08:08:53 PM,05/07/2014 08:11:30 PM,05/07/2014 08:12:00 PM,05/07/2014 08:13:14 PM,05/07/2014 08:22:15 PM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Fire,05/07/2014 08:25:32 PM,500 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,3,3,3,false,Alarm,1,MEDIC,6,2,5,Western Addition,"(37.7805376097711, -122.420485127189)",141273796-55 +160992333,86,16039363,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:43:30 PM,04/08/2016 03:45:37 PM,04/08/2016 03:50:21 PM,04/08/2016 03:50:21 PM,04/08/2016 03:58:58 PM,04/08/2016 04:19:56 PM,04/08/2016 04:31:07 PM,Code 2 Transport,04/08/2016 05:27:38 PM,0 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7719978555919, -122.419959213851)",160992333-86 +150232380,T05,15008978,Other,01/23/2015,01/23/2015,01/23/2015 04:07:09 PM,01/23/2015 04:07:48 PM,01/23/2015 04:09:01 PM,01/23/2015 04:10:44 PM,01/23/2015 04:11:40 PM,04/25/2016 01:12:40 PM,04/25/2016 01:12:40 PM,Fire,01/23/2015 04:17:02 PM,MCALLISTER ST/FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",150232380-T05 +160973656,AM10,16038617,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:49:49 PM,04/06/2016 06:49:49 PM,04/06/2016 07:24:44 PM,04/06/2016 07:25:22 PM,04/06/2016 07:42:26 PM,04/06/2016 07:48:55 PM,04/06/2016 07:53:56 PM,Code 2 Transport,04/06/2016 08:26:26 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160973656-AM10 +143300893,T14,14116934,Alarms,11/26/2014,11/26/2014,11/26/2014 09:06:14 AM,11/26/2014 09:07:48 AM,11/26/2014 09:08:05 AM,11/26/2014 09:12:01 AM,11/26/2014 09:12:01 AM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/26/2014 09:15:37 AM,6000 Block of GEARY BLVD,San Francisco,94121,B07,14,7213,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7802414186831, -122.484205434754)",143300893-T14 +141870746,T06,14064692,Alarms,07/06/2014,07/05/2014,07/06/2014 07:16:02 AM,07/06/2014 07:18:08 AM,07/06/2014 07:18:21 AM,07/06/2014 07:20:03 AM,07/06/2014 07:22:14 AM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Fire,07/06/2014 07:23:02 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.769431688682, -122.424669373999)",141870746-T06 +160933156,53,16037012,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:39:28 PM,04/02/2016 07:41:06 PM,04/02/2016 07:41:22 PM,04/02/2016 07:41:36 PM,04/02/2016 07:51:04 PM,04/02/2016 08:15:34 PM,04/02/2016 08:45:20 PM,Code 2 Transport,04/02/2016 09:09:00 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160933156-53 +143042668,E01,14107611,Medical Incident,10/31/2014,10/31/2014,10/31/2014 06:13:12 PM,10/31/2014 06:14:15 PM,10/31/2014 06:14:39 PM,10/31/2014 06:16:08 PM,10/31/2014 06:18:35 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,Code 2 Transport,10/31/2014 06:38:41 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",143042668-E01 +141410902,86,14048272,Medical Incident,05/21/2014,05/21/2014,05/21/2014 09:14:04 AM,05/21/2014 09:14:31 AM,05/21/2014 09:15:29 AM,05/21/2014 09:15:48 AM,05/21/2014 09:21:56 AM,05/21/2014 09:27:08 AM,05/21/2014 09:53:31 AM,Code 2 Transport,05/21/2014 10:16:37 AM,1200 Block of REVERE AVE,San Francisco,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7279106754321, -122.383661848292)",141410902-86 +143581839,68,14128144,Traffic Collision,12/24/2014,12/24/2014,12/24/2014 02:14:29 PM,12/24/2014 02:17:08 PM,12/24/2014 02:17:19 PM,12/24/2014 02:17:43 PM,12/24/2014 02:20:50 PM,12/24/2014 02:56:44 PM,04/25/2016 01:13:14 PM,Code 2 Transport,12/24/2014 03:44:29 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",143581839-68 +150501446,E07,15019282,Medical Incident,02/19/2015,02/19/2015,02/19/2015 11:43:40 AM,02/19/2015 11:45:01 AM,02/19/2015 11:48:39 AM,02/19/2015 11:48:39 AM,02/19/2015 11:50:12 AM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Patient Declined Transport,02/19/2015 12:02:17 PM,18TH ST/FOLSOM ST,San Francisco,94110,B02,7,5424,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7620991621973, -122.414998618225)",150501446-E07 +143122291,65,14110573,Medical Incident,11/08/2014,11/08/2014,11/08/2014 03:56:44 PM,11/08/2014 03:56:44 PM,11/08/2014 03:57:04 PM,11/08/2014 03:57:35 PM,11/08/2014 04:19:21 PM,11/08/2014 04:19:39 PM,11/08/2014 04:35:16 PM,Code 2 Transport,11/08/2014 04:55:14 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",143122291-65 +151610108,88,15061361,Medical Incident,06/10/2015,06/09/2015,06/10/2015 01:02:20 AM,06/10/2015 01:03:19 AM,06/10/2015 01:03:46 AM,06/10/2015 01:03:59 AM,06/10/2015 01:10:21 AM,06/10/2015 01:25:20 AM,06/10/2015 01:44:54 AM,Code 2 Transport,06/10/2015 02:50:50 AM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7798704351211, -122.437493921383)",151610108-88 +141570138,78,14053909,Medical Incident,06/06/2014,06/05/2014,06/06/2014 01:08:13 AM,06/06/2014 01:10:11 AM,06/06/2014 01:11:32 AM,06/06/2014 01:15:57 AM,06/06/2014 01:30:49 AM,06/06/2014 02:01:17 AM,06/06/2014 02:09:37 AM,Code 2 Transport,06/06/2014 02:28:10 AM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",141570138-78 +150033189,RS1,15001274,Medical Incident,01/03/2015,01/03/2015,01/03/2015 09:03:23 PM,01/03/2015 09:03:23 PM,01/03/2015 09:03:56 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Other,01/03/2015 09:04:40 PM,7TH ST/MISSION ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7792116845421, -122.4109365738)",150033189-RS1 +150750535,E10,15028665,Traffic Collision,03/16/2015,03/15/2015,03/16/2015 07:06:31 AM,03/16/2015 07:07:20 AM,03/16/2015 07:07:36 AM,03/16/2015 07:09:29 AM,03/16/2015 07:11:26 AM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Patient Declined Transport,03/16/2015 07:16:35 AM,ANZA ST/BLAKE ST,San Francisco,94118,B05,10,4457,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7806223148351, -122.450843847718)",150750535-E10 +150241277,E19,15009260,Medical Incident,01/24/2015,01/24/2015,01/24/2015 10:54:05 AM,01/24/2015 10:56:00 AM,01/24/2015 10:56:12 AM,01/24/2015 10:56:30 AM,01/24/2015 10:58:17 AM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Code 2 Transport,01/24/2015 11:13:50 AM,34TH AV/YORBA ST,San Francisco,94132,B08,19,7552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7353270196156, -122.491320517212)",150241277-E19 +141020286,T06,14034530,Structure Fire,04/12/2014,04/12/2014,04/12/2014 05:54:24 PM,04/12/2014 05:54:24 PM,04/12/2014 05:54:40 PM,04/12/2014 05:56:24 PM,04/12/2014 05:57:26 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Fire,04/12/2014 06:16:39 PM,300 Block of SANCHEZ ST,,94114,B05,6,525,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7635672604293, -122.43073545001)",141020286-T06 +141210363,E08,14041062,Traffic Collision,05/01/2014,05/01/2014,05/01/2014 06:38:22 PM,05/01/2014 06:40:23 PM,05/01/2014 06:41:50 PM,05/01/2014 06:43:02 PM,05/01/2014 06:48:23 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 2 Transport,05/01/2014 07:37:34 PM,300 Block of BRYANT ST,SAN FRANCISCO,94107,B03,35,2135,,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7839080570669, -122.392433239348)",141210363-E08 +150182217,E35,15007157,Traffic Collision,01/18/2015,01/18/2015,01/18/2015 04:06:14 PM,01/18/2015 04:11:37 PM,01/18/2015 04:12:17 PM,01/18/2015 04:13:53 PM,01/18/2015 04:17:36 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,No Merit,01/18/2015 04:19:45 PM,300 Block of HOWARD ST,San Francisco,94105,B03,35,2124,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",150182217-E35 +153330596,53,15127955,Medical Incident,11/29/2015,11/28/2015,11/29/2015 06:15:07 AM,11/29/2015 06:16:04 AM,11/29/2015 06:16:23 AM,11/29/2015 06:16:55 AM,11/29/2015 06:27:31 AM,11/29/2015 06:46:06 AM,11/29/2015 06:58:58 AM,Code 2 Transport,11/29/2015 07:41:28 AM,400 Block of 32ND AVE,San Francisco,94121,B07,14,7237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7807150242831, -122.492234634841)",153330596-53 +141370536,82,14046815,Medical Incident,05/17/2014,05/16/2014,05/17/2014 04:13:49 AM,05/17/2014 04:13:49 AM,05/17/2014 04:18:27 AM,05/17/2014 04:19:20 AM,05/17/2014 04:34:52 AM,05/17/2014 04:56:21 AM,04/25/2016 01:17:17 PM,Code 2 Transport,05/17/2014 05:22:32 AM,200 Block of POWELL ST,San Francisco,94102,B01,1,1363,,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",141370536-82 +152692501,E44,15103153,Alarms,09/26/2015,09/26/2015,09/26/2015 04:07:17 PM,09/26/2015 04:09:54 PM,09/26/2015 04:12:03 PM,09/26/2015 04:13:37 PM,09/26/2015 04:17:19 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Fire,09/26/2015 04:41:12 PM,1500 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",152692501-E44 +153261217,E36,15125464,Traffic Collision,11/22/2015,11/22/2015,11/22/2015 10:50:40 AM,11/22/2015 10:50:40 AM,11/22/2015 10:51:26 AM,11/22/2015 10:53:27 AM,11/22/2015 10:56:56 AM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,No Merit,11/22/2015 11:04:02 AM,SOUTH VAN NESS AV/MISSION ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7730534532281, -122.418618217459)",153261217-E36 +150621731,E16,15023659,Medical Incident,03/03/2015,03/03/2015,03/03/2015 12:28:41 PM,03/03/2015 12:29:58 PM,03/03/2015 12:30:10 PM,03/03/2015 12:31:16 PM,03/03/2015 12:32:04 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,No Merit,03/03/2015 12:35:56 PM,MOULTON ST/WEBSTER ST,San Francisco,94123,B04,16,3444,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7996281993419, -122.434319173803)",150621731-E16 +141433643,T03,14049254,Alarms,05/23/2014,05/23/2014,05/23/2014 10:46:31 PM,05/23/2014 10:47:28 PM,05/23/2014 10:47:52 PM,05/23/2014 10:49:20 PM,05/23/2014 10:51:11 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Fire,05/23/2014 10:59:55 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Alarm,1,TRUCK,2,4,3,Nob Hill,"(37.7899917286128, -122.418035034103)",141433643-T03 +150142847,63,15005649,Medical Incident,01/14/2015,01/14/2015,01/14/2015 05:33:10 PM,01/14/2015 05:34:30 PM,01/14/2015 05:35:17 PM,01/14/2015 05:35:32 PM,01/14/2015 06:14:36 PM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Against Medical Advice,01/14/2015 06:35:19 PM,BATTERY ST/PINE ST,San Francisco,94111,B01,13,1163,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7922579471835, -122.399763355201)",150142847-63 +152981950,KM04,15114445,Medical Incident,10/25/2015,10/25/2015,10/25/2015 02:38:11 PM,10/25/2015 02:42:14 PM,10/25/2015 02:42:43 PM,10/25/2015 02:43:16 PM,04/25/2016 01:07:35 PM,04/25/2016 01:07:35 PM,04/25/2016 01:07:35 PM,Code 2 Transport,10/25/2015 02:44:18 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,false,Non Life-threatening,1,PRIVATE,3,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",152981950-KM04 +152650284,AM20,15101343,Medical Incident,09/22/2015,09/21/2015,09/22/2015 02:48:35 AM,09/22/2015 02:51:39 AM,09/22/2015 02:51:54 AM,09/22/2015 02:52:29 AM,09/22/2015 02:57:50 AM,09/22/2015 03:11:15 AM,09/22/2015 03:27:08 AM,Code 3 Transport,09/22/2015 04:08:15 AM,200 Block of BEALE ST,San Francisco,94105,B03,35,2122,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7892677162791, -122.393548600464)",152650284-AM20 +150970777,B03,15036679,Structure Fire,04/07/2015,04/07/2015,04/07/2015 08:32:27 AM,04/07/2015 08:33:22 AM,04/07/2015 08:33:43 AM,04/07/2015 08:34:50 AM,04/07/2015 08:37:33 AM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Fire,04/07/2015 08:44:52 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7774997276449, -122.410999268699)",150970777-B03 +143371458,72,14119506,Medical Incident,12/03/2014,12/03/2014,12/03/2014 10:29:58 AM,12/03/2014 10:29:58 AM,12/03/2014 10:30:33 AM,12/03/2014 10:31:29 AM,12/03/2014 10:34:43 AM,12/03/2014 10:55:24 AM,12/03/2014 11:18:02 AM,Code 2 Transport,12/03/2014 11:42:58 AM,0 Block of RANDALL ST,San Francisco,94131,B06,32,8112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7397726632436, -122.425034949068)",143371458-72 +141772175,T19,14061141,Alarms,06/26/2014,06/26/2014,06/26/2014 03:47:37 PM,06/26/2014 03:49:08 PM,06/26/2014 03:49:20 PM,06/26/2014 03:51:22 PM,06/26/2014 03:54:05 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 04:01:52 PM,300 Block of ARBALLO DR,San Francisco,94132,B08,19,8582,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",141772175-T19 +153243255,E41,15124820,Medical Incident,11/20/2015,11/20/2015,11/20/2015 06:17:41 PM,11/20/2015 06:19:02 PM,11/20/2015 06:27:07 PM,11/20/2015 06:27:16 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Code 2 Transport,11/20/2015 06:29:21 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,ENGINE,4,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",153243255-E41 +141210441,RC3,14041131,Medical Incident,05/01/2014,05/01/2014,05/01/2014 10:09:27 PM,05/01/2014 10:09:59 PM,05/01/2014 10:10:55 PM,05/01/2014 10:12:08 PM,05/01/2014 10:17:57 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 3 Transport,05/01/2014 11:19:28 PM,500 Block of PARNASSUS AVE,SAN FRANCISCO,94131,B06,26,8175,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",141210441-RC3 +141412206,E39,14048380,Medical Incident,05/21/2014,05/21/2014,05/21/2014 03:16:13 PM,05/21/2014 03:16:46 PM,05/21/2014 03:17:26 PM,05/21/2014 03:18:51 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 03:32:54 PM,800 Block of ULLOA ST,San Francisco,94127,B08,39,8619,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7409217122072, -122.466013598224)",141412206-E39 +150151339,E02,15005919,Structure Fire,01/15/2015,01/15/2015,01/15/2015 11:14:12 AM,01/15/2015 11:14:33 AM,01/15/2015 11:14:49 AM,01/15/2015 11:17:00 AM,01/15/2015 11:17:33 AM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Fire,01/15/2015 11:34:54 AM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",150151339-E02 +160943225,79,16037411,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:09:53 PM,04/03/2016 08:11:06 PM,04/03/2016 08:11:21 PM,04/03/2016 08:11:34 PM,04/03/2016 08:14:55 PM,04/03/2016 08:36:22 PM,04/03/2016 08:51:45 PM,Code 2 Transport,04/03/2016 09:10:56 PM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7816136403158, -122.412054141237)",160943225-79 +142882967,71,14101611,Medical Incident,10/15/2014,10/15/2014,10/15/2014 05:54:26 PM,10/15/2014 05:57:54 PM,10/15/2014 05:58:18 PM,10/15/2014 05:58:29 PM,10/15/2014 06:08:28 PM,10/15/2014 06:40:48 PM,10/15/2014 07:04:27 PM,Code 2 Transport,10/15/2014 07:57:51 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",142882967-71 +150251706,E42,15009657,Medical Incident,01/25/2015,01/25/2015,01/25/2015 12:59:44 PM,01/25/2015 01:02:13 PM,01/25/2015 01:03:16 PM,01/25/2015 01:04:19 PM,01/25/2015 01:07:06 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,Code 2 Transport,01/25/2015 01:11:43 PM,100 Block of BRUSSELS ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7301008339849, -122.406891125919)",150251706-E42 +142673354,74,14093649,Medical Incident,09/24/2014,09/24/2014,09/24/2014 07:27:00 PM,09/24/2014 07:27:46 PM,09/24/2014 07:28:11 PM,09/24/2014 07:28:21 PM,09/24/2014 07:45:19 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,No Merit,09/24/2014 07:59:27 PM,GREAT HY/PACHECO ST,San Francisco,94116,B08,23,7726,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7491109380411, -122.507941547493)",142673354-74 +151031420,61,15038916,Medical Incident,04/13/2015,04/13/2015,04/13/2015 11:12:18 AM,04/13/2015 11:14:39 AM,04/13/2015 11:15:31 AM,04/13/2015 11:15:42 AM,04/13/2015 11:39:43 AM,04/13/2015 11:44:48 AM,04/13/2015 12:07:05 PM,Code 2 Transport,04/13/2015 12:30:51 PM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7613401387036, -122.46390786542)",151031420-61 +152611639,E01,15099727,Medical Incident,09/18/2015,09/18/2015,09/18/2015 11:41:06 AM,09/18/2015 11:41:55 AM,09/18/2015 11:42:09 AM,09/18/2015 11:42:29 AM,09/18/2015 11:42:37 AM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/18/2015 11:50:11 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",152611639-E01 +151110153,62,15041853,Medical Incident,04/21/2015,04/20/2015,04/21/2015 01:25:07 AM,04/21/2015 01:25:07 AM,04/21/2015 01:27:13 AM,04/21/2015 01:28:10 AM,04/21/2015 01:31:39 AM,04/21/2015 01:47:19 AM,04/21/2015 02:08:49 AM,Code 2 Transport,04/21/2015 02:36:13 AM,2400 Block of MARIPOSA ST,San Francisco,94110,B02,29,5243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Potrero Hill,"(37.7631000634463, -122.407798087313)",151110153-62 +152203428,T05,15083977,Alarms,08/08/2015,08/08/2015,08/08/2015 08:57:12 PM,08/08/2015 08:58:26 PM,08/08/2015 08:58:32 PM,08/08/2015 08:59:49 PM,08/08/2015 09:02:37 PM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Fire,08/08/2015 09:11:17 PM,1300 Block of HAYES ST,San Francisco,94117,B05,21,4244,3,3,3,false,Alarm,1,TRUCK,2,5,5,Hayes Valley,"(37.7749393187177, -122.438643513422)",152203428-T05 +151130246,85,15042556,Medical Incident,04/23/2015,04/22/2015,04/23/2015 02:15:46 AM,04/23/2015 02:19:49 AM,04/23/2015 02:20:31 AM,04/23/2015 02:21:27 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,No Merit,04/23/2015 02:23:02 AM,500 Block of 47TH AVE,San Francisco,94121,B07,34,7276,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7780500044705, -122.508299698216)",151130246-85 +153043135,E03,15116782,Medical Incident,10/31/2015,10/31/2015,10/31/2015 06:23:41 PM,10/31/2015 06:24:42 PM,10/31/2015 06:24:57 PM,10/31/2015 06:26:10 PM,10/31/2015 06:29:25 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,Code 2 Transport,10/31/2015 06:35:42 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",153043135-E03 +160940053,57,16037097,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:15:51 AM,04/03/2016 12:17:00 AM,04/03/2016 12:17:38 AM,04/03/2016 12:20:43 AM,04/03/2016 12:26:33 AM,04/03/2016 12:43:25 AM,04/03/2016 01:14:23 AM,Code 2 Transport,04/03/2016 02:01:26 AM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160940053-57 +152142084,62,15081517,Medical Incident,08/02/2015,08/02/2015,08/02/2015 03:05:44 PM,08/02/2015 03:10:51 PM,08/02/2015 03:12:10 PM,08/02/2015 03:12:10 PM,08/02/2015 03:16:12 PM,08/02/2015 03:40:03 PM,08/02/2015 03:44:32 PM,Code 2 Transport,08/02/2015 03:59:30 PM,800 Block of GRANT AVE,San Francisco,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7947123862364, -122.406321854883)",152142084-62 +151170071,T07,15044048,Alarms,04/27/2015,04/26/2015,04/27/2015 12:34:49 AM,04/27/2015 12:37:23 AM,04/27/2015 12:37:40 AM,04/27/2015 12:39:46 AM,04/27/2015 12:42:09 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 12:51:30 AM,2600 Block of HARRISON ST,San Francisco,94110,B06,7,545,3,3,3,true,Alarm,1,TRUCK,3,6,9,Mission,"(37.7550273333694, -122.412191567954)",151170071-T07 +152842440,E03,15109113,Alarms,10/11/2015,10/11/2015,10/11/2015 03:35:26 PM,10/11/2015 03:37:12 PM,10/11/2015 03:37:30 PM,10/11/2015 03:39:19 PM,10/11/2015 03:39:58 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Fire,10/11/2015 03:44:29 PM,800 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",152842440-E03 +142742322,E05,14096116,Alarms,10/01/2014,10/01/2014,10/01/2014 03:07:19 PM,10/01/2014 03:09:05 PM,10/01/2014 03:09:16 PM,10/01/2014 03:09:34 PM,10/01/2014 03:12:34 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Fire,10/01/2014 03:15:53 PM,1000 Block of FULTON ST,San Francisco,94117,B05,5,3626,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7774397499102, -122.434052229996)",142742322-E05 +160950925,88,16037559,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:15:24 AM,04/04/2016 09:18:41 AM,04/04/2016 09:19:26 AM,04/04/2016 09:19:41 AM,04/04/2016 09:33:01 AM,04/04/2016 09:51:53 AM,04/04/2016 10:07:13 AM,Code 2 Transport,04/04/2016 10:30:02 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160950925-88 +160990725,85,16039210,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:14:21 AM,04/08/2016 08:14:44 AM,04/08/2016 08:14:57 AM,04/08/2016 08:15:13 AM,04/08/2016 08:22:59 AM,04/08/2016 08:44:15 AM,04/08/2016 09:19:44 AM,Code 2 Transport,04/08/2016 09:49:13 AM,1700 Block of 42ND AVE,San Francisco,94122,B08,23,7651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7540813159009, -122.501114509461)",160990725-85 +142211863,B02,14076737,Structure Fire,08/09/2014,08/09/2014,08/09/2014 01:32:58 PM,08/09/2014 01:39:00 PM,08/09/2014 01:39:22 PM,08/09/2014 01:40:29 PM,08/09/2014 01:44:29 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Fire,08/09/2014 01:53:38 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Alarm,1,CHIEF,7,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",142211863-B02 +150133080,E01,15005289,Medical Incident,01/13/2015,01/13/2015,01/13/2015 06:28:33 PM,01/13/2015 06:30:27 PM,01/13/2015 06:30:52 PM,01/13/2015 06:32:04 PM,01/13/2015 06:36:09 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Other,01/13/2015 06:39:33 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",150133080-E01 +142173089,T03,14075361,Alarms,08/05/2014,08/05/2014,08/05/2014 07:58:58 PM,08/05/2014 08:00:04 PM,08/05/2014 08:00:33 PM,08/05/2014 08:01:34 PM,08/05/2014 08:03:09 PM,04/25/2016 01:15:49 PM,04/25/2016 01:15:49 PM,Fire,08/05/2014 08:20:08 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",142173089-T03 +150151836,T19,15005959,Alarms,01/15/2015,01/15/2015,01/15/2015 01:21:09 PM,01/15/2015 01:22:24 PM,01/15/2015 01:22:46 PM,01/15/2015 01:24:58 PM,01/15/2015 01:27:38 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Fire,01/15/2015 01:30:40 PM,100 Block of CLEARFIELD DR,San Francisco,94132,B08,19,8816,3,3,3,false,Alarm,1,TRUCK,2,8,7,Sunset/Parkside,"(37.7313538777143, -122.491459945504)",150151836-T19 +160981737,62,16038903,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:09:46 PM,04/07/2016 12:14:27 PM,04/07/2016 12:14:46 PM,04/07/2016 12:15:07 PM,04/07/2016 12:21:12 PM,04/07/2016 12:33:33 PM,04/07/2016 12:35:09 PM,Code 2 Transport,04/07/2016 01:26:36 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",160981737-62 +141452373,T15,14049879,Alarms,05/25/2014,05/25/2014,05/25/2014 05:30:43 PM,05/25/2014 05:32:02 PM,05/25/2014 05:32:56 PM,05/25/2014 05:34:51 PM,05/25/2014 05:38:00 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Fire,05/25/2014 05:47:51 PM,0 Block of NORTHGATE DR,San Francisco,94127,B09,15,8547,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.729000241288, -122.461600642667)",141452373-T15 +150341557,B09,15013085,Alarms,02/03/2015,02/03/2015,02/03/2015 12:02:24 PM,02/03/2015 12:06:09 PM,02/03/2015 12:06:18 PM,02/03/2015 12:08:52 PM,02/03/2015 12:11:47 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Fire,02/03/2015 12:38:05 PM,0 Block of TINGLEY ST,San Francisco,94112,B09,32,6113,3,3,3,false,Alarm,1,CHIEF,1,9,11,Outer Mission,"(37.7287240447065, -122.43292780153)",150341557-B09 +160971776,57,16038402,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:10:54 PM,04/06/2016 12:12:32 PM,04/06/2016 12:12:45 PM,04/06/2016 12:12:56 PM,04/06/2016 12:18:34 PM,04/06/2016 12:40:41 PM,04/06/2016 01:18:28 PM,Code 2 Transport,04/06/2016 02:45:04 PM,500 Block of RAMSELL ST,San Francisco,94132,B09,15,8435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7206727205303, -122.466335197673)",160971776-57 +152750800,79,15105230,Medical Incident,10/02/2015,10/02/2015,10/02/2015 08:14:11 AM,10/02/2015 08:15:01 AM,10/02/2015 08:16:17 AM,10/02/2015 08:16:17 AM,10/02/2015 08:33:28 AM,10/02/2015 08:33:31 AM,04/25/2016 01:08:01 PM,Code 3 Transport,10/02/2015 09:07:37 AM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",152750800-79 +142791326,77,14098119,Medical Incident,10/06/2014,10/06/2014,10/06/2014 11:07:29 AM,10/06/2014 11:08:08 AM,10/06/2014 11:08:42 AM,10/06/2014 11:08:50 AM,10/06/2014 11:12:41 AM,10/06/2014 11:25:28 AM,10/06/2014 11:46:14 AM,Code 3 Transport,10/06/2014 12:23:32 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7662536102334, -122.425864046062)",142791326-77 +150372735,57,15014419,Traffic Collision,02/06/2015,02/06/2015,02/06/2015 05:19:09 PM,02/06/2015 05:19:09 PM,02/06/2015 05:20:55 PM,02/06/2015 05:20:55 PM,02/06/2015 05:25:54 PM,02/06/2015 05:46:48 PM,02/06/2015 06:10:57 PM,Code 2 Transport,02/06/2015 06:27:10 PM,MASON ST/ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",150372735-57 +151870023,79,15071227,Medical Incident,07/06/2015,07/05/2015,07/06/2015 12:10:39 AM,07/06/2015 12:11:54 AM,07/06/2015 12:12:33 AM,07/06/2015 12:12:49 AM,07/06/2015 12:16:36 AM,07/06/2015 12:33:47 AM,07/06/2015 12:55:02 AM,Code 3 Transport,07/06/2015 01:34:01 AM,1200 Block of HAIGHT ST,San Francisco,94117,B05,21,4353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",151870023-79 +160932998,63,16036989,Medical Incident,04/02/2016,04/02/2016,04/02/2016 06:53:13 PM,04/02/2016 06:55:08 PM,04/02/2016 06:56:18 PM,04/02/2016 06:56:29 PM,04/02/2016 07:18:21 PM,04/02/2016 07:18:23 PM,04/02/2016 07:47:46 PM,Code 2 Transport,04/02/2016 08:13:01 PM,2300 Block of TURK BLVD,San Francisco,94118,B05,21,4564,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7786159124271, -122.447529663824)",160932998-63 +150471471,2R01,15018250,,02/16/2015,02/16/2015,02/16/2015 11:29:00 AM,02/16/2015 11:31:03 AM,02/16/2015 11:40:14 AM,02/16/2015 11:40:14 AM,02/16/2015 11:40:14 AM,04/25/2016 01:12:12 PM,04/25/2016 01:12:12 PM,Fire,02/16/2015 11:40:19 AM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,false,Alarm,1,ADMIN,0,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",150471471-2R01 +153083533,E17,15118511,Structure Fire,11/04/2015,11/04/2015,11/04/2015 07:56:41 PM,11/04/2015 07:56:41 PM,11/04/2015 07:56:58 PM,11/04/2015 07:57:59 PM,11/04/2015 08:01:04 PM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,Fire,11/04/2015 08:01:21 PM,HUDSON AV/CASHMERE ST,San Francisco,94124,B10,25,652,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",153083533-E17 +151731208,E36,15066015,Medical Incident,06/22/2015,06/22/2015,06/22/2015 11:01:15 AM,06/22/2015 11:02:07 AM,06/22/2015 11:02:31 AM,06/22/2015 11:02:40 AM,06/22/2015 11:05:38 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Code 2 Transport,06/22/2015 11:05:49 AM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",151731208-E36 +150240088,B04,15009131,Alarms,01/24/2015,01/23/2015,01/24/2015 12:31:43 AM,01/24/2015 12:31:59 AM,01/24/2015 12:32:14 AM,01/24/2015 12:34:16 AM,01/24/2015 12:38:41 AM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Fire,01/24/2015 12:48:08 AM,1500 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,4134,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",150240088-B04 +160933627,72,16037059,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:02:35 PM,04/02/2016 10:03:49 PM,04/02/2016 10:03:58 PM,04/02/2016 10:04:06 PM,04/02/2016 10:11:53 PM,04/02/2016 10:51:21 PM,04/02/2016 11:10:00 PM,Code 2 Transport,04/02/2016 11:58:56 PM,400 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160933627-72 +150802503,T02,15030732,Elevator / Escalator Rescue,03/21/2015,03/21/2015,03/21/2015 05:19:35 PM,03/21/2015 05:20:34 PM,03/21/2015 05:21:20 PM,03/21/2015 05:24:12 PM,03/21/2015 05:27:30 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Fire,03/21/2015 05:46:51 PM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.8061880612091, -122.416243833913)",150802503-T02 +160931586,AM10,16036841,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:21:13 PM,04/02/2016 12:22:04 PM,04/02/2016 12:22:33 PM,04/02/2016 12:23:15 PM,04/02/2016 12:29:48 PM,04/02/2016 12:36:58 PM,04/02/2016 12:46:33 PM,Code 2 Transport,04/02/2016 01:32:40 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",160931586-AM10 +160990587,88,16039202,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:23:37 AM,04/08/2016 07:26:34 AM,04/08/2016 07:27:02 AM,04/08/2016 07:27:22 AM,04/08/2016 07:36:49 AM,04/08/2016 07:53:11 AM,04/08/2016 08:17:41 AM,Code 2 Transport,04/08/2016 08:59:34 AM,700 Block of MISSOURI ST,San Francisco,94107,B10,37,2566,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7572927812087, -122.395771897356)",160990587-88 +142861223,RS2,14100789,Structure Fire,10/13/2014,10/13/2014,10/13/2014 10:47:41 AM,10/13/2014 10:55:17 AM,10/13/2014 10:55:22 AM,10/13/2014 10:56:56 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Fire,10/13/2014 10:59:08 AM,3500 Block of 25TH ST,San Francisco,94110,B06,11,5535,3,3,3,false,Alarm,1,RESCUE SQUAD,9,6,8,Mission,"(37.7504366313711, -122.420740954299)",142861223-RS2 +153342498,E01,15128482,Medical Incident,11/30/2015,11/30/2015,11/30/2015 04:39:18 PM,11/30/2015 04:39:18 PM,11/30/2015 04:40:40 PM,11/30/2015 04:40:40 PM,11/30/2015 04:44:02 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Code 2 Transport,11/30/2015 04:54:34 PM,NEW MONTGOMERY ST/MISSION ST,San Francisco,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",153342498-E01 +152052549,E38,15078150,Medical Incident,07/24/2015,07/24/2015,07/24/2015 04:15:31 PM,07/24/2015 04:16:55 PM,07/24/2015 04:17:37 PM,07/24/2015 04:19:04 PM,07/24/2015 04:20:45 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Code 3 Transport,07/24/2015 05:33:11 PM,2100 Block of PACIFIC AVE,San Francisco,94115,B04,38,3441,3,E,3,false,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.79392640977, -122.430637263038)",152052549-E38 +142383297,E13,14082916,Medical Incident,08/26/2014,08/26/2014,08/26/2014 07:55:44 PM,08/26/2014 07:58:10 PM,08/26/2014 08:02:19 PM,08/26/2014 08:03:23 PM,08/26/2014 08:06:42 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Code 2 Transport,08/26/2014 08:21:00 PM,300 Block of KEARNY ST,San Francisco,94108,B01,13,1243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",142383297-E13 +150760310,E28,15029017,Medical Incident,03/17/2015,03/16/2015,03/17/2015 03:48:46 AM,03/17/2015 03:48:46 AM,03/17/2015 03:49:38 AM,03/17/2015 03:50:51 AM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Code 2 Transport,03/17/2015 03:51:08 AM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",150760310-E28 +151692997,83,15064753,Medical Incident,06/18/2015,06/18/2015,06/18/2015 07:12:38 PM,06/18/2015 07:12:38 PM,06/18/2015 07:13:56 PM,06/18/2015 07:14:02 PM,06/18/2015 07:19:35 PM,04/25/2016 01:09:56 PM,04/25/2016 01:09:56 PM,Cancelled,06/18/2015 07:20:41 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",151692997-83 +152691830,E19,15103084,Medical Incident,09/26/2015,09/26/2015,09/26/2015 01:08:19 PM,09/26/2015 01:10:21 PM,09/26/2015 01:10:32 PM,09/26/2015 01:12:28 PM,09/26/2015 01:16:18 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Code 2 Transport,09/26/2015 01:31:51 PM,1500 Block of SLOAT BLVD,San Francisco,94132,B08,19,7552,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",152691830-E19 +150351708,57,15013453,Medical Incident,02/04/2015,02/04/2015,02/04/2015 11:53:44 AM,02/04/2015 11:54:47 AM,02/04/2015 11:55:20 AM,02/04/2015 11:57:55 AM,02/04/2015 12:04:00 PM,02/04/2015 12:09:07 PM,02/04/2015 12:55:39 PM,Code 2 Transport,02/04/2015 12:55:42 PM,DENSLOWE DR/HOLLOWAY AV,San Francisco,94132,B08,19,8751,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7211969232658, -122.474547326318)",150351708-57 +160991335,KM13,16039268,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:26:19 AM,04/08/2016 11:27:08 AM,04/08/2016 11:27:19 AM,04/08/2016 11:29:01 AM,04/08/2016 11:33:37 AM,04/08/2016 11:54:17 AM,04/08/2016 12:22:12 PM,Code 2 Transport,04/08/2016 01:00:04 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160991335-KM13 +150691829,E42,15026361,Medical Incident,03/10/2015,03/10/2015,03/10/2015 01:36:10 PM,03/10/2015 01:36:57 PM,03/10/2015 01:37:57 PM,03/10/2015 01:40:09 PM,03/10/2015 01:43:26 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Code 2 Transport,03/10/2015 01:53:07 PM,KEITH ST/WALLACE AV,San Francisco,94124,B10,17,6546,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7274763469348, -122.391107616278)",150691829-E42 +160941918,61,16037269,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:36:00 PM,04/03/2016 01:36:00 PM,04/03/2016 01:36:26 PM,04/03/2016 01:36:34 PM,04/03/2016 01:59:41 PM,04/03/2016 02:00:35 PM,04/03/2016 02:15:52 PM,Code 2 Transport,04/03/2016 02:54:07 PM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",160941918-61 +151281419,82,15048511,Medical Incident,05/08/2015,05/08/2015,05/08/2015 11:12:04 AM,05/08/2015 11:12:20 AM,05/08/2015 11:12:54 AM,05/08/2015 11:13:07 AM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Cancelled,05/08/2015 11:14:57 AM,1000 Block of BALBOA ST,San Francisco,94118,B07,31,7145,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7770207365591, -122.469900954648)",151281419-82 +151430452,89,15054261,Medical Incident,05/23/2015,05/22/2015,05/23/2015 02:56:23 AM,05/23/2015 02:57:37 AM,05/23/2015 02:57:58 AM,05/23/2015 02:58:04 AM,05/23/2015 03:06:49 AM,05/23/2015 03:17:30 AM,05/23/2015 03:50:07 AM,Code 2 Transport,05/23/2015 04:07:22 AM,GRANT AV/GREEN ST,San Francisco,94133,B01,28,1266,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7997036751716, -122.407395244265)",151430452-89 +151711214,76,15065293,Medical Incident,06/20/2015,06/20/2015,06/20/2015 10:42:55 AM,06/20/2015 10:43:27 AM,06/20/2015 10:44:08 AM,06/20/2015 10:44:16 AM,06/20/2015 10:48:43 AM,06/20/2015 11:05:48 AM,06/20/2015 11:14:33 AM,Code 2 Transport,06/20/2015 11:36:30 AM,COLE ST/HAIGHT ST,San Francisco,94117,B05,12,4533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",151711214-76 +143270977,85,14115815,Traffic Collision,11/23/2014,11/23/2014,11/23/2014 08:21:17 AM,11/23/2014 08:21:17 AM,11/23/2014 08:22:40 AM,11/23/2014 08:23:11 AM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Code 2 Transport,11/23/2014 08:26:33 AM,BROTHERHOOD WY/ARCH ST,San Francisco,94132,B09,33,8375,2,2,2,true,Non Life-threatening,1,MEDIC,3,9,7,Oceanview/Merced/Ingleside,"(37.7124218732149, -122.467072688577)",143270977-85 +150020429,E14,15000613,Medical Incident,01/02/2015,01/01/2015,01/02/2015 06:57:37 AM,01/02/2015 06:58:20 AM,01/02/2015 07:01:26 AM,01/02/2015 07:04:21 AM,01/02/2015 07:06:32 AM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Code 2 Transport,01/02/2015 07:21:47 AM,400 Block of 36TH AVE,San Francisco,94121,B07,34,7255,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.780398447494, -122.496512969043)",150020429-E14 +150201454,E16,15007811,Medical Incident,01/20/2015,01/20/2015,01/20/2015 11:32:59 AM,01/20/2015 11:34:01 AM,01/20/2015 11:34:46 AM,01/20/2015 11:35:45 AM,01/20/2015 11:37:46 AM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Unable to Locate,01/20/2015 11:41:00 AM,2000 Block of CHESTNUT ST,San Francisco,94123,B04,16,3661,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8006947037442, -122.436775838314)",150201454-E16 +150440722,88,15017015,Medical Incident,02/13/2015,02/12/2015,02/13/2015 07:44:28 AM,02/13/2015 07:45:09 AM,02/13/2015 07:46:05 AM,02/13/2015 07:46:37 AM,02/13/2015 07:55:09 AM,02/13/2015 08:10:21 AM,02/13/2015 08:17:29 AM,Code 2 Transport,02/13/2015 08:56:06 AM,3400 Block of 16TH ST,San Francisco,94114,B02,6,5234,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7645393169701, -122.429051748947)",150440722-88 +141552658,E02,14053398,Water Rescue,06/04/2014,06/04/2014,06/04/2014 05:22:43 PM,06/04/2014 05:23:20 PM,06/04/2014 05:24:57 PM,06/04/2014 05:26:48 PM,06/04/2014 05:45:40 PM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Code 3 Transport,06/04/2014 06:46:18 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Fire,1,ENGINE,6,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",141552658-E02 +153410598,79,15131109,Medical Incident,12/07/2015,12/06/2015,12/07/2015 07:07:55 AM,12/07/2015 07:09:42 AM,12/07/2015 07:10:45 AM,12/07/2015 07:12:01 AM,12/07/2015 07:19:19 AM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,Patient Declined Transport,12/07/2015 07:38:35 AM,1600 Block of FULTON ST,San Francisco,94117,B05,21,4346,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7760670800915, -122.443945228823)",153410598-79 +143123019,T05,14110637,Structure Fire,11/08/2014,11/08/2014,11/08/2014 07:08:14 PM,11/08/2014 07:08:14 PM,11/08/2014 07:08:40 PM,11/08/2014 07:09:23 PM,11/08/2014 07:10:58 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/08/2014 07:11:20 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",143123019-T05 +151711181,E01,15065288,Structure Fire,06/20/2015,06/20/2015,06/20/2015 10:28:36 AM,06/20/2015 10:29:45 AM,06/20/2015 10:30:00 AM,06/20/2015 10:33:03 AM,06/20/2015 10:33:20 AM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Fire,06/20/2015 10:38:37 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Fire,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",151711181-E01 +152702750,87,15103542,Medical Incident,09/27/2015,09/27/2015,09/27/2015 06:21:17 PM,09/27/2015 06:22:27 PM,09/27/2015 06:22:56 PM,09/27/2015 06:23:07 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Code 2 Transport,09/27/2015 06:23:30 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,5,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",152702750-87 +151773884,RC2,15067557,Medical Incident,06/26/2015,06/26/2015,06/26/2015 10:56:02 PM,06/26/2015 10:56:02 PM,06/26/2015 10:56:34 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 10:59:04 PM,WEST PORTAL AV/VICENTE ST,San Francisco,94127,B08,39,8611,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,8,7,West of Twin Peaks,"(37.7397235005071, -122.466991014067)",151773884-RC2 +143400187,E17,14120573,Alarms,12/06/2014,12/05/2014,12/06/2014 01:07:52 AM,12/06/2014 01:08:31 AM,12/06/2014 01:08:38 AM,12/06/2014 01:10:30 AM,12/06/2014 01:13:48 AM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Fire,12/06/2014 01:28:16 AM,1500 Block of OAKDALE AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7341109185818, -122.389372863694)",143400187-E17 +152530873,E41,15096640,Medical Incident,09/10/2015,09/10/2015,09/10/2015 08:39:18 AM,09/10/2015 08:39:45 AM,09/10/2015 08:42:27 AM,09/10/2015 08:42:59 AM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,Code 2 Transport,09/10/2015 08:44:56 AM,1300 Block of JONES ST,San Francisco,94108,B01,41,1466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,1,3,Nob Hill,"(37.7936750957454, -122.41449049505)",152530873-E41 +152933664,52,15112736,Medical Incident,10/20/2015,10/20/2015,10/20/2015 08:37:54 PM,10/20/2015 08:39:06 PM,10/20/2015 08:39:24 PM,10/20/2015 08:39:30 PM,10/20/2015 08:43:30 PM,10/20/2015 08:53:36 PM,10/20/2015 09:10:58 PM,Code 2 Transport,10/20/2015 09:34:05 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",152933664-52 +153063420,E31,15117762,Medical Incident,11/02/2015,11/02/2015,11/02/2015 08:52:44 PM,11/02/2015 08:53:27 PM,11/02/2015 08:54:23 PM,11/02/2015 08:55:19 PM,11/02/2015 08:56:51 PM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Code 2 Transport,11/02/2015 09:03:07 PM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",153063420-E31 +160992682,54,16039395,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:06:49 PM,04/08/2016 05:07:29 PM,04/08/2016 05:07:42 PM,04/08/2016 05:07:53 PM,04/08/2016 05:16:50 PM,04/08/2016 05:31:32 PM,04/08/2016 05:43:27 PM,Code 2 Transport,04/08/2016 06:17:19 PM,500 Block of 20TH AVE,San Francisco,94121,B07,14,7165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7774741918641, -122.479242659231)",160992682-54 +160981268,AM08,16038852,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:07:17 AM,04/07/2016 10:08:16 AM,04/07/2016 10:08:52 AM,04/07/2016 10:09:53 AM,04/07/2016 10:30:39 AM,04/07/2016 10:30:40 AM,04/07/2016 10:43:57 AM,Code 2 Transport,04/07/2016 11:14:02 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160981268-AM08 +160973377,57,16038580,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:49:52 PM,04/06/2016 05:49:52 PM,04/06/2016 05:54:48 PM,04/06/2016 05:54:56 PM,04/06/2016 06:05:27 PM,04/06/2016 06:21:34 PM,04/06/2016 06:31:13 PM,Code 2 Transport,04/06/2016 06:47:32 PM,MASONIC AV/GEARY BL,San Francisco,94118,B05,10,4411,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",160973377-57 +141331231,E36,14045266,Alarms,05/13/2014,05/13/2014,05/13/2014 11:05:03 AM,05/13/2014 11:06:16 AM,05/13/2014 11:07:35 AM,05/13/2014 11:08:08 AM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Fire,05/13/2014 11:48:28 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",141331231-E36 +142420484,AM20,14084125,Medical Incident,08/30/2014,08/29/2014,08/30/2014 04:17:15 AM,08/30/2014 04:17:22 AM,08/30/2014 04:18:16 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 04:19:14 AM,200 Block of MAIN ST,San Francisco,94105,B03,35,2117,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.78995234675, -122.392682318412)",142420484-AM20 +142700503,E13,14094569,Medical Incident,09/27/2014,09/26/2014,09/27/2014 03:09:46 AM,09/27/2014 03:09:46 AM,09/27/2014 03:26:29 AM,09/27/2014 03:28:18 AM,09/27/2014 03:32:03 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,No Merit,09/27/2014 03:36:52 AM,MONTGOMERY ST/BROADWAY,San Francisco,94133,B01,13,1231,2,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.7982229704871, -122.403863019987)",142700503-E13 +150112910,B01,15004478,Alarms,01/11/2015,01/11/2015,01/11/2015 06:45:21 PM,01/11/2015 06:46:23 PM,01/11/2015 06:46:30 PM,01/11/2015 06:47:49 PM,01/11/2015 06:48:59 PM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Fire,01/11/2015 06:53:04 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Alarm,1,CHIEF,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",150112910-B01 +143371782,87,14119548,Medical Incident,12/03/2014,12/03/2014,12/03/2014 11:54:21 AM,12/03/2014 11:55:35 AM,12/03/2014 11:55:45 AM,12/03/2014 11:56:31 AM,12/03/2014 12:01:41 PM,12/03/2014 12:22:01 PM,12/03/2014 12:26:50 PM,Code 2 Transport,12/03/2014 01:04:02 PM,3500 Block of MISSION ST,San Francisco,94110,B06,32,5626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7393668849403, -122.423797447335)",143371782-87 +152242704,E34,15085448,Traffic Collision,08/12/2015,08/12/2015,08/12/2015 04:47:03 PM,08/12/2015 04:47:35 PM,08/12/2015 04:48:20 PM,08/12/2015 04:49:41 PM,08/12/2015 04:55:46 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Code 2 Transport,08/12/2015 05:09:41 PM,LA PLAYA/FULTON ST,San Francisco,94121,B07,34,7311,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7713960328361, -122.509894748816)",152242704-E34 +141800459,E07,14062096,Medical Incident,06/29/2014,06/28/2014,06/29/2014 02:42:02 AM,06/29/2014 02:43:30 AM,06/29/2014 02:44:54 AM,06/29/2014 02:47:10 AM,06/29/2014 02:50:03 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Code 2 Transport,06/29/2014 02:55:30 AM,12TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7700517185016, -122.413046080447)",141800459-E07 +151502733,KM06,15057179,Medical Incident,05/30/2015,05/30/2015,05/30/2015 05:47:57 PM,05/30/2015 05:49:25 PM,05/30/2015 05:50:13 PM,05/30/2015 05:51:21 PM,05/30/2015 05:55:44 PM,05/30/2015 06:26:17 PM,05/30/2015 06:39:37 PM,Code 2 Transport,05/30/2015 07:07:22 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",151502733-KM06 +150923654,T15,15035168,Elevator / Escalator Rescue,04/02/2015,04/02/2015,04/02/2015 09:48:27 PM,04/02/2015 09:50:05 PM,04/02/2015 09:50:11 PM,04/02/2015 09:51:54 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Cancelled,04/02/2015 09:53:39 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,3,3,3,false,Alarm,1,TRUCK,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",150923654-T15 +160940066,79,16037098,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:16:54 AM,04/03/2016 12:19:02 AM,04/03/2016 12:19:20 AM,04/03/2016 12:19:26 AM,04/03/2016 12:22:52 AM,04/03/2016 12:32:10 AM,04/03/2016 12:55:15 AM,Code 2 Transport,04/03/2016 01:18:13 AM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160940066-79 +151931696,E08,15073633,Medical Incident,07/12/2015,07/12/2015,07/12/2015 01:09:02 PM,07/12/2015 01:09:02 PM,07/12/2015 01:09:20 PM,07/12/2015 01:10:26 PM,07/12/2015 01:19:43 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/12/2015 01:23:15 PM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",151931696-E08 +141290005,E12,14043723,Medical Incident,05/09/2014,05/08/2014,05/09/2014 12:04:01 AM,05/09/2014 12:04:01 AM,05/09/2014 12:04:21 AM,05/09/2014 12:06:48 AM,05/09/2014 12:09:11 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,No Merit,05/09/2014 12:12:26 AM,STANYAN ST/HAIGHT ST,San Francisco,94117,B05,12,4553,A,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",141290005-E12 +160983471,60,16039088,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:52:44 PM,04/07/2016 07:53:39 PM,04/07/2016 07:53:50 PM,04/07/2016 07:53:58 PM,04/07/2016 07:58:41 PM,04/07/2016 08:12:56 PM,04/07/2016 08:29:16 PM,Code 2 Transport,04/07/2016 09:12:57 PM,300 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7852582857699, -122.396251395987)",160983471-60 +141800313,B04,14062069,Alarms,06/29/2014,06/28/2014,06/29/2014 01:44:39 AM,06/29/2014 01:46:30 AM,06/29/2014 01:46:58 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Other,06/29/2014 01:47:51 AM,400 Block of DUBOCE AVE,San Francisco,94117,B02,6,3525,3,3,3,false,Alarm,1,CHIEF,2,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",141800313-B04 +152812696,67,15107924,Medical Incident,10/08/2015,10/08/2015,10/08/2015 04:35:06 PM,10/08/2015 04:38:00 PM,10/08/2015 04:39:24 PM,10/08/2015 04:39:48 PM,10/08/2015 04:54:47 PM,10/08/2015 04:58:08 PM,10/08/2015 05:06:23 PM,Code 2 Transport,10/08/2015 05:34:20 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",152812696-67 +142640324,88,14092240,Medical Incident,09/21/2014,09/20/2014,09/21/2014 01:47:24 AM,09/21/2014 01:50:04 AM,09/21/2014 01:50:35 AM,09/21/2014 01:50:46 AM,09/21/2014 01:52:48 AM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Gone on Arrival,09/21/2014 01:56:58 AM,ISIS ST/12TH ST,San Francisco,94103,B02,36,5121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7706103591673, -122.414344257229)",142640324-88 +161001404,AM02,16039737,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:50:15 AM,04/09/2016 11:52:27 AM,04/09/2016 11:54:35 AM,04/09/2016 11:55:30 AM,04/09/2016 12:03:43 PM,04/09/2016 12:14:02 PM,04/09/2016 12:39:32 PM,Code 2 Transport,04/09/2016 01:06:18 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161001404-AM02 +161001481,74,16039744,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:15:27 PM,04/09/2016 12:15:27 PM,04/09/2016 12:16:09 PM,04/09/2016 12:16:32 PM,04/09/2016 12:35:38 PM,04/09/2016 12:50:00 PM,04/09/2016 01:11:34 PM,Code 2 Transport,04/09/2016 01:34:29 PM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",161001481-74 +152602602,RS1,15099448,Medical Incident,09/17/2015,09/17/2015,09/17/2015 03:47:53 PM,09/17/2015 03:49:10 PM,09/17/2015 03:49:37 PM,09/17/2015 03:50:50 PM,09/17/2015 03:53:26 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Code 2 Transport,09/17/2015 03:56:47 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",152602602-RS1 +151283893,E01,15048770,Medical Incident,05/08/2015,05/08/2015,05/08/2015 11:05:08 PM,05/08/2015 11:07:06 PM,05/08/2015 11:07:16 PM,05/08/2015 11:08:28 PM,05/08/2015 11:12:07 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Code 3 Transport,05/08/2015 11:12:17 PM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",151283893-E01 +143460277,AM24,14123174,Medical Incident,12/12/2014,12/11/2014,12/12/2014 02:57:27 AM,12/12/2014 02:59:00 AM,12/12/2014 02:59:44 AM,12/12/2014 03:00:27 AM,12/12/2014 03:04:16 AM,12/12/2014 03:15:54 AM,12/12/2014 03:31:25 AM,Code 2 Transport,12/12/2014 04:06:14 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7786852295711, -122.405938165868)",143460277-AM24 +143140188,E03,14111089,Medical Incident,11/10/2014,11/09/2014,11/10/2014 02:09:37 AM,11/10/2014 02:11:01 AM,11/10/2014 02:11:09 AM,11/10/2014 02:12:53 AM,11/10/2014 02:15:14 AM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Code 2 Transport,11/10/2014 02:39:49 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7823453363836, -122.417150885287)",143140188-E03 +141401405,KM15,14047974,Medical Incident,05/20/2014,05/20/2014,05/20/2014 11:46:03 AM,05/20/2014 11:47:33 AM,05/20/2014 11:48:20 AM,05/20/2014 11:49:25 AM,05/20/2014 12:03:47 PM,05/20/2014 12:15:59 PM,05/20/2014 12:28:49 PM,Code 3 Transport,05/20/2014 01:01:54 PM,600 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7798433146326, -122.510504603354)",141401405-KM15 +143362367,T14,14119162,Citizen Assist / Service Call,12/02/2014,12/02/2014,12/02/2014 04:30:59 PM,12/02/2014 04:33:15 PM,12/02/2014 04:33:44 PM,12/02/2014 04:35:05 PM,12/02/2014 04:38:58 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,Fire,12/02/2014 04:47:48 PM,800 Block of 32ND AVE,San Francisco,94121,B07,14,7242,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.773157559072, -122.491824979567)",143362367-T14 +160983359,AM08,16039080,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:18:33 PM,04/07/2016 07:20:06 PM,04/07/2016 07:20:27 PM,04/07/2016 07:21:00 PM,04/07/2016 07:26:59 PM,04/07/2016 07:47:38 PM,04/07/2016 08:13:54 PM,Code 2 Transport,04/07/2016 08:38:40 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160983359-AM08 +141240035,55,14041897,Medical Incident,05/04/2014,05/03/2014,05/04/2014 02:26:54 AM,05/04/2014 02:29:15 AM,05/04/2014 02:30:12 AM,05/04/2014 02:30:30 AM,05/04/2014 02:39:11 AM,05/04/2014 02:46:53 AM,05/04/2014 02:58:41 AM,Code 2 Transport,05/04/2014 03:27:04 AM,MASON ST/ELLIS ST,SAN FRANCISCO,94102,B03,1,1366,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",141240035-55 +150453795,E07,15017695,Medical Incident,02/14/2015,02/14/2015,02/14/2015 11:01:51 PM,02/14/2015 11:01:51 PM,02/14/2015 11:02:14 PM,02/14/2015 11:03:42 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Code 2 Transport,02/14/2015 11:05:06 PM,19TH ST/MISSION ST,San Francisco,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7602353559327, -122.419206043807)",150453795-E07 +143513400,E03,14125518,Structure Fire,12/17/2014,12/17/2014,12/17/2014 07:21:44 PM,12/17/2014 07:23:00 PM,12/17/2014 07:32:50 PM,12/17/2014 07:33:00 PM,12/17/2014 07:35:14 PM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Fire,12/17/2014 08:19:36 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,2338,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",143513400-E03 +151452188,E35,15055224,Citizen Assist / Service Call,05/25/2015,05/25/2015,05/25/2015 04:13:40 PM,05/25/2015 04:14:39 PM,05/25/2015 04:14:48 PM,05/25/2015 04:16:21 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,Fire,05/25/2015 04:30:34 PM,500 Block of BEALE ST,San Francisco,94107,B03,8,2134,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7857367878809, -122.389124364412)",151452188-E35 +160923842,53,16036641,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:44:22 PM,04/01/2016 10:45:45 PM,04/01/2016 10:45:58 PM,04/01/2016 10:46:09 PM,04/01/2016 11:02:00 PM,04/01/2016 11:16:51 PM,04/01/2016 11:28:00 PM,Code 2 Transport,04/02/2016 12:08:20 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160923842-53 +151512980,E19,15057600,Medical Incident,05/31/2015,05/31/2015,05/31/2015 07:58:50 PM,05/31/2015 07:59:44 PM,05/31/2015 07:59:56 PM,05/31/2015 08:00:58 PM,05/31/2015 08:04:15 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Other,05/31/2015 08:21:50 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",151512980-E19 +152274241,75,15086762,Medical Incident,08/15/2015,08/15/2015,08/15/2015 10:59:38 PM,08/15/2015 11:01:03 PM,08/15/2015 11:02:06 PM,08/15/2015 11:02:29 PM,08/15/2015 11:02:29 PM,08/15/2015 11:13:53 PM,08/15/2015 11:29:43 PM,Code 2 Transport,08/15/2015 11:41:45 PM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",152274241-75 +160943727,53,16037460,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:15:12 PM,04/03/2016 11:18:05 PM,04/03/2016 11:18:33 PM,04/03/2016 11:18:45 PM,04/03/2016 11:35:10 PM,04/03/2016 11:46:08 PM,04/04/2016 12:11:46 AM,Code 2 Transport,04/04/2016 12:47:29 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160943727-53 +160930619,AM24,16036730,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:44:15 AM,04/02/2016 06:44:15 AM,04/02/2016 06:44:57 AM,04/02/2016 06:46:30 AM,04/02/2016 06:59:39 AM,04/02/2016 07:02:04 AM,04/02/2016 07:14:38 AM,Code 2 Transport,04/02/2016 07:44:52 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160930619-AM24 +141331914,88,14045345,Medical Incident,05/13/2014,05/13/2014,05/13/2014 02:03:53 PM,05/13/2014 02:06:59 PM,05/13/2014 02:15:06 PM,05/13/2014 02:15:06 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,No Merit,05/13/2014 02:18:15 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7769455318934, -122.416807079177)",141331914-88 +141030145,82,14034747,Medical Incident,04/13/2014,04/13/2014,04/13/2014 10:42:27 AM,04/13/2014 10:42:49 AM,04/13/2014 10:43:02 AM,04/13/2014 10:43:08 AM,04/13/2014 10:48:39 AM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Patient Declined Transport,04/13/2014 11:06:50 AM,2100 Block of 22ND ST,SAN FRANCISCO,94107,B10,37,2546,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7571494114577, -122.402322428099)",141030145-82 +150261349,61,15009972,Traffic Collision,01/26/2015,01/26/2015,01/26/2015 10:45:47 AM,01/26/2015 10:45:47 AM,01/26/2015 10:47:20 AM,01/26/2015 10:47:31 AM,01/26/2015 10:52:02 AM,01/26/2015 11:10:17 AM,01/26/2015 11:31:20 AM,Code 2 Transport,01/26/2015 11:46:29 AM,29TH ST/SAN JOSE AV,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7439422420021, -122.422669446432)",150261349-61 +151191642,E10,15044983,Gas Leak (Natural and LP Gases),04/29/2015,04/29/2015,04/29/2015 11:51:14 AM,04/29/2015 11:52:12 AM,04/29/2015 11:52:33 AM,04/29/2015 11:53:00 AM,04/29/2015 11:57:34 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/29/2015 12:39:39 PM,MASONIC AV/HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",151191642-E10 +151341051,E29,15050792,Medical Incident,05/14/2015,05/14/2015,05/14/2015 09:31:53 AM,05/14/2015 09:32:36 AM,05/14/2015 09:33:27 AM,05/14/2015 09:34:39 AM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,Code 2 Transport,05/14/2015 09:39:31 AM,KEARNY ST/CLAY ST,San Francisco,94111,B01,13,1244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Chinatown,"(37.7944530044512, -122.404796473576)",151341051-E29 +150222408,E01,15008636,Medical Incident,01/22/2015,01/22/2015,01/22/2015 04:11:15 PM,01/22/2015 04:11:26 PM,01/22/2015 04:12:59 PM,01/22/2015 04:14:41 PM,01/22/2015 04:16:59 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Code 2 Transport,01/22/2015 04:29:57 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",150222408-E01 +160960188,KM07,16037861,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:47:14 AM,04/05/2016 01:49:07 AM,04/05/2016 01:49:21 AM,04/05/2016 01:50:35 AM,04/05/2016 01:53:44 AM,04/05/2016 02:22:16 AM,04/05/2016 02:27:54 AM,Code 2 Transport,04/05/2016 02:56:51 AM,0 Block of BLK GRANT AV,San Francisco,94108,B01,1,1321,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.787202625127, -122.404858516174)",160960188-KM07 +161003248,AM16,16039949,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:40:08 PM,04/09/2016 09:43:05 PM,04/09/2016 09:43:41 PM,04/09/2016 09:44:50 PM,04/09/2016 09:47:24 PM,04/09/2016 10:18:34 PM,04/09/2016 10:27:52 PM,Code 2 Transport,04/09/2016 10:55:50 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",161003248-AM16 +160990503,AM04,16039199,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:44:36 AM,04/08/2016 06:46:01 AM,04/08/2016 06:46:18 AM,04/08/2016 06:47:12 AM,04/08/2016 06:54:10 AM,04/08/2016 07:17:11 AM,04/08/2016 07:46:13 AM,Code 2 Transport,04/08/2016 08:12:32 AM,ARGUELLO BL/JACKSON ST,San Francisco,94118,B07,10,4443,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7893009490806, -122.459452536919)",160990503-AM04 +143350515,B10,14118605,Outside Fire,12/01/2014,11/30/2014,12/01/2014 07:09:16 AM,12/01/2014 07:10:47 AM,12/01/2014 07:10:55 AM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,Fire,12/01/2014 07:11:55 AM,PENNSYLVANIA AV/CESAR CHAVEZ ST,San Francisco,94124,B10,25,2635,3,3,3,false,Fire,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7500215081488, -122.392381993965)",143350515-B10 +152573911,E17,15098475,Medical Incident,09/14/2015,09/14/2015,09/14/2015 11:07:09 PM,09/14/2015 11:08:47 PM,09/14/2015 11:09:39 PM,09/14/2015 11:11:46 PM,09/14/2015 11:18:30 PM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 2 Transport,09/14/2015 11:42:26 PM,0 Block of REUEL CT,San Francisco,94124,B10,25,652,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",152573911-E17 +153402417,75,15130905,Medical Incident,12/06/2015,12/06/2015,12/06/2015 04:29:56 PM,12/06/2015 04:31:19 PM,12/06/2015 04:31:38 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,No Merit,12/06/2015 04:32:00 PM,BAYSHORE BL/PAUL AV,San Francisco,94124,B10,42,6324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7236162096696, -122.40078474994)",153402417-75 +150152031,T16,15005976,Alarms,01/15/2015,01/15/2015,01/15/2015 02:08:48 PM,01/15/2015 02:10:22 PM,01/15/2015 02:10:29 PM,01/15/2015 02:12:20 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Fire,01/15/2015 02:14:56 PM,1400 Block of VALLEJO ST,San Francisco,94109,B04,41,3126,3,3,3,false,Alarm,1,TRUCK,3,4,3,Russian Hill,"(37.7970585479742, -122.421149855192)",150152031-T16 +141343976,RC1,14045939,Medical Incident,05/14/2014,05/14/2014,05/14/2014 09:53:58 PM,05/14/2014 09:55:10 PM,05/14/2014 09:57:14 PM,05/14/2014 09:59:25 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Code 2 Transport,05/14/2014 10:02:09 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7812234542945, -122.408928070797)",141343976-RC1 +151073207,56,15040631,Medical Incident,04/17/2015,04/17/2015,04/17/2015 06:52:29 PM,04/17/2015 06:52:29 PM,04/17/2015 06:54:10 PM,04/17/2015 06:54:48 PM,04/17/2015 06:59:58 PM,04/17/2015 07:15:39 PM,04/17/2015 07:38:42 PM,Code 2 Transport,04/17/2015 08:08:29 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",151073207-56 +152020316,E14,15076839,Alarms,07/21/2015,07/20/2015,07/21/2015 03:31:00 AM,07/21/2015 03:32:59 AM,07/21/2015 03:33:03 AM,07/21/2015 03:34:49 AM,07/21/2015 03:37:37 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/21/2015 03:43:04 AM,300 Block of 31ST AVE,San Francisco,94121,B07,14,7237,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7826555337918, -122.491436722689)",152020316-E14 +143471679,E28,14123782,Medical Incident,12/13/2014,12/13/2014,12/13/2014 12:31:09 PM,12/13/2014 12:31:18 PM,12/13/2014 12:32:10 PM,12/13/2014 12:32:54 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Code 2 Transport,12/13/2014 12:34:18 PM,200 Block of NORTH POINT ST,San Francisco,94133,B01,28,1262,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8068062377674, -122.411308750281)",143471679-E28 +160942274,85,16037307,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:16:25 PM,04/03/2016 03:18:07 PM,04/03/2016 03:18:24 PM,04/03/2016 03:18:35 PM,04/03/2016 03:23:52 PM,04/03/2016 03:40:20 PM,04/03/2016 04:04:55 PM,Code 2 Transport,04/03/2016 04:37:27 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160942274-85 +142003084,E07,14069366,Medical Incident,07/19/2014,07/19/2014,07/19/2014 08:38:27 PM,07/19/2014 08:39:13 PM,07/19/2014 08:40:07 PM,07/19/2014 08:41:10 PM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Code 2 Transport,07/19/2014 08:51:45 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7594297986956, -122.419198310755)",142003084-E07 +150323393,RC1,15012529,Medical Incident,02/01/2015,02/01/2015,02/01/2015 09:13:35 PM,02/01/2015 09:14:26 PM,02/01/2015 09:17:22 PM,02/01/2015 09:17:45 PM,02/01/2015 09:20:46 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 09:40:59 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",150323393-RC1 +153191737,T03,15122658,Structure Fire,11/15/2015,11/15/2015,11/15/2015 12:59:58 PM,11/15/2015 12:59:58 PM,11/15/2015 01:00:20 PM,11/15/2015 01:01:22 PM,11/15/2015 01:03:29 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Fire,11/15/2015 01:03:52 PM,TURK ST/HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",153191737-T03 +142812678,82,14098949,Medical Incident,10/08/2014,10/08/2014,10/08/2014 05:21:58 PM,10/08/2014 05:23:12 PM,10/08/2014 05:25:57 PM,10/08/2014 05:25:57 PM,10/08/2014 05:47:27 PM,10/08/2014 05:47:34 PM,10/08/2014 06:20:43 PM,Code 2 Transport,10/08/2014 06:31:37 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",142812678-82 +151843871,T01,15070409,Structure Fire,07/03/2015,07/03/2015,07/03/2015 10:28:19 PM,07/03/2015 10:28:57 PM,07/03/2015 10:29:04 PM,07/03/2015 10:30:36 PM,07/03/2015 10:37:57 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Fire,07/03/2015 10:38:03 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,10,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",151843871-T01 +150580015,T18,15021995,Citizen Assist / Service Call,02/27/2015,02/26/2015,02/27/2015 12:04:00 AM,02/27/2015 12:07:38 AM,02/27/2015 12:08:03 AM,02/27/2015 12:09:31 AM,02/27/2015 12:10:18 AM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Fire,02/27/2015 12:15:29 AM,1900 Block of 33RD AVE,San Francisco,94116,B08,18,7544,3,3,3,false,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7507821985032, -122.491209316977)",150580015-T18 +152591358,E09,15098983,Traffic Collision,09/16/2015,09/16/2015,09/16/2015 11:02:18 AM,09/16/2015 11:02:18 AM,09/16/2015 11:03:20 AM,09/16/2015 11:04:54 AM,09/16/2015 11:07:31 AM,04/25/2016 01:08:19 PM,04/25/2016 01:08:19 PM,Code 3 Transport,09/16/2015 11:36:46 AM,CESAR CHAVEZ ST/TENNESSEE ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7502059759559, -122.388507729538)",152591358-E09 +160972891,76,16038519,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:14:23 PM,04/06/2016 04:15:11 PM,04/06/2016 04:15:39 PM,04/06/2016 04:15:47 PM,04/06/2016 04:17:31 PM,04/06/2016 04:28:32 PM,04/06/2016 04:38:33 PM,Code 2 Transport,04/06/2016 05:00:35 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160972891-76 +150141678,E36,15005533,Medical Incident,01/14/2015,01/14/2015,01/14/2015 12:29:51 PM,01/14/2015 12:31:22 PM,01/14/2015 12:31:28 PM,01/14/2015 12:31:37 PM,01/14/2015 12:34:00 PM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Patient Declined Transport,01/14/2015 12:43:09 PM,200 Block of 7TH ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7774003641379, -122.408565501698)",150141678-E36 +153353228,E09,15128950,Medical Incident,12/01/2015,12/01/2015,12/01/2015 06:28:36 PM,12/01/2015 06:28:36 PM,12/01/2015 06:28:53 PM,12/01/2015 06:30:17 PM,12/01/2015 06:32:57 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,Code 2 Transport,12/01/2015 06:46:51 PM,1200 Block of UTAH ST,San Francisco,94110,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Mission,"(37.7536963307706, -122.405461613953)",153353228-E09 +151732201,55,15066099,Medical Incident,06/22/2015,06/22/2015,06/22/2015 04:07:12 PM,06/22/2015 04:07:12 PM,06/22/2015 04:07:48 PM,06/22/2015 04:08:23 PM,06/22/2015 04:19:09 PM,06/22/2015 04:27:26 PM,06/22/2015 05:06:58 PM,Code 2 Transport,06/22/2015 05:28:24 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",151732201-55 +143142794,86,14111341,Medical Incident,11/10/2014,11/10/2014,11/10/2014 06:36:54 PM,11/10/2014 06:36:54 PM,11/10/2014 06:37:07 PM,11/10/2014 06:37:41 PM,11/10/2014 07:01:20 PM,11/10/2014 07:15:49 PM,11/10/2014 07:40:52 PM,Code 2 Transport,11/10/2014 08:05:55 PM,300 Block of 4TH ST,San Francisco,94107,B03,8,2216,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809657852438, -122.399932025045)",143142794-86 +161003579,89,16039984,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:00:32 PM,04/09/2016 11:05:17 PM,04/09/2016 11:07:09 PM,04/09/2016 11:07:32 PM,04/09/2016 11:19:38 PM,04/10/2016 12:02:34 AM,04/10/2016 12:02:37 AM,Code 2 Transport,04/10/2016 12:47:55 AM,1200 Block of LANE ST,San Francisco,94124,B10,17,6518,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7344575097582, -122.387566523779)",161003579-89 +153000783,E42,15115047,Medical Incident,10/27/2015,10/27/2015,10/27/2015 08:18:31 AM,10/27/2015 08:19:00 AM,10/27/2015 08:20:04 AM,10/27/2015 08:21:33 AM,10/27/2015 08:23:15 AM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Code 2 Transport,10/27/2015 08:34:44 AM,400 Block of ELMIRA ST,San Francisco,94124,B10,42,6361,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7314726661192, -122.403216466778)",153000783-E42 +143260593,KM07,14115362,Medical Incident,11/22/2014,11/21/2014,11/22/2014 05:11:52 AM,11/22/2014 05:15:06 AM,11/22/2014 05:15:49 AM,11/22/2014 05:16:14 AM,11/22/2014 05:19:41 AM,11/22/2014 05:25:24 AM,11/22/2014 05:46:45 AM,Code 2 Transport,11/22/2014 06:36:45 AM,800 Block of ATHENS ST,San Francisco,94112,B09,43,6173,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7150593394985, -122.433325173779)",143260593-KM07 +160970012,76,16038238,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:03:00 AM,04/06/2016 12:04:36 AM,04/06/2016 12:04:55 AM,04/06/2016 12:05:01 AM,04/06/2016 12:08:41 AM,04/06/2016 12:23:57 AM,04/06/2016 12:31:05 AM,Code 2 Transport,04/06/2016 01:14:51 AM,3RD ST/MARKET ST,San Francisco,94103,B03,1,2211,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",160970012-76 +142092335,E32,14072523,Medical Incident,07/28/2014,07/28/2014,07/28/2014 04:55:40 PM,07/28/2014 04:59:00 PM,07/28/2014 05:01:26 PM,07/28/2014 05:03:47 PM,07/28/2014 05:06:27 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Other,07/28/2014 05:34:07 PM,3400 Block of MISSION ST,San Francisco,94110,B06,32,5626,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7420041169835, -122.422286651689)",142092335-E32 +150210101,64,15008060,Medical Incident,01/21/2015,01/20/2015,01/21/2015 12:56:28 AM,01/21/2015 12:56:57 AM,01/21/2015 12:57:38 AM,01/21/2015 12:57:58 AM,01/21/2015 01:06:19 AM,01/21/2015 01:19:50 AM,01/21/2015 01:33:07 AM,Code 2 Transport,01/21/2015 02:11:32 AM,1100 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7875096258655, -122.420136159979)",150210101-64 +142920637,D3,14102894,Structure Fire,10/19/2014,10/18/2014,10/19/2014 04:27:59 AM,10/19/2014 04:33:47 AM,10/19/2014 04:34:37 AM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Fire,10/19/2014 06:33:54 AM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,3,3,3,false,Alarm,1,CHIEF,8,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",142920637-D3 +141842085,E05,14063715,Medical Incident,07/03/2014,07/03/2014,07/03/2014 03:34:54 PM,07/03/2014 03:36:02 PM,07/03/2014 03:36:36 PM,07/03/2014 03:37:31 PM,07/03/2014 03:41:38 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/03/2014 03:54:33 PM,800 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7858627664608, -122.418110537872)",141842085-E05 +151303297,89,15049503,Medical Incident,05/10/2015,05/10/2015,05/10/2015 11:04:18 PM,05/10/2015 11:06:40 PM,05/10/2015 11:07:37 PM,05/10/2015 11:07:42 PM,05/10/2015 11:16:00 PM,05/10/2015 11:37:24 PM,05/10/2015 11:51:16 PM,Code 2 Transport,05/11/2015 12:29:09 AM,0 Block of 5TH ST,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7829835080746, -122.406698577014)",151303297-89 +141363945,E10,14046745,Medical Incident,05/16/2014,05/16/2014,05/16/2014 11:46:38 PM,05/16/2014 11:47:31 PM,05/16/2014 11:48:18 PM,05/16/2014 11:49:38 PM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,Cancelled,05/16/2014 11:50:58 PM,3700 Block of CALIFORNIA ST,San Francisco,94118,B07,10,449,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",141363945-E10 +153152662,E36,15121128,,11/11/2015,11/11/2015,11/11/2015 04:55:00 PM,11/11/2015 04:57:00 PM,11/11/2015 04:57:00 PM,11/11/2015 04:59:00 PM,11/11/2015 05:01:00 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,SFPD,11/11/2015 05:03:00 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",153152662-E36 +152830203,E22,15108491,Medical Incident,10/10/2015,10/09/2015,10/10/2015 01:04:13 AM,10/10/2015 01:05:37 AM,10/10/2015 01:06:15 AM,10/10/2015 01:07:49 AM,10/10/2015 01:10:08 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Code 2 Transport,10/10/2015 01:17:02 AM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",152830203-E22 +143330387,E43,14117879,Other,11/29/2014,11/28/2014,11/29/2014 02:46:36 AM,11/29/2014 02:46:55 AM,11/29/2014 02:47:27 AM,11/29/2014 02:49:41 AM,11/29/2014 02:51:34 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 03:03:04 AM,800 Block of PRAGUE ST,San Francisco,94112,B09,43,622,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7104309664976, -122.434220514636)",143330387-E43 +153321745,E42,15127697,Traffic Collision,11/28/2015,11/28/2015,11/28/2015 01:24:08 PM,11/28/2015 01:25:00 PM,11/28/2015 01:25:49 PM,11/28/2015 01:29:46 PM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,Cancelled,11/28/2015 01:32:36 PM,100 Block of AVENUE C,San Francisco,94130,B10,42,6373,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",153321745-E42 +151790874,RC3,15068135,Medical Incident,06/28/2015,06/27/2015,06/28/2015 06:58:26 AM,06/28/2015 07:00:16 AM,06/28/2015 07:00:52 AM,06/28/2015 07:02:39 AM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,No Merit,06/28/2015 07:06:52 AM,LA SALLE AV/INGALLS ST,San Francisco,94124,B10,17,6637,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7305817194451, -122.381439390971)",151790874-RC3 +150390688,KM03,15015077,Medical Incident,02/08/2015,02/07/2015,02/08/2015 05:09:08 AM,02/08/2015 05:11:56 AM,02/08/2015 05:12:04 AM,02/08/2015 05:12:25 AM,02/08/2015 05:25:47 AM,02/08/2015 05:47:09 AM,04/25/2016 01:12:22 PM,Code 2 Transport,02/08/2015 06:48:25 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",150390688-KM03 +160940251,53,16037122,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:25:41 AM,04/03/2016 01:25:41 AM,04/03/2016 01:38:20 AM,04/03/2016 01:38:36 AM,04/03/2016 02:00:28 AM,04/03/2016 02:01:12 AM,04/03/2016 02:23:39 AM,Code 2 Transport,04/03/2016 02:58:06 AM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160940251-53 +142043497,E07,14070756,Medical Incident,07/23/2014,07/23/2014,07/23/2014 08:03:48 PM,07/23/2014 08:03:48 PM,07/23/2014 08:04:25 PM,07/23/2014 08:06:44 PM,07/23/2014 08:08:31 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Code 2 Transport,07/23/2014 08:14:08 PM,MISSION ST/18TH ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",142043497-E07 +160930284,79,16036696,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:57:17 AM,04/02/2016 01:58:27 AM,04/02/2016 01:58:57 AM,04/02/2016 01:59:09 AM,04/02/2016 02:03:15 AM,04/02/2016 02:23:35 AM,04/02/2016 02:41:05 AM,Code 3 Transport,04/02/2016 03:15:15 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160930284-79 +141600325,68,14055050,Medical Incident,06/09/2014,06/08/2014,06/09/2014 04:04:27 AM,06/09/2014 04:06:08 AM,06/09/2014 04:07:29 AM,06/09/2014 04:13:09 AM,06/09/2014 04:26:20 AM,06/09/2014 04:48:46 AM,06/09/2014 05:10:28 AM,Code 2 Transport,06/09/2014 05:13:51 AM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",141600325-68 +152200564,KM07,15083688,Medical Incident,08/08/2015,08/07/2015,08/08/2015 04:23:30 AM,08/08/2015 04:25:38 AM,08/08/2015 04:26:22 AM,08/08/2015 04:26:44 AM,08/08/2015 04:40:21 AM,08/08/2015 05:15:06 AM,08/08/2015 05:22:59 AM,Code 2 Transport,08/08/2015 06:30:15 AM,1700 Block of 15TH ST,San Francisco,94103,B02,6,5226,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7665569549171, -122.422667886722)",152200564-KM07 +161003591,86,16039986,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:08:57 PM,04/09/2016 11:09:38 PM,04/09/2016 11:29:03 PM,04/09/2016 11:29:16 PM,04/09/2016 11:30:15 PM,04/09/2016 11:45:19 PM,04/09/2016 11:59:06 PM,Code 2 Transport,04/10/2016 12:29:42 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7807920802753, -122.408385745499)",161003591-86 +142861845,E03,14100841,Medical Incident,10/13/2014,10/13/2014,10/13/2014 01:49:25 PM,10/13/2014 01:49:25 PM,10/13/2014 01:50:10 PM,10/13/2014 01:51:59 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/13/2014 01:55:03 PM,FERN ST/VAN NESS AV,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Nob Hill,"(37.7880011777275, -122.421954907158)",142861845-E03 +150812426,E12,15031103,Medical Incident,03/22/2015,03/22/2015,03/22/2015 04:38:45 PM,03/22/2015 04:41:53 PM,03/22/2015 04:42:53 PM,03/22/2015 04:43:55 PM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,Code 2 Transport,03/22/2015 04:46:35 PM,19TH AV/IRVING ST,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",150812426-E12 +141040326,KM07,14035213,Medical Incident,04/14/2014,04/14/2014,04/14/2014 08:19:37 PM,04/14/2014 08:22:08 PM,04/14/2014 08:40:38 PM,04/14/2014 08:41:02 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Unable to Locate,04/25/2016 01:17:52 PM,1600 Block of THE EMBARCADERONORTH ST,,94133,B01,28,941,1,1,2,false,Non Life-threatening,1,PRIVATE,4,1,3,North Beach,"(37.8084350175869, -122.410774214375)",141040326-KM07 +143140980,E41,14111176,Medical Incident,11/10/2014,11/10/2014,11/10/2014 09:36:19 AM,11/10/2014 09:38:38 AM,11/10/2014 09:39:26 AM,11/10/2014 09:42:40 AM,11/10/2014 09:46:30 AM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Code 2 Transport,11/10/2014 10:13:41 AM,1400 Block of PINE ST,San Francisco,94109,B04,3,3122,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",143140980-E41 +152092797,E01,15079737,Medical Incident,07/28/2015,07/28/2015,07/28/2015 05:19:08 PM,07/28/2015 05:20:41 PM,07/28/2015 05:21:40 PM,07/28/2015 05:23:08 PM,07/28/2015 05:31:39 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Code 2 Transport,07/28/2015 05:38:50 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",152092797-E01 +141220068,B02,14041222,Outside Fire,05/02/2014,05/01/2014,05/02/2014 07:15:48 AM,05/02/2014 07:18:25 AM,05/02/2014 07:18:44 AM,05/02/2014 07:22:13 AM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Fire,05/02/2014 07:28:45 AM,GAMBIER ST/BURROWS ST,SAN FRANCISCO,94134,B09,43,6151,3,3,3,true,Fire,1,CHIEF,3,9,9,Excelsior,"(37.7244542152122, -122.420861151748)",141220068-B02 +141732091,E12,14059728,Outside Fire,06/22/2014,06/22/2014,06/22/2014 03:53:30 PM,06/22/2014 03:54:31 PM,06/22/2014 03:54:42 PM,06/22/2014 03:56:18 PM,06/22/2014 03:58:57 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Fire,06/22/2014 04:03:47 PM,4400 Block of 17TH ST,San Francisco,94114,B05,12,5255,3,3,3,true,Fire,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7620264632456, -122.443782630259)",141732091-E12 +153330794,RC1,15127987,Medical Incident,11/29/2015,11/29/2015,11/29/2015 08:24:15 AM,11/29/2015 08:26:53 AM,11/29/2015 08:27:21 AM,11/29/2015 08:30:29 AM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Code 2 Transport,11/29/2015 08:34:18 AM,1200 Block of JONES ST,San Francisco,94109,B01,41,1465,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Nob Hill,"(37.7925546958216, -122.414405940495)",153330794-RC1 +143600348,66,14128664,Medical Incident,12/26/2014,12/25/2014,12/26/2014 04:47:22 AM,12/26/2014 04:48:55 AM,12/26/2014 04:49:27 AM,12/26/2014 04:50:42 AM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Code 2 Transport,12/26/2014 04:53:33 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",143600348-66 +152762237,B03,15105823,Structure Fire,10/03/2015,10/03/2015,10/03/2015 02:55:28 PM,10/03/2015 02:55:41 PM,10/03/2015 02:56:10 PM,10/03/2015 02:56:35 PM,10/03/2015 02:59:48 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Fire,10/03/2015 03:20:21 PM,200 Block of FREMONT ST,San Francisco,94105,B03,35,2137,3,3,3,false,Alarm,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7889437645084, -122.394688229661)",152762237-B03 +143220392,T01,14113893,Structure Fire,11/18/2014,11/17/2014,11/18/2014 05:46:24 AM,11/18/2014 05:46:24 AM,11/18/2014 05:46:34 AM,11/18/2014 05:48:00 AM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,Fire,11/18/2014 05:50:43 AM,3RD ST/HOWARD ST,San Francisco,94105,B03,1,2177,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",143220392-T01 +143460213,B03,14123163,Alarms,12/12/2014,12/11/2014,12/12/2014 02:06:13 AM,12/12/2014 02:06:43 AM,12/12/2014 02:07:24 AM,12/12/2014 02:09:19 AM,12/12/2014 02:12:27 AM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Fire,12/12/2014 02:13:41 AM,1600 Block of OWENS ST,San Francisco,94158,B03,29,2414,3,3,3,false,Alarm,1,CHIEF,2,3,6,Mission Bay,"(37.7680699628929, -122.394293450332)",143460213-B03 +150553681,71,15021246,Medical Incident,02/24/2015,02/24/2015,02/24/2015 09:15:57 PM,02/24/2015 09:18:09 PM,02/24/2015 09:18:37 PM,02/24/2015 09:19:03 PM,02/24/2015 09:29:52 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,No Merit,02/24/2015 09:33:41 PM,0 Block of FARVIEW CT,San Francisco,94131,B08,20,5362,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7555539157621, -122.45016894149)",150553681-71 +160983118,65,16039056,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:14:41 PM,04/07/2016 06:18:26 PM,04/07/2016 06:19:38 PM,04/07/2016 06:23:26 PM,04/07/2016 06:34:29 PM,04/07/2016 06:38:41 PM,04/07/2016 07:04:26 PM,Code 2 Transport,04/07/2016 07:25:27 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",160983118-65 +143450271,KM07,14122563,Medical Incident,12/11/2014,12/10/2014,12/11/2014 02:24:45 AM,12/11/2014 02:24:45 AM,12/11/2014 02:29:20 AM,12/11/2014 02:30:22 AM,12/11/2014 02:31:56 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Patient Declined Transport,12/11/2014 03:18:42 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",143450271-KM07 +160980504,63,16038783,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:08:23 AM,04/07/2016 05:09:11 AM,04/07/2016 05:10:25 AM,04/07/2016 05:10:34 AM,04/07/2016 05:17:09 AM,04/07/2016 05:27:12 AM,04/07/2016 05:37:01 AM,Code 2 Transport,04/07/2016 06:09:43 AM,1600 Block of STEINER ST,San Francisco,94115,B04,5,3622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7845570453149, -122.434577795822)",160980504-63 +160940587,72,16037150,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:18:48 AM,04/03/2016 04:19:59 AM,04/03/2016 04:20:59 AM,04/03/2016 04:21:15 AM,04/03/2016 04:26:20 AM,04/03/2016 04:57:37 AM,04/03/2016 05:29:18 AM,Code 2 Transport,04/03/2016 05:59:06 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7877468463797, -122.396934740624)",160940587-72 +152063865,57,15078691,Medical Incident,07/25/2015,07/25/2015,07/25/2015 11:16:15 PM,07/25/2015 11:18:54 PM,07/25/2015 11:19:50 PM,07/25/2015 11:20:27 PM,07/25/2015 11:24:55 PM,07/25/2015 11:46:06 PM,07/26/2015 12:05:00 AM,Code 2 Transport,07/26/2015 12:32:00 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",152063865-57 +142421719,RS1,14084230,Medical Incident,08/30/2014,08/30/2014,08/30/2014 01:31:21 PM,08/30/2014 01:33:16 PM,08/30/2014 01:33:41 PM,08/30/2014 01:35:07 PM,08/30/2014 01:37:28 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 01:38:32 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",142421719-RS1 +141652901,E06,14057029,Medical Incident,06/14/2014,06/14/2014,06/14/2014 07:07:53 PM,06/14/2014 07:11:38 PM,06/14/2014 07:12:27 PM,06/14/2014 07:13:50 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Code 2 Transport,06/14/2014 07:16:06 PM,900 Block of BUENAVISTAWEST AV,San Francisco,94117,B05,21,4353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7699941054658, -122.44324157754)",141652901-E06 +143642850,RS1,14130365,Medical Incident,12/30/2014,12/30/2014,12/30/2014 06:10:15 PM,12/30/2014 06:10:54 PM,12/30/2014 06:11:26 PM,12/30/2014 06:11:50 PM,12/30/2014 06:15:17 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 06:48:06 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",143642850-RS1 +151623499,E31,15062067,Structure Fire,06/11/2015,06/11/2015,06/11/2015 08:43:10 PM,06/11/2015 08:43:59 PM,06/11/2015 08:44:38 PM,06/11/2015 08:45:44 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/11/2015 08:49:58 PM,500 Block of 22ND AVE,San Francisco,94121,B07,14,7176,3,3,3,false,Alarm,1,ENGINE,7,7,1,Outer Richmond,"(37.7773769744836, -122.481382829615)",151623499-E31 +142212574,E01,14076785,Medical Incident,08/09/2014,08/09/2014,08/09/2014 04:48:43 PM,08/09/2014 04:48:55 PM,08/09/2014 04:51:12 PM,08/09/2014 04:51:12 PM,08/09/2014 04:56:13 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Patient Declined Transport,08/09/2014 05:14:47 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",142212574-E01 +141491956,E03,14051214,Medical Incident,05/29/2014,05/29/2014,05/29/2014 02:14:51 PM,05/29/2014 02:16:22 PM,05/29/2014 02:17:01 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Code 2 Transport,05/29/2014 02:17:50 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7824182864419, -122.403869611535)",141491956-E03 +141561659,88,14053684,Traffic Collision,06/05/2014,06/05/2014,06/05/2014 01:02:33 PM,06/05/2014 01:03:47 PM,06/05/2014 01:06:33 PM,06/05/2014 01:07:00 PM,06/05/2014 01:26:51 PM,06/05/2014 01:27:14 PM,06/05/2014 01:34:19 PM,Code 3 Transport,06/05/2014 02:17:35 PM,14TH ST/VALENCIA ST,San Francisco,94103,B02,36,5215,A,A,2,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7681396851482, -122.422199175206)",141561659-88 +150082476,70,15003210,Medical Incident,01/08/2015,01/08/2015,01/08/2015 03:56:59 PM,01/08/2015 04:00:56 PM,01/08/2015 04:03:18 PM,01/08/2015 04:05:28 PM,01/08/2015 04:34:05 PM,01/08/2015 04:52:17 PM,01/08/2015 04:55:00 PM,Code 2 Transport,01/08/2015 05:42:07 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",150082476-70 +161003315,79,16039955,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:58:37 PM,04/09/2016 10:00:36 PM,04/09/2016 10:01:04 PM,04/09/2016 10:01:21 PM,04/09/2016 10:05:27 PM,04/09/2016 10:13:51 PM,04/09/2016 10:33:23 PM,Code 2 Transport,04/09/2016 11:05:48 PM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",161003315-79 +150180827,64,15007023,Medical Incident,01/18/2015,01/17/2015,01/18/2015 07:55:54 AM,01/18/2015 07:56:21 AM,01/18/2015 07:57:27 AM,01/18/2015 07:57:38 AM,01/18/2015 08:08:42 AM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Patient Declined Transport,01/18/2015 08:45:00 AM,200 Block of MORSE ST,San Francisco,94112,B09,43,6222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7128440322007, -122.439693831099)",150180827-64 +141522840,B03,14052342,Fuel Spill,06/01/2014,06/01/2014,06/01/2014 08:38:58 PM,06/01/2014 08:42:01 PM,06/01/2014 08:43:21 PM,06/01/2014 08:45:11 PM,06/01/2014 08:50:56 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Fire,06/01/2014 09:00:37 PM,MISSION ST/14TH ST,San Francisco,94103,B02,36,5215,3,3,3,false,Alarm,1,CHIEF,3,2,9,Mission,"(37.7682736543413, -122.419981513232)",141522840-B03 +142771119,84,14097306,Medical Incident,10/04/2014,10/04/2014,10/04/2014 08:43:00 AM,10/04/2014 08:43:44 AM,10/04/2014 08:44:19 AM,10/04/2014 08:44:28 AM,10/04/2014 08:47:42 AM,10/04/2014 08:59:24 AM,10/04/2014 09:14:19 AM,Code 2 Transport,10/04/2014 09:57:25 AM,300 Block of 11TH ST,San Francisco,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7712855259531, -122.413204267102)",142771119-84 +141820628,E01,14062918,Medical Incident,07/01/2014,07/01/2014,07/01/2014 08:00:24 AM,07/01/2014 08:02:29 AM,07/01/2014 08:03:57 AM,07/01/2014 08:04:37 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Other,07/01/2014 08:04:38 AM,TOWNSEND ST/4TH ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7770893320016, -122.394981482757)",141820628-E01 +150752744,57,15028871,Medical Incident,03/16/2015,03/16/2015,03/16/2015 05:10:44 PM,03/16/2015 05:12:22 PM,03/16/2015 05:12:31 PM,03/16/2015 05:13:50 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Code 2 Transport,03/16/2015 05:17:56 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",150752744-57 +143332789,70,14118116,Medical Incident,11/29/2014,11/29/2014,11/29/2014 06:15:42 PM,11/29/2014 06:15:42 PM,11/29/2014 06:21:38 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,Code 2 Transport,11/29/2014 06:23:51 PM,11TH ST/HOWARD ST,San Francisco,94103,B02,36,5114,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7731005870473, -122.415561389884)",143332789-70 +150870510,E14,15033111,Medical Incident,03/28/2015,03/27/2015,03/28/2015 04:12:32 AM,03/28/2015 04:14:39 AM,03/28/2015 04:15:28 AM,03/28/2015 04:17:04 AM,03/28/2015 04:19:03 AM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Code 2 Transport,03/28/2015 04:30:21 AM,400 Block of 32ND AVE,San Francisco,94121,B07,14,7237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7807150242831, -122.492234634841)",150870510-E14 +150542179,64,15020802,Medical Incident,02/23/2015,02/23/2015,02/23/2015 02:29:06 PM,02/23/2015 02:30:51 PM,02/23/2015 02:32:21 PM,02/23/2015 02:32:30 PM,02/23/2015 02:36:48 PM,02/23/2015 03:17:15 PM,02/23/2015 03:51:40 PM,Code 2 Transport,02/23/2015 04:25:58 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",150542179-64 +160952272,82,16037661,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:44:26 PM,04/04/2016 02:45:05 PM,04/04/2016 02:45:33 PM,04/04/2016 02:45:46 PM,04/04/2016 02:48:16 PM,04/04/2016 03:07:38 PM,04/04/2016 03:20:40 PM,Code 2 Transport,04/04/2016 03:53:04 PM,900 Block of FILLMORE ST,San Francisco,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",160952272-82 +152260304,B06,15086009,Alarms,08/14/2015,08/13/2015,08/14/2015 02:29:53 AM,08/14/2015 02:34:09 AM,08/14/2015 02:34:16 AM,08/14/2015 02:36:24 AM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Fire,08/14/2015 02:42:10 AM,0 Block of WORTH ST,San Francisco,94114,B06,24,5463,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7547157749537, -122.439837135441)",152260304-B06 +150901093,E02,15034235,Administrative,03/31/2015,03/31/2015,03/31/2015 10:18:49 AM,03/31/2015 10:19:03 AM,03/31/2015 10:19:21 AM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Fire,03/31/2015 10:19:52 AM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",150901093-E02 +152812969,B02,15107955,Structure Fire,10/08/2015,10/08/2015,10/08/2015 05:38:07 PM,10/08/2015 05:38:52 PM,10/08/2015 05:39:20 PM,10/08/2015 05:40:09 PM,10/08/2015 05:43:37 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Fire,10/08/2015 05:51:07 PM,HARRISON ST/18TH ST,San Francisco,94110,B02,7,5245,3,3,3,false,Alarm,1,CHIEF,7,6,9,Mission,"(37.7622292148634, -122.412843801327)",152812969-B02 +160990236,65,16039173,Medical Incident,04/08/2016,04/07/2016,04/08/2016 02:13:27 AM,04/08/2016 02:21:26 AM,04/08/2016 02:24:49 AM,04/08/2016 02:24:54 AM,04/08/2016 02:30:33 AM,04/08/2016 02:36:18 AM,04/08/2016 02:43:35 AM,Code 2 Transport,04/08/2016 03:53:40 AM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160990236-65 +161001828,66,16039788,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:15:42 PM,04/09/2016 02:17:52 PM,04/09/2016 02:26:34 PM,04/09/2016 02:26:46 PM,04/09/2016 02:47:33 PM,04/09/2016 03:11:17 PM,04/09/2016 03:20:38 PM,Code 2 Transport,04/09/2016 03:42:16 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",161001828-66 +153253108,E06,15125237,Medical Incident,11/21/2015,11/21/2015,11/21/2015 06:32:33 PM,11/21/2015 06:32:51 PM,11/21/2015 06:38:50 PM,11/21/2015 06:38:50 PM,11/21/2015 06:38:50 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Medical Examiner,11/21/2015 07:12:10 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",153253108-E06 +142833309,85,14099813,Medical Incident,10/10/2014,10/10/2014,10/10/2014 09:05:51 PM,10/10/2014 09:06:56 PM,10/10/2014 09:07:42 PM,10/10/2014 09:07:52 PM,10/10/2014 09:19:36 PM,10/10/2014 09:31:54 PM,10/10/2014 09:49:33 PM,Code 2 Transport,10/10/2014 10:38:01 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142833309-85 +160924058,75,16036663,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:55:30 PM,04/01/2016 11:55:55 PM,04/01/2016 11:57:38 PM,04/01/2016 11:57:43 PM,04/02/2016 12:03:42 AM,04/02/2016 12:28:52 AM,04/02/2016 12:54:15 AM,Code 2 Transport,04/02/2016 01:23:20 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160924058-75 +143472516,E01,14123867,Medical Incident,12/13/2014,12/13/2014,12/13/2014 04:30:47 PM,12/13/2014 04:31:11 PM,12/13/2014 04:33:02 PM,12/13/2014 04:33:02 PM,12/13/2014 04:33:02 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,Code 2 Transport,12/13/2014 04:46:32 PM,JESSIE WEST ST/JESSIE ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7835180383277, -122.406558654985)",143472516-E01 +152913337,64,15111967,Structure Fire,10/18/2015,10/18/2015,10/18/2015 09:14:54 PM,10/18/2015 09:16:01 PM,10/18/2015 09:16:24 PM,10/18/2015 09:17:37 PM,10/18/2015 09:19:51 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Fire,10/18/2015 09:44:00 PM,0 Block of LEE AVE,San Francisco,94112,B09,15,8466,3,3,3,true,Alarm,1,MEDIC,4,9,11,Oceanview/Merced/Ingleside,"(37.7191056377178, -122.454158087054)",152913337-64 +143303164,E28,14117143,Outside Fire,11/26/2014,11/26/2014,11/26/2014 07:20:13 PM,11/26/2014 07:20:13 PM,11/26/2014 07:20:50 PM,11/26/2014 07:22:36 PM,11/26/2014 07:23:56 PM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,Fire,11/26/2014 07:26:19 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8084350175869, -122.410774214375)",143303164-E28 +160933857,85,16037077,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:07:32 PM,04/02/2016 11:08:58 PM,04/02/2016 11:09:06 PM,04/02/2016 11:09:17 PM,04/02/2016 11:11:07 PM,04/02/2016 11:38:20 PM,04/02/2016 11:51:00 PM,Code 2 Transport,04/03/2016 12:31:08 AM,DUBOCE AV/13TH ST,San Francisco,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",160933857-85 +150832521,E06,15031777,Outside Fire,03/24/2015,03/24/2015,03/24/2015 04:23:38 PM,03/24/2015 04:24:09 PM,03/24/2015 04:25:41 PM,03/24/2015 04:26:25 PM,03/24/2015 04:29:36 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 04:34:49 PM,GUERRERO ST/MARKET ST,San Francisco,94103,B02,36,5126,3,3,3,true,Fire,1,ENGINE,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",150832521-E06 +151272503,T11,15048211,Alarms,05/07/2015,05/07/2015,05/07/2015 03:51:26 PM,05/07/2015 03:52:42 PM,05/07/2015 03:52:47 PM,05/07/2015 03:54:49 PM,05/07/2015 03:56:20 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Fire,05/07/2015 04:09:14 PM,4000 Block of CESAR CHAVEZ ST,San Francisco,94131,B06,11,5552,3,3,3,true,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7475540672318, -122.430378413852)",151272503-T11 +152172102,77,15082626,Medical Incident,08/05/2015,08/05/2015,08/05/2015 02:09:03 PM,08/05/2015 02:09:29 PM,08/05/2015 02:10:14 PM,08/05/2015 02:10:47 PM,08/05/2015 02:14:47 PM,08/05/2015 02:34:29 PM,08/05/2015 03:03:38 PM,Code 2 Transport,08/05/2015 03:33:01 PM,MISSION ST/9TH ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",152172102-77 +151623471,T12,15062063,Alarms,06/11/2015,06/11/2015,06/11/2015 08:30:12 PM,06/11/2015 08:31:28 PM,06/11/2015 08:31:57 PM,06/11/2015 08:33:24 PM,06/11/2015 08:34:45 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/11/2015 09:00:55 PM,400 Block of PARNASSUS AVE,San Francisco,94122,B05,12,5155,3,3,3,false,Alarm,1,TRUCK,2,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",151623471-T12 +161000441,AM24,16039613,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:29:02 AM,04/09/2016 03:30:24 AM,04/09/2016 03:30:42 AM,04/09/2016 03:35:27 AM,04/09/2016 03:35:27 AM,04/09/2016 04:02:37 AM,04/09/2016 04:10:36 AM,Code 2 Transport,04/09/2016 04:57:55 AM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7815345081004, -122.428135307501)",161000441-AM24 +152011405,T13,15076569,Alarms,07/20/2015,07/20/2015,07/20/2015 11:14:37 AM,07/20/2015 11:16:37 AM,07/20/2015 11:17:14 AM,07/20/2015 11:18:35 AM,07/20/2015 11:21:49 AM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Fire,07/20/2015 11:29:07 AM,700 Block of MARKET ST,San Francisco,94108,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",152011405-T13 +160971197,57,16038353,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:58:35 AM,04/06/2016 09:59:46 AM,04/06/2016 10:00:40 AM,04/06/2016 10:01:15 AM,04/06/2016 10:05:29 AM,04/06/2016 10:19:35 AM,04/06/2016 10:59:51 AM,Code 2 Transport,04/06/2016 11:59:26 AM,MARKET ST/11TH ST,San Francisco,94103,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",160971197-57 +151011310,E05,15038189,Medical Incident,04/11/2015,04/11/2015,04/11/2015 11:29:57 AM,04/11/2015 11:29:57 AM,04/11/2015 11:31:00 AM,04/11/2015 11:31:23 AM,04/11/2015 11:35:28 AM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,No Merit,04/11/2015 11:47:45 AM,STEINER ST/CALIFORNIA ST,San Francisco,94115,B04,38,3616,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7886969402203, -122.435485565193)",151011310-E05 +142093387,T48,14072623,Citizen Assist / Service Call,07/28/2014,07/28/2014,07/28/2014 10:04:37 PM,07/28/2014 10:09:54 PM,07/28/2014 10:10:01 PM,07/28/2014 10:11:16 PM,07/28/2014 10:21:36 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Fire,07/28/2014 10:36:40 PM,1200 Block of BAYSIDE DR,Treasure Islan,94130,B03,48,2931,3,3,3,false,Alarm,1,TRUCK,1,None,6,Treasure Island,"(37.8304547884044, -122.37629451046)",142093387-T48 +141523222,KM07,14052387,Medical Incident,06/01/2014,06/01/2014,06/01/2014 11:01:18 PM,06/01/2014 11:03:35 PM,06/01/2014 11:06:50 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Code 2 Transport,06/01/2014 11:09:55 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",141523222-KM07 +160952015,66,16037653,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:46:02 PM,04/04/2016 01:46:19 PM,04/04/2016 01:46:50 PM,04/04/2016 01:46:58 PM,04/04/2016 01:52:13 PM,04/04/2016 02:19:06 PM,04/04/2016 02:46:19 PM,Code 2 Transport,04/04/2016 03:24:43 PM,0 Block of REARDON RD,San Francisco,94124,B10,17,6625,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294407135003, -122.377026608239)",160952015-66 +151161474,56,15043807,Medical Incident,04/26/2015,04/26/2015,04/26/2015 12:01:59 PM,04/26/2015 12:04:07 PM,04/26/2015 12:04:16 PM,04/26/2015 12:05:00 PM,04/26/2015 12:09:27 PM,04/26/2015 12:28:56 PM,04/26/2015 12:52:31 PM,Code 2 Transport,04/26/2015 01:26:12 PM,1900 Block of LOMBARD ST,San Francisco,94123,B04,16,3461,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8000395100176, -122.433559215501)",151161474-56 +151601520,89,15061124,Medical Incident,06/09/2015,06/09/2015,06/09/2015 11:57:32 AM,06/09/2015 11:58:11 AM,06/09/2015 11:59:32 AM,06/09/2015 12:00:14 PM,06/09/2015 12:04:25 PM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Patient Declined Transport,06/09/2015 01:29:24 PM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",151601520-89 +160981085,89,16038832,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:13:47 AM,04/07/2016 09:17:32 AM,04/07/2016 09:18:30 AM,04/07/2016 09:25:43 AM,04/07/2016 09:33:12 AM,04/07/2016 09:55:19 AM,04/07/2016 10:14:06 AM,Code 2 Transport,04/07/2016 11:01:43 AM,200 Block of WHEELER AVE,San Francisco,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7125510918772, -122.39957935978)",160981085-89 +160940010,76,16037093,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:00:47 AM,04/03/2016 12:02:58 AM,04/03/2016 12:04:11 AM,04/03/2016 12:04:21 AM,04/03/2016 12:10:37 AM,04/03/2016 12:30:54 AM,04/03/2016 12:40:40 AM,Code 2 Transport,04/03/2016 01:02:14 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160940010-76 +152082502,72,15079324,Medical Incident,07/27/2015,07/27/2015,07/27/2015 04:01:42 PM,07/27/2015 04:02:15 PM,07/27/2015 04:02:31 PM,07/27/2015 04:03:14 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Medical Examiner,07/27/2015 04:05:05 PM,400 Block of ELLINGTON AVE,San Francisco,94112,B09,33,8346,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7115995575267, -122.447416245523)",152082502-72 +141651008,E26,14056849,Medical Incident,06/14/2014,06/14/2014,06/14/2014 09:27:24 AM,06/14/2014 09:27:46 AM,06/14/2014 09:28:19 AM,06/14/2014 09:29:12 AM,06/14/2014 09:31:54 AM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Code 2 Transport,06/14/2014 09:51:32 AM,600 Block of 28TH ST,San Francisco,94131,B06,26,5557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7446427404721, -122.436765635284)",141651008-E26 +151430487,T03,15054267,Other,05/23/2015,05/22/2015,05/23/2015 03:13:07 AM,05/23/2015 03:17:35 AM,05/23/2015 03:20:36 AM,05/23/2015 03:22:30 AM,05/23/2015 03:26:26 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Fire,05/23/2015 03:35:00 AM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",151430487-T03 +160972876,86,16038517,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:10:16 PM,04/06/2016 04:11:21 PM,04/06/2016 04:11:49 PM,04/06/2016 04:11:59 PM,04/06/2016 04:29:29 PM,04/06/2016 04:54:53 PM,04/06/2016 05:15:27 PM,Code 2 Transport,04/06/2016 05:51:43 PM,0 Block of 7TH AVE,San Francisco,94118,B07,31,7126,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Inner Richmond,"(37.7874460327418, -122.465750262786)",160972876-86 +141582460,T12,14054515,Structure Fire,06/07/2014,06/07/2014,06/07/2014 05:44:41 PM,06/07/2014 05:44:41 PM,06/07/2014 05:45:10 PM,06/07/2014 05:46:25 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 05:49:02 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,false,Alarm,1,TRUCK,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",141582460-T12 +142971289,E03,14104724,Medical Incident,10/24/2014,10/24/2014,10/24/2014 10:44:45 AM,10/24/2014 10:45:46 AM,10/24/2014 10:46:30 AM,10/24/2014 10:49:02 AM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Code 2 Transport,10/24/2014 10:58:09 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",142971289-E03 +150612040,E36,15023314,Traffic Collision,03/02/2015,03/02/2015,03/02/2015 02:28:11 PM,03/02/2015 02:29:14 PM,03/02/2015 02:30:43 PM,03/02/2015 02:32:53 PM,03/02/2015 02:35:55 PM,04/25/2016 01:11:57 PM,04/25/2016 01:11:57 PM,Code 2 Transport,03/02/2015 02:49:49 PM,SOUTH VAN NESS AV/13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.769815078903, -122.417753195885)",150612040-E36 +142840804,RC1,14099957,Medical Incident,10/11/2014,10/10/2014,10/11/2014 07:34:36 AM,10/11/2014 07:36:20 AM,10/11/2014 07:38:27 AM,10/11/2014 07:40:27 AM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Medical Examiner,10/11/2014 07:46:54 AM,MARINA BL/CASA WY,San Francisco,94123,B04,16,3561,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.8060771983672, -122.439999322479)",142840804-RC1 +160973160,65,16038548,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:05:14 PM,04/06/2016 05:05:59 PM,04/06/2016 05:06:14 PM,04/06/2016 05:07:19 PM,04/06/2016 05:18:14 PM,04/06/2016 05:40:13 PM,04/06/2016 06:26:22 PM,Code 2 Transport,04/06/2016 06:45:48 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160973160-65 +153272071,E09,15125896,Medical Incident,11/23/2015,11/23/2015,11/23/2015 02:09:51 PM,11/23/2015 02:10:54 PM,11/23/2015 02:11:52 PM,11/23/2015 02:15:26 PM,11/23/2015 02:16:41 PM,04/25/2016 01:07:02 PM,04/25/2016 01:07:02 PM,Code 2 Transport,11/23/2015 02:30:11 PM,3000 Block of HARRISON ST,San Francisco,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7486195212612, -122.411584193034)",153272071-E09 +151692376,65,15064691,Medical Incident,06/18/2015,06/18/2015,06/18/2015 04:27:39 PM,06/18/2015 04:29:30 PM,06/18/2015 04:31:24 PM,06/18/2015 04:32:03 PM,06/18/2015 04:36:30 PM,06/18/2015 05:03:45 PM,06/18/2015 05:31:21 PM,Code 2 Transport,06/18/2015 05:48:44 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",151692376-65 +151322212,88,15050126,Medical Incident,05/12/2015,05/12/2015,05/12/2015 03:45:27 PM,05/12/2015 03:46:10 PM,05/12/2015 03:46:27 PM,05/12/2015 03:46:38 PM,05/12/2015 03:50:15 PM,05/12/2015 04:02:39 PM,04/25/2016 01:10:38 PM,Code 2 Transport,05/12/2015 04:30:56 PM,500 Block of CLAYTON ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7702730913586, -122.448605048056)",151322212-88 +143492588,RC3,14124733,Structure Fire,12/15/2014,12/15/2014,12/15/2014 05:55:44 PM,12/15/2014 05:56:04 PM,12/15/2014 06:02:16 PM,12/15/2014 06:04:18 PM,12/15/2014 06:08:51 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 06:14:43 PM,2800 Block of HARRISON ST,San Francisco,94110,B06,7,5533,3,3,3,true,Fire,1,RESCUE CAPTAIN,7,6,9,Mission,"(37.7518270551886, -122.411891999747)",143492588-RC3 +141902850,88,14065938,Medical Incident,07/09/2014,07/09/2014,07/09/2014 06:11:11 PM,07/09/2014 06:14:29 PM,07/09/2014 06:19:26 PM,07/09/2014 06:24:02 PM,07/09/2014 06:25:44 PM,07/09/2014 06:38:29 PM,07/09/2014 06:42:03 PM,Code 2 Transport,07/09/2014 07:05:43 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",141902850-88 +141920345,87,14066427,Medical Incident,07/11/2014,07/10/2014,07/11/2014 02:46:07 AM,07/11/2014 02:46:07 AM,07/11/2014 02:47:31 AM,07/11/2014 02:47:44 AM,07/11/2014 02:54:18 AM,07/11/2014 03:04:49 AM,07/11/2014 03:33:54 AM,Code 3 Transport,07/11/2014 03:54:03 AM,0 Block of 5TH ST,San Francisco,94103,B03,48,2951,A,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7831860531538, -122.407149119811)",141920345-87 +142722254,65,14095446,Medical Incident,09/29/2014,09/29/2014,09/29/2014 04:07:50 PM,09/29/2014 04:08:48 PM,09/29/2014 04:09:11 PM,09/29/2014 04:09:26 PM,09/29/2014 04:13:17 PM,09/29/2014 04:25:39 PM,09/29/2014 04:53:58 PM,Code 2 Transport,09/29/2014 05:23:20 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",142722254-65 +141932369,E14,14067017,Medical Incident,07/12/2014,07/12/2014,07/12/2014 05:25:12 PM,07/12/2014 05:28:58 PM,07/12/2014 05:29:14 PM,07/12/2014 05:30:10 PM,04/25/2016 01:16:15 PM,04/25/2016 01:16:15 PM,04/25/2016 01:16:15 PM,Code 2 Transport,07/12/2014 05:32:56 PM,4000 Block of BALBOA ST,San Francisco,94121,B07,34,7263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.775550100195, -122.502138435075)",141932369-E14 +152792422,E35,15107115,Traffic Collision,10/06/2015,10/06/2015,10/06/2015 03:32:24 PM,10/06/2015 03:32:52 PM,10/06/2015 03:33:36 PM,10/06/2015 03:34:38 PM,10/06/2015 03:36:53 PM,04/25/2016 01:07:55 PM,04/25/2016 01:07:55 PM,Unable to Locate,10/06/2015 03:40:41 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7853124134666, -122.394402139729)",152792422-E35 +152761051,RS1,15105695,Medical Incident,10/03/2015,10/03/2015,10/03/2015 09:17:24 AM,10/03/2015 09:18:36 AM,10/03/2015 09:19:16 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Code 2 Transport,10/03/2015 09:21:38 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",152761051-RS1 +150760598,E22,15029043,Medical Incident,03/17/2015,03/16/2015,03/17/2015 07:42:09 AM,03/17/2015 07:44:01 AM,03/17/2015 07:44:46 AM,03/17/2015 07:45:56 AM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Code 2 Transport,03/17/2015 08:04:24 AM,900 Block of LINCOLN WAY,San Francisco,94122,B08,22,7333,2,2,2,false,Non Life-threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7657522392824, -122.46804064381)",150760598-E22 +160981299,KM09,16038861,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:14:48 AM,04/07/2016 10:15:17 AM,04/07/2016 10:15:29 AM,04/07/2016 10:16:33 AM,04/07/2016 10:19:22 AM,04/07/2016 10:37:34 AM,04/07/2016 10:51:10 AM,Code 2 Transport,04/07/2016 11:30:36 AM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",160981299-KM09 +153102460,58,15119219,Medical Incident,11/06/2015,11/06/2015,11/06/2015 04:10:45 PM,11/06/2015 04:12:00 PM,11/06/2015 04:12:57 PM,11/06/2015 04:13:14 PM,11/06/2015 04:26:43 PM,11/06/2015 04:41:54 PM,11/06/2015 05:06:19 PM,Code 2 Transport,11/06/2015 05:41:32 PM,LELAND AV/ALPHA ST,San Francisco,94134,B10,44,6255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7119334722542, -122.405632132176)",153102460-58 +160982733,AM16,16039018,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:25:36 PM,04/07/2016 04:27:17 PM,04/07/2016 05:08:42 PM,04/07/2016 05:09:11 PM,04/07/2016 05:33:25 PM,04/07/2016 05:55:39 PM,04/07/2016 06:19:38 PM,Code 2 Transport,04/07/2016 06:42:49 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160982733-AM16 +150961886,E13,15036422,Alarms,04/06/2015,04/06/2015,04/06/2015 02:05:22 PM,04/06/2015 02:06:38 PM,04/06/2015 02:08:36 PM,04/06/2015 02:11:25 PM,04/25/2016 01:11:19 PM,04/25/2016 01:11:19 PM,04/25/2016 01:11:19 PM,Fire,04/06/2015 02:19:44 PM,0 Block of HARRISON ST,San Francisco,94105,B03,35,2113,3,3,3,true,Alarm,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7891695836335, -122.388910656461)",150961886-E13 +150792117,E41,15030319,Structure Fire,03/20/2015,03/20/2015,03/20/2015 02:52:16 PM,03/20/2015 02:52:50 PM,03/20/2015 02:53:24 PM,03/20/2015 02:54:13 PM,03/20/2015 02:56:53 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 03:01:12 PM,2400 Block of BUCHANAN ST,San Francisco,94115,B04,38,3436,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7924401819216, -122.431245878232)",150792117-E41 +150371045,T19,15014185,Alarms,02/06/2015,02/06/2015,02/06/2015 09:13:41 AM,02/06/2015 09:15:10 AM,02/06/2015 09:17:31 AM,02/06/2015 09:18:48 AM,02/06/2015 09:23:23 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/06/2015 09:37:43 AM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",150371045-T19 +142760438,E43,14096765,Medical Incident,10/03/2014,10/02/2014,10/03/2014 03:37:14 AM,10/03/2014 03:38:21 AM,10/03/2014 03:38:30 AM,10/03/2014 03:42:01 AM,10/03/2014 03:42:01 AM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Code 2 Transport,10/03/2014 03:57:11 AM,200 Block of MUNICH ST,San Francisco,94112,B09,43,6163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7216798646494, -122.426299514964)",142760438-E43 +143260475,E05,14115353,Medical Incident,11/22/2014,11/21/2014,11/22/2014 03:24:05 AM,11/22/2014 03:25:17 AM,11/22/2014 03:26:16 AM,11/22/2014 03:28:04 AM,11/22/2014 03:29:37 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,No Merit,11/22/2014 03:36:13 AM,TURK ST/FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",143260475-E05 +160973901,AM22,16038638,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:43:36 PM,04/06/2016 07:44:55 PM,04/06/2016 07:45:41 PM,04/06/2016 07:46:36 PM,04/06/2016 07:52:07 PM,04/06/2016 08:28:20 PM,04/06/2016 08:54:30 PM,Code 2 Transport,04/06/2016 09:12:30 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160973901-AM22 +142591564,AM12,14090468,Medical Incident,09/16/2014,09/16/2014,09/16/2014 12:16:51 PM,09/16/2014 12:18:12 PM,09/16/2014 12:19:01 PM,09/16/2014 12:19:45 PM,09/16/2014 12:26:42 PM,09/16/2014 12:35:08 PM,09/16/2014 12:51:56 PM,Code 2 Transport,09/16/2014 01:26:57 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",142591564-AM12 +151173715,FD00A,15044420,,04/27/2015,04/27/2015,04/27/2015 10:18:23 PM,04/27/2015 10:19:24 PM,04/27/2015 10:32:42 PM,04/27/2015 10:41:35 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Cancelled,04/27/2015 10:41:53 PM,100 Block of CLINTON PARK,San Francisco,94103,B02,36,5126,3,3,3,false,Non Life-threatening,1,SUPPORT,3,2,8,Mission,"(37.7692677111289, -122.423396856968)",151173715-FD00A +153120070,AM20,15119764,Medical Incident,11/08/2015,11/07/2015,11/08/2015 12:24:25 AM,11/08/2015 12:25:06 AM,11/08/2015 12:25:56 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Code 2 Transport,11/08/2015 12:26:41 AM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",153120070-AM20 +153172054,T05,15121857,Structure Fire,11/13/2015,11/13/2015,11/13/2015 01:10:24 PM,11/13/2015 01:10:24 PM,11/13/2015 01:10:56 PM,11/13/2015 01:12:00 PM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,Fire,11/13/2015 01:23:07 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",153172054-T05 +142111693,AM08,14073122,Medical Incident,07/30/2014,07/30/2014,07/30/2014 01:05:33 PM,07/30/2014 01:06:08 PM,07/30/2014 01:07:17 PM,07/30/2014 01:12:32 PM,07/30/2014 01:16:46 PM,04/25/2016 01:15:56 PM,04/25/2016 01:15:56 PM,Patient Declined Transport,07/30/2014 01:42:03 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",142111693-AM08 +161002397,58,16039851,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:12:30 PM,04/09/2016 05:14:01 PM,04/09/2016 05:14:16 PM,04/09/2016 05:14:26 PM,04/09/2016 05:16:31 PM,04/09/2016 05:25:03 PM,04/09/2016 05:31:20 PM,Code 2 Transport,04/09/2016 06:06:40 PM,700 Block of CAPP ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7547064357942, -122.417513465479)",161002397-58 +152242656,E48,15085441,Structure Fire,08/12/2015,08/12/2015,08/12/2015 04:34:44 PM,08/12/2015 04:35:40 PM,08/12/2015 04:36:46 PM,08/12/2015 04:38:01 PM,08/12/2015 04:39:56 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 04:52:53 PM,1400 Block of STRIPED BASS ST,Treasure Isla,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,2,None,6,Treasure Island,"(37.8260094476557, -122.37612659823)",152242656-E48 +143651306,AR1,14130656,Structure Fire,12/31/2014,12/31/2014,12/31/2014 11:55:40 AM,12/31/2014 11:55:59 AM,12/31/2014 12:08:08 PM,12/31/2014 12:09:28 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Fire,12/31/2014 02:30:26 PM,1300 Block of UNDERWOOD AVE,San Francisco,94124,B10,17,6653,3,3,3,false,Fire,2,INVESTIGATION,23,10,10,Bayview Hunters Point,"(37.7270915966656, -122.387216118798)",143651306-AR1 +160963386,72,16038147,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:57:11 PM,04/05/2016 06:57:11 PM,04/05/2016 06:59:27 PM,04/05/2016 06:59:27 PM,04/05/2016 07:13:42 PM,04/05/2016 07:31:37 PM,04/05/2016 07:48:02 PM,Code 2 Transport,04/05/2016 08:20:31 PM,MISSION ST/SANTA ROSA AV,San Francisco,94112,B09,43,6116,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7257617913569, -122.433982357283)",160963386-72 +152481257,B08,15094629,Alarms,09/05/2015,09/05/2015,09/05/2015 10:23:25 AM,09/05/2015 10:24:10 AM,09/05/2015 10:24:21 AM,09/05/2015 10:25:07 AM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Fire,09/05/2015 10:31:21 AM,200 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8853,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",152481257-B08 +153013842,E36,15115630,Alarms,10/28/2015,10/28/2015,10/28/2015 08:55:06 PM,10/28/2015 08:56:31 PM,10/28/2015 08:58:54 PM,10/28/2015 09:00:41 PM,10/28/2015 09:01:44 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/28/2015 09:09:53 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",153013842-E36 +160942413,KM04,16037321,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:56:15 PM,04/03/2016 03:57:55 PM,04/03/2016 03:58:11 PM,04/03/2016 03:58:32 PM,04/03/2016 04:03:51 PM,04/03/2016 04:28:07 PM,04/03/2016 05:07:23 PM,Code 2 Transport,04/03/2016 05:39:43 PM,600 Block of HEAD ST,San Francisco,94132,B09,33,8433,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7188076273319, -122.464519500184)",160942413-KM04 +160990857,AM04,16039223,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:59:10 AM,04/08/2016 08:59:45 AM,04/08/2016 09:00:15 AM,04/08/2016 09:00:18 AM,04/08/2016 09:08:36 AM,04/08/2016 09:17:22 AM,04/08/2016 09:40:31 AM,Code 3 Transport,04/08/2016 10:17:39 AM,MONTGOMERY ST/MARKET ST,San Francisco,94105,B01,13,1236,2,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",160990857-AM04 +160932020,79,16036895,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:28:22 PM,04/02/2016 02:31:16 PM,04/02/2016 02:42:38 PM,04/02/2016 02:42:44 PM,04/02/2016 02:57:27 PM,04/02/2016 03:09:57 PM,04/02/2016 03:25:29 PM,Code 2 Transport,04/02/2016 03:39:41 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160932020-79 +150792043,E13,15030315,Traffic Collision,03/20/2015,03/20/2015,03/20/2015 02:32:26 PM,03/20/2015 02:32:26 PM,03/20/2015 02:35:23 PM,03/20/2015 02:36:55 PM,03/20/2015 02:39:41 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Patient Declined Transport,03/20/2015 02:48:55 PM,SACRAMENTO ST/MONTGOMERY ST,San Francisco,94104,B01,13,1166,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7937798566723, -122.402957361388)",150792043-E13 +142430874,73,14084550,Medical Incident,08/31/2014,08/31/2014,08/31/2014 08:33:05 AM,08/31/2014 08:35:11 AM,08/31/2014 08:35:34 AM,08/31/2014 08:36:06 AM,08/31/2014 08:41:47 AM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Against Medical Advice,08/31/2014 09:38:32 AM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",142430874-73 +160974123,70,16038664,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:46:25 PM,04/06/2016 08:48:18 PM,04/06/2016 08:49:38 PM,04/06/2016 08:52:24 PM,04/06/2016 08:53:08 PM,04/06/2016 09:07:57 PM,04/06/2016 09:15:11 PM,Code 2 Transport,04/06/2016 09:44:24 PM,800 Block of JACKSON ST,San Francisco,94133,B01,2,1354,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7957574917838, -122.409220385191)",160974123-70 +152923471,T12,15112363,Other,10/19/2015,10/19/2015,10/19/2015 08:51:14 PM,10/19/2015 08:51:52 PM,10/19/2015 08:52:45 PM,10/19/2015 08:53:56 PM,10/19/2015 08:55:51 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Fire,10/19/2015 09:07:20 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",152923471-T12 +161000375,64,16039603,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:43:39 AM,04/09/2016 02:46:22 AM,04/09/2016 02:46:59 AM,04/09/2016 02:47:10 AM,04/09/2016 02:51:34 AM,04/09/2016 03:16:57 AM,04/09/2016 03:21:36 AM,Code 2 Transport,04/09/2016 03:54:50 AM,0 Block of WOODLAND AVE,San Francisco,94117,B05,12,5153,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7633699801685, -122.453383627614)",161000375-64 +142470636,T15,14085950,Structure Fire,09/04/2014,09/03/2014,09/04/2014 07:11:38 AM,09/04/2014 07:11:38 AM,09/04/2014 07:11:45 AM,09/04/2014 07:13:41 AM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Fire,09/04/2014 07:20:38 AM,ROCKDALE DR/OMAR WY,San Francisco,94127,B09,39,8662,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7393078970174, -122.449569567755)",142470636-T15 +151560268,E12,15059371,Medical Incident,06/05/2015,06/04/2015,06/05/2015 02:51:15 AM,06/05/2015 02:52:11 AM,06/05/2015 02:53:23 AM,06/05/2015 02:55:39 AM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Code 2 Transport,06/05/2015 02:58:47 AM,HAIGHT ST/ASHBURY ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7700076057236, -122.446933818288)",151560268-E12 +153193453,78,15122833,Medical Incident,11/15/2015,11/15/2015,11/15/2015 09:23:06 PM,11/15/2015 09:23:06 PM,11/15/2015 09:36:07 PM,11/15/2015 09:36:23 PM,11/15/2015 09:40:02 PM,11/15/2015 10:13:20 PM,11/15/2015 10:24:33 PM,Other,11/15/2015 11:52:36 PM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",153193453-78 +141892527,B01,14065567,Alarms,07/08/2014,07/08/2014,07/08/2014 04:20:05 PM,07/08/2014 04:22:36 PM,07/08/2014 04:23:28 PM,07/08/2014 04:24:32 PM,07/08/2014 04:29:21 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Fire,07/08/2014 04:33:05 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",141892527-B01 +152150186,T19,15081683,Alarms,08/03/2015,08/02/2015,08/03/2015 01:46:44 AM,08/03/2015 01:48:07 AM,08/03/2015 01:48:18 AM,08/03/2015 01:50:39 AM,08/03/2015 01:53:06 AM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Fire,08/03/2015 02:01:50 AM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",152150186-T19 +160982230,76,16038955,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:19:40 PM,04/07/2016 02:21:22 PM,04/07/2016 02:22:07 PM,04/07/2016 02:22:14 PM,04/07/2016 02:27:49 PM,04/07/2016 02:37:27 PM,04/07/2016 02:47:06 PM,Code 2 Transport,04/07/2016 03:12:01 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",160982230-76 +150071840,E37,15002690,Gas Leak (Natural and LP Gases),01/07/2015,01/07/2015,01/07/2015 01:14:54 PM,01/07/2015 01:17:06 PM,01/07/2015 01:17:44 PM,01/07/2015 01:18:28 PM,01/07/2015 01:22:04 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Fire,01/07/2015 02:28:19 PM,900 Block of MINNESOTA ST,San Francisco,94107,B10,37,2535,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",150071840-E37 +151173446,T03,15044387,Alarms,04/27/2015,04/27/2015,04/27/2015 08:31:02 PM,04/27/2015 08:31:36 PM,04/27/2015 08:32:04 PM,04/27/2015 08:33:04 PM,04/27/2015 08:34:38 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Fire,04/27/2015 08:34:51 PM,LEAVENWORTH ST/OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",151173446-T03 +152393331,B02,15091156,Alarms,08/27/2015,08/27/2015,08/27/2015 06:52:33 PM,08/27/2015 06:55:27 PM,08/27/2015 06:55:42 PM,08/27/2015 06:57:06 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/27/2015 07:04:05 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",152393331-B02 +142891238,76,14101813,Medical Incident,10/16/2014,10/16/2014,10/16/2014 10:06:29 AM,10/16/2014 10:06:44 AM,10/16/2014 10:06:51 AM,10/16/2014 10:07:04 AM,10/16/2014 10:18:44 AM,10/16/2014 10:26:43 AM,10/16/2014 11:04:38 AM,Code 2 Transport,10/16/2014 11:34:33 AM,700 Block of LA PLAYA,San Francisco,94121,B07,34,7312,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",142891238-76 +153191231,79,15122620,Structure Fire,11/15/2015,11/15/2015,11/15/2015 10:31:09 AM,11/15/2015 10:31:57 AM,11/15/2015 10:32:44 AM,11/15/2015 10:33:08 AM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Fire,11/15/2015 10:41:27 AM,200 Block of DENSLOWE DR,San Francisco,94132,B08,19,8751,3,3,3,true,Alarm,1,MEDIC,5,9,7,West of Twin Peaks,"(37.7204827766558, -122.4745882975)",153191231-79 +141110046,89,14037331,Medical Incident,04/21/2014,04/20/2014,04/21/2014 04:06:15 AM,04/21/2014 04:06:54 AM,04/21/2014 04:07:23 AM,04/21/2014 04:07:33 AM,04/21/2014 04:14:03 AM,04/21/2014 04:36:11 AM,04/21/2014 04:56:46 AM,Code 2 Transport,04/21/2014 05:57:43 AM,2400 Block of SACRAMENTO ST,SAN FRANCISCO,94115,B04,38,3544,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",141110046-89 +141332106,E03,14045362,Alarms,05/13/2014,05/13/2014,05/13/2014 02:50:14 PM,05/13/2014 02:51:55 PM,05/13/2014 02:52:20 PM,05/13/2014 02:53:15 PM,05/13/2014 02:55:22 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,Fire,05/13/2014 02:57:41 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,false,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",141332106-E03 +150671808,T05,15025640,Medical Incident,03/08/2015,03/08/2015,03/08/2015 02:31:08 PM,03/08/2015 02:31:55 PM,03/08/2015 02:32:41 PM,03/08/2015 02:33:44 PM,03/08/2015 02:38:12 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,Duplicate,03/08/2015 02:38:24 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",150671808-T05 +143592228,KM15,14128575,Medical Incident,12/25/2014,12/25/2014,12/25/2014 08:19:59 PM,12/25/2014 08:24:26 PM,12/25/2014 08:25:08 PM,12/25/2014 08:26:24 PM,12/25/2014 08:31:20 PM,12/25/2014 08:46:06 PM,12/25/2014 08:55:38 PM,Code 2 Transport,12/25/2014 09:42:10 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7674778738529, -122.419834389169)",143592228-KM15 +141350005,RS1,14045976,Structure Fire,05/15/2014,05/14/2014,05/15/2014 12:00:57 AM,05/15/2014 12:02:32 AM,05/15/2014 12:03:51 AM,05/15/2014 12:05:48 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Unable to Locate,05/15/2014 12:12:35 AM,1900 Block of WASHINGTON ST,San Francisco,94109,B04,38,3226,3,3,3,false,Alarm,1,RESCUE SQUAD,11,4,2,Pacific Heights,"(37.7927918347727, -122.425348410602)",141350005-RS1 +150712001,E37,15027125,Medical Incident,03/12/2015,03/12/2015,03/12/2015 01:57:14 PM,03/12/2015 01:57:54 PM,03/12/2015 01:58:09 PM,03/12/2015 01:58:56 PM,03/12/2015 02:01:35 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Code 3 Transport,03/12/2015 02:29:29 PM,600 Block of TEXAS ST,San Francisco,94107,B10,37,2541,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7592140683716, -122.395302149441)",150712001-E37 +151043721,B06,15039535,Structure Fire,04/14/2015,04/14/2015,04/14/2015 11:26:24 PM,04/14/2015 11:28:24 PM,04/14/2015 11:28:38 PM,04/14/2015 11:30:10 PM,04/14/2015 11:33:49 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Fire,04/14/2015 11:36:11 PM,2000 Block of 15TH ST,San Francisco,94114,B05,6,5231,3,3,3,false,Alarm,1,CHIEF,9,2,8,Castro/Upper Market,"(37.7661513078958, -122.42937789146)",151043721-B06 +141160019,E21,14039024,Administrative,04/26/2014,04/25/2014,04/26/2014 01:03:50 AM,04/26/2014 01:04:06 AM,04/26/2014 01:04:23 AM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Other,04/26/2014 01:07:25 AM,1400 Block of GROVE ST,,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",141160019-E21 +160973672,63,16038620,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 06:48:57 PM,04/06/2016 06:52:50 PM,04/06/2016 06:54:31 PM,04/06/2016 06:54:46 PM,04/06/2016 07:00:14 PM,04/06/2016 07:26:21 PM,04/06/2016 07:44:05 PM,Code 2 Transport,04/06/2016 08:21:01 PM,1400 Block of BLK FELTON ST,San Francisco,94134,B09,43,6152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7266051369957, -122.417937968348)",160973672-63 +152242763,68,15085452,Water Rescue,08/12/2015,08/12/2015,08/12/2015 05:01:02 PM,08/12/2015 05:03:02 PM,08/12/2015 05:05:56 PM,08/12/2015 05:06:42 PM,08/12/2015 05:16:23 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 05:35:31 PM,100 Block of THE EMBARCADERO,San Francisco,94111,B03,35,912,3,3,3,true,Fire,1,MEDIC,6,1,3,Financial District/South Beach,"(37.7953057437548, -122.394651127667)",152242763-68 +143552153,RS1,14126948,Structure Fire,12/21/2014,12/21/2014,12/21/2014 02:14:09 PM,12/21/2014 02:14:31 PM,12/21/2014 02:14:40 PM,12/21/2014 02:16:49 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 02:18:48 PM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,false,Alarm,1,RESCUE SQUAD,10,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",143552153-RS1 +143282207,B01,14116341,Citizen Assist / Service Call,11/24/2014,11/24/2014,11/24/2014 02:52:26 PM,11/24/2014 02:54:14 PM,11/24/2014 02:59:10 PM,11/24/2014 02:59:37 PM,11/24/2014 02:59:37 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/24/2014 03:18:19 PM,1100 Block of SACRAMENTO ST,San Francisco,94108,B01,41,1414,3,3,3,false,Alarm,1,CHIEF,1,1,3,Nob Hill,"(37.792652645298, -122.412300829421)",143282207-B01 +160943803,85,16037469,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:50:36 PM,04/03/2016 11:51:24 PM,04/03/2016 11:51:33 PM,04/03/2016 11:51:39 PM,04/03/2016 11:58:03 PM,04/04/2016 12:11:16 AM,04/04/2016 12:27:03 AM,Code 2 Transport,04/04/2016 12:45:34 AM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",160943803-85 +152572135,AM12,15098301,Medical Incident,09/14/2015,09/14/2015,09/14/2015 02:05:37 PM,09/14/2015 02:07:12 PM,09/14/2015 02:08:02 PM,09/14/2015 02:08:59 PM,09/14/2015 02:12:22 PM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Medical Examiner,09/14/2015 03:23:33 PM,3000 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6326,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.723359097822, -122.401902489608)",152572135-AM12 +160973533,89,16038599,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:17:07 PM,04/06/2016 06:20:48 PM,04/06/2016 06:40:50 PM,04/06/2016 06:41:32 PM,04/06/2016 06:41:32 PM,04/06/2016 07:03:48 PM,04/06/2016 07:22:15 PM,Code 2 Transport,04/06/2016 08:02:24 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160973533-89 +161003259,70,16039952,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:44:51 PM,04/09/2016 09:46:34 PM,04/09/2016 09:47:44 PM,04/09/2016 09:47:52 PM,04/09/2016 09:53:22 PM,04/09/2016 10:27:04 PM,04/09/2016 10:51:11 PM,Code 2 Transport,04/09/2016 11:06:26 PM,0 Block of LYELL ST,San Francisco,94112,B09,32,8136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,8,Outer Mission,"(37.7313118275068, -122.431604221964)",161003259-70 +160921821,54,16036450,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:38:33 PM,04/01/2016 01:38:33 PM,04/01/2016 01:38:52 PM,04/01/2016 01:39:07 PM,04/01/2016 01:42:35 PM,04/01/2016 01:51:05 PM,04/01/2016 02:04:58 PM,Code 2 Transport,04/01/2016 02:27:04 PM,6TH AV/CLEMENT ST,San Francisco,94118,B07,31,7125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7829399330612, -122.464425023808)",160921821-54 +143441554,E18,14122307,Medical Incident,12/10/2014,12/10/2014,12/10/2014 11:44:41 AM,12/10/2014 11:45:54 AM,12/10/2014 11:46:15 AM,12/10/2014 11:48:56 AM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Cancelled,12/10/2014 11:51:09 AM,2200 Block of 18TH AVE,San Francisco,94116,B08,40,7375,3,3,3,true,Non Life-threatening,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7458923054923, -122.474889607092)",143441554-E18 +160943604,AM20,16037452,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 10:34:27 PM,04/03/2016 10:36:08 PM,04/03/2016 10:36:33 PM,04/03/2016 10:37:24 PM,04/03/2016 10:43:17 PM,04/03/2016 11:03:18 PM,04/03/2016 11:12:27 PM,Code 2 Transport,04/04/2016 12:05:21 AM,CALIFORNIA ST/SPRUCE ST,San Francisco,94118,B07,10,4431,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7864177314315, -122.453406647155)",160943604-AM20 +151162663,RC2,15043915,Traffic Collision,04/26/2015,04/26/2015,04/26/2015 05:57:19 PM,04/26/2015 05:57:19 PM,04/26/2015 05:59:06 PM,04/26/2015 06:01:21 PM,04/26/2015 06:03:04 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Code 2 Transport,04/26/2015 06:24:07 PM,GEARY BL/ARGUELLO BL,San Francisco,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",151162663-RC2 +142022244,E36,14069933,Medical Incident,07/21/2014,07/21/2014,07/21/2014 04:05:59 PM,07/21/2014 04:06:39 PM,07/21/2014 04:07:13 PM,07/21/2014 04:08:34 PM,07/21/2014 04:11:57 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Code 2 Transport,07/21/2014 04:29:59 PM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",142022244-E36 +153453124,E34,15132926,Medical Incident,12/11/2015,12/11/2015,12/11/2015 06:11:57 PM,12/11/2015 06:12:43 PM,12/11/2015 06:13:03 PM,12/11/2015 06:16:09 PM,12/11/2015 06:16:09 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,Against Medical Advice,12/11/2015 06:32:00 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7756362224799, -122.49784817494)",153453124-E34 +160973270,74,16038561,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 05:25:06 PM,04/06/2016 05:26:11 PM,04/06/2016 05:26:58 PM,04/06/2016 05:27:08 PM,04/06/2016 05:30:41 PM,04/06/2016 05:47:43 PM,04/06/2016 06:04:44 PM,Code 2 Transport,04/06/2016 07:27:25 PM,300 Block of BRANNAN ST,San Francisco,94107,B03,8,2153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7816734510841, -122.392394096489)",160973270-74 +141900045,AM18,14065691,Medical Incident,07/09/2014,07/08/2014,07/09/2014 12:26:08 AM,07/09/2014 12:27:28 AM,07/09/2014 12:28:58 AM,07/09/2014 12:28:58 AM,07/09/2014 12:31:45 AM,07/09/2014 12:41:56 AM,07/09/2014 12:52:17 AM,Code 3 Transport,07/09/2014 01:38:56 AM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",141900045-AM18 +151590354,63,15060591,Structure Fire,06/08/2015,06/07/2015,06/08/2015 03:31:40 AM,06/08/2015 03:35:54 AM,06/08/2015 03:36:15 AM,06/08/2015 03:36:27 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Fire,06/08/2015 03:43:54 AM,2300 Block of LARKIN ST,San Francisco,94109,B01,41,1626,3,3,3,true,Alarm,1,MEDIC,11,1,2,Russian Hill,"(37.7994456951412, -122.420717422205)",151590354-63 +151792977,T08,15068381,Structure Fire,06/28/2015,06/28/2015,06/28/2015 05:54:48 PM,06/28/2015 05:54:48 PM,06/28/2015 05:55:04 PM,06/28/2015 05:55:35 PM,06/28/2015 05:57:26 PM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Fire,06/28/2015 05:58:19 PM,3RD ST/BRYANT ST,San Francisco,94107,B03,8,2174,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7813212571676, -122.395843500166)",151792977-T08 +150801233,RS1,15030609,Structure Fire,03/21/2015,03/21/2015,03/21/2015 10:55:57 AM,03/21/2015 10:57:02 AM,03/21/2015 10:57:50 AM,03/21/2015 10:58:02 AM,03/21/2015 11:03:07 AM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Fire,03/21/2015 11:10:24 AM,400 Block of LEAVENWORTH ST,San Francisco,94102,B04,3,1544,3,3,3,false,Alarm,1,RESCUE SQUAD,8,2,6,Tenderloin,"(37.7851285057104, -122.414455368715)",150801233-RS1 +150861854,FD00A,15032831,,03/27/2015,03/27/2015,03/27/2015 01:16:16 PM,03/27/2015 01:20:49 PM,03/27/2015 01:34:31 PM,03/27/2015 01:34:31 PM,03/27/2015 01:34:31 PM,04/25/2016 01:11:30 PM,04/25/2016 01:11:30 PM,Fire,03/27/2015 01:34:51 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,false,Alarm,1,SUPPORT,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",150861854-FD00A +142811165,E01,14098805,Medical Incident,10/08/2014,10/08/2014,10/08/2014 10:38:21 AM,10/08/2014 10:38:53 AM,10/08/2014 10:39:03 AM,10/08/2014 10:40:06 AM,10/08/2014 10:45:02 AM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 10:54:57 AM,POWELL ST/GEARY ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",142811165-E01 +150592785,RS2,15022635,Structure Fire,02/28/2015,02/28/2015,02/28/2015 06:06:12 PM,02/28/2015 06:06:52 PM,02/28/2015 06:07:09 PM,02/28/2015 06:08:04 PM,02/28/2015 06:14:14 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Fire,02/28/2015 06:19:25 PM,2200 Block of REVERE AVE,San Francisco,94124,B10,42,6381,3,3,3,false,Fire,1,RESCUE SQUAD,8,10,10,Bayview Hunters Point,"(37.7385522672072, -122.402184369233)",150592785-RS2 +160972307,AM04,16038457,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:09:21 PM,04/06/2016 02:10:19 PM,04/06/2016 02:11:05 PM,04/06/2016 02:12:02 PM,04/06/2016 02:13:18 PM,04/06/2016 02:26:11 PM,04/06/2016 02:46:08 PM,Code 2 Transport,04/06/2016 03:12:05 PM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7530339738059, -122.418588598473)",160972307-AM04 +141190307,E06,14040257,Medical Incident,04/29/2014,04/29/2014,04/29/2014 05:31:36 PM,04/29/2014 05:32:02 PM,04/29/2014 05:32:26 PM,04/29/2014 05:33:35 PM,04/29/2014 05:36:01 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Code 2 Transport,04/29/2014 05:48:34 PM,300 Block of DOLORES ST,SAN FRANCISCO,94110,B02,6,5251,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7635158382169, -122.426118705944)",141190307-E06 +160990132,53,16039164,Medical Incident,04/08/2016,04/07/2016,04/08/2016 01:14:40 AM,04/08/2016 01:14:57 AM,04/08/2016 01:15:20 AM,04/08/2016 01:17:31 AM,04/08/2016 01:28:58 AM,04/08/2016 02:08:06 AM,04/08/2016 02:35:01 AM,Code 2 Transport,04/08/2016 03:12:27 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160990132-53 +151402084,RC3,15053196,Medical Incident,05/20/2015,05/20/2015,05/20/2015 02:25:39 PM,05/20/2015 02:26:39 PM,05/20/2015 02:27:49 PM,05/20/2015 02:28:56 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Medical Examiner,05/20/2015 02:35:38 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,South of Market,"(37.7807144867659, -122.408483722327)",151402084-RC3 +150021270,E03,15000694,Medical Incident,01/02/2015,01/02/2015,01/02/2015 12:05:07 PM,01/02/2015 12:07:18 PM,01/02/2015 12:07:43 PM,01/02/2015 12:09:58 PM,01/02/2015 12:13:16 PM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Unable to Locate,01/02/2015 12:14:06 PM,BREEN PL/MCALLISTER ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7806149658662, -122.416138098643)",150021270-E03 +160972534,88,16038475,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:54:03 PM,04/06/2016 02:55:14 PM,04/06/2016 02:55:59 PM,04/06/2016 02:56:08 PM,04/06/2016 02:58:12 PM,04/06/2016 03:09:45 PM,04/06/2016 03:25:33 PM,Code 2 Transport,04/06/2016 03:56:01 PM,COLUMBIA SQUARE ST/FOLSOM ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7778565371375, -122.406436335794)",160972534-88 +160951724,KM12,16037622,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:31:53 PM,04/04/2016 12:33:07 PM,04/04/2016 12:33:34 PM,04/04/2016 12:34:09 PM,04/04/2016 12:39:11 PM,04/04/2016 12:49:08 PM,04/04/2016 01:09:11 PM,Code 2 Transport,04/04/2016 01:27:32 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160951724-KM12 +143112394,E34,14110185,Medical Incident,11/07/2014,11/07/2014,11/07/2014 03:53:56 PM,11/07/2014 03:55:18 PM,11/07/2014 03:56:02 PM,11/07/2014 03:59:15 PM,11/07/2014 03:59:15 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Code 2 Transport,11/07/2014 04:36:11 PM,500 Block of 45TH AVE,San Francisco,94121,B07,34,7274,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7781471959495, -122.506162501356)",143112394-E34 +150321970,FD00A,15012379,,02/01/2015,02/01/2015,02/01/2015 01:35:48 PM,02/01/2015 01:37:06 PM,02/01/2015 01:55:11 PM,02/01/2015 01:55:11 PM,02/01/2015 01:55:11 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Fire,02/01/2015 01:55:27 PM,0 Block of INA CT,San Francisco,94112,B09,43,6164,3,3,3,false,Alarm,1,SUPPORT,2,9,11,Excelsior,"(37.7235977410233, -122.424884406565)",150321970-FD00A +152272352,65,15086605,Medical Incident,08/15/2015,08/15/2015,08/15/2015 02:47:45 PM,08/15/2015 02:48:19 PM,08/15/2015 02:48:28 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Cancelled,08/15/2015 02:48:57 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",152272352-65 +153433255,E17,15132141,Medical Incident,12/09/2015,12/09/2015,12/09/2015 06:29:24 PM,12/09/2015 06:30:59 PM,12/09/2015 06:31:19 PM,12/09/2015 06:32:44 PM,12/09/2015 06:37:29 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 06:54:01 PM,0 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7201828007793, -122.385924774252)",153433255-E17 +152011461,E36,15076576,Medical Incident,07/20/2015,07/20/2015,07/20/2015 11:30:38 AM,07/20/2015 11:30:38 AM,07/20/2015 11:32:59 AM,07/20/2015 11:32:59 AM,07/20/2015 11:37:29 AM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Unable to Locate,07/20/2015 11:55:08 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",152011461-E36 +160970136,71,16038250,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:03:54 AM,04/06/2016 01:08:25 AM,04/06/2016 01:09:04 AM,04/06/2016 01:09:10 AM,04/06/2016 01:17:49 AM,04/06/2016 01:36:27 AM,04/06/2016 01:55:02 AM,Code 2 Transport,04/06/2016 02:32:13 AM,0 Block of RIZAL ST,San Francisco,94107,B03,8,2175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.781822111031, -122.399291985556)",160970136-71 +151781399,E06,15067714,Medical Incident,06/27/2015,06/27/2015,06/27/2015 10:54:43 AM,06/27/2015 10:56:42 AM,06/27/2015 10:57:22 AM,06/27/2015 10:58:54 AM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,No Merit,06/27/2015 11:03:04 AM,0 Block of BRADY ST,San Francisco,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Mission,"(37.773304948777, -122.421051947861)",151781399-E06 +160950544,AM02,16037527,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:09:29 AM,04/04/2016 07:10:04 AM,04/04/2016 07:10:21 AM,04/04/2016 07:11:01 AM,04/04/2016 07:14:18 AM,04/04/2016 07:24:32 AM,04/04/2016 07:55:34 AM,Code 2 Transport,04/04/2016 08:06:23 AM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160950544-AM02 +160981150,55,16038838,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:32:35 AM,04/07/2016 09:35:16 AM,04/07/2016 09:35:26 AM,04/07/2016 09:35:33 AM,04/07/2016 09:42:05 AM,04/07/2016 10:11:34 AM,04/07/2016 10:26:49 AM,Code 2 Transport,04/07/2016 11:02:17 AM,2200 Block of SCOTT ST,San Francisco,94115,B04,38,4124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7905184879495, -122.439291112504)",160981150-55 +153161754,75,15121422,Medical Incident,11/12/2015,11/12/2015,11/12/2015 12:29:35 PM,11/12/2015 12:31:21 PM,11/12/2015 12:33:03 PM,11/12/2015 12:33:21 PM,11/12/2015 12:41:20 PM,11/12/2015 12:51:58 PM,11/12/2015 01:18:12 PM,Code 2 Transport,11/12/2015 02:04:31 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",153161754-75 +161003196,52,16039944,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:27:15 PM,04/09/2016 09:27:15 PM,04/09/2016 09:27:27 PM,04/09/2016 09:27:39 PM,04/09/2016 09:32:00 PM,04/09/2016 09:47:13 PM,04/09/2016 09:53:25 PM,Code 2 Transport,04/09/2016 10:44:07 PM,24TH ST/TREAT AV,San Francisco,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7525727580898, -122.41299517484)",161003196-52 +141180167,FB1,14039781,Water Rescue,04/28/2014,04/28/2014,04/28/2014 11:09:16 AM,04/28/2014 11:09:16 AM,04/28/2014 11:17:12 AM,04/28/2014 11:18:14 AM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Fire,04/28/2014 11:47:16 AM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,,94129,B99,51,4632,,3,3,false,Fire,1,SUPPORT,13,7,2,Presidio,"(37.8066581989584, -122.47471662098)",141180167-FB1 +142510595,77,14087443,Medical Incident,09/08/2014,09/07/2014,09/08/2014 07:44:28 AM,09/08/2014 07:51:16 AM,09/08/2014 07:51:28 AM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Code 2 Transport,09/08/2014 07:51:40 AM,0 Block of KITTREDGE TER,San Francisco,94118,B05,21,4521,2,2,2,true,Non Life-threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.7776757933879, -122.450624807535)",142510595-77 +143600140,E15,14128640,Medical Incident,12/26/2014,12/25/2014,12/26/2014 01:40:48 AM,12/26/2014 01:42:24 AM,12/26/2014 01:42:37 AM,12/26/2014 01:44:43 AM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Code 2 Transport,12/26/2014 01:46:49 AM,GENEVA AV/CAYUGA AV,San Francisco,94112,B09,15,8332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7189286736817, -122.443696071625)",143600140-E15 +143461170,T09,14123282,Alarms,12/12/2014,12/12/2014,12/12/2014 10:25:40 AM,12/12/2014 10:26:44 AM,12/12/2014 10:27:14 AM,12/12/2014 10:27:39 AM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Fire,12/12/2014 10:42:53 AM,1900 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2634,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7497698839567, -122.396784716412)",143461170-T09 +152933354,63,15112696,Medical Incident,10/20/2015,10/20/2015,10/20/2015 07:00:06 PM,10/20/2015 07:02:05 PM,10/20/2015 07:02:48 PM,10/20/2015 07:03:14 PM,10/20/2015 07:05:50 PM,10/20/2015 07:24:21 PM,10/20/2015 07:37:17 PM,Code 2 Transport,10/20/2015 08:20:17 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7677413424145, -122.415468956066)",152933354-63 +141291123,T19,14043842,Structure Fire,05/09/2014,05/09/2014,05/09/2014 10:04:12 AM,05/09/2014 10:04:41 AM,05/09/2014 10:09:29 AM,05/09/2014 10:09:29 AM,05/09/2014 10:16:52 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Fire,05/09/2014 10:24:59 AM,2200 Block of 27TH AVE,San Francisco,94116,B08,40,7471,3,3,3,false,Alarm,1,TRUCK,5,8,4,Sunset/Parkside,"(37.7454676868028, -122.484528373552)",141291123-T19 +143601875,E01,14128829,Medical Incident,12/26/2014,12/26/2014,12/26/2014 03:49:51 PM,12/26/2014 03:50:32 PM,12/26/2014 03:50:57 PM,12/26/2014 03:51:05 PM,12/26/2014 03:51:53 PM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Code 2 Transport,12/26/2014 03:58:07 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",143601875-E01 +152580445,E08,15098535,Medical Incident,09/15/2015,09/14/2015,09/15/2015 06:00:41 AM,09/15/2015 06:01:00 AM,09/15/2015 06:01:18 AM,09/15/2015 06:03:25 AM,09/15/2015 06:04:55 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 2 Transport,09/15/2015 06:13:06 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",152580445-E08 +160962481,77,16038068,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:37:07 PM,04/05/2016 03:37:07 PM,04/05/2016 03:37:22 PM,04/05/2016 03:37:29 PM,04/05/2016 03:40:58 PM,04/05/2016 03:57:00 PM,04/05/2016 04:24:25 PM,Code 2 Transport,04/05/2016 04:48:13 PM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",160962481-77 +160980035,68,16038728,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:17:15 AM,04/07/2016 12:19:18 AM,04/07/2016 12:19:24 AM,04/07/2016 12:19:33 AM,04/07/2016 12:29:34 AM,04/07/2016 01:00:55 AM,04/07/2016 01:22:37 AM,Code 2 Transport,04/07/2016 02:09:48 AM,1100 Block of BROADWAY,San Francisco,94109,B04,41,1534,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7967543436034, -122.416027111974)",160980035-68 +152343452,B04,15089375,Alarms,08/22/2015,08/22/2015,08/22/2015 08:26:15 PM,08/22/2015 08:27:49 PM,08/22/2015 08:33:42 PM,08/22/2015 08:34:51 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Fire,08/22/2015 08:38:05 PM,3100 Block of CLAY ST,San Francisco,94115,B04,10,4335,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7894069839183, -122.444949721778)",152343452-B04 +160940151,60,16037109,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:52:08 AM,04/03/2016 12:52:08 AM,04/03/2016 12:52:29 AM,04/03/2016 12:52:38 AM,04/03/2016 01:09:06 AM,04/03/2016 01:29:05 AM,04/03/2016 01:40:08 AM,Code 2 Transport,04/03/2016 02:40:54 AM,0 Block of LEDYARD ST,San Francisco,94124,B10,42,6363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332354676556, -122.402116556292)",160940151-60 +160932355,85,16036933,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:01:50 PM,04/02/2016 04:04:52 PM,04/02/2016 04:24:16 PM,04/02/2016 04:24:16 PM,04/02/2016 04:38:43 PM,04/02/2016 04:48:39 PM,04/02/2016 05:20:55 PM,Code 2 Transport,04/02/2016 05:53:02 PM,1700 Block of DIAMOND ST,San Francisco,94131,B06,26,5557,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7435786028451, -122.435650218165)",160932355-85 +143263796,KM15,14115690,Medical Incident,11/22/2014,11/22/2014,11/22/2014 10:19:59 PM,11/22/2014 10:20:35 PM,11/22/2014 10:20:59 PM,11/22/2014 10:21:34 PM,11/22/2014 10:25:32 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Cancelled,11/22/2014 10:36:42 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",143263796-KM15 +150644003,58,15024672,Medical Incident,03/05/2015,03/05/2015,03/05/2015 10:27:57 PM,03/05/2015 10:29:15 PM,03/05/2015 10:29:29 PM,03/05/2015 10:32:40 PM,03/05/2015 10:41:25 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Gone on Arrival,03/05/2015 10:46:18 PM,FRANKLIN ST/GROVE ST,San Francisco,94102,B02,36,3214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7780207607813, -122.421520699389)",150644003-58 +153301448,84,15126997,Medical Incident,11/26/2015,11/26/2015,11/26/2015 01:23:21 PM,11/26/2015 01:25:23 PM,11/26/2015 01:26:22 PM,11/26/2015 01:26:31 PM,11/26/2015 01:34:07 PM,11/26/2015 01:53:10 PM,11/26/2015 02:04:33 PM,Code 2 Transport,11/26/2015 02:58:42 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7658582826035, -122.419816092644)",153301448-84 +160992701,68,16039397,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:13:17 PM,04/08/2016 05:13:17 PM,04/08/2016 05:13:31 PM,04/08/2016 05:13:58 PM,04/08/2016 05:20:35 PM,04/08/2016 05:31:43 PM,04/08/2016 05:56:33 PM,Code 2 Transport,04/08/2016 06:43:02 PM,500 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7803303915285, -122.420129233501)",160992701-68 +141761363,E05,14060706,Traffic Collision,06/25/2014,06/25/2014,06/25/2014 11:27:38 AM,06/25/2014 11:27:38 AM,06/25/2014 11:30:45 AM,06/25/2014 11:30:45 AM,06/25/2014 11:31:22 AM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Patient Declined Transport,06/25/2014 11:32:33 AM,PINE ST/LAGUNA ST,San Francisco,94109,B04,38,3325,B,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7885770670933, -122.428712111002)",141761363-E05 +150952763,68,15036215,Medical Incident,04/05/2015,04/05/2015,04/05/2015 08:37:31 PM,04/05/2015 08:40:20 PM,04/05/2015 08:41:13 PM,04/05/2015 08:41:31 PM,04/05/2015 08:54:29 PM,04/05/2015 09:19:05 PM,04/05/2015 09:23:02 PM,Code 2 Transport,04/05/2015 10:10:25 PM,0 Block of GRATTAN ST,San Francisco,94117,B05,12,5161,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7640571293154, -122.448926080776)",150952763-68 +151940119,E01,15073857,Medical Incident,07/13/2015,07/12/2015,07/13/2015 12:50:33 AM,07/13/2015 12:52:00 AM,07/13/2015 12:53:19 AM,07/13/2015 12:55:16 AM,07/13/2015 12:58:09 AM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/13/2015 12:58:19 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",151940119-E01 +161001074,KM09,16039693,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:59:39 AM,04/09/2016 10:00:45 AM,04/09/2016 10:21:51 AM,04/09/2016 10:23:17 AM,04/09/2016 10:44:42 AM,04/09/2016 11:12:31 AM,04/09/2016 11:50:55 AM,Code 2 Transport,04/09/2016 12:20:06 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",161001074-KM09 +160991147,AM08,16039250,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:33:19 AM,04/08/2016 10:33:59 AM,04/08/2016 10:34:36 AM,04/08/2016 10:35:25 AM,04/08/2016 10:39:12 AM,04/08/2016 10:57:36 AM,04/08/2016 11:25:25 AM,Code 2 Transport,04/08/2016 11:50:26 AM,200 Block of SHOTWELL ST,San Francisco,94110,B02,7,5237,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7644380015359, -122.416376372761)",160991147-AM08 +160961851,57,16038020,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:06:45 PM,04/05/2016 01:08:11 PM,04/05/2016 01:12:50 PM,04/05/2016 01:13:32 PM,04/05/2016 01:32:46 PM,04/05/2016 02:57:06 PM,04/05/2016 02:57:08 PM,Code 2 Transport,04/05/2016 02:57:12 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160961851-57 +141272072,E22,14043141,Medical Incident,05/07/2014,05/07/2014,05/07/2014 12:05:37 PM,05/07/2014 12:06:49 PM,05/07/2014 12:10:37 PM,05/07/2014 12:12:52 PM,05/07/2014 12:15:30 PM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Against Medical Advice,05/07/2014 12:30:47 PM,1500 Block of 12TH AVE,San Francisco,94122,B08,22,735,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7592342080011, -122.469266161643)",141272072-E22 +152111499,T19,15080343,Vehicle Fire,07/30/2015,07/30/2015,07/30/2015 12:01:44 PM,07/30/2015 12:04:35 PM,07/30/2015 12:04:57 PM,07/30/2015 12:06:21 PM,07/30/2015 12:09:55 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 12:12:32 PM,JUNIPERO SERRA BL/HOLLOWAY AV,San Francisco,94127,B09,19,8437,3,3,3,false,Fire,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7215688596034, -122.472634533165)",152111499-T19 +150384112,KM07,15015009,Medical Incident,02/07/2015,02/07/2015,02/07/2015 11:56:53 PM,02/07/2015 11:57:26 PM,02/07/2015 11:57:49 PM,02/07/2015 11:58:57 PM,02/08/2015 12:07:59 AM,02/08/2015 12:08:00 AM,02/08/2015 12:10:30 AM,Code 2 Transport,02/08/2015 12:31:22 AM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",150384112-KM07 +143434064,B01,14122142,Other,12/09/2014,12/09/2014,12/09/2014 10:06:21 PM,12/09/2014 10:06:59 PM,12/09/2014 10:07:56 PM,12/09/2014 10:08:02 PM,12/09/2014 10:10:44 PM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Fire,12/09/2014 10:28:52 PM,400 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",143434064-B01 +160932422,67,16036937,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:23:04 PM,04/02/2016 04:25:20 PM,04/02/2016 04:25:56 PM,04/02/2016 04:26:03 PM,04/02/2016 04:31:34 PM,04/02/2016 04:36:27 PM,04/02/2016 05:00:22 PM,Code 2 Transport,04/02/2016 05:22:22 PM,1100 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160932422-67 +150463932,62,15018127,Medical Incident,02/15/2015,02/15/2015,02/15/2015 11:43:00 PM,02/15/2015 11:43:00 PM,02/15/2015 11:43:28 PM,02/15/2015 11:43:59 PM,02/15/2015 11:46:49 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Patient Declined Transport,02/16/2015 12:33:12 AM,100 Block of HARTFORD ST,San Francisco,94114,B05,6,5417,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7601511990346, -122.433893032003)",150463932-62 +150450723,E23,15017405,Medical Incident,02/14/2015,02/13/2015,02/14/2015 06:46:21 AM,02/14/2015 06:46:50 AM,02/14/2015 06:47:03 AM,02/14/2015 06:48:25 AM,02/14/2015 06:53:10 AM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,Code 3 Transport,02/14/2015 07:13:53 AM,2600 Block of IRVING ST,San Francisco,94122,B08,22,7511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.76321532639, -122.486238493419)",150450723-E23 +160981040,62,16038828,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:00:58 AM,04/07/2016 09:01:39 AM,04/07/2016 09:02:09 AM,04/07/2016 09:02:14 AM,04/07/2016 09:07:38 AM,04/07/2016 09:21:50 AM,04/07/2016 09:38:06 AM,Code 2 Transport,04/07/2016 10:16:27 AM,500 Block of 9TH ST,San Francisco,94103,B03,29,2331,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",160981040-62 +141050062,87,14035322,Medical Incident,04/15/2014,04/14/2014,04/15/2014 07:15:57 AM,04/15/2014 07:18:41 AM,04/15/2014 07:19:37 AM,04/15/2014 07:20:27 AM,04/15/2014 07:27:51 AM,04/15/2014 07:50:14 AM,04/15/2014 08:04:49 AM,Code 2 Transport,04/15/2014 08:52:29 AM,100 Block of MASON ST,SAN FRANCISCO,94102,B03,1,1366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",141050062-87 +160982477,62,16038984,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:23:41 PM,04/07/2016 03:23:41 PM,04/07/2016 03:25:16 PM,04/07/2016 03:25:29 PM,04/07/2016 03:42:15 PM,04/07/2016 03:46:31 PM,04/07/2016 04:06:36 PM,Code 2 Transport,04/07/2016 04:21:00 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160982477-62 +122450031,78,12080869,Medical Incident,09/01/2012,08/31/2012,09/01/2012 01:51:41 AM,09/01/2012 01:52:39 AM,09/01/2012 01:52:50 AM,09/01/2012 01:53:24 AM,09/01/2012 01:59:16 AM,09/01/2012 02:24:10 AM,09/01/2012 02:31:53 AM,Code 2 Transport,09/01/2012 03:15:47 AM,2400 Block of LARKIN ST,SF,94109,B01,41,1626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8003597667856, -122.421041385631)",122450031-78 +132230341,E03,13075458,Medical Incident,08/11/2013,08/11/2013,08/11/2013 10:12:19 PM,08/11/2013 10:15:09 PM,08/11/2013 10:15:26 PM,08/11/2013 10:16:58 PM,08/11/2013 10:20:10 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 10:25:03 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",132230341-E03 +103530118,E44,10113267,Vehicle Fire,12/19/2010,12/18/2010,12/19/2010 06:30:32 AM,12/19/2010 06:31:29 AM,12/19/2010 06:31:48 AM,12/19/2010 06:33:35 AM,12/19/2010 06:36:58 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/19/2010 07:01:15 AM,1300 Block of EGBERT AVE,SF,94124,B10,17,6615,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7221736000048, -122.391637312216)",103530118-E44 +130940389,E06,13031634,Structure Fire,04/04/2013,04/04/2013,04/04/2013 10:39:54 PM,04/04/2013 10:41:00 PM,04/04/2013 10:41:18 PM,04/04/2013 10:41:46 PM,04/04/2013 10:43:14 PM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/04/2013 10:54:54 PM,100 Block of NOE ST,SF,94114,B05,6,5212,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7662576774281, -122.433362682614)",130940389-E06 +120170144,E25,12005680,Administrative,01/17/2012,01/17/2012,01/17/2012 11:42:05 AM,01/17/2012 11:42:07 AM,01/17/2012 11:42:13 AM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 11:42:33 AM,3300 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,false,,1,ENGINE,1,None,None,None,"(37.7475912199361, -122.387182780653)",120170144-E25 +140890342,55,14030116,Medical Incident,03/30/2014,03/30/2014,03/30/2014 09:33:54 PM,03/30/2014 09:36:59 PM,03/30/2014 09:37:30 PM,03/30/2014 09:38:05 PM,03/30/2014 09:41:50 PM,03/30/2014 09:51:56 PM,03/30/2014 10:10:30 PM,Code 2 Transport,03/30/2014 10:39:49 PM,700 Block of HAIGHT ST,SAN FRANCISCO,94117,B05,21,4142,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7716381141296, -122.434564848231)",140890342-55 +123010002,T14,12099631,Alarms,10/27/2012,10/26/2012,10/27/2012 12:08:07 AM,10/27/2012 12:09:42 AM,10/27/2012 12:09:53 AM,10/27/2012 12:11:19 AM,10/27/2012 12:14:36 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:31:39 AM,3800 Block of BALBOA ST,SF,94121,B07,34,7263,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7755386590019, -122.499981004468)",123010002-T14 +121210163,KM05,12040169,Medical Incident,04/30/2012,04/30/2012,04/30/2012 12:38:39 PM,04/30/2012 12:40:11 PM,04/30/2012 12:40:24 PM,04/30/2012 12:41:03 PM,04/30/2012 12:53:41 PM,04/30/2012 01:07:05 PM,04/30/2012 01:20:41 PM,Code 2 Transport,04/30/2012 01:39:44 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121210163-KM05 +160732534,78,16029072,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:13:23 PM,03/13/2016 07:15:19 PM,03/13/2016 07:16:53 PM,03/13/2016 07:17:05 PM,03/13/2016 07:22:58 PM,03/13/2016 07:48:00 PM,03/13/2016 08:03:43 PM,Code 2 Transport,03/13/2016 08:42:50 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",160732534-78 +122110206,E35,12070109,Traffic Collision,07/29/2012,07/29/2012,07/29/2012 03:47:29 PM,07/29/2012 03:48:17 PM,07/29/2012 03:49:12 PM,07/29/2012 03:50:33 PM,07/29/2012 03:58:58 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 04:28:33 PM,300 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",122110206-E35 +110290045,E02,11009431,Traffic Collision,01/29/2011,01/28/2011,01/29/2011 02:27:08 AM,01/29/2011 02:27:08 AM,01/29/2011 02:28:00 AM,01/29/2011 02:30:10 AM,01/29/2011 02:41:40 AM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/29/2011 02:41:43 AM,COWELL PL/VALLEJO ST,SF,94111,B01,13,1213,2,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7994557113148, -122.40184382489)",110290045-E02 +120370391,AM14,12012525,Medical Incident,02/06/2012,02/06/2012,02/06/2012 11:05:23 PM,02/06/2012 11:06:33 PM,02/06/2012 11:07:06 PM,02/06/2012 11:07:58 PM,02/06/2012 11:12:20 PM,02/06/2012 11:19:47 PM,02/06/2012 11:38:12 PM,Code 2 Transport,02/07/2012 12:08:40 AM,WEBSTER ST/ELLIS ST,SF,94115,B04,5,3514,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7825698868934, -122.43079788324)",120370391-AM14 +160711265,53,16028191,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:57:16 AM,03/11/2016 10:57:35 AM,03/11/2016 10:59:44 AM,03/11/2016 10:59:55 AM,03/11/2016 11:10:31 AM,03/11/2016 11:29:54 AM,03/11/2016 11:44:45 AM,Code 2 Transport,03/11/2016 12:24:21 PM,SUTTER ST/JONES ST,San Francisco,94109,B01,3,1463,2,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7885982027896, -122.413541442382)",160711265-53 +111730104,88,11057011,Medical Incident,06/22/2011,06/22/2011,06/22/2011 09:03:53 AM,06/22/2011 09:04:57 AM,06/22/2011 09:05:33 AM,06/22/2011 09:09:19 AM,06/22/2011 09:14:41 AM,06/22/2011 09:28:01 AM,06/22/2011 09:42:49 AM,Code 2 Transport,06/22/2011 10:09:50 AM,1100 Block of MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",111730104-88 +160580246,59,16022964,Medical Incident,02/27/2016,02/26/2016,02/27/2016 01:40:34 AM,02/27/2016 01:41:45 AM,02/27/2016 01:42:03 AM,02/27/2016 01:42:09 AM,02/27/2016 01:51:38 AM,02/27/2016 02:24:39 AM,02/27/2016 02:45:32 AM,Code 2 Transport,02/27/2016 03:19:54 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160580246-59 +111570275,E03,11051981,Medical Incident,06/06/2011,06/06/2011,06/06/2011 04:39:02 PM,06/06/2011 04:39:33 PM,06/06/2011 04:39:45 PM,06/06/2011 04:41:30 PM,06/06/2011 04:42:56 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/06/2011 04:47:36 PM,600 Block of POST ST,SF,94102,B01,3,1451,E,E,3,true,,1,ENGINE,2,1,3,Tenderloin,"(37.7877770164282, -122.41201048788)",111570275-E03 +130250347,E02,13008762,Alarms,01/25/2013,01/25/2013,01/25/2013 07:27:26 PM,01/25/2013 07:28:49 PM,01/25/2013 07:28:56 PM,01/25/2013 07:30:35 PM,01/25/2013 07:31:42 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/25/2013 07:37:37 PM,800 Block of STOCKTON ST,SF,94108,B01,2,1326,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7936278952214, -122.407746881294)",130250347-E02 +132310332,E19,13078123,Traffic Collision,08/19/2013,08/19/2013,08/19/2013 06:32:32 PM,08/19/2013 06:33:32 PM,08/19/2013 06:35:30 PM,08/19/2013 06:36:47 PM,08/19/2013 06:39:41 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,No Merit,08/19/2013 06:42:58 PM,19TH AV/OCEAN AV,SF,94132,B08,19,7413,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7324561388297, -122.474954620812)",132310332-E19 +112760043,AM18,11091241,Medical Incident,10/03/2011,10/02/2011,10/03/2011 02:44:09 AM,10/03/2011 02:44:24 AM,10/03/2011 02:44:56 AM,10/03/2011 02:45:48 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 02:55:32 AM,1200 Block of HARRISON ST,SF,94103,B03,29,2333,3,2,2,false,,1,PRIVATE,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",112760043-AM18 +140320143,E16,14010801,Traffic Collision,02/01/2014,02/01/2014,02/01/2014 11:03:50 AM,02/01/2014 11:03:50 AM,02/01/2014 11:03:58 AM,02/01/2014 11:04:16 AM,02/01/2014 11:06:25 AM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 11:18:13 AM,VAN NESS AV/FRANCISCO ST,SF,94109,B04,16,3144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8032055067298, -122.424918803949)",140320143-E16 +112620172,D3,11086447,Structure Fire,09/19/2011,09/19/2011,09/19/2011 12:06:42 PM,09/19/2011 12:07:30 PM,09/19/2011 12:07:52 PM,09/19/2011 12:08:57 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 12:12:32 PM,1200 Block of MISSOURI ST,SF,94107,B10,9,2634,3,3,3,false,,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.7512947118368, -122.395516673668)",112620172-D3 +112170310,81,11071814,Medical Incident,08/05/2011,08/05/2011,08/05/2011 06:50:26 PM,08/05/2011 06:51:17 PM,08/05/2011 06:51:54 PM,08/05/2011 06:52:02 PM,08/05/2011 06:56:41 PM,08/05/2011 07:09:28 PM,08/05/2011 07:24:59 PM,Code 2 Transport,08/05/2011 08:05:01 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,E,3,true,,1,MEDIC,3,6,9,Mission,"(37.7562319946436, -122.418893283075)",112170310-81 +120620004,E11,12020230,Structure Fire,03/02/2012,03/01/2012,03/02/2012 12:32:05 AM,03/02/2012 12:35:43 AM,03/02/2012 12:36:00 AM,03/02/2012 12:37:17 AM,03/02/2012 12:40:35 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/02/2012 12:43:07 AM,3300 Block of 20TH ST,SF,94110,B06,7,5447,3,3,3,true,Fire,1,ENGINE,7,6,9,Mission,"(37.7588520014309, -122.416331137192)",120620004-E11 +113520281,KM04,11116942,Medical Incident,12/18/2011,12/18/2011,12/18/2011 06:05:20 PM,12/18/2011 06:05:52 PM,12/18/2011 06:06:08 PM,12/18/2011 06:08:12 PM,12/18/2011 06:15:02 PM,12/18/2011 06:33:39 PM,12/18/2011 06:52:21 PM,Code 2 Transport,12/18/2011 07:14:50 PM,0 Block of GRAFTON AVE,SF,94112,B09,15,8466,3,3,3,false,,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7199844662207, -122.453593851281)",113520281-KM04 +121100027,E07,12036250,Medical Incident,04/19/2012,04/18/2012,04/19/2012 02:56:51 AM,04/19/2012 02:57:16 AM,04/19/2012 02:57:29 AM,04/19/2012 02:58:58 AM,04/19/2012 03:01:23 AM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/19/2012 03:05:00 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",121100027-E07 +132890260,KM10,13098358,Medical Incident,10/16/2013,10/16/2013,10/16/2013 04:44:47 PM,10/16/2013 04:46:17 PM,10/16/2013 04:46:31 PM,10/16/2013 04:47:07 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 04:48:35 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",132890260-KM10 +132730051,67,13092673,Medical Incident,09/30/2013,09/29/2013,09/30/2013 03:22:24 AM,09/30/2013 03:22:47 AM,09/30/2013 03:23:06 AM,09/30/2013 03:23:29 AM,09/30/2013 03:42:31 AM,09/30/2013 04:22:02 AM,09/30/2013 04:53:33 AM,Code 2 Transport,09/30/2013 05:28:55 AM,POLK ST/SUTTER ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",132730051-67 +140940176,KM10,14031591,Medical Incident,04/04/2014,04/04/2014,04/04/2014 12:40:17 PM,04/04/2014 12:44:15 PM,04/04/2014 12:45:53 PM,04/04/2014 12:46:28 PM,04/04/2014 12:58:09 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,No Merit,04/04/2014 01:16:07 PM,1400 Block of BRODERICK ST,SAN FRANCISCO,94115,B05,10,4235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,2,Japantown,"(37.7838654796396, -122.441370226887)",140940176-KM10 +140290243,65,14009932,Medical Incident,01/29/2014,01/29/2014,01/29/2014 03:21:05 PM,01/29/2014 03:21:54 PM,01/29/2014 03:22:16 PM,01/29/2014 03:22:33 PM,01/29/2014 03:31:35 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Medical Examiner,01/29/2014 04:52:23 PM,300 Block of SCOTT ST,SF,94117,B05,21,4141,,E,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7728730905811, -122.435725726073)",140290243-65 +122940063,99,12097406,Medical Incident,10/20/2012,10/19/2012,10/20/2012 03:18:59 AM,10/20/2012 03:21:02 AM,10/20/2012 03:22:01 AM,10/20/2012 03:22:13 AM,10/20/2012 03:47:25 AM,10/20/2012 03:47:28 AM,10/20/2012 04:03:52 AM,Code 2 Transport,10/20/2012 04:24:02 AM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",122940063-99 +132640142,86,13089474,Medical Incident,09/21/2013,09/21/2013,09/21/2013 09:35:36 AM,09/21/2013 09:35:36 AM,09/21/2013 09:35:58 AM,09/21/2013 09:36:15 AM,09/21/2013 09:42:51 AM,09/21/2013 10:16:40 AM,09/21/2013 10:31:58 AM,Code 2 Transport,09/21/2013 11:02:42 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,2,2,2,false,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",132640142-86 +160670199,AM24,16026576,Medical Incident,03/07/2016,03/06/2016,03/07/2016 02:53:08 AM,03/07/2016 02:53:36 AM,03/07/2016 02:54:20 AM,03/07/2016 02:54:59 AM,03/07/2016 03:02:08 AM,03/07/2016 03:22:45 AM,03/07/2016 03:45:15 AM,Code 2 Transport,03/07/2016 04:11:32 AM,1700 Block of GRANT AVE,San Francisco,94133,B01,28,1264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8026749829679, -122.408060868534)",160670199-AM24 +160531162,KM08,16021153,Medical Incident,02/22/2016,02/22/2016,02/22/2016 10:23:42 AM,02/22/2016 10:31:55 AM,02/22/2016 10:32:27 AM,02/22/2016 10:32:27 AM,02/22/2016 10:40:02 AM,02/22/2016 10:56:24 AM,02/22/2016 11:15:05 AM,Code 2 Transport,02/22/2016 11:46:05 AM,FULTON ST/8TH AV,San Francisco,94122,B07,31,7133,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7733982051293, -122.4658831608)",160531162-KM08 +122080326,E35,12069283,Medical Incident,07/26/2012,07/26/2012,07/26/2012 10:40:51 PM,07/26/2012 10:46:52 PM,07/26/2012 10:47:25 PM,07/26/2012 10:48:50 PM,07/26/2012 10:51:20 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/26/2012 11:01:13 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",122080326-E35 +120400012,84,12013193,Medical Incident,02/09/2012,02/08/2012,02/09/2012 01:17:00 AM,02/09/2012 01:17:48 AM,02/09/2012 01:18:05 AM,02/09/2012 01:19:56 AM,02/09/2012 01:22:36 AM,02/09/2012 01:35:39 AM,02/09/2012 01:43:43 AM,Code 2 Transport,02/09/2012 02:08:35 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",120400012-84 +131220271,E08,13041092,Medical Incident,05/02/2013,05/02/2013,05/02/2013 02:22:46 PM,05/02/2013 02:24:56 PM,05/02/2013 02:26:03 PM,05/02/2013 02:26:18 PM,05/02/2013 02:30:18 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 02:52:56 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",131220271-E08 +133080324,B02,13104833,Alarms,11/04/2013,11/04/2013,11/04/2013 06:30:56 PM,11/04/2013 06:32:36 PM,11/04/2013 06:32:54 PM,11/04/2013 06:34:08 PM,11/04/2013 06:37:54 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Fire,11/04/2013 06:47:55 PM,700 Block of MCALLISTER ST,SF,94102,B02,5,3316,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7794115468887, -122.425174050161)",133080324-B02 +140310147,85,14010515,Traffic Collision,01/31/2014,01/31/2014,01/31/2014 12:49:48 PM,01/31/2014 12:50:15 PM,01/31/2014 12:51:45 PM,01/31/2014 12:52:56 PM,01/31/2014 12:59:03 PM,01/31/2014 01:44:29 PM,01/31/2014 01:58:18 PM,Other,01/31/2014 03:00:59 PM,LOMBARD ST/LAGUNA ST,SF,94123,B04,16,3352,,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8004692165623, -122.431115291336)",140310147-85 +121120184,E03,12037127,Structure Fire,04/21/2012,04/21/2012,04/21/2012 11:11:47 AM,04/21/2012 11:13:20 AM,04/21/2012 11:13:49 AM,04/21/2012 11:15:00 AM,04/21/2012 11:15:25 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 11:24:22 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Fire,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",121120184-E03 +160333038,71,16013134,Medical Incident,02/02/2016,02/02/2016,02/02/2016 07:30:16 PM,02/02/2016 07:32:18 PM,02/02/2016 07:35:01 PM,02/02/2016 07:35:08 PM,02/02/2016 07:48:30 PM,02/02/2016 07:58:04 PM,02/02/2016 08:11:18 PM,Code 2 Transport,02/02/2016 08:44:55 PM,5000 Block of ANZA ST,San Francisco,94121,B07,34,7267,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7774153923634, -122.502273715508)",160333038-71 +160363009,52,16014359,Medical Incident,02/05/2016,02/05/2016,02/05/2016 05:30:25 PM,02/05/2016 05:31:26 PM,02/05/2016 05:31:44 PM,02/05/2016 05:31:52 PM,02/05/2016 05:36:49 PM,02/05/2016 05:51:35 PM,02/05/2016 06:01:52 PM,Code 2 Transport,02/05/2016 06:29:15 PM,5TH ST/BRANNAN ST,San Francisco,94107,B03,8,2241,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7765683820103, -122.398755450545)",160363009-52 +160651328,71,16025898,Medical Incident,03/05/2016,03/05/2016,03/05/2016 11:28:00 AM,03/05/2016 11:28:00 AM,03/05/2016 11:28:25 AM,03/05/2016 11:28:41 AM,03/05/2016 11:33:50 AM,03/05/2016 11:47:48 AM,03/05/2016 12:16:28 PM,Code 2 Transport,03/05/2016 12:37:19 PM,VAN NESS AV/BUSH ST,San Francisco,94109,B04,3,3156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7884896423018, -122.421948587259)",160651328-71 +112430134,E38,11080089,Other,08/31/2011,08/31/2011,08/31/2011 10:16:41 AM,08/31/2011 10:21:22 AM,08/31/2011 10:21:39 AM,08/31/2011 10:22:21 AM,08/31/2011 10:25:49 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,08/31/2011 10:31:14 AM,2000 Block of FRANKLIN ST,SF,94109,B04,38,3226,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7932922930477, -122.424537680646)",112430134-E38 +102300144,B10,10072354,Alarms,08/18/2010,08/18/2010,08/18/2010 11:52:22 AM,08/18/2010 11:53:20 AM,08/18/2010 11:54:08 AM,08/18/2010 11:54:54 AM,08/18/2010 11:59:10 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Fire,08/18/2010 12:12:02 PM,300 Block of NEWHALL ST,SF,94124,B10,25,6457,3,3,3,false,,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7425496105821, -122.3854005001)",102300144-B10 +130010132,T02,13000086,Alarms,01/01/2013,12/31/2012,01/01/2013 01:59:29 AM,01/01/2013 02:02:36 AM,01/01/2013 02:05:13 AM,01/01/2013 02:08:44 AM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,01/01/2013 02:08:47 AM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",130010132-T02 +111580206,B04,11052256,HazMat,06/07/2011,06/07/2011,06/07/2011 02:20:05 PM,06/07/2011 02:21:47 PM,06/07/2011 02:22:24 PM,06/07/2011 02:23:49 PM,06/07/2011 02:26:44 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 02:37:19 PM,4400 Block of GEARY BLVD,SF,94118,B07,31,7135,3,3,3,false,,1,CHIEF,1,7,1,Inner Richmond,"(37.7810280644975, -122.466965657749)",111580206-B04 +122120037,KM04,12070258,Medical Incident,07/30/2012,07/29/2012,07/30/2012 04:20:53 AM,07/30/2012 04:21:09 AM,07/30/2012 04:23:18 AM,07/30/2012 04:24:42 AM,07/30/2012 04:24:23 AM,07/30/2012 04:44:39 AM,07/30/2012 04:49:30 AM,Code 3 Transport,07/30/2012 05:35:02 AM,MISSION ST/CLARION AL,SF,94110,B02,7,5423,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7630508400294, -122.419476288648)",122120037-KM04 +103120083,E14,10099975,Medical Incident,11/08/2010,11/08/2010,11/08/2010 08:21:20 AM,11/08/2010 08:21:36 AM,11/08/2010 08:23:36 AM,11/08/2010 08:24:31 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/08/2010 08:26:18 AM,GREAT HY/BALBOA ST,SF,94121,B07,34,7312,2,2,2,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7750759610096, -122.511294923938)",103120083-E14 +122760437,E02,12091346,Other,10/02/2012,10/02/2012,10/02/2012 10:20:46 PM,10/02/2012 10:20:46 PM,10/02/2012 10:20:46 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Fire,10/02/2012 10:35:26 PM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.7977530904723, -122.406401665376)",122760437-E02 +112960307,71,11098293,Medical Incident,10/23/2011,10/23/2011,10/23/2011 07:04:46 PM,10/23/2011 07:06:25 PM,10/23/2011 07:06:55 PM,10/23/2011 07:07:33 PM,10/23/2011 07:10:40 PM,10/23/2011 07:26:24 PM,10/23/2011 07:50:21 PM,Code 2 Transport,10/23/2011 08:15:54 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112960307-71 +123500044,93,12116920,Medical Incident,12/15/2012,12/14/2012,12/15/2012 02:39:42 AM,12/15/2012 02:40:44 AM,12/15/2012 02:47:23 AM,12/15/2012 02:48:05 AM,12/15/2012 03:05:44 AM,12/15/2012 03:20:18 AM,12/15/2012 03:32:23 AM,Code 2 Transport,12/15/2012 03:55:52 AM,BEACH ST/JONES ST,SF,94133,B01,28,1521,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8070725139897, -122.417260632444)",123500044-93 +160280479,55,16010968,Medical Incident,01/28/2016,01/27/2016,01/28/2016 06:34:12 AM,01/28/2016 06:35:56 AM,01/28/2016 06:37:04 AM,01/28/2016 06:38:04 AM,01/28/2016 06:54:46 AM,01/28/2016 07:21:28 AM,01/28/2016 08:07:22 AM,Code 2 Transport,01/28/2016 08:42:53 AM,200 Block of STRATFORD DR,San Francisco,94132,B09,19,8752,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7206719216771, -122.473717580095)",160280479-55 +160512494,58,16020546,Medical Incident,02/20/2016,02/20/2016,02/20/2016 05:41:41 PM,02/20/2016 05:43:13 PM,02/20/2016 05:43:30 PM,02/20/2016 05:43:43 PM,02/20/2016 05:48:57 PM,02/20/2016 05:59:32 PM,02/20/2016 06:12:52 PM,Code 2 Transport,02/20/2016 06:39:46 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",160512494-58 +121020318,66,12033935,Medical Incident,04/11/2012,04/11/2012,04/11/2012 08:54:22 PM,04/11/2012 08:54:59 PM,04/11/2012 08:55:19 PM,04/11/2012 08:56:11 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 08:57:27 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,A,A,2,true,Potentially Life-Threatening,1,MEDIC,7,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",121020318-66 +111810229,AP,11059760,Other,06/30/2011,06/30/2011,06/30/2011 03:00:40 PM,06/30/2011 03:00:40 PM,06/30/2011 03:00:40 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Fire,06/30/2011 03:00:49 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",111810229-AP +130590358,E12,13019962,Medical Incident,02/28/2013,02/28/2013,02/28/2013 11:04:00 PM,02/28/2013 11:04:00 PM,02/28/2013 11:04:32 PM,02/28/2013 11:06:07 PM,02/28/2013 11:09:10 PM,04/25/2016 01:54:04 PM,04/25/2016 01:54:04 PM,Other,02/28/2013 11:20:46 PM,1700 Block of OAK ST,SF,94117,B05,21,4524,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7717190060183, -122.44812427582)",130590358-E12 +113640338,E11,11121033,Medical Incident,12/30/2011,12/30/2011,12/30/2011 08:04:05 PM,12/30/2011 08:04:53 PM,12/30/2011 08:05:12 PM,12/30/2011 08:06:04 PM,12/30/2011 08:07:56 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,Other,12/30/2011 08:23:39 PM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7497020110556, -122.420499334167)",113640338-E11 +110320011,T15,11010350,Alarms,02/01/2011,01/31/2011,02/01/2011 01:18:29 AM,02/01/2011 01:18:50 AM,02/01/2011 01:19:11 AM,02/01/2011 01:20:37 AM,02/01/2011 01:23:18 AM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,02/01/2011 01:28:06 AM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,false,,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",110320011-T15 +110520044,B01,11017114,Alarms,02/21/2011,02/20/2011,02/21/2011 05:28:58 AM,02/21/2011 05:30:06 AM,02/21/2011 05:30:21 AM,02/21/2011 05:32:20 AM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 05:35:27 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,CHIEF,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",110520044-B01 +160270085,53,16010516,Medical Incident,01/27/2016,01/26/2016,01/27/2016 12:45:48 AM,01/27/2016 12:46:24 AM,01/27/2016 12:46:40 AM,01/27/2016 12:46:48 AM,01/27/2016 12:53:24 AM,01/27/2016 01:12:28 AM,01/27/2016 01:21:19 AM,Code 2 Transport,01/27/2016 02:06:52 AM,900 Block of FOLSOM ST,San Francisco,94103,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7798915874961, -122.403958049432)",160270085-53 +111880095,E32,11062088,Traffic Collision,07/07/2011,07/07/2011,07/07/2011 08:55:33 AM,07/07/2011 08:56:05 AM,07/07/2011 08:56:31 AM,07/07/2011 08:57:27 AM,07/07/2011 08:59:16 AM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/07/2011 09:24:02 AM,HIGHLAND AV/MISSION ST,SF,94110,B06,32,5631,3,3,3,true,,1,ENGINE,1,6,8,Bernal Heights,"(37.7374062487517, -122.424040149847)",111880095-E32 +133290153,E03,13111739,Outside Fire,11/25/2013,11/25/2013,11/25/2013 11:22:54 AM,11/25/2013 11:23:36 AM,11/25/2013 11:23:50 AM,11/25/2013 11:24:11 AM,11/25/2013 11:26:43 AM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Other,11/25/2013 11:28:54 AM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",133290153-E03 +160430108,71,16017099,Medical Incident,02/12/2016,02/11/2016,02/12/2016 12:47:17 AM,02/12/2016 12:52:42 AM,02/12/2016 12:53:11 AM,02/12/2016 12:53:30 AM,02/12/2016 01:01:20 AM,02/12/2016 01:18:33 AM,02/12/2016 01:27:52 AM,Code 2 Transport,02/12/2016 02:03:20 AM,1300 Block of POLK ST,San Francisco,94109,B04,3,3122,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",160430108-71 +110020201,RC2,11000678,Medical Incident,01/02/2011,01/02/2011,01/02/2011 02:04:35 PM,01/02/2011 02:05:13 PM,01/02/2011 02:05:24 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 02:11:48 PM,FULTON ST/33RD AV,SF,94121,B07,14,7243,3,3,3,true,,1,RESCUE CAPTAIN,4,7,1,Golden Gate Park,"(37.7721785309842, -122.492761385207)",110020201-RC2 +160863590,63,16034358,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:31:57 PM,03/26/2016 09:33:44 PM,03/26/2016 09:33:55 PM,03/26/2016 09:34:05 PM,03/26/2016 09:42:25 PM,03/26/2016 09:52:19 PM,03/26/2016 10:27:08 PM,Code 2 Transport,03/26/2016 10:50:35 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160863590-63 +133430204,B02,13116330,Alarms,12/09/2013,12/09/2013,12/09/2013 12:55:03 PM,12/09/2013 12:55:54 PM,12/09/2013 12:56:19 PM,12/09/2013 12:58:40 PM,12/09/2013 01:00:19 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/09/2013 01:03:39 PM,0 Block of HOFF ST,SF,94110,B02,7,5236,3,3,3,false,Alarm,1,CHIEF,2,2,9,Mission,"(37.7641898782543, -122.420437704275)",133430204-B02 +160900689,AM06,16035617,Medical Incident,03/30/2016,03/29/2016,03/30/2016 07:53:56 AM,03/30/2016 07:55:58 AM,03/30/2016 08:26:51 AM,03/30/2016 08:27:33 AM,03/30/2016 08:36:00 AM,03/30/2016 08:48:57 AM,03/30/2016 09:09:56 AM,Code 2 Transport,03/30/2016 09:46:53 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7661343875141, -122.421935077177)",160900689-AM06 +160432679,56,16017387,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:00:46 PM,02/12/2016 05:03:33 PM,02/12/2016 05:04:18 PM,02/12/2016 05:05:04 PM,02/12/2016 05:15:39 PM,02/12/2016 05:27:13 PM,02/12/2016 05:29:17 PM,Code 2 Transport,02/12/2016 05:56:00 PM,2400 Block of FULTON ST,San Francisco,94118,B07,21,4561,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7744861396627, -122.457337524606)",160432679-56 +140160197,KM04,14005476,Medical Incident,01/16/2014,01/16/2014,01/16/2014 12:55:31 PM,01/16/2014 12:57:55 PM,01/16/2014 01:00:53 PM,01/16/2014 01:01:52 PM,01/16/2014 01:28:10 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Against Medical Advice,01/16/2014 02:05:51 PM,200 Block of MINERVA ST,SF,94112,B09,33,8373,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7156918777367, -122.460860536014)",140160197-KM04 +140430201,E01,14014624,Medical Incident,02/12/2014,02/12/2014,02/12/2014 01:35:04 PM,02/12/2014 01:35:27 PM,02/12/2014 01:36:41 PM,02/12/2014 01:38:12 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 01:38:20 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",140430201-E01 +160312036,65,16012185,Medical Incident,01/31/2016,01/31/2016,01/31/2016 02:19:18 PM,01/31/2016 02:20:48 PM,01/31/2016 02:25:09 PM,01/31/2016 02:25:28 PM,01/31/2016 02:28:54 PM,01/31/2016 02:39:37 PM,01/31/2016 02:56:42 PM,Code 2 Transport,01/31/2016 03:32:25 PM,LINCOLN WY/47TH AV,San Francisco,94122,B08,23,7654,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,1,Golden Gate Park,"(37.764116211639, -122.507262464861)",160312036-65 +112840153,E42,11093980,Traffic Collision,10/11/2011,10/11/2011,10/11/2011 11:35:24 AM,10/11/2011 11:35:43 AM,10/11/2011 11:36:34 AM,04/25/2016 02:02:13 PM,10/11/2011 11:40:54 AM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 12:01:52 PM,1200 Block of QUESADA AVE,SF,94124,B10,17,6634,2,2,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7285368878908, -122.383099929789)",112840153-E42 +122410211,E28,12079782,Medical Incident,08/28/2012,08/28/2012,08/28/2012 02:51:44 PM,08/28/2012 02:56:28 PM,08/28/2012 02:56:41 PM,08/28/2012 02:57:51 PM,08/28/2012 03:00:09 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/28/2012 03:05:43 PM,2500 Block of MASON ST,SF,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",122410211-E28 +120050099,E44,12001665,Alarms,01/05/2012,01/05/2012,01/05/2012 08:56:04 AM,01/05/2012 08:57:12 AM,01/05/2012 08:57:45 AM,01/05/2012 08:58:09 AM,01/05/2012 09:02:03 AM,04/25/2016 02:00:47 PM,04/25/2016 02:00:47 PM,Fire,01/05/2012 09:25:47 AM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.712002001307, -122.407607975966)",120050099-E44 +160372547,KM11,16014771,Medical Incident,02/06/2016,02/06/2016,02/06/2016 03:53:29 PM,02/06/2016 03:53:29 PM,02/06/2016 03:54:35 PM,02/06/2016 03:54:40 PM,02/06/2016 04:04:56 PM,02/06/2016 04:19:11 PM,02/06/2016 04:40:19 PM,Code 2 Transport,02/06/2016 05:25:43 PM,0 Block of GROVE ST,San Francisco,94102,B99,36,1552,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160372547-KM11 +131100283,T19,13037102,Confined Space / Structure Collapse,04/20/2013,04/20/2013,04/20/2013 05:17:56 PM,04/20/2013 05:18:53 PM,04/20/2013 05:19:13 PM,04/20/2013 05:22:50 PM,04/20/2013 05:24:18 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/20/2013 05:32:34 PM,2200 Block of 16TH AVE,SF,94116,B08,40,7375,3,3,3,true,Fire,1,TRUCK,5,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",131100283-T19 +123100042,KM07,12103007,Medical Incident,11/05/2012,11/04/2012,11/05/2012 04:51:24 AM,11/05/2012 04:51:54 AM,11/05/2012 04:52:42 AM,11/05/2012 04:53:15 AM,11/05/2012 04:59:23 AM,11/05/2012 05:06:56 AM,11/05/2012 05:35:58 AM,Code 2 Transport,11/05/2012 05:55:59 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",123100042-KM07 +160374148,PT202,16014976,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:06:40 PM,02/06/2016 11:08:23 PM,02/06/2016 11:09:14 PM,02/06/2016 11:15:25 PM,02/06/2016 11:16:11 PM,02/06/2016 11:30:24 PM,02/07/2016 12:01:19 AM,Code 2 Transport,02/07/2016 01:03:38 AM,2700 Block of 24TH ST,San Francisco,94110,B06,9,5531,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7529342790976, -122.407745321325)",160374148-PT202 +131210329,87,13040775,Medical Incident,05/01/2013,05/01/2013,05/01/2013 06:51:28 PM,05/01/2013 06:52:45 PM,05/01/2013 06:53:25 PM,05/01/2013 06:53:46 PM,05/01/2013 06:57:03 PM,05/01/2013 07:11:52 PM,05/01/2013 07:28:55 PM,Code 2 Transport,05/01/2013 07:46:35 PM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",131210329-87 +160801557,AM02,16031794,Medical Incident,03/20/2016,03/20/2016,03/20/2016 12:14:50 PM,03/20/2016 12:15:50 PM,03/20/2016 12:16:15 PM,03/20/2016 12:16:52 PM,03/20/2016 12:18:52 PM,03/20/2016 12:37:43 PM,03/20/2016 01:03:19 PM,Code 2 Transport,03/20/2016 01:27:58 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",160801557-AM02 +122660176,E01,12087871,Medical Incident,09/22/2012,09/22/2012,09/22/2012 01:22:41 PM,09/22/2012 01:25:06 PM,09/22/2012 01:25:20 PM,04/25/2016 01:56:39 PM,09/22/2012 01:27:42 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 01:34:15 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",122660176-E01 +140250057,E38,14008458,Alarms,01/25/2014,01/24/2014,01/25/2014 04:48:17 AM,01/25/2014 04:50:01 AM,01/25/2014 04:50:09 AM,01/25/2014 04:52:33 AM,01/25/2014 04:54:15 AM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/25/2014 05:19:46 AM,2200 Block of SUTTER ST,SF,94115,B04,38,3646,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7856178085459, -122.437392724821)",140250057-E38 +160202297,89,16008056,Medical Incident,01/20/2016,01/20/2016,01/20/2016 03:03:47 PM,01/20/2016 03:05:33 PM,01/20/2016 03:06:47 PM,01/20/2016 03:06:52 PM,01/20/2016 03:13:34 PM,01/20/2016 03:28:51 PM,01/20/2016 03:44:28 PM,Code 2 Transport,01/20/2016 04:16:07 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160202297-89 +112020449,T08,11066860,Structure Fire,07/21/2011,07/21/2011,07/21/2011 11:43:44 PM,07/21/2011 11:43:44 PM,07/21/2011 11:44:03 PM,07/21/2011 11:45:28 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,07/21/2011 11:47:19 PM,4TH ST/BRYANT ST,SF,94107,B03,8,2217,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7795669099357, -122.398059940086)",112020449-T08 +112440047,B04,11080339,Traffic Collision,09/01/2011,08/31/2011,09/01/2011 05:35:53 AM,09/01/2011 05:36:50 AM,09/01/2011 05:37:15 AM,09/01/2011 05:39:26 AM,09/01/2011 05:45:35 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 05:54:10 AM,100 Block of RICHARDSON AVE,SF,94123,B04,16,4325,3,3,3,false,,1,CHIEF,2,4,2,Marina,"(37.7995738246664, -122.446103675048)",112440047-B04 +102350386,67,10074127,Medical Incident,08/23/2010,08/23/2010,08/23/2010 08:05:27 PM,08/23/2010 08:06:35 PM,08/23/2010 08:12:26 PM,08/23/2010 08:12:41 PM,08/23/2010 08:26:59 PM,08/23/2010 08:52:23 PM,08/23/2010 09:05:07 PM,Code 2 Transport,08/23/2010 09:32:50 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,2,2,2,true,,1,MEDIC,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",102350386-67 +120650245,60,12021536,Medical Incident,03/05/2012,03/05/2012,03/05/2012 03:42:27 PM,03/05/2012 03:44:23 PM,03/05/2012 03:44:42 PM,03/05/2012 03:44:53 PM,03/05/2012 03:53:17 PM,03/05/2012 04:12:23 PM,03/05/2012 04:30:16 PM,Code 2 Transport,03/05/2012 05:04:34 PM,0 Block of RUSSIA AVE,SF,94112,B09,43,6126,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7214392698455, -122.436731381634)",120650245-60 +123380254,E42,12112748,Medical Incident,12/03/2012,12/03/2012,12/03/2012 02:41:55 PM,12/03/2012 02:42:48 PM,12/03/2012 02:44:24 PM,12/03/2012 02:46:54 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 02:51:14 PM,INNES AV/DONAHUE ST,SF,94124,B10,25,6663,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7288061449325, -122.370145383783)",123380254-E42 +110260222,E03,11008604,Medical Incident,01/26/2011,01/26/2011,01/26/2011 02:15:49 PM,01/26/2011 02:17:30 PM,01/26/2011 02:18:02 PM,01/26/2011 02:19:33 PM,01/26/2011 02:21:43 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/26/2011 02:28:58 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,,1,ENGINE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",110260222-E03 +112670131,E15,11088180,Medical Incident,09/24/2011,09/24/2011,09/24/2011 09:52:10 AM,09/24/2011 09:52:58 AM,09/24/2011 09:53:44 AM,09/24/2011 09:59:53 AM,09/24/2011 10:03:15 AM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 10:06:17 AM,100 Block of LAKEVIEW AVE,SF,94112,B09,33,8325,2,3,3,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7167347566926, -122.451563721002)",112670131-E15 +112370040,94,11078088,Medical Incident,08/25/2011,08/24/2011,08/25/2011 03:01:06 AM,08/25/2011 03:03:59 AM,08/25/2011 03:04:09 AM,08/25/2011 03:04:20 AM,08/25/2011 03:16:00 AM,08/25/2011 03:19:37 AM,08/25/2011 03:48:55 AM,Code 2 Transport,08/25/2011 03:59:46 AM,200 Block of TURK ST,SF,94102,B03,1,1456,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",112370040-94 +110990018,66,11032731,Medical Incident,04/09/2011,04/08/2011,04/09/2011 01:06:19 AM,04/09/2011 01:09:52 AM,04/09/2011 01:11:38 AM,04/09/2011 01:11:47 AM,04/09/2011 01:17:06 AM,04/09/2011 01:34:44 AM,04/09/2011 01:50:55 AM,Code 2 Transport,04/09/2011 02:10:36 AM,100 Block of PERU AVE,SF,94112,B09,43,6132,1,1,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7280809000554, -122.428473813684)",110990018-66 +102830108,T13,10090005,Alarms,10/10/2010,10/10/2010,10/10/2010 09:48:23 AM,10/10/2010 09:49:24 AM,10/10/2010 09:49:35 AM,10/10/2010 09:50:14 AM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 09:50:30 AM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2144,3,3,3,false,,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",102830108-T13 +113050083,E03,11101193,Medical Incident,11/01/2011,10/31/2011,11/01/2011 06:24:16 AM,11/01/2011 06:26:54 AM,11/01/2011 06:27:09 AM,11/01/2011 06:29:09 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 06:30:26 AM,900 Block of EDDY ST,SF,94102,B02,5,3262,1,3,3,true,,1,ENGINE,3,2,5,Western Addition,"(37.782522418285, -122.423274430962)",113050083-E03 +121820154,KM15,12060580,Medical Incident,06/30/2012,06/30/2012,06/30/2012 11:23:28 AM,06/30/2012 11:28:03 AM,06/30/2012 11:29:48 AM,06/30/2012 11:30:28 AM,06/30/2012 11:34:31 AM,06/30/2012 11:56:38 AM,06/30/2012 12:09:29 PM,Code 2 Transport,06/30/2012 12:37:55 PM,300 Block of WALLER ST,SF,94117,B05,6,3526,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7712242757005, -122.429426469723)",121820154-KM15 +112480118,94,11081733,Medical Incident,09/05/2011,09/05/2011,09/05/2011 09:29:42 AM,09/05/2011 09:30:46 AM,09/05/2011 09:30:55 AM,09/05/2011 09:31:32 AM,09/05/2011 09:35:18 AM,09/05/2011 10:04:06 AM,09/05/2011 10:24:24 AM,Code 2 Transport,09/05/2011 11:00:51 AM,100 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7353538209895, -122.380382266471)",112480118-94 +132710106,B01,13092004,Medical Incident,09/28/2013,09/28/2013,09/28/2013 08:14:20 AM,09/28/2013 08:17:52 AM,09/28/2013 08:18:19 AM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/28/2013 08:20:57 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,,1,CHIEF,6,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",132710106-B01 +160110282,79,16004247,Medical Incident,01/11/2016,01/10/2016,01/11/2016 03:05:18 AM,01/11/2016 03:07:43 AM,01/11/2016 03:09:00 AM,01/11/2016 03:09:15 AM,01/11/2016 03:21:40 AM,01/11/2016 03:44:18 AM,01/11/2016 04:00:32 AM,Code 2 Transport,01/11/2016 04:15:20 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160110282-79 +112590055,54,11085292,Medical Incident,09/16/2011,09/15/2011,09/16/2011 06:02:32 AM,09/16/2011 06:03:31 AM,09/16/2011 06:04:04 AM,09/16/2011 06:06:21 AM,09/16/2011 06:07:20 AM,09/16/2011 06:14:54 AM,09/16/2011 06:22:06 AM,Code 2 Transport,09/16/2011 06:46:36 AM,600 Block of FLORIDA ST,SF,94110,B02,7,5426,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7610685432179, -122.410957120422)",112590055-54 +131200178,78,13040369,Medical Incident,04/30/2013,04/30/2013,04/30/2013 02:26:33 PM,04/30/2013 02:30:26 PM,04/30/2013 02:30:55 PM,04/30/2013 02:31:29 PM,04/30/2013 02:37:17 PM,04/30/2013 02:47:33 PM,04/30/2013 02:57:02 PM,Code 2 Transport,04/30/2013 03:24:05 PM,25TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7521940654679, -122.398452381695)",131200178-78 +80250214,ERS,8007913,,01/25/2008,01/25/2008,01/25/2008 01:47:49 PM,01/25/2008 01:47:57 PM,01/25/2008 01:48:31 PM,04/25/2016 03:35:51 PM,04/25/2016 03:35:51 PM,04/25/2016 03:35:51 PM,04/25/2016 03:35:51 PM,Other,01/25/2008 01:48:54 PM,900 Block of RANKIN ST,SF,94124,B10,9,6433,3,3,3,true,,1,ADMIN,0,10,10,Bayview Hunters Point,"(37.7406804919425, -122.396085269914)",080250214-ERS +160844422,70,16033591,Medical Incident,03/24/2016,03/24/2016,03/24/2016 11:36:21 PM,03/24/2016 11:38:13 PM,03/24/2016 11:38:32 PM,03/24/2016 11:38:40 PM,03/24/2016 11:43:53 PM,03/25/2016 12:05:41 AM,03/25/2016 12:39:30 AM,Code 2 Transport,03/25/2016 12:55:04 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160844422-70 +111840251,E42,11060836,Medical Incident,07/03/2011,07/03/2011,07/03/2011 03:29:34 PM,07/03/2011 03:30:55 PM,07/03/2011 03:31:11 PM,07/03/2011 03:32:01 PM,07/03/2011 03:34:44 PM,07/03/2011 04:05:24 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 04:25:56 PM,300 Block of HAMILTON ST,SF,94134,B10,42,6335,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7266668122361, -122.409840332676)",111840251-E42 +160123617,89,16004967,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:44:42 PM,01/12/2016 09:44:42 PM,01/12/2016 09:45:09 PM,01/12/2016 09:45:21 PM,01/12/2016 09:57:29 PM,01/12/2016 10:12:13 PM,01/12/2016 10:28:38 PM,Code 3 Transport,01/12/2016 11:16:40 PM,1800 Block of 43RD AVE,San Francisco,94122,B08,23,7646,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7521760478222, -122.502056597808)",160123617-89 +130320358,93,13011074,Medical Incident,02/01/2013,02/01/2013,02/01/2013 09:05:15 PM,02/01/2013 09:06:08 PM,02/01/2013 09:06:39 PM,02/01/2013 09:06:49 PM,02/01/2013 09:10:26 PM,02/01/2013 09:23:06 PM,02/01/2013 09:38:07 PM,Code 2 Transport,02/01/2013 09:57:52 PM,COLUMBUS AV/PACIFIC AV,SF,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7970645895846, -122.405512936752)",130320358-93 +160871305,89,16034537,Medical Incident,03/27/2016,03/27/2016,03/27/2016 10:53:47 AM,03/27/2016 10:55:30 AM,03/27/2016 10:56:06 AM,03/27/2016 10:56:20 AM,03/27/2016 11:05:00 AM,03/27/2016 11:23:17 AM,03/27/2016 11:43:27 AM,Code 2 Transport,03/27/2016 12:27:16 PM,300 Block of GUERRERO ST,San Francisco,94103,B02,6,5235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.76558714518, -122.424297645357)",160871305-89 +160070725,71,16002742,Medical Incident,01/07/2016,01/07/2016,01/07/2016 08:23:23 AM,01/07/2016 08:23:55 AM,01/07/2016 08:24:41 AM,01/07/2016 08:24:50 AM,01/07/2016 08:30:53 AM,01/07/2016 08:47:00 AM,01/07/2016 09:03:05 AM,Code 2 Transport,01/07/2016 09:24:18 AM,10TH ST/HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7740433259374, -122.414367692219)",160070725-71 +160582177,KM11,16023154,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:04:32 PM,02/27/2016 03:05:02 PM,02/27/2016 03:06:36 PM,02/27/2016 03:07:18 PM,02/27/2016 03:12:07 PM,02/27/2016 03:26:40 PM,02/27/2016 03:42:26 PM,Code 2 Transport,02/27/2016 04:19:43 PM,1500 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1535,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7952323460567, -122.416494402639)",160582177-KM11 +130200443,81,13007098,Medical Incident,01/20/2013,01/20/2013,01/20/2013 11:18:35 PM,01/20/2013 11:18:53 PM,01/20/2013 11:19:14 PM,01/20/2013 11:19:29 PM,01/20/2013 11:30:11 PM,01/20/2013 11:43:36 PM,01/21/2013 12:03:12 AM,Code 2 Transport,01/21/2013 12:29:56 AM,300 Block of VIENNA ST,SF,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7227804111928, -122.428602345947)",130200443-81 +123050264,E16,12101247,Medical Incident,10/31/2012,10/31/2012,10/31/2012 01:48:01 PM,10/31/2012 01:52:08 PM,10/31/2012 01:53:37 PM,10/31/2012 01:54:17 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 01:57:25 PM,NORTH POINT ST/POLK ST,SF,94109,B01,28,1623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.805286983829, -122.423655077131)",123050264-E16 +130170206,E36,13005795,Medical Incident,01/17/2013,01/17/2013,01/17/2013 01:51:42 PM,01/17/2013 01:53:48 PM,01/17/2013 01:54:41 PM,01/17/2013 01:56:26 PM,01/17/2013 02:02:05 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 02:03:59 PM,13TH ST/SOUTH VAN NESS AV,SF,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.769815078903, -122.417753195885)",130170206-E36 +160872705,75,16034660,Medical Incident,03/27/2016,03/27/2016,03/27/2016 05:35:12 PM,03/27/2016 05:35:50 PM,03/27/2016 05:36:33 PM,03/27/2016 05:37:35 PM,03/27/2016 05:45:26 PM,03/27/2016 05:57:21 PM,03/27/2016 06:30:49 PM,Code 2 Transport,03/27/2016 06:58:00 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160872705-75 +160871577,63,16034560,Medical Incident,03/27/2016,03/27/2016,03/27/2016 12:03:36 PM,03/27/2016 12:05:25 PM,03/27/2016 12:06:38 PM,03/27/2016 12:06:55 PM,03/27/2016 12:14:02 PM,03/27/2016 12:24:05 PM,03/27/2016 12:39:42 PM,Code 2 Transport,03/27/2016 01:11:33 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160871577-63 +110310194,86,11010169,Medical Incident,01/31/2011,01/31/2011,01/31/2011 01:04:34 PM,01/31/2011 01:05:37 PM,01/31/2011 01:05:50 PM,01/31/2011 01:07:06 PM,01/31/2011 01:11:11 PM,01/31/2011 01:21:49 PM,01/31/2011 02:09:27 PM,Code 2 Transport,01/31/2011 02:30:19 PM,1500 Block of BRODERICK ST,SF,94115,B05,10,4235,3,3,3,true,,1,MEDIC,2,5,5,Japantown,"(37.7845624883046, -122.441511182007)",110310194-86 +102610390,88,10082681,Medical Incident,09/18/2010,09/18/2010,09/18/2010 09:22:38 PM,09/18/2010 09:23:43 PM,09/18/2010 09:24:06 PM,09/18/2010 09:24:40 PM,09/18/2010 09:31:18 PM,09/18/2010 10:03:16 PM,09/18/2010 10:23:40 PM,Other,09/18/2010 10:50:35 PM,100 Block of YALE ST,SF,94134,B09,42,635,E,E,3,true,,1,MEDIC,1,9,9,Excelsior,"(37.7272689303445, -122.417723324333)",102610390-88 +103640033,E38,10116640,Medical Incident,12/30/2010,12/29/2010,12/30/2010 02:49:59 AM,12/30/2010 02:50:55 AM,12/30/2010 02:51:09 AM,12/30/2010 02:52:40 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/30/2010 02:53:36 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,1,2,false,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",103640033-E38 +110900142,T01,11029729,Structure Fire,03/31/2011,03/31/2011,03/31/2011 11:54:22 AM,03/31/2011 11:54:22 AM,03/31/2011 11:54:32 AM,03/31/2011 11:55:53 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Other,03/31/2011 11:59:03 AM,TAYLOR ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",110900142-T01 +160831200,85,16032902,Traffic Collision,03/23/2016,03/23/2016,03/23/2016 10:04:36 AM,03/23/2016 10:04:36 AM,03/23/2016 10:04:54 AM,03/23/2016 10:05:31 AM,03/23/2016 10:10:55 AM,03/23/2016 10:25:02 AM,03/23/2016 10:34:03 AM,Code 2 Transport,03/23/2016 11:15:41 AM,5TH AV/FULTON ST,San Francisco,94122,B07,31,7122,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7737597510029, -122.462683796008)",160831200-85 +160342159,54,16013450,Medical Incident,02/03/2016,02/03/2016,02/03/2016 03:14:31 PM,02/03/2016 03:15:27 PM,02/03/2016 03:15:35 PM,02/03/2016 03:15:44 PM,02/03/2016 03:19:28 PM,02/03/2016 03:43:37 PM,02/03/2016 03:50:17 PM,Code 2 Transport,02/03/2016 04:39:17 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160342159-54 +102330287,B09,10073437,Medical Incident,08/21/2010,08/21/2010,08/21/2010 09:50:08 PM,08/21/2010 09:51:36 PM,08/21/2010 09:52:06 PM,08/21/2010 09:53:17 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/21/2010 09:59:18 PM,HIGUERA AV/LAKE MERCED BL,SF,94132,B08,19,8775,E,E,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.718327591644, -122.485075948765)",102330287-B09 +160333011,75,16013132,Traffic Collision,02/02/2016,02/02/2016,02/02/2016 07:25:12 PM,02/02/2016 07:25:12 PM,02/02/2016 07:25:43 PM,02/02/2016 07:26:24 PM,02/02/2016 07:35:34 PM,02/02/2016 08:00:35 PM,02/02/2016 08:28:53 PM,Other,02/02/2016 09:13:51 PM,LOMBARD ST/BAKER ST,San Francisco,94123,B04,16,4223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.798626017147, -122.44597388598)",160333011-75 +123150136,76,12104791,Medical Incident,11/10/2012,11/10/2012,11/10/2012 10:55:48 AM,11/10/2012 10:58:02 AM,11/10/2012 10:58:40 AM,11/10/2012 11:00:43 AM,11/10/2012 11:12:57 AM,11/10/2012 11:33:48 AM,11/10/2012 11:47:51 AM,Code 2 Transport,11/10/2012 12:31:24 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",123150136-76 +160750848,55,16029634,Medical Incident,03/15/2016,03/15/2016,03/15/2016 09:02:36 AM,03/15/2016 09:04:55 AM,03/15/2016 09:09:27 AM,03/15/2016 09:11:12 AM,03/15/2016 09:35:10 AM,03/15/2016 10:22:22 AM,03/15/2016 10:04:18 AM,Code 2 Transport,03/15/2016 10:56:13 AM,0 Block of APPLETON AVE,San Francisco,94110,B06,32,5631,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7384512131926, -122.423134220791)",160750848-55 +160340188,KM03,16013222,Medical Incident,02/03/2016,02/02/2016,02/03/2016 02:11:36 AM,02/03/2016 02:14:03 AM,02/03/2016 02:14:11 AM,02/03/2016 02:14:50 AM,02/03/2016 02:21:30 AM,02/03/2016 02:29:07 AM,02/03/2016 02:44:47 AM,Code 2 Transport,02/03/2016 02:58:13 AM,0 Block of LENOX WAY,San Francisco,94127,B08,39,8617,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7417568103981, -122.465616085454)",160340188-KM03 +122570291,58,12085054,Medical Incident,09/13/2012,09/13/2012,09/13/2012 07:26:57 PM,09/13/2012 07:28:08 PM,09/13/2012 07:30:33 PM,09/13/2012 07:30:51 PM,09/13/2012 07:42:07 PM,09/13/2012 07:57:04 PM,09/13/2012 08:07:37 PM,Code 2 Transport,09/13/2012 08:34:08 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",122570291-58 +132000415,68,13068002,Medical Incident,07/19/2013,07/19/2013,07/19/2013 11:57:07 PM,07/19/2013 11:59:45 PM,07/20/2013 12:00:23 AM,07/20/2013 12:00:37 AM,07/20/2013 12:29:38 AM,07/20/2013 12:39:35 AM,07/20/2013 12:59:55 AM,Code 2 Transport,07/20/2013 01:35:28 AM,800 Block of THE EMBARCADERO,SF,94111,B03,35,940,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",132000415-68 +131960176,T06,13066525,Alarms,07/15/2013,07/15/2013,07/15/2013 01:13:21 PM,07/15/2013 01:15:39 PM,07/15/2013 01:16:03 PM,07/15/2013 01:17:43 PM,07/15/2013 01:21:00 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 01:23:58 PM,1700 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7721238465063, -122.422914601569)",131960176-T06 +130370346,88,13012842,Medical Incident,02/06/2013,02/06/2013,02/06/2013 10:13:52 PM,02/06/2013 10:23:41 PM,02/06/2013 10:24:06 PM,02/06/2013 10:24:49 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 10:31:35 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",130370346-88 +130130286,T16,13004521,Citizen Assist / Service Call,01/13/2013,01/13/2013,01/13/2013 04:42:15 PM,01/13/2013 04:43:45 PM,01/13/2013 04:43:55 PM,01/13/2013 04:44:29 PM,01/13/2013 04:46:59 PM,04/25/2016 01:54:49 PM,04/25/2016 01:54:49 PM,Fire,01/13/2013 04:50:08 PM,CHESTNUT ST/FILLMORE ST,SF,94123,B04,16,3554,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.800814143599, -122.436273910168)",130130286-T16 +102330182,87,10073339,Structure Fire,08/21/2010,08/21/2010,08/21/2010 01:54:21 PM,08/21/2010 01:55:06 PM,08/21/2010 01:55:21 PM,08/21/2010 01:56:04 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/21/2010 02:00:51 PM,500 Block of HAIGHT ST,SF,94117,B05,6,3633,3,3,3,true,,1,MEDIC,9,5,5,Hayes Valley,"(37.7719485300389, -122.431252160017)",102330182-87 +160722387,53,16028668,Medical Incident,03/12/2016,03/12/2016,03/12/2016 05:00:09 PM,03/12/2016 05:02:47 PM,03/12/2016 05:07:00 PM,03/12/2016 05:07:11 PM,03/12/2016 05:26:50 PM,03/12/2016 05:26:52 PM,03/12/2016 05:52:05 PM,Code 2 Transport,03/12/2016 06:30:15 PM,300 Block of 20TH ST,San Francisco,94107,B10,37,2722,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7605831645183, -122.386090882365)",160722387-53 +160062646,74,16002495,Traffic Collision,01/06/2016,01/06/2016,01/06/2016 04:53:14 PM,01/06/2016 04:54:33 PM,01/06/2016 04:56:08 PM,01/06/2016 04:56:08 PM,01/06/2016 05:00:21 PM,01/06/2016 05:08:56 PM,01/06/2016 05:26:53 PM,Code 3 Transport,01/06/2016 06:26:36 PM,40TH AV/FULTON ST,San Francisco,94122,B07,34,7261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7718363074154, -122.500257545705)",160062646-74 +102910327,T02,10092929,Alarms,10/18/2010,10/18/2010,10/18/2010 07:49:48 PM,10/18/2010 07:51:40 PM,10/18/2010 07:52:55 PM,10/18/2010 07:54:39 PM,10/18/2010 07:57:46 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/18/2010 08:04:57 PM,800 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,TRUCK,3,1,3,Nob Hill,"(37.7909306094565, -122.409788680324)",102910327-T02 +160551612,KM12,16021989,Medical Incident,02/24/2016,02/24/2016,02/24/2016 12:07:15 PM,02/24/2016 12:07:15 PM,02/24/2016 12:07:32 PM,02/24/2016 12:08:05 PM,02/24/2016 12:13:27 PM,02/24/2016 01:33:04 PM,02/24/2016 01:43:04 PM,Code 2 Transport,02/24/2016 02:07:29 PM,500 Block of 19TH AV,San Francisco,94121,B07,14,7165,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7775230001793, -122.478168809064)",160551612-KM12 +140380325,E31,14012948,Medical Incident,02/07/2014,02/07/2014,02/07/2014 07:38:18 PM,02/07/2014 07:38:55 PM,02/07/2014 07:39:13 PM,04/25/2016 01:48:20 PM,02/07/2014 07:40:14 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 08:04:55 PM,5200 Block of CALIFORNIA ST,SF,94118,B07,31,7147,3,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7844508005385, -122.473686618108)",140380325-E31 +160161475,KM02,16006404,Medical Incident,01/16/2016,01/16/2016,01/16/2016 12:02:40 PM,01/16/2016 12:02:40 PM,01/16/2016 12:04:16 PM,01/16/2016 12:06:47 PM,01/16/2016 12:11:30 PM,01/16/2016 12:33:23 PM,01/16/2016 12:57:14 PM,Code 3 Transport,01/16/2016 01:51:22 PM,100 Block of BRODERICK ST,San Francisco,94117,B05,21,4246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7715147030911, -122.438872422532)",160161475-KM02 +160252239,55,16009979,Train / Rail Incident,01/25/2016,01/25/2016,01/25/2016 03:00:23 PM,01/25/2016 03:00:23 PM,01/25/2016 03:54:10 PM,01/25/2016 03:54:35 PM,01/25/2016 04:05:23 PM,01/25/2016 04:25:14 PM,01/25/2016 04:50:08 PM,Code 2 Transport,01/25/2016 05:27:41 PM,BAYSHORE BL/TUNNEL AV,San Francisco,94134,B10,44,6271,3,3,3,true,,1,MEDIC,8,10,10,Bayview Hunters Point,"(37.7130579718754, -122.400658030863)",160252239-55 +131900116,E02,13064670,Medical Incident,07/09/2013,07/09/2013,07/09/2013 09:47:17 AM,07/09/2013 09:47:39 AM,07/09/2013 09:48:28 AM,07/09/2013 09:51:38 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 09:53:00 AM,FERN ST/POLK ST,SF,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",131900116-E02 +160121726,57,16004780,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:51:55 PM,01/12/2016 12:52:32 PM,01/12/2016 12:52:57 PM,01/12/2016 12:57:56 PM,01/12/2016 01:07:40 PM,01/12/2016 01:26:32 PM,01/12/2016 01:42:18 PM,Code 2 Transport,01/12/2016 02:22:10 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7677413424145, -122.415468956066)",160121726-57 +122890091,E10,12095543,Alarms,10/15/2012,10/15/2012,10/15/2012 08:32:01 AM,10/15/2012 08:33:45 AM,10/15/2012 08:33:57 AM,10/15/2012 08:34:55 AM,10/15/2012 08:37:36 AM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 08:45:59 AM,3000 Block of CLAY ST,SF,94115,B04,10,4232,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7896142778496, -122.443308741909)",122890091-E10 +160751975,84,16029731,Medical Incident,03/15/2016,03/15/2016,03/15/2016 01:48:18 PM,03/15/2016 01:49:43 PM,03/15/2016 01:52:19 PM,03/15/2016 01:52:40 PM,03/15/2016 01:59:14 PM,03/15/2016 02:14:01 PM,03/15/2016 02:29:33 PM,Code 2 Transport,03/15/2016 03:15:59 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160751975-84 +130450239,E22,13015298,Medical Incident,02/14/2013,02/14/2013,02/14/2013 02:18:40 PM,02/14/2013 02:20:11 PM,02/14/2013 02:20:36 PM,02/14/2013 02:25:34 PM,02/14/2013 02:30:22 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 02:32:20 PM,400 Block of PARNASSUS AVE,SF,94122,B05,12,5155,2,2,2,true,Non Life-threatening,1,ENGINE,2,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",130450239-E22 +160060417,70,16002267,Medical Incident,01/06/2016,01/05/2016,01/06/2016 05:33:23 AM,01/06/2016 05:35:52 AM,01/06/2016 05:36:39 AM,01/06/2016 05:36:51 AM,01/06/2016 05:49:18 AM,01/06/2016 05:53:58 AM,01/06/2016 06:04:01 AM,Code 2 Transport,01/06/2016 06:27:01 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",160060417-70 +111230294,AM04,11040718,Medical Incident,05/03/2011,05/03/2011,05/03/2011 05:14:18 PM,05/03/2011 05:17:34 PM,05/03/2011 05:20:46 PM,05/03/2011 05:23:02 PM,05/03/2011 05:34:48 PM,05/03/2011 05:39:17 PM,05/03/2011 05:51:51 PM,Code 2 Transport,05/03/2011 06:23:09 PM,200 Block of HYDE ST,SF,94102,B02,3,1554,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",111230294-AM04 +120250140,E01,12008361,Medical Incident,01/25/2012,01/25/2012,01/25/2012 10:34:12 AM,01/25/2012 10:35:58 AM,01/25/2012 10:36:24 AM,01/25/2012 10:36:52 AM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 10:37:49 AM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7762305177878, -122.414711004673)",120250140-E01 +133040034,E42,13103145,Medical Incident,10/31/2013,10/30/2013,10/31/2013 02:27:11 AM,10/31/2013 02:28:45 AM,10/31/2013 02:29:06 AM,10/31/2013 02:31:50 AM,10/31/2013 02:33:22 AM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/31/2013 02:44:00 AM,400 Block of BOWDOIN ST,SF,94134,B09,42,6355,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.729822574745, -122.412234829819)",133040034-E42 +102700394,AR1,10085836,Structure Fire,09/27/2010,09/27/2010,09/27/2010 11:32:42 PM,09/27/2010 11:33:14 PM,09/27/2010 11:34:58 PM,09/27/2010 11:57:45 PM,09/28/2010 12:11:51 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 02:01:20 AM,800 Block of DUNCAN ST,SF,94131,B06,26,5554,3,3,3,false,,1,INVESTIGATION,13,6,8,Noe Valley,"(37.7454166470082, -122.439016047236)",102700394-AR1 +132720378,93,13092621,Medical Incident,09/29/2013,09/29/2013,09/29/2013 11:55:41 PM,09/29/2013 11:56:18 PM,09/29/2013 11:56:35 PM,09/29/2013 11:56:52 PM,09/30/2013 12:10:28 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Patient Declined Transport,09/30/2013 12:34:51 AM,700 Block of NORIEGA ST,SF,94122,B08,40,7352,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7554265912421, -122.471450249914)",132720378-93 +140130095,E40,14004386,Traffic Collision,01/13/2014,01/13/2014,01/13/2014 08:51:20 AM,01/13/2014 08:51:55 AM,01/13/2014 08:52:17 AM,01/13/2014 08:53:26 AM,01/13/2014 08:56:06 AM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/13/2014 09:05:04 AM,21ST AV/NORIEGA ST,SF,94122,B08,40,7431,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7541457685622, -122.47861569327)",140130095-E40 +131640021,T07,13055589,Vehicle Fire,06/13/2013,06/12/2013,06/13/2013 02:03:33 AM,06/13/2013 02:05:35 AM,06/13/2013 02:05:45 AM,06/13/2013 02:08:07 AM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/13/2013 02:08:28 AM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,false,Fire,1,TRUCK,2,6,9,Mission,"(37.7619675295768, -122.417178937573)",131640021-T07 +111240165,92,11040952,Medical Incident,05/04/2011,05/04/2011,05/04/2011 11:59:23 AM,05/04/2011 12:00:15 PM,05/04/2011 12:00:26 PM,05/04/2011 12:00:58 PM,05/04/2011 12:05:15 PM,05/04/2011 12:24:49 PM,05/04/2011 12:45:23 PM,Code 2 Transport,05/04/2011 01:10:25 PM,SOUTH VAN NESS AV/MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",111240165-92 +113370295,T03,11111754,Structure Fire,12/03/2011,12/03/2011,12/03/2011 06:45:41 PM,12/03/2011 06:46:55 PM,12/03/2011 06:47:06 PM,12/03/2011 06:47:21 PM,12/03/2011 06:49:51 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/03/2011 06:57:58 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",113370295-T03 +160141523,KM05,16005543,Citizen Assist / Service Call,01/14/2016,01/14/2016,01/14/2016 11:50:51 AM,01/14/2016 11:53:15 AM,01/14/2016 11:59:57 AM,01/14/2016 12:02:48 PM,01/14/2016 12:08:23 PM,01/14/2016 12:24:17 PM,01/14/2016 12:40:54 PM,Code 3 Transport,01/14/2016 01:19:54 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Alarm,1,PRIVATE,3,1,3,North Beach,"(37.7979466732983, -122.406460643507)",160141523-KM05 +133040363,AM04,13103419,Medical Incident,10/31/2013,10/31/2013,10/31/2013 09:11:43 PM,10/31/2013 09:13:15 PM,10/31/2013 09:13:29 PM,10/31/2013 09:13:57 PM,10/31/2013 09:29:41 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Patient Declined Transport,10/31/2013 10:12:58 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",133040363-AM04 +112970394,D3,11098688,Traffic Collision,10/24/2011,10/24/2011,10/24/2011 09:02:40 PM,10/24/2011 09:05:38 PM,10/24/2011 09:06:42 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/24/2011 09:15:48 PM,600 Block of BLANKEN AV,SF,94134,B10,44,6275,3,3,3,false,,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.7108645212674, -122.395631081205)",112970394-D3 +160240649,85,16009448,Medical Incident,01/24/2016,01/23/2016,01/24/2016 06:34:23 AM,01/24/2016 06:35:25 AM,01/24/2016 06:36:14 AM,01/24/2016 06:36:28 AM,01/24/2016 06:41:33 AM,01/24/2016 07:01:06 AM,01/24/2016 07:05:47 AM,Code 2 Transport,01/24/2016 07:37:28 AM,3600 Block of MISSION ST,San Francisco,94110,B06,32,5631,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7381219971423, -122.423925391232)",160240649-85 +122180200,E37,12072323,Medical Incident,08/05/2012,08/05/2012,08/05/2012 01:48:02 PM,08/05/2012 01:50:20 PM,08/05/2012 01:50:34 PM,08/05/2012 01:52:01 PM,08/05/2012 01:53:24 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 02:03:53 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",122180200-E37 +131640312,96,13055818,Medical Incident,06/13/2013,06/13/2013,06/13/2013 06:20:19 PM,06/13/2013 06:20:41 PM,06/13/2013 06:24:48 PM,06/13/2013 06:24:52 PM,06/13/2013 06:31:17 PM,06/13/2013 06:36:33 PM,06/13/2013 06:55:23 PM,Code 2 Transport,06/13/2013 07:25:11 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",131640312-96 +110230139,E01,11007547,Medical Incident,01/23/2011,01/23/2011,01/23/2011 11:24:20 AM,01/23/2011 11:25:23 AM,01/23/2011 11:25:35 AM,01/23/2011 11:27:35 AM,01/23/2011 11:30:09 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/23/2011 11:36:49 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",110230139-E01 +160402203,75,16016082,Medical Incident,02/09/2016,02/09/2016,02/09/2016 02:41:09 PM,02/09/2016 02:43:46 PM,02/09/2016 02:44:00 PM,02/09/2016 02:44:05 PM,02/09/2016 02:54:47 PM,02/09/2016 03:06:41 PM,02/09/2016 03:50:25 PM,Code 2 Transport,02/09/2016 04:26:56 PM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6554,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",160402203-75 +122640262,RC2,12087248,Structure Fire,09/20/2012,09/20/2012,09/20/2012 03:53:55 PM,09/20/2012 03:55:10 PM,09/20/2012 03:55:26 PM,09/20/2012 03:59:48 PM,09/20/2012 04:03:09 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 04:17:34 PM,5000 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,true,Fire,1,RESCUE CAPTAIN,5,7,1,Outer Richmond,"(37.7807265018507, -122.473419262078)",122640262-RC2 +132740276,94,13093187,Traffic Collision,10/01/2013,10/01/2013,10/01/2013 06:03:42 PM,10/01/2013 06:05:32 PM,10/01/2013 06:05:51 PM,10/01/2013 06:06:00 PM,10/01/2013 06:14:04 PM,10/01/2013 06:23:47 PM,10/01/2013 06:31:16 PM,Code 2 Transport,10/01/2013 07:10:30 PM,23RD ST/DAKOTA ST,SF,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7547065816121, -122.396675359527)",132740276-94 +102790151,E07,10088677,Structure Fire,10/06/2010,10/06/2010,10/06/2010 12:21:30 PM,10/06/2010 12:23:02 PM,10/06/2010 12:23:21 PM,10/06/2010 12:24:05 PM,10/06/2010 12:26:59 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 12:44:24 PM,400 Block of KANSAS ST,SF,94107,B02,29,2422,3,3,3,true,,1,ENGINE,4,2,10,Potrero Hill,"(37.7640879187175, -122.403400751845)",102790151-E07 +160443110,62,16017827,Medical Incident,02/13/2016,02/13/2016,02/13/2016 07:36:33 PM,02/13/2016 07:37:16 PM,02/13/2016 07:37:35 PM,02/13/2016 07:37:47 PM,02/13/2016 07:56:50 PM,02/13/2016 08:25:34 PM,02/13/2016 08:53:17 PM,Code 2 Transport,02/13/2016 09:17:08 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160443110-62 +160032645,AM20,16001305,Medical Incident,01/03/2016,01/03/2016,01/03/2016 06:42:04 PM,01/03/2016 06:45:08 PM,01/03/2016 06:45:27 PM,01/03/2016 06:46:13 PM,01/03/2016 06:55:16 PM,01/03/2016 07:01:41 PM,01/03/2016 07:14:37 PM,Code 2 Transport,01/03/2016 07:39:02 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160032645-AM20 +160652686,53,16026029,Medical Incident,03/05/2016,03/05/2016,03/05/2016 06:10:15 PM,03/05/2016 06:10:15 PM,03/05/2016 06:10:53 PM,03/05/2016 06:11:08 PM,03/05/2016 06:14:37 PM,03/05/2016 06:34:28 PM,03/05/2016 06:46:22 PM,Code 2 Transport,03/05/2016 07:37:58 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160652686-53 +160220389,AM20,16008648,Medical Incident,01/22/2016,01/21/2016,01/22/2016 04:46:54 AM,01/22/2016 04:48:20 AM,01/22/2016 04:48:37 AM,01/22/2016 04:49:10 AM,01/22/2016 04:53:06 AM,01/22/2016 05:12:44 AM,01/22/2016 05:29:13 AM,Code 2 Transport,01/22/2016 06:08:51 AM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",160220389-AM20 +160250675,75,16009818,Medical Incident,01/25/2016,01/24/2016,01/25/2016 07:36:02 AM,01/25/2016 07:40:49 AM,01/25/2016 07:40:59 AM,01/25/2016 07:41:05 AM,01/25/2016 07:46:52 AM,01/25/2016 07:52:04 AM,01/25/2016 08:06:42 AM,Code 2 Transport,01/25/2016 08:48:09 AM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",160250675-75 +130230398,E35,13008119,Medical Incident,01/23/2013,01/23/2013,01/23/2013 10:02:04 PM,01/23/2013 10:04:27 PM,01/23/2013 10:04:52 PM,01/23/2013 10:06:04 PM,01/23/2013 10:07:54 PM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Other,01/23/2013 10:25:35 PM,0 Block of FOLSOM ST,SF,94105,B03,35,2112,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7904094440398, -122.390442861617)",130230398-E35 +110620028,87,11020249,Medical Incident,03/03/2011,03/02/2011,03/03/2011 03:48:18 AM,03/03/2011 03:50:41 AM,03/03/2011 03:50:55 AM,03/03/2011 03:51:43 AM,03/03/2011 03:56:05 AM,03/03/2011 04:11:16 AM,03/03/2011 04:31:20 AM,Code 2 Transport,03/03/2011 04:56:11 AM,1300 Block of WASHINGTON ST,SF,94109,B01,41,1466,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.79405405477, -122.415456646894)",110620028-87 +160893046,54,16035443,Medical Incident,03/29/2016,03/29/2016,03/29/2016 06:14:21 PM,03/29/2016 06:16:58 PM,03/29/2016 06:17:12 PM,03/29/2016 06:17:21 PM,03/29/2016 06:23:50 PM,03/29/2016 06:36:44 PM,03/29/2016 06:46:34 PM,Code 2 Transport,03/29/2016 07:07:56 PM,2300 Block of UNION ST,San Francisco,94123,B04,16,3655,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7967206605307, -122.437947593437)",160893046-54 +121760317,E01,12058620,Medical Incident,06/24/2012,06/24/2012,06/24/2012 06:18:52 PM,06/24/2012 06:19:33 PM,06/24/2012 06:20:43 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 06:20:47 PM,TAYLOR ST/TURK ST,SF,94102,B03,1,1365,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",121760317-E01 +131040112,E01,13034872,Structure Fire,04/14/2013,04/13/2013,04/14/2013 07:50:42 AM,04/14/2013 07:50:42 AM,04/14/2013 07:51:09 AM,04/14/2013 07:51:46 AM,04/14/2013 07:54:24 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 07:55:36 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131040112-E01 +113590051,T19,11119254,Alarms,12/25/2011,12/24/2011,12/25/2011 04:16:46 AM,12/25/2011 04:18:13 AM,12/25/2011 04:18:31 AM,12/25/2011 04:21:52 AM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,Other,12/25/2011 04:35:23 AM,0 Block of ZOO RD,SF,94132,B08,19,8716,3,3,3,false,,1,TRUCK,3,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",113590051-T19 +120250329,KM15,12008518,Medical Incident,01/25/2012,01/25/2012,01/25/2012 07:14:26 PM,01/25/2012 07:15:05 PM,01/25/2012 07:15:12 PM,01/25/2012 07:15:46 PM,01/25/2012 07:22:07 PM,01/25/2012 07:41:32 PM,01/25/2012 08:02:18 PM,Code 2 Transport,01/25/2012 08:31:02 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",120250329-KM15 +140580250,T13,14019617,Gas Leak (Natural and LP Gases),02/27/2014,02/27/2014,02/27/2014 03:54:07 PM,02/27/2014 03:55:43 PM,02/27/2014 03:56:20 PM,02/27/2014 03:57:59 PM,02/27/2014 03:59:37 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Fire,02/27/2014 04:18:58 PM,800 Block of SANSOME ST,SF,94133,B01,13,1212,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.7979585906161, -122.402203152588)",140580250-T13 +123480184,85,12116350,Medical Incident,12/13/2012,12/13/2012,12/13/2012 01:07:56 PM,12/13/2012 01:08:13 PM,12/13/2012 01:08:28 PM,12/13/2012 01:09:29 PM,12/13/2012 01:13:03 PM,12/13/2012 01:25:58 PM,12/13/2012 01:31:14 PM,Code 2 Transport,12/13/2012 02:07:48 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826266328595, -122.41915582123)",123480184-85 +132970120,KM01,13100826,Medical Incident,10/24/2013,10/24/2013,10/24/2013 10:29:29 AM,10/24/2013 10:30:51 AM,10/24/2013 10:32:49 AM,10/24/2013 10:33:48 AM,10/24/2013 10:40:20 AM,10/24/2013 10:51:22 AM,10/24/2013 11:06:33 AM,Code 2 Transport,10/24/2013 11:42:31 AM,300 Block of 7TH AVE,SF,94118,B07,31,7127,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.781931388363, -122.465353537218)",132970120-KM01 +113360305,AM08,11111328,Medical Incident,12/02/2011,12/02/2011,12/02/2011 03:30:39 PM,12/02/2011 03:30:40 PM,12/02/2011 03:30:40 PM,12/02/2011 03:35:41 PM,12/02/2011 03:39:28 PM,12/02/2011 03:50:10 PM,12/02/2011 04:06:20 PM,Code 2 Transport,12/02/2011 04:40:28 PM,3200 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,false,,1,PRIVATE,1,None,None,None,"(37.7475912199361, -122.387182780653)",113360305-AM08 +123580258,E01,12119930,Medical Incident,12/23/2012,12/23/2012,12/23/2012 06:10:51 PM,12/23/2012 06:12:12 PM,12/23/2012 06:12:30 PM,12/23/2012 06:13:22 PM,12/23/2012 06:14:53 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 06:17:22 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",123580258-E01 +113560200,E44,11118211,Medical Incident,12/22/2011,12/22/2011,12/22/2011 01:20:49 PM,12/22/2011 01:22:22 PM,12/22/2011 01:22:43 PM,12/22/2011 01:23:37 PM,12/22/2011 01:27:51 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 01:37:00 PM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,3,3,true,,1,ENGINE,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",113560200-E44 +110930185,E21,11030873,Structure Fire,04/03/2011,04/03/2011,04/03/2011 12:57:05 PM,04/03/2011 12:57:06 PM,04/03/2011 12:57:21 PM,04/03/2011 12:57:53 PM,04/03/2011 01:00:13 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Fire,04/03/2011 01:00:52 PM,STANYAN ST/FELL ST,SF,94122,B05,12,4554,3,3,3,false,,1,ENGINE,1,5,1,Golden Gate Park,"(37.7719304034998, -122.454083217642)",110930185-E21 +160873664,60,16034765,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:11:48 PM,03/27/2016 11:13:30 PM,03/27/2016 11:14:13 PM,03/27/2016 11:14:26 PM,03/27/2016 11:25:15 PM,03/27/2016 11:36:04 PM,03/27/2016 11:57:48 PM,Code 2 Transport,03/28/2016 12:27:52 AM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8061880612091, -122.416243833913)",160873664-60 +160433825,65,16017498,Traffic Collision,02/12/2016,02/12/2016,02/12/2016 10:33:23 PM,02/12/2016 10:33:23 PM,02/12/2016 10:34:19 PM,02/12/2016 10:34:58 PM,02/12/2016 10:42:22 PM,02/12/2016 10:50:50 PM,02/12/2016 10:57:22 PM,Code 2 Transport,02/12/2016 11:35:31 PM,MISSION ST/10TH ST,San Francisco,94103,B02,36,2341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7752720593077, -122.415908181241)",160433825-65 +122820329,T02,12093494,Alarms,10/08/2012,10/08/2012,10/08/2012 11:14:27 PM,10/08/2012 11:17:14 PM,10/08/2012 11:17:25 PM,10/08/2012 11:19:00 PM,10/08/2012 11:20:47 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/08/2012 11:26:11 PM,600 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",122820329-T02 +102640318,E07,10083670,Medical Incident,09/21/2010,09/21/2010,09/21/2010 07:15:30 PM,09/21/2010 07:17:04 PM,09/21/2010 07:18:21 PM,09/21/2010 07:19:12 PM,09/21/2010 07:21:36 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:25:04 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",102640318-E07 +160103108,AM20,16004171,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:19:42 PM,01/10/2016 08:22:01 PM,01/10/2016 08:22:21 PM,01/10/2016 08:22:52 PM,01/10/2016 08:33:15 PM,01/10/2016 08:57:50 PM,01/10/2016 09:04:08 PM,Code 2 Transport,01/10/2016 09:36:31 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160103108-AM20 +103550338,78,10114088,Medical Incident,12/21/2010,12/21/2010,12/21/2010 09:31:58 PM,12/21/2010 09:33:08 PM,12/21/2010 09:33:28 PM,12/21/2010 09:33:36 PM,12/21/2010 09:38:08 PM,12/21/2010 09:53:11 PM,12/21/2010 10:04:01 PM,Code 2 Transport,12/21/2010 10:39:22 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",103550338-78 +122180216,E03,12072339,Medical Incident,08/05/2012,08/05/2012,08/05/2012 02:34:00 PM,08/05/2012 02:34:39 PM,08/05/2012 02:35:01 PM,04/25/2016 01:57:23 PM,08/05/2012 02:38:25 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 02:44:13 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",122180216-E03 +132620203,E03,13088757,Medical Incident,09/19/2013,09/19/2013,09/19/2013 01:21:36 PM,09/19/2013 01:21:51 PM,09/19/2013 01:23:12 PM,09/19/2013 01:23:24 PM,09/19/2013 01:26:29 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 01:28:34 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",132620203-E03 +160821383,87,16032529,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:18:55 AM,03/22/2016 11:19:53 AM,03/22/2016 11:21:12 AM,03/22/2016 11:21:47 AM,03/22/2016 11:25:50 AM,03/22/2016 11:51:34 AM,03/22/2016 12:21:11 PM,Code 2 Transport,03/22/2016 12:44:08 PM,900 Block of 4TH ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7753672597362, -122.392898312211)",160821383-87 +130810081,E29,13027031,Alarms,03/22/2013,03/22/2013,03/22/2013 08:55:01 AM,03/22/2013 08:56:15 AM,03/22/2013 08:57:05 AM,03/22/2013 08:58:29 AM,03/22/2013 09:00:59 AM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 09:12:15 AM,1000 Block of MARIPOSA ST,SF,94107,B03,29,2431,3,3,3,true,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7639379043724, -122.394214130109)",130810081-E29 +160582246,55,16023165,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:22:40 PM,02/27/2016 03:22:40 PM,02/27/2016 03:24:44 PM,02/27/2016 03:24:51 PM,02/27/2016 03:38:40 PM,02/27/2016 04:25:20 PM,02/27/2016 04:48:38 PM,Code 2 Transport,02/27/2016 05:28:20 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160582246-55 +121120389,54,12037312,Citizen Assist / Service Call,04/21/2012,04/21/2012,04/21/2012 09:38:52 PM,04/21/2012 09:43:55 PM,04/21/2012 09:44:14 PM,04/21/2012 09:45:23 PM,04/21/2012 09:49:19 PM,04/21/2012 09:56:47 PM,04/21/2012 10:37:28 PM,Code 2 Transport,04/21/2012 11:05:25 PM,NATOMA ST/6TH ST,SF,94103,B03,1,2252,3,3,3,true,Alarm,1,MEDIC,2,3,6,South of Market,"(37.7801620260598, -122.407691417119)",121120389-54 +122850111,E07,12094201,Alarms,10/11/2012,10/11/2012,10/11/2012 09:49:10 AM,10/11/2012 09:50:43 AM,10/11/2012 09:51:27 AM,10/11/2012 09:52:32 AM,10/11/2012 09:56:20 AM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 10:08:44 AM,0 Block of LAPIDGE ST,SF,94110,B02,7,5422,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7608547542301, -122.422265847038)",122850111-E07 +160151543,63,16005974,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:55:14 AM,01/15/2016 11:56:13 AM,01/15/2016 11:57:02 AM,01/15/2016 11:57:22 AM,01/15/2016 12:05:38 PM,01/15/2016 12:13:25 PM,01/15/2016 12:42:23 PM,Code 2 Transport,01/15/2016 01:22:06 PM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",160151543-63 +130090240,68,13003146,Medical Incident,01/09/2013,01/09/2013,01/09/2013 03:09:04 PM,01/09/2013 03:11:12 PM,01/09/2013 03:11:54 PM,01/09/2013 03:12:02 PM,01/09/2013 03:22:00 PM,01/09/2013 03:41:16 PM,01/09/2013 03:54:14 PM,Code 2 Transport,01/09/2013 04:39:36 PM,100 Block of PAGE ST,SF,94102,B02,36,3313,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",130090240-68 +160331400,61,16012954,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:43:41 AM,02/02/2016 11:43:41 AM,02/02/2016 11:49:48 AM,02/02/2016 11:49:57 AM,02/02/2016 11:59:23 AM,02/02/2016 12:16:12 PM,02/02/2016 12:31:39 PM,Code 2 Transport,02/02/2016 01:18:39 PM,300 Block of BEACH ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8074334422166, -122.414806572943)",160331400-61 +113100137,E07,11102999,Medical Incident,11/06/2011,11/06/2011,11/06/2011 10:07:19 AM,11/06/2011 10:08:46 AM,11/06/2011 10:08:58 AM,11/06/2011 10:09:27 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/06/2011 10:23:28 AM,3200 Block of 21ST ST,SF,94110,B06,7,5456,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7570135247226, -122.420179949433)",113100137-E07 +160450374,AM20,16017968,Medical Incident,02/14/2016,02/13/2016,02/14/2016 02:09:04 AM,02/14/2016 02:10:23 AM,02/14/2016 02:11:24 AM,02/14/2016 02:12:28 AM,02/14/2016 02:17:45 AM,02/14/2016 02:33:09 AM,02/14/2016 02:44:42 AM,Code 2 Transport,02/14/2016 03:43:16 AM,11TH ST/FOLSOM ST,San Francisco,94103,B02,36,5114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.771863706441, -122.414026708032)",160450374-AM20 +131410148,T05,13047746,Medical Incident,05/21/2013,05/21/2013,05/21/2013 10:54:47 AM,05/21/2013 10:55:16 AM,05/21/2013 10:55:52 AM,05/21/2013 10:56:46 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 11:13:14 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",131410148-T05 +140660320,E14,14022411,Medical Incident,03/07/2014,03/07/2014,03/07/2014 05:45:24 PM,03/07/2014 05:46:18 PM,03/07/2014 05:47:50 PM,03/07/2014 05:49:33 PM,03/07/2014 05:51:15 PM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Medical Examiner,03/07/2014 06:49:32 PM,2700 Block of CLEMENT ST,SAN FRANCISCO,94121,B07,14,7221,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.781904591369, -122.488625014278)",140660320-E14 +160531776,KM06,16021214,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:43:24 PM,02/22/2016 01:44:13 PM,02/22/2016 01:44:48 PM,02/22/2016 01:45:37 PM,02/22/2016 01:50:51 PM,02/22/2016 02:15:01 PM,02/22/2016 02:50:32 PM,Code 2 Transport,02/22/2016 03:44:45 PM,0 Block of OTTAWA AVE,San Francisco,94112,B09,43,8334,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.714293589217, -122.444679395128)",160531776-KM06 +160383167,71,16015368,Medical Incident,02/07/2016,02/07/2016,02/07/2016 08:02:02 PM,02/07/2016 08:04:04 PM,02/07/2016 08:04:30 PM,02/07/2016 08:05:15 PM,02/07/2016 08:14:14 PM,02/07/2016 08:25:25 PM,02/07/2016 08:46:32 PM,Code 2 Transport,02/07/2016 09:16:59 PM,LAGUNA ST/EDDY ST,San Francisco,94102,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",160383167-71 +122700235,E32,12089169,Medical Incident,09/26/2012,09/26/2012,09/26/2012 04:42:07 PM,09/26/2012 04:43:53 PM,09/26/2012 04:44:07 PM,09/26/2012 04:46:06 PM,09/26/2012 04:48:34 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Unable to Locate,09/26/2012 04:52:53 PM,200 Block of KINGSTON ST,SF,94110,B06,32,5653,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7410008919832, -122.42064445241)",122700235-E32 +122940149,E03,12097476,Medical Incident,10/20/2012,10/20/2012,10/20/2012 10:48:35 AM,10/20/2012 10:49:17 AM,10/20/2012 10:49:54 AM,04/25/2016 01:56:12 PM,10/20/2012 10:51:45 AM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 10:56:06 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",122940149-E03 +112410336,E36,11079656,Traffic Collision,08/29/2011,08/29/2011,08/29/2011 09:25:20 PM,08/29/2011 09:25:30 PM,08/29/2011 09:25:44 PM,08/29/2011 09:26:38 PM,08/29/2011 09:28:31 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 09:44:54 PM,GUERRERO ST/MARKET ST,SF,94103,B02,36,3416,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",112410336-E36 +122900250,AM16,12096025,Medical Incident,10/16/2012,10/16/2012,10/16/2012 03:05:07 PM,10/16/2012 03:06:28 PM,10/16/2012 03:06:39 PM,10/16/2012 03:07:16 PM,10/16/2012 03:15:37 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Patient Declined Transport,10/16/2012 03:30:37 PM,0 Block of MILL ST,SF,94134,B10,44,6315,3,1,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Visitacion Valley,"(37.7189806372776, -122.405931149637)",122900250-AM16 +160670329,79,16026609,Medical Incident,03/07/2016,03/06/2016,03/07/2016 05:30:28 AM,03/07/2016 05:33:37 AM,03/07/2016 05:34:50 AM,03/07/2016 05:34:55 AM,03/07/2016 05:42:09 AM,03/07/2016 05:53:33 AM,03/07/2016 06:01:32 AM,Code 2 Transport,03/07/2016 06:26:10 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160670329-79 +132310011,E06,13077857,Medical Incident,08/19/2013,08/18/2013,08/19/2013 12:29:03 AM,08/19/2013 12:31:59 AM,08/19/2013 12:32:28 AM,08/19/2013 12:33:54 AM,08/19/2013 12:36:46 AM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,Other,08/19/2013 12:52:25 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",132310011-E06 +160632100,86,16025101,Medical Incident,03/03/2016,03/03/2016,03/03/2016 02:30:09 PM,03/03/2016 02:30:35 PM,03/03/2016 02:30:57 PM,03/03/2016 02:31:16 PM,03/03/2016 02:38:23 PM,03/03/2016 02:48:24 PM,03/03/2016 02:54:23 PM,Code 3 Transport,03/03/2016 04:00:10 PM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",160632100-86 +122680032,88,12088407,Medical Incident,09/24/2012,09/23/2012,09/24/2012 02:17:16 AM,09/24/2012 02:18:10 AM,09/24/2012 02:18:38 AM,09/24/2012 02:18:47 AM,09/24/2012 02:27:11 AM,09/24/2012 02:31:55 AM,09/24/2012 02:39:14 AM,Code 2 Transport,09/24/2012 02:57:32 AM,OAK ST/FRANKLIN ST,SF,94102,B02,36,3266,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.775232334473, -122.420959921668)",122680032-88 +110100330,T13,11003433,Elevator / Escalator Rescue,01/10/2011,01/10/2011,01/10/2011 06:22:02 PM,01/10/2011 06:24:24 PM,01/10/2011 06:24:29 PM,01/10/2011 06:25:31 PM,01/10/2011 06:27:44 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Fire,01/10/2011 06:40:28 PM,300 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7923662514696, -122.402737365621)",110100330-T13 +110970337,D2,11032260,Structure Fire,04/07/2011,04/07/2011,04/07/2011 05:45:12 PM,04/07/2011 05:49:46 PM,04/07/2011 05:50:12 PM,04/07/2011 05:51:15 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Other,04/07/2011 05:56:22 PM,2100 Block of CLEMENT ST,SF,94121,B07,14,7175,3,3,3,false,,1,CHIEF,8,7,1,Outer Richmond,"(37.7820751633481, -122.482193568097)",110970337-D2 +122840079,E41,12093869,Structure Fire,10/10/2012,10/10/2012,10/10/2012 09:11:35 AM,10/10/2012 09:11:36 AM,10/10/2012 09:11:45 AM,10/10/2012 09:12:57 AM,10/10/2012 09:14:42 AM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 09:15:04 AM,LEAVENWORTH ST/BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",122840079-E41 +112260040,E32,11074554,Traffic Collision,08/14/2011,08/13/2011,08/14/2011 02:45:22 AM,08/14/2011 02:46:26 AM,08/14/2011 02:47:08 AM,08/14/2011 02:48:42 AM,08/14/2011 02:49:56 AM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/14/2011 02:59:43 AM,MISSION ST/BOSWORTH ST,SF,94112,B06,32,5633,3,3,3,true,,1,ENGINE,1,6,8,Outer Mission,"(37.7336750178474, -122.426391166349)",112260040-E32 +130090123,T16,13003057,Medical Incident,01/09/2013,01/09/2013,01/09/2013 10:17:22 AM,01/09/2013 10:18:19 AM,01/09/2013 10:18:57 AM,01/09/2013 10:20:24 AM,01/09/2013 10:24:31 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 10:43:08 AM,3700 Block of BRODERICK ST,SF,94123,B04,16,4216,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,2,Marina,"(37.8048883733226, -122.445622996571)",130090123-T16 +130780020,D2,13025895,Structure Fire,03/19/2013,03/18/2013,03/19/2013 01:35:10 AM,03/19/2013 01:35:59 AM,03/19/2013 01:36:16 AM,03/19/2013 01:38:17 AM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/19/2013 01:43:07 AM,200 Block of ANZA ST,SF,94118,B05,10,4456,3,3,3,false,Fire,1,CHIEF,7,5,1,Lone Mountain/USF,"(37.7808387791397, -122.449570865244)",130780020-D2 +113010203,RC1,11099853,Medical Incident,10/28/2011,10/28/2011,10/28/2011 01:34:40 PM,10/28/2011 01:34:55 PM,10/28/2011 01:35:03 PM,04/25/2016 02:01:56 PM,10/28/2011 01:40:08 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 01:47:53 PM,POLK ST/POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,RESCUE CAPTAIN,3,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",113010203-RC1 +130880245,E05,13029421,Medical Incident,03/29/2013,03/29/2013,03/29/2013 02:22:25 PM,03/29/2013 02:24:25 PM,03/29/2013 02:24:52 PM,03/29/2013 02:26:48 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 02:27:08 PM,0 Block of DANIEL BURNHAM CT,SF,94109,B04,3,3161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Western Addition,"(37.7869107185707, -122.422525749968)",130880245-E05 +132990164,E15,13101566,Medical Incident,10/26/2013,10/26/2013,10/26/2013 11:23:04 AM,10/26/2013 11:23:37 AM,10/26/2013 11:24:26 AM,10/26/2013 11:26:00 AM,10/26/2013 11:30:55 AM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/26/2013 11:53:18 AM,300 Block of GUTTENBERG ST,SF,94112,B09,43,6231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7091043095113, -122.44247658842)",132990164-E15 +131590125,T17,13053969,Structure Fire,06/08/2013,06/08/2013,06/08/2013 10:06:12 AM,06/08/2013 10:06:12 AM,06/08/2013 10:06:19 AM,06/08/2013 10:08:16 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 10:10:56 AM,KEITH ST/NEWCOMB AV,SF,94124,B10,17,6516,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7331034788148, -122.38604554171)",131590125-T17 +130900298,94,13030221,Citizen Assist / Service Call,03/31/2013,03/31/2013,03/31/2013 08:10:45 PM,03/31/2013 08:13:52 PM,03/31/2013 08:22:29 PM,03/31/2013 08:22:54 PM,03/31/2013 08:29:20 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Fire,03/31/2013 08:38:06 PM,400 Block of GOLD MINE DR,SF,94131,B06,26,8153,3,3,3,true,Alarm,1,MEDIC,2,6,8,Glen Park,"(37.7394547622904, -122.437041860856)",130900298-94 +122810292,E16,12093083,Alarms,10/07/2012,10/07/2012,10/07/2012 05:48:28 PM,10/07/2012 05:49:46 PM,10/07/2012 05:49:54 PM,10/07/2012 05:50:54 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/07/2012 05:57:49 PM,900 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Alarm,1,ENGINE,4,1,3,Nob Hill,"(37.7922894208567, -122.410980459852)",122810292-E16 +160083412,58,16003391,Medical Incident,01/08/2016,01/08/2016,01/08/2016 07:51:02 PM,01/08/2016 07:53:21 PM,01/08/2016 07:53:58 PM,01/08/2016 07:54:09 PM,01/08/2016 08:07:24 PM,01/08/2016 08:14:29 PM,01/08/2016 08:32:33 PM,Code 2 Transport,01/08/2016 09:08:37 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160083412-58 +102350162,E16,10073931,Medical Incident,08/23/2010,08/23/2010,08/23/2010 12:16:02 PM,08/23/2010 12:16:31 PM,08/23/2010 12:18:00 PM,04/25/2016 02:08:57 PM,08/23/2010 12:24:58 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 12:46:15 PM,3700 Block of BUCHANAN ST,SF,94123,B04,16,3446,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8045420636578, -122.433697283061)",102350162-E16 +102590126,E36,10081772,Medical Incident,09/16/2010,09/16/2010,09/16/2010 09:38:40 AM,09/16/2010 09:39:56 AM,09/16/2010 09:40:20 AM,09/16/2010 09:40:42 AM,09/16/2010 09:42:22 AM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 10:03:04 AM,800 Block of TURK ST,SF,94102,B02,36,3216,3,1,2,true,,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",102590126-E36 +160270462,79,16010551,Medical Incident,01/27/2016,01/26/2016,01/27/2016 06:27:14 AM,01/27/2016 06:29:16 AM,01/27/2016 06:29:32 AM,01/27/2016 06:29:43 AM,01/27/2016 06:43:46 AM,01/27/2016 07:14:15 AM,01/27/2016 07:17:41 AM,Code 2 Transport,01/27/2016 07:46:00 AM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",160270462-79 +131180134,82,13039656,Medical Incident,04/28/2013,04/28/2013,04/28/2013 10:56:40 AM,04/28/2013 10:58:06 AM,04/28/2013 10:58:27 AM,04/28/2013 10:58:44 AM,04/28/2013 11:03:37 AM,04/28/2013 11:21:08 AM,04/28/2013 11:23:30 AM,Code 3 Transport,04/28/2013 12:01:37 PM,2600 Block of MCALLISTER ST,SF,94118,B07,21,4556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7756015496954, -122.45596736958)",131180134-82 +140800159,KM06,14027015,Traffic Collision,03/21/2014,03/21/2014,03/21/2014 12:06:36 PM,03/21/2014 12:06:47 PM,03/21/2014 12:07:10 PM,03/21/2014 12:07:57 PM,03/21/2014 12:13:07 PM,03/21/2014 12:17:03 PM,04/25/2016 01:47:38 PM,Code 3 Transport,03/21/2014 01:00:48 PM,MISSION ST/AMAZON AV,SAN FRANCISCO,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,11,Excelsior,"(37.7172446200647, -122.440417736667)",140800159-KM06 +133270252,T13,13111121,Structure Fire,11/23/2013,11/23/2013,11/23/2013 02:31:50 PM,11/23/2013 02:32:09 PM,11/23/2013 02:56:39 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,04/25/2016 01:49:37 PM,3600 Block of SACRAMENTO ST,SF,94118,B07,10,4432,3,3,3,false,Fire,3,TRUCK,35,7,2,Presidio Heights,"(37.7873936866832, -122.452758503157)",133270252-T13 +131810022,E01,13061475,Structure Fire,06/30/2013,06/29/2013,06/30/2013 01:08:31 AM,06/30/2013 01:08:31 AM,06/30/2013 01:08:39 AM,06/30/2013 01:11:01 AM,06/30/2013 01:12:58 AM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,Fire,06/30/2013 01:13:01 AM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Alarm,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",131810022-E01 +133510176,65,13119180,Medical Incident,12/17/2013,12/17/2013,12/17/2013 11:38:12 AM,12/17/2013 11:39:51 AM,12/17/2013 11:40:15 AM,12/17/2013 11:40:54 AM,12/17/2013 12:10:05 PM,12/17/2013 12:27:30 PM,12/17/2013 12:51:23 PM,Code 2 Transport,12/17/2013 01:19:15 PM,1700 Block of 20TH AVE,SF,94122,B08,40,7422,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.755123574931, -122.477683428402)",133510176-65 +133360306,E23,13113993,Medical Incident,12/02/2013,12/02/2013,12/02/2013 07:07:30 PM,12/02/2013 07:09:29 PM,12/02/2013 07:11:40 PM,12/02/2013 07:12:07 PM,12/02/2013 07:20:41 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/02/2013 07:40:25 PM,1300 Block of 48TH AVE,SF,94122,B08,23,7721,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.761256999261, -122.508202143455)",133360306-E23 +103000055,E34,10095677,Medical Incident,10/27/2010,10/26/2010,10/27/2010 05:59:45 AM,10/27/2010 06:00:11 AM,10/27/2010 06:00:59 AM,10/27/2010 06:02:31 AM,10/27/2010 06:03:40 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 06:12:01 AM,7500 Block of GEARY BLVD,SF,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.779202123681, -122.501331891706)",103000055-E34 +160562668,76,16022466,Medical Incident,02/25/2016,02/25/2016,02/25/2016 04:14:31 PM,02/25/2016 04:16:41 PM,02/25/2016 04:17:10 PM,02/25/2016 04:17:17 PM,02/25/2016 04:21:25 PM,02/25/2016 04:35:26 PM,02/25/2016 04:41:13 PM,Code 2 Transport,02/25/2016 05:21:09 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160562668-76 +102790153,E03,10088679,Medical Incident,10/06/2010,10/06/2010,10/06/2010 12:32:32 PM,10/06/2010 12:34:44 PM,10/06/2010 12:35:04 PM,10/06/2010 12:36:03 PM,10/06/2010 12:38:30 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 12:40:27 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102790153-E03 +112030177,E07,11067009,Medical Incident,07/22/2011,07/22/2011,07/22/2011 12:06:57 PM,07/22/2011 12:09:14 PM,07/22/2011 12:10:01 PM,07/22/2011 12:11:03 PM,07/22/2011 12:14:23 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,07/22/2011 12:24:09 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",112030177-E07 +133330190,E36,13112969,Medical Incident,11/29/2013,11/29/2013,11/29/2013 03:39:14 PM,11/29/2013 03:40:00 PM,11/29/2013 03:40:37 PM,11/29/2013 03:41:48 PM,11/29/2013 03:45:08 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/29/2013 03:47:43 PM,POLK ST/MARKET ST,SF,94103,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",133330190-E36 +112760250,E01,11091400,Medical Incident,10/03/2011,10/03/2011,10/03/2011 03:16:13 PM,10/03/2011 03:16:40 PM,10/03/2011 03:17:29 PM,10/03/2011 03:17:56 PM,10/03/2011 03:25:00 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 03:35:53 PM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,2,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",112760250-E01 +160562001,KM02,16022403,Medical Incident,02/25/2016,02/25/2016,02/25/2016 01:19:34 PM,02/25/2016 01:21:16 PM,02/25/2016 01:22:18 PM,02/25/2016 01:22:18 PM,02/25/2016 01:33:45 PM,02/25/2016 02:05:34 PM,02/25/2016 02:14:00 PM,Code 2 Transport,02/25/2016 02:47:01 PM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7927299343809, -122.40328650281)",160562001-KM02 +140690203,E28,14023298,Medical Incident,03/10/2014,03/10/2014,03/10/2014 02:20:55 PM,03/10/2014 02:22:47 PM,03/10/2014 03:33:41 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Code 2 Transport,03/10/2014 03:35:18 PM,900 Block of FILBERT ST,SAN FRANCISCO,94133,B01,28,1436,2,3,3,false,Potentially Life-Threatening,1,ENGINE,4,1,3,Russian Hill,"(37.8007755481201, -122.414600502925)",140690203-E28 +122360175,E01,12078184,Medical Incident,08/23/2012,08/23/2012,08/23/2012 01:27:11 PM,08/23/2012 01:28:13 PM,08/23/2012 01:28:26 PM,08/23/2012 01:29:52 PM,08/23/2012 01:32:18 PM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Other,08/23/2012 01:32:37 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122360175-E01 +160140951,87,16005495,Medical Incident,01/14/2016,01/14/2016,01/14/2016 09:07:24 AM,01/14/2016 09:08:15 AM,01/14/2016 09:09:21 AM,01/14/2016 09:09:35 AM,01/14/2016 09:16:58 AM,01/14/2016 09:42:32 AM,01/14/2016 10:04:13 AM,Code 2 Transport,01/14/2016 10:49:49 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160140951-87 +131780044,KM07,13060322,Traffic Collision,06/27/2013,06/26/2013,06/27/2013 05:46:35 AM,06/27/2013 05:47:05 AM,06/27/2013 05:47:24 AM,06/27/2013 05:47:53 AM,06/27/2013 05:52:14 AM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,No Merit,06/27/2013 06:27:15 AM,TAYLOR ST/OFARRELL ST,SF,94102,B01,1,1452,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",131780044-KM07 +131280226,AM08,13043298,Medical Incident,05/08/2013,05/08/2013,05/08/2013 02:28:30 PM,05/08/2013 02:30:40 PM,05/08/2013 02:31:10 PM,05/08/2013 02:31:42 PM,05/08/2013 02:38:14 PM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 02:40:35 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",131280226-AM08 +112020302,84,11066731,Medical Incident,07/21/2011,07/21/2011,07/21/2011 04:10:32 PM,07/21/2011 04:12:30 PM,07/21/2011 04:12:59 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,04/25/2016 02:03:33 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",112020302-84 +140210023,93,14007055,Medical Incident,01/21/2014,01/20/2014,01/21/2014 03:26:23 AM,01/21/2014 03:28:24 AM,01/21/2014 03:28:38 AM,01/21/2014 03:29:31 AM,01/21/2014 03:39:54 AM,01/21/2014 04:01:55 AM,01/21/2014 04:15:35 AM,Code 2 Transport,01/21/2014 04:40:15 AM,3400 Block of DIVISADERO ST,SF,94123,B04,16,4212,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8013645565357, -122.443197401003)",140210023-93 +140800026,RS1,14026909,Structure Fire,03/21/2014,03/20/2014,03/21/2014 02:32:23 AM,03/21/2014 02:34:55 AM,03/21/2014 02:35:40 AM,03/21/2014 02:37:56 AM,03/21/2014 02:40:12 AM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Fire,03/21/2014 02:44:13 AM,600 Block of ELLIS ST,SAN FRANCISCO,94109,B02,3,1555,3,3,3,false,Alarm,1,RESCUE SQUAD,5,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",140800026-RS1 +132570285,E22,13086988,Medical Incident,09/14/2013,09/14/2013,09/14/2013 05:13:01 PM,09/14/2013 05:14:26 PM,09/14/2013 05:14:56 PM,09/14/2013 05:16:10 PM,09/14/2013 05:20:42 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 05:27:59 PM,1900 Block of LINCOLN WAY,SF,94122,B08,22,7425,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7652848425129, -122.478853338879)",132570285-E22 +133130048,D3,13106259,Structure Fire,11/09/2013,11/08/2013,11/09/2013 02:35:11 AM,11/09/2013 02:36:55 AM,11/09/2013 02:37:31 AM,11/09/2013 02:39:35 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 02:45:48 AM,1500 Block of WALLACE AVE,SF,94124,B10,17,6546,3,3,3,false,Alarm,1,CHIEF,8,10,10,Bayview Hunters Point,"(37.7269904434139, -122.390132474192)",133130048-D3 +133560301,T14,13121124,Medical Incident,12/22/2013,12/22/2013,12/22/2013 06:17:21 PM,12/22/2013 06:18:13 PM,12/22/2013 06:18:49 PM,12/22/2013 06:20:04 PM,12/22/2013 06:25:52 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 06:33:43 PM,6900 Block of GEARY BLVD,SF,94121,B07,14,7245,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,7,1,Outer Richmond,"(37.7795631193905, -122.493834451444)",133560301-T14 +102640360,89,10083711,Medical Incident,09/21/2010,09/21/2010,09/21/2010 10:22:34 PM,09/21/2010 10:27:19 PM,09/21/2010 10:27:48 PM,04/25/2016 02:08:29 PM,09/21/2010 10:33:12 PM,09/21/2010 10:47:05 PM,09/21/2010 10:55:56 PM,Code 2 Transport,09/21/2010 11:10:16 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",102640360-89 +160393226,63,16015772,Medical Incident,02/08/2016,02/08/2016,02/08/2016 07:48:20 PM,02/08/2016 07:50:22 PM,02/08/2016 07:50:56 PM,02/08/2016 07:51:04 PM,02/08/2016 08:07:27 PM,02/08/2016 08:11:45 PM,02/08/2016 08:27:17 PM,Code 2 Transport,02/08/2016 09:43:03 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160393226-63 +140360306,68,14012320,Medical Incident,02/05/2014,02/05/2014,02/05/2014 09:18:52 PM,02/05/2014 09:19:40 PM,02/05/2014 09:20:05 PM,02/05/2014 09:21:16 PM,02/05/2014 09:23:46 PM,04/25/2016 01:48:22 PM,04/25/2016 01:48:22 PM,Other,02/05/2014 09:49:19 PM,300 Block of JULES AVE,SF,94112,B09,15,8457,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7242989670231, -122.461184373042)",140360306-68 +120100379,T03,12003646,Structure Fire,01/10/2012,01/10/2012,01/10/2012 10:38:46 PM,01/10/2012 10:38:48 PM,01/10/2012 10:39:06 PM,01/10/2012 10:40:19 PM,01/10/2012 10:41:13 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/10/2012 10:41:38 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,false,Alarm,1,TRUCK,2,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",120100379-T03 +121720312,D2,12057226,Structure Fire,06/20/2012,06/20/2012,06/20/2012 08:04:25 PM,06/20/2012 08:05:12 PM,06/20/2012 08:06:00 PM,06/20/2012 08:07:06 PM,06/20/2012 08:08:16 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 08:13:02 PM,1300 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Fire,1,CHIEF,2,5,5,Western Addition,"(37.7818977107871, -122.432353853525)",121720312-D2 +130960028,E22,13032051,Structure Fire,04/06/2013,04/05/2013,04/06/2013 01:26:41 AM,04/06/2013 01:26:41 AM,04/06/2013 01:27:19 AM,04/06/2013 01:28:19 AM,04/06/2013 01:29:49 AM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 01:30:14 AM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,false,Alarm,1,ENGINE,1,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",130960028-E22 +122090075,RC3,12069361,Medical Incident,07/27/2012,07/27/2012,07/27/2012 08:22:23 AM,07/27/2012 08:24:01 AM,07/27/2012 08:24:19 AM,07/27/2012 08:33:00 AM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 08:36:58 AM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",122090075-RC3 +111490196,B06,11049416,Odor (Strange / Unknown),05/29/2011,05/29/2011,05/29/2011 04:08:57 PM,05/29/2011 04:12:46 PM,05/29/2011 04:12:59 PM,05/29/2011 04:14:00 PM,05/29/2011 04:15:43 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 04:24:32 PM,200 Block of 27TH ST,SF,94131,B06,11,5556,3,3,3,false,,1,CHIEF,2,6,8,Noe Valley,"(37.7470197682877, -122.425834246256)",111490196-B06 +132420304,E16,13081726,Structure Fire,08/30/2013,08/30/2013,08/30/2013 04:35:51 PM,08/30/2013 04:35:52 PM,08/30/2013 04:36:27 PM,08/30/2013 04:37:24 PM,08/30/2013 04:40:22 PM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/30/2013 04:48:06 PM,1100 Block of FRANCISCO ST,SF,94109,B01,16,314,3,3,3,true,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.803363322315, -122.424107741649)",132420304-E16 +110590226,E41,11019419,Structure Fire,02/28/2011,02/28/2011,02/28/2011 03:27:04 PM,02/28/2011 03:27:04 PM,02/28/2011 03:27:44 PM,02/28/2011 03:28:57 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Other,02/28/2011 03:31:09 PM,1000 Block of LARKIN ST,SF,94109,B04,3,1641,3,3,3,false,,1,ENGINE,2,4,3,Nob Hill,"(37.7872535428993, -122.418386203087)",110590226-E41 +110440107,54,11014571,Medical Incident,02/13/2011,02/13/2011,02/13/2011 08:55:16 AM,02/13/2011 08:55:58 AM,02/13/2011 08:57:40 AM,02/13/2011 08:57:48 AM,02/13/2011 09:02:05 AM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 09:04:47 AM,EDDY ST/HYDE ST,SF,94102,B02,3,1545,1,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",110440107-54 +132940338,T15,13100119,Alarms,10/21/2013,10/21/2013,10/21/2013 07:59:22 PM,10/21/2013 07:59:52 PM,10/21/2013 08:00:13 PM,10/21/2013 08:01:14 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 08:02:29 PM,100 Block of EXCELSIOR AVE,SF,94112,B09,43,611,3,3,3,false,Alarm,1,TRUCK,3,9,11,Excelsior,"(37.7257265963084, -122.432419861004)",132940338-T15 +131000370,88,13033766,Traffic Collision,04/10/2013,04/10/2013,04/10/2013 08:56:16 PM,04/10/2013 08:58:03 PM,04/10/2013 08:58:59 PM,04/10/2013 08:59:06 PM,04/10/2013 09:17:24 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,No Merit,04/10/2013 09:41:55 PM,CALL BOX: FS YB-BLDG 213,OAK,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",131000370-88 +111120028,E01,11036870,Alarms,04/22/2011,04/21/2011,04/22/2011 01:40:43 AM,04/22/2011 01:42:07 AM,04/22/2011 01:42:18 AM,04/22/2011 01:43:42 AM,04/22/2011 01:46:22 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 01:51:25 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",111120028-E01 +113450319,E08,11114581,Medical Incident,12/11/2011,12/11/2011,12/11/2011 08:08:38 PM,12/11/2011 08:09:35 PM,12/11/2011 08:09:51 PM,12/11/2011 08:11:18 PM,12/11/2011 08:12:23 PM,12/11/2011 08:27:17 PM,12/11/2011 08:46:59 PM,Other,12/11/2011 08:57:07 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",113450319-E08 +160560773,KM09,16022284,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:18:24 AM,02/25/2016 08:21:43 AM,02/25/2016 08:22:06 AM,02/25/2016 08:22:37 AM,02/25/2016 08:38:38 AM,02/25/2016 08:58:49 AM,02/25/2016 09:12:21 AM,Code 2 Transport,02/25/2016 09:54:27 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7795675904232, -122.407474134598)",160560773-KM09 +110800269,KM11,11026431,Medical Incident,03/21/2011,03/21/2011,03/21/2011 03:44:37 PM,03/21/2011 03:46:12 PM,03/21/2011 03:47:41 PM,03/21/2011 03:48:46 PM,03/21/2011 03:49:50 PM,03/21/2011 04:18:55 PM,03/21/2011 04:35:51 PM,Code 2 Transport,03/21/2011 05:02:04 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,,1,PRIVATE,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",110800269-KM11 +120430304,KM15,12014508,Medical Incident,02/12/2012,02/12/2012,02/12/2012 08:36:32 PM,02/12/2012 08:37:31 PM,02/12/2012 08:37:55 PM,02/12/2012 08:38:30 PM,02/12/2012 08:44:10 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Patient Declined Transport,02/12/2012 08:50:46 PM,2000 Block of VAN NESS AVE,SF,94109,B04,41,3153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Pacific Heights,"(37.7943544378215, -122.423308835651)",120430304-KM15 +132130146,E01,13071938,Medical Incident,08/01/2013,08/01/2013,08/01/2013 12:26:24 PM,08/01/2013 12:27:37 PM,08/01/2013 12:28:15 PM,08/01/2013 12:29:14 PM,08/01/2013 12:39:03 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 12:48:41 PM,300 Block of MARKET ST,SF,94111,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7921324266791, -122.397911804174)",132130146-E01 +131680352,E03,13057206,Structure Fire,06/17/2013,06/17/2013,06/17/2013 10:22:21 PM,06/17/2013 10:22:21 PM,06/17/2013 10:22:37 PM,06/17/2013 10:22:57 PM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,Other,06/17/2013 10:23:27 PM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7779770860913, -122.409387007126)",131680352-E03 +160032733,79,16001319,Medical Incident,01/03/2016,01/03/2016,01/03/2016 07:11:08 PM,01/03/2016 07:11:51 PM,01/03/2016 07:11:59 PM,01/03/2016 07:12:15 PM,01/03/2016 07:18:13 PM,01/03/2016 07:46:14 PM,01/03/2016 07:52:33 PM,Code 2 Transport,01/03/2016 08:24:44 PM,COLE ST/CARL ST,San Francisco,94117,B05,12,5144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7658000298196, -122.449958130403)",160032733-79 +160150458,62,16005849,Medical Incident,01/15/2016,01/14/2016,01/15/2016 05:41:50 AM,01/15/2016 05:44:50 AM,01/15/2016 05:45:03 AM,01/15/2016 05:45:20 AM,01/15/2016 05:54:30 AM,01/15/2016 06:20:45 AM,01/15/2016 06:38:37 AM,Code 2 Transport,01/15/2016 06:59:42 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",160150458-62 +131100392,94,13037207,Medical Incident,04/20/2013,04/20/2013,04/20/2013 09:50:40 PM,04/20/2013 09:52:01 PM,04/20/2013 09:52:14 PM,04/20/2013 09:52:26 PM,04/20/2013 10:01:27 PM,04/20/2013 10:08:12 PM,04/20/2013 10:43:36 PM,Code 2 Transport,04/20/2013 11:10:18 PM,0 Block of TEDDY AVE,SF,94134,B10,44,6265,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.713430704116, -122.403252361212)",131100392-94 +160022648,88,16000842,Medical Incident,01/02/2016,01/02/2016,01/02/2016 06:07:02 PM,01/02/2016 06:08:53 PM,01/02/2016 06:09:24 PM,01/02/2016 06:09:53 PM,01/02/2016 06:21:28 PM,01/02/2016 06:42:48 PM,01/02/2016 07:04:28 PM,Code 2 Transport,01/02/2016 07:57:25 PM,1000 Block of HOLLISTER AVE,San Francisco,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7192584871254, -122.391450988401)",160022648-88 +160500106,63,16019930,Medical Incident,02/19/2016,02/18/2016,02/19/2016 12:57:39 AM,02/19/2016 12:57:39 AM,02/19/2016 12:57:39 AM,02/19/2016 12:57:39 AM,02/19/2016 12:57:39 AM,02/19/2016 01:15:05 AM,02/19/2016 01:20:47 AM,Code 2 Transport,02/19/2016 02:03:46 AM,9TH AV/JUDAH ST,San Francisco,94122,B99,22,7334,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7621750437096, -122.466180554463)",160500106-63 +160123245,53,16004912,Traffic Collision,01/12/2016,01/12/2016,01/12/2016 07:29:45 PM,01/12/2016 07:30:32 PM,01/12/2016 07:30:58 PM,01/12/2016 07:33:20 PM,01/12/2016 07:37:09 PM,01/12/2016 07:54:53 PM,01/12/2016 08:09:12 PM,Code 2 Transport,01/12/2016 09:02:20 PM,PACIFIC AV/TAYLOR ST,San Francisco,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7960835505361, -122.413366185175)",160123245-53 +120700150,T10,12023227,Alarms,03/10/2012,03/10/2012,03/10/2012 10:42:51 AM,03/10/2012 10:43:49 AM,03/10/2012 10:44:03 AM,03/10/2012 10:45:30 AM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,Other,03/10/2012 10:49:17 AM,2800 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7931736175933, -122.444028632879)",120700150-T10 +160301295,57,16011735,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:14:50 AM,01/30/2016 10:16:38 AM,01/30/2016 10:16:56 AM,01/30/2016 10:17:19 AM,01/30/2016 10:23:15 AM,01/30/2016 10:35:15 AM,01/30/2016 10:37:18 AM,Code 3 Transport,01/30/2016 11:15:35 AM,3500 Block of 23RD ST,San Francisco,94110,B06,11,5512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7535600538257, -122.422267918951)",160301295-57 +132470033,E11,13083214,Medical Incident,09/04/2013,09/03/2013,09/04/2013 03:29:56 AM,09/04/2013 03:30:16 AM,09/04/2013 03:30:29 AM,04/25/2016 01:50:58 PM,09/04/2013 03:34:08 AM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 03:40:32 AM,3300 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7482858766932, -122.417044258324)",132470033-E11 +120780253,E01,12025930,Structure Fire,03/18/2012,03/18/2012,03/18/2012 02:33:28 PM,03/18/2012 02:34:29 PM,03/18/2012 02:34:47 PM,03/18/2012 02:36:21 PM,03/18/2012 02:38:08 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/18/2012 02:45:59 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,Fire,1,ENGINE,3,3,6,South of Market,"(37.7806691632498, -122.401678045598)",120780253-E01 +110360318,T01,11011938,Elevator / Escalator Rescue,02/05/2011,02/05/2011,02/05/2011 04:55:03 PM,02/05/2011 04:56:57 PM,02/05/2011 04:58:05 PM,02/05/2011 05:00:17 PM,02/05/2011 05:02:12 PM,04/25/2016 02:06:14 PM,04/25/2016 02:06:14 PM,Other,02/05/2011 05:18:03 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",110360318-T01 +103200196,T07,10102566,Structure Fire,11/16/2010,11/16/2010,11/16/2010 12:43:51 PM,11/16/2010 12:43:52 PM,11/16/2010 12:44:06 PM,11/16/2010 12:45:51 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 12:47:50 PM,12TH ST/FOLSOM ST,SF,94103,B02,36,5121,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.7708961078752, -122.414996655724)",103200196-T07 +112710039,E06,11089423,Medical Incident,09/28/2011,09/27/2011,09/28/2011 04:52:21 AM,09/28/2011 04:53:13 AM,09/28/2011 04:53:40 AM,09/28/2011 04:56:17 AM,09/28/2011 04:57:33 AM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/28/2011 04:59:13 AM,15TH ST/CHURCH ST,SF,94114,B02,6,5227,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7661300154558, -122.428819146831)",112710039-E06 +131050185,E37,13035270,Medical Incident,04/15/2013,04/15/2013,04/15/2013 01:15:52 PM,04/15/2013 01:17:43 PM,04/15/2013 01:18:12 PM,04/15/2013 01:18:59 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 01:37:12 PM,1200 Block of CAROLINA ST,SF,94107,B10,37,256,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7526323138734, -122.398696830553)",131050185-E37 +160671664,88,16026761,Medical Incident,03/07/2016,03/07/2016,03/07/2016 01:42:40 PM,03/07/2016 01:42:40 PM,03/07/2016 01:44:33 PM,03/07/2016 01:44:44 PM,03/07/2016 01:51:48 PM,03/07/2016 02:00:53 PM,03/07/2016 02:12:08 PM,Code 2 Transport,03/07/2016 02:57:00 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160671664-88 +160783662,52,16031180,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:51:48 PM,03/18/2016 08:54:23 PM,03/18/2016 08:54:34 PM,03/18/2016 08:54:41 PM,03/18/2016 09:00:53 PM,03/18/2016 09:25:41 PM,03/18/2016 09:30:45 PM,Code 2 Transport,03/18/2016 10:30:25 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",160783662-52 +102270246,E16,10071512,Medical Incident,08/15/2010,08/15/2010,08/15/2010 04:39:05 PM,08/15/2010 04:40:04 PM,08/15/2010 04:41:09 PM,08/15/2010 04:42:10 PM,08/15/2010 04:43:53 PM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,Other,08/15/2010 04:54:16 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8008031731089, -122.436797742278)",102270246-E16 +122280246,E01,12075606,Medical Incident,08/15/2012,08/15/2012,08/15/2012 03:29:04 PM,08/15/2012 03:30:46 PM,08/15/2012 03:31:10 PM,08/15/2012 03:32:59 PM,08/15/2012 03:35:51 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Patient Declined Transport,08/15/2012 03:41:54 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",122280246-E01 +132150274,AM24,13072688,Medical Incident,08/03/2013,08/03/2013,08/03/2013 04:33:18 PM,08/03/2013 04:35:19 PM,08/03/2013 04:35:57 PM,08/03/2013 04:36:45 PM,08/03/2013 04:39:28 PM,08/03/2013 04:57:03 PM,08/03/2013 05:03:06 PM,Code 2 Transport,08/03/2013 05:20:00 PM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",132150274-AM24 +112230394,89,11073829,Medical Incident,08/11/2011,08/11/2011,08/11/2011 11:56:18 PM,08/11/2011 11:57:22 PM,08/11/2011 11:57:46 PM,08/11/2011 11:57:52 PM,08/11/2011 11:59:23 PM,08/12/2011 12:14:02 AM,08/12/2011 12:21:08 AM,Code 2 Transport,08/12/2011 12:52:31 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",112230394-89 +121530142,T01,12050603,Alarms,06/01/2012,06/01/2012,06/01/2012 12:25:01 PM,06/01/2012 12:26:26 PM,06/01/2012 12:26:38 PM,06/01/2012 12:28:33 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 12:36:06 PM,700 Block of MINNA ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,TRUCK,3,2,6,South of Market,"(37.7763745624994, -122.413346206384)",121530142-T01 +123230290,T13,12107510,Alarms,11/18/2012,11/18/2012,11/18/2012 08:00:32 PM,11/18/2012 08:02:09 PM,11/18/2012 08:02:16 PM,11/18/2012 08:03:46 PM,11/18/2012 08:05:47 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/18/2012 08:17:59 PM,0 Block of SANSOME ST,SF,94104,B01,13,1164,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",123230290-T13 +121660110,93,12054999,Medical Incident,06/14/2012,06/14/2012,06/14/2012 09:31:04 AM,06/14/2012 09:31:26 AM,06/14/2012 09:32:24 AM,04/25/2016 01:58:13 PM,06/14/2012 09:38:05 AM,06/14/2012 09:54:09 AM,06/14/2012 09:58:18 AM,Code 3 Transport,06/14/2012 10:47:06 AM,1400 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",121660110-93 +160251328,52,16009888,Medical Incident,01/25/2016,01/25/2016,01/25/2016 10:46:46 AM,01/25/2016 10:48:07 AM,01/25/2016 10:50:14 AM,01/25/2016 10:50:29 AM,01/25/2016 11:04:46 AM,01/25/2016 11:25:05 AM,01/25/2016 11:55:02 AM,Code 2 Transport,01/25/2016 01:12:48 PM,200 Block of PARIS ST,San Francisco,94112,B09,43,6127,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7246819549267, -122.432583397927)",160251328-52 +120990037,B09,12032690,Alarms,04/08/2012,04/07/2012,04/08/2012 03:00:39 AM,04/08/2012 03:01:52 AM,04/08/2012 03:02:21 AM,04/08/2012 03:03:29 AM,04/08/2012 03:08:30 AM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 03:21:51 AM,3900 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,2,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",120990037-B09 +160501171,83,16020035,Medical Incident,02/19/2016,02/19/2016,02/19/2016 10:31:45 AM,02/19/2016 10:33:53 AM,02/19/2016 10:34:14 AM,02/19/2016 10:34:26 AM,02/19/2016 10:38:07 AM,02/19/2016 10:46:31 AM,02/19/2016 10:57:38 AM,Code 2 Transport,02/19/2016 11:16:53 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160501171-83 +123140284,E44,12104577,Medical Incident,11/09/2012,11/09/2012,11/09/2012 05:23:33 PM,11/09/2012 05:24:20 PM,11/09/2012 05:24:29 PM,11/09/2012 05:25:21 PM,11/09/2012 05:28:55 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 05:47:03 PM,6200 Block of 3RD ST,SF,94124,B10,44,6544,3,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7213831461768, -122.396234473248)",123140284-E44 +120310221,E33,12010304,Medical Incident,01/31/2012,01/31/2012,01/31/2012 03:10:20 PM,01/31/2012 03:11:39 PM,01/31/2012 03:12:19 PM,01/31/2012 03:13:43 PM,01/31/2012 03:15:45 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/31/2012 04:02:06 PM,200 Block of VICTORIA ST,SF,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7152017916532, -122.465379533381)",120310221-E33 +112880250,T02,11095593,Elevator / Escalator Rescue,10/15/2011,10/15/2011,10/15/2011 03:57:14 PM,10/15/2011 03:58:25 PM,10/15/2011 03:58:32 PM,10/15/2011 03:59:52 PM,10/15/2011 04:02:18 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Fire,10/15/2011 04:38:12 PM,600 Block of JACKSON ST,SF,94133,B01,2,1312,3,3,3,false,,1,TRUCK,1,1,3,Chinatown,"(37.7961122899113, -122.405492182184)",112880250-T02 +130670283,78,13022405,Medical Incident,03/08/2013,03/08/2013,03/08/2013 04:39:00 PM,03/08/2013 04:40:34 PM,03/08/2013 04:40:58 PM,03/08/2013 04:41:17 PM,03/08/2013 04:44:06 PM,03/08/2013 05:02:02 PM,03/08/2013 05:20:42 PM,Code 2 Transport,03/08/2013 05:57:18 PM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",130670283-78 +120840285,64,12027989,Traffic Collision,03/24/2012,03/24/2012,03/24/2012 05:29:45 PM,03/24/2012 05:33:46 PM,03/24/2012 05:34:11 PM,03/24/2012 05:34:33 PM,03/24/2012 05:38:37 PM,03/24/2012 06:30:46 PM,03/24/2012 06:57:51 PM,Code 2 Transport,03/24/2012 07:19:08 PM,RICHARDSON AV/FRANCISCO ST,SF,94123,B04,16,4325,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8003858224919, -122.447130573329)",120840285-64 +130310386,68,13010746,Medical Incident,01/31/2013,01/31/2013,01/31/2013 09:51:54 PM,01/31/2013 09:54:15 PM,01/31/2013 09:55:03 PM,01/31/2013 09:55:20 PM,01/31/2013 10:07:33 PM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,01/31/2013 10:08:14 PM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,1,1,2,true,Non Life-threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",130310386-68 +131350338,E22,13045680,Medical Incident,05/15/2013,05/15/2013,05/15/2013 07:59:45 PM,05/15/2013 08:03:28 PM,05/15/2013 08:03:39 PM,05/15/2013 08:04:46 PM,05/15/2013 08:08:03 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 08:16:23 PM,1500 Block of 19TH AVE,SF,94122,B08,22,7423,E,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7588956344045, -122.476892326601)",131350338-E22 +160270682,KM03,16010571,Medical Incident,01/27/2016,01/27/2016,01/27/2016 08:05:19 AM,01/27/2016 08:07:04 AM,01/27/2016 08:07:57 AM,01/27/2016 08:08:55 AM,01/27/2016 08:24:45 AM,01/27/2016 08:47:47 AM,01/27/2016 09:06:35 AM,Code 2 Transport,01/27/2016 09:42:40 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160270682-KM03 +132340221,81,13079025,Medical Incident,08/22/2013,08/22/2013,08/22/2013 02:56:58 PM,08/22/2013 02:58:38 PM,08/22/2013 02:59:05 PM,08/22/2013 02:59:19 PM,08/22/2013 03:21:06 PM,08/22/2013 03:35:44 PM,08/22/2013 04:07:43 PM,Code 2 Transport,08/22/2013 04:12:23 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",132340221-81 +122360328,54,12078312,Medical Incident,08/23/2012,08/23/2012,08/23/2012 08:35:40 PM,08/23/2012 08:37:12 PM,08/23/2012 08:38:39 PM,08/23/2012 08:38:51 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/23/2012 08:43:39 PM,MARKET ST/NOE ST,SF,94114,B05,6,5231,2,2,2,true,Non Life-threatening,1,MEDIC,3,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",122360328-54 +160313661,88,16012371,Medical Incident,01/31/2016,01/31/2016,01/31/2016 10:09:21 PM,01/31/2016 10:12:09 PM,01/31/2016 10:13:54 PM,01/31/2016 10:13:54 PM,01/31/2016 10:21:34 PM,01/31/2016 10:40:26 PM,01/31/2016 10:55:22 PM,Code 2 Transport,01/31/2016 11:17:07 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160313661-88 +160843907,RC2,16033555,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:03:56 PM,03/24/2016 09:04:18 PM,03/24/2016 09:12:00 PM,03/24/2016 09:15:14 PM,03/24/2016 09:20:02 PM,03/24/2016 09:27:59 PM,03/24/2016 09:37:30 PM,Code 3 Transport,03/24/2016 09:56:27 PM,2100 Block of 30TH AVE,San Francisco,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7471894211891, -122.487870230981)",160843907-RC2 +111620329,E28,11053623,Structure Fire,06/11/2011,06/11/2011,06/11/2011 08:57:18 PM,06/11/2011 08:57:40 PM,06/11/2011 08:57:57 PM,06/11/2011 08:58:43 PM,06/11/2011 09:01:04 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Other,06/11/2011 09:08:23 PM,800 Block of GREEN ST,SF,94133,B01,2,1441,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7989374349507, -122.41309613453)",111620329-E28 +160681693,82,16027118,Medical Incident,03/08/2016,03/08/2016,03/08/2016 12:27:24 PM,03/08/2016 12:29:26 PM,03/08/2016 12:29:46 PM,03/08/2016 12:31:45 PM,03/08/2016 12:31:45 PM,03/08/2016 12:49:25 PM,03/08/2016 01:09:48 PM,Code 2 Transport,03/08/2016 01:46:33 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",160681693-82 +122330261,KM05,12077347,Medical Incident,08/20/2012,08/20/2012,08/20/2012 04:09:21 PM,08/20/2012 04:11:11 PM,08/20/2012 04:11:54 PM,08/20/2012 04:12:35 PM,08/20/2012 04:17:03 PM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Patient Declined Transport,08/20/2012 05:06:16 PM,1700 Block of FULTON ST,SF,94117,B05,21,4463,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",122330261-KM05 +113460262,E06,11114854,Alarms,12/12/2011,12/12/2011,12/12/2011 04:05:34 PM,12/12/2011 04:06:25 PM,12/12/2011 04:06:41 PM,12/12/2011 04:08:11 PM,12/12/2011 04:10:30 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 04:17:25 PM,CALL BOX: 17TH ST/DOUGLASS ST,SF,94114,B05,6,5254,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7623432510579, -122.438457516114)",113460262-E06 +103610270,B06,10115880,Alarms,12/27/2010,12/27/2010,12/27/2010 05:47:52 PM,12/27/2010 05:50:40 PM,12/27/2010 05:51:28 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,04/25/2016 02:06:54 PM,100 Block of MADRONE AVE,SF,94127,B08,39,8612,3,3,3,false,,1,CHIEF,4,8,7,West of Twin Peaks,"(37.7407800476092, -122.468014173503)",103610270-B06 +131330030,54,13044733,Medical Incident,05/13/2013,05/12/2013,05/13/2013 02:38:05 AM,05/13/2013 02:40:30 AM,05/13/2013 02:40:45 AM,05/13/2013 02:40:51 AM,05/13/2013 02:50:00 AM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Patient Declined Transport,05/13/2013 03:16:30 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.796699717573, -122.408014703843)",131330030-54 +160730927,KM09,16028929,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:55:33 AM,03/13/2016 10:57:53 AM,03/13/2016 10:58:38 AM,03/13/2016 10:59:12 AM,03/13/2016 11:07:15 AM,03/13/2016 11:21:29 AM,03/13/2016 11:40:08 AM,Code 2 Transport,03/13/2016 12:31:18 PM,600 Block of POST ST,San Francisco,94109,B01,3,1451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7878082243767, -122.412644332435)",160730927-KM09 +112720188,E01,11089950,Medical Incident,09/29/2011,09/29/2011,09/29/2011 01:32:31 PM,09/29/2011 01:33:31 PM,09/29/2011 01:34:14 PM,09/29/2011 01:35:12 PM,09/29/2011 01:37:57 PM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,Other,09/29/2011 01:51:47 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",112720188-E01 +121030285,E05,12034198,Medical Incident,04/12/2012,04/12/2012,04/12/2012 05:25:47 PM,04/12/2012 05:27:25 PM,04/12/2012 05:28:22 PM,04/12/2012 05:29:24 PM,04/12/2012 05:32:46 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 05:42:33 PM,100 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7681979747465, -122.429080297019)",121030285-E05 +131670361,T15,13056859,Citizen Assist / Service Call,06/16/2013,06/16/2013,06/16/2013 10:36:10 PM,06/16/2013 10:37:51 PM,06/16/2013 10:38:04 PM,06/16/2013 10:39:39 PM,06/16/2013 10:43:45 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/16/2013 11:28:23 PM,1600 Block of ALEMANY BLVD,SF,94112,B09,15,8271,3,3,3,false,Alarm,1,TRUCK,1,9,11,Outer Mission,"(37.7258258537122, -122.436633817346)",131670361-T15 +120800240,89,12026608,Medical Incident,03/20/2012,03/20/2012,03/20/2012 04:06:18 PM,03/20/2012 04:08:46 PM,03/20/2012 04:09:31 PM,03/20/2012 04:09:52 PM,03/20/2012 04:12:55 PM,03/20/2012 04:29:12 PM,03/20/2012 04:31:18 PM,Code 2 Transport,03/20/2012 04:55:35 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",120800240-89 +103480164,E24,10111573,Medical Incident,12/14/2010,12/14/2010,12/14/2010 10:34:25 AM,12/14/2010 10:35:19 AM,12/14/2010 10:36:28 AM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Other,12/14/2010 10:54:07 AM,1800 Block of CHURCH ST,SF,94131,B06,11,5574,3,3,3,true,,1,ENGINE,2,6,8,Glen Park,"(37.7409088718455, -122.426663868061)",103480164-E24 +122700286,85,12089215,Medical Incident,09/26/2012,09/26/2012,09/26/2012 06:56:19 PM,09/26/2012 06:56:59 PM,09/26/2012 06:57:33 PM,09/26/2012 06:57:45 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/26/2012 07:02:46 PM,1500 Block of CLAY ST,SF,94109,B04,41,1634,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.7928054657502, -122.41817897481)",122700286-85 +122630358,E32,12087021,Medical Incident,09/19/2012,09/19/2012,09/19/2012 10:26:13 PM,09/19/2012 10:27:04 PM,09/19/2012 10:27:12 PM,09/19/2012 10:29:30 PM,09/19/2012 10:32:31 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/19/2012 10:43:44 PM,400 Block of SILVER AVE,SF,94112,B09,32,6143,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7286839027571, -122.426197799663)",122630358-E32 +160420361,67,16016733,Traffic Collision,02/11/2016,02/10/2016,02/11/2016 04:52:38 AM,02/11/2016 04:52:38 AM,02/11/2016 04:53:22 AM,02/11/2016 04:53:41 AM,02/11/2016 04:57:05 AM,02/11/2016 05:17:13 AM,02/11/2016 05:27:28 AM,Code 2 Transport,02/11/2016 05:51:57 AM,LEAVENWORTH ST/FILBERT ST,San Francisco,94133,B01,28,1532,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8003407918188, -122.417586973965)",160420361-67 +160612464,76,16024387,Medical Incident,03/01/2016,03/01/2016,03/01/2016 04:58:01 PM,03/01/2016 05:01:29 PM,03/01/2016 05:02:01 PM,03/01/2016 05:02:08 PM,03/01/2016 05:07:06 PM,03/01/2016 05:14:43 PM,03/01/2016 05:33:27 PM,Code 2 Transport,03/01/2016 06:01:05 PM,300 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.798349938239, -122.403307985807)",160612464-76 +102730282,E18,10086764,Traffic Collision,09/30/2010,09/30/2010,09/30/2010 05:49:40 PM,09/30/2010 05:49:40 PM,09/30/2010 05:50:37 PM,09/30/2010 05:51:27 PM,09/30/2010 05:53:49 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Other,09/30/2010 06:21:17 PM,1800 Block of 28TH AVE,SF,94122,B08,18,7515,2,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7528861670691, -122.485984045503)",102730282-E18 +160560238,AM22,16022225,Medical Incident,02/25/2016,02/24/2016,02/25/2016 02:46:44 AM,02/25/2016 02:47:59 AM,02/25/2016 02:48:21 AM,02/25/2016 02:49:25 AM,02/25/2016 02:52:48 AM,02/25/2016 03:00:09 AM,02/25/2016 03:11:16 AM,Code 2 Transport,02/25/2016 03:48:46 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160560238-AM22 +131080188,96,13036307,Medical Incident,04/18/2013,04/18/2013,04/18/2013 01:02:11 PM,04/18/2013 01:04:12 PM,04/18/2013 01:06:06 PM,04/25/2016 01:53:15 PM,04/18/2013 01:06:51 PM,04/18/2013 01:22:49 PM,04/18/2013 01:43:54 PM,Code 2 Transport,04/18/2013 02:17:37 PM,600 Block of PORTOLA DR,SF,94127,B08,39,8661,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7452993390303, -122.451904398893)",131080188-96 +110050166,KM01,11001621,Medical Incident,01/05/2011,01/05/2011,01/05/2011 11:12:26 AM,01/05/2011 11:15:16 AM,01/05/2011 11:16:59 AM,01/05/2011 11:19:50 AM,01/05/2011 11:31:02 AM,01/05/2011 11:54:44 AM,01/05/2011 12:02:26 PM,Code 2 Transport,01/05/2011 12:39:04 PM,4000 Block of MISSION ST,SF,94112,B06,32,5633,2,2,2,false,,1,PRIVATE,1,9,8,Outer Mission,"(37.7322426255479, -122.4279021087)",110050166-KM01 +130070327,79,13002498,Medical Incident,01/07/2013,01/07/2013,01/07/2013 06:59:52 PM,01/07/2013 07:01:23 PM,01/07/2013 07:01:49 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,04/25/2016 01:54:55 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",130070327-79 +133080039,KM07,13104599,Medical Incident,11/04/2013,11/03/2013,11/04/2013 04:09:37 AM,11/04/2013 04:12:00 AM,11/04/2013 04:12:10 AM,11/04/2013 04:13:51 AM,11/04/2013 04:23:31 AM,11/04/2013 04:31:49 AM,11/04/2013 04:50:26 AM,Code 2 Transport,11/04/2013 05:25:04 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",133080039-KM07 +112670028,57,11088089,Medical Incident,09/24/2011,09/23/2011,09/24/2011 01:35:17 AM,09/24/2011 01:36:41 AM,09/24/2011 01:37:13 AM,09/24/2011 01:37:22 AM,09/24/2011 01:51:25 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,No Merit,09/24/2011 01:51:31 AM,800 Block of POST ST,SF,94109,B04,3,1543,1,1,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",112670028-57 +130270108,E41,13009243,Medical Incident,01/27/2013,01/27/2013,01/27/2013 09:02:53 AM,01/27/2013 09:05:21 AM,01/27/2013 09:05:32 AM,01/27/2013 09:06:12 AM,01/27/2013 09:10:37 AM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 09:18:51 AM,1100 Block of VALLEJO ST,SF,94109,B01,41,1512,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7976997248557, -122.416217993782)",130270108-E41 +132090332,E31,13070821,Other,07/28/2013,07/28/2013,07/28/2013 08:55:33 PM,07/28/2013 08:56:43 PM,07/28/2013 08:57:02 PM,07/28/2013 08:57:55 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,04/25/2016 01:51:35 PM,0 Block of COOK ST,SF,94118,B05,10,445,3,3,3,true,Alarm,1,ENGINE,2,5,2,Presidio Heights,"(37.7827442362846, -122.452392135111)",132090332-E31 +123230342,85,12107557,Medical Incident,11/18/2012,11/18/2012,11/18/2012 11:31:58 PM,11/18/2012 11:35:11 PM,11/18/2012 11:35:29 PM,11/18/2012 11:35:46 PM,11/18/2012 11:52:21 PM,11/19/2012 12:06:01 AM,11/19/2012 12:19:07 AM,Code 2 Transport,11/19/2012 12:52:21 AM,1100 Block of FITZGERALD AVE,SF,94124,B10,17,6615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7204964019129, -122.390342560546)",123230342-85 +160193517,AM24,16007800,Traffic Collision,01/19/2016,01/19/2016,01/19/2016 09:23:56 PM,01/19/2016 09:23:56 PM,01/19/2016 09:25:55 PM,01/19/2016 09:26:27 PM,01/19/2016 09:29:42 PM,01/19/2016 09:43:58 PM,01/19/2016 10:13:37 PM,Code 2 Transport,01/19/2016 10:37:12 PM,800 Block of OCEAN AVE,San Francisco,94112,B09,15,8472,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7228437407708, -122.450588711327)",160193517-AM24 +120440327,E17,12014830,Medical Incident,02/13/2012,02/13/2012,02/13/2012 11:43:42 PM,02/13/2012 11:44:20 PM,02/13/2012 11:44:44 PM,04/25/2016 02:00:09 PM,02/13/2012 11:45:13 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 11:53:22 PM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",120440327-E17 +122290038,87,12075760,Medical Incident,08/16/2012,08/15/2012,08/16/2012 03:38:29 AM,08/16/2012 03:40:36 AM,08/16/2012 03:42:41 AM,08/16/2012 03:43:15 AM,08/16/2012 04:00:42 AM,08/16/2012 04:04:19 AM,08/16/2012 04:24:08 AM,Code 2 Transport,08/16/2012 04:54:03 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",122290038-87 +131190399,E01,13040224,Structure Fire,04/29/2013,04/29/2013,04/29/2013 11:03:56 PM,04/29/2013 11:04:33 PM,04/29/2013 11:04:56 PM,04/29/2013 11:06:05 PM,04/29/2013 11:08:03 PM,04/25/2016 01:53:03 PM,04/25/2016 01:53:03 PM,Other,04/29/2013 11:11:09 PM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,4,2,6,Tenderloin,"(37.7832504150919, -122.414216002993)",131190399-E01 +160430839,85,16017205,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:51:38 AM,02/12/2016 08:53:05 AM,02/12/2016 08:53:30 AM,02/12/2016 08:53:42 AM,02/12/2016 08:58:47 AM,02/12/2016 09:15:57 AM,02/12/2016 09:36:43 AM,Code 2 Transport,02/12/2016 09:55:58 AM,300 Block of BEACON ST,San Francisco,94131,B06,26,8157,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Glen Park,"(37.7410466852293, -122.433829666381)",160430839-85 +102630068,D3,10083123,Industrial Accidents,09/20/2010,09/19/2010,09/20/2010 07:59:01 AM,09/20/2010 07:59:38 AM,09/20/2010 08:00:46 AM,04/25/2016 02:08:30 PM,09/20/2010 08:18:00 AM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 08:21:55 AM,16TH ST/OWENS ST,SF,94158,B03,29,2414,3,3,3,false,,1,CHIEF,5,3,6,Mission Bay,"(37.766691461354, -122.392661869743)",102630068-D3 +103460147,B02,10110917,Alarms,12/12/2010,12/12/2010,12/12/2010 10:54:23 AM,12/12/2010 10:55:25 AM,12/12/2010 10:55:34 AM,12/12/2010 10:56:22 AM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Fire,12/12/2010 11:10:10 AM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,3,3,3,false,,1,CHIEF,3,2,6,South of Market,"(37.7755676420155, -122.412334779681)",103460147-B02 +122150071,E08,12071268,Traffic Collision,08/02/2012,08/02/2012,08/02/2012 08:16:32 AM,08/02/2012 08:16:50 AM,08/02/2012 08:17:37 AM,08/02/2012 08:19:28 AM,08/02/2012 08:21:00 AM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/02/2012 08:30:15 AM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7732232142847, -122.402889298062)",122150071-E08 +133220287,94,13109435,Medical Incident,11/18/2013,11/18/2013,11/18/2013 07:54:18 PM,11/18/2013 07:54:57 PM,11/18/2013 07:55:19 PM,11/18/2013 07:55:44 PM,11/18/2013 08:00:36 PM,11/18/2013 08:37:03 PM,11/18/2013 08:47:05 PM,Code 2 Transport,11/18/2013 09:23:38 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",133220287-94 +121050071,E01,12034675,Medical Incident,04/14/2012,04/13/2012,04/14/2012 04:32:11 AM,04/14/2012 04:33:26 AM,04/14/2012 04:33:45 AM,04/14/2012 04:36:01 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 04:37:35 AM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",121050071-E01 +112320142,FB1,11076559,Water Rescue,08/20/2011,08/20/2011,08/20/2011 11:29:06 AM,08/20/2011 11:29:51 AM,08/20/2011 11:30:37 AM,08/20/2011 11:32:26 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 12:36:50 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,,1,SUPPORT,16,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",112320142-FB1 +130350020,54,13011852,Medical Incident,02/04/2013,02/03/2013,02/04/2013 01:38:01 AM,02/04/2013 01:38:22 AM,02/04/2013 01:38:39 AM,02/04/2013 01:38:47 AM,02/04/2013 01:40:04 AM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,Other,02/04/2013 01:40:36 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",130350020-54 +111970267,T18,11065082,Structure Fire,07/16/2011,07/16/2011,07/16/2011 05:56:07 PM,07/16/2011 05:57:08 PM,07/16/2011 05:57:25 PM,07/16/2011 05:57:52 PM,07/16/2011 06:04:47 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 06:21:46 PM,0 Block of VICENTE ST,SF,94127,B08,39,8612,3,3,3,false,,1,TRUCK,6,8,7,West of Twin Peaks,"(37.739532244052, -122.466523956195)",111970267-T18 +160782275,63,16031049,Medical Incident,03/18/2016,03/18/2016,03/18/2016 02:51:10 PM,03/18/2016 02:52:03 PM,03/18/2016 02:53:11 PM,03/18/2016 02:53:21 PM,03/18/2016 02:58:38 PM,03/18/2016 03:06:58 PM,03/18/2016 03:22:48 PM,Code 2 Transport,03/18/2016 03:39:17 PM,200 Block of BAY ST,San Francisco,94133,B01,28,1341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.805980597443, -122.411141131856)",160782275-63 +160040663,60,16001492,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:41:31 AM,01/04/2016 07:42:49 AM,01/04/2016 07:43:16 AM,01/04/2016 07:48:25 AM,01/04/2016 08:15:03 AM,01/04/2016 08:35:26 AM,01/04/2016 08:56:33 AM,Code 2 Transport,01/04/2016 09:39:04 AM,100 Block of FREMONT ST,San Francisco,94105,B03,35,2126,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7894863287687, -122.395368983007)",160040663-60 +131580011,T03,13053462,Medical Incident,06/07/2013,06/06/2013,06/07/2013 12:34:50 AM,06/07/2013 12:37:07 AM,06/07/2013 12:37:15 AM,06/07/2013 12:40:20 AM,06/07/2013 12:43:41 AM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/07/2013 12:51:53 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131580011-T03 +160211663,81,16008368,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:23:06 PM,01/21/2016 12:26:13 PM,01/21/2016 12:28:23 PM,01/21/2016 12:28:38 PM,01/21/2016 12:39:50 PM,01/21/2016 12:58:31 PM,01/21/2016 01:17:47 PM,Code 2 Transport,01/21/2016 01:50:13 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160211663-81 +110930189,E07,11030877,Medical Incident,04/03/2011,04/03/2011,04/03/2011 01:04:42 PM,04/03/2011 01:06:34 PM,04/03/2011 01:06:51 PM,04/25/2016 02:05:18 PM,04/03/2011 01:09:58 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 01:15:11 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",110930189-E07 +103500303,E05,10112347,Medical Incident,12/16/2010,12/16/2010,12/16/2010 06:01:59 PM,12/16/2010 06:04:28 PM,12/16/2010 06:04:40 PM,12/16/2010 06:05:39 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,12/16/2010 06:05:56 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,2,2,2,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",103500303-E05 +102730034,81,10086563,Medical Incident,09/30/2010,09/29/2010,09/30/2010 02:30:46 AM,09/30/2010 02:33:56 AM,09/30/2010 02:35:35 AM,09/30/2010 02:36:03 AM,09/30/2010 02:43:34 AM,09/30/2010 03:08:29 AM,09/30/2010 03:32:00 AM,Code 2 Transport,09/30/2010 03:51:58 AM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,true,,1,MEDIC,3,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",102730034-81 +140960314,66,14032425,Medical Incident,04/06/2014,04/06/2014,04/06/2014 07:06:56 PM,04/06/2014 07:07:07 PM,04/06/2014 07:07:38 PM,04/06/2014 07:07:54 PM,04/06/2014 07:12:19 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,No Merit,04/06/2014 07:13:21 PM,POWELL ST/OFARRELL ST,SAN FRANCISCO,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",140960314-66 +113190203,E41,11105954,Alarms,11/15/2011,11/15/2011,11/15/2011 12:49:09 PM,11/15/2011 12:50:18 PM,11/15/2011 12:51:48 PM,11/15/2011 12:52:47 PM,11/15/2011 12:54:16 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 12:56:51 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7912571694899, -122.414917737337)",113190203-E41 +110910037,E09,11030023,Vehicle Fire,04/01/2011,03/31/2011,04/01/2011 02:08:10 AM,04/01/2011 02:09:10 AM,04/01/2011 02:10:33 AM,04/01/2011 02:12:39 AM,04/01/2011 02:21:35 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 04:56:38 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",110910037-E09 +120100393,67,12003663,Medical Incident,01/10/2012,01/10/2012,01/10/2012 11:23:30 PM,01/10/2012 11:27:10 PM,01/11/2012 12:00:39 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,01/11/2012 12:16:23 AM,01/11/2012 12:22:21 AM,Other,01/11/2012 12:50:57 AM,800 Block of CLAY ST,SF,94108,B01,13,1313,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7941768903766, -122.407424090939)",120100393-67 +130330354,T18,13011440,Administrative,02/02/2013,02/02/2013,02/02/2013 10:07:42 PM,02/02/2013 10:07:49 PM,02/02/2013 10:10:06 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Fire,02/02/2013 10:10:39 PM,1900 Block of 32ND AVE,SF,94116,B08,18,7533,3,3,3,false,,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7508238719258, -122.490273641262)",130330354-T18 +121920310,E10,12064031,Alarms,07/10/2012,07/10/2012,07/10/2012 07:38:18 PM,07/10/2012 07:38:43 PM,07/10/2012 07:39:09 PM,07/10/2012 07:40:28 PM,07/10/2012 07:45:36 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 07:50:57 PM,1700 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,true,Alarm,1,ENGINE,3,5,2,Pacific Heights,"(37.7857001632116, -122.440081147256)",121920310-E10 +122190285,E25,12072736,Structure Fire,08/06/2012,08/06/2012,08/06/2012 05:43:15 PM,08/06/2012 05:43:18 PM,08/06/2012 05:43:27 PM,08/06/2012 05:45:03 PM,08/06/2012 05:49:36 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 06:35:58 PM,1300 Block of CARROLL AVE,SF,94124,B10,17,6615,3,3,3,false,Fire,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.7222787928885, -122.388729748672)",122190285-E25 +111220071,67,11040232,Medical Incident,05/02/2011,05/01/2011,05/02/2011 07:38:28 AM,05/02/2011 07:40:45 AM,05/02/2011 07:41:28 AM,05/02/2011 07:41:55 AM,05/02/2011 07:47:53 AM,05/02/2011 08:01:45 AM,05/02/2011 08:21:14 AM,Code 3 Transport,05/02/2011 08:48:33 AM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120385154865, -122.40773839531)",111220071-67 +130250388,67,13008800,Medical Incident,01/25/2013,01/25/2013,01/25/2013 10:02:25 PM,01/25/2013 10:03:14 PM,01/25/2013 10:04:30 PM,01/25/2013 10:04:36 PM,01/25/2013 10:06:42 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/25/2013 10:12:16 PM,1200 Block of SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7877066353114, -122.420948027457)",130250388-67 +132110012,54,13071227,Medical Incident,07/30/2013,07/29/2013,07/30/2013 12:38:02 AM,07/30/2013 12:38:37 AM,07/30/2013 12:39:21 AM,07/30/2013 12:39:40 AM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,Other,07/30/2013 12:47:59 AM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",132110012-54 +160750028,AM20,16029534,Medical Incident,03/15/2016,03/14/2016,03/15/2016 12:11:45 AM,03/15/2016 12:14:48 AM,03/15/2016 12:15:05 AM,03/15/2016 12:15:47 AM,03/15/2016 12:21:19 AM,03/15/2016 12:31:39 AM,03/15/2016 12:43:15 AM,Code 2 Transport,03/15/2016 01:10:43 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160750028-AM20 +140260252,RC1,14008971,Traffic Collision,01/26/2014,01/26/2014,01/26/2014 05:28:04 PM,01/26/2014 05:28:48 PM,01/26/2014 05:36:27 PM,01/26/2014 05:36:27 PM,01/26/2014 05:36:27 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/26/2014 06:21:04 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",140260252-RC1 +160090322,AM24,16003514,Medical Incident,01/09/2016,01/08/2016,01/09/2016 02:32:00 AM,01/09/2016 02:32:44 AM,01/09/2016 02:33:09 AM,01/09/2016 02:33:43 AM,01/09/2016 02:37:56 AM,01/09/2016 02:47:07 AM,01/09/2016 03:32:35 AM,Code 2 Transport,01/09/2016 03:41:06 AM,2400 Block of HARRISON ST,San Francisco,94110,B06,7,545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7582246777645, -122.412493470285)",160090322-AM24 +120630172,E41,12020737,Medical Incident,03/03/2012,03/03/2012,03/03/2012 11:19:16 AM,03/03/2012 11:19:43 AM,03/03/2012 11:20:26 AM,03/03/2012 11:21:14 AM,03/03/2012 11:24:17 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 11:39:34 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",120630172-E41 +130570300,AM10,13019270,Medical Incident,02/26/2013,02/26/2013,02/26/2013 09:18:47 PM,02/26/2013 09:20:24 PM,02/26/2013 09:20:57 PM,02/26/2013 09:21:46 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 09:28:11 PM,ARLINGTON ST/ROANOKE ST,SF,94131,B06,26,8127,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Glen Park,"(37.7350274204292, -122.429698639928)",130570300-AM10 +160561548,65,16022354,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:34:02 AM,02/25/2016 11:35:36 AM,02/25/2016 11:36:21 AM,02/25/2016 11:36:58 AM,02/25/2016 11:41:12 AM,02/25/2016 12:16:05 PM,02/25/2016 12:30:28 PM,Code 2 Transport,02/25/2016 01:18:19 PM,600 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",160561548-65 +110710039,RC1,11023240,Medical Incident,03/12/2011,03/11/2011,03/12/2011 02:04:14 AM,03/12/2011 02:05:16 AM,03/12/2011 02:05:29 AM,03/12/2011 02:07:42 AM,04/25/2016 02:05:40 PM,04/25/2016 02:05:40 PM,04/25/2016 02:05:40 PM,Other,03/12/2011 02:10:47 AM,300 Block of ELSIE ST,SF,94110,B06,32,5652,E,E,3,true,,1,RESCUE CAPTAIN,3,6,9,Bernal Heights,"(37.7385960565627, -122.420200231971)",110710039-RC1 +122020208,85,12067130,Medical Incident,07/20/2012,07/20/2012,07/20/2012 02:08:05 PM,07/20/2012 02:08:47 PM,07/20/2012 02:09:01 PM,07/20/2012 02:09:14 PM,07/20/2012 02:20:51 PM,07/20/2012 02:31:16 PM,07/20/2012 02:48:41 PM,Code 2 Transport,07/20/2012 03:10:37 PM,1500 Block of QUINT ST,SF,94124,B10,42,6444,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7368123534545, -122.396742313882)",122020208-85 +102260318,82,10071267,Medical Incident,08/14/2010,08/14/2010,08/14/2010 09:15:16 PM,08/14/2010 09:15:30 PM,08/14/2010 09:16:20 PM,08/14/2010 09:16:41 PM,08/14/2010 09:19:48 PM,08/14/2010 09:34:54 PM,08/14/2010 09:49:46 PM,Code 2 Transport,08/14/2010 10:17:12 PM,CALIFORNIA ST/6TH AV,SF,94118,B07,31,7125,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7849939711361, -122.464572158227)",102260318-82 +140040189,T10,14001450,Medical Incident,01/04/2014,01/04/2014,01/04/2014 01:03:46 PM,01/04/2014 01:04:09 PM,01/04/2014 01:10:17 PM,01/04/2014 01:10:17 PM,01/04/2014 01:10:17 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,Other,01/04/2014 01:22:58 PM,CLEMENT ST/18TH AV,SF,94121,B07,31,7162,,3,3,false,Potentially Life-Threatening,1,TRUCK,2,7,1,Outer Richmond,"(37.7823605680596, -122.477374310784)",140040189-T10 +140270362,55,14009360,Medical Incident,01/27/2014,01/27/2014,01/27/2014 10:30:56 PM,01/27/2014 10:31:54 PM,01/27/2014 10:33:41 PM,01/27/2014 10:33:41 PM,01/27/2014 10:37:20 PM,01/27/2014 10:48:28 PM,01/27/2014 10:52:38 PM,Code 2 Transport,01/27/2014 11:19:07 PM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",140270362-55 +131730367,E36,13058874,Medical Incident,06/22/2013,06/22/2013,06/22/2013 10:51:22 PM,06/22/2013 10:53:13 PM,06/22/2013 10:53:34 PM,06/22/2013 10:54:57 PM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Other,06/22/2013 10:57:09 PM,1700 Block of MISSION ST,SF,94103,B02,36,5124,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7695749975007, -122.420224560888)",131730367-E36 +121500094,E08,12049674,Traffic Collision,05/29/2012,05/29/2012,05/29/2012 08:52:48 AM,05/29/2012 08:53:44 AM,05/29/2012 08:54:46 AM,05/29/2012 08:56:50 AM,05/29/2012 09:01:26 AM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Patient Declined Transport,05/29/2012 09:11:58 AM,3RD ST/TERRY A FRANCOIS BL,SF,94158,B03,8,2171,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763001444296, -122.390025041862)",121500094-E08 +160350870,54,16013727,Medical Incident,02/04/2016,02/04/2016,02/04/2016 08:47:07 AM,02/04/2016 08:48:52 AM,02/04/2016 08:49:03 AM,02/04/2016 08:49:14 AM,02/04/2016 08:54:58 AM,02/04/2016 09:09:18 AM,02/04/2016 09:17:44 AM,Code 2 Transport,02/04/2016 09:39:25 AM,HYDE ST/EDDY ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",160350870-54 +112630114,E01,11086772,Medical Incident,09/20/2011,09/20/2011,09/20/2011 09:35:43 AM,09/20/2011 09:36:53 AM,09/20/2011 09:37:11 AM,09/20/2011 09:37:29 AM,09/20/2011 09:40:50 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/20/2011 09:47:47 AM,600 Block of NATOMA ST,SF,94103,B03,1,2314,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",112630114-E01 +160323358,64,16012746,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:37:25 PM,02/01/2016 08:39:24 PM,02/01/2016 08:39:37 PM,02/01/2016 08:39:46 PM,02/01/2016 08:43:51 PM,02/01/2016 09:04:50 PM,02/01/2016 09:11:04 PM,Code 2 Transport,02/01/2016 09:47:09 PM,600 Block of SUTTER ST,San Francisco,94108,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",160323358-64 +110920253,96,11030594,Medical Incident,04/02/2011,04/02/2011,04/02/2011 05:08:24 PM,04/02/2011 05:08:51 PM,04/02/2011 05:09:16 PM,04/02/2011 05:09:32 PM,04/02/2011 05:11:48 PM,04/02/2011 05:25:30 PM,04/02/2011 05:44:48 PM,Code 2 Transport,04/02/2011 06:12:13 PM,600 Block of DETROIT ST,SF,94127,B09,26,8216,3,3,3,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7327169390031, -122.44438653071)",110920253-96 +122180280,E01,12072399,Medical Incident,08/05/2012,08/05/2012,08/05/2012 05:18:10 PM,08/05/2012 05:20:21 PM,08/05/2012 05:20:30 PM,08/05/2012 05:20:41 PM,08/05/2012 05:23:29 PM,08/05/2012 05:53:44 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 06:04:05 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",122180280-E01 +130580415,RA48,13019648,Medical Incident,02/27/2013,02/27/2013,02/27/2013 11:15:26 PM,02/27/2013 11:15:51 PM,02/27/2013 11:16:20 PM,04/25/2016 01:54:05 PM,02/27/2013 11:21:33 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,02/27/2013 11:44:50 PM,1400 Block of STURGEON ST,TI,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8263703736705, -122.375421941102)",130580415-RA48 +123590054,B02,12120068,Alarms,12/24/2012,12/23/2012,12/24/2012 05:10:25 AM,12/24/2012 05:12:11 AM,12/24/2012 05:12:25 AM,12/24/2012 05:14:18 AM,12/24/2012 05:16:43 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 05:25:50 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",123590054-B02 +160733014,65,16029130,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:12:04 PM,03/13/2016 10:12:34 PM,03/13/2016 10:14:46 PM,03/13/2016 10:14:53 PM,03/13/2016 10:24:59 PM,03/13/2016 10:37:01 PM,03/13/2016 10:55:00 PM,Code 2 Transport,03/13/2016 11:27:12 PM,1300 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7221736000048, -122.391637312216)",160733014-65 +120950084,E44,12031389,Medical Incident,04/04/2012,04/04/2012,04/04/2012 09:13:32 AM,04/04/2012 09:14:05 AM,04/04/2012 09:14:17 AM,04/04/2012 09:21:50 AM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 09:23:46 AM,0 Block of DUKES CT,SF,94124,B10,17,6517,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.736996286224, -122.3867841243)",120950084-E44 +140260170,T13,14008900,Alarms,01/26/2014,01/26/2014,01/26/2014 01:37:22 PM,01/26/2014 01:38:34 PM,01/26/2014 01:38:41 PM,01/26/2014 01:40:54 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/26/2014 01:43:35 PM,300 Block of MAIN ST,SF,94105,B03,35,2117,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",140260170-T13 +133340270,82,13113320,Medical Incident,11/30/2013,11/30/2013,11/30/2013 05:26:33 PM,11/30/2013 05:27:47 PM,11/30/2013 05:28:49 PM,11/30/2013 05:28:58 PM,11/30/2013 05:41:39 PM,11/30/2013 05:49:48 PM,11/30/2013 06:10:51 PM,Code 2 Transport,11/30/2013 06:29:26 PM,LINCOLN WY/GREAT HY,SF,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",133340270-82 +160170404,AM20,16006683,Medical Incident,01/17/2016,01/16/2016,01/17/2016 02:58:43 AM,01/17/2016 03:00:11 AM,01/17/2016 03:01:34 AM,01/17/2016 03:02:25 AM,01/17/2016 03:03:02 AM,01/17/2016 03:25:16 AM,01/17/2016 03:29:40 AM,Code 2 Transport,01/17/2016 03:51:17 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160170404-AM20 +112400140,E28,11079166,Medical Incident,08/28/2011,08/28/2011,08/28/2011 10:15:44 AM,08/28/2011 10:16:32 AM,08/28/2011 10:17:38 AM,04/25/2016 02:02:57 PM,08/28/2011 10:19:55 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 10:30:15 AM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",112400140-E28 +122640129,E43,12087141,Structure Fire,09/20/2012,09/20/2012,09/20/2012 10:42:09 AM,09/20/2012 10:42:10 AM,09/20/2012 10:43:05 AM,09/20/2012 10:45:29 AM,09/20/2012 10:47:20 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 10:55:32 AM,1600 Block of SUNNYDALE AVE,SF,94134,B09,43,623,3,3,3,false,Alarm,1,ENGINE,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",122640129-E43 +130400223,E07,13013698,Medical Incident,02/09/2013,02/09/2013,02/09/2013 02:39:31 PM,02/09/2013 02:40:36 PM,02/09/2013 02:40:48 PM,02/09/2013 02:42:04 PM,02/09/2013 02:44:45 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,No Merit,02/09/2013 02:50:48 PM,0 Block of RONDEL PL,SF,94103,B02,7,5236,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643357809244, -122.421249543257)",130400223-E07 +160824107,55,16032786,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:23:06 PM,03/22/2016 11:23:06 PM,03/22/2016 11:31:27 PM,03/22/2016 11:31:44 PM,03/22/2016 11:38:03 PM,03/22/2016 11:46:44 PM,03/22/2016 11:59:51 PM,Code 2 Transport,03/23/2016 12:29:56 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160824107-55 +131680135,E03,13057000,Medical Incident,06/17/2013,06/17/2013,06/17/2013 11:16:38 AM,06/17/2013 11:18:16 AM,06/17/2013 11:19:01 AM,06/17/2013 11:19:28 AM,06/17/2013 11:22:45 AM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/17/2013 11:28:21 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",131680135-E03 +111360077,E36,11045197,Medical Incident,05/16/2011,05/16/2011,05/16/2011 08:09:22 AM,05/16/2011 08:10:44 AM,05/16/2011 08:11:12 AM,05/16/2011 08:12:20 AM,05/16/2011 08:14:40 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 08:30:10 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",111360077-E36 +160753639,KM03,16029888,Medical Incident,03/15/2016,03/15/2016,03/15/2016 08:56:04 PM,03/15/2016 08:58:58 PM,03/15/2016 09:00:10 PM,03/15/2016 09:02:15 PM,03/15/2016 09:11:22 PM,03/15/2016 09:21:06 PM,03/15/2016 09:51:52 PM,Code 2 Transport,03/15/2016 10:08:38 PM,600 Block of GREEN ST,San Francisco,94133,B01,2,1352,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7994506999766, -122.409839232069)",160753639-KM03 +160433777,AM16,16017494,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:23:14 PM,02/12/2016 10:23:14 PM,02/12/2016 10:23:44 PM,02/12/2016 10:28:51 PM,02/12/2016 10:40:38 PM,02/12/2016 10:40:40 PM,02/12/2016 11:28:58 PM,Code 2 Transport,02/13/2016 12:06:03 AM,700 Block of MADRID ST,San Francisco,94112,B09,43,6135,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7177587273743, -122.435803168491)",160433777-AM16 +122800034,E03,12092459,Medical Incident,10/06/2012,10/05/2012,10/06/2012 02:37:40 AM,10/06/2012 02:40:15 AM,10/06/2012 02:40:36 AM,10/06/2012 02:43:37 AM,10/06/2012 02:46:16 AM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,Other,10/06/2012 02:53:51 AM,300 Block of LEAVENWORTH ST,SF,94109,B04,3,1545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",122800034-E03 +123420291,E31,12114236,Alarms,12/07/2012,12/07/2012,12/07/2012 02:34:30 PM,12/07/2012 02:35:37 PM,12/07/2012 02:35:54 PM,12/07/2012 02:37:50 PM,12/07/2012 02:38:52 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 02:51:01 PM,400 Block of 18TH AVE,SF,94121,B07,31,7161,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",123420291-E31 +130390189,T08,13013307,Medical Incident,02/08/2013,02/08/2013,02/08/2013 12:07:10 PM,02/08/2013 12:07:10 PM,02/08/2013 12:07:31 PM,02/08/2013 12:08:32 PM,02/08/2013 12:11:47 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,No Merit,02/08/2013 12:16:45 PM,400 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,954,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,3,6,Mission Bay,"(37.7717396202959, -122.386663865791)",130390189-T08 +130760071,E14,13025293,Medical Incident,03/17/2013,03/16/2013,03/17/2013 04:37:08 AM,03/17/2013 04:38:27 AM,03/17/2013 04:38:49 AM,03/17/2013 04:40:42 AM,03/17/2013 04:42:11 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 04:47:44 AM,300 Block of 21ST AVE,SF,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7812431352608, -122.480589412063)",130760071-E14 +103500043,73,10112135,Medical Incident,12/16/2010,12/15/2010,12/16/2010 04:47:14 AM,12/16/2010 04:49:40 AM,12/16/2010 04:49:55 AM,12/16/2010 04:50:29 AM,12/16/2010 05:00:31 AM,12/16/2010 05:22:09 AM,12/16/2010 05:25:12 AM,Code 2 Transport,12/16/2010 05:41:46 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,2,2,2,true,,1,MEDIC,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",103500043-73 +111990149,E03,11065607,Medical Incident,07/18/2011,07/18/2011,07/18/2011 11:42:18 AM,07/18/2011 11:43:19 AM,07/18/2011 11:43:28 AM,07/18/2011 11:43:42 AM,07/18/2011 11:47:40 AM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/18/2011 11:47:47 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",111990149-E03 +123100239,83,12103167,Medical Incident,11/05/2012,11/05/2012,11/05/2012 03:17:57 PM,11/05/2012 03:19:23 PM,11/05/2012 03:19:31 PM,11/05/2012 03:19:53 PM,11/05/2012 03:25:36 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Patient Declined Transport,11/05/2012 03:40:18 PM,100 Block of BERTHA LN,SF,94124,B10,17,6631,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",123100239-83 +160521930,AM02,16020841,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:22:52 PM,02/21/2016 02:24:11 PM,02/21/2016 02:24:22 PM,02/21/2016 02:24:46 PM,02/21/2016 02:28:20 PM,02/21/2016 02:51:07 PM,02/21/2016 03:47:06 PM,Code 2 Transport,02/21/2016 03:47:09 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160521930-AM02 +110480019,54,11015738,Medical Incident,02/17/2011,02/16/2011,02/17/2011 02:09:57 AM,02/17/2011 02:11:34 AM,02/17/2011 02:11:49 AM,02/17/2011 02:11:59 AM,02/17/2011 02:29:43 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,No Merit,02/17/2011 02:37:58 AM,400 Block of EDINBURGH ST,SF,94112,B09,43,6141,1,1,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7220390695528, -122.431478554426)",110480019-54 +102710327,T15,10086112,Traffic Collision,09/28/2010,09/28/2010,09/28/2010 05:43:36 PM,09/28/2010 05:45:47 PM,09/28/2010 05:48:50 PM,09/28/2010 05:49:24 PM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 05:53:00 PM,200 Block of GENEVA AVE,SF,94112,B09,15,8313,3,3,3,false,,1,TRUCK,4,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",102710327-T15 +160250766,AM06,16009826,Medical Incident,01/25/2016,01/25/2016,01/25/2016 08:02:16 AM,01/25/2016 08:08:13 AM,01/25/2016 08:08:41 AM,01/25/2016 08:10:06 AM,01/25/2016 08:30:03 AM,01/25/2016 08:32:45 AM,01/25/2016 08:50:27 AM,Code 2 Transport,01/25/2016 09:21:20 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7812234542945, -122.408928070797)",160250766-AM06 +160662604,53,16026481,Medical Incident,03/06/2016,03/06/2016,03/06/2016 06:10:23 PM,03/06/2016 06:10:52 PM,03/06/2016 06:20:53 PM,03/06/2016 06:20:53 PM,03/06/2016 06:27:11 PM,03/06/2016 06:48:20 PM,03/06/2016 06:52:00 PM,Code 2 Transport,03/06/2016 07:30:08 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,E,3,true,Potentially Life-Threatening,1,MEDIC,4,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160662604-53 +102590256,B09,10081873,Alarms,09/16/2010,09/16/2010,09/16/2010 02:58:53 PM,09/16/2010 03:00:24 PM,09/16/2010 03:03:58 PM,09/16/2010 03:05:44 PM,09/16/2010 03:11:28 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Fire,09/16/2010 03:14:54 PM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,false,,1,CHIEF,2,9,10,Visitacion Valley,"(37.7101556026027, -122.41260428896)",102590256-B09 +112550185,E02,11084124,Medical Incident,09/12/2011,09/12/2011,09/12/2011 01:20:56 PM,09/12/2011 01:22:29 PM,09/12/2011 01:23:08 PM,09/12/2011 01:24:17 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Unable to Locate,09/12/2011 01:27:15 PM,MASON ST/PACIFIC AV,SF,94133,B01,2,1416,2,2,2,true,,1,ENGINE,2,1,3,Chinatown,"(37.7962907638042, -122.411718940358)",112550185-E02 +111370042,KM14,11045474,Medical Incident,05/17/2011,05/16/2011,05/17/2011 04:46:53 AM,05/17/2011 04:49:55 AM,05/17/2011 04:50:18 AM,05/17/2011 04:52:32 AM,05/17/2011 04:57:38 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 05:05:08 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,PRIVATE,4,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",111370042-KM14 +103130213,KM15,10100367,Medical Incident,11/09/2010,11/09/2010,11/09/2010 01:08:27 PM,11/09/2010 01:10:41 PM,11/09/2010 01:11:02 PM,11/09/2010 01:12:02 PM,11/09/2010 01:27:02 PM,11/09/2010 01:48:18 PM,11/09/2010 01:58:27 PM,Code 2 Transport,11/09/2010 02:12:41 PM,600 Block of WALLER ST,SF,94117,B05,6,3635,1,1,2,false,,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7707548733663, -122.433986798181)",103130213-KM15 +111990353,58,11065791,Medical Incident,07/18/2011,07/18/2011,07/18/2011 10:23:29 PM,07/18/2011 10:24:25 PM,07/18/2011 10:25:06 PM,07/18/2011 10:25:15 PM,07/18/2011 10:33:12 PM,07/18/2011 10:44:20 PM,07/18/2011 11:02:36 PM,Code 2 Transport,07/18/2011 11:24:53 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,1,1,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",111990353-58 +132920091,E43,13099294,Medical Incident,10/19/2013,10/19/2013,10/19/2013 08:22:52 AM,10/19/2013 08:23:23 AM,10/19/2013 08:23:38 AM,10/19/2013 08:24:51 AM,10/19/2013 08:27:47 AM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 08:39:10 AM,1800 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",132920091-E43 +103650362,E15,10117256,Medical Incident,12/31/2010,12/31/2010,12/31/2010 11:04:05 PM,12/31/2010 11:04:46 PM,12/31/2010 11:05:03 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 11:06:36 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,2,2,true,,1,ENGINE,2,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",103650362-E15 +113490144,KM15,11115770,Medical Incident,12/15/2011,12/15/2011,12/15/2011 12:24:17 PM,12/15/2011 12:25:09 PM,12/15/2011 12:25:38 PM,12/15/2011 12:26:13 PM,12/15/2011 12:29:34 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,04/25/2016 02:01:08 PM,3200 Block of VAN NESS AVE,SF,94109,B04,28,3143,3,3,3,false,,1,PRIVATE,2,1,2,Russian Hill,"(37.805550799113, -122.425219186379)",113490144-KM15 +160380949,63,16015123,Medical Incident,02/07/2016,02/06/2016,02/07/2016 07:57:25 AM,02/07/2016 07:58:55 AM,02/07/2016 08:00:08 AM,02/07/2016 08:00:20 AM,02/07/2016 08:09:57 AM,02/07/2016 08:15:11 AM,02/07/2016 08:31:13 AM,Code 2 Transport,02/07/2016 09:00:27 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",160380949-63 +120790056,E01,12026135,Medical Incident,03/19/2012,03/18/2012,03/19/2012 07:46:33 AM,03/19/2012 07:48:04 AM,03/19/2012 07:48:27 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 07:49:30 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Non Life-threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",120790056-E01 +122350053,B08,12077771,Smoke Investigation (Outside),08/22/2012,08/21/2012,08/22/2012 06:43:41 AM,08/22/2012 06:47:09 AM,08/22/2012 06:47:16 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Other,08/22/2012 06:49:43 AM,LINCOLN WY/19TH AV,SF,94122,B08,22,7425,3,3,3,false,Alarm,1,CHIEF,3,7,4,Sunset/Parkside,"(37.7654479866215, -122.477308393483)",122350053-B08 +140010148,KM15,14000121,Medical Incident,01/01/2014,12/31/2013,01/01/2014 02:03:16 AM,01/01/2014 02:04:14 AM,01/01/2014 02:06:59 AM,01/01/2014 02:06:59 AM,01/01/2014 02:06:59 AM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 02:36:35 AM,500 Block of MARKET ST,SF,94104,B03,1,2109,,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",140010148-KM15 +111810058,E10,11059638,Electrical Hazard,06/30/2011,06/29/2011,06/30/2011 06:36:52 AM,06/30/2011 06:38:38 AM,06/30/2011 06:38:51 AM,06/30/2011 06:40:01 AM,06/30/2011 06:42:47 AM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 06:47:03 AM,1300 Block of BAKER ST,SF,94115,B05,10,4261,3,3,3,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7833830060402, -122.442959503912)",111810058-E10 +120320262,B02,12010645,Structure Fire,02/01/2012,02/01/2012,02/01/2012 05:13:55 PM,02/01/2012 05:14:04 PM,02/01/2012 05:14:23 PM,02/01/2012 05:16:04 PM,02/01/2012 05:23:00 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 05:56:34 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Fire,1,CHIEF,9,1,6,Tenderloin,"(37.7858955061569, -122.412569415086)",120320262-B02 +131850275,B06,13063130,Alarms,07/04/2013,07/04/2013,07/04/2013 06:15:52 PM,07/04/2013 06:16:56 PM,07/04/2013 06:17:10 PM,07/04/2013 06:18:48 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 06:21:53 PM,700 Block of ELIZABETH ST,SF,94114,B06,24,5521,3,3,3,false,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7518395118288, -122.437458654662)",131850275-B06 +123240151,E16,12107694,Medical Incident,11/19/2012,11/19/2012,11/19/2012 10:59:49 AM,11/19/2012 11:02:18 AM,11/19/2012 11:02:51 AM,11/19/2012 11:05:55 AM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/19/2012 11:10:03 AM,3100 Block of STEINER ST,SF,94123,B04,16,3611,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,2,Marina,"(37.7985185653418, -122.437399034508)",123240151-E16 +160431110,KM09,16017225,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:08:56 AM,02/12/2016 10:08:56 AM,02/12/2016 10:09:20 AM,02/12/2016 10:09:54 AM,02/12/2016 10:13:40 AM,02/12/2016 10:22:21 AM,02/12/2016 10:46:53 AM,Code 3 Transport,02/12/2016 11:21:11 AM,JESSIE ST/6TH ST,San Francisco,94103,B03,1,2251,A,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7813981325639, -122.409245443953)",160431110-KM09 +123010034,RS1,12099662,Medical Incident,10/27/2012,10/26/2012,10/27/2012 01:42:24 AM,10/27/2012 01:44:15 AM,10/27/2012 01:44:55 AM,10/27/2012 01:47:06 AM,10/27/2012 01:49:42 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 01:57:09 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",123010034-RS1 +160800810,71,16031730,Medical Incident,03/20/2016,03/19/2016,03/20/2016 07:40:32 AM,03/20/2016 07:43:03 AM,03/20/2016 07:43:18 AM,03/20/2016 07:43:31 AM,03/20/2016 08:02:24 AM,03/20/2016 08:23:37 AM,03/20/2016 08:32:36 AM,Code 2 Transport,03/20/2016 09:05:04 AM,1600 Block of GREENWICH ST,San Francisco,94123,B04,16,3234,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7999975397541, -122.427205502151)",160800810-71 +140990083,94,14033351,Medical Incident,04/09/2014,04/09/2014,04/09/2014 08:00:30 AM,04/09/2014 08:01:34 AM,04/09/2014 08:01:46 AM,04/09/2014 08:01:59 AM,04/09/2014 08:27:09 AM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Against Medical Advice,04/09/2014 09:25:15 AM,1600 Block of 19TH AVE,SAN FRANCISCO,94122,B08,40,7422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",140990083-94 +160030624,AM04,16001075,Medical Incident,01/03/2016,01/02/2016,01/03/2016 06:09:52 AM,01/03/2016 06:11:20 AM,01/03/2016 06:11:49 AM,01/03/2016 06:12:45 AM,01/03/2016 06:17:32 AM,01/03/2016 06:31:22 AM,01/03/2016 06:45:18 AM,Code 2 Transport,01/03/2016 07:10:28 AM,1000 Block of SHOTWELL ST,San Francisco,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7516425997951, -122.41502434397)",160030624-AM04 +132710344,65,13092216,Medical Incident,09/28/2013,09/28/2013,09/28/2013 07:40:50 PM,09/28/2013 07:42:56 PM,09/28/2013 07:43:46 PM,09/28/2013 07:43:57 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,Other,09/28/2013 07:59:13 PM,300 Block of SUSSEX ST,SF,94131,B06,26,8175,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,8,Glen Park,"(37.737052558351, -122.438387531801)",132710344-65 +110740335,AP,11024464,Other,03/15/2011,03/15/2011,03/15/2011 07:08:02 PM,03/15/2011 07:08:03 PM,03/15/2011 07:08:03 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Fire,03/15/2011 07:08:19 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110740335-AP +103340207,E32,10106895,Administrative,11/30/2010,11/30/2010,11/30/2010 02:14:44 PM,11/30/2010 02:14:50 PM,11/30/2010 02:15:02 PM,11/30/2010 02:15:17 PM,11/30/2010 02:15:21 PM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Other,11/30/2010 02:15:24 PM,100 Block of PARK ST,SF,94110,B06,32,5646,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7365449385604, -122.422323583735)",103340207-E32 +160871879,79,16034585,Medical Incident,03/27/2016,03/27/2016,03/27/2016 01:35:08 PM,03/27/2016 01:37:23 PM,03/27/2016 01:37:36 PM,03/27/2016 01:37:52 PM,03/27/2016 01:58:58 PM,03/27/2016 02:07:35 PM,03/27/2016 02:22:37 PM,Code 2 Transport,03/27/2016 02:53:17 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",160871879-79 +133510321,75,13119300,Medical Incident,12/17/2013,12/17/2013,12/17/2013 05:07:44 PM,12/17/2013 05:09:07 PM,12/17/2013 05:10:26 PM,12/17/2013 05:11:36 PM,12/17/2013 05:17:23 PM,12/17/2013 05:26:34 PM,12/17/2013 05:41:42 PM,Code 2 Transport,12/17/2013 06:05:03 PM,500 Block of 42ND AVE,SF,94121,B07,34,7264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7782999043081, -122.502807516341)",133510321-75 +103530086,67,10113238,Medical Incident,12/19/2010,12/18/2010,12/19/2010 03:44:46 AM,12/19/2010 03:46:59 AM,12/19/2010 03:47:32 AM,12/19/2010 03:47:37 AM,12/19/2010 03:52:10 AM,12/19/2010 04:17:10 AM,12/19/2010 04:31:28 AM,Code 2 Transport,12/19/2010 04:58:35 AM,0 Block of HERMANN ST,SF,94102,B02,36,3416,3,3,3,true,,1,MEDIC,1,2,8,Hayes Valley,"(37.7707101221548, -122.425947237004)",103530086-67 +103410255,KM14,10109170,Medical Incident,12/07/2010,12/07/2010,12/07/2010 03:28:48 PM,12/07/2010 03:28:56 PM,12/07/2010 03:29:31 PM,12/07/2010 03:30:42 PM,12/07/2010 03:46:21 PM,12/07/2010 04:01:18 PM,12/07/2010 04:14:11 PM,Code 2 Transport,12/07/2010 04:49:21 PM,400 Block of 2ND ST,SF,94107,B03,8,2151,2,2,2,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7833293790422, -122.393835181842)",103410255-KM14 +130030089,E19,13000934,Alarms,01/03/2013,01/03/2013,01/03/2013 08:25:51 AM,01/03/2013 08:27:34 AM,01/03/2013 08:27:41 AM,01/03/2013 08:29:35 AM,01/03/2013 08:30:30 AM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 08:45:19 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",130030089-E19 +113430287,E36,11113825,Medical Incident,12/09/2011,12/09/2011,12/09/2011 04:02:48 PM,12/09/2011 04:04:21 PM,12/09/2011 04:04:31 PM,12/09/2011 04:06:35 PM,12/09/2011 04:08:03 PM,04/25/2016 02:01:14 PM,04/25/2016 02:01:14 PM,Other,12/09/2011 04:12:14 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",113430287-E36 +130480215,E33,13016409,Medical Incident,02/17/2013,02/17/2013,02/17/2013 01:45:50 PM,02/17/2013 01:46:32 PM,02/17/2013 01:46:42 PM,02/17/2013 01:47:59 PM,02/17/2013 01:50:01 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 01:56:34 PM,100 Block of CAINE AVE,SF,94112,B09,33,8325,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7157481523614, -122.451744181527)",130480215-E33 +120200349,B06,12006825,Alarms,01/20/2012,01/20/2012,01/20/2012 07:42:07 PM,01/20/2012 07:44:41 PM,01/20/2012 07:47:44 PM,01/20/2012 07:49:21 PM,01/20/2012 07:50:56 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 08:01:39 PM,200 Block of JERSEY ST,SF,94114,B06,11,5537,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7507499563424, -122.430690505695)",120200349-B06 +160601367,78,16023874,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:20:53 AM,02/29/2016 11:21:28 AM,02/29/2016 11:21:42 AM,02/29/2016 11:22:08 AM,02/29/2016 11:52:01 AM,02/29/2016 11:52:04 AM,02/29/2016 11:54:43 AM,Code 2 Transport,02/29/2016 12:38:48 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160601367-78 +160870727,63,16034482,Medical Incident,03/27/2016,03/26/2016,03/27/2016 06:47:06 AM,03/27/2016 06:47:51 AM,03/27/2016 06:48:04 AM,03/27/2016 06:48:15 AM,03/27/2016 06:57:51 AM,03/27/2016 07:04:03 AM,03/27/2016 07:29:01 AM,Code 2 Transport,03/27/2016 08:05:36 AM,100 Block of ALICE B TOKLAS PL,San Francisco,94109,B04,3,3116,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7852785985572, -122.420416785947)",160870727-63 +122130319,RC1,12070811,Medical Incident,07/31/2012,07/31/2012,07/31/2012 07:11:37 PM,07/31/2012 07:13:50 PM,07/31/2012 07:14:05 PM,07/31/2012 07:15:00 PM,07/31/2012 07:17:26 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Medical Examiner,07/31/2012 07:48:15 PM,1300 Block of BUSH ST,SF,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",122130319-RC1 +160180218,AM22,16007090,Medical Incident,01/18/2016,01/17/2016,01/18/2016 02:23:01 AM,01/18/2016 02:24:01 AM,01/18/2016 02:24:28 AM,01/18/2016 02:25:04 AM,01/18/2016 02:33:35 AM,01/18/2016 02:58:49 AM,01/18/2016 03:19:51 AM,Code 2 Transport,01/18/2016 03:55:56 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160180218-AM22 +130550219,E07,13018593,Alarms,02/24/2013,02/24/2013,02/24/2013 03:24:08 PM,02/24/2013 03:25:09 PM,02/24/2013 03:25:40 PM,02/24/2013 03:26:49 PM,02/24/2013 03:29:06 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Other,02/24/2013 03:43:56 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",130550219-E07 +130890305,E16,13029868,Traffic Collision,03/30/2013,03/30/2013,03/30/2013 07:21:49 PM,03/30/2013 07:23:02 PM,03/30/2013 07:25:01 PM,03/30/2013 07:26:50 PM,03/30/2013 07:31:40 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 07:41:42 PM,LYON ST/GORGAS AV,SF,94123,B04,16,4325,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio,"(37.8003236998029, -122.447613279358)",130890305-E16 +120770336,T11,12025641,Alarms,03/17/2012,03/17/2012,03/17/2012 08:50:27 PM,03/17/2012 08:51:35 PM,03/17/2012 08:51:45 PM,03/17/2012 08:53:06 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/17/2012 08:57:54 PM,2500 Block of DIAMOND ST,SF,94131,B06,26,8147,3,3,3,false,Alarm,1,TRUCK,3,6,8,Glen Park,"(37.7379235425973, -122.43473971073)",120770336-T11 +112670054,E14,11088114,Medical Incident,09/24/2011,09/23/2011,09/24/2011 03:03:00 AM,09/24/2011 03:04:53 AM,09/24/2011 03:05:14 AM,09/24/2011 03:06:40 AM,09/24/2011 03:09:24 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/24/2011 03:10:12 AM,7000 Block of CALIFORNIA ST,SF,94121,B07,14,7246,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7834657394823, -122.492996408284)",112670054-E14 +110700199,E02,11023033,Medical Incident,03/11/2011,03/11/2011,03/11/2011 01:14:46 PM,03/11/2011 01:16:33 PM,03/11/2011 01:16:51 PM,03/11/2011 01:18:16 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/11/2011 01:20:19 PM,TAYLOR ST/SUTTER ST,SF,94102,B01,3,1412,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",110700199-E02 +110050261,KM12,11001699,Medical Incident,01/05/2011,01/05/2011,01/05/2011 02:54:49 PM,01/05/2011 02:55:31 PM,01/05/2011 02:56:21 PM,01/05/2011 02:59:58 PM,01/05/2011 03:08:42 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Patient Declined Transport,01/05/2011 03:28:45 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",110050261-KM12 +112100140,E39,11069296,Alarms,07/29/2011,07/29/2011,07/29/2011 11:53:40 AM,07/29/2011 11:54:30 AM,07/29/2011 11:54:37 AM,07/29/2011 11:55:11 AM,07/29/2011 12:01:23 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 12:12:33 PM,100 Block of OMAR WAY,SF,94127,B09,39,8662,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7392682754414, -122.449999545348)",112100140-E39 +123260227,E05,12108490,Traffic Collision,11/21/2012,11/21/2012,11/21/2012 03:19:29 PM,11/21/2012 03:19:59 PM,11/21/2012 03:20:14 PM,11/21/2012 03:21:04 PM,11/21/2012 03:22:45 PM,04/25/2016 01:55:41 PM,04/25/2016 01:55:41 PM,Other,11/21/2012 03:33:00 PM,OFARRELL ST/FILLMORE ST,SF,94115,B05,5,3536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7832925916533, -122.432706179722)",123260227-E05 +122400352,D3,12079582,Structure Fire,08/27/2012,08/27/2012,08/27/2012 08:44:10 PM,08/27/2012 08:46:12 PM,08/27/2012 08:46:29 PM,08/27/2012 08:47:34 PM,08/27/2012 08:51:56 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Other,08/27/2012 08:55:04 PM,OAKDALE AV/NEWHALL ST,SF,94124,B10,17,6471,3,3,3,false,Fire,1,CHIEF,7,10,10,Bayview Hunters Point,"(37.7356609603453, -122.392213661868)",122400352-D3 +111000060,55,11033112,Medical Incident,04/10/2011,04/09/2011,04/10/2011 04:10:10 AM,04/10/2011 04:10:37 AM,04/10/2011 04:10:57 AM,04/10/2011 04:11:01 AM,04/10/2011 04:25:37 AM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Patient Declined Transport,04/10/2011 04:57:28 AM,900 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",111000060-55 +121090275,E29,12036128,Medical Incident,04/18/2012,04/18/2012,04/18/2012 05:45:31 PM,04/18/2012 05:46:54 PM,04/18/2012 05:47:14 PM,04/18/2012 05:47:52 PM,04/18/2012 05:49:13 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/18/2012 05:53:13 PM,16TH ST/BRYANT ST,SF,94110,B02,29,5241,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",121090275-E29 +110030181,B04,11000971,Structure Fire,01/03/2011,01/03/2011,01/03/2011 12:46:09 PM,01/03/2011 12:46:09 PM,01/03/2011 12:46:30 PM,01/03/2011 12:47:31 PM,01/03/2011 12:48:06 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Fire,01/03/2011 12:53:07 PM,2300 Block of BUCHANAN ST,SF,94115,B04,38,343,3,3,3,false,,1,CHIEF,1,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",110030181-B04 +130100038,E11,13003314,Medical Incident,01/10/2013,01/09/2013,01/10/2013 03:45:01 AM,01/10/2013 03:47:13 AM,01/10/2013 03:47:48 AM,01/10/2013 03:49:04 AM,01/10/2013 03:50:22 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/10/2013 03:59:37 AM,26TH ST/VALENCIA ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7489065309397, -122.420353712148)",130100038-E11 +111440304,57,11047958,Medical Incident,05/24/2011,05/24/2011,05/24/2011 06:58:29 PM,05/24/2011 06:59:56 PM,05/24/2011 07:00:52 PM,04/25/2016 02:04:28 PM,05/24/2011 07:24:48 PM,05/24/2011 07:27:21 PM,05/24/2011 07:35:41 PM,Code 2 Transport,05/24/2011 08:00:48 PM,WEBSTER ST/JACKSON ST,SF,94115,B04,38,3465,3,3,3,true,,1,MEDIC,3,4,2,Pacific Heights,"(37.7926799136599, -122.432917576713)",111440304-57 +130960011,KM15,13032035,Medical Incident,04/06/2013,04/05/2013,04/06/2013 12:23:19 AM,04/06/2013 12:24:55 AM,04/06/2013 12:25:21 AM,04/06/2013 12:25:57 AM,04/06/2013 12:30:28 AM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 12:36:17 AM,2000 Block of MARKET ST,SF,94114,B02,6,5213,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7683148008502, -122.427682264817)",130960011-KM15 +132300295,AM04,13077752,Medical Incident,08/18/2013,08/18/2013,08/18/2013 06:19:22 PM,08/18/2013 06:20:00 PM,08/18/2013 06:21:01 PM,08/18/2013 06:21:56 PM,08/18/2013 06:26:43 PM,08/18/2013 06:42:53 PM,08/18/2013 06:49:37 PM,Code 3 Transport,08/18/2013 07:36:33 PM,200 Block of TEDDY AVE,SF,94134,B09,44,6311,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7149172327739, -122.407517670009)",132300295-AM04 +111520049,E01,11050195,Alarms,06/01/2011,05/31/2011,06/01/2011 07:06:05 AM,06/01/2011 07:06:53 AM,06/01/2011 07:07:22 AM,06/01/2011 07:09:31 AM,06/01/2011 07:11:38 AM,04/25/2016 02:04:22 PM,04/25/2016 02:04:22 PM,Other,06/01/2011 07:21:02 AM,300 Block of STOCKTON ST,SF,94108,B01,1,1324,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",111520049-E01 +160591935,77,16023555,Medical Incident,02/28/2016,02/28/2016,02/28/2016 02:50:12 PM,02/28/2016 02:50:27 PM,02/28/2016 02:50:39 PM,02/28/2016 02:51:59 PM,02/28/2016 02:56:53 PM,02/28/2016 03:13:07 PM,02/28/2016 03:38:43 PM,Code 2 Transport,02/28/2016 04:16:52 PM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160591935-77 +160483085,79,16019446,Medical Incident,02/17/2016,02/17/2016,02/17/2016 05:57:08 PM,02/17/2016 05:57:08 PM,02/17/2016 05:57:43 PM,02/17/2016 05:57:55 PM,02/17/2016 06:14:37 PM,02/17/2016 06:33:58 PM,02/17/2016 06:58:00 PM,Code 2 Transport,02/17/2016 07:15:12 PM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",160483085-79 +160262090,75,16010330,Traffic Collision,01/26/2016,01/26/2016,01/26/2016 02:06:51 PM,01/26/2016 02:06:51 PM,01/26/2016 02:11:48 PM,01/26/2016 02:12:50 PM,01/26/2016 02:15:08 PM,01/26/2016 03:05:42 PM,01/26/2016 03:27:42 PM,Other,01/26/2016 04:25:14 PM,WASHINGTON ST/BATTERY ST,San Francisco,94111,B01,13,1142,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7958750038383, -122.400485537558)",160262090-75 +160730358,61,16028865,Medical Incident,03/13/2016,03/12/2016,03/13/2016 04:13:53 AM,03/13/2016 04:14:35 AM,03/13/2016 04:14:49 AM,03/13/2016 04:14:59 AM,03/13/2016 04:19:20 AM,03/13/2016 04:39:58 AM,03/13/2016 04:51:42 AM,Code 2 Transport,03/13/2016 05:40:51 AM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",160730358-61 +160843807,AM16,16033546,Medical Incident,03/24/2016,03/24/2016,03/24/2016 08:25:01 PM,03/24/2016 08:26:14 PM,03/24/2016 08:26:26 PM,03/24/2016 08:27:08 PM,03/24/2016 08:37:13 PM,03/24/2016 08:49:11 PM,03/24/2016 09:03:45 PM,Code 2 Transport,03/24/2016 09:20:28 PM,1700 Block of SILVER AVE,San Francisco,94124,B10,42,6364,3,3,3,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.733361342902, -122.403884306786)",160843807-AM16 +120690147,81,12022859,Medical Incident,03/09/2012,03/09/2012,03/09/2012 11:48:53 AM,03/09/2012 11:51:20 AM,03/09/2012 11:51:45 AM,03/09/2012 11:51:53 AM,03/09/2012 11:59:36 AM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Patient Declined Transport,03/09/2012 12:47:06 PM,0 Block of MUSIC CONCOURSE DR,SF,94118,B07,22,7744,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",120690147-81 +133470024,RS1,13117615,Structure Fire,12/13/2013,12/12/2013,12/13/2013 02:02:47 AM,12/13/2013 02:03:35 AM,12/13/2013 02:04:04 AM,12/13/2013 02:05:53 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/13/2013 02:10:16 AM,2300 Block of PACIFIC AVE,SF,94115,B04,38,3546,3,3,3,false,Alarm,1,RESCUE SQUAD,10,4,2,Pacific Heights,"(37.7935066493689, -122.433922048128)",133470024-RS1 +113130137,85,11103961,Medical Incident,11/09/2011,11/09/2011,11/09/2011 10:46:29 AM,11/09/2011 10:47:31 AM,11/09/2011 10:47:46 AM,11/09/2011 10:48:26 AM,11/09/2011 10:54:27 AM,11/09/2011 11:30:36 AM,11/09/2011 11:43:12 AM,Code 2 Transport,11/09/2011 12:20:54 PM,1700 Block of GENEVA AVE,SF,94134,B09,43,6245,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7118331290822, -122.427989009711)",113130137-85 +120040368,B06,12001568,Medical Incident,01/04/2012,01/04/2012,01/04/2012 11:18:48 PM,01/04/2012 11:19:43 PM,01/04/2012 11:20:02 PM,04/25/2016 02:00:47 PM,01/04/2012 11:23:30 PM,04/25/2016 02:00:47 PM,04/25/2016 02:00:47 PM,No Merit,01/04/2012 11:24:15 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,E,E,3,false,Potentially Life-Threatening,1,CHIEF,1,6,9,Mission,"(37.7490412884368, -122.418135251703)",120040368-B06 +160521121,89,16020758,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:09:16 AM,02/21/2016 10:10:38 AM,02/21/2016 10:10:49 AM,02/21/2016 10:11:06 AM,02/21/2016 10:15:16 AM,02/21/2016 10:39:44 AM,02/21/2016 10:50:58 AM,Code 2 Transport,02/21/2016 11:28:41 AM,0 Block of ROCKAWAY AVE,San Francisco,94127,B08,39,8671,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7433357896756, -122.456417640323)",160521121-89 +133460245,E03,13117439,Medical Incident,12/12/2013,12/12/2013,12/12/2013 03:08:47 PM,12/12/2013 03:10:19 PM,12/12/2013 03:10:39 PM,12/12/2013 03:10:53 PM,12/12/2013 03:14:22 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 03:21:06 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",133460245-E03 +140130291,D2,14004549,Structure Fire,01/13/2014,01/13/2014,01/13/2014 05:52:08 PM,01/13/2014 05:53:09 PM,01/13/2014 05:57:14 PM,01/13/2014 05:57:27 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/13/2014 06:00:03 PM,1600 Block of DIVISADERO ST,SF,94115,B05,10,4155,,3,3,false,Alarm,1,CHIEF,7,5,5,Japantown,"(37.7847687027421, -122.439893519511)",140130291-D2 +160152347,89,16006037,Traffic Collision,01/15/2016,01/15/2016,01/15/2016 03:16:12 PM,01/15/2016 03:17:19 PM,01/15/2016 03:17:56 PM,01/15/2016 03:18:19 PM,01/15/2016 03:29:34 PM,01/15/2016 03:39:13 PM,01/15/2016 03:56:22 PM,Code 2 Transport,01/15/2016 05:05:02 PM,100 Block of PAUL AVE,San Francisco,94124,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.722697633179, -122.397167021381)",160152347-89 +132110043,E32,13071257,Alarms,07/30/2013,07/29/2013,07/30/2013 05:10:12 AM,07/30/2013 05:11:40 AM,07/30/2013 05:11:49 AM,07/30/2013 05:13:14 AM,07/30/2013 05:15:35 AM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,Other,07/30/2013 05:19:06 AM,3300 Block of MISSION ST,SF,94110,B06,32,5625,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7429468259451, -122.421521421409)",132110043-E32 +131510198,E08,13051133,Medical Incident,05/31/2013,05/31/2013,05/31/2013 01:25:26 PM,05/31/2013 01:26:15 PM,05/31/2013 01:26:30 PM,05/31/2013 01:27:42 PM,05/31/2013 01:30:13 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 01:43:16 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",131510198-E08 +160623974,88,16024874,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:38:41 PM,03/02/2016 09:38:41 PM,03/02/2016 09:39:37 PM,03/02/2016 09:40:00 PM,03/02/2016 09:49:15 PM,03/02/2016 09:55:30 PM,03/02/2016 10:04:14 PM,Code 2 Transport,03/02/2016 10:28:26 PM,1200 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7884521578132, -122.420326993863)",160623974-88 +130260020,E07,13008846,Medical Incident,01/26/2013,01/25/2013,01/26/2013 01:08:22 AM,01/26/2013 01:08:54 AM,01/26/2013 01:09:12 AM,01/26/2013 01:10:36 AM,01/26/2013 01:12:49 AM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/26/2013 01:21:59 AM,3200 Block of 22ND ST,SF,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7553465863701, -122.419297189961)",130260020-E07 +120890330,94,12029595,Medical Incident,03/29/2012,03/29/2012,03/29/2012 09:29:21 PM,03/29/2012 09:33:30 PM,03/29/2012 09:33:37 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Other,04/25/2016 01:59:26 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,9,Mission,"(37.7642361189447, -122.419659842408)",120890330-94 +160121724,87,16004778,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:50:21 PM,01/12/2016 12:51:15 PM,01/12/2016 12:52:05 PM,01/12/2016 12:52:14 PM,01/12/2016 01:05:02 PM,01/12/2016 01:26:57 PM,01/12/2016 01:36:54 PM,Code 2 Transport,01/12/2016 02:13:12 PM,600 Block of POWELL ST,San Francisco,94108,B01,2,1361,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7904949923756, -122.408784626776)",160121724-87 +111480268,RS1,11049164,Medical Incident,05/28/2011,05/28/2011,05/28/2011 07:03:28 PM,05/28/2011 07:03:57 PM,05/28/2011 07:06:46 PM,04/25/2016 02:04:24 PM,05/28/2011 07:10:42 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/28/2011 07:12:05 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",111480268-RS1 +133310093,E44,13112295,Medical Incident,11/27/2013,11/27/2013,11/27/2013 08:55:45 AM,11/27/2013 08:57:03 AM,11/27/2013 08:57:17 AM,11/27/2013 08:59:44 AM,11/27/2013 09:03:23 AM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/27/2013 09:08:09 AM,200 Block of ARLETA AVE,SF,94134,B09,44,6312,3,3,3,true,Non Life-threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7141378430387, -122.40785339643)",133310093-E44 +140530328,82,14018081,,02/22/2014,02/22/2014,02/22/2014 08:58:00 PM,02/22/2014 08:59:00 PM,02/22/2014 08:59:00 PM,02/22/2014 09:00:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,SFPD,02/22/2014 09:05:00 PM,3800 Block of 3RD ST,SF,94124,B10,25,6457,2,2,2,false,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7422681434531, -122.387936728644)",140530328-82 +160502862,AM16,16020193,Medical Incident,02/19/2016,02/19/2016,02/19/2016 05:51:13 PM,02/19/2016 05:53:58 PM,02/19/2016 05:54:05 PM,02/19/2016 05:54:34 PM,02/19/2016 06:18:19 PM,02/19/2016 06:18:24 PM,02/19/2016 06:41:20 PM,Code 2 Transport,02/19/2016 06:56:37 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",160502862-AM16 +123010372,B02,12099963,HazMat,10/27/2012,10/27/2012,10/27/2012 10:33:05 PM,10/27/2012 10:35:14 PM,10/27/2012 10:35:39 PM,04/25/2016 01:56:05 PM,10/27/2012 11:26:43 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/27/2012 11:49:34 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,CHIEF,1,None,None,None,"(37.6168823239251, -122.384094238098)",123010372-B02 +160751257,KM13,16029665,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:47:09 AM,03/15/2016 10:48:50 AM,03/15/2016 10:49:57 AM,03/15/2016 10:50:40 AM,03/15/2016 11:04:36 AM,03/15/2016 11:30:39 AM,03/15/2016 12:11:10 PM,Code 2 Transport,03/15/2016 12:51:53 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160751257-KM13 +130850219,B07,13028402,Alarms,03/26/2013,03/26/2013,03/26/2013 02:50:41 PM,03/26/2013 02:51:46 PM,03/26/2013 02:54:31 PM,03/26/2013 02:57:04 PM,03/26/2013 02:59:02 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 03:03:33 PM,1800 Block of GOLDEN GATE AVE,SF,94115,B05,21,4242,3,3,3,false,Alarm,1,CHIEF,2,5,5,Western Addition,"(37.7784597347567, -122.44105052615)",130850219-B07 +120620299,RC1,12020488,Medical Incident,03/02/2012,03/02/2012,03/02/2012 06:20:28 PM,03/02/2012 06:21:50 PM,03/02/2012 06:23:00 PM,03/02/2012 06:34:35 PM,03/02/2012 06:36:54 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/02/2012 07:04:17 PM,3200 Block of OCTAVIA ST,SF,94123,B04,16,3341,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.8021273515424, -122.429692779866)",120620299-RC1 +160600708,88,16023794,Traffic Collision,02/29/2016,02/29/2016,02/29/2016 08:10:54 AM,02/29/2016 08:15:08 AM,02/29/2016 08:15:57 AM,02/29/2016 08:16:03 AM,02/29/2016 08:24:15 AM,02/29/2016 08:43:25 AM,02/29/2016 09:20:18 AM,Code 2 Transport,02/29/2016 10:08:53 AM,NEVADA ST/CRESCENT AV,San Francisco,94110,B10,32,5746,2,3,3,true,Non Life-threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7346384671452, -122.411826089605)",160600708-88 +123500263,T02,12117109,Alarms,12/15/2012,12/15/2012,12/15/2012 05:46:12 PM,12/15/2012 05:47:37 PM,12/15/2012 05:47:50 PM,12/15/2012 05:49:30 PM,12/15/2012 05:51:27 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 06:13:35 PM,1200 Block of GRANT AVE,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.7983293338887, -122.407047477146)",123500263-T02 +132470151,67,13083300,Medical Incident,09/04/2013,09/04/2013,09/04/2013 10:56:03 AM,09/04/2013 10:58:41 AM,09/04/2013 10:58:59 AM,09/04/2013 10:59:18 AM,09/04/2013 11:23:48 AM,09/04/2013 11:37:00 AM,09/04/2013 12:00:42 PM,Code 2 Transport,09/04/2013 12:37:48 PM,2600 Block of YORBA ST,SF,94116,B08,19,7614,3,3,3,true,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7346752562367, -122.494982313585)",132470151-67 +110560337,96,11018577,Medical Incident,02/25/2011,02/25/2011,02/25/2011 09:51:47 PM,02/25/2011 09:52:53 PM,02/25/2011 09:53:05 PM,02/25/2011 09:53:38 PM,02/25/2011 09:58:58 PM,02/25/2011 10:14:55 PM,02/25/2011 10:28:55 PM,Code 2 Transport,02/25/2011 10:49:10 PM,0 Block of MOUNT VERNON AVE,SF,94112,B09,43,6176,E,E,3,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7152959956202, -122.443476345825)",110560337-96 +112590409,E01,11085590,Medical Incident,09/16/2011,09/16/2011,09/16/2011 11:54:20 PM,09/16/2011 11:54:58 PM,09/16/2011 11:56:37 PM,09/16/2011 11:57:00 PM,09/16/2011 11:59:16 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 12:02:16 AM,EDDY ST/TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",112590409-E01 +131340388,92,13045369,Medical Incident,05/14/2013,05/14/2013,05/14/2013 08:36:26 PM,05/14/2013 08:37:15 PM,05/14/2013 08:37:19 PM,05/14/2013 08:38:23 PM,05/14/2013 08:41:35 PM,05/14/2013 08:57:00 PM,05/14/2013 09:11:31 PM,Code 2 Transport,05/14/2013 09:47:31 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7845808066125, -122.414593411257)",131340388-92 +130900071,E37,13030017,Medical Incident,03/31/2013,03/30/2013,03/31/2013 05:37:26 AM,03/31/2013 05:38:42 AM,03/31/2013 05:38:54 AM,03/31/2013 05:41:10 AM,03/31/2013 05:42:59 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 05:56:02 AM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",130900071-E37 +121190286,E10,12039567,Medical Incident,04/28/2012,04/28/2012,04/28/2012 06:25:59 PM,04/28/2012 06:26:59 PM,04/28/2012 06:27:10 PM,04/28/2012 06:29:16 PM,04/28/2012 06:30:16 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 06:42:31 PM,0 Block of MASONIC AVE,SF,94118,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7837280171919, -122.447368375734)",121190286-E10 +121930067,T19,12064162,Alarms,07/11/2012,07/10/2012,07/11/2012 06:40:58 AM,07/11/2012 06:42:11 AM,07/11/2012 06:42:43 AM,07/11/2012 06:45:24 AM,07/11/2012 06:49:43 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 07:00:50 AM,3900 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,true,Alarm,1,TRUCK,2,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",121930067-T19 +121910358,E32,12063745,Alarms,07/09/2012,07/09/2012,07/09/2012 10:30:10 PM,07/09/2012 10:33:22 PM,07/09/2012 10:33:39 PM,07/09/2012 10:35:06 PM,07/09/2012 10:37:55 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/09/2012 10:45:34 PM,600 Block of PERALTA AVE,SF,94110,B10,32,5722,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7430294100029, -122.408794397348)",121910358-E32 +102320004,E01,10072875,Medical Incident,08/20/2010,08/19/2010,08/20/2010 12:43:08 AM,08/20/2010 12:44:01 AM,08/20/2010 12:44:29 AM,08/20/2010 12:45:31 AM,08/20/2010 12:47:06 AM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 12:51:31 AM,6TH ST/JESSIE ST,SF,94103,B03,1,2248,E,E,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7813981325639, -122.409245443953)",102320004-E01 +133440155,T09,13116630,Alarms,12/10/2013,12/10/2013,12/10/2013 10:38:36 AM,12/10/2013 10:39:53 AM,12/10/2013 10:40:55 AM,12/10/2013 10:43:13 AM,12/10/2013 10:47:29 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Fire,12/10/2013 11:08:25 AM,600 Block of CESAR CHAVEZ ST,SF,94124,B10,25,2733,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7504165712994, -122.384149714772)",133440155-T09 +140260112,B06,14008844,Structure Fire,01/26/2014,01/26/2014,01/26/2014 09:56:42 AM,01/26/2014 09:57:45 AM,01/26/2014 09:58:12 AM,01/26/2014 09:58:47 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 10:02:52 AM,1300 Block of VERMONT ST,SF,94110,B10,37,2556,3,3,3,false,Alarm,1,CHIEF,6,10,10,Mission,"(37.7525362611874, -122.40341546139)",140260112-B06 +140730323,96,14024762,Medical Incident,03/14/2014,03/14/2014,03/14/2014 06:24:47 PM,03/14/2014 06:27:37 PM,03/14/2014 06:46:54 PM,03/14/2014 06:47:03 PM,03/14/2014 07:12:42 PM,03/14/2014 07:21:33 PM,03/14/2014 07:24:19 PM,Code 2 Transport,03/14/2014 07:53:18 PM,0 Block of KEZAR DR,,94122,B05,12,7321,1,1,2,true,Non Life-threatening,1,MEDIC,2,7,5,Golden Gate Park,"(37.7695200227183, -122.45512727517)",140730323-96 +133030338,E43,13103056,Medical Incident,10/30/2013,10/30/2013,10/30/2013 07:44:08 PM,10/30/2013 07:44:53 PM,10/30/2013 07:45:05 PM,10/30/2013 07:46:22 PM,10/30/2013 07:48:29 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 07:58:21 PM,100 Block of BRUNSWICK ST,SF,94112,B09,43,6217,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.711494077513, -122.439826652302)",133030338-E43 +132200260,72,13074374,Medical Incident,08/08/2013,08/08/2013,08/08/2013 05:01:49 PM,08/08/2013 05:05:18 PM,08/08/2013 05:06:14 PM,08/08/2013 05:06:39 PM,08/08/2013 05:14:12 PM,08/08/2013 05:47:32 PM,08/08/2013 06:08:01 PM,Code 2 Transport,08/08/2013 06:38:36 PM,1900 Block of FUNSTON AVE,SF,94116,B08,40,7354,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7516485435297, -122.469586310392)",132200260-72 +160533137,62,16021363,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:05:34 PM,02/22/2016 08:07:17 PM,02/22/2016 08:08:12 PM,02/22/2016 08:10:26 PM,02/22/2016 08:15:38 PM,02/22/2016 08:32:22 PM,02/22/2016 08:46:43 PM,Code 2 Transport,02/22/2016 09:18:57 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160533137-62 +160522789,53,16020923,Medical Incident,02/21/2016,02/21/2016,02/21/2016 06:32:54 PM,02/21/2016 06:32:54 PM,02/21/2016 06:33:16 PM,02/21/2016 06:33:25 PM,02/21/2016 06:36:36 PM,02/21/2016 06:49:04 PM,02/21/2016 07:13:38 PM,Code 2 Transport,02/21/2016 07:22:21 PM,CALIFORNIA ST/POWELL ST,San Francisco,94108,B01,2,1356,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7920425145533, -122.409171362291)",160522789-53 +160842660,KM01,16033456,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:51:34 PM,03/24/2016 03:52:09 PM,03/24/2016 03:53:48 PM,03/24/2016 03:54:11 PM,03/24/2016 04:15:11 PM,03/24/2016 04:42:39 PM,03/24/2016 04:52:31 PM,Code 2 Transport,03/24/2016 05:36:38 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160842660-KM01 +121450133,E28,12048093,Medical Incident,05/24/2012,05/24/2012,05/24/2012 11:21:41 AM,05/24/2012 11:23:13 AM,05/24/2012 11:23:26 AM,05/24/2012 11:23:58 AM,05/24/2012 11:27:02 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 11:38:34 AM,1800 Block of THE EMBARCADERO,SF,94133,B01,28,935,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8088354051007, -122.414108783784)",121450133-E28 +160481297,59,16019297,Medical Incident,02/17/2016,02/17/2016,02/17/2016 10:47:09 AM,02/17/2016 10:47:32 AM,02/17/2016 10:48:00 AM,02/17/2016 10:48:07 AM,02/17/2016 11:04:45 AM,02/17/2016 11:09:24 AM,02/17/2016 11:27:08 AM,Code 2 Transport,02/17/2016 11:59:52 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",160481297-59 +160060026,61,16002214,Medical Incident,01/06/2016,01/05/2016,01/06/2016 12:10:55 AM,01/06/2016 12:12:01 AM,01/06/2016 12:12:10 AM,01/06/2016 12:12:18 AM,01/06/2016 12:15:52 AM,01/06/2016 12:29:42 AM,01/06/2016 12:31:53 AM,Code 2 Transport,01/06/2016 01:04:25 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160060026-61 +132910039,E29,13098894,Fuel Spill,10/18/2013,10/17/2013,10/18/2013 03:13:12 AM,10/18/2013 03:15:56 AM,10/18/2013 03:17:30 AM,10/18/2013 03:18:21 AM,10/18/2013 03:20:22 AM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Fire,10/18/2013 03:22:23 AM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",132910039-E29 +112340317,T14,11077362,Structure Fire,08/22/2011,08/22/2011,08/22/2011 08:33:34 PM,08/22/2011 08:33:35 PM,08/22/2011 08:33:40 PM,08/22/2011 08:34:44 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/22/2011 08:37:22 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",112340317-T14 +103560026,60,10114143,Medical Incident,12/22/2010,12/21/2010,12/22/2010 02:02:17 AM,12/22/2010 02:06:02 AM,12/22/2010 02:07:19 AM,04/25/2016 02:06:59 PM,12/22/2010 02:23:28 AM,12/22/2010 02:39:24 AM,12/22/2010 02:47:07 AM,Code 2 Transport,12/22/2010 03:01:51 AM,300 Block of JONES ST,SF,94102,B03,3,1461,2,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",103560026-60 +160563971,78,16022556,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:25:24 PM,02/25/2016 10:28:14 PM,02/25/2016 10:28:46 PM,02/25/2016 10:29:05 PM,02/25/2016 10:39:25 PM,02/25/2016 10:56:08 PM,02/25/2016 11:07:29 PM,Code 2 Transport,02/25/2016 11:46:49 PM,1500 Block of FILBERT ST,San Francisco,94123,B04,16,3234,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7994343376071, -122.425002999935)",160563971-78 +160761199,53,16030083,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:20:16 AM,03/16/2016 10:21:12 AM,03/16/2016 10:21:57 AM,03/16/2016 10:22:45 AM,03/16/2016 10:30:35 AM,03/16/2016 10:45:00 AM,03/16/2016 10:50:44 AM,Code 3 Transport,03/16/2016 11:48:17 AM,0 Block of CAPITOL AVE,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.710896081508, -122.458931105722)",160761199-53 +123490018,87,12116556,Medical Incident,12/14/2012,12/13/2012,12/14/2012 01:10:15 AM,12/14/2012 01:13:03 AM,12/14/2012 01:13:36 AM,12/14/2012 01:13:41 AM,12/14/2012 01:20:23 AM,12/14/2012 01:46:05 AM,12/14/2012 01:52:46 AM,Code 2 Transport,12/14/2012 02:10:42 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123490018-87 +160443557,52,16017875,Medical Incident,02/13/2016,02/13/2016,02/13/2016 09:31:42 PM,02/13/2016 09:34:38 PM,02/13/2016 09:36:45 PM,02/13/2016 09:37:01 PM,02/13/2016 09:44:39 PM,02/13/2016 10:01:12 PM,02/13/2016 10:25:44 PM,Code 2 Transport,02/13/2016 11:04:01 PM,300 Block of POPE ST,San Francisco,94112,B09,43,6217,2,3,3,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7108296390342, -122.439907176564)",160443557-52 +130580286,E05,13019532,Traffic Collision,02/27/2013,02/27/2013,02/27/2013 03:48:42 PM,02/27/2013 03:49:17 PM,02/27/2013 03:49:28 PM,02/27/2013 03:50:39 PM,02/27/2013 03:52:10 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,02/27/2013 04:02:02 PM,FULTON ST/GOUGH ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787473702584, -122.423354024639)",130580286-E05 +160473850,AM18,16019145,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:09:57 PM,02/16/2016 10:11:36 PM,02/16/2016 10:11:55 PM,02/16/2016 10:12:19 PM,02/16/2016 10:19:26 PM,02/16/2016 10:28:24 PM,02/16/2016 10:56:48 PM,Code 2 Transport,02/16/2016 11:04:34 PM,500 Block of CLEMENT ST,San Francisco,94118,B07,31,7127,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7829702934835, -122.464962699402)",160473850-AM18 +131050181,94,13035267,Medical Incident,04/15/2013,04/15/2013,04/15/2013 01:06:03 PM,04/15/2013 01:07:51 PM,04/15/2013 01:10:10 PM,04/15/2013 01:10:30 PM,04/15/2013 01:15:54 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 01:24:58 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",131050181-94 +133390106,E12,13114822,Medical Incident,12/05/2013,12/05/2013,12/05/2013 09:03:53 AM,12/05/2013 09:04:26 AM,12/05/2013 09:04:39 AM,12/05/2013 09:04:54 AM,12/05/2013 09:05:25 AM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 09:12:37 AM,CARL ST/COLE ST,SF,94117,B05,12,5144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7658000298196, -122.449958130403)",133390106-E12 +123430353,D2,12114771,Structure Fire,12/08/2012,12/08/2012,12/08/2012 08:51:47 PM,12/08/2012 08:52:50 PM,12/08/2012 08:52:57 PM,12/08/2012 08:54:45 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 08:58:59 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,false,Alarm,1,CHIEF,8,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",123430353-D2 +160332600,AM06,16013082,Medical Incident,02/02/2016,02/02/2016,02/02/2016 05:19:30 PM,02/02/2016 05:21:38 PM,02/02/2016 05:21:51 PM,02/02/2016 05:22:55 PM,02/02/2016 05:32:55 PM,02/02/2016 05:50:22 PM,02/02/2016 06:09:42 PM,Code 2 Transport,02/02/2016 06:42:32 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160332600-AM06 +131390373,E03,13047163,Medical Incident,05/19/2013,05/19/2013,05/19/2013 06:17:53 PM,05/19/2013 06:19:49 PM,05/19/2013 06:19:56 PM,05/19/2013 06:21:04 PM,05/19/2013 06:22:12 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 06:24:04 PM,GEARY BL/VAN NESS AV,SF,94109,B04,3,3161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",131390373-E03 +111280179,KM12,11042349,Medical Incident,05/08/2011,05/08/2011,05/08/2011 01:56:02 PM,05/08/2011 01:57:15 PM,05/08/2011 01:57:53 PM,05/08/2011 01:58:21 PM,05/08/2011 02:03:34 PM,05/08/2011 02:17:18 PM,04/25/2016 02:04:43 PM,Code 2 Transport,05/08/2011 02:24:43 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",111280179-KM12 +130900034,B09,13029981,Structure Fire,03/31/2013,03/30/2013,03/31/2013 01:58:15 AM,03/31/2013 01:59:33 AM,03/31/2013 01:59:47 AM,03/31/2013 02:01:41 AM,03/31/2013 02:07:04 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,04/25/2016 01:53:33 PM,2400 Block of 24TH ST,SF,94110,B10,9,2562,3,3,3,false,Alarm,1,CHIEF,5,10,10,Mission,"(37.7532046649447, -122.403889561898)",130900034-B09 +103490071,B10,10111844,Structure Fire,12/15/2010,12/15/2010,12/15/2010 08:15:22 AM,12/15/2010 08:17:12 AM,12/15/2010 08:18:20 AM,12/15/2010 08:19:49 AM,12/15/2010 08:22:59 AM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Fire,12/15/2010 08:35:30 AM,1500 Block of NEWHALL ST,SF,94124,B10,17,6471,3,3,3,false,,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7347575593913, -122.393114279913)",103490071-B10 +112620383,82,11086624,Medical Incident,09/19/2011,09/19/2011,09/19/2011 08:34:12 PM,09/19/2011 08:34:52 PM,09/19/2011 08:35:45 PM,09/19/2011 08:35:58 PM,09/19/2011 08:49:19 PM,09/19/2011 09:05:53 PM,09/19/2011 09:12:41 PM,Code 2 Transport,09/19/2011 09:26:47 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,1,1,2,true,,1,MEDIC,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",112620383-82 +160560236,52,16022224,Medical Incident,02/25/2016,02/24/2016,02/25/2016 02:44:42 AM,02/25/2016 02:46:22 AM,02/25/2016 02:50:30 AM,02/25/2016 02:51:06 AM,02/25/2016 02:57:00 AM,02/25/2016 03:09:34 AM,02/25/2016 03:20:48 AM,Code 2 Transport,02/25/2016 03:40:45 AM,400 Block of CLAY ST,San Francisco,94111,B01,13,1161,B,B,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7949611703009, -122.400911522038)",160560236-52 +110260279,E07,11008649,Traffic Collision,01/26/2011,01/26/2011,01/26/2011 05:13:10 PM,01/26/2011 05:14:19 PM,01/26/2011 05:14:40 PM,04/25/2016 02:06:24 PM,01/26/2011 05:21:10 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Patient Declined Transport,01/26/2011 05:26:30 PM,VALENCIA ST/14TH ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7681396851482, -122.422199175206)",110260279-E07 +123230044,E16,12107295,Alarms,11/18/2012,11/17/2012,11/18/2012 03:15:23 AM,11/18/2012 03:16:24 AM,11/18/2012 03:16:46 AM,11/18/2012 03:18:32 AM,11/18/2012 03:19:47 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/18/2012 03:21:33 AM,2100 Block of FILBERT ST,SF,94123,B04,16,3462,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7980713649895, -122.434846001062)",123230044-E16 +160471458,53,16018896,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:34:01 AM,02/16/2016 11:34:01 AM,02/16/2016 11:34:27 AM,02/16/2016 11:34:43 AM,02/16/2016 11:39:02 AM,02/16/2016 11:57:29 AM,02/16/2016 12:09:21 PM,Code 2 Transport,02/16/2016 01:04:55 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160471458-53 +132420026,82,13081498,Alarms,08/30/2013,08/29/2013,08/30/2013 02:16:32 AM,08/30/2013 02:17:51 AM,08/30/2013 02:26:55 AM,08/30/2013 02:27:34 AM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/30/2013 02:29:55 AM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,Alarm,1,MEDIC,4,6,8,Mission,"(37.7497020110556, -122.420499334167)",132420026-82 +160091401,82,16003625,Medical Incident,01/09/2016,01/09/2016,01/09/2016 11:50:46 AM,01/09/2016 11:52:37 AM,01/09/2016 11:52:47 AM,01/09/2016 11:54:32 AM,01/09/2016 12:03:29 PM,01/09/2016 12:21:27 PM,01/09/2016 12:36:13 PM,Code 2 Transport,01/09/2016 01:24:45 PM,2200 Block of 41ST AV,San Francisco,94116,B08,18,7635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7448061119266, -122.499528402657)",160091401-82 +160091837,KM07,16003666,Medical Incident,01/09/2016,01/09/2016,01/09/2016 01:50:01 PM,01/09/2016 01:50:11 PM,01/09/2016 01:50:31 PM,01/09/2016 01:50:52 PM,01/09/2016 01:59:10 PM,01/09/2016 02:25:12 PM,01/09/2016 02:35:25 PM,Code 2 Transport,01/09/2016 03:25:54 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160091837-KM07 +133100018,68,13105257,Other,11/06/2013,11/05/2013,11/06/2013 02:06:08 AM,11/06/2013 02:06:59 AM,11/06/2013 02:10:09 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,04/25/2016 01:49:54 PM,1900 Block of OCEAN AVE,SF,94127,B09,15,8455,3,3,3,false,Alarm,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7258420092206, -122.46408510437)",133100018-68 +130460129,E10,13015561,Medical Incident,02/15/2013,02/15/2013,02/15/2013 10:22:52 AM,02/15/2013 10:23:34 AM,02/15/2013 10:23:55 AM,02/15/2013 10:28:32 AM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 10:32:19 AM,PRESIDIO AV/GEARY BL,SF,94115,B05,10,4365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7824880307743, -122.445820511681)",130460129-E10 +122580199,T01,12085296,Vehicle Fire,09/14/2012,09/14/2012,09/14/2012 02:42:34 PM,09/14/2012 02:44:32 PM,09/14/2012 02:46:37 PM,09/14/2012 02:47:51 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/14/2012 02:50:40 PM,300 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,false,Fire,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",122580199-T01 +131010233,RC3,13033986,Medical Incident,04/11/2013,04/11/2013,04/11/2013 02:42:11 PM,04/11/2013 02:46:33 PM,04/11/2013 02:47:44 PM,04/11/2013 02:49:34 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/11/2013 02:50:14 PM,25TH ST/HARRISON ST,SF,94110,B06,7,5533,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7510338955654, -122.411746226036)",131010233-RC3 +160032766,AM16,16001324,Medical Incident,01/03/2016,01/03/2016,01/03/2016 07:22:40 PM,01/03/2016 07:25:11 PM,01/03/2016 07:25:45 PM,01/03/2016 07:26:20 PM,01/03/2016 07:36:03 PM,01/03/2016 07:47:05 PM,01/03/2016 07:57:41 PM,Code 2 Transport,01/03/2016 08:27:06 PM,OFARRELL ST/LEAVENWORTH ST,San Francisco,94109,B04,3,1544,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",160032766-AM16 +120780404,AM18,12026070,Medical Incident,03/18/2012,03/18/2012,03/18/2012 10:58:39 PM,03/18/2012 11:00:25 PM,03/18/2012 11:01:09 PM,03/18/2012 11:01:57 PM,03/18/2012 11:03:53 PM,03/18/2012 11:40:48 PM,03/19/2012 12:23:11 AM,Code 2 Transport,03/19/2012 12:38:49 AM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7896888465146, -122.412913104115)",120780404-AM18 +121310145,AM06,12043538,Medical Incident,05/10/2012,05/10/2012,05/10/2012 11:26:32 AM,05/10/2012 11:28:16 AM,05/10/2012 11:28:56 AM,05/10/2012 11:29:45 AM,05/10/2012 11:31:56 AM,05/10/2012 11:38:15 AM,05/10/2012 11:55:55 AM,Code 2 Transport,05/10/2012 12:32:19 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",121310145-AM06 +160143741,70,16005760,Medical Incident,01/14/2016,01/14/2016,01/14/2016 10:03:49 PM,01/14/2016 10:04:40 PM,01/14/2016 10:05:19 PM,01/14/2016 10:05:43 PM,01/14/2016 10:12:56 PM,01/14/2016 10:35:30 PM,01/14/2016 10:47:13 PM,Code 2 Transport,01/14/2016 11:18:43 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160143741-70 +160351970,KM05,16013839,Medical Incident,02/04/2016,02/04/2016,02/04/2016 01:44:35 PM,02/04/2016 01:45:12 PM,02/04/2016 01:46:26 PM,02/04/2016 01:46:54 PM,02/04/2016 01:52:23 PM,02/04/2016 02:12:59 PM,02/04/2016 02:26:12 PM,Code 2 Transport,02/04/2016 03:18:29 PM,300 Block of HAIGHT ST,San Francisco,94102,B02,6,3524,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7724746185561, -122.427991225235)",160351970-KM05 +120620053,E01,12020273,Medical Incident,03/02/2012,03/01/2012,03/02/2012 06:19:08 AM,03/02/2012 06:20:57 AM,03/02/2012 06:21:08 AM,03/02/2012 06:23:12 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/02/2012 06:29:56 AM,100 Block of CHESTNUT ST,SF,94133,B01,28,1254,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8045313245892, -122.406351854384)",120620053-E01 +130230303,KM14,13008036,Medical Incident,01/23/2013,01/23/2013,01/23/2013 05:12:16 PM,01/23/2013 05:13:09 PM,01/23/2013 05:14:12 PM,01/23/2013 05:15:05 PM,01/23/2013 05:23:18 PM,01/23/2013 05:39:09 PM,01/23/2013 06:02:12 PM,Code 2 Transport,01/23/2013 06:35:45 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",130230303-KM14 +111700350,T03,11056190,Alarms,06/19/2011,06/19/2011,06/19/2011 09:21:28 PM,06/19/2011 09:22:18 PM,06/19/2011 09:22:27 PM,04/25/2016 02:04:04 PM,06/19/2011 09:24:01 PM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,Other,06/19/2011 09:31:56 PM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,TRUCK,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",111700350-T03 +160373484,PT204,16014888,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:01:51 PM,02/06/2016 08:01:51 PM,02/06/2016 08:02:59 PM,02/06/2016 08:04:09 PM,02/06/2016 08:12:38 PM,02/06/2016 08:24:02 PM,02/06/2016 08:35:04 PM,Code 2 Transport,02/06/2016 09:18:51 PM,400 Block of PARIS ST,San Francisco,94112,B09,43,6126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7215760816833, -122.434936472806)",160373484-PT204 +133010301,KM06,13102376,Medical Incident,10/28/2013,10/28/2013,10/28/2013 04:38:20 PM,10/28/2013 04:40:18 PM,10/28/2013 04:40:45 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,04/25/2016 01:50:02 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",133010301-KM06 +112050146,T03,11067706,Structure Fire,07/24/2011,07/24/2011,07/24/2011 11:17:18 AM,07/24/2011 11:17:18 AM,07/24/2011 11:17:26 AM,07/24/2011 11:17:55 AM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/24/2011 11:20:12 AM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,false,,1,TRUCK,3,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",112050146-T03 +133050103,T05,13103567,Alarms,11/01/2013,10/31/2013,11/01/2013 07:43:57 AM,11/01/2013 07:45:42 AM,11/01/2013 07:46:38 AM,11/01/2013 07:47:24 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 07:51:49 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,Alarm,1,TRUCK,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",133050103-T05 +112010123,KM01,11066221,Medical Incident,07/20/2011,07/20/2011,07/20/2011 09:59:02 AM,07/20/2011 10:00:45 AM,07/20/2011 10:02:25 AM,07/20/2011 10:03:02 AM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/20/2011 10:05:00 AM,PARNASSUS AV/SHRADER ST,SF,94117,B05,12,5161,3,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7646823660448, -122.451213061284)",112010123-KM01 +102840016,E05,10090276,Medical Incident,10/11/2010,10/10/2010,10/11/2010 01:33:02 AM,10/11/2010 01:34:39 AM,10/11/2010 01:34:52 AM,10/11/2010 01:36:32 AM,10/11/2010 01:38:43 AM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/11/2010 01:47:07 AM,700 Block of GOUGH ST,SF,94102,B02,5,3263,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.780133899851, -122.42370447487)",102840016-E05 +131570073,B06,13053146,Structure Fire,06/06/2013,06/05/2013,06/06/2013 07:27:34 AM,06/06/2013 07:27:34 AM,06/06/2013 07:27:55 AM,06/06/2013 07:29:00 AM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/06/2013 08:10:17 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,556,3,3,3,false,Alarm,1,CHIEF,3,6,9,Mission,"(37.7597015509874, -122.414696971308)",131570073-B06 +160841360,AM02,16033332,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:36:15 AM,03/24/2016 10:39:02 AM,03/24/2016 10:39:26 AM,03/24/2016 10:40:03 AM,03/24/2016 10:42:32 AM,03/24/2016 11:05:55 AM,03/24/2016 11:35:41 AM,Code 3 Transport,03/24/2016 12:03:52 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160841360-AM02 +140450058,AM16,14015216,Medical Incident,02/14/2014,02/13/2014,02/14/2014 06:18:07 AM,02/14/2014 06:18:08 AM,02/14/2014 06:18:08 AM,02/14/2014 06:18:45 AM,02/14/2014 06:18:08 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 06:26:42 AM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",140450058-AM16 +160730069,RC1,16028830,Medical Incident,03/13/2016,03/12/2016,03/13/2016 12:25:17 AM,03/13/2016 12:26:21 AM,03/13/2016 12:28:51 AM,03/13/2016 12:30:28 AM,03/13/2016 12:33:04 AM,03/13/2016 12:45:53 AM,03/13/2016 12:51:33 AM,Code 3 Transport,03/13/2016 01:03:20 AM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",160730069-RC1 +122810356,83,12093141,Medical Incident,10/07/2012,10/07/2012,10/07/2012 09:00:17 PM,10/07/2012 09:01:02 PM,10/07/2012 09:01:41 PM,10/07/2012 09:02:52 PM,10/07/2012 09:06:49 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/07/2012 09:14:19 PM,3000 Block of 16TH ST,SF,94103,B04,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7648974062145, -122.421305285009)",122810356-83 +121660244,E03,12055105,Medical Incident,06/14/2012,06/14/2012,06/14/2012 03:05:55 PM,06/14/2012 03:08:03 PM,06/14/2012 03:08:50 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 03:12:38 PM,1500 Block of POLK ST,SF,94109,B04,41,3123,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7910457707698, -122.420711946021)",121660244-E03 +103420035,E03,10109348,Structure Fire,12/08/2010,12/07/2010,12/08/2010 02:17:58 AM,12/08/2010 02:17:59 AM,12/08/2010 02:18:09 AM,12/08/2010 02:19:14 AM,12/08/2010 02:20:59 AM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,Fire,12/08/2010 02:21:44 AM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",103420035-E03 +132300310,85,13077767,Medical Incident,08/18/2013,08/18/2013,08/18/2013 06:54:12 PM,08/18/2013 06:55:20 PM,08/18/2013 06:56:50 PM,04/25/2016 01:51:14 PM,08/18/2013 07:02:05 PM,08/18/2013 07:16:33 PM,08/18/2013 07:29:06 PM,Code 2 Transport,08/18/2013 08:00:11 PM,900 Block of SANSOME ST,SF,94133,B01,13,1213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7988972438755, -122.40239300645)",132300310-85 +132890122,RS1,13098247,Vehicle Fire,10/16/2013,10/16/2013,10/16/2013 10:22:28 AM,10/16/2013 10:24:15 AM,10/16/2013 10:25:59 AM,10/16/2013 10:26:36 AM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 10:28:33 AM,2800 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,false,Fire,1,RESCUE SQUAD,10,4,2,Pacific Heights,"(37.78801561135, -122.441285735387)",132890122-RS1 +132000310,86,13067900,Medical Incident,07/19/2013,07/19/2013,07/19/2013 06:14:17 PM,07/19/2013 06:15:10 PM,07/19/2013 06:23:21 PM,07/19/2013 06:23:33 PM,07/19/2013 06:55:36 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Against Medical Advice,07/19/2013 07:21:14 PM,DRUMM ST/SACRAMENTO ST,SF,94111,B01,13,1115,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7945882147944, -122.396585912894)",132000310-86 +160590047,AM16,16023337,Medical Incident,02/28/2016,02/27/2016,02/28/2016 12:17:29 AM,02/28/2016 12:17:29 AM,02/28/2016 12:18:05 AM,02/28/2016 12:18:40 AM,02/28/2016 12:22:02 AM,02/28/2016 12:46:27 AM,02/28/2016 01:01:11 AM,Code 2 Transport,02/28/2016 01:18:12 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160590047-AM16 +132230095,77,13075249,Medical Incident,08/11/2013,08/10/2013,08/11/2013 06:56:56 AM,08/11/2013 06:56:57 AM,08/11/2013 06:58:41 AM,08/11/2013 06:59:03 AM,08/11/2013 07:14:45 AM,08/11/2013 07:14:49 AM,08/11/2013 07:28:21 AM,Code 2 Transport,08/11/2013 07:53:09 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132230095-77 +102340053,72,10073517,Medical Incident,08/22/2010,08/21/2010,08/22/2010 04:01:01 AM,08/22/2010 04:01:51 AM,08/22/2010 04:02:03 AM,08/22/2010 04:02:45 AM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 04:08:01 AM,NEW MONTGOMERY ST/MISSION ST,SF,94105,B03,1,2145,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",102340053-72 +102830039,66,10089950,Medical Incident,10/10/2010,10/09/2010,10/10/2010 02:46:37 AM,10/10/2010 02:47:30 AM,10/10/2010 02:47:40 AM,10/10/2010 03:07:04 AM,10/10/2010 03:13:50 AM,10/10/2010 03:29:05 AM,10/10/2010 03:35:34 AM,Code 2 Transport,10/10/2010 03:53:51 AM,600 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7871900467437, -122.40093111397)",102830039-66 +110590195,87,11019393,Medical Incident,02/28/2011,02/28/2011,02/28/2011 02:20:33 PM,02/28/2011 02:20:59 PM,02/28/2011 02:21:16 PM,02/28/2011 02:21:44 PM,02/28/2011 02:29:12 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Gone on Arrival,02/28/2011 02:30:13 PM,JERROLD AV/3RD ST,SF,94124,B10,25,6467,3,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7387419299442, -122.389310056266)",110590195-87 +113060040,E01,11101547,Medical Incident,11/02/2011,11/01/2011,11/02/2011 05:24:32 AM,11/02/2011 05:26:51 AM,11/02/2011 05:27:16 AM,11/02/2011 05:29:53 AM,11/02/2011 05:32:34 AM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 05:32:41 AM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",113060040-E01 +160550212,75,16021853,Medical Incident,02/24/2016,02/23/2016,02/24/2016 02:25:09 AM,02/24/2016 02:26:34 AM,02/24/2016 02:26:45 AM,02/24/2016 02:27:15 AM,02/24/2016 02:31:18 AM,02/24/2016 02:47:38 AM,02/24/2016 03:00:22 AM,Code 2 Transport,02/24/2016 04:04:38 AM,2700 Block of TURK BLVD,San Francisco,94118,B05,21,4565,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.7780541111609, -122.451088072707)",160550212-75 +111020260,76,11033887,Water Rescue,04/12/2011,04/12/2011,04/12/2011 04:08:20 PM,04/12/2011 04:08:53 PM,04/12/2011 04:09:54 PM,04/12/2011 04:10:06 PM,04/12/2011 04:16:43 PM,04/12/2011 05:13:07 PM,04/12/2011 05:31:07 PM,Other,04/12/2011 06:08:07 PM,900 Block of 3RD ST,SF,94158,B03,8,946,3,3,3,true,,1,MEDIC,4,None,6,None,"(37.7765531472403, -122.390007762623)",111020260-76 +122700136,78,12089085,Medical Incident,09/26/2012,09/26/2012,09/26/2012 11:48:15 AM,09/26/2012 11:49:20 AM,09/26/2012 11:52:38 AM,09/26/2012 11:52:47 AM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,04/25/2016 01:56:36 PM,0 Block of WESTGATE DR,SF,94127,B09,15,8454,2,2,2,true,Non Life-threatening,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7278623231722, -122.466055833848)",122700136-78 +160570866,KM13,16022667,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:52:28 AM,02/26/2016 08:53:15 AM,02/26/2016 08:53:33 AM,02/26/2016 08:53:59 AM,02/26/2016 09:24:43 AM,02/26/2016 09:42:17 AM,02/26/2016 10:06:52 AM,Code 2 Transport,02/26/2016 10:33:00 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160570866-KM13 +160843907,E23,16033555,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:03:56 PM,03/24/2016 09:04:18 PM,03/24/2016 09:04:43 PM,03/24/2016 09:05:59 PM,03/24/2016 09:11:23 PM,03/24/2016 09:30:07 PM,03/24/2016 09:37:35 PM,Code 3 Transport,03/24/2016 10:05:43 PM,2100 Block of 30TH AVE,San Francisco,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7471894211891, -122.487870230981)",160843907-E23 +120010350,82,12000301,Medical Incident,01/01/2012,01/01/2012,01/01/2012 09:25:19 AM,01/01/2012 09:25:54 AM,01/01/2012 09:27:08 AM,01/01/2012 09:42:48 AM,04/25/2016 02:00:51 PM,01/01/2012 10:10:11 AM,01/01/2012 10:29:30 AM,Code 2 Transport,01/01/2012 10:57:43 AM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,2,2,false,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",120010350-82 +160040749,KM09,16001501,Medical Incident,01/04/2016,01/04/2016,01/04/2016 08:15:31 AM,01/04/2016 08:15:31 AM,01/04/2016 08:19:38 AM,01/04/2016 08:22:20 AM,01/04/2016 08:32:12 AM,01/04/2016 08:49:33 AM,01/04/2016 09:04:51 AM,Code 2 Transport,01/04/2016 09:40:23 AM,JEFFERSON ST/LEAVENWORTH ST,San Francisco,94109,B01,28,947,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",160040749-KM09 +160153714,85,16006169,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:12:16 PM,01/15/2016 09:14:13 PM,01/15/2016 09:15:34 PM,01/15/2016 09:18:38 PM,01/15/2016 09:33:20 PM,01/15/2016 09:33:22 PM,01/15/2016 09:58:48 PM,Code 2 Transport,01/15/2016 10:53:52 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160153714-85 +122380255,RC2,12078903,Medical Incident,08/25/2012,08/25/2012,08/25/2012 06:20:12 PM,08/25/2012 06:23:16 PM,08/25/2012 06:23:45 PM,08/25/2012 06:24:31 PM,08/25/2012 06:29:21 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 06:30:46 PM,9TH AV/JUDAH ST,SF,94122,B08,22,7334,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,5,Inner Sunset,"(37.7621750437096, -122.466180554463)",122380255-RC2 +123380401,B04,12112882,Alarms,12/03/2012,12/03/2012,12/03/2012 10:10:28 PM,12/03/2012 10:11:48 PM,12/03/2012 10:11:59 PM,12/03/2012 10:13:15 PM,12/03/2012 10:15:02 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/03/2012 10:23:25 PM,1800 Block of CLAY ST,SF,94109,B04,41,3154,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7921242439152, -122.423528289583)",123380401-B04 +102600016,64,10082027,Medical Incident,09/17/2010,09/16/2010,09/17/2010 01:15:10 AM,09/17/2010 01:15:48 AM,09/17/2010 01:16:04 AM,09/17/2010 01:16:58 AM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,No Merit,09/17/2010 01:30:03 AM,3RD ST/PAUL AV,SF,94124,B10,44,6544,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7224316058888, -122.395622760595)",102600016-64 +130700384,94,13023513,Medical Incident,03/11/2013,03/11/2013,03/11/2013 08:34:30 PM,03/11/2013 08:36:29 PM,03/11/2013 08:36:54 PM,03/11/2013 08:37:02 PM,03/11/2013 08:39:46 PM,03/11/2013 08:59:08 PM,03/11/2013 09:08:27 PM,Code 2 Transport,03/11/2013 09:45:08 PM,800 Block of ELLIS ST,SF,94109,B02,3,3115,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",130700384-94 +160283838,58,16011255,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:48:02 PM,01/28/2016 09:48:02 PM,01/28/2016 09:50:36 PM,01/28/2016 09:50:48 PM,01/28/2016 09:51:24 PM,01/28/2016 09:59:22 PM,01/28/2016 10:13:07 PM,Code 2 Transport,01/28/2016 10:58:52 PM,1800 Block of BUCHANAN ST,San Francisco,94115,B04,38,3433,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7869636391059, -122.430141994439)",160283838-58 +132730235,AM02,13092806,Medical Incident,09/30/2013,09/30/2013,09/30/2013 02:08:22 PM,09/30/2013 02:09:07 PM,09/30/2013 02:09:21 PM,09/30/2013 02:09:58 PM,09/30/2013 02:13:53 PM,09/30/2013 02:29:32 PM,09/30/2013 02:44:50 PM,Code 2 Transport,09/30/2013 03:15:59 PM,1000 Block of NEWHALL ST,SF,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7378858878982, -122.390296258832)",132730235-AM02 +131220005,87,13040861,Medical Incident,05/02/2013,05/01/2013,05/02/2013 12:04:52 AM,05/02/2013 12:05:56 AM,05/02/2013 12:06:25 AM,05/02/2013 12:10:21 AM,05/02/2013 12:11:50 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Medical Examiner,05/02/2013 01:01:04 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,E,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7980497141877, -122.406829909619)",131220005-87 +113010417,T06,11100030,Medical Incident,10/28/2011,10/28/2011,10/28/2011 11:20:55 PM,10/28/2011 11:21:52 PM,10/28/2011 11:22:04 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/28/2011 11:22:05 PM,200 Block of CASTRO ST,SF,94114,B05,6,5232,3,3,3,false,,1,TRUCK,4,5,8,Castro/Upper Market,"(37.7653228296334, -122.435502831181)",113010417-T06 +160491395,88,16019705,Medical Incident,02/18/2016,02/18/2016,02/18/2016 11:25:48 AM,02/18/2016 11:25:48 AM,02/18/2016 11:25:56 AM,02/18/2016 11:26:02 AM,02/18/2016 11:30:13 AM,02/18/2016 11:46:17 AM,02/18/2016 12:00:35 PM,Code 2 Transport,02/18/2016 12:30:21 PM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7173197736494, -122.434883626306)",160491395-88 +160823853,AM20,16032757,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:50:56 PM,03/22/2016 09:51:45 PM,03/22/2016 09:52:33 PM,03/22/2016 09:53:12 PM,03/22/2016 09:58:07 PM,03/22/2016 10:16:14 PM,03/22/2016 10:24:30 PM,Code 2 Transport,03/22/2016 11:01:46 PM,1500 Block of ORTEGA ST,San Francisco,94116,B08,18,7445,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7521561458521, -122.480089382952)",160823853-AM20 +110010114,T08,11000094,Medical Incident,01/01/2011,12/31/2010,01/01/2011 01:36:30 AM,01/01/2011 01:36:33 AM,01/01/2011 02:01:37 AM,01/01/2011 02:04:52 AM,01/01/2011 02:08:50 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 02:19:46 AM,800 Block of BRANNAN ST,SF,94103,B03,29,2325,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7722126507146, -122.404363751305)",110010114-T08 +110400249,E36,11013291,Medical Incident,02/09/2011,02/09/2011,02/09/2011 03:08:34 PM,02/09/2011 03:10:59 PM,02/09/2011 03:11:37 PM,02/09/2011 03:13:49 PM,02/09/2011 03:17:07 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 03:26:50 PM,500 Block of MINNA ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7791823933462, -122.409793939547)",110400249-E36 +110130273,T15,11004390,Structure Fire,01/13/2011,01/13/2011,01/13/2011 04:13:47 PM,01/13/2011 04:13:47 PM,01/13/2011 04:14:03 PM,01/13/2011 04:15:01 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Other,01/13/2011 04:21:21 PM,MISSION ST/BRAZIL AV,SF,94112,B09,43,6117,3,3,3,false,,1,TRUCK,2,9,11,Outer Mission,"(37.724682555301, -122.434798413615)",110130273-T15 +110560046,E08,11018340,Medical Incident,02/25/2011,02/24/2011,02/25/2011 05:32:41 AM,02/25/2011 05:34:51 AM,02/25/2011 05:35:24 AM,02/25/2011 05:37:00 AM,02/25/2011 05:40:26 AM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 05:43:41 AM,400 Block of HARRISON ST,SF,94105,B03,35,2136,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7864554404625, -122.392543645789)",110560046-E08 +160771360,54,16030527,Medical Incident,03/17/2016,03/17/2016,03/17/2016 10:48:59 AM,03/17/2016 10:50:30 AM,03/17/2016 10:51:13 AM,03/17/2016 10:51:32 AM,03/17/2016 11:02:49 AM,03/17/2016 11:32:24 AM,03/17/2016 11:54:17 AM,Code 2 Transport,03/17/2016 12:45:25 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160771360-54 +160810710,71,16032083,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:18:39 AM,03/21/2016 08:20:37 AM,03/21/2016 08:20:59 AM,03/21/2016 08:21:08 AM,03/21/2016 08:28:01 AM,03/21/2016 08:37:39 AM,03/21/2016 08:58:58 AM,Code 3 Transport,03/21/2016 09:48:46 AM,1600 Block of 35TH AVE,San Francisco,94122,B08,18,7562,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7562840764118, -122.493745024084)",160810710-71 +102950201,57,10094098,Medical Incident,10/22/2010,10/22/2010,10/22/2010 12:45:44 PM,10/22/2010 12:45:44 PM,10/22/2010 12:45:44 PM,04/25/2016 02:07:59 PM,10/22/2010 01:01:27 PM,10/22/2010 01:15:24 PM,10/22/2010 01:34:55 PM,Code 2 Transport,10/22/2010 01:36:25 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",102950201-57 +132490126,E03,13083980,Traffic Collision,09/06/2013,09/06/2013,09/06/2013 10:46:08 AM,09/06/2013 10:46:56 AM,09/06/2013 10:47:11 AM,09/06/2013 10:49:11 AM,09/06/2013 10:51:56 AM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/06/2013 11:02:46 AM,JONES ST/GOLDEN GATE AV,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",132490126-E03 +102900098,RC1,10092448,Structure Fire,10/17/2010,10/17/2010,10/17/2010 08:32:14 AM,10/17/2010 08:33:55 AM,10/17/2010 08:34:07 AM,10/17/2010 08:42:30 AM,10/17/2010 08:43:49 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 10:08:57 AM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,2,RESCUE CAPTAIN,10,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",102900098-RC1 +123580013,E03,12119699,Alarms,12/23/2012,12/22/2012,12/23/2012 01:15:58 AM,12/23/2012 01:17:29 AM,12/23/2012 01:17:46 AM,12/23/2012 01:18:51 AM,12/23/2012 01:20:38 AM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 01:26:37 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",123580013-E03 +131600206,E01,13054373,Medical Incident,06/09/2013,06/09/2013,06/09/2013 02:41:35 PM,06/09/2013 02:43:39 PM,06/09/2013 02:43:54 PM,06/09/2013 02:44:25 PM,06/09/2013 02:49:05 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 02:52:11 PM,4TH ST/MISSION ST,SF,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",131600206-E01 +120940003,E05,12031001,Medical Incident,04/03/2012,04/02/2012,04/03/2012 12:10:50 AM,04/03/2012 12:12:00 AM,04/03/2012 12:12:28 AM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,04/03/2012 12:25:49 AM,04/25/2016 01:59:21 PM,Other,04/03/2012 12:13:26 AM,1000 Block of MCALLISTER ST,SF,94102,B02,5,3425,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",120940003-E05 +131350258,E18,13045608,Structure Fire,05/15/2013,05/15/2013,05/15/2013 03:39:33 PM,05/15/2013 03:39:33 PM,05/15/2013 03:39:40 PM,05/15/2013 03:40:35 PM,05/15/2013 03:43:16 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 03:43:28 PM,41ST AV/NORIEGA ST,SF,94122,B08,18,7633,3,3,3,true,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7532010612329, -122.500044865619)",131350258-E18 +160291608,85,16011438,Medical Incident,01/29/2016,01/29/2016,01/29/2016 12:34:54 PM,01/29/2016 12:37:41 PM,01/29/2016 12:38:08 PM,01/29/2016 12:38:31 PM,01/29/2016 12:51:38 PM,01/29/2016 01:09:09 PM,01/29/2016 01:21:45 PM,Code 2 Transport,01/29/2016 01:56:01 PM,600 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.78147394156, -122.42068958116)",160291608-85 +132900179,83,13098628,Medical Incident,10/17/2013,10/17/2013,10/17/2013 11:44:41 AM,10/17/2013 11:45:49 AM,10/17/2013 11:46:23 AM,10/17/2013 11:46:53 AM,10/17/2013 11:51:46 AM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,No Merit,10/17/2013 11:59:22 AM,700 Block of 18TH AVE,SF,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",132900179-83 +103040270,E08,10097196,Water Rescue,10/31/2010,10/31/2010,10/31/2010 03:55:53 PM,10/31/2010 03:55:57 PM,10/31/2010 03:57:51 PM,10/31/2010 03:59:37 PM,10/31/2010 04:02:31 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 04:07:01 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,E,E,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8081576930541, -122.412496867032)",103040270-E08 +121810340,E02,12060404,Medical Incident,06/29/2012,06/29/2012,06/29/2012 09:01:30 PM,06/29/2012 09:03:12 PM,06/29/2012 09:03:43 PM,06/29/2012 09:04:13 PM,06/29/2012 09:06:06 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 09:13:06 PM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7983830790911, -122.407521730924)",121810340-E02 +132860344,E06,13097417,Structure Fire,10/13/2013,10/13/2013,10/13/2013 08:39:04 PM,10/13/2013 08:39:29 PM,10/13/2013 08:39:46 PM,10/13/2013 08:41:26 PM,10/13/2013 08:43:11 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/13/2013 08:58:09 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,4,2,6,Mission,"(37.7740948566882, -122.420001436964)",132860344-E06 +140870029,T06,14029149,Structure Fire,03/28/2014,03/27/2014,03/28/2014 03:23:56 AM,03/28/2014 03:27:24 AM,03/28/2014 03:27:49 AM,03/28/2014 03:29:53 AM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Fire,03/28/2014 03:35:26 AM,1800 Block of FOLSOM ST,SAN FRANCISCO,94103,B02,7,5216,3,3,3,false,Alarm,1,TRUCK,9,2,9,Mission,"(37.7677331022924, -122.415606951318)",140870029-T06 +113490072,99,11115726,Medical Incident,12/15/2011,12/15/2011,12/15/2011 08:58:29 AM,12/15/2011 08:59:44 AM,12/15/2011 09:00:03 AM,04/25/2016 02:01:09 PM,12/15/2011 09:03:50 AM,12/15/2011 09:38:42 AM,12/15/2011 09:51:50 AM,Code 2 Transport,12/15/2011 10:35:42 AM,1200 Block of TREAT AVE,SF,94110,B06,7,5533,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7501648383073, -122.412831855469)",113490072-99 +102400033,E41,10075583,Structure Fire,08/28/2010,08/27/2010,08/28/2010 02:21:41 AM,08/28/2010 02:22:24 AM,08/28/2010 02:22:34 AM,08/28/2010 02:23:26 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Other,08/28/2010 02:39:41 AM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,false,,1,ENGINE,10,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",102400033-E41 +110080140,E02,11002641,Alarms,01/08/2011,01/08/2011,01/08/2011 11:15:11 AM,01/08/2011 11:16:15 AM,01/08/2011 11:16:21 AM,01/08/2011 11:17:25 AM,01/08/2011 11:18:34 AM,04/25/2016 02:06:42 PM,04/25/2016 02:06:42 PM,Other,01/08/2011 11:24:38 AM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",110080140-E02 +133390031,82,13114762,Medical Incident,12/05/2013,12/04/2013,12/05/2013 02:08:51 AM,12/05/2013 02:12:04 AM,12/05/2013 02:13:25 AM,12/05/2013 02:13:34 AM,12/05/2013 02:18:02 AM,12/05/2013 02:41:58 AM,12/05/2013 03:03:47 AM,Code 2 Transport,12/05/2013 03:30:38 AM,300 Block of MCALLISTER ST,SF,94102,B02,3,3113,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7804194722111, -122.417784021678)",133390031-82 +160201141,KM11,16007960,Medical Incident,01/20/2016,01/20/2016,01/20/2016 09:53:40 AM,01/20/2016 09:55:04 AM,01/20/2016 09:55:50 AM,01/20/2016 09:56:43 AM,01/20/2016 10:12:41 AM,01/20/2016 10:27:20 AM,01/20/2016 10:34:09 AM,Code 2 Transport,01/20/2016 11:11:41 AM,1400 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",160201141-KM11 +160810829,79,16032089,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:52:10 AM,03/21/2016 08:52:10 AM,03/21/2016 08:52:32 AM,03/21/2016 08:52:37 AM,03/21/2016 09:07:27 AM,03/21/2016 09:20:10 AM,03/21/2016 09:35:49 AM,Code 2 Transport,03/21/2016 10:06:18 AM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",160810829-79 +93250246,B01,9098517,Alarms,11/21/2009,11/21/2009,11/21/2009 06:31:43 PM,11/21/2009 06:32:43 PM,11/21/2009 06:32:51 PM,11/21/2009 06:33:45 PM,11/21/2009 06:37:03 PM,04/25/2016 03:25:55 PM,04/25/2016 03:25:55 PM,Other,11/21/2009 06:40:20 PM,600 Block of SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",093250246-B01 +130050073,E14,13001636,Medical Incident,01/05/2013,01/04/2013,01/05/2013 06:01:05 AM,01/05/2013 06:02:33 AM,01/05/2013 06:03:15 AM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/05/2013 06:05:24 AM,700 Block of 31ST AVE,SF,94121,B07,14,7242,3,1,2,true,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7750790401889, -122.490749997534)",130050073-E14 +131360455,E03,13046107,Medical Incident,05/16/2013,05/16/2013,05/16/2013 11:22:55 PM,05/16/2013 11:24:14 PM,05/16/2013 11:25:01 PM,04/25/2016 01:52:46 PM,05/16/2013 11:26:53 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 11:34:37 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",131360455-E03 +160220293,KM03,16008640,Medical Incident,01/22/2016,01/21/2016,01/22/2016 03:07:24 AM,01/22/2016 03:09:43 AM,01/22/2016 03:10:00 AM,01/22/2016 03:10:34 AM,01/22/2016 03:17:04 AM,01/22/2016 03:35:27 AM,01/22/2016 04:00:46 AM,Code 2 Transport,01/22/2016 04:41:51 AM,1700 Block of 46TH AVE,San Francisco,94122,B08,23,7716,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7538946461848, -122.505539190392)",160220293-KM03 +102740307,AM14,10087106,Medical Incident,10/01/2010,10/01/2010,10/01/2010 06:32:02 PM,10/01/2010 06:32:02 PM,10/01/2010 06:34:16 PM,10/01/2010 06:35:11 PM,10/01/2010 06:35:18 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Against Medical Advice,10/01/2010 07:18:35 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",102740307-AM14 +112020381,B01,11066801,Alarms,07/21/2011,07/21/2011,07/21/2011 07:55:51 PM,07/21/2011 07:57:05 PM,07/21/2011 07:57:35 PM,07/21/2011 07:58:50 PM,07/21/2011 08:04:07 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Fire,07/21/2011 08:05:29 PM,700 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,,1,CHIEF,3,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",112020381-B01 +160210474,AM02,16008256,Medical Incident,01/21/2016,01/20/2016,01/21/2016 05:43:58 AM,01/21/2016 05:45:57 AM,01/21/2016 05:46:35 AM,01/21/2016 05:50:41 AM,01/21/2016 05:50:41 AM,01/21/2016 06:12:40 AM,01/21/2016 06:24:14 AM,Code 2 Transport,01/21/2016 06:58:51 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160210474-AM02 +140910059,E14,14030510,Citizen Assist / Service Call,04/01/2014,04/01/2014,04/01/2014 08:19:46 AM,04/01/2014 08:20:24 AM,04/01/2014 08:20:45 AM,04/01/2014 08:21:39 AM,04/01/2014 08:27:53 AM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,No Merit,04/01/2014 09:14:24 AM,0 Block of WEST CLAY ST,SAN FRANCISCO,94121,B07,14,7174,3,3,3,true,Alarm,1,ENGINE,1,7,2,Seacliff,"(37.7866682483222, -122.483103396659)",140910059-E14 +130660088,E01,13021965,Medical Incident,03/07/2013,03/07/2013,03/07/2013 08:07:05 AM,03/07/2013 08:08:57 AM,03/07/2013 08:09:28 AM,03/07/2013 08:11:45 AM,03/07/2013 08:15:07 AM,04/25/2016 01:53:57 PM,04/25/2016 01:53:57 PM,Other,03/07/2013 08:24:43 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",130660088-E01 +160063539,91,16002603,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:29:42 PM,01/06/2016 09:30:56 PM,01/06/2016 09:31:14 PM,01/06/2016 09:32:07 PM,01/06/2016 09:39:56 PM,01/06/2016 09:50:01 PM,01/06/2016 10:05:43 PM,Code 2 Transport,01/06/2016 10:55:46 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160063539-91 +111820051,E03,11059961,Structure Fire,07/01/2011,06/30/2011,07/01/2011 05:45:07 AM,07/01/2011 05:45:07 AM,07/01/2011 05:45:52 AM,07/01/2011 05:47:16 AM,07/01/2011 05:48:16 AM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,Other,07/01/2011 05:48:38 AM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",111820051-E03 +160113717,53,16004589,Medical Incident,01/11/2016,01/11/2016,01/11/2016 11:18:55 PM,01/11/2016 11:22:57 PM,01/11/2016 11:24:07 PM,01/11/2016 11:24:17 PM,01/11/2016 11:59:32 PM,01/11/2016 11:59:36 PM,01/12/2016 12:10:52 AM,Code 2 Transport,01/12/2016 01:15:36 AM,0 Block of CORWIN ST,San Francisco,94114,B06,24,5463,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Twin Peaks,"(37.7570531323914, -122.439618182524)",160113717-53 +160901451,AM02,16035681,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:07:06 AM,03/30/2016 11:09:07 AM,03/30/2016 11:09:45 AM,03/30/2016 11:10:09 AM,03/30/2016 11:18:56 AM,03/30/2016 11:30:50 AM,03/30/2016 11:38:45 AM,Code 2 Transport,03/30/2016 11:58:48 AM,1100 Block of STOCKTON ST,San Francisco,94133,B01,2,1332,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7962724916031, -122.408273698283)",160901451-AM02 +131140208,E17,13038458,Medical Incident,04/24/2013,04/24/2013,04/24/2013 01:50:40 PM,04/24/2013 01:52:14 PM,04/24/2013 02:04:05 PM,04/24/2013 02:05:24 PM,04/24/2013 02:07:15 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 02:22:35 PM,1600 Block of WALLACE AVE,SF,94124,B10,17,6546,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7280277124346, -122.391963404098)",131140208-E17 +133610238,75,13122721,Traffic Collision,12/27/2013,12/27/2013,12/27/2013 05:03:10 PM,12/27/2013 05:04:21 PM,12/27/2013 05:04:50 PM,12/27/2013 05:05:29 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 05:08:16 PM,7TH ST/TOWNSEND ST,SF,94107,B03,29,2275,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7718171244689, -122.401656683321)",133610238-75 +121440274,T17,12047904,Structure Fire,05/23/2012,05/23/2012,05/23/2012 06:55:14 PM,05/23/2012 06:55:14 PM,05/23/2012 06:55:23 PM,05/23/2012 06:56:45 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Other,05/23/2012 06:58:33 PM,INGALLS ST/DONNER AV,SF,94124,B10,17,6615,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7222249464794, -122.390183077962)",121440274-T17 +122120234,E31,12070405,Alarms,07/30/2012,07/30/2012,07/30/2012 02:52:02 PM,07/30/2012 02:53:29 PM,07/30/2012 02:53:56 PM,07/30/2012 02:55:27 PM,07/30/2012 02:57:29 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 03:00:41 PM,3800 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Alarm,1,ENGINE,2,7,1,Inner Richmond,"(37.7810653248447, -122.460519276842)",122120234-E31 +102990209,E03,10095479,Alarms,10/26/2010,10/26/2010,10/26/2010 01:38:04 PM,10/26/2010 01:38:04 PM,10/26/2010 01:38:31 PM,10/26/2010 01:39:04 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 01:39:18 PM,900 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,4,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",102990209-E03 +112620431,E21,11086662,Medical Incident,09/19/2011,09/19/2011,09/19/2011 10:51:31 PM,09/19/2011 10:52:58 PM,09/19/2011 10:53:38 PM,09/19/2011 10:55:42 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 10:56:12 PM,1300 Block of HAIGHT ST,SF,94117,B05,21,4466,3,3,3,false,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7703725071371, -122.444508010123)",112620431-E21 +122850233,57,12094305,Medical Incident,10/11/2012,10/11/2012,10/11/2012 03:09:16 PM,10/11/2012 03:11:50 PM,10/11/2012 03:13:12 PM,10/11/2012 03:14:00 PM,10/11/2012 03:38:08 PM,04/25/2016 01:56:21 PM,10/11/2012 04:01:26 PM,Code 2 Transport,10/11/2012 04:33:34 PM,1600 Block of MARKET ST,SF,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7741119199673, -122.420387092418)",122850233-57 +160063211,AM18,16002562,Medical Incident,01/06/2016,01/06/2016,01/06/2016 07:27:05 PM,01/06/2016 07:28:06 PM,01/06/2016 07:28:45 PM,01/06/2016 07:29:06 PM,01/06/2016 07:34:23 PM,01/06/2016 07:56:26 PM,01/06/2016 08:00:51 PM,Code 2 Transport,01/06/2016 08:32:40 PM,0 Block of PARAMOUNT TER,San Francisco,94118,B07,21,4556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Lone Mountain/USF,"(37.7762141292275, -122.455392870939)",160063211-AM18 +132980207,77,13101216,Medical Incident,10/25/2013,10/25/2013,10/25/2013 01:45:40 PM,10/25/2013 01:46:55 PM,10/25/2013 01:47:33 PM,10/25/2013 01:48:26 PM,10/25/2013 02:03:49 PM,10/25/2013 02:04:05 PM,10/25/2013 02:17:58 PM,Code 2 Transport,10/25/2013 02:42:20 PM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",132980207-77 +160250151,61,16009752,Medical Incident,01/25/2016,01/24/2016,01/25/2016 01:22:16 AM,01/25/2016 01:24:59 AM,01/25/2016 01:25:39 AM,01/25/2016 01:25:50 AM,01/25/2016 01:32:51 AM,01/25/2016 01:43:33 AM,01/25/2016 01:54:28 AM,Code 2 Transport,01/25/2016 02:35:32 AM,200 Block of SANSOME ST,San Francisco,94104,B01,13,1165,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.792575613742, -122.401098046872)",160250151-61 +130950084,E21,13031725,Medical Incident,04/05/2013,04/04/2013,04/05/2013 07:56:01 AM,04/05/2013 07:57:16 AM,04/05/2013 07:57:37 AM,04/05/2013 07:59:13 AM,04/05/2013 08:01:01 AM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,Other,04/05/2013 08:36:14 AM,300 Block of BAKER ST,SF,94117,B05,21,4252,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",130950084-E21 +140240379,E36,14008343,Outside Fire,01/24/2014,01/24/2014,01/24/2014 07:57:26 PM,01/24/2014 07:59:56 PM,01/24/2014 08:00:06 PM,04/25/2016 01:48:33 PM,01/24/2014 08:04:44 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Fire,01/24/2014 08:10:14 PM,13TH ST/HARRISON ST,SF,94103,B02,36,5112,3,3,3,true,Fire,1,ENGINE,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",140240379-E36 +160591781,85,16023536,Medical Incident,02/28/2016,02/28/2016,02/28/2016 02:02:02 PM,02/28/2016 02:03:51 PM,02/28/2016 02:04:15 PM,02/28/2016 02:05:00 PM,02/28/2016 02:10:54 PM,02/28/2016 02:29:08 PM,02/28/2016 02:32:18 PM,Code 2 Transport,02/28/2016 03:10:47 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160591781-85 +123650327,68,12122253,Medical Incident,12/30/2012,12/30/2012,12/30/2012 09:25:12 PM,12/30/2012 09:27:16 PM,12/30/2012 09:27:33 PM,12/30/2012 09:27:41 PM,12/30/2012 09:31:02 PM,04/25/2016 01:55:03 PM,04/25/2016 01:55:03 PM,Unable to Locate,12/30/2012 09:39:40 PM,500 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",123650327-68 +103350362,93,10107334,Medical Incident,12/01/2010,12/01/2010,12/01/2010 11:07:34 PM,12/01/2010 11:08:13 PM,12/01/2010 11:08:43 PM,12/01/2010 11:11:00 PM,12/01/2010 11:19:39 PM,12/01/2010 11:27:46 PM,12/01/2010 11:34:54 PM,Code 3 Transport,12/01/2010 11:49:46 PM,0 Block of TURNER TER,SF,94107,B10,37,2542,3,2,2,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7566399872109, -122.395114989)",103350362-93 +160731442,77,16028974,Medical Incident,03/13/2016,03/13/2016,03/13/2016 01:40:34 PM,03/13/2016 01:41:20 PM,03/13/2016 01:41:39 PM,03/13/2016 01:42:05 PM,03/13/2016 01:48:54 PM,03/13/2016 02:03:34 PM,03/13/2016 02:16:02 PM,Code 2 Transport,03/13/2016 02:52:51 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160731442-77 +112960379,E12,11098356,Smoke Investigation (Outside),10/23/2011,10/23/2011,10/23/2011 11:18:41 PM,10/23/2011 11:20:03 PM,10/23/2011 11:20:29 PM,10/23/2011 11:21:49 PM,10/23/2011 11:23:49 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/23/2011 11:37:39 PM,DOWNEY ST/WALLER ST,SF,94117,B05,12,4512,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7689694394914, -122.44756773844)",112960379-E12 +103490252,E19,10111980,Medical Incident,12/15/2010,12/15/2010,12/15/2010 04:47:59 PM,12/15/2010 04:48:48 PM,12/15/2010 04:49:24 PM,12/15/2010 04:49:49 PM,12/15/2010 04:52:12 PM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Other,12/15/2010 05:09:27 PM,100 Block of RIVERTON DR,SF,94132,B08,19,8742,3,3,3,true,,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7315055331837, -122.487033293313)",103490252-E19 +160413587,78,16016637,Medical Incident,02/10/2016,02/10/2016,02/10/2016 08:42:04 PM,02/10/2016 08:44:12 PM,02/10/2016 08:44:33 PM,02/10/2016 08:44:51 PM,02/10/2016 08:57:27 PM,02/10/2016 09:13:53 PM,02/10/2016 09:23:10 PM,Code 2 Transport,02/10/2016 10:05:25 PM,600 Block of PACIFIC AVE,San Francisco,94133,B01,13,1246,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",160413587-78 +130040061,93,13001257,Medical Incident,01/04/2013,01/03/2013,01/04/2013 05:37:19 AM,01/04/2013 05:38:44 AM,01/04/2013 05:39:38 AM,01/04/2013 05:39:54 AM,01/04/2013 05:49:48 AM,01/04/2013 06:00:59 AM,04/25/2016 01:54:58 PM,Code 2 Transport,01/04/2013 06:40:42 AM,0 Block of ESPANOLA ST,SF,94124,B10,17,6641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",130040061-93 +160732564,76,16029078,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:24:41 PM,03/13/2016 07:24:41 PM,03/13/2016 07:25:34 PM,03/13/2016 07:25:41 PM,03/13/2016 07:30:30 PM,03/13/2016 07:39:13 PM,03/13/2016 07:41:18 PM,Code 2 Transport,03/13/2016 08:00:21 PM,1400 Block of BRODERICK ST,San Francisco,94115,B05,10,4235,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,2,Japantown,"(37.7838654796396, -122.441370226887)",160732564-76 +133380171,E12,13114544,Medical Incident,12/04/2013,12/04/2013,12/04/2013 12:52:42 PM,12/04/2013 12:54:38 PM,12/04/2013 12:56:09 PM,12/04/2013 12:58:17 PM,12/04/2013 01:00:47 PM,12/04/2013 01:17:06 PM,12/04/2013 01:23:46 PM,Other,12/04/2013 01:28:18 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",133380171-E12 +132400242,T06,13081013,Alarms,08/28/2013,08/28/2013,08/28/2013 04:00:10 PM,08/28/2013 04:01:16 PM,08/28/2013 04:01:28 PM,08/28/2013 04:01:46 PM,08/28/2013 04:03:15 PM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,Other,08/28/2013 04:11:10 PM,200 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,false,Alarm,1,TRUCK,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",132400242-T06 +160153525,AM22,16006155,Medical Incident,01/15/2016,01/15/2016,01/15/2016 08:17:44 PM,01/15/2016 08:20:53 PM,01/15/2016 08:21:19 PM,01/15/2016 08:22:28 PM,01/15/2016 08:25:33 PM,01/15/2016 08:38:55 PM,01/15/2016 08:56:21 PM,Code 2 Transport,01/15/2016 09:20:50 PM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",160153525-AM22 +130890084,T03,13029675,Medical Incident,03/30/2013,03/29/2013,03/30/2013 07:30:21 AM,03/30/2013 07:31:15 AM,03/30/2013 07:31:34 AM,03/30/2013 07:33:53 AM,03/30/2013 07:36:10 AM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 07:38:32 AM,300 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",130890084-T03 +123470382,E03,12116182,Structure Fire,12/12/2012,12/12/2012,12/12/2012 11:00:21 PM,12/12/2012 11:00:21 PM,12/12/2012 11:00:42 PM,12/12/2012 11:01:16 PM,12/12/2012 11:02:50 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Fire,12/12/2012 11:03:09 PM,HYDE ST/ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",123470382-E03 +160030823,63,16001100,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:14:03 AM,01/03/2016 08:15:34 AM,01/03/2016 08:17:04 AM,01/03/2016 08:17:21 AM,01/03/2016 08:32:49 AM,01/03/2016 08:36:53 AM,01/03/2016 08:50:48 AM,Code 2 Transport,01/03/2016 09:28:50 AM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",160030823-63 +130750135,T03,13024989,Alarms,03/16/2013,03/16/2013,03/16/2013 11:23:22 AM,03/16/2013 11:23:22 AM,03/16/2013 11:24:12 AM,03/16/2013 11:25:19 AM,03/16/2013 11:27:45 AM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Fire,03/16/2013 11:28:31 AM,JONES ST/TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",130750135-T03 +160532815,53,16021334,Medical Incident,02/22/2016,02/22/2016,02/22/2016 06:17:43 PM,02/22/2016 06:17:43 PM,02/22/2016 06:19:54 PM,02/22/2016 06:20:27 PM,02/22/2016 06:46:43 PM,02/22/2016 07:00:29 PM,02/22/2016 07:21:43 PM,Code 2 Transport,02/22/2016 07:53:17 PM,WINSTON DR/BUCKINGHAM WY,San Francisco,94132,B08,19,8854,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7282105642636, -122.478697968283)",160532815-53 +130850238,KM01,13028420,Medical Incident,03/26/2013,03/26/2013,03/26/2013 03:35:42 PM,03/26/2013 03:35:59 PM,03/26/2013 03:36:11 PM,03/26/2013 03:36:48 PM,03/26/2013 03:48:16 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Code 2 Transport,03/26/2013 04:29:57 PM,3000 Block of FILLMORE ST,SF,94123,B04,16,3552,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.7975637588622, -122.435515673585)",130850238-KM01 +160241711,65,16009531,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:17:52 PM,01/24/2016 01:19:29 PM,01/24/2016 01:25:47 PM,01/24/2016 01:25:47 PM,01/24/2016 01:25:47 PM,01/24/2016 01:33:18 PM,01/24/2016 01:42:43 PM,Code 2 Transport,01/24/2016 02:18:41 PM,HAYES ST/LARKIN ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7777227510073, -122.416401071795)",160241711-65 +160420247,E03,16016718,Medical Incident,02/11/2016,02/10/2016,02/11/2016 03:02:37 AM,02/11/2016 03:04:24 AM,02/11/2016 03:04:52 AM,02/11/2016 03:06:48 AM,02/11/2016 03:09:31 AM,02/11/2016 03:51:25 AM,02/11/2016 03:59:10 AM,Code 3 Transport,02/11/2016 04:04:27 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160420247-E03 +102580299,E26,10081585,Alarms,09/15/2010,09/15/2010,09/15/2010 05:42:02 PM,09/15/2010 05:43:19 PM,09/15/2010 05:43:50 PM,04/25/2016 02:08:35 PM,09/15/2010 05:45:28 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,Other,09/15/2010 05:55:45 PM,0 Block of ORA WAY,SF,94131,B06,26,8154,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7414004640291, -122.437991835355)",102580299-E26 +110270011,95,11008753,Medical Incident,01/27/2011,01/26/2011,01/27/2011 01:12:35 AM,01/27/2011 01:13:55 AM,01/27/2011 01:14:42 AM,01/27/2011 01:15:31 AM,01/27/2011 01:21:50 AM,01/27/2011 01:28:58 AM,04/25/2016 02:06:24 PM,Code 2 Transport,01/27/2011 02:06:16 AM,200 Block of TALBERT ST,SF,94134,B09,44,6256,1,1,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7088095309172, -122.407183080746)",110270011-95 +110410362,E23,11013716,Medical Incident,02/10/2011,02/10/2011,02/10/2011 08:30:44 PM,02/10/2011 08:31:13 PM,02/10/2011 08:31:34 PM,02/10/2011 08:32:22 PM,02/10/2011 08:33:49 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 08:47:09 PM,1200 Block of 47TH AVE,SF,94122,B08,23,7721,3,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7631738408365, -122.507265410881)",110410362-E23 +132390164,E29,13080609,Medical Incident,08/27/2013,08/27/2013,08/27/2013 11:48:09 AM,08/27/2013 11:51:06 AM,08/27/2013 11:51:31 AM,08/27/2013 11:52:54 AM,08/27/2013 11:56:05 AM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 12:04:11 PM,1000 Block of WISCONSIN ST,SF,94107,B10,37,257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",132390164-E29 +132230325,84,13075445,Medical Incident,08/11/2013,08/11/2013,08/11/2013 09:09:31 PM,08/11/2013 09:11:54 PM,08/11/2013 09:12:03 PM,08/11/2013 09:12:26 PM,08/11/2013 09:16:14 PM,08/11/2013 09:29:08 PM,08/11/2013 09:36:25 PM,Code 2 Transport,08/11/2013 10:19:57 PM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7483773808375, -122.412579951922)",132230325-84 +131100343,E05,13037160,Traffic Collision,04/20/2013,04/20/2013,04/20/2013 07:31:39 PM,04/20/2013 07:32:16 PM,04/20/2013 07:32:29 PM,04/20/2013 07:33:35 PM,04/20/2013 07:36:17 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/20/2013 07:43:10 PM,MARKET ST/GUERRERO ST,SF,94103,B02,36,3416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7707477455746, -122.424852598702)",131100343-E05 +131270250,E26,13042980,Outside Fire,05/07/2013,05/07/2013,05/07/2013 03:38:06 PM,05/07/2013 03:39:25 PM,05/07/2013 03:39:53 PM,05/07/2013 03:40:58 PM,05/07/2013 03:42:21 PM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/07/2013 04:00:03 PM,600 Block of 29TH ST,SF,94131,B06,26,5565,3,3,3,true,Fire,1,ENGINE,1,6,8,Noe Valley,"(37.7433115636918, -122.433975828081)",131270250-E26 +160041057,KM09,16001534,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:45:12 AM,01/04/2016 09:45:32 AM,01/04/2016 09:46:00 AM,01/04/2016 09:48:14 AM,01/04/2016 09:48:14 AM,01/04/2016 10:01:01 AM,01/04/2016 10:08:38 AM,Code 2 Transport,01/04/2016 10:59:36 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160041057-KM09 +160882434,58,16035020,Traffic Collision,03/28/2016,03/28/2016,03/28/2016 03:48:53 PM,03/28/2016 03:48:53 PM,03/28/2016 03:49:00 PM,03/28/2016 03:49:06 PM,03/28/2016 04:12:21 PM,03/28/2016 04:12:23 PM,03/28/2016 04:33:32 PM,Code 2 Transport,03/28/2016 04:58:02 PM,POST ST/KEARNY ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7888944287124, -122.403660676968)",160882434-58 +123580323,E05,12119993,Medical Incident,12/23/2012,12/23/2012,12/23/2012 09:43:50 PM,12/23/2012 09:44:43 PM,12/23/2012 09:45:54 PM,12/23/2012 09:48:00 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/23/2012 09:50:30 PM,400 Block of BAKER ST,SF,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7750273737515, -122.441273561369)",123580323-E05 +160900952,KM06,16035641,Traffic Collision,03/30/2016,03/30/2016,03/30/2016 09:06:07 AM,03/30/2016 09:06:39 AM,03/30/2016 09:07:07 AM,03/30/2016 09:07:12 AM,03/30/2016 09:10:06 AM,03/30/2016 09:20:07 AM,03/30/2016 09:29:53 AM,Code 3 Transport,03/30/2016 11:46:55 AM,VAN NESS AV/VALLEJO ST,San Francisco,94109,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7966910574342, -122.423601299464)",160900952-KM06 +160722950,60,16028732,Medical Incident,03/12/2016,03/12/2016,03/12/2016 07:30:02 PM,03/12/2016 07:31:25 PM,03/12/2016 07:32:35 PM,03/12/2016 07:33:17 PM,03/12/2016 07:40:27 PM,03/12/2016 07:50:20 PM,03/12/2016 08:12:33 PM,Code 2 Transport,03/12/2016 08:45:24 PM,1200 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7246946719388, -122.456499413125)",160722950-60 +160381366,AM06,16015165,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:43:45 AM,02/07/2016 10:45:13 AM,02/07/2016 10:45:44 AM,02/07/2016 10:46:21 AM,02/07/2016 11:02:21 AM,02/07/2016 11:23:42 AM,02/07/2016 11:38:41 AM,Code 2 Transport,02/07/2016 12:11:26 PM,0 Block of 7TH AVE,San Francisco,94118,B07,31,7126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Inner Richmond,"(37.7874397335199, -122.465888456685)",160381366-AM06 +140760340,E15,14025854,Structure Fire,03/17/2014,03/17/2014,03/17/2014 08:03:10 PM,03/17/2014 08:04:00 PM,03/17/2014 08:04:47 PM,03/17/2014 08:06:16 PM,03/17/2014 08:10:30 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Fire,03/17/2014 08:11:02 PM,100 Block of BLYTHDALE AVE,SAN FRANCISCO,94134,B09,43,6244,3,3,3,true,Alarm,1,ENGINE,2,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",140760340-E15 +111260080,RC2,11041619,Traffic Collision,05/06/2011,05/05/2011,05/06/2011 07:51:35 AM,05/06/2011 07:52:43 AM,05/06/2011 07:55:11 AM,04/25/2016 02:04:45 PM,05/06/2011 07:59:07 AM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Patient Declined Transport,05/06/2011 08:12:32 AM,ARGUELLO BL/BALBOA ST,SF,94118,B07,31,7112,3,3,3,true,,1,RESCUE CAPTAIN,2,7,1,Lone Mountain/USF,"(37.777253917962, -122.458580630046)",111260080-RC2 +130480147,E01,13016351,Medical Incident,02/17/2013,02/17/2013,02/17/2013 10:17:39 AM,02/17/2013 10:18:15 AM,02/17/2013 10:18:24 AM,02/17/2013 10:18:49 AM,02/17/2013 10:22:07 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 10:32:49 AM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",130480147-E01 +132340351,93,13079139,Medical Incident,08/22/2013,08/22/2013,08/22/2013 09:59:07 PM,08/22/2013 10:00:42 PM,08/22/2013 10:01:14 PM,08/22/2013 10:01:46 PM,08/22/2013 10:13:18 PM,08/22/2013 10:35:08 PM,08/22/2013 11:09:35 PM,Code 2 Transport,08/22/2013 11:33:07 PM,2800 Block of MISSION ST,SF,94110,B06,11,5529,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",132340351-93 +113010378,E36,11099997,Traffic Collision,10/28/2011,10/28/2011,10/28/2011 09:28:03 PM,10/28/2011 09:28:03 PM,10/28/2011 09:28:08 PM,10/28/2011 09:29:19 PM,10/28/2011 09:30:39 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/28/2011 09:39:38 PM,MISSION ST/OTIS ST,SF,94103,B02,36,5125,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",113010378-E36 +133540182,54,13120257,Structure Fire,12/20/2013,12/20/2013,12/20/2013 11:26:03 AM,12/20/2013 11:28:44 AM,12/20/2013 11:29:09 AM,12/20/2013 11:30:25 AM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/20/2013 11:38:18 AM,300 Block of 10TH AVE,SF,94118,B07,31,7141,3,3,3,true,Alarm,1,MEDIC,7,7,1,Inner Richmond,"(37.7817833010833, -122.468703263759)",133540182-54 +123430361,E07,12114782,Traffic Collision,12/08/2012,12/08/2012,12/08/2012 09:15:45 PM,12/08/2012 09:16:56 PM,12/08/2012 09:19:26 PM,12/08/2012 09:19:58 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,No Merit,12/08/2012 09:22:34 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",123430361-E07 +160121326,52,16004743,Medical Incident,01/12/2016,01/12/2016,01/12/2016 11:01:20 AM,01/12/2016 11:02:57 AM,01/12/2016 11:03:53 AM,01/12/2016 11:04:13 AM,01/12/2016 11:11:05 AM,01/12/2016 11:31:37 AM,01/12/2016 11:51:22 AM,Code 2 Transport,01/12/2016 12:13:48 PM,2800 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6333,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7258169452923, -122.402916975907)",160121326-52 +160510948,55,16020407,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:34:56 AM,02/20/2016 09:35:35 AM,02/20/2016 09:36:08 AM,02/20/2016 09:36:15 AM,02/20/2016 09:54:41 AM,02/20/2016 10:02:30 AM,02/20/2016 10:09:02 AM,Code 2 Transport,02/20/2016 11:07:05 AM,800 Block of CLAYTON ST,San Francisco,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7656141997654, -122.447660896406)",160510948-55 +160282996,71,16011190,Medical Incident,01/28/2016,01/28/2016,01/28/2016 05:42:52 PM,01/28/2016 05:42:52 PM,01/28/2016 05:43:10 PM,01/28/2016 05:43:17 PM,01/28/2016 05:57:42 PM,01/28/2016 06:17:21 PM,01/28/2016 06:22:22 PM,Code 2 Transport,01/28/2016 07:05:33 PM,400 Block of CHURCH ST,San Francisco,94114,B02,6,523,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",160282996-71 +120970056,B01,12032012,Alarms,04/06/2012,04/05/2012,04/06/2012 07:12:23 AM,04/06/2012 07:13:31 AM,04/06/2012 07:13:45 AM,04/06/2012 07:14:57 AM,04/06/2012 07:20:00 AM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 07:22:53 AM,800 Block of BATTERY ST,SF,94111,B01,13,1155,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7990643005082, -122.401077389929)",120970056-B01 +120040234,89,12001447,Medical Incident,01/04/2012,01/04/2012,01/04/2012 03:30:30 PM,01/04/2012 03:31:20 PM,01/04/2012 03:32:22 PM,01/04/2012 03:32:32 PM,01/04/2012 03:36:49 PM,01/04/2012 03:48:52 PM,01/04/2012 04:09:08 PM,Code 2 Transport,01/04/2012 04:22:59 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",120040234-89 +160100705,79,16003942,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:19:32 AM,01/10/2016 07:20:47 AM,01/10/2016 07:21:18 AM,01/10/2016 07:21:52 AM,01/10/2016 07:32:41 AM,01/10/2016 08:15:41 AM,01/10/2016 08:27:43 AM,Code 2 Transport,01/10/2016 09:16:27 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160100705-79 +120830037,B09,12027448,Structure Fire,03/23/2012,03/22/2012,03/23/2012 04:24:36 AM,03/23/2012 04:25:48 AM,03/23/2012 04:26:07 AM,03/23/2012 04:27:40 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 04:30:33 AM,EVANS AV/NAPOLEON ST,SF,94124,B10,9,6422,3,3,3,false,Fire,1,CHIEF,12,10,10,Bayview Hunters Point,"(37.7472623482525, -122.396008614627)",120830037-B09 +160591541,89,16023513,Medical Incident,02/28/2016,02/28/2016,02/28/2016 12:40:27 PM,02/28/2016 12:41:05 PM,02/28/2016 12:41:50 PM,02/28/2016 12:41:57 PM,02/28/2016 12:43:18 PM,02/28/2016 12:53:42 PM,02/28/2016 12:58:58 PM,Code 2 Transport,02/28/2016 01:35:53 PM,MARKET ST/6TH ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160591541-89 +131140192,E15,13038445,Medical Incident,04/24/2013,04/24/2013,04/24/2013 01:10:25 PM,04/24/2013 01:10:50 PM,04/24/2013 01:17:34 PM,04/25/2016 01:53:08 PM,04/24/2013 01:17:34 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 01:29:27 PM,400 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7144912745705, -122.455997573047)",131140192-E15 +103480166,E16,10111576,Structure Fire,12/14/2010,12/14/2010,12/14/2010 10:44:25 AM,12/14/2010 10:44:26 AM,12/14/2010 10:44:49 AM,12/14/2010 10:47:22 AM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Fire,12/14/2010 10:48:37 AM,LEAVENWORTH ST/JEFFERSON ST,SF,94109,B01,28,1524,3,3,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",103480166-E16 +103470083,E03,10111199,Medical Incident,12/13/2010,12/13/2010,12/13/2010 08:43:41 AM,12/13/2010 08:44:36 AM,12/13/2010 08:45:06 AM,12/13/2010 08:47:48 AM,12/13/2010 08:50:49 AM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 09:04:13 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",103470083-E03 +122740348,55,12090533,Medical Incident,09/30/2012,09/30/2012,09/30/2012 08:39:45 PM,09/30/2012 08:40:42 PM,09/30/2012 08:40:52 PM,09/30/2012 08:41:04 PM,09/30/2012 08:44:25 PM,09/30/2012 08:57:28 PM,09/30/2012 09:06:00 PM,Code 2 Transport,09/30/2012 09:34:26 PM,800 Block of FOLSOM ST,SF,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811835585525, -122.402322293906)",122740348-55 +132720206,T12,13092467,Structure Fire,09/29/2013,09/29/2013,09/29/2013 01:53:26 PM,09/29/2013 01:53:26 PM,09/29/2013 01:53:32 PM,09/29/2013 01:54:45 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 01:57:07 PM,5TH AV/LINCOLN WY,SF,94122,B08,22,7325,3,3,3,false,Alarm,1,TRUCK,2,7,5,Inner Sunset,"(37.7661099231881, -122.462162119625)",132720206-T12 +110610086,RC1,11019928,Medical Incident,03/02/2011,03/02/2011,03/02/2011 08:03:37 AM,03/02/2011 08:05:10 AM,03/02/2011 08:06:26 AM,03/02/2011 08:14:36 AM,03/02/2011 08:19:58 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 08:48:34 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",110610086-RC1 +103280268,B01,10105140,Alarms,11/24/2010,11/24/2010,11/24/2010 06:45:19 PM,11/24/2010 06:46:26 PM,11/24/2010 06:46:42 PM,11/24/2010 06:48:14 PM,11/24/2010 06:49:28 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/24/2010 07:08:31 PM,600 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7948751336497, -122.403112031242)",103280268-B01 +130070204,AM12,13002387,Medical Incident,01/07/2013,01/07/2013,01/07/2013 01:18:46 PM,01/07/2013 01:20:13 PM,01/07/2013 01:20:36 PM,01/07/2013 01:21:21 PM,01/07/2013 01:28:07 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 02:12:56 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,1,1,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",130070204-AM12 +110280297,E36,11009319,Structure Fire,01/28/2011,01/28/2011,01/28/2011 07:25:14 PM,01/28/2011 07:25:14 PM,01/28/2011 07:25:29 PM,01/28/2011 07:26:35 PM,01/28/2011 07:28:51 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/28/2011 07:29:40 PM,100 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",110280297-E36 +160532048,87,16021249,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:54:23 PM,02/22/2016 02:55:41 PM,02/22/2016 02:56:26 PM,02/22/2016 02:56:36 PM,02/22/2016 03:00:57 PM,02/22/2016 03:17:56 PM,02/22/2016 03:52:44 PM,Code 2 Transport,02/22/2016 04:36:34 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160532048-87 +160671018,KM04,16026687,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:42:11 AM,03/07/2016 10:44:17 AM,03/07/2016 10:45:20 AM,03/07/2016 10:48:47 AM,03/07/2016 11:07:24 AM,03/07/2016 11:17:50 AM,03/07/2016 11:32:12 AM,Code 2 Transport,03/07/2016 11:58:08 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160671018-KM04 +113260265,B04,11108297,Alarms,11/22/2011,11/22/2011,11/22/2011 03:31:40 PM,11/22/2011 03:32:58 PM,11/22/2011 03:33:07 PM,11/22/2011 03:34:26 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 03:59:04 PM,3000 Block of CALIFORNIA ST,SF,94115,B04,10,4336,3,3,3,false,,1,CHIEF,3,4,2,Presidio Heights,"(37.7874884510221, -122.444566815099)",113260265-B04 +160891385,78,16035299,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:01:49 AM,03/29/2016 11:03:06 AM,03/29/2016 11:04:54 AM,03/29/2016 11:04:54 AM,03/29/2016 11:11:14 AM,03/29/2016 11:25:26 AM,03/29/2016 12:00:10 PM,Code 2 Transport,03/29/2016 12:19:09 PM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",160891385-78 +133090225,KM11,13105089,Medical Incident,11/05/2013,11/05/2013,11/05/2013 01:49:47 PM,11/05/2013 01:49:48 PM,11/05/2013 01:49:58 PM,11/05/2013 01:52:11 PM,11/05/2013 01:57:50 PM,11/05/2013 02:09:08 PM,11/05/2013 02:31:45 PM,Code 2 Transport,11/05/2013 03:20:10 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",133090225-KM11 +120510182,83,12016871,Medical Incident,02/20/2012,02/20/2012,02/20/2012 02:23:54 PM,02/20/2012 02:25:52 PM,02/20/2012 02:27:03 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 02:29:02 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,2,3,3,false,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7661343875141, -122.421935077177)",120510182-83 +160500662,64,16019993,Medical Incident,02/19/2016,02/18/2016,02/19/2016 07:53:14 AM,02/19/2016 07:54:29 AM,02/19/2016 07:55:09 AM,02/19/2016 07:56:08 AM,02/19/2016 08:07:13 AM,02/19/2016 08:27:21 AM,02/19/2016 08:56:09 AM,Code 2 Transport,02/19/2016 09:30:08 AM,200 Block of FARALLONES ST,San Francisco,94112,B09,33,8374,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7140973591305, -122.460812686036)",160500662-64 +102800320,58,10089123,Medical Incident,10/07/2010,10/07/2010,10/07/2010 08:21:14 PM,10/07/2010 08:23:01 PM,10/07/2010 08:23:22 PM,10/07/2010 08:23:34 PM,10/07/2010 08:29:23 PM,10/07/2010 08:48:09 PM,10/07/2010 08:58:39 PM,Code 2 Transport,10/07/2010 09:17:02 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,MEDIC,3,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",102800320-58 +112680215,E40,11088604,Structure Fire,09/25/2011,09/25/2011,09/25/2011 01:43:10 PM,09/25/2011 01:43:11 PM,09/25/2011 01:43:17 PM,09/25/2011 01:44:21 PM,09/25/2011 01:46:06 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Fire,09/25/2011 01:46:34 PM,25TH AV/TARAVAL ST,SF,94116,B08,40,7461,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7427672829659, -122.482121647462)",112680215-E40 +131420064,T02,13048046,Structure Fire,05/22/2013,05/21/2013,05/22/2013 06:26:30 AM,05/22/2013 06:27:51 AM,05/22/2013 06:28:25 AM,05/22/2013 06:30:16 AM,05/22/2013 06:32:12 AM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,Other,05/22/2013 06:36:50 AM,200 Block of BAY ST,SF,94133,B01,28,1341,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8058720561285, -122.411119801648)",131420064-T02 +113250381,T13,11108103,Structure Fire,11/21/2011,11/21/2011,11/21/2011 11:21:34 PM,11/21/2011 11:21:34 PM,11/21/2011 11:21:45 PM,11/21/2011 11:23:53 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/21/2011 11:26:40 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7934507425915, -122.396414422165)",113250381-T13 +113490138,B03,11115765,Alarms,12/15/2011,12/15/2011,12/15/2011 11:49:24 AM,12/15/2011 11:50:46 AM,12/15/2011 11:51:01 AM,04/25/2016 02:01:08 PM,12/15/2011 11:54:50 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/15/2011 11:56:58 AM,700 Block of MINNA ST,SF,94103,B02,36,2318,3,3,3,false,,1,CHIEF,2,2,6,South of Market,"(37.7764525469621, -122.413443681945)",113490138-B03 +112380219,E31,11078572,Traffic Collision,08/26/2011,08/26/2011,08/26/2011 02:58:58 PM,08/26/2011 03:01:28 PM,08/26/2011 03:01:47 PM,08/26/2011 03:02:28 PM,08/26/2011 03:03:52 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 03:04:49 PM,PARK PRESIDIO BL/GEARY BL,SF,94118,B07,31,7146,3,3,3,false,,1,ENGINE,3,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",112380219-E31 +120640028,B03,12021004,Medical Incident,03/04/2012,03/03/2012,03/04/2012 01:46:44 AM,03/04/2012 01:49:18 AM,03/04/2012 01:50:01 AM,03/04/2012 01:52:00 AM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/04/2012 01:53:29 AM,800 Block of POST ST,SF,94109,B04,3,1543,E,E,3,false,Non Life-threatening,1,CHIEF,5,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",120640028-B03 +111690393,T13,11055889,Outside Fire,06/18/2011,06/18/2011,06/18/2011 11:49:53 PM,06/18/2011 11:49:54 PM,06/18/2011 11:50:26 PM,06/18/2011 11:52:07 PM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,Other,06/18/2011 11:56:41 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,,1,TRUCK,5,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",111690393-T13 +122670116,B09,12088158,Alarms,09/23/2012,09/23/2012,09/23/2012 09:45:59 AM,09/23/2012 09:47:14 AM,09/23/2012 09:47:48 AM,09/23/2012 09:48:54 AM,09/23/2012 09:56:32 AM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 09:58:41 AM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,Alarm,1,CHIEF,3,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",122670116-B09 +160392319,AM02,16015687,Medical Incident,02/08/2016,02/08/2016,02/08/2016 03:34:58 PM,02/08/2016 03:35:57 PM,02/08/2016 03:36:04 PM,02/08/2016 03:36:45 PM,02/08/2016 03:40:35 PM,02/08/2016 03:55:49 PM,02/08/2016 04:04:32 PM,Code 2 Transport,02/08/2016 04:31:21 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160392319-AM02 +112670018,E12,11088079,Administrative,09/24/2011,09/23/2011,09/24/2011 12:52:16 AM,09/24/2011 12:52:19 AM,09/24/2011 12:52:40 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/24/2011 12:53:04 AM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",112670018-E12 +121750286,E36,12058194,Medical Incident,06/23/2012,06/23/2012,06/23/2012 05:12:28 PM,06/23/2012 05:13:16 PM,06/23/2012 05:13:36 PM,06/23/2012 05:13:59 PM,06/23/2012 05:15:57 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 05:29:11 PM,0 Block of GROVE ST,SF,94102,B02,36,381,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",121750286-E36 +112190176,55,11072404,Medical Incident,08/07/2011,08/07/2011,08/07/2011 01:25:45 PM,08/07/2011 01:26:04 PM,08/07/2011 01:26:51 PM,08/07/2011 01:29:14 PM,08/07/2011 01:31:10 PM,08/07/2011 01:45:04 PM,08/07/2011 02:08:02 PM,Code 2 Transport,08/07/2011 02:42:41 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",112190176-55 +112500296,E02,11082550,Medical Incident,09/07/2011,09/07/2011,09/07/2011 06:34:59 PM,09/07/2011 06:36:52 PM,09/07/2011 06:36:58 PM,09/07/2011 06:38:34 PM,09/07/2011 06:40:01 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 06:54:58 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",112500296-E02 +140910275,B04,14030684,Medical Incident,04/01/2014,04/01/2014,04/01/2014 07:28:35 PM,04/01/2014 07:29:19 PM,04/01/2014 07:30:40 PM,04/01/2014 07:32:15 PM,04/01/2014 07:33:43 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,Code 2 Transport,04/01/2014 07:42:51 PM,1500 Block of BRODERICK ST,SAN FRANCISCO,94115,B05,10,4235,3,E,3,false,Potentially Life-Threatening,1,CHIEF,3,5,5,Japantown,"(37.7845624883046, -122.441511182007)",140910275-B04 +131070339,B04,13036100,Structure Fire,04/17/2013,04/17/2013,04/17/2013 07:34:36 PM,04/17/2013 07:36:23 PM,04/17/2013 07:36:31 PM,04/17/2013 07:38:04 PM,04/17/2013 07:41:11 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/17/2013 07:47:27 PM,700 Block of VAN NESS AVE,SF,94102,B02,3,3163,3,3,3,false,Alarm,1,CHIEF,8,2,6,Tenderloin,"(37.7824440383404, -122.420574545604)",131070339-B04 +91820356,E03,9054145,Alarms,07/01/2009,07/01/2009,07/01/2009 10:39:14 PM,07/01/2009 10:39:15 PM,07/01/2009 10:39:38 PM,07/01/2009 10:40:45 PM,07/01/2009 10:43:05 PM,04/25/2016 03:28:07 PM,04/25/2016 03:28:07 PM,Fire,07/01/2009 10:43:48 PM,JONES ST/TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",091820356-E03 +130900244,E42,13030171,Medical Incident,03/31/2013,03/31/2013,03/31/2013 05:07:58 PM,03/31/2013 05:08:17 PM,03/31/2013 05:08:53 PM,03/31/2013 05:10:10 PM,03/31/2013 05:12:31 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 05:29:36 PM,1900 Block of PALOU AVE,SF,94124,B10,42,6431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7376407906904, -122.397487086449)",130900244-E42 +121220055,81,12040393,Medical Incident,05/01/2012,04/30/2012,05/01/2012 07:25:17 AM,05/01/2012 07:26:58 AM,05/01/2012 07:27:11 AM,05/01/2012 07:27:29 AM,05/01/2012 07:39:03 AM,05/01/2012 07:47:19 AM,05/01/2012 08:21:45 AM,Code 2 Transport,05/01/2012 08:52:31 AM,2000 Block of CARROLL AVE,SF,94124,B10,42,6361,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7296942048902, -122.401806243154)",121220055-81 +130770257,D3,13025774,Structure Fire,03/18/2013,03/18/2013,03/18/2013 04:16:59 PM,03/18/2013 04:18:21 PM,03/18/2013 04:18:40 PM,03/18/2013 04:19:30 PM,03/18/2013 04:27:13 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 04:45:15 PM,100 Block of FARALLONES ST,SF,94112,B09,33,8372,3,3,3,false,Fire,1,CHIEF,8,9,11,Oceanview/Merced/Ingleside,"(37.714011115706, -122.457547777254)",130770257-D3 +111930165,T02,11063702,Alarms,07/12/2011,07/12/2011,07/12/2011 12:19:47 PM,07/12/2011 12:20:43 PM,07/12/2011 12:20:50 PM,07/12/2011 12:22:20 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,Other,07/12/2011 12:24:52 PM,200 Block of BEACH ST,SF,94133,B01,28,1344,3,3,3,false,,1,TRUCK,3,1,3,North Beach,"(37.8076407484143, -122.413163175978)",111930165-T02 +113010123,B02,11099792,Alarms,10/28/2011,10/28/2011,10/28/2011 10:16:30 AM,10/28/2011 10:17:32 AM,10/28/2011 10:18:25 AM,10/28/2011 10:19:09 AM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 10:23:00 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,,1,CHIEF,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",113010123-B02 +110810281,68,11026733,Structure Fire,03/22/2011,03/22/2011,03/22/2011 06:46:43 PM,03/22/2011 06:47:11 PM,03/22/2011 06:47:56 PM,03/22/2011 06:48:21 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 06:57:48 PM,1300 Block of 34TH AVE,SF,94122,B08,23,7564,3,3,3,true,,1,MEDIC,9,8,4,Sunset/Parkside,"(37.7619197513964, -122.49320253975)",110810281-68 +121570192,67,12051954,Medical Incident,06/05/2012,06/05/2012,06/05/2012 01:45:12 PM,06/05/2012 01:46:47 PM,06/05/2012 01:48:22 PM,06/05/2012 01:48:32 PM,06/05/2012 02:05:28 PM,04/25/2016 01:58:21 PM,06/05/2012 02:24:05 PM,No Merit,06/05/2012 02:37:25 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",121570192-67 +160662157,67,16026438,Medical Incident,03/06/2016,03/06/2016,03/06/2016 04:03:56 PM,03/06/2016 04:04:20 PM,03/06/2016 04:05:52 PM,03/06/2016 04:06:11 PM,03/06/2016 04:15:13 PM,03/06/2016 04:32:39 PM,03/06/2016 05:09:14 PM,Code 2 Transport,03/06/2016 05:54:35 PM,2400 Block of IRVING ST,San Francisco,94122,B08,22,7511,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7632001492367, -122.484086270841)",160662157-67 +133180215,77,13108103,Medical Incident,11/14/2013,11/14/2013,11/14/2013 01:41:38 PM,11/14/2013 01:42:17 PM,11/14/2013 01:42:49 PM,04/25/2016 01:49:46 PM,11/14/2013 01:49:57 PM,11/14/2013 02:05:15 PM,11/14/2013 02:54:44 PM,Code 2 Transport,11/14/2013 03:08:07 PM,100 Block of PHELAN AVE,SF,94112,B09,15,8233,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",133180215-77 +160863620,AM22,16034361,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:37:55 PM,03/26/2016 09:39:39 PM,03/26/2016 09:40:11 PM,03/26/2016 09:41:29 PM,03/26/2016 09:54:18 PM,03/26/2016 10:07:37 PM,03/26/2016 10:23:05 PM,Code 2 Transport,03/26/2016 10:48:22 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160863620-AM22 +122970245,T06,12098539,Vehicle Fire,10/23/2012,10/23/2012,10/23/2012 04:36:29 PM,10/23/2012 04:37:35 PM,10/23/2012 04:37:43 PM,10/23/2012 04:38:50 PM,10/23/2012 04:42:23 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 04:46:46 PM,800 Block of NOE ST,SF,94114,B06,24,5466,3,3,3,false,Fire,1,TRUCK,1,6,8,Noe Valley,"(37.7558203733016, -122.432361430986)",122970245-T06 +120210326,D3,12007245,Structure Fire,01/21/2012,01/21/2012,01/21/2012 06:18:48 PM,01/21/2012 06:20:09 PM,01/21/2012 06:20:51 PM,01/21/2012 06:24:19 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/21/2012 06:28:21 PM,5100 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,3,3,3,false,Fire,1,CHIEF,6,6,8,Noe Valley,"(37.7468468006918, -122.44040482926)",120210326-D3 +123070265,T15,12102079,Structure Fire,11/02/2012,11/02/2012,11/02/2012 04:18:41 PM,11/02/2012 04:19:29 PM,11/02/2012 04:19:52 PM,11/02/2012 04:22:05 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Other,11/02/2012 04:48:07 PM,100 Block of VERNON ST,SF,94132,B09,33,8411,3,3,3,false,Alarm,1,TRUCK,4,9,11,Oceanview/Merced/Ingleside,"(37.7151851228467, -122.467937184941)",123070265-T15 +132310265,77,13078071,Medical Incident,08/19/2013,08/19/2013,08/19/2013 03:36:58 PM,08/19/2013 03:37:09 PM,08/19/2013 03:50:36 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 03:52:58 PM,700 Block of NAPLES ST,SF,94112,B09,43,6136,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7169383088271, -122.434084553161)",132310265-77 +102820309,55,10089788,Medical Incident,10/09/2010,10/09/2010,10/09/2010 05:00:32 PM,10/09/2010 05:01:13 PM,10/09/2010 05:01:43 PM,10/09/2010 05:01:52 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Unable to Locate,10/09/2010 05:04:30 PM,MARKET ST/5TH ST,SF,94103,B03,1,1364,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",102820309-55 +112570333,93,11084879,Traffic Collision,09/14/2011,09/14/2011,09/14/2011 10:25:34 PM,09/14/2011 10:27:27 PM,09/14/2011 10:27:42 PM,09/14/2011 10:27:46 PM,09/14/2011 10:52:47 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Patient Declined Transport,09/14/2011 10:57:30 PM,BROADWAY/MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.7982229704871, -122.403863019987)",112570333-93 +112840231,RS1,11094049,Medical Incident,10/11/2011,10/11/2011,10/11/2011 02:05:31 PM,10/11/2011 02:06:08 PM,10/11/2011 02:07:13 PM,10/11/2011 02:07:24 PM,10/11/2011 02:11:03 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 02:21:10 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",112840231-RS1 +110850233,E43,11028067,Medical Incident,03/26/2011,03/26/2011,03/26/2011 02:45:32 PM,03/26/2011 02:47:22 PM,03/26/2011 02:47:40 PM,03/26/2011 02:49:20 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 02:49:44 PM,600 Block of MOSCOW ST,SF,94112,B09,43,6162,3,3,3,false,,1,ENGINE,3,9,11,Excelsior,"(37.7173988818662, -122.430625202739)",110850233-E43 +122710067,66,12089344,Traffic Collision,09/27/2012,09/27/2012,09/27/2012 08:22:33 AM,09/27/2012 08:23:29 AM,09/27/2012 08:23:52 AM,09/27/2012 08:24:03 AM,09/27/2012 08:29:04 AM,09/27/2012 08:47:36 AM,09/27/2012 08:52:05 AM,Code 2 Transport,09/27/2012 09:20:19 AM,7TH ST/BRANNAN ST,SF,94103,B03,8,2276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7730511015721, -122.40320508207)",122710067-66 +131120307,87,13037799,Medical Incident,04/22/2013,04/22/2013,04/22/2013 04:08:04 PM,04/22/2013 04:11:08 PM,04/22/2013 04:11:15 PM,04/22/2013 04:14:42 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/22/2013 04:22:06 PM,800 Block of 4TH ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7760987706343, -122.393645894609)",131120307-87 +103050119,E17,10097433,Structure Fire,11/01/2010,11/01/2010,11/01/2010 08:32:18 AM,11/01/2010 08:33:33 AM,11/01/2010 08:33:52 AM,11/01/2010 08:34:55 AM,11/01/2010 08:37:30 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 09:02:15 AM,2900 Block of ARELIOUS WALKER DR,SF,94124,B10,17,6611,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7175204188461, -122.386036613702)",103050119-E17 +102550256,86,10080707,Medical Incident,09/12/2010,09/12/2010,09/12/2010 08:05:39 PM,09/12/2010 08:06:34 PM,09/12/2010 08:06:52 PM,09/12/2010 08:07:16 PM,09/12/2010 08:11:58 PM,09/12/2010 08:20:57 PM,09/12/2010 08:27:40 PM,Code 2 Transport,09/12/2010 08:49:43 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",102550256-86 +122260334,82,12075049,Medical Incident,08/13/2012,08/13/2012,08/13/2012 07:54:29 PM,08/13/2012 07:56:48 PM,08/13/2012 07:57:46 PM,08/13/2012 07:58:00 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Unable to Locate,08/13/2012 08:08:10 PM,MISSION ST/8TH ST,SF,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",122260334-82 +112310312,E33,11076390,Medical Incident,08/19/2011,08/19/2011,08/19/2011 08:28:45 PM,08/19/2011 08:30:26 PM,08/19/2011 08:30:39 PM,08/19/2011 08:31:38 PM,08/19/2011 08:41:16 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 08:45:49 PM,ALEMANY BL/SAGAMORE ST,SF,94132,B09,33,8375,3,3,3,true,,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7114225423407, -122.463030028642)",112310312-E33 +120660261,T19,12021887,Alarms,03/06/2012,03/06/2012,03/06/2012 03:17:32 PM,03/06/2012 03:18:38 PM,03/06/2012 03:19:29 PM,03/06/2012 03:21:24 PM,03/06/2012 03:25:22 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 03:35:43 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",120660261-T19 +113620215,E13,11120278,Medical Incident,12/28/2011,12/28/2011,12/28/2011 02:14:21 PM,12/28/2011 02:15:47 PM,12/28/2011 02:16:04 PM,12/28/2011 02:16:21 PM,12/28/2011 02:20:49 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,No Merit,12/28/2011 02:22:32 PM,0 Block of SPOFFORD ST,SF,94108,B01,13,1313,2,2,2,true,,1,ENGINE,1,1,3,Chinatown,"(37.7945675420713, -122.407457808544)",113620215-E13 +123520307,RC2,12117844,Medical Incident,12/17/2012,12/17/2012,12/17/2012 05:29:32 PM,12/17/2012 05:29:56 PM,12/17/2012 05:30:40 PM,12/17/2012 05:30:55 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 05:35:12 PM,2000 Block of 36TH AVE,SF,94116,B08,18,7556,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7487764204802, -122.494293052572)",123520307-RC2 +113020287,E39,11100282,Medical Incident,10/29/2011,10/29/2011,10/29/2011 05:12:27 PM,10/29/2011 05:13:22 PM,10/29/2011 05:13:31 PM,10/29/2011 05:14:15 PM,10/29/2011 05:17:50 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Patient Declined Transport,10/29/2011 05:33:54 PM,200 Block of BELLA VISTA WAY,SF,94127,B09,39,8252,3,2,2,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7379099151773, -122.449732963987)",113020287-E39 +102450204,E20,10077334,Structure Fire,09/02/2010,09/02/2010,09/02/2010 11:39:43 AM,09/02/2010 11:42:06 AM,09/02/2010 11:42:27 AM,09/02/2010 11:43:24 AM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Other,09/02/2010 11:46:58 AM,2300 Block of 29TH AVE,SF,94116,B08,18,7522,3,3,3,true,,1,ENGINE,8,8,4,Sunset/Parkside,"(37.7435152572442, -122.486402984833)",102450204-E20 +112090003,E06,11068859,Alarms,07/28/2011,07/27/2011,07/28/2011 12:18:05 AM,07/28/2011 12:19:19 AM,07/28/2011 12:19:27 AM,07/28/2011 12:21:08 AM,07/28/2011 12:22:19 AM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 12:32:58 AM,400 Block of CHURCH ST,SF,94114,B02,6,523,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",112090003-E06 +110860373,B03,11028534,Alarms,03/27/2011,03/27/2011,03/27/2011 09:47:20 PM,03/27/2011 09:47:30 PM,03/27/2011 09:47:36 PM,03/27/2011 09:49:12 PM,03/27/2011 09:52:32 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,Fire,03/27/2011 09:59:53 PM,100 Block of SPEAR ST,SF,94105,B03,35,2114,3,3,3,false,,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7919628053601, -122.393243014407)",110860373-B03 +160672894,KM01,16026874,Medical Incident,03/07/2016,03/07/2016,03/07/2016 07:11:42 PM,03/07/2016 07:12:50 PM,03/07/2016 07:14:18 PM,03/07/2016 07:18:08 PM,03/07/2016 07:28:04 PM,03/07/2016 07:42:54 PM,03/07/2016 07:47:24 PM,Code 2 Transport,03/07/2016 08:04:02 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160672894-KM01 +112470032,E07,11081332,Medical Incident,09/04/2011,09/03/2011,09/04/2011 02:14:42 AM,09/04/2011 02:15:20 AM,09/04/2011 02:15:42 AM,09/04/2011 02:19:16 AM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Other,09/04/2011 02:19:18 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,2,2,true,,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",112470032-E07 +113410319,85,11113159,Medical Incident,12/07/2011,12/07/2011,12/07/2011 06:12:03 PM,12/07/2011 06:12:27 PM,12/07/2011 06:13:01 PM,12/07/2011 06:13:15 PM,12/07/2011 06:16:26 PM,12/07/2011 06:44:22 PM,12/07/2011 07:03:06 PM,Code 2 Transport,12/07/2011 07:32:02 PM,300 Block of CAPP ST,SF,94110,B06,7,5433,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7610971516416, -122.41826370633)",113410319-85 +132000398,79,13067986,Traffic Collision,07/19/2013,07/19/2013,07/19/2013 10:53:19 PM,07/19/2013 10:53:42 PM,07/19/2013 10:53:51 PM,07/19/2013 10:54:02 PM,07/19/2013 10:56:46 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Patient Declined Transport,07/19/2013 11:33:37 PM,VAN NESS AV/MCALLISTER ST,SF,94102,B02,36,3164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",132000398-79 +122630028,99,12086738,Medical Incident,09/19/2012,09/18/2012,09/19/2012 02:17:56 AM,09/19/2012 02:18:55 AM,09/19/2012 02:19:32 AM,09/19/2012 02:19:44 AM,09/19/2012 02:29:10 AM,09/19/2012 02:34:47 AM,09/19/2012 02:50:42 AM,Code 2 Transport,09/19/2012 03:08:16 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,1,2,false,Non Life-threatening,1,MEDIC,1,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",122630028-99 +130950332,94,13031939,Medical Incident,04/05/2013,04/05/2013,04/05/2013 06:45:53 PM,04/05/2013 06:47:25 PM,04/05/2013 06:49:43 PM,04/05/2013 06:49:56 PM,04/05/2013 07:19:54 PM,04/05/2013 07:33:43 PM,04/05/2013 07:41:19 PM,Code 2 Transport,04/05/2013 08:12:08 PM,0 Block of MASONIC AVE,SF,94118,B05,10,4411,3,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7837280171919, -122.447368375734)",130950332-94 +112860209,B04,11094756,Alarms,10/13/2011,10/13/2011,10/13/2011 12:46:28 PM,10/13/2011 12:48:04 PM,10/13/2011 12:48:17 PM,10/13/2011 12:49:27 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Fire,10/13/2011 01:00:53 PM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,3,3,false,,1,CHIEF,3,1,3,Financial District/South Beach,"(37.79330670928, -122.402930381265)",112860209-B04 +130450061,RC1,13015157,Medical Incident,02/14/2013,02/13/2013,02/14/2013 07:13:31 AM,02/14/2013 07:14:04 AM,02/14/2013 07:14:22 AM,02/14/2013 07:15:18 AM,02/14/2013 07:23:45 AM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Medical Examiner,02/14/2013 08:13:42 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",130450061-RC1 +111500312,B01,11049819,Alarms,05/30/2011,05/30/2011,05/30/2011 09:33:53 PM,05/30/2011 09:35:05 PM,05/30/2011 09:35:10 PM,05/30/2011 09:36:04 PM,05/30/2011 09:37:59 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Fire,05/30/2011 09:43:01 PM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,,1,CHIEF,2,1,3,North Beach,"(37.8055721065651, -122.414433429446)",111500312-B01 +130400052,AM18,13013548,Medical Incident,02/09/2013,02/08/2013,02/09/2013 02:35:21 AM,02/09/2013 02:35:52 AM,02/09/2013 02:36:11 AM,02/09/2013 02:36:52 AM,02/09/2013 02:47:03 AM,02/09/2013 03:04:11 AM,02/09/2013 03:17:48 AM,Code 2 Transport,02/09/2013 04:06:04 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",130400052-AM18 +111230065,E16,11040534,Structure Fire,05/03/2011,05/02/2011,05/03/2011 06:02:41 AM,05/03/2011 06:03:32 AM,05/03/2011 06:04:18 AM,05/03/2011 06:06:59 AM,05/03/2011 06:08:34 AM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,05/03/2011 06:11:07 AM,STEINER ST/UNION ST,SF,94123,B04,16,3611,3,3,3,true,,1,ENGINE,4,4,2,Marina,"(37.7968793413582, -122.437137701576)",111230065-E16 +123140160,E03,12104470,Medical Incident,11/09/2012,11/09/2012,11/09/2012 11:20:53 AM,11/09/2012 11:23:05 AM,11/09/2012 11:23:16 AM,11/09/2012 11:24:04 AM,11/09/2012 11:27:24 AM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/09/2012 11:35:17 AM,500 Block of POST ST,SF,94102,B01,3,1451,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",123140160-E03 +121100029,B07,12036251,Structure Fire,04/19/2012,04/18/2012,04/19/2012 03:14:02 AM,04/19/2012 03:15:51 AM,04/19/2012 03:16:12 AM,04/19/2012 03:17:10 AM,04/19/2012 03:21:17 AM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/19/2012 03:36:55 AM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,Fire,1,CHIEF,4,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",121100029-B07 +140320191,E44,14010844,Medical Incident,02/01/2014,02/01/2014,02/01/2014 01:38:52 PM,02/01/2014 01:39:38 PM,02/01/2014 01:40:00 PM,02/01/2014 01:41:48 PM,02/01/2014 01:44:45 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 01:50:35 PM,200 Block of HAMILTON ST,SF,94134,B10,42,6342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7279029896841, -122.410205044034)",140320191-E44 +160751150,65,16029658,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:21:35 AM,03/15/2016 10:21:35 AM,03/15/2016 10:23:44 AM,03/15/2016 10:23:57 AM,03/15/2016 10:27:45 AM,03/15/2016 10:45:01 AM,03/15/2016 11:04:18 AM,Code 2 Transport,03/15/2016 11:58:40 AM,LINCOLN WY/19TH AV,San Francisco,94122,B08,22,7367,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,4,Sunset/Parkside,"(37.7654479866215, -122.477308393483)",160751150-65 +111840112,T03,11060721,Alarms,07/03/2011,07/03/2011,07/03/2011 09:27:30 AM,07/03/2011 09:28:15 AM,07/03/2011 09:28:29 AM,07/03/2011 09:30:39 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 09:33:10 AM,1800 Block of BUSH ST,SF,94109,B04,38,3363,3,3,3,false,,1,TRUCK,3,4,5,Pacific Heights,"(37.7878107347911, -122.427705816518)",111840112-T03 +160813919,KM07,16032392,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:35:16 PM,03/21/2016 10:36:34 PM,03/21/2016 10:37:30 PM,03/21/2016 10:38:30 PM,03/21/2016 10:42:39 PM,03/21/2016 11:01:56 PM,03/21/2016 11:23:41 PM,Code 2 Transport,03/22/2016 12:10:52 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160813919-KM07 +122600219,AM04,12085977,Medical Incident,09/16/2012,09/16/2012,09/16/2012 04:30:45 PM,09/16/2012 04:32:34 PM,09/16/2012 04:33:18 PM,09/16/2012 04:34:05 PM,09/16/2012 04:36:55 PM,09/16/2012 05:05:29 PM,09/16/2012 05:05:41 PM,Code 3 Transport,09/16/2012 06:07:09 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",122600219-AM04 +123320152,E41,12110327,Medical Incident,11/27/2012,11/27/2012,11/27/2012 12:06:25 PM,11/27/2012 12:07:41 PM,11/27/2012 12:08:13 PM,11/27/2012 12:10:36 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/27/2012 12:13:16 PM,VAN NESS AV/PACIFIC AV,SF,94109,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,3,Russian Hill,"(37.7948173544208, -122.423227147276)",123320152-E41 +160410959,52,16016376,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:15:24 AM,02/10/2016 09:15:55 AM,02/10/2016 09:16:10 AM,02/10/2016 09:16:22 AM,02/10/2016 09:23:09 AM,02/10/2016 09:33:54 AM,02/10/2016 09:50:26 AM,Code 2 Transport,02/10/2016 10:10:15 AM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160410959-52 +140400111,KM10,14013506,Medical Incident,02/09/2014,02/08/2014,02/09/2014 07:39:43 AM,02/09/2014 07:41:28 AM,02/09/2014 07:41:55 AM,02/09/2014 07:42:32 AM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/09/2014 09:26:02 AM,600 Block of COMMERCIAL ST,SF,94111,B01,13,1233,,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.794064372319, -122.403868638307)",140400111-KM10 +132190360,85,13074097,Medical Incident,08/07/2013,08/07/2013,08/07/2013 08:16:55 PM,08/07/2013 08:19:16 PM,08/07/2013 08:19:58 PM,08/07/2013 08:20:28 PM,08/07/2013 08:27:08 PM,08/07/2013 08:37:08 PM,08/07/2013 08:42:42 PM,Code 2 Transport,08/07/2013 08:59:42 PM,GEARY ST/LARKIN ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",132190360-85 +160510344,62,16020339,Medical Incident,02/20/2016,02/19/2016,02/20/2016 02:49:06 AM,02/20/2016 02:49:22 AM,02/20/2016 02:49:42 AM,02/20/2016 02:49:50 AM,02/20/2016 02:59:52 AM,02/20/2016 03:25:25 AM,02/20/2016 03:58:08 AM,Code 2 Transport,02/20/2016 03:59:49 AM,100 Block of MERCURY ST,San Francisco,94124,B10,42,6447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7310022791009, -122.401104010815)",160510344-62 +111490052,E06,11049295,Medical Incident,05/29/2011,05/28/2011,05/29/2011 05:37:47 AM,05/29/2011 05:38:45 AM,05/29/2011 05:39:51 AM,05/29/2011 05:41:44 AM,05/29/2011 05:44:51 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 06:13:26 AM,100 Block of STATES ST,SF,94114,B05,6,5253,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",111490052-E06 +131140054,E21,13038334,Alarms,04/24/2013,04/23/2013,04/24/2013 06:54:41 AM,04/24/2013 06:55:37 AM,04/24/2013 06:55:59 AM,04/24/2013 06:56:43 AM,04/24/2013 07:01:10 AM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/24/2013 07:08:33 AM,CALL BOX: DUBOCE AV/BUENA VISTA EAST AV,SF,94117,B05,21,5135,3,3,3,false,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.7691273566993, -122.43556377085)",131140054-E21 +140170237,B04,14005871,Traffic Collision,01/17/2014,01/17/2014,01/17/2014 03:18:12 PM,01/17/2014 03:19:25 PM,01/17/2014 03:21:09 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 03:21:48 PM,BRODERICK ST/BUSH ST,SF,94115,B04,10,4234,,3,3,false,Potentially Life-Threatening,1,CHIEF,6,4,2,Pacific Heights,"(37.7859677452086, -122.441726319715)",140170237-B04 +140450360,E01,14015469,Structure Fire,02/14/2014,02/14/2014,02/14/2014 09:54:27 PM,02/14/2014 09:56:10 PM,02/14/2014 09:57:17 PM,02/14/2014 09:59:42 PM,02/14/2014 10:00:02 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 10:09:56 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",140450360-E01 +160902537,59,16035786,Medical Incident,03/30/2016,03/30/2016,03/30/2016 03:49:01 PM,03/30/2016 03:49:31 PM,03/30/2016 03:49:53 PM,03/30/2016 03:50:04 PM,03/30/2016 04:01:27 PM,03/30/2016 04:14:28 PM,03/30/2016 04:25:14 PM,Code 2 Transport,03/30/2016 05:08:55 PM,200 Block of CASHMERE ST,San Francisco,94124,B10,17,6517,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7362537955292, -122.387097160369)",160902537-59 +121980362,KM04,12065969,Medical Incident,07/16/2012,07/16/2012,07/16/2012 11:55:48 PM,07/16/2012 11:56:43 PM,07/16/2012 11:57:14 PM,07/16/2012 11:58:57 PM,07/17/2012 12:02:44 AM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Against Medical Advice,07/17/2012 12:38:56 AM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",121980362-KM04 +140410191,E12,14013927,Alarms,02/10/2014,02/10/2014,02/10/2014 12:04:27 PM,02/10/2014 12:04:47 PM,02/10/2014 12:04:56 PM,02/10/2014 12:05:26 PM,02/10/2014 12:08:13 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 12:15:24 PM,0 Block of IRVING ST,SF,94122,B05,12,7321,3,3,3,true,Alarm,1,ENGINE,1,5,5,Inner Sunset,"(37.7643374924183, -122.458207337502)",140410191-E12 +130010100,AM04,13000068,Medical Incident,01/01/2013,12/31/2012,01/01/2013 01:34:17 AM,01/01/2013 01:34:29 AM,01/01/2013 01:40:59 AM,01/01/2013 01:42:49 AM,01/01/2013 01:47:17 AM,01/01/2013 01:53:28 AM,04/25/2016 01:55:02 PM,Code 2 Transport,01/01/2013 01:55:08 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",130010100-AM04 +122320273,88,12077027,Medical Incident,08/19/2012,08/19/2012,08/19/2012 05:40:09 PM,08/19/2012 05:40:29 PM,08/19/2012 05:41:40 PM,08/19/2012 05:42:00 PM,08/19/2012 05:45:25 PM,08/19/2012 05:58:31 PM,08/19/2012 06:08:21 PM,Code 2 Transport,08/19/2012 06:35:14 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",122320273-88 +160603431,AM20,16024085,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:03:18 PM,02/29/2016 09:06:50 PM,02/29/2016 09:08:20 PM,02/29/2016 09:10:56 PM,02/29/2016 09:17:40 PM,02/29/2016 09:35:49 PM,02/29/2016 09:53:26 PM,Code 2 Transport,02/29/2016 10:13:26 PM,1500 Block of 48TH AVE,San Francisco,94122,B08,23,7717,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7575292588802, -122.507939651503)",160603431-AM20 +111790182,T16,11059113,Other,06/28/2011,06/28/2011,06/28/2011 01:45:48 PM,06/28/2011 01:46:35 PM,06/28/2011 01:46:43 PM,06/28/2011 01:49:31 PM,06/28/2011 01:54:36 PM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Fire,06/28/2011 02:03:36 PM,HYDE ST/GREEN ST,SF,94109,B01,41,1611,3,3,3,false,,1,TRUCK,1,1,3,Russian Hill,"(37.7982645786383, -122.418859875328)",111790182-T16 +131040179,T09,13034914,Structure Fire,04/14/2013,04/14/2013,04/14/2013 11:30:31 AM,04/14/2013 11:30:31 AM,04/14/2013 11:30:40 AM,04/14/2013 11:31:44 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 11:33:16 AM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",131040179-T09 +121730093,82,12057369,Traffic Collision,06/21/2012,06/21/2012,06/21/2012 08:13:59 AM,06/21/2012 08:14:10 AM,06/21/2012 08:14:32 AM,06/21/2012 08:15:02 AM,06/21/2012 08:21:04 AM,06/21/2012 08:27:47 AM,06/21/2012 08:44:17 AM,Code 2 Transport,06/21/2012 09:16:38 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",121730093-82 +102930276,78,10093520,Medical Incident,10/20/2010,10/20/2010,10/20/2010 04:59:57 PM,10/20/2010 05:02:16 PM,10/20/2010 05:08:15 PM,10/20/2010 05:09:36 PM,10/20/2010 05:28:52 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,No Merit,10/20/2010 05:28:58 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",102930276-78 +133470371,88,13117906,Medical Incident,12/13/2013,12/13/2013,12/13/2013 09:07:06 PM,12/13/2013 09:07:14 PM,12/13/2013 09:07:37 PM,12/13/2013 09:08:03 PM,12/13/2013 09:25:07 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 09:25:50 PM,MARKET ST/MASON ST,SF,94103,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",133470371-88 +131030336,KM07,13034722,Medical Incident,04/13/2013,04/13/2013,04/13/2013 09:01:50 PM,04/13/2013 09:04:26 PM,04/13/2013 09:06:07 PM,04/13/2013 09:10:01 PM,04/13/2013 09:12:34 PM,04/13/2013 10:04:21 PM,04/13/2013 10:11:03 PM,Code 2 Transport,04/13/2013 11:01:30 PM,3200 Block of LAGUNA ST,SF,94123,B04,16,3352,1,1,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.8012230960553, -122.431196838927)",131030336-KM07 +160643265,KM11,16025649,Medical Incident,03/04/2016,03/04/2016,03/04/2016 07:04:56 PM,03/04/2016 07:09:52 PM,03/04/2016 07:10:32 PM,03/04/2016 07:11:00 PM,03/04/2016 07:23:16 PM,03/04/2016 07:38:16 PM,03/04/2016 07:57:00 PM,Code 2 Transport,03/04/2016 08:27:18 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.769082767924, -122.413353472663)",160643265-KM11 +112740338,E40,11090747,Fuel Spill,10/01/2011,10/01/2011,10/01/2011 07:09:00 PM,10/01/2011 07:15:45 PM,10/01/2011 07:18:24 PM,10/01/2011 07:19:35 PM,10/01/2011 07:23:17 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Other,10/01/2011 07:31:03 PM,1800 Block of 19TH AVE,SF,94122,B08,40,7421,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7533043260005, -122.476491147806)",112740338-E40 +130930167,E07,13031122,Administrative,04/03/2013,04/03/2013,04/03/2013 12:26:43 PM,04/03/2013 12:26:58 PM,04/03/2013 12:27:09 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Other,04/03/2013 12:27:29 PM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",130930167-E07 +160232072,77,16009190,Medical Incident,01/23/2016,01/23/2016,01/23/2016 02:50:21 PM,01/23/2016 02:50:39 PM,01/23/2016 02:51:03 PM,01/23/2016 02:51:24 PM,01/23/2016 02:58:01 PM,01/23/2016 03:03:42 PM,01/23/2016 03:09:25 PM,Code 3 Transport,01/23/2016 04:00:13 PM,100 Block of HARBOR RD,San Francisco,94124,B10,17,6627,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160232072-77 +113350144,E43,11110869,Electrical Hazard,12/01/2011,12/01/2011,12/01/2011 11:20:36 AM,12/01/2011 11:23:54 AM,12/01/2011 11:24:17 AM,12/01/2011 11:26:16 AM,12/01/2011 11:28:36 AM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Fire,12/01/2011 11:41:46 AM,500 Block of LONDON ST,SF,94112,B09,43,6126,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7204577457452, -122.43703098791)",113350144-E43 +110060128,E41,11001927,Medical Incident,01/06/2011,01/06/2011,01/06/2011 09:49:52 AM,01/06/2011 09:51:21 AM,01/06/2011 09:51:31 AM,01/06/2011 09:52:45 AM,01/06/2011 09:54:10 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 10:04:36 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",110060128-E41 +110400234,96,11013278,Medical Incident,02/09/2011,02/09/2011,02/09/2011 02:19:31 PM,02/09/2011 02:21:44 PM,02/09/2011 02:22:15 PM,02/09/2011 02:22:51 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,04/25/2016 02:06:10 PM,900 Block of MARKET ST,SF,94102,B03,1,2247,3,3,3,true,,1,MEDIC,3,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",110400234-96 +132440106,85,13082286,Medical Incident,09/01/2013,09/01/2013,09/01/2013 09:43:14 AM,09/01/2013 09:48:37 AM,09/01/2013 09:48:56 AM,09/01/2013 09:49:28 AM,09/01/2013 10:08:03 AM,09/01/2013 10:15:11 AM,09/01/2013 10:40:01 AM,Code 2 Transport,09/01/2013 11:01:03 AM,1200 Block of HAIGHT ST,SF,94117,B05,21,4353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",132440106-85 +121850342,B06,12061757,Structure Fire,07/03/2012,07/03/2012,07/03/2012 08:11:37 PM,07/03/2012 08:12:42 PM,07/03/2012 08:13:14 PM,07/03/2012 08:14:19 PM,07/03/2012 08:16:18 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Other,07/03/2012 09:31:19 PM,3100 Block of 25TH ST,SF,94110,B06,7,5533,3,3,3,false,Fire,1,CHIEF,1,6,9,Mission,"(37.7510387026502, -122.412580809695)",121850342-B06 +111130045,82,11037228,Medical Incident,04/23/2011,04/22/2011,04/23/2011 03:14:55 AM,04/23/2011 03:17:46 AM,04/23/2011 03:20:11 AM,04/23/2011 03:20:50 AM,04/23/2011 03:32:32 AM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Unable to Locate,04/23/2011 03:49:26 AM,1600 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,1,1,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",111130045-82 +111210010,E36,11039793,Structure Fire,05/01/2011,04/30/2011,05/01/2011 12:24:35 AM,05/01/2011 12:24:44 AM,05/01/2011 12:25:18 AM,05/01/2011 12:26:11 AM,05/01/2011 12:27:17 AM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,05/01/2011 12:35:34 AM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7737629752818, -122.417960394107)",111210010-E36 +160040216,KM07,16001440,Medical Incident,01/04/2016,01/03/2016,01/04/2016 02:20:44 AM,01/04/2016 02:21:44 AM,01/04/2016 02:21:55 AM,01/04/2016 02:22:28 AM,01/04/2016 02:27:57 AM,01/04/2016 02:40:07 AM,01/04/2016 02:48:51 AM,Code 2 Transport,01/04/2016 03:22:20 AM,100 Block of COLUMBUS AVE,San Francisco,94133,B01,13,1246,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7965641992536, -122.404895799327)",160040216-KM07 +132330341,T19,13078805,Other,08/21/2013,08/21/2013,08/21/2013 08:30:38 PM,08/21/2013 08:31:48 PM,08/21/2013 08:33:17 PM,08/21/2013 08:34:26 PM,08/21/2013 08:40:12 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/21/2013 09:29:58 PM,300 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,3,3,3,false,Alarm,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7136355752601, -122.455988095026)",132330341-T19 +112790068,85,11092256,Medical Incident,10/06/2011,10/05/2011,10/06/2011 07:43:33 AM,10/06/2011 07:45:28 AM,10/06/2011 07:48:28 AM,10/06/2011 07:48:48 AM,10/06/2011 07:58:20 AM,10/06/2011 08:31:15 AM,10/06/2011 08:37:53 AM,Code 2 Transport,10/06/2011 09:12:10 AM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,2,2,2,false,,1,MEDIC,1,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",112790068-85 +120640289,E29,12021233,Other,03/04/2012,03/04/2012,03/04/2012 05:38:24 PM,03/04/2012 05:38:49 PM,03/04/2012 05:38:57 PM,03/04/2012 05:39:12 PM,03/04/2012 05:48:30 PM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Fire,03/04/2012 05:51:33 PM,SOUTH VAN NESS AV/15TH ST,SF,94103,B02,7,5225,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7668052440942, -122.417645453705)",120640289-E29 +113360053,54,11111120,Medical Incident,12/02/2011,12/01/2011,12/02/2011 05:02:44 AM,12/02/2011 05:04:25 AM,12/02/2011 05:04:57 AM,12/02/2011 05:05:41 AM,12/02/2011 05:15:30 AM,12/02/2011 05:32:38 AM,12/02/2011 06:23:35 AM,Code 2 Transport,12/02/2011 06:43:23 AM,200 Block of BEMIS ST,SF,94131,B06,26,8111,3,3,3,true,,1,MEDIC,2,6,8,Glen Park,"(37.7362600793533, -122.431968173638)",113360053-54 +122450070,B02,12080905,Alarms,09/01/2012,08/31/2012,09/01/2012 05:40:41 AM,09/01/2012 05:41:17 AM,09/01/2012 05:41:43 AM,09/01/2012 05:43:19 AM,09/01/2012 05:49:15 AM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Fire,09/01/2012 05:49:33 AM,200 Block of 7TH ST,SF,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7774003641379, -122.408565501698)",122450070-B02 +102900281,61,10092593,Medical Incident,10/17/2010,10/17/2010,10/17/2010 06:54:09 PM,10/17/2010 06:55:55 PM,10/17/2010 06:56:16 PM,10/17/2010 06:56:52 PM,10/17/2010 07:01:45 PM,10/17/2010 07:39:01 PM,10/17/2010 07:55:36 PM,Code 2 Transport,10/17/2010 08:27:09 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",102900281-61 +130730213,87,13024369,Medical Incident,03/14/2013,03/14/2013,03/14/2013 02:55:11 PM,03/14/2013 02:56:01 PM,03/14/2013 02:59:02 PM,03/14/2013 02:59:07 PM,03/14/2013 03:14:11 PM,03/14/2013 03:30:12 PM,03/14/2013 03:35:42 PM,Code 2 Transport,03/14/2013 04:09:52 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",130730213-87 +160210554,53,16008263,Medical Incident,01/21/2016,01/20/2016,01/21/2016 06:55:28 AM,01/21/2016 06:56:56 AM,01/21/2016 06:57:15 AM,01/21/2016 06:58:08 AM,01/21/2016 07:00:48 AM,01/21/2016 07:19:11 AM,01/21/2016 07:43:56 AM,Code 2 Transport,01/21/2016 08:24:15 AM,2300 Block of OAKDALE AVE,San Francisco,94124,B10,9,6377,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7414686184082, -122.402330684328)",160210554-53 +160322987,65,16012708,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:43:02 PM,02/01/2016 06:43:42 PM,02/01/2016 06:43:47 PM,02/01/2016 06:44:08 PM,02/01/2016 06:54:16 PM,02/01/2016 07:16:40 PM,02/01/2016 07:25:33 PM,Code 2 Transport,02/01/2016 08:02:16 PM,500 Block of MARKET ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",160322987-65 +160150175,64,16005811,Medical Incident,01/15/2016,01/14/2016,01/15/2016 01:12:28 AM,01/15/2016 01:12:28 AM,01/15/2016 01:13:21 AM,01/15/2016 01:13:30 AM,01/15/2016 01:25:23 AM,01/15/2016 01:52:21 AM,01/15/2016 02:02:52 AM,Code 2 Transport,01/15/2016 02:28:44 AM,SACRAMENTO ST/JONES ST,San Francisco,94108,B01,41,1465,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7923426085782, -122.414293265619)",160150175-64 +112060054,E10,11067969,Medical Incident,07/25/2011,07/24/2011,07/25/2011 06:14:48 AM,07/25/2011 06:15:39 AM,07/25/2011 06:16:35 AM,07/25/2011 06:18:13 AM,07/25/2011 06:20:50 AM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/25/2011 06:28:19 AM,2400 Block of POST ST,SF,94115,B05,10,4235,3,3,3,true,,1,ENGINE,1,5,2,Japantown,"(37.7839477290284, -122.442157843701)",112060054-E10 +113520154,89,11116833,Medical Incident,12/18/2011,12/18/2011,12/18/2011 10:21:04 AM,12/18/2011 10:22:02 AM,12/18/2011 10:22:46 AM,12/18/2011 10:23:22 AM,12/18/2011 10:33:21 AM,12/18/2011 10:48:42 AM,12/18/2011 11:16:53 AM,Code 3 Transport,12/18/2011 11:20:02 AM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",113520154-89 +160250328,61,16009776,Medical Incident,01/25/2016,01/24/2016,01/25/2016 03:32:10 AM,01/25/2016 03:33:17 AM,01/25/2016 03:34:20 AM,01/25/2016 03:34:39 AM,01/25/2016 03:43:41 AM,01/25/2016 04:11:14 AM,01/25/2016 04:15:58 AM,Code 2 Transport,01/25/2016 05:01:55 AM,1300 Block of CLAY ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7931726101237, -122.415302531795)",160250328-61 +123430055,T15,12114515,Structure Fire,12/08/2012,12/07/2012,12/08/2012 04:00:23 AM,12/08/2012 04:00:23 AM,12/08/2012 04:00:33 AM,12/08/2012 04:02:15 AM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/08/2012 04:04:21 AM,MISSION ST/OLIVER ST,SF,94112,B09,33,6212,3,3,3,false,Alarm,1,TRUCK,2,9,11,Outer Mission,"(37.7095433695086, -122.450498927736)",123430055-T15 +160564217,76,16022576,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:58:34 PM,02/25/2016 11:58:58 PM,02/25/2016 11:59:07 PM,02/25/2016 11:59:50 PM,02/26/2016 12:04:14 AM,02/26/2016 12:15:01 AM,02/26/2016 12:18:49 AM,Code 2 Transport,02/26/2016 12:55:45 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160564217-76 +122450031,E41,12080869,Medical Incident,09/01/2012,08/31/2012,09/01/2012 01:51:41 AM,09/01/2012 01:52:39 AM,09/01/2012 01:52:50 AM,09/01/2012 01:54:33 AM,09/01/2012 01:57:16 AM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,09/01/2012 02:06:29 AM,2400 Block of LARKIN ST,SF,94109,B01,41,1626,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8003597667856, -122.421041385631)",122450031-E41 +132720003,E05,13092300,Medical Incident,09/29/2013,09/28/2013,09/29/2013 12:06:04 AM,09/29/2013 12:06:04 AM,09/29/2013 12:06:12 AM,09/29/2013 12:07:31 AM,09/29/2013 12:09:37 AM,09/29/2013 12:19:37 AM,04/25/2016 01:50:32 PM,Other,09/29/2013 12:48:55 AM,1800 Block of EDDY ST,SF,94115,B05,5,4133,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7807493567341, -122.438104422838)",132720003-E05 +160522011,RC3,16020849,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:50:28 PM,02/21/2016 02:50:28 PM,02/21/2016 02:50:40 PM,02/21/2016 02:52:02 PM,02/21/2016 02:57:45 PM,02/21/2016 03:01:17 PM,02/21/2016 03:01:18 PM,Code 3 Transport,02/21/2016 03:26:09 PM,FILLMORE ST/GOLDEN GATE AV,San Francisco,94115,B05,5,3534,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,5,5,Western Addition,"(37.7795641471317, -122.431951803212)",160522011-RC3 +131460290,E28,13049605,Medical Incident,05/26/2013,05/26/2013,05/26/2013 04:34:36 PM,05/26/2013 04:35:16 PM,05/26/2013 04:35:40 PM,05/26/2013 04:37:25 PM,05/26/2013 04:40:34 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 05:25:38 PM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8054738067872, -122.407570127181)",131460290-E28 +122000206,67,12066483,Medical Incident,07/18/2012,07/18/2012,07/18/2012 12:56:08 PM,07/18/2012 12:57:46 PM,07/18/2012 12:59:02 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,Other,04/25/2016 01:57:40 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7610314429831, -122.419351642615)",122000206-67 +112500189,E11,11082467,Medical Incident,09/07/2011,09/07/2011,09/07/2011 01:33:57 PM,09/07/2011 01:35:24 PM,09/07/2011 01:35:34 PM,09/07/2011 01:36:48 PM,09/07/2011 01:38:44 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 01:43:44 PM,3400 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7550983758636, -122.42346407777)",112500189-E11 +110270157,E43,11008858,Medical Incident,01/27/2011,01/27/2011,01/27/2011 11:16:22 AM,01/27/2011 11:17:31 AM,01/27/2011 11:18:11 AM,01/27/2011 11:19:16 AM,01/27/2011 11:23:37 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/27/2011 11:37:30 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",110270157-E43 +160631663,67,16025063,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:29:11 PM,03/03/2016 12:33:21 PM,03/03/2016 12:34:06 PM,03/03/2016 12:34:56 PM,03/03/2016 12:47:18 PM,03/03/2016 01:17:49 PM,03/03/2016 01:25:28 PM,Code 2 Transport,03/03/2016 01:56:25 PM,LAGUNA ST/EDDY ST,San Francisco,94102,B02,5,3366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",160631663-67 +110330305,E03,11010917,Medical Incident,02/02/2011,02/02/2011,02/02/2011 05:33:49 PM,02/02/2011 05:34:35 PM,02/02/2011 05:35:15 PM,02/02/2011 05:36:29 PM,02/02/2011 05:39:45 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 05:54:56 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",110330305-E03 +113540127,77,11117490,Medical Incident,12/20/2011,12/20/2011,12/20/2011 09:58:15 AM,12/20/2011 09:58:49 AM,12/20/2011 09:59:03 AM,12/20/2011 09:59:17 AM,12/20/2011 10:02:33 AM,12/20/2011 10:22:26 AM,12/20/2011 10:47:54 AM,Code 2 Transport,12/20/2011 11:18:12 AM,PALOU AV/3RD ST,SF,94124,B10,17,6515,3,E,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",113540127-77 +160291956,57,16011464,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:03:36 PM,01/29/2016 02:05:38 PM,01/29/2016 02:06:24 PM,01/29/2016 02:10:40 PM,01/29/2016 02:37:50 PM,01/29/2016 02:55:19 PM,01/29/2016 02:59:13 PM,Code 2 Transport,01/29/2016 03:40:51 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160291956-57 +112170003,E01,11071554,Medical Incident,08/05/2011,08/04/2011,08/05/2011 12:10:51 AM,08/05/2011 12:12:45 AM,08/05/2011 12:13:25 AM,08/05/2011 12:14:49 AM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 12:16:01 AM,MISSION ST/6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",112170003-E01 +160080314,89,16003080,Medical Incident,01/08/2016,01/07/2016,01/08/2016 03:19:20 AM,01/08/2016 03:19:20 AM,01/08/2016 03:19:20 AM,01/08/2016 03:19:20 AM,01/08/2016 03:19:20 AM,01/08/2016 03:28:37 AM,01/08/2016 03:42:14 AM,Code 2 Transport,01/08/2016 04:11:14 AM,POTRERO AV/DIVISION ST,San Francisco,94103,B99,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7692440110755, -122.408007205849)",160080314-89 +130500072,88,13016920,Medical Incident,02/19/2013,02/19/2013,02/19/2013 09:21:00 AM,02/19/2013 09:22:54 AM,02/19/2013 09:25:30 AM,02/19/2013 09:25:54 AM,02/19/2013 09:38:17 AM,02/19/2013 10:00:19 AM,02/19/2013 10:34:02 AM,Code 2 Transport,02/19/2013 10:53:10 AM,800 Block of 32ND AVE,SF,94121,B07,14,7242,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.773157559072, -122.491824979567)",130500072-88 +110150242,E41,11005048,Medical Incident,01/15/2011,01/15/2011,01/15/2011 04:20:30 PM,01/15/2011 04:20:56 PM,01/15/2011 04:21:30 PM,01/15/2011 04:22:40 PM,01/15/2011 04:23:07 PM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Medical Examiner,01/15/2011 04:36:41 PM,1300 Block of WASHINGTON ST,SF,94109,B01,41,1466,E,E,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.79405405477, -122.415456646894)",110150242-E41 +102630329,E03,10083334,Medical Incident,09/20/2010,09/20/2010,09/20/2010 07:11:26 PM,09/20/2010 07:12:15 PM,09/20/2010 07:13:43 PM,09/20/2010 07:14:46 PM,09/20/2010 07:17:08 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 07:25:26 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7863257938335, -122.409145791731)",102630329-E03 +111800154,B02,11059405,Traffic Collision,06/29/2011,06/29/2011,06/29/2011 01:08:57 PM,06/29/2011 01:09:57 PM,06/29/2011 01:11:09 PM,06/29/2011 01:12:34 PM,06/29/2011 01:14:20 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/29/2011 01:24:40 PM,13TH ST/BERNICE ST,SF,94103,B02,36,5121,3,3,3,false,,1,CHIEF,2,2,6,Mission,"(37.7695368900031, -122.414122034863)",111800154-B02 +120740061,E15,12024455,Traffic Collision,03/14/2012,03/13/2012,03/14/2012 07:26:03 AM,03/14/2012 07:27:12 AM,03/14/2012 07:27:28 AM,03/14/2012 07:28:23 AM,03/14/2012 07:30:40 AM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/14/2012 07:42:21 AM,300 Block of SAINT CHARLES AV,SF,94132,B09,15,8313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7084397868315, -122.469157976649)",120740061-E15 +111000242,RC1,11033270,Traffic Collision,04/10/2011,04/10/2011,04/10/2011 03:55:04 PM,04/10/2011 03:56:09 PM,04/10/2011 03:56:25 PM,04/10/2011 04:02:22 PM,04/10/2011 04:02:43 PM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 04:14:39 PM,COLUMBUS AV/MONTGOMERY ST,SF,94111,B01,13,1232,3,3,3,true,,1,RESCUE CAPTAIN,2,1,3,Chinatown,"(37.7955318316824, -122.403316944977)",111000242-RC1 +160813158,KM12,16032311,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:37:27 PM,03/21/2016 06:37:27 PM,03/21/2016 06:37:34 PM,03/21/2016 06:38:36 PM,03/21/2016 06:42:03 PM,03/21/2016 06:47:24 PM,03/21/2016 07:04:55 PM,Code 2 Transport,03/21/2016 07:37:45 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160813158-KM12 +103500361,T08,10112399,Elevator / Escalator Rescue,12/16/2010,12/16/2010,12/16/2010 08:46:52 PM,12/16/2010 08:48:37 PM,12/16/2010 08:48:59 PM,12/16/2010 08:50:36 PM,12/16/2010 08:53:56 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,12/16/2010 10:02:05 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103500361-T08 +112070020,E13,11068245,Structure Fire,07/26/2011,07/25/2011,07/26/2011 01:15:16 AM,07/26/2011 01:15:59 AM,07/26/2011 01:17:45 AM,04/25/2016 02:03:29 PM,07/26/2011 01:22:36 AM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 02:53:51 AM,1100 Block of MONTGOMERY ST,SF,94133,B01,28,1226,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.7996469009289, -122.404078416323)",112070020-E13 +113330258,E41,11110373,Alarms,11/29/2011,11/29/2011,11/29/2011 05:12:20 PM,11/29/2011 05:13:29 PM,11/29/2011 05:14:20 PM,11/29/2011 05:16:14 PM,11/29/2011 05:19:36 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 05:23:03 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",113330258-E41 +140110070,E03,14003754,Medical Incident,01/11/2014,01/10/2014,01/11/2014 06:08:54 AM,01/11/2014 06:10:19 AM,01/11/2014 06:12:03 AM,01/11/2014 06:13:47 AM,01/11/2014 06:17:05 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/11/2014 06:27:25 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",140110070-E03 +91120071,B03,9033189,Alarms,04/22/2009,04/21/2009,04/22/2009 07:24:27 AM,04/22/2009 07:25:38 AM,04/22/2009 07:25:49 AM,04/22/2009 07:28:18 AM,04/22/2009 07:32:23 AM,04/25/2016 03:29:10 PM,04/25/2016 03:29:10 PM,Fire,04/22/2009 07:32:56 AM,1800 Block of BRYANT ST,SF,94110,B02,29,5242,3,3,3,true,,1,CHIEF,3,2,9,Mission,"(37.7636655981305, -122.41037293196)",091120071-B03 +132880305,B06,13098067,Alarms,10/15/2013,10/15/2013,10/15/2013 05:13:59 PM,10/15/2013 05:16:21 PM,10/15/2013 05:16:39 PM,10/15/2013 05:18:08 PM,10/15/2013 05:21:53 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Fire,10/15/2013 05:45:28 PM,600 Block of ALVARADO ST,SF,94114,B06,24,5515,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7536611563754, -122.435425173732)",132880305-B06 +122670186,T01,12088218,Elevator / Escalator Rescue,09/23/2012,09/23/2012,09/23/2012 01:24:19 PM,09/23/2012 01:25:19 PM,09/23/2012 01:25:32 PM,09/23/2012 01:27:24 PM,09/23/2012 01:29:38 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Fire,09/23/2012 01:35:55 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7795675906982, -122.407474134289)",122670186-T01 +130620171,E10,13020761,Medical Incident,03/03/2013,03/03/2013,03/03/2013 11:38:33 AM,03/03/2013 11:39:49 AM,03/03/2013 11:43:12 AM,03/03/2013 11:45:07 AM,03/03/2013 11:49:57 AM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,No Merit,03/03/2013 11:51:20 AM,SACRAMENTO ST/FILLMORE ST,SF,94115,B04,38,3544,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7898369713314, -122.43402709034)",130620171-E10 +160893416,68,16035469,Medical Incident,03/29/2016,03/29/2016,03/29/2016 07:54:21 PM,03/29/2016 07:55:53 PM,03/29/2016 07:56:21 PM,03/29/2016 07:57:16 PM,03/29/2016 07:59:49 PM,03/29/2016 08:10:01 PM,03/29/2016 08:35:10 PM,Code 2 Transport,03/29/2016 09:01:31 PM,400 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905619157295, -122.405159641603)",160893416-68 +131830221,E51,13062385,Medical Incident,07/02/2013,07/02/2013,07/02/2013 02:48:06 PM,07/02/2013 02:49:14 PM,07/02/2013 02:49:35 PM,07/02/2013 02:50:45 PM,07/02/2013 02:51:31 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 03:12:09 PM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio,"(37.8012720767056, -122.453377012346)",131830221-E51 +132570126,E06,13086866,Alarms,09/14/2013,09/14/2013,09/14/2013 09:14:58 AM,09/14/2013 09:16:36 AM,09/14/2013 09:16:46 AM,09/14/2013 09:18:28 AM,09/14/2013 09:21:45 AM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 09:37:08 AM,0 Block of PARK HILL AVE,SF,94117,B05,21,5136,3,3,3,true,Alarm,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7673531246888, -122.439155550726)",132570126-E06 +112600186,RC1,11085746,Medical Incident,09/17/2011,09/17/2011,09/17/2011 12:12:18 PM,09/17/2011 12:13:39 PM,09/17/2011 12:14:36 PM,09/17/2011 12:15:12 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 12:18:08 PM,OFARRELL ST/POLK ST,SF,94109,B04,3,1642,3,E,3,true,,1,RESCUE CAPTAIN,2,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",112600186-RC1 +110490345,B01,11016317,Structure Fire,02/18/2011,02/18/2011,02/18/2011 07:23:16 PM,02/18/2011 07:24:29 PM,02/18/2011 07:24:52 PM,02/18/2011 07:26:21 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 07:30:55 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,,1,CHIEF,10,3,6,South of Market,"(37.7791674218963, -122.406346425632)",110490345-B01 +112890146,85,11095844,Medical Incident,10/16/2011,10/16/2011,10/16/2011 10:39:04 AM,10/16/2011 10:40:25 AM,10/16/2011 10:40:59 AM,10/16/2011 10:41:16 AM,10/16/2011 10:41:51 AM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 10:41:59 AM,2300 Block of POLK ST,SF,94109,B04,41,3131,E,E,3,true,,1,MEDIC,1,4,3,Russian Hill,"(37.7983019573761, -122.422174014862)",112890146-85 +121910269,E43,12063666,Medical Incident,07/09/2012,07/09/2012,07/09/2012 05:39:17 PM,07/09/2012 05:39:49 PM,07/09/2012 05:40:01 PM,07/09/2012 05:40:09 PM,07/09/2012 05:42:15 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 05:50:30 PM,0 Block of MOUNT VERNON AVE,SF,94112,B09,43,6176,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7157777924445, -122.444279310961)",121910269-E43 +140410364,E06,14014076,Medical Incident,02/10/2014,02/10/2014,02/10/2014 07:09:32 PM,02/10/2014 07:10:07 PM,02/10/2014 07:10:15 PM,02/10/2014 07:11:09 PM,02/10/2014 07:13:29 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 07:23:07 PM,0 Block of DIAMOND ST,SF,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7613309248911, -122.437175681102)",140410364-E06 +132060312,58,13069841,Medical Incident,07/25/2013,07/25/2013,07/25/2013 07:14:32 PM,07/25/2013 07:15:33 PM,07/25/2013 07:15:48 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Other,07/25/2013 07:20:05 PM,500 Block of 24TH AVE,SF,94121,B07,14,7213,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7791756022124, -122.483662765837)",132060312-58 +102660165,71,10084157,Medical Incident,09/23/2010,09/23/2010,09/23/2010 01:20:14 PM,09/23/2010 01:20:42 PM,09/23/2010 01:21:00 PM,09/23/2010 01:21:13 PM,09/23/2010 01:26:12 PM,09/23/2010 01:40:22 PM,09/23/2010 02:04:44 PM,Code 2 Transport,09/23/2010 02:24:26 PM,300 Block of TEHAMA ST,SF,94103,B03,1,2214,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",102660165-71 +133250263,KM09,13110446,Medical Incident,11/21/2013,11/21/2013,11/21/2013 04:20:55 PM,11/21/2013 04:22:23 PM,11/21/2013 04:24:28 PM,11/21/2013 04:25:11 PM,11/21/2013 04:35:35 PM,11/21/2013 04:46:48 PM,11/21/2013 05:04:41 PM,Code 2 Transport,11/21/2013 05:45:11 PM,2600 Block of 47TH AVE,SF,94116,B08,23,7732,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7375390051116, -122.505326526722)",133250263-KM09 +160502451,87,16020157,Traffic Collision,02/19/2016,02/19/2016,02/19/2016 04:14:54 PM,02/19/2016 04:14:54 PM,02/19/2016 04:15:34 PM,02/19/2016 04:15:57 PM,02/19/2016 04:19:19 PM,02/19/2016 04:58:29 PM,02/19/2016 05:27:31 PM,Code 2 Transport,02/19/2016 06:58:29 PM,GENEVA AV/LOUISBURG ST,San Francisco,94112,B09,15,8313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7217524125404, -122.449295742251)",160502451-87 +123550288,E11,12118895,Medical Incident,12/20/2012,12/20/2012,12/20/2012 06:43:01 PM,12/20/2012 06:43:20 PM,12/20/2012 06:44:04 PM,12/20/2012 06:45:11 PM,12/20/2012 06:46:33 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 06:59:52 PM,3800 Block of 24TH ST,SF,94114,B06,11,5523,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7517260359895, -122.427997868834)",123550288-E11 +121810040,RT614,12060145,Structure Fire,06/29/2012,06/28/2012,06/29/2012 03:05:26 AM,06/29/2012 03:06:44 AM,06/29/2012 03:06:50 AM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/29/2012 03:21:10 AM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,false,Fire,1,PRIVATE,7,2,6,Tenderloin,"(37.7830416107165, -122.415856533326)",121810040-RT614 +110580119,79,11019038,Medical Incident,02/27/2011,02/27/2011,02/27/2011 09:07:52 AM,02/27/2011 09:11:21 AM,02/27/2011 09:11:51 AM,02/27/2011 09:12:08 AM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,Other,04/25/2016 02:05:53 PM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,E,3,true,,1,MEDIC,4,1,3,North Beach,"(37.7980228452184, -122.405863212632)",110580119-79 +160130798,84,16005095,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:30:27 AM,01/13/2016 08:31:53 AM,01/13/2016 08:32:22 AM,01/13/2016 08:32:31 AM,01/13/2016 08:46:31 AM,01/13/2016 09:05:41 AM,01/13/2016 09:16:54 AM,Code 2 Transport,01/13/2016 09:47:38 AM,0 Block of CLEARY CT,San Francisco,94109,B04,3,3323,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7841466012998, -122.426445754167)",160130798-84 +110990143,87,11032842,Medical Incident,04/09/2011,04/09/2011,04/09/2011 11:40:15 AM,04/09/2011 11:41:52 AM,04/09/2011 11:42:06 AM,04/09/2011 11:42:31 AM,04/09/2011 11:49:04 AM,04/09/2011 12:11:00 PM,04/09/2011 12:24:17 PM,Code 2 Transport,04/09/2011 12:59:47 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",110990143-87 +121940069,E23,12064463,Medical Incident,07/12/2012,07/11/2012,07/12/2012 06:54:24 AM,07/12/2012 06:56:28 AM,07/12/2012 06:56:55 AM,07/12/2012 06:59:49 AM,07/12/2012 07:03:16 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/12/2012 07:16:53 AM,4500 Block of ULLOA ST,SF,94116,B08,23,7712,3,1,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7399377568064, -122.505028594588)",121940069-E23 +160740089,72,16029162,Medical Incident,03/14/2016,03/13/2016,03/14/2016 12:54:15 AM,03/14/2016 12:55:27 AM,03/14/2016 12:56:12 AM,03/14/2016 12:56:37 AM,03/14/2016 01:02:17 AM,03/14/2016 01:17:08 AM,03/14/2016 01:24:28 AM,Code 2 Transport,03/14/2016 02:06:52 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160740089-72 +133240105,66,13109953,Medical Incident,11/20/2013,11/20/2013,11/20/2013 08:39:50 AM,11/20/2013 08:41:11 AM,11/20/2013 08:41:39 AM,11/20/2013 08:41:54 AM,11/20/2013 08:54:32 AM,11/20/2013 09:15:34 AM,11/20/2013 09:57:51 AM,Code 2 Transport,11/20/2013 10:24:59 AM,SUNNYDALE AV/HAHN ST,SF,94134,B09,43,6241,3,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7119145572968, -122.416000281038)",133240105-66 +120210094,T10,12007036,Other,01/21/2012,01/20/2012,01/21/2012 05:15:41 AM,01/21/2012 05:16:31 AM,01/21/2012 05:16:45 AM,01/21/2012 05:18:36 AM,01/21/2012 05:21:20 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 05:29:50 AM,3300 Block of JACKSON ST,SF,94118,B04,10,4415,3,3,3,false,Alarm,1,TRUCK,1,4,2,Presidio Heights,"(37.790557796957, -122.450021625754)",120210094-T10 +160210379,70,16008240,Medical Incident,01/21/2016,01/20/2016,01/21/2016 04:09:30 AM,01/21/2016 04:12:29 AM,01/21/2016 04:14:11 AM,01/21/2016 04:16:22 AM,01/21/2016 04:39:58 AM,01/21/2016 04:44:37 AM,01/21/2016 04:49:27 AM,Code 2 Transport,01/21/2016 05:23:47 AM,1000 Block of WEBSTER ST,San Francisco,94115,B05,5,3516,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7802682570275, -122.430178427024)",160210379-70 +130170195,T02,13005789,Alarms,01/17/2013,01/17/2013,01/17/2013 01:27:36 PM,01/17/2013 01:30:13 PM,01/17/2013 01:30:25 PM,01/17/2013 01:31:51 PM,01/17/2013 01:37:41 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 01:41:09 PM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,Alarm,1,TRUCK,3,None,3,North Beach,"(37.8081679785862, -122.416634717802)",130170195-T02 +133580050,E22,13121593,Medical Incident,12/24/2013,12/23/2013,12/24/2013 03:49:26 AM,12/24/2013 03:50:46 AM,12/24/2013 03:51:43 AM,12/24/2013 03:54:09 AM,12/24/2013 03:56:39 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 04:12:54 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,E,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",133580050-E22 +111080162,84,11035670,Medical Incident,04/18/2011,04/18/2011,04/18/2011 12:25:09 PM,04/18/2011 12:26:11 PM,04/18/2011 12:26:40 PM,04/18/2011 12:27:17 PM,04/18/2011 12:32:14 PM,04/18/2011 12:53:58 PM,04/18/2011 01:15:25 PM,Code 2 Transport,04/18/2011 01:43:26 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",111080162-84 +131350383,E07,13045722,Medical Incident,05/15/2013,05/15/2013,05/15/2013 11:43:21 PM,05/15/2013 11:43:21 PM,05/15/2013 11:45:29 PM,05/15/2013 11:46:56 PM,05/15/2013 11:50:59 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 11:58:58 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7677331022924, -122.415606951318)",131350383-E07 +160462845,83,16018607,Medical Incident,02/15/2016,02/15/2016,02/15/2016 05:47:02 PM,02/15/2016 05:47:02 PM,02/15/2016 05:47:36 PM,02/15/2016 05:48:04 PM,02/15/2016 05:48:32 PM,02/15/2016 06:03:12 PM,02/15/2016 06:39:38 PM,Code 2 Transport,02/15/2016 06:43:30 PM,1200 Block of 19TH AVE,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,4,Inner Sunset,"(37.7645085780924, -122.477112517357)",160462845-83 +121430132,T01,12047493,Medical Incident,05/22/2012,05/22/2012,05/22/2012 10:53:53 AM,05/22/2012 10:54:35 AM,05/22/2012 10:54:55 AM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 10:57:31 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,2,2,false,Non Life-threatening,1,TRUCK,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",121430132-T01 +113360377,RS1,11111391,Medical Incident,12/02/2011,12/02/2011,12/02/2011 06:27:14 PM,12/02/2011 06:28:20 PM,12/02/2011 06:28:57 PM,12/02/2011 06:29:29 PM,12/02/2011 06:32:06 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 06:41:11 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",113360377-RS1 +140320142,87,14010800,Medical Incident,02/01/2014,02/01/2014,02/01/2014 11:00:36 AM,02/01/2014 11:02:04 AM,02/01/2014 11:02:15 AM,02/01/2014 11:02:23 AM,02/01/2014 11:04:03 AM,02/01/2014 11:20:52 AM,02/01/2014 11:24:24 AM,Code 2 Transport,02/01/2014 12:01:57 PM,3400 Block of 25TH ST,SF,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7506771297941, -122.418579871188)",140320142-87 +122260390,E07,12075100,Medical Incident,08/13/2012,08/13/2012,08/13/2012 11:22:02 PM,08/13/2012 11:22:49 PM,08/13/2012 11:23:07 PM,08/13/2012 11:30:12 PM,08/13/2012 11:31:15 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 11:33:57 PM,800 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7595614667718, -122.417018134108)",122260390-E07 +160063609,88,16002612,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:56:44 PM,01/06/2016 09:57:48 PM,01/06/2016 09:58:02 PM,01/06/2016 09:58:11 PM,01/06/2016 10:10:08 PM,01/06/2016 10:20:47 PM,01/06/2016 10:29:18 PM,Code 2 Transport,01/06/2016 11:23:58 PM,3700 Block of BRODERICK ST,San Francisco,94123,B04,16,4216,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8048883733226, -122.445622996571)",160063609-88 +112900172,E22,11096202,Structure Fire,10/17/2011,10/17/2011,10/17/2011 12:39:26 PM,10/17/2011 12:40:16 PM,10/17/2011 12:40:46 PM,10/17/2011 12:41:37 PM,10/17/2011 12:45:13 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 01:24:58 PM,1800 Block of 15TH AVE,SF,94122,B08,40,7363,3,3,3,true,,1,ENGINE,1,8,7,Inner Sunset,"(37.7533964346425, -122.471992556576)",112900172-E22 +122620185,E29,12086519,Medical Incident,09/18/2012,09/18/2012,09/18/2012 01:59:17 PM,09/18/2012 01:59:50 PM,09/18/2012 02:00:05 PM,04/25/2016 01:56:43 PM,09/18/2012 02:03:21 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 02:09:41 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122620185-E29 +111170340,E10,11038757,Structure Fire,04/27/2011,04/27/2011,04/27/2011 09:50:12 PM,04/27/2011 09:50:37 PM,04/27/2011 09:50:48 PM,04/27/2011 09:52:13 PM,04/27/2011 09:54:53 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 09:58:36 PM,500 Block of PARKER AVE,SF,94118,B05,21,4542,3,3,3,true,,1,ENGINE,4,5,1,Lone Mountain/USF,"(37.7773488402616, -122.453218331294)",111170340-E10 +112530218,E11,11083480,Alarms,09/10/2011,09/10/2011,09/10/2011 12:40:05 PM,09/10/2011 12:41:22 PM,09/10/2011 12:42:22 PM,09/10/2011 12:44:15 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 12:59:31 PM,3300 Block of 25TH ST,SF,94110,B06,11,5534,3,3,3,true,,1,ENGINE,3,6,9,Mission,"(37.7506663720222, -122.416930970511)",112530218-E11 +160150146,89,16005807,Medical Incident,01/15/2016,01/14/2016,01/15/2016 12:56:45 AM,01/15/2016 12:57:53 AM,01/15/2016 12:58:56 AM,01/15/2016 12:59:03 AM,01/15/2016 01:07:59 AM,01/15/2016 01:26:03 AM,01/15/2016 01:40:48 AM,Code 2 Transport,01/15/2016 02:19:38 AM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",160150146-89 +102850099,B10,10090687,Gas Leak (Natural and LP Gases),10/12/2010,10/12/2010,10/12/2010 08:45:57 AM,10/12/2010 08:50:07 AM,10/12/2010 08:50:15 AM,10/12/2010 08:51:01 AM,10/12/2010 08:55:02 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 09:10:02 AM,1000 Block of 22ND ST,SF,94107,B10,37,2535,3,3,3,false,,1,CHIEF,1,10,10,Potrero Hill,"(37.7576843079875, -122.391648743155)",102850099-B10 +111800192,68,11059436,Medical Incident,06/29/2011,06/29/2011,06/29/2011 02:53:14 PM,06/29/2011 02:53:51 PM,06/29/2011 02:54:18 PM,06/29/2011 02:54:53 PM,06/29/2011 03:01:58 PM,06/29/2011 03:11:25 PM,06/29/2011 03:26:45 PM,Code 2 Transport,06/29/2011 04:17:56 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",111800192-68 +132100083,E05,13070937,Medical Incident,07/29/2013,07/28/2013,07/29/2013 06:35:17 AM,07/29/2013 06:35:56 AM,07/29/2013 06:36:22 AM,04/25/2016 01:51:35 PM,07/29/2013 06:39:53 AM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/29/2013 06:56:00 AM,GOUGH ST/GOLDEN GATE AV,SF,94102,B02,5,3263,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.780611620733, -122.423730984614)",132100083-E05 +121780181,T03,12059251,Alarms,06/26/2012,06/26/2012,06/26/2012 01:04:06 PM,06/26/2012 01:05:06 PM,06/26/2012 01:05:28 PM,06/26/2012 01:06:41 PM,06/26/2012 01:10:19 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 01:09:31 PM,800 Block of LEAVENWORTH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,TRUCK,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",121780181-T03 +140470074,T03,14015920,Medical Incident,02/16/2014,02/15/2014,02/16/2014 04:54:04 AM,02/16/2014 04:55:32 AM,02/16/2014 04:56:07 AM,02/16/2014 04:58:25 AM,02/16/2014 04:59:50 AM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 05:02:09 AM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",140470074-T03 +131280290,94,13043360,Medical Incident,05/08/2013,05/08/2013,05/08/2013 06:01:54 PM,05/08/2013 06:04:45 PM,05/08/2013 06:05:00 PM,05/08/2013 06:05:12 PM,05/08/2013 06:11:21 PM,05/08/2013 06:32:41 PM,05/08/2013 06:55:49 PM,Code 2 Transport,05/08/2013 07:18:41 PM,1800 Block of SAN JOSE AVE,SF,94112,B09,15,8266,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7286672520245, -122.440208285755)",131280290-94 +103090350,71,10099186,Medical Incident,11/05/2010,11/05/2010,11/05/2010 09:15:33 PM,11/05/2010 09:16:33 PM,11/05/2010 09:18:16 PM,11/05/2010 09:18:49 PM,11/05/2010 09:31:07 PM,11/05/2010 09:55:01 PM,11/05/2010 10:21:12 PM,Code 2 Transport,11/05/2010 10:48:16 PM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,3,3,true,,1,MEDIC,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",103090350-71 +120080051,54,12002653,Medical Incident,01/08/2012,01/07/2012,01/08/2012 02:36:24 AM,01/08/2012 02:36:48 AM,01/08/2012 02:37:26 AM,01/08/2012 02:37:33 AM,01/08/2012 02:42:31 AM,04/25/2016 02:00:44 PM,04/25/2016 02:00:44 PM,Patient Declined Transport,01/08/2012 03:00:51 AM,VAN NESS AV/GEARY BL,SF,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",120080051-54 +160813496,KM03,16032345,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:22:34 PM,03/21/2016 08:23:09 PM,03/21/2016 08:23:22 PM,03/21/2016 08:23:49 PM,03/21/2016 08:27:25 PM,03/21/2016 08:47:42 PM,03/21/2016 08:58:50 PM,Code 2 Transport,03/21/2016 09:33:13 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160813496-KM03 +160051663,88,16001996,Medical Incident,01/05/2016,01/05/2016,01/05/2016 12:43:08 PM,01/05/2016 12:45:06 PM,01/05/2016 12:45:11 PM,01/05/2016 12:46:28 PM,01/05/2016 12:59:32 PM,01/05/2016 01:11:55 PM,01/05/2016 01:36:03 PM,Against Medical Advice,01/05/2016 02:09:26 PM,4700 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7622214603037, -122.508737677632)",160051663-88 +131760311,B04,13059813,Alarms,06/25/2013,06/25/2013,06/25/2013 05:42:48 PM,06/25/2013 05:43:31 PM,06/25/2013 05:43:38 PM,06/25/2013 05:44:45 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,06/25/2013 05:51:00 PM,0 Block of MESA ST,PR,94129,B99,51,4626,3,3,3,false,Alarm,1,CHIEF,3,7,2,Presidio,"(37.7983024621122, -122.4571590461)",131760311-B04 +130300322,B03,13010339,Structure Fire,01/30/2013,01/30/2013,01/30/2013 05:34:11 PM,01/30/2013 05:35:51 PM,01/30/2013 05:36:26 PM,01/30/2013 05:38:18 PM,01/30/2013 05:40:32 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/30/2013 05:47:33 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,Alarm,1,CHIEF,5,3,6,South of Market,"(37.7823404680537, -122.40377191669)",130300322-B03 +120250321,E43,12008510,Medical Incident,01/25/2012,01/25/2012,01/25/2012 06:35:38 PM,01/25/2012 06:36:11 PM,01/25/2012 06:36:43 PM,01/25/2012 06:37:59 PM,01/25/2012 06:42:05 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 07:21:17 PM,1500 Block of BURROWS ST,SF,94134,B09,43,6151,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.7250411390585, -122.418375632082)",120250321-E43 +140150384,E05,14005304,Medical Incident,01/15/2014,01/15/2014,01/15/2014 09:36:07 PM,01/15/2014 09:36:20 PM,01/15/2014 09:36:54 PM,01/15/2014 09:38:14 PM,01/15/2014 09:39:55 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 09:44:23 PM,GOLDEN GATE AV/PIERCE ST,SF,94115,B05,5,3643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7791448777938, -122.435241012307)",140150384-E05 +160312763,87,16012265,Traffic Collision,01/31/2016,01/31/2016,01/31/2016 05:28:11 PM,01/31/2016 05:28:11 PM,01/31/2016 05:30:12 PM,01/31/2016 05:30:12 PM,01/31/2016 05:37:13 PM,01/31/2016 05:47:16 PM,01/31/2016 06:28:49 PM,Code 2 Transport,01/31/2016 06:37:53 PM,FELL ST/MASONIC AV,San Francisco,94117,B05,21,4356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",160312763-87 +132210120,85,13074575,Medical Incident,08/09/2013,08/09/2013,08/09/2013 11:24:29 AM,08/09/2013 11:25:58 AM,08/09/2013 11:26:16 AM,08/09/2013 11:26:39 AM,08/09/2013 11:34:41 AM,08/09/2013 11:49:04 AM,08/09/2013 12:07:37 PM,Code 2 Transport,08/09/2013 01:12:59 PM,SILVER AV/MISSION ST,SF,94112,B09,32,6113,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",132210120-85 +120850137,T01,12028202,Medical Incident,03/25/2012,03/25/2012,03/25/2012 11:18:01 AM,03/25/2012 11:18:35 AM,03/25/2012 11:19:16 AM,03/25/2012 11:20:29 AM,03/25/2012 11:21:59 AM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 11:28:12 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,E,1,2,false,Non Life-threatening,1,TRUCK,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",120850137-T01 +131620136,KM02,13055004,Medical Incident,06/11/2013,06/11/2013,06/11/2013 11:05:31 AM,06/11/2013 11:05:31 AM,06/11/2013 11:08:37 AM,04/25/2016 01:52:21 PM,06/11/2013 11:15:57 AM,06/11/2013 11:26:30 AM,06/11/2013 11:35:24 AM,Code 2 Transport,06/11/2013 12:07:00 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",131620136-KM02 +122490289,E10,12082450,Medical Incident,09/05/2012,09/05/2012,09/05/2012 07:30:48 PM,09/05/2012 07:32:57 PM,09/05/2012 07:36:51 PM,09/05/2012 07:38:02 PM,09/05/2012 07:42:47 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/05/2012 07:59:30 PM,600 Block of MASONIC AVE,SF,94117,B05,21,4463,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7753450059379, -122.446308915832)",122490289-E10 +140500158,T03,14016960,Administrative,02/19/2014,02/19/2014,02/19/2014 12:51:59 PM,02/19/2014 12:52:19 PM,02/19/2014 12:52:53 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Other,02/19/2014 12:53:19 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",140500158-T03 +160700506,AM24,16027733,Medical Incident,03/10/2016,03/09/2016,03/10/2016 06:58:51 AM,03/10/2016 07:01:19 AM,03/10/2016 07:02:15 AM,03/10/2016 07:02:56 AM,03/10/2016 07:08:20 AM,03/10/2016 07:31:52 AM,03/10/2016 07:47:38 AM,Code 2 Transport,03/10/2016 08:13:53 AM,400 Block of 20TH AV,San Francisco,94121,B07,14,7172,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7793747229345, -122.479242794921)",160700506-AM24 +132690364,B02,13091512,Alarms,09/26/2013,09/26/2013,09/26/2013 09:33:21 PM,09/26/2013 09:34:50 PM,09/26/2013 09:35:08 PM,09/26/2013 09:36:13 PM,09/26/2013 09:38:36 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/26/2013 09:43:33 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7777263414712, -122.409605982336)",132690364-B02 +131740079,E01,13058956,Medical Incident,06/23/2013,06/22/2013,06/23/2013 05:16:18 AM,06/23/2013 05:17:32 AM,06/23/2013 05:18:23 AM,06/23/2013 05:21:01 AM,06/23/2013 05:23:49 AM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Other,06/23/2013 05:31:33 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",131740079-E01 +130450396,E01,13015432,Medical Incident,02/14/2013,02/14/2013,02/14/2013 09:47:37 PM,02/14/2013 09:48:08 PM,02/14/2013 09:48:24 PM,02/14/2013 09:49:31 PM,02/14/2013 09:52:28 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/14/2013 09:59:48 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130450396-E01 +120600105,B03,12019690,Alarms,02/29/2012,02/29/2012,02/29/2012 09:31:24 AM,02/29/2012 09:32:36 AM,02/29/2012 09:33:52 AM,02/29/2012 09:34:36 AM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Other,02/29/2012 09:44:39 AM,200 Block of SAN BRUNO AVE,SF,94103,B02,29,2352,3,3,3,false,Alarm,1,CHIEF,3,2,10,Mission,"(37.7665461381925, -122.405715479775)",120600105-B03 +160592608,67,16023625,Medical Incident,02/28/2016,02/28/2016,02/28/2016 06:12:23 PM,02/28/2016 06:13:34 PM,02/28/2016 06:13:43 PM,02/28/2016 06:13:50 PM,02/28/2016 06:16:52 PM,02/28/2016 06:29:12 PM,02/28/2016 06:42:42 PM,Code 2 Transport,02/28/2016 07:27:52 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160592608-67 +160290393,64,16011322,Medical Incident,01/29/2016,01/28/2016,01/29/2016 04:55:51 AM,01/29/2016 04:55:51 AM,01/29/2016 04:56:48 AM,01/29/2016 04:57:45 AM,01/29/2016 05:04:30 AM,01/29/2016 05:18:52 AM,01/29/2016 05:39:53 AM,Code 2 Transport,01/29/2016 06:04:47 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",160290393-64 +123120027,B04,12103711,Structure Fire,11/07/2012,11/06/2012,11/07/2012 02:47:01 AM,11/07/2012 02:49:37 AM,11/07/2012 02:50:17 AM,11/07/2012 02:51:59 AM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/07/2012 03:22:22 AM,1700 Block of BEACH ST,SF,94123,B04,16,3564,3,3,3,false,Alarm,1,CHIEF,9,4,2,Marina,"(37.804214022581, -122.43864061945)",123120027-B04 +102720337,54,10086491,Medical Incident,09/29/2010,09/29/2010,09/29/2010 08:04:39 PM,09/29/2010 08:04:56 PM,09/29/2010 08:05:20 PM,09/29/2010 08:05:53 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Patient Declined Transport,09/29/2010 08:19:35 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",102720337-54 +160554186,AM24,16022189,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:13:22 PM,02/24/2016 11:14:57 PM,02/24/2016 11:16:07 PM,02/24/2016 11:16:39 PM,02/24/2016 11:21:19 PM,02/24/2016 11:44:01 PM,02/25/2016 12:13:23 AM,Code 2 Transport,02/25/2016 12:40:52 AM,2500 Block of GREENWICH ST,San Francisco,94123,B04,16,4166,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.798163952853, -122.44162207097)",160554186-AM24 +160542578,KM04,16021679,Medical Incident,02/23/2016,02/23/2016,02/23/2016 04:06:07 PM,02/23/2016 04:10:15 PM,02/23/2016 04:11:03 PM,02/23/2016 04:12:55 PM,02/23/2016 04:32:11 PM,02/23/2016 04:48:12 PM,02/23/2016 04:57:35 PM,Code 2 Transport,02/23/2016 05:51:44 PM,19TH ST/SAN CARLOS ST,San Francisco,94110,B06,7,5434,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7601889101757, -122.419974947649)",160542578-KM04 +123370168,E05,12112140,Alarms,12/02/2012,12/01/2012,12/02/2012 06:48:19 AM,12/02/2012 06:50:19 AM,12/02/2012 06:50:28 AM,12/02/2012 06:51:57 AM,12/02/2012 06:53:24 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 07:01:08 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",123370168-E05 +123540250,KM09,12118497,Medical Incident,12/19/2012,12/19/2012,12/19/2012 02:52:14 PM,12/19/2012 02:52:50 PM,12/19/2012 02:53:06 PM,12/19/2012 02:54:02 PM,12/19/2012 02:58:59 PM,12/19/2012 03:13:38 PM,12/19/2012 03:26:13 PM,Code 2 Transport,12/19/2012 03:47:27 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",123540250-KM09 +132360310,T05,13079752,Structure Fire,08/24/2013,08/24/2013,08/24/2013 09:54:08 PM,08/24/2013 09:54:28 PM,08/24/2013 09:54:56 PM,08/24/2013 09:56:02 PM,08/24/2013 09:58:18 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/24/2013 10:02:34 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,5,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",132360310-T05 +111870167,81,11061804,Medical Incident,07/06/2011,07/06/2011,07/06/2011 11:52:03 AM,07/06/2011 11:53:18 AM,07/06/2011 11:53:33 AM,07/06/2011 11:53:58 AM,07/06/2011 11:59:38 AM,07/06/2011 12:23:22 PM,07/06/2011 12:27:26 PM,Code 2 Transport,07/06/2011 12:58:44 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,2,2,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",111870167-81 +160101398,88,16004026,Medical Incident,01/10/2016,01/10/2016,01/10/2016 12:03:54 PM,01/10/2016 12:04:32 PM,01/10/2016 12:04:41 PM,01/10/2016 12:05:13 PM,01/10/2016 12:12:39 PM,01/10/2016 12:34:38 PM,01/10/2016 12:42:23 PM,Code 2 Transport,01/10/2016 01:19:55 PM,GEARY BL/GOUGH ST,San Francisco,94109,B04,3,3222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7853346212295, -122.4246870426)",160101398-88 +110730323,65,11024124,Traffic Collision,03/14/2011,03/14/2011,03/14/2011 06:52:34 PM,03/14/2011 06:53:36 PM,03/14/2011 06:54:08 PM,03/14/2011 06:54:38 PM,03/14/2011 06:56:51 PM,03/14/2011 07:21:48 PM,03/14/2011 07:32:55 PM,Code 2 Transport,03/14/2011 07:49:37 PM,LEAVENWORTH ST/MCALLISTER ST,SF,94102,B02,3,1553,2,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",110730323-65 +121800171,RA48,12059911,Medical Incident,06/28/2012,06/28/2012,06/28/2012 12:02:58 PM,06/28/2012 12:04:25 PM,06/28/2012 12:04:49 PM,06/28/2012 12:07:16 PM,06/28/2012 12:07:41 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/28/2012 01:05:54 PM,1400 Block of HALIBUT CT,TI,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",121800171-RA48 +132800184,KM02,13095284,Medical Incident,10/07/2013,10/07/2013,10/07/2013 12:32:10 PM,10/07/2013 12:32:30 PM,10/07/2013 12:33:01 PM,10/07/2013 12:33:38 PM,04/25/2016 01:50:23 PM,10/07/2013 12:55:22 PM,10/07/2013 01:06:36 PM,Code 2 Transport,10/07/2013 01:53:37 PM,4700 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7806274376634, -122.470163577078)",132800184-KM02 +112750368,83,11091172,Medical Incident,10/02/2011,10/02/2011,10/02/2011 09:25:25 PM,10/02/2011 09:27:02 PM,10/02/2011 09:27:16 PM,10/02/2011 09:27:53 PM,10/02/2011 09:34:09 PM,10/02/2011 09:44:31 PM,10/02/2011 10:00:09 PM,Code 2 Transport,10/02/2011 10:13:43 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",112750368-83 +121820257,E07,12060667,Odor (Strange / Unknown),06/30/2012,06/30/2012,06/30/2012 04:22:30 PM,06/30/2012 04:25:06 PM,06/30/2012 04:25:27 PM,06/30/2012 04:26:30 PM,06/30/2012 04:28:22 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,06/30/2012 05:08:55 PM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7576217212029, -122.418887293065)",121820257-E07 +160853509,KM07,16033946,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:19:47 PM,03/25/2016 08:21:32 PM,03/25/2016 08:22:20 PM,03/25/2016 08:23:06 PM,03/25/2016 08:28:59 PM,03/25/2016 08:36:06 PM,03/25/2016 08:46:15 PM,Code 2 Transport,03/25/2016 09:00:27 PM,FERN ST/VAN NESS AV,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Nob Hill,"(37.7880011777275, -122.421954907158)",160853509-KM07 +112500346,E19,11082591,Alarms,09/07/2011,09/07/2011,09/07/2011 10:10:28 PM,09/07/2011 10:12:35 PM,09/07/2011 10:12:53 PM,09/07/2011 10:14:44 PM,09/07/2011 10:16:55 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 10:26:36 PM,0 Block of HUNTINGTON DR,SF,94132,B08,19,8825,3,3,3,true,,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7308419657174, -122.495954672307)",112500346-E19 +160662227,KM06,16026441,Medical Incident,03/06/2016,03/06/2016,03/06/2016 04:13:49 PM,03/06/2016 04:21:26 PM,03/06/2016 04:24:13 PM,03/06/2016 04:24:53 PM,03/06/2016 04:35:05 PM,03/06/2016 05:06:50 PM,03/06/2016 05:50:13 PM,Code 2 Transport,03/06/2016 06:22:09 PM,0 Block of NORTON ST,San Francisco,94112,B09,43,6117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7250514707571, -122.435709128534)",160662227-KM06 +160463869,53,16018729,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:47:44 PM,02/15/2016 10:48:28 PM,02/15/2016 10:48:46 PM,02/15/2016 10:48:54 PM,02/15/2016 10:54:19 PM,02/15/2016 11:04:50 PM,02/15/2016 11:22:19 PM,Code 2 Transport,02/16/2016 12:02:00 AM,3100 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7483773808375, -122.412579951922)",160463869-53 +160700408,KM03,16027723,Medical Incident,03/10/2016,03/09/2016,03/10/2016 05:52:33 AM,03/10/2016 06:01:58 AM,03/10/2016 06:03:00 AM,03/10/2016 06:03:53 AM,03/10/2016 06:15:47 AM,03/10/2016 06:25:49 AM,03/10/2016 06:35:24 AM,Code 2 Transport,03/10/2016 06:58:13 AM,400 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7394012528109, -122.406844256277)",160700408-KM03 +102310335,T15,10072833,Odor (Strange / Unknown),08/19/2010,08/19/2010,08/19/2010 09:46:33 PM,08/19/2010 09:48:58 PM,08/19/2010 09:49:04 PM,08/19/2010 09:50:55 PM,08/19/2010 09:53:35 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 10:00:55 PM,300 Block of MONTEREY BLVD,SF,94131,B09,15,8221,3,3,3,false,,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7314701616832, -122.443153050662)",102310335-T15 +111740302,E33,11057493,Structure Fire,06/23/2011,06/23/2011,06/23/2011 08:26:40 PM,06/23/2011 08:26:40 PM,06/23/2011 08:27:27 PM,06/23/2011 08:29:44 PM,06/23/2011 08:30:29 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,06/23/2011 08:30:37 PM,MISSION ST/WHIPPLE AV,SF,94112,B09,33,6211,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7107485232235, -122.447672441304)",111740302-E33 +102600023,T16,10082033,Alarms,09/17/2010,09/16/2010,09/17/2010 01:35:16 AM,09/17/2010 01:36:19 AM,09/17/2010 01:36:26 AM,09/17/2010 01:38:15 AM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 01:43:34 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,false,,1,TRUCK,3,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",102600023-T16 +160351903,55,16013832,Medical Incident,02/04/2016,02/04/2016,02/04/2016 01:25:27 PM,02/04/2016 01:27:00 PM,02/04/2016 01:27:05 PM,02/04/2016 01:27:23 PM,02/04/2016 01:40:57 PM,02/04/2016 02:16:16 PM,02/04/2016 02:38:18 PM,Code 2 Transport,02/04/2016 03:29:56 PM,CESAR CHAVEZ ST/MISSION ST,San Francisco,94110,B06,11,5624,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7481656900206, -122.418221171762)",160351903-55 +160250581,79,16009808,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:49:54 AM,01/25/2016 06:51:27 AM,01/25/2016 06:51:37 AM,01/25/2016 06:51:43 AM,01/25/2016 06:56:42 AM,01/25/2016 07:38:39 AM,01/25/2016 07:48:18 AM,Code 3 Transport,01/25/2016 09:07:41 AM,0 Block of OLIVER ST,San Francisco,94112,B09,33,6212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7089572929212, -122.450109167213)",160250581-79 +122670241,54,12088271,Medical Incident,09/23/2012,09/23/2012,09/23/2012 04:19:01 PM,09/23/2012 04:22:25 PM,09/23/2012 04:28:38 PM,09/23/2012 04:28:48 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 04:38:35 PM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",122670241-54 +121050229,KM01,12034805,Medical Incident,04/14/2012,04/14/2012,04/14/2012 02:26:24 PM,04/14/2012 02:27:05 PM,04/14/2012 02:27:51 PM,04/14/2012 02:28:30 PM,04/14/2012 02:36:15 PM,04/14/2012 02:48:49 PM,04/14/2012 03:09:54 PM,Code 2 Transport,04/14/2012 03:36:29 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",121050229-KM01 +131880251,92,13064158,Medical Incident,07/07/2013,07/07/2013,07/07/2013 04:50:56 PM,07/07/2013 04:51:14 PM,07/07/2013 04:51:54 PM,07/07/2013 04:52:09 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,04/25/2016 01:51:54 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,2,2,false,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",131880251-92 +160180790,53,16007161,Medical Incident,01/18/2016,01/18/2016,01/18/2016 08:53:51 AM,01/18/2016 08:55:47 AM,01/18/2016 08:56:13 AM,01/18/2016 08:56:24 AM,01/18/2016 09:00:10 AM,01/18/2016 09:27:26 AM,01/18/2016 09:33:20 AM,Code 2 Transport,01/18/2016 10:37:02 AM,500 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7860096412795, -122.416458282406)",160180790-53 +122960128,E43,12098105,Structure Fire,10/22/2012,10/22/2012,10/22/2012 10:29:52 AM,10/22/2012 10:29:56 AM,10/22/2012 10:31:07 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 10:31:36 AM,200 Block of ONEIDA AVE,SF,94112,B09,15,828,3,3,3,false,Alarm,1,ENGINE,2,9,11,Outer Mission,"(37.7218642111521, -122.442994070235)",122960128-E43 +123390102,T05,12112997,Medical Incident,12/04/2012,12/04/2012,12/04/2012 09:36:43 AM,12/04/2012 09:37:47 AM,12/04/2012 09:38:46 AM,12/04/2012 09:41:59 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 09:42:10 AM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",123390102-T05 +130710231,E07,13023732,Medical Incident,03/12/2013,03/12/2013,03/12/2013 03:15:58 PM,03/12/2013 03:17:56 PM,03/12/2013 03:18:10 PM,03/12/2013 03:19:10 PM,03/12/2013 03:21:45 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,No Merit,03/12/2013 03:22:32 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",130710231-E07 +113600037,87,11119524,Medical Incident,12/26/2011,12/25/2011,12/26/2011 02:47:25 AM,12/26/2011 02:48:22 AM,12/26/2011 02:49:07 AM,12/26/2011 02:49:12 AM,12/26/2011 03:00:44 AM,12/26/2011 03:18:38 AM,12/26/2011 03:29:39 AM,Code 2 Transport,12/26/2011 04:03:11 AM,MORAGA ST/34TH AV,SF,94122,B08,18,7542,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7553984811476, -122.492675384053)",113600037-87 +131130362,T09,13038256,Structure Fire,04/23/2013,04/23/2013,04/23/2013 09:25:13 PM,04/23/2013 09:25:42 PM,04/23/2013 09:25:50 PM,04/23/2013 09:27:26 PM,04/23/2013 10:16:48 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Fire,04/23/2013 10:30:01 PM,600 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,false,Alarm,1,TRUCK,4,6,9,Bernal Heights,"(37.7389128649709, -122.4155498834)",131130362-T09 +120630178,E02,12020742,Alarms,03/03/2012,03/03/2012,03/03/2012 11:39:10 AM,03/03/2012 11:40:21 AM,03/03/2012 11:40:27 AM,03/03/2012 11:40:41 AM,03/03/2012 11:42:17 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 11:49:19 AM,0 Block of EMERY LN,SF,94133,B01,2,1333,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",120630178-E02 +132510287,D2,13084895,Structure Fire,09/08/2013,09/08/2013,09/08/2013 04:29:13 PM,09/08/2013 04:29:49 PM,09/08/2013 04:30:27 PM,09/08/2013 04:31:56 PM,09/08/2013 04:34:40 PM,04/25/2016 01:50:53 PM,04/25/2016 01:50:53 PM,Other,09/08/2013 04:36:58 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,CHIEF,7,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",132510287-D2 +121180011,E32,12038947,Medical Incident,04/27/2012,04/26/2012,04/27/2012 01:11:39 AM,04/27/2012 01:13:16 AM,04/27/2012 01:13:31 AM,04/27/2012 01:14:54 AM,04/27/2012 01:18:32 AM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,Other,04/27/2012 01:21:22 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",121180011-E32 +132680400,E06,13091166,Medical Incident,09/25/2013,09/25/2013,09/25/2013 09:15:20 PM,09/25/2013 09:16:44 PM,09/25/2013 09:18:00 PM,09/25/2013 09:19:27 PM,09/25/2013 09:30:02 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 09:30:30 PM,3600 Block of 17TH ST,SF,94114,B02,6,5251,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7628765970526, -122.427832473842)",132680400-E06 +160382785,72,16015323,Medical Incident,02/07/2016,02/07/2016,02/07/2016 05:58:31 PM,02/07/2016 06:00:24 PM,02/07/2016 06:01:04 PM,02/07/2016 06:01:10 PM,02/07/2016 06:05:05 PM,02/07/2016 06:14:03 PM,02/07/2016 06:27:03 PM,Code 2 Transport,02/07/2016 06:39:39 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160382785-72 +160252848,76,16010031,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:37:30 PM,01/25/2016 05:39:08 PM,01/25/2016 05:39:34 PM,01/25/2016 05:39:44 PM,01/25/2016 05:52:07 PM,01/25/2016 06:02:11 PM,01/25/2016 06:17:41 PM,Code 2 Transport,01/25/2016 06:46:08 PM,KEARNY ST/THE EMBARCADERO NOR,San Francisco,94133,B01,28,1255,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8069201392457, -122.407170160416)",160252848-76 +103360253,E03,10107537,Alarms,12/02/2010,12/02/2010,12/02/2010 03:56:11 PM,12/02/2010 03:57:12 PM,12/02/2010 03:57:25 PM,12/02/2010 03:58:25 PM,12/02/2010 04:00:14 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/02/2010 04:04:50 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",103360253-E03 +120740266,KM10,12024618,Medical Incident,03/14/2012,03/14/2012,03/14/2012 03:59:36 PM,03/14/2012 04:01:12 PM,03/14/2012 04:02:05 PM,03/14/2012 04:04:22 PM,03/14/2012 04:08:26 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,No Merit,03/14/2012 04:15:37 PM,1400 Block of PINE ST,SF,94109,B04,3,3122,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",120740266-KM10 +122820088,E03,12093273,Medical Incident,10/08/2012,10/08/2012,10/08/2012 08:58:47 AM,10/08/2012 09:02:40 AM,10/08/2012 09:04:30 AM,10/08/2012 09:07:10 AM,10/08/2012 09:07:15 AM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/08/2012 09:11:47 AM,LARKIN ST/OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",122820088-E03 +122130327,T18,12070821,Structure Fire,07/31/2012,07/31/2012,07/31/2012 08:03:55 PM,07/31/2012 08:04:09 PM,07/31/2012 08:04:44 PM,07/31/2012 08:05:51 PM,07/31/2012 08:10:05 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 08:12:36 PM,2000 Block of 17TH AVE,SF,94116,B08,40,7374,3,3,3,false,Fire,1,TRUCK,4,8,7,Inner Sunset,"(37.7496688750251, -122.474079548808)",122130327-T18 +131900130,77,13064678,Medical Incident,07/09/2013,07/09/2013,07/09/2013 10:01:25 AM,07/09/2013 10:02:04 AM,07/09/2013 10:02:19 AM,07/09/2013 10:03:31 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 10:05:51 AM,100 Block of SAN BENITO WAY,SF,94127,B08,39,8556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7339984907458, -122.466997609154)",131900130-77 +160471613,88,16018911,Medical Incident,02/16/2016,02/16/2016,02/16/2016 12:16:58 PM,02/16/2016 12:19:21 PM,02/16/2016 12:19:56 PM,02/16/2016 12:20:21 PM,02/16/2016 12:35:34 PM,02/16/2016 12:54:02 PM,02/16/2016 01:22:38 PM,Code 2 Transport,02/16/2016 02:16:56 PM,300 Block of WESTGATE DR,San Francisco,94127,B09,39,8536,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7312040896508, -122.464042980506)",160471613-88 +160310059,53,16012008,Medical Incident,01/31/2016,01/30/2016,01/31/2016 12:18:19 AM,01/31/2016 12:20:01 AM,01/31/2016 12:37:22 AM,01/31/2016 12:37:41 AM,01/31/2016 12:49:31 AM,01/31/2016 01:04:29 AM,01/31/2016 01:12:25 AM,Code 2 Transport,01/31/2016 02:09:51 AM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",160310059-53 +160602974,73,16024033,Traffic Collision,02/29/2016,02/29/2016,02/29/2016 06:46:34 PM,02/29/2016 06:46:34 PM,02/29/2016 06:46:34 PM,02/29/2016 06:46:34 PM,02/29/2016 06:46:34 PM,02/29/2016 07:21:04 PM,02/29/2016 07:39:04 PM,Code 2 Transport,02/29/2016 08:02:30 PM,LAGUNA HONDA BL/MERCED AV,San Francisco,94127,B08,20,8641,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7466425954476, -122.458696223627)",160602974-73 +160050178,KM03,16001826,Medical Incident,01/05/2016,01/04/2016,01/05/2016 01:56:51 AM,01/05/2016 01:58:16 AM,01/05/2016 01:58:37 AM,01/05/2016 01:59:06 AM,01/05/2016 02:05:30 AM,01/05/2016 02:32:35 AM,01/05/2016 02:49:53 AM,Code 2 Transport,01/05/2016 03:25:04 AM,100 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",160050178-KM03 +102900098,T01,10092448,Structure Fire,10/17/2010,10/17/2010,10/17/2010 08:32:14 AM,10/17/2010 08:33:55 AM,10/17/2010 08:34:07 AM,10/17/2010 08:35:41 AM,10/17/2010 08:37:55 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 12:25:12 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,false,,2,TRUCK,4,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",102900098-T01 +122530072,E41,12083566,Structure Fire,09/09/2012,09/08/2012,09/09/2012 05:09:10 AM,09/09/2012 05:09:11 AM,09/09/2012 05:09:24 AM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,Other,09/09/2012 05:10:35 AM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,false,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7832878520296, -122.408952160052)",122530072-E41 +121840145,E03,12061262,Medical Incident,07/02/2012,07/02/2012,07/02/2012 12:07:06 PM,07/02/2012 12:09:21 PM,07/02/2012 12:09:30 PM,07/02/2012 12:09:37 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 12:12:53 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",121840145-E03 +121670082,E17,12055316,Structure Fire,06/15/2012,06/15/2012,06/15/2012 09:26:38 AM,06/15/2012 09:27:57 AM,06/15/2012 09:28:31 AM,06/15/2012 09:30:03 AM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/15/2012 09:35:11 AM,600 Block of DARTMOUTH ST,SF,94134,B09,42,6321,3,3,3,true,Fire,1,ENGINE,7,9,9,Portola,"(37.7225903835958, -122.410184675078)",121670082-E17 +133280212,KM09,13111489,Medical Incident,11/24/2013,11/24/2013,11/24/2013 03:26:30 PM,11/24/2013 03:27:27 PM,11/24/2013 03:28:02 PM,11/24/2013 03:28:55 PM,11/24/2013 03:32:29 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 03:34:26 PM,400 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7864592940991, -122.411489016028)",133280212-KM09 +131390410,KM01,13047200,Traffic Collision,05/19/2013,05/19/2013,05/19/2013 08:09:32 PM,05/19/2013 08:09:32 PM,05/19/2013 08:10:01 PM,05/19/2013 08:11:26 PM,05/19/2013 08:16:49 PM,05/19/2013 08:31:41 PM,05/19/2013 08:47:51 PM,Code 2 Transport,05/19/2013 09:21:56 PM,STANYAN ST/FULTON ST,SF,94122,B07,21,4561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,5,7,1,Lone Mountain/USF,"(37.7747554836103, -122.454682645753)",131390410-KM01 +131850353,E22,13063193,Medical Incident,07/04/2013,07/04/2013,07/04/2013 09:40:04 PM,07/04/2013 09:40:52 PM,07/04/2013 09:41:05 PM,07/04/2013 09:42:52 PM,07/04/2013 09:45:39 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 09:46:28 PM,1200 Block of 26TH AVE,SF,94122,B08,22,7452,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7641771031678, -122.484623655457)",131850353-E22 +112240207,T02,11074009,Structure Fire,08/12/2011,08/12/2011,08/12/2011 01:16:45 PM,08/12/2011 01:16:45 PM,08/12/2011 01:16:56 PM,08/12/2011 01:18:29 PM,08/12/2011 01:20:16 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 01:25:02 PM,900 Block of WASHINGTON ST,SF,94108,B01,2,132,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7948784682471, -122.409042836272)",112240207-T02 +160811965,53,16032199,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:52:37 PM,03/21/2016 01:54:47 PM,03/21/2016 01:55:15 PM,03/21/2016 01:56:07 PM,03/21/2016 02:00:44 PM,03/21/2016 02:24:51 PM,03/21/2016 02:36:08 PM,Code 2 Transport,03/21/2016 03:18:49 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160811965-53 +102240330,95,10070673,Medical Incident,08/12/2010,08/12/2010,08/12/2010 09:15:53 PM,08/12/2010 09:19:20 PM,08/12/2010 09:19:41 PM,08/12/2010 09:20:08 PM,08/12/2010 09:27:42 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,No Merit,08/12/2010 09:32:06 PM,0 Block of RUTH ST,SF,94112,B09,43,6121,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7232126211966, -122.436631289328)",102240330-95 +160482301,88,16019384,Medical Incident,02/17/2016,02/17/2016,02/17/2016 02:35:06 PM,02/17/2016 02:35:47 PM,02/17/2016 02:37:00 PM,02/17/2016 02:37:12 PM,02/17/2016 02:41:58 PM,02/17/2016 03:03:38 PM,02/17/2016 03:17:37 PM,Code 2 Transport,02/17/2016 03:55:29 PM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",160482301-88 +160383090,70,16015362,Medical Incident,02/07/2016,02/07/2016,02/07/2016 07:43:45 PM,02/07/2016 07:43:45 PM,02/07/2016 07:44:07 PM,02/07/2016 07:44:17 PM,02/07/2016 07:49:10 PM,02/07/2016 08:03:59 PM,02/07/2016 08:07:58 PM,Code 2 Transport,02/07/2016 09:00:53 PM,MCALLISTER ST/HYDE ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160383090-70 +160761933,55,16030159,Medical Incident,03/16/2016,03/16/2016,03/16/2016 01:24:06 PM,03/16/2016 01:24:06 PM,03/16/2016 01:25:53 PM,03/16/2016 01:26:03 PM,03/16/2016 01:40:54 PM,03/16/2016 02:25:35 PM,03/16/2016 02:34:47 PM,Code 2 Transport,03/16/2016 03:24:12 PM,5800 Block of GEARY BL,San Francisco,94121,B07,14,7172,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7803347831588, -122.482059336192)",160761933-55 +131040026,79,13034790,Medical Incident,04/14/2013,04/13/2013,04/14/2013 01:13:16 AM,04/14/2013 01:13:47 AM,04/14/2013 01:14:10 AM,04/14/2013 01:14:22 AM,04/14/2013 01:22:20 AM,04/14/2013 01:33:28 AM,04/14/2013 01:41:23 AM,Code 2 Transport,04/14/2013 01:55:16 AM,BROADWAY/KEARNY ST,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7980169557217, -122.40547307119)",131040026-79 +110760051,E01,11024888,Medical Incident,03/17/2011,03/16/2011,03/17/2011 05:07:40 AM,03/17/2011 05:09:44 AM,03/17/2011 05:09:54 AM,03/17/2011 05:12:59 AM,03/17/2011 05:17:53 AM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 05:25:19 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,2,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",110760051-E01 +160241813,50,16009540,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:46:31 PM,01/24/2016 01:49:41 PM,01/24/2016 01:49:54 PM,01/24/2016 01:50:01 PM,01/24/2016 02:04:47 PM,01/24/2016 02:28:49 PM,01/24/2016 02:39:09 PM,Code 2 Transport,01/24/2016 03:34:38 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",160241813-50 +110850321,E03,11028154,Medical Incident,03/26/2011,03/26/2011,03/26/2011 07:01:43 PM,03/26/2011 07:02:00 PM,03/26/2011 07:13:16 PM,03/26/2011 07:13:30 PM,03/26/2011 07:15:45 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 07:53:15 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",110850321-E03 +112040391,E33,11067576,Medical Incident,07/23/2011,07/23/2011,07/23/2011 11:37:35 PM,07/23/2011 11:38:13 PM,07/23/2011 11:38:29 PM,07/23/2011 11:40:18 PM,07/23/2011 11:42:40 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 11:49:24 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7166586779316, -122.474310774336)",112040391-E33 +160153654,71,16006165,Medical Incident,01/15/2016,01/15/2016,01/15/2016 08:53:28 PM,01/15/2016 08:54:34 PM,01/15/2016 08:55:00 PM,01/15/2016 08:57:52 PM,01/15/2016 09:14:07 PM,01/15/2016 09:40:03 PM,01/15/2016 09:59:33 PM,Code 2 Transport,01/15/2016 10:49:25 PM,"13TH ST/GATEVIEW AV, TI",Treasure Isla,94130,B03,48,2931,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8281641396783, -122.377094979291)",160153654-71 +140290362,E24,14010045,Medical Incident,01/29/2014,01/29/2014,01/29/2014 10:42:57 PM,01/29/2014 10:45:25 PM,01/29/2014 10:45:50 PM,01/29/2014 10:47:41 PM,01/29/2014 10:49:36 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/29/2014 10:57:04 PM,21ST ST/DOUGLASS ST,SF,94114,B06,24,5463,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7554336380044, -122.438864310832)",140290362-E24 +102950366,E31,10094239,Alarms,10/22/2010,10/22/2010,10/22/2010 09:09:27 PM,10/22/2010 09:10:37 PM,10/22/2010 09:10:46 PM,10/22/2010 09:12:01 PM,10/22/2010 09:15:07 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/22/2010 09:25:35 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,3,3,3,true,,1,ENGINE,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",102950366-E31 +103090347,94,10099183,Medical Incident,11/05/2010,11/05/2010,11/05/2010 09:11:48 PM,11/05/2010 09:13:43 PM,11/05/2010 09:14:00 PM,11/05/2010 09:14:26 PM,11/05/2010 09:17:45 PM,11/05/2010 09:47:14 PM,11/05/2010 10:08:59 PM,Code 2 Transport,11/05/2010 10:38:37 PM,300 Block of GENNESSEE ST,SF,94112,B09,15,8234,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7311086806598, -122.451212894413)",103090347-94 +121260152,E01,12041850,Medical Incident,05/05/2012,05/05/2012,05/05/2012 10:06:00 AM,05/05/2012 10:06:13 AM,05/05/2012 10:06:40 AM,05/05/2012 10:09:58 AM,05/05/2012 10:11:21 AM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 10:17:09 AM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",121260152-E01 +112090269,E13,11069075,Medical Incident,07/28/2011,07/28/2011,07/28/2011 04:49:29 PM,07/28/2011 04:51:07 PM,07/28/2011 04:51:39 PM,07/28/2011 04:52:33 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 04:55:06 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",112090269-E13 +120820067,RC1,12027133,Medical Incident,03/22/2012,03/22/2012,03/22/2012 08:17:24 AM,03/22/2012 08:18:31 AM,03/22/2012 08:18:47 AM,03/22/2012 08:23:22 AM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Other,03/22/2012 08:24:53 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",120820067-RC1 +122880088,86,12095204,Medical Incident,10/14/2012,10/13/2012,10/14/2012 07:05:54 AM,10/14/2012 07:06:47 AM,10/14/2012 07:08:10 AM,10/14/2012 07:09:46 AM,10/14/2012 07:22:22 AM,10/14/2012 07:32:09 AM,10/14/2012 07:54:54 AM,Code 2 Transport,10/14/2012 08:31:48 AM,700 Block of STANYAN ST,SF,94117,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",122880088-86 +113030404,E22,11100745,Outside Fire,10/30/2011,10/30/2011,10/30/2011 09:15:42 PM,10/30/2011 09:16:58 PM,10/30/2011 09:17:11 PM,10/30/2011 09:18:04 PM,10/30/2011 09:21:06 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Fire,10/30/2011 09:25:11 PM,24TH AV/JUDAH ST,SF,94122,B08,22,7453,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614644208149, -122.48235209902)",113030404-E22 +103400266,E07,10108897,Medical Incident,12/06/2010,12/06/2010,12/06/2010 04:18:53 PM,12/06/2010 04:20:50 PM,12/06/2010 04:22:32 PM,12/06/2010 04:24:13 PM,12/06/2010 04:26:48 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Other,12/06/2010 04:48:27 PM,800 Block of POTRERO AVE,SF,94110,B10,7,255,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",103400266-E07 +160830380,KM07,16032838,Medical Incident,03/23/2016,03/22/2016,03/23/2016 04:42:19 AM,03/23/2016 04:42:19 AM,03/23/2016 04:42:57 AM,03/23/2016 04:51:21 AM,03/23/2016 04:58:32 AM,03/23/2016 05:11:44 AM,03/23/2016 05:24:11 AM,Code 2 Transport,03/23/2016 06:03:26 AM,TABER PL/3RD ST,San Francisco,94107,B03,8,2174,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7810621398035, -122.395517753822)",160830380-KM07 +122020085,AM02,12067031,Medical Incident,07/20/2012,07/19/2012,07/20/2012 07:03:58 AM,07/20/2012 07:04:34 AM,07/20/2012 07:05:57 AM,07/20/2012 07:06:52 AM,07/20/2012 07:11:49 AM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 07:54:40 AM,2500 Block of 47TH AVE,SF,94116,B08,23,7712,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.738928542073, -122.505563264161)",122020085-AM02 +132510088,E21,13084729,Medical Incident,09/08/2013,09/07/2013,09/08/2013 05:59:25 AM,09/08/2013 06:00:09 AM,09/08/2013 06:00:36 AM,09/08/2013 06:01:42 AM,09/08/2013 06:03:24 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 06:14:22 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",132510088-E21 +160340797,AM08,16013282,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:43:08 AM,02/03/2016 08:44:27 AM,02/03/2016 08:44:56 AM,02/03/2016 08:45:04 AM,02/03/2016 09:19:13 AM,02/03/2016 09:19:14 AM,02/03/2016 09:45:11 AM,Code 2 Transport,02/03/2016 10:01:45 AM,0 Block of COLLINS ST,San Francisco,94118,B05,10,4373,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.785277764485, -122.450305788594)",160340797-AM08 +160570617,79,16022639,Medical Incident,02/26/2016,02/25/2016,02/26/2016 07:24:35 AM,02/26/2016 07:26:12 AM,02/26/2016 07:26:37 AM,02/26/2016 07:26:47 AM,02/26/2016 07:46:09 AM,02/26/2016 08:12:32 AM,02/26/2016 08:39:49 AM,Code 2 Transport,02/26/2016 09:27:41 AM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",160570617-79 +121450192,E36,12048143,Citizen Assist / Service Call,05/24/2012,05/24/2012,05/24/2012 02:01:56 PM,05/24/2012 02:03:30 PM,05/24/2012 02:03:41 PM,05/24/2012 02:07:26 PM,05/24/2012 02:14:20 PM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,No Merit,05/24/2012 02:14:26 PM,MISSION ST/13TH ST,SF,94103,B02,36,5124,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",121450192-E36 +122200204,T14,12072993,Alarms,08/07/2012,08/07/2012,08/07/2012 03:39:46 PM,08/07/2012 03:40:41 PM,08/07/2012 03:41:09 PM,08/07/2012 03:42:10 PM,08/07/2012 03:45:13 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/07/2012 03:55:04 PM,3500 Block of BALBOA ST,SF,94121,B07,34,7254,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.775684774254, -122.496784770232)",122200204-T14 +122090336,T05,12069577,Gas Leak (Natural and LP Gases),07/27/2012,07/27/2012,07/27/2012 09:24:49 PM,07/27/2012 09:27:17 PM,07/27/2012 09:27:25 PM,07/27/2012 09:28:47 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 09:50:50 PM,600 Block of FULTON ST,SF,94102,B02,5,3424,3,3,3,false,Alarm,1,TRUCK,3,2,5,Hayes Valley,"(37.7780677663985, -122.428249599273)",122090336-T05 +120320298,E08,12010679,Structure Fire,02/01/2012,02/01/2012,02/01/2012 07:05:26 PM,02/01/2012 07:08:14 PM,02/01/2012 07:08:41 PM,02/01/2012 07:10:15 PM,02/01/2012 07:12:46 PM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/01/2012 07:22:28 PM,500 Block of 18TH ST,SF,94107,B03,29,2466,3,3,3,true,Fire,1,ENGINE,3,3,10,Potrero Hill,"(37.7631325072007, -122.388271828178)",120320298-E08 +160332024,88,16013022,Medical Incident,02/02/2016,02/02/2016,02/02/2016 02:37:20 PM,02/02/2016 02:37:20 PM,02/02/2016 02:38:45 PM,02/02/2016 02:39:24 PM,02/02/2016 02:42:48 PM,02/02/2016 03:00:18 PM,02/02/2016 03:07:28 PM,Code 2 Transport,02/02/2016 03:44:45 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160332024-88 +160860111,88,16034034,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:41:52 AM,03/26/2016 12:41:52 AM,03/26/2016 12:42:03 AM,03/26/2016 12:42:14 AM,03/26/2016 12:48:26 AM,03/26/2016 01:00:37 AM,03/26/2016 01:13:20 AM,Code 2 Transport,03/26/2016 01:45:32 AM,1200 Block of GILMAN AVE,San Francisco,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208340934162, -122.392843829472)",160860111-88 +160723495,AM22,16028801,Medical Incident,03/12/2016,03/12/2016,03/12/2016 10:33:59 PM,03/12/2016 10:34:41 PM,03/12/2016 10:34:57 PM,03/12/2016 10:35:45 PM,03/12/2016 10:45:22 PM,03/12/2016 11:02:51 PM,03/12/2016 11:22:50 PM,Code 2 Transport,03/13/2016 12:06:52 AM,2700 Block of 40TH AVE,San Francisco,94116,B08,18,7616,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7355376867029, -122.497802628088)",160723495-AM22 +160670215,55,16026580,Medical Incident,03/07/2016,03/06/2016,03/07/2016 03:09:15 AM,03/07/2016 03:10:50 AM,03/07/2016 03:11:35 AM,03/07/2016 03:12:00 AM,03/07/2016 03:19:17 AM,03/07/2016 03:36:40 AM,03/07/2016 03:47:38 AM,Code 2 Transport,03/07/2016 04:27:05 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160670215-55 +112550376,T10,11084285,Other,09/12/2011,09/12/2011,09/12/2011 11:33:34 PM,09/12/2011 11:34:01 PM,09/12/2011 11:34:50 PM,09/12/2011 11:36:30 PM,09/12/2011 11:39:44 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Fire,09/12/2011 11:49:07 PM,0 Block of TERRA VISTA AVE,SF,94115,B05,21,4256,3,3,3,false,,1,TRUCK,1,5,2,Lone Mountain/USF,"(37.7815553117613, -122.44255898267)",112550376-T10 +103630289,AM10,10116541,Medical Incident,12/29/2010,12/29/2010,12/29/2010 07:31:00 PM,12/29/2010 07:33:21 PM,12/29/2010 07:34:09 PM,12/29/2010 07:35:33 PM,12/29/2010 07:44:36 PM,12/29/2010 08:08:32 PM,12/29/2010 08:23:12 PM,Code 2 Transport,12/29/2010 08:56:20 PM,5800 Block of MISSION ST,SF,94112,B09,33,6213,3,3,3,false,,1,PRIVATE,1,9,11,Outer Mission,"(37.709160030699, -122.451801431228)",103630289-AM10 +160810886,52,16032096,Medical Incident,03/21/2016,03/21/2016,03/21/2016 09:08:25 AM,03/21/2016 09:09:17 AM,03/21/2016 09:23:36 AM,03/21/2016 09:23:45 AM,03/21/2016 09:26:22 AM,03/21/2016 09:50:05 AM,03/21/2016 10:09:42 AM,Code 2 Transport,03/21/2016 11:01:01 AM,0 Block of SOUTH VAN NESS AVE,San Francisco,94103,B02,36,5117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Mission,"(37.7741251002903, -122.418810211803)",160810886-52 +111720067,E01,11056635,Medical Incident,06/21/2011,06/20/2011,06/21/2011 07:30:57 AM,06/21/2011 07:31:27 AM,06/21/2011 07:31:41 AM,06/21/2011 07:32:45 AM,06/21/2011 07:36:23 AM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/21/2011 07:42:45 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",111720067-E01 +160370032,64,16014498,Medical Incident,02/06/2016,02/05/2016,02/06/2016 12:05:42 AM,02/06/2016 12:05:42 AM,02/06/2016 12:25:07 AM,02/06/2016 12:25:07 AM,02/06/2016 12:26:47 AM,02/06/2016 12:41:37 AM,02/06/2016 01:00:03 AM,Code 2 Transport,02/06/2016 02:09:28 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160370032-64 +111270123,E32,11041992,Administrative,05/07/2011,05/07/2011,05/07/2011 11:08:55 AM,05/07/2011 11:09:27 AM,05/07/2011 11:09:36 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/07/2011 11:11:45 AM,100 Block of PARK ST,SF,94110,B06,32,5646,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7365449385604, -122.422323583735)",111270123-E32 +110510225,79,11016922,Medical Incident,02/20/2011,02/20/2011,02/20/2011 02:31:15 PM,02/20/2011 02:31:31 PM,02/20/2011 02:32:26 PM,02/20/2011 02:33:05 PM,02/20/2011 02:35:44 PM,02/20/2011 02:51:35 PM,02/20/2011 03:01:37 PM,Code 2 Transport,02/20/2011 03:29:36 PM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,true,,1,MEDIC,1,1,3,Chinatown,"(37.7939808204935, -122.405476353162)",110510225-79 +111260142,E02,11041659,Medical Incident,05/06/2011,05/06/2011,05/06/2011 10:07:42 AM,05/06/2011 10:08:57 AM,05/06/2011 10:10:12 AM,05/06/2011 10:10:23 AM,05/06/2011 10:12:55 AM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 10:13:16 AM,ELLIS ST/MASON ST,SF,94102,B03,1,1366,E,3,3,true,,1,ENGINE,2,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",111260142-E02 +160013276,AM12,16000469,Medical Incident,01/01/2016,01/01/2016,01/01/2016 07:17:30 PM,01/01/2016 07:20:48 PM,01/01/2016 07:21:52 PM,01/01/2016 07:22:49 PM,01/01/2016 07:29:26 PM,01/01/2016 07:44:58 PM,01/01/2016 08:02:44 PM,Code 3 Transport,01/01/2016 08:42:06 PM,900 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160013276-AM12 +131380278,93,13046711,Medical Incident,05/18/2013,05/18/2013,05/18/2013 05:31:40 PM,05/18/2013 05:34:04 PM,05/18/2013 05:35:40 PM,05/18/2013 05:35:57 PM,05/18/2013 05:40:03 PM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,Unable to Locate,05/18/2013 05:42:21 PM,800 Block of CAPP ST,SF,94110,B06,7,5511,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7531080512306, -122.417362867532)",131380278-93 +160391101,87,16015547,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:51:17 AM,02/08/2016 09:53:41 AM,02/08/2016 09:53:56 AM,02/08/2016 09:54:23 AM,02/08/2016 09:56:17 AM,02/08/2016 10:21:09 AM,02/08/2016 10:47:12 AM,Code 2 Transport,02/08/2016 11:24:31 AM,19TH ST/VERMONT ST,San Francisco,94107,B10,29,2512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7608339060178, -122.404134492206)",160391101-87 +131750347,E16,13059522,Outside Fire,06/24/2013,06/24/2013,06/24/2013 09:59:32 PM,06/24/2013 09:59:59 PM,06/24/2013 10:00:51 PM,06/24/2013 10:01:57 PM,06/24/2013 10:03:27 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 10:05:06 PM,1700 Block of GREENWICH ST,SF,94123,B04,16,3336,3,3,3,true,Fire,1,ENGINE,1,4,2,Marina,"(37.7998384641503, -122.428456807722)",131750347-E16 +112700339,B03,11089349,Structure Fire,09/27/2011,09/27/2011,09/27/2011 08:38:40 PM,09/27/2011 08:39:25 PM,09/27/2011 08:39:36 PM,09/27/2011 08:41:06 PM,09/27/2011 08:47:56 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/27/2011 08:53:29 PM,2000 Block of ELLIS ST,SF,94115,B05,5,4153,3,3,3,false,,1,CHIEF,9,5,5,Western Addition,"(37.7814694551101, -122.439959733897)",112700339-B03 +122080262,E13,12069226,Alarms,07/26/2012,07/26/2012,07/26/2012 06:15:30 PM,07/26/2012 06:16:30 PM,07/26/2012 06:17:16 PM,04/25/2016 01:57:32 PM,07/26/2012 06:23:48 PM,04/25/2016 01:57:32 PM,04/25/2016 01:57:32 PM,Other,07/26/2012 06:27:55 PM,800 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,3,1,3,Chinatown,"(37.795777854883, -122.404981817889)",122080262-E13 +123250175,81,12108071,Traffic Collision,11/20/2012,11/20/2012,11/20/2012 12:23:44 PM,11/20/2012 12:24:32 PM,11/20/2012 12:24:49 PM,11/20/2012 12:25:11 PM,11/20/2012 12:29:13 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Against Medical Advice,11/20/2012 01:28:29 PM,18TH ST/FOLSOM ST,SF,94110,B02,7,5424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7620991621973, -122.414998618225)",123250175-81 +120650266,KM02,12021554,Medical Incident,03/05/2012,03/05/2012,03/05/2012 04:19:59 PM,03/05/2012 04:21:33 PM,03/05/2012 04:25:57 PM,03/05/2012 04:29:13 PM,03/05/2012 04:45:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/05/2012 05:14:41 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,1,1,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",120650266-KM02 +112990311,E41,11099286,Medical Incident,10/26/2011,10/26/2011,10/26/2011 07:29:51 PM,10/26/2011 07:30:18 PM,10/26/2011 07:30:32 PM,10/26/2011 07:31:19 PM,10/26/2011 07:33:07 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 07:39:05 PM,1900 Block of VAN NESS AVE,SF,94109,B04,41,3153,3,E,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7935141253124, -122.422789161737)",112990311-E41 +140970427,82,14032866,Medical Incident,04/07/2014,04/07/2014,04/07/2014 10:05:57 PM,04/07/2014 10:06:51 PM,04/07/2014 10:07:15 PM,04/07/2014 10:07:46 PM,04/07/2014 10:15:32 PM,04/07/2014 10:37:33 PM,04/07/2014 10:59:57 PM,Code 2 Transport,04/07/2014 11:11:18 PM,6TH ST/FOLSOM ST,SAN FRANCISCO,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7785051047871, -122.405615267864)",140970427-82 +160143469,KM03,16005734,Medical Incident,01/14/2016,01/14/2016,01/14/2016 08:37:33 PM,01/14/2016 08:37:33 PM,01/14/2016 08:37:49 PM,01/14/2016 08:43:57 PM,01/14/2016 08:47:03 PM,01/14/2016 08:56:30 PM,01/14/2016 09:01:30 PM,Code 2 Transport,01/14/2016 09:36:02 PM,GEARY ST/JONES ST,San Francisco,94102,B01,3,1462,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",160143469-KM03 +131850337,E17,13063178,Outside Fire,07/04/2013,07/04/2013,07/04/2013 09:06:57 PM,07/04/2013 09:08:12 PM,07/04/2013 09:08:42 PM,07/04/2013 09:10:17 PM,07/04/2013 09:12:29 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 09:26:59 PM,0 Block of LILLIAN ST,SF,94124,B10,17,6643,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7317329999215, -122.380841163763)",131850337-E17 +112230047,E21,11073545,Structure Fire,08/11/2011,08/10/2011,08/11/2011 04:58:50 AM,08/11/2011 04:59:47 AM,08/11/2011 05:00:03 AM,08/11/2011 05:01:12 AM,08/11/2011 05:03:24 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,08/11/2011 01:14:42 PM,1400 Block of HAIGHT ST,SF,94117,B05,21,4466,3,3,3,false,,2,ENGINE,2,5,5,Haight Ashbury,"(37.7700546614555, -122.446128431298)",112230047-E21 +133160193,E05,13107440,Medical Incident,11/12/2013,11/12/2013,11/12/2013 02:04:23 PM,11/12/2013 02:06:28 PM,11/12/2013 02:08:06 PM,11/12/2013 02:08:13 PM,11/12/2013 02:11:57 PM,11/12/2013 02:26:46 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 02:33:58 PM,1700 Block of SCOTT ST,SF,94115,B04,10,4126,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7859341652244, -122.438231787767)",133160193-E05 +160612220,60,16024367,Medical Incident,03/01/2016,03/01/2016,03/01/2016 03:53:25 PM,03/01/2016 03:55:50 PM,03/01/2016 03:56:01 PM,03/01/2016 03:56:31 PM,03/01/2016 04:05:46 PM,03/01/2016 04:23:35 PM,03/01/2016 04:40:43 PM,Code 2 Transport,03/01/2016 05:17:19 PM,CORTLAND AV/ELLSWORTH ST,San Francisco,94110,B06,32,5726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7388814911648, -122.414558860193)",160612220-60 +133000068,84,13101849,Medical Incident,10/27/2013,10/26/2013,10/27/2013 03:06:42 AM,10/27/2013 03:11:01 AM,10/27/2013 03:17:56 AM,10/27/2013 03:18:13 AM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/27/2013 03:18:32 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",133000068-84 +160761742,KM04,16030138,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:32:55 PM,03/16/2016 12:34:19 PM,03/16/2016 12:34:39 PM,03/16/2016 12:35:01 PM,03/16/2016 12:49:26 PM,03/16/2016 12:49:27 PM,03/16/2016 01:02:09 PM,Code 2 Transport,03/16/2016 01:42:10 PM,200 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",160761742-KM04 +160552088,52,16022035,Medical Incident,02/24/2016,02/24/2016,02/24/2016 02:03:53 PM,02/24/2016 02:04:38 PM,02/24/2016 02:09:27 PM,02/24/2016 02:09:27 PM,02/24/2016 02:13:14 PM,02/24/2016 02:34:28 PM,02/24/2016 02:40:42 PM,Code 2 Transport,02/24/2016 03:10:19 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160552088-52 +120710041,77,12023502,Medical Incident,03/11/2012,03/10/2012,03/11/2012 03:22:08 AM,03/11/2012 03:24:25 AM,03/11/2012 03:24:41 AM,03/11/2012 03:26:39 AM,03/11/2012 03:29:33 AM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,Patient Declined Transport,03/11/2012 03:43:23 AM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",120710041-77 +160480867,82,16019261,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:50:29 AM,02/17/2016 08:52:44 AM,02/17/2016 08:53:27 AM,02/17/2016 08:53:36 AM,02/17/2016 08:59:50 AM,02/17/2016 09:16:44 AM,02/17/2016 09:36:58 AM,Code 2 Transport,02/17/2016 10:10:33 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",160480867-82 +132020169,66,13068458,Medical Incident,07/21/2013,07/21/2013,07/21/2013 01:50:38 PM,07/21/2013 01:50:42 PM,07/21/2013 01:52:24 PM,07/21/2013 01:52:58 PM,07/21/2013 02:14:48 PM,07/21/2013 02:38:38 PM,07/21/2013 03:08:28 PM,Code 2 Transport,07/21/2013 03:36:41 PM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",132020169-66 +113050454,B06,11101502,Structure Fire,11/01/2011,11/01/2011,11/01/2011 10:54:21 PM,11/01/2011 10:55:13 PM,11/01/2011 10:55:46 PM,11/01/2011 10:57:05 PM,11/01/2011 11:03:37 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 11:43:14 PM,0 Block of GRAND VIEW TER,SF,94114,B06,24,5266,3,3,3,false,,1,CHIEF,4,6,8,Twin Peaks,"(37.7573748467105, -122.441147943974)",113050454-B06 +160750165,KM07,16029553,Medical Incident,03/15/2016,03/14/2016,03/15/2016 01:46:08 AM,03/15/2016 01:46:56 AM,03/15/2016 01:47:51 AM,03/15/2016 01:48:29 AM,03/15/2016 01:53:28 AM,03/15/2016 02:20:13 AM,03/15/2016 02:50:30 AM,Code 2 Transport,03/15/2016 03:42:06 AM,700 Block of LONDON ST,San Francisco,94112,B09,43,6125,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7175106231913, -122.439146338541)",160750165-KM07 +160401978,71,16016050,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:41:54 PM,02/09/2016 01:44:07 PM,02/09/2016 01:44:37 PM,02/09/2016 01:44:49 PM,02/09/2016 01:55:44 PM,02/09/2016 02:01:35 PM,02/09/2016 02:14:35 PM,Code 2 Transport,02/09/2016 02:38:50 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160401978-71 +111840162,E16,11060760,Medical Incident,07/03/2011,07/03/2011,07/03/2011 12:12:03 PM,07/03/2011 12:12:39 PM,07/03/2011 12:13:01 PM,07/03/2011 12:13:52 PM,07/03/2011 12:16:51 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:25:10 PM,1400 Block of LOMBARD ST,SF,94123,B04,16,3145,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8013151080574, -122.425387423643)",111840162-E16 +130600168,E29,13020107,Medical Incident,03/01/2013,03/01/2013,03/01/2013 12:11:02 PM,03/01/2013 12:12:31 PM,03/01/2013 12:12:47 PM,03/01/2013 12:12:58 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 12:19:27 PM,1200 Block of MARKET ST,SF,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7780365108208, -122.415429100912)",130600168-E29 +112830286,67,11093772,Medical Incident,10/10/2011,10/10/2011,10/10/2011 06:22:03 PM,10/10/2011 06:22:20 PM,10/10/2011 06:22:39 PM,10/10/2011 06:23:25 PM,10/10/2011 06:26:07 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,No Merit,10/10/2011 06:30:26 PM,POTRERO AV/24TH ST,SF,94110,B10,37,2554,3,3,3,true,,1,MEDIC,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",112830286-67 +123560165,E05,12119124,Medical Incident,12/21/2012,12/21/2012,12/21/2012 11:56:35 AM,12/21/2012 11:57:06 AM,12/21/2012 11:57:14 AM,12/21/2012 11:57:23 AM,12/21/2012 11:59:14 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 12:07:29 PM,1800 Block of GEARY BLVD,SF,94115,B04,5,3541,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7840473873954, -122.433701277792)",123560165-E05 +160640098,71,16025318,Medical Incident,03/04/2016,03/03/2016,03/04/2016 12:52:45 AM,03/04/2016 12:54:42 AM,03/04/2016 12:55:09 AM,03/04/2016 12:55:16 AM,03/04/2016 12:59:21 AM,03/04/2016 01:14:56 AM,03/04/2016 01:49:37 AM,Code 2 Transport,03/04/2016 02:34:18 AM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",160640098-71 +113230305,E13,11107405,Medical Incident,11/19/2011,11/19/2011,11/19/2011 08:40:43 PM,11/19/2011 08:41:09 PM,11/19/2011 08:42:18 PM,11/19/2011 08:43:15 PM,11/19/2011 08:45:06 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/19/2011 08:51:17 PM,PACIFIC AV/BATTERY ST,SF,94111,B01,13,1155,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7976541384354, -122.400863176615)",113230305-E13 +110950269,FB1,11031617,Water Rescue,04/05/2011,04/05/2011,04/05/2011 06:39:01 PM,04/05/2011 06:40:44 PM,04/05/2011 06:41:44 PM,04/05/2011 06:43:08 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,Other,04/05/2011 06:51:44 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,,1,SUPPORT,8,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",110950269-FB1 +112410273,85,11079598,Medical Incident,08/29/2011,08/29/2011,08/29/2011 06:19:37 PM,08/29/2011 06:19:38 PM,08/29/2011 06:20:44 PM,08/29/2011 06:21:10 PM,08/29/2011 06:30:45 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 06:33:21 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,2,2,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",112410273-85 +110060173,E29,11001959,Medical Incident,01/06/2011,01/06/2011,01/06/2011 11:51:33 AM,01/06/2011 11:53:00 AM,01/06/2011 11:53:43 AM,01/06/2011 11:53:52 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 11:58:25 AM,18TH ST/LEXINGTON ST,SF,94110,B02,7,5423,3,3,3,true,,1,ENGINE,4,6,9,Mission,"(37.7617474943191, -122.420812735606)",110060173-E29 +102390045,66,10075276,Medical Incident,08/27/2010,08/26/2010,08/27/2010 05:33:22 AM,08/27/2010 05:34:53 AM,08/27/2010 05:35:04 AM,08/27/2010 05:35:37 AM,08/27/2010 05:46:43 AM,08/27/2010 05:58:59 AM,08/27/2010 06:03:54 AM,Other,08/27/2010 06:26:57 AM,700 Block of STOCKTON ST,SF,94108,B01,2,1326,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7924812894581, -122.407636417801)",102390045-66 +140950098,55,14031874,Medical Incident,04/05/2014,04/04/2014,04/05/2014 07:56:48 AM,04/05/2014 07:58:52 AM,04/05/2014 08:00:02 AM,04/05/2014 08:00:23 AM,04/05/2014 08:05:18 AM,04/05/2014 08:15:27 AM,04/05/2014 08:20:26 AM,Code 2 Transport,04/05/2014 08:35:03 AM,CHURCH ST/VALLEY ST,SAN FRANCISCO,94131,B06,11,5563,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7444974074355, -122.426746185523)",140950098-55 +160782701,56,16031086,Medical Incident,03/18/2016,03/18/2016,03/18/2016 04:49:47 PM,03/18/2016 04:51:07 PM,03/18/2016 04:51:15 PM,03/18/2016 04:57:47 PM,03/18/2016 05:01:05 PM,03/18/2016 05:31:34 PM,03/18/2016 05:49:52 PM,Code 2 Transport,03/18/2016 06:52:31 PM,0 Block of TAPIA DR,San Francisco,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7218365399542, -122.480911501802)",160782701-56 +103060064,E38,10097796,Medical Incident,11/02/2010,11/01/2010,11/02/2010 01:32:21 AM,11/02/2010 01:32:54 AM,11/02/2010 01:35:02 AM,11/02/2010 01:36:36 AM,11/02/2010 01:39:33 AM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,04/25/2016 02:07:48 PM,1400 Block of GRANT AVE,SF,94133,B04,28,1266,3,3,3,false,,1,ENGINE,2,1,3,North Beach,"(37.8001795612037, -122.40742149758)",103060064-E38 +123330035,89,12110536,Medical Incident,11/28/2012,11/27/2012,11/28/2012 03:52:30 AM,11/28/2012 03:53:50 AM,11/28/2012 03:54:28 AM,11/28/2012 03:54:44 AM,11/28/2012 03:59:28 AM,11/28/2012 04:12:58 AM,04/25/2016 01:55:36 PM,Other,11/28/2012 04:39:42 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",123330035-89 +102350144,E10,10073914,Alarms,08/23/2010,08/23/2010,08/23/2010 11:28:35 AM,08/23/2010 11:30:06 AM,08/23/2010 11:30:09 AM,08/23/2010 11:30:44 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 11:36:13 AM,2900 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.7876971552244, -122.442920479782)",102350144-E10 +133070212,RS1,13104411,Medical Incident,11/03/2013,11/03/2013,11/03/2013 02:25:19 PM,11/03/2013 02:26:07 PM,11/03/2013 02:26:36 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/03/2013 02:30:17 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7799892619986, -122.407376463936)",133070212-RS1 +132730273,75,13092839,Medical Incident,09/30/2013,09/30/2013,09/30/2013 04:18:04 PM,09/30/2013 04:19:50 PM,09/30/2013 04:20:03 PM,09/30/2013 04:20:57 PM,09/30/2013 04:23:38 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 04:36:55 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",132730273-75 +160821647,AM10,16032549,Medical Incident,03/22/2016,03/22/2016,03/22/2016 12:19:29 PM,03/22/2016 12:19:51 PM,03/22/2016 12:20:14 PM,03/22/2016 12:20:57 PM,03/22/2016 12:25:32 PM,03/22/2016 12:44:49 PM,03/22/2016 01:15:34 PM,Code 2 Transport,03/22/2016 01:29:48 PM,1500 Block of 12TH AVE,San Francisco,94122,B08,22,735,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,7,Inner Sunset,"(37.7592342080011, -122.469266161643)",160821647-AM10 +111590270,E28,11052655,Outside Fire,06/08/2011,06/08/2011,06/08/2011 05:43:44 PM,06/08/2011 05:43:44 PM,06/08/2011 05:44:05 PM,06/08/2011 05:44:49 PM,06/08/2011 05:46:47 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/08/2011 05:48:34 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8081576930541, -122.412496867032)",111590270-E28 +110310286,E11,11010243,Medical Incident,01/31/2011,01/31/2011,01/31/2011 05:11:07 PM,01/31/2011 05:12:56 PM,01/31/2011 05:13:25 PM,01/31/2011 05:14:16 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,01/31/2011 05:28:06 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,true,,1,ENGINE,2,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",110310286-E11 +160022592,KM04,16000837,Medical Incident,01/02/2016,01/02/2016,01/02/2016 05:52:39 PM,01/02/2016 05:54:25 PM,01/02/2016 05:59:44 PM,01/02/2016 05:59:44 PM,01/02/2016 06:00:54 PM,01/02/2016 06:21:32 PM,01/02/2016 06:46:49 PM,Code 2 Transport,01/02/2016 07:36:53 PM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",160022592-KM04 +160151568,KM05,16005978,Medical Incident,01/15/2016,01/15/2016,01/15/2016 12:01:28 PM,01/15/2016 12:03:26 PM,01/15/2016 12:03:46 PM,01/15/2016 12:04:21 PM,01/15/2016 12:15:20 PM,01/15/2016 12:42:03 PM,01/15/2016 01:16:36 PM,Code 2 Transport,01/15/2016 01:42:50 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160151568-KM05 +160862112,75,16034213,Medical Incident,03/26/2016,03/26/2016,03/26/2016 02:48:55 PM,03/26/2016 02:49:39 PM,03/26/2016 02:49:59 PM,03/26/2016 02:50:06 PM,03/26/2016 03:09:53 PM,03/26/2016 03:09:56 PM,03/26/2016 03:20:48 PM,Code 2 Transport,03/26/2016 04:06:58 PM,0 Block of BEHR AVE,San Francisco,94131,B05,20,5278,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,7,Inner Sunset,"(37.7577470872448, -122.454867585838)",160862112-75 +140860288,T05,14029041,Medical Incident,03/27/2014,03/27/2014,03/27/2014 07:14:34 PM,03/27/2014 07:14:35 PM,03/27/2014 07:14:35 PM,03/27/2014 07:14:35 PM,03/27/2014 07:14:35 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 07:26:39 PM,HYDE ST/EDDY ST,,94102,B02,3,1545,,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",140860288-T05 +160200794,83,16007928,Medical Incident,01/20/2016,01/20/2016,01/20/2016 08:25:01 AM,01/20/2016 08:27:04 AM,01/20/2016 08:27:49 AM,01/20/2016 08:27:56 AM,01/20/2016 08:49:52 AM,01/20/2016 09:13:59 AM,01/20/2016 09:17:30 AM,Code 2 Transport,01/20/2016 09:41:30 AM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160200794-83 +133410172,T09,13115606,Medical Incident,12/07/2013,12/07/2013,12/07/2013 11:52:27 AM,12/07/2013 11:52:27 AM,12/07/2013 11:52:27 AM,12/07/2013 11:52:37 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,No Merit,12/07/2013 11:54:25 AM,BAYSHORE BL/CORTLAND AV,SF,94124,B10,42,6374,2,2,2,false,Non Life-threatening,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",133410172-T09 +110660237,E07,11021820,Medical Incident,03/07/2011,03/07/2011,03/07/2011 03:58:56 PM,03/07/2011 03:59:55 PM,03/07/2011 04:00:04 PM,03/07/2011 04:01:08 PM,03/07/2011 04:04:13 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/07/2011 04:14:55 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,1,2,true,,1,ENGINE,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",110660237-E07 +110160158,61,11005319,Medical Incident,01/16/2011,01/16/2011,01/16/2011 11:31:25 AM,01/16/2011 11:31:57 AM,01/16/2011 11:32:28 AM,01/16/2011 11:37:01 AM,01/16/2011 11:37:14 AM,01/16/2011 11:58:06 AM,01/16/2011 12:09:30 PM,Code 2 Transport,01/16/2011 12:37:36 PM,18TH ST/SANCHEZ ST,SF,94114,B05,6,5252,2,2,2,true,,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7611554774347, -122.430573567918)",110160158-61 +133550334,E10,13120790,Medical Incident,12/21/2013,12/21/2013,12/21/2013 06:15:09 PM,12/21/2013 06:16:29 PM,12/21/2013 06:24:01 PM,04/25/2016 01:49:08 PM,12/21/2013 06:27:01 PM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Other,12/21/2013 06:56:39 PM,3000 Block of CALIFORNIA ST,SF,94115,B04,10,4336,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7875969285825, -122.444588649572)",133550334-E10 +160461336,56,16018473,Medical Incident,02/15/2016,02/15/2016,02/15/2016 11:21:08 AM,02/15/2016 11:22:34 AM,02/15/2016 11:23:55 AM,02/15/2016 11:24:04 AM,02/15/2016 11:28:56 AM,02/15/2016 11:45:29 AM,02/15/2016 12:00:24 PM,Code 2 Transport,02/15/2016 12:44:05 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160461336-56 +140940211,E18,14031615,High Angle Rescue,04/04/2014,04/04/2014,04/04/2014 02:21:22 PM,04/04/2014 02:24:03 PM,04/04/2014 02:27:30 PM,04/04/2014 02:27:30 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Fire,04/04/2014 02:35:06 PM,1000 Block of POINT LOBOS AVE,SAN FRANCISCO,94121,B07,34,7314,3,3,3,true,Fire,1,ENGINE,12,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",140940211-E18 +160700856,AM04,16027760,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:04:35 AM,03/10/2016 09:05:13 AM,03/10/2016 09:06:04 AM,03/10/2016 09:07:23 AM,03/10/2016 09:11:50 AM,03/10/2016 09:26:50 AM,03/10/2016 09:48:55 AM,Code 2 Transport,03/10/2016 10:19:54 AM,1500 Block of SANSOME ST,San Francisco,94111,B01,13,1215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8046188570053, -122.403391370204)",160700856-AM04 +160102851,54,16004153,Medical Incident,01/10/2016,01/10/2016,01/10/2016 06:51:25 PM,01/10/2016 06:53:14 PM,01/10/2016 06:54:17 PM,01/10/2016 06:54:24 PM,01/10/2016 06:59:24 PM,01/10/2016 07:15:14 PM,01/10/2016 07:30:32 PM,Code 2 Transport,01/10/2016 07:52:48 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7904732830605, -122.406742211994)",160102851-54 +160421036,82,16016798,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:37:03 AM,02/11/2016 09:38:28 AM,02/11/2016 09:38:49 AM,02/11/2016 09:38:58 AM,02/11/2016 09:55:36 AM,02/11/2016 10:10:59 AM,02/11/2016 10:37:58 AM,Code 2 Transport,02/11/2016 11:07:47 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160421036-82 +160780327,73,16030878,Medical Incident,03/18/2016,03/17/2016,03/18/2016 02:39:12 AM,03/18/2016 02:41:53 AM,03/18/2016 02:42:56 AM,03/18/2016 02:45:35 AM,03/18/2016 02:45:35 AM,03/18/2016 02:59:37 AM,03/18/2016 03:08:52 AM,Code 2 Transport,03/18/2016 03:52:38 AM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160780327-73 +160652235,58,16025977,Medical Incident,03/05/2016,03/05/2016,03/05/2016 03:56:42 PM,03/05/2016 03:58:09 PM,03/05/2016 03:59:09 PM,03/05/2016 03:59:18 PM,03/05/2016 04:02:31 PM,03/05/2016 04:11:46 PM,03/05/2016 04:33:28 PM,Code 2 Transport,03/05/2016 04:58:18 PM,300 Block of MISSION ST,San Francisco,94105,B03,35,2126,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",160652235-58 +131880256,B07,13064162,Alarms,07/07/2013,07/07/2013,07/07/2013 05:00:19 PM,07/07/2013 05:02:17 PM,07/07/2013 05:02:35 PM,07/07/2013 05:04:40 PM,07/07/2013 05:09:29 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 05:17:12 PM,1800 Block of OAK ST,SF,94117,B05,21,4524,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7715102072393, -122.449768153946)",131880256-B07 +123590013,E02,12120029,Alarms,12/24/2012,12/23/2012,12/24/2012 01:08:40 AM,12/24/2012 01:10:20 AM,12/24/2012 01:10:43 AM,12/24/2012 01:12:30 AM,12/24/2012 01:16:00 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 01:29:22 AM,300 Block of KEARNY ST,SF,94108,B01,13,1243,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",123590013-E02 +102480131,E42,10078319,Medical Incident,09/05/2010,09/05/2010,09/05/2010 10:19:48 AM,09/05/2010 10:20:31 AM,09/05/2010 10:21:02 AM,09/05/2010 10:22:41 AM,09/05/2010 10:26:08 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 10:40:47 AM,1700 Block of QUESADA AVE,SF,94124,B10,17,6514,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.733906254926, -122.392215307414)",102480131-E42 +160350157,68,16013643,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:13:39 AM,02/04/2016 01:13:39 AM,02/04/2016 01:15:43 AM,02/04/2016 01:15:43 AM,02/04/2016 01:18:50 AM,02/04/2016 01:22:46 AM,02/04/2016 01:32:47 AM,Code 2 Transport,02/04/2016 02:28:05 AM,200 Block of BROADWAY,San Francisco,94111,B01,13,1155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7984506502378, -122.401628969112)",160350157-68 +121940408,54,12064738,Traffic Collision,07/12/2012,07/12/2012,07/12/2012 10:05:08 PM,07/12/2012 10:05:17 PM,07/12/2012 10:06:49 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/12/2012 10:16:58 PM,PAGE ST/DIVISADERO ST,SF,94117,B05,21,4144,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",121940408-54 +111950260,E17,11064439,Medical Incident,07/14/2011,07/14/2011,07/14/2011 05:12:09 PM,07/14/2011 05:12:41 PM,07/14/2011 05:13:39 PM,04/25/2016 02:03:40 PM,07/14/2011 05:16:52 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 05:38:05 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",111950260-E17 +160772419,57,16030650,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:04:47 PM,03/17/2016 03:05:40 PM,03/17/2016 03:06:40 PM,03/17/2016 03:06:52 PM,03/17/2016 03:14:16 PM,03/17/2016 03:30:17 PM,03/17/2016 03:52:03 PM,Code 2 Transport,03/17/2016 04:47:45 PM,THE EMBARCADERO SOU/FOLSOM ST,San Francisco,94105,B03,35,2112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7904750361941, -122.39055604599)",160772419-57 +160661430,KM06,16026377,Medical Incident,03/06/2016,03/06/2016,03/06/2016 12:32:41 PM,03/06/2016 12:35:12 PM,03/06/2016 12:35:56 PM,03/06/2016 12:36:31 PM,03/06/2016 01:07:16 PM,03/06/2016 01:18:31 PM,03/06/2016 01:52:19 PM,Code 2 Transport,03/06/2016 02:15:13 PM,JEFFERSON ST/MASON ST,San Francisco,94133,B01,28,1344,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8084210588577, -122.414164435002)",160661430-KM06 +112460129,82,11081068,Medical Incident,09/03/2011,09/03/2011,09/03/2011 10:12:32 AM,09/03/2011 10:16:28 AM,09/03/2011 10:16:39 AM,09/03/2011 10:17:52 AM,09/03/2011 10:19:27 AM,09/03/2011 10:33:40 AM,09/03/2011 10:44:22 AM,Code 2 Transport,09/03/2011 11:05:52 AM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",112460129-82 +111220082,E12,11040239,Traffic Collision,05/02/2011,05/02/2011,05/02/2011 08:14:53 AM,05/02/2011 08:16:13 AM,05/02/2011 08:16:45 AM,05/02/2011 08:18:12 AM,05/02/2011 08:21:54 AM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,05/02/2011 08:30:26 AM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,3,3,3,true,,1,ENGINE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",111220082-E12 +122230038,87,12073811,Medical Incident,08/10/2012,08/09/2012,08/10/2012 03:29:18 AM,08/10/2012 03:31:01 AM,08/10/2012 03:31:21 AM,08/10/2012 03:31:31 AM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 03:33:05 AM,LAFAYETTE ST/HOWARD ST,SF,94103,B02,36,5114,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,6,Mission,"(37.7724561580729, -122.416303598047)",122230038-87 +131110049,E03,13037285,Structure Fire,04/21/2013,04/20/2013,04/21/2013 06:33:34 AM,04/21/2013 06:34:37 AM,04/21/2013 06:35:04 AM,04/21/2013 06:36:01 AM,04/21/2013 06:38:02 AM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 06:46:58 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131110049-E03 +110090167,E44,11002979,Alarms,01/09/2011,01/09/2011,01/09/2011 11:26:24 AM,01/09/2011 11:27:16 AM,01/09/2011 11:27:23 AM,01/09/2011 11:28:05 AM,01/09/2011 11:31:32 AM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/09/2011 11:42:23 AM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,true,,1,ENGINE,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",110090167-E44 +103430291,RS1,10109936,Medical Incident,12/09/2010,12/09/2010,12/09/2010 04:22:04 PM,12/09/2010 04:25:08 PM,12/09/2010 04:25:24 PM,12/09/2010 04:25:52 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 04:27:47 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,true,,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",103430291-RS1 +160462332,KM05,16018568,Medical Incident,02/15/2016,02/15/2016,02/15/2016 03:43:57 PM,02/15/2016 03:44:44 PM,02/15/2016 03:45:00 PM,02/15/2016 03:45:33 PM,02/15/2016 03:52:07 PM,02/15/2016 04:04:02 PM,02/15/2016 04:12:32 PM,Code 2 Transport,02/15/2016 05:02:52 PM,200 Block of CORTLAND AVE,San Francisco,94110,B06,32,5652,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7394642558981, -122.418843328142)",160462332-KM05 +103510089,67,10112517,Medical Incident,12/17/2010,12/17/2010,12/17/2010 07:59:01 AM,12/17/2010 08:00:10 AM,12/17/2010 08:00:49 AM,12/17/2010 08:02:24 AM,12/17/2010 08:12:49 AM,12/17/2010 08:41:42 AM,12/17/2010 08:45:11 AM,Code 2 Transport,12/17/2010 09:07:35 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,1,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7899917286128, -122.418035034103)",103510089-67 +122470282,99,12081812,Medical Incident,09/03/2012,09/03/2012,09/03/2012 09:17:43 PM,09/03/2012 09:17:51 PM,09/03/2012 09:18:20 PM,09/03/2012 09:18:48 PM,09/03/2012 09:26:57 PM,09/03/2012 09:47:22 PM,09/03/2012 09:58:54 PM,Code 2 Transport,09/03/2012 10:32:18 PM,500 Block of JONES ST,SF,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",122470282-99 +132260088,87,13076225,Medical Incident,08/14/2013,08/14/2013,08/14/2013 08:04:14 AM,08/14/2013 08:05:28 AM,08/14/2013 08:05:52 AM,08/14/2013 08:06:12 AM,08/14/2013 08:17:55 AM,08/14/2013 08:24:29 AM,08/14/2013 08:33:05 AM,Code 2 Transport,08/14/2013 08:59:54 AM,1100 Block of FOLSOM ST,SF,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7761748805979, -122.408661568722)",132260088-87 +121810236,T09,12060311,Structure Fire,06/29/2012,06/29/2012,06/29/2012 03:22:13 PM,06/29/2012 03:22:38 PM,06/29/2012 03:22:51 PM,06/29/2012 03:24:12 PM,06/29/2012 03:36:36 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 05:12:17 PM,100 Block of CHARTER OAK AVE,SF,94124,B10,42,6381,3,3,3,false,Fire,1,TRUCK,8,10,10,Bayview Hunters Point,"(37.7362893426109, -122.404797186551)",121810236-T09 +133440287,E01,13116741,Medical Incident,12/10/2013,12/10/2013,12/10/2013 04:07:21 PM,12/10/2013 04:08:02 PM,12/10/2013 04:08:13 PM,12/10/2013 04:09:30 PM,12/10/2013 04:11:02 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 04:19:22 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",133440287-E01 +102240065,T03,10070465,Alarms,08/12/2010,08/11/2010,08/12/2010 07:51:33 AM,08/12/2010 07:53:06 AM,08/12/2010 07:53:21 AM,08/12/2010 07:54:36 AM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,Other,08/12/2010 08:03:56 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,,1,TRUCK,3,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",102240065-T03 +112670314,E01,11088340,Medical Incident,09/24/2011,09/24/2011,09/24/2011 06:37:12 PM,09/24/2011 06:38:50 PM,09/24/2011 06:42:39 PM,09/24/2011 06:44:40 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 06:50:27 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,1,1,2,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",112670314-E01 +113480214,T15,11115479,Alarms,12/14/2011,12/14/2011,12/14/2011 01:31:41 PM,12/14/2011 01:32:31 PM,12/14/2011 01:32:40 PM,12/14/2011 01:34:03 PM,12/14/2011 01:36:34 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 01:45:35 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,false,,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",113480214-T15 +160613206,AM20,16024463,Medical Incident,03/01/2016,03/01/2016,03/01/2016 08:13:27 PM,03/01/2016 08:15:00 PM,03/01/2016 08:19:36 PM,03/01/2016 08:22:47 PM,03/01/2016 08:40:28 PM,03/01/2016 08:43:21 PM,03/01/2016 08:54:04 PM,Code 2 Transport,03/01/2016 09:18:48 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160613206-AM20 +131830246,E35,13062405,Traffic Collision,07/02/2013,07/02/2013,07/02/2013 03:47:24 PM,07/02/2013 03:47:52 PM,07/02/2013 03:48:12 PM,07/02/2013 03:49:46 PM,07/02/2013 03:50:35 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 03:55:54 PM,MISSION ST/5TH ST,SF,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",131830246-E35 +160060428,81,16002269,Medical Incident,01/06/2016,01/05/2016,01/06/2016 05:45:43 AM,01/06/2016 05:47:26 AM,01/06/2016 05:47:40 AM,01/06/2016 05:47:47 AM,01/06/2016 05:55:18 AM,01/06/2016 06:09:16 AM,01/06/2016 06:17:38 AM,Code 2 Transport,01/06/2016 06:46:13 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",160060428-81 +160831184,75,16032900,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:00:04 AM,03/23/2016 10:01:18 AM,03/23/2016 10:01:39 AM,03/23/2016 10:01:46 AM,03/23/2016 10:17:16 AM,03/23/2016 10:38:50 AM,03/23/2016 11:00:21 AM,Code 2 Transport,03/23/2016 11:39:10 AM,CALIFORNIA ST/BATTERY ST,San Francisco,94111,B01,13,1162,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",160831184-75 +111760241,54,11058056,Medical Incident,06/25/2011,06/25/2011,06/25/2011 03:27:54 PM,06/25/2011 03:28:29 PM,06/25/2011 03:28:45 PM,06/25/2011 03:31:05 PM,06/25/2011 03:35:54 PM,06/25/2011 03:45:31 PM,06/25/2011 03:49:12 PM,Code 2 Transport,06/25/2011 04:04:21 PM,PINE ST/HYDE ST,SF,94109,B04,41,1562,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",111760241-54 +121980042,E03,12065698,Medical Incident,07/16/2012,07/15/2012,07/16/2012 05:31:42 AM,07/16/2012 05:33:51 AM,07/16/2012 05:34:14 AM,07/16/2012 05:35:44 AM,07/16/2012 05:37:44 AM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 05:44:37 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",121980042-E03 +130640175,87,13021426,Medical Incident,03/05/2013,03/05/2013,03/05/2013 12:34:13 PM,03/05/2013 12:36:06 PM,03/05/2013 12:36:21 PM,03/05/2013 12:37:20 PM,03/05/2013 12:40:14 PM,03/05/2013 12:57:56 PM,03/05/2013 01:25:18 PM,Code 2 Transport,03/05/2013 02:03:54 PM,2000 Block of QUINTARA ST,SF,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7482038459873, -122.487333515729)",130640175-87 +160900238,56,16035553,Medical Incident,03/30/2016,03/29/2016,03/30/2016 02:30:39 AM,03/30/2016 02:31:12 AM,03/30/2016 02:31:45 AM,03/30/2016 02:32:47 AM,03/30/2016 02:43:11 AM,03/30/2016 03:04:52 AM,03/30/2016 03:27:23 AM,Code 2 Transport,03/30/2016 04:00:58 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160900238-56 +111780280,63,11058853,Medical Incident,06/27/2011,06/27/2011,06/27/2011 05:07:07 PM,06/27/2011 05:09:45 PM,06/27/2011 05:10:05 PM,06/27/2011 05:10:13 PM,06/27/2011 05:12:30 PM,06/27/2011 05:30:39 PM,06/27/2011 05:42:06 PM,Code 2 Transport,06/27/2011 06:04:59 PM,GENEVA AV/SAN JOSE AV,SF,94112,B09,15,8311,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",111780280-63 +102680339,E32,10085028,Outside Fire,09/25/2010,09/25/2010,09/25/2010 05:44:55 PM,09/25/2010 05:45:44 PM,09/25/2010 05:46:09 PM,09/25/2010 05:46:46 PM,09/25/2010 05:49:05 PM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 05:51:26 PM,MISSION ST/30TH ST,SF,94110,B06,32,5625,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",102680339-E32 +160180216,62,16007089,Traffic Collision,01/18/2016,01/17/2016,01/18/2016 02:22:24 AM,01/18/2016 02:22:24 AM,01/18/2016 02:23:39 AM,01/18/2016 02:23:39 AM,01/18/2016 02:27:14 AM,01/18/2016 03:02:59 AM,01/18/2016 03:08:13 AM,Code 2 Transport,01/18/2016 03:58:59 AM,1100 Block of FOLSOM ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7756232938088, -122.409165302353)",160180216-62 +160870236,KM07,16034426,Medical Incident,03/27/2016,03/26/2016,03/27/2016 01:26:55 AM,03/27/2016 01:27:23 AM,03/27/2016 01:27:37 AM,03/27/2016 01:28:09 AM,03/27/2016 01:36:07 AM,03/27/2016 01:44:18 AM,03/27/2016 02:18:29 AM,Code 2 Transport,03/27/2016 02:50:52 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160870236-KM07 +140760332,E06,14025846,Medical Incident,03/17/2014,03/17/2014,03/17/2014 07:39:43 PM,03/17/2014 07:40:54 PM,03/17/2014 07:41:11 PM,03/17/2014 07:42:04 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Code 2 Transport,03/17/2014 07:56:01 PM,2000 Block of MARKET ST,SAN FRANCISCO,94114,B02,6,5127,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",140760332-E06 +140670194,88,14022687,Medical Incident,03/08/2014,03/08/2014,03/08/2014 01:27:58 PM,03/08/2014 01:28:43 PM,03/08/2014 01:28:54 PM,03/08/2014 01:29:06 PM,03/08/2014 01:36:00 PM,03/08/2014 01:52:38 PM,03/08/2014 02:48:58 PM,Code 2 Transport,03/08/2014 03:07:30 PM,16TH ST/CAPP ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",140670194-88 +111700383,E07,11056220,Alarms,06/19/2011,06/19/2011,06/19/2011 11:22:37 PM,06/19/2011 11:23:50 PM,06/19/2011 11:24:04 PM,06/19/2011 11:25:38 PM,06/19/2011 11:28:22 PM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,Other,06/19/2011 11:37:59 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",111700383-E07 +112930343,T05,11097337,Structure Fire,10/20/2011,10/20/2011,10/20/2011 08:46:42 PM,10/20/2011 08:47:21 PM,10/20/2011 08:47:42 PM,10/20/2011 08:48:15 PM,10/20/2011 08:51:13 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 09:38:03 PM,2000 Block of PIERCE ST,SF,94115,B04,38,3652,3,3,3,false,,1,TRUCK,4,4,2,Pacific Heights,"(37.7887338405193, -122.437108977593)",112930343-T05 +112150382,AM04,11071152,Medical Incident,08/03/2011,08/03/2011,08/03/2011 10:09:30 PM,08/03/2011 10:10:16 PM,08/03/2011 10:12:14 PM,04/25/2016 02:03:20 PM,08/03/2011 10:15:11 PM,08/03/2011 10:34:28 PM,08/03/2011 10:46:16 PM,Code 2 Transport,08/03/2011 11:37:34 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,false,,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",112150382-AM04 +102540299,72,10080390,Traffic Collision,09/11/2010,09/11/2010,09/11/2010 06:18:15 PM,09/11/2010 06:18:15 PM,09/11/2010 06:19:14 PM,09/11/2010 06:19:21 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 06:20:52 PM,TURK ST/MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",102540299-72 +160240446,63,16009419,Medical Incident,01/24/2016,01/23/2016,01/24/2016 03:11:53 AM,01/24/2016 03:12:56 AM,01/24/2016 03:13:11 AM,01/24/2016 03:13:52 AM,01/24/2016 03:20:23 AM,01/24/2016 03:34:38 AM,01/24/2016 03:41:13 AM,Code 2 Transport,01/24/2016 04:00:31 AM,2ND ST/MARKET ST,San Francisco,94105,B03,1,2144,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",160240446-63 +132170340,E15,13073438,Outside Fire,08/05/2013,08/05/2013,08/05/2013 09:07:37 PM,08/05/2013 09:09:38 PM,08/05/2013 09:09:45 PM,08/05/2013 09:11:04 PM,08/05/2013 09:13:24 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 09:17:15 PM,100 Block of SAN JUAN AVE,SF,94112,B09,15,8275,3,3,3,true,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.7249393878258, -122.437476552213)",132170340-E15 +121700358,T07,12056581,Structure Fire,06/18/2012,06/18/2012,06/18/2012 09:40:16 PM,06/18/2012 09:41:05 PM,06/18/2012 09:41:28 PM,06/18/2012 09:43:43 PM,06/18/2012 09:44:47 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/18/2012 10:03:52 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,Fire,1,TRUCK,6,2,9,Mission,"(37.7642361189447, -122.419659842408)",121700358-T07 +102930297,E01,10093538,Medical Incident,10/20/2010,10/20/2010,10/20/2010 06:26:55 PM,10/20/2010 06:27:59 PM,10/20/2010 06:28:15 PM,10/20/2010 06:29:29 PM,10/20/2010 06:31:07 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/20/2010 06:40:10 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",102930297-E01 +160732487,AM14,16029067,Traffic Collision,03/13/2016,03/13/2016,03/13/2016 07:00:21 PM,03/13/2016 07:00:21 PM,03/13/2016 07:05:10 PM,03/13/2016 07:05:55 PM,03/13/2016 07:11:57 PM,03/13/2016 07:25:40 PM,03/13/2016 07:41:46 PM,Code 2 Transport,03/13/2016 08:09:32 PM,3RD AV/FULTON ST,San Francisco,94122,B07,31,7121,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7740311340131, -122.460552661372)",160732487-AM14 +110720102,E15,11023652,Medical Incident,03/13/2011,03/12/2011,03/13/2011 07:20:19 AM,03/13/2011 07:21:42 AM,03/13/2011 07:21:55 AM,03/13/2011 07:23:43 AM,03/13/2011 07:34:36 AM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/13/2011 07:36:28 AM,100 Block of APTOS AVE,SF,94127,B09,15,8535,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7292555680166, -122.466867374325)",110720102-E15 +132860030,85,13097142,Medical Incident,10/13/2013,10/12/2013,10/13/2013 02:13:00 AM,10/13/2013 02:14:23 AM,10/13/2013 02:15:26 AM,10/13/2013 02:15:54 AM,10/13/2013 02:20:41 AM,10/13/2013 02:30:23 AM,10/13/2013 02:43:40 AM,Code 2 Transport,10/13/2013 03:05:28 AM,400 Block of JESSIE ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7820442091855, -122.408519525275)",132860030-85 +131850367,AP,13063203,Other,07/04/2013,07/04/2013,07/04/2013 09:56:00 PM,07/04/2013 09:56:00 PM,07/04/2013 09:56:00 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Fire,07/04/2013 09:56:53 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",131850367-AP +121270276,KM14,12042359,Medical Incident,05/06/2012,05/06/2012,05/06/2012 05:52:48 PM,05/06/2012 05:53:11 PM,05/06/2012 05:55:26 PM,05/06/2012 05:57:53 PM,05/06/2012 06:05:35 PM,05/06/2012 06:16:59 PM,05/06/2012 06:31:54 PM,Code 2 Transport,05/06/2012 06:56:26 PM,1200 Block of FUNSTON AVE,SF,94122,B08,22,7346,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,5,Inner Sunset,"(37.7647970678672, -122.470592087691)",121270276-KM14 +160321736,53,16012584,Medical Incident,02/01/2016,02/01/2016,02/01/2016 01:04:26 PM,02/01/2016 01:05:39 PM,02/01/2016 01:05:57 PM,02/01/2016 01:06:10 PM,02/01/2016 01:12:34 PM,02/01/2016 01:20:05 PM,02/01/2016 01:44:40 PM,Code 3 Transport,02/01/2016 02:24:58 PM,BRODERICK ST/HAYES ST,San Francisco,94117,B05,21,4244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.774778236613, -122.4394662165)",160321736-53 +112130332,E40,11070414,Traffic Collision,08/01/2011,08/01/2011,08/01/2011 07:48:37 PM,08/01/2011 07:49:25 PM,08/01/2011 07:49:42 PM,08/01/2011 07:51:03 PM,08/01/2011 07:52:23 PM,04/25/2016 02:03:23 PM,04/25/2016 02:03:23 PM,Other,08/01/2011 08:27:26 PM,19TH AV/VICENTE ST,SF,94116,B08,40,7415,2,2,2,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.739325432683, -122.475409073617)",112130332-E40 +133140313,E05,13106874,Medical Incident,11/10/2013,11/10/2013,11/10/2013 09:41:25 PM,11/10/2013 09:42:09 PM,11/10/2013 09:42:44 PM,11/10/2013 09:43:39 PM,11/10/2013 09:45:06 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 09:58:47 PM,500 Block of FULTON ST,SF,94102,B02,5,3412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",133140313-E05 +123240369,T08,12107888,Alarms,11/19/2012,11/19/2012,11/19/2012 08:37:02 PM,11/19/2012 08:38:30 PM,11/19/2012 08:38:46 PM,11/19/2012 08:39:31 PM,11/19/2012 08:46:05 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/19/2012 08:57:09 PM,0 Block of CLEMENTINA ST,SF,94105,B03,35,2137,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7873695918922, -122.395351491841)",123240369-T08 +130160161,E42,13005428,Medical Incident,01/16/2013,01/16/2013,01/16/2013 01:03:02 PM,01/16/2013 01:04:26 PM,01/16/2013 01:05:44 PM,01/16/2013 01:06:55 PM,01/16/2013 01:09:16 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Other,01/16/2013 01:22:00 PM,100 Block of CAMBRIDGE ST,SF,94134,B09,42,635,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,9,Excelsior,"(37.7297394945048, -122.419529070231)",130160161-E42 +133120298,RC3,13106122,Medical Incident,11/08/2013,11/08/2013,11/08/2013 05:19:01 PM,11/08/2013 05:20:24 PM,11/08/2013 05:22:49 PM,11/08/2013 05:23:25 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 05:27:11 PM,0 Block of ARAGO ST,SF,94112,B09,15,8223,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7274170733857, -122.443122455556)",133120298-RC3 +130630100,E23,13021024,Alarms,03/04/2013,03/04/2013,03/04/2013 08:48:34 AM,03/04/2013 08:50:09 AM,03/04/2013 08:50:25 AM,03/04/2013 08:52:22 AM,03/04/2013 08:56:29 AM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 09:08:56 AM,2500 Block of 46TH AVE,SF,94116,B08,23,7712,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7389817886029, -122.504355407568)",130630100-E23 +121390374,81,12046337,Medical Incident,05/18/2012,05/18/2012,05/18/2012 11:23:59 PM,05/18/2012 11:24:16 PM,05/18/2012 11:25:01 PM,05/18/2012 11:25:22 PM,05/18/2012 11:28:36 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Patient Declined Transport,05/18/2012 11:53:02 PM,LARKIN ST/WILLOW ST,SF,94109,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7837775223432, -122.417618573606)",121390374-81 +121410219,AM26,12046875,Medical Incident,05/20/2012,05/20/2012,05/20/2012 01:35:59 PM,05/20/2012 01:35:59 PM,05/20/2012 01:42:23 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Unable to Locate,05/20/2012 01:47:38 PM,19TH AV/FULTON ST,SF,94121,B07,31,7156,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Golden Gate Park,"(37.7728636539809, -122.477766945719)",121410219-AM26 +122170091,E01,12071957,Medical Incident,08/04/2012,08/04/2012,08/04/2012 08:32:31 AM,08/04/2012 08:33:23 AM,08/04/2012 08:33:56 AM,08/04/2012 08:35:30 AM,08/04/2012 08:38:03 AM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,04/25/2016 01:57:24 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122170091-E01 +113550301,E42,11117972,Structure Fire,12/21/2011,12/21/2011,12/21/2011 06:34:55 PM,12/21/2011 06:35:26 PM,12/21/2011 06:35:38 PM,12/21/2011 06:36:24 PM,12/21/2011 06:39:13 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 07:39:18 PM,1100 Block of FITZGERALD AVE,SF,94124,B10,17,6615,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7204070192388, -122.390422960871)",113550301-E42 +122730036,T03,12089916,Structure Fire,09/29/2012,09/28/2012,09/29/2012 01:53:45 AM,09/29/2012 01:53:45 AM,09/29/2012 01:53:58 AM,09/29/2012 01:55:23 AM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/29/2012 01:56:22 AM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",122730036-T03 +160830132,68,16032807,Medical Incident,03/23/2016,03/22/2016,03/23/2016 01:18:11 AM,03/23/2016 01:18:11 AM,03/23/2016 01:18:22 AM,03/23/2016 01:18:29 AM,03/23/2016 01:43:31 AM,03/23/2016 01:43:38 AM,03/23/2016 01:43:38 AM,Code 2 Transport,03/23/2016 02:28:16 AM,2400 Block of HARRISON ST,San Francisco,94110,B06,7,545,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7582329952396, -122.412355500109)",160830132-68 +160592766,76,16023639,Medical Incident,02/28/2016,02/28/2016,02/28/2016 06:54:23 PM,02/28/2016 06:59:34 PM,02/28/2016 07:00:15 PM,02/28/2016 07:00:31 PM,02/28/2016 07:12:24 PM,02/28/2016 07:44:51 PM,02/28/2016 08:07:32 PM,Code 2 Transport,02/28/2016 09:01:44 PM,2900 Block of GRIFFITH ST,San Francisco,94124,B10,17,6642,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7165907184231, -122.389695949457)",160592766-76 +140990272,B02,14033492,Alarms,04/09/2014,04/09/2014,04/09/2014 03:27:49 PM,04/09/2014 03:29:15 PM,04/09/2014 03:29:29 PM,04/09/2014 03:30:10 PM,04/09/2014 03:33:56 PM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Fire,04/09/2014 03:35:38 PM,600 Block of STEINER ST,SAN FRANCISCO,94117,B05,21,3631,3,3,3,false,Alarm,1,CHIEF,3,5,5,Hayes Valley,"(37.7751510634662, -122.432804075352)",140990272-B02 +160022529,71,16000827,Medical Incident,01/02/2016,01/02/2016,01/02/2016 05:36:19 PM,01/02/2016 05:38:14 PM,01/02/2016 05:38:25 PM,01/02/2016 05:38:31 PM,01/02/2016 05:44:36 PM,01/02/2016 06:11:07 PM,01/02/2016 06:30:03 PM,Code 2 Transport,01/02/2016 07:03:59 PM,1100 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7204070192388, -122.390422960871)",160022529-71 +132770166,E05,13094064,Alarms,10/04/2013,10/04/2013,10/04/2013 11:29:03 AM,10/04/2013 11:30:17 AM,10/04/2013 11:30:26 AM,10/04/2013 11:30:57 AM,10/04/2013 11:34:05 AM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 11:39:32 AM,1500 Block of FILLMORE ST,SF,94115,B04,5,3541,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",132770166-E05 +113140177,RC1,11104326,Medical Incident,11/10/2011,11/10/2011,11/10/2011 01:07:09 PM,11/10/2011 01:07:39 PM,11/10/2011 01:07:54 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 01:13:51 PM,500 Block of CORBETT AVE,SF,94114,B05,24,528,3,3,3,true,,1,RESCUE CAPTAIN,5,6,8,Castro/Upper Market,"(37.757353945876, -122.444193161155)",113140177-RC1 +140150327,AM22,14005263,Medical Incident,01/15/2014,01/15/2014,01/15/2014 06:52:00 PM,01/15/2014 06:54:32 PM,01/15/2014 07:29:12 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 07:29:29 PM,ELLIS ST/WEBSTER ST,SF,94115,B04,5,3514,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7825698868934, -122.43079788324)",140150327-AM22 +160800708,AM02,16031720,Medical Incident,03/20/2016,03/19/2016,03/20/2016 06:33:12 AM,03/20/2016 06:33:12 AM,03/20/2016 06:33:27 AM,03/20/2016 06:34:24 AM,03/20/2016 06:37:00 AM,03/20/2016 06:52:12 AM,03/20/2016 07:05:24 AM,Code 2 Transport,03/20/2016 07:26:57 AM,20TH ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5447,A,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.758764228895, -122.416872482487)",160800708-AM02 +120670158,T07,12022180,Medical Incident,03/07/2012,03/07/2012,03/07/2012 10:26:51 AM,03/07/2012 10:27:15 AM,03/07/2012 10:27:29 AM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,04/25/2016 01:59:47 PM,24TH ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,3,2,2,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Mission,"(37.7523727894276, -122.416265511485)",120670158-T07 +110140141,T13,11004615,Structure Fire,01/14/2011,01/14/2011,01/14/2011 11:52:15 AM,01/14/2011 11:52:40 AM,01/14/2011 11:52:55 AM,01/14/2011 11:54:12 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 12:04:49 PM,700 Block of UNION ST,SF,94133,B01,28,1422,3,3,3,false,,1,TRUCK,11,1,3,Chinatown,"(37.800140039009, -122.412059325975)",110140141-T13 +130550008,E14,13018418,Medical Incident,02/24/2013,02/23/2013,02/24/2013 12:18:40 AM,02/24/2013 12:20:51 AM,02/24/2013 12:24:44 AM,02/24/2013 12:26:14 AM,02/24/2013 12:28:08 AM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/24/2013 12:32:48 AM,400 Block of 33RD AVE,SF,94121,B07,14,7245,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7806543965679, -122.493444371673)",130550008-E14 +133270055,E09,13110955,Medical Incident,11/23/2013,11/22/2013,11/23/2013 03:25:22 AM,11/23/2013 03:25:22 AM,11/23/2013 03:26:23 AM,11/23/2013 03:28:11 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 03:32:59 AM,2600 Block of BRYANT ST,SF,94110,B06,9,5532,3,3,3,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7520023380427, -122.408984897471)",133270055-E09 +130350049,54,13011878,Medical Incident,02/04/2013,02/03/2013,02/04/2013 03:33:28 AM,02/04/2013 03:34:43 AM,02/04/2013 03:34:59 AM,02/04/2013 03:35:09 AM,02/04/2013 03:39:04 AM,02/04/2013 03:56:01 AM,02/04/2013 03:59:52 AM,Code 2 Transport,02/04/2013 04:22:43 AM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",130350049-54 +121370236,83,12045559,Medical Incident,05/16/2012,05/16/2012,05/16/2012 01:40:35 PM,05/16/2012 01:40:56 PM,05/16/2012 01:42:02 PM,05/16/2012 01:42:08 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,04/25/2016 01:58:39 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",121370236-83 +122290213,77,12075898,Medical Incident,08/16/2012,08/16/2012,08/16/2012 01:52:12 PM,08/16/2012 01:53:21 PM,08/16/2012 01:53:46 PM,08/16/2012 01:54:06 PM,08/16/2012 01:58:09 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Against Medical Advice,08/16/2012 02:53:53 PM,800 Block of PENNSYLVANIA AVE,SF,94107,B10,37,2535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7563691529514, -122.393072356473)",122290213-77 +160390364,54,16015467,Medical Incident,02/08/2016,02/07/2016,02/08/2016 03:18:45 AM,02/08/2016 03:20:34 AM,02/08/2016 03:20:39 AM,02/08/2016 03:20:48 AM,02/08/2016 03:29:55 AM,02/08/2016 03:55:36 AM,02/08/2016 04:00:57 AM,Code 2 Transport,02/08/2016 04:34:27 AM,2100 Block of 32ND AVE,San Francisco,94116,B08,18,7532,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.747100816678, -122.489874704565)",160390364-54 +112260341,54,11074812,Medical Incident,08/14/2011,08/14/2011,08/14/2011 09:15:28 PM,08/14/2011 09:16:46 PM,08/14/2011 09:16:52 PM,08/14/2011 09:16:55 PM,08/14/2011 09:23:24 PM,08/14/2011 09:33:54 PM,08/14/2011 09:39:26 PM,Code 2 Transport,08/14/2011 09:54:13 PM,IVY ST/OCTAVIA ST,SF,94102,B02,36,3265,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7771396609894, -122.424717562867)",112260341-54 +121240225,B04,12041189,Alarms,05/03/2012,05/03/2012,05/03/2012 02:33:51 PM,05/03/2012 02:34:53 PM,05/03/2012 02:35:09 PM,05/03/2012 02:35:53 PM,05/03/2012 02:39:26 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 02:45:46 PM,3100 Block of WASHINGTON ST,SF,94115,B04,10,4265,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7901683360744, -122.445106098836)",121240225-B04 +132270099,82,13076552,Medical Incident,08/15/2013,08/15/2013,08/15/2013 09:36:05 AM,08/15/2013 09:37:27 AM,08/15/2013 09:37:52 AM,08/15/2013 09:38:02 AM,08/15/2013 09:43:30 AM,08/15/2013 10:10:54 AM,08/15/2013 10:14:23 AM,Code 2 Transport,08/15/2013 10:32:10 AM,100 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",132270099-82 +140260010,B02,14008754,Alarms,01/26/2014,01/25/2014,01/26/2014 12:20:43 AM,01/26/2014 12:22:49 AM,01/26/2014 12:22:58 AM,01/26/2014 12:24:34 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 12:27:46 AM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",140260010-B02 +160522963,76,16020942,Medical Incident,02/21/2016,02/21/2016,02/21/2016 07:24:04 PM,02/21/2016 07:24:04 PM,02/21/2016 07:24:39 PM,02/21/2016 07:24:47 PM,02/21/2016 07:27:42 PM,02/21/2016 07:35:40 PM,02/21/2016 07:43:05 PM,Code 2 Transport,02/21/2016 08:04:45 PM,HYDE ST/EDDY ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",160522963-76 +160681758,65,16027122,Medical Incident,03/08/2016,03/08/2016,03/08/2016 12:42:58 PM,03/08/2016 12:46:16 PM,03/08/2016 12:46:43 PM,03/08/2016 12:46:54 PM,03/08/2016 12:54:33 PM,03/08/2016 01:46:10 PM,03/08/2016 01:33:42 PM,Code 2 Transport,03/08/2016 02:07:06 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160681758-65 +131150252,B02,13038845,Alarms,04/25/2013,04/25/2013,04/25/2013 05:14:48 PM,04/25/2013 05:15:54 PM,04/25/2013 05:16:07 PM,04/25/2013 05:17:39 PM,04/25/2013 05:20:00 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Fire,04/25/2013 05:28:10 PM,200 Block of VALENCIA ST,SF,94103,B02,36,5126,3,3,3,false,Alarm,1,CHIEF,3,2,8,Mission,"(37.7690117510129, -122.422352223863)",131150252-B02 +131030164,E16,13034565,Medical Incident,04/13/2013,04/13/2013,04/13/2013 12:19:13 PM,04/13/2013 12:21:09 PM,04/13/2013 12:22:21 PM,04/13/2013 12:23:27 PM,04/13/2013 12:26:41 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/13/2013 12:33:54 PM,LOMBARD ST/POLK ST,SF,94109,B01,16,3133,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8015580514761, -122.422901799225)",131030164-E16 +131340047,77,13045096,Medical Incident,05/14/2013,05/13/2013,05/14/2013 05:32:08 AM,05/14/2013 05:32:41 AM,05/14/2013 05:35:31 AM,05/14/2013 05:36:35 AM,05/14/2013 05:42:09 AM,05/14/2013 05:51:41 AM,05/14/2013 05:58:34 AM,Code 2 Transport,05/14/2013 06:41:24 AM,1100 Block of FRANKLIN ST,SF,94109,B04,3,3222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7852397067254, -122.423049038172)",131340047-77 +112690060,E19,11088820,Medical Incident,09/26/2011,09/25/2011,09/26/2011 07:53:49 AM,09/26/2011 07:54:37 AM,09/26/2011 07:54:50 AM,09/26/2011 07:56:39 AM,09/26/2011 07:58:50 AM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/26/2011 08:11:23 AM,2900 Block of 25TH AVE,SF,94132,B08,19,8734,3,3,3,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7334328921172, -122.480992659737)",112690060-E19 +132880316,86,13098078,Traffic Collision,10/15/2013,10/15/2013,10/15/2013 05:40:31 PM,10/15/2013 05:44:15 PM,10/15/2013 05:47:52 PM,10/15/2013 05:48:08 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,04/25/2016 01:50:15 PM,GEARY ST/LEAVENWORTH ST,SF,94109,B04,3,1543,2,2,2,false,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",132880316-86 +102820417,E38,10089890,Other,10/09/2010,10/09/2010,10/09/2010 10:36:18 PM,10/09/2010 10:39:37 PM,10/09/2010 10:39:49 PM,10/09/2010 10:41:19 PM,10/09/2010 10:43:04 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Fire,10/09/2010 10:50:29 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,true,,1,ENGINE,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",102820417-E38 +131990277,E28,13067540,Medical Incident,07/18/2013,07/18/2013,07/18/2013 05:36:12 PM,07/18/2013 05:38:06 PM,07/18/2013 05:38:35 PM,07/18/2013 05:40:08 PM,07/18/2013 05:41:41 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/18/2013 06:01:57 PM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,3,3,3,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8054738067872, -122.407570127181)",131990277-E28 +110400014,56,11013102,Medical Incident,02/09/2011,02/08/2011,02/09/2011 12:42:54 AM,02/09/2011 12:43:16 AM,02/09/2011 12:43:44 AM,02/09/2011 12:44:02 AM,02/09/2011 01:01:58 AM,02/09/2011 01:10:05 AM,02/09/2011 01:20:38 AM,Code 2 Transport,02/09/2011 01:35:40 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7819536537257, -122.410041631816)",110400014-56 +160831496,AM02,16032920,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:19:19 AM,03/23/2016 11:21:33 AM,03/23/2016 11:22:24 AM,03/23/2016 11:23:08 AM,03/23/2016 11:35:27 AM,03/23/2016 12:04:22 PM,03/23/2016 12:08:40 PM,Code 2 Transport,03/23/2016 12:41:33 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160831496-AM02 +140040095,77,14001378,Medical Incident,01/04/2014,01/04/2014,01/04/2014 09:10:52 AM,01/04/2014 09:13:16 AM,01/04/2014 09:13:51 AM,01/04/2014 09:14:07 AM,01/04/2014 09:18:01 AM,01/04/2014 09:31:14 AM,01/04/2014 09:51:49 AM,Code 2 Transport,01/04/2014 10:02:42 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",140040095-77 +160081539,KM02,16003207,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:47:47 AM,01/08/2016 11:48:56 AM,01/08/2016 11:49:29 AM,01/08/2016 11:50:11 AM,01/08/2016 11:57:23 AM,01/08/2016 12:17:02 PM,01/08/2016 12:34:20 PM,Code 2 Transport,01/08/2016 01:18:56 PM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",160081539-KM02 +140970341,94,14032793,Traffic Collision,04/07/2014,04/07/2014,04/07/2014 05:59:23 PM,04/07/2014 06:01:51 PM,04/07/2014 06:02:13 PM,04/07/2014 06:02:19 PM,04/07/2014 06:21:15 PM,04/07/2014 06:41:06 PM,04/07/2014 06:51:40 PM,Code 2 Transport,04/07/2014 07:20:36 PM,MISSION ST/EXCELSIOR AV,SAN FRANCISCO,94112,B09,43,6116,,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7262362449736, -122.433623592293)",140970341-94 +160204015,61,16008206,Traffic Collision,01/20/2016,01/20/2016,01/20/2016 11:27:11 PM,01/20/2016 11:27:11 PM,01/20/2016 11:27:27 PM,01/20/2016 11:27:46 PM,01/20/2016 11:30:57 PM,01/21/2016 12:06:23 AM,01/21/2016 12:15:07 AM,Code 2 Transport,01/21/2016 01:00:43 AM,3RD ST/BRANNAN ST,San Francisco,94107,B03,8,2173,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7800897302982, -122.394300038467)",160204015-61 +132190058,KM15,13073859,Medical Incident,08/07/2013,08/06/2013,08/07/2013 05:43:07 AM,08/07/2013 05:43:48 AM,08/07/2013 05:44:04 AM,08/07/2013 05:46:03 AM,08/07/2013 05:50:57 AM,08/07/2013 06:05:26 AM,08/07/2013 06:12:19 AM,Code 2 Transport,08/07/2013 06:46:48 AM,1000 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",132190058-KM15 +132850242,E23,13096996,Water Rescue,10/12/2013,10/12/2013,10/12/2013 04:45:05 PM,10/12/2013 04:46:32 PM,10/12/2013 04:46:55 PM,10/12/2013 04:48:06 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/12/2013 04:49:43 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,Fire,1,ENGINE,13,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",132850242-E23 +140600236,72,14020301,Medical Incident,03/01/2014,03/01/2014,03/01/2014 03:34:10 PM,03/01/2014 03:38:04 PM,03/01/2014 03:38:36 PM,03/01/2014 03:38:57 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Other,03/01/2014 03:43:17 PM,8TH ST/MARKET ST,SF,94103,B02,36,1646,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",140600236-72 +140250345,T08,14008721,Structure Fire,01/25/2014,01/25/2014,01/25/2014 10:28:21 PM,01/25/2014 10:28:21 PM,01/25/2014 10:28:26 PM,01/25/2014 10:30:04 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/25/2014 10:31:42 PM,MAIN ST/BRYANT ST,SF,94105,B03,35,2121,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7868986775116, -122.388779437164)",140250345-T08 +160072780,54,16002942,Medical Incident,01/07/2016,01/07/2016,01/07/2016 05:23:51 PM,01/07/2016 05:25:23 PM,01/07/2016 05:26:25 PM,01/07/2016 05:27:26 PM,01/07/2016 06:01:19 PM,01/07/2016 06:27:52 PM,01/07/2016 06:27:52 PM,Code 2 Transport,01/07/2016 07:28:22 PM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",160072780-54 +133580088,E29,13121625,Alarms,12/24/2013,12/23/2013,12/24/2013 07:54:15 AM,12/24/2013 07:55:33 AM,12/24/2013 07:55:38 AM,12/24/2013 07:57:08 AM,12/24/2013 07:59:12 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 08:03:32 AM,1700 Block of BRYANT ST,SF,94110,B02,29,5242,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7649537879117, -122.410494214244)",133580088-E29 +112540278,E16,11083910,Vehicle Fire,09/11/2011,09/11/2011,09/11/2011 07:06:55 PM,09/11/2011 07:07:26 PM,09/11/2011 07:07:38 PM,09/11/2011 07:07:50 PM,09/11/2011 07:10:26 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Fire,09/11/2011 07:25:41 PM,GREENWICH ST/LARKIN ST,SF,94109,B01,16,3132,3,3,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8008338094257, -122.421063301693)",112540278-E16 +140760379,E37,14025891,Medical Incident,03/17/2014,03/17/2014,03/17/2014 10:09:33 PM,03/17/2014 10:10:01 PM,03/17/2014 10:10:36 PM,03/17/2014 10:12:34 PM,03/17/2014 10:15:43 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,No Merit,03/17/2014 10:20:54 PM,900 Block of SAN BRUNO AVE,SAN FRANCISCO,94110,B10,37,2551,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7572995523954, -122.404695924103)",140760379-E37 +112070228,KM12,11068414,Medical Incident,07/26/2011,07/26/2011,07/26/2011 03:27:48 PM,07/26/2011 03:28:30 PM,07/26/2011 03:29:11 PM,07/26/2011 03:31:28 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 03:31:34 PM,300 Block of PENNSYLVANIA AVE,SF,94107,B03,37,2463,3,3,3,false,,1,PRIVATE,3,10,10,Potrero Hill,"(37.7621200628306, -122.393481482232)",112070228-KM12 +133300261,E02,13112128,Medical Incident,11/26/2013,11/26/2013,11/26/2013 04:44:09 PM,11/26/2013 04:49:08 PM,11/26/2013 04:50:36 PM,11/26/2013 04:52:26 PM,11/26/2013 04:55:12 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,No Merit,11/26/2013 04:57:04 PM,TAYLOR ST/VALLEJO ST,SF,94133,B01,2,1421,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7979569524831, -122.413743553794)",133300261-E02 +130230314,AM12,13008044,Medical Incident,01/23/2013,01/23/2013,01/23/2013 05:42:18 PM,01/23/2013 05:42:47 PM,01/23/2013 05:43:19 PM,01/23/2013 05:43:52 PM,01/23/2013 05:49:23 PM,01/23/2013 06:03:27 PM,01/23/2013 06:13:39 PM,Code 3 Transport,01/23/2013 06:58:36 PM,300 Block of HEARST AVE,SF,94112,B09,15,8231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7306488156642, -122.445435598891)",130230314-AM12 +131380404,E41,13046830,Traffic Collision,05/18/2013,05/18/2013,05/18/2013 11:32:58 PM,05/18/2013 11:34:05 PM,05/18/2013 11:34:30 PM,05/18/2013 11:35:48 PM,05/18/2013 11:51:06 PM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,Other,05/18/2013 11:52:10 PM,VAN NESS AV/PACIFIC AV,SF,94109,B04,41,3152,2,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7948173544208, -122.423227147276)",131380404-E41 +160810493,71,16032065,Medical Incident,03/21/2016,03/20/2016,03/21/2016 06:38:43 AM,03/21/2016 06:39:55 AM,03/21/2016 06:41:21 AM,03/21/2016 06:41:26 AM,03/21/2016 06:48:11 AM,03/21/2016 07:08:45 AM,03/21/2016 07:27:37 AM,Code 2 Transport,03/21/2016 08:04:15 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160810493-71 +120050230,B04,12001773,Gas Leak (Natural and LP Gases),01/05/2012,01/05/2012,01/05/2012 03:00:00 PM,01/05/2012 03:06:33 PM,01/05/2012 03:06:42 PM,01/05/2012 03:08:28 PM,01/05/2012 03:13:16 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 03:23:50 PM,200 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.771818056558, -122.443998560298)",120050230-B04 +130870042,81,13028900,Citizen Assist / Service Call,03/28/2013,03/27/2013,03/28/2013 04:08:09 AM,03/28/2013 04:08:09 AM,03/28/2013 04:09:34 AM,03/28/2013 04:10:18 AM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/28/2013 04:15:06 AM,17TH ST/DOLORES ST,SF,94110,B02,6,5251,3,3,3,true,Alarm,1,MEDIC,2,2,8,Castro/Upper Market,"(37.763030871155, -122.426228479696)",130870042-81 +121350060,KM05,12044800,Medical Incident,05/14/2012,05/13/2012,05/14/2012 07:47:58 AM,05/14/2012 07:50:43 AM,05/14/2012 07:51:11 AM,05/14/2012 07:52:01 AM,05/14/2012 08:00:43 AM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/14/2012 08:21:15 AM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,E,2,2,false,Non Life-threatening,1,PRIVATE,3,1,3,North Beach,"(37.804809171271, -122.406795529826)",121350060-KM05 +160192029,62,16007663,Medical Incident,01/19/2016,01/19/2016,01/19/2016 02:10:08 PM,01/19/2016 02:10:08 PM,01/19/2016 02:10:41 PM,01/19/2016 02:10:54 PM,01/19/2016 02:13:49 PM,01/19/2016 02:40:00 PM,01/19/2016 02:53:54 PM,Code 2 Transport,01/19/2016 04:00:43 PM,CYRIL MAGNIN ST/MARKET ST,San Francisco,94103,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160192029-62 +113040145,B03,11100892,Alarms,10/31/2011,10/31/2011,10/31/2011 10:32:38 AM,10/31/2011 10:33:24 AM,10/31/2011 10:33:31 AM,10/31/2011 10:35:52 AM,10/31/2011 10:38:07 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Fire,10/31/2011 10:42:59 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",113040145-B03 +131560301,E40,13052997,Structure Fire,06/05/2013,06/05/2013,06/05/2013 05:41:17 PM,06/05/2013 05:42:42 PM,06/05/2013 05:43:07 PM,06/05/2013 05:45:47 PM,06/05/2013 05:54:33 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/05/2013 05:55:35 PM,1800 Block of 24TH AVE,SF,94122,B08,18,7455,3,3,3,false,Alarm,1,ENGINE,8,8,4,Sunset/Parkside,"(37.7530751501868, -122.481697901607)",131560301-E40 +133460387,E17,13117569,Medical Incident,12/12/2013,12/12/2013,12/12/2013 10:39:41 PM,12/12/2013 10:40:59 PM,12/12/2013 10:41:46 PM,12/12/2013 10:43:17 PM,12/12/2013 10:46:03 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 10:51:37 PM,LA SALLE AV/3RD ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7371695334489, -122.389864463351)",133460387-E17 +130750143,E18,13024996,Structure Fire,03/16/2013,03/16/2013,03/16/2013 11:52:58 AM,03/16/2013 11:53:46 AM,03/16/2013 11:54:00 AM,03/16/2013 11:56:07 AM,03/16/2013 12:00:04 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 12:03:47 PM,19TH AV/IRVING ST,SF,94122,B08,22,7424,3,3,3,true,Alarm,1,ENGINE,5,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",130750143-E18 +160851852,KM09,16033787,Medical Incident,03/25/2016,03/25/2016,03/25/2016 01:12:51 PM,03/25/2016 01:13:36 PM,03/25/2016 01:15:10 PM,03/25/2016 01:15:54 PM,03/25/2016 01:40:21 PM,03/25/2016 01:40:23 PM,03/25/2016 01:48:51 PM,Code 2 Transport,03/25/2016 02:26:49 PM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",160851852-KM09 +103490225,99,10111956,Medical Incident,12/15/2010,12/15/2010,12/15/2010 03:05:36 PM,12/15/2010 03:09:00 PM,12/15/2010 03:10:15 PM,12/15/2010 03:10:42 PM,12/15/2010 03:20:47 PM,12/15/2010 03:37:47 PM,12/15/2010 04:18:46 PM,Code 2 Transport,12/15/2010 04:25:37 PM,THE EMBARCADERO/WASHINGTON ST,SF,94111,B01,13,903,1,1,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7966828949467, -122.395405269908)",103490225-99 +130730271,E01,13024417,Medical Incident,03/14/2013,03/14/2013,03/14/2013 05:24:50 PM,03/14/2013 05:26:32 PM,03/14/2013 05:27:06 PM,03/14/2013 05:27:48 PM,03/14/2013 05:32:44 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 05:44:54 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",130730271-E01 +112580128,E39,11085004,Medical Incident,09/15/2011,09/15/2011,09/15/2011 10:40:45 AM,09/15/2011 10:41:19 AM,09/15/2011 10:42:37 AM,09/15/2011 10:45:32 AM,09/15/2011 10:48:38 AM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/15/2011 10:57:43 AM,0 Block of LENOX WAY,SF,94127,B08,39,861,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7430172936494, -122.464741958044)",112580128-E39 +160283856,88,16011256,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:52:12 PM,01/28/2016 09:53:27 PM,01/28/2016 09:53:49 PM,01/28/2016 09:54:02 PM,01/28/2016 09:58:17 PM,01/28/2016 10:18:03 PM,01/28/2016 10:26:07 PM,Code 2 Transport,01/28/2016 11:08:16 PM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",160283856-88 +111050067,T03,11034683,Structure Fire,04/15/2011,04/15/2011,04/15/2011 08:22:13 AM,04/15/2011 08:23:30 AM,04/15/2011 08:23:44 AM,04/15/2011 08:25:36 AM,04/15/2011 08:26:46 AM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/15/2011 08:38:41 AM,900 Block of OFARRELL ST,SF,94109,B04,3,3162,3,3,3,false,,1,TRUCK,3,2,6,Tenderloin,"(37.7848026049584, -122.420359587803)",111050067-T03 +112710213,E17,11089556,Medical Incident,09/28/2011,09/28/2011,09/28/2011 01:13:54 PM,09/28/2011 01:15:02 PM,09/28/2011 01:15:20 PM,09/28/2011 01:16:30 PM,09/28/2011 01:19:34 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 01:36:39 PM,0 Block of CASHMERE ST,SF,94124,B10,25,652,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",112710213-E17 +130200271,77,13006945,Medical Incident,01/20/2013,01/20/2013,01/20/2013 04:47:34 PM,01/20/2013 04:49:00 PM,01/20/2013 05:18:22 PM,01/20/2013 05:18:27 PM,01/20/2013 05:32:52 PM,01/20/2013 05:47:35 PM,01/20/2013 06:14:05 PM,Code 2 Transport,01/20/2013 06:45:23 PM,0 Block of FRANCE AVE,SF,94112,B09,43,6123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7198797644764, -122.437908601432)",130200271-77 +110130324,E22,11004437,Medical Incident,01/13/2011,01/13/2011,01/13/2011 07:06:51 PM,01/13/2011 07:07:26 PM,01/13/2011 07:07:58 PM,01/13/2011 07:09:20 PM,01/13/2011 07:14:37 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/13/2011 07:10:20 PM,1300 Block of 21ST AVE,SF,94122,B08,22,7426,3,3,3,false,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7625397133355, -122.479132257193)",110130324-E22 +132720117,T01,13092399,Structure Fire,09/29/2013,09/29/2013,09/29/2013 09:12:49 AM,09/29/2013 09:12:50 AM,09/29/2013 09:13:04 AM,09/29/2013 09:13:43 AM,09/29/2013 09:16:13 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 09:18:21 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",132720117-T01 +102480080,T03,10078278,Citizen Assist / Service Call,09/05/2010,09/04/2010,09/05/2010 07:06:35 AM,09/05/2010 07:07:24 AM,09/05/2010 07:07:44 AM,09/05/2010 07:08:39 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 07:20:29 AM,800 Block of FRANKLIN ST,SF,94102,B02,36,3216,3,3,3,false,,1,TRUCK,9,2,5,Western Addition,"(37.7819947126055, -122.422254006576)",102480080-T03 +132440237,85,13082394,Medical Incident,09/01/2013,09/01/2013,09/01/2013 04:21:36 PM,09/01/2013 04:21:51 PM,09/01/2013 04:22:14 PM,09/01/2013 04:22:29 PM,04/25/2016 01:51:00 PM,09/01/2013 04:39:43 PM,09/01/2013 05:01:23 PM,Code 2 Transport,09/01/2013 05:28:00 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7610397684815, -122.419213667994)",132440237-85 +160713465,83,16028391,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:43:53 PM,03/11/2016 09:44:34 PM,03/11/2016 09:44:50 PM,03/11/2016 09:45:07 PM,03/11/2016 09:55:00 PM,03/11/2016 10:08:36 PM,03/11/2016 10:21:22 PM,Code 2 Transport,03/11/2016 10:54:35 PM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160713465-83 +110410297,E38,11013665,Medical Incident,02/10/2011,02/10/2011,02/10/2011 04:54:30 PM,02/10/2011 04:55:20 PM,02/10/2011 05:01:29 PM,02/10/2011 05:03:16 PM,02/10/2011 05:22:30 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 05:22:44 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,false,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",110410297-E38 +160242473,KM04,16009604,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:03:04 PM,01/24/2016 05:03:04 PM,01/24/2016 05:03:39 PM,01/24/2016 05:04:04 PM,01/24/2016 05:08:34 PM,01/24/2016 05:54:16 PM,01/24/2016 06:12:22 PM,Code 2 Transport,01/24/2016 06:36:39 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160242473-KM04 +130540027,KM07,13018130,Medical Incident,02/23/2013,02/22/2013,02/23/2013 02:10:41 AM,02/23/2013 02:11:10 AM,02/23/2013 02:12:04 AM,02/23/2013 02:12:38 AM,02/23/2013 02:17:39 AM,02/23/2013 02:42:31 AM,02/23/2013 02:53:00 AM,Other,02/23/2013 03:53:16 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",130540027-KM07 +131900375,81,13064885,Medical Incident,07/09/2013,07/09/2013,07/09/2013 11:49:38 PM,07/09/2013 11:50:00 PM,07/09/2013 11:50:35 PM,07/09/2013 11:50:44 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,No Merit,07/10/2013 12:09:28 AM,0 Block of MAGELLAN AVE,SF,94116,B08,39,8627,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7489932050029, -122.460554951379)",131900375-81 +133190011,E05,13108249,Medical Incident,11/15/2013,11/14/2013,11/15/2013 12:56:48 AM,11/15/2013 12:57:25 AM,11/15/2013 12:57:43 AM,11/15/2013 12:59:36 AM,11/15/2013 01:01:17 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 01:11:31 AM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7795136005399, -122.432784844959)",133190011-E05 +112710265,T19,11089597,Medical Incident,09/28/2011,09/28/2011,09/28/2011 02:18:31 PM,09/28/2011 02:20:12 PM,09/28/2011 02:21:11 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 02:46:59 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,2,3,3,true,,1,TRUCK,3,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",112710265-T19 +130210228,AM16,13007299,Medical Incident,01/21/2013,01/21/2013,01/21/2013 03:07:59 PM,01/21/2013 03:10:25 PM,01/21/2013 03:11:59 PM,01/21/2013 03:12:41 PM,01/21/2013 03:20:21 PM,01/21/2013 03:36:26 PM,01/21/2013 03:37:40 PM,Code 3 Transport,01/21/2013 04:12:01 PM,800 Block of DE HARO ST,SF,94107,B10,37,2511,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Potrero Hill,"(37.7589370511593, -122.400966701986)",130210228-AM16 +131460287,E42,13049602,Medical Incident,05/26/2013,05/26/2013,05/26/2013 04:25:51 PM,05/26/2013 04:27:16 PM,05/26/2013 04:27:27 PM,04/25/2016 01:52:36 PM,05/26/2013 04:27:48 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 04:41:06 PM,SAN BRUNO AV/SILVER AV,SF,94134,B10,42,6362,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7324386586756, -122.405607549199)",131460287-E42 +103180312,B04,10102032,Structure Fire,11/14/2010,11/14/2010,11/14/2010 06:07:01 PM,11/14/2010 06:07:02 PM,11/14/2010 06:07:15 PM,11/14/2010 06:08:00 PM,11/14/2010 06:08:46 PM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 06:25:49 PM,2300 Block of BUCHANAN ST,SF,94115,B04,38,343,3,3,3,false,,1,CHIEF,1,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",103180312-B04 +132360210,55,13079661,Medical Incident,08/24/2013,08/24/2013,08/24/2013 04:33:50 PM,08/24/2013 04:35:54 PM,08/24/2013 04:36:45 PM,08/24/2013 04:37:08 PM,08/24/2013 04:53:45 PM,08/24/2013 05:23:32 PM,08/24/2013 05:33:42 PM,Code 2 Transport,08/24/2013 05:59:56 PM,BUSH ST/HYDE ST,SF,94109,B04,3,1561,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7891101748937, -122.417016879226)",132360210-55 +102370123,E28,10074672,Outside Fire,08/25/2010,08/25/2010,08/25/2010 09:44:14 AM,08/25/2010 09:44:14 AM,08/25/2010 09:45:17 AM,08/25/2010 09:45:28 AM,08/25/2010 09:48:06 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Fire,08/25/2010 10:13:04 AM,MARKET ST/BATTERY ST,SF,94104,B01,13,1163,3,3,3,false,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7908053759388, -122.399504510645)",102370123-E28 +130400396,E38,13013859,Medical Incident,02/09/2013,02/09/2013,02/09/2013 11:43:47 PM,02/09/2013 11:45:09 PM,02/09/2013 11:45:41 PM,02/09/2013 11:47:48 PM,02/09/2013 11:49:40 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/09/2013 11:55:33 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",130400396-E38 +160572557,56,16022835,Medical Incident,02/26/2016,02/26/2016,02/26/2016 04:35:19 PM,02/26/2016 04:35:54 PM,02/26/2016 04:36:28 PM,02/26/2016 04:37:08 PM,02/26/2016 04:43:44 PM,02/26/2016 05:00:43 PM,02/26/2016 05:16:13 PM,Code 3 Transport,02/26/2016 05:58:02 PM,5500 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7273180308836, -122.393270734468)",160572557-56 +130220059,E01,13007488,Medical Incident,01/22/2013,01/21/2013,01/22/2013 06:48:20 AM,01/22/2013 06:49:14 AM,01/22/2013 06:50:01 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 06:51:53 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",130220059-E01 +120080186,T18,12002771,Medical Incident,01/08/2012,01/08/2012,01/08/2012 12:27:50 PM,01/08/2012 12:29:15 PM,01/08/2012 12:33:18 PM,01/08/2012 12:48:40 PM,01/08/2012 12:50:17 PM,04/25/2016 02:00:44 PM,04/25/2016 02:00:44 PM,Other,01/08/2012 12:52:51 PM,1800 Block of 35TH AVE,SF,94122,B08,18,7561,2,2,2,false,Non Life-threatening,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7525463044622, -122.493622363454)",120080186-T18 +112040028,E03,11067266,Structure Fire,07/23/2011,07/22/2011,07/23/2011 01:06:55 AM,07/23/2011 01:06:56 AM,07/23/2011 01:07:19 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/23/2011 01:08:34 AM,POLK ST/SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",112040028-E03 +111240060,81,11040872,Medical Incident,05/04/2011,05/03/2011,05/04/2011 07:25:10 AM,05/04/2011 07:26:53 AM,05/04/2011 07:27:09 AM,05/04/2011 07:28:07 AM,05/04/2011 07:39:07 AM,05/04/2011 07:47:10 AM,05/04/2011 07:57:08 AM,Code 2 Transport,05/04/2011 08:15:31 AM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7854364798696, -122.41533612902)",111240060-81 +132580277,KM02,13087359,Medical Incident,09/15/2013,09/15/2013,09/15/2013 05:57:03 PM,09/15/2013 05:57:17 PM,09/15/2013 05:57:29 PM,09/15/2013 05:58:06 PM,09/15/2013 06:03:42 PM,09/15/2013 06:10:33 PM,09/15/2013 06:28:40 PM,Code 2 Transport,09/15/2013 06:54:56 PM,YERBA BUENA LN/MISSION ST,SF,94103,B03,1,2178,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7851218519914, -122.403501281439)",132580277-KM02 +113160005,B07,11104862,Structure Fire,11/12/2011,11/11/2011,11/12/2011 12:18:36 AM,11/12/2011 12:19:09 AM,11/12/2011 12:19:34 AM,11/12/2011 12:20:07 AM,11/12/2011 12:23:40 AM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/12/2011 12:28:52 AM,3600 Block of SACRAMENTO ST,SF,94118,B07,10,4432,3,3,3,false,,1,CHIEF,3,7,2,Presidio Heights,"(37.7875021792847, -122.452780220545)",113160005-B07 +132980382,E03,13101375,Medical Incident,10/25/2013,10/25/2013,10/25/2013 09:00:38 PM,10/25/2013 09:03:02 PM,10/25/2013 09:04:13 PM,10/25/2013 09:05:30 PM,10/25/2013 09:06:47 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 09:21:54 PM,1300 Block of VAN NESS AVE,SF,94109,B04,3,3156,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7882889208706, -122.421732731473)",132980382-E03 +133150374,E01,13107240,Medical Incident,11/11/2013,11/11/2013,11/11/2013 08:13:04 PM,11/11/2013 08:14:53 PM,11/11/2013 08:15:21 PM,11/11/2013 08:16:08 PM,11/11/2013 08:18:42 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/11/2013 08:26:47 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",133150374-E01 +140070117,T17,14002436,Structure Fire,01/07/2014,01/07/2014,01/07/2014 09:43:52 AM,01/07/2014 09:44:31 AM,01/07/2014 09:45:24 AM,01/07/2014 09:46:22 AM,01/07/2014 09:51:00 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 10:24:27 AM,AMADOR ST/ILLINOIS ST,SF,94124,B10,25,6462,,3,3,true,Alarm,1,TRUCK,5,10,10,Bayview Hunters Point,"(37.7457569905463, -122.386060186931)",140070117-T17 +121050056,66,12034662,Medical Incident,04/14/2012,04/13/2012,04/14/2012 03:05:17 AM,04/14/2012 03:06:31 AM,04/14/2012 03:07:24 AM,04/14/2012 03:07:34 AM,04/14/2012 03:09:44 AM,04/14/2012 03:46:54 AM,04/25/2016 01:59:11 PM,Patient Declined Transport,04/14/2012 03:48:13 AM,1200 Block of MARKET ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",121050056-66 +160470816,71,16018835,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:30:26 AM,02/16/2016 08:32:56 AM,02/16/2016 08:33:31 AM,02/16/2016 08:39:09 AM,02/16/2016 08:57:53 AM,02/16/2016 09:23:19 AM,02/16/2016 09:30:13 AM,Code 2 Transport,02/16/2016 10:04:25 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",160470816-71 +122280197,B03,12075565,Alarms,08/15/2012,08/15/2012,08/15/2012 01:26:28 PM,08/15/2012 01:27:38 PM,08/15/2012 01:29:16 PM,08/15/2012 01:30:48 PM,08/15/2012 01:33:40 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Fire,08/15/2012 01:42:17 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",122280197-B03 +103280152,E03,10105042,Structure Fire,11/24/2010,11/24/2010,11/24/2010 12:32:49 PM,11/24/2010 12:35:16 PM,11/24/2010 12:35:40 PM,11/24/2010 12:36:27 PM,11/24/2010 12:38:14 PM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/24/2010 12:39:22 PM,FRANKLIN ST/GOLDEN GATE AV,SF,94102,B02,36,3216,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7808210471753, -122.422086793996)",103280152-E03 +160803465,85,16031964,Medical Incident,03/20/2016,03/20/2016,03/20/2016 09:48:17 PM,03/20/2016 09:49:05 PM,03/20/2016 09:49:16 PM,03/20/2016 09:49:25 PM,03/20/2016 09:59:53 PM,03/20/2016 10:22:26 PM,03/20/2016 10:40:10 PM,Code 2 Transport,03/20/2016 11:20:14 PM,400 Block of 39TH AVE,San Francisco,94121,B07,34,7256,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7803621402602, -122.499869608562)",160803465-85 +160792188,KM11,16031441,Medical Incident,03/19/2016,03/19/2016,03/19/2016 02:39:55 PM,03/19/2016 02:41:43 PM,03/19/2016 02:42:16 PM,03/19/2016 02:42:36 PM,03/19/2016 02:52:46 PM,03/19/2016 03:06:03 PM,03/19/2016 03:25:20 PM,Code 2 Transport,03/19/2016 03:44:14 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7791285379843, -122.408030111231)",160792188-KM11 +160414073,72,16016678,Medical Incident,02/10/2016,02/10/2016,02/10/2016 11:40:36 PM,02/10/2016 11:43:21 PM,02/10/2016 11:43:28 PM,02/10/2016 11:43:57 PM,02/10/2016 11:48:53 PM,02/11/2016 12:11:01 AM,02/11/2016 12:15:22 AM,Code 2 Transport,02/11/2016 12:51:07 AM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160414073-72 +140800243,RS2,14027085,Medical Incident,03/21/2014,03/21/2014,03/21/2014 03:29:06 PM,03/21/2014 03:30:14 PM,03/21/2014 03:30:36 PM,03/21/2014 03:32:01 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Code 2 Transport,03/21/2014 03:32:07 PM,100 Block of CAPP ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,9,Mission,"(37.7642993402288, -122.418551435984)",140800243-RS2 +130550217,T07,13018592,Structure Fire,02/24/2013,02/24/2013,02/24/2013 03:16:36 PM,02/24/2013 03:16:36 PM,02/24/2013 03:16:47 PM,02/24/2013 03:17:37 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Other,02/24/2013 03:19:28 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",130550217-T07 +160682350,KM11,16027174,Medical Incident,03/08/2016,03/08/2016,03/08/2016 03:45:23 PM,03/08/2016 03:45:23 PM,03/08/2016 03:46:30 PM,03/08/2016 03:47:19 PM,03/08/2016 03:54:50 PM,03/08/2016 04:00:26 PM,03/08/2016 04:29:18 PM,Fire,03/08/2016 04:29:23 PM,10TH AV/CABRILLO ST,San Francisco,94118,B07,31,7134,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7751740093503, -122.468158436382)",160682350-KM11 +160801257,88,16031767,Medical Incident,03/20/2016,03/20/2016,03/20/2016 10:45:20 AM,03/20/2016 10:45:20 AM,03/20/2016 10:45:32 AM,03/20/2016 10:47:02 AM,03/20/2016 10:51:48 AM,03/20/2016 10:59:18 AM,03/20/2016 11:16:47 AM,Code 2 Transport,03/20/2016 11:48:32 AM,GREAT HY/SLOAT BL,San Francisco,94132,B08,23,7733,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",160801257-88 +121640177,82,12054393,Medical Incident,06/12/2012,06/12/2012,06/12/2012 12:51:14 PM,06/12/2012 12:52:52 PM,06/12/2012 12:53:19 PM,06/12/2012 12:53:38 PM,06/12/2012 12:57:39 PM,06/12/2012 01:08:33 PM,06/12/2012 01:28:43 PM,Code 2 Transport,06/12/2012 02:03:41 PM,200 Block of POTRERO AVE,SF,94103,B02,29,2351,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7664376828612, -122.407540732549)",121640177-82 +133580066,E17,13121607,Medical Incident,12/24/2013,12/23/2013,12/24/2013 05:48:56 AM,12/24/2013 05:49:36 AM,12/24/2013 05:50:03 AM,12/24/2013 05:52:15 AM,12/24/2013 05:55:28 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 06:10:36 AM,1000 Block of HOLLISTER AVE,SF,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7192584871254, -122.391450988401)",133580066-E17 +113150086,D3,11104610,Structure Fire,11/11/2011,11/11/2011,11/11/2011 09:25:19 AM,11/11/2011 09:26:05 AM,11/11/2011 09:26:15 AM,11/11/2011 09:27:10 AM,11/11/2011 09:35:06 AM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/11/2011 10:18:10 AM,100 Block of HOLLOWAY AVE,SF,94112,B09,15,8472,3,3,3,false,,1,CHIEF,7,9,7,Oceanview/Merced/Ingleside,"(37.721904919521, -122.454617025243)",113150086-D3 +122070105,E10,12068764,Structure Fire,07/25/2012,07/25/2012,07/25/2012 09:50:00 AM,07/25/2012 09:50:38 AM,07/25/2012 09:51:18 AM,07/25/2012 09:58:57 AM,07/25/2012 10:14:24 AM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Other,07/25/2012 11:18:08 AM,0 Block of CLEARY CT,SF,94109,B04,3,3323,3,3,3,true,Fire,2,ENGINE,22,2,5,Western Addition,"(37.7840380799334, -122.426424267514)",122070105-E10 +130690206,E07,13023063,Traffic Collision,03/10/2013,03/10/2013,03/10/2013 03:31:32 PM,03/10/2013 03:32:44 PM,03/10/2013 03:34:10 PM,04/25/2016 01:53:54 PM,03/10/2013 03:34:53 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 03:52:46 PM,FOLSOM ST/17TH ST,SF,94110,B02,7,5424,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.763696767377, -122.415155085854)",130690206-E07 +131630188,B04,13055379,Alarms,06/12/2013,06/12/2013,06/12/2013 12:39:16 PM,06/12/2013 12:40:57 PM,06/12/2013 12:41:33 PM,06/12/2013 12:42:35 PM,06/12/2013 12:45:44 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Fire,06/12/2013 12:48:37 PM,1200 Block of BUCHANAN ST,SF,94115,B02,5,3426,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7816468439098, -122.428929933146)",131630188-B04 +130910390,E33,13030633,Medical Incident,04/01/2013,04/01/2013,04/01/2013 10:08:49 PM,04/01/2013 10:09:53 PM,04/01/2013 10:10:22 PM,04/01/2013 10:11:42 PM,04/01/2013 10:13:34 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 10:36:59 PM,0 Block of LOBOS ST,SF,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7148604733878, -122.454263242717)",130910390-E33 +120620141,RC3,12020345,Medical Incident,03/02/2012,03/02/2012,03/02/2012 11:23:02 AM,03/02/2012 11:23:17 AM,03/02/2012 11:23:42 AM,03/02/2012 11:24:36 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/02/2012 11:26:17 AM,700 Block of OAK ST,SF,94117,B05,21,3632,E,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,4,5,5,Hayes Valley,"(37.7739224438476, -122.431657677759)",120620141-RC3 +111690027,T07,11055579,Alarms,06/18/2011,06/17/2011,06/18/2011 01:49:48 AM,06/18/2011 01:51:23 AM,06/18/2011 01:51:42 AM,06/18/2011 01:53:47 AM,06/18/2011 01:56:47 AM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,Other,06/18/2011 02:09:13 AM,800 Block of CAPP ST,SF,94110,B06,7,5511,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7531080512306, -122.417362867532)",111690027-T07 +120890297,73,12029564,Medical Incident,03/29/2012,03/29/2012,03/29/2012 07:25:07 PM,03/29/2012 07:25:46 PM,03/29/2012 07:26:58 PM,04/25/2016 01:59:26 PM,03/29/2012 07:28:36 PM,03/29/2012 07:39:41 PM,03/29/2012 07:51:40 PM,Code 2 Transport,03/29/2012 08:20:29 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",120890297-73 +160920040,52,16036277,Medical Incident,04/01/2016,03/31/2016,04/01/2016 12:13:50 AM,04/01/2016 12:16:36 AM,04/01/2016 12:17:18 AM,04/01/2016 12:17:25 AM,04/01/2016 12:39:58 AM,04/01/2016 12:53:14 AM,04/01/2016 01:41:07 AM,Code 2 Transport,04/01/2016 01:55:02 AM,2200 Block of GREAT HWY,San Francisco,94116,B08,23,7727,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7444693274003, -122.507247609437)",160920040-52 +130450348,83,13015385,Medical Incident,02/14/2013,02/14/2013,02/14/2013 06:33:44 PM,02/14/2013 06:33:58 PM,02/14/2013 06:35:13 PM,02/14/2013 06:35:20 PM,02/14/2013 06:45:26 PM,02/14/2013 07:01:24 PM,02/14/2013 07:17:44 PM,Code 2 Transport,02/14/2013 07:37:10 PM,300 Block of UTAH ST,SF,94103,B02,29,2416,3,2,2,true,Non Life-threatening,1,MEDIC,2,2,10,Mission,"(37.7651908103714, -122.406559981453)",130450348-83 +160010734,53,16000145,Traffic Collision,01/01/2016,12/31/2015,01/01/2016 02:49:10 AM,01/01/2016 02:49:10 AM,01/01/2016 02:49:46 AM,01/01/2016 02:50:09 AM,01/01/2016 03:02:21 AM,01/01/2016 03:18:37 AM,01/01/2016 03:37:50 AM,Code 2 Transport,01/01/2016 04:15:29 AM,DIVISADERO ST/BUSH ST,San Francisco,94115,B04,10,4156,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7861795834309, -122.440061198335)",160010734-53 +131330169,B06,13044843,Structure Fire,05/13/2013,05/13/2013,05/13/2013 11:46:47 AM,05/13/2013 11:48:11 AM,05/13/2013 11:48:34 AM,05/13/2013 11:49:25 AM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 11:51:29 AM,0 Block of BOYNTON CT,SF,94114,B02,6,5213,3,3,3,false,Alarm,1,CHIEF,11,2,8,Castro/Upper Market,"(37.7675039961094, -122.42996741289)",131330169-B06 +160512111,67,16020515,Medical Incident,02/20/2016,02/20/2016,02/20/2016 03:49:48 PM,02/20/2016 03:50:48 PM,02/20/2016 03:51:09 PM,02/20/2016 03:51:43 PM,02/20/2016 04:01:01 PM,02/20/2016 04:12:25 PM,02/20/2016 04:31:41 PM,Code 2 Transport,02/20/2016 05:04:23 PM,200 Block of DWIGHT ST,San Francisco,94134,B10,42,6327,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7233528790378, -122.404555581665)",160512111-67 +160560437,62,16022255,Medical Incident,02/25/2016,02/24/2016,02/25/2016 05:57:34 AM,02/25/2016 05:58:52 AM,02/25/2016 05:59:48 AM,02/25/2016 06:00:00 AM,02/25/2016 06:06:19 AM,02/25/2016 07:07:44 AM,02/25/2016 06:29:23 AM,Code 2 Transport,02/25/2016 07:08:00 AM,1800 Block of GOUGH ST,San Francisco,94109,B04,38,3254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7904044741806, -122.425777441689)",160560437-62 +133050153,83,13103604,Medical Incident,11/01/2013,11/01/2013,11/01/2013 09:37:20 AM,11/01/2013 09:38:32 AM,11/01/2013 09:39:15 AM,11/01/2013 09:39:54 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 09:46:33 AM,MISSION ST/NORTON ST,SF,94112,B09,43,6116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7245877059944, -122.434870379292)",133050153-83 +130010201,E22,13000139,Outside Fire,01/01/2013,12/31/2012,01/01/2013 03:20:45 AM,01/01/2013 03:22:46 AM,01/01/2013 03:23:02 AM,01/01/2013 03:25:13 AM,01/01/2013 03:30:17 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 03:33:15 AM,23RD AV/JUDAH ST,SF,94122,B08,22,7447,3,3,3,true,Fire,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7615116713333, -122.481278428106)",130010201-E22 +103590112,RC1,10115167,Medical Incident,12/25/2010,12/25/2010,12/25/2010 10:03:28 AM,12/25/2010 10:05:17 AM,12/25/2010 10:05:45 AM,12/25/2010 10:06:22 AM,12/25/2010 10:10:44 AM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Medical Examiner,12/25/2010 10:38:29 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,E,E,3,true,,1,RESCUE CAPTAIN,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",103590112-RC1 +123010167,87,12099777,Structure Fire,10/27/2012,10/27/2012,10/27/2012 12:03:54 PM,10/27/2012 12:04:57 PM,10/27/2012 12:05:10 PM,10/27/2012 12:05:21 PM,10/27/2012 12:10:56 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:20:56 PM,1800 Block of CLAY ST,SF,94109,B04,41,3154,3,3,3,true,Alarm,1,MEDIC,6,4,2,Pacific Heights,"(37.7921242439152, -122.423528289583)",123010167-87 +160760733,53,16030031,Traffic Collision,03/16/2016,03/16/2016,03/16/2016 08:14:26 AM,03/16/2016 08:14:26 AM,03/16/2016 08:14:53 AM,03/16/2016 08:15:16 AM,03/16/2016 08:26:12 AM,03/16/2016 08:58:27 AM,03/16/2016 09:26:29 AM,Code 2 Transport,03/16/2016 10:14:52 AM,29TH AV/KIRKHAM ST,San Francisco,94122,B08,18,7513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7593594216412, -122.487579499953)",160760733-53 +110270169,57,11008869,Medical Incident,01/27/2011,01/27/2011,01/27/2011 11:49:12 AM,01/27/2011 11:51:36 AM,01/27/2011 11:52:18 AM,01/27/2011 11:54:03 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,No Merit,01/27/2011 11:56:26 AM,1800 Block of LOMBARD ST,SF,94123,B04,16,3352,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.8002483466327, -122.431914332097)",110270169-57 +111700145,E16,11056009,Medical Incident,06/19/2011,06/19/2011,06/19/2011 11:16:38 AM,06/19/2011 11:17:07 AM,06/19/2011 11:17:32 AM,06/19/2011 11:18:33 AM,06/19/2011 11:20:03 AM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,No Merit,06/19/2011 11:23:41 AM,FILLMORE ST/BROADWAY,SF,94115,B04,16,3551,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7942660323757, -122.434919326625)",111700145-E16 +132540087,E03,13085727,Medical Incident,09/11/2013,09/11/2013,09/11/2013 08:19:50 AM,09/11/2013 08:23:24 AM,09/11/2013 08:24:00 AM,09/11/2013 08:26:04 AM,09/11/2013 08:29:21 AM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/11/2013 08:38:04 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",132540087-E03 +121770304,93,12058985,Traffic Collision,06/25/2012,06/25/2012,06/25/2012 05:51:48 PM,06/25/2012 05:53:40 PM,06/25/2012 05:53:56 PM,06/25/2012 05:54:02 PM,06/25/2012 05:58:29 PM,04/25/2016 01:58:01 PM,04/25/2016 01:58:01 PM,Against Medical Advice,06/25/2012 06:46:35 PM,PINE ST/MASON ST,SF,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7908806970808, -122.410622872864)",121770304-93 +111380208,T13,11045894,Medical Incident,05/18/2011,05/18/2011,05/18/2011 01:57:23 PM,05/18/2011 01:59:31 PM,05/18/2011 02:00:43 PM,05/18/2011 02:01:31 PM,05/18/2011 02:03:07 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 02:23:38 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,2,2,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",111380208-T13 +132370029,RC1,13079818,Medical Incident,08/25/2013,08/24/2013,08/25/2013 01:21:16 AM,08/25/2013 01:22:22 AM,08/25/2013 01:22:44 AM,08/25/2013 01:24:30 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/25/2013 01:24:34 AM,4TH ST/CHANNEL ST,SF,,B03,8,2225,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,None,"(37.7750268633971, -122.392346204303)",132370029-RC1 +133020155,E42,13102598,Structure Fire,10/29/2013,10/29/2013,10/29/2013 10:39:53 AM,10/29/2013 10:39:53 AM,10/29/2013 10:40:13 AM,10/29/2013 10:42:25 AM,10/29/2013 10:44:57 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Fire,10/29/2013 10:52:30 AM,400 Block of BURROWS ST,SF,94134,B10,42,633,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.7278769871167, -122.407535487433)",133020155-E42 +121030209,AM06,12034135,Medical Incident,04/12/2012,04/12/2012,04/12/2012 01:34:07 PM,04/12/2012 01:36:40 PM,04/12/2012 01:37:37 PM,04/12/2012 01:38:11 PM,04/12/2012 01:41:34 PM,04/12/2012 02:03:45 PM,04/12/2012 02:07:26 PM,Code 2 Transport,04/12/2012 03:05:03 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",121030209-AM06 +160301416,79,16011748,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:48:07 AM,01/30/2016 10:49:19 AM,01/30/2016 10:49:55 AM,01/30/2016 10:50:03 AM,01/30/2016 11:03:50 AM,01/30/2016 11:06:42 AM,01/30/2016 11:35:03 AM,Code 2 Transport,01/30/2016 11:51:05 AM,"CALIFORNIA AV/AVENUE C, TI",Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8180574123621, -122.370841165993)",160301416-79 +140600218,86,14020285,Medical Incident,03/01/2014,03/01/2014,03/01/2014 02:38:04 PM,03/01/2014 02:41:33 PM,03/01/2014 02:51:07 PM,03/01/2014 02:51:14 PM,03/01/2014 02:55:20 PM,03/01/2014 03:05:46 PM,03/01/2014 03:26:56 PM,Code 2 Transport,03/01/2014 03:58:52 PM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,,2,2,false,Non Life-threatening,1,MEDIC,3,2,6,South of Market,"(37.7779770860913, -122.409387007126)",140600218-86 +131140050,66,13038331,Medical Incident,04/24/2013,04/23/2013,04/24/2013 06:27:30 AM,04/24/2013 06:28:12 AM,04/24/2013 06:30:07 AM,04/24/2013 06:30:37 AM,04/24/2013 06:36:59 AM,04/24/2013 07:10:00 AM,04/24/2013 07:17:27 AM,Code 2 Transport,04/24/2013 07:56:25 AM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",131140050-66 +121600280,81,12053017,Medical Incident,06/08/2012,06/08/2012,06/08/2012 04:41:36 PM,06/08/2012 04:42:11 PM,06/08/2012 04:42:26 PM,06/08/2012 04:46:16 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,04/25/2016 01:58:18 PM,4300 Block of 20TH ST,SF,94114,B06,24,5442,3,2,2,true,Non Life-threatening,1,MEDIC,4,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",121600280-81 +130820294,E03,13027547,Medical Incident,03/23/2013,03/23/2013,03/23/2013 08:02:04 PM,03/23/2013 08:03:11 PM,03/23/2013 08:03:33 PM,03/23/2013 08:04:23 PM,03/23/2013 08:06:48 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Medical Examiner,03/23/2013 08:35:48 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",130820294-E03 +123660107,E36,12122384,Structure Fire,12/31/2012,12/31/2012,12/31/2012 09:45:39 AM,12/31/2012 09:45:53 AM,12/31/2012 09:46:23 AM,12/31/2012 09:48:39 AM,12/31/2012 09:49:07 AM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,12/31/2012 09:59:12 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123660107-E36 +132480071,E41,13083596,Citizen Assist / Service Call,09/05/2013,09/04/2013,09/05/2013 07:21:12 AM,09/05/2013 07:22:54 AM,09/05/2013 07:23:17 AM,09/05/2013 07:24:41 AM,09/05/2013 07:27:56 AM,04/25/2016 01:50:57 PM,04/25/2016 01:50:57 PM,Other,09/05/2013 07:36:07 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",132480071-E41 +111200229,E12,11039615,Alarms,04/30/2011,04/30/2011,04/30/2011 02:32:01 PM,04/30/2011 02:33:47 PM,04/30/2011 02:34:00 PM,04/30/2011 02:34:31 PM,04/30/2011 02:35:34 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 02:39:18 PM,1500 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",111200229-E12 +122670199,T13,12088229,Alarms,09/23/2012,09/23/2012,09/23/2012 02:06:53 PM,09/23/2012 02:08:02 PM,09/23/2012 02:08:11 PM,09/23/2012 02:09:51 PM,09/23/2012 02:12:17 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 02:16:51 PM,500 Block of MARKET ST,SF,94105,B03,13,2143,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",122670199-T13 +110500172,KM01,11016532,Medical Incident,02/19/2011,02/19/2011,02/19/2011 12:28:45 PM,02/19/2011 12:30:02 PM,02/19/2011 12:30:30 PM,02/19/2011 12:31:18 PM,02/19/2011 12:33:15 PM,02/19/2011 12:49:34 PM,02/19/2011 01:12:07 PM,Code 2 Transport,02/19/2011 01:37:31 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7838066631424, -122.409129633669)",110500172-KM01 +122680077,E08,12088449,Medical Incident,09/24/2012,09/23/2012,09/24/2012 07:12:54 AM,09/24/2012 07:14:19 AM,09/24/2012 07:14:50 AM,09/24/2012 07:16:45 AM,09/24/2012 07:32:34 AM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 07:38:10 AM,300 Block of 7TH ST,SF,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7765647940442, -122.407516832678)",122680077-E08 +130810285,E19,13027203,Traffic Collision,03/22/2013,03/22/2013,03/22/2013 06:15:15 PM,03/22/2013 06:15:15 PM,03/22/2013 06:16:17 PM,03/22/2013 06:17:03 PM,03/22/2013 06:21:36 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,No Merit,03/22/2013 06:45:07 PM,EUCALYPTUS DR/INVERNESS DR,SF,94132,B08,19,8735,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7311471287157, -122.482663607647)",130810285-E19 +132220028,66,13074834,Medical Incident,08/10/2013,08/09/2013,08/10/2013 01:42:35 AM,08/10/2013 01:42:40 AM,08/10/2013 01:44:07 AM,08/10/2013 01:44:17 AM,08/10/2013 01:47:04 AM,08/10/2013 01:57:46 AM,08/10/2013 02:12:54 AM,Code 3 Transport,08/10/2013 02:46:55 AM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",132220028-66 +131480393,KM15,13050353,Medical Incident,05/28/2013,05/28/2013,05/28/2013 11:13:05 PM,05/28/2013 11:15:06 PM,05/28/2013 11:15:46 PM,05/28/2013 11:16:39 PM,05/28/2013 11:26:50 PM,05/28/2013 11:42:13 PM,05/28/2013 11:55:35 PM,Code 2 Transport,05/29/2013 12:41:51 AM,300 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7826555337918, -122.491436722689)",131480393-KM15 +133540127,AM12,13120217,Medical Incident,12/20/2013,12/20/2013,12/20/2013 10:01:28 AM,12/20/2013 10:03:57 AM,12/20/2013 10:04:23 AM,12/20/2013 10:06:15 AM,12/20/2013 10:08:10 AM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/20/2013 10:08:26 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7628860418812, -122.419391026615)",133540127-AM12 +160873740,88,16034773,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:51:13 PM,03/27/2016 11:51:13 PM,03/27/2016 11:51:43 PM,03/27/2016 11:51:54 PM,03/27/2016 11:56:40 PM,03/28/2016 12:14:37 AM,03/28/2016 12:27:40 AM,Code 2 Transport,03/28/2016 01:09:58 AM,800 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.7589313181833, -122.421382559773)",160873740-88 +121530120,E03,12050583,Medical Incident,06/01/2012,06/01/2012,06/01/2012 11:23:30 AM,06/01/2012 11:24:24 AM,06/01/2012 11:24:46 AM,06/01/2012 11:27:39 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 11:31:14 AM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",121530120-E03 +132800213,E31,13095311,Medical Incident,10/07/2013,10/07/2013,10/07/2013 01:45:38 PM,10/07/2013 01:46:45 PM,10/07/2013 01:47:15 PM,10/07/2013 01:47:26 PM,10/07/2013 01:49:09 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/07/2013 02:02:14 PM,300 Block of 2ND AVE,SF,94118,B07,31,7116,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7821780951379, -122.459999332268)",132800213-E31 +110630010,KM11,11020551,Traffic Collision,03/04/2011,03/03/2011,03/04/2011 12:18:40 AM,03/04/2011 12:20:00 AM,03/04/2011 12:20:34 AM,03/04/2011 12:21:27 AM,03/04/2011 12:28:04 AM,03/04/2011 01:01:22 AM,03/04/2011 01:09:13 AM,Code 2 Transport,03/04/2011 01:44:03 AM,3600 Block of MARKET ST,SF,94131,B06,24,5266,3,3,3,false,,1,PRIVATE,2,6,8,Twin Peaks,"(37.7553957428473, -122.441235837423)",110630010-KM11 +130690188,E32,13023047,Medical Incident,03/10/2013,03/10/2013,03/10/2013 02:35:51 PM,03/10/2013 02:37:35 PM,03/10/2013 02:45:51 PM,03/10/2013 02:47:39 PM,03/10/2013 02:49:09 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 02:57:12 PM,CRESCENT AV/BANKS ST,SF,94110,B06,32,5747,1,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7347005989367, -122.413068634624)",130690188-E32 +133400183,E12,13115230,Structure Fire,12/06/2013,12/06/2013,12/06/2013 12:22:39 PM,12/06/2013 12:26:12 PM,12/06/2013 12:28:06 PM,12/06/2013 12:29:33 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:31:47 PM,100 Block of COLE ST,SF,94117,B05,21,4535,3,3,3,true,Alarm,1,ENGINE,6,5,5,Lone Mountain/USF,"(37.7737734460472, -122.451136840346)",133400183-E12 +133180283,84,13108158,Medical Incident,11/14/2013,11/14/2013,11/14/2013 05:25:52 PM,11/14/2013 05:26:59 PM,11/14/2013 05:27:57 PM,11/14/2013 05:28:57 PM,11/14/2013 05:31:49 PM,11/14/2013 05:47:02 PM,11/14/2013 06:10:54 PM,Code 2 Transport,11/14/2013 06:29:34 PM,1600 Block of SCOTT ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7849864733147, -122.438181369407)",133180283-84 +133560297,E08,13121120,Medical Incident,12/22/2013,12/22/2013,12/22/2013 06:05:44 PM,12/22/2013 06:05:53 PM,12/22/2013 06:06:25 PM,12/22/2013 06:07:17 PM,12/22/2013 06:09:32 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 06:17:50 PM,CALL BOX: 2ND ST/BRANNAN ST,SF,94107,B03,8,2153,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7817698612933, -122.392084902595)",133560297-E08 +122040016,92,12067672,Medical Incident,07/22/2012,07/21/2012,07/22/2012 12:29:29 AM,07/22/2012 12:30:55 AM,07/22/2012 12:32:02 AM,07/22/2012 12:32:12 AM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 12:40:57 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",122040016-92 +123350059,B02,12111209,Alarms,11/30/2012,11/29/2012,11/30/2012 03:13:36 AM,11/30/2012 03:15:01 AM,11/30/2012 03:15:06 AM,11/30/2012 03:17:00 AM,11/30/2012 03:26:24 AM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/30/2012 03:27:06 AM,200 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,false,Alarm,1,CHIEF,3,2,8,Mission,"(37.7668770284191, -122.424185302421)",123350059-B02 +160432857,71,16017407,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:49:45 PM,02/12/2016 05:50:30 PM,02/12/2016 05:51:34 PM,02/12/2016 05:51:43 PM,02/12/2016 05:56:07 PM,02/12/2016 06:04:33 PM,02/12/2016 06:22:58 PM,Code 2 Transport,02/12/2016 07:01:42 PM,TOWNSEND ST/3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7788517157298, -122.39274978786)",160432857-71 +120200204,85,12006704,Medical Incident,01/20/2012,01/20/2012,01/20/2012 01:59:04 PM,01/20/2012 02:00:33 PM,01/20/2012 02:00:58 PM,01/20/2012 02:01:20 PM,01/20/2012 02:15:09 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,No Merit,01/20/2012 02:20:36 PM,1000 Block of GOUGH ST,SF,94109,B02,5,3262,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7829471585085, -122.424133174538)",120200204-85 +123380183,93,12112690,Medical Incident,12/03/2012,12/03/2012,12/03/2012 12:08:17 PM,12/03/2012 12:09:00 PM,12/03/2012 12:11:14 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 12:13:43 PM,500 Block of 48TH AVE,SF,94121,B07,34,7313,3,2,2,true,Non Life-threatening,1,MEDIC,5,7,1,Outer Richmond,"(37.7780077592037, -122.509229146953)",123380183-93 +110560322,E10,11018565,Medical Incident,02/25/2011,02/25/2011,02/25/2011 08:28:23 PM,02/25/2011 08:30:33 PM,02/25/2011 08:31:11 PM,02/25/2011 08:31:58 PM,02/25/2011 08:35:05 PM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/25/2011 08:37:21 PM,700 Block of CLEMENT ST,SF,94118,B07,31,7127,3,3,3,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.782880670915, -122.467099725542)",110560322-E10 +132740184,E10,13093103,Medical Incident,10/01/2013,10/01/2013,10/01/2013 01:51:36 PM,10/01/2013 01:52:07 PM,10/01/2013 01:52:50 PM,10/01/2013 01:54:19 PM,10/01/2013 01:56:39 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 02:02:32 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",132740184-E10 +160221137,71,16008711,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:10:00 AM,01/22/2016 10:12:03 AM,01/22/2016 10:13:38 AM,01/22/2016 10:14:23 AM,01/22/2016 10:25:26 AM,01/22/2016 10:43:23 AM,01/22/2016 10:59:53 AM,Code 2 Transport,01/22/2016 11:37:32 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160221137-71 +160090856,AM08,16003569,Medical Incident,01/09/2016,01/09/2016,01/09/2016 08:56:25 AM,01/09/2016 08:57:26 AM,01/09/2016 08:58:55 AM,01/09/2016 08:59:38 AM,01/09/2016 09:02:59 AM,01/09/2016 09:21:49 AM,01/09/2016 09:30:05 AM,Code 2 Transport,01/09/2016 10:04:40 AM,2400 Block of HARRISON ST,San Francisco,94110,B06,7,545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7582246777645, -122.412493470285)",160090856-AM08 +133110356,E10,13105866,Medical Incident,11/07/2013,11/07/2013,11/07/2013 11:01:20 PM,11/07/2013 11:04:02 PM,11/07/2013 11:04:36 PM,11/07/2013 11:05:57 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/07/2013 11:06:35 PM,400 Block of 42ND AVE,SF,94121,B07,34,7265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,6,7,1,Outer Richmond,"(37.7803964224554, -122.502960268873)",133110356-E10 +160122765,62,16004858,Traffic Collision,01/12/2016,01/12/2016,01/12/2016 05:14:48 PM,01/12/2016 05:14:48 PM,01/12/2016 05:15:00 PM,01/12/2016 05:15:09 PM,01/12/2016 05:17:36 PM,01/12/2016 05:28:39 PM,01/12/2016 05:49:49 PM,Code 2 Transport,01/12/2016 06:32:24 PM,MONTGOMERY ST/SUTTER ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7900390948551, -122.40218964437)",160122765-62 +121060347,E23,12035279,Medical Incident,04/15/2012,04/15/2012,04/15/2012 08:59:28 PM,04/15/2012 09:00:04 PM,04/15/2012 09:00:35 PM,04/15/2012 09:02:11 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/15/2012 09:21:23 PM,2700 Block of JUDAH ST,SF,94122,B08,23,7541,3,2,2,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7611180469496, -122.491464026808)",121060347-E23 +111660337,E02,11054925,Structure Fire,06/15/2011,06/15/2011,06/15/2011 07:40:32 PM,06/15/2011 07:42:04 PM,06/15/2011 07:42:50 PM,06/15/2011 07:43:55 PM,06/15/2011 07:46:10 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/15/2011 07:47:54 PM,2600 Block of VAN NESS AVE,SF,94109,B04,16,3146,3,3,3,true,,1,ENGINE,3,4,2,Russian Hill,"(37.7999719435831, -122.424093828801)",111660337-E02 +160172978,AM18,16006979,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:01:16 PM,01/17/2016 08:04:44 PM,01/17/2016 08:09:34 PM,01/17/2016 08:10:00 PM,01/17/2016 08:17:25 PM,01/17/2016 08:23:34 PM,01/17/2016 08:32:38 PM,Code 2 Transport,01/17/2016 09:11:00 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160172978-AM18 +160692650,AM16,16027553,Medical Incident,03/09/2016,03/09/2016,03/09/2016 04:40:13 PM,03/09/2016 04:41:00 PM,03/09/2016 04:41:39 PM,03/09/2016 04:42:05 PM,03/09/2016 04:51:04 PM,03/09/2016 05:02:22 PM,03/09/2016 05:13:35 PM,Code 2 Transport,03/09/2016 05:31:39 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160692650-AM16 +160670026,KM07,16026553,Medical Incident,03/07/2016,03/06/2016,03/07/2016 12:12:55 AM,03/07/2016 12:13:49 AM,03/07/2016 12:14:16 AM,03/07/2016 12:14:45 AM,03/07/2016 12:27:02 AM,03/07/2016 12:48:07 AM,03/07/2016 01:30:44 AM,Code 2 Transport,03/07/2016 01:33:14 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160670026-KM07 +110560063,82,11018354,Medical Incident,02/25/2011,02/24/2011,02/25/2011 07:24:36 AM,02/25/2011 07:25:46 AM,02/25/2011 07:26:30 AM,02/25/2011 07:27:16 AM,02/25/2011 07:38:37 AM,02/25/2011 07:55:53 AM,02/25/2011 08:15:16 AM,Code 2 Transport,02/25/2011 08:28:39 AM,HOWARD ST/STEUART ST,SF,94105,B03,35,2114,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.792005700577, -122.391645799833)",110560063-82 +122440209,KM02,12080688,Medical Incident,08/31/2012,08/31/2012,08/31/2012 03:16:02 PM,08/31/2012 03:18:23 PM,08/31/2012 03:18:50 PM,08/31/2012 03:19:20 PM,08/31/2012 03:25:36 PM,08/31/2012 03:41:49 PM,08/31/2012 04:01:51 PM,Code 2 Transport,08/31/2012 04:18:27 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",122440209-KM02 +110170245,E05,11005718,Medical Incident,01/17/2011,01/17/2011,01/17/2011 06:53:51 PM,01/17/2011 06:55:47 PM,01/17/2011 06:56:52 PM,01/17/2011 06:57:41 PM,01/17/2011 06:59:19 PM,04/25/2016 02:06:33 PM,04/25/2016 02:06:33 PM,Other,01/17/2011 07:16:00 PM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",110170245-E05 +102500152,E16,10078972,Outside Fire,09/07/2010,09/07/2010,09/07/2010 12:34:54 PM,09/07/2010 12:35:20 PM,09/07/2010 12:36:05 PM,09/07/2010 12:36:51 PM,09/07/2010 12:38:16 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 12:43:06 PM,CHESTNUT ST/FILLMORE ST,SF,94123,B04,16,3554,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.800814143599, -122.436273910168)",102500152-E16 +160171438,79,16006828,Medical Incident,01/17/2016,01/17/2016,01/17/2016 12:02:26 PM,01/17/2016 12:04:31 PM,01/17/2016 12:06:07 PM,01/17/2016 12:06:19 PM,01/17/2016 12:17:00 PM,01/17/2016 12:22:18 PM,01/17/2016 12:36:47 PM,Code 2 Transport,01/17/2016 01:00:35 PM,0 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7264,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7796028187333, -122.503522163162)",160171438-79 +110910035,T06,11030021,Outside Fire,04/01/2011,03/31/2011,04/01/2011 02:06:35 AM,04/01/2011 02:07:47 AM,04/01/2011 02:08:04 AM,04/01/2011 02:09:31 AM,04/01/2011 02:12:14 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 02:26:36 AM,VALENCIA ST/15TH ST,SF,94103,B02,6,5226,3,3,3,false,,1,TRUCK,3,2,9,Mission,"(37.7665395771344, -122.422043813368)",110910035-T06 +160182267,56,16007299,Medical Incident,01/18/2016,01/18/2016,01/18/2016 04:32:53 PM,01/18/2016 04:34:54 PM,01/18/2016 04:35:07 PM,01/18/2016 04:35:30 PM,01/18/2016 04:45:32 PM,01/18/2016 04:53:15 PM,01/18/2016 05:08:58 PM,Code 2 Transport,01/18/2016 05:26:58 PM,300 Block of HEAD ST,San Francisco,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.713614800777, -122.464324485172)",160182267-56 +160042624,62,16001689,Medical Incident,01/04/2016,01/04/2016,01/04/2016 04:48:15 PM,01/04/2016 04:48:15 PM,01/04/2016 04:49:44 PM,01/04/2016 04:52:28 PM,01/04/2016 05:06:27 PM,01/04/2016 05:30:19 PM,01/04/2016 05:38:03 PM,Code 2 Transport,01/04/2016 06:05:29 PM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",160042624-62 +110430375,B01,11014424,Alarms,02/12/2011,02/12/2011,02/12/2011 07:47:23 PM,02/12/2011 07:48:32 PM,02/12/2011 07:49:24 PM,02/12/2011 07:50:44 PM,02/12/2011 07:56:10 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/12/2011 07:56:27 PM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,false,,1,CHIEF,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",110430375-B01 +130190290,E05,13006598,Medical Incident,01/19/2013,01/19/2013,01/19/2013 05:04:37 PM,01/19/2013 05:05:49 PM,01/19/2013 05:06:10 PM,01/19/2013 05:06:45 PM,01/19/2013 05:08:20 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 05:53:24 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",130190290-E05 +122720031,E05,12089622,Alarms,09/28/2012,09/27/2012,09/28/2012 04:15:17 AM,09/28/2012 04:16:18 AM,09/28/2012 04:16:36 AM,09/28/2012 04:18:04 AM,09/28/2012 04:20:26 AM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/28/2012 04:30:01 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",122720031-E05 +160043074,85,16001732,Medical Incident,01/04/2016,01/04/2016,01/04/2016 07:08:38 PM,01/04/2016 07:09:57 PM,01/04/2016 07:10:10 PM,01/04/2016 07:10:20 PM,01/04/2016 07:23:00 PM,01/04/2016 07:40:18 PM,01/04/2016 07:58:52 PM,Code 2 Transport,01/04/2016 08:44:52 PM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8259704739589, -122.377189270334)",160043074-85 +160640460,53,16025366,Medical Incident,03/04/2016,03/03/2016,03/04/2016 05:35:52 AM,03/04/2016 05:38:01 AM,03/04/2016 05:38:17 AM,03/04/2016 05:38:53 AM,03/04/2016 05:46:50 AM,03/04/2016 05:50:57 AM,03/04/2016 05:56:27 AM,Code 2 Transport,03/04/2016 06:21:18 AM,1500 Block of MCALLISTER ST,San Francisco,94115,B05,21,4151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7779545300539, -122.437542013129)",160640460-53 +132440263,E01,13082418,Medical Incident,09/01/2013,09/01/2013,09/01/2013 05:18:58 PM,09/01/2013 05:19:33 PM,09/01/2013 05:20:20 PM,09/01/2013 05:22:00 PM,09/01/2013 05:24:06 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 05:33:11 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",132440263-E01 +131320008,E36,13044443,Traffic Collision,05/12/2013,05/11/2013,05/12/2013 12:17:01 AM,05/12/2013 12:17:02 AM,05/12/2013 12:17:39 AM,05/12/2013 12:20:31 AM,05/12/2013 12:24:04 AM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 12:26:40 AM,MARKET ST/VALENCIA ST,SF,94103,B02,36,3311,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7725028174103, -122.422619692886)",131320008-E36 +132310162,E01,13077979,Medical Incident,08/19/2013,08/19/2013,08/19/2013 11:33:22 AM,08/19/2013 11:33:39 AM,08/19/2013 11:34:09 AM,08/19/2013 11:34:22 AM,08/19/2013 11:36:02 AM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 11:34:44 AM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",132310162-E01 +111500180,81,11049701,Medical Incident,05/30/2011,05/30/2011,05/30/2011 01:41:11 PM,05/30/2011 01:42:36 PM,05/30/2011 01:42:47 PM,05/30/2011 01:43:21 PM,05/30/2011 01:46:59 PM,05/30/2011 02:07:46 PM,05/30/2011 02:11:36 PM,Code 3 Transport,05/30/2011 02:31:34 PM,600 Block of JACKSON ST,SF,94108,B01,2,1312,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7959890845628, -122.406490877874)",111500180-81 +133170133,E14,13107690,Medical Incident,11/13/2013,11/13/2013,11/13/2013 10:37:05 AM,11/13/2013 10:37:37 AM,11/13/2013 10:38:52 AM,11/13/2013 10:39:23 AM,11/13/2013 10:42:20 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 10:47:48 AM,GEARY BL/15TH AV,SF,94118,B07,31,7153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7805753802673, -122.47398246915)",133170133-E14 +120560102,T19,12018429,Alarms,02/25/2012,02/25/2012,02/25/2012 10:02:48 AM,02/25/2012 10:03:33 AM,02/25/2012 10:04:02 AM,02/25/2012 10:05:22 AM,02/25/2012 10:09:50 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 10:16:23 AM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,TRUCK,1,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",120560102-T19 +160070478,75,16002709,Medical Incident,01/07/2016,01/06/2016,01/07/2016 06:40:40 AM,01/07/2016 06:43:06 AM,01/07/2016 06:43:46 AM,01/07/2016 06:43:55 AM,01/07/2016 06:49:11 AM,01/07/2016 07:21:19 AM,01/07/2016 07:36:52 AM,Code 2 Transport,01/07/2016 08:35:09 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",160070478-75 +133470104,B10,13117687,Alarms,12/13/2013,12/13/2013,12/13/2013 09:32:21 AM,12/13/2013 09:34:04 AM,12/13/2013 09:34:35 AM,12/13/2013 09:38:57 AM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 09:41:38 AM,200 Block of COLERIDGE ST,SF,94110,B06,32,5653,3,3,3,false,Alarm,1,CHIEF,2,6,9,Bernal Heights,"(37.7419452829468, -122.420774789624)",133470104-B10 +160853005,76,16033895,Medical Incident,03/25/2016,03/25/2016,03/25/2016 06:09:28 PM,03/25/2016 06:09:28 PM,03/25/2016 06:09:57 PM,03/25/2016 06:10:03 PM,03/25/2016 06:23:51 PM,03/25/2016 06:28:04 PM,03/25/2016 06:43:22 PM,Code 2 Transport,03/25/2016 07:03:06 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.78026973391, -122.406390271833)",160853005-76 +120010439,E08,12000381,Medical Incident,01/01/2012,01/01/2012,01/01/2012 02:06:43 PM,01/01/2012 02:09:03 PM,01/01/2012 02:09:23 PM,01/01/2012 02:10:59 PM,01/01/2012 02:14:36 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 02:19:40 PM,0 Block of DOW PL,SF,94107,B03,8,2151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7846075628072, -122.396165148347)",120010439-E08 +133070232,E03,13104429,Medical Incident,11/03/2013,11/03/2013,11/03/2013 03:27:15 PM,11/03/2013 03:28:09 PM,11/03/2013 03:28:21 PM,11/03/2013 03:29:36 PM,11/03/2013 03:31:19 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/03/2013 03:46:27 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",133070232-E03 +121310213,E05,12043598,Gas Leak (Natural and LP Gases),05/10/2012,05/10/2012,05/10/2012 02:15:09 PM,05/10/2012 02:17:47 PM,05/10/2012 02:17:56 PM,05/10/2012 02:18:59 PM,05/10/2012 02:20:41 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 02:30:09 PM,1400 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7793039657232, -122.434429450678)",121310213-E05 +113170270,E01,11105406,Medical Incident,11/13/2011,11/13/2011,11/13/2011 05:53:46 PM,11/13/2011 05:54:53 PM,11/13/2011 05:55:20 PM,11/13/2011 05:59:29 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 05:59:56 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,3,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",113170270-E01 +132440273,KM06,13082427,Medical Incident,09/01/2013,09/01/2013,09/01/2013 05:42:19 PM,09/01/2013 05:42:52 PM,09/01/2013 05:43:03 PM,09/01/2013 05:43:34 PM,09/01/2013 05:47:20 PM,09/01/2013 06:03:58 PM,09/01/2013 06:15:49 PM,Code 2 Transport,09/01/2013 06:30:01 PM,300 Block of KEARNY ST,SF,94104,B01,13,1243,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7912340846194, -122.40405694935)",132440273-KM06 +110310122,58,11010119,Medical Incident,01/31/2011,01/31/2011,01/31/2011 09:33:17 AM,01/31/2011 09:33:58 AM,01/31/2011 09:34:58 AM,01/31/2011 09:57:04 AM,01/31/2011 10:19:45 AM,01/31/2011 10:39:42 AM,01/31/2011 11:01:26 AM,Code 2 Transport,01/31/2011 11:23:06 AM,1400 Block of PORTOLA DR,SF,94127,B08,39,8562,3,3,3,true,,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7383833266709, -122.467301610982)",110310122-58 +102580184,AM06,10081498,Medical Incident,09/15/2010,09/15/2010,09/15/2010 01:10:17 PM,09/15/2010 01:10:48 PM,09/15/2010 01:14:20 PM,09/15/2010 01:15:40 PM,09/15/2010 01:24:32 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,Patient Declined Transport,09/15/2010 01:27:46 PM,EDDY ST/MASON ST,SF,94102,B03,1,1366,2,2,2,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",102580184-AM06 +160462974,AM16,16018624,Medical Incident,02/15/2016,02/15/2016,02/15/2016 06:17:03 PM,02/15/2016 06:18:39 PM,02/15/2016 06:19:59 PM,02/15/2016 06:20:55 PM,02/15/2016 06:30:08 PM,02/15/2016 06:38:40 PM,02/15/2016 07:08:28 PM,Code 2 Transport,02/15/2016 07:38:46 PM,100 Block of THORNTON AVE,San Francisco,94124,B10,17,6513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7308811280003, -122.393441784119)",160462974-AM16 +120210215,E41,12007144,Medical Incident,01/21/2012,01/21/2012,01/21/2012 12:50:25 PM,01/21/2012 12:51:24 PM,01/21/2012 12:53:40 PM,01/21/2012 12:54:36 PM,01/21/2012 12:55:59 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 01:02:00 PM,HYDE ST/CALIFORNIA ST,SF,94109,B01,41,1541,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",120210215-E41 +160764312,65,16030402,Medical Incident,03/16/2016,03/16/2016,03/16/2016 11:49:34 PM,03/16/2016 11:51:07 PM,03/16/2016 11:51:25 PM,03/16/2016 11:51:42 PM,03/16/2016 11:56:17 PM,03/16/2016 11:59:24 PM,03/17/2016 12:09:00 AM,Code 2 Transport,03/17/2016 12:42:07 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160764312-65 +120890184,78,12029464,Medical Incident,03/29/2012,03/29/2012,03/29/2012 01:33:48 PM,03/29/2012 01:34:57 PM,03/29/2012 01:35:20 PM,03/29/2012 01:36:09 PM,03/29/2012 01:40:38 PM,03/29/2012 01:57:05 PM,03/29/2012 02:12:04 PM,Code 2 Transport,03/29/2012 02:54:06 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",120890184-78 +113370357,E07,11111811,Medical Incident,12/03/2011,12/03/2011,12/03/2011 10:07:19 PM,12/03/2011 10:08:43 PM,12/03/2011 10:08:50 PM,04/25/2016 02:01:20 PM,12/03/2011 10:11:04 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/03/2011 10:12:29 PM,FOLSOM ST/21ST ST,SF,94110,B06,7,545,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7572976449633, -122.414541469066)",113370357-E07 +112240164,E34,11073970,Administrative,08/12/2011,08/12/2011,08/12/2011 11:26:33 AM,08/12/2011 11:26:34 AM,08/12/2011 11:27:47 AM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 11:30:49 AM,400 Block of 41ST AVE,SF,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",112240164-E34 +140980094,AM02,14032974,Medical Incident,04/08/2014,04/07/2014,04/08/2014 07:46:04 AM,04/08/2014 07:48:19 AM,04/08/2014 07:48:52 AM,04/08/2014 07:49:39 AM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,No Merit,04/08/2014 07:55:26 AM,3600 Block of CLAY ST,SAN FRANCISCO,94118,B07,10,4426,3,3,3,false,Non Life-threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7882786698444, -122.45293673498)",140980094-AM02 +160601986,50,16023925,Medical Incident,02/29/2016,02/29/2016,02/29/2016 02:20:38 PM,02/29/2016 02:22:07 PM,02/29/2016 02:22:30 PM,02/29/2016 02:22:39 PM,02/29/2016 02:41:50 PM,02/29/2016 02:53:10 PM,02/29/2016 03:01:33 PM,Code 2 Transport,02/29/2016 03:55:39 PM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7813340573864, -122.399027495005)",160601986-50 +132120192,KM04,13071666,Medical Incident,07/31/2013,07/31/2013,07/31/2013 02:03:45 PM,07/31/2013 02:05:38 PM,07/31/2013 02:06:04 PM,07/31/2013 02:06:41 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Patient Declined Transport,07/31/2013 03:02:36 PM,SANTOS ST/SUNNYDALE AV,SF,94134,B09,43,6241,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7123491478047, -122.418283422082)",132120192-KM04 +113170079,T08,11105232,Alarms,11/13/2011,11/12/2011,11/13/2011 04:08:19 AM,11/13/2011 04:09:14 AM,11/13/2011 04:09:38 AM,11/13/2011 04:11:33 AM,11/13/2011 04:14:37 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Other,11/13/2011 04:28:10 AM,700 Block of THE EMBARCADERO,SF,94111,B03,35,940,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.8023783666633, -122.400706378791)",113170079-T08 +133150094,E24,13106993,Odor (Strange / Unknown),11/11/2013,11/10/2013,11/11/2013 07:43:02 AM,11/11/2013 07:45:12 AM,11/11/2013 07:45:27 AM,11/11/2013 07:47:55 AM,11/11/2013 07:51:17 AM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Fire,11/11/2013 07:51:48 AM,EUREKA ST/21ST ST,SF,94114,B06,24,5463,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7558927079529, -122.437803352831)",133150094-E24 +140790188,53,14026722,Medical Incident,03/20/2014,03/20/2014,03/20/2014 01:08:30 PM,03/20/2014 01:10:53 PM,03/20/2014 01:13:03 PM,03/20/2014 01:13:38 PM,03/20/2014 01:41:51 PM,03/20/2014 01:49:46 PM,03/20/2014 02:10:07 PM,Code 2 Transport,03/20/2014 02:29:02 PM,1400 Block of HALIBUT CT,TREASURE ISLAN,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",140790188-53 +111460007,AM10,11048340,Medical Incident,05/26/2011,05/25/2011,05/26/2011 01:06:54 AM,05/26/2011 01:06:54 AM,05/26/2011 01:07:10 AM,05/26/2011 01:08:18 AM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,04/25/2016 02:04:27 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,E,E,3,false,,1,PRIVATE,5,1,3,Chinatown,"(37.7969072647197, -122.407234390471)",111460007-AM10 +102560046,E36,10080791,Traffic Collision,09/13/2010,09/12/2010,09/13/2010 06:07:24 AM,09/13/2010 06:07:24 AM,09/13/2010 06:07:45 AM,09/13/2010 06:09:10 AM,09/13/2010 06:10:06 AM,09/13/2010 06:29:30 AM,04/25/2016 02:08:37 PM,Other,09/13/2010 06:52:47 AM,HAYES ST/POLK ST,SF,94102,B02,36,1646,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7775117101895, -122.41804317004)",102560046-E36 +160760377,62,16029993,Medical Incident,03/16/2016,03/15/2016,03/16/2016 04:45:45 AM,03/16/2016 04:47:13 AM,03/16/2016 04:47:22 AM,03/16/2016 04:47:36 AM,03/16/2016 05:09:45 AM,03/16/2016 05:33:09 AM,03/16/2016 05:50:23 AM,Code 2 Transport,03/16/2016 06:28:49 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,false,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160760377-62 +120700038,T15,12023140,Vehicle Fire,03/10/2012,03/09/2012,03/10/2012 02:44:47 AM,03/10/2012 02:45:22 AM,03/10/2012 02:45:32 AM,03/10/2012 02:47:44 AM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/10/2012 02:51:58 AM,JOHN F SHELLEY DR/MANSELL ST,SF,94134,B09,43,6165,3,3,3,false,Fire,1,TRUCK,2,9,10,McLaren Park,"(37.7187660927383, -122.418512370999)",120700038-T15 +111100353,E36,11036447,Medical Incident,04/20/2011,04/20/2011,04/20/2011 07:39:46 PM,04/20/2011 07:40:29 PM,04/20/2011 07:40:43 PM,04/20/2011 07:44:06 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/20/2011 07:43:54 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,ENGINE,5,2,6,Mission,"(37.7726948236861, -122.422188261426)",111100353-E36 +122360321,93,12078306,Medical Incident,08/23/2012,08/23/2012,08/23/2012 08:10:26 PM,08/23/2012 08:12:06 PM,08/23/2012 08:12:27 PM,08/23/2012 08:12:40 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/23/2012 08:14:45 PM,0 Block of REGENT ST,SF,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.709691756097, -122.456407784485)",122360321-93 +160591952,75,16023557,Medical Incident,02/28/2016,02/28/2016,02/28/2016 02:57:37 PM,02/28/2016 02:58:12 PM,02/28/2016 02:58:58 PM,02/28/2016 02:59:06 PM,02/28/2016 03:03:29 PM,02/28/2016 03:14:26 PM,02/28/2016 03:19:46 PM,Code 3 Transport,02/28/2016 03:59:57 PM,500 Block of POST ST,San Francisco,94102,B01,3,1451,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",160591952-75 +113170202,E28,11105341,Medical Incident,11/13/2011,11/13/2011,11/13/2011 01:16:33 PM,11/13/2011 01:18:05 PM,11/13/2011 01:18:29 PM,11/13/2011 01:19:15 PM,11/13/2011 01:21:20 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 01:28:14 PM,1700 Block of MASON ST,SF,94133,B01,28,1422,3,3,3,false,,1,ENGINE,1,1,3,Chinatown,"(37.7994155542754, -122.412277228876)",113170202-E28 +160352920,AM06,16013929,Medical Incident,02/04/2016,02/04/2016,02/04/2016 05:45:46 PM,02/04/2016 05:47:07 PM,02/04/2016 05:47:57 PM,02/04/2016 05:49:08 PM,02/04/2016 05:52:36 PM,02/04/2016 06:07:29 PM,02/04/2016 06:21:05 PM,Code 2 Transport,02/04/2016 06:47:36 PM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160352920-AM06 +140230236,E05,14007907,Transfer,01/23/2014,01/23/2014,01/23/2014 04:14:27 PM,01/23/2014 04:16:11 PM,01/23/2014 04:16:58 PM,01/23/2014 04:18:34 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 04:20:49 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,,3,3,true,Alarm,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",140230236-E05 +130600308,72,13020228,Medical Incident,03/01/2013,03/01/2013,03/01/2013 06:54:29 PM,03/01/2013 06:55:29 PM,03/01/2013 06:55:40 PM,03/01/2013 06:57:48 PM,03/01/2013 07:06:50 PM,03/01/2013 07:34:18 PM,03/01/2013 08:14:35 PM,Code 2 Transport,03/01/2013 08:43:12 PM,0 Block of SEVILLE ST,SF,94112,B09,43,6225,3,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7119488065188, -122.434821997078)",130600308-72 +133400263,E18,13115303,Structure Fire,12/06/2013,12/06/2013,12/06/2013 03:44:36 PM,12/06/2013 03:44:36 PM,12/06/2013 03:44:55 PM,12/06/2013 03:46:11 PM,12/06/2013 03:48:37 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 03:49:09 PM,41ST AV/NORIEGA ST,SF,94122,B08,18,7633,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7532010612329, -122.500044865619)",133400263-E18 +160341491,63,16013355,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:55:59 AM,02/03/2016 11:58:38 AM,02/03/2016 11:59:03 AM,02/03/2016 11:59:19 AM,02/03/2016 12:12:40 PM,02/03/2016 12:29:34 PM,02/03/2016 12:54:22 PM,Code 2 Transport,02/03/2016 01:39:10 PM,0 Block of ALDER ST,San Francisco,94134,B10,44,6315,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7186946916863, -122.405134034244)",160341491-63 +111920392,AM14,11063557,Medical Incident,07/11/2011,07/11/2011,07/11/2011 11:01:08 PM,07/11/2011 11:01:33 PM,07/11/2011 11:03:20 PM,04/25/2016 02:03:43 PM,07/11/2011 11:06:22 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,04/25/2016 02:03:43 PM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,3,3,3,false,,1,PRIVATE,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",111920392-AM14 +160400636,71,16015911,Medical Incident,02/09/2016,02/08/2016,02/09/2016 07:48:36 AM,02/09/2016 07:48:36 AM,02/09/2016 07:48:50 AM,02/09/2016 07:49:02 AM,02/09/2016 07:56:45 AM,02/09/2016 08:08:11 AM,02/09/2016 08:10:42 AM,Code 2 Transport,02/09/2016 09:11:38 AM,900 Block of LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7863251027379, -122.418201870328)",160400636-71 +122960142,E15,12098115,Structure Fire,10/22/2012,10/22/2012,10/22/2012 10:50:38 AM,10/22/2012 10:50:38 AM,10/22/2012 10:51:02 AM,10/22/2012 10:52:53 AM,10/22/2012 10:53:57 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 11:06:57 AM,SAN JOSE AV/NIAGARA AV,SF,94112,B09,15,8312,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7194811206803, -122.447562061428)",122960142-E15 +160744162,89,16029528,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:25:54 PM,03/14/2016 11:28:40 PM,03/14/2016 11:28:47 PM,03/14/2016 11:28:55 PM,03/14/2016 11:34:48 PM,03/15/2016 12:04:47 AM,03/15/2016 12:25:00 AM,Code 2 Transport,03/15/2016 12:52:52 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",160744162-89 +102890254,63,10092233,Medical Incident,10/16/2010,10/16/2010,10/16/2010 03:25:57 PM,10/16/2010 03:27:32 PM,10/16/2010 03:27:46 PM,10/16/2010 03:28:07 PM,10/16/2010 03:34:05 PM,10/16/2010 03:43:21 PM,10/16/2010 03:56:35 PM,Code 2 Transport,10/16/2010 04:17:45 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",102890254-63 +133600187,E01,13122355,Medical Incident,12/26/2013,12/26/2013,12/26/2013 01:54:26 PM,12/26/2013 01:56:02 PM,12/26/2013 01:56:37 PM,12/26/2013 01:58:05 PM,12/26/2013 02:00:58 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 02:12:43 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",133600187-E01 +102530226,96,10079966,Medical Incident,09/10/2010,09/10/2010,09/10/2010 01:39:56 PM,09/10/2010 01:42:21 PM,09/10/2010 01:42:52 PM,09/10/2010 01:44:24 PM,09/10/2010 01:45:21 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,No Merit,09/10/2010 01:47:03 PM,EDDY ST/TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",102530226-96 +160693586,78,16027651,Traffic Collision,03/09/2016,03/09/2016,03/09/2016 09:14:48 PM,03/09/2016 09:14:48 PM,03/09/2016 09:15:09 PM,03/09/2016 09:16:01 PM,03/09/2016 09:30:37 PM,03/09/2016 09:30:40 PM,03/09/2016 10:14:45 PM,Code 2 Transport,03/09/2016 10:15:11 PM,1300 Block of TURK ST,San Francisco,94115,B04,5,3535,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",160693586-78 +131900014,66,13064597,Medical Incident,07/09/2013,07/08/2013,07/09/2013 01:18:42 AM,07/09/2013 01:19:20 AM,07/09/2013 01:20:28 AM,07/09/2013 01:20:32 AM,07/09/2013 01:21:55 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Patient Declined Transport,07/09/2013 01:51:19 AM,OFARRELL ST/JONES ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",131900014-66 +131990173,E44,13067450,Citizen Assist / Service Call,07/18/2013,07/18/2013,07/18/2013 01:04:49 PM,07/18/2013 01:06:52 PM,07/18/2013 01:07:16 PM,07/18/2013 01:09:36 PM,07/18/2013 01:10:55 PM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 01:14:46 PM,1000 Block of GOETTINGEN ST,SF,94134,B10,44,6313,3,3,3,true,Alarm,1,ENGINE,1,10,10,Portola,"(37.7190470338959, -122.403385740748)",131990173-E44 +111890234,E02,11062522,Medical Incident,07/08/2011,07/08/2011,07/08/2011 02:45:51 PM,07/08/2011 02:47:19 PM,07/08/2011 02:47:35 PM,07/08/2011 02:49:06 PM,07/08/2011 02:51:12 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,Other,07/08/2011 03:08:51 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7901567744673, -122.40836738789)",111890234-E02 +102910343,B03,10092941,Alarms,10/18/2010,10/18/2010,10/18/2010 08:35:13 PM,10/18/2010 08:36:43 PM,10/18/2010 08:36:52 PM,10/18/2010 08:38:38 PM,10/18/2010 08:41:37 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/18/2010 08:43:18 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",102910343-B03 +120020102,T08,12000668,Structure Fire,01/02/2012,01/02/2012,01/02/2012 10:22:10 AM,01/02/2012 10:22:29 AM,01/02/2012 10:23:03 AM,01/02/2012 10:23:32 AM,01/02/2012 10:25:12 AM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/02/2012 11:42:53 AM,600 Block of BRANNAN ST,SF,94107,B03,8,2256,3,3,3,false,Fire,1,TRUCK,1,3,6,South of Market,"(37.7757275043463, -122.399917352122)",120020102-T08 +140800253,E11,14027095,Medical Incident,03/21/2014,03/21/2014,03/21/2014 03:59:29 PM,03/21/2014 04:01:51 PM,03/21/2014 04:02:23 PM,03/21/2014 04:03:34 PM,03/21/2014 04:05:50 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Code 2 Transport,03/21/2014 04:13:07 PM,SAN JOSE AV/ALVARADO ST,SAN FRANCISCO,94110,B06,11,5471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7544656208221, -122.421476521356)",140800253-E11 +133420260,E12,13116031,Structure Fire,12/08/2013,12/08/2013,12/08/2013 04:08:57 PM,12/08/2013 04:09:39 PM,12/08/2013 04:10:14 PM,12/08/2013 04:12:06 PM,12/08/2013 04:13:52 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 04:27:26 PM,1400 Block of 12TH AVE,SF,94122,B08,22,7347,3,3,3,true,Alarm,1,ENGINE,3,8,7,Inner Sunset,"(37.7610993407265, -122.469396572212)",133420260-E12 +102870003,55,10091362,Medical Incident,10/14/2010,10/13/2010,10/14/2010 12:14:54 AM,10/14/2010 12:15:40 AM,10/14/2010 12:16:44 AM,10/14/2010 12:16:54 AM,10/14/2010 12:22:00 AM,04/25/2016 02:08:06 PM,04/25/2016 02:08:06 PM,No Merit,10/14/2010 12:46:14 AM,TRUMBULL ST/CRAUT ST,SF,94112,B09,32,5635,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7307887440015, -122.428389946598)",102870003-55 +122320291,E37,12077045,Medical Incident,08/19/2012,08/19/2012,08/19/2012 06:24:27 PM,08/19/2012 06:25:23 PM,08/19/2012 06:25:46 PM,08/19/2012 06:27:56 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 06:29:24 PM,400 Block of 24TH ST,SF,94107,B10,25,2732,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7541797062971, -122.385016109823)",122320291-E37 +122710157,67,12089420,Medical Incident,09/27/2012,09/27/2012,09/27/2012 01:11:46 PM,09/27/2012 01:11:50 PM,09/27/2012 01:12:27 PM,09/27/2012 01:12:55 PM,09/27/2012 01:15:50 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,No Merit,09/27/2012 01:18:14 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",122710157-67 +140060065,AM16,14002031,Medical Incident,01/06/2014,01/05/2014,01/06/2014 06:34:57 AM,01/06/2014 06:36:49 AM,01/06/2014 06:55:21 AM,01/06/2014 06:55:21 AM,01/06/2014 06:57:10 AM,01/06/2014 07:02:55 AM,01/06/2014 07:20:40 AM,Code 2 Transport,01/06/2014 07:54:56 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",140060065-AM16 +120140367,75,12004937,Medical Incident,01/14/2012,01/14/2012,01/14/2012 11:47:28 PM,01/14/2012 11:47:28 PM,01/14/2012 11:47:28 PM,01/15/2012 12:35:04 AM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 12:53:23 AM,POST ST/HYDE ST,SF,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,4,4,3,Nob Hill,"(37.7872452103353, -122.41663869807)",120140367-75 +103580230,KM04,10114968,Medical Incident,12/24/2010,12/24/2010,12/24/2010 05:05:30 PM,12/24/2010 05:07:32 PM,12/24/2010 05:08:16 PM,04/25/2016 02:06:57 PM,12/24/2010 05:17:31 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Gone on Arrival,12/24/2010 05:21:59 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",103580230-KM04 +160642955,78,16025607,Medical Incident,03/04/2016,03/04/2016,03/04/2016 05:47:21 PM,03/04/2016 05:47:21 PM,03/04/2016 05:48:21 PM,03/04/2016 05:50:12 PM,03/04/2016 05:53:25 PM,03/04/2016 06:12:05 PM,03/04/2016 06:27:08 PM,Code 2 Transport,03/04/2016 07:03:33 PM,CAPP ST/16TH ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",160642955-78 +131350323,E03,13045667,Alarms,05/15/2013,05/15/2013,05/15/2013 07:20:02 PM,05/15/2013 07:21:04 PM,05/15/2013 07:21:13 PM,05/15/2013 07:22:14 PM,05/15/2013 07:23:39 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 07:29:55 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",131350323-E03 +112240383,E15,11074156,Medical Incident,08/12/2011,08/12/2011,08/12/2011 10:24:38 PM,08/12/2011 10:26:36 PM,08/12/2011 10:27:10 PM,08/12/2011 10:28:39 PM,08/12/2011 10:30:32 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 10:37:06 PM,ALEMANY BL/HARRINGTON ST,SF,94112,B09,15,8271,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7260584866086, -122.436273176842)",112240383-E15 +110470101,E03,11015472,Alarms,02/16/2011,02/16/2011,02/16/2011 09:15:40 AM,02/16/2011 09:17:28 AM,02/16/2011 09:17:35 AM,02/16/2011 09:20:16 AM,02/16/2011 09:22:48 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 09:35:00 AM,100 Block of LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",110470101-E03 +131990065,54,13067365,Medical Incident,07/18/2013,07/18/2013,07/18/2013 08:07:56 AM,07/18/2013 08:08:21 AM,07/18/2013 08:08:52 AM,07/18/2013 08:10:48 AM,07/18/2013 08:23:51 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,No Merit,07/18/2013 08:30:48 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",131990065-54 +120210222,E34,12007150,Water Rescue,01/21/2012,01/21/2012,01/21/2012 01:25:36 PM,01/21/2012 01:25:36 PM,01/21/2012 01:25:36 PM,01/21/2012 01:26:51 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 01:36:44 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,13,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120210222-E34 +130370293,E05,13012791,Structure Fire,02/06/2013,02/06/2013,02/06/2013 07:04:01 PM,02/06/2013 07:04:01 PM,02/06/2013 07:04:21 PM,02/06/2013 07:04:55 PM,02/06/2013 07:06:00 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 07:06:26 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",130370293-E05 +122750406,E38,12090931,Medical Incident,10/01/2012,10/01/2012,10/01/2012 09:14:52 PM,10/01/2012 09:16:01 PM,10/01/2012 09:21:19 PM,10/01/2012 09:23:22 PM,10/01/2012 09:25:47 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/01/2012 09:38:09 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",122750406-E38 +110540253,KM12,11017872,Medical Incident,02/23/2011,02/23/2011,02/23/2011 03:36:34 PM,02/23/2011 03:37:42 PM,02/23/2011 03:38:25 PM,04/25/2016 02:05:56 PM,02/23/2011 03:43:14 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,Patient Declined Transport,02/23/2011 03:44:48 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,false,,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",110540253-KM12 +132720149,E07,13092419,Medical Incident,09/29/2013,09/29/2013,09/29/2013 10:43:37 AM,09/29/2013 10:44:23 AM,09/29/2013 10:44:41 AM,09/29/2013 10:44:48 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 11:05:35 AM,100 Block of 14TH ST,SF,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7684930896863, -122.417260010771)",132720149-E07 +120280155,AM02,12009384,Medical Incident,01/28/2012,01/28/2012,01/28/2012 12:30:23 PM,01/28/2012 12:30:23 PM,01/28/2012 12:30:23 PM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,01/28/2012 12:38:01 PM,01/28/2012 12:57:34 PM,Code 2 Transport,01/28/2012 01:27:36 PM,MARKET ST/4TH ST,SF,94103,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",120280155-AM02 +111970173,B08,11064997,Structure Fire,07/16/2011,07/16/2011,07/16/2011 12:53:36 PM,07/16/2011 12:55:26 PM,07/16/2011 12:55:44 PM,07/16/2011 12:56:39 PM,07/16/2011 01:01:52 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 01:02:41 PM,500 Block of SHIELDS ST,SF,94132,B09,33,8444,3,3,3,false,,1,CHIEF,3,9,11,Oceanview/Merced/Ingleside,"(37.7179581035039, -122.467587189551)",111970173-B08 +160143571,78,16005749,Medical Incident,01/14/2016,01/14/2016,01/14/2016 09:12:06 PM,01/14/2016 09:14:38 PM,01/14/2016 09:25:06 PM,01/14/2016 09:25:06 PM,01/14/2016 09:40:16 PM,01/14/2016 09:58:24 PM,01/14/2016 10:05:48 PM,Code 2 Transport,01/14/2016 10:49:44 PM,23RD AV/IRVING ST,San Francisco,94122,B08,22,7451,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7633730938478, -122.481408835625)",160143571-78 +123580125,55,12119806,Medical Incident,12/23/2012,12/23/2012,12/23/2012 12:07:20 PM,12/23/2012 12:08:08 PM,12/23/2012 12:08:21 PM,12/23/2012 12:08:36 PM,12/23/2012 12:12:57 PM,12/23/2012 12:36:44 PM,12/23/2012 01:17:24 PM,Code 2 Transport,12/23/2012 01:51:21 PM,2100 Block of 46TH AVE,SF,94116,B08,23,7714,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7464385384362, -122.504881060231)",123580125-55 +120670207,E17,12022222,Gas Leak (Natural and LP Gases),03/07/2012,03/07/2012,03/07/2012 12:32:34 PM,03/07/2012 12:34:00 PM,03/07/2012 12:34:10 PM,03/07/2012 12:36:03 PM,03/07/2012 12:38:20 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Fire,03/07/2012 12:52:31 PM,0 Block of CERES ST,SF,94124,B10,17,6513,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7302170309802, -122.394251598498)",120670207-E17 +160612118,KM09,16024356,Medical Incident,03/01/2016,03/01/2016,03/01/2016 03:26:45 PM,03/01/2016 03:27:37 PM,03/01/2016 03:27:57 PM,03/01/2016 03:31:03 PM,03/01/2016 03:35:27 PM,03/01/2016 03:46:08 PM,03/01/2016 04:01:03 PM,Code 2 Transport,03/01/2016 04:39:58 PM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7826425026927, -122.407832679288)",160612118-KM09 +160663234,68,16026541,Medical Incident,03/06/2016,03/06/2016,03/06/2016 10:50:14 PM,03/06/2016 10:50:14 PM,03/06/2016 10:50:37 PM,03/06/2016 10:50:49 PM,03/06/2016 10:59:17 PM,03/06/2016 11:27:38 PM,03/06/2016 11:43:07 PM,Code 2 Transport,03/07/2016 12:18:23 AM,STOCKTON ST/CALIFORNIA ST,San Francisco,94108,B01,2,1325,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7922511619052, -122.407518951828)",160663234-68 +121320162,T01,12043893,Structure Fire,05/11/2012,05/11/2012,05/11/2012 11:38:48 AM,05/11/2012 11:38:49 AM,05/11/2012 11:39:51 AM,05/11/2012 11:39:58 AM,05/11/2012 11:40:29 AM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 11:40:42 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",121320162-T01 +160544102,53,16021808,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:45:27 PM,02/23/2016 10:45:27 PM,02/23/2016 10:45:44 PM,02/23/2016 10:45:54 PM,02/23/2016 11:06:54 PM,02/23/2016 11:07:07 PM,02/23/2016 11:17:14 PM,Code 2 Transport,02/24/2016 01:00:27 AM,BEAVER ST/NOE ST,San Francisco,94114,B05,6,5212,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7650606520299, -122.433178636444)",160544102-53 +103650332,KM15,10117226,Medical Incident,12/31/2010,12/31/2010,12/31/2010 09:30:30 PM,12/31/2010 09:31:12 PM,12/31/2010 09:31:31 PM,12/31/2010 09:32:53 PM,12/31/2010 09:42:37 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Patient Declined Transport,12/31/2010 09:51:14 PM,400 Block of 15TH AVE,SF,94118,B07,31,7154,3,2,2,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",103650332-KM15 +113330075,E13,11110238,Medical Incident,11/29/2011,11/29/2011,11/29/2011 08:26:11 AM,11/29/2011 08:27:01 AM,11/29/2011 08:27:49 AM,11/29/2011 08:28:50 AM,11/29/2011 08:29:52 AM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 08:33:54 AM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",113330075-E13 +123390136,KM09,12113021,Medical Incident,12/04/2012,12/04/2012,12/04/2012 10:37:08 AM,12/04/2012 10:37:08 AM,12/04/2012 10:37:35 AM,12/04/2012 10:38:42 AM,12/04/2012 10:41:07 AM,12/04/2012 10:57:21 AM,12/04/2012 11:12:19 AM,Code 2 Transport,12/04/2012 11:39:02 AM,400 Block of TURK ST,SF,94102,B02,3,1554,E,E,3,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",123390136-KM09 +113330294,82,11110403,Medical Incident,11/29/2011,11/29/2011,11/29/2011 07:13:02 PM,11/29/2011 07:14:32 PM,11/29/2011 07:15:30 PM,11/29/2011 07:15:39 PM,11/29/2011 07:20:58 PM,11/29/2011 07:36:40 PM,11/29/2011 07:43:55 PM,Code 2 Transport,11/29/2011 08:20:00 PM,400 Block of BRANNAN ST,SF,94107,B03,8,2173,1,1,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7799151588929, -122.394619010251)",113330294-82 +160183579,62,16007428,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:32:05 PM,01/18/2016 11:32:52 PM,01/18/2016 11:33:02 PM,01/18/2016 11:33:07 PM,01/18/2016 11:37:15 PM,01/18/2016 11:53:38 PM,01/19/2016 12:03:58 AM,Code 2 Transport,01/19/2016 12:53:46 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160183579-62 +160733223,60,16029147,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:45:08 PM,03/13/2016 11:46:48 PM,03/13/2016 11:57:02 PM,03/13/2016 11:57:21 PM,03/14/2016 12:14:53 AM,03/14/2016 12:45:58 AM,03/14/2016 01:03:48 AM,Code 2 Transport,03/14/2016 01:33:27 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160733223-60 +160871789,50,16034577,Medical Incident,03/27/2016,03/27/2016,03/27/2016 01:08:17 PM,03/27/2016 01:08:43 PM,03/27/2016 01:09:53 PM,03/27/2016 01:10:25 PM,03/27/2016 01:19:37 PM,03/27/2016 01:37:52 PM,03/27/2016 02:00:58 PM,Code 2 Transport,03/27/2016 02:34:12 PM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,13,1246,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.7973530798881, -122.405824166189)",160871789-50 +160192719,62,16007730,Medical Incident,01/19/2016,01/19/2016,01/19/2016 05:14:31 PM,01/19/2016 05:15:02 PM,01/19/2016 05:15:27 PM,01/19/2016 05:15:35 PM,01/19/2016 05:19:05 PM,01/19/2016 05:43:28 PM,01/19/2016 05:55:13 PM,Code 2 Transport,01/19/2016 06:43:42 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",160192719-62 +160823179,KM12,16032697,Medical Incident,03/22/2016,03/22/2016,03/22/2016 06:25:22 PM,03/22/2016 06:26:47 PM,03/22/2016 06:27:18 PM,03/22/2016 06:28:02 PM,03/22/2016 06:34:45 PM,03/22/2016 07:02:37 PM,03/22/2016 07:14:41 PM,Code 2 Transport,03/22/2016 07:50:54 PM,1600 Block of 27TH AVE,San Francisco,94122,B08,18,7474,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.756662640048, -122.485172373799)",160823179-KM12 +110940141,92,11031164,Medical Incident,04/04/2011,04/04/2011,04/04/2011 11:10:32 AM,04/04/2011 11:12:16 AM,04/04/2011 11:12:37 AM,04/04/2011 11:12:52 AM,04/04/2011 11:20:49 AM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Unable to Locate,04/04/2011 11:20:52 AM,EDDY ST/PIERCE ST,SF,94115,B05,5,3624,2,2,2,true,,1,MEDIC,2,5,5,Western Addition,"(37.7810093448177, -122.435616262656)",110940141-92 +111350366,70,11045073,Medical Incident,05/15/2011,05/15/2011,05/15/2011 07:27:31 PM,05/15/2011 07:29:46 PM,05/15/2011 07:30:09 PM,05/15/2011 07:30:19 PM,05/15/2011 07:42:14 PM,05/15/2011 08:07:55 PM,05/15/2011 08:12:04 PM,Code 2 Transport,05/15/2011 08:36:53 PM,2700 Block of 24TH ST,SF,94110,B06,9,5531,1,1,2,true,,1,MEDIC,1,6,9,Mission,"(37.7529342790976, -122.407745321325)",111350366-70 +160670879,59,16026669,Medical Incident,03/07/2016,03/07/2016,03/07/2016 09:59:37 AM,03/07/2016 09:59:37 AM,03/07/2016 10:00:04 AM,03/07/2016 10:00:17 AM,03/07/2016 10:13:05 AM,03/07/2016 10:29:29 AM,03/07/2016 10:29:29 AM,Code 2 Transport,03/07/2016 11:21:25 AM,GRANT AV/SUTTER ST,San Francisco,94108,B01,1,1316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",160670879-59 +120560041,96,12018381,Medical Incident,02/25/2012,02/24/2012,02/25/2012 03:59:31 AM,02/25/2012 04:05:14 AM,02/25/2012 04:05:40 AM,02/25/2012 04:06:18 AM,02/25/2012 04:10:29 AM,02/25/2012 04:31:30 AM,02/25/2012 04:55:19 AM,Code 2 Transport,02/25/2012 05:15:03 AM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",120560041-96 +110880257,T06,11029107,Structure Fire,03/29/2011,03/29/2011,03/29/2011 03:52:42 PM,03/29/2011 03:54:25 PM,03/29/2011 03:55:04 PM,03/29/2011 03:56:45 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 04:23:09 PM,300 Block of HAIGHT ST,SF,94102,B02,6,3524,3,3,3,false,,1,TRUCK,9,2,5,Hayes Valley,"(37.7724746185561, -122.427991225235)",110880257-T06 +160761773,61,16030142,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:41:28 PM,03/16/2016 12:42:03 PM,03/16/2016 12:42:46 PM,03/16/2016 12:43:20 PM,03/16/2016 12:54:06 PM,03/16/2016 01:17:02 PM,03/16/2016 01:31:12 PM,Code 2 Transport,03/16/2016 02:19:21 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160761773-61 +160493941,KM03,16019914,Medical Incident,02/18/2016,02/18/2016,02/18/2016 11:04:52 PM,02/18/2016 11:04:52 PM,02/18/2016 11:05:23 PM,02/18/2016 11:05:52 PM,02/18/2016 11:16:57 PM,02/18/2016 11:30:12 PM,02/18/2016 11:43:02 PM,Code 2 Transport,02/19/2016 12:30:42 AM,7TH ST/HOOPER ST,San Francisco,94158,B03,29,2272,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7690413801142, -122.398179220088)",160493941-KM03 +122800222,E17,12092623,Medical Incident,10/06/2012,10/06/2012,10/06/2012 02:15:31 PM,10/06/2012 02:16:08 PM,10/06/2012 02:16:25 PM,10/06/2012 02:16:48 PM,10/06/2012 02:18:56 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/06/2012 02:35:01 PM,5500 Block of 3RD ST,SF,94124,B10,17,6537,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7273180308836, -122.393270734468)",122800222-E17 +111810293,T05,11059818,Alarms,06/30/2011,06/30/2011,06/30/2011 05:46:56 PM,06/30/2011 05:48:16 PM,06/30/2011 05:48:30 PM,06/30/2011 05:49:45 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 05:54:35 PM,2100 Block of BUSH ST,SF,94115,B04,38,3512,3,3,3,false,,1,TRUCK,3,4,5,Pacific Heights,"(37.7870349820474, -122.432911990737)",111810293-T05 +160073287,AM10,16002979,Medical Incident,01/07/2016,01/07/2016,01/07/2016 07:28:34 PM,01/07/2016 07:32:21 PM,01/07/2016 07:32:53 PM,01/07/2016 07:33:15 PM,01/07/2016 07:38:29 PM,01/07/2016 07:50:24 PM,01/07/2016 08:04:11 PM,Code 2 Transport,01/07/2016 08:26:15 PM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",160073287-AM10 +111530131,E01,11050547,Medical Incident,06/02/2011,06/02/2011,06/02/2011 11:33:17 AM,06/02/2011 11:34:01 AM,06/02/2011 11:34:49 AM,06/02/2011 11:35:37 AM,06/02/2011 11:37:51 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/02/2011 11:41:28 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",111530131-E01 +122440337,B01,12080807,Structure Fire,08/31/2012,08/31/2012,08/31/2012 09:34:46 PM,08/31/2012 09:34:46 PM,08/31/2012 09:35:30 PM,08/31/2012 09:36:58 PM,08/31/2012 09:40:21 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,08/31/2012 09:44:43 PM,600 Block of MARKET ST,SF,94105,B03,1,2158,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",122440337-B01 +112390307,T19,11078979,Structure Fire,08/27/2011,08/27/2011,08/27/2011 07:45:36 PM,08/27/2011 07:45:36 PM,08/27/2011 07:46:11 PM,08/27/2011 07:47:25 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 08:02:01 PM,EUCALYPTUS DR/SYLVAN DR,SF,94132,B08,19,8743,3,3,3,false,,1,TRUCK,3,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",112390307-T19 +133360162,T10,13113869,Other,12/02/2013,12/02/2013,12/02/2013 11:57:01 AM,12/02/2013 11:57:26 AM,12/02/2013 11:57:33 AM,12/02/2013 11:58:01 AM,12/02/2013 12:04:17 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/02/2013 12:36:57 PM,2900 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,false,Alarm,1,TRUCK,1,4,2,Pacific Heights,"(37.7878056330668, -122.442942313047)",133360162-T10 +121500178,AM16,12049741,Medical Incident,05/29/2012,05/29/2012,05/29/2012 01:29:36 PM,05/29/2012 01:30:13 PM,05/29/2012 01:30:29 PM,05/29/2012 01:31:17 PM,05/29/2012 01:37:27 PM,05/29/2012 01:43:41 PM,05/29/2012 02:09:07 PM,Code 2 Transport,05/29/2012 02:50:49 PM,400 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,954,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7717396202959, -122.386663865791)",121500178-AM16 +132120219,B03,13071689,Alarms,07/31/2013,07/31/2013,07/31/2013 03:03:03 PM,07/31/2013 03:03:59 PM,07/31/2013 03:04:05 PM,07/31/2013 03:04:35 PM,07/31/2013 03:07:26 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,07/31/2013 03:18:41 PM,100 Block of SPEAR ST,SF,94105,B03,35,2114,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7919628053601, -122.393243014407)",132120219-B03 +120210174,T08,12007103,Citizen Assist / Service Call,01/21/2012,01/21/2012,01/21/2012 11:01:56 AM,01/21/2012 11:05:17 AM,01/21/2012 11:05:52 AM,01/21/2012 11:06:27 AM,01/21/2012 11:12:17 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 12:28:31 PM,BRYANT ST/10TH ST,SF,94103,B02,29,2345,3,3,3,false,Alarm,1,TRUCK,1,2,6,Mission,"(37.7703485160634, -122.409735890482)",120210174-T08 +112620353,T05,11086596,Alarms,09/19/2011,09/19/2011,09/19/2011 06:48:26 PM,09/19/2011 06:49:19 PM,09/19/2011 06:49:33 PM,09/19/2011 06:50:33 PM,09/19/2011 06:53:03 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 07:02:06 PM,1000 Block of TURK ST,SF,94102,B02,5,3426,3,3,3,false,,1,TRUCK,2,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",112620353-T05 +131920356,RC3,13065492,Medical Incident,07/11/2013,07/11/2013,07/11/2013 10:43:26 PM,07/11/2013 10:43:42 PM,07/11/2013 10:56:09 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/11/2013 10:56:38 PM,500 Block of CASTRO ST,SF,94114,B06,6,5437,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,6,8,Castro/Upper Market,"(37.7600850560594, -122.434996193094)",131920356-RC3 +131290361,E41,13043753,Structure Fire,05/09/2013,05/09/2013,05/09/2013 10:40:26 PM,05/09/2013 10:40:27 PM,05/09/2013 10:40:32 PM,05/09/2013 10:42:06 PM,05/09/2013 10:42:53 PM,04/25/2016 01:52:52 PM,04/25/2016 01:52:52 PM,Other,05/09/2013 10:43:45 PM,LEAVENWORTH ST/BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",131290361-E41 +123570036,93,12119380,Traffic Collision,12/22/2012,12/21/2012,12/22/2012 02:24:13 AM,12/22/2012 02:24:40 AM,12/22/2012 02:30:57 AM,12/22/2012 02:31:28 AM,12/22/2012 02:42:46 AM,12/22/2012 03:06:10 AM,12/22/2012 03:10:36 AM,Code 2 Transport,12/22/2012 03:46:35 AM,SOUTH VAN NESS AV/16TH ST,SF,94110,B02,7,5225,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7651831353816, -122.417486597301)",123570036-93 +61980418,B03,6055612,Alarms,07/17/2006,07/17/2006,07/17/2006 09:58:00 PM,07/17/2006 09:59:44 PM,07/17/2006 10:00:29 PM,07/17/2006 10:01:26 PM,04/25/2016 03:43:41 PM,04/25/2016 03:43:41 PM,07/17/2006 10:05:17 PM,Fire,07/17/2006 10:09:44 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,CHIEF,3,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",061980418-B03 +103010174,67,10096095,Structure Fire,10/28/2010,10/28/2010,10/28/2010 11:11:52 AM,10/28/2010 11:12:18 AM,10/28/2010 11:12:32 AM,10/28/2010 11:12:45 AM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Other,10/28/2010 11:18:12 AM,500 Block of TAYLOR ST,SF,94102,B01,3,1451,3,3,3,true,,1,MEDIC,9,1,3,Tenderloin,"(37.7874020700273, -122.411538882795)",103010174-67 +122140350,87,12071159,Structure Fire,08/01/2012,08/01/2012,08/01/2012 08:47:36 PM,08/01/2012 08:48:20 PM,08/01/2012 08:48:47 PM,08/01/2012 08:48:56 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/01/2012 08:54:49 PM,400 Block of ATHENS ST,SF,94112,B09,43,6156,3,3,3,true,Fire,1,MEDIC,8,9,11,Excelsior,"(37.7208342283008, -122.428956362457)",122140350-87 +131890163,B03,13064406,Structure Fire,07/08/2013,07/08/2013,07/08/2013 12:26:37 PM,07/08/2013 12:27:20 PM,07/08/2013 12:28:11 PM,07/08/2013 12:28:56 PM,07/08/2013 12:33:11 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/08/2013 12:51:51 PM,0 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,false,Fire,1,CHIEF,4,2,6,Mission,"(37.7696282820303, -122.415196230714)",131890163-B03 +123450334,E22,12115448,Medical Incident,12/10/2012,12/10/2012,12/10/2012 05:30:56 PM,12/10/2012 05:31:47 PM,12/10/2012 05:32:37 PM,12/10/2012 05:34:15 PM,12/10/2012 05:37:54 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 05:38:11 PM,1500 Block of 20TH AVE,SF,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7588490098905, -122.47794097509)",123450334-E22 +160702089,64,16027894,Medical Incident,03/10/2016,03/10/2016,03/10/2016 02:43:08 PM,03/10/2016 02:46:29 PM,03/10/2016 02:47:18 PM,03/10/2016 02:47:37 PM,03/10/2016 02:59:06 PM,03/10/2016 03:19:31 PM,03/10/2016 03:24:17 PM,Code 2 Transport,03/10/2016 04:11:57 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160702089-64 +110290073,RC3,11009454,Medical Incident,01/29/2011,01/28/2011,01/29/2011 04:31:38 AM,01/29/2011 04:32:20 AM,01/29/2011 04:32:46 AM,01/29/2011 04:34:45 AM,01/29/2011 04:40:32 AM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Medical Examiner,01/29/2011 05:40:14 AM,5700 Block of MISSION ST,SF,94112,B09,33,6212,E,E,3,true,,1,RESCUE CAPTAIN,2,9,11,Excelsior,"(37.709762526111, -122.449674980499)",110290073-RC3 +120370051,E23,12012245,Medical Incident,02/06/2012,02/05/2012,02/06/2012 04:31:38 AM,02/06/2012 04:33:30 AM,02/06/2012 04:33:42 AM,02/06/2012 04:35:19 AM,02/06/2012 04:38:15 AM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/06/2012 04:50:08 AM,2000 Block of 48TH AVE,SF,94116,B08,23,7726,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7482090997643, -122.507153975636)",120370051-E23 +112480267,KM12,11081867,Medical Incident,09/05/2011,09/05/2011,09/05/2011 05:31:11 PM,09/05/2011 05:32:14 PM,09/05/2011 05:33:00 PM,09/05/2011 05:35:44 PM,09/05/2011 05:48:01 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 05:49:05 PM,0 Block of NAVY RD,SF,94124,B10,17,6646,3,2,2,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7294990859712, -122.379424889828)",112480267-KM12 +131310337,T01,13044361,Alarms,05/11/2013,05/11/2013,05/11/2013 07:23:15 PM,05/11/2013 07:23:58 PM,05/11/2013 07:24:05 PM,05/11/2013 07:25:18 PM,05/11/2013 07:28:21 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 07:30:25 PM,500 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7887066123323, -122.399010207568)",131310337-T01 +112990336,D2,11099310,Structure Fire,10/26/2011,10/26/2011,10/26/2011 08:41:36 PM,10/26/2011 08:42:21 PM,10/26/2011 08:42:59 PM,10/26/2011 08:50:28 PM,10/26/2011 08:50:29 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/26/2011 09:01:11 PM,500 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,false,,1,CHIEF,7,7,1,Outer Richmond,"(37.7788847355525, -122.48995472763)",112990336-D2 +140060094,E01,14002059,Medical Incident,01/06/2014,01/06/2014,01/06/2014 08:19:39 AM,01/06/2014 08:20:25 AM,01/06/2014 08:21:03 AM,01/06/2014 08:22:53 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 08:27:24 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",140060094-E01 +120480037,E07,12015800,Medical Incident,02/17/2012,02/16/2012,02/17/2012 03:24:54 AM,02/17/2012 03:26:08 AM,02/17/2012 03:26:15 AM,02/17/2012 03:28:41 AM,02/17/2012 03:30:22 AM,04/25/2016 02:00:06 PM,04/25/2016 02:00:06 PM,Other,02/17/2012 03:35:31 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",120480037-E07 +111280172,67,11042343,Medical Incident,05/08/2011,05/08/2011,05/08/2011 01:26:00 PM,05/08/2011 01:26:26 PM,05/08/2011 01:27:21 PM,05/08/2011 01:27:51 PM,05/08/2011 01:29:41 PM,05/08/2011 01:41:01 PM,05/08/2011 01:44:49 PM,Code 2 Transport,05/08/2011 02:08:37 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7829058754034, -122.40679650522)",111280172-67 +120780183,B01,12025870,Alarms,03/18/2012,03/18/2012,03/18/2012 10:59:13 AM,03/18/2012 11:00:06 AM,03/18/2012 11:00:14 AM,03/18/2012 11:01:40 AM,03/18/2012 11:06:14 AM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Fire,03/18/2012 11:07:04 AM,2100 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8004518556001, -122.438685860986)",120780183-B01 +122150237,RC2,12071402,Structure Fire,08/02/2012,08/02/2012,08/02/2012 04:13:18 PM,08/02/2012 04:14:13 PM,08/02/2012 04:14:48 PM,08/02/2012 04:32:48 PM,08/02/2012 04:34:35 PM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Other,08/02/2012 04:37:06 PM,400 Block of 15TH AVE,SF,94118,B07,31,7154,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",122150237-RC2 +103220315,73,10103324,Medical Incident,11/18/2010,11/18/2010,11/18/2010 10:01:40 PM,11/18/2010 10:02:16 PM,11/18/2010 10:03:14 PM,11/18/2010 10:03:28 PM,11/18/2010 10:05:54 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Patient Declined Transport,11/18/2010 10:34:14 PM,VAN NESS AV/BROADWAY,SF,94109,B04,41,3152,3,3,3,true,,1,MEDIC,1,4,2,Russian Hill,"(37.7957371093016, -122.423413055255)",103220315-73 +160502960,KM05,16020201,Medical Incident,02/19/2016,02/19/2016,02/19/2016 06:16:03 PM,02/19/2016 06:17:03 PM,02/19/2016 06:17:34 PM,02/19/2016 06:18:10 PM,02/19/2016 06:22:46 PM,02/19/2016 06:39:00 PM,02/19/2016 06:48:08 PM,Code 2 Transport,02/19/2016 07:33:18 PM,5200 Block of GEARY BLVD,San Francisco,94118,B07,31,7161,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7803793292954, -122.475616326182)",160502960-KM05 +160531757,AM12,16021212,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:39:11 PM,02/22/2016 01:39:11 PM,02/22/2016 01:41:03 PM,02/22/2016 01:41:03 PM,02/22/2016 01:46:09 PM,02/22/2016 02:20:31 PM,02/22/2016 02:45:32 PM,Code 2 Transport,02/22/2016 03:32:49 PM,DUBOCE AV/MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",160531757-AM12 +132500245,B06,13084445,Structure Fire,09/07/2013,09/07/2013,09/07/2013 02:08:29 PM,09/07/2013 02:10:19 PM,09/07/2013 02:10:48 PM,09/07/2013 02:11:40 PM,09/07/2013 02:15:13 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/07/2013 02:17:33 PM,PANORAMA DR/STARVIEW WY,SF,94131,B08,20,5351,3,3,3,false,Alarm,1,CHIEF,3,8,7,Twin Peaks,"(37.7493507775156, -122.452122625081)",132500245-B06 +160402828,62,16016141,Medical Incident,02/09/2016,02/09/2016,02/09/2016 05:16:04 PM,02/09/2016 05:17:08 PM,02/09/2016 05:17:29 PM,02/09/2016 05:18:11 PM,02/09/2016 05:20:43 PM,02/09/2016 05:41:37 PM,02/09/2016 06:02:24 PM,Code 2 Transport,02/09/2016 06:33:39 PM,CALL BOX:,San Francisco,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774313652297, -122.416313424899)",160402828-62 +113200358,RC1,11106425,Structure Fire,11/16/2011,11/16/2011,11/16/2011 08:13:29 PM,11/16/2011 08:14:00 PM,11/16/2011 08:14:29 PM,11/16/2011 08:20:41 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/16/2011 08:22:06 PM,1400 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,true,,1,RESCUE CAPTAIN,12,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",113200358-RC1 +131170075,E03,13039270,Medical Incident,04/27/2013,04/27/2013,04/27/2013 08:12:13 AM,04/27/2013 08:12:44 AM,04/27/2013 08:13:29 AM,04/27/2013 08:15:48 AM,04/27/2013 08:16:52 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,No Merit,04/27/2013 08:22:09 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131170075-E03 +113180295,KM14,11105739,Medical Incident,11/14/2011,11/14/2011,11/14/2011 07:24:48 PM,11/14/2011 07:25:15 PM,11/14/2011 07:25:48 PM,11/14/2011 07:26:28 PM,11/14/2011 07:31:17 PM,11/14/2011 07:53:11 PM,11/14/2011 08:17:24 PM,Code 2 Transport,11/14/2011 08:20:08 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,false,,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",113180295-KM14 +160021971,82,16000770,Medical Incident,01/02/2016,01/02/2016,01/02/2016 02:58:52 PM,01/02/2016 03:04:16 PM,01/02/2016 03:04:45 PM,01/02/2016 03:06:00 PM,01/02/2016 03:10:36 PM,01/02/2016 03:19:13 PM,01/02/2016 03:33:53 PM,Code 2 Transport,01/02/2016 04:03:05 PM,900 Block of INNES AVE,San Francisco,94124,B10,25,6632,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7322910475588, -122.376157905497)",160021971-82 +102970099,T17,10094682,Structure Fire,10/24/2010,10/23/2010,10/24/2010 05:28:36 AM,10/24/2010 05:28:36 AM,10/24/2010 05:29:03 AM,10/24/2010 05:29:17 AM,10/24/2010 05:37:25 AM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 05:40:01 AM,0 Block of DELTA ST,SF,94134,B10,44,631,3,3,3,false,,1,TRUCK,2,9,10,McLaren Park,"(37.7188676788814, -122.406889004331)",102970099-T17 +131320211,T09,13044611,Structure Fire,05/12/2013,05/12/2013,05/12/2013 04:43:56 PM,05/12/2013 04:44:57 PM,05/12/2013 04:49:02 PM,05/12/2013 04:50:25 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 04:52:34 PM,600 Block of MINNESOTA ST,SF,94107,B03,29,2465,3,3,3,false,Alarm,1,TRUCK,10,10,10,Potrero Hill,"(37.7622933026628, -122.390566952855)",131320211-T09 +112420231,E26,11079858,Medical Incident,08/30/2011,08/30/2011,08/30/2011 04:00:58 PM,08/30/2011 04:04:04 PM,08/30/2011 04:04:23 PM,08/30/2011 04:08:34 PM,08/30/2011 04:13:05 PM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Other,08/30/2011 04:27:50 PM,0 Block of ROTTECK ST,SF,94112,B09,32,8136,2,3,3,true,,1,ENGINE,1,9,8,Outer Mission,"(37.731544719756, -122.43064603478)",112420231-E26 +111770384,75,11058541,Medical Incident,06/26/2011,06/26/2011,06/26/2011 07:58:25 PM,06/26/2011 07:59:25 PM,06/26/2011 08:00:10 PM,06/26/2011 08:02:44 PM,06/26/2011 08:06:10 PM,06/26/2011 08:19:43 PM,06/26/2011 08:34:59 PM,Code 2 Transport,06/26/2011 08:55:41 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",111770384-75 +160860740,KM08,16034094,Medical Incident,03/26/2016,03/25/2016,03/26/2016 07:39:23 AM,03/26/2016 07:40:53 AM,03/26/2016 07:41:20 AM,03/26/2016 07:41:38 AM,03/26/2016 07:50:27 AM,03/26/2016 08:09:38 AM,03/26/2016 08:30:39 AM,Code 2 Transport,03/26/2016 09:04:20 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160860740-KM08 +121210227,E29,12040224,Structure Fire,04/30/2012,04/30/2012,04/30/2012 03:40:15 PM,04/30/2012 03:40:15 PM,04/30/2012 03:40:27 PM,04/30/2012 03:42:38 PM,04/30/2012 03:45:29 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 03:46:10 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Alarm,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",121210227-E29 +130820141,D2,13027413,Structure Fire,03/23/2013,03/23/2013,03/23/2013 11:14:20 AM,03/23/2013 11:16:01 AM,03/23/2013 11:16:26 AM,03/23/2013 11:16:34 AM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Other,03/23/2013 11:21:02 AM,1300 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,false,Alarm,1,CHIEF,5,1,3,Nob Hill,"(37.7956209485751, -122.411654341848)",130820141-D2 +140280149,RC3,14009501,Medical Incident,01/28/2014,01/28/2014,01/28/2014 11:10:38 AM,01/28/2014 11:11:56 AM,01/28/2014 11:14:08 AM,01/28/2014 11:15:18 AM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/28/2014 11:21:22 AM,LOWELL ST/MISSION ST,SF,94112,B09,33,6211,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7114361500207, -122.446383346595)",140280149-RC3 +121800021,AM10,12059786,Medical Incident,06/28/2012,06/27/2012,06/28/2012 01:23:43 AM,06/28/2012 01:24:36 AM,06/28/2012 01:25:27 AM,06/28/2012 01:26:19 AM,06/28/2012 01:27:46 AM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/28/2012 01:57:47 AM,MARKET ST/7TH ST,SF,94103,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",121800021-AM10 +111120158,E15,11036977,Medical Incident,04/22/2011,04/22/2011,04/22/2011 11:08:25 AM,04/22/2011 11:09:37 AM,04/22/2011 11:10:00 AM,04/25/2016 02:04:59 PM,04/22/2011 11:10:49 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 11:14:18 AM,OCEAN AV/PHELAN AV,SF,94112,B09,15,8224,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7230802451635, -122.452331558779)",111120158-E15 +140700227,KM06,14023646,Traffic Collision,03/11/2014,03/11/2014,03/11/2014 02:53:43 PM,03/11/2014 02:56:38 PM,03/11/2014 02:57:20 PM,03/11/2014 02:58:16 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Other,03/11/2014 03:09:47 PM,100 Block of MISSION ST,SAN FRANCISCO,94105,B10,9,2626,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7921507122354, -122.394451120982)",140700227-KM06 +120320312,87,12010691,Medical Incident,02/01/2012,02/01/2012,02/01/2012 08:00:09 PM,02/01/2012 08:02:34 PM,02/01/2012 08:03:29 PM,02/01/2012 08:03:50 PM,02/01/2012 08:17:00 PM,02/01/2012 08:34:03 PM,02/01/2012 09:01:42 PM,Code 2 Transport,02/01/2012 09:24:58 PM,3300 Block of MISSION ST,SF,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",120320312-87 +120550029,KM07,12018035,Medical Incident,02/24/2012,02/23/2012,02/24/2012 03:45:07 AM,02/24/2012 03:45:19 AM,02/24/2012 03:47:15 AM,02/24/2012 03:48:15 AM,02/24/2012 03:50:47 AM,02/24/2012 03:59:03 AM,02/24/2012 04:07:43 AM,Code 2 Transport,02/24/2012 04:49:09 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",120550029-KM07 +140240350,66,14008314,Medical Incident,01/24/2014,01/24/2014,01/24/2014 06:23:07 PM,01/24/2014 06:24:21 PM,01/24/2014 06:24:28 PM,01/24/2014 06:24:43 PM,01/24/2014 06:32:00 PM,01/24/2014 06:53:07 PM,01/24/2014 07:27:04 PM,Code 2 Transport,01/24/2014 08:01:41 PM,1200 Block of QUESADA AVE,SF,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.728626266314, -122.383019514156)",140240350-66 +112270230,E05,11075060,Medical Incident,08/15/2011,08/15/2011,08/15/2011 01:55:13 PM,08/15/2011 01:55:31 PM,08/15/2011 01:56:18 PM,08/15/2011 01:58:45 PM,08/15/2011 02:00:41 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 02:14:37 PM,500 Block of BAKER ST,SF,94117,B05,21,4243,3,3,3,true,,1,ENGINE,2,5,5,Hayes Valley,"(37.775978571838, -122.441325869621)",112270230-E05 +140200348,92,14007005,Medical Incident,01/20/2014,01/20/2014,01/20/2014 09:24:18 PM,01/20/2014 09:25:25 PM,01/20/2014 09:25:55 PM,01/20/2014 09:26:23 PM,01/20/2014 09:29:40 PM,01/20/2014 09:54:35 PM,01/20/2014 10:07:16 PM,Code 2 Transport,01/20/2014 10:42:03 PM,BAYSHORE BL/BLANKEN AV,SF,94134,B10,44,6271,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7122508633321, -122.401914747165)",140200348-92 +140840198,E03,14028323,Medical Incident,03/25/2014,03/25/2014,03/25/2014 02:04:19 PM,03/25/2014 02:06:51 PM,03/25/2014 02:10:09 PM,03/25/2014 02:12:11 PM,03/25/2014 02:17:26 PM,04/25/2016 01:47:34 PM,04/25/2016 01:47:34 PM,Code 2 Transport,03/25/2014 02:35:10 PM,LARKIN ST/MCALLISTER ST,SAN FRANCISCO,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",140840198-E03 +110220355,E32,11007419,Medical Incident,01/22/2011,01/22/2011,01/22/2011 11:45:01 PM,01/22/2011 11:46:28 PM,01/22/2011 11:47:05 PM,01/22/2011 11:48:32 PM,01/22/2011 11:52:55 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/23/2011 12:06:55 AM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",110220355-E32 +113210174,E01,11106618,Medical Incident,11/17/2011,11/17/2011,11/17/2011 11:51:51 AM,11/17/2011 11:52:18 AM,11/17/2011 11:52:32 AM,04/25/2016 02:01:36 PM,11/17/2011 11:56:25 AM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/17/2011 12:16:59 PM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",113210174-E01 +120410316,57,12013776,Medical Incident,02/10/2012,02/10/2012,02/10/2012 06:43:00 PM,02/10/2012 06:44:03 PM,02/10/2012 06:44:14 PM,02/10/2012 06:45:09 PM,02/10/2012 06:48:10 PM,02/10/2012 07:15:54 PM,02/10/2012 07:27:02 PM,Code 2 Transport,02/10/2012 07:56:03 PM,GEARY ST/LARKIN ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",120410316-57 +122910091,AM04,12096271,Medical Incident,10/17/2012,10/17/2012,10/17/2012 09:00:43 AM,10/17/2012 09:02:00 AM,10/17/2012 09:02:14 AM,10/17/2012 09:02:54 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 09:08:10 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",122910091-AM04 +102900221,B10,10092541,Structure Fire,10/17/2010,10/17/2010,10/17/2010 03:47:30 PM,10/17/2010 03:48:07 PM,10/17/2010 03:48:26 PM,10/17/2010 03:49:41 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/17/2010 03:54:56 PM,100 Block of AMES ST,SF,94110,B06,11,5471,3,3,3,false,,1,CHIEF,10,6,8,Mission,"(37.7543400236443, -122.423609999458)",102900221-B10 +102530189,E03,10079933,Medical Incident,09/10/2010,09/10/2010,09/10/2010 12:25:00 PM,09/10/2010 12:26:24 PM,09/10/2010 12:26:45 PM,09/10/2010 12:27:46 PM,09/10/2010 12:29:18 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 12:31:43 PM,OFARRELL ST/VAN NESS AV,SF,94109,B04,3,3162,3,2,2,true,,1,ENGINE,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",102530189-E03 +110100292,78,11003400,Medical Incident,01/10/2011,01/10/2011,01/10/2011 04:20:27 PM,01/10/2011 04:23:16 PM,01/10/2011 04:26:02 PM,01/10/2011 04:27:08 PM,01/10/2011 04:29:54 PM,01/10/2011 04:51:27 PM,01/10/2011 05:18:06 PM,Code 2 Transport,01/10/2011 05:46:11 PM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,1,1,2,true,,1,MEDIC,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",110100292-78 +160852089,62,16033808,Medical Incident,03/25/2016,03/25/2016,03/25/2016 02:10:45 PM,03/25/2016 02:11:31 PM,03/25/2016 02:11:54 PM,03/25/2016 02:12:05 PM,03/25/2016 02:15:21 PM,03/25/2016 02:24:27 PM,03/25/2016 02:36:57 PM,Code 2 Transport,03/25/2016 02:59:54 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160852089-62 +123410336,T06,12113903,Structure Fire,12/06/2012,12/06/2012,12/06/2012 06:50:10 PM,12/06/2012 06:50:10 PM,12/06/2012 06:50:42 PM,12/06/2012 06:51:44 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/06/2012 06:52:37 PM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,3,3,3,false,Alarm,1,TRUCK,3,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",123410336-T06 +140090344,RC3,14003264,Medical Incident,01/09/2014,01/09/2014,01/09/2014 07:15:35 PM,01/09/2014 07:16:18 PM,01/09/2014 07:22:04 PM,01/09/2014 07:23:17 PM,01/09/2014 07:29:25 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 07:52:46 PM,5800 Block of MISSION ST,SF,94112,B09,33,6213,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7090590578532, -122.451746963381)",140090344-RC3 +160510286,AM22,16020329,Medical Incident,02/20/2016,02/19/2016,02/20/2016 02:22:12 AM,02/20/2016 02:22:38 AM,02/20/2016 02:22:57 AM,02/20/2016 02:28:15 AM,02/20/2016 02:28:15 AM,02/20/2016 02:44:56 AM,02/20/2016 02:54:17 AM,Code 2 Transport,02/20/2016 03:27:19 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160510286-AM22 +110280351,72,11009372,Medical Incident,01/28/2011,01/28/2011,01/28/2011 10:47:21 PM,01/28/2011 10:48:17 PM,01/28/2011 10:48:43 PM,01/28/2011 10:49:14 PM,01/28/2011 10:51:05 PM,01/28/2011 11:17:30 PM,01/28/2011 11:24:32 PM,Code 2 Transport,01/29/2011 12:00:11 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",110280351-72 +160373344,55,16014865,Medical Incident,02/06/2016,02/06/2016,02/06/2016 07:23:22 PM,02/06/2016 07:23:22 PM,02/06/2016 07:44:45 PM,02/06/2016 07:44:58 PM,02/06/2016 07:53:51 PM,02/06/2016 08:00:10 PM,02/06/2016 08:32:38 PM,Code 2 Transport,02/06/2016 08:58:42 PM,0 Block of MISSION ST,San Francisco,94105,B03,35,2131,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7934607105517, -122.392791521307)",160373344-55 +120620005,54,12020231,Medical Incident,03/02/2012,03/01/2012,03/02/2012 12:36:37 AM,03/02/2012 12:38:20 AM,03/02/2012 12:38:33 AM,03/02/2012 12:38:39 AM,03/02/2012 12:56:49 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Unable to Locate,03/02/2012 12:58:00 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",120620005-54 +160471201,59,16018876,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:22:14 AM,02/16/2016 10:22:42 AM,02/16/2016 10:23:12 AM,02/16/2016 10:23:32 AM,02/16/2016 10:30:36 AM,02/16/2016 10:54:11 AM,02/16/2016 11:05:08 AM,Code 2 Transport,02/16/2016 11:55:08 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160471201-59 +160081623,62,16003214,Medical Incident,01/08/2016,01/08/2016,01/08/2016 12:11:52 PM,01/08/2016 12:12:15 PM,01/08/2016 12:12:24 PM,01/08/2016 12:12:35 PM,01/08/2016 12:27:17 PM,01/08/2016 12:45:55 PM,01/08/2016 12:52:13 PM,Code 2 Transport,01/08/2016 01:40:00 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160081623-62 +130480017,E43,13016236,Medical Incident,02/17/2013,02/16/2013,02/17/2013 12:52:05 AM,02/17/2013 12:52:41 AM,02/17/2013 12:53:07 AM,02/17/2013 12:54:54 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 12:55:49 AM,4600 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7235480520195, -122.435740203607)",130480017-E43 +122430101,77,12080291,Medical Incident,08/30/2012,08/30/2012,08/30/2012 10:03:01 AM,08/30/2012 10:04:59 AM,08/30/2012 10:06:18 AM,08/30/2012 10:08:50 AM,08/30/2012 10:35:49 AM,08/30/2012 10:37:16 AM,08/30/2012 11:09:19 AM,Code 2 Transport,08/30/2012 11:30:53 AM,0 Block of LA AVANZADA,SF,94131,B08,20,5365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7559493215982, -122.452288235801)",122430101-77 +160662869,55,16026502,Medical Incident,03/06/2016,03/06/2016,03/06/2016 07:56:04 PM,03/06/2016 07:56:04 PM,03/06/2016 07:57:30 PM,03/06/2016 07:57:46 PM,03/06/2016 08:11:52 PM,03/06/2016 08:31:01 PM,03/06/2016 08:44:26 PM,Code 2 Transport,03/06/2016 09:16:00 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160662869-55 +160131875,61,16005200,Medical Incident,01/13/2016,01/13/2016,01/13/2016 12:47:37 PM,01/13/2016 12:49:59 PM,01/13/2016 12:50:21 PM,01/13/2016 12:54:37 PM,01/13/2016 01:00:25 PM,01/13/2016 01:33:01 PM,01/13/2016 01:35:30 PM,Code 2 Transport,01/13/2016 02:26:00 PM,400 Block of BURNETT AVE,San Francisco,94131,B06,24,526,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Twin Peaks,"(37.7548846133242, -122.444053347531)",160131875-61 +121420264,E11,12047307,Medical Incident,05/21/2012,05/21/2012,05/21/2012 04:56:27 PM,05/21/2012 04:58:37 PM,05/21/2012 04:59:08 PM,05/21/2012 05:00:15 PM,05/21/2012 05:01:40 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/21/2012 05:05:12 PM,26TH ST/VALENCIA ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7489065309397, -122.420353712148)",121420264-E11 +160451618,AM02,16018113,Medical Incident,02/14/2016,02/14/2016,02/14/2016 12:49:02 PM,02/14/2016 12:49:02 PM,02/14/2016 12:49:47 PM,02/14/2016 12:50:20 PM,02/14/2016 01:00:02 PM,02/14/2016 01:08:56 PM,02/14/2016 01:30:03 PM,Code 2 Transport,02/14/2016 02:05:39 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160451618-AM02 +112570033,81,11084626,Medical Incident,09/14/2011,09/13/2011,09/14/2011 04:08:50 AM,09/14/2011 04:12:31 AM,09/14/2011 04:12:54 AM,09/14/2011 04:13:10 AM,09/14/2011 04:19:09 AM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,No Merit,09/14/2011 04:31:21 AM,1500 Block of RIVERA ST,SF,94116,B08,40,7457,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7465272204538, -122.482922001832)",112570033-81 +132990073,KM15,13101494,Medical Incident,10/26/2013,10/25/2013,10/26/2013 05:25:45 AM,10/26/2013 05:27:04 AM,10/26/2013 05:28:10 AM,10/26/2013 05:28:45 AM,10/26/2013 05:34:32 AM,10/26/2013 05:43:07 AM,04/25/2016 01:50:05 PM,Code 2 Transport,10/26/2013 06:30:46 AM,300 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7869126924267, -122.409756223507)",132990073-KM15 +121350056,E07,12044796,Medical Incident,05/14/2012,05/13/2012,05/14/2012 07:35:51 AM,05/14/2012 07:36:58 AM,05/14/2012 07:37:14 AM,05/14/2012 07:38:05 AM,05/14/2012 07:41:54 AM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/14/2012 07:49:04 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",121350056-E07 +123070026,94,12101876,Medical Incident,11/02/2012,11/01/2012,11/02/2012 03:11:40 AM,11/02/2012 03:12:56 AM,11/02/2012 03:13:11 AM,11/02/2012 03:13:24 AM,11/02/2012 03:21:01 AM,11/02/2012 03:36:36 AM,11/02/2012 03:46:32 AM,Code 2 Transport,11/02/2012 04:05:11 AM,HEMLOCK ST/POLK ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",123070026-94 +120550330,B06,12018288,Traffic Collision,02/24/2012,02/24/2012,02/24/2012 09:08:44 PM,02/24/2012 09:09:45 PM,02/24/2012 09:10:06 PM,02/24/2012 09:11:06 PM,02/24/2012 09:15:09 PM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 10:34:53 PM,200 Block of GENEVA AVE,SF,94112,B09,26,8261,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",120550330-B06 +130500199,79,13017023,Medical Incident,02/19/2013,02/19/2013,02/19/2013 05:00:17 PM,02/19/2013 05:00:24 PM,02/19/2013 05:01:12 PM,02/19/2013 05:01:31 PM,02/19/2013 05:08:33 PM,02/19/2013 05:23:14 PM,02/19/2013 05:36:27 PM,Code 2 Transport,02/19/2013 06:02:40 PM,200 Block of TRUMBULL ST,SF,94112,B09,32,5682,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7308771945638, -122.42503204848)",130500199-79 +123520152,E38,12117713,Medical Incident,12/17/2012,12/17/2012,12/17/2012 10:58:37 AM,12/17/2012 10:59:53 AM,12/17/2012 11:00:14 AM,12/17/2012 11:01:05 AM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 11:04:02 AM,2700 Block of SACRAMENTO ST,SF,94115,B04,38,3652,E,E,3,false,Potentially Life-Threatening,1,ENGINE,4,4,2,Pacific Heights,"(37.7893692243324, -122.438150656399)",123520152-E38 +160473345,AM12,16019088,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:49:54 PM,02/16/2016 07:51:10 PM,02/16/2016 07:51:47 PM,02/16/2016 07:52:38 PM,02/16/2016 08:00:43 PM,02/16/2016 08:23:25 PM,02/16/2016 08:45:28 PM,Code 2 Transport,02/16/2016 09:12:14 PM,2400 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7770932891379, -122.450891105827)",160473345-AM12 +120510167,E33,12016858,Structure Fire,02/20/2012,02/20/2012,02/20/2012 01:29:52 PM,02/20/2012 01:29:52 PM,02/20/2012 01:30:23 PM,02/20/2012 01:31:15 PM,02/20/2012 01:32:47 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 01:33:28 PM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",120510167-E33 +122150101,E06,12071292,Medical Incident,08/02/2012,08/02/2012,08/02/2012 09:55:16 AM,08/02/2012 09:55:54 AM,08/02/2012 09:56:40 AM,08/02/2012 09:58:17 AM,08/02/2012 10:00:42 AM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/02/2012 10:06:53 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",122150101-E06 +123580260,T18,12119933,Structure Fire,12/23/2012,12/23/2012,12/23/2012 06:17:49 PM,12/23/2012 06:18:06 PM,12/23/2012 06:18:15 PM,12/23/2012 06:18:40 PM,12/23/2012 06:21:29 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 06:35:26 PM,1600 Block of 41ST AVE,SF,94122,B08,23,7632,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7559877084081, -122.500308008266)",123580260-T18 +160752746,58,16029796,Medical Incident,03/15/2016,03/15/2016,03/15/2016 04:46:09 PM,03/15/2016 04:46:22 PM,03/15/2016 04:46:57 PM,03/15/2016 04:47:19 PM,03/15/2016 04:51:58 PM,03/15/2016 05:08:03 PM,03/15/2016 05:25:03 PM,Code 2 Transport,03/15/2016 06:05:07 PM,500 Block of DIVISADERO ST,San Francisco,94117,B05,21,4145,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7745125726593, -122.437820869473)",160752746-58 +160211900,64,16008391,Medical Incident,01/21/2016,01/21/2016,01/21/2016 01:19:38 PM,01/21/2016 01:20:53 PM,01/21/2016 01:21:16 PM,01/21/2016 01:21:24 PM,01/21/2016 01:27:42 PM,01/21/2016 01:46:08 PM,01/21/2016 02:01:48 PM,Code 2 Transport,01/21/2016 02:50:20 PM,200 Block of MARKET ST,San Francisco,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7926791171072, -122.396853499969)",160211900-64 +122720165,T02,12089731,Alarms,09/28/2012,09/28/2012,09/28/2012 01:22:08 PM,09/28/2012 01:23:15 PM,09/28/2012 01:23:30 PM,09/28/2012 01:25:00 PM,09/28/2012 01:27:22 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/28/2012 01:33:43 PM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Alarm,1,TRUCK,3,1,3,North Beach,"(37.7980228452184, -122.405863212632)",122720165-T02 +111090307,75,11036109,Traffic Collision,04/19/2011,04/19/2011,04/19/2011 07:37:33 PM,04/19/2011 07:38:45 PM,04/19/2011 07:38:54 PM,04/19/2011 07:39:59 PM,04/19/2011 07:44:37 PM,04/19/2011 07:58:49 PM,04/19/2011 08:23:52 PM,Code 2 Transport,04/19/2011 08:43:46 PM,GOUGH ST/HAIGHT ST,SF,94102,B02,36,3311,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7731517441996, -122.422229369585)",111090307-75 +160201352,61,16007971,Medical Incident,01/20/2016,01/20/2016,01/20/2016 10:44:29 AM,01/20/2016 10:45:52 AM,01/20/2016 10:46:39 AM,01/20/2016 10:46:46 AM,01/20/2016 10:52:28 AM,01/20/2016 10:58:18 AM,01/20/2016 11:09:22 AM,Code 2 Transport,01/20/2016 12:05:32 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",160201352-61 +160192628,84,16007721,Medical Incident,01/19/2016,01/19/2016,01/19/2016 04:51:27 PM,01/19/2016 04:53:13 PM,01/19/2016 04:53:28 PM,01/19/2016 04:53:43 PM,01/19/2016 05:00:40 PM,01/19/2016 05:41:13 PM,01/19/2016 05:50:40 PM,Code 2 Transport,01/19/2016 06:32:43 PM,2500 Block of 33RD AVE,San Francisco,94116,B08,18,7546,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7395892026861, -122.490566076286)",160192628-84 +123560360,D2,12119306,Structure Fire,12/21/2012,12/21/2012,12/21/2012 09:37:44 PM,12/21/2012 09:38:21 PM,12/21/2012 09:38:35 PM,12/21/2012 09:39:03 PM,12/21/2012 09:43:44 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/21/2012 09:45:10 PM,HOWARD ST/7TH ST,SF,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,9,2,6,South of Market,"(37.7779770860913, -122.409387007126)",123560360-D2 +132590164,B01,13087595,Alarms,09/16/2013,09/16/2013,09/16/2013 11:51:30 AM,09/16/2013 11:52:00 AM,09/16/2013 11:52:30 AM,09/16/2013 11:53:20 AM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Other,09/16/2013 12:00:47 PM,500 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7904732830605, -122.406742211994)",132590164-B01 +160323802,AM24,16012789,Medical Incident,02/01/2016,02/01/2016,02/01/2016 10:58:22 PM,02/01/2016 10:59:13 PM,02/01/2016 10:59:25 PM,02/01/2016 10:59:56 PM,02/01/2016 11:03:18 PM,02/01/2016 11:12:24 PM,02/01/2016 11:25:44 PM,Code 2 Transport,02/01/2016 11:53:31 PM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",160323802-AM24 +140070290,E08,14002581,Alarms,01/07/2014,01/07/2014,01/07/2014 06:27:00 PM,01/07/2014 06:27:01 PM,01/07/2014 06:29:17 PM,01/07/2014 06:29:17 PM,01/07/2014 06:29:24 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Fire,01/07/2014 06:29:41 PM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7779770860913, -122.409387007126)",140070290-E08 +140730340,B07,14024778,Alarms,03/14/2014,03/14/2014,03/14/2014 07:08:37 PM,03/14/2014 07:09:51 PM,03/14/2014 07:10:04 PM,03/14/2014 07:11:35 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Fire,03/14/2014 07:14:30 PM,0 Block of PARKER AVE,SAN FRANCISCO,94118,B07,10,4436,3,3,3,false,Alarm,1,CHIEF,3,7,2,Presidio Heights,"(37.7851338249754, -122.454765226355)",140730340-B07 +160863213,88,16034316,Medical Incident,03/26/2016,03/26/2016,03/26/2016 07:31:47 PM,03/26/2016 07:33:50 PM,03/26/2016 07:35:00 PM,03/26/2016 07:40:02 PM,03/26/2016 07:43:15 PM,03/26/2016 07:59:46 PM,03/26/2016 08:06:04 PM,Code 2 Transport,03/26/2016 08:31:15 PM,100 Block of HANCOCK ST,San Francisco,94114,B06,6,5436,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7603452099153, -122.431611636471)",160863213-88 +140850194,E07,14028637,Medical Incident,03/26/2014,03/26/2014,03/26/2014 01:19:28 PM,03/26/2014 01:20:34 PM,03/26/2014 01:24:27 PM,03/26/2014 01:24:27 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/26/2014 01:25:11 PM,2800 Block of FOLSOM ST,SAN FRANCISCO,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,6,9,Mission,"(37.7516999794245, -122.414074863195)",140850194-E07 +120370007,E16,12012209,Medical Incident,02/06/2012,02/05/2012,02/06/2012 12:17:47 AM,02/06/2012 12:19:12 AM,02/06/2012 12:26:57 AM,02/06/2012 12:28:44 AM,02/06/2012 12:30:03 AM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/06/2012 12:34:48 AM,0 Block of MALLORCA WAY,SF,94123,B04,16,3554,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8021383459598, -122.437516019025)",120370007-E16 +120500228,65,12016568,Medical Incident,02/19/2012,02/19/2012,02/19/2012 04:08:35 PM,02/19/2012 04:09:43 PM,02/19/2012 04:10:00 PM,02/19/2012 04:10:33 PM,02/19/2012 04:24:16 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Patient Declined Transport,02/19/2012 05:07:42 PM,1100 Block of GREAT HWY,SF,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",120500228-65 +111190154,E03,11039228,Medical Incident,04/29/2011,04/29/2011,04/29/2011 12:54:56 PM,04/29/2011 12:55:30 PM,04/29/2011 12:56:49 PM,04/29/2011 12:58:03 PM,04/29/2011 12:58:56 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 01:10:47 PM,900 Block of LARKIN ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7863251027379, -122.418201870328)",111190154-E03 +160833328,52,16033084,Traffic Collision,03/23/2016,03/23/2016,03/23/2016 06:27:23 PM,03/23/2016 06:28:14 PM,03/23/2016 06:28:33 PM,03/23/2016 06:28:40 PM,03/23/2016 06:39:10 PM,03/23/2016 06:46:55 PM,03/23/2016 07:17:44 PM,Code 2 Transport,03/23/2016 07:45:48 PM,CHESTNUT ST/FRANKLIN ST,San Francisco,94123,B04,16,3235,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8020718699266, -122.426377344364)",160833328-52 +123100320,87,12103243,Medical Incident,11/05/2012,11/05/2012,11/05/2012 07:10:33 PM,11/05/2012 07:12:43 PM,11/05/2012 07:13:23 PM,11/05/2012 07:13:32 PM,11/05/2012 07:17:02 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 07:27:09 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123100320-87 +130270261,E33,13009368,Medical Incident,01/27/2013,01/27/2013,01/27/2013 04:45:20 PM,01/27/2013 04:47:08 PM,01/27/2013 04:48:35 PM,01/27/2013 04:49:51 PM,01/27/2013 04:55:17 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/27/2013 05:15:03 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",130270261-E33 +130230070,KM04,13007850,Medical Incident,01/23/2013,01/22/2013,01/23/2013 07:25:59 AM,01/23/2013 07:27:44 AM,01/23/2013 07:28:24 AM,01/23/2013 07:29:36 AM,01/23/2013 07:38:58 AM,01/23/2013 07:53:56 AM,01/23/2013 08:05:41 AM,Code 2 Transport,01/23/2013 08:42:44 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",130230070-KM04 +122890180,E36,12095613,Medical Incident,10/15/2012,10/15/2012,10/15/2012 12:46:01 PM,10/15/2012 12:47:07 PM,10/15/2012 12:47:38 PM,10/15/2012 12:49:04 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 12:52:04 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7760099210785, -122.412889415461)",122890180-E36 +132160219,E28,13073020,Traffic Collision,08/04/2013,08/04/2013,08/04/2013 04:41:32 PM,08/04/2013 04:41:50 PM,08/04/2013 04:42:16 PM,08/04/2013 04:43:31 PM,08/04/2013 04:45:50 PM,08/04/2013 05:14:09 PM,04/25/2016 01:51:28 PM,Other,08/04/2013 05:54:30 PM,500 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8062966202775, -122.416265019979)",132160219-E28 +133140038,67,13106636,Medical Incident,11/10/2013,11/09/2013,11/10/2013 02:42:32 AM,11/10/2013 02:44:30 AM,11/10/2013 02:44:43 AM,11/10/2013 02:44:51 AM,11/10/2013 03:01:16 AM,11/10/2013 03:29:25 AM,11/10/2013 03:36:59 AM,Code 2 Transport,11/10/2013 04:05:46 AM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",133140038-67 +160841900,75,16033384,Medical Incident,03/24/2016,03/24/2016,03/24/2016 12:49:27 PM,03/24/2016 12:50:59 PM,03/24/2016 12:52:52 PM,03/24/2016 12:53:06 PM,03/24/2016 01:04:50 PM,03/24/2016 01:16:50 PM,03/24/2016 01:33:12 PM,Code 2 Transport,03/24/2016 02:14:06 PM,200 Block of FUNSTON AVE,Fort Mason,94118,B99,51,3344,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.783539430447, -122.471914385852)",160841900-75 +131850177,E40,13063053,Electrical Hazard,07/04/2013,07/04/2013,07/04/2013 01:08:05 PM,07/04/2013 01:09:51 PM,07/04/2013 01:10:06 PM,07/04/2013 01:11:02 PM,07/04/2013 01:13:14 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Fire,07/04/2013 01:36:10 PM,14TH AV/TARAVAL ST,SF,94116,B08,40,7355,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.743289169982, -122.470234912852)",131850177-E40 +111090303,68,11036105,Medical Incident,04/19/2011,04/19/2011,04/19/2011 07:19:48 PM,04/19/2011 07:21:25 PM,04/19/2011 07:21:34 PM,04/19/2011 07:23:08 PM,04/19/2011 07:40:07 PM,04/19/2011 07:59:26 PM,04/19/2011 08:22:45 PM,Code 2 Transport,04/19/2011 08:44:57 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",111090303-68 +160860139,75,16034038,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:56:55 AM,03/26/2016 12:58:26 AM,03/26/2016 12:58:34 AM,03/26/2016 12:58:40 AM,03/26/2016 01:07:57 AM,03/26/2016 01:31:49 AM,03/26/2016 01:47:48 AM,Code 2 Transport,03/26/2016 02:24:39 AM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160860139-75 +160463496,AM20,16018679,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:48:12 PM,02/15/2016 08:48:50 PM,02/15/2016 08:49:21 PM,02/15/2016 08:50:24 PM,02/15/2016 09:02:25 PM,02/15/2016 09:02:27 PM,02/15/2016 09:22:27 PM,Code 2 Transport,02/15/2016 09:45:40 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",160463496-AM20 +140020072,B02,14000579,Alarms,01/02/2014,01/01/2014,01/02/2014 06:38:44 AM,01/02/2014 06:41:31 AM,01/02/2014 06:42:09 AM,01/02/2014 06:43:37 AM,01/02/2014 06:47:52 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Fire,01/02/2014 06:56:24 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",140020072-B02 +160730222,60,16028857,Medical Incident,03/13/2016,03/12/2016,03/13/2016 01:48:44 AM,03/13/2016 01:48:44 AM,03/13/2016 01:49:05 AM,03/13/2016 01:49:24 AM,03/13/2016 01:58:34 AM,03/13/2016 03:15:27 AM,03/13/2016 03:21:53 AM,Code 2 Transport,03/13/2016 04:12:20 AM,400 Block of 7TH AV,San Francisco,94118,B07,31,7131,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800008159621, -122.46535084744)",160730222-60 +132390175,82,13080613,Structure Fire,08/27/2013,08/27/2013,08/27/2013 11:58:23 AM,08/27/2013 11:59:49 AM,08/27/2013 12:00:59 PM,08/27/2013 12:01:27 PM,08/27/2013 12:07:12 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 12:29:00 PM,0 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,true,Fire,1,MEDIC,5,6,9,Bernal Heights,"(37.7446306934522, -122.419200129034)",132390175-82 +122590026,87,12085487,Traffic Collision,09/15/2012,09/14/2012,09/15/2012 01:06:22 AM,09/15/2012 01:07:30 AM,09/15/2012 01:09:14 AM,09/15/2012 01:09:19 AM,09/15/2012 01:10:52 AM,09/15/2012 01:25:30 AM,09/15/2012 01:30:01 AM,Code 2 Transport,09/15/2012 02:01:05 AM,GRANT AV/BUSH ST,SF,94108,B01,13,1315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905652365323, -122.405573746363)",122590026-87 +121130092,B01,12037445,Alarms,04/22/2012,04/22/2012,04/22/2012 08:01:36 AM,04/22/2012 08:04:03 AM,04/22/2012 08:04:43 AM,04/22/2012 08:06:39 AM,04/22/2012 08:10:54 AM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 08:14:41 AM,200 Block of CLAY ST,SF,94111,B01,13,1133,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7951839313126, -122.398551121673)",121130092-B01 +121180076,66,12039003,Medical Incident,04/27/2012,04/26/2012,04/27/2012 07:08:06 AM,04/27/2012 07:10:36 AM,04/27/2012 07:10:51 AM,04/27/2012 07:11:31 AM,04/27/2012 07:32:28 AM,04/27/2012 07:46:06 AM,04/27/2012 08:17:38 AM,Code 2 Transport,04/27/2012 08:40:49 AM,MARINA BL/FILLMORE ST,SF,94123,B04,16,3561,3,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8064017799399, -122.437461293752)",121180076-66 +160062362,74,16002465,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:41:51 PM,01/06/2016 03:42:10 PM,01/06/2016 03:42:36 PM,01/06/2016 03:42:47 PM,01/06/2016 03:48:00 PM,01/06/2016 04:08:50 PM,01/06/2016 04:19:12 PM,Code 2 Transport,01/06/2016 04:55:41 PM,1300 Block of 20TH AV,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7625869727053, -122.478057316831)",160062362-74 +130620072,KM07,13020682,Medical Incident,03/03/2013,03/02/2013,03/03/2013 05:05:38 AM,03/03/2013 05:06:36 AM,03/03/2013 05:06:55 AM,03/03/2013 05:08:05 AM,03/03/2013 05:16:00 AM,03/03/2013 05:32:07 AM,03/03/2013 05:43:40 AM,Code 3 Transport,03/03/2013 06:26:35 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",130620072-KM07 +140370302,KM10,14012615,Medical Incident,02/06/2014,02/06/2014,02/06/2014 06:28:30 PM,02/06/2014 06:30:04 PM,02/06/2014 06:30:25 PM,02/06/2014 06:30:53 PM,02/06/2014 06:43:29 PM,02/06/2014 06:51:45 PM,04/25/2016 01:48:21 PM,Code 2 Transport,02/06/2014 07:13:22 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",140370302-KM10 +160760741,73,16030034,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:18:09 AM,03/16/2016 08:18:20 AM,03/16/2016 08:18:35 AM,03/16/2016 08:18:43 AM,03/16/2016 08:22:05 AM,03/16/2016 08:40:12 AM,03/16/2016 09:00:04 AM,Code 2 Transport,03/16/2016 09:58:12 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160760741-73 +132720324,E41,13092574,Medical Incident,09/29/2013,09/29/2013,09/29/2013 08:05:47 PM,09/29/2013 08:08:01 PM,09/29/2013 08:08:36 PM,09/29/2013 08:09:17 PM,09/29/2013 08:13:01 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 08:22:02 PM,900 Block of MASON ST,SF,94108,B01,41,1414,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",132720324-E41 +102930045,E39,10093335,Medical Incident,10/20/2010,10/19/2010,10/20/2010 06:22:37 AM,10/20/2010 06:24:53 AM,10/20/2010 06:25:45 AM,10/20/2010 06:29:27 AM,10/20/2010 06:32:29 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 06:33:44 AM,700 Block of SANTIAGO ST,SF,94116,B08,40,7416,3,3,3,true,,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7449962176955, -122.475267384046)",102930045-E39 +113300051,77,11109328,Medical Incident,11/26/2011,11/25/2011,11/26/2011 06:15:48 AM,11/26/2011 06:16:45 AM,11/26/2011 06:17:29 AM,04/25/2016 02:01:28 PM,11/26/2011 06:18:43 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/26/2011 06:30:00 AM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,1,1,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",113300051-77 +121590351,E16,12052761,Medical Incident,06/07/2012,06/07/2012,06/07/2012 11:25:47 PM,06/07/2012 11:26:30 PM,06/07/2012 11:26:50 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/07/2012 11:29:32 PM,2200 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.8002979847002, -122.439895933785)",121590351-E16 +110930059,E05,11030771,Medical Incident,04/03/2011,04/02/2011,04/03/2011 04:30:14 AM,04/03/2011 04:30:39 AM,04/03/2011 04:31:10 AM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 04:32:21 AM,1100 Block of STEINER ST,SF,94115,B05,5,3625,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7798293492878, -122.433621914349)",110930059-E05 +132840363,87,13096777,Medical Incident,10/11/2013,10/11/2013,10/11/2013 10:35:37 PM,10/11/2013 10:39:03 PM,10/11/2013 10:42:50 PM,10/11/2013 10:43:02 PM,10/11/2013 10:50:09 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,No Merit,10/11/2013 10:52:41 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,E,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",132840363-87 +122830065,E08,12093557,Structure Fire,10/09/2012,10/08/2012,10/09/2012 07:49:07 AM,10/09/2012 07:50:50 AM,10/09/2012 07:51:16 AM,10/09/2012 07:53:02 AM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 07:59:08 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,10,3,6,South of Market,"(37.7807144867659, -122.408483722327)",122830065-E08 +113540079,E22,11117453,Medical Incident,12/20/2011,12/19/2011,12/20/2011 06:37:15 AM,12/20/2011 06:39:33 AM,12/20/2011 06:41:05 AM,12/20/2011 06:43:10 AM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,Other,12/20/2011 06:43:48 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,true,,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",113540079-E22 +131640352,66,13055852,Traffic Collision,06/13/2013,06/13/2013,06/13/2013 08:35:56 PM,06/13/2013 08:36:05 PM,06/13/2013 08:36:20 PM,06/13/2013 08:37:19 PM,06/13/2013 08:41:29 PM,06/13/2013 08:53:18 PM,06/13/2013 09:03:12 PM,Code 2 Transport,06/13/2013 08:36:21 PM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",131640352-66 +160473209,64,16019073,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:08:00 PM,02/16/2016 07:11:08 PM,02/16/2016 07:11:19 PM,02/16/2016 07:11:28 PM,02/16/2016 07:40:00 PM,02/16/2016 07:41:04 PM,02/16/2016 07:45:35 PM,Code 2 Transport,02/16/2016 08:15:30 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160473209-64 +160323267,76,16012734,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:05:09 PM,02/01/2016 08:05:09 PM,02/01/2016 08:05:40 PM,02/01/2016 08:05:52 PM,02/01/2016 08:17:01 PM,02/01/2016 08:30:47 PM,02/01/2016 08:38:22 PM,Code 2 Transport,02/01/2016 08:57:31 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160323267-76 +132120237,85,13071707,Medical Incident,07/31/2013,07/31/2013,07/31/2013 03:48:17 PM,07/31/2013 03:48:29 PM,07/31/2013 03:48:56 PM,07/31/2013 03:49:06 PM,07/31/2013 03:58:45 PM,07/31/2013 04:20:13 PM,07/31/2013 04:41:17 PM,Code 2 Transport,07/31/2013 05:26:37 PM,CHESTNUT ST/FILLMORE ST,SF,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.800814143599, -122.436273910168)",132120237-85 +140290014,67,14009747,Medical Incident,01/29/2014,01/28/2014,01/29/2014 12:50:48 AM,01/29/2014 12:55:12 AM,01/29/2014 12:57:35 AM,01/29/2014 12:57:41 AM,01/29/2014 01:08:32 AM,01/29/2014 01:21:02 AM,01/29/2014 01:23:29 AM,Code 2 Transport,01/29/2014 01:33:45 AM,1400 Block of POWELL ST,SF,94133,B01,2,1353,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",140290014-67 +122520167,T02,12083319,Alarms,09/08/2012,09/08/2012,09/08/2012 01:15:09 PM,09/08/2012 01:15:59 PM,09/08/2012 01:16:34 PM,09/08/2012 01:18:57 PM,09/08/2012 01:21:22 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/08/2012 01:25:40 PM,200 Block of BAY ST,SF,94133,B01,28,1341,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8058720561285, -122.411119801648)",122520167-T02 +110830432,83,11027495,Traffic Collision,03/24/2011,03/24/2011,03/24/2011 10:33:54 PM,03/24/2011 10:34:55 PM,03/24/2011 10:35:17 PM,03/24/2011 10:35:40 PM,03/24/2011 10:41:16 PM,03/24/2011 10:46:32 PM,03/24/2011 10:55:53 PM,Other,03/24/2011 11:52:34 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,MEDIC,3,1,3,Tenderloin,"(37.7863257938335, -122.409145791731)",110830432-83 +111460280,KM11,11048567,Medical Incident,05/26/2011,05/26/2011,05/26/2011 06:42:54 PM,05/26/2011 06:51:45 PM,05/26/2011 06:52:32 PM,05/26/2011 06:52:40 PM,05/26/2011 07:02:02 PM,05/26/2011 07:17:25 PM,05/26/2011 07:38:42 PM,Code 2 Transport,05/26/2011 08:09:47 PM,100 Block of BRAZIL AVE,SF,94112,B09,43,6127,1,1,2,false,,1,PRIVATE,1,9,11,Excelsior,"(37.7240773628608, -122.433668179488)",111460280-KM11 +140150271,KM02,14005203,Medical Incident,01/15/2014,01/15/2014,01/15/2014 04:43:41 PM,01/15/2014 04:44:20 PM,01/15/2014 04:44:46 PM,01/15/2014 04:45:25 PM,01/15/2014 04:51:46 PM,01/15/2014 04:56:22 PM,01/15/2014 05:14:24 PM,Code 2 Transport,01/15/2014 05:37:08 PM,800 Block of LARKIN ST,SF,94109,B04,3,1642,,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7858799812295, -122.417973829928)",140150271-KM02 +112200090,E03,11072623,Medical Incident,08/08/2011,08/08/2011,08/08/2011 09:23:16 AM,08/08/2011 09:24:06 AM,08/08/2011 09:24:42 AM,08/08/2011 09:25:48 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 09:28:55 AM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,4,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",112200090-E03 +160620695,61,16024598,Medical Incident,03/02/2016,03/02/2016,03/02/2016 08:07:21 AM,03/02/2016 08:08:54 AM,03/02/2016 08:09:10 AM,03/02/2016 08:09:32 AM,03/02/2016 08:20:46 AM,03/02/2016 08:42:50 AM,03/02/2016 09:13:02 AM,Code 2 Transport,03/02/2016 09:51:14 AM,1200 Block of MARINER DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8291421801997, -122.374351232073)",160620695-61 +113410285,T13,11113125,Medical Incident,12/07/2011,12/07/2011,12/07/2011 04:26:48 PM,12/07/2011 04:27:36 PM,12/07/2011 04:28:28 PM,04/25/2016 02:01:16 PM,12/07/2011 04:31:40 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/07/2011 04:31:52 PM,MONTGOMERY ST/CLAY ST,SF,94111,B01,13,1233,3,E,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7946662813797, -122.403139296426)",113410285-T13 +123410017,E36,12113638,Structure Fire,12/06/2012,12/05/2012,12/06/2012 12:33:03 AM,12/06/2012 12:33:03 AM,12/06/2012 12:33:37 AM,12/06/2012 12:34:25 AM,12/06/2012 12:36:32 AM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Fire,12/06/2012 12:37:30 AM,200 Block of LARKIN ST,SF,94102,B02,36,1645,3,3,3,false,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7800186669161, -122.416926174949)",123410017-E36 +122760259,E03,12091182,Structure Fire,10/02/2012,10/02/2012,10/02/2012 02:21:59 PM,10/02/2012 02:21:59 PM,10/02/2012 02:22:17 PM,10/02/2012 02:22:29 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 02:22:54 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,Alarm,1,ENGINE,3,1,6,South of Market,"(37.7857439877905, -122.405831012392)",122760259-E03 +112270399,T02,11075206,Alarms,08/15/2011,08/15/2011,08/15/2011 10:09:21 PM,08/15/2011 10:10:43 PM,08/15/2011 10:10:51 PM,08/15/2011 10:12:37 PM,08/15/2011 10:14:04 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 10:18:16 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",112270399-T02 +123320129,T03,12110304,Structure Fire,11/27/2012,11/27/2012,11/27/2012 11:07:05 AM,11/27/2012 11:07:05 AM,11/27/2012 11:07:19 AM,11/27/2012 11:07:35 AM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/27/2012 11:11:08 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",123320129-T03 +160740048,71,16029158,Medical Incident,03/14/2016,03/13/2016,03/14/2016 12:23:50 AM,03/14/2016 12:23:50 AM,03/14/2016 12:23:50 AM,03/14/2016 12:23:50 AM,03/14/2016 12:23:50 AM,03/14/2016 12:31:33 AM,03/14/2016 12:38:13 AM,Code 2 Transport,03/14/2016 01:31:30 AM,500 Block of HAIGHT ST,San Francisco,94117,B99,6,3633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7720569992233, -122.431274062525)",160740048-71 +112620327,72,11086571,Medical Incident,09/19/2011,09/19/2011,09/19/2011 05:36:51 PM,09/19/2011 05:38:00 PM,09/19/2011 05:38:35 PM,09/19/2011 05:38:41 PM,09/19/2011 05:41:58 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Patient Declined Transport,09/19/2011 06:11:36 PM,0 Block of MUSIC CONCOURSE DR,SF,94118,B07,22,7744,3,2,2,true,,1,MEDIC,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",112620327-72 +160082871,KM01,16003333,Medical Incident,01/08/2016,01/08/2016,01/08/2016 05:32:09 PM,01/08/2016 05:33:19 PM,01/08/2016 05:33:39 PM,01/08/2016 05:34:12 PM,01/08/2016 05:38:21 PM,01/08/2016 05:47:26 PM,01/08/2016 06:31:28 PM,Code 2 Transport,01/08/2016 07:00:38 PM,900 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6361,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7318146531856, -122.403993066647)",160082871-KM01 +160030493,52,16001054,Medical Incident,01/03/2016,01/02/2016,01/03/2016 04:23:19 AM,01/03/2016 04:23:19 AM,01/03/2016 04:30:57 AM,01/03/2016 04:30:57 AM,01/03/2016 04:43:45 AM,01/03/2016 04:51:36 AM,01/03/2016 05:05:23 AM,Code 2 Transport,01/03/2016 05:40:09 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160030493-52 +123040061,89,12100794,Medical Incident,10/30/2012,10/29/2012,10/30/2012 07:42:08 AM,10/30/2012 07:43:33 AM,10/30/2012 07:45:29 AM,10/30/2012 07:46:05 AM,10/30/2012 08:09:24 AM,10/30/2012 08:31:31 AM,10/30/2012 09:00:44 AM,Code 2 Transport,10/30/2012 09:38:46 AM,0 Block of OCEAN AVE,SF,94112,B09,43,6121,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.723809628217, -122.436744444673)",123040061-89 +120460185,T01,12015297,Structure Fire,02/15/2012,02/15/2012,02/15/2012 01:08:11 PM,02/15/2012 01:08:11 PM,02/15/2012 01:08:45 PM,02/15/2012 01:10:27 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 01:12:38 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",120460185-T01 +112320233,T02,11076636,Alarms,08/20/2011,08/20/2011,08/20/2011 03:55:03 PM,08/20/2011 03:55:59 PM,08/20/2011 03:56:19 PM,08/20/2011 03:58:12 PM,08/20/2011 04:02:42 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 04:03:25 PM,1100 Block of VALLEJO ST,SF,94109,B01,41,1512,3,3,3,false,,1,TRUCK,3,1,3,Nob Hill,"(37.7976997248557, -122.416217993782)",112320233-T02 +160423564,85,16017036,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:03:54 PM,02/11/2016 09:06:05 PM,02/11/2016 09:06:34 PM,02/11/2016 09:06:44 PM,02/11/2016 09:14:46 PM,02/11/2016 09:28:40 PM,02/11/2016 09:35:33 PM,Code 2 Transport,02/11/2016 09:54:51 PM,TAYLOR ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160423564-85 +160120542,52,16004671,Medical Incident,01/12/2016,01/11/2016,01/12/2016 07:06:14 AM,01/12/2016 07:06:46 AM,01/12/2016 07:11:14 AM,01/12/2016 07:11:22 AM,01/12/2016 07:27:43 AM,01/12/2016 07:48:55 AM,01/12/2016 08:02:32 AM,Code 2 Transport,01/12/2016 08:25:01 AM,500 Block of 5TH ST,San Francisco,94107,B07,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160120542-52 +120110065,KM05,12003723,Medical Incident,01/11/2012,01/11/2012,01/11/2012 08:10:55 AM,01/11/2012 08:12:17 AM,01/11/2012 08:12:31 AM,01/11/2012 08:13:57 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 08:14:28 AM,0 Block of ATHENS ST,SF,94112,B09,43,6146,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,9,11,Excelsior,"(37.7272366570079, -122.424157740245)",120110065-KM05 +132810134,E11,13095561,Medical Incident,10/08/2013,10/08/2013,10/08/2013 10:14:42 AM,10/08/2013 10:15:13 AM,10/08/2013 10:15:33 AM,10/08/2013 10:16:02 AM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/08/2013 10:20:32 AM,1500 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7485117389211, -122.420385246318)",132810134-E11 +130020150,E41,13000609,Medical Incident,01/02/2013,01/02/2013,01/02/2013 10:53:44 AM,01/02/2013 10:55:21 AM,01/02/2013 10:58:09 AM,01/02/2013 10:59:29 AM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 11:09:06 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",130020150-E41 +160741032,61,16029258,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:38:20 AM,03/14/2016 09:39:38 AM,03/14/2016 09:40:08 AM,03/14/2016 09:40:24 AM,03/14/2016 09:45:31 AM,03/14/2016 10:03:50 AM,03/14/2016 10:10:18 AM,Code 2 Transport,03/14/2016 10:41:21 AM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7546409372119, -122.418601779487)",160741032-61 +122410013,B07,12079628,Medical Incident,08/28/2012,08/27/2012,08/28/2012 12:53:26 AM,08/28/2012 12:54:12 AM,08/28/2012 12:54:31 AM,08/28/2012 12:57:03 AM,08/28/2012 12:57:25 AM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Other,08/28/2012 01:02:37 AM,10TH AV/GEARY BL,SF,94118,B07,31,7141,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,7,1,Inner Richmond,"(37.780822030508, -122.468563870264)",122410013-B07 +121200275,KM12,12039918,Medical Incident,04/29/2012,04/29/2012,04/29/2012 05:10:21 PM,04/29/2012 05:12:53 PM,04/29/2012 05:18:57 PM,04/29/2012 05:23:13 PM,04/29/2012 05:24:26 PM,04/29/2012 05:35:14 PM,04/29/2012 05:38:05 PM,Code 2 Transport,04/29/2012 05:58:38 PM,1300 Block of MISSION ST,SF,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7757095884786, -122.41525748686)",121200275-KM12 +140020302,72,14000772,Medical Incident,01/02/2014,01/02/2014,01/02/2014 04:34:34 PM,01/02/2014 04:35:11 PM,01/02/2014 04:35:43 PM,01/02/2014 04:36:25 PM,01/02/2014 04:47:42 PM,01/02/2014 05:02:48 PM,01/02/2014 05:05:03 PM,Code 2 Transport,01/02/2014 05:26:46 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",140020302-72 +132680254,E03,13091037,Medical Incident,09/25/2013,09/25/2013,09/25/2013 03:33:05 PM,09/25/2013 03:34:26 PM,09/25/2013 03:35:24 PM,04/25/2016 01:50:35 PM,09/25/2013 03:37:44 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 03:47:32 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",132680254-E03 +112270177,AM06,11075014,Medical Incident,08/15/2011,08/15/2011,08/15/2011 11:46:41 AM,08/15/2011 11:47:49 AM,08/15/2011 11:48:16 AM,08/15/2011 11:50:08 AM,08/15/2011 11:55:59 AM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 11:59:32 AM,1100 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,false,,1,PRIVATE,3,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",112270177-AM06 +131240221,93,13041842,Medical Incident,05/04/2013,05/04/2013,05/04/2013 02:06:22 PM,05/04/2013 02:09:48 PM,05/04/2013 02:11:34 PM,05/04/2013 02:12:28 PM,05/04/2013 02:30:17 PM,05/04/2013 02:43:58 PM,05/04/2013 02:55:11 PM,Code 2 Transport,05/04/2013 03:25:18 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131240221-93 +160513409,89,16020626,Medical Incident,02/20/2016,02/20/2016,02/20/2016 10:39:27 PM,02/20/2016 10:41:51 PM,02/20/2016 10:43:10 PM,02/20/2016 10:43:17 PM,02/20/2016 11:06:07 PM,02/20/2016 11:21:27 PM,02/21/2016 12:17:30 AM,Code 2 Transport,02/21/2016 12:26:59 AM,100 Block of LANGTON ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7755325814084, -122.407486364653)",160513409-89 +113260142,E44,11108207,Medical Incident,11/22/2011,11/22/2011,11/22/2011 10:18:18 AM,11/22/2011 10:19:53 AM,11/22/2011 10:20:10 AM,11/22/2011 10:21:22 AM,11/22/2011 10:25:17 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 10:48:10 AM,2600 Block of BAY SHORE BLVD,SF,94134,B10,44,6254,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7085901437558, -122.405053904887)",113260142-E44 +103130315,72,10100456,Medical Incident,11/09/2010,11/09/2010,11/09/2010 06:30:11 PM,11/09/2010 06:31:20 PM,11/09/2010 06:33:04 PM,11/09/2010 06:33:10 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,04/25/2016 02:07:40 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103130315-72 +133340214,KM01,13113269,Medical Incident,11/30/2013,11/30/2013,11/30/2013 03:06:56 PM,11/30/2013 03:07:32 PM,11/30/2013 03:07:56 PM,11/30/2013 03:08:33 PM,11/30/2013 03:19:47 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Patient Declined Transport,11/30/2013 03:48:13 PM,700 Block of TARAVAL ST,SF,94116,B08,40,7376,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7431749483835, -122.47409244345)",133340214-KM01 +160590262,64,16023357,Medical Incident,02/28/2016,02/27/2016,02/28/2016 01:49:28 AM,02/28/2016 01:50:42 AM,02/28/2016 01:50:55 AM,02/28/2016 01:51:22 AM,02/28/2016 01:55:46 AM,02/28/2016 02:02:35 AM,02/28/2016 02:12:18 AM,Code 2 Transport,02/28/2016 03:09:08 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160590262-64 +160720763,55,16028506,Medical Incident,03/12/2016,03/11/2016,03/12/2016 07:48:01 AM,03/12/2016 07:50:03 AM,03/12/2016 07:51:47 AM,03/12/2016 07:52:42 AM,03/12/2016 08:01:09 AM,03/12/2016 08:17:39 AM,03/12/2016 08:20:11 AM,Code 2 Transport,03/12/2016 08:50:08 AM,SACRAMENTO ST/LEAVENWORTH ST,San Francisco,94109,B01,41,1465,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7921329427396, -122.415936219557)",160720763-55 +122670230,85,12088259,Medical Incident,09/23/2012,09/23/2012,09/23/2012 04:05:02 PM,09/23/2012 04:05:53 PM,09/23/2012 04:06:09 PM,09/23/2012 04:06:29 PM,09/23/2012 04:09:55 PM,09/23/2012 04:27:32 PM,09/23/2012 05:25:33 PM,Code 2 Transport,09/23/2012 05:32:37 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122670230-85 +111000011,E01,11033064,Medical Incident,04/10/2011,04/09/2011,04/10/2011 12:14:41 AM,04/10/2011 12:16:15 AM,04/10/2011 12:18:16 AM,04/10/2011 12:19:29 AM,04/10/2011 12:22:39 AM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/10/2011 12:34:06 AM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",111000011-E01 +160371778,KM02,16014681,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:18:40 PM,02/06/2016 12:19:25 PM,02/06/2016 12:19:43 PM,02/06/2016 12:21:12 PM,02/06/2016 12:28:25 PM,02/06/2016 12:41:11 PM,02/06/2016 12:47:57 PM,Code 3 Transport,02/06/2016 01:34:38 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160371778-KM02 +140080051,E01,14002711,Alarms,01/08/2014,01/07/2014,01/08/2014 04:47:58 AM,01/08/2014 04:49:18 AM,01/08/2014 04:49:27 AM,04/25/2016 01:48:50 PM,01/08/2014 04:53:46 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/08/2014 05:02:51 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",140080051-E01 +111860078,89,11061388,Medical Incident,07/05/2011,07/04/2011,07/05/2011 05:53:51 AM,07/05/2011 05:55:20 AM,07/05/2011 05:57:02 AM,07/05/2011 05:57:46 AM,07/05/2011 06:02:53 AM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Patient Declined Transport,07/05/2011 06:17:52 AM,BROADWAY/COLUMBUS AV,SF,94133,B01,2,1311,1,1,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",111860078-89 +132240281,E39,13075709,Citizen Assist / Service Call,08/12/2013,08/12/2013,08/12/2013 05:36:05 PM,08/12/2013 05:38:15 PM,08/12/2013 05:38:29 PM,08/12/2013 05:39:41 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,Other,08/12/2013 05:41:21 PM,100 Block of WEST PORTAL AVE,SF,94127,B08,39,8612,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",132240281-E39 +113250043,T08,11107814,Structure Fire,11/21/2011,11/20/2011,11/21/2011 07:07:47 AM,11/21/2011 07:07:47 AM,11/21/2011 07:07:56 AM,11/21/2011 07:09:08 AM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,Other,11/21/2011 07:11:05 AM,3RD ST/BRANNAN ST,SF,94107,B03,8,2173,3,3,3,true,,1,TRUCK,2,3,6,South of Market,"(37.7800897302982, -122.394300038467)",113250043-T08 +110750196,E25,11024686,Medical Incident,03/16/2011,03/16/2011,03/16/2011 01:59:27 PM,03/16/2011 02:00:02 PM,03/16/2011 02:00:24 PM,03/16/2011 02:01:28 PM,03/16/2011 02:03:05 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Other,03/16/2011 02:13:53 PM,3RD ST/EVANS AV,SF,94124,B10,25,6457,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",110750196-E25 +103330236,E32,10106621,Smoke Investigation (Outside),11/29/2010,11/29/2010,11/29/2010 03:47:45 PM,11/29/2010 03:49:44 PM,11/29/2010 03:49:53 PM,11/29/2010 03:50:28 PM,11/29/2010 03:55:24 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Fire,11/29/2010 04:23:28 PM,200 Block of AVENUE C,SF,94130,B09,32,5681,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8192257500347, -122.370976475899)",103330236-E32 +111310291,E19,11043382,Outside Fire,05/11/2011,05/11/2011,05/11/2011 05:56:28 PM,05/11/2011 05:57:24 PM,05/11/2011 05:58:19 PM,05/11/2011 05:59:54 PM,05/11/2011 06:07:41 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Fire,05/11/2011 06:07:42 PM,19TH AV/HOLLOWAY AV,SF,94132,B08,19,8751,3,3,3,true,,1,ENGINE,1,9,7,Lakeshore,"(37.7210572969552, -122.475221950242)",111310291-E19 +121770114,88,12058832,Medical Incident,06/25/2012,06/25/2012,06/25/2012 09:58:09 AM,06/25/2012 10:00:27 AM,06/25/2012 10:00:49 AM,06/25/2012 10:01:02 AM,06/25/2012 10:07:28 AM,06/25/2012 10:20:41 AM,06/25/2012 10:31:46 AM,Code 2 Transport,06/25/2012 10:45:36 AM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",121770114-88 +160752379,88,16029770,Medical Incident,03/15/2016,03/15/2016,03/15/2016 03:19:47 PM,03/15/2016 03:21:11 PM,03/15/2016 03:22:03 PM,03/15/2016 03:22:26 PM,03/15/2016 03:30:36 PM,03/15/2016 03:46:13 PM,03/15/2016 04:01:43 PM,Code 2 Transport,03/15/2016 04:46:22 PM,7000 Block of CALIFORNIA ST,San Francisco,94121,B07,14,7246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7834657394823, -122.492996408284)",160752379-88 +122690209,AM06,12088879,Medical Incident,09/25/2012,09/25/2012,09/25/2012 04:02:11 PM,09/25/2012 04:05:22 PM,09/25/2012 04:06:09 PM,09/25/2012 04:07:02 PM,09/25/2012 04:10:41 PM,09/25/2012 04:23:04 PM,09/25/2012 04:31:25 PM,Code 2 Transport,09/25/2012 05:02:59 PM,1700 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7913381286071, -122.421683207706)",122690209-AM06 +112270001,B10,11074862,Structure Fire,08/15/2011,08/14/2011,08/15/2011 12:08:02 AM,08/15/2011 12:09:19 AM,08/15/2011 12:09:47 AM,08/15/2011 12:12:14 AM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/15/2011 12:17:28 AM,600 Block of SAN JOSE AVE,SF,94110,B06,11,5577,3,3,3,false,,1,CHIEF,10,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",112270001-B10 +160671870,61,16026784,Medical Incident,03/07/2016,03/07/2016,03/07/2016 02:29:52 PM,03/07/2016 02:31:15 PM,03/07/2016 02:32:29 PM,03/07/2016 02:32:43 PM,03/07/2016 02:44:24 PM,03/07/2016 03:07:26 PM,03/07/2016 03:11:13 PM,Code 2 Transport,03/07/2016 03:54:49 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160671870-61 +131440371,T13,13048994,Alarms,05/24/2013,05/24/2013,05/24/2013 09:15:23 PM,05/24/2013 09:16:39 PM,05/24/2013 09:16:50 PM,05/24/2013 09:17:53 PM,05/24/2013 09:21:52 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:37 PM,Other,05/24/2013 09:25:28 PM,500 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7904631779771, -122.405941469147)",131440371-T13 +122740160,87,12090368,Medical Incident,09/30/2012,09/30/2012,09/30/2012 12:19:24 PM,09/30/2012 12:19:37 PM,09/30/2012 12:20:10 PM,09/30/2012 12:22:18 PM,09/30/2012 12:25:54 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,No Merit,09/30/2012 12:56:50 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",122740160-87 +122110222,B01,12070124,Structure Fire,07/29/2012,07/29/2012,07/29/2012 05:03:56 PM,07/29/2012 05:05:20 PM,07/29/2012 05:05:31 PM,07/29/2012 05:07:54 PM,07/29/2012 05:11:03 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 05:12:37 PM,0 Block of HOWARD ST,SF,94105,B03,35,2114,3,3,3,false,Fire,1,CHIEF,5,3,6,Financial District/South Beach,"(37.7916972492914, -122.392134062208)",122110222-B01 +103110317,54,10099862,Medical Incident,11/07/2010,11/07/2010,11/07/2010 08:06:13 PM,11/07/2010 08:07:30 PM,11/07/2010 08:07:49 PM,11/07/2010 08:08:07 PM,11/07/2010 08:13:07 PM,11/07/2010 08:41:48 PM,11/07/2010 09:07:26 PM,Code 2 Transport,11/07/2010 09:28:43 PM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,2,2,true,,1,MEDIC,1,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",103110317-54 +131270153,72,13042898,Medical Incident,05/07/2013,05/07/2013,05/07/2013 12:20:57 PM,05/07/2013 12:22:10 PM,05/07/2013 12:22:36 PM,05/07/2013 12:22:59 PM,05/07/2013 12:28:49 PM,05/07/2013 12:45:22 PM,05/07/2013 12:55:52 PM,Code 2 Transport,05/07/2013 01:33:23 PM,700 Block of THE EMBARCADERO,SF,94111,B01,13,915,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",131270153-72 +160870533,AM20,16034459,Medical Incident,03/27/2016,03/26/2016,03/27/2016 03:50:04 AM,03/27/2016 03:50:04 AM,03/27/2016 03:50:48 AM,03/27/2016 03:51:21 AM,03/27/2016 04:07:24 AM,03/27/2016 04:15:47 AM,03/27/2016 04:24:45 AM,Code 2 Transport,03/27/2016 05:05:16 AM,3RD ST/EVANS AV,San Francisco,94124,B10,25,6457,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",160870533-AM20 +160083829,52,16003440,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:09:49 PM,01/08/2016 10:12:40 PM,01/08/2016 10:12:59 PM,01/08/2016 10:13:10 PM,01/08/2016 10:27:18 PM,01/08/2016 10:40:22 PM,01/08/2016 10:42:07 PM,Code 2 Transport,01/08/2016 11:30:27 PM,1200 Block of 3RD AVE,San Francisco,94122,B05,12,7324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7647847701511, -122.459989357925)",160083829-52 +121540217,B02,12051010,Structure Fire,06/02/2012,06/02/2012,06/02/2012 02:53:14 PM,06/02/2012 02:54:38 PM,06/02/2012 02:54:56 PM,06/02/2012 02:56:37 PM,06/02/2012 02:57:12 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 03:12:10 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Fire,1,CHIEF,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121540217-B02 +110170007,E05,11005504,Alarms,01/17/2011,01/16/2011,01/17/2011 12:55:28 AM,01/17/2011 12:58:25 AM,01/17/2011 12:58:36 AM,01/17/2011 12:59:50 AM,01/17/2011 01:01:20 AM,04/25/2016 02:06:33 PM,04/25/2016 02:06:33 PM,Other,01/17/2011 01:06:59 AM,600 Block of LARCH ST,SF,94115,B02,5,3426,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",110170007-E05 +160263400,AM14,16010453,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:05:43 PM,01/26/2016 08:07:07 PM,01/26/2016 08:09:08 PM,01/26/2016 08:09:48 PM,01/26/2016 08:18:37 PM,01/26/2016 08:40:23 PM,01/26/2016 08:59:56 PM,Code 2 Transport,01/26/2016 09:41:44 PM,1200 Block of 44TH AVE,San Francisco,94122,B08,23,7654,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7633235426802, -122.503913503953)",160263400-AM14 +132970110,E03,13100820,Medical Incident,10/24/2013,10/24/2013,10/24/2013 10:09:09 AM,10/24/2013 10:09:37 AM,10/24/2013 10:09:50 AM,10/24/2013 10:10:26 AM,10/24/2013 10:14:43 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 10:17:14 AM,1600 Block of POST ST,SF,94115,B04,38,3364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Japantown,"(37.7856200211531, -122.428953785897)",132970110-E03 +160051595,65,16001984,Medical Incident,01/05/2016,01/05/2016,01/05/2016 12:24:30 PM,01/05/2016 12:25:11 PM,01/05/2016 12:25:28 PM,01/05/2016 12:25:35 PM,01/05/2016 12:28:34 PM,01/05/2016 12:49:07 PM,01/05/2016 01:12:23 PM,Code 2 Transport,01/05/2016 01:43:15 PM,1400 Block of WALLER ST,San Francisco,94117,B05,12,4512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.768862804, -122.44796773714)",160051595-65 +130050189,E05,13001719,Medical Incident,01/05/2013,01/05/2013,01/05/2013 12:28:21 PM,01/05/2013 12:29:51 PM,01/05/2013 12:30:11 PM,01/05/2013 12:31:15 PM,01/05/2013 12:33:41 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/05/2013 12:49:43 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",130050189-E05 +112600270,E05,11085816,Alarms,09/17/2011,09/17/2011,09/17/2011 03:42:23 PM,09/17/2011 03:43:10 PM,09/17/2011 03:43:26 PM,09/17/2011 03:44:51 PM,09/17/2011 03:45:26 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 03:54:08 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",112600270-E05 +160090864,66,16003570,Medical Incident,01/09/2016,01/09/2016,01/09/2016 08:56:26 AM,01/09/2016 09:00:50 AM,01/09/2016 09:01:13 AM,01/09/2016 09:01:40 AM,01/09/2016 09:09:42 AM,01/09/2016 10:38:01 AM,01/09/2016 10:50:18 AM,Code 2 Transport,01/09/2016 11:44:48 AM,0 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7264,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.779712004387, -122.503506925042)",160090864-66 +160870794,57,16034488,Medical Incident,03/27/2016,03/26/2016,03/27/2016 07:17:58 AM,03/27/2016 07:17:58 AM,03/27/2016 07:18:36 AM,03/27/2016 07:18:49 AM,03/27/2016 07:27:44 AM,03/27/2016 07:44:08 AM,03/27/2016 08:04:44 AM,Code 2 Transport,03/27/2016 08:22:14 AM,1000 Block of GEARY ST,San Francisco,94109,B02,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7857350982042, -122.420555240691)",160870794-57 +113640334,E08,11121030,Alarms,12/30/2011,12/30/2011,12/30/2011 07:56:45 PM,12/30/2011 07:57:23 PM,12/30/2011 07:58:01 PM,04/25/2016 02:00:53 PM,12/30/2011 08:01:15 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,Other,12/30/2011 08:11:33 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",113640334-E08 +160723051,70,16028750,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:03:50 PM,03/12/2016 08:04:08 PM,03/12/2016 08:17:20 PM,03/12/2016 08:17:32 PM,03/12/2016 08:20:37 PM,03/12/2016 08:36:28 PM,03/12/2016 08:49:18 PM,Code 2 Transport,03/12/2016 09:13:15 PM,1400 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7497103477225, -122.420361382547)",160723051-70 +113260303,E09,11108328,Structure Fire,11/22/2011,11/22/2011,11/22/2011 05:37:32 PM,11/22/2011 05:38:19 PM,11/22/2011 05:38:30 PM,11/22/2011 05:39:28 PM,11/22/2011 05:42:10 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 05:47:24 PM,1300 Block of NEWHALL ST,SF,94124,B10,17,6471,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7359424972351, -122.391874407163)",113260303-E09 +102440049,E33,10076869,Medical Incident,09/01/2010,08/31/2010,09/01/2010 05:49:41 AM,09/01/2010 05:50:41 AM,09/01/2010 05:51:03 AM,09/01/2010 05:53:12 AM,09/01/2010 05:56:43 AM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,09/01/2010 06:15:23 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",102440049-E33 +121490306,E36,12049567,Structure Fire,05/28/2012,05/28/2012,05/28/2012 10:12:21 PM,05/28/2012 10:12:58 PM,05/28/2012 10:13:06 PM,05/28/2012 10:15:44 PM,05/28/2012 10:15:53 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 10:36:04 PM,1000 Block of NATOMA ST,SF,94103,B02,36,5114,3,3,3,true,Fire,1,ENGINE,1,2,6,Mission,"(37.7726058799466, -122.41701596481)",121490306-E36 +121750438,T07,12058331,Structure Fire,06/23/2012,06/23/2012,06/23/2012 11:37:22 PM,06/23/2012 11:37:23 PM,06/23/2012 11:37:39 PM,06/23/2012 11:39:46 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 11:41:09 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,false,Alarm,1,TRUCK,2,2,6,Mission,"(37.7726641818375, -122.418338317697)",121750438-T07 +120880130,KM02,12029141,Medical Incident,03/28/2012,03/28/2012,03/28/2012 10:54:34 AM,03/28/2012 10:57:33 AM,03/28/2012 10:57:57 AM,03/28/2012 10:58:38 AM,03/28/2012 11:06:11 AM,03/28/2012 11:30:10 AM,03/28/2012 11:45:44 AM,Code 2 Transport,03/28/2012 12:10:35 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",120880130-KM02 +122770189,87,12091521,Medical Incident,10/03/2012,10/03/2012,10/03/2012 12:03:30 PM,10/03/2012 12:05:15 PM,10/03/2012 12:06:02 PM,10/03/2012 12:06:48 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,04/25/2016 01:56:29 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122770189-87 +102530290,B07,10080026,Gas Leak (Natural and LP Gases),09/10/2010,09/10/2010,09/10/2010 04:44:25 PM,09/10/2010 04:46:58 PM,09/10/2010 04:47:03 PM,09/10/2010 04:49:56 PM,09/10/2010 04:51:15 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 05:02:00 PM,4300 Block of GEARY BLVD,SF,94118,B07,31,7135,3,3,3,false,,1,CHIEF,2,7,1,Inner Richmond,"(37.780820131608, -122.465882659599)",102530290-B07 +112280274,KM11,11075439,Medical Incident,08/16/2011,08/16/2011,08/16/2011 06:06:32 PM,08/16/2011 06:08:33 PM,08/16/2011 06:17:04 PM,08/16/2011 06:17:33 PM,08/16/2011 06:21:45 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Patient Declined Transport,08/16/2011 06:36:12 PM,OFARRELL ST/LEAVENWORTH ST,SF,94109,B04,3,1544,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",112280274-KM11 +160600046,57,16023718,Medical Incident,02/29/2016,02/28/2016,02/29/2016 12:18:35 AM,02/29/2016 12:20:14 AM,02/29/2016 12:21:55 AM,02/29/2016 12:22:37 AM,02/29/2016 12:26:16 AM,02/29/2016 12:36:24 AM,02/29/2016 12:40:33 AM,Code 3 Transport,02/29/2016 01:43:27 AM,3400 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7601573650684, -122.41958524775)",160600046-57 +132460347,E13,13083140,Medical Incident,09/03/2013,09/03/2013,09/03/2013 07:55:03 PM,09/03/2013 07:55:34 PM,09/03/2013 07:55:52 PM,09/03/2013 07:56:29 PM,09/03/2013 07:58:06 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/03/2013 08:12:50 PM,600 Block of DAVIS ST,SF,94111,B01,13,1131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7979952301231, -122.398446080847)",132460347-E13 +110720070,B02,11023626,Alarms,03/13/2011,03/12/2011,03/13/2011 04:28:13 AM,03/13/2011 04:30:01 AM,03/13/2011 04:30:24 AM,03/13/2011 04:32:14 AM,03/13/2011 04:37:14 AM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/13/2011 04:41:02 AM,100 Block of FREDERICK ST,SF,94117,B05,12,5143,3,3,3,false,,1,CHIEF,3,5,5,Haight Ashbury,"(37.7674287653791, -122.445149029242)",110720070-B02 +130400062,E08,13013557,Alarms,02/09/2013,02/08/2013,02/09/2013 03:22:21 AM,02/09/2013 03:23:51 AM,02/09/2013 03:23:57 AM,02/09/2013 03:24:56 AM,02/09/2013 03:27:29 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 03:32:45 AM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",130400062-E08 +160582965,77,16023237,Medical Incident,02/27/2016,02/27/2016,02/27/2016 06:28:01 PM,02/27/2016 06:29:37 PM,02/27/2016 06:31:03 PM,02/27/2016 06:31:18 PM,02/27/2016 06:37:05 PM,02/27/2016 06:51:38 PM,02/27/2016 06:59:53 PM,Code 2 Transport,02/27/2016 07:23:05 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160582965-77 +132040332,E07,13069222,Medical Incident,07/23/2013,07/23/2013,07/23/2013 07:35:34 PM,07/23/2013 07:37:48 PM,07/23/2013 07:38:23 PM,07/23/2013 07:39:25 PM,07/23/2013 07:43:11 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,No Merit,07/23/2013 07:47:18 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",132040332-E07 +132220346,67,13075102,Medical Incident,08/10/2013,08/10/2013,08/10/2013 08:25:49 PM,08/10/2013 08:29:28 PM,08/10/2013 08:30:10 PM,08/10/2013 08:30:43 PM,08/10/2013 08:35:48 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,Gone on Arrival,08/10/2013 08:38:24 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,1,1,2,false,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",132220346-67 +160032043,AM16,16001241,Medical Incident,01/03/2016,01/03/2016,01/03/2016 03:57:10 PM,01/03/2016 03:57:53 PM,01/03/2016 03:58:14 PM,01/03/2016 04:01:20 PM,01/03/2016 04:06:27 PM,01/03/2016 04:14:44 PM,01/03/2016 04:34:20 PM,Code 2 Transport,01/03/2016 05:00:33 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160032043-AM16 +112030165,E01,11066997,Medical Incident,07/22/2011,07/22/2011,07/22/2011 11:23:11 AM,07/22/2011 11:24:24 AM,07/22/2011 11:24:37 AM,07/22/2011 11:26:27 AM,07/22/2011 11:29:10 AM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,07/22/2011 11:39:24 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7803099082814, -122.407975093043)",112030165-E01 +132450174,KM10,13082666,Medical Incident,09/02/2013,09/02/2013,09/02/2013 12:26:16 PM,09/02/2013 12:27:41 PM,09/02/2013 12:28:33 PM,09/02/2013 12:29:05 PM,09/02/2013 12:35:34 PM,09/02/2013 12:50:07 PM,09/02/2013 01:04:37 PM,Code 2 Transport,09/02/2013 01:54:13 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",132450174-KM10 +122230109,E13,12073869,Medical Incident,08/10/2012,08/10/2012,08/10/2012 09:35:06 AM,08/10/2012 09:35:54 AM,08/10/2012 09:37:19 AM,08/10/2012 09:39:17 AM,08/10/2012 09:39:47 AM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 09:55:09 AM,100 Block of CLAY ST,SF,94111,B01,13,1133,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7953352957642, -122.397362199177)",122230109-E13 +132970086,E15,13100801,Medical Incident,10/24/2013,10/24/2013,10/24/2013 09:03:54 AM,10/24/2013 09:04:48 AM,10/24/2013 09:05:11 AM,04/25/2016 01:50:07 PM,10/24/2013 09:06:01 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 09:24:12 AM,0 Block of ASHTON AVE,SF,94112,B09,15,8434,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7193876630599, -122.462323615589)",132970086-E15 +111570368,55,11052066,Medical Incident,06/06/2011,06/06/2011,06/06/2011 09:39:42 PM,06/06/2011 09:42:47 PM,06/06/2011 09:43:05 PM,06/06/2011 09:43:12 PM,06/06/2011 09:51:09 PM,06/06/2011 10:02:58 PM,06/06/2011 10:21:55 PM,Code 2 Transport,06/06/2011 10:39:31 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",111570368-55 +112650442,74,11087715,Medical Incident,09/22/2011,09/22/2011,09/22/2011 10:39:42 PM,09/22/2011 10:42:22 PM,09/22/2011 10:42:37 PM,09/22/2011 10:43:36 PM,09/22/2011 10:45:52 PM,09/22/2011 11:10:44 PM,09/22/2011 11:16:01 PM,Code 2 Transport,09/22/2011 11:30:34 PM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",112650442-74 +110720107,58,11023656,Medical Incident,03/13/2011,03/12/2011,03/13/2011 07:49:20 AM,03/13/2011 07:50:31 AM,03/13/2011 07:50:52 AM,03/13/2011 07:51:08 AM,03/13/2011 07:55:07 AM,03/13/2011 08:23:05 AM,03/13/2011 08:28:37 AM,Code 2 Transport,03/13/2011 09:04:41 AM,1800 Block of CHESTNUT ST,SF,94123,B04,16,3445,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8010769361014, -122.433769037511)",110720107-58 +160782333,82,16031056,Medical Incident,03/18/2016,03/18/2016,03/18/2016 03:06:32 PM,03/18/2016 03:06:58 PM,03/18/2016 03:07:16 PM,03/18/2016 03:08:32 PM,03/18/2016 03:20:53 PM,03/18/2016 03:35:05 PM,03/18/2016 03:54:37 PM,Code 2 Transport,03/18/2016 04:22:25 PM,2400 Block of LOMBARD ST,San Francisco,94123,B04,16,4115,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7990040267659, -122.441795241204)",160782333-82 +160211660,KM09,16008367,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:24:33 PM,01/21/2016 12:25:24 PM,01/21/2016 12:27:06 PM,01/21/2016 12:27:06 PM,01/21/2016 12:36:58 PM,01/21/2016 12:48:36 PM,01/21/2016 12:56:08 PM,Code 2 Transport,01/21/2016 01:33:28 PM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,9,6375,2,2,2,false,Non Life-threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7442404121423, -122.40429562467)",160211660-KM09 +112740195,83,11090614,Medical Incident,10/01/2011,10/01/2011,10/01/2011 12:50:16 PM,10/01/2011 12:52:01 PM,10/01/2011 12:52:12 PM,10/01/2011 12:53:26 PM,10/01/2011 01:00:48 PM,10/01/2011 01:09:44 PM,10/01/2011 01:29:42 PM,Code 2 Transport,10/01/2011 01:52:56 PM,100 Block of ADDISON ST,SF,94131,B06,26,8122,E,E,3,true,,1,MEDIC,3,6,8,Glen Park,"(37.7378218134824, -122.432398313711)",112740195-83 +132070373,E08,13070250,Medical Incident,07/26/2013,07/26/2013,07/26/2013 11:46:40 PM,07/26/2013 11:49:04 PM,07/26/2013 11:49:27 PM,07/26/2013 11:51:43 PM,07/26/2013 11:53:32 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/27/2013 12:00:13 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132070373-E08 +140110270,94,14003923,Medical Incident,01/11/2014,01/11/2014,01/11/2014 07:08:20 PM,01/11/2014 07:09:00 PM,01/11/2014 07:09:25 PM,01/11/2014 07:09:30 PM,01/11/2014 07:22:09 PM,04/25/2016 01:48:46 PM,04/25/2016 01:48:46 PM,Other,01/11/2014 08:39:27 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",140110270-94 +110450385,59,11015101,Medical Incident,02/14/2011,02/14/2011,02/14/2011 10:42:59 PM,02/14/2011 10:43:49 PM,02/14/2011 10:44:16 PM,02/14/2011 10:45:13 PM,02/14/2011 10:44:29 PM,02/14/2011 11:15:36 PM,02/14/2011 11:22:19 PM,Code 2 Transport,02/14/2011 11:54:24 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",110450385-59 +160530684,53,16021102,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:19:22 AM,02/22/2016 08:20:51 AM,02/22/2016 08:22:25 AM,02/22/2016 08:22:34 AM,02/22/2016 08:29:16 AM,02/22/2016 08:50:01 AM,02/22/2016 08:56:54 AM,Code 2 Transport,02/22/2016 09:39:13 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160530684-53 +131390396,66,13047186,Medical Incident,05/19/2013,05/19/2013,05/19/2013 07:29:44 PM,05/19/2013 07:31:45 PM,05/19/2013 07:32:14 PM,05/19/2013 07:32:32 PM,05/19/2013 07:42:51 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 08:33:32 PM,500 Block of 9TH ST,SF,94103,B03,29,2331,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",131390396-66 +102840117,E36,10090368,Medical Incident,10/11/2010,10/11/2010,10/11/2010 09:47:20 AM,10/11/2010 09:49:47 AM,10/11/2010 10:02:03 AM,10/11/2010 10:03:33 AM,10/11/2010 10:05:01 AM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Other,10/11/2010 10:18:03 AM,12TH ST/MARKET ST,SF,94103,B02,36,3212,1,1,2,true,,1,ENGINE,1,2,6,Mission,"(37.7743586748127, -122.420254280324)",102840117-E36 +160793493,79,16031548,Medical Incident,03/19/2016,03/19/2016,03/19/2016 07:41:50 PM,03/19/2016 07:42:59 PM,03/19/2016 07:43:38 PM,03/19/2016 07:44:02 PM,03/19/2016 07:49:33 PM,03/19/2016 08:00:48 PM,03/19/2016 08:30:49 PM,Code 2 Transport,03/19/2016 09:27:41 PM,800 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.8024220415516, -122.413358845822)",160793493-79 +130790184,78,13026397,Medical Incident,03/20/2013,03/20/2013,03/20/2013 01:15:52 PM,03/20/2013 01:18:06 PM,03/20/2013 01:19:33 PM,03/20/2013 01:19:56 PM,03/20/2013 01:25:27 PM,03/20/2013 01:32:39 PM,03/20/2013 01:53:50 PM,Code 2 Transport,03/20/2013 02:09:49 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7845808066125, -122.414593411257)",130790184-78 +112970066,E43,11098427,Medical Incident,10/24/2011,10/23/2011,10/24/2011 07:12:39 AM,10/24/2011 07:13:26 AM,10/24/2011 07:13:41 AM,10/24/2011 07:15:24 AM,10/24/2011 07:17:51 AM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 07:26:41 AM,200 Block of CONCORD ST,SF,94112,B09,43,6231,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7100041242948, -122.441693918266)",112970066-E43 +160173093,53,16006992,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:35:32 PM,01/17/2016 08:41:12 PM,01/17/2016 08:41:58 PM,01/17/2016 08:42:09 PM,01/17/2016 08:46:32 PM,01/17/2016 09:20:50 PM,01/17/2016 09:26:07 PM,Code 2 Transport,01/17/2016 10:10:14 PM,MASONIC AV/HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160173093-53 +102930361,E05,10093597,Medical Incident,10/20/2010,10/20/2010,10/20/2010 10:43:21 PM,10/20/2010 10:46:04 PM,10/20/2010 10:47:02 PM,10/20/2010 10:48:06 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/20/2010 11:05:04 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,3,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",102930361-E05 +121050127,B04,12034718,Alarms,04/14/2012,04/14/2012,04/14/2012 09:38:17 AM,04/14/2012 09:40:04 AM,04/14/2012 09:40:22 AM,04/14/2012 09:40:58 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 09:46:01 AM,3500 Block of CLAY ST,SF,94118,B07,10,4426,3,3,3,false,Alarm,1,CHIEF,2,7,2,Presidio Heights,"(37.7884880782921, -122.451292376621)",121050127-B04 +112450290,E43,11080851,Medical Incident,09/02/2011,09/02/2011,09/02/2011 05:18:32 PM,09/02/2011 05:18:53 PM,09/02/2011 05:19:20 PM,09/02/2011 05:20:38 PM,09/02/2011 05:21:58 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 05:31:23 PM,1100 Block of RUSSIA AVE,SF,94112,B09,43,6162,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7172355261764, -122.427935917515)",112450290-E43 +160061011,63,16002324,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:40:36 AM,01/06/2016 09:42:52 AM,01/06/2016 09:43:03 AM,01/06/2016 09:44:01 AM,01/06/2016 09:47:32 AM,01/06/2016 10:07:12 AM,01/06/2016 10:48:38 AM,Code 2 Transport,01/06/2016 11:02:24 AM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160061011-63 +120120045,59,12003998,Medical Incident,01/12/2012,01/11/2012,01/12/2012 04:33:19 AM,01/12/2012 04:34:17 AM,01/12/2012 04:34:32 AM,01/12/2012 04:35:27 AM,01/12/2012 04:38:54 AM,01/12/2012 04:59:26 AM,01/12/2012 05:13:52 AM,Code 2 Transport,01/12/2012 05:33:48 AM,200 Block of OCTAVIA ST,SF,94102,B02,36,3313,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745930151123, -122.424320630004)",120120045-59 +120090365,AM10,12003265,Medical Incident,01/09/2012,01/09/2012,01/09/2012 08:21:51 PM,01/09/2012 08:22:31 PM,01/09/2012 08:23:03 PM,01/09/2012 08:23:53 PM,01/09/2012 08:27:24 PM,01/09/2012 08:44:45 PM,01/09/2012 09:01:32 PM,Code 2 Transport,01/09/2012 09:31:02 PM,300 Block of GRAFTON AVE,SF,94112,B09,15,8464,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7199768471741, -122.456645658566)",120090365-AM10 +130910323,AM08,13030568,Medical Incident,04/01/2013,04/01/2013,04/01/2013 06:42:39 PM,04/01/2013 06:45:44 PM,04/01/2013 06:47:03 PM,04/01/2013 06:52:21 PM,04/01/2013 06:58:13 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Medical Examiner,04/01/2013 07:41:13 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",130910323-AM08 +111470012,E10,11048646,Medical Incident,05/27/2011,05/26/2011,05/27/2011 01:02:23 AM,05/27/2011 01:03:06 AM,05/27/2011 01:03:35 AM,05/27/2011 01:05:32 AM,05/27/2011 01:08:01 AM,04/25/2016 02:04:26 PM,04/25/2016 02:04:26 PM,Other,05/27/2011 01:15:34 AM,1400 Block of BRODERICK ST,SF,94115,B05,10,4235,3,3,3,true,,1,ENGINE,1,5,2,Japantown,"(37.7838654796396, -122.441370226887)",111470012-E10 +160900652,KM08,16035611,Medical Incident,03/30/2016,03/29/2016,03/30/2016 07:41:22 AM,03/30/2016 07:42:02 AM,03/30/2016 07:42:27 AM,03/30/2016 07:42:36 AM,03/30/2016 08:02:14 AM,03/30/2016 08:02:16 AM,03/30/2016 08:18:57 AM,Code 2 Transport,03/30/2016 08:39:27 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160900652-KM08 +120740048,89,12024445,Medical Incident,03/14/2012,03/13/2012,03/14/2012 05:54:38 AM,03/14/2012 05:55:13 AM,03/14/2012 05:57:09 AM,03/14/2012 05:57:38 AM,03/14/2012 06:17:56 AM,03/14/2012 06:25:48 AM,03/14/2012 06:42:16 AM,Code 2 Transport,03/14/2012 07:03:00 AM,0 Block of JONES ST,SF,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",120740048-89 +130780409,E28,13026226,Outside Fire,03/19/2013,03/19/2013,03/19/2013 10:11:14 PM,03/19/2013 10:11:15 PM,03/19/2013 10:11:31 PM,03/19/2013 10:13:31 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 10:17:57 PM,1300 Block of THE EMBARCADERO,SF,94111,B01,28,929,3,3,3,false,Alarm,1,ENGINE,2,1,3,North Beach,"(37.8060708761545, -122.404376747731)",130780409-E28 +121340285,T18,12044706,Structure Fire,05/13/2012,05/13/2012,05/13/2012 08:30:12 PM,05/13/2012 08:31:54 PM,05/13/2012 08:32:14 PM,05/13/2012 08:34:46 PM,05/13/2012 08:37:14 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 09:00:45 PM,3400 Block of TARAVAL ST,SF,94116,B08,18,7665,3,3,3,false,Fire,1,TRUCK,5,8,4,Sunset/Parkside,"(37.7417826200945, -122.503008914688)",121340285-T18 +160483881,KM07,16019528,Medical Incident,02/17/2016,02/17/2016,02/17/2016 09:51:56 PM,02/17/2016 09:53:17 PM,02/17/2016 09:54:25 PM,02/17/2016 09:55:01 PM,02/17/2016 10:01:08 PM,02/17/2016 10:24:29 PM,02/17/2016 10:31:00 PM,Code 3 Transport,02/17/2016 11:24:42 PM,900 Block of GREENWICH ST,San Francisco,94133,B01,28,1514,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Russian Hill,"(37.8015015067263, -122.415530627533)",160483881-KM07 +123150307,AM12,12104945,Medical Incident,11/10/2012,11/10/2012,11/10/2012 07:09:21 PM,11/10/2012 07:11:20 PM,11/10/2012 07:12:58 PM,11/10/2012 07:14:03 PM,11/10/2012 07:20:54 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,No Merit,11/10/2012 07:28:07 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",123150307-AM12 +122680034,93,12088409,Medical Incident,09/24/2012,09/23/2012,09/24/2012 02:19:15 AM,09/24/2012 02:21:03 AM,09/24/2012 02:21:45 AM,04/25/2016 01:56:37 PM,09/24/2012 02:22:12 AM,09/24/2012 02:48:01 AM,09/24/2012 02:52:52 AM,Code 2 Transport,09/24/2012 03:14:37 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",122680034-93 +131540107,E36,13052094,Medical Incident,06/03/2013,06/03/2013,06/03/2013 09:10:15 AM,06/03/2013 09:10:43 AM,06/03/2013 09:11:01 AM,06/03/2013 09:13:24 AM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/03/2013 09:15:26 AM,1200 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",131540107-E36 +160340543,63,16013260,Medical Incident,02/03/2016,02/02/2016,02/03/2016 07:12:47 AM,02/03/2016 07:14:16 AM,02/03/2016 07:15:23 AM,02/03/2016 07:15:34 AM,02/03/2016 07:32:09 AM,02/03/2016 07:44:58 AM,02/03/2016 08:23:34 AM,Code 2 Transport,02/03/2016 08:53:44 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160340543-63 +130920112,AM12,13030746,Medical Incident,04/02/2013,04/02/2013,04/02/2013 09:47:31 AM,04/02/2013 09:49:12 AM,04/02/2013 09:49:47 AM,04/02/2013 09:50:28 AM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,Unable to Locate,04/02/2013 10:01:52 AM,500 Block of BRANNAN ST,SF,94107,B03,8,2241,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7774865325812, -122.397691886789)",130920112-AM12 +140950296,RC1,14032043,Medical Incident,04/05/2014,04/05/2014,04/05/2014 05:41:53 PM,04/05/2014 05:43:19 PM,04/05/2014 05:46:37 PM,04/05/2014 05:48:15 PM,04/05/2014 05:51:17 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Code 2 Transport,04/05/2014 06:08:16 PM,800 Block of JACKSON ST,SAN FRANCISCO,94108,B01,2,136,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",140950296-RC1 +122310300,E01,12076711,Medical Incident,08/18/2012,08/18/2012,08/18/2012 07:42:00 PM,08/18/2012 07:42:45 PM,08/18/2012 07:45:02 PM,08/18/2012 07:45:50 PM,08/18/2012 07:49:13 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 07:55:25 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122310300-E01 +131020031,KM15,13034154,Medical Incident,04/12/2013,04/11/2013,04/12/2013 03:32:36 AM,04/12/2013 03:34:26 AM,04/12/2013 03:35:22 AM,04/12/2013 03:37:44 AM,04/12/2013 03:44:42 AM,04/12/2013 03:57:37 AM,04/12/2013 04:14:59 AM,Code 2 Transport,04/12/2013 04:51:05 AM,0 Block of MAXWELL CT,SF,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Mission,"(37.7669025720969, -122.423141850936)",131020031-KM15 +140810292,RC3,14027458,Medical Incident,03/22/2014,03/22/2014,03/22/2014 06:53:47 PM,03/22/2014 06:54:06 PM,03/22/2014 07:02:24 PM,03/22/2014 07:03:02 PM,03/22/2014 07:11:12 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Code 2 Transport,03/22/2014 07:32:55 PM,200 Block of HAHN ST,SAN FRANCISCO,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",140810292-RC3 +120200210,95,12006706,Medical Incident,01/20/2012,01/20/2012,01/20/2012 02:09:38 PM,01/20/2012 02:10:15 PM,01/20/2012 02:10:25 PM,01/20/2012 02:10:34 PM,01/20/2012 02:14:22 PM,01/20/2012 02:38:15 PM,01/20/2012 02:51:44 PM,Code 2 Transport,01/20/2012 03:23:58 PM,IRVING ST/14TH AV,SF,94122,B08,22,7366,3,2,2,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7638016485067, -122.471667792686)",120200210-95 +160190385,AM24,16007475,Medical Incident,01/19/2016,01/18/2016,01/19/2016 04:23:05 AM,01/19/2016 04:25:53 AM,01/19/2016 04:26:09 AM,01/19/2016 04:26:51 AM,01/19/2016 04:36:47 AM,01/19/2016 05:02:00 AM,01/19/2016 05:35:17 AM,Code 2 Transport,01/19/2016 05:54:17 AM,100 Block of COLBY ST,San Francisco,94134,B09,42,6355,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7282977345446, -122.41378862357)",160190385-AM24 +102600158,RC1,10082148,Medical Incident,09/17/2010,09/17/2010,09/17/2010 12:00:27 PM,09/17/2010 12:02:31 PM,09/17/2010 12:03:44 PM,09/17/2010 12:07:00 PM,09/17/2010 12:09:44 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 12:18:09 PM,800 Block of CLAY ST,SF,94108,B01,13,1313,E,E,3,true,,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7942850258424, -122.406574058341)",102600158-RC1 +132460247,D3,13083053,Structure Fire,09/03/2013,09/03/2013,09/03/2013 03:30:24 PM,09/03/2013 03:31:22 PM,09/03/2013 03:31:45 PM,09/03/2013 03:32:50 PM,09/03/2013 03:37:57 PM,04/25/2016 01:50:59 PM,04/25/2016 01:50:59 PM,Other,09/03/2013 03:39:49 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,false,Alarm,1,CHIEF,8,3,6,South of Market,"(37.7821372491619, -122.397814506334)",132460247-D3 +160442207,KM05,16017741,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:43:41 PM,02/13/2016 03:44:37 PM,02/13/2016 03:45:36 PM,02/13/2016 03:46:13 PM,02/13/2016 03:56:10 PM,02/13/2016 04:09:44 PM,02/13/2016 04:29:46 PM,Code 2 Transport,02/13/2016 05:23:16 PM,100 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7373636780892, -122.422094532922)",160442207-KM05 +130130081,B01,13004339,Alarms,01/13/2013,01/12/2013,01/13/2013 03:40:37 AM,01/13/2013 03:42:04 AM,01/13/2013 03:43:06 AM,01/13/2013 03:45:24 AM,01/13/2013 03:46:26 AM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/13/2013 03:49:39 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,CHIEF,2,1,3,North Beach,"(37.7980497141877, -122.406829909619)",130130081-B01 +160743540,67,16029467,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:15:28 PM,03/14/2016 08:15:57 PM,03/14/2016 08:16:59 PM,03/14/2016 08:17:10 PM,03/14/2016 08:27:25 PM,03/14/2016 08:51:23 PM,03/14/2016 08:56:33 PM,Code 2 Transport,03/14/2016 09:32:17 PM,1300 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3625,2,2,2,false,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7795136005399, -122.432784844959)",160743540-67 +113060294,E19,11101738,Structure Fire,11/02/2011,11/02/2011,11/02/2011 05:13:46 PM,11/02/2011 05:13:46 PM,11/02/2011 05:13:51 PM,11/02/2011 05:13:59 PM,11/02/2011 05:15:32 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Fire,11/02/2011 05:16:12 PM,39TH AV/SLOAT BL,SF,94132,B08,19,7615,3,3,3,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7337708444532, -122.496635995855)",113060294-E19 +120360164,74,12011975,Medical Incident,02/05/2012,02/05/2012,02/05/2012 11:27:14 AM,02/05/2012 11:27:49 AM,02/05/2012 11:28:07 AM,02/05/2012 11:28:20 AM,02/05/2012 11:30:07 AM,02/05/2012 11:47:32 AM,02/05/2012 11:57:14 AM,Code 2 Transport,02/05/2012 12:29:57 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",120360164-74 +110880170,T19,11029039,Odor (Strange / Unknown),03/29/2011,03/29/2011,03/29/2011 12:08:52 PM,03/29/2011 12:12:24 PM,03/29/2011 12:12:41 PM,03/29/2011 12:13:51 PM,03/29/2011 12:16:01 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 12:28:55 PM,0 Block of MELBA AVE,SF,94132,B08,19,8733,3,3,3,false,,1,TRUCK,2,8,7,Sunset/Parkside,"(37.731861855303, -122.478229737952)",110880170-T19 +123240245,T06,12107777,Structure Fire,11/19/2012,11/19/2012,11/19/2012 02:36:07 PM,11/19/2012 02:36:07 PM,11/19/2012 02:36:32 PM,11/19/2012 02:37:25 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Fire,11/19/2012 02:39:27 PM,16TH ST/GUERRERO ST,SF,94103,B02,6,5235,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.7647834522541, -122.424102685064)",123240245-T06 +102590174,E42,10081799,Medical Incident,09/16/2010,09/16/2010,09/16/2010 11:11:06 AM,09/16/2010 11:11:23 AM,09/16/2010 11:11:38 AM,09/16/2010 11:12:11 AM,09/16/2010 11:16:50 AM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 11:17:15 AM,300 Block of SILVER AVE,SF,94112,B09,32,6113,3,3,3,true,,1,ENGINE,3,9,11,Excelsior,"(37.7285946897788, -122.428439970042)",102590174-E42 +102420090,89,10076251,Traffic Collision,08/30/2010,08/30/2010,08/30/2010 09:16:36 AM,08/30/2010 09:17:32 AM,08/30/2010 09:17:45 AM,08/30/2010 09:18:12 AM,08/30/2010 09:22:43 AM,08/30/2010 09:40:10 AM,08/30/2010 09:43:11 AM,Code 2 Transport,08/30/2010 10:12:07 AM,TURK BL/STANYAN BL,SF,94118,B07,21,4557,2,2,2,true,,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7775992781141, -122.455216941832)",102420090-89 +160293081,89,16011545,Medical Incident,01/29/2016,01/29/2016,01/29/2016 07:29:22 PM,01/29/2016 07:30:22 PM,01/29/2016 07:30:51 PM,01/29/2016 07:31:34 PM,01/29/2016 07:36:47 PM,01/29/2016 07:49:42 PM,01/29/2016 08:05:17 PM,Code 2 Transport,01/29/2016 08:42:16 PM,9TH ST/MCLEA CT,San Francisco,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7717321060888, -122.409083148236)",160293081-89 +160320416,AM02,16012446,Medical Incident,02/01/2016,01/31/2016,02/01/2016 05:26:01 AM,02/01/2016 05:28:18 AM,02/01/2016 05:28:43 AM,02/01/2016 05:29:38 AM,02/01/2016 05:40:38 AM,02/01/2016 05:47:01 AM,02/01/2016 06:04:32 AM,Code 2 Transport,02/01/2016 06:42:58 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160320416-AM02 +160533041,89,16021350,Medical Incident,02/22/2016,02/22/2016,02/22/2016 07:22:07 PM,02/22/2016 07:24:05 PM,02/22/2016 07:25:01 PM,02/22/2016 07:25:13 PM,02/22/2016 07:34:04 PM,02/22/2016 07:49:13 PM,02/22/2016 08:08:54 PM,Code 2 Transport,02/22/2016 08:19:53 PM,BOSWORTH ST/DIAMOND ST,San Francisco,94131,B06,26,8146,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",160533041-89 +132770049,55,13093974,Medical Incident,10/04/2013,10/03/2013,10/04/2013 04:30:18 AM,10/04/2013 04:32:20 AM,10/04/2013 04:32:39 AM,10/04/2013 04:34:04 AM,10/04/2013 04:33:45 AM,10/04/2013 05:08:21 AM,10/04/2013 05:25:44 AM,Code 2 Transport,10/04/2013 05:41:37 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",132770049-55 +160051822,KM08,16002008,Medical Incident,01/05/2016,01/05/2016,01/05/2016 01:24:58 PM,01/05/2016 01:26:57 PM,01/05/2016 01:27:22 PM,01/05/2016 01:28:13 PM,01/05/2016 01:36:42 PM,01/05/2016 01:53:17 PM,01/05/2016 02:17:54 PM,Code 2 Transport,01/05/2016 02:58:58 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160051822-KM08 +160894021,88,16035529,Citizen Assist / Service Call,03/29/2016,03/29/2016,03/29/2016 11:11:06 PM,03/29/2016 11:13:21 PM,03/29/2016 11:24:20 PM,03/29/2016 11:24:28 PM,03/29/2016 11:30:43 PM,03/29/2016 11:55:23 PM,03/30/2016 12:25:11 AM,Code 2 Transport,03/30/2016 01:01:52 AM,900 Block of PERSIA AVE,San Francisco,94112,B09,43,6156,3,3,3,true,Alarm,1,MEDIC,2,9,11,Excelsior,"(37.7194711719256, -122.428434619546)",160894021-88 +160140164,89,16005409,Medical Incident,01/14/2016,01/13/2016,01/14/2016 01:42:56 AM,01/14/2016 01:44:03 AM,01/14/2016 01:45:07 AM,01/14/2016 01:45:24 AM,01/14/2016 01:51:38 AM,01/14/2016 02:11:03 AM,01/14/2016 02:23:12 AM,Code 2 Transport,01/14/2016 02:56:40 AM,100 Block of CAMBON DR,San Francisco,94132,B08,19,8428,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",160140164-89 +140840292,88,14028406,Medical Incident,03/25/2014,03/25/2014,03/25/2014 07:04:17 PM,03/25/2014 07:04:43 PM,03/25/2014 07:05:55 PM,03/25/2014 07:06:28 PM,03/25/2014 07:10:46 PM,03/25/2014 07:29:21 PM,03/25/2014 08:01:13 PM,Code 2 Transport,03/25/2014 08:18:52 PM,MISSION ST/18TH ST,SAN FRANCISCO,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",140840292-88 +112620357,54,11086600,Medical Incident,09/19/2011,09/19/2011,09/19/2011 07:09:11 PM,09/19/2011 07:10:06 PM,09/19/2011 07:10:51 PM,09/19/2011 07:11:19 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 07:11:49 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,MEDIC,4,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",112620357-54 +113420247,T03,11113443,Medical Incident,12/08/2011,12/08/2011,12/08/2011 03:38:36 PM,12/08/2011 03:40:14 PM,12/08/2011 03:40:27 PM,12/08/2011 03:41:33 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/08/2011 03:44:29 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",113420247-T03 +160121267,60,16004737,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:44:33 AM,01/12/2016 10:45:09 AM,01/12/2016 10:46:08 AM,01/12/2016 10:46:18 AM,01/12/2016 10:51:22 AM,01/12/2016 11:05:59 AM,01/12/2016 11:08:03 AM,Code 2 Transport,01/12/2016 11:48:34 AM,3600 Block of 26TH ST,San Francisco,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7488664417822, -122.421932997192)",160121267-60 +132450375,81,13082844,Medical Incident,09/02/2013,09/02/2013,09/02/2013 11:21:01 PM,09/02/2013 11:21:30 PM,09/02/2013 11:21:46 PM,09/02/2013 11:21:56 PM,09/02/2013 11:23:27 PM,09/02/2013 11:42:30 PM,09/03/2013 12:03:55 AM,Code 2 Transport,09/03/2013 12:12:18 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",132450375-81 +160362343,62,16014295,Medical Incident,02/05/2016,02/05/2016,02/05/2016 02:36:42 PM,02/05/2016 02:37:51 PM,02/05/2016 02:39:37 PM,02/05/2016 02:39:37 PM,02/05/2016 02:47:14 PM,02/05/2016 03:10:06 PM,02/05/2016 03:32:07 PM,Code 2 Transport,02/05/2016 03:58:25 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160362343-62 +122570140,E13,12084915,Medical Incident,09/13/2012,09/13/2012,09/13/2012 11:48:06 AM,09/13/2012 11:49:21 AM,09/13/2012 11:50:20 AM,09/13/2012 11:50:33 AM,09/13/2012 12:00:15 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Patient Declined Transport,09/13/2012 11:57:05 AM,PACIFIC AV/SANSOME ST,SF,94111,B01,13,1212,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.797504944425, -122.402040985024)",122570140-E13 +123330137,E23,12110620,Electrical Hazard,11/28/2012,11/28/2012,11/28/2012 10:38:29 AM,11/28/2012 10:40:33 AM,11/28/2012 10:41:09 AM,11/28/2012 10:42:10 AM,11/28/2012 10:51:27 AM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Fire,11/28/2012 10:53:05 AM,42ND AV/ORTEGA ST,SF,94116,B08,23,7646,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7512863954104, -122.500987488737)",123330137-E23 +122880074,E44,12095190,Medical Incident,10/14/2012,10/13/2012,10/14/2012 05:42:43 AM,10/14/2012 05:43:53 AM,10/14/2012 05:44:12 AM,10/14/2012 05:46:05 AM,10/14/2012 05:49:58 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 06:10:05 AM,0 Block of HERITAGE LN,SF,94134,B09,44,6252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7098510364224, -122.412232276093)",122880074-E44 +132770266,E05,13094145,Medical Incident,10/04/2013,10/04/2013,10/04/2013 02:59:28 PM,10/04/2013 03:01:05 PM,10/04/2013 03:01:34 PM,10/04/2013 03:02:27 PM,10/04/2013 03:03:52 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 03:08:07 PM,1200 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7809536061691, -122.432303015867)",132770266-E05 +120330353,T03,12011058,Structure Fire,02/02/2012,02/02/2012,02/02/2012 08:47:36 PM,02/02/2012 08:47:36 PM,02/02/2012 08:47:51 PM,02/02/2012 08:48:54 PM,02/02/2012 08:49:56 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/02/2012 08:50:09 PM,VAN NESS AV/BUSH ST,SF,94109,B04,3,3156,3,3,3,false,Alarm,1,TRUCK,1,4,2,Nob Hill,"(37.7884896423018, -122.421948587259)",120330353-T03 +121030397,T16,12034304,Alarms,04/12/2012,04/12/2012,04/12/2012 11:53:04 PM,04/12/2012 11:55:56 PM,04/12/2012 11:56:06 PM,04/12/2012 11:58:11 PM,04/13/2012 12:02:54 AM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/13/2012 12:08:14 AM,1000 Block of CHESTNUT ST,SF,94109,B01,28,1613,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8027567621753, -122.420626980703)",121030397-T16 +160912123,75,16036108,Medical Incident,03/31/2016,03/31/2016,03/31/2016 02:47:51 PM,03/31/2016 02:50:10 PM,03/31/2016 02:50:29 PM,03/31/2016 02:50:35 PM,03/31/2016 03:03:13 PM,03/31/2016 03:18:08 PM,03/31/2016 03:48:50 PM,Code 2 Transport,03/31/2016 04:03:48 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160912123-75 +160160388,71,16006280,Medical Incident,01/16/2016,01/15/2016,01/16/2016 03:08:01 AM,01/16/2016 03:08:01 AM,01/16/2016 03:08:12 AM,01/16/2016 03:08:17 AM,01/16/2016 03:15:20 AM,01/16/2016 03:33:51 AM,01/16/2016 03:33:51 AM,Code 2 Transport,01/16/2016 04:27:42 AM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160160388-71 +112700045,E36,11089122,Medical Incident,09/27/2011,09/26/2011,09/27/2011 06:34:11 AM,09/27/2011 06:34:52 AM,09/27/2011 06:35:31 AM,09/27/2011 06:36:52 AM,09/27/2011 06:39:08 AM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/27/2011 06:56:09 AM,0 Block of JULIAN AVE,SF,94103,B02,36,5215,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7673951722732, -122.421202249523)",112700045-E36 +112090264,E06,11069070,Medical Incident,07/28/2011,07/28/2011,07/28/2011 04:30:30 PM,07/28/2011 04:35:55 PM,07/28/2011 04:36:40 PM,07/28/2011 04:37:54 PM,07/28/2011 04:39:38 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 04:57:05 PM,100 Block of COLLINGWOOD ST,SF,94114,B05,6,5415,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7600276029721, -122.435966427346)",112090264-E06 +160010334,53,16000059,Medical Incident,01/01/2016,12/31/2015,01/01/2016 01:11:17 AM,01/01/2016 01:13:37 AM,01/01/2016 01:17:58 AM,01/01/2016 01:18:23 AM,01/01/2016 01:23:21 AM,01/01/2016 01:41:08 AM,01/01/2016 02:11:25 AM,Code 2 Transport,01/01/2016 02:44:40 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160010334-53 +121940034,E03,12064430,Medical Incident,07/12/2012,07/11/2012,07/12/2012 02:27:41 AM,07/12/2012 02:29:14 AM,07/12/2012 02:29:47 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/12/2012 02:30:44 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",121940034-E03 +160213580,82,16008536,Medical Incident,01/21/2016,01/21/2016,01/21/2016 07:59:52 PM,01/21/2016 08:01:32 PM,01/21/2016 08:02:25 PM,01/21/2016 08:02:59 PM,01/21/2016 08:06:45 PM,01/21/2016 08:18:27 PM,01/21/2016 08:22:18 PM,Code 2 Transport,01/21/2016 09:02:27 PM,1900 Block of POST ST,San Francisco,94115,B04,5,3622,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7850500973338, -122.434328328397)",160213580-82 +160840407,AM22,16033243,Medical Incident,03/24/2016,03/23/2016,03/24/2016 05:05:12 AM,03/24/2016 05:06:22 AM,03/24/2016 05:07:27 AM,03/24/2016 05:08:09 AM,03/24/2016 05:20:21 AM,03/24/2016 05:27:01 AM,03/24/2016 05:33:43 AM,Code 2 Transport,03/24/2016 06:12:55 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",160840407-AM22 +110510209,E13,11016908,Medical Incident,02/20/2011,02/20/2011,02/20/2011 01:43:54 PM,02/20/2011 01:44:42 PM,02/20/2011 01:44:52 PM,02/20/2011 01:45:54 PM,02/20/2011 01:47:49 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 02:04:13 PM,700 Block of CLAY ST,SF,94108,B01,13,1313,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.794250188811, -122.405973153434)",110510209-E13 +112040223,55,11067425,Medical Incident,07/23/2011,07/23/2011,07/23/2011 03:13:25 PM,07/23/2011 03:14:19 PM,07/23/2011 03:14:46 PM,07/23/2011 03:14:58 PM,07/23/2011 03:16:49 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 03:19:53 PM,200 Block of SHIPLEY ST,SF,94107,B03,1,2244,3,E,3,true,,1,MEDIC,1,3,6,South of Market,"(37.779377841254, -122.403313163388)",112040223-55 +102730168,B06,10086668,Explosion,09/30/2010,09/30/2010,09/30/2010 12:01:45 PM,09/30/2010 12:04:11 PM,09/30/2010 12:04:54 PM,09/30/2010 12:06:27 PM,09/30/2010 12:10:12 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Other,09/30/2010 12:14:18 PM,5300 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,false,,1,CHIEF,3,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",102730168-B06 +160502978,BT01,16020207,Medical Incident,02/19/2016,02/19/2016,02/19/2016 06:19:32 PM,02/19/2016 06:21:42 PM,02/19/2016 06:44:04 PM,02/19/2016 06:44:04 PM,02/19/2016 07:12:53 PM,02/19/2016 07:12:56 PM,02/19/2016 07:37:17 PM,Code 2 Transport,02/19/2016 08:20:02 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,4,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160502978-BT01 +140670217,66,14022708,Medical Incident,03/08/2014,03/08/2014,03/08/2014 02:49:19 PM,03/08/2014 02:50:45 PM,03/08/2014 02:51:32 PM,03/08/2014 02:52:43 PM,03/08/2014 03:01:32 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Patient Declined Transport,03/08/2014 04:18:29 PM,1100 Block of HOWARD ST,SAN FRANCISCO,94103,B03,1,2314,3,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",140670217-66 +112010340,E36,11066396,Structure Fire,07/20/2011,07/20/2011,07/20/2011 06:30:28 PM,07/20/2011 06:31:33 PM,07/20/2011 06:31:47 PM,07/20/2011 06:35:38 PM,07/20/2011 06:38:19 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/20/2011 09:15:57 PM,400 Block of WALLER ST,SF,94117,B05,6,3526,3,3,3,true,,2,ENGINE,8,5,5,Hayes Valley,"(37.7711232914316, -122.431093526308)",112010340-E36 +122950036,81,12097716,Medical Incident,10/21/2012,10/20/2012,10/21/2012 01:54:31 AM,10/21/2012 01:56:52 AM,10/21/2012 02:01:19 AM,10/21/2012 02:01:29 AM,10/21/2012 02:15:25 AM,10/21/2012 02:21:54 AM,10/21/2012 02:38:12 AM,Code 2 Transport,10/21/2012 03:05:22 AM,200 Block of 13TH ST,SF,94103,B02,36,5123,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",122950036-81 +160130814,67,16005099,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:36:25 AM,01/13/2016 08:38:36 AM,01/13/2016 08:41:49 AM,01/13/2016 08:41:49 AM,01/13/2016 08:52:04 AM,01/13/2016 09:06:25 AM,01/13/2016 09:11:42 AM,Code 2 Transport,01/13/2016 10:14:28 AM,14TH ST/MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",160130814-67 +123140313,55,12104603,Medical Incident,11/09/2012,11/09/2012,11/09/2012 06:30:43 PM,11/09/2012 06:31:33 PM,11/09/2012 06:39:13 PM,11/09/2012 06:45:19 PM,11/09/2012 06:57:31 PM,11/09/2012 07:09:42 PM,11/09/2012 07:28:37 PM,Code 2 Transport,11/09/2012 08:00:44 PM,0 Block of HARDING RD,SF,94132,B08,19,8713,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248174091742, -122.497764890771)",123140313-55 +133410142,FB1,13115578,Other,12/07/2013,12/07/2013,12/07/2013 10:15:48 AM,12/07/2013 10:15:48 AM,12/07/2013 10:15:48 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/07/2013 10:18:35 AM,3200 Block of VAN NESS AVE,SF,94109,B04,28,3143,3,3,3,false,Alarm,1,SUPPORT,1,1,2,Russian Hill,"(37.805550799113, -122.425219186379)",133410142-FB1 +122750039,66,12090618,Medical Incident,10/01/2012,09/30/2012,10/01/2012 02:47:21 AM,10/01/2012 02:48:09 AM,10/01/2012 02:48:22 AM,10/01/2012 02:49:02 AM,10/01/2012 02:54:12 AM,10/01/2012 03:20:50 AM,10/01/2012 03:37:57 AM,Code 2 Transport,10/01/2012 04:00:25 AM,300 Block of CORNWALL ST,SF,94118,B07,31,7125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7848265144375, -122.462945569942)",122750039-66 +102830383,68,10090232,Medical Incident,10/10/2010,10/10/2010,10/10/2010 10:03:03 PM,10/10/2010 10:03:53 PM,10/10/2010 10:04:01 PM,10/10/2010 10:04:44 PM,10/10/2010 10:09:57 PM,10/10/2010 10:30:34 PM,10/10/2010 10:57:24 PM,Code 2 Transport,10/10/2010 11:27:42 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",102830383-68 +132260057,89,13076197,Medical Incident,08/14/2013,08/13/2013,08/14/2013 05:28:40 AM,08/14/2013 05:29:16 AM,08/14/2013 05:29:33 AM,08/14/2013 05:30:14 AM,08/14/2013 05:35:09 AM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Patient Declined Transport,08/14/2013 05:47:47 AM,800 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7591210187575, -122.390401159216)",132260057-89 +160410408,81,16016309,Medical Incident,02/10/2016,02/09/2016,02/10/2016 05:29:48 AM,02/10/2016 05:30:38 AM,02/10/2016 05:31:38 AM,02/10/2016 05:31:52 AM,02/10/2016 05:38:45 AM,02/10/2016 05:53:33 AM,02/10/2016 06:04:13 AM,Code 2 Transport,02/10/2016 06:37:41 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160410408-81 +121580122,T08,12052230,Medical Incident,06/06/2012,06/06/2012,06/06/2012 10:25:27 AM,06/06/2012 10:27:34 AM,06/06/2012 10:32:23 AM,06/06/2012 10:33:07 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/06/2012 10:33:37 AM,600 Block of NELSON RISING LN,SF,94158,B03,8,2264,2,2,2,false,Potentially Life-Threatening,1,TRUCK,3,3,6,Mission Bay,"(37.7695557600647, -122.391895275784)",121580122-T08 +160242656,50,16009618,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:47:33 PM,01/24/2016 05:47:33 PM,01/24/2016 05:48:55 PM,01/24/2016 05:49:01 PM,01/24/2016 06:08:20 PM,01/24/2016 06:21:45 PM,01/24/2016 06:38:48 PM,Code 2 Transport,01/24/2016 06:57:55 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160242656-50 +160861930,KM04,16034192,Medical Incident,03/26/2016,03/26/2016,03/26/2016 02:01:36 PM,03/26/2016 02:01:36 PM,03/26/2016 02:02:51 PM,03/26/2016 02:03:17 PM,03/26/2016 02:09:38 PM,03/26/2016 02:24:33 PM,03/26/2016 02:44:49 PM,Code 2 Transport,03/26/2016 03:18:58 PM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",160861930-KM04 +160240889,86,16009469,Medical Incident,01/24/2016,01/24/2016,01/24/2016 08:48:43 AM,01/24/2016 08:50:31 AM,01/24/2016 08:50:54 AM,01/24/2016 08:51:05 AM,01/24/2016 09:10:22 AM,01/24/2016 09:32:28 AM,01/24/2016 09:51:58 AM,Code 2 Transport,01/24/2016 10:22:50 AM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",160240889-86 +102310030,T07,10072584,Alarms,08/19/2010,08/18/2010,08/19/2010 04:22:50 AM,08/19/2010 04:23:42 AM,08/19/2010 04:23:52 AM,08/19/2010 04:25:59 AM,08/19/2010 04:28:05 AM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/19/2010 04:34:26 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,TRUCK,2,2,9,Mission,"(37.7628776667056, -122.419528998826)",102310030-T07 +131760274,89,13059783,Medical Incident,06/25/2013,06/25/2013,06/25/2013 04:11:23 PM,06/25/2013 04:12:35 PM,06/25/2013 04:14:45 PM,06/25/2013 04:14:50 PM,06/25/2013 04:28:17 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,No Merit,06/25/2013 04:37:57 PM,200 Block of BARNEVELD AVE,SF,94124,B10,9,6412,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7450485716234, -122.402839684407)",131760274-89 +121470032,55,12048679,Structure Fire,05/26/2012,05/25/2012,05/26/2012 03:06:55 AM,05/26/2012 03:07:26 AM,05/26/2012 03:08:02 AM,05/26/2012 03:10:17 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/26/2012 03:18:42 AM,100 Block of MONTEREY BLVD,SF,94131,B09,26,8214,3,3,3,true,Fire,1,MEDIC,10,9,7,West of Twin Peaks,"(37.7316893715611, -122.438596825877)",121470032-55 +132930075,E15,13099631,Medical Incident,10/20/2013,10/19/2013,10/20/2013 07:17:45 AM,10/20/2013 07:18:08 AM,10/20/2013 07:18:50 AM,10/20/2013 07:21:04 AM,10/20/2013 07:23:21 AM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/20/2013 07:25:23 AM,100 Block of OCEAN AVE,SF,94112,B09,15,8274,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7234953610946, -122.440465803423)",132930075-E15 +121540244,E07,12051037,Outside Fire,06/02/2012,06/02/2012,06/02/2012 04:20:15 PM,06/02/2012 04:22:29 PM,06/02/2012 04:22:47 PM,06/02/2012 04:24:05 PM,06/02/2012 04:30:02 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Fire,06/02/2012 04:31:12 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Fire,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",121540244-E07 +113380223,E09,11112045,Medical Incident,12/04/2011,12/04/2011,12/04/2011 01:58:35 PM,12/04/2011 02:00:32 PM,12/04/2011 02:00:45 PM,12/04/2011 02:01:35 PM,12/04/2011 02:03:15 PM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/04/2011 02:09:42 PM,2900 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5621,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7484547781028, -122.408302107239)",113380223-E09 +112390297,B01,11078969,Alarms,08/27/2011,08/27/2011,08/27/2011 07:01:53 PM,08/27/2011 07:02:39 PM,08/27/2011 07:02:53 PM,08/27/2011 07:05:20 PM,08/27/2011 07:05:25 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 07:07:38 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,,1,CHIEF,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",112390297-B01 +160380681,54,16015091,Medical Incident,02/07/2016,02/06/2016,02/07/2016 04:31:34 AM,02/07/2016 04:33:56 AM,02/07/2016 04:34:16 AM,02/07/2016 04:34:34 AM,02/07/2016 04:38:37 AM,02/07/2016 05:12:03 AM,02/07/2016 05:12:13 AM,Code 2 Transport,02/07/2016 05:49:50 AM,HAIGHT ST/COLE ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",160380681-54 +102690315,83,10085418,Medical Incident,09/26/2010,09/26/2010,09/26/2010 06:31:00 PM,09/26/2010 06:31:03 PM,09/26/2010 06:31:46 PM,09/26/2010 06:32:07 PM,09/26/2010 06:48:51 PM,09/26/2010 07:06:35 PM,09/26/2010 07:19:48 PM,Code 2 Transport,09/26/2010 07:46:51 PM,4200 Block of JUDAH ST,SF,94122,B08,23,7723,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7604082847224, -122.507537232671)",102690315-83 +131940104,78,13065891,Medical Incident,07/13/2013,07/13/2013,07/13/2013 09:51:46 AM,07/13/2013 09:53:37 AM,07/13/2013 09:53:57 AM,07/13/2013 09:54:23 AM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,No Merit,07/13/2013 10:00:30 AM,OAK ST/VAN NESS AV,SF,94102,B02,36,3211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7754222208411, -122.419396890552)",131940104-78 +160831910,75,16032951,Medical Incident,03/23/2016,03/23/2016,03/23/2016 01:00:51 PM,03/23/2016 01:02:21 PM,03/23/2016 01:02:58 PM,03/23/2016 01:03:16 PM,03/23/2016 01:17:54 PM,03/23/2016 01:26:01 PM,03/23/2016 01:42:32 PM,Code 2 Transport,03/23/2016 02:06:51 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160831910-75 +102760365,56,10087894,Medical Incident,10/03/2010,10/03/2010,10/03/2010 09:11:02 PM,10/03/2010 09:14:49 PM,10/03/2010 09:15:43 PM,10/03/2010 09:16:02 PM,10/03/2010 09:22:02 PM,10/03/2010 09:38:34 PM,10/03/2010 10:22:23 PM,Code 2 Transport,10/03/2010 10:50:18 PM,300 Block of 6TH ST,SF,94107,B03,1,2253,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7783257854366, -122.405292833796)",102760365-56 +160603178,60,16024057,Medical Incident,02/29/2016,02/29/2016,02/29/2016 07:41:15 PM,02/29/2016 07:44:01 PM,02/29/2016 07:44:25 PM,02/29/2016 07:44:41 PM,02/29/2016 07:48:14 PM,02/29/2016 07:57:09 PM,02/29/2016 08:11:37 PM,Code 2 Transport,02/29/2016 08:58:55 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",160603178-60 +122760002,E16,12090965,Electrical Hazard,10/02/2012,10/01/2012,10/02/2012 12:11:30 AM,10/02/2012 12:15:46 AM,10/02/2012 12:16:31 AM,10/02/2012 12:18:17 AM,10/02/2012 12:23:22 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 12:38:12 AM,3500 Block of BAKER ST,SF,94123,B04,16,4316,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8037419514407, -122.447072180508)",122760002-E16 +102380363,E41,10075211,Structure Fire,08/26/2010,08/26/2010,08/26/2010 09:27:26 PM,08/26/2010 09:27:27 PM,08/26/2010 09:27:32 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 09:29:10 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,ENGINE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",102380363-E41 +133150201,86,13107080,Medical Incident,11/11/2013,11/11/2013,11/11/2013 11:59:43 AM,11/11/2013 11:59:43 AM,11/11/2013 12:00:16 PM,11/11/2013 12:00:37 PM,11/11/2013 12:09:34 PM,11/11/2013 12:30:33 PM,11/11/2013 12:51:59 PM,Code 2 Transport,11/11/2013 01:23:33 PM,100 Block of LOBOS ST,SF,94112,B09,33,8372,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7148631962455, -122.457556576704)",133150201-86 +122020137,E22,12067072,Medical Incident,07/20/2012,07/20/2012,07/20/2012 10:04:17 AM,07/20/2012 10:05:50 AM,07/20/2012 10:06:15 AM,07/20/2012 10:07:26 AM,07/20/2012 10:10:17 AM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 10:29:09 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",122020137-E22 +110380208,KM02,11012597,Traffic Collision,02/07/2011,02/07/2011,02/07/2011 12:12:26 PM,02/07/2011 12:12:45 PM,02/07/2011 12:14:44 PM,02/07/2011 12:15:21 PM,02/07/2011 12:19:35 PM,02/07/2011 12:42:38 PM,02/07/2011 12:59:35 PM,Code 2 Transport,02/07/2011 01:29:35 PM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,2,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",110380208-KM02 +113440076,E03,11114033,Medical Incident,12/10/2011,12/09/2011,12/10/2011 06:58:37 AM,12/10/2011 06:59:15 AM,12/10/2011 06:59:54 AM,04/25/2016 02:01:14 PM,12/10/2011 07:04:57 AM,04/25/2016 02:01:14 PM,04/25/2016 02:01:14 PM,Other,12/10/2011 07:01:52 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",113440076-E03 +113240071,82,11107518,Medical Incident,11/20/2011,11/19/2011,11/20/2011 04:33:23 AM,11/20/2011 04:33:47 AM,11/20/2011 04:34:27 AM,11/20/2011 04:34:46 AM,11/20/2011 04:44:24 AM,11/20/2011 05:05:23 AM,11/20/2011 05:21:50 AM,Code 2 Transport,11/20/2011 05:35:43 AM,100 Block of DELTA ST,SF,94134,B10,44,6311,3,3,3,true,,1,MEDIC,2,9,10,McLaren Park,"(37.7161899028319, -122.40823080546)",113240071-82 +160421032,59,16016797,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:34:03 AM,02/11/2016 09:37:20 AM,02/11/2016 09:37:40 AM,02/11/2016 09:39:46 AM,02/11/2016 09:48:27 AM,02/11/2016 09:59:52 AM,02/11/2016 10:20:02 AM,Code 2 Transport,02/11/2016 11:01:41 AM,500 Block of ALEMANY SB BL,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7321672240642, -122.421283760907)",160421032-59 +140560047,E51,14018790,Structure Fire,02/25/2014,02/24/2014,02/25/2014 05:04:34 AM,02/25/2014 05:05:24 AM,02/25/2014 05:06:26 AM,02/25/2014 05:08:28 AM,02/25/2014 05:11:23 AM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,Fire,02/25/2014 05:12:38 AM,0 Block of CERVANTES BLVD,SF,94123,B04,16,3564,3,3,3,true,Fire,1,ENGINE,4,4,2,Marina,"(37.8036341301778, -122.438303387855)",140560047-E51 +102800062,E36,10088915,Medical Incident,10/07/2010,10/06/2010,10/07/2010 07:21:33 AM,10/07/2010 07:23:03 AM,10/07/2010 07:23:26 AM,10/07/2010 07:24:46 AM,10/07/2010 07:25:33 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/07/2010 07:28:40 AM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",102800062-E36 +132010164,E13,13068143,Alarms,07/20/2013,07/20/2013,07/20/2013 11:25:25 AM,07/20/2013 11:26:39 AM,07/20/2013 11:26:46 AM,07/20/2013 11:27:25 AM,07/20/2013 11:27:38 AM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 11:39:58 AM,500 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",132010164-E13 +103650246,T03,10117147,Structure Fire,12/31/2010,12/31/2010,12/31/2010 05:30:38 PM,12/31/2010 05:30:38 PM,12/31/2010 05:30:50 PM,12/31/2010 05:31:48 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 05:33:43 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",103650246-T03 +102970223,E21,10094793,Medical Incident,10/24/2010,10/24/2010,10/24/2010 11:57:47 AM,10/24/2010 11:59:12 AM,10/24/2010 11:59:32 AM,10/24/2010 12:02:34 PM,10/24/2010 12:06:39 PM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 12:16:36 PM,3000 Block of TURK BLVD,SF,94118,B07,21,4557,3,3,3,false,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7776036224907, -122.455644134908)",102970223-E21 +112740085,79,11090529,Medical Incident,10/01/2011,09/30/2011,10/01/2011 05:40:56 AM,10/01/2011 05:41:56 AM,10/01/2011 05:43:13 AM,10/01/2011 05:43:26 AM,10/01/2011 05:45:28 AM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Patient Declined Transport,10/01/2011 06:25:01 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,MEDIC,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",112740085-79 +122920183,RC2,12096740,Structure Fire,10/18/2012,10/18/2012,10/18/2012 12:10:17 PM,10/18/2012 12:10:55 PM,10/18/2012 12:11:01 PM,10/18/2012 12:20:28 PM,10/18/2012 12:26:05 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 12:30:58 PM,1100 Block of SCOTT ST,SF,94115,B05,5,4133,3,3,3,true,Fire,1,RESCUE CAPTAIN,7,5,5,Western Addition,"(37.7803432529788, -122.437097623047)",122920183-RC2 +123590194,E03,12120195,Alarms,12/24/2012,12/24/2012,12/24/2012 02:21:42 PM,12/24/2012 02:23:19 PM,12/24/2012 02:23:31 PM,12/24/2012 02:24:17 PM,12/24/2012 02:33:00 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 02:41:34 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",123590194-E03 +160472250,KM11,16018973,Medical Incident,02/16/2016,02/16/2016,02/16/2016 02:54:23 PM,02/16/2016 02:54:23 PM,02/16/2016 02:58:07 PM,02/16/2016 02:58:44 PM,02/16/2016 03:06:59 PM,02/16/2016 03:14:42 PM,02/16/2016 03:30:46 PM,Code 2 Transport,02/16/2016 03:54:37 PM,OFARRELL ST/POLK ST,San Francisco,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",160472250-KM11 +120200409,65,12006877,Medical Incident,01/20/2012,01/20/2012,01/20/2012 09:46:30 PM,01/20/2012 09:48:07 PM,01/20/2012 09:48:18 PM,01/20/2012 09:48:51 PM,01/20/2012 09:56:17 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Unable to Locate,01/20/2012 10:00:32 PM,EDDY ST/MASON ST,SF,94102,B03,1,1366,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",120200409-65 +140070211,77,14002508,Medical Incident,01/07/2014,01/07/2014,01/07/2014 01:27:47 PM,01/07/2014 01:28:28 PM,01/07/2014 01:29:28 PM,01/07/2014 01:30:03 PM,01/07/2014 01:52:57 PM,01/07/2014 02:04:11 PM,01/07/2014 02:35:52 PM,Code 2 Transport,01/07/2014 02:43:10 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",140070211-77 +132840120,E03,13096563,Medical Incident,10/11/2013,10/11/2013,10/11/2013 10:23:23 AM,10/11/2013 10:24:19 AM,10/11/2013 10:24:28 AM,10/11/2013 10:24:37 AM,10/11/2013 10:28:08 AM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/11/2013 10:47:26 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132840120-E03 +131430301,E23,13048597,Structure Fire,05/23/2013,05/23/2013,05/23/2013 06:02:27 PM,05/23/2013 06:03:46 PM,05/23/2013 06:04:10 PM,05/23/2013 06:05:12 PM,05/23/2013 06:06:23 PM,04/25/2016 01:52:39 PM,04/25/2016 01:52:39 PM,Other,05/23/2013 08:18:01 PM,4300 Block of KIRKHAM ST,SF,94122,B08,23,7717,3,3,3,false,Fire,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7585441184385, -122.507405939677)",131430301-E23 +112680176,99,11088568,Medical Incident,09/25/2011,09/25/2011,09/25/2011 12:02:48 PM,09/25/2011 12:03:28 PM,09/25/2011 12:03:45 PM,09/25/2011 12:03:53 PM,09/25/2011 12:10:54 PM,09/25/2011 12:22:36 PM,09/25/2011 12:48:30 PM,Code 2 Transport,09/25/2011 01:00:40 PM,200 Block of MUNICH ST,SF,94112,B09,43,6163,3,3,3,true,,1,MEDIC,1,9,11,Excelsior,"(37.721623443374, -122.426180850853)",112680176-99 +122700199,E38,12089136,Citizen Assist / Service Call,09/26/2012,09/26/2012,09/26/2012 03:11:30 PM,09/26/2012 03:12:24 PM,09/26/2012 03:12:33 PM,09/26/2012 03:13:40 PM,09/26/2012 03:15:12 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/26/2012 03:17:38 PM,SACRAMENTO ST/FILLMORE ST,SF,94115,B04,38,3544,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7898369713314, -122.43402709034)",122700199-E38 +111580248,E12,11052294,Alarms,06/07/2011,06/07/2011,06/07/2011 03:52:21 PM,06/07/2011 03:53:23 PM,06/07/2011 03:53:29 PM,06/07/2011 03:54:55 PM,06/07/2011 03:57:10 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/07/2011 04:00:08 PM,1500 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",111580248-E12 +111680182,B06,11055394,Structure Fire,06/17/2011,06/17/2011,06/17/2011 01:41:30 PM,06/17/2011 01:42:26 PM,06/17/2011 01:42:50 PM,06/17/2011 01:43:23 PM,06/17/2011 01:47:08 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 01:55:42 PM,500 Block of CHURCH ST,SF,94114,B02,6,5421,3,3,3,false,,1,CHIEF,6,2,8,Castro/Upper Market,"(37.7624845773087, -122.428538964654)",111680182-B06 +160812196,59,16032225,Medical Incident,03/21/2016,03/21/2016,03/21/2016 02:51:09 PM,03/21/2016 02:51:46 PM,03/21/2016 02:52:15 PM,03/21/2016 02:53:06 PM,03/21/2016 03:14:54 PM,03/21/2016 03:31:01 PM,03/21/2016 03:47:57 PM,Code 2 Transport,03/21/2016 04:19:10 PM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160812196-59 +131730068,94,13058607,Medical Incident,06/22/2013,06/21/2013,06/22/2013 07:18:55 AM,06/22/2013 07:20:01 AM,06/22/2013 07:20:17 AM,06/22/2013 07:20:27 AM,04/25/2016 01:52:10 PM,06/22/2013 07:40:01 AM,06/22/2013 07:51:38 AM,Code 2 Transport,06/22/2013 08:19:53 AM,100 Block of APTOS AVE,SF,94127,B09,15,8535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7292555680166, -122.466867374325)",131730068-94 +160192074,KM04,16007666,Medical Incident,01/19/2016,01/19/2016,01/19/2016 02:19:08 PM,01/19/2016 02:21:16 PM,01/19/2016 02:21:33 PM,01/19/2016 02:21:59 PM,01/19/2016 02:35:22 PM,01/19/2016 02:49:31 PM,01/19/2016 03:10:57 PM,Code 2 Transport,01/19/2016 03:37:49 PM,CYRIL MAGNIN ST/MARKET ST,San Francisco,94103,B03,1,1364,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160192074-KM04 +103160337,RA48,10101411,Traffic Collision,11/12/2010,11/12/2010,11/12/2010 08:41:49 PM,11/12/2010 08:42:34 PM,11/12/2010 08:43:10 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,Other,11/12/2010 08:50:07 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,,1,MEDIC,4,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",103160337-RA48 +160393345,68,16015786,Medical Incident,02/08/2016,02/08/2016,02/08/2016 08:23:48 PM,02/08/2016 08:25:20 PM,02/08/2016 08:25:47 PM,02/08/2016 08:26:42 PM,02/08/2016 08:40:09 PM,02/08/2016 08:59:15 PM,02/08/2016 09:20:00 PM,Code 2 Transport,02/08/2016 09:58:25 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160393345-68 +131730346,81,13058855,Medical Incident,06/22/2013,06/22/2013,06/22/2013 09:26:18 PM,06/22/2013 09:28:17 PM,06/22/2013 09:32:42 PM,06/22/2013 09:32:47 PM,06/22/2013 09:38:11 PM,06/22/2013 09:48:34 PM,06/22/2013 10:15:13 PM,Code 2 Transport,06/22/2013 10:16:28 PM,900 Block of POLK ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",131730346-81 +140630397,B04,14021465,Alarms,03/04/2014,03/04/2014,03/04/2014 10:23:36 PM,03/04/2014 10:25:11 PM,03/04/2014 10:25:45 PM,03/04/2014 10:27:03 PM,03/04/2014 10:30:37 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 10:31:36 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",140630397-B04 +140790179,KM10,14026712,Medical Incident,03/20/2014,03/20/2014,03/20/2014 12:40:43 PM,03/20/2014 12:41:51 PM,03/20/2014 12:42:22 PM,03/20/2014 12:44:36 PM,03/20/2014 12:47:08 PM,03/20/2014 01:11:04 PM,04/25/2016 01:47:39 PM,Code 2 Transport,03/20/2014 01:49:52 PM,2100 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5822,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7632442446227, -122.419425525666)",140790179-KM10 +131540383,88,13052334,Structure Fire,06/03/2013,06/03/2013,06/03/2013 09:32:19 PM,06/03/2013 09:33:31 PM,06/03/2013 09:34:02 PM,06/03/2013 09:34:14 PM,06/03/2013 09:36:26 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 09:40:18 PM,26TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,true,Alarm,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7510546072658, -122.398340781947)",131540383-88 +160742230,57,16029376,Medical Incident,03/14/2016,03/14/2016,03/14/2016 02:43:32 PM,03/14/2016 02:43:45 PM,03/14/2016 02:44:51 PM,03/14/2016 02:45:04 PM,03/14/2016 02:47:44 PM,03/14/2016 03:09:02 PM,03/14/2016 03:11:54 PM,Code 3 Transport,03/14/2016 04:19:16 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160742230-57 +110730160,T13,11023990,Structure Fire,03/14/2011,03/14/2011,03/14/2011 11:31:57 AM,03/14/2011 11:32:58 AM,03/14/2011 11:33:32 AM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 11:47:19 AM,100 Block of DRUMM ST,SF,94111,B01,13,1115,3,3,3,false,,1,TRUCK,9,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",110730160-T13 +132100297,B02,13071120,Alarms,07/29/2013,07/29/2013,07/29/2013 05:06:24 PM,07/29/2013 05:07:35 PM,07/29/2013 05:08:11 PM,07/29/2013 05:09:07 PM,07/29/2013 05:12:35 PM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,Other,07/29/2013 05:15:18 PM,900 Block of PIERCE ST,SF,94115,B05,5,3642,3,3,3,false,Alarm,1,CHIEF,2,5,5,Western Addition,"(37.7786701136711, -122.435215027214)",132100297-B02 +121550054,E03,12051207,Medical Incident,06/03/2012,06/02/2012,06/03/2012 02:55:26 AM,06/03/2012 02:56:05 AM,06/03/2012 02:56:32 AM,06/03/2012 02:57:39 AM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 02:59:17 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",121550054-E03 +122740046,55,12090268,Traffic Collision,09/30/2012,09/29/2012,09/30/2012 03:53:07 AM,09/30/2012 03:53:41 AM,09/30/2012 03:54:15 AM,04/25/2016 01:56:32 PM,09/30/2012 04:02:02 AM,09/30/2012 04:10:22 AM,09/30/2012 04:21:23 AM,Code 2 Transport,09/30/2012 03:54:40 AM,100 Block of PAUL AVE,SF,94124,B09,44,6311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.722697633179, -122.397167021381)",122740046-55 +111830211,E22,11060460,Smoke Investigation (Outside),07/02/2011,07/02/2011,07/02/2011 03:31:11 PM,07/02/2011 03:31:56 PM,07/02/2011 03:32:52 PM,07/02/2011 03:34:49 PM,07/02/2011 03:35:52 PM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,07/02/2011 03:37:48 PM,1500 Block of 19TH AVE,SF,94122,B08,22,7423,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7588956344045, -122.476892326601)",111830211-E22 +111440250,T05,11047913,Medical Incident,05/24/2011,05/24/2011,05/24/2011 04:49:44 PM,05/24/2011 04:51:57 PM,05/24/2011 04:53:49 PM,05/24/2011 04:55:39 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/24/2011 04:56:56 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,false,,1,TRUCK,3,2,5,Western Addition,"(37.781585403105, -122.423090188841)",111440250-T05 +160751494,87,16029689,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:45:55 AM,03/15/2016 11:46:46 AM,03/15/2016 11:46:59 AM,03/15/2016 11:47:06 AM,03/15/2016 11:49:16 AM,03/15/2016 12:07:21 PM,03/15/2016 12:22:51 PM,Code 2 Transport,03/15/2016 12:50:24 PM,15TH ST/NOE ST,San Francisco,94114,B05,6,5232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7658616276668, -122.433255474794)",160751494-87 +140960028,75,14032176,Medical Incident,04/06/2014,04/05/2014,04/06/2014 01:27:42 AM,04/06/2014 01:29:21 AM,04/06/2014 01:30:44 AM,04/06/2014 01:30:52 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Other,04/25/2016 01:47:22 PM,KANSAS ST/24TH ST,SAN FRANCISCO,94107,B10,37,2622,E,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7532360272665, -122.402436075845)",140960028-75 +160462634,65,16018595,Medical Incident,02/15/2016,02/15/2016,02/15/2016 05:00:56 PM,02/15/2016 05:01:26 PM,02/15/2016 05:01:50 PM,02/15/2016 05:01:59 PM,02/15/2016 05:10:56 PM,02/15/2016 05:14:15 PM,02/15/2016 05:19:28 PM,Code 2 Transport,02/15/2016 06:07:22 PM,MARKET ST/OFARRELL ST,San Francisco,94103,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,6,Financial District/South Beach,"(37.7867305655456, -122.4045833182)",160462634-65 +110990058,B04,11032769,Structure Fire,04/09/2011,04/08/2011,04/09/2011 04:12:25 AM,04/09/2011 04:13:06 AM,04/09/2011 04:13:34 AM,04/09/2011 04:14:56 AM,04/09/2011 04:17:51 AM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/09/2011 05:27:55 AM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,,1,CHIEF,6,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",110990058-B04 +160061718,54,16002395,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:42:23 PM,01/06/2016 12:43:55 PM,01/06/2016 12:44:11 PM,01/06/2016 12:44:20 PM,01/06/2016 12:50:00 PM,01/06/2016 01:31:31 PM,01/06/2016 01:51:56 PM,Code 2 Transport,01/06/2016 02:04:06 PM,200 Block of GARFIELD ST,San Francisco,94132,B09,33,8433,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7196338742624, -122.464908315092)",160061718-54 +140550229,E41,14018614,Medical Incident,02/24/2014,02/24/2014,02/24/2014 03:23:35 PM,02/24/2014 03:24:09 PM,02/24/2014 03:24:32 PM,04/25/2016 01:48:02 PM,02/24/2014 03:27:08 PM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,Code 2 Transport,02/24/2014 03:36:04 PM,HYDE ST/UNION ST,SF,94109,B01,41,1611,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.7991984384536, -122.419048780367)",140550229-E41 +121080030,E05,12035648,Alarms,04/17/2012,04/16/2012,04/17/2012 04:26:17 AM,04/17/2012 04:27:23 AM,04/17/2012 04:27:31 AM,04/17/2012 04:29:18 AM,04/17/2012 04:31:56 AM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,Other,04/17/2012 04:34:01 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,true,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",121080030-E05 +133410285,68,13115708,Medical Incident,12/07/2013,12/07/2013,12/07/2013 05:33:45 PM,12/07/2013 05:34:39 PM,12/07/2013 05:35:33 PM,12/07/2013 05:35:54 PM,12/07/2013 05:53:53 PM,12/07/2013 06:01:50 PM,12/07/2013 06:10:02 PM,Code 2 Transport,12/07/2013 06:25:15 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",133410285-68 +140010389,E10,14000319,Structure Fire,01/01/2014,01/01/2014,01/01/2014 01:06:47 PM,01/01/2014 01:06:47 PM,01/01/2014 01:07:20 PM,01/01/2014 01:08:25 PM,01/01/2014 01:10:46 PM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 01:11:25 PM,2400 Block of LYON ST,SF,94123,B04,10,4333,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7932944271794, -122.446448206967)",140010389-E10 +140210158,E22,14007163,Medical Incident,01/21/2014,01/21/2014,01/21/2014 12:40:44 PM,01/21/2014 12:42:10 PM,01/21/2014 12:42:39 PM,01/21/2014 12:43:55 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/21/2014 12:44:25 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",140210158-E22 +123000254,57,12099501,Medical Incident,10/26/2012,10/26/2012,10/26/2012 05:06:26 PM,10/26/2012 05:10:31 PM,10/26/2012 05:12:47 PM,10/26/2012 05:13:06 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/26/2012 05:20:46 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",123000254-57 +160492704,57,16019805,Medical Incident,02/18/2016,02/18/2016,02/18/2016 04:52:36 PM,02/18/2016 04:53:30 PM,02/18/2016 04:53:51 PM,02/18/2016 04:54:00 PM,02/18/2016 05:01:23 PM,02/18/2016 05:07:13 PM,02/18/2016 05:30:58 PM,Code 2 Transport,02/18/2016 06:28:48 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160492704-57 +160823838,88,16032755,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:47:01 PM,03/22/2016 09:48:45 PM,03/22/2016 09:50:10 PM,03/22/2016 09:50:57 PM,03/22/2016 10:01:52 PM,03/22/2016 10:11:39 PM,03/22/2016 10:18:35 PM,Code 2 Transport,03/22/2016 10:55:12 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7622785491179, -122.419332516291)",160823838-88 +160843847,53,16033548,Medical Incident,03/24/2016,03/24/2016,03/24/2016 08:40:50 PM,03/24/2016 08:41:53 PM,03/24/2016 08:42:18 PM,03/24/2016 08:42:26 PM,03/24/2016 08:44:50 PM,03/24/2016 09:08:02 PM,03/24/2016 09:26:43 PM,Code 2 Transport,03/24/2016 10:06:09 PM,300 Block of BAY SHORE BLVD,San Francisco,94110,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",160843847-53 +130900361,85,13030276,Medical Incident,03/31/2013,03/31/2013,03/31/2013 11:26:28 PM,03/31/2013 11:28:34 PM,03/31/2013 11:28:58 PM,03/31/2013 11:29:08 PM,03/31/2013 11:37:22 PM,04/01/2013 12:50:41 AM,04/01/2013 01:01:20 AM,Code 2 Transport,04/01/2013 01:32:49 AM,1700 Block of BUSH ST,SF,94109,B04,38,3255,1,1,2,false,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",130900361-85 +160793070,79,16031502,Medical Incident,03/19/2016,03/19/2016,03/19/2016 05:52:03 PM,03/19/2016 05:52:15 PM,03/19/2016 05:52:57 PM,03/19/2016 05:53:10 PM,03/19/2016 06:02:51 PM,03/19/2016 06:24:55 PM,03/19/2016 06:49:18 PM,Code 2 Transport,03/19/2016 07:35:23 PM,800 Block of GARFIELD ST,San Francisco,94132,B09,19,8447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7197041547524, -122.470302710071)",160793070-79 +160680897,62,16027044,Medical Incident,03/08/2016,03/08/2016,03/08/2016 09:13:43 AM,03/08/2016 09:13:43 AM,03/08/2016 09:14:04 AM,03/08/2016 09:14:18 AM,03/08/2016 09:22:40 AM,03/08/2016 09:42:24 AM,03/08/2016 09:47:23 AM,Code 2 Transport,03/08/2016 10:14:09 AM,200 Block of ASHBURY ST,San Francisco,94117,B05,21,4514,2,3,3,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7732528987589, -122.447660921878)",160680897-62 +160531829,AM06,16021221,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:57:00 PM,02/22/2016 01:57:40 PM,02/22/2016 01:58:37 PM,02/22/2016 01:59:42 PM,02/22/2016 02:03:14 PM,02/22/2016 02:26:26 PM,02/22/2016 02:36:58 PM,Code 2 Transport,02/22/2016 03:25:12 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160531829-AM06 +110680187,E02,11022363,Medical Incident,03/09/2011,03/09/2011,03/09/2011 12:23:36 PM,03/09/2011 12:24:32 PM,03/09/2011 12:24:45 PM,03/09/2011 12:25:02 PM,03/09/2011 12:25:56 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/09/2011 12:32:07 PM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,2,2,true,,1,ENGINE,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",110680187-E02 +122410046,KM07,12079658,Medical Incident,08/28/2012,08/27/2012,08/28/2012 05:49:36 AM,08/28/2012 05:51:14 AM,08/28/2012 05:52:03 AM,08/28/2012 05:54:10 AM,08/28/2012 06:00:12 AM,08/28/2012 06:17:31 AM,08/28/2012 06:20:12 AM,Other,08/28/2012 06:47:48 AM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",122410046-KM07 +132280213,E36,13076973,Medical Incident,08/16/2013,08/16/2013,08/16/2013 01:04:31 PM,08/16/2013 01:07:17 PM,08/16/2013 01:07:31 PM,08/16/2013 01:09:04 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,Other,08/16/2013 01:12:09 PM,3200 Block of 17TH ST,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7635887638425, -122.417913861876)",132280213-E36 +122820069,E08,12093256,Medical Incident,10/08/2012,10/08/2012,10/08/2012 08:02:33 AM,10/08/2012 08:03:57 AM,10/08/2012 08:04:32 AM,10/08/2012 08:06:20 AM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/08/2012 08:07:04 AM,200 Block of 2ND ST,SF,94105,B03,1,2147,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7861900595825, -122.397420430314)",122820069-E08 +160160552,KM03,16006301,Medical Incident,01/16/2016,01/15/2016,01/16/2016 04:31:16 AM,01/16/2016 04:33:21 AM,01/16/2016 04:35:34 AM,01/16/2016 04:36:22 AM,01/16/2016 04:56:25 AM,01/16/2016 05:03:54 AM,01/16/2016 05:14:57 AM,Code 2 Transport,01/16/2016 05:35:39 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160160552-KM03 +122540036,E01,12083845,Medical Incident,09/10/2012,09/09/2012,09/10/2012 04:03:36 AM,09/10/2012 04:04:33 AM,09/10/2012 04:05:23 AM,09/10/2012 04:06:57 AM,09/10/2012 04:10:12 AM,04/25/2016 01:56:50 PM,04/25/2016 01:56:50 PM,Other,09/10/2012 04:12:34 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",122540036-E01 +160391958,KM09,16015649,Medical Incident,02/08/2016,02/08/2016,02/08/2016 01:56:53 PM,02/08/2016 01:59:37 PM,02/08/2016 02:00:58 PM,02/08/2016 02:01:45 PM,02/08/2016 02:21:40 PM,02/08/2016 02:21:47 PM,02/08/2016 02:40:19 PM,Code 2 Transport,02/08/2016 03:32:35 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160391958-KM09 +131310373,81,13044395,Medical Incident,05/11/2013,05/11/2013,05/11/2013 09:07:04 PM,05/11/2013 09:08:06 PM,05/11/2013 09:08:15 PM,05/11/2013 09:12:04 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 09:13:38 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",131310373-81 +140160252,E07,14005526,Medical Incident,01/16/2014,01/16/2014,01/16/2014 03:13:41 PM,01/16/2014 03:14:25 PM,01/16/2014 03:16:52 PM,01/16/2014 03:16:52 PM,01/16/2014 03:17:28 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/16/2014 03:28:42 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",140160252-E07 +160742835,59,16029418,Medical Incident,03/14/2016,03/14/2016,03/14/2016 05:06:29 PM,03/14/2016 05:06:29 PM,03/14/2016 05:07:07 PM,03/14/2016 05:07:20 PM,03/14/2016 05:20:03 PM,03/14/2016 05:32:41 PM,03/14/2016 06:03:06 PM,Code 2 Transport,03/14/2016 06:28:36 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160742835-59 +111700256,75,11056106,Medical Incident,06/19/2011,06/19/2011,06/19/2011 05:00:16 PM,06/19/2011 05:01:36 PM,06/19/2011 05:02:03 PM,06/19/2011 05:02:56 PM,06/19/2011 05:25:37 PM,06/19/2011 05:29:39 PM,06/19/2011 05:55:38 PM,Code 2 Transport,06/19/2011 06:23:43 PM,300 Block of SLOAT BLVD,SF,94132,B08,19,7436,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7347800299939, -122.476102308906)",111700256-75 +102420282,RC1,10076403,Medical Incident,08/30/2010,08/30/2010,08/30/2010 05:35:56 PM,08/30/2010 05:36:37 PM,08/30/2010 05:36:47 PM,04/25/2016 02:08:49 PM,08/30/2010 05:39:03 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,No Merit,08/30/2010 05:42:11 PM,VAN NESS AV/MCALLISTER ST,SF,94102,B02,36,3164,3,3,3,true,,1,RESCUE CAPTAIN,1,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",102420282-RC1 +110510259,E28,11016953,Medical Incident,02/20/2011,02/20/2011,02/20/2011 04:14:27 PM,02/20/2011 04:16:00 PM,02/20/2011 04:17:49 PM,02/20/2011 04:19:09 PM,02/20/2011 04:23:57 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 04:44:04 PM,0 Block of BRET HARTE TER,SF,94133,B01,28,1526,1,1,2,false,,1,ENGINE,1,1,2,Russian Hill,"(37.8045693116127, -122.417633453434)",110510259-E28 +140460251,E31,14015719,Medical Incident,02/15/2014,02/15/2014,02/15/2014 03:53:11 PM,02/15/2014 03:54:28 PM,02/15/2014 03:54:54 PM,02/15/2014 03:55:55 PM,02/15/2014 03:58:12 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 03:59:26 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",140460251-E31 +130960283,AM22,13032265,Medical Incident,04/06/2013,04/06/2013,04/06/2013 05:16:18 PM,04/06/2013 05:19:54 PM,04/06/2013 05:20:21 PM,04/06/2013 05:21:18 PM,04/06/2013 05:32:34 PM,04/06/2013 05:53:55 PM,04/06/2013 06:03:52 PM,Code 2 Transport,04/06/2013 06:46:12 PM,1200 Block of MASON ST,SF,94108,B01,2,1415,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7949762517322, -122.411384437499)",130960283-AM22 +121480270,B02,12049190,Structure Fire,05/27/2012,05/27/2012,05/27/2012 05:45:42 PM,05/27/2012 05:46:58 PM,05/27/2012 05:47:24 PM,05/27/2012 05:49:41 PM,05/27/2012 05:56:27 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/27/2012 06:41:50 PM,1200 Block of 38TH AVE,SF,94122,B08,23,7565,3,3,3,false,Fire,1,CHIEF,4,8,4,Sunset/Parkside,"(37.7636013251799, -122.497619164338)",121480270-B02 +112860342,E03,11094866,Medical Incident,10/13/2011,10/13/2011,10/13/2011 05:50:49 PM,10/13/2011 05:52:36 PM,10/13/2011 05:53:03 PM,10/13/2011 05:54:08 PM,10/13/2011 05:57:15 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 06:02:48 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",112860342-E03 +160193886,64,16007824,Medical Incident,01/19/2016,01/19/2016,01/19/2016 11:35:17 PM,01/19/2016 11:35:17 PM,01/19/2016 11:35:28 PM,01/19/2016 11:35:51 PM,01/19/2016 11:40:13 PM,01/19/2016 11:59:40 PM,01/20/2016 12:14:32 AM,Code 2 Transport,01/20/2016 01:14:22 AM,1600 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.7743083992665, -122.443590663405)",160193886-64 +110170077,AM12,11005570,Citizen Assist / Service Call,01/17/2011,01/17/2011,01/17/2011 09:41:02 AM,01/17/2011 09:42:40 AM,01/17/2011 09:42:47 AM,01/17/2011 09:55:53 AM,01/17/2011 10:02:02 AM,01/17/2011 10:15:55 AM,01/17/2011 10:28:09 AM,Code 2 Transport,01/17/2011 11:15:33 AM,1400 Block of CHURCH ST,SF,94131,B06,11,5547,3,3,3,false,,1,PRIVATE,2,6,8,Noe Valley,"(37.7472920159432, -122.427075838614)",110170077-AM12 +112070350,E43,11068530,Medical Incident,07/26/2011,07/26/2011,07/26/2011 11:42:37 PM,07/26/2011 11:43:35 PM,07/26/2011 11:43:48 PM,07/26/2011 11:45:32 PM,07/26/2011 11:48:02 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/26/2011 11:58:11 PM,0 Block of CONCORD ST,SF,94112,B09,43,6221,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.713681459918, -122.443166498675)",112070350-E43 +133010397,84,13102449,Medical Incident,10/28/2013,10/28/2013,10/28/2013 09:53:18 PM,10/28/2013 09:55:26 PM,10/28/2013 09:55:47 PM,10/28/2013 09:56:07 PM,10/28/2013 10:03:00 PM,10/28/2013 10:13:08 PM,10/28/2013 10:24:42 PM,Code 2 Transport,10/28/2013 11:27:20 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",133010397-84 +111750229,E03,11057720,Medical Incident,06/24/2011,06/24/2011,06/24/2011 02:44:21 PM,06/24/2011 02:45:44 PM,06/24/2011 02:49:16 PM,06/24/2011 02:50:47 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Other,06/24/2011 02:50:53 PM,KEARNY ST/NORTH POINT ST,SF,94133,B01,28,1255,1,1,2,true,,1,ENGINE,3,1,3,North Beach,"(37.8073794582677, -122.407303657354)",111750229-E03 +120670076,89,12022124,Medical Incident,03/07/2012,03/06/2012,03/07/2012 07:19:58 AM,03/07/2012 07:20:10 AM,03/07/2012 07:20:36 AM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/07/2012 07:25:07 AM,CHESTNUT ST/LARKIN ST,SF,94109,B04,28,1613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,2,Russian Hill,"(37.8026949243643, -122.42148036462)",120670076-89 +130160181,83,13005440,Medical Incident,01/16/2013,01/16/2013,01/16/2013 01:40:50 PM,01/16/2013 01:42:24 PM,01/16/2013 01:42:59 PM,01/16/2013 01:44:00 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Other,04/25/2016 01:54:47 PM,200 Block of 18TH AVE,SF,94121,B07,31,7162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7832883734669, -122.477510920465)",130160181-83 +140320403,E28,14011040,Gas Leak (Natural and LP Gases),02/01/2014,02/01/2014,02/01/2014 11:33:52 PM,02/01/2014 11:39:03 PM,02/01/2014 11:39:11 PM,02/01/2014 11:40:49 PM,02/01/2014 11:42:17 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/01/2014 11:46:19 PM,1500 Block of STOCKTON ST,SF,94133,B01,28,1334,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.799975359605, -122.40903359976)",140320403-E28 +110120052,85,11003878,Medical Incident,01/12/2011,01/11/2011,01/12/2011 06:19:29 AM,01/12/2011 06:20:55 AM,01/12/2011 06:21:18 AM,01/12/2011 06:21:52 AM,01/12/2011 06:26:23 AM,01/12/2011 06:45:53 AM,01/12/2011 06:57:45 AM,Code 2 Transport,01/12/2011 07:12:25 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",110120052-85 +130530046,68,13017807,Medical Incident,02/22/2013,02/21/2013,02/22/2013 05:50:12 AM,02/22/2013 05:50:35 AM,02/22/2013 05:52:28 AM,02/22/2013 05:54:23 AM,02/22/2013 05:58:36 AM,02/22/2013 06:09:02 AM,04/25/2016 01:54:10 PM,Code 3 Transport,02/22/2013 06:44:11 AM,1400 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7282421265503, -122.389005419337)",130530046-68 +120180328,RC3,12006168,Medical Incident,01/18/2012,01/18/2012,01/18/2012 08:39:48 PM,01/18/2012 08:40:06 PM,01/18/2012 08:40:34 PM,04/25/2016 02:00:34 PM,01/18/2012 08:44:02 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Other,01/18/2012 08:58:24 PM,29TH ST/MISSION ST,SF,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,9,Bernal Heights,"(37.7440376332296, -122.420893660653)",120180328-RC3 +160011449,88,16000258,Medical Incident,01/01/2016,01/01/2016,01/01/2016 09:17:08 AM,01/01/2016 09:17:08 AM,01/01/2016 09:18:29 AM,01/01/2016 09:18:32 AM,01/01/2016 09:22:18 AM,01/01/2016 09:54:40 AM,01/01/2016 10:10:06 AM,Code 2 Transport,01/01/2016 10:54:14 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160011449-88 +110480032,E32,11015751,Traffic Collision,02/17/2011,02/16/2011,02/17/2011 04:58:07 AM,02/17/2011 04:58:08 AM,02/17/2011 04:58:40 AM,02/17/2011 05:00:06 AM,02/17/2011 05:03:44 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/17/2011 05:17:01 AM,200 Block of ALEMANY BLVD,SF,94110,B09,32,5681,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7351501389095, -122.410360631063)",110480032-E32 +140970139,83,14032636,Medical Incident,04/07/2014,04/07/2014,04/07/2014 09:45:09 AM,04/07/2014 09:45:09 AM,04/07/2014 09:48:27 AM,04/07/2014 09:48:50 AM,04/07/2014 10:10:03 AM,04/07/2014 10:20:20 AM,04/07/2014 10:46:00 AM,Code 2 Transport,04/07/2014 11:14:56 AM,1300 Block of TURK ST,,94115,B05,5,3535,,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",140970139-83 +133530207,E17,13119930,Alarms,12/19/2013,12/19/2013,12/19/2013 01:47:30 PM,12/19/2013 01:48:53 PM,12/19/2013 01:49:17 PM,12/19/2013 01:49:59 PM,12/19/2013 01:52:21 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Fire,12/19/2013 01:54:57 PM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7344812749194, -122.391912066975)",133530207-E17 +160513328,71,16020623,Medical Incident,02/20/2016,02/20/2016,02/20/2016 10:09:04 PM,02/20/2016 10:10:43 PM,02/20/2016 10:10:52 PM,02/20/2016 10:12:33 PM,02/20/2016 10:17:29 PM,02/20/2016 10:35:22 PM,02/20/2016 11:06:18 PM,Code 2 Transport,02/20/2016 11:25:37 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160513328-71 +160530735,AM04,16021105,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:34:04 AM,02/22/2016 08:35:00 AM,02/22/2016 08:36:00 AM,02/22/2016 08:36:48 AM,02/22/2016 08:40:52 AM,02/22/2016 08:53:12 AM,02/22/2016 08:57:16 AM,Code 3 Transport,02/22/2016 09:32:59 AM,1000 Block of STANYAN ST,San Francisco,94117,B05,12,5153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7649673884697, -122.452732198466)",160530735-AM04 +160660298,AM20,16026240,Traffic Collision,03/06/2016,03/05/2016,03/06/2016 02:18:37 AM,03/06/2016 02:18:37 AM,03/06/2016 02:21:44 AM,03/06/2016 02:22:26 AM,03/06/2016 02:29:59 AM,03/06/2016 03:02:35 AM,03/06/2016 03:19:30 AM,Code 2 Transport,03/06/2016 04:11:45 AM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.781585403105, -122.423090188841)",160660298-AM20 +160140408,63,16005440,Medical Incident,01/14/2016,01/13/2016,01/14/2016 05:30:58 AM,01/14/2016 05:31:30 AM,01/14/2016 05:31:47 AM,01/14/2016 05:31:59 AM,01/14/2016 05:44:49 AM,01/14/2016 05:49:04 AM,01/14/2016 06:08:30 AM,Code 2 Transport,01/14/2016 06:22:54 AM,100 Block of BERTITA ST,San Francisco,94112,B09,15,8331,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7187468512865, -122.440406418549)",160140408-63 +112970419,E29,11098711,Other,10/24/2011,10/24/2011,10/24/2011 10:33:33 PM,10/24/2011 10:35:46 PM,10/24/2011 10:36:38 PM,10/24/2011 10:38:16 PM,10/24/2011 10:41:18 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/24/2011 11:08:15 PM,300 Block of 9TH ST,SF,94103,B03,29,2333,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.773140269804, -122.410930916401)",112970419-E29 +160400547,AM02,16015899,Medical Incident,02/09/2016,02/08/2016,02/09/2016 07:16:41 AM,02/09/2016 07:17:17 AM,02/09/2016 07:17:31 AM,02/09/2016 07:18:35 AM,02/09/2016 07:25:28 AM,02/09/2016 07:29:14 AM,02/09/2016 07:35:11 AM,Code 3 Transport,02/09/2016 08:20:13 AM,0 Block of QUINT ST,San Francisco,94124,B10,25,6441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7459906821684, -122.388651348688)",160400547-AM02 +160223448,58,16008925,Medical Incident,01/22/2016,01/22/2016,01/22/2016 08:29:20 PM,01/22/2016 08:32:36 PM,01/22/2016 08:33:03 PM,01/22/2016 08:33:14 PM,01/22/2016 08:39:18 PM,01/22/2016 08:49:33 PM,01/22/2016 08:55:03 PM,Code 2 Transport,01/22/2016 09:31:52 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",160223448-58 +160411656,67,16016440,Medical Incident,02/10/2016,02/10/2016,02/10/2016 12:18:03 PM,02/10/2016 12:18:49 PM,02/10/2016 12:19:20 PM,02/10/2016 12:19:31 PM,02/10/2016 12:33:23 PM,02/10/2016 12:54:31 PM,02/10/2016 01:06:32 PM,Code 2 Transport,02/10/2016 02:02:43 PM,BURNETT AV/PORTOLA DR,San Francisco,94131,B06,24,5354,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Twin Peaks,"(37.7469453737892, -122.444847224654)",160411656-67 +121100389,92,12036558,Medical Incident,04/19/2012,04/19/2012,04/19/2012 10:50:57 PM,04/19/2012 10:52:57 PM,04/19/2012 10:54:34 PM,04/19/2012 10:54:59 PM,04/19/2012 11:06:45 PM,04/19/2012 11:44:11 PM,04/20/2012 12:18:43 AM,Code 2 Transport,04/20/2012 12:47:35 AM,1200 Block of REVERE AVE,SF,94124,B10,17,6634,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7280000551487, -122.383581434035)",121100389-92 +113310214,58,11109740,Medical Incident,11/27/2011,11/27/2011,11/27/2011 05:02:47 PM,11/27/2011 05:05:03 PM,11/27/2011 05:05:18 PM,11/27/2011 05:05:46 PM,11/27/2011 05:09:12 PM,11/27/2011 05:35:54 PM,11/27/2011 05:45:19 PM,Code 2 Transport,11/27/2011 06:07:30 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",113310214-58 +130510328,E10,13017377,Transfer,02/20/2013,02/20/2013,02/20/2013 07:12:37 PM,02/20/2013 07:13:47 PM,02/20/2013 07:14:31 PM,02/20/2013 07:15:42 PM,02/20/2013 07:17:37 PM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Fire,02/20/2013 07:24:43 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Alarm,1,ENGINE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",130510328-E10 +123550263,E01,12118870,Medical Incident,12/20/2012,12/20/2012,12/20/2012 05:44:08 PM,12/20/2012 05:44:08 PM,12/20/2012 05:44:19 PM,12/20/2012 05:46:17 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 05:49:11 PM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",123550263-E01 +112070208,T01,11068398,Structure Fire,07/26/2011,07/26/2011,07/26/2011 02:37:08 PM,07/26/2011 02:37:08 PM,07/26/2011 02:37:29 PM,07/26/2011 02:39:11 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 02:40:21 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112070208-T01 +120630232,KM12,12020784,Medical Incident,03/03/2012,03/03/2012,03/03/2012 02:01:59 PM,03/03/2012 02:03:12 PM,03/03/2012 02:04:01 PM,03/03/2012 02:04:31 PM,03/03/2012 02:08:45 PM,03/03/2012 02:16:17 PM,03/03/2012 02:21:20 PM,Code 2 Transport,03/03/2012 02:46:37 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",120630232-KM12 +120990347,T13,12032957,Other,04/08/2012,04/08/2012,04/08/2012 10:38:52 PM,04/08/2012 10:40:48 PM,04/08/2012 10:41:30 PM,04/08/2012 10:42:12 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Fire,04/08/2012 10:53:31 PM,800 Block of SANSOME ST,SF,94133,B01,13,1212,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.7979585906161, -122.402203152588)",120990347-T13 +121310219,T14,12043602,Water Rescue,05/10/2012,05/10/2012,05/10/2012 02:26:47 PM,05/10/2012 02:28:47 PM,05/10/2012 02:31:12 PM,05/10/2012 02:32:13 PM,05/10/2012 02:37:47 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 04:32:03 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Fire,1,TRUCK,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",121310219-T14 +160660154,60,16026220,Medical Incident,03/06/2016,03/05/2016,03/06/2016 01:02:25 AM,03/06/2016 01:02:25 AM,03/06/2016 01:03:30 AM,03/06/2016 01:04:15 AM,03/06/2016 01:07:06 AM,03/06/2016 01:22:47 AM,03/06/2016 01:31:58 AM,Code 3 Transport,03/06/2016 02:18:57 AM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7854941424186, -122.408270724034)",160660154-60 +111180005,T11,11038786,Structure Fire,04/28/2011,04/27/2011,04/28/2011 12:37:58 AM,04/28/2011 12:37:58 AM,04/28/2011 12:38:10 AM,04/28/2011 12:40:10 AM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/28/2011 12:41:38 AM,24TH ST/CHURCH ST,SF,94114,B06,11,5523,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",111180005-T11 +121900247,KM14,12063364,Medical Incident,07/08/2012,07/08/2012,07/08/2012 05:47:36 PM,07/08/2012 05:47:45 PM,07/08/2012 05:48:30 PM,07/08/2012 05:49:04 PM,07/08/2012 05:54:58 PM,07/08/2012 06:24:32 PM,07/08/2012 06:37:06 PM,Code 2 Transport,07/08/2012 07:21:58 PM,100 Block of SPEAR ST,SF,94105,B03,35,2114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7918853862733, -122.393341223517)",121900247-KM14 +160343257,93,16013574,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:19:57 PM,02/03/2016 08:19:57 PM,02/03/2016 08:20:38 PM,02/03/2016 08:20:58 PM,02/03/2016 08:33:48 PM,02/03/2016 08:52:14 PM,02/03/2016 08:54:51 PM,Code 2 Transport,02/03/2016 09:43:42 PM,0 Block of PLEASANT ST,San Francisco,94108,B01,41,1444,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7929424178136, -122.413571583181)",160343257-93 +111180342,B03,11039069,Alarms,04/28/2011,04/28/2011,04/28/2011 08:42:26 PM,04/28/2011 08:45:42 PM,04/28/2011 08:46:52 PM,04/28/2011 08:48:05 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 08:49:04 PM,0 Block of SAINT FRANCIS PL,SF,94107,B03,1,2176,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7831676638716, -122.397825495268)",111180342-B03 +160142248,KM02,16005620,Medical Incident,01/14/2016,01/14/2016,01/14/2016 03:06:02 PM,01/14/2016 03:08:42 PM,01/14/2016 03:09:22 PM,01/14/2016 03:09:45 PM,01/14/2016 03:16:04 PM,01/14/2016 03:44:43 PM,01/14/2016 03:57:37 PM,Code 2 Transport,01/14/2016 04:38:31 PM,1300 Block of IRVING ST,San Francisco,94122,B08,22,7366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,5,Inner Sunset,"(37.7638318338265, -122.472232573432)",160142248-KM02 +160243116,53,16009669,Medical Incident,01/24/2016,01/24/2016,01/24/2016 07:59:21 PM,01/24/2016 08:01:51 PM,01/24/2016 08:02:16 PM,01/24/2016 08:02:30 PM,01/24/2016 08:17:44 PM,01/24/2016 08:31:07 PM,01/24/2016 08:39:13 PM,Code 2 Transport,01/24/2016 09:12:33 PM,OFARRELL ST/MASON ST,San Francisco,94102,B03,1,1363,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862026638911, -122.409683072135)",160243116-53 +123010370,AM10,12099962,Medical Incident,10/27/2012,10/27/2012,10/27/2012 10:28:28 PM,10/27/2012 10:28:28 PM,10/27/2012 10:28:28 PM,10/27/2012 10:29:33 PM,10/27/2012 10:31:31 PM,10/27/2012 10:37:24 PM,10/27/2012 10:51:08 PM,Code 2 Transport,10/27/2012 11:10:09 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",123010370-AM10 +131520359,E19,13051662,Medical Incident,06/01/2013,06/01/2013,06/01/2013 11:13:55 PM,06/01/2013 11:14:58 PM,06/01/2013 11:15:45 PM,06/01/2013 11:17:40 PM,06/01/2013 11:20:42 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 11:50:47 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",131520359-E19 +121670266,E10,12055472,Fuel Spill,06/15/2012,06/15/2012,06/15/2012 05:38:55 PM,06/15/2012 05:41:44 PM,06/15/2012 05:44:03 PM,06/15/2012 05:45:13 PM,06/15/2012 05:49:19 PM,04/25/2016 01:58:11 PM,04/25/2016 01:58:11 PM,Other,06/15/2012 06:03:01 PM,PINE ST/DIVISADERO ST,SF,94115,B04,10,4156,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7871124551408, -122.440249955385)",121670266-E10 +160203924,AM16,16008200,Medical Incident,01/20/2016,01/20/2016,01/20/2016 10:48:17 PM,01/20/2016 10:50:07 PM,01/20/2016 10:50:54 PM,01/20/2016 10:51:22 PM,01/20/2016 10:58:48 PM,01/20/2016 11:02:29 PM,01/20/2016 11:21:01 PM,Code 2 Transport,01/20/2016 11:57:26 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160203924-AM16 +130900053,E22,13030000,Medical Incident,03/31/2013,03/30/2013,03/31/2013 03:31:17 AM,03/31/2013 03:33:25 AM,03/31/2013 03:33:38 AM,03/31/2013 03:37:18 AM,03/31/2013 03:39:17 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 03:40:45 AM,1300 Block of 24TH AVE,SF,94122,B08,22,7451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.762398164889, -122.48234823338)",130900053-E22 +160201869,AM14,16008011,Medical Incident,01/20/2016,01/20/2016,01/20/2016 01:10:44 PM,01/20/2016 01:11:20 PM,01/20/2016 01:11:32 PM,01/20/2016 01:12:11 PM,01/20/2016 01:18:18 PM,01/20/2016 01:35:48 PM,01/20/2016 02:00:08 PM,Code 2 Transport,01/20/2016 02:35:15 PM,300 Block of BERRY ST,San Francisco,94158,B03,8,2235,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7731124835363, -122.39664007904)",160201869-AM14 +160431429,83,16017259,Medical Incident,02/12/2016,02/12/2016,02/12/2016 11:35:48 AM,02/12/2016 11:36:55 AM,02/12/2016 11:37:28 AM,02/12/2016 11:37:47 AM,02/12/2016 11:40:42 AM,02/12/2016 11:57:49 AM,02/12/2016 12:04:09 PM,Code 2 Transport,02/12/2016 12:50:24 PM,1600 Block of UNION ST,San Francisco,94123,B04,16,3233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7982932964322, -122.4264581931)",160431429-83 +111010286,T08,11033602,Alarms,04/11/2011,04/11/2011,04/11/2011 06:37:39 PM,04/11/2011 06:39:22 PM,04/11/2011 06:39:31 PM,04/11/2011 06:40:54 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/11/2011 06:42:57 PM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",111010286-T08 +122760094,89,12091047,Medical Incident,10/02/2012,10/02/2012,10/02/2012 08:44:44 AM,10/02/2012 08:45:20 AM,10/02/2012 08:46:40 AM,10/02/2012 08:46:46 AM,10/02/2012 09:00:30 AM,10/02/2012 09:28:29 AM,10/02/2012 09:51:59 AM,Code 2 Transport,10/02/2012 09:58:37 AM,1600 Block of 26TH AVE,SF,94122,B08,18,7454,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7567038230665, -122.484238383037)",122760094-89 +160420650,55,16016762,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:54:25 AM,02/11/2016 07:56:58 AM,02/11/2016 07:57:12 AM,02/11/2016 07:57:43 AM,02/11/2016 08:16:25 AM,02/11/2016 08:45:10 AM,02/11/2016 08:53:42 AM,Code 2 Transport,02/11/2016 09:37:56 AM,1200 Block of HAIGHT ST,San Francisco,94117,B05,21,4353,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",160420650-55 +131760211,E23,13059730,Other,06/25/2013,06/25/2013,06/25/2013 01:36:24 PM,06/25/2013 01:36:24 PM,06/25/2013 01:36:24 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,04/25/2016 01:52:07 PM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",131760211-E23 +111360317,85,11045394,Medical Incident,05/16/2011,05/16/2011,05/16/2011 08:50:37 PM,05/16/2011 08:52:16 PM,05/16/2011 08:52:36 PM,05/16/2011 08:53:40 PM,05/16/2011 09:00:53 PM,05/16/2011 09:09:21 PM,05/16/2011 09:21:11 PM,Code 2 Transport,05/16/2011 09:51:07 PM,400 Block of NEVADA ST,SF,94110,B10,32,5736,3,3,3,true,,1,MEDIC,2,10,9,Bernal Heights,"(37.7363710737067, -122.411602118744)",111360317-85 +110730195,E22,11024015,Medical Incident,03/14/2011,03/14/2011,03/14/2011 12:50:43 PM,03/14/2011 12:53:20 PM,03/14/2011 12:54:29 PM,03/14/2011 12:55:06 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 12:56:09 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,3,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110730195-E22 +111050222,KM14,11034800,Medical Incident,04/15/2011,04/15/2011,04/15/2011 03:37:33 PM,04/15/2011 03:39:21 PM,04/15/2011 03:40:05 PM,04/15/2011 03:40:49 PM,04/15/2011 03:48:06 PM,04/15/2011 04:03:22 PM,04/15/2011 04:10:45 PM,Code 2 Transport,04/15/2011 04:34:46 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,1,1,2,false,,1,PRIVATE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",111050222-KM14 +121840022,E03,12061155,Alarms,07/02/2012,07/01/2012,07/02/2012 02:01:02 AM,07/02/2012 02:02:00 AM,07/02/2012 02:02:30 AM,07/02/2012 02:03:55 AM,07/02/2012 02:05:37 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/02/2012 02:18:50 AM,500 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",121840022-E03 +130530338,E15,13018044,Medical Incident,02/22/2013,02/22/2013,02/22/2013 08:38:24 PM,02/22/2013 08:39:59 PM,02/22/2013 08:40:36 PM,04/25/2016 01:54:10 PM,02/22/2013 08:43:15 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Other,02/22/2013 08:49:30 PM,SAN JOSE AV/GENEVA AV,SF,94112,B09,15,8311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",130530338-E15 +120540022,E29,12017701,Medical Incident,02/23/2012,02/22/2012,02/23/2012 02:20:04 AM,02/23/2012 02:21:31 AM,02/23/2012 02:21:52 AM,02/23/2012 02:27:45 AM,02/23/2012 02:29:54 AM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 02:33:26 AM,2300 Block of 16TH ST,SF,94103,B02,29,5241,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.765718993574, -122.409520691153)",120540022-E29 +132650219,AM02,13089923,Medical Incident,09/22/2013,09/22/2013,09/22/2013 02:04:11 PM,09/22/2013 02:05:52 PM,09/22/2013 02:18:34 PM,04/25/2016 01:50:38 PM,09/22/2013 02:33:55 PM,09/22/2013 02:41:48 PM,09/22/2013 03:03:43 PM,Code 2 Transport,09/22/2013 03:41:02 PM,1500 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",132650219-AM02 +121080155,81,12035731,Medical Incident,04/17/2012,04/17/2012,04/17/2012 12:12:35 PM,04/17/2012 12:12:57 PM,04/17/2012 12:13:23 PM,04/17/2012 12:14:01 PM,04/17/2012 12:30:14 PM,04/17/2012 12:41:26 PM,04/17/2012 01:00:42 PM,Code 2 Transport,04/17/2012 01:56:39 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",121080155-81 +103380341,D3,10108273,Structure Fire,12/04/2010,12/04/2010,12/04/2010 06:50:30 PM,12/04/2010 06:50:56 PM,12/04/2010 06:51:06 PM,12/04/2010 06:51:52 PM,12/04/2010 06:57:15 PM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Other,12/04/2010 07:15:14 PM,1400 Block of INNES AVE,SF,94124,B10,25,6532,3,3,3,false,,1,CHIEF,7,10,10,Bayview Hunters Point,"(37.7379931180342, -122.386085138149)",103380341-D3 +132390249,KM10,13080674,Medical Incident,08/27/2013,08/27/2013,08/27/2013 04:03:28 PM,08/27/2013 04:04:07 PM,08/27/2013 04:06:44 PM,08/27/2013 04:07:33 PM,08/27/2013 04:09:20 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Patient Declined Transport,08/27/2013 04:41:19 PM,16TH ST/CAPP ST,SF,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",132390249-KM10 +132330315,86,13078781,Traffic Collision,08/21/2013,08/21/2013,08/21/2013 07:31:32 PM,08/21/2013 07:32:26 PM,08/21/2013 07:34:29 PM,08/21/2013 07:35:06 PM,08/21/2013 08:00:43 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Against Medical Advice,08/21/2013 08:22:25 PM,SOUTH VAN NESS AV/16TH ST,SF,94110,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7651831353816, -122.417486597301)",132330315-86 +121430180,T19,12047532,Alarms,05/22/2012,05/22/2012,05/22/2012 12:47:18 PM,05/22/2012 12:48:52 PM,05/22/2012 12:49:01 PM,05/22/2012 12:50:21 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 12:51:33 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",121430180-T19 +130280232,E05,13009636,Medical Incident,01/28/2013,01/28/2013,01/28/2013 01:53:34 PM,01/28/2013 01:56:13 PM,01/28/2013 01:56:27 PM,01/28/2013 01:57:50 PM,01/28/2013 01:59:56 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 02:20:53 PM,1900 Block of POST ST,SF,94115,B04,5,3622,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Japantown,"(37.7850500973338, -122.434328328397)",130280232-E05 +160572590,82,16022836,Medical Incident,02/26/2016,02/26/2016,02/26/2016 04:45:31 PM,02/26/2016 04:45:31 PM,02/26/2016 04:46:01 PM,02/26/2016 04:46:07 PM,02/26/2016 04:50:12 PM,02/26/2016 05:25:59 PM,02/26/2016 05:33:22 PM,Code 2 Transport,02/26/2016 06:08:16 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",160572590-82 +160801511,54,16031790,Medical Incident,03/20/2016,03/20/2016,03/20/2016 12:00:38 PM,03/20/2016 12:01:29 PM,03/20/2016 12:01:38 PM,03/20/2016 12:04:10 PM,03/20/2016 12:12:04 PM,03/20/2016 12:24:34 PM,03/20/2016 12:33:45 PM,Code 2 Transport,03/20/2016 01:01:22 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160801511-54 +121380362,E43,12046003,Traffic Collision,05/17/2012,05/17/2012,05/17/2012 11:43:19 PM,05/17/2012 11:44:28 PM,05/17/2012 11:45:35 PM,05/17/2012 11:46:55 PM,05/17/2012 11:48:53 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/17/2012 11:51:20 PM,MISSION ST/ONONDAGA AV,SF,94112,B09,43,6123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7211635493758, -122.437461137723)",121380362-E43 +102500295,E37,10079091,Medical Incident,09/07/2010,09/07/2010,09/07/2010 07:31:30 PM,09/07/2010 07:32:08 PM,09/07/2010 07:32:21 PM,09/07/2010 07:33:02 PM,09/07/2010 07:34:54 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 07:46:05 PM,25TH ST/DAKOTA ST,SF,94107,B10,37,2614,3,3,3,false,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7524268010539, -122.394586978991)",102500295-E37 +160630014,AM16,16024908,Medical Incident,03/03/2016,03/02/2016,03/03/2016 12:05:11 AM,03/03/2016 12:06:49 AM,03/03/2016 12:07:22 AM,03/03/2016 12:07:50 AM,03/03/2016 12:11:25 AM,03/03/2016 12:26:09 AM,03/03/2016 12:39:36 AM,Code 2 Transport,03/03/2016 01:10:16 AM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",160630014-AM16 +160352016,77,16013846,Traffic Collision,02/04/2016,02/04/2016,02/04/2016 01:54:02 PM,02/04/2016 01:55:43 PM,02/04/2016 01:56:21 PM,02/04/2016 01:56:32 PM,02/04/2016 02:08:07 PM,02/04/2016 02:22:31 PM,02/04/2016 03:05:39 PM,Code 2 Transport,02/04/2016 04:10:23 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B99,51,4616,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160352016-77 +160800681,KM07,16031717,Medical Incident,03/20/2016,03/19/2016,03/20/2016 06:19:30 AM,03/20/2016 06:20:53 AM,03/20/2016 06:21:10 AM,03/20/2016 06:23:30 AM,03/20/2016 06:30:27 AM,03/20/2016 06:59:30 AM,03/20/2016 07:11:48 AM,Code 2 Transport,03/20/2016 07:32:53 AM,1400 Block of JONES ST,San Francisco,94109,B01,41,1466,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7945402595974, -122.414804971391)",160800681-KM07 +112490381,81,11082295,Medical Incident,09/06/2011,09/06/2011,09/06/2011 09:13:18 PM,09/06/2011 09:14:26 PM,09/06/2011 09:15:24 PM,04/25/2016 02:02:48 PM,09/06/2011 09:23:40 PM,09/06/2011 09:33:39 PM,09/06/2011 09:40:49 PM,Code 3 Transport,09/06/2011 10:21:32 PM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7739392650435, -122.412947871011)",112490381-81 +132640312,E33,13089615,Medical Incident,09/21/2013,09/21/2013,09/21/2013 05:17:42 PM,09/21/2013 05:19:59 PM,09/21/2013 05:20:42 PM,09/21/2013 05:22:19 PM,09/21/2013 05:26:30 PM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/21/2013 05:59:53 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",132640312-E33 +133120118,RS1,13105969,Medical Incident,11/08/2013,11/08/2013,11/08/2013 10:07:40 AM,11/08/2013 10:10:48 AM,11/08/2013 10:11:18 AM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/08/2013 10:17:41 AM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7806691632498, -122.401678045598)",133120118-RS1 +123380218,T07,12112721,Alarms,12/03/2012,12/03/2012,12/03/2012 01:29:12 PM,12/03/2012 01:31:17 PM,12/03/2012 01:31:30 PM,12/03/2012 01:33:26 PM,12/03/2012 01:36:43 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 01:37:58 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Alarm,1,TRUCK,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",123380218-T07 +131390358,93,13047148,Medical Incident,05/19/2013,05/19/2013,05/19/2013 05:38:50 PM,05/19/2013 05:40:19 PM,05/19/2013 05:40:44 PM,05/19/2013 05:41:08 PM,05/19/2013 05:45:06 PM,05/19/2013 06:19:07 PM,05/19/2013 06:46:06 PM,Code 2 Transport,05/19/2013 07:18:14 PM,2500 Block of TAYLOR ST,SF,94133,B01,28,1433,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8058891270864, -122.415268200841)",131390358-93 +123440089,KM15,12114908,Medical Incident,12/09/2012,12/08/2012,12/09/2012 05:55:53 AM,12/09/2012 05:56:28 AM,12/09/2012 05:56:45 AM,12/09/2012 05:57:46 AM,12/09/2012 06:02:53 AM,12/09/2012 06:25:35 AM,12/09/2012 06:35:29 AM,Code 2 Transport,12/09/2012 07:01:27 AM,4800 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7213272618826, -122.437216421378)",123440089-KM15 +160373325,54,16014863,Medical Incident,02/06/2016,02/06/2016,02/06/2016 07:17:51 PM,02/06/2016 07:18:17 PM,02/06/2016 07:20:57 PM,02/06/2016 07:21:04 PM,02/06/2016 07:34:36 PM,02/06/2016 07:56:59 PM,02/06/2016 08:05:00 PM,Code 2 Transport,02/06/2016 08:35:27 PM,MARKET ST/4TH ST,San Francisco,94103,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160373325-54 +160320884,60,16012498,Traffic Collision,02/01/2016,02/01/2016,02/01/2016 09:15:28 AM,02/01/2016 09:16:41 AM,02/01/2016 09:18:48 AM,02/01/2016 09:19:09 AM,02/01/2016 09:38:59 AM,02/01/2016 09:56:34 AM,02/01/2016 10:20:28 AM,Code 2 Transport,02/01/2016 10:58:18 AM,WINDING WY/DRAKE ST,San Francisco,94112,B09,43,6227,2,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7092985956416, -122.435967963898)",160320884-60 +160521406,KM02,16020788,Medical Incident,02/21/2016,02/21/2016,02/21/2016 11:48:54 AM,02/21/2016 11:49:30 AM,02/21/2016 11:50:00 AM,02/21/2016 11:51:30 AM,02/21/2016 11:57:50 AM,02/21/2016 12:07:29 PM,02/21/2016 12:15:01 PM,Code 3 Transport,02/21/2016 01:09:09 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815063666429, -122.407932868203)",160521406-KM02 +120690279,B07,12022972,Water Rescue,03/09/2012,03/09/2012,03/09/2012 05:35:24 PM,03/09/2012 05:41:39 PM,03/09/2012 05:45:05 PM,03/09/2012 05:46:09 PM,03/09/2012 05:51:18 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:16:40 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,CHIEF,4,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120690279-B07 +111900324,E14,11062956,Structure Fire,07/09/2011,07/09/2011,07/09/2011 11:08:30 PM,07/09/2011 11:08:30 PM,07/09/2011 11:09:07 PM,07/09/2011 11:10:38 PM,07/09/2011 11:15:09 PM,04/25/2016 02:03:44 PM,04/25/2016 02:03:44 PM,Other,07/09/2011 11:42:19 PM,600 Block of 6TH AVE,SF,94118,B07,31,719,3,3,3,true,,1,ENGINE,3,7,1,Inner Richmond,"(37.776298721061, -122.464012148208)",111900324-E14 +121760180,68,12058493,Medical Incident,06/24/2012,06/24/2012,06/24/2012 11:37:10 AM,06/24/2012 11:38:44 AM,06/24/2012 11:40:08 AM,06/24/2012 11:40:15 AM,06/24/2012 11:42:28 AM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Patient Declined Transport,06/24/2012 11:47:16 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",121760180-68 +110710255,E09,11023409,Medical Incident,03/12/2011,03/12/2011,03/12/2011 02:42:08 PM,03/12/2011 02:43:15 PM,03/12/2011 02:43:51 PM,03/12/2011 02:46:03 PM,03/12/2011 02:47:18 PM,04/25/2016 02:05:40 PM,04/25/2016 02:05:40 PM,Other,03/12/2011 02:49:12 PM,24TH ST/POTRERO AV,SF,94110,B10,37,2554,3,3,3,true,,1,ENGINE,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",110710255-E09 +120200290,B02,12006770,Alarms,01/20/2012,01/20/2012,01/20/2012 05:24:13 PM,01/20/2012 05:26:29 PM,01/20/2012 05:26:40 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 05:28:25 PM,0 Block of LAFAYETTE ST,SF,94103,B02,36,5116,3,3,3,false,Alarm,1,CHIEF,2,2,6,Mission,"(37.7730197753185, -122.417140617088)",120200290-B02 +160792244,88,16031448,Medical Incident,03/19/2016,03/19/2016,03/19/2016 02:55:19 PM,03/19/2016 02:56:24 PM,03/19/2016 02:56:46 PM,03/19/2016 02:56:58 PM,03/19/2016 03:03:29 PM,03/19/2016 03:06:14 PM,03/19/2016 03:37:18 PM,Code 2 Transport,03/19/2016 03:56:10 PM,0 Block of HENRY ST,San Francisco,94114,B05,6,5212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7666743527306, -122.432217940341)",160792244-88 +140180254,RC1,14006240,Medical Incident,01/18/2014,01/18/2014,01/18/2014 03:43:23 PM,01/18/2014 03:43:53 PM,01/18/2014 03:45:40 PM,01/18/2014 03:47:04 PM,01/18/2014 03:49:22 PM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/18/2014 03:53:53 PM,800 Block of FILBERT ST,SF,94133,B01,28,1436,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Russian Hill,"(37.8008073855557, -122.413470318933)",140180254-RC1 +160153734,89,16006172,Alarms,01/15/2016,01/15/2016,01/15/2016 09:20:29 PM,01/15/2016 09:22:23 PM,01/15/2016 09:44:50 PM,01/15/2016 09:45:00 PM,01/15/2016 09:50:00 PM,01/15/2016 10:09:13 PM,01/15/2016 10:23:28 PM,Code 2 Transport,01/15/2016 11:07:29 PM,1200 Block of PAGE ST,San Francisco,94117,B05,21,4251,3,3,3,true,Alarm,1,MEDIC,4,5,5,Haight Ashbury,"(37.7716208307015, -122.441356135466)",160153734-89 +122160275,E35,12071750,Alarms,08/03/2012,08/03/2012,08/03/2012 04:33:32 PM,08/03/2012 04:34:27 PM,08/03/2012 04:34:42 PM,08/03/2012 04:35:45 PM,08/03/2012 04:37:30 PM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,08/03/2012 05:18:53 PM,300 Block of SPEAR ST,SF,94105,B03,35,2113,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7894924999912, -122.390150869347)",122160275-E35 +123590083,E17,12120096,Medical Incident,12/24/2012,12/24/2012,12/24/2012 08:14:16 AM,12/24/2012 08:15:53 AM,12/24/2012 08:16:04 AM,12/24/2012 08:17:15 AM,12/24/2012 08:21:03 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 08:35:51 AM,0 Block of LATONA ST,SF,94124,B10,17,6514,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316182572491, -122.392627218053)",123590083-E17 +130280276,E16,13009676,Medical Incident,01/28/2013,01/28/2013,01/28/2013 04:06:41 PM,01/28/2013 04:08:11 PM,01/28/2013 04:08:28 PM,01/28/2013 04:09:59 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/28/2013 04:14:05 PM,1800 Block of BROADWAY,SF,94123,B04,38,3251,3,3,3,true,Non Life-threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.795265168848, -122.427533073347)",130280276-E16 +133400074,T02,13115148,Alarms,12/06/2013,12/05/2013,12/06/2013 07:23:01 AM,12/06/2013 07:24:22 AM,12/06/2013 07:24:34 AM,12/06/2013 07:26:55 AM,12/06/2013 07:29:12 AM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 07:31:26 AM,500 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7905223625299, -122.407233499106)",133400074-T02 +122200272,85,12073048,Medical Incident,08/07/2012,08/07/2012,08/07/2012 07:26:04 PM,08/07/2012 07:26:24 PM,08/07/2012 07:27:22 PM,08/07/2012 07:31:14 PM,08/07/2012 07:39:40 PM,04/25/2016 01:57:20 PM,04/25/2016 01:57:20 PM,Patient Declined Transport,08/07/2012 08:09:31 PM,1400 Block of OAKDALE AVE,SF,94124,B10,17,6534,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7330447252069, -122.387509881021)",122200272-85 +110180195,E07,11005949,Medical Incident,01/18/2011,01/18/2011,01/18/2011 03:15:35 PM,01/18/2011 03:16:54 PM,01/18/2011 03:18:59 PM,01/18/2011 03:19:59 PM,01/18/2011 03:22:18 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 03:34:09 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",110180195-E07 +160251729,89,16009928,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:41:28 PM,01/25/2016 12:41:28 PM,01/25/2016 12:42:05 PM,01/25/2016 12:47:23 PM,01/25/2016 12:47:23 PM,01/25/2016 01:01:33 PM,01/25/2016 01:19:33 PM,Code 2 Transport,01/25/2016 02:06:36 PM,OCTAVIA ST/OAK ST,San Francisco,94102,B02,36,3313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748247940204, -122.42413649936)",160251729-89 +121910298,E16,12063693,Water Rescue,07/09/2012,07/09/2012,07/09/2012 07:17:35 PM,07/09/2012 07:18:29 PM,07/09/2012 07:19:56 PM,07/09/2012 07:22:44 PM,07/09/2012 07:25:12 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 08:02:29 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",121910298-E16 +160692432,KM06,16027535,Medical Incident,03/09/2016,03/09/2016,03/09/2016 03:46:55 PM,03/09/2016 03:48:28 PM,03/09/2016 03:48:55 PM,03/09/2016 03:49:35 PM,03/09/2016 03:59:22 PM,03/09/2016 04:15:55 PM,03/09/2016 04:26:37 PM,Code 2 Transport,03/09/2016 04:52:05 PM,SUTTER ST/STEINER ST,San Francisco,94115,B04,38,3542,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.785876207366, -122.434917663413)",160692432-KM06 +160611217,62,16024265,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:09:12 AM,03/01/2016 11:10:50 AM,03/01/2016 11:11:13 AM,03/01/2016 11:11:30 AM,03/01/2016 11:19:54 AM,03/01/2016 11:48:44 AM,03/01/2016 11:55:00 AM,Code 2 Transport,03/01/2016 12:48:03 PM,400 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7822197133681, -122.458997620661)",160611217-62 +130730002,E26,13024201,Medical Incident,03/14/2013,03/13/2013,03/14/2013 12:10:22 AM,03/14/2013 12:13:06 AM,03/14/2013 12:13:17 AM,03/14/2013 12:15:21 AM,03/14/2013 12:20:17 AM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 12:39:21 AM,300 Block of SURREY ST,SF,94131,B06,26,8175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7359619969006, -122.436901828092)",130730002-E26 +160902877,67,16035814,Medical Incident,03/30/2016,03/30/2016,03/30/2016 05:04:34 PM,03/30/2016 05:07:34 PM,03/30/2016 05:10:46 PM,03/30/2016 05:10:46 PM,03/30/2016 05:15:01 PM,03/30/2016 05:27:47 PM,03/30/2016 05:51:08 PM,Code 2 Transport,03/30/2016 06:31:18 PM,3900 Block of 17TH ST,San Francisco,94114,B05,6,5417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,8,Castro/Upper Market,"(37.762462765244, -122.434659092708)",160902877-67 +111160321,E38,11038389,Medical Incident,04/26/2011,04/26/2011,04/26/2011 06:08:37 PM,04/26/2011 06:09:03 PM,04/26/2011 06:09:22 PM,04/26/2011 06:10:02 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 06:10:43 PM,1500 Block of POLK ST,SF,94109,B04,41,3123,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7910283417383, -122.420848621038)",111160321-E38 +132370045,E21,13079833,Medical Incident,08/25/2013,08/24/2013,08/25/2013 02:34:55 AM,08/25/2013 02:36:00 AM,08/25/2013 02:36:21 AM,04/25/2016 01:51:08 PM,08/25/2013 02:40:20 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/25/2013 02:53:10 AM,2300 Block of GOLDEN GATE AVE,SF,94117,B05,21,4521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",132370045-E21 +133040052,B02,13103162,Alarms,10/31/2013,10/30/2013,10/31/2013 06:03:57 AM,10/31/2013 06:04:33 AM,10/31/2013 06:04:54 AM,10/31/2013 06:06:41 AM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/31/2013 06:07:17 AM,400 Block of PARNASSUS AVE,SF,94131,B05,12,5156,3,3,3,false,Alarm,1,CHIEF,3,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",133040052-B02 +140930360,E44,14031424,Medical Incident,04/03/2014,04/03/2014,04/03/2014 09:14:52 PM,04/03/2014 09:18:20 PM,04/03/2014 09:33:45 PM,04/03/2014 09:35:27 PM,04/03/2014 09:37:59 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Code 2 Transport,04/03/2014 10:18:18 PM,2800 Block of SAN BRUNO AVE,SAN FRANCISCO,94134,B10,42,6333,,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7258169452923, -122.402916975907)",140930360-E44 +120500126,KM11,12016479,Medical Incident,02/19/2012,02/19/2012,02/19/2012 10:48:05 AM,02/19/2012 10:49:16 AM,02/19/2012 10:49:26 AM,02/19/2012 10:50:50 AM,02/19/2012 10:58:18 AM,02/19/2012 11:13:30 AM,02/19/2012 11:19:49 AM,Code 2 Transport,02/19/2012 11:47:59 AM,600 Block of FREDERICK ST,SF,94117,B05,12,4551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7659077959827, -122.456186927179)",120500126-KM11 +160163677,76,16006615,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:28:17 PM,01/16/2016 10:29:10 PM,01/16/2016 10:29:20 PM,01/16/2016 10:29:39 PM,01/16/2016 10:32:09 PM,01/16/2016 10:58:06 PM,01/16/2016 11:05:58 PM,Code 2 Transport,01/16/2016 11:55:51 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160163677-76 +131250129,T15,13042193,Medical Incident,05/05/2013,05/05/2013,05/05/2013 11:23:07 AM,05/05/2013 11:23:38 AM,05/05/2013 11:23:56 AM,05/05/2013 11:24:44 AM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 11:26:42 AM,100 Block of PINEHURST WAY,SF,94127,B09,15,8533,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,9,7,West of Twin Peaks,"(37.7289560592075, -122.464431116104)",131250129-T15 +141000148,E24,14033728,Alarms,04/10/2014,04/10/2014,04/10/2014 10:39:28 AM,04/10/2014 10:41:17 AM,04/10/2014 10:41:41 AM,04/10/2014 10:42:48 AM,04/10/2014 10:46:51 AM,04/25/2016 01:47:17 PM,04/25/2016 01:47:17 PM,Fire,04/10/2014 11:12:54 AM,4200 Block of 24TH ST,SAN FRANCISCO,94114,B06,24,5521,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7511432503724, -122.437391428378)",141000148-E24 +160802179,KM13,16031847,Medical Incident,03/20/2016,03/20/2016,03/20/2016 03:20:21 PM,03/20/2016 03:22:03 PM,03/20/2016 03:22:30 PM,03/20/2016 03:23:38 PM,03/20/2016 03:29:58 PM,03/20/2016 03:44:59 PM,03/20/2016 04:06:42 PM,Code 2 Transport,03/20/2016 04:24:20 PM,800 Block of GROVE ST,San Francisco,94117,B05,5,3533,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.776813620463, -122.430524683537)",160802179-KM13 +133120005,E41,13105880,Medical Incident,11/08/2013,11/07/2013,11/08/2013 12:19:44 AM,11/08/2013 12:21:39 AM,11/08/2013 12:21:54 AM,11/08/2013 12:23:52 AM,11/08/2013 12:26:18 AM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/08/2013 12:57:47 AM,1100 Block of PINE ST,SF,94109,B01,41,1464,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7903887572034, -122.414938763678)",133120005-E41 +160772652,77,16030673,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:57:08 PM,03/17/2016 03:58:07 PM,03/17/2016 04:04:10 PM,03/17/2016 04:04:15 PM,03/17/2016 04:15:18 PM,03/17/2016 04:37:07 PM,03/17/2016 04:41:48 PM,Code 2 Transport,03/17/2016 05:23:18 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160772652-77 +131590334,E29,13054155,Medical Incident,06/08/2013,06/08/2013,06/08/2013 08:57:10 PM,06/08/2013 08:59:43 PM,06/08/2013 09:00:11 PM,06/08/2013 09:01:00 PM,06/08/2013 09:04:51 PM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/08/2013 09:20:06 PM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,29,2671,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",131590334-E29 +160113094,53,16004539,Medical Incident,01/11/2016,01/11/2016,01/11/2016 07:40:21 PM,01/11/2016 07:40:57 PM,01/11/2016 07:41:14 PM,01/11/2016 07:41:43 PM,01/11/2016 07:47:41 PM,01/11/2016 08:30:41 PM,01/11/2016 08:33:31 PM,Code 2 Transport,01/11/2016 09:14:02 PM,100 Block of BRIDGEVIEW DR,San Francisco,94124,B10,42,6453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7354461848762, -122.396787161495)",160113094-53 +112370420,E38,11078396,Structure Fire,08/25/2011,08/25/2011,08/25/2011 11:41:00 PM,08/25/2011 11:42:01 PM,08/25/2011 11:43:14 PM,08/25/2011 11:45:15 PM,08/25/2011 11:48:54 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/25/2011 11:54:52 PM,0 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,true,,1,ENGINE,8,7,2,Presidio Heights,"(37.7848461901191, -122.4580614633)",112370420-E38 +160823813,53,16032754,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:37:47 PM,03/22/2016 09:39:16 PM,03/22/2016 09:39:26 PM,03/22/2016 09:39:32 PM,03/22/2016 09:58:02 PM,03/22/2016 10:13:39 PM,03/22/2016 10:32:25 PM,Code 2 Transport,03/22/2016 10:54:09 PM,2000 Block of POLK ST,San Francisco,94109,B04,41,3125,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",160823813-53 +110910214,B08,11030171,Medical Incident,04/01/2011,04/01/2011,04/01/2011 01:52:39 PM,04/01/2011 01:54:59 PM,04/01/2011 01:55:19 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 02:03:30 PM,2400 Block of 20TH AVE,SF,94116,B08,40,7434,E,E,3,false,,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7420735738087, -122.476628267314)",110910214-B08 +160043073,88,16001731,Medical Incident,01/04/2016,01/04/2016,01/04/2016 07:07:17 PM,01/04/2016 07:09:12 PM,01/04/2016 07:09:19 PM,01/04/2016 07:09:29 PM,01/04/2016 07:23:18 PM,01/04/2016 07:46:35 PM,01/04/2016 08:08:37 PM,Code 2 Transport,01/04/2016 08:58:43 PM,SAN BRUNO AV/FELTON ST,San Francisco,94134,B10,42,6337,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7300371964722, -122.404592619044)",160043073-88 +111930161,88,11063698,Medical Incident,07/12/2011,07/12/2011,07/12/2011 12:00:25 PM,07/12/2011 12:05:41 PM,07/12/2011 12:06:56 PM,07/12/2011 12:07:27 PM,07/12/2011 12:12:35 PM,07/12/2011 12:21:30 PM,07/12/2011 12:32:53 PM,Code 2 Transport,07/12/2011 01:05:56 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",111930161-88 +111550280,KM11,11051306,Traffic Collision,06/04/2011,06/04/2011,06/04/2011 04:52:40 PM,06/04/2011 04:54:26 PM,06/04/2011 04:54:43 PM,06/04/2011 04:55:24 PM,06/04/2011 04:57:26 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Patient Declined Transport,06/04/2011 05:27:57 PM,19TH ST/VALENCIA ST,SF,94110,B06,7,5434,3,3,3,false,,1,PRIVATE,2,6,8,Mission,"(37.7601012942817, -122.42142521264)",111550280-KM11 +123100169,E03,12103106,Alarms,11/05/2012,11/05/2012,11/05/2012 11:50:56 AM,11/05/2012 11:52:08 AM,11/05/2012 11:52:39 AM,11/05/2012 11:53:17 AM,11/05/2012 11:55:59 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 11:59:29 AM,200 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7897614265442, -122.404814371149)",123100169-E03 +112370155,KM01,11078171,Medical Incident,08/25/2011,08/25/2011,08/25/2011 10:21:03 AM,08/25/2011 10:21:39 AM,08/25/2011 10:23:11 AM,08/25/2011 10:24:04 AM,08/25/2011 10:30:18 AM,08/25/2011 10:45:08 AM,08/25/2011 10:50:05 AM,Code 2 Transport,08/25/2011 11:28:04 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",112370155-KM01 +113120312,E22,11103753,Medical Incident,11/08/2011,11/08/2011,11/08/2011 06:19:37 PM,11/08/2011 06:20:26 PM,11/08/2011 06:21:06 PM,11/08/2011 06:22:10 PM,11/08/2011 06:22:49 PM,11/08/2011 06:35:14 PM,04/25/2016 02:01:44 PM,Other,11/08/2011 06:56:23 PM,1200 Block of 16TH AVE,SF,94122,B08,22,7367,3,E,3,false,,1,ENGINE,1,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",113120312-E22 +130160049,66,13005339,Medical Incident,01/16/2013,01/15/2013,01/16/2013 07:35:37 AM,01/16/2013 07:37:15 AM,01/16/2013 07:37:36 AM,01/16/2013 07:39:43 AM,01/16/2013 07:59:18 AM,01/16/2013 08:13:06 AM,01/16/2013 08:59:52 AM,Code 2 Transport,01/16/2013 09:24:58 AM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",130160049-66 +123200263,KM12,12106443,Medical Incident,11/15/2012,11/15/2012,11/15/2012 04:41:32 PM,11/15/2012 04:41:32 PM,11/15/2012 04:41:32 PM,11/15/2012 04:43:35 PM,11/15/2012 04:57:50 PM,11/15/2012 05:04:47 PM,11/15/2012 05:18:41 PM,Code 2 Transport,11/15/2012 05:32:56 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",123200263-KM12 +130280268,E48,13009671,Medical Incident,01/28/2013,01/28/2013,01/28/2013 03:40:20 PM,01/28/2013 03:40:44 PM,01/28/2013 03:43:15 PM,01/28/2013 03:45:47 PM,01/28/2013 03:48:08 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/28/2013 04:49:47 PM,1200 Block of BAYSIDE DR,TI,94130,B03,48,2931,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8304547884044, -122.37629451046)",130280268-E48 +131540359,E01,13052310,Alarms,06/03/2013,06/03/2013,06/03/2013 07:31:57 PM,06/03/2013 07:32:47 PM,06/03/2013 07:33:07 PM,04/25/2016 01:52:28 PM,06/03/2013 07:34:51 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 08:05:20 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",131540359-E01 +123020265,57,12100233,Water Rescue,10/28/2012,10/28/2012,10/28/2012 04:41:15 PM,10/28/2012 04:43:26 PM,10/28/2012 04:44:14 PM,10/28/2012 04:45:00 PM,10/28/2012 04:53:52 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 05:02:05 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,MEDIC,6,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",123020265-57 +160403915,KM03,16016247,Medical Incident,02/09/2016,02/09/2016,02/09/2016 11:19:10 PM,02/09/2016 11:19:10 PM,02/09/2016 11:27:31 PM,02/09/2016 11:28:05 PM,02/09/2016 11:32:11 PM,02/09/2016 11:48:26 PM,02/10/2016 12:23:36 AM,Code 2 Transport,02/10/2016 12:41:17 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7799892619986, -122.407376463936)",160403915-KM03 +133490204,T03,13118490,Medical Incident,12/15/2013,12/15/2013,12/15/2013 01:15:18 PM,12/15/2013 01:16:35 PM,12/15/2013 01:17:08 PM,12/15/2013 01:18:12 PM,12/15/2013 01:19:31 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 01:34:41 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",133490204-T03 +113070344,82,11102126,Medical Incident,11/03/2011,11/03/2011,11/03/2011 07:24:32 PM,11/03/2011 07:25:01 PM,11/03/2011 07:26:51 PM,11/03/2011 07:26:59 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,04/25/2016 02:01:49 PM,PINE ST/POLK ST,SF,94109,B04,3,3122,3,3,3,true,,1,MEDIC,3,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",113070344-82 +123120220,T12,12103858,Structure Fire,11/07/2012,11/07/2012,11/07/2012 02:23:57 PM,11/07/2012 02:23:57 PM,11/07/2012 02:24:02 PM,11/07/2012 02:25:56 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 02:29:25 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,false,Alarm,1,TRUCK,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",123120220-T12 +133440020,E14,13116534,Medical Incident,12/10/2013,12/09/2013,12/10/2013 01:40:48 AM,12/10/2013 01:43:58 AM,12/10/2013 01:46:37 AM,12/10/2013 01:48:13 AM,12/10/2013 01:52:41 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 02:04:57 AM,200 Block of 25TH AVE,SF,94121,B07,14,7214,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7848109228763, -122.485148529498)",133440020-E14 +103290222,B04,10105413,Structure Fire,11/25/2010,11/25/2010,11/25/2010 05:08:15 PM,11/25/2010 05:09:16 PM,11/25/2010 05:09:48 PM,11/25/2010 05:10:39 PM,11/25/2010 05:13:31 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/25/2010 05:16:27 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,false,,1,CHIEF,6,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",103290222-B04 +123510005,87,12117240,Medical Incident,12/16/2012,12/15/2012,12/16/2012 12:02:33 AM,12/16/2012 12:07:22 AM,12/16/2012 12:11:05 AM,12/16/2012 12:11:12 AM,12/16/2012 12:19:18 AM,12/16/2012 12:42:11 AM,12/16/2012 12:50:03 AM,Code 2 Transport,12/16/2012 01:16:50 AM,200 Block of LARKIN ST,SF,94102,B02,36,1645,1,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",123510005-87 +111100177,79,11036308,Medical Incident,04/20/2011,04/20/2011,04/20/2011 12:10:38 PM,04/20/2011 12:11:40 PM,04/20/2011 12:11:56 PM,04/20/2011 12:12:09 PM,04/20/2011 12:17:30 PM,04/20/2011 12:31:12 PM,04/20/2011 12:50:39 PM,Code 2 Transport,04/20/2011 01:06:16 PM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,3,2,2,true,,1,MEDIC,2,1,3,North Beach,"(37.8061515935611, -122.418537074676)",111100177-79 +160112464,87,16004474,Medical Incident,01/11/2016,01/11/2016,01/11/2016 04:38:45 PM,01/11/2016 04:40:26 PM,01/11/2016 04:40:56 PM,01/11/2016 04:41:06 PM,01/11/2016 04:47:12 PM,01/11/2016 05:09:37 PM,01/11/2016 05:23:38 PM,Code 2 Transport,01/11/2016 05:51:40 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160112464-87 +130500191,KM06,13017017,Medical Incident,02/19/2013,02/19/2013,02/19/2013 04:39:59 PM,02/19/2013 04:42:09 PM,02/19/2013 04:46:50 PM,02/19/2013 04:47:05 PM,02/19/2013 04:53:09 PM,02/19/2013 05:08:08 PM,02/19/2013 05:20:55 PM,Code 2 Transport,02/19/2013 05:40:59 PM,200 Block of SHOTWELL ST,SF,94110,B02,7,5237,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7644380015359, -122.416376372761)",130500191-KM06 +130240144,57,13008259,Medical Incident,01/24/2013,01/24/2013,01/24/2013 10:32:29 AM,01/24/2013 10:34:40 AM,01/24/2013 10:36:20 AM,01/24/2013 10:36:56 AM,01/24/2013 10:40:57 AM,01/24/2013 10:55:43 AM,01/24/2013 11:18:02 AM,Code 2 Transport,01/24/2013 11:39:30 AM,3300 Block of 26TH ST,SF,94110,B06,11,5613,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7490035566606, -122.417846229862)",130240144-57 +160642611,KM04,16025576,Medical Incident,03/04/2016,03/04/2016,03/04/2016 04:18:07 PM,03/04/2016 04:19:20 PM,03/04/2016 04:20:54 PM,03/04/2016 04:21:27 PM,03/04/2016 04:39:17 PM,03/04/2016 05:02:05 PM,03/04/2016 05:36:52 PM,Code 2 Transport,03/04/2016 06:12:02 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160642611-KM04 +160773295,67,16030737,Medical Incident,03/17/2016,03/17/2016,03/17/2016 06:19:40 PM,03/17/2016 06:21:03 PM,03/17/2016 06:21:45 PM,03/17/2016 06:22:07 PM,03/17/2016 06:50:30 PM,03/17/2016 07:00:37 PM,03/17/2016 07:37:17 PM,Code 2 Transport,03/17/2016 07:44:15 PM,1600 Block of SCOTT ST,San Francisco,94115,B04,10,4131,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7849864733147, -122.438181369407)",160773295-67 +102570155,77,10081168,Medical Incident,09/14/2010,09/14/2010,09/14/2010 11:48:14 AM,09/14/2010 11:49:50 AM,09/14/2010 11:50:16 AM,09/14/2010 11:50:31 AM,09/14/2010 11:57:40 AM,09/14/2010 12:04:07 PM,09/14/2010 12:19:39 PM,Code 2 Transport,09/14/2010 12:47:17 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",102570155-77 +160692141,75,16027510,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:33:37 PM,03/09/2016 02:34:37 PM,03/09/2016 02:35:05 PM,03/09/2016 02:35:21 PM,03/09/2016 02:40:05 PM,03/09/2016 02:51:55 PM,03/09/2016 02:58:53 PM,Code 2 Transport,03/09/2016 03:33:26 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",160692141-75 +132320254,RS2,13078411,Outside Fire,08/20/2013,08/20/2013,08/20/2013 04:25:18 PM,08/20/2013 04:27:46 PM,08/20/2013 04:28:53 PM,08/20/2013 04:30:49 PM,04/25/2016 01:51:12 PM,04/25/2016 01:51:12 PM,04/25/2016 01:51:12 PM,Other,08/20/2013 04:32:48 PM,QUINT ST/OAKDALE AV,SF,94124,B10,42,6444,3,3,3,false,Fire,1,RESCUE SQUAD,10,10,10,Bayview Hunters Point,"(37.7377840563551, -122.395944826657)",132320254-RS2 +130010162,E14,13000116,Medical Incident,01/01/2013,12/31/2012,01/01/2013 02:30:28 AM,01/01/2013 02:31:45 AM,01/01/2013 02:39:28 AM,01/01/2013 02:40:59 AM,01/01/2013 02:42:51 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 02:53:00 AM,23RD AV/CLEMENT ST,SF,94121,B07,14,7175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7821217588227, -122.482735196985)",130010162-E14 +102950350,KM11,10094225,Medical Incident,10/22/2010,10/22/2010,10/22/2010 07:48:08 PM,10/22/2010 07:49:36 PM,10/22/2010 07:51:38 PM,10/22/2010 07:52:57 PM,10/22/2010 07:58:44 PM,10/22/2010 08:20:08 PM,10/22/2010 08:34:55 PM,Code 2 Transport,10/22/2010 09:03:04 PM,500 Block of HOWARD ST,SF,94105,B03,35,2141,2,2,2,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",102950350-KM11 +110380428,93,11012783,Medical Incident,02/07/2011,02/07/2011,02/07/2011 11:41:09 PM,02/07/2011 11:43:26 PM,02/07/2011 11:43:39 PM,02/07/2011 11:43:51 PM,02/07/2011 11:46:49 PM,02/07/2011 11:59:00 PM,02/08/2011 12:02:25 AM,Code 2 Transport,02/08/2011 12:21:07 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",110380428-93 +160512867,58,16020577,Medical Incident,02/20/2016,02/20/2016,02/20/2016 07:44:30 PM,02/20/2016 07:44:33 PM,02/20/2016 07:45:23 PM,02/20/2016 07:45:39 PM,02/20/2016 07:52:55 PM,02/20/2016 08:02:45 PM,02/20/2016 08:10:31 PM,Code 3 Transport,02/20/2016 08:54:08 PM,400 Block of 21ST AVE,San Francisco,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7793232485951, -122.480311461587)",160512867-58 +133320074,AM16,13112597,Medical Incident,11/28/2013,11/28/2013,11/28/2013 08:32:36 AM,11/28/2013 08:36:00 AM,11/28/2013 08:37:04 AM,11/28/2013 08:39:28 AM,11/28/2013 08:42:33 AM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,No Merit,11/28/2013 08:51:10 AM,1600 Block of GEARY BL,SF,94115,B04,38,3364,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.7848966681924, -122.429629258891)",133320074-AM16 +160340300,AM20,16013233,Medical Incident,02/03/2016,02/02/2016,02/03/2016 03:45:03 AM,02/03/2016 03:47:52 AM,02/03/2016 03:48:24 AM,02/03/2016 03:50:21 AM,02/03/2016 03:55:34 AM,02/03/2016 04:19:52 AM,02/03/2016 04:34:03 AM,Code 2 Transport,02/03/2016 04:59:35 AM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7578954435745, -122.417957286582)",160340300-AM20 +121200036,RS1,12039707,Medical Incident,04/29/2012,04/28/2012,04/29/2012 01:30:32 AM,04/29/2012 01:32:02 AM,04/29/2012 01:32:38 AM,04/29/2012 01:36:48 AM,04/29/2012 01:38:02 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 01:41:47 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",121200036-RS1 +160413516,58,16016631,Medical Incident,02/10/2016,02/10/2016,02/10/2016 08:14:57 PM,02/10/2016 08:17:05 PM,02/10/2016 08:17:33 PM,02/10/2016 08:17:39 PM,02/10/2016 08:17:39 PM,02/10/2016 08:48:59 PM,02/10/2016 09:26:30 PM,Code 2 Transport,02/10/2016 09:58:18 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",160413516-58 +131860404,E11,13063617,Other,07/05/2013,07/05/2013,07/05/2013 10:12:29 PM,07/05/2013 10:12:29 PM,07/05/2013 10:12:29 PM,04/25/2016 01:51:56 PM,04/25/2016 01:51:56 PM,04/25/2016 01:51:56 PM,04/25/2016 01:51:56 PM,Patient Declined Transport,07/05/2013 10:13:06 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",131860404-E11 +111920401,AM18,11063565,Medical Incident,07/11/2011,07/11/2011,07/11/2011 11:39:27 PM,07/11/2011 11:41:57 PM,07/11/2011 11:42:09 PM,07/11/2011 11:42:55 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Fire,07/12/2011 12:28:42 AM,100 Block of EXCELSIOR AVE,SF,94112,B09,43,6116,1,1,2,false,,1,PRIVATE,1,9,11,Excelsior,"(37.7256323988738, -122.432491023889)",111920401-AM18 +131130215,E01,13038122,Medical Incident,04/23/2013,04/23/2013,04/23/2013 02:23:36 PM,04/23/2013 02:27:06 PM,04/23/2013 02:28:04 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/25/2016 01:53:09 PM,MISSION ST/9TH ST,SF,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,ENGINE,3,2,6,South of Market,"(37.7762305177878, -122.414711004673)",131130215-E01 +103650238,T08,10117139,Structure Fire,12/31/2010,12/31/2010,12/31/2010 04:59:45 PM,12/31/2010 04:59:45 PM,12/31/2010 05:00:22 PM,12/31/2010 05:01:15 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 05:04:23 PM,MAIN ST/BRYANT ST,SF,94105,B03,35,2121,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7868986775116, -122.388779437164)",103650238-T08 +133000120,E31,13101895,Medical Incident,10/27/2013,10/26/2013,10/27/2013 07:22:02 AM,10/27/2013 07:23:43 AM,10/27/2013 07:24:06 AM,10/27/2013 07:25:43 AM,10/27/2013 07:31:27 AM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,No Merit,10/27/2013 07:31:38 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Non Life-threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",133000120-E31 +111030227,RS2,11034167,Structure Fire,04/13/2011,04/13/2011,04/13/2011 02:42:32 PM,04/13/2011 02:44:00 PM,04/13/2011 02:44:28 PM,04/13/2011 02:46:49 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/13/2011 02:49:18 PM,300 Block of RUSSIA AVE,SF,94112,B09,43,6126,3,3,3,false,,1,RESCUE SQUAD,10,9,11,Excelsior,"(37.7202067899323, -122.434420669446)",111030227-RS2 +120800137,E21,12026516,Medical Incident,03/20/2012,03/20/2012,03/20/2012 11:26:50 AM,03/20/2012 11:27:08 AM,03/20/2012 11:27:19 AM,04/25/2016 01:59:35 PM,03/20/2012 11:41:14 AM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/20/2012 12:55:39 PM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7695711762103, -122.449920089485)",120800137-E21 +160300458,70,16011661,Medical Incident,01/30/2016,01/29/2016,01/30/2016 03:23:55 AM,01/30/2016 03:24:53 AM,01/30/2016 03:25:40 AM,01/30/2016 03:25:45 AM,01/30/2016 03:30:42 AM,01/30/2016 03:45:31 AM,01/30/2016 03:52:54 AM,Code 2 Transport,01/30/2016 04:47:39 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160300458-70 +111230200,E11,11040637,Medical Incident,05/03/2011,05/03/2011,05/03/2011 01:56:38 PM,05/03/2011 01:58:21 PM,05/03/2011 01:59:42 PM,05/03/2011 02:01:05 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 02:03:48 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,2,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",111230200-E11 +160730485,AM02,16028881,Medical Incident,03/13/2016,03/12/2016,03/13/2016 06:08:45 AM,03/13/2016 06:09:44 AM,03/13/2016 06:10:23 AM,03/13/2016 06:11:03 AM,03/13/2016 06:14:13 AM,03/13/2016 06:37:53 AM,03/13/2016 06:52:23 AM,Code 2 Transport,03/13/2016 07:21:11 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",160730485-AM02 +111360349,E03,11045425,Medical Incident,05/16/2011,05/16/2011,05/16/2011 10:37:28 PM,05/16/2011 10:38:40 PM,05/16/2011 10:38:57 PM,05/16/2011 10:40:03 PM,05/16/2011 10:41:28 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/16/2011 10:45:52 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",111360349-E03 +121150181,54,12038142,Medical Incident,04/24/2012,04/24/2012,04/24/2012 01:26:09 PM,04/24/2012 01:26:50 PM,04/24/2012 01:27:00 PM,04/24/2012 01:27:12 PM,04/24/2012 01:29:50 PM,04/24/2012 01:59:43 PM,04/24/2012 02:24:29 PM,Code 2 Transport,04/24/2012 03:25:40 PM,100 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",121150181-54 +122780352,99,12092050,Medical Incident,10/04/2012,10/04/2012,10/04/2012 09:29:21 PM,10/04/2012 09:31:09 PM,10/04/2012 09:33:41 PM,10/04/2012 09:33:57 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Unable to Locate,10/04/2012 09:49:30 PM,1000 Block of HARRISON ST,SF,94103,B03,8,2254,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7770983962506, -122.404388964595)",122780352-99 +111270220,KM01,11042077,Structure Fire,05/07/2011,05/07/2011,05/07/2011 03:53:27 PM,05/07/2011 03:53:27 PM,05/07/2011 03:54:17 PM,05/07/2011 03:59:32 PM,05/07/2011 04:03:07 PM,05/07/2011 04:13:39 PM,05/07/2011 04:36:19 PM,Code 2 Transport,05/07/2011 05:14:11 PM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7802649718101, -122.40338721034)",111270220-KM01 +140440431,E08,14015165,Medical Incident,02/13/2014,02/13/2014,02/13/2014 11:28:13 PM,02/13/2014 11:29:13 PM,02/13/2014 11:34:17 PM,02/13/2014 11:35:38 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 11:50:31 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",140440431-E08 +132150334,E36,13072742,Medical Incident,08/03/2013,08/03/2013,08/03/2013 07:18:48 PM,08/03/2013 07:20:22 PM,08/03/2013 07:22:51 PM,08/03/2013 07:24:43 PM,08/03/2013 07:26:55 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,No Merit,08/03/2013 07:29:19 PM,0 Block of VALENCIA ST,SF,94103,B02,36,3311,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7720472598025, -122.422586141904)",132150334-E36 +160521160,88,16020763,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:26:11 AM,02/21/2016 10:26:11 AM,02/21/2016 10:27:00 AM,02/21/2016 10:27:07 AM,02/21/2016 10:35:48 AM,02/21/2016 10:50:14 AM,02/21/2016 11:15:16 AM,Code 2 Transport,02/21/2016 11:42:01 AM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160521160-88 +122910384,99,12096526,Structure Fire,10/17/2012,10/17/2012,10/17/2012 07:58:16 PM,10/17/2012 07:58:50 PM,10/17/2012 07:59:02 PM,10/17/2012 07:59:36 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 08:06:57 PM,0 Block of KISSLING ST,SF,94103,B02,36,5114,3,3,3,true,Alarm,1,MEDIC,12,2,6,South of Market,"(37.7728460200861, -122.414655134668)",122910384-99 +160051793,55,16002005,Medical Incident,01/05/2016,01/05/2016,01/05/2016 01:18:03 PM,01/05/2016 01:18:51 PM,01/05/2016 01:19:32 PM,01/05/2016 01:19:46 PM,01/05/2016 01:28:32 PM,01/05/2016 01:46:19 PM,01/05/2016 02:01:03 PM,Code 2 Transport,01/05/2016 02:54:17 PM,700 Block of NORTH POINT ST,San Francisco,94109,B01,28,1525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.805880116434, -122.419554681648)",160051793-55 +110330397,E41,11011003,Medical Incident,02/02/2011,02/02/2011,02/02/2011 10:14:48 PM,02/02/2011 10:21:26 PM,02/02/2011 10:21:59 PM,02/02/2011 10:22:47 PM,02/02/2011 10:25:05 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 10:30:49 PM,JACKSON ST/VAN NESS AV,SF,94109,B04,41,3153,3,3,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7939350051074, -122.423048803014)",110330397-E41 +133570351,89,13121510,Medical Incident,12/23/2013,12/23/2013,12/23/2013 09:44:39 PM,12/23/2013 09:44:48 PM,12/23/2013 09:45:08 PM,12/23/2013 09:45:17 PM,12/23/2013 09:53:40 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,No Merit,12/23/2013 10:01:04 PM,100 Block of RALSTON ST,SF,94132,B09,33,8411,E,E,3,false,Potentially Life-Threatening,1,MEDIC,4,9,11,Oceanview/Merced/Ingleside,"(37.7151777593562, -122.468838490776)",133570351-89 +110820080,E12,11026864,Medical Incident,03/23/2011,03/22/2011,03/23/2011 07:34:47 AM,03/23/2011 07:35:22 AM,03/23/2011 07:35:36 AM,03/23/2011 07:36:26 AM,03/23/2011 07:40:25 AM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/23/2011 07:52:46 AM,500 Block of PARNASSUS AVE,SF,94122,B05,12,7323,E,E,3,true,,1,ENGINE,2,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",110820080-E12 +133200036,KM15,13108602,Medical Incident,11/16/2013,11/15/2013,11/16/2013 03:40:05 AM,11/16/2013 03:42:52 AM,11/16/2013 03:43:42 AM,11/16/2013 03:44:29 AM,11/16/2013 03:53:30 AM,11/16/2013 04:03:00 AM,11/16/2013 04:10:46 AM,Code 2 Transport,11/16/2013 04:36:11 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",133200036-KM15 +111820242,58,11060120,Medical Incident,07/01/2011,07/01/2011,07/01/2011 02:22:30 PM,07/01/2011 02:22:49 PM,07/01/2011 02:24:28 PM,04/25/2016 02:03:53 PM,07/01/2011 02:38:37 PM,07/01/2011 02:48:59 PM,07/01/2011 03:02:26 PM,Code 2 Transport,07/01/2011 03:31:11 PM,600 Block of TERESITA BLVD,SF,94127,B09,39,8245,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7374074387293, -122.446456076302)",111820242-58 +121060128,E39,12035085,Medical Incident,04/15/2012,04/15/2012,04/15/2012 10:32:41 AM,04/15/2012 10:35:46 AM,04/15/2012 10:36:19 AM,04/15/2012 10:37:16 AM,04/15/2012 10:41:21 AM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/15/2012 11:05:41 AM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",121060128-E39 +160722207,AM08,16028656,Water Rescue,03/12/2016,03/12/2016,03/12/2016 04:03:59 PM,03/12/2016 04:05:45 PM,03/12/2016 04:06:22 PM,03/12/2016 04:06:56 PM,03/12/2016 04:31:40 PM,03/12/2016 05:07:08 PM,03/12/2016 05:27:06 PM,Code 2 Transport,03/12/2016 05:58:08 PM,900 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,2,3,3,false,Fire,1,PRIVATE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160722207-AM08 +113280184,55,11108891,Medical Incident,11/24/2011,11/24/2011,11/24/2011 03:29:36 PM,11/24/2011 03:31:45 PM,11/24/2011 03:31:53 PM,11/24/2011 03:32:11 PM,11/24/2011 03:41:00 PM,11/24/2011 04:03:27 PM,11/24/2011 04:12:52 PM,Code 2 Transport,11/24/2011 03:44:05 PM,700 Block of 4TH ST,SF,94107,B03,8,2224,2,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",113280184-55 +160650739,82,16025850,Medical Incident,03/05/2016,03/04/2016,03/05/2016 07:29:35 AM,03/05/2016 07:31:01 AM,03/05/2016 07:31:38 AM,03/05/2016 07:32:07 AM,03/05/2016 07:41:01 AM,03/05/2016 07:58:40 AM,03/05/2016 08:16:39 AM,Code 2 Transport,03/05/2016 08:49:35 AM,200 Block of ALABAMA ST,San Francisco,94103,B02,29,5241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7671584949516, -122.41250540209)",160650739-82 +110560064,E10,11018356,Medical Incident,02/25/2011,02/24/2011,02/25/2011 07:26:15 AM,02/25/2011 07:27:36 AM,02/25/2011 07:28:40 AM,02/25/2011 07:30:42 AM,02/25/2011 07:33:17 AM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 07:42:40 AM,200 Block of 9TH AVE,SF,94118,B07,31,7136,3,3,3,true,,1,ENGINE,4,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",110560064-E10 +123390257,KM10,12113117,Medical Incident,12/04/2012,12/04/2012,12/04/2012 03:47:47 PM,12/04/2012 03:48:46 PM,12/04/2012 03:49:14 PM,12/04/2012 03:50:22 PM,12/04/2012 03:57:37 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 04:05:02 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",123390257-KM10 +130890385,E41,13029941,Alarms,03/30/2013,03/30/2013,03/30/2013 11:19:52 PM,03/30/2013 11:20:55 PM,03/30/2013 11:21:06 PM,03/30/2013 11:22:24 PM,03/30/2013 11:23:40 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 11:34:14 PM,900 Block of MASON ST,SF,94108,B01,41,1414,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",130890385-E41 +123150048,E36,12104724,Alarms,11/10/2012,11/09/2012,11/10/2012 03:29:57 AM,11/10/2012 03:31:34 AM,11/10/2012 03:32:30 AM,11/10/2012 03:34:20 AM,11/10/2012 03:36:09 AM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/10/2012 03:46:43 AM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,false,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.777460008139, -122.418879416566)",123150048-E36 +131830273,T01,13062428,Structure Fire,07/02/2013,07/02/2013,07/02/2013 05:15:20 PM,07/02/2013 05:16:05 PM,07/02/2013 05:16:39 PM,07/02/2013 05:17:58 PM,07/02/2013 05:19:09 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Other,07/02/2013 06:09:47 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Fire,1,TRUCK,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",131830273-T01 +132170147,B03,13073271,Alarms,08/05/2013,08/05/2013,08/05/2013 11:22:59 AM,08/05/2013 11:23:52 AM,08/05/2013 11:24:08 AM,08/05/2013 11:25:08 AM,08/05/2013 11:27:29 AM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 11:30:42 AM,0 Block of SOUTH PARK,SF,94107,B03,8,2153,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",132170147-B03 +120830359,AP,12027715,Other,03/23/2012,03/23/2012,03/23/2012 09:51:16 PM,03/23/2012 09:51:16 PM,03/23/2012 09:51:16 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Fire,03/23/2012 09:52:36 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120830359-AP +133000146,82,13101915,Medical Incident,10/27/2013,10/27/2013,10/27/2013 09:16:02 AM,10/27/2013 09:17:24 AM,10/27/2013 09:18:05 AM,10/27/2013 09:18:25 AM,10/27/2013 09:21:28 AM,10/27/2013 09:41:37 AM,04/25/2016 01:50:04 PM,Code 2 Transport,10/27/2013 10:21:50 AM,2000 Block of 19TH AVE,SF,94116,B08,40,7417,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",133000146-82 +122090141,B07,12069409,Alarms,07/27/2012,07/27/2012,07/27/2012 12:01:29 PM,07/27/2012 12:02:26 PM,07/27/2012 12:02:37 PM,07/27/2012 12:04:47 PM,07/27/2012 12:05:07 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 12:14:07 PM,4100 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,false,Alarm,1,CHIEF,1,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",122090141-B07 +160560923,KM08,16022302,Medical Incident,02/25/2016,02/25/2016,02/25/2016 09:06:53 AM,02/25/2016 09:07:04 AM,02/25/2016 09:08:08 AM,02/25/2016 09:08:40 AM,02/25/2016 09:15:00 AM,02/25/2016 09:40:17 AM,02/25/2016 10:00:58 AM,Code 2 Transport,02/25/2016 10:23:03 AM,1600 Block of LAKE ST,San Francisco,94121,B07,31,7163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7860492011386, -122.477105652462)",160560923-KM08 +160843877,KM03,16033551,Traffic Collision,03/24/2016,03/24/2016,03/24/2016 08:52:48 PM,03/24/2016 08:52:48 PM,03/24/2016 08:53:32 PM,03/24/2016 08:54:00 PM,03/24/2016 08:57:27 PM,03/24/2016 09:14:09 PM,03/24/2016 09:24:26 PM,Code 2 Transport,03/24/2016 10:00:10 PM,VAN NESS AV/SUTTER ST,San Francisco,94109,B04,3,3161,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",160843877-KM03 +112200249,E02,11072746,Structure Fire,08/08/2011,08/08/2011,08/08/2011 04:41:00 PM,08/08/2011 04:41:00 PM,08/08/2011 04:41:10 PM,08/08/2011 04:42:24 PM,08/08/2011 04:44:19 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Fire,08/08/2011 04:45:05 PM,KEARNY ST/VALLEJO ST,SF,94133,B01,2,1251,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.7989693078073, -122.405645269993)",112200249-E02 +122550131,E19,12084234,Alarms,09/11/2012,09/11/2012,09/11/2012 10:24:08 AM,09/11/2012 10:25:22 AM,09/11/2012 10:25:41 AM,09/11/2012 10:27:37 AM,09/11/2012 10:28:43 AM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 11:06:24 AM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",122550131-E19 +130490316,E31,13016825,Medical Incident,02/18/2013,02/18/2013,02/18/2013 08:02:01 PM,02/18/2013 08:02:21 PM,02/18/2013 08:02:53 PM,02/18/2013 08:03:18 PM,02/18/2013 08:04:33 PM,04/25/2016 01:54:13 PM,04/25/2016 01:54:13 PM,Other,02/18/2013 08:12:26 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,3,1,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",130490316-E31 +160600284,KM03,16023746,Medical Incident,02/29/2016,02/28/2016,02/29/2016 03:23:13 AM,02/29/2016 03:24:34 AM,02/29/2016 03:24:52 AM,02/29/2016 03:25:18 AM,02/29/2016 03:33:14 AM,02/29/2016 03:47:17 AM,02/29/2016 03:55:01 AM,Code 2 Transport,02/29/2016 04:18:23 AM,HYDE ST/MCALLISTER ST,San Francisco,94102,B02,36,1552,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160600284-KM03 +160062198,62,16002449,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:58:08 PM,01/06/2016 02:58:08 PM,01/06/2016 02:58:32 PM,01/06/2016 02:59:06 PM,01/06/2016 03:04:59 PM,01/06/2016 03:17:43 PM,01/06/2016 03:28:49 PM,Code 2 Transport,01/06/2016 03:57:00 PM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7648333975842, -122.422364680364)",160062198-62 +113100273,RC3,11103125,Medical Incident,11/06/2011,11/06/2011,11/06/2011 06:55:25 PM,11/06/2011 06:56:57 PM,11/06/2011 06:57:14 PM,11/06/2011 06:57:24 PM,11/06/2011 07:04:10 PM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Medical Examiner,11/06/2011 08:17:43 PM,0 Block of MINERVA ST,SF,94112,B09,33,8372,E,E,3,true,,1,RESCUE CAPTAIN,3,9,11,Oceanview/Merced/Ingleside,"(37.7158849109873, -122.454797121611)",113100273-RC3 +133180219,E01,13108106,Medical Incident,11/14/2013,11/14/2013,11/14/2013 01:50:02 PM,11/14/2013 01:51:28 PM,11/14/2013 01:51:49 PM,11/14/2013 01:52:36 PM,11/14/2013 01:55:43 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,Other,11/14/2013 02:07:22 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",133180219-E01 +123650341,T16,12122267,Structure Fire,12/30/2012,12/30/2012,12/30/2012 10:51:06 PM,12/30/2012 10:51:07 PM,12/30/2012 10:51:17 PM,12/30/2012 10:52:34 PM,04/25/2016 01:55:03 PM,04/25/2016 01:55:03 PM,04/25/2016 01:55:03 PM,Other,12/30/2012 10:53:59 PM,FILLMORE ST/UNION ST,SF,94123,B04,16,3552,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.7970890002513, -122.435489829172)",123650341-T16 +160201738,AM04,16008002,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:35:38 PM,01/20/2016 12:36:15 PM,01/20/2016 12:36:43 PM,01/20/2016 12:37:55 PM,01/20/2016 12:42:47 PM,01/20/2016 12:54:54 PM,01/20/2016 01:27:54 PM,Code 2 Transport,01/20/2016 01:50:55 PM,300 Block of BRANNAN ST,San Francisco,94107,B03,8,2173,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7805681903473, -122.393792694416)",160201738-AM04 +120100140,E15,12003440,Medical Incident,01/10/2012,01/10/2012,01/10/2012 11:13:02 AM,01/10/2012 11:14:02 AM,01/10/2012 11:14:44 AM,01/10/2012 11:16:03 AM,01/10/2012 11:18:04 AM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/10/2012 11:23:30 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",120100140-E15 +112650300,E01,11087593,Medical Incident,09/22/2011,09/22/2011,09/22/2011 04:26:18 PM,09/22/2011 04:26:50 PM,09/22/2011 04:27:28 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,Other,09/22/2011 04:31:28 PM,200 Block of GEARY ST,SF,94102,B01,1,1323,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",112650300-E01 +160321252,67,16012530,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:08:04 AM,02/01/2016 11:08:04 AM,02/01/2016 11:09:29 AM,02/01/2016 11:09:39 AM,02/01/2016 11:12:49 AM,02/01/2016 11:28:14 AM,02/01/2016 11:38:48 AM,Code 2 Transport,02/01/2016 12:06:53 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",160321252-67 +130380251,75,13013044,Medical Incident,02/07/2013,02/07/2013,02/07/2013 04:14:56 PM,02/07/2013 04:15:48 PM,02/07/2013 04:16:51 PM,02/07/2013 04:19:53 PM,02/07/2013 04:19:59 PM,02/07/2013 04:31:29 PM,02/07/2013 04:40:22 PM,Code 2 Transport,02/07/2013 05:26:47 PM,200 Block of SHOTWELL ST,SF,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7644380015359, -122.416376372761)",130380251-75 +160510023,AM20,16020303,Medical Incident,02/20/2016,02/19/2016,02/20/2016 12:07:04 AM,02/20/2016 12:07:04 AM,02/20/2016 12:07:31 AM,02/20/2016 12:08:30 AM,02/20/2016 12:15:56 AM,02/20/2016 12:49:10 AM,02/20/2016 01:00:42 AM,Code 2 Transport,02/20/2016 01:45:02 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160510023-AM20 +103620238,E08,10116158,Medical Incident,12/28/2010,12/28/2010,12/28/2010 04:59:40 PM,12/28/2010 05:00:25 PM,12/28/2010 05:02:23 PM,12/28/2010 05:03:31 PM,12/28/2010 05:05:44 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,No Merit,12/28/2010 05:10:03 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103620238-E08 +140760323,58,14025838,Medical Incident,03/17/2014,03/17/2014,03/17/2014 07:04:03 PM,03/17/2014 07:05:26 PM,03/17/2014 07:14:28 PM,03/17/2014 07:14:28 PM,03/17/2014 07:18:47 PM,03/17/2014 07:34:44 PM,03/17/2014 07:50:40 PM,Code 2 Transport,03/17/2014 08:10:03 PM,3000 Block of 23RD ST,SAN FRANCISCO,94110,B06,7,5477,1,1,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7542522286171, -122.412599303181)",140760323-58 +123210123,B01,12106640,Alarms,11/16/2012,11/16/2012,11/16/2012 10:46:07 AM,11/16/2012 10:47:26 AM,11/16/2012 10:48:01 AM,11/16/2012 10:48:15 AM,11/16/2012 10:53:02 AM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/16/2012 10:58:49 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",123210123-B01 +113350187,RC3,11110907,Medical Incident,12/01/2011,12/01/2011,12/01/2011 01:23:12 PM,12/01/2011 01:24:54 PM,12/01/2011 01:25:19 PM,12/01/2011 01:28:37 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,12/01/2011 01:28:51 PM,16TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,E,3,true,,1,RESCUE CAPTAIN,3,2,8,Mission,"(37.7649173790256, -122.421886447232)",113350187-RC3 +122260343,E07,12075058,Medical Incident,08/13/2012,08/13/2012,08/13/2012 08:10:21 PM,08/13/2012 08:12:15 PM,08/13/2012 08:12:50 PM,08/13/2012 08:13:39 PM,08/13/2012 08:15:56 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 08:32:46 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7581042111797, -122.421163821698)",122260343-E07 +133140044,D2,13106641,Structure Fire,11/10/2013,11/09/2013,11/10/2013 03:24:42 AM,11/10/2013 03:25:44 AM,11/10/2013 03:31:45 AM,11/10/2013 03:34:09 AM,11/10/2013 03:36:49 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/10/2013 04:08:55 AM,2000 Block of BROADWAY,SF,94123,B04,38,3355,3,3,3,false,Alarm,1,CHIEF,7,4,2,Pacific Heights,"(37.7948438279361, -122.430822602721)",133140044-D2 +131770367,T14,13060241,Structure Fire,06/26/2013,06/26/2013,06/26/2013 09:23:21 PM,06/26/2013 09:25:00 PM,06/26/2013 09:25:29 PM,06/26/2013 09:26:41 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 09:36:48 PM,2400 Block of LAKE ST,SF,94121,B07,14,7217,3,3,3,false,Alarm,1,TRUCK,5,7,1,Outer Richmond,"(37.7856667322606, -122.485681909658)",131770367-T14 +160562801,AM16,16022474,Medical Incident,02/25/2016,02/25/2016,02/25/2016 04:49:26 PM,02/25/2016 04:49:26 PM,02/25/2016 04:49:45 PM,02/25/2016 04:50:27 PM,02/25/2016 04:52:19 PM,02/25/2016 05:04:29 PM,02/25/2016 05:17:50 PM,Code 2 Transport,02/25/2016 05:41:35 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160562801-AM16 +112540114,E38,11083763,Administrative,09/11/2011,09/11/2011,09/11/2011 10:00:33 AM,09/11/2011 10:00:35 AM,09/11/2011 10:00:41 AM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Other,09/11/2011 10:01:07 AM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",112540114-E38 +110550132,E06,11018081,Medical Incident,02/24/2011,02/24/2011,02/24/2011 10:28:13 AM,02/24/2011 10:30:01 AM,02/24/2011 10:30:15 AM,02/24/2011 10:35:29 AM,02/24/2011 10:31:19 AM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,Other,02/24/2011 10:42:11 AM,0 Block of BELCHER ST,SF,94114,B05,6,5131,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7685230217392, -122.430233400692)",110550132-E06 +133460159,B01,13117364,Alarms,12/12/2013,12/12/2013,12/12/2013 10:57:45 AM,12/12/2013 10:58:59 AM,12/12/2013 11:00:05 AM,12/12/2013 11:00:44 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 11:07:13 AM,100 Block of POST ST,SF,94108,B03,1,1316,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7887963252862, -122.403991276137)",133460159-B01 +160572912,60,16022867,Medical Incident,02/26/2016,02/26/2016,02/26/2016 06:08:14 PM,02/26/2016 06:10:28 PM,02/26/2016 06:10:41 PM,02/26/2016 06:11:08 PM,02/26/2016 06:33:14 PM,02/26/2016 06:46:02 PM,02/26/2016 07:03:58 PM,Code 2 Transport,02/26/2016 07:33:53 PM,100 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",160572912-60 +160502069,RC2,16020122,Medical Incident,02/19/2016,02/19/2016,02/19/2016 02:29:42 PM,02/19/2016 02:29:52 PM,02/19/2016 02:32:31 PM,02/19/2016 02:32:31 PM,02/19/2016 02:33:06 PM,02/19/2016 02:46:59 PM,02/19/2016 02:54:07 PM,Code 2 Transport,02/19/2016 03:09:26 PM,900 Block of CABRILLO ST,San Francisco,94118,B07,31,7143,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,7,1,Inner Richmond,"(37.7752045181889, -122.468696622564)",160502069-RC2 +112780275,E21,11092105,Medical Incident,10/05/2011,10/05/2011,10/05/2011 05:36:09 PM,10/05/2011 05:38:37 PM,10/05/2011 05:39:31 PM,10/05/2011 05:40:23 PM,10/05/2011 05:40:58 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 05:44:46 PM,500 Block of BAKER ST,SF,94117,B05,21,4243,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.775978571838, -122.441325869621)",112780275-E21 +133410333,E43,13115752,Traffic Collision,12/07/2013,12/07/2013,12/07/2013 08:05:43 PM,12/07/2013 08:06:25 PM,12/07/2013 08:06:36 PM,12/07/2013 08:08:00 PM,12/07/2013 08:10:06 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/07/2013 08:13:28 PM,MISSION ST/GENEVA AV,SF,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",133410333-E43 +102720168,E05,10086350,Medical Incident,09/29/2010,09/29/2010,09/29/2010 12:02:35 PM,09/29/2010 12:03:59 PM,09/29/2010 12:04:10 PM,09/29/2010 12:04:53 PM,09/29/2010 12:07:21 PM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Other,09/29/2010 12:09:02 PM,1000 Block of HAYES ST,SF,94117,B05,21,363,3,3,3,true,,1,ENGINE,2,5,5,Hayes Valley,"(37.7754672344817, -122.433645632366)",102720168-E05 +160330358,78,16012842,Medical Incident,02/02/2016,02/01/2016,02/02/2016 04:17:37 AM,02/02/2016 04:21:12 AM,02/02/2016 04:21:47 AM,02/02/2016 04:21:58 AM,02/02/2016 04:24:18 AM,02/02/2016 04:51:10 AM,02/02/2016 04:57:38 AM,Code 2 Transport,02/02/2016 05:29:35 AM,LARKIN ST/GROVE ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160330358-78 +122310299,T03,12076709,Medical Incident,08/18/2012,08/18/2012,08/18/2012 07:37:51 PM,08/18/2012 07:38:28 PM,08/18/2012 07:40:19 PM,08/18/2012 07:41:38 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 07:42:25 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",122310299-T03 +112960208,T07,11098203,Structure Fire,10/23/2011,10/23/2011,10/23/2011 01:55:35 PM,10/23/2011 01:55:35 PM,10/23/2011 01:55:53 PM,10/23/2011 01:56:49 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 01:59:13 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",112960208-T07 +123050290,AM20,12101267,Medical Incident,10/31/2012,10/31/2012,10/31/2012 02:37:42 PM,10/31/2012 02:41:20 PM,10/31/2012 02:43:00 PM,10/31/2012 02:43:51 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,04/25/2016 01:56:01 PM,ELLIS ST/HYDE ST,SF,94109,B02,3,1555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",123050290-AM20 +160022327,76,16000805,Medical Incident,01/02/2016,01/02/2016,01/02/2016 04:44:26 PM,01/02/2016 04:45:24 PM,01/02/2016 04:46:50 PM,01/02/2016 04:46:50 PM,01/02/2016 04:56:14 PM,01/02/2016 05:16:47 PM,01/02/2016 05:27:42 PM,Code 2 Transport,01/02/2016 05:58:42 PM,700 Block of FOLSOM ST,San Francisco,94103,B03,1,2176,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7832536611671, -122.399701172169)",160022327-76 +112390155,E03,11078849,Structure Fire,08/27/2011,08/27/2011,08/27/2011 11:31:47 AM,08/27/2011 11:31:48 AM,08/27/2011 11:31:58 AM,08/27/2011 11:33:05 AM,08/27/2011 11:33:45 AM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Fire,08/27/2011 11:34:26 AM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",112390155-E03 +120360009,55,12011847,Medical Incident,02/05/2012,02/04/2012,02/05/2012 12:38:45 AM,02/05/2012 12:39:07 AM,02/05/2012 12:39:29 AM,02/05/2012 12:41:20 AM,02/05/2012 12:48:55 AM,02/05/2012 01:09:09 AM,02/05/2012 01:24:09 AM,Code 2 Transport,02/05/2012 01:57:50 AM,MISSION ST/4TH ST,SF,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",120360009-55 +121050372,77,12034937,Medical Incident,04/14/2012,04/14/2012,04/14/2012 10:05:00 PM,04/14/2012 10:06:15 PM,04/14/2012 10:06:43 PM,04/14/2012 10:06:57 PM,04/14/2012 10:10:20 PM,04/14/2012 10:21:29 PM,04/14/2012 10:30:50 PM,Code 3 Transport,04/14/2012 11:03:24 PM,1000 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7962956458196, -122.41212224482)",121050372-77 +160761282,AM02,16030095,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:41:18 AM,03/16/2016 10:42:09 AM,03/16/2016 10:42:27 AM,03/16/2016 10:43:07 AM,03/16/2016 10:50:56 AM,03/16/2016 11:18:27 AM,03/16/2016 11:36:19 AM,Code 2 Transport,03/16/2016 12:39:23 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160761282-AM02 +160411950,86,16016471,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:32:18 PM,02/10/2016 01:34:12 PM,02/10/2016 01:34:36 PM,02/10/2016 01:34:46 PM,02/10/2016 01:41:21 PM,02/10/2016 01:55:48 PM,02/10/2016 02:02:53 PM,Code 2 Transport,02/10/2016 02:54:37 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160411950-86 +111500120,AM02,11049648,Medical Incident,05/30/2011,05/30/2011,05/30/2011 10:50:14 AM,05/30/2011 10:50:34 AM,05/30/2011 10:51:07 AM,05/30/2011 10:51:38 AM,05/30/2011 10:53:43 AM,05/30/2011 11:05:54 AM,05/30/2011 11:19:27 AM,Code 2 Transport,05/30/2011 11:50:23 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",111500120-AM02 +110150107,E36,11004937,Medical Incident,01/15/2011,01/15/2011,01/15/2011 09:13:23 AM,01/15/2011 09:13:43 AM,01/15/2011 09:14:59 AM,01/15/2011 09:15:30 AM,01/15/2011 09:17:58 AM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 09:27:50 AM,7TH ST/STEVENSON ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",110150107-E36 +112180150,92,11072030,Medical Incident,08/06/2011,08/06/2011,08/06/2011 10:25:55 AM,08/06/2011 10:26:35 AM,08/06/2011 10:26:56 AM,08/06/2011 10:27:06 AM,08/06/2011 10:35:51 AM,08/06/2011 10:51:41 AM,08/06/2011 11:06:28 AM,Code 2 Transport,08/06/2011 11:30:36 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7642444942899, -122.419521866555)",112180150-92 +121110391,T01,12036895,Structure Fire,04/20/2012,04/20/2012,04/20/2012 08:54:18 PM,04/20/2012 08:54:19 PM,04/20/2012 08:54:27 PM,04/20/2012 08:55:54 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/20/2012 08:57:46 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",121110391-T01 +140280091,77,14009455,Medical Incident,01/28/2014,01/28/2014,01/28/2014 08:57:45 AM,01/28/2014 09:00:00 AM,01/28/2014 09:02:09 AM,01/28/2014 09:02:24 AM,01/28/2014 09:06:14 AM,01/28/2014 09:15:03 AM,01/28/2014 09:56:22 AM,Code 2 Transport,01/28/2014 10:13:13 AM,400 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7810688918781, -122.407387172098)",140280091-77 +102750242,T03,10087411,Medical Incident,10/02/2010,10/02/2010,10/02/2010 03:52:31 PM,10/02/2010 03:52:58 PM,10/02/2010 03:53:47 PM,10/02/2010 03:54:34 PM,10/02/2010 03:57:20 PM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,No Merit,10/02/2010 03:59:12 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",102750242-T03 +111770295,E10,11058456,Medical Incident,06/26/2011,06/26/2011,06/26/2011 04:52:14 PM,06/26/2011 04:52:43 PM,06/26/2011 04:54:30 PM,06/26/2011 04:55:25 PM,06/26/2011 04:58:45 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,06/26/2011 05:31:57 PM,3900 Block of WASHINGTON ST,SF,94118,B07,10,4442,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7884881831157, -122.458299804342)",111770295-E10 +160493007,86,16019829,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:00:57 PM,02/18/2016 06:03:01 PM,02/18/2016 06:05:25 PM,02/18/2016 06:06:35 PM,02/18/2016 06:25:18 PM,02/18/2016 06:52:30 PM,02/18/2016 07:13:14 PM,Code 2 Transport,02/18/2016 08:06:22 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160493007-86 +132970021,89,13100745,Medical Incident,10/24/2013,10/23/2013,10/24/2013 01:20:31 AM,10/24/2013 01:22:01 AM,10/24/2013 01:22:11 AM,10/24/2013 01:22:30 AM,10/24/2013 01:25:35 AM,10/24/2013 01:37:33 AM,10/24/2013 01:39:22 AM,Code 2 Transport,10/24/2013 02:00:19 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132970021-89 +160721688,AM04,16028597,Medical Incident,03/12/2016,03/12/2016,03/12/2016 01:19:37 PM,03/12/2016 01:20:33 PM,03/12/2016 01:21:05 PM,03/12/2016 01:21:44 PM,03/12/2016 01:44:46 PM,03/12/2016 01:58:17 PM,03/12/2016 02:14:18 PM,Code 2 Transport,03/12/2016 02:37:54 PM,POLK ST/DR TOM WADDELL PL,San Francisco,94102,B02,36,381,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7777435982818, -122.418161507408)",160721688-AM04 +112640072,T13,11087108,Alarms,09/21/2011,09/20/2011,09/21/2011 06:52:59 AM,09/21/2011 06:54:07 AM,09/21/2011 06:54:26 AM,09/21/2011 06:56:25 AM,09/21/2011 06:59:01 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/21/2011 07:00:24 AM,100 Block of MISSION ST,SF,94105,B03,35,2116,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7921507122354, -122.394451120982)",112640072-T13 +160823887,72,16032758,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:00:43 PM,03/22/2016 10:01:41 PM,03/22/2016 10:01:57 PM,03/22/2016 10:02:05 PM,03/22/2016 10:09:48 PM,03/22/2016 10:32:00 PM,03/22/2016 10:55:58 PM,Code 2 Transport,03/22/2016 11:27:11 PM,0 Block of CRESCIO CT,San Francisco,94112,B09,33,6214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7096536255367, -122.447597719879)",160823887-72 +102440212,KM04,10076996,Medical Incident,09/01/2010,09/01/2010,09/01/2010 01:09:11 PM,09/01/2010 01:09:30 PM,09/01/2010 01:11:53 PM,09/01/2010 01:12:23 PM,04/25/2016 02:08:48 PM,09/01/2010 01:26:11 PM,09/01/2010 01:40:00 PM,Code 2 Transport,09/01/2010 02:02:05 PM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,PRIVATE,2,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",102440212-KM04 +160691632,65,16027462,Medical Incident,03/09/2016,03/09/2016,03/09/2016 12:24:27 PM,03/09/2016 12:25:27 PM,03/09/2016 12:25:48 PM,03/09/2016 12:25:56 PM,03/09/2016 12:28:57 PM,03/09/2016 12:57:19 PM,03/09/2016 01:03:33 PM,Code 2 Transport,03/09/2016 01:42:51 PM,1300 Block of LAGUNA ST,San Francisco,94115,B04,5,3365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.783446475399, -122.427749887673)",160691632-65 +132870131,KM02,13097574,Medical Incident,10/14/2013,10/14/2013,10/14/2013 10:34:44 AM,10/14/2013 10:36:58 AM,10/14/2013 10:37:16 AM,10/14/2013 10:38:05 AM,10/14/2013 10:42:17 AM,10/14/2013 11:00:49 AM,10/14/2013 11:19:14 AM,Code 2 Transport,10/14/2013 11:56:58 AM,0 Block of FALMOUTH ST,SF,94107,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7792615020796, -122.404108332253)",132870131-KM02 +120890363,AM04,12029624,Medical Incident,03/29/2012,03/29/2012,03/29/2012 11:13:57 PM,03/29/2012 11:15:27 PM,03/29/2012 11:15:40 PM,03/29/2012 11:16:51 PM,03/29/2012 11:19:38 PM,03/29/2012 11:33:51 PM,03/29/2012 11:57:37 PM,Code 2 Transport,03/30/2012 12:53:59 AM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",120890363-AM04 +132400312,T05,13081071,Medical Incident,08/28/2013,08/28/2013,08/28/2013 07:39:25 PM,08/28/2013 07:39:25 PM,08/28/2013 07:53:47 PM,08/28/2013 07:54:03 PM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,Other,08/28/2013 07:54:04 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,2,2,2,false,Non Life-threatening,1,TRUCK,4,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",132400312-T05 +160033414,53,16001413,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:41:11 PM,01/03/2016 11:41:11 PM,01/03/2016 11:42:33 PM,01/03/2016 11:42:41 PM,01/03/2016 11:51:44 PM,01/04/2016 12:03:23 AM,01/04/2016 12:06:13 AM,Code 2 Transport,01/04/2016 01:01:26 AM,MISSION ST/30TH ST,San Francisco,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",160033414-53 +121370377,E08,12045677,Medical Incident,05/16/2012,05/16/2012,05/16/2012 09:32:39 PM,05/16/2012 09:34:11 PM,05/16/2012 09:34:30 PM,05/16/2012 09:37:21 PM,05/16/2012 09:41:57 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Gone on Arrival,05/16/2012 09:46:59 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",121370377-E08 +160230066,68,16008995,Medical Incident,01/23/2016,01/22/2016,01/23/2016 12:27:05 AM,01/23/2016 12:29:11 AM,01/23/2016 12:29:42 AM,01/23/2016 12:29:49 AM,01/23/2016 12:34:00 AM,01/23/2016 12:43:42 AM,01/23/2016 01:08:12 AM,Code 2 Transport,01/23/2016 01:14:19 AM,1000 Block of FOLSOM ST,San Francisco,94103,B03,1,2253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.778254811523, -122.405834032593)",160230066-68 +130110005,E33,13003601,Medical Incident,01/11/2013,01/10/2013,01/11/2013 12:14:08 AM,01/11/2013 12:16:01 AM,01/11/2013 12:17:06 AM,01/11/2013 12:19:49 AM,01/11/2013 12:22:51 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/11/2013 12:28:20 AM,0 Block of CAINE AVE,SF,94112,B09,33,8325,1,1,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7173223519869, -122.450447683229)",130110005-E33 +102860173,E12,10091113,Medical Incident,10/13/2010,10/13/2010,10/13/2010 11:28:04 AM,10/13/2010 11:28:31 AM,10/13/2010 11:29:11 AM,10/13/2010 11:42:56 AM,10/13/2010 11:32:03 AM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Other,10/13/2010 11:59:16 AM,1800 Block of WALLER ST,SF,94122,B05,12,4552,3,3,3,true,,1,ENGINE,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",102860173-E12 +110110257,86,11003737,Medical Incident,01/11/2011,01/11/2011,01/11/2011 05:28:29 PM,01/11/2011 05:30:47 PM,01/11/2011 05:31:25 PM,01/11/2011 05:31:32 PM,01/11/2011 05:45:16 PM,01/11/2011 06:17:44 PM,01/11/2011 06:48:51 PM,Code 2 Transport,01/11/2011 06:59:31 PM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",110110257-86 +110480158,B06,11015849,Alarms,02/17/2011,02/17/2011,02/17/2011 11:36:43 AM,02/17/2011 11:38:19 AM,02/17/2011 11:39:16 AM,02/17/2011 11:40:48 AM,02/17/2011 11:44:16 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 11:46:16 AM,3100 Block of 21ST ST,SF,94110,B06,7,5455,3,3,3,false,,1,CHIEF,2,6,9,Mission,"(37.7571885589512, -122.417270975533)",110480158-B06 +111530311,E08,11050687,Medical Incident,06/02/2011,06/02/2011,06/02/2011 09:23:56 PM,06/02/2011 09:26:35 PM,06/02/2011 09:26:43 PM,06/02/2011 09:27:44 PM,06/02/2011 09:30:42 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/02/2011 09:40:00 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",111530311-E08 +111950073,93,11064286,Medical Incident,07/14/2011,07/14/2011,07/14/2011 08:46:35 AM,07/14/2011 08:48:29 AM,07/14/2011 08:48:41 AM,07/14/2011 08:49:05 AM,07/14/2011 08:53:01 AM,07/14/2011 09:06:22 AM,07/14/2011 09:21:13 AM,Code 2 Transport,07/14/2011 10:04:05 AM,500 Block of CORDOVA ST,SF,94112,B09,43,6227,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7092363469161, -122.43447833859)",111950073-93 +160880889,54,16034863,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:42:02 AM,03/28/2016 08:44:12 AM,03/28/2016 08:44:36 AM,03/28/2016 08:44:51 AM,03/28/2016 08:51:02 AM,03/28/2016 08:59:34 AM,03/28/2016 09:19:56 AM,Code 2 Transport,03/28/2016 09:49:06 AM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7720751846477, -122.408746829681)",160880889-54 +132180340,77,13073749,Medical Incident,08/06/2013,08/06/2013,08/06/2013 08:13:50 PM,08/06/2013 08:14:43 PM,08/06/2013 08:15:02 PM,08/06/2013 08:15:12 PM,08/06/2013 08:16:58 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,No Merit,08/06/2013 08:19:51 PM,700 Block of YORK ST,SF,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,10,Mission,"(37.7598991684509, -122.408899306076)",132180340-77 +111280044,E08,11042238,Medical Incident,05/08/2011,05/07/2011,05/08/2011 03:10:05 AM,05/08/2011 03:11:24 AM,05/08/2011 03:12:20 AM,04/25/2016 02:04:44 PM,05/08/2011 03:13:05 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/08/2011 03:19:21 AM,0 Block of BLUXOME ST,SF,94107,B03,8,2223,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",111280044-E08 +102300106,KM02,10072328,Medical Incident,08/18/2010,08/18/2010,08/18/2010 09:56:03 AM,08/18/2010 09:56:45 AM,08/18/2010 09:58:49 AM,08/18/2010 10:00:27 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,04/25/2016 02:09:02 PM,2100 Block of WEBSTER ST,SF,94115,B04,38,347,3,3,3,false,,1,PRIVATE,3,4,2,Pacific Heights,"(37.7904733870686, -122.432541434801)",102300106-KM02 +102430038,T17,10076522,Alarms,08/31/2010,08/30/2010,08/31/2010 03:14:17 AM,08/31/2010 03:14:50 AM,08/31/2010 03:15:04 AM,08/31/2010 03:16:20 AM,08/31/2010 03:19:50 AM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/31/2010 03:36:21 AM,100 Block of WHITNEY YOUNG CIR,SF,94124,B10,17,1100,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7360363462118, -122.385908786754)",102430038-T17 +140100130,85,14003440,Medical Incident,01/10/2014,01/10/2014,01/10/2014 10:11:32 AM,01/10/2014 10:12:42 AM,01/10/2014 10:13:00 AM,01/10/2014 10:13:26 AM,01/10/2014 10:19:20 AM,01/10/2014 10:38:09 AM,01/10/2014 10:52:30 AM,Code 2 Transport,01/10/2014 11:32:45 AM,0 Block of 4TH ST,SF,94103,B03,1,2213,,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7846551607137, -122.404580497913)",140100130-85 +120580152,E38,12019087,Alarms,02/27/2012,02/27/2012,02/27/2012 11:17:33 AM,02/27/2012 11:18:48 AM,02/27/2012 11:19:26 AM,02/27/2012 11:20:29 AM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/27/2012 11:27:27 AM,3500 Block of JACKSON ST,SF,94118,B07,10,4425,3,3,3,true,Alarm,1,ENGINE,3,7,2,Presidio Heights,"(37.7901389360239, -122.453311569564)",120580152-E38 +111150169,E13,11037932,Medical Incident,04/25/2011,04/25/2011,04/25/2011 12:00:34 PM,04/25/2011 12:01:44 PM,04/25/2011 12:02:11 PM,04/25/2011 12:05:08 PM,04/25/2011 12:08:35 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 12:20:06 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,1,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",111150169-E13 +120050297,E03,12001836,Medical Incident,01/05/2012,01/05/2012,01/05/2012 06:18:58 PM,01/05/2012 06:19:56 PM,01/05/2012 06:20:08 PM,01/05/2012 06:21:42 PM,01/05/2012 06:23:44 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 06:31:19 PM,500 Block of TAYLOR ST,SF,94102,B01,3,1451,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7870711373734, -122.411612352697)",120050297-E03 +132540018,E02,13085669,Medical Incident,09/11/2013,09/10/2013,09/11/2013 01:13:20 AM,09/11/2013 01:13:35 AM,09/11/2013 01:16:01 AM,09/11/2013 01:18:23 AM,09/11/2013 01:20:13 AM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/11/2013 01:29:24 AM,PACIFIC AV/LARKIN ST,SF,94109,B01,41,1565,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Russian Hill,"(37.7952376597822, -122.419935637635)",132540018-E02 +131940021,88,13065822,Medical Incident,07/13/2013,07/12/2013,07/13/2013 01:50:24 AM,07/13/2013 01:54:26 AM,07/13/2013 01:55:02 AM,07/13/2013 01:55:41 AM,07/13/2013 02:03:51 AM,07/13/2013 02:22:20 AM,07/13/2013 02:30:59 AM,Code 2 Transport,07/13/2013 03:05:21 AM,200 Block of BERRY ST,SF,94158,B03,8,2225,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",131940021-88 +103070324,72,10098334,Medical Incident,11/03/2010,11/03/2010,11/03/2010 02:31:11 PM,11/03/2010 02:32:29 PM,11/03/2010 02:36:33 PM,11/03/2010 02:36:50 PM,11/03/2010 03:02:03 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Patient Declined Transport,11/03/2010 03:17:17 PM,700 Block of JERROLD AVE,SF,94124,B10,17,6713,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7296708213986, -122.373440500902)",103070324-72 +121640115,55,12054340,Medical Incident,06/12/2012,06/12/2012,06/12/2012 10:22:22 AM,06/12/2012 10:23:06 AM,06/12/2012 10:24:37 AM,06/12/2012 10:25:12 AM,06/12/2012 10:33:02 AM,06/12/2012 10:41:07 AM,04/25/2016 01:58:15 PM,Code 2 Transport,06/12/2012 11:21:17 AM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",121640115-55 +133470016,RC1,13117607,Medical Incident,12/13/2013,12/12/2013,12/13/2013 12:38:47 AM,12/13/2013 12:39:58 AM,12/13/2013 12:40:22 AM,12/13/2013 12:42:21 AM,12/13/2013 12:44:44 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/13/2013 01:11:53 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",133470016-RC1 +160783832,76,16031199,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:51:00 PM,03/18/2016 09:52:59 PM,03/18/2016 09:53:12 PM,03/18/2016 09:53:27 PM,03/18/2016 09:59:56 PM,03/18/2016 10:12:26 PM,03/18/2016 10:31:20 PM,Code 2 Transport,03/18/2016 11:07:57 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8082633159603, -122.414972542075)",160783832-76 +103280021,99,10104941,Traffic Collision,11/24/2010,11/23/2010,11/24/2010 01:59:09 AM,11/24/2010 02:00:34 AM,11/24/2010 02:00:58 AM,11/24/2010 02:01:36 AM,11/24/2010 02:07:29 AM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/24/2010 02:09:14 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,,1,MEDIC,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",103280021-99 +121170013,E31,12038637,Medical Incident,04/26/2012,04/25/2012,04/26/2012 01:13:16 AM,04/26/2012 01:14:08 AM,04/26/2012 01:14:25 AM,04/26/2012 01:16:28 AM,04/26/2012 01:18:56 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/26/2012 01:32:08 AM,300 Block of LAKE ST,SF,94118,B07,31,712,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",121170013-E31 +122490123,E29,12082300,Alarms,09/05/2012,09/05/2012,09/05/2012 11:07:28 AM,09/05/2012 11:08:15 AM,09/05/2012 11:08:22 AM,09/05/2012 11:08:57 AM,09/05/2012 11:14:51 AM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/05/2012 11:20:26 AM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,29,2671,3,3,3,true,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",122490123-E29 +160061775,71,16002403,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:59:18 PM,01/06/2016 12:59:46 PM,01/06/2016 01:00:51 PM,01/06/2016 01:01:06 PM,01/06/2016 01:06:37 PM,01/06/2016 01:34:00 PM,01/06/2016 01:55:22 PM,Cancelled,01/06/2016 02:51:49 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160061775-71 +131730182,89,13058706,Medical Incident,06/22/2013,06/22/2013,06/22/2013 01:23:10 PM,06/22/2013 01:25:24 PM,06/22/2013 01:34:20 PM,06/22/2013 01:34:27 PM,06/22/2013 01:43:05 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,No Merit,06/22/2013 01:52:22 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",131730182-89 +160153444,88,16006144,Medical Incident,01/15/2016,01/15/2016,01/15/2016 07:52:16 PM,01/15/2016 07:57:29 PM,01/15/2016 07:58:06 PM,01/15/2016 07:58:19 PM,01/15/2016 08:12:41 PM,01/15/2016 08:34:04 PM,01/15/2016 08:43:33 PM,Code 2 Transport,01/15/2016 09:24:54 PM,2200 Block of SUTTER ST,San Francisco,94115,B04,38,3646,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.78550932218, -122.437370954133)",160153444-88 +113380404,88,11112209,Structure Fire,12/04/2011,12/04/2011,12/04/2011 11:51:27 PM,12/04/2011 11:51:58 PM,12/04/2011 11:52:16 PM,12/04/2011 11:53:46 PM,12/05/2011 12:00:56 AM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/05/2011 12:03:51 AM,600 Block of BELVEDERE ST,SF,94117,B05,12,5163,3,3,3,true,,1,MEDIC,8,5,5,Inner Sunset,"(37.7613379968875, -122.447634223922)",113380404-88 +120810158,68,12026860,Medical Incident,03/21/2012,03/21/2012,03/21/2012 11:05:10 AM,03/21/2012 11:06:35 AM,03/21/2012 11:06:45 AM,03/21/2012 11:07:12 AM,03/21/2012 11:19:09 AM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 12:21:32 PM,1600 Block of KIRKHAM ST,SF,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7598158024694, -122.478474857717)",120810158-68 +120550096,84,12018084,Medical Incident,02/24/2012,02/24/2012,02/24/2012 09:48:30 AM,02/24/2012 09:50:34 AM,02/24/2012 09:51:09 AM,02/24/2012 09:52:39 AM,02/24/2012 09:54:36 AM,02/24/2012 10:18:14 AM,02/24/2012 10:21:56 AM,Code 2 Transport,02/24/2012 10:57:27 AM,200 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",120550096-84 +133500080,E44,13118739,Traffic Collision,12/16/2013,12/16/2013,12/16/2013 08:38:40 AM,12/16/2013 08:38:40 AM,12/16/2013 08:40:45 AM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,12/16/2013 08:51:47 AM,CORTLAND AV/BAYSHORE BL,SF,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",133500080-E44 +120850162,B01,12028226,Structure Fire,03/25/2012,03/25/2012,03/25/2012 12:33:04 PM,03/25/2012 12:34:15 PM,03/25/2012 12:34:34 PM,03/25/2012 12:36:18 PM,03/25/2012 12:39:53 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 12:52:30 PM,200 Block of POST ST,SF,94108,B01,1,1316,3,3,3,false,Fire,1,CHIEF,4,1,3,Financial District/South Beach,"(37.7885424853863, -122.405985351484)",120850162-B01 +160882965,KM12,16035064,Medical Incident,03/28/2016,03/28/2016,03/28/2016 05:48:22 PM,03/28/2016 05:49:51 PM,03/28/2016 05:50:15 PM,03/28/2016 05:51:25 PM,03/28/2016 05:56:06 PM,03/28/2016 06:21:34 PM,03/28/2016 06:43:36 PM,Code 2 Transport,03/28/2016 07:19:55 PM,600 Block of SUTTER ST,San Francisco,94102,B01,3,1412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",160882965-KM12 +122160264,RC3,12071741,Medical Incident,08/03/2012,08/03/2012,08/03/2012 03:58:20 PM,08/03/2012 03:59:14 PM,08/03/2012 03:59:59 PM,08/03/2012 04:02:49 PM,08/03/2012 04:17:53 PM,08/03/2012 04:46:56 PM,08/03/2012 05:09:56 PM,Other,08/03/2012 05:33:55 PM,300 Block of TEDDY AVE,SF,94134,B09,44,6312,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,9,10,Visitacion Valley,"(37.7153951688857, -122.409692952213)",122160264-RC3 +160633788,55,16025281,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:19:27 PM,03/03/2016 10:21:37 PM,03/03/2016 10:23:36 PM,03/03/2016 10:24:10 PM,03/03/2016 10:35:47 PM,03/03/2016 10:51:07 PM,03/03/2016 10:55:09 PM,Code 2 Transport,03/03/2016 11:36:11 PM,600 Block of KIRKHAM ST,San Francisco,94122,B08,22,7344,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7602959513935, -122.467660056198)",160633788-55 +131650050,E43,13055937,Structure Fire,06/14/2013,06/13/2013,06/14/2013 04:51:34 AM,06/14/2013 04:52:04 AM,06/14/2013 04:52:35 AM,06/14/2013 04:57:20 AM,06/14/2013 04:58:54 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 05:07:25 AM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",131650050-E43 +112540340,79,11083967,Medical Incident,09/11/2011,09/11/2011,09/11/2011 10:39:45 PM,09/11/2011 10:39:45 PM,09/11/2011 10:41:39 PM,09/11/2011 10:42:08 PM,09/11/2011 10:44:41 PM,09/11/2011 11:03:16 PM,09/11/2011 11:19:58 PM,Code 2 Transport,09/11/2011 11:28:42 PM,500 Block of POLK ST,SF,94102,B02,3,3114,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7814617494262, -122.418923247363)",112540340-79 +160763579,75,16030324,Medical Incident,03/16/2016,03/16/2016,03/16/2016 07:49:59 PM,03/16/2016 07:52:51 PM,03/16/2016 07:53:48 PM,03/16/2016 07:54:05 PM,03/16/2016 08:08:13 PM,03/16/2016 08:19:15 PM,03/16/2016 08:53:43 PM,Code 2 Transport,03/16/2016 09:16:39 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160763579-75 +160753656,86,16029894,Medical Incident,03/15/2016,03/15/2016,03/15/2016 09:00:46 PM,03/15/2016 09:03:39 PM,03/15/2016 09:04:07 PM,03/15/2016 09:04:18 PM,03/15/2016 09:11:51 PM,03/15/2016 09:43:46 PM,03/15/2016 10:03:15 PM,Code 2 Transport,03/15/2016 10:30:10 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160753656-86 +110160130,T03,11005293,Structure Fire,01/16/2011,01/16/2011,01/16/2011 09:44:22 AM,01/16/2011 09:44:22 AM,01/16/2011 09:44:48 AM,01/16/2011 09:44:57 AM,01/16/2011 09:47:00 AM,04/25/2016 02:06:34 PM,04/25/2016 02:06:34 PM,Other,01/16/2011 09:47:56 AM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",110160130-T03 +120410329,RC2,12013789,Medical Incident,02/10/2012,02/10/2012,02/10/2012 07:38:58 PM,02/10/2012 07:41:10 PM,02/10/2012 07:41:50 PM,02/10/2012 07:42:36 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 07:48:11 PM,GEARY BL/STEINER ST,SF,94115,B04,5,3623,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",120410329-RC2 +112300076,93,11075871,Medical Incident,08/18/2011,08/18/2011,08/18/2011 08:29:16 AM,08/18/2011 08:29:25 AM,08/18/2011 08:30:00 AM,08/18/2011 08:30:37 AM,08/18/2011 08:33:55 AM,08/18/2011 08:43:24 AM,08/18/2011 09:06:03 AM,Code 2 Transport,08/18/2011 09:23:41 AM,500 Block of BRYANT ST,SF,94107,B03,8,2217,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7800081293648, -122.397404037953)",112300076-93 +121680407,E23,12055919,Medical Incident,06/16/2012,06/16/2012,06/16/2012 09:57:09 PM,06/16/2012 09:57:42 PM,06/16/2012 09:58:05 PM,06/16/2012 09:59:28 PM,06/16/2012 10:02:00 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/16/2012 10:16:37 PM,2000 Block of 44TH AVE,SF,94116,B08,23,7663,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7483991491732, -122.502868007927)",121680407-E23 +122100195,E43,12069775,Medical Incident,07/28/2012,07/28/2012,07/28/2012 02:05:08 PM,07/28/2012 02:05:40 PM,07/28/2012 02:06:04 PM,07/28/2012 02:06:57 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 02:08:20 PM,4900 Block of MISSION ST,SF,94112,B09,43,6123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7197055234678, -122.438684868139)",122100195-E43 +112430077,E37,11080054,Confined Space / Structure Collapse,08/31/2011,08/30/2011,08/31/2011 07:58:17 AM,08/31/2011 07:58:56 AM,08/31/2011 08:00:25 AM,08/31/2011 08:02:14 AM,08/31/2011 08:04:40 AM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Other,08/31/2011 09:01:07 AM,3RD ST/19TH ST,SF,94107,B10,37,2471,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7617664453969, -122.388684017473)",112430077-E37 +120330330,E17,12011039,Medical Incident,02/02/2012,02/02/2012,02/02/2012 07:16:36 PM,02/02/2012 07:20:02 PM,02/02/2012 07:22:41 PM,02/02/2012 07:23:57 PM,02/02/2012 07:24:39 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/02/2012 07:33:00 PM,1700 Block of REVERE AVE,SF,94124,B10,17,6514,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.733154464931, -122.392672357808)",120330330-E17 +122570011,E02,12084809,Medical Incident,09/13/2012,09/12/2012,09/13/2012 01:33:46 AM,09/13/2012 01:34:31 AM,09/13/2012 01:34:45 AM,09/13/2012 01:36:46 AM,09/13/2012 01:37:54 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/13/2012 01:47:04 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",122570011-E02 +110890321,B02,11029508,Administrative,03/30/2011,03/30/2011,03/30/2011 06:24:26 PM,03/30/2011 06:24:28 PM,03/30/2011 06:24:41 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 06:25:09 PM,100 Block of OAK ST,SF,94102,B02,36,3266,3,3,3,false,,1,CHIEF,1,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",110890321-B02 +131730134,85,13058662,Medical Incident,06/22/2013,06/22/2013,06/22/2013 11:45:48 AM,06/22/2013 11:46:56 AM,06/22/2013 11:47:15 AM,06/22/2013 11:47:34 AM,06/22/2013 11:54:59 AM,06/22/2013 12:15:50 PM,04/25/2016 01:52:10 PM,Patient Declined Transport,06/22/2013 12:34:14 PM,100 Block of CORA ST,SF,94134,B09,44,6253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.710878454701, -122.409122191393)",131730134-85 +140430268,T19,14014685,Alarms,02/12/2014,02/12/2014,02/12/2014 04:48:15 PM,02/12/2014 04:49:15 PM,02/12/2014 04:49:32 PM,02/12/2014 04:50:48 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 05:09:36 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",140430268-T19 +111530054,89,11050486,Medical Incident,06/02/2011,06/01/2011,06/02/2011 06:42:54 AM,06/02/2011 06:43:31 AM,06/02/2011 06:44:17 AM,06/02/2011 06:44:37 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/02/2011 06:49:08 AM,3RD ST/NEWCOMB AV,SF,94124,B10,17,6515,2,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",111530054-89 +131630177,T11,13055370,Medical Incident,06/12/2013,06/12/2013,06/12/2013 12:14:36 PM,06/12/2013 12:15:55 PM,06/12/2013 12:16:06 PM,06/12/2013 12:16:38 PM,06/12/2013 12:18:49 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/12/2013 12:26:23 PM,1400 Block of GUERRERO ST,SF,94110,B06,11,5612,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,6,8,Mission,"(37.74840056927, -122.422415578627)",131630177-T11 +111600184,99,11052888,Other,06/09/2011,06/09/2011,06/09/2011 02:47:18 PM,06/09/2011 02:47:41 PM,06/09/2011 02:47:54 PM,06/09/2011 03:08:19 PM,06/09/2011 03:15:23 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Medical Examiner,06/09/2011 03:46:43 PM,600 Block of OAK ST,SF,94117,B02,5,3523,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",111600184-99 +140930041,67,14031157,Medical Incident,04/03/2014,04/02/2014,04/03/2014 03:33:47 AM,04/03/2014 03:34:53 AM,04/03/2014 03:37:27 AM,04/03/2014 03:37:43 AM,04/03/2014 03:44:51 AM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,No Merit,04/03/2014 03:49:52 AM,0 Block of SANCHEZ ST,SAN FRANCISCO,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",140930041-67 +131870332,E03,13063921,Medical Incident,07/06/2013,07/06/2013,07/06/2013 10:05:37 PM,07/06/2013 10:07:33 PM,07/06/2013 10:08:34 PM,07/06/2013 10:09:58 PM,07/06/2013 10:12:48 PM,04/25/2016 01:51:55 PM,04/25/2016 01:51:55 PM,Other,07/06/2013 10:20:27 PM,PINE ST/OCTAVIA ST,SF,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7887868948983, -122.427059673264)",131870332-E03 +113500359,E02,11116260,Structure Fire,12/16/2011,12/16/2011,12/16/2011 08:59:54 PM,12/16/2011 08:59:54 PM,12/16/2011 09:00:08 PM,12/16/2011 09:01:26 PM,12/16/2011 09:02:41 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 09:03:33 PM,STOCKTON ST/WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",113500359-E02 +133370322,E02,13114345,Medical Incident,12/03/2013,12/03/2013,12/03/2013 08:26:30 PM,12/03/2013 08:27:57 PM,12/03/2013 08:28:18 PM,12/03/2013 08:29:59 PM,12/03/2013 08:31:47 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 08:50:45 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.790399423659, -122.407326986498)",133370322-E02 +130190063,82,13006416,Medical Incident,01/19/2013,01/18/2013,01/19/2013 03:47:28 AM,01/19/2013 03:49:03 AM,01/19/2013 03:49:26 AM,01/19/2013 03:49:49 AM,01/19/2013 03:53:55 AM,01/19/2013 04:04:10 AM,01/19/2013 04:15:08 AM,Code 2 Transport,01/19/2013 04:42:08 AM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",130190063-82 +160710734,AM02,16028126,Medical Incident,03/11/2016,03/11/2016,03/11/2016 08:07:43 AM,03/11/2016 08:10:17 AM,03/11/2016 08:11:09 AM,03/11/2016 08:12:12 AM,03/11/2016 08:29:15 AM,03/11/2016 08:39:58 AM,03/11/2016 08:50:49 AM,Code 2 Transport,03/11/2016 09:31:15 AM,3RD ST/MARIN ST,San Francisco,94124,B10,25,2641,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7490047598095, -122.387456311596)",160710734-AM02 +160561570,AM02,16022358,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:38:01 AM,02/25/2016 11:39:45 AM,02/25/2016 11:40:09 AM,02/25/2016 11:40:44 AM,02/25/2016 11:46:29 AM,02/25/2016 12:02:20 PM,02/25/2016 12:18:45 PM,Code 2 Transport,02/25/2016 12:41:02 PM,0 Block of YALE ST,San Francisco,94134,B09,42,6145,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7284797955023, -122.418077727084)",160561570-AM02 +111300197,E02,11042972,Medical Incident,05/10/2011,05/10/2011,05/10/2011 02:05:17 PM,05/10/2011 02:05:49 PM,05/10/2011 02:06:19 PM,05/10/2011 02:06:23 PM,05/10/2011 02:07:35 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 02:20:08 PM,900 Block of CLAY ST,SF,94108,B01,2,1355,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7939540872148, -122.40830087345)",111300197-E02 +122570356,B06,12085117,Structure Fire,09/13/2012,09/13/2012,09/13/2012 11:26:19 PM,09/13/2012 11:28:14 PM,09/13/2012 11:28:36 PM,09/13/2012 11:30:24 PM,09/13/2012 11:38:40 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Fire,09/14/2012 12:05:17 AM,FOLSOM ST/PRECITA AV,SF,94110,B06,11,5664,3,3,3,false,Fire,1,CHIEF,9,6,9,Bernal Heights,"(37.7471710211027, -122.413571133066)",122570356-B06 +122410258,E39,12079824,Medical Incident,08/28/2012,08/28/2012,08/28/2012 05:30:17 PM,08/28/2012 05:30:38 PM,08/28/2012 05:31:01 PM,08/28/2012 05:33:49 PM,08/28/2012 05:35:31 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/28/2012 05:48:39 PM,100 Block of JUANITA WAY,SF,94127,B08,39,8671,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.742588476821, -122.454535746044)",122410258-E39 +140780098,KM09,14026319,Medical Incident,03/19/2014,03/19/2014,03/19/2014 08:52:34 AM,03/19/2014 08:53:44 AM,03/19/2014 08:55:12 AM,03/19/2014 08:55:12 AM,03/19/2014 09:02:37 AM,03/19/2014 09:15:23 AM,03/19/2014 09:32:49 AM,Code 3 Transport,03/19/2014 10:19:43 AM,2800 Block of BALBOA ST,SAN FRANCISCO,94121,B07,14,7225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7760273500609, -122.489274152829)",140780098-KM09 +133360086,81,13113813,Medical Incident,12/02/2013,12/02/2013,12/02/2013 08:50:50 AM,12/02/2013 08:56:22 AM,12/02/2013 08:57:04 AM,12/02/2013 08:57:10 AM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,No Merit,12/02/2013 09:13:02 AM,BERRY ST/6TH ST,SF,94107,B03,8,2262,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7722719339526, -122.397801139789)",133360086-81 +120860166,E10,12028544,Medical Incident,03/26/2012,03/26/2012,03/26/2012 12:45:29 PM,03/26/2012 12:45:56 PM,03/26/2012 12:46:26 PM,03/26/2012 12:48:14 PM,03/26/2012 12:52:13 PM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 01:01:22 PM,LOMBARD ST/BAKER ST,SF,94123,B04,16,4223,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.798626017147, -122.44597388598)",120860166-E10 +160582499,82,16023190,Medical Incident,02/27/2016,02/27/2016,02/27/2016 04:39:02 PM,02/27/2016 04:39:02 PM,02/27/2016 04:39:25 PM,02/27/2016 04:39:35 PM,02/27/2016 04:46:40 PM,02/27/2016 05:59:04 PM,02/27/2016 05:15:18 PM,Code 2 Transport,02/27/2016 06:41:59 PM,600 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Lone Mountain/USF,"(37.7786738326671, -122.458615664849)",160582499-82 +130800007,E02,13026600,Medical Incident,03/21/2013,03/20/2013,03/21/2013 12:51:57 AM,03/21/2013 12:53:03 AM,03/21/2013 12:55:31 AM,03/21/2013 12:57:20 AM,03/21/2013 12:59:03 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 01:08:41 AM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7980228452184, -122.405863212632)",130800007-E02 +133170067,T10,13107638,Structure Fire,11/13/2013,11/12/2013,11/13/2013 07:52:52 AM,11/13/2013 07:52:56 AM,11/13/2013 07:56:59 AM,11/13/2013 08:00:37 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 08:02:37 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,Alarm,1,TRUCK,10,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",133170067-T10 +110020075,B01,11000578,Odor (Strange / Unknown),01/02/2011,01/01/2011,01/02/2011 07:49:52 AM,01/02/2011 07:51:57 AM,01/02/2011 07:52:16 AM,01/02/2011 07:55:03 AM,01/02/2011 07:57:55 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Fire,01/02/2011 08:01:49 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,CHIEF,3,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",110020075-B01 +140600148,88,14020225,Medical Incident,03/01/2014,03/01/2014,03/01/2014 11:15:45 AM,03/01/2014 11:16:03 AM,03/01/2014 11:16:15 AM,03/01/2014 11:16:48 AM,03/01/2014 11:27:14 AM,03/01/2014 11:42:12 AM,03/01/2014 12:15:31 PM,Code 2 Transport,03/01/2014 12:53:25 PM,MCKINNON AV/NEWHALL ST,SF,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7369067562737, -122.391087499642)",140600148-88 +111360284,T18,11045363,Structure Fire,05/16/2011,05/16/2011,05/16/2011 06:28:50 PM,05/16/2011 06:29:35 PM,05/16/2011 06:29:46 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 06:37:06 PM,800 Block of 35TH AVE,SF,94121,B07,34,7252,3,3,3,false,,1,TRUCK,11,7,1,Outer Richmond,"(37.7730169846783, -122.494902095099)",111360284-T18 +103130295,E11,10100439,Electrical Hazard,11/09/2010,11/09/2010,11/09/2010 05:32:36 PM,11/09/2010 05:36:03 PM,11/09/2010 05:36:09 PM,11/09/2010 05:37:09 PM,11/09/2010 05:38:31 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/09/2010 05:45:59 PM,1700 Block of CHURCH ST,SF,94131,B06,11,5563,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7432943274696, -122.426701243282)",103130295-E11 +120860076,E08,12028475,Medical Incident,03/26/2012,03/26/2012,03/26/2012 08:23:15 AM,03/26/2012 08:24:12 AM,03/26/2012 08:24:47 AM,03/26/2012 08:26:22 AM,03/26/2012 08:30:32 AM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 08:39:23 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",120860076-E08 +113130089,E07,11103927,Medical Incident,11/09/2011,11/09/2011,11/09/2011 08:48:49 AM,11/09/2011 08:51:05 AM,11/09/2011 08:52:19 AM,11/09/2011 08:53:16 AM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,Other,11/09/2011 08:55:09 AM,500 Block of CAPP ST,SF,94110,B06,7,5446,2,2,2,true,,1,ENGINE,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",113130089-E07 +102460235,75,10077770,Medical Incident,09/03/2010,09/03/2010,09/03/2010 02:39:04 PM,09/03/2010 02:43:32 PM,09/03/2010 02:43:45 PM,09/03/2010 02:43:57 PM,09/03/2010 02:48:45 PM,09/03/2010 03:00:48 PM,09/03/2010 03:24:47 PM,Code 2 Transport,09/03/2010 03:30:02 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",102460235-75 +112180063,71,11071962,Medical Incident,08/06/2011,08/05/2011,08/06/2011 03:40:05 AM,08/06/2011 03:41:07 AM,08/06/2011 03:41:40 AM,08/06/2011 03:42:21 AM,08/06/2011 03:50:21 AM,08/06/2011 04:16:06 AM,08/06/2011 04:29:52 AM,Code 2 Transport,08/06/2011 05:22:12 AM,0 Block of SADOWA ST,SF,94112,B09,33,8371,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7123801092231, -122.455356032884)",112180063-71 +102810022,E25,10089182,Medical Incident,10/08/2010,10/07/2010,10/08/2010 01:52:52 AM,10/08/2010 01:53:44 AM,10/08/2010 01:54:37 AM,10/08/2010 01:56:22 AM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,Other,10/08/2010 02:20:50 AM,200 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,false,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.735189226844, -122.378938285616)",102810022-E25 +102400309,E14,10075804,Medical Incident,08/28/2010,08/28/2010,08/28/2010 07:44:46 PM,08/28/2010 07:46:52 PM,08/28/2010 07:47:25 PM,08/28/2010 07:48:19 PM,08/28/2010 07:51:03 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/28/2010 08:02:48 PM,3600 Block of BALBOA ST,SF,94121,B07,34,7254,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7756362224799, -122.49784817494)",102400309-E14 +160682111,67,16027151,Medical Incident,03/08/2016,03/08/2016,03/08/2016 02:32:05 PM,03/08/2016 02:32:29 PM,03/08/2016 02:32:52 PM,03/08/2016 02:34:09 PM,03/08/2016 02:38:14 PM,03/08/2016 02:59:33 PM,03/08/2016 03:07:52 PM,Code 2 Transport,03/08/2016 04:06:53 PM,1200 Block of 21ST AVE,San Francisco,94122,B08,22,7425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7644122532353, -122.479263390257)",160682111-67 +131930249,E11,13065707,Medical Incident,07/12/2013,07/12/2013,07/12/2013 05:23:35 PM,07/12/2013 05:24:21 PM,07/12/2013 05:29:00 PM,07/12/2013 05:30:30 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 05:33:34 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7562319946436, -122.418893283075)",131930249-E11 +111640191,KM04,11054134,Medical Incident,06/13/2011,06/13/2011,06/13/2011 01:14:47 PM,06/13/2011 01:17:22 PM,06/13/2011 01:17:45 PM,06/13/2011 01:18:14 PM,06/13/2011 01:23:14 PM,06/13/2011 01:39:59 PM,06/13/2011 01:52:12 PM,Code 2 Transport,06/13/2011 02:15:34 PM,400 Block of TURK ST,SF,94102,B02,3,1554,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",111640191-KM04 +130360235,B06,13012410,Structure Fire,02/05/2013,02/05/2013,02/05/2013 02:54:38 PM,02/05/2013 02:54:39 PM,02/05/2013 02:54:58 PM,02/05/2013 02:56:39 PM,02/05/2013 02:58:24 PM,04/25/2016 01:54:26 PM,04/25/2016 01:54:26 PM,Other,02/05/2013 02:59:13 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,false,Alarm,1,CHIEF,3,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",130360235-B06 +160782314,89,16031053,Traffic Collision,03/18/2016,03/18/2016,03/18/2016 03:01:45 PM,03/18/2016 03:02:13 PM,03/18/2016 03:02:19 PM,03/18/2016 03:04:55 PM,03/18/2016 03:09:18 PM,03/18/2016 03:18:36 PM,03/18/2016 03:24:28 PM,Code 3 Transport,03/18/2016 04:24:19 PM,PRECITA AV/FOLSOM ST,San Francisco,94110,B06,11,5664,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7471710211027, -122.413571133066)",160782314-89 +130960145,KM10,13032142,Medical Incident,04/06/2013,04/06/2013,04/06/2013 11:22:26 AM,04/06/2013 11:24:45 AM,04/06/2013 11:25:16 AM,04/06/2013 11:27:27 AM,04/06/2013 11:37:22 AM,04/06/2013 11:48:18 AM,04/06/2013 12:00:10 PM,Code 2 Transport,04/06/2013 12:22:56 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",130960145-KM10 +111300384,AM10,11043136,Medical Incident,05/10/2011,05/10/2011,05/10/2011 10:55:55 PM,05/10/2011 11:00:45 PM,05/10/2011 11:01:54 PM,05/10/2011 11:02:27 PM,05/10/2011 11:16:00 PM,05/10/2011 11:32:16 PM,05/10/2011 11:42:48 PM,Code 2 Transport,05/11/2011 12:12:19 AM,3900 Block of 3RD ST,SF,94124,B10,25,6457,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",111300384-AM10 +102730297,T06,10086775,Structure Fire,09/30/2010,09/30/2010,09/30/2010 06:09:41 PM,09/30/2010 06:09:41 PM,09/30/2010 06:10:57 PM,09/30/2010 06:11:28 PM,09/30/2010 06:14:29 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Other,09/30/2010 06:23:47 PM,400 Block of CHURCH ST,SF,94114,B02,6,523,3,3,3,false,,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",102730297-T06 +133400363,E02,13115397,Medical Incident,12/06/2013,12/06/2013,12/06/2013 08:16:56 PM,12/06/2013 08:18:16 PM,12/06/2013 08:18:42 PM,12/06/2013 08:20:19 PM,12/06/2013 08:22:04 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/06/2013 08:36:06 PM,0 Block of SAINT LOUIS ALY,SF,94133,B01,2,1312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7957591714395, -122.40697039667)",133400363-E02 +112770057,B03,11091597,Alarms,10/04/2011,10/03/2011,10/04/2011 07:20:53 AM,10/04/2011 07:22:19 AM,10/04/2011 07:22:31 AM,10/04/2011 07:23:22 AM,10/04/2011 07:26:39 AM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Fire,10/04/2011 07:31:29 AM,0 Block of FEDERAL ST,SF,94107,B03,8,2134,3,3,3,false,,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7837299529024, -122.391814164258)",112770057-B03 +160761259,57,16030090,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:34:12 AM,03/16/2016 10:37:02 AM,03/16/2016 10:38:09 AM,03/16/2016 10:38:21 AM,03/16/2016 10:55:02 AM,03/16/2016 11:05:05 AM,03/16/2016 11:22:43 AM,Code 2 Transport,03/16/2016 11:58:01 AM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",160761259-57 +120030324,79,12001159,Medical Incident,01/03/2012,01/03/2012,01/03/2012 06:48:01 PM,01/03/2012 06:48:24 PM,01/03/2012 06:48:40 PM,01/03/2012 06:49:18 PM,01/03/2012 06:58:41 PM,01/03/2012 07:15:45 PM,01/03/2012 07:34:08 PM,Code 2 Transport,01/03/2012 08:01:52 PM,2000 Block of PALOU AVE,SF,94124,B10,42,6431,E,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7387006494945, -122.399352673031)",120030324-79 +121900024,RS2,12063165,Medical Incident,07/08/2012,07/07/2012,07/08/2012 01:28:47 AM,07/08/2012 01:29:06 AM,07/08/2012 01:31:12 AM,07/08/2012 01:32:51 AM,07/08/2012 01:34:34 AM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/08/2012 01:35:52 AM,3200 Block of 17TH ST,SF,94110,B02,7,5246,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7635887638425, -122.417913861876)",121900024-RS2 +120950309,63,12031587,Medical Incident,04/04/2012,04/04/2012,04/04/2012 09:12:31 PM,04/04/2012 09:15:10 PM,04/04/2012 09:16:06 PM,04/04/2012 09:18:58 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 09:23:40 PM,2500 Block of MASON ST,SF,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.807027306345, -122.413812485246)",120950309-63 +120970193,E11,12032128,Structure Fire,04/06/2012,04/06/2012,04/06/2012 01:31:59 PM,04/06/2012 01:31:59 PM,04/06/2012 01:32:18 PM,04/06/2012 01:33:26 PM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 01:34:12 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Alarm,1,ENGINE,3,6,9,Mission,"(37.7490412884368, -122.418135251703)",120970193-E11 +121350014,RC3,12044758,Medical Incident,05/14/2012,05/13/2012,05/14/2012 01:32:10 AM,05/14/2012 01:33:24 AM,05/14/2012 01:33:40 AM,05/14/2012 01:35:38 AM,05/14/2012 01:41:55 AM,05/14/2012 01:53:23 AM,05/14/2012 02:00:14 AM,Other,05/14/2012 02:27:27 AM,900 Block of LE CONTE AVE,SF,94124,B10,44,6575,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7180638579899, -122.396004115789)",121350014-RC3 +122310219,D3,12076635,Other,08/18/2012,08/18/2012,08/18/2012 04:37:36 PM,08/18/2012 04:39:44 PM,08/18/2012 04:41:26 PM,04/25/2016 01:57:10 PM,08/18/2012 04:59:19 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 05:49:57 PM,100 Block of HUNTERS POINT EXPY,SF,94124,B10,17,6617,3,3,3,false,Potentially Life-Threatening,1,CHIEF,12,10,10,Bayview Hunters Point,"(37.7108679832889, -122.381545416429)",122310219-D3 +110840058,RS1,11027562,Medical Incident,03/25/2011,03/24/2011,03/25/2011 04:13:09 AM,03/25/2011 04:14:56 AM,03/25/2011 04:15:25 AM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,Other,04/25/2016 02:05:28 PM,400 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,,1,RESCUE SQUAD,3,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",110840058-RS1 +160832708,KM13,16033032,Medical Incident,03/23/2016,03/23/2016,03/23/2016 04:10:34 PM,03/23/2016 04:12:35 PM,03/23/2016 04:12:52 PM,03/23/2016 04:13:11 PM,03/23/2016 04:22:51 PM,03/23/2016 04:43:07 PM,03/23/2016 05:01:50 PM,Code 2 Transport,03/23/2016 05:14:30 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160832708-KM13 +121160082,E29,12038365,Traffic Collision,04/25/2012,04/25/2012,04/25/2012 08:43:45 AM,04/25/2012 08:43:45 AM,04/25/2012 08:44:03 AM,04/25/2012 08:45:37 AM,04/25/2012 08:55:20 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Unable to Locate,04/25/2012 08:56:47 AM,4TH ST/KING ST,SF,94107,B03,8,2236,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",121160082-E29 +160500347,79,16019953,Medical Incident,02/19/2016,02/18/2016,02/19/2016 04:00:54 AM,02/19/2016 04:02:40 AM,02/19/2016 04:03:25 AM,02/19/2016 04:04:15 AM,02/19/2016 04:13:15 AM,02/19/2016 04:22:11 AM,02/19/2016 04:24:03 AM,Code 2 Transport,02/19/2016 04:36:30 AM,0 Block of 8TH ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7778103407202, -122.413699499217)",160500347-79 +113010135,E03,11099800,Medical Incident,10/28/2011,10/28/2011,10/28/2011 10:37:51 AM,10/28/2011 10:40:59 AM,10/28/2011 10:43:11 AM,10/28/2011 10:43:17 AM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 10:47:36 AM,HEMLOCK ST/POLK ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",113010135-E03 +111480216,E05,11049115,Medical Incident,05/28/2011,05/28/2011,05/28/2011 04:24:57 PM,05/28/2011 04:26:56 PM,05/28/2011 04:27:26 PM,05/28/2011 04:28:39 PM,05/28/2011 04:29:26 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,05/28/2011 04:33:05 PM,WEBSTER ST/MCALLISTER ST,SF,94117,B02,5,3425,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7788509281441, -122.43004726646)",111480216-E05 +131410165,RS2,13047758,Citizen Assist / Service Call,05/21/2013,05/21/2013,05/21/2013 11:44:14 AM,05/21/2013 11:44:15 AM,05/21/2013 11:50:48 AM,05/21/2013 11:53:14 AM,05/21/2013 11:57:58 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 12:17:36 PM,100 Block of OAK ST,SF,94102,B02,36,3266,3,3,3,false,Alarm,1,RESCUE SQUAD,1,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",131410165-RS2 +130530227,66,13017941,Medical Incident,02/22/2013,02/22/2013,02/22/2013 02:22:47 PM,02/22/2013 02:25:24 PM,02/22/2013 02:26:23 PM,02/22/2013 02:27:20 PM,02/22/2013 02:37:03 PM,02/22/2013 02:52:16 PM,02/22/2013 03:18:07 PM,Code 2 Transport,02/22/2013 04:04:03 PM,800 Block of HAYES ST,SF,94117,B02,5,3522,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",130530227-66 +112410063,AM16,11079433,Medical Incident,08/29/2011,08/29/2011,08/29/2011 08:23:43 AM,08/29/2011 08:25:49 AM,08/29/2011 08:26:01 AM,08/29/2011 08:26:46 AM,08/29/2011 08:38:35 AM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Medical Examiner,08/29/2011 09:50:59 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,false,,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",112410063-AM16 +122860308,B04,12094715,Alarms,10/12/2012,10/12/2012,10/12/2012 08:04:11 PM,10/12/2012 08:05:00 PM,10/12/2012 08:05:16 PM,10/12/2012 08:06:20 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 08:07:02 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,false,Alarm,1,CHIEF,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",122860308-B04 +160031578,61,16001187,Medical Incident,01/03/2016,01/03/2016,01/03/2016 01:24:27 PM,01/03/2016 01:26:47 PM,01/03/2016 01:27:07 PM,01/03/2016 01:27:16 PM,01/03/2016 01:30:13 PM,01/03/2016 01:51:36 PM,01/03/2016 02:09:38 PM,Code 2 Transport,01/03/2016 02:48:30 PM,200 Block of CLAYTON ST,San Francisco,94117,B05,21,4523,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7730602068761, -122.449166125148)",160031578-61 +112610018,T19,11085998,Traffic Collision,09/18/2011,09/17/2011,09/18/2011 01:04:38 AM,09/18/2011 01:06:28 AM,09/18/2011 01:07:42 AM,04/25/2016 02:02:37 PM,09/18/2011 01:12:31 AM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/18/2011 01:33:32 AM,200 Block of WINSTON DR,SF,94132,B08,19,8862,2,2,2,false,,1,TRUCK,2,8,7,Lakeshore,"(37.7269310558754, -122.477956520245)",112610018-T19 +123300278,E40,12109801,Medical Incident,11/25/2012,11/25/2012,11/25/2012 06:02:30 PM,11/25/2012 06:04:58 PM,11/25/2012 06:08:36 PM,11/25/2012 06:09:56 PM,11/25/2012 06:10:15 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 06:15:15 PM,1800 Block of IRVING ST,SF,94122,B08,22,7424,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.763591973361, -122.477686297417)",123300278-E40 +132330309,89,13078775,Medical Incident,08/21/2013,08/21/2013,08/21/2013 07:10:13 PM,08/21/2013 07:12:19 PM,08/21/2013 07:13:06 PM,08/21/2013 07:13:15 PM,08/21/2013 07:18:25 PM,08/21/2013 07:36:28 PM,08/21/2013 07:41:36 PM,Code 2 Transport,08/21/2013 08:12:50 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",132330309-89 +160033427,62,16001416,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:43:29 PM,01/03/2016 11:46:35 PM,01/03/2016 11:46:41 PM,01/03/2016 11:47:04 PM,01/03/2016 11:56:59 PM,01/04/2016 12:17:04 AM,01/04/2016 12:32:48 AM,Code 2 Transport,01/04/2016 01:29:22 AM,800 Block of INNES AVE,San Francisco,94124,B10,25,6632,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7314216570538, -122.374864504136)",160033427-62 +110260298,E13,11008666,Administrative,01/26/2011,01/26/2011,01/26/2011 06:44:09 PM,01/26/2011 06:44:13 PM,01/26/2011 06:44:25 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/26/2011 06:45:27 PM,500 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",110260298-E13 +140960348,E13,14032459,Alarms,04/06/2014,04/06/2014,04/06/2014 08:49:23 PM,04/06/2014 08:50:17 PM,04/06/2014 08:50:48 PM,04/06/2014 08:51:41 PM,04/06/2014 08:53:37 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,Fire,04/06/2014 09:02:20 PM,200 Block of CALIFORNIA ST,SAN FRANCISCO,94111,B01,13,1162,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7933383335289, -122.399381167233)",140960348-E13 +160813293,76,16032328,Medical Incident,03/21/2016,03/21/2016,03/21/2016 07:12:30 PM,03/21/2016 07:13:33 PM,03/21/2016 07:13:57 PM,03/21/2016 07:14:05 PM,03/21/2016 07:18:36 PM,03/21/2016 07:27:15 PM,03/21/2016 07:29:32 PM,Code 2 Transport,03/21/2016 07:47:26 PM,1200 Block of VAN NESS AVE,San Francisco,94109,B04,3,3161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7868516471087, -122.421441956086)",160813293-76 +132300150,78,13077628,Medical Incident,08/18/2013,08/18/2013,08/18/2013 10:53:16 AM,08/18/2013 10:54:47 AM,08/18/2013 10:58:35 AM,08/18/2013 10:59:27 AM,08/18/2013 11:11:14 AM,08/18/2013 11:29:15 AM,08/18/2013 11:57:58 AM,Code 2 Transport,08/18/2013 12:28:58 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132300150-78 +160530655,67,16021098,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:11:11 AM,02/22/2016 08:11:34 AM,02/22/2016 08:12:04 AM,02/22/2016 08:12:28 AM,02/22/2016 08:17:46 AM,02/22/2016 08:32:52 AM,02/22/2016 08:55:03 AM,Code 2 Transport,02/22/2016 09:38:18 AM,1700 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",160530655-67 +103080165,E09,10098672,Traffic Collision,11/04/2010,11/04/2010,11/04/2010 11:10:15 AM,11/04/2010 11:12:12 AM,11/04/2010 11:13:00 AM,11/04/2010 11:13:33 AM,11/04/2010 11:15:53 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Fire,11/04/2010 11:24:25 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,2,2,2,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",103080165-E09 +111730144,T15,11057042,Medical Incident,06/22/2011,06/22/2011,06/22/2011 11:22:09 AM,06/22/2011 11:23:39 AM,06/22/2011 11:23:49 AM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 11:25:11 AM,2200 Block of OCEAN AVE,SF,94127,B09,15,8454,3,3,3,false,,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7279994078445, -122.467653269644)",111730144-T15 +112900360,74,11096353,Medical Incident,10/17/2011,10/17/2011,10/17/2011 07:33:09 PM,10/17/2011 07:34:04 PM,10/17/2011 07:34:33 PM,10/17/2011 07:35:01 PM,10/17/2011 07:43:00 PM,10/17/2011 07:57:41 PM,10/17/2011 08:06:45 PM,Code 2 Transport,10/17/2011 08:43:24 PM,0 Block of STATES ST,SF,94114,B05,6,5176,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",112900360-74 +112170282,RC3,11071787,Medical Incident,08/05/2011,08/05/2011,08/05/2011 05:42:07 PM,08/05/2011 05:43:25 PM,08/05/2011 05:44:27 PM,08/05/2011 05:46:02 PM,08/05/2011 05:48:33 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 05:54:26 PM,BRYANT ST/24TH ST,SF,94110,B06,9,5532,3,E,3,true,,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7527955849274, -122.409129910252)",112170282-RC3 +130250214,AM02,13008644,Medical Incident,01/25/2013,01/25/2013,01/25/2013 01:46:11 PM,01/25/2013 01:49:07 PM,01/25/2013 01:49:44 PM,04/25/2016 01:54:37 PM,01/25/2013 01:53:36 PM,01/25/2013 02:16:44 PM,01/25/2013 02:56:41 PM,Code 2 Transport,01/25/2013 03:00:25 PM,700 Block of 7TH AVE,SF,94118,B07,31,7132,1,1,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7744079426209, -122.464807789845)",130250214-AM02 +160323905,78,16012793,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:32:27 PM,02/01/2016 11:35:58 PM,02/01/2016 11:36:12 PM,02/01/2016 11:37:13 PM,02/01/2016 11:41:18 PM,02/02/2016 12:03:54 AM,02/02/2016 12:22:57 AM,Code 2 Transport,02/02/2016 12:27:32 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160323905-78 +112910036,E44,11096460,Medical Incident,10/18/2011,10/17/2011,10/18/2011 03:06:00 AM,10/18/2011 03:07:49 AM,10/18/2011 03:08:20 AM,10/18/2011 03:09:54 AM,10/18/2011 03:11:37 AM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/18/2011 03:35:54 AM,3100 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7220016138662, -122.401341444894)",112910036-E44 +132190249,T14,13074000,Alarms,08/07/2013,08/07/2013,08/07/2013 03:29:05 PM,08/07/2013 03:30:16 PM,08/07/2013 03:30:24 PM,08/07/2013 03:32:05 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,Other,08/07/2013 03:36:22 PM,3100 Block of FULTON ST,SF,94122,B07,31,7133,3,3,3,false,Alarm,1,TRUCK,3,7,1,Inner Richmond,"(37.7734767861199, -122.465348329956)",132190249-T14 +160810421,70,16032057,Medical Incident,03/21/2016,03/20/2016,03/21/2016 05:45:33 AM,03/21/2016 05:45:48 AM,03/21/2016 05:46:10 AM,03/21/2016 05:46:32 AM,03/21/2016 05:54:36 AM,03/21/2016 06:07:20 AM,03/21/2016 06:13:03 AM,Code 2 Transport,03/21/2016 06:31:12 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160810421-70 +102290167,E13,10072045,Medical Incident,08/17/2010,08/17/2010,08/17/2010 12:37:10 PM,08/17/2010 12:37:40 PM,08/17/2010 12:37:57 PM,08/17/2010 12:39:04 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 12:56:17 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,2,2,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",102290167-E13 +122050142,E09,12068136,Medical Incident,07/23/2012,07/23/2012,07/23/2012 10:53:00 AM,07/23/2012 10:53:40 AM,07/23/2012 10:54:11 AM,07/23/2012 11:00:31 AM,07/23/2012 11:03:28 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/23/2012 11:03:53 AM,1700 Block of MCKINNON AVE,SF,94124,B10,25,6455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7374788316121, -122.391986352639)",122050142-E09 +122760407,E01,12091316,Medical Incident,10/02/2012,10/02/2012,10/02/2012 08:32:09 PM,10/02/2012 08:32:41 PM,10/02/2012 08:33:17 PM,10/02/2012 08:34:02 PM,10/02/2012 08:36:00 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/02/2012 08:43:24 PM,MINNA ST/NEW MONTGOMERY ST,SF,94105,B03,1,2157,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7870107876875, -122.399974961899)",122760407-E01 +112410288,E02,11079612,Structure Fire,08/29/2011,08/29/2011,08/29/2011 07:09:43 PM,08/29/2011 07:09:43 PM,08/29/2011 07:09:48 PM,08/29/2011 07:11:28 PM,08/29/2011 07:12:08 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 07:12:26 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",112410288-E02 +140180227,93,14006213,Medical Incident,01/18/2014,01/18/2014,01/18/2014 02:21:49 PM,01/18/2014 02:24:09 PM,01/18/2014 02:24:27 PM,01/18/2014 02:24:56 PM,01/18/2014 02:29:03 PM,01/18/2014 02:55:14 PM,01/18/2014 03:11:07 PM,Code 2 Transport,01/18/2014 03:27:51 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",140180227-93 +123010224,78,12099828,Medical Incident,10/27/2012,10/27/2012,10/27/2012 03:39:52 PM,10/27/2012 03:40:43 PM,10/27/2012 03:40:54 PM,10/27/2012 03:42:14 PM,10/27/2012 04:01:08 PM,10/27/2012 04:22:11 PM,10/27/2012 04:34:54 PM,Code 2 Transport,10/27/2012 04:58:35 PM,700 Block of JERROLD AVE,SF,94124,B10,17,6713,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.729760366784, -122.37336037863)",123010224-78 +123310348,86,12110153,Medical Incident,11/26/2012,11/26/2012,11/26/2012 07:50:03 PM,11/26/2012 07:50:42 PM,11/26/2012 07:51:14 PM,11/26/2012 07:51:41 PM,11/26/2012 07:54:41 PM,11/26/2012 08:11:21 PM,11/26/2012 08:29:35 PM,Code 2 Transport,11/26/2012 08:56:22 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",123310348-86 +160320155,AM20,16012408,Medical Incident,02/01/2016,01/31/2016,02/01/2016 01:21:40 AM,02/01/2016 01:22:49 AM,02/01/2016 01:23:19 AM,02/01/2016 01:27:06 AM,02/01/2016 01:27:06 AM,02/01/2016 01:48:17 AM,02/01/2016 01:59:15 AM,Code 2 Transport,02/01/2016 02:16:52 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160320155-AM20 +103320177,61,10106282,Medical Incident,11/28/2010,11/28/2010,11/28/2010 01:54:13 PM,11/28/2010 01:55:37 PM,11/28/2010 01:56:57 PM,11/28/2010 01:59:28 PM,11/28/2010 02:06:34 PM,11/28/2010 02:11:26 PM,11/28/2010 02:39:01 PM,Code 2 Transport,11/28/2010 03:04:07 PM,500 Block of SIMONDS LOOP,PR,94129,B99,51,4624,3,3,3,true,,1,MEDIC,2,7,2,Presidio,"(37.7958433120603, -122.450061104126)",103320177-61 +132900221,E01,13098666,Medical Incident,10/17/2013,10/17/2013,10/17/2013 01:16:36 PM,10/17/2013 01:17:01 PM,10/17/2013 01:17:29 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 01:18:45 PM,1100 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7795310846627, -122.413542548681)",132900221-E01 +120620342,72,12020532,Medical Incident,03/02/2012,03/02/2012,03/02/2012 09:09:13 PM,03/02/2012 09:11:29 PM,03/02/2012 09:12:06 PM,03/02/2012 09:12:23 PM,03/02/2012 09:24:22 PM,03/02/2012 09:28:40 PM,03/02/2012 09:35:54 PM,Code 2 Transport,03/02/2012 09:49:33 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,1,1,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",120620342-72 +113250264,63,11107997,Medical Incident,11/21/2011,11/21/2011,11/21/2011 04:07:52 PM,11/21/2011 04:08:29 PM,11/21/2011 04:08:51 PM,11/21/2011 04:09:13 PM,11/21/2011 04:11:30 PM,11/21/2011 04:36:02 PM,11/21/2011 04:45:59 PM,Code 2 Transport,11/21/2011 05:14:42 PM,MISSION ST/22ND ST,SF,94110,B06,7,5472,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",113250264-63 +131980012,E05,13067009,Medical Incident,07/17/2013,07/16/2013,07/17/2013 01:21:16 AM,07/17/2013 01:22:30 AM,07/17/2013 01:22:54 AM,04/25/2016 01:51:46 PM,07/17/2013 01:25:53 AM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/17/2013 02:06:07 AM,900 Block of FILLMORE ST,SF,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",131980012-E05 +133020058,E16,13102524,Alarms,10/29/2013,10/28/2013,10/29/2013 05:51:53 AM,10/29/2013 05:55:09 AM,10/29/2013 05:55:25 AM,10/29/2013 05:56:44 AM,10/29/2013 05:59:09 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/29/2013 06:04:08 AM,2100 Block of BAY ST,SF,94123,B04,16,4212,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8019985558598, -122.442402224418)",133020058-E16 +121490021,T15,12049321,Alarms,05/28/2012,05/27/2012,05/28/2012 01:11:00 AM,05/28/2012 01:13:42 AM,05/28/2012 01:14:04 AM,05/28/2012 01:15:36 AM,05/28/2012 01:18:59 AM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/28/2012 01:23:19 AM,2600 Block of SAN JOSE AVE,SF,94112,B09,33,8324,3,3,3,false,Alarm,1,TRUCK,2,9,11,Oceanview/Merced/Ingleside,"(37.7148239714274, -122.451612665285)",121490021-T15 +160121285,82,16004739,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:48:51 AM,01/12/2016 10:50:18 AM,01/12/2016 10:50:26 AM,01/12/2016 10:50:52 AM,01/12/2016 10:55:25 AM,01/12/2016 11:07:55 AM,01/12/2016 11:12:33 AM,Code 2 Transport,01/12/2016 11:53:02 AM,100 Block of PARNASSUS AVE,San Francisco,94117,B05,12,5153,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.764541634292, -122.451880232062)",160121285-82 +102660232,KM04,10084210,Medical Incident,09/23/2010,09/23/2010,09/23/2010 03:44:04 PM,09/23/2010 03:45:00 PM,09/23/2010 03:45:55 PM,09/23/2010 03:46:34 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 03:47:36 PM,1700 Block of 4TH ST,SF,94158,B03,8,2366,3,2,2,false,,1,PRIVATE,3,3,6,Mission Bay,"(37.7672859751392, -122.390912786614)",102660232-KM04 +132070013,B03,13069931,Traffic Collision,07/26/2013,07/25/2013,07/26/2013 01:18:13 AM,07/26/2013 01:25:16 AM,07/26/2013 01:26:04 AM,07/26/2013 01:28:51 AM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/26/2013 01:30:03 AM,100 Block of 10TH ST,SF,94103,B02,29,2345,2,3,3,false,Potentially Life-Threatening,1,CHIEF,7,2,6,South of Market,"(37.7750968170762, -122.415590844463)",132070013-B03 +131650022,E01,13055911,Medical Incident,06/14/2013,06/13/2013,06/14/2013 01:53:51 AM,06/14/2013 01:54:33 AM,06/14/2013 01:56:10 AM,06/14/2013 01:56:54 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 01:57:29 AM,LEAVENWORTH ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",131650022-E01 +121490280,AM14,12049544,Traffic Collision,05/28/2012,05/28/2012,05/28/2012 08:11:46 PM,05/28/2012 08:15:07 PM,05/28/2012 08:16:31 PM,05/28/2012 08:17:20 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 08:26:02 PM,100 Block of 9TH ST,SF,94103,B03,29,2324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7760543061938, -122.414393004759)",121490280-AM14 +130290041,AR1,13009820,Medical Incident,01/29/2013,01/28/2013,01/29/2013 03:21:46 AM,01/29/2013 03:21:46 AM,01/29/2013 03:21:46 AM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Fire,01/29/2013 04:01:17 AM,1400 Block of FOLSOM ST,SF,94103,B02,36,2343,2,2,2,false,Non Life-threatening,1,INVESTIGATION,1,2,6,South of Market,"(37.7725383928592, -122.413073151419)",130290041-AR1 +160133598,63,16005337,Medical Incident,01/13/2016,01/13/2016,01/13/2016 07:34:52 PM,01/13/2016 07:36:00 PM,01/13/2016 07:36:20 PM,01/13/2016 07:36:33 PM,01/13/2016 07:40:08 PM,01/13/2016 08:11:10 PM,01/13/2016 08:36:53 PM,Code 2 Transport,01/13/2016 09:27:23 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160133598-63 +113440112,88,11114064,Medical Incident,12/10/2011,12/10/2011,12/10/2011 10:00:03 AM,12/10/2011 10:01:26 AM,12/10/2011 10:01:54 AM,12/10/2011 10:02:04 AM,12/10/2011 10:04:59 AM,12/10/2011 10:16:28 AM,12/10/2011 10:29:16 AM,Code 2 Transport,12/10/2011 11:09:18 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",113440112-88 +120770266,RC1,12025575,Medical Incident,03/17/2012,03/17/2012,03/17/2012 05:18:26 PM,03/17/2012 05:21:57 PM,03/17/2012 05:23:48 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 05:40:24 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",120770266-RC1 +102370009,RC1,10074585,Medical Incident,08/25/2010,08/24/2010,08/25/2010 01:04:37 AM,08/25/2010 01:04:46 AM,08/25/2010 01:04:54 AM,08/25/2010 01:13:37 AM,08/25/2010 01:16:15 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/25/2010 01:23:36 AM,400 Block of BEALE ST,SF,94105,B03,35,2123,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",102370009-RC1 +160790544,79,16031312,Medical Incident,03/19/2016,03/18/2016,03/19/2016 05:13:51 AM,03/19/2016 05:17:09 AM,03/19/2016 05:17:35 AM,03/19/2016 05:17:47 AM,03/19/2016 05:21:32 AM,03/19/2016 05:37:19 AM,03/19/2016 05:45:48 AM,Code 2 Transport,03/19/2016 06:07:16 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160790544-79 +130010069,E08,13000048,Outside Fire,01/01/2013,12/31/2012,01/01/2013 01:12:01 AM,01/01/2013 01:15:01 AM,01/01/2013 01:15:49 AM,01/01/2013 01:16:06 AM,01/01/2013 01:19:23 AM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Fire,01/01/2013 01:22:06 AM,100 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2157,3,3,3,true,Fire,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868609000277, -122.399689492621)",130010069-E08 +133600276,T05,13122435,Structure Fire,12/26/2013,12/26/2013,12/26/2013 06:19:10 PM,12/26/2013 06:19:11 PM,12/26/2013 06:19:36 PM,12/26/2013 06:20:23 PM,12/26/2013 06:21:04 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 06:21:21 PM,WEBSTER ST/EDDY ST,SF,94115,B05,5,3515,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7816455834376, -122.430609199134)",133600276-T05 +160772417,KM04,16030648,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:04:19 PM,03/17/2016 03:05:17 PM,03/17/2016 03:05:52 PM,03/17/2016 03:06:42 PM,03/17/2016 03:12:12 PM,03/17/2016 03:22:32 PM,03/17/2016 04:11:54 PM,Code 2 Transport,03/17/2016 04:35:04 PM,2400 Block of 20TH AVE,San Francisco,94116,B08,40,7434,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7420735738087, -122.476628267314)",160772417-KM04 +111030294,RC2,11034226,Medical Incident,04/13/2011,04/13/2011,04/13/2011 05:53:17 PM,04/13/2011 05:54:17 PM,04/13/2011 05:54:36 PM,04/25/2016 02:05:07 PM,04/13/2011 06:04:22 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/13/2011 06:14:15 PM,0 Block of 16TH AVE,SF,94118,B07,31,7152,3,3,3,true,,1,RESCUE CAPTAIN,3,7,2,Seacliff,"(37.786484631376, -122.475456277492)",111030294-RC2 +103480272,KM05,10111659,Traffic Collision,12/14/2010,12/14/2010,12/14/2010 04:01:13 PM,12/14/2010 04:02:17 PM,12/14/2010 04:03:18 PM,12/14/2010 04:04:19 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Other,12/14/2010 04:09:32 PM,"CALL BOX: JOHN DALY BL/MISSION ST,DC",DC,,B09,33,9922,2,2,2,false,,1,PRIVATE,2,None,None,None,"(37.7049649190377, -122.462393901191)",103480272-KM05 +110450002,E03,11014782,Structure Fire,02/14/2011,02/13/2011,02/14/2011 12:05:59 AM,02/14/2011 12:06:28 AM,02/14/2011 12:06:52 AM,02/14/2011 12:13:20 AM,02/14/2011 12:15:32 AM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 12:30:46 AM,500 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,true,,1,ENGINE,10,1,3,Financial District/South Beach,"(37.7904631779771, -122.405941469147)",110450002-E03 +140980432,E33,14033240,Medical Incident,04/08/2014,04/08/2014,04/08/2014 08:50:03 PM,04/08/2014 08:50:26 PM,04/08/2014 08:51:21 PM,04/08/2014 08:52:22 PM,04/08/2014 08:56:40 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Code 3 Transport,04/08/2014 09:41:09 PM,200 Block of GUTTENBERG ST,SAN FRANCISCO,94112,B09,43,6218,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7096059467883, -122.442898080759)",140980432-E33 +160851195,56,16033709,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:02:26 AM,03/25/2016 10:03:12 AM,03/25/2016 10:03:51 AM,03/25/2016 10:04:00 AM,03/25/2016 10:08:54 AM,03/25/2016 10:33:09 AM,03/25/2016 10:45:07 AM,Code 2 Transport,03/25/2016 11:58:08 AM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",160851195-56 +130630401,T13,13021270,Alarms,03/04/2013,03/04/2013,03/04/2013 10:36:18 PM,03/04/2013 10:36:18 PM,03/04/2013 10:36:24 PM,03/04/2013 10:37:43 PM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 10:38:57 PM,500 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,true,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7944499888874, -122.40302477249)",130630401-T13 +131830297,KM04,13062452,Medical Incident,07/02/2013,07/02/2013,07/02/2013 06:26:47 PM,07/02/2013 06:26:47 PM,07/02/2013 06:27:21 PM,07/02/2013 06:28:03 PM,07/02/2013 06:31:23 PM,07/02/2013 06:43:10 PM,07/02/2013 06:47:14 PM,Code 2 Transport,07/02/2013 07:30:59 PM,2200 Block of CLAY ST,SF,94115,B04,38,3361,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7912883093306, -122.430102988109)",131830297-KM04 +111280020,E01,11042213,Medical Incident,05/08/2011,05/07/2011,05/08/2011 01:08:00 AM,05/08/2011 01:08:58 AM,05/08/2011 01:09:04 AM,05/08/2011 01:10:24 AM,05/08/2011 01:12:23 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/08/2011 01:21:46 AM,500 Block of HOWARD ST,SF,94105,B03,1,2146,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7869461751428, -122.398143526066)",111280020-E01 +120210257,72,12007183,Explosion,01/21/2012,01/21/2012,01/21/2012 03:19:16 PM,01/21/2012 03:19:32 PM,01/21/2012 03:20:09 PM,01/21/2012 03:20:28 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 03:24:43 PM,200 Block of SHIPLEY ST,SF,94107,B03,1,2244,3,3,3,true,Fire,1,MEDIC,5,3,6,South of Market,"(37.779377841254, -122.403313163388)",120210257-72 +110480146,E01,11015840,Medical Incident,02/17/2011,02/17/2011,02/17/2011 11:24:33 AM,02/17/2011 11:25:12 AM,02/17/2011 11:25:31 AM,02/17/2011 11:28:00 AM,02/17/2011 11:31:51 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 11:48:48 AM,400 Block of SUTTER ST,SF,94108,B01,1,1324,3,2,2,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",110480146-E01 +160411140,KM04,16016392,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:56:45 AM,02/10/2016 09:58:51 AM,02/10/2016 09:59:42 AM,02/10/2016 10:00:23 AM,02/10/2016 10:00:35 AM,02/10/2016 10:24:39 AM,02/10/2016 10:45:21 AM,Code 2 Transport,02/10/2016 11:16:00 AM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160411140-KM04 +140690007,B03,14023145,Alarms,03/10/2014,03/09/2014,03/10/2014 12:46:24 AM,03/10/2014 12:47:52 AM,03/10/2014 12:48:00 AM,03/10/2014 12:49:56 AM,03/10/2014 12:52:27 AM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Fire,03/10/2014 12:56:54 AM,0 Block of PERRY ST,SAN FRANCISCO,94107,B03,8,2175,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",140690007-B03 +160853753,86,16033971,Medical Incident,03/25/2016,03/25/2016,03/25/2016 09:23:24 PM,03/25/2016 09:24:00 PM,03/25/2016 09:24:46 PM,03/25/2016 09:26:38 PM,03/25/2016 09:28:59 PM,03/25/2016 09:46:29 PM,03/25/2016 10:00:35 PM,Code 2 Transport,03/25/2016 10:29:26 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7888365626691, -122.426230394716)",160853753-86 +160411858,52,16016460,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:09:34 PM,02/10/2016 01:10:22 PM,02/10/2016 01:11:05 PM,02/10/2016 01:11:22 PM,02/10/2016 01:17:53 PM,02/10/2016 01:50:08 PM,02/10/2016 02:03:22 PM,Code 2 Transport,02/10/2016 02:48:05 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",160411858-52 +113560172,E02,11118184,Medical Incident,12/22/2011,12/22/2011,12/22/2011 12:03:59 PM,12/22/2011 12:06:52 PM,12/22/2011 12:08:00 PM,12/22/2011 12:09:53 PM,12/22/2011 12:13:13 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 12:16:10 PM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",113560172-E02 +120660276,77,12021904,Medical Incident,03/06/2012,03/06/2012,03/06/2012 03:50:23 PM,03/06/2012 03:52:47 PM,03/06/2012 03:53:21 PM,03/06/2012 04:12:52 PM,03/06/2012 04:15:39 PM,03/06/2012 04:33:25 PM,03/06/2012 04:44:54 PM,Code 2 Transport,03/06/2012 05:20:49 PM,1400 Block of VALLEJO ST,SF,94109,B04,41,3126,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7969500797697, -122.42112794236)",120660276-77 +110430301,64,11014361,Medical Incident,02/12/2011,02/12/2011,02/12/2011 04:37:16 PM,02/12/2011 04:39:01 PM,02/12/2011 04:42:13 PM,02/12/2011 04:43:14 PM,02/12/2011 04:54:40 PM,02/12/2011 05:09:30 PM,02/12/2011 05:18:02 PM,Code 2 Transport,02/12/2011 05:41:06 PM,FELL ST/CLAYTON ST,SF,94117,B05,21,4523,1,1,2,true,,1,MEDIC,2,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",110430301-64 +140900202,87,14030312,Medical Incident,03/31/2014,03/31/2014,03/31/2014 02:25:27 PM,03/31/2014 02:25:27 PM,03/31/2014 02:25:27 PM,03/31/2014 02:25:27 PM,03/31/2014 02:25:27 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Patient Declined Transport,03/31/2014 03:02:26 PM,POWELL ST/SUTTER ST,,94108,B01,1,1362,,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",140900202-87 +130040258,E07,13001408,Medical Incident,01/04/2013,01/04/2013,01/04/2013 03:00:11 PM,01/04/2013 03:01:17 PM,01/04/2013 03:02:13 PM,01/04/2013 03:03:58 PM,01/04/2013 03:06:30 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 03:15:22 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",130040258-E07 +160611321,AM02,16024277,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:38:46 AM,03/01/2016 11:38:46 AM,03/01/2016 11:39:09 AM,03/01/2016 11:40:25 AM,03/01/2016 11:43:19 AM,03/01/2016 12:03:18 PM,03/01/2016 12:44:33 PM,Code 3 Transport,03/01/2016 01:17:03 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160611321-AM02 +132900030,E09,13098507,Smoke Investigation (Outside),10/17/2013,10/16/2013,10/17/2013 02:46:32 AM,10/17/2013 02:50:20 AM,10/17/2013 02:50:33 AM,10/17/2013 02:52:41 AM,10/17/2013 02:54:46 AM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 03:07:23 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,Alarm,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",132900030-E09 +112470340,88,11081582,Medical Incident,09/04/2011,09/04/2011,09/04/2011 07:51:40 PM,09/04/2011 07:52:22 PM,09/04/2011 07:52:42 PM,09/04/2011 07:52:54 PM,09/04/2011 07:57:44 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 08:31:03 PM,400 Block of PACIFIC AVE,SF,94133,B01,13,1212,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.7974015545937, -122.403291978554)",112470340-88 +110810095,T11,11026597,Alarms,03/22/2011,03/22/2011,03/22/2011 09:54:25 AM,03/22/2011 09:56:18 AM,03/22/2011 09:56:33 AM,03/22/2011 09:57:05 AM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 09:59:12 AM,600 Block of DOUGLASS ST,SF,94114,B06,24,5516,3,3,3,false,,1,TRUCK,3,6,8,Noe Valley,"(37.7538270549227, -122.438810909092)",110810095-T11 +160691791,54,16027479,Medical Incident,03/09/2016,03/09/2016,03/09/2016 01:04:28 PM,03/09/2016 01:06:01 PM,03/09/2016 01:07:15 PM,03/09/2016 01:07:41 PM,03/09/2016 01:27:52 PM,03/09/2016 01:44:43 PM,03/09/2016 01:52:12 PM,Code 2 Transport,03/09/2016 02:50:38 PM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7546325890357, -122.41873973942)",160691791-54 +160121621,56,16004763,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:25:12 PM,01/12/2016 12:27:24 PM,01/12/2016 12:28:38 PM,01/12/2016 12:29:14 PM,01/12/2016 12:39:16 PM,01/12/2016 12:58:35 PM,01/12/2016 01:02:03 PM,Code 2 Transport,01/12/2016 01:33:14 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160121621-56 +112440348,B01,11080593,Alarms,09/01/2011,09/01/2011,09/01/2011 09:58:53 PM,09/01/2011 09:59:55 PM,09/01/2011 10:00:01 PM,09/01/2011 10:01:28 PM,09/01/2011 10:04:43 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 10:12:03 PM,300 Block of CALIFORNIA ST,SF,94104,B01,13,1162,3,3,3,false,,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7931889329334, -122.40055351578)",112440348-B01 +103250078,B03,10104093,Medical Incident,11/21/2010,11/20/2010,11/21/2010 06:00:34 AM,11/21/2010 06:02:44 AM,11/21/2010 06:03:08 AM,11/21/2010 06:04:12 AM,11/21/2010 06:13:56 AM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,11/21/2010 07:52:08 AM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,,1,CHIEF,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",103250078-B03 +131480339,E20,13050303,Structure Fire,05/28/2013,05/28/2013,05/28/2013 07:12:51 PM,05/28/2013 07:13:26 PM,05/28/2013 07:13:56 PM,05/28/2013 07:15:11 PM,05/28/2013 07:17:30 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/28/2013 07:30:17 PM,500 Block of DELLBROOK AVE,SF,94131,B08,20,5365,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.755861282798, -122.453721421816)",131480339-E20 +123310047,B04,12109921,Gas Leak (Natural and LP Gases),11/26/2012,11/25/2012,11/26/2012 04:33:59 AM,11/26/2012 04:35:33 AM,11/26/2012 04:36:35 AM,11/26/2012 04:38:13 AM,11/26/2012 04:39:59 AM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/26/2012 05:20:35 AM,2500 Block of PINE ST,SF,94115,B04,38,3651,3,3,3,false,Alarm,1,CHIEF,1,4,5,Pacific Heights,"(37.7873744593954, -122.437747647167)",123310047-B04 +132150064,E01,13072502,Structure Fire,08/03/2013,08/02/2013,08/03/2013 04:03:18 AM,08/03/2013 04:05:14 AM,08/03/2013 04:05:32 AM,08/03/2013 04:07:38 AM,08/03/2013 04:10:09 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/03/2013 04:11:44 AM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,Alarm,1,ENGINE,5,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",132150064-E01 +103120138,E25,10100010,Medical Incident,11/08/2010,11/08/2010,11/08/2010 10:33:48 AM,11/08/2010 10:34:19 AM,11/08/2010 10:34:48 AM,11/08/2010 10:35:02 AM,11/08/2010 10:38:21 AM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 10:43:40 AM,2300 Block of 3RD ST,SF,94107,B10,25,2533,3,2,2,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7592069260893, -122.388577089603)",103120138-E25 +122820275,E17,12093443,Medical Incident,10/08/2012,10/08/2012,10/08/2012 06:41:54 PM,10/08/2012 06:44:25 PM,10/08/2012 06:44:51 PM,04/25/2016 01:56:23 PM,10/08/2012 06:49:48 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/08/2012 06:52:56 PM,0 Block of MIDDLE POINT RD,SF,94124,B10,25,6556,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7357585640379, -122.379345378835)",122820275-E17 +160423642,KM03,16017044,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:28:13 PM,02/11/2016 09:30:47 PM,02/11/2016 09:31:59 PM,02/11/2016 09:32:32 PM,02/11/2016 09:39:26 PM,02/11/2016 09:46:54 PM,02/11/2016 10:05:44 PM,Code 2 Transport,02/11/2016 10:45:39 PM,LARKIN ST/MARKET ST,San Francisco,94103,B02,36,1646,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160423642-KM03 +140960065,E06,14032209,Alarms,04/06/2014,04/05/2014,04/06/2014 03:29:27 AM,04/06/2014 03:30:52 AM,04/06/2014 03:30:58 AM,04/06/2014 03:33:17 AM,04/06/2014 03:34:28 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Fire,04/06/2014 03:40:34 AM,500 Block of SOUTH VAN NESS AVE,SAN FRANCISCO,94110,B02,7,5246,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",140960065-E06 +160572109,85,16022790,Medical Incident,02/26/2016,02/26/2016,02/26/2016 02:34:35 PM,02/26/2016 02:37:40 PM,02/26/2016 02:38:53 PM,02/26/2016 02:39:27 PM,02/26/2016 02:45:06 PM,02/26/2016 03:16:04 PM,02/26/2016 03:27:58 PM,Code 2 Transport,02/26/2016 04:27:59 PM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",160572109-85 +123290025,KM07,12109279,Medical Incident,11/24/2012,11/23/2012,11/24/2012 01:54:52 AM,11/24/2012 01:56:57 AM,11/24/2012 01:59:03 AM,11/24/2012 01:59:32 AM,11/24/2012 02:17:06 AM,11/24/2012 02:33:28 AM,04/25/2016 01:55:39 PM,Code 2 Transport,11/24/2012 03:43:59 AM,1200 Block of 42ND AVE,SF,94122,B08,23,7627,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7634207297587, -122.501766533727)",123290025-KM07 +123310262,E05,12110080,Medical Incident,11/26/2012,11/26/2012,11/26/2012 03:22:46 PM,11/26/2012 03:23:11 PM,11/26/2012 03:23:34 PM,11/26/2012 03:24:29 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 03:29:07 PM,500 Block of STEVENSON ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7809266852586, -122.410870424137)",123310262-E05 +102770040,82,10087963,Medical Incident,10/04/2010,10/03/2010,10/04/2010 05:41:08 AM,10/04/2010 05:43:43 AM,10/04/2010 05:44:04 AM,10/04/2010 05:44:52 AM,10/04/2010 06:06:21 AM,10/04/2010 06:17:33 AM,10/04/2010 06:22:07 AM,Code 2 Transport,10/04/2010 06:58:00 AM,1600 Block of 25TH ST,SF,94107,B10,37,2614,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7524526055, -122.395072614857)",102770040-82 +160091904,52,16003673,Medical Incident,01/09/2016,01/09/2016,01/09/2016 02:06:11 PM,01/09/2016 02:07:45 PM,01/09/2016 02:07:55 PM,01/09/2016 02:08:04 PM,01/09/2016 02:14:21 PM,01/09/2016 02:28:08 PM,01/09/2016 02:51:57 PM,Code 2 Transport,01/09/2016 03:30:15 PM,600 Block of ALABAMA ST,San Francisco,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7610105720239, -122.411919466827)",160091904-52 +113440129,KM14,11114077,Water Rescue,12/10/2011,12/10/2011,12/10/2011 11:01:31 AM,12/10/2011 11:03:21 AM,12/10/2011 11:04:09 AM,12/10/2011 11:05:58 AM,12/10/2011 11:17:55 AM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 11:24:04 AM,900 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,,1,PRIVATE,9,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",113440129-KM14 +112040363,85,11067550,Medical Incident,07/23/2011,07/23/2011,07/23/2011 09:57:17 PM,07/23/2011 09:58:38 PM,07/23/2011 09:59:07 PM,07/23/2011 09:59:15 PM,07/23/2011 10:07:28 PM,07/23/2011 10:32:29 PM,07/23/2011 10:50:04 PM,Code 2 Transport,07/23/2011 11:13:18 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,true,,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",112040363-85 +110780072,E10,11025589,Structure Fire,03/19/2011,03/18/2011,03/19/2011 07:26:12 AM,03/19/2011 07:27:07 AM,03/19/2011 07:27:33 AM,03/19/2011 07:28:04 AM,03/19/2011 07:30:30 AM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Fire,03/19/2011 07:47:54 AM,200 Block of PARKER AVE,SF,94118,B07,10,4453,3,3,3,true,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.780912636628, -122.454081993476)",110780072-E10 +112910233,59,11096604,Medical Incident,10/18/2011,10/18/2011,10/18/2011 02:00:03 PM,10/18/2011 02:00:34 PM,10/18/2011 02:15:37 PM,10/18/2011 02:21:02 PM,10/18/2011 02:24:39 PM,10/18/2011 02:43:55 PM,10/18/2011 02:53:35 PM,Other,10/18/2011 03:32:03 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",112910233-59 +110400035,E13,11013121,Medical Incident,02/09/2011,02/08/2011,02/09/2011 03:03:11 AM,02/09/2011 03:03:33 AM,02/09/2011 03:03:59 AM,02/09/2011 03:08:42 AM,02/09/2011 03:11:26 AM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 03:26:10 AM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8054738067872, -122.407570127181)",110400035-E13 +160033104,70,16001373,Medical Incident,01/03/2016,01/03/2016,01/03/2016 09:33:14 PM,01/03/2016 09:35:40 PM,01/03/2016 09:36:02 PM,01/03/2016 09:36:16 PM,01/03/2016 09:42:01 PM,01/03/2016 10:03:00 PM,01/03/2016 10:03:06 PM,Code 2 Transport,01/03/2016 10:30:20 PM,FOLSOM ST/4TH ST,San Francisco,94107,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7820242662358, -122.401159719509)",160033104-70 +123040250,T03,12100953,Structure Fire,10/30/2012,10/30/2012,10/30/2012 05:32:44 PM,10/30/2012 05:32:44 PM,10/30/2012 05:33:20 PM,10/30/2012 05:33:28 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Fire,10/30/2012 05:36:05 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",123040250-T03 +111340192,79,11044577,Medical Incident,05/14/2011,05/14/2011,05/14/2011 02:11:33 PM,05/14/2011 02:11:59 PM,05/14/2011 02:12:19 PM,04/25/2016 02:04:38 PM,05/14/2011 02:25:53 PM,05/14/2011 03:11:28 PM,05/14/2011 03:30:25 PM,Code 2 Transport,05/14/2011 04:18:03 PM,400 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7232,3,2,2,true,,1,MEDIC,2,7,2,Seacliff,"(37.7875603847719, -122.487923755449)",111340192-79 +140370243,84,14012562,Medical Incident,02/06/2014,02/06/2014,02/06/2014 03:56:06 PM,02/06/2014 03:57:11 PM,02/06/2014 03:59:16 PM,02/06/2014 03:59:26 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 05:03:06 PM,1400 Block of ALABAMA ST,SF,94110,B06,9,5615,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7489077084041, -122.41053305539)",140370243-84 +112430094,T01,11080067,Citizen Assist / Service Call,08/31/2011,08/31/2011,08/31/2011 09:12:12 AM,08/31/2011 09:13:57 AM,08/31/2011 09:14:22 AM,08/31/2011 09:15:58 AM,08/31/2011 09:20:13 AM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Fire,08/31/2011 09:28:43 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",112430094-T01 +160431891,61,16017312,Medical Incident,02/12/2016,02/12/2016,02/12/2016 01:43:22 PM,02/12/2016 01:45:22 PM,02/12/2016 01:45:52 PM,02/12/2016 01:47:39 PM,02/12/2016 01:53:38 PM,02/12/2016 02:13:07 PM,02/12/2016 02:43:29 PM,Code 2 Transport,02/12/2016 03:31:46 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160431891-61 +160603515,77,16024092,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:32:42 PM,02/29/2016 09:32:42 PM,02/29/2016 09:32:56 PM,02/29/2016 09:33:14 PM,02/29/2016 09:36:13 PM,02/29/2016 09:40:33 PM,02/29/2016 10:10:37 PM,Code 2 Transport,02/29/2016 10:47:48 PM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",160603515-77 +160420144,52,16016699,Medical Incident,02/11/2016,02/10/2016,02/11/2016 01:17:50 AM,02/11/2016 01:19:51 AM,02/11/2016 01:20:12 AM,02/11/2016 01:20:20 AM,02/11/2016 01:24:07 AM,02/11/2016 01:38:43 AM,02/11/2016 01:49:52 AM,Code 2 Transport,02/11/2016 02:15:35 AM,24TH ST/FLORIDA ST,San Francisco,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7527390254513, -122.410066406492)",160420144-52 +111090072,E15,11035910,Structure Fire,04/19/2011,04/19/2011,04/19/2011 09:17:55 AM,04/19/2011 09:17:55 AM,04/19/2011 09:18:28 AM,04/19/2011 09:18:52 AM,04/19/2011 09:21:58 AM,04/25/2016 02:05:02 PM,04/25/2016 02:05:02 PM,Other,04/19/2011 09:32:32 AM,200 Block of ONEIDA AVE,SF,94112,B09,15,828,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7218642111521, -122.442994070235)",111090072-E15 +120890367,AM14,12029628,Structure Fire,03/29/2012,03/29/2012,03/29/2012 11:28:25 PM,03/29/2012 11:28:26 PM,03/29/2012 11:28:34 PM,03/29/2012 11:32:17 PM,03/29/2012 11:38:45 PM,03/29/2012 11:50:10 PM,03/30/2012 12:07:27 AM,Code 2 Transport,03/30/2012 12:07:30 AM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,false,Alarm,1,PRIVATE,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",120890367-AM14 +160633297,68,16025220,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:28:13 PM,03/03/2016 07:28:13 PM,03/03/2016 07:30:19 PM,03/03/2016 07:30:27 PM,03/03/2016 07:32:58 PM,03/03/2016 07:40:47 PM,03/03/2016 08:11:22 PM,Code 2 Transport,03/03/2016 08:37:15 PM,JONES ST/MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811361605292, -122.412024075557)",160633297-68 +121180425,RS1,12039292,Structure Fire,04/27/2012,04/27/2012,04/27/2012 10:18:49 PM,04/27/2012 10:21:36 PM,04/27/2012 10:22:27 PM,04/27/2012 10:24:04 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 10:30:13 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,false,Fire,1,RESCUE SQUAD,8,2,6,Tenderloin,"(37.7855029033652, -122.414807788747)",121180425-RS1 +133260115,T14,13110657,Alarms,11/22/2013,11/22/2013,11/22/2013 10:24:42 AM,11/22/2013 10:25:42 AM,11/22/2013 10:25:53 AM,11/22/2013 10:26:25 AM,11/22/2013 10:30:55 AM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 10:34:48 AM,700 Block of 45TH AVE,SF,94121,B07,34,7273,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7743931351454, -122.505746558846)",133260115-T14 +160290744,53,16011358,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:21:07 AM,01/29/2016 08:22:10 AM,01/29/2016 08:29:04 AM,01/29/2016 08:29:18 AM,01/29/2016 08:34:36 AM,01/29/2016 08:57:07 AM,01/29/2016 09:19:54 AM,Code 2 Transport,01/29/2016 10:01:45 AM,1200 Block of FLORIDA ST,San Francisco,94110,B06,7,5527,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7519378906971, -122.410059383052)",160290744-53 +140100198,AM20,14003493,Medical Incident,01/10/2014,01/10/2014,01/10/2014 12:31:17 PM,01/10/2014 12:32:14 PM,01/10/2014 12:32:33 PM,01/10/2014 12:33:12 PM,01/10/2014 12:43:24 PM,01/10/2014 12:48:09 PM,01/10/2014 01:32:12 PM,Code 2 Transport,01/10/2014 02:15:43 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.78076369834, -122.491163848059)",140100198-AM20 +130250206,E44,13008637,Medical Incident,01/25/2013,01/25/2013,01/25/2013 01:11:36 PM,01/25/2013 01:13:25 PM,01/25/2013 01:15:17 PM,01/25/2013 01:16:18 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,No Merit,01/25/2013 01:16:51 PM,BAYSHORE BL/SUNNYDALE AV,SF,94134,B10,44,6254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Bayview Hunters Point,"(37.7088536077159, -122.405109455132)",130250206-E44 +121010240,E11,12033529,Medical Incident,04/10/2012,04/10/2012,04/10/2012 03:27:22 PM,04/10/2012 03:29:44 PM,04/10/2012 03:30:24 PM,04/10/2012 03:30:56 PM,04/10/2012 03:36:21 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 03:49:05 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7490412884368, -122.418135251703)",121010240-E11 +160680411,65,16026994,Medical Incident,03/08/2016,03/07/2016,03/08/2016 06:19:22 AM,03/08/2016 06:22:32 AM,03/08/2016 06:22:47 AM,03/08/2016 06:23:22 AM,03/08/2016 06:37:16 AM,03/08/2016 06:39:49 AM,03/08/2016 06:51:07 AM,Code 2 Transport,03/08/2016 07:03:58 AM,3RD ST/QUESADA AV,San Francisco,94124,B10,17,6514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7332232631153, -122.391244493226)",160680411-65 +111760248,E37,11058063,Outside Fire,06/25/2011,06/25/2011,06/25/2011 03:49:07 PM,06/25/2011 03:49:08 PM,06/25/2011 03:49:48 PM,06/25/2011 03:51:57 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 03:55:12 PM,900 Block of 3RD ST,SF,94158,B03,8,946,3,3,3,true,,1,ENGINE,4,None,6,None,"(37.7765531472403, -122.390007762623)",111760248-E37 +160640409,KM03,16025358,Medical Incident,03/04/2016,03/03/2016,03/04/2016 04:49:19 AM,03/04/2016 04:51:10 AM,03/04/2016 04:51:32 AM,03/04/2016 04:52:08 AM,03/04/2016 05:01:32 AM,03/04/2016 05:20:11 AM,03/04/2016 05:39:11 AM,Code 2 Transport,03/04/2016 06:21:38 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160640409-KM03 +112100227,T01,11069370,Alarms,07/29/2011,07/29/2011,07/29/2011 05:36:26 PM,07/29/2011 05:37:31 PM,07/29/2011 05:38:29 PM,07/29/2011 05:40:09 PM,07/29/2011 05:42:30 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 05:49:30 PM,0 Block of COLUMBIA SQUARE ST,SF,94103,B03,1,2253,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7772769755923, -122.405617030416)",112100227-T01 +122620140,E12,12086479,Alarms,09/18/2012,09/18/2012,09/18/2012 11:37:35 AM,09/18/2012 11:38:05 AM,09/18/2012 11:39:17 AM,09/18/2012 11:39:38 AM,09/18/2012 11:41:51 AM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 11:48:00 AM,400 Block of PARNASSUS AVE,SF,94122,B05,12,5155,3,3,3,true,Alarm,1,ENGINE,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",122620140-E12 +122740279,E03,12090468,Medical Incident,09/30/2012,09/30/2012,09/30/2012 05:17:14 PM,09/30/2012 05:17:49 PM,09/30/2012 05:18:23 PM,09/30/2012 05:18:30 PM,09/30/2012 05:18:55 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,Other,09/30/2012 05:27:36 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",122740279-E03 +130980058,E31,13032758,Citizen Assist / Service Call,04/08/2013,04/07/2013,04/08/2013 03:50:22 AM,04/08/2013 03:51:54 AM,04/08/2013 03:52:34 AM,04/08/2013 03:54:36 AM,04/08/2013 03:56:04 AM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Other,04/08/2013 04:03:41 AM,1700 Block of CLEMENT ST,SF,94121,B07,31,7164,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7823892979181, -122.47791315608)",130980058-E31 +160133264,74,16005303,Medical Incident,01/13/2016,01/13/2016,01/13/2016 06:12:04 PM,01/13/2016 06:12:04 PM,01/13/2016 06:18:36 PM,01/13/2016 06:18:36 PM,01/13/2016 06:23:21 PM,01/13/2016 06:42:01 PM,01/13/2016 06:42:02 PM,Code 2 Transport,01/13/2016 07:28:53 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160133264-74 +130540158,E09,13018237,Medical Incident,02/23/2013,02/23/2013,02/23/2013 01:17:58 PM,02/23/2013 01:18:19 PM,02/23/2013 01:19:39 PM,02/23/2013 01:20:29 PM,02/23/2013 01:22:55 PM,02/23/2013 01:39:01 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 01:54:00 PM,2400 Block of 24TH ST,SF,94110,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Mission,"(37.7530951176845, -122.403879225833)",130540158-E09 +113160178,77,11105004,Medical Incident,11/12/2011,11/12/2011,11/12/2011 02:38:25 PM,11/12/2011 02:38:42 PM,11/12/2011 02:39:30 PM,11/12/2011 02:40:19 PM,11/12/2011 02:41:37 PM,11/12/2011 03:06:30 PM,11/12/2011 03:37:31 PM,Code 2 Transport,11/12/2011 03:54:52 PM,1800 Block of STOCKTON ST,SF,94133,B01,28,1335,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8027782547729, -122.409586942281)",113160178-77 +140590223,B03,14019924,Alarms,02/28/2014,02/28/2014,02/28/2014 02:09:53 PM,02/28/2014 02:09:53 PM,02/28/2014 02:10:03 PM,02/28/2014 02:12:08 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Fire,02/28/2014 02:12:51 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",140590223-B03 +132160157,RS1,13072965,Structure Fire,08/04/2013,08/04/2013,08/04/2013 12:53:19 PM,08/04/2013 12:54:32 PM,08/04/2013 12:54:47 PM,08/04/2013 12:55:35 PM,08/04/2013 01:02:17 PM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/04/2013 01:07:09 PM,900 Block of GREENWICH ST,SF,94133,B01,28,1514,3,3,3,false,Alarm,1,RESCUE SQUAD,9,1,3,Russian Hill,"(37.8015015067263, -122.415530627533)",132160157-RS1 +130970088,T12,13032458,Other,04/07/2013,04/06/2013,04/07/2013 07:11:58 AM,04/07/2013 07:12:20 AM,04/07/2013 07:12:42 AM,04/07/2013 07:14:36 AM,04/07/2013 07:19:24 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Fire,04/07/2013 07:27:05 AM,100 Block of MARTIN LUTHER KING JR DR,SF,94122,B07,12,7743,3,3,3,false,Alarm,1,TRUCK,1,7,5,Golden Gate Park,"(37.7669591119289, -122.462470187645)",130970088-T12 +103010327,T12,10096215,Structure Fire,10/28/2010,10/28/2010,10/28/2010 05:31:39 PM,10/28/2010 05:33:14 PM,10/28/2010 05:33:26 PM,10/28/2010 05:34:30 PM,10/28/2010 06:46:45 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/28/2010 07:23:23 PM,300 Block of PANORAMA DR,SF,94131,B08,20,5351,3,3,3,false,,1,TRUCK,12,8,7,Twin Peaks,"(37.7502932901072, -122.452197020154)",103010327-T12 +160221157,73,16008714,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:18:49 AM,01/22/2016 10:18:49 AM,01/22/2016 10:19:24 AM,01/22/2016 10:19:34 AM,01/22/2016 10:35:29 AM,01/22/2016 10:56:10 AM,01/22/2016 11:08:19 AM,Code 2 Transport,01/22/2016 11:47:11 AM,2500 Block of HARRISON ST,San Francisco,94110,B06,7,545,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7566269297106, -122.412341955639)",160221157-73 +121250038,85,12041390,Medical Incident,05/04/2012,05/03/2012,05/04/2012 05:01:41 AM,05/04/2012 05:04:30 AM,05/04/2012 05:06:22 AM,05/04/2012 05:06:35 AM,05/04/2012 05:10:03 AM,05/04/2012 05:19:28 AM,05/04/2012 05:24:19 AM,Code 2 Transport,05/04/2012 05:30:23 AM,JONES ST/MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811361605292, -122.412024075557)",121250038-85 +160280128,52,16010935,Medical Incident,01/28/2016,01/27/2016,01/28/2016 01:13:10 AM,01/28/2016 01:14:25 AM,01/28/2016 01:14:44 AM,01/28/2016 01:14:50 AM,01/28/2016 01:33:11 AM,01/28/2016 01:54:24 AM,01/28/2016 02:19:38 AM,Code 2 Transport,01/28/2016 03:14:45 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",160280128-52 +160253081,73,16010062,Medical Incident,01/25/2016,01/25/2016,01/25/2016 06:49:39 PM,01/25/2016 06:49:39 PM,01/25/2016 07:06:12 PM,01/25/2016 07:06:21 PM,01/25/2016 07:12:49 PM,01/25/2016 07:16:32 PM,01/25/2016 07:27:33 PM,Code 2 Transport,01/25/2016 08:10:54 PM,FILLMORE ST/BAY ST,San Francisco,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.8026284241178, -122.436693347158)",160253081-73 +133350156,88,13113552,Medical Incident,12/01/2013,12/01/2013,12/01/2013 12:03:25 PM,12/01/2013 12:03:47 PM,12/01/2013 12:04:31 PM,12/01/2013 12:04:43 PM,12/01/2013 12:11:52 PM,12/01/2013 12:26:00 PM,12/01/2013 12:41:35 PM,Code 2 Transport,12/01/2013 01:14:30 PM,MARKET ST/VALENCIA ST,SF,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7725028174103, -122.422619692886)",133350156-88 +160703732,65,16028041,Medical Incident,03/10/2016,03/10/2016,03/10/2016 10:39:28 PM,03/10/2016 10:39:28 PM,03/10/2016 10:39:46 PM,03/10/2016 10:40:04 PM,03/10/2016 10:45:24 PM,03/10/2016 11:10:48 PM,03/10/2016 11:23:22 PM,Code 2 Transport,03/11/2016 12:57:40 AM,200 Block of SAN CARLOS ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7593905432915, -122.41983909787)",160703732-65 +123450367,B03,12115479,Alarms,12/10/2012,12/10/2012,12/10/2012 07:08:29 PM,12/10/2012 07:10:02 PM,12/10/2012 07:10:13 PM,12/10/2012 07:11:45 PM,12/10/2012 07:16:15 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Fire,12/10/2012 07:18:29 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7760099210785, -122.412889415461)",123450367-B03 +140500030,E05,14016862,Medical Incident,02/19/2014,02/18/2014,02/19/2014 04:36:18 AM,02/19/2014 04:37:03 AM,02/19/2014 04:37:24 AM,02/19/2014 04:39:34 AM,02/19/2014 04:41:55 AM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,Code 2 Transport,02/19/2014 04:57:25 AM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",140500030-E05 +132080285,AM18,13070503,Medical Incident,07/27/2013,07/27/2013,07/27/2013 09:10:46 PM,07/27/2013 09:13:04 PM,07/27/2013 09:14:11 PM,07/27/2013 09:14:46 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,04/25/2016 01:51:36 PM,FRANKLIN ST/HICKORY ST,SF,94102,B02,36,3213,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7756952315928, -122.421053261418)",132080285-AM18 +120620294,E15,12020485,Medical Incident,03/02/2012,03/02/2012,03/02/2012 06:12:45 PM,03/02/2012 06:13:16 PM,03/02/2012 06:13:40 PM,03/02/2012 06:13:51 PM,03/02/2012 06:16:44 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/02/2012 06:41:02 PM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",120620294-E15 +132080287,E31,13070504,Medical Incident,07/27/2013,07/27/2013,07/27/2013 09:16:42 PM,07/27/2013 09:17:28 PM,07/27/2013 09:17:39 PM,07/27/2013 09:18:38 PM,07/27/2013 09:20:48 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/27/2013 09:37:21 PM,5200 Block of GEARY BLVD,SF,94118,B07,31,7161,3,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7803793292954, -122.475616326182)",132080287-E31 +112760214,E23,11091375,Medical Incident,10/03/2011,10/03/2011,10/03/2011 01:38:05 PM,10/03/2011 01:38:17 PM,10/03/2011 01:39:01 PM,10/03/2011 01:39:57 PM,10/03/2011 01:41:41 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,No Merit,10/03/2011 02:03:44 PM,1700 Block of 43RD AVE,SF,94122,B08,23,7651,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7540326780595, -122.502185504543)",112760214-E23 +123130028,E36,12104015,Medical Incident,11/08/2012,11/07/2012,11/08/2012 02:11:28 AM,11/08/2012 02:12:19 AM,11/08/2012 02:12:36 AM,11/08/2012 02:15:21 AM,11/08/2012 02:16:50 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/08/2012 02:22:15 AM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",123130028-E36 +130090368,E07,13003265,Explosion,01/09/2013,01/09/2013,01/09/2013 10:57:20 PM,01/09/2013 10:59:45 PM,01/09/2013 11:00:45 PM,01/09/2013 11:03:08 PM,01/09/2013 11:03:46 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 11:14:50 PM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7576134671742, -122.419025267752)",130090368-E07 +160473270,55,16019079,Explosion,02/16/2016,02/16/2016,02/16/2016 07:26:49 PM,02/16/2016 07:28:49 PM,02/16/2016 07:31:01 PM,02/16/2016 07:31:16 PM,02/16/2016 07:40:46 PM,02/16/2016 08:06:46 PM,02/16/2016 08:17:34 PM,Code 2 Transport,02/16/2016 08:41:00 PM,500 Block of NEVADA ST,San Francisco,94110,B10,32,5746,3,3,3,true,Fire,1,MEDIC,5,10,9,Bernal Heights,"(37.7352159283229, -122.411843888216)",160473270-55 +160401999,AM02,16016058,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:48:53 PM,02/09/2016 01:50:05 PM,02/09/2016 01:52:07 PM,02/09/2016 01:55:58 PM,02/09/2016 01:57:40 PM,02/09/2016 02:14:26 PM,02/09/2016 02:33:09 PM,Code 2 Transport,02/09/2016 03:11:18 PM,5400 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7162,2,3,3,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7842404537542, -122.475899821678)",160401999-AM02 +160080061,76,16003051,Medical Incident,01/08/2016,01/07/2016,01/08/2016 12:32:21 AM,01/08/2016 12:34:07 AM,01/08/2016 12:35:53 AM,01/08/2016 12:39:41 AM,01/08/2016 12:45:26 AM,01/08/2016 01:04:37 AM,01/08/2016 01:14:52 AM,Code 2 Transport,01/08/2016 02:27:12 AM,1000 Block of MONTEREY BLVD,San Francisco,94127,B09,15,8522,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7308474511279, -122.459712653409)",160080061-76 +112600311,E36,11085854,High Angle Rescue,09/17/2011,09/17/2011,09/17/2011 05:16:04 PM,09/17/2011 05:16:47 PM,09/17/2011 05:17:27 PM,04/25/2016 02:02:37 PM,09/17/2011 05:18:41 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 05:22:44 PM,300 Block of LARKIN ST,SF,94102,B02,3,1644,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7809676399552, -122.416978283011)",112600311-E36 +133440314,B03,13116766,Alarms,12/10/2013,12/10/2013,12/10/2013 05:26:36 PM,12/10/2013 05:29:04 PM,12/10/2013 05:29:19 PM,12/10/2013 05:31:19 PM,12/10/2013 05:33:58 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 05:48:26 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7806691632498, -122.401678045598)",133440314-B03 +160100586,88,16003929,Medical Incident,01/10/2016,01/09/2016,01/10/2016 05:38:06 AM,01/10/2016 05:39:25 AM,01/10/2016 05:40:00 AM,01/10/2016 05:40:17 AM,01/10/2016 05:47:01 AM,01/10/2016 06:00:06 AM,01/10/2016 06:08:42 AM,Code 2 Transport,01/10/2016 06:39:13 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160100586-88 +160861911,77,16034188,Medical Incident,03/26/2016,03/26/2016,03/26/2016 01:54:23 PM,03/26/2016 01:55:29 PM,03/26/2016 01:55:44 PM,03/26/2016 01:56:05 PM,03/26/2016 02:01:15 PM,03/26/2016 02:24:48 PM,03/26/2016 02:36:24 PM,Code 2 Transport,03/26/2016 03:25:00 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160861911-77 +160271283,KM11,16010623,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:47:05 AM,01/27/2016 10:48:34 AM,01/27/2016 10:49:14 AM,01/27/2016 10:50:09 AM,01/27/2016 10:54:57 AM,01/27/2016 11:10:32 AM,01/27/2016 11:25:36 AM,Code 2 Transport,01/27/2016 11:44:46 AM,900 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160271283-KM11 +132400151,E33,13080931,Medical Incident,08/28/2013,08/28/2013,08/28/2013 11:38:50 AM,08/28/2013 11:42:12 AM,08/28/2013 11:43:21 AM,08/28/2013 11:44:34 AM,08/28/2013 11:46:58 AM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/28/2013 11:59:22 AM,5500 Block of MISSION ST,SF,94112,B09,33,6177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7120147227325, -122.445301042421)",132400151-E33 +120270248,59,12009115,Medical Incident,01/27/2012,01/27/2012,01/27/2012 03:13:19 PM,01/27/2012 03:15:06 PM,01/27/2012 03:15:25 PM,01/27/2012 03:18:17 PM,01/27/2012 03:25:07 PM,01/27/2012 03:37:29 PM,01/27/2012 04:07:24 PM,Code 2 Transport,01/27/2012 04:48:38 PM,100 Block of SOUTHPARK AV,SF,94107,B03,8,2173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7813440864506, -122.394434280881)",120270248-59 +112670140,E01,11088186,Medical Incident,09/24/2011,09/24/2011,09/24/2011 10:19:35 AM,09/24/2011 10:20:15 AM,09/24/2011 10:20:29 AM,09/24/2011 10:21:19 AM,09/24/2011 10:25:08 AM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 10:38:05 AM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",112670140-E01 +133510431,93,13119401,Structure Fire,12/17/2013,12/17/2013,12/17/2013 10:56:31 PM,12/17/2013 10:57:20 PM,12/17/2013 10:57:39 PM,12/17/2013 10:58:06 PM,12/17/2013 11:04:02 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/17/2013 11:04:52 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Alarm,1,MEDIC,9,3,6,South of Market,"(37.7803475492385, -122.406487967809)",133510431-93 +132810279,FHT22,13095681,Administrative,10/08/2013,10/08/2013,10/08/2013 04:53:14 PM,10/08/2013 04:53:16 PM,10/08/2013 04:54:26 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,04/25/2016 01:50:21 PM,1000 Block of TURK ST,SF,94102,B02,5,3367,3,3,3,false,,1,SUPPORT,1,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",132810279-FHT22 +160844256,59,16033578,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:45:52 PM,03/24/2016 10:46:34 PM,03/24/2016 10:46:51 PM,03/24/2016 10:47:25 PM,03/24/2016 10:50:22 PM,03/24/2016 11:10:24 PM,03/24/2016 11:22:48 PM,Code 3 Transport,03/24/2016 11:44:53 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160844256-59 +131180090,KM12,13039624,Water Rescue,04/28/2013,04/28/2013,04/28/2013 08:33:37 AM,04/28/2013 08:35:30 AM,04/28/2013 08:37:09 AM,04/28/2013 08:38:26 AM,04/28/2013 08:45:47 AM,04/28/2013 09:04:06 AM,04/28/2013 09:22:53 AM,Code 2 Transport,04/28/2013 10:00:01 AM,900 Block of MARINE DR,PR,94129,B99,51,4628,3,3,3,false,Fire,1,PRIVATE,6,7,2,Presidio,"(37.8089767888005, -122.47460956271)",131180090-KM12 +160193475,70,16007795,Medical Incident,01/19/2016,01/19/2016,01/19/2016 09:09:27 PM,01/19/2016 09:10:17 PM,01/19/2016 09:10:29 PM,01/19/2016 09:11:17 PM,01/19/2016 09:13:38 PM,01/19/2016 09:30:03 PM,01/19/2016 09:34:03 PM,Code 2 Transport,01/19/2016 09:54:57 PM,0 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7548646812511, -122.42138676208)",160193475-70 +160511800,67,16020493,Medical Incident,02/20/2016,02/20/2016,02/20/2016 02:11:04 PM,02/20/2016 02:12:31 PM,02/20/2016 02:18:41 PM,02/20/2016 02:18:56 PM,02/20/2016 02:25:07 PM,02/20/2016 02:39:16 PM,02/20/2016 03:28:49 PM,Code 2 Transport,02/20/2016 03:29:22 PM,1200 Block of HAMPSHIRE ST,San Francisco,94110,B06,9,5531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Mission,"(37.7521125682968, -122.407146114914)",160511800-67 +123440018,E05,12114846,Medical Incident,12/09/2012,12/08/2012,12/09/2012 12:50:28 AM,12/09/2012 12:52:26 AM,12/09/2012 12:54:54 AM,12/09/2012 12:55:54 AM,12/09/2012 12:57:58 AM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/09/2012 01:09:47 AM,ELLIS ST/STEINER ST,SF,94115,B04,5,3623,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7821509104559, -122.434161776634)",123440018-E05 +133060189,RS2,13104042,Structure Fire,11/02/2013,11/02/2013,11/02/2013 01:26:34 PM,11/02/2013 01:27:31 PM,11/02/2013 01:27:53 PM,11/02/2013 01:29:19 PM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,Other,11/02/2013 01:37:30 PM,1200 Block of 14TH AVE,SF,94122,B08,22,7346,3,3,3,false,Alarm,1,RESCUE SQUAD,9,7,5,Inner Sunset,"(37.7647478412807, -122.471664663461)",133060189-RS2 +112560069,E15,11084346,Medical Incident,09/13/2011,09/12/2011,09/13/2011 07:29:49 AM,09/13/2011 07:31:03 AM,09/13/2011 07:31:11 AM,04/25/2016 02:02:42 PM,09/13/2011 07:32:46 AM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Other,09/13/2011 08:06:33 AM,200 Block of LEE AVE,SF,94112,B09,15,8472,3,3,3,true,,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7226539396892, -122.454180300555)",112560069-E15 +131850399,HT48,13063232,Outside Fire,07/04/2013,07/04/2013,07/04/2013 10:38:32 PM,07/04/2013 10:41:02 PM,07/04/2013 10:42:09 PM,07/04/2013 10:42:42 PM,07/04/2013 10:46:29 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Fire,07/04/2013 10:56:06 PM,1200 Block of NORTHPOINT DR,TI,94130,B03,48,2931,3,3,3,false,Fire,1,SUPPORT,1,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",131850399-HT48 +103540195,AM14,10113659,Medical Incident,12/20/2010,12/20/2010,12/20/2010 02:25:41 PM,12/20/2010 02:26:22 PM,12/20/2010 02:27:00 PM,12/20/2010 02:28:09 PM,12/20/2010 02:32:53 PM,12/20/2010 03:07:34 PM,12/20/2010 03:15:16 PM,Code 2 Transport,12/20/2010 04:18:28 PM,600 Block of TENNESSEE ST,SF,94107,B03,29,2465,3,3,3,false,,1,PRIVATE,2,3,10,Potrero Hill,"(37.7636272287453, -122.389723389973)",103540195-AM14 +103610207,E05,10115826,Medical Incident,12/27/2010,12/27/2010,12/27/2010 02:23:32 PM,12/27/2010 02:24:30 PM,12/27/2010 02:25:13 PM,12/27/2010 02:26:14 PM,12/27/2010 02:26:51 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,12/27/2010 02:40:06 PM,WEBSTER ST/GEARY BL,SF,94115,B04,5,3541,3,3,3,true,,1,ENGINE,1,4,5,Japantown,"(37.7845682402461, -122.431204945516)",103610207-E05 +112170390,E40,11071886,Structure Fire,08/05/2011,08/05/2011,08/05/2011 10:36:48 PM,08/05/2011 10:38:32 PM,08/05/2011 10:38:40 PM,08/05/2011 10:40:29 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/05/2011 11:08:28 PM,1400 Block of 17TH AVE,SF,94122,B08,22,7371,3,3,3,false,,1,ENGINE,5,8,7,Inner Sunset,"(37.7608577152876, -122.474858703379)",112170390-E40 +122630079,78,12086785,Medical Incident,09/19/2012,09/19/2012,09/19/2012 08:50:05 AM,09/19/2012 08:51:20 AM,09/19/2012 08:51:49 AM,09/19/2012 08:52:00 AM,09/19/2012 09:01:04 AM,09/19/2012 09:11:48 AM,09/19/2012 09:29:27 AM,Code 2 Transport,09/19/2012 10:13:37 AM,600 Block of AVENUE M,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8258558602509, -122.367277592222)",122630079-78 +160431842,62,16017310,Medical Incident,02/12/2016,02/12/2016,02/12/2016 01:29:33 PM,02/12/2016 01:29:33 PM,02/12/2016 01:30:31 PM,02/12/2016 01:30:46 PM,02/12/2016 01:40:45 PM,02/12/2016 01:54:26 PM,02/12/2016 02:10:07 PM,Code 2 Transport,02/12/2016 03:04:30 PM,MYRTLE ST/LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7856417088638, -122.417996270411)",160431842-62 +121150001,66,12037999,Medical Incident,04/23/2012,04/23/2012,04/23/2012 11:58:54 PM,04/24/2012 12:00:08 AM,04/24/2012 12:01:05 AM,04/24/2012 12:01:40 AM,04/24/2012 12:15:36 AM,04/24/2012 12:40:00 AM,04/24/2012 12:54:35 AM,Code 2 Transport,04/24/2012 01:39:41 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",121150001-66 +112990280,E10,11099259,Medical Incident,10/26/2011,10/26/2011,10/26/2011 06:07:30 PM,10/26/2011 06:10:31 PM,10/26/2011 06:11:34 PM,10/26/2011 06:12:41 PM,10/26/2011 06:14:50 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 06:28:33 PM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,,1,ENGINE,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",112990280-E10 +111770064,92,11058283,Medical Incident,06/26/2011,06/25/2011,06/26/2011 04:22:34 AM,06/26/2011 04:26:06 AM,06/26/2011 04:26:39 AM,06/26/2011 04:26:48 AM,06/26/2011 04:40:08 AM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Against Medical Advice,06/26/2011 05:58:34 AM,200 Block of 2ND AVE,SF,94118,B07,10,7114,2,2,2,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7840744655349, -122.460134299272)",111770064-92 +160093319,58,16003804,Medical Incident,01/09/2016,01/09/2016,01/09/2016 09:05:58 PM,01/09/2016 09:06:38 PM,01/09/2016 09:10:53 PM,01/09/2016 09:11:02 PM,01/09/2016 09:25:05 PM,01/09/2016 09:45:11 PM,01/09/2016 10:01:49 PM,Code 2 Transport,01/09/2016 10:32:31 PM,500 Block of 35TH AVE,San Francisco,94121,B07,34,7251,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7786310322767, -122.495444578363)",160093319-58 +121340323,93,12044744,Medical Incident,05/13/2012,05/13/2012,05/13/2012 11:43:34 PM,05/13/2012 11:44:01 PM,05/13/2012 11:44:30 PM,04/25/2016 01:58:42 PM,05/13/2012 11:48:20 PM,05/13/2012 11:57:56 PM,05/14/2012 12:23:18 AM,Code 2 Transport,05/14/2012 01:02:42 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",121340323-93 +160610420,84,16024184,Medical Incident,03/01/2016,02/29/2016,03/01/2016 05:57:47 AM,03/01/2016 05:58:35 AM,03/01/2016 05:59:12 AM,03/01/2016 05:59:38 AM,03/01/2016 06:03:47 AM,03/01/2016 06:15:44 AM,03/01/2016 06:22:07 AM,Code 3 Transport,03/01/2016 06:58:47 AM,0 Block of DARTMOUTH ST,San Francisco,94134,B09,42,6367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,9,Portola,"(37.7305890628092, -122.41357463398)",160610420-84 +160573524,70,16022907,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:27:24 PM,02/26/2016 09:29:24 PM,02/26/2016 09:29:36 PM,02/26/2016 09:30:06 PM,02/26/2016 09:37:24 PM,02/26/2016 10:03:33 PM,02/26/2016 10:25:23 PM,Code 2 Transport,02/26/2016 11:17:36 PM,100 Block of NAGLEE AVE,San Francisco,94112,B09,33,8346,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7128915614462, -122.447808078871)",160573524-70 +121320324,T01,12044040,Structure Fire,05/11/2012,05/11/2012,05/11/2012 07:35:04 PM,05/11/2012 07:35:04 PM,05/11/2012 07:35:12 PM,05/11/2012 07:36:30 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 07:38:28 PM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",121320324-T01 +160363730,61,16014433,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:50:36 PM,02/05/2016 08:50:36 PM,02/05/2016 08:50:46 PM,02/05/2016 08:50:46 PM,02/05/2016 08:54:40 PM,02/05/2016 09:11:17 PM,02/05/2016 09:27:09 PM,Code 2 Transport,02/05/2016 09:50:35 PM,MARKET ST/BEALE ST,San Francisco,94105,B99,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Financial District/South Beach,"(37.7924055206042, -122.397383447066)",160363730-61 +113620053,B08,11120141,Structure Fire,12/28/2011,12/27/2011,12/28/2011 06:21:43 AM,12/28/2011 06:23:03 AM,12/28/2011 06:23:22 AM,12/28/2011 06:25:24 AM,12/28/2011 06:28:36 AM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 06:43:07 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,,1,CHIEF,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",113620053-B08 +123170135,AM08,12105462,Medical Incident,11/12/2012,11/12/2012,11/12/2012 11:56:06 AM,11/12/2012 11:57:28 AM,11/12/2012 11:57:38 AM,11/12/2012 11:58:27 AM,11/12/2012 12:05:17 PM,11/12/2012 12:35:28 PM,11/12/2012 01:03:49 PM,Code 2 Transport,11/12/2012 01:45:44 PM,0 Block of SAN PABLO AVE,SF,94127,B08,39,8565,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.73959485255, -122.462100133243)",123170135-AM08 +160712927,77,16028331,Medical Incident,03/11/2016,03/11/2016,03/11/2016 06:39:25 PM,03/11/2016 06:41:03 PM,03/11/2016 06:41:57 PM,03/11/2016 06:42:08 PM,03/11/2016 06:51:10 PM,03/11/2016 07:00:58 PM,03/11/2016 07:20:07 PM,Code 2 Transport,03/11/2016 07:41:25 PM,0 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7844552383777, -122.40891208737)",160712927-77 +140700044,54,14023500,Medical Incident,03/11/2014,03/10/2014,03/11/2014 05:02:48 AM,03/11/2014 05:02:49 AM,03/11/2014 05:03:15 AM,03/11/2014 05:03:34 AM,03/11/2014 05:13:40 AM,03/11/2014 05:29:50 AM,03/11/2014 05:43:04 AM,Code 2 Transport,03/11/2014 05:58:51 AM,1100 Block of FILLMORE ST,,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",140700044-54 +113340143,E22,11110575,Medical Incident,11/30/2011,11/30/2011,11/30/2011 12:20:08 PM,11/30/2011 12:21:38 PM,11/30/2011 12:21:52 PM,04/25/2016 02:01:24 PM,11/30/2011 12:24:54 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/30/2011 12:25:04 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,false,,1,ENGINE,2,8,5,Inner Sunset,"(37.7631968207196, -122.464176094005)",113340143-E22 +160253844,73,16010137,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:04:21 PM,01/25/2016 11:05:22 PM,01/25/2016 11:06:08 PM,01/25/2016 11:06:22 PM,01/25/2016 11:13:09 PM,01/25/2016 11:16:28 PM,01/25/2016 11:26:33 PM,Code 2 Transport,01/26/2016 12:03:52 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160253844-73 +110450337,E08,11015057,Structure Fire,02/14/2011,02/14/2011,02/14/2011 08:01:52 PM,02/14/2011 08:01:52 PM,02/14/2011 08:02:10 PM,02/14/2011 08:04:30 PM,02/14/2011 08:04:54 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 08:05:33 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",110450337-E08 +160273143,KM05,16010816,Medical Incident,01/27/2016,01/27/2016,01/27/2016 06:34:29 PM,01/27/2016 06:34:56 PM,01/27/2016 06:35:12 PM,01/27/2016 06:36:02 PM,01/27/2016 06:39:45 PM,01/27/2016 07:02:06 PM,01/27/2016 07:12:12 PM,Code 2 Transport,01/27/2016 07:38:29 PM,200 Block of 19TH AV,San Francisco,94121,B07,31,7164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7832443396993, -122.478442077915)",160273143-KM05 +140620381,B04,14021123,Alarms,03/03/2014,03/03/2014,03/03/2014 11:35:00 PM,03/03/2014 11:36:19 PM,03/03/2014 11:38:37 PM,03/03/2014 11:39:44 PM,03/03/2014 11:41:37 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Fire,03/03/2014 11:50:13 PM,1300 Block of GOUGH ST,SF,94109,B04,3,3256,3,3,3,false,Alarm,1,CHIEF,1,4,2,Western Addition,"(37.7857740861424, -122.424704369163)",140620381-B04 +132950166,53,13100299,Medical Incident,10/22/2013,10/22/2013,10/22/2013 01:03:27 PM,10/22/2013 01:04:29 PM,10/22/2013 01:04:50 PM,10/22/2013 01:04:58 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/22/2013 01:14:40 PM,25TH ST/HAMPSHIRE ST,SF,94110,B10,9,2624,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7513102329158, -122.407139008213)",132950166-53 +102300242,T08,10072435,Structure Fire,08/18/2010,08/18/2010,08/18/2010 03:50:34 PM,08/18/2010 03:50:34 PM,08/18/2010 03:50:42 PM,08/18/2010 03:51:48 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/18/2010 03:54:12 PM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7772727011897, -122.404070256526)",102300242-T08 +131250014,AM18,13042093,Medical Incident,05/05/2013,05/04/2013,05/05/2013 12:47:05 AM,05/05/2013 12:50:23 AM,05/05/2013 12:50:30 AM,05/05/2013 12:51:37 AM,05/05/2013 12:56:22 AM,05/05/2013 01:03:33 AM,05/05/2013 01:25:53 AM,Code 2 Transport,05/05/2013 01:55:06 AM,REVERE AV/JENNINGS ST,SF,94124,B10,17,6571,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7295427123834, -122.38641847796)",131250014-AM18 +122310063,AM16,12076502,Medical Incident,08/18/2012,08/17/2012,08/18/2012 07:01:19 AM,08/18/2012 07:03:00 AM,08/18/2012 07:03:12 AM,08/18/2012 07:03:47 AM,08/18/2012 07:05:42 AM,08/18/2012 07:28:05 AM,08/18/2012 07:55:14 AM,Code 2 Transport,08/18/2012 07:55:18 AM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",122310063-AM16 +131440118,E42,13048772,Traffic Collision,05/24/2013,05/24/2013,05/24/2013 10:35:40 AM,05/24/2013 10:36:35 AM,05/24/2013 10:38:19 AM,05/24/2013 10:38:42 AM,05/24/2013 10:40:40 AM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Other,05/24/2013 11:00:20 AM,SAN BRUNO AV/GAVEN ST,SF,94134,B10,42,6366,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7340177516286, -122.406515383742)",131440118-E42 +160751475,81,16029685,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:39:56 AM,03/15/2016 11:42:52 AM,03/15/2016 11:43:05 AM,03/15/2016 11:43:16 AM,03/15/2016 11:50:37 AM,03/15/2016 12:11:39 PM,03/15/2016 12:16:53 PM,Code 2 Transport,03/15/2016 12:52:14 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160751475-81 +103050281,E06,10097566,Medical Incident,11/01/2010,11/01/2010,11/01/2010 03:42:30 PM,11/01/2010 03:44:11 PM,11/01/2010 03:45:36 PM,11/01/2010 03:46:25 PM,11/01/2010 03:48:08 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/01/2010 04:34:11 PM,3800 Block of 18TH ST,SF,94114,B02,6,5421,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",103050281-E06 +130100274,AM12,13003502,Odor (Strange / Unknown),01/10/2013,01/10/2013,01/10/2013 06:26:46 PM,01/10/2013 06:27:53 PM,01/10/2013 06:29:15 PM,01/10/2013 06:30:20 PM,01/10/2013 06:32:27 PM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,No Merit,01/10/2013 06:43:02 PM,1100 Block of PLYMOUTH AVE,SF,94112,B09,15,8473,3,3,3,false,Alarm,1,PRIVATE,3,9,7,Oceanview/Merced/Ingleside,"(37.7228664396788, -122.456076821755)",130100274-AM12 +160270995,87,16010595,Medical Incident,01/27/2016,01/27/2016,01/27/2016 09:27:27 AM,01/27/2016 09:30:09 AM,01/27/2016 09:30:24 AM,01/27/2016 09:30:38 AM,01/27/2016 09:51:05 AM,01/27/2016 10:06:01 AM,01/27/2016 10:48:10 AM,Code 2 Transport,01/27/2016 11:28:11 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160270995-87 +102850293,61,10090818,Medical Incident,10/12/2010,10/12/2010,10/12/2010 03:07:51 PM,10/12/2010 03:08:10 PM,10/12/2010 03:09:13 PM,10/12/2010 03:09:53 PM,10/12/2010 03:13:05 PM,10/12/2010 03:35:51 PM,10/12/2010 04:10:24 PM,Code 2 Transport,10/12/2010 04:12:26 PM,POLK ST/OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",102850293-61 +110980330,93,11032614,Medical Incident,04/08/2011,04/08/2011,04/08/2011 05:38:50 PM,04/08/2011 05:38:59 PM,04/08/2011 05:39:07 PM,04/08/2011 05:39:19 PM,04/08/2011 05:42:49 PM,04/08/2011 05:54:42 PM,04/08/2011 06:35:47 PM,Code 2 Transport,04/08/2011 06:50:59 PM,7TH AV/IRVING ST,SF,94122,B08,22,7332,3,3,3,true,,1,MEDIC,2,7,5,Inner Sunset,"(37.7641308708366, -122.46417202271)",110980330-93 +130690201,B01,13023058,Structure Fire,03/10/2013,03/10/2013,03/10/2013 03:04:42 PM,03/10/2013 03:05:12 PM,03/10/2013 03:05:27 PM,03/10/2013 03:06:31 PM,03/10/2013 03:13:08 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 03:33:26 PM,1300 Block of FOLSOM ST,SF,94103,B02,36,2343,3,3,3,false,Fire,1,CHIEF,10,2,6,South of Market,"(37.7730095075911, -122.41247584547)",130690201-B01 +140560045,68,14018788,Medical Incident,02/25/2014,02/24/2014,02/25/2014 04:47:23 AM,02/25/2014 04:49:16 AM,02/25/2014 04:51:00 AM,02/25/2014 04:51:32 AM,02/25/2014 05:11:38 AM,02/25/2014 05:11:50 AM,02/25/2014 05:22:17 AM,Code 2 Transport,02/25/2014 05:55:44 AM,0 Block of GEARY ST,SF,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",140560045-68 +160330389,64,16012844,Medical Incident,02/02/2016,02/01/2016,02/02/2016 04:54:28 AM,02/02/2016 04:55:48 AM,02/02/2016 04:56:49 AM,02/02/2016 04:56:59 AM,02/02/2016 05:05:47 AM,02/02/2016 05:24:46 AM,02/02/2016 05:31:58 AM,Code 2 Transport,02/02/2016 05:58:28 AM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",160330389-64 +160783912,81,16031206,Medical Incident,03/18/2016,03/18/2016,03/18/2016 10:18:42 PM,03/18/2016 10:20:48 PM,03/18/2016 10:21:02 PM,03/18/2016 10:21:15 PM,03/18/2016 10:25:31 PM,03/18/2016 10:50:47 PM,03/18/2016 11:32:32 PM,Code 2 Transport,03/19/2016 12:02:56 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160783912-81 +102650273,T02,10083960,Structure Fire,09/22/2010,09/22/2010,09/22/2010 06:43:52 PM,09/22/2010 06:44:23 PM,09/22/2010 06:44:54 PM,09/22/2010 06:46:33 PM,09/22/2010 06:49:29 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 06:49:37 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,TRUCK,5,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",102650273-T02 +132210258,T03,13074689,Medical Incident,08/09/2013,08/09/2013,08/09/2013 04:59:34 PM,08/09/2013 05:01:49 PM,08/09/2013 05:04:29 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 05:06:09 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132210258-T03 +121350196,E01,12044898,Medical Incident,05/14/2012,05/14/2012,05/14/2012 01:13:12 PM,05/14/2012 01:15:11 PM,05/14/2012 01:15:26 PM,04/25/2016 01:58:41 PM,05/14/2012 01:20:45 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 01:23:58 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",121350196-E01 +131460262,E25,13049577,Water Rescue,05/26/2013,05/26/2013,05/26/2013 03:11:44 PM,05/26/2013 03:14:28 PM,05/26/2013 03:16:05 PM,05/26/2013 03:17:42 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 03:37:37 PM,3200 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,false,Fire,1,ENGINE,13,None,None,None,"(37.7475912199361, -122.387182780653)",131460262-E25 +112700326,E13,11089338,Medical Incident,09/27/2011,09/27/2011,09/27/2011 08:06:27 PM,09/27/2011 08:06:47 PM,09/27/2011 08:07:16 PM,09/27/2011 08:08:21 PM,09/27/2011 08:09:42 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/27/2011 08:26:55 PM,1000 Block of MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.7986889731495, -122.404026438275)",112700326-E13 +131390225,RC3,13047031,Medical Incident,05/19/2013,05/19/2013,05/19/2013 12:45:31 PM,05/19/2013 12:46:37 PM,05/19/2013 12:49:03 PM,05/19/2013 12:50:15 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 12:52:53 PM,2500 Block of 38TH AVE,SF,94116,B08,18,7617,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7393527217346, -122.495923100907)",131390225-RC3 +160553876,72,16022162,Medical Incident,02/24/2016,02/24/2016,02/24/2016 09:25:52 PM,02/24/2016 09:26:06 PM,02/24/2016 09:26:24 PM,02/24/2016 09:26:34 PM,02/24/2016 09:31:22 PM,02/24/2016 09:44:09 PM,02/24/2016 09:55:29 PM,Code 2 Transport,02/24/2016 10:31:03 PM,600 Block of RUSSIA AV,San Francisco,94112,B09,43,6137,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7190602135406, -122.432020660339)",160553876-72 +130420123,83,13014274,Medical Incident,02/11/2013,02/11/2013,02/11/2013 10:30:12 AM,02/11/2013 10:32:33 AM,02/11/2013 10:33:02 AM,02/11/2013 10:33:10 AM,02/11/2013 10:41:42 AM,02/11/2013 10:48:13 AM,02/11/2013 11:12:06 AM,Code 2 Transport,02/11/2013 11:49:05 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964729931252, -122.410712303092)",130420123-83 +111300369,E38,11043121,Medical Incident,05/10/2011,05/10/2011,05/10/2011 09:58:16 PM,05/10/2011 09:59:27 PM,05/10/2011 10:00:24 PM,05/10/2011 10:01:37 PM,05/10/2011 10:02:38 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 10:13:32 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",111300369-E38 +121330358,B02,12044426,Medical Incident,05/12/2012,05/12/2012,05/12/2012 10:47:57 PM,05/12/2012 10:50:55 PM,05/12/2012 10:55:52 PM,05/12/2012 11:01:53 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 11:02:35 PM,200 Block of CAPP ST,SF,94110,B02,7,5246,2,E,3,false,Non Life-threatening,1,CHIEF,4,2,9,Mission,"(37.7627024067539, -122.418417366729)",121330358-B02 +132190420,B10,13074154,Structure Fire,08/07/2013,08/07/2013,08/07/2013 11:48:48 PM,08/07/2013 11:49:54 PM,08/07/2013 11:50:05 PM,08/07/2013 11:50:50 PM,08/07/2013 11:54:03 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,Other,08/07/2013 11:55:33 PM,700 Block of MARIPOSA ST,SF,94107,B03,29,2436,3,3,3,false,Alarm,1,CHIEF,2,3,10,Potrero Hill,"(37.7641163227718, -122.391293792303)",132190420-B10 +132680340,RA48,13091115,Traffic Collision,09/25/2013,09/25/2013,09/25/2013 06:31:42 PM,09/25/2013 06:34:03 PM,09/25/2013 06:39:45 PM,09/25/2013 06:45:37 PM,09/25/2013 06:52:07 PM,09/25/2013 07:12:11 PM,09/25/2013 07:57:19 PM,Code 2 Transport,09/25/2013 08:29:36 PM,FREMONT ST/HOWARD ST,SF,94105,B03,35,2124,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7892346992583, -122.395150932922)",132680340-RA48 +123570099,T01,12119440,Structure Fire,12/22/2012,12/22/2012,12/22/2012 08:55:05 AM,12/22/2012 08:55:06 AM,12/22/2012 08:55:21 AM,12/22/2012 08:57:10 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Fire,12/22/2012 08:59:45 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",123570099-T01 +130980198,T05,13032861,Citizen Assist / Service Call,04/08/2013,04/08/2013,04/08/2013 11:45:03 AM,04/08/2013 11:46:15 AM,04/08/2013 11:47:04 AM,04/08/2013 11:48:05 AM,04/08/2013 11:51:47 AM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Fire,04/08/2013 11:57:06 AM,0 Block of CHURCH ST,SF,94114,B02,6,3525,3,3,3,false,Alarm,1,TRUCK,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",130980198-T05 +140600320,B10,14020375,Outside Fire,03/01/2014,03/01/2014,03/01/2014 06:45:03 PM,03/01/2014 06:46:29 PM,03/01/2014 06:47:42 PM,03/01/2014 06:48:47 PM,03/01/2014 06:52:23 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Fire,03/01/2014 07:11:25 PM,2200 Block of MCKINNON AVE,SF,94124,B10,9,6414,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7426900432691, -122.401170881941)",140600320-B10 +113060233,E03,11101690,Alarms,11/02/2011,11/02/2011,11/02/2011 02:25:42 PM,11/02/2011 02:26:16 PM,11/02/2011 02:26:28 PM,11/02/2011 02:27:44 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/02/2011 02:30:50 PM,300 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,2,1,3,Tenderloin,"(37.7873084363522, -122.409061356434)",113060233-E03 +160400059,KM07,16015846,Medical Incident,02/09/2016,02/08/2016,02/09/2016 12:35:32 AM,02/09/2016 12:36:19 AM,02/09/2016 12:36:46 AM,02/09/2016 12:37:19 AM,02/09/2016 12:41:00 AM,02/09/2016 01:05:27 AM,02/09/2016 01:09:41 AM,Code 3 Transport,02/09/2016 01:55:02 AM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",160400059-KM07 +121600061,E10,12052825,Medical Incident,06/08/2012,06/07/2012,06/08/2012 06:51:14 AM,06/08/2012 06:51:45 AM,06/08/2012 06:52:08 AM,06/08/2012 06:55:12 AM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/08/2012 06:55:42 AM,200 Block of 21ST AVE,SF,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7831476181283, -122.480588567897)",121600061-E10 +130610164,55,13020446,Medical Incident,03/02/2013,03/02/2013,03/02/2013 11:35:56 AM,03/02/2013 11:40:00 AM,03/02/2013 11:40:30 AM,03/02/2013 11:40:44 AM,03/02/2013 12:02:56 PM,03/02/2013 12:16:24 PM,03/02/2013 12:37:34 PM,Code 2 Transport,03/02/2013 01:06:29 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",130610164-55 +122470042,E05,12081592,Medical Incident,09/03/2012,09/02/2012,09/03/2012 03:43:04 AM,09/03/2012 03:44:35 AM,09/03/2012 03:45:01 AM,09/03/2012 03:46:30 AM,09/03/2012 03:48:34 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 03:53:55 AM,GEARY BL/FILLMORE ST,SF,94115,B04,5,3541,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",122470042-E05 +113140186,T01,11104332,Alarms,11/10/2011,11/10/2011,11/10/2011 01:25:59 PM,11/10/2011 01:27:15 PM,11/10/2011 01:27:51 PM,11/10/2011 01:29:46 PM,11/10/2011 01:38:13 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 01:38:16 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,3,3,false,,1,TRUCK,3,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",113140186-T01 +160582604,74,16023204,Medical Incident,02/27/2016,02/27/2016,02/27/2016 05:02:17 PM,02/27/2016 05:03:50 PM,02/27/2016 05:03:58 PM,02/27/2016 05:04:43 PM,02/27/2016 05:12:22 PM,02/27/2016 05:32:07 PM,02/27/2016 05:37:33 PM,Code 2 Transport,02/27/2016 06:12:21 PM,800 Block of JUDAH ST,San Francisco,94122,B08,22,7347,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7620593970413, -122.471008400176)",160582604-74 +110910065,E10,11030049,Alarms,04/01/2011,03/31/2011,04/01/2011 05:00:01 AM,04/01/2011 05:03:14 AM,04/01/2011 05:03:27 AM,04/01/2011 05:04:42 AM,04/01/2011 05:06:55 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 05:20:48 AM,2900 Block of JACKSON ST,SF,94115,B04,10,4231,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7912587185112, -122.443641577281)",110910065-E10 +120130170,KM10,12004432,Medical Incident,01/13/2012,01/13/2012,01/13/2012 01:29:55 PM,01/13/2012 01:31:46 PM,01/13/2012 01:32:20 PM,01/13/2012 01:33:40 PM,01/13/2012 01:36:28 PM,01/13/2012 01:49:56 PM,01/13/2012 02:03:31 PM,Code 2 Transport,01/13/2012 02:51:05 PM,0 Block of 6TH AVE,SF,94118,B07,31,7126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Inner Richmond,"(37.7875271472845, -122.464686124564)",120130170-KM10 +113070246,E01,11102040,Medical Incident,11/03/2011,11/03/2011,11/03/2011 03:21:14 PM,11/03/2011 03:21:55 PM,11/03/2011 03:22:17 PM,11/03/2011 03:23:11 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/03/2011 03:26:02 PM,700 Block of MISSION ST,SF,94103,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",113070246-E01 +131580337,AM18,13053745,Medical Incident,06/07/2013,06/07/2013,06/07/2013 06:26:56 PM,06/07/2013 06:28:04 PM,06/07/2013 07:18:56 PM,04/25/2016 01:52:24 PM,06/07/2013 07:35:37 PM,06/07/2013 07:44:04 PM,06/07/2013 08:05:13 PM,Code 2 Transport,06/07/2013 08:25:49 PM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",131580337-AM18 +160911832,53,16036080,Medical Incident,03/31/2016,03/31/2016,03/31/2016 01:30:03 PM,03/31/2016 01:30:55 PM,03/31/2016 01:31:47 PM,03/31/2016 01:31:59 PM,03/31/2016 01:39:46 PM,03/31/2016 01:58:26 PM,03/31/2016 02:35:16 PM,Code 2 Transport,03/31/2016 03:15:30 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",160911832-53 +160140305,60,16005425,Medical Incident,01/14/2016,01/13/2016,01/14/2016 03:39:54 AM,01/14/2016 03:44:12 AM,01/14/2016 03:45:26 AM,01/14/2016 03:46:56 AM,01/14/2016 03:50:14 AM,01/14/2016 04:07:47 AM,01/14/2016 04:11:43 AM,Code 2 Transport,01/14/2016 04:51:44 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160140305-60 +160013807,AM24,16000530,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:28:11 PM,01/01/2016 10:29:26 PM,01/01/2016 10:29:59 PM,01/01/2016 10:30:51 PM,01/01/2016 10:34:50 PM,01/01/2016 10:46:17 PM,01/01/2016 11:11:53 PM,Code 2 Transport,01/01/2016 11:38:23 PM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",160013807-AM24 +133250275,82,13110456,Medical Incident,11/21/2013,11/21/2013,11/21/2013 04:54:54 PM,11/21/2013 04:56:38 PM,11/21/2013 04:57:00 PM,11/21/2013 04:57:37 PM,11/21/2013 05:03:52 PM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Patient Declined Transport,11/21/2013 05:13:13 PM,1600 Block of 46TH AVE,SF,94122,B08,23,7661,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7557590650712, -122.505669034322)",133250275-82 +160900320,AM22,16035567,Medical Incident,03/30/2016,03/29/2016,03/30/2016 03:27:42 AM,03/30/2016 03:30:13 AM,03/30/2016 03:30:23 AM,03/30/2016 03:31:08 AM,03/30/2016 03:35:43 AM,03/30/2016 04:12:59 AM,03/30/2016 04:13:07 AM,Code 2 Transport,03/30/2016 04:45:50 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160900320-AM22 +140770367,94,14026227,Medical Incident,03/18/2014,03/18/2014,03/18/2014 10:25:54 PM,03/18/2014 10:26:38 PM,03/18/2014 10:29:24 PM,03/18/2014 10:29:24 PM,03/18/2014 10:30:13 PM,03/18/2014 10:44:19 PM,03/18/2014 10:57:09 PM,Code 2 Transport,03/18/2014 11:18:56 PM,0 Block of CASHMERE ST,SAN FRANCISCO,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",140770367-94 +113560111,T16,11118136,Alarms,12/22/2011,12/22/2011,12/22/2011 09:29:02 AM,12/22/2011 09:30:50 AM,12/22/2011 09:31:00 AM,12/22/2011 09:32:27 AM,12/22/2011 09:39:08 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/22/2011 09:40:24 AM,2600 Block of DIVISADERO ST,SF,94115,B04,16,4164,3,3,3,false,,1,TRUCK,3,4,2,Pacific Heights,"(37.7939198042244, -122.441548284941)",113560111-T16 +140830298,96,14028092,Medical Incident,03/24/2014,03/24/2014,03/24/2014 07:56:34 PM,03/24/2014 07:57:19 PM,03/24/2014 07:57:50 PM,03/24/2014 07:58:21 PM,03/24/2014 08:02:39 PM,03/24/2014 08:18:44 PM,03/24/2014 08:46:19 PM,Code 2 Transport,03/24/2014 09:13:19 PM,0 Block of PERRY ST,SAN FRANCISCO,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",140830298-96 +113530195,E31,11117204,Medical Incident,12/19/2011,12/19/2011,12/19/2011 01:42:00 PM,12/19/2011 01:43:09 PM,12/19/2011 01:43:15 PM,12/19/2011 01:44:00 PM,12/19/2011 01:46:19 PM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 01:56:55 PM,900 Block of CLEMENT ST,SF,94118,B07,31,7141,3,3,3,false,,1,ENGINE,1,7,1,Inner Richmond,"(37.7826715765978, -122.469233229833)",113530195-E31 +113290169,E07,11109157,Medical Incident,11/25/2011,11/25/2011,11/25/2011 03:33:29 PM,11/25/2011 03:34:24 PM,11/25/2011 03:34:50 PM,11/25/2011 03:35:59 PM,11/25/2011 03:36:53 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 04:02:36 PM,2300 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",113290169-E07 +140160239,E28,14005514,Medical Incident,01/16/2014,01/16/2014,01/16/2014 02:42:40 PM,01/16/2014 02:44:15 PM,01/16/2014 02:44:49 PM,01/16/2014 02:46:20 PM,01/16/2014 02:48:16 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/16/2014 03:21:15 PM,200 Block of CHESTNUT ST,SF,94133,B01,28,1254,,3,3,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8044102456887, -122.407535183574)",140160239-E28 +122110019,55,12069948,Medical Incident,07/29/2012,07/28/2012,07/29/2012 01:36:26 AM,07/29/2012 01:39:38 AM,07/29/2012 01:39:45 AM,07/29/2012 01:39:57 AM,07/29/2012 01:47:45 AM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Patient Declined Transport,07/29/2012 01:56:06 AM,600 Block of SPRUCE ST,SF,94118,B05,10,4374,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.782894976739, -122.453342258883)",122110019-55 +111100131,E03,11036269,Medical Incident,04/20/2011,04/20/2011,04/20/2011 09:58:26 AM,04/20/2011 09:58:45 AM,04/20/2011 09:59:21 AM,04/20/2011 09:59:47 AM,04/20/2011 10:04:57 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 10:13:16 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",111100131-E03 +123560301,E03,12119250,Medical Incident,12/21/2012,12/21/2012,12/21/2012 06:07:40 PM,12/21/2012 06:08:45 PM,12/21/2012 06:09:41 PM,12/21/2012 06:10:42 PM,12/21/2012 06:11:50 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 06:24:46 PM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",123560301-E03 +130930275,KM01,13031216,Medical Incident,04/03/2013,04/03/2013,04/03/2013 05:24:44 PM,04/03/2013 05:26:50 PM,04/03/2013 05:28:14 PM,04/03/2013 05:29:52 PM,04/03/2013 05:32:18 PM,04/03/2013 06:00:02 PM,04/03/2013 06:18:52 PM,Code 3 Transport,04/03/2013 06:41:12 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",130930275-KM01 +102670035,E05,10084372,Alarms,09/24/2010,09/23/2010,09/24/2010 03:14:18 AM,09/24/2010 03:15:23 AM,09/24/2010 03:15:49 AM,09/24/2010 03:17:19 AM,09/24/2010 03:18:58 AM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/24/2010 03:23:07 AM,1000 Block of EDDY ST,SF,94109,B02,5,3262,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",102670035-E05 +103520235,61,10113009,Medical Incident,12/18/2010,12/18/2010,12/18/2010 02:48:52 PM,12/18/2010 02:50:49 PM,12/18/2010 02:51:13 PM,12/18/2010 02:51:33 PM,12/18/2010 02:57:32 PM,12/18/2010 03:11:29 PM,12/18/2010 03:32:25 PM,Code 2 Transport,12/18/2010 03:58:33 PM,COLUMBUS AV/GREENWICH ST,SF,94133,B01,28,1423,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.8019306357162, -122.412541279347)",103520235-61 +130240158,E05,13008266,Medical Incident,01/24/2013,01/24/2013,01/24/2013 10:54:30 AM,01/24/2013 10:56:19 AM,01/24/2013 10:57:22 AM,01/24/2013 11:00:09 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 11:23:53 AM,0 Block of QUICKSTEP LN,SF,94115,B04,5,3365,3,1,2,true,Non Life-threatening,1,ENGINE,2,2,5,Western Addition,"(37.7832767200998, -122.428138545877)",130240158-E05 +132380164,B02,13080270,Medical Incident,08/26/2013,08/26/2013,08/26/2013 11:10:09 AM,08/26/2013 11:11:42 AM,08/26/2013 11:12:25 AM,08/26/2013 11:13:19 AM,08/26/2013 11:16:07 AM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Other,08/26/2013 11:16:20 AM,300 Block of TURK ST,SF,94102,B02,3,1554,A,A,2,false,Potentially Life-Threatening,1,CHIEF,2,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",132380164-B02 +160283401,63,16011220,Medical Incident,01/28/2016,01/28/2016,01/28/2016 07:27:37 PM,01/28/2016 07:29:10 PM,01/28/2016 07:29:46 PM,01/28/2016 07:29:59 PM,01/28/2016 07:40:54 PM,01/28/2016 08:02:36 PM,01/28/2016 08:11:17 PM,Code 2 Transport,01/28/2016 08:45:28 PM,200 Block of SACRAMENTO ST,San Francisco,94111,B01,13,1141,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7943049802149, -122.398372284213)",160283401-63 +160863760,AM14,16034377,Medical Incident,03/26/2016,03/26/2016,03/26/2016 10:19:46 PM,03/26/2016 10:21:44 PM,03/26/2016 10:22:10 PM,03/26/2016 10:23:09 PM,03/26/2016 10:29:37 PM,03/26/2016 10:41:30 PM,03/26/2016 10:50:33 PM,Code 3 Transport,03/26/2016 11:44:10 PM,600 Block of FILBERT ST,San Francisco,94133,B01,28,1351,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8013244963183, -122.410204322135)",160863760-AM14 +132490210,82,13084046,Traffic Collision,09/06/2013,09/06/2013,09/06/2013 02:12:55 PM,09/06/2013 02:12:55 PM,09/06/2013 02:13:26 PM,09/06/2013 02:13:58 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/06/2013 02:21:19 PM,FELL ST/MASONIC AV,SF,94117,B05,21,4356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",132490210-82 +110490018,82,11016055,Medical Incident,02/18/2011,02/17/2011,02/18/2011 01:08:31 AM,02/18/2011 01:10:49 AM,02/18/2011 01:18:23 AM,02/18/2011 01:18:47 AM,02/18/2011 01:33:22 AM,02/18/2011 01:53:11 AM,02/18/2011 02:05:00 AM,Code 2 Transport,02/18/2011 02:48:21 AM,0 Block of KAREN CT,SF,94134,B10,42,6331,2,2,2,true,,1,MEDIC,1,10,9,Portola,"(37.7234814213797, -122.4068026167)",110490018-82 +122420201,E09,12080058,Medical Incident,08/29/2012,08/29/2012,08/29/2012 01:55:23 PM,08/29/2012 01:55:42 PM,08/29/2012 01:55:59 PM,08/29/2012 01:57:32 PM,08/29/2012 01:56:49 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/29/2012 02:21:39 PM,1500 Block of TREAT AVE,SF,94110,B06,9,5665,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.74569101483, -122.412507178665)",122420201-E09 +160092500,66,16003718,Medical Incident,01/09/2016,01/09/2016,01/09/2016 04:55:16 PM,01/09/2016 04:55:46 PM,01/09/2016 04:56:01 PM,01/09/2016 04:56:16 PM,01/09/2016 05:09:20 PM,01/09/2016 05:09:27 PM,01/09/2016 05:22:33 PM,Code 2 Transport,01/09/2016 06:13:56 PM,500 Block of 3RD ST,San Francisco,94107,B03,8,2173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7805661978095, -122.394799124177)",160092500-66 +130590332,E15,13019936,Medical Incident,02/28/2013,02/28/2013,02/28/2013 08:46:16 PM,02/28/2013 08:47:05 PM,02/28/2013 08:47:28 PM,02/28/2013 08:48:55 PM,02/28/2013 08:51:50 PM,04/25/2016 01:54:04 PM,04/25/2016 01:54:04 PM,Other,02/28/2013 09:06:20 PM,300 Block of COLON AVE,SF,94127,B09,15,8522,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7318075852003, -122.456786902063)",130590332-E15 +103200185,87,10102558,Medical Incident,11/16/2010,11/16/2010,11/16/2010 12:22:58 PM,11/16/2010 12:23:26 PM,11/16/2010 12:23:42 PM,11/16/2010 12:25:43 PM,11/16/2010 12:29:40 PM,11/16/2010 12:50:02 PM,11/16/2010 12:58:51 PM,Code 2 Transport,11/16/2010 01:47:32 PM,200 Block of HARBOR RD,SF,94124,B10,17,6627,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",103200185-87 +160840740,KM08,16033279,Medical Incident,03/24/2016,03/24/2016,03/24/2016 08:07:08 AM,03/24/2016 08:09:07 AM,03/24/2016 08:09:53 AM,03/24/2016 08:11:28 AM,03/24/2016 08:31:28 AM,03/24/2016 08:45:18 AM,03/24/2016 09:07:22 AM,Code 2 Transport,03/24/2016 09:46:05 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160840740-KM08 +122540236,E21,12084008,Structure Fire,09/10/2012,09/10/2012,09/10/2012 03:53:48 PM,09/10/2012 03:53:49 PM,09/10/2012 03:53:58 PM,09/10/2012 03:54:17 PM,09/10/2012 03:56:32 PM,04/25/2016 01:56:50 PM,04/25/2016 01:56:50 PM,Other,09/10/2012 04:04:54 PM,400 Block of STANYAN ST,SF,94117,B05,21,455,3,3,3,false,Alarm,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",122540236-E21 +131280042,KM07,13043161,Medical Incident,05/08/2013,05/07/2013,05/08/2013 03:36:44 AM,05/08/2013 03:38:32 AM,05/08/2013 03:38:49 AM,05/08/2013 03:39:52 AM,05/08/2013 03:41:52 AM,05/08/2013 04:02:23 AM,05/08/2013 04:05:24 AM,Code 2 Transport,05/08/2013 04:33:15 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",131280042-KM07 +110130354,E38,11004465,Vehicle Fire,01/13/2011,01/13/2011,01/13/2011 08:25:02 PM,01/13/2011 08:25:57 PM,01/13/2011 08:26:05 PM,01/13/2011 08:26:46 PM,01/13/2011 08:27:57 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Fire,01/13/2011 08:31:51 PM,CALIFORNIA ST/LAGUNA ST,SF,94109,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7895337395648, -122.428905310397)",110130354-E38 +160293866,68,16011603,Medical Incident,01/29/2016,01/29/2016,01/29/2016 11:15:38 PM,01/29/2016 11:18:49 PM,01/29/2016 11:19:11 PM,01/29/2016 11:19:20 PM,01/29/2016 11:33:35 PM,01/29/2016 11:46:59 PM,01/30/2016 12:03:07 AM,Code 2 Transport,01/30/2016 12:43:28 AM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",160293866-68 +120280048,E33,12009292,Medical Incident,01/28/2012,01/27/2012,01/28/2012 03:00:26 AM,01/28/2012 03:01:20 AM,01/28/2012 03:01:40 AM,01/28/2012 03:06:32 AM,01/28/2012 03:07:49 AM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/28/2012 03:14:04 AM,200 Block of LOBOS ST,SF,94112,B09,33,8415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7149510870481, -122.460827575743)",120280048-E33 +121510040,E03,12049926,Medical Incident,05/30/2012,05/29/2012,05/30/2012 03:57:55 AM,05/30/2012 03:58:39 AM,05/30/2012 03:59:00 AM,05/30/2012 04:00:41 AM,05/30/2012 04:02:52 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/30/2012 04:13:03 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",121510040-E03 +132230241,B08,13075368,Outside Fire,08/11/2013,08/11/2013,08/11/2013 03:49:45 PM,08/11/2013 03:51:28 PM,08/11/2013 03:52:19 PM,08/11/2013 03:53:26 PM,08/11/2013 03:57:29 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 04:26:45 PM,25TH AV/MARTIN LUTHER KING DR,SF,94122,B08,22,7452,3,3,3,false,Fire,1,CHIEF,2,7,1,Golden Gate Park,"(37.76677018548, -122.482371855409)",132230241-B08 +132820388,RC1,13096136,Medical Incident,10/09/2013,10/09/2013,10/09/2013 09:38:07 PM,10/09/2013 09:39:16 PM,10/09/2013 09:39:28 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/09/2013 09:46:17 PM,200 Block of JONES ST,SF,94102,B03,1,1456,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",132820388-RC1 +111930142,E02,11063684,Medical Incident,07/12/2011,07/12/2011,07/12/2011 11:13:26 AM,07/12/2011 11:14:23 AM,07/12/2011 11:16:16 AM,07/12/2011 11:17:42 AM,07/12/2011 11:20:10 AM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,No Merit,07/12/2011 11:29:12 AM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8070220097095, -122.418095295202)",111930142-E02 +110210341,E07,11007091,Medical Incident,01/21/2011,01/21/2011,01/21/2011 10:23:32 PM,01/21/2011 10:24:23 PM,01/21/2011 10:25:17 PM,04/25/2016 02:06:29 PM,01/21/2011 10:26:39 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/21/2011 10:29:44 PM,700 Block of VALENCIA ST,SF,94110,B06,7,5434,3,3,3,true,,1,ENGINE,2,6,8,Mission,"(37.760896938598, -122.421570792932)",110210341-E07 +140290321,RS1,14010006,Structure Fire,01/29/2014,01/29/2014,01/29/2014 07:30:54 PM,01/29/2014 07:31:37 PM,01/29/2014 07:32:14 PM,01/29/2014 07:33:54 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/29/2014 07:35:52 PM,600 Block of 41ST AVE,SF,94121,B07,34,7263,3,3,3,false,Alarm,1,RESCUE SQUAD,10,7,1,Outer Richmond,"(37.7764556121722, -122.501596303357)",140290321-RS1 +160461287,82,16018466,Traffic Collision,02/15/2016,02/15/2016,02/15/2016 11:08:53 AM,02/15/2016 11:08:53 AM,02/15/2016 11:10:45 AM,02/15/2016 11:11:12 AM,02/15/2016 11:13:52 AM,02/15/2016 11:33:07 AM,02/15/2016 11:40:47 AM,Code 3 Transport,02/15/2016 12:29:27 PM,ELLINGTON AV/MOUNT VERNON AV,San Francisco,94112,B09,43,6176,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7150420552704, -122.443255963332)",160461287-82 +140900097,T16,14030224,Structure Fire,03/31/2014,03/31/2014,03/31/2014 08:51:33 AM,03/31/2014 08:54:36 AM,03/31/2014 08:55:15 AM,03/31/2014 08:56:18 AM,03/31/2014 09:01:05 AM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Fire,03/31/2014 09:12:50 AM,2600 Block of GREEN ST,SAN FRANCISCO,94123,B04,16,4225,3,3,3,false,Alarm,1,TRUCK,5,4,2,Marina,"(37.7952685164754, -122.442748791929)",140900097-T16 +111460157,T15,11048460,Structure Fire,05/26/2011,05/26/2011,05/26/2011 12:53:23 PM,05/26/2011 12:54:03 PM,05/26/2011 12:54:21 PM,05/26/2011 12:55:53 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,05/26/2011 12:59:15 PM,5700 Block of MISSION ST,SF,94112,B09,33,6212,3,3,3,false,,1,TRUCK,9,9,11,Outer Mission,"(37.7098635927288, -122.449729173956)",111460157-T15 +120570061,T14,12018703,Structure Fire,02/26/2012,02/25/2012,02/26/2012 03:20:35 AM,02/26/2012 03:20:35 AM,02/26/2012 03:20:41 AM,02/26/2012 03:22:40 AM,02/26/2012 03:23:38 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/26/2012 03:23:42 AM,27TH AV/ANZA ST,SF,94121,B07,14,7222,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7780687428375, -122.486737519689)",120570061-T14 +140920317,B01,14031022,Alarms,04/02/2014,04/02/2014,04/02/2014 05:49:15 PM,04/02/2014 05:50:15 PM,04/02/2014 05:50:30 PM,04/02/2014 05:51:26 PM,04/02/2014 05:53:39 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,Fire,04/02/2014 06:26:50 PM,800 Block of KEARNY ST,SAN FRANCISCO,94111,B01,13,1245,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.795777854883, -122.404981817889)",140920317-B01 +111860390,67,11061642,Medical Incident,07/05/2011,07/05/2011,07/05/2011 09:18:41 PM,07/05/2011 09:19:06 PM,07/05/2011 09:19:57 PM,07/05/2011 09:20:06 PM,07/05/2011 09:24:28 PM,07/05/2011 09:39:25 PM,07/05/2011 09:48:51 PM,Code 2 Transport,07/05/2011 10:11:54 PM,1800 Block of 26TH ST,SF,94107,B10,37,2615,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.751171434556, -122.397379770345)",111860390-67 +91300238,PIO2,9038514,,05/10/2009,05/10/2009,05/10/2009 04:19:51 PM,05/10/2009 04:24:39 PM,05/10/2009 04:25:08 PM,04/25/2016 03:28:54 PM,04/25/2016 03:28:54 PM,04/25/2016 03:28:54 PM,04/25/2016 03:28:54 PM,Other,05/10/2009 05:09:59 PM,0 Block of HARDING RD,SF,94132,B08,19,8713,E,E,3,false,,1,ADMIN,0,8,7,Lakeshore,"(37.7248174091742, -122.497764890771)",091300238-PIO2 +133640260,E40,13123663,Structure Fire,12/30/2013,12/30/2013,12/30/2013 04:18:53 PM,12/30/2013 04:19:15 PM,12/30/2013 04:19:30 PM,12/30/2013 04:20:37 PM,12/30/2013 04:24:15 PM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,Other,12/30/2013 04:27:00 PM,2200 Block of VICENTE ST,SF,94116,B08,18,7547,3,3,3,false,Alarm,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7385835946707, -122.490974207999)",133640260-E40 +111210407,73,11040142,Medical Incident,05/01/2011,05/01/2011,05/01/2011 09:39:58 PM,05/01/2011 09:47:25 PM,05/01/2011 09:48:17 PM,05/01/2011 09:48:25 PM,05/01/2011 10:03:02 PM,05/01/2011 10:12:14 PM,05/01/2011 10:18:10 PM,Code 2 Transport,05/01/2011 10:38:22 PM,0 Block of FRONT ST,SF,94111,B01,13,1136,1,1,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7920192720524, -122.39857867407)",111210407-73 +160160097,KM03,16006230,Medical Incident,01/16/2016,01/15/2016,01/16/2016 12:45:59 AM,01/16/2016 12:45:59 AM,01/16/2016 12:46:19 AM,01/16/2016 12:48:30 AM,01/16/2016 12:54:18 AM,01/16/2016 01:15:01 AM,01/16/2016 01:31:20 AM,Code 2 Transport,01/16/2016 02:22:22 AM,0 Block of SERRANO DR,San Francisco,94132,B08,19,8426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7199994990403, -122.475913774808)",160160097-KM03 +121720125,E31,12057061,Medical Incident,06/20/2012,06/20/2012,06/20/2012 10:26:16 AM,06/20/2012 10:27:05 AM,06/20/2012 10:28:47 AM,06/20/2012 10:30:59 AM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,Other,06/20/2012 10:32:08 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Non Life-threatening,1,ENGINE,4,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",121720125-E31 +120610364,T08,12020210,Structure Fire,03/01/2012,03/01/2012,03/01/2012 10:46:36 PM,03/01/2012 10:47:32 PM,03/01/2012 10:47:47 PM,03/01/2012 10:49:15 PM,03/01/2012 10:56:04 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Fire,03/01/2012 11:03:56 PM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,false,Fire,1,TRUCK,7,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",120610364-T08 +112220059,E48,11073232,Alarms,08/10/2011,08/09/2011,08/10/2011 07:10:10 AM,08/10/2011 07:10:57 AM,08/10/2011 07:11:15 AM,08/10/2011 07:12:29 AM,08/10/2011 07:15:30 AM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 07:25:25 AM,200 Block of CALIFORNIA AVE,TI,94130,B03,48,2931,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8185164804515, -122.369756931422)",112220059-E48 +111680048,T12,11055291,Structure Fire,06/17/2011,06/16/2011,06/17/2011 04:31:34 AM,06/17/2011 04:31:34 AM,06/17/2011 04:31:46 AM,06/17/2011 04:33:24 AM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 04:37:23 AM,9TH AV/NORIEGA ST,SF,94122,B08,22,7336,3,3,3,false,,1,TRUCK,2,8,7,Inner Sunset,"(37.7547092825423, -122.465662091491)",111680048-T12 +160492993,71,16019827,Medical Incident,02/18/2016,02/18/2016,02/18/2016 05:57:05 PM,02/18/2016 05:58:53 PM,02/18/2016 05:59:03 PM,02/18/2016 05:59:12 PM,02/18/2016 06:01:30 PM,02/18/2016 06:08:05 PM,02/18/2016 06:31:41 PM,Code 2 Transport,02/18/2016 07:06:36 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160492993-71 +160070409,71,16002697,Medical Incident,01/07/2016,01/06/2016,01/07/2016 05:46:53 AM,01/07/2016 05:46:53 AM,01/07/2016 05:47:34 AM,01/07/2016 05:47:53 AM,01/07/2016 05:51:35 AM,01/07/2016 06:03:07 AM,01/07/2016 06:09:47 AM,Code 2 Transport,01/07/2016 06:48:20 AM,1100 Block of STANYAN ST,San Francisco,94117,B07,12,5261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",160070409-71 +113580359,58,11119184,Medical Incident,12/24/2011,12/24/2011,12/24/2011 10:05:37 PM,12/24/2011 10:06:29 PM,12/24/2011 10:06:40 PM,12/24/2011 10:06:51 PM,12/24/2011 10:16:13 PM,12/24/2011 10:28:40 PM,12/24/2011 11:05:51 PM,Code 2 Transport,12/24/2011 11:29:01 PM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,3,2,2,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",113580359-58 +140730314,94,14024754,Medical Incident,03/14/2014,03/14/2014,03/14/2014 05:58:58 PM,03/14/2014 06:01:12 PM,03/14/2014 06:15:34 PM,03/14/2014 06:15:41 PM,03/14/2014 06:47:01 PM,03/14/2014 06:59:31 PM,03/14/2014 07:15:14 PM,Code 2 Transport,03/14/2014 07:36:18 PM,48TH AV/ORTEGA ST,SAN FRANCISCO,94116,B08,23,7725,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.751003286283, -122.507416228519)",140730314-94 +133380083,E42,13114467,Structure Fire,12/04/2013,12/04/2013,12/04/2013 09:03:08 AM,12/04/2013 09:03:55 AM,12/04/2013 09:08:02 AM,12/04/2013 09:09:27 AM,12/04/2013 09:14:23 AM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 09:28:20 AM,100 Block of MADRID ST,SF,94112,B09,43,6132,3,3,3,true,Fire,1,ENGINE,9,9,11,Excelsior,"(37.7270917743498, -122.428757548678)",133380083-E42 +160563484,76,16022524,Medical Incident,02/25/2016,02/25/2016,02/25/2016 07:55:33 PM,02/25/2016 07:56:07 PM,02/25/2016 07:56:19 PM,02/25/2016 07:56:26 PM,02/25/2016 08:12:35 PM,02/25/2016 08:22:35 PM,02/25/2016 08:29:22 PM,Code 2 Transport,02/25/2016 08:44:08 PM,KING ST/2ND ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",160563484-76 +140920222,E17,14030941,Medical Incident,04/02/2014,04/02/2014,04/02/2014 01:36:24 PM,04/02/2014 01:37:59 PM,04/02/2014 01:38:07 PM,04/02/2014 01:39:25 PM,04/02/2014 01:41:41 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,Code 2 Transport,04/02/2014 01:53:34 PM,1600 Block of NEWCOMB AVE,SAN FRANCISCO,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7359839996322, -122.390991750862)",140920222-E17 +160380685,52,16015093,Medical Incident,02/07/2016,02/06/2016,02/07/2016 04:34:34 AM,02/07/2016 04:36:19 AM,02/07/2016 04:38:48 AM,02/07/2016 04:38:48 AM,02/07/2016 04:42:05 AM,02/07/2016 04:52:14 AM,02/07/2016 05:01:42 AM,Code 2 Transport,02/07/2016 05:49:59 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160380685-52 +160750774,71,16029623,Medical Incident,03/15/2016,03/15/2016,03/15/2016 08:38:40 AM,03/15/2016 08:39:10 AM,03/15/2016 08:39:19 AM,03/15/2016 08:39:24 AM,03/15/2016 08:43:34 AM,03/15/2016 08:59:52 AM,03/15/2016 09:04:33 AM,Code 2 Transport,03/15/2016 09:29:58 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160750774-71 +132760034,E06,13093616,Medical Incident,10/03/2013,10/02/2013,10/03/2013 03:11:02 AM,10/03/2013 03:12:01 AM,10/03/2013 03:12:29 AM,10/03/2013 03:14:31 AM,10/03/2013 03:16:17 AM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,Other,10/03/2013 03:19:03 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",132760034-E06 +110460267,E03,11015299,Structure Fire,02/15/2011,02/15/2011,02/15/2011 05:14:03 PM,02/15/2011 05:14:04 PM,02/15/2011 05:14:14 PM,02/15/2011 05:15:05 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 05:15:25 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",110460267-E03 +160153122,86,16006108,Medical Incident,01/15/2016,01/15/2016,01/15/2016 06:23:36 PM,01/15/2016 06:25:17 PM,01/15/2016 06:27:09 PM,01/15/2016 06:27:17 PM,01/15/2016 06:44:29 PM,01/15/2016 06:57:51 PM,01/15/2016 07:13:58 PM,Code 2 Transport,01/15/2016 07:56:09 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160153122-86 +160424039,88,16017092,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:55:44 PM,02/12/2016 12:01:00 AM,02/12/2016 12:02:34 AM,02/12/2016 12:02:46 AM,02/12/2016 12:14:11 AM,02/12/2016 12:24:32 AM,02/12/2016 12:39:08 AM,Code 2 Transport,02/12/2016 01:14:51 AM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,2,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",160424039-88 +130750222,94,13025064,Outside Fire,03/16/2013,03/16/2013,03/16/2013 03:35:34 PM,03/16/2013 03:37:22 PM,03/16/2013 03:39:00 PM,03/16/2013 03:39:26 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 03:39:58 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Fire,1,MEDIC,12,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",130750222-94 +113000394,99,11099682,Medical Incident,10/27/2011,10/27/2011,10/27/2011 11:00:25 PM,10/27/2011 11:01:13 PM,10/27/2011 11:01:23 PM,10/27/2011 11:01:50 PM,10/27/2011 11:02:47 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Patient Declined Transport,10/27/2011 11:24:38 PM,400 Block of GEARY ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",113000394-99 +112260034,94,11074549,Medical Incident,08/14/2011,08/13/2011,08/14/2011 02:27:54 AM,08/14/2011 02:29:09 AM,08/14/2011 02:29:15 AM,08/14/2011 02:29:29 AM,08/14/2011 02:31:21 AM,08/14/2011 03:05:55 AM,08/14/2011 03:19:55 AM,Code 2 Transport,08/14/2011 03:57:32 AM,VALENCIA ST/16TH ST,SF,94103,B02,6,5226,3,3,3,true,,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",112260034-94 +112330154,E01,11076913,Medical Incident,08/21/2011,08/21/2011,08/21/2011 11:15:03 AM,08/21/2011 11:15:41 AM,08/21/2011 11:16:08 AM,08/21/2011 11:19:14 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 11:21:54 AM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,3,2,6,South of Market,"(37.7795310846627, -122.413542548681)",112330154-E01 +110790249,87,11026092,Medical Incident,03/20/2011,03/20/2011,03/20/2011 03:10:24 PM,03/20/2011 03:11:00 PM,03/20/2011 03:11:53 PM,03/20/2011 03:12:00 PM,03/20/2011 03:14:31 PM,03/20/2011 03:55:48 PM,03/20/2011 04:11:08 PM,Code 2 Transport,03/20/2011 04:46:54 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",110790249-87 +120840024,89,12027766,Medical Incident,03/24/2012,03/23/2012,03/24/2012 01:07:49 AM,03/24/2012 01:07:49 AM,03/24/2012 01:08:36 AM,03/24/2012 01:11:01 AM,03/24/2012 01:14:07 AM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Patient Declined Transport,03/24/2012 01:34:13 AM,1200 Block of 2ND AVE,SF,94122,B05,12,7324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.76483812796, -122.458778713748)",120840024-89 +112610022,E08,11086002,Other,09/18/2011,09/17/2011,09/18/2011 01:22:32 AM,09/18/2011 01:22:36 AM,09/18/2011 01:22:41 AM,09/18/2011 01:24:56 AM,09/18/2011 01:26:09 AM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/18/2011 01:29:21 AM,400 Block of BRANNAN ST,SF,94107,B03,8,2223,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.778772691441, -122.395868429958)",112610022-E08 +113400337,E02,11112819,Alarms,12/06/2011,12/06/2011,12/06/2011 06:57:56 PM,12/06/2011 06:59:07 PM,12/06/2011 06:59:19 PM,12/06/2011 07:00:12 PM,12/06/2011 07:04:09 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/06/2011 07:10:13 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",113400337-E02 +112680333,72,11088716,Medical Incident,09/25/2011,09/25/2011,09/25/2011 08:11:45 PM,09/25/2011 08:12:30 PM,09/25/2011 08:12:42 PM,09/25/2011 08:12:58 PM,09/25/2011 08:16:42 PM,09/25/2011 08:38:39 PM,09/25/2011 08:44:04 PM,Code 2 Transport,09/25/2011 09:05:24 PM,300 Block of LAGUNA HONDA BLVD,SF,94116,B08,20,8649,3,2,2,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",112680333-72 +140540214,KM14,14018313,Medical Incident,02/23/2014,02/23/2014,02/23/2014 04:22:46 PM,02/23/2014 04:25:05 PM,02/23/2014 04:27:16 PM,02/23/2014 04:27:44 PM,02/23/2014 04:29:51 PM,02/23/2014 04:52:27 PM,02/23/2014 05:00:08 PM,Code 2 Transport,02/23/2014 05:23:21 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",140540214-KM14 +130940386,E05,13031631,Medical Incident,04/04/2013,04/04/2013,04/04/2013 10:28:42 PM,04/04/2013 10:30:59 PM,04/04/2013 10:32:06 PM,04/04/2013 10:33:15 PM,04/04/2013 10:35:52 PM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/04/2013 10:54:31 PM,600 Block of DIVISADERO ST,SF,94117,B05,21,4146,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Hayes Valley,"(37.775474331091, -122.437778722849)",130940386-E05 +160613676,82,16024505,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:55:07 PM,03/01/2016 10:55:07 PM,03/01/2016 10:55:53 PM,03/01/2016 10:56:24 PM,03/01/2016 11:09:08 PM,03/01/2016 11:25:33 PM,03/01/2016 11:37:46 PM,Code 2 Transport,03/02/2016 12:18:07 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160613676-82 +160772679,84,16030678,Medical Incident,03/17/2016,03/17/2016,03/17/2016 04:04:38 PM,03/17/2016 04:05:15 PM,03/17/2016 04:05:23 PM,03/17/2016 04:05:37 PM,03/17/2016 04:08:04 PM,03/17/2016 04:37:57 PM,03/17/2016 04:49:07 PM,Code 2 Transport,03/17/2016 05:32:42 PM,1500 Block of DIVISADERO ST,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7840751928704, -122.439752776223)",160772679-84 +160641168,57,16025436,Medical Incident,03/04/2016,03/04/2016,03/04/2016 09:51:42 AM,03/04/2016 09:52:39 AM,03/04/2016 09:54:25 AM,03/04/2016 09:54:38 AM,03/04/2016 10:00:18 AM,03/04/2016 10:19:27 AM,03/04/2016 10:27:32 AM,Code 2 Transport,03/04/2016 11:27:15 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",160641168-57 +112710252,KM12,11089586,Medical Incident,09/28/2011,09/28/2011,09/28/2011 02:03:14 PM,09/28/2011 02:04:54 PM,09/28/2011 02:05:23 PM,04/25/2016 02:02:26 PM,09/28/2011 02:17:27 PM,09/28/2011 02:27:25 PM,09/28/2011 02:42:29 PM,Code 2 Transport,09/28/2011 02:09:27 PM,TURK ST/LARKIN ST,SF,94102,B02,3,1554,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.782378943359, -122.41733888153)",112710252-KM12 +122820245,B04,12093414,Alarms,10/08/2012,10/08/2012,10/08/2012 04:51:25 PM,10/08/2012 04:52:35 PM,10/08/2012 04:53:56 PM,10/08/2012 04:55:00 PM,10/08/2012 04:57:32 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Fire,10/08/2012 05:05:20 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,false,Alarm,1,CHIEF,3,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",122820245-B04 +122280332,E14,12075682,Medical Incident,08/15/2012,08/15/2012,08/15/2012 07:44:30 PM,08/15/2012 07:46:47 PM,08/15/2012 07:47:08 PM,08/15/2012 07:48:02 PM,08/15/2012 07:50:33 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 08:18:56 PM,200 Block of 22ND AVE,SF,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7830973893224, -122.481656432472)",122280332-E14 +120150192,T13,12005107,Structure Fire,01/15/2012,01/15/2012,01/15/2012 02:08:30 PM,01/15/2012 02:10:49 PM,01/15/2012 02:10:59 PM,01/15/2012 02:43:18 PM,01/15/2012 02:49:26 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 03:24:22 PM,0 Block of VANDEWATER ST,SF,94133,B01,28,131,3,3,3,false,Fire,1,TRUCK,4,1,3,North Beach,"(37.8053109379125, -122.412698359147)",120150192-T13 +112020306,E08,11066735,Gas Leak (Natural and LP Gases),07/21/2011,07/21/2011,07/21/2011 04:27:38 PM,07/21/2011 04:31:31 PM,07/21/2011 04:31:39 PM,07/21/2011 04:32:05 PM,07/21/2011 04:36:25 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,No Merit,07/21/2011 04:39:37 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",112020306-E08 +112110202,E34,11069650,Traffic Collision,07/30/2011,07/30/2011,07/30/2011 02:34:20 PM,07/30/2011 02:34:57 PM,07/30/2011 02:35:40 PM,07/30/2011 02:37:06 PM,07/30/2011 02:38:37 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,Other,07/30/2011 02:52:48 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",112110202-E34 +121480204,E01,12049132,Medical Incident,05/27/2012,05/27/2012,05/27/2012 02:05:12 PM,05/27/2012 02:05:50 PM,05/27/2012 02:06:17 PM,04/25/2016 01:58:29 PM,05/27/2012 02:12:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/27/2012 02:35:20 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.779050608887, -122.407932562167)",121480204-E01 +131950022,E23,13066117,Medical Incident,07/14/2013,07/13/2013,07/14/2013 01:34:55 AM,07/14/2013 01:36:01 AM,07/14/2013 01:36:19 AM,07/14/2013 01:37:49 AM,07/14/2013 01:40:34 AM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/14/2013 01:46:51 AM,1500 Block of 43RD AVE,SF,94122,B08,23,7652,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7577643099664, -122.502585164302)",131950022-E23 +160450908,89,16018044,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:27:22 AM,02/14/2016 08:27:22 AM,02/14/2016 08:28:27 AM,02/14/2016 08:28:36 AM,02/14/2016 08:37:19 AM,02/14/2016 08:46:21 AM,02/14/2016 08:57:08 AM,Code 2 Transport,02/14/2016 09:36:04 AM,175-D LOEHR ST,San Francisco,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.711400304499, -122.413971257366)",160450908-89 +160580969,61,16023054,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:53:50 AM,02/27/2016 08:55:24 AM,02/27/2016 08:55:50 AM,02/27/2016 08:56:38 AM,02/27/2016 09:00:34 AM,02/27/2016 09:12:43 AM,02/27/2016 09:20:28 AM,Code 2 Transport,02/27/2016 10:19:53 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160580969-61 +112970403,T13,11098696,Alarms,10/24/2011,10/24/2011,10/24/2011 09:30:45 PM,10/24/2011 09:31:15 PM,10/24/2011 09:31:23 PM,10/24/2011 09:33:15 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/24/2011 10:22:39 PM,200 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7897518225049, -122.404013943546)",112970403-T13 +132720059,E10,13092352,Medical Incident,09/29/2013,09/28/2013,09/29/2013 04:03:01 AM,09/29/2013 04:05:47 AM,09/29/2013 04:09:23 AM,09/29/2013 04:12:00 AM,09/29/2013 04:14:45 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 04:30:00 AM,2100 Block of POST ST,SF,94115,B04,10,4131,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",132720059-E10 +160511509,79,16020454,Medical Incident,02/20/2016,02/20/2016,02/20/2016 12:33:03 PM,02/20/2016 12:35:06 PM,02/20/2016 12:37:40 PM,02/20/2016 12:40:30 PM,02/20/2016 12:59:05 PM,02/20/2016 01:14:13 PM,02/20/2016 01:42:58 PM,Code 2 Transport,02/20/2016 02:34:21 PM,700 Block of FILBERT ST,San Francisco,94133,B01,28,1351,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.8011213328276, -122.411852515751)",160511509-79 +130010111,99,13000077,Medical Incident,01/01/2013,12/31/2012,01/01/2013 01:44:45 AM,01/01/2013 01:46:56 AM,01/01/2013 01:52:52 AM,01/01/2013 01:53:09 AM,01/01/2013 02:00:07 AM,01/01/2013 02:15:26 AM,01/01/2013 02:40:14 AM,Code 2 Transport,01/01/2013 03:07:21 AM,2000 Block of 42ND AVE,SF,94116,B08,18,7634,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7484941198711, -122.500722763552)",130010111-99 +140830339,77,14028129,Medical Incident,03/24/2014,03/24/2014,03/24/2014 10:08:19 PM,03/24/2014 10:08:56 PM,03/24/2014 10:09:20 PM,03/24/2014 10:10:11 PM,03/24/2014 10:12:37 PM,04/25/2016 01:47:34 PM,04/25/2016 01:47:34 PM,Other,03/24/2014 11:12:40 PM,500 Block of SOUTH VAN NESS AVE,SAN FRANCISCO,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",140830339-77 +133460352,E19,13117537,Medical Incident,12/12/2013,12/12/2013,12/12/2013 07:55:36 PM,12/12/2013 07:58:11 PM,12/12/2013 07:59:48 PM,12/12/2013 08:02:34 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 08:19:22 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",133460352-E19 +140580235,66,14019606,Medical Incident,02/27/2014,02/27/2014,02/27/2014 03:24:30 PM,02/27/2014 03:25:17 PM,02/27/2014 03:25:48 PM,02/27/2014 03:25:55 PM,02/27/2014 03:32:02 PM,02/27/2014 03:53:23 PM,02/27/2014 04:10:36 PM,Code 2 Transport,02/27/2014 04:40:45 PM,4500 Block of CABRILLO ST,SF,94121,B07,34,7277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7734373755219, -122.507358715889)",140580235-66 +111800135,KM05,11059388,Medical Incident,06/29/2011,06/29/2011,06/29/2011 11:46:51 AM,06/29/2011 11:48:44 AM,06/29/2011 11:52:23 AM,06/29/2011 11:57:17 AM,06/29/2011 12:10:18 PM,06/29/2011 12:24:41 PM,06/29/2011 12:47:35 PM,Code 2 Transport,06/29/2011 01:02:21 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,false,,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",111800135-KM05 +122670009,T05,12088067,Structure Fire,09/23/2012,09/22/2012,09/23/2012 12:13:39 AM,09/23/2012 12:13:39 AM,09/23/2012 12:14:32 AM,09/23/2012 12:15:56 AM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 12:17:09 AM,BAKER ST/GROVE ST,SF,94117,B05,21,4253,3,3,3,false,Alarm,1,TRUCK,2,5,5,Lone Mountain/USF,"(37.7755046857272, -122.441300062684)",122670009-T05 +110910340,E31,11030273,Medical Incident,04/01/2011,04/01/2011,04/01/2011 06:14:02 PM,04/01/2011 06:14:42 PM,04/01/2011 06:14:56 PM,04/01/2011 06:15:17 PM,04/01/2011 06:17:12 PM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,Other,04/01/2011 06:27:00 PM,100 Block of 8TH AVE,SF,94118,B07,31,7126,E,E,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7856386364347, -122.466831479708)",110910340-E31 +160310082,85,16012012,Medical Incident,01/31/2016,01/30/2016,01/31/2016 12:26:58 AM,01/31/2016 12:29:10 AM,01/31/2016 12:30:13 AM,01/31/2016 12:30:28 AM,01/31/2016 12:35:37 AM,01/31/2016 01:02:09 AM,01/31/2016 01:09:20 AM,Code 2 Transport,01/31/2016 01:42:20 AM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160310082-85 +132900428,T48,13098852,Medical Incident,10/17/2013,10/17/2013,10/17/2013 11:38:25 PM,10/17/2013 11:39:37 PM,10/17/2013 11:39:58 PM,10/17/2013 11:41:46 PM,10/17/2013 11:46:39 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/17/2013 11:54:35 PM,400 Block of CALIFORNIA AVE,TI,94130,B03,48,2931,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,None,6,Treasure Island,"(37.819133465858, -122.368294852041)",132900428-T48 +122660244,85,12087929,Medical Incident,09/22/2012,09/22/2012,09/22/2012 05:11:38 PM,09/22/2012 05:14:25 PM,09/22/2012 05:14:54 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,04/25/2016 01:56:39 PM,200 Block of KING ST,SF,94107,B03,8,2171,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",122660244-85 +131010347,E10,13034085,Medical Incident,04/11/2013,04/11/2013,04/11/2013 08:43:36 PM,04/11/2013 08:44:52 PM,04/11/2013 08:45:23 PM,04/11/2013 08:46:40 PM,04/11/2013 08:49:04 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/11/2013 09:03:32 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",131010347-E10 +123460278,E03,12115786,Medical Incident,12/11/2012,12/11/2012,12/11/2012 05:32:09 PM,12/11/2012 05:33:36 PM,12/11/2012 05:33:51 PM,12/11/2012 05:36:10 PM,12/11/2012 05:38:14 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 05:38:28 PM,400 Block of LEAVENWORTH ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",123460278-E03 +113060357,E01,11101793,Medical Incident,11/02/2011,11/02/2011,11/02/2011 08:21:24 PM,11/02/2011 08:22:27 PM,11/02/2011 08:22:48 PM,11/02/2011 08:32:55 PM,11/02/2011 08:25:14 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/02/2011 08:41:38 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",113060357-E01 +133250242,E08,13110428,Medical Incident,11/21/2013,11/21/2013,11/21/2013 03:38:55 PM,11/21/2013 03:40:39 PM,11/21/2013 04:06:29 PM,04/25/2016 01:49:39 PM,11/21/2013 04:06:35 PM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Other,11/21/2013 03:53:03 PM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",133250242-E08 +111390217,E41,11046235,Medical Incident,05/19/2011,05/19/2011,05/19/2011 02:33:16 PM,05/19/2011 02:36:12 PM,05/19/2011 02:36:44 PM,05/19/2011 02:40:50 PM,05/19/2011 02:43:01 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 02:48:41 PM,VAN NESS AV/POST ST,SF,94109,B04,3,3161,1,1,2,false,,1,ENGINE,1,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",111390217-E41 +110970128,E41,11032104,Medical Incident,04/07/2011,04/07/2011,04/07/2011 10:13:06 AM,04/07/2011 10:13:19 AM,04/07/2011 10:14:10 AM,04/07/2011 10:14:58 AM,04/07/2011 10:16:37 AM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Unable to Locate,04/07/2011 10:19:16 AM,LEAVENWORTH ST/POST ST,SF,94109,B01,3,1543,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7874538432357, -122.414995423077)",110970128-E41 +122400326,E33,12079556,Citizen Assist / Service Call,08/27/2012,08/27/2012,08/27/2012 06:39:14 PM,08/27/2012 06:40:35 PM,08/27/2012 06:40:51 PM,08/27/2012 06:42:33 PM,08/27/2012 06:46:38 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Fire,08/27/2012 06:56:45 PM,0 Block of FLORENTINE AVE,SF,94112,B09,33,6177,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7126535594539, -122.443570221099)",122400326-E33 +160572420,79,16022826,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:57:13 PM,02/26/2016 03:59:37 PM,02/26/2016 04:00:37 PM,02/26/2016 04:00:54 PM,02/26/2016 04:27:09 PM,02/26/2016 04:27:10 PM,02/26/2016 04:28:52 PM,Code 2 Transport,02/26/2016 04:43:14 PM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7848770596387, -122.442348914658)",160572420-79 +120940253,E02,12031211,Medical Incident,04/03/2012,04/03/2012,04/03/2012 05:03:34 PM,04/03/2012 05:03:52 PM,04/03/2012 05:04:32 PM,04/25/2016 01:59:21 PM,04/03/2012 05:05:05 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 05:28:30 PM,1300 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",120940253-E02 +112900278,E39,11096278,Medical Incident,10/17/2011,10/17/2011,10/17/2011 03:48:26 PM,10/17/2011 03:49:33 PM,10/17/2011 03:49:55 PM,10/17/2011 03:51:08 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 04:16:15 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",112900278-E39 +110900136,E08,11029724,Medical Incident,03/31/2011,03/31/2011,03/31/2011 11:32:12 AM,03/31/2011 11:32:15 AM,03/31/2011 11:33:42 AM,04/25/2016 02:05:21 PM,03/31/2011 11:34:52 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Other,03/31/2011 11:43:39 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",110900136-E08 +132600444,75,13088190,Medical Incident,09/17/2013,09/17/2013,09/17/2013 09:30:45 PM,09/17/2013 09:30:45 PM,09/17/2013 09:38:47 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,09/17/2013 09:47:12 PM,09/17/2013 10:04:49 PM,Other,09/17/2013 10:28:40 PM,FRANK NORRIS ST/POLK ST,SF,94109,B04,3,3122,E,E,3,true,Potentially Life-Threatening,1,MEDIC,7,4,3,Nob Hill,"(37.7891650930566, -122.420401246671)",132600444-75 +160910941,AM10,16036009,Medical Incident,03/31/2016,03/31/2016,03/31/2016 09:24:55 AM,03/31/2016 09:26:13 AM,03/31/2016 09:29:09 AM,03/31/2016 09:29:45 AM,03/31/2016 09:38:53 AM,03/31/2016 09:41:10 AM,03/31/2016 10:01:11 AM,Code 2 Transport,03/31/2016 10:35:05 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160910941-AM10 +131690053,68,13057268,Medical Incident,06/18/2013,06/17/2013,06/18/2013 05:27:43 AM,06/18/2013 05:30:16 AM,06/18/2013 05:31:23 AM,06/18/2013 05:31:48 AM,06/18/2013 05:35:47 AM,06/18/2013 05:47:48 AM,06/18/2013 06:02:10 AM,Code 3 Transport,06/18/2013 06:33:03 AM,3500 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7393668849403, -122.423797447335)",131690053-68 +123630042,AM22,12121345,Medical Incident,12/28/2012,12/27/2012,12/28/2012 03:58:23 AM,12/28/2012 04:03:10 AM,12/28/2012 04:03:31 AM,12/28/2012 04:04:08 AM,12/28/2012 04:17:05 AM,12/28/2012 04:54:43 AM,12/28/2012 05:07:12 AM,Code 2 Transport,12/28/2012 05:44:46 AM,1000 Block of FRANKLIN ST,SF,94109,B02,3,3221,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",123630042-AM22 +111170334,T06,11038752,Structure Fire,04/27/2011,04/27/2011,04/27/2011 09:16:01 PM,04/27/2011 09:16:01 PM,04/27/2011 09:16:27 PM,04/27/2011 09:18:47 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 09:19:19 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.7741251002903, -122.418810211803)",111170334-T06 +160120465,65,16004660,Medical Incident,01/12/2016,01/11/2016,01/12/2016 06:19:56 AM,01/12/2016 06:20:30 AM,01/12/2016 06:20:40 AM,01/12/2016 06:20:51 AM,01/12/2016 06:28:21 AM,01/12/2016 06:50:55 AM,01/12/2016 07:04:49 AM,Code 2 Transport,01/12/2016 07:49:12 AM,2800 Block of SAN BRUNO AV,San Francisco,94134,B10,42,6333,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7258169457763, -122.402916975917)",160120465-65 +120660020,55,12021693,Medical Incident,03/06/2012,03/05/2012,03/06/2012 03:08:07 AM,03/06/2012 03:09:43 AM,03/06/2012 03:11:22 AM,03/06/2012 03:13:41 AM,03/06/2012 03:14:45 AM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,No Merit,03/06/2012 03:28:12 AM,400 Block of HOLLOWAY AVE,SF,94112,B09,15,8473,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7218966114781, -122.457673471885)",120660020-55 +103060236,E01,10097941,Medical Incident,11/02/2010,11/02/2010,11/02/2010 01:03:43 PM,11/02/2010 01:03:59 PM,11/02/2010 01:04:22 PM,11/02/2010 01:05:40 PM,11/02/2010 01:08:46 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 01:10:47 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",103060236-E01 +160682011,AM08,16027144,Medical Incident,03/08/2016,03/08/2016,03/08/2016 02:01:17 PM,03/08/2016 02:02:17 PM,03/08/2016 02:03:19 PM,03/08/2016 02:04:08 PM,03/08/2016 02:08:03 PM,03/08/2016 02:28:34 PM,03/08/2016 02:39:53 PM,Code 2 Transport,03/08/2016 02:59:38 PM,1500 Block of SACRAMENTO ST,San Francisco,94109,B01,41,1563,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7918676063561, -122.418413462356)",160682011-AM08 +122610318,55,12086348,Structure Fire,09/17/2012,09/17/2012,09/17/2012 11:11:35 PM,09/17/2012 11:12:11 PM,09/17/2012 11:12:47 PM,09/17/2012 11:14:32 PM,09/17/2012 11:19:24 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/17/2012 11:19:45 PM,500 Block of SCOTT ST,SF,94117,B05,21,4136,3,3,3,true,Fire,1,MEDIC,8,5,5,Hayes Valley,"(37.7747500421845, -122.435966327435)",122610318-55 +122810332,T13,12093119,Elevator / Escalator Rescue,10/07/2012,10/07/2012,10/07/2012 07:37:06 PM,10/07/2012 07:39:51 PM,10/07/2012 07:39:56 PM,10/07/2012 07:41:43 PM,10/07/2012 07:43:41 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Fire,10/07/2012 07:57:49 PM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",122810332-T13 +102910356,B01,10092953,Medical Incident,10/18/2010,10/18/2010,10/18/2010 09:41:23 PM,10/18/2010 09:42:17 PM,10/18/2010 09:43:26 PM,10/18/2010 09:45:25 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/18/2010 09:46:43 PM,700 Block of LEAVENWORTH ST,SF,94109,B04,3,1543,E,E,3,false,,1,CHIEF,4,4,3,Nob Hill,"(37.7879121402994, -122.415158673267)",102910356-B01 +131330072,E03,13044773,Medical Incident,05/13/2013,05/12/2013,05/13/2013 07:23:36 AM,05/13/2013 07:23:52 AM,05/13/2013 07:24:48 AM,05/13/2013 07:25:58 AM,05/13/2013 07:29:53 AM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/13/2013 07:33:55 AM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",131330072-E03 +112330261,83,11077010,Medical Incident,08/21/2011,08/21/2011,08/21/2011 04:43:50 PM,08/21/2011 04:44:25 PM,08/21/2011 04:44:49 PM,08/21/2011 04:45:17 PM,08/21/2011 04:56:26 PM,08/21/2011 05:32:43 PM,08/21/2011 05:53:32 PM,Code 2 Transport,08/21/2011 06:18:34 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",112330261-83 +131770230,RS2,13060117,Medical Incident,06/26/2013,06/26/2013,06/26/2013 01:59:09 PM,06/26/2013 02:01:32 PM,06/26/2013 02:01:50 PM,06/26/2013 02:02:51 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 02:04:14 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",131770230-RS2 +133560284,KM02,13121109,Medical Incident,12/22/2013,12/22/2013,12/22/2013 05:09:28 PM,12/22/2013 05:10:51 PM,12/22/2013 05:11:26 PM,12/22/2013 05:11:54 PM,12/22/2013 05:22:07 PM,12/22/2013 05:34:50 PM,12/22/2013 05:46:26 PM,Code 2 Transport,12/22/2013 06:17:53 PM,25TH ST/SOUTH VAN NESS AV,SF,94110,B06,11,5534,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7507710880586, -122.416107621606)",133560284-KM02 +120050363,KM07,12001899,Medical Incident,01/05/2012,01/05/2012,01/05/2012 10:35:50 PM,01/05/2012 10:38:15 PM,01/05/2012 10:40:07 PM,01/05/2012 10:40:13 PM,01/05/2012 10:50:41 PM,01/05/2012 11:02:36 PM,01/05/2012 11:07:47 PM,Code 2 Transport,01/05/2012 11:36:11 PM,1100 Block of SCOTT ST,SF,94115,B05,5,4133,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7803259118056, -122.437234296615)",120050363-KM07 +111570151,T09,11051883,Alarms,06/06/2011,06/06/2011,06/06/2011 10:57:24 AM,06/06/2011 10:58:38 AM,06/06/2011 10:58:48 AM,06/06/2011 10:59:57 AM,06/06/2011 11:03:23 AM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 11:08:09 AM,1500 Block of INDIANA ST,SF,94107,B10,25,2635,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.750758868663, -122.390429362473)",111570151-T09 +111040197,95,11034486,Medical Incident,04/14/2011,04/14/2011,04/14/2011 02:10:04 PM,04/14/2011 02:10:47 PM,04/14/2011 02:11:21 PM,04/14/2011 02:11:53 PM,04/14/2011 02:17:22 PM,04/14/2011 02:41:05 PM,04/14/2011 02:52:43 PM,Code 2 Transport,04/14/2011 03:17:36 PM,2700 Block of DIAMOND ST,SF,94131,B06,26,8146,3,3,3,true,,1,MEDIC,2,6,8,Glen Park,"(37.7347861527161, -122.433850481856)",111040197-95 +113150160,RC1,11104676,Medical Incident,11/11/2011,11/11/2011,11/11/2011 12:45:20 PM,11/11/2011 12:45:59 PM,11/11/2011 12:46:12 PM,04/25/2016 02:01:41 PM,11/11/2011 12:49:26 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/11/2011 12:53:19 PM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,true,,1,RESCUE CAPTAIN,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",113150160-RC1 +160650957,66,16025870,Medical Incident,03/05/2016,03/05/2016,03/05/2016 09:06:53 AM,03/05/2016 09:08:31 AM,03/05/2016 09:09:41 AM,03/05/2016 09:09:56 AM,03/05/2016 09:14:07 AM,03/05/2016 09:28:34 AM,03/05/2016 09:37:13 AM,Code 2 Transport,03/05/2016 10:14:40 AM,1500 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7744089216996, -122.441921717893)",160650957-66 +102500289,74,10079086,Medical Incident,09/07/2010,09/07/2010,09/07/2010 07:16:57 PM,09/07/2010 07:17:34 PM,09/07/2010 07:19:33 PM,09/07/2010 07:19:48 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,04/25/2016 02:08:42 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,2,2,2,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",102500289-74 +120160253,T10,12005471,Alarms,01/16/2012,01/16/2012,01/16/2012 06:03:45 PM,01/16/2012 06:04:34 PM,01/16/2012 06:04:40 PM,01/16/2012 06:06:28 PM,01/16/2012 06:08:34 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/16/2012 06:20:21 PM,3000 Block of JACKSON ST,SF,94115,B04,10,4334,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7910493414671, -122.4452866003)",120160253-T10 +103460068,T01,10110854,Medical Incident,12/12/2010,12/11/2010,12/12/2010 04:06:02 AM,12/12/2010 04:08:19 AM,12/12/2010 04:11:18 AM,12/12/2010 04:12:28 AM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 04:13:34 AM,1200 Block of MARKET ST,SF,94103,B02,36,2337,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",103460068-T01 +103400025,E03,10108710,Medical Incident,12/06/2010,12/05/2010,12/06/2010 02:30:10 AM,12/06/2010 02:31:04 AM,12/06/2010 02:32:28 AM,12/06/2010 02:34:17 AM,12/06/2010 02:36:10 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/06/2010 02:47:08 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",103400025-E03 +113060236,E38,11101692,Medical Incident,11/02/2011,11/02/2011,11/02/2011 02:28:23 PM,11/02/2011 02:29:39 PM,11/02/2011 02:30:32 PM,11/02/2011 02:30:51 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/02/2011 02:33:04 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,ENGINE,3,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",113060236-E38 +160530139,60,16021038,Medical Incident,02/22/2016,02/21/2016,02/22/2016 01:38:34 AM,02/22/2016 01:39:55 AM,02/22/2016 01:40:06 AM,02/22/2016 01:41:41 AM,02/22/2016 01:51:05 AM,02/22/2016 02:12:19 AM,02/22/2016 02:15:12 AM,Code 2 Transport,02/22/2016 03:09:14 AM,0 Block of BEULAH ST,San Francisco,94117,B05,12,4546,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7675371399742, -122.450899914559)",160530139-60 +120320288,89,12010669,Medical Incident,02/01/2012,02/01/2012,02/01/2012 06:18:17 PM,02/01/2012 06:19:02 PM,02/01/2012 06:19:38 PM,04/25/2016 02:00:21 PM,02/01/2012 06:24:41 PM,02/01/2012 07:01:14 PM,02/01/2012 07:32:57 PM,Code 2 Transport,02/01/2012 07:41:58 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",120320288-89 +120670076,E03,12022124,Medical Incident,03/07/2012,03/06/2012,03/07/2012 07:19:58 AM,03/07/2012 07:20:10 AM,03/07/2012 07:20:36 AM,03/07/2012 07:21:09 AM,03/07/2012 07:26:06 AM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/07/2012 07:28:42 AM,CHESTNUT ST/LARKIN ST,SF,94109,B04,28,1613,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8026949243643, -122.42148036462)",120670076-E03 +103200098,KM14,10102499,Medical Incident,11/16/2010,11/16/2010,11/16/2010 08:41:41 AM,11/16/2010 08:43:18 AM,11/16/2010 08:43:59 AM,11/16/2010 08:50:05 AM,11/16/2010 09:00:01 AM,11/16/2010 09:06:57 AM,11/16/2010 09:13:55 AM,Code 2 Transport,11/16/2010 09:35:54 AM,1400 Block of TREAT WAY,SF,94110,B06,7,5533,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7486593822992, -122.412687632433)",103200098-KM14 +123200197,T01,12106388,Alarms,11/15/2012,11/15/2012,11/15/2012 01:45:30 PM,11/15/2012 01:46:23 PM,11/15/2012 01:47:25 PM,11/15/2012 01:48:52 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 01:52:26 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",123200197-T01 +132340356,RC1,13079144,Medical Incident,08/22/2013,08/22/2013,08/22/2013 10:15:11 PM,08/22/2013 10:17:20 PM,08/22/2013 10:18:12 PM,08/22/2013 10:18:54 PM,08/22/2013 10:24:15 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,08/22/2013 10:24:39 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",132340356-RC1 +160882438,AM16,16035021,Medical Incident,03/28/2016,03/28/2016,03/28/2016 03:47:52 PM,03/28/2016 03:50:26 PM,03/28/2016 03:51:05 PM,03/28/2016 03:51:05 PM,03/28/2016 04:23:46 PM,03/28/2016 04:23:48 PM,03/28/2016 04:54:53 PM,Code 2 Transport,03/28/2016 05:16:01 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160882438-AM16 +160603044,E06,16024040,Medical Incident,02/29/2016,02/29/2016,02/29/2016 07:02:21 PM,02/29/2016 07:02:38 PM,02/29/2016 07:03:35 PM,02/29/2016 07:04:56 PM,02/29/2016 07:34:19 PM,02/29/2016 07:35:11 PM,02/29/2016 08:06:40 PM,Code 3 Transport,02/29/2016 08:08:11 PM,300 Block of DOUGLASS ST,San Francisco,94114,B06,24,5441,3,E,3,true,Potentially Life-Threatening,1,ENGINE,4,6,8,Castro/Upper Market,"(37.7581620645375, -122.439025114623)",160603044-E06 +123360341,T01,12111859,Structure Fire,12/01/2012,12/01/2012,12/01/2012 07:22:52 PM,12/01/2012 07:22:53 PM,12/01/2012 07:23:25 PM,12/01/2012 07:23:58 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 07:24:41 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",123360341-T01 +111570320,E01,11052023,Medical Incident,06/06/2011,06/06/2011,06/06/2011 06:17:23 PM,06/06/2011 06:18:14 PM,06/06/2011 06:18:43 PM,06/06/2011 06:19:02 PM,06/06/2011 06:20:23 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/06/2011 06:33:01 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",111570320-E01 +121230379,RS1,12041003,Medical Incident,05/02/2012,05/02/2012,05/02/2012 11:27:39 PM,05/02/2012 11:28:59 PM,05/02/2012 11:29:22 PM,05/02/2012 11:30:07 PM,04/25/2016 01:58:53 PM,04/25/2016 01:58:53 PM,04/25/2016 01:58:53 PM,Other,05/02/2012 11:30:42 PM,0 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7795700115888, -122.411484015918)",121230379-RS1 +120570310,68,12018918,Medical Incident,02/26/2012,02/26/2012,02/26/2012 09:01:20 PM,02/26/2012 09:03:14 PM,02/26/2012 09:04:07 PM,02/26/2012 09:04:23 PM,02/26/2012 09:07:02 PM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Against Medical Advice,02/26/2012 10:05:14 PM,1400 Block of 20TH AVE,SF,94122,B08,22,7426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7607217462219, -122.47793023848)",120570310-68 +122180238,93,12072359,Medical Incident,08/05/2012,08/05/2012,08/05/2012 03:19:41 PM,08/05/2012 03:21:21 PM,08/05/2012 03:22:00 PM,08/05/2012 03:22:33 PM,08/05/2012 03:25:45 PM,08/05/2012 03:47:40 PM,08/05/2012 04:06:58 PM,Code 2 Transport,08/05/2012 04:33:58 PM,1000 Block of LAGUNA ST,SF,94115,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806464131859, -122.427178095031)",122180238-93 +133280228,T08,13111504,Alarms,11/24/2013,11/24/2013,11/24/2013 04:13:34 PM,11/24/2013 04:14:43 PM,11/24/2013 04:15:21 PM,11/24/2013 04:16:34 PM,11/24/2013 04:19:49 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 04:30:44 PM,100 Block of KING ST,SF,94107,B03,8,2154,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",133280228-T08 +160170502,AM22,16006699,Medical Incident,01/17/2016,01/16/2016,01/17/2016 04:27:45 AM,01/17/2016 04:30:43 AM,01/17/2016 04:32:02 AM,01/17/2016 04:32:56 AM,01/17/2016 04:39:40 AM,01/17/2016 04:58:15 AM,01/17/2016 05:06:28 AM,Code 2 Transport,01/17/2016 05:39:09 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160170502-AM22 +160450801,61,16018024,Medical Incident,02/14/2016,02/13/2016,02/14/2016 07:29:36 AM,02/14/2016 07:30:06 AM,02/14/2016 07:30:56 AM,02/14/2016 07:31:06 AM,02/14/2016 07:40:43 AM,02/14/2016 07:57:16 AM,02/14/2016 08:09:32 AM,Code 2 Transport,02/14/2016 08:46:32 AM,0 Block of DE LONG ST,San Francisco,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7096061746136, -122.459869387331)",160450801-61 +130800156,E12,13026717,Medical Incident,03/21/2013,03/21/2013,03/21/2013 11:20:39 AM,03/21/2013 11:20:57 AM,03/21/2013 11:21:15 AM,03/21/2013 11:22:06 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 11:24:52 AM,7TH AV/HUGO ST,SF,94122,B08,22,7332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,5,Inner Sunset,"(37.7650667712969, -122.464237375405)",130800156-E12 +121080096,E28,12035695,Medical Incident,04/17/2012,04/17/2012,04/17/2012 09:49:57 AM,04/17/2012 09:50:46 AM,04/17/2012 09:51:05 AM,04/17/2012 09:51:49 AM,04/17/2012 09:54:18 AM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,Other,04/17/2012 10:08:47 AM,0 Block of JEFFERSON ST,SF,94133,B01,28,943,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8084686918657, -122.4133334279)",121080096-E28 +160462365,KM06,16018571,Medical Incident,02/15/2016,02/15/2016,02/15/2016 03:51:01 PM,02/15/2016 03:53:18 PM,02/15/2016 03:56:41 PM,02/15/2016 03:59:09 PM,02/15/2016 04:06:14 PM,02/15/2016 04:31:39 PM,02/15/2016 04:39:39 PM,Code 2 Transport,02/15/2016 05:10:29 PM,BRYANT ST/10TH ST,San Francisco,94103,B02,29,2345,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7703485160634, -122.409735890482)",160462365-KM06 +160453024,65,16018267,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:04:55 PM,02/14/2016 08:05:58 PM,02/14/2016 08:06:15 PM,02/14/2016 08:09:27 PM,02/14/2016 08:23:32 PM,02/14/2016 08:46:26 PM,02/14/2016 09:04:52 PM,Code 2 Transport,02/14/2016 09:52:35 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160453024-65 +120170146,E25,12005682,Administrative,01/17/2012,01/17/2012,01/17/2012 11:53:38 AM,01/17/2012 11:53:41 AM,01/17/2012 11:53:47 AM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 11:54:07 AM,3300 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,false,,1,ENGINE,1,None,None,None,"(37.7475912199361, -122.387182780653)",120170146-E25 +110770248,68,11025393,Medical Incident,03/18/2011,03/18/2011,03/18/2011 02:47:14 PM,03/18/2011 02:48:25 PM,03/18/2011 02:50:02 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,04/25/2016 02:05:34 PM,0 Block of NEWTON ST,SF,94112,B09,43,6232,3,1,2,true,,1,MEDIC,3,9,11,Excelsior,"(37.7139749867897, -122.438812291753)",110770248-68 +120870235,E10,12028923,Medical Incident,03/27/2012,03/27/2012,03/27/2012 04:47:42 PM,03/27/2012 04:49:36 PM,03/27/2012 04:49:55 PM,03/27/2012 04:55:35 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 04:57:38 PM,2300 Block of GOLDEN GATE AVE,SF,94117,B05,21,4521,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",120870235-E10 +112900310,E21,11096306,Medical Incident,10/17/2011,10/17/2011,10/17/2011 05:12:45 PM,10/17/2011 05:14:07 PM,10/17/2011 05:14:16 PM,10/17/2011 05:15:20 PM,10/17/2011 05:16:08 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/17/2011 05:21:49 PM,500 Block of BRODERICK ST,SF,94117,B05,21,4244,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7752371573517, -122.439629672801)",112900310-E21 +121460015,66,12048327,Medical Incident,05/25/2012,05/24/2012,05/25/2012 01:45:11 AM,05/25/2012 01:48:27 AM,05/25/2012 01:49:58 AM,05/25/2012 01:50:12 AM,05/25/2012 01:58:09 AM,05/25/2012 02:10:58 AM,05/25/2012 02:24:51 AM,Code 2 Transport,05/25/2012 02:47:59 AM,300 Block of 5TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7820328555271, -122.463211509933)",121460015-66 +131130013,85,13037953,Medical Incident,04/23/2013,04/22/2013,04/23/2013 12:42:51 AM,04/23/2013 12:44:00 AM,04/23/2013 12:44:53 AM,04/23/2013 12:45:14 AM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/23/2013 12:49:51 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",131130013-85 +140430037,E01,14014494,Medical Incident,02/12/2014,02/11/2014,02/12/2014 03:57:58 AM,02/12/2014 03:58:25 AM,02/12/2014 03:58:42 AM,02/12/2014 04:01:37 AM,02/12/2014 04:05:00 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/12/2014 04:10:27 AM,MISSION ST/MINT ST,SF,94103,B03,1,2246,,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7821907203873, -122.407164382984)",140430037-E01 +122750208,KM11,12090760,Medical Incident,10/01/2012,10/01/2012,10/01/2012 01:36:15 PM,10/01/2012 01:37:07 PM,10/01/2012 01:42:12 PM,10/01/2012 01:43:24 PM,10/01/2012 01:53:03 PM,10/01/2012 02:22:48 PM,10/01/2012 02:32:17 PM,Code 2 Transport,10/01/2012 03:14:49 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",122750208-KM11 +120580104,KM01,12019049,Medical Incident,02/27/2012,02/27/2012,02/27/2012 09:37:29 AM,02/27/2012 09:38:50 AM,02/27/2012 09:39:09 AM,02/27/2012 09:41:33 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/27/2012 09:45:38 AM,2300 Block of BUSH ST,SF,94115,B04,38,3621,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7866515636074, -122.435915167438)",120580104-KM01 +160743583,61,16029473,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:27:42 PM,03/14/2016 08:28:01 PM,03/14/2016 08:28:21 PM,03/14/2016 08:28:31 PM,03/14/2016 08:33:29 PM,03/14/2016 08:54:28 PM,03/14/2016 09:02:39 PM,Code 2 Transport,03/14/2016 09:26:58 PM,0 Block of ORD CT,San Francisco,94114,B05,6,5254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7639122101336, -122.440890904618)",160743583-61 +133260227,68,13110751,Medical Incident,11/22/2013,11/22/2013,11/22/2013 02:29:52 PM,11/22/2013 02:30:28 PM,11/22/2013 02:31:56 PM,11/22/2013 02:32:59 PM,11/22/2013 02:48:37 PM,11/22/2013 03:14:28 PM,11/22/2013 03:25:45 PM,Code 2 Transport,11/22/2013 04:09:44 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7573058647401, -122.42108671773)",133260227-68 +121510115,E02,12049984,Medical Incident,05/30/2012,05/30/2012,05/30/2012 10:41:46 AM,05/30/2012 10:42:33 AM,05/30/2012 10:42:42 AM,05/30/2012 10:43:39 AM,05/30/2012 10:44:57 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/30/2012 11:06:31 AM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",121510115-E02 +102410256,E36,10076082,Medical Incident,08/29/2010,08/29/2010,08/29/2010 05:42:43 PM,08/29/2010 05:43:19 PM,08/29/2010 05:47:27 PM,04/25/2016 02:08:50 PM,08/29/2010 05:51:07 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/29/2010 06:08:51 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,false,,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",102410256-E36 +112450367,T13,11080920,Structure Fire,09/02/2011,09/02/2011,09/02/2011 09:21:19 PM,09/02/2011 09:21:19 PM,09/02/2011 09:21:25 PM,09/02/2011 09:22:22 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 09:24:34 PM,DAVIS ST/CLAY ST,SF,94111,B01,13,1133,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7953129409013, -122.397974750623)",112450367-T13 +122310173,77,12076592,Medical Incident,08/18/2012,08/18/2012,08/18/2012 01:52:53 PM,08/18/2012 01:54:49 PM,08/18/2012 01:55:07 PM,08/18/2012 01:55:13 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 02:00:19 PM,2500 Block of MASON ST,SF,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.807027306345, -122.413812485246)",122310173-77 +112410281,T03,11079606,Structure Fire,08/29/2011,08/29/2011,08/29/2011 06:43:41 PM,08/29/2011 06:43:42 PM,08/29/2011 06:43:52 PM,08/29/2011 06:46:38 PM,08/29/2011 06:47:02 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 06:47:23 PM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",112410281-T03 +130330369,99,13011451,Medical Incident,02/02/2013,02/02/2013,02/02/2013 11:20:28 PM,02/02/2013 11:21:43 PM,02/02/2013 11:22:01 PM,02/02/2013 11:22:15 PM,02/02/2013 11:25:58 PM,02/02/2013 11:45:08 PM,02/02/2013 11:53:55 PM,Code 2 Transport,02/03/2013 12:15:29 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",130330369-99 +103040122,B03,10097076,Alarms,10/31/2010,10/30/2010,10/31/2010 06:00:50 AM,10/31/2010 06:02:26 AM,10/31/2010 06:03:14 AM,10/31/2010 06:05:23 AM,10/31/2010 06:08:58 AM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 06:12:40 AM,FOLSOM ST/SPEAR ST,SF,94105,B03,35,2112,3,3,3,false,,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7900698004723, -122.390971017685)",103040122-B03 +160692057,56,16027499,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:13:16 PM,03/09/2016 02:14:15 PM,03/09/2016 02:14:40 PM,03/09/2016 02:15:40 PM,03/09/2016 02:20:14 PM,03/09/2016 02:38:54 PM,03/09/2016 03:06:23 PM,Code 2 Transport,03/09/2016 03:43:20 PM,1800 Block of 8TH AVE,San Francisco,94122,B08,22,7336,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7538219826393, -122.464595321074)",160692057-56 +103550193,E12,10113965,Structure Fire,12/21/2010,12/21/2010,12/21/2010 01:45:46 PM,12/21/2010 01:45:47 PM,12/21/2010 01:46:21 PM,12/21/2010 01:47:00 PM,12/21/2010 01:47:59 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 01:48:24 PM,STANYAN ST/FREDERICK ST,SF,94117,B05,12,4551,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.766374073924, -122.452947033535)",103550193-E12 +112330262,T03,11077011,Structure Fire,08/21/2011,08/21/2011,08/21/2011 04:50:03 PM,08/21/2011 04:50:04 PM,08/21/2011 04:50:09 PM,08/21/2011 04:51:30 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 04:53:41 PM,200 Block of LARKIN ST,SF,94102,B02,36,1645,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7800186669161, -122.416926174949)",112330262-T03 +133340036,E02,13113119,Structure Fire,11/30/2013,11/29/2013,11/30/2013 02:08:19 AM,11/30/2013 02:08:19 AM,11/30/2013 02:08:26 AM,11/30/2013 02:10:06 AM,11/30/2013 02:11:17 AM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Fire,11/30/2013 02:11:38 AM,STOCKTON ST/PACIFIC AV,SF,94133,B01,2,1332,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7967039027671, -122.40843088815)",133340036-E02 +132390353,85,13080766,Medical Incident,08/27/2013,08/27/2013,08/27/2013 09:04:15 PM,08/27/2013 09:04:53 PM,08/27/2013 09:05:06 PM,08/27/2013 09:05:17 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/27/2013 09:06:04 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,2,2,true,Non Life-threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",132390353-85 +102790011,E08,10088568,Alarms,10/06/2010,10/05/2010,10/06/2010 01:17:51 AM,10/06/2010 01:18:40 AM,10/06/2010 01:19:07 AM,10/06/2010 01:21:23 AM,10/06/2010 01:24:26 AM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,Other,10/06/2010 01:45:25 AM,600 Block of 16TH ST,SF,94158,B03,8,2364,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7668017295742, -122.391734694389)",102790011-E08 +120160085,68,12005329,Medical Incident,01/16/2012,01/16/2012,01/16/2012 09:30:01 AM,01/16/2012 09:31:29 AM,01/16/2012 09:31:46 AM,01/16/2012 09:32:06 AM,04/25/2016 02:00:36 PM,01/16/2012 10:05:41 AM,01/16/2012 10:12:04 AM,Code 2 Transport,01/16/2012 10:35:34 AM,400 Block of SOUTH VAN NESS AVE,SF,94103,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7662744315825, -122.417662868855)",120160085-68 +110510124,74,11016842,Medical Incident,02/20/2011,02/20/2011,02/20/2011 09:21:27 AM,02/20/2011 09:22:11 AM,02/20/2011 09:24:14 AM,02/20/2011 09:24:28 AM,02/20/2011 09:29:32 AM,02/20/2011 09:53:12 AM,02/20/2011 10:05:47 AM,Code 2 Transport,02/20/2011 10:38:19 AM,100 Block of TRUMBULL ST,SF,94112,B09,32,5635,3,1,2,true,,1,MEDIC,2,9,11,Excelsior,"(37.7309007796408, -122.427270591087)",110510124-74 +103370296,E06,10107899,Medical Incident,12/03/2010,12/03/2010,12/03/2010 06:56:26 PM,12/03/2010 06:57:16 PM,12/03/2010 06:57:55 PM,12/03/2010 06:59:05 PM,12/03/2010 07:00:13 PM,04/25/2016 02:07:18 PM,04/25/2016 02:07:18 PM,No Merit,12/03/2010 07:02:44 PM,200 Block of FILLMORE ST,SF,94117,B05,6,3526,3,3,3,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7718667121551, -122.430462821161)",103370296-E06 +110800153,B10,11026351,Traffic Collision,03/21/2011,03/21/2011,03/21/2011 10:30:23 AM,03/21/2011 10:30:24 AM,03/21/2011 10:31:54 AM,03/21/2011 10:32:07 AM,03/21/2011 10:35:19 AM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 11:19:46 AM,3RD ST/23RD ST,SF,94107,B10,25,2574,3,3,3,false,,1,CHIEF,4,10,10,Potrero Hill,"(37.7553898860696, -122.388001122896)",110800153-B10 +112750338,E17,11091147,Vehicle Fire,10/02/2011,10/02/2011,10/02/2011 08:00:13 PM,10/02/2011 08:01:10 PM,10/02/2011 08:01:21 PM,10/02/2011 08:02:09 PM,10/02/2011 08:04:50 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/02/2011 08:30:58 PM,1100 Block of THOMAS AVE,SF,94124,B10,17,6653,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7256842076572, -122.382834220833)",112750338-E17 +131420069,B10,13048051,Medical Incident,05/22/2013,05/21/2013,05/22/2013 06:44:18 AM,05/22/2013 06:45:18 AM,05/22/2013 06:58:06 AM,05/22/2013 06:58:10 AM,05/22/2013 07:03:56 AM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,Other,05/22/2013 07:17:49 AM,1300 Block of ARMSTRONG AVE,SF,94124,B10,17,6652,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7235252688106, -122.387602130906)",131420069-B10 +160274146,85,16010911,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:45:25 PM,01/27/2016 11:45:56 PM,01/27/2016 11:46:35 PM,01/27/2016 11:46:41 PM,01/27/2016 11:54:18 PM,01/28/2016 12:16:42 AM,01/28/2016 12:26:28 AM,Code 2 Transport,01/28/2016 01:08:11 AM,1300 Block of 31ST AVE,San Francisco,94122,B08,23,7536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7620615488511, -122.489987687831)",160274146-85 +102340280,T18,10073708,Medical Incident,08/22/2010,08/22/2010,08/22/2010 06:09:44 PM,08/22/2010 06:10:18 PM,08/22/2010 06:10:58 PM,08/22/2010 06:11:47 PM,08/22/2010 06:13:24 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:57 PM,Other,08/22/2010 06:32:27 PM,2900 Block of PACHECO ST,SF,94116,B08,18,7544,3,2,2,true,,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7498790783583, -122.491752271532)",102340280-T18 +120540376,79,12017989,Medical Incident,02/23/2012,02/23/2012,02/23/2012 10:10:07 PM,02/23/2012 10:11:42 PM,02/23/2012 10:11:56 PM,02/23/2012 10:12:29 PM,02/23/2012 10:16:41 PM,02/23/2012 10:33:16 PM,02/23/2012 10:55:05 PM,Code 2 Transport,02/24/2012 12:02:23 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",120540376-79 +133010211,67,13102307,Medical Incident,10/28/2013,10/28/2013,10/28/2013 12:40:53 PM,10/28/2013 12:41:26 PM,10/28/2013 12:43:15 PM,10/28/2013 12:44:13 PM,10/28/2013 12:51:07 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/28/2013 12:53:49 PM,3500 Block of 23RD ST,SF,94110,B06,11,5512,E,2,2,true,Non Life-threatening,1,MEDIC,3,6,8,Mission,"(37.7535600538257, -122.422267918951)",133010211-67 +160764213,AM22,16030391,Medical Incident,03/16/2016,03/16/2016,03/16/2016 11:14:46 PM,03/16/2016 11:14:46 PM,03/16/2016 11:14:59 PM,03/16/2016 11:15:36 PM,03/16/2016 11:29:30 PM,03/16/2016 11:50:27 PM,03/17/2016 12:08:45 AM,Code 2 Transport,03/17/2016 12:36:10 AM,0 Block of EMERY LN,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",160764213-AM22 +122300265,77,12076288,Medical Incident,08/17/2012,08/17/2012,08/17/2012 03:07:20 PM,08/17/2012 03:09:29 PM,08/17/2012 03:09:38 PM,08/17/2012 03:10:19 PM,08/17/2012 03:25:33 PM,08/17/2012 04:01:17 PM,08/17/2012 04:23:59 PM,Code 2 Transport,08/17/2012 04:43:28 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",122300265-77 +132290213,67,13077319,Traffic Collision,08/17/2013,08/17/2013,08/17/2013 01:27:40 PM,08/17/2013 01:28:28 PM,08/17/2013 01:29:19 PM,08/17/2013 01:29:52 PM,08/17/2013 01:43:16 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Patient Declined Transport,08/17/2013 02:10:43 PM,TAYLOR ST/CHESTNUT ST,SF,94133,B01,28,1434,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8035423241693, -122.414876785081)",132290213-67 +120810332,AM10,12027012,Medical Incident,03/21/2012,03/21/2012,03/21/2012 07:45:44 PM,03/21/2012 07:47:51 PM,03/21/2012 07:48:21 PM,03/21/2012 07:48:53 PM,03/21/2012 07:57:09 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Gone on Arrival,03/21/2012 08:03:34 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",120810332-AM10 +133270389,E18,13111248,Medical Incident,11/23/2013,11/23/2013,11/23/2013 08:47:51 PM,11/23/2013 08:49:56 PM,11/23/2013 08:50:03 PM,11/23/2013 08:51:01 PM,11/23/2013 08:56:03 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 09:02:08 PM,4300 Block of JUDAH ST,SF,94122,B08,23,7723,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7603609128578, -122.508608240441)",133270389-E18 +160412771,66,16016558,Medical Incident,02/10/2016,02/10/2016,02/10/2016 05:04:19 PM,02/10/2016 05:06:28 PM,02/10/2016 05:08:22 PM,02/10/2016 05:08:39 PM,02/10/2016 05:35:15 PM,02/10/2016 06:00:38 PM,02/10/2016 06:18:18 PM,Code 2 Transport,02/10/2016 07:04:24 PM,1500 Block of PERSHING DR,Presidio,94129,B99,51,4617,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.7928431532625, -122.477522249769)",160412771-66 +120430293,E03,12014497,Medical Incident,02/12/2012,02/12/2012,02/12/2012 07:47:32 PM,02/12/2012 07:49:55 PM,02/12/2012 07:50:13 PM,02/12/2012 07:51:33 PM,02/12/2012 07:53:09 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/12/2012 08:08:52 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",120430293-E03 +121850278,86,12061699,Medical Incident,07/03/2012,07/03/2012,07/03/2012 04:41:21 PM,07/03/2012 04:43:41 PM,07/03/2012 04:45:41 PM,07/03/2012 04:45:55 PM,07/03/2012 04:54:40 PM,07/03/2012 05:11:25 PM,07/03/2012 05:56:00 PM,Code 2 Transport,07/03/2012 06:01:09 PM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",121850278-86 +131750032,66,13059255,Medical Incident,06/24/2013,06/23/2013,06/24/2013 03:42:22 AM,06/24/2013 03:42:55 AM,06/24/2013 03:43:18 AM,06/24/2013 03:43:38 AM,06/24/2013 03:48:19 AM,06/24/2013 04:07:20 AM,06/24/2013 04:21:10 AM,Code 2 Transport,06/24/2013 04:51:55 AM,600 Block of STEINER ST,SF,94117,B05,21,3631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.7751510634662, -122.432804075352)",131750032-66 +160263489,53,16010464,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:40:02 PM,01/26/2016 08:41:37 PM,01/26/2016 08:42:10 PM,01/26/2016 08:42:23 PM,01/26/2016 08:50:42 PM,01/26/2016 09:01:08 PM,01/26/2016 09:06:29 PM,Code 2 Transport,01/26/2016 09:58:40 PM,2100 Block of POLK ST,San Francisco,94109,B04,41,3126,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7964138831057, -122.421932885069)",160263489-53 +140540191,T19,14018294,Gas Leak (Natural and LP Gases),02/23/2014,02/23/2014,02/23/2014 02:59:27 PM,02/23/2014 03:00:17 PM,02/23/2014 03:00:57 PM,02/23/2014 03:01:55 PM,02/23/2014 03:04:57 PM,04/25/2016 01:48:04 PM,04/25/2016 01:48:04 PM,Fire,02/23/2014 03:27:09 PM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",140540191-T19 +160153442,85,16006143,Medical Incident,01/15/2016,01/15/2016,01/15/2016 07:53:56 PM,01/15/2016 07:56:57 PM,01/15/2016 07:57:41 PM,01/15/2016 07:57:56 PM,01/15/2016 08:04:38 PM,01/15/2016 08:24:15 PM,01/15/2016 08:26:52 PM,Code 2 Transport,01/15/2016 08:42:39 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160153442-85 +121370073,E19,12045431,Alarms,05/16/2012,05/15/2012,05/16/2012 07:05:02 AM,05/16/2012 07:06:31 AM,05/16/2012 07:07:00 AM,05/16/2012 07:08:59 AM,05/16/2012 07:11:30 AM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,Other,05/16/2012 07:34:22 AM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",121370073-E19 +132460049,E41,13082898,Electrical Hazard,09/03/2013,09/02/2013,09/03/2013 05:58:12 AM,09/03/2013 06:00:58 AM,09/03/2013 06:01:23 AM,09/03/2013 06:03:05 AM,09/03/2013 06:06:10 AM,04/25/2016 01:50:59 PM,04/25/2016 01:50:59 PM,Fire,09/03/2013 06:17:08 AM,1900 Block of HYDE ST,SF,94109,B01,41,1611,3,3,3,true,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.7986550933007, -122.418868737628)",132460049-E41 +160091221,77,16003606,Medical Incident,01/09/2016,01/09/2016,01/09/2016 11:03:19 AM,01/09/2016 11:04:36 AM,01/09/2016 11:04:58 AM,01/09/2016 11:06:05 AM,01/09/2016 11:09:17 AM,01/09/2016 11:23:20 AM,01/09/2016 11:39:47 AM,Code 2 Transport,01/09/2016 12:06:30 PM,1300 Block of 30TH AVE,San Francisco,94122,B08,23,7536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7621150161966, -122.488775364037)",160091221-77 +113520359,99,11117013,Medical Incident,12/18/2011,12/18/2011,12/18/2011 09:26:39 PM,12/18/2011 09:27:43 PM,12/18/2011 09:27:58 PM,12/18/2011 09:28:49 PM,12/18/2011 09:29:51 PM,12/18/2011 09:51:56 PM,12/18/2011 10:13:03 PM,Code 2 Transport,12/18/2011 10:21:55 PM,2200 Block of BAY ST,SF,94123,B04,16,4212,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8016779500291, -122.444047061113)",113520359-99 +133350135,B07,13113533,Water Rescue,12/01/2013,12/01/2013,12/01/2013 10:48:00 AM,12/01/2013 10:49:43 AM,12/01/2013 10:51:22 AM,12/01/2013 10:51:42 AM,12/01/2013 10:56:02 AM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,12/01/2013 11:03:44 AM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,Fire,1,CHIEF,3,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",133350135-B07 +160502970,53,16020205,Medical Incident,02/19/2016,02/19/2016,02/19/2016 06:20:39 PM,02/19/2016 06:20:39 PM,02/19/2016 06:21:32 PM,02/19/2016 06:21:44 PM,02/19/2016 06:39:40 PM,02/19/2016 06:39:42 PM,02/19/2016 06:52:57 PM,Code 2 Transport,02/19/2016 07:34:33 PM,LEAVENWORTH ST/POST ST,San Francisco,94109,B04,3,1543,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7874538432357, -122.414995423077)",160502970-53 +113410213,B09,11113067,Alarms,12/07/2011,12/07/2011,12/07/2011 12:47:48 PM,12/07/2011 12:48:33 PM,12/07/2011 12:48:46 PM,12/07/2011 12:50:12 PM,12/07/2011 12:56:31 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/07/2011 01:07:53 PM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,false,,1,CHIEF,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",113410213-B09 +160773291,88,16030736,Medical Incident,03/17/2016,03/17/2016,03/17/2016 06:19:39 PM,03/17/2016 06:20:31 PM,03/17/2016 06:21:59 PM,03/17/2016 06:21:59 PM,03/17/2016 06:21:59 PM,03/17/2016 06:38:41 PM,03/17/2016 06:59:47 PM,Code 2 Transport,03/17/2016 07:51:21 PM,CESAR CHAVEZ ST/VALENCIA ST,San Francisco,94110,B06,11,555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7481252844229, -122.420278831044)",160773291-88 +160253526,75,16010117,Medical Incident,01/25/2016,01/25/2016,01/25/2016 09:10:59 PM,01/25/2016 09:14:03 PM,01/25/2016 09:14:15 PM,01/25/2016 09:14:23 PM,01/25/2016 09:31:49 PM,01/25/2016 09:44:37 PM,01/25/2016 10:06:38 PM,Code 2 Transport,01/25/2016 10:47:58 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160253526-75 +102370198,KM05,10074728,Medical Incident,08/25/2010,08/25/2010,08/25/2010 12:48:19 PM,08/25/2010 12:49:37 PM,08/25/2010 12:50:25 PM,08/25/2010 12:51:13 PM,08/25/2010 12:54:46 PM,08/25/2010 01:19:33 PM,08/25/2010 01:21:39 PM,Code 2 Transport,08/25/2010 01:47:38 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,PRIVATE,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",102370198-KM05 +112650392,E07,11087671,Traffic Collision,09/22/2011,09/22/2011,09/22/2011 08:27:21 PM,09/22/2011 08:27:21 PM,09/22/2011 08:28:08 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,Other,09/22/2011 08:30:19 PM,VALENCIA ST/24TH ST,SF,94110,B06,11,5512,3,3,3,true,,1,ENGINE,3,6,9,Mission,"(37.7521036457482, -122.420664802284)",112650392-E07 +120350365,59,12011792,Medical Incident,02/04/2012,02/04/2012,02/04/2012 09:29:55 PM,02/04/2012 09:30:43 PM,02/04/2012 09:30:53 PM,02/04/2012 09:30:58 PM,04/25/2016 02:00:17 PM,02/04/2012 09:52:03 PM,02/04/2012 10:08:24 PM,Code 2 Transport,02/04/2012 10:31:25 PM,1400 Block of SANCHEZ ST,SF,94131,B06,11,5552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7463573166581, -122.429223693855)",120350365-59 +160052900,AM06,16002112,Medical Incident,01/05/2016,01/05/2016,01/05/2016 06:10:43 PM,01/05/2016 06:12:46 PM,01/05/2016 06:13:26 PM,01/05/2016 06:14:10 PM,01/05/2016 06:25:21 PM,01/05/2016 06:35:33 PM,01/05/2016 06:56:18 PM,Code 2 Transport,01/05/2016 07:17:08 PM,1700 Block of VALLEJO ST,San Francisco,94123,B04,38,3232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7963225459704, -122.426060344087)",160052900-AM06 +160330580,65,16012862,Medical Incident,02/02/2016,02/01/2016,02/02/2016 07:20:07 AM,02/02/2016 07:21:39 AM,02/02/2016 07:22:04 AM,02/02/2016 07:22:12 AM,02/02/2016 07:33:16 AM,02/02/2016 08:02:46 AM,02/02/2016 08:30:13 AM,Code 2 Transport,02/02/2016 09:03:24 AM,200 Block of ARBOR ST,San Francisco,94131,B06,26,8174,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Glen Park,"(37.7375186872074, -122.437845566806)",160330580-65 +120990184,E21,12032812,Medical Incident,04/08/2012,04/08/2012,04/08/2012 02:48:39 PM,04/08/2012 02:49:05 PM,04/08/2012 02:49:13 PM,04/08/2012 02:49:37 PM,04/08/2012 02:51:59 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 02:58:07 PM,0 Block of SHRADER ST,SF,94117,B05,21,4542,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",120990184-E21 +160061758,57,16002401,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:54:19 PM,01/06/2016 12:56:33 PM,01/06/2016 01:00:52 PM,01/06/2016 01:01:04 PM,01/06/2016 01:18:33 PM,01/06/2016 01:24:19 PM,01/06/2016 01:41:18 PM,Code 2 Transport,01/06/2016 02:23:55 PM,2300 Block of STOCKTON ST,San Francisco,94133,B01,28,1262,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8074362035545, -122.410522944209)",160061758-57 +112020144,E15,11066605,Alarms,07/21/2011,07/21/2011,07/21/2011 10:29:54 AM,07/21/2011 10:30:48 AM,07/21/2011 10:31:05 AM,07/21/2011 10:31:46 AM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/21/2011 10:50:46 AM,4100 Block of 19TH AVE,SF,94132,B09,33,8417,3,3,3,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7140861959195, -122.469495385338)",112020144-E15 +112970405,73,11098698,Medical Incident,10/24/2011,10/24/2011,10/24/2011 09:36:45 PM,10/24/2011 09:37:31 PM,10/24/2011 09:37:40 PM,10/24/2011 09:37:49 PM,10/24/2011 09:42:18 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,No Merit,10/24/2011 09:56:22 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",112970405-73 +102970020,87,10094608,Medical Incident,10/24/2010,10/23/2010,10/24/2010 01:01:24 AM,10/24/2010 01:02:09 AM,10/24/2010 01:02:47 AM,10/24/2010 01:03:10 AM,10/24/2010 01:11:52 AM,10/24/2010 01:34:49 AM,10/24/2010 01:49:58 AM,Code 2 Transport,10/24/2010 02:05:42 AM,400 Block of STOCKTON ST,SF,94108,B01,1,1324,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7899091346907, -122.406975887776)",102970020-87 +103430004,56,10109696,Medical Incident,12/09/2010,12/08/2010,12/09/2010 12:08:25 AM,12/09/2010 12:09:28 AM,12/09/2010 12:09:59 AM,12/09/2010 12:11:20 AM,12/09/2010 12:17:38 AM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/09/2010 12:23:07 AM,2800 Block of MISSION ST,SF,94110,B06,11,5529,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",103430004-56 +110080219,92,11002704,Medical Incident,01/08/2011,01/08/2011,01/08/2011 02:30:00 PM,01/08/2011 02:30:39 PM,01/08/2011 02:31:20 PM,01/08/2011 02:31:35 PM,01/08/2011 02:35:02 PM,01/08/2011 03:01:17 PM,01/08/2011 03:21:31 PM,Code 2 Transport,01/08/2011 03:53:18 PM,700 Block of 11TH AVE,SF,94118,B07,31,7143,3,3,3,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.7741941609941, -122.469090601937)",110080219-92 +111060116,RC1,11035021,Medical Incident,04/16/2011,04/16/2011,04/16/2011 09:47:24 AM,04/16/2011 09:47:42 AM,04/16/2011 09:47:56 AM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/16/2011 10:02:19 AM,400 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7810688918781, -122.407387172098)",111060116-RC1 +160312294,AM08,16012210,Medical Incident,01/31/2016,01/31/2016,01/31/2016 03:19:25 PM,01/31/2016 03:19:25 PM,01/31/2016 04:04:16 PM,01/31/2016 04:04:48 PM,01/31/2016 04:12:19 PM,01/31/2016 04:22:53 PM,01/31/2016 04:33:22 PM,Code 2 Transport,01/31/2016 05:06:57 PM,700 Block of CAPP ST,San Francisco,94110,B06,7,5472,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7547064357942, -122.417513465479)",160312294-AM08 +102410040,72,10075906,Medical Incident,08/29/2010,08/28/2010,08/29/2010 03:01:59 AM,08/29/2010 03:04:39 AM,08/29/2010 03:08:10 AM,08/29/2010 03:08:19 AM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,04/25/2016 02:08:51 PM,300 Block of RICHLAND AVE,SF,94110,B06,32,5644,1,3,3,true,,1,MEDIC,3,6,9,Bernal Heights,"(37.7357456024866, -122.418457095156)",102410040-72 +132880085,AM04,13097904,Medical Incident,10/15/2013,10/14/2013,10/15/2013 07:53:55 AM,10/15/2013 07:57:08 AM,10/15/2013 07:58:09 AM,10/15/2013 07:59:06 AM,10/15/2013 08:02:48 AM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,No Merit,10/15/2013 08:13:21 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",132880085-AM04 +122700061,E19,12089029,Medical Incident,09/26/2012,09/26/2012,09/26/2012 08:11:59 AM,09/26/2012 08:13:28 AM,09/26/2012 08:13:48 AM,09/26/2012 08:15:19 AM,09/26/2012 08:18:04 AM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,09/26/2012 08:31:12 AM,2900 Block of 26TH AVE,SF,94132,B08,19,8735,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.733423029706, -122.482013815028)",122700061-E19 +133000235,T03,13101988,Structure Fire,10/27/2013,10/27/2013,10/27/2013 02:45:49 PM,10/27/2013 02:46:18 PM,10/27/2013 02:46:44 PM,04/25/2016 01:50:03 PM,10/27/2013 02:49:20 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 02:52:22 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",133000235-T03 +122880184,B08,12095284,Gas Leak (Natural and LP Gases),10/14/2012,10/14/2012,10/14/2012 01:12:00 PM,10/14/2012 01:13:36 PM,10/14/2012 01:13:45 PM,10/14/2012 01:17:36 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 01:21:21 PM,TARAVAL ST/19TH AV,SF,94116,B08,40,7376,3,3,3,false,Alarm,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7430518135439, -122.475644467981)",122880184-B08 +113040157,E37,11100902,Medical Incident,10/31/2011,10/31/2011,10/31/2011 11:22:40 AM,10/31/2011 11:22:48 AM,10/31/2011 11:22:58 AM,10/31/2011 11:24:28 AM,10/31/2011 11:26:46 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 11:38:18 AM,200 Block of CONNECTICUT ST,SF,94107,B03,37,2462,3,3,3,true,,1,ENGINE,1,3,10,Potrero Hill,"(37.7631535261451, -122.397622855701)",113040157-E37 +120790199,68,12026242,Medical Incident,03/19/2012,03/19/2012,03/19/2012 12:54:16 PM,03/19/2012 12:57:32 PM,03/19/2012 12:57:49 PM,03/19/2012 12:58:07 PM,03/19/2012 01:08:40 PM,03/19/2012 01:28:01 PM,03/19/2012 01:50:20 PM,Code 2 Transport,03/19/2012 02:12:26 PM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",120790199-68 +113020381,E01,11100367,Medical Incident,10/29/2011,10/29/2011,10/29/2011 10:52:34 PM,10/29/2011 10:54:04 PM,10/29/2011 10:54:20 PM,10/29/2011 10:54:30 PM,10/29/2011 10:54:55 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/29/2011 11:09:18 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,,1,ENGINE,1,3,3,Tenderloin,"(37.7854941424186, -122.408270724034)",113020381-E01 +132640249,E14,13089560,Structure Fire,09/21/2013,09/21/2013,09/21/2013 02:01:11 PM,09/21/2013 02:01:12 PM,09/21/2013 02:02:05 PM,09/21/2013 02:04:54 PM,09/21/2013 02:05:49 PM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Fire,09/21/2013 02:19:57 PM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",132640249-E14 +113430148,AM16,11113712,Medical Incident,12/09/2011,12/09/2011,12/09/2011 10:35:53 AM,12/09/2011 10:37:09 AM,12/09/2011 10:37:55 AM,04/25/2016 02:01:14 PM,12/09/2011 10:50:17 AM,12/09/2011 11:09:40 AM,04/25/2016 02:01:14 PM,Code 2 Transport,12/09/2011 11:42:37 AM,1500 Block of 21ST AVE,SF,94122,B08,22,7427,3,3,3,false,,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7588080678008, -122.478870866013)",113430148-AM16 +113300212,E01,11109468,Medical Incident,11/26/2011,11/26/2011,11/26/2011 05:59:59 PM,11/26/2011 06:01:31 PM,11/26/2011 06:01:51 PM,04/25/2016 02:01:27 PM,11/26/2011 06:04:02 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/26/2011 06:08:17 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",113300212-E01 +122360096,89,12078125,Medical Incident,08/23/2012,08/23/2012,08/23/2012 10:03:13 AM,08/23/2012 10:05:32 AM,08/23/2012 10:05:42 AM,04/25/2016 01:57:06 PM,08/23/2012 10:10:24 AM,08/23/2012 10:39:53 AM,08/23/2012 10:43:31 AM,Code 2 Transport,08/23/2012 11:30:35 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",122360096-89 +111140289,D2,11037777,Structure Fire,04/24/2011,04/24/2011,04/24/2011 09:40:54 PM,04/24/2011 09:42:23 PM,04/24/2011 09:42:42 PM,04/24/2011 09:43:43 PM,04/24/2011 09:44:30 PM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 10:02:36 PM,1400 Block of EDDY ST,SF,94115,B05,5,3515,3,3,3,false,,1,CHIEF,2,5,5,Western Addition,"(37.7815912239311, -122.431479968624)",111140289-D2 +132060012,E01,13069612,Medical Incident,07/25/2013,07/24/2013,07/25/2013 01:06:46 AM,07/25/2013 01:08:11 AM,07/25/2013 01:09:02 AM,07/25/2013 01:10:35 AM,07/25/2013 01:12:12 AM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Other,07/25/2013 01:21:42 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",132060012-E01 +110510008,KM11,11016736,Medical Incident,02/20/2011,02/19/2011,02/20/2011 12:28:20 AM,02/20/2011 12:29:18 AM,02/20/2011 12:30:16 AM,02/20/2011 12:30:57 AM,02/20/2011 12:34:29 AM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Patient Declined Transport,02/20/2011 12:39:35 AM,200 Block of CAPP ST,SF,94110,B02,7,5246,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7627024067539, -122.418417366729)",110510008-KM11 +160191662,60,16007629,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:38:49 PM,01/19/2016 12:40:26 PM,01/19/2016 12:40:46 PM,01/19/2016 12:41:17 PM,01/19/2016 12:45:51 PM,01/19/2016 01:06:41 PM,01/19/2016 01:12:13 PM,Code 2 Transport,01/19/2016 01:53:54 PM,100 Block of OAK ST,San Francisco,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",160191662-60 +103140297,B04,10100771,Alarms,11/10/2010,11/10/2010,11/10/2010 06:00:30 PM,11/10/2010 06:01:36 PM,11/10/2010 06:02:04 PM,11/10/2010 06:03:03 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,Other,11/10/2010 06:12:42 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.8058923703038, -122.431246520303)",103140297-B04 +133140023,RS1,13106621,Structure Fire,11/10/2013,11/09/2013,11/10/2013 01:34:27 AM,11/10/2013 01:35:43 AM,11/10/2013 01:36:36 AM,11/10/2013 01:38:17 AM,11/10/2013 01:41:56 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/10/2013 02:02:28 AM,1300 Block of CLAY ST,SF,94109,B01,41,1536,3,3,3,false,Alarm,1,RESCUE SQUAD,8,1,3,Nob Hill,"(37.7931726101237, -122.415302531795)",133140023-RS1 +110560241,T07,11018493,Alarms,02/25/2011,02/25/2011,02/25/2011 04:14:19 PM,02/25/2011 04:15:08 PM,02/25/2011 04:15:35 PM,02/25/2011 04:18:38 PM,02/25/2011 04:20:06 PM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/25/2011 04:28:07 PM,0 Block of ISIS ST,SF,94103,B02,36,5121,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.7701114351492, -122.414683702768)",110560241-T07 +123090399,E41,12102938,Medical Incident,11/04/2012,11/04/2012,11/04/2012 09:27:05 PM,11/04/2012 09:29:37 PM,11/04/2012 09:29:46 PM,11/04/2012 09:30:44 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 09:32:09 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,E,3,3,false,Potentially Life-Threatening,1,ENGINE,4,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",123090399-E41 +121930263,B08,12064309,Other,07/11/2012,07/11/2012,07/11/2012 04:44:35 PM,07/11/2012 04:45:09 PM,07/11/2012 04:46:09 PM,07/11/2012 04:46:49 PM,07/11/2012 04:52:11 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 05:51:29 PM,31ST AV/ORTEGA ST,SF,94116,B08,18,7533,3,3,3,false,Alarm,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7518068712257, -122.489193567556)",121930263-B08 +103040270,B02,10097196,Water Rescue,10/31/2010,10/31/2010,10/31/2010 03:55:53 PM,10/31/2010 03:55:57 PM,10/31/2010 03:57:51 PM,10/31/2010 04:00:22 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 04:02:17 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,E,E,3,false,,1,CHIEF,16,1,3,North Beach,"(37.8081576930541, -122.412496867032)",103040270-B02 +130520227,82,13017613,Medical Incident,02/21/2013,02/21/2013,02/21/2013 02:37:41 PM,02/21/2013 02:39:16 PM,02/21/2013 02:56:23 PM,02/21/2013 02:56:40 PM,02/21/2013 03:06:12 PM,02/21/2013 03:24:14 PM,02/21/2013 03:30:46 PM,Code 2 Transport,02/21/2013 04:05:50 PM,200 Block of VICTORIA ST,SF,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7152017916532, -122.465379533381)",130520227-82 +123350309,E12,12111419,Administrative,11/30/2012,11/30/2012,11/30/2012 03:27:47 PM,11/30/2012 03:27:58 PM,11/30/2012 03:28:58 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,11/30/2012 03:29:41 PM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",123350309-E12 +160553721,AM18,16022148,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:35:43 PM,02/24/2016 08:35:43 PM,02/24/2016 08:36:59 PM,02/24/2016 08:37:24 PM,02/24/2016 08:46:20 PM,02/24/2016 09:13:18 PM,02/24/2016 09:21:39 PM,Code 2 Transport,02/24/2016 10:02:36 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160553721-AM18 +110020198,RC2,11000675,Medical Incident,01/02/2011,01/02/2011,01/02/2011 01:55:17 PM,01/02/2011 01:55:41 PM,01/02/2011 01:55:53 PM,01/02/2011 01:58:33 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 02:01:56 PM,2500 Block of 25TH AVE,SF,94116,B08,40,7462,3,3,3,true,,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7399677614762, -122.481993144476)",110020198-RC2 +160441351,71,16017661,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:30:56 AM,02/13/2016 11:33:39 AM,02/13/2016 11:34:01 AM,02/13/2016 11:34:18 AM,02/13/2016 11:53:01 AM,02/13/2016 12:04:40 PM,02/13/2016 12:10:58 PM,Code 2 Transport,02/13/2016 01:13:27 PM,2400 Block of HARRISON ST,San Francisco,94110,B06,7,545,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7582246777645, -122.412493470285)",160441351-71 +103180115,94,10101875,Medical Incident,11/14/2010,11/14/2010,11/14/2010 08:39:19 AM,11/14/2010 08:40:04 AM,11/14/2010 08:40:18 AM,11/14/2010 08:43:44 AM,11/14/2010 08:55:50 AM,11/14/2010 09:00:59 AM,11/14/2010 09:30:24 AM,Code 2 Transport,11/14/2010 09:50:55 AM,800 Block of GARFIELD ST,SF,94132,B09,19,8447,3,2,2,true,,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7197041547524, -122.470302710071)",103180115-94 +160210947,71,16008299,Medical Incident,01/21/2016,01/21/2016,01/21/2016 09:13:57 AM,01/21/2016 09:14:37 AM,01/21/2016 09:15:08 AM,01/21/2016 09:17:03 AM,01/21/2016 09:23:58 AM,01/21/2016 09:43:27 AM,01/21/2016 09:56:48 AM,Code 2 Transport,01/21/2016 10:49:27 AM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7695797471896, -122.419876917134)",160210947-71 +120620381,E43,12020568,Medical Incident,03/02/2012,03/02/2012,03/02/2012 10:40:19 PM,03/02/2012 10:44:17 PM,03/02/2012 10:44:26 PM,04/25/2016 01:59:52 PM,03/02/2012 10:47:56 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/02/2012 11:33:39 PM,1300 Block of GENEVA AVE,SF,94112,B09,43,6173,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7132022363182, -122.434194120521)",120620381-E43 +113070176,E28,11101982,Administrative,11/03/2011,11/03/2011,11/03/2011 12:41:33 PM,11/03/2011 12:41:36 PM,11/03/2011 12:42:15 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/03/2011 12:42:40 PM,1800 Block of STOCKTON ST,SF,94133,B01,28,1335,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8027782547729, -122.409586942281)",113070176-E28 +131470276,AM04,13049966,Medical Incident,05/27/2013,05/27/2013,05/27/2013 08:18:55 PM,05/27/2013 08:20:01 PM,05/27/2013 08:20:56 PM,05/27/2013 08:21:39 PM,05/27/2013 08:24:37 PM,05/27/2013 08:41:47 PM,05/27/2013 08:59:59 PM,Code 2 Transport,05/27/2013 09:40:14 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",131470276-AM04 +102760237,E11,10087777,Medical Incident,10/03/2010,10/03/2010,10/03/2010 02:57:20 PM,10/03/2010 02:58:35 PM,10/03/2010 02:59:20 PM,10/03/2010 03:00:08 PM,10/03/2010 03:02:05 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 03:16:58 PM,1200 Block of VALENCIA ST,SF,94110,B06,11,5512,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7528993636297, -122.420807462822)",102760237-E11 +160920547,64,16036336,Medical Incident,04/01/2016,03/31/2016,04/01/2016 07:02:38 AM,04/01/2016 07:04:48 AM,04/01/2016 07:06:33 AM,04/01/2016 07:06:56 AM,04/01/2016 07:30:32 AM,04/01/2016 07:44:42 AM,04/01/2016 08:11:49 AM,Patient Declined Transport,04/01/2016 08:45:25 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160920547-64 +160720281,KM07,16028451,Medical Incident,03/12/2016,03/11/2016,03/12/2016 01:57:12 AM,03/12/2016 01:59:09 AM,03/12/2016 02:01:34 AM,03/12/2016 02:01:52 AM,03/12/2016 02:11:08 AM,03/12/2016 02:28:24 AM,03/12/2016 02:34:36 AM,Code 2 Transport,03/12/2016 02:52:24 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160720281-KM07 +113630059,92,11120494,Medical Incident,12/29/2011,12/28/2011,12/29/2011 07:42:07 AM,12/29/2011 07:42:45 AM,12/29/2011 07:42:57 AM,12/29/2011 07:43:15 AM,12/29/2011 07:52:30 AM,12/29/2011 08:04:02 AM,12/29/2011 08:14:57 AM,Code 2 Transport,12/29/2011 08:41:12 AM,4000 Block of 19TH ST,SF,94114,B06,6,5437,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7593350322467, -122.433185899608)",113630059-92 +140320075,E14,14010752,Smoke Investigation (Outside),02/01/2014,01/31/2014,02/01/2014 07:25:50 AM,02/01/2014 07:25:50 AM,02/01/2014 07:45:22 AM,02/01/2014 07:45:45 AM,02/01/2014 07:57:53 AM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Fire,02/01/2014 09:45:50 AM,CALL BOX: PALACE OF LEGION OF HONOR,SF,94121,B07,34,7235,,3,3,true,Alarm,1,ENGINE,3,7,1,Lincoln Park,"(37.7849108847772, -122.499514565485)",140320075-E14 +123450362,B09,12115475,Alarms,12/10/2012,12/10/2012,12/10/2012 06:56:28 PM,12/10/2012 06:56:32 PM,12/10/2012 06:56:38 PM,12/10/2012 06:57:47 PM,12/10/2012 07:03:44 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 07:04:02 PM,200 Block of ARLETA AVE,SF,94134,B09,44,6312,3,3,3,false,Alarm,1,CHIEF,2,9,10,Visitacion Valley,"(37.7141378430387, -122.40785339643)",123450362-B09 +103450154,87,10110554,Medical Incident,12/11/2010,12/11/2010,12/11/2010 10:26:37 AM,12/11/2010 10:27:25 AM,12/11/2010 10:28:14 AM,12/11/2010 10:28:32 AM,12/11/2010 10:35:11 AM,12/11/2010 10:59:40 AM,12/11/2010 11:09:25 AM,Code 2 Transport,12/11/2010 11:38:04 AM,300 Block of 21ST AVE,SF,94121,B07,14,7172,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7812431352608, -122.480589412063)",103450154-87 +160821920,50,16032577,Medical Incident,03/22/2016,03/22/2016,03/22/2016 01:28:22 PM,03/22/2016 01:28:22 PM,03/22/2016 01:28:40 PM,03/22/2016 01:28:50 PM,03/22/2016 01:37:27 PM,03/22/2016 01:47:18 PM,03/22/2016 02:05:14 PM,Code 2 Transport,03/22/2016 02:49:58 PM,100 Block of SANTOS ST,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",160821920-50 +112030447,86,11067239,Medical Incident,07/22/2011,07/22/2011,07/22/2011 11:52:32 PM,07/22/2011 11:53:48 PM,07/22/2011 11:55:30 PM,07/22/2011 11:55:40 PM,07/23/2011 12:03:27 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Patient Declined Transport,07/23/2011 12:24:06 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,1,1,2,true,,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",112030447-86 +120480184,D2,12015910,Structure Fire,02/17/2012,02/17/2012,02/17/2012 01:27:04 PM,02/17/2012 01:27:42 PM,02/17/2012 01:27:59 PM,02/17/2012 01:28:11 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/17/2012 01:36:18 PM,1300 Block of 31ST AVE,SF,94122,B08,23,7536,3,3,3,false,Fire,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7620676593975, -122.489849528292)",120480184-D2 +112440178,T03,11080440,Structure Fire,09/01/2011,09/01/2011,09/01/2011 12:53:34 PM,09/01/2011 12:53:35 PM,09/01/2011 12:53:51 PM,09/01/2011 12:54:50 PM,09/01/2011 12:55:57 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 12:56:01 PM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,,1,TRUCK,2,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",112440178-T03 +132170157,E11,13073279,Medical Incident,08/05/2013,08/05/2013,08/05/2013 12:23:03 PM,08/05/2013 12:23:19 PM,08/05/2013 12:24:01 PM,08/05/2013 12:25:25 PM,08/05/2013 12:26:27 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Patient Declined Transport,08/05/2013 12:36:16 PM,24TH ST/DOLORES ST,SF,94110,B06,11,5523,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.751841785704, -122.4251525443)",132170157-E11 +160232986,52,16009279,Medical Incident,01/23/2016,01/23/2016,01/23/2016 06:51:19 PM,01/23/2016 06:51:19 PM,01/23/2016 06:52:32 PM,01/23/2016 06:52:41 PM,01/23/2016 07:10:06 PM,01/23/2016 07:34:46 PM,01/23/2016 07:56:28 PM,Code 2 Transport,01/23/2016 08:34:23 PM,1200 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7211257483752, -122.389791072632)",160232986-52 +160151114,AM10,16005918,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:04:03 AM,01/15/2016 10:04:03 AM,01/15/2016 10:05:03 AM,01/15/2016 10:05:42 AM,01/15/2016 10:15:41 AM,01/15/2016 10:21:46 AM,01/15/2016 10:37:04 AM,Code 2 Transport,01/15/2016 11:00:21 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160151114-AM10 +113610231,E06,11119992,Medical Incident,12/27/2011,12/27/2011,12/27/2011 04:37:05 PM,12/27/2011 04:38:20 PM,12/27/2011 04:38:32 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 04:40:24 PM,16TH ST/VALENCIA ST,SF,94103,B02,6,5226,2,2,2,true,,1,ENGINE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",113610231-E06 +130720331,E38,13024119,Alarms,03/13/2013,03/13/2013,03/13/2013 06:40:32 PM,03/13/2013 06:41:29 PM,03/13/2013 06:41:42 PM,03/13/2013 06:42:46 PM,03/13/2013 06:44:05 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 06:45:28 PM,2400 Block of BUCHANAN ST,SF,94115,B04,38,3436,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7924401819216, -122.431245878232)",130720331-E38 +160703668,52,16028040,Medical Incident,03/10/2016,03/10/2016,03/10/2016 10:18:45 PM,03/10/2016 10:18:45 PM,03/10/2016 10:19:39 PM,03/10/2016 10:19:48 PM,03/10/2016 10:24:50 PM,03/10/2016 10:49:27 PM,03/10/2016 11:01:25 PM,Code 2 Transport,03/10/2016 11:36:44 PM,LAGUNA ST/PAGE ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7736662295799, -122.42570021092)",160703668-52 +160010547,AM20,16000110,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:02:26 AM,01/01/2016 02:05:21 AM,01/01/2016 02:06:00 AM,01/01/2016 02:12:54 AM,01/01/2016 02:32:33 AM,01/01/2016 02:32:36 AM,01/01/2016 02:54:44 AM,Code 2 Transport,01/01/2016 03:38:24 AM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",160010547-AM20 +130390049,E17,13013195,Medical Incident,02/08/2013,02/07/2013,02/08/2013 04:03:24 AM,02/08/2013 04:04:19 AM,02/08/2013 04:05:34 AM,02/08/2013 04:07:53 AM,02/08/2013 04:11:35 AM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Other,02/08/2013 04:16:26 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",130390049-E17 +121200257,T01,12039898,Alarms,04/29/2012,04/29/2012,04/29/2012 04:06:54 PM,04/29/2012 04:06:55 PM,04/29/2012 04:11:49 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 04:12:02 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",121200257-T01 +133530384,T02,13120085,Structure Fire,12/19/2013,12/19/2013,12/19/2013 10:22:41 PM,12/19/2013 10:24:15 PM,12/19/2013 10:24:56 PM,12/19/2013 10:26:35 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/19/2013 10:29:38 PM,500 Block of JACKSON ST,SF,94111,B01,13,1232,3,3,3,false,Alarm,1,TRUCK,9,1,3,Chinatown,"(37.7962022664393, -122.404766823685)",133530384-T02 +133540319,E17,13120375,Alarms,12/20/2013,12/20/2013,12/20/2013 05:00:25 PM,12/20/2013 05:02:00 PM,12/20/2013 05:02:17 PM,12/20/2013 05:04:26 PM,12/20/2013 05:06:21 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Other,12/20/2013 05:06:59 PM,800 Block of JAMESTOWN AVE,SF,94124,B10,17,6642,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7172230540399, -122.391149944463)",133540319-E17 +160443246,KM03,16017842,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:15:23 PM,02/13/2016 08:16:00 PM,02/13/2016 08:20:24 PM,02/13/2016 08:20:24 PM,02/13/2016 08:29:02 PM,02/13/2016 08:43:12 PM,02/13/2016 08:58:06 PM,Code 2 Transport,02/13/2016 09:36:26 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160443246-KM03 +131690274,E34,13057445,Alarms,06/18/2013,06/18/2013,06/18/2013 03:24:28 PM,06/18/2013 03:25:01 PM,06/18/2013 03:25:10 PM,06/18/2013 03:26:12 PM,06/18/2013 03:29:53 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 04:33:34 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,Alarm,1,ENGINE,1,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",131690274-E34 +121110317,E22,12036827,Traffic Collision,04/20/2012,04/20/2012,04/20/2012 05:26:39 PM,04/20/2012 05:26:39 PM,04/20/2012 05:27:02 PM,04/20/2012 05:28:28 PM,04/20/2012 05:31:59 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Patient Declined Transport,04/20/2012 05:56:47 PM,1600 Block of 12TH AVE,SF,94122,B08,22,735,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.757368162237, -122.469135934359)",121110317-E22 +132510023,E07,13084670,Medical Incident,09/08/2013,09/07/2013,09/08/2013 01:13:52 AM,09/08/2013 01:14:27 AM,09/08/2013 01:17:16 AM,09/08/2013 01:18:15 AM,09/08/2013 01:20:20 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 01:21:59 AM,17TH ST/MISSION ST,SF,94110,B02,7,5246,2,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7634292740134, -122.419512736792)",132510023-E07 +160301526,88,16011762,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:13:21 AM,01/30/2016 11:14:03 AM,01/30/2016 11:14:17 AM,01/30/2016 11:14:35 AM,01/30/2016 11:27:04 AM,01/30/2016 11:43:24 AM,01/30/2016 11:51:33 AM,Code 2 Transport,01/30/2016 12:29:56 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",160301526-88 +160281878,KM09,16011096,Medical Incident,01/28/2016,01/28/2016,01/28/2016 01:28:15 PM,01/28/2016 01:29:39 PM,01/28/2016 01:30:44 PM,01/28/2016 01:32:14 PM,01/28/2016 01:35:10 PM,01/28/2016 01:55:16 PM,01/28/2016 02:12:28 PM,Code 2 Transport,01/28/2016 03:01:47 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160281878-KM09 +131130267,E07,13038168,Medical Incident,04/23/2013,04/23/2013,04/23/2013 04:18:33 PM,04/23/2013 04:20:55 PM,04/23/2013 04:21:56 PM,04/23/2013 04:22:49 PM,04/23/2013 04:27:16 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 04:27:20 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7610397684815, -122.419213667994)",131130267-E07 +110490181,KM04,11016174,Medical Incident,02/18/2011,02/18/2011,02/18/2011 11:59:37 AM,02/18/2011 12:00:42 PM,02/18/2011 12:01:11 PM,02/18/2011 12:02:07 PM,02/18/2011 12:11:14 PM,02/18/2011 12:19:51 PM,02/18/2011 12:28:35 PM,Code 2 Transport,02/18/2011 01:03:48 PM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,2,2,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",110490181-KM04 +112370254,T09,11078246,Structure Fire,08/25/2011,08/25/2011,08/25/2011 02:53:42 PM,08/25/2011 02:55:44 PM,08/25/2011 02:55:58 PM,08/25/2011 02:56:55 PM,08/25/2011 03:01:48 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 03:03:34 PM,2100 Block of 3RD ST,SF,94107,B03,29,2466,3,3,3,false,,1,TRUCK,9,10,10,Potrero Hill,"(37.7624014116489, -122.388831971629)",112370254-T09 +160882637,KM05,16035034,Medical Incident,03/28/2016,03/28/2016,03/28/2016 04:38:04 PM,03/28/2016 04:38:59 PM,03/28/2016 04:39:37 PM,03/28/2016 04:39:50 PM,03/28/2016 04:42:55 PM,03/28/2016 05:11:18 PM,03/28/2016 05:30:15 PM,Code 2 Transport,03/28/2016 06:12:16 PM,2000 Block of FILLMORE ST,San Francisco,94115,B04,38,3543,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.788419608317, -122.433811733571)",160882637-KM05 +160362585,AM12,16014323,Medical Incident,02/05/2016,02/05/2016,02/05/2016 03:32:28 PM,02/05/2016 03:33:44 PM,02/05/2016 03:45:59 PM,02/05/2016 03:47:40 PM,02/05/2016 04:02:42 PM,02/05/2016 04:11:42 PM,02/05/2016 04:33:13 PM,Code 2 Transport,02/05/2016 04:59:17 PM,200 Block of MAIN ST,San Francisco,94105,B99,35,2117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7900295956883, -122.392583899031)",160362585-AM12 +131810352,86,13061720,Medical Incident,06/30/2013,06/30/2013,06/30/2013 06:04:34 PM,06/30/2013 06:05:19 PM,06/30/2013 06:05:34 PM,06/30/2013 06:06:37 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,06/30/2013 06:11:19 PM,KINGSTON ST/MISSION ST,SF,94110,B06,32,5626,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7417604896051, -122.422366461844)",131810352-86 +160181391,56,16007209,Medical Incident,01/18/2016,01/18/2016,01/18/2016 12:08:13 PM,01/18/2016 12:10:37 PM,01/18/2016 12:11:11 PM,01/18/2016 12:11:23 PM,01/18/2016 12:16:08 PM,01/18/2016 12:30:29 PM,01/18/2016 12:41:44 PM,Code 2 Transport,01/18/2016 01:12:44 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",160181391-56 +111850308,E14,11061249,Traffic Collision,07/04/2011,07/04/2011,07/04/2011 08:33:47 PM,07/04/2011 08:35:23 PM,07/04/2011 08:36:43 PM,07/04/2011 08:37:25 PM,07/04/2011 08:40:09 PM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/04/2011 08:54:28 PM,JOHN F KENNEDY DR/TRANSVERSE DR,SF,94122,B07,14,7211,3,3,3,true,,1,ENGINE,1,7,1,Golden Gate Park,"(37.7704958787466, -122.479895426837)",111850308-E14 +130650086,E10,13021684,Medical Incident,03/06/2013,03/06/2013,03/06/2013 08:51:14 AM,03/06/2013 08:52:13 AM,03/06/2013 08:56:25 AM,03/06/2013 08:57:37 AM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,Other,03/06/2013 09:03:11 AM,300 Block of PARNASSUS AVE,SF,94117,B05,12,5155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Inner Sunset,"(37.7640840126749, -122.45593384681)",130650086-E10 +131460115,T17,13049453,Medical Incident,05/26/2013,05/25/2013,05/26/2013 07:54:28 AM,05/26/2013 07:54:52 AM,05/26/2013 07:55:38 AM,05/26/2013 07:57:06 AM,05/26/2013 08:03:25 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 08:03:37 AM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,3,2,2,false,Potentially Life-Threatening,1,TRUCK,1,10,9,Portola,"(37.7246523794049, -122.402288649686)",131460115-T17 +160563658,85,16022539,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:50:23 PM,02/25/2016 08:52:35 PM,02/25/2016 08:53:02 PM,02/25/2016 08:56:34 PM,02/25/2016 09:12:13 PM,02/25/2016 09:23:46 PM,02/25/2016 09:44:24 PM,Code 2 Transport,02/25/2016 10:25:32 PM,1900 Block of FELL ST,San Francisco,94117,B05,21,4534,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7725275124637, -122.449976001198)",160563658-85 +140090020,AM18,14003009,Medical Incident,01/09/2014,01/08/2014,01/09/2014 01:31:12 AM,01/09/2014 01:33:01 AM,01/09/2014 01:33:48 AM,01/09/2014 01:34:53 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/09/2014 01:44:40 AM,900 Block of EDDY ST,SF,94102,B02,5,3262,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",140090020-AM18 +132200192,T02,13074318,Vehicle Fire,08/08/2013,08/08/2013,08/08/2013 02:06:06 PM,08/08/2013 02:06:45 PM,08/08/2013 02:07:05 PM,08/08/2013 02:08:53 PM,08/08/2013 02:13:32 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 02:23:19 PM,BUSH ST/KEARNY ST,SF,94104,B01,13,1235,3,3,3,true,Fire,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",132200192-T02 +120680183,T17,12022574,Medical Incident,03/08/2012,03/08/2012,03/08/2012 01:53:36 PM,03/08/2012 01:54:26 PM,03/08/2012 01:55:26 PM,03/08/2012 01:56:46 PM,03/08/2012 01:59:05 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/08/2012 02:00:33 PM,1700 Block of YOSEMITE AVE,SF,94124,B10,17,6512,2,2,2,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7284996658469, -122.39444320706)",120680183-T17 +121910220,T07,12063621,Traffic Collision,07/09/2012,07/09/2012,07/09/2012 02:50:26 PM,07/09/2012 02:50:26 PM,07/09/2012 02:50:38 PM,07/09/2012 02:51:51 PM,07/09/2012 02:53:35 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 02:55:43 PM,18TH ST/VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,6,8,Mission,"(37.7617009099893, -122.421578400735)",121910220-T07 +133420296,84,13116064,Medical Incident,12/08/2013,12/08/2013,12/08/2013 05:52:31 PM,12/08/2013 05:53:45 PM,12/08/2013 05:54:36 PM,12/08/2013 05:54:59 PM,12/08/2013 05:58:11 PM,12/08/2013 06:07:52 PM,12/08/2013 06:18:59 PM,Code 2 Transport,12/08/2013 06:39:43 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",133420296-84 +160643053,KM01,16025619,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:11:27 PM,03/04/2016 06:13:08 PM,03/04/2016 06:16:31 PM,03/04/2016 06:17:57 PM,03/04/2016 06:24:29 PM,03/04/2016 06:36:33 PM,03/04/2016 06:54:21 PM,Code 2 Transport,03/04/2016 07:29:03 PM,2600 Block of UNION ST,San Francisco,94123,B04,16,4165,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.7961970378403, -122.442936823219)",160643053-KM01 +140670336,T13,14022812,Administrative,03/08/2014,03/08/2014,03/08/2014 09:13:31 PM,03/08/2014 09:13:37 PM,03/08/2014 09:13:49 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Other,03/08/2014 09:14:16 PM,500 Block of SANSOME ST,,94111,B01,13,1211,3,3,3,false,,1,TRUCK,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",140670336-T13 +111920286,E08,11063461,Alarms,07/11/2011,07/11/2011,07/11/2011 04:40:29 PM,07/11/2011 04:41:51 PM,07/11/2011 04:42:24 PM,07/11/2011 04:43:54 PM,07/11/2011 04:46:10 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 04:53:08 PM,300 Block of 7TH ST,SF,94103,B03,8,2312,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7759488172418, -122.406743783137)",111920286-E08 +130760159,KM02,13025368,Traffic Collision,03/17/2013,03/17/2013,03/17/2013 11:14:12 AM,03/17/2013 11:15:51 AM,03/17/2013 11:18:12 AM,03/17/2013 11:18:45 AM,03/17/2013 11:26:43 AM,03/17/2013 11:47:35 AM,03/17/2013 12:05:02 PM,Code 2 Transport,03/17/2013 12:42:51 PM,VAN NESS AV/FELL ST,SF,94102,B02,36,3166,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7763688687361, -122.419506294961)",130760159-KM02 +160410295,79,16016292,Medical Incident,02/10/2016,02/09/2016,02/10/2016 03:34:54 AM,02/10/2016 03:37:35 AM,02/10/2016 03:37:57 AM,02/10/2016 03:38:27 AM,02/10/2016 03:42:44 AM,02/10/2016 03:54:52 AM,02/10/2016 04:02:28 AM,Code 2 Transport,02/10/2016 04:26:41 AM,SHOTWELL ST/18TH ST,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7620340026529, -122.416077987511)",160410295-79 +132350020,55,13079184,Medical Incident,08/23/2013,08/22/2013,08/23/2013 01:41:45 AM,08/23/2013 01:42:22 AM,08/23/2013 01:42:45 AM,08/23/2013 01:43:35 AM,08/23/2013 01:51:24 AM,08/23/2013 02:03:36 AM,08/23/2013 02:19:46 AM,Other,08/23/2013 02:47:46 AM,2500 Block of 29TH AVE,SF,94116,B08,18,7523,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7397784337446, -122.486279174188)",132350020-55 +160093633,58,16003836,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:52:53 PM,01/09/2016 10:52:53 PM,01/09/2016 10:53:11 PM,01/09/2016 10:53:23 PM,01/09/2016 10:58:53 PM,01/09/2016 11:21:31 PM,01/09/2016 11:36:39 PM,Code 2 Transport,01/10/2016 12:17:51 AM,2400 Block of LOMBARD ST,San Francisco,94123,B04,16,4223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7990040267659, -122.441795241204)",160093633-58 +133190083,B04,13108314,Alarms,11/15/2013,11/15/2013,11/15/2013 08:25:56 AM,11/15/2013 08:27:01 AM,11/15/2013 08:27:17 AM,11/15/2013 08:28:57 AM,11/15/2013 08:31:39 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Fire,11/15/2013 08:38:44 AM,1600 Block of CLAY ST,SF,94109,B04,41,1634,3,3,3,false,Alarm,1,CHIEF,2,4,3,Nob Hill,"(37.792433934443, -122.420216385348)",133190083-B04 +123530307,94,12118202,Medical Incident,12/18/2012,12/18/2012,12/18/2012 05:55:49 PM,12/18/2012 05:57:38 PM,12/18/2012 05:59:46 PM,12/18/2012 06:00:31 PM,12/18/2012 06:12:49 PM,12/18/2012 06:37:37 PM,12/18/2012 07:11:17 PM,Code 2 Transport,12/18/2012 07:41:38 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",123530307-94 +111420006,60,11047031,Medical Incident,05/22/2011,05/21/2011,05/22/2011 12:25:51 AM,05/22/2011 12:25:51 AM,05/22/2011 12:25:51 AM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,No Merit,05/22/2011 12:33:10 AM,POWELL ST/ELLIS ST,SF,94102,B03,1,1322,2,2,2,true,,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",111420006-60 +121260148,B01,12041847,Gas Leak (Natural and LP Gases),05/05/2012,05/05/2012,05/05/2012 09:50:14 AM,05/05/2012 09:50:49 AM,05/05/2012 09:54:06 AM,05/05/2012 09:56:03 AM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 10:01:49 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,Alarm,1,CHIEF,4,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",121260148-B01 +112210221,92,11073034,Medical Incident,08/09/2011,08/09/2011,08/09/2011 03:38:11 PM,08/09/2011 03:38:55 PM,08/09/2011 03:39:19 PM,08/09/2011 03:39:59 PM,08/09/2011 03:46:41 PM,08/09/2011 04:12:47 PM,08/09/2011 04:41:29 PM,Code 2 Transport,08/09/2011 05:03:58 PM,0 Block of LAFAYETTE ST,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7730197753185, -122.417140617088)",112210221-92 +160470602,65,16018812,Medical Incident,02/16/2016,02/15/2016,02/16/2016 07:31:57 AM,02/16/2016 07:32:14 AM,02/16/2016 07:32:30 AM,02/16/2016 07:33:02 AM,02/16/2016 07:37:55 AM,02/16/2016 07:46:43 AM,02/16/2016 08:00:13 AM,Code 2 Transport,02/16/2016 08:34:57 AM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842224754433, -122.404037898963)",160470602-65 +102880241,66,10091876,Medical Incident,10/15/2010,10/15/2010,10/15/2010 02:25:52 PM,10/15/2010 02:25:53 PM,10/15/2010 02:27:32 PM,10/15/2010 02:27:51 PM,10/15/2010 02:34:58 PM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,No Merit,10/15/2010 02:47:26 PM,OFARRELL ST/JONES ST,SF,94102,B01,1,1452,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",102880241-66 +131410251,E33,13047829,Structure Fire,05/21/2013,05/21/2013,05/21/2013 02:45:12 PM,05/21/2013 02:45:59 PM,05/21/2013 02:46:18 PM,05/21/2013 02:46:36 PM,05/21/2013 02:49:03 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 03:20:59 PM,900 Block of PLYMOUTH AVE,SF,94112,B09,33,8465,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7191348850556, -122.456051369735)",131410251-E33 +160683124,68,16027218,Medical Incident,03/08/2016,03/08/2016,03/08/2016 07:09:17 PM,03/08/2016 07:09:17 PM,03/08/2016 07:09:29 PM,03/08/2016 07:09:46 PM,03/08/2016 07:21:12 PM,03/08/2016 07:40:07 PM,03/08/2016 07:58:51 PM,Code 2 Transport,03/08/2016 08:39:01 PM,HOLLOWAY AV/GRANADA AV,San Francisco,94112,B09,15,8473,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7218430766394, -122.457163086453)",160683124-68 +103110129,E41,10099689,Citizen Assist / Service Call,11/07/2010,11/07/2010,11/07/2010 09:22:42 AM,11/07/2010 09:23:13 AM,11/07/2010 09:23:24 AM,11/07/2010 09:24:50 AM,11/07/2010 09:28:11 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 09:58:59 AM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",103110129-E41 +133180311,77,13108184,Traffic Collision,11/14/2013,11/14/2013,11/14/2013 07:19:45 PM,11/14/2013 07:20:23 PM,11/14/2013 07:23:58 PM,11/14/2013 07:24:37 PM,11/14/2013 07:43:27 PM,11/14/2013 08:04:26 PM,11/14/2013 08:19:32 PM,Code 2 Transport,11/14/2013 09:02:42 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",133180311-77 +131000026,68,13033473,Medical Incident,04/10/2013,04/09/2013,04/10/2013 01:33:34 AM,04/10/2013 01:34:20 AM,04/10/2013 01:35:24 AM,04/10/2013 01:35:43 AM,04/10/2013 01:40:27 AM,04/10/2013 02:06:04 AM,04/10/2013 02:15:05 AM,Code 3 Transport,04/10/2013 02:30:45 AM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,3,E,3,false,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",131000026-68 +103110362,E01,10099905,Medical Incident,11/07/2010,11/07/2010,11/07/2010 11:48:45 PM,11/07/2010 11:50:20 PM,11/07/2010 11:50:58 PM,04/25/2016 02:07:42 PM,11/07/2010 11:54:20 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,No Merit,11/07/2010 11:57:05 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",103110362-E01 +120090023,60,12002974,Medical Incident,01/09/2012,01/08/2012,01/09/2012 01:09:28 AM,01/09/2012 01:10:15 AM,01/09/2012 01:10:55 AM,01/09/2012 01:11:13 AM,01/09/2012 01:15:33 AM,01/09/2012 01:37:02 AM,01/09/2012 01:55:21 AM,Code 2 Transport,01/09/2012 02:13:28 AM,2000 Block of 36TH AVE,SF,94116,B08,18,7556,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7487764204802, -122.494293052572)",120090023-60 +160331794,KM12,16012993,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:34:42 PM,02/02/2016 01:36:13 PM,02/02/2016 01:36:53 PM,02/02/2016 01:37:26 PM,02/02/2016 01:42:12 PM,02/02/2016 01:55:18 PM,02/02/2016 02:14:47 PM,Code 2 Transport,02/02/2016 02:41:57 PM,ALBION ST/16TH ST,San Francisco,94110,B02,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7648432997817, -122.42311242302)",160331794-KM12 +160860095,AM16,16034032,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:35:55 AM,03/26/2016 12:35:55 AM,03/26/2016 12:36:17 AM,03/26/2016 12:36:50 AM,03/26/2016 12:39:01 AM,03/26/2016 12:47:19 AM,03/26/2016 01:00:44 AM,Code 2 Transport,03/26/2016 01:12:28 AM,2200 Block of LOMBARD ST,San Francisco,94123,B04,16,3566,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7994131607449, -122.438492113191)",160860095-AM16 +112360222,B01,11077916,Medical Incident,08/24/2011,08/24/2011,08/24/2011 02:58:10 PM,08/24/2011 02:58:37 PM,08/24/2011 02:59:43 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 03:01:43 PM,BUSH ST/JONES ST,SF,94109,B01,41,1446,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7895293173979, -122.413728390683)",112360222-B01 +111410347,94,11047007,Medical Incident,05/21/2011,05/21/2011,05/21/2011 10:16:41 PM,05/21/2011 10:17:28 PM,05/21/2011 10:17:35 PM,05/21/2011 10:18:42 PM,05/21/2011 10:43:08 PM,05/21/2011 10:54:43 PM,05/21/2011 11:20:37 PM,Code 2 Transport,05/21/2011 11:49:12 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111410347-94 +123070052,KM12,12101902,Medical Incident,11/02/2012,11/01/2012,11/02/2012 06:52:07 AM,11/02/2012 06:53:44 AM,11/02/2012 06:57:20 AM,11/02/2012 06:58:03 AM,11/02/2012 07:10:08 AM,11/02/2012 07:22:03 AM,11/02/2012 07:27:03 AM,Code 2 Transport,11/02/2012 07:46:51 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",123070052-KM12 +110890026,E39,11029259,Medical Incident,03/30/2011,03/29/2011,03/30/2011 01:31:53 AM,03/30/2011 01:33:08 AM,03/30/2011 01:34:07 AM,03/30/2011 01:38:20 AM,03/30/2011 01:42:12 AM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/30/2011 01:48:43 AM,300 Block of RIVERA ST,SF,94116,B08,40,736,3,3,3,true,,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7471157595497, -122.469677402377)",110890026-E39 +121860282,E02,12062044,Medical Incident,07/04/2012,07/04/2012,07/04/2012 07:15:06 PM,07/04/2012 07:17:18 PM,07/04/2012 07:18:17 PM,07/04/2012 07:19:39 PM,07/04/2012 07:22:07 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 07:39:19 PM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",121860282-E02 +160340027,62,16013201,Medical Incident,02/03/2016,02/02/2016,02/03/2016 12:10:36 AM,02/03/2016 12:13:38 AM,02/03/2016 12:14:46 AM,02/03/2016 12:14:53 AM,02/03/2016 12:18:12 AM,02/03/2016 12:37:14 AM,02/03/2016 12:46:13 AM,Code 2 Transport,02/03/2016 01:33:12 AM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7562319946436, -122.418893283075)",160340027-62 +131630028,E38,13055249,Alarms,06/12/2013,06/11/2013,06/12/2013 03:27:05 AM,06/12/2013 03:29:03 AM,06/12/2013 03:32:20 AM,06/12/2013 03:33:54 AM,06/12/2013 03:36:41 AM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/12/2013 03:43:15 AM,1600 Block of VALLEJO ST,SF,94123,B04,38,3232,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7966404164544, -122.424436547538)",131630028-E38 +131570256,85,13053288,Medical Incident,06/06/2013,06/06/2013,06/06/2013 02:37:34 PM,06/06/2013 02:39:35 PM,06/06/2013 02:47:31 PM,06/06/2013 02:47:45 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/06/2013 02:48:40 PM,1000 Block of WASHINGTON ST,SF,94108,B01,2,1415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Nob Hill,"(37.7945246981773, -122.410940056689)",131570256-85 +103050212,54,10097505,Traffic Collision,11/01/2010,11/01/2010,11/01/2010 12:59:21 PM,11/01/2010 01:01:37 PM,11/01/2010 01:02:12 PM,11/01/2010 01:02:21 PM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 01:03:38 PM,2ND ST/MARKET ST,SF,94105,B01,13,1236,2,2,2,true,,1,MEDIC,5,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",103050212-54 +131510126,E28,13051074,Medical Incident,05/31/2013,05/31/2013,05/31/2013 10:28:30 AM,05/31/2013 10:29:27 AM,05/31/2013 10:30:10 AM,05/31/2013 10:31:08 AM,05/31/2013 10:35:51 AM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/31/2013 10:39:00 AM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,North Beach,"(37.8069135411381, -122.418073383892)",131510126-E28 +123540237,E02,12118484,Medical Incident,12/19/2012,12/19/2012,12/19/2012 02:24:40 PM,12/19/2012 02:26:32 PM,12/19/2012 02:26:50 PM,12/19/2012 02:26:57 PM,12/19/2012 02:29:00 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 02:45:40 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",123540237-E02 +122960389,E16,12098337,Structure Fire,10/22/2012,10/22/2012,10/22/2012 11:09:02 PM,10/22/2012 11:11:24 PM,10/22/2012 11:11:31 PM,10/22/2012 11:13:15 PM,10/22/2012 11:14:38 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 11:25:58 PM,2100 Block of BAY ST,SF,94123,B04,16,4212,3,3,3,true,Alarm,1,ENGINE,2,4,2,Marina,"(37.8018900896797, -122.442380292662)",122960389-E16 +160020521,53,16000624,Medical Incident,01/02/2016,01/01/2016,01/02/2016 06:03:11 AM,01/02/2016 06:04:05 AM,01/02/2016 06:04:14 AM,01/02/2016 06:04:37 AM,01/02/2016 06:10:17 AM,01/02/2016 06:29:00 AM,01/02/2016 06:41:53 AM,Code 2 Transport,01/02/2016 07:08:31 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160020521-53 +160222881,68,16008871,Medical Incident,01/22/2016,01/22/2016,01/22/2016 05:53:33 PM,01/22/2016 05:53:59 PM,01/22/2016 05:54:05 PM,01/22/2016 05:54:11 PM,01/22/2016 05:58:43 PM,01/22/2016 06:14:58 PM,01/22/2016 06:21:48 PM,Code 2 Transport,01/22/2016 07:18:40 PM,1600 Block of CHESTNUT ST,San Francisco,94123,B04,16,3341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8014951929088, -122.430478137381)",160222881-68 +133020032,AM18,13102500,Medical Incident,10/29/2013,10/28/2013,10/29/2013 02:25:48 AM,10/29/2013 02:27:05 AM,10/29/2013 02:29:11 AM,10/29/2013 02:30:03 AM,10/29/2013 02:34:33 AM,10/29/2013 02:48:55 AM,10/29/2013 02:58:25 AM,Code 2 Transport,10/29/2013 03:45:02 AM,0 Block of WOODWARD ST,SF,94103,B02,36,5215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7690757517644, -122.420788636046)",133020032-AM18 +131510282,KM11,13051210,Other,05/31/2013,05/31/2013,05/31/2013 04:56:43 PM,05/31/2013 04:57:30 PM,05/31/2013 05:25:25 PM,04/25/2016 01:52:31 PM,05/31/2013 05:44:24 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 06:38:46 PM,100 Block of SANTA CLARA AVE,SF,94127,B08,39,8563,3,3,3,false,Alarm,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7370526756963, -122.465928356313)",131510282-KM11 +103250331,T17,10104309,Alarms,11/21/2010,11/21/2010,11/21/2010 09:36:36 PM,11/21/2010 09:39:35 PM,11/21/2010 09:40:03 PM,11/21/2010 09:41:33 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 09:51:40 PM,100 Block of SEAL COVE TER,SF,94134,B10,44,6275,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7116736840708, -122.394421970949)",103250331-T17 +131330293,AR1,13044947,Other,05/13/2013,05/13/2013,05/13/2013 04:46:06 PM,05/13/2013 04:46:06 PM,05/13/2013 04:46:06 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 05:10:33 PM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,3,3,3,false,Alarm,1,INVESTIGATION,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",131330293-AR1 +133040036,KM15,13103147,Medical Incident,10/31/2013,10/30/2013,10/31/2013 02:28:21 AM,10/31/2013 02:29:54 AM,10/31/2013 02:31:12 AM,10/31/2013 02:32:03 AM,10/31/2013 02:39:21 AM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/31/2013 02:54:24 AM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",133040036-KM15 +160041841,87,16001609,Medical Incident,01/04/2016,01/04/2016,01/04/2016 01:27:01 PM,01/04/2016 01:28:29 PM,01/04/2016 01:30:11 PM,01/04/2016 01:30:20 PM,01/04/2016 01:46:47 PM,01/04/2016 02:11:05 PM,01/04/2016 02:28:54 PM,Code 2 Transport,01/04/2016 02:58:12 PM,200 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7863257938335, -122.409145791731)",160041841-87 +123110177,E01,12103469,Medical Incident,11/06/2012,11/06/2012,11/06/2012 12:01:36 PM,11/06/2012 12:02:59 PM,11/06/2012 12:03:11 PM,04/25/2016 01:55:55 PM,11/06/2012 12:06:19 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/06/2012 12:15:37 PM,100 Block of STOCKTON ST,SF,94108,B01,1,1323,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7871003167622, -122.406426031165)",123110177-E01 +160371558,53,16014651,Vehicle Fire,02/06/2016,02/06/2016,02/06/2016 11:15:38 AM,02/06/2016 11:17:53 AM,02/06/2016 11:20:04 AM,02/06/2016 11:20:23 AM,02/06/2016 11:46:12 AM,02/06/2016 11:58:45 AM,02/06/2016 12:12:12 PM,Code 2 Transport,02/06/2016 01:03:50 PM,0 Block of FREMONT ST,San Francisco,94105,B03,48,2951,2,3,3,true,Fire,1,MEDIC,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",160371558-53 +160100102,AM22,16003863,Medical Incident,01/10/2016,01/09/2016,01/10/2016 12:35:06 AM,01/10/2016 12:38:09 AM,01/10/2016 12:38:30 AM,01/10/2016 12:39:34 AM,01/10/2016 12:50:02 AM,01/10/2016 01:09:19 AM,01/10/2016 01:16:35 AM,Code 2 Transport,01/10/2016 01:41:01 AM,1700 Block of 9TH AVE,San Francisco,94122,B08,22,7336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,7,Inner Sunset,"(37.7556485755578, -122.465656908973)",160100102-AM22 +160723560,88,16028809,Medical Incident,03/12/2016,03/12/2016,03/12/2016 10:58:37 PM,03/12/2016 10:58:37 PM,03/12/2016 10:59:36 PM,03/12/2016 10:59:42 PM,03/12/2016 11:11:38 PM,03/12/2016 11:17:45 PM,03/12/2016 11:33:07 PM,Code 2 Transport,03/13/2016 12:00:03 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",160723560-88 +160060659,64,16002300,Medical Incident,01/06/2016,01/05/2016,01/06/2016 07:59:45 AM,01/06/2016 08:01:09 AM,01/06/2016 08:01:42 AM,01/06/2016 08:01:52 AM,01/06/2016 08:19:28 AM,01/06/2016 08:35:05 AM,01/06/2016 08:45:54 AM,Code 2 Transport,01/06/2016 09:17:13 AM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",160060659-64 +112270085,AM02,11074940,Medical Incident,08/15/2011,08/15/2011,08/15/2011 08:06:06 AM,08/15/2011 08:07:23 AM,08/15/2011 08:08:05 AM,08/15/2011 08:08:55 AM,08/15/2011 08:19:37 AM,08/15/2011 08:54:22 AM,08/15/2011 09:18:34 AM,Code 2 Transport,08/15/2011 10:01:48 AM,400 Block of CORTLAND AVE,SF,94110,B06,32,5732,1,1,2,false,,1,PRIVATE,1,6,9,Bernal Heights,"(37.7391460959559, -122.416820868342)",112270085-AM02 +140620158,T03,14020924,Medical Incident,03/03/2014,03/03/2014,03/03/2014 12:27:05 PM,03/03/2014 12:27:45 PM,03/03/2014 12:27:50 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,Code 2 Transport,03/03/2014 12:29:09 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,1,6,Tenderloin,"(37.7858955061569, -122.412569415086)",140620158-T03 +112870403,65,11095336,Medical Incident,10/14/2011,10/14/2011,10/14/2011 09:14:17 PM,10/14/2011 09:15:30 PM,10/14/2011 09:16:04 PM,10/14/2011 09:18:31 PM,10/14/2011 09:20:24 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,No Merit,10/14/2011 09:36:16 PM,11TH ST/MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7743252876501, -122.417104135862)",112870403-65 +160233085,71,16009287,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:16:00 PM,01/23/2016 07:17:23 PM,01/23/2016 07:17:35 PM,01/23/2016 07:17:46 PM,01/23/2016 07:23:43 PM,01/23/2016 07:45:56 PM,01/23/2016 07:53:46 PM,Code 2 Transport,01/23/2016 08:22:49 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",160233085-71 +123400088,E25,12113346,Smoke Investigation (Outside),12/05/2012,12/04/2012,12/05/2012 07:48:39 AM,12/05/2012 07:54:05 AM,12/05/2012 07:55:50 AM,12/05/2012 07:56:01 AM,12/05/2012 07:59:30 AM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,Other,12/05/2012 08:09:17 AM,25TH ST/IOWA ST,SF,94107,B10,25,2612,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7526042202194, -122.391655551528)",123400088-E25 +120300025,66,12009866,Medical Incident,01/30/2012,01/29/2012,01/30/2012 02:44:23 AM,01/30/2012 02:44:23 AM,01/30/2012 02:44:23 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,01/30/2012 02:54:36 AM,01/30/2012 03:12:39 AM,Code 2 Transport,01/30/2012 03:29:36 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",120300025-66 +133610061,E13,13122569,Alarms,12/27/2013,12/26/2013,12/27/2013 07:19:05 AM,12/27/2013 07:21:03 AM,12/27/2013 07:21:13 AM,12/27/2013 07:22:28 AM,12/27/2013 07:29:03 AM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 08:20:30 AM,500 Block of MARKET ST,SF,94104,B01,13,1236,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",133610061-E13 +113550349,E11,11118020,Alarms,12/21/2011,12/21/2011,12/21/2011 09:45:20 PM,12/21/2011 09:47:40 PM,12/21/2011 09:47:45 PM,12/21/2011 09:49:40 PM,12/21/2011 09:50:45 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 10:00:57 PM,300 Block of 27TH ST,SF,94131,B06,11,5552,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7468845306883, -122.428085949623)",113550349-E11 +110270260,E28,11008939,Alarms,01/27/2011,01/27/2011,01/27/2011 02:53:56 PM,01/27/2011 02:55:39 PM,01/27/2011 02:55:44 PM,01/27/2011 02:57:09 PM,01/27/2011 02:59:02 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 03:05:03 PM,1300 Block of GRANT AVE,SF,94133,B01,28,1266,3,3,3,false,,1,ENGINE,2,1,3,North Beach,"(37.799231230896, -122.407369153529)",110270260-E28 +140570113,93,14019166,Medical Incident,02/26/2014,02/26/2014,02/26/2014 09:07:53 AM,02/26/2014 09:08:39 AM,02/26/2014 09:08:54 AM,02/26/2014 09:09:04 AM,02/26/2014 09:19:21 AM,02/26/2014 09:37:16 AM,02/26/2014 09:59:19 AM,Code 2 Transport,02/26/2014 10:32:58 AM,600 Block of 2ND ST,SF,94107,B03,8,2153,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7811877689642, -122.391351449722)",140570113-93 +120400205,60,12013353,Medical Incident,02/09/2012,02/09/2012,02/09/2012 02:36:40 PM,02/09/2012 02:36:52 PM,02/09/2012 02:37:42 PM,02/09/2012 02:38:42 PM,02/09/2012 02:50:28 PM,02/09/2012 03:01:17 PM,02/09/2012 03:10:20 PM,Code 2 Transport,02/09/2012 03:29:17 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",120400205-60 +112180367,89,11072226,Medical Incident,08/06/2011,08/06/2011,08/06/2011 10:30:28 PM,08/06/2011 10:30:49 PM,08/06/2011 10:31:07 PM,08/06/2011 10:31:18 PM,08/06/2011 10:37:33 PM,08/06/2011 10:51:16 PM,08/06/2011 10:59:42 PM,Code 3 Transport,08/06/2011 11:51:23 PM,19TH ST/CHURCH ST,SF,94114,B06,6,5436,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7596916254318, -122.428202324383)",112180367-89 +113610288,AM18,11120045,Medical Incident,12/27/2011,12/27/2011,12/27/2011 08:27:53 PM,12/27/2011 08:30:12 PM,12/27/2011 08:30:55 PM,12/27/2011 08:31:40 PM,12/27/2011 08:37:52 PM,12/27/2011 08:59:53 PM,12/27/2011 09:25:54 PM,Code 2 Transport,12/27/2011 09:35:37 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,PRIVATE,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",113610288-AM18 +110060043,RC3,11001867,Medical Incident,01/06/2011,01/05/2011,01/06/2011 04:09:53 AM,01/06/2011 04:10:34 AM,01/06/2011 04:10:48 AM,01/06/2011 04:12:49 AM,01/06/2011 04:17:30 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 04:19:50 AM,1600 Block of MISSION ST,SF,94103,B02,36,5116,A,A,2,true,,1,RESCUE CAPTAIN,5,2,6,Mission,"(37.7720141510333, -122.419088601412)",110060043-RC3 +131480075,BE1,13050084,Administrative,05/28/2013,05/27/2013,05/28/2013 07:42:22 AM,05/28/2013 07:42:27 AM,05/28/2013 07:43:10 AM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Fire,05/28/2013 07:43:38 AM,2500 Block of 25TH ST,SF,94110,B10,9,2624,3,3,3,false,,1,SUPPORT,1,10,10,Mission,"(37.751818803934, -122.403759348047)",131480075-BE1 +122250014,E51,12074475,Alarms,08/12/2012,08/11/2012,08/12/2012 01:11:17 AM,08/12/2012 01:12:22 AM,08/12/2012 01:13:23 AM,08/12/2012 01:15:33 AM,08/12/2012 01:16:50 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 01:34:19 AM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",122250014-E51 +132900275,E07,13098716,Medical Incident,10/17/2013,10/17/2013,10/17/2013 03:27:11 PM,10/17/2013 03:29:23 PM,10/17/2013 03:29:45 PM,10/17/2013 03:30:43 PM,10/17/2013 03:34:51 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 03:34:54 PM,11TH ST/MISSION ST,SF,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7743252876501, -122.417104135862)",132900275-E07 +160631938,70,16025089,Medical Incident,03/03/2016,03/03/2016,03/03/2016 01:46:36 PM,03/03/2016 01:47:51 PM,03/03/2016 01:48:19 PM,03/03/2016 01:48:38 PM,03/03/2016 01:50:28 PM,03/03/2016 02:08:41 PM,03/03/2016 02:25:47 PM,Code 2 Transport,03/03/2016 03:07:30 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",160631938-70 +160912049,79,16036096,Medical Incident,03/31/2016,03/31/2016,03/31/2016 02:28:54 PM,03/31/2016 02:29:08 PM,03/31/2016 02:29:34 PM,03/31/2016 02:30:01 PM,03/31/2016 02:34:45 PM,03/31/2016 02:53:44 PM,03/31/2016 03:16:23 PM,Code 2 Transport,03/31/2016 03:54:05 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160912049-79 +111790045,E34,11058996,Medical Incident,06/28/2011,06/27/2011,06/28/2011 05:23:32 AM,06/28/2011 05:24:09 AM,06/28/2011 05:24:54 AM,06/28/2011 05:26:51 AM,06/28/2011 05:29:40 AM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Other,06/28/2011 05:39:38 AM,800 Block of 36TH AVE,SF,94121,B07,34,7252,3,E,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7729614523582, -122.496112754911)",111790045-E34 +102620051,E10,10082774,Structure Fire,09/19/2010,09/18/2010,09/19/2010 02:52:55 AM,09/19/2010 02:53:07 AM,09/19/2010 02:53:20 AM,09/19/2010 02:54:41 AM,04/25/2016 02:08:31 PM,04/25/2016 02:08:31 PM,04/25/2016 02:08:31 PM,Other,09/19/2010 03:08:44 AM,1700 Block of OFARRELL ST,SF,94115,B04,5,3623,3,3,3,true,,1,ENGINE,9,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",102620051-E10 +160551912,AM08,16022019,Medical Incident,02/24/2016,02/24/2016,02/24/2016 01:19:35 PM,02/24/2016 01:20:20 PM,02/24/2016 01:21:04 PM,02/24/2016 01:21:50 PM,02/24/2016 01:25:52 PM,02/24/2016 01:38:42 PM,02/24/2016 01:55:50 PM,Code 2 Transport,02/24/2016 02:38:30 PM,1600 Block of DIVISADERO ST,San Francisco,94115,B05,10,4155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7847979838284, -122.439663867351)",160551912-AM08 +103030097,82,10096728,Medical Incident,10/30/2010,10/29/2010,10/30/2010 07:30:15 AM,10/30/2010 07:33:02 AM,10/30/2010 07:33:30 AM,10/30/2010 07:33:48 AM,10/30/2010 07:46:22 AM,10/30/2010 08:06:53 AM,10/30/2010 08:15:45 AM,Code 2 Transport,10/30/2010 09:00:57 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103030097-82 +160872601,62,16034654,Medical Incident,03/27/2016,03/27/2016,03/27/2016 04:58:50 PM,03/27/2016 05:01:32 PM,03/27/2016 05:02:29 PM,03/27/2016 05:06:18 PM,03/27/2016 05:18:52 PM,03/27/2016 05:24:08 PM,03/27/2016 05:44:07 PM,Code 2 Transport,03/27/2016 06:25:23 PM,20TH ST/MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",160872601-62 +103000267,E51,10095836,Alarms,10/27/2010,10/27/2010,10/27/2010 05:10:12 PM,10/27/2010 05:11:13 PM,10/27/2010 05:11:27 PM,10/27/2010 05:13:05 PM,10/27/2010 05:16:19 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 05:23:57 PM,0 Block of MESA ST,PR,94129,B99,51,4626,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.7983594309985, -122.457277417246)",103000267-E51 +120210250,E03,12007176,Structure Fire,01/21/2012,01/21/2012,01/21/2012 03:06:28 PM,01/21/2012 03:07:17 PM,01/21/2012 03:07:47 PM,01/21/2012 03:08:14 PM,01/21/2012 03:09:33 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 03:22:43 PM,600 Block of POST ST,SF,94109,B01,3,1451,3,3,3,true,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7877566203397, -122.413055713332)",120210250-E03 +122200228,E18,12073011,Medical Incident,08/07/2012,08/07/2012,08/07/2012 04:51:20 PM,08/07/2012 04:51:20 PM,08/07/2012 04:51:20 PM,08/07/2012 04:54:53 PM,08/07/2012 04:57:55 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/07/2012 05:02:27 PM,1400 Block of 37TH AVE,SF,94122,B08,23,7571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7599127190458, -122.496287224652)",122200228-E18 +120150336,E01,12005245,Medical Incident,01/15/2012,01/15/2012,01/15/2012 11:26:27 PM,01/15/2012 11:27:46 PM,01/15/2012 11:28:34 PM,01/15/2012 11:29:43 PM,01/15/2012 11:31:59 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/15/2012 11:34:07 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",120150336-E01 +130300010,85,13010084,Medical Incident,01/30/2013,01/29/2013,01/30/2013 12:46:14 AM,01/30/2013 12:47:30 AM,01/30/2013 12:47:49 AM,01/30/2013 12:48:08 AM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,04/25/2016 01:54:33 PM,400 Block of MISSISSIPPI ST,SF,94107,B10,37,2474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7607753106683, -122.394482044355)",130300010-85 +112510003,96,11082618,Medical Incident,09/08/2011,09/07/2011,09/08/2011 12:17:19 AM,09/08/2011 12:17:40 AM,09/08/2011 12:18:26 AM,09/08/2011 12:18:52 AM,09/08/2011 12:23:05 AM,09/08/2011 12:40:11 AM,09/08/2011 01:01:25 AM,Other,09/08/2011 01:13:45 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,2,2,true,,1,MEDIC,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",112510003-96 +113600071,87,11119555,Medical Incident,12/26/2011,12/25/2011,12/26/2011 07:12:49 AM,12/26/2011 07:13:49 AM,12/26/2011 07:14:01 AM,12/26/2011 07:14:11 AM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Patient Declined Transport,12/26/2011 07:21:21 AM,4300 Block of MISSION ST,SF,94112,B09,32,6113,3,3,3,false,,1,MEDIC,2,9,11,Outer Mission,"(37.728524805863, -122.431600311794)",113600071-87 +111760328,94,11058136,Traffic Collision,06/25/2011,06/25/2011,06/25/2011 07:07:44 PM,06/25/2011 07:09:24 PM,06/25/2011 07:10:36 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,04/25/2016 02:03:59 PM,JONES ST/OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,4,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",111760328-94 +122290224,E36,12075909,Medical Incident,08/16/2012,08/16/2012,08/16/2012 02:28:50 PM,08/16/2012 02:30:51 PM,08/16/2012 02:31:23 PM,08/16/2012 02:32:50 PM,08/16/2012 02:34:42 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Other,08/16/2012 02:37:56 PM,11TH ST/HOWARD ST,SF,94103,B02,36,5114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7731005870473, -122.415561389884)",122290224-E36 +160773134,79,16030722,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:42:41 PM,03/17/2016 05:42:41 PM,03/17/2016 05:44:08 PM,03/17/2016 05:44:16 PM,03/17/2016 05:55:06 PM,03/17/2016 06:03:55 PM,03/17/2016 06:15:46 PM,Code 2 Transport,03/17/2016 06:59:20 PM,500 Block of MOSCOW ST,San Francisco,94112,B09,43,6156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7189014577271, -122.429331927849)",160773134-79 +121880133,E36,12062594,Medical Incident,07/06/2012,07/06/2012,07/06/2012 10:46:08 AM,07/06/2012 10:47:58 AM,07/06/2012 10:48:17 AM,07/06/2012 10:48:31 AM,07/06/2012 10:51:28 AM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/06/2012 10:57:40 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",121880133-E36 +111440035,E03,11047743,Structure Fire,05/24/2011,05/23/2011,05/24/2011 05:34:37 AM,05/24/2011 05:34:38 AM,05/24/2011 05:35:15 AM,05/24/2011 05:37:21 AM,05/24/2011 05:39:04 AM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/24/2011 05:39:41 AM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",111440035-E03 +132240156,54,13075613,Medical Incident,08/12/2013,08/12/2013,08/12/2013 11:49:09 AM,08/12/2013 11:51:03 AM,08/12/2013 11:51:22 AM,08/12/2013 11:51:30 AM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,Other,04/25/2016 01:51:20 PM,MISSION ST/EXCELSIOR AV,SF,94112,B09,43,6116,3,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7262362449736, -122.433623592293)",132240156-54 +160140350,AM20,16005433,Medical Incident,01/14/2016,01/13/2016,01/14/2016 04:27:21 AM,01/14/2016 04:27:51 AM,01/14/2016 04:28:17 AM,01/14/2016 04:29:29 AM,01/14/2016 04:32:31 AM,01/14/2016 04:45:18 AM,01/14/2016 04:50:06 AM,Code 2 Transport,01/14/2016 05:15:38 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160140350-AM20 +112500077,T03,11082389,Medical Incident,09/07/2011,09/07/2011,09/07/2011 08:24:07 AM,09/07/2011 08:25:24 AM,09/07/2011 08:26:04 AM,09/07/2011 08:26:33 AM,09/07/2011 08:30:36 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 08:40:29 AM,1900 Block of FRANKLIN ST,SF,94109,B04,38,3226,3,2,2,false,,1,TRUCK,1,4,2,Pacific Heights,"(37.7923946747257, -122.424497572162)",112500077-T03 +113620262,KM14,11120321,Medical Incident,12/28/2011,12/28/2011,12/28/2011 04:14:58 PM,12/28/2011 04:17:12 PM,12/28/2011 04:17:53 PM,12/28/2011 04:18:29 PM,12/28/2011 04:22:19 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Patient Declined Transport,12/28/2011 04:59:18 PM,400 Block of SUTTER ST,SF,94108,B01,1,1324,2,2,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",113620262-KM14 +140790268,E05,14026789,Medical Incident,03/20/2014,03/20/2014,03/20/2014 04:36:06 PM,03/20/2014 04:37:50 PM,03/20/2014 04:38:18 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/20/2014 04:39:13 PM,1500 Block of GROVE ST,SAN FRANCISCO,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7754543454069, -122.442133697759)",140790268-E05 +133610305,KM15,13122784,Medical Incident,12/27/2013,12/27/2013,12/27/2013 08:13:27 PM,12/27/2013 08:15:34 PM,12/27/2013 08:17:30 PM,12/27/2013 08:18:29 PM,12/27/2013 08:31:41 PM,12/27/2013 08:49:39 PM,12/27/2013 08:55:11 PM,Code 2 Transport,12/27/2013 09:26:54 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133610305-KM15 +160041058,87,16001535,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:44:20 AM,01/04/2016 09:45:58 AM,01/04/2016 09:46:43 AM,01/04/2016 09:46:58 AM,01/04/2016 09:50:53 AM,01/04/2016 10:08:39 AM,01/04/2016 10:22:49 AM,Code 2 Transport,01/04/2016 10:53:46 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160041058-87 +160832962,68,16033055,Medical Incident,03/23/2016,03/23/2016,03/23/2016 05:08:44 PM,03/23/2016 05:09:23 PM,03/23/2016 05:09:48 PM,03/23/2016 05:10:21 PM,03/23/2016 05:13:15 PM,03/23/2016 05:36:07 PM,03/23/2016 05:54:23 PM,Code 2 Transport,03/23/2016 06:16:19 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",160832962-68 +131840365,E14,13062849,Medical Incident,07/03/2013,07/03/2013,07/03/2013 09:33:47 PM,07/03/2013 09:35:01 PM,07/03/2013 09:35:36 PM,07/03/2013 09:36:38 PM,07/03/2013 09:39:22 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/03/2013 09:49:55 PM,2000 Block of LAKE ST,SF,94121,B07,14,7174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Seacliff,"(37.7859640347416, -122.48139868398)",131840365-E14 +112080026,55,11068563,Medical Incident,07/27/2011,07/26/2011,07/27/2011 02:07:02 AM,07/27/2011 02:09:02 AM,07/27/2011 02:09:08 AM,04/25/2016 02:03:28 PM,07/27/2011 02:10:56 AM,07/27/2011 02:25:16 AM,07/27/2011 02:39:11 AM,Code 2 Transport,07/27/2011 03:12:49 AM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",112080026-55 +120100280,E01,12003556,Alarms,01/10/2012,01/10/2012,01/10/2012 05:45:21 PM,01/10/2012 05:46:14 PM,01/10/2012 05:46:19 PM,01/10/2012 05:47:24 PM,01/10/2012 05:51:38 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/10/2012 05:56:24 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",120100280-E01 +112320105,E43,11076529,Medical Incident,08/20/2011,08/20/2011,08/20/2011 09:40:55 AM,08/20/2011 09:41:23 AM,08/20/2011 09:42:03 AM,08/20/2011 09:42:44 AM,08/20/2011 09:47:44 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 09:57:34 AM,100 Block of TRUMBULL ST,SF,94112,B09,32,5635,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7307911496885, -122.427261743133)",112320105-E43 +160531338,65,16021172,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:31:52 AM,02/22/2016 11:35:43 AM,02/22/2016 11:36:03 AM,02/22/2016 11:36:14 AM,02/22/2016 11:40:25 AM,02/22/2016 12:07:19 PM,02/22/2016 12:21:59 PM,Code 2 Transport,02/22/2016 01:23:42 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160531338-65 +133370005,B06,13114076,Alarms,12/03/2013,12/02/2013,12/03/2013 12:47:17 AM,12/03/2013 12:47:17 AM,12/03/2013 12:47:25 AM,12/03/2013 12:48:58 AM,12/03/2013 12:51:30 AM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 01:03:20 AM,2800 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,false,Alarm,1,CHIEF,1,6,9,Mission,"(37.7514438314246, -122.41829760412)",133370005-B06 +160260338,KM03,16010180,Medical Incident,01/26/2016,01/25/2016,01/26/2016 03:33:42 AM,01/26/2016 03:33:42 AM,01/26/2016 03:34:42 AM,01/26/2016 03:36:23 AM,01/26/2016 03:42:08 AM,01/26/2016 03:56:36 AM,01/26/2016 04:25:34 AM,Code 2 Transport,01/26/2016 05:06:10 AM,17TH ST/MISSION ST,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7634292740134, -122.419512736792)",160260338-KM03 +102750392,AM10,10087542,Medical Incident,10/02/2010,10/02/2010,10/02/2010 09:51:58 PM,10/02/2010 09:53:27 PM,10/02/2010 09:54:44 PM,10/02/2010 09:55:06 PM,10/02/2010 10:04:37 PM,10/02/2010 10:21:13 PM,10/02/2010 10:28:00 PM,Code 2 Transport,10/02/2010 10:56:40 PM,1100 Block of SCOTT ST,SF,94115,B05,5,4133,2,2,2,false,,1,PRIVATE,1,5,5,Western Addition,"(37.7803259118056, -122.437234296615)",102750392-AM10 +133240172,AM06,13110013,Medical Incident,11/20/2013,11/20/2013,11/20/2013 11:14:58 AM,11/20/2013 11:15:49 AM,11/20/2013 11:16:29 AM,11/20/2013 11:17:09 AM,11/20/2013 11:24:02 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,No Merit,11/20/2013 11:26:09 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",133240172-AM06 +160141363,55,16005527,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:12:46 AM,01/14/2016 11:15:02 AM,01/14/2016 11:15:49 AM,01/14/2016 11:16:57 AM,01/14/2016 11:33:17 AM,01/14/2016 12:24:53 PM,01/14/2016 12:24:55 PM,Code 2 Transport,01/14/2016 12:59:04 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160141363-55 +102250304,E06,10070966,Medical Incident,08/13/2010,08/13/2010,08/13/2010 10:09:26 PM,08/13/2010 10:10:08 PM,08/13/2010 10:10:25 PM,08/13/2010 10:11:23 PM,08/13/2010 10:13:18 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 10:23:04 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",102250304-E06 +160300209,65,16011632,Medical Incident,01/30/2016,01/29/2016,01/30/2016 01:19:39 AM,01/30/2016 01:20:19 AM,01/30/2016 01:20:27 AM,01/30/2016 01:20:51 AM,01/30/2016 01:27:40 AM,01/30/2016 01:48:31 AM,01/30/2016 02:03:13 AM,Code 2 Transport,01/30/2016 03:30:40 AM,4700 Block of BALBOA ST,San Francisco,94121,B07,34,7312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7752070093177, -122.50963436518)",160300209-65 +102680463,RC1,10085135,Medical Incident,09/25/2010,09/25/2010,09/25/2010 10:36:06 PM,09/25/2010 10:37:34 PM,09/25/2010 10:37:45 PM,09/25/2010 10:41:21 PM,09/25/2010 10:45:30 PM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,09/25/2010 10:48:56 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,E,3,true,,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7792116845421, -122.4109365738)",102680463-RC1 +120490166,E42,12016203,Medical Incident,02/18/2012,02/18/2012,02/18/2012 12:48:44 PM,02/18/2012 12:51:05 PM,02/18/2012 12:51:48 PM,02/18/2012 12:53:58 PM,02/18/2012 12:55:06 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/18/2012 01:15:31 PM,0 Block of VENUS ST,SF,94124,B10,42,6473,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7319521055953, -122.396831724328)",120490166-E42 +111190064,E29,11039155,Medical Incident,04/29/2011,04/29/2011,04/29/2011 08:31:52 AM,04/29/2011 08:33:17 AM,04/29/2011 08:33:43 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 08:34:58 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,2,2,true,,1,ENGINE,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",111190064-E29 +160912503,71,16036147,Medical Incident,03/31/2016,03/31/2016,03/31/2016 04:30:38 PM,03/31/2016 04:33:20 PM,03/31/2016 04:34:44 PM,03/31/2016 04:35:07 PM,03/31/2016 04:53:35 PM,03/31/2016 05:05:07 PM,03/31/2016 05:42:34 PM,Code 2 Transport,03/31/2016 06:07:41 PM,700 Block of HEAD ST,San Francisco,94132,B09,33,8433,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7206866121124, -122.464403388281)",160912503-71 +111300092,RC3,11042898,Traffic Collision,05/10/2011,05/10/2011,05/10/2011 08:58:26 AM,05/10/2011 08:58:40 AM,05/10/2011 08:58:51 AM,05/10/2011 09:22:15 AM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Other,05/10/2011 09:23:15 AM,DIAMOND HEIGHTS BL/BERKELEY WY,SF,94131,B06,26,8174,3,3,3,true,,1,RESCUE CAPTAIN,3,6,8,Glen Park,"(37.7386884239445, -122.439549049648)",111300092-RC3 +122180080,94,12072220,Medical Incident,08/05/2012,08/04/2012,08/05/2012 04:08:39 AM,08/05/2012 04:09:10 AM,08/05/2012 04:09:22 AM,08/05/2012 04:09:47 AM,08/05/2012 04:14:41 AM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Patient Declined Transport,08/05/2012 04:49:37 AM,2600 Block of FOLSOM ST,SF,94110,B06,7,5473,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7548949878371, -122.414379534587)",122180080-94 +122190342,KM07,12072789,Medical Incident,08/06/2012,08/06/2012,08/06/2012 08:47:41 PM,08/06/2012 08:48:41 PM,08/06/2012 08:48:54 PM,08/06/2012 08:50:15 PM,08/06/2012 08:53:17 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Patient Declined Transport,08/06/2012 09:28:06 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.787352867216, -122.399071684966)",122190342-KM07 +112240380,RB1,11074153,Water Rescue,08/12/2011,08/12/2011,08/12/2011 10:09:22 PM,08/12/2011 10:11:40 PM,08/12/2011 10:15:06 PM,08/12/2011 10:21:42 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 11:56:40 PM,CALL BOX: 1 ANGEL ISLAND DR,AI,,B99,94,AI02,3,3,3,false,,1,SUPPORT,4,None,None,None,"(37.8544643401172, -122.421080465833)",112240380-RB1 +111140037,E01,11037550,Medical Incident,04/24/2011,04/23/2011,04/24/2011 02:43:23 AM,04/24/2011 02:44:21 AM,04/24/2011 02:44:28 AM,04/24/2011 02:46:15 AM,04/24/2011 02:47:19 AM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 02:47:50 AM,CLEMENTINA ST/3RD ST,SF,94105,B03,1,2176,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842136382775, -122.399459825894)",111140037-E01 +132630047,E03,13088993,Medical Incident,09/20/2013,09/19/2013,09/20/2013 03:22:44 AM,09/20/2013 03:23:14 AM,09/20/2013 03:23:59 AM,09/20/2013 03:25:34 AM,09/20/2013 03:28:20 AM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 03:37:00 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",132630047-E03 +133170238,E01,13107781,Alarms,11/13/2013,11/13/2013,11/13/2013 03:27:22 PM,11/13/2013 03:28:12 PM,11/13/2013 03:29:48 PM,04/25/2016 01:49:47 PM,11/13/2013 03:37:55 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 03:38:00 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",133170238-E01 +120110126,E08,12003766,Medical Incident,01/11/2012,01/11/2012,01/11/2012 11:46:02 AM,01/11/2012 11:46:17 AM,01/11/2012 11:46:27 AM,01/11/2012 11:49:46 AM,01/11/2012 11:50:32 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 12:00:25 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",120110126-E08 +160062968,76,16002539,Medical Incident,01/06/2016,01/06/2016,01/06/2016 06:11:27 PM,01/06/2016 06:13:08 PM,01/06/2016 06:27:30 PM,01/06/2016 06:28:08 PM,01/06/2016 06:42:02 PM,01/06/2016 06:47:03 PM,01/06/2016 06:58:02 PM,Code 2 Transport,01/06/2016 07:23:46 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160062968-76 +110890426,92,11029608,Medical Incident,03/30/2011,03/30/2011,03/30/2011 11:42:15 PM,03/30/2011 11:43:09 PM,03/30/2011 11:45:55 PM,03/30/2011 11:46:38 PM,03/30/2011 11:56:52 PM,03/31/2011 12:30:47 AM,03/31/2011 12:47:29 AM,Code 2 Transport,03/31/2011 01:15:43 AM,2600 Block of 17TH AVE,SF,94116,B08,40,7411,1,1,2,true,,1,MEDIC,1,8,7,West of Twin Peaks,"(37.738481429132, -122.473295868437)",110890426-92 +102900247,B02,10092565,Alarms,10/17/2010,10/17/2010,10/17/2010 05:20:36 PM,10/17/2010 05:21:11 PM,10/17/2010 05:21:23 PM,10/17/2010 05:22:29 PM,10/17/2010 05:25:06 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/17/2010 05:40:14 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,,1,CHIEF,2,2,9,Mission,"(37.7661343875141, -122.421935077177)",102900247-B02 +160481787,82,16019334,Medical Incident,02/17/2016,02/17/2016,02/17/2016 12:34:52 PM,02/17/2016 12:36:33 PM,02/17/2016 12:37:04 PM,02/17/2016 12:37:17 PM,02/17/2016 12:45:35 PM,02/17/2016 01:02:31 PM,02/17/2016 01:13:07 PM,Code 2 Transport,02/17/2016 02:03:46 PM,WEST PORTAL AV/14TH AV,San Francisco,94127,B08,39,8612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7379698827734, -122.469056677033)",160481787-82 +140550149,MA1,14018541,Structure Fire,02/24/2014,02/24/2014,02/24/2014 11:52:34 AM,02/24/2014 11:53:10 AM,02/24/2014 11:57:17 AM,02/24/2014 11:58:24 AM,02/24/2014 12:40:25 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Duplicate,02/24/2014 02:02:58 PM,2100 Block of JERROLD AVE,SF,94124,B10,9,6421,,3,3,false,Fire,3,SUPPORT,33,10,10,Bayview Hunters Point,"(37.7444944575453, -122.399569364044)",140550149-MA1 +160271474,71,16010645,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:33:39 AM,01/27/2016 11:34:16 AM,01/27/2016 11:34:24 AM,01/27/2016 11:34:35 AM,01/27/2016 11:37:41 AM,01/27/2016 11:57:26 AM,01/27/2016 12:12:39 PM,Code 2 Transport,01/27/2016 12:56:26 PM,FOLSOM ST/6TH ST,San Francisco,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",160271474-71 +102420301,E36,10076418,Medical Incident,08/30/2010,08/30/2010,08/30/2010 06:16:23 PM,08/30/2010 06:17:17 PM,08/30/2010 06:17:26 PM,08/30/2010 06:18:48 PM,08/30/2010 06:20:40 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/30/2010 06:39:31 PM,600 Block of LAGUNA ST,SF,94102,B02,36,3413,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",102420301-E36 +140230326,E05,14007984,Medical Incident,01/23/2014,01/23/2014,01/23/2014 09:17:39 PM,01/23/2014 09:20:03 PM,01/23/2014 09:20:36 PM,01/23/2014 09:23:00 PM,01/23/2014 09:24:59 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 09:35:56 PM,1400 Block of LAGUNA ST,SF,94115,B04,5,3365,,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Western Addition,"(37.7844305228999, -122.427952216938)",140230326-E05 +120560053,B01,12018393,Alarms,02/25/2012,02/24/2012,02/25/2012 05:59:10 AM,02/25/2012 06:00:14 AM,02/25/2012 06:00:26 AM,02/25/2012 06:02:56 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 06:10:24 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.7980497141877, -122.406829909619)",120560053-B01 +120630391,RC1,12020928,Structure Fire,03/03/2012,03/03/2012,03/03/2012 09:36:34 PM,03/03/2012 09:37:01 PM,03/03/2012 09:37:18 PM,03/03/2012 10:01:55 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/03/2012 09:59:25 PM,1800 Block of OAKDALE AVE,SF,94124,B10,42,6444,3,3,3,true,Fire,3,RESCUE CAPTAIN,46,10,10,Bayview Hunters Point,"(37.7375042189557, -122.395572399938)",120630391-RC1 +130640265,E01,13021494,Structure Fire,03/05/2013,03/05/2013,03/05/2013 04:43:39 PM,03/05/2013 04:43:39 PM,03/05/2013 04:43:49 PM,03/05/2013 04:44:03 PM,04/25/2016 01:53:59 PM,04/25/2016 01:53:59 PM,04/25/2016 01:53:59 PM,Other,03/05/2013 04:47:07 PM,MASON ST/ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,2,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",130640265-E01 +121080244,E17,12035808,Other,04/17/2012,04/17/2012,04/17/2012 04:31:05 PM,04/17/2012 04:32:57 PM,04/17/2012 04:33:41 PM,04/17/2012 04:34:45 PM,04/17/2012 04:37:26 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/17/2012 04:47:50 PM,1500 Block of NEWCOMB AVE,SF,94124,B10,17,6534,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7347423942103, -122.388800065466)",121080244-E17 +133150057,93,13106958,Traffic Collision,11/11/2013,11/10/2013,11/11/2013 05:32:48 AM,11/11/2013 05:34:47 AM,11/11/2013 05:38:27 AM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,11/11/2013 05:58:12 AM,11/11/2013 06:06:00 AM,Code 2 Transport,11/11/2013 06:34:51 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",133150057-93 +121890242,RC2,12063015,Medical Incident,07/07/2012,07/07/2012,07/07/2012 04:00:36 PM,07/07/2012 04:01:39 PM,07/07/2012 04:02:14 PM,07/07/2012 04:02:20 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/07/2012 04:06:30 PM,1600 Block of 48TH AVE,SF,94122,B08,23,7724,E,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7556706107482, -122.507670205519)",121890242-RC2 +160783018,67,16031117,Medical Incident,03/18/2016,03/18/2016,03/18/2016 05:55:17 PM,03/18/2016 05:55:50 PM,03/18/2016 06:00:43 PM,03/18/2016 06:00:43 PM,03/18/2016 06:13:46 PM,03/18/2016 06:25:45 PM,03/18/2016 07:01:05 PM,Code 2 Transport,03/18/2016 07:32:08 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160783018-67 +120920125,KM15,12030402,Medical Incident,04/01/2012,04/01/2012,04/01/2012 09:08:10 AM,04/01/2012 09:09:09 AM,04/01/2012 09:09:53 AM,04/01/2012 09:18:45 AM,04/01/2012 09:20:25 AM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,Patient Declined Transport,04/01/2012 09:38:30 AM,1800 Block of POLK ST,SF,94109,B04,41,3124,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7936924481231, -122.421385557378)",120920125-KM15 +160892673,66,16035407,Medical Incident,03/29/2016,03/29/2016,03/29/2016 04:39:02 PM,03/29/2016 04:40:41 PM,03/29/2016 04:41:05 PM,03/29/2016 04:41:17 PM,03/29/2016 04:59:55 PM,03/29/2016 05:19:02 PM,03/29/2016 06:06:27 PM,Code 3 Transport,03/29/2016 06:39:46 PM,0 Block of GOULD ST,San Francisco,94124,B10,44,6323,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7220246314295, -122.398063263582)",160892673-66 +160290665,85,16011346,Medical Incident,01/29/2016,01/28/2016,01/29/2016 07:58:59 AM,01/29/2016 08:00:18 AM,01/29/2016 08:00:38 AM,01/29/2016 08:00:56 AM,01/29/2016 08:04:12 AM,01/29/2016 08:31:04 AM,01/29/2016 08:47:22 AM,Code 2 Transport,01/29/2016 09:35:35 AM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7796175741202, -122.473838626607)",160290665-85 +113100221,RC1,11103077,Medical Incident,11/06/2011,11/06/2011,11/06/2011 03:24:11 PM,11/06/2011 03:24:39 PM,11/06/2011 03:24:52 PM,11/06/2011 03:39:18 PM,11/06/2011 03:45:17 PM,11/06/2011 04:03:45 PM,04/25/2016 02:01:46 PM,Other,11/06/2011 04:30:11 PM,1700 Block of NORTH POINT ST,SF,94123,B04,16,3455,3,3,3,true,,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.8036586225471, -122.436019366977)",113100221-RC1 +130660165,E03,13022024,Medical Incident,03/07/2013,03/07/2013,03/07/2013 12:11:31 PM,03/07/2013 12:15:15 PM,03/07/2013 12:17:06 PM,03/07/2013 12:18:00 PM,03/07/2013 12:19:35 PM,04/25/2016 01:53:57 PM,04/25/2016 01:53:57 PM,Other,03/07/2013 12:21:03 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",130660165-E03 +102780097,KM04,10088307,Medical Incident,10/05/2010,10/05/2010,10/05/2010 08:52:02 AM,10/05/2010 08:52:44 AM,10/05/2010 08:52:54 AM,10/05/2010 08:54:05 AM,10/05/2010 08:56:30 AM,10/05/2010 09:09:02 AM,10/05/2010 09:21:45 AM,Code 2 Transport,10/05/2010 09:42:33 AM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,false,,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7695711762103, -122.449920089485)",102780097-KM04 +160441274,AM08,16017654,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:08:21 AM,02/13/2016 11:12:34 AM,02/13/2016 11:13:20 AM,02/13/2016 11:14:02 AM,02/13/2016 11:33:58 AM,02/13/2016 11:45:06 AM,02/13/2016 11:57:51 AM,Code 2 Transport,02/13/2016 12:15:31 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160441274-AM08 +160903320,62,16035847,Medical Incident,03/30/2016,03/30/2016,03/30/2016 06:58:46 PM,03/30/2016 06:59:30 PM,03/30/2016 06:59:54 PM,03/30/2016 07:00:01 PM,03/30/2016 07:02:45 PM,03/30/2016 07:18:19 PM,03/30/2016 07:38:54 PM,Code 2 Transport,03/30/2016 08:21:29 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160903320-62 +130560339,T05,13019000,Alarms,02/25/2013,02/25/2013,02/25/2013 08:55:34 PM,02/25/2013 08:57:05 PM,02/25/2013 08:57:13 PM,02/25/2013 08:57:51 PM,02/25/2013 09:01:43 PM,04/25/2016 01:54:07 PM,04/25/2016 01:54:07 PM,Other,02/25/2013 09:10:52 PM,0 Block of COOK ST,SF,94118,B05,10,445,3,3,3,true,Alarm,1,TRUCK,1,5,2,Presidio Heights,"(37.7827442362846, -122.452392135111)",130560339-T05 +160023195,85,16000917,Medical Incident,01/02/2016,01/02/2016,01/02/2016 08:54:38 PM,01/02/2016 08:54:48 PM,01/02/2016 09:03:45 PM,01/02/2016 09:03:56 PM,01/02/2016 09:16:33 PM,01/02/2016 09:30:01 PM,01/02/2016 09:49:38 PM,Code 2 Transport,01/02/2016 10:26:47 PM,1300 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",160023195-85 +160033314,85,16001399,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:50:41 PM,01/03/2016 10:51:53 PM,01/03/2016 10:53:37 PM,01/03/2016 10:54:10 PM,01/03/2016 11:07:12 PM,01/03/2016 11:27:49 PM,01/03/2016 11:36:40 PM,Code 2 Transport,01/04/2016 12:18:55 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160033314-85 +131830307,E28,13062461,Other,07/02/2013,07/02/2013,07/02/2013 06:58:43 PM,07/02/2013 07:00:15 PM,07/02/2013 07:00:36 PM,07/02/2013 07:01:39 PM,07/02/2013 07:03:32 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Fire,07/02/2013 07:09:20 PM,GRANT AV/NORTH POINT ST,SF,94133,B01,28,1255,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8071632523492, -122.408897336834)",131830307-E28 +160873067,KM11,16034704,Medical Incident,03/27/2016,03/27/2016,03/27/2016 07:32:22 PM,03/27/2016 07:34:25 PM,03/27/2016 07:35:40 PM,03/27/2016 07:36:04 PM,03/27/2016 07:46:53 PM,03/27/2016 08:08:38 PM,03/27/2016 08:15:06 PM,Code 2 Transport,03/27/2016 08:39:16 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",160873067-KM11 +160111666,AM08,16004394,Medical Incident,01/11/2016,01/11/2016,01/11/2016 01:03:22 PM,01/11/2016 01:04:26 PM,01/11/2016 01:04:49 PM,01/11/2016 01:05:44 PM,01/11/2016 01:10:51 PM,01/11/2016 01:26:01 PM,01/11/2016 01:35:25 PM,Code 2 Transport,01/11/2016 02:37:11 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",160111666-AM08 +121450138,E36,12048097,Medical Incident,05/24/2012,05/24/2012,05/24/2012 11:33:20 AM,05/24/2012 11:34:05 AM,05/24/2012 11:34:17 AM,05/24/2012 11:36:22 AM,05/24/2012 11:38:47 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 11:38:53 AM,8TH ST/MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",121450138-E36 +140420277,E03,14014351,Medical Incident,02/11/2014,02/11/2014,02/11/2014 04:51:03 PM,02/11/2014 04:52:20 PM,02/11/2014 04:52:36 PM,02/11/2014 04:53:29 PM,02/11/2014 04:55:17 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/11/2014 04:58:54 PM,VAN NESS AV/ELLIS ST,SF,94109,B04,3,3162,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7838241173643, -122.421008360007)",140420277-E03 +112160348,E07,11071480,Medical Incident,08/04/2011,08/04/2011,08/04/2011 07:56:22 PM,08/04/2011 07:56:23 PM,08/04/2011 07:56:39 PM,08/04/2011 07:57:44 PM,08/04/2011 07:58:54 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,04/25/2016 02:03:19 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,2,2,true,,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",112160348-E07 +160373925,PT204,16014951,Medical Incident,02/06/2016,02/06/2016,02/06/2016 10:02:33 PM,02/06/2016 10:02:56 PM,02/06/2016 10:05:59 PM,02/06/2016 10:06:39 PM,02/06/2016 10:19:25 PM,02/06/2016 10:22:03 PM,02/06/2016 10:39:31 PM,Code 2 Transport,02/06/2016 11:30:56 PM,1000 Block of GILMAN AVE,San Francisco,94124,B10,17,6611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7187222856771, -122.389118324965)",160373925-PT204 +131370031,88,13046143,Medical Incident,05/17/2013,05/16/2013,05/17/2013 02:14:07 AM,05/17/2013 02:16:25 AM,05/17/2013 02:16:53 AM,05/17/2013 02:17:00 AM,05/17/2013 02:21:22 AM,05/17/2013 02:32:32 AM,05/17/2013 02:37:06 AM,Code 2 Transport,05/17/2013 03:06:58 AM,2200 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7994131607449, -122.438492113191)",131370031-88 +113510426,66,11116690,Medical Incident,12/17/2011,12/17/2011,12/17/2011 11:24:55 PM,12/17/2011 11:25:35 PM,12/17/2011 11:26:38 PM,12/17/2011 11:26:47 PM,12/17/2011 11:44:47 PM,12/17/2011 11:58:42 PM,12/18/2011 12:14:49 AM,Code 2 Transport,12/18/2011 12:42:01 AM,1100 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7904931635277, -122.414117159154)",113510426-66 +123410173,55,12113765,Medical Incident,12/06/2012,12/06/2012,12/06/2012 11:17:05 AM,12/06/2012 11:19:21 AM,12/06/2012 11:20:25 AM,12/06/2012 11:21:10 AM,12/06/2012 11:25:19 AM,12/06/2012 11:41:48 AM,12/06/2012 11:55:54 AM,Code 2 Transport,12/06/2012 12:23:18 PM,1200 Block of FITZGERALD AVE,SF,94124,B10,17,6614,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7215500486273, -122.392199018387)",123410173-55 +132250417,E03,13076134,Medical Incident,08/13/2013,08/13/2013,08/13/2013 10:37:31 PM,08/13/2013 10:40:44 PM,08/13/2013 10:41:02 PM,08/13/2013 10:41:16 PM,08/13/2013 10:43:27 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 10:52:12 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132250417-E03 +133320065,E36,13112591,Medical Incident,11/28/2013,11/27/2013,11/28/2013 07:47:52 AM,11/28/2013 07:48:13 AM,11/28/2013 07:48:43 AM,11/28/2013 07:50:13 AM,11/28/2013 07:53:32 AM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/28/2013 08:00:52 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",133320065-E36 +102780106,B10,10088315,Traffic Collision,10/05/2010,10/05/2010,10/05/2010 09:07:03 AM,10/05/2010 09:07:55 AM,10/05/2010 09:08:46 AM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,Other,04/25/2016 02:08:15 PM,3RD ST/EVANS AV,SF,94124,B10,25,6457,3,3,3,false,,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",102780106-B10 +160241692,81,16009529,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:13:07 PM,01/24/2016 01:15:21 PM,01/24/2016 01:15:51 PM,01/24/2016 01:16:02 PM,01/24/2016 01:21:31 PM,01/24/2016 01:40:43 PM,01/24/2016 01:53:32 PM,Code 2 Transport,01/24/2016 02:35:59 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160241692-81 +121390355,KM07,12046318,Medical Incident,05/18/2012,05/18/2012,05/18/2012 10:07:04 PM,05/18/2012 10:09:01 PM,05/18/2012 10:10:47 PM,05/18/2012 10:11:56 PM,05/18/2012 10:24:00 PM,05/18/2012 10:34:09 PM,05/18/2012 10:52:04 PM,Code 2 Transport,05/18/2012 11:33:33 PM,3RD ST/16TH ST,SF,94158,B03,8,2364,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7669034802392, -122.389099105579)",121390355-KM07 +160221214,AM02,16008722,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:30:21 AM,01/22/2016 10:32:27 AM,01/22/2016 10:37:20 AM,01/22/2016 10:38:07 AM,01/22/2016 10:44:46 AM,01/22/2016 10:57:14 AM,01/22/2016 11:17:02 AM,Code 2 Transport,01/22/2016 12:02:50 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",160221214-AM02 +132650150,D3,13089862,Structure Fire,09/22/2013,09/22/2013,09/22/2013 10:37:24 AM,09/22/2013 10:38:43 AM,09/22/2013 10:38:59 AM,09/22/2013 10:40:00 AM,09/22/2013 10:42:07 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/22/2013 10:55:39 AM,300 Block of SAN CARLOS ST,SF,94110,B06,7,5446,3,3,3,false,Alarm,1,CHIEF,3,6,9,Mission,"(37.7577905970019, -122.419696229317)",132650150-D3 +130250160,89,13008600,Medical Incident,01/25/2013,01/25/2013,01/25/2013 11:37:05 AM,01/25/2013 11:38:18 AM,01/25/2013 11:39:04 AM,01/25/2013 11:39:14 AM,01/25/2013 11:44:15 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/25/2013 12:06:39 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",130250160-89 +110770366,E08,11025498,Medical Incident,03/18/2011,03/18/2011,03/18/2011 09:59:51 PM,03/18/2011 10:02:07 PM,03/18/2011 10:03:16 PM,03/18/2011 10:04:06 PM,03/18/2011 10:07:28 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 10:33:46 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",110770366-E08 +160442229,AM02,16017745,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:49:38 PM,02/13/2016 03:51:17 PM,02/13/2016 03:51:45 PM,02/13/2016 03:52:25 PM,02/13/2016 03:56:25 PM,02/13/2016 04:22:29 PM,02/13/2016 04:30:25 PM,Code 2 Transport,02/13/2016 04:39:34 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160442229-AM02 +123020108,67,12100092,Medical Incident,10/28/2012,10/27/2012,10/28/2012 06:08:00 AM,10/28/2012 06:08:00 AM,10/28/2012 06:08:51 AM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,04/25/2016 01:56:05 PM,100 Block of FELTON ST,SF,94134,B10,42,6341,1,1,2,true,Non Life-threatening,1,MEDIC,3,10,9,Portola,"(37.7296995803959, -122.406105145502)",123020108-67 +110510338,E18,11017019,Medical Incident,02/20/2011,02/20/2011,02/20/2011 07:55:49 PM,02/20/2011 07:56:45 PM,02/20/2011 07:57:06 PM,02/20/2011 07:59:58 PM,02/20/2011 08:02:53 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 08:19:41 PM,1600 Block of 41ST AVE,SF,94122,B08,23,7632,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7559938310566, -122.500169860871)",110510338-E18 +140100029,B07,14003367,Alarms,01/10/2014,01/09/2014,01/10/2014 03:06:31 AM,01/10/2014 03:08:34 AM,01/10/2014 03:09:01 AM,01/10/2014 03:10:55 AM,01/10/2014 03:13:42 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 03:26:58 AM,3100 Block of FULTON ST,SF,94122,B07,31,7133,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7734767861199, -122.465348329956)",140100029-B07 +160471554,79,16018905,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:58:34 AM,02/16/2016 12:00:32 PM,02/16/2016 12:00:56 PM,02/16/2016 12:01:02 PM,02/16/2016 12:02:40 PM,02/16/2016 12:13:47 PM,02/16/2016 12:20:18 PM,Patient Declined Transport,02/16/2016 12:38:13 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160471554-79 +160601698,74,16023898,Medical Incident,02/29/2016,02/29/2016,02/29/2016 12:54:05 PM,02/29/2016 12:54:05 PM,02/29/2016 12:54:54 PM,02/29/2016 12:55:01 PM,02/29/2016 12:57:49 PM,02/29/2016 01:12:21 PM,02/29/2016 01:25:58 PM,Code 2 Transport,02/29/2016 01:51:00 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160601698-74 +132850265,93,13097018,Medical Incident,10/12/2013,10/12/2013,10/12/2013 05:46:06 PM,10/12/2013 05:47:29 PM,10/12/2013 05:48:15 PM,10/12/2013 05:48:54 PM,10/12/2013 05:54:27 PM,10/12/2013 06:19:26 PM,10/12/2013 06:25:42 PM,Code 2 Transport,10/12/2013 06:54:07 PM,1000 Block of NOE ST,SF,94114,B06,11,5522,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",132850265-93 +160774342,58,16030827,Medical Incident,03/17/2016,03/17/2016,03/17/2016 11:11:03 PM,03/17/2016 11:11:03 PM,03/17/2016 11:11:53 PM,03/17/2016 11:12:13 PM,03/17/2016 11:17:03 PM,03/17/2016 11:30:07 PM,03/18/2016 12:09:35 AM,Code 2 Transport,03/18/2016 12:59:31 AM,500 Block of STEVENSON ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7808489821495, -122.410772584803)",160774342-58 +123530033,87,12117982,Structure Fire,12/18/2012,12/17/2012,12/18/2012 02:50:35 AM,12/18/2012 02:51:16 AM,12/18/2012 02:51:30 AM,12/18/2012 02:53:45 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 02:58:02 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Alarm,1,MEDIC,11,3,6,South of Market,"(37.7803475492385, -122.406487967809)",123530033-87 +160420247,60,16016718,Medical Incident,02/11/2016,02/10/2016,02/11/2016 03:02:37 AM,02/11/2016 03:04:24 AM,02/11/2016 03:04:52 AM,02/11/2016 03:05:06 AM,02/11/2016 03:09:45 AM,02/11/2016 03:51:07 AM,02/11/2016 03:57:03 AM,Code 3 Transport,02/11/2016 05:08:35 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160420247-60 +110130056,AM16,11004211,Medical Incident,01/13/2011,01/12/2011,01/13/2011 06:06:55 AM,01/13/2011 06:07:29 AM,01/13/2011 06:09:13 AM,01/13/2011 06:09:58 AM,01/13/2011 06:28:28 AM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Patient Declined Transport,01/13/2011 06:31:35 AM,900 Block of GOETTINGEN ST,SF,94134,B10,44,626,2,2,2,false,,1,PRIVATE,1,10,10,Portola,"(37.720395497495, -122.403937540892)",110130056-AM16 +140190064,E06,14006437,Medical Incident,01/19/2014,01/18/2014,01/19/2014 03:27:06 AM,01/19/2014 03:28:22 AM,01/19/2014 03:29:47 AM,01/19/2014 03:32:52 AM,01/19/2014 03:33:15 AM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/19/2014 03:36:59 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",140190064-E06 +133450306,B06,13117093,Structure Fire,12/11/2013,12/11/2013,12/11/2013 04:27:23 PM,12/11/2013 04:27:52 PM,12/11/2013 04:28:19 PM,12/11/2013 04:30:00 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,Other,12/11/2013 04:34:51 PM,500 Block of NEVADA ST,SF,94110,B10,32,5746,3,3,3,false,Alarm,1,CHIEF,6,10,9,Bernal Heights,"(37.7352159283229, -122.411843888216)",133450306-B06 +160441163,52,16017638,Medical Incident,02/13/2016,02/13/2016,02/13/2016 10:32:24 AM,02/13/2016 10:36:35 AM,02/13/2016 10:36:47 AM,02/13/2016 10:36:53 AM,02/13/2016 10:45:15 AM,02/13/2016 10:52:55 AM,02/13/2016 11:08:07 AM,Code 2 Transport,02/13/2016 11:45:38 AM,1900 Block of KIRKHAM ST,San Francisco,94122,B08,22,7447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7596742271899, -122.481688176679)",160441163-52 +103280196,96,10105079,Medical Incident,11/24/2010,11/24/2010,11/24/2010 02:37:50 PM,11/24/2010 02:39:16 PM,11/24/2010 02:40:20 PM,11/24/2010 02:40:48 PM,11/24/2010 02:41:29 PM,11/24/2010 03:08:07 PM,11/24/2010 03:20:01 PM,Code 2 Transport,11/24/2010 03:41:08 PM,1000 Block of LEAVENWORTH ST,SF,94109,B01,41,1541,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7907216617507, -122.415722994443)",103280196-96 +122360020,77,12078059,Structure Fire,08/23/2012,08/22/2012,08/23/2012 01:53:36 AM,08/23/2012 01:54:08 AM,08/23/2012 01:54:30 AM,08/23/2012 01:55:00 AM,08/23/2012 02:02:52 AM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Other,08/23/2012 02:03:46 AM,300 Block of NOE ST,SF,94114,B05,6,5233,3,3,3,true,Fire,1,MEDIC,7,5,8,Castro/Upper Market,"(37.7634109532229, -122.432957006653)",122360020-77 +113630039,73,11120478,Medical Incident,12/29/2011,12/28/2011,12/29/2011 04:46:19 AM,12/29/2011 04:46:34 AM,12/29/2011 04:46:42 AM,12/29/2011 04:48:05 AM,12/29/2011 04:53:04 AM,12/29/2011 04:59:14 AM,12/29/2011 05:03:34 AM,Code 2 Transport,12/29/2011 05:30:17 AM,1100 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7517406897648, -122.396529537539)",113630039-73 +111950149,T01,11064348,Structure Fire,07/14/2011,07/14/2011,07/14/2011 12:20:17 PM,07/14/2011 12:20:18 PM,07/14/2011 12:20:35 PM,07/14/2011 12:23:44 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 12:24:01 PM,8TH ST/MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",111950149-T01 +121660217,83,12055085,Medical Incident,06/14/2012,06/14/2012,06/14/2012 02:02:38 PM,06/14/2012 02:05:10 PM,06/14/2012 02:05:22 PM,06/14/2012 02:06:20 PM,06/14/2012 02:10:14 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 02:15:09 PM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7881178022274, -122.401226932683)",121660217-83 +121190042,E01,12039364,Structure Fire,04/28/2012,04/27/2012,04/28/2012 02:40:34 AM,04/28/2012 02:40:35 AM,04/28/2012 02:40:49 AM,04/28/2012 02:41:02 AM,04/28/2012 02:41:55 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Fire,04/28/2012 02:42:04 AM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7820242662358, -122.401159719509)",121190042-E01 +120080218,64,12002799,Medical Incident,01/08/2012,01/08/2012,01/08/2012 02:11:40 PM,01/08/2012 02:12:06 PM,01/08/2012 02:12:28 PM,01/08/2012 02:26:27 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/08/2012 02:28:32 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,E,E,3,false,Potentially Life-Threatening,1,MEDIC,6,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",120080218-64 +160651737,74,16025935,Medical Incident,03/05/2016,03/05/2016,03/05/2016 01:26:25 PM,03/05/2016 01:27:50 PM,03/05/2016 01:28:31 PM,03/05/2016 01:28:54 PM,03/05/2016 01:46:52 PM,03/05/2016 02:20:37 PM,03/05/2016 02:38:17 PM,Code 2 Transport,03/05/2016 03:31:57 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160651737-74 +133510078,T16,13119103,Alarms,12/17/2013,12/16/2013,12/17/2013 07:00:58 AM,12/17/2013 07:02:26 AM,12/17/2013 07:02:52 AM,12/17/2013 07:04:58 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 07:09:21 AM,100 Block of FISHER LOOP,PR,94129,B99,51,4626,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.7998898584318, -122.461819826995)",133510078-T16 +160520497,KM03,16020690,Medical Incident,02/21/2016,02/20/2016,02/21/2016 03:35:03 AM,02/21/2016 03:35:44 AM,02/21/2016 03:35:57 AM,02/21/2016 03:36:20 AM,02/21/2016 03:42:37 AM,02/21/2016 03:53:21 AM,02/21/2016 04:03:27 AM,Code 2 Transport,02/21/2016 04:43:54 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160520497-KM03 +160871551,75,16034556,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:58:42 AM,03/27/2016 12:00:24 PM,03/27/2016 12:01:54 PM,03/27/2016 12:02:16 PM,03/27/2016 12:10:20 PM,03/27/2016 12:21:21 PM,03/27/2016 12:37:41 PM,Code 2 Transport,03/27/2016 01:03:16 PM,700 Block of BROTHERHOOD WAY,San Francisco,94132,B08,33,8776,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.712805610441, -122.472725300838)",160871551-75 +160020508,65,16000623,Medical Incident,01/02/2016,01/01/2016,01/02/2016 05:47:51 AM,01/02/2016 05:47:51 AM,01/02/2016 05:49:49 AM,01/02/2016 05:49:49 AM,01/02/2016 05:52:40 AM,01/02/2016 06:37:30 AM,01/02/2016 06:46:08 AM,Code 2 Transport,01/02/2016 07:34:39 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",160020508-65 +113540395,E02,11117723,Medical Incident,12/20/2011,12/20/2011,12/20/2011 11:37:18 PM,12/20/2011 11:38:11 PM,12/20/2011 11:38:28 PM,12/20/2011 11:41:58 PM,12/20/2011 11:44:10 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,Other,12/20/2011 11:44:45 PM,HYDE ST/CLAY ST,SF,94109,B01,41,1536,3,E,3,true,,1,ENGINE,3,1,3,Nob Hill,"(37.7928036424376, -122.417759120819)",113540395-E02 +123420362,FB1,12114299,Water Rescue,12/07/2012,12/07/2012,12/07/2012 03:57:40 PM,12/07/2012 03:58:30 PM,12/07/2012 03:59:53 PM,12/07/2012 04:05:49 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/07/2012 04:27:53 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,SUPPORT,14,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",123420362-FB1 +112020021,94,11066510,Medical Incident,07/21/2011,07/20/2011,07/21/2011 01:58:35 AM,07/21/2011 02:00:21 AM,07/21/2011 02:00:29 AM,07/21/2011 02:00:43 AM,07/21/2011 02:02:42 AM,07/21/2011 02:20:47 AM,07/21/2011 02:28:20 AM,Code 2 Transport,07/21/2011 02:42:59 AM,0 Block of CASA WAY,SF,94123,B04,16,3563,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8055868215911, -122.439120724665)",112020021-94 +120730351,E29,12024367,Alarms,03/13/2012,03/13/2012,03/13/2012 09:20:43 PM,03/13/2012 09:21:59 PM,03/13/2012 09:22:08 PM,03/13/2012 09:23:54 PM,03/13/2012 09:24:50 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 09:32:47 PM,2400 Block of MARIPOSA ST,SF,94110,B02,29,5243,3,3,3,true,Alarm,1,ENGINE,1,2,10,Potrero Hill,"(37.7631000634463, -122.407798087313)",120730351-E29 +123650098,E12,12122054,Medical Incident,12/30/2012,12/30/2012,12/30/2012 08:12:35 AM,12/30/2012 08:12:58 AM,12/30/2012 08:13:18 AM,12/30/2012 08:14:58 AM,12/30/2012 08:18:02 AM,04/25/2016 01:55:03 PM,04/25/2016 01:55:03 PM,Other,12/30/2012 08:34:35 AM,2000 Block of OAK ST,SF,94117,B05,12,4544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7710632919476, -122.453062881382)",123650098-E12 +140180261,82,14006246,Medical Incident,01/18/2014,01/18/2014,01/18/2014 04:06:33 PM,01/18/2014 04:07:32 PM,01/18/2014 04:08:12 PM,01/18/2014 04:08:16 PM,01/18/2014 04:17:07 PM,01/18/2014 04:33:49 PM,01/18/2014 04:54:13 PM,Code 2 Transport,01/18/2014 05:16:09 PM,900 Block of YORK ST,SF,94110,B06,7,5474,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7568570579716, -122.408506271146)",140180261-82 +160851314,66,16033727,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:36:45 AM,03/25/2016 10:39:37 AM,03/25/2016 10:40:10 AM,03/25/2016 10:40:21 AM,03/25/2016 10:52:40 AM,03/25/2016 11:16:24 AM,03/25/2016 11:36:03 AM,Code 2 Transport,03/25/2016 12:35:09 PM,TEHAMA ST/6TH ST,San Francisco,94103,B03,1,2245,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7793146738209, -122.406628200775)",160851314-66 +133420241,93,13116017,Medical Incident,12/08/2013,12/08/2013,12/08/2013 02:20:31 PM,12/08/2013 02:21:19 PM,12/08/2013 02:21:30 PM,12/08/2013 02:21:55 PM,12/08/2013 02:30:09 PM,12/08/2013 03:01:29 PM,12/08/2013 03:24:02 PM,Code 2 Transport,12/08/2013 03:48:30 PM,400 Block of VICTORIA ST,SF,94132,B09,33,8444,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7188021317353, -122.465280431039)",133420241-93 +110690152,KM02,11022665,Medical Incident,03/10/2011,03/10/2011,03/10/2011 11:35:25 AM,03/10/2011 11:35:58 AM,03/10/2011 11:36:49 AM,03/10/2011 11:37:37 AM,03/10/2011 11:41:52 AM,03/10/2011 11:57:10 AM,03/10/2011 12:15:51 PM,Code 2 Transport,03/10/2011 12:46:42 PM,VAN NESS AV/OFARRELL ST,SF,94109,B04,3,3162,3,3,3,false,,1,PRIVATE,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",110690152-KM02 +130010564,E17,13000467,Medical Incident,01/01/2013,01/01/2013,01/01/2013 10:23:49 PM,01/01/2013 10:24:27 PM,01/01/2013 10:25:56 PM,01/01/2013 10:27:38 PM,01/01/2013 10:29:56 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/01/2013 10:39:50 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316639968394, -122.38316735998)",130010564-E17 +131770405,75,13060277,Medical Incident,06/26/2013,06/26/2013,06/26/2013 11:17:57 PM,06/26/2013 11:18:43 PM,06/26/2013 11:19:32 PM,06/26/2013 11:19:50 PM,06/26/2013 11:27:02 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Patient Declined Transport,06/26/2013 11:48:08 PM,100 Block of LANGTON ST,SF,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755325814084, -122.407486364653)",131770405-75 +140130110,E35,14004399,Medical Incident,01/13/2014,01/13/2014,01/13/2014 09:33:20 AM,01/13/2014 09:34:00 AM,01/13/2014 09:35:01 AM,01/13/2014 09:36:26 AM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/13/2014 09:53:29 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",140130110-E35 +160530318,70,16021056,Medical Incident,02/22/2016,02/21/2016,02/22/2016 04:38:22 AM,02/22/2016 04:39:46 AM,02/22/2016 04:41:40 AM,02/22/2016 04:41:53 AM,02/22/2016 04:56:01 AM,02/22/2016 05:18:06 AM,02/22/2016 05:36:38 AM,Code 2 Transport,02/22/2016 06:29:20 AM,0 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",160530318-70 +121460096,94,12048392,Medical Incident,05/25/2012,05/25/2012,05/25/2012 10:13:59 AM,05/25/2012 10:15:28 AM,05/25/2012 10:15:38 AM,05/25/2012 10:16:04 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Other,05/25/2012 10:21:06 AM,GENEVA AV/ATHENS ST,SF,94112,B09,43,6173,3,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7134759484794, -122.434541126439)",121460096-94 +140460151,94,14015634,Medical Incident,02/15/2014,02/15/2014,02/15/2014 11:07:14 AM,02/15/2014 11:07:57 AM,02/15/2014 11:08:12 AM,02/15/2014 11:08:21 AM,02/15/2014 11:11:16 AM,02/15/2014 11:27:41 AM,02/15/2014 11:40:39 AM,Code 2 Transport,02/15/2014 12:16:18 PM,100 Block of DELANO AVE,SF,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258307699304, -122.440937734179)",140460151-94 +132360080,E07,13079565,Medical Incident,08/24/2013,08/24/2013,08/24/2013 09:21:01 AM,08/24/2013 09:22:14 AM,08/24/2013 09:22:29 AM,08/24/2013 09:24:23 AM,08/24/2013 09:26:50 AM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/24/2013 09:29:06 AM,24TH ST/FLORIDA ST,SF,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7527390254513, -122.410066406492)",132360080-E07 +131450325,RC3,13049331,Medical Incident,05/25/2013,05/25/2013,05/25/2013 10:22:10 PM,05/25/2013 10:22:43 PM,05/25/2013 10:23:11 PM,05/25/2013 10:28:13 PM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,Other,05/25/2013 10:28:45 PM,700 Block of BARNEVELD AVE,SF,94134,B10,42,6366,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,9,Portola,"(37.7340230602944, -122.407626522365)",131450325-RC3 +132790071,KM07,13094794,Medical Incident,10/06/2013,10/05/2013,10/06/2013 03:12:04 AM,10/06/2013 03:12:16 AM,10/06/2013 03:13:27 AM,10/06/2013 03:14:00 AM,10/06/2013 03:14:55 AM,10/06/2013 03:43:41 AM,10/06/2013 04:14:48 AM,Code 2 Transport,10/06/2013 04:43:13 AM,600 Block of FULTON ST,SF,94102,B02,5,3412,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",132790071-KM07 +160641375,71,16025456,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:42:25 AM,03/04/2016 10:42:25 AM,03/04/2016 10:42:49 AM,03/04/2016 10:43:00 AM,03/04/2016 10:48:44 AM,03/04/2016 11:09:26 AM,03/04/2016 11:43:08 AM,Code 2 Transport,03/04/2016 11:57:28 AM,0 Block of BLK MARKET ST,San Francisco,94111,B01,13,1133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7953080071442, -122.3938439729)",160641375-71 +102750299,65,10087461,Medical Incident,10/02/2010,10/02/2010,10/02/2010 06:22:08 PM,10/02/2010 06:22:24 PM,10/02/2010 06:23:48 PM,10/02/2010 06:23:58 PM,04/25/2016 02:08:18 PM,10/02/2010 06:38:52 PM,10/02/2010 07:03:37 PM,Code 2 Transport,10/02/2010 07:12:06 PM,GRANT AV/OFARRELL ST,SF,94103,B01,1,1321,3,3,3,true,,1,MEDIC,2,1,6,Financial District/South Beach,"(37.7867305655456, -122.4045833182)",102750299-65 +112490204,B08,11082142,Alarms,09/06/2011,09/06/2011,09/06/2011 01:47:48 PM,09/06/2011 01:49:03 PM,09/06/2011 01:49:23 PM,09/06/2011 01:50:20 PM,09/06/2011 01:52:36 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 02:31:07 PM,1800 Block of 30TH AVE,SF,94122,B08,18,7515,3,3,3,false,,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7527846529683, -122.488272720267)",112490204-B08 +133160089,T10,13107354,Alarms,11/12/2013,11/12/2013,11/12/2013 09:39:35 AM,11/12/2013 09:40:46 AM,11/12/2013 09:41:06 AM,11/12/2013 09:42:18 AM,11/12/2013 09:44:32 AM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 09:46:13 AM,3300 Block of CALIFORNIA ST,SF,94118,B04,10,4421,3,3,3,true,Alarm,1,TRUCK,1,4,2,Presidio Heights,"(37.7869977461494, -122.449304455831)",133160089-T10 +160670641,AM02,16026636,Citizen Assist / Service Call,03/07/2016,03/07/2016,03/07/2016 08:49:18 AM,03/07/2016 08:49:18 AM,03/07/2016 08:49:18 AM,03/07/2016 08:49:18 AM,03/07/2016 08:49:18 AM,03/07/2016 08:12:00 AM,03/07/2016 08:34:00 AM,Code 2 Transport,03/07/2016 09:03:11 AM,100 Block of TURK ST,San Francisco,94102,B99,1,1456,3,3,3,false,Alarm,1,PRIVATE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160670641-AM02 +112480204,E36,11081807,Medical Incident,09/05/2011,09/05/2011,09/05/2011 02:12:03 PM,09/05/2011 02:13:04 PM,09/05/2011 02:13:43 PM,09/05/2011 02:14:59 PM,09/05/2011 02:15:53 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 02:29:23 PM,100 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",112480204-E36 +133320299,E03,13112789,Medical Incident,11/28/2013,11/28/2013,11/28/2013 11:00:29 PM,11/28/2013 11:02:54 PM,11/28/2013 11:04:40 PM,11/28/2013 11:05:53 PM,11/28/2013 11:08:24 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 11:27:21 PM,800 Block of BUSH ST,SF,94108,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",133320299-E03 +113490057,T01,11115712,Alarms,12/15/2011,12/14/2011,12/15/2011 07:16:19 AM,12/15/2011 07:17:44 AM,12/15/2011 07:17:52 AM,12/15/2011 07:20:06 AM,12/15/2011 07:22:48 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Fire,12/15/2011 07:28:44 AM,600 Block of FOLSOM ST,SF,94105,B03,1,2176,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7842647352821, -122.398419741529)",113490057-T01 +160741588,AM12,16029322,Medical Incident,03/14/2016,03/14/2016,03/14/2016 12:06:18 PM,03/14/2016 12:07:13 PM,03/14/2016 12:07:30 PM,03/14/2016 12:08:20 PM,03/14/2016 12:11:59 PM,03/14/2016 12:31:11 PM,03/14/2016 12:56:59 PM,Code 2 Transport,03/14/2016 01:35:49 PM,800 Block of LONDON ST,San Francisco,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7165210081561, -122.439990506306)",160741588-AM12 +132620301,KM14,13088844,Medical Incident,09/19/2013,09/19/2013,09/19/2013 05:36:38 PM,09/19/2013 05:37:51 PM,09/19/2013 05:38:15 PM,09/19/2013 05:40:34 PM,09/19/2013 05:42:52 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 05:43:56 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",132620301-KM14 +160571386,62,16022719,Medical Incident,02/26/2016,02/26/2016,02/26/2016 11:23:32 AM,02/26/2016 11:23:32 AM,02/26/2016 11:23:50 AM,02/26/2016 11:23:59 AM,02/26/2016 11:35:26 AM,02/26/2016 11:53:39 AM,02/26/2016 12:09:52 PM,Code 2 Transport,02/26/2016 12:39:49 PM,5TH ST/HOWARD ST,San Francisco,94103,B03,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160571386-62 +102670267,AM06,10084579,Medical Incident,09/24/2010,09/24/2010,09/24/2010 04:55:55 PM,09/24/2010 04:58:59 PM,09/24/2010 05:00:44 PM,04/25/2016 02:08:26 PM,09/24/2010 05:21:43 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Fire,09/24/2010 05:40:11 PM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,1,1,2,false,,1,PRIVATE,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",102670267-AM06 +130240258,E01,13008347,Medical Incident,01/24/2013,01/24/2013,01/24/2013 03:05:18 PM,01/24/2013 03:08:20 PM,01/24/2013 03:09:02 PM,01/24/2013 03:09:21 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,04/25/2016 01:54:38 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",130240258-E01 +120750114,84,12024852,Medical Incident,03/15/2012,03/15/2012,03/15/2012 09:28:15 AM,03/15/2012 09:28:55 AM,03/15/2012 09:29:07 AM,03/15/2012 09:33:03 AM,03/15/2012 09:32:19 AM,03/15/2012 10:02:02 AM,03/15/2012 10:19:53 AM,Code 2 Transport,03/15/2012 10:33:14 AM,400 Block of PARNASSUS AVE,SF,94122,B05,12,5155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",120750114-84 +160371751,KM11,16014677,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:09:20 PM,02/06/2016 12:12:27 PM,02/06/2016 12:12:51 PM,02/06/2016 12:13:58 PM,02/06/2016 12:24:13 PM,02/06/2016 12:45:11 PM,02/06/2016 12:57:38 PM,Code 2 Transport,02/06/2016 01:33:32 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160371751-KM11 +110710402,E13,11023541,Medical Incident,03/12/2011,03/12/2011,03/12/2011 10:46:29 PM,03/12/2011 10:47:34 PM,03/12/2011 10:47:44 PM,03/12/2011 10:49:34 PM,03/12/2011 10:51:03 PM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/12/2011 10:58:34 PM,JACKSON ST/DAVIS CT,SF,94111,B01,13,1132,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7970920526909, -122.398333149181)",110710402-E13 +112800216,E07,11092697,Traffic Collision,10/07/2011,10/07/2011,10/07/2011 02:16:22 PM,10/07/2011 02:17:02 PM,10/07/2011 02:17:50 PM,10/07/2011 02:18:42 PM,10/07/2011 02:20:20 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 02:32:55 PM,15TH ST/SOUTH VAN NESS AV,SF,94103,B02,7,5225,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7668052440942, -122.417645453705)",112800216-E07 +103190151,KM01,10102220,Medical Incident,11/15/2010,11/15/2010,11/15/2010 10:47:09 AM,11/15/2010 10:50:26 AM,11/15/2010 10:51:08 AM,04/25/2016 02:07:35 PM,11/15/2010 10:51:58 AM,11/15/2010 11:11:42 AM,11/15/2010 11:19:00 AM,Code 2 Transport,11/15/2010 11:43:53 AM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",103190151-KM01 +132100025,94,13070890,Medical Incident,07/29/2013,07/28/2013,07/29/2013 01:15:19 AM,07/29/2013 01:16:29 AM,07/29/2013 01:16:44 AM,07/29/2013 01:17:00 AM,07/29/2013 01:20:31 AM,07/29/2013 01:41:12 AM,07/29/2013 01:53:04 AM,Code 2 Transport,07/29/2013 02:23:39 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132100025-94 +130490151,E05,13016680,Medical Incident,02/18/2013,02/18/2013,02/18/2013 11:19:49 AM,02/18/2013 11:21:29 AM,02/18/2013 11:22:03 AM,02/18/2013 11:22:30 AM,02/18/2013 11:28:18 AM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/18/2013 11:36:47 AM,1700 Block of ELLIS ST,SF,94115,B05,5,3644,1,1,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7820998518656, -122.434998734545)",130490151-E05 +112120210,T06,11069978,Structure Fire,07/31/2011,07/31/2011,07/31/2011 02:43:47 PM,07/31/2011 02:43:48 PM,07/31/2011 02:44:11 PM,07/31/2011 02:45:37 PM,07/31/2011 02:50:04 PM,04/25/2016 02:03:24 PM,04/25/2016 02:03:24 PM,Other,07/31/2011 02:56:21 PM,3700 Block of 18TH ST,SF,94114,B06,6,541,3,3,3,false,,1,TRUCK,3,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",112120210-T06 +110430305,T01,11014366,Structure Fire,02/12/2011,02/12/2011,02/12/2011 04:54:11 PM,02/12/2011 04:55:34 PM,02/12/2011 04:55:46 PM,02/12/2011 05:02:05 PM,02/12/2011 05:35:25 PM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 05:38:17 PM,0 Block of MAIDEN LN,SF,94108,B01,1,1241,3,3,3,false,,1,TRUCK,9,1,3,Financial District/South Beach,"(37.7882745438187, -122.404344705962)",110430305-T01 +112340007,74,11077120,Medical Incident,08/22/2011,08/21/2011,08/22/2011 01:15:25 AM,08/22/2011 01:16:09 AM,08/22/2011 01:17:10 AM,08/22/2011 01:23:23 AM,08/22/2011 01:28:36 AM,08/22/2011 01:56:34 AM,08/22/2011 02:04:55 AM,Code 2 Transport,08/22/2011 02:35:02 AM,1700 Block of FUNSTON AVE,SF,94122,B08,22,7351,3,3,3,true,,1,MEDIC,3,8,7,Inner Sunset,"(37.755914152239, -122.469972651637)",112340007-74 +110200214,T16,11006621,Other,01/20/2011,01/20/2011,01/20/2011 01:08:47 PM,01/20/2011 01:09:45 PM,01/20/2011 01:09:56 PM,01/20/2011 01:11:35 PM,01/20/2011 01:17:22 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Fire,01/20/2011 01:23:02 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",110200214-T16 +160751639,84,16029700,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:27:25 PM,03/15/2016 12:28:17 PM,03/15/2016 12:28:30 PM,03/15/2016 12:28:48 PM,03/15/2016 12:34:59 PM,03/15/2016 12:46:11 PM,03/15/2016 12:57:48 PM,Code 2 Transport,03/15/2016 01:38:19 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7323409564372, -122.406116198284)",160751639-84 +120170157,E19,12005691,Medical Incident,01/17/2012,01/17/2012,01/17/2012 12:14:18 PM,01/17/2012 12:15:36 PM,01/17/2012 12:15:46 PM,01/17/2012 12:16:49 PM,01/17/2012 12:18:07 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 12:34:15 PM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",120170157-E19 +160201674,KM11,16007993,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:18:06 PM,01/20/2016 12:18:06 PM,01/20/2016 12:18:33 PM,01/20/2016 12:19:52 PM,01/20/2016 12:29:52 PM,01/20/2016 12:41:27 PM,01/20/2016 12:59:26 PM,Code 2 Transport,01/20/2016 01:34:14 PM,NEW MONTGOMERY ST/JESSIE ST,San Francisco,94105,B03,1,2158,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7878896127727, -122.401043044615)",160201674-KM11 +140250192,E41,14008578,Other,01/25/2014,01/25/2014,01/25/2014 02:19:03 PM,01/25/2014 02:19:03 PM,01/25/2014 02:19:03 PM,01/25/2014 02:19:03 PM,01/25/2014 02:19:03 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Fire,01/25/2014 02:28:09 PM,1600 Block of PACIFIC AVE,SF,94109,B04,41,3125,,3,3,false,Alarm,1,ENGINE,1,4,3,Russian Hill,"(37.7948681239822, -122.422393955327)",140250192-E41 +111580153,T03,11052214,Structure Fire,06/07/2011,06/07/2011,06/07/2011 12:49:04 PM,06/07/2011 12:49:04 PM,06/07/2011 12:50:23 PM,06/07/2011 12:51:30 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 12:51:45 PM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",111580153-T03 +132110337,E03,13071510,Structure Fire,07/30/2013,07/30/2013,07/30/2013 11:55:53 PM,07/30/2013 11:57:01 PM,07/30/2013 11:59:49 PM,07/31/2013 12:00:34 AM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 12:04:51 AM,700 Block of GOLDEN GATE AVE,SF,94102,B02,5,326,3,3,3,true,Alarm,1,ENGINE,8,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",132110337-E03 +140190132,94,14006495,Medical Incident,01/19/2014,01/19/2014,01/19/2014 10:14:20 AM,01/19/2014 10:17:05 AM,01/19/2014 10:17:45 AM,01/19/2014 10:17:56 AM,01/19/2014 10:32:38 AM,01/19/2014 10:47:38 AM,01/19/2014 11:05:56 AM,Code 2 Transport,01/19/2014 11:47:21 AM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7755676420155, -122.412334779681)",140190132-94 +112390276,B01,11078949,Alarms,08/27/2011,08/27/2011,08/27/2011 05:52:37 PM,08/27/2011 05:53:26 PM,08/27/2011 05:53:35 PM,08/27/2011 05:54:31 PM,08/27/2011 05:57:53 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 06:03:06 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,,1,CHIEF,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",112390276-B01 +113650040,KM04,11121138,Medical Incident,12/31/2011,12/30/2011,12/31/2011 01:33:19 AM,12/31/2011 01:34:25 AM,12/31/2011 01:35:56 AM,12/31/2011 01:36:59 AM,12/31/2011 01:40:53 AM,12/31/2011 01:55:50 AM,12/31/2011 02:10:09 AM,Code 2 Transport,12/31/2011 02:38:59 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",113650040-KM04 +130760090,67,13025310,Medical Incident,03/17/2013,03/16/2013,03/17/2013 07:11:41 AM,03/17/2013 07:12:35 AM,03/17/2013 07:13:13 AM,03/17/2013 07:13:20 AM,03/17/2013 07:16:18 AM,03/17/2013 07:31:12 AM,03/17/2013 07:49:57 AM,Code 2 Transport,03/17/2013 07:55:48 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",130760090-67 +113110325,E36,11103458,Traffic Collision,11/07/2011,11/07/2011,11/07/2011 08:18:46 PM,11/07/2011 08:20:31 PM,11/07/2011 08:21:01 PM,11/07/2011 08:22:33 PM,11/07/2011 08:23:21 PM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,Other,11/07/2011 08:31:34 PM,SOUTH VAN NESS AV/13TH ST,SF,94103,B02,36,5123,3,3,3,false,,1,ENGINE,1,2,6,Mission,"(37.769815078903, -122.417753195885)",113110325-E36 +110510221,T07,11016919,Citizen Assist / Service Call,02/20/2011,02/20/2011,02/20/2011 02:20:57 PM,02/20/2011 02:22:06 PM,02/20/2011 02:22:15 PM,02/20/2011 02:23:39 PM,02/20/2011 02:26:05 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Fire,02/20/2011 02:33:21 PM,MISSION ST/20TH ST,SF,94110,B06,7,5446,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",110510221-T07 +160683438,55,16027246,Medical Incident,03/08/2016,03/08/2016,03/08/2016 08:50:01 PM,03/08/2016 08:51:37 PM,03/08/2016 08:52:05 PM,03/08/2016 08:52:19 PM,03/08/2016 09:07:26 PM,03/08/2016 09:29:24 PM,03/08/2016 09:38:36 PM,Code 2 Transport,03/08/2016 10:01:12 PM,LEAVENWORTH ST/JEFFERSON ST,San Francisco,94109,B01,28,1524,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",160683438-55 +120010308,E16,12000261,Alarms,01/01/2012,12/31/2011,01/01/2012 06:41:43 AM,01/01/2012 06:42:54 AM,01/01/2012 06:44:34 AM,01/01/2012 06:45:59 AM,01/01/2012 06:51:52 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 06:53:21 AM,2600 Block of LOMBARD ST,SF,94123,B04,16,4223,3,3,3,true,Alarm,1,ENGINE,2,4,2,Marina,"(37.7986478736776, -122.445370366641)",120010308-E16 +130970100,B07,13032470,Structure Fire,04/07/2013,04/07/2013,04/07/2013 08:24:11 AM,04/07/2013 08:26:22 AM,04/07/2013 08:26:52 AM,04/07/2013 08:28:32 AM,04/07/2013 08:35:15 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 08:38:02 AM,JUDAH ST/46TH AV,SF,94122,B08,23,7655,3,3,3,false,Alarm,1,CHIEF,6,8,4,Sunset/Parkside,"(37.7604244274632, -122.505928109422)",130970100-B07 +160910074,54,16035923,Medical Incident,03/31/2016,03/30/2016,03/31/2016 12:36:57 AM,03/31/2016 12:36:57 AM,03/31/2016 12:37:21 AM,03/31/2016 12:37:55 AM,03/31/2016 12:49:53 AM,03/31/2016 01:00:39 AM,03/31/2016 01:11:41 AM,Code 2 Transport,03/31/2016 01:53:01 AM,0 Block of BACHE ST,San Francisco,94110,B06,32,5751,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7344393110914, -122.417593854342)",160910074-54 +103600257,68,10115613,Medical Incident,12/26/2010,12/26/2010,12/26/2010 08:54:34 PM,12/26/2010 08:57:41 PM,12/26/2010 08:58:05 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,04/25/2016 02:06:55 PM,0 Block of EDGAR AVE,SF,94112,B09,15,8471,2,2,2,false,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7208956020171, -122.452236185324)",103600257-68 +111880323,E09,11062281,Medical Incident,07/07/2011,07/07/2011,07/07/2011 08:50:31 PM,07/07/2011 08:51:40 PM,07/07/2011 08:51:50 PM,07/07/2011 08:53:00 PM,07/07/2011 08:54:50 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,No Merit,07/07/2011 09:02:06 PM,FLORIDA ST/PRECITA AV,SF,94110,B06,9,5621,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.747553213579, -122.409571728298)",111880323-E09 +123370586,E21,12112529,Medical Incident,12/02/2012,12/02/2012,12/02/2012 11:45:59 PM,12/02/2012 11:46:34 PM,12/02/2012 11:46:45 PM,04/25/2016 01:55:30 PM,12/02/2012 11:49:29 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/02/2012 11:58:10 PM,500 Block of CENTRAL AVE,SF,94117,B05,21,4361,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7746264390362, -122.444430401392)",123370586-E21 +131410205,T02,13047792,Alarms,05/21/2013,05/21/2013,05/21/2013 01:26:30 PM,05/21/2013 01:27:35 PM,05/21/2013 01:27:39 PM,05/21/2013 01:28:29 PM,05/21/2013 01:29:15 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Fire,05/21/2013 01:33:47 PM,2200 Block of JONES ST,SF,94133,B01,28,151,3,3,3,false,Alarm,1,TRUCK,1,1,3,Russian Hill,"(37.8019369945594, -122.416296996585)",131410205-T02 +121030133,E01,12034072,Medical Incident,04/12/2012,04/12/2012,04/12/2012 10:00:40 AM,04/12/2012 10:02:21 AM,04/12/2012 10:02:51 AM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/12/2012 10:05:26 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",121030133-E01 +160330240,78,16012826,Medical Incident,02/02/2016,02/01/2016,02/02/2016 02:36:44 AM,02/02/2016 02:37:59 AM,02/02/2016 02:38:10 AM,02/02/2016 02:39:05 AM,02/02/2016 02:46:07 AM,02/02/2016 03:05:02 AM,02/02/2016 03:15:52 AM,Code 2 Transport,02/02/2016 04:07:39 AM,BRANNAN ST/8TH ST,San Francisco,94103,B03,29,2325,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7712963527723, -122.405424735702)",160330240-78 +160833565,KM11,16033109,Traffic Collision,03/23/2016,03/23/2016,03/23/2016 07:32:38 PM,03/23/2016 07:32:38 PM,03/23/2016 07:33:26 PM,03/23/2016 07:34:11 PM,03/23/2016 07:39:23 PM,03/23/2016 08:13:13 PM,03/23/2016 08:48:38 PM,Code 2 Transport,03/23/2016 08:51:58 PM,LOMBARD ST/COLUMBUS AV,San Francisco,94133,B01,28,1423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8027432009748, -122.413718749936)",160833565-KM11 +132520035,E32,13085058,Medical Incident,09/09/2013,09/08/2013,09/09/2013 03:10:23 AM,09/09/2013 03:13:04 AM,09/09/2013 03:13:32 AM,09/09/2013 03:15:43 AM,09/09/2013 03:16:44 AM,04/25/2016 01:50:53 PM,04/25/2016 01:50:53 PM,Other,09/09/2013 03:23:00 AM,30TH ST/MISSION ST,SF,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",132520035-E32 +160681818,60,16027124,Medical Incident,03/08/2016,03/08/2016,03/08/2016 01:02:46 PM,03/08/2016 01:03:25 PM,03/08/2016 01:03:47 PM,03/08/2016 01:03:59 PM,03/08/2016 01:11:44 PM,03/08/2016 01:31:57 PM,03/08/2016 01:45:38 PM,Code 2 Transport,03/08/2016 02:25:47 PM,0 Block of ELLIS ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7856720367472, -122.406852525575)",160681818-60 +140940145,55,14031563,Structure Fire,04/04/2014,04/04/2014,04/04/2014 11:24:29 AM,04/04/2014 11:25:23 AM,04/04/2014 11:27:42 AM,04/04/2014 11:27:42 AM,04/04/2014 11:33:35 AM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Fire,04/04/2014 11:41:02 AM,100 Block of MASON ST,SAN FRANCISCO,94102,B03,1,1366,,3,3,true,Fire,1,MEDIC,7,3,3,Tenderloin,"(37.7848247766053, -122.409335015482)",140940145-55 +131840263,66,13062758,Medical Incident,07/03/2013,07/03/2013,07/03/2013 04:12:40 PM,07/03/2013 04:14:40 PM,07/03/2013 04:15:36 PM,04/25/2016 01:51:59 PM,07/03/2013 04:19:17 PM,07/03/2013 04:22:30 PM,07/03/2013 04:47:41 PM,Code 2 Transport,07/03/2013 05:02:12 PM,GOUGH ST/MCALLISTER ST,SF,94102,B02,5,3316,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7796735861193, -122.423541306846)",131840263-66 +122020053,B04,12067000,Structure Fire,07/20/2012,07/19/2012,07/20/2012 03:46:21 AM,07/20/2012 03:47:04 AM,07/20/2012 03:47:19 AM,07/20/2012 03:48:58 AM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 03:52:15 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,false,Fire,1,CHIEF,10,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",122020053-B04 +112200265,E19,11072760,Medical Incident,08/08/2011,08/08/2011,08/08/2011 05:25:50 PM,08/08/2011 05:29:46 PM,08/08/2011 05:31:16 PM,08/08/2011 05:32:31 PM,08/08/2011 05:35:14 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 06:11:00 PM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",112200265-E19 +110870195,82,11028730,Medical Incident,03/28/2011,03/28/2011,03/28/2011 01:21:32 PM,03/28/2011 01:22:19 PM,03/28/2011 01:33:15 PM,03/28/2011 01:43:03 PM,04/25/2016 02:05:24 PM,03/28/2011 01:54:53 PM,03/28/2011 02:14:45 PM,Code 2 Transport,03/28/2011 02:30:26 PM,HOWARD ST/MAIN ST,SF,94105,B03,35,2114,3,2,2,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",110870195-82 +133030015,T17,13102805,Citizen Assist / Service Call,10/30/2013,10/29/2013,10/30/2013 01:31:31 AM,10/30/2013 01:32:44 AM,10/30/2013 01:32:54 AM,10/30/2013 01:35:13 AM,10/30/2013 01:40:28 AM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/30/2013 02:28:20 AM,100 Block of CRESCENT WAY,SF,94134,B10,17,6576,3,3,3,true,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7111340886592, -122.389340428123)",133030015-T17 +131510242,58,13051172,Medical Incident,05/31/2013,05/31/2013,05/31/2013 03:06:22 PM,05/31/2013 03:08:11 PM,05/31/2013 03:09:45 PM,05/31/2013 03:09:54 PM,05/31/2013 03:20:38 PM,05/31/2013 03:42:43 PM,05/31/2013 03:50:07 PM,Code 2 Transport,05/31/2013 04:10:59 PM,0 Block of HERMANN ST,SF,94102,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7707101221548, -122.425947237004)",131510242-58 +110980184,95,11032495,Medical Incident,04/08/2011,04/08/2011,04/08/2011 12:02:12 PM,04/08/2011 12:03:24 PM,04/08/2011 12:04:31 PM,04/08/2011 12:07:55 PM,04/25/2016 02:05:12 PM,04/25/2016 02:05:12 PM,04/25/2016 02:05:12 PM,Other,04/08/2011 12:10:29 PM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,1,2,6,Mission,"(37.7738670346175, -122.417523396516)",110980184-95 +113630077,E36,11120510,Traffic Collision,12/29/2011,12/29/2011,12/29/2011 09:05:14 AM,12/29/2011 09:06:01 AM,12/29/2011 09:07:10 AM,12/29/2011 09:07:58 AM,12/29/2011 09:10:40 AM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/29/2011 09:19:27 AM,8TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7762213544451, -122.411606113878)",113630077-E36 +160801161,KM06,16031761,Medical Incident,03/20/2016,03/20/2016,03/20/2016 10:08:02 AM,03/20/2016 10:10:13 AM,03/20/2016 10:10:29 AM,03/20/2016 10:10:58 AM,03/20/2016 10:30:14 AM,03/20/2016 10:40:28 AM,03/20/2016 10:59:14 AM,Code 2 Transport,03/20/2016 11:54:07 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160801161-KM06 +103380368,AM10,10108299,Medical Incident,12/04/2010,12/04/2010,12/04/2010 07:42:54 PM,12/04/2010 07:45:40 PM,12/04/2010 07:46:42 PM,12/04/2010 07:49:07 PM,12/04/2010 07:50:41 PM,12/04/2010 08:00:40 PM,12/04/2010 08:10:49 PM,Code 2 Transport,12/04/2010 08:26:14 PM,MISSION ST/4TH ST,SF,94103,B03,1,2213,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",103380368-AM10 +121390197,54,12046172,Watercraft in Distress,05/18/2012,05/18/2012,05/18/2012 02:04:53 PM,05/18/2012 02:06:38 PM,05/18/2012 02:08:03 PM,05/18/2012 02:08:39 PM,05/18/2012 02:18:55 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/18/2012 02:22:33 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,MEDIC,6,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121390197-54 +120590128,FB1,12019384,Alarms,02/28/2012,02/28/2012,02/28/2012 10:47:25 AM,02/28/2012 10:48:17 AM,02/28/2012 10:49:08 AM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/28/2012 10:57:45 AM,100 Block of JENNINGS ST,SF,94124,B10,25,996,3,3,3,false,Alarm,1,SUPPORT,5,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",120590128-FB1 +160702372,55,16027917,Medical Incident,03/10/2016,03/10/2016,03/10/2016 04:03:03 PM,03/10/2016 04:06:44 PM,03/10/2016 04:07:08 PM,03/10/2016 04:11:28 PM,03/10/2016 04:24:29 PM,03/10/2016 04:40:34 PM,03/10/2016 05:11:33 PM,Code 2 Transport,03/10/2016 05:49:15 PM,1500 Block of 45TH AVE,San Francisco,94122,B08,23,7661,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7576702834334, -122.504728868209)",160702372-55 +110120201,83,11003995,Medical Incident,01/12/2011,01/12/2011,01/12/2011 01:46:10 PM,01/12/2011 01:46:32 PM,01/12/2011 01:47:12 PM,01/12/2011 01:47:28 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Patient Declined Transport,01/12/2011 01:51:49 PM,BUSH ST/TAYLOR ST,SF,94108,B01,41,1446,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7897399070402, -122.412075869047)",110120201-83 +160863344,64,16034337,Traffic Collision,03/26/2016,03/26/2016,03/26/2016 08:13:13 PM,03/26/2016 08:15:21 PM,03/26/2016 08:15:37 PM,03/26/2016 08:16:02 PM,03/26/2016 08:23:16 PM,03/26/2016 08:43:27 PM,03/26/2016 08:59:23 PM,Code 2 Transport,03/26/2016 09:57:48 PM,WILLIAMS AV/NEPTUNE ST,San Francisco,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.729909884432, -122.397176877944)",160863344-64 +130660047,87,13021928,Medical Incident,03/07/2013,03/06/2013,03/07/2013 03:08:01 AM,03/07/2013 03:08:56 AM,03/07/2013 03:09:09 AM,03/07/2013 03:09:33 AM,03/07/2013 03:16:05 AM,03/07/2013 03:26:56 AM,03/07/2013 03:39:28 AM,Code 2 Transport,03/07/2013 04:19:39 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",130660047-87 +111350020,KM15,11044756,Medical Incident,05/15/2011,05/14/2011,05/15/2011 12:42:07 AM,05/15/2011 12:45:23 AM,05/15/2011 12:45:50 AM,05/15/2011 12:46:35 AM,05/15/2011 12:57:14 AM,05/15/2011 01:10:47 AM,05/15/2011 01:21:40 AM,Code 2 Transport,05/15/2011 01:56:30 AM,1000 Block of PALOU AVE,SF,94124,B10,17,6647,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7281870279805, -122.380818341183)",111350020-KM15 +113010341,E42,11099963,Medical Incident,10/28/2011,10/28/2011,10/28/2011 07:43:36 PM,10/28/2011 07:44:58 PM,10/28/2011 07:45:12 PM,10/28/2011 07:46:59 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 07:47:59 PM,SOMERSET ST/SAN BRUNO AV,SF,94134,B10,44,6266,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7135082040895, -122.402095796282)",113010341-E42 +160633230,64,16025211,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:11:24 PM,03/03/2016 07:11:24 PM,03/03/2016 07:12:21 PM,03/03/2016 07:13:04 PM,03/03/2016 07:20:29 PM,03/03/2016 07:32:29 PM,03/03/2016 08:02:17 PM,Code 2 Transport,03/03/2016 08:28:15 PM,SUTTER ST/LAGUNA ST,San Francisco,94115,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7867126546212, -122.428335613395)",160633230-64 +120970030,E14,12031991,Medical Incident,04/06/2012,04/05/2012,04/06/2012 03:14:20 AM,04/06/2012 03:17:54 AM,04/06/2012 03:18:40 AM,04/06/2012 03:20:22 AM,04/06/2012 03:22:41 AM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 03:47:30 AM,300 Block of 24TH AVE,SF,94121,B07,14,7174,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7830068611029, -122.483800844392)",120970030-E14 +120290088,KM10,12009664,Medical Incident,01/29/2012,01/29/2012,01/29/2012 08:36:06 AM,01/29/2012 08:36:20 AM,01/29/2012 08:36:30 AM,01/29/2012 08:37:22 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 08:41:36 AM,10TH ST/HARRISON ST,SF,94103,B02,29,2344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7715786771769, -122.411277938324)",120290088-KM10 +140410293,RS1,14014011,Traffic Collision,02/10/2014,02/10/2014,02/10/2014 04:03:32 PM,02/10/2014 04:03:55 PM,02/10/2014 04:04:11 PM,02/10/2014 04:04:52 PM,02/10/2014 04:05:23 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 04:17:54 PM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",140410293-RS1 +111330114,E08,11044006,Medical Incident,05/13/2011,05/13/2011,05/13/2011 11:02:10 AM,05/13/2011 11:02:37 AM,05/13/2011 11:04:10 AM,05/13/2011 11:09:24 AM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 11:09:25 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",111330114-E08 +131470116,E23,13049827,Administrative,05/27/2013,05/27/2013,05/27/2013 10:35:08 AM,05/27/2013 10:35:11 AM,05/27/2013 10:35:16 AM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,Fire,05/27/2013 10:35:43 AM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",131470116-E23 +160571031,AM02,16022683,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:40:26 AM,02/26/2016 09:40:49 AM,02/26/2016 09:41:05 AM,02/26/2016 09:42:01 AM,02/26/2016 10:06:14 AM,02/26/2016 10:06:17 AM,02/26/2016 10:21:12 AM,Code 2 Transport,02/26/2016 11:09:02 AM,1400 Block of LA PLAYA,San Francisco,94122,B08,23,7723,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7593365475949, -122.509005317749)",160571031-AM02 +103180246,75,10101974,Medical Incident,11/14/2010,11/14/2010,11/14/2010 03:42:40 PM,11/14/2010 03:43:01 PM,11/14/2010 03:43:22 PM,11/14/2010 03:44:04 PM,11/14/2010 03:47:05 PM,11/14/2010 04:08:19 PM,11/14/2010 04:27:56 PM,Code 2 Transport,11/14/2010 05:04:16 PM,3300 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7482858766932, -122.417044258324)",103180246-75 +140580305,RS1,14019668,Medical Incident,02/27/2014,02/27/2014,02/27/2014 07:06:55 PM,02/27/2014 07:07:38 PM,02/27/2014 07:10:02 PM,02/27/2014 07:10:43 PM,02/27/2014 07:15:07 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Code 2 Transport,02/27/2014 07:17:49 PM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2158,3,3,3,false,Non Life-threatening,1,RESCUE SQUAD,1,3,6,Financial District/South Beach,"(37.7881178022274, -122.401226932683)",140580305-RS1 +111150198,83,11037953,Medical Incident,04/25/2011,04/25/2011,04/25/2011 01:04:03 PM,04/25/2011 01:04:41 PM,04/25/2011 01:05:03 PM,04/25/2011 01:05:28 PM,04/25/2011 01:06:23 PM,04/25/2011 01:24:07 PM,04/25/2011 01:33:09 PM,Code 2 Transport,04/25/2016 02:04:56 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",111150198-83 +131510358,54,13051283,Medical Incident,05/31/2013,05/31/2013,05/31/2013 08:05:59 PM,05/31/2013 08:05:59 PM,05/31/2013 08:05:59 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,05/31/2013 08:15:41 PM,05/31/2013 08:31:16 PM,Code 2 Transport,05/31/2013 09:07:12 PM,MISSION ST/7TH ST,SF,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",131510358-54 +160831341,63,16032910,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:41:30 AM,03/23/2016 10:42:47 AM,03/23/2016 10:43:02 AM,03/23/2016 10:48:25 AM,03/23/2016 10:50:20 AM,03/23/2016 11:24:56 AM,03/23/2016 11:45:18 AM,Code 2 Transport,03/23/2016 12:24:35 PM,300 Block of HEAD ST,San Francisco,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.713614800777, -122.464324485172)",160831341-63 +110630303,E36,11020797,Medical Incident,03/04/2011,03/04/2011,03/04/2011 04:47:27 PM,03/04/2011 04:48:12 PM,03/04/2011 04:49:21 PM,03/04/2011 04:50:04 PM,03/04/2011 04:51:00 PM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Other,03/04/2011 04:53:56 PM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",110630303-E36 +160854305,KM07,16034021,Traffic Collision,03/25/2016,03/25/2016,03/25/2016 11:48:20 PM,03/25/2016 11:49:09 PM,03/25/2016 11:50:00 PM,03/25/2016 11:50:34 PM,03/25/2016 11:57:01 PM,03/26/2016 12:06:13 AM,03/26/2016 12:16:38 AM,Code 2 Transport,03/26/2016 12:50:02 AM,KING ST/3RD ST,San Francisco,94107,B03,8,2154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",160854305-KM07 +123540078,57,12118363,Medical Incident,12/19/2012,12/18/2012,12/19/2012 07:08:06 AM,12/19/2012 07:10:28 AM,12/19/2012 07:10:54 AM,12/19/2012 07:11:11 AM,12/19/2012 07:35:16 AM,12/19/2012 07:43:00 AM,12/19/2012 07:55:02 AM,Code 2 Transport,12/19/2012 08:15:44 AM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",123540078-57 +122440183,FB1,12080663,Structure Fire,08/31/2012,08/31/2012,08/31/2012 01:33:23 PM,08/31/2012 01:36:09 PM,08/31/2012 01:36:39 PM,08/31/2012 01:40:02 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,Other,08/31/2012 01:45:01 PM,1200 Block of BAYSIDE DR,TI,94130,B03,48,2931,3,3,3,false,Fire,1,SUPPORT,10,None,6,Treasure Island,"(37.8304547884044, -122.37629451046)",122440183-FB1 +120990169,KM04,12032799,Medical Incident,04/08/2012,04/08/2012,04/08/2012 01:52:33 PM,04/08/2012 01:54:20 PM,04/08/2012 01:55:48 PM,04/08/2012 01:56:41 PM,04/08/2012 02:05:43 PM,04/08/2012 02:23:26 PM,04/08/2012 02:47:56 PM,Code 2 Transport,04/08/2012 03:10:27 PM,22ND ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7555682781294, -122.416566643053)",120990169-KM04 +132620137,E03,13088701,Medical Incident,09/19/2013,09/19/2013,09/19/2013 11:02:20 AM,09/19/2013 11:03:55 AM,09/19/2013 11:05:28 AM,09/19/2013 11:05:41 AM,09/19/2013 11:07:06 AM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 11:16:46 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",132620137-E03 +112780031,T02,11091911,Alarms,10/05/2011,10/04/2011,10/05/2011 02:56:25 AM,10/05/2011 02:57:59 AM,10/05/2011 02:58:06 AM,10/05/2011 03:00:13 AM,10/05/2011 03:05:03 AM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 03:14:25 AM,500 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.8061880612091, -122.416243833913)",112780031-T02 +110490317,AM18,11016292,Medical Incident,02/18/2011,02/18/2011,02/18/2011 06:07:18 PM,02/18/2011 06:08:13 PM,02/18/2011 06:10:06 PM,02/18/2011 06:11:30 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 06:12:22 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,E,3,false,,1,PRIVATE,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110490317-AM18 +122870097,66,12094866,Medical Incident,10/13/2012,10/13/2012,10/13/2012 09:20:09 AM,10/13/2012 09:22:44 AM,10/13/2012 09:23:02 AM,10/13/2012 09:24:29 AM,10/13/2012 09:33:03 AM,10/13/2012 09:51:26 AM,10/13/2012 10:18:07 AM,Code 2 Transport,10/13/2012 10:52:35 AM,2800 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5621,1,1,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.748477075368, -122.40726616693)",122870097-66 +160343735,57,16013620,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:03:26 PM,02/03/2016 11:03:26 PM,02/03/2016 11:04:16 PM,02/03/2016 11:04:28 PM,02/03/2016 11:19:05 PM,02/03/2016 11:35:33 PM,02/03/2016 11:48:11 PM,Code 2 Transport,02/04/2016 12:15:03 AM,2300 Block of 19TH AVE,San Francisco,94116,B08,40,7416,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7439803947416, -122.475835562635)",160343735-57 +132120233,81,13071703,Medical Incident,07/31/2013,07/31/2013,07/31/2013 03:41:43 PM,07/31/2013 03:43:37 PM,07/31/2013 03:43:51 PM,07/31/2013 03:44:04 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,No Merit,07/31/2013 03:54:16 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",132120233-81 +122670287,E28,12088312,Medical Incident,09/23/2012,09/23/2012,09/23/2012 06:48:43 PM,09/23/2012 06:49:41 PM,09/23/2012 06:49:55 PM,09/23/2012 06:51:11 PM,09/23/2012 06:53:06 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 07:01:31 PM,2500 Block of LEAVENWORTH ST,SF,94133,B01,28,1526,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8045432977742, -122.418367647759)",122670287-E28 +130180183,KM09,13006126,Medical Incident,01/18/2013,01/18/2013,01/18/2013 11:23:53 AM,01/18/2013 11:25:16 AM,01/18/2013 11:25:34 AM,01/18/2013 11:26:15 AM,01/18/2013 11:31:11 AM,01/18/2013 11:54:54 AM,01/18/2013 12:14:14 PM,Code 2 Transport,01/18/2013 01:06:01 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",130180183-KM09 +160363035,AM18,16014365,Medical Incident,02/05/2016,02/05/2016,02/05/2016 05:37:04 PM,02/05/2016 05:37:04 PM,02/05/2016 05:37:42 PM,02/05/2016 05:38:22 PM,02/05/2016 05:42:07 PM,02/05/2016 05:50:23 PM,02/05/2016 06:12:44 PM,Code 2 Transport,02/05/2016 06:47:39 PM,400 Block of BLK 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7791933366686, -122.402142725311)",160363035-AM18 +122460351,E41,12081504,Structure Fire,09/02/2012,09/02/2012,09/02/2012 07:54:18 PM,09/02/2012 07:54:19 PM,09/02/2012 07:54:27 PM,09/02/2012 07:55:04 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 07:55:23 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",122460351-E41 +160222749,75,16008859,Medical Incident,01/22/2016,01/22/2016,01/22/2016 05:17:02 PM,01/22/2016 05:18:57 PM,01/22/2016 05:19:05 PM,01/22/2016 05:19:17 PM,01/22/2016 05:49:44 PM,01/22/2016 06:14:17 PM,01/22/2016 06:27:53 PM,Code 2 Transport,01/22/2016 07:05:38 PM,0 Block of BELDEN ST,San Francisco,94104,B01,13,1235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7912793098409, -122.403701987134)",160222749-75 +160652788,74,16026041,Medical Incident,03/05/2016,03/05/2016,03/05/2016 06:35:53 PM,03/05/2016 06:38:47 PM,03/05/2016 06:38:55 PM,03/05/2016 06:39:13 PM,03/05/2016 06:45:26 PM,03/05/2016 07:01:59 PM,03/05/2016 07:19:58 PM,Code 2 Transport,03/05/2016 07:29:52 PM,0 Block of ARELLANO AVE,San Francisco,94132,B08,19,8682,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7205184723741, -122.479077069353)",160652788-74 +130280079,T02,13009519,Alarms,01/28/2013,01/28/2013,01/28/2013 08:37:56 AM,01/28/2013 08:37:57 AM,01/28/2013 08:38:13 AM,01/28/2013 08:40:39 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 08:43:59 AM,100 Block of PINE ST,SF,94111,B01,13,1136,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.792387312641, -122.399186604536)",130280079-T02 +132870016,84,13097478,Medical Incident,10/14/2013,10/13/2013,10/14/2013 01:15:34 AM,10/14/2013 01:15:44 AM,10/14/2013 01:19:16 AM,10/14/2013 01:19:34 AM,10/14/2013 01:33:14 AM,10/14/2013 02:10:57 AM,10/14/2013 02:28:10 AM,Code 2 Transport,10/14/2013 02:50:26 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",132870016-84 +132350264,E33,13079373,Electrical Hazard,08/23/2013,08/23/2013,08/23/2013 04:34:30 PM,08/23/2013 04:35:51 PM,08/23/2013 04:42:04 PM,08/23/2013 04:43:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,04/25/2016 01:51:09 PM,ALLISON ST/BRUNSWICK ST,SF,94112,B09,43,6221,3,3,3,true,Alarm,1,ENGINE,2,9,11,Excelsior,"(37.7112111560219, -122.441130267918)",132350264-E33 +131650084,D2,13055971,Structure Fire,06/14/2013,06/13/2013,06/14/2013 07:37:59 AM,06/14/2013 07:41:41 AM,06/14/2013 07:41:50 AM,06/14/2013 07:42:31 AM,06/14/2013 07:47:07 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 08:06:34 AM,100 Block of BELVEDERE ST,SF,94117,B05,12,4532,3,3,3,false,Alarm,1,CHIEF,5,5,5,Haight Ashbury,"(37.7677916966538, -122.449332294394)",131650084-D2 +132980248,E03,13101255,Alarms,10/25/2013,10/25/2013,10/25/2013 03:35:39 PM,10/25/2013 03:36:37 PM,10/25/2013 03:37:12 PM,10/25/2013 03:39:48 PM,10/25/2013 03:40:07 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 03:51:13 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.788031406746, -122.410889094263)",132980248-E03 +111000152,T18,11033189,Structure Fire,04/10/2011,04/10/2011,04/10/2011 11:43:21 AM,04/10/2011 11:44:32 AM,04/10/2011 11:44:45 AM,04/10/2011 11:46:16 AM,04/10/2011 11:50:32 AM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 12:25:48 PM,1300 Block of 20TH AVE,SF,94122,B08,22,7424,3,3,3,false,,1,TRUCK,4,8,4,Sunset/Parkside,"(37.7625809452391, -122.478195483155)",111000152-T18 +103570268,E44,10114644,Medical Incident,12/23/2010,12/23/2010,12/23/2010 04:51:50 PM,12/23/2010 04:52:21 PM,12/23/2010 04:52:30 PM,12/23/2010 04:52:41 PM,12/23/2010 04:55:22 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/23/2010 05:22:36 PM,100 Block of DELTA ST,SF,94134,B09,44,6311,3,3,3,true,,1,ENGINE,1,9,10,McLaren Park,"(37.7161899028319, -122.40823080546)",103570268-E44 +102620280,72,10082969,Medical Incident,09/19/2010,09/19/2010,09/19/2010 05:44:23 PM,09/19/2010 05:45:48 PM,09/19/2010 05:46:41 PM,09/19/2010 05:46:48 PM,09/19/2010 05:58:30 PM,04/25/2016 02:08:31 PM,04/25/2016 02:08:31 PM,Other,09/19/2010 05:59:41 PM,1500 Block of PERSHING DR,PR,94129,B99,51,4617,3,2,2,true,,1,MEDIC,1,7,2,Presidio,"(37.7928431535117, -122.477522249527)",102620280-72 +121770302,B04,12058983,Structure Fire,06/25/2012,06/25/2012,06/25/2012 05:37:47 PM,06/25/2012 05:38:42 PM,06/25/2012 05:38:57 PM,06/25/2012 05:40:03 PM,06/25/2012 05:43:14 PM,04/25/2016 01:58:01 PM,04/25/2016 01:58:01 PM,Other,06/25/2012 05:48:12 PM,1600 Block of JONES ST,SF,94109,B01,41,1511,3,3,3,false,Fire,1,CHIEF,4,1,3,Nob Hill,"(37.7960882125241, -122.415118210717)",121770302-B04 +102460373,B01,10077895,Alarms,09/03/2010,09/03/2010,09/03/2010 09:50:35 PM,09/03/2010 09:51:50 PM,09/03/2010 09:51:57 PM,09/03/2010 09:53:14 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/03/2010 09:58:03 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,CHIEF,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",102460373-B01 +160112200,55,16004451,Medical Incident,01/11/2016,01/11/2016,01/11/2016 03:29:26 PM,01/11/2016 03:29:26 PM,01/11/2016 03:29:45 PM,01/11/2016 03:29:53 PM,01/11/2016 03:40:10 PM,01/11/2016 03:57:19 PM,01/11/2016 04:09:37 PM,Code 2 Transport,01/11/2016 05:04:54 PM,1200 Block of MASONIC AVE,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.769728147466, -122.44532047465)",160112200-55 +160363715,68,16014431,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:40:25 PM,02/05/2016 08:46:43 PM,02/05/2016 08:47:06 PM,02/05/2016 08:47:21 PM,02/05/2016 08:57:01 PM,02/05/2016 09:07:08 PM,02/05/2016 09:20:18 PM,Code 2 Transport,02/05/2016 09:46:46 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160363715-68 +122470009,79,12081561,Medical Incident,09/03/2012,09/02/2012,09/03/2012 12:43:15 AM,09/03/2012 12:45:49 AM,09/03/2012 12:46:05 AM,09/03/2012 12:46:27 AM,09/03/2012 12:54:15 AM,09/03/2012 01:03:15 AM,09/03/2012 01:15:22 AM,Code 2 Transport,09/03/2012 01:49:18 AM,900 Block of DIVISADERO ST,SF,94115,B05,21,4151,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7782753692428, -122.438338701655)",122470009-79 +160101871,55,16004058,Medical Incident,01/10/2016,01/10/2016,01/10/2016 02:14:42 PM,01/10/2016 02:16:09 PM,01/10/2016 02:16:29 PM,01/10/2016 02:16:40 PM,01/10/2016 02:34:28 PM,01/10/2016 03:04:57 PM,01/10/2016 03:36:13 PM,Code 2 Transport,01/10/2016 04:49:35 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160101871-55 +123530155,83,12118072,Medical Incident,12/18/2012,12/18/2012,12/18/2012 11:37:24 AM,12/18/2012 11:38:03 AM,12/18/2012 11:38:25 AM,12/18/2012 11:38:31 AM,12/18/2012 11:42:43 AM,12/18/2012 12:01:55 PM,12/18/2012 12:08:03 PM,Code 2 Transport,12/18/2012 12:30:29 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",123530155-83 +140930388,T16,14031445,Alarms,04/03/2014,04/03/2014,04/03/2014 11:13:27 PM,04/03/2014 11:14:59 PM,04/03/2014 11:24:02 PM,04/03/2014 11:25:54 PM,04/03/2014 11:41:08 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Fire,04/03/2014 11:41:11 PM,300 Block of LOWER FORT MASON ST,FORT MASON,94123,B01,51,3343,3,3,3,false,Alarm,1,TRUCK,4,4,2,Marina,"(37.8058923703038, -122.431246520303)",140930388-T16 +160151085,67,16005912,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:49:21 AM,01/15/2016 09:54:07 AM,01/15/2016 09:54:23 AM,01/15/2016 09:55:26 AM,01/15/2016 10:00:40 AM,01/15/2016 10:21:43 AM,01/15/2016 10:42:48 AM,Code 2 Transport,01/15/2016 11:09:38 AM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.717376392628, -122.435002134703)",160151085-67 +160210944,62,16008298,Medical Incident,01/21/2016,01/21/2016,01/21/2016 09:11:24 AM,01/21/2016 09:13:33 AM,01/21/2016 09:18:37 AM,01/21/2016 09:18:37 AM,01/21/2016 09:27:09 AM,01/21/2016 09:44:24 AM,01/21/2016 09:52:18 AM,Code 2 Transport,01/21/2016 10:33:34 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160210944-62 +123210292,B01,12106775,Alarms,11/16/2012,11/16/2012,11/16/2012 06:07:17 PM,11/16/2012 06:08:22 PM,11/16/2012 06:09:29 PM,11/16/2012 06:09:45 PM,11/16/2012 06:10:26 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/16/2012 06:13:45 PM,0 Block of EMERY LN,SF,94133,B01,2,1333,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",123210292-B01 +103140142,E34,10100640,Traffic Collision,11/10/2010,11/10/2010,11/10/2010 10:57:36 AM,11/10/2010 10:58:54 AM,11/10/2010 10:59:15 AM,11/10/2010 10:59:26 AM,11/10/2010 11:03:54 AM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/10/2010 11:15:57 AM,POINT LOBOS AV/42ND AV,SF,94121,B07,34,7265,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.77960973574, -122.502972263941)",103140142-E34 +121790203,E11,12059621,Medical Incident,06/27/2012,06/27/2012,06/27/2012 01:17:17 PM,06/27/2012 01:18:09 PM,06/27/2012 01:18:41 PM,06/27/2012 01:19:24 PM,06/27/2012 01:21:20 PM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/27/2012 01:46:41 PM,200 Block of 30TH ST,SF,94131,B06,11,5574,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.742133681941, -122.425018174758)",121790203-E11 +160542148,AM08,16021635,Medical Incident,02/23/2016,02/23/2016,02/23/2016 02:26:07 PM,02/23/2016 02:26:07 PM,02/23/2016 02:26:40 PM,02/23/2016 02:27:22 PM,02/23/2016 02:43:59 PM,02/23/2016 02:44:04 PM,02/23/2016 02:53:50 PM,Code 2 Transport,02/23/2016 03:19:59 PM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,A,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",160542148-AM08 +111940122,KM12,11064000,Medical Incident,07/13/2011,07/13/2011,07/13/2011 10:46:34 AM,07/13/2011 10:46:59 AM,07/13/2011 10:47:56 AM,07/13/2011 10:50:10 AM,07/13/2011 10:53:30 AM,07/13/2011 11:01:10 AM,07/13/2011 11:11:22 AM,Code 2 Transport,07/13/2011 11:33:24 AM,600 Block of SHRADER ST,SF,94117,B05,12,4545,3,3,3,false,,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7689208501165, -122.451702521894)",111940122-KM12 +112700380,B10,11089384,Odor (Strange / Unknown),09/27/2011,09/27/2011,09/27/2011 10:27:44 PM,09/27/2011 10:30:08 PM,09/27/2011 10:30:25 PM,09/27/2011 10:32:04 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Fire,09/27/2011 10:41:24 PM,100 Block of CLEO RAND AVE,SF,94124,B10,25,6666,3,3,3,false,,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7291145750944, -122.371202591843)",112700380-B10 +113650131,B08,11121219,Alarms,12/31/2011,12/31/2011,12/31/2011 10:45:40 AM,12/31/2011 10:46:46 AM,12/31/2011 10:47:15 AM,12/31/2011 10:50:41 AM,12/31/2011 10:55:19 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 10:58:39 AM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",113650131-B08 +131350319,T17,13045662,Alarms,05/15/2013,05/15/2013,05/15/2013 06:51:24 PM,05/15/2013 06:52:52 PM,05/15/2013 06:53:31 PM,05/15/2013 06:55:33 PM,05/15/2013 06:57:46 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 07:08:31 PM,1000 Block of GILMAN AVE,SF,94124,B10,17,6611,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7187222856771, -122.389118324965)",131350319-T17 +133320225,T03,13112723,Citizen Assist / Service Call,11/28/2013,11/28/2013,11/28/2013 06:16:32 PM,11/28/2013 06:17:55 PM,11/28/2013 06:18:07 PM,11/28/2013 06:19:32 PM,11/28/2013 06:24:05 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Fire,11/28/2013 06:30:34 PM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",133320225-T03 +160103458,88,16004201,Medical Incident,01/10/2016,01/10/2016,01/10/2016 10:27:45 PM,01/10/2016 10:30:21 PM,01/10/2016 10:30:59 PM,01/10/2016 10:31:15 PM,01/10/2016 10:41:45 PM,01/10/2016 10:53:48 PM,01/10/2016 11:04:02 PM,Code 2 Transport,01/10/2016 11:37:29 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160103458-88 +160281851,60,16011092,Medical Incident,01/28/2016,01/28/2016,01/28/2016 01:23:02 PM,01/28/2016 01:23:11 PM,01/28/2016 01:23:46 PM,01/28/2016 01:24:23 PM,01/28/2016 01:33:04 PM,01/28/2016 01:44:13 PM,01/28/2016 02:00:38 PM,Code 2 Transport,01/28/2016 02:44:52 PM,6TH ST/NATOMA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7801620260598, -122.407691417119)",160281851-60 +111230037,B01,11040507,Structure Fire,05/03/2011,05/02/2011,05/03/2011 03:07:44 AM,05/03/2011 03:09:15 AM,05/03/2011 03:09:31 AM,05/03/2011 03:12:22 AM,05/03/2011 03:16:25 AM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Fire,05/03/2011 03:46:17 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,CHIEF,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",111230037-B01 +112640324,E02,11087295,Medical Incident,09/21/2011,09/21/2011,09/21/2011 06:37:15 PM,09/21/2011 06:38:00 PM,09/21/2011 06:38:28 PM,09/21/2011 06:39:48 PM,09/21/2011 06:41:45 PM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/21/2011 07:05:24 PM,700 Block of WASHINGTON ST,SF,94133,B01,13,1245,E,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7953293080075, -122.405411518793)",112640324-E02 +160301675,62,16011776,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:51:43 AM,01/30/2016 11:52:37 AM,01/30/2016 11:53:53 AM,01/30/2016 11:58:53 AM,01/30/2016 12:03:21 PM,01/30/2016 12:22:03 PM,01/30/2016 12:34:19 PM,Code 2 Transport,01/30/2016 01:27:58 PM,1300 Block of 38TH AVE,San Francisco,94122,B08,23,7626,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7617367287526, -122.497349537472)",160301675-62 +140720371,68,14024466,Medical Incident,03/13/2014,03/13/2014,03/13/2014 09:54:31 PM,03/13/2014 09:56:07 PM,03/13/2014 09:56:19 PM,03/13/2014 09:56:25 PM,03/13/2014 10:00:38 PM,03/13/2014 10:21:38 PM,03/13/2014 10:42:44 PM,Code 2 Transport,03/13/2014 11:00:46 PM,600 Block of SUTTER ST,SAN FRANCISCO,94102,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",140720371-68 +133090299,AM12,13105153,Medical Incident,11/05/2013,11/05/2013,11/05/2013 05:00:11 PM,11/05/2013 05:01:38 PM,11/05/2013 05:01:50 PM,11/05/2013 05:03:03 PM,11/05/2013 05:07:00 PM,11/05/2013 05:14:00 PM,11/05/2013 05:30:17 PM,Code 2 Transport,11/05/2013 06:02:49 PM,600 Block of STANYAN ST,SF,94117,B05,12,4553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",133090299-AM12 +160891936,54,16035343,Medical Incident,03/29/2016,03/29/2016,03/29/2016 01:16:03 PM,03/29/2016 01:17:29 PM,03/29/2016 01:17:44 PM,03/29/2016 01:17:58 PM,03/29/2016 01:24:10 PM,03/29/2016 01:38:32 PM,03/29/2016 01:53:54 PM,Code 2 Transport,03/29/2016 02:31:37 PM,200 Block of OAK ST,San Francisco,94102,B02,36,3266,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748685141021, -122.4233563121)",160891936-54 +112030277,E09,11067091,Medical Incident,07/22/2011,07/22/2011,07/22/2011 04:39:06 PM,07/22/2011 04:39:09 PM,07/22/2011 04:39:23 PM,07/22/2011 04:42:20 PM,07/22/2011 04:42:22 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/22/2011 04:57:24 PM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",112030277-E09 +160102375,66,16004108,Medical Incident,01/10/2016,01/10/2016,01/10/2016 04:35:04 PM,01/10/2016 04:37:20 PM,01/10/2016 04:37:55 PM,01/10/2016 04:38:03 PM,01/10/2016 04:41:17 PM,01/10/2016 05:03:22 PM,01/10/2016 05:03:22 PM,Code 2 Transport,01/10/2016 05:53:18 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160102375-66 +120840341,D2,12028038,Structure Fire,03/24/2012,03/24/2012,03/24/2012 08:34:31 PM,03/24/2012 08:36:39 PM,03/24/2012 08:36:46 PM,03/24/2012 08:39:02 PM,03/24/2012 08:41:08 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/24/2012 08:44:04 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Fire,1,CHIEF,10,3,6,South of Market,"(37.7816150265786, -122.40942036456)",120840341-D2 +113490173,95,11115795,Medical Incident,12/15/2011,12/15/2011,12/15/2011 01:39:31 PM,12/15/2011 01:40:46 PM,12/15/2011 01:41:06 PM,12/15/2011 01:42:39 PM,12/15/2011 01:44:14 PM,12/15/2011 02:01:31 PM,12/15/2011 02:15:01 PM,Code 2 Transport,12/15/2011 02:50:27 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",113490173-95 +112500012,T01,11082332,Alarms,09/07/2011,09/06/2011,09/07/2011 12:59:09 AM,09/07/2011 12:59:28 AM,09/07/2011 01:00:07 AM,09/07/2011 01:01:35 AM,09/07/2011 01:04:12 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 01:09:15 AM,1200 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",112500012-T01 +133650158,82,13123920,Outside Fire,12/31/2013,12/31/2013,12/31/2013 11:40:21 AM,12/31/2013 11:40:21 AM,12/31/2013 11:42:02 AM,12/31/2013 11:42:12 AM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Other,12/31/2013 11:47:05 AM,12TH ST/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,Fire,1,MEDIC,2,2,6,Mission,"(37.7743586748127, -122.420254280324)",133650158-82 +111840298,E06,11060877,Medical Incident,07/03/2011,07/03/2011,07/03/2011 05:59:14 PM,07/03/2011 05:59:44 PM,07/03/2011 06:00:23 PM,07/03/2011 06:02:27 PM,07/03/2011 06:03:31 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 06:05:53 PM,DOLORES ST/16TH ST,SF,94103,B02,6,5234,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",111840298-E06 +121970085,E03,12065434,Medical Incident,07/15/2012,07/14/2012,07/15/2012 06:27:00 AM,07/15/2012 06:28:46 AM,07/15/2012 06:29:32 AM,07/15/2012 06:31:36 AM,07/15/2012 06:35:02 AM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/15/2012 07:08:39 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",121970085-E03 +102250305,89,10070967,Medical Incident,08/13/2010,08/13/2010,08/13/2010 10:12:10 PM,08/13/2010 10:14:03 PM,08/13/2010 10:14:25 PM,08/13/2010 10:14:48 PM,08/13/2010 10:20:18 PM,08/13/2010 10:38:11 PM,08/13/2010 10:52:56 PM,Code 2 Transport,08/13/2010 11:23:36 PM,500 Block of 22ND AVE,SF,94121,B07,14,7176,3,3,3,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7773769744836, -122.481382829615)",102250305-89 +120810129,77,12026841,Medical Incident,03/21/2012,03/21/2012,03/21/2012 09:52:14 AM,03/21/2012 09:52:55 AM,03/21/2012 09:54:32 AM,03/21/2012 10:01:08 AM,03/21/2012 10:01:10 AM,03/21/2012 10:26:16 AM,03/21/2012 10:56:03 AM,Code 2 Transport,03/21/2012 11:26:26 AM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",120810129-77 +122900111,T13,12095912,Structure Fire,10/16/2012,10/16/2012,10/16/2012 09:13:54 AM,10/16/2012 09:13:54 AM,10/16/2012 09:14:23 AM,10/16/2012 09:15:54 AM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/16/2012 09:17:38 AM,600 Block of MERCHANT ST,SF,94111,B01,13,124,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7949086758744, -122.404037735679)",122900111-T13 +130790348,B04,13026544,Alarms,03/20/2013,03/20/2013,03/20/2013 09:09:48 PM,03/20/2013 09:10:22 PM,03/20/2013 09:10:31 PM,03/20/2013 09:11:47 PM,03/20/2013 09:22:34 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 09:23:10 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8059843486439, -122.431322222994)",130790348-B04 +103060197,85,10097909,Medical Incident,11/02/2010,11/02/2010,11/02/2010 10:56:38 AM,11/02/2010 10:57:27 AM,11/02/2010 10:57:44 AM,11/02/2010 10:58:26 AM,11/02/2010 11:18:56 AM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,No Merit,11/02/2010 11:36:33 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",103060197-85 +112870318,65,11095255,Medical Incident,10/14/2011,10/14/2011,10/14/2011 04:40:46 PM,10/14/2011 04:43:54 PM,10/14/2011 04:44:34 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,04/25/2016 02:02:10 PM,1800 Block of 22ND AVE,SF,94122,B08,40,7431,3,3,3,true,,1,MEDIC,4,8,4,Sunset/Parkside,"(37.753163589686, -122.479691469824)",112870318-65 +111920304,T03,11063476,Vehicle Fire,07/11/2011,07/11/2011,07/11/2011 05:35:41 PM,07/11/2011 05:37:30 PM,07/11/2011 05:39:48 PM,07/11/2011 05:41:13 PM,07/11/2011 05:42:10 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 05:50:19 PM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,3,3,3,false,,1,TRUCK,2,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",111920304-T03 +111460176,89,11048474,Medical Incident,05/26/2011,05/26/2011,05/26/2011 01:33:22 PM,05/26/2011 01:36:10 PM,05/26/2011 01:36:30 PM,05/26/2011 01:36:59 PM,05/26/2011 01:42:44 PM,04/25/2016 02:04:26 PM,04/25/2016 02:04:26 PM,Against Medical Advice,05/26/2011 02:39:58 PM,600 Block of TOWNSEND ST,SF,94103,B03,29,2275,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7709789357353, -122.402816011063)",111460176-89 +140280339,E03,14009662,Medical Incident,01/28/2014,01/28/2014,01/28/2014 07:32:29 PM,01/28/2014 07:34:52 PM,01/28/2014 07:35:01 PM,01/28/2014 07:36:44 PM,01/28/2014 07:38:18 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/28/2014 07:57:18 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",140280339-E03 +122550070,66,12084188,Medical Incident,09/11/2012,09/10/2012,09/11/2012 07:46:55 AM,09/11/2012 07:49:16 AM,09/11/2012 07:49:43 AM,09/11/2012 07:50:15 AM,09/11/2012 08:03:11 AM,09/11/2012 08:17:32 AM,04/25/2016 01:56:49 PM,Code 2 Transport,09/11/2012 09:17:10 AM,0 Block of FLORENTINE AVE,SF,94112,B09,33,6177,3,1,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7126176750656, -122.443700918136)",122550070-66 +113350305,E15,11111012,Traffic Collision,12/01/2011,12/01/2011,12/01/2011 07:40:00 PM,12/01/2011 07:40:57 PM,12/01/2011 07:41:45 PM,12/01/2011 07:43:17 PM,12/01/2011 07:46:44 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/01/2011 08:23:48 PM,NAPLES ST/EXCELSIOR AV,SF,94112,B09,43,6155,3,2,2,true,,1,ENGINE,2,9,11,Excelsior,"(37.7239545736182, -122.428836527871)",113350305-E15 +102570276,E18,10081273,Citizen Assist / Service Call,09/14/2010,09/14/2010,09/14/2010 05:15:56 PM,09/14/2010 05:17:37 PM,09/14/2010 05:17:56 PM,09/14/2010 05:18:33 PM,09/14/2010 05:23:14 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Fire,09/14/2010 05:31:59 PM,2500 Block of 24TH AVE,SF,94116,B08,40,7442,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7400213164931, -122.480783251007)",102570276-E18 +112950080,67,11097766,Medical Incident,10/22/2011,10/21/2011,10/22/2011 07:50:24 AM,10/22/2011 07:52:55 AM,10/22/2011 07:54:37 AM,10/22/2011 07:54:51 AM,10/22/2011 08:07:58 AM,10/22/2011 08:22:30 AM,10/22/2011 08:41:15 AM,Code 2 Transport,10/22/2011 08:59:47 AM,200 Block of JONES ST,SF,94102,B03,1,1456,1,1,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",112950080-67 +122590269,T01,12085696,Alarms,09/15/2012,09/15/2012,09/15/2012 07:18:30 PM,09/15/2012 07:20:13 PM,09/15/2012 07:20:20 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,04/25/2016 01:56:45 PM,700 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,Alarm,1,TRUCK,5,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",122590269-T01 +160393679,88,16015813,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:09:07 PM,02/08/2016 10:10:26 PM,02/08/2016 10:13:26 PM,02/08/2016 10:13:26 PM,02/08/2016 10:18:44 PM,02/08/2016 10:40:12 PM,02/08/2016 11:02:52 PM,Code 2 Transport,02/08/2016 11:51:44 PM,1400 Block of MCKINNON AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.734591007984, -122.386906044806)",160393679-88 +112170329,E02,11071829,Medical Incident,08/05/2011,08/05/2011,08/05/2011 08:14:53 PM,08/05/2011 08:14:54 PM,08/05/2011 08:15:41 PM,08/05/2011 08:19:33 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 08:27:54 PM,2300 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8062826874223, -122.412114085659)",112170329-E02 +130200385,E41,13007042,Medical Incident,01/20/2013,01/20/2013,01/20/2013 08:50:36 PM,01/20/2013 08:50:37 PM,01/20/2013 08:51:36 PM,01/20/2013 08:52:13 PM,01/20/2013 08:54:51 PM,04/25/2016 01:54:42 PM,04/25/2016 01:54:42 PM,Other,01/20/2013 08:59:09 PM,POLK ST/SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7914958541783, -122.420873185108)",130200385-E41 +120440002,E01,12014549,Traffic Collision,02/12/2012,02/12/2012,02/12/2012 11:58:15 PM,02/13/2012 12:02:34 AM,02/13/2012 12:02:54 AM,02/13/2012 12:04:40 AM,02/13/2012 12:07:00 AM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 12:16:14 AM,SUTTER ST/POWELL ST,SF,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",120440002-E01 +103350179,B08,10107179,Alarms,12/01/2010,12/01/2010,12/01/2010 12:54:50 PM,12/01/2010 12:56:08 PM,12/01/2010 12:56:19 PM,12/01/2010 12:57:33 PM,12/01/2010 01:02:24 PM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Fire,12/01/2010 01:04:10 PM,0 Block of MENDOSA AVE,SF,94116,B08,39,8625,3,3,3,false,,1,CHIEF,2,8,7,West of Twin Peaks,"(37.7487814892995, -122.465776705043)",103350179-B08 +160460854,AM02,16018432,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:50:16 AM,02/15/2016 08:51:20 AM,02/15/2016 08:51:56 AM,02/15/2016 08:53:36 AM,02/15/2016 09:05:07 AM,02/15/2016 09:24:32 AM,02/15/2016 09:54:23 AM,Code 2 Transport,02/15/2016 10:35:46 AM,100 Block of CAINE AVE,San Francisco,94112,B09,33,8325,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7157481523614, -122.451744181527)",160460854-AM02 +133130113,RWC2,13106321,Water Rescue,11/09/2013,11/09/2013,11/09/2013 08:09:27 AM,11/09/2013 08:10:52 AM,11/09/2013 08:12:10 AM,11/09/2013 08:14:42 AM,11/09/2013 08:18:13 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 08:21:21 AM,200 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,948,3,3,3,false,Fire,1,SUPPORT,5,3,6,Mission Bay,"(37.7757198568858, -122.387651994804)",133130113-RWC2 +160070335,79,16002691,Medical Incident,01/07/2016,01/06/2016,01/07/2016 04:20:57 AM,01/07/2016 04:22:31 AM,01/07/2016 04:22:40 AM,01/07/2016 04:23:10 AM,01/07/2016 04:27:35 AM,01/07/2016 04:34:52 AM,01/07/2016 04:46:58 AM,Code 2 Transport,01/07/2016 05:01:36 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160070335-79 +160303906,57,16011980,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:34:07 PM,01/30/2016 10:34:07 PM,01/30/2016 10:34:34 PM,01/30/2016 10:34:46 PM,01/30/2016 10:34:46 PM,01/30/2016 11:02:06 PM,01/30/2016 11:12:32 PM,Code 2 Transport,01/30/2016 11:30:40 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3219,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160303906-57 +121920029,81,12063786,Medical Incident,07/10/2012,07/09/2012,07/10/2012 03:27:22 AM,07/10/2012 03:28:59 AM,07/10/2012 03:29:37 AM,07/10/2012 03:32:55 AM,07/10/2012 03:43:12 AM,07/10/2012 04:17:10 AM,07/10/2012 04:35:09 AM,Code 2 Transport,07/10/2012 05:00:26 AM,1100 Block of CHURCH ST,SF,94114,B06,11,5523,3,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7528749335192, -122.427474292895)",121920029-81 +121060372,71,12035301,Medical Incident,04/15/2012,04/15/2012,04/15/2012 11:45:56 PM,04/15/2012 11:48:06 PM,04/15/2012 11:48:37 PM,04/15/2012 11:49:00 PM,04/15/2012 11:54:53 PM,04/16/2012 12:17:52 AM,04/16/2012 12:23:38 AM,Code 2 Transport,04/16/2012 12:43:10 AM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",121060372-71 +123590052,E03,12120066,Medical Incident,12/24/2012,12/23/2012,12/24/2012 04:36:22 AM,12/24/2012 04:39:55 AM,12/24/2012 04:40:21 AM,12/24/2012 04:42:00 AM,12/24/2012 04:45:29 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 04:57:18 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",123590052-E03 +160800396,56,16031683,Medical Incident,03/20/2016,03/19/2016,03/20/2016 02:24:32 AM,03/20/2016 02:27:07 AM,03/20/2016 02:31:03 AM,03/20/2016 02:31:27 AM,03/20/2016 02:48:03 AM,03/20/2016 03:03:59 AM,03/20/2016 03:11:43 AM,Code 2 Transport,03/20/2016 03:43:29 AM,0 Block of HUNTERS POINT BLVD,San Francisco,94124,B10,25,6632,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7330182195682, -122.376944786094)",160800396-56 +160431723,71,16017302,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:55:01 PM,02/12/2016 12:55:51 PM,02/12/2016 12:56:04 PM,02/12/2016 12:56:43 PM,02/12/2016 12:59:38 PM,02/12/2016 01:20:51 PM,02/12/2016 01:39:57 PM,Code 2 Transport,02/12/2016 02:19:28 PM,2800 Block of YORBA ST,San Francisco,94116,B08,19,7615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7345860862244, -122.49712884674)",160431723-71 +121120006,E01,12036969,Structure Fire,04/21/2012,04/20/2012,04/21/2012 12:13:36 AM,04/21/2012 12:13:36 AM,04/21/2012 12:13:42 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 12:15:23 AM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",121120006-E01 +133440253,E03,13116709,Structure Fire,12/10/2013,12/10/2013,12/10/2013 02:40:58 PM,12/10/2013 02:41:30 PM,12/10/2013 02:42:00 PM,12/10/2013 02:42:52 PM,12/10/2013 02:45:33 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 03:08:26 PM,200 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,Alarm,1,ENGINE,5,1,3,Financial District/South Beach,"(37.7898602960519, -122.404035815683)",133440253-E03 +112580079,KM12,11084974,Medical Incident,09/15/2011,09/15/2011,09/15/2011 08:38:49 AM,09/15/2011 08:40:53 AM,09/15/2011 08:41:06 AM,09/15/2011 08:42:10 AM,09/15/2011 08:47:53 AM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/15/2011 08:48:10 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,false,,1,PRIVATE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",112580079-KM12 +131900217,83,13064740,Medical Incident,07/09/2013,07/09/2013,07/09/2013 01:28:29 PM,07/09/2013 01:29:03 PM,07/09/2013 01:30:20 PM,07/09/2013 01:30:26 PM,07/09/2013 01:33:08 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Unable to Locate,07/09/2013 01:36:52 PM,300 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869126924267, -122.409756223507)",131900217-83 +132180219,E36,13073641,Medical Incident,08/06/2013,08/06/2013,08/06/2013 02:43:41 PM,08/06/2013 02:44:37 PM,08/06/2013 02:45:17 PM,08/06/2013 02:47:04 PM,08/06/2013 02:49:16 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 02:57:31 PM,1400 Block of MARKET ST,SF,94102,B02,36,3211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",132180219-E36 +122880346,T07,12095426,Alarms,10/14/2012,10/14/2012,10/14/2012 09:14:16 PM,10/14/2012 09:14:16 PM,10/14/2012 09:14:50 PM,10/14/2012 09:15:58 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 09:19:42 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",122880346-T07 +132210037,81,13074516,Medical Incident,08/09/2013,08/08/2013,08/09/2013 06:27:35 AM,08/09/2013 06:28:28 AM,08/09/2013 06:28:52 AM,08/09/2013 06:29:17 AM,08/09/2013 06:33:56 AM,08/09/2013 06:59:38 AM,08/09/2013 07:06:22 AM,Code 3 Transport,08/09/2013 08:15:29 AM,300 Block of YERBA BUENA AVE,SF,94127,B09,39,8525,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7331192687821, -122.458740644298)",132210037-81 +140820288,89,14027793,Structure Fire,03/23/2014,03/23/2014,03/23/2014 08:40:33 PM,03/23/2014 08:41:28 PM,03/23/2014 08:41:38 PM,03/23/2014 08:41:52 PM,04/25/2016 01:47:35 PM,04/25/2016 01:47:35 PM,04/25/2016 01:47:35 PM,Fire,03/23/2014 08:49:36 PM,500 Block of TERRY A FRANCOIS BLVD,SAN FRANCISCO,94158,B03,8,948,3,3,3,true,Alarm,1,MEDIC,12,3,6,Mission Bay,"(37.7699167000745, -122.386442168137)",140820288-89 +113070404,AM18,11102182,Medical Incident,11/03/2011,11/03/2011,11/03/2011 11:57:34 PM,11/03/2011 11:57:53 PM,11/03/2011 11:58:44 PM,11/03/2011 11:59:14 PM,11/04/2011 12:02:47 AM,11/04/2011 12:32:16 AM,11/04/2011 12:39:25 AM,Code 3 Transport,11/04/2011 01:31:40 AM,WILLIAMS AV/REDDY ST,SF,94124,B10,17,6512,3,3,3,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7296542206566, -122.395376933981)",113070404-AM18 +112070232,RC2,11068418,Medical Incident,07/26/2011,07/26/2011,07/26/2011 03:42:07 PM,07/26/2011 03:42:50 PM,07/26/2011 03:43:28 PM,07/26/2011 03:48:33 PM,07/26/2011 03:59:29 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 04:23:24 PM,1400 Block of 21ST AVE,SF,94122,B08,22,7426,3,3,3,true,,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7606747175008, -122.479001684778)",112070232-RC2 +122890173,E01,12095606,Medical Incident,10/15/2012,10/15/2012,10/15/2012 12:32:52 PM,10/15/2012 12:35:01 PM,10/15/2012 12:35:32 PM,04/25/2016 01:56:18 PM,10/15/2012 12:42:24 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 12:43:36 PM,ELIM AL/1ST ST,SF,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7900526671441, -122.39793857229)",122890173-E01 +123600083,KM06,12120432,Medical Incident,12/25/2012,12/25/2012,12/25/2012 09:35:38 AM,12/25/2012 09:36:21 AM,12/25/2012 09:36:33 AM,12/25/2012 09:37:39 AM,12/25/2012 09:41:41 AM,12/25/2012 10:00:07 AM,12/25/2012 10:09:59 AM,Code 2 Transport,12/25/2012 10:45:25 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123600083-KM06 +120190199,B02,12006361,Alarms,01/19/2012,01/19/2012,01/19/2012 12:39:51 PM,01/19/2012 12:40:30 PM,01/19/2012 12:40:38 PM,01/19/2012 12:41:54 PM,01/19/2012 12:46:19 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 12:46:47 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,Alarm,1,CHIEF,3,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",120190199-B02 +160451009,82,16018053,Medical Incident,02/14/2016,02/14/2016,02/14/2016 09:18:18 AM,02/14/2016 09:21:36 AM,02/14/2016 09:21:48 AM,02/14/2016 09:22:46 AM,02/14/2016 09:26:43 AM,02/14/2016 09:53:37 AM,02/14/2016 10:06:23 AM,Code 2 Transport,02/14/2016 10:37:26 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",160451009-82 +160592774,KM12,16023641,Medical Incident,02/28/2016,02/28/2016,02/28/2016 07:00:21 PM,02/28/2016 07:02:46 PM,02/28/2016 07:02:58 PM,02/28/2016 07:03:21 PM,02/28/2016 07:13:57 PM,02/28/2016 07:26:03 PM,02/28/2016 07:43:10 PM,Code 2 Transport,02/28/2016 08:24:39 PM,LA PLAYA/CABRILLO ST,San Francisco,94121,B07,34,7312,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160592774-KM12 +112060174,E08,11068060,Medical Incident,07/25/2011,07/25/2011,07/25/2011 01:03:36 PM,07/25/2011 01:04:11 PM,07/25/2011 01:04:58 PM,07/25/2011 01:05:26 PM,07/25/2011 01:08:05 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/25/2011 01:16:21 PM,600 Block of 16TH ST,SF,94158,B03,8,2364,3,3,3,true,,1,ENGINE,1,3,6,Potrero Hill,"(37.7666921828262, -122.391724348278)",112060174-E08 +111440354,AM04,11047999,Medical Incident,05/24/2011,05/24/2011,05/24/2011 09:36:01 PM,05/24/2011 09:37:03 PM,05/24/2011 09:38:04 PM,05/24/2011 09:38:36 PM,05/24/2011 09:41:13 PM,05/24/2011 10:06:13 PM,05/24/2011 10:21:50 PM,Code 2 Transport,05/24/2011 11:04:01 PM,2500 Block of 23RD AVE,SF,94116,B08,40,7442,3,3,3,false,,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7400685754574, -122.479713963677)",111440354-AM04 +160843158,KM01,16033502,Medical Incident,03/24/2016,03/24/2016,03/24/2016 05:34:18 PM,03/24/2016 05:36:31 PM,03/24/2016 05:36:49 PM,03/24/2016 05:37:30 PM,03/24/2016 06:08:12 PM,03/24/2016 06:08:14 PM,03/24/2016 06:27:58 PM,Code 2 Transport,03/24/2016 07:07:24 PM,100 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7934880846575, -122.398205964751)",160843158-KM01 +160790538,64,16031309,Medical Incident,03/19/2016,03/18/2016,03/19/2016 05:11:35 AM,03/19/2016 05:11:35 AM,03/19/2016 05:14:18 AM,03/19/2016 05:14:41 AM,03/19/2016 05:20:59 AM,03/19/2016 05:37:14 AM,03/19/2016 05:44:48 AM,Code 2 Transport,03/19/2016 05:58:58 AM,500 Block of MADRID ST,San Francisco,94112,B09,43,6134,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.720812463136, -122.433336306308)",160790538-64 +133180290,E09,13108167,Medical Incident,11/14/2013,11/14/2013,11/14/2013 05:56:41 PM,11/14/2013 05:57:52 PM,11/14/2013 06:03:26 PM,11/14/2013 06:04:53 PM,11/14/2013 06:09:52 PM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/14/2013 06:29:29 PM,1200 Block of HAMPSHIRE ST,SF,94110,B06,9,5531,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Mission,"(37.7521125682968, -122.407146114914)",133180290-E09 +112240266,B10,11074055,Alarms,08/12/2011,08/12/2011,08/12/2011 03:36:05 PM,08/12/2011 03:36:57 PM,08/12/2011 03:37:14 PM,08/12/2011 03:38:22 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 03:40:27 PM,1600 Block of DONNER AVE,SF,94124,B10,17,6537,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7245894559218, -122.394230463021)",112240266-B10 +112580148,AM02,11085013,Medical Incident,09/15/2011,09/15/2011,09/15/2011 11:15:57 AM,09/15/2011 11:17:47 AM,09/15/2011 11:18:23 AM,09/15/2011 11:18:56 AM,09/15/2011 11:29:00 AM,09/15/2011 11:47:51 AM,09/15/2011 12:06:29 PM,Code 2 Transport,09/15/2011 12:20:25 PM,300 Block of POST ST,SF,94108,B01,1,1362,1,1,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7884505799048, -122.407597246833)",112580148-AM02 +132690220,T16,13091377,Medical Incident,09/26/2013,09/26/2013,09/26/2013 01:56:08 PM,09/26/2013 01:57:23 PM,09/26/2013 01:57:59 PM,09/26/2013 01:58:41 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/26/2013 01:59:34 PM,2100 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,2,Marina,"(37.8005603246335, -122.438707766533)",132690220-T16 +111960089,E44,11064627,Medical Incident,07/15/2011,07/15/2011,07/15/2011 09:50:41 AM,07/15/2011 09:51:15 AM,07/15/2011 09:51:24 AM,07/15/2011 09:52:47 AM,07/15/2011 09:58:09 AM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 10:08:32 AM,FITZGERALD AV/3RD ST,SF,94124,B10,44,6544,3,2,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7232223346375, -122.395264648192)",111960089-E44 +130340213,KM01,13011637,Medical Incident,02/03/2013,02/03/2013,02/03/2013 03:14:10 PM,02/03/2013 03:15:44 PM,02/03/2013 03:15:53 PM,02/03/2013 03:16:31 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 03:18:59 PM,900 Block of INGERSON AVE,SF,94124,B10,17,6642,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7183658404174, -122.391545031556)",130340213-KM01 +111690381,55,11055878,Medical Incident,06/18/2011,06/18/2011,06/18/2011 10:52:39 PM,06/18/2011 10:54:50 PM,06/18/2011 10:54:58 PM,06/18/2011 10:55:11 PM,06/18/2011 10:57:44 PM,06/18/2011 11:07:40 PM,06/18/2011 11:13:48 PM,Code 2 Transport,06/18/2011 11:39:28 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7530339738059, -122.418588598473)",111690381-55 +110860147,RC1,11028342,Medical Incident,03/27/2011,03/27/2011,03/27/2011 09:41:17 AM,03/27/2011 09:41:59 AM,03/27/2011 09:42:09 AM,03/27/2011 09:43:49 AM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,Other,03/27/2011 09:57:19 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,E,3,true,,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7803875013555, -122.407877117352)",110860147-RC1 +122390343,67,12079283,Traffic Collision,08/26/2012,08/26/2012,08/26/2012 11:36:37 PM,08/26/2012 11:40:04 PM,08/26/2012 11:41:22 PM,08/26/2012 11:41:31 PM,08/26/2012 11:43:36 PM,08/26/2012 11:58:30 PM,08/27/2012 12:02:38 AM,Code 2 Transport,08/27/2012 12:26:29 AM,VAN NESS AV/CLAY ST,SF,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7921746447197, -122.4226941645)",122390343-67 +123660093,AM04,12122374,Medical Incident,12/31/2012,12/31/2012,12/31/2012 09:05:53 AM,12/31/2012 09:08:02 AM,12/31/2012 09:10:19 AM,12/31/2012 09:10:54 AM,12/31/2012 09:12:06 AM,12/31/2012 09:20:38 AM,12/31/2012 09:28:36 AM,Code 2 Transport,12/31/2012 10:10:19 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,1,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",123660093-AM04 +113640174,E19,11120886,Medical Incident,12/30/2011,12/30/2011,12/30/2011 11:40:37 AM,12/30/2011 11:41:28 AM,12/30/2011 11:41:53 AM,12/30/2011 11:42:32 AM,12/30/2011 11:45:39 AM,12/30/2011 12:11:46 PM,12/30/2011 12:38:18 PM,Other,12/30/2011 12:51:54 PM,100 Block of TAPIA DR,SF,94132,B08,19,8581,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7205844550743, -122.4812606101)",113640174-E19 +123350360,92,12111458,Medical Incident,11/30/2012,11/30/2012,11/30/2012 05:52:13 PM,11/30/2012 05:54:46 PM,11/30/2012 05:55:25 PM,11/30/2012 05:59:36 PM,11/30/2012 06:08:05 PM,11/30/2012 06:17:00 PM,11/30/2012 06:38:13 PM,Code 2 Transport,11/30/2012 07:14:55 PM,2300 Block of 16TH ST,SF,94103,B02,29,5241,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",123350360-92 +160723026,84,16028746,Medical Incident,03/12/2016,03/12/2016,03/12/2016 07:53:21 PM,03/12/2016 07:55:21 PM,03/12/2016 07:55:40 PM,03/12/2016 07:56:18 PM,03/12/2016 08:05:07 PM,03/12/2016 08:14:16 PM,03/12/2016 08:19:08 PM,Code 2 Transport,03/12/2016 09:15:45 PM,TOWNSEND ST/3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7788517157298, -122.39274978786)",160723026-84 +133410151,E23,13115586,Electrical Hazard,12/07/2013,12/07/2013,12/07/2013 10:52:51 AM,12/07/2013 10:54:13 AM,12/07/2013 10:54:45 AM,12/07/2013 10:55:53 AM,12/07/2013 11:02:40 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Fire,12/07/2013 11:16:01 AM,33RD AV/KIRKHAM ST,SF,94122,B08,18,7535,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7591701671233, -122.491866953608)",133410151-E23 +160271432,82,16010640,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:23:36 AM,01/27/2016 11:25:28 AM,01/27/2016 11:25:55 AM,01/27/2016 11:26:10 AM,01/27/2016 11:36:57 AM,01/27/2016 11:45:53 AM,01/27/2016 12:13:53 PM,Code 2 Transport,01/27/2016 12:59:55 PM,100 Block of REY ST,San Francisco,94134,B09,44,6257,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7116474138214, -122.411861229575)",160271432-82 +110220083,E03,11007189,Traffic Collision,01/22/2011,01/22/2011,01/22/2011 08:26:47 AM,01/22/2011 08:27:46 AM,01/22/2011 08:29:05 AM,01/22/2011 08:30:28 AM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/22/2011 08:34:23 AM,POLK ST/TURK ST,SF,94102,B02,3,3114,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7821692691963, -122.418993274637)",110220083-E03 +160651640,KM08,16025927,Medical Incident,03/05/2016,03/05/2016,03/05/2016 01:05:16 PM,03/05/2016 01:05:16 PM,03/05/2016 01:05:31 PM,03/05/2016 01:06:07 PM,03/05/2016 01:15:52 PM,03/05/2016 01:33:54 PM,03/05/2016 01:42:20 PM,Code 2 Transport,03/05/2016 02:24:08 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,16,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160651640-KM08 +160123662,64,16004970,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:00:26 PM,01/12/2016 10:02:11 PM,01/12/2016 10:03:50 PM,01/12/2016 10:03:58 PM,01/12/2016 10:15:14 PM,01/12/2016 10:33:10 PM,01/12/2016 10:50:48 PM,Code 2 Transport,01/12/2016 11:39:28 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160123662-64 +103380264,KM05,10108201,Medical Incident,12/04/2010,12/04/2010,12/04/2010 03:10:13 PM,12/04/2010 03:11:05 PM,12/04/2010 03:12:37 PM,04/25/2016 02:07:17 PM,12/04/2010 03:14:15 PM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Patient Declined Transport,12/04/2010 03:22:52 PM,MISSION ST/11TH ST,SF,94103,B02,36,5116,3,3,3,false,,1,PRIVATE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",103380264-KM05 +160143458,85,16005733,Medical Incident,01/14/2016,01/14/2016,01/14/2016 08:35:01 PM,01/14/2016 08:35:43 PM,01/14/2016 08:36:26 PM,01/14/2016 08:36:42 PM,01/14/2016 08:40:41 PM,01/14/2016 08:49:49 PM,01/14/2016 09:00:19 PM,Code 2 Transport,01/14/2016 09:47:44 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",160143458-85 +112160231,96,11071375,Medical Incident,08/04/2011,08/04/2011,08/04/2011 01:52:00 PM,08/04/2011 01:54:24 PM,08/04/2011 01:54:47 PM,08/04/2011 01:54:57 PM,08/04/2011 02:00:19 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Patient Declined Transport,08/04/2011 02:04:31 PM,VALENCIA ST/24TH ST,SF,94110,B06,11,5512,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7521036457482, -122.420664802284)",112160231-96 +122770219,93,12091545,Medical Incident,10/03/2012,10/03/2012,10/03/2012 01:02:01 PM,10/03/2012 01:03:27 PM,10/03/2012 01:04:28 PM,10/03/2012 01:06:42 PM,10/03/2012 01:15:49 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 01:52:50 PM,1600 Block of JERROLD AVE,SF,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7392528787496, -122.390329445004)",122770219-93 +111380115,E05,11045822,Medical Incident,05/18/2011,05/18/2011,05/18/2011 10:13:30 AM,05/18/2011 10:15:13 AM,05/18/2011 10:15:37 AM,05/18/2011 10:16:10 AM,05/18/2011 10:17:43 AM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Medical Examiner,05/18/2011 10:53:16 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,E,2,2,true,,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",111380115-E05 +123140089,KM09,12104414,Medical Incident,11/09/2012,11/09/2012,11/09/2012 08:17:55 AM,11/09/2012 08:19:41 AM,11/09/2012 08:20:18 AM,11/09/2012 08:21:15 AM,11/09/2012 08:26:59 AM,11/09/2012 08:49:54 AM,11/09/2012 09:06:50 AM,Code 2 Transport,11/09/2012 09:45:49 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",123140089-KM09 +160890168,KM07,16035178,Medical Incident,03/29/2016,03/28/2016,03/29/2016 01:42:13 AM,03/29/2016 01:45:32 AM,03/29/2016 01:45:51 AM,03/29/2016 01:46:51 AM,03/29/2016 01:49:48 AM,03/29/2016 02:16:52 AM,03/29/2016 02:24:10 AM,Code 2 Transport,03/29/2016 02:56:19 AM,0 Block of SUTTER ST,San Francisco,94104,B01,13,1164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7902143401629, -122.400344691288)",160890168-KM07 +112610374,E21,11086313,Alarms,09/18/2011,09/18/2011,09/18/2011 11:45:37 PM,09/18/2011 11:47:31 PM,09/18/2011 11:47:47 PM,04/25/2016 02:02:36 PM,09/18/2011 11:48:54 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,09/19/2011 12:02:35 AM,900 Block of HAIGHT ST,SF,94117,B05,21,4246,3,3,3,false,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7712162010371, -122.437888283036)",112610374-E21 +160690035,57,16027296,Medical Incident,03/09/2016,03/08/2016,03/09/2016 12:14:00 AM,03/09/2016 12:15:36 AM,03/09/2016 12:16:23 AM,03/09/2016 12:17:02 AM,03/09/2016 12:24:55 AM,03/09/2016 12:39:24 AM,03/09/2016 12:46:02 AM,Code 3 Transport,03/09/2016 01:35:01 AM,200 Block of LELAND AVE,San Francisco,94134,B09,44,6256,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7127325080264, -122.40781867808)",160690035-57 +110060053,89,11001877,Medical Incident,01/06/2011,01/05/2011,01/06/2011 05:31:33 AM,01/06/2011 05:31:54 AM,01/06/2011 05:35:41 AM,01/06/2011 05:36:40 AM,01/06/2011 05:49:36 AM,01/06/2011 06:17:18 AM,01/06/2011 06:24:34 AM,Code 2 Transport,01/06/2011 06:54:18 AM,GONZALEZ DR/CRESPI DR,SF,94132,B08,19,8426,2,2,2,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7200053522662, -122.475739974303)",110060053-89 +160103172,76,16004175,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:46:28 PM,01/10/2016 08:46:28 PM,01/10/2016 08:46:43 PM,01/10/2016 08:47:00 PM,01/10/2016 09:03:15 PM,01/10/2016 09:03:18 PM,01/10/2016 09:14:08 PM,Code 2 Transport,01/10/2016 10:08:20 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160103172-76 +103180328,E09,10102045,Structure Fire,11/14/2010,11/14/2010,11/14/2010 07:02:34 PM,11/14/2010 07:02:34 PM,11/14/2010 07:02:42 PM,11/14/2010 07:03:28 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:36 PM,04/25/2016 02:07:35 PM,Fire,11/14/2010 07:06:46 PM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",103180328-E09 +111210048,79,11039829,Traffic Collision,05/01/2011,04/30/2011,05/01/2011 03:27:23 AM,05/01/2011 03:31:08 AM,05/01/2011 03:31:20 AM,05/01/2011 03:32:00 AM,05/01/2011 03:34:49 AM,05/01/2011 03:49:45 AM,05/01/2011 04:02:33 AM,Code 2 Transport,05/01/2011 04:28:50 AM,14TH ST/FOLSOM ST,SF,94103,B02,7,5216,2,2,2,true,,1,MEDIC,1,2,9,Mission,"(37.7685373884214, -122.415613781366)",111210048-79 +160562326,79,16022436,Medical Incident,02/25/2016,02/25/2016,02/25/2016 02:48:24 PM,02/25/2016 02:50:13 PM,02/25/2016 02:52:59 PM,02/25/2016 02:53:12 PM,02/25/2016 03:06:36 PM,02/25/2016 03:26:10 PM,02/25/2016 03:26:11 PM,Code 2 Transport,02/25/2016 04:12:52 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160562326-79 +160840685,71,16033276,Medical Incident,03/24/2016,03/23/2016,03/24/2016 07:52:49 AM,03/24/2016 07:53:10 AM,03/24/2016 07:56:06 AM,03/24/2016 07:56:15 AM,03/24/2016 08:24:22 AM,03/24/2016 08:24:24 AM,03/24/2016 08:36:57 AM,Code 2 Transport,03/24/2016 09:22:20 AM,200 Block of OAK ST,San Francisco,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7749769803202, -122.423378234109)",160840685-71 +160593116,57,16023692,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:12:13 PM,02/28/2016 09:13:02 PM,02/28/2016 09:14:12 PM,02/28/2016 09:14:38 PM,02/28/2016 09:22:13 PM,02/28/2016 09:44:47 PM,02/28/2016 10:04:08 PM,Code 2 Transport,02/28/2016 10:46:05 PM,300 Block of BERRY ST,San Francisco,94107,B03,8,2235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7731903116558, -122.396737748695)",160593116-57 +140740348,E06,14025151,Medical Incident,03/15/2014,03/15/2014,03/15/2014 06:42:30 PM,03/15/2014 06:42:49 PM,03/15/2014 06:45:39 PM,03/15/2014 06:46:49 PM,03/15/2014 06:48:49 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Code 2 Transport,03/15/2014 07:03:58 PM,4100 Block of 18TH ST,SAN FRANCISCO,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7608016861704, -122.435552336885)",140740348-E06 +112320365,T11,11076754,Structure Fire,08/20/2011,08/20/2011,08/20/2011 10:10:51 PM,08/20/2011 10:10:51 PM,08/20/2011 10:11:28 PM,08/20/2011 10:12:37 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/20/2011 10:13:40 PM,26TH ST/NOE ST,SF,94131,B06,11,5546,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7482294752655, -122.431556650558)",112320365-T11 +112020330,86,11066754,Medical Incident,07/21/2011,07/21/2011,07/21/2011 05:35:55 PM,07/21/2011 05:36:54 PM,07/21/2011 05:36:59 PM,07/21/2011 05:37:56 PM,07/21/2011 05:41:40 PM,07/21/2011 06:24:03 PM,07/21/2011 06:26:55 PM,Code 2 Transport,07/21/2011 06:59:34 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,1,MEDIC,2,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",112020330-86 +160800207,KM03,16031658,Medical Incident,03/20/2016,03/19/2016,03/20/2016 01:07:29 AM,03/20/2016 01:08:02 AM,03/20/2016 01:08:39 AM,03/20/2016 01:14:50 AM,03/20/2016 01:14:50 AM,03/20/2016 01:33:43 AM,03/20/2016 01:56:12 AM,Code 2 Transport,03/20/2016 02:22:26 AM,700 Block of VERMONT ST,San Francisco,94107,B10,29,2512,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7601922919616, -122.404141528417)",160800207-KM03 +113380059,E01,11111902,Alarms,12/04/2011,12/03/2011,12/04/2011 03:31:37 AM,12/04/2011 03:33:18 AM,12/04/2011 03:33:22 AM,12/04/2011 03:34:47 AM,12/04/2011 03:36:35 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/04/2011 03:40:13 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",113380059-E01 +131680193,77,13057050,Medical Incident,06/17/2013,06/17/2013,06/17/2013 02:11:28 PM,06/17/2013 02:12:20 PM,06/17/2013 02:12:39 PM,06/17/2013 02:12:53 PM,06/17/2013 02:14:05 PM,06/17/2013 02:31:58 PM,06/17/2013 02:46:09 PM,Code 2 Transport,06/17/2013 03:15:01 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",131680193-77 +160212622,56,16008454,Medical Incident,01/21/2016,01/21/2016,01/21/2016 04:14:32 PM,01/21/2016 04:15:36 PM,01/21/2016 04:16:19 PM,01/21/2016 04:16:45 PM,01/21/2016 04:18:41 PM,01/21/2016 04:39:27 PM,01/21/2016 04:59:38 PM,Code 2 Transport,01/21/2016 05:00:13 PM,600 Block of BUSH ST,San Francisco,94108,B01,2,1361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7902443778978, -122.407673839506)",160212622-56 +131250089,94,13042165,Structure Fire,05/05/2013,05/05/2013,05/05/2013 08:23:22 AM,05/05/2013 08:24:26 AM,05/05/2013 08:24:48 AM,05/05/2013 08:25:26 AM,05/05/2013 08:32:43 AM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 08:33:43 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,Alarm,1,MEDIC,8,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",131250089-94 +160431160,62,16017231,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:21:37 AM,02/12/2016 10:22:53 AM,02/12/2016 10:24:17 AM,02/12/2016 10:25:30 AM,02/12/2016 10:46:49 AM,02/12/2016 10:46:51 AM,02/12/2016 10:46:52 AM,Code 2 Transport,02/12/2016 11:31:16 AM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160431160-62 +102310288,96,10072788,Medical Incident,08/19/2010,08/19/2010,08/19/2010 06:09:00 PM,08/19/2010 06:10:44 PM,08/19/2010 06:10:52 PM,08/19/2010 06:11:21 PM,08/19/2010 06:12:22 PM,08/19/2010 06:32:19 PM,08/19/2010 06:43:03 PM,Code 2 Transport,08/19/2010 07:15:26 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102310288-96 +130750297,E11,13025131,Medical Incident,03/16/2013,03/16/2013,03/16/2013 07:11:03 PM,03/16/2013 07:11:50 PM,03/16/2013 07:12:15 PM,03/16/2013 07:13:45 PM,03/16/2013 07:14:40 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 07:27:23 PM,1300 Block of GUERRERO ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7495652201329, -122.422767132358)",130750297-E11 +160032249,76,16001267,Medical Incident,01/03/2016,01/03/2016,01/03/2016 04:51:26 PM,01/03/2016 04:52:28 PM,01/03/2016 04:55:16 PM,01/03/2016 04:56:30 PM,01/03/2016 05:10:55 PM,01/03/2016 05:21:21 PM,01/03/2016 05:47:27 PM,Code 2 Transport,01/03/2016 06:19:03 PM,0 Block of CONKLING ST,San Francisco,94124,B10,42,6363,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7356059585517, -122.401828773082)",160032249-76 +113080099,E01,11102256,Outside Fire,11/04/2011,11/04/2011,11/04/2011 09:15:28 AM,11/04/2011 09:15:28 AM,11/04/2011 09:17:54 AM,11/04/2011 09:18:59 AM,11/04/2011 09:23:04 AM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/04/2011 09:24:57 AM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",113080099-E01 +160884098,71,16035163,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:46:32 PM,03/28/2016 11:47:03 PM,03/28/2016 11:47:30 PM,03/28/2016 11:47:38 PM,03/28/2016 11:53:54 PM,03/29/2016 12:22:01 AM,03/29/2016 12:46:00 AM,Code 2 Transport,03/29/2016 01:14:41 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160884098-71 +121230132,KM15,12040781,Medical Incident,05/02/2012,05/02/2012,05/02/2012 10:38:27 AM,05/02/2012 10:39:53 AM,05/02/2012 10:41:21 AM,05/02/2012 10:42:00 AM,05/02/2012 10:50:45 AM,05/02/2012 11:00:36 AM,05/02/2012 11:12:05 AM,Code 2 Transport,05/02/2012 11:29:03 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",121230132-KM15 +111420353,E09,11047332,Structure Fire,05/22/2011,05/22/2011,05/22/2011 09:02:29 PM,05/22/2011 09:03:00 PM,05/22/2011 09:04:04 PM,05/22/2011 09:05:15 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,Other,05/22/2011 09:10:20 PM,0 Block of REBECCA LN,SF,94124,B10,25,6565,3,3,3,true,,1,ENGINE,9,10,10,Bayview Hunters Point,"(37.7375379622203, -122.382681028874)",111420353-E09 +102360035,E01,10074206,Medical Incident,08/24/2010,08/23/2010,08/24/2010 03:13:08 AM,08/24/2010 03:16:45 AM,08/24/2010 03:17:03 AM,08/24/2010 03:19:42 AM,08/24/2010 03:22:36 AM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 03:34:11 AM,ELLIS ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",102360035-E01 +110690247,E26,11022746,Medical Incident,03/10/2011,03/10/2011,03/10/2011 03:17:45 PM,03/10/2011 03:19:43 PM,03/10/2011 03:19:52 PM,03/10/2011 03:20:38 PM,03/10/2011 03:23:30 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 03:33:34 PM,0 Block of MOFFITT ST,SF,94131,B06,26,8111,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7371435128093, -122.432773119399)",110690247-E26 +102870140,77,10091471,Medical Incident,10/14/2010,10/14/2010,10/14/2010 10:24:01 AM,10/14/2010 10:26:28 AM,10/14/2010 10:26:50 AM,10/14/2010 10:27:03 AM,10/14/2010 10:31:47 AM,10/14/2010 10:52:19 AM,10/14/2010 11:04:31 AM,Code 2 Transport,10/14/2010 11:45:56 AM,600 Block of NATOMA ST,SF,94103,B03,1,2314,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",102870140-77 +122950213,T03,12097875,Alarms,10/21/2012,10/21/2012,10/21/2012 03:18:54 PM,10/21/2012 03:20:15 PM,10/21/2012 03:20:53 PM,10/21/2012 03:22:16 PM,10/21/2012 03:23:37 PM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,Other,10/21/2012 03:27:37 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",122950213-T03 +121190242,B06,12039526,Structure Fire,04/28/2012,04/28/2012,04/28/2012 04:19:55 PM,04/28/2012 04:20:28 PM,04/28/2012 04:20:49 PM,04/28/2012 04:21:39 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 04:26:44 PM,0 Block of BERTHA LN,SF,94124,B10,17,6631,3,3,3,false,Fire,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",121190242-B06 +133470317,E40,13117859,Structure Fire,12/13/2013,12/13/2013,12/13/2013 06:36:02 PM,12/13/2013 06:37:19 PM,12/13/2013 06:38:09 PM,12/13/2013 06:39:22 PM,12/13/2013 06:41:37 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 06:42:53 PM,1100 Block of KIRKHAM ST,SF,94122,B08,22,7365,3,3,3,true,Alarm,1,ENGINE,2,8,7,Inner Sunset,"(37.7599474160093, -122.473045360566)",133470317-E40 +131150193,E11,13038791,Structure Fire,04/25/2013,04/25/2013,04/25/2013 02:52:12 PM,04/25/2013 02:52:12 PM,04/25/2013 02:52:21 PM,04/25/2013 02:54:11 PM,04/25/2013 02:55:23 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Fire,04/25/2013 02:56:03 PM,3300 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7482858766932, -122.417044258324)",131150193-E11 +160150158,58,16005808,Medical Incident,01/15/2016,01/14/2016,01/15/2016 01:01:09 AM,01/15/2016 01:02:29 AM,01/15/2016 01:02:46 AM,01/15/2016 01:02:54 AM,01/15/2016 01:08:39 AM,01/15/2016 01:28:08 AM,01/15/2016 01:40:12 AM,Code 2 Transport,01/15/2016 02:28:52 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160150158-58 +120030399,68,12001231,Medical Incident,01/03/2012,01/03/2012,01/03/2012 11:18:36 PM,01/03/2012 11:18:36 PM,01/03/2012 11:18:56 PM,01/03/2012 11:19:03 PM,01/03/2012 11:23:32 PM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,Other,01/03/2012 11:28:00 PM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",120030399-68 +132660068,E01,13090153,Medical Incident,09/23/2013,09/22/2013,09/23/2013 07:08:08 AM,09/23/2013 07:09:58 AM,09/23/2013 07:10:24 AM,09/23/2013 07:14:54 AM,09/23/2013 07:15:01 AM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/23/2013 07:32:56 AM,200 Block of POWELL ST,SF,94102,B01,1,1363,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",132660068-E01 +130690336,94,13023179,Medical Incident,03/10/2013,03/10/2013,03/10/2013 11:30:56 PM,03/10/2013 11:33:54 PM,03/10/2013 11:34:24 PM,03/10/2013 11:34:30 PM,03/10/2013 11:47:37 PM,03/11/2013 12:03:08 AM,03/11/2013 12:24:45 AM,Code 2 Transport,03/11/2013 12:49:10 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",130690336-94 +110870240,E11,11028764,Medical Incident,03/28/2011,03/28/2011,03/28/2011 02:50:34 PM,03/28/2011 02:51:13 PM,03/28/2011 02:51:42 PM,03/28/2011 02:52:48 PM,03/28/2011 02:54:31 PM,04/25/2016 02:05:24 PM,04/25/2016 02:05:24 PM,Unable to Locate,03/28/2011 02:59:28 PM,2800 Block of MISSION ST,SF,94110,B06,11,5529,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",110870240-E11 +160711127,71,16028178,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:23:03 AM,03/11/2016 10:23:03 AM,03/11/2016 10:24:44 AM,03/11/2016 10:24:53 AM,03/11/2016 10:52:41 AM,03/11/2016 11:09:19 AM,03/11/2016 11:18:28 AM,Code 2 Transport,03/11/2016 11:51:07 AM,2800 Block of WEBSTER ST,San Francisco,94123,B04,16,3463,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7968236106157, -122.433820658901)",160711127-71 +111050169,E22,11034760,Medical Incident,04/15/2011,04/15/2011,04/15/2011 01:13:44 PM,04/15/2011 01:14:29 PM,04/15/2011 01:14:46 PM,04/15/2011 01:15:33 PM,04/15/2011 01:17:27 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/15/2011 01:22:24 PM,1400 Block of 20TH AVE,SF,94122,B08,22,7426,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7607159070903, -122.478068414702)",111050169-E22 +111150336,E41,11038069,Medical Incident,04/25/2011,04/25/2011,04/25/2011 08:05:29 PM,04/25/2011 08:06:37 PM,04/25/2011 08:07:03 PM,04/25/2011 08:07:56 PM,04/25/2011 08:09:15 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 08:31:07 PM,1300 Block of JONES ST,SF,94109,B01,41,1466,2,2,2,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",111150336-E41 +120340289,T12,12011354,Odor (Strange / Unknown),02/03/2012,02/03/2012,02/03/2012 05:56:46 PM,02/03/2012 05:59:52 PM,02/03/2012 06:00:06 PM,02/03/2012 06:01:38 PM,02/03/2012 06:06:34 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/03/2012 06:07:09 PM,CABRILLO ST/4TH AV,SF,94118,B07,31,7121,3,3,3,false,Alarm,1,TRUCK,3,7,1,Inner Richmond,"(37.7754673991123, -122.461733426921)",120340289-T12 +111960312,79,11064820,Medical Incident,07/15/2011,07/15/2011,07/15/2011 08:39:19 PM,07/15/2011 08:40:52 PM,07/15/2011 08:47:05 PM,07/15/2011 08:47:26 PM,07/15/2011 08:51:28 PM,07/15/2011 09:09:08 PM,07/15/2011 09:20:43 PM,Code 2 Transport,07/15/2011 09:29:06 PM,0 Block of FELL ST,SF,94102,B02,36,3111,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7765490444685, -122.418502503449)",111960312-79 +132530327,E35,13085609,Alarms,09/10/2013,09/10/2013,09/10/2013 08:01:15 PM,09/10/2013 08:02:11 PM,09/10/2013 08:03:08 PM,09/10/2013 08:03:52 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 08:05:39 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,true,Alarm,1,ENGINE,3,1,3,North Beach,"(37.8069201392161, -122.407170160416)",132530327-E35 +110610222,84,11020028,Medical Incident,03/02/2011,03/02/2011,03/02/2011 01:41:33 PM,03/02/2011 01:43:49 PM,03/02/2011 01:44:15 PM,03/02/2011 01:55:13 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 02:02:01 PM,500 Block of MARKET ST,SF,94105,B03,13,2143,2,2,2,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",110610222-84 +112980285,E03,11098935,Medical Incident,10/25/2011,10/25/2011,10/25/2011 05:05:07 PM,10/25/2011 05:06:30 PM,10/25/2011 05:07:17 PM,10/25/2011 05:09:03 PM,10/25/2011 05:10:37 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 05:11:46 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",112980285-E03 +160240104,53,16009387,Medical Incident,01/24/2016,01/23/2016,01/24/2016 12:28:09 AM,01/24/2016 12:32:02 AM,01/24/2016 12:32:09 AM,01/24/2016 12:40:48 AM,01/24/2016 12:50:24 AM,01/24/2016 01:01:50 AM,01/24/2016 01:11:08 AM,Code 2 Transport,01/24/2016 01:59:36 AM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8056674488919, -122.412766371216)",160240104-53 +160082524,74,16003312,Medical Incident,01/08/2016,01/08/2016,01/08/2016 04:08:06 PM,01/08/2016 04:08:43 PM,01/08/2016 04:09:24 PM,01/08/2016 04:09:46 PM,01/08/2016 04:13:40 PM,01/08/2016 04:29:23 PM,01/08/2016 04:37:48 PM,Code 2 Transport,01/08/2016 05:16:26 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160082524-74 +113650255,T01,11121335,Structure Fire,12/31/2011,12/31/2011,12/31/2011 05:08:39 PM,12/31/2011 05:08:39 PM,12/31/2011 05:08:59 PM,12/31/2011 05:09:51 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 05:12:04 PM,8TH ST/MISSION ST,SF,94103,B02,36,2318,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",113650255-T01 +103360144,AM04,10107453,Medical Incident,12/02/2010,12/02/2010,12/02/2010 11:09:59 AM,12/02/2010 11:10:55 AM,12/02/2010 11:11:12 AM,12/02/2010 11:11:56 AM,12/02/2010 11:15:14 AM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Unable to Locate,12/02/2010 11:19:04 AM,HYDE ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",103360144-AM04 +130140187,B01,13004777,Structure Fire,01/14/2013,01/14/2013,01/14/2013 12:21:46 PM,01/14/2013 12:22:13 PM,01/14/2013 12:23:07 PM,01/14/2013 12:24:22 PM,01/14/2013 12:27:04 PM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,Other,01/14/2013 12:29:55 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,false,Alarm,1,CHIEF,7,4,3,Nob Hill,"(37.7882286861562, -122.415995198292)",130140187-B01 +160750363,88,16029577,Traffic Collision,03/15/2016,03/14/2016,03/15/2016 04:44:36 AM,03/15/2016 04:45:07 AM,03/15/2016 04:45:49 AM,03/15/2016 04:46:16 AM,03/15/2016 04:52:51 AM,03/15/2016 05:06:57 AM,03/15/2016 05:15:18 AM,Code 2 Transport,03/15/2016 06:01:06 AM,BRIDGEVIEW DR/TOPEKA AV,San Francisco,94124,B10,42,6453,3,A,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332781171067, -122.397689471749)",160750363-88 +123120291,E17,12103918,Gas Leak (Natural and LP Gases),11/07/2012,11/07/2012,11/07/2012 06:11:50 PM,11/07/2012 06:12:42 PM,11/07/2012 06:12:56 PM,11/07/2012 06:13:19 PM,11/07/2012 06:16:08 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Fire,11/07/2012 06:33:13 PM,100 Block of NAUTILUS DR,SF,94124,B10,17,6665,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.728115531126, -122.372708921939)",123120291-E17 +110780158,82,11025650,Medical Incident,03/19/2011,03/19/2011,03/19/2011 12:33:21 PM,03/19/2011 12:34:06 PM,03/19/2011 12:34:31 PM,03/19/2011 12:34:52 PM,03/19/2011 12:44:28 PM,03/19/2011 01:26:02 PM,03/19/2011 01:41:51 PM,Code 2 Transport,03/19/2011 02:15:07 PM,100 Block of RANDOLPH ST,SF,94132,B09,33,8415,2,2,2,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7142424042046, -122.46394955837)",110780158-82 +130960255,E40,13032238,Medical Incident,04/06/2013,04/06/2013,04/06/2013 04:14:16 PM,04/06/2013 04:15:14 PM,04/06/2013 04:16:23 PM,04/06/2013 04:17:08 PM,04/06/2013 04:18:30 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 04:35:03 PM,1900 Block of 18TH AVE,SF,94116,B08,40,7421,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.751487490245, -122.475280555805)",130960255-E40 +131450017,AM18,13049051,Medical Incident,05/25/2013,05/24/2013,05/25/2013 12:46:53 AM,05/25/2013 12:47:59 AM,05/25/2013 12:48:53 AM,05/25/2013 12:49:11 AM,05/25/2013 12:54:20 AM,05/25/2013 01:03:03 AM,05/25/2013 01:24:41 AM,Other,05/25/2013 01:55:53 AM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",131450017-AM18 +160092691,KM04,16003739,Medical Incident,01/09/2016,01/09/2016,01/09/2016 05:42:04 PM,01/09/2016 05:43:23 PM,01/09/2016 05:43:36 PM,01/09/2016 05:44:02 PM,01/09/2016 05:52:49 PM,01/09/2016 06:25:41 PM,01/09/2016 06:57:48 PM,Code 2 Transport,01/09/2016 07:41:38 PM,800 Block of TREAT AVE,San Francisco,94110,B06,7,545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7565605303297, -122.413439435953)",160092691-KM04 +122760273,54,12091194,Medical Incident,10/02/2012,10/02/2012,10/02/2012 02:51:20 PM,10/02/2012 02:52:01 PM,10/02/2012 02:52:19 PM,10/02/2012 02:52:42 PM,10/02/2012 02:56:41 PM,10/02/2012 03:07:45 PM,10/02/2012 03:35:34 PM,Code 3 Transport,10/02/2012 04:25:05 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7969072647197, -122.407234390471)",122760273-54 +111120236,E21,11037041,Electrical Hazard,04/22/2011,04/22/2011,04/22/2011 03:04:11 PM,04/22/2011 03:06:28 PM,04/22/2011 03:07:41 PM,04/22/2011 03:08:40 PM,04/22/2011 03:10:41 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Fire,04/22/2011 03:49:28 PM,700 Block of MASONIC AVE,SF,94117,B05,21,4464,3,3,3,false,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7744120636071, -122.446119399788)",111120236-E21 +160142900,75,16005678,Medical Incident,01/14/2016,01/14/2016,01/14/2016 05:49:02 PM,01/14/2016 05:49:02 PM,01/14/2016 05:49:48 PM,01/14/2016 05:49:56 PM,01/14/2016 06:11:24 PM,01/14/2016 06:16:41 PM,01/14/2016 06:44:12 PM,Code 2 Transport,01/14/2016 07:16:49 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",160142900-75 +122010042,82,12066699,Medical Incident,07/19/2012,07/18/2012,07/19/2012 04:25:33 AM,07/19/2012 04:25:56 AM,07/19/2012 04:26:12 AM,07/19/2012 04:26:27 AM,07/19/2012 04:35:10 AM,07/19/2012 04:47:05 AM,07/19/2012 04:53:53 AM,Code 2 Transport,07/19/2012 05:14:20 AM,300 Block of KANSAS ST,SF,94103,B02,29,2422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission Bay,"(37.7653660705573, -122.403654060689)",122010042-82 +112370349,T01,11078332,Alarms,08/25/2011,08/25/2011,08/25/2011 07:41:28 PM,08/25/2011 07:42:25 PM,08/25/2011 07:42:39 PM,08/25/2011 07:44:00 PM,08/25/2011 07:50:53 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 07:51:10 PM,1000 Block of MARKET ST,SF,94103,B03,1,1454,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7812876870909, -122.411318055371)",112370349-T01 +140370107,T12,14012442,Other,02/06/2014,02/06/2014,02/06/2014 09:12:30 AM,02/06/2014 09:12:49 AM,02/06/2014 09:12:58 AM,02/06/2014 09:14:25 AM,02/06/2014 09:18:55 AM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 09:32:44 AM,500 Block of PARNASSUS AVE,SF,94122,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",140370107-T12 +112670274,KM11,11088303,Traffic Collision,09/24/2011,09/24/2011,09/24/2011 04:50:21 PM,09/24/2011 04:51:24 PM,09/24/2011 04:51:34 PM,09/24/2011 04:52:43 PM,09/24/2011 05:01:31 PM,09/24/2011 05:09:48 PM,09/24/2011 05:32:19 PM,Code 2 Transport,09/24/2011 05:45:43 PM,JEFFERSON ST/HYDE ST,SF,94109,B03,28,1616,3,3,3,false,,1,PRIVATE,2,1,2,Russian Hill,"(37.8075901055183, -122.420743268989)",112670274-KM11 +140390400,E39,14013378,Medical Incident,02/08/2014,02/08/2014,02/08/2014 10:26:39 PM,02/08/2014 10:27:55 PM,02/08/2014 10:28:41 PM,02/08/2014 10:30:48 PM,02/08/2014 10:33:43 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/08/2014 10:55:04 PM,0 Block of SAN LORENZO WAY,SF,94127,B08,39,8565,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7389777646184, -122.464255454182)",140390400-E39 +102540303,T08,10080393,Structure Fire,09/11/2010,09/11/2010,09/11/2010 06:23:42 PM,09/11/2010 06:24:12 PM,09/11/2010 06:24:38 PM,09/11/2010 06:25:42 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 06:29:42 PM,600 Block of CAROLINA ST,SF,94107,B10,37,2511,3,3,3,false,,1,TRUCK,10,10,10,Potrero Hill,"(37.7599841937391, -122.400091939843)",102540303-T08 +160691448,KM06,16027444,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:35:59 AM,03/09/2016 11:37:45 AM,03/09/2016 11:37:51 AM,03/09/2016 11:38:38 AM,03/09/2016 11:43:34 AM,03/09/2016 11:50:35 AM,03/09/2016 12:09:01 PM,Code 2 Transport,03/09/2016 12:26:47 PM,GOLDEN GATE AV/HYDE ST,San Francisco,94102,B02,1,1546,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",160691448-KM06 +112350324,94,11077665,Medical Incident,08/23/2011,08/23/2011,08/23/2011 06:19:18 PM,08/23/2011 06:20:11 PM,08/23/2011 06:21:04 PM,08/23/2011 06:21:35 PM,08/23/2011 06:29:10 PM,08/23/2011 06:52:08 PM,08/23/2011 07:07:49 PM,Code 2 Transport,08/23/2011 07:38:55 PM,4700 Block of BALBOA ST,SF,94121,B07,34,7312,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7752070093177, -122.50963436518)",112350324-94 +160130308,AM24,16005038,Medical Incident,01/13/2016,01/12/2016,01/13/2016 03:43:07 AM,01/13/2016 03:44:39 AM,01/13/2016 03:45:31 AM,01/13/2016 03:46:02 AM,01/13/2016 03:51:20 AM,01/13/2016 04:00:40 AM,01/13/2016 04:11:18 AM,Code 2 Transport,01/13/2016 04:25:10 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160130308-AM24 +140240436,E39,14008395,Traffic Collision,01/24/2014,01/24/2014,01/24/2014 11:18:30 PM,01/24/2014 11:19:19 PM,01/24/2014 11:20:55 PM,04/25/2016 01:48:33 PM,01/24/2014 11:23:45 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/24/2014 11:29:01 PM,PORTOLA DR/14TH AV,SF,94127,B08,39,8562,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7374171488633, -122.468309607404)",140240436-E39 +122580048,68,12085174,Medical Incident,09/14/2012,09/13/2012,09/14/2012 05:09:29 AM,09/14/2012 05:10:32 AM,09/14/2012 05:10:44 AM,09/14/2012 05:13:01 AM,09/14/2012 05:16:00 AM,09/14/2012 05:38:32 AM,09/14/2012 05:49:36 AM,Code 2 Transport,09/14/2012 06:17:05 AM,500 Block of 27TH ST,SF,94131,B06,11,5553,3,3,3,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7464538550572, -122.432847009979)",122580048-68 +122710084,E23,12089359,Traffic Collision,09/27/2012,09/27/2012,09/27/2012 09:16:59 AM,09/27/2012 09:18:31 AM,09/27/2012 09:18:40 AM,09/27/2012 09:21:47 AM,09/27/2012 09:26:01 AM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/27/2012 10:36:45 AM,QUINTARA ST/43RD AV,SF,94116,B08,23,7645,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7475097223048, -122.501798056136)",122710084-E23 +122590234,E11,12085666,Traffic Collision,09/15/2012,09/15/2012,09/15/2012 05:00:09 PM,09/15/2012 05:00:09 PM,09/15/2012 05:00:40 PM,09/15/2012 05:01:54 PM,09/15/2012 05:03:59 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/15/2012 06:00:52 PM,MISSION ST/PRECITA AV,SF,94110,B06,11,5624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7467751413326, -122.419121300777)",122590234-E11 +111380183,B08,11045876,Traffic Collision,05/18/2011,05/18/2011,05/18/2011 01:20:15 PM,05/18/2011 01:22:03 PM,05/18/2011 01:22:26 PM,05/18/2011 01:23:42 PM,05/18/2011 01:32:47 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 02:08:38 PM,SKYLINE BL/FORT FUNSTON RD,SF,94132,B08,19,8772,3,3,3,false,,1,CHIEF,4,8,7,Lakeshore,"(37.7136941259081, -122.498357018484)",111380183-B08 +121880156,T15,12062610,Structure Fire,07/06/2012,07/06/2012,07/06/2012 11:46:11 AM,07/06/2012 11:47:45 AM,07/06/2012 11:48:12 AM,07/06/2012 11:48:37 AM,07/06/2012 11:49:33 AM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/06/2012 12:04:06 PM,0 Block of OCEAN AVE,SF,94112,B09,43,6121,3,3,3,false,Fire,1,TRUCK,1,9,11,Outer Mission,"(37.723809628217, -122.436744444673)",121880156-T15 +110720033,T01,11023593,Medical Incident,03/13/2011,03/12/2011,03/13/2011 01:45:00 AM,03/13/2011 01:47:15 AM,03/13/2011 01:50:35 AM,03/13/2011 01:52:09 AM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/13/2011 01:55:43 AM,MARKET ST/CYRIL MAGNIN ST,SF,94103,B03,1,1366,3,3,3,false,,1,TRUCK,5,3,6,South of Market,"(37.7839914857614, -122.408066547804)",110720033-T01 +160502498,55,16020162,Medical Incident,02/19/2016,02/19/2016,02/19/2016 04:23:03 PM,02/19/2016 04:24:57 PM,02/19/2016 04:25:24 PM,02/19/2016 04:25:34 PM,02/19/2016 04:32:33 PM,02/19/2016 05:46:22 PM,02/19/2016 05:46:22 PM,Code 3 Transport,02/19/2016 06:01:15 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160502498-55 +130800122,E35,13026692,Alarms,03/21/2013,03/21/2013,03/21/2013 10:05:16 AM,03/21/2013 10:06:45 AM,03/21/2013 10:08:27 AM,03/21/2013 10:09:12 AM,03/21/2013 10:13:12 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 10:38:03 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",130800122-E35 +121410238,AM30,12046890,Medical Incident,05/20/2012,05/20/2012,05/20/2012 02:16:14 PM,05/20/2012 02:17:21 PM,05/20/2012 02:18:17 PM,05/20/2012 02:19:24 PM,05/20/2012 02:20:16 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,No Merit,05/20/2012 02:27:50 PM,OAK ST/STANYAN ST,SF,94117,B05,12,4554,3,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Golden Gate Park,"(37.7714283936706, -122.453979521283)",121410238-AM30 +130560271,E43,13018943,Medical Incident,02/25/2013,02/25/2013,02/25/2013 05:03:53 PM,02/25/2013 05:04:08 PM,02/25/2013 05:04:22 PM,02/25/2013 05:05:49 PM,02/25/2013 05:09:30 PM,04/25/2016 01:54:07 PM,04/25/2016 01:54:07 PM,Other,02/25/2013 05:09:49 PM,100 Block of ELLINGTON AVE,SF,94112,B09,43,8334,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7145087398157, -122.44369163229)",130560271-E43 +103520069,T02,10112877,Structure Fire,12/18/2010,12/17/2010,12/18/2010 07:17:54 AM,12/18/2010 07:17:54 AM,12/18/2010 07:18:04 AM,12/18/2010 07:18:43 AM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,Other,12/18/2010 07:25:54 AM,STOCKTON ST/PACIFIC AV,SF,94133,B01,2,1332,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7967039027671, -122.40843088815)",103520069-T02 +120680348,E01,12022719,Medical Incident,03/08/2012,03/08/2012,03/08/2012 10:04:07 PM,03/08/2012 10:05:19 PM,03/08/2012 10:06:05 PM,03/08/2012 10:07:35 PM,03/08/2012 10:09:48 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/08/2012 11:16:30 PM,500 Block of NATOMA ST,SF,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7788157426427, -122.409325210496)",120680348-E01 +133190288,E05,13108468,Medical Incident,11/15/2013,11/15/2013,11/15/2013 04:45:06 PM,11/15/2013 04:45:16 PM,11/15/2013 04:45:55 PM,11/15/2013 04:47:09 PM,11/15/2013 04:50:19 PM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 04:58:32 PM,PRESIDIO AV/SUTTER ST,SF,94115,B05,10,4366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,2,Presidio Heights,"(37.7844383111695, -122.446247221402)",133190288-E05 +120450112,E36,12014914,Medical Incident,02/14/2012,02/14/2012,02/14/2012 10:08:03 AM,02/14/2012 10:08:38 AM,02/14/2012 10:09:10 AM,02/14/2012 10:09:51 AM,02/14/2012 10:11:30 AM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 10:15:49 AM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",120450112-E36 +160770324,70,16030434,Medical Incident,03/17/2016,03/16/2016,03/17/2016 03:28:05 AM,03/17/2016 03:30:18 AM,03/17/2016 03:31:38 AM,03/17/2016 03:31:47 AM,03/17/2016 03:45:18 AM,03/17/2016 04:16:56 AM,03/17/2016 04:42:53 AM,Code 2 Transport,03/17/2016 05:02:21 AM,1100 Block of 4TH ST,San Francisco,94158,B03,4,2226,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7731448011713, -122.391472934142)",160770324-70 +160793874,61,16031587,Medical Incident,03/19/2016,03/19/2016,03/19/2016 09:24:48 PM,03/19/2016 09:27:25 PM,03/19/2016 09:28:10 PM,03/19/2016 09:28:28 PM,03/19/2016 09:34:50 PM,03/19/2016 10:04:24 PM,03/19/2016 10:21:48 PM,Code 2 Transport,03/19/2016 10:57:34 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160793874-61 +160051201,67,16001946,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:39:09 AM,01/05/2016 10:42:00 AM,01/05/2016 10:43:03 AM,01/05/2016 10:44:06 AM,01/05/2016 11:03:36 AM,01/05/2016 11:19:26 AM,01/05/2016 11:22:29 AM,Code 2 Transport,01/05/2016 12:16:34 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160051201-67 +121990231,KM01,12066163,Medical Incident,07/17/2012,07/17/2012,07/17/2012 02:46:29 PM,07/17/2012 02:48:02 PM,07/17/2012 02:48:28 PM,07/17/2012 02:49:09 PM,07/17/2012 02:56:14 PM,07/17/2012 03:23:05 PM,07/17/2012 03:37:58 PM,Code 3 Transport,07/17/2012 04:28:13 PM,2600 Block of OCEAN AVE,SF,94132,B08,19,8452,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7318468298435, -122.473738730856)",121990231-KM01 +121960001,75,12065047,Medical Incident,07/14/2012,07/13/2012,07/14/2012 12:08:23 AM,07/14/2012 12:08:41 AM,07/14/2012 12:09:29 AM,07/14/2012 12:09:48 AM,07/14/2012 12:18:13 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Patient Declined Transport,07/14/2012 12:37:01 AM,1200 Block of FITZGERALD AVE,SF,94124,B10,17,6614,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7214606647015, -122.392279417619)",121960001-75 +130270107,KM09,13009242,Medical Incident,01/27/2013,01/27/2013,01/27/2013 08:58:10 AM,01/27/2013 08:59:37 AM,01/27/2013 09:00:04 AM,01/27/2013 09:00:40 AM,01/27/2013 09:05:38 AM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,No Merit,01/27/2013 09:10:19 AM,600 Block of OCTAVIA ST,SF,94102,B02,36,3315,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7778281589189, -122.424924726831)",130270107-KM09 +131130189,E10,13038100,Medical Incident,04/23/2013,04/23/2013,04/23/2013 01:14:47 PM,04/23/2013 01:15:48 PM,04/23/2013 01:16:07 PM,04/23/2013 01:17:30 PM,04/23/2013 01:21:25 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 01:37:18 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",131130189-E10 +160553921,52,16022165,Medical Incident,02/24/2016,02/24/2016,02/24/2016 09:33:41 PM,02/24/2016 09:34:53 PM,02/24/2016 09:35:13 PM,02/24/2016 09:35:22 PM,02/24/2016 09:43:02 PM,02/24/2016 09:54:17 PM,02/24/2016 10:14:10 PM,Code 2 Transport,02/24/2016 10:56:51 PM,800 Block of FELL ST,San Francisco,94117,B05,5,3532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7748519703665, -122.431841130973)",160553921-52 +112600281,57,11085827,Medical Incident,09/17/2011,09/17/2011,09/17/2011 04:12:54 PM,09/17/2011 04:13:31 PM,09/17/2011 04:13:45 PM,09/17/2011 04:14:05 PM,09/17/2011 04:20:15 PM,09/17/2011 04:28:45 PM,09/17/2011 04:59:20 PM,Code 2 Transport,09/17/2011 05:34:30 PM,100 Block of HIGHLAND AVE,SF,94110,B06,32,5646,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7372540256563, -122.422102908674)",112600281-57 +122320025,66,12076809,Medical Incident,08/19/2012,08/18/2012,08/19/2012 01:17:28 AM,08/19/2012 01:20:28 AM,08/19/2012 01:21:22 AM,08/19/2012 01:21:29 AM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,04/25/2016 01:57:10 PM,CHESTNUT ST/FILLMORE ST,SF,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.800814143599, -122.436273910168)",122320025-66 +120780222,T16,12025907,Citizen Assist / Service Call,03/18/2012,03/18/2012,03/18/2012 01:14:29 PM,03/18/2012 01:14:41 PM,03/18/2012 01:14:52 PM,03/18/2012 01:16:03 PM,03/18/2012 01:18:50 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/18/2012 01:22:56 PM,2300 Block of BAY ST,SF,94123,B04,16,4315,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.8015761215605, -122.445722371236)",120780222-T16 +103310050,E03,10105855,Medical Incident,11/27/2010,11/26/2010,11/27/2010 03:54:06 AM,11/27/2010 03:56:17 AM,11/27/2010 03:56:46 AM,11/27/2010 03:58:40 AM,11/27/2010 04:05:22 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 04:35:29 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",103310050-E03 +122850356,E17,12094421,Medical Incident,10/11/2012,10/11/2012,10/11/2012 09:21:21 PM,10/11/2012 09:23:39 PM,10/11/2012 09:24:07 PM,10/11/2012 09:25:28 PM,10/11/2012 09:27:27 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Patient Declined Transport,10/11/2012 09:39:40 PM,1300 Block of EGBERT AVE,SF,94124,B10,17,6615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7221736000048, -122.391637312216)",122850356-E17 +133360198,T02,13113900,Structure Fire,12/02/2013,12/02/2013,12/02/2013 01:51:11 PM,12/02/2013 01:51:11 PM,12/02/2013 01:52:18 PM,12/02/2013 01:53:30 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/02/2013 01:55:08 PM,GRANT AV/JACKSON ST,SF,94133,B01,2,1312,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",133360198-T02 +160080251,52,16003072,Medical Incident,01/08/2016,01/07/2016,01/08/2016 02:28:06 AM,01/08/2016 02:30:41 AM,01/08/2016 02:31:11 AM,01/08/2016 02:31:26 AM,01/08/2016 02:38:34 AM,01/08/2016 02:46:28 AM,01/08/2016 02:59:23 AM,Code 2 Transport,01/08/2016 03:27:06 AM,1600 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",160080251-52 +130260186,KM14,13008983,Medical Incident,01/26/2013,01/26/2013,01/26/2013 01:11:37 PM,01/26/2013 01:12:11 PM,01/26/2013 01:12:23 PM,01/26/2013 01:12:57 PM,01/26/2013 01:15:40 PM,01/26/2013 01:39:37 PM,01/26/2013 02:15:23 PM,Code 2 Transport,01/26/2013 02:15:33 PM,22ND ST/VALENCIA ST,SF,94110,B06,7,5456,3,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Mission,"(37.7552947827711, -122.420964094826)",130260186-KM14 +110230243,RS1,11007644,Medical Incident,01/23/2011,01/23/2011,01/23/2011 05:34:58 PM,01/23/2011 05:36:05 PM,01/23/2011 05:36:35 PM,01/23/2011 05:37:33 PM,01/23/2011 05:40:35 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/23/2011 05:42:48 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",110230243-RS1 +160910937,57,16036007,Medical Incident,03/31/2016,03/31/2016,03/31/2016 09:25:18 AM,03/31/2016 09:25:23 AM,03/31/2016 09:33:01 AM,03/31/2016 09:33:01 AM,03/31/2016 09:33:01 AM,03/31/2016 09:43:28 AM,03/31/2016 10:18:53 AM,Code 2 Transport,03/31/2016 10:32:14 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",160910937-57 +103020286,E43,10096578,Medical Incident,10/29/2010,10/29/2010,10/29/2010 08:18:05 PM,10/29/2010 08:19:03 PM,10/29/2010 08:19:36 PM,10/29/2010 08:20:37 PM,10/29/2010 08:23:02 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/29/2010 08:33:17 PM,200 Block of MADRID ST,SF,94112,B09,43,6133,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7254752089817, -122.429807319916)",103020286-E43 +131940278,RC3,13066038,Medical Incident,07/13/2013,07/13/2013,07/13/2013 06:52:18 PM,07/13/2013 06:53:44 PM,07/13/2013 06:54:05 PM,07/13/2013 06:54:23 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 06:58:35 PM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,None,3,North Beach,"(37.8081679785862, -122.416634717802)",131940278-RC3 +160441819,KM02,16017708,Medical Incident,02/13/2016,02/13/2016,02/13/2016 01:47:39 PM,02/13/2016 01:49:00 PM,02/13/2016 01:50:08 PM,02/13/2016 01:50:08 PM,02/13/2016 01:53:05 PM,02/13/2016 02:18:26 PM,02/13/2016 02:44:30 PM,Code 3 Transport,02/13/2016 03:35:36 PM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",160441819-KM02 +130880077,T03,13029285,Alarms,03/29/2013,03/29/2013,03/29/2013 08:03:58 AM,03/29/2013 08:03:58 AM,03/29/2013 08:04:38 AM,03/29/2013 08:06:49 AM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 08:09:29 AM,TAYLOR ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",130880077-T03 +112490332,T08,11082245,Structure Fire,09/06/2011,09/06/2011,09/06/2011 07:10:01 PM,09/06/2011 07:10:01 PM,09/06/2011 07:10:58 PM,04/25/2016 02:02:48 PM,09/06/2011 07:14:22 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 07:14:40 PM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",112490332-T08 +133580358,T07,13121873,Alarms,12/24/2013,12/24/2013,12/24/2013 10:41:50 PM,12/24/2013 10:43:43 PM,12/24/2013 10:43:49 PM,12/24/2013 10:45:51 PM,12/24/2013 10:47:27 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/24/2013 10:56:46 PM,900 Block of TREAT AVE,SF,94110,B06,7,5477,3,3,3,true,Alarm,1,TRUCK,2,6,9,Mission,"(37.7549694072958, -122.413148488063)",133580358-T07 +160490070,65,16019565,Medical Incident,02/18/2016,02/17/2016,02/18/2016 12:30:39 AM,02/18/2016 12:37:46 AM,02/18/2016 12:37:51 AM,02/18/2016 12:38:31 AM,02/18/2016 12:50:51 AM,02/18/2016 01:01:30 AM,02/18/2016 01:16:13 AM,Code 2 Transport,02/18/2016 01:43:57 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160490070-65 +160231407,63,16009123,Medical Incident,01/23/2016,01/23/2016,01/23/2016 11:36:05 AM,01/23/2016 11:38:40 AM,01/23/2016 11:39:14 AM,01/23/2016 11:39:27 AM,01/23/2016 11:40:30 AM,01/23/2016 11:55:41 AM,01/23/2016 12:14:07 PM,Code 2 Transport,01/23/2016 12:52:51 PM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",160231407-63 +102750002,E33,10087206,Medical Incident,10/02/2010,10/01/2010,10/02/2010 12:01:08 AM,10/02/2010 12:02:16 AM,10/02/2010 12:02:45 AM,10/02/2010 12:04:11 AM,10/02/2010 12:06:52 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 12:17:54 AM,100 Block of GOETHE ST,SF,94112,B09,33,8364,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7090126221049, -122.45976907124)",102750002-E33 +112320037,KM07,11076469,Traffic Collision,08/20/2011,08/19/2011,08/20/2011 03:27:37 AM,08/20/2011 03:33:38 AM,08/20/2011 03:34:41 AM,08/20/2011 03:35:23 AM,08/20/2011 03:50:13 AM,08/20/2011 04:32:30 AM,08/20/2011 04:38:39 AM,Code 2 Transport,08/20/2011 05:12:11 AM,300 Block of DIVISION ST,SF,94103,B02,29,2345,2,3,3,false,,1,PRIVATE,1,2,10,Mission,"(37.7690697135105, -122.409528901583)",112320037-KM07 +160610379,AM20,16024177,Medical Incident,03/01/2016,02/29/2016,03/01/2016 05:12:09 AM,03/01/2016 05:13:51 AM,03/01/2016 05:14:41 AM,03/01/2016 05:15:20 AM,03/01/2016 05:20:58 AM,03/01/2016 05:33:07 AM,03/01/2016 05:44:42 AM,Code 2 Transport,03/01/2016 05:44:52 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",160610379-AM20 +131000200,82,13033612,Traffic Collision,04/10/2013,04/10/2013,04/10/2013 12:49:28 PM,04/10/2013 12:50:10 PM,04/10/2013 12:50:27 PM,04/10/2013 12:50:34 PM,04/10/2013 12:57:31 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/10/2013 12:59:16 PM,900 Block of BRANNAN ST,SF,94103,B03,29,2330,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7707119826907, -122.406261949572)",131000200-82 +112460028,81,11080984,Medical Incident,09/03/2011,09/02/2011,09/03/2011 01:34:43 AM,09/03/2011 01:35:29 AM,09/03/2011 01:36:29 AM,09/03/2011 01:36:54 AM,09/03/2011 01:44:40 AM,09/03/2011 02:05:49 AM,09/03/2011 02:15:42 AM,Other,09/03/2011 02:47:05 AM,2500 Block of MASON ST,SF,94133,B01,28,1425,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.807027306345, -122.413812485246)",112460028-81 +120450221,B06,12015000,Alarms,02/14/2012,02/14/2012,02/14/2012 02:37:24 PM,02/14/2012 02:38:04 PM,02/14/2012 02:38:19 PM,02/14/2012 02:39:58 PM,02/14/2012 02:41:16 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Fire,02/14/2012 02:44:34 PM,0 Block of ARLINGTON ST,SF,94131,B06,32,8112,3,3,3,false,Alarm,1,CHIEF,1,6,8,Glen Park,"(37.7394484132871, -122.424741266112)",120450221-B06 +130580161,KM14,13019430,Medical Incident,02/27/2013,02/27/2013,02/27/2013 11:42:42 AM,02/27/2013 11:44:56 AM,02/27/2013 11:45:26 AM,02/27/2013 11:46:11 AM,04/25/2016 01:54:05 PM,02/27/2013 12:09:14 PM,04/25/2016 01:54:05 PM,Code 2 Transport,02/27/2013 01:00:51 PM,200 Block of 21ST AVE,SF,94121,B07,14,7173,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",130580161-KM14 +131710291,E06,13058145,Transfer,06/20/2013,06/20/2013,06/20/2013 05:54:23 PM,06/20/2013 05:55:06 PM,06/20/2013 05:56:12 PM,06/20/2013 05:57:41 PM,06/20/2013 05:59:55 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,Code 2 Transport,06/20/2013 06:15:45 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7694504462794, -122.424435244186)",131710291-E06 +133460206,T12,13117404,Citizen Assist / Service Call,12/12/2013,12/12/2013,12/12/2013 12:46:53 PM,12/12/2013 12:48:16 PM,12/12/2013 12:48:58 PM,12/12/2013 12:49:52 PM,12/12/2013 12:51:45 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Fire,12/12/2013 12:55:33 PM,PARNASSUS AV/HILLWAY AV,SF,94131,B05,12,5155,3,3,3,false,Alarm,1,TRUCK,1,5,7,Inner Sunset,"(37.7638146894796, -122.456669911754)",133460206-T12 +120930267,T11,12030874,Medical Incident,04/02/2012,04/02/2012,04/02/2012 04:07:03 PM,04/02/2012 04:09:30 PM,04/02/2012 04:09:59 PM,04/02/2012 04:13:05 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Other,04/02/2012 04:15:34 PM,0 Block of LILAC ST,SF,94110,B06,11,5525,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,6,9,Mission,"(37.7514765377591, -122.417732620708)",120930267-T11 +122930122,E03,12097088,Medical Incident,10/19/2012,10/19/2012,10/19/2012 08:58:54 AM,10/19/2012 09:01:28 AM,10/19/2012 09:05:23 AM,04/25/2016 01:56:13 PM,10/19/2012 09:09:30 AM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 09:19:25 AM,0 Block of MASON ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",122930122-E03 +103360311,E08,10107590,Medical Incident,12/02/2010,12/02/2010,12/02/2010 06:51:35 PM,12/02/2010 06:52:35 PM,12/02/2010 06:53:34 PM,12/02/2010 06:54:54 PM,12/02/2010 06:56:58 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/02/2010 07:07:22 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",103360311-E08 +110260309,87,11008677,Medical Incident,01/26/2011,01/26/2011,01/26/2011 06:57:13 PM,01/26/2011 06:58:00 PM,01/26/2011 06:58:08 PM,01/26/2011 06:58:48 PM,01/26/2011 07:01:10 PM,01/26/2011 07:18:10 PM,01/26/2011 07:28:29 PM,Code 2 Transport,01/26/2011 07:50:49 PM,600 Block of STEVENSON ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7795231711615, -122.412639291793)",110260309-87 +121210178,E29,12040180,Medical Incident,04/30/2012,04/30/2012,04/30/2012 01:13:59 PM,04/30/2012 01:14:34 PM,04/30/2012 01:15:03 PM,04/30/2012 01:18:23 PM,04/30/2012 01:20:00 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 01:28:57 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7697208630457, -122.417949217834)",121210178-E29 +130320378,E15,13011092,Gas Leak (Natural and LP Gases),02/01/2013,02/01/2013,02/01/2013 09:55:23 PM,02/01/2013 09:57:48 PM,02/01/2013 09:59:11 PM,02/01/2013 09:59:54 PM,02/01/2013 10:01:55 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/01/2013 10:37:52 PM,100 Block of JULES AVE,SF,94112,B09,15,8463,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209248245928, -122.461168962553)",130320378-E15 +140100215,E21,14003509,Medical Incident,01/10/2014,01/10/2014,01/10/2014 01:17:53 PM,01/10/2014 01:21:25 PM,01/10/2014 01:22:18 PM,01/10/2014 01:23:08 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/10/2014 01:25:43 PM,400 Block of STANYAN ST,SF,94117,B05,21,455,E,E,3,false,Potentially Life-Threatening,1,ENGINE,4,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",140100215-E21 +111010287,78,11033603,Medical Incident,04/11/2011,04/11/2011,04/11/2011 06:43:52 PM,04/11/2011 06:45:35 PM,04/11/2011 06:46:07 PM,04/11/2011 06:46:59 PM,04/11/2011 06:50:45 PM,04/11/2011 07:11:44 PM,04/11/2011 07:24:12 PM,Code 2 Transport,04/11/2011 08:05:39 PM,200 Block of LONDON ST,SF,94112,B09,43,6116,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7250653489969, -122.433386010652)",111010287-78 +133120219,E18,13106051,Medical Incident,11/08/2013,11/08/2013,11/08/2013 02:02:43 PM,11/08/2013 02:03:32 PM,11/08/2013 02:07:48 PM,11/08/2013 02:08:49 PM,11/08/2013 02:11:31 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Medical Examiner,11/08/2013 03:18:27 PM,1900 Block of 46TH AVE,SF,94116,B08,23,7715,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7501609656807, -122.505281479896)",133120219-E18 +160611346,77,16024282,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:43:39 AM,03/01/2016 11:46:01 AM,03/01/2016 12:10:42 PM,03/01/2016 12:10:56 PM,03/01/2016 12:15:44 PM,03/01/2016 12:19:31 PM,03/01/2016 12:23:03 PM,Code 2 Transport,03/01/2016 12:47:25 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160611346-77 +132580249,B04,13087334,Structure Fire,09/15/2013,09/15/2013,09/15/2013 04:06:17 PM,09/15/2013 04:06:59 PM,09/15/2013 04:07:35 PM,09/15/2013 04:08:36 PM,09/15/2013 04:10:36 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/15/2013 04:26:29 PM,1900 Block of WASHINGTON ST,SF,94109,B04,38,3226,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7927918347727, -122.425348410602)",132580249-B04 +160381567,63,16015188,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:42:30 AM,02/07/2016 11:45:57 AM,02/07/2016 11:47:43 AM,02/07/2016 11:47:53 AM,02/07/2016 12:04:11 PM,02/07/2016 12:08:41 PM,02/07/2016 12:32:17 PM,Code 2 Transport,02/07/2016 01:19:51 PM,100 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6665,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7285505716064, -122.372721993356)",160381567-63 +131180345,RS1,13039843,Medical Incident,04/28/2013,04/28/2013,04/28/2013 09:15:10 PM,04/28/2013 09:16:25 PM,04/28/2013 09:16:44 PM,04/28/2013 09:18:11 PM,04/28/2013 09:20:43 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/28/2013 09:31:09 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131180345-RS1 +111750236,E15,11057724,Medical Incident,06/24/2011,06/24/2011,06/24/2011 02:59:48 PM,06/24/2011 03:00:20 PM,06/24/2011 03:00:53 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,No Merit,06/24/2011 03:09:53 PM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,2,2,2,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",111750236-E15 +131570266,T02,13053296,Water Rescue,06/06/2013,06/06/2013,06/06/2013 03:07:19 PM,06/06/2013 03:08:20 PM,06/06/2013 03:09:06 PM,06/06/2013 03:11:26 PM,06/06/2013 03:15:16 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/06/2013 03:15:44 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,true,Fire,1,TRUCK,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",131570266-T02 +132670126,RC3,13090585,Medical Incident,09/24/2013,09/24/2013,09/24/2013 10:56:16 AM,09/24/2013 10:57:54 AM,09/24/2013 10:59:28 AM,09/24/2013 11:00:03 AM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/24/2013 11:04:52 AM,4800 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7805793273051, -122.471239503183)",132670126-RC3 +160141530,52,16005544,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:52:01 AM,01/14/2016 11:54:41 AM,01/14/2016 11:55:04 AM,01/14/2016 11:55:23 AM,01/14/2016 12:18:31 PM,01/14/2016 12:29:41 PM,01/14/2016 12:47:18 PM,Code 2 Transport,01/14/2016 01:27:08 PM,5TH ST/WELSH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.777371993601, -122.399762587518)",160141530-52 +160680398,AM02,16026992,Medical Incident,03/08/2016,03/07/2016,03/08/2016 06:10:43 AM,03/08/2016 06:11:53 AM,03/08/2016 06:12:09 AM,03/08/2016 06:12:55 AM,03/08/2016 06:17:35 AM,03/08/2016 06:40:30 AM,03/08/2016 07:18:36 AM,Code 2 Transport,03/08/2016 07:53:55 AM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8046368314261, -122.414251200714)",160680398-AM02 +113360466,59,11111472,Medical Incident,12/02/2011,12/02/2011,12/02/2011 10:31:40 PM,12/02/2011 10:33:24 PM,12/02/2011 10:40:21 PM,12/02/2011 10:43:22 PM,12/02/2011 10:49:51 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Patient Declined Transport,12/02/2011 11:29:34 PM,1300 Block of EGBERT AVE,SF,94124,B10,17,6615,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7221736000048, -122.391637312216)",113360466-59 +140630221,B10,14021303,Alarms,03/04/2014,03/04/2014,03/04/2014 02:05:28 PM,03/04/2014 02:05:28 PM,03/04/2014 02:05:43 PM,03/04/2014 02:08:55 PM,03/04/2014 02:11:49 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 02:12:23 PM,1100 Block of INGERSON AVE,SF,94124,B10,44,6575,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7205336865226, -122.395602639303)",140630221-B10 +111640302,RC2,11054222,Medical Incident,06/13/2011,06/13/2011,06/13/2011 06:02:30 PM,06/13/2011 06:04:01 PM,06/13/2011 06:05:55 PM,06/13/2011 06:10:44 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,Other,06/13/2011 06:11:03 PM,7900 Block of GEARY BLVD,SF,94121,B07,34,7274,3,E,3,true,,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7790745212569, -122.504546749316)",111640302-RC2 +103340019,54,10106747,Medical Incident,11/30/2010,11/29/2010,11/30/2010 01:55:38 AM,11/30/2010 01:56:31 AM,11/30/2010 01:57:06 AM,11/30/2010 01:57:59 AM,11/30/2010 01:59:33 AM,11/30/2010 02:07:11 AM,11/30/2010 02:20:25 AM,Other,11/30/2010 03:19:50 AM,4100 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7399568110921, -122.389027814103)",103340019-54 +121380147,78,12045817,Medical Incident,05/17/2012,05/17/2012,05/17/2012 11:17:03 AM,05/17/2012 11:20:01 AM,05/17/2012 11:20:26 AM,05/17/2012 11:20:38 AM,05/17/2012 11:23:10 AM,05/17/2012 11:40:09 AM,05/17/2012 11:53:46 AM,Code 2 Transport,05/17/2012 12:40:00 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",121380147-78 +160450519,75,16017983,Medical Incident,02/14/2016,02/13/2016,02/14/2016 03:20:14 AM,02/14/2016 03:20:34 AM,02/14/2016 03:21:14 AM,02/14/2016 03:21:41 AM,02/14/2016 03:25:32 AM,02/14/2016 03:38:20 AM,02/14/2016 03:39:38 AM,Code 2 Transport,02/14/2016 04:29:57 AM,700 Block of VAN NESS AVE,San Francisco,94102,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824440383404, -122.420574545604)",160450519-75 +123360086,B01,12111638,Fuel Spill,12/01/2012,12/01/2012,12/01/2012 07:57:37 AM,12/01/2012 08:01:28 AM,12/01/2012 08:01:34 AM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,12/01/2012 08:04:25 AM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,Alarm,1,CHIEF,2,3,3,Financial District/South Beach,"(37.7864582323625, -122.407206735701)",123360086-B01 +160881318,KM11,16034898,Medical Incident,03/28/2016,03/28/2016,03/28/2016 10:45:17 AM,03/28/2016 10:45:54 AM,03/28/2016 10:46:39 AM,03/28/2016 10:47:14 AM,03/28/2016 10:55:12 AM,03/28/2016 11:15:33 AM,03/28/2016 11:29:05 AM,Code 2 Transport,03/28/2016 11:57:38 AM,WASHINGTON ST/WALTER U LUM PL,San Francisco,94108,B01,13,1245,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7952232343029, -122.405845728924)",160881318-KM11 +121400159,KM12,12046477,Medical Incident,05/19/2012,05/19/2012,05/19/2012 12:03:33 PM,05/19/2012 12:04:33 PM,05/19/2012 12:05:10 PM,05/19/2012 12:05:45 PM,05/19/2012 12:08:18 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/19/2012 12:13:24 PM,SOUTH VAN NESS AV/23RD ST,SF,94110,B06,7,5511,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7539677697092, -122.416413490249)",121400159-KM12 +160630848,AM06,16024984,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:38:24 AM,03/03/2016 08:38:49 AM,03/03/2016 08:39:29 AM,03/03/2016 08:40:05 AM,03/03/2016 09:04:40 AM,03/03/2016 09:04:47 AM,03/03/2016 09:17:00 AM,Code 2 Transport,03/03/2016 09:45:04 AM,500 Block of CASTRO ST,San Francisco,94114,B06,6,5437,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7600850560594, -122.434996193094)",160630848-AM06 +111930240,B02,11063763,Alarms,07/12/2011,07/12/2011,07/12/2011 03:54:31 PM,07/12/2011 03:56:29 PM,07/12/2011 03:56:52 PM,07/12/2011 03:58:07 PM,07/12/2011 04:03:04 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,Other,07/12/2011 04:10:36 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,false,,1,CHIEF,3,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",111930240-B02 +132480140,AM06,13083645,Medical Incident,09/05/2013,09/05/2013,09/05/2013 10:38:22 AM,09/05/2013 10:39:11 AM,09/05/2013 10:40:14 AM,09/05/2013 10:40:58 AM,09/05/2013 10:42:56 AM,04/25/2016 01:50:57 PM,04/25/2016 01:50:57 PM,Other,09/05/2013 10:45:15 AM,20TH ST/MISSION ST,SF,94110,B06,7,5446,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",132480140-AM06 +113480401,D3,11115648,Structure Fire,12/14/2011,12/14/2011,12/14/2011 11:17:03 PM,12/14/2011 11:17:52 PM,12/14/2011 11:18:34 PM,12/14/2011 11:20:41 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 11:25:03 PM,0 Block of CAMELLIA AVE,SF,94112,B09,32,6113,3,3,3,false,,1,CHIEF,7,9,11,Outer Mission,"(37.7300279058626, -122.431228703307)",113480401-D3 +140190368,RC1,14006700,Medical Incident,01/19/2014,01/19/2014,01/19/2014 10:44:20 PM,01/19/2014 10:44:49 PM,01/19/2014 10:48:10 PM,01/19/2014 10:48:15 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/19/2014 10:49:24 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",140190368-RC1 +140860176,94,14028942,Medical Incident,03/27/2014,03/27/2014,03/27/2014 01:40:59 PM,03/27/2014 01:42:34 PM,03/27/2014 01:42:57 PM,03/27/2014 01:43:45 PM,03/27/2014 01:47:13 PM,03/27/2014 02:12:01 PM,03/27/2014 02:43:58 PM,Code 3 Transport,03/27/2014 03:10:02 PM,1500 Block of 7TH AVE,SAN FRANCISCO,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",140860176-94 +102610001,93,10082347,Medical Incident,09/18/2010,09/17/2010,09/18/2010 12:02:44 AM,09/18/2010 12:03:45 AM,09/18/2010 12:03:59 AM,09/18/2010 12:06:09 AM,09/18/2010 12:08:40 AM,09/18/2010 12:14:11 AM,09/18/2010 12:32:35 AM,Other,09/18/2010 12:49:31 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",102610001-93 +160890171,AM20,16035179,Medical Incident,03/29/2016,03/28/2016,03/29/2016 01:46:22 AM,03/29/2016 01:47:37 AM,03/29/2016 01:47:51 AM,03/29/2016 01:48:38 AM,03/29/2016 01:53:10 AM,03/29/2016 02:13:19 AM,03/29/2016 02:35:09 AM,Code 2 Transport,03/29/2016 02:55:50 AM,300 Block of 26TH AVE,San Francisco,94121,B07,14,7214,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7829074057708, -122.485947937388)",160890171-AM20 +121530128,E36,12050592,Medical Incident,06/01/2012,06/01/2012,06/01/2012 11:34:27 AM,06/01/2012 11:35:51 AM,06/01/2012 11:36:15 AM,06/01/2012 11:36:42 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 11:39:10 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121530128-E36 +112320207,T05,11076613,Structure Fire,08/20/2011,08/20/2011,08/20/2011 02:34:40 PM,08/20/2011 02:34:41 PM,08/20/2011 02:34:49 PM,08/20/2011 02:35:40 PM,08/20/2011 02:38:10 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 02:38:13 PM,SCOTT ST/FULTON ST,SF,94117,B05,21,4135,3,3,3,false,,1,TRUCK,2,5,5,Western Addition,"(37.777068080574, -122.436507231271)",112320207-T05 +121690249,B03,12056177,Alarms,06/17/2012,06/17/2012,06/17/2012 04:57:58 PM,06/17/2012 04:58:52 PM,06/17/2012 04:58:59 PM,06/17/2012 05:01:20 PM,06/17/2012 05:06:29 PM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/17/2012 05:37:00 PM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",121690249-B03 +160630843,52,16024983,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:35:27 AM,03/03/2016 08:37:35 AM,03/03/2016 08:40:29 AM,03/03/2016 08:40:39 AM,03/03/2016 09:02:06 AM,03/03/2016 09:12:56 AM,03/03/2016 09:52:57 AM,Code 2 Transport,03/03/2016 10:20:32 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160630843-52 +121690318,86,12056241,Medical Incident,06/17/2012,06/17/2012,06/17/2012 09:27:30 PM,06/17/2012 09:33:10 PM,06/17/2012 09:33:24 PM,06/17/2012 09:33:40 PM,06/17/2012 09:37:32 PM,06/17/2012 09:41:11 PM,06/17/2012 09:57:23 PM,Code 2 Transport,06/17/2012 10:02:16 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",121690318-86 +112650330,AM12,11087616,Medical Incident,09/22/2011,09/22/2011,09/22/2011 05:26:12 PM,09/22/2011 05:26:12 PM,09/22/2011 05:26:12 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,09/22/2011 05:38:12 PM,09/22/2011 05:51:06 PM,Code 2 Transport,09/22/2011 06:23:55 PM,POLK ST/POST ST,SF,94109,B04,3,1641,3,3,3,false,,1,PRIVATE,1,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",112650330-AM12 +102520329,E02,10079748,Medical Incident,09/09/2010,09/09/2010,09/09/2010 09:20:36 PM,09/09/2010 09:21:21 PM,09/09/2010 09:21:32 PM,09/09/2010 09:23:47 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/09/2010 09:24:12 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",102520329-E02 +131770082,67,13060001,Medical Incident,06/26/2013,06/25/2013,06/26/2013 07:07:55 AM,06/26/2013 07:09:34 AM,06/26/2013 07:09:54 AM,06/26/2013 07:10:39 AM,06/26/2013 07:15:26 AM,06/26/2013 07:31:18 AM,06/26/2013 07:46:09 AM,Code 2 Transport,06/26/2013 08:35:02 AM,0 Block of SEYMOUR ST,SF,94115,B05,5,4134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7792900134424, -122.437869182837)",131770082-67 +111780082,RC2,11058701,Medical Incident,06/27/2011,06/26/2011,06/27/2011 07:55:01 AM,06/27/2011 07:56:57 AM,06/27/2011 08:00:49 AM,06/27/2011 08:22:10 AM,06/27/2011 08:35:03 AM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 09:41:41 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,1,1,2,true,,1,RESCUE CAPTAIN,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",111780082-RC2 +122290043,KM04,12075765,Medical Incident,08/16/2012,08/15/2012,08/16/2012 04:23:51 AM,08/16/2012 04:24:38 AM,08/16/2012 04:26:01 AM,08/16/2012 04:26:43 AM,08/16/2012 04:36:17 AM,08/16/2012 05:22:02 AM,08/16/2012 05:52:35 AM,Code 2 Transport,08/16/2012 06:33:33 AM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",122290043-KM04 +121490013,54,12049314,Medical Incident,05/28/2012,05/27/2012,05/28/2012 12:50:24 AM,05/28/2012 12:51:04 AM,05/28/2012 12:51:32 AM,05/28/2012 12:51:54 AM,05/28/2012 12:55:56 AM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Gone on Arrival,05/28/2012 01:00:29 AM,2800 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7879071323042, -122.441263904457)",121490013-54 +121240319,B09,12041275,Alarms,05/03/2012,05/03/2012,05/03/2012 06:46:00 PM,05/03/2012 06:47:34 PM,05/03/2012 06:47:44 PM,05/03/2012 06:48:37 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 06:50:43 PM,300 Block of RALSTON ST,SF,94132,B09,33,8431,3,3,3,false,Alarm,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7187762303119, -122.469015203072)",121240319-B09 +123360450,E22,12111963,Medical Incident,12/01/2012,12/01/2012,12/01/2012 11:18:24 PM,12/01/2012 11:19:00 PM,12/01/2012 11:19:15 PM,12/01/2012 11:20:28 PM,12/01/2012 11:23:54 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 11:33:15 PM,1400 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",123360450-E22 +160483597,65,16019504,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:20:16 PM,02/17/2016 08:20:16 PM,02/17/2016 08:20:36 PM,02/17/2016 08:20:45 PM,02/17/2016 08:29:33 PM,02/17/2016 08:53:43 PM,02/17/2016 08:59:13 PM,Code 2 Transport,02/17/2016 09:15:00 PM,MISSION ST/7TH ST,San Francisco,94103,B02,1,2315,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160483597-65 +111780034,74,11058658,Medical Incident,06/27/2011,06/26/2011,06/27/2011 02:21:58 AM,06/27/2011 02:22:57 AM,06/27/2011 02:25:40 AM,06/27/2011 02:25:54 AM,06/27/2011 02:36:48 AM,06/27/2011 02:40:24 AM,06/27/2011 02:51:16 AM,Code 2 Transport,06/27/2011 03:22:22 AM,3RD ST/MARIPOSA ST,SF,94107,B03,29,2671,2,2,2,true,,1,MEDIC,1,3,10,Potrero Hill,"(37.7643218361157, -122.388851284628)",111780034-74 +140310068,E16,14010449,Medical Incident,01/31/2014,01/31/2014,01/31/2014 08:28:46 AM,01/31/2014 08:29:45 AM,01/31/2014 08:30:09 AM,01/31/2014 08:31:21 AM,01/31/2014 08:34:36 AM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/31/2014 08:36:43 AM,CHESTNUT ST/BUCHANAN ST,SF,94123,B04,16,3445,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8012356976907, -122.432957626885)",140310068-E16 +132570364,E03,13087063,Citizen Assist / Service Call,09/14/2013,09/14/2013,09/14/2013 08:50:07 PM,09/14/2013 08:52:35 PM,09/14/2013 08:54:01 PM,09/14/2013 08:55:41 PM,09/14/2013 09:00:00 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 09:17:13 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",132570364-E03 +140130257,E38,14004518,Traffic Collision,01/13/2014,01/13/2014,01/13/2014 04:11:41 PM,01/13/2014 04:12:47 PM,01/13/2014 04:13:18 PM,01/13/2014 04:14:07 PM,01/13/2014 04:16:21 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/13/2014 04:34:27 PM,POST ST/BUCHANAN ST,SF,94115,B04,38,3364,,2,2,false,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7855638462164, -122.429782593528)",140130257-E38 +110090084,E21,11002920,Medical Incident,01/09/2011,01/08/2011,01/09/2011 05:46:30 AM,01/09/2011 05:47:10 AM,01/09/2011 05:47:44 AM,04/25/2016 02:06:41 PM,01/09/2011 05:50:06 AM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/09/2011 06:00:02 AM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",110090084-E21 +103380251,E37,10108190,Medical Incident,12/04/2010,12/04/2010,12/04/2010 02:32:25 PM,12/04/2010 02:37:26 PM,12/04/2010 02:37:46 PM,12/04/2010 02:39:20 PM,04/25/2016 02:07:18 PM,04/25/2016 02:07:18 PM,12/04/2010 02:40:48 PM,Other,12/04/2010 02:44:34 PM,300 Block of TEXAS ST,SF,94107,B03,37,2462,3,3,3,true,,1,ENGINE,3,10,10,Potrero Hill,"(37.7620024484897, -122.395430669934)",103380251-E37 +110250288,96,11008289,Medical Incident,01/25/2011,01/25/2011,01/25/2011 02:21:46 PM,01/25/2011 02:24:48 PM,01/25/2011 02:25:03 PM,01/25/2011 02:25:37 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 02:25:47 PM,1400 Block of POST ST,SF,94109,B04,3,3256,3,3,3,true,,1,MEDIC,4,4,5,Japantown,"(37.7860447238816, -122.426514096484)",110250288-96 +112890247,KM04,11095932,Medical Incident,10/16/2011,10/16/2011,10/16/2011 04:30:02 PM,10/16/2011 04:30:39 PM,10/16/2011 04:30:52 PM,10/16/2011 04:31:31 PM,10/16/2011 04:37:49 PM,10/16/2011 04:47:56 PM,10/16/2011 04:59:26 PM,Code 2 Transport,10/16/2011 05:10:53 PM,1500 Block of STOCKTON ST,SF,94133,B01,28,1334,3,2,2,false,,1,PRIVATE,2,1,3,North Beach,"(37.799975359605, -122.40903359976)",112890247-KM04 +131600353,T03,13054514,Medical Incident,06/09/2013,06/09/2013,06/09/2013 10:53:24 PM,06/09/2013 10:53:45 PM,06/09/2013 10:54:17 PM,06/09/2013 10:55:21 PM,06/09/2013 10:57:17 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 10:58:12 PM,EDDY ST/POLK ST,SF,94109,B02,3,1643,E,E,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",131600353-T03 +160100704,85,16003941,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:18:47 AM,01/10/2016 07:19:40 AM,01/10/2016 07:20:04 AM,01/10/2016 07:20:24 AM,01/10/2016 07:27:01 AM,01/10/2016 08:00:21 AM,01/10/2016 08:14:33 AM,Code 2 Transport,01/10/2016 08:55:30 AM,1300 Block of TURK ST,San Francisco,94115,B05,5,3535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7806601476493, -122.431293406332)",160100704-85 +121630252,79,12054095,Medical Incident,06/11/2012,06/11/2012,06/11/2012 03:43:14 PM,06/11/2012 03:44:36 PM,06/11/2012 03:46:37 PM,06/11/2012 03:47:40 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 04:04:04 PM,39TH AV/ORTEGA ST,SF,94116,B08,18,7623,3,1,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7514263278688, -122.497770413464)",121630252-79 +160110393,55,16004258,Medical Incident,01/11/2016,01/10/2016,01/11/2016 04:35:39 AM,01/11/2016 04:36:25 AM,01/11/2016 04:36:47 AM,01/11/2016 04:37:00 AM,01/11/2016 04:41:31 AM,01/11/2016 04:50:57 AM,01/11/2016 04:56:33 AM,Code 2 Transport,01/11/2016 05:28:13 AM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160110393-55 +111550375,91,11051394,Medical Incident,06/04/2011,06/04/2011,06/04/2011 10:08:44 PM,06/04/2011 10:11:31 PM,06/04/2011 10:11:40 PM,06/04/2011 10:12:18 PM,06/04/2011 10:18:00 PM,06/04/2011 10:24:03 PM,06/04/2011 10:56:50 PM,Code 2 Transport,06/04/2011 11:24:50 PM,200 Block of GRATTAN ST,SF,94117,B05,12,5161,E,E,3,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7638103010058, -122.451732067242)",111550375-91 +112730245,KM15,11090291,Medical Incident,09/30/2011,09/30/2011,09/30/2011 03:29:40 PM,09/30/2011 03:30:46 PM,09/30/2011 03:31:21 PM,09/30/2011 03:32:16 PM,09/30/2011 03:38:31 PM,09/30/2011 03:52:33 PM,09/30/2011 04:00:19 PM,Code 3 Transport,09/30/2011 04:27:15 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,2,2,false,,1,PRIVATE,2,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112730245-KM15 +130430099,T01,13014565,Traffic Collision,02/12/2013,02/12/2013,02/12/2013 09:43:57 AM,02/12/2013 09:46:41 AM,02/12/2013 09:47:19 AM,02/12/2013 09:49:00 AM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,02/12/2013 10:06:35 AM,FOLSOM ST/8TH ST,SF,94103,B02,29,2322,3,3,3,false,Potentially Life-Threatening,1,TRUCK,6,2,6,South of Market,"(37.7749917920342, -122.41006277143)",130430099-T01 +112330074,99,11076854,Medical Incident,08/21/2011,08/20/2011,08/21/2011 05:00:04 AM,08/21/2011 05:01:38 AM,08/21/2011 05:02:47 AM,08/21/2011 05:06:06 AM,04/25/2016 02:03:04 PM,08/21/2011 05:29:22 AM,08/21/2011 05:37:36 AM,Code 2 Transport,08/21/2011 06:02:42 AM,100 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,true,,1,MEDIC,3,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",112330074-99 +160012431,86,16000374,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:11:46 PM,01/01/2016 03:13:44 PM,01/01/2016 03:14:10 PM,01/01/2016 03:14:22 PM,01/01/2016 03:19:51 PM,01/01/2016 03:43:23 PM,01/01/2016 03:56:02 PM,Code 2 Transport,01/01/2016 04:24:57 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",160012431-86 +123530110,B09,12118039,Medical Incident,12/18/2012,12/18/2012,12/18/2012 09:40:37 AM,12/18/2012 09:41:11 AM,12/18/2012 09:41:26 AM,12/18/2012 10:04:55 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 10:08:45 AM,2200 Block of SAN JOSE AVE,SF,94112,B09,15,8322,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,9,11,Outer Mission,"(37.7212067336397, -122.446289443865)",123530110-B09 +160572842,56,16022859,Medical Incident,02/26/2016,02/26/2016,02/26/2016 05:52:59 PM,02/26/2016 05:53:31 PM,02/26/2016 05:59:10 PM,02/26/2016 05:59:43 PM,02/26/2016 06:04:56 PM,02/26/2016 06:25:17 PM,02/26/2016 06:39:18 PM,Code 2 Transport,02/26/2016 07:21:43 PM,0 Block of POST ST,San Francisco,94104,B01,13,1236,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7889013532379, -122.403161222429)",160572842-56 +160503068,AM20,16020215,Medical Incident,02/19/2016,02/19/2016,02/19/2016 06:43:11 PM,02/19/2016 06:43:11 PM,02/19/2016 06:45:28 PM,02/19/2016 06:46:16 PM,02/19/2016 07:11:10 PM,02/19/2016 07:27:03 PM,02/19/2016 07:48:47 PM,Code 2 Transport,02/19/2016 08:16:13 PM,BRYANT ST/RINCON ST,San Francisco,94107,B03,35,2135,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7842053064379, -122.392118767755)",160503068-AM20 +110420318,AM12,11014020,Medical Incident,02/11/2011,02/11/2011,02/11/2011 06:25:32 PM,02/11/2011 06:26:12 PM,02/11/2011 06:27:19 PM,02/11/2011 06:27:39 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 06:28:05 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,false,,1,PRIVATE,3,2,6,Mission,"(37.7726948236861, -122.422188261426)",110420318-AM12 +113100094,88,11102964,Medical Incident,11/06/2011,11/05/2011,11/06/2011 07:34:34 AM,11/06/2011 07:35:57 AM,11/06/2011 07:36:18 AM,11/06/2011 07:36:54 AM,11/06/2011 07:39:52 AM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,Other,04/25/2016 02:01:47 PM,2400 Block of FULTON ST,SF,94118,B07,21,4561,3,3,3,true,,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7744861396627, -122.457337524606)",113100094-88 +130130205,E19,13004444,Medical Incident,01/13/2013,01/13/2013,01/13/2013 12:34:16 PM,01/13/2013 12:35:53 PM,01/13/2013 12:36:44 PM,01/13/2013 12:37:48 PM,01/13/2013 12:40:23 PM,04/25/2016 01:54:49 PM,04/25/2016 01:54:49 PM,Other,01/13/2013 12:55:12 PM,0 Block of DENSLOWE DR,SF,94132,B08,19,8726,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7235639281803, -122.47418852958)",130130205-E19 +160490842,AM08,16019653,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:58:16 AM,02/18/2016 09:00:19 AM,02/18/2016 09:01:28 AM,02/18/2016 09:02:11 AM,02/18/2016 09:10:47 AM,02/18/2016 09:21:28 AM,02/18/2016 09:52:03 AM,Code 2 Transport,02/18/2016 10:29:03 AM,1200 Block of NORTHPOINT DR,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",160490842-AM08 +132790445,E44,13095125,Medical Incident,10/06/2013,10/06/2013,10/06/2013 10:36:29 PM,10/06/2013 10:37:35 PM,10/06/2013 10:38:03 PM,10/06/2013 10:39:32 PM,10/06/2013 10:44:20 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/06/2013 10:51:12 PM,300 Block of BOWDOIN ST,SF,94134,B09,42,6367,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,9,Portola,"(37.7304539029728, -122.412804596546)",132790445-E44 +110520105,E33,11017162,Traffic Collision,02/21/2011,02/21/2011,02/21/2011 10:08:06 AM,02/21/2011 10:08:06 AM,02/21/2011 10:10:08 AM,02/21/2011 10:10:56 AM,02/21/2011 10:12:22 AM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 10:25:58 AM,FONT BL/CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7150113911845, -122.472990955765)",110520105-E33 +160320190,AM22,16012414,Medical Incident,02/01/2016,01/31/2016,02/01/2016 01:43:27 AM,02/01/2016 01:44:02 AM,02/01/2016 01:44:26 AM,02/01/2016 01:44:59 AM,02/01/2016 01:46:28 AM,02/01/2016 02:06:10 AM,02/01/2016 02:16:49 AM,Code 2 Transport,02/01/2016 02:47:11 AM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160320190-AM22 +160411451,89,16016418,Medical Incident,02/10/2016,02/10/2016,02/10/2016 11:23:06 AM,02/10/2016 11:23:06 AM,02/10/2016 11:23:38 AM,02/10/2016 11:25:53 AM,02/10/2016 11:28:03 AM,02/10/2016 11:46:23 AM,02/10/2016 12:03:54 PM,Code 2 Transport,02/10/2016 12:55:35 PM,6TH ST/TEHAMA ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7793146738209, -122.406628200775)",160411451-89 +103430081,E17,10109764,Medical Incident,12/09/2010,12/08/2010,12/09/2010 07:16:00 AM,12/09/2010 07:17:30 AM,12/09/2010 07:17:57 AM,12/09/2010 07:19:34 AM,12/09/2010 07:21:25 AM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/09/2010 07:35:56 AM,0 Block of ROSIE LEE LN,SF,94124,B10,17,6643,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.732100392944, -122.380819683606)",103430081-E17 +131780368,92,13060596,Medical Incident,06/27/2013,06/27/2013,06/27/2013 09:06:27 PM,06/27/2013 09:08:48 PM,06/27/2013 09:09:22 PM,06/27/2013 09:09:55 PM,04/25/2016 01:52:04 PM,06/27/2013 09:30:03 PM,06/27/2013 09:41:44 PM,Code 2 Transport,06/27/2013 10:26:58 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",131780368-92 +160592835,52,16023653,Medical Incident,02/28/2016,02/28/2016,02/28/2016 07:20:00 PM,02/28/2016 07:20:40 PM,02/28/2016 07:21:12 PM,02/28/2016 07:21:37 PM,02/28/2016 07:26:22 PM,02/28/2016 07:46:42 PM,02/28/2016 08:00:17 PM,Code 3 Transport,02/28/2016 08:48:24 PM,0 Block of HARRIET ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786617943902, -122.406969944087)",160592835-52 +140940177,66,14031590,Medical Incident,04/04/2014,04/04/2014,04/04/2014 12:44:14 PM,04/04/2014 12:44:40 PM,04/04/2014 12:45:25 PM,04/04/2014 12:45:39 PM,04/04/2014 12:49:19 PM,04/04/2014 01:16:28 PM,04/04/2014 01:21:02 PM,Code 2 Transport,04/04/2014 01:49:53 PM,1400 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3223,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",140940177-66 +160853663,52,16033964,Medical Incident,03/25/2016,03/25/2016,03/25/2016 09:00:55 PM,03/25/2016 09:02:58 PM,03/25/2016 09:05:44 PM,03/25/2016 09:05:57 PM,03/25/2016 09:24:17 PM,03/25/2016 09:30:58 PM,03/25/2016 10:02:03 PM,Code 2 Transport,03/25/2016 10:30:49 PM,200 Block of BEACH ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8076407484143, -122.413163175978)",160853663-52 +160321430,61,16012551,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:50:17 AM,02/01/2016 11:50:39 AM,02/01/2016 11:52:03 AM,02/01/2016 11:52:14 AM,02/01/2016 11:59:55 AM,02/01/2016 12:14:25 PM,02/01/2016 12:42:25 PM,Code 2 Transport,02/01/2016 01:00:23 PM,2100 Block of 21ST AVE,San Francisco,94116,B08,40,7433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7476211083783, -122.478090222642)",160321430-61 +123090124,KM10,12102695,Medical Incident,11/04/2012,11/03/2012,11/04/2012 07:26:13 AM,11/04/2012 07:27:46 AM,11/04/2012 07:28:17 AM,04/25/2016 01:55:57 PM,11/04/2012 07:31:37 AM,11/04/2012 07:55:39 AM,11/04/2012 07:58:50 AM,Code 2 Transport,11/04/2012 08:40:17 AM,2200 Block of PACIFIC AVE,SF,94115,B04,38,3441,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7937165642364, -122.432279480256)",123090124-KM10 +160711475,AM02,16028210,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:56:58 AM,03/11/2016 11:58:52 AM,03/11/2016 11:59:57 AM,03/11/2016 12:00:35 PM,03/11/2016 12:06:40 PM,03/11/2016 12:24:08 PM,03/11/2016 12:30:07 PM,Code 2 Transport,03/11/2016 01:29:50 PM,WEBSTER ST/JACKSON ST,San Francisco,94115,B04,38,3465,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7926799136599, -122.432917576713)",160711475-AM02 +122710297,RC2,12089540,Medical Incident,09/27/2012,09/27/2012,09/27/2012 08:42:42 PM,09/27/2012 08:42:45 PM,09/27/2012 08:43:33 PM,04/25/2016 01:56:34 PM,09/27/2012 08:53:13 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/27/2012 09:12:36 PM,400 Block of 42ND AVE,SF,94121,B07,34,7265,3,1,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7803900796193, -122.503098446489)",122710297-RC2 +140380266,E31,14012894,Medical Incident,02/07/2014,02/07/2014,02/07/2014 03:57:52 PM,02/07/2014 04:00:06 PM,02/07/2014 04:00:36 PM,02/07/2014 04:02:10 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 04:07:12 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,ENGINE,2,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",140380266-E31 +130360079,E18,13012286,Medical Incident,02/05/2013,02/05/2013,02/05/2013 08:41:36 AM,02/05/2013 08:42:03 AM,02/05/2013 08:42:51 AM,02/05/2013 08:44:00 AM,02/05/2013 08:47:10 AM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/05/2013 09:04:23 AM,2300 Block of 33RD AVE,SF,94116,B08,18,7546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7433206398772, -122.490826168304)",130360079-E18 +131310182,T11,13044225,Structure Fire,05/11/2013,05/11/2013,05/11/2013 11:38:38 AM,05/11/2013 11:40:27 AM,05/11/2013 11:41:04 AM,05/11/2013 11:43:14 AM,05/11/2013 11:45:49 AM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 12:07:11 PM,1000 Block of DOLORES ST,SF,94114,B06,11,5513,3,3,3,false,Alarm,1,TRUCK,4,6,8,Noe Valley,"(37.7526291900462, -122.425380466691)",131310182-T11 +130540334,55,13018386,Medical Incident,02/23/2013,02/23/2013,02/23/2013 09:33:05 PM,02/23/2013 09:35:06 PM,02/23/2013 09:35:20 PM,02/23/2013 09:36:32 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 09:41:41 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",130540334-55 +130910101,E09,13030372,Other,04/01/2013,04/01/2013,04/01/2013 09:11:17 AM,04/01/2013 09:12:02 AM,04/01/2013 09:12:16 AM,04/01/2013 09:13:20 AM,04/01/2013 09:15:56 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 09:30:20 AM,EVANS AV/CESAR CHAVEZ ST,SF,94124,B10,9,6422,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7496846238091, -122.397285418019)",130910101-E09 +120440286,E36,12014791,Medical Incident,02/13/2012,02/13/2012,02/13/2012 08:12:49 PM,02/13/2012 08:13:46 PM,02/13/2012 08:14:12 PM,02/13/2012 08:15:44 PM,02/13/2012 08:18:37 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 08:24:50 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",120440286-E36 +110130153,E01,11004286,Medical Incident,01/13/2011,01/13/2011,01/13/2011 11:08:04 AM,01/13/2011 11:09:04 AM,01/13/2011 11:09:19 AM,01/13/2011 11:10:28 AM,01/13/2011 11:13:27 AM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Other,01/13/2011 11:23:54 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",110130153-E01 +131810362,66,13061726,Medical Incident,06/30/2013,06/30/2013,06/30/2013 06:19:23 PM,06/30/2013 06:20:27 PM,06/30/2013 06:21:48 PM,06/30/2013 06:24:14 PM,06/30/2013 06:25:37 PM,06/30/2013 06:34:28 PM,06/30/2013 06:57:40 PM,Code 2 Transport,06/30/2013 07:09:27 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7643732096664, -122.417478491468)",131810362-66 +112040233,91,11067431,Medical Incident,07/23/2011,07/23/2011,07/23/2011 03:22:44 PM,07/23/2011 03:23:35 PM,07/23/2011 03:23:44 PM,07/23/2011 03:24:45 PM,07/23/2011 03:31:42 PM,07/23/2011 03:56:47 PM,07/23/2011 04:21:24 PM,Code 2 Transport,07/23/2011 04:53:55 PM,100 Block of JULIAN AVE,SF,94103,B02,6,5226,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7657922226195, -122.420909958943)",112040233-91 +160020032,65,16000560,Medical Incident,01/02/2016,01/01/2016,01/02/2016 12:14:34 AM,01/02/2016 12:15:54 AM,01/02/2016 12:16:50 AM,01/02/2016 12:16:54 AM,01/02/2016 12:24:21 AM,01/02/2016 12:34:38 AM,01/02/2016 12:47:38 AM,Code 2 Transport,01/02/2016 01:15:03 AM,0 Block of 10TH ST,San Francisco,94103,B02,36,2338,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7762695066166, -122.41725760507)",160020032-65 +160542629,KM03,16021681,Medical Incident,02/23/2016,02/23/2016,02/23/2016 04:22:10 PM,02/23/2016 04:23:00 PM,02/23/2016 04:23:47 PM,02/23/2016 04:24:31 PM,02/23/2016 04:38:17 PM,02/23/2016 05:00:34 PM,02/23/2016 05:37:21 PM,Code 2 Transport,02/23/2016 06:08:54 PM,1400 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.770198458048, -122.389578265491)",160542629-KM03 +160341105,57,16013317,Medical Incident,02/03/2016,02/03/2016,02/03/2016 10:14:19 AM,02/03/2016 10:16:36 AM,02/03/2016 10:17:07 AM,02/03/2016 10:17:44 AM,02/03/2016 10:27:35 AM,02/03/2016 10:40:44 AM,02/03/2016 11:00:06 AM,Code 2 Transport,02/03/2016 12:00:24 PM,1300 Block of SHAFTER AVE,San Francisco,94124,B10,17,6653,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7284340200521, -122.386011314511)",160341105-57 +160061728,62,16002396,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:44:22 PM,01/06/2016 12:45:51 PM,01/06/2016 12:46:33 PM,01/06/2016 12:46:47 PM,01/06/2016 12:51:32 PM,01/06/2016 01:07:01 PM,01/06/2016 01:39:38 PM,Code 2 Transport,01/06/2016 02:20:34 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160061728-62 +103310251,79,10106021,Medical Incident,11/27/2010,11/27/2010,11/27/2010 06:15:38 PM,11/27/2010 06:17:12 PM,11/27/2010 06:17:24 PM,04/25/2016 02:07:24 PM,11/27/2010 06:21:56 PM,11/27/2010 06:51:14 PM,11/27/2010 07:03:41 PM,Code 2 Transport,11/27/2010 07:32:20 PM,200 Block of GEARY ST,SF,94102,B01,1,1323,3,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",103310251-79 +160343619,52,16013604,Medical Incident,02/03/2016,02/03/2016,02/03/2016 10:22:03 PM,02/03/2016 10:23:38 PM,02/03/2016 10:23:44 PM,02/03/2016 10:23:53 PM,02/03/2016 10:25:13 PM,02/03/2016 10:35:31 PM,02/03/2016 10:40:36 PM,Code 2 Transport,02/03/2016 11:21:35 PM,POLK ST/PINE ST,San Francisco,94109,B04,3,3122,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",160343619-52 +110260248,75,11008620,Medical Incident,01/26/2011,01/26/2011,01/26/2011 03:39:25 PM,01/26/2011 03:41:28 PM,01/26/2011 03:41:55 PM,01/26/2011 03:42:57 PM,01/26/2011 03:50:51 PM,01/26/2011 04:09:59 PM,01/26/2011 04:20:16 PM,Code 2 Transport,01/26/2011 05:50:05 PM,5200 Block of MISSION ST,SF,94112,B09,43,6176,3,3,3,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7150747131897, -122.442226397949)",110260248-75 +110390058,59,11012836,Medical Incident,02/08/2011,02/07/2011,02/08/2011 05:53:17 AM,02/08/2011 05:54:06 AM,02/08/2011 05:54:16 AM,02/08/2011 05:54:31 AM,04/25/2016 02:06:11 PM,02/08/2011 06:16:43 AM,02/08/2011 06:29:42 AM,Code 2 Transport,02/08/2011 06:45:12 AM,3300 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,2,2,true,,1,MEDIC,2,6,9,Mission,"(37.7482858766932, -122.417044258324)",110390058-59 +160613743,53,16024509,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:23:38 PM,03/01/2016 11:23:38 PM,03/01/2016 11:24:34 PM,03/01/2016 11:24:44 PM,03/01/2016 11:25:44 PM,03/01/2016 11:42:42 PM,03/02/2016 12:06:15 AM,Code 2 Transport,03/02/2016 12:40:36 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160613743-53 +131950238,E19,13066283,Medical Incident,07/14/2013,07/14/2013,07/14/2013 04:04:19 PM,07/14/2013 04:05:07 PM,07/14/2013 04:05:23 PM,07/14/2013 04:06:22 PM,07/14/2013 04:11:52 PM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Other,07/14/2013 04:25:31 PM,19TH AV/SLOAT BL,SF,94132,B08,19,7413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",131950238-E19 +123010199,88,12099805,Medical Incident,10/27/2012,10/27/2012,10/27/2012 02:15:41 PM,10/27/2012 02:17:10 PM,10/27/2012 02:17:25 PM,10/27/2012 02:18:16 PM,10/27/2012 02:29:04 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,No Merit,10/27/2012 02:29:42 PM,4000 Block of 18TH ST,SF,94114,B05,6,5417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7610427981277, -122.433353754785)",123010199-88 +122180249,92,12072369,Medical Incident,08/05/2012,08/05/2012,08/05/2012 04:06:11 PM,08/05/2012 04:06:40 PM,08/05/2012 04:07:17 PM,08/05/2012 04:07:34 PM,04/25/2016 01:57:22 PM,08/05/2012 04:30:41 PM,08/05/2012 04:55:03 PM,Code 2 Transport,08/05/2012 05:22:37 PM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",122180249-92 +132640004,E01,13089354,Medical Incident,09/21/2013,09/20/2013,09/21/2013 12:16:52 AM,09/21/2013 12:17:50 AM,09/21/2013 12:20:11 AM,09/21/2013 12:22:44 AM,09/21/2013 12:24:55 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Other,09/21/2013 12:36:08 AM,1100 Block of FOLSOM ST,SF,94103,B03,1,2313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7758744053821, -122.408847431908)",132640004-E01 +160813690,65,16032365,Medical Incident,03/21/2016,03/21/2016,03/21/2016 09:26:57 PM,03/21/2016 09:28:00 PM,03/21/2016 09:28:10 PM,03/21/2016 09:28:19 PM,03/21/2016 09:58:15 PM,03/21/2016 09:58:21 PM,03/21/2016 10:08:26 PM,Code 3 Transport,03/21/2016 10:52:11 PM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",160813690-65 +160222442,77,16008833,Medical Incident,01/22/2016,01/22/2016,01/22/2016 04:06:06 PM,01/22/2016 04:08:05 PM,01/22/2016 04:17:20 PM,01/22/2016 04:17:32 PM,01/22/2016 04:40:23 PM,01/22/2016 05:29:57 PM,01/22/2016 05:30:05 PM,Code 2 Transport,01/22/2016 06:20:48 PM,400 Block of LOMBARD ST,San Francisco,94133,B01,28,1264,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8032803607212, -122.408937098242)",160222442-77 +102590330,E29,10081938,Medical Incident,09/16/2010,09/16/2010,09/16/2010 06:28:47 PM,09/16/2010 06:29:32 PM,09/16/2010 06:30:24 PM,09/16/2010 06:32:46 PM,09/16/2010 06:34:30 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 06:42:41 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,true,,1,ENGINE,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",102590330-E29 +160663086,AM20,16026528,Medical Incident,03/06/2016,03/06/2016,03/06/2016 09:31:47 PM,03/06/2016 09:32:05 PM,03/06/2016 09:33:58 PM,03/06/2016 09:33:58 PM,03/06/2016 09:34:31 PM,03/06/2016 09:56:57 PM,03/06/2016 10:12:24 PM,Code 2 Transport,03/06/2016 11:01:45 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160663086-AM20 +121040016,63,12034320,Medical Incident,04/13/2012,04/12/2012,04/13/2012 02:08:54 AM,04/13/2012 02:09:21 AM,04/13/2012 02:09:44 AM,04/25/2016 01:59:12 PM,04/13/2012 02:12:59 AM,04/13/2012 02:37:57 AM,04/13/2012 02:58:41 AM,Code 2 Transport,04/13/2012 03:14:02 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121040016-63 +123650031,57,12121990,Medical Incident,12/30/2012,12/29/2012,12/30/2012 01:40:31 AM,12/30/2012 01:41:16 AM,12/30/2012 01:44:08 AM,12/30/2012 01:44:27 AM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/30/2012 01:46:37 AM,2500 Block of SAN JOSE AVE,SF,94112,B09,33,8325,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7175145654024, -122.449359068183)",123650031-57 +112620357,E05,11086600,Medical Incident,09/19/2011,09/19/2011,09/19/2011 07:09:11 PM,09/19/2011 07:10:06 PM,09/19/2011 07:10:51 PM,09/19/2011 07:11:53 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 07:13:02 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",112620357-E05 +132820057,88,13095849,Medical Incident,10/09/2013,10/08/2013,10/09/2013 07:39:18 AM,10/09/2013 07:40:32 AM,10/09/2013 07:41:07 AM,10/09/2013 07:41:21 AM,10/09/2013 07:48:03 AM,10/09/2013 08:06:34 AM,10/09/2013 08:35:14 AM,Code 2 Transport,10/09/2013 08:58:13 AM,3300 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Portola,"(37.7197749568073, -122.400653137346)",132820057-88 +160860630,AM02,16034085,Medical Incident,03/26/2016,03/25/2016,03/26/2016 06:21:35 AM,03/26/2016 06:22:21 AM,03/26/2016 06:23:49 AM,03/26/2016 06:24:53 AM,03/26/2016 06:31:05 AM,03/26/2016 06:41:04 AM,03/26/2016 07:02:27 AM,Code 2 Transport,03/26/2016 07:21:28 AM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",160860630-AM02 +160842613,AM16,16033449,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:39:55 PM,03/24/2016 03:42:10 PM,03/24/2016 03:42:51 PM,03/24/2016 03:43:16 PM,03/24/2016 03:50:38 PM,03/24/2016 04:00:03 PM,03/24/2016 04:20:57 PM,Code 2 Transport,03/24/2016 04:41:10 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160842613-AM16 +132920340,66,13099512,Medical Incident,10/19/2013,10/19/2013,10/19/2013 08:27:05 PM,10/19/2013 08:28:48 PM,10/19/2013 08:29:01 PM,10/19/2013 08:29:09 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/19/2013 08:35:31 PM,300 Block of BERRY ST,SF,94158,B03,8,2235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7731124835363, -122.39664007904)",132920340-66 +122660066,RS1,12087781,Structure Fire,09/22/2012,09/21/2012,09/22/2012 04:20:03 AM,09/22/2012 04:20:48 AM,09/22/2012 04:21:11 AM,09/22/2012 04:24:17 AM,09/22/2012 04:26:58 AM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 04:32:11 AM,500 Block of NELSON RISING LN,SF,94158,B03,8,2264,3,3,3,false,Fire,1,RESCUE SQUAD,5,3,6,Mission Bay,"(37.7696540760545, -122.390263313432)",122660066-RS1 +113220383,55,11107130,Medical Incident,11/18/2011,11/18/2011,11/18/2011 11:44:25 PM,11/18/2011 11:45:20 PM,11/18/2011 11:46:30 PM,11/18/2011 11:46:47 PM,11/18/2011 11:49:30 PM,11/19/2011 12:19:49 AM,11/19/2011 12:19:57 AM,Code 2 Transport,11/19/2011 12:24:47 AM,1300 Block of 4TH AVE,SF,94122,B05,12,7324,3,3,3,true,,1,MEDIC,1,5,5,Inner Sunset,"(37.7634528101504, -122.460831251397)",113220383-55 +110430080,E42,11014179,Vehicle Fire,02/12/2011,02/11/2011,02/12/2011 04:06:43 AM,02/12/2011 04:07:32 AM,02/12/2011 04:07:46 AM,02/12/2011 04:09:23 AM,02/12/2011 04:13:21 AM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 04:41:56 AM,100 Block of OLMSTEAD ST,SF,94134,B10,44,6325,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7223957274277, -122.403067855257)",110430080-E42 +112210187,T13,11073001,Alarms,08/09/2011,08/09/2011,08/09/2011 02:03:55 PM,08/09/2011 02:04:49 PM,08/09/2011 02:05:34 PM,04/25/2016 02:03:15 PM,08/09/2011 02:07:57 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 02:30:41 PM,200 Block of FRONT ST,SF,94111,B01,13,1141,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7936101605254, -122.398762705491)",112210187-T13 +123640256,94,12121869,Medical Incident,12/29/2012,12/29/2012,12/29/2012 06:12:28 PM,12/29/2012 06:13:32 PM,12/29/2012 06:13:44 PM,12/29/2012 06:14:07 PM,12/29/2012 06:16:14 PM,12/29/2012 06:36:32 PM,12/29/2012 06:50:53 PM,Code 2 Transport,12/29/2012 07:07:38 PM,HOWARD ST/6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7797389055689, -122.407159489165)",123640256-94 +160090579,75,16003544,Medical Incident,01/09/2016,01/08/2016,01/09/2016 06:17:16 AM,01/09/2016 06:21:52 AM,01/09/2016 06:22:23 AM,01/09/2016 06:22:43 AM,01/09/2016 06:31:59 AM,01/09/2016 06:36:20 AM,01/09/2016 06:48:42 AM,Code 2 Transport,01/09/2016 07:30:15 AM,3000 Block of SAN JOSE AVE,San Francisco,94112,B09,33,8371,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7098606715103, -122.457422352481)",160090579-75 +123570291,68,12119604,Medical Incident,12/22/2012,12/22/2012,12/22/2012 05:41:41 PM,12/22/2012 05:42:54 PM,12/22/2012 05:44:35 PM,12/22/2012 05:44:46 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 05:51:07 PM,SUTTER ST/FILLMORE ST,SF,94115,B04,38,3542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7860854281172, -122.43327157966)",123570291-68 +110540008,55,11017688,Medical Incident,02/23/2011,02/22/2011,02/23/2011 12:49:25 AM,02/23/2011 12:50:21 AM,02/23/2011 12:50:42 AM,02/23/2011 12:51:21 AM,02/23/2011 01:00:33 AM,02/23/2011 01:38:01 AM,02/23/2011 01:41:43 AM,Code 2 Transport,02/23/2011 02:01:43 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,2,2,true,,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",110540008-55 +121300198,KM11,12043269,Medical Incident,05/09/2012,05/09/2012,05/09/2012 02:01:29 PM,05/09/2012 02:03:32 PM,05/09/2012 02:04:23 PM,05/09/2012 02:05:12 PM,05/09/2012 02:08:38 PM,05/09/2012 02:23:08 PM,05/09/2012 02:48:12 PM,Code 2 Transport,05/09/2012 03:19:21 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",121300198-KM11 +160822506,76,16032639,Medical Incident,03/22/2016,03/22/2016,03/22/2016 03:54:18 PM,03/22/2016 03:54:46 PM,03/22/2016 03:54:55 PM,03/22/2016 03:55:01 PM,03/22/2016 04:22:35 PM,03/22/2016 04:22:36 PM,03/22/2016 04:32:31 PM,Code 2 Transport,03/22/2016 05:21:43 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160822506-76 +110520261,KM04,11017292,Medical Incident,02/21/2011,02/21/2011,02/21/2011 05:50:28 PM,02/21/2011 05:51:52 PM,02/21/2011 05:52:37 PM,02/21/2011 05:53:06 PM,02/21/2011 05:57:00 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,No Merit,02/21/2011 05:59:51 PM,200 Block of BEACH ST,SF,94133,B01,28,1344,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8076407484143, -122.413163175978)",110520261-KM04 +130830299,82,13027872,Traffic Collision,03/24/2013,03/24/2013,03/24/2013 09:09:53 PM,03/24/2013 09:09:54 PM,03/24/2013 09:10:15 PM,03/24/2013 09:10:27 PM,03/24/2013 09:12:22 PM,03/24/2013 09:34:08 PM,03/24/2013 09:57:28 PM,Code 2 Transport,03/24/2013 10:22:12 PM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7572324112144, -122.415626198524)",130830299-82 +140590092,54,14019817,Medical Incident,02/28/2014,02/28/2014,02/28/2014 08:28:18 AM,02/28/2014 08:29:42 AM,02/28/2014 08:30:09 AM,02/28/2014 08:30:33 AM,02/28/2014 08:36:27 AM,02/28/2014 08:59:35 AM,02/28/2014 09:08:21 AM,Code 2 Transport,02/28/2014 09:33:37 AM,800 Block of GRANT AVE,SF,94108,B01,13,1313,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7947123862364, -122.406321854883)",140590092-54 +122080166,65,12069146,Medical Incident,07/26/2012,07/26/2012,07/26/2012 01:42:12 PM,07/26/2012 01:43:37 PM,07/26/2012 01:44:16 PM,07/26/2012 01:44:30 PM,04/25/2016 01:57:32 PM,07/26/2012 02:09:40 PM,07/26/2012 02:27:24 PM,Code 2 Transport,07/26/2012 02:51:27 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122080166-65 +130670230,E02,13022364,Medical Incident,03/08/2013,03/08/2013,03/08/2013 02:07:17 PM,03/08/2013 02:08:34 PM,03/08/2013 02:08:45 PM,03/08/2013 02:10:40 PM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,Other,03/08/2013 02:10:56 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",130670230-E02 +131500022,B07,13050678,Structure Fire,05/30/2013,05/29/2013,05/30/2013 02:18:14 AM,05/30/2013 02:19:09 AM,05/30/2013 02:19:29 AM,05/30/2013 02:21:34 AM,05/30/2013 02:23:51 AM,04/25/2016 01:52:33 PM,04/25/2016 01:52:33 PM,Other,05/30/2013 02:44:05 AM,300 Block of 20TH AVE,SF,94121,B07,31,7164,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7812947288475, -122.479518403401)",131500022-B07 +121830119,68,12060913,Medical Incident,07/01/2012,07/01/2012,07/01/2012 10:23:33 AM,07/01/2012 10:24:22 AM,07/01/2012 10:24:46 AM,07/01/2012 10:24:53 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,04/25/2016 01:57:55 PM,0 Block of EXETER ST,SF,94124,B10,44,6323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7221852157054, -122.398743727923)",121830119-68 +160661476,KM12,16026383,Medical Incident,03/06/2016,03/06/2016,03/06/2016 12:46:40 PM,03/06/2016 12:49:59 PM,03/06/2016 12:50:12 PM,03/06/2016 12:50:58 PM,03/06/2016 12:55:19 PM,03/06/2016 01:32:25 PM,03/06/2016 01:39:06 PM,Code 2 Transport,03/06/2016 02:17:40 PM,800 Block of LINCOLN WAY,San Francisco,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,5,Inner Sunset,"(37.7657995781914, -122.466969885427)",160661476-KM12 +110050087,64,11001569,Medical Incident,01/05/2011,01/05/2011,01/05/2011 08:50:52 AM,01/05/2011 08:52:35 AM,01/05/2011 08:52:41 AM,01/05/2011 08:52:51 AM,01/05/2011 09:04:23 AM,01/05/2011 09:16:08 AM,01/05/2011 09:39:23 AM,Code 2 Transport,01/05/2011 10:17:07 AM,1200 Block of 15TH AVE,SF,94122,B08,22,7366,3,3,3,true,,1,MEDIC,4,7,5,Inner Sunset,"(37.7646936953691, -122.472925297334)",110050087-64 +121060160,E32,12035112,Other,04/15/2012,04/15/2012,04/15/2012 12:22:20 PM,04/15/2012 12:22:53 PM,04/15/2012 12:23:06 PM,04/15/2012 12:24:21 PM,04/15/2012 12:28:23 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Fire,04/15/2012 12:36:26 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",121060160-E32 +121030377,B06,12034284,Alarms,04/12/2012,04/12/2012,04/12/2012 10:23:24 PM,04/12/2012 10:24:04 PM,04/12/2012 10:26:05 PM,04/12/2012 10:27:40 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Fire,04/12/2012 10:31:08 PM,2000 Block of MCKINNON AVE,SF,94124,B10,9,6425,3,3,3,false,Alarm,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.7406547375245, -122.397601427995)",121030377-B06 +160400440,88,16015894,Medical Incident,02/09/2016,02/08/2016,02/09/2016 06:07:30 AM,02/09/2016 06:07:51 AM,02/09/2016 06:08:07 AM,02/09/2016 06:08:31 AM,02/09/2016 06:12:27 AM,02/09/2016 06:28:51 AM,02/09/2016 06:37:02 AM,Code 2 Transport,02/09/2016 07:10:35 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160400440-88 +111920276,E10,11063452,Structure Fire,07/11/2011,07/11/2011,07/11/2011 04:28:39 PM,07/11/2011 04:28:40 PM,07/11/2011 04:29:57 PM,07/11/2011 04:31:03 PM,07/11/2011 04:32:18 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Fire,07/11/2011 04:33:06 PM,PRESIDIO AV/SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7881864604507, -122.446974166005)",111920276-E10 +160472272,AM02,16018977,Medical Incident,02/16/2016,02/16/2016,02/16/2016 02:59:28 PM,02/16/2016 03:00:22 PM,02/16/2016 03:01:16 PM,02/16/2016 03:02:03 PM,02/16/2016 03:21:42 PM,02/16/2016 03:21:46 PM,02/16/2016 03:37:25 PM,Code 2 Transport,02/16/2016 04:02:55 PM,600 Block of FILBERT ST,San Francisco,94133,B01,28,1351,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8013244963183, -122.410204322135)",160472272-AM02 +103060013,E32,10097757,Outside Fire,11/02/2010,11/01/2010,11/02/2010 12:15:13 AM,11/02/2010 12:15:57 AM,11/02/2010 12:20:29 AM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Fire,11/02/2010 12:32:25 AM,3RD ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",103060013-E32 +160010607,70,16000124,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:16:36 AM,01/01/2016 02:19:23 AM,01/01/2016 02:38:40 AM,01/01/2016 02:38:49 AM,01/01/2016 02:44:51 AM,01/01/2016 02:58:03 AM,01/01/2016 03:07:42 AM,Code 2 Transport,01/01/2016 03:35:47 AM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160010607-70 +123030100,KM04,12100435,Medical Incident,10/29/2012,10/28/2012,10/29/2012 01:35:17 AM,10/29/2012 01:36:38 AM,10/29/2012 01:40:55 AM,10/29/2012 01:41:40 AM,10/29/2012 01:48:51 AM,10/29/2012 02:06:19 AM,10/29/2012 02:11:53 AM,Code 2 Transport,10/29/2012 03:04:06 AM,400 Block of LARKIN ST,SF,94102,B02,3,1644,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",123030100-KM04 +160482330,79,16019387,Medical Incident,02/17/2016,02/17/2016,02/17/2016 02:44:58 PM,02/17/2016 02:45:04 PM,02/17/2016 02:47:37 PM,02/17/2016 02:47:37 PM,02/17/2016 02:51:27 PM,02/17/2016 03:08:03 PM,02/17/2016 03:22:28 PM,Code 2 Transport,02/17/2016 03:51:27 PM,1800 Block of GREEN ST,San Francisco,94123,B04,16,3354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.7969417340573, -122.429558903607)",160482330-79 +111440215,E03,11047881,Alarms,05/24/2011,05/24/2011,05/24/2011 03:07:42 PM,05/24/2011 03:08:27 PM,05/24/2011 03:08:34 PM,05/24/2011 03:09:47 PM,05/24/2011 03:10:40 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/24/2011 03:14:21 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",111440215-E03 +131530054,E21,13051723,Medical Incident,06/02/2013,06/01/2013,06/02/2013 04:24:05 AM,06/02/2013 04:24:37 AM,06/02/2013 04:25:35 AM,06/02/2013 04:26:42 AM,06/02/2013 04:28:10 AM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/02/2013 04:33:43 AM,400 Block of CENTRAL AVE,SF,94117,B05,21,4356,3,1,2,false,Non Life-threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7736894298686, -122.444242063533)",131530054-E21 +132150150,72,13072575,Medical Incident,08/03/2013,08/03/2013,08/03/2013 10:50:49 AM,08/03/2013 10:52:19 AM,08/03/2013 10:53:02 AM,08/03/2013 10:53:12 AM,08/03/2013 10:56:17 AM,08/03/2013 11:13:14 AM,08/03/2013 11:27:17 AM,Code 2 Transport,08/03/2013 11:50:44 AM,200 Block of DIVISADERO ST,SF,94117,B05,21,4144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7717213027751, -122.437252069809)",132150150-72 +112400369,E43,11079367,Alarms,08/28/2011,08/28/2011,08/28/2011 11:49:19 PM,08/28/2011 11:50:46 PM,08/28/2011 11:51:08 PM,08/28/2011 11:52:32 PM,08/28/2011 11:55:15 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/29/2011 12:51:31 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,3,3,false,,1,ENGINE,1,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",112400369-E43 +122630282,E15,12086949,Medical Incident,09/19/2012,09/19/2012,09/19/2012 06:25:51 PM,09/19/2012 06:27:20 PM,09/19/2012 06:29:14 PM,09/19/2012 06:30:44 PM,09/19/2012 06:41:00 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/19/2012 06:55:56 PM,MISSION ST/LAWRENCE AV,SF,94112,B09,33,6212,1,1,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7094127425805, -122.450883665039)",122630282-E15 +140170355,B02,14005976,Structure Fire,01/17/2014,01/17/2014,01/17/2014 09:28:46 PM,01/17/2014 09:29:54 PM,01/17/2014 09:30:27 PM,01/17/2014 09:31:11 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 09:35:22 PM,500 Block of SHOTWELL ST,SF,94110,B06,7,5433,3,3,3,false,Alarm,1,CHIEF,9,6,9,Mission,"(37.7596276927046, -122.415923018403)",140170355-B02 +140710129,77,14023920,Medical Incident,03/12/2014,03/12/2014,03/12/2014 09:53:57 AM,03/12/2014 09:54:17 AM,03/12/2014 09:55:44 AM,03/12/2014 09:55:56 AM,03/12/2014 10:04:14 AM,03/12/2014 10:10:03 AM,03/12/2014 10:45:19 AM,Code 2 Transport,03/12/2014 10:57:53 AM,400 Block of TURK ST,SAN FRANCISCO,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",140710129-77 +160661557,74,16026389,Medical Incident,03/06/2016,03/06/2016,03/06/2016 01:16:29 PM,03/06/2016 01:16:29 PM,03/06/2016 01:17:13 PM,03/06/2016 01:17:35 PM,03/06/2016 01:21:39 PM,03/06/2016 01:32:13 PM,03/06/2016 02:02:40 PM,Code 2 Transport,03/06/2016 02:40:42 PM,900 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7897784507453, -122.415533858364)",160661557-74 +160793223,85,16031520,Medical Incident,03/19/2016,03/19/2016,03/19/2016 06:29:38 PM,03/19/2016 06:30:15 PM,03/19/2016 06:30:25 PM,03/19/2016 06:30:48 PM,03/19/2016 06:36:39 PM,03/19/2016 06:59:12 PM,03/19/2016 07:03:42 PM,Code 2 Transport,03/19/2016 07:32:26 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160793223-85 +121870307,83,12062398,Medical Incident,07/05/2012,07/05/2012,07/05/2012 05:29:27 PM,07/05/2012 05:30:24 PM,07/05/2012 05:32:18 PM,07/05/2012 05:32:38 PM,07/05/2012 05:43:37 PM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,No Merit,07/05/2012 05:45:25 PM,3400 Block of 16TH ST,SF,94114,B02,6,5234,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7643418581632, -122.430494795393)",121870307-83 +160662259,53,16026447,Medical Incident,03/06/2016,03/06/2016,03/06/2016 04:30:10 PM,03/06/2016 04:30:41 PM,03/06/2016 04:31:21 PM,03/06/2016 04:31:35 PM,03/06/2016 04:42:47 PM,03/06/2016 04:58:31 PM,03/06/2016 05:18:57 PM,Code 2 Transport,03/06/2016 06:16:09 PM,800 Block of GENEVA AVE,San Francisco,94112,B09,43,6175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7168169212828, -122.441408157149)",160662259-53 +120830084,E06,12027489,Medical Incident,03/23/2012,03/23/2012,03/23/2012 09:16:53 AM,03/23/2012 09:17:11 AM,03/23/2012 09:18:07 AM,03/23/2012 09:18:50 AM,03/23/2012 09:22:19 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 09:32:02 AM,CASTRO ST/19TH ST,SF,94114,B06,6,5437,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7592891718036, -122.434853683247)",120830084-E06 +132500450,93,13084625,Medical Incident,09/07/2013,09/07/2013,09/07/2013 10:26:00 PM,09/07/2013 10:28:04 PM,09/07/2013 10:28:39 PM,09/07/2013 10:28:56 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,04/25/2016 01:50:54 PM,400 Block of 10TH AVE,SF,94118,B07,31,7135,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7798565842319, -122.468564165185)",132500450-93 +111720287,E07,11056819,Medical Incident,06/21/2011,06/21/2011,06/21/2011 04:51:55 PM,06/21/2011 04:52:07 PM,06/21/2011 04:52:36 PM,06/21/2011 04:53:43 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/21/2011 04:56:26 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",111720287-E07 +132920169,T19,13099358,Alarms,10/19/2013,10/19/2013,10/19/2013 12:54:22 PM,10/19/2013 12:55:51 PM,10/19/2013 12:56:01 PM,10/19/2013 01:01:56 PM,10/19/2013 01:04:01 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 01:47:57 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",132920169-T19 +122800440,D2,12092820,Structure Fire,10/06/2012,10/06/2012,10/06/2012 10:51:32 PM,10/06/2012 10:52:39 PM,10/06/2012 10:52:47 PM,10/06/2012 10:53:44 PM,10/06/2012 10:57:35 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/06/2012 11:00:51 PM,1700 Block of ANZA ST,SF,94118,B07,31,7131,3,3,3,false,Alarm,1,CHIEF,4,7,1,Inner Richmond,"(37.7790247032693, -122.466824984734)",122800440-D2 +112920301,T01,11096983,Structure Fire,10/19/2011,10/19/2011,10/19/2011 06:39:13 PM,10/19/2011 06:39:14 PM,10/19/2011 06:39:20 PM,10/19/2011 06:41:57 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/19/2011 06:43:48 PM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",112920301-T01 +160360140,AM24,16014069,Medical Incident,02/05/2016,02/04/2016,02/05/2016 12:56:38 AM,02/05/2016 12:58:21 AM,02/05/2016 12:59:29 AM,02/05/2016 01:00:29 AM,02/05/2016 01:13:36 AM,02/05/2016 01:23:13 AM,02/05/2016 01:36:31 AM,Code 2 Transport,02/05/2016 02:04:17 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160360140-AM24 +160482773,85,16019425,Medical Incident,02/17/2016,02/17/2016,02/17/2016 04:40:23 PM,02/17/2016 04:40:23 PM,02/17/2016 04:40:59 PM,02/17/2016 04:42:18 PM,02/17/2016 04:44:51 PM,02/17/2016 04:51:05 PM,02/17/2016 05:00:36 PM,Code 2 Transport,02/17/2016 05:32:32 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160482773-85 +122670283,81,12088309,Medical Incident,09/23/2012,09/23/2012,09/23/2012 06:37:15 PM,09/23/2012 06:38:55 PM,09/23/2012 06:41:38 PM,09/23/2012 06:41:46 PM,09/23/2012 07:05:52 PM,09/23/2012 07:17:57 PM,09/23/2012 07:31:36 PM,Code 2 Transport,09/23/2012 07:47:06 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",122670283-81 +121860218,AM20,12061991,Medical Incident,07/04/2012,07/04/2012,07/04/2012 04:31:12 PM,07/04/2012 04:31:12 PM,07/04/2012 04:31:12 PM,07/04/2012 04:33:44 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 04:37:49 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",121860218-AM20 +130790346,RC1,13026542,Medical Incident,03/20/2013,03/20/2013,03/20/2013 09:05:19 PM,03/20/2013 09:06:30 PM,03/20/2013 09:06:42 PM,03/20/2013 09:07:26 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 09:14:41 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",130790346-RC1 +161012945,64,16040297,Medical Incident,04/10/2016,04/10/2016,04/10/2016 07:07:32 PM,04/10/2016 07:09:03 PM,04/10/2016 07:09:19 PM,04/10/2016 07:09:38 PM,04/10/2016 07:20:09 PM,04/10/2016 07:33:24 PM,04/10/2016 07:45:00 PM,Code 2 Transport,04/10/2016 08:13:25 PM,2700 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Portola,"(37.7270507466082, -122.403281820851)",161012945-64 +130370281,E10,13012780,Traffic Collision,02/06/2013,02/06/2013,02/06/2013 06:22:55 PM,02/06/2013 06:23:38 PM,02/06/2013 06:24:12 PM,02/06/2013 06:26:03 PM,02/06/2013 06:27:55 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 06:38:55 PM,GEARY BL/ARGUELLO BL,SF,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",130370281-E10 +160881047,KM05,16034880,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:30:34 AM,03/28/2016 09:31:35 AM,03/28/2016 09:32:05 AM,03/28/2016 09:32:05 AM,03/28/2016 09:52:36 AM,03/28/2016 09:59:54 AM,03/28/2016 10:16:17 AM,Code 2 Transport,03/28/2016 10:45:24 AM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160881047-KM05 +103070201,RS1,10098252,Medical Incident,11/03/2010,11/03/2010,11/03/2010 11:47:26 AM,11/03/2010 11:47:26 AM,11/03/2010 11:47:26 AM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Other,04/25/2016 02:07:46 PM,MARKET ST/4TH ST,SF,94103,B03,1,1322,3,3,3,false,,1,RESCUE SQUAD,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",103070201-RS1 +131820113,E44,13061943,Medical Incident,07/01/2013,07/01/2013,07/01/2013 09:24:32 AM,07/01/2013 09:25:27 AM,07/01/2013 09:26:03 AM,07/01/2013 09:26:22 AM,07/01/2013 09:30:38 AM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,07/01/2013 09:50:07 AM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",131820113-E44 +111860310,E20,11061570,Medical Incident,07/05/2011,07/05/2011,07/05/2011 05:04:17 PM,07/05/2011 05:05:40 PM,07/05/2011 05:06:27 PM,07/05/2011 05:07:27 PM,07/05/2011 05:10:17 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 05:26:19 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",111860310-E20 +102290081,55,10071982,Medical Incident,08/17/2010,08/17/2010,08/17/2010 08:54:06 AM,08/17/2010 08:55:45 AM,08/17/2010 08:56:03 AM,08/17/2010 08:56:20 AM,08/17/2010 09:04:37 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Patient Declined Transport,08/17/2010 09:31:32 AM,100 Block of GRATTAN ST,SF,94117,B05,12,516,2,2,2,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7638803864645, -122.450310275747)",102290081-55 +123420483,E36,12114409,Medical Incident,12/07/2012,12/07/2012,12/07/2012 09:36:06 PM,12/07/2012 09:36:50 PM,12/07/2012 09:37:06 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/07/2012 09:50:07 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",123420483-E36 +120320069,E01,12010484,Medical Incident,02/01/2012,02/01/2012,02/01/2012 08:29:48 AM,02/01/2012 08:30:38 AM,02/01/2012 08:30:51 AM,02/01/2012 08:32:26 AM,02/01/2012 08:39:42 AM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 08:48:21 AM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",120320069-E01 +121790194,85,12059617,Structure Fire,06/27/2012,06/27/2012,06/27/2012 12:50:22 PM,06/27/2012 12:51:17 PM,06/27/2012 12:51:39 PM,04/25/2016 01:57:59 PM,06/27/2012 12:55:31 PM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/27/2012 12:57:55 PM,100 Block of MARINA BLVD,SF,94123,B04,16,3452,3,3,3,true,Fire,1,MEDIC,2,4,2,Marina,"(37.8055133588924, -122.434812260931)",121790194-85 +132530345,D2,13085623,Structure Fire,09/10/2013,09/10/2013,09/10/2013 09:38:42 PM,09/10/2013 09:40:50 PM,09/10/2013 09:40:56 PM,09/10/2013 09:42:20 PM,09/10/2013 09:44:03 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 09:55:27 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,CHIEF,5,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",132530345-D2 +160670960,79,16026677,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:23:09 AM,03/07/2016 10:23:24 AM,03/07/2016 10:23:42 AM,03/07/2016 10:24:21 AM,03/07/2016 10:27:47 AM,03/07/2016 10:47:32 AM,03/07/2016 10:47:32 AM,Code 2 Transport,03/07/2016 11:21:04 AM,100 Block of SUTTER ST,San Francisco,94104,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7898368259498, -122.403344544792)",160670960-79 +160322930,55,16012700,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:27:46 PM,02/01/2016 06:28:19 PM,02/01/2016 06:28:36 PM,02/01/2016 06:29:02 PM,02/01/2016 06:39:39 PM,02/01/2016 06:59:08 PM,02/01/2016 06:59:09 PM,Code 2 Transport,02/01/2016 08:24:22 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160322930-55 +131160235,E01,13039128,Medical Incident,04/26/2013,04/26/2013,04/26/2013 06:51:46 PM,04/26/2013 06:53:08 PM,04/26/2013 06:53:22 PM,04/26/2013 06:55:13 PM,04/26/2013 06:56:33 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 07:00:52 PM,HARRISON ST/5TH ST,SF,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",131160235-E01 +123290006,66,12109260,Medical Incident,11/24/2012,11/23/2012,11/24/2012 12:33:36 AM,11/24/2012 12:36:44 AM,11/24/2012 12:37:09 AM,11/24/2012 12:37:40 AM,04/25/2016 01:55:39 PM,11/24/2012 12:58:45 AM,11/24/2012 01:12:44 AM,Code 2 Transport,11/24/2012 01:54:45 AM,BUSH ST/POLK ST,SF,94109,B04,3,1636,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",123290006-66 +160134045,65,16005380,Medical Incident,01/13/2016,01/13/2016,01/13/2016 10:07:01 PM,01/13/2016 10:08:42 PM,01/13/2016 10:12:21 PM,01/13/2016 10:12:28 PM,01/13/2016 10:25:01 PM,01/13/2016 10:42:28 PM,01/13/2016 10:58:43 PM,Code 2 Transport,01/13/2016 11:16:09 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160134045-65 +131370254,E44,13046327,Traffic Collision,05/17/2013,05/17/2013,05/17/2013 03:49:00 PM,05/17/2013 03:50:00 PM,05/17/2013 03:50:31 PM,05/17/2013 03:51:04 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/17/2013 04:07:41 PM,100 Block of ALEMANY BLVD,SF,94110,B10,42,6361,2,2,2,true,Non Life-threatening,1,ENGINE,3,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",131370254-E44 +123130091,55,12104068,Medical Incident,11/08/2012,11/08/2012,11/08/2012 08:36:20 AM,11/08/2012 08:38:27 AM,11/08/2012 08:39:05 AM,11/08/2012 08:39:36 AM,04/25/2016 01:55:54 PM,11/08/2012 08:51:16 AM,11/08/2012 09:32:55 AM,Code 3 Transport,11/08/2012 10:03:59 AM,1000 Block of WISCONSIN ST,SF,94107,B10,37,257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",123130091-55 +160563332,88,16022521,Medical Incident,02/25/2016,02/25/2016,02/25/2016 06:57:36 PM,02/25/2016 06:59:28 PM,02/25/2016 06:59:50 PM,02/25/2016 06:59:58 PM,02/25/2016 07:23:47 PM,02/25/2016 07:40:56 PM,02/25/2016 08:38:43 PM,Code 2 Transport,02/25/2016 08:52:27 PM,200 Block of LEE AVE,San Francisco,94112,B09,15,8472,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7226544394721, -122.454042001381)",160563332-88 +123450301,E11,12115419,Administrative,12/10/2012,12/10/2012,12/10/2012 03:35:42 PM,12/10/2012 03:35:48 PM,12/10/2012 03:35:59 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Fire,12/10/2012 03:36:26 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",123450301-E11 +131950305,T13,13066343,Fuel Spill,07/14/2013,07/14/2013,07/14/2013 08:31:46 PM,07/14/2013 08:33:40 PM,07/14/2013 08:34:37 PM,07/14/2013 08:36:40 PM,07/14/2013 08:41:40 PM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Fire,07/14/2013 08:57:45 PM,0 Block of FRANCISCO ST,SF,94133,B01,28,1223,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8056494557581, -122.406167794377)",131950305-T13 +110910047,94,11030032,Medical Incident,04/01/2011,03/31/2011,04/01/2011 03:09:31 AM,04/01/2011 03:10:32 AM,04/01/2011 03:11:01 AM,04/01/2011 03:11:15 AM,04/01/2011 03:16:50 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Patient Declined Transport,04/01/2011 03:24:51 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110910047-94 +160182972,62,16007366,Medical Incident,01/18/2016,01/18/2016,01/18/2016 07:57:06 PM,01/18/2016 07:58:10 PM,01/18/2016 07:58:59 PM,01/18/2016 07:59:05 PM,01/18/2016 08:07:12 PM,01/18/2016 08:30:26 PM,01/18/2016 08:39:02 PM,Code 2 Transport,01/18/2016 09:18:50 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160182972-62 +160790198,71,16031258,Medical Incident,03/19/2016,03/18/2016,03/19/2016 01:17:18 AM,03/19/2016 01:18:56 AM,03/19/2016 01:19:03 AM,03/19/2016 01:19:11 AM,03/19/2016 01:25:13 AM,03/19/2016 01:54:17 AM,03/19/2016 02:06:47 AM,Code 2 Transport,03/19/2016 02:37:55 AM,300 Block of ROOSEVELT WAY,San Francisco,94117,B05,6,5175,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7653378532182, -122.441583738163)",160790198-71 +103430309,77,10109953,Medical Incident,12/09/2010,12/09/2010,12/09/2010 04:56:18 PM,12/09/2010 04:58:11 PM,12/09/2010 04:58:21 PM,12/09/2010 04:58:33 PM,12/09/2010 05:06:39 PM,12/09/2010 05:32:39 PM,12/09/2010 05:58:52 PM,Code 2 Transport,12/09/2010 06:22:53 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",103430309-77 +121100335,T16,12036508,Structure Fire,04/19/2012,04/19/2012,04/19/2012 07:33:30 PM,04/19/2012 07:34:23 PM,04/19/2012 07:34:39 PM,04/19/2012 07:35:26 PM,04/19/2012 08:11:12 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/19/2012 08:16:36 PM,1700 Block of GREEN ST,SF,94123,B04,38,3246,3,3,3,false,Fire,1,TRUCK,8,4,2,Marina,"(37.797150187503, -122.427913713585)",121100335-T16 +160193822,65,16007820,Medical Incident,01/19/2016,01/19/2016,01/19/2016 11:13:49 PM,01/19/2016 11:14:36 PM,01/19/2016 11:14:43 PM,01/19/2016 11:14:53 PM,01/19/2016 11:19:33 PM,01/19/2016 11:38:20 PM,01/19/2016 11:55:51 PM,Code 2 Transport,01/20/2016 12:33:42 AM,1200 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6614,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7214606647015, -122.392279417619)",160193822-65 +120820386,E07,12027400,Medical Incident,03/22/2012,03/22/2012,03/22/2012 10:26:46 PM,03/22/2012 10:27:15 PM,03/22/2012 10:27:31 PM,03/22/2012 10:28:14 PM,03/22/2012 10:29:36 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/22/2012 10:34:05 PM,700 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7611631165644, -122.417171363688)",120820386-E07 +130270160,67,13009281,Medical Incident,01/27/2013,01/27/2013,01/27/2013 11:25:31 AM,01/27/2013 11:26:37 AM,01/27/2013 11:28:20 AM,01/27/2013 11:28:33 AM,01/27/2013 11:35:15 AM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 11:36:17 AM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",130270160-67 +110330030,94,11010693,Medical Incident,02/02/2011,02/01/2011,02/02/2011 02:47:08 AM,02/02/2011 02:47:27 AM,02/02/2011 02:47:52 AM,02/02/2011 02:48:15 AM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/02/2011 02:51:44 AM,600 Block of GEARY ST,SF,94109,B01,3,1462,3,3,3,true,,1,MEDIC,2,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",110330030-94 +140340305,B07,14011606,Alarms,02/03/2014,02/03/2014,02/03/2014 07:34:35 PM,02/03/2014 07:35:46 PM,02/03/2014 07:35:52 PM,02/03/2014 07:37:04 PM,02/03/2014 07:41:33 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Other,02/03/2014 07:55:16 PM,300 Block of CARL ST,SF,94117,B05,12,5145,3,3,3,false,Alarm,1,CHIEF,3,5,5,Inner Sunset,"(37.7651369312226, -122.455592494845)",140340305-B07 +160053411,71,16002165,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:44:34 PM,01/05/2016 08:47:05 PM,01/05/2016 08:47:14 PM,01/05/2016 08:47:49 PM,01/05/2016 08:56:17 PM,01/05/2016 09:09:33 PM,01/05/2016 09:32:33 PM,Code 2 Transport,01/05/2016 10:09:40 PM,4400 Block of CABRILLO ST,San Francisco,94121,B07,34,7277,3,3,3,true,Non Life-threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7733768091246, -122.506280175439)",160053411-71 +112170291,T16,11071795,Alarms,08/05/2011,08/05/2011,08/05/2011 05:57:10 PM,08/05/2011 05:58:07 PM,08/05/2011 05:58:11 PM,08/05/2011 05:59:48 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 06:11:07 PM,1300 Block of FILBERT ST,SF,94109,B01,41,1626,3,3,3,false,,1,TRUCK,3,4,2,Russian Hill,"(37.7998522915729, -122.421714875982)",112170291-T16 +140310067,E01,14010448,Medical Incident,01/31/2014,01/31/2014,01/31/2014 08:27:10 AM,01/31/2014 08:29:05 AM,01/31/2014 08:29:17 AM,01/31/2014 08:29:41 AM,01/31/2014 08:34:42 AM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/31/2014 08:36:05 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",140310067-E01 +160101237,74,16004004,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:15:11 AM,01/10/2016 11:17:02 AM,01/10/2016 11:18:13 AM,01/10/2016 11:18:28 AM,01/10/2016 11:23:05 AM,01/10/2016 11:34:14 AM,01/10/2016 11:44:23 AM,Code 2 Transport,01/10/2016 12:17:48 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",160101237-74 +123630344,B03,12121616,Alarms,12/28/2012,12/28/2012,12/28/2012 09:45:36 PM,12/28/2012 09:47:11 PM,12/28/2012 09:47:18 PM,12/28/2012 09:48:23 PM,12/28/2012 09:51:13 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 10:02:45 PM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",123630344-B03 +132740259,53,13093172,Medical Incident,10/01/2013,10/01/2013,10/01/2013 05:03:01 PM,10/01/2013 05:04:19 PM,10/01/2013 05:04:33 PM,10/01/2013 05:04:49 PM,10/01/2013 05:05:50 PM,10/01/2013 05:09:20 PM,10/01/2013 05:38:24 PM,Code 2 Transport,10/01/2013 05:51:28 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",132740259-53 +160630941,63,16024992,Medical Incident,03/03/2016,03/03/2016,03/03/2016 09:07:08 AM,03/03/2016 09:08:34 AM,03/03/2016 09:09:43 AM,03/03/2016 09:09:51 AM,03/03/2016 09:16:03 AM,03/03/2016 09:20:24 AM,03/03/2016 09:54:07 AM,Code 2 Transport,03/03/2016 10:29:32 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",160630941-63 +102290264,E38,10072126,Structure Fire,08/17/2010,08/17/2010,08/17/2010 05:23:04 PM,08/17/2010 05:23:04 PM,08/17/2010 05:23:16 PM,08/17/2010 05:25:21 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 05:26:31 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",102290264-E38 +160783893,64,16031202,Medical Incident,03/18/2016,03/18/2016,03/18/2016 10:11:55 PM,03/18/2016 10:13:33 PM,03/18/2016 10:13:47 PM,03/18/2016 10:14:06 PM,03/18/2016 10:22:30 PM,03/18/2016 10:53:20 PM,03/18/2016 11:12:07 PM,Code 2 Transport,03/18/2016 11:33:23 PM,600 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7627737268131, -122.417186682545)",160783893-64 +133510189,82,13119192,Medical Incident,12/17/2013,12/17/2013,12/17/2013 12:07:51 PM,12/17/2013 12:09:38 PM,12/17/2013 12:10:08 PM,12/17/2013 12:10:18 PM,12/17/2013 12:14:21 PM,12/17/2013 12:25:31 PM,12/17/2013 12:58:28 PM,Code 2 Transport,12/17/2013 01:02:32 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",133510189-82 +131610169,RS1,13054678,Outside Fire,06/10/2013,06/10/2013,06/10/2013 11:41:59 AM,06/10/2013 11:44:32 AM,06/10/2013 11:45:08 AM,06/10/2013 11:48:39 AM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,Other,06/10/2013 11:50:47 AM,HYDE ST/WASHINGTON ST,SF,94109,B01,41,1564,3,3,3,false,Fire,1,RESCUE SQUAD,10,1,3,Russian Hill,"(37.7936837835099, -122.417935757999)",131610169-RS1 +130250047,E33,13008524,Medical Incident,01/25/2013,01/24/2013,01/25/2013 04:23:09 AM,01/25/2013 04:23:43 AM,01/25/2013 04:24:29 AM,01/25/2013 04:26:29 AM,01/25/2013 04:29:03 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/25/2013 04:39:03 AM,600 Block of MORSE ST,SF,94112,B09,33,6216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7114316290849, -122.445165391423)",130250047-E33 +132260050,T08,13076189,Citizen Assist / Service Call,08/14/2013,08/13/2013,08/14/2013 04:56:16 AM,08/14/2013 04:58:14 AM,08/14/2013 05:01:20 AM,08/14/2013 05:03:16 AM,08/14/2013 05:08:25 AM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Fire,08/14/2013 05:23:42 AM,500 Block of BEALE ST,SF,94107,B03,8,2134,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7857367878809, -122.389124364412)",132260050-T08 +132570411,E03,13087105,Medical Incident,09/14/2013,09/14/2013,09/14/2013 11:14:31 PM,09/14/2013 11:15:53 PM,09/14/2013 11:16:13 PM,09/14/2013 11:17:30 PM,09/14/2013 11:18:27 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 11:30:03 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132570411-E03 +120830140,AM04,12027523,Medical Incident,03/23/2012,03/23/2012,03/23/2012 11:04:35 AM,03/23/2012 11:05:13 AM,03/23/2012 11:05:39 AM,03/23/2012 11:06:47 AM,03/23/2012 11:09:42 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Against Medical Advice,03/23/2012 11:49:11 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",120830140-AM04 +140310040,81,14010426,Medical Incident,01/31/2014,01/30/2014,01/31/2014 06:24:15 AM,01/31/2014 06:25:18 AM,01/31/2014 06:25:51 AM,01/31/2014 06:26:00 AM,01/31/2014 06:33:46 AM,01/31/2014 06:49:37 AM,01/31/2014 06:53:26 AM,Code 2 Transport,01/31/2014 07:17:45 AM,2300 Block of MARKET ST,SF,94114,B05,6,5252,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",140310040-81 +120220273,74,12007574,Medical Incident,01/22/2012,01/22/2012,01/22/2012 07:18:42 PM,01/22/2012 07:19:14 PM,01/22/2012 07:19:50 PM,01/22/2012 07:20:04 PM,01/22/2012 07:30:37 PM,01/22/2012 08:03:13 PM,01/22/2012 08:21:04 PM,Code 2 Transport,01/22/2012 08:48:08 PM,2200 Block of 23RD ST,SF,94107,B10,37,2556,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7544865703941, -122.402068206398)",120220273-74 +132450122,E14,13082628,Medical Incident,09/02/2013,09/02/2013,09/02/2013 09:43:07 AM,09/02/2013 09:45:31 AM,09/02/2013 09:46:38 AM,09/02/2013 09:47:49 AM,09/02/2013 09:50:08 AM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/02/2013 10:17:04 AM,500 Block of 24TH AVE,SF,94121,B07,14,7213,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7791817647436, -122.483524577803)",132450122-E14 +123370523,E33,12112471,Medical Incident,12/02/2012,12/02/2012,12/02/2012 08:23:05 PM,12/02/2012 08:24:32 PM,12/02/2012 08:25:24 PM,12/02/2012 08:26:40 PM,12/02/2012 08:30:17 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 08:46:36 PM,3100 Block of SAN JOSE AVE,SF,94112,B09,33,8357,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7086867675388, -122.458479919748)",123370523-E33 +122260323,E01,12075038,Medical Incident,08/13/2012,08/13/2012,08/13/2012 07:02:22 PM,08/13/2012 07:03:40 PM,08/13/2012 07:03:50 PM,08/13/2012 07:04:55 PM,08/13/2012 07:07:50 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 07:09:26 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",122260323-E01 +160162728,79,16006525,Medical Incident,01/16/2016,01/16/2016,01/16/2016 05:36:20 PM,01/16/2016 05:38:40 PM,01/16/2016 05:39:04 PM,01/16/2016 05:39:15 PM,01/16/2016 05:51:51 PM,01/16/2016 06:08:52 PM,01/16/2016 06:34:37 PM,Code 2 Transport,01/16/2016 07:15:48 PM,0 Block of MERCURY ST,San Francisco,94124,B10,42,6447,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7319018847034, -122.401643423217)",160162728-79 +160582326,58,16023175,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:38:47 PM,02/27/2016 03:41:35 PM,02/27/2016 03:41:51 PM,02/27/2016 03:42:09 PM,02/27/2016 03:46:53 PM,02/27/2016 04:29:17 PM,02/27/2016 04:54:58 PM,Code 2 Transport,02/27/2016 05:40:10 PM,0 Block of BADEN ST,San Francisco,94131,B09,26,8214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7305229024283, -122.439666849771)",160582326-58 +132430206,83,13082004,Medical Incident,08/31/2013,08/31/2013,08/31/2013 12:42:34 PM,08/31/2013 12:44:25 PM,08/31/2013 12:44:45 PM,08/31/2013 12:44:54 PM,08/31/2013 12:49:03 PM,08/31/2013 01:02:40 PM,08/31/2013 01:13:01 PM,Code 2 Transport,08/31/2013 01:35:13 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",132430206-83 +110520234,E05,11017272,Medical Incident,02/21/2011,02/21/2011,02/21/2011 04:27:47 PM,02/21/2011 04:28:13 PM,02/21/2011 04:29:19 PM,02/21/2011 04:34:27 PM,02/21/2011 04:36:17 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 04:39:29 PM,2000 Block of BUCHANAN ST,SF,94115,B04,38,3434,3,3,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.7888376257468, -122.430521781174)",110520234-E05 +140460041,E48,14015540,Other,02/15/2014,02/14/2014,02/15/2014 02:29:34 AM,02/15/2014 02:36:49 AM,02/15/2014 02:37:24 AM,02/15/2014 02:39:10 AM,02/15/2014 02:41:49 AM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/15/2014 02:56:43 AM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,1,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",140460041-E48 +160572079,79,16022785,Medical Incident,02/26/2016,02/26/2016,02/26/2016 02:29:25 PM,02/26/2016 02:29:34 PM,02/26/2016 02:30:05 PM,02/26/2016 02:31:09 PM,02/26/2016 02:31:21 PM,02/26/2016 03:03:56 PM,02/26/2016 03:26:08 PM,Code 2 Transport,02/26/2016 03:47:30 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160572079-79 +160484163,79,16019553,Medical Incident,02/17/2016,02/17/2016,02/17/2016 11:36:41 PM,02/17/2016 11:39:06 PM,02/17/2016 11:39:21 PM,02/17/2016 11:39:35 PM,02/18/2016 12:06:01 AM,02/18/2016 12:06:03 AM,02/18/2016 12:10:03 AM,Code 3 Transport,02/18/2016 12:59:58 AM,0 Block of PARKER AVE,San Francisco,94118,B07,10,4436,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7851338249754, -122.454765226355)",160484163-79 +110650231,72,11021492,Medical Incident,03/06/2011,03/06/2011,03/06/2011 02:17:20 PM,03/06/2011 02:19:47 PM,03/06/2011 02:20:05 PM,03/06/2011 02:20:22 PM,03/06/2011 02:27:32 PM,03/06/2011 02:53:40 PM,03/06/2011 02:58:23 PM,Code 3 Transport,03/06/2011 03:26:12 PM,1200 Block of HAIGHT ST,SF,94117,B05,21,4353,1,1,2,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",110650231-72 +131110116,KM01,13037339,Medical Incident,04/21/2013,04/21/2013,04/21/2013 11:22:14 AM,04/21/2013 11:26:09 AM,04/21/2013 11:26:32 AM,04/21/2013 11:27:05 AM,04/21/2013 11:35:57 AM,04/21/2013 11:53:14 AM,04/21/2013 11:59:07 AM,Code 2 Transport,04/21/2013 12:26:55 PM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",131110116-KM01 +160853374,59,16033923,Medical Incident,03/25/2016,03/25/2016,03/25/2016 07:42:33 PM,03/25/2016 07:42:33 PM,03/25/2016 07:42:43 PM,03/25/2016 07:42:54 PM,03/25/2016 07:50:48 PM,03/25/2016 08:01:43 PM,03/25/2016 08:08:59 PM,Code 2 Transport,03/25/2016 08:41:24 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160853374-59 +140670068,E09,14022594,Medical Incident,03/08/2014,03/07/2014,03/08/2014 06:50:29 AM,03/08/2014 06:52:19 AM,03/08/2014 06:53:40 AM,03/08/2014 06:55:58 AM,03/08/2014 06:58:05 AM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Unable to Locate,03/08/2014 07:01:23 AM,100 Block of VERMONT ST,SAN FRANCISCO,94103,B02,29,2422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission Bay,"(37.76789826103, -122.404743414302)",140670068-E09 +160100867,71,16003967,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:52:33 AM,01/10/2016 08:53:56 AM,01/10/2016 08:57:58 AM,01/10/2016 08:58:38 AM,01/10/2016 09:02:26 AM,01/10/2016 09:17:33 AM,01/10/2016 09:30:09 AM,Code 2 Transport,01/10/2016 10:24:29 AM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160100867-71 +131520123,67,13051446,Medical Incident,06/01/2013,06/01/2013,06/01/2013 10:16:11 AM,06/01/2013 10:16:29 AM,06/01/2013 10:17:02 AM,06/01/2013 10:17:19 AM,06/01/2013 10:25:06 AM,06/01/2013 10:45:48 AM,06/01/2013 10:57:56 AM,Code 2 Transport,06/01/2013 11:27:34 AM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",131520123-67 +132970155,T01,13100852,Structure Fire,10/24/2013,10/24/2013,10/24/2013 12:07:39 PM,10/24/2013 12:08:32 PM,10/24/2013 12:08:54 PM,10/24/2013 12:11:56 PM,10/24/2013 12:13:19 PM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 12:14:27 PM,400 Block of GEARY ST,SF,94102,B01,1,1452,3,3,3,false,Fire,1,TRUCK,7,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",132970155-T01 +120640029,E36,12021006,Medical Incident,03/04/2012,03/03/2012,03/04/2012 01:54:09 AM,03/04/2012 01:54:22 AM,03/04/2012 01:55:26 AM,03/04/2012 01:55:41 AM,03/04/2012 01:58:23 AM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,04/25/2016 01:59:51 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",120640029-E36 +132070318,67,13070200,Medical Incident,07/26/2013,07/26/2013,07/26/2013 08:25:33 PM,07/26/2013 08:26:34 PM,07/26/2013 08:28:26 PM,07/26/2013 08:28:55 PM,07/26/2013 08:40:52 PM,07/26/2013 08:58:20 PM,07/26/2013 09:18:39 PM,Code 2 Transport,07/26/2013 10:05:22 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",132070318-67 +132620271,79,13088816,Medical Incident,09/19/2013,09/19/2013,09/19/2013 04:10:54 PM,09/19/2013 04:12:19 PM,09/19/2013 04:12:30 PM,09/19/2013 04:13:07 PM,09/19/2013 04:21:18 PM,09/19/2013 04:41:23 PM,09/19/2013 05:23:18 PM,Code 2 Transport,09/19/2013 05:34:07 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",132620271-79 +113170084,96,11105237,Medical Incident,11/13/2011,11/12/2011,11/13/2011 05:12:14 AM,11/13/2011 05:12:58 AM,11/13/2011 05:13:10 AM,11/13/2011 05:13:36 AM,11/13/2011 05:37:56 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Patient Declined Transport,11/13/2011 05:42:41 AM,300 Block of BRAZIL AVE,SF,94112,B09,43,6127,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7233114402099, -122.432068293948)",113170084-96 +102250183,E15,10070852,Medical Incident,08/13/2010,08/13/2010,08/13/2010 03:28:12 PM,08/13/2010 03:28:46 PM,08/13/2010 03:29:44 PM,08/13/2010 03:30:50 PM,08/13/2010 03:34:07 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Patient Declined Transport,08/13/2010 03:47:22 PM,MISSION ST/SENECA AV,SF,94112,B09,15,8331,3,2,2,true,,1,ENGINE,1,9,11,Excelsior,"(37.7176653093755, -122.440106606888)",102250183-E15 +133350053,68,13113462,Medical Incident,12/01/2013,11/30/2013,12/01/2013 04:04:00 AM,12/01/2013 04:05:00 AM,12/01/2013 04:05:25 AM,12/01/2013 04:05:33 AM,12/01/2013 04:11:23 AM,12/01/2013 04:32:59 AM,12/01/2013 04:45:05 AM,Code 2 Transport,12/01/2013 05:15:23 AM,0 Block of GARCIA AVE,SF,94127,B08,39,8643,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7448291585327, -122.459128981675)",133350053-68 +160610743,73,16024219,Medical Incident,03/01/2016,03/01/2016,03/01/2016 08:27:57 AM,03/01/2016 08:32:25 AM,03/01/2016 08:32:56 AM,03/01/2016 08:34:20 AM,03/01/2016 08:51:50 AM,03/01/2016 08:56:22 AM,03/01/2016 09:13:14 AM,Code 2 Transport,03/01/2016 09:35:30 AM,MISSION ST/RUSSIA AV,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7215750031455, -122.437149523285)",160610743-73 +160721926,79,16028624,Medical Incident,03/12/2016,03/12/2016,03/12/2016 02:41:04 PM,03/12/2016 02:41:04 PM,03/12/2016 02:41:22 PM,03/12/2016 02:41:28 PM,03/12/2016 02:44:38 PM,03/12/2016 03:01:06 PM,03/12/2016 03:21:43 PM,Code 2 Transport,03/12/2016 03:55:15 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160721926-79 +121600296,AM06,12053032,Medical Incident,06/08/2012,06/08/2012,06/08/2012 05:25:38 PM,06/08/2012 05:27:21 PM,06/08/2012 05:30:41 PM,06/08/2012 05:31:19 PM,06/08/2012 05:48:51 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,No Merit,06/08/2012 06:02:30 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",121600296-AM06 +160342929,53,16013534,Medical Incident,02/03/2016,02/03/2016,02/03/2016 06:47:46 PM,02/03/2016 06:48:19 PM,02/03/2016 06:48:58 PM,02/03/2016 06:49:36 PM,02/03/2016 07:19:27 PM,02/03/2016 07:19:28 PM,02/03/2016 07:32:47 PM,Code 2 Transport,02/03/2016 08:04:22 PM,1000 Block of IRVING ST,San Francisco,94122,B08,22,7345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7638646243098, -122.468982718399)",160342929-53 +130740375,T14,13024844,Alarms,03/15/2013,03/15/2013,03/15/2013 09:55:40 PM,03/15/2013 09:58:45 PM,03/15/2013 09:59:52 PM,03/15/2013 10:01:45 PM,03/15/2013 10:04:28 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 10:20:22 PM,600 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7232,3,3,3,false,Alarm,1,TRUCK,1,7,2,Seacliff,"(37.7862422734629, -122.490358509112)",130740375-T14 +160701697,56,16027856,Medical Incident,03/10/2016,03/10/2016,03/10/2016 12:56:36 PM,03/10/2016 12:58:08 PM,03/10/2016 12:58:33 PM,03/10/2016 12:58:45 PM,03/10/2016 01:08:37 PM,03/10/2016 01:22:31 PM,03/10/2016 01:53:14 PM,Code 2 Transport,03/10/2016 02:08:14 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160701697-56 +132970337,E03,13101006,Medical Incident,10/24/2013,10/24/2013,10/24/2013 08:13:02 PM,10/24/2013 08:14:41 PM,10/24/2013 08:14:52 PM,10/24/2013 08:15:52 PM,10/24/2013 08:18:38 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/24/2013 08:19:24 PM,HYDE ST/TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",132970337-E03 +131580445,78,13053845,Medical Incident,06/07/2013,06/07/2013,06/07/2013 11:15:18 PM,06/07/2013 11:17:00 PM,06/07/2013 11:18:01 PM,06/07/2013 11:19:18 PM,06/07/2013 11:24:25 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Patient Declined Transport,06/08/2013 12:09:43 AM,1200 Block of NEWHALL ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7365653368668, -122.391311377651)",131580445-78 +160563147,AM16,16022501,Medical Incident,02/25/2016,02/25/2016,02/25/2016 06:04:19 PM,02/25/2016 06:05:15 PM,02/25/2016 06:05:43 PM,02/25/2016 06:06:27 PM,02/25/2016 06:18:23 PM,02/25/2016 06:39:46 PM,02/25/2016 07:04:24 PM,Code 2 Transport,02/25/2016 07:32:22 PM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",160563147-AM16 +160430527,53,16017174,Medical Incident,02/12/2016,02/11/2016,02/12/2016 07:02:35 AM,02/12/2016 07:04:53 AM,02/12/2016 07:05:52 AM,02/12/2016 07:06:03 AM,02/12/2016 07:13:21 AM,02/12/2016 07:41:41 AM,02/12/2016 07:57:43 AM,Code 2 Transport,02/12/2016 08:47:21 AM,2000 Block of FRANKLIN ST,San Francisco,94109,B04,38,3226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7932751428357, -122.424674415127)",160430527-53 +111780221,91,11058805,Structure Fire,06/27/2011,06/27/2011,06/27/2011 02:29:50 PM,06/27/2011 02:30:52 PM,06/27/2011 02:31:24 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 02:37:20 PM,1500 Block of SACRAMENTO ST,SF,94109,B01,41,1563,3,3,3,true,,1,MEDIC,7,1,3,Nob Hill,"(37.7917592754649, -122.418390500192)",111780221-91 +160181084,75,16007184,Medical Incident,01/18/2016,01/18/2016,01/18/2016 10:27:33 AM,01/18/2016 10:28:42 AM,01/18/2016 10:28:54 AM,01/18/2016 10:29:07 AM,01/18/2016 10:35:10 AM,01/18/2016 10:42:25 AM,01/18/2016 10:42:25 AM,Code 2 Transport,01/18/2016 11:45:25 AM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",160181084-75 +160100794,75,16003953,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:18:17 AM,01/10/2016 08:19:44 AM,01/10/2016 08:20:15 AM,01/10/2016 08:20:27 AM,01/10/2016 08:29:41 AM,01/10/2016 08:44:23 AM,01/10/2016 09:02:08 AM,Code 2 Transport,01/10/2016 09:46:22 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7613401387036, -122.46390786542)",160100794-75 +111780213,T06,11058797,Structure Fire,06/27/2011,06/27/2011,06/27/2011 01:55:11 PM,06/27/2011 01:55:11 PM,06/27/2011 01:55:24 PM,06/27/2011 01:56:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 01:59:13 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",111780213-T06 +110790370,86,11026205,Medical Incident,03/20/2011,03/20/2011,03/20/2011 10:19:14 PM,03/20/2011 10:19:53 PM,03/20/2011 10:20:09 PM,03/20/2011 10:20:23 PM,03/20/2011 10:22:32 PM,03/20/2011 10:47:34 PM,03/20/2011 10:58:37 PM,Code 2 Transport,03/21/2011 12:00:01 AM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",110790370-86 +160560280,70,16022234,Medical Incident,02/25/2016,02/24/2016,02/25/2016 03:16:55 AM,02/25/2016 03:16:55 AM,02/25/2016 03:19:44 AM,02/25/2016 03:22:32 AM,02/25/2016 03:26:01 AM,02/25/2016 03:40:12 AM,02/25/2016 03:48:08 AM,Code 2 Transport,02/25/2016 04:29:06 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160560280-70 +120440020,93,12014567,Medical Incident,02/13/2012,02/12/2012,02/13/2012 02:03:00 AM,02/13/2012 02:04:38 AM,02/13/2012 02:04:51 AM,02/13/2012 02:04:57 AM,02/13/2012 02:25:01 AM,02/13/2012 02:44:23 AM,02/13/2012 02:51:16 AM,Code 2 Transport,02/13/2012 03:15:07 AM,600 Block of LAGUNA ST,SF,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",120440020-93 +103550160,E36,10113938,Medical Incident,12/21/2010,12/21/2010,12/21/2010 12:25:37 PM,12/21/2010 12:28:16 PM,12/21/2010 12:28:35 PM,04/25/2016 02:07:00 PM,12/21/2010 12:30:01 PM,04/25/2016 02:07:00 PM,12/21/2010 12:31:13 PM,Other,12/21/2010 01:16:34 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,,1,ENGINE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",103550160-E36 +120940303,73,12031257,Medical Incident,04/03/2012,04/03/2012,04/03/2012 07:16:42 PM,04/03/2012 07:17:07 PM,04/03/2012 07:17:56 PM,04/03/2012 07:22:03 PM,04/25/2016 01:59:21 PM,04/03/2012 07:43:59 PM,04/03/2012 08:10:36 PM,Code 2 Transport,04/03/2012 08:25:55 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",120940303-73 +160291972,52,16011466,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:07:06 PM,01/29/2016 02:08:49 PM,01/29/2016 02:09:52 PM,01/29/2016 02:10:27 PM,01/29/2016 02:20:58 PM,01/29/2016 02:29:19 PM,01/29/2016 02:46:28 PM,Code 2 Transport,01/29/2016 03:28:49 PM,0 Block of DEDMAN CT,San Francisco,94124,B10,25,6522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7368469604958, -122.384907106098)",160291972-52 +160671092,62,16026699,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:04:11 AM,03/07/2016 11:06:10 AM,03/07/2016 11:11:11 AM,03/07/2016 11:12:08 AM,03/07/2016 11:21:47 AM,03/07/2016 11:39:11 AM,03/07/2016 12:05:29 PM,Code 2 Transport,03/07/2016 12:41:01 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160671092-62 +102830060,73,10089970,Medical Incident,10/10/2010,10/09/2010,10/10/2010 04:42:45 AM,10/10/2010 04:44:01 AM,10/10/2010 04:44:20 AM,10/10/2010 04:45:03 AM,10/10/2010 04:49:10 AM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Unable to Locate,10/10/2010 04:55:07 AM,1200 Block of MISSION ST,SF,94103,B02,36,2336,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",102830060-73 +110730019,89,11023885,Medical Incident,03/14/2011,03/13/2011,03/14/2011 01:57:51 AM,03/14/2011 01:58:09 AM,03/14/2011 01:58:33 AM,03/14/2011 01:59:09 AM,03/14/2011 02:02:42 AM,03/14/2011 02:17:22 AM,03/14/2011 02:28:07 AM,Code 2 Transport,03/14/2011 03:04:15 AM,GOUGH ST/PACIFIC AV,SF,94109,B04,38,3251,3,3,3,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.7943975481114, -122.426514001375)",110730019-89 +121970287,E32,12065604,Medical Incident,07/15/2012,07/15/2012,07/15/2012 07:39:13 PM,07/15/2012 07:43:40 PM,07/15/2012 07:44:33 PM,07/15/2012 07:46:01 PM,07/15/2012 07:47:58 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/15/2012 07:51:12 PM,MISSION ST/CORTLAND AV,SF,94110,B06,32,5626,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7410274087506, -122.422840577347)",121970287-E32 +160470927,AM02,16018846,Medical Incident,02/16/2016,02/16/2016,02/16/2016 09:02:40 AM,02/16/2016 09:05:57 AM,02/16/2016 09:06:40 AM,02/16/2016 09:07:04 AM,02/16/2016 09:21:22 AM,02/16/2016 09:40:06 AM,02/16/2016 10:21:37 AM,Code 2 Transport,02/16/2016 10:41:35 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160470927-AM02 +133490322,T16,13118597,Alarms,12/15/2013,12/15/2013,12/15/2013 06:45:27 PM,12/15/2013 06:47:41 PM,12/15/2013 06:47:51 PM,12/15/2013 06:49:13 PM,12/15/2013 06:52:10 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 06:53:41 PM,3200 Block of GOUGH ST,SF,94123,B04,16,3243,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8032501811991, -122.428373636509)",133490322-T16 +130400381,E09,13013845,Medical Incident,02/09/2013,02/09/2013,02/09/2013 10:18:25 PM,02/09/2013 10:19:10 PM,02/09/2013 10:19:27 PM,02/09/2013 10:21:19 PM,02/09/2013 10:23:41 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/09/2013 10:27:01 PM,3000 Block of 26TH ST,SF,94110,B06,9,5615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7495721300101, -122.410215105411)",130400381-E09 +160403649,AM20,16016225,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:42:14 PM,02/09/2016 09:42:14 PM,02/09/2016 09:47:16 PM,02/09/2016 09:47:38 PM,02/09/2016 09:54:15 PM,02/09/2016 09:59:34 PM,02/09/2016 10:12:42 PM,Code 2 Transport,02/09/2016 10:33:24 PM,500 Block of VISITACION AVE,San Francisco,94134,B10,44,6255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7104941857085, -122.404740399674)",160403649-AM20 +160711985,65,16028259,Medical Incident,03/11/2016,03/11/2016,03/11/2016 02:15:23 PM,03/11/2016 02:17:13 PM,03/11/2016 02:17:21 PM,03/11/2016 02:18:05 PM,03/11/2016 02:27:46 PM,03/11/2016 02:29:16 PM,03/11/2016 03:05:10 PM,Code 2 Transport,03/11/2016 03:28:32 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760543061938, -122.414393004759)",160711985-65 +160891444,82,16035307,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:18:36 AM,03/29/2016 11:19:34 AM,03/29/2016 11:19:56 AM,03/29/2016 11:19:56 AM,03/29/2016 11:52:27 AM,03/29/2016 11:52:29 AM,03/29/2016 12:20:17 PM,Code 2 Transport,03/29/2016 12:48:37 PM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160891444-82 +133390290,T03,13114969,Alarms,12/05/2013,12/05/2013,12/05/2013 05:17:56 PM,12/05/2013 05:19:02 PM,12/05/2013 05:19:11 PM,12/05/2013 05:20:53 PM,12/05/2013 05:22:35 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 05:32:55 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7855629695287, -122.412993783039)",133390290-T03 +110450374,RC1,11015092,Medical Incident,02/14/2011,02/14/2011,02/14/2011 10:21:48 PM,02/14/2011 10:22:46 PM,02/14/2011 10:23:20 PM,02/14/2011 10:26:43 PM,02/14/2011 10:32:26 PM,02/14/2011 10:57:00 PM,02/14/2011 11:08:51 PM,Other,02/14/2011 11:34:28 PM,1500 Block of FILBERT ST,SF,94123,B04,16,3146,3,E,3,false,,1,RESCUE CAPTAIN,2,4,2,Marina,"(37.7993258680494, -122.424981100027)",110450374-RC1 +160610191,56,16024155,Medical Incident,03/01/2016,02/29/2016,03/01/2016 02:06:20 AM,03/01/2016 02:06:20 AM,03/01/2016 02:08:02 AM,03/01/2016 02:08:12 AM,03/01/2016 02:11:26 AM,03/01/2016 02:19:04 AM,03/01/2016 02:47:22 AM,Code 2 Transport,03/01/2016 03:22:01 AM,0 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8611,B,B,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7403329886376, -122.466448582438)",160610191-56 +122600046,E13,12085820,Structure Fire,09/16/2012,09/15/2012,09/16/2012 02:32:10 AM,09/16/2012 02:32:10 AM,09/16/2012 02:32:38 AM,09/16/2012 02:34:41 AM,09/16/2012 02:37:31 AM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 02:37:38 AM,GRANT AV/CLAY ST,SF,94108,B01,13,1313,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7942636257508, -122.406304988112)",122600046-E13 +122610288,RS1,12086320,Structure Fire,09/17/2012,09/17/2012,09/17/2012 08:28:33 PM,09/17/2012 08:29:40 PM,09/17/2012 08:29:45 PM,09/17/2012 08:33:30 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,Other,09/17/2012 08:38:49 PM,400 Block of SHRADER ST,SF,94117,B05,12,4544,3,3,3,false,Fire,1,RESCUE SQUAD,9,5,5,Haight Ashbury,"(37.7707625335991, -122.452216807745)",122610288-RS1 +102350411,RC2,10074145,Medical Incident,08/23/2010,08/23/2010,08/23/2010 09:11:16 PM,08/23/2010 09:11:16 PM,08/23/2010 09:11:54 PM,08/23/2010 09:13:01 PM,08/23/2010 09:16:47 PM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/23/2010 09:18:22 PM,2200 Block of GOLDEN GATE AVE,SF,94118,B05,21,4462,E,E,3,true,,1,RESCUE CAPTAIN,2,5,1,Lone Mountain/USF,"(37.7776618791276, -122.447335399434)",102350411-RC2 +160421274,KM09,16016813,Traffic Collision,02/11/2016,02/11/2016,02/11/2016 10:39:20 AM,02/11/2016 10:39:52 AM,02/11/2016 10:40:05 AM,02/11/2016 10:40:43 AM,02/11/2016 10:52:41 AM,02/11/2016 10:52:43 AM,02/11/2016 11:06:31 AM,Code 3 Transport,02/11/2016 12:04:16 PM,800 Block of CHESTNUT ST,San Francisco,94133,B01,28,1515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,2,Russian Hill,"(37.8032958939244, -122.417342092418)",160421274-KM09 +160453316,61,16018307,Medical Incident,02/14/2016,02/14/2016,02/14/2016 09:42:24 PM,02/14/2016 09:42:24 PM,02/14/2016 09:42:49 PM,02/14/2016 09:43:07 PM,02/14/2016 09:49:33 PM,02/14/2016 10:05:47 PM,02/14/2016 10:12:34 PM,Code 2 Transport,02/14/2016 10:41:38 PM,1500 Block of 19TH AVE,San Francisco,94122,B08,22,7423,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7589078873421, -122.476606690049)",160453316-61 +160021376,71,16000717,Medical Incident,01/02/2016,01/02/2016,01/02/2016 12:06:41 PM,01/02/2016 12:07:02 PM,01/02/2016 12:07:22 PM,01/02/2016 12:07:32 PM,01/02/2016 12:11:14 PM,01/02/2016 12:42:24 PM,01/02/2016 12:51:17 PM,Code 2 Transport,01/02/2016 01:32:55 PM,0 Block of OCEAN AVE,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7237942596577, -122.435907357723)",160021376-71 +130790219,68,13026427,Medical Incident,03/20/2013,03/20/2013,03/20/2013 02:49:51 PM,03/20/2013 02:50:17 PM,03/20/2013 02:51:02 PM,03/20/2013 02:51:43 PM,03/20/2013 03:29:10 PM,03/20/2013 03:29:40 PM,03/20/2013 04:07:45 PM,Code 2 Transport,03/20/2013 04:29:56 PM,100 Block of LARKIN ST,SF,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",130790219-68 +130390252,B09,13013364,Other,02/08/2013,02/08/2013,02/08/2013 03:12:11 PM,02/08/2013 03:13:03 PM,02/08/2013 03:13:14 PM,02/08/2013 03:17:16 PM,02/08/2013 03:57:00 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Other,02/08/2013 04:23:14 PM,SILVER AV/MISSION ST,SF,94112,B09,32,6113,3,3,3,false,Alarm,1,CHIEF,1,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",130390252-B09 +102410329,64,10076146,Medical Incident,08/29/2010,08/29/2010,08/29/2010 08:57:37 PM,08/29/2010 08:59:22 PM,08/29/2010 09:00:45 PM,04/25/2016 02:08:50 PM,08/29/2010 09:10:28 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,No Merit,08/29/2010 09:23:34 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",102410329-64 +140050197,E36,14001815,Medical Incident,01/05/2014,01/05/2014,01/05/2014 01:50:52 PM,01/05/2014 01:50:52 PM,01/05/2014 01:53:33 PM,01/05/2014 01:54:44 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 02:00:15 PM,FULTON ST/OCTAVIA ST,SF,94102,B02,36,3264,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7785379278328, -122.424998168099)",140050197-E36 +130220037,E36,13007468,Medical Incident,01/22/2013,01/21/2013,01/22/2013 03:25:43 AM,01/22/2013 03:27:35 AM,01/22/2013 03:29:04 AM,01/22/2013 03:32:26 AM,01/22/2013 03:33:18 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 03:41:07 AM,1200 Block of MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",130220037-E36 +123600306,88,12120622,Medical Incident,12/25/2012,12/25/2012,12/25/2012 09:40:12 PM,12/25/2012 09:42:18 PM,12/25/2012 09:43:24 PM,12/25/2012 09:43:33 PM,12/25/2012 09:46:59 PM,12/25/2012 09:59:04 PM,12/25/2012 10:12:19 PM,Code 2 Transport,12/25/2012 10:58:00 PM,2800 Block of VAN NESS AVE,SF,94123,B04,16,3145,2,3,3,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8017750305034, -122.424806563149)",123600306-88 +112050340,E44,11067880,Medical Incident,07/24/2011,07/24/2011,07/24/2011 09:27:04 PM,07/24/2011 09:27:52 PM,07/24/2011 09:28:02 PM,07/24/2011 09:28:52 PM,07/24/2011 09:33:15 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/24/2011 09:54:20 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",112050340-E44 +110840312,RC1,11027776,Medical Incident,03/25/2011,03/25/2011,03/25/2011 06:02:56 PM,03/25/2011 06:04:56 PM,03/25/2011 06:05:47 PM,04/25/2016 02:05:27 PM,03/25/2011 06:11:13 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 06:20:23 PM,200 Block of RITCH ST,SF,94107,B03,8,2174,3,3,3,true,,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.780239398249, -122.395660355295)",110840312-RC1 +111800003,T07,11059278,Structure Fire,06/29/2011,06/28/2011,06/29/2011 12:08:37 AM,06/29/2011 12:08:38 AM,06/29/2011 12:08:53 AM,06/29/2011 12:10:47 AM,06/29/2011 12:13:11 AM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/29/2011 12:40:32 AM,2400 Block of 22ND ST,SF,94110,B10,37,2551,3,3,3,false,,1,TRUCK,3,10,10,Potrero Hill,"(37.7569910867324, -122.405001139718)",111800003-T07 +130470139,B01,13015960,Fuel Spill,02/16/2013,02/16/2013,02/16/2013 09:04:49 AM,02/16/2013 09:07:41 AM,02/16/2013 09:08:36 AM,02/16/2013 09:10:30 AM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/16/2013 09:27:23 AM,400 Block of SPEAR ST,SF,94105,B03,35,2113,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.788336837763, -122.388899507163)",130470139-B01 +160701984,52,16027882,Medical Incident,03/10/2016,03/10/2016,03/10/2016 02:13:59 PM,03/10/2016 02:15:39 PM,03/10/2016 02:17:29 PM,03/10/2016 02:17:38 PM,03/10/2016 02:26:56 PM,03/10/2016 02:46:49 PM,03/10/2016 02:53:02 PM,Code 2 Transport,03/10/2016 03:15:06 PM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",160701984-52 +160322371,67,16012640,Medical Incident,02/01/2016,02/01/2016,02/01/2016 03:55:09 PM,02/01/2016 03:55:35 PM,02/01/2016 03:55:46 PM,02/01/2016 03:56:51 PM,02/01/2016 03:59:06 PM,02/01/2016 04:11:56 PM,02/01/2016 04:22:16 PM,Code 2 Transport,02/01/2016 05:03:27 PM,3300 Block of 22ND ST,San Francisco,94110,B06,11,5471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7552738020119, -122.422313025926)",160322371-67 +132790056,E01,13094781,Medical Incident,10/06/2013,10/05/2013,10/06/2013 02:16:31 AM,10/06/2013 02:18:13 AM,10/06/2013 02:18:46 AM,10/06/2013 02:19:44 AM,10/06/2013 02:23:02 AM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/06/2013 02:25:07 AM,1200 Block of MARKET ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7780365108208, -122.415429100912)",132790056-E01 +140950330,58,14032073,Medical Incident,04/05/2014,04/05/2014,04/05/2014 07:52:58 PM,04/05/2014 07:53:27 PM,04/05/2014 07:53:35 PM,04/05/2014 07:53:59 PM,04/05/2014 07:59:14 PM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,No Merit,04/05/2014 08:01:50 PM,900 Block of HAMPSHIRE ST,SAN FRANCISCO,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Potrero Hill,"(37.7569109782313, -122.407609182364)",140950330-58 +113140232,E12,11104368,Medical Incident,11/10/2011,11/10/2011,11/10/2011 03:08:44 PM,11/10/2011 03:09:38 PM,11/10/2011 03:09:53 PM,11/10/2011 03:10:45 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,No Merit,11/10/2011 03:23:29 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",113140232-E12 +132270308,AM14,13076706,Medical Incident,08/15/2013,08/15/2013,08/15/2013 06:56:08 PM,08/15/2013 06:57:05 PM,08/15/2013 06:57:31 PM,08/15/2013 06:58:28 PM,08/15/2013 07:02:48 PM,08/15/2013 07:15:11 PM,08/15/2013 07:29:48 PM,Code 2 Transport,08/15/2013 08:04:35 PM,MISSION ST/15TH ST,SF,94103,B02,36,5279,3,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7666736014927, -122.419825235405)",132270308-AM14 +123320158,E17,12110333,Medical Incident,11/27/2012,11/27/2012,11/27/2012 12:25:11 PM,11/27/2012 12:25:46 PM,11/27/2012 12:25:56 PM,11/27/2012 12:27:30 PM,11/27/2012 12:29:26 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/27/2012 12:40:19 PM,0 Block of HUDSON AVE,SF,94124,B10,17,6626,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324208265708, -122.379091692307)",123320158-E17 +132910184,B07,13099000,Structure Fire,10/18/2013,10/18/2013,10/18/2013 12:00:08 PM,10/18/2013 12:01:06 PM,10/18/2013 12:01:22 PM,10/18/2013 12:02:33 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/18/2013 12:06:39 PM,2800 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,false,Alarm,1,CHIEF,8,4,2,Pacific Heights,"(37.78801561135, -122.441285735387)",132910184-B07 +130290201,E08,13009936,Structure Fire,01/29/2013,01/29/2013,01/29/2013 01:06:08 PM,01/29/2013 01:08:08 PM,01/29/2013 01:08:20 PM,01/29/2013 01:09:27 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/29/2013 01:26:46 PM,0 Block of CLARENCE PL,SF,94107,B03,8,2172,3,3,3,true,Alarm,1,ENGINE,10,3,6,Financial District/South Beach,"(37.7796198209959, -122.39254196336)",130290201-E08 +160522829,89,16020927,Medical Incident,02/21/2016,02/21/2016,02/21/2016 06:39:24 PM,02/21/2016 06:42:37 PM,02/21/2016 06:43:00 PM,02/21/2016 06:45:21 PM,02/21/2016 06:55:55 PM,02/21/2016 07:11:23 PM,02/21/2016 07:27:48 PM,Code 2 Transport,02/21/2016 07:53:27 PM,0 Block of POPE ST,San Francisco,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7150417603203, -122.441705850451)",160522829-89 +160862297,KM12,16034228,Medical Incident,03/26/2016,03/26/2016,03/26/2016 03:33:17 PM,03/26/2016 03:38:23 PM,03/26/2016 03:38:53 PM,03/26/2016 03:40:02 PM,03/26/2016 03:44:42 PM,03/26/2016 04:03:11 PM,03/26/2016 04:23:38 PM,Code 2 Transport,03/26/2016 04:53:47 PM,200 Block of AMHERST ST,San Francisco,94134,B09,42,6147,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7265412602599, -122.416188644141)",160862297-KM12 +110230046,T10,11007469,Alarms,01/23/2011,01/22/2011,01/23/2011 03:34:41 AM,01/23/2011 03:36:03 AM,01/23/2011 03:37:02 AM,01/23/2011 03:38:35 AM,01/23/2011 03:41:35 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/23/2011 03:52:12 AM,2900 Block of CLAY ST,SF,94115,B04,10,4232,3,3,3,false,,1,TRUCK,2,4,2,Pacific Heights,"(37.7897133756957, -122.441630202765)",110230046-T10 +160603795,70,16024125,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:11:58 PM,02/29/2016 11:13:57 PM,02/29/2016 11:14:21 PM,02/29/2016 11:14:59 PM,02/29/2016 11:39:25 PM,02/29/2016 11:39:34 PM,02/29/2016 11:49:38 PM,Code 2 Transport,03/01/2016 12:26:05 AM,400 Block of JESSIE ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7820442091855, -122.408519525275)",160603795-70 +102310166,KM01,10072686,Medical Incident,08/19/2010,08/19/2010,08/19/2010 12:24:20 PM,08/19/2010 12:25:39 PM,08/19/2010 12:25:49 PM,08/19/2010 12:26:13 PM,08/19/2010 12:31:49 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Patient Declined Transport,08/19/2010 12:52:23 PM,MISSION ST/22ND ST,SF,94110,B06,7,5472,2,2,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",102310166-KM01 +121540323,E01,12051110,Outside Fire,06/02/2012,06/02/2012,06/02/2012 09:08:46 PM,06/02/2012 09:10:33 PM,06/02/2012 09:10:54 PM,04/25/2016 01:58:24 PM,06/02/2012 09:13:05 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 09:16:51 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,Fire,1,ENGINE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",121540323-E01 +132790375,84,13095062,Medical Incident,10/06/2013,10/06/2013,10/06/2013 07:32:24 PM,10/06/2013 07:32:59 PM,10/06/2013 07:35:36 PM,10/06/2013 07:36:04 PM,10/06/2013 07:39:21 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/06/2013 07:41:45 PM,1000 Block of GUERRERO ST,SF,94110,B06,11,5471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7539748976935, -122.422954531475)",132790375-84 +160823767,79,16032751,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:25:12 PM,03/22/2016 09:25:45 PM,03/22/2016 09:25:56 PM,03/22/2016 09:27:58 PM,03/22/2016 09:31:51 PM,03/22/2016 09:49:41 PM,03/22/2016 09:58:26 PM,Code 2 Transport,03/22/2016 10:27:32 PM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",160823767-79 +110390145,RS2,11012899,Structure Fire,02/08/2011,02/08/2011,02/08/2011 11:28:37 AM,02/08/2011 11:29:57 AM,02/08/2011 11:30:13 AM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 11:36:28 AM,3600 Block of FOLSOM ST,SF,94110,B06,32,5717,3,3,3,false,,1,RESCUE SQUAD,9,10,9,Bernal Heights,"(37.7408768610165, -122.413190763492)",110390145-RS2 +120410140,E13,12013622,Medical Incident,02/10/2012,02/10/2012,02/10/2012 10:48:55 AM,02/10/2012 10:50:28 AM,02/10/2012 10:51:32 AM,02/10/2012 10:51:43 AM,02/10/2012 10:54:40 AM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 11:10:09 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",120410140-E13 +140290371,85,14010052,Medical Incident,01/29/2014,01/29/2014,01/29/2014 11:25:10 PM,01/29/2014 11:26:14 PM,01/29/2014 11:26:30 PM,01/29/2014 11:26:58 PM,01/29/2014 11:33:06 PM,01/29/2014 11:43:01 PM,01/29/2014 11:53:44 PM,Code 2 Transport,01/30/2014 12:09:08 AM,HOLLOWAY AV/CARDENAS AV,SF,94132,B08,19,8751,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7207728020227, -122.477020857984)",140290371-85 +113480157,RS1,11115432,Medical Incident,12/14/2011,12/14/2011,12/14/2011 10:54:38 AM,12/14/2011 10:55:25 AM,12/14/2011 10:55:31 AM,12/14/2011 10:55:43 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 10:59:40 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,3,3,false,,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7734664897325, -122.413546904215)",113480157-RS1 +160182090,AM04,16007279,Medical Incident,01/18/2016,01/18/2016,01/18/2016 03:39:27 PM,01/18/2016 03:39:27 PM,01/18/2016 03:40:01 PM,01/18/2016 03:41:07 PM,01/18/2016 03:43:09 PM,01/18/2016 03:58:17 PM,01/18/2016 04:19:12 PM,Code 2 Transport,01/18/2016 04:48:38 PM,TURK ST/LAGUNA ST,San Francisco,94102,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7811171261872, -122.427202758133)",160182090-AM04 +121880058,E01,12062537,Structure Fire,07/06/2012,07/05/2012,07/06/2012 06:35:59 AM,07/06/2012 06:36:00 AM,07/06/2012 06:36:19 AM,07/06/2012 06:37:06 AM,07/06/2012 06:39:42 AM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/06/2012 06:40:10 AM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",121880058-E01 +120330365,AM10,12011068,Medical Incident,02/02/2012,02/02/2012,02/02/2012 09:10:33 PM,02/02/2012 09:16:10 PM,02/02/2012 09:16:29 PM,02/02/2012 09:17:03 PM,02/02/2012 09:22:06 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,No Merit,02/02/2012 10:00:19 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",120330365-AM10 +103560014,E03,10114131,Medical Incident,12/22/2010,12/21/2010,12/22/2010 12:43:21 AM,12/22/2010 12:43:46 AM,12/22/2010 12:44:06 AM,12/22/2010 12:45:18 AM,12/22/2010 12:48:16 AM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,No Merit,12/22/2010 12:52:11 AM,200 Block of JONES ST,SF,94102,B03,1,1456,3,2,2,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",103560014-E03 +113170327,KM07,11105463,Medical Incident,11/13/2011,11/13/2011,11/13/2011 09:26:05 PM,11/13/2011 09:26:47 PM,11/13/2011 09:26:58 PM,11/13/2011 09:28:29 PM,11/13/2011 09:41:15 PM,11/13/2011 09:56:15 PM,11/13/2011 10:20:40 PM,Code 2 Transport,11/13/2011 09:42:42 PM,0 Block of ACEVEDO AVE,SF,94132,B08,19,8582,3,3,3,false,,1,PRIVATE,2,8,7,Lakeshore,"(37.7197628609881, -122.483852302758)",113170327-KM07 +121740195,68,12057778,Medical Incident,06/22/2012,06/22/2012,06/22/2012 02:23:22 PM,06/22/2012 02:24:06 PM,06/22/2012 02:24:13 PM,06/22/2012 02:24:21 PM,06/22/2012 02:27:00 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,No Merit,06/22/2012 02:34:38 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642910155103, -122.418689416733)",121740195-68 +140180065,E07,14006079,Structure Fire,01/18/2014,01/17/2014,01/18/2014 03:37:20 AM,01/18/2014 03:40:52 AM,01/18/2014 03:43:27 AM,01/18/2014 03:45:05 AM,01/18/2014 03:48:03 AM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/18/2014 04:05:08 AM,POTRERO AV/22ND ST,SF,94110,B10,7,2553,3,3,3,true,Alarm,1,ENGINE,1,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",140180065-E07 +160281120,83,16011029,Medical Incident,01/28/2016,01/28/2016,01/28/2016 10:06:13 AM,01/28/2016 10:08:08 AM,01/28/2016 10:08:14 AM,01/28/2016 10:08:21 AM,01/28/2016 10:19:00 AM,01/28/2016 10:45:54 AM,01/28/2016 10:55:32 AM,Code 2 Transport,01/28/2016 12:09:51 PM,FELL ST/DIVISADERO ST,San Francisco,94117,B05,21,4145,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7740616455365, -122.437610622947)",160281120-83 +122450091,KM09,12080925,Medical Incident,09/01/2012,09/01/2012,09/01/2012 08:46:16 AM,09/01/2012 08:46:34 AM,09/01/2012 08:46:54 AM,09/01/2012 08:47:23 AM,09/01/2012 08:50:03 AM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,No Merit,09/01/2012 08:54:17 AM,16TH ST/JULIAN AV,SF,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7649768996733, -122.420901272002)",122450091-KM09 +113200373,E05,11106438,Medical Incident,11/16/2011,11/16/2011,11/16/2011 08:38:01 PM,11/16/2011 08:39:53 PM,11/16/2011 08:40:32 PM,11/16/2011 08:42:07 PM,11/16/2011 08:44:23 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/16/2011 08:54:02 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",113200373-E05 +130930390,E07,13031315,Medical Incident,04/03/2013,04/03/2013,04/03/2013 11:40:04 PM,04/03/2013 11:42:05 PM,04/03/2013 11:42:25 PM,04/03/2013 11:44:01 PM,04/03/2013 11:46:19 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Other,04/03/2013 11:52:46 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,1,1,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",130930390-E07 +131140220,E18,13038467,Structure Fire,04/24/2013,04/24/2013,04/24/2013 02:34:32 PM,04/24/2013 02:34:32 PM,04/24/2013 02:34:37 PM,04/24/2013 02:35:53 PM,04/24/2013 02:38:14 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 02:38:39 PM,39TH AV/SANTIAGO ST,SF,94116,B08,18,7621,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7439739942875, -122.497248181236)",131140220-E18 +113570199,E01,11118598,Medical Incident,12/23/2011,12/23/2011,12/23/2011 10:27:51 AM,12/23/2011 10:30:14 AM,12/23/2011 10:32:01 AM,12/23/2011 10:33:00 AM,12/23/2011 10:38:44 AM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 10:40:06 AM,3RD ST/HOWARD ST,SF,94105,B03,1,2177,2,2,2,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",113570199-E01 +121450107,T19,12048073,Alarms,05/24/2012,05/24/2012,05/24/2012 10:09:37 AM,05/24/2012 10:10:47 AM,05/24/2012 10:10:52 AM,05/24/2012 10:11:58 AM,05/24/2012 10:12:39 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 10:17:38 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",121450107-T19 +133450189,55,13117004,Medical Incident,12/11/2013,12/11/2013,12/11/2013 12:04:57 PM,12/11/2013 12:06:35 PM,12/11/2013 12:09:16 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,Other,12/11/2013 12:09:43 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,1,1,2,true,Non Life-threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133450189-55 +132620073,E21,13088658,Medical Incident,09/19/2013,09/19/2013,09/19/2013 08:32:40 AM,09/19/2013 08:34:26 AM,09/19/2013 08:34:53 AM,09/19/2013 08:35:38 AM,09/19/2013 08:38:25 AM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 08:52:57 AM,MASONIC AV/OAK ST,SF,94117,B05,21,4465,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Golden Gate Park,"(37.7720803934485, -122.445716664284)",132620073-E21 +121700313,87,12056538,Medical Incident,06/18/2012,06/18/2012,06/18/2012 07:11:32 PM,06/18/2012 07:12:41 PM,06/18/2012 07:12:56 PM,06/18/2012 07:13:05 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,04/25/2016 01:58:08 PM,300 Block of SUTTER ST,SF,94108,B01,1,1324,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,1,3,Financial District/South Beach,"(37.7895868780225, -122.406188769255)",121700313-87 +160302784,88,16011874,Medical Incident,01/30/2016,01/30/2016,01/30/2016 05:02:27 PM,01/30/2016 05:04:12 PM,01/30/2016 05:07:11 PM,01/30/2016 05:07:20 PM,01/30/2016 05:15:00 PM,01/30/2016 05:22:55 PM,01/30/2016 05:47:43 PM,Code 2 Transport,01/30/2016 06:24:19 PM,100 Block of GIRARD ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7303933049122, -122.40577188604)",160302784-88 +113290198,E18,11109183,Medical Incident,11/25/2011,11/25/2011,11/25/2011 05:08:24 PM,11/25/2011 05:10:05 PM,11/25/2011 05:10:31 PM,11/25/2011 05:11:39 PM,11/25/2011 05:13:36 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 05:28:29 PM,1700 Block of 36TH AVE,SF,94122,B08,18,7562,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.754372387681, -122.494686607082)",113290198-E18 +160162934,58,16006542,Medical Incident,01/16/2016,01/16/2016,01/16/2016 06:36:51 PM,01/16/2016 06:38:10 PM,01/16/2016 06:38:26 PM,01/16/2016 06:38:32 PM,01/16/2016 06:53:42 PM,01/16/2016 07:13:29 PM,01/16/2016 07:33:02 PM,Code 2 Transport,01/16/2016 08:04:39 PM,400 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8733,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7310685242349, -122.477740350434)",160162934-58 +121040157,B02,12034436,Alarms,04/13/2012,04/13/2012,04/13/2012 12:57:23 PM,04/13/2012 12:58:37 PM,04/13/2012 12:58:44 PM,04/13/2012 12:59:14 PM,04/13/2012 01:04:35 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Fire,04/13/2012 01:08:40 PM,1100 Block of MARIPOSA ST,SF,94107,B03,29,2431,3,3,3,false,Alarm,1,CHIEF,2,3,10,Potrero Hill,"(37.7639902811821, -122.39520057273)",121040157-B02 +160703843,KM03,16028051,Medical Incident,03/10/2016,03/10/2016,03/10/2016 11:25:57 PM,03/10/2016 11:25:57 PM,03/10/2016 11:26:17 PM,03/10/2016 11:26:45 PM,03/10/2016 11:34:13 PM,03/10/2016 11:52:37 PM,03/10/2016 11:59:45 PM,Code 2 Transport,03/11/2016 12:30:42 AM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7769455318934, -122.416807079177)",160703843-KM03 +133550191,E16,13120664,Gas Leak (Natural and LP Gases),12/21/2013,12/21/2013,12/21/2013 12:17:43 PM,12/21/2013 12:19:41 PM,12/21/2013 12:19:47 PM,12/21/2013 12:23:08 PM,12/21/2013 12:21:11 PM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,No Merit,12/21/2013 12:25:47 PM,2800 Block of GREENWICH ST,SF,94123,B04,16,4313,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7975481450568, -122.446460905905)",133550191-E16 +160330132,88,16012811,Medical Incident,02/02/2016,02/01/2016,02/02/2016 01:08:45 AM,02/02/2016 01:10:59 AM,02/02/2016 01:11:10 AM,02/02/2016 01:11:25 AM,02/02/2016 01:19:01 AM,02/02/2016 01:33:51 AM,02/02/2016 01:44:42 AM,Code 2 Transport,02/02/2016 02:24:12 AM,100 Block of COLE ST,San Francisco,94117,B05,21,4535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7737734460472, -122.451136840346)",160330132-88 +160910425,75,16035964,Medical Incident,03/31/2016,03/30/2016,03/31/2016 05:32:16 AM,03/31/2016 05:33:02 AM,03/31/2016 05:34:46 AM,03/31/2016 05:34:53 AM,03/31/2016 05:37:09 AM,03/31/2016 05:52:03 AM,03/31/2016 06:36:10 AM,Code 3 Transport,03/31/2016 06:48:34 AM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160910425-75 +130010492,T01,13000407,Structure Fire,01/01/2013,01/01/2013,01/01/2013 06:52:49 PM,01/01/2013 06:52:49 PM,01/01/2013 06:52:55 PM,01/01/2013 06:54:36 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 06:56:34 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",130010492-T01 +133050254,68,13103683,Medical Incident,11/01/2013,11/01/2013,11/01/2013 01:15:40 PM,11/01/2013 01:16:13 PM,11/01/2013 01:17:48 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/01/2013 01:18:45 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7661259454801, -122.42207304894)",133050254-68 +103610327,E41,10115932,Medical Incident,12/27/2010,12/27/2010,12/27/2010 09:16:38 PM,12/27/2010 09:18:09 PM,12/27/2010 09:18:37 PM,12/27/2010 09:19:46 PM,12/27/2010 09:21:34 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,12/27/2010 09:22:05 PM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,false,,1,ENGINE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",103610327-E41 +110600297,E03,11019781,Medical Incident,03/01/2011,03/01/2011,03/01/2011 06:37:05 PM,03/01/2011 06:38:58 PM,03/01/2011 06:39:18 PM,03/01/2011 06:41:46 PM,03/01/2011 06:47:15 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 06:53:29 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",110600297-E03 +130820306,E23,13027556,Structure Fire,03/23/2013,03/23/2013,03/23/2013 08:34:37 PM,03/23/2013 08:35:26 PM,03/23/2013 08:35:35 PM,03/23/2013 08:36:33 PM,03/23/2013 08:39:29 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Other,03/23/2013 08:56:12 PM,2200 Block of JUDAH ST,SF,94122,B08,18,7513,3,3,3,false,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7612443851836, -122.486100308846)",130820306-E23 +160340296,KM07,16013232,Medical Incident,02/03/2016,02/02/2016,02/03/2016 03:38:22 AM,02/03/2016 03:38:56 AM,02/03/2016 03:39:07 AM,02/03/2016 03:42:38 AM,02/03/2016 03:45:16 AM,02/03/2016 04:09:02 AM,02/03/2016 04:23:36 AM,Code 2 Transport,02/03/2016 04:53:23 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160340296-KM07 +160682078,65,16027148,Medical Incident,03/08/2016,03/08/2016,03/08/2016 02:21:46 PM,03/08/2016 02:23:33 PM,03/08/2016 02:26:50 PM,03/08/2016 02:26:50 PM,03/08/2016 02:32:38 PM,03/08/2016 02:51:07 PM,03/08/2016 03:10:42 PM,Code 2 Transport,03/08/2016 03:29:44 PM,VAN NESS AV/GOLDEN GATE AV,San Francisco,94102,B02,36,3164,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",160682078-65 +120520258,AM02,12017236,Medical Incident,02/21/2012,02/21/2012,02/21/2012 04:14:40 PM,02/21/2012 04:15:29 PM,02/21/2012 04:15:43 PM,02/21/2012 04:16:05 PM,02/21/2012 04:18:26 PM,02/21/2012 04:27:57 PM,02/21/2012 04:38:33 PM,Code 2 Transport,02/21/2012 05:06:39 PM,VALENCIA ST/18TH ST,SF,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Mission,"(37.7617009099893, -122.421578400735)",120520258-AM02 +160353821,KM06,16014022,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:00:17 PM,02/04/2016 10:00:48 PM,02/04/2016 10:00:56 PM,02/04/2016 10:01:17 PM,02/04/2016 10:14:21 PM,02/04/2016 10:27:01 PM,02/04/2016 10:47:43 PM,Code 2 Transport,02/04/2016 11:01:28 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160353821-KM06 +113170166,B10,11105308,Other,11/13/2011,11/13/2011,11/13/2011 11:19:28 AM,11/13/2011 11:20:57 AM,11/13/2011 11:21:19 AM,11/13/2011 11:22:36 AM,11/13/2011 11:21:58 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Fire,11/13/2011 12:33:58 PM,800 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,3,3,false,,1,CHIEF,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",113170166-B10 +111780389,96,11058945,Medical Incident,06/27/2011,06/27/2011,06/27/2011 11:05:09 PM,06/27/2011 11:06:12 PM,06/27/2011 11:06:44 PM,06/27/2011 11:07:07 PM,06/27/2011 11:12:05 PM,06/27/2011 11:39:16 PM,06/27/2011 11:49:17 PM,Code 2 Transport,06/28/2011 12:24:22 AM,600 Block of FULTON ST,SF,94102,B02,5,3412,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7781781708138, -122.428256337547)",111780389-96 +121160269,T05,12038517,Alarms,04/25/2012,04/25/2012,04/25/2012 05:00:20 PM,04/25/2012 05:02:36 PM,04/25/2012 05:04:53 PM,04/25/2012 05:06:18 PM,04/25/2012 05:07:52 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/25/2012 05:10:34 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",121160269-T05 +110600338,E10,11019820,Traffic Collision,03/01/2011,03/01/2011,03/01/2011 08:30:41 PM,03/01/2011 08:31:26 PM,03/01/2011 08:39:02 PM,03/01/2011 08:39:18 PM,03/01/2011 08:40:00 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/01/2011 08:42:38 PM,GEARY BL/PALM AV,SF,94118,B07,10,4446,3,3,3,true,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7813145853948, -122.457733042674)",110600338-E10 +133370208,AM02,13114242,Medical Incident,12/03/2013,12/03/2013,12/03/2013 01:42:23 PM,12/03/2013 01:43:22 PM,12/03/2013 01:43:40 PM,12/03/2013 01:44:58 PM,12/03/2013 01:49:30 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 01:52:59 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",133370208-AM02 +103650330,T05,10117223,Alarms,12/31/2010,12/31/2010,12/31/2010 09:24:53 PM,12/31/2010 09:26:35 PM,12/31/2010 09:27:23 PM,12/31/2010 09:27:54 PM,12/31/2010 09:28:55 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 09:35:55 PM,1100 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,false,,1,TRUCK,1,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",103650330-T05 +121300217,E02,12043288,Medical Incident,05/09/2012,05/09/2012,05/09/2012 02:48:55 PM,05/09/2012 02:50:37 PM,05/09/2012 02:55:19 PM,05/09/2012 02:56:00 PM,05/09/2012 02:57:03 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,No Merit,05/09/2012 02:59:28 PM,400 Block of BUSH ST,SF,94108,B01,13,1315,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7906704035857, -122.405181396784)",121300217-E02 +112420228,T13,11079854,Medical Incident,08/30/2011,08/30/2011,08/30/2011 03:53:45 PM,08/30/2011 03:54:34 PM,08/30/2011 03:54:52 PM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Other,08/30/2011 03:56:25 PM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,E,E,3,false,,1,TRUCK,5,1,3,Financial District/South Beach,"(37.7930615497479, -122.401553026249)",112420228-T13 +160730902,KM06,16028926,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:44:54 AM,03/13/2016 10:44:54 AM,03/13/2016 10:45:03 AM,03/13/2016 10:45:38 AM,03/13/2016 10:50:33 AM,03/13/2016 11:09:50 AM,03/13/2016 11:26:29 AM,Code 2 Transport,03/13/2016 12:01:57 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160730902-KM06 +160823480,AM20,16032724,Medical Incident,03/22/2016,03/22/2016,03/22/2016 07:53:19 PM,03/22/2016 07:55:40 PM,03/22/2016 07:56:39 PM,03/22/2016 07:57:26 PM,03/22/2016 08:12:06 PM,03/22/2016 08:25:57 PM,03/22/2016 08:42:20 PM,Code 2 Transport,03/22/2016 09:10:53 PM,600 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.78147394156, -122.42068958116)",160823480-AM20 +140400261,75,14013639,Medical Incident,02/09/2014,02/09/2014,02/09/2014 03:29:37 PM,02/09/2014 03:29:57 PM,02/09/2014 03:30:57 PM,02/09/2014 03:31:51 PM,02/09/2014 03:38:16 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Against Medical Advice,02/09/2014 04:34:37 PM,0 Block of ARNOLD AVE,SF,94110,B06,32,5644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7345537872053, -122.419581868301)",140400261-75 +160903980,60,16035901,Medical Incident,03/30/2016,03/30/2016,03/30/2016 10:27:33 PM,03/30/2016 10:29:42 PM,03/30/2016 10:29:57 PM,03/30/2016 10:30:08 PM,03/30/2016 10:35:16 PM,03/30/2016 10:41:19 PM,03/30/2016 10:52:04 PM,Code 2 Transport,03/30/2016 11:37:05 PM,100 Block of LOWER TER,San Francisco,94114,B05,12,5167,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7633286063641, -122.442889335026)",160903980-60 +140120184,B10,14004154,Alarms,01/12/2014,01/12/2014,01/12/2014 02:21:09 PM,01/12/2014 02:22:18 PM,01/12/2014 02:23:23 PM,01/12/2014 02:24:31 PM,01/12/2014 02:27:14 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 02:44:25 PM,2700 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,3,3,3,false,Alarm,1,CHIEF,2,10,9,Portola,"(37.7270168369018, -122.403413375689)",140120184-B10 +132200017,94,13074173,Medical Incident,08/08/2013,08/07/2013,08/08/2013 02:06:09 AM,08/08/2013 02:06:46 AM,08/08/2013 02:07:22 AM,08/08/2013 02:07:32 AM,08/08/2013 02:14:28 AM,08/08/2013 02:31:15 AM,08/08/2013 03:11:24 AM,Code 2 Transport,08/08/2013 03:27:22 AM,BAYSHORE BL/SUNNYDALE AV,SF,94134,B10,44,6254,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Bayview Hunters Point,"(37.7088536077159, -122.405109455132)",132200017-94 +160122619,57,16004846,Medical Incident,01/12/2016,01/12/2016,01/12/2016 04:39:12 PM,01/12/2016 04:39:28 PM,01/12/2016 04:40:03 PM,01/12/2016 04:40:12 PM,01/12/2016 04:51:13 PM,01/12/2016 05:05:28 PM,01/12/2016 05:18:22 PM,Code 2 Transport,01/12/2016 06:06:50 PM,100 Block of DALEWOOD WY,San Francisco,94127,B09,39,8257,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7378822528922, -122.456603666093)",160122619-57 +121660051,E06,12054955,Alarms,06/14/2012,06/13/2012,06/14/2012 05:48:53 AM,06/14/2012 05:50:24 AM,06/14/2012 05:50:35 AM,04/25/2016 01:58:13 PM,06/14/2012 05:54:37 AM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Other,06/14/2012 05:59:16 AM,100 Block of DOLORES ST,SF,94103,B02,6,5227,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7666816346904, -122.42642250825)",121660051-E06 +111890137,96,11062446,Medical Incident,07/08/2011,07/08/2011,07/08/2011 10:34:48 AM,07/08/2011 10:36:13 AM,07/08/2011 10:37:11 AM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,Other,04/25/2016 02:03:46 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,1,1,2,false,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",111890137-96 +120890319,E42,12029584,Medical Incident,03/29/2012,03/29/2012,03/29/2012 08:51:48 PM,03/29/2012 08:52:33 PM,03/29/2012 08:53:23 PM,03/29/2012 08:53:34 PM,03/29/2012 08:56:28 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Other,03/29/2012 09:03:43 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",120890319-E42 +102520262,KM04,10079685,Medical Incident,09/09/2010,09/09/2010,09/09/2010 05:46:59 PM,09/09/2010 05:49:39 PM,09/09/2010 05:50:16 PM,09/09/2010 05:50:52 PM,09/09/2010 05:52:34 PM,09/09/2010 06:07:45 PM,09/09/2010 06:17:02 PM,Code 2 Transport,09/09/2010 06:43:11 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,,1,PRIVATE,1,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",102520262-KM04 +112010278,E12,11066338,Medical Incident,07/20/2011,07/20/2011,07/20/2011 03:50:43 PM,07/20/2011 03:52:07 PM,07/20/2011 03:53:19 PM,07/20/2011 03:54:24 PM,07/20/2011 03:56:24 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/20/2011 04:00:46 PM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",112010278-E12 +112000062,94,11065861,Medical Incident,07/19/2011,07/18/2011,07/19/2011 07:34:31 AM,07/19/2011 07:34:52 AM,07/19/2011 07:35:08 AM,07/19/2011 07:35:24 AM,07/19/2011 07:41:15 AM,07/19/2011 07:54:27 AM,07/19/2011 08:16:46 AM,Code 2 Transport,07/19/2011 08:46:59 AM,700 Block of FOERSTER ST,SF,94127,B09,15,8247,3,3,3,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7350921935101, -122.448959925357)",112000062-94 +102620269,79,10082959,Medical Incident,09/19/2010,09/19/2010,09/19/2010 05:19:02 PM,09/19/2010 05:21:18 PM,09/19/2010 05:21:45 PM,09/19/2010 05:22:52 PM,09/19/2010 05:42:55 PM,09/19/2010 05:49:22 PM,09/19/2010 06:12:24 PM,Code 2 Transport,09/19/2010 06:28:58 PM,1000 Block of LE CONTE AVE,SF,94124,B10,44,6575,3,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",102620269-79 +160073268,78,16002977,Medical Incident,01/07/2016,01/07/2016,01/07/2016 07:24:22 PM,01/07/2016 07:27:38 PM,01/07/2016 07:28:17 PM,01/07/2016 07:28:21 PM,01/07/2016 07:35:08 PM,01/07/2016 07:57:49 PM,01/07/2016 08:05:58 PM,Code 2 Transport,01/07/2016 08:36:42 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160073268-78 +140400115,83,14013510,Medical Incident,02/09/2014,02/08/2014,02/09/2014 07:56:54 AM,02/09/2014 07:58:58 AM,02/09/2014 08:01:26 AM,02/09/2014 08:02:13 AM,02/09/2014 08:13:37 AM,02/09/2014 08:24:01 AM,02/09/2014 08:43:11 AM,Code 2 Transport,02/09/2014 08:55:58 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7799892619986, -122.407376463936)",140400115-83 +122180176,T05,12072305,Structure Fire,08/05/2012,08/05/2012,08/05/2012 12:48:14 PM,08/05/2012 12:49:43 PM,08/05/2012 12:50:21 PM,08/05/2012 12:51:15 PM,08/05/2012 12:54:28 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 12:59:48 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,Fire,1,TRUCK,6,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",122180176-T05 +132960226,E38,13100640,Medical Incident,10/23/2013,10/23/2013,10/23/2013 04:33:06 PM,10/23/2013 04:34:02 PM,10/23/2013 04:34:29 PM,10/23/2013 04:35:40 PM,10/23/2013 04:37:11 PM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/23/2013 04:51:51 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",132960226-E38 +160183041,68,16007374,Medical Incident,01/18/2016,01/18/2016,01/18/2016 08:21:32 PM,01/18/2016 08:22:47 PM,01/18/2016 08:23:09 PM,01/18/2016 08:24:26 PM,01/18/2016 08:31:21 PM,01/18/2016 08:44:09 PM,01/18/2016 09:06:02 PM,Code 2 Transport,01/18/2016 09:18:23 PM,1400 Block of GUERRERO ST,San Francisco,94110,B06,11,5612,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.74840056927, -122.422415578627)",160183041-68 +160631155,AM06,16025013,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:01:50 AM,03/03/2016 10:01:50 AM,03/03/2016 10:02:14 AM,03/03/2016 10:03:42 AM,03/03/2016 10:11:48 AM,03/03/2016 10:26:51 AM,03/03/2016 10:44:48 AM,Code 2 Transport,03/03/2016 11:23:02 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160631155-AM06 +132410071,67,13081199,Medical Incident,08/29/2013,08/29/2013,08/29/2013 08:03:50 AM,08/29/2013 08:04:20 AM,08/29/2013 08:05:04 AM,08/29/2013 08:05:17 AM,08/29/2013 08:22:07 AM,08/29/2013 08:27:07 AM,08/29/2013 08:41:06 AM,Code 2 Transport,08/29/2013 09:09:42 AM,1100 Block of MARKET ST,SF,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",132410071-67 +120960064,83,12031692,Medical Incident,04/05/2012,04/05/2012,04/05/2012 08:06:17 AM,04/05/2012 08:06:31 AM,04/05/2012 08:08:18 AM,04/05/2012 08:09:11 AM,04/05/2012 08:08:39 AM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,No Merit,04/05/2012 08:25:51 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",120960064-83 +111420363,79,11047341,Medical Incident,05/22/2011,05/22/2011,05/22/2011 09:38:43 PM,05/22/2011 09:39:17 PM,05/22/2011 09:40:08 PM,05/22/2011 09:40:22 PM,05/22/2011 09:59:16 PM,05/22/2011 10:09:34 PM,05/22/2011 10:17:27 PM,Code 2 Transport,05/22/2011 10:31:56 PM,100 Block of 3RD ST,SF,94103,B03,1,2177,2,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",111420363-79 +160891054,AM10,16035270,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:39:11 AM,03/29/2016 09:41:09 AM,03/29/2016 09:44:18 AM,03/29/2016 09:44:52 AM,03/29/2016 10:00:46 AM,03/29/2016 10:15:57 AM,03/29/2016 10:25:06 AM,Code 2 Transport,03/29/2016 10:46:18 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160891054-AM10 +110940378,91,11031373,Medical Incident,04/04/2011,04/04/2011,04/04/2011 09:51:34 PM,04/04/2011 09:52:33 PM,04/04/2011 09:52:56 PM,04/04/2011 09:53:19 PM,04/04/2011 09:58:39 PM,04/04/2011 10:10:20 PM,04/04/2011 10:21:11 PM,Code 2 Transport,04/04/2011 10:33:30 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,1,2,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",110940378-91 +113470124,RC3,11115064,Medical Incident,12/13/2011,12/13/2011,12/13/2011 10:16:13 AM,12/13/2011 10:17:01 AM,12/13/2011 10:17:38 AM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,Other,12/13/2011 10:21:08 AM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,E,3,true,,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",113470124-RC3 +133270237,E28,13111108,Medical Incident,11/23/2013,11/23/2013,11/23/2013 01:42:09 PM,11/23/2013 01:44:44 PM,11/23/2013 01:45:23 PM,11/23/2013 01:46:54 PM,11/23/2013 02:00:30 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 02:14:49 PM,GRANT AV/BEACH ST,SF,94133,B01,28,939,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8081107530325, -122.409050496518)",133270237-E28 +122000100,E15,12066402,Medical Incident,07/18/2012,07/18/2012,07/18/2012 09:16:48 AM,07/18/2012 09:18:39 AM,07/18/2012 09:19:06 AM,07/18/2012 09:21:03 AM,07/18/2012 09:22:27 AM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,Other,07/18/2012 10:33:07 AM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",122000100-E15 +111560159,E19,11051554,Medical Incident,06/05/2011,06/05/2011,06/05/2011 10:22:22 AM,06/05/2011 10:22:48 AM,06/05/2011 10:23:30 AM,06/05/2011 10:24:00 AM,06/05/2011 10:28:01 AM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 10:43:16 AM,3000 Block of 24TH AVE,SF,94132,B08,19,8734,3,2,2,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7318322915175, -122.479994321927)",111560159-E19 +131350016,E38,13045428,Medical Incident,05/15/2013,05/14/2013,05/15/2013 02:20:19 AM,05/15/2013 02:23:13 AM,05/15/2013 02:24:04 AM,05/15/2013 02:25:41 AM,05/15/2013 02:27:40 AM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,Other,05/15/2013 02:30:40 AM,CALIFORNIA ST/FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7901604705365, -122.423974966155)",131350016-E38 +123010261,E28,12099860,Medical Incident,10/27/2012,10/27/2012,10/27/2012 05:21:39 PM,10/27/2012 05:22:39 PM,10/27/2012 05:23:07 PM,10/27/2012 05:24:16 PM,10/27/2012 05:26:17 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/27/2012 05:46:30 PM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,3,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8084350175869, -122.410774214375)",123010261-E28 +110160113,85,11005283,Medical Incident,01/16/2011,01/16/2011,01/16/2011 08:59:07 AM,01/16/2011 09:00:05 AM,01/16/2011 09:01:36 AM,01/16/2011 09:01:44 AM,01/16/2011 09:17:21 AM,04/25/2016 02:06:34 PM,04/25/2016 02:06:34 PM,Patient Declined Transport,01/16/2011 09:24:50 AM,0 Block of MISSION ROCK ST,SF,94158,B03,8,2231,2,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7731157627784, -122.38857804747)",110160113-85 +160351296,72,16013778,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:43:56 AM,02/04/2016 10:45:32 AM,02/04/2016 10:45:51 AM,02/04/2016 10:46:05 AM,02/04/2016 11:03:19 AM,02/04/2016 11:14:56 AM,02/04/2016 11:51:23 AM,Code 2 Transport,02/04/2016 12:30:37 PM,FOLSOM ST/7TH ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7767461078644, -122.407842061292)",160351296-72 +103230051,54,10103377,Medical Incident,11/19/2010,11/18/2010,11/19/2010 07:37:22 AM,11/19/2010 07:38:24 AM,11/19/2010 07:38:52 AM,11/19/2010 07:39:01 AM,11/19/2010 07:45:20 AM,11/19/2010 08:16:43 AM,11/19/2010 08:32:44 AM,Code 2 Transport,11/19/2010 08:55:17 AM,100 Block of WESTGATE DR,SF,94127,B09,15,8533,1,1,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7292259664459, -122.465027266985)",103230051-54 +110300032,54,11009725,Medical Incident,01/30/2011,01/29/2011,01/30/2011 01:46:10 AM,01/30/2011 01:47:22 AM,01/30/2011 01:48:23 AM,01/30/2011 01:48:35 AM,01/30/2011 01:55:53 AM,01/30/2011 02:16:24 AM,01/30/2011 02:42:14 AM,Code 2 Transport,01/30/2011 02:53:40 AM,700 Block of HARRISON ST,SF,94107,B03,8,2175,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",110300032-54 +160730528,62,16028886,Medical Incident,03/13/2016,03/12/2016,03/13/2016 07:05:42 AM,03/13/2016 07:07:22 AM,03/13/2016 07:07:46 AM,03/13/2016 07:07:53 AM,03/13/2016 07:11:48 AM,03/13/2016 07:33:18 AM,03/13/2016 08:05:44 AM,Code 2 Transport,03/13/2016 08:31:17 AM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",160730528-62 +160250558,AM04,16009803,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:40:40 AM,01/25/2016 06:40:40 AM,01/25/2016 06:41:02 AM,01/25/2016 06:42:12 AM,01/25/2016 06:44:37 AM,01/25/2016 07:08:59 AM,01/25/2016 07:23:51 AM,Code 2 Transport,01/25/2016 08:01:01 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.760933256599, -122.433343331476)",160250558-AM04 +160840873,83,16033287,Medical Incident,03/24/2016,03/24/2016,03/24/2016 08:42:06 AM,03/24/2016 08:42:06 AM,03/24/2016 08:42:06 AM,03/24/2016 08:42:06 AM,03/24/2016 08:42:06 AM,03/24/2016 08:54:17 AM,03/24/2016 09:19:57 AM,Code 2 Transport,03/24/2016 10:12:35 AM,SAN BRUNO AV/24TH ST,San Francisco,94110,B10,37,2554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7531214131675, -122.404363176874)",160840873-83 +121680078,82,12055646,Medical Incident,06/16/2012,06/15/2012,06/16/2012 05:25:12 AM,06/16/2012 05:26:30 AM,06/16/2012 05:27:32 AM,06/16/2012 05:30:30 AM,06/16/2012 05:34:16 AM,06/16/2012 05:44:34 AM,06/16/2012 05:51:13 AM,Code 3 Transport,06/16/2012 06:51:26 AM,0 Block of HOLLOWAY AVE,SF,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7217978029767, -122.453603333077)",121680078-82 +130770002,75,13025573,Medical Incident,03/18/2013,03/17/2013,03/18/2013 12:12:07 AM,03/18/2013 12:12:34 AM,03/18/2013 12:13:03 AM,03/18/2013 12:13:09 AM,03/18/2013 12:16:44 AM,03/18/2013 12:30:07 AM,03/18/2013 12:40:37 AM,Code 2 Transport,03/18/2013 01:18:25 AM,SUTTER ST/VAN NESS AV,SF,94109,B04,3,3156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",130770002-75 +120870333,E06,12029017,Structure Fire,03/27/2012,03/27/2012,03/27/2012 10:08:17 PM,03/27/2012 10:09:13 PM,03/27/2012 10:09:36 PM,03/27/2012 10:10:25 PM,03/27/2012 10:11:58 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 10:40:01 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,Fire,1,ENGINE,1,2,8,Mission,"(37.7683208883339, -122.4243245293)",120870333-E06 +131880028,78,13063973,Medical Incident,07/07/2013,07/06/2013,07/07/2013 01:16:24 AM,07/07/2013 01:17:55 AM,07/07/2013 01:18:48 AM,07/07/2013 01:19:44 AM,07/07/2013 01:24:03 AM,07/07/2013 01:35:44 AM,07/07/2013 01:49:41 AM,Code 2 Transport,07/07/2013 02:26:25 AM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",131880028-78 +123430182,E03,12114619,Medical Incident,12/08/2012,12/08/2012,12/08/2012 12:21:16 PM,12/08/2012 12:22:23 PM,12/08/2012 12:22:32 PM,12/08/2012 12:23:43 PM,12/08/2012 12:28:56 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 12:32:32 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",123430182-E03 +120180341,E19,12006180,Medical Incident,01/18/2012,01/18/2012,01/18/2012 09:25:55 PM,01/18/2012 09:26:59 PM,01/18/2012 09:28:21 PM,01/18/2012 09:29:32 PM,01/18/2012 09:32:20 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Other,01/18/2012 09:34:43 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,E,E,3,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",120180341-E19 +160753084,75,16029833,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:05:43 PM,03/15/2016 06:06:38 PM,03/15/2016 06:08:11 PM,03/15/2016 06:08:26 PM,03/15/2016 06:15:01 PM,03/15/2016 06:36:44 PM,03/15/2016 07:02:33 PM,Code 2 Transport,03/15/2016 07:49:20 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160753084-75 +130010080,E01,13000056,Medical Incident,01/01/2013,12/31/2012,01/01/2013 01:21:00 AM,01/01/2013 01:22:04 AM,01/01/2013 01:22:45 AM,01/01/2013 01:22:49 AM,01/01/2013 01:24:38 AM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,01/01/2013 01:36:46 AM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",130010080-E01 +120140268,E43,12004847,Medical Incident,01/14/2012,01/14/2012,01/14/2012 06:28:51 PM,01/14/2012 06:30:01 PM,01/14/2012 06:32:28 PM,01/14/2012 06:33:41 PM,01/14/2012 06:35:29 PM,04/25/2016 02:00:38 PM,04/25/2016 02:00:38 PM,Other,01/14/2012 06:55:15 PM,500 Block of LONDON ST,SF,94112,B09,43,6126,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7204577457452, -122.43703098791)",120140268-E43 +160350153,57,16013642,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:08:10 AM,02/04/2016 01:10:47 AM,02/04/2016 01:12:30 AM,02/04/2016 01:12:39 AM,02/04/2016 01:22:45 AM,02/04/2016 01:42:07 AM,02/04/2016 01:58:56 AM,Code 2 Transport,02/04/2016 02:46:44 AM,200 Block of JOOST AVE,San Francisco,94131,B09,26,8214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7323075322144, -122.440886977076)",160350153-57 +131890148,T03,13064392,Alarms,07/08/2013,07/08/2013,07/08/2013 11:52:18 AM,07/08/2013 11:53:43 AM,07/08/2013 11:53:56 AM,07/08/2013 11:55:27 AM,07/08/2013 11:56:39 AM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/08/2013 12:02:57 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",131890148-T03 +122680259,KM14,12088597,Medical Incident,09/24/2012,09/24/2012,09/24/2012 04:27:54 PM,09/24/2012 04:29:27 PM,09/24/2012 04:29:53 PM,09/24/2012 04:30:54 PM,09/24/2012 04:35:26 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 04:36:04 PM,1200 Block of 5TH AVE,SF,94122,B08,22,7325,3,3,3,false,Non Life-threatening,1,PRIVATE,2,7,5,Inner Sunset,"(37.7646902615433, -122.462132322215)",122680259-KM14 +102900079,89,10092432,Medical Incident,10/17/2010,10/16/2010,10/17/2010 05:47:34 AM,10/17/2010 05:47:56 AM,10/17/2010 05:48:27 AM,10/17/2010 05:49:46 AM,10/17/2010 05:57:01 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Medical Examiner,10/17/2010 07:00:12 AM,500 Block of VICTORIA ST,SF,94132,B09,33,8433,3,E,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.720680386401, -122.465304898322)",102900079-89 +122630064,B10,12086773,Structure Fire,09/19/2012,09/18/2012,09/19/2012 07:55:02 AM,09/19/2012 07:55:58 AM,09/19/2012 07:56:06 AM,09/19/2012 07:58:10 AM,09/19/2012 08:04:49 AM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/19/2012 08:45:57 AM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Fire,1,CHIEF,7,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",122630064-B10 +160304192,62,16011999,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:54:56 PM,01/30/2016 11:56:25 PM,01/30/2016 11:56:57 PM,01/30/2016 11:57:07 PM,01/30/2016 11:57:41 PM,01/31/2016 12:21:21 AM,01/31/2016 12:31:13 AM,Code 2 Transport,01/31/2016 01:12:31 AM,VAN NESS AV/BAY ST,San Francisco,94109,B04,16,3144,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8041458445112, -122.425109522103)",160304192-62 +160643941,KM03,16025717,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:19:40 PM,03/04/2016 10:22:15 PM,03/04/2016 10:22:56 PM,03/04/2016 10:23:34 PM,03/04/2016 10:27:39 PM,03/04/2016 10:51:01 PM,03/04/2016 11:05:10 PM,Code 2 Transport,03/04/2016 11:47:28 PM,700 Block of PINE ST,San Francisco,94108,B01,2,1325,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7910926840668, -122.408507461375)",160643941-KM03 +132650293,T12,13089993,Structure Fire,09/22/2013,09/22/2013,09/22/2013 05:12:03 PM,09/22/2013 05:12:03 PM,09/22/2013 05:12:19 PM,09/22/2013 05:13:24 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/22/2013 05:16:00 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,true,Alarm,1,TRUCK,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",132650293-T12 +103460049,E38,10110837,Medical Incident,12/12/2010,12/11/2010,12/12/2010 02:39:22 AM,12/12/2010 02:40:20 AM,12/12/2010 02:41:26 AM,12/12/2010 02:42:36 AM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 02:44:26 AM,1800 Block of SACRAMENTO ST,SF,94109,B04,38,3225,3,3,3,false,,1,ENGINE,2,4,2,Pacific Heights,"(37.7911308532822, -122.423327343761)",103460049-E38 +102920207,T03,10093135,Medical Incident,10/19/2010,10/19/2010,10/19/2010 01:49:31 PM,10/19/2010 01:50:11 PM,10/19/2010 01:52:49 PM,10/19/2010 01:53:42 PM,10/19/2010 01:54:05 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/19/2010 02:04:08 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,,1,TRUCK,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",102920207-T03 +123170085,E11,12105422,Medical Incident,11/12/2012,11/12/2012,11/12/2012 09:42:54 AM,11/12/2012 09:45:22 AM,11/12/2012 09:45:33 AM,11/12/2012 09:47:04 AM,11/12/2012 09:50:10 AM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,Other,11/12/2012 10:06:08 AM,3400 Block of 21ST ST,SF,94110,B06,11,5457,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7567725305382, -122.42418316648)",123170085-E11 +113030254,E05,11100611,Medical Incident,10/30/2011,10/30/2011,10/30/2011 01:50:24 PM,10/30/2011 01:51:53 PM,10/30/2011 01:52:11 PM,10/30/2011 01:53:00 PM,10/30/2011 01:54:31 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 02:01:40 PM,800 Block of HAYES ST,SF,94117,B02,5,3522,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",113030254-E05 +130020282,AM12,13000719,Medical Incident,01/02/2013,01/02/2013,01/02/2013 04:42:22 PM,01/02/2013 04:43:07 PM,01/02/2013 04:43:16 PM,01/02/2013 04:43:54 PM,01/02/2013 04:49:23 PM,01/02/2013 05:01:47 PM,01/02/2013 05:22:51 PM,Code 3 Transport,01/02/2013 06:04:10 PM,1900 Block of IRVING ST,SF,94122,B08,22,7424,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7634362445898, -122.478724842422)",130020282-AM12 +102500307,AM10,10079104,Medical Incident,09/07/2010,09/07/2010,09/07/2010 08:06:48 PM,09/07/2010 08:19:02 PM,09/07/2010 08:21:19 PM,09/07/2010 08:21:50 PM,09/07/2010 08:26:43 PM,09/07/2010 08:36:40 PM,09/07/2010 08:41:34 PM,Code 2 Transport,09/07/2010 09:09:14 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102500307-AM10 +110200145,RS2,11006561,Medical Incident,01/20/2011,01/20/2011,01/20/2011 10:32:25 AM,01/20/2011 10:33:11 AM,01/20/2011 10:34:12 AM,01/20/2011 10:35:28 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 10:36:43 AM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,false,,1,RESCUE SQUAD,3,6,9,Mission,"(37.7562319946436, -122.418893283075)",110200145-RS2 +112370019,55,11078067,Medical Incident,08/25/2011,08/24/2011,08/25/2011 01:09:06 AM,08/25/2011 01:10:11 AM,08/25/2011 01:10:17 AM,08/25/2011 01:10:26 AM,08/25/2011 01:14:24 AM,08/25/2011 01:23:15 AM,08/25/2011 01:51:29 AM,Code 2 Transport,08/25/2011 01:52:10 AM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",112370019-55 +140260040,E06,14008783,Medical Incident,01/26/2014,01/25/2014,01/26/2014 02:26:43 AM,01/26/2014 02:27:22 AM,01/26/2014 02:28:13 AM,01/26/2014 02:30:05 AM,01/26/2014 02:34:08 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 02:49:54 AM,100 Block of ERIE ST,SF,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7690216140989, -122.419573920622)",140260040-E06 +140150014,T03,14004997,Alarms,01/15/2014,01/14/2014,01/15/2014 01:08:42 AM,01/15/2014 01:10:42 AM,01/15/2014 01:10:51 AM,01/15/2014 01:12:49 AM,01/15/2014 01:15:07 AM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/15/2014 01:18:21 AM,600 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",140150014-T03 +103210349,73,10103017,Traffic Collision,11/17/2010,11/17/2010,11/17/2010 09:11:54 PM,11/17/2010 09:14:05 PM,11/17/2010 09:16:41 PM,11/17/2010 09:20:14 PM,11/17/2010 09:29:08 PM,11/17/2010 09:49:44 PM,11/17/2010 09:59:50 PM,Other,11/17/2010 10:29:22 PM,VERMONT ST/MARIPOSA ST,SF,94107,B02,29,2422,2,2,2,true,,1,MEDIC,2,2,10,Potrero Hill,"(37.7633817546821, -122.404371726256)",103210349-73 +160780650,65,16030919,Medical Incident,03/18/2016,03/17/2016,03/18/2016 07:09:27 AM,03/18/2016 07:10:36 AM,03/18/2016 07:10:51 AM,03/18/2016 07:12:44 AM,03/18/2016 07:16:50 AM,03/18/2016 07:24:56 AM,03/18/2016 07:54:42 AM,Code 2 Transport,03/18/2016 08:29:41 AM,0 Block of FAIRFIELD WY,San Francisco,94127,B09,15,8455,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7267682846432, -122.463249795079)",160780650-65 +160442300,KM13,16017753,Medical Incident,02/13/2016,02/13/2016,02/13/2016 04:08:52 PM,02/13/2016 04:10:56 PM,02/13/2016 04:16:05 PM,02/13/2016 04:16:05 PM,02/13/2016 04:26:00 PM,02/13/2016 04:45:32 PM,02/13/2016 05:19:32 PM,Code 2 Transport,02/13/2016 05:47:51 PM,23RD ST/MISSION ST,San Francisco,94110,B06,7,5511,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7538365885417, -122.418593946321)",160442300-KM13 +121830330,B01,12061101,Alarms,07/01/2012,07/01/2012,07/01/2012 09:29:28 PM,07/01/2012 09:31:15 PM,07/01/2012 09:31:53 PM,07/01/2012 09:33:08 PM,07/01/2012 09:35:43 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 09:41:03 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",121830330-B01 +131140309,81,13038538,Traffic Collision,04/24/2013,04/24/2013,04/24/2013 05:36:43 PM,04/24/2013 05:37:57 PM,04/24/2013 05:39:03 PM,04/24/2013 05:39:37 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 05:45:43 PM,2500 Block of OCEAN AVE,SF,94132,B08,19,8452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7314853147957, -122.472647880057)",131140309-81 +160893999,85,16035526,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:04:28 PM,03/29/2016 11:05:23 PM,03/29/2016 11:05:38 PM,03/29/2016 11:05:52 PM,03/29/2016 11:11:49 PM,03/29/2016 11:29:52 PM,03/29/2016 11:48:17 PM,Code 2 Transport,03/30/2016 12:18:24 AM,0 Block of CLARENCE PL,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7796198209959, -122.39254196336)",160893999-85 +132750214,E09,13093443,Medical Incident,10/02/2013,10/02/2013,10/02/2013 02:20:06 PM,10/02/2013 02:20:50 PM,10/02/2013 02:20:58 PM,10/02/2013 02:22:18 PM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,Other,10/02/2013 02:22:30 PM,0 Block of WESTBROOK CT,SF,94124,B10,17,6624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.7350385061864, -122.382425286055)",132750214-E09 +120880076,KM04,12029102,Medical Incident,03/28/2012,03/28/2012,03/28/2012 08:20:03 AM,03/28/2012 08:21:30 AM,03/28/2012 08:21:58 AM,03/28/2012 08:22:27 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 08:29:10 AM,STOCKTON ST/FILBERT ST,SF,94133,B01,28,1265,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8013706557311, -122.409369119363)",120880076-KM04 +121390219,94,12046193,Medical Incident,05/18/2012,05/18/2012,05/18/2012 02:59:56 PM,05/18/2012 03:00:36 PM,05/18/2012 03:02:02 PM,05/18/2012 03:02:17 PM,05/18/2012 03:05:38 PM,05/18/2012 04:06:17 PM,05/18/2012 04:33:52 PM,Code 2 Transport,05/18/2012 05:13:50 PM,1800 Block of WALLER ST,SF,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",121390219-94 +133620176,AM06,13122989,Medical Incident,12/28/2013,12/28/2013,12/28/2013 01:03:10 PM,12/28/2013 01:05:07 PM,12/28/2013 01:05:22 PM,12/28/2013 01:05:55 PM,12/28/2013 01:07:23 PM,12/28/2013 01:34:13 PM,12/28/2013 02:04:32 PM,Code 2 Transport,12/28/2013 02:19:25 PM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",133620176-AM06 +160382837,KM15,16015331,Medical Incident,02/07/2016,02/07/2016,02/07/2016 06:17:34 PM,02/07/2016 06:17:34 PM,02/07/2016 06:17:47 PM,02/07/2016 06:18:18 PM,02/07/2016 06:28:14 PM,02/07/2016 06:48:40 PM,02/07/2016 07:03:56 PM,Code 2 Transport,02/07/2016 07:34:47 PM,SUTTER ST/BAKER ST,San Francisco,94115,B05,10,4262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Japantown,"(37.7848266848436, -122.443182551307)",160382837-KM15 +132600297,E06,13088055,Medical Incident,09/17/2013,09/17/2013,09/17/2013 02:53:38 PM,09/17/2013 02:54:04 PM,09/17/2013 02:54:59 PM,09/17/2013 02:55:32 PM,09/17/2013 02:57:34 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 03:08:39 PM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",132600297-E06 +120870238,E05,12028926,Medical Incident,03/27/2012,03/27/2012,03/27/2012 04:54:50 PM,03/27/2012 04:56:45 PM,03/27/2012 04:57:18 PM,03/27/2012 04:58:59 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 05:02:02 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",120870238-E05 +110520053,D2,11017123,Structure Fire,02/21/2011,02/20/2011,02/21/2011 06:41:26 AM,02/21/2011 06:42:17 AM,02/21/2011 06:42:27 AM,02/21/2011 06:48:17 AM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 06:57:45 AM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,false,,1,CHIEF,8,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",110520053-D2 +123000347,T05,12099585,Alarms,10/26/2012,10/26/2012,10/26/2012 09:10:34 PM,10/26/2012 09:12:17 PM,10/26/2012 09:14:15 PM,10/26/2012 09:15:48 PM,10/26/2012 09:16:54 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/26/2012 09:27:55 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",123000347-T05 +160143931,KM07,16005775,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:00:18 PM,01/14/2016 11:01:40 PM,01/14/2016 11:02:03 PM,01/14/2016 11:02:48 PM,01/14/2016 11:06:42 PM,01/14/2016 11:28:09 PM,01/14/2016 11:48:39 PM,Code 2 Transport,01/15/2016 12:22:11 AM,1600 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,5,Japantown,"(37.78676442656, -122.427490271072)",160143931-KM07 +122100271,89,12069839,Medical Incident,07/28/2012,07/28/2012,07/28/2012 06:21:31 PM,07/28/2012 06:21:44 PM,07/28/2012 06:23:59 PM,07/28/2012 06:27:56 PM,07/28/2012 06:36:24 PM,07/28/2012 06:51:23 PM,07/28/2012 07:02:38 PM,Code 2 Transport,07/28/2012 07:24:10 PM,700 Block of BRUNSWICK ST,SF,94112,B09,33,6214,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7087500759547, -122.44878758765)",122100271-89 +131940210,77,13065976,Medical Incident,07/13/2013,07/13/2013,07/13/2013 02:58:25 PM,07/13/2013 03:00:06 PM,07/13/2013 03:06:51 PM,04/25/2016 01:51:49 PM,07/13/2013 03:18:17 PM,07/13/2013 03:23:30 PM,07/13/2013 04:08:25 PM,Code 2 Transport,07/13/2013 04:29:07 PM,30TH AV/NORIEGA ST,SF,94122,B08,18,7515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7537209038952, -122.48826407821)",131940210-77 +160290885,77,16011368,Medical Incident,01/29/2016,01/29/2016,01/29/2016 09:05:17 AM,01/29/2016 09:06:14 AM,01/29/2016 09:06:27 AM,01/29/2016 09:06:32 AM,01/29/2016 09:17:00 AM,01/29/2016 09:33:52 AM,01/29/2016 09:49:43 AM,Code 2 Transport,01/29/2016 10:22:25 AM,600 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8044727215137, -122.415562636307)",160290885-77 +123190154,81,12106037,Medical Incident,11/14/2012,11/14/2012,11/14/2012 11:59:00 AM,11/14/2012 12:01:04 PM,11/14/2012 12:01:14 PM,11/14/2012 12:01:57 PM,11/14/2012 12:10:27 PM,11/14/2012 12:18:18 PM,11/14/2012 12:32:32 PM,Code 2 Transport,11/14/2012 12:53:55 PM,0 Block of HILIRITAS AVE,SF,94131,B06,26,8173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7377605783425, -122.437589315586)",123190154-81 +140050325,T18,14001928,Structure Fire,01/05/2014,01/05/2014,01/05/2014 08:34:02 PM,01/05/2014 08:34:02 PM,01/05/2014 08:34:15 PM,01/05/2014 08:35:12 PM,01/05/2014 08:39:55 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 09:29:25 PM,35TH AV/ULLOA ST,SF,94116,B08,18,7554,,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7404272387736, -122.492706079257)",140050325-T18 +110500275,E43,11016608,Medical Incident,02/19/2011,02/19/2011,02/19/2011 04:48:53 PM,02/19/2011 04:50:23 PM,02/19/2011 04:51:27 PM,02/19/2011 04:52:29 PM,02/19/2011 04:55:24 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 05:18:30 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,2,2,2,false,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",110500275-E43 +160581196,KM11,16023072,Medical Incident,02/27/2016,02/27/2016,02/27/2016 10:04:11 AM,02/27/2016 10:07:29 AM,02/27/2016 10:08:07 AM,02/27/2016 10:08:46 AM,02/27/2016 10:12:01 AM,02/27/2016 10:31:34 AM,02/27/2016 11:06:57 AM,Code 2 Transport,02/27/2016 11:16:51 AM,100 Block of FELL ST,San Francisco,94102,B02,36,3213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.776209592511, -122.420316348058)",160581196-KM11 +140430214,93,14014636,Medical Incident,02/12/2014,02/12/2014,02/12/2014 02:06:26 PM,02/12/2014 02:07:04 PM,02/12/2014 02:12:37 PM,02/12/2014 02:13:01 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 02:28:48 PM,300 Block of FONT BLVD,SF,94132,B08,19,8424,,2,2,true,Non Life-threatening,1,MEDIC,3,8,7,Lakeshore,"(37.7170992839815, -122.476744283658)",140430214-93 +111120357,E19,11037151,Medical Incident,04/22/2011,04/22/2011,04/22/2011 09:45:33 PM,04/22/2011 09:47:05 PM,04/22/2011 09:47:39 PM,04/22/2011 09:48:40 PM,04/22/2011 09:52:30 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/22/2011 10:09:40 PM,300 Block of MONTICELLO ST,SF,94132,B09,19,8447,3,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7206423559304, -122.470696370154)",111120357-E19 +160723401,53,16028790,Medical Incident,03/12/2016,03/12/2016,03/12/2016 10:06:09 PM,03/12/2016 10:08:43 PM,03/12/2016 10:08:56 PM,03/12/2016 10:09:07 PM,03/12/2016 10:22:05 PM,03/12/2016 10:39:17 PM,03/12/2016 10:52:56 PM,Code 2 Transport,03/12/2016 11:21:46 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160723401-53 +160622056,75,16024714,Medical Incident,03/02/2016,03/02/2016,03/02/2016 01:36:11 PM,03/02/2016 01:38:46 PM,03/02/2016 01:39:04 PM,03/02/2016 01:39:12 PM,03/02/2016 01:43:25 PM,03/02/2016 01:59:04 PM,03/02/2016 02:10:23 PM,Code 2 Transport,03/02/2016 03:04:42 PM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160622056-75 +120720168,E43,12023903,Alarms,03/12/2012,03/12/2012,03/12/2012 12:06:06 PM,03/12/2012 12:06:40 PM,03/12/2012 12:06:50 PM,03/12/2012 12:07:47 PM,03/12/2012 12:12:28 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/12/2012 12:23:55 PM,1600 Block of BIRCHWOOD CT,SF,94134,B09,43,6238,3,3,3,false,Alarm,1,ENGINE,2,9,10,Excelsior,"(37.7085411828665, -122.425872234963)",120720168-E43 +160413720,55,16016647,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:29:11 PM,02/10/2016 09:29:11 PM,02/10/2016 09:29:18 PM,02/10/2016 09:29:44 PM,02/10/2016 09:40:22 PM,02/10/2016 09:49:43 PM,02/10/2016 09:58:31 PM,Code 2 Transport,02/10/2016 10:35:16 PM,19TH ST/VALENCIA ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.7601012942817, -122.42142521264)",160413720-55 +160262961,AM12,16010408,Medical Incident,01/26/2016,01/26/2016,01/26/2016 05:51:12 PM,01/26/2016 05:53:16 PM,01/26/2016 05:54:02 PM,01/26/2016 06:01:51 PM,01/26/2016 06:06:53 PM,01/26/2016 06:56:32 PM,01/26/2016 07:26:09 PM,Code 2 Transport,01/26/2016 08:08:39 PM,ANNIE ST/STEVENSON ST,San Francisco,94105,B03,1,2158,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.787617863969, -122.402289884758)",160262961-AM12 +111070181,E06,11035394,Medical Incident,04/17/2011,04/17/2011,04/17/2011 01:11:48 PM,04/17/2011 01:14:13 PM,04/17/2011 01:14:47 PM,04/17/2011 01:15:50 PM,04/17/2011 01:17:30 PM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 01:35:06 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",111070181-E06 +132580389,B01,13087464,Traffic Collision,09/15/2013,09/15/2013,09/15/2013 11:46:28 PM,09/15/2013 11:47:01 PM,09/16/2013 12:03:14 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/16/2013 12:04:33 AM,BROADWAY/MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,false,Potentially Life-Threatening,1,CHIEF,5,1,3,North Beach,"(37.7982229704871, -122.403863019987)",132580389-B01 +132330140,T08,13078634,Alarms,08/21/2013,08/21/2013,08/21/2013 11:16:05 AM,08/21/2013 11:16:57 AM,08/21/2013 11:17:02 AM,08/21/2013 11:19:34 AM,08/21/2013 11:19:36 AM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/21/2013 11:33:48 AM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",132330140-T08 +133490053,E01,13118376,Alarms,12/15/2013,12/14/2013,12/15/2013 04:14:37 AM,12/15/2013 04:15:35 AM,12/15/2013 04:15:42 AM,12/15/2013 04:17:38 AM,12/15/2013 04:19:08 AM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 04:27:37 AM,400 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7798600031214, -122.405090496364)",133490053-E01 +112470195,E43,11081454,Medical Incident,09/04/2011,09/04/2011,09/04/2011 01:02:26 PM,09/04/2011 01:02:35 PM,09/04/2011 01:02:51 PM,09/04/2011 01:04:08 PM,09/04/2011 01:06:00 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 01:10:39 PM,0 Block of ROLPH ST,SF,94112,B09,43,6232,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7151664289006, -122.440103953539)",112470195-E43 +132640046,E10,13089392,Alarms,09/21/2013,09/20/2013,09/21/2013 02:37:40 AM,09/21/2013 02:39:59 AM,09/21/2013 02:40:14 AM,09/21/2013 02:42:07 AM,09/21/2013 02:44:34 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Fire,09/21/2013 02:49:24 AM,2100 Block of OFARRELL ST,SF,94115,B05,10,4236,3,3,3,true,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7823990960607, -122.440141299748)",132640046-E10 +133080006,KM07,13104568,Medical Incident,11/04/2013,11/03/2013,11/04/2013 12:03:47 AM,11/04/2013 12:04:06 AM,11/04/2013 12:04:52 AM,11/04/2013 12:06:09 AM,11/04/2013 12:12:48 AM,11/04/2013 12:35:07 AM,11/04/2013 01:06:50 AM,Code 3 Transport,11/04/2013 01:57:48 AM,1700 Block of NEWCOMB AVE,SF,94124,B10,17,6515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7367746861465, -122.39262575818)",133080006-KM07 +103150274,93,10101075,Medical Incident,11/11/2010,11/11/2010,11/11/2010 06:44:17 PM,11/11/2010 06:45:09 PM,11/11/2010 06:45:57 PM,11/11/2010 06:46:24 PM,11/11/2010 06:49:13 PM,11/11/2010 07:07:31 PM,11/11/2010 07:35:14 PM,Code 2 Transport,11/11/2010 08:07:25 PM,1100 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7547638628686, -122.416559046903)",103150274-93 +160831599,84,16032925,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:44:07 AM,03/23/2016 11:45:04 AM,03/23/2016 11:45:33 AM,03/23/2016 11:45:41 AM,03/23/2016 11:58:40 AM,03/23/2016 12:13:27 PM,03/23/2016 12:32:33 PM,Code 2 Transport,03/23/2016 01:15:10 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160831599-84 +140150030,B03,14005012,Medical Incident,01/15/2014,01/14/2014,01/15/2014 02:50:22 AM,01/15/2014 02:50:39 AM,01/15/2014 02:53:02 AM,01/15/2014 02:55:22 AM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/15/2014 02:59:23 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,,E,3,false,Potentially Life-Threatening,1,CHIEF,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",140150030-B03 +111850097,92,11061073,Medical Incident,07/04/2011,07/04/2011,07/04/2011 09:11:25 AM,07/04/2011 09:11:41 AM,07/04/2011 09:12:23 AM,07/04/2011 09:13:18 AM,07/04/2011 09:25:51 AM,07/04/2011 09:33:05 AM,07/04/2011 09:37:54 AM,Code 2 Transport,07/04/2011 10:04:02 AM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",111850097-92 +140250119,T05,14008511,Alarms,01/25/2014,01/25/2014,01/25/2014 10:09:12 AM,01/25/2014 10:10:44 AM,01/25/2014 10:11:04 AM,01/25/2014 10:12:57 AM,01/25/2014 10:15:58 AM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/25/2014 10:24:54 AM,1700 Block of SUTTER ST,SF,94115,B04,38,3433,3,3,3,false,Alarm,1,TRUCK,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",140250119-T05 +123630342,E19,12121614,Traffic Collision,12/28/2012,12/28/2012,12/28/2012 09:38:10 PM,12/28/2012 09:38:57 PM,12/28/2012 09:39:29 PM,12/28/2012 09:40:27 PM,12/28/2012 09:43:55 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 10:26:53 PM,0 Block of HIGUERA AVE,SF,94132,B08,19,8583,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.718486831483, -122.483889856765)",123630342-E19 +131180333,66,13039831,Medical Incident,04/28/2013,04/28/2013,04/28/2013 08:38:27 PM,04/28/2013 08:40:30 PM,04/28/2013 08:40:39 PM,04/28/2013 08:40:45 PM,04/28/2013 08:44:39 PM,04/28/2013 08:55:43 PM,04/28/2013 09:11:36 PM,Code 3 Transport,04/28/2013 09:36:57 PM,300 Block of BUENAVISTAEAST AV,SF,94117,B05,21,5136,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7667916111324, -122.440720545257)",131180333-66 +160644146,AM16,16025733,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:13:20 PM,03/04/2016 11:14:40 PM,03/04/2016 11:15:04 PM,03/04/2016 11:15:51 PM,03/04/2016 11:29:32 PM,03/04/2016 11:37:52 PM,03/05/2016 12:02:48 AM,Code 2 Transport,03/05/2016 12:17:55 AM,BROADWAY/KEARNY ST,San Francisco,94133,B01,13,1231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7980169557217, -122.40547307119)",160644146-AM16 +140140286,AP,14004880,Other,01/14/2014,01/14/2014,01/14/2014 05:15:34 PM,01/14/2014 05:15:34 PM,01/14/2014 05:15:34 PM,01/14/2014 05:15:34 PM,01/14/2014 05:15:34 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Fire,01/14/2014 05:16:04 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",140140286-AP +132840214,AM16,13096643,Medical Incident,10/11/2013,10/11/2013,10/11/2013 03:19:05 PM,10/11/2013 03:19:30 PM,10/11/2013 03:20:09 PM,10/11/2013 03:21:31 PM,10/11/2013 03:26:12 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/11/2013 04:59:23 PM,FOLSOM ST/SHERMAN ST,SF,94103,B03,1,2313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7773996335317, -122.407014751383)",132840214-AM16 +121830227,T03,12061005,Structure Fire,07/01/2012,07/01/2012,07/01/2012 04:16:19 PM,07/01/2012 04:16:20 PM,07/01/2012 04:18:13 PM,07/01/2012 04:19:04 PM,07/01/2012 04:22:10 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 04:34:50 PM,1400 Block of JACKSON ST,SF,94109,B01,41,163,3,3,3,false,Alarm,1,TRUCK,2,1,3,Russian Hill,"(37.7944063708533, -122.418921298898)",121830227-T03 +120610075,E41,12019962,Medical Incident,03/01/2012,02/29/2012,03/01/2012 07:33:46 AM,03/01/2012 07:34:05 AM,03/01/2012 07:34:34 AM,03/01/2012 07:36:08 AM,03/01/2012 07:39:10 AM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,Other,03/01/2012 07:47:40 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",120610075-E41 +132970083,AM24,13100799,Medical Incident,10/24/2013,10/24/2013,10/24/2013 08:54:14 AM,10/24/2013 08:56:37 AM,10/24/2013 09:01:58 AM,10/24/2013 09:02:30 AM,10/24/2013 09:05:48 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Patient Declined Transport,10/24/2013 09:19:45 AM,1200 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",132970083-AM24 +140730112,E05,14024585,Medical Incident,03/14/2014,03/14/2014,03/14/2014 10:29:31 AM,03/14/2014 10:31:19 AM,03/14/2014 10:31:47 AM,03/14/2014 10:32:01 AM,03/14/2014 10:33:51 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Code 2 Transport,03/14/2014 10:37:15 AM,1400 Block of TURK ST,SAN FRANCISCO,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",140730112-E05 +111680303,T15,11055497,Structure Fire,06/17/2011,06/17/2011,06/17/2011 08:12:10 PM,06/17/2011 08:12:44 PM,06/17/2011 08:13:03 PM,06/17/2011 08:14:38 PM,06/17/2011 08:19:00 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 09:03:57 PM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,,1,TRUCK,2,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",111680303-T15 +112530191,E01,11083463,Medical Incident,09/10/2011,09/10/2011,09/10/2011 11:49:03 AM,09/10/2011 11:49:53 AM,09/10/2011 11:50:26 AM,09/10/2011 11:50:58 AM,09/10/2011 11:53:30 AM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 12:02:32 PM,100 Block of GEARY ST,SF,94108,B01,1,1323,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7877209923178, -122.405826623955)",112530191-E01 +160624210,71,16024893,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:56:15 PM,03/02/2016 10:56:15 PM,03/02/2016 10:56:33 PM,03/02/2016 10:56:40 PM,03/02/2016 11:05:01 PM,03/02/2016 11:15:57 PM,03/02/2016 11:26:53 PM,Code 2 Transport,03/02/2016 11:48:11 PM,HYDE ST/GREEN ST,San Francisco,94109,B01,41,1566,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7982645786383, -122.418859875328)",160624210-71 +122640140,86,12087150,Medical Incident,09/20/2012,09/20/2012,09/20/2012 10:59:14 AM,09/20/2012 11:03:25 AM,09/20/2012 11:03:36 AM,09/20/2012 11:03:51 AM,09/20/2012 11:09:22 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 11:16:32 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",122640140-86 +132000194,E01,13067796,Medical Incident,07/19/2013,07/19/2013,07/19/2013 12:58:58 PM,07/19/2013 12:59:39 PM,07/19/2013 01:09:21 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 01:13:42 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",132000194-E01 +122870228,E03,12094979,Administrative,10/13/2012,10/13/2012,10/13/2012 03:48:25 PM,10/13/2012 03:48:35 PM,10/13/2012 03:48:53 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/13/2012 03:49:23 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",122870228-E03 +113600306,AM18,11119767,Alarms,12/26/2011,12/26/2011,12/26/2011 09:44:25 PM,12/26/2011 09:45:41 PM,12/26/2011 09:45:53 PM,12/26/2011 09:59:25 PM,12/26/2011 10:01:29 PM,12/26/2011 10:06:21 PM,12/26/2011 10:18:26 PM,Code 2 Transport,12/26/2011 10:43:46 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,,1,PRIVATE,3,2,9,Mission,"(37.7661343875141, -122.421935077177)",113600306-AM18 +160711222,67,16028183,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:42:54 AM,03/11/2016 10:47:42 AM,03/11/2016 10:48:10 AM,03/11/2016 10:48:30 AM,03/11/2016 11:10:45 AM,03/11/2016 11:30:29 AM,03/11/2016 11:54:54 AM,Code 2 Transport,03/11/2016 12:22:08 PM,500 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2523,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7586965959617, -122.397057095842)",160711222-67 +102950276,E42,10094157,Medical Incident,10/22/2010,10/22/2010,10/22/2010 03:52:17 PM,10/22/2010 03:52:54 PM,10/22/2010 03:53:58 PM,10/22/2010 03:54:55 PM,10/22/2010 03:56:59 PM,04/25/2016 02:07:59 PM,04/25/2016 02:07:59 PM,Other,10/22/2010 04:04:25 PM,300 Block of HOLYOKE ST,SF,94134,B10,42,6336,3,3,3,true,,1,ENGINE,2,10,9,Portola,"(37.7269588163542, -122.408723672542)",102950276-E42 +160090385,72,16003519,Medical Incident,01/09/2016,01/08/2016,01/09/2016 03:19:23 AM,01/09/2016 03:23:30 AM,01/09/2016 03:23:39 AM,01/09/2016 03:23:59 AM,01/09/2016 03:34:33 AM,01/09/2016 03:52:11 AM,01/09/2016 04:11:43 AM,Code 2 Transport,01/09/2016 05:51:13 AM,1100 Block of OAKDALE AVE,San Francisco,94124,B10,17,6572,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",160090385-72 +113030313,99,11100663,Medical Incident,10/30/2011,10/30/2011,10/30/2011 04:55:34 PM,10/30/2011 04:58:38 PM,10/30/2011 05:00:58 PM,10/30/2011 05:03:26 PM,04/25/2016 02:01:54 PM,10/30/2011 05:21:30 PM,04/25/2016 02:01:54 PM,Code 2 Transport,10/30/2011 05:51:45 PM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,1,1,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",113030313-99 +140540291,E38,14018384,Outside Fire,02/23/2014,02/23/2014,02/23/2014 09:26:57 PM,02/23/2014 09:27:29 PM,02/23/2014 09:27:50 PM,02/23/2014 09:29:03 PM,02/23/2014 09:31:29 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Fire,02/23/2014 09:47:42 PM,1500 Block of FILLMORE ST,SF,94115,B04,5,3541,3,3,3,false,Fire,1,ENGINE,1,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",140540291-E38 +120680149,E08,12022542,Medical Incident,03/08/2012,03/08/2012,03/08/2012 12:10:12 PM,03/08/2012 12:10:47 PM,03/08/2012 12:11:09 PM,03/08/2012 12:12:06 PM,03/08/2012 12:14:35 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Gone on Arrival,03/08/2012 12:16:05 PM,600 Block of DELANCEY ST,SF,94107,B03,8,2134,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7832783844185, -122.389331467635)",120680149-E08 +140570407,77,14019411,Medical Incident,02/26/2014,02/26/2014,02/26/2014 11:00:42 PM,02/26/2014 11:00:57 PM,02/26/2014 11:01:17 PM,02/26/2014 11:01:32 PM,02/26/2014 11:09:02 PM,02/26/2014 11:28:58 PM,02/26/2014 11:41:20 PM,Code 2 Transport,02/27/2014 12:02:24 AM,1800 Block of MISSION ST,SF,94103,B02,36,5215,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7674693820862, -122.419972358911)",140570407-77 +140100111,B01,14003427,Alarms,01/10/2014,01/10/2014,01/10/2014 09:44:14 AM,01/10/2014 09:46:05 AM,01/10/2014 09:46:29 AM,01/10/2014 09:46:40 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 09:53:03 AM,800 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,Alarm,1,CHIEF,3,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",140100111-B01 +160113103,52,16004541,Medical Incident,01/11/2016,01/11/2016,01/11/2016 07:41:36 PM,01/11/2016 07:42:59 PM,01/11/2016 07:43:46 PM,01/11/2016 07:43:55 PM,01/11/2016 07:47:06 PM,01/11/2016 08:04:38 PM,01/11/2016 08:10:18 PM,Code 2 Transport,01/11/2016 08:32:30 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160113103-52 +160460942,82,16018440,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:21:36 AM,02/15/2016 09:22:58 AM,02/15/2016 09:23:15 AM,02/15/2016 09:24:21 AM,02/15/2016 09:28:48 AM,02/15/2016 09:38:59 AM,02/15/2016 10:02:32 AM,Code 2 Transport,02/15/2016 10:46:31 AM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7686566965213, -122.420075902774)",160460942-82 +160530395,79,16021071,Medical Incident,02/22/2016,02/21/2016,02/22/2016 05:59:21 AM,02/22/2016 05:59:21 AM,02/22/2016 06:00:00 AM,02/22/2016 06:00:21 AM,02/22/2016 06:18:02 AM,02/22/2016 06:18:04 AM,02/22/2016 06:24:08 AM,Code 2 Transport,02/22/2016 06:56:28 AM,SANSOME ST/BUSH ST,San Francisco,94104,B01,13,1164,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7911771722795, -122.400744022695)",160530395-79 +160741414,57,16029306,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:21:26 AM,03/14/2016 11:21:26 AM,03/14/2016 11:26:12 AM,03/14/2016 11:27:42 AM,03/14/2016 11:37:36 AM,03/14/2016 11:52:18 AM,03/14/2016 12:03:58 PM,Code 2 Transport,03/14/2016 12:58:56 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7787238368762, -122.415620668816)",160741414-57 +140370230,E31,14012549,Traffic Collision,02/06/2014,02/06/2014,02/06/2014 03:22:45 PM,02/06/2014 03:23:49 PM,02/06/2014 03:24:13 PM,02/06/2014 03:25:30 PM,02/06/2014 03:29:09 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 03:37:13 PM,4800 Block of CALIFORNIA ST,SF,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7846516816454, -122.469377719742)",140370230-E31 +123640270,75,12121882,Medical Incident,12/29/2012,12/29/2012,12/29/2012 07:09:46 PM,12/29/2012 07:10:45 PM,12/29/2012 07:11:33 PM,12/29/2012 07:13:49 PM,12/29/2012 07:14:33 PM,12/29/2012 07:25:46 PM,12/29/2012 07:48:46 PM,Code 2 Transport,12/29/2012 08:08:30 PM,2000 Block of POLK ST,SF,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.795477682108, -122.421743807239)",123640270-75 +140480252,E16,14016412,Medical Incident,02/17/2014,02/17/2014,02/17/2014 05:39:55 PM,02/17/2014 05:41:20 PM,02/17/2014 05:42:18 PM,02/17/2014 05:44:05 PM,02/17/2014 05:48:28 PM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,Code 2 Transport,02/17/2014 05:57:26 PM,500 Block of JEFFERSON ST,SF,94109,B03,28,1616,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.8075778308713, -122.42129191667)",140480252-E16 +121000167,D2,12033120,Structure Fire,04/09/2012,04/09/2012,04/09/2012 12:02:13 PM,04/09/2012 12:03:40 PM,04/09/2012 12:04:21 PM,04/09/2012 12:06:43 PM,04/09/2012 12:08:39 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 12:09:07 PM,400 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,false,Fire,1,CHIEF,8,2,6,Tenderloin,"(37.7851285057104, -122.414455368715)",121000167-D2 +160253081,75,16010062,Medical Incident,01/25/2016,01/25/2016,01/25/2016 06:49:39 PM,01/25/2016 06:49:39 PM,01/25/2016 06:55:06 PM,01/25/2016 06:55:12 PM,01/25/2016 07:00:36 PM,01/25/2016 07:16:25 PM,01/25/2016 07:26:12 PM,Code 2 Transport,01/25/2016 08:49:32 PM,FILLMORE ST/BAY ST,San Francisco,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8026284241178, -122.436693347158)",160253081-75 +122230254,93,12073988,Medical Incident,08/10/2012,08/10/2012,08/10/2012 03:28:45 PM,08/10/2012 03:28:45 PM,08/10/2012 03:28:45 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,08/10/2012 04:08:34 PM,04/25/2016 01:57:18 PM,Code 2 Transport,08/10/2012 04:52:43 PM,FOLSOM ST/6TH ST,SF,94107,B03,1,2253,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",122230254-93 +122820038,88,12093231,Structure Fire,10/08/2012,10/07/2012,10/08/2012 03:29:26 AM,10/08/2012 03:30:05 AM,10/08/2012 03:30:20 AM,10/08/2012 03:30:52 AM,10/08/2012 03:33:27 AM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/08/2012 04:05:27 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Fire,1,MEDIC,2,3,6,South of Market,"(37.7819536537257, -122.410041631816)",122820038-88 +110920229,86,11030572,Medical Incident,04/02/2011,04/02/2011,04/02/2011 03:56:18 PM,04/02/2011 03:57:55 PM,04/02/2011 03:58:27 PM,04/02/2011 03:58:39 PM,04/02/2011 04:04:57 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,No Merit,04/02/2011 04:12:42 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",110920229-86 +121050296,E43,12034864,Medical Incident,04/14/2012,04/14/2012,04/14/2012 06:24:58 PM,04/14/2012 06:25:51 PM,04/14/2012 06:26:28 PM,04/14/2012 06:27:33 PM,04/14/2012 06:41:07 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Other,04/14/2012 06:41:09 PM,4600 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,Non Life-threatening,1,ENGINE,2,9,11,Excelsior,"(37.7234913181355, -122.435621772842)",121050296-E43 +160823563,KM12,16032732,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:15:44 PM,03/22/2016 08:17:34 PM,03/22/2016 08:18:11 PM,03/22/2016 08:19:51 PM,03/22/2016 08:24:23 PM,03/22/2016 09:01:32 PM,03/22/2016 09:09:21 PM,Code 3 Transport,03/22/2016 09:51:30 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160823563-KM12 +113040028,E05,11100801,Medical Incident,10/31/2011,10/30/2011,10/31/2011 02:21:54 AM,10/31/2011 02:22:29 AM,10/31/2011 02:22:41 AM,10/31/2011 02:24:20 AM,10/31/2011 02:25:37 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 02:29:44 AM,700 Block of WEBSTER ST,SF,94117,B05,5,3521,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7774337931846, -122.429916785858)",113040028-E05 +130120227,E29,13004125,Medical Incident,01/12/2013,01/12/2013,01/12/2013 03:28:30 PM,01/12/2013 03:29:32 PM,01/12/2013 03:29:55 PM,01/12/2013 03:31:18 PM,01/12/2013 03:35:04 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Patient Declined Transport,01/12/2013 03:48:42 PM,3RD ST/20TH ST,SF,94107,B03,29,2466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",130120227-E29 +160912680,82,16036166,Medical Incident,03/31/2016,03/31/2016,03/31/2016 05:11:49 PM,03/31/2016 05:11:49 PM,03/31/2016 05:12:18 PM,03/31/2016 05:12:25 PM,03/31/2016 05:15:56 PM,03/31/2016 05:26:31 PM,03/31/2016 05:32:55 PM,Code 2 Transport,03/31/2016 06:14:47 PM,22ND ST/VALENCIA ST,San Francisco,94110,B06,11,5471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7552947827711, -122.420964094826)",160912680-82 +133290070,B02,13111675,Alarms,11/25/2013,11/24/2013,11/25/2013 06:29:39 AM,11/25/2013 06:30:45 AM,11/25/2013 06:30:49 AM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Other,11/25/2013 06:33:06 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,CHIEF,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",133290070-B02 +121670187,T19,12055402,Citizen Assist / Service Call,06/15/2012,06/15/2012,06/15/2012 02:05:51 PM,06/15/2012 02:07:18 PM,06/15/2012 02:07:50 PM,06/15/2012 02:08:40 PM,06/15/2012 02:12:08 PM,04/25/2016 01:58:11 PM,04/25/2016 01:58:11 PM,Fire,06/15/2012 02:29:22 PM,GONZALEZ DR/ARBALLO DR,SF,94132,B08,19,8583,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7175845910265, -122.483205246473)",121670187-T19 +140630325,E40,14021393,Gas Leak (Natural and LP Gases),03/04/2014,03/04/2014,03/04/2014 06:43:32 PM,03/04/2014 06:45:20 PM,03/04/2014 06:47:58 PM,03/04/2014 06:47:58 PM,03/04/2014 06:49:55 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 07:03:21 PM,2300 Block of 26TH AVE,SF,94116,B08,40,7471,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7436506098669, -122.483326415854)",140630325-E40 +121740072,AM06,12057675,Medical Incident,06/22/2012,06/22/2012,06/22/2012 08:46:36 AM,06/22/2012 08:47:50 AM,06/22/2012 08:48:09 AM,06/22/2012 08:48:43 AM,06/22/2012 08:56:19 AM,06/22/2012 09:04:38 AM,06/22/2012 09:11:12 AM,Code 2 Transport,06/22/2012 09:48:01 AM,3300 Block of MISSION ST,SF,94110,B06,32,5625,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",121740072-AM06 +140010051,E02,14000037,Medical Incident,01/01/2014,12/31/2013,01/01/2014 12:32:41 AM,01/01/2014 12:34:11 AM,01/01/2014 12:36:11 AM,01/01/2014 12:36:56 AM,01/01/2014 12:39:49 AM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 12:40:11 AM,400 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",140010051-E02 +160051106,61,16001934,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:15:15 AM,01/05/2016 10:17:10 AM,01/05/2016 10:17:23 AM,01/05/2016 10:22:09 AM,01/05/2016 10:25:06 AM,01/05/2016 10:41:18 AM,01/05/2016 10:46:33 AM,Code 3 Transport,01/05/2016 11:25:27 AM,400 Block of FREDERICK ST,San Francisco,94117,B05,12,5144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7666059778585, -122.450710275679)",160051106-61 +160360080,64,16014065,Medical Incident,02/05/2016,02/04/2016,02/05/2016 12:30:32 AM,02/05/2016 12:31:52 AM,02/05/2016 12:32:32 AM,02/05/2016 12:32:52 AM,02/05/2016 12:42:28 AM,02/05/2016 01:15:13 AM,02/05/2016 01:19:48 AM,Code 2 Transport,02/05/2016 02:39:49 AM,MISSION ST/5TH ST,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160360080-64 +160142905,58,16005679,Medical Incident,01/14/2016,01/14/2016,01/14/2016 05:49:38 PM,01/14/2016 05:49:38 PM,01/14/2016 05:50:49 PM,01/14/2016 05:50:59 PM,01/14/2016 05:54:09 PM,01/14/2016 06:11:40 PM,01/14/2016 06:20:48 PM,Code 2 Transport,01/14/2016 07:13:02 PM,700 Block of POLK ST,San Francisco,94109,B02,3,3115,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838069204559, -122.41925042197)",160142905-58 +132820043,B02,13095839,Medical Incident,10/09/2013,10/08/2013,10/09/2013 06:08:53 AM,10/09/2013 06:09:16 AM,10/09/2013 06:12:41 AM,10/09/2013 06:15:06 AM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/09/2013 06:16:05 AM,1000 Block of MARKET ST,SF,94103,B03,1,2248,3,E,3,false,Potentially Life-Threatening,1,CHIEF,3,3,6,South of Market,"(37.7812876870909, -122.411318055371)",132820043-B02 +123020238,AM16,12100206,Medical Incident,10/28/2012,10/28/2012,10/28/2012 02:50:39 PM,10/28/2012 02:51:54 PM,10/28/2012 02:52:11 PM,10/28/2012 02:52:43 PM,10/28/2012 02:56:45 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Patient Declined Transport,10/28/2012 03:00:13 PM,MISSION ST/20TH ST,SF,94110,B06,7,5446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",123020238-AM16 +160380567,71,16015077,Medical Incident,02/07/2016,02/06/2016,02/07/2016 03:26:55 AM,02/07/2016 03:27:47 AM,02/07/2016 03:28:21 AM,02/07/2016 03:28:29 AM,02/07/2016 03:32:51 AM,02/07/2016 03:49:43 AM,02/07/2016 04:05:02 AM,Code 2 Transport,02/07/2016 04:30:19 AM,2100 Block of OFARRELL ST,San Francisco,94115,B05,10,4236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7822906196571, -122.44011945632)",160380567-71 +160470758,KM09,16018830,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:17:33 AM,02/16/2016 08:18:40 AM,02/16/2016 08:20:09 AM,02/16/2016 08:20:32 AM,02/16/2016 08:32:33 AM,02/16/2016 08:51:41 AM,02/16/2016 09:07:09 AM,Code 2 Transport,02/16/2016 09:54:59 AM,BUENA VISTA AV W/CENTRAL AV,San Francisco,94117,B05,21,4354,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7689442347451, -122.443356053923)",160470758-KM09 +160382572,50,16015304,Medical Incident,02/07/2016,02/07/2016,02/07/2016 04:37:43 PM,02/07/2016 04:37:56 PM,02/07/2016 04:38:14 PM,02/07/2016 04:38:22 PM,02/07/2016 04:46:39 PM,02/07/2016 05:06:12 PM,02/07/2016 05:12:02 PM,Code 2 Transport,02/07/2016 05:52:09 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",160382572-50 +120030042,E01,12000920,Alarms,01/03/2012,01/02/2012,01/03/2012 04:13:32 AM,01/03/2012 04:14:59 AM,01/03/2012 04:16:09 AM,01/03/2012 04:17:36 AM,01/03/2012 04:20:26 AM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/03/2012 04:28:01 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,B,B,2,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",120030042-E01 +140540249,E21,14018346,Medical Incident,02/23/2014,02/23/2014,02/23/2014 06:54:49 PM,02/23/2014 06:55:12 PM,02/23/2014 06:55:27 PM,02/23/2014 06:56:39 PM,02/23/2014 06:58:59 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Code 2 Transport,02/23/2014 07:12:11 PM,0 Block of SHRADER ST,SF,94117,B05,21,4542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",140540249-E21 +140860058,T05,14028854,Structure Fire,03/27/2014,03/27/2014,03/27/2014 08:17:28 AM,03/27/2014 08:17:28 AM,03/27/2014 08:17:36 AM,03/27/2014 08:18:19 AM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 08:21:17 AM,FILLMORE ST/FELL ST,SAN FRANCISCO,94117,B05,5,3532,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.774902830471, -122.431011539466)",140860058-T05 +122920322,93,12096863,Medical Incident,10/18/2012,10/18/2012,10/18/2012 05:38:58 PM,10/18/2012 05:39:55 PM,10/18/2012 05:40:40 PM,10/18/2012 05:41:06 PM,10/18/2012 05:51:15 PM,10/18/2012 06:03:31 PM,10/18/2012 06:16:38 PM,Code 2 Transport,10/18/2012 06:34:33 PM,100 Block of LELAND AVE,SF,94134,B09,44,6256,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121574282644, -122.40604991915)",122920322-93 +160090436,85,16003526,Medical Incident,01/09/2016,01/08/2016,01/09/2016 04:13:43 AM,01/09/2016 04:15:47 AM,01/09/2016 04:16:10 AM,01/09/2016 04:16:33 AM,01/09/2016 04:31:56 AM,01/09/2016 04:50:01 AM,01/09/2016 05:05:32 AM,Code 2 Transport,01/09/2016 05:30:20 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160090436-85 +160143688,65,16005755,Medical Incident,01/14/2016,01/14/2016,01/14/2016 09:45:06 PM,01/14/2016 09:46:51 PM,01/14/2016 09:47:22 PM,01/14/2016 09:47:31 PM,01/14/2016 09:58:44 PM,01/14/2016 10:17:09 PM,01/14/2016 10:38:27 PM,Code 2 Transport,01/14/2016 11:12:31 PM,0 Block of DIAZ AVE,San Francisco,94132,B08,19,8424,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7181624969759, -122.476290287585)",160143688-65 +120900146,E01,12029761,Medical Incident,03/30/2012,03/30/2012,03/30/2012 11:07:14 AM,03/30/2012 11:07:50 AM,03/30/2012 11:08:12 AM,03/30/2012 11:09:51 AM,03/30/2012 11:12:09 AM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,Other,03/30/2012 11:13:49 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",120900146-E01 +160040361,72,16001463,Medical Incident,01/04/2016,01/03/2016,01/04/2016 04:20:20 AM,01/04/2016 04:20:20 AM,01/04/2016 04:21:13 AM,01/04/2016 04:21:20 AM,01/04/2016 04:39:11 AM,01/04/2016 05:16:36 AM,01/04/2016 05:20:17 AM,Code 2 Transport,01/04/2016 06:12:21 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160040361-72 +110650353,88,11021607,Medical Incident,03/06/2011,03/06/2011,03/06/2011 09:20:54 PM,03/06/2011 09:21:29 PM,03/06/2011 09:22:49 PM,03/06/2011 09:23:46 PM,03/06/2011 09:25:00 PM,03/06/2011 09:50:08 PM,03/06/2011 10:06:07 PM,Code 2 Transport,03/06/2011 10:43:40 PM,0 Block of GENEVA AVE,SF,94112,B09,15,8313,3,3,3,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7224526962267, -122.451312748281)",110650353-88 +133480086,B07,13118033,Alarms,12/14/2013,12/13/2013,12/14/2013 07:13:13 AM,12/14/2013 07:14:31 AM,12/14/2013 07:14:45 AM,12/14/2013 07:16:43 AM,12/14/2013 07:20:25 AM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 07:21:12 AM,1000 Block of LAKE ST,SF,94118,B07,31,7137,3,3,3,false,Alarm,1,CHIEF,2,7,2,Inner Richmond,"(37.7864670277445, -122.470583232165)",133480086-B07 +160220895,77,16008687,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:06:10 AM,01/22/2016 09:07:01 AM,01/22/2016 09:07:45 AM,01/22/2016 09:07:53 AM,01/22/2016 09:17:49 AM,01/22/2016 09:56:28 AM,01/22/2016 10:12:32 AM,Code 2 Transport,01/22/2016 10:43:41 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160220895-77 +102370082,E01,10074647,Medical Incident,08/25/2010,08/25/2010,08/25/2010 08:27:17 AM,08/25/2010 08:28:36 AM,08/25/2010 08:29:11 AM,08/25/2010 08:30:14 AM,08/25/2010 08:33:50 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,No Merit,08/25/2010 08:36:07 AM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7864070156063, -122.408499456394)",102370082-E01 +160491005,KM08,16019671,Medical Incident,02/18/2016,02/18/2016,02/18/2016 09:43:15 AM,02/18/2016 09:44:58 AM,02/18/2016 09:46:07 AM,02/18/2016 09:46:47 AM,02/18/2016 09:52:26 AM,02/18/2016 10:20:21 AM,02/18/2016 10:50:14 AM,Code 2 Transport,02/18/2016 11:15:21 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160491005-KM08 +160123602,63,16004965,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:37:04 PM,01/12/2016 09:38:39 PM,01/12/2016 09:39:16 PM,01/12/2016 09:39:35 PM,01/12/2016 09:46:32 PM,01/12/2016 10:12:27 PM,01/12/2016 10:30:14 PM,Code 2 Transport,01/12/2016 11:18:19 PM,1700 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",160123602-63 +120320290,T15,12010671,Alarms,02/01/2012,02/01/2012,02/01/2012 06:26:01 PM,02/01/2012 06:28:05 PM,02/01/2012 06:28:11 PM,02/01/2012 06:29:34 PM,02/01/2012 06:31:36 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Fire,02/01/2012 06:46:00 PM,900 Block of CAYUGA AVE,SF,94112,B09,15,8274,3,3,3,false,Alarm,1,TRUCK,1,9,11,Outer Mission,"(37.7223768275227, -122.439495398905)",120320290-T15 +133270108,T03,13111004,Alarms,11/23/2013,11/22/2013,11/23/2013 07:35:00 AM,11/23/2013 07:36:58 AM,11/23/2013 07:37:04 AM,11/23/2013 07:38:37 AM,11/23/2013 07:40:58 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 07:53:03 AM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",133270108-T03 +113300281,E31,11109529,Medical Incident,11/26/2011,11/26/2011,11/26/2011 10:25:27 PM,11/26/2011 10:27:02 PM,11/26/2011 10:27:48 PM,11/26/2011 10:29:40 PM,11/26/2011 10:32:09 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/26/2011 10:51:36 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",113300281-E31 +113570263,93,11118655,Medical Incident,12/23/2011,12/23/2011,12/23/2011 01:06:34 PM,12/23/2011 01:06:59 PM,12/23/2011 01:07:10 PM,12/23/2011 01:09:52 PM,12/23/2011 01:23:35 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Patient Declined Transport,12/23/2011 01:53:32 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7562319946436, -122.418893283075)",113570263-93 +131860097,T07,13063363,Administrative,07/05/2013,07/05/2013,07/05/2013 08:26:01 AM,07/05/2013 08:26:04 AM,07/05/2013 08:26:20 AM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/05/2013 08:26:49 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",131860097-T07 +130250410,89,13008820,Medical Incident,01/25/2013,01/25/2013,01/25/2013 11:12:40 PM,01/25/2013 11:17:09 PM,01/25/2013 11:17:39 PM,01/25/2013 11:17:50 PM,01/25/2013 11:38:56 PM,01/25/2013 11:46:12 PM,01/25/2013 11:59:47 PM,Code 2 Transport,01/26/2013 12:36:02 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130250410-89 +110840039,AM18,11027543,Medical Incident,03/25/2011,03/24/2011,03/25/2011 02:35:27 AM,03/25/2011 02:35:27 AM,03/25/2011 02:35:27 AM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,03/25/2011 02:38:20 AM,03/25/2011 02:44:52 AM,Code 2 Transport,03/25/2011 03:09:42 AM,OFARRELL ST/POWELL ST,SF,94102,B01,1,1363,2,2,2,false,,1,PRIVATE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",110840039-AM18 +140300185,E01,14010208,Medical Incident,01/30/2014,01/30/2014,01/30/2014 12:35:11 PM,01/30/2014 12:36:30 PM,01/30/2014 12:38:50 PM,01/30/2014 12:38:50 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/30/2014 12:41:18 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",140300185-E01 +121460124,T07,12048417,Structure Fire,05/25/2012,05/25/2012,05/25/2012 11:33:20 AM,05/25/2012 11:33:20 AM,05/25/2012 11:34:09 AM,05/25/2012 11:35:17 AM,05/25/2012 11:38:49 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Other,05/25/2012 11:39:21 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,false,Alarm,1,TRUCK,1,2,6,Mission,"(37.7726641818375, -122.418338317697)",121460124-T07 +110510196,83,11016895,Medical Incident,02/20/2011,02/20/2011,02/20/2011 01:04:21 PM,02/20/2011 01:05:12 PM,02/20/2011 01:05:23 PM,02/20/2011 01:05:35 PM,02/20/2011 01:08:56 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,No Merit,02/20/2011 01:11:04 PM,7TH ST/STEVENSON ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",110510196-83 +133560369,E03,13121186,Medical Incident,12/22/2013,12/22/2013,12/22/2013 09:35:55 PM,12/22/2013 09:37:00 PM,12/22/2013 09:39:44 PM,12/22/2013 09:41:23 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 09:42:27 PM,1300 Block of LARKIN ST,SF,94109,B04,41,1635,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",133560369-E03 +120430129,T01,12014353,Citizen Assist / Service Call,02/12/2012,02/12/2012,02/12/2012 09:33:17 AM,02/12/2012 09:36:50 AM,02/12/2012 09:37:04 AM,02/12/2012 09:38:09 AM,02/12/2012 09:40:41 AM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/12/2012 09:44:59 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120430129-T01 +120330035,72,12010778,Medical Incident,02/02/2012,02/01/2012,02/02/2012 04:07:16 AM,02/02/2012 04:10:57 AM,02/02/2012 04:11:12 AM,02/02/2012 04:11:34 AM,02/02/2012 04:23:26 AM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Patient Declined Transport,02/02/2012 04:27:12 AM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",120330035-72 +131080079,88,13036223,Medical Incident,04/18/2013,04/18/2013,04/18/2013 08:00:32 AM,04/18/2013 08:02:42 AM,04/18/2013 08:02:52 AM,04/18/2013 08:03:00 AM,04/18/2013 08:21:28 AM,04/18/2013 08:39:12 AM,04/18/2013 09:09:46 AM,Code 2 Transport,04/18/2013 09:42:04 AM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",131080079-88 +160731595,AM06,16028989,Medical Incident,03/13/2016,03/13/2016,03/13/2016 02:26:53 PM,03/13/2016 02:27:06 PM,03/13/2016 02:27:15 PM,03/13/2016 02:27:58 PM,03/13/2016 02:31:21 PM,03/13/2016 02:42:07 PM,03/13/2016 03:20:43 PM,Code 2 Transport,03/13/2016 03:52:39 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160731595-AM06 +103410316,79,10109220,Structure Fire,12/07/2010,12/07/2010,12/07/2010 06:16:28 PM,12/07/2010 06:17:08 PM,12/07/2010 06:18:18 PM,12/07/2010 06:18:29 PM,12/07/2010 06:28:09 PM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,Other,12/07/2010 06:30:23 PM,700 Block of PINE ST,SF,94108,B01,2,1325,3,3,3,true,,1,MEDIC,9,1,3,Nob Hill,"(37.7910926840668, -122.408507461375)",103410316-79 +160871197,AM02,16034526,Medical Incident,03/27/2016,03/27/2016,03/27/2016 10:12:46 AM,03/27/2016 10:15:00 AM,03/27/2016 10:16:28 AM,03/27/2016 10:17:03 AM,03/27/2016 10:24:47 AM,03/27/2016 10:42:20 AM,03/27/2016 11:16:17 AM,Code 2 Transport,03/27/2016 11:35:29 AM,0 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8146405483206, -122.370773674411)",160871197-AM02 +120070299,88,12002517,Medical Incident,01/07/2012,01/07/2012,01/07/2012 07:22:13 PM,01/07/2012 07:23:20 PM,01/07/2012 07:24:02 PM,01/07/2012 07:26:04 PM,01/07/2012 07:32:05 PM,01/07/2012 07:41:27 PM,01/07/2012 07:58:30 PM,Code 2 Transport,01/07/2012 08:28:21 PM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",120070299-88 +160051100,KM09,16001933,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:14:23 AM,01/05/2016 10:15:38 AM,01/05/2016 10:15:50 AM,01/05/2016 10:20:27 AM,01/05/2016 10:26:49 AM,01/05/2016 10:34:44 AM,01/05/2016 10:47:48 AM,Code 2 Transport,01/05/2016 11:30:26 AM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160051100-KM09 +160873360,63,16034742,Medical Incident,03/27/2016,03/27/2016,03/27/2016 09:26:45 PM,03/27/2016 09:28:51 PM,03/27/2016 09:35:00 PM,03/27/2016 09:35:15 PM,03/27/2016 09:52:06 PM,03/27/2016 10:14:18 PM,03/27/2016 10:54:10 PM,Code 2 Transport,03/27/2016 11:08:47 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160873360-63 +160251943,79,16009957,Medical Incident,01/25/2016,01/25/2016,01/25/2016 01:35:40 PM,01/25/2016 01:37:06 PM,01/25/2016 01:39:17 PM,01/25/2016 01:39:23 PM,01/25/2016 01:48:46 PM,01/25/2016 01:55:16 PM,01/25/2016 02:00:53 PM,Code 2 Transport,01/25/2016 02:21:09 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160251943-79 +110100322,E02,11003426,Medical Incident,01/10/2011,01/10/2011,01/10/2011 05:59:17 PM,01/10/2011 06:00:03 PM,01/10/2011 06:01:11 PM,01/10/2011 06:02:27 PM,01/10/2011 06:04:18 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/10/2011 06:14:51 PM,1000 Block of STOCKTON ST,SF,94108,B01,2,1331,3,2,2,true,,1,ENGINE,1,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",110100322-E02 +120060019,B01,12001931,Alarms,01/06/2012,01/05/2012,01/06/2012 01:14:34 AM,01/06/2012 01:15:57 AM,01/06/2012 01:16:08 AM,01/06/2012 01:17:51 AM,01/06/2012 01:24:33 AM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Fire,01/06/2012 01:28:41 AM,0 Block of GEARY ST,SF,94108,B01,1,1241,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",120060019-B01 +130610042,54,13020345,Medical Incident,03/02/2013,03/01/2013,03/02/2013 02:43:54 AM,03/02/2013 02:46:47 AM,03/02/2013 02:48:32 AM,04/25/2016 01:54:03 PM,03/02/2013 02:50:30 AM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Medical Examiner,03/02/2013 03:30:02 AM,900 Block of SACRAMENTO ST,SF,94108,B01,2,1326,E,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",130610042-54 +140470338,RS2,14016150,Structure Fire,02/16/2014,02/16/2014,02/16/2014 08:51:31 PM,02/16/2014 08:54:14 PM,02/16/2014 08:54:26 PM,02/16/2014 08:55:51 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 08:59:20 PM,600 Block of KEITH ST,SF,94124,B10,25,6565,,3,3,false,Alarm,1,RESCUE SQUAD,9,10,10,Bayview Hunters Point,"(37.7371958243577, -122.382770664389)",140470338-RS2 +102480267,79,10078442,Traffic Collision,09/05/2010,09/05/2010,09/05/2010 05:53:32 PM,09/05/2010 05:54:33 PM,09/05/2010 05:55:03 PM,09/05/2010 05:56:42 PM,09/05/2010 06:03:06 PM,09/05/2010 06:10:50 PM,09/05/2010 06:17:25 PM,Code 3 Transport,09/05/2010 06:50:29 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,true,,1,MEDIC,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",102480267-79 +113440116,KM12,11114068,Medical Incident,12/10/2011,12/10/2011,12/10/2011 10:13:58 AM,12/10/2011 10:15:13 AM,12/10/2011 10:15:47 AM,12/10/2011 10:16:22 AM,12/10/2011 10:19:11 AM,12/10/2011 10:41:01 AM,12/10/2011 10:48:30 AM,Code 2 Transport,12/10/2011 11:34:38 AM,GEARY BL/LAGUNA ST,SF,94109,B04,5,3432,3,3,3,false,,1,PRIVATE,2,4,5,Western Addition,"(37.7849538777807, -122.427988928146)",113440116-KM12 +132140095,E10,13072197,Medical Incident,08/02/2013,08/02/2013,08/02/2013 09:22:57 AM,08/02/2013 09:23:47 AM,08/02/2013 09:24:05 AM,08/02/2013 09:24:17 AM,08/02/2013 09:26:38 AM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/02/2013 09:45:28 AM,2700 Block of PINE ST,SF,94115,B04,10,4156,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7869521630601, -122.441071822801)",132140095-E10 +102570301,78,10081296,Medical Incident,09/14/2010,09/14/2010,09/14/2010 06:31:30 PM,09/14/2010 06:33:16 PM,09/14/2010 06:34:41 PM,09/14/2010 06:35:12 PM,09/14/2010 06:47:10 PM,09/14/2010 07:16:36 PM,09/14/2010 07:42:37 PM,Code 2 Transport,09/14/2010 08:16:19 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,1,1,2,true,,1,MEDIC,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",102570301-78 +103260240,D3,10104530,Vehicle Fire,11/22/2010,11/22/2010,11/22/2010 04:37:58 PM,11/22/2010 04:39:20 PM,11/22/2010 04:39:48 PM,11/22/2010 04:41:57 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/22/2010 04:44:58 PM,100 Block of WHITNEY YOUNG CIR,SF,94124,B10,17,1100,3,3,3,false,,1,CHIEF,8,10,10,Bayview Hunters Point,"(37.7360363462118, -122.385908786754)",103260240-D3 +123170263,E42,12105579,Medical Incident,11/12/2012,11/12/2012,11/12/2012 07:37:36 PM,11/12/2012 07:38:32 PM,11/12/2012 07:38:47 PM,11/12/2012 07:40:25 PM,11/12/2012 07:43:20 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/12/2012 08:01:26 PM,800 Block of DARTMOUTH ST,SF,94134,B09,44,6322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.7201607242618, -122.409329987788)",123170263-E42 +130520202,E10,13017590,Medical Incident,02/21/2013,02/21/2013,02/21/2013 01:43:50 PM,02/21/2013 01:45:14 PM,02/21/2013 01:46:37 PM,02/21/2013 01:47:46 PM,02/21/2013 01:50:20 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,02/21/2013 01:57:16 PM,4000 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7812175298072, -122.46268182082)",130520202-E10 +160053707,KM07,16002199,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:44:37 PM,01/05/2016 10:44:37 PM,01/05/2016 10:45:30 PM,01/05/2016 10:46:01 PM,01/05/2016 10:52:50 PM,01/05/2016 11:14:27 PM,01/05/2016 11:27:43 PM,Code 2 Transport,01/06/2016 12:01:29 AM,HOWARD ST/6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",160053707-KM07 +121500172,E01,12049736,Medical Incident,05/29/2012,05/29/2012,05/29/2012 12:45:24 PM,05/29/2012 12:48:01 PM,05/29/2012 12:48:12 PM,05/29/2012 12:49:54 PM,05/29/2012 12:53:14 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/29/2012 12:55:12 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",121500172-E01 +122720327,94,12089882,Medical Incident,09/28/2012,09/28/2012,09/28/2012 11:52:26 PM,09/28/2012 11:52:55 PM,09/28/2012 11:53:05 PM,09/28/2012 11:53:14 PM,09/28/2012 11:57:31 PM,09/29/2012 12:19:17 AM,09/29/2012 12:41:11 AM,Code 2 Transport,09/29/2012 12:57:14 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",122720327-94 +131080197,KM09,13036314,Medical Incident,04/18/2013,04/18/2013,04/18/2013 01:23:40 PM,04/18/2013 01:25:27 PM,04/18/2013 01:26:08 PM,04/18/2013 01:26:54 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/18/2013 01:33:25 PM,600 Block of 22ND AVE,SF,94121,B07,14,7171,3,3,3,false,Non Life-threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7755129398051, -122.481248939147)",131080197-KM09 +160612215,AM16,16024366,Medical Incident,03/01/2016,03/01/2016,03/01/2016 03:54:13 PM,03/01/2016 03:54:18 PM,03/01/2016 03:54:55 PM,03/01/2016 03:56:11 PM,03/01/2016 03:58:40 PM,03/01/2016 04:07:42 PM,03/01/2016 04:19:19 PM,Code 2 Transport,03/01/2016 04:45:38 PM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",160612215-AM16 +160190052,AM20,16007441,Medical Incident,01/19/2016,01/18/2016,01/19/2016 12:25:34 AM,01/19/2016 12:26:23 AM,01/19/2016 12:26:36 AM,01/19/2016 12:27:22 AM,01/19/2016 12:34:17 AM,01/19/2016 12:57:50 AM,01/19/2016 01:13:55 AM,Code 2 Transport,01/19/2016 01:38:19 AM,400 Block of 34TH AVE,San Francisco,94121,B07,34,7247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7806166653743, -122.494381116106)",160190052-AM20 +140880264,E07,14029719,Medical Incident,03/29/2014,03/29/2014,03/29/2014 05:41:10 PM,03/29/2014 05:41:10 PM,03/29/2014 05:43:53 PM,03/29/2014 05:45:13 PM,03/29/2014 05:49:14 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,Patient Declined Transport,03/29/2014 05:59:34 PM,14TH ST/TRAINOR ST,SAN FRANCISCO,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7686021960262, -122.414540072103)",140880264-E07 +113490206,T12,11115820,Traffic Collision,12/15/2011,12/15/2011,12/15/2011 03:20:15 PM,12/15/2011 03:20:21 PM,12/15/2011 03:20:44 PM,04/25/2016 02:01:08 PM,12/15/2011 03:25:41 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/15/2011 03:26:35 PM,MASONIC AV/WALLER ST,SF,94117,B05,21,4466,3,3,3,false,,1,TRUCK,4,5,5,Haight Ashbury,"(37.7692842278909, -122.445105981116)",113490206-T12 +140340085,E29,14011418,Alarms,02/03/2014,02/03/2014,02/03/2014 08:48:43 AM,02/03/2014 08:48:43 AM,02/03/2014 08:48:56 AM,02/03/2014 08:50:42 AM,02/03/2014 08:52:25 AM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 08:59:43 AM,100 Block of VERMONT ST,SF,94103,B02,29,2355,3,3,3,true,Alarm,1,ENGINE,2,2,10,Mission Bay,"(37.76789826103, -122.404743414302)",140340085-E29 +112400041,E01,11079081,Medical Incident,08/28/2011,08/27/2011,08/28/2011 02:05:33 AM,08/28/2011 02:08:07 AM,08/28/2011 02:09:23 AM,04/25/2016 02:02:57 PM,08/28/2011 02:12:00 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,No Merit,08/28/2011 02:18:55 AM,4TH ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",112400041-E01 +160681201,KM11,16027080,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:21:21 AM,03/08/2016 10:28:36 AM,03/08/2016 10:30:13 AM,03/08/2016 10:30:52 AM,03/08/2016 10:47:08 AM,03/08/2016 11:01:25 AM,03/08/2016 11:23:08 AM,Code 2 Transport,03/08/2016 11:41:47 AM,1000 Block of CAPITOL AVE,San Francisco,94112,B09,15,8464,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209306726237, -122.459270472767)",160681201-KM11 +131150178,T14,13038779,Citizen Assist / Service Call,04/25/2013,04/25/2013,04/25/2013 02:26:55 PM,04/25/2013 02:27:37 PM,04/25/2013 02:27:57 PM,04/25/2013 02:29:08 PM,04/25/2013 02:30:52 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 02:55:44 PM,500 Block of 24TH AVE,SF,94121,B07,14,7213,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.7791817647436, -122.483524577803)",131150178-T14 +131990224,T03,13067495,Medical Incident,07/18/2013,07/18/2013,07/18/2013 02:52:38 PM,07/18/2013 02:53:46 PM,07/18/2013 02:54:46 PM,07/18/2013 02:55:58 PM,07/18/2013 02:59:00 PM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 03:04:36 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",131990224-T03 +131870277,E05,13063877,Administrative,07/06/2013,07/06/2013,07/06/2013 07:35:08 PM,07/06/2013 07:35:14 PM,07/06/2013 07:35:24 PM,04/25/2016 01:51:55 PM,04/25/2016 01:51:55 PM,04/25/2016 01:51:55 PM,04/25/2016 01:51:55 PM,Other,07/06/2013 07:36:33 PM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",131870277-E05 +110050201,E11,11001651,Medical Incident,01/05/2011,01/05/2011,01/05/2011 12:50:10 PM,01/05/2011 12:50:32 PM,01/05/2011 12:50:56 PM,01/05/2011 12:51:40 PM,01/05/2011 12:53:26 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 12:57:09 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.749836317622, -122.418280538883)",110050201-E11 +110910080,87,11030059,Medical Incident,04/01/2011,03/31/2011,04/01/2011 07:18:35 AM,04/01/2011 07:19:48 AM,04/01/2011 07:20:17 AM,04/01/2011 07:21:16 AM,04/01/2011 07:33:45 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Medical Examiner,04/01/2011 08:00:48 AM,600 Block of MASON ST,SF,94108,B01,3,1412,E,E,3,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7894926602391, -122.41026951897)",110910080-87 +122290204,T07,12075892,Alarms,08/16/2012,08/16/2012,08/16/2012 01:30:05 PM,08/16/2012 01:30:59 PM,08/16/2012 01:32:20 PM,08/16/2012 01:35:19 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Other,08/16/2012 01:36:00 PM,0 Block of LIBERTY ST,SF,94110,B06,7,5456,3,3,3,false,Alarm,1,TRUCK,3,6,8,Mission,"(37.7575809773167, -122.422275311384)",122290204-T07 +140630071,E01,14021193,Medical Incident,03/04/2014,03/03/2014,03/04/2014 07:43:43 AM,03/04/2014 07:44:07 AM,03/04/2014 07:48:27 AM,04/25/2016 01:47:55 PM,03/04/2014 07:48:27 AM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Code 2 Transport,03/04/2014 07:53:29 AM,0 Block of MORRIS ST,SF,94107,B03,8,2254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.777123803141, -122.402705469681)",140630071-E01 +160680093,61,16026958,Traffic Collision,03/08/2016,03/07/2016,03/08/2016 12:42:59 AM,03/08/2016 12:42:59 AM,03/08/2016 12:43:33 AM,03/08/2016 12:44:04 AM,03/08/2016 12:45:52 AM,03/08/2016 01:16:02 AM,03/08/2016 01:16:22 AM,Code 2 Transport,03/08/2016 02:18:54 AM,HOWARD ST/MAIN ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160680093-61 +103110268,E07,10099816,Medical Incident,11/07/2010,11/07/2010,11/07/2010 05:10:18 PM,11/07/2010 05:10:43 PM,11/07/2010 05:11:11 PM,11/07/2010 05:12:28 PM,11/07/2010 05:14:24 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 05:20:43 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",103110268-E07 +131590060,E15,13053916,Medical Incident,06/08/2013,06/07/2013,06/08/2013 04:57:48 AM,06/08/2013 04:59:40 AM,06/08/2013 05:00:30 AM,06/08/2013 05:02:18 AM,06/08/2013 05:04:47 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 05:13:32 AM,100 Block of FOERSTER ST,SF,94112,B09,15,8232,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7294777509193, -122.448783037809)",131590060-E15 +132780432,67,13094723,Medical Incident,10/05/2013,10/05/2013,10/05/2013 11:43:52 PM,10/05/2013 11:45:46 PM,10/05/2013 11:46:05 PM,10/05/2013 11:46:13 PM,10/05/2013 11:57:53 PM,10/06/2013 12:15:02 AM,10/06/2013 12:32:03 AM,Code 2 Transport,10/06/2013 12:51:21 AM,1800 Block of GENEVA AVE,SF,94134,B09,43,6245,2,2,2,false,Non Life-threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7097139615877, -122.423915088819)",132780432-67 +130510039,E08,13017152,Medical Incident,02/20/2013,02/19/2013,02/20/2013 04:23:36 AM,02/20/2013 04:25:27 AM,02/20/2013 04:25:53 AM,02/20/2013 04:28:30 AM,02/20/2013 04:30:13 AM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Other,02/20/2013 04:34:18 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130510039-E08 +122540010,E36,12083824,Medical Incident,09/10/2012,09/09/2012,09/10/2012 12:57:12 AM,09/10/2012 12:59:29 AM,09/10/2012 01:00:22 AM,09/10/2012 01:02:30 AM,09/10/2012 01:04:37 AM,04/25/2016 01:56:50 PM,04/25/2016 01:56:50 PM,Other,09/10/2012 01:14:03 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",122540010-E36 +102420248,KM14,10076372,Medical Incident,08/30/2010,08/30/2010,08/30/2010 03:42:59 PM,08/30/2010 03:45:44 PM,08/30/2010 03:46:03 PM,08/30/2010 03:46:38 PM,08/30/2010 03:51:51 PM,08/30/2010 04:10:49 PM,08/30/2010 04:20:09 PM,Code 2 Transport,08/30/2010 04:36:36 PM,600 Block of CLARENDON AVE,SF,94131,B08,20,535,3,3,3,false,,1,PRIVATE,2,8,7,Inner Sunset,"(37.7519950375446, -122.458952047787)",102420248-KM14 +130180305,86,13006235,Medical Incident,01/18/2013,01/18/2013,01/18/2013 04:54:48 PM,01/18/2013 04:56:23 PM,01/18/2013 05:08:11 PM,04/25/2016 01:54:44 PM,01/18/2013 05:12:18 PM,01/18/2013 05:22:01 PM,01/18/2013 05:31:27 PM,Code 2 Transport,01/18/2013 06:14:16 PM,900 Block of GUERRERO ST,SF,94110,B06,11,5471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7559629467017, -122.423368898448)",130180305-86 +110200306,T12,11006699,Structure Fire,01/20/2011,01/20/2011,01/20/2011 05:20:02 PM,01/20/2011 05:20:59 PM,01/20/2011 05:21:27 PM,01/20/2011 05:22:20 PM,01/20/2011 05:29:27 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 05:32:44 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,TRUCK,3,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110200306-T12 +113180249,65,11105698,Traffic Collision,11/14/2011,11/14/2011,11/14/2011 04:45:15 PM,11/14/2011 04:52:44 PM,11/14/2011 04:54:06 PM,11/14/2011 04:55:18 PM,11/14/2011 05:15:16 PM,11/14/2011 05:27:02 PM,11/14/2011 05:44:14 PM,Code 2 Transport,11/14/2011 06:24:22 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,2,2,2,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",113180249-65 +102440063,E03,10076881,Medical Incident,09/01/2010,08/31/2010,09/01/2010 07:15:46 AM,09/01/2010 07:16:25 AM,09/01/2010 07:16:44 AM,09/01/2010 07:18:31 AM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,09/01/2010 07:20:11 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",102440063-E03 +120990344,E24,12032955,Medical Incident,04/08/2012,04/08/2012,04/08/2012 10:33:58 PM,04/08/2012 10:34:17 PM,04/08/2012 10:34:43 PM,04/08/2012 10:36:03 PM,04/08/2012 10:38:25 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 10:41:20 PM,CORBETT AV/MARS ST,SF,94114,B05,24,5265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7605139661297, -122.444350392988)",120990344-E24 +112510066,T16,11082672,Alarms,09/08/2011,09/07/2011,09/08/2011 06:24:00 AM,09/08/2011 06:25:15 AM,09/08/2011 06:25:29 AM,09/08/2011 06:26:59 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 06:29:12 AM,2200 Block of VALLEJO ST,SF,94123,B04,16,3551,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.7953847417128, -122.434302143729)",112510066-T16 +111600044,E03,11052782,Alarms,06/09/2011,06/08/2011,06/09/2011 05:26:38 AM,06/09/2011 05:27:41 AM,06/09/2011 05:27:57 AM,06/09/2011 05:30:21 AM,06/09/2011 05:31:55 AM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 05:38:08 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",111600044-E03 +123600178,85,12120506,Medical Incident,12/25/2012,12/25/2012,12/25/2012 02:14:13 PM,12/25/2012 02:15:05 PM,12/25/2012 02:15:16 PM,12/25/2012 02:16:04 PM,12/25/2012 02:18:24 PM,12/25/2012 02:33:32 PM,12/25/2012 02:46:18 PM,Code 2 Transport,12/25/2012 03:16:05 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",123600178-85 +160400995,AM10,16015942,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:31:33 AM,02/09/2016 09:31:33 AM,02/09/2016 09:31:56 AM,02/09/2016 09:32:14 AM,02/09/2016 09:50:47 AM,02/09/2016 09:50:50 AM,02/09/2016 10:15:45 AM,Code 2 Transport,02/09/2016 10:28:38 AM,0 Block of CAMPTON PL,San Francisco,94108,B01,1,1316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7891339288301, -122.406092232969)",160400995-AM10 +122350243,79,12077925,Medical Incident,08/22/2012,08/22/2012,08/22/2012 04:54:59 PM,08/22/2012 04:59:01 PM,08/22/2012 05:00:16 PM,08/22/2012 05:01:16 PM,08/22/2012 05:08:02 PM,08/22/2012 05:30:45 PM,08/22/2012 05:54:33 PM,Code 2 Transport,08/22/2012 06:12:02 PM,0 Block of TURK ST,SF,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122350243-79 +131190141,E37,13040005,Citizen Assist / Service Call,04/29/2013,04/29/2013,04/29/2013 09:53:55 AM,04/29/2013 09:55:14 AM,04/29/2013 09:55:29 AM,04/29/2013 09:55:52 AM,04/29/2013 09:59:59 AM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Fire,04/29/2013 10:03:46 AM,UTAH ST/23RD ST,SF,94110,B10,37,2554,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.754337232305, -122.405454171915)",131190141-E37 +130540256,T02,13018324,Structure Fire,02/23/2013,02/23/2013,02/23/2013 05:44:38 PM,02/23/2013 05:44:39 PM,02/23/2013 05:45:04 PM,02/23/2013 05:46:51 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 05:47:46 PM,STOCKTON ST/BAY ST,SF,94133,B01,28,1341,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8060277167068, -122.410310842828)",130540256-T02 +110280274,RC2,11009297,Watercraft in Distress,01/28/2011,01/28/2011,01/28/2011 05:54:48 PM,01/28/2011 05:56:07 PM,01/28/2011 05:56:22 PM,01/28/2011 05:59:19 PM,01/28/2011 06:06:29 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/28/2011 06:41:14 PM,500 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",110280274-RC2 +160423465,66,16017025,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:35:12 PM,02/11/2016 08:35:12 PM,02/11/2016 08:36:07 PM,02/11/2016 08:36:30 PM,02/11/2016 08:43:13 PM,02/11/2016 09:25:36 PM,02/11/2016 09:25:37 PM,Code 2 Transport,02/11/2016 10:28:04 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160423465-66 +102640053,E33,10083447,Medical Incident,09/21/2010,09/20/2010,09/21/2010 06:49:21 AM,09/21/2010 06:50:07 AM,09/21/2010 06:50:24 AM,09/21/2010 06:52:08 AM,09/21/2010 06:54:10 AM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:11:02 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,E,E,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",102640053-E33 +160483116,KM03,16019449,Medical Incident,02/17/2016,02/17/2016,02/17/2016 06:06:05 PM,02/17/2016 06:06:55 PM,02/17/2016 06:07:20 PM,02/17/2016 06:07:57 PM,02/17/2016 06:13:35 PM,02/17/2016 06:32:12 PM,02/17/2016 06:40:41 PM,Code 2 Transport,02/17/2016 07:18:12 PM,0 Block of WESTERN SHORE LN,San Francisco,94115,B04,5,3432,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7840488621731, -122.428507259493)",160483116-KM03 +112950242,E02,11097894,Medical Incident,10/22/2011,10/22/2011,10/22/2011 04:32:19 PM,10/22/2011 04:33:11 PM,10/22/2011 04:34:51 PM,10/22/2011 04:36:22 PM,10/22/2011 04:39:09 PM,10/22/2011 04:59:43 PM,10/22/2011 05:26:27 PM,Other,10/22/2011 05:30:08 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,E,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",112950242-E02 +160533074,79,16021355,Medical Incident,02/22/2016,02/22/2016,02/22/2016 07:36:15 PM,02/22/2016 07:38:20 PM,02/22/2016 07:38:37 PM,02/22/2016 07:44:08 PM,02/22/2016 07:50:31 PM,02/22/2016 08:02:12 PM,02/22/2016 08:14:41 PM,Code 2 Transport,02/22/2016 08:45:36 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160533074-79 +110560006,96,11018302,Medical Incident,02/25/2011,02/24/2011,02/25/2011 12:21:51 AM,02/25/2011 12:23:42 AM,02/25/2011 12:24:40 AM,02/25/2011 12:25:41 AM,02/25/2011 12:30:23 AM,02/25/2011 12:39:49 AM,02/25/2011 01:10:31 AM,Code 2 Transport,02/25/2011 01:23:55 AM,HAIGHT ST/CLAYTON ST,SF,94117,B05,12,4525,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",110560006-96 +160130740,63,16005088,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:11:57 AM,01/13/2016 08:14:17 AM,01/13/2016 08:15:04 AM,01/13/2016 08:16:30 AM,01/13/2016 08:27:50 AM,01/13/2016 08:50:12 AM,01/13/2016 09:09:22 AM,Code 2 Transport,01/13/2016 09:49:56 AM,500 Block of ELLINGTON AVE,San Francisco,94112,B09,33,6211,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.710553884695, -122.448747668125)",160130740-63 +103190161,E09,10102230,Medical Incident,11/15/2010,11/15/2010,11/15/2010 11:19:44 AM,11/15/2010 11:20:35 AM,11/15/2010 11:21:31 AM,11/15/2010 11:22:27 AM,11/15/2010 11:34:57 AM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 11:45:13 AM,1300 Block of NEWHALL ST,SF,94124,B10,17,6471,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7359424972351, -122.391874407163)",103190161-E09 +122650130,85,12087507,Medical Incident,09/21/2012,09/21/2012,09/21/2012 11:42:00 AM,09/21/2012 11:43:37 AM,09/21/2012 11:43:45 AM,09/21/2012 11:44:21 AM,09/21/2012 11:55:41 AM,09/21/2012 12:19:08 PM,09/21/2012 12:33:43 PM,Code 2 Transport,09/21/2012 01:14:21 PM,1200 Block of MARKET ST,SF,94103,B02,36,2337,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",122650130-85 +140850058,E10,14028526,Medical Incident,03/26/2014,03/25/2014,03/26/2014 07:09:18 AM,03/26/2014 07:09:38 AM,03/26/2014 07:10:35 AM,03/26/2014 07:11:21 AM,03/26/2014 07:15:29 AM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/26/2014 07:44:03 AM,200 Block of 9TH AVE,SAN FRANCISCO,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",140850058-E10 +121600305,E44,12053041,Medical Incident,06/08/2012,06/08/2012,06/08/2012 05:50:09 PM,06/08/2012 05:52:32 PM,06/08/2012 05:53:09 PM,06/08/2012 05:55:35 PM,06/08/2012 06:00:47 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,06/08/2012 06:02:00 PM,BROOKDALE AV/BLYTHDALE AV,SF,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7113166944432, -122.422240832139)",121600305-E44 +160413362,70,16016612,Medical Incident,02/10/2016,02/10/2016,02/10/2016 07:30:19 PM,02/10/2016 07:30:56 PM,02/10/2016 07:31:36 PM,02/10/2016 07:31:44 PM,02/10/2016 07:44:14 PM,02/10/2016 08:01:41 PM,02/10/2016 08:33:04 PM,Code 2 Transport,02/10/2016 08:50:39 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160413362-70 +110200137,E10,11006557,Structure Fire,01/20/2011,01/20/2011,01/20/2011 10:23:31 AM,01/20/2011 10:23:42 AM,01/20/2011 10:25:20 AM,01/20/2011 10:25:33 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 10:26:57 AM,3900 Block of SACRAMENTO ST,SF,94118,B07,10,444,3,3,3,true,,1,ENGINE,2,7,2,Presidio Heights,"(37.7868299907171, -122.458076168664)",110200137-E10 +133100143,B06,13105360,Medical Incident,11/06/2013,11/06/2013,11/06/2013 11:38:49 AM,11/06/2013 11:39:30 AM,11/06/2013 11:45:32 AM,04/25/2016 01:49:53 PM,11/06/2013 12:00:13 PM,04/25/2016 01:49:53 PM,04/25/2016 01:49:53 PM,Other,11/06/2013 12:01:00 PM,300 Block of LAIDLEY ST,SF,94131,B06,26,8127,3,E,3,false,Potentially Life-Threatening,1,CHIEF,4,6,8,Glen Park,"(37.7372888006621, -122.428846489541)",133100143-B06 +122480046,E03,12081878,Medical Incident,09/04/2012,09/03/2012,09/04/2012 03:37:03 AM,09/04/2012 03:38:18 AM,09/04/2012 03:38:34 AM,09/04/2012 03:41:34 AM,09/04/2012 03:42:26 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/04/2012 03:44:08 AM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",122480046-E03 +160393451,54,16015795,Medical Incident,02/08/2016,02/08/2016,02/08/2016 08:53:06 PM,02/08/2016 08:54:08 PM,02/08/2016 08:54:50 PM,02/08/2016 08:55:02 PM,02/08/2016 08:59:14 PM,02/08/2016 09:56:50 PM,02/08/2016 09:59:23 PM,Code 2 Transport,02/08/2016 10:35:45 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160393451-54 +130030209,E06,13001029,Medical Incident,01/03/2013,01/03/2013,01/03/2013 01:28:59 PM,01/03/2013 01:29:35 PM,01/03/2013 01:29:57 PM,01/03/2013 01:31:37 PM,01/03/2013 01:32:49 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 01:34:56 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",130030209-E06 +103560074,E06,10114183,Medical Incident,12/22/2010,12/22/2010,12/22/2010 08:25:36 AM,12/22/2010 08:26:59 AM,12/22/2010 08:28:51 AM,12/22/2010 08:30:05 AM,12/22/2010 08:33:43 AM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,Other,12/22/2010 08:41:42 AM,1600 Block of MISSION ST,SF,94103,B02,36,5124,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7703629020559, -122.419794421077)",103560074-E06 +133320303,E16,13112794,Medical Incident,11/28/2013,11/28/2013,11/28/2013 11:11:18 PM,11/28/2013 11:13:37 PM,11/28/2013 11:13:49 PM,11/28/2013 11:15:21 PM,11/28/2013 11:18:26 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 11:29:00 PM,2900 Block of BAKER ST,SF,94123,B04,16,4313,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7981492207549, -122.445948017405)",133320303-E16 +121710115,E39,12056699,Administrative,06/19/2012,06/19/2012,06/19/2012 09:32:56 AM,06/19/2012 09:32:58 AM,06/19/2012 09:34:06 AM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/19/2012 09:40:44 AM,1000 Block of PORTOLA DR,SF,94127,B08,39,8572,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7404960254393, -122.458524519728)",121710115-E39 +140930126,E03,14031222,Medical Incident,04/03/2014,04/03/2014,04/03/2014 10:29:37 AM,04/03/2014 10:30:56 AM,04/03/2014 10:31:45 AM,04/03/2014 10:31:59 AM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,Code 2 Transport,04/03/2014 10:34:23 AM,200 Block of 10TH ST,SAN FRANCISCO,94103,B02,36,2342,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7734664897325, -122.413546904215)",140930126-E03 +103470242,KM14,10111313,Medical Incident,12/13/2010,12/13/2010,12/13/2010 02:44:02 PM,12/13/2010 02:47:43 PM,12/13/2010 02:49:28 PM,12/13/2010 02:50:17 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Patient Declined Transport,12/13/2010 03:16:10 PM,500 Block of 28TH AVE,SF,94121,B07,14,7226,3,3,3,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7789805573402, -122.487944517456)",103470242-KM14 +110280029,E01,11009104,Alarms,01/28/2011,01/27/2011,01/28/2011 03:53:16 AM,01/28/2011 03:54:17 AM,01/28/2011 03:54:29 AM,01/28/2011 03:56:32 AM,01/28/2011 03:59:20 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 04:05:34 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110280029-E01 +112920109,E29,11096831,Medical Incident,10/19/2011,10/19/2011,10/19/2011 09:20:55 AM,10/19/2011 09:21:55 AM,10/19/2011 09:22:07 AM,10/19/2011 09:24:41 AM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/19/2011 09:28:24 AM,1200 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",112920109-E29 +160812311,61,16032237,Medical Incident,03/21/2016,03/21/2016,03/21/2016 03:20:24 PM,03/21/2016 03:21:38 PM,03/21/2016 03:22:02 PM,03/21/2016 03:22:15 PM,03/21/2016 03:26:15 PM,03/21/2016 03:40:21 PM,03/21/2016 03:51:42 PM,Code 2 Transport,03/21/2016 04:19:52 PM,600 Block of HOLLY PARK CIR,San Francisco,94110,B06,32,564,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7368887944401, -122.421170118394)",160812311-61 +112000298,RC3,11066045,Medical Incident,07/19/2011,07/19/2011,07/19/2011 06:54:48 PM,07/19/2011 06:55:30 PM,07/19/2011 06:56:04 PM,07/19/2011 06:56:32 PM,07/19/2011 07:03:23 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/19/2011 07:24:06 PM,2400 Block of KEITH ST,SF,94124,B10,17,6546,3,E,3,true,,1,RESCUE CAPTAIN,2,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",112000298-RC3 +130050316,E32,13001838,Medical Incident,01/05/2013,01/05/2013,01/05/2013 06:41:42 PM,01/05/2013 06:42:13 PM,01/05/2013 06:43:26 PM,01/05/2013 06:44:54 PM,01/05/2013 06:47:26 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/05/2013 07:04:16 PM,200 Block of CHENERY ST,SF,94131,B06,32,8113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7377199867519, -122.426819638194)",130050316-E32 +103490336,E29,10112055,Structure Fire,12/15/2010,12/15/2010,12/15/2010 08:55:21 PM,12/15/2010 08:55:38 PM,12/15/2010 08:55:57 PM,12/15/2010 08:59:32 PM,12/15/2010 09:02:29 PM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Other,12/15/2010 09:14:57 PM,100 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,true,,1,ENGINE,6,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",103490336-E29 +160460899,89,16018436,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:04:02 AM,02/15/2016 09:06:17 AM,02/15/2016 09:07:28 AM,02/15/2016 09:07:39 AM,02/15/2016 09:18:19 AM,02/15/2016 09:40:47 AM,02/15/2016 10:04:42 AM,Code 2 Transport,02/15/2016 10:56:58 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160460899-89 +160840096,KM07,16033205,Medical Incident,03/24/2016,03/23/2016,03/24/2016 12:44:18 AM,03/24/2016 12:49:46 AM,03/24/2016 12:50:43 AM,03/24/2016 12:52:47 AM,03/24/2016 01:04:25 AM,03/24/2016 01:18:58 AM,03/24/2016 01:39:17 AM,Code 2 Transport,03/24/2016 02:09:02 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160840096-KM07 +121220038,66,12040379,Medical Incident,05/01/2012,04/30/2012,05/01/2012 05:51:50 AM,05/01/2012 05:52:50 AM,05/01/2012 05:53:24 AM,05/01/2012 05:53:36 AM,05/01/2012 05:58:51 AM,05/01/2012 06:14:51 AM,05/01/2012 06:19:22 AM,Code 3 Transport,05/01/2012 07:05:06 AM,1100 Block of FOLSOM ST,SF,94103,B02,29,2322,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7752603293476, -122.409820946894)",121220038-66 +122020313,RWC2,12067216,Water Rescue,07/20/2012,07/20/2012,07/20/2012 06:51:06 PM,07/20/2012 06:51:27 PM,07/20/2012 06:51:58 PM,07/20/2012 06:59:40 PM,07/20/2012 07:16:58 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 07:29:18 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,SUPPORT,8,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122020313-RWC2 +110950311,B08,11031656,Structure Fire,04/05/2011,04/05/2011,04/05/2011 08:52:08 PM,04/05/2011 08:53:09 PM,04/05/2011 08:53:54 PM,04/06/2011 03:55:21 AM,04/06/2011 04:06:54 AM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,Other,04/06/2011 08:40:24 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,3,CHIEF,37,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",110950311-B08 +140280078,D2,14009444,Structure Fire,01/28/2014,01/28/2014,01/28/2014 08:37:47 AM,01/28/2014 08:38:14 AM,01/28/2014 08:38:42 AM,01/28/2014 08:40:27 AM,01/28/2014 08:42:31 AM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/28/2014 08:43:13 AM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,false,Alarm,1,CHIEF,5,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",140280078-D2 +160190353,82,16007470,Medical Incident,01/19/2016,01/18/2016,01/19/2016 04:00:47 AM,01/19/2016 04:01:42 AM,01/19/2016 04:04:41 AM,01/19/2016 04:04:59 AM,01/19/2016 04:16:39 AM,01/19/2016 04:20:38 AM,01/19/2016 04:34:27 AM,Code 2 Transport,01/19/2016 05:08:20 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160190353-82 +160751479,56,16029687,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:42:31 AM,03/15/2016 11:43:38 AM,03/15/2016 11:45:19 AM,03/15/2016 11:46:18 AM,03/15/2016 11:50:10 AM,03/15/2016 12:02:53 PM,03/15/2016 12:07:48 PM,Code 3 Transport,03/15/2016 01:11:21 PM,400 Block of DEWEY BLVD,San Francisco,94116,B08,20,8641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7463886812531, -122.460229338032)",160751479-56 +160403121,55,16016168,Medical Incident,02/09/2016,02/09/2016,02/09/2016 06:41:53 PM,02/09/2016 06:44:26 PM,02/09/2016 06:45:20 PM,02/09/2016 06:45:42 PM,02/09/2016 06:50:27 PM,02/09/2016 07:00:17 PM,02/09/2016 07:03:01 PM,Code 2 Transport,02/09/2016 07:36:10 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160403121-55 +112610075,86,11086050,Medical Incident,09/18/2011,09/17/2011,09/18/2011 05:35:28 AM,09/18/2011 05:35:28 AM,09/18/2011 05:36:12 AM,09/18/2011 05:37:08 AM,09/18/2011 05:46:53 AM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/18/2011 06:45:44 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,E,E,3,false,,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",112610075-86 +122900162,54,12095949,Medical Incident,10/16/2012,10/16/2012,10/16/2012 10:49:49 AM,10/16/2012 10:51:13 AM,10/16/2012 10:53:11 AM,10/16/2012 10:53:28 AM,10/16/2012 11:06:54 AM,10/16/2012 11:25:36 AM,10/16/2012 11:52:43 AM,Code 2 Transport,10/16/2012 12:27:43 PM,CALIFORNIA ST/10TH AV,SF,94118,B07,31,7136,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7846209046597, -122.468839736978)",122900162-54 +113260053,E17,11108154,Medical Incident,11/22/2011,11/21/2011,11/22/2011 06:29:39 AM,11/22/2011 06:31:30 AM,11/22/2011 06:32:50 AM,11/22/2011 06:35:07 AM,11/22/2011 06:38:17 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 06:38:19 AM,4900 Block of 3RD ST,SF,94124,B10,17,6514,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7336495044123, -122.391238077668)",113260053-E17 +110820182,B02,11026943,Structure Fire,03/23/2011,03/23/2011,03/23/2011 12:38:04 PM,03/23/2011 12:38:21 PM,03/23/2011 12:38:49 PM,03/23/2011 12:40:36 PM,03/23/2011 12:43:35 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 12:44:24 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",110820182-B02 +102420215,E03,10076341,Medical Incident,08/30/2010,08/30/2010,08/30/2010 02:23:17 PM,08/30/2010 02:24:18 PM,08/30/2010 02:25:20 PM,08/30/2010 02:26:15 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/30/2010 02:27:06 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,3,3,true,,1,ENGINE,3,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",102420215-E03 +103590025,RC3,10115092,Medical Incident,12/25/2010,12/24/2010,12/25/2010 01:20:19 AM,12/25/2010 01:21:22 AM,12/25/2010 01:21:30 AM,04/25/2016 02:06:56 PM,12/25/2010 01:24:04 AM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 01:35:16 AM,3100 Block of 24TH ST,SF,94110,B06,7,5526,3,3,3,true,,1,RESCUE CAPTAIN,1,6,9,Mission,"(37.7524609846175, -122.415724213925)",103590025-RC3 +113370237,75,11111697,Medical Incident,12/03/2011,12/03/2011,12/03/2011 04:09:38 PM,12/03/2011 04:11:31 PM,12/03/2011 04:11:45 PM,12/03/2011 04:12:03 PM,12/03/2011 04:16:56 PM,12/03/2011 04:37:41 PM,12/03/2011 04:54:56 PM,Code 2 Transport,12/03/2011 05:20:09 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",113370237-75 +123540241,T14,12118489,High Angle Rescue,12/19/2012,12/19/2012,12/19/2012 02:28:10 PM,12/19/2012 02:30:27 PM,12/19/2012 02:35:31 PM,04/25/2016 01:55:14 PM,12/19/2012 02:44:23 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 02:56:18 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Fire,1,TRUCK,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",123540241-T14 +131880079,KM09,13064021,Medical Incident,07/07/2013,07/06/2013,07/07/2013 07:29:58 AM,07/07/2013 07:31:32 AM,07/07/2013 07:31:54 AM,07/07/2013 07:32:54 AM,07/07/2013 07:37:14 AM,07/07/2013 08:09:48 AM,07/07/2013 08:16:55 AM,Code 2 Transport,07/07/2013 08:46:48 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131880079-KM09 +140620212,E06,14020973,Medical Incident,03/03/2014,03/03/2014,03/03/2014 02:26:45 PM,03/03/2014 02:28:28 PM,03/03/2014 02:31:31 PM,03/03/2014 02:32:34 PM,03/03/2014 02:35:04 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Code 2 Transport,03/03/2014 02:46:25 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7694867849847, -122.429522203036)",140620212-E06 +122190052,E31,12072550,Medical Incident,08/06/2012,08/05/2012,08/06/2012 05:57:50 AM,08/06/2012 05:59:21 AM,08/06/2012 06:00:55 AM,08/06/2012 06:02:53 AM,08/06/2012 06:06:43 AM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/06/2012 06:08:15 AM,300 Block of 3RD AVE,SF,94118,B07,31,7116,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7821271171767, -122.461066067245)",122190052-E31 +132350083,AM02,13079235,Medical Incident,08/23/2013,08/23/2013,08/23/2013 08:24:32 AM,08/23/2013 08:25:57 AM,08/23/2013 08:26:12 AM,08/23/2013 08:27:30 AM,08/23/2013 08:32:55 AM,08/23/2013 08:44:44 AM,08/23/2013 09:04:08 AM,Code 2 Transport,08/23/2013 09:35:42 AM,700 Block of DOLORES ST,SF,94110,B06,11,5457,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Mission,"(37.7570397158911, -122.425508651188)",132350083-AM02 +160173542,AM20,16007051,Medical Incident,01/17/2016,01/17/2016,01/17/2016 11:30:42 PM,01/17/2016 11:35:59 PM,01/17/2016 11:36:23 PM,01/17/2016 11:36:58 PM,01/17/2016 11:38:09 PM,01/17/2016 11:55:36 PM,01/18/2016 12:15:56 AM,Code 2 Transport,01/18/2016 12:46:24 AM,MISSION ST/PERSIA AV,San Francisco,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",160173542-AM20 +113180253,E43,11105700,Medical Incident,11/14/2011,11/14/2011,11/14/2011 05:04:00 PM,11/14/2011 05:04:49 PM,11/14/2011 05:05:07 PM,11/14/2011 05:06:27 PM,11/14/2011 05:09:17 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Gone on Arrival,11/14/2011 05:11:08 PM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",113180253-E43 +130260377,E08,13009145,Medical Incident,01/26/2013,01/26/2013,01/26/2013 11:47:51 PM,01/26/2013 11:49:11 PM,01/26/2013 11:49:27 PM,01/26/2013 11:51:40 PM,01/26/2013 11:56:57 PM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 12:17:48 AM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7848984736106, -122.389669866427)",130260377-E08 +160544061,88,16021805,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:31:10 PM,02/23/2016 10:32:10 PM,02/23/2016 10:32:38 PM,02/23/2016 10:33:01 PM,02/23/2016 10:47:22 PM,02/23/2016 10:51:20 PM,02/23/2016 11:11:26 PM,Code 2 Transport,02/23/2016 11:39:36 PM,1200 Block of MARINER DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",160544061-88 +132970056,87,13100774,Medical Incident,10/24/2013,10/23/2013,10/24/2013 07:06:34 AM,10/24/2013 07:07:48 AM,10/24/2013 07:11:02 AM,10/24/2013 07:11:08 AM,10/24/2013 07:23:09 AM,10/24/2013 07:35:01 AM,10/24/2013 07:47:50 AM,Code 3 Transport,10/24/2013 08:15:30 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",132970056-87 +132900376,75,13098807,Medical Incident,10/17/2013,10/17/2013,10/17/2013 08:34:36 PM,10/17/2013 08:34:43 PM,10/17/2013 08:38:59 PM,10/17/2013 08:40:23 PM,10/17/2013 08:52:51 PM,10/17/2013 09:04:48 PM,10/17/2013 09:12:46 PM,Code 2 Transport,10/17/2013 09:44:27 PM,SHOTWELL ST/21ST ST,SF,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",132900376-75 +160603167,79,16024054,Medical Incident,02/29/2016,02/29/2016,02/29/2016 07:41:33 PM,02/29/2016 07:41:33 PM,02/29/2016 07:43:08 PM,02/29/2016 07:44:47 PM,02/29/2016 07:47:54 PM,02/29/2016 08:04:03 PM,02/29/2016 08:12:44 PM,Code 2 Transport,02/29/2016 09:06:05 PM,MARKET ST/4TH ST,San Francisco,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160603167-79 +132630026,E20,13088974,Medical Incident,09/20/2013,09/19/2013,09/20/2013 01:48:14 AM,09/20/2013 01:49:32 AM,09/20/2013 01:50:07 AM,09/20/2013 01:52:28 AM,09/20/2013 01:55:20 AM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 01:59:51 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",132630026-E20 +140730005,T12,14024500,Medical Incident,03/14/2014,03/13/2014,03/14/2014 12:07:39 AM,03/14/2014 12:08:40 AM,03/14/2014 12:10:44 AM,03/14/2014 12:11:49 AM,03/14/2014 12:14:39 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Code 2 Transport,03/14/2014 12:30:57 AM,400 Block of PARNASSUS AVE,,94131,B05,12,5156,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",140730005-T12 +122830273,E03,12093727,Medical Incident,10/09/2012,10/09/2012,10/09/2012 06:07:58 PM,10/09/2012 06:09:32 PM,10/09/2012 06:10:13 PM,10/09/2012 06:11:39 PM,10/09/2012 06:14:16 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 06:22:10 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122830273-E03 +131580034,T03,13053483,,06/07/2013,06/06/2013,06/07/2013 02:28:00 AM,06/07/2013 02:29:00 AM,06/07/2013 02:30:00 AM,06/07/2013 02:32:00 AM,06/07/2013 02:34:00 AM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,SFPD,06/07/2013 02:35:00 AM,600 Block of POST ST,SF,94109,B01,3,1451,3,3,3,false,Alarm,1,TRUCK,1,1,3,Nob Hill,"(37.7878328256481, -122.412448213375)",131580034-T03 +111580069,B02,11052149,Alarms,06/07/2011,06/07/2011,06/07/2011 08:01:55 AM,06/07/2011 08:03:43 AM,06/07/2011 08:04:14 AM,06/07/2011 08:04:58 AM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 08:08:49 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,,1,CHIEF,3,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",111580069-B02 +110610095,E01,11019934,Medical Incident,03/02/2011,03/02/2011,03/02/2011 08:38:00 AM,03/02/2011 08:39:53 AM,03/02/2011 08:40:29 AM,03/02/2011 08:44:13 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 08:48:02 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",110610095-E01 +110340083,E13,11011091,Medical Incident,02/03/2011,02/03/2011,02/03/2011 08:23:10 AM,02/03/2011 08:24:07 AM,02/03/2011 08:25:02 AM,02/03/2011 08:27:26 AM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/03/2011 08:31:36 AM,2100 Block of LEAVENWORTH ST,SF,94133,B01,28,1532,3,3,3,true,,1,ENGINE,5,1,2,Russian Hill,"(37.8008138657608, -122.417624696225)",110340083-E13 +160813404,AM20,16032339,Medical Incident,03/21/2016,03/21/2016,03/21/2016 07:50:21 PM,03/21/2016 07:50:21 PM,03/21/2016 07:50:32 PM,03/21/2016 07:50:59 PM,03/21/2016 08:10:12 PM,03/21/2016 08:19:11 PM,03/21/2016 08:38:20 PM,Code 2 Transport,03/21/2016 09:05:33 PM,2100 Block of 41ST AVE,San Francisco,94116,B08,18,7635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7466748453073, -122.49952072067)",160813404-AM20 +111770170,65,11058368,Medical Incident,06/26/2011,06/26/2011,06/26/2011 12:39:00 PM,06/26/2011 12:40:35 PM,06/26/2011 12:41:48 PM,06/26/2011 12:42:44 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,04/25/2016 02:03:58 PM,6TH AV/FULTON ST,SF,94122,B07,31,7122,1,1,2,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.7736240632884, -122.463749209233)",111770170-65 +122490348,T14,12082501,Traffic Collision,09/05/2012,09/05/2012,09/05/2012 10:56:01 PM,09/05/2012 11:02:32 PM,09/05/2012 11:06:32 PM,09/05/2012 11:08:06 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/05/2012 11:13:27 PM,"CALL BOX: HWY 1 NB/HWY 1 SB,SF",SF,94129,B99,51,4620,3,3,3,false,Potentially Life-Threatening,1,TRUCK,5,7,2,Presidio,"(37.8048627925036, -122.448508102413)",122490348-T14 +122290352,AM10,12076023,Medical Incident,08/16/2012,08/16/2012,08/16/2012 08:49:21 PM,08/16/2012 08:49:58 PM,08/16/2012 08:50:24 PM,08/16/2012 08:51:07 PM,08/16/2012 08:55:28 PM,08/16/2012 09:09:48 PM,08/16/2012 09:14:32 PM,Code 2 Transport,08/16/2012 09:52:52 PM,2900 Block of CLAY ST,SF,94115,B04,10,4232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7897133756957, -122.441630202765)",122290352-AM10 +111290094,79,11042590,Medical Incident,05/09/2011,05/09/2011,05/09/2011 09:49:28 AM,05/09/2011 09:50:17 AM,05/09/2011 09:51:05 AM,05/09/2011 09:51:22 AM,05/09/2011 09:56:50 AM,05/09/2011 10:18:59 AM,05/09/2011 10:45:33 AM,Code 2 Transport,05/09/2011 11:21:32 AM,0 Block of CASTLE MANOR AVE,SF,94112,B09,32,6113,3,2,2,true,,1,MEDIC,2,9,11,Outer Mission,"(37.7295020424492, -122.431143124523)",111290094-79 +133200275,RC1,13108806,Medical Incident,11/16/2013,11/16/2013,11/16/2013 05:55:32 PM,11/16/2013 05:56:16 PM,11/16/2013 06:03:47 PM,11/16/2013 06:03:59 PM,11/16/2013 06:08:44 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 06:30:36 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",133200275-RC1 +160590535,56,16023387,Medical Incident,02/28/2016,02/27/2016,02/28/2016 04:28:12 AM,02/28/2016 04:28:43 AM,02/28/2016 04:29:05 AM,02/28/2016 04:29:17 AM,02/28/2016 04:39:18 AM,02/28/2016 04:53:27 AM,02/28/2016 05:00:08 AM,Code 2 Transport,02/28/2016 05:38:11 AM,1400 Block of SHRADER ST,San Francisco,94117,B05,12,5257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7619427731413, -122.450726690787)",160590535-56 +131160182,87,13039080,Medical Incident,04/26/2013,04/26/2013,04/26/2013 03:49:37 PM,04/26/2013 03:50:34 PM,04/26/2013 03:50:52 PM,04/26/2013 03:50:59 PM,04/26/2013 03:54:31 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,No Merit,04/26/2013 04:04:01 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",131160182-87 +133570225,82,13121404,Medical Incident,12/23/2013,12/23/2013,12/23/2013 03:30:18 PM,12/23/2013 03:30:57 PM,12/23/2013 03:31:42 PM,12/23/2013 03:31:52 PM,12/23/2013 03:38:14 PM,12/23/2013 03:53:22 PM,12/23/2013 04:11:54 PM,Code 2 Transport,12/23/2013 04:44:54 PM,300 Block of CRESCENT AVE,SF,94110,B06,32,5644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7350224531807, -122.418407537757)",133570225-82 +112320189,T09,11076599,Other,08/20/2011,08/20/2011,08/20/2011 01:23:43 PM,08/20/2011 01:24:00 PM,08/20/2011 01:24:50 PM,08/20/2011 01:25:42 PM,08/20/2011 01:31:27 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Fire,08/20/2011 01:46:53 PM,0 Block of REDDY ST,SF,94124,B10,17,6513,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7303641478199, -122.395285364874)",112320189-T09 +132740308,81,13093216,Medical Incident,10/01/2013,10/01/2013,10/01/2013 08:21:51 PM,10/01/2013 08:22:17 PM,10/01/2013 08:22:32 PM,10/01/2013 08:22:38 PM,10/01/2013 08:34:15 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Medical Examiner,10/01/2013 08:58:20 PM,1400 Block of UNION ST,SF,94109,B04,41,3131,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Russian Hill,"(37.7987112536807, -122.423170500234)",132740308-81 +122770347,83,12091655,Medical Incident,10/03/2012,10/03/2012,10/03/2012 05:28:26 PM,10/03/2012 05:34:00 PM,10/03/2012 05:34:25 PM,10/03/2012 05:48:33 PM,10/03/2012 05:58:06 PM,10/03/2012 06:18:44 PM,10/03/2012 06:25:24 PM,Code 3 Transport,10/03/2012 07:09:19 PM,300 Block of DOLORES ST,SF,94110,B02,6,5251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7635158382169, -122.426118705944)",122770347-83 +133240367,E06,13110185,Medical Incident,11/20/2013,11/20/2013,11/20/2013 08:41:26 PM,11/20/2013 08:42:57 PM,11/20/2013 08:43:17 PM,11/20/2013 08:44:45 PM,11/20/2013 08:45:18 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 08:48:56 PM,100 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7676129046208, -122.429027687111)",133240367-E06 +130300089,KM09,13010150,Medical Incident,01/30/2013,01/30/2013,01/30/2013 08:42:03 AM,01/30/2013 08:43:01 AM,01/30/2013 08:43:15 AM,01/30/2013 08:44:24 AM,01/30/2013 08:48:46 AM,01/30/2013 08:57:56 AM,01/30/2013 09:09:12 AM,Code 2 Transport,01/30/2013 09:43:27 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7768521020734, -122.410711239368)",130300089-KM09 +120730233,59,12024264,Structure Fire,03/13/2012,03/13/2012,03/13/2012 02:43:24 PM,03/13/2012 02:43:52 PM,03/13/2012 02:44:06 PM,03/13/2012 02:44:39 PM,03/13/2012 02:48:31 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 03:02:35 PM,1600 Block of JONES ST,SF,94109,B01,41,1511,3,3,3,true,Fire,1,MEDIC,5,1,3,Nob Hill,"(37.7960882125241, -122.415118210717)",120730233-59 +110970047,79,11032043,Medical Incident,04/07/2011,04/06/2011,04/07/2011 05:35:18 AM,04/07/2011 05:36:18 AM,04/07/2011 05:38:03 AM,04/07/2011 05:39:11 AM,04/07/2011 05:53:16 AM,04/07/2011 06:22:06 AM,04/07/2011 06:35:39 AM,Code 2 Transport,04/07/2011 07:12:30 AM,100 Block of NAUTILUS DR,SF,94124,B10,17,6665,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.728115531126, -122.372708921939)",110970047-79 +102820206,E06,10089699,Alarms,10/09/2010,10/09/2010,10/09/2010 12:49:40 PM,10/09/2010 12:50:52 PM,10/09/2010 12:51:06 PM,04/25/2016 02:08:11 PM,10/09/2010 12:51:32 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 01:00:20 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",102820206-E06 +112810092,E34,11092934,Other,10/08/2011,10/07/2011,10/08/2011 07:14:17 AM,10/08/2011 07:17:53 AM,10/08/2011 07:18:16 AM,10/08/2011 07:19:18 AM,10/08/2011 07:22:09 AM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Other,10/08/2011 07:41:11 AM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",112810092-E34 +160081303,52,16003183,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:41:52 AM,01/08/2016 10:42:03 AM,01/08/2016 10:42:08 AM,01/08/2016 10:42:28 AM,01/08/2016 10:49:07 AM,01/08/2016 11:02:31 AM,01/08/2016 11:31:22 AM,Code 2 Transport,01/08/2016 12:24:56 PM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7120147227325, -122.445301042421)",160081303-52 +123310221,E03,12110046,Medical Incident,11/26/2012,11/26/2012,11/26/2012 01:20:59 PM,11/26/2012 01:21:29 PM,11/26/2012 01:21:43 PM,11/26/2012 01:23:19 PM,11/26/2012 01:25:13 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 01:27:20 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,2,2,true,Non Life-threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",123310221-E03 +130420204,AM02,13014341,Medical Incident,02/11/2013,02/11/2013,02/11/2013 02:16:35 PM,02/11/2013 02:17:48 PM,02/11/2013 02:18:12 PM,02/11/2013 02:19:52 PM,02/11/2013 02:21:00 PM,02/11/2013 02:49:12 PM,02/11/2013 03:06:08 PM,Code 2 Transport,02/11/2013 03:45:49 PM,2100 Block of PACIFIC AVE,SF,94115,B04,38,3441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7938179536129, -122.430615255773)",130420204-AM02 +110940149,E29,11031170,Medical Incident,04/04/2011,04/04/2011,04/04/2011 11:29:24 AM,04/04/2011 11:30:07 AM,04/04/2011 11:31:37 AM,04/04/2011 11:32:52 AM,04/04/2011 11:34:45 AM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/04/2011 11:39:58 AM,ALAMEDA ST/HARRISON ST,SF,94103,B02,29,5217,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7680228226343, -122.413341004599)",110940149-E29 +160301342,65,16011743,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:28:23 AM,01/30/2016 10:28:50 AM,01/30/2016 10:30:01 AM,01/30/2016 10:30:51 AM,01/30/2016 10:37:18 AM,01/30/2016 10:56:57 AM,01/30/2016 11:12:08 AM,Code 2 Transport,01/30/2016 10:47:34 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160301342-65 +140270310,B03,14009312,Alarms,01/27/2014,01/27/2014,01/27/2014 07:29:09 PM,01/27/2014 07:30:20 PM,01/27/2014 07:30:39 PM,01/27/2014 07:32:01 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/27/2014 07:35:40 PM,300 Block of HOWARD ST,SF,94105,B03,35,2124,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",140270310-B03 +160050403,71,16001858,Medical Incident,01/05/2016,01/04/2016,01/05/2016 05:24:38 AM,01/05/2016 05:26:11 AM,01/05/2016 05:27:05 AM,01/05/2016 05:27:12 AM,01/05/2016 05:30:57 AM,01/05/2016 05:52:49 AM,01/05/2016 05:56:36 AM,Code 3 Transport,01/05/2016 07:16:48 AM,500 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7834675310494, -122.416716373273)",160050403-71 +160242565,71,16009610,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:24:11 PM,01/24/2016 05:26:19 PM,01/24/2016 05:26:48 PM,01/24/2016 05:27:01 PM,01/24/2016 05:34:44 PM,01/24/2016 05:54:00 PM,01/24/2016 06:00:03 PM,Code 2 Transport,01/24/2016 06:33:48 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160242565-71 +160790630,53,16031319,Medical Incident,03/19/2016,03/18/2016,03/19/2016 06:17:45 AM,03/19/2016 06:17:45 AM,03/19/2016 06:17:45 AM,03/19/2016 06:17:45 AM,03/19/2016 06:17:45 AM,03/19/2016 06:34:31 AM,03/19/2016 06:39:29 AM,Code 3 Transport,03/19/2016 08:16:19 AM,500 Block of ELLIS ST,San Francisco,94109,B99,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",160790630-53 +120250019,T11,12008264,Vehicle Fire,01/25/2012,01/24/2012,01/25/2012 01:52:44 AM,01/25/2012 01:53:13 AM,01/25/2012 01:53:25 AM,01/25/2012 01:55:16 AM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 02:01:59 AM,JAMESTOWN AV/3RD ST,SF,94124,B10,44,6544,3,3,3,false,Fire,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7202309128081, -122.396617028166)",120250019-T11 +140510261,KM10,14017329,Medical Incident,02/20/2014,02/20/2014,02/20/2014 03:01:41 PM,02/20/2014 03:02:13 PM,02/20/2014 03:04:08 PM,02/20/2014 03:04:35 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,No Merit,02/20/2014 03:09:41 PM,GUERRERO ST/25TH ST,SF,94110,B06,11,5612,3,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Mission,"(37.7503722415105, -122.422725612019)",140510261-KM10 +140690374,E32,14023452,Medical Incident,03/10/2014,03/10/2014,03/10/2014 11:24:36 PM,03/10/2014 11:26:29 PM,03/10/2014 11:26:42 PM,03/10/2014 11:28:23 PM,03/10/2014 11:30:26 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Fire,03/10/2014 11:39:39 PM,100 Block of LEESE ST,SAN FRANCISCO,94110,B06,32,5632,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.735541540271, -122.422981511864)",140690374-E32 +110110068,T07,11003586,Structure Fire,01/11/2011,01/10/2011,01/11/2011 07:33:01 AM,01/11/2011 07:33:02 AM,01/11/2011 07:33:38 AM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/11/2011 07:36:33 AM,17TH ST/POTRERO AV,SF,94110,B02,29,2416,3,3,3,false,,1,TRUCK,2,2,10,Potrero Hill,"(37.764487829529, -122.407419738574)",110110068-T07 +160883319,62,16035089,Medical Incident,03/28/2016,03/28/2016,03/28/2016 07:18:01 PM,03/28/2016 07:19:33 PM,03/28/2016 07:19:57 PM,03/28/2016 07:21:22 PM,03/28/2016 07:27:28 PM,03/28/2016 07:39:10 PM,03/28/2016 08:03:10 PM,Code 2 Transport,03/28/2016 08:24:47 PM,FELL ST/CLAYTON ST,San Francisco,94117,B05,21,4514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",160883319-62 +120210048,E22,12006993,Structure Fire,01/21/2012,01/20/2012,01/21/2012 02:06:01 AM,01/21/2012 02:06:01 AM,01/21/2012 02:06:37 AM,01/21/2012 02:08:53 AM,01/21/2012 02:10:08 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 02:11:18 AM,23RD AV/IRVING ST,SF,94122,B08,22,7451,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7633730938478, -122.481408835625)",120210048-E22 +132470092,AM06,13083262,Medical Incident,09/04/2013,09/04/2013,09/04/2013 08:39:29 AM,09/04/2013 08:41:19 AM,09/04/2013 08:42:22 AM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 08:46:48 AM,2500 Block of UNION ST,SF,94123,B04,16,4165,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.7964095174587, -122.441267032271)",132470092-AM06 +130770355,E01,13025859,Traffic Collision,03/18/2013,03/18/2013,03/18/2013 09:42:55 PM,03/18/2013 09:44:29 PM,03/18/2013 09:44:51 PM,03/18/2013 09:45:21 PM,03/18/2013 09:46:30 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,No Merit,03/18/2013 09:48:36 PM,MISSION ST/4TH ST,SF,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",130770355-E01 +112400064,85,11079106,Medical Incident,08/28/2011,08/27/2011,08/28/2011 04:47:22 AM,08/28/2011 04:48:22 AM,08/28/2011 04:48:52 AM,08/28/2011 04:49:27 AM,08/28/2011 04:52:52 AM,08/28/2011 05:21:34 AM,08/28/2011 05:43:47 AM,Code 2 Transport,08/28/2011 06:26:55 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",112400064-85 +102880106,66,10091781,Medical Incident,10/15/2010,10/15/2010,10/15/2010 09:07:49 AM,10/15/2010 09:09:30 AM,10/15/2010 09:23:36 AM,10/15/2010 09:24:24 AM,10/15/2010 09:32:46 AM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,No Merit,10/15/2010 09:34:20 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",102880106-66 +160150104,76,16005801,Medical Incident,01/15/2016,01/14/2016,01/15/2016 12:38:55 AM,01/15/2016 12:40:26 AM,01/15/2016 12:42:06 AM,01/15/2016 12:42:14 AM,01/15/2016 12:49:13 AM,01/15/2016 01:27:16 AM,01/15/2016 01:27:16 AM,Code 2 Transport,01/15/2016 02:25:15 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160150104-76 +160221902,71,16008789,Medical Incident,01/22/2016,01/22/2016,01/22/2016 01:38:27 PM,01/22/2016 01:40:08 PM,01/22/2016 01:40:27 PM,01/22/2016 01:40:41 PM,01/22/2016 01:48:28 PM,01/22/2016 02:02:59 PM,01/22/2016 02:17:13 PM,Code 2 Transport,01/22/2016 03:02:07 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160221902-71 +140450148,83,14015284,Medical Incident,02/14/2014,02/14/2014,02/14/2014 11:44:38 AM,02/14/2014 11:45:10 AM,02/14/2014 11:45:20 AM,02/14/2014 11:45:57 AM,02/14/2014 11:49:36 AM,02/14/2014 12:08:53 PM,02/14/2014 12:28:02 PM,Code 2 Transport,02/14/2014 12:51:42 PM,2300 Block of 24TH AVE,SF,94116,B08,40,7461,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",140450148-83 +132710209,E08,13092090,Alarms,09/28/2013,09/28/2013,09/28/2013 01:32:49 PM,09/28/2013 01:34:09 PM,09/28/2013 01:34:16 PM,09/28/2013 01:35:26 PM,09/28/2013 01:37:46 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,Other,09/28/2013 01:44:38 PM,200 Block of BRANNAN ST,SF,94107,B03,8,2153,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7821111449736, -122.391644053588)",132710209-E08 +160023162,71,16000908,Medical Incident,01/02/2016,01/02/2016,01/02/2016 08:40:45 PM,01/02/2016 08:40:45 PM,01/02/2016 08:41:10 PM,01/02/2016 08:41:17 PM,01/02/2016 08:57:37 PM,01/02/2016 09:10:43 PM,01/02/2016 09:27:08 PM,Code 2 Transport,01/02/2016 10:08:30 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160023162-71 +140810185,94,14027361,Medical Incident,03/22/2014,03/22/2014,03/22/2014 01:24:39 PM,03/22/2014 01:26:36 PM,03/22/2014 01:27:09 PM,03/22/2014 01:27:38 PM,03/22/2014 01:35:58 PM,03/22/2014 01:50:53 PM,03/22/2014 02:04:32 PM,Code 2 Transport,03/22/2014 02:40:13 PM,5TH ST/BRYANT ST,SAN FRANCISCO,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",140810185-94 +112220200,92,11073343,Medical Incident,08/10/2011,08/10/2011,08/10/2011 02:08:53 PM,08/10/2011 02:10:13 PM,08/10/2011 02:10:45 PM,08/10/2011 02:11:34 PM,08/10/2011 02:20:12 PM,08/10/2011 02:39:27 PM,08/10/2011 03:03:20 PM,Code 2 Transport,08/10/2011 03:30:01 PM,2ND ST/KING ST,SF,94107,B03,8,2154,2,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",112220200-92 +160163832,79,16006630,Medical Incident,01/16/2016,01/16/2016,01/16/2016 11:18:12 PM,01/16/2016 11:18:12 PM,01/16/2016 11:18:58 PM,01/16/2016 11:19:07 PM,01/16/2016 11:23:24 PM,01/16/2016 11:39:54 PM,01/16/2016 11:48:58 PM,Code 2 Transport,01/17/2016 12:38:30 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160163832-79 +122930290,E11,12097224,Medical Incident,10/19/2012,10/19/2012,10/19/2012 04:26:41 PM,10/19/2012 04:28:34 PM,10/19/2012 04:28:45 PM,10/19/2012 04:29:51 PM,10/19/2012 04:31:38 PM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 04:43:05 PM,1300 Block of GUERRERO ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7495652201329, -122.422767132358)",122930290-E11 +160310631,79,16012083,Medical Incident,01/31/2016,01/30/2016,01/31/2016 05:48:46 AM,01/31/2016 05:50:10 AM,01/31/2016 05:52:17 AM,01/31/2016 05:52:31 AM,01/31/2016 05:58:28 AM,01/31/2016 06:11:43 AM,01/31/2016 06:24:32 AM,Code 2 Transport,01/31/2016 06:42:43 AM,0 Block of LUPINE AVE,San Francisco,94118,B05,10,4371,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7843470944743, -122.448345278471)",160310631-79 +103460214,T03,10110974,Medical Incident,12/12/2010,12/12/2010,12/12/2010 01:46:18 PM,12/12/2010 01:47:11 PM,12/12/2010 01:47:42 PM,12/12/2010 01:48:23 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 01:48:33 PM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,false,,1,TRUCK,3,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",103460214-T03 +103630290,72,10116542,Medical Incident,12/29/2010,12/29/2010,12/29/2010 07:36:03 PM,12/29/2010 07:36:36 PM,12/29/2010 07:36:52 PM,12/29/2010 07:36:58 PM,12/29/2010 07:38:39 PM,12/29/2010 07:51:29 PM,12/29/2010 08:06:34 PM,Code 2 Transport,12/29/2010 08:25:29 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,3,3,true,,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",103630290-72 +130490038,88,13016590,Medical Incident,02/18/2013,02/17/2013,02/18/2013 03:21:33 AM,02/18/2013 03:23:15 AM,02/18/2013 03:23:38 AM,02/18/2013 03:23:46 AM,02/18/2013 03:32:10 AM,02/18/2013 03:49:06 AM,02/18/2013 04:22:52 AM,Code 2 Transport,02/18/2013 04:23:24 AM,0 Block of POTOMAC ST,SF,94117,B05,6,3635,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",130490038-88 +160793457,AM10,16031544,Medical Incident,03/19/2016,03/19/2016,03/19/2016 07:27:10 PM,03/19/2016 07:28:32 PM,03/19/2016 07:30:15 PM,03/19/2016 07:30:15 PM,03/19/2016 07:38:46 PM,03/19/2016 08:03:23 PM,03/19/2016 08:17:11 PM,Code 2 Transport,03/19/2016 08:30:19 PM,400 Block of 44TH AVE,San Francisco,94121,B07,34,7265,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7804413495185, -122.505111371544)",160793457-AM10 +132660139,KM10,13090210,Medical Incident,09/23/2013,09/23/2013,09/23/2013 10:22:30 AM,09/23/2013 10:22:33 AM,09/23/2013 10:23:29 AM,09/23/2013 10:25:19 AM,09/23/2013 10:30:52 AM,09/23/2013 10:33:58 AM,09/23/2013 10:44:32 AM,Code 3 Transport,09/23/2013 11:33:17 AM,JONES ST/OFARRELL ST,SF,94102,B01,1,1452,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",132660139-KM10 +110800244,KM15,11026412,Medical Incident,03/21/2011,03/21/2011,03/21/2011 02:39:58 PM,03/21/2011 02:40:36 PM,03/21/2011 02:41:15 PM,03/21/2011 02:41:37 PM,03/21/2011 02:48:42 PM,03/21/2011 03:14:17 PM,03/21/2011 03:21:07 PM,Code 2 Transport,03/21/2011 03:57:31 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,1,1,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",110800244-KM15 +160740573,57,16029222,Medical Incident,03/14/2016,03/13/2016,03/14/2016 07:31:48 AM,03/14/2016 07:33:29 AM,03/14/2016 07:35:11 AM,03/14/2016 07:35:27 AM,03/14/2016 07:50:09 AM,03/14/2016 08:15:05 AM,03/14/2016 08:17:37 AM,Code 2 Transport,03/14/2016 09:12:44 AM,1300 Block of UTAH ST,San Francisco,94110,B10,9,2562,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7524211883021, -122.405338378285)",160740573-57 +113510062,E13,11116376,Medical Incident,12/17/2011,12/16/2011,12/17/2011 03:10:31 AM,12/17/2011 03:11:34 AM,12/17/2011 03:11:44 AM,12/17/2011 03:12:52 AM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/17/2011 03:14:06 AM,GRANT AV/SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",113510062-E13 +111850266,T14,11061215,Structure Fire,07/04/2011,07/04/2011,07/04/2011 06:17:34 PM,07/04/2011 06:17:34 PM,07/04/2011 06:19:44 PM,07/04/2011 06:21:32 PM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/04/2011 06:23:04 PM,7TH AV/CLEMENT ST,SF,94118,B07,31,7127,3,3,3,false,,1,TRUCK,2,7,1,Inner Richmond,"(37.7828909801953, -122.465492390241)",111850266-T14 +111840012,T03,11060628,Structure Fire,07/03/2011,07/02/2011,07/03/2011 12:44:31 AM,07/03/2011 12:45:39 AM,07/03/2011 12:45:56 AM,07/03/2011 12:47:10 AM,07/03/2011 12:49:10 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:55:40 AM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7832504150919, -122.414216002993)",111840012-T03 +132530024,E36,13085359,Medical Incident,09/10/2013,09/09/2013,09/10/2013 01:50:21 AM,09/10/2013 01:52:24 AM,09/10/2013 01:53:39 AM,09/10/2013 01:55:19 AM,09/10/2013 02:01:54 AM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Other,09/10/2013 02:17:26 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132530024-E36 +131930268,82,13065725,Traffic Collision,07/12/2013,07/12/2013,07/12/2013 06:03:42 PM,07/12/2013 06:05:04 PM,07/12/2013 06:06:31 PM,07/12/2013 06:06:44 PM,07/12/2013 06:08:23 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Against Medical Advice,07/12/2013 06:38:50 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",131930268-82 +121810113,T03,12060202,Structure Fire,06/29/2012,06/29/2012,06/29/2012 09:25:45 AM,06/29/2012 09:25:45 AM,06/29/2012 09:25:55 AM,06/29/2012 09:27:41 AM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/29/2012 09:30:58 AM,LEAVENWORTH ST/UNITED NATIONS PZ,SF,94102,B02,1,1551,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7799917401811, -122.413487401339)",121810113-T03 +131850297,96,13063146,Medical Incident,07/04/2013,07/04/2013,07/04/2013 07:00:32 PM,07/04/2013 07:00:50 PM,07/04/2013 07:02:22 PM,07/04/2013 07:03:02 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 07:07:26 PM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",131850297-96 +160920274,72,16036301,Medical Incident,04/01/2016,03/31/2016,04/01/2016 02:54:11 AM,04/01/2016 02:56:59 AM,04/01/2016 02:58:48 AM,04/01/2016 02:58:57 AM,04/01/2016 03:18:18 AM,04/01/2016 03:42:06 AM,04/01/2016 03:52:07 AM,Code 2 Transport,04/01/2016 04:30:04 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",160920274-72 +160443354,88,16017856,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:39:04 PM,02/13/2016 08:40:03 PM,02/13/2016 08:42:50 PM,02/13/2016 08:42:56 PM,02/13/2016 08:47:10 PM,02/13/2016 09:04:22 PM,02/13/2016 09:20:02 PM,Code 2 Transport,02/13/2016 09:51:05 PM,1100 Block of ANZA ST,San Francisco,94118,B07,31,7117,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7793134946516, -122.460399718452)",160443354-88 +160463154,61,16018644,Medical Incident,02/15/2016,02/15/2016,02/15/2016 07:05:45 PM,02/15/2016 07:07:47 PM,02/15/2016 07:20:34 PM,02/15/2016 07:20:41 PM,02/15/2016 07:23:05 PM,02/15/2016 07:27:33 PM,02/15/2016 07:57:06 PM,Code 2 Transport,02/15/2016 08:09:30 PM,0 Block of CASHMERE ST,San Francisco,94124,B10,25,652,2,2,2,true,Non Life-threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",160463154-61 +133160019,KM07,13107299,Medical Incident,11/12/2013,11/11/2013,11/12/2013 02:43:51 AM,11/12/2013 02:45:06 AM,11/12/2013 02:45:22 AM,11/12/2013 02:48:30 AM,11/12/2013 02:54:19 AM,11/12/2013 03:01:19 AM,11/12/2013 03:22:37 AM,Code 2 Transport,11/12/2013 03:58:40 AM,100 Block of DEL VALE AVE,SF,94127,B09,39,8655,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7410104111605, -122.447086821857)",133160019-KM07 +160283504,88,16011230,Medical Incident,01/28/2016,01/28/2016,01/28/2016 07:56:32 PM,01/28/2016 07:59:16 PM,01/28/2016 07:59:34 PM,01/28/2016 08:00:06 PM,01/28/2016 08:05:17 PM,01/28/2016 08:26:22 PM,01/28/2016 08:40:58 PM,Code 2 Transport,01/28/2016 09:20:47 PM,1100 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Mission,"(37.7536444586415, -122.406325430802)",160283504-88 +122430104,E51,12080294,Medical Incident,08/30/2012,08/30/2012,08/30/2012 10:13:32 AM,08/30/2012 10:14:02 AM,08/30/2012 10:14:18 AM,08/30/2012 10:14:32 AM,08/30/2012 10:16:46 AM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/30/2012 10:30:02 AM,0 Block of YACHT RD,SF,94123,B04,16,4215,3,2,2,true,Non Life-threatening,1,ENGINE,1,None,2,Marina,"(37.8067582085576, -122.446916219003)",122430104-E51 +133260125,E05,13110664,Medical Incident,11/22/2013,11/22/2013,11/22/2013 10:43:15 AM,11/22/2013 10:44:27 AM,11/22/2013 10:44:35 AM,11/22/2013 10:44:42 AM,11/22/2013 10:46:21 AM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 10:53:02 AM,900 Block of MCALLISTER ST,SF,94102,B02,5,3425,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",133260125-E05 +121800343,T06,12060066,Alarms,06/28/2012,06/28/2012,06/28/2012 08:12:45 PM,06/28/2012 08:12:45 PM,06/28/2012 08:13:31 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/28/2012 08:17:00 PM,18TH ST/NOE ST,SF,94114,B05,6,5417,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7610213118677, -122.432793506002)",121800343-T06 +140440398,E05,14015134,Structure Fire,02/13/2014,02/13/2014,02/13/2014 08:49:48 PM,02/13/2014 08:49:48 PM,02/13/2014 08:50:07 PM,02/13/2014 08:51:03 PM,02/13/2014 08:52:01 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Fire,02/13/2014 08:52:35 PM,1100 Block of STEINER ST,SF,94115,B05,5,3625,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7798293492878, -122.433621914349)",140440398-E05 +160252605,56,16010017,Medical Incident,01/25/2016,01/25/2016,01/25/2016 04:33:40 PM,01/25/2016 04:33:40 PM,01/25/2016 04:35:03 PM,01/25/2016 04:35:51 PM,01/25/2016 04:38:03 PM,01/25/2016 04:51:06 PM,01/25/2016 05:11:13 PM,Code 2 Transport,01/25/2016 05:54:10 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160252605-56 +103230244,T11,10103516,Alarms,11/19/2010,11/19/2010,11/19/2010 03:37:12 PM,11/19/2010 03:37:12 PM,11/19/2010 03:37:18 PM,11/19/2010 03:40:07 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Other,11/19/2010 03:42:36 PM,22ND ST/FOLSOM ST,SF,94110,B06,7,5473,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7556994645677, -122.414387602502)",103230244-T11 +160582312,89,16023173,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:35:36 PM,02/27/2016 03:37:46 PM,02/27/2016 03:39:19 PM,02/27/2016 03:39:35 PM,02/27/2016 03:46:50 PM,02/27/2016 04:03:16 PM,02/27/2016 04:20:43 PM,Code 2 Transport,02/27/2016 05:17:32 PM,CARL ST/CLAYTON ST,San Francisco,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.766072216976, -122.447823791012)",160582312-89 +140010418,E03,14000347,Medical Incident,01/01/2014,01/01/2014,01/01/2014 02:21:45 PM,01/01/2014 02:22:58 PM,01/01/2014 02:23:50 PM,01/01/2014 02:24:51 PM,01/01/2014 02:26:08 PM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 02:41:56 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",140010418-E03 +160021918,KM06,16000766,Medical Incident,01/02/2016,01/02/2016,01/02/2016 02:48:21 PM,01/02/2016 02:50:43 PM,01/02/2016 02:53:17 PM,01/02/2016 02:53:45 PM,01/02/2016 03:04:49 PM,01/02/2016 03:17:06 PM,01/02/2016 03:30:03 PM,Code 2 Transport,01/02/2016 04:05:13 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160021918-KM06 +103230113,AM04,10103420,Medical Incident,11/19/2010,11/19/2010,11/19/2010 10:34:36 AM,11/19/2010 10:37:38 AM,11/19/2010 10:38:46 AM,11/19/2010 10:39:33 AM,11/19/2010 10:46:51 AM,11/19/2010 11:20:09 AM,11/19/2010 11:32:30 AM,Code 2 Transport,11/19/2010 12:11:42 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,false,,1,PRIVATE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",103230113-AM04 +120350222,E36,12011660,Structure Fire,02/04/2012,02/04/2012,02/04/2012 02:48:21 PM,02/04/2012 02:48:21 PM,02/04/2012 02:48:34 PM,02/04/2012 02:49:35 PM,02/04/2012 02:50:55 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Fire,02/04/2012 02:51:44 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",120350222-E36 +160032065,54,16001243,Medical Incident,01/03/2016,01/03/2016,01/03/2016 04:00:04 PM,01/03/2016 04:02:33 PM,01/03/2016 04:04:07 PM,01/03/2016 04:06:43 PM,01/03/2016 04:20:31 PM,01/03/2016 04:46:49 PM,01/03/2016 04:57:59 PM,Code 2 Transport,01/03/2016 05:47:14 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7771214885462, -122.413681109495)",160032065-54 +130190290,55,13006598,Medical Incident,01/19/2013,01/19/2013,01/19/2013 05:04:37 PM,01/19/2013 05:05:49 PM,01/19/2013 05:06:10 PM,01/19/2013 05:06:30 PM,01/19/2013 05:10:43 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 05:23:34 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,E,3,false,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",130190290-55 +121880133,93,12062594,Medical Incident,07/06/2012,07/06/2012,07/06/2012 10:46:08 AM,07/06/2012 10:47:58 AM,07/06/2012 10:48:17 AM,07/06/2012 10:48:36 AM,07/06/2012 10:51:28 AM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/06/2012 11:37:29 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",121880133-93 +120140336,E03,12004907,Medical Incident,01/14/2012,01/14/2012,01/14/2012 10:31:07 PM,01/14/2012 10:34:06 PM,01/14/2012 10:35:31 PM,01/14/2012 10:36:54 PM,01/14/2012 10:40:00 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/14/2012 10:44:18 PM,400 Block of TURK ST,SF,94102,B02,3,1554,1,1,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",120140336-E03 +140650337,82,14022083,Medical Incident,03/06/2014,03/06/2014,03/06/2014 07:11:46 PM,03/06/2014 07:14:36 PM,03/06/2014 07:23:39 PM,03/06/2014 07:23:39 PM,03/06/2014 07:23:43 PM,03/06/2014 07:34:12 PM,03/06/2014 07:59:43 PM,Code 2 Transport,03/06/2014 08:14:47 PM,GUERRERO ST/19TH ST,SAN FRANCISCO,94110,B06,7,5434,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7599673760707, -122.423641307645)",140650337-82 +132140180,E05,13072258,Medical Incident,08/02/2013,08/02/2013,08/02/2013 01:06:12 PM,08/02/2013 01:07:32 PM,08/02/2013 01:08:27 PM,08/02/2013 01:09:35 PM,08/02/2013 01:10:28 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/02/2013 01:24:30 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",132140180-E05 +111640282,64,11054209,Medical Incident,06/13/2011,06/13/2011,06/13/2011 05:22:36 PM,06/13/2011 05:23:22 PM,06/13/2011 05:23:57 PM,06/13/2011 05:25:57 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,Other,06/13/2011 05:30:10 PM,OCTAVIA ST/PACIFIC AV,SF,94109,B04,38,3332,3,2,2,true,,1,MEDIC,2,4,2,Pacific Heights,"(37.794187399512, -122.428159052346)",111640282-64 +160311584,55,16012154,Medical Incident,01/31/2016,01/31/2016,01/31/2016 12:25:46 PM,01/31/2016 12:26:02 PM,01/31/2016 12:26:17 PM,01/31/2016 12:27:46 PM,01/31/2016 12:29:50 PM,01/31/2016 12:58:17 PM,01/31/2016 01:18:57 PM,Code 2 Transport,01/31/2016 02:17:21 PM,3200 Block of BAKER ST,San Francisco,94123,B04,16,4315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8009437239624, -122.446507731772)",160311584-55 +160160626,79,16006312,Medical Incident,01/16/2016,01/15/2016,01/16/2016 05:53:29 AM,01/16/2016 05:53:29 AM,01/16/2016 05:53:49 AM,01/16/2016 05:54:01 AM,01/16/2016 06:05:09 AM,01/16/2016 06:15:54 AM,01/16/2016 06:29:13 AM,Code 2 Transport,01/16/2016 07:01:54 AM,MAIN ST/HOWARD ST,San Francisco,94105,B03,35,2116,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160160626-79 +110420118,AP,11013863,Other,02/11/2011,02/11/2011,02/11/2011 09:37:16 AM,02/11/2011 09:37:17 AM,02/11/2011 09:37:17 AM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Fire,02/11/2011 09:37:53 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110420118-AP +160600459,75,16023766,Medical Incident,02/29/2016,02/28/2016,02/29/2016 06:31:12 AM,02/29/2016 06:31:47 AM,02/29/2016 06:32:14 AM,02/29/2016 06:32:24 AM,02/29/2016 06:36:06 AM,02/29/2016 06:44:44 AM,02/29/2016 07:03:37 AM,Code 2 Transport,02/29/2016 07:38:08 AM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",160600459-75 +160863228,76,16034317,Medical Incident,03/26/2016,03/26/2016,03/26/2016 07:37:11 PM,03/26/2016 07:38:51 PM,03/26/2016 07:39:14 PM,03/26/2016 07:39:23 PM,03/26/2016 07:42:14 PM,03/26/2016 07:55:39 PM,03/26/2016 08:02:36 PM,Code 2 Transport,03/26/2016 08:29:51 PM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",160863228-76 +112700244,E41,11089271,Administrative,09/27/2011,09/27/2011,09/27/2011 04:07:30 PM,09/27/2011 04:07:38 PM,09/27/2011 04:07:47 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/27/2011 04:08:27 PM,1300 Block of LEAVENWORTH ST,SF,94109,B01,41,1536,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",112700244-E41 +132270389,T07,13076775,Alarms,08/15/2013,08/15/2013,08/15/2013 10:37:29 PM,08/15/2013 10:38:50 PM,08/15/2013 10:40:09 PM,08/15/2013 10:42:00 PM,08/15/2013 10:43:31 PM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Other,08/15/2013 10:50:32 PM,600 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,false,Alarm,1,TRUCK,1,6,8,Mission,"(37.7607732622482, -122.423603676841)",132270389-T07 +140870387,94,14029454,Medical Incident,03/28/2014,03/28/2014,03/28/2014 10:03:16 PM,03/28/2014 10:03:55 PM,03/28/2014 10:04:03 PM,03/28/2014 10:04:19 PM,03/28/2014 10:36:56 PM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,Medical Examiner,03/28/2014 11:21:37 PM,5600 Block of 3RD ST,SAN FRANCISCO,94124,B10,17,6537,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",140870387-94 +160051477,73,16001969,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:53:09 AM,01/05/2016 11:53:09 AM,01/05/2016 12:04:08 PM,01/05/2016 12:04:08 PM,01/05/2016 12:04:15 PM,01/05/2016 12:12:15 PM,01/05/2016 12:29:58 PM,Code 2 Transport,01/05/2016 01:28:15 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160051477-73 +121030375,B01,12034283,Electrical Hazard,04/12/2012,04/12/2012,04/12/2012 10:20:30 PM,04/12/2012 10:23:22 PM,04/12/2012 10:25:20 PM,04/12/2012 10:27:19 PM,04/12/2012 10:28:59 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 10:37:27 PM,700 Block of FILBERT ST,SF,94133,B01,28,1351,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.8010412948727, -122.412494211161)",121030375-B01 +122050059,E19,12068073,Medical Incident,07/23/2012,07/22/2012,07/23/2012 06:14:14 AM,07/23/2012 06:15:10 AM,07/23/2012 06:15:37 AM,07/23/2012 06:17:26 AM,07/23/2012 06:19:26 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Patient Declined Transport,07/23/2012 06:40:30 AM,CALL BOX: LAKE MERCED BL/WINSTON DR,SF,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7270760964512, -122.483810669613)",122050059-E19 +160171293,71,16006810,Medical Incident,01/17/2016,01/17/2016,01/17/2016 11:22:27 AM,01/17/2016 11:25:19 AM,01/17/2016 11:26:13 AM,01/17/2016 11:28:02 AM,01/17/2016 11:34:27 AM,01/17/2016 11:55:12 AM,01/17/2016 12:05:07 PM,Code 2 Transport,01/17/2016 12:32:43 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160171293-71 +120740391,84,12024731,Medical Incident,03/14/2012,03/14/2012,03/14/2012 10:10:28 PM,03/14/2012 10:11:16 PM,03/14/2012 10:12:24 PM,03/14/2012 10:12:32 PM,03/14/2012 10:17:32 PM,03/14/2012 10:53:25 PM,03/14/2012 10:53:27 PM,Code 2 Transport,03/14/2012 11:17:58 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",120740391-84 +133550198,67,13120671,Medical Incident,12/21/2013,12/21/2013,12/21/2013 12:30:24 PM,12/21/2013 12:32:18 PM,12/21/2013 12:32:41 PM,12/21/2013 12:32:53 PM,12/21/2013 12:39:34 PM,12/21/2013 12:47:53 PM,12/21/2013 01:14:16 PM,Code 2 Transport,12/21/2013 01:30:04 PM,HOWARD ST/5TH ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",133550198-67 +123100394,AM10,12103318,Medical Incident,11/05/2012,11/05/2012,11/05/2012 11:37:34 PM,11/05/2012 11:38:12 PM,11/05/2012 11:38:20 PM,04/25/2016 01:55:56 PM,11/05/2012 11:50:02 PM,11/06/2012 12:12:46 AM,11/06/2012 12:22:12 AM,Code 2 Transport,11/06/2012 01:06:22 AM,400 Block of VALLEJO ST,SF,94133,B01,2,1251,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.7990880661395, -122.405149956265)",123100394-AM10 +112160119,96,11071282,Medical Incident,08/04/2011,08/04/2011,08/04/2011 09:01:59 AM,08/04/2011 09:02:47 AM,08/04/2011 09:03:00 AM,08/04/2011 09:11:16 AM,08/04/2011 09:22:02 AM,08/04/2011 09:52:40 AM,08/04/2011 10:12:27 AM,Code 2 Transport,08/04/2011 11:02:28 AM,6800 Block of GEARY BLVD,SF,94121,B07,14,7245,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7795992276272, -122.49275286314)",112160119-96 +160190323,85,16007467,Medical Incident,01/19/2016,01/18/2016,01/19/2016 03:39:58 AM,01/19/2016 03:40:26 AM,01/19/2016 03:40:39 AM,01/19/2016 03:40:53 AM,01/19/2016 03:45:02 AM,01/19/2016 04:12:44 AM,01/19/2016 04:18:08 AM,Code 2 Transport,01/19/2016 04:58:01 AM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",160190323-85 +160143722,63,16005759,Medical Incident,01/14/2016,01/14/2016,01/14/2016 09:56:40 PM,01/14/2016 09:59:05 PM,01/14/2016 09:59:19 PM,01/14/2016 10:00:46 PM,01/14/2016 10:13:19 PM,01/14/2016 10:34:19 PM,01/14/2016 10:34:19 PM,Code 2 Transport,01/14/2016 11:11:48 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",160143722-63 +131250259,E33,13042312,Medical Incident,05/05/2013,05/05/2013,05/05/2013 05:55:04 PM,05/05/2013 05:56:37 PM,05/05/2013 05:57:34 PM,05/05/2013 05:58:52 PM,05/05/2013 06:07:23 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 06:18:39 PM,400 Block of VIDAL DR,SF,94132,B08,19,8583,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7167402896688, -122.484627525859)",131250259-E33 +122360227,KM10,12078226,Medical Incident,08/23/2012,08/23/2012,08/23/2012 03:35:26 PM,08/23/2012 03:37:18 PM,08/23/2012 03:37:49 PM,08/23/2012 03:38:20 PM,08/23/2012 03:45:18 PM,08/23/2012 03:56:16 PM,08/23/2012 04:11:39 PM,Code 2 Transport,08/23/2012 04:50:51 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",122360227-KM10 +113160168,KM01,11104995,Medical Incident,11/12/2011,11/12/2011,11/12/2011 02:08:36 PM,11/12/2011 02:09:49 PM,11/12/2011 02:10:01 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/12/2011 02:12:28 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,,1,PRIVATE,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",113160168-KM01 +160130078,62,16005007,Medical Incident,01/13/2016,01/12/2016,01/13/2016 12:42:00 AM,01/13/2016 12:43:37 AM,01/13/2016 12:43:44 AM,01/13/2016 12:43:51 AM,01/13/2016 12:49:57 AM,01/13/2016 01:02:41 AM,01/13/2016 01:06:38 AM,Code 2 Transport,01/13/2016 01:41:36 AM,300 Block of ANZA ST,San Francisco,94118,B05,10,4457,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7806329174566, -122.450319766912)",160130078-62 +110720307,84,11023826,Medical Incident,03/13/2011,03/13/2011,03/13/2011 07:22:25 PM,03/13/2011 07:24:14 PM,03/13/2011 07:24:28 PM,03/13/2011 07:29:48 PM,03/13/2011 07:25:32 PM,03/13/2011 07:59:24 PM,03/13/2011 08:38:14 PM,Code 2 Transport,03/13/2011 09:02:06 PM,CALL BOX: GOLDEN GATE BRIDGE TOLL PLAZA,PR,94129,B99,51,4616,3,3,3,true,,1,MEDIC,1,7,2,Presidio,"(37.8067660300626, -122.472829211656)",110720307-84 +112490090,E24,11082049,Traffic Collision,09/06/2011,09/06/2011,09/06/2011 09:01:10 AM,09/06/2011 09:02:45 AM,09/06/2011 09:02:56 AM,09/06/2011 09:05:37 AM,09/06/2011 09:08:23 AM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/06/2011 09:31:08 AM,0 Block of PORTOLA DR,SF,94131,B06,24,5374,2,2,2,true,,1,ENGINE,1,6,8,Twin Peaks,"(37.750259745443, -122.443876943037)",112490090-E24 +103580049,B10,10114806,Alarms,12/24/2010,12/23/2010,12/24/2010 03:53:10 AM,12/24/2010 03:56:07 AM,12/24/2010 03:56:14 AM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Fire,12/24/2010 03:58:20 AM,100 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,false,,1,CHIEF,2,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",103580049-B10 +160241352,KM13,16009501,Medical Incident,01/24/2016,01/24/2016,01/24/2016 11:29:01 AM,01/24/2016 11:31:29 AM,01/24/2016 11:31:57 AM,01/24/2016 11:32:25 AM,01/24/2016 11:42:30 AM,01/24/2016 11:49:15 AM,01/24/2016 12:13:06 PM,Code 2 Transport,01/24/2016 12:52:53 PM,MISSION ST/NIAGARA AV,San Francisco,94112,B09,43,6176,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7155726994788, -122.441691157652)",160241352-KM13 +160290357,74,16011318,Medical Incident,01/29/2016,01/28/2016,01/29/2016 04:22:02 AM,01/29/2016 04:24:49 AM,01/29/2016 04:26:44 AM,01/29/2016 04:26:57 AM,01/29/2016 04:34:59 AM,01/29/2016 04:46:29 AM,01/29/2016 04:54:17 AM,Code 2 Transport,01/29/2016 05:17:02 AM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7979466732983, -122.406460643507)",160290357-74 +160570957,75,16022675,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:19:17 AM,02/26/2016 09:21:23 AM,02/26/2016 09:21:41 AM,02/26/2016 09:21:46 AM,02/26/2016 09:26:39 AM,02/26/2016 09:42:51 AM,02/26/2016 09:52:43 AM,Code 2 Transport,02/26/2016 10:34:47 AM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160570957-75 +110260147,B06,11008553,Alarms,01/26/2011,01/26/2011,01/26/2011 11:28:35 AM,01/26/2011 11:29:54 AM,01/26/2011 11:32:04 AM,01/26/2011 11:33:30 AM,01/26/2011 11:35:52 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Fire,01/26/2011 11:36:14 AM,3300 Block of 19TH ST,SF,94110,B06,7,5433,3,3,3,false,,1,CHIEF,2,6,9,Mission,"(37.7603888134229, -122.417577215102)",110260147-B06 +122250133,B09,12074584,Structure Fire,08/12/2012,08/12/2012,08/12/2012 11:27:37 AM,08/12/2012 11:28:30 AM,08/12/2012 11:28:41 AM,08/12/2012 11:30:17 AM,08/12/2012 11:33:44 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Fire,08/12/2012 11:43:12 AM,0 Block of BRENTWOOD AVE,SF,94127,B09,39,8524,3,3,3,false,Fire,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7338873877064, -122.455146012166)",122250133-B09 +160191626,AM02,16007627,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:31:29 PM,01/19/2016 12:31:29 PM,01/19/2016 12:31:39 PM,01/19/2016 12:32:03 PM,01/19/2016 12:37:36 PM,01/19/2016 01:06:11 PM,01/19/2016 01:34:47 PM,Code 2 Transport,01/19/2016 01:54:54 PM,VAN NESS AV/EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",160191626-AM02 +111440022,B10,11047730,Alarms,05/24/2011,05/23/2011,05/24/2011 03:17:20 AM,05/24/2011 03:18:17 AM,05/24/2011 03:18:30 AM,05/24/2011 03:20:39 AM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/24/2011 03:24:19 AM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7192849941403, -122.388335559443)",111440022-B10 +113450208,88,11114477,Medical Incident,12/11/2011,12/11/2011,12/11/2011 01:23:37 PM,12/11/2011 01:25:02 PM,12/11/2011 01:25:37 PM,12/11/2011 01:26:14 PM,04/25/2016 02:01:12 PM,04/25/2016 02:01:12 PM,04/25/2016 02:01:12 PM,No Merit,12/11/2011 01:31:26 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",113450208-88 +131320221,89,13044620,Medical Incident,05/12/2013,05/12/2013,05/12/2013 05:22:48 PM,05/12/2013 05:23:17 PM,05/12/2013 05:23:28 PM,05/12/2013 05:24:07 PM,04/25/2016 01:52:50 PM,05/12/2013 05:36:38 PM,05/12/2013 05:50:25 PM,Code 2 Transport,05/12/2013 06:23:22 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",131320221-89 +112830083,95,11093592,Medical Incident,10/10/2011,10/10/2011,10/10/2011 08:57:06 AM,10/10/2011 08:57:58 AM,10/10/2011 08:58:23 AM,10/10/2011 08:59:29 AM,10/10/2011 09:06:07 AM,10/10/2011 09:22:19 AM,10/10/2011 09:34:23 AM,Code 2 Transport,10/10/2011 10:06:32 AM,500 Block of VIENNA ST,SF,94112,B09,43,6156,3,3,3,true,,1,MEDIC,1,9,11,Excelsior,"(37.7197250928414, -122.431057873329)",112830083-95 +111180272,E12,11039000,Medical Incident,04/28/2011,04/28/2011,04/28/2011 05:46:32 PM,04/28/2011 05:47:01 PM,04/28/2011 05:47:17 PM,04/28/2011 05:48:15 PM,04/28/2011 05:49:49 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 05:54:42 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",111180272-E12 +160400082,60,16015850,Medical Incident,02/09/2016,02/08/2016,02/09/2016 12:42:20 AM,02/09/2016 12:48:53 AM,02/09/2016 12:49:12 AM,02/09/2016 12:49:22 AM,02/09/2016 12:58:56 AM,02/09/2016 01:25:00 AM,02/09/2016 01:39:53 AM,Code 2 Transport,02/09/2016 02:57:16 AM,100 Block of BRITTON ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",160400082-60 +112020303,E16,11066732,Medical Incident,07/21/2011,07/21/2011,07/21/2011 04:13:19 PM,07/21/2011 04:14:34 PM,07/21/2011 04:15:23 PM,07/21/2011 04:15:53 PM,07/21/2011 04:20:30 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Unable to Locate,07/21/2011 04:20:33 PM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",112020303-E16 +140090204,E05,14003151,Structure Fire,01/09/2014,01/09/2014,01/09/2014 12:55:51 PM,01/09/2014 12:56:22 PM,01/09/2014 12:56:52 PM,01/09/2014 12:58:28 PM,01/09/2014 01:00:05 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 01:13:22 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,,3,3,true,Alarm,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",140090204-E05 +160723014,89,16028744,Medical Incident,03/12/2016,03/12/2016,03/12/2016 07:50:00 PM,03/12/2016 07:50:00 PM,03/12/2016 07:51:25 PM,03/12/2016 07:51:37 PM,03/12/2016 08:04:26 PM,03/12/2016 08:15:13 PM,03/12/2016 08:25:38 PM,Code 2 Transport,03/12/2016 09:17:14 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",160723014-89 +110030034,E32,11000858,Structure Fire,01/03/2011,01/02/2011,01/03/2011 02:57:09 AM,01/03/2011 02:57:09 AM,01/03/2011 02:57:47 AM,01/03/2011 02:58:44 AM,01/03/2011 03:00:55 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Fire,01/03/2011 03:02:55 AM,VIRGINIA AV/WINFIELD ST,SF,94110,B06,32,5654,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7420845445914, -122.418914134493)",110030034-E32 +113440341,E11,11114268,Medical Incident,12/10/2011,12/10/2011,12/10/2011 09:32:05 PM,12/10/2011 09:33:35 PM,12/10/2011 09:34:01 PM,12/10/2011 09:35:30 PM,12/10/2011 09:38:36 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 09:39:50 PM,24TH ST/SHOTWELL ST,SF,94110,B06,7,544,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.752439647175, -122.415172290461)",113440341-E11 +122900217,D3,12095995,Structure Fire,10/16/2012,10/16/2012,10/16/2012 01:21:21 PM,10/16/2012 01:23:17 PM,10/16/2012 01:23:39 PM,10/16/2012 01:24:10 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Other,10/16/2012 01:29:48 PM,0 Block of ORA WAY,SF,94131,B06,26,8154,3,3,3,false,Alarm,1,CHIEF,5,6,8,Glen Park,"(37.7414013070575, -122.437853503826)",122900217-D3 +103140187,T15,10100680,Structure Fire,11/10/2010,11/10/2010,11/10/2010 01:00:33 PM,11/10/2010 01:00:33 PM,11/10/2010 01:00:53 PM,11/10/2010 01:02:02 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,Other,11/10/2010 01:03:28 PM,OCEAN AV/HOWTH ST,SF,94112,B09,15,8314,3,3,3,false,,1,TRUCK,2,9,7,West of Twin Peaks,"(37.7229613197443, -122.449558618759)",103140187-T15 +111870036,E36,11061704,Medical Incident,07/06/2011,07/05/2011,07/06/2011 02:19:12 AM,07/06/2011 02:20:25 AM,07/06/2011 02:20:40 AM,07/06/2011 02:22:35 AM,07/06/2011 02:24:55 AM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 02:32:47 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,1,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",111870036-E36 +160472275,KM03,16018978,Medical Incident,02/16/2016,02/16/2016,02/16/2016 02:59:19 PM,02/16/2016 03:01:15 PM,02/16/2016 03:02:03 PM,02/16/2016 03:02:48 PM,02/16/2016 03:10:54 PM,02/16/2016 03:31:16 PM,02/16/2016 04:13:48 PM,Code 2 Transport,02/16/2016 04:43:35 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",160472275-KM03 +113560366,E10,11118346,Gas Leak (Natural and LP Gases),12/22/2011,12/22/2011,12/22/2011 07:28:20 PM,12/22/2011 07:30:02 PM,12/22/2011 07:32:19 PM,12/22/2011 07:34:25 PM,12/22/2011 07:36:00 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Fire,12/22/2011 07:41:38 PM,GEARY BL/WOOD ST,SF,94118,B05,10,4455,3,3,3,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7823143742059, -122.449079404794)",113560366-E10 +160730878,KM04,16028924,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:31:08 AM,03/13/2016 10:33:24 AM,03/13/2016 10:33:34 AM,03/13/2016 10:33:56 AM,03/13/2016 10:42:36 AM,03/13/2016 10:52:45 AM,03/13/2016 11:01:54 AM,Code 2 Transport,03/13/2016 11:47:15 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160730878-KM04 +121630111,E22,12053971,Traffic Collision,06/11/2012,06/11/2012,06/11/2012 09:35:12 AM,06/11/2012 09:36:36 AM,06/11/2012 09:37:04 AM,06/11/2012 09:39:01 AM,06/11/2012 09:40:36 AM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/11/2012 09:54:55 AM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7631968207196, -122.464176094005)",121630111-E22 +160480386,89,16019225,Medical Incident,02/17/2016,02/16/2016,02/17/2016 05:02:14 AM,02/17/2016 05:04:05 AM,02/17/2016 05:04:28 AM,02/17/2016 05:05:02 AM,02/17/2016 05:12:40 AM,02/17/2016 05:16:13 AM,02/17/2016 05:25:18 AM,Code 2 Transport,02/17/2016 05:36:33 AM,FULTON ST/36TH AV,San Francisco,94121,B07,34,7253,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7720320135861, -122.495972014737)",160480386-89 +160670272,AM20,16026595,Medical Incident,03/07/2016,03/06/2016,03/07/2016 04:20:10 AM,03/07/2016 04:22:05 AM,03/07/2016 04:22:25 AM,03/07/2016 04:23:04 AM,03/07/2016 04:27:46 AM,03/07/2016 04:32:57 AM,03/07/2016 04:40:27 AM,Code 2 Transport,03/07/2016 05:06:59 AM,600 Block of MASON ST,San Francisco,94108,B01,3,1412,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7894926602391, -122.41026951897)",160670272-AM20 +103500239,B10,10112289,Structure Fire,12/16/2010,12/16/2010,12/16/2010 02:50:54 PM,12/16/2010 02:51:50 PM,12/16/2010 02:52:08 PM,12/16/2010 02:53:03 PM,12/16/2010 02:59:17 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,12/16/2010 03:02:54 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,CHIEF,8,2,8,Mission,"(37.7641044099588, -122.42187797405)",103500239-B10 +160553426,89,16022123,Medical Incident,02/24/2016,02/24/2016,02/24/2016 07:09:11 PM,02/24/2016 07:10:19 PM,02/24/2016 07:10:38 PM,02/24/2016 07:10:48 PM,02/24/2016 07:18:37 PM,02/24/2016 07:33:50 PM,02/24/2016 07:51:31 PM,Code 2 Transport,02/24/2016 08:32:51 PM,3000 Block of OCTAVIA ST,San Francisco,94123,B04,16,3336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8002245379297, -122.429448885727)",160553426-89 +121300063,E05,12043162,Structure Fire,05/09/2012,05/08/2012,05/09/2012 07:18:43 AM,05/09/2012 07:18:44 AM,05/09/2012 07:19:09 AM,05/09/2012 07:21:00 AM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,No Merit,05/09/2012 07:22:07 AM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,Alarm,1,ENGINE,2,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",121300063-E05 +112490054,E44,11082024,Medical Incident,09/06/2011,09/05/2011,09/06/2011 06:47:55 AM,09/06/2011 06:51:23 AM,09/06/2011 06:52:10 AM,09/06/2011 06:53:43 AM,09/06/2011 06:55:28 AM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/06/2011 07:14:45 AM,3100 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7220016138662, -122.401341444894)",112490054-E44 +103340117,67,10106826,Medical Incident,11/30/2010,11/30/2010,11/30/2010 10:25:26 AM,11/30/2010 10:28:11 AM,11/30/2010 10:29:04 AM,11/30/2010 10:29:28 AM,11/30/2010 10:39:37 AM,11/30/2010 10:59:07 AM,11/30/2010 11:16:18 AM,Code 2 Transport,11/30/2010 11:42:03 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",103340117-67 +110120236,E17,11004023,Medical Incident,01/12/2011,01/12/2011,01/12/2011 03:15:47 PM,01/12/2011 03:16:42 PM,01/12/2011 03:17:27 PM,01/12/2011 03:18:18 PM,01/12/2011 03:19:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/12/2011 03:33:52 PM,1900 Block of JENNINGS ST,SF,94124,B10,17,6651,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7279483238307, -122.387773887929)",110120236-E17 +130980062,85,13032761,Medical Incident,04/08/2013,04/07/2013,04/08/2013 04:45:53 AM,04/08/2013 04:48:52 AM,04/08/2013 04:49:00 AM,04/08/2013 04:49:38 AM,04/08/2013 05:00:20 AM,04/08/2013 05:24:15 AM,04/08/2013 05:33:49 AM,Code 2 Transport,04/08/2013 05:46:03 AM,400 Block of OXFORD ST,SF,94134,B09,43,6151,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7243497669411, -122.418705405465)",130980062-85 +113100257,KM12,11103109,Medical Incident,11/06/2011,11/06/2011,11/06/2011 06:04:13 PM,11/06/2011 06:05:17 PM,11/06/2011 06:05:56 PM,11/06/2011 06:06:34 PM,11/06/2011 06:08:34 PM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Medical Examiner,11/06/2011 07:07:39 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,E,3,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",113100257-KM12 +122310200,E02,12076617,Medical Incident,08/18/2012,08/18/2012,08/18/2012 03:25:12 PM,08/18/2012 03:28:04 PM,08/18/2012 03:28:25 PM,08/18/2012 03:31:00 PM,08/18/2012 03:34:06 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,No Merit,08/18/2012 03:36:41 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7882286861562, -122.415995198292)",122310200-E02 +120570061,E14,12018703,Structure Fire,02/26/2012,02/25/2012,02/26/2012 03:20:35 AM,02/26/2012 03:20:35 AM,02/26/2012 03:20:41 AM,02/26/2012 03:22:32 AM,02/26/2012 03:23:09 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Fire,02/26/2012 03:23:44 AM,27TH AV/ANZA ST,SF,94121,B07,14,7222,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7780687428375, -122.486737519689)",120570061-E14 +132440281,T11,13082435,Structure Fire,09/01/2013,09/01/2013,09/01/2013 05:59:36 PM,09/01/2013 05:59:36 PM,09/01/2013 05:59:46 PM,09/01/2013 06:01:11 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 06:04:13 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",132440281-T11 +122680241,RC2,12088581,Medical Incident,09/24/2012,09/24/2012,09/24/2012 03:00:07 PM,09/24/2012 03:01:40 PM,09/24/2012 03:01:52 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 03:03:32 PM,100 Block of 11TH AVE,SF,94118,B07,31,7137,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,4,7,1,Inner Richmond,"(37.785508135607, -122.469906706802)",122680241-RC2 +110330382,T10,11010988,Structure Fire,02/02/2011,02/02/2011,02/02/2011 09:17:30 PM,02/02/2011 09:18:31 PM,02/02/2011 09:18:43 PM,02/02/2011 09:20:05 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 09:41:09 PM,300 Block of 26TH AVE,SF,94121,B07,14,7214,3,3,3,false,,1,TRUCK,8,7,1,Outer Richmond,"(37.7829074057708, -122.485947937388)",110330382-T10 +111670275,RC1,11055212,Medical Incident,06/16/2011,06/16/2011,06/16/2011 08:55:51 PM,06/16/2011 08:56:56 PM,06/16/2011 08:57:54 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/16/2011 09:12:43 PM,HOWARD ST/9TH ST,SF,94103,B02,36,2335,3,3,3,true,,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7749917496069, -122.413161109659)",111670275-RC1 +130150113,RS1,13005057,Medical Incident,01/15/2013,01/15/2013,01/15/2013 10:19:49 AM,01/15/2013 10:21:15 AM,01/15/2013 10:21:45 AM,01/15/2013 10:22:54 AM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,Other,04/25/2016 01:54:48 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130150113-RS1 +140810377,E06,14027535,Medical Incident,03/22/2014,03/22/2014,03/22/2014 11:24:12 PM,03/22/2014 11:25:19 PM,03/22/2014 11:25:33 PM,03/22/2014 11:26:53 PM,03/22/2014 11:30:16 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,No Merit,03/22/2014 11:33:07 PM,20TH ST/NOE ST,SAN FRANCISCO,94114,B06,6,5443,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7578205155162, -122.432484166392)",140810377-E06 +133290245,E36,13111821,Structure Fire,11/25/2013,11/25/2013,11/25/2013 04:39:53 PM,11/25/2013 04:39:54 PM,11/25/2013 04:40:24 PM,11/25/2013 04:41:16 PM,11/25/2013 04:43:50 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Fire,11/25/2013 04:44:25 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,false,Alarm,1,ENGINE,1,2,6,Mission,"(37.7741251002903, -122.418810211803)",133290245-E36 +120830172,92,12027553,Medical Incident,03/23/2012,03/23/2012,03/23/2012 12:35:43 PM,03/23/2012 12:36:04 PM,03/23/2012 12:36:41 PM,03/23/2012 12:36:49 PM,03/23/2012 12:40:36 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 12:50:44 PM,2200 Block of 40TH AVE,SF,94116,B08,18,7635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7448594798228, -122.498317584595)",120830172-92 +123180116,AM20,12105711,Medical Incident,11/13/2012,11/13/2012,11/13/2012 09:52:00 AM,11/13/2012 09:53:17 AM,11/13/2012 09:53:42 AM,11/13/2012 09:54:25 AM,11/13/2012 09:57:37 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,No Merit,11/13/2012 10:02:36 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",123180116-AM20 +120290122,E16,12009691,Medical Incident,01/29/2012,01/29/2012,01/29/2012 11:15:12 AM,01/29/2012 11:17:17 AM,01/29/2012 11:17:35 AM,01/29/2012 11:19:12 AM,01/29/2012 11:20:16 AM,01/29/2012 11:34:16 AM,04/25/2016 02:00:23 PM,Other,01/29/2012 12:08:59 PM,2200 Block of UNION ST,SF,94123,B04,16,3552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7970384069746, -122.43632472497)",120290122-E16 +110070168,86,11002309,Medical Incident,01/07/2011,01/07/2011,01/07/2011 12:36:31 PM,01/07/2011 12:38:20 PM,01/07/2011 12:38:37 PM,01/07/2011 12:38:47 PM,01/07/2011 12:41:54 PM,01/07/2011 01:02:49 PM,01/07/2011 01:30:44 PM,Code 2 Transport,01/07/2011 01:58:36 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",110070168-86 +113080129,92,11102276,Medical Incident,11/04/2011,11/04/2011,11/04/2011 10:15:25 AM,11/04/2011 10:16:14 AM,11/04/2011 10:17:46 AM,11/04/2011 10:26:41 AM,11/04/2011 10:37:46 AM,11/04/2011 10:51:40 AM,11/04/2011 11:08:58 AM,Code 2 Transport,11/04/2011 11:32:52 AM,2100 Block of 29TH AVE,SF,94116,B08,18,7521,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7472368216522, -122.486797278692)",113080129-92 +130210107,E13,13007197,Alarms,01/21/2013,01/21/2013,01/21/2013 09:41:51 AM,01/21/2013 09:41:52 AM,01/21/2013 09:42:01 AM,01/21/2013 09:43:46 AM,01/21/2013 09:45:45 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Fire,01/21/2013 09:56:11 AM,900 Block of KEARNY ST,SF,94133,B01,13,1246,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",130210107-E13 +131530050,84,13051719,Medical Incident,06/02/2013,06/01/2013,06/02/2013 04:03:08 AM,06/02/2013 04:07:24 AM,06/02/2013 04:08:28 AM,06/02/2013 04:10:20 AM,06/02/2013 04:15:12 AM,06/02/2013 04:42:55 AM,06/02/2013 04:51:35 AM,Code 2 Transport,06/02/2013 05:26:52 AM,FRANKLIN ST/FUNSTON ST,FM,94123,B04,51,3344,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.807083060201, -122.427776678697)",131530050-84 +121290356,B04,12043084,Gas Leak (Natural and LP Gases),05/08/2012,05/08/2012,05/08/2012 09:37:53 PM,05/08/2012 09:39:54 PM,05/08/2012 09:40:02 PM,05/08/2012 09:41:22 PM,05/08/2012 09:44:13 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Fire,05/08/2012 09:54:44 PM,1400 Block of SACRAMENTO ST,SF,94109,B01,41,1563,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.7920595166394, -122.41694742808)",121290356-B04 +123040234,59,12100939,Medical Incident,10/30/2012,10/30/2012,10/30/2012 04:59:23 PM,10/30/2012 05:00:10 PM,10/30/2012 05:01:38 PM,10/30/2012 05:01:54 PM,10/30/2012 05:10:13 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Patient Declined Transport,10/30/2012 05:41:47 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",123040234-59 +102400121,E06,10075654,Medical Incident,08/28/2010,08/28/2010,08/28/2010 10:29:32 AM,08/28/2010 10:30:02 AM,08/28/2010 10:30:36 AM,04/25/2016 02:08:52 PM,08/28/2010 10:33:40 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Other,08/28/2010 10:42:52 AM,DUBOCE AV/FILLMORE ST,SF,94114,B02,6,3525,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7694079208278, -122.429905644885)",102400121-E06 +121560319,AM14,12051760,Medical Incident,06/04/2012,06/04/2012,06/04/2012 08:35:34 PM,06/04/2012 08:38:11 PM,06/04/2012 08:38:43 PM,06/04/2012 08:39:21 PM,06/04/2012 08:42:50 PM,06/04/2012 08:48:26 PM,06/04/2012 08:57:40 PM,Code 2 Transport,06/04/2012 09:19:03 PM,MISSION ST/9TH ST,SF,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",121560319-AM14 +121210152,E05,12040158,Medical Incident,04/30/2012,04/30/2012,04/30/2012 12:13:15 PM,04/30/2012 12:13:20 PM,04/30/2012 12:13:34 PM,04/30/2012 12:14:01 PM,04/30/2012 12:16:41 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 12:30:19 PM,400 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7813958668825, -122.417987996268)",121210152-E05 +140940229,E14,14031631,Medical Incident,04/04/2014,04/04/2014,04/04/2014 03:23:22 PM,04/04/2014 03:25:01 PM,04/04/2014 03:30:08 PM,04/04/2014 03:31:08 PM,04/04/2014 03:34:13 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Code 2 Transport,04/04/2014 03:36:07 PM,700 Block of 18TH AVE,SAN FRANCISCO,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",140940229-E14 +123030436,E07,12100723,Medical Incident,10/29/2012,10/29/2012,10/29/2012 11:07:18 PM,10/29/2012 11:07:23 PM,10/29/2012 11:08:56 PM,10/29/2012 11:11:10 PM,10/29/2012 11:13:22 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 11:21:16 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",123030436-E07 +122700346,RC1,12089270,Medical Incident,09/26/2012,09/26/2012,09/26/2012 10:35:39 PM,09/26/2012 10:36:31 PM,09/26/2012 10:37:43 PM,09/26/2012 10:38:39 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/26/2012 10:41:15 PM,VAN NESS AV/GROVE ST,SF,94102,B02,36,3165,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",122700346-RC1 +131560168,E03,13052887,Traffic Collision,06/05/2013,06/05/2013,06/05/2013 12:16:24 PM,06/05/2013 12:17:03 PM,06/05/2013 12:17:14 PM,06/05/2013 12:17:39 PM,06/05/2013 12:20:24 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/05/2013 12:30:05 PM,800 Block of VAN NESS AVE,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7831032668735, -122.420996914)",131560168-E03 +160323343,63,16012744,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:33:51 PM,02/01/2016 08:33:51 PM,02/01/2016 08:34:07 PM,02/01/2016 08:34:26 PM,02/01/2016 08:42:26 PM,02/01/2016 08:52:35 PM,02/01/2016 08:58:53 PM,Code 2 Transport,02/01/2016 09:26:56 PM,FUNSTON AV/CALIFORNIA ST,San Francisco,94118,B07,31,7147,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7844763087646, -122.472051926542)",160323343-63 +131160283,B06,13039173,Alarms,04/26/2013,04/26/2013,04/26/2013 09:20:43 PM,04/26/2013 09:27:23 PM,04/26/2013 09:27:37 PM,04/26/2013 09:28:37 PM,04/26/2013 09:32:13 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 09:32:33 PM,3300 Block of 25TH ST,SF,94110,B06,11,5534,3,3,3,false,Alarm,1,CHIEF,3,6,9,Mission,"(37.7506663720222, -122.416930970511)",131160283-B06 +110300111,E14,11009794,Medical Incident,01/30/2011,01/30/2011,01/30/2011 08:01:19 AM,01/30/2011 08:01:51 AM,01/30/2011 08:02:17 AM,01/30/2011 08:03:04 AM,01/30/2011 08:05:19 AM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Medical Examiner,01/30/2011 08:47:04 AM,3300 Block of ANZA ST,SF,94121,B07,14,7176,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7782449088312, -122.484064260478)",110300111-E14 +120270092,E38,12008982,Medical Incident,01/27/2012,01/27/2012,01/27/2012 08:41:16 AM,01/27/2012 08:42:09 AM,01/27/2012 08:42:43 AM,01/27/2012 08:44:24 AM,01/27/2012 08:46:04 AM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Other,01/27/2012 08:52:28 AM,BUSH ST/FRANKLIN ST,SF,94109,B04,38,3224,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7882797328681, -122.423594074468)",120270092-E38 +140260108,E19,14008840,Medical Incident,01/26/2014,01/26/2014,01/26/2014 09:38:03 AM,01/26/2014 09:39:05 AM,01/26/2014 09:39:40 AM,01/26/2014 09:40:19 AM,01/26/2014 09:43:53 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 09:52:52 AM,2900 Block of 25TH AVE,SF,94132,B08,19,8734,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7334328921172, -122.480992659737)",140260108-E19 +121220068,E03,12040405,Medical Incident,05/01/2012,05/01/2012,05/01/2012 08:07:44 AM,05/01/2012 08:09:24 AM,05/01/2012 08:09:43 AM,05/01/2012 08:10:54 AM,05/01/2012 08:12:40 AM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,Other,05/01/2012 08:16:02 AM,800 Block of LEAVENWORTH ST,SF,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",121220068-E03 +131460195,B04,13049520,Alarms,05/26/2013,05/26/2013,05/26/2013 11:30:12 AM,05/26/2013 11:31:33 AM,05/26/2013 11:31:41 AM,05/26/2013 11:31:59 AM,05/26/2013 11:34:23 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 11:38:58 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,Alarm,1,CHIEF,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",131460195-B04 +140740292,66,14025105,Medical Incident,03/15/2014,03/15/2014,03/15/2014 04:31:23 PM,03/15/2014 04:32:49 PM,03/15/2014 04:34:05 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,No Merit,03/15/2014 04:34:13 PM,600 Block of FILBERT ST,SAN FRANCISCO,94133,B01,28,1351,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8013244963183, -122.410204322135)",140740292-66 +113650117,82,11121209,Medical Incident,12/31/2011,12/31/2011,12/31/2011 09:50:54 AM,12/31/2011 09:51:45 AM,12/31/2011 09:52:41 AM,12/31/2011 09:53:08 AM,12/31/2011 10:04:19 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Against Medical Advice,12/31/2011 11:01:14 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,2,2,2,true,,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",113650117-82 +111190034,E03,11039131,Medical Incident,04/29/2011,04/28/2011,04/29/2011 05:00:07 AM,04/29/2011 05:00:56 AM,04/29/2011 05:01:15 AM,04/29/2011 05:02:53 AM,04/29/2011 05:05:13 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 05:16:36 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",111190034-E03 +131100283,B09,13037102,Confined Space / Structure Collapse,04/20/2013,04/20/2013,04/20/2013 05:17:56 PM,04/20/2013 05:18:53 PM,04/20/2013 05:19:13 PM,04/20/2013 05:20:34 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/20/2013 05:26:03 PM,2200 Block of 16TH AVE,SF,94116,B08,40,7375,3,3,3,false,Fire,1,CHIEF,9,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",131100283-B09 +121610101,E18,12053238,Medical Incident,06/09/2012,06/09/2012,06/09/2012 09:41:11 AM,06/09/2012 09:41:43 AM,06/09/2012 09:42:02 AM,06/09/2012 09:42:18 AM,06/09/2012 09:45:05 AM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,06/09/2012 09:54:29 AM,1800 Block of 24TH AVE,SF,94122,B08,18,7455,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7530690887832, -122.481836048422)",121610101-E18 +160500431,62,16019965,Medical Incident,02/19/2016,02/18/2016,02/19/2016 05:47:46 AM,02/19/2016 05:49:34 AM,02/19/2016 05:50:30 AM,02/19/2016 05:50:40 AM,02/19/2016 06:06:01 AM,02/19/2016 06:20:54 AM,02/19/2016 06:27:01 AM,Code 2 Transport,02/19/2016 07:15:23 AM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",160500431-62 +120200107,E22,12006619,Medical Incident,01/20/2012,01/20/2012,01/20/2012 09:35:34 AM,01/20/2012 09:35:55 AM,01/20/2012 09:36:24 AM,01/20/2012 09:38:44 AM,01/20/2012 09:39:18 AM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 09:46:59 AM,1200 Block of FUNSTON AVE,SF,94122,B08,22,7346,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7647909798939, -122.470730253887)",120200107-E22 +121670116,RC1,12055340,Traffic Collision,06/15/2012,06/15/2012,06/15/2012 10:39:36 AM,06/15/2012 10:39:36 AM,06/15/2012 10:39:36 AM,04/25/2016 01:58:12 PM,06/15/2012 10:47:29 AM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/15/2012 10:55:44 AM,POLK ST/LOMBARD ST,SF,94109,B01,16,3133,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,1,2,Russian Hill,"(37.8015580514761, -122.422901799225)",121670116-RC1 +102630146,E02,10083179,Fuel Spill,09/20/2010,09/20/2010,09/20/2010 11:30:18 AM,09/20/2010 11:31:25 AM,09/20/2010 11:31:34 AM,09/20/2010 11:31:44 AM,09/20/2010 11:34:02 AM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Fire,09/20/2010 11:39:51 AM,800 Block of CALIFORNIA ST,SF,94108,B01,2,1356,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7922694289836, -122.407814772426)",102630146-E02 +133030070,94,13102847,Medical Incident,10/30/2013,10/30/2013,10/30/2013 08:53:14 AM,10/30/2013 08:55:05 AM,10/30/2013 08:55:56 AM,10/30/2013 08:56:11 AM,10/30/2013 09:11:19 AM,10/30/2013 09:20:59 AM,10/30/2013 09:36:57 AM,Code 2 Transport,10/30/2013 10:08:02 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",133030070-94 +110440237,87,11014664,Water Rescue,02/13/2011,02/13/2011,02/13/2011 03:23:02 PM,02/13/2011 03:26:42 PM,02/13/2011 03:27:08 PM,02/13/2011 03:27:17 PM,02/13/2011 03:32:34 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 03:48:03 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,,1,MEDIC,5,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",110440237-87 +111720059,AM02,11056627,Medical Incident,06/21/2011,06/20/2011,06/21/2011 06:44:31 AM,06/21/2011 06:45:39 AM,06/21/2011 06:46:25 AM,06/21/2011 06:47:21 AM,04/25/2016 02:04:03 PM,06/21/2011 07:07:03 AM,06/21/2011 07:17:33 AM,Code 2 Transport,06/21/2011 07:56:47 AM,200 Block of PRECITA AVE,SF,94110,B06,11,5664,3,3,3,false,,1,PRIVATE,2,6,9,Bernal Heights,"(37.7473189471178, -122.414189809933)",111720059-AM02 +160181381,KM12,16007208,Medical Incident,01/18/2016,01/18/2016,01/18/2016 12:07:57 PM,01/18/2016 12:08:47 PM,01/18/2016 12:09:31 PM,01/18/2016 12:10:10 PM,01/18/2016 12:17:01 PM,01/18/2016 12:40:22 PM,01/18/2016 01:32:35 PM,Code 2 Transport,01/18/2016 01:42:12 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160181381-KM12 +112010187,E16,11066267,Administrative,07/20/2011,07/20/2011,07/20/2011 12:08:18 PM,07/20/2011 12:08:20 PM,07/20/2011 12:08:45 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Fire,07/20/2011 12:09:41 PM,2200 Block of GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7987927965073, -122.436679384834)",112010187-E16 +140340170,E05,14011485,Medical Incident,02/03/2014,02/03/2014,02/03/2014 12:31:39 PM,02/03/2014 12:34:15 PM,02/03/2014 12:34:27 PM,02/03/2014 12:35:28 PM,02/03/2014 12:39:08 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 12:53:57 PM,600 Block of DIVISADERO ST,SF,94117,B05,21,4146,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7754436617793, -122.438015276303)",140340170-E05 +132150224,T08,13072644,Alarms,08/03/2013,08/03/2013,08/03/2013 02:17:26 PM,08/03/2013 02:18:33 PM,08/03/2013 02:18:47 PM,08/03/2013 02:20:10 PM,08/03/2013 02:22:26 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 02:26:51 PM,0 Block of SOUTH PARK,SF,94107,B03,8,2153,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",132150224-T08 +120010587,B06,12000511,Alarms,01/01/2012,01/01/2012,01/01/2012 08:06:37 PM,01/01/2012 08:07:13 PM,01/01/2012 08:07:32 PM,01/01/2012 08:08:50 PM,01/01/2012 08:11:01 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 08:14:29 PM,1700 Block of DOLORES ST,SF,94131,B06,32,5575,3,3,3,false,Alarm,1,CHIEF,2,6,8,Glen Park,"(37.7412877667335, -122.424293822177)",120010587-B06 +160423725,60,16017055,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:55:51 PM,02/11/2016 09:56:55 PM,02/11/2016 09:57:08 PM,02/11/2016 09:57:18 PM,02/11/2016 10:05:50 PM,02/11/2016 10:33:47 PM,02/11/2016 10:51:57 PM,Code 3 Transport,02/11/2016 11:29:21 PM,100 Block of MERCURY ST,San Francisco,94124,B10,42,6447,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731034748631, -122.400971874885)",160423725-60 +160380306,86,16015042,Medical Incident,02/07/2016,02/06/2016,02/07/2016 01:44:48 AM,02/07/2016 01:46:59 AM,02/07/2016 01:47:22 AM,02/07/2016 01:47:41 AM,02/07/2016 01:54:14 AM,02/07/2016 02:05:28 AM,02/07/2016 02:16:03 AM,Code 2 Transport,02/07/2016 02:28:12 AM,200 Block of PARIS ST,San Francisco,94112,B09,43,6127,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7246819545863, -122.432583397897)",160380306-86 +160200840,62,16007932,Medical Incident,01/20/2016,01/20/2016,01/20/2016 08:37:37 AM,01/20/2016 08:38:11 AM,01/20/2016 08:42:17 AM,01/20/2016 08:42:17 AM,01/20/2016 09:03:03 AM,01/20/2016 09:04:28 AM,01/20/2016 09:21:38 AM,Code 2 Transport,01/20/2016 10:00:23 AM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160200840-62 +140980304,E43,14033118,Outside Fire,04/08/2014,04/08/2014,04/08/2014 03:25:48 PM,04/08/2014 03:27:21 PM,04/08/2014 03:28:32 PM,04/08/2014 03:30:10 PM,04/08/2014 03:30:48 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Fire,04/08/2014 03:31:27 PM,PERSIA AV/MOSCOW ST,SAN FRANCISCO,94112,B09,43,6156,3,3,3,false,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7197115927597, -122.42880461288)",140980304-E43 +111810328,E43,11059852,Medical Incident,06/30/2011,06/30/2011,06/30/2011 07:21:24 PM,06/30/2011 07:22:10 PM,06/30/2011 07:22:27 PM,06/30/2011 07:23:31 PM,06/30/2011 07:26:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 07:39:10 PM,100 Block of SANTOS ST,SF,94134,B09,43,6244,3,3,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",111810328-E43 +132670038,89,13090522,Medical Incident,09/24/2013,09/23/2013,09/24/2013 05:20:13 AM,09/24/2013 05:20:46 AM,09/24/2013 05:21:15 AM,09/24/2013 05:21:23 AM,09/24/2013 05:25:12 AM,09/24/2013 05:37:57 AM,09/24/2013 05:48:51 AM,Code 2 Transport,09/24/2013 05:58:46 AM,700 Block of NAPLES ST,SF,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7169949183795, -122.434203067739)",132670038-89 +113260051,E38,11108153,Medical Incident,11/22/2011,11/21/2011,11/22/2011 06:15:51 AM,11/22/2011 06:16:43 AM,11/22/2011 06:16:57 AM,11/22/2011 06:19:25 AM,11/22/2011 06:21:41 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 06:37:54 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",113260051-E38 +122100318,E31,12069884,Medical Incident,07/28/2012,07/28/2012,07/28/2012 08:50:28 PM,07/28/2012 08:50:55 PM,07/28/2012 08:51:26 PM,07/28/2012 08:52:19 PM,07/28/2012 08:53:50 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 08:58:52 PM,15TH AV/GEARY BL,SF,94118,B07,31,7153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7805753802673, -122.47398246915)",122100318-E31 +160132263,66,16005217,Traffic Collision,01/13/2016,01/13/2016,01/13/2016 02:16:42 PM,01/13/2016 02:16:42 PM,01/13/2016 02:16:53 PM,01/13/2016 02:17:38 PM,01/13/2016 02:27:37 PM,01/13/2016 02:27:39 PM,01/13/2016 02:34:09 PM,Other,01/13/2016 03:52:15 PM,GOLDEN GATE AV/VAN NESS AV,San Francisco,94102,B02,36,3164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",160132263-66 +140800298,92,14027129,Medical Incident,03/21/2014,03/21/2014,03/21/2014 06:14:05 PM,03/21/2014 06:16:14 PM,03/21/2014 06:17:06 PM,03/21/2014 06:17:13 PM,03/21/2014 06:35:51 PM,03/21/2014 06:53:24 PM,03/21/2014 07:09:53 PM,Code 2 Transport,03/21/2014 07:51:03 PM,0 Block of PROSPER ST,SAN FRANCISCO,94114,B05,6,5252,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7635094241678, -122.431691552356)",140800298-92 +160461796,89,16018521,Medical Incident,02/15/2016,02/15/2016,02/15/2016 01:32:27 PM,02/15/2016 01:33:57 PM,02/15/2016 01:35:53 PM,02/15/2016 01:36:01 PM,02/15/2016 01:39:04 PM,02/15/2016 02:01:53 PM,02/15/2016 02:33:03 PM,Code 2 Transport,02/15/2016 03:23:57 PM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8084325058333, -122.410757587167)",160461796-89 +160790071,52,16031248,Medical Incident,03/19/2016,03/18/2016,03/19/2016 12:29:46 AM,03/19/2016 12:31:33 AM,03/19/2016 12:32:39 AM,03/19/2016 12:32:46 AM,03/19/2016 12:42:29 AM,03/19/2016 12:48:52 AM,03/19/2016 01:02:47 AM,Code 2 Transport,03/19/2016 01:46:41 AM,1100 Block of TENNESSEE ST,San Francisco,94107,B10,25,2533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.757124167273, -122.38910828352)",160790071-52 +160790208,58,16031261,Medical Incident,03/19/2016,03/18/2016,03/19/2016 01:24:00 AM,03/19/2016 01:25:04 AM,03/19/2016 01:26:00 AM,03/19/2016 01:26:07 AM,03/19/2016 01:36:50 AM,03/19/2016 01:36:52 AM,03/19/2016 01:59:23 AM,Code 2 Transport,03/19/2016 02:23:17 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160790208-58 +130770350,E01,13025855,Medical Incident,03/18/2013,03/18/2013,03/18/2013 09:18:29 PM,03/18/2013 09:19:33 PM,03/18/2013 09:19:51 PM,03/18/2013 09:20:34 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 09:22:47 PM,400 Block of STEVENSON ST,SF,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7826802418766, -122.408637266636)",130770350-E01 +160801269,52,16031769,Medical Incident,03/20/2016,03/20/2016,03/20/2016 10:48:01 AM,03/20/2016 10:48:30 AM,03/20/2016 10:48:48 AM,03/20/2016 10:48:55 AM,03/20/2016 10:53:10 AM,03/20/2016 11:03:58 AM,03/20/2016 11:25:58 AM,Code 2 Transport,03/20/2016 12:04:48 PM,LARKIN ST/GROVE ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160801269-52 +103320063,83,10106181,Medical Incident,11/28/2010,11/27/2010,11/28/2010 05:36:59 AM,11/28/2010 05:37:40 AM,11/28/2010 05:37:58 AM,04/25/2016 02:07:23 PM,11/28/2010 05:38:02 AM,11/28/2010 06:09:43 AM,11/28/2010 06:29:55 AM,Code 2 Transport,11/28/2010 06:38:48 AM,1300 Block of MISSION ST,SF,94103,B02,36,2336,2,2,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7757095884786, -122.41525748686)",103320063-83 +160193307,KM07,16007785,Medical Incident,01/19/2016,01/19/2016,01/19/2016 08:05:47 PM,01/19/2016 08:05:47 PM,01/19/2016 08:06:01 PM,01/19/2016 08:06:32 PM,01/19/2016 08:11:01 PM,01/19/2016 08:22:53 PM,01/19/2016 08:31:57 PM,Code 3 Transport,01/19/2016 09:30:08 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160193307-KM07 +113250092,89,11107857,Medical Incident,11/21/2011,11/21/2011,11/21/2011 09:23:16 AM,11/21/2011 09:24:16 AM,11/21/2011 09:24:27 AM,11/21/2011 09:24:39 AM,11/21/2011 09:37:24 AM,11/21/2011 10:05:37 AM,11/21/2011 10:12:54 AM,Code 2 Transport,11/21/2011 10:41:00 AM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,3,3,3,true,,1,MEDIC,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",113250092-89 +111310284,T08,11043376,Medical Incident,05/11/2011,05/11/2011,05/11/2011 05:44:56 PM,05/11/2011 05:48:05 PM,05/11/2011 05:48:44 PM,05/11/2011 05:51:07 PM,05/11/2011 05:52:59 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/11/2011 05:58:25 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111310284-T08 +160352366,66,16013874,Medical Incident,02/04/2016,02/04/2016,02/04/2016 03:22:54 PM,02/04/2016 03:23:14 PM,02/04/2016 03:24:02 PM,02/04/2016 03:24:12 PM,02/04/2016 03:42:44 PM,02/04/2016 03:57:28 PM,02/04/2016 04:23:28 PM,Code 2 Transport,02/04/2016 05:28:33 PM,0 Block of HAWTHORNE ST,San Francisco,94105,B03,1,2177,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7852440203445, -122.39863943141)",160352366-66 +120630143,B08,12020713,Alarms,03/03/2012,03/03/2012,03/03/2012 09:56:41 AM,03/03/2012 09:58:23 AM,03/03/2012 09:58:40 AM,03/03/2012 10:02:08 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 10:05:54 AM,0 Block of SPRINGFIELD DR,SF,94132,B08,19,8742,3,3,3,false,Alarm,1,CHIEF,2,8,7,Sunset/Parkside,"(37.7327647658373, -122.488007999144)",120630143-B08 +131690154,AM20,13057353,Citizen Assist / Service Call,06/18/2013,06/18/2013,06/18/2013 10:25:44 AM,06/18/2013 10:27:18 AM,06/18/2013 10:47:08 AM,06/18/2013 10:47:51 AM,06/18/2013 10:54:05 AM,06/18/2013 10:55:52 AM,06/18/2013 11:17:26 AM,Code 2 Transport,06/18/2013 11:45:13 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131690154-AM20 +160853391,70,16033928,Medical Incident,03/25/2016,03/25/2016,03/25/2016 07:45:42 PM,03/25/2016 07:45:42 PM,03/25/2016 07:47:28 PM,03/25/2016 07:47:40 PM,03/25/2016 07:52:17 PM,03/25/2016 08:06:15 PM,03/25/2016 08:15:22 PM,Code 2 Transport,03/25/2016 08:46:54 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784481757201, -122.417688009568)",160853391-70 +160420077,KM07,16016692,Medical Incident,02/11/2016,02/10/2016,02/11/2016 12:41:11 AM,02/11/2016 12:41:11 AM,02/11/2016 12:41:44 AM,02/11/2016 12:42:04 AM,02/11/2016 12:47:39 AM,02/11/2016 01:07:01 AM,02/11/2016 01:12:58 AM,Code 2 Transport,02/11/2016 01:37:45 AM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5259,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",160420077-KM07 +122750244,89,12090788,Medical Incident,10/01/2012,10/01/2012,10/01/2012 02:55:12 PM,10/01/2012 02:56:25 PM,10/01/2012 02:56:48 PM,10/01/2012 02:56:56 PM,10/01/2012 03:11:09 PM,10/01/2012 03:26:14 PM,10/01/2012 03:38:21 PM,Code 2 Transport,10/01/2012 03:43:55 PM,FILBERT ST/STOCKTON ST,SF,94133,B01,28,1265,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8013706557311, -122.409369119363)",122750244-89 +120420401,E28,12014224,Medical Incident,02/11/2012,02/11/2012,02/11/2012 10:44:08 PM,02/11/2012 10:45:11 PM,02/11/2012 10:45:50 PM,02/11/2012 10:47:17 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/11/2012 10:47:39 PM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,2,2,true,Non Life-threatening,1,ENGINE,2,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",120420401-E28 +132550101,82,13086119,Medical Incident,09/12/2013,09/12/2013,09/12/2013 09:42:55 AM,09/12/2013 09:43:57 AM,09/12/2013 09:44:16 AM,09/12/2013 09:46:39 AM,09/12/2013 09:55:44 AM,09/12/2013 10:19:06 AM,09/12/2013 10:41:01 AM,Code 2 Transport,09/12/2013 11:06:45 AM,500 Block of BATTERY ST,SF,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7963352483576, -122.400515223296)",132550101-82 +121390025,55,12046030,Medical Incident,05/18/2012,05/17/2012,05/18/2012 02:01:24 AM,05/18/2012 02:02:26 AM,05/18/2012 02:02:39 AM,05/18/2012 02:03:04 AM,05/18/2012 02:07:30 AM,05/18/2012 02:20:59 AM,05/18/2012 02:30:21 AM,Code 2 Transport,05/18/2012 03:01:58 AM,200 Block of 7TH ST,SF,94103,B03,1,2314,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7773228349255, -122.408663553867)",121390025-55 +103130081,T08,10100272,Alarms,11/09/2010,11/09/2010,11/09/2010 08:09:13 AM,11/09/2010 08:10:11 AM,11/09/2010 08:10:40 AM,11/09/2010 08:12:47 AM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/09/2010 08:13:18 AM,0 Block of MOSS ST,SF,94103,B03,1,2313,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7778360253922, -122.408013948834)",103130081-T08 +121440143,60,12047796,Medical Incident,05/23/2012,05/23/2012,05/23/2012 12:07:47 PM,05/23/2012 12:08:12 PM,05/23/2012 12:08:39 PM,05/23/2012 12:09:02 PM,05/23/2012 12:14:29 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Patient Declined Transport,05/23/2012 01:00:42 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",121440143-60 +110910313,E16,11030247,Alarms,04/01/2011,04/01/2011,04/01/2011 05:08:56 PM,04/01/2011 05:10:24 PM,04/01/2011 05:11:02 PM,04/25/2016 02:05:19 PM,04/01/2011 05:16:39 PM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,Other,04/01/2011 05:28:14 PM,2000 Block of GREENWICH ST,SF,94123,B04,16,3444,3,3,3,true,,1,ENGINE,3,4,2,Marina,"(37.7992109753413, -122.4333916159)",110910313-E16 +131500158,E16,13050795,Medical Incident,05/30/2013,05/30/2013,05/30/2013 12:54:58 PM,05/30/2013 12:55:51 PM,05/30/2013 12:55:57 PM,05/30/2013 12:56:54 PM,05/30/2013 12:58:43 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/30/2013 01:11:41 PM,400 Block of MARINA BLVD,SF,94123,B04,16,3664,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8060526415245, -122.441125158357)",131500158-E16 +122680105,AM06,12088473,Medical Incident,09/24/2012,09/24/2012,09/24/2012 09:03:43 AM,09/24/2012 09:05:41 AM,09/24/2012 09:06:37 AM,09/24/2012 09:07:08 AM,09/24/2012 09:11:17 AM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Unable to Locate,09/24/2012 09:16:31 AM,6TH ST/MISSION ST,SF,94103,B03,1,2251,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",122680105-AM06 +112300222,55,11075983,Medical Incident,08/18/2011,08/18/2011,08/18/2011 02:43:03 PM,08/18/2011 02:43:03 PM,08/18/2011 02:43:18 PM,08/18/2011 02:44:25 PM,08/18/2011 02:48:39 PM,08/18/2011 03:09:08 PM,08/18/2011 03:27:43 PM,Code 2 Transport,08/18/2011 04:07:27 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",112300222-55 +103410377,E08,10109279,Medical Incident,12/07/2010,12/07/2010,12/07/2010 09:32:14 PM,12/07/2010 09:32:47 PM,12/07/2010 09:33:21 PM,12/07/2010 09:34:37 PM,12/07/2010 09:36:22 PM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,Other,12/07/2010 10:09:40 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,E,E,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103410377-E08 +160091877,KM06,16003670,Medical Incident,01/09/2016,01/09/2016,01/09/2016 01:59:14 PM,01/09/2016 02:01:03 PM,01/09/2016 02:01:10 PM,01/09/2016 02:01:39 PM,01/09/2016 02:06:27 PM,01/09/2016 02:21:44 PM,01/09/2016 02:32:54 PM,Code 2 Transport,01/09/2016 03:01:49 PM,VALENCIA ST/MCCOPPIN ST,San Francisco,94103,B02,36,5115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.771595101522, -122.422526345115)",160091877-KM06 +112210371,E33,11073171,Medical Incident,08/09/2011,08/09/2011,08/09/2011 10:50:51 PM,08/09/2011 10:52:00 PM,08/09/2011 10:52:45 PM,08/09/2011 10:54:15 PM,08/09/2011 10:56:36 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 11:06:02 PM,0 Block of LIEBIG ST,SF,94112,B09,33,8357,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7089054042414, -122.456844244926)",112210371-E33 +113220118,RC1,11106899,Medical Incident,11/18/2011,11/18/2011,11/18/2011 09:53:00 AM,11/18/2011 09:53:40 AM,11/18/2011 09:54:01 AM,04/25/2016 02:01:35 PM,11/18/2011 09:58:40 AM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/18/2011 10:25:40 AM,1000 Block of FOLSOM ST,SF,94103,B03,1,2313,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7772505337639, -122.407105401515)",113220118-RC1 +140420389,89,14014454,Medical Incident,02/11/2014,02/11/2014,02/11/2014 10:52:30 PM,02/11/2014 10:52:51 PM,02/11/2014 10:53:13 PM,02/11/2014 10:53:21 PM,02/11/2014 11:00:28 PM,02/11/2014 11:15:11 PM,02/11/2014 11:23:50 PM,Code 2 Transport,02/11/2014 11:51:52 PM,23RD ST/MISSION ST,SF,94110,B06,7,5511,,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7538365885417, -122.418593946321)",140420389-89 +160720361,55,16028457,Medical Incident,03/12/2016,03/11/2016,03/12/2016 02:34:11 AM,03/12/2016 02:35:25 AM,03/12/2016 02:35:36 AM,03/12/2016 02:35:59 AM,03/12/2016 02:42:07 AM,03/12/2016 02:52:44 AM,03/12/2016 03:05:03 AM,Code 3 Transport,03/12/2016 03:53:45 AM,0 Block of CORTLAND AVE,San Francisco,94110,B06,32,5626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7404496865399, -122.421267489131)",160720361-55 +111940022,E14,11063916,Medical Incident,07/13/2011,07/12/2011,07/13/2011 01:40:48 AM,07/13/2011 01:41:05 AM,07/13/2011 01:41:26 AM,07/13/2011 01:43:12 AM,07/13/2011 01:45:12 AM,07/13/2011 02:07:02 AM,07/13/2011 02:22:29 AM,Other,07/13/2011 02:27:31 AM,600 Block of 28TH AVE,SF,94121,B07,14,7222,3,2,2,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7770909548072, -122.487668111689)",111940022-E14 +133330052,T01,13112849,Structure Fire,11/29/2013,11/28/2013,11/29/2013 05:01:53 AM,11/29/2013 05:02:34 AM,11/29/2013 05:02:59 AM,11/29/2013 05:05:34 AM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/29/2013 05:14:38 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Alarm,1,TRUCK,5,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",133330052-T01 +131850198,E08,13063070,Medical Incident,07/04/2013,07/04/2013,07/04/2013 01:52:30 PM,07/04/2013 01:53:03 PM,07/04/2013 01:56:08 PM,07/04/2013 01:56:13 PM,07/04/2013 01:58:07 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,No Merit,07/04/2013 02:07:12 PM,400 Block of LEAVENWORTH ST,SF,94109,B04,3,1544,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",131850198-E08 +131770179,AM02,13060079,Medical Incident,06/26/2013,06/26/2013,06/26/2013 11:58:07 AM,06/26/2013 11:59:42 AM,06/26/2013 12:00:53 PM,06/26/2013 12:02:01 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 12:09:07 PM,YERBA BUENA LN/MARKET ST,SF,94103,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7863286819182, -122.405013220269)",131770179-AM02 +160630618,85,16024964,Medical Incident,03/03/2016,03/02/2016,03/03/2016 07:19:11 AM,03/03/2016 07:21:22 AM,03/03/2016 07:21:35 AM,03/03/2016 07:21:52 AM,03/03/2016 07:42:26 AM,03/03/2016 07:48:32 AM,03/03/2016 08:34:03 AM,Code 2 Transport,03/03/2016 09:21:17 AM,900 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7137720840432, -122.433201119396)",160630618-85 +122110268,83,12070163,Medical Incident,07/29/2012,07/29/2012,07/29/2012 06:51:08 PM,07/29/2012 06:52:34 PM,07/29/2012 06:53:35 PM,07/29/2012 06:53:47 PM,07/29/2012 07:03:15 PM,07/29/2012 07:12:06 PM,07/29/2012 07:39:57 PM,Code 3 Transport,07/29/2012 08:17:34 PM,UNION ST/MASON ST,SF,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.8000323990065, -122.412471378823)",122110268-83 +110580207,E41,11019101,Medical Incident,02/27/2011,02/27/2011,02/27/2011 01:54:57 PM,02/27/2011 01:58:29 PM,02/27/2011 01:59:03 PM,02/27/2011 02:03:48 PM,02/27/2011 02:05:21 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,Other,02/27/2011 02:18:26 PM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,1,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",110580207-E41 +112140014,AM18,11070485,Medical Incident,08/02/2011,08/01/2011,08/02/2011 12:58:56 AM,08/02/2011 12:59:27 AM,08/02/2011 01:00:37 AM,08/02/2011 01:01:02 AM,08/02/2011 01:05:59 AM,08/02/2011 01:22:40 AM,08/02/2011 01:35:23 AM,Code 2 Transport,08/02/2011 02:37:08 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,false,,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",112140014-AM18 +112520403,B01,11083275,Alarms,09/09/2011,09/09/2011,09/09/2011 09:00:45 PM,09/09/2011 09:02:36 PM,09/09/2011 09:02:45 PM,09/09/2011 09:04:06 PM,09/09/2011 09:06:53 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Other,09/09/2011 09:12:15 PM,600 Block of SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",112520403-B01 +140810307,77,14027473,Medical Incident,03/22/2014,03/22/2014,03/22/2014 07:33:14 PM,03/22/2014 07:35:10 PM,03/22/2014 07:35:21 PM,03/22/2014 07:35:40 PM,04/25/2016 01:47:36 PM,03/22/2014 07:56:50 PM,03/22/2014 08:10:11 PM,Code 2 Transport,03/22/2014 08:39:43 PM,200 Block of MENDELL ST,SAN FRANCISCO,94124,B10,25,6464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7415509093402, -122.384053888031)",140810307-77 +130310069,E08,13010475,Medical Incident,01/31/2013,01/30/2013,01/31/2013 06:37:50 AM,01/31/2013 06:38:32 AM,01/31/2013 06:38:50 AM,01/31/2013 06:40:30 AM,01/31/2013 06:42:58 AM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 06:54:58 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130310069-E08 +103520195,E43,10112978,Medical Incident,12/18/2010,12/18/2010,12/18/2010 01:10:36 PM,12/18/2010 01:11:15 PM,12/18/2010 01:11:21 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,Other,04/25/2016 02:07:03 PM,100 Block of OTSEGO AVE,SF,94112,B09,15,8275,3,3,3,true,,1,ENGINE,4,9,11,Outer Mission,"(37.7253605704115, -122.44007723688)",103520195-E43 +132620081,E19,13088664,Medical Incident,09/19/2013,09/19/2013,09/19/2013 08:52:20 AM,09/19/2013 08:55:49 AM,09/19/2013 08:56:39 AM,09/19/2013 08:58:58 AM,09/19/2013 09:11:25 AM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 10:33:42 AM,500 Block of SKYLINE BLVD,SF,94132,B08,19,8772,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",132620081-E19 +133650328,82,13124065,Medical Incident,12/31/2013,12/31/2013,12/31/2013 07:57:18 PM,12/31/2013 07:58:47 PM,12/31/2013 07:59:23 PM,12/31/2013 07:59:31 PM,12/31/2013 08:05:58 PM,12/31/2013 08:25:00 PM,12/31/2013 08:28:14 PM,Code 2 Transport,12/31/2013 08:45:19 PM,2200 Block of 23RD ST,SF,94107,B10,37,2556,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7545961089907, -122.402078694131)",133650328-82 +111210398,99,11040133,Medical Incident,05/01/2011,05/01/2011,05/01/2011 09:17:58 PM,05/01/2011 09:20:36 PM,05/01/2011 09:22:32 PM,05/01/2011 09:23:10 PM,05/01/2011 09:30:02 PM,05/01/2011 09:36:09 PM,05/01/2011 09:47:10 PM,Code 2 Transport,05/01/2011 10:15:34 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,1,1,2,true,,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",111210398-99 +160010571,KM02,16000119,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:11:13 AM,01/01/2016 02:12:49 AM,01/01/2016 02:13:23 AM,01/01/2016 02:14:22 AM,01/01/2016 02:17:17 AM,01/01/2016 02:43:29 AM,01/01/2016 03:04:20 AM,Code 2 Transport,01/01/2016 03:29:46 AM,700 Block of 10TH AVE,San Francisco,94118,B07,31,7143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7742357906662, -122.4681602608)",160010571-KM02 +131150308,E06,13038894,Outside Fire,04/25/2013,04/25/2013,04/25/2013 08:59:01 PM,04/25/2013 09:02:17 PM,04/25/2013 09:02:32 PM,04/25/2013 09:02:49 PM,04/25/2013 09:04:14 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 09:05:34 PM,0 Block of CASTRO ST,SF,94114,B05,6,513,3,3,3,true,Fire,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",131150308-E06 +140710046,E01,14023855,Medical Incident,03/12/2014,03/11/2014,03/12/2014 04:22:44 AM,03/12/2014 04:24:23 AM,03/12/2014 04:27:08 AM,03/12/2014 04:29:58 AM,03/12/2014 04:33:27 AM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Code 2 Transport,03/12/2014 04:47:31 AM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",140710046-E01 +140860190,E13,14028954,Alarms,03/27/2014,03/27/2014,03/27/2014 02:04:31 PM,03/27/2014 02:05:23 PM,03/27/2014 02:06:25 PM,03/27/2014 02:07:27 PM,03/27/2014 02:12:06 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 02:23:22 PM,800 Block of MARKET ST,SAN FRANCISCO,94103,B03,1,2212,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",140860190-E13 +113650411,E22,11121453,Medical Incident,12/31/2011,12/31/2011,12/31/2011 11:37:06 PM,12/31/2011 11:38:00 PM,12/31/2011 11:38:22 PM,12/31/2011 11:39:54 PM,12/31/2011 11:43:03 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 11:47:28 PM,1600 Block of 11TH AVE,SF,94122,B08,22,7343,3,3,3,false,,1,ENGINE,1,8,7,Inner Sunset,"(37.7574215512605, -122.46792691091)",113650411-E22 +160402867,59,16016147,Medical Incident,02/09/2016,02/09/2016,02/09/2016 05:26:36 PM,02/09/2016 05:28:12 PM,02/09/2016 05:28:38 PM,02/09/2016 05:28:47 PM,02/09/2016 05:35:23 PM,02/09/2016 05:42:01 PM,02/09/2016 06:03:36 PM,Code 2 Transport,02/09/2016 06:29:55 PM,2400 Block of 33RD AVE,San Francisco,94116,B08,18,7546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7414530173202, -122.4906959863)",160402867-59 +132500445,79,13084620,Medical Incident,09/07/2013,09/07/2013,09/07/2013 10:07:01 PM,09/07/2013 10:08:11 PM,09/07/2013 10:08:36 PM,09/07/2013 10:09:14 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/07/2013 10:17:55 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",132500445-79 +160613450,KM03,16024491,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:37:50 PM,03/01/2016 09:39:19 PM,03/01/2016 09:48:34 PM,03/01/2016 09:49:09 PM,03/01/2016 09:54:08 PM,03/01/2016 09:58:04 PM,03/01/2016 10:04:14 PM,Code 2 Transport,03/01/2016 10:30:01 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160613450-KM03 +112840194,75,11094017,Medical Incident,10/11/2011,10/11/2011,10/11/2011 01:00:41 PM,10/11/2011 01:01:14 PM,10/11/2011 01:01:43 PM,10/11/2011 01:02:07 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Patient Declined Transport,10/11/2011 01:04:11 PM,SOUTHWOOD DR/MIRAMAR AV,SF,94112,B09,15,8474,3,2,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7250722342187, -122.45819375978)",112840194-75 +103500341,72,10112385,Medical Incident,12/16/2010,12/16/2010,12/16/2010 08:07:48 PM,12/16/2010 08:08:21 PM,12/16/2010 08:11:34 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,04/25/2016 02:07:05 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,2,2,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",103500341-72 +132360222,89,13079672,Traffic Collision,08/24/2013,08/24/2013,08/24/2013 05:13:29 PM,08/24/2013 05:14:21 PM,08/24/2013 05:14:48 PM,08/24/2013 05:14:53 PM,08/24/2013 05:19:16 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Against Medical Advice,08/24/2013 06:00:40 PM,TOWNSEND ST/LUSK ST,SF,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7779771315092, -122.393857288686)",132360222-89 +160624234,AM20,16024895,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:00:23 PM,03/02/2016 11:05:32 PM,03/02/2016 11:06:56 PM,03/02/2016 11:07:32 PM,03/02/2016 11:17:46 PM,03/02/2016 11:35:40 PM,03/03/2016 12:01:17 AM,Code 2 Transport,03/03/2016 12:30:48 AM,100 Block of CRESPI DR,San Francisco,94132,B08,19,8426,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7188273542437, -122.476730070107)",160624234-AM20 +120450081,E29,12014896,Electrical Hazard,02/14/2012,02/14/2012,02/14/2012 08:46:25 AM,02/14/2012 08:49:19 AM,02/14/2012 08:49:24 AM,02/14/2012 08:52:33 AM,02/14/2012 08:52:35 AM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 08:57:09 AM,16TH ST/BRYANT ST,SF,94110,B02,29,5241,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",120450081-E29 +160161927,87,16006443,Medical Incident,01/16/2016,01/16/2016,01/16/2016 02:03:10 PM,01/16/2016 02:04:46 PM,01/16/2016 02:09:11 PM,01/16/2016 02:09:22 PM,01/16/2016 02:24:35 PM,01/16/2016 02:41:04 PM,01/16/2016 03:09:37 PM,Code 2 Transport,01/16/2016 03:43:28 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",160161927-87 +120650322,60,12021605,Medical Incident,03/05/2012,03/05/2012,03/05/2012 06:31:19 PM,03/05/2012 06:31:48 PM,03/05/2012 06:32:03 PM,03/05/2012 06:32:31 PM,03/05/2012 06:37:46 PM,03/05/2012 07:01:02 PM,03/05/2012 07:22:10 PM,Code 2 Transport,03/05/2012 07:48:24 PM,100 Block of NEVADA ST,SF,94110,B10,32,5725,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7406199018401, -122.411367403815)",120650322-60 +121210331,T03,12040320,Structure Fire,04/30/2012,04/30/2012,04/30/2012 09:42:08 PM,04/30/2012 09:42:09 PM,04/30/2012 09:42:35 PM,04/30/2012 09:43:49 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 09:47:17 PM,0 Block of VAN NESS AVE,SF,94102,B02,36,3211,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7752607728259, -122.419431229777)",121210331-T03 +140180247,77,14006233,Medical Incident,01/18/2014,01/18/2014,01/18/2014 03:22:20 PM,01/18/2014 03:23:16 PM,01/18/2014 03:24:07 PM,01/18/2014 03:24:28 PM,01/18/2014 03:33:54 PM,01/18/2014 03:50:58 PM,01/18/2014 03:57:13 PM,Code 3 Transport,01/18/2014 04:26:01 PM,5TH ST/HOWARD ST,SF,94103,B03,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",140180247-77 +120960356,54,12031946,Medical Incident,04/05/2012,04/05/2012,04/05/2012 10:14:29 PM,04/05/2012 10:20:34 PM,04/05/2012 10:21:44 PM,04/05/2012 10:22:03 PM,04/05/2012 10:35:01 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Patient Declined Transport,04/05/2012 10:57:45 PM,2200 Block of GREAT HWY,SF,94116,B08,23,7727,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7444693274003, -122.507247609437)",120960356-54 +160781938,63,16031025,Medical Incident,03/18/2016,03/18/2016,03/18/2016 01:17:22 PM,03/18/2016 01:19:10 PM,03/18/2016 01:19:41 PM,03/18/2016 01:19:52 PM,03/18/2016 01:31:30 PM,03/18/2016 01:47:29 PM,03/18/2016 02:06:28 PM,Code 2 Transport,03/18/2016 02:43:50 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160781938-63 +140140227,E36,14004829,Medical Incident,01/14/2014,01/14/2014,01/14/2014 02:49:36 PM,01/14/2014 02:51:35 PM,01/14/2014 02:52:06 PM,01/14/2014 02:53:17 PM,01/14/2014 02:57:53 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/14/2014 03:04:47 PM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",140140227-E36 +110220153,B01,11007246,Alarms,01/22/2011,01/22/2011,01/22/2011 12:54:33 PM,01/22/2011 12:57:15 PM,01/22/2011 12:57:30 PM,01/22/2011 12:58:42 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,04/25/2016 02:06:28 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,false,,1,CHIEF,1,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",110220153-B01 +160380774,75,16015104,Medical Incident,02/07/2016,02/06/2016,02/07/2016 05:50:32 AM,02/07/2016 05:54:45 AM,02/07/2016 05:56:37 AM,02/07/2016 05:56:42 AM,02/07/2016 06:00:41 AM,02/07/2016 06:11:54 AM,02/07/2016 06:27:33 AM,Code 2 Transport,02/07/2016 07:05:52 AM,KEARNY ST/SUTTER ST,San Francisco,94108,B01,13,1242,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7898293371562, -122.403841564352)",160380774-75 +110430293,E15,11014354,Traffic Collision,02/12/2011,02/12/2011,02/12/2011 04:32:30 PM,02/12/2011 04:33:52 PM,02/12/2011 04:34:09 PM,04/25/2016 02:06:07 PM,02/12/2011 04:36:41 PM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 04:38:22 PM,OCEAN AV/FAXON AV,SF,94112,B09,15,8456,3,3,3,true,,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7247488498899, -122.460234460402)",110430293-E15 +131220030,93,13040886,Medical Incident,05/02/2013,05/01/2013,05/02/2013 01:44:38 AM,05/02/2013 01:45:37 AM,05/02/2013 01:52:23 AM,05/02/2013 01:52:43 AM,05/02/2013 01:55:37 AM,05/02/2013 02:10:21 AM,05/02/2013 02:38:43 AM,Code 2 Transport,05/02/2013 03:16:33 AM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",131220030-93 +113560168,E38,11118181,Structure Fire,12/22/2011,12/22/2011,12/22/2011 11:52:54 AM,12/22/2011 11:53:42 AM,12/22/2011 11:54:25 AM,12/22/2011 11:55:18 AM,12/22/2011 11:58:33 AM,12/23/2011 07:27:32 AM,12/23/2011 07:33:42 AM,Other,12/22/2011 03:23:24 PM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,true,,5,ENGINE,4,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",113560168-E38 +160163549,70,16006603,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:48:17 PM,01/16/2016 09:49:27 PM,01/16/2016 09:50:07 PM,01/16/2016 09:50:15 PM,01/16/2016 09:57:56 PM,01/16/2016 10:02:47 PM,01/16/2016 10:30:43 PM,Code 2 Transport,01/16/2016 11:05:40 PM,2600 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",160163549-70 +131950052,76,13066143,Medical Incident,07/14/2013,07/13/2013,07/14/2013 03:57:35 AM,07/14/2013 03:58:51 AM,07/14/2013 03:58:59 AM,07/14/2013 03:59:49 AM,07/14/2013 04:08:12 AM,07/14/2013 04:15:05 AM,07/14/2013 04:20:21 AM,Code 2 Transport,07/14/2013 04:29:53 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,2,2,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964729931252, -122.410712303092)",131950052-76 +160042260,54,16001653,Medical Incident,01/04/2016,01/04/2016,01/04/2016 03:15:42 PM,01/04/2016 03:16:31 PM,01/04/2016 03:17:30 PM,01/04/2016 03:18:13 PM,01/04/2016 03:21:41 PM,01/04/2016 03:41:30 PM,01/04/2016 03:41:36 PM,Code 2 Transport,01/04/2016 04:20:55 PM,2100 Block of WEBSTER ST,San Francisco,94115,B04,38,3466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7904907937316, -122.432404755801)",160042260-54 +133040355,E08,13103411,Alarms,10/31/2013,10/31/2013,10/31/2013 08:54:40 PM,10/31/2013 08:55:54 PM,10/31/2013 08:56:02 PM,10/31/2013 08:57:21 PM,10/31/2013 08:58:53 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,10/31/2013 09:20:58 PM,200 Block of BRANNAN ST,SF,94107,B03,8,2153,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7821111449736, -122.391644053588)",133040355-E08 +160550693,71,16021912,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:02:04 AM,02/24/2016 08:03:46 AM,02/24/2016 08:06:17 AM,02/24/2016 08:06:39 AM,02/24/2016 08:12:23 AM,02/24/2016 08:34:16 AM,02/24/2016 08:37:37 AM,Code 2 Transport,02/24/2016 09:22:15 AM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",160550693-71 +112970162,T13,11098489,Citizen Assist / Service Call,10/24/2011,10/24/2011,10/24/2011 11:07:18 AM,10/24/2011 11:07:30 AM,10/24/2011 11:07:42 AM,10/24/2011 11:10:11 AM,10/24/2011 11:16:16 AM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,No Merit,10/24/2011 11:16:29 AM,MISSION ST/BEALE ST,SF,94105,B03,35,2126,3,3,3,false,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7911528075814, -122.395813422768)",112970162-T13 +112370276,KM10,11078267,Medical Incident,08/25/2011,08/25/2011,08/25/2011 04:00:20 PM,08/25/2011 04:00:46 PM,08/25/2011 04:01:17 PM,08/25/2011 04:02:57 PM,08/25/2011 04:06:22 PM,08/25/2011 04:26:49 PM,08/25/2011 04:36:03 PM,Code 2 Transport,08/25/2011 04:46:26 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112370276-KM10 +133550154,AM06,13120634,Medical Incident,12/21/2013,12/21/2013,12/21/2013 10:40:37 AM,12/21/2013 10:41:47 AM,12/21/2013 10:42:24 AM,12/21/2013 10:43:05 AM,12/21/2013 10:51:35 AM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Patient Declined Transport,12/21/2013 11:21:53 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",133550154-AM06 +121320266,E14,12043986,Medical Incident,05/11/2012,05/11/2012,05/11/2012 04:30:38 PM,05/11/2012 04:32:46 PM,05/11/2012 04:33:43 PM,05/11/2012 04:34:54 PM,05/11/2012 04:36:06 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 04:59:38 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.78076369834, -122.491163848059)",121320266-E14 +160113472,70,16004567,Medical Incident,01/11/2016,01/11/2016,01/11/2016 10:01:38 PM,01/11/2016 10:01:38 PM,01/11/2016 10:01:46 PM,01/11/2016 10:01:57 PM,01/11/2016 10:04:54 PM,01/11/2016 10:36:57 PM,01/11/2016 10:51:17 PM,Code 2 Transport,01/11/2016 11:37:04 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160113472-70 +133600007,T11,13122200,Alarms,12/26/2013,12/25/2013,12/26/2013 12:19:29 AM,12/26/2013 12:22:15 AM,12/26/2013 12:22:28 AM,12/26/2013 12:24:54 AM,12/26/2013 12:27:06 AM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 12:39:23 AM,1000 Block of DIAMOND ST,SF,94114,B06,11,5545,3,3,3,false,Alarm,1,TRUCK,2,6,8,Noe Valley,"(37.7491581967167, -122.436171440121)",133600007-T11 +120140204,KM05,12004792,Medical Incident,01/14/2012,01/14/2012,01/14/2012 03:40:29 PM,01/14/2012 03:41:10 PM,01/14/2012 03:42:06 PM,01/14/2012 03:42:42 PM,01/14/2012 03:49:12 PM,01/14/2012 03:57:50 PM,01/14/2012 04:03:49 PM,Code 2 Transport,01/14/2012 04:52:22 PM,1200 Block of WILLARD ST,SF,94117,B05,12,5145,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7656904785056, -122.454566783502)",120140204-KM05 +160920834,AM06,16036368,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:38:05 AM,04/01/2016 08:38:05 AM,04/01/2016 08:38:58 AM,04/01/2016 08:42:13 AM,04/01/2016 08:43:15 AM,04/01/2016 08:51:30 AM,04/01/2016 09:09:15 AM,Code 2 Transport,04/01/2016 09:33:55 AM,300 Block of CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7829589368788, -122.462810653671)",160920834-AM06 +110390089,E13,11012855,Outside Fire,02/08/2011,02/08/2011,02/08/2011 08:45:26 AM,02/08/2011 08:46:08 AM,02/08/2011 08:46:32 AM,02/08/2011 08:47:33 AM,02/08/2011 08:50:16 AM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Fire,02/08/2011 08:54:41 AM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7895797011957, -122.402025244971)",110390089-E13 +130610355,55,13020606,Medical Incident,03/02/2013,03/02/2013,03/02/2013 10:52:35 PM,03/02/2013 10:55:23 PM,03/02/2013 10:55:47 PM,03/02/2013 10:56:47 PM,03/02/2013 11:17:08 PM,03/02/2013 11:43:10 PM,03/02/2013 11:52:53 PM,Code 2 Transport,03/03/2013 12:30:16 AM,1300 Block of WEBSTER ST,SF,94115,B04,5,3514,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",130610355-55 +131100283,E18,13037102,Confined Space / Structure Collapse,04/20/2013,04/20/2013,04/20/2013 05:17:56 PM,04/20/2013 05:18:53 PM,04/20/2013 05:19:13 PM,04/20/2013 05:20:25 PM,04/20/2013 05:23:30 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/20/2013 05:28:41 PM,2200 Block of 16TH AVE,SF,94116,B08,40,7375,3,3,3,true,Fire,1,ENGINE,4,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",131100283-E18 +113530091,E10,11117117,Alarms,12/19/2011,12/19/2011,12/19/2011 08:48:42 AM,12/19/2011 08:49:57 AM,12/19/2011 08:50:32 AM,12/19/2011 08:51:51 AM,12/19/2011 08:54:26 AM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 09:07:42 AM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",113530091-E10 +110410095,AM02,11013506,Medical Incident,02/10/2011,02/10/2011,02/10/2011 09:08:52 AM,02/10/2011 09:09:29 AM,02/10/2011 09:09:41 AM,02/10/2011 09:10:22 AM,02/10/2011 09:15:23 AM,02/10/2011 09:28:34 AM,02/10/2011 09:33:43 AM,Code 2 Transport,02/10/2011 10:14:12 AM,2300 Block of 15TH ST,SF,94114,B05,6,5232,2,2,2,false,,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.765621923455, -122.436286419227)",110410095-AM02 +160170830,77,16006747,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:39:42 AM,01/17/2016 08:40:16 AM,01/17/2016 08:40:58 AM,01/17/2016 08:41:08 AM,01/17/2016 08:47:45 AM,01/17/2016 08:59:58 AM,01/17/2016 09:09:12 AM,Code 2 Transport,01/17/2016 10:09:36 AM,400 Block of DAVIS CT,San Francisco,94111,B01,13,1132,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7967073395076, -122.398186156213)",160170830-77 +113120164,T07,11103629,Structure Fire,11/08/2011,11/08/2011,11/08/2011 12:14:52 PM,11/08/2011 12:14:52 PM,11/08/2011 12:15:39 PM,11/08/2011 12:15:52 PM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,Other,11/08/2011 12:19:48 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",113120164-T07 +122360070,AM06,12078105,Medical Incident,08/23/2012,08/23/2012,08/23/2012 08:50:50 AM,08/23/2012 08:51:36 AM,08/23/2012 08:51:56 AM,08/23/2012 08:52:29 AM,08/23/2012 08:58:05 AM,08/23/2012 09:04:26 AM,08/23/2012 09:30:27 AM,Code 2 Transport,08/23/2012 09:51:43 AM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",122360070-AM06 +160033037,72,16001366,Medical Incident,01/03/2016,01/03/2016,01/03/2016 09:09:48 PM,01/03/2016 09:12:15 PM,01/03/2016 09:12:35 PM,01/03/2016 09:12:42 PM,01/03/2016 09:32:00 PM,01/03/2016 10:08:16 PM,01/03/2016 10:25:23 PM,Code 2 Transport,01/03/2016 11:04:33 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160033037-72 +131800123,67,13061151,Medical Incident,06/29/2013,06/29/2013,06/29/2013 10:03:56 AM,06/29/2013 10:04:50 AM,06/29/2013 10:05:04 AM,06/29/2013 10:05:17 AM,06/29/2013 10:08:31 AM,06/29/2013 10:26:03 AM,06/29/2013 10:28:26 AM,Code 2 Transport,06/29/2013 10:59:42 AM,1700 Block of SUTTER ST,SF,94115,B04,38,3433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",131800123-67 +120660343,91,12021967,Medical Incident,03/06/2012,03/06/2012,03/06/2012 06:33:13 PM,03/06/2012 06:33:43 PM,03/06/2012 06:36:21 PM,03/06/2012 06:38:51 PM,03/06/2012 06:45:08 PM,03/06/2012 06:52:50 PM,03/06/2012 07:17:46 PM,Code 2 Transport,03/06/2012 08:08:09 PM,3600 Block of 18TH ST,SF,94110,B02,7,5422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7615831835858, -122.424418053226)",120660343-91 +112410030,RS2,11079401,Structure Fire,08/29/2011,08/28/2011,08/29/2011 02:31:44 AM,08/29/2011 02:31:44 AM,08/29/2011 02:31:58 AM,08/29/2011 02:33:28 AM,08/29/2011 02:35:20 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/29/2011 02:38:09 AM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,RESCUE SQUAD,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",112410030-RS2 +102650331,T05,10084016,Outside Fire,09/22/2010,09/22/2010,09/22/2010 10:21:57 PM,09/22/2010 10:21:57 PM,09/22/2010 10:21:57 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Fire,09/22/2010 10:29:11 PM,1500 Block of FILLMORE ST,SF,94115,B04,5,3541,3,3,3,false,,1,TRUCK,1,4,5,Western Addition,"(37.783815387293, -122.432878599409)",102650331-T05 +160261686,56,16010294,Medical Incident,01/26/2016,01/26/2016,01/26/2016 12:11:08 PM,01/26/2016 12:14:08 PM,01/26/2016 12:14:48 PM,01/26/2016 12:15:05 PM,01/26/2016 12:18:01 PM,01/26/2016 12:35:43 PM,01/26/2016 12:45:23 PM,Code 3 Transport,01/26/2016 01:35:38 PM,2500 Block of 17TH AVE,San Francisco,94116,B08,40,7411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7403538496203, -122.473288578352)",160261686-56 +131230097,AM04,13041361,Medical Incident,05/03/2013,05/03/2013,05/03/2013 08:07:12 AM,05/03/2013 08:11:22 AM,05/03/2013 08:11:40 AM,05/03/2013 08:13:02 AM,05/03/2013 08:26:26 AM,05/03/2013 08:30:16 AM,04/25/2016 01:53:00 PM,Code 2 Transport,05/03/2013 09:11:29 AM,12TH ST/MARKET ST,SF,94103,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7743586748127, -122.420254280324)",131230097-AM04 +160032965,61,16001354,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:40:12 PM,01/03/2016 08:40:12 PM,01/03/2016 08:40:45 PM,01/03/2016 08:40:52 PM,01/03/2016 08:46:47 PM,01/03/2016 09:16:37 PM,01/03/2016 09:29:17 PM,Code 2 Transport,01/03/2016 10:15:59 PM,1000 Block of GOETTINGEN ST,San Francisco,94134,B10,44,6313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Portola,"(37.7190814709175, -122.403254417719)",160032965-61 +133630053,T13,13123200,Alarms,12/29/2013,12/28/2013,12/29/2013 04:29:40 AM,12/29/2013 04:30:59 AM,12/29/2013 04:31:14 AM,12/29/2013 04:32:43 AM,12/29/2013 04:36:19 AM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/29/2013 04:51:15 AM,1100 Block of BATTERY ST,SF,94111,B01,13,1153,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.8018375690837, -122.401773002011)",133630053-T13 +160511776,82,16020491,Medical Incident,02/20/2016,02/20/2016,02/20/2016 02:04:25 PM,02/20/2016 02:05:22 PM,02/20/2016 02:07:40 PM,02/20/2016 02:07:50 PM,02/20/2016 02:14:27 PM,02/20/2016 02:37:15 PM,02/20/2016 03:01:32 PM,Code 2 Transport,02/20/2016 03:48:36 PM,4600 Block of 3RD ST,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7359613392217, -122.390148045197)",160511776-82 +112800110,E33,11092615,Alarms,10/07/2011,10/07/2011,10/07/2011 09:03:10 AM,10/07/2011 09:04:33 AM,10/07/2011 09:05:14 AM,10/07/2011 09:06:45 AM,10/07/2011 09:08:37 AM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 09:15:08 AM,100 Block of MAJESTIC AVE,SF,94112,B09,15,8317,B,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.716193796294, -122.452468823829)",112800110-E33 +110890393,76,11029579,Medical Incident,03/30/2011,03/30/2011,03/30/2011 10:14:50 PM,03/30/2011 10:15:27 PM,03/30/2011 10:15:55 PM,03/30/2011 10:16:19 PM,03/30/2011 10:22:41 PM,03/30/2011 10:51:44 PM,03/30/2011 10:56:06 PM,Code 3 Transport,03/30/2011 11:59:18 PM,1500 Block of 15TH AVE,SF,94122,B08,22,7351,E,3,3,true,,1,MEDIC,3,8,7,Inner Sunset,"(37.7586227526525, -122.471702948704)",110890393-76 +160261106,77,16010244,Medical Incident,01/26/2016,01/26/2016,01/26/2016 09:38:02 AM,01/26/2016 09:39:00 AM,01/26/2016 09:39:05 AM,01/26/2016 09:39:45 AM,01/26/2016 09:46:44 AM,01/26/2016 10:15:51 AM,01/26/2016 10:33:02 AM,Code 2 Transport,01/26/2016 11:20:10 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160261106-77 +103120182,E28,10100048,Medical Incident,11/08/2010,11/08/2010,11/08/2010 12:36:20 PM,11/08/2010 12:39:46 PM,11/08/2010 12:40:41 PM,11/08/2010 12:41:20 PM,11/08/2010 12:42:49 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 12:46:32 PM,200 Block of BAY ST,SF,94133,B01,28,1341,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.805980597443, -122.411141131856)",103120182-E28 +102280105,E13,10071717,Outside Fire,08/16/2010,08/16/2010,08/16/2010 10:03:25 AM,08/16/2010 10:06:33 AM,08/16/2010 10:07:03 AM,08/16/2010 10:07:13 AM,08/16/2010 10:09:24 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/16/2010 10:16:01 AM,MARKET ST/MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",102280105-E13 +133480415,78,13118315,Medical Incident,12/14/2013,12/14/2013,12/14/2013 11:12:54 PM,12/14/2013 11:15:39 PM,12/14/2013 11:16:02 PM,12/14/2013 11:16:11 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,04/25/2016 01:49:15 PM,22ND ST/BRYANT ST,SF,94110,B06,7,5474,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7559984420071, -122.409433069774)",133480415-78 +112400232,B09,11079240,Medical Incident,08/28/2011,08/28/2011,08/28/2011 04:05:44 PM,08/28/2011 04:06:33 PM,08/28/2011 04:06:59 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 04:10:09 PM,500 Block of SKYLINE BLVD,SF,94132,B08,19,8772,3,3,3,false,,1,CHIEF,9,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",112400232-B09 +160471427,87,16018893,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:23:00 AM,02/16/2016 11:23:59 AM,02/16/2016 11:24:14 AM,02/16/2016 11:24:46 AM,02/16/2016 11:39:29 AM,02/16/2016 12:02:37 PM,02/16/2016 12:06:02 PM,Code 2 Transport,02/16/2016 12:37:22 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160471427-87 +160320447,71,16012451,Medical Incident,02/01/2016,01/31/2016,02/01/2016 06:00:00 AM,02/01/2016 06:02:01 AM,02/01/2016 06:02:41 AM,02/01/2016 06:03:00 AM,02/01/2016 06:11:52 AM,02/01/2016 06:28:04 AM,02/01/2016 06:28:05 AM,Code 2 Transport,02/01/2016 07:13:26 AM,4400 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",160320447-71 +123560053,E17,12119031,Medical Incident,12/21/2012,12/20/2012,12/21/2012 04:17:03 AM,12/21/2012 04:18:07 AM,12/21/2012 04:18:30 AM,12/21/2012 04:21:08 AM,12/21/2012 04:22:48 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 04:30:15 AM,1500 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7293017723841, -122.390876776583)",123560053-E17 +121640047,81,12054292,Medical Incident,06/12/2012,06/11/2012,06/12/2012 06:38:14 AM,06/12/2012 06:41:02 AM,06/12/2012 06:41:33 AM,06/12/2012 06:41:48 AM,06/12/2012 06:53:30 AM,06/12/2012 07:12:16 AM,06/12/2012 07:25:36 AM,Code 2 Transport,06/12/2012 07:43:42 AM,800 Block of CAPP ST,SF,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.753099980747, -122.417500851184)",121640047-81 +160451395,KM08,16018094,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 11:39:57 AM,02/14/2016 11:39:57 AM,02/14/2016 11:40:41 AM,02/14/2016 11:41:21 AM,02/14/2016 11:48:54 AM,02/14/2016 12:18:08 PM,02/14/2016 12:32:08 PM,Code 2 Transport,02/14/2016 01:01:39 PM,7TH ST/BRANNAN ST,San Francisco,94103,B03,8,2311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7730511015721, -122.40320508207)",160451395-KM08 +122830173,E38,12093639,Structure Fire,10/09/2012,10/09/2012,10/09/2012 01:02:03 PM,10/09/2012 01:02:52 PM,10/09/2012 01:03:08 PM,10/09/2012 01:04:05 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 01:24:45 PM,3200 Block of SACRAMENTO ST,SF,94115,B04,10,4412,3,3,3,false,Alarm,1,ENGINE,9,4,2,Presidio Heights,"(37.7882208815731, -122.446270384367)",122830173-E38 +130900341,RS2,13030259,Structure Fire,03/31/2013,03/31/2013,03/31/2013 10:14:06 PM,03/31/2013 10:16:12 PM,03/31/2013 10:16:45 PM,03/31/2013 10:17:46 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 10:19:00 PM,3100 Block of BRODERICK ST,SF,94123,B04,16,4223,3,3,3,false,Alarm,1,RESCUE SQUAD,11,4,2,Marina,"(37.799286568083, -122.444348958408)",130900341-RS2 +110040362,E31,11001447,Medical Incident,01/04/2011,01/04/2011,01/04/2011 09:03:49 PM,01/04/2011 09:04:29 PM,01/04/2011 09:05:17 PM,01/04/2011 09:06:25 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/04/2011 09:08:18 PM,CLEMENT ST/6TH AV,SF,94118,B07,31,7125,3,3,3,false,,1,ENGINE,2,7,1,Inner Richmond,"(37.7829399330612, -122.464425023808)",110040362-E31 +160053523,55,16002175,Medical Incident,01/05/2016,01/05/2016,01/05/2016 09:24:51 PM,01/05/2016 09:28:42 PM,01/05/2016 09:29:21 PM,01/05/2016 09:29:29 PM,01/05/2016 09:40:19 PM,01/05/2016 10:22:03 PM,01/05/2016 10:33:44 PM,Code 2 Transport,01/05/2016 11:02:23 PM,800 Block of CORBETT AVE,San Francisco,94131,B06,24,5273,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Twin Peaks,"(37.753396813252, -122.443420334793)",160053523-55 +132640078,T01,13089422,Traffic Collision,09/21/2013,09/20/2013,09/21/2013 05:31:18 AM,09/21/2013 05:33:57 AM,09/21/2013 05:35:04 AM,09/21/2013 05:37:25 AM,09/21/2013 05:40:56 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Other,09/21/2013 05:41:17 AM,3RD ST/KEARNY ST,SF,94103,B01,1,1241,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",132640078-T01 +130180333,E08,13006261,Medical Incident,01/18/2013,01/18/2013,01/18/2013 06:17:47 PM,01/18/2013 06:20:37 PM,01/18/2013 06:23:04 PM,01/18/2013 06:25:06 PM,01/18/2013 06:28:05 PM,04/25/2016 01:54:44 PM,04/25/2016 01:54:44 PM,Other,01/18/2013 06:45:25 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",130180333-E08 +133480419,E26,13118319,Gas Leak (Natural and LP Gases),12/14/2013,12/14/2013,12/14/2013 11:33:12 PM,12/14/2013 11:34:18 PM,12/14/2013 11:34:25 PM,12/14/2013 11:35:39 PM,12/14/2013 11:41:12 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,No Merit,12/14/2013 11:44:21 PM,2300 Block of CASTRO ST,SF,94131,B06,26,5565,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.742895594432, -122.433422735149)",133480419-E26 +112880118,KM04,11095486,Medical Incident,10/15/2011,10/15/2011,10/15/2011 09:12:32 AM,10/15/2011 09:13:43 AM,10/15/2011 09:14:02 AM,10/15/2011 09:15:08 AM,10/15/2011 09:18:48 AM,10/15/2011 09:35:40 AM,10/15/2011 09:54:33 AM,Code 2 Transport,10/15/2011 10:24:29 AM,2300 Block of STOCKTON ST,SF,94133,B01,28,1262,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8074362035545, -122.410522944209)",112880118-KM04 +130720276,E11,13024073,Alarms,03/13/2013,03/13/2013,03/13/2013 04:36:56 PM,03/13/2013 04:38:20 PM,03/13/2013 04:38:26 PM,03/13/2013 04:39:55 PM,03/13/2013 04:41:05 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 04:46:20 PM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,Alarm,1,ENGINE,2,6,8,Mission,"(37.7497020110556, -122.420499334167)",130720276-E11 +133600154,E01,13122324,Medical Incident,12/26/2013,12/26/2013,12/26/2013 12:44:18 PM,12/26/2013 12:45:01 PM,12/26/2013 12:45:46 PM,12/26/2013 12:48:27 PM,12/26/2013 12:51:08 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 01:00:24 PM,800 Block of MISSION ST,SF,94103,B03,1,2213,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7842037411779, -122.404517022534)",133600154-E01 +160431498,61,16017271,Medical Incident,02/12/2016,02/12/2016,02/12/2016 11:56:47 AM,02/12/2016 11:57:30 AM,02/12/2016 12:06:31 PM,02/12/2016 12:07:11 PM,02/12/2016 12:11:51 PM,02/12/2016 12:26:56 PM,02/12/2016 12:35:37 PM,Code 2 Transport,02/12/2016 01:16:40 PM,ALAMEDA ST/SAN BRUNO AV,San Francisco,94103,B02,29,2355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7684733919631, -122.405827564891)",160431498-61 +131460351,E36,13049660,Medical Incident,05/26/2013,05/26/2013,05/26/2013 07:51:55 PM,05/26/2013 07:53:45 PM,05/26/2013 07:54:24 PM,04/25/2016 01:52:36 PM,05/26/2013 07:58:03 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,No Merit,05/26/2013 07:59:03 PM,600 Block of POLK ST,SF,94102,B02,3,3114,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",131460351-E36 +131030144,82,13034547,Medical Incident,04/13/2013,04/13/2013,04/13/2013 11:30:01 AM,04/13/2013 11:31:38 AM,04/13/2013 11:33:34 AM,04/13/2013 11:33:52 AM,04/13/2013 11:37:28 AM,04/13/2013 11:50:04 AM,04/13/2013 12:04:04 PM,Code 3 Transport,04/13/2013 12:32:50 PM,0 Block of GETZ ST,SF,94112,B09,15,8316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7196511650139, -122.452655533755)",131030144-82 +160213812,64,16008562,Medical Incident,01/21/2016,01/21/2016,01/21/2016 09:22:25 PM,01/21/2016 09:24:32 PM,01/21/2016 09:24:59 PM,01/21/2016 09:25:14 PM,01/21/2016 09:46:04 PM,01/21/2016 09:46:07 PM,01/21/2016 09:49:44 PM,Code 3 Transport,01/21/2016 10:31:33 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160213812-64 +140340090,E18,14011423,Medical Incident,02/03/2014,02/03/2014,02/03/2014 09:10:12 AM,02/03/2014 09:12:02 AM,02/03/2014 09:12:17 AM,02/03/2014 09:14:40 AM,02/03/2014 09:17:38 AM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 09:50:08 AM,2500 Block of 43RD AVE,SF,94116,B08,18,7643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7391172735262, -122.501276104969)",140340090-E18 +121200322,E02,12039961,Medical Incident,04/29/2012,04/29/2012,04/29/2012 07:53:20 PM,04/29/2012 07:54:17 PM,04/29/2012 07:54:29 PM,04/29/2012 07:55:49 PM,04/29/2012 07:57:29 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 08:08:17 PM,900 Block of STOCKTON ST,SF,94108,B01,2,1331,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7944918953607, -122.408059565419)",121200322-E02 +140450021,B01,14015185,Alarms,02/14/2014,02/13/2014,02/14/2014 01:32:52 AM,02/14/2014 01:33:57 AM,02/14/2014 01:34:07 AM,02/14/2014 01:36:09 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 01:43:45 AM,1500 Block of GRANT AVE,SF,94133,B01,28,1265,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8012484334227, -122.407775929611)",140450021-B01 +160101522,62,16004039,Medical Incident,01/10/2016,01/10/2016,01/10/2016 12:39:55 PM,01/10/2016 12:41:09 PM,01/10/2016 12:41:49 PM,01/10/2016 12:42:15 PM,01/10/2016 12:46:54 PM,01/10/2016 01:01:39 PM,01/10/2016 01:20:53 PM,Code 2 Transport,01/10/2016 01:58:30 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160101522-62 +160443360,71,16017857,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:41:46 PM,02/13/2016 08:41:46 PM,02/13/2016 08:48:21 PM,02/13/2016 08:48:28 PM,02/13/2016 08:52:55 PM,02/13/2016 08:58:06 PM,02/13/2016 09:04:31 PM,Code 3 Transport,02/13/2016 09:53:46 PM,KIRKWOOD AV/MENDELL ST,San Francisco,94124,B10,25,6467,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7371063767658, -122.388090826716)",160443360-71 +111860305,85,11061565,Medical Incident,07/05/2011,07/05/2011,07/05/2011 04:49:24 PM,07/05/2011 04:50:00 PM,07/05/2011 04:50:44 PM,07/05/2011 05:40:36 PM,07/05/2011 05:51:18 PM,07/05/2011 06:08:37 PM,07/05/2011 06:44:00 PM,Code 2 Transport,07/05/2011 07:20:29 PM,300 Block of BALTIMORE WAY,SF,94112,B09,43,6228,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7087981055096, -122.437985362628)",111860305-85 +160202460,AM12,16008065,Traffic Collision,01/20/2016,01/20/2016,01/20/2016 03:43:18 PM,01/20/2016 03:43:50 PM,01/20/2016 03:44:11 PM,01/20/2016 03:45:20 PM,01/20/2016 03:49:39 PM,01/20/2016 03:56:22 PM,01/20/2016 04:21:46 PM,Code 2 Transport,01/20/2016 05:05:34 PM,3400 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8375,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,9,7,Oceanview/Merced/Ingleside,"(37.7111805030976, -122.463037208217)",160202460-AM12 +132110243,KM06,13071423,Medical Incident,07/30/2013,07/30/2013,07/30/2013 06:07:00 PM,07/30/2013 06:07:50 PM,07/30/2013 06:08:47 PM,07/30/2013 06:10:37 PM,07/30/2013 06:17:38 PM,07/30/2013 06:28:12 PM,07/30/2013 06:42:17 PM,Code 2 Transport,07/30/2013 07:16:43 PM,2300 Block of 20TH AVE,SF,94116,B08,40,7416,3,3,3,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7439329817378, -122.476899160931)",132110243-KM06 +133120241,82,13106071,Medical Incident,11/08/2013,11/08/2013,11/08/2013 02:57:30 PM,11/08/2013 02:58:45 PM,11/08/2013 02:59:09 PM,11/08/2013 02:59:47 PM,11/08/2013 03:07:21 PM,11/08/2013 03:17:01 PM,11/08/2013 03:34:10 PM,Code 2 Transport,11/08/2013 03:58:48 PM,200 Block of COLE ST,SF,94117,B05,21,4534,3,1,2,true,Non Life-threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7728331542136, -122.450948593554)",133120241-82 +160723094,62,16028758,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:16:48 PM,03/12/2016 08:18:23 PM,03/12/2016 08:39:02 PM,03/12/2016 08:39:44 PM,03/12/2016 08:50:57 PM,03/12/2016 08:59:55 PM,03/12/2016 09:19:10 PM,Code 2 Transport,03/12/2016 09:40:54 PM,200 Block of ASHTON AVE,San Francisco,94112,B09,15,8434,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7224246331182, -122.462198993823)",160723094-62 +160453153,55,16018288,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:49:08 PM,02/14/2016 08:49:08 PM,02/14/2016 09:08:22 PM,02/14/2016 09:08:22 PM,02/14/2016 09:08:22 PM,02/14/2016 09:17:03 PM,02/14/2016 09:21:36 PM,Code 2 Transport,02/14/2016 10:05:08 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160453153-55 +130920145,AM02,13030768,Medical Incident,04/02/2013,04/02/2013,04/02/2013 11:03:57 AM,04/02/2013 11:04:34 AM,04/02/2013 11:04:46 AM,04/02/2013 11:05:54 AM,04/02/2013 11:20:46 AM,04/02/2013 11:26:29 AM,04/02/2013 11:48:59 AM,Code 2 Transport,04/02/2013 12:13:04 PM,700 Block of BUSH ST,SF,94108,B01,2,1361,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",130920145-AM02 +131400353,E17,13047545,Medical Incident,05/20/2013,05/20/2013,05/20/2013 06:17:17 PM,05/20/2013 06:17:34 PM,05/20/2013 06:17:58 PM,05/20/2013 06:19:07 PM,05/20/2013 06:21:33 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/20/2013 06:54:00 PM,4600 Block of 3RD ST,SF,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7359613392217, -122.390148045197)",131400353-E17 +132040151,E36,13069066,Medical Incident,07/23/2013,07/23/2013,07/23/2013 11:33:31 AM,07/23/2013 11:35:17 AM,07/23/2013 11:36:07 AM,04/25/2016 01:51:40 PM,07/23/2013 11:43:13 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 11:47:22 AM,700 Block of GOLDEN GATE AVE,SF,94102,B02,5,326,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",132040151-E36 +123010174,E03,12099783,Outside Fire,10/27/2012,10/27/2012,10/27/2012 12:21:05 PM,10/27/2012 12:22:15 PM,10/27/2012 12:22:35 PM,10/27/2012 12:23:28 PM,10/27/2012 12:28:25 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:29:36 PM,600 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,true,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",123010174-E03 +123050446,E07,12101411,Medical Incident,10/31/2012,10/31/2012,10/31/2012 07:44:07 PM,10/31/2012 07:46:06 PM,10/31/2012 07:46:51 PM,10/31/2012 07:47:56 PM,10/31/2012 07:50:34 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 08:08:17 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",123050446-E07 +133440422,E12,13116864,Alarms,12/10/2013,12/10/2013,12/10/2013 11:54:29 PM,12/10/2013 11:56:03 PM,12/10/2013 11:56:23 PM,12/10/2013 11:57:57 PM,12/10/2013 11:59:23 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/11/2013 12:13:14 AM,1200 Block of ARGUELLO BLVD,SF,94122,B05,12,7321,3,3,3,true,Alarm,1,ENGINE,1,5,5,Inner Sunset,"(37.7656812762554, -122.457848242832)",133440422-E12 +160380380,AM10,16015054,Medical Incident,02/07/2016,02/06/2016,02/07/2016 02:10:30 AM,02/07/2016 02:13:01 AM,02/07/2016 02:13:21 AM,02/07/2016 02:14:54 AM,02/07/2016 02:24:23 AM,02/07/2016 02:29:56 AM,02/07/2016 02:39:09 AM,Code 2 Transport,02/07/2016 02:58:09 AM,1200 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1525,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8056147061622, -122.417757636198)",160380380-AM10 +113360352,T01,11111366,Alarms,12/02/2011,12/02/2011,12/02/2011 05:21:30 PM,12/02/2011 05:22:42 PM,12/02/2011 05:22:58 PM,04/25/2016 02:01:21 PM,12/02/2011 05:26:52 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 05:31:07 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",113360352-T01 +122250185,E14,12074630,Alarms,08/12/2012,08/12/2012,08/12/2012 02:17:42 PM,08/12/2012 02:18:24 PM,08/12/2012 02:18:35 PM,08/12/2012 02:19:40 PM,08/12/2012 02:20:16 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 02:28:28 PM,400 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7849036811274, -122.416234049056)",122250185-E14 +131590092,E12,13053947,Medical Incident,06/08/2013,06/08/2013,06/08/2013 07:58:25 AM,06/08/2013 08:01:04 AM,06/08/2013 08:01:30 AM,06/08/2013 08:03:21 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 08:06:35 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",131590092-E12 +111490295,E21,11049508,Medical Incident,05/29/2011,05/29/2011,05/29/2011 09:23:55 PM,05/29/2011 09:26:38 PM,05/29/2011 09:27:00 PM,05/29/2011 09:27:54 PM,05/29/2011 09:27:57 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/29/2011 09:36:26 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",111490295-E21 +160741308,61,16029296,Medical Incident,03/14/2016,03/14/2016,03/14/2016 10:50:23 AM,03/14/2016 10:51:30 AM,03/14/2016 10:52:56 AM,03/14/2016 10:53:26 AM,03/14/2016 10:59:34 AM,03/14/2016 11:08:55 AM,03/14/2016 11:30:08 AM,Code 2 Transport,03/14/2016 12:14:58 PM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160741308-61 +160061460,54,16002372,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:35:47 AM,01/06/2016 11:36:43 AM,01/06/2016 11:37:33 AM,01/06/2016 11:38:02 AM,01/06/2016 11:38:41 AM,01/06/2016 11:44:22 AM,01/06/2016 11:52:53 AM,Code 2 Transport,01/06/2016 12:28:23 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7649874026625, -122.421639212531)",160061460-54 +160093069,85,16003766,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:28:17 PM,01/09/2016 07:31:57 PM,01/09/2016 07:32:37 PM,01/09/2016 07:32:48 PM,01/09/2016 07:43:37 PM,01/09/2016 08:05:27 PM,01/09/2016 08:23:57 PM,Code 2 Transport,01/09/2016 09:09:57 PM,0 Block of POPE ST,San Francisco,94112,B09,43,6176,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7150417603203, -122.441705850451)",160093069-85 +113610202,E05,11119964,Medical Incident,12/27/2011,12/27/2011,12/27/2011 02:52:35 PM,12/27/2011 02:53:30 PM,12/27/2011 02:54:03 PM,12/27/2011 02:54:59 PM,12/27/2011 02:56:22 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 03:08:20 PM,1700 Block of POST ST,SF,94115,B04,5,3513,3,2,2,true,,1,ENGINE,1,4,5,Japantown,"(37.7854139465586, -122.430564088684)",113610202-E05 +160591418,AM12,16023498,Medical Incident,02/28/2016,02/28/2016,02/28/2016 12:00:38 PM,02/28/2016 12:00:38 PM,02/28/2016 12:01:12 PM,02/28/2016 12:01:36 PM,02/28/2016 12:11:46 PM,02/28/2016 12:22:20 PM,02/28/2016 12:28:36 PM,Code 2 Transport,02/28/2016 01:01:37 PM,10TH AV/CABRILLO ST,San Francisco,94118,B07,31,7134,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7751740093503, -122.468158436382)",160591418-AM12 +160840619,AM02,16033270,Medical Incident,03/24/2016,03/23/2016,03/24/2016 07:29:18 AM,03/24/2016 07:31:17 AM,03/24/2016 07:31:31 AM,03/24/2016 07:32:38 AM,03/24/2016 07:43:54 AM,03/24/2016 08:07:45 AM,03/24/2016 08:21:45 AM,Code 2 Transport,03/24/2016 09:07:01 AM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7756362224799, -122.49784817494)",160840619-AM02 +132610353,B09,13088514,Alarms,09/18/2013,09/18/2013,09/18/2013 06:47:31 PM,09/18/2013 06:49:01 PM,09/18/2013 06:49:44 PM,09/18/2013 06:51:13 PM,09/18/2013 06:56:49 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 07:16:20 PM,3900 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,3,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",132610353-B09 +133640342,E15,13123741,Structure Fire,12/30/2013,12/30/2013,12/30/2013 08:09:41 PM,12/30/2013 08:10:24 PM,12/30/2013 08:10:41 PM,12/30/2013 08:12:47 PM,12/30/2013 08:52:36 PM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,Other,12/30/2013 08:54:47 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,true,Fire,1,ENGINE,12,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",133640342-E15 +112500213,E02,11082487,Medical Incident,09/07/2011,09/07/2011,09/07/2011 02:19:58 PM,09/07/2011 02:20:56 PM,09/07/2011 02:21:46 PM,09/07/2011 02:23:22 PM,09/07/2011 02:25:01 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 02:30:17 PM,900 Block of STOCKTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",112500213-E02 +113030059,E51,11100449,Medical Incident,10/30/2011,10/29/2011,10/30/2011 01:47:30 AM,10/30/2011 01:48:08 AM,10/30/2011 01:49:01 AM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 02:01:39 AM,ALHAMBRA ST/AVILA ST,SF,94123,B04,16,4114,3,3,3,false,,1,ENGINE,2,4,2,Marina,"(37.8012813200849, -122.440508601156)",113030059-E51 +133420088,E02,13115885,Structure Fire,12/08/2013,12/07/2013,12/08/2013 06:45:15 AM,12/08/2013 06:45:41 AM,12/08/2013 06:46:06 AM,12/08/2013 06:47:45 AM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 06:58:38 AM,1300 Block of HYDE ST,SF,94109,B01,41,1564,3,3,3,true,Alarm,1,ENGINE,9,1,3,Russian Hill,"(37.793235074749, -122.417915793747)",133420088-E02 +112290321,T08,11075787,Alarms,08/17/2011,08/17/2011,08/17/2011 09:56:42 PM,08/17/2011 09:58:07 PM,08/17/2011 09:58:54 PM,08/17/2011 10:00:05 PM,08/17/2011 10:02:08 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 10:10:39 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,false,,1,TRUCK,3,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",112290321-T08 +160263250,79,16010434,Medical Incident,01/26/2016,01/26/2016,01/26/2016 07:16:00 PM,01/26/2016 07:17:54 PM,01/26/2016 07:18:37 PM,01/26/2016 07:19:03 PM,01/26/2016 07:24:43 PM,01/26/2016 07:41:59 PM,01/26/2016 08:00:03 PM,Code 2 Transport,01/26/2016 08:38:09 PM,1700 Block of DIAMOND ST,San Francisco,94131,B06,26,5557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7435786028451, -122.435650218165)",160263250-79 +160423006,66,16016976,Medical Incident,02/11/2016,02/11/2016,02/11/2016 06:06:31 PM,02/11/2016 06:06:31 PM,02/11/2016 06:06:31 PM,02/11/2016 06:06:31 PM,02/11/2016 06:06:31 PM,02/11/2016 06:13:06 PM,02/11/2016 06:15:24 PM,Code 2 Transport,02/11/2016 07:21:22 PM,22ND ST/POTRERO AV,San Francisco,94110,B99,7,5474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",160423006-66 +160773363,66,16030745,Medical Incident,03/17/2016,03/17/2016,03/17/2016 06:38:17 PM,03/17/2016 06:38:17 PM,03/17/2016 06:45:50 PM,03/17/2016 06:46:13 PM,03/17/2016 07:13:39 PM,03/17/2016 07:35:55 PM,03/17/2016 08:02:54 PM,Code 2 Transport,03/17/2016 09:11:44 PM,GOLDEN GATE AV/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",160773363-66 +160273193,76,16010820,Medical Incident,01/27/2016,01/27/2016,01/27/2016 06:48:01 PM,01/27/2016 06:49:37 PM,01/27/2016 06:50:47 PM,01/27/2016 06:50:53 PM,01/27/2016 06:53:09 PM,01/27/2016 06:59:54 PM,01/27/2016 07:17:33 PM,Code 2 Transport,01/27/2016 08:04:58 PM,CYRIL MAGNIN ST/ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7853882479724, -122.408667084184)",160273193-76 +133030048,94,13102834,Medical Incident,10/30/2013,10/29/2013,10/30/2013 06:39:38 AM,10/30/2013 06:40:58 AM,10/30/2013 06:41:10 AM,10/30/2013 06:41:19 AM,10/30/2013 06:48:06 AM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Patient Declined Transport,10/30/2013 07:26:22 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",133030048-94 +121410092,RS1,12046770,Medical Incident,05/20/2012,05/19/2012,05/20/2012 07:46:14 AM,05/20/2012 07:47:42 AM,05/20/2012 07:48:27 AM,05/20/2012 07:51:12 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 07:53:01 AM,0 Block of MOSS ST,SF,94103,B03,1,2313,3,1,2,false,Non Life-threatening,1,RESCUE SQUAD,4,3,6,South of Market,"(37.7778360253922, -122.408013948834)",121410092-RS1 +111350121,BIKE3,11044853,,05/15/2011,05/15/2011,05/15/2011 09:15:31 AM,05/15/2011 09:15:47 AM,05/15/2011 09:16:30 AM,05/15/2011 09:20:20 AM,05/15/2011 09:31:55 AM,04/25/2016 02:04:37 PM,04/25/2016 02:04:37 PM,Patient Declined Transport,05/15/2011 10:05:17 AM,MAIN ST/FOLSOM ST,SF,94105,B03,35,2117,3,3,3,false,,1,ADMIN,0,3,6,Financial District/South Beach,"(37.7893692677435, -122.391858291445)",111350121-BIKE3 +160370158,83,16014511,Medical Incident,02/06/2016,02/05/2016,02/06/2016 12:43:12 AM,02/06/2016 12:43:12 AM,02/06/2016 12:43:37 AM,02/06/2016 12:43:45 AM,02/06/2016 12:55:51 AM,02/06/2016 01:16:14 AM,02/06/2016 01:53:03 AM,Code 2 Transport,02/06/2016 02:21:06 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160370158-83 +110330278,KM11,11010893,Medical Incident,02/02/2011,02/02/2011,02/02/2011 04:20:48 PM,02/02/2011 04:23:19 PM,02/02/2011 04:24:23 PM,02/02/2011 04:25:22 PM,02/02/2011 04:28:28 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 04:30:03 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",110330278-KM11 +113360474,E03,11111476,Alarms,12/02/2011,12/02/2011,12/02/2011 10:41:32 PM,12/02/2011 10:44:36 PM,12/02/2011 10:44:53 PM,04/25/2016 02:01:21 PM,12/02/2011 10:47:52 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 10:53:35 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",113360474-E03 +112180362,92,11072221,Medical Incident,08/06/2011,08/06/2011,08/06/2011 10:11:52 PM,08/06/2011 10:12:12 PM,08/06/2011 10:15:13 PM,08/06/2011 10:15:33 PM,08/06/2011 10:26:40 PM,08/06/2011 10:38:16 PM,08/06/2011 10:52:40 PM,Code 2 Transport,08/06/2011 11:15:12 PM,1700 Block of GENEVA AVE,SF,94134,B09,43,6245,2,2,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7118331290822, -122.427989009711)",112180362-92 +130390013,KM07,13013162,Medical Incident,02/08/2013,02/07/2013,02/08/2013 12:46:38 AM,02/08/2013 12:50:19 AM,02/08/2013 12:51:06 AM,02/08/2013 12:51:51 AM,02/08/2013 01:02:17 AM,02/08/2013 01:26:06 AM,02/08/2013 01:34:48 AM,Code 2 Transport,02/08/2013 02:10:15 AM,1100 Block of DIAMOND ST,SF,94114,B06,11,5545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7483583081639, -122.43609745796)",130390013-KM07 +111110270,E14,11036730,Medical Incident,04/21/2011,04/21/2011,04/21/2011 04:53:48 PM,04/21/2011 04:55:47 PM,04/21/2011 04:57:22 PM,04/21/2011 04:58:54 PM,04/21/2011 05:00:35 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/21/2011 05:16:10 PM,500 Block of 22ND AVE,SF,94121,B07,14,7176,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7773832279544, -122.481244651778)",111110270-E14 +121030175,T11,12034110,Alarms,04/12/2012,04/12/2012,04/12/2012 12:28:01 PM,04/12/2012 12:29:01 PM,04/12/2012 12:29:33 PM,04/12/2012 12:31:24 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 12:43:51 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",121030175-T11 +140070081,RC3,14002411,Medical Incident,01/07/2014,01/06/2014,01/07/2014 07:55:54 AM,01/07/2014 07:57:28 AM,01/07/2014 07:58:37 AM,01/07/2014 08:00:28 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 08:03:33 AM,500 Block of VERMONT ST,SF,94107,B10,29,2512,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,10,Potrero Hill,"(37.7627433423105, -122.404384264447)",140070081-RC3 +102740334,AM10,10087133,Medical Incident,10/01/2010,10/01/2010,10/01/2010 08:00:28 PM,10/01/2010 08:03:36 PM,10/01/2010 08:04:15 PM,10/01/2010 08:05:23 PM,10/01/2010 08:10:28 PM,10/01/2010 08:36:34 PM,10/01/2010 08:41:37 PM,Code 3 Transport,10/01/2010 09:19:14 PM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8053652773346, -122.407548697025)",102740334-AM10 +160062371,AM14,16002469,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:44:07 PM,01/06/2016 03:44:07 PM,01/06/2016 03:44:49 PM,01/06/2016 03:51:58 PM,01/06/2016 03:55:17 PM,01/06/2016 04:12:23 PM,01/06/2016 04:23:38 PM,Code 2 Transport,01/06/2016 04:58:44 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160062371-AM14 +160271899,89,16010682,Medical Incident,01/27/2016,01/27/2016,01/27/2016 01:21:29 PM,01/27/2016 01:24:36 PM,01/27/2016 01:24:56 PM,01/27/2016 01:25:10 PM,01/27/2016 01:34:24 PM,01/27/2016 01:52:43 PM,01/27/2016 02:15:58 PM,Code 2 Transport,01/27/2016 02:54:48 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160271899-89 +160232407,87,16009222,Medical Incident,01/23/2016,01/23/2016,01/23/2016 04:30:34 PM,01/23/2016 04:32:50 PM,01/23/2016 04:34:11 PM,01/23/2016 04:35:33 PM,01/23/2016 04:56:06 PM,01/23/2016 05:33:02 PM,01/23/2016 05:56:16 PM,Code 2 Transport,01/23/2016 06:19:18 PM,2700 Block of FILBERT ST,San Francisco,94123,B04,16,4224,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.7968094788109, -122.444763056233)",160232407-87 +160011733,AM08,16000305,Medical Incident,01/01/2016,01/01/2016,01/01/2016 11:20:20 AM,01/01/2016 11:22:11 AM,01/01/2016 11:22:47 AM,01/01/2016 11:23:28 AM,01/01/2016 11:30:07 AM,01/01/2016 11:33:38 AM,01/01/2016 11:51:01 AM,Code 2 Transport,01/01/2016 12:10:47 PM,1600 Block of KEITH ST,San Francisco,94124,B10,17,6551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7309508792927, -122.388067096627)",160011733-AM08 +140090182,E07,14003128,Medical Incident,01/09/2014,01/09/2014,01/09/2014 11:52:05 AM,01/09/2014 11:52:34 AM,01/09/2014 11:53:31 AM,01/09/2014 11:54:40 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 11:56:50 AM,1000 Block of VALENCIA ST,SF,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7556941430248, -122.421071601169)",140090182-E07 +160153168,58,16006115,Traffic Collision,01/15/2016,01/15/2016,01/15/2016 06:35:57 PM,01/15/2016 06:36:29 PM,01/15/2016 06:37:07 PM,01/15/2016 06:37:14 PM,01/15/2016 06:40:18 PM,01/15/2016 06:58:48 PM,01/15/2016 07:16:22 PM,Code 3 Transport,01/15/2016 08:10:52 PM,3RD AV/CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7830874411642, -122.461207474578)",160153168-58 +133250147,AM08,13110353,Medical Incident,11/21/2013,11/21/2013,11/21/2013 11:25:38 AM,11/21/2013 11:26:19 AM,11/21/2013 11:26:57 AM,11/21/2013 11:27:15 AM,11/21/2013 11:29:53 AM,11/21/2013 11:47:17 AM,11/21/2013 11:55:43 AM,Code 2 Transport,11/21/2013 12:39:11 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",133250147-AM08 +132070012,78,13069930,Medical Incident,07/26/2013,07/25/2013,07/26/2013 01:04:52 AM,07/26/2013 01:08:52 AM,07/26/2013 01:09:11 AM,07/26/2013 01:10:09 AM,07/26/2013 01:18:25 AM,07/26/2013 01:47:50 AM,07/26/2013 01:51:49 AM,Code 2 Transport,07/26/2013 02:14:53 AM,1400 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",132070012-78 +160350202,58,16013649,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:37:48 AM,02/04/2016 01:37:48 AM,02/04/2016 01:38:50 AM,02/04/2016 01:38:57 AM,02/04/2016 01:42:19 AM,02/04/2016 01:50:51 AM,02/04/2016 02:02:36 AM,Code 2 Transport,02/04/2016 02:28:28 AM,BROADWAY/GRANT AV,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",160350202-58 +103550150,E05,10113929,Medical Incident,12/21/2010,12/21/2010,12/21/2010 11:47:12 AM,12/21/2010 11:48:41 AM,12/21/2010 11:49:17 AM,12/21/2010 11:49:55 AM,12/21/2010 11:51:35 AM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 12:05:52 PM,1100 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",103550150-E05 +102820223,T10,10089711,Structure Fire,10/09/2010,10/09/2010,10/09/2010 01:27:33 PM,10/09/2010 01:29:03 PM,10/09/2010 01:29:21 PM,10/09/2010 01:30:20 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 01:34:36 PM,500 Block of 11TH AVE,SF,94118,B07,31,7142,3,3,3,false,,1,TRUCK,9,7,1,Inner Richmond,"(37.7779228408214, -122.469358764286)",102820223-T10 +160783443,63,16031162,Traffic Collision,03/18/2016,03/18/2016,03/18/2016 07:50:29 PM,03/18/2016 07:50:29 PM,03/18/2016 07:53:48 PM,03/18/2016 07:53:48 PM,03/18/2016 07:55:31 PM,03/18/2016 08:07:12 PM,03/18/2016 08:18:48 PM,Code 2 Transport,03/18/2016 09:08:21 PM,VAN NESS AV/GROVE ST,San Francisco,94102,B02,36,3165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",160783443-63 +160682228,70,16027162,Medical Incident,03/08/2016,03/08/2016,03/08/2016 03:08:53 PM,03/08/2016 03:11:23 PM,03/08/2016 03:12:07 PM,03/08/2016 03:12:43 PM,03/08/2016 03:16:22 PM,03/08/2016 03:46:18 PM,03/08/2016 03:54:43 PM,Code 2 Transport,03/08/2016 04:42:04 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160682228-70 +123040251,92,12100954,Medical Incident,10/30/2012,10/30/2012,10/30/2012 05:33:39 PM,10/30/2012 05:34:07 PM,10/30/2012 05:35:40 PM,10/30/2012 05:35:46 PM,10/30/2012 05:40:23 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/30/2012 06:15:54 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",123040251-92 +132490288,D3,13084113,Structure Fire,09/06/2013,09/06/2013,09/06/2013 05:30:30 PM,09/06/2013 05:31:30 PM,09/06/2013 05:31:51 PM,09/06/2013 05:32:21 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/06/2013 05:42:36 PM,400 Block of SAINT FRANCIS BLVD,SF,94127,B08,39,8556,3,3,3,false,Alarm,1,CHIEF,3,9,7,West of Twin Peaks,"(37.7348628619405, -122.466687433139)",132490288-D3 +120460245,E37,12015346,Medical Incident,02/15/2012,02/15/2012,02/15/2012 03:23:51 PM,02/15/2012 03:24:19 PM,02/15/2012 03:24:43 PM,02/15/2012 03:26:20 PM,02/15/2012 03:26:55 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 03:42:17 PM,1000 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",120460245-E37 +113180248,77,11105697,Traffic Collision,11/14/2011,11/14/2011,11/14/2011 04:51:39 PM,11/14/2011 04:52:41 PM,11/14/2011 04:53:06 PM,11/14/2011 04:53:26 PM,11/14/2011 04:55:29 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Patient Declined Transport,11/14/2011 04:53:56 PM,HOWARD ST/10TH ST,SF,94103,B02,36,2342,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7740433259374, -122.414367692219)",113180248-77 +122990083,E02,12099015,Traffic Collision,10/25/2012,10/25/2012,10/25/2012 08:02:49 AM,10/25/2012 08:06:58 AM,10/25/2012 08:07:21 AM,10/25/2012 08:09:55 AM,10/25/2012 08:10:41 AM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/25/2012 08:21:44 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",122990083-E02 +113000042,77,11099401,Medical Incident,10/27/2011,10/26/2011,10/27/2011 04:54:46 AM,10/27/2011 04:55:49 AM,10/27/2011 04:56:01 AM,10/27/2011 04:56:10 AM,10/27/2011 05:03:38 AM,10/27/2011 05:33:34 AM,10/27/2011 05:53:11 AM,Code 2 Transport,10/27/2011 06:35:23 AM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",113000042-77 +160012822,KM02,16000424,Medical Incident,01/01/2016,01/01/2016,01/01/2016 05:04:39 PM,01/01/2016 05:08:24 PM,01/01/2016 05:08:52 PM,01/01/2016 05:10:27 PM,01/01/2016 05:18:21 PM,01/01/2016 05:28:57 PM,01/01/2016 06:24:59 PM,Code 2 Transport,01/01/2016 06:36:45 PM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",160012822-KM02 +160541821,50,16021595,Medical Incident,02/23/2016,02/23/2016,02/23/2016 01:00:43 PM,02/23/2016 01:00:43 PM,02/23/2016 01:00:58 PM,02/23/2016 01:01:06 PM,02/23/2016 01:34:09 PM,02/23/2016 02:24:21 PM,02/23/2016 02:31:35 PM,Code 2 Transport,02/23/2016 03:12:51 PM,100 Block of AVENUE C,San Francisco,94130,B02,29,2345,2,2,2,true,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",160541821-50 +160373372,KM11,16014870,Medical Incident,02/06/2016,02/06/2016,02/06/2016 07:29:30 PM,02/06/2016 07:30:56 PM,02/06/2016 07:36:06 PM,02/06/2016 07:37:17 PM,02/06/2016 07:47:21 PM,02/06/2016 08:06:10 PM,02/06/2016 08:22:51 PM,Code 2 Transport,02/06/2016 08:56:09 PM,300 Block of 11TH AVE,San Francisco,94118,B07,31,7141,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7817321022893, -122.469767595348)",160373372-KM11 +112010134,KM04,11066226,Medical Incident,07/20/2011,07/20/2011,07/20/2011 10:14:03 AM,07/20/2011 10:16:23 AM,07/20/2011 10:16:41 AM,07/20/2011 10:17:56 AM,04/25/2016 02:03:35 PM,07/20/2011 10:36:02 AM,07/20/2011 10:51:06 AM,Code 2 Transport,07/20/2011 11:28:26 AM,1600 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7306779819765, -122.391641186978)",112010134-KM04 +160683550,68,16027260,Medical Incident,03/08/2016,03/08/2016,03/08/2016 09:33:48 PM,03/08/2016 09:34:06 PM,03/08/2016 09:34:29 PM,03/08/2016 09:34:52 PM,03/08/2016 09:39:38 PM,03/08/2016 10:00:28 PM,03/08/2016 10:19:29 PM,Code 2 Transport,03/08/2016 11:02:50 PM,300 Block of VIENNA ST,San Francisco,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7228366904256, -122.428721117908)",160683550-68 +110790133,T12,11025993,Other,03/20/2011,03/20/2011,03/20/2011 08:54:53 AM,03/20/2011 08:59:03 AM,03/20/2011 08:59:24 AM,03/20/2011 09:03:07 AM,03/20/2011 09:07:46 AM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,Fire,03/20/2011 09:24:44 AM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,2,2,2,false,,1,TRUCK,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",110790133-T12 +123230034,T17,12107284,Other,11/18/2012,11/17/2012,11/18/2012 02:20:50 AM,11/18/2012 02:21:36 AM,11/18/2012 02:21:52 AM,11/18/2012 02:25:08 AM,11/18/2012 02:33:49 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/18/2012 02:51:24 AM,400 Block of AMHERST ST,SF,94134,B09,42,6345,3,3,3,false,Alarm,1,TRUCK,1,9,9,Portola,"(37.7239558999741, -122.415120744965)",123230034-T17 +121190058,78,12039378,Medical Incident,04/28/2012,04/27/2012,04/28/2012 03:46:33 AM,04/28/2012 03:47:43 AM,04/28/2012 03:48:09 AM,04/28/2012 03:48:16 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 03:48:32 AM,1800 Block of EDDY ST,SF,94115,B05,5,4133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7806409046944, -122.43808239162)",121190058-78 +121800319,85,12060044,Medical Incident,06/28/2012,06/28/2012,06/28/2012 07:01:27 PM,06/28/2012 07:01:27 PM,06/28/2012 07:02:58 PM,06/28/2012 07:03:13 PM,06/28/2012 07:12:24 PM,06/28/2012 07:23:00 PM,06/28/2012 07:50:20 PM,Code 2 Transport,06/28/2012 08:03:07 PM,2100 Block of JENNINGS ST,SF,94124,B10,17,6651,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",121800319-85 +160770082,89,16030409,Medical Incident,03/17/2016,03/16/2016,03/17/2016 12:27:05 AM,03/17/2016 12:29:21 AM,03/17/2016 12:29:34 AM,03/17/2016 12:29:48 AM,03/17/2016 12:45:26 AM,03/17/2016 01:21:07 AM,03/17/2016 01:35:33 AM,Code 2 Transport,03/17/2016 02:22:16 AM,1200 Block of NAPLES ST,San Francisco,94112,B09,43,6223,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7114246696099, -122.438083624487)",160770082-89 +103250198,E01,10104196,Alarms,11/21/2010,11/21/2010,11/21/2010 01:54:32 PM,11/21/2010 01:54:58 PM,11/21/2010 01:55:03 PM,11/21/2010 01:55:56 PM,11/21/2010 01:58:08 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,04/25/2016 02:07:29 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",103250198-E01 +160331684,AM02,16012985,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:01:21 PM,02/02/2016 01:01:21 PM,02/02/2016 01:02:31 PM,02/02/2016 01:03:06 PM,02/02/2016 01:15:35 PM,02/02/2016 01:27:57 PM,02/02/2016 01:35:35 PM,Code 2 Transport,02/02/2016 02:06:37 PM,MARKET ST/MASON ST,San Francisco,94103,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",160331684-AM02 +111100405,KM12,11036494,Traffic Collision,04/20/2011,04/20/2011,04/20/2011 10:22:48 PM,04/20/2011 10:26:58 PM,04/20/2011 10:27:41 PM,04/20/2011 10:28:37 PM,04/20/2011 10:31:57 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Unable to Locate,04/20/2011 10:35:54 PM,300 Block of LAGUNA HONDA BLVD,SF,94116,B08,20,8649,2,2,2,false,,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",111100405-KM12 +103380202,87,10108144,Medical Incident,12/04/2010,12/04/2010,12/04/2010 12:05:13 PM,12/04/2010 12:06:48 PM,12/04/2010 12:07:56 PM,12/04/2010 12:08:03 PM,12/04/2010 12:11:06 PM,12/04/2010 12:23:01 PM,12/04/2010 12:31:58 PM,Code 2 Transport,12/04/2010 01:02:07 PM,600 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7627654072931, -122.417324660706)",103380202-87 +140020122,66,14000621,Medical Incident,01/02/2014,01/02/2014,01/02/2014 08:59:18 AM,01/02/2014 09:01:46 AM,01/02/2014 09:02:24 AM,01/02/2014 09:03:18 AM,01/02/2014 09:07:58 AM,01/02/2014 09:27:52 AM,01/02/2014 10:00:05 AM,Code 2 Transport,01/02/2014 10:31:03 AM,200 Block of STILLINGS AVE,SF,94131,B09,15,8246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7346080418784, -122.444845866242)",140020122-66 +121590251,E03,12052669,Alarms,06/07/2012,06/07/2012,06/07/2012 05:17:41 PM,06/07/2012 05:18:21 PM,06/07/2012 05:18:42 PM,06/07/2012 05:19:42 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/07/2012 05:22:42 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",121590251-E03 +160700914,89,16027769,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:20:01 AM,03/10/2016 09:20:42 AM,03/10/2016 09:20:55 AM,03/10/2016 09:21:03 AM,03/10/2016 09:23:34 AM,03/10/2016 09:35:18 AM,03/10/2016 09:47:13 AM,Code 2 Transport,03/10/2016 10:22:20 AM,600 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7627737268131, -122.417186682545)",160700914-89 +160562891,63,16022480,Medical Incident,02/25/2016,02/25/2016,02/25/2016 05:08:25 PM,02/25/2016 05:08:25 PM,02/25/2016 05:08:36 PM,02/25/2016 05:08:49 PM,02/25/2016 05:12:30 PM,02/25/2016 05:23:52 PM,02/25/2016 05:47:09 PM,Code 2 Transport,02/25/2016 06:26:14 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160562891-63 +160832278,88,16032992,Medical Incident,03/23/2016,03/23/2016,03/23/2016 02:27:06 PM,03/23/2016 02:27:24 PM,03/23/2016 02:28:58 PM,03/23/2016 02:29:11 PM,03/23/2016 02:33:45 PM,03/23/2016 02:56:28 PM,03/23/2016 03:11:23 PM,Code 2 Transport,03/23/2016 04:00:44 PM,300 Block of AMBER DR,San Francisco,94131,B06,26,8164,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Glen Park,"(37.7445636381979, -122.441704934967)",160832278-88 +140290289,E15,14009975,Medical Incident,01/29/2014,01/29/2014,01/29/2014 05:35:32 PM,01/29/2014 05:36:06 PM,01/29/2014 05:38:41 PM,01/29/2014 05:40:49 PM,01/29/2014 05:43:37 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/29/2014 06:18:59 PM,MISSION ST/GENEVA AV,SF,94112,B09,43,6175,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",140290289-E15 +140770009,96,14025921,Traffic Collision,03/18/2014,03/17/2014,03/18/2014 12:55:10 AM,03/18/2014 12:55:10 AM,03/18/2014 12:55:36 AM,03/18/2014 12:56:54 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Other,03/18/2014 12:58:14 AM,14TH ST/SOUTH VAN NESS AV,SAN FRANCISCO,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7684052696119, -122.417802155227)",140770009-96 +160891077,71,16035272,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:45:43 AM,03/29/2016 09:46:41 AM,03/29/2016 09:46:56 AM,03/29/2016 09:47:09 AM,03/29/2016 09:52:06 AM,03/29/2016 09:58:33 AM,03/29/2016 10:00:49 AM,Code 2 Transport,03/29/2016 10:33:53 AM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",160891077-71 +160413379,68,16016616,Medical Incident,02/10/2016,02/10/2016,02/10/2016 07:34:26 PM,02/10/2016 07:35:46 PM,02/10/2016 07:36:34 PM,02/10/2016 07:36:45 PM,02/10/2016 07:41:48 PM,02/10/2016 07:53:48 PM,02/10/2016 08:11:42 PM,Code 3 Transport,02/10/2016 08:50:24 PM,TAYLOR ST/THE EMBARCADERO NOR,San Francisco,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8085905137399, -122.415923448242)",160413379-68 +160522984,60,16020944,Medical Incident,02/21/2016,02/21/2016,02/21/2016 07:29:18 PM,02/21/2016 07:29:38 PM,02/21/2016 07:30:10 PM,02/21/2016 07:30:17 PM,02/21/2016 07:39:43 PM,02/21/2016 08:05:07 PM,02/21/2016 08:15:42 PM,Code 2 Transport,02/21/2016 08:55:22 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160522984-60 +130480056,E11,13016274,Medical Incident,02/17/2013,02/16/2013,02/17/2013 02:47:35 AM,02/17/2013 02:47:59 AM,02/17/2013 02:48:26 AM,02/17/2013 02:49:53 AM,02/17/2013 02:51:28 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 03:00:07 AM,23RD ST/DOLORES ST,SF,94110,B06,11,5513,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7534315922902, -122.425302617555)",130480056-E11 +102280157,55,10071757,Medical Incident,08/16/2010,08/16/2010,08/16/2010 12:11:49 PM,08/16/2010 12:16:19 PM,08/16/2010 12:16:34 PM,08/16/2010 12:17:10 PM,08/16/2010 12:30:20 PM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Medical Examiner,08/16/2010 12:50:30 PM,700 Block of BROADWAY,SF,94133,B01,2,1353,2,2,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7974024321534, -122.409965345352)",102280157-55 +131330154,E01,13044829,Medical Incident,05/13/2013,05/13/2013,05/13/2013 11:17:10 AM,05/13/2013 11:19:08 AM,05/13/2013 11:19:37 AM,05/13/2013 11:20:01 AM,05/13/2013 11:24:28 AM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 11:45:06 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",131330154-E01 +132900378,E13,13098809,Medical Incident,10/17/2013,10/17/2013,10/17/2013 08:40:47 PM,10/17/2013 08:42:22 PM,10/17/2013 08:42:49 PM,10/17/2013 08:44:06 PM,10/17/2013 08:47:48 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,No Merit,10/17/2013 08:51:56 PM,400 Block of THE EMBARCADERO,SF,94111,B01,13,907,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",132900378-E13 +120110252,T19,12003869,Alarms,01/11/2012,01/11/2012,01/11/2012 06:11:12 PM,01/11/2012 06:11:40 PM,01/11/2012 06:12:27 PM,01/11/2012 06:14:00 PM,01/11/2012 06:17:31 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 06:28:16 PM,500 Block of ARCH ST,SF,94132,B09,33,8432,3,3,3,false,Alarm,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7206675759732, -122.467099843315)",120110252-T19 +120150017,E17,12004952,Medical Incident,01/15/2012,01/14/2012,01/15/2012 12:42:19 AM,01/15/2012 12:44:16 AM,01/15/2012 12:46:12 AM,01/15/2012 12:48:53 AM,01/15/2012 12:52:36 AM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 01:04:11 AM,1700 Block of YOSEMITE AVE,SF,94124,B10,17,6512,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7284996658469, -122.39444320706)",120150017-E17 +160650230,53,16025777,Medical Incident,03/05/2016,03/04/2016,03/05/2016 01:36:27 AM,03/05/2016 01:37:18 AM,03/05/2016 01:37:31 AM,03/05/2016 01:37:41 AM,03/05/2016 01:40:44 AM,03/05/2016 01:57:40 AM,03/05/2016 02:38:09 AM,Code 2 Transport,03/05/2016 03:03:01 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160650230-53 +160572352,59,16022819,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:40:45 PM,02/26/2016 03:40:45 PM,02/26/2016 03:41:29 PM,02/26/2016 03:41:56 PM,02/26/2016 03:45:40 PM,02/26/2016 03:55:56 PM,02/26/2016 04:20:48 PM,Code 2 Transport,02/26/2016 04:59:38 PM,1100 Block of GOUGH ST,San Francisco,94109,B04,3,3261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.784358514886, -122.424559253604)",160572352-59 +112820280,91,11093414,Medical Incident,10/09/2011,10/09/2011,10/09/2011 05:18:44 PM,10/09/2011 05:19:12 PM,10/09/2011 05:19:35 PM,10/09/2011 05:20:22 PM,10/09/2011 05:26:21 PM,10/09/2011 05:47:31 PM,10/09/2011 05:55:58 PM,Code 2 Transport,10/09/2011 06:22:58 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",112820280-91 +160881570,KM11,16034935,Medical Incident,03/28/2016,03/28/2016,03/28/2016 12:01:10 PM,03/28/2016 12:01:39 PM,03/28/2016 12:02:00 PM,03/28/2016 12:02:32 PM,03/28/2016 12:06:10 PM,03/28/2016 12:10:46 PM,03/28/2016 12:15:42 PM,Code 3 Transport,03/28/2016 12:52:14 PM,MARINA BL/SCOTT ST,San Francisco,94123,B04,16,4111,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8057862730196, -122.442209784032)",160881570-KM11 +102300056,B09,10072297,Alarms,08/18/2010,08/17/2010,08/18/2010 07:24:55 AM,08/18/2010 07:26:22 AM,08/18/2010 07:26:37 AM,08/18/2010 07:27:53 AM,08/18/2010 07:30:52 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Fire,08/18/2010 07:34:55 AM,100 Block of HAROLD AVE,SF,94112,B09,15,8466,3,3,3,false,,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7209471302595, -122.453165419355)",102300056-B09 +113240140,E02,11107575,Medical Incident,11/20/2011,11/20/2011,11/20/2011 11:03:47 AM,11/20/2011 11:04:24 AM,11/20/2011 11:04:40 AM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 11:04:44 AM,BROADWAY/STOCKTON ST,SF,94133,B01,2,1311,3,2,2,true,,1,ENGINE,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",113240140-E02 +122750130,55,12090696,Medical Incident,10/01/2012,10/01/2012,10/01/2012 10:29:49 AM,10/01/2012 10:31:38 AM,10/01/2012 10:32:11 AM,10/01/2012 10:33:40 AM,10/01/2012 10:46:07 AM,10/01/2012 11:12:10 AM,10/01/2012 11:41:48 AM,Code 2 Transport,10/01/2012 11:43:33 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",122750130-55 +140720127,55,14024270,Medical Incident,03/13/2014,03/13/2014,03/13/2014 09:41:30 AM,03/13/2014 09:44:32 AM,03/13/2014 09:46:20 AM,03/13/2014 09:46:37 AM,03/13/2014 09:51:45 AM,03/13/2014 10:16:40 AM,03/13/2014 10:37:43 AM,Code 2 Transport,03/13/2014 10:55:32 AM,500 Block of 5TH ST,SAN FRANCISCO,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",140720127-55 +132880175,B03,13097965,Structure Fire,10/15/2013,10/15/2013,10/15/2013 11:25:59 AM,10/15/2013 11:26:57 AM,10/15/2013 11:27:42 AM,10/15/2013 11:28:54 AM,10/15/2013 11:30:55 AM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,10/15/2013 11:38:31 AM,1900 Block of 18TH ST,SF,94107,B02,37,2455,3,3,3,false,Alarm,1,CHIEF,1,10,10,Potrero Hill,"(37.7622049152778, -122.401820320601)",132880175-B03 +113320317,B01,11110091,Structure Fire,11/28/2011,11/28/2011,11/28/2011 06:16:15 PM,11/28/2011 06:17:53 PM,11/28/2011 06:18:10 PM,11/28/2011 06:19:04 PM,11/28/2011 06:21:07 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/28/2011 06:31:29 PM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,,1,CHIEF,1,1,3,Nob Hill,"(37.7917657997993, -122.407489250227)",113320317-B01 +113430236,E44,11113783,Medical Incident,12/09/2011,12/09/2011,12/09/2011 01:47:27 PM,12/09/2011 01:47:55 PM,12/09/2011 01:48:19 PM,12/09/2011 01:49:10 PM,12/09/2011 01:52:07 PM,04/25/2016 02:01:14 PM,04/25/2016 02:01:14 PM,Other,12/09/2011 02:09:37 PM,SAN BRUNO AV/SILLIMAN ST,SF,94134,B10,42,6362,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7312369255307, -122.405085875862)",113430236-E44 +140270184,82,14009197,Medical Incident,01/27/2014,01/27/2014,01/27/2014 01:16:26 PM,01/27/2014 01:17:20 PM,01/27/2014 01:17:32 PM,01/27/2014 01:17:38 PM,01/27/2014 01:20:31 PM,01/27/2014 01:44:27 PM,01/27/2014 01:50:42 PM,Code 2 Transport,01/27/2014 02:31:21 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",140270184-82 +112370306,KM10,11078292,Medical Incident,08/25/2011,08/25/2011,08/25/2011 05:18:31 PM,08/25/2011 05:20:32 PM,08/25/2011 05:21:19 PM,08/25/2011 05:22:07 PM,08/25/2011 05:27:53 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Unable to Locate,08/25/2011 05:28:29 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7829058754034, -122.40679650522)",112370306-KM10 +140870057,E13,14029175,Medical Incident,03/28/2014,03/27/2014,03/28/2014 06:56:07 AM,03/28/2014 06:56:24 AM,03/28/2014 06:56:35 AM,03/28/2014 06:58:17 AM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Other,03/28/2014 07:01:02 AM,700 Block of MISSION ST,,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",140870057-E13 +160491154,75,16019680,Traffic Collision,02/18/2016,02/18/2016,02/18/2016 10:24:00 AM,02/18/2016 10:24:14 AM,02/18/2016 10:24:25 AM,02/18/2016 10:24:31 AM,02/18/2016 10:29:18 AM,02/18/2016 10:42:14 AM,02/18/2016 11:20:12 AM,Code 2 Transport,02/18/2016 11:27:31 AM,BUSH ST/SCOTT ST,San Francisco,94115,B04,10,4126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.78639167377, -122.438393883002)",160491154-75 +140020418,E39,14000876,Structure Fire,01/02/2014,01/02/2014,01/02/2014 10:59:56 PM,01/02/2014 11:02:08 PM,01/02/2014 11:02:50 PM,01/02/2014 11:04:44 PM,01/02/2014 11:07:50 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/02/2014 11:26:30 PM,200 Block of MARIETTA DR,SF,94127,B09,39,8654,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.738687302848, -122.44337815957)",140020418-E39 +132170013,66,13073166,Medical Incident,08/05/2013,08/04/2013,08/05/2013 01:04:54 AM,08/05/2013 01:05:15 AM,08/05/2013 01:06:01 AM,08/05/2013 01:07:17 AM,08/05/2013 01:14:09 AM,08/05/2013 01:41:30 AM,08/05/2013 01:49:20 AM,Code 2 Transport,08/05/2013 02:21:49 AM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",132170013-66 +132620084,81,13088667,Medical Incident,09/19/2013,09/19/2013,09/19/2013 09:01:23 AM,09/19/2013 09:03:54 AM,09/19/2013 09:04:23 AM,09/19/2013 09:04:30 AM,09/19/2013 09:11:54 AM,09/19/2013 09:21:07 AM,09/19/2013 09:36:36 AM,Code 2 Transport,09/19/2013 10:06:38 AM,200 Block of CORBETT AVE,SF,94114,B05,24,5265,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7609447758024, -122.444219219303)",132620084-81 +120710326,84,12023740,Medical Incident,03/11/2012,03/11/2012,03/11/2012 09:49:05 PM,03/11/2012 09:49:05 PM,03/11/2012 09:49:05 PM,03/11/2012 09:52:55 PM,04/25/2016 01:59:43 PM,03/11/2012 10:07:25 PM,03/11/2012 10:32:35 PM,Code 3 Transport,03/11/2012 11:10:39 PM,STOCKTON ST/BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",120710326-84 +160141412,88,16005533,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:27:05 AM,01/14/2016 11:27:45 AM,01/14/2016 11:28:03 AM,01/14/2016 11:28:09 AM,01/14/2016 11:32:10 AM,01/14/2016 11:48:26 AM,01/14/2016 12:06:53 PM,Code 2 Transport,01/14/2016 12:51:58 PM,900 Block of DE HARO ST,San Francisco,94107,B10,37,2511,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7589370511593, -122.400966701986)",160141412-88 +121220215,KM15,12040521,Medical Incident,05/01/2012,05/01/2012,05/01/2012 03:05:07 PM,05/01/2012 03:06:27 PM,05/01/2012 03:06:47 PM,05/01/2012 03:09:05 PM,05/01/2012 03:20:05 PM,05/01/2012 03:41:20 PM,05/01/2012 03:47:14 PM,Code 2 Transport,05/01/2012 04:13:23 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",121220215-KM15 +120810290,E01,12026971,Medical Incident,03/21/2012,03/21/2012,03/21/2012 05:09:17 PM,03/21/2012 05:10:12 PM,03/21/2012 05:10:19 PM,03/21/2012 05:11:26 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Other,03/21/2012 05:11:39 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",120810290-E01 +110920059,89,11030424,Medical Incident,04/02/2011,04/01/2011,04/02/2011 03:22:26 AM,04/02/2011 03:24:39 AM,04/02/2011 03:25:12 AM,04/02/2011 03:25:26 AM,04/02/2011 03:28:34 AM,04/02/2011 03:48:31 AM,04/02/2011 04:04:09 AM,Other,04/02/2011 04:19:17 AM,100 Block of ALPINE TER,SF,94117,B05,6,5134,3,3,3,true,,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681326738343, -122.437454372806)",110920059-89 +133430355,T11,13116463,Structure Fire,12/09/2013,12/09/2013,12/09/2013 08:22:03 PM,12/09/2013 08:22:04 PM,12/09/2013 08:22:15 PM,12/09/2013 08:23:28 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/09/2013 08:25:36 PM,20TH ST/CHURCH ST,SF,94114,B06,11,5444,3,3,3,false,Alarm,1,TRUCK,2,6,8,Castro/Upper Market,"(37.7580887566543, -122.428050185674)",133430355-T11 +160290695,52,16011350,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:07:00 AM,01/29/2016 08:08:43 AM,01/29/2016 08:09:10 AM,01/29/2016 08:09:22 AM,01/29/2016 08:20:50 AM,01/29/2016 08:33:56 AM,01/29/2016 08:40:08 AM,Code 2 Transport,01/29/2016 09:12:45 AM,3100 Block of 23RD ST,San Francisco,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7539458833911, -122.415861589966)",160290695-52 +131000239,KM04,13033646,Medical Incident,04/10/2013,04/10/2013,04/10/2013 02:23:24 PM,04/10/2013 02:24:58 PM,04/10/2013 02:25:14 PM,04/10/2013 02:29:31 PM,04/10/2013 02:34:08 PM,04/10/2013 03:00:19 PM,04/10/2013 03:13:04 PM,Code 2 Transport,04/10/2013 03:54:20 PM,3300 Block of IRVING ST,SF,94122,B08,23,7564,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.762774823205, -122.493730777688)",131000239-KM04 +160563166,KM13,16022505,Medical Incident,02/25/2016,02/25/2016,02/25/2016 06:09:56 PM,02/25/2016 06:12:07 PM,02/25/2016 06:12:31 PM,02/25/2016 06:13:29 PM,02/25/2016 06:25:39 PM,02/25/2016 06:46:04 PM,02/25/2016 07:10:13 PM,Code 2 Transport,02/25/2016 07:41:01 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160563166-KM13 +130490048,E33,13016600,Medical Incident,02/18/2013,02/17/2013,02/18/2013 04:44:11 AM,02/18/2013 04:46:12 AM,02/18/2013 04:48:02 AM,02/18/2013 04:49:39 AM,02/18/2013 04:53:51 AM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/18/2013 05:03:35 AM,400 Block of VICTORIA ST,SF,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7188021317353, -122.465280431039)",130490048-E33 +132960187,T10,13100605,Alarms,10/23/2013,10/23/2013,10/23/2013 02:27:02 PM,10/23/2013 02:28:19 PM,10/23/2013 02:28:34 PM,10/23/2013 02:29:28 PM,10/23/2013 02:32:37 PM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/23/2013 02:35:56 PM,2800 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,false,Alarm,1,TRUCK,2,4,2,Pacific Heights,"(37.7931736175933, -122.444028632879)",132960187-T10 +160590113,KM07,16023346,Medical Incident,02/28/2016,02/27/2016,02/28/2016 12:41:20 AM,02/28/2016 12:45:20 AM,02/28/2016 12:45:42 AM,02/28/2016 12:46:12 AM,02/28/2016 12:49:57 AM,02/28/2016 01:31:55 AM,02/28/2016 02:08:25 AM,Code 2 Transport,02/28/2016 02:14:44 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",160590113-KM07 +102250094,82,10070775,Medical Incident,08/13/2010,08/13/2010,08/13/2010 09:59:37 AM,08/13/2010 10:02:14 AM,08/13/2010 10:02:46 AM,08/13/2010 10:03:43 AM,08/13/2010 10:09:22 AM,08/13/2010 10:26:17 AM,08/13/2010 10:48:47 AM,Code 2 Transport,08/13/2010 11:11:29 AM,1200 Block of YORK ST,SF,94110,B06,9,5531,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7520504579835, -122.408181888121)",102250094-82 +160363358,59,16014399,Medical Incident,02/05/2016,02/05/2016,02/05/2016 07:11:15 PM,02/05/2016 07:11:15 PM,02/05/2016 07:23:12 PM,02/05/2016 07:23:26 PM,02/05/2016 07:36:45 PM,02/05/2016 07:48:22 PM,02/05/2016 08:12:04 PM,Code 2 Transport,02/05/2016 08:44:24 PM,800 Block of HOWARD ST,San Francisco,94103,B99,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,4,3,6,South of Market,"(37.7824182864419, -122.403869611535)",160363358-59 +130970121,81,13032484,Medical Incident,04/07/2013,04/07/2013,04/07/2013 09:43:02 AM,04/07/2013 09:43:04 AM,04/07/2013 09:43:14 AM,04/07/2013 09:45:08 AM,04/07/2013 09:49:11 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 09:49:45 AM,MARINA BL/LAGUNA ST,SF,94123,B04,16,3452,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.8051995453814, -122.432090718256)",130970121-81 +102550278,78,10080726,Medical Incident,09/12/2010,09/12/2010,09/12/2010 09:52:58 PM,09/12/2010 09:52:58 PM,09/12/2010 09:53:22 PM,09/12/2010 09:53:51 PM,09/12/2010 09:55:31 PM,09/12/2010 10:08:36 PM,09/12/2010 10:23:44 PM,Code 2 Transport,09/12/2010 11:17:11 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",102550278-78 +160562255,AM16,16022425,Medical Incident,02/25/2016,02/25/2016,02/25/2016 02:26:15 PM,02/25/2016 02:29:10 PM,02/25/2016 02:33:01 PM,02/25/2016 02:33:38 PM,02/25/2016 02:41:11 PM,02/25/2016 03:14:44 PM,02/25/2016 03:25:35 PM,Code 2 Transport,02/25/2016 03:33:29 PM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7800574377607, -122.408673540372)",160562255-AM16 +160162927,87,16006541,Medical Incident,01/16/2016,01/16/2016,01/16/2016 06:35:33 PM,01/16/2016 06:35:55 PM,01/16/2016 06:36:39 PM,01/16/2016 06:36:53 PM,01/16/2016 06:36:53 PM,01/16/2016 06:48:27 PM,01/16/2016 07:05:04 PM,Code 2 Transport,01/16/2016 07:31:04 PM,18TH ST/VALENCIA ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7617009099893, -122.421578400735)",160162927-87 +132330357,E13,13078818,Alarms,08/21/2013,08/21/2013,08/21/2013 09:28:35 PM,08/21/2013 09:30:16 PM,08/21/2013 09:31:10 PM,08/21/2013 09:32:36 PM,08/21/2013 09:35:01 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/21/2013 09:50:59 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",132330357-E13 +111340019,E03,11044446,Structure Fire,05/14/2011,05/13/2011,05/14/2011 01:27:54 AM,05/14/2011 01:27:54 AM,05/14/2011 01:28:02 AM,04/25/2016 02:04:38 PM,05/14/2011 01:31:37 AM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,Other,05/14/2011 01:32:16 AM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",111340019-E03 +121320114,D3,12043857,Structure Fire,05/11/2012,05/11/2012,05/11/2012 09:14:06 AM,05/11/2012 09:14:48 AM,05/11/2012 09:15:06 AM,05/11/2012 09:15:49 AM,05/11/2012 09:17:51 AM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 09:31:12 AM,900 Block of CAPP ST,SF,94110,B06,11,5525,3,3,3,false,Fire,1,CHIEF,2,6,9,Mission,"(37.7515098435706, -122.417210393088)",121320114-D3 +113060193,T08,11101658,Alarms,11/02/2011,11/02/2011,11/02/2011 01:08:52 PM,11/02/2011 01:09:57 PM,11/02/2011 01:10:08 PM,11/02/2011 01:12:06 PM,11/02/2011 01:14:52 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 01:17:42 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7813340573864, -122.399027495005)",113060193-T08 +132580361,E36,13087438,Structure Fire,09/15/2013,09/15/2013,09/15/2013 10:16:11 PM,09/15/2013 10:16:11 PM,09/15/2013 10:16:28 PM,09/15/2013 10:17:37 PM,09/15/2013 10:19:43 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Fire,09/15/2013 10:19:59 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",132580361-E36 +132210256,E01,13074691,Traffic Collision,08/09/2013,08/09/2013,08/09/2013 04:59:10 PM,08/09/2013 05:00:38 PM,08/09/2013 05:09:27 PM,08/09/2013 05:09:57 PM,08/09/2013 05:15:17 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,No Merit,08/09/2013 05:17:04 PM,FOLSOM ST/SPEAR ST,SF,94105,B03,35,2112,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7900698004723, -122.390971017685)",132210256-E01 +120300267,78,12010072,Medical Incident,01/30/2012,01/30/2012,01/30/2012 07:42:45 PM,01/30/2012 07:43:23 PM,01/30/2012 07:44:11 PM,01/30/2012 07:44:23 PM,01/30/2012 07:48:59 PM,01/30/2012 08:13:06 PM,01/30/2012 08:34:06 PM,Code 2 Transport,01/30/2012 08:54:37 PM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",120300267-78 +120670108,E10,12022146,Medical Incident,03/07/2012,03/07/2012,03/07/2012 08:44:46 AM,03/07/2012 08:46:59 AM,03/07/2012 08:47:19 AM,03/07/2012 08:48:52 AM,03/07/2012 08:51:53 AM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,03/07/2012 08:54:16 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",120670108-E10 +112570226,T10,11084777,Vehicle Fire,09/14/2011,09/14/2011,09/14/2011 04:23:30 PM,09/14/2011 04:25:47 PM,09/14/2011 04:26:08 PM,09/14/2011 04:27:08 PM,09/14/2011 04:30:21 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/14/2011 04:47:24 PM,BROADWAY/DIVISADERO ST,SF,94115,B04,10,4226,3,3,3,false,,1,TRUCK,2,4,2,Pacific Heights,"(37.7934365906493, -122.441520477479)",112570226-T10 +130910051,E48,13030334,Alarms,04/01/2013,03/31/2013,04/01/2013 06:24:54 AM,04/01/2013 06:24:54 AM,04/01/2013 06:25:08 AM,04/25/2016 01:53:32 PM,04/01/2013 06:29:47 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 06:33:44 AM,500 Block of AVENUE D,TI,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,1,None,6,Treasure Island,"(37.8228150466613, -122.371860211672)",130910051-E48 +111770299,KM12,11058460,Medical Incident,06/26/2011,06/26/2011,06/26/2011 05:02:51 PM,06/26/2011 05:05:16 PM,06/26/2011 05:10:17 PM,06/26/2011 05:10:49 PM,06/26/2011 05:19:49 PM,06/26/2011 05:46:27 PM,06/26/2011 06:12:03 PM,Code 2 Transport,06/26/2011 06:19:21 PM,600 Block of 18TH AVE,SF,94121,B07,31,7157,2,2,2,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7757145343646, -122.476828115824)",111770299-KM12 +112740282,E33,11090694,Medical Incident,10/01/2011,10/01/2011,10/01/2011 04:31:04 PM,10/01/2011 04:37:52 PM,10/01/2011 04:38:30 PM,10/01/2011 04:39:59 PM,10/01/2011 04:42:25 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Patient Declined Transport,10/01/2011 05:19:08 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",112740282-E33 +111700185,E38,11056041,Medical Incident,06/19/2011,06/19/2011,06/19/2011 01:06:09 PM,06/19/2011 01:06:41 PM,06/19/2011 01:06:54 PM,06/19/2011 01:07:53 PM,06/19/2011 01:09:55 PM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,Other,06/19/2011 01:17:13 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,E,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",111700185-E38 +130340291,B04,13011709,Structure Fire,02/03/2013,02/03/2013,02/03/2013 06:50:30 PM,02/03/2013 06:51:57 PM,02/03/2013 06:52:14 PM,02/03/2013 06:52:57 PM,02/03/2013 06:56:05 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 07:03:32 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,CHIEF,4,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",130340291-B04 +112130342,T10,11070424,Structure Fire,08/01/2011,08/01/2011,08/01/2011 08:18:47 PM,08/01/2011 08:20:07 PM,08/01/2011 08:20:23 PM,08/01/2011 08:21:37 PM,08/01/2011 08:26:56 PM,04/25/2016 02:03:23 PM,04/25/2016 02:03:23 PM,Other,08/01/2011 08:37:02 PM,0 Block of TOLEDO WAY,SF,94123,B04,16,3565,3,3,3,false,,1,TRUCK,8,4,2,Marina,"(37.8011950731509, -122.438465461238)",112130342-T10 +103430312,E31,10109956,Alarms,12/09/2010,12/09/2010,12/09/2010 05:02:36 PM,12/09/2010 05:03:37 PM,12/09/2010 05:03:41 PM,12/09/2010 05:04:37 PM,12/09/2010 05:06:57 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 05:29:21 PM,4100 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",103430312-E31 +123370436,59,12112388,Medical Incident,12/02/2012,12/02/2012,12/02/2012 04:03:14 PM,12/02/2012 04:04:11 PM,12/02/2012 04:05:11 PM,12/02/2012 04:05:42 PM,12/02/2012 04:08:12 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,No Merit,12/02/2012 04:10:49 PM,POLK ST/MCALLISTER ST,SF,94102,B02,3,3113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",123370436-59 +120110162,E01,12003796,Alarms,01/11/2012,01/11/2012,01/11/2012 01:29:46 PM,01/11/2012 01:30:11 PM,01/11/2012 01:30:16 PM,01/11/2012 01:31:15 PM,01/11/2012 01:34:18 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Fire,01/11/2012 01:35:28 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",120110162-E01 +122430184,E22,12080361,Medical Incident,08/30/2012,08/30/2012,08/30/2012 02:16:32 PM,08/30/2012 02:17:44 PM,08/30/2012 02:18:01 PM,08/30/2012 02:19:01 PM,08/30/2012 02:21:01 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/30/2012 02:50:35 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7632029010129, -122.464037930237)",122430184-E22 +111340176,E28,11044566,Medical Incident,05/14/2011,05/14/2011,05/14/2011 01:36:39 PM,05/14/2011 01:37:38 PM,05/14/2011 01:37:55 PM,05/14/2011 01:38:52 PM,05/14/2011 01:41:08 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,Other,05/14/2011 01:47:48 PM,0 Block of TELEGRAPH HILL BLVD,SF,94133,B01,28,1253,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8022505061483, -122.405471739992)",111340176-E28 +132080189,87,13070409,Medical Incident,07/27/2013,07/27/2013,07/27/2013 02:12:30 PM,07/27/2013 02:12:59 PM,07/27/2013 02:13:14 PM,07/27/2013 02:13:29 PM,07/27/2013 02:18:27 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Patient Declined Transport,07/27/2013 02:58:07 PM,3000 Block of 16TH ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7649119117282, -122.421065182856)",132080189-87 +133090342,E21,13105189,Other,11/05/2013,11/05/2013,11/05/2013 07:04:51 PM,11/05/2013 07:08:43 PM,11/05/2013 07:09:21 PM,04/25/2016 01:49:54 PM,11/05/2013 07:13:06 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,No Merit,11/05/2013 07:23:40 PM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",133090342-E21 +122370324,59,12078639,Citizen Assist / Service Call,08/24/2012,08/24/2012,08/24/2012 09:14:28 PM,08/24/2012 09:16:44 PM,08/24/2012 09:17:04 PM,08/24/2012 09:17:27 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/24/2012 09:17:30 PM,100 Block of HAROLD AVE,SF,94112,B09,15,8466,3,3,3,true,Alarm,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7209475450544, -122.453027122282)",122370324-59 +122840204,E03,12093973,Medical Incident,10/10/2012,10/10/2012,10/10/2012 03:17:08 PM,10/10/2012 03:18:01 PM,10/10/2012 03:18:11 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 03:20:49 PM,400 Block of TURK ST,SF,94102,B02,3,1554,E,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",122840204-E03 +160410955,67,16016374,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:12:20 AM,02/10/2016 09:15:08 AM,02/10/2016 09:15:32 AM,02/10/2016 09:15:53 AM,02/10/2016 09:20:59 AM,02/10/2016 09:46:33 AM,02/10/2016 10:08:44 AM,Code 2 Transport,02/10/2016 11:26:55 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7824182864419, -122.403869611535)",160410955-67 +160181280,62,16007200,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:38:56 AM,01/18/2016 11:39:37 AM,01/18/2016 11:39:56 AM,01/18/2016 11:40:27 AM,01/18/2016 11:45:53 AM,01/18/2016 12:01:58 PM,01/18/2016 12:38:47 PM,Code 2 Transport,01/18/2016 01:20:15 PM,300 Block of COUNTRY CLUB DR,San Francisco,94132,B08,19,8824,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Sunset/Parkside,"(37.7329008058597, -122.495408075928)",160181280-62 +133580143,KM12,13121671,Medical Incident,12/24/2013,12/24/2013,12/24/2013 10:20:02 AM,12/24/2013 10:21:42 AM,12/24/2013 10:22:03 AM,12/24/2013 10:22:47 AM,12/24/2013 10:26:13 AM,12/24/2013 10:58:36 AM,12/24/2013 11:10:26 AM,Code 2 Transport,12/24/2013 11:52:35 AM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",133580143-KM12 +160411981,59,16016475,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:42:03 PM,02/10/2016 01:42:47 PM,02/10/2016 01:43:33 PM,02/10/2016 01:43:39 PM,02/10/2016 01:49:15 PM,02/10/2016 02:01:55 PM,02/10/2016 02:05:58 PM,Code 2 Transport,02/10/2016 03:17:00 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160411981-59 +160544034,55,16021803,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:21:24 PM,02/23/2016 10:23:41 PM,02/23/2016 10:24:00 PM,02/23/2016 10:30:21 PM,02/23/2016 10:31:32 PM,02/23/2016 10:35:08 PM,02/23/2016 10:47:57 PM,Code 2 Transport,02/23/2016 11:15:27 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160544034-55 +103570077,55,10114487,Medical Incident,12/23/2010,12/22/2010,12/23/2010 07:17:15 AM,12/23/2010 07:18:02 AM,12/23/2010 07:18:40 AM,12/23/2010 07:18:51 AM,12/23/2010 07:47:34 AM,12/23/2010 07:47:39 AM,12/23/2010 07:47:43 AM,Code 2 Transport,12/23/2010 08:10:19 AM,1100 Block of TURK ST,SF,94115,B02,5,3426,E,E,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",103570077-55 +160810603,89,16032078,Medical Incident,03/21/2016,03/20/2016,03/21/2016 07:33:15 AM,03/21/2016 07:34:31 AM,03/21/2016 07:34:42 AM,03/21/2016 07:38:47 AM,03/21/2016 07:48:42 AM,03/21/2016 08:03:21 AM,03/21/2016 08:51:14 AM,Code 2 Transport,03/21/2016 09:21:19 AM,800 Block of SUNNYDALE AVE,San Francisco,94134,B09,44,6253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7101776912471, -122.410035415886)",160810603-89 +123380327,92,12112811,Medical Incident,12/03/2012,12/03/2012,12/03/2012 05:52:28 PM,12/03/2012 05:53:49 PM,12/03/2012 05:59:21 PM,12/03/2012 06:01:35 PM,12/03/2012 06:18:37 PM,12/03/2012 06:38:16 PM,12/03/2012 07:02:09 PM,Code 2 Transport,12/03/2012 07:32:59 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",123380327-92 +112530114,B07,11083408,Structure Fire,09/10/2011,09/10/2011,09/10/2011 09:02:59 AM,09/10/2011 09:03:44 AM,09/10/2011 09:04:03 AM,09/10/2011 09:05:32 AM,09/10/2011 09:10:36 AM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 09:20:27 AM,300 Block of 2ND AVE,SF,94118,B07,31,7116,3,3,3,false,,1,CHIEF,4,7,1,Inner Richmond,"(37.7821718692732, -122.460137520882)",112530114-B07 +140100227,E19,14003521,Traffic Collision,01/10/2014,01/10/2014,01/10/2014 01:47:33 PM,01/10/2014 01:49:51 PM,01/10/2014 01:51:31 PM,01/10/2014 01:51:53 PM,01/10/2014 01:58:28 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,No Merit,01/10/2014 02:08:20 PM,LAKE MERCED BL/STATE DR,SF,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",140100227-E19 +130260153,B03,13008954,Alarms,01/26/2013,01/26/2013,01/26/2013 11:30:35 AM,01/26/2013 11:32:00 AM,01/26/2013 11:32:12 AM,01/26/2013 11:32:38 AM,01/26/2013 11:37:46 AM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/26/2013 11:42:38 AM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",130260153-B03 +110830081,E03,11027202,Medical Incident,03/24/2011,03/23/2011,03/24/2011 07:53:19 AM,03/24/2011 07:54:19 AM,03/24/2011 07:55:17 AM,03/24/2011 07:57:26 AM,03/24/2011 08:01:37 AM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/24/2011 08:21:43 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",110830081-E03 +160781386,AM06,16030983,Medical Incident,03/18/2016,03/18/2016,03/18/2016 10:44:01 AM,03/18/2016 10:46:33 AM,03/18/2016 11:28:19 AM,03/18/2016 11:28:59 AM,03/18/2016 11:35:17 AM,03/18/2016 11:49:18 AM,03/18/2016 12:04:26 PM,Code 2 Transport,03/18/2016 12:50:15 PM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160781386-AM06 +120360382,T16,12012170,Gas Leak (Natural and LP Gases),02/05/2012,02/05/2012,02/05/2012 09:54:07 PM,02/05/2012 09:55:32 PM,02/05/2012 09:55:57 PM,02/05/2012 09:57:24 PM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/05/2012 10:12:26 PM,2800 Block of VAN NESS AVE,SF,94123,B04,16,3145,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.8017750305034, -122.424806563149)",120360382-T16 +160370503,53,16014546,Medical Incident,02/06/2016,02/05/2016,02/06/2016 02:45:28 AM,02/06/2016 02:45:28 AM,02/06/2016 02:45:50 AM,02/06/2016 02:46:01 AM,02/06/2016 02:59:00 AM,02/06/2016 03:07:20 AM,02/06/2016 03:17:43 AM,Code 2 Transport,02/06/2016 03:30:28 AM,3800 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7115186082108, -122.466572433425)",160370503-53 +102850123,E36,10090701,Medical Incident,10/12/2010,10/12/2010,10/12/2010 09:43:27 AM,10/12/2010 09:46:19 AM,10/12/2010 09:46:46 AM,10/12/2010 09:47:46 AM,10/12/2010 09:49:57 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 09:57:01 AM,600 Block of MCALLISTER ST,SF,94102,B02,36,3215,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7797276571513, -122.422705150216)",102850123-E36 +122900059,99,12095870,Medical Incident,10/16/2012,10/15/2012,10/16/2012 05:01:56 AM,10/16/2012 05:03:09 AM,10/16/2012 05:03:33 AM,10/16/2012 05:03:51 AM,10/16/2012 05:19:15 AM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Patient Declined Transport,10/16/2012 05:51:10 AM,1500 Block of 27TH AVE,SF,94122,B08,18,7475,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7585246809255, -122.485302914204)",122900059-99 +122370159,AM04,12078490,Medical Incident,08/24/2012,08/24/2012,08/24/2012 01:27:14 PM,08/24/2012 01:28:47 PM,08/24/2012 01:29:06 PM,08/24/2012 01:30:18 PM,08/24/2012 01:39:50 PM,08/24/2012 01:51:03 PM,08/24/2012 02:19:14 PM,Code 2 Transport,08/24/2012 02:47:14 PM,3100 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7524180928571, -122.414623849785)",122370159-AM04 +110890374,E11,11029560,Traffic Collision,03/30/2011,03/30/2011,03/30/2011 09:21:35 PM,03/30/2011 09:23:05 PM,03/30/2011 09:23:20 PM,03/30/2011 09:24:08 PM,03/30/2011 09:26:25 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 09:37:26 PM,0 Block of TIFFANY AVE,SF,94110,B06,11,5611,3,3,3,true,,1,ENGINE,1,6,8,Bernal Heights,"(37.7452607746654, -122.421228786449)",110890374-E11 +160033195,62,16001381,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:09:13 PM,01/03/2016 10:09:13 PM,01/03/2016 10:09:46 PM,01/03/2016 10:11:12 PM,01/03/2016 10:13:02 PM,01/03/2016 10:16:37 PM,01/03/2016 10:34:42 PM,Code 3 Transport,01/03/2016 11:25:20 PM,19TH ST/FOLSOM ST,San Francisco,94110,B06,7,5432,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7604988732472, -122.414841891781)",160033195-62 +111070337,E36,11035537,Odor (Strange / Unknown),04/17/2011,04/17/2011,04/17/2011 11:22:01 PM,04/17/2011 11:26:22 PM,04/17/2011 11:26:36 PM,04/17/2011 11:28:13 PM,04/17/2011 11:29:40 PM,04/25/2016 02:05:03 PM,04/25/2016 02:05:03 PM,Other,04/17/2011 11:33:02 PM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7720650956074, -122.416549895826)",111070337-E36 +110050322,KM12,11001753,Medical Incident,01/05/2011,01/05/2011,01/05/2011 06:16:32 PM,01/05/2011 06:19:12 PM,01/05/2011 06:20:53 PM,01/05/2011 06:22:06 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/05/2011 06:22:14 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,false,,1,PRIVATE,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",110050322-KM12 +130380189,E02,13013000,Structure Fire,02/07/2013,02/07/2013,02/07/2013 01:25:48 PM,02/07/2013 01:25:48 PM,02/07/2013 01:26:00 PM,02/07/2013 01:26:57 PM,02/07/2013 01:27:38 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Fire,02/07/2013 01:28:08 PM,MASON ST/PACIFIC AV,SF,94133,B01,2,1416,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7962907638042, -122.411718940358)",130380189-E02 +160460485,57,16018402,Medical Incident,02/15/2016,02/14/2016,02/15/2016 04:56:22 AM,02/15/2016 04:57:19 AM,02/15/2016 04:57:28 AM,02/15/2016 04:57:36 AM,02/15/2016 04:57:36 AM,02/15/2016 05:04:43 AM,02/15/2016 05:15:03 AM,Code 2 Transport,02/15/2016 05:32:36 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160460485-57 +112200062,E01,11072603,Medical Incident,08/08/2011,08/08/2011,08/08/2011 08:02:50 AM,08/08/2011 08:05:24 AM,08/08/2011 08:05:53 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 08:07:10 AM,0 Block of ELLIS ST,SF,94102,B03,1,1322,1,1,2,true,,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7856720367472, -122.406852525575)",112200062-E01 +132520248,E12,13085232,Other,09/09/2013,09/09/2013,09/09/2013 03:51:27 PM,09/09/2013 03:52:59 PM,09/09/2013 03:53:29 PM,09/09/2013 03:54:42 PM,09/09/2013 03:56:59 PM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Fire,09/09/2013 04:29:55 PM,500 Block of PARNASSUS AVE,SF,94131,B05,12,7323,3,3,3,true,Alarm,1,ENGINE,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",132520248-E12 +160193565,AM18,16007807,Medical Incident,01/19/2016,01/19/2016,01/19/2016 09:39:34 PM,01/19/2016 09:39:34 PM,01/19/2016 09:40:02 PM,01/19/2016 09:40:32 PM,01/19/2016 09:43:36 PM,01/19/2016 09:53:16 PM,01/19/2016 10:16:35 PM,Code 2 Transport,01/19/2016 10:32:34 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160193565-AM18 +160552499,AM12,16022059,Medical Incident,02/24/2016,02/24/2016,02/24/2016 03:49:02 PM,02/24/2016 03:49:30 PM,02/24/2016 03:50:02 PM,02/24/2016 03:50:14 PM,02/24/2016 03:53:38 PM,02/24/2016 04:13:48 PM,02/24/2016 04:36:55 PM,Code 2 Transport,02/24/2016 04:56:41 PM,600 Block of FOLSOM ST,San Francisco,94105,B03,1,2176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7842647352821, -122.398419741529)",160552499-AM12 +110480332,E01,11015991,Medical Incident,02/17/2011,02/17/2011,02/17/2011 08:20:20 PM,02/17/2011 08:21:18 PM,02/17/2011 08:22:02 PM,02/17/2011 08:23:08 PM,02/17/2011 08:26:00 PM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 08:33:06 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",110480332-E01 +160230712,55,16009069,Medical Incident,01/23/2016,01/22/2016,01/23/2016 06:47:42 AM,01/23/2016 06:50:14 AM,01/23/2016 06:51:05 AM,01/23/2016 06:51:16 AM,01/23/2016 07:09:12 AM,01/23/2016 07:38:54 AM,01/23/2016 08:12:57 AM,Code 2 Transport,01/23/2016 09:07:32 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160230712-55 +130630229,T07,13021122,Structure Fire,03/04/2013,03/04/2013,03/04/2013 01:56:29 PM,03/04/2013 01:56:37 PM,03/04/2013 01:57:03 PM,03/04/2013 01:58:22 PM,03/04/2013 02:00:23 PM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 02:11:58 PM,3500 Block of 17TH ST,SF,94110,B02,6,5251,3,3,3,false,Alarm,1,TRUCK,6,2,8,Mission,"(37.7630445848394, -122.425088617925)",130630229-T07 +112120382,99,11070130,Traffic Collision,07/31/2011,07/31/2011,07/31/2011 11:07:43 PM,07/31/2011 11:08:20 PM,07/31/2011 11:08:35 PM,07/31/2011 11:09:05 PM,07/31/2011 11:14:54 PM,07/31/2011 11:19:19 PM,07/31/2011 11:38:06 PM,Code 2 Transport,07/31/2011 11:55:19 PM,GEARY BL/4TH AV,SF,94118,B07,31,7116,3,3,3,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.781110995698, -122.462139277182)",112120382-99 +121680125,E36,12055690,Medical Incident,06/16/2012,06/16/2012,06/16/2012 09:23:54 AM,06/16/2012 09:25:41 AM,06/16/2012 09:26:51 AM,06/16/2012 09:32:51 AM,06/16/2012 09:39:48 AM,04/25/2016 01:58:11 PM,04/25/2016 01:58:11 PM,Other,06/16/2012 10:30:32 AM,600 Block of VAN NESS AVE,SF,94102,B02,36,3164,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.78147394156, -122.42068958116)",121680125-E36 +111670111,E02,11055067,Medical Incident,06/16/2011,06/16/2011,06/16/2011 11:17:40 AM,06/16/2011 11:18:38 AM,06/16/2011 11:19:27 AM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/16/2011 11:21:15 AM,600 Block of JACKSON ST,SF,94108,B01,2,1312,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.796045564581, -122.406033060722)",111670111-E02 +160910191,KM03,16035937,Medical Incident,03/31/2016,03/30/2016,03/31/2016 01:41:42 AM,03/31/2016 01:46:03 AM,03/31/2016 01:46:27 AM,03/31/2016 01:47:05 AM,03/31/2016 01:55:45 AM,03/31/2016 02:06:29 AM,03/31/2016 02:12:46 AM,Code 2 Transport,03/31/2016 02:51:14 AM,1700 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",160910191-KM03 +111160168,KM02,11038265,Medical Incident,04/26/2011,04/26/2011,04/26/2011 12:06:23 PM,04/26/2011 12:07:06 PM,04/26/2011 12:07:43 PM,04/26/2011 12:08:31 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 12:17:27 PM,1700 Block of 44TH AVE,SF,94122,B08,23,7651,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7539955074466, -122.503258318497)",111160168-KM02 +113630055,57,11120491,Medical Incident,12/29/2011,12/28/2011,12/29/2011 07:21:25 AM,12/29/2011 07:21:56 AM,12/29/2011 07:22:01 AM,12/29/2011 07:25:46 AM,12/29/2011 07:34:16 AM,12/29/2011 07:48:38 AM,12/29/2011 08:13:31 AM,Code 2 Transport,12/29/2011 07:26:49 AM,0 Block of SUTTER ST,SF,94104,B01,13,1164,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7902143401629, -122.400344691288)",113630055-57 +130250085,E09,13008558,Medical Incident,01/25/2013,01/25/2013,01/25/2013 08:19:04 AM,01/25/2013 08:20:14 AM,01/25/2013 08:26:42 AM,01/25/2013 08:28:26 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/25/2013 08:28:52 AM,0 Block of WATCHMAN WAY,SF,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7553520145946, -122.395257871762)",130250085-E09 +160641380,AM10,16025459,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:43:08 AM,03/04/2016 10:44:45 AM,03/04/2016 10:45:40 AM,03/04/2016 10:46:59 AM,03/04/2016 11:05:31 AM,03/04/2016 11:24:15 AM,03/04/2016 11:32:41 AM,Code 2 Transport,03/04/2016 12:10:34 PM,0 Block of JUSTIN DR,San Francisco,94110,B06,32,5641,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7341616600707, -122.422534504294)",160641380-AM10 +160891610,88,16035319,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:57:13 AM,03/29/2016 11:57:13 AM,03/29/2016 11:57:27 AM,03/29/2016 11:58:01 AM,03/29/2016 12:05:17 PM,03/29/2016 12:14:42 PM,03/29/2016 12:49:19 PM,Code 2 Transport,03/29/2016 01:24:24 PM,ILLINOIS ST/25TH ST,San Francisco,94107,B10,25,2611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7528903784862, -122.386811649355)",160891610-88 +130040118,E19,13001301,Medical Incident,01/04/2013,01/04/2013,01/04/2013 09:20:24 AM,01/04/2013 09:21:22 AM,01/04/2013 09:21:37 AM,01/04/2013 09:24:31 AM,01/04/2013 09:26:47 AM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 09:36:54 AM,300 Block of MONTICELLO ST,SF,94132,B09,19,8447,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7206411715909, -122.470834659184)",130040118-E19 +132380272,E13,13080365,Citizen Assist / Service Call,08/26/2013,08/26/2013,08/26/2013 04:34:58 PM,08/26/2013 04:36:24 PM,08/26/2013 04:36:31 PM,08/26/2013 04:37:29 PM,08/26/2013 04:40:09 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 04:54:16 PM,SANSOME ST/BUSH ST,SF,94104,B01,13,1165,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7911771722795, -122.400744022695)",132380272-E13 +160252669,67,16010021,Medical Incident,01/25/2016,01/25/2016,01/25/2016 04:49:00 PM,01/25/2016 04:49:18 PM,01/25/2016 04:49:42 PM,01/25/2016 04:50:56 PM,01/25/2016 04:58:22 PM,01/25/2016 05:10:02 PM,01/25/2016 05:34:43 PM,Code 2 Transport,01/25/2016 06:01:10 PM,1000 Block of BRYANT ST,San Francisco,94103,B03,29,2324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7716586752225, -122.407967687961)",160252669-67 +130670090,E01,13022254,Medical Incident,03/08/2013,03/08/2013,03/08/2013 08:50:40 AM,03/08/2013 08:51:40 AM,03/08/2013 08:52:09 AM,03/08/2013 08:52:13 AM,03/08/2013 08:58:01 AM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,Other,03/08/2013 09:02:56 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",130670090-E01 +121430029,T14,12047415,Structure Fire,05/22/2012,05/21/2012,05/22/2012 02:55:38 AM,05/22/2012 02:55:38 AM,05/22/2012 02:57:12 AM,05/22/2012 02:59:12 AM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 03:01:43 AM,43RD AV/CABRILLO ST,SF,94121,B07,34,7271,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7735543246091, -122.503608585374)",121430029-T14 +102440151,B02,10076950,Alarms,09/01/2010,09/01/2010,09/01/2010 10:52:32 AM,09/01/2010 10:53:49 AM,09/01/2010 10:54:10 AM,09/01/2010 10:54:56 AM,09/01/2010 11:03:14 AM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Fire,09/01/2010 11:03:46 AM,1300 Block of GROVE ST,SF,94117,B05,21,4146,3,3,3,false,,1,CHIEF,3,5,5,Hayes Valley,"(37.7758737369893, -122.438834116222)",102440151-B02 +160800139,79,16031647,Medical Incident,03/20/2016,03/19/2016,03/20/2016 12:41:51 AM,03/20/2016 12:42:53 AM,03/20/2016 12:43:15 AM,03/20/2016 12:43:28 AM,03/20/2016 12:58:35 AM,03/20/2016 01:12:42 AM,03/20/2016 01:25:03 AM,Code 2 Transport,03/20/2016 02:18:43 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160800139-79 +121920038,67,12063795,Medical Incident,07/10/2012,07/09/2012,07/10/2012 04:09:12 AM,07/10/2012 04:13:26 AM,07/10/2012 04:14:46 AM,04/25/2016 01:57:47 PM,07/10/2012 04:16:14 AM,07/10/2012 04:22:02 AM,07/10/2012 04:49:35 AM,Other,07/10/2012 05:16:49 AM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",121920038-67 +140160361,T01,14005623,Alarms,01/16/2014,01/16/2014,01/16/2014 07:59:35 PM,01/16/2014 08:00:32 PM,01/16/2014 08:00:58 PM,01/16/2014 08:02:38 PM,01/16/2014 08:05:37 PM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,Other,01/16/2014 08:09:06 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",140160361-T01 +111170245,75,11038669,Medical Incident,04/27/2011,04/27/2011,04/27/2011 04:01:20 PM,04/27/2011 04:03:40 PM,04/27/2011 04:05:54 PM,04/27/2011 04:06:55 PM,04/27/2011 04:12:42 PM,04/27/2011 04:21:19 PM,04/27/2011 04:29:28 PM,Code 2 Transport,04/27/2011 04:56:34 PM,200 Block of STANYAN ST,SF,94118,B07,21,4557,2,2,2,true,,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7766831964988, -122.454982834151)",111170245-75 +120930131,KM01,12030760,Medical Incident,04/02/2012,04/02/2012,04/02/2012 10:57:14 AM,04/02/2012 10:59:40 AM,04/02/2012 11:00:15 AM,04/02/2012 11:01:59 AM,04/02/2012 11:07:22 AM,04/02/2012 11:29:10 AM,04/02/2012 11:41:21 AM,Code 2 Transport,04/02/2012 12:13:16 PM,600 Block of JACKSON ST,SF,94108,B01,2,1312,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.796045564581, -122.406033060722)",120930131-KM01 +111530219,E51,11050605,Medical Incident,06/02/2011,06/02/2011,06/02/2011 03:47:59 PM,06/02/2011 03:48:30 PM,06/02/2011 03:49:19 PM,06/02/2011 03:51:04 PM,06/02/2011 03:52:05 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/02/2011 04:03:48 PM,1100 Block of GORGAS AVE,PR,94129,B99,51,4633,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8013852174477, -122.44962260299)",111530219-E51 +160483655,60,16019512,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:36:16 PM,02/17/2016 08:37:01 PM,02/17/2016 08:37:24 PM,02/17/2016 08:38:02 PM,02/17/2016 08:44:01 PM,02/17/2016 09:13:24 PM,02/17/2016 09:16:42 PM,Code 2 Transport,02/17/2016 09:53:59 PM,100 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7524546394883, -122.421643731762)",160483655-60 +132350032,55,13079195,Medical Incident,08/23/2013,08/22/2013,08/23/2013 03:09:27 AM,08/23/2013 03:10:28 AM,08/23/2013 03:10:41 AM,08/23/2013 03:11:30 AM,08/23/2013 03:20:33 AM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,08/23/2013 03:29:15 AM,400 Block of 15TH AVE,SF,94118,B07,31,7154,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7796175741202, -122.473838626607)",132350032-55 +160613609,84,16024503,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:30:03 PM,03/01/2016 10:31:02 PM,03/01/2016 10:32:30 PM,03/01/2016 10:32:50 PM,03/01/2016 10:47:52 PM,03/01/2016 11:09:17 PM,03/01/2016 11:38:49 PM,Code 2 Transport,03/02/2016 12:13:17 AM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160613609-84 +121930355,78,12064390,Medical Incident,07/11/2012,07/11/2012,07/11/2012 10:40:46 PM,07/11/2012 10:42:49 PM,07/11/2012 10:45:57 PM,07/11/2012 10:47:02 PM,07/11/2012 10:49:36 PM,07/11/2012 11:10:49 PM,07/11/2012 11:17:20 PM,Code 2 Transport,07/11/2012 11:51:46 PM,100 Block of CLINTON PARK,SF,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7692677111289, -122.423396856968)",121930355-78 +111840042,E01,11060657,Alarms,07/03/2011,07/02/2011,07/03/2011 02:22:41 AM,07/03/2011 02:24:09 AM,07/03/2011 02:24:19 AM,07/03/2011 02:25:40 AM,07/03/2011 02:26:48 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 02:36:58 AM,300 Block of 3RD ST,SF,94107,B03,1,2176,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7833526602624, -122.398485675312)",111840042-E01 +113420056,RS2,11113295,Structure Fire,12/08/2011,12/07/2011,12/08/2011 06:25:54 AM,12/08/2011 06:28:48 AM,12/08/2011 06:28:55 AM,12/08/2011 06:31:09 AM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/08/2011 06:36:42 AM,500 Block of BURNETT AVE,SF,94131,B06,24,5281,3,3,3,false,,1,RESCUE SQUAD,10,6,8,Twin Peaks,"(37.7522092988242, -122.444482891572)",113420056-RS2 +120220151,RS1,12007474,Structure Fire,01/22/2012,01/22/2012,01/22/2012 11:26:39 AM,01/22/2012 11:27:55 AM,01/22/2012 11:28:55 AM,01/22/2012 11:30:27 AM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/22/2012 11:46:59 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Fire,1,RESCUE SQUAD,8,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",120220151-RS1 +111840085,E44,11060698,Medical Incident,07/03/2011,07/03/2011,07/03/2011 07:57:39 AM,07/03/2011 08:00:16 AM,07/03/2011 08:00:51 AM,07/03/2011 08:01:54 AM,07/03/2011 08:06:34 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 08:17:58 AM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",111840085-E44 +131010052,E01,13033852,Medical Incident,04/11/2013,04/10/2013,04/11/2013 06:22:11 AM,04/11/2013 06:24:09 AM,04/11/2013 06:24:38 AM,04/11/2013 06:26:53 AM,04/11/2013 06:30:47 AM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Unable to Locate,04/11/2013 06:32:00 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7832777786539, -122.409831752766)",131010052-E01 +140600227,54,14020293,Medical Incident,03/01/2014,03/01/2014,03/01/2014 03:08:16 PM,03/01/2014 03:08:51 PM,03/01/2014 03:09:09 PM,03/01/2014 03:09:17 PM,03/01/2014 03:23:46 PM,04/25/2016 01:47:57 PM,03/01/2014 03:47:45 PM,Code 2 Transport,03/01/2014 04:22:51 PM,3100 Block of DIVISADERO ST,SF,94123,B04,16,4166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7985647213485, -122.442489560521)",140600227-54 +130350395,E12,13012164,Medical Incident,02/04/2013,02/04/2013,02/04/2013 08:34:05 PM,02/04/2013 08:34:53 PM,02/04/2013 08:36:28 PM,02/04/2013 08:37:28 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/04/2013 08:42:57 PM,500 Block of CASTRO ST,SF,94114,B06,6,5437,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,6,8,Castro/Upper Market,"(37.7600930498172, -122.434858190165)",130350395-E12 +110760262,E01,11025037,Structure Fire,03/17/2011,03/17/2011,03/17/2011 03:17:36 PM,03/17/2011 03:17:36 PM,03/17/2011 03:18:09 PM,04/25/2016 02:05:35 PM,03/17/2011 03:20:46 PM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 03:21:20 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",110760262-E01 +110210344,RS2,11007094,Medical Incident,01/21/2011,01/21/2011,01/21/2011 10:43:15 PM,01/21/2011 10:44:51 PM,01/21/2011 10:45:35 PM,01/21/2011 10:46:20 PM,01/21/2011 10:48:47 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/21/2011 10:50:30 PM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,false,,1,RESCUE SQUAD,1,6,9,Mission,"(37.752766726673, -122.410519781929)",110210344-RS2 +140910241,KM14,14030656,Medical Incident,04/01/2014,04/01/2014,04/01/2014 05:33:58 PM,04/01/2014 05:34:41 PM,04/01/2014 05:37:21 PM,04/01/2014 05:39:23 PM,04/01/2014 05:45:08 PM,04/01/2014 06:03:15 PM,04/01/2014 06:15:58 PM,Other,04/01/2014 06:28:20 PM,EDDY ST/TAYLOR ST,SAN FRANCISCO,94102,B03,1,1453,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",140910241-KM14 +113380029,E26,11111872,Alarms,12/04/2011,12/03/2011,12/04/2011 01:46:09 AM,12/04/2011 01:47:44 AM,12/04/2011 01:47:49 AM,12/04/2011 01:49:22 AM,12/04/2011 01:52:20 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/04/2011 01:59:24 AM,0 Block of WILDER ST,SF,94131,B06,26,8146,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7340899662655, -122.433410011879)",113380029-E26 +140710349,E06,14024102,Gas Leak (Natural and LP Gases),03/12/2014,03/12/2014,03/12/2014 07:11:05 PM,03/12/2014 07:12:27 PM,03/12/2014 07:12:42 PM,03/12/2014 07:13:38 PM,03/12/2014 07:15:49 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Fire,03/12/2014 07:29:11 PM,0 Block of BEAVER ST,SAN FRANCISCO,94114,B05,6,5233,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7650483291206, -122.434292441696)",140710349-E06 +121310345,77,12043718,Medical Incident,05/10/2012,05/10/2012,05/10/2012 09:15:35 PM,05/10/2012 09:18:34 PM,05/10/2012 09:18:53 PM,05/10/2012 09:19:18 PM,05/10/2012 09:29:05 PM,05/10/2012 09:49:07 PM,05/10/2012 09:54:51 PM,Code 2 Transport,05/10/2012 10:26:10 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",121310345-77 +160453415,58,16018319,Medical Incident,02/14/2016,02/14/2016,02/14/2016 10:16:57 PM,02/14/2016 10:17:26 PM,02/14/2016 10:17:34 PM,02/14/2016 10:17:46 PM,02/14/2016 10:23:04 PM,02/14/2016 10:36:53 PM,02/14/2016 10:45:58 PM,Code 3 Transport,02/14/2016 11:33:31 PM,700 Block of 21ST AVE,San Francisco,94121,B07,14,7167,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7736958053498, -122.480041380237)",160453415-58 +160102071,AM16,16004083,Medical Incident,01/10/2016,01/10/2016,01/10/2016 03:08:55 PM,01/10/2016 03:10:46 PM,01/10/2016 03:12:23 PM,01/10/2016 03:12:47 PM,01/10/2016 03:24:51 PM,01/10/2016 03:37:02 PM,01/10/2016 03:50:52 PM,Code 2 Transport,01/10/2016 04:13:51 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",160102071-AM16 +113470382,84,11115286,Medical Incident,12/13/2011,12/13/2011,12/13/2011 09:51:16 PM,12/13/2011 09:53:03 PM,12/13/2011 09:59:41 PM,12/13/2011 10:05:00 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,Other,12/13/2011 10:05:47 PM,200 Block of CAMERON WAY,SF,94124,B10,17,6613,2,2,2,true,,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.720440433346, -122.388366313776)",113470382-84 +160782740,82,16031091,Medical Incident,03/18/2016,03/18/2016,03/18/2016 04:55:08 PM,03/18/2016 04:58:10 PM,03/18/2016 04:59:41 PM,03/18/2016 04:59:51 PM,03/18/2016 05:02:41 PM,03/18/2016 05:10:22 PM,03/18/2016 05:28:37 PM,Code 2 Transport,03/18/2016 05:52:23 PM,RINGOLD ST/8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7745521642917, -122.409519522231)",160782740-82 +112000302,93,11066048,Medical Incident,07/19/2011,07/19/2011,07/19/2011 07:05:19 PM,07/19/2011 07:06:04 PM,07/19/2011 07:07:08 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/19/2011 07:08:18 PM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,true,,1,MEDIC,5,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",112000302-93 +111950206,T01,11064391,Alarms,07/14/2011,07/14/2011,07/14/2011 02:37:11 PM,07/14/2011 02:38:05 PM,07/14/2011 02:38:21 PM,07/14/2011 02:41:02 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 02:43:19 PM,600 Block of THE EMBARCADERO,SF,94111,B03,35,936,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",111950206-T01 +102650058,86,10083781,Medical Incident,09/22/2010,09/21/2010,09/22/2010 07:30:34 AM,09/22/2010 07:32:50 AM,09/22/2010 07:36:40 AM,09/22/2010 07:37:05 AM,09/22/2010 07:44:14 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Unable to Locate,09/22/2010 07:51:09 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",102650058-86 +130810243,E11,13027163,Medical Incident,03/22/2013,03/22/2013,03/22/2013 04:28:28 PM,03/22/2013 04:29:39 PM,03/22/2013 04:30:23 PM,03/22/2013 04:32:21 PM,03/22/2013 04:33:06 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 04:41:58 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.749836317622, -122.418280538883)",130810243-E11 +102330318,E08,10073468,Medical Incident,08/21/2010,08/21/2010,08/21/2010 11:52:27 PM,08/21/2010 11:53:14 PM,08/21/2010 11:53:38 PM,08/21/2010 11:55:22 PM,08/21/2010 11:58:06 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/21/2010 11:58:34 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7801303744947, -122.409871449933)",102330318-E08 +110780335,E14,11025798,Traffic Collision,03/19/2011,03/19/2011,03/19/2011 09:08:49 PM,03/19/2011 09:08:49 PM,03/19/2011 09:13:58 PM,03/19/2011 09:14:49 PM,03/19/2011 09:16:48 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 09:30:42 PM,25TH AV/BALBOA ST,SF,94121,B07,14,7212,2,2,2,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7763021660202, -122.484460651611)",110780335-E14 +133280302,T12,13111572,Structure Fire,11/24/2013,11/24/2013,11/24/2013 08:31:10 PM,11/24/2013 08:31:42 PM,11/24/2013 08:31:53 PM,11/24/2013 08:33:21 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 08:44:51 PM,1100 Block of PAGE ST,SF,94117,B05,21,4251,3,3,3,false,Alarm,1,TRUCK,8,5,5,Haight Ashbury,"(37.7719389863749, -122.439733696285)",133280302-T12 +110970229,65,11032175,Medical Incident,04/07/2011,04/07/2011,04/07/2011 01:39:43 PM,04/07/2011 01:41:59 PM,04/07/2011 01:43:05 PM,04/07/2011 01:43:19 PM,04/07/2011 01:46:40 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,No Merit,04/07/2011 01:49:05 PM,VAN NESS AV/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",110970229-65 +103440390,94,10110382,Traffic Collision,12/10/2010,12/10/2010,12/10/2010 09:10:27 PM,12/10/2010 09:10:27 PM,12/10/2010 09:11:30 PM,12/10/2010 09:11:51 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,No Merit,12/10/2010 09:13:56 PM,500 Block of 6TH ST,SF,94103,B03,8,2256,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7753853083573, -122.401801880226)",103440390-94 +122380083,E17,12078760,Medical Incident,08/25/2012,08/24/2012,08/25/2012 07:32:52 AM,08/25/2012 07:34:28 AM,08/25/2012 07:35:59 AM,08/25/2012 07:37:20 AM,08/25/2012 07:39:13 AM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 07:59:32 AM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7290589753437, -122.385447178388)",122380083-E17 +120810256,D3,12026941,Structure Fire,03/21/2012,03/21/2012,03/21/2012 03:22:23 PM,03/21/2012 03:22:47 PM,03/21/2012 03:23:04 PM,03/21/2012 03:24:44 PM,03/21/2012 03:33:47 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 04:22:56 PM,2000 Block of TARAVAL ST,SF,94116,B08,18,7522,3,3,3,false,Fire,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7425630700828, -122.488015677623)",120810256-D3 +160752832,53,16029801,Medical Incident,03/15/2016,03/15/2016,03/15/2016 05:01:17 PM,03/15/2016 05:03:16 PM,03/15/2016 05:03:54 PM,03/15/2016 05:04:09 PM,03/15/2016 05:10:20 PM,03/15/2016 05:30:03 PM,03/15/2016 05:36:05 PM,Code 2 Transport,03/15/2016 06:29:00 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160752832-53 +160880937,AM28,16034869,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:00:05 AM,03/28/2016 09:00:38 AM,03/28/2016 09:01:25 AM,03/28/2016 09:01:29 AM,03/28/2016 09:08:24 AM,03/28/2016 09:27:35 AM,03/28/2016 09:32:56 AM,Code 2 Transport,03/28/2016 09:56:11 AM,100 Block of CORTLAND AVE,San Francisco,94110,B06,32,5652,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Bernal Heights,"(37.7398228694927, -122.420029084534)",160880937-AM28 +160552375,74,16022053,Medical Incident,02/24/2016,02/24/2016,02/24/2016 03:15:21 PM,02/24/2016 03:16:52 PM,02/24/2016 03:17:07 PM,02/24/2016 03:17:07 PM,02/24/2016 03:29:07 PM,02/24/2016 03:40:35 PM,02/24/2016 03:51:27 PM,Code 2 Transport,02/24/2016 04:10:14 PM,"LINCOLN BL/GRAHAM ST, PR",Presidio,94129,B99,51,4612,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.801503377222, -122.456178490518)",160552375-74 +132050344,E24,13069550,Medical Incident,07/24/2013,07/24/2013,07/24/2013 08:16:12 PM,07/24/2013 08:16:31 PM,07/24/2013 08:17:15 PM,07/24/2013 08:18:41 PM,07/24/2013 08:20:38 PM,04/25/2016 01:51:39 PM,04/25/2016 01:51:39 PM,Other,07/24/2013 08:33:54 PM,500 Block of HILL ST,SF,94114,B06,24,5466,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7554105525414, -122.433367007382)",132050344-E24 +102300044,65,10072286,Medical Incident,08/18/2010,08/17/2010,08/18/2010 06:13:32 AM,08/18/2010 06:15:04 AM,08/18/2010 06:15:24 AM,08/18/2010 06:15:46 AM,08/18/2010 06:29:36 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Gone on Arrival,08/18/2010 06:33:05 AM,900 Block of LARKIN ST,SF,94109,B04,3,1641,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7863419196668, -122.418065082006)",102300044-65 +112590221,59,11085419,Medical Incident,09/16/2011,09/16/2011,09/16/2011 01:56:56 PM,09/16/2011 01:59:11 PM,09/16/2011 02:01:03 PM,09/16/2011 02:01:16 PM,09/16/2011 02:12:07 PM,09/16/2011 02:37:47 PM,09/16/2011 03:10:03 PM,Code 2 Transport,09/16/2011 03:26:32 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",112590221-59 +160461478,59,16018492,Medical Incident,02/15/2016,02/15/2016,02/15/2016 12:06:50 PM,02/15/2016 12:07:57 PM,02/15/2016 12:09:32 PM,02/15/2016 12:09:57 PM,02/15/2016 12:18:57 PM,02/15/2016 12:39:03 PM,02/15/2016 01:10:16 PM,Code 2 Transport,02/15/2016 01:33:10 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.765718993574, -122.409520691153)",160461478-59 +133510359,94,13119335,Medical Incident,12/17/2013,12/17/2013,12/17/2013 06:25:51 PM,12/17/2013 06:28:45 PM,12/17/2013 06:34:16 PM,12/17/2013 06:34:24 PM,12/17/2013 06:41:20 PM,12/17/2013 07:03:21 PM,12/17/2013 07:37:10 PM,Code 2 Transport,12/17/2013 08:07:10 PM,4400 Block of 3RD ST,SF,94124,B10,25,6467,2,2,2,false,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",133510359-94 +110400237,E01,11013279,Medical Incident,02/09/2011,02/09/2011,02/09/2011 02:32:22 PM,02/09/2011 02:33:17 PM,02/09/2011 02:33:43 PM,02/09/2011 02:35:35 PM,02/09/2011 02:39:46 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 02:44:12 PM,900 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7871735250079, -122.417641342653)",110400237-E01 +123520162,E01,12117721,Citizen Assist / Service Call,12/17/2012,12/17/2012,12/17/2012 11:32:55 AM,12/17/2012 11:33:37 AM,12/17/2012 11:33:56 AM,12/17/2012 11:34:19 AM,12/17/2012 11:39:25 AM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 11:40:44 AM,0 Block of 2ND ST,SF,94105,B03,1,2144,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7885900724805, -122.40062712039)",123520162-E01 +140220287,B10,14007605,Structure Fire,01/22/2014,01/22/2014,01/22/2014 06:01:41 PM,01/22/2014 06:02:31 PM,01/22/2014 06:02:49 PM,01/22/2014 06:03:04 PM,01/22/2014 06:05:53 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/22/2014 06:13:59 PM,1000 Block of OAKDALE AVE,SF,94124,B10,17,6647,A,A,2,false,Alarm,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7288155676841, -122.380327013416)",140220287-B10 +121080270,E13,12035831,Traffic Collision,04/17/2012,04/17/2012,04/17/2012 05:46:36 PM,04/17/2012 05:46:49 PM,04/17/2012 05:47:08 PM,04/17/2012 05:48:32 PM,04/17/2012 05:49:25 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/17/2012 05:58:07 PM,SANSOME ST/CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7930602991213, -122.401126343901)",121080270-E13 +131510323,E03,13051248,Medical Incident,05/31/2013,05/31/2013,05/31/2013 06:29:54 PM,05/31/2013 06:30:17 PM,05/31/2013 06:33:07 PM,04/25/2016 01:52:31 PM,05/31/2013 06:35:35 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 06:37:35 PM,GROVE ST/HYDE ST,SF,94103,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",131510323-E03 +160602850,56,16024019,Medical Incident,02/29/2016,02/29/2016,02/29/2016 06:14:17 PM,02/29/2016 06:14:54 PM,02/29/2016 06:16:46 PM,02/29/2016 06:16:54 PM,02/29/2016 06:27:32 PM,02/29/2016 07:15:15 PM,02/29/2016 07:15:18 PM,Code 2 Transport,02/29/2016 07:40:55 PM,1300 Block of 47TH AVE,San Francisco,94122,B08,23,7721,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.761310398748, -122.506995622889)",160602850-56 +140570357,E28,14019367,Structure Fire,02/26/2014,02/26/2014,02/26/2014 07:43:01 PM,02/26/2014 07:44:25 PM,02/26/2014 07:45:34 PM,02/26/2014 07:46:18 PM,02/26/2014 07:47:43 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/26/2014 07:59:51 PM,400 Block of UNION ST,SF,94133,B01,28,1252,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8008450193266, -122.406384274278)",140570357-E28 +113360172,E03,11111216,Medical Incident,12/02/2011,12/02/2011,12/02/2011 10:36:17 AM,12/02/2011 10:37:40 AM,12/02/2011 10:37:58 AM,12/02/2011 10:39:12 AM,12/02/2011 10:45:25 AM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/02/2011 11:03:00 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",113360172-E03 +160854278,78,16034018,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:41:18 PM,03/25/2016 11:41:18 PM,03/25/2016 11:42:01 PM,03/25/2016 11:42:09 PM,03/25/2016 11:49:25 PM,03/26/2016 12:22:33 AM,03/26/2016 12:32:15 AM,Code 2 Transport,03/26/2016 01:36:58 AM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160854278-78 +140240204,T11,14008189,Gas Leak (Natural and LP Gases),01/24/2014,01/24/2014,01/24/2014 12:25:39 PM,01/24/2014 12:26:47 PM,01/24/2014 12:27:06 PM,01/24/2014 12:30:07 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/24/2014 12:32:46 PM,300 Block of BOCANA ST,SF,94110,B06,32,5742,,3,3,false,Alarm,1,TRUCK,3,6,9,Bernal Heights,"(37.7388924845152, -122.41876726644)",140240204-T11 +130760289,92,13025477,Medical Incident,03/17/2013,03/17/2013,03/17/2013 05:49:09 PM,03/17/2013 05:51:17 PM,03/17/2013 05:51:36 PM,03/17/2013 05:51:55 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 05:52:52 PM,DAVIS ST/WASHINGTON ST,SF,94111,B01,13,1116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7961860716176, -122.398152068472)",130760289-92 +110030222,T01,11001003,Medical Incident,01/03/2011,01/03/2011,01/03/2011 02:50:14 PM,01/03/2011 02:50:44 PM,01/03/2011 02:51:01 PM,01/03/2011 02:52:58 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 02:54:56 PM,200 Block of GEARY ST,SF,94108,B01,1,1323,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",110030222-T01 +123220098,T01,12106967,Structure Fire,11/17/2012,11/16/2012,11/17/2012 06:38:54 AM,11/17/2012 06:38:54 AM,11/17/2012 06:38:59 AM,11/17/2012 06:40:57 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/17/2012 06:41:12 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",123220098-T01 +131900011,E22,13064594,Medical Incident,07/09/2013,07/08/2013,07/09/2013 01:08:05 AM,07/09/2013 01:09:22 AM,07/09/2013 01:09:37 AM,07/09/2013 01:10:41 AM,07/09/2013 01:14:18 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 01:19:42 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",131900011-E22 +160230338,79,16009024,Medical Incident,01/23/2016,01/22/2016,01/23/2016 02:12:57 AM,01/23/2016 02:12:57 AM,01/23/2016 02:20:22 AM,01/23/2016 02:21:31 AM,01/23/2016 02:29:01 AM,01/23/2016 02:37:05 AM,01/23/2016 03:02:52 AM,Code 2 Transport,01/23/2016 03:48:15 AM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160230338-79 +160361907,64,16014253,Medical Incident,02/05/2016,02/05/2016,02/05/2016 12:47:56 PM,02/05/2016 12:50:24 PM,02/05/2016 12:51:05 PM,02/05/2016 12:51:15 PM,02/05/2016 12:59:58 PM,02/05/2016 01:35:00 PM,02/05/2016 02:21:40 PM,Code 2 Transport,02/05/2016 02:56:00 PM,2400 Block of 41ST AVE,San Francisco,94116,B08,18,7636,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7410783762927, -122.499127726885)",160361907-64 +111660195,AM02,11054800,Medical Incident,06/15/2011,06/15/2011,06/15/2011 01:21:53 PM,06/15/2011 01:23:03 PM,06/15/2011 01:28:03 PM,06/15/2011 01:29:09 PM,06/15/2011 01:35:30 PM,06/15/2011 01:44:08 PM,06/15/2011 02:02:37 PM,Code 2 Transport,06/15/2011 02:22:49 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",111660195-AM02 +121840322,89,12061414,Medical Incident,07/02/2012,07/02/2012,07/02/2012 08:23:53 PM,07/02/2012 08:24:47 PM,07/02/2012 08:25:20 PM,07/02/2012 08:25:46 PM,07/02/2012 08:29:58 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 09:10:01 PM,3000 Block of 25TH ST,SF,94110,B06,7,5533,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7511731433127, -122.410367728863)",121840322-89 +130840212,B09,13028070,Structure Fire,03/25/2013,03/25/2013,03/25/2013 02:27:26 PM,03/25/2013 02:27:27 PM,03/25/2013 02:28:10 PM,03/25/2013 02:30:58 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,Other,03/25/2013 02:36:41 PM,100 Block of EXCELSIOR AVE,SF,94112,B09,43,611,3,3,3,false,Alarm,1,CHIEF,3,9,11,Excelsior,"(37.7257265963084, -122.432419861004)",130840212-B09 +112530281,RC2,11083538,Medical Incident,09/10/2011,09/10/2011,09/10/2011 03:33:43 PM,09/10/2011 03:34:40 PM,09/10/2011 03:34:49 PM,04/25/2016 02:02:44 PM,09/10/2011 03:44:27 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 03:52:11 PM,200 Block of 26TH AVE,SF,94121,B07,14,7217,3,3,3,true,,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7847684584929, -122.486087154239)",112530281-RC2 +121300196,82,12043268,Medical Incident,05/09/2012,05/09/2012,05/09/2012 02:01:50 PM,05/09/2012 02:02:49 PM,05/09/2012 02:03:05 PM,05/09/2012 02:04:41 PM,05/09/2012 02:08:46 PM,05/09/2012 02:25:41 PM,05/09/2012 02:35:39 PM,Code 2 Transport,05/09/2012 03:04:56 PM,16TH ST/CAPP ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7651099559558, -122.418698427046)",121300196-82 +120640123,E25,12021090,Structure Fire,03/04/2012,03/04/2012,03/04/2012 09:31:31 AM,03/04/2012 09:35:55 AM,03/04/2012 09:36:03 AM,03/04/2012 09:37:00 AM,03/04/2012 09:39:07 AM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Other,03/04/2012 09:41:06 AM,1800 Block of 25TH ST,SF,94107,B10,37,2615,3,3,3,false,Fire,1,ENGINE,2,10,10,Potrero Hill,"(37.7521976465641, -122.397477711041)",120640123-E25 +130130283,KM04,13004519,Medical Incident,01/13/2013,01/13/2013,01/13/2013 04:31:45 PM,01/13/2013 04:31:45 PM,01/13/2013 04:32:11 PM,01/13/2013 04:33:03 PM,01/13/2013 04:35:51 PM,01/13/2013 04:54:59 PM,01/13/2013 05:06:18 PM,Code 2 Transport,01/13/2013 05:57:27 PM,BROADWAY/ROMOLO ST,SF,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.797920272656, -122.406231390351)",130130283-KM04 +120210183,B01,12007112,Gas Leak (Natural and LP Gases),01/21/2012,01/21/2012,01/21/2012 11:35:28 AM,01/21/2012 11:37:33 AM,01/21/2012 11:37:49 AM,01/21/2012 11:39:00 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 11:46:48 AM,800 Block of CALIFORNIA ST,SF,94108,B01,2,1356,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7922140838535, -122.408238372566)",120210183-B01 +111860371,E28,11061625,Structure Fire,07/05/2011,07/05/2011,07/05/2011 08:13:45 PM,07/05/2011 08:14:46 PM,07/05/2011 08:15:39 PM,07/05/2011 08:16:25 PM,07/05/2011 08:19:43 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 08:30:01 PM,1700 Block of LEAVENWORTH ST,SF,94109,B01,41,1534,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.7968145839692, -122.416953634734)",111860371-E28 +112260145,E17,11074641,Medical Incident,08/14/2011,08/14/2011,08/14/2011 12:03:18 PM,08/14/2011 12:04:11 PM,08/14/2011 12:04:31 PM,08/14/2011 12:05:17 PM,08/14/2011 12:06:47 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 12:17:58 PM,5400 Block of 3RD ST,SF,94124,B10,17,6536,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7280754569094, -122.392931662742)",112260145-E17 +160400333,65,16015884,Medical Incident,02/09/2016,02/08/2016,02/09/2016 04:30:02 AM,02/09/2016 04:30:02 AM,02/09/2016 04:30:45 AM,02/09/2016 04:30:50 AM,02/09/2016 04:33:04 AM,02/09/2016 04:57:28 AM,02/09/2016 05:02:28 AM,Code 2 Transport,02/09/2016 05:41:21 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160400333-65 +120640197,79,12021150,Medical Incident,03/04/2012,03/04/2012,03/04/2012 01:09:20 PM,03/04/2012 01:11:10 PM,03/04/2012 01:13:16 PM,03/04/2012 01:13:27 PM,03/04/2012 01:43:03 PM,03/04/2012 01:43:21 PM,03/04/2012 01:57:04 PM,Code 2 Transport,03/04/2012 02:31:44 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",120640197-79 +140800324,E21,14027154,Structure Fire,03/21/2014,03/21/2014,03/21/2014 08:08:57 PM,03/21/2014 08:10:19 PM,03/21/2014 08:11:16 PM,03/21/2014 08:12:19 PM,03/21/2014 08:13:43 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Fire,03/21/2014 08:16:08 PM,1400 Block of GOLDEN GATE AVE,SAN FRANCISCO,94115,B05,5,3625,3,3,3,false,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7793039657232, -122.434429450678)",140800324-E21 +131110194,E33,13037405,Medical Incident,04/21/2013,04/21/2013,04/21/2013 02:49:07 PM,04/21/2013 02:49:37 PM,04/21/2013 02:50:11 PM,04/21/2013 02:51:50 PM,04/21/2013 02:54:53 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 03:02:52 PM,200 Block of BYXBEE ST,SF,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7187705572293, -122.469775794648)",131110194-E33 +133390392,79,13115060,Medical Incident,12/05/2013,12/05/2013,12/05/2013 10:25:11 PM,12/05/2013 10:27:11 PM,12/05/2013 10:27:50 PM,12/05/2013 10:28:25 PM,12/05/2013 10:33:27 PM,12/05/2013 10:42:57 PM,12/05/2013 10:50:12 PM,Code 2 Transport,12/05/2013 11:10:24 PM,VAN NESS AV/CLAY ST,SF,94109,B04,41,3154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7921746447197, -122.4226941645)",133390392-79 +110080308,E18,11002788,Medical Incident,01/08/2011,01/08/2011,01/08/2011 07:50:48 PM,01/08/2011 07:51:14 PM,01/08/2011 07:51:27 PM,01/08/2011 07:52:37 PM,01/08/2011 07:55:44 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/08/2011 08:16:14 PM,2500 Block of 34TH AVE,SF,94116,B08,18,7554,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7395472638893, -122.491499679744)",110080308-E18 +123570122,T19,12119456,Alarms,12/22/2012,12/22/2012,12/22/2012 10:04:18 AM,12/22/2012 10:06:28 AM,12/22/2012 10:06:39 AM,12/22/2012 10:07:09 AM,12/22/2012 10:11:48 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 10:24:43 AM,300 Block of VICTORIA ST,SF,94132,B09,33,841,3,3,3,true,Alarm,1,TRUCK,2,9,11,Oceanview/Merced/Ingleside,"(37.7170173593096, -122.46540070392)",123570122-T19 +160692163,79,16027514,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:39:23 PM,03/09/2016 02:39:23 PM,03/09/2016 02:39:58 PM,03/09/2016 02:40:07 PM,03/09/2016 03:03:50 PM,03/09/2016 03:12:23 PM,03/09/2016 03:40:02 PM,Code 2 Transport,03/09/2016 04:04:10 PM,0 Block of LESSING ST,San Francisco,94112,B09,33,8357,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.708552084986, -122.455626998702)",160692163-79 +110120211,B07,11004003,Structure Fire,01/12/2011,01/12/2011,01/12/2011 02:07:18 PM,01/12/2011 02:07:26 PM,01/12/2011 02:07:41 PM,01/12/2011 02:08:28 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/12/2011 02:13:40 PM,4500 Block of ANZA ST,SF,94121,B07,34,725,3,3,3,false,,1,CHIEF,2,7,1,Outer Richmond,"(37.7775489727741, -122.496913014025)",110120211-B07 +131070075,T03,13035881,Structure Fire,04/17/2013,04/17/2013,04/17/2013 08:26:38 AM,04/17/2013 08:26:38 AM,04/17/2013 08:27:09 AM,04/17/2013 08:29:17 AM,04/25/2016 01:53:16 PM,04/25/2016 01:53:16 PM,04/25/2016 01:53:16 PM,Other,04/17/2013 08:30:31 AM,400 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,false,Alarm,1,TRUCK,2,1,3,Tenderloin,"(37.787297919885, -122.409833940233)",131070075-T03 +160350957,52,16013733,Medical Incident,02/04/2016,02/04/2016,02/04/2016 09:20:09 AM,02/04/2016 09:20:09 AM,02/04/2016 09:20:30 AM,02/04/2016 09:20:38 AM,02/04/2016 09:28:19 AM,02/04/2016 09:45:04 AM,02/04/2016 10:02:24 AM,Code 2 Transport,02/04/2016 11:12:04 AM,1200 Block of DOLORES ST,San Francisco,94110,B06,11,5536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7498423670065, -122.424811056864)",160350957-52 +160770102,63,16030413,Medical Incident,03/17/2016,03/16/2016,03/17/2016 12:32:11 AM,03/17/2016 12:38:25 AM,03/17/2016 12:40:00 AM,03/17/2016 12:40:11 AM,03/17/2016 12:58:46 AM,03/17/2016 01:07:03 AM,03/17/2016 01:12:58 AM,Code 2 Transport,03/17/2016 01:45:41 AM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",160770102-63 +160641691,52,16025502,Medical Incident,03/04/2016,03/04/2016,03/04/2016 12:11:46 PM,03/04/2016 12:13:25 PM,03/04/2016 12:13:42 PM,03/04/2016 12:13:49 PM,03/04/2016 12:26:47 PM,03/04/2016 12:49:36 PM,03/04/2016 01:16:42 PM,Code 2 Transport,03/04/2016 01:51:15 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B99,51,4616,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160641691-52 +130020078,E51,13000560,Medical Incident,01/02/2013,01/02/2013,01/02/2013 08:03:38 AM,01/02/2013 08:04:59 AM,01/02/2013 08:05:14 AM,01/02/2013 08:06:32 AM,01/02/2013 08:10:22 AM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 08:29:30 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",130020078-E51 +160561608,KM02,16022361,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:47:19 AM,02/25/2016 11:49:40 AM,02/25/2016 11:50:00 AM,02/25/2016 11:50:08 AM,02/25/2016 12:06:05 PM,02/25/2016 12:06:07 PM,02/25/2016 12:18:21 PM,Code 2 Transport,02/25/2016 12:47:37 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160561608-KM02 +112660139,T15,11087850,Alarms,09/23/2011,09/23/2011,09/23/2011 10:54:19 AM,09/23/2011 10:57:28 AM,09/23/2011 10:57:52 AM,09/23/2011 10:59:33 AM,09/23/2011 11:04:11 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 11:17:44 AM,300 Block of NAYLOR ST,SF,94112,B09,43,6233,3,3,3,false,,1,TRUCK,3,9,11,Excelsior,"(37.7095014922438, -122.432140574524)",112660139-T15 +160013387,70,16000478,Medical Incident,01/01/2016,01/01/2016,01/01/2016 07:59:56 PM,01/01/2016 08:01:18 PM,01/01/2016 08:02:46 PM,01/01/2016 08:02:59 PM,01/01/2016 08:25:58 PM,01/01/2016 08:37:06 PM,01/01/2016 08:44:48 PM,Code 2 Transport,01/01/2016 09:12:15 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,3,3,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160013387-70 +120130067,E05,12004345,Medical Incident,01/13/2012,01/12/2012,01/13/2012 07:27:27 AM,01/13/2012 07:28:17 AM,01/13/2012 07:28:27 AM,01/13/2012 07:29:15 AM,01/13/2012 07:32:16 AM,04/25/2016 02:00:39 PM,04/25/2016 02:00:39 PM,Other,01/13/2012 07:40:41 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",120130067-E05 +132800153,AM12,13095255,Medical Incident,10/07/2013,10/07/2013,10/07/2013 11:07:07 AM,10/07/2013 11:08:38 AM,10/07/2013 11:08:54 AM,10/07/2013 11:09:27 AM,10/07/2013 11:13:46 AM,10/07/2013 11:31:13 AM,10/07/2013 11:42:16 AM,Code 2 Transport,10/07/2013 12:13:00 PM,7TH ST/BRYANT ST,SF,94103,B03,8,2311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7742810407569, -122.404748493756)",132800153-AM12 +120110049,83,12003707,Medical Incident,01/11/2012,01/10/2012,01/11/2012 06:46:59 AM,01/11/2012 06:47:20 AM,01/11/2012 06:47:54 AM,01/11/2012 06:48:16 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 06:52:11 AM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",120110049-83 +130850063,T07,13028287,Alarms,03/26/2013,03/25/2013,03/26/2013 06:52:04 AM,03/26/2013 06:53:15 AM,03/26/2013 06:54:16 AM,03/26/2013 06:56:43 AM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 07:00:33 AM,1700 Block of HARRISON ST,SF,94103,B02,36,5112,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.769082767924, -122.413353472663)",130850063-T07 +140080242,E03,14002860,Medical Incident,01/08/2014,01/08/2014,01/08/2014 02:39:44 PM,01/08/2014 02:40:59 PM,01/08/2014 02:45:45 PM,01/08/2014 02:45:45 PM,01/08/2014 02:45:45 PM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/08/2014 02:53:37 PM,JONES ST/EDDY ST,SF,94102,B03,3,1461,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",140080242-E03 +112250093,T07,11074268,Structure Fire,08/13/2011,08/13/2011,08/13/2011 08:43:18 AM,08/13/2011 08:43:19 AM,08/13/2011 08:43:27 AM,08/13/2011 08:44:40 AM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 08:47:23 AM,23RD ST/FLORIDA ST,SF,94110,B06,7,5476,3,3,3,true,,1,TRUCK,2,6,9,Mission,"(37.7543406157026, -122.410219926643)",112250093-T07 +160410381,88,16016304,Medical Incident,02/10/2016,02/09/2016,02/10/2016 04:56:48 AM,02/10/2016 04:58:11 AM,02/10/2016 04:59:04 AM,02/10/2016 04:59:19 AM,02/10/2016 05:09:08 AM,02/10/2016 05:19:50 AM,02/10/2016 05:41:29 AM,Code 2 Transport,02/10/2016 06:11:33 AM,MAIN ST/FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7893692677435, -122.391858291445)",160410381-88 +113290228,E01,11109213,Medical Incident,11/25/2011,11/25/2011,11/25/2011 06:58:43 PM,11/25/2011 06:58:56 PM,11/25/2011 06:59:03 PM,11/25/2011 06:59:53 PM,11/25/2011 07:03:23 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 07:10:37 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",113290228-E01 +141000138,RS1,14033721,Medical Incident,04/10/2014,04/10/2014,04/10/2014 10:20:26 AM,04/10/2014 10:22:50 AM,04/10/2014 10:23:44 AM,04/10/2014 10:24:57 AM,04/10/2014 10:27:00 AM,04/25/2016 01:47:17 PM,04/25/2016 01:47:17 PM,Code 2 Transport,04/10/2014 10:29:51 AM,1200 Block of FOLSOM ST,SAN FRANCISCO,94103,B02,29,2322,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,South of Market,"(37.7743416410507, -122.410787635785)",141000138-RS1 +160390549,57,16015490,Medical Incident,02/08/2016,02/07/2016,02/08/2016 06:15:23 AM,02/08/2016 06:16:46 AM,02/08/2016 06:16:58 AM,02/08/2016 06:17:04 AM,02/08/2016 06:21:01 AM,02/08/2016 06:53:07 AM,02/08/2016 07:12:37 AM,Code 2 Transport,02/08/2016 08:00:47 AM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160390549-57 +140680237,E51,14023059,Alarms,03/09/2014,03/09/2014,03/09/2014 06:17:46 PM,03/09/2014 06:18:30 PM,03/09/2014 06:18:44 PM,03/09/2014 06:20:20 PM,03/09/2014 06:25:42 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Fire,03/09/2014 06:33:16 PM,900 Block of MARINE DR,,94129,B99,51,4628,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.8089767888005, -122.47460956271)",140680237-E51 +132210160,85,13074605,Medical Incident,08/09/2013,08/09/2013,08/09/2013 01:18:50 PM,08/09/2013 01:21:24 PM,08/09/2013 01:22:37 PM,08/09/2013 01:24:09 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 01:40:55 PM,ELLIS ST/TAYLOR ST,SF,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",132210160-85 +131480243,B07,13050216,Alarms,05/28/2013,05/28/2013,05/28/2013 02:31:29 PM,05/28/2013 02:32:23 PM,05/28/2013 02:32:44 PM,05/28/2013 02:34:06 PM,05/28/2013 02:38:42 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/28/2013 02:45:51 PM,0 Block of 25TH AVE,SF,94121,B07,14,7216,3,3,3,false,Alarm,1,CHIEF,2,7,2,Seacliff,"(37.7885162445141, -122.484799797447)",131480243-B07 +132790266,KM02,13094963,Medical Incident,10/06/2013,10/06/2013,10/06/2013 02:56:21 PM,10/06/2013 02:56:36 PM,10/06/2013 02:56:45 PM,10/06/2013 02:59:20 PM,10/06/2013 03:04:37 PM,10/06/2013 03:33:36 PM,10/06/2013 03:43:07 PM,Code 2 Transport,10/06/2013 04:20:23 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",132790266-KM02 +120790347,T10,12026366,Medical Incident,03/19/2012,03/19/2012,03/19/2012 07:58:35 PM,03/19/2012 08:00:15 PM,03/19/2012 08:01:15 PM,03/19/2012 08:18:16 PM,03/19/2012 08:23:57 PM,03/19/2012 09:15:28 PM,03/19/2012 09:15:50 PM,Other,03/19/2012 09:36:21 PM,600 Block of CENTRAL AVE,SF,94117,B05,21,4361,2,2,2,false,Non Life-threatening,1,TRUCK,3,5,5,Lone Mountain/USF,"(37.7755599914695, -122.444618039254)",120790347-T10 +111320042,88,11043510,Medical Incident,05/12/2011,05/11/2011,05/12/2011 04:08:42 AM,05/12/2011 04:09:44 AM,05/12/2011 04:10:04 AM,05/12/2011 04:11:11 AM,05/12/2011 04:13:31 AM,05/12/2011 04:29:40 AM,05/12/2011 04:43:02 AM,Code 2 Transport,05/12/2011 04:56:22 AM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2144,3,3,3,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",111320042-88 +132110072,AM02,13071284,Medical Incident,07/30/2013,07/30/2013,07/30/2013 08:53:01 AM,07/30/2013 08:55:12 AM,07/30/2013 08:55:22 AM,07/30/2013 08:56:28 AM,07/30/2013 09:03:35 AM,07/30/2013 09:19:29 AM,07/30/2013 09:32:24 AM,Code 2 Transport,07/30/2013 10:09:22 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",132110072-AM02 +102370406,E05,10074904,Medical Incident,08/25/2010,08/25/2010,08/25/2010 10:10:50 PM,08/25/2010 10:11:27 PM,08/25/2010 10:12:22 PM,08/25/2010 10:13:05 PM,08/25/2010 10:15:27 PM,08/25/2010 10:42:19 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 10:59:01 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",102370406-E05 +140480240,KM02,14016401,Medical Incident,02/17/2014,02/17/2014,02/17/2014 04:54:23 PM,02/17/2014 04:55:47 PM,02/17/2014 04:59:03 PM,02/17/2014 04:59:08 PM,02/17/2014 05:02:22 PM,02/17/2014 05:20:07 PM,02/17/2014 05:32:56 PM,Code 2 Transport,02/17/2014 06:05:27 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",140480240-KM02 +110070390,E43,11002502,Structure Fire,01/07/2011,01/07/2011,01/07/2011 10:18:28 PM,01/07/2011 10:18:28 PM,01/07/2011 10:19:05 PM,01/07/2011 10:20:03 PM,01/07/2011 10:21:40 PM,04/25/2016 02:06:42 PM,04/25/2016 02:06:42 PM,Other,01/07/2011 10:22:16 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",110070390-E43 +103260137,T01,10104445,Medical Incident,11/22/2010,11/22/2010,11/22/2010 11:44:56 AM,11/22/2010 11:45:15 AM,11/22/2010 11:45:35 AM,04/25/2016 02:07:29 PM,11/22/2010 11:48:21 AM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/22/2010 11:55:34 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,TRUCK,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",103260137-T01 +122200331,B10,12073099,Alarms,08/07/2012,08/07/2012,08/07/2012 10:29:06 PM,08/07/2012 10:30:45 PM,08/07/2012 10:30:51 PM,08/07/2012 10:32:30 PM,08/07/2012 10:35:05 PM,04/25/2016 01:57:20 PM,04/25/2016 01:57:20 PM,Other,08/07/2012 10:38:44 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Alarm,1,CHIEF,3,10,9,Potrero Hill,"(37.7572895904578, -122.406870402082)",122200331-B10 +130680234,89,13022712,Medical Incident,03/09/2013,03/09/2013,03/09/2013 02:39:54 PM,03/09/2013 02:41:04 PM,03/09/2013 02:41:27 PM,03/09/2013 02:41:50 PM,03/09/2013 02:46:36 PM,03/09/2013 02:56:56 PM,03/09/2013 03:33:16 PM,Code 2 Transport,03/09/2013 04:00:43 PM,200 Block of SILLIMAN ST,SF,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7306413240459, -122.407586652172)",130680234-89 +160170944,75,16006761,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:28:27 AM,01/17/2016 09:28:47 AM,01/17/2016 09:29:08 AM,01/17/2016 09:29:22 AM,01/17/2016 09:32:39 AM,01/17/2016 09:42:10 AM,01/17/2016 09:46:03 AM,Code 2 Transport,01/17/2016 10:22:22 AM,300 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.773615083674, -122.426539772799)",160170944-75 +130480272,E01,13016454,Alarms,02/17/2013,02/17/2013,02/17/2013 04:52:39 PM,02/17/2013 04:53:44 PM,02/17/2013 04:53:53 PM,02/17/2013 04:54:28 PM,02/17/2013 04:56:02 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 04:59:32 PM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,false,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",130480272-E01 +122060115,T11,12068430,Structure Fire,07/24/2012,07/24/2012,07/24/2012 09:50:18 AM,07/24/2012 09:50:19 AM,07/24/2012 09:50:29 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 09:52:27 AM,600 Block of DOUGLASS ST,SF,94114,B06,24,551,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",122060115-T11 +132990382,79,13101764,Medical Incident,10/26/2013,10/26/2013,10/26/2013 10:33:07 PM,10/26/2013 10:33:50 PM,10/26/2013 10:34:15 PM,10/26/2013 10:34:22 PM,10/26/2013 10:41:33 PM,10/26/2013 11:02:19 PM,10/26/2013 11:22:12 PM,Code 2 Transport,10/26/2013 11:55:23 PM,1600 Block of BURROWS ST,SF,94134,B09,43,6151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7248899795012, -122.419403015501)",132990382-79 +160861486,KM04,16034149,Medical Incident,03/26/2016,03/26/2016,03/26/2016 11:54:47 AM,03/26/2016 11:57:41 AM,03/26/2016 12:00:16 PM,03/26/2016 12:00:41 PM,03/26/2016 12:37:23 PM,03/26/2016 12:47:26 PM,03/26/2016 01:06:38 PM,Code 3 Transport,03/26/2016 02:00:39 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",160861486-KM04 +123070065,55,12101914,Traffic Collision,11/02/2012,11/02/2012,11/02/2012 08:01:30 AM,11/02/2012 08:04:05 AM,11/02/2012 08:06:32 AM,11/02/2012 08:06:55 AM,11/02/2012 08:11:20 AM,11/02/2012 08:21:37 AM,11/02/2012 08:38:37 AM,Code 2 Transport,11/02/2012 09:12:56 AM,PAGE ST/SCOTT ST,SF,94117,B05,21,4141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7724179298954, -122.435563320266)",123070065-55 +131850185,AR1,13063060,Structure Fire,07/04/2013,07/04/2013,07/04/2013 01:25:09 PM,07/04/2013 01:25:49 PM,07/04/2013 01:34:54 PM,07/04/2013 01:35:28 PM,07/04/2013 02:01:33 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/04/2013 04:01:48 PM,2000 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,false,Fire,2,INVESTIGATION,22,4,5,Pacific Heights,"(37.788526928751, -122.429544952632)",131850185-AR1 +122640076,E03,12087107,Medical Incident,09/20/2012,09/20/2012,09/20/2012 08:02:01 AM,09/20/2012 08:02:30 AM,09/20/2012 08:03:12 AM,09/20/2012 08:05:12 AM,09/20/2012 08:07:42 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 08:15:32 AM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",122640076-E03 +130160026,E18,13005322,Citizen Assist / Service Call,01/16/2013,01/15/2013,01/16/2013 04:05:23 AM,01/16/2013 04:06:57 AM,01/16/2013 04:07:37 AM,01/16/2013 04:09:56 AM,01/16/2013 04:13:18 AM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Fire,01/16/2013 04:18:10 AM,2300 Block of 41ST AVE,SF,94116,B08,18,7636,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7429402394464, -122.499396716387)",130160026-E18 +160431638,65,16017287,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:32:39 PM,02/12/2016 12:34:14 PM,02/12/2016 12:35:39 PM,02/12/2016 12:35:45 PM,02/12/2016 12:47:34 PM,02/12/2016 01:00:17 PM,02/12/2016 01:10:03 PM,Code 2 Transport,02/12/2016 01:54:19 PM,500 Block of HYDE ST,San Francisco,94109,B04,3,1556,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7860270930908, -122.416321620855)",160431638-65 +160540846,75,16021499,Medical Incident,02/23/2016,02/23/2016,02/23/2016 08:57:43 AM,02/23/2016 08:59:39 AM,02/23/2016 09:03:29 AM,02/23/2016 09:03:35 AM,02/23/2016 09:22:18 AM,02/23/2016 09:37:10 AM,02/23/2016 09:46:18 AM,Code 2 Transport,02/23/2016 10:14:57 AM,600 Block of SHOTWELL ST,San Francisco,94110,B06,7,5447,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.758027155218, -122.415771731954)",160540846-75 +120340043,66,12011145,Traffic Collision,02/03/2012,02/02/2012,02/03/2012 04:41:33 AM,02/03/2012 04:42:44 AM,02/03/2012 04:43:31 AM,02/03/2012 04:43:55 AM,02/03/2012 04:44:26 AM,02/03/2012 05:16:08 AM,02/03/2012 05:33:04 AM,Code 2 Transport,02/03/2012 06:09:04 AM,2300 Block of 19TH AVE,SF,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7439803947416, -122.475835562635)",120340043-66 +111140300,B07,11037788,Structure Fire,04/24/2011,04/24/2011,04/24/2011 11:07:37 PM,04/24/2011 11:07:38 PM,04/24/2011 11:07:47 PM,04/24/2011 11:10:24 PM,04/24/2011 11:13:05 PM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 11:25:55 PM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,false,,1,CHIEF,3,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",111140300-B07 +160861291,64,16034133,Medical Incident,03/26/2016,03/26/2016,03/26/2016 11:00:20 AM,03/26/2016 11:03:15 AM,03/26/2016 11:03:21 AM,03/26/2016 11:04:51 AM,03/26/2016 11:25:13 AM,03/26/2016 11:29:00 AM,03/26/2016 11:46:58 AM,Code 2 Transport,03/26/2016 12:35:17 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160861291-64 +140440431,E48,14015165,Medical Incident,02/13/2014,02/13/2014,02/13/2014 11:28:13 PM,02/13/2014 11:29:13 PM,02/13/2014 11:29:33 PM,02/13/2014 11:31:52 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 11:47:30 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",140440431-E48 +160772310,54,16030635,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:37:36 PM,03/17/2016 02:37:36 PM,03/17/2016 02:44:37 PM,03/17/2016 02:44:45 PM,03/17/2016 03:14:15 PM,03/17/2016 03:25:14 PM,03/17/2016 03:49:48 PM,Code 2 Transport,03/17/2016 04:36:29 PM,ASHBURY ST/HAIGHT ST,San Francisco,94117,B05,21,4513,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7700076057236, -122.446933818288)",160772310-54 +102750079,E06,10087276,Medical Incident,10/02/2010,10/01/2010,10/02/2010 05:50:47 AM,10/02/2010 05:53:23 AM,10/02/2010 05:53:44 AM,10/02/2010 05:56:14 AM,10/02/2010 05:58:00 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 06:06:30 AM,4200 Block of 18TH ST,SF,94114,B05,6,5415,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7607362893717, -122.436647049644)",102750079-E06 +110100082,B08,11003236,Alarms,01/10/2011,01/10/2011,01/10/2011 08:27:49 AM,01/10/2011 08:29:44 AM,01/10/2011 08:29:57 AM,01/10/2011 08:30:59 AM,01/10/2011 08:37:19 AM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 08:49:05 AM,0 Block of MERCED AVE,SF,94116,B08,39,8642,3,3,3,false,,1,CHIEF,2,8,7,West of Twin Peaks,"(37.7460893096921, -122.459502530505)",110100082-B08 +133320122,E42,13112641,Traffic Collision,11/28/2013,11/28/2013,11/28/2013 12:21:05 PM,11/28/2013 12:22:56 PM,11/28/2013 12:24:06 PM,11/28/2013 12:25:08 PM,11/28/2013 12:27:55 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 12:39:17 PM,300 Block of BAY SHORE BLVD,SF,94110,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",133320122-E42 +160842698,KM08,16033459,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:57:06 PM,03/24/2016 03:59:11 PM,03/24/2016 04:02:55 PM,03/24/2016 04:03:21 PM,03/24/2016 05:06:29 PM,03/24/2016 05:06:41 PM,03/24/2016 05:06:47 PM,Code 2 Transport,03/24/2016 05:06:51 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160842698-KM08 +160780413,AM18,16030891,Medical Incident,03/18/2016,03/17/2016,03/18/2016 03:34:48 AM,03/18/2016 03:35:42 AM,03/18/2016 03:36:36 AM,03/18/2016 03:37:17 AM,03/18/2016 03:39:15 AM,03/18/2016 04:05:11 AM,03/18/2016 04:08:38 AM,Code 2 Transport,03/18/2016 04:42:58 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160780413-AM18 +111780155,E07,11058752,Administrative,06/27/2011,06/27/2011,06/27/2011 11:47:06 AM,06/27/2011 11:47:08 AM,06/27/2011 11:47:28 AM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 11:47:57 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",111780155-E07 +121020099,63,12033752,Medical Incident,04/11/2012,04/11/2012,04/11/2012 09:10:27 AM,04/11/2012 09:12:44 AM,04/11/2012 09:13:04 AM,04/11/2012 09:15:36 AM,04/11/2012 09:15:38 AM,04/11/2012 09:30:45 AM,04/11/2012 09:54:12 AM,Code 2 Transport,04/11/2012 10:41:22 AM,2100 Block of 24TH AVE,SF,94116,B08,40,7444,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7474792137801, -122.481306264779)",121020099-63 +110310043,65,11010061,Medical Incident,01/31/2011,01/30/2011,01/31/2011 05:12:14 AM,01/31/2011 05:13:25 AM,01/31/2011 05:13:34 AM,01/31/2011 05:13:56 AM,01/31/2011 05:39:47 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Patient Declined Transport,01/31/2011 06:01:12 AM,1500 Block of ALABAMA ST,SF,94110,B06,9,5622,2,2,2,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.7478373921928, -122.410430755915)",110310043-65 +160691748,62,16027476,Medical Incident,03/09/2016,03/09/2016,03/09/2016 12:52:59 PM,03/09/2016 12:54:14 PM,03/09/2016 12:54:26 PM,03/09/2016 12:54:59 PM,03/09/2016 01:02:00 PM,03/09/2016 01:19:11 PM,03/09/2016 01:33:14 PM,Code 2 Transport,03/09/2016 02:13:00 PM,2800 Block of JONES ST,San Francisco,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8075344387594, -122.417421684552)",160691748-62 +133580316,68,13121831,Medical Incident,12/24/2013,12/24/2013,12/24/2013 07:48:36 PM,12/24/2013 07:50:53 PM,12/24/2013 07:51:23 PM,12/24/2013 07:51:35 PM,12/24/2013 07:59:28 PM,12/24/2013 08:23:40 PM,12/24/2013 08:40:37 PM,Code 2 Transport,12/24/2013 09:06:27 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",133580316-68 +111380141,AM06,11045841,Medical Incident,05/18/2011,05/18/2011,05/18/2011 11:11:07 AM,05/18/2011 11:15:42 AM,05/18/2011 11:15:54 AM,05/18/2011 11:17:58 AM,05/18/2011 11:24:10 AM,05/18/2011 11:48:50 AM,05/18/2011 12:11:38 PM,Code 2 Transport,05/18/2011 12:51:03 PM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,3,3,3,false,,1,PRIVATE,2,3,6,Mission Bay,"(37.7816167926008, -122.389091822357)",111380141-AM06 +120220012,E07,12007350,Medical Incident,01/22/2012,01/21/2012,01/22/2012 12:34:02 AM,01/22/2012 12:36:51 AM,01/22/2012 12:36:59 AM,01/22/2012 12:38:11 AM,01/22/2012 12:40:22 AM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/22/2012 12:44:26 AM,3200 Block of 22ND ST,SF,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7554560834882, -122.419308328755)",120220012-E07 +122880268,B04,12095356,Citizen Assist / Service Call,10/14/2012,10/14/2012,10/14/2012 05:21:43 PM,10/14/2012 05:23:15 PM,10/14/2012 05:23:36 PM,10/14/2012 05:24:32 PM,10/14/2012 05:27:01 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Fire,10/14/2012 05:37:50 PM,1600 Block of STEINER ST,SF,94115,B04,5,3622,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.7845570453149, -122.434577795822)",122880268-B04 +160761326,75,16030099,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:53:47 AM,03/16/2016 10:53:47 AM,03/16/2016 10:54:37 AM,03/16/2016 10:55:43 AM,03/16/2016 11:01:05 AM,03/16/2016 11:02:56 AM,03/16/2016 11:49:22 AM,Code 2 Transport,03/16/2016 11:59:45 AM,GROVE ST/POLK ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7784891171437, -122.418226581728)",160761326-75 +120210060,88,12007003,Medical Incident,01/21/2012,01/20/2012,01/21/2012 02:40:49 AM,01/21/2012 02:43:11 AM,01/21/2012 02:43:23 AM,01/21/2012 02:43:54 AM,01/21/2012 02:45:03 AM,01/21/2012 03:07:11 AM,01/21/2012 03:21:12 AM,Code 2 Transport,01/21/2012 03:59:39 AM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",120210060-88 +110670235,T14,11022105,Medical Incident,03/08/2011,03/08/2011,03/08/2011 03:42:08 PM,03/08/2011 03:42:47 PM,03/08/2011 03:44:05 PM,03/08/2011 03:44:56 PM,03/08/2011 03:46:26 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 04:07:26 PM,500 Block of 27TH AVE,SF,94121,B07,14,7222,3,3,3,false,,1,TRUCK,1,7,1,Outer Richmond,"(37.7790279638161, -122.486876869791)",110670235-T14 +121360026,55,12045085,Medical Incident,05/15/2012,05/14/2012,05/15/2012 04:51:51 AM,05/15/2012 04:54:33 AM,05/15/2012 04:55:10 AM,05/15/2012 04:55:24 AM,05/15/2012 05:05:31 AM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,No Merit,05/15/2012 05:15:40 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",121360026-55 +110910255,E07,11030203,Medical Incident,04/01/2011,04/01/2011,04/01/2011 03:18:58 PM,04/01/2011 03:19:23 PM,04/01/2011 03:20:13 PM,04/01/2011 03:21:10 PM,04/01/2011 03:23:02 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 03:27:59 PM,18TH ST/BRYANT ST,SF,94110,B02,7,5426,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7617594196716, -122.410118192354)",110910255-E07 +130830093,B08,13027690,Administrative,03/24/2013,03/24/2013,03/24/2013 09:11:21 AM,03/24/2013 09:11:56 AM,03/24/2013 09:12:10 AM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Fire,03/24/2013 09:12:35 AM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,false,,1,CHIEF,1,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",130830093-B08 +121590234,E21,12052655,Citizen Assist / Service Call,06/07/2012,06/07/2012,06/07/2012 04:46:10 PM,06/07/2012 04:46:51 PM,06/07/2012 04:47:58 PM,06/07/2012 04:49:14 PM,06/07/2012 04:52:00 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Fire,06/07/2012 05:06:19 PM,FULTON ST/MASONIC AV,SF,94117,B05,21,4463,3,3,3,false,Alarm,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",121590234-E21 +110980222,KM11,11032521,Medical Incident,04/08/2011,04/08/2011,04/08/2011 01:25:46 PM,04/08/2011 01:26:21 PM,04/08/2011 01:26:51 PM,04/08/2011 01:27:32 PM,04/08/2011 01:39:49 PM,04/08/2011 02:08:01 PM,04/08/2011 02:27:28 PM,Code 2 Transport,04/08/2011 02:56:46 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",110980222-KM11 +160501281,RC3,16020044,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:02:29 AM,02/19/2016 11:03:48 AM,02/19/2016 11:11:17 AM,02/19/2016 11:11:36 AM,02/19/2016 11:25:29 AM,02/19/2016 11:49:00 AM,02/19/2016 11:49:00 AM,Code 2 Transport,02/19/2016 12:00:12 PM,700 Block of 18TH AV,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,7,1,Outer Richmond,"(37.7738426838977, -122.476830962581)",160501281-RC3 +160672995,59,16026889,Medical Incident,03/07/2016,03/07/2016,03/07/2016 07:47:34 PM,03/07/2016 07:48:53 PM,03/07/2016 07:49:14 PM,03/07/2016 07:49:27 PM,03/07/2016 08:03:18 PM,03/07/2016 08:30:37 PM,03/07/2016 08:49:54 PM,Code 2 Transport,03/07/2016 09:15:14 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160672995-59 +110830088,66,11027211,Traffic Collision,03/24/2011,03/24/2011,03/24/2011 08:11:37 AM,03/24/2011 08:12:35 AM,03/24/2011 08:21:53 AM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,04/25/2016 02:05:29 PM,BRYANT ST/6TH ST,SF,94107,B03,8,2255,1,1,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7760393195221, -122.402524096783)",110830088-66 +103610064,KM11,10115712,Medical Incident,12/27/2010,12/27/2010,12/27/2010 08:34:28 AM,12/27/2010 08:36:29 AM,12/27/2010 08:39:07 AM,12/27/2010 08:39:36 AM,12/27/2010 08:49:07 AM,12/27/2010 09:03:11 AM,12/27/2010 09:15:02 AM,Code 2 Transport,12/27/2010 09:39:18 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103610064-KM11 +133170050,E05,13107622,Medical Incident,11/13/2013,11/12/2013,11/13/2013 06:07:54 AM,11/13/2013 06:08:48 AM,11/13/2013 06:09:06 AM,11/13/2013 06:10:49 AM,11/13/2013 06:11:52 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 06:34:11 AM,1300 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",133170050-E05 +121070023,E14,12035324,Administrative,04/16/2012,04/15/2012,04/16/2012 02:09:33 AM,04/16/2012 02:09:36 AM,04/16/2012 02:09:58 AM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/16/2012 02:10:24 AM,500 Block of 26TH AVE,SF,94121,B07,14,7213,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",121070023-E14 +160610024,56,16024140,Medical Incident,03/01/2016,02/29/2016,03/01/2016 12:11:16 AM,03/01/2016 12:14:43 AM,03/01/2016 12:16:05 AM,03/01/2016 12:16:14 AM,03/01/2016 12:25:00 AM,03/01/2016 12:30:17 AM,03/01/2016 12:49:38 AM,Code 2 Transport,03/01/2016 01:34:06 AM,200 Block of BEACH ST,San Francisco,94133,B01,28,1344,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8076407484143, -122.413163175978)",160610024-56 +160223508,86,16008931,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:00:07 PM,01/22/2016 09:01:44 PM,01/22/2016 09:02:11 PM,01/22/2016 09:02:33 PM,01/22/2016 09:02:33 PM,01/22/2016 09:12:21 PM,01/22/2016 09:22:12 PM,Code 3 Transport,01/22/2016 10:31:08 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160223508-86 +132030328,E29,13068903,Administrative,07/22/2013,07/22/2013,07/22/2013 08:34:14 PM,07/22/2013 08:34:16 PM,07/22/2013 08:34:38 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,Fire,07/22/2013 08:38:23 PM,200 Block of VERMONT ST,SF,94103,B02,29,2422,3,3,3,true,,1,ENGINE,1,2,10,Mission Bay,"(37.7666119536778, -122.404617787649)",132030328-E29 +110230255,86,11007651,Medical Incident,01/23/2011,01/23/2011,01/23/2011 06:13:55 PM,01/23/2011 06:16:14 PM,01/23/2011 06:16:59 PM,01/23/2011 06:17:35 PM,01/23/2011 06:28:14 PM,01/23/2011 06:28:17 PM,01/23/2011 06:40:35 PM,Code 2 Transport,01/23/2011 06:50:50 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",110230255-86 +103430209,E36,10109862,Structure Fire,12/09/2010,12/09/2010,12/09/2010 12:42:02 PM,12/09/2010 12:42:02 PM,12/09/2010 12:42:10 PM,12/09/2010 12:42:59 PM,12/09/2010 12:46:17 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Fire,12/09/2010 12:47:01 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,,1,ENGINE,1,2,9,Mission,"(37.7666736014927, -122.419825235405)",103430209-E36 +112590390,85,11085574,Medical Incident,09/16/2011,09/16/2011,09/16/2011 11:10:38 PM,09/16/2011 11:11:35 PM,09/16/2011 11:12:36 PM,09/16/2011 11:13:18 PM,09/16/2011 11:24:18 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,No Merit,09/16/2011 11:51:00 PM,SACRAMENTO ST/POWELL ST,SF,94108,B01,2,1355,3,2,2,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7929707720805, -122.409361286661)",112590390-85 +103340247,72,10106923,Medical Incident,11/30/2010,11/30/2010,11/30/2010 03:53:50 PM,11/30/2010 03:54:16 PM,11/30/2010 03:55:25 PM,11/30/2010 03:55:55 PM,11/30/2010 03:59:54 PM,11/30/2010 04:22:06 PM,11/30/2010 04:31:12 PM,Code 2 Transport,11/30/2010 04:58:48 PM,2200 Block of BRYANT ST,SF,94110,B06,7,5474,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7580257466594, -122.409534922253)",103340247-72 +160732679,KM11,16029091,Medical Incident,03/13/2016,03/13/2016,03/13/2016 08:09:25 PM,03/13/2016 08:10:46 PM,03/13/2016 08:12:37 PM,03/13/2016 08:13:05 PM,03/13/2016 08:34:35 PM,03/13/2016 08:47:06 PM,03/13/2016 09:07:23 PM,Code 2 Transport,03/13/2016 09:27:33 PM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",160732679-KM11 +131790464,B02,13061042,Alarms,06/28/2013,06/28/2013,06/28/2013 11:39:46 PM,06/28/2013 11:41:02 PM,06/28/2013 11:41:18 PM,06/28/2013 11:43:23 PM,06/28/2013 11:46:15 PM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/28/2013 11:58:50 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7764944808779, -122.411359138357)",131790464-B02 +131840411,88,13062892,Medical Incident,07/03/2013,07/03/2013,07/03/2013 11:40:53 PM,07/03/2013 11:40:53 PM,07/03/2013 11:42:22 PM,07/03/2013 11:42:28 PM,07/03/2013 11:48:28 PM,07/03/2013 11:53:36 PM,07/04/2013 12:01:04 AM,Code 2 Transport,07/04/2013 12:29:07 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",131840411-88 +123100086,T01,12103044,Alarms,11/05/2012,11/05/2012,11/05/2012 08:18:43 AM,11/05/2012 08:20:27 AM,11/05/2012 08:20:33 AM,11/05/2012 08:22:21 AM,11/05/2012 08:26:57 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 08:24:35 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",123100086-T01 +120110210,E38,12003830,Medical Incident,01/11/2012,01/11/2012,01/11/2012 03:29:39 PM,01/11/2012 03:30:58 PM,01/11/2012 03:31:18 PM,01/11/2012 03:32:18 PM,01/11/2012 03:33:46 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 03:50:50 PM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,2,2,false,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7915320518223, -122.424182651752)",120110210-E38 +140470041,E39,14015892,Medical Incident,02/16/2014,02/15/2014,02/16/2014 02:09:26 AM,02/16/2014 02:11:47 AM,02/16/2014 02:13:35 AM,02/16/2014 02:15:06 AM,02/16/2014 02:24:52 AM,02/16/2014 02:45:16 AM,02/16/2014 02:59:37 AM,Other,02/16/2014 03:09:19 AM,1900 Block of 43RD AVE,SF,94116,B08,23,7646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7503116383635, -122.501926047564)",140470041-E39 +103440382,78,10110375,Medical Incident,12/10/2010,12/10/2010,12/10/2010 08:46:37 PM,12/10/2010 08:47:22 PM,12/10/2010 08:52:18 PM,12/10/2010 08:52:27 PM,12/10/2010 09:03:47 PM,12/10/2010 09:18:39 PM,12/10/2010 09:27:54 PM,Code 2 Transport,12/10/2010 09:52:29 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",103440382-78 +110250114,B06,11008163,Alarms,01/25/2011,01/25/2011,01/25/2011 08:55:55 AM,01/25/2011 08:57:14 AM,01/25/2011 08:57:22 AM,01/25/2011 08:59:05 AM,01/25/2011 09:04:13 AM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Fire,01/25/2011 09:04:20 AM,0 Block of SURREY ST,SF,94131,B06,26,8146,3,3,3,false,,1,CHIEF,3,6,8,Glen Park,"(37.7358169787493, -122.433728428894)",110250114-B06 +122760237,54,12091160,Medical Incident,10/02/2012,10/02/2012,10/02/2012 01:44:37 PM,10/02/2012 01:45:37 PM,10/02/2012 01:46:03 PM,10/02/2012 01:46:21 PM,10/02/2012 01:49:53 PM,10/02/2012 02:01:42 PM,10/02/2012 02:34:38 PM,Code 2 Transport,10/02/2012 02:52:36 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",122760237-54 +120770130,T01,12025451,Medical Incident,03/17/2012,03/17/2012,03/17/2012 11:11:04 AM,03/17/2012 11:11:16 AM,03/17/2012 11:11:33 AM,03/17/2012 11:11:52 AM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 11:14:52 AM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,South of Market,"(37.7779770860913, -122.409387007126)",120770130-T01 +160820648,75,16032480,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:03:43 AM,03/22/2016 08:04:18 AM,03/22/2016 08:04:56 AM,03/22/2016 08:05:11 AM,03/22/2016 08:25:29 AM,03/22/2016 08:34:43 AM,03/22/2016 08:54:41 AM,Code 2 Transport,03/22/2016 09:47:02 AM,300 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7301742032908, -122.399430890336)",160820648-75 +120300219,T16,12010027,Structure Fire,01/30/2012,01/30/2012,01/30/2012 03:57:24 PM,01/30/2012 03:57:55 PM,01/30/2012 03:58:10 PM,01/30/2012 03:59:13 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/30/2012 04:05:15 PM,3000 Block of SACRAMENTO ST,SF,94115,B04,10,4264,3,3,3,false,Fire,1,TRUCK,6,4,2,Pacific Heights,"(37.788729694614, -122.443129710334)",120300219-T16 +110410286,B01,11013653,Alarms,02/10/2011,02/10/2011,02/10/2011 04:30:04 PM,02/10/2011 04:30:11 PM,02/10/2011 04:30:18 PM,02/10/2011 04:30:52 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 04:37:01 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,,1,CHIEF,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",110410286-B01 +121320031,66,12043782,Medical Incident,05/11/2012,05/10/2012,05/11/2012 02:30:36 AM,05/11/2012 02:31:20 AM,05/11/2012 02:31:31 AM,05/11/2012 02:31:57 AM,05/11/2012 02:51:37 AM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Patient Declined Transport,05/11/2012 03:14:25 AM,1700 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7551853287083, -122.476356264125)",121320031-66 +112640272,94,11087247,Medical Incident,09/21/2011,09/21/2011,09/21/2011 04:09:37 PM,09/21/2011 04:10:17 PM,09/21/2011 04:10:38 PM,09/21/2011 04:10:42 PM,09/21/2011 04:12:46 PM,09/21/2011 04:35:25 PM,09/21/2011 04:44:22 PM,Code 2 Transport,09/21/2011 05:23:28 PM,LARKIN ST/FULTON ST,SF,94102,B02,1,1551,3,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",112640272-94 +160420164,AM20,16016703,Medical Incident,02/11/2016,02/10/2016,02/11/2016 01:34:56 AM,02/11/2016 01:35:52 AM,02/11/2016 01:36:44 AM,02/11/2016 01:37:20 AM,02/11/2016 01:40:07 AM,02/11/2016 01:54:59 AM,02/11/2016 02:25:24 AM,Code 2 Transport,02/11/2016 02:45:25 AM,MISSION ST/9TH ST,San Francisco,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",160420164-AM20 +121260384,E07,12042050,Medical Incident,05/05/2012,05/05/2012,05/05/2012 09:01:18 PM,05/05/2012 09:07:43 PM,05/05/2012 09:08:20 PM,05/05/2012 09:09:34 PM,05/05/2012 09:13:19 PM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 09:23:08 PM,500 Block of DOLORES ST,SF,94114,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7606186794333, -122.426153349478)",121260384-E07 +131530339,E13,13051979,Medical Incident,06/02/2013,06/02/2013,06/02/2013 10:13:30 PM,06/02/2013 10:14:18 PM,06/02/2013 10:14:52 PM,06/02/2013 10:16:34 PM,06/02/2013 10:18:00 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 10:26:24 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",131530339-E13 +123070119,KM10,12101958,Medical Incident,11/02/2012,11/02/2012,11/02/2012 10:16:08 AM,11/02/2012 10:17:28 AM,11/02/2012 10:18:41 AM,11/02/2012 10:20:03 AM,11/02/2012 10:25:18 AM,11/02/2012 10:43:38 AM,11/02/2012 10:48:55 AM,Code 2 Transport,11/02/2012 11:25:26 AM,1400 Block of DIVISADERO ST,SF,94115,B05,10,4154,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7828972510359, -122.439273399197)",123070119-KM10 +140620013,93,14020808,Medical Incident,03/03/2014,03/02/2014,03/03/2014 01:30:47 AM,03/03/2014 01:31:36 AM,03/03/2014 01:31:52 AM,03/03/2014 01:32:01 AM,03/03/2014 01:40:11 AM,03/03/2014 01:52:45 AM,03/03/2014 01:56:16 AM,Code 3 Transport,03/03/2014 02:39:54 AM,100 Block of PUTNAM ST,SF,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7375380639723, -122.410869557896)",140620013-93 +113060173,KM14,11101639,Medical Incident,11/02/2011,11/02/2011,11/02/2011 11:55:19 AM,11/02/2011 11:56:45 AM,11/02/2011 11:57:03 AM,11/02/2011 11:57:57 AM,11/02/2011 12:03:39 PM,11/02/2011 12:18:38 PM,11/02/2011 12:37:40 PM,Code 2 Transport,11/02/2011 01:09:08 PM,800 Block of JAMESTOWN AVE,SF,94124,B10,17,6642,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7165720054615, -122.390307055412)",113060173-KM14 +140290261,KM02,14009949,Medical Incident,01/29/2014,01/29/2014,01/29/2014 04:17:57 PM,01/29/2014 04:20:18 PM,01/29/2014 04:20:50 PM,01/29/2014 04:21:08 PM,04/25/2016 01:48:28 PM,01/29/2014 04:44:13 PM,01/29/2014 04:57:57 PM,Code 2 Transport,01/29/2014 05:29:06 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7683208883339, -122.4243245293)",140290261-KM02 +140160195,86,14005473,Medical Incident,01/16/2014,01/16/2014,01/16/2014 12:53:55 PM,01/16/2014 12:56:05 PM,01/16/2014 12:56:31 PM,01/16/2014 12:56:41 PM,01/16/2014 12:59:19 PM,01/16/2014 01:09:00 PM,01/16/2014 01:11:51 PM,Code 2 Transport,01/16/2014 01:31:15 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",140160195-86 +102450017,77,10077195,Medical Incident,09/02/2010,09/01/2010,09/02/2010 12:45:56 AM,09/02/2010 12:46:10 AM,09/02/2010 12:47:12 AM,09/02/2010 12:47:23 AM,09/02/2010 12:50:53 AM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Patient Declined Transport,09/02/2010 01:23:45 AM,INGALLS ST/THOMAS AV,SF,94124,B10,17,6653,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272332288185, -122.385682204312)",102450017-77 +121510018,92,12049904,Medical Incident,05/30/2012,05/29/2012,05/30/2012 01:32:34 AM,05/30/2012 01:35:47 AM,05/30/2012 01:35:55 AM,05/30/2012 01:36:14 AM,05/30/2012 01:47:11 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,No Merit,05/30/2012 01:51:49 AM,MARKET ST/DRUMM ST,SF,94105,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",121510018-92 +120010563,E43,12000490,Outside Fire,01/01/2012,01/01/2012,01/01/2012 07:04:24 PM,01/01/2012 07:05:08 PM,01/01/2012 07:05:17 PM,01/01/2012 07:06:34 PM,01/01/2012 07:10:10 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 07:15:43 PM,BLYTHDALE AV/HAHN ST,SF,94134,B09,43,6244,3,3,3,false,Fire,1,ENGINE,1,9,10,Visitacion Valley,"(37.7104731740666, -122.416648462101)",120010563-E43 +120130041,54,12004321,Medical Incident,01/13/2012,01/12/2012,01/13/2012 03:07:47 AM,01/13/2012 03:09:10 AM,01/13/2012 03:09:25 AM,01/13/2012 03:10:44 AM,01/13/2012 03:18:50 AM,01/13/2012 03:24:51 AM,01/13/2012 03:35:06 AM,Other,01/13/2012 03:52:26 AM,17TH ST/NOE ST,SF,94114,B05,6,5252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7626181998668, -122.432949138311)",120130041-54 +122650172,RS1,12087544,Structure Fire,09/21/2012,09/21/2012,09/21/2012 02:03:25 PM,09/21/2012 02:04:00 PM,09/21/2012 02:04:31 PM,09/21/2012 02:04:51 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 02:06:52 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,false,Fire,1,RESCUE SQUAD,9,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",122650172-RS1 +132140228,93,13072298,Traffic Collision,08/02/2013,08/02/2013,08/02/2013 03:01:09 PM,08/02/2013 03:01:46 PM,08/02/2013 03:02:38 PM,08/02/2013 03:02:54 PM,08/02/2013 03:09:27 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Patient Declined Transport,08/02/2013 03:34:27 PM,200 Block of TURK ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",132140228-93 +111390066,99,11046118,Medical Incident,05/19/2011,05/18/2011,05/19/2011 07:22:39 AM,05/19/2011 07:26:12 AM,05/19/2011 07:27:04 AM,05/19/2011 07:27:15 AM,05/19/2011 07:39:57 AM,05/19/2011 08:01:31 AM,05/19/2011 08:23:36 AM,Code 2 Transport,05/19/2011 08:49:03 AM,2400 Block of 30TH AVE,SF,94116,B08,18,7522,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7416007589044, -122.487342350654)",111390066-99 +132220039,KM07,13074843,Medical Incident,08/10/2013,08/09/2013,08/10/2013 02:27:22 AM,08/10/2013 02:27:39 AM,08/10/2013 02:28:54 AM,08/10/2013 02:29:47 AM,08/10/2013 02:36:34 AM,08/10/2013 02:48:38 AM,08/10/2013 02:56:07 AM,Code 2 Transport,08/10/2013 03:23:41 AM,7TH ST/STEVENSON ST,SF,94103,B02,36,2316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",132220039-KM07 +131800312,KM14,13061314,Medical Incident,06/29/2013,06/29/2013,06/29/2013 05:18:48 PM,06/29/2013 05:19:16 PM,06/29/2013 05:22:08 PM,06/29/2013 05:22:16 PM,06/29/2013 05:30:28 PM,06/29/2013 05:38:10 PM,06/29/2013 05:48:14 PM,Code 2 Transport,06/29/2013 06:21:39 PM,1100 Block of MARKET ST,SF,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7807642254398, -122.412320907436)",131800312-KM14 +110330302,B04,11010914,Structure Fire,02/02/2011,02/02/2011,02/02/2011 05:24:52 PM,02/02/2011 05:26:04 PM,02/02/2011 05:26:57 PM,02/02/2011 05:27:39 PM,02/02/2011 05:36:55 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 05:44:38 PM,400 Block of 44TH AVE,SF,94121,B07,34,7265,3,3,3,false,,1,CHIEF,7,7,1,Outer Richmond,"(37.7804351598877, -122.505249560078)",110330302-B04 +131990069,E03,13067369,Medical Incident,07/18/2013,07/18/2013,07/18/2013 08:26:42 AM,07/18/2013 08:27:18 AM,07/18/2013 08:27:42 AM,07/18/2013 08:29:31 AM,07/18/2013 08:32:41 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 08:35:43 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",131990069-E03 +133550007,B01,13120514,Alarms,12/21/2013,12/20/2013,12/21/2013 12:20:41 AM,12/21/2013 12:22:44 AM,12/21/2013 12:22:50 AM,12/21/2013 12:25:07 AM,12/21/2013 12:28:13 AM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Other,12/21/2013 12:38:12 AM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8083718015584, -122.414994322457)",133550007-B01 +121810320,T05,12060384,Structure Fire,06/29/2012,06/29/2012,06/29/2012 07:53:55 PM,06/29/2012 07:53:55 PM,06/29/2012 07:54:02 PM,06/29/2012 07:54:57 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 07:57:01 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,2,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",121810320-T05 +131910068,RC2,13064951,Traffic Collision,07/10/2013,07/10/2013,07/10/2013 08:26:39 AM,07/10/2013 08:29:26 AM,07/10/2013 08:36:23 AM,04/25/2016 01:51:52 PM,07/10/2013 08:38:51 AM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/10/2013 08:45:55 AM,15TH AV/GEARY BL,SF,94118,B07,31,7153,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7805753802673, -122.47398246915)",131910068-RC2 +160564004,AM24,16022559,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:38:05 PM,02/25/2016 10:38:48 PM,02/25/2016 10:39:28 PM,02/25/2016 10:39:34 PM,02/25/2016 10:48:17 PM,02/25/2016 11:06:47 PM,02/25/2016 11:28:54 PM,Code 2 Transport,02/25/2016 11:51:07 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",160564004-AM24 +160071309,E17,16002794,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:56:54 AM,01/07/2016 10:57:28 AM,01/07/2016 10:57:44 AM,01/07/2016 10:59:08 AM,01/07/2016 11:04:05 AM,01/07/2016 11:21:37 AM,01/07/2016 11:21:37 AM,Code 3 Transport,01/07/2016 11:46:38 AM,0 Block of COMMER CT,San Francisco,94124,B10,17,6622,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7326384270488, -122.384953741035)",160071309-E17 +130480343,T03,13016523,Structure Fire,02/17/2013,02/17/2013,02/17/2013 08:49:48 PM,02/17/2013 08:49:49 PM,02/17/2013 08:49:54 PM,02/17/2013 08:50:58 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 08:52:53 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",130480343-T03 +123230197,E40,12107425,Structure Fire,11/18/2012,11/18/2012,11/18/2012 01:57:21 PM,11/18/2012 01:57:56 PM,11/18/2012 01:58:08 PM,11/18/2012 02:22:56 PM,11/18/2012 02:25:42 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/18/2012 02:49:32 PM,400 Block of 47TH AVE,SF,94121,B07,34,7313,3,3,3,true,Fire,2,ENGINE,17,7,1,Outer Richmond,"(37.7794650987686, -122.508402914078)",123230197-E40 +132820249,AM12,13096011,Traffic Collision,10/09/2013,10/09/2013,10/09/2013 03:25:42 PM,10/09/2013 03:26:25 PM,10/09/2013 03:26:38 PM,10/09/2013 03:27:35 PM,10/09/2013 03:32:55 PM,10/09/2013 03:54:25 PM,10/09/2013 04:30:13 PM,Other,10/09/2013 05:17:40 PM,2400 Block of KEITH ST,SF,94124,B10,17,6546,2,3,3,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7259450297872, -122.392569985783)",132820249-AM12 +121020187,RC3,12033821,Medical Incident,04/11/2012,04/11/2012,04/11/2012 01:31:39 PM,04/11/2012 01:32:52 PM,04/11/2012 01:33:07 PM,04/25/2016 01:59:13 PM,04/11/2012 01:35:35 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 01:41:56 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7498446220826, -122.418142583283)",121020187-RC3 +133390222,KM04,13114911,Medical Incident,12/05/2013,12/05/2013,12/05/2013 01:53:49 PM,12/05/2013 01:54:01 PM,12/05/2013 01:55:30 PM,12/05/2013 01:55:57 PM,12/05/2013 02:09:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 02:16:18 PM,700 Block of MARKET ST,SF,94108,B03,1,1322,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",133390222-KM04 +102420169,T02,10076307,Alarms,08/30/2010,08/30/2010,08/30/2010 12:09:08 PM,08/30/2010 12:09:58 PM,08/30/2010 12:10:26 PM,08/30/2010 12:11:27 PM,08/30/2010 12:13:36 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Fire,08/30/2010 12:18:59 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,false,,1,TRUCK,1,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",102420169-T02 +160410308,55,16016294,Medical Incident,02/10/2016,02/09/2016,02/10/2016 03:48:39 AM,02/10/2016 03:51:07 AM,02/10/2016 03:51:24 AM,02/10/2016 03:51:47 AM,02/10/2016 04:06:14 AM,02/10/2016 04:23:58 AM,02/10/2016 04:52:43 AM,Code 2 Transport,02/10/2016 05:29:40 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160410308-55 +113010270,T13,11099900,Medical Incident,10/28/2011,10/28/2011,10/28/2011 03:31:26 PM,10/28/2011 03:32:32 PM,10/28/2011 03:32:53 PM,10/28/2011 03:33:40 PM,10/28/2011 03:36:30 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 03:41:39 PM,100 Block of CLAY ST,SF,94111,B01,13,1133,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7953352957642, -122.397362199177)",113010270-T13 +160273989,62,16010894,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:43:50 PM,01/27/2016 10:46:35 PM,01/27/2016 10:47:54 PM,01/27/2016 10:48:01 PM,01/27/2016 10:55:48 PM,01/27/2016 11:19:44 PM,01/27/2016 11:34:53 PM,Code 2 Transport,01/28/2016 12:13:04 AM,1400 Block of OAKDALE AVE,San Francisco,94124,B10,17,6534,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.732955634816, -122.387590806117)",160273989-62 +121940070,93,12064464,Medical Incident,07/12/2012,07/11/2012,07/12/2012 07:07:02 AM,07/12/2012 07:07:47 AM,07/12/2012 07:08:05 AM,07/12/2012 07:08:16 AM,07/12/2012 07:10:50 AM,07/12/2012 07:30:51 AM,07/12/2012 07:55:44 AM,Code 2 Transport,07/12/2012 08:28:55 AM,700 Block of NAPLES ST,SF,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7169949183795, -122.434203067739)",121940070-93 +131960140,AM16,13066495,Medical Incident,07/15/2013,07/15/2013,07/15/2013 11:25:35 AM,07/15/2013 11:27:56 AM,07/15/2013 11:28:10 AM,07/15/2013 11:28:44 AM,07/15/2013 11:37:28 AM,07/15/2013 12:00:51 PM,07/15/2013 12:19:25 PM,Code 2 Transport,07/15/2013 12:57:04 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",131960140-AM16 +122660232,E23,12087921,Medical Incident,09/22/2012,09/22/2012,09/22/2012 04:40:45 PM,09/22/2012 04:41:14 PM,09/22/2012 04:41:35 PM,09/22/2012 04:43:13 PM,09/22/2012 04:44:02 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 04:56:59 PM,1300 Block of 48TH AVE,SF,94122,B08,23,7721,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.761256999261, -122.508202143455)",122660232-E23 +102490033,87,10078563,Medical Incident,09/06/2010,09/05/2010,09/06/2010 02:43:00 AM,09/06/2010 02:43:52 AM,09/06/2010 02:44:30 AM,09/06/2010 02:44:38 AM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Other,04/25/2016 02:08:43 PM,1400 Block of HALIBUT CT,TI,94130,B03,48,2931,2,2,2,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",102490033-87 +160371680,64,16014668,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:51:17 AM,02/06/2016 11:52:34 AM,02/06/2016 11:54:16 AM,02/06/2016 11:54:16 AM,02/06/2016 11:58:39 AM,02/06/2016 12:15:39 PM,02/06/2016 12:49:48 PM,Code 2 Transport,02/06/2016 01:42:58 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",160371680-64 +120610020,87,12019911,Medical Incident,03/01/2012,02/29/2012,03/01/2012 01:27:23 AM,03/01/2012 01:28:15 AM,03/01/2012 01:28:28 AM,03/01/2012 01:32:01 AM,03/01/2012 01:36:12 AM,03/01/2012 01:58:52 AM,03/01/2012 02:09:03 AM,Code 2 Transport,03/01/2012 02:35:51 AM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",120610020-87 +132660299,E09,13090345,Structure Fire,09/23/2013,09/23/2013,09/23/2013 04:55:41 PM,09/23/2013 04:56:33 PM,09/23/2013 04:58:03 PM,09/23/2013 04:58:11 PM,09/23/2013 05:00:22 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/23/2013 05:02:30 PM,INGALLS ST/HOLLISTER AV,SF,94124,B10,17,6612,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.719739950078, -122.392418231567)",132660299-E09 +102750202,T17,10087376,Structure Fire,10/02/2010,10/02/2010,10/02/2010 01:54:39 PM,10/02/2010 01:55:15 PM,10/02/2010 01:55:26 PM,10/02/2010 01:55:56 PM,10/02/2010 01:57:42 PM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 03:00:58 PM,1400 Block of QUESADA AVE,SF,94124,B10,17,6571,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7306545900477, -122.386831266157)",102750202-T17 +123400209,E19,12113437,Medical Incident,12/05/2012,12/05/2012,12/05/2012 12:17:23 PM,12/05/2012 12:17:47 PM,12/05/2012 12:18:03 PM,12/05/2012 12:19:04 PM,12/05/2012 12:21:29 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,Other,12/05/2012 12:32:31 PM,19TH AV/SLOAT BL,SF,94132,B08,19,7413,3,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",123400209-E19 +131270183,E03,13042921,Medical Incident,05/07/2013,05/07/2013,05/07/2013 01:17:56 PM,05/07/2013 01:20:08 PM,05/07/2013 01:20:28 PM,05/07/2013 01:22:04 PM,05/07/2013 01:26:15 PM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/07/2013 01:45:42 PM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",131270183-E03 +122470154,88,12081692,Medical Incident,09/03/2012,09/03/2012,09/03/2012 01:31:18 PM,09/03/2012 01:32:03 PM,09/03/2012 01:32:21 PM,09/03/2012 01:34:15 PM,09/03/2012 01:40:45 PM,09/03/2012 01:58:31 PM,09/03/2012 02:08:59 PM,Code 2 Transport,09/03/2012 02:31:00 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",122470154-88 +130920296,KM10,13030895,Medical Incident,04/02/2013,04/02/2013,04/02/2013 06:13:37 PM,04/02/2013 06:15:08 PM,04/02/2013 06:16:12 PM,04/02/2013 06:17:17 PM,04/02/2013 06:45:20 PM,04/02/2013 07:14:03 PM,04/02/2013 07:49:28 PM,Code 2 Transport,04/02/2013 08:23:26 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",130920296-KM10 +103500218,E20,10112272,Structure Fire,12/16/2010,12/16/2010,12/16/2010 02:02:25 PM,12/16/2010 02:04:29 PM,12/16/2010 02:04:45 PM,12/16/2010 02:05:08 PM,12/16/2010 02:10:36 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,12/16/2010 02:11:19 PM,1400 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,true,,1,ENGINE,5,5,5,Inner Sunset,"(37.7614340333644, -122.46176630545)",103500218-E20 +160572639,KM09,16022838,Medical Incident,02/26/2016,02/26/2016,02/26/2016 04:56:17 PM,02/26/2016 04:57:40 PM,02/26/2016 04:58:26 PM,02/26/2016 04:58:56 PM,02/26/2016 05:06:31 PM,02/26/2016 05:59:50 PM,02/26/2016 06:10:41 PM,Code 2 Transport,02/26/2016 06:53:49 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160572639-KM09 +123550375,E01,12118979,Traffic Collision,12/20/2012,12/20/2012,12/20/2012 11:37:08 PM,12/20/2012 11:37:08 PM,12/20/2012 11:37:36 PM,04/25/2016 01:55:12 PM,12/20/2012 11:38:47 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/20/2012 11:48:47 PM,HOWARD ST/3RD ST,SF,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",123550375-E01 +131670054,88,13056590,Traffic Collision,06/16/2013,06/15/2013,06/16/2013 03:31:43 AM,06/16/2013 03:32:41 AM,06/16/2013 03:34:02 AM,06/16/2013 03:34:09 AM,06/16/2013 03:45:16 AM,06/16/2013 04:09:29 AM,06/16/2013 04:39:54 AM,Code 2 Transport,06/16/2013 05:04:59 AM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",131670054-88 +113550250,RC1,11117926,Medical Incident,12/21/2011,12/21/2011,12/21/2011 03:57:23 PM,12/21/2011 03:58:16 PM,12/21/2011 03:58:50 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 04:09:29 PM,2ND ST/MARKET ST,SF,94105,B01,13,1236,3,3,3,true,,1,RESCUE CAPTAIN,3,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",113550250-RC1 +160123327,89,16004924,Medical Incident,01/12/2016,01/12/2016,01/12/2016 07:52:28 PM,01/12/2016 07:54:05 PM,01/12/2016 07:54:21 PM,01/12/2016 07:54:35 PM,01/12/2016 07:58:35 PM,01/12/2016 08:14:02 PM,01/12/2016 08:24:03 PM,Code 2 Transport,01/12/2016 09:12:56 PM,1700 Block of 30TH AVE,San Francisco,94122,B08,18,7534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7546573305147, -122.488255857222)",160123327-89 +132780429,E15,13094720,Medical Incident,10/05/2013,10/05/2013,10/05/2013 11:34:02 PM,10/05/2013 11:34:44 PM,10/05/2013 11:36:30 PM,10/05/2013 11:38:26 PM,10/05/2013 11:41:28 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 11:51:07 PM,300 Block of EDINBURGH ST,SF,94112,B09,43,6133,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7235354635326, -122.430183371542)",132780429-E15 +113040125,82,11100881,Administrative,10/31/2011,10/31/2011,10/31/2011 09:57:32 AM,10/31/2011 09:57:40 AM,10/31/2011 09:58:10 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 09:58:45 AM,1000 Block of TURK ST,SF,94102,B02,5,3367,3,3,3,true,,1,MEDIC,1,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",113040125-82 +160570008,89,16022580,Medical Incident,02/26/2016,02/25/2016,02/26/2016 12:03:55 AM,02/26/2016 12:03:55 AM,02/26/2016 12:06:24 AM,02/26/2016 12:06:33 AM,02/26/2016 12:10:19 AM,02/26/2016 12:33:36 AM,02/26/2016 12:54:57 AM,Code 2 Transport,02/26/2016 01:08:50 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160570008-89 +110700058,E42,11022928,Structure Fire,03/11/2011,03/10/2011,03/11/2011 07:08:42 AM,03/11/2011 07:09:11 AM,03/11/2011 07:09:21 AM,03/11/2011 07:10:19 AM,03/11/2011 07:13:00 AM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/11/2011 07:20:53 AM,5200 Block of 3RD ST,SF,94124,B10,17,6536,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7303863717611, -122.392379661468)",110700058-E42 +120710161,E39,12023596,Medical Incident,03/11/2012,03/11/2012,03/11/2012 11:57:59 AM,03/11/2012 11:59:19 AM,03/11/2012 12:01:23 PM,03/11/2012 12:02:13 PM,03/11/2012 12:03:29 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/11/2012 12:06:46 PM,800 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",120710161-E39 +132960128,AM02,13100556,Medical Incident,10/23/2013,10/23/2013,10/23/2013 10:43:08 AM,10/23/2013 10:43:35 AM,10/23/2013 10:43:49 AM,10/23/2013 10:44:34 AM,10/23/2013 10:46:08 AM,10/23/2013 11:03:39 AM,10/23/2013 11:41:38 AM,Code 2 Transport,10/23/2013 12:02:20 PM,100 Block of 10TH AVE,SF,94118,B07,31,7137,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7855485905185, -122.468976308915)",132960128-AM02 +132740325,68,13093233,Medical Incident,10/01/2013,10/01/2013,10/01/2013 09:53:13 PM,10/01/2013 09:55:18 PM,10/01/2013 09:55:40 PM,10/01/2013 09:55:52 PM,10/01/2013 09:58:09 PM,10/01/2013 10:21:51 PM,10/01/2013 10:41:21 PM,Code 2 Transport,10/01/2013 11:08:32 PM,2300 Block of JUDAH ST,SF,94122,B08,18,7513,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.761197258065, -122.487170195963)",132740325-68 +132080313,68,13070525,Medical Incident,07/27/2013,07/27/2013,07/27/2013 10:46:39 PM,07/27/2013 10:48:02 PM,07/27/2013 10:48:10 PM,07/27/2013 10:50:57 PM,07/27/2013 11:06:35 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Patient Declined Transport,07/28/2013 12:04:00 AM,4400 Block of IRVING ST,SF,94122,B08,23,7721,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",132080313-68 +160143887,58,16005769,Medical Incident,01/14/2016,01/14/2016,01/14/2016 10:45:37 PM,01/14/2016 10:47:56 PM,01/14/2016 10:48:10 PM,01/14/2016 10:48:32 PM,01/14/2016 10:59:27 PM,01/14/2016 11:14:43 PM,01/14/2016 11:29:33 PM,Code 2 Transport,01/15/2016 12:11:52 AM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",160143887-58 +160142102,52,16005604,Medical Incident,01/14/2016,01/14/2016,01/14/2016 02:22:24 PM,01/14/2016 02:22:34 PM,01/14/2016 02:23:01 PM,01/14/2016 02:23:11 PM,01/14/2016 02:27:14 PM,01/14/2016 02:38:01 PM,01/14/2016 02:45:42 PM,Code 2 Transport,01/14/2016 03:27:18 PM,200 Block of VERNON ST,San Francisco,94132,B09,33,8411,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7170020878157, -122.467957341983)",160142102-52 +160262370,89,16010349,Medical Incident,01/26/2016,01/26/2016,01/26/2016 03:22:20 PM,01/26/2016 03:22:20 PM,01/26/2016 03:24:16 PM,01/26/2016 03:24:47 PM,01/26/2016 03:25:51 PM,01/26/2016 03:53:34 PM,01/26/2016 03:53:35 PM,Code 2 Transport,01/26/2016 04:51:39 PM,21ST ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",160262370-89 +123100280,E33,12103207,Traffic Collision,11/05/2012,11/05/2012,11/05/2012 05:30:41 PM,11/05/2012 05:31:31 PM,11/05/2012 05:31:48 PM,11/05/2012 05:32:36 PM,11/05/2012 05:35:10 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 05:49:54 PM,BROTHERHOOD WY/ARCH ST,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7124218732149, -122.467072688577)",123100280-E33 +113620102,E36,11120180,Medical Incident,12/28/2011,12/28/2011,12/28/2011 09:29:58 AM,12/28/2011 09:33:18 AM,12/28/2011 09:33:25 AM,12/28/2011 09:35:50 AM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 09:39:11 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,,1,ENGINE,3,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",113620102-E36 +160253670,71,16010124,Medical Incident,01/25/2016,01/25/2016,01/25/2016 09:57:46 PM,01/25/2016 10:00:21 PM,01/25/2016 10:01:44 PM,01/25/2016 10:01:50 PM,01/25/2016 10:07:29 PM,01/25/2016 10:17:49 PM,01/25/2016 10:26:22 PM,Code 2 Transport,01/25/2016 11:01:19 PM,24TH ST/TREAT AV,San Francisco,94110,B06,7,5527,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7525727580898, -122.41299517484)",160253670-71 +140630090,AM06,14021207,Medical Incident,03/04/2014,03/04/2014,03/04/2014 08:33:00 AM,03/04/2014 08:34:27 AM,03/04/2014 08:35:47 AM,03/04/2014 08:36:23 AM,04/25/2016 01:47:55 PM,03/04/2014 08:55:49 AM,03/04/2014 09:09:47 AM,Code 2 Transport,03/04/2014 09:30:32 AM,100 Block of MASON ST,SF,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",140630090-AM06 +131820152,E38,13061975,Medical Incident,07/01/2013,07/01/2013,07/01/2013 10:34:49 AM,07/01/2013 10:36:57 AM,07/01/2013 10:37:02 AM,07/01/2013 10:38:28 AM,07/01/2013 10:41:42 AM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,07/01/2013 10:41:47 AM,1700 Block of PACIFIC AVE,SF,94109,B04,38,3231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.7947665561905, -122.424060519207)",131820152-E38 +131320246,E29,13044641,Traffic Collision,05/12/2013,05/12/2013,05/12/2013 06:55:13 PM,05/12/2013 06:56:16 PM,05/12/2013 06:56:34 PM,05/12/2013 06:57:12 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 06:58:31 PM,BRYANT ST/16TH ST,SF,94110,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,10,Mission,"(37.7656058395036, -122.410486689194)",131320246-E29 +160280970,53,16011019,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:27:25 AM,01/28/2016 09:29:34 AM,01/28/2016 09:30:14 AM,01/28/2016 09:30:23 AM,01/28/2016 09:45:15 AM,01/28/2016 10:05:41 AM,01/28/2016 10:16:13 AM,Code 2 Transport,01/28/2016 10:58:18 AM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,2,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",160280970-53 +102570153,T01,10081164,Traffic Collision,09/14/2010,09/14/2010,09/14/2010 11:43:18 AM,09/14/2010 11:43:18 AM,09/14/2010 11:43:18 AM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Other,09/14/2010 11:48:05 AM,OFARRELL ST/JONES ST,SF,94102,B01,1,1452,2,2,2,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",102570153-T01 +133010283,E44,13102364,Medical Incident,10/28/2013,10/28/2013,10/28/2013 03:53:26 PM,10/28/2013 03:55:46 PM,10/28/2013 03:56:32 PM,10/28/2013 03:57:46 PM,10/28/2013 04:03:24 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/28/2013 04:36:29 PM,0 Block of MCCARTHY AVE,SF,94134,B09,44,6248,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7102584419985, -122.414143576191)",133010283-E44 +112700059,E34,11089131,Medical Incident,09/27/2011,09/27/2011,09/27/2011 08:36:51 AM,09/27/2011 08:37:48 AM,09/27/2011 08:38:38 AM,09/27/2011 08:39:19 AM,09/27/2011 08:43:11 AM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/27/2011 09:00:08 AM,800 Block of LA PLAYA,SF,94121,B07,34,7311,A,A,2,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",112700059-E34 +121250106,54,12041442,Medical Incident,05/04/2012,05/04/2012,05/04/2012 09:57:50 AM,05/04/2012 09:58:58 AM,05/04/2012 09:59:08 AM,05/04/2012 09:59:14 AM,05/04/2012 10:03:54 AM,05/04/2012 10:16:20 AM,05/04/2012 10:42:28 AM,Code 2 Transport,05/04/2012 10:51:16 AM,500 Block of JESSIE ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7809852231357, -122.409669731425)",121250106-54 +160474106,71,16019171,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:49:50 PM,02/16/2016 11:52:04 PM,02/16/2016 11:52:57 PM,02/16/2016 11:53:14 PM,02/17/2016 12:04:18 AM,02/17/2016 12:22:31 AM,02/17/2016 12:31:44 AM,Code 2 Transport,02/17/2016 01:10:39 AM,MASON ST/BEACH ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8074825129146, -122.41397500769)",160474106-71 +160711620,KM11,16028225,Medical Incident,03/11/2016,03/11/2016,03/11/2016 12:35:32 PM,03/11/2016 12:36:29 PM,03/11/2016 12:36:59 PM,03/11/2016 12:37:30 PM,03/11/2016 12:47:01 PM,03/11/2016 01:19:14 PM,03/11/2016 01:19:20 PM,Code 2 Transport,03/11/2016 01:42:25 PM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",160711620-KM11 +122060106,E23,12068424,Medical Incident,07/24/2012,07/24/2012,07/24/2012 09:27:49 AM,07/24/2012 09:29:33 AM,07/24/2012 09:30:05 AM,07/24/2012 09:32:00 AM,07/24/2012 09:34:52 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 09:48:18 AM,1300 Block of 27TH AVE,SF,94122,B08,22,7511,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7622565136355, -122.485564556768)",122060106-E23 +160101714,52,16004048,Medical Incident,01/10/2016,01/10/2016,01/10/2016 01:34:59 PM,01/10/2016 01:36:32 PM,01/10/2016 01:36:53 PM,01/10/2016 01:37:43 PM,01/10/2016 01:41:07 PM,01/10/2016 01:58:29 PM,01/10/2016 02:01:30 PM,Code 2 Transport,01/10/2016 02:41:39 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7867794977083, -122.450948438002)",160101714-52 +102770196,RC1,10088084,Traffic Collision,10/04/2010,10/04/2010,10/04/2010 02:55:47 PM,10/04/2010 02:58:06 PM,10/04/2010 02:58:44 PM,10/04/2010 03:00:51 PM,10/04/2010 03:05:00 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/04/2010 03:20:26 PM,1700 Block of WASHINGTON ST,SF,94109,B04,41,3124,3,3,3,true,,1,RESCUE CAPTAIN,3,4,3,Russian Hill,"(37.7932081770216, -122.422061502625)",102770196-RC1 +160460330,55,16018375,Medical Incident,02/15/2016,02/14/2016,02/15/2016 03:00:23 AM,02/15/2016 03:00:23 AM,02/15/2016 03:00:57 AM,02/15/2016 03:01:13 AM,02/15/2016 03:18:04 AM,02/15/2016 03:30:16 AM,02/15/2016 03:47:10 AM,Code 2 Transport,02/15/2016 04:25:06 AM,"13TH ST/GATEVIEW AV, TI",Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8281641396783, -122.377094979291)",160460330-55 +102280023,86,10071655,Medical Incident,08/16/2010,08/15/2010,08/16/2010 01:58:43 AM,08/16/2010 01:59:35 AM,08/16/2010 02:00:08 AM,08/16/2010 02:01:23 AM,08/16/2010 02:06:22 AM,08/16/2010 02:28:54 AM,08/16/2010 02:39:19 AM,Code 2 Transport,08/16/2010 03:10:18 AM,600 Block of 45TH AVE,SF,94121,B07,34,7273,3,2,2,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7762535401496, -122.506022206848)",102280023-86 +130010138,B03,13000091,Alarms,01/01/2013,12/31/2012,01/01/2013 02:10:08 AM,01/01/2013 02:11:32 AM,01/01/2013 02:11:42 AM,01/01/2013 02:12:28 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 02:16:13 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,Alarm,1,CHIEF,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",130010138-B03 +160503180,76,16020227,Medical Incident,02/19/2016,02/19/2016,02/19/2016 07:10:09 PM,02/19/2016 07:11:31 PM,02/19/2016 07:12:00 PM,02/19/2016 07:12:19 PM,02/19/2016 07:24:51 PM,02/19/2016 07:27:58 PM,02/19/2016 07:41:32 PM,Code 2 Transport,02/19/2016 07:42:15 PM,800 Block of DIVISADERO ST,San Francisco,94117,B05,21,4151,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7773095022254, -122.438391268776)",160503180-76 +160203470,68,16008156,Medical Incident,01/20/2016,01/20/2016,01/20/2016 08:17:42 PM,01/20/2016 08:18:58 PM,01/20/2016 08:19:55 PM,01/20/2016 08:20:07 PM,01/20/2016 08:30:26 PM,01/20/2016 08:50:27 PM,01/20/2016 08:57:14 PM,Code 2 Transport,01/20/2016 09:43:31 PM,0 Block of OLYMPIA WAY,San Francisco,94131,B08,20,5351,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7512804251875, -122.452533549405)",160203470-68 +110910294,87,11030235,Medical Incident,04/01/2011,04/01/2011,04/01/2011 04:43:45 PM,04/01/2011 04:43:45 PM,04/01/2011 04:43:45 PM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,04/01/2011 05:06:51 PM,04/01/2011 05:12:29 PM,Code 2 Transport,04/01/2011 05:41:49 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",110910294-87 +160370411,71,16014533,Medical Incident,02/06/2016,02/05/2016,02/06/2016 02:08:36 AM,02/06/2016 02:10:54 AM,02/06/2016 02:11:33 AM,02/06/2016 02:12:08 AM,02/06/2016 02:20:05 AM,02/06/2016 02:34:03 AM,02/06/2016 02:42:06 AM,Code 2 Transport,02/06/2016 03:14:01 AM,3800 Block of 19TH AVE,San Francisco,94132,B08,19,8427,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7184242151546, -122.473530814265)",160370411-71 +160392600,KM12,16015710,Medical Incident,02/08/2016,02/08/2016,02/08/2016 04:50:55 PM,02/08/2016 04:51:58 PM,02/08/2016 04:52:52 PM,02/08/2016 04:55:11 PM,02/08/2016 05:01:39 PM,02/08/2016 05:15:10 PM,02/08/2016 05:56:17 PM,Code 2 Transport,02/08/2016 06:36:32 PM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",160392600-KM12 +160083538,60,16003407,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:37:02 PM,01/08/2016 08:37:20 PM,01/08/2016 08:38:19 PM,01/08/2016 08:38:28 PM,01/08/2016 08:45:27 PM,01/08/2016 08:53:07 PM,01/08/2016 09:44:28 PM,Code 2 Transport,01/08/2016 10:30:31 PM,0 Block of SAN BENITO WY,San Francisco,94127,B08,39,8563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7360173089353, -122.467155770861)",160083538-60 +132150280,E09,13072694,Medical Incident,08/03/2013,08/03/2013,08/03/2013 04:46:04 PM,08/03/2013 04:49:55 PM,08/03/2013 04:50:20 PM,08/03/2013 04:51:25 PM,08/03/2013 04:55:41 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 05:06:11 PM,CESAR CHAVEZ ST/FOLSOM ST,SF,94110,B06,9,5622,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7482553292633, -122.413668845654)",132150280-E09 +140160361,E01,14005623,Alarms,01/16/2014,01/16/2014,01/16/2014 07:59:35 PM,01/16/2014 08:00:32 PM,01/16/2014 08:00:58 PM,01/16/2014 08:01:27 PM,01/16/2014 08:04:19 PM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,Other,01/16/2014 08:08:43 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",140160361-E01 +160721865,75,16028614,Medical Incident,03/12/2016,03/12/2016,03/12/2016 02:18:27 PM,03/12/2016 02:19:06 PM,03/12/2016 02:19:22 PM,03/12/2016 02:19:34 PM,03/12/2016 02:24:38 PM,03/12/2016 02:51:54 PM,03/12/2016 03:04:13 PM,Code 2 Transport,03/12/2016 03:50:57 PM,1400 Block of FILLMORE ST,San Francisco,94115,B05,5,3536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",160721865-75 +160431910,63,16017314,Medical Incident,02/12/2016,02/12/2016,02/12/2016 01:47:48 PM,02/12/2016 01:49:19 PM,02/12/2016 01:49:45 PM,02/12/2016 01:50:15 PM,02/12/2016 01:59:17 PM,02/12/2016 02:33:06 PM,02/12/2016 02:57:23 PM,Code 2 Transport,02/12/2016 03:33:05 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7186167492521, -122.396976655931)",160431910-63 +160170822,74,16006746,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:37:00 AM,01/17/2016 08:37:46 AM,01/17/2016 08:38:09 AM,01/17/2016 08:39:00 AM,01/17/2016 08:42:41 AM,01/17/2016 08:58:43 AM,01/17/2016 09:13:27 AM,Code 2 Transport,01/17/2016 09:45:56 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160170822-74 +160051858,89,16002011,Medical Incident,01/05/2016,01/05/2016,01/05/2016 01:34:50 PM,01/05/2016 01:36:32 PM,01/05/2016 01:37:07 PM,01/05/2016 01:37:38 PM,01/05/2016 01:44:12 PM,01/05/2016 02:28:54 PM,01/05/2016 02:28:59 PM,Code 2 Transport,01/05/2016 02:59:52 PM,600 Block of GEARY ST,San Francisco,94102,B01,3,1462,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7865705542086, -122.413973061638)",160051858-89 +140460310,T13,14015772,Elevator / Escalator Rescue,02/15/2014,02/15/2014,02/15/2014 07:21:23 PM,02/15/2014 07:22:33 PM,02/15/2014 07:22:42 PM,02/15/2014 07:23:59 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Fire,02/15/2014 08:18:53 PM,0 Block of GRANT AVE,SF,94108,B01,1,1321,,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",140460310-T13 +160120943,60,16004698,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:19:58 AM,01/12/2016 09:22:45 AM,01/12/2016 09:22:55 AM,01/12/2016 09:24:40 AM,01/12/2016 09:33:11 AM,01/12/2016 09:47:42 AM,01/12/2016 10:03:48 AM,Code 2 Transport,01/12/2016 10:43:36 AM,400 Block of VICTORIA ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7188013889707, -122.465418721432)",160120943-60 +160121760,KM04,16004784,Medical Incident,01/12/2016,01/12/2016,01/12/2016 01:01:36 PM,01/12/2016 01:02:28 PM,01/12/2016 01:04:35 PM,01/12/2016 01:05:17 PM,01/12/2016 01:13:35 PM,01/12/2016 01:38:06 PM,01/12/2016 01:52:37 PM,Code 2 Transport,01/12/2016 02:15:20 PM,0 Block of ELGIN PK,San Francisco,94103,B02,36,5126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7706578719824, -122.423156759842)",160121760-KM04 +140010566,E01,14000478,Alarms,01/01/2014,01/01/2014,01/01/2014 09:27:13 PM,01/01/2014 09:29:22 PM,01/01/2014 09:29:34 PM,01/01/2014 09:30:12 PM,01/01/2014 09:32:27 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/01/2014 09:39:25 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.781960649289, -122.402224095303)",140010566-E01 +160331190,KM04,16012921,Medical Incident,02/02/2016,02/02/2016,02/02/2016 10:38:45 AM,02/02/2016 10:39:50 AM,02/02/2016 10:40:36 AM,02/02/2016 10:41:08 AM,02/02/2016 10:44:27 AM,02/02/2016 10:56:24 AM,02/02/2016 11:00:37 AM,Code 2 Transport,02/02/2016 11:49:29 AM,2200 Block of OFARRELL ST,San Francisco,94115,B05,10,4236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",160331190-KM04 +121530189,E17,12050643,Structure Fire,06/01/2012,06/01/2012,06/01/2012 02:21:02 PM,06/01/2012 02:21:03 PM,06/01/2012 02:21:10 PM,06/01/2012 02:22:00 PM,06/01/2012 02:24:57 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 02:25:16 PM,HUDSON AV/ARDATH CT,SF,94124,B10,17,6624,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",121530189-E17 +140400315,66,14013688,Traffic Collision,02/09/2014,02/09/2014,02/09/2014 06:05:47 PM,02/09/2014 06:05:47 PM,02/09/2014 06:07:19 PM,02/09/2014 06:07:24 PM,02/09/2014 06:10:16 PM,02/09/2014 06:27:52 PM,02/09/2014 07:17:18 PM,Code 2 Transport,02/09/2014 07:27:50 PM,900 Block of HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7812278491456, -122.405374893272)",140400315-66 +133390359,93,13115033,Medical Incident,12/05/2013,12/05/2013,12/05/2013 08:59:55 PM,12/05/2013 09:02:50 PM,12/05/2013 09:11:49 PM,12/05/2013 09:12:13 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 09:29:43 PM,1100 Block of MARKET ST,SF,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",133390359-93 +111550396,RC3,11051413,Medical Incident,06/04/2011,06/04/2011,06/04/2011 11:25:56 PM,06/04/2011 11:28:03 PM,06/04/2011 11:28:31 PM,04/25/2016 02:04:18 PM,06/04/2011 11:35:19 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 12:00:04 AM,22ND ST/MISSION ST,SF,94110,B06,7,5472,2,2,2,true,,1,RESCUE CAPTAIN,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",111550396-RC3 +131160226,E18,13039120,Medical Incident,04/26/2013,04/26/2013,04/26/2013 06:18:09 PM,04/26/2013 06:19:41 PM,04/26/2013 06:24:24 PM,04/26/2013 06:26:19 PM,04/26/2013 06:28:44 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 06:55:54 PM,2600 Block of JUDAH ST,SF,94122,B08,23,7541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7611653096685, -122.490391943862)",131160226-E18 +160123689,AM24,16004976,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:13:20 PM,01/12/2016 10:13:20 PM,01/12/2016 10:15:06 PM,01/12/2016 10:15:42 PM,01/12/2016 10:20:31 PM,01/12/2016 10:41:43 PM,01/12/2016 10:53:16 PM,Code 2 Transport,01/12/2016 11:12:13 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",160123689-AM24 +130370208,E34,13012713,Medical Incident,02/06/2013,02/06/2013,02/06/2013 02:19:37 PM,02/06/2013 02:21:58 PM,02/06/2013 02:22:13 PM,02/06/2013 02:23:08 PM,02/06/2013 02:27:36 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 02:32:49 PM,FULTON ST/GREAT HY,SF,94121,B08,23,7722,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7713424988011, -122.511053754552)",130370208-E34 +130420230,KM09,13014361,Medical Incident,02/11/2013,02/11/2013,02/11/2013 02:59:59 PM,02/11/2013 03:03:17 PM,02/11/2013 03:05:03 PM,02/11/2013 03:05:30 PM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,Patient Declined Transport,02/11/2013 03:19:33 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",130420230-KM09 +140190337,RS1,14006672,Medical Incident,01/19/2014,01/19/2014,01/19/2014 09:27:54 PM,01/19/2014 09:28:31 PM,01/19/2014 09:29:26 PM,01/19/2014 09:31:13 PM,01/19/2014 09:34:28 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/19/2014 09:37:07 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",140190337-RS1 +102450431,RC3,10077518,Medical Incident,09/02/2010,09/02/2010,09/02/2010 07:47:36 PM,09/02/2010 07:49:09 PM,09/02/2010 07:50:15 PM,09/02/2010 07:52:34 PM,09/02/2010 08:00:15 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/02/2010 08:07:47 PM,0 Block of TEDDY AVE,SF,94134,B10,44,6265,3,3,3,true,,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.713430704116, -122.403252361212)",102450431-RC3 +122030146,RS2,12067433,HazMat,07/21/2012,07/21/2012,07/21/2012 11:00:03 AM,07/21/2012 11:00:51 AM,07/21/2012 11:02:42 AM,07/21/2012 11:03:03 AM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 11:10:48 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",122030146-RS2 +102360450,E43,10074531,Medical Incident,08/24/2010,08/24/2010,08/24/2010 09:30:16 PM,08/24/2010 09:31:50 PM,08/24/2010 09:34:42 PM,08/24/2010 09:35:54 PM,08/24/2010 09:37:14 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/24/2010 09:56:34 PM,1000 Block of BRAZIL AVE,SF,94112,B09,43,6163,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7207283438447, -122.426391940904)",102360450-E43 +130340055,D2,13011512,Structure Fire,02/03/2013,02/02/2013,02/03/2013 03:33:48 AM,02/03/2013 03:34:39 AM,02/03/2013 03:36:12 AM,02/03/2013 03:38:37 AM,02/03/2013 03:40:14 AM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 03:42:51 AM,1700 Block of TURK ST,SF,94115,B05,5,4152,3,3,3,false,Alarm,1,CHIEF,5,5,5,Western Addition,"(37.7797619094783, -122.43747246849)",130340055-D2 +132960303,KM07,13100711,Medical Incident,10/23/2013,10/23/2013,10/23/2013 09:30:57 PM,10/23/2013 09:31:20 PM,10/23/2013 09:31:28 PM,10/23/2013 09:33:01 PM,10/23/2013 09:34:37 PM,10/23/2013 09:49:19 PM,10/23/2013 09:59:45 PM,Code 2 Transport,10/23/2013 10:35:10 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",132960303-KM07 +110300332,82,11009984,Medical Incident,01/30/2011,01/30/2011,01/30/2011 08:13:29 PM,01/30/2011 08:15:16 PM,01/30/2011 08:15:22 PM,01/30/2011 08:15:53 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/30/2011 08:17:18 PM,1100 Block of DE HARO ST,SF,94107,B10,37,2561,3,1,2,true,,1,MEDIC,3,10,10,Potrero Hill,"(37.7559025882179, -122.400816594989)",110300332-82 +110530371,92,11017678,Medical Incident,02/22/2011,02/22/2011,02/22/2011 10:59:20 PM,02/22/2011 11:01:13 PM,02/22/2011 11:01:32 PM,02/22/2011 11:01:55 PM,02/22/2011 11:05:11 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 11:09:42 PM,COLE ST/HAIGHT ST,SF,94117,B05,12,4545,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",110530371-92 +160053858,85,16002205,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:36:00 PM,01/05/2016 11:36:47 PM,01/05/2016 11:37:09 PM,01/05/2016 11:37:31 PM,01/05/2016 11:40:30 PM,01/05/2016 11:51:03 PM,01/05/2016 11:53:38 PM,Code 2 Transport,01/06/2016 12:30:30 AM,CEDAR ST/POLK ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",160053858-85 +113280090,71,11108805,Medical Incident,11/24/2011,11/24/2011,11/24/2011 09:32:00 AM,11/24/2011 09:32:24 AM,11/24/2011 09:34:13 AM,04/25/2016 02:01:29 PM,11/24/2011 09:37:07 AM,11/24/2011 09:57:19 AM,11/24/2011 10:23:14 AM,Code 2 Transport,11/24/2011 10:40:33 AM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7732180675925, -122.421522300696)",113280090-71 +160083066,58,16003360,Medical Incident,01/08/2016,01/08/2016,01/08/2016 06:19:38 PM,01/08/2016 06:20:12 PM,01/08/2016 06:20:55 PM,01/08/2016 06:21:10 PM,01/08/2016 06:27:02 PM,01/08/2016 06:43:43 PM,01/08/2016 06:56:48 PM,Code 2 Transport,01/08/2016 07:34:17 PM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7851245205483, -122.410307742137)",160083066-58 +160632504,89,16025148,Medical Incident,03/03/2016,03/03/2016,03/03/2016 04:12:36 PM,03/03/2016 04:14:29 PM,03/03/2016 04:14:43 PM,03/03/2016 04:15:42 PM,03/03/2016 04:25:24 PM,03/03/2016 05:02:53 PM,03/03/2016 05:18:33 PM,Code 2 Transport,03/03/2016 05:36:57 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160632504-89 +130240112,E03,13008238,Medical Incident,01/24/2013,01/24/2013,01/24/2013 09:42:58 AM,01/24/2013 09:43:57 AM,01/24/2013 09:44:03 AM,01/24/2013 09:44:18 AM,01/24/2013 09:45:39 AM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,No Merit,01/24/2013 09:49:57 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",130240112-E03 +140630267,E01,14021342,Medical Incident,03/04/2014,03/04/2014,03/04/2014 04:02:00 PM,03/04/2014 04:03:05 PM,03/04/2014 04:04:43 PM,03/04/2014 04:04:43 PM,03/04/2014 04:06:46 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,No Merit,03/04/2014 04:07:33 PM,100 Block of LANGTON ST,SF,94103,B03,8,2312,3,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7755325814084, -122.407486364653)",140630267-E01 +160152159,62,16006021,Medical Incident,01/15/2016,01/15/2016,01/15/2016 02:30:02 PM,01/15/2016 02:30:02 PM,01/15/2016 02:31:07 PM,01/15/2016 02:31:28 PM,01/15/2016 02:44:32 PM,01/15/2016 03:09:23 PM,01/15/2016 03:16:33 PM,Code 2 Transport,01/15/2016 03:43:25 PM,2700 Block of GOLDEN GATE AVE,San Francisco,94118,B07,21,4557,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7769799077667, -122.455945571982)",160152159-62 +110370028,87,11012063,Medical Incident,02/06/2011,02/05/2011,02/06/2011 01:33:14 AM,02/06/2011 01:35:07 AM,02/06/2011 01:35:23 AM,02/06/2011 01:35:51 AM,02/06/2011 01:39:13 AM,02/06/2011 01:53:01 AM,02/06/2011 01:56:17 AM,Code 2 Transport,02/06/2011 02:12:58 AM,GOLDEN GATE AV/ARGUELLO BL,SF,94118,B07,31,7112,3,3,3,true,,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.77619040409, -122.45850463571)",110370028-87 +131860285,87,13063519,Medical Incident,07/05/2013,07/05/2013,07/05/2013 04:39:41 PM,07/05/2013 04:41:31 PM,07/05/2013 04:43:34 PM,07/05/2013 04:44:38 PM,07/05/2013 04:48:43 PM,07/05/2013 05:09:42 PM,07/05/2013 05:24:24 PM,Code 2 Transport,07/05/2013 06:04:26 PM,500 Block of CABRILLO ST,SF,94118,B07,31,7132,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7752901183585, -122.464404888544)",131860285-87 +130680418,AM18,13022880,Medical Incident,03/09/2013,03/09/2013,03/09/2013 11:34:06 PM,03/09/2013 11:36:35 PM,03/09/2013 11:36:56 PM,03/09/2013 11:37:47 PM,03/09/2013 11:49:13 PM,03/09/2013 11:56:02 PM,03/10/2013 12:04:39 AM,Other,03/10/2013 12:42:44 AM,100 Block of LEXINGTON ST,SF,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7609516880998, -122.420667147384)",130680418-AM18 +120860304,B07,12028660,Structure Fire,03/26/2012,03/26/2012,03/26/2012 07:45:42 PM,03/26/2012 07:46:07 PM,03/26/2012 07:46:32 PM,03/26/2012 07:47:28 PM,03/26/2012 07:51:58 PM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 08:10:10 PM,1800 Block of DIVISADERO ST,SF,94115,B04,10,4156,3,3,3,false,Fire,1,CHIEF,8,4,2,Pacific Heights,"(37.7866611138334, -122.440038591399)",120860304-B07 +113110296,83,11103435,Medical Incident,11/07/2011,11/07/2011,11/07/2011 06:59:42 PM,11/07/2011 07:00:23 PM,11/07/2011 07:00:33 PM,11/07/2011 07:01:08 PM,11/07/2011 07:09:46 PM,11/07/2011 07:29:55 PM,11/07/2011 07:39:32 PM,Code 2 Transport,11/07/2011 07:49:21 PM,0 Block of BEALE ST,SF,94105,B03,13,2125,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7917404337271, -122.396647503187)",113110296-83 +160333028,70,16013133,Medical Incident,02/02/2016,02/02/2016,02/02/2016 07:28:08 PM,02/02/2016 07:28:28 PM,02/02/2016 07:30:49 PM,02/02/2016 07:31:00 PM,02/02/2016 07:34:44 PM,02/02/2016 07:41:39 PM,02/02/2016 08:01:39 PM,Code 3 Transport,02/02/2016 08:15:29 PM,EGBERT AV/INGALLS ST,San Francisco,94124,B10,17,6615,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7215998531098, -122.390745341619)",160333028-70 +130820047,T02,13027345,Structure Fire,03/23/2013,03/22/2013,03/23/2013 02:50:44 AM,03/23/2013 02:51:59 AM,03/23/2013 02:52:14 AM,03/23/2013 02:53:58 AM,03/23/2013 02:56:46 AM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Other,03/23/2013 04:00:58 AM,500 Block of COMMERCIAL ST,SF,94111,B01,13,1166,3,3,3,false,Fire,1,TRUCK,4,1,3,Chinatown,"(37.7943201279675, -122.402666683256)",130820047-T02 +160720264,83,16028449,Medical Incident,03/12/2016,03/11/2016,03/12/2016 01:51:29 AM,03/12/2016 01:52:14 AM,03/12/2016 01:53:13 AM,03/12/2016 01:53:32 AM,03/12/2016 02:07:13 AM,03/12/2016 02:27:41 AM,03/12/2016 02:36:42 AM,Code 2 Transport,03/12/2016 03:05:34 AM,0 Block of GLADSTONE DR,San Francisco,94134,B09,32,5685,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Excelsior,"(37.7303887830591, -122.420169515514)",160720264-83 +103000119,T08,10095719,Traffic Collision,10/27/2010,10/27/2010,10/27/2010 10:13:28 AM,10/27/2010 10:14:59 AM,10/27/2010 10:15:25 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 10:39:18 AM,TOWNSEND ST/4TH ST,SF,94107,B03,8,2224,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7770893320016, -122.394981482757)",103000119-T08 +132090261,E18,13070756,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:39:40 PM,07/28/2013 04:41:49 PM,07/28/2013 04:42:35 PM,07/28/2013 04:43:39 PM,07/28/2013 04:48:18 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 04:53:30 PM,2500 Block of 41ST AVE,SF,94116,B08,18,7637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392114618851, -122.499135486789)",132090261-E18 +122270095,78,12075189,Medical Incident,08/14/2012,08/14/2012,08/14/2012 10:11:19 AM,08/14/2012 10:12:21 AM,08/14/2012 10:12:47 AM,08/14/2012 10:13:09 AM,08/14/2012 10:25:15 AM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Patient Declined Transport,08/14/2012 10:54:05 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",122270095-78 +160662746,68,16026490,Medical Incident,03/06/2016,03/06/2016,03/06/2016 06:57:15 PM,03/06/2016 06:58:16 PM,03/06/2016 06:58:40 PM,03/06/2016 06:58:54 PM,03/06/2016 07:00:30 PM,03/06/2016 07:16:17 PM,03/06/2016 07:20:46 PM,Code 2 Transport,03/06/2016 07:58:09 PM,1300 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",160662746-68 +102430104,99,10076571,Medical Incident,08/31/2010,08/31/2010,08/31/2010 09:20:53 AM,08/31/2010 09:23:33 AM,08/31/2010 09:23:56 AM,08/31/2010 09:26:07 AM,08/31/2010 09:29:08 AM,08/31/2010 09:46:56 AM,08/31/2010 10:04:18 AM,Code 2 Transport,08/31/2010 10:35:15 AM,4400 Block of IRVING ST,SF,94122,B08,23,7721,3,3,3,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",102430104-99 +111740245,AM08,11057448,Medical Incident,06/23/2011,06/23/2011,06/23/2011 05:11:06 PM,06/23/2011 05:12:57 PM,06/23/2011 05:13:32 PM,06/23/2011 05:14:18 PM,06/23/2011 05:20:28 PM,06/23/2011 05:42:43 PM,06/23/2011 05:51:03 PM,Code 2 Transport,06/23/2011 06:25:24 PM,600 Block of LYON ST,SF,94117,B05,21,4346,1,1,2,false,,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7767038929732, -122.443158415512)",111740245-AM08 +121410229,59,12046881,Medical Incident,05/20/2012,05/20/2012,05/20/2012 01:55:22 PM,05/20/2012 01:55:39 PM,05/20/2012 01:55:53 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 01:59:47 PM,100 Block of JOHN F KENNEDY DR,SF,94122,B05,12,4554,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7711332354432, -122.457507583541)",121410229-59 +160111168,52,16004339,Medical Incident,01/11/2016,01/11/2016,01/11/2016 10:38:57 AM,01/11/2016 10:40:21 AM,01/11/2016 10:41:20 AM,01/11/2016 10:41:43 AM,01/11/2016 10:51:23 AM,01/11/2016 11:23:39 AM,01/11/2016 11:40:48 AM,Code 2 Transport,01/11/2016 12:08:10 PM,1600 Block of BRYANT ST,San Francisco,94103,B02,29,5222,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7662587674103, -122.410479250127)",160111168-52 +111620350,83,11053643,Medical Incident,06/11/2011,06/11/2011,06/11/2011 10:01:17 PM,06/11/2011 10:02:42 PM,06/11/2011 10:02:49 PM,06/11/2011 10:02:58 PM,06/11/2011 10:08:11 PM,06/11/2011 10:16:05 PM,06/11/2011 10:33:02 PM,Code 2 Transport,06/11/2011 10:49:59 PM,HARRIET ST/HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7793184597995, -122.407691082986)",111620350-83 +160213572,78,16008535,Medical Incident,01/21/2016,01/21/2016,01/21/2016 07:58:37 PM,01/21/2016 07:58:37 PM,01/21/2016 07:59:17 PM,01/21/2016 08:00:32 PM,01/21/2016 08:08:38 PM,01/21/2016 08:29:33 PM,01/21/2016 08:51:28 PM,Code 2 Transport,01/21/2016 09:28:58 PM,200 Block of PRAGUE ST,San Francisco,94112,B09,43,6165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7181331423578, -122.427722716773)",160213572-78 +140380126,KM01,14012773,Medical Incident,02/07/2014,02/07/2014,02/07/2014 10:24:23 AM,02/07/2014 10:26:28 AM,02/07/2014 10:27:24 AM,02/07/2014 10:28:02 AM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 10:28:35 AM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",140380126-KM01 +133070160,E02,13104362,Medical Incident,11/03/2013,11/03/2013,11/03/2013 11:22:05 AM,11/03/2013 11:28:56 AM,11/03/2013 11:30:32 AM,11/03/2013 11:34:49 AM,11/03/2013 11:35:50 AM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/03/2013 11:48:12 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",133070160-E02 +160732860,AM14,16029118,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:28:53 PM,03/13/2016 09:28:53 PM,03/13/2016 09:33:05 PM,03/13/2016 09:33:28 PM,03/13/2016 09:38:28 PM,03/13/2016 09:59:31 PM,03/13/2016 10:22:44 PM,Code 2 Transport,03/13/2016 10:44:33 PM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",160732860-AM14 +131930244,E48,13065702,Traffic Collision,07/12/2013,07/12/2013,07/12/2013 05:18:04 PM,07/12/2013 05:19:32 PM,07/12/2013 05:20:08 PM,07/12/2013 05:22:02 PM,07/12/2013 05:33:43 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 06:06:37 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",131930244-E48 +160011401,75,16000249,Medical Incident,01/01/2016,01/01/2016,01/01/2016 08:53:26 AM,01/01/2016 08:54:38 AM,01/01/2016 08:54:57 AM,01/01/2016 08:55:02 AM,01/01/2016 09:09:03 AM,01/01/2016 09:53:30 AM,01/01/2016 10:32:27 AM,Code 2 Transport,01/01/2016 11:17:14 AM,500 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",160011401-75 +133270403,E29,13111262,Medical Incident,11/23/2013,11/23/2013,11/23/2013 09:27:20 PM,11/23/2013 09:27:43 PM,11/23/2013 09:38:56 PM,11/23/2013 09:40:15 PM,11/23/2013 09:41:51 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 10:03:34 PM,0 Block of CAROLINA ST,SF,94107,B03,29,2362,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,10,Mission Bay,"(37.7679387012306, -122.400989022999)",133270403-E29 +160162305,58,16006479,Medical Incident,01/16/2016,01/16/2016,01/16/2016 03:52:38 PM,01/16/2016 03:54:44 PM,01/16/2016 03:55:03 PM,01/16/2016 03:55:13 PM,01/16/2016 04:04:14 PM,01/16/2016 04:19:39 PM,01/16/2016 04:28:37 PM,Code 2 Transport,01/16/2016 04:53:16 PM,100 Block of BOSWORTH ST,San Francisco,94112,B06,32,5633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,8,Outer Mission,"(37.7334588269513, -122.428119241701)",160162305-58 +103530040,E16,10113195,Medical Incident,12/19/2010,12/18/2010,12/19/2010 01:25:22 AM,12/19/2010 01:26:27 AM,12/19/2010 01:27:31 AM,12/19/2010 01:29:00 AM,12/19/2010 01:31:37 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,No Merit,12/19/2010 01:40:09 AM,3600 Block of BUCHANAN ST,SF,94123,B04,16,3446,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8035364991115, -122.433494688087)",103530040-E16 +111290134,RC1,11042619,Medical Incident,05/09/2011,05/09/2011,05/09/2011 12:02:35 PM,05/09/2011 12:04:17 PM,05/09/2011 12:04:29 PM,05/09/2011 12:05:50 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Other,05/09/2011 12:33:58 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,E,2,2,true,,1,RESCUE CAPTAIN,2,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",111290134-RC1 +160292159,74,16011481,Medical Incident,01/29/2016,01/29/2016,01/29/2016 03:02:21 PM,01/29/2016 03:03:07 PM,01/29/2016 03:03:21 PM,01/29/2016 03:03:43 PM,01/29/2016 03:05:17 PM,01/29/2016 03:13:17 PM,01/29/2016 03:23:03 PM,Code 2 Transport,01/29/2016 04:09:48 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160292159-74 +112630164,E03,11086803,Medical Incident,09/20/2011,09/20/2011,09/20/2011 10:57:47 AM,09/20/2011 11:00:01 AM,09/20/2011 11:00:38 AM,09/20/2011 11:02:02 AM,09/20/2011 11:01:57 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/20/2011 11:08:48 AM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,,1,ENGINE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",112630164-E03 +160133089,58,16005288,Medical Incident,01/13/2016,01/13/2016,01/13/2016 05:25:57 PM,01/13/2016 05:31:41 PM,01/13/2016 05:32:01 PM,01/13/2016 05:32:19 PM,01/13/2016 05:32:22 PM,01/13/2016 05:37:45 PM,01/13/2016 05:50:28 PM,Code 2 Transport,01/13/2016 06:08:09 PM,900 Block of BRANNAN ST,San Francisco,94103,B03,29,2330,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7707119826907, -122.406261949572)",160133089-58 +160193589,KM03,16007808,Medical Incident,01/19/2016,01/19/2016,01/19/2016 09:46:40 PM,01/19/2016 09:47:31 PM,01/19/2016 09:47:49 PM,01/19/2016 09:48:20 PM,01/19/2016 09:52:50 PM,01/19/2016 10:15:05 PM,01/19/2016 10:20:35 PM,Code 2 Transport,01/19/2016 10:48:59 PM,1900 Block of VAN NESS AVE,San Francisco,94109,B04,41,3153,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Russian Hill,"(37.7935141253124, -122.422789161737)",160193589-KM03 +160643170,65,16025637,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:42:56 PM,03/04/2016 06:42:56 PM,03/04/2016 06:45:22 PM,03/04/2016 06:51:49 PM,03/04/2016 07:07:51 PM,03/04/2016 07:22:53 PM,03/04/2016 08:04:05 PM,Code 2 Transport,03/04/2016 08:47:09 PM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",160643170-65 +140130222,T01,14004487,Citizen Assist / Service Call,01/13/2014,01/13/2014,01/13/2014 02:18:27 PM,01/13/2014 02:19:18 PM,01/13/2014 02:19:28 PM,01/13/2014 02:21:12 PM,01/13/2014 02:23:01 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Fire,01/13/2014 02:26:46 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",140130222-T01 +111870246,67,11061872,Medical Incident,07/06/2011,07/06/2011,07/06/2011 03:25:06 PM,07/06/2011 03:26:14 PM,07/06/2011 03:26:46 PM,07/06/2011 03:27:21 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 03:30:39 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,MEDIC,3,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",111870246-67 +112660121,E02,11087836,Medical Incident,09/23/2011,09/23/2011,09/23/2011 10:12:48 AM,09/23/2011 10:15:17 AM,09/23/2011 10:16:08 AM,09/23/2011 10:17:06 AM,09/23/2011 10:20:00 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 10:38:47 AM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7950325698412, -122.407793068572)",112660121-E02 +122100348,E35,12069911,Alarms,07/28/2012,07/28/2012,07/28/2012 10:34:02 PM,07/28/2012 10:35:16 PM,07/28/2012 10:35:31 PM,07/28/2012 10:36:22 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 10:58:20 PM,200 Block of THE EMBARCADERO,SF,94111,B01,13,903,3,3,3,true,Alarm,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",122100348-E35 +123160063,T02,12105064,Alarms,11/11/2012,11/10/2012,11/11/2012 05:35:28 AM,11/11/2012 05:37:25 AM,11/11/2012 05:37:52 AM,11/11/2012 05:39:57 AM,11/11/2012 05:42:14 AM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/11/2012 05:45:58 AM,800 Block of COLUMBUS AVE,SF,94133,B01,28,1423,3,3,3,false,Alarm,1,TRUCK,3,1,3,Russian Hill,"(37.8024220415516, -122.413358845822)",123160063-T02 +160061335,64,16002356,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:01:01 AM,01/06/2016 11:01:34 AM,01/06/2016 11:02:30 AM,01/06/2016 11:02:55 AM,01/06/2016 11:08:45 AM,01/06/2016 11:28:50 AM,01/06/2016 11:37:32 AM,Code 2 Transport,01/06/2016 12:18:43 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",160061335-64 +160140174,AM18,16005410,Medical Incident,01/14/2016,01/13/2016,01/14/2016 01:46:44 AM,01/14/2016 01:48:21 AM,01/14/2016 01:48:40 AM,01/14/2016 01:49:06 AM,01/14/2016 01:54:03 AM,01/14/2016 02:08:47 AM,01/14/2016 02:28:02 AM,Code 2 Transport,01/14/2016 02:52:39 AM,0 Block of SALMON ST,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7965569039211, -122.412544215854)",160140174-AM18 +133270252,B07,13111121,Structure Fire,11/23/2013,11/23/2013,11/23/2013 02:31:50 PM,11/23/2013 02:32:09 PM,11/23/2013 02:32:23 PM,11/23/2013 02:32:59 PM,11/23/2013 02:41:31 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 04:39:10 PM,3600 Block of SACRAMENTO ST,SF,94118,B07,10,4432,3,3,3,false,Fire,3,CHIEF,9,7,2,Presidio Heights,"(37.7873936866832, -122.452758503157)",133270252-B07 +121100319,AM14,12036493,Medical Incident,04/19/2012,04/19/2012,04/19/2012 06:53:53 PM,04/19/2012 06:55:29 PM,04/19/2012 06:55:44 PM,04/19/2012 06:56:24 PM,04/19/2012 07:06:36 PM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/19/2012 07:43:15 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",121100319-AM14 +130400252,KM06,13013726,Medical Incident,02/09/2013,02/09/2013,02/09/2013 04:01:50 PM,02/09/2013 04:03:54 PM,02/09/2013 04:04:27 PM,02/09/2013 04:06:10 PM,02/09/2013 04:10:38 PM,02/09/2013 04:41:50 PM,02/09/2013 04:57:46 PM,Code 2 Transport,02/09/2013 05:29:47 PM,GOUGH ST/HAIGHT ST,SF,94102,B02,36,3311,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7731517441996, -122.422229369585)",130400252-KM06 +160813122,53,16032304,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:29:55 PM,03/21/2016 06:30:40 PM,03/21/2016 06:32:23 PM,03/21/2016 06:32:33 PM,03/21/2016 06:37:01 PM,03/21/2016 06:47:07 PM,03/21/2016 07:20:52 PM,Code 2 Transport,03/21/2016 07:45:41 PM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160813122-53 +111220147,92,11040289,Medical Incident,05/02/2011,05/02/2011,05/02/2011 10:43:52 AM,05/02/2011 10:44:58 AM,05/02/2011 10:45:28 AM,05/02/2011 10:45:48 AM,05/02/2011 10:51:59 AM,05/02/2011 11:12:42 AM,05/02/2011 11:41:02 AM,Code 2 Transport,05/02/2011 12:08:37 PM,900 Block of SCOTT ST,SF,94115,B05,5,4134,3,1,2,true,,1,MEDIC,2,5,5,Western Addition,"(37.7784807630017, -122.436722297211)",111220147-92 +130760156,KM01,13025363,Structure Fire,03/17/2013,03/17/2013,03/17/2013 11:12:44 AM,03/17/2013 11:12:45 AM,03/17/2013 11:14:34 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,No Merit,03/17/2013 11:15:29 AM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,false,Alarm,1,PRIVATE,3,3,6,South of Market,"(37.7820242662358, -122.401159719509)",130760156-KM01 +102720203,92,10086382,Medical Incident,09/29/2010,09/29/2010,09/29/2010 01:34:05 PM,09/29/2010 01:35:33 PM,09/29/2010 01:35:56 PM,09/29/2010 01:36:21 PM,09/29/2010 01:45:23 PM,09/29/2010 02:05:46 PM,09/29/2010 02:24:40 PM,Code 2 Transport,09/29/2010 02:45:46 PM,0 Block of MASON ST,SF,94102,B03,1,1365,1,1,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",102720203-92 +110920036,76,11030404,Medical Incident,04/02/2011,04/01/2011,04/02/2011 01:36:00 AM,04/02/2011 01:36:30 AM,04/02/2011 01:36:54 AM,04/02/2011 01:39:56 AM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,Other,04/25/2016 02:05:19 PM,100 Block of HOLLOWAY AVE,SF,94112,B09,15,8472,3,2,2,true,,1,MEDIC,3,9,7,Oceanview/Merced/Ingleside,"(37.721904919521, -122.454617025243)",110920036-76 +160341136,KM12,16013322,Medical Incident,02/03/2016,02/03/2016,02/03/2016 10:25:02 AM,02/03/2016 10:26:04 AM,02/03/2016 10:27:31 AM,02/03/2016 10:28:32 AM,02/03/2016 10:32:15 AM,02/03/2016 10:46:48 AM,02/03/2016 11:36:41 AM,Code 2 Transport,02/03/2016 11:50:20 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160341136-KM12 +110270296,T18,11008972,Medical Incident,01/27/2011,01/27/2011,01/27/2011 04:46:42 PM,01/27/2011 04:47:29 PM,01/27/2011 04:49:17 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 04:50:29 PM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,false,,1,TRUCK,4,8,4,Sunset/Parkside,"(37.7444820263748, -122.506894604858)",110270296-T18 +160192416,56,16007704,Medical Incident,01/19/2016,01/19/2016,01/19/2016 04:01:36 PM,01/19/2016 04:01:36 PM,01/19/2016 04:02:10 PM,01/19/2016 04:02:38 PM,01/19/2016 04:20:18 PM,01/19/2016 04:36:35 PM,01/19/2016 04:53:37 PM,Code 2 Transport,01/19/2016 05:19:37 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160192416-56 +120690265,E38,12022960,Medical Incident,03/09/2012,03/09/2012,03/09/2012 05:08:08 PM,03/09/2012 05:10:24 PM,03/09/2012 05:11:00 PM,03/09/2012 05:12:11 PM,03/09/2012 05:14:08 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,No Merit,03/09/2012 05:15:46 PM,1700 Block of SUTTER ST,SF,94115,B04,38,3433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",120690265-E38 +103110313,B03,10099858,Alarms,11/07/2010,11/07/2010,11/07/2010 07:53:41 PM,11/07/2010 07:55:22 PM,11/07/2010 07:55:32 PM,11/07/2010 07:56:47 PM,11/07/2010 07:59:22 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Fire,11/07/2010 08:03:15 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,false,,1,CHIEF,3,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",103110313-B03 +111050316,KM14,11034884,Traffic Collision,04/15/2011,04/15/2011,04/15/2011 08:37:19 PM,04/15/2011 08:38:24 PM,04/15/2011 08:38:46 PM,04/15/2011 08:39:36 PM,04/15/2011 08:46:19 PM,04/15/2011 09:00:38 PM,04/15/2011 09:05:28 PM,Code 2 Transport,04/15/2011 09:24:20 PM,IRVING ST/7TH AV,SF,94122,B08,22,7332,3,3,3,false,,1,PRIVATE,3,7,5,Inner Sunset,"(37.7641308708366, -122.46417202271)",111050316-KM14 +110320078,AM16,11010406,Medical Incident,02/01/2011,02/01/2011,02/01/2011 09:07:31 AM,02/01/2011 09:12:45 AM,02/01/2011 09:13:00 AM,02/01/2011 09:13:50 AM,02/01/2011 09:21:40 AM,02/01/2011 09:32:57 AM,02/01/2011 09:56:52 AM,Code 2 Transport,02/01/2011 10:27:37 AM,600 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,false,,1,PRIVATE,2,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",110320078-AM16 +111210129,B01,11039897,Alarms,05/01/2011,05/01/2011,05/01/2011 10:10:57 AM,05/01/2011 10:11:23 AM,05/01/2011 10:11:39 AM,05/01/2011 10:11:59 AM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Fire,05/01/2011 10:18:47 AM,600 Block of GEARY ST,SF,94109,B01,3,1462,3,3,3,false,,1,CHIEF,3,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",111210129-B01 +133580195,D3,13121719,Structure Fire,12/24/2013,12/24/2013,12/24/2013 01:25:00 PM,12/24/2013 01:25:56 PM,12/24/2013 01:26:23 PM,12/24/2013 01:27:40 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 01:30:58 PM,700 Block of VIENNA ST,SF,94112,B09,43,6157,3,3,3,false,Alarm,1,CHIEF,7,9,11,Excelsior,"(37.7165548488902, -122.433283057417)",133580195-D3 +120100375,E41,12003642,Structure Fire,01/10/2012,01/10/2012,01/10/2012 10:24:00 PM,01/10/2012 10:24:41 PM,01/10/2012 10:24:56 PM,01/10/2012 10:26:21 PM,01/10/2012 10:27:27 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 03:07:25 AM,800 Block of CLAY ST,SF,94108,B01,13,1313,3,3,3,false,Fire,1,ENGINE,1,1,3,Chinatown,"(37.7941136505366, -122.407046655058)",120100375-E41 +112270353,E07,11075162,Medical Incident,08/15/2011,08/15/2011,08/15/2011 07:18:04 PM,08/15/2011 07:19:39 PM,08/15/2011 07:19:57 PM,08/15/2011 07:20:57 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 07:27:01 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",112270353-E07 +120620334,84,12020523,Medical Incident,03/02/2012,03/02/2012,03/02/2012 08:32:51 PM,03/02/2012 08:33:49 PM,03/02/2012 08:34:07 PM,03/02/2012 08:34:18 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/02/2012 08:35:40 PM,0 Block of WALTER ST,SF,94114,B05,6,5131,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,5,8,Castro/Upper Market,"(37.7683848780008, -122.432450783401)",120620334-84 +122560016,T15,12084506,Structure Fire,09/12/2012,09/11/2012,09/12/2012 01:22:28 AM,09/12/2012 01:22:29 AM,09/12/2012 01:22:34 AM,09/12/2012 01:24:39 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 01:31:50 AM,100 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,false,Fire,1,TRUCK,5,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",122560016-T15 +160281508,52,16011061,Medical Incident,01/28/2016,01/28/2016,01/28/2016 11:50:51 AM,01/28/2016 11:54:21 AM,01/28/2016 11:54:26 AM,01/28/2016 11:54:38 AM,01/28/2016 12:03:25 PM,01/28/2016 12:15:45 PM,01/28/2016 12:34:28 PM,Code 2 Transport,01/28/2016 01:06:07 PM,1900 Block of FRANKLIN ST,San Francisco,94109,B04,38,3226,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.792412107081, -122.424360895464)",160281508-52 +160010219,KM08,16000037,Medical Incident,01/01/2016,12/31/2015,01/01/2016 12:47:44 AM,01/01/2016 12:48:18 AM,01/01/2016 01:23:06 AM,01/01/2016 01:23:26 AM,01/01/2016 01:34:10 AM,01/01/2016 01:42:30 AM,01/01/2016 01:56:41 AM,Code 2 Transport,01/01/2016 02:09:36 AM,400 Block of GOUGH ST,San Francisco,94102,B02,36,3265,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7771077210197, -122.42309400129)",160010219-KM08 +112430303,E02,11080224,Medical Incident,08/31/2011,08/31/2011,08/31/2011 06:24:28 PM,08/31/2011 06:27:08 PM,08/31/2011 06:27:18 PM,08/31/2011 06:27:50 PM,08/31/2011 06:48:07 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,08/31/2011 07:08:27 PM,400 Block of DAVIS CT,SF,94111,B01,13,1132,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7967073395076, -122.398186156213)",112430303-E02 +132840286,E32,13096710,Gas Leak (Natural and LP Gases),10/11/2013,10/11/2013,10/11/2013 06:56:33 PM,10/11/2013 06:58:22 PM,10/11/2013 06:58:36 PM,10/11/2013 07:01:01 PM,10/11/2013 07:03:02 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/11/2013 07:11:02 PM,100 Block of CHENERY ST,SF,94131,B06,32,8113,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7393855820858, -122.425747964011)",132840286-E32 +160271638,53,16010661,Medical Incident,01/27/2016,01/27/2016,01/27/2016 12:18:17 PM,01/27/2016 12:19:05 PM,01/27/2016 12:19:50 PM,01/27/2016 12:23:14 PM,01/27/2016 12:26:23 PM,01/27/2016 12:44:22 PM,01/27/2016 12:53:05 PM,Code 2 Transport,01/27/2016 01:34:47 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160271638-53 +160023549,KM07,16000961,Medical Incident,01/02/2016,01/02/2016,01/02/2016 10:57:35 PM,01/02/2016 10:58:16 PM,01/02/2016 10:58:33 PM,01/02/2016 10:59:54 PM,01/02/2016 11:04:54 PM,01/02/2016 11:30:43 PM,01/03/2016 12:09:23 AM,Code 2 Transport,01/03/2016 12:43:15 AM,1300 Block of 31ST AVE,San Francisco,94122,B08,23,7536,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7620676593975, -122.489849528292)",160023549-KM07 +130540117,KM01,13018203,Medical Incident,02/23/2013,02/23/2013,02/23/2013 10:53:30 AM,02/23/2013 10:54:57 AM,02/23/2013 10:55:08 AM,02/23/2013 10:57:55 AM,02/23/2013 11:04:51 AM,02/23/2013 11:18:18 AM,02/23/2013 11:35:43 AM,Code 2 Transport,02/23/2013 11:59:12 AM,0 Block of TURK ST,SF,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",130540117-KM01 +160523590,64,16021012,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:46:04 PM,02/21/2016 10:46:04 PM,02/21/2016 10:46:12 PM,02/21/2016 10:46:44 PM,02/21/2016 10:50:13 PM,02/21/2016 11:04:34 PM,02/21/2016 11:08:08 PM,Code 2 Transport,02/21/2016 11:53:26 PM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7693981235751, -122.451276976837)",160523590-64 +133520390,82,13119739,Medical Incident,12/18/2013,12/18/2013,12/18/2013 09:33:23 PM,12/18/2013 09:36:11 PM,12/18/2013 09:36:31 PM,12/18/2013 09:36:41 PM,12/18/2013 09:51:10 PM,12/18/2013 10:06:10 PM,12/18/2013 10:39:34 PM,Code 2 Transport,12/18/2013 11:04:09 PM,NEW MONTGOMERY ST/MISSION ST,SF,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",133520390-82 +123160252,E36,12105223,Medical Incident,11/11/2012,11/11/2012,11/11/2012 04:53:14 PM,11/11/2012 04:55:50 PM,11/11/2012 04:56:19 PM,11/11/2012 04:57:15 PM,11/11/2012 04:58:34 PM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,Other,11/11/2012 04:58:56 PM,SOUTH VAN NESS AV/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7751470741622, -122.419255607214)",123160252-E36 +122310369,RC1,12076774,Medical Incident,08/18/2012,08/18/2012,08/18/2012 11:13:33 PM,08/18/2012 11:14:53 PM,08/18/2012 11:15:11 PM,08/18/2012 11:22:35 PM,08/18/2012 11:26:47 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/19/2012 12:12:10 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122310369-RC1 +160393444,71,16015793,Medical Incident,02/08/2016,02/08/2016,02/08/2016 08:49:49 PM,02/08/2016 08:52:42 PM,02/08/2016 08:53:01 PM,02/08/2016 08:53:08 PM,02/08/2016 08:56:17 PM,02/08/2016 09:14:07 PM,02/08/2016 09:22:53 PM,Code 2 Transport,02/08/2016 09:59:00 PM,1300 Block of 5TH AVE,San Francisco,94122,B08,12,7326,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7632907518666, -122.462034637217)",160393444-71 +112750360,T02,11091164,Structure Fire,10/02/2011,10/02/2011,10/02/2011 08:59:52 PM,10/02/2011 09:01:49 PM,10/02/2011 09:01:55 PM,10/02/2011 09:03:21 PM,10/02/2011 09:10:25 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/02/2011 09:14:01 PM,1200 Block of JONES ST,SF,94109,B01,41,1465,3,3,3,false,,1,TRUCK,7,1,3,Nob Hill,"(37.7925546958216, -122.414405940495)",112750360-T02 +121490095,E07,12049391,Medical Incident,05/28/2012,05/28/2012,05/28/2012 08:42:43 AM,05/28/2012 08:44:21 AM,05/28/2012 08:46:10 AM,05/28/2012 08:47:53 AM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/28/2012 08:50:04 AM,1000 Block of YORK ST,SF,94110,B06,7,5474,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7552580412955, -122.408352038428)",121490095-E07 +120980298,E01,12032600,Medical Incident,04/07/2012,04/07/2012,04/07/2012 08:24:52 PM,04/07/2012 08:26:02 PM,04/07/2012 08:26:52 PM,04/07/2012 08:28:06 PM,04/07/2012 08:29:46 PM,04/25/2016 01:59:17 PM,04/25/2016 01:59:17 PM,No Merit,04/07/2012 08:33:06 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",120980298-E01 +122070068,78,12068737,Traffic Collision,07/25/2012,07/24/2012,07/25/2012 07:41:46 AM,07/25/2012 07:43:02 AM,07/25/2012 07:43:15 AM,04/25/2016 01:57:33 PM,07/25/2012 07:44:18 AM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,No Merit,07/25/2012 07:49:50 AM,GOUGH ST/HAYES ST,SF,94102,B02,36,3265,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7768835259362, -122.422978150089)",122070068-78 +160372900,KM05,16014812,Medical Incident,02/06/2016,02/06/2016,02/06/2016 05:21:37 PM,02/06/2016 05:23:49 PM,02/06/2016 05:24:48 PM,02/06/2016 05:25:21 PM,02/06/2016 05:36:54 PM,02/06/2016 05:40:03 PM,02/06/2016 06:17:23 PM,Code 2 Transport,02/06/2016 06:40:37 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160372900-KM05 +110240286,58,11007951,Medical Incident,01/24/2011,01/24/2011,01/24/2011 03:47:27 PM,01/24/2011 03:48:46 PM,01/24/2011 03:51:23 PM,01/24/2011 03:51:36 PM,01/24/2011 04:06:12 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/24/2011 04:40:00 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",110240286-58 +130570318,E20,13019288,Structure Fire,02/26/2013,02/26/2013,02/26/2013 10:47:47 PM,02/26/2013 10:49:34 PM,02/26/2013 10:49:56 PM,02/26/2013 10:51:34 PM,02/26/2013 10:53:49 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 10:57:39 PM,1400 Block of 10TH AVE,SF,94122,B08,22,7334,3,3,3,true,Alarm,1,ENGINE,3,8,7,Inner Sunset,"(37.7611931997962, -122.467256491478)",130570318-E20 +111360153,RC2,11045256,Medical Incident,05/16/2011,05/16/2011,05/16/2011 11:43:43 AM,05/16/2011 11:45:54 AM,05/16/2011 11:46:03 AM,04/25/2016 02:04:36 PM,05/16/2011 12:01:23 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 12:17:28 PM,900 Block of POWELL ST,SF,94108,B01,2,1355,3,3,3,true,,1,RESCUE CAPTAIN,5,1,3,Chinatown,"(37.793420180327, -122.409388683)",111360153-RC2 +122660263,E09,12087946,Medical Incident,09/22/2012,09/22/2012,09/22/2012 06:17:45 PM,09/22/2012 06:18:54 PM,09/22/2012 06:20:46 PM,09/22/2012 06:22:27 PM,09/22/2012 06:25:21 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 06:36:10 PM,24TH ST/HARRISON ST,SF,94110,B06,7,5533,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7526285917569, -122.41189982284)",122660263-E09 +133310344,B04,13112515,Alarms,11/27/2013,11/27/2013,11/27/2013 10:22:45 PM,11/27/2013 10:23:30 PM,11/27/2013 10:23:41 PM,11/27/2013 10:23:48 PM,11/27/2013 10:26:59 PM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/27/2013 10:36:43 PM,1700 Block of STEINER ST,SF,94115,B04,5,3622,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.785401441104, -122.434892168522)",133310344-B04 +121020157,83,12033796,Medical Incident,04/11/2012,04/11/2012,04/11/2012 12:02:47 PM,04/11/2012 12:03:43 PM,04/11/2012 12:04:03 PM,04/25/2016 01:59:13 PM,04/11/2012 12:04:15 PM,04/11/2012 12:18:40 PM,04/11/2012 12:56:47 PM,Code 2 Transport,04/11/2012 01:30:05 PM,800 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",121020157-83 +130520096,55,13017508,Medical Incident,02/21/2013,02/21/2013,02/21/2013 09:18:53 AM,02/21/2013 09:21:17 AM,02/21/2013 09:22:47 AM,02/21/2013 09:23:20 AM,02/21/2013 09:40:25 AM,02/21/2013 10:04:50 AM,02/21/2013 10:17:36 AM,Code 2 Transport,02/21/2013 10:55:17 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",130520096-55 +111860344,RS1,11061600,Medical Incident,07/05/2011,07/05/2011,07/05/2011 06:42:31 PM,07/05/2011 06:43:34 PM,07/05/2011 06:43:53 PM,07/05/2011 06:44:41 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 06:44:53 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,E,E,3,false,,1,RESCUE SQUAD,4,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",111860344-RS1 +132090171,86,13070672,Medical Incident,07/28/2013,07/28/2013,07/28/2013 12:04:22 PM,07/28/2013 12:04:36 PM,07/28/2013 12:05:28 PM,07/28/2013 12:05:37 PM,07/28/2013 12:10:59 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 12:30:16 PM,100 Block of DELANO AVE,SF,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.72589949077, -122.441045636439)",132090171-86 +120890340,AM10,12029604,Medical Incident,03/29/2012,03/29/2012,03/29/2012 09:55:40 PM,03/29/2012 09:55:52 PM,03/29/2012 09:57:29 PM,03/29/2012 09:58:21 PM,03/29/2012 10:10:04 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Patient Declined Transport,03/29/2012 10:16:32 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",120890340-AM10 +132850116,KM01,13096896,Medical Incident,10/12/2013,10/12/2013,10/12/2013 09:27:29 AM,10/12/2013 09:29:55 AM,10/12/2013 09:30:10 AM,10/12/2013 09:31:02 AM,10/12/2013 09:45:25 AM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Code 2 Transport,10/12/2013 11:01:18 AM,400 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",132850116-KM01 +132610273,T12,13088445,Vehicle Fire,09/18/2013,09/18/2013,09/18/2013 03:29:50 PM,09/18/2013 03:32:12 PM,09/18/2013 03:32:42 PM,09/18/2013 03:33:57 PM,09/18/2013 03:38:00 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 03:49:22 PM,7TH AV/LAWTON ST,SF,94122,B08,20,5377,3,3,3,false,Fire,1,TRUCK,2,8,7,Inner Sunset,"(37.7585381820078, -122.463781526954)",132610273-T12 +132280335,E06,13077083,Medical Incident,08/16/2013,08/16/2013,08/16/2013 06:16:33 PM,08/16/2013 06:18:01 PM,08/16/2013 06:20:38 PM,08/16/2013 06:21:59 PM,08/16/2013 06:24:29 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,Other,08/16/2013 06:55:16 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",132280335-E06 +103270268,RS1,10104837,Medical Incident,11/23/2010,11/23/2010,11/23/2010 05:12:17 PM,11/23/2010 05:12:29 PM,11/23/2010 05:12:44 PM,11/23/2010 05:13:48 PM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/23/2010 05:17:43 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,false,,1,RESCUE SQUAD,3,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",103270268-RS1 +113130067,88,11103907,Medical Incident,11/09/2011,11/08/2011,11/09/2011 07:19:07 AM,11/09/2011 07:20:45 AM,11/09/2011 07:21:01 AM,11/09/2011 07:21:12 AM,11/09/2011 07:27:27 AM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,Patient Declined Transport,11/09/2011 08:01:44 AM,2100 Block of 15TH AVE,SF,94116,B08,40,7362,E,E,3,true,,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7479066424618, -122.471615319161)",113130067-88 +70410380,B01,7012241,Alarms,02/10/2007,02/10/2007,02/10/2007 09:59:14 PM,02/10/2007 10:01:01 PM,02/10/2007 10:01:40 PM,02/10/2007 10:02:59 PM,02/10/2007 10:05:43 PM,04/25/2016 03:40:45 PM,04/25/2016 03:40:45 PM,Fire,02/10/2007 10:08:44 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,,1,CHIEF,2,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",070410380-B01 +121960081,E08,12065121,Outside Fire,07/14/2012,07/13/2012,07/14/2012 07:33:10 AM,07/14/2012 07:33:36 AM,07/14/2012 07:33:53 AM,07/14/2012 07:35:26 AM,07/14/2012 07:38:33 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/14/2012 07:40:39 AM,400 Block of THE EMBARCADERO,SF,94111,B03,35,926,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",121960081-E08 +131640269,T10,13055782,Alarms,06/13/2013,06/13/2013,06/13/2013 04:19:00 PM,06/13/2013 04:19:57 PM,06/13/2013 04:20:13 PM,06/13/2013 04:21:33 PM,06/13/2013 04:24:01 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/13/2013 04:24:39 PM,2900 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,false,Alarm,1,TRUCK,2,4,2,Pacific Heights,"(37.792966929515, -122.445655531194)",131640269-T10 +130880259,T13,13029431,Structure Fire,03/29/2013,03/29/2013,03/29/2013 02:47:08 PM,03/29/2013 02:49:18 PM,03/29/2013 02:49:44 PM,03/29/2013 02:51:10 PM,03/29/2013 02:52:25 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 03:00:32 PM,200 Block of MONTGOMERY ST,SF,94104,B01,13,1235,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7914249452441, -122.402544180964)",130880259-T13 +160813198,KM04,16032317,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:49:00 PM,03/21/2016 06:49:00 PM,03/21/2016 06:49:39 PM,03/21/2016 06:50:09 PM,03/21/2016 06:59:29 PM,03/21/2016 07:26:11 PM,03/21/2016 07:43:39 PM,Code 2 Transport,03/21/2016 08:01:34 PM,DRUMM ST/WASHINGTON ST,San Francisco,94111,B01,13,1116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7963468590371, -122.396957840177)",160813198-KM04 +102410167,E32,10076007,Medical Incident,08/29/2010,08/29/2010,08/29/2010 12:00:11 PM,08/29/2010 12:00:45 PM,08/29/2010 12:01:56 PM,08/29/2010 12:02:44 PM,08/29/2010 12:06:06 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/29/2010 12:20:08 PM,0 Block of GORHAM ST,SF,94112,B09,32,8262,3,3,3,true,,1,ENGINE,1,9,8,Outer Mission,"(37.7306016782661, -122.434476602758)",102410167-E32 +122250182,T09,12074627,Alarms,08/12/2012,08/12/2012,08/12/2012 02:05:41 PM,08/12/2012 02:06:43 PM,08/12/2012 02:06:55 PM,08/12/2012 02:09:34 PM,08/12/2012 02:12:11 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 02:22:57 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,false,Alarm,1,TRUCK,1,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",122250182-T09 +130300053,E40,13010121,Medical Incident,01/30/2013,01/29/2013,01/30/2013 06:26:00 AM,01/30/2013 06:26:52 AM,01/30/2013 06:28:08 AM,01/30/2013 06:30:06 AM,01/30/2013 06:32:05 AM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/30/2013 06:38:52 AM,2400 Block of 21ST AVE,SF,94116,B08,40,7434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7420261736385, -122.477700687178)",130300053-E40 +121550024,77,12051180,Medical Incident,06/03/2012,06/02/2012,06/03/2012 01:02:42 AM,06/03/2012 01:04:36 AM,06/03/2012 01:04:50 AM,06/03/2012 01:04:56 AM,06/03/2012 01:10:26 AM,06/03/2012 01:28:19 AM,06/03/2012 01:41:05 AM,Code 2 Transport,06/03/2012 02:02:40 AM,100 Block of EDDY ST,SF,94102,B02,1,1453,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",121550024-77 +132250207,E32,13075962,Traffic Collision,08/13/2013,08/13/2013,08/13/2013 01:19:50 PM,08/13/2013 01:19:50 PM,08/13/2013 01:20:02 PM,08/13/2013 01:22:00 PM,08/13/2013 01:22:52 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Patient Declined Transport,08/13/2013 01:36:29 PM,SAN JOSE AV/30TH ST,SF,94110,B06,32,5575,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7422945337206, -122.42328556238)",132250207-E32 +122400184,T09,12079434,Alarms,08/27/2012,08/27/2012,08/27/2012 01:19:03 PM,08/27/2012 01:19:49 PM,08/27/2012 01:20:04 PM,08/27/2012 01:21:51 PM,08/27/2012 01:25:30 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Other,08/27/2012 01:32:05 PM,600 Block of PENNSYLVANIA AVE,SF,94107,B10,37,2535,3,3,3,false,Alarm,1,TRUCK,3,10,10,Potrero Hill,"(37.7589304768709, -122.393174690888)",122400184-T09 +160283963,74,16011264,Medical Incident,01/28/2016,01/28/2016,01/28/2016 10:24:52 PM,01/28/2016 10:27:46 PM,01/28/2016 10:28:02 PM,01/28/2016 10:28:32 PM,01/28/2016 10:37:55 PM,01/28/2016 10:57:25 PM,01/28/2016 11:05:19 PM,Code 2 Transport,01/28/2016 11:41:37 PM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",160283963-74 +140430275,B03,14014692,Structure Fire,02/12/2014,02/12/2014,02/12/2014 05:01:01 PM,02/12/2014 05:02:00 PM,02/12/2014 05:02:37 PM,02/12/2014 05:02:48 PM,02/12/2014 05:10:52 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 05:21:36 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,,3,3,false,Alarm,1,CHIEF,7,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",140430275-B03 +120340394,RS1,12011446,Medical Incident,02/03/2012,02/03/2012,02/03/2012 11:04:12 PM,02/03/2012 11:05:52 PM,02/03/2012 11:06:10 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/03/2012 11:07:30 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7804785121736, -122.412512257219)",120340394-RS1 +160433399,61,16017459,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:28:49 PM,02/12/2016 08:28:49 PM,02/12/2016 08:29:05 PM,02/12/2016 08:29:30 PM,02/12/2016 08:37:46 PM,02/12/2016 08:55:39 PM,02/12/2016 09:06:38 PM,Code 2 Transport,02/12/2016 09:52:10 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160433399-61 +160844287,76,16033580,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:52:52 PM,03/24/2016 10:53:28 PM,03/24/2016 10:53:59 PM,03/24/2016 10:54:08 PM,03/24/2016 10:56:55 PM,03/24/2016 11:12:26 PM,03/24/2016 11:47:18 PM,Code 2 Transport,03/25/2016 12:26:48 AM,1100 Block of COLE ST,San Francisco,94117,B05,12,5162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7636044323739, -122.449585085069)",160844287-76 +121390183,T05,12046163,Structure Fire,05/18/2012,05/18/2012,05/18/2012 01:32:11 PM,05/18/2012 01:32:40 PM,05/18/2012 01:33:10 PM,05/18/2012 01:36:29 PM,05/18/2012 01:41:49 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/18/2012 02:05:57 PM,700 Block of 20TH AVE,SF,94121,B07,31,7166,3,3,3,false,Fire,1,TRUCK,6,7,1,Outer Richmond,"(37.7737446916601, -122.478973407699)",121390183-T05 +110980342,76,11032623,Medical Incident,04/08/2011,04/08/2011,04/08/2011 06:05:45 PM,04/08/2011 06:06:39 PM,04/08/2011 06:07:14 PM,04/08/2011 06:07:24 PM,04/08/2011 06:08:42 PM,04/08/2011 06:32:42 PM,04/08/2011 06:37:48 PM,Code 2 Transport,04/08/2011 07:17:27 PM,100 Block of 2ND AVE,SF,94118,B07,31,7115,E,3,3,true,,1,MEDIC,1,7,2,Inner Richmond,"(37.786199008882, -122.460425315638)",110980342-76 +160690303,AM24,16027317,Medical Incident,03/09/2016,03/08/2016,03/09/2016 03:44:58 AM,03/09/2016 03:44:58 AM,03/09/2016 03:45:12 AM,03/09/2016 03:46:55 AM,03/09/2016 03:49:25 AM,03/09/2016 04:15:16 AM,03/09/2016 04:20:56 AM,Code 2 Transport,03/09/2016 04:52:12 AM,1800 Block of VALLEJO ST,San Francisco,94123,B04,38,3334,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7961133405999, -122.427704312117)",160690303-AM24 +140940181,94,14031594,Medical Incident,04/04/2014,04/04/2014,04/04/2014 12:55:34 PM,04/04/2014 12:56:28 PM,04/04/2014 12:58:09 PM,04/04/2014 12:58:09 PM,04/04/2014 12:59:35 PM,04/04/2014 01:14:11 PM,04/04/2014 01:24:10 PM,Code 2 Transport,04/04/2014 01:54:01 PM,200 Block of DOLORES ST,SAN FRANCISCO,94114,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",140940181-94 +131840152,T14,13062662,Citizen Assist / Service Call,07/03/2013,07/03/2013,07/03/2013 11:45:45 AM,07/03/2013 11:49:09 AM,07/03/2013 11:57:09 AM,04/25/2016 01:51:59 PM,07/03/2013 11:59:39 AM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Other,07/03/2013 12:07:23 PM,GEARY BL/33RD AV,SF,94121,B07,14,7245,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7796883694276, -122.493297257775)",131840152-T14 +160050718,61,16001885,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:17:53 AM,01/05/2016 08:19:18 AM,01/05/2016 08:19:37 AM,01/05/2016 08:19:43 AM,01/05/2016 08:40:57 AM,01/05/2016 09:11:45 AM,01/05/2016 09:33:53 AM,Code 2 Transport,01/05/2016 10:11:21 AM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",160050718-61 +160262870,71,16010396,Medical Incident,01/26/2016,01/26/2016,01/26/2016 05:25:15 PM,01/26/2016 05:26:40 PM,01/26/2016 05:32:01 PM,01/26/2016 05:32:09 PM,01/26/2016 06:00:54 PM,01/26/2016 06:12:13 PM,01/26/2016 06:48:08 PM,Code 2 Transport,01/26/2016 07:18:01 PM,100 Block of VALE AVE,San Francisco,94132,B08,19,7464,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7348479600179, -122.48403223577)",160262870-71 +160900147,89,16035545,Medical Incident,03/30/2016,03/29/2016,03/30/2016 01:19:02 AM,03/30/2016 01:19:02 AM,03/30/2016 01:19:38 AM,03/30/2016 01:19:58 AM,03/30/2016 01:26:36 AM,03/30/2016 01:50:18 AM,03/30/2016 02:04:06 AM,Code 2 Transport,03/30/2016 02:31:18 AM,300 Block of VIENNA ST,San Francisco,94112,B09,43,6155,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7227804111928, -122.428602345947)",160900147-89 +131960260,E33,13066600,Medical Incident,07/15/2013,07/15/2013,07/15/2013 05:46:14 PM,07/15/2013 05:49:27 PM,07/15/2013 05:49:34 PM,07/15/2013 05:51:12 PM,07/15/2013 05:53:46 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 06:04:39 PM,LOBOS ST/PLYMOUTH AV,SF,94112,B09,33,8372,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7149046737385, -122.456071999233)",131960260-E33 +112040265,79,11067458,Medical Incident,07/23/2011,07/23/2011,07/23/2011 05:14:21 PM,07/23/2011 05:15:39 PM,07/23/2011 05:16:14 PM,07/23/2011 05:16:26 PM,07/23/2011 05:24:41 PM,04/25/2016 02:03:31 PM,07/23/2011 05:41:59 PM,Code 2 Transport,07/23/2011 05:54:48 PM,0 Block of WAVERLY PL,SF,94108,B01,2,1326,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7937477470757, -122.406800604626)",112040265-79 +120390359,E17,12013152,Odor (Strange / Unknown),02/08/2012,02/08/2012,02/08/2012 10:32:36 PM,02/08/2012 10:39:38 PM,02/08/2012 10:39:51 PM,02/08/2012 10:40:48 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/08/2012 10:45:50 PM,100 Block of CRESCENT WAY,SF,94134,B10,17,6576,3,3,3,true,Alarm,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7111340886592, -122.389340428123)",120390359-E17 +123620071,E36,12121063,Alarms,12/27/2012,12/26/2012,12/27/2012 07:26:47 AM,12/27/2012 07:29:04 AM,12/27/2012 07:29:38 AM,12/27/2012 07:31:59 AM,12/27/2012 07:34:02 AM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Other,12/27/2012 07:40:47 AM,200 Block of VALENCIA ST,SF,94103,B02,36,5126,3,3,3,false,Alarm,1,ENGINE,2,2,8,Mission,"(37.7690117510129, -122.422352223863)",123620071-E36 +160340365,63,16013238,Medical Incident,02/03/2016,02/02/2016,02/03/2016 05:03:49 AM,02/03/2016 05:05:21 AM,02/03/2016 05:07:47 AM,02/03/2016 05:07:56 AM,02/03/2016 05:16:22 AM,02/03/2016 05:19:36 AM,02/03/2016 05:24:27 AM,Code 2 Transport,02/03/2016 05:48:37 AM,100 Block of HANCOCK ST,San Francisco,94114,B06,6,5436,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7603452094605, -122.431611636946)",160340365-63 +103470075,B10,10111193,Medical Incident,12/13/2010,12/12/2010,12/13/2010 07:57:12 AM,12/13/2010 07:58:37 AM,12/13/2010 07:58:51 AM,12/13/2010 08:01:52 AM,12/13/2010 08:06:05 AM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 08:17:53 AM,800 Block of SILVER AVE,SF,94134,B09,42,635,3,2,2,true,,1,CHIEF,2,9,9,Excelsior,"(37.7290310292149, -122.418931444009)",103470075-B10 +112460301,86,11081225,Medical Incident,09/03/2011,09/03/2011,09/03/2011 07:19:56 PM,09/03/2011 07:20:10 PM,09/03/2011 07:22:17 PM,09/03/2011 07:22:36 PM,09/03/2011 07:34:11 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Patient Declined Transport,09/03/2011 07:42:50 PM,1100 Block of FITZGERALD AVE,SF,94124,B10,17,6615,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7204964019129, -122.390342560546)",112460301-86 +103540223,E03,10113681,Medical Incident,12/20/2010,12/20/2010,12/20/2010 03:44:15 PM,12/20/2010 03:45:13 PM,12/20/2010 03:45:25 PM,12/20/2010 03:46:30 PM,12/20/2010 03:48:35 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,Other,12/20/2010 03:49:50 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",103540223-E03 +110670275,E10,11022140,Medical Incident,03/08/2011,03/08/2011,03/08/2011 05:36:32 PM,03/08/2011 05:37:36 PM,03/08/2011 05:37:59 PM,03/08/2011 05:39:26 PM,03/08/2011 05:40:57 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 05:59:35 PM,0 Block of HEATHER AVE,SF,94118,B05,10,4374,3,3,3,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7849179152553, -122.452798317588)",110670275-E10 +130080348,82,13002883,Medical Incident,01/08/2013,01/08/2013,01/08/2013 07:22:29 PM,01/08/2013 07:23:00 PM,01/08/2013 07:23:27 PM,01/08/2013 07:24:27 PM,01/08/2013 07:29:29 PM,01/08/2013 07:47:41 PM,01/08/2013 07:55:08 PM,Code 2 Transport,01/08/2013 08:30:07 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",130080348-82 +160350339,75,16013667,Medical Incident,02/04/2016,02/03/2016,02/04/2016 03:27:33 AM,02/04/2016 03:28:02 AM,02/04/2016 03:29:09 AM,02/04/2016 03:29:18 AM,02/04/2016 03:36:44 AM,02/04/2016 03:57:31 AM,02/04/2016 04:03:42 AM,Code 2 Transport,02/04/2016 04:27:18 AM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7351844916326, -122.391493955999)",160350339-75 +160070592,52,16002725,Traffic Collision,01/07/2016,01/06/2016,01/07/2016 07:41:50 AM,01/07/2016 07:41:50 AM,01/07/2016 07:42:11 AM,01/07/2016 07:42:24 AM,01/07/2016 07:47:37 AM,01/07/2016 08:04:08 AM,01/07/2016 08:38:08 AM,Code 2 Transport,01/07/2016 09:38:44 AM,RICHARDSON AV/FRANCISCO ST,San Francisco,94123,B04,16,4314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8003858224919, -122.447130573329)",160070592-52 +110380137,E01,11012547,Medical Incident,02/07/2011,02/07/2011,02/07/2011 09:42:29 AM,02/07/2011 09:44:24 AM,02/07/2011 09:44:32 AM,02/07/2011 09:45:36 AM,02/07/2011 09:49:44 AM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,Other,02/07/2011 10:01:40 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",110380137-E01 +123130383,E07,12104305,Structure Fire,11/08/2012,11/08/2012,11/08/2012 09:18:01 PM,11/08/2012 09:21:09 PM,11/08/2012 09:21:35 PM,11/08/2012 09:23:04 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 09:28:07 PM,100 Block of JERSEY ST,SF,94114,B06,11,5523,3,3,3,true,Alarm,1,ENGINE,8,6,8,Noe Valley,"(37.7508076657844, -122.427904931391)",123130383-E07 +120460290,KM15,12015389,Medical Incident,02/15/2012,02/15/2012,02/15/2012 05:45:32 PM,02/15/2012 05:46:00 PM,02/15/2012 05:46:17 PM,02/15/2012 05:47:01 PM,02/15/2012 05:48:45 PM,02/15/2012 05:58:45 PM,02/15/2012 06:05:41 PM,Code 2 Transport,02/15/2012 06:30:42 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",120460290-KM15 +160442186,KM09,16017738,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:36:35 PM,02/13/2016 03:39:35 PM,02/13/2016 03:40:14 PM,02/13/2016 03:40:55 PM,02/13/2016 03:46:54 PM,02/13/2016 04:05:20 PM,02/13/2016 04:10:30 PM,Code 3 Transport,02/13/2016 04:48:30 PM,1000 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",160442186-KM09 +133020019,E02,13102488,Medical Incident,10/29/2013,10/28/2013,10/29/2013 01:16:52 AM,10/29/2013 01:17:21 AM,10/29/2013 01:18:00 AM,10/29/2013 01:20:06 AM,10/29/2013 01:23:36 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/29/2013 01:24:17 AM,GEARY ST/TAYLOR ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7869397066362, -122.411515768512)",133020019-E02 +160811157,71,16032117,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:22:24 AM,03/21/2016 10:23:49 AM,03/21/2016 10:24:08 AM,03/21/2016 10:24:25 AM,03/21/2016 10:29:58 AM,03/21/2016 10:41:53 AM,03/21/2016 10:56:13 AM,Code 2 Transport,03/21/2016 11:20:18 AM,2000 Block of SILVER AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360541412918, -122.399492021329)",160811157-71 +130550162,E29,13018544,Medical Incident,02/24/2013,02/24/2013,02/24/2013 11:21:57 AM,02/24/2013 11:23:10 AM,02/24/2013 11:23:26 AM,02/24/2013 11:24:55 AM,02/24/2013 11:26:32 AM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Unable to Locate,02/24/2013 11:30:49 AM,9TH ST/FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7737693455048, -122.411610116682)",130550162-E29 +120770009,E03,12025349,Structure Fire,03/17/2012,03/16/2012,03/17/2012 12:30:32 AM,03/17/2012 12:30:32 AM,03/17/2012 12:30:39 AM,03/17/2012 12:30:47 AM,03/17/2012 12:32:26 AM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 12:32:59 AM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",120770009-E03 +140830194,54,14027997,Medical Incident,03/24/2014,03/24/2014,03/24/2014 02:28:06 PM,03/24/2014 02:30:44 PM,03/24/2014 02:31:08 PM,03/24/2014 02:31:37 PM,03/24/2014 02:37:29 PM,03/24/2014 02:56:27 PM,03/24/2014 03:09:26 PM,Code 2 Transport,03/24/2014 03:31:21 PM,2200 Block of OFARRELL ST,SAN FRANCISCO,94115,B05,10,4236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",140830194-54 +103180053,77,10101824,Medical Incident,11/14/2010,11/13/2010,11/14/2010 02:39:04 AM,11/14/2010 02:40:32 AM,11/14/2010 02:41:01 AM,04/25/2016 02:07:36 PM,11/14/2010 02:47:28 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Patient Declined Transport,11/14/2010 02:48:14 AM,SAN JOSE AV/24TH ST,SF,94110,B06,11,5524,3,3,3,true,,1,MEDIC,2,6,8,Mission,"(37.7520468115771, -122.4215951516)",103180053-77 +121390036,85,12046041,Medical Incident,05/18/2012,05/17/2012,05/18/2012 03:16:50 AM,05/18/2012 03:18:49 AM,05/18/2012 03:19:02 AM,05/18/2012 03:19:53 AM,05/18/2012 03:29:37 AM,05/18/2012 03:46:47 AM,05/18/2012 04:23:56 AM,Code 2 Transport,05/18/2012 04:57:51 AM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",121390036-85 +102360112,T05,10074265,Medical Incident,08/24/2010,08/24/2010,08/24/2010 09:28:42 AM,08/24/2010 09:29:51 AM,08/24/2010 09:30:11 AM,08/24/2010 09:31:36 AM,08/24/2010 09:34:19 AM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 09:45:47 AM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,false,,1,TRUCK,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",102360112-T05 +102500213,E15,10079021,Medical Incident,09/07/2010,09/07/2010,09/07/2010 03:22:00 PM,09/07/2010 03:22:38 PM,09/07/2010 03:23:29 PM,09/07/2010 03:27:22 PM,09/07/2010 03:28:07 PM,04/25/2016 02:08:42 PM,09/07/2010 03:28:21 PM,Other,09/07/2010 03:28:41 PM,MISSION ST/NORTON ST,SF,94112,B09,43,6116,3,3,3,true,,1,ENGINE,3,9,11,Outer Mission,"(37.7245877059944, -122.434870379292)",102500213-E15 +112170371,E01,11071869,Medical Incident,08/05/2011,08/05/2011,08/05/2011 09:52:11 PM,08/05/2011 09:54:11 PM,08/05/2011 09:54:22 PM,08/05/2011 09:56:02 PM,08/05/2011 09:58:31 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/05/2011 10:05:42 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,E,E,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",112170371-E01 +130370320,E21,13012816,Citizen Assist / Service Call,02/06/2013,02/06/2013,02/06/2013 08:36:24 PM,02/06/2013 08:38:35 PM,02/06/2013 08:38:39 PM,02/06/2013 08:39:34 PM,02/06/2013 08:40:44 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 08:52:02 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,3,3,true,Alarm,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",130370320-E21 +122750405,E17,12090928,Medical Incident,10/01/2012,10/01/2012,10/01/2012 09:16:01 PM,10/01/2012 09:16:01 PM,10/01/2012 09:16:20 PM,10/01/2012 09:17:55 PM,10/01/2012 09:20:43 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/01/2012 09:31:03 PM,HOLLISTER AV/INGALLS ST,SF,94124,B10,17,6612,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.719739950078, -122.392418231567)",122750405-E17 +132290201,E41,13077312,Structure Fire,08/17/2013,08/17/2013,08/17/2013 01:03:05 PM,08/17/2013 01:03:05 PM,08/17/2013 01:03:51 PM,08/17/2013 01:04:40 PM,08/17/2013 01:08:02 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Other,08/17/2013 01:08:19 PM,HYDE ST/PINE ST,SF,94109,B04,41,1562,3,3,3,false,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",132290201-E41 +160602835,79,16024016,Medical Incident,02/29/2016,02/29/2016,02/29/2016 06:07:12 PM,02/29/2016 06:11:15 PM,02/29/2016 06:12:34 PM,02/29/2016 06:12:41 PM,02/29/2016 06:29:19 PM,02/29/2016 06:52:15 PM,02/29/2016 07:06:33 PM,Code 2 Transport,02/29/2016 07:36:02 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160602835-79 +160850499,78,16033652,Medical Incident,03/25/2016,03/24/2016,03/25/2016 05:44:58 AM,03/25/2016 05:46:53 AM,03/25/2016 05:47:57 AM,03/25/2016 05:49:06 AM,03/25/2016 06:07:25 AM,03/25/2016 06:07:30 AM,03/25/2016 06:11:12 AM,Code 2 Transport,03/25/2016 06:23:53 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",160850499-78 +122960052,KM15,12098040,Medical Incident,10/22/2012,10/21/2012,10/22/2012 06:07:40 AM,10/22/2012 06:09:24 AM,10/22/2012 06:09:50 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,04/25/2016 01:56:10 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",122960052-KM15 +120650056,83,12021385,Medical Incident,03/05/2012,03/04/2012,03/05/2012 06:15:02 AM,03/05/2012 06:17:12 AM,03/05/2012 06:18:00 AM,04/25/2016 01:59:50 PM,03/05/2012 06:27:32 AM,03/05/2012 06:39:19 AM,03/05/2012 06:57:11 AM,Code 2 Transport,03/05/2012 07:11:33 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",120650056-83 +160670269,AM24,16026594,Medical Incident,03/07/2016,03/06/2016,03/07/2016 04:17:32 AM,03/07/2016 04:20:05 AM,03/07/2016 04:20:33 AM,03/07/2016 04:21:04 AM,03/07/2016 04:54:35 AM,03/07/2016 04:54:41 AM,03/07/2016 05:13:07 AM,Code 2 Transport,03/07/2016 05:43:23 AM,2200 Block of BRYANT ST,San Francisco,94110,B06,7,5474,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7580152328846, -122.409672653063)",160670269-AM24 +102880382,66,10092002,Medical Incident,10/15/2010,10/15/2010,10/15/2010 10:26:14 PM,10/15/2010 10:27:59 PM,10/15/2010 10:28:30 PM,10/15/2010 10:28:46 PM,04/25/2016 02:08:05 PM,10/15/2010 10:58:05 PM,10/15/2010 11:07:41 PM,Code 2 Transport,10/15/2010 11:26:52 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,,1,MEDIC,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",102880382-66 +160622850,83,16024781,Medical Incident,03/02/2016,03/02/2016,03/02/2016 04:37:25 PM,03/02/2016 04:41:11 PM,03/02/2016 04:41:28 PM,03/02/2016 04:41:47 PM,03/02/2016 04:47:43 PM,03/02/2016 04:59:37 PM,03/02/2016 05:02:48 PM,Code 2 Transport,03/02/2016 05:24:43 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160622850-83 +112840016,E15,11093872,Alarms,10/11/2011,10/10/2011,10/11/2011 01:35:17 AM,10/11/2011 01:36:17 AM,10/11/2011 01:36:23 AM,10/11/2011 01:38:32 AM,10/11/2011 01:39:42 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/11/2011 01:48:12 AM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,true,,1,ENGINE,3,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",112840016-E15 +122410215,93,12079786,Medical Incident,08/28/2012,08/28/2012,08/28/2012 03:22:52 PM,08/28/2012 03:22:52 PM,08/28/2012 03:23:04 PM,08/28/2012 03:23:15 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/28/2012 03:26:37 PM,300 Block of 16TH AVE,SF,94118,B07,31,7153,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7814963327329, -122.475090529222)",122410215-93 +140500140,E17,14016941,Medical Incident,02/19/2014,02/19/2014,02/19/2014 11:37:16 AM,02/19/2014 11:39:16 AM,02/19/2014 11:40:23 AM,02/19/2014 11:41:21 AM,02/19/2014 11:43:33 AM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,Code 2 Transport,02/19/2014 11:56:33 AM,0 Block of ESPANOLA ST,SF,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7310696411386, -122.379978569038)",140500140-E17 +133610003,E18,13122519,Medical Incident,12/27/2013,12/26/2013,12/27/2013 12:05:55 AM,12/27/2013 12:07:54 AM,12/27/2013 12:09:54 AM,12/27/2013 12:11:28 AM,12/27/2013 12:15:32 AM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 12:24:13 AM,2000 Block of 37TH AVE,SF,94116,B08,18,757,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7487247711275, -122.495504020186)",133610003-E18 +122680044,89,12088419,Medical Incident,09/24/2012,09/23/2012,09/24/2012 04:29:08 AM,09/24/2012 04:30:09 AM,09/24/2012 04:32:15 AM,09/24/2012 04:32:40 AM,09/24/2012 04:43:19 AM,09/24/2012 05:06:13 AM,09/24/2012 05:19:08 AM,Code 2 Transport,09/24/2012 05:44:45 AM,0 Block of CLARENCE PL,SF,94107,B03,8,2172,3,2,2,false,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7796198209959, -122.39254196336)",122680044-89 +122950031,75,12097713,Medical Incident,10/21/2012,10/20/2012,10/21/2012 01:51:19 AM,10/21/2012 01:51:53 AM,10/21/2012 01:56:47 AM,10/21/2012 01:57:09 AM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,Other,04/25/2016 01:56:11 PM,16TH ST/HOFF ST,SF,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7649962714721, -122.420580608279)",122950031-75 +131400281,E31,13047482,Alarms,05/20/2013,05/20/2013,05/20/2013 03:01:32 PM,05/20/2013 03:01:32 PM,05/20/2013 03:02:39 PM,05/20/2013 03:04:22 PM,05/20/2013 03:07:04 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,Other,05/20/2013 03:09:33 PM,2300 Block of LAKE ST,SF,94121,B07,14,7174,3,3,3,false,Alarm,1,ENGINE,3,7,1,Outer Richmond,"(37.7857154333963, -122.484609916211)",131400281-E31 +160331812,87,16012995,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:37:31 PM,02/02/2016 01:41:27 PM,02/02/2016 01:41:39 PM,02/02/2016 01:41:48 PM,02/02/2016 01:49:20 PM,02/02/2016 02:07:09 PM,02/02/2016 02:27:34 PM,Code 2 Transport,02/02/2016 03:07:44 PM,1700 Block of CLAY ST,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7922247161992, -122.421862574917)",160331812-87 +112120327,E36,11070082,Structure Fire,07/31/2011,07/31/2011,07/31/2011 08:30:55 PM,07/31/2011 08:32:03 PM,07/31/2011 08:32:19 PM,07/31/2011 08:33:12 PM,07/31/2011 08:35:09 PM,04/25/2016 02:03:24 PM,04/25/2016 02:03:24 PM,Other,07/31/2011 08:45:16 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,4,3,6,South of Market,"(37.7816150265786, -122.40942036456)",112120327-E36 +140410028,E42,14013793,Medical Incident,02/10/2014,02/09/2014,02/10/2014 02:01:01 AM,02/10/2014 02:03:41 AM,02/10/2014 02:04:47 AM,02/10/2014 02:06:46 AM,02/10/2014 02:09:04 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 02:12:50 AM,0 Block of ORSI CIR,SF,94124,B10,42,6475,3,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7282562424282, -122.397373960343)",140410028-E42 +133460348,E05,13117530,Medical Incident,12/12/2013,12/12/2013,12/12/2013 07:49:20 PM,12/12/2013 07:50:05 PM,12/12/2013 07:51:29 PM,12/12/2013 07:52:33 PM,12/12/2013 07:54:41 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 08:06:21 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",133460348-E05 +131110212,KM09,13037421,Medical Incident,04/21/2013,04/21/2013,04/21/2013 03:38:07 PM,04/21/2013 03:39:35 PM,04/21/2013 03:41:54 PM,04/25/2016 01:53:11 PM,04/21/2013 03:44:25 PM,04/21/2013 04:04:58 PM,04/21/2013 04:18:06 PM,Code 2 Transport,04/21/2013 04:45:55 PM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",131110212-KM09 +131000298,T03,13033702,Alarms,04/10/2013,04/10/2013,04/10/2013 05:30:16 PM,04/10/2013 05:31:02 PM,04/10/2013 05:31:29 PM,04/10/2013 05:33:00 PM,04/10/2013 05:34:02 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/10/2013 05:40:46 PM,1400 Block of POST ST,SF,94109,B04,3,3256,3,3,3,false,Alarm,1,TRUCK,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",131000298-T03 +160541152,73,16021522,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:13:53 AM,02/23/2016 10:17:16 AM,02/23/2016 10:17:31 AM,02/23/2016 10:18:35 AM,02/23/2016 10:25:00 AM,02/23/2016 10:51:01 AM,02/23/2016 11:10:48 AM,Code 2 Transport,02/23/2016 11:59:12 AM,300 Block of GAVEN ST,San Francisco,94134,B09,42,6367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7323061102001, -122.412177293202)",160541152-73 +122180088,T03,12072228,Structure Fire,08/05/2012,08/04/2012,08/05/2012 05:17:47 AM,08/05/2012 05:19:06 AM,08/05/2012 05:19:34 AM,04/25/2016 01:57:23 PM,08/05/2012 05:23:02 AM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 05:21:24 AM,500 Block of TAYLOR ST,SF,94102,B01,3,1451,3,3,3,false,Fire,1,TRUCK,6,1,3,Tenderloin,"(37.7870711373734, -122.411612352697)",122180088-T03 +103450142,RC2,10110544,Medical Incident,12/11/2010,12/11/2010,12/11/2010 09:55:52 AM,12/11/2010 09:56:10 AM,12/11/2010 09:56:52 AM,04/25/2016 02:07:10 PM,12/11/2010 10:15:52 AM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 10:22:40 AM,300 Block of 4TH AVE,SF,94118,B07,31,7116,3,2,2,true,,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7820715174889, -122.46227811275)",103450142-RC2 +110030004,B06,11000830,Structure Fire,01/03/2011,01/02/2011,01/03/2011 12:36:26 AM,01/03/2011 12:39:19 AM,01/03/2011 12:39:31 AM,01/03/2011 12:41:20 AM,01/03/2011 12:47:33 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 12:47:41 AM,0 Block of TOPEKA AVE,SF,94124,B10,42,6454,3,3,3,false,,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7345854632984, -122.40017736431)",110030004-B06 +160144032,78,16005789,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:39:15 PM,01/14/2016 11:41:20 PM,01/14/2016 11:41:50 PM,01/14/2016 11:41:57 PM,01/14/2016 11:47:13 PM,01/15/2016 12:10:21 AM,01/15/2016 12:24:13 AM,Code 2 Transport,01/15/2016 01:02:18 AM,1100 Block of ALEMANY BLVD,San Francisco,94112,B09,32,8263,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7307340737815, -122.430215543295)",160144032-78 +160052715,59,16002097,Medical Incident,01/05/2016,01/05/2016,01/05/2016 05:20:53 PM,01/05/2016 05:21:40 PM,01/05/2016 05:24:40 PM,01/05/2016 05:24:40 PM,01/05/2016 05:25:05 PM,01/05/2016 05:29:32 PM,01/05/2016 05:35:23 PM,Code 2 Transport,01/05/2016 06:16:06 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160052715-59 +131770004,E01,13059934,Medical Incident,06/26/2013,06/25/2013,06/26/2013 12:19:29 AM,06/26/2013 12:20:23 AM,06/26/2013 12:21:03 AM,06/26/2013 12:22:54 AM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 12:24:46 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",131770004-E01 +130770043,E37,13025610,Medical Incident,03/18/2013,03/17/2013,03/18/2013 06:38:25 AM,03/18/2013 06:39:10 AM,03/18/2013 06:39:27 AM,03/18/2013 06:41:31 AM,03/18/2013 06:44:14 AM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 06:54:28 AM,300 Block of TEXAS ST,SF,94107,B03,37,2462,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7620024484897, -122.395430669934)",130770043-E37 +130290067,89,13009837,Medical Incident,01/29/2013,01/28/2013,01/29/2013 07:15:50 AM,01/29/2013 07:15:50 AM,01/29/2013 07:17:06 AM,01/29/2013 07:19:31 AM,01/29/2013 07:26:55 AM,01/29/2013 07:44:42 AM,01/29/2013 07:59:36 AM,Code 2 Transport,01/29/2013 08:41:40 AM,DUBOCE AV/GUERRERO ST,SF,94103,B02,36,3416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7697346970054, -122.424581089509)",130290067-89 +120820353,88,12027373,Medical Incident,03/22/2012,03/22/2012,03/22/2012 08:50:05 PM,03/22/2012 08:54:10 PM,03/22/2012 09:01:23 PM,03/22/2012 09:01:44 PM,03/22/2012 09:04:58 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Patient Declined Transport,03/22/2012 09:29:47 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",120820353-88 +130420296,67,13014418,Medical Incident,02/11/2013,02/11/2013,02/11/2013 06:23:29 PM,02/11/2013 06:24:46 PM,02/11/2013 06:26:10 PM,02/11/2013 06:28:29 PM,02/11/2013 06:34:39 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Patient Declined Transport,02/11/2013 07:14:14 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2253,3,E,3,false,Potentially Life-Threatening,1,MEDIC,4,3,6,South of Market,"(37.7789337876718, -122.404974448604)",130420296-67 +132240273,89,13075702,Medical Incident,08/12/2013,08/12/2013,08/12/2013 05:04:52 PM,08/12/2013 05:07:41 PM,08/12/2013 05:07:49 PM,08/12/2013 05:08:36 PM,08/12/2013 05:14:57 PM,08/12/2013 05:30:32 PM,08/12/2013 05:44:14 PM,Code 2 Transport,08/12/2013 06:05:20 PM,1200 Block of MCALLISTER ST,SF,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7785814907258, -122.432596251801)",132240273-89 +120200004,E13,12006526,Medical Incident,01/20/2012,01/19/2012,01/20/2012 12:14:34 AM,01/20/2012 12:17:31 AM,01/20/2012 12:17:38 AM,01/20/2012 12:19:22 AM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,No Merit,01/20/2012 12:26:21 AM,400 Block of BUSH ST,SF,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.79063603614, -122.404572712944)",120200004-E13 +132510052,54,13084696,Medical Incident,09/08/2013,09/07/2013,09/08/2013 02:37:55 AM,09/08/2013 02:38:33 AM,09/08/2013 02:38:59 AM,09/08/2013 02:39:05 AM,09/08/2013 02:45:15 AM,09/08/2013 02:59:04 AM,09/08/2013 03:09:20 AM,Code 2 Transport,09/08/2013 03:38:02 AM,100 Block of FELL ST,SF,94102,B02,36,3213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7762095925877, -122.420316347942)",132510052-54 +120460337,84,12015431,Medical Incident,02/15/2012,02/15/2012,02/15/2012 08:02:02 PM,02/15/2012 08:03:28 PM,02/15/2012 08:04:47 PM,02/15/2012 08:05:12 PM,02/15/2012 08:08:15 PM,02/15/2012 08:18:34 PM,02/15/2012 08:27:40 PM,Code 2 Transport,02/15/2012 08:50:49 PM,800 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7828439870217, -122.421651290681)",120460337-84 +103010079,85,10096032,Medical Incident,10/28/2010,10/27/2010,10/28/2010 06:56:35 AM,10/28/2010 06:58:26 AM,10/28/2010 07:04:28 AM,04/25/2016 02:07:53 PM,10/28/2010 07:04:49 AM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Patient Declined Transport,10/28/2010 07:17:32 AM,500 Block of MARINA BLVD,SF,94123,B04,16,4214,2,2,2,true,,1,MEDIC,1,4,2,Marina,"(37.8056112135177, -122.443084504712)",103010079-85 +132890117,E22,13098243,Medical Incident,10/16/2013,10/16/2013,10/16/2013 10:10:51 AM,10/16/2013 10:12:40 AM,10/16/2013 10:13:16 AM,10/16/2013 10:13:40 AM,10/16/2013 10:17:55 AM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 10:29:53 AM,400 Block of LINCOLN WAY,SF,94122,B08,22,7325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7659817250869, -122.46269332684)",132890117-E22 +102860150,T08,10091096,Medical Incident,10/13/2010,10/13/2010,10/13/2010 10:52:49 AM,10/13/2010 10:53:46 AM,10/13/2010 10:54:13 AM,10/13/2010 10:55:36 AM,10/13/2010 10:59:36 AM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Other,10/13/2010 11:09:31 AM,400 Block of 3RD ST,SF,94107,B03,8,2174,3,3,3,true,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7823750775991, -122.397064398742)",102860150-T08 +133480354,T05,13118257,Alarms,12/14/2013,12/14/2013,12/14/2013 07:58:53 PM,12/14/2013 07:58:53 PM,12/14/2013 07:59:12 PM,12/14/2013 08:00:16 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 08:01:19 PM,1200 Block of ELLIS ST,SF,94109,B02,5,3322,3,3,3,false,Alarm,1,TRUCK,2,2,5,Western Addition,"(37.783247213368, -122.425950407809)",133480354-T05 +131760352,T07,13059852,Alarms,06/25/2013,06/25/2013,06/25/2013 07:26:25 PM,06/25/2013 07:30:53 PM,06/25/2013 07:31:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,04/25/2016 01:52:07 PM,2900 Block of FOLSOM ST,SF,94110,B06,7,5614,3,3,3,false,Alarm,1,TRUCK,4,6,9,Mission,"(37.7501075458546, -122.413779228888)",131760352-T07 +113140268,T18,11104400,Water Rescue,11/10/2011,11/10/2011,11/10/2011 04:39:20 PM,11/10/2011 04:40:30 PM,11/10/2011 04:41:54 PM,11/10/2011 04:44:54 PM,11/10/2011 04:52:29 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 05:25:24 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,,1,TRUCK,10,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",113140268-T18 +103440098,E41,10110146,Medical Incident,12/10/2010,12/10/2010,12/10/2010 08:06:26 AM,12/10/2010 08:06:59 AM,12/10/2010 08:07:17 AM,12/10/2010 08:09:07 AM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 08:11:43 AM,1500 Block of GREEN ST,SF,94123,B04,41,3151,E,E,3,false,,1,ENGINE,5,4,2,Marina,"(37.7975667094658, -122.4246258292)",103440098-E41 +132440304,92,13082457,Medical Incident,09/01/2013,09/01/2013,09/01/2013 07:05:08 PM,09/01/2013 07:06:59 PM,09/01/2013 07:10:38 PM,09/01/2013 07:10:53 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 07:17:12 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",132440304-92 +133300010,E06,13111924,Medical Incident,11/26/2013,11/25/2013,11/26/2013 12:58:19 AM,11/26/2013 01:00:12 AM,11/26/2013 01:00:36 AM,11/26/2013 01:04:00 AM,11/26/2013 01:05:36 AM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Other,11/26/2013 01:13:58 AM,100 Block of PIERCE ST,SF,94117,B05,6,3635,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7712130941184, -122.433709296631)",133300010-E06 +160760357,53,16029988,Medical Incident,03/16/2016,03/15/2016,03/16/2016 04:21:47 AM,03/16/2016 04:24:08 AM,03/16/2016 04:24:58 AM,03/16/2016 04:26:09 AM,03/16/2016 04:32:50 AM,03/16/2016 05:00:17 AM,03/16/2016 05:12:18 AM,Code 2 Transport,03/16/2016 05:37:07 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",160760357-53 +111270066,92,11041950,Medical Incident,05/07/2011,05/06/2011,05/07/2011 07:24:45 AM,05/07/2011 07:25:30 AM,05/07/2011 07:25:43 AM,05/07/2011 07:26:35 AM,05/07/2011 07:29:12 AM,05/07/2011 07:58:12 AM,05/07/2011 08:13:56 AM,Code 3 Transport,05/07/2011 08:47:15 AM,600 Block of CLEMENT ST,SF,94118,B07,31,7127,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7829250555392, -122.466030904754)",111270066-92 +103590057,E28,10115120,Medical Incident,12/25/2010,12/24/2010,12/25/2010 04:41:52 AM,12/25/2010 04:42:54 AM,12/25/2010 04:43:40 AM,12/25/2010 04:45:12 AM,12/25/2010 04:49:09 AM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 05:00:55 AM,1000 Block of FRANCISCO ST,SF,94109,B01,28,1624,3,3,3,false,,1,ENGINE,2,1,2,Russian Hill,"(37.8035711866539, -122.422453107864)",103590057-E28 +112960157,E31,11098166,Medical Incident,10/23/2011,10/23/2011,10/23/2011 10:48:39 AM,10/23/2011 10:49:23 AM,10/23/2011 10:49:29 AM,10/23/2011 10:49:51 AM,10/23/2011 10:52:09 AM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 11:00:28 AM,600 Block of 15TH AVE,SF,94118,B07,31,7155,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7758570932691, -122.473699636265)",112960157-E31 +160891964,52,16035348,Medical Incident,03/29/2016,03/29/2016,03/29/2016 01:23:00 PM,03/29/2016 01:23:24 PM,03/29/2016 01:23:39 PM,03/29/2016 01:23:58 PM,03/29/2016 01:30:24 PM,03/29/2016 01:48:01 PM,03/29/2016 02:32:12 PM,Code 2 Transport,03/29/2016 02:53:05 PM,1400 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",160891964-52 +102270229,78,10071497,Medical Incident,08/15/2010,08/15/2010,08/15/2010 03:42:02 PM,08/15/2010 03:44:57 PM,08/15/2010 03:45:22 PM,08/15/2010 03:45:44 PM,08/15/2010 03:50:38 PM,08/15/2010 04:19:22 PM,08/15/2010 04:23:32 PM,Code 2 Transport,08/15/2010 04:58:48 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",102270229-78 +110510325,E28,11017008,Structure Fire,02/20/2011,02/20/2011,02/20/2011 06:53:20 PM,02/20/2011 06:53:20 PM,02/20/2011 06:53:33 PM,02/20/2011 06:54:18 PM,02/20/2011 06:56:37 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 06:57:02 PM,3000 Block of POLK ST,SF,94109,B01,28,3134,3,3,3,false,,1,ENGINE,1,1,2,Russian Hill,"(37.8048296798807, -122.423492217164)",110510325-E28 +160291603,61,16011437,Medical Incident,01/29/2016,01/29/2016,01/29/2016 12:34:25 PM,01/29/2016 12:35:41 PM,01/29/2016 12:36:26 PM,01/29/2016 12:36:33 PM,01/29/2016 12:47:08 PM,01/29/2016 01:14:46 PM,01/29/2016 01:20:02 PM,Code 2 Transport,01/29/2016 01:43:23 PM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7530339738059, -122.418588598473)",160291603-61 +72030215,AP,7058407,Other,07/22/2007,07/22/2007,07/22/2007 02:16:50 PM,07/22/2007 02:16:50 PM,07/22/2007 02:16:50 PM,04/25/2016 03:38:28 PM,04/25/2016 03:38:28 PM,04/25/2016 03:38:28 PM,04/25/2016 03:38:28 PM,Fire,07/22/2007 02:33:45 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",072030215-AP +131600178,E36,13054345,Medical Incident,06/09/2013,06/09/2013,06/09/2013 01:09:51 PM,06/09/2013 01:10:46 PM,06/09/2013 01:10:59 PM,06/09/2013 01:13:05 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 01:15:04 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",131600178-E36 +123020388,MP32,12100336,Outside Fire,10/28/2012,10/28/2012,10/28/2012 10:18:51 PM,10/28/2012 10:19:51 PM,10/28/2012 10:21:26 PM,10/28/2012 10:22:30 PM,10/28/2012 10:51:31 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 11:04:13 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,false,Fire,1,SUPPORT,3,6,9,Mission,"(37.7530339738059, -122.418588598473)",123020388-MP32 +102790328,68,10088835,Medical Incident,10/06/2010,10/06/2010,10/06/2010 09:12:15 PM,10/06/2010 09:13:56 PM,10/06/2010 09:14:19 PM,10/06/2010 09:14:36 PM,10/06/2010 09:19:45 PM,10/06/2010 09:44:12 PM,10/06/2010 10:02:25 PM,Code 2 Transport,10/06/2010 10:50:30 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",102790328-68 +132210315,66,13074739,Medical Incident,08/09/2013,08/09/2013,08/09/2013 07:56:35 PM,08/09/2013 07:57:15 PM,08/09/2013 07:57:50 PM,08/09/2013 07:58:00 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 08:01:24 PM,400 Block of LIBERTY ST,SF,94114,B06,11,5452,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7571444493487, -122.431267699117)",132210315-66 +133570064,E20,13121273,Medical Incident,12/23/2013,12/22/2013,12/23/2013 07:40:22 AM,12/23/2013 07:41:58 AM,12/23/2013 07:42:09 AM,12/23/2013 07:43:10 AM,12/23/2013 07:45:36 AM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 08:13:30 AM,0 Block of OLYMPIA WAY,SF,94131,B08,20,5351,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7512804251875, -122.452533549405)",133570064-E20 +120060350,KM04,12002224,Medical Incident,01/06/2012,01/06/2012,01/06/2012 09:34:17 PM,01/06/2012 09:34:47 PM,01/06/2012 09:35:48 PM,01/06/2012 09:36:27 PM,01/06/2012 09:43:34 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,No Merit,01/06/2012 09:45:45 PM,1200 Block of STANYAN ST,SF,94117,B05,12,5261,3,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Inner Sunset,"(37.7604839722785, -122.451687109267)",120060350-KM04 +123520013,E03,12117609,Alarms,12/17/2012,12/16/2012,12/17/2012 01:33:21 AM,12/17/2012 01:35:28 AM,12/17/2012 01:35:45 AM,04/25/2016 01:55:16 PM,12/17/2012 01:37:24 AM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 01:46:02 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",123520013-E03 +110640302,99,11021174,Medical Incident,03/05/2011,03/05/2011,03/05/2011 05:18:46 PM,03/05/2011 05:19:30 PM,03/05/2011 05:19:58 PM,03/05/2011 05:21:16 PM,03/05/2011 05:24:48 PM,03/05/2011 05:35:55 PM,03/05/2011 05:40:21 PM,Code 3 Transport,03/05/2011 06:20:58 PM,BRYANT ST/24TH ST,SF,94110,B06,9,5532,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7527955849274, -122.409129910252)",110640302-99 +110280106,E10,11009159,Medical Incident,01/28/2011,01/28/2011,01/28/2011 10:11:09 AM,01/28/2011 10:13:48 AM,01/28/2011 10:13:57 AM,01/28/2011 10:15:31 AM,01/28/2011 10:17:52 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 10:39:17 AM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,3,3,3,true,,1,ENGINE,1,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",110280106-E10 +121170061,E42,12038676,Medical Incident,04/26/2012,04/25/2012,04/26/2012 07:55:41 AM,04/26/2012 07:55:55 AM,04/26/2012 07:56:26 AM,04/26/2012 07:58:35 AM,04/26/2012 08:01:23 AM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,Other,04/26/2012 08:07:41 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",121170061-E42 +121990193,E10,12066130,Medical Incident,07/17/2012,07/17/2012,07/17/2012 01:03:36 PM,07/17/2012 01:05:31 PM,07/17/2012 01:07:28 PM,07/17/2012 01:08:50 PM,07/17/2012 01:10:48 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 01:29:30 PM,POST ST/SCOTT ST,SF,94115,B04,10,4131,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7845309189576, -122.438019671354)",121990193-E10 +120760227,84,12025264,Medical Incident,03/16/2012,03/16/2012,03/16/2012 06:52:52 PM,03/16/2012 06:53:40 PM,03/16/2012 06:53:56 PM,03/16/2012 06:54:25 PM,03/16/2012 06:57:35 PM,03/16/2012 07:11:40 PM,03/16/2012 07:28:17 PM,Code 2 Transport,03/16/2012 08:03:39 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",120760227-84 +140450044,E16,14015205,Alarms,02/14/2014,02/13/2014,02/14/2014 03:43:35 AM,02/14/2014 03:45:30 AM,02/14/2014 03:45:46 AM,02/14/2014 03:48:23 AM,02/14/2014 03:48:49 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 03:56:22 AM,2300 Block of CHESTNUT ST,SF,94123,B04,16,4211,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8001383201841, -122.44202268807)",140450044-E16 +131370292,B03,13046362,Structure Fire,05/17/2013,05/17/2013,05/17/2013 05:47:42 PM,05/17/2013 05:49:09 PM,05/17/2013 05:50:40 PM,05/17/2013 05:53:45 PM,05/17/2013 06:00:39 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/17/2013 08:17:44 PM,1100 Block of KEPPLER CT,TI,94130,B03,48,2931,3,3,3,false,Fire,1,CHIEF,5,None,6,Treasure Island,"(37.827591247874, -122.37675005814)",131370292-B03 +121070315,89,12035564,Medical Incident,04/16/2012,04/16/2012,04/16/2012 06:48:22 PM,04/16/2012 06:49:57 PM,04/16/2012 06:53:14 PM,04/16/2012 06:53:22 PM,04/16/2012 06:57:50 PM,04/16/2012 07:15:19 PM,04/16/2012 07:23:00 PM,Code 2 Transport,04/16/2012 07:50:39 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",121070315-89 +121610350,82,12053460,Medical Incident,06/09/2012,06/09/2012,06/09/2012 11:02:07 PM,06/09/2012 11:03:02 PM,06/09/2012 11:04:37 PM,06/09/2012 11:05:01 PM,06/09/2012 11:15:47 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Against Medical Advice,06/09/2012 11:51:12 PM,LA PLAYA ST/LINCOLN WY,SF,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",121610350-82 +122550192,E16,12084290,Medical Incident,09/11/2012,09/11/2012,09/11/2012 12:44:19 PM,09/11/2012 12:45:48 PM,09/11/2012 12:47:40 PM,09/11/2012 12:48:01 PM,09/11/2012 12:54:50 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 01:08:44 PM,VAN NESS AV/CHESTNUT ST,SF,94109,B04,16,3144,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,2,Marina,"(37.8022809826088, -122.424731260608)",122550192-E16 +110120119,RS2,11003926,Structure Fire,01/12/2011,01/12/2011,01/12/2011 10:18:06 AM,01/12/2011 10:18:20 AM,01/12/2011 10:18:39 AM,01/12/2011 10:21:03 AM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/12/2011 10:25:55 AM,0 Block of CHENERY ST,SF,94131,B06,11,5574,3,3,3,false,,1,RESCUE SQUAD,5,6,8,Glen Park,"(37.7409632777896, -122.425764645931)",110120119-RS2 +120550030,E01,12018036,Medical Incident,02/24/2012,02/23/2012,02/24/2012 03:56:16 AM,02/24/2012 03:57:24 AM,02/24/2012 03:57:31 AM,02/24/2012 03:59:31 AM,02/24/2012 04:01:04 AM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 04:13:33 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",120550030-E01 +160501057,KM04,16020028,Medical Incident,02/19/2016,02/19/2016,02/19/2016 10:03:19 AM,02/19/2016 10:04:41 AM,02/19/2016 10:05:09 AM,02/19/2016 10:05:43 AM,02/19/2016 10:12:22 AM,02/19/2016 10:27:13 AM,02/19/2016 10:54:03 AM,Code 2 Transport,02/19/2016 11:17:17 AM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160501057-KM04 +102380384,54,10075227,Medical Incident,08/26/2010,08/26/2010,08/26/2010 11:15:37 PM,08/26/2010 11:18:12 PM,08/26/2010 11:19:15 PM,08/26/2010 11:19:58 PM,08/26/2010 11:20:47 PM,08/26/2010 11:36:14 PM,08/26/2010 11:43:10 PM,Other,08/27/2010 12:10:28 AM,21ST ST/FOLSOM ST,SF,94110,B06,7,545,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7572976449633, -122.414541469066)",102380384-54 +131740153,AM06,13059023,Medical Incident,06/23/2013,06/23/2013,06/23/2013 10:21:06 AM,06/23/2013 10:22:11 AM,06/23/2013 10:22:40 AM,06/23/2013 10:23:14 AM,06/23/2013 10:28:32 AM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Other,06/23/2013 10:29:52 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",131740153-AM06 +132100367,FB1,13071186,Alarms,07/29/2013,07/29/2013,07/29/2013 09:19:59 PM,07/29/2013 09:20:48 PM,07/29/2013 09:21:38 PM,07/29/2013 09:22:36 PM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,Other,07/29/2013 09:40:56 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Alarm,1,SUPPORT,3,1,3,North Beach,"(37.8069201392161, -122.407170160416)",132100367-FB1 +132660317,E18,13090363,Administrative,09/23/2013,09/23/2013,09/23/2013 05:38:32 PM,09/23/2013 05:38:37 PM,09/23/2013 05:38:58 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Fire,09/23/2013 05:39:26 PM,1900 Block of 32ND AVE,SF,94116,B08,18,7533,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7508238719258, -122.490273641262)",132660317-E18 +123050160,B02,12101178,Alarms,10/31/2012,10/31/2012,10/31/2012 11:21:32 AM,10/31/2012 11:22:13 AM,10/31/2012 11:22:42 AM,10/31/2012 11:23:50 AM,10/31/2012 11:29:06 AM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/31/2012 11:34:02 AM,200 Block of TOWNSEND ST,SF,94107,B03,8,2224,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7775721706078, -122.394468197247)",123050160-B02 +160470822,65,16018836,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:33:28 AM,02/16/2016 08:34:57 AM,02/16/2016 08:35:18 AM,02/16/2016 08:35:24 AM,02/16/2016 08:49:39 AM,02/16/2016 08:52:22 AM,02/16/2016 09:17:17 AM,Code 2 Transport,02/16/2016 09:53:59 AM,FOLSOM ST/6TH ST,San Francisco,94107,B03,1,2253,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",160470822-65 +113650135,E08,11121223,Medical Incident,12/31/2011,12/31/2011,12/31/2011 10:51:23 AM,12/31/2011 10:51:23 AM,12/31/2011 10:51:23 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Fire,12/31/2011 10:55:01 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",113650135-E08 +82680155,T03,8082106,Alarms,09/24/2008,09/24/2008,09/24/2008 12:21:05 PM,09/24/2008 12:22:18 PM,09/24/2008 12:22:30 PM,09/24/2008 12:24:35 PM,09/24/2008 12:26:14 PM,04/25/2016 03:32:15 PM,04/25/2016 03:32:15 PM,Other,09/24/2008 12:27:15 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,false,,1,TRUCK,3,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",082680155-T03 +160810508,88,16032067,Medical Incident,03/21/2016,03/20/2016,03/21/2016 06:49:13 AM,03/21/2016 06:49:13 AM,03/21/2016 06:49:54 AM,03/21/2016 06:50:11 AM,03/21/2016 07:01:03 AM,03/21/2016 07:25:43 AM,03/21/2016 07:54:17 AM,Code 2 Transport,03/21/2016 08:29:16 AM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160810508-88 +133010135,E17,13102247,Other,10/28/2013,10/28/2013,10/28/2013 10:22:23 AM,10/28/2013 10:22:23 AM,10/28/2013 10:22:23 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Fire,10/28/2013 10:23:48 AM,1900 Block of KEITH ST,SF,94124,B10,17,6547,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7290092439057, -122.389643750938)",133010135-E17 +111990169,T01,11065626,Medical Incident,07/18/2011,07/18/2011,07/18/2011 12:33:13 PM,07/18/2011 12:33:30 PM,07/18/2011 12:33:43 PM,07/18/2011 12:36:59 PM,07/18/2011 12:37:08 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/18/2011 12:46:10 PM,700 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",111990169-T01 +160630983,54,16024999,Medical Incident,03/03/2016,03/03/2016,03/03/2016 09:17:42 AM,03/03/2016 09:18:57 AM,03/03/2016 09:21:13 AM,03/03/2016 09:22:11 AM,03/03/2016 09:40:42 AM,03/03/2016 09:50:38 AM,03/03/2016 10:22:40 AM,Code 2 Transport,03/03/2016 11:01:30 AM,20TH ST/PENNSYLVANIA AV,San Francisco,94107,B10,37,2474,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7602019146285, -122.393364731973)",160630983-54 +140770025,E14,14025937,Medical Incident,03/18/2014,03/17/2014,03/18/2014 02:36:06 AM,03/18/2014 02:37:29 AM,03/18/2014 02:37:40 AM,03/18/2014 02:39:32 AM,03/18/2014 02:45:19 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Code 2 Transport,03/18/2014 02:51:43 AM,800 Block of LA PLAYA,SAN FRANCISCO,94121,B07,34,7311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",140770025-E14 +160671015,75,16026685,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:42:24 AM,03/07/2016 10:43:12 AM,03/07/2016 10:44:38 AM,03/07/2016 10:50:46 AM,03/07/2016 10:50:46 AM,03/07/2016 11:01:34 AM,03/07/2016 11:01:34 AM,Code 2 Transport,03/07/2016 12:22:50 PM,2600 Block of BRYANT ST,San Francisco,94110,B06,9,5532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7519940443041, -122.4091228581)",160671015-75 +102650134,T18,10083842,Structure Fire,09/22/2010,09/22/2010,09/22/2010 11:52:50 AM,09/22/2010 11:53:16 AM,09/22/2010 11:53:35 AM,09/22/2010 11:53:58 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 11:58:08 AM,1400 Block of 43RD AVE,SF,94122,B08,23,7652,3,3,3,true,,1,TRUCK,11,8,4,Sunset/Parkside,"(37.7596364119694, -122.50257826597)",102650134-T18 +112790269,T15,11092424,Other,10/06/2011,10/06/2011,10/06/2011 05:12:05 PM,10/06/2011 05:12:29 PM,10/06/2011 05:12:35 PM,10/06/2011 05:14:08 PM,10/06/2011 05:18:04 PM,04/25/2016 02:02:18 PM,04/25/2016 02:02:18 PM,Fire,10/06/2011 05:33:42 PM,200 Block of MONTEREY BLVD,SF,94131,B09,26,8214,3,3,3,false,,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7316806819241, -122.440884413372)",112790269-T15 +111900112,T05,11062769,Citizen Assist / Service Call,07/09/2011,07/09/2011,07/09/2011 10:43:30 AM,07/09/2011 10:45:23 AM,07/09/2011 10:45:35 AM,07/09/2011 10:45:53 AM,07/09/2011 10:50:11 AM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Fire,07/09/2011 10:57:14 AM,1500 Block of HAYES ST,SF,94117,B05,21,4351,3,3,3,false,,1,TRUCK,1,5,5,Lone Mountain/USF,"(37.7744089216996, -122.441921717893)",111900112-T05 +160750163,76,16029552,Medical Incident,03/15/2016,03/14/2016,03/15/2016 01:45:12 AM,03/15/2016 01:46:14 AM,03/15/2016 01:46:51 AM,03/15/2016 01:46:57 AM,03/15/2016 01:49:18 AM,03/15/2016 01:55:13 AM,03/15/2016 02:03:48 AM,Code 2 Transport,03/15/2016 02:30:47 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160750163-76 +121990031,KM04,12065998,Medical Incident,07/17/2012,07/16/2012,07/17/2012 02:52:30 AM,07/17/2012 02:53:00 AM,07/17/2012 02:53:17 AM,07/17/2012 02:55:05 AM,07/17/2012 03:04:00 AM,07/17/2012 03:21:02 AM,07/17/2012 04:01:44 AM,Code 2 Transport,07/17/2012 04:23:48 AM,0 Block of SOUTH PARK,SF,94107,B03,8,2153,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",121990031-KM04 +140590223,E35,14019924,Alarms,02/28/2014,02/28/2014,02/28/2014 02:09:53 PM,02/28/2014 02:09:53 PM,02/28/2014 02:10:03 PM,02/28/2014 02:11:36 PM,02/28/2014 02:15:12 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Fire,02/28/2014 02:15:14 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",140590223-E35 +120810215,79,12026910,Medical Incident,03/21/2012,03/21/2012,03/21/2012 01:22:33 PM,03/21/2012 01:24:54 PM,03/21/2012 01:25:51 PM,03/21/2012 01:28:35 PM,03/21/2012 01:37:00 PM,03/21/2012 01:52:15 PM,03/21/2012 02:14:01 PM,Code 2 Transport,03/21/2012 02:34:21 PM,100 Block of VALLEJO ST,SF,94111,B01,13,1144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7995522033261, -122.40064216163)",120810215-79 +160142818,59,16005667,Medical Incident,01/14/2016,01/14/2016,01/14/2016 05:26:48 PM,01/14/2016 05:29:44 PM,01/14/2016 05:30:02 PM,01/14/2016 05:30:13 PM,01/14/2016 05:32:19 PM,01/14/2016 05:42:21 PM,01/14/2016 05:42:22 PM,Code 2 Transport,01/14/2016 06:31:07 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160142818-59 +160570005,65,16022579,Medical Incident,02/26/2016,02/25/2016,02/26/2016 12:02:37 AM,02/26/2016 12:03:28 AM,02/26/2016 12:03:41 AM,02/26/2016 12:03:49 AM,02/26/2016 12:08:19 AM,02/26/2016 12:33:16 AM,02/26/2016 12:37:08 AM,Code 2 Transport,02/26/2016 01:17:32 AM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",160570005-65 +110810242,E37,11026701,Structure Fire,03/22/2011,03/22/2011,03/22/2011 04:46:24 PM,03/22/2011 04:46:55 PM,03/22/2011 04:47:50 PM,03/22/2011 04:48:43 PM,03/22/2011 04:50:57 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 04:54:49 PM,2400 Block of 24TH ST,SF,94110,B10,9,2562,3,3,3,true,,1,ENGINE,3,10,10,Mission,"(37.7530951176845, -122.403879225833)",110810242-E37 +160220958,82,16008692,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:21:12 AM,01/22/2016 09:22:38 AM,01/22/2016 09:22:52 AM,01/22/2016 09:27:11 AM,01/22/2016 09:31:01 AM,01/22/2016 09:45:45 AM,01/22/2016 09:59:07 AM,Code 2 Transport,01/22/2016 10:55:22 AM,2200 Block of NORIEGA ST,San Francisco,94122,B08,18,7515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7536898844301, -122.487719711365)",160220958-82 +160672696,KM12,16026850,Medical Incident,03/07/2016,03/07/2016,03/07/2016 06:15:37 PM,03/07/2016 06:17:08 PM,03/07/2016 06:17:31 PM,03/07/2016 06:18:10 PM,03/07/2016 06:32:12 PM,03/07/2016 06:44:17 PM,03/07/2016 07:10:10 PM,Code 2 Transport,03/07/2016 07:31:38 PM,GEARY BL/18TH AV,San Francisco,94121,B07,31,7161,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7804396365064, -122.477239888569)",160672696-KM12 +160214053,78,16008586,Medical Incident,01/21/2016,01/21/2016,01/21/2016 10:36:18 PM,01/21/2016 10:37:55 PM,01/21/2016 10:38:26 PM,01/21/2016 10:38:42 PM,01/21/2016 10:47:40 PM,01/21/2016 11:08:57 PM,01/21/2016 11:23:17 PM,Code 2 Transport,01/21/2016 11:48:42 PM,400 Block of 27TH ST,San Francisco,94131,B06,11,5552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7467511523129, -122.430307966306)",160214053-78 +113350162,E09,11110882,Structure Fire,12/01/2011,12/01/2011,12/01/2011 11:59:19 AM,12/01/2011 11:59:32 AM,12/01/2011 11:59:45 AM,04/25/2016 02:01:23 PM,12/01/2011 12:02:25 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,12/01/2011 01:16:44 PM,JERROLD AV/BARNEVELD AV,SF,94124,B10,9,6412,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7463340944535, -122.402698013436)",113350162-E09 +160120277,88,16004628,Medical Incident,01/12/2016,01/11/2016,01/12/2016 03:10:56 AM,01/12/2016 03:12:11 AM,01/12/2016 03:12:27 AM,01/12/2016 03:12:51 AM,01/12/2016 03:17:31 AM,01/12/2016 03:35:39 AM,01/12/2016 03:40:42 AM,Code 2 Transport,01/12/2016 03:58:05 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160120277-88 +160383634,71,16015411,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:37:12 PM,02/07/2016 10:38:26 PM,02/07/2016 10:38:44 PM,02/07/2016 10:38:51 PM,02/07/2016 10:42:22 PM,02/07/2016 10:54:35 PM,02/07/2016 11:03:43 PM,Code 2 Transport,02/07/2016 11:32:26 PM,POLK ST/SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",160383634-71 +131690236,84,13057412,Medical Incident,06/18/2013,06/18/2013,06/18/2013 01:35:04 PM,06/18/2013 01:37:01 PM,06/18/2013 01:37:18 PM,06/18/2013 01:38:52 PM,06/18/2013 01:47:11 PM,06/18/2013 01:59:02 PM,06/18/2013 02:13:40 PM,Code 2 Transport,06/18/2013 02:43:33 PM,DONNER AV/PHELPS ST,SF,94124,B10,42,6452,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7285844467526, -122.401394587249)",131690236-84 +111410112,99,11046799,Medical Incident,05/21/2011,05/21/2011,05/21/2011 09:58:22 AM,05/21/2011 10:00:48 AM,05/21/2011 10:01:01 AM,05/21/2011 10:01:12 AM,05/21/2011 10:06:09 AM,05/21/2011 10:27:51 AM,05/21/2011 10:36:24 AM,Code 3 Transport,05/21/2011 11:15:36 AM,0 Block of PERRY ST,SF,94107,B03,8,2175,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",111410112-99 +160570684,88,16022646,Medical Incident,02/26/2016,02/25/2016,02/26/2016 07:52:14 AM,02/26/2016 07:54:17 AM,02/26/2016 07:54:41 AM,02/26/2016 07:55:26 AM,02/26/2016 08:23:39 AM,02/26/2016 08:35:43 AM,02/26/2016 08:46:38 AM,Code 2 Transport,02/26/2016 09:16:27 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160570684-88 +160872169,54,16034607,Medical Incident,03/27/2016,03/27/2016,03/27/2016 02:55:50 PM,03/27/2016 02:55:50 PM,03/27/2016 03:17:13 PM,03/27/2016 03:17:13 PM,03/27/2016 03:17:13 PM,03/27/2016 03:17:23 PM,03/27/2016 03:53:50 PM,Code 2 Transport,03/27/2016 04:22:55 PM,MASON ST/EDDY ST,San Francisco,94102,B02,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160872169-54 +160851845,AM10,16033786,Medical Incident,03/25/2016,03/25/2016,03/25/2016 01:09:14 PM,03/25/2016 01:11:44 PM,03/25/2016 01:12:12 PM,03/25/2016 01:12:40 PM,03/25/2016 01:20:45 PM,03/25/2016 01:40:17 PM,03/25/2016 02:10:23 PM,Code 2 Transport,03/25/2016 02:43:08 PM,1800 Block of 35TH AVE,San Francisco,94122,B08,18,7561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7525523796805, -122.493484218573)",160851845-AM10 +131920159,E41,13065314,Medical Incident,07/11/2013,07/11/2013,07/11/2013 12:05:32 PM,07/11/2013 12:06:03 PM,07/11/2013 12:06:24 PM,07/11/2013 12:07:15 PM,07/11/2013 12:09:58 PM,04/25/2016 01:51:51 PM,04/25/2016 01:51:51 PM,Other,07/11/2013 12:22:57 PM,1500 Block of CLAY ST,SF,94109,B04,41,1634,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7927001851609, -122.419000308188)",131920159-E41 +121870019,E37,12062166,Medical Incident,07/05/2012,07/04/2012,07/05/2012 12:48:06 AM,07/05/2012 12:48:35 AM,07/05/2012 12:48:51 AM,07/05/2012 12:50:10 AM,07/05/2012 12:52:09 AM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/05/2012 01:08:14 AM,900 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",121870019-E37 +132070017,84,13069936,Medical Incident,07/26/2013,07/25/2013,07/26/2013 01:36:39 AM,07/26/2013 01:39:21 AM,07/26/2013 01:43:11 AM,07/26/2013 01:43:27 AM,07/26/2013 01:55:17 AM,07/26/2013 02:11:31 AM,07/26/2013 02:26:48 AM,Code 2 Transport,07/26/2013 03:01:21 AM,2000 Block of 32ND AVE,SF,94116,B08,18,7544,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.748966040304, -122.490004708306)",132070017-84 +112720001,E33,11089794,Medical Incident,09/29/2011,09/28/2011,09/29/2011 12:07:28 AM,09/29/2011 12:11:04 AM,09/29/2011 12:11:29 AM,09/29/2011 12:12:28 AM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/29/2011 12:13:03 AM,100 Block of BROAD ST,SF,94112,B09,33,8374,3,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7131278901995, -122.45753811019)",112720001-E33 +160560188,KM03,16022216,Medical Incident,02/25/2016,02/24/2016,02/25/2016 01:55:22 AM,02/25/2016 01:56:03 AM,02/25/2016 01:56:18 AM,02/25/2016 01:56:54 AM,02/25/2016 02:00:15 AM,02/25/2016 02:19:48 AM,02/25/2016 02:27:16 AM,Code 2 Transport,02/25/2016 02:16:13 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160560188-KM03 +160650649,88,16025845,Medical Incident,03/05/2016,03/04/2016,03/05/2016 06:41:51 AM,03/05/2016 06:44:11 AM,03/05/2016 06:44:22 AM,03/05/2016 06:44:45 AM,03/05/2016 06:53:08 AM,03/05/2016 07:09:49 AM,03/05/2016 07:33:30 AM,Code 2 Transport,03/05/2016 08:09:58 AM,2000 Block of SLOAT BLVD,San Francisco,94116,B08,19,7615,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.73396905737, -122.495544493871)",160650649-88 +132160005,85,13072834,Medical Incident,08/04/2013,08/03/2013,08/04/2013 12:16:28 AM,08/04/2013 12:17:54 AM,08/04/2013 12:18:17 AM,08/04/2013 12:18:26 AM,08/04/2013 12:25:27 AM,08/04/2013 12:37:24 AM,08/04/2013 12:42:25 AM,Code 2 Transport,08/04/2013 01:08:28 AM,STOCKTON ST/SUTTER ST,SF,94108,B01,1,1324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",132160005-85 +131570106,KM12,13053174,Medical Incident,06/06/2013,06/06/2013,06/06/2013 09:24:33 AM,06/06/2013 09:24:49 AM,06/06/2013 09:25:46 AM,06/06/2013 09:26:22 AM,06/06/2013 09:30:31 AM,06/06/2013 09:45:09 AM,06/06/2013 10:10:22 AM,Code 2 Transport,06/06/2013 10:33:40 AM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",131570106-KM12 +133140242,T05,13106806,Elevator / Escalator Rescue,11/10/2013,11/10/2013,11/10/2013 05:19:47 PM,11/10/2013 05:20:27 PM,11/10/2013 05:20:48 PM,11/10/2013 05:21:57 PM,11/10/2013 05:24:13 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 06:00:00 PM,1100 Block of EDDY ST,SF,94109,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",133140242-T05 +133560359,D3,13121176,Structure Fire,12/22/2013,12/22/2013,12/22/2013 09:04:54 PM,12/22/2013 09:05:16 PM,12/22/2013 09:05:44 PM,12/22/2013 09:06:26 PM,12/22/2013 09:08:04 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 09:10:58 PM,900 Block of CAPP ST,SF,94110,B06,11,5525,3,3,3,false,Alarm,1,CHIEF,1,6,9,Mission,"(37.7515098435706, -122.417210393088)",133560359-D3 +160170122,68,16006648,Medical Incident,01/17/2016,01/16/2016,01/17/2016 12:54:52 AM,01/17/2016 12:55:16 AM,01/17/2016 12:55:49 AM,01/17/2016 12:55:58 AM,01/17/2016 01:00:11 AM,01/17/2016 01:15:35 AM,01/17/2016 01:35:57 AM,Code 2 Transport,01/17/2016 02:31:05 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160170122-68 +131460303,E10,13049617,Alarms,05/26/2013,05/26/2013,05/26/2013 05:28:25 PM,05/26/2013 05:30:02 PM,05/26/2013 05:30:09 PM,05/26/2013 05:31:28 PM,05/26/2013 05:33:55 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 05:58:58 PM,3600 Block of JACKSON ST,SF,94118,B07,10,4434,3,3,3,true,Alarm,1,ENGINE,2,7,2,Presidio Heights,"(37.7898207701933, -122.454936092555)",131460303-E10 +122750418,T03,12090941,Alarms,10/01/2012,10/01/2012,10/01/2012 10:02:12 PM,10/01/2012 10:03:14 PM,10/01/2012 10:03:18 PM,10/01/2012 10:04:38 PM,10/01/2012 10:07:33 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/01/2012 10:21:01 PM,1900 Block of CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7899016100477, -122.426449179757)",122750418-T03 +160350095,72,16013637,Medical Incident,02/04/2016,02/03/2016,02/04/2016 12:50:45 AM,02/04/2016 12:50:45 AM,02/04/2016 12:50:59 AM,02/04/2016 12:51:30 AM,02/04/2016 12:54:23 AM,02/04/2016 01:06:28 AM,02/04/2016 01:16:02 AM,Code 2 Transport,02/04/2016 02:07:04 AM,11TH AV/GEARY BL,San Francisco,94118,B07,31,7141,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7807687380348, -122.469627030052)",160350095-72 +112150089,E36,11070905,Medical Incident,08/03/2011,08/03/2011,08/03/2011 08:52:07 AM,08/03/2011 08:53:58 AM,08/03/2011 08:55:40 AM,08/03/2011 08:56:55 AM,08/03/2011 09:00:14 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Other,08/03/2011 09:09:33 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",112150089-E36 +113320298,E43,11110072,Medical Incident,11/28/2011,11/28/2011,11/28/2011 05:15:06 PM,11/28/2011 05:16:03 PM,11/28/2011 05:16:15 PM,11/28/2011 05:17:19 PM,11/28/2011 05:19:59 PM,04/25/2016 02:01:26 PM,04/25/2016 02:01:26 PM,Other,11/28/2011 05:21:49 PM,300 Block of OXFORD ST,SF,94134,B09,43,6152,3,3,3,false,,1,ENGINE,1,9,9,Excelsior,"(37.72555008701, -122.419202552102)",113320298-E43 +160382083,82,16015247,Medical Incident,02/07/2016,02/07/2016,02/07/2016 02:09:59 PM,02/07/2016 02:13:41 PM,02/07/2016 02:16:40 PM,02/07/2016 02:18:47 PM,02/07/2016 02:27:31 PM,02/07/2016 02:35:54 PM,02/07/2016 02:58:18 PM,Code 2 Transport,02/07/2016 03:06:16 PM,0 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7202829536688, -122.3858679491)",160382083-82 +131920123,E03,13065284,Medical Incident,07/11/2013,07/11/2013,07/11/2013 10:38:13 AM,07/11/2013 10:39:08 AM,07/11/2013 10:39:28 AM,04/25/2016 01:51:51 PM,04/25/2016 01:51:51 PM,04/25/2016 01:51:51 PM,04/25/2016 01:51:51 PM,Other,04/25/2016 01:51:51 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",131920123-E03 +131140135,T02,13038393,Structure Fire,04/24/2013,04/24/2013,04/24/2013 10:50:02 AM,04/24/2013 10:50:33 AM,04/24/2013 10:58:15 AM,04/24/2013 11:00:23 AM,04/24/2013 11:21:33 AM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 01:10:34 PM,2000 Block of VALLEJO ST,SF,94123,B04,38,3442,3,3,3,false,Fire,3,TRUCK,27,4,2,Marina,"(37.7958030542042, -122.431016298283)",131140135-T02 +102260089,92,10071076,Medical Incident,08/14/2010,08/14/2010,08/14/2010 08:12:03 AM,08/14/2010 08:12:31 AM,08/14/2010 08:13:20 AM,08/14/2010 08:15:27 AM,08/14/2010 08:20:29 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 08:32:58 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,E,3,true,,1,MEDIC,3,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",102260089-92 +111750326,E41,11057803,Gas Leak (Natural and LP Gases),06/24/2011,06/24/2011,06/24/2011 06:42:28 PM,06/24/2011 06:44:01 PM,06/24/2011 06:44:09 PM,06/24/2011 06:45:53 PM,06/24/2011 06:47:34 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Fire,06/24/2011 06:55:25 PM,700 Block of TAYLOR ST,SF,94108,B01,41,1446,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7892825039082, -122.411912440084)",111750326-E41 +131360402,84,13046056,Medical Incident,05/16/2013,05/16/2013,05/16/2013 08:29:23 PM,05/16/2013 08:30:12 PM,05/16/2013 08:32:04 PM,05/16/2013 08:32:22 PM,05/16/2013 08:36:43 PM,05/16/2013 09:01:09 PM,05/16/2013 09:07:35 PM,Code 2 Transport,05/16/2013 09:35:23 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",131360402-84 +160522669,68,16020913,Medical Incident,02/21/2016,02/21/2016,02/21/2016 05:58:54 PM,02/21/2016 05:59:25 PM,02/21/2016 06:00:35 PM,02/21/2016 06:00:42 PM,02/21/2016 06:07:09 PM,02/21/2016 06:34:50 PM,02/21/2016 07:01:55 PM,Code 2 Transport,02/21/2016 07:31:01 PM,1300 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7874978906623, -122.422591786822)",160522669-68 +123090353,T17,12102894,Smoke Investigation (Outside),11/04/2012,11/04/2012,11/04/2012 07:02:33 PM,11/04/2012 07:06:11 PM,11/04/2012 07:06:28 PM,11/04/2012 07:08:27 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 07:12:32 PM,HAWES ST/GILMAN AV,SF,94124,B10,17,6613,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7192984667192, -122.390019685834)",123090353-T17 +113220291,E03,11107047,Medical Incident,11/18/2011,11/18/2011,11/18/2011 05:56:24 PM,11/18/2011 05:56:58 PM,11/18/2011 05:58:08 PM,11/18/2011 05:58:57 PM,11/18/2011 06:03:07 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/18/2011 06:19:33 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",113220291-E03 +111010338,E37,11033651,Medical Incident,04/11/2011,04/11/2011,04/11/2011 09:38:02 PM,04/11/2011 09:38:02 PM,04/11/2011 09:38:14 PM,04/11/2011 09:39:05 PM,04/11/2011 09:40:12 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/11/2011 09:56:41 PM,20TH ST/ARKANSAS ST,SF,94107,B10,37,2543,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.759908951077, -122.398215564881)",111010338-E37 +113610052,92,11119845,Medical Incident,12/27/2011,12/26/2011,12/27/2011 06:54:53 AM,12/27/2011 06:56:14 AM,12/27/2011 06:56:26 AM,12/27/2011 06:56:38 AM,12/27/2011 07:02:16 AM,12/27/2011 07:21:20 AM,12/27/2011 07:39:14 AM,Code 2 Transport,12/27/2011 08:09:58 AM,23RD ST/3RD ST,SF,94107,B10,25,2574,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7553898860696, -122.388001122896)",113610052-92 +102730348,81,10086825,Medical Incident,09/30/2010,09/30/2010,09/30/2010 08:43:21 PM,09/30/2010 08:44:09 PM,09/30/2010 08:45:19 PM,09/30/2010 08:45:57 PM,09/30/2010 09:07:20 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Against Medical Advice,09/30/2010 09:45:15 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7795675906982, -122.407474134289)",102730348-81 +103090392,E22,10099226,Medical Incident,11/05/2010,11/05/2010,11/05/2010 11:18:11 PM,11/05/2010 11:19:04 PM,11/05/2010 11:19:44 PM,11/05/2010 11:21:39 PM,11/05/2010 11:23:31 PM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Other,11/05/2010 11:35:25 PM,1200 Block of 8TH AVE,SF,94122,B08,22,7333,3,3,3,true,,1,ENGINE,1,7,5,Inner Sunset,"(37.7650238192143, -122.465379845146)",103090392-E22 +121460234,AM02,12048513,Medical Incident,05/25/2012,05/25/2012,05/25/2012 04:10:11 PM,05/25/2012 04:10:49 PM,05/25/2012 04:12:52 PM,05/25/2012 04:13:44 PM,05/25/2012 04:25:12 PM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,No Merit,05/25/2012 04:39:44 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",121460234-AM02 +130200123,B09,13006816,Alarms,01/20/2013,01/20/2013,01/20/2013 10:11:42 AM,01/20/2013 10:14:12 AM,01/20/2013 10:14:18 AM,01/20/2013 10:15:08 AM,01/20/2013 10:19:15 AM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/20/2013 10:34:37 AM,400 Block of CAPISTRANO AVE,SF,94112,B09,15,8274,3,3,3,false,Alarm,1,CHIEF,2,9,11,Outer Mission,"(37.7248259518745, -122.439059619898)",130200123-B09 +112940029,KM15,11097402,Medical Incident,10/21/2011,10/20/2011,10/21/2011 02:25:10 AM,10/21/2011 02:27:00 AM,10/21/2011 02:27:12 AM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,04/25/2016 02:02:03 PM,1400 Block of HALIBUT CT,TI,94130,B03,48,2931,3,3,3,false,,1,PRIVATE,3,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",112940029-KM15 +160172633,76,16006935,Medical Incident,01/17/2016,01/17/2016,01/17/2016 06:07:32 PM,01/17/2016 06:08:24 PM,01/17/2016 06:08:39 PM,01/17/2016 06:08:50 PM,01/17/2016 06:13:35 PM,01/17/2016 06:37:35 PM,01/17/2016 06:46:18 PM,Code 2 Transport,01/17/2016 07:18:56 PM,700 Block of MISSOURI ST,San Francisco,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",160172633-76 +160890869,AM06,16035251,Traffic Collision,03/29/2016,03/29/2016,03/29/2016 08:51:33 AM,03/29/2016 08:53:47 AM,03/29/2016 08:55:36 AM,03/29/2016 08:56:04 AM,03/29/2016 09:05:20 AM,03/29/2016 09:18:14 AM,03/29/2016 09:42:50 AM,Code 2 Transport,03/29/2016 10:05:43 AM,LARKIN ST/GOLDEN GATE AV,San Francisco,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160890869-AM06 +132570183,89,13086908,Medical Incident,09/14/2013,09/14/2013,09/14/2013 12:39:47 PM,09/14/2013 12:40:36 PM,09/14/2013 12:40:49 PM,09/14/2013 12:41:30 PM,09/14/2013 12:43:37 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 01:19:00 PM,3400 Block of 17TH ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7633263261041, -122.42222016397)",132570183-89 +140700356,T05,14023760,Structure Fire,03/11/2014,03/11/2014,03/11/2014 08:08:16 PM,03/11/2014 08:08:47 PM,03/11/2014 08:20:52 PM,03/11/2014 08:20:52 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Fire,03/11/2014 09:59:25 PM,2400 Block of TURK BLVD,SAN FRANCISCO,94118,B05,21,4564,3,3,3,false,Fire,1,TRUCK,13,5,1,Lone Mountain/USF,"(37.7783909910658, -122.448427563637)",140700356-T05 +123450175,89,12115313,Medical Incident,12/10/2012,12/10/2012,12/10/2012 10:57:01 AM,12/10/2012 11:00:37 AM,12/10/2012 11:00:52 AM,12/10/2012 11:04:57 AM,12/10/2012 11:06:06 AM,12/10/2012 11:20:21 AM,12/10/2012 11:39:08 AM,Code 2 Transport,12/10/2012 12:21:04 PM,1500 Block of WASHINGTON ST,SF,94109,B01,41,1564,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7936295411336, -122.418768796913)",123450175-89 +132520161,E12,13085157,Medical Incident,09/09/2013,09/09/2013,09/09/2013 11:15:58 AM,09/09/2013 11:19:00 AM,09/09/2013 11:19:11 AM,09/09/2013 11:19:57 AM,09/09/2013 11:23:56 AM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Fire,09/09/2013 11:26:52 AM,0 Block of WOODLAND AVE,SF,94117,B05,12,5153,3,3,3,true,Non Life-threatening,1,ENGINE,2,5,5,Inner Sunset,"(37.7633869789929, -122.453246918213)",132520161-E12 +140440229,KM11,14014991,Medical Incident,02/13/2014,02/13/2014,02/13/2014 12:53:39 PM,02/13/2014 12:56:06 PM,02/13/2014 01:01:44 PM,02/13/2014 01:03:35 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 01:05:04 PM,300 Block of HYDE ST,SF,94109,B02,3,1555,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7839735143019, -122.416045465656)",140440229-KM11 +102610382,56,10082675,Medical Incident,09/18/2010,09/18/2010,09/18/2010 09:01:59 PM,09/18/2010 09:02:59 PM,09/18/2010 09:08:27 PM,09/18/2010 09:08:31 PM,09/18/2010 09:27:52 PM,09/18/2010 09:34:54 PM,09/18/2010 09:43:19 PM,Code 2 Transport,09/18/2010 10:14:17 PM,3RD ST/KING ST,SF,94107,B03,8,2154,2,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",102610382-56 +110940097,84,11031134,Structure Fire,04/04/2011,04/04/2011,04/04/2011 09:25:41 AM,04/04/2011 09:26:33 AM,04/04/2011 09:26:55 AM,04/04/2011 09:27:45 AM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/25/2016 02:05:17 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,MEDIC,7,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",110940097-84 +110610173,72,11019992,Medical Incident,03/02/2011,03/02/2011,03/02/2011 11:47:38 AM,03/02/2011 11:49:08 AM,03/02/2011 11:49:55 AM,03/02/2011 11:50:05 AM,03/02/2011 11:58:49 AM,03/02/2011 12:17:58 PM,03/02/2011 12:30:12 PM,Code 2 Transport,03/02/2011 12:48:55 PM,700 Block of EDINBURGH ST,SF,94112,B09,43,6135,2,2,2,true,,1,MEDIC,2,9,11,Excelsior,"(37.7173763924342, -122.43500213442)",110610173-72 +123560133,AM06,12119096,Structure Fire,12/21/2012,12/21/2012,12/21/2012 10:54:44 AM,12/21/2012 10:54:44 AM,12/21/2012 10:55:40 AM,12/21/2012 11:01:26 AM,12/21/2012 11:03:18 AM,12/21/2012 11:10:53 AM,12/21/2012 11:24:43 AM,Code 2 Transport,12/21/2012 11:46:06 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Alarm,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",123560133-AM06 +160393914,AM16,16015829,Medical Incident,02/08/2016,02/08/2016,02/08/2016 11:28:27 PM,02/08/2016 11:29:22 PM,02/08/2016 11:29:51 PM,02/08/2016 11:30:37 PM,02/08/2016 11:34:50 PM,02/08/2016 11:51:07 PM,02/09/2016 12:09:33 AM,Code 2 Transport,02/09/2016 12:36:26 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160393914-AM16 +110960157,92,11031815,Medical Incident,04/06/2011,04/06/2011,04/06/2011 11:35:45 AM,04/06/2011 11:37:47 AM,04/06/2011 11:37:58 AM,04/06/2011 11:38:08 AM,04/06/2011 11:48:47 AM,04/06/2011 12:05:42 PM,04/06/2011 12:30:35 PM,Code 2 Transport,04/06/2011 12:53:58 PM,200 Block of SAGAMORE ST,SF,94112,B09,33,8375,2,2,2,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7113251139189, -122.460533946078)",110960157-92 +111550227,54,11051263,Medical Incident,06/04/2011,06/04/2011,06/04/2011 02:18:07 PM,06/04/2011 02:19:32 PM,06/04/2011 02:21:52 PM,04/25/2016 02:04:18 PM,06/04/2011 02:36:49 PM,06/04/2011 03:06:40 PM,06/04/2011 03:30:42 PM,Code 2 Transport,06/04/2011 03:51:41 PM,MISSION ST/BOSWORTH ST,SF,94112,B06,32,5633,2,2,2,true,,1,MEDIC,1,6,8,Outer Mission,"(37.7336750178474, -122.426391166349)",111550227-54 +132380227,RC1,13080325,Medical Incident,08/26/2013,08/26/2013,08/26/2013 02:37:57 PM,08/26/2013 02:39:57 PM,08/26/2013 02:40:06 PM,08/26/2013 02:40:52 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 02:44:00 PM,0 Block of MASON ST,SF,94102,B03,1,1365,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",132380227-RC1 +160233426,61,16009323,Medical Incident,01/23/2016,01/23/2016,01/23/2016 09:05:29 PM,01/23/2016 09:06:02 PM,01/23/2016 09:06:26 PM,01/23/2016 09:06:33 PM,01/23/2016 09:09:00 PM,01/23/2016 09:27:23 PM,01/23/2016 09:40:27 PM,Code 2 Transport,01/23/2016 10:12:42 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160233426-61 +140410006,B10,14013771,Alarms,02/10/2014,02/09/2014,02/10/2014 12:17:13 AM,02/10/2014 12:17:17 AM,02/10/2014 12:17:51 AM,02/10/2014 12:19:34 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Fire,02/10/2014 12:30:05 AM,1200 Block of CAROLINA ST,SF,94107,B10,37,256,3,3,3,false,Alarm,1,CHIEF,3,10,10,Potrero Hill,"(37.7526323138734, -122.398696830553)",140410006-B10 +133050139,RC2,13103593,Medical Incident,11/01/2013,11/01/2013,11/01/2013 09:11:17 AM,11/01/2013 09:15:00 AM,11/01/2013 09:17:48 AM,04/25/2016 01:49:59 PM,11/01/2013 09:21:34 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 09:31:39 AM,800 Block of JOHN F KENNEDY DR,SF,94118,B07,31,7144,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,1,7,1,Golden Gate Park,"(37.7715939641615, -122.476848787477)",133050139-RC2 +132980326,E10,13101322,Medical Incident,10/25/2013,10/25/2013,10/25/2013 06:48:55 PM,10/25/2013 06:49:22 PM,10/25/2013 06:49:38 PM,10/25/2013 06:51:01 PM,10/25/2013 06:52:28 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 07:01:08 PM,GEARY BL/MASONIC AV,SF,94118,B05,10,4455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",132980326-E10 +160210389,57,16008241,Medical Incident,01/21/2016,01/20/2016,01/21/2016 04:19:55 AM,01/21/2016 04:19:55 AM,01/21/2016 04:20:24 AM,01/21/2016 04:20:36 AM,01/21/2016 04:27:55 AM,01/21/2016 04:50:47 AM,01/21/2016 04:59:17 AM,Code 2 Transport,01/21/2016 05:43:32 AM,1300 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",160210389-57 +112670385,85,11088403,Medical Incident,09/24/2011,09/24/2011,09/24/2011 11:37:24 PM,09/24/2011 11:37:42 PM,09/24/2011 11:37:54 PM,09/24/2011 11:38:43 PM,09/24/2011 11:46:52 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Patient Declined Transport,09/25/2011 12:07:09 AM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3661,2,2,2,true,,1,MEDIC,1,4,2,Marina,"(37.8006947037442, -122.436775838314)",112670385-85 +160742083,71,16029365,Medical Incident,03/14/2016,03/14/2016,03/14/2016 02:07:32 PM,03/14/2016 02:09:00 PM,03/14/2016 02:09:49 PM,03/14/2016 02:12:39 PM,03/14/2016 02:27:25 PM,03/14/2016 02:42:06 PM,03/14/2016 03:15:18 PM,Code 2 Transport,03/14/2016 03:34:06 PM,0 Block of TAYLOR ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",160742083-71 +160660176,79,16026222,Medical Incident,03/06/2016,03/05/2016,03/06/2016 01:10:12 AM,03/06/2016 01:13:08 AM,03/06/2016 01:13:17 AM,03/06/2016 01:13:33 AM,03/06/2016 01:18:21 AM,03/06/2016 01:39:09 AM,03/06/2016 01:48:02 AM,Code 2 Transport,03/06/2016 02:13:45 AM,200 Block of PLYMOUTH AVE,San Francisco,94112,B09,33,8371,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7127562217408, -122.456118377299)",160660176-79 +160651758,KM09,16025939,Medical Incident,03/05/2016,03/05/2016,03/05/2016 01:33:01 PM,03/05/2016 01:34:47 PM,03/05/2016 01:35:11 PM,03/05/2016 01:35:50 PM,03/05/2016 01:45:25 PM,03/05/2016 02:09:28 PM,03/05/2016 02:30:59 PM,Code 2 Transport,03/05/2016 03:07:56 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160651758-KM09 +160392566,61,16015707,Medical Incident,02/08/2016,02/08/2016,02/08/2016 04:43:33 PM,02/08/2016 04:44:23 PM,02/08/2016 04:45:16 PM,02/08/2016 04:45:26 PM,02/08/2016 04:49:05 PM,02/08/2016 04:54:31 PM,02/08/2016 05:17:43 PM,Code 2 Transport,02/08/2016 05:30:17 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160392566-61 +160420525,AM24,16016749,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:01:58 AM,02/11/2016 07:02:04 AM,02/11/2016 07:02:18 AM,02/11/2016 07:02:41 AM,02/11/2016 07:07:37 AM,02/11/2016 07:23:31 AM,02/11/2016 07:47:49 AM,Code 2 Transport,02/11/2016 08:10:13 AM,1000 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7282764057526, -122.380737923208)",160420525-AM24 +160583585,AM24,16023299,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:32:17 PM,02/27/2016 09:33:29 PM,02/27/2016 09:33:50 PM,02/27/2016 09:34:32 PM,02/27/2016 09:47:55 PM,02/27/2016 10:02:19 PM,02/27/2016 10:31:57 PM,Code 2 Transport,02/27/2016 10:59:29 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160583585-AM24 +123440298,E48,12115091,Medical Incident,12/09/2012,12/09/2012,12/09/2012 06:07:44 PM,12/09/2012 06:10:10 PM,12/09/2012 06:12:03 PM,12/09/2012 06:13:27 PM,12/09/2012 06:16:47 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 07:21:02 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,1,1,2,true,Potentially Life-Threatening,1,ENGINE,2,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",123440298-E48 +160511751,75,16020486,Medical Incident,02/20/2016,02/20/2016,02/20/2016 01:56:15 PM,02/20/2016 01:56:15 PM,02/20/2016 01:56:52 PM,02/20/2016 01:56:59 PM,02/20/2016 02:01:02 PM,02/20/2016 02:08:59 PM,02/20/2016 02:16:56 PM,Code 3 Transport,02/20/2016 03:17:13 PM,200 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",160511751-75 +112620408,E29,11086641,Medical Incident,09/19/2011,09/19/2011,09/19/2011 09:32:03 PM,09/19/2011 09:32:55 PM,09/19/2011 09:33:20 PM,09/19/2011 09:34:46 PM,09/19/2011 09:39:13 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 09:52:43 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",112620408-E29 +140100095,E13,14003419,Traffic Collision,01/10/2014,01/10/2014,01/10/2014 08:44:41 AM,01/10/2014 08:46:32 AM,01/10/2014 08:48:18 AM,01/10/2014 08:49:12 AM,01/10/2014 08:51:49 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 09:14:26 AM,MARKET ST/DRUMM ST,SF,94105,B01,13,1113,,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",140100095-E13 +111450098,T16,11048110,Structure Fire,05/25/2011,05/25/2011,05/25/2011 09:44:08 AM,05/25/2011 09:44:08 AM,05/25/2011 09:45:21 AM,04/25/2016 02:04:28 PM,05/25/2011 09:46:46 AM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/25/2011 09:52:29 AM,1600 Block of UNION ST,SF,94123,B04,16,323,3,3,3,false,,1,TRUCK,1,4,2,Marina,"(37.7981848264843, -122.426436289929)",111450098-T16 +123300036,E02,12109597,Medical Incident,11/25/2012,11/24/2012,11/25/2012 02:15:44 AM,11/25/2012 02:19:14 AM,11/25/2012 02:19:51 AM,11/25/2012 02:24:48 AM,11/25/2012 02:27:33 AM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 03:14:14 AM,1800 Block of MASON ST,SF,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Russian Hill,"(37.8006355477605, -122.412663134779)",123300036-E02 +111550051,54,11051106,Medical Incident,06/04/2011,06/03/2011,06/04/2011 02:42:32 AM,06/04/2011 02:44:06 AM,06/04/2011 02:44:26 AM,06/04/2011 02:44:37 AM,06/04/2011 02:47:52 AM,06/04/2011 02:53:47 AM,06/04/2011 03:05:14 AM,Code 2 Transport,06/04/2011 03:40:15 AM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,E,E,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",111550051-54 +130960331,T01,13032308,Medical Incident,04/06/2013,04/06/2013,04/06/2013 07:40:43 PM,04/06/2013 07:42:09 PM,04/06/2013 07:42:49 PM,04/06/2013 07:44:03 PM,04/06/2013 07:46:20 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 07:47:30 PM,100 Block of 8TH ST,SF,94103,B02,36,2318,E,E,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,South of Market,"(37.7764024031307, -122.411931056039)",130960331-T01 +140600233,84,14020298,Medical Incident,03/01/2014,03/01/2014,03/01/2014 03:33:42 PM,03/01/2014 03:33:49 PM,03/01/2014 03:34:14 PM,03/01/2014 03:34:25 PM,03/01/2014 03:39:03 PM,03/01/2014 03:52:09 PM,03/01/2014 04:17:20 PM,Code 2 Transport,03/01/2014 04:35:46 PM,MARKET ST/4TH ST,SF,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",140600233-84 +113110093,RC3,11103278,Medical Incident,11/07/2011,11/07/2011,11/07/2011 08:37:39 AM,11/07/2011 08:38:36 AM,11/07/2011 08:38:50 AM,11/07/2011 08:39:36 AM,11/07/2011 08:48:58 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 09:14:53 AM,900 Block of HAYES ST,SF,94117,B05,21,3631,E,E,3,true,,1,RESCUE CAPTAIN,4,5,5,Hayes Valley,"(37.7756759873352, -122.432003180405)",113110093-RC3 +110460324,70,11015353,Medical Incident,02/15/2011,02/15/2011,02/15/2011 08:56:18 PM,02/15/2011 08:58:01 PM,02/15/2011 08:59:10 PM,02/15/2011 08:59:39 PM,02/15/2011 09:08:44 PM,02/15/2011 09:38:28 PM,02/15/2011 09:53:04 PM,Code 2 Transport,02/15/2011 10:10:56 PM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",110460324-70 +133310193,KM04,13112375,Medical Incident,11/27/2013,11/27/2013,11/27/2013 02:38:30 PM,11/27/2013 02:38:38 PM,11/27/2013 02:38:55 PM,11/27/2013 02:39:36 PM,11/27/2013 02:40:59 PM,11/27/2013 02:57:37 PM,11/27/2013 03:07:49 PM,Code 2 Transport,11/27/2013 03:35:09 PM,MISSION ST/MINT ST,SF,94103,B03,1,2246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7821907203873, -122.407164382984)",133310193-KM04 +160140042,63,16005403,Medical Incident,01/14/2016,01/13/2016,01/14/2016 12:19:52 AM,01/14/2016 12:22:09 AM,01/14/2016 12:22:43 AM,01/14/2016 12:25:33 AM,01/14/2016 12:45:24 AM,01/14/2016 01:00:47 AM,01/14/2016 01:06:58 AM,Code 2 Transport,01/14/2016 01:47:37 AM,100 Block of NUEVA AVE,San Francisco,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7121182087675, -122.39706939553)",160140042-63 +102260063,T01,10071052,Alarms,08/14/2010,08/13/2010,08/14/2010 04:20:22 AM,08/14/2010 04:21:23 AM,08/14/2010 04:21:30 AM,08/14/2010 04:23:22 AM,08/14/2010 04:26:20 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 04:28:08 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7764944808779, -122.411359138357)",102260063-T01 +122760376,E32,12091286,Medical Incident,10/02/2012,10/02/2012,10/02/2012 06:50:03 PM,10/02/2012 06:50:56 PM,10/02/2012 06:52:36 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/02/2012 07:18:06 PM,BRAZIL AV/PARIS ST,SF,94112,B09,43,6127,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7239324379329, -122.433231487752)",122760376-E32 +110610287,E07,11020081,Medical Incident,03/02/2011,03/02/2011,03/02/2011 04:12:11 PM,03/02/2011 04:14:31 PM,03/02/2011 04:15:41 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,04/25/2016 02:05:50 PM,16TH ST/SHOTWELL ST,SF,94110,B02,7,5237,3,3,3,true,,1,ENGINE,3,2,9,Mission,"(37.7652494943866, -122.416387524486)",110610287-E07 +133050153,E43,13103604,Medical Incident,11/01/2013,11/01/2013,11/01/2013 09:37:20 AM,11/01/2013 09:38:32 AM,11/01/2013 09:39:15 AM,11/01/2013 09:41:45 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 09:43:46 AM,MISSION ST/NORTON ST,SF,94112,B09,43,6116,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7245877059944, -122.434870379292)",133050153-E43 +131950056,KM04,13066147,Medical Incident,07/14/2013,07/13/2013,07/14/2013 04:43:36 AM,07/14/2013 04:43:50 AM,07/14/2013 04:43:59 AM,07/14/2013 04:45:02 AM,07/14/2013 04:48:15 AM,07/14/2013 05:02:19 AM,07/14/2013 05:08:53 AM,Code 2 Transport,07/14/2013 05:30:11 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",131950056-KM04 +121200221,KM07,12039861,Medical Incident,04/29/2012,04/29/2012,04/29/2012 01:40:56 PM,04/29/2012 01:42:15 PM,04/29/2012 01:44:09 PM,04/25/2016 01:58:56 PM,04/29/2012 01:53:57 PM,04/29/2012 02:06:19 PM,04/29/2012 02:11:27 PM,Code 2 Transport,04/29/2012 02:27:31 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,1,1,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7855029033652, -122.414807788747)",121200221-KM07 +160783720,72,16031187,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:13:33 PM,03/18/2016 09:15:09 PM,03/18/2016 09:16:20 PM,03/18/2016 09:16:20 PM,03/18/2016 09:20:42 PM,03/18/2016 09:33:04 PM,03/18/2016 09:52:32 PM,Code 2 Transport,03/18/2016 10:27:41 PM,1800 Block of FELL ST,San Francisco,94117,B05,21,4514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7727389080619, -122.448331268843)",160783720-72 +160361194,82,16014178,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:36:23 AM,02/05/2016 09:38:21 AM,02/05/2016 09:55:22 AM,02/05/2016 09:55:30 AM,02/05/2016 10:09:22 AM,02/05/2016 10:21:05 AM,02/05/2016 10:33:55 AM,Code 2 Transport,02/05/2016 11:29:16 AM,200 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",160361194-82 +130180297,75A,13006229,,01/18/2013,01/18/2013,01/18/2013 04:29:22 PM,01/18/2013 04:33:15 PM,01/18/2013 04:42:07 PM,04/25/2016 01:54:44 PM,04/25/2016 01:54:44 PM,01/18/2013 04:42:42 PM,01/18/2013 05:02:10 PM,Code 2 Transport,01/18/2013 05:02:13 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,false,Potentially Life-Threatening,1,ADMIN,0,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",130180297-75A +131170105,B04,13039290,Alarms,04/27/2013,04/27/2013,04/27/2013 10:05:33 AM,04/27/2013 10:06:56 AM,04/27/2013 10:07:12 AM,04/27/2013 10:07:42 AM,04/27/2013 10:14:25 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/27/2013 10:19:49 AM,1000 Block of MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.7987062146615, -122.403889712511)",131170105-B04 +123570159,E31,12119484,Structure Fire,12/22/2012,12/22/2012,12/22/2012 11:11:20 AM,12/22/2012 11:12:01 AM,12/22/2012 11:12:21 AM,12/22/2012 11:13:25 AM,12/22/2012 11:16:52 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 12:07:56 PM,2100 Block of BALBOA ST,SF,94121,B07,14,7171,3,3,3,false,Alarm,1,ENGINE,5,7,1,Outer Richmond,"(37.7764791578621, -122.481786615604)",123570159-E31 +132640434,T03,13089726,Alarms,09/21/2013,09/21/2013,09/21/2013 11:36:09 PM,09/21/2013 11:36:39 PM,09/21/2013 11:36:51 PM,09/21/2013 11:38:32 PM,09/21/2013 11:41:45 PM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/21/2013 11:54:36 PM,100 Block of VAN NESS AVE,SF,94102,B02,36,3166,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7768157174869, -122.419744829745)",132640434-T03 +110250468,89,11008447,Medical Incident,01/25/2011,01/25/2011,01/25/2011 10:48:17 PM,01/25/2011 10:48:24 PM,01/25/2011 10:48:57 PM,01/25/2011 10:49:24 PM,01/25/2011 10:52:32 PM,01/25/2011 11:11:06 PM,01/25/2011 11:16:33 PM,Code 2 Transport,01/25/2011 11:51:20 PM,JACKSON ST/VAN NESS AV,SF,94109,B04,41,3153,3,3,3,true,,1,MEDIC,2,4,3,Russian Hill,"(37.7939350051074, -122.423048803014)",110250468-89 +121360076,KM04,12045125,Traffic Collision,05/15/2012,05/15/2012,05/15/2012 08:49:15 AM,05/15/2012 08:51:36 AM,05/15/2012 08:52:21 AM,05/15/2012 08:55:14 AM,05/15/2012 08:56:44 AM,05/15/2012 09:13:51 AM,05/15/2012 09:23:28 AM,Code 2 Transport,05/15/2012 10:04:33 AM,1000 Block of PAGE ST,SF,94117,B05,21,4144,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7720428462416, -122.438055986147)",121360076-KM04 +123130039,88,12104025,Medical Incident,11/08/2012,11/07/2012,11/08/2012 03:27:16 AM,11/08/2012 03:28:03 AM,11/08/2012 03:28:27 AM,11/08/2012 03:28:49 AM,11/08/2012 03:36:58 AM,11/08/2012 03:51:07 AM,11/08/2012 04:03:56 AM,Code 2 Transport,11/08/2012 04:27:20 AM,1100 Block of BURROWS ST,SF,94134,B09,42,6147,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7260211735388, -122.415744681638)",123130039-88 +130090241,88,13003147,Medical Incident,01/09/2013,01/09/2013,01/09/2013 03:15:08 PM,01/09/2013 03:16:28 PM,01/09/2013 03:18:12 PM,01/09/2013 03:18:12 PM,01/09/2013 03:26:31 PM,01/09/2013 03:41:30 PM,01/09/2013 04:05:09 PM,Code 2 Transport,01/09/2013 04:26:00 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",130090241-88 +132890271,E43,13098370,Structure Fire,10/16/2013,10/16/2013,10/16/2013 05:16:31 PM,10/16/2013 05:16:32 PM,10/16/2013 05:17:43 PM,10/16/2013 05:18:58 PM,10/16/2013 05:22:02 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 05:22:31 PM,SANTA ROSA AV/CAYUGA AV,SF,94112,B09,15,8265,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7271683911386, -122.436805492694)",132890271-E43 +113350096,55,11110831,Medical Incident,12/01/2011,12/01/2011,12/01/2011 08:28:25 AM,12/01/2011 08:28:25 AM,12/01/2011 08:28:42 AM,12/01/2011 08:30:47 AM,12/01/2011 08:34:18 AM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Unable to Locate,12/01/2011 08:36:04 AM,EDDY ST/JONES ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",113350096-55 +110550088,AM04,11018049,Medical Incident,02/24/2011,02/24/2011,02/24/2011 08:11:58 AM,02/24/2011 08:13:12 AM,02/24/2011 08:13:36 AM,02/24/2011 08:14:04 AM,02/24/2011 08:17:44 AM,02/24/2011 08:24:26 AM,02/24/2011 08:37:17 AM,Code 2 Transport,02/24/2011 09:34:59 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",110550088-AM04 +133420176,E44,13115957,Medical Incident,12/08/2013,12/08/2013,12/08/2013 11:26:26 AM,12/08/2013 11:28:42 AM,12/08/2013 11:28:50 AM,12/08/2013 11:29:28 AM,12/08/2013 11:34:06 AM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 11:53:01 AM,100 Block of TEDDY AVE,SF,94134,B10,44,6267,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7141788044851, -122.405486549146)",133420176-E44 +110340155,74,11011144,Medical Incident,02/03/2011,02/03/2011,02/03/2011 11:07:36 AM,02/03/2011 11:10:22 AM,02/03/2011 11:11:11 AM,02/03/2011 11:11:22 AM,02/03/2011 11:14:57 AM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/03/2011 11:15:06 AM,GOLDEN GATE AV/HYDE ST,SF,94102,B02,1,1546,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",110340155-74 +160712818,68,16028321,Medical Incident,03/11/2016,03/11/2016,03/11/2016 06:03:53 PM,03/11/2016 06:07:09 PM,03/11/2016 06:07:35 PM,03/11/2016 06:08:01 PM,03/11/2016 06:11:58 PM,03/11/2016 06:29:39 PM,03/11/2016 06:41:53 PM,Code 2 Transport,03/11/2016 07:16:34 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",160712818-68 +102680238,E09,10084935,Medical Incident,09/25/2010,09/25/2010,09/25/2010 02:17:48 PM,09/25/2010 02:18:24 PM,09/25/2010 02:18:43 PM,09/25/2010 02:20:00 PM,09/25/2010 02:22:02 PM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 02:43:01 PM,25TH ST/YORK ST,SF,94110,B10,9,2624,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7512568012893, -122.408036849181)",102680238-E09 +110010516,B02,11000439,Structure Fire,01/01/2011,01/01/2011,01/01/2011 07:47:19 PM,01/01/2011 07:49:01 PM,01/01/2011 07:50:05 PM,01/01/2011 07:50:16 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/01/2011 07:52:09 PM,200 Block of 4TH AVE,SF,94118,B07,31,7125,3,3,3,false,,1,CHIEF,11,7,1,Inner Richmond,"(37.7839758040017, -122.462278443811)",110010516-B02 +122470045,T03,12081595,Structure Fire,09/03/2012,09/02/2012,09/03/2012 03:59:58 AM,09/03/2012 03:59:59 AM,09/03/2012 04:00:07 AM,09/03/2012 04:01:52 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 04:02:41 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",122470045-T03 +121400316,E20,12046623,Medical Incident,05/19/2012,05/19/2012,05/19/2012 08:10:59 PM,05/19/2012 08:12:59 PM,05/19/2012 08:23:31 PM,05/19/2012 08:24:47 PM,05/19/2012 08:28:19 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Medical Examiner,05/19/2012 09:17:50 PM,1300 Block of 5TH AVE,SF,94122,B08,12,7326,2,E,3,true,Potentially Life-Threatening,1,ENGINE,2,8,5,Inner Sunset,"(37.7632907518666, -122.462034637217)",121400316-E20 +133580042,T01,13121585,Medical Incident,12/24/2013,12/23/2013,12/24/2013 03:14:41 AM,12/24/2013 03:16:30 AM,12/24/2013 03:16:47 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 03:18:27 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,TRUCK,3,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",133580042-T01 +160460123,68,16018350,Medical Incident,02/15/2016,02/14/2016,02/15/2016 12:44:44 AM,02/15/2016 12:45:35 AM,02/15/2016 12:45:50 AM,02/15/2016 12:46:11 AM,02/15/2016 12:59:01 AM,02/15/2016 01:23:10 AM,02/15/2016 01:34:37 AM,Code 2 Transport,02/15/2016 02:28:45 AM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160460123-68 +103380095,94,10108063,Medical Incident,12/04/2010,12/03/2010,12/04/2010 06:15:59 AM,12/04/2010 06:17:42 AM,12/04/2010 06:18:14 AM,12/04/2010 06:18:19 AM,12/04/2010 06:27:10 AM,12/04/2010 06:43:08 AM,12/04/2010 06:54:40 AM,Code 2 Transport,12/04/2010 07:05:02 AM,2100 Block of JONES ST,SF,94133,B01,28,1514,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8012382200659, -122.416153828777)",103380095-94 +90030397,T01,9001029,Other,01/03/2009,01/03/2009,01/03/2009 10:26:25 PM,01/03/2009 10:26:25 PM,01/03/2009 10:26:39 PM,01/03/2009 10:28:29 PM,01/03/2009 10:30:57 PM,04/25/2016 03:30:43 PM,04/25/2016 03:30:43 PM,Fire,01/03/2009 11:15:47 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",090030397-T01 +123280016,65,12108942,Medical Incident,11/23/2012,11/22/2012,11/23/2012 01:13:44 AM,11/23/2012 01:15:27 AM,11/23/2012 01:16:10 AM,11/23/2012 01:16:30 AM,11/23/2012 01:19:14 AM,11/23/2012 01:31:24 AM,11/23/2012 01:37:03 AM,Code 2 Transport,11/23/2012 02:15:40 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7563716216308, -122.416574134534)",123280016-65 +113260088,AM16,11108180,Medical Incident,11/22/2011,11/22/2011,11/22/2011 08:37:44 AM,11/22/2011 08:39:04 AM,11/22/2011 08:39:20 AM,11/22/2011 08:40:47 AM,11/22/2011 08:46:01 AM,11/22/2011 09:03:16 AM,11/22/2011 09:20:22 AM,Code 3 Transport,11/22/2011 09:48:02 AM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,PRIVATE,2,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",113260088-AM16 +102370296,B03,10074806,Explosion,08/25/2010,08/25/2010,08/25/2010 04:48:23 PM,08/25/2010 04:48:23 PM,08/25/2010 04:49:51 PM,08/25/2010 04:51:15 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 05:13:54 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,false,,1,CHIEF,8,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",102370296-B03 +103040077,RC1,10097034,Traffic Collision,10/31/2010,10/30/2010,10/31/2010 02:41:31 AM,10/31/2010 02:42:28 AM,10/31/2010 02:44:26 AM,04/25/2016 02:07:50 PM,10/31/2010 02:58:50 AM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 03:18:58 AM,MURRAY ST/MISSION ST,SF,94112,B06,32,5633,2,2,2,true,,1,RESCUE CAPTAIN,4,6,8,Outer Mission,"(37.7336750178474, -122.426391166349)",103040077-RC1 +160032983,63,16001358,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:45:45 PM,01/03/2016 08:47:22 PM,01/03/2016 08:47:40 PM,01/03/2016 08:47:49 PM,01/03/2016 08:51:11 PM,01/03/2016 09:09:12 PM,01/03/2016 09:14:57 PM,Code 3 Transport,01/03/2016 10:19:30 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7786674439132, -122.411723778126)",160032983-63 +160063367,71,16002584,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:18:26 PM,01/06/2016 08:18:26 PM,01/06/2016 08:19:54 PM,01/06/2016 08:20:02 PM,01/06/2016 08:32:04 PM,01/06/2016 09:05:17 PM,01/06/2016 09:17:13 PM,Code 2 Transport,01/06/2016 09:51:48 PM,BAY ST/TAYLOR ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054171711156, -122.415241486546)",160063367-71 +132760235,E28,13093774,Medical Incident,10/03/2013,10/03/2013,10/03/2013 03:34:39 PM,10/03/2013 03:35:04 PM,10/03/2013 03:38:11 PM,10/03/2013 03:38:42 PM,10/03/2013 03:41:23 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/03/2013 03:53:20 PM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,3,3,false,Non Life-threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",132760235-E28 +140960145,T03,14032274,Structure Fire,04/06/2014,04/06/2014,04/06/2014 10:24:03 AM,04/06/2014 10:26:13 AM,04/06/2014 10:26:39 AM,04/06/2014 10:27:18 AM,04/06/2014 10:29:50 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Fire,04/06/2014 10:33:10 AM,900 Block of FRANKLIN ST,SAN FRANCISCO,94109,B02,3,3221,3,3,3,false,Alarm,1,TRUCK,5,2,5,Western Addition,"(37.7833939650918, -122.422536931307)",140960145-T03 +112030410,E41,11067209,Medical Incident,07/22/2011,07/22/2011,07/22/2011 10:38:17 PM,07/22/2011 10:38:34 PM,07/22/2011 10:39:01 PM,07/22/2011 10:39:44 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/22/2011 10:42:07 PM,CALIFORNIA ST/DRUMM ST,SF,94111,B01,13,1134,3,3,3,true,,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7936637772453, -122.396390415025)",112030410-E41 +160062098,KM11,16002438,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:26:11 PM,01/06/2016 02:26:11 PM,01/06/2016 02:26:37 PM,01/06/2016 02:27:57 PM,01/06/2016 02:39:28 PM,01/06/2016 02:51:24 PM,01/06/2016 03:07:51 PM,Code 2 Transport,01/06/2016 03:16:50 PM,GENEVA AV/SANTOS ST,San Francisco,94134,B09,43,6246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,None,10,None,"(37.7083112668674, -122.420083068533)",160062098-KM11 +130330256,E38,13011346,Alarms,02/02/2013,02/02/2013,02/02/2013 04:21:53 PM,02/02/2013 04:23:43 PM,02/02/2013 04:23:51 PM,04/25/2016 01:54:30 PM,02/02/2013 04:27:57 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/02/2013 04:33:29 PM,2100 Block of PACIFIC AVE,SF,94115,B04,38,3441,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7938179536129, -122.430615255773)",130330256-E38 +131080340,E14,13036446,Alarms,04/18/2013,04/18/2013,04/18/2013 10:14:01 PM,04/18/2013 10:17:15 PM,04/18/2013 10:17:31 PM,04/18/2013 10:18:54 PM,04/18/2013 10:19:58 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Other,04/18/2013 10:36:32 PM,6100 Block of GEARY BLVD,SF,94121,B07,14,7213,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7799407052952, -122.485259397508)",131080340-E14 +112880330,E06,11095666,Medical Incident,10/15/2011,10/15/2011,10/15/2011 08:19:32 PM,10/15/2011 08:20:37 PM,10/15/2011 08:20:48 PM,10/15/2011 08:22:19 PM,10/15/2011 08:24:19 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/15/2011 08:27:04 PM,400 Block of GUERRERO ST,SF,94110,B02,6,5235,3,2,2,true,,1,ENGINE,2,2,8,Mission,"(37.7639686067199, -122.424148251747)",112880330-E06 +103160148,AM02,10101254,Medical Incident,11/12/2010,11/12/2010,11/12/2010 11:44:47 AM,11/12/2010 11:45:40 AM,11/12/2010 11:46:24 AM,11/12/2010 11:47:10 AM,11/12/2010 11:50:47 AM,11/12/2010 12:10:38 PM,11/12/2010 12:20:10 PM,Code 2 Transport,11/12/2010 01:01:56 PM,3200 Block of 23RD ST,SF,94110,B06,7,5511,3,3,3,false,,1,PRIVATE,3,6,9,Mission,"(37.7539240929444, -122.418055151685)",103160148-AM02 +130520291,83,13017670,Medical Incident,02/21/2013,02/21/2013,02/21/2013 05:11:20 PM,02/21/2013 05:15:42 PM,02/21/2013 05:16:31 PM,02/21/2013 05:16:37 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,04/25/2016 01:54:11 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",130520291-83 +160182383,89,16007307,Medical Incident,01/18/2016,01/18/2016,01/18/2016 05:02:41 PM,01/18/2016 05:03:33 PM,01/18/2016 05:03:52 PM,01/18/2016 05:04:22 PM,01/18/2016 05:07:14 PM,01/18/2016 05:28:15 PM,01/18/2016 05:40:37 PM,Code 2 Transport,01/18/2016 06:15:15 PM,600 Block of MASON ST,Presidio,94108,B99,51,4614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",160182383-89 +160302195,52,16011820,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:25:42 PM,01/30/2016 02:26:29 PM,01/30/2016 02:26:57 PM,01/30/2016 02:27:06 PM,01/30/2016 02:32:47 PM,01/30/2016 02:58:20 PM,01/30/2016 03:07:02 PM,Code 3 Transport,01/30/2016 03:36:48 PM,3700 Block of MARKET ST,San Francisco,94131,B06,24,5266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Twin Peaks,"(37.7541193149868, -122.441983746422)",160302195-52 +140140324,85,14004911,Medical Incident,01/14/2014,01/14/2014,01/14/2014 06:58:57 PM,01/14/2014 07:01:47 PM,01/14/2014 07:02:21 PM,01/14/2014 07:02:38 PM,01/14/2014 07:11:59 PM,01/14/2014 07:41:39 PM,01/14/2014 07:50:38 PM,Code 2 Transport,01/14/2014 08:36:40 PM,0 Block of 30TH ST,SF,94110,B06,32,5575,,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7422802041277, -122.42262182889)",140140324-85 +112150164,E02,11070957,Fuel Spill,08/03/2011,08/03/2011,08/03/2011 11:52:14 AM,08/03/2011 11:53:55 AM,08/03/2011 11:54:14 AM,08/03/2011 11:54:47 AM,08/03/2011 11:56:58 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Fire,08/03/2011 12:03:03 PM,VALLEJO ST/MASON ST,SF,94133,B01,2,1421,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7981652396811, -122.412095885993)",112150164-E02 +130320339,92,13011056,Medical Incident,02/01/2013,02/01/2013,02/01/2013 07:55:04 PM,02/01/2013 07:56:28 PM,02/01/2013 07:56:55 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/01/2013 07:57:03 PM,0 Block of PARKER AVE,SF,94118,B07,10,4436,2,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,2,Presidio Heights,"(37.7851399842228, -122.454627027921)",130320339-92 +133020379,AM04,13102793,Structure Fire,10/29/2013,10/29/2013,10/29/2013 11:43:56 PM,10/29/2013 11:44:45 PM,10/29/2013 11:45:09 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/29/2013 11:45:20 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,PRIVATE,11,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",133020379-AM04 +160543520,50,16021756,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:46:03 PM,02/23/2016 07:47:23 PM,02/23/2016 07:47:40 PM,02/23/2016 07:48:09 PM,02/23/2016 08:05:04 PM,02/23/2016 08:05:49 PM,02/23/2016 08:28:29 PM,Code 2 Transport,02/23/2016 09:03:10 PM,0 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",160543520-50 +160772188,77,16030621,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:06:53 PM,03/17/2016 02:06:53 PM,03/17/2016 02:14:08 PM,03/17/2016 02:14:22 PM,03/17/2016 02:20:07 PM,03/17/2016 02:39:39 PM,03/17/2016 03:30:47 PM,Code 2 Transport,03/17/2016 04:03:07 PM,HYDE ST/CALIFORNIA ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160772188-77 +120610372,E03,12020216,Medical Incident,03/01/2012,03/01/2012,03/01/2012 11:08:39 PM,03/01/2012 11:09:00 PM,03/01/2012 11:09:40 PM,03/01/2012 11:11:15 PM,03/01/2012 11:14:33 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/01/2012 11:18:32 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",120610372-E03 +111480302,RC2,11049193,Medical Incident,05/28/2011,05/28/2011,05/28/2011 08:26:41 PM,05/28/2011 08:28:00 PM,05/28/2011 08:28:13 PM,05/28/2011 08:30:15 PM,05/28/2011 08:34:55 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/28/2011 08:49:20 PM,200 Block of CLAYTON ST,SF,94117,B05,21,4523,3,3,3,true,,1,RESCUE CAPTAIN,2,5,5,Lone Mountain/USF,"(37.7730602068761, -122.449166125148)",111480302-RC2 +160040681,KM13,16001493,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:49:38 AM,01/04/2016 07:51:31 AM,01/04/2016 07:52:52 AM,01/04/2016 07:53:46 AM,01/04/2016 08:10:06 AM,01/04/2016 08:36:55 AM,01/04/2016 09:01:55 AM,Code 2 Transport,01/04/2016 09:40:59 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160040681-KM13 +113440255,E17,11114187,Structure Fire,12/10/2011,12/10/2011,12/10/2011 05:39:06 PM,12/10/2011 05:39:06 PM,12/10/2011 05:39:24 PM,12/10/2011 05:40:22 PM,12/10/2011 05:42:24 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 05:43:15 PM,HUDSON AV/ARDATH CT,SF,94124,B10,17,6624,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",113440255-E17 +112000368,KM04,11066110,Medical Incident,07/19/2011,07/19/2011,07/19/2011 10:55:52 PM,07/19/2011 10:57:18 PM,07/19/2011 10:57:28 PM,07/19/2011 10:58:44 PM,07/19/2011 11:07:34 PM,07/19/2011 11:27:17 PM,07/19/2011 11:59:23 PM,Code 2 Transport,07/20/2011 12:10:47 AM,FOLSOM ST/2ND ST,SF,94107,B03,1,2147,3,3,3,false,,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",112000368-KM04 +102750030,54,10087233,Medical Incident,10/02/2010,10/01/2010,10/02/2010 01:29:39 AM,10/02/2010 01:30:54 AM,10/02/2010 01:31:36 AM,10/02/2010 01:32:17 AM,10/02/2010 01:37:53 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 01:37:58 AM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",102750030-54 +111540340,E01,11051024,Medical Incident,06/03/2011,06/03/2011,06/03/2011 10:13:13 PM,06/03/2011 10:15:44 PM,06/03/2011 10:16:02 PM,04/25/2016 02:04:19 PM,06/03/2011 10:18:54 PM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,Other,06/03/2011 10:29:32 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",111540340-E01 +121250032,E13,12041384,Alarms,05/04/2012,05/03/2012,05/04/2012 03:43:10 AM,05/04/2012 03:44:15 AM,05/04/2012 03:44:21 AM,05/04/2012 03:45:51 AM,05/04/2012 03:47:34 AM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/04/2012 04:06:31 AM,200 Block of JACKSON ST,SF,94111,B01,13,1156,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7969058696574, -122.400105396177)",121250032-E13 +111040028,T06,11034340,Alarms,04/14/2011,04/13/2011,04/14/2011 02:12:21 AM,04/14/2011 02:13:05 AM,04/14/2011 02:13:32 AM,04/14/2011 02:15:57 AM,04/14/2011 02:17:54 AM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/14/2011 02:22:28 AM,200 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,false,,1,TRUCK,3,2,8,Castro/Upper Market,"(37.766007030875, -122.426668982689)",111040028-T06 +131890146,E13,13064390,Medical Incident,07/08/2013,07/08/2013,07/08/2013 11:48:10 AM,07/08/2013 11:49:10 AM,07/08/2013 11:49:50 AM,07/08/2013 11:50:30 AM,07/08/2013 11:52:58 AM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/08/2013 11:59:58 AM,0 Block of SABIN PL,SF,94108,B01,13,1314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Chinatown,"(37.7925872402584, -122.406836777622)",131890146-E13 +110500012,89,11016400,Medical Incident,02/19/2011,02/18/2011,02/19/2011 12:35:39 AM,02/19/2011 12:36:26 AM,02/19/2011 12:37:04 AM,02/19/2011 12:37:27 AM,02/19/2011 12:44:03 AM,02/19/2011 12:57:29 AM,02/19/2011 01:05:55 AM,Code 2 Transport,02/19/2011 01:37:53 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",110500012-89 +102910264,62,10092869,Medical Incident,10/18/2010,10/18/2010,10/18/2010 03:56:29 PM,10/18/2010 03:57:06 PM,10/18/2010 03:57:18 PM,10/18/2010 03:57:30 PM,10/18/2010 04:01:19 PM,10/18/2010 04:18:49 PM,10/18/2010 04:29:27 PM,Code 2 Transport,10/18/2010 04:58:12 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",102910264-62 +131210188,E15,13040650,Medical Incident,05/01/2013,05/01/2013,05/01/2013 12:11:21 PM,05/01/2013 12:13:10 PM,05/01/2013 12:14:17 PM,05/01/2013 12:17:47 PM,05/01/2013 12:18:49 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,05/01/2013 12:37:05 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",131210188-E15 +102900318,E43,10092629,Medical Incident,10/17/2010,10/17/2010,10/17/2010 09:09:05 PM,10/17/2010 09:09:50 PM,10/17/2010 09:09:58 PM,10/17/2010 09:11:04 PM,10/17/2010 09:13:44 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/17/2010 09:31:46 PM,0 Block of FRANCIS ST,SF,94112,B09,43,6116,3,3,3,true,,1,ENGINE,2,9,11,Outer Mission,"(37.7271236130882, -122.434343494063)",102900318-E43 +111380286,E01,11045966,Alarms,05/18/2011,05/18/2011,05/18/2011 06:06:39 PM,05/18/2011 06:07:44 PM,05/18/2011 06:08:12 PM,05/18/2011 06:08:30 PM,05/18/2011 06:10:27 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 06:15:43 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7829835080746, -122.406698577014)",111380286-E01 +111300017,78,11042836,Medical Incident,05/10/2011,05/09/2011,05/10/2011 02:12:42 AM,05/10/2011 02:13:07 AM,05/10/2011 02:13:20 AM,05/10/2011 02:14:38 AM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Other,05/10/2011 02:15:43 AM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,,1,MEDIC,3,2,9,Mission,"(37.7650413541786, -122.420746190588)",111300017-78 +130160359,E08,13005599,Medical Incident,01/16/2013,01/16/2013,01/16/2013 10:01:13 PM,01/16/2013 10:03:59 PM,01/16/2013 10:04:29 PM,01/16/2013 10:06:42 PM,01/16/2013 10:08:59 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/16/2013 10:11:57 PM,500 Block of 3RD ST,SF,94107,B03,8,2173,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7805661978095, -122.394799124177)",130160359-E08 +140310011,E31,14010399,Medical Incident,01/31/2014,01/30/2014,01/31/2014 02:04:34 AM,01/31/2014 02:05:31 AM,01/31/2014 02:06:02 AM,01/31/2014 02:07:17 AM,01/31/2014 02:09:29 AM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/31/2014 02:20:57 AM,4TH AV/GEARY BL,SF,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.781110995698, -122.462139277182)",140310011-E31 +133610235,83,13122719,Medical Incident,12/27/2013,12/27/2013,12/27/2013 04:54:11 PM,12/27/2013 04:54:42 PM,12/27/2013 04:56:07 PM,12/27/2013 04:56:15 PM,12/27/2013 05:01:32 PM,12/27/2013 05:44:36 PM,12/27/2013 06:15:00 PM,Code 2 Transport,12/27/2013 06:35:46 PM,3200 Block of MISSION ST,SF,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",133610235-83 +110120018,94,11003849,Medical Incident,01/12/2011,01/11/2011,01/12/2011 02:10:23 AM,01/12/2011 02:10:53 AM,01/12/2011 02:11:58 AM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,04/25/2016 02:06:38 PM,1000 Block of PINE ST,SF,94109,B01,41,1464,2,2,2,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7906221863031, -122.413101980649)",110120018-94 +110070112,E32,11002265,Alarms,01/07/2011,01/07/2011,01/07/2011 10:00:02 AM,01/07/2011 10:02:05 AM,01/07/2011 10:02:18 AM,01/07/2011 10:02:36 AM,01/07/2011 10:07:00 AM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/07/2011 10:14:53 AM,4300 Block of MISSION ST,SF,94112,B09,32,6113,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7273796970352, -122.432642958112)",110070112-E32 +132950310,E23,13100425,Medical Incident,10/22/2013,10/22/2013,10/22/2013 09:44:30 PM,10/22/2013 09:45:45 PM,10/22/2013 09:46:00 PM,10/22/2013 09:47:12 PM,10/22/2013 09:50:07 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/22/2013 10:06:28 PM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",132950310-E23 +122100134,AM06,12069722,Medical Incident,07/28/2012,07/28/2012,07/28/2012 10:35:56 AM,07/28/2012 10:36:23 AM,07/28/2012 10:37:08 AM,07/28/2012 10:37:39 AM,07/28/2012 10:48:40 AM,07/28/2012 10:58:34 AM,07/28/2012 11:10:40 AM,Code 2 Transport,07/28/2012 11:45:39 AM,14TH ST/SOUTH VAN NESS AV,SF,94103,B02,36,5215,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7684052696119, -122.417802155227)",122100134-AM06 +160131066,62,16005127,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:40:42 AM,01/13/2016 09:42:56 AM,01/13/2016 09:43:31 AM,01/13/2016 09:43:46 AM,01/13/2016 09:48:14 AM,01/13/2016 10:15:24 AM,01/13/2016 10:36:43 AM,Code 2 Transport,01/13/2016 11:17:09 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160131066-62 +110150230,E05,11005037,Medical Incident,01/15/2011,01/15/2011,01/15/2011 03:20:39 PM,01/15/2011 03:21:14 PM,01/15/2011 03:22:32 PM,01/15/2011 03:23:35 PM,01/15/2011 03:25:09 PM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 03:33:03 PM,FILLMORE ST/OFARRELL ST,SF,94115,B04,5,3541,3,3,3,true,,1,ENGINE,1,4,5,Western Addition,"(37.7832925916533, -122.432706179722)",110150230-E05 +111600123,64,11052844,Medical Incident,06/09/2011,06/09/2011,06/09/2011 11:36:20 AM,06/09/2011 11:36:58 AM,06/09/2011 11:37:41 AM,06/09/2011 11:43:33 AM,06/09/2011 11:48:46 AM,06/09/2011 12:12:16 PM,06/09/2011 12:31:10 PM,Code 2 Transport,06/09/2011 01:14:55 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",111600123-64 +160883159,60,16035077,Medical Incident,03/28/2016,03/28/2016,03/28/2016 06:32:15 PM,03/28/2016 06:33:04 PM,03/28/2016 06:33:36 PM,03/28/2016 06:33:56 PM,03/28/2016 06:38:49 PM,03/28/2016 06:53:10 PM,03/28/2016 07:24:06 PM,Code 2 Transport,03/28/2016 08:01:17 PM,0 Block of BRIGHTON AVE,San Francisco,94112,B09,33,8465,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7191365323626, -122.455045708672)",160883159-60 +160021846,53,16000757,Medical Incident,01/02/2016,01/02/2016,01/02/2016 02:25:11 PM,01/02/2016 02:26:51 PM,01/02/2016 02:28:30 PM,01/02/2016 02:28:51 PM,01/02/2016 02:36:18 PM,01/02/2016 03:04:48 PM,01/02/2016 03:17:58 PM,Code 2 Transport,01/02/2016 03:34:50 PM,300 Block of 5TH AVE,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7820265124689, -122.463349690466)",160021846-53 +130870271,T07,13029090,Structure Fire,03/28/2013,03/28/2013,03/28/2013 05:15:04 PM,03/28/2013 05:16:34 PM,03/28/2013 05:16:58 PM,03/28/2013 05:18:09 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 05:22:17 PM,1700 Block of SANCHEZ ST,SF,94131,B06,11,5564,3,3,3,false,Alarm,1,TRUCK,9,6,8,Glen Park,"(37.7410415331282, -122.428754803621)",130870271-T07 +122800356,E13,12092744,Medical Incident,10/06/2012,10/06/2012,10/06/2012 07:19:58 PM,10/06/2012 07:23:53 PM,10/06/2012 07:24:32 PM,04/25/2016 01:56:25 PM,10/06/2012 07:27:53 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/06/2012 08:05:06 PM,0 Block of SPOFFORD ST,SF,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7945862444358, -122.407321394337)",122800356-E13 +111360205,E07,11045300,Medical Incident,05/16/2011,05/16/2011,05/16/2011 02:37:28 PM,05/16/2011 02:38:30 PM,05/16/2011 02:38:39 PM,05/16/2011 02:39:03 PM,05/16/2011 02:39:52 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 02:51:26 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",111360205-E07 +110840059,84,11027563,Medical Incident,03/25/2011,03/24/2011,03/25/2011 04:28:10 AM,03/25/2011 04:30:54 AM,03/25/2011 04:32:05 AM,03/25/2011 04:32:18 AM,03/25/2011 04:39:22 AM,03/25/2011 04:42:48 AM,04/25/2016 02:05:28 PM,Code 2 Transport,03/25/2011 05:06:48 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110840059-84 +112040031,E03,11067269,Structure Fire,07/23/2011,07/22/2011,07/23/2011 01:30:03 AM,07/23/2011 01:30:03 AM,07/23/2011 01:30:12 AM,07/23/2011 01:32:00 AM,07/23/2011 01:33:06 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Fire,07/23/2011 01:33:30 AM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",112040031-E03 +130760311,75,13025498,Medical Incident,03/17/2013,03/17/2013,03/17/2013 06:55:14 PM,03/17/2013 06:55:54 PM,03/17/2013 06:56:38 PM,03/17/2013 06:57:27 PM,03/17/2013 07:00:54 PM,03/17/2013 07:08:55 PM,03/17/2013 07:22:59 PM,Code 2 Transport,03/17/2013 08:02:27 PM,900 Block of HAIGHT ST,SF,94117,B05,21,4246,3,3,3,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7711077229875, -122.437866452972)",130760311-75 +120120316,55,12004222,Medical Incident,01/12/2012,01/12/2012,01/12/2012 07:45:00 PM,01/12/2012 07:46:41 PM,01/12/2012 07:46:58 PM,01/12/2012 07:47:13 PM,01/12/2012 08:04:43 PM,01/12/2012 08:13:54 PM,01/12/2012 08:31:48 PM,Code 2 Transport,01/12/2012 08:48:53 PM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",120120316-55 +140430273,KM01,14014690,Medical Incident,02/12/2014,02/12/2014,02/12/2014 04:58:11 PM,02/12/2014 04:59:20 PM,02/12/2014 04:59:47 PM,02/12/2014 05:01:59 PM,02/12/2014 05:09:14 PM,02/12/2014 05:18:20 PM,02/12/2014 06:00:35 PM,Code 2 Transport,02/12/2014 06:31:04 PM,400 Block of BEALE ST,SF,94105,B03,35,2123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",140430273-KM01 +121750363,RS2,12058258,Structure Fire,06/23/2012,06/23/2012,06/23/2012 07:51:22 PM,06/23/2012 07:53:37 PM,06/23/2012 07:53:54 PM,06/23/2012 07:55:34 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 07:57:23 PM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,false,Fire,1,RESCUE SQUAD,10,5,5,Western Addition,"(37.7789870702557, -122.436051970399)",121750363-RS2 +122680050,T01,12088427,Alarms,09/24/2012,09/23/2012,09/24/2012 05:12:22 AM,09/24/2012 05:12:23 AM,09/24/2012 05:15:52 AM,09/24/2012 05:16:21 AM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 05:17:11 AM,600 Block of MARKET ST,SF,94105,B03,1,2211,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",122680050-T01 +130540155,E29,13018234,Medical Incident,02/23/2013,02/23/2013,02/23/2013 01:12:47 PM,02/23/2013 01:13:59 PM,02/23/2013 01:15:07 PM,02/23/2013 01:15:55 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 01:19:13 PM,1700 Block of 20TH ST,SF,94107,B10,37,2521,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7599345049981, -122.398703844399)",130540155-E29 +133390114,65,13114830,Medical Incident,12/05/2013,12/05/2013,12/05/2013 09:21:09 AM,12/05/2013 09:23:07 AM,12/05/2013 09:23:19 AM,12/05/2013 09:23:51 AM,12/05/2013 09:44:45 AM,12/05/2013 10:05:28 AM,12/05/2013 10:35:37 AM,Code 2 Transport,12/05/2013 11:18:19 AM,200 Block of DRAKE ST,SF,94112,B09,43,6227,1,1,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7088523788624, -122.435412990003)",133390114-65 +132800209,T05,13095308,Medical Incident,10/07/2013,10/07/2013,10/07/2013 01:39:41 PM,10/07/2013 01:40:24 PM,10/07/2013 01:40:38 PM,10/07/2013 01:41:48 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/07/2013 01:55:22 PM,0 Block of SEYMOUR ST,SF,94115,B05,5,4134,E,E,3,true,Potentially Life-Threatening,1,TRUCK,5,5,5,Western Addition,"(37.7792900134424, -122.437869182837)",132800209-T05 +120850356,57,12028403,Medical Incident,03/25/2012,03/25/2012,03/25/2012 11:14:35 PM,03/25/2012 11:15:25 PM,03/25/2012 11:16:02 PM,03/25/2012 11:16:08 PM,03/25/2012 11:18:31 PM,03/25/2012 11:29:10 PM,03/25/2012 11:37:40 PM,Code 2 Transport,03/25/2012 11:54:16 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",120850356-57 +160220171,53,16008622,Medical Incident,01/22/2016,01/21/2016,01/22/2016 01:35:30 AM,01/22/2016 01:38:30 AM,01/22/2016 01:38:51 AM,01/22/2016 01:41:13 AM,01/22/2016 01:43:50 AM,01/22/2016 01:58:19 AM,01/22/2016 02:32:57 AM,Code 2 Transport,01/22/2016 03:36:21 AM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160220171-53 +160182499,53,16007317,Medical Incident,01/18/2016,01/18/2016,01/18/2016 05:31:23 PM,01/18/2016 05:32:39 PM,01/18/2016 05:34:48 PM,01/18/2016 05:35:04 PM,01/18/2016 05:58:09 PM,01/18/2016 06:21:24 PM,01/18/2016 06:34:50 PM,Code 2 Transport,01/18/2016 07:17:23 PM,200 Block of HARRISON ST,San Francisco,94105,B03,35,2123,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",160182499-53 +140580165,E36,14019545,Alarms,02/27/2014,02/27/2014,02/27/2014 12:16:42 PM,02/27/2014 12:19:03 PM,02/27/2014 12:19:19 PM,02/27/2014 12:20:49 PM,02/27/2014 12:22:49 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/27/2014 12:32:59 PM,0 Block of MCCOPPIN ST,SF,94103,B02,36,5125,3,3,3,true,Alarm,1,ENGINE,3,2,6,Mission,"(37.7715636917588, -122.422131789635)",140580165-E36 +140330278,B03,14011292,Alarms,02/02/2014,02/02/2014,02/02/2014 07:46:21 PM,02/02/2014 07:47:09 PM,02/02/2014 07:47:15 PM,02/02/2014 07:48:24 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/02/2014 07:51:03 PM,900 Block of HARRISON ST,SF,94107,B03,8,2243,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7784155560729, -122.402721814145)",140330278-B03 +160343153,AM22,16013556,Medical Incident,02/03/2016,02/03/2016,02/03/2016 07:47:52 PM,02/03/2016 07:48:27 PM,02/03/2016 07:49:14 PM,02/03/2016 07:49:58 PM,02/03/2016 07:57:52 PM,02/03/2016 08:22:19 PM,02/03/2016 08:37:12 PM,Code 2 Transport,02/03/2016 09:14:57 PM,5300 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",160343153-AM22 +112750261,T17,11091073,Structure Fire,10/02/2011,10/02/2011,10/02/2011 04:51:14 PM,10/02/2011 04:54:00 PM,10/02/2011 04:54:40 PM,10/02/2011 04:56:45 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,Other,10/02/2011 04:59:00 PM,EVANS AV/PHELPS ST,SF,94124,B10,25,6457,3,3,3,false,,1,TRUCK,6,10,10,Bayview Hunters Point,"(37.7429806182434, -122.388455028839)",112750261-T17 +103080114,E07,10098633,Medical Incident,11/04/2010,11/04/2010,11/04/2010 09:35:24 AM,11/04/2010 09:36:43 AM,11/04/2010 09:37:23 AM,11/04/2010 09:38:26 AM,11/04/2010 09:39:43 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 09:42:28 AM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,1,2,true,,1,ENGINE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",103080114-E07 +132630343,E08,13089247,Medical Incident,09/20/2013,09/20/2013,09/20/2013 06:39:12 PM,09/20/2013 06:39:23 PM,09/20/2013 06:39:56 PM,09/20/2013 06:41:18 PM,09/20/2013 06:45:15 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 06:59:40 PM,3RD ST/HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",132630343-E08 +120490200,E17,12016232,Medical Incident,02/18/2012,02/18/2012,02/18/2012 02:26:46 PM,02/18/2012 02:27:28 PM,02/18/2012 02:27:58 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/18/2012 02:28:53 PM,1300 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",120490200-E17 +160872315,82,16034622,Medical Incident,03/27/2016,03/27/2016,03/27/2016 03:34:55 PM,03/27/2016 03:35:34 PM,03/27/2016 03:36:07 PM,03/27/2016 03:36:36 PM,03/27/2016 03:53:22 PM,03/27/2016 03:53:23 PM,03/27/2016 04:03:54 PM,Code 3 Transport,03/27/2016 05:15:23 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160872315-82 +112180013,T01,11071914,Alarms,08/06/2011,08/05/2011,08/06/2011 12:27:29 AM,08/06/2011 12:28:32 AM,08/06/2011 12:28:44 AM,08/06/2011 12:30:43 AM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/06/2011 12:33:44 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7801303744947, -122.409871449933)",112180013-T01 +160882746,87,16035041,Medical Incident,03/28/2016,03/28/2016,03/28/2016 05:00:45 PM,03/28/2016 05:01:40 PM,03/28/2016 05:02:09 PM,03/28/2016 05:03:09 PM,03/28/2016 05:06:45 PM,03/28/2016 05:22:48 PM,03/28/2016 05:32:52 PM,Code 2 Transport,03/28/2016 05:45:06 PM,700 Block of MARKET ST,San Francisco,94108,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",160882746-87 +160220118,71,16008615,Medical Incident,01/22/2016,01/21/2016,01/22/2016 01:08:37 AM,01/22/2016 01:09:17 AM,01/22/2016 01:09:31 AM,01/22/2016 01:09:37 AM,01/22/2016 01:12:14 AM,01/22/2016 01:27:28 AM,01/22/2016 01:31:23 AM,Code 2 Transport,01/22/2016 02:08:48 AM,1100 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",160220118-71 +120030360,88,12001193,Medical Incident,01/03/2012,01/03/2012,01/03/2012 08:54:03 PM,01/03/2012 08:54:49 PM,01/03/2012 08:55:27 PM,01/03/2012 08:56:00 PM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,Other,01/03/2012 09:00:28 PM,32ND AV/TARAVAL ST,SF,94116,B08,18,7546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.742437436698, -122.489620234677)",120030360-88 +131910221,E31,13065068,Alarms,07/10/2013,07/10/2013,07/10/2013 03:03:57 PM,07/10/2013 03:08:59 PM,07/10/2013 03:09:17 PM,07/10/2013 03:10:35 PM,07/10/2013 03:12:40 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/10/2013 03:16:50 PM,100 Block of 11TH AVE,SF,94118,B07,31,7137,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7855017910126, -122.470044893397)",131910221-E31 +113350298,99,11111006,Traffic Collision,12/01/2011,12/01/2011,12/01/2011 07:27:13 PM,12/01/2011 07:27:41 PM,12/01/2011 07:27:58 PM,12/01/2011 07:31:53 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/01/2011 07:34:52 PM,FULTON ST/7TH AV,SF,94122,B07,31,7122,3,3,3,true,,1,MEDIC,4,7,1,Golden Gate Park,"(37.7734887431391, -122.464811669746)",113350298-99 +122520147,RC1,12083303,Medical Incident,09/08/2012,09/08/2012,09/08/2012 12:26:16 PM,09/08/2012 12:26:43 PM,09/08/2012 12:26:55 PM,09/08/2012 01:05:46 PM,09/08/2012 01:08:51 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/08/2012 01:32:56 PM,BUSH ST/HYDE ST,SF,94109,B04,3,1561,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,4,3,Nob Hill,"(37.7891101748937, -122.417016879226)",122520147-RC1 +112960066,75,11098097,Medical Incident,10/23/2011,10/22/2011,10/23/2011 02:57:03 AM,10/23/2011 02:57:59 AM,10/23/2011 02:59:03 AM,10/23/2011 02:59:57 AM,10/23/2011 03:10:27 AM,10/23/2011 03:21:19 AM,10/23/2011 03:31:36 AM,Code 2 Transport,10/23/2011 03:46:34 AM,2700 Block of 41ST AVE,SF,94116,B08,19,7641,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7354674300338, -122.498871451486)",112960066-75 +133490105,T10,13118411,Citizen Assist / Service Call,12/15/2013,12/15/2013,12/15/2013 09:23:29 AM,12/15/2013 09:25:13 AM,12/15/2013 09:25:34 AM,12/15/2013 09:26:11 AM,12/15/2013 09:29:41 AM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 09:44:59 AM,3600 Block of WASHINGTON ST,SF,94118,B07,10,4433,3,3,3,false,Alarm,1,TRUCK,1,7,2,Presidio Heights,"(37.7891489677203, -122.453112381719)",133490105-T10 +160770590,73,16030466,Medical Incident,03/17/2016,03/16/2016,03/17/2016 07:22:06 AM,03/17/2016 07:22:06 AM,03/17/2016 07:22:28 AM,03/17/2016 07:23:05 AM,03/17/2016 07:27:57 AM,03/17/2016 07:52:31 AM,03/17/2016 07:59:51 AM,Code 2 Transport,03/17/2016 09:19:17 AM,16TH ST/POTRERO AV,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",160770590-73 +121330365,77,12044430,Medical Incident,05/12/2012,05/12/2012,05/12/2012 11:01:49 PM,05/12/2012 11:03:37 PM,05/12/2012 11:04:39 PM,05/12/2012 11:04:56 PM,05/12/2012 11:13:09 PM,05/12/2012 11:31:04 PM,05/12/2012 11:43:22 PM,Code 2 Transport,05/13/2012 12:09:02 AM,VALENCIA ST/16TH ST,SF,94103,B02,6,5226,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",121330365-77 +160030647,89,16001080,Medical Incident,01/03/2016,01/02/2016,01/03/2016 06:29:46 AM,01/03/2016 06:30:11 AM,01/03/2016 06:30:25 AM,01/03/2016 06:32:21 AM,01/03/2016 06:44:55 AM,01/03/2016 07:10:43 AM,01/03/2016 07:24:04 AM,Code 2 Transport,01/03/2016 08:08:57 AM,4300 Block of KIRKHAM ST,San Francisco,94122,B08,23,7717,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7585441184385, -122.507405939677)",160030647-89 +160151958,85,16006004,Medical Incident,01/15/2016,01/15/2016,01/15/2016 01:30:49 PM,01/15/2016 01:32:23 PM,01/15/2016 01:32:38 PM,01/15/2016 01:32:52 PM,01/15/2016 01:36:54 PM,01/15/2016 02:01:59 PM,01/15/2016 02:06:19 PM,Code 2 Transport,01/15/2016 03:07:31 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160151958-85 +160180314,70,16007104,Medical Incident,01/18/2016,01/17/2016,01/18/2016 03:55:01 AM,01/18/2016 03:56:31 AM,01/18/2016 03:57:56 AM,01/18/2016 03:58:03 AM,01/18/2016 04:14:29 AM,01/18/2016 04:36:33 AM,01/18/2016 05:05:37 AM,Code 2 Transport,01/18/2016 05:47:05 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",160180314-70 +111370214,94,11045595,Medical Incident,05/17/2011,05/17/2011,05/17/2011 02:30:08 PM,05/17/2011 02:31:02 PM,05/17/2011 02:34:57 PM,05/17/2011 02:35:16 PM,05/17/2011 02:55:10 PM,05/17/2011 03:15:41 PM,05/17/2011 03:32:51 PM,Code 2 Transport,05/17/2011 03:50:59 PM,2500 Block of 34TH AVE,SF,94116,B08,18,7554,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7395410667651, -122.491637791609)",111370214-94 +131530288,RC2,13051930,Medical Incident,06/02/2013,06/02/2013,06/02/2013 07:13:04 PM,06/02/2013 07:14:01 PM,06/02/2013 07:14:27 PM,06/02/2013 07:15:12 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 07:22:00 PM,200 Block of QUINTARA ST,SF,94116,B08,40,7341,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,7,West of Twin Peaks,"(37.7489484740015, -122.467927498142)",131530288-RC2 +121090142,E08,12036015,Medical Incident,04/18/2012,04/18/2012,04/18/2012 11:24:01 AM,04/18/2012 11:24:52 AM,04/18/2012 11:24:58 AM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/25/2016 01:59:07 PM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7749917920342, -122.41006277143)",121090142-E08 +130600052,E06,13020016,Medical Incident,03/01/2013,02/28/2013,03/01/2013 05:28:10 AM,03/01/2013 05:28:37 AM,03/01/2013 05:28:57 AM,03/01/2013 05:30:24 AM,03/01/2013 05:35:45 AM,04/25/2016 01:54:04 PM,04/25/2016 01:54:04 PM,Medical Examiner,03/01/2013 05:56:39 AM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,E,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",130600052-E06 +112900167,B10,11096197,Alarms,10/17/2011,10/17/2011,10/17/2011 12:26:43 PM,10/17/2011 12:27:37 PM,10/17/2011 12:27:55 PM,10/17/2011 12:29:06 PM,10/17/2011 12:34:39 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 12:40:22 PM,100 Block of JENNINGS ST,SF,94124,B10,25,996,3,3,3,false,,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",112900167-B10 +160823779,KM03,16032753,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:27:24 PM,03/22/2016 09:27:52 PM,03/22/2016 09:28:25 PM,03/22/2016 09:29:15 PM,03/22/2016 09:32:19 PM,03/22/2016 09:54:05 PM,03/22/2016 10:04:34 PM,Code 2 Transport,03/22/2016 10:50:57 PM,3600 Block of BUCHANAN ST,San Francisco,94123,B04,16,3446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8035364991115, -122.433494688087)",160823779-KM03 +160122940,KM09,16004878,Medical Incident,01/12/2016,01/12/2016,01/12/2016 05:58:56 PM,01/12/2016 05:59:51 PM,01/12/2016 06:00:13 PM,01/12/2016 06:02:14 PM,01/12/2016 06:07:26 PM,01/12/2016 06:13:40 PM,01/12/2016 06:34:54 PM,Code 2 Transport,01/12/2016 07:02:09 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160122940-KM09 +160201064,70,16007955,Medical Incident,01/20/2016,01/20/2016,01/20/2016 09:37:25 AM,01/20/2016 09:38:09 AM,01/20/2016 09:38:59 AM,01/20/2016 09:39:13 AM,01/20/2016 09:42:18 AM,01/20/2016 09:59:14 AM,01/20/2016 10:05:37 AM,Code 2 Transport,01/20/2016 10:24:13 AM,1000 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",160201064-70 +140170071,AM24,14005737,Medical Incident,01/17/2014,01/16/2014,01/17/2014 07:34:42 AM,01/17/2014 07:35:58 AM,01/17/2014 07:36:11 AM,01/17/2014 07:36:46 AM,01/17/2014 07:53:17 AM,01/17/2014 08:14:00 AM,01/17/2014 08:30:00 AM,Code 2 Transport,01/17/2014 08:48:58 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",140170071-AM24 +140430348,RS1,14014758,Structure Fire,02/12/2014,02/12/2014,02/12/2014 07:59:52 PM,02/12/2014 08:00:15 PM,02/12/2014 08:00:47 PM,02/12/2014 08:01:51 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 08:03:54 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,,3,3,false,Alarm,1,RESCUE SQUAD,12,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",140430348-RS1 +110380050,E09,11012476,Medical Incident,02/07/2011,02/06/2011,02/07/2011 03:32:20 AM,02/07/2011 03:34:58 AM,02/07/2011 03:35:20 AM,02/07/2011 03:36:39 AM,02/07/2011 03:41:58 AM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,Patient Declined Transport,02/07/2011 03:55:40 AM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",110380050-E09 +160292663,74,16011511,Medical Incident,01/29/2016,01/29/2016,01/29/2016 05:20:41 PM,01/29/2016 05:24:02 PM,01/29/2016 05:25:04 PM,01/29/2016 05:25:24 PM,01/29/2016 05:34:05 PM,01/29/2016 05:44:48 PM,01/29/2016 05:47:53 PM,Code 2 Transport,01/29/2016 06:18:01 PM,1100 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",160292663-74 +132260171,84,13076285,Medical Incident,08/14/2013,08/14/2013,08/14/2013 12:13:55 PM,08/14/2013 12:15:13 PM,08/14/2013 12:15:36 PM,04/25/2016 01:51:18 PM,08/14/2013 12:28:09 PM,08/14/2013 12:42:48 PM,08/14/2013 01:07:15 PM,Code 2 Transport,08/14/2013 01:15:03 PM,100 Block of ALBION ST,SF,94110,B02,7,5247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7636452868367, -122.422667774315)",132260171-84 +131520299,68,13051603,Medical Incident,06/01/2013,06/01/2013,06/01/2013 08:03:28 PM,06/01/2013 08:04:27 PM,06/01/2013 08:04:31 PM,06/01/2013 08:04:41 PM,06/01/2013 08:19:48 PM,06/01/2013 08:48:40 PM,06/01/2013 09:03:22 PM,Code 2 Transport,06/01/2013 09:31:59 PM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,2,2,2,false,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",131520299-68 +160603462,KM03,16024088,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:16:05 PM,02/29/2016 09:16:55 PM,02/29/2016 09:17:32 PM,02/29/2016 09:18:45 PM,02/29/2016 09:26:11 PM,02/29/2016 09:34:19 PM,02/29/2016 09:43:21 PM,Code 2 Transport,02/29/2016 10:10:41 PM,SANSOME ST/CALIFORNIA ST,San Francisco,94104,B01,13,1165,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7930602991213, -122.401126343901)",160603462-KM03 +160903597,87,16035873,Medical Incident,03/30/2016,03/30/2016,03/30/2016 08:25:58 PM,03/30/2016 08:26:55 PM,03/30/2016 08:27:05 PM,03/30/2016 08:27:21 PM,03/30/2016 08:30:05 PM,03/30/2016 08:47:44 PM,03/30/2016 09:01:20 PM,Code 2 Transport,03/30/2016 09:34:17 PM,CALEDONIA ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7649478897256, -122.421381476722)",160903597-87 +102980020,E39,10095029,Medical Incident,10/25/2010,10/24/2010,10/25/2010 01:38:19 AM,10/25/2010 01:38:54 AM,10/25/2010 01:39:21 AM,10/25/2010 01:41:29 AM,10/25/2010 01:44:56 AM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Other,10/25/2010 02:16:28 AM,400 Block of MOLIMO DR,SF,94127,B09,39,8664,3,2,2,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7390149956143, -122.451430035548)",102980020-E39 +122950290,92,12097946,Medical Incident,10/21/2012,10/21/2012,10/21/2012 08:27:33 PM,10/21/2012 08:28:27 PM,10/21/2012 08:29:19 PM,10/21/2012 08:29:36 PM,10/21/2012 08:37:01 PM,10/21/2012 08:49:58 PM,10/21/2012 09:16:46 PM,Code 2 Transport,10/21/2012 09:50:06 PM,100 Block of GOLD MINE DR,SF,94131,B06,26,8161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7425307657935, -122.439090339796)",122950290-92 +132660293,89,13090338,Medical Incident,09/23/2013,09/23/2013,09/23/2013 04:43:59 PM,09/23/2013 04:44:47 PM,09/23/2013 04:45:03 PM,09/23/2013 04:45:52 PM,09/23/2013 05:08:45 PM,09/23/2013 05:13:45 PM,09/23/2013 05:52:42 PM,Code 2 Transport,09/23/2013 06:01:06 PM,700 Block of MARKET ST,SF,94108,B03,1,1322,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",132660293-89 +160570648,75,16022642,Medical Incident,02/26/2016,02/25/2016,02/26/2016 07:38:11 AM,02/26/2016 07:38:44 AM,02/26/2016 07:41:11 AM,02/26/2016 07:41:21 AM,02/26/2016 07:43:14 AM,02/26/2016 07:44:40 AM,02/26/2016 07:52:13 AM,Code 2 Transport,02/26/2016 08:47:15 AM,300 Block of BAY SHORE BLVD,San Francisco,94110,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",160570648-75 +160781070,KM04,16030955,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:22:27 AM,03/18/2016 09:23:37 AM,03/18/2016 09:24:10 AM,03/18/2016 09:24:40 AM,03/18/2016 09:30:46 AM,03/18/2016 09:43:48 AM,03/18/2016 10:05:37 AM,Code 2 Transport,03/18/2016 10:57:13 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160781070-KM04 +133650040,84,13123821,Medical Incident,12/31/2013,12/30/2013,12/31/2013 03:03:41 AM,12/31/2013 03:04:40 AM,12/31/2013 03:05:09 AM,12/31/2013 03:05:19 AM,12/31/2013 03:10:18 AM,12/31/2013 03:27:31 AM,12/31/2013 03:38:01 AM,Code 3 Transport,12/31/2013 04:14:35 AM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",133650040-84 +160013222,72,16000463,Traffic Collision,01/01/2016,01/01/2016,01/01/2016 07:03:17 PM,01/01/2016 07:04:31 PM,01/01/2016 07:06:06 PM,01/01/2016 07:06:16 PM,01/01/2016 07:13:32 PM,01/01/2016 07:24:15 PM,01/01/2016 07:41:53 PM,Code 2 Transport,01/01/2016 08:22:23 PM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",160013222-72 +160890760,KM13,16035236,Medical Incident,03/29/2016,03/29/2016,03/29/2016 08:21:13 AM,03/29/2016 08:22:37 AM,03/29/2016 08:23:06 AM,03/29/2016 08:24:47 AM,03/29/2016 08:34:24 AM,03/29/2016 08:55:42 AM,03/29/2016 09:17:53 AM,Code 2 Transport,03/29/2016 09:59:18 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160890760-KM13 +160013747,AM20,16000526,Traffic Collision,01/01/2016,01/01/2016,01/01/2016 10:10:42 PM,01/01/2016 10:10:42 PM,01/01/2016 10:11:53 PM,01/01/2016 10:11:53 PM,01/01/2016 10:14:19 PM,01/01/2016 10:26:50 PM,01/01/2016 10:44:34 PM,Code 2 Transport,01/01/2016 11:29:41 PM,BUSH ST/POLK ST,San Francisco,94109,B01,3,1636,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",160013747-AM20 +122550003,89,12084128,Medical Incident,09/11/2012,09/10/2012,09/11/2012 12:03:48 AM,09/11/2012 12:07:18 AM,09/11/2012 12:07:45 AM,09/11/2012 12:08:07 AM,09/11/2012 12:13:51 AM,09/11/2012 12:32:36 AM,09/11/2012 12:38:28 AM,Code 2 Transport,09/11/2012 01:01:55 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,1,1,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",122550003-89 +103500272,E37,10112317,Alarms,12/16/2010,12/16/2010,12/16/2010 04:11:11 PM,12/16/2010 04:12:41 PM,12/16/2010 04:13:36 PM,12/16/2010 04:14:57 PM,12/16/2010 04:16:46 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Fire,12/16/2010 04:24:13 PM,100 Block of TURQUOISE WAY,SF,94131,B10,26,8164,3,3,3,false,,1,ENGINE,1,6,8,Glen Park,"(37.7435345441074, -122.444884466475)",103500272-E37 +121520331,B10,12050466,Gas Leak (Natural and LP Gases),05/31/2012,05/31/2012,05/31/2012 10:00:42 PM,05/31/2012 10:02:22 PM,05/31/2012 10:03:12 PM,05/31/2012 10:05:26 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 10:11:56 PM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7298790936901, -122.382178424141)",121520331-B10 +140520090,E02,14017544,Medical Incident,02/21/2014,02/21/2014,02/21/2014 08:59:57 AM,02/21/2014 09:02:26 AM,02/21/2014 09:02:50 AM,04/25/2016 01:48:06 PM,02/21/2014 09:08:01 AM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Code 2 Transport,02/21/2014 09:12:01 AM,1000 Block of WASHINGTON ST,SF,94108,B01,2,1415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7946592682333, -122.409885879605)",140520090-E02 +120770024,T05,12025364,Alarms,03/17/2012,03/16/2012,03/17/2012 01:57:05 AM,03/17/2012 01:57:24 AM,03/17/2012 01:57:46 AM,03/17/2012 01:58:34 AM,03/17/2012 02:00:41 AM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 02:09:42 AM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7794051372088, -122.432762898818)",120770024-T05 +102450381,E05,10077472,Medical Incident,09/02/2010,09/02/2010,09/02/2010 05:51:04 PM,09/02/2010 05:52:33 PM,09/02/2010 05:54:34 PM,09/02/2010 05:55:03 PM,09/02/2010 05:57:58 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/02/2010 06:31:48 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",102450381-E05 +120750097,55,12024837,Medical Incident,03/15/2012,03/15/2012,03/15/2012 08:42:09 AM,03/15/2012 08:43:08 AM,03/15/2012 08:43:40 AM,03/15/2012 08:44:57 AM,03/15/2012 08:50:33 AM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 09:08:15 AM,WILLOW ST/POLK ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835677840088, -122.419273434964)",120750097-55 +111070237,65,11035442,Medical Incident,04/17/2011,04/17/2011,04/17/2011 04:48:18 PM,04/17/2011 04:49:00 PM,04/17/2011 04:49:38 PM,04/17/2011 04:50:04 PM,04/17/2011 04:56:34 PM,04/17/2011 05:10:28 PM,04/17/2011 05:20:33 PM,Code 2 Transport,04/17/2011 05:48:27 PM,600 Block of FREDERICK ST,SF,94117,B05,12,4551,3,3,3,true,,1,MEDIC,2,5,5,Inner Sunset,"(37.7659077959827, -122.456186927179)",111070237-65 +132120298,86,13071762,Medical Incident,07/31/2013,07/31/2013,07/31/2013 07:14:45 PM,07/31/2013 07:15:05 PM,07/31/2013 07:15:35 PM,07/31/2013 07:15:43 PM,07/31/2013 07:30:36 PM,07/31/2013 07:57:43 PM,07/31/2013 08:06:13 PM,Code 2 Transport,07/31/2013 08:30:32 PM,1500 Block of 15TH ST,SF,94103,B02,7,5225,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7667276112047, -122.418018847374)",132120298-86 +121780286,AM08,12059341,Medical Incident,06/26/2012,06/26/2012,06/26/2012 05:45:01 PM,06/26/2012 05:47:28 PM,06/26/2012 05:48:22 PM,06/26/2012 05:48:53 PM,06/26/2012 05:53:19 PM,06/26/2012 06:30:00 PM,06/26/2012 06:30:05 PM,Code 2 Transport,06/26/2012 06:50:10 PM,2500 Block of VAN NESS AVE,SF,94109,B04,16,3146,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Russian Hill,"(37.7990402347578, -122.42390548516)",121780286-AM08 +132170063,E08,13073211,Vehicle Fire,08/05/2013,08/04/2013,08/05/2013 05:46:14 AM,08/05/2013 05:47:03 AM,08/05/2013 05:58:14 AM,04/25/2016 01:51:28 PM,08/05/2013 06:12:10 AM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/05/2013 06:56:37 AM,0 Block of 4TH ST,SF,94103,B03,8,2216,3,3,3,true,Fire,1,ENGINE,5,3,6,South of Market,"(37.7846551607137, -122.404580497913)",132170063-E08 +130170283,B04,13005865,Structure Fire,01/17/2013,01/17/2013,01/17/2013 04:22:41 PM,01/17/2013 04:23:55 PM,01/17/2013 04:24:05 PM,01/17/2013 04:24:14 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,Other,01/17/2013 04:30:01 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,Alarm,1,CHIEF,10,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",130170283-B04 +130870366,94,13029180,Medical Incident,03/28/2013,03/28/2013,03/28/2013 09:31:26 PM,03/28/2013 09:33:23 PM,03/28/2013 09:40:16 PM,03/28/2013 09:42:24 PM,03/28/2013 09:48:49 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Unable to Locate,03/28/2013 10:06:56 PM,0 Block of CERES ST,SF,94124,B10,17,6513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7302365980257, -122.394387701957)",130870366-94 +140800126,E06,14026986,Medical Incident,03/21/2014,03/21/2014,03/21/2014 10:29:09 AM,03/21/2014 10:30:58 AM,03/21/2014 10:31:20 AM,03/21/2014 10:31:37 AM,03/21/2014 10:36:10 AM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/21/2014 10:41:44 AM,2100 Block of MARKET ST,SAN FRANCISCO,94114,B05,6,5231,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",140800126-E06 +122500354,KM12,12082819,Medical Incident,09/06/2012,09/06/2012,09/06/2012 10:16:14 PM,09/06/2012 10:17:43 PM,09/06/2012 10:18:25 PM,09/06/2012 10:19:10 PM,09/06/2012 10:27:45 PM,09/06/2012 10:47:27 PM,09/06/2012 11:10:20 PM,Code 2 Transport,09/06/2012 11:35:23 PM,2300 Block of 45TH AVE,SF,94116,B08,18,7665,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7427486659291, -122.503683862385)",122500354-KM12 +160163657,64,16006614,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:19:46 PM,01/16/2016 10:20:55 PM,01/16/2016 10:23:42 PM,01/16/2016 10:26:19 PM,01/16/2016 10:26:21 PM,01/16/2016 10:41:39 PM,01/16/2016 10:47:58 PM,Code 2 Transport,01/16/2016 11:26:43 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160163657-64 +123550311,KM01,12118917,Medical Incident,12/20/2012,12/20/2012,12/20/2012 07:33:39 PM,12/20/2012 07:35:47 PM,12/20/2012 07:39:00 PM,12/20/2012 07:39:46 PM,12/20/2012 07:56:23 PM,12/20/2012 08:04:06 PM,12/20/2012 08:42:50 PM,Code 2 Transport,12/20/2012 09:12:02 PM,100 Block of WAYLAND ST,SF,94134,B10,42,6333,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,9,Portola,"(37.7262511420614, -122.403579973371)",123550311-KM01 +160362872,88,16014349,Medical Incident,02/05/2016,02/05/2016,02/05/2016 04:52:34 PM,02/05/2016 04:54:28 PM,02/05/2016 04:54:55 PM,02/05/2016 04:55:42 PM,02/05/2016 05:00:33 PM,02/05/2016 05:11:15 PM,02/05/2016 05:53:37 PM,Code 2 Transport,02/05/2016 06:18:25 PM,200 Block of WEST POINT RD,San Francisco,94124,B10,25,6556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.735189226844, -122.378938285616)",160362872-88 +140410160,B04,14013900,Alarms,02/10/2014,02/10/2014,02/10/2014 11:11:16 AM,02/10/2014 11:13:47 AM,02/10/2014 11:14:09 AM,02/10/2014 11:15:09 AM,02/10/2014 11:18:06 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 11:23:56 AM,3000 Block of PINE ST,SF,94115,B05,10,4411,3,3,3,false,Alarm,1,CHIEF,1,5,2,Presidio Heights,"(37.7863373698888, -122.445898510181)",140410160-B04 +111390278,E21,11046288,Medical Incident,05/19/2011,05/19/2011,05/19/2011 05:55:26 PM,05/19/2011 05:57:09 PM,05/19/2011 05:57:33 PM,05/19/2011 05:58:45 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 06:07:54 PM,2100 Block of FULTON ST,SF,94117,B05,21,4542,3,3,3,false,,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7749288006082, -122.452895831839)",111390278-E21 +120420044,E28,12013914,Medical Incident,02/11/2012,02/10/2012,02/11/2012 02:35:35 AM,02/11/2012 02:37:36 AM,02/11/2012 02:38:29 AM,02/11/2012 02:40:13 AM,02/11/2012 02:42:22 AM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 02:51:11 AM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8061515935611, -122.418537074676)",120420044-E28 +123390419,E41,12113263,HazMat,12/04/2012,12/04/2012,12/04/2012 11:55:27 PM,12/04/2012 11:58:36 PM,12/05/2012 12:00:05 AM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,Other,12/05/2012 12:01:29 AM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Alarm,1,ENGINE,10,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",123390419-E41 +103480241,E15,10111634,Medical Incident,12/14/2010,12/14/2010,12/14/2010 02:21:20 PM,12/14/2010 02:23:30 PM,12/14/2010 02:24:00 PM,12/14/2010 02:24:54 PM,12/14/2010 02:26:38 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Other,12/14/2010 02:32:02 PM,SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7257926850407, -122.442387189271)",103480241-E15 +111260248,E42,11041738,Administrative,05/06/2011,05/06/2011,05/06/2011 02:44:05 PM,05/06/2011 02:44:08 PM,05/06/2011 02:44:20 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 02:44:43 PM,2400 Block of SAN BRUNO AVE,SF,94134,B10,42,6362,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7318198889718, -122.405412091734)",111260248-E42 +112980129,E36,11098815,Medical Incident,10/25/2011,10/25/2011,10/25/2011 10:03:56 AM,10/25/2011 10:05:33 AM,10/25/2011 10:05:50 AM,10/25/2011 10:06:49 AM,10/25/2011 10:08:54 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 10:29:23 AM,MISSION ST/11TH ST,SF,94103,B02,36,5116,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",112980129-E36 +122280351,D2,12075699,Structure Fire,08/15/2012,08/15/2012,08/15/2012 09:21:52 PM,08/15/2012 09:24:11 PM,08/15/2012 09:25:52 PM,08/15/2012 09:26:45 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 09:30:07 PM,5400 Block of FULTON ST,SF,94121,B07,14,7224,3,3,3,false,Fire,1,CHIEF,6,7,1,Outer Richmond,"(37.772355745851, -122.490082156003)",122280351-D2 +132440046,E28,13082231,Medical Incident,09/01/2013,08/31/2013,09/01/2013 03:01:45 AM,09/01/2013 03:04:08 AM,09/01/2013 03:04:24 AM,09/01/2013 03:06:36 AM,09/01/2013 03:08:00 AM,04/25/2016 01:51:01 PM,04/25/2016 01:51:01 PM,Other,09/01/2013 03:23:04 AM,0 Block of TUSCANY ALY,SF,94133,B01,28,1346,E,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8029221138638, -122.410369328084)",132440046-E28 +121630220,T01,12054068,Structure Fire,06/11/2012,06/11/2012,06/11/2012 02:18:02 PM,06/11/2012 02:18:02 PM,06/11/2012 02:18:09 PM,06/11/2012 02:19:36 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 02:22:08 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",121630220-T01 +160912349,79,16036133,Medical Incident,03/31/2016,03/31/2016,03/31/2016 03:53:54 PM,03/31/2016 03:56:18 PM,03/31/2016 03:58:35 PM,03/31/2016 03:59:03 PM,03/31/2016 04:02:40 PM,03/31/2016 04:34:12 PM,03/31/2016 05:01:50 PM,Code 2 Transport,03/31/2016 05:35:45 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7842371111665, -122.440760813886)",160912349-79 +130450112,E13,13015196,Smoke Investigation (Outside),02/14/2013,02/14/2013,02/14/2013 09:50:04 AM,02/14/2013 09:51:24 AM,02/14/2013 09:51:45 AM,02/14/2013 09:52:01 AM,02/14/2013 09:55:16 AM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 09:58:08 AM,PINE ST/FRONT ST,SF,94111,B01,13,1136,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.792408220321, -122.398587836325)",130450112-E13 +102850047,E10,10090646,Medical Incident,10/12/2010,10/11/2010,10/12/2010 05:17:18 AM,10/12/2010 05:20:21 AM,10/12/2010 05:20:32 AM,10/12/2010 05:22:13 AM,10/12/2010 05:24:39 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 05:32:19 AM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,3,3,3,false,,1,ENGINE,1,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",102850047-E10 +132850242,B07,13096996,Water Rescue,10/12/2013,10/12/2013,10/12/2013 04:45:05 PM,10/12/2013 04:46:32 PM,10/12/2013 04:46:55 PM,10/12/2013 04:48:33 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/12/2013 04:50:10 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,false,Fire,1,CHIEF,8,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",132850242-B07 +122830350,E42,12093798,Medical Incident,10/09/2012,10/09/2012,10/09/2012 10:49:40 PM,10/09/2012 10:49:56 PM,10/09/2012 10:50:14 PM,10/09/2012 10:51:58 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/09/2012 10:52:47 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,1,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",122830350-E42 +132430344,E08,13082129,Medical Incident,08/31/2013,08/31/2013,08/31/2013 08:22:21 PM,08/31/2013 08:24:22 PM,08/31/2013 08:26:01 PM,08/31/2013 08:27:10 PM,08/31/2013 08:28:52 PM,04/25/2016 01:51:01 PM,04/25/2016 01:51:01 PM,Other,08/31/2013 08:40:14 PM,500 Block of BRANNAN ST,SF,94107,B03,8,2241,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7774865325812, -122.397691886789)",132430344-E08 +112440212,E21,11080471,Medical Incident,09/01/2011,09/01/2011,09/01/2011 02:20:46 PM,09/01/2011 02:21:27 PM,09/01/2011 02:28:10 PM,09/01/2011 02:29:27 PM,09/01/2011 02:29:41 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 02:51:39 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,2,2,true,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",112440212-E21 +112250061,E02,11074237,Medical Incident,08/13/2011,08/12/2011,08/13/2011 04:46:40 AM,08/13/2011 04:46:52 AM,08/13/2011 04:47:07 AM,08/13/2011 04:49:20 AM,08/13/2011 04:50:19 AM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/13/2011 05:13:07 AM,700 Block of JACKSON ST,SF,94108,B01,2,1312,3,E,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7958643090999, -122.40748710994)",112250061-E02 +160082268,AM02,16003292,Medical Incident,01/08/2016,01/08/2016,01/08/2016 03:04:45 PM,01/08/2016 03:06:38 PM,01/08/2016 03:07:45 PM,01/08/2016 03:08:25 PM,01/08/2016 03:20:05 PM,01/08/2016 03:24:53 PM,01/08/2016 04:15:38 PM,Code 2 Transport,01/08/2016 04:15:42 PM,11TH ST/MARKET ST,San Francisco,94103,B02,36,5117,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7755581612992, -122.41865858352)",160082268-AM02 +133490371,E08,13118641,Medical Incident,12/15/2013,12/15/2013,12/15/2013 09:38:40 PM,12/15/2013 09:40:27 PM,12/15/2013 09:40:39 PM,12/15/2013 09:41:40 PM,12/15/2013 09:44:18 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 10:02:49 PM,TOWNSEND ST/4TH ST,SF,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7770893320016, -122.394981482757)",133490371-E08 +103600185,B03,10115544,Alarms,12/26/2010,12/26/2010,12/26/2010 04:00:33 PM,12/26/2010 04:02:01 PM,12/26/2010 04:03:16 PM,12/26/2010 04:04:10 PM,12/26/2010 04:08:47 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 04:18:19 PM,600 Block of HARRISON ST,SF,94107,B03,8,2151,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7841356234777, -122.395480783612)",103600185-B03 +102570158,64,10081169,Medical Incident,09/14/2010,09/14/2010,09/14/2010 11:50:51 AM,09/14/2010 11:52:14 AM,09/14/2010 11:52:27 AM,09/14/2010 11:52:40 AM,09/14/2010 12:03:13 PM,09/14/2010 12:26:44 PM,09/14/2010 12:57:55 PM,Code 2 Transport,09/14/2010 01:24:32 PM,700 Block of GOETTINGEN ST,SF,94134,B10,44,6325,3,3,3,true,,1,MEDIC,1,10,9,Portola,"(37.7224975421684, -122.404670537235)",102570158-64 +112480180,D3,11081786,Structure Fire,09/05/2011,09/05/2011,09/05/2011 12:35:31 PM,09/05/2011 12:36:50 PM,09/05/2011 12:37:24 PM,09/05/2011 12:38:31 PM,09/05/2011 12:48:21 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 01:08:16 PM,2400 Block of TARAVAL ST,SF,94116,B08,18,7546,3,3,3,false,,1,CHIEF,9,8,4,Sunset/Parkside,"(37.7423741797947, -122.492306247956)",112480180-D3 +160251274,67,16009880,Medical Incident,01/25/2016,01/25/2016,01/25/2016 10:36:05 AM,01/25/2016 10:36:36 AM,01/25/2016 10:36:46 AM,01/25/2016 10:37:13 AM,01/25/2016 10:40:10 AM,01/25/2016 11:05:48 AM,01/25/2016 11:05:52 AM,Code 2 Transport,01/25/2016 12:12:12 PM,5100 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7458165668766, -122.44007828523)",160251274-67 +122500320,AP,12082787,Other,09/06/2012,09/06/2012,09/06/2012 08:42:56 PM,09/06/2012 08:42:56 PM,09/06/2012 08:42:56 PM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,Fire,09/06/2012 08:43:18 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122500320-AP +132380386,67,13080469,Medical Incident,08/26/2013,08/26/2013,08/26/2013 09:48:38 PM,08/26/2013 09:50:53 PM,08/26/2013 09:51:04 PM,08/26/2013 09:51:19 PM,08/26/2013 10:00:47 PM,08/26/2013 10:05:33 PM,08/26/2013 10:24:06 PM,Code 2 Transport,08/26/2013 10:55:29 PM,2900 Block of 23RD ST,SF,94110,B06,7,5476,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7543133191277, -122.41158898537)",132380386-67 +123610184,KM10,12120805,Medical Incident,12/26/2012,12/26/2012,12/26/2012 01:05:55 PM,12/26/2012 01:06:27 PM,12/26/2012 01:06:46 PM,12/26/2012 01:08:06 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 01:12:56 PM,2800 Block of GREEN ST,SF,94123,B04,16,4332,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7947479671814, -122.445964702348)",123610184-KM10 +110330099,E25,11010748,Medical Incident,02/02/2011,02/02/2011,02/02/2011 09:24:01 AM,02/02/2011 09:25:18 AM,02/02/2011 09:26:02 AM,02/02/2011 09:29:10 AM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/02/2011 09:30:57 AM,800 Block of MENDELL ST,SF,94124,B10,25,6532,3,3,3,true,,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.7380127667617, -122.387188618644)",110330099-E25 +102540114,60,10080240,Medical Incident,09/11/2010,09/11/2010,09/11/2010 08:53:46 AM,09/11/2010 08:55:20 AM,09/11/2010 08:59:49 AM,09/11/2010 09:01:07 AM,09/11/2010 09:11:50 AM,09/11/2010 09:30:53 AM,09/11/2010 09:49:20 AM,Code 2 Transport,09/11/2010 10:13:11 AM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7209580935201, -122.387166280374)",102540114-60 +120540294,E13,12017914,Traffic Collision,02/23/2012,02/23/2012,02/23/2012 05:49:00 PM,02/23/2012 05:50:33 PM,02/23/2012 05:51:02 PM,02/23/2012 05:52:22 PM,02/23/2012 05:54:17 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 06:05:49 PM,0 Block of LOMBARD ST,SF,94111,B01,13,1222,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8040475219698, -122.402650074799)",120540294-E13 +111490100,AM16,11049331,Medical Incident,05/29/2011,05/29/2011,05/29/2011 10:41:47 AM,05/29/2011 10:42:12 AM,05/29/2011 10:42:20 AM,05/29/2011 10:43:05 AM,05/29/2011 10:47:47 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 10:51:51 AM,24TH ST/CAPP ST,SF,94110,B06,7,5511,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7523059787388, -122.417357818307)",111490100-AM16 +103260168,55,10104470,Traffic Collision,11/22/2010,11/22/2010,11/22/2010 01:03:10 PM,11/22/2010 01:04:59 PM,11/22/2010 01:05:19 PM,11/22/2010 01:05:43 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,04/25/2016 02:07:28 PM,28TH AV/GEARY BL,SF,94121,B07,14,7226,2,2,2,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7799471314505, -122.487945904675)",103260168-55 +160530909,57,16021126,Medical Incident,02/22/2016,02/22/2016,02/22/2016 09:21:32 AM,02/22/2016 09:23:38 AM,02/22/2016 09:47:06 AM,02/22/2016 09:47:06 AM,02/22/2016 09:56:22 AM,02/22/2016 10:22:14 AM,02/22/2016 10:22:15 AM,Code 2 Transport,02/22/2016 11:10:45 AM,100 Block of PERSIA AVE,San Francisco,94112,B09,43,6134,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7225256008448, -122.434843129425)",160530909-57 +133350168,E05,13113562,Medical Incident,12/01/2013,12/01/2013,12/01/2013 12:41:16 PM,12/01/2013 12:42:01 PM,12/01/2013 12:42:20 PM,12/01/2013 12:43:04 PM,12/01/2013 12:44:31 PM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,12/01/2013 12:51:39 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7818979587644, -122.428207532186)",133350168-E05 +160061473,63,16002373,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:39:03 AM,01/06/2016 11:39:03 AM,01/06/2016 11:39:26 AM,01/06/2016 11:39:51 AM,01/06/2016 11:46:31 AM,01/06/2016 12:28:48 PM,01/06/2016 12:41:38 PM,Code 2 Transport,01/06/2016 01:18:02 PM,CALL BOX:,San Francisco,94122,B07,12,7743,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7674435201899, -122.460815278551)",160061473-63 +123470003,55,12115865,Medical Incident,12/12/2012,12/11/2012,12/12/2012 12:20:27 AM,12/12/2012 12:21:43 AM,12/12/2012 12:22:03 AM,12/12/2012 12:22:11 AM,12/12/2012 12:33:14 AM,12/12/2012 12:46:26 AM,12/12/2012 01:04:04 AM,Other,12/12/2012 01:27:01 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",123470003-55 +120630370,E23,12020909,Medical Incident,03/03/2012,03/03/2012,03/03/2012 08:44:30 PM,03/03/2012 08:45:12 PM,03/03/2012 08:45:35 PM,03/03/2012 08:46:16 PM,03/03/2012 08:46:17 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/03/2012 09:17:21 PM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",120630370-E23 +121000385,E14,12033313,Traffic Collision,04/09/2012,04/09/2012,04/09/2012 09:49:02 PM,04/09/2012 09:50:59 PM,04/09/2012 09:51:26 PM,04/09/2012 09:52:45 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 09:55:07 PM,PARK PRESIDIO BL/FULTON ST,SF,94118,B07,31,7144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,7,7,1,Golden Gate Park,"(37.7731389469461, -122.471762120845)",121000385-E14 +120740356,E36,12024698,Medical Incident,03/14/2012,03/14/2012,03/14/2012 08:24:54 PM,03/14/2012 08:25:40 PM,03/14/2012 08:25:56 PM,03/14/2012 08:27:05 PM,03/14/2012 08:30:53 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/14/2012 08:48:50 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",120740356-E36 +133130014,E06,13106229,Medical Incident,11/09/2013,11/08/2013,11/09/2013 12:44:58 AM,11/09/2013 12:46:31 AM,11/09/2013 12:46:38 AM,11/09/2013 12:48:28 AM,11/09/2013 12:50:30 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 01:01:55 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",133130014-E06 +110910214,RC3,11030171,Medical Incident,04/01/2011,04/01/2011,04/01/2011 01:52:39 PM,04/01/2011 01:54:59 PM,04/01/2011 01:55:19 PM,04/01/2011 01:56:10 PM,04/01/2011 02:01:29 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Medical Examiner,04/01/2011 02:28:02 PM,2400 Block of 20TH AVE,SF,94116,B08,40,7434,E,E,3,true,,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7420735738087, -122.476628267314)",110910214-RC3 +121280391,B08,12042773,Alarms,05/07/2012,05/07/2012,05/07/2012 09:52:38 PM,05/07/2012 09:52:47 PM,05/07/2012 09:53:07 PM,05/07/2012 09:55:40 PM,05/07/2012 09:59:51 PM,04/25/2016 01:58:47 PM,04/25/2016 01:58:47 PM,Other,05/07/2012 10:07:47 PM,200 Block of MIDDLEFIELD DR,SF,94132,B08,19,8743,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7303132169002, -122.486205438256)",121280391-B08 +120660054,88,12021722,Medical Incident,03/06/2012,03/05/2012,03/06/2012 07:06:52 AM,03/06/2012 07:08:29 AM,03/06/2012 07:08:47 AM,03/06/2012 07:09:22 AM,03/06/2012 07:17:40 AM,03/06/2012 07:34:13 AM,03/06/2012 07:42:47 AM,Code 2 Transport,03/06/2012 08:07:12 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122982509145, -122.473064099314)",120660054-88 +132160139,T13,13072949,Structure Fire,08/04/2013,08/04/2013,08/04/2013 11:55:32 AM,08/04/2013 11:56:42 AM,08/04/2013 11:56:55 AM,08/04/2013 11:58:28 AM,08/04/2013 11:59:51 AM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/04/2013 12:14:51 PM,500 Block of KEARNY ST,SF,94104,B01,13,1244,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7931109185713, -122.404447655569)",132160139-T13 +160892773,KM12,16035420,Medical Incident,03/29/2016,03/29/2016,03/29/2016 05:06:11 PM,03/29/2016 05:06:11 PM,03/29/2016 05:07:22 PM,03/29/2016 05:08:02 PM,03/29/2016 05:13:58 PM,03/29/2016 05:30:32 PM,03/29/2016 05:57:10 PM,Code 2 Transport,03/29/2016 06:32:09 PM,2200 Block of BAKER ST,San Francisco,94115,B04,10,4266,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7916564818768, -122.444498810314)",160892773-KM12 +132730369,E44,13092927,Medical Incident,09/30/2013,09/30/2013,09/30/2013 10:14:45 PM,09/30/2013 10:15:49 PM,09/30/2013 10:16:17 PM,09/30/2013 10:19:20 PM,09/30/2013 10:20:56 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 10:33:58 PM,200 Block of DELTA ST,SF,94134,B09,44,6312,3,3,3,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7154777546454, -122.408391516144)",132730369-E44 +160632550,77,16025154,Medical Incident,03/03/2016,03/03/2016,03/03/2016 04:24:25 PM,03/03/2016 04:24:25 PM,03/03/2016 04:27:25 PM,03/03/2016 04:27:36 PM,03/03/2016 04:39:29 PM,03/03/2016 05:07:13 PM,03/03/2016 05:25:33 PM,Code 2 Transport,03/03/2016 06:03:07 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160632550-77 +110260035,89,11008487,Medical Incident,01/26/2011,01/25/2011,01/26/2011 04:56:54 AM,01/26/2011 04:57:34 AM,01/26/2011 04:58:00 AM,01/26/2011 04:58:09 AM,01/26/2011 05:00:48 AM,01/26/2011 05:09:41 AM,01/26/2011 05:21:34 AM,Code 2 Transport,01/26/2011 05:43:25 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110260035-89 +121360218,AM04,12045232,Medical Incident,05/15/2012,05/15/2012,05/15/2012 02:45:29 PM,05/15/2012 02:45:53 PM,05/15/2012 02:46:15 PM,04/25/2016 01:58:40 PM,05/15/2012 03:07:41 PM,05/15/2012 03:12:42 PM,05/15/2012 03:26:55 PM,Code 2 Transport,05/15/2012 04:12:59 PM,SUNNYDALE AV/HAHN ST,SF,94134,B09,43,6241,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7119145572968, -122.416000281038)",121360218-AM04 +113270112,KM11,11108509,Medical Incident,11/23/2011,11/23/2011,11/23/2011 10:00:03 AM,11/23/2011 10:00:27 AM,11/23/2011 10:01:06 AM,11/23/2011 10:01:50 AM,11/23/2011 10:05:55 AM,11/23/2011 10:23:28 AM,11/23/2011 10:30:52 AM,Code 2 Transport,11/23/2011 11:02:17 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",113270112-KM11 +160621432,65,16024664,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:11:45 AM,03/02/2016 11:15:25 AM,03/02/2016 11:15:33 AM,03/02/2016 11:18:24 AM,03/02/2016 11:33:35 AM,03/02/2016 12:02:02 PM,03/02/2016 12:26:08 PM,Code 2 Transport,03/02/2016 01:10:37 PM,200 Block of TEDDY AVE,San Francisco,94134,B09,44,6311,2,2,2,false,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7149172327739, -122.407517670009)",160621432-65 +160270270,64,16010531,Medical Incident,01/27/2016,01/26/2016,01/27/2016 03:14:02 AM,01/27/2016 03:16:36 AM,01/27/2016 03:16:42 AM,01/27/2016 03:17:43 AM,01/27/2016 03:27:40 AM,01/27/2016 03:46:59 AM,01/27/2016 03:59:19 AM,Code 2 Transport,01/27/2016 04:44:49 AM,1300 Block of 48TH AVE,San Francisco,94122,B08,23,7721,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7612631311559, -122.508063986912)",160270270-64 +160580391,67,16022989,Medical Incident,02/27/2016,02/26/2016,02/27/2016 02:47:20 AM,02/27/2016 02:47:20 AM,02/27/2016 02:57:53 AM,02/27/2016 02:57:59 AM,02/27/2016 03:21:43 AM,02/27/2016 03:36:09 AM,02/27/2016 03:47:28 AM,Code 2 Transport,02/27/2016 04:18:01 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160580391-67 +133120351,B01,13106173,Structure Fire,11/08/2013,11/08/2013,11/08/2013 08:18:00 PM,11/08/2013 08:19:10 PM,11/08/2013 08:22:09 PM,04/25/2016 01:49:51 PM,11/08/2013 08:23:27 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 08:29:49 PM,1500 Block of CHESTNUT ST,SF,94123,B04,16,3341,3,3,3,false,Fire,1,CHIEF,2,4,2,Marina,"(37.8017041769082, -122.428833528089)",133120351-B01 +160640680,AM24,16025395,Medical Incident,03/04/2016,03/03/2016,03/04/2016 07:33:49 AM,03/04/2016 07:33:49 AM,03/04/2016 07:37:39 AM,03/04/2016 07:38:21 AM,03/04/2016 07:42:02 AM,03/04/2016 07:48:45 AM,03/04/2016 07:54:58 AM,Code 2 Transport,03/04/2016 08:15:53 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",160640680-AM24 +160490572,61,16019631,Medical Incident,02/18/2016,02/17/2016,02/18/2016 07:42:06 AM,02/18/2016 07:42:06 AM,02/18/2016 07:43:19 AM,02/18/2016 07:43:37 AM,02/18/2016 07:50:27 AM,02/18/2016 08:07:21 AM,02/18/2016 08:16:14 AM,Code 2 Transport,02/18/2016 09:17:13 AM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",160490572-61 +103090059,E03,10098944,Medical Incident,11/05/2010,11/04/2010,11/05/2010 06:31:40 AM,11/05/2010 06:32:00 AM,11/05/2010 06:32:16 AM,11/05/2010 06:34:22 AM,11/05/2010 06:37:40 AM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Other,11/05/2010 06:41:54 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",103090059-E03 +140660214,81,14022329,Medical Incident,03/07/2014,03/07/2014,03/07/2014 01:12:26 PM,03/07/2014 01:12:45 PM,03/07/2014 01:13:11 PM,03/07/2014 01:13:20 PM,03/07/2014 01:14:35 PM,03/07/2014 01:39:48 PM,03/07/2014 01:47:18 PM,Code 2 Transport,03/07/2014 03:00:16 PM,SAN BRUNO AV/15TH ST,SAN FRANCISCO,94103,B02,29,2352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7672000632781, -122.4057076678)",140660214-81 +140870182,T14,14029275,Medical Incident,03/28/2014,03/28/2014,03/28/2014 12:33:12 PM,03/28/2014 12:33:12 PM,03/28/2014 12:41:32 PM,03/28/2014 12:42:41 PM,03/28/2014 12:47:24 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Medical Examiner,03/28/2014 12:53:25 PM,500 Block of 15TH AVE,SAN FRANCISCO,94118,B07,31,7154,2,2,2,false,Non Life-threatening,1,TRUCK,2,7,1,Outer Richmond,"(37.7777260131845, -122.473696437291)",140870182-T14 +112280183,KM05,11075358,Medical Incident,08/16/2011,08/16/2011,08/16/2011 01:35:17 PM,08/16/2011 01:37:21 PM,08/16/2011 01:39:02 PM,08/16/2011 01:40:39 PM,08/16/2011 01:52:18 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Patient Declined Transport,08/16/2011 01:57:10 PM,900 Block of MARKET ST,SF,94103,B03,1,2247,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",112280183-KM05 +160153629,75,16006164,Medical Incident,01/15/2016,01/15/2016,01/15/2016 08:46:29 PM,01/15/2016 08:48:39 PM,01/15/2016 08:49:59 PM,01/15/2016 08:50:08 PM,01/15/2016 09:03:56 PM,01/15/2016 09:14:32 PM,01/15/2016 09:25:13 PM,Code 2 Transport,01/15/2016 09:47:51 PM,300 Block of POTRERO AVE,San Francisco,94110,B02,29,2416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7651317205291, -122.407546004301)",160153629-75 +160202585,91,16008077,Medical Incident,01/20/2016,01/20/2016,01/20/2016 04:14:35 PM,01/20/2016 04:15:46 PM,01/20/2016 04:17:31 PM,01/20/2016 04:17:40 PM,01/20/2016 04:21:55 PM,01/20/2016 04:39:17 PM,01/20/2016 04:52:08 PM,Code 2 Transport,01/20/2016 05:27:07 PM,4400 Block of MISSION ST,San Francisco,94112,B09,43,6116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7269111586163, -122.433193907155)",160202585-91 +160501243,89,16020041,Medical Incident,02/19/2016,02/19/2016,02/19/2016 10:52:41 AM,02/19/2016 10:54:00 AM,02/19/2016 10:54:17 AM,02/19/2016 10:57:34 AM,02/19/2016 10:57:34 AM,02/19/2016 11:13:18 AM,02/19/2016 11:27:38 AM,Code 2 Transport,02/19/2016 12:12:59 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160501243-89 +110710199,59,11023366,Medical Incident,03/12/2011,03/12/2011,03/12/2011 12:30:57 PM,03/12/2011 12:31:47 PM,03/12/2011 12:32:24 PM,03/12/2011 12:32:30 PM,03/12/2011 12:38:15 PM,03/12/2011 01:01:54 PM,03/12/2011 01:13:46 PM,Code 2 Transport,03/12/2011 01:35:08 PM,600 Block of COLBY ST,SF,94134,B09,42,6344,3,3,3,true,,1,MEDIC,2,9,9,Portola,"(37.7223322748016, -122.411171674482)",110710199-59 +160371209,74,16014617,Medical Incident,02/06/2016,02/06/2016,02/06/2016 09:19:04 AM,02/06/2016 09:20:56 AM,02/06/2016 09:21:33 AM,02/06/2016 09:21:49 AM,02/06/2016 09:27:42 AM,02/06/2016 09:32:29 AM,02/06/2016 09:40:13 AM,Code 2 Transport,02/06/2016 10:13:04 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160371209-74 +121570326,89,12052075,Medical Incident,06/05/2012,06/05/2012,06/05/2012 08:43:29 PM,06/05/2012 08:45:12 PM,06/05/2012 08:45:19 PM,06/05/2012 08:45:28 PM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,Other,06/05/2012 08:50:47 PM,BEACH ST/TAYLOR ST,SF,94133,B01,28,1433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.807275868938, -122.41561643642)",121570326-89 +130400391,85,13013854,Medical Incident,02/09/2013,02/09/2013,02/09/2013 10:54:23 PM,02/09/2013 10:55:25 PM,02/09/2013 10:56:12 PM,02/09/2013 10:57:29 PM,02/09/2013 11:00:09 PM,02/09/2013 11:12:29 PM,02/09/2013 11:21:59 PM,Code 2 Transport,02/09/2013 11:47:54 PM,2400 Block of CLEMENT ST,SF,94121,B07,14,7221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7819452291912, -122.485405658724)",130400391-85 +121480075,85,12049025,Medical Incident,05/27/2012,05/26/2012,05/27/2012 06:49:32 AM,05/27/2012 06:51:38 AM,05/27/2012 06:52:01 AM,05/27/2012 06:52:11 AM,05/27/2012 07:10:06 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,No Merit,05/27/2012 07:30:28 AM,1200 Block of BUSH ST,SF,94109,B04,3,1636,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788955611099, -122.417825829364)",121480075-85 +123490061,E26,12116595,Citizen Assist / Service Call,12/14/2012,12/13/2012,12/14/2012 06:07:00 AM,12/14/2012 06:08:29 AM,12/14/2012 06:09:08 AM,12/14/2012 06:10:43 AM,12/14/2012 06:13:54 AM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Fire,12/14/2012 06:26:37 AM,0 Block of DIGBY ST,SF,94131,B06,26,8117,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7392595025253, -122.432134138648)",123490061-E26 +160602373,50,16023973,Medical Incident,02/29/2016,02/29/2016,02/29/2016 04:10:26 PM,02/29/2016 04:10:57 PM,02/29/2016 04:11:10 PM,02/29/2016 04:11:18 PM,02/29/2016 04:19:12 PM,02/29/2016 04:40:55 PM,02/29/2016 05:00:43 PM,Code 2 Transport,02/29/2016 05:46:55 PM,800 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.779520032299, -122.425195823386)",160602373-50 +140620288,87,14021037,Medical Incident,03/03/2014,03/03/2014,03/03/2014 05:29:16 PM,03/03/2014 05:29:59 PM,03/03/2014 05:32:37 PM,03/03/2014 05:32:37 PM,03/03/2014 05:32:37 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,No Merit,03/03/2014 05:58:17 PM,GENEVA AV/SAN JOSE AV,SF,94112,B09,15,8311,,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",140620288-87 +121240239,RC1,12041202,Medical Incident,05/03/2012,05/03/2012,05/03/2012 03:09:01 PM,05/03/2012 03:10:38 PM,05/03/2012 03:11:23 PM,05/03/2012 03:12:04 PM,05/03/2012 03:16:12 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 03:17:49 PM,LEAVENWORTH ST/POST ST,SF,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7874538432357, -122.414995423077)",121240239-RC1 +110900157,58,11029743,Medical Incident,03/31/2011,03/31/2011,03/31/2011 12:25:37 PM,03/31/2011 12:26:31 PM,03/31/2011 12:26:42 PM,03/31/2011 12:26:51 PM,03/31/2011 12:30:54 PM,03/31/2011 12:48:07 PM,03/31/2011 01:06:19 PM,Code 2 Transport,03/31/2011 01:21:36 PM,FRANKLIN ST/GROVE ST,SF,94102,B02,36,3214,3,2,2,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7780207607813, -122.421520699389)",110900157-58 +112620392,E03,11086629,Medical Incident,09/19/2011,09/19/2011,09/19/2011 09:03:03 PM,09/19/2011 09:04:14 PM,09/19/2011 09:04:27 PM,09/19/2011 09:06:17 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 09:09:50 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",112620392-E03 +120700324,77,12023373,Medical Incident,03/10/2012,03/10/2012,03/10/2012 07:03:37 PM,03/10/2012 07:04:33 PM,03/10/2012 07:05:07 PM,03/10/2012 07:05:34 PM,03/10/2012 07:12:48 PM,03/10/2012 07:29:22 PM,03/10/2012 07:41:22 PM,Code 2 Transport,03/10/2012 08:03:47 PM,GENEVA AV/MUNICH ST,SF,94112,B09,43,6173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7129143737281, -122.432857501565)",120700324-77 +111700053,B04,11055937,Structure Fire,06/19/2011,06/18/2011,06/19/2011 03:39:51 AM,06/19/2011 03:41:04 AM,06/19/2011 03:41:39 AM,04/25/2016 02:04:05 PM,06/19/2011 03:43:48 AM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,Other,06/19/2011 03:52:48 AM,1400 Block of SACRAMENTO ST,SF,94109,B01,41,1563,3,3,3,false,,1,CHIEF,2,1,3,Nob Hill,"(37.7920595166394, -122.41694742808)",111700053-B04 +160810321,KM03,16032033,Medical Incident,03/21/2016,03/20/2016,03/21/2016 03:57:22 AM,03/21/2016 03:57:55 AM,03/21/2016 03:58:21 AM,03/21/2016 03:59:20 AM,03/21/2016 04:05:32 AM,03/21/2016 04:32:46 AM,03/21/2016 04:35:33 AM,Code 2 Transport,03/21/2016 05:17:29 AM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",160810321-KM03 +112530168,E08,11083445,Medical Incident,09/10/2011,09/10/2011,09/10/2011 11:13:44 AM,09/10/2011 11:13:46 AM,09/10/2011 11:14:09 AM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 11:23:09 AM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,5,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",112530168-E08 +123180026,81,12105645,Medical Incident,11/13/2012,11/12/2012,11/13/2012 03:16:59 AM,11/13/2012 03:17:47 AM,11/13/2012 03:18:24 AM,11/13/2012 03:19:46 AM,11/13/2012 03:26:41 AM,11/13/2012 03:52:33 AM,11/13/2012 04:21:20 AM,Code 2 Transport,11/13/2012 04:59:25 AM,0 Block of LUNDYS LN,SF,94110,B06,32,5661,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7443942619371, -122.418617510651)",123180026-81 +160582864,KM01,16023230,Medical Incident,02/27/2016,02/27/2016,02/27/2016 06:05:46 PM,02/27/2016 06:07:41 PM,02/27/2016 06:08:32 PM,02/27/2016 06:09:42 PM,02/27/2016 06:22:07 PM,02/27/2016 06:46:49 PM,02/27/2016 07:09:52 PM,Code 2 Transport,02/27/2016 07:25:59 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160582864-KM01 +110480154,E34,11015846,Medical Incident,02/17/2011,02/17/2011,02/17/2011 11:32:57 AM,02/17/2011 11:33:24 AM,02/17/2011 11:33:56 AM,02/17/2011 11:35:02 AM,02/17/2011 11:36:32 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 11:50:49 AM,500 Block of 47TH AVE,SF,94121,B07,34,7276,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7780563534045, -122.508161525398)",110480154-E34 +140090239,52,14003178,Medical Incident,01/09/2014,01/09/2014,01/09/2014 02:03:08 PM,01/09/2014 02:03:31 PM,01/09/2014 02:04:49 PM,01/09/2014 02:05:24 PM,01/09/2014 02:08:32 PM,01/09/2014 02:26:38 PM,01/09/2014 02:42:44 PM,Code 2 Transport,01/09/2014 03:09:34 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7832777786539, -122.409831752766)",140090239-52 +133420340,E22,13116102,Medical Incident,12/08/2013,12/08/2013,12/08/2013 08:04:13 PM,12/08/2013 08:05:54 PM,12/08/2013 08:06:07 PM,12/08/2013 08:06:54 PM,12/08/2013 08:08:56 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/08/2013 08:18:19 PM,LINCOLN WY/9TH AV,SF,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",133420340-E22 +102980137,AM14,10095117,Medical Incident,10/25/2010,10/25/2010,10/25/2010 10:23:54 AM,10/25/2010 10:24:41 AM,10/25/2010 10:25:06 AM,10/25/2010 10:25:50 AM,10/25/2010 10:28:36 AM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Patient Declined Transport,10/25/2010 10:32:43 AM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.777460008139, -122.418879416566)",102980137-AM14 +130310016,B04,13010430,Structure Fire,01/31/2013,01/30/2013,01/31/2013 01:01:05 AM,01/31/2013 01:04:25 AM,01/31/2013 01:04:41 AM,01/31/2013 01:06:32 AM,01/31/2013 01:06:11 AM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 01:17:00 AM,1300 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Alarm,1,CHIEF,1,5,5,Western Addition,"(37.7818977107871, -122.432353853525)",130310016-B04 +102320032,65,10072902,Medical Incident,08/20/2010,08/19/2010,08/20/2010 03:38:03 AM,08/20/2010 03:38:48 AM,08/20/2010 03:39:09 AM,08/20/2010 03:39:27 AM,08/20/2010 03:52:16 AM,08/20/2010 04:02:26 AM,08/20/2010 04:20:38 AM,Other,08/20/2010 04:58:04 AM,100 Block of BRUNSWICK ST,SF,94112,B09,43,6217,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7115982679368, -122.439870482834)",102320032-65 +133550069,54,13120568,Citizen Assist / Service Call,12/21/2013,12/20/2013,12/21/2013 04:50:25 AM,12/21/2013 04:55:08 AM,12/21/2013 04:55:53 AM,12/21/2013 04:56:56 AM,12/21/2013 05:06:34 AM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,No Merit,12/21/2013 05:24:13 AM,600 Block of 41ST AVE,SF,94121,B07,34,7263,3,3,3,true,Alarm,1,MEDIC,1,7,1,Outer Richmond,"(37.7764556121722, -122.501596303357)",133550069-54 +102810249,E13,10089374,Medical Incident,10/08/2010,10/08/2010,10/08/2010 02:44:21 PM,10/08/2010 02:45:58 PM,10/08/2010 03:05:56 PM,04/25/2016 02:08:12 PM,10/08/2010 03:07:41 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/08/2010 03:21:29 PM,600 Block of LOMBARD ST,SF,94133,B01,28,1346,3,2,2,true,,1,ENGINE,1,1,3,North Beach,"(37.8028765476121, -122.412200636927)",102810249-E13 +112610221,T11,11086176,Alarms,09/18/2011,09/18/2011,09/18/2011 03:22:39 PM,09/18/2011 03:25:00 PM,09/18/2011 03:25:16 PM,09/18/2011 03:27:01 PM,09/18/2011 03:29:23 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,09/18/2011 03:37:19 PM,500 Block of CLIPPER ST,SF,94114,B06,11,5545,3,3,3,false,,1,TRUCK,3,6,8,Noe Valley,"(37.7486412460099, -122.437154038433)",112610221-T11 +112720326,92,11090064,Medical Incident,09/29/2011,09/29/2011,09/29/2011 08:39:09 PM,09/29/2011 08:40:11 PM,09/29/2011 08:40:32 PM,09/29/2011 08:41:21 PM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,Other,04/25/2016 02:02:25 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,3,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",112720326-92 +100340228,B07,10010419,Alarms,02/03/2010,02/03/2010,02/03/2010 02:51:46 PM,02/03/2010 02:52:29 PM,02/03/2010 02:52:41 PM,02/03/2010 02:54:35 PM,04/25/2016 03:24:48 PM,04/25/2016 03:24:48 PM,04/25/2016 03:24:48 PM,Other,02/03/2010 02:58:35 PM,4100 Block of CLEMENT ST,SF,94121,B07,34,7266,3,3,3,false,,1,CHIEF,2,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",100340228-B07 +121880272,T07,12062708,Medical Incident,07/06/2012,07/06/2012,07/06/2012 04:23:24 PM,07/06/2012 04:23:25 PM,07/06/2012 04:23:31 PM,07/06/2012 04:25:22 PM,07/06/2012 04:27:12 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/06/2012 04:27:29 PM,25TH ST/HARRISON ST,SF,94110,B06,7,5533,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,6,9,Mission,"(37.7510338955654, -122.411746226036)",121880272-T07 +121790288,88,12059694,Medical Incident,06/27/2012,06/27/2012,06/27/2012 05:50:56 PM,06/27/2012 05:51:13 PM,06/27/2012 05:52:15 PM,06/27/2012 05:52:21 PM,06/27/2012 05:57:24 PM,06/27/2012 06:10:18 PM,06/27/2012 06:25:33 PM,Code 2 Transport,06/27/2012 06:37:56 PM,GRANT AV/VALLEJO ST,SF,94133,B01,28,1266,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.7987763094991, -122.407206393968)",121790288-88 +131020020,E05,13034144,Medical Incident,04/12/2013,04/11/2013,04/12/2013 02:16:39 AM,04/12/2013 02:18:49 AM,04/12/2013 02:19:08 AM,04/12/2013 02:20:17 AM,04/12/2013 02:23:48 AM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/12/2013 02:32:15 AM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",131020020-E05 +160662105,AM02,16026433,Medical Incident,03/06/2016,03/06/2016,03/06/2016 03:49:13 PM,03/06/2016 03:51:13 PM,03/06/2016 03:52:43 PM,03/06/2016 03:53:26 PM,03/06/2016 03:58:28 PM,03/06/2016 04:10:34 PM,03/06/2016 04:14:03 PM,Code 3 Transport,03/06/2016 04:46:30 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160662105-AM02 +120360155,E32,12011967,Other,02/05/2012,02/05/2012,02/05/2012 10:58:12 AM,02/05/2012 10:58:13 AM,02/05/2012 10:58:13 AM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Fire,02/05/2012 11:04:13 AM,100 Block of 29TH ST,SF,94110,B06,11,5576,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7439450001379, -122.423532422861)",120360155-E32 +103330076,T17,10106498,Administrative,11/29/2010,11/29/2010,11/29/2010 08:52:53 AM,11/29/2010 08:52:55 AM,11/29/2010 08:53:15 AM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Other,11/29/2010 08:54:08 AM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",103330076-T17 +122720063,T02,12089653,Elevator / Escalator Rescue,09/28/2012,09/27/2012,09/28/2012 07:32:57 AM,09/28/2012 07:36:27 AM,09/28/2012 07:36:40 AM,09/28/2012 07:38:35 AM,09/28/2012 07:40:05 AM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/28/2012 07:56:52 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",122720063-T02 +133530324,E13,13120032,Alarms,12/19/2013,12/19/2013,12/19/2013 06:54:26 PM,12/19/2013 06:55:36 PM,12/19/2013 06:56:27 PM,12/19/2013 06:57:14 PM,12/19/2013 07:00:26 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/19/2013 07:02:40 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,B,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7891367799941, -122.40363527458)",133530324-E13 +110540127,E05,11017774,Medical Incident,02/23/2011,02/23/2011,02/23/2011 10:26:40 AM,02/23/2011 10:27:16 AM,02/23/2011 10:27:41 AM,02/23/2011 10:28:27 AM,02/23/2011 10:30:50 AM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/23/2011 10:53:24 AM,800 Block of HAYES ST,SF,94117,B02,5,3522,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",110540127-E05 +103310006,82,10105813,Medical Incident,11/27/2010,11/26/2010,11/27/2010 12:16:10 AM,11/27/2010 12:17:02 AM,11/27/2010 12:17:21 AM,11/27/2010 12:18:01 AM,11/27/2010 12:20:58 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 12:25:27 AM,1600 Block of GREENWICH ST,SF,94123,B04,16,3234,E,E,3,true,,1,MEDIC,2,4,2,Marina,"(37.8001060098232, -122.427227403259)",103310006-82 +132070188,E32,13070082,Medical Incident,07/26/2013,07/26/2013,07/26/2013 01:36:41 PM,07/26/2013 01:37:14 PM,07/26/2013 01:37:32 PM,07/26/2013 01:38:10 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/26/2013 01:42:53 PM,SILVER AV/MISSION ST,SF,94112,B09,32,6113,3,2,2,true,Non Life-threatening,1,ENGINE,3,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",132070188-E32 +122320268,68,12077022,Medical Incident,08/19/2012,08/19/2012,08/19/2012 05:12:47 PM,08/19/2012 05:15:16 PM,08/19/2012 05:16:15 PM,08/19/2012 05:16:25 PM,08/19/2012 05:21:17 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 05:52:29 PM,2000 Block of POLK ST,SF,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",122320268-68 +121990074,55,12066037,Medical Incident,07/17/2012,07/16/2012,07/17/2012 07:12:46 AM,07/17/2012 07:13:33 AM,07/17/2012 07:13:49 AM,07/17/2012 07:17:16 AM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 07:26:24 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,E,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",121990074-55 +111440156,75,11047833,Medical Incident,05/24/2011,05/24/2011,05/24/2011 12:39:54 PM,05/24/2011 12:42:37 PM,05/24/2011 12:43:35 PM,05/24/2011 12:43:54 PM,05/24/2011 12:49:26 PM,05/24/2011 01:09:14 PM,05/24/2011 01:11:25 PM,Code 3 Transport,05/24/2011 01:46:36 PM,2300 Block of BUSH ST,SF,94115,B04,38,3621,3,3,3,true,,1,MEDIC,3,4,5,Pacific Heights,"(37.7867600220292, -122.435937155417)",111440156-75 +160362958,58,16014356,Medical Incident,02/05/2016,02/05/2016,02/05/2016 05:16:34 PM,02/05/2016 05:18:17 PM,02/05/2016 05:18:49 PM,02/05/2016 05:19:15 PM,02/05/2016 05:26:16 PM,02/05/2016 05:42:03 PM,02/05/2016 05:49:23 PM,Code 2 Transport,02/05/2016 06:37:56 PM,1100 Block of OFARRELL ST,San Francisco,94109,B04,3,3261,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7845957801826, -122.42200470349)",160362958-58 +160262020,61,16010322,Medical Incident,01/26/2016,01/26/2016,01/26/2016 01:48:03 PM,01/26/2016 01:48:03 PM,01/26/2016 01:49:27 PM,01/26/2016 01:51:34 PM,01/26/2016 01:57:37 PM,01/26/2016 02:07:22 PM,01/26/2016 02:17:03 PM,Code 2 Transport,01/26/2016 02:34:46 PM,300 Block of POST ST,San Francisco,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7884505799048, -122.407597246833)",160262020-61 +121460028,E25,12048338,Medical Incident,05/25/2012,05/24/2012,05/25/2012 02:33:27 AM,05/25/2012 02:34:28 AM,05/25/2012 02:34:52 AM,05/25/2012 02:36:48 AM,05/25/2012 02:38:29 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Patient Declined Transport,05/25/2012 02:45:48 AM,3RD ST/INNES AV,SF,94124,B10,25,6467,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7395334481561, -122.38903096939)",121460028-E25 +102710031,E24,10085870,Medical Incident,09/28/2010,09/27/2010,09/28/2010 02:53:29 AM,09/28/2010 02:54:04 AM,09/28/2010 02:54:25 AM,09/28/2010 02:56:12 AM,09/28/2010 02:59:43 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 03:22:33 AM,500 Block of CORBETT AVE,SF,94114,B05,24,5274,3,2,2,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7574340530806, -122.444098479895)",102710031-E24 +120100286,T02,12003562,Alarms,01/10/2012,01/10/2012,01/10/2012 06:01:42 PM,01/10/2012 06:03:13 PM,01/10/2012 06:03:32 PM,01/10/2012 06:05:00 PM,01/10/2012 06:07:35 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/10/2012 06:08:56 PM,1200 Block of TAYLOR ST,SF,94108,B01,41,1444,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7938676881599, -122.41298846914)",120100286-T02 +132370187,T17,13079953,Citizen Assist / Service Call,08/25/2013,08/25/2013,08/25/2013 12:52:12 PM,08/25/2013 12:54:47 PM,08/25/2013 12:54:54 PM,08/25/2013 12:56:47 PM,08/25/2013 01:00:44 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Fire,08/25/2013 01:12:19 PM,0 Block of HARBOR RD,SF,94124,B10,17,6633,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",132370187-T17 +102280010,B02,10071642,Medical Incident,08/16/2010,08/15/2010,08/16/2010 12:50:27 AM,08/16/2010 12:50:28 AM,08/16/2010 12:51:02 AM,08/16/2010 12:53:59 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/16/2010 12:55:14 AM,MISSION ST/16TH ST,SF,94103,B02,7,5236,3,E,3,false,,1,CHIEF,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",102280010-B02 +160441033,AM08,16017624,Medical Incident,02/13/2016,02/13/2016,02/13/2016 09:45:22 AM,02/13/2016 09:47:01 AM,02/13/2016 09:47:15 AM,02/13/2016 09:47:44 AM,02/13/2016 10:01:33 AM,02/13/2016 10:10:17 AM,02/13/2016 10:38:23 AM,Code 2 Transport,02/13/2016 10:59:09 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160441033-AM08 +160822501,AM02,16032638,Medical Incident,03/22/2016,03/22/2016,03/22/2016 03:53:26 PM,03/22/2016 03:53:26 PM,03/22/2016 03:57:22 PM,03/22/2016 03:58:15 PM,03/22/2016 04:07:37 PM,03/22/2016 04:26:26 PM,03/22/2016 04:39:33 PM,Code 2 Transport,03/22/2016 05:07:23 PM,4400 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",160822501-AM02 +112840192,E17,11094015,Medical Incident,10/11/2011,10/11/2011,10/11/2011 12:56:40 PM,10/11/2011 12:58:31 PM,10/11/2011 12:59:31 PM,10/11/2011 01:01:18 PM,10/11/2011 01:09:00 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 01:17:58 PM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,2,2,2,true,,1,ENGINE,1,10,9,Portola,"(37.7246523794049, -122.402288649686)",112840192-E17 +103430356,E03,10109995,Medical Incident,12/09/2010,12/09/2010,12/09/2010 07:10:35 PM,12/09/2010 07:11:35 PM,12/09/2010 07:12:13 PM,12/09/2010 07:13:21 PM,12/09/2010 07:15:37 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 07:17:46 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",103430356-E03 +112310099,93,11076207,Medical Incident,08/19/2011,08/19/2011,08/19/2011 09:59:32 AM,08/19/2011 10:00:36 AM,08/19/2011 10:00:47 AM,08/19/2011 10:00:52 AM,08/19/2011 10:07:51 AM,08/19/2011 10:33:46 AM,08/19/2011 10:52:14 AM,Code 2 Transport,08/19/2011 11:27:37 AM,1200 Block of HAMPSHIRE ST,SF,94110,B06,9,5531,3,3,3,true,,1,MEDIC,2,10,9,Mission,"(37.7521125682968, -122.407146114914)",112310099-93 +133280110,E22,13111403,Alarms,11/24/2013,11/24/2013,11/24/2013 09:13:26 AM,11/24/2013 09:14:30 AM,11/24/2013 09:14:37 AM,11/24/2013 09:15:56 AM,11/24/2013 09:18:06 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 09:34:31 AM,1200 Block of IRVING ST,SF,94122,B08,22,7366,3,3,3,true,Alarm,1,ENGINE,1,7,5,Inner Sunset,"(37.7638800636201, -122.471135263814)",133280110-E22 +160211298,64,16008329,Medical Incident,01/21/2016,01/21/2016,01/21/2016 10:50:03 AM,01/21/2016 10:52:52 AM,01/21/2016 10:54:03 AM,01/21/2016 10:54:10 AM,01/21/2016 11:33:25 AM,01/21/2016 11:33:26 AM,01/21/2016 12:11:38 PM,Code 2 Transport,01/21/2016 12:57:54 PM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7976146082072, -122.409164766852)",160211298-64 +132760400,B07,13093912,Structure Fire,10/03/2013,10/03/2013,10/03/2013 10:40:33 PM,10/03/2013 10:41:05 PM,10/03/2013 10:41:21 PM,10/03/2013 10:43:14 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/03/2013 10:46:13 PM,2700 Block of BUSH ST,SF,94115,B04,10,4234,3,3,3,false,Alarm,1,CHIEF,9,4,2,Pacific Heights,"(37.7859173973794, -122.442559256485)",132760400-B07 +120410325,RC3,12013785,Medical Incident,02/10/2012,02/10/2012,02/10/2012 07:25:20 PM,02/10/2012 07:26:04 PM,02/10/2012 07:26:18 PM,02/10/2012 07:28:20 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 07:31:44 PM,2000 Block of PALOU AVE,SF,94124,B10,42,6431,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7387899959241, -122.399272189951)",120410325-RC3 +130220082,RC2,13007505,Medical Incident,01/22/2013,01/22/2013,01/22/2013 08:06:07 AM,01/22/2013 08:09:12 AM,01/22/2013 08:10:55 AM,01/22/2013 08:12:19 AM,01/22/2013 08:14:32 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 08:26:15 AM,100 Block of 15TH AVE,SF,94118,B07,31,7152,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7853074352171, -122.474245097063)",130220082-RC2 +120920102,E41,12030386,Medical Incident,04/01/2012,04/01/2012,04/01/2012 08:06:43 AM,04/01/2012 08:08:15 AM,04/01/2012 08:09:12 AM,04/01/2012 08:10:53 AM,04/01/2012 08:12:49 AM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,Other,04/01/2012 08:29:02 AM,1500 Block of BROADWAY,SF,94109,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",120920102-E41 +132920070,84,13099273,Medical Incident,10/19/2013,10/18/2013,10/19/2013 05:26:21 AM,10/19/2013 05:28:34 AM,10/19/2013 05:29:00 AM,10/19/2013 05:29:25 AM,10/19/2013 05:37:04 AM,10/19/2013 05:52:37 AM,10/19/2013 06:09:55 AM,Code 2 Transport,10/19/2013 06:33:01 AM,500 Block of MOSCOW ST,SF,94112,B09,43,6156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7189576969244, -122.42945072491)",132920070-84 +123110024,88,12103343,Vehicle Fire,11/06/2012,11/05/2012,11/06/2012 02:19:48 AM,11/06/2012 02:21:21 AM,11/06/2012 02:21:56 AM,11/06/2012 02:22:49 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/06/2012 02:27:29 AM,1500 Block of QUESADA AVE,SF,94124,B10,17,6535,3,3,3,false,Fire,1,MEDIC,12,10,10,Bayview Hunters Point,"(37.7318056241754, -122.388624875828)",123110024-88 +120210266,E03,12007192,Structure Fire,01/21/2012,01/21/2012,01/21/2012 03:37:36 PM,01/21/2012 03:38:18 PM,01/21/2012 03:38:54 PM,01/21/2012 03:39:13 PM,01/21/2012 03:40:55 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 04:02:07 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,true,Fire,1,ENGINE,2,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",120210266-E03 +123150213,T05,12104854,Structure Fire,11/10/2012,11/10/2012,11/10/2012 01:56:22 PM,11/10/2012 01:57:03 PM,11/10/2012 01:57:49 PM,11/10/2012 01:58:23 PM,11/10/2012 02:03:13 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 02:05:42 PM,1900 Block of PACIFIC AVE,SF,94109,B04,38,3332,3,3,3,false,Alarm,1,TRUCK,7,4,2,Pacific Heights,"(37.794238248299, -122.42732552674)",123150213-T05 +160550149,84,16021845,Medical Incident,02/24/2016,02/23/2016,02/24/2016 01:26:37 AM,02/24/2016 01:27:04 AM,02/24/2016 01:27:19 AM,02/24/2016 01:27:33 AM,02/24/2016 01:36:55 AM,02/24/2016 02:05:48 AM,02/24/2016 02:16:47 AM,Code 2 Transport,02/24/2016 03:06:11 AM,1400 Block of LA PLAYA,San Francisco,94122,B08,23,7723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7593365475949, -122.509005317749)",160550149-84 +121310084,E28,12043495,Medical Incident,05/10/2012,05/10/2012,05/10/2012 09:13:52 AM,05/10/2012 09:15:05 AM,05/10/2012 09:15:12 AM,05/10/2012 09:15:45 AM,05/10/2012 09:20:51 AM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 09:36:16 AM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",121310084-E28 +102990081,E21,10095394,Alarms,10/26/2010,10/26/2010,10/26/2010 08:04:28 AM,10/26/2010 08:08:26 AM,10/26/2010 08:08:38 AM,10/26/2010 08:12:27 AM,10/26/2010 08:12:52 AM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 08:24:05 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,true,,1,ENGINE,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",102990081-E21 +103510213,E03,10112616,Medical Incident,12/17/2010,12/17/2010,12/17/2010 02:01:02 PM,12/17/2010 02:03:09 PM,12/17/2010 02:03:30 PM,12/17/2010 02:04:30 PM,12/17/2010 02:07:45 PM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,Other,12/17/2010 02:08:00 PM,600 Block of MASON ST,SF,94108,B01,3,1412,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",103510213-E03 +103640184,E02,10116762,Medical Incident,12/30/2010,12/30/2010,12/30/2010 12:22:54 PM,12/30/2010 12:23:59 PM,12/30/2010 12:25:00 PM,12/30/2010 12:25:58 PM,12/30/2010 12:28:44 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/30/2010 12:47:58 PM,200 Block of CHESTNUT ST,SF,94133,B01,28,1254,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8044102456887, -122.407535183574)",103640184-E02 +122930136,T05,12097100,Citizen Assist / Service Call,10/19/2012,10/19/2012,10/19/2012 09:30:35 AM,10/19/2012 09:33:45 AM,10/19/2012 09:34:36 AM,10/19/2012 09:35:44 AM,10/19/2012 09:41:22 AM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 09:42:28 AM,FRANKLIN ST/CALIFORNIA ST,SF,94109,B04,38,3225,3,3,3,false,Alarm,1,TRUCK,1,4,2,Pacific Heights,"(37.7901604705365, -122.423974966155)",122930136-T05 +160243286,62,16009693,Medical Incident,01/24/2016,01/24/2016,01/24/2016 09:19:36 PM,01/24/2016 09:19:36 PM,01/24/2016 09:20:03 PM,01/24/2016 09:20:09 PM,01/24/2016 09:38:23 PM,01/24/2016 10:10:25 PM,01/24/2016 10:12:57 PM,Code 2 Transport,01/24/2016 11:07:01 PM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7848770596387, -122.442348914658)",160243286-62 +113030139,85,11100522,Alarms,10/30/2011,10/29/2011,10/30/2011 06:00:42 AM,10/30/2011 06:00:42 AM,10/30/2011 06:02:54 AM,10/30/2011 06:10:09 AM,10/30/2011 06:12:44 AM,10/30/2011 06:20:51 AM,10/30/2011 06:49:06 AM,Code 2 Transport,10/30/2011 06:57:28 AM,1000 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",113030139-85 +103120336,68,10100172,Medical Incident,11/08/2010,11/08/2010,11/08/2010 09:48:47 PM,11/08/2010 09:50:38 PM,11/08/2010 09:51:37 PM,11/08/2010 09:52:33 PM,04/25/2016 02:07:41 PM,11/08/2010 10:12:58 PM,11/08/2010 10:41:53 PM,Code 2 Transport,11/08/2010 11:13:51 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",103120336-68 +121320313,79,12044029,Medical Incident,05/11/2012,05/11/2012,05/11/2012 06:49:15 PM,05/11/2012 06:52:27 PM,05/11/2012 06:52:50 PM,05/11/2012 06:52:58 PM,05/11/2012 07:08:49 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Patient Declined Transport,05/11/2012 07:25:51 PM,1800 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",121320313-79 +120810274,E44,12026957,Structure Fire,03/21/2012,03/21/2012,03/21/2012 04:17:07 PM,03/21/2012 04:17:07 PM,03/21/2012 04:17:13 PM,03/21/2012 04:18:07 PM,03/21/2012 04:20:46 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Fire,03/21/2012 04:20:56 PM,PAUL AV/EXETER ST,SF,94124,B10,44,6323,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7230361592834, -122.398348115685)",120810274-E44 +133090058,E07,13104968,Medical Incident,11/05/2013,11/04/2013,11/05/2013 06:46:57 AM,11/05/2013 06:47:27 AM,11/05/2013 06:48:54 AM,11/05/2013 06:50:53 AM,11/05/2013 06:54:54 AM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/05/2013 07:07:29 AM,3100 Block of KAMILLE CT,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.748861117995, -122.412087843139)",133090058-E07 +160750927,71,16029640,Medical Incident,03/15/2016,03/15/2016,03/15/2016 09:24:01 AM,03/15/2016 09:27:01 AM,03/15/2016 09:30:21 AM,03/15/2016 09:30:27 AM,03/15/2016 09:41:51 AM,03/15/2016 10:03:34 AM,03/15/2016 10:08:42 AM,Code 2 Transport,03/15/2016 10:39:22 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160750927-71 +130860179,96,13028684,Medical Incident,03/27/2013,03/27/2013,03/27/2013 12:32:22 PM,03/27/2013 12:32:52 PM,03/27/2013 12:35:00 PM,03/27/2013 12:35:10 PM,03/27/2013 12:55:39 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Against Medical Advice,03/27/2013 01:51:38 PM,37TH AV/BALBOA ST,SF,94121,B07,34,7254,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7757154136216, -122.497318725581)",130860179-96 +160192015,83,16007662,Medical Incident,01/19/2016,01/19/2016,01/19/2016 02:05:13 PM,01/19/2016 02:06:36 PM,01/19/2016 02:07:27 PM,01/19/2016 02:07:35 PM,01/19/2016 02:16:27 PM,01/19/2016 02:23:57 PM,01/19/2016 02:31:47 PM,Code 3 Transport,01/19/2016 03:06:36 PM,3600 Block of LYON ST,San Francisco,94123,B04,16,4323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.804271887891, -122.44827840533)",160192015-83 +110660142,E06,11021742,Administrative,03/07/2011,03/07/2011,03/07/2011 11:59:42 AM,03/07/2011 11:59:50 AM,03/07/2011 12:00:16 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,Other,03/07/2011 12:00:48 PM,100 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7671998905043, -122.431083812685)",110660142-E06 +160362561,AM02,16014320,Medical Incident,02/05/2016,02/05/2016,02/05/2016 03:28:00 PM,02/05/2016 03:29:40 PM,02/05/2016 03:30:45 PM,02/05/2016 03:35:48 PM,02/05/2016 03:44:30 PM,02/05/2016 03:51:07 PM,02/05/2016 04:07:40 PM,Code 2 Transport,02/05/2016 04:21:00 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7695797471896, -122.419876917134)",160362561-AM02 +160743590,75,16029475,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:29:59 PM,03/14/2016 08:30:14 PM,03/14/2016 08:30:37 PM,03/14/2016 08:30:45 PM,03/14/2016 08:36:20 PM,03/14/2016 08:49:41 PM,03/14/2016 08:59:41 PM,Code 2 Transport,03/14/2016 09:10:25 PM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7576217212029, -122.418887293065)",160743590-75 +132340306,88,13079103,Medical Incident,08/22/2013,08/22/2013,08/22/2013 07:05:38 PM,08/22/2013 07:06:56 PM,08/22/2013 07:13:35 PM,08/22/2013 07:13:44 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,04/25/2016 01:51:10 PM,0 Block of LESSING ST,SF,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,9,11,Outer Mission,"(37.7085520845526, -122.45562699848)",132340306-88 +112470336,E01,11081578,Medical Incident,09/04/2011,09/04/2011,09/04/2011 07:37:18 PM,09/04/2011 07:37:38 PM,09/04/2011 07:39:22 PM,09/04/2011 07:40:41 PM,09/04/2011 07:42:31 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 07:55:24 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",112470336-E01 +140800014,E36,14026897,Medical Incident,03/21/2014,03/20/2014,03/21/2014 02:00:10 AM,03/21/2014 02:02:04 AM,03/21/2014 02:02:17 AM,03/21/2014 02:04:16 AM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/21/2014 02:09:57 AM,LARKIN ST/GROVE ST,SAN FRANCISCO,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",140800014-E36 +112620168,E29,11086444,Medical Incident,09/19/2011,09/19/2011,09/19/2011 12:02:42 PM,09/19/2011 12:03:09 PM,09/19/2011 12:03:38 PM,09/19/2011 12:04:42 PM,09/19/2011 12:08:09 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 12:13:13 PM,400 Block of RHODE ISLAND ST,SF,94107,B02,29,2422,3,3,3,true,,1,ENGINE,2,2,10,Potrero Hill,"(37.7641381616864, -122.402572368613)",112620168-E29 +103450133,89,10110537,Medical Incident,12/11/2010,12/11/2010,12/11/2010 09:35:09 AM,12/11/2010 09:35:40 AM,12/11/2010 09:36:10 AM,12/11/2010 09:37:48 AM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 09:42:36 AM,SUTTER ST/MASON ST,SF,94102,B01,3,1412,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.789016335554, -122.410242439308)",103450133-89 +103590085,B10,10115146,Gas Leak (Natural and LP Gases),12/25/2010,12/24/2010,12/25/2010 07:11:14 AM,12/25/2010 07:13:32 AM,12/25/2010 07:14:46 AM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 07:41:36 AM,SANTOS ST/BLYTHDALE AV,SF,94134,B09,43,6244,3,3,3,true,,1,CHIEF,2,9,10,Visitacion Valley,"(37.7107319455182, -122.418771841777)",103590085-B10 +112110015,E29,11069497,Vehicle Fire,07/30/2011,07/29/2011,07/30/2011 12:59:51 AM,07/30/2011 01:02:20 AM,07/30/2011 01:03:08 AM,07/30/2011 01:04:35 AM,07/30/2011 01:05:17 AM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,Other,07/30/2011 01:39:45 AM,16TH ST/UTAH ST,SF,94103,B02,29,2421,3,3,3,true,,1,ENGINE,1,2,10,Mission,"(37.7658422720667, -122.406552825622)",112110015-E29 +160220218,63,16008628,Medical Incident,01/22/2016,01/21/2016,01/22/2016 02:04:05 AM,01/22/2016 02:04:05 AM,01/22/2016 02:04:10 AM,01/22/2016 02:04:20 AM,01/22/2016 02:18:26 AM,01/22/2016 02:39:33 AM,01/22/2016 02:39:34 AM,Code 2 Transport,01/22/2016 03:49:16 AM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",160220218-63 +103030105,67,10096734,Medical Incident,10/30/2010,10/30/2010,10/30/2010 08:27:17 AM,10/30/2010 08:28:16 AM,10/30/2010 08:28:38 AM,10/30/2010 08:29:05 AM,10/30/2010 08:32:25 AM,10/30/2010 09:03:44 AM,10/30/2010 09:13:49 AM,Code 2 Transport,10/30/2010 09:45:35 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",103030105-67 +120950360,77,12031633,Medical Incident,04/04/2012,04/04/2012,04/04/2012 11:51:39 PM,04/04/2012 11:53:13 PM,04/04/2012 11:53:28 PM,04/04/2012 11:53:40 PM,04/04/2012 11:57:02 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Medical Examiner,04/05/2012 12:57:39 AM,0 Block of 28TH ST,SF,94110,B06,11,5577,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7455620349301, -122.423383986336)",120950360-77 +160261742,62,16010298,Medical Incident,01/26/2016,01/26/2016,01/26/2016 12:26:45 PM,01/26/2016 12:28:31 PM,01/26/2016 12:28:47 PM,01/26/2016 12:29:03 PM,01/26/2016 12:34:24 PM,01/26/2016 12:47:48 PM,01/26/2016 01:02:58 PM,Code 2 Transport,01/26/2016 01:39:09 PM,ESSEX ST/HARRISON ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851493081511, -122.394099271789)",160261742-62 +131020038,KM07,13034161,Medical Incident,04/12/2013,04/11/2013,04/12/2013 05:00:06 AM,04/12/2013 05:02:36 AM,04/12/2013 05:03:14 AM,04/12/2013 05:03:53 AM,04/12/2013 05:20:13 AM,04/12/2013 05:50:50 AM,04/12/2013 06:01:08 AM,Code 2 Transport,04/12/2013 06:27:10 AM,200 Block of VICTORIA ST,SF,94132,B09,33,8416,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7152017916532, -122.465379533381)",131020038-KM07 +132140172,82,13072251,Medical Incident,08/02/2013,08/02/2013,08/02/2013 12:52:22 PM,08/02/2013 12:52:40 PM,08/02/2013 12:53:14 PM,08/02/2013 12:54:04 PM,08/02/2013 01:00:59 PM,08/02/2013 01:12:16 PM,08/02/2013 01:33:31 PM,Code 2 Transport,08/02/2013 01:59:24 PM,0 Block of SANTOS ST,SF,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7113302525058, -122.418817616056)",132140172-82 +121690282,E43,12056207,Medical Incident,06/17/2012,06/17/2012,06/17/2012 06:50:52 PM,06/17/2012 06:53:26 PM,06/17/2012 06:53:40 PM,06/17/2012 06:55:05 PM,06/17/2012 06:57:49 PM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/17/2012 07:06:01 PM,0 Block of PASADENA ST,SF,94134,B09,43,6246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7088531375362, -122.418959932347)",121690282-E43 +111460195,96,11048491,Medical Incident,05/26/2011,05/26/2011,05/26/2011 02:39:55 PM,05/26/2011 02:39:55 PM,05/26/2011 02:40:25 PM,04/25/2016 02:04:26 PM,05/26/2011 02:50:34 PM,04/25/2016 02:04:26 PM,04/25/2016 02:04:26 PM,Patient Declined Transport,05/26/2011 03:18:31 PM,SLOAT BL/JUNIPERO SERRA BL,SF,94132,B08,39,8555,3,3,3,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7347068117722, -122.471569339996)",111460195-96 +160891824,79,16035331,Traffic Collision,03/29/2016,03/29/2016,03/29/2016 12:47:05 PM,03/29/2016 12:47:05 PM,03/29/2016 12:47:54 PM,03/29/2016 12:48:15 PM,03/29/2016 12:50:12 PM,03/29/2016 01:00:19 PM,03/29/2016 01:29:15 PM,Code 2 Transport,03/29/2016 01:45:17 PM,SUTTER ST/VAN NESS AV,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",160891824-79 +160401324,85,16015983,Traffic Collision,02/09/2016,02/09/2016,02/09/2016 10:51:50 AM,02/09/2016 10:52:20 AM,02/09/2016 10:52:42 AM,02/09/2016 10:52:49 AM,02/09/2016 11:00:03 AM,02/09/2016 11:16:05 AM,02/09/2016 11:20:13 AM,Code 2 Transport,02/09/2016 12:11:48 PM,SAN JOSE AV/RANDALL ST,San Francisco,94110,B06,32,8112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Bernal Heights,"(37.7398692305663, -122.42414715532)",160401324-85 +120210423,T02,12007332,Structure Fire,01/21/2012,01/21/2012,01/21/2012 11:07:43 PM,01/21/2012 11:07:56 PM,01/21/2012 11:08:08 PM,01/21/2012 11:09:32 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/21/2012 11:13:02 PM,BAY ST/POLK ST,SF,94109,B01,28,3134,3,3,3,false,Fire,1,TRUCK,10,1,2,Russian Hill,"(37.8043549238836, -122.423466054216)",120210423-T02 +133130180,88,13106363,Structure Fire,11/09/2013,11/09/2013,11/09/2013 11:27:24 AM,11/09/2013 11:29:03 AM,11/09/2013 11:29:21 AM,11/09/2013 11:29:33 AM,11/09/2013 11:34:02 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 11:36:31 AM,UTAH ST/17TH ST,SF,94110,B02,29,2416,3,3,3,true,Alarm,1,MEDIC,6,2,10,Potrero Hill,"(37.7645476546084, -122.40642915561)",133130180-88 +160780508,79,16030905,Medical Incident,03/18/2016,03/17/2016,03/18/2016 04:57:53 AM,03/18/2016 05:00:26 AM,03/18/2016 05:00:49 AM,03/18/2016 05:00:59 AM,03/18/2016 05:06:59 AM,03/18/2016 05:15:01 AM,03/18/2016 05:20:33 AM,Code 2 Transport,03/18/2016 05:34:08 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160780508-79 +120590219,E11,12019451,Structure Fire,02/28/2012,02/28/2012,02/28/2012 02:49:21 PM,02/28/2012 02:49:21 PM,02/28/2012 02:49:28 PM,02/28/2012 02:50:50 PM,02/28/2012 02:56:13 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Fire,02/28/2012 02:59:03 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Alarm,1,ENGINE,2,6,9,Mission,"(37.7571666434801, -122.416719595074)",120590219-E11 +131180257,KM09,13039760,Medical Incident,04/28/2013,04/28/2013,04/28/2013 04:44:16 PM,04/28/2013 04:44:26 PM,04/28/2013 04:44:53 PM,04/28/2013 04:45:45 PM,04/28/2013 04:53:18 PM,04/28/2013 05:07:04 PM,04/28/2013 05:16:26 PM,Code 2 Transport,04/28/2013 05:36:19 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",131180257-KM09 +160902696,76,16035798,Traffic Collision,03/30/2016,03/30/2016,03/30/2016 04:24:43 PM,03/30/2016 04:26:19 PM,03/30/2016 04:27:43 PM,03/30/2016 04:28:21 PM,03/30/2016 04:36:24 PM,03/30/2016 04:44:54 PM,03/30/2016 04:56:31 PM,Code 2 Transport,03/30/2016 05:44:53 PM,1500 Block of TENNESSEE ST,San Francisco,94107,B10,25,2611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7519401866787, -122.388742848864)",160902696-76 +120110346,T03,12003956,Structure Fire,01/11/2012,01/11/2012,01/11/2012 11:40:40 PM,01/11/2012 11:40:40 PM,01/11/2012 11:40:46 PM,01/11/2012 11:41:47 PM,01/11/2012 11:43:35 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 11:43:41 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",120110346-T03 +160340400,71,16013245,Medical Incident,02/03/2016,02/02/2016,02/03/2016 05:35:27 AM,02/03/2016 05:36:11 AM,02/03/2016 05:39:31 AM,02/03/2016 05:39:31 AM,02/03/2016 05:44:15 AM,02/03/2016 06:01:40 AM,02/03/2016 06:30:08 AM,Code 2 Transport,02/03/2016 06:49:46 AM,1300 Block of INGALLS ST,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7304672300474, -122.382582263214)",160340400-71 +112620107,E03,11086404,Medical Incident,09/19/2011,09/19/2011,09/19/2011 09:43:38 AM,09/19/2011 09:44:13 AM,09/19/2011 09:45:00 AM,09/19/2011 09:48:08 AM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,09/19/2011 09:49:44 AM,1400 Block of PINE ST,SF,94109,B04,3,3122,1,3,3,true,,1,ENGINE,3,4,3,Nob Hill,"(37.7897794249332, -122.419678979482)",112620107-E03 +160774053,52,16030801,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:39:18 PM,03/17/2016 09:39:18 PM,03/17/2016 09:41:24 PM,03/17/2016 09:41:39 PM,03/17/2016 09:50:48 PM,03/17/2016 10:00:48 PM,03/17/2016 10:09:49 PM,Code 2 Transport,03/17/2016 11:25:43 PM,GRANT AV/CALIFORNIA ST,San Francisco,94108,B01,13,1314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",160774053-52 +112460168,AM04,11081100,Medical Incident,09/03/2011,09/03/2011,09/03/2011 12:20:30 PM,09/03/2011 12:23:46 PM,09/03/2011 12:24:05 PM,09/03/2011 12:24:52 PM,09/03/2011 12:26:56 PM,09/03/2011 12:54:02 PM,09/03/2011 01:00:33 PM,Code 3 Transport,09/03/2011 01:22:19 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",112460168-AM04 +160671369,60,16026731,Medical Incident,03/07/2016,03/07/2016,03/07/2016 12:19:38 PM,03/07/2016 12:20:11 PM,03/07/2016 12:20:30 PM,03/07/2016 12:20:43 PM,03/07/2016 12:30:57 PM,03/07/2016 12:42:29 PM,03/07/2016 12:54:03 PM,Code 2 Transport,03/07/2016 01:42:38 PM,0 Block of OSGOOD PL,San Francisco,94133,B01,13,1212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.797851125778, -122.403049095456)",160671369-60 +160061074,57,16002333,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:53:41 AM,01/06/2016 09:55:25 AM,01/06/2016 09:57:19 AM,01/06/2016 09:57:26 AM,01/06/2016 10:11:41 AM,01/06/2016 10:22:08 AM,01/06/2016 10:35:53 AM,Code 2 Transport,01/06/2016 11:04:44 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160061074-57 +123090260,RC3,12102808,Medical Incident,11/04/2012,11/04/2012,11/04/2012 02:19:59 PM,11/04/2012 02:20:13 PM,11/04/2012 02:20:30 PM,11/04/2012 02:22:22 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 02:26:27 PM,500 Block of SAWYER ST,SF,94134,B09,44,6251,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.7106565875609, -122.415453077343)",123090260-RC3 +111660206,E08,11054808,Medical Incident,06/15/2011,06/15/2011,06/15/2011 01:38:50 PM,06/15/2011 01:39:40 PM,06/15/2011 01:40:02 PM,06/15/2011 01:42:42 PM,06/15/2011 01:46:40 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/15/2011 02:17:52 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,2,2,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",111660206-E08 +133520090,84,13119492,Medical Incident,12/18/2013,12/18/2013,12/18/2013 08:11:05 AM,12/18/2013 08:12:19 AM,12/18/2013 08:24:39 AM,12/18/2013 08:24:50 AM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,04/25/2016 01:49:12 PM,200 Block of LELAND AVE,SF,94134,B10,44,6254,1,1,2,true,Non Life-threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7130215958017, -122.408889222653)",133520090-84 +103280103,E31,10105005,Medical Incident,11/24/2010,11/24/2010,11/24/2010 10:13:07 AM,11/24/2010 10:13:38 AM,11/24/2010 10:14:46 AM,11/24/2010 10:16:25 AM,11/24/2010 10:19:18 AM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/24/2010 10:29:34 AM,GEARY BL/6TH AV,SF,94118,B07,31,7127,3,2,2,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7810189207549, -122.464279168827)",103280103-E31 +103120324,E01,10100161,Medical Incident,11/08/2010,11/08/2010,11/08/2010 09:00:04 PM,11/08/2010 09:04:03 PM,11/08/2010 09:04:32 PM,11/08/2010 09:05:57 PM,11/08/2010 09:08:09 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 09:25:55 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",103120324-E01 +111290120,E43,11042608,Traffic Collision,05/09/2011,05/09/2011,05/09/2011 11:11:13 AM,05/09/2011 11:13:55 AM,05/09/2011 11:17:27 AM,05/09/2011 11:18:18 AM,05/09/2011 11:20:36 AM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Other,05/09/2011 11:36:20 AM,GENEVA AV/MUNICH ST,SF,94112,B09,43,6173,2,2,2,false,,1,ENGINE,1,9,11,Excelsior,"(37.7129143737281, -122.432857501565)",111290120-E43 +102320312,E13,10073119,Medical Incident,08/20/2010,08/20/2010,08/20/2010 07:06:43 PM,08/20/2010 07:07:14 PM,08/20/2010 07:07:42 PM,08/20/2010 07:08:47 PM,08/20/2010 07:11:36 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/20/2010 07:26:48 PM,200 Block of KEARNY ST,SF,94108,B01,13,1242,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7900664268691, -122.403819640873)",102320312-E13 +102490157,E11,10078670,Structure Fire,09/06/2010,09/06/2010,09/06/2010 12:54:46 PM,09/06/2010 12:54:46 PM,09/06/2010 12:54:55 PM,09/06/2010 12:55:36 PM,09/06/2010 12:57:36 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Fire,09/06/2010 12:57:57 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",102490157-E11 +82410132,B02,8073841,Other,08/28/2008,08/28/2008,08/28/2008 10:32:00 AM,08/28/2008 10:32:47 AM,08/28/2008 10:33:05 AM,08/28/2008 10:35:48 AM,08/28/2008 10:44:52 AM,04/25/2016 03:32:38 PM,04/25/2016 03:32:38 PM,Other,08/28/2008 11:35:00 AM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,false,,1,CHIEF,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",082410132-B02 +132140258,E36,13072324,Medical Incident,08/02/2013,08/02/2013,08/02/2013 04:07:23 PM,08/02/2013 04:07:31 PM,08/02/2013 04:08:17 PM,08/02/2013 04:09:47 PM,08/02/2013 04:12:10 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 04:26:19 PM,0 Block of 12TH ST,SF,94103,B02,36,5116,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7734277265612, -122.419200287559)",132140258-E36 +110730390,T06,11024184,Elevator / Escalator Rescue,03/14/2011,03/14/2011,03/14/2011 10:11:37 PM,03/14/2011 10:14:47 PM,03/14/2011 10:15:02 PM,03/14/2011 10:16:50 PM,03/14/2011 10:19:56 PM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Fire,03/14/2011 10:46:30 PM,1600 Block of MARKET ST,SF,94102,B02,36,3311,3,3,3,false,,1,TRUCK,1,2,5,Hayes Valley,"(37.7734563328786, -122.421591110968)",110730390-T06 +131250239,E24,13042293,Structure Fire,05/05/2013,05/05/2013,05/05/2013 05:18:00 PM,05/05/2013 05:18:48 PM,05/05/2013 05:19:38 PM,05/05/2013 05:21:24 PM,05/05/2013 05:22:49 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 05:35:42 PM,0 Block of HOMESTEAD ST,SF,94114,B06,24,5517,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7501683501322, -122.439399796245)",131250239-E24 +113470328,56,11115232,Medical Incident,12/13/2011,12/13/2011,12/13/2011 07:12:01 PM,12/13/2011 07:12:52 PM,12/13/2011 07:13:09 PM,12/13/2011 07:13:46 PM,12/13/2011 07:18:20 PM,12/13/2011 07:25:18 PM,12/13/2011 07:36:53 PM,Code 3 Transport,12/13/2011 08:22:41 PM,1400 Block of 33RD AVE,SF,94122,B08,23,7541,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7601018007825, -122.492001290202)",113470328-56 +121100313,KM14,12036489,Medical Incident,04/19/2012,04/19/2012,04/19/2012 06:20:58 PM,04/19/2012 06:23:24 PM,04/19/2012 06:24:23 PM,04/19/2012 06:25:21 PM,04/19/2012 06:31:30 PM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/19/2012 06:54:56 PM,700 Block of 34TH AVE,SF,94121,B07,14,7244,3,3,3,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.774925830371, -122.494105182067)",121100313-KM14 +132330016,85,13078549,Traffic Collision,08/21/2013,08/20/2013,08/21/2013 01:12:05 AM,08/21/2013 01:14:53 AM,08/21/2013 01:15:19 AM,08/21/2013 01:15:52 AM,08/21/2013 01:27:05 AM,08/21/2013 01:39:42 AM,08/21/2013 01:51:04 AM,Code 2 Transport,08/21/2013 02:35:33 AM,200 Block of SAN JOSE AVE,SF,94110,B09,26,8261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7512439644709, -122.421585334305)",132330016-85 +132500313,B08,13084504,Structure Fire,09/07/2013,09/07/2013,09/07/2013 04:39:45 PM,09/07/2013 04:40:40 PM,09/07/2013 04:40:58 PM,09/07/2013 04:42:47 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/07/2013 04:48:28 PM,100 Block of CERRITOS AVE,SF,94127,B09,19,8445,3,3,3,false,Alarm,1,CHIEF,6,9,7,West of Twin Peaks,"(37.7263696286761, -122.470232236225)",132500313-B08 +121200046,KM15,12039716,Medical Incident,04/29/2012,04/28/2012,04/29/2012 01:58:12 AM,04/29/2012 01:59:28 AM,04/29/2012 01:59:43 AM,04/29/2012 02:00:26 AM,04/29/2012 02:03:42 AM,04/29/2012 02:18:20 AM,04/29/2012 02:22:54 AM,Code 2 Transport,04/29/2012 02:49:21 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",121200046-KM15 +160640980,74,16025425,Medical Incident,03/04/2016,03/04/2016,03/04/2016 09:04:00 AM,03/04/2016 09:04:00 AM,03/04/2016 09:04:16 AM,03/04/2016 09:04:26 AM,03/04/2016 09:18:28 AM,03/04/2016 09:21:03 AM,03/04/2016 09:44:31 AM,Code 2 Transport,03/04/2016 10:21:34 AM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",160640980-74 +160021996,AM02,16000773,Medical Incident,01/02/2016,01/02/2016,01/02/2016 03:12:24 PM,01/02/2016 03:14:34 PM,01/02/2016 03:14:54 PM,01/02/2016 03:15:28 PM,01/02/2016 03:19:34 PM,01/02/2016 03:37:14 PM,01/02/2016 03:58:26 PM,Code 2 Transport,01/02/2016 04:18:30 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160021996-AM02 +160702730,76,16027945,Medical Incident,03/10/2016,03/10/2016,03/10/2016 05:37:45 PM,03/10/2016 05:38:02 PM,03/10/2016 05:38:23 PM,03/10/2016 05:39:02 PM,03/10/2016 05:59:51 PM,03/10/2016 05:59:53 PM,03/10/2016 06:36:24 PM,Code 2 Transport,03/10/2016 07:09:16 PM,2500 Block of 23RD AV,San Francisco,94116,B08,40,7442,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7400685758644, -122.479713963332)",160702730-76 +140410090,68,14013843,Traffic Collision,02/10/2014,02/10/2014,02/10/2014 08:27:30 AM,02/10/2014 08:29:04 AM,02/10/2014 08:29:49 AM,02/10/2014 08:30:17 AM,02/10/2014 08:33:37 AM,02/10/2014 08:56:59 AM,02/10/2014 09:16:19 AM,Code 2 Transport,02/10/2014 10:07:27 AM,MARKET ST/5TH ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",140410090-68 +112470167,E17,11081430,Medical Incident,09/04/2011,09/04/2011,09/04/2011 10:50:02 AM,09/04/2011 10:50:33 AM,09/04/2011 10:50:44 AM,09/04/2011 10:51:15 AM,09/04/2011 10:54:45 AM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Other,09/04/2011 10:55:22 AM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,E,E,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.730710372177, -122.375579669518)",112470167-E17 +160013268,67,16000468,Medical Incident,01/01/2016,01/01/2016,01/01/2016 07:17:59 PM,01/01/2016 07:18:08 PM,01/01/2016 07:18:47 PM,01/01/2016 07:20:21 PM,01/01/2016 07:24:11 PM,01/01/2016 07:41:48 PM,01/01/2016 07:46:23 PM,Code 2 Transport,01/01/2016 08:21:42 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160013268-67 +140040325,RC3,14001582,Medical Incident,01/04/2014,01/04/2014,01/04/2014 07:49:43 PM,01/04/2014 07:51:06 PM,01/04/2014 07:51:56 PM,01/04/2014 07:52:43 PM,01/04/2014 08:00:00 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,Other,01/04/2014 08:56:45 PM,300 Block of WEST PORTAL AVE,SF,94127,B08,39,8561,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,8,7,West of Twin Peaks,"(37.7373722059796, -122.469939861606)",140040325-RC3 +140030323,RS1,14001162,Medical Incident,01/03/2014,01/03/2014,01/03/2014 04:58:35 PM,01/03/2014 04:59:12 PM,01/03/2014 04:59:38 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,Other,01/03/2014 05:01:05 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",140030323-RS1 +140110011,T07,14003701,Structure Fire,01/11/2014,01/10/2014,01/11/2014 12:23:07 AM,01/11/2014 12:23:07 AM,01/11/2014 12:23:15 AM,01/11/2014 12:23:58 AM,01/11/2014 12:24:01 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Fire,01/11/2014 12:24:22 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",140110011-T07 +120920315,E15,12030568,Medical Incident,04/01/2012,04/01/2012,04/01/2012 05:51:37 PM,04/01/2012 05:52:33 PM,04/01/2012 05:53:41 PM,04/01/2012 05:54:36 PM,04/01/2012 05:57:39 PM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,Other,04/01/2012 06:07:44 PM,0 Block of SAN FELIPE AVE,SF,94127,B09,15,8547,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7314812018322, -122.462473997503)",120920315-E15 +160751676,88,16029705,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:36:16 PM,03/15/2016 12:37:55 PM,03/15/2016 12:38:28 PM,03/15/2016 12:44:26 PM,03/15/2016 12:47:08 PM,03/15/2016 12:51:33 PM,03/15/2016 01:26:31 PM,Code 2 Transport,03/15/2016 02:02:06 PM,1700 Block of WALLACE AV,San Francisco,94124,B10,17,6536,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7286268943936, -122.393299533378)",160751676-88 +110580162,83,11019064,Medical Incident,02/27/2011,02/27/2011,02/27/2011 11:43:11 AM,02/27/2011 11:43:31 AM,02/27/2011 11:43:47 AM,02/27/2011 11:44:09 AM,02/27/2011 11:47:38 AM,02/27/2011 12:14:22 PM,02/27/2011 12:32:59 PM,Code 2 Transport,02/27/2011 12:58:22 PM,2100 Block of 17TH AVE,SF,94116,B08,40,7375,3,3,3,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.747809820377, -122.473811815135)",110580162-83 +110860019,E36,11028238,Medical Incident,03/27/2011,03/26/2011,03/27/2011 12:39:31 AM,03/27/2011 12:39:50 AM,03/27/2011 12:40:27 AM,03/27/2011 12:40:41 AM,03/27/2011 12:43:20 AM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/27/2011 01:08:09 AM,HOWARD ST/9TH ST,SF,94103,B02,36,2335,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",110860019-E36 +132980265,RC1,13101270,Medical Incident,10/25/2013,10/25/2013,10/25/2013 04:29:41 PM,10/25/2013 04:30:44 PM,10/25/2013 04:38:58 PM,04/25/2016 01:50:06 PM,10/25/2013 04:42:36 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 04:46:41 PM,700 Block of MONTGOMERY ST,SF,94111,B01,13,1232,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7959659233971, -122.403475165635)",132980265-RC1 +120430339,99,12014540,Medical Incident,02/12/2012,02/12/2012,02/12/2012 11:10:31 PM,02/12/2012 11:10:54 PM,02/12/2012 11:11:22 PM,02/12/2012 11:12:02 PM,02/12/2012 11:16:59 PM,02/12/2012 11:31:43 PM,02/12/2012 11:38:42 PM,Code 2 Transport,02/13/2012 12:11:03 AM,STATES ST/LEVANT ST,SF,94114,B05,6,5175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7650027194618, -122.442317300917)",120430339-99 +160503944,60,16020293,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:19:45 PM,02/19/2016 11:21:49 PM,02/19/2016 11:22:06 PM,02/19/2016 11:22:18 PM,02/19/2016 11:30:26 PM,02/19/2016 11:59:41 PM,02/20/2016 12:22:53 AM,Code 2 Transport,02/20/2016 01:17:39 AM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160503944-60 +112780324,AM08,11092147,Traffic Collision,10/05/2011,10/05/2011,10/05/2011 07:34:02 PM,10/05/2011 07:34:02 PM,10/05/2011 07:34:33 PM,10/05/2011 08:29:26 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 08:35:30 PM,LINCOLN WY/25TH AV,SF,94122,B08,22,7452,3,3,3,false,,1,PRIVATE,8,8,1,Golden Gate Park,"(37.7651601782916, -122.48368543575)",112780324-AM08 +123260341,E01,12108598,Medical Incident,11/21/2012,11/21/2012,11/21/2012 11:47:56 PM,11/21/2012 11:48:37 PM,11/21/2012 11:48:53 PM,11/21/2012 11:51:40 PM,11/21/2012 11:54:06 PM,04/25/2016 01:55:41 PM,04/25/2016 01:55:41 PM,Other,11/22/2012 12:03:34 AM,600 Block of NATOMA ST,SF,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7774997276449, -122.410999268699)",123260341-E01 +132180039,E14,13073504,Medical Incident,08/06/2013,08/05/2013,08/06/2013 04:06:19 AM,08/06/2013 04:07:33 AM,08/06/2013 04:07:50 AM,08/06/2013 04:09:31 AM,08/06/2013 04:12:08 AM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 04:48:40 AM,300 Block of 24TH AVE,SF,94121,B07,14,7174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7830006442599, -122.483939034671)",132180039-E14 +160782022,AM08,16031031,Medical Incident,03/18/2016,03/18/2016,03/18/2016 01:44:01 PM,03/18/2016 01:45:06 PM,03/18/2016 01:45:32 PM,03/18/2016 01:45:50 PM,03/18/2016 01:58:03 PM,03/18/2016 02:30:14 PM,03/18/2016 03:02:58 PM,Code 2 Transport,03/18/2016 03:40:06 PM,600 Block of 18TH AVE,San Francisco,94121,B07,31,7157,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7757145343646, -122.476828115824)",160782022-AM08 +103350317,RC3,10107297,Medical Incident,12/01/2010,12/01/2010,12/01/2010 08:22:15 PM,12/01/2010 08:22:15 PM,12/01/2010 08:22:38 PM,04/25/2016 02:07:20 PM,12/01/2010 08:31:03 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/01/2010 08:37:37 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,RESCUE CAPTAIN,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",103350317-RC3 +131260283,67,13042642,Medical Incident,05/06/2013,05/06/2013,05/06/2013 03:50:55 PM,05/06/2013 03:52:38 PM,05/06/2013 03:53:17 PM,05/06/2013 03:53:42 PM,05/06/2013 04:01:52 PM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,No Merit,05/06/2013 04:08:14 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7643732096664, -122.417478491468)",131260283-67 +160842201,86,16033415,Medical Incident,03/24/2016,03/24/2016,03/24/2016 02:02:07 PM,03/24/2016 02:02:07 PM,03/24/2016 02:03:03 PM,03/24/2016 02:03:12 PM,03/24/2016 02:06:05 PM,03/24/2016 02:13:21 PM,03/24/2016 02:23:48 PM,Code 2 Transport,03/24/2016 03:09:58 PM,500 Block of STEVENSON ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7809266852586, -122.410870424137)",160842201-86 +112900410,E07,11096400,Medical Incident,10/17/2011,10/17/2011,10/17/2011 10:04:58 PM,10/17/2011 10:07:38 PM,10/17/2011 10:08:25 PM,10/17/2011 10:11:26 PM,10/17/2011 10:12:35 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/17/2011 10:28:20 PM,0 Block of HOFF ST,SF,94110,B02,7,5236,3,2,2,true,,1,ENGINE,2,2,9,Mission,"(37.7641819463712, -122.420575720933)",112900410-E07 +122290051,77,12075773,Medical Incident,08/16/2012,08/15/2012,08/16/2012 06:18:08 AM,08/16/2012 06:20:30 AM,08/16/2012 06:21:07 AM,08/16/2012 06:21:35 AM,08/16/2012 06:29:02 AM,08/16/2012 06:42:36 AM,08/16/2012 06:58:00 AM,Code 2 Transport,08/16/2012 07:10:57 AM,800 Block of CLAY ST,SF,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7942850258424, -122.406574058341)",122290051-77 +122230168,T01,12073914,Structure Fire,08/10/2012,08/10/2012,08/10/2012 12:13:42 PM,08/10/2012 12:13:42 PM,08/10/2012 12:13:53 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 12:17:59 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122230168-T01 +120420033,88,12013904,Medical Incident,02/11/2012,02/10/2012,02/11/2012 01:53:30 AM,02/11/2012 01:54:57 AM,02/11/2012 01:57:38 AM,02/11/2012 01:57:47 AM,02/11/2012 02:06:25 AM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Unable to Locate,02/11/2012 02:08:40 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",120420033-88 +113270357,55,11108716,Medical Incident,11/23/2011,11/23/2011,11/23/2011 11:29:40 PM,11/23/2011 11:32:16 PM,11/23/2011 11:32:29 PM,11/23/2011 11:34:37 PM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 11:35:34 PM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,MEDIC,3,5,5,Inner Sunset,"(37.7624959683458, -122.452233181923)",113270357-55 +102240351,E11,10070692,Alarms,08/12/2010,08/12/2010,08/12/2010 11:11:22 PM,08/12/2010 11:13:27 PM,08/12/2010 11:13:48 PM,04/25/2016 02:09:06 PM,08/12/2010 11:18:47 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Fire,08/12/2010 11:15:49 PM,3800 Block of 20TH ST,SF,94114,B06,11,5444,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7581030303289, -122.426903244614)",102240351-E11 +160661340,88,16026366,Medical Incident,03/06/2016,03/06/2016,03/06/2016 12:07:51 PM,03/06/2016 12:08:31 PM,03/06/2016 12:08:55 PM,03/06/2016 12:09:03 PM,03/06/2016 12:13:04 PM,03/06/2016 12:32:50 PM,03/06/2016 12:43:29 PM,Code 2 Transport,03/06/2016 01:12:08 PM,1100 Block of GOUGH ST,San Francisco,94109,B04,3,3261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.784358514886, -122.424559253604)",160661340-88 +121820091,88,12060529,Medical Incident,06/30/2012,06/29/2012,06/30/2012 07:22:16 AM,06/30/2012 07:24:26 AM,06/30/2012 07:28:29 AM,06/30/2012 07:30:16 AM,04/25/2016 01:57:57 PM,06/30/2012 07:54:26 AM,06/30/2012 08:23:02 AM,Code 2 Transport,06/30/2012 08:36:46 AM,MARINA BL/FILLMORE ST,SF,94123,B04,16,3561,1,1,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8064017799399, -122.437461293752)",121820091-88 +121750026,88,12057964,Medical Incident,06/23/2012,06/22/2012,06/23/2012 01:48:20 AM,06/23/2012 01:48:54 AM,06/23/2012 01:49:08 AM,06/23/2012 01:49:14 AM,06/23/2012 01:59:08 AM,06/23/2012 02:10:37 AM,06/23/2012 02:29:03 AM,Code 2 Transport,06/23/2012 02:47:58 AM,2100 Block of FILBERT ST,SF,94123,B04,16,3462,2,2,2,false,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7980713649895, -122.434846001062)",121750026-88 +113220100,KM04,11106890,Structure Fire,11/18/2011,11/18/2011,11/18/2011 09:06:57 AM,11/18/2011 09:06:57 AM,11/18/2011 09:07:15 AM,04/25/2016 02:01:35 PM,11/18/2011 09:17:29 AM,11/18/2011 09:25:51 AM,11/18/2011 09:34:18 AM,Code 2 Transport,11/18/2011 09:56:48 AM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",113220100-KM04 +113240167,E07,11107602,Medical Incident,11/20/2011,11/20/2011,11/20/2011 01:02:24 PM,11/20/2011 01:04:21 PM,11/20/2011 01:04:35 PM,11/20/2011 01:04:55 PM,11/20/2011 01:08:31 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 01:24:16 PM,3200 Block of 26TH ST,SF,94110,B06,7,5614,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7491990535295, -122.414593171104)",113240167-E07 +160621133,AM02,16024635,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:08:24 AM,03/02/2016 10:10:40 AM,03/02/2016 10:11:02 AM,03/02/2016 10:11:58 AM,03/02/2016 10:22:37 AM,03/02/2016 10:38:04 AM,03/02/2016 10:57:44 AM,Code 2 Transport,03/02/2016 11:26:34 AM,500 Block of MARKET ST,San Francisco,94105,B03,1,2144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",160621133-AM02 +133410309,RC3,13115729,Medical Incident,12/07/2013,12/07/2013,12/07/2013 06:38:42 PM,12/07/2013 06:39:35 PM,12/07/2013 06:40:14 PM,12/07/2013 06:41:40 PM,12/07/2013 07:11:31 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/07/2013 07:15:56 PM,0 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",133410309-RC3 +121620180,T13,12053621,Medical Incident,06/10/2012,06/10/2012,06/10/2012 11:48:28 AM,06/10/2012 11:48:28 AM,06/10/2012 11:48:28 AM,06/10/2012 11:51:31 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 11:51:40 AM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,2,2,2,false,Non Life-threatening,1,TRUCK,6,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",121620180-T13 +110660231,55,11021814,Medical Incident,03/07/2011,03/07/2011,03/07/2011 03:36:32 PM,03/07/2011 03:38:18 PM,03/07/2011 03:39:07 PM,03/07/2011 03:41:55 PM,03/07/2011 03:43:56 PM,03/07/2011 04:02:04 PM,03/07/2011 04:10:07 PM,Code 2 Transport,03/07/2011 04:22:27 PM,2700 Block of MORAGA ST,SF,94122,B08,18,7562,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7553673057148, -122.492136264121)",110660231-55 +160432262,AM12,16017351,Medical Incident,02/12/2016,02/12/2016,02/12/2016 03:21:44 PM,02/12/2016 03:23:01 PM,02/12/2016 03:23:25 PM,02/12/2016 03:24:01 PM,02/12/2016 03:29:40 PM,02/12/2016 03:51:09 PM,02/12/2016 04:03:07 PM,Code 2 Transport,02/12/2016 04:28:55 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160432262-AM12 +160013729,78,16000522,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:02:07 PM,01/01/2016 10:05:57 PM,01/01/2016 10:06:24 PM,01/01/2016 10:06:35 PM,01/01/2016 10:08:59 PM,01/01/2016 10:23:39 PM,01/01/2016 10:32:22 PM,Code 2 Transport,01/01/2016 11:10:43 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160013729-78 +131390222,88,13047029,Medical Incident,05/19/2013,05/19/2013,05/19/2013 12:41:00 PM,05/19/2013 12:41:38 PM,05/19/2013 12:42:48 PM,05/19/2013 12:43:19 PM,05/19/2013 12:50:08 PM,05/19/2013 01:02:50 PM,05/19/2013 01:36:23 PM,Code 2 Transport,05/19/2013 02:04:18 PM,22ND ST/SHOTWELL ST,SF,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7556341092499, -122.415473276099)",131390222-88 +160751907,52,16029726,Medical Incident,03/15/2016,03/15/2016,03/15/2016 01:30:04 PM,03/15/2016 01:31:43 PM,03/15/2016 01:33:16 PM,03/15/2016 01:33:31 PM,03/15/2016 01:50:27 PM,03/15/2016 02:07:34 PM,03/15/2016 02:14:28 PM,Code 2 Transport,03/15/2016 02:54:11 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7842371111665, -122.440760813886)",160751907-52 +112990229,E14,11099216,Medical Incident,10/26/2011,10/26/2011,10/26/2011 02:33:13 PM,10/26/2011 02:33:30 PM,10/26/2011 02:33:56 PM,10/26/2011 02:37:58 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 02:43:14 PM,4600 Block of BALBOA ST,SF,94121,B07,34,7312,3,3,3,true,,1,ENGINE,3,7,1,Outer Richmond,"(37.7751464145485, -122.508554189237)",112990229-E14 +160153965,55,16006196,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:30:55 PM,01/15/2016 10:30:55 PM,01/15/2016 10:31:10 PM,01/15/2016 10:31:18 PM,01/15/2016 10:39:35 PM,01/15/2016 11:06:15 PM,01/15/2016 11:12:22 PM,Code 2 Transport,01/16/2016 12:11:21 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160153965-55 +132540435,67,13086029,Medical Incident,09/11/2013,09/11/2013,09/11/2013 10:59:49 PM,09/11/2013 11:00:04 PM,09/11/2013 11:00:24 PM,09/11/2013 11:00:29 PM,09/11/2013 11:05:06 PM,04/25/2016 01:50:50 PM,04/25/2016 01:50:50 PM,No Merit,09/11/2013 11:10:35 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,false,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",132540435-67 +130950109,RC1,13031745,Medical Incident,04/05/2013,04/05/2013,04/05/2013 09:33:54 AM,04/05/2013 09:38:35 AM,04/05/2013 09:38:55 AM,04/05/2013 09:39:02 AM,04/05/2013 09:44:12 AM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,Other,04/05/2013 09:44:23 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",130950109-RC1 +112830348,E09,11093829,Medical Incident,10/10/2011,10/10/2011,10/10/2011 09:21:17 PM,10/10/2011 09:23:13 PM,10/10/2011 09:23:40 PM,10/10/2011 09:25:46 PM,10/10/2011 09:27:03 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 09:31:06 PM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,3,3,true,,1,ENGINE,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",112830348-E09 +102760180,55,10087732,Medical Incident,10/03/2010,10/03/2010,10/03/2010 11:59:57 AM,10/03/2010 12:02:26 PM,10/03/2010 12:27:04 PM,10/03/2010 12:27:20 PM,10/03/2010 12:41:06 PM,10/03/2010 12:59:47 PM,10/03/2010 01:05:48 PM,Code 2 Transport,10/03/2010 01:31:09 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7829835080746, -122.406698577014)",102760180-55 +131840373,85,13062858,Medical Incident,07/03/2013,07/03/2013,07/03/2013 09:55:49 PM,07/03/2013 09:57:53 PM,07/03/2013 09:59:55 PM,07/03/2013 10:00:00 PM,07/03/2013 10:12:05 PM,07/03/2013 10:27:31 PM,07/03/2013 10:43:41 PM,Code 2 Transport,07/03/2013 11:13:00 PM,800 Block of FOLSOM ST,SF,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811056901316, -122.402224662374)",131840373-85 +160473295,88,16019084,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:36:26 PM,02/16/2016 07:36:26 PM,02/16/2016 07:41:02 PM,02/16/2016 07:41:10 PM,02/16/2016 07:59:39 PM,02/16/2016 08:19:03 PM,02/16/2016 08:34:44 PM,Code 2 Transport,02/16/2016 09:43:29 PM,400 Block of JOOST AVE,San Francisco,94127,B09,15,8235,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7323967002022, -122.445452946638)",160473295-88 +123270198,T05,12108773,Structure Fire,11/22/2012,11/22/2012,11/22/2012 02:58:01 PM,11/22/2012 02:58:01 PM,11/22/2012 02:58:23 PM,11/22/2012 02:59:22 PM,04/25/2016 01:55:41 PM,04/25/2016 01:55:41 PM,04/25/2016 01:55:41 PM,Other,11/22/2012 03:01:07 PM,FILLMORE ST/GEARY BL,SF,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",123270198-T05 +130180074,AM02,13006052,Medical Incident,01/18/2013,01/17/2013,01/18/2013 06:45:51 AM,01/18/2013 06:46:16 AM,01/18/2013 06:46:24 AM,01/18/2013 06:47:25 AM,01/18/2013 07:02:31 AM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,Other,01/18/2013 07:35:50 AM,800 Block of LA PLAYA,SF,94121,B07,34,7311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",130180074-AM02 +103080327,E01,10098809,Alarms,11/04/2010,11/04/2010,11/04/2010 06:26:33 PM,11/04/2010 06:26:33 PM,11/04/2010 06:27:21 PM,11/04/2010 06:27:53 PM,11/04/2010 06:30:06 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 06:30:38 PM,MAIN ST/MISSION ST,SF,94105,B03,35,2116,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",103080327-E01 +123500345,B07,12117182,Medical Incident,12/15/2012,12/15/2012,12/15/2012 09:29:22 PM,12/15/2012 09:30:27 PM,12/15/2012 09:30:54 PM,12/15/2012 09:32:17 PM,12/15/2012 09:37:59 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/15/2012 09:47:25 PM,CLAYTON ST/FELL ST,SF,94117,B05,21,4523,E,E,3,false,Potentially Life-Threatening,1,CHIEF,4,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",123500345-B07 +140390225,E08,14013221,Citizen Assist / Service Call,02/08/2014,02/08/2014,02/08/2014 02:56:30 PM,02/08/2014 02:57:35 PM,02/08/2014 02:58:45 PM,02/08/2014 03:00:01 PM,02/08/2014 03:02:37 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/08/2014 04:21:27 PM,400 Block of 5TH ST,SF,94107,B03,8,2242,,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7781649349602, -122.40085398952)",140390225-E08 +102820366,E15,10089845,Vehicle Fire,10/09/2010,10/09/2010,10/09/2010 08:01:59 PM,10/09/2010 08:02:41 PM,10/09/2010 08:02:51 PM,04/25/2016 02:08:11 PM,10/09/2010 08:09:22 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 08:09:30 PM,MONTEREY BL/BADEN ST,SF,94131,B09,26,8214,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7315842265728, -122.439742767482)",102820366-E15 +111180154,E01,11038898,Alarms,04/28/2011,04/28/2011,04/28/2011 12:09:53 PM,04/28/2011 12:11:12 PM,04/28/2011 12:11:26 PM,04/28/2011 12:12:59 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 12:14:15 PM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",111180154-E01 +113570342,E44,11118722,Medical Incident,12/23/2011,12/23/2011,12/23/2011 04:39:49 PM,12/23/2011 04:40:58 PM,12/23/2011 04:41:10 PM,12/23/2011 04:42:25 PM,12/23/2011 04:46:17 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 05:02:01 PM,200 Block of ARGONAUT AVE,SF,94134,B09,44,6248,3,2,2,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7107197085034, -122.414620256792)",113570342-E44 +120690292,E22,12022985,Medical Incident,03/09/2012,03/09/2012,03/09/2012 06:10:18 PM,03/09/2012 06:15:24 PM,03/09/2012 06:20:47 PM,03/09/2012 06:27:45 PM,03/09/2012 06:27:48 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:29:50 PM,46TH AV/TARAVAL ST,SF,94116,B08,18,7665,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7417646821826, -122.504620445391)",120690292-E22 +160861287,KM08,16034132,Medical Incident,03/26/2016,03/26/2016,03/26/2016 11:01:00 AM,03/26/2016 11:02:17 AM,03/26/2016 11:02:36 AM,03/26/2016 11:03:10 AM,03/26/2016 11:18:31 AM,03/26/2016 11:36:03 AM,03/26/2016 11:47:31 AM,Code 3 Transport,03/26/2016 12:28:23 PM,0 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",160861287-KM08 +130340323,66,13011738,Medical Incident,02/03/2013,02/03/2013,02/03/2013 07:57:43 PM,02/03/2013 08:00:40 PM,02/03/2013 08:01:07 PM,02/03/2013 08:01:16 PM,02/03/2013 08:10:54 PM,02/03/2013 08:26:14 PM,02/03/2013 08:39:34 PM,Code 2 Transport,02/03/2013 09:14:45 PM,PIERCE ST/CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8004034299938, -122.439504170635)",130340323-66 +160374179,AM22,16014982,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:16:15 PM,02/06/2016 11:16:48 PM,02/06/2016 11:17:27 PM,02/06/2016 11:18:34 PM,02/06/2016 11:29:20 PM,02/06/2016 11:37:33 PM,02/06/2016 11:51:04 PM,Code 2 Transport,02/07/2016 12:27:36 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",160374179-AM22 +160122540,52,16004842,Medical Incident,01/12/2016,01/12/2016,01/12/2016 04:21:03 PM,01/12/2016 04:22:56 PM,01/12/2016 04:23:49 PM,01/12/2016 04:23:57 PM,01/12/2016 04:29:35 PM,01/12/2016 04:56:35 PM,01/12/2016 05:05:51 PM,Code 2 Transport,01/12/2016 05:27:36 PM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",160122540-52 +122130351,KM07,12070844,Medical Incident,07/31/2012,07/31/2012,07/31/2012 10:11:01 PM,07/31/2012 10:13:12 PM,07/31/2012 10:17:17 PM,07/31/2012 10:19:54 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 10:20:20 PM,0 Block of MADRONE AVE,SF,94127,B08,39,8616,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7424759358978, -122.46714430332)",122130351-KM07 +102380065,E36,10074980,Structure Fire,08/26/2010,08/25/2010,08/26/2010 07:10:06 AM,08/26/2010 07:12:49 AM,08/26/2010 07:13:03 AM,08/26/2010 07:14:11 AM,08/26/2010 07:17:29 AM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/26/2010 07:24:36 AM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,5,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",102380065-E36 +160620609,79,16024590,Traffic Collision,03/02/2016,03/01/2016,03/02/2016 07:38:32 AM,03/02/2016 07:38:32 AM,03/02/2016 07:38:56 AM,03/02/2016 07:39:07 AM,03/02/2016 07:56:37 AM,03/02/2016 08:08:20 AM,03/02/2016 08:14:43 AM,Code 2 Transport,03/02/2016 08:45:08 AM,PARK PRESIDIO BL/FULTON ST,San Francisco,94118,B07,31,7144,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7731389469461, -122.471762120845)",160620609-79 +120540198,T03,12017835,Structure Fire,02/23/2012,02/23/2012,02/23/2012 02:02:46 PM,02/23/2012 02:02:46 PM,02/23/2012 02:03:46 PM,02/23/2012 02:04:57 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 02:05:56 PM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",120540198-T03 +160911282,AM02,16036035,Medical Incident,03/31/2016,03/31/2016,03/31/2016 11:01:30 AM,03/31/2016 11:02:11 AM,03/31/2016 11:02:48 AM,03/31/2016 11:02:48 AM,03/31/2016 11:13:10 AM,03/31/2016 11:29:47 AM,03/31/2016 11:34:01 AM,Code 2 Transport,03/31/2016 12:16:34 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160911282-AM02 +160873277,AM20,16034729,Medical Incident,03/27/2016,03/27/2016,03/27/2016 08:43:36 PM,03/27/2016 08:47:02 PM,03/27/2016 08:47:18 PM,03/27/2016 08:47:47 PM,03/27/2016 09:08:39 PM,03/27/2016 09:08:41 PM,03/27/2016 09:23:03 PM,Code 2 Transport,03/27/2016 10:10:09 PM,500 Block of ASHBURY ST,San Francisco,94117,B05,21,4513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7704798919759, -122.446959951124)",160873277-AM20 +103010416,B01,10096296,Alarms,10/28/2010,10/28/2010,10/28/2010 09:41:52 PM,10/28/2010 09:42:52 PM,10/28/2010 09:43:11 PM,10/28/2010 09:43:38 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/28/2010 09:46:30 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,,1,CHIEF,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",103010416-B01 +121000052,E02,12033025,Other,04/09/2012,04/08/2012,04/09/2012 05:03:13 AM,04/09/2012 05:05:05 AM,04/09/2012 05:06:29 AM,04/09/2012 05:09:05 AM,04/09/2012 05:11:06 AM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Fire,04/09/2012 05:25:35 AM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",121000052-E02 +160521463,AM02,16020794,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:03:35 PM,02/21/2016 12:05:20 PM,02/21/2016 12:05:44 PM,02/21/2016 12:06:22 PM,02/21/2016 12:17:07 PM,02/21/2016 12:25:35 PM,02/21/2016 12:39:54 PM,Code 2 Transport,02/21/2016 01:01:18 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160521463-AM02 +110530320,55,11017634,Medical Incident,02/22/2011,02/22/2011,02/22/2011 07:41:27 PM,02/22/2011 07:42:09 PM,02/22/2011 07:45:31 PM,04/25/2016 02:05:57 PM,02/22/2011 07:54:42 PM,02/22/2011 08:16:30 PM,02/22/2011 08:20:04 PM,Code 2 Transport,02/22/2011 08:57:19 PM,600 Block of PACIFIC AVE,SF,94133,B01,13,1246,3,3,3,true,,1,MEDIC,1,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",110530320-55 +160774002,65,16030797,Water Rescue,03/17/2016,03/17/2016,03/17/2016 09:25:57 PM,03/17/2016 09:26:41 PM,03/17/2016 09:29:31 PM,03/17/2016 09:29:40 PM,03/17/2016 09:29:40 PM,03/17/2016 10:01:01 PM,03/17/2016 10:48:06 PM,Code 2 Transport,03/17/2016 11:25:36 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Fire,1,MEDIC,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160774002-65 +111170263,E41,11038685,Medical Incident,04/27/2011,04/27/2011,04/27/2011 04:44:28 PM,04/27/2011 04:44:52 PM,04/27/2011 04:48:52 PM,04/27/2011 04:49:45 PM,04/27/2011 04:51:43 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 05:02:10 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,ENGINE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",111170263-E41 +130610125,T08,13020414,Elevator / Escalator Rescue,03/02/2013,03/02/2013,03/02/2013 10:00:09 AM,03/02/2013 10:02:20 AM,03/02/2013 10:03:16 AM,03/02/2013 10:03:45 AM,03/02/2013 10:05:38 AM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Fire,03/02/2013 10:50:05 AM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",130610125-T08 +140740312,KM01,14025121,Medical Incident,03/15/2014,03/15/2014,03/15/2014 05:11:50 PM,03/15/2014 05:11:50 PM,03/15/2014 05:13:51 PM,03/15/2014 05:13:51 PM,03/15/2014 05:20:39 PM,03/15/2014 05:29:46 PM,03/15/2014 06:10:54 PM,Code 2 Transport,03/15/2014 06:33:16 PM,1800 Block of STOCKTON ST,,94133,B01,28,1335,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8027782547729, -122.409586942281)",140740312-KM01 +123520275,E21,12117815,Medical Incident,12/17/2012,12/17/2012,12/17/2012 03:56:33 PM,12/17/2012 03:56:49 PM,12/17/2012 03:57:43 PM,12/17/2012 03:58:55 PM,12/17/2012 03:59:31 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 04:10:23 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7756633772222, -122.440489225868)",123520275-E21 +120190116,B09,12006302,Alarms,01/19/2012,01/19/2012,01/19/2012 09:44:25 AM,01/19/2012 09:45:14 AM,01/19/2012 09:45:52 AM,01/19/2012 09:48:02 AM,01/19/2012 09:54:36 AM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,No Merit,01/19/2012 10:06:52 AM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,false,Alarm,1,CHIEF,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",120190116-B09 +160653028,52,16026065,Medical Incident,03/05/2016,03/05/2016,03/05/2016 07:51:42 PM,03/05/2016 07:52:23 PM,03/05/2016 07:53:24 PM,03/05/2016 07:54:23 PM,03/05/2016 07:57:22 PM,03/05/2016 08:17:14 PM,03/05/2016 08:28:42 PM,Code 2 Transport,03/05/2016 09:00:58 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160653028-52 +122130158,E15,12070679,Structure Fire,07/31/2012,07/31/2012,07/31/2012 12:03:37 PM,07/31/2012 12:03:37 PM,07/31/2012 12:03:49 PM,07/31/2012 12:04:45 PM,07/31/2012 12:06:58 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 12:17:19 PM,100 Block of APTOS AVE,SF,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",122130158-E15 +72000221,B02,7057393,Alarms,07/19/2007,07/19/2007,07/19/2007 12:54:20 PM,07/19/2007 12:54:20 PM,07/19/2007 12:55:00 PM,07/19/2007 12:56:09 PM,07/19/2007 12:58:08 PM,04/25/2016 03:38:31 PM,04/25/2016 03:38:31 PM,Other,07/19/2007 12:58:49 PM,900 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,,1,CHIEF,3,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",072000221-B02 +160371011,64,16014596,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:01:45 AM,02/06/2016 08:02:55 AM,02/06/2016 08:03:15 AM,02/06/2016 08:03:22 AM,02/06/2016 08:10:44 AM,02/06/2016 08:30:10 AM,02/06/2016 08:36:28 AM,Code 3 Transport,02/06/2016 09:42:45 AM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.709762526111, -122.449674980499)",160371011-64 +130740139,58,13024637,Medical Incident,03/15/2013,03/15/2013,03/15/2013 11:04:37 AM,03/15/2013 11:06:38 AM,03/15/2013 11:09:43 AM,03/15/2013 11:09:47 AM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,04/25/2016 01:53:49 PM,1400 Block of MARKET ST,SF,94102,B02,36,3219,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",130740139-58 +160824037,76,16032781,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:56:24 PM,03/22/2016 10:56:54 PM,03/22/2016 10:57:10 PM,03/22/2016 10:57:20 PM,03/22/2016 11:02:45 PM,03/22/2016 11:18:05 PM,03/22/2016 11:27:48 PM,Code 2 Transport,03/23/2016 12:01:22 AM,900 Block of LAGUNA ST,San Francisco,94102,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7799680516117, -122.42690139405)",160824037-76 +120320273,T13,12010654,Medical Incident,02/01/2012,02/01/2012,02/01/2012 05:41:15 PM,02/01/2012 05:42:46 PM,02/01/2012 05:42:57 PM,02/01/2012 05:44:04 PM,02/01/2012 05:47:58 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 06:02:06 PM,500 Block of HOWARD ST,SF,94105,B03,35,2141,3,2,2,false,Potentially Life-Threatening,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",120320273-T13 +111040154,E05,11034452,Medical Incident,04/14/2011,04/14/2011,04/14/2011 12:11:45 PM,04/14/2011 12:12:43 PM,04/14/2011 12:12:55 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/14/2011 12:16:52 PM,FRANKLIN ST/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,3,2,6,Mission,"(37.7740078054814, -122.420698775942)",111040154-E05 +102300145,99,10072356,Medical Incident,08/18/2010,08/18/2010,08/18/2010 11:56:08 AM,08/18/2010 11:58:31 AM,08/18/2010 11:59:56 AM,08/18/2010 12:00:12 PM,08/18/2010 12:03:53 PM,08/18/2010 12:19:05 PM,08/18/2010 12:26:51 PM,Code 2 Transport,08/18/2010 12:56:13 PM,1000 Block of WASHINGTON ST,SF,94108,B01,2,1415,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7946063978175, -122.410294571416)",102300145-99 +130160215,KM12,13005469,Medical Incident,01/16/2013,01/16/2013,01/16/2013 03:17:46 PM,01/16/2013 03:18:24 PM,01/16/2013 03:19:08 PM,01/16/2013 03:19:44 PM,01/16/2013 03:23:35 PM,01/16/2013 03:36:17 PM,01/16/2013 03:49:58 PM,Code 2 Transport,01/16/2013 04:30:16 PM,1400 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",130160215-KM12 +112070088,E16,11068304,Medical Incident,07/26/2011,07/26/2011,07/26/2011 08:22:39 AM,07/26/2011 08:23:35 AM,07/26/2011 08:24:04 AM,07/26/2011 08:26:43 AM,07/26/2011 08:27:50 AM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 08:38:26 AM,2200 Block of BEACH ST,SF,94123,B04,16,4316,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8033341125308, -122.446079284998)",112070088-E16 +160472765,57,16019027,Medical Incident,02/16/2016,02/16/2016,02/16/2016 05:09:36 PM,02/16/2016 05:12:11 PM,02/16/2016 05:12:47 PM,02/16/2016 05:20:16 PM,02/16/2016 05:27:42 PM,02/16/2016 05:35:09 PM,02/16/2016 05:46:09 PM,Code 2 Transport,02/16/2016 06:24:09 PM,0 Block of HERNANDEZ AV,San Francisco,94127,B08,39,8644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7454582717714, -122.455968432733)",160472765-57 +120230095,E28,12007723,Structure Fire,01/23/2012,01/23/2012,01/23/2012 08:25:20 AM,01/23/2012 08:25:47 AM,01/23/2012 08:26:33 AM,01/23/2012 08:28:10 AM,01/23/2012 08:29:59 AM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 08:51:47 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,Fire,1,ENGINE,5,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",120230095-E28 +111100299,E06,11036403,Medical Incident,04/20/2011,04/20/2011,04/20/2011 05:08:57 PM,04/20/2011 05:09:47 PM,04/20/2011 05:12:44 PM,04/25/2016 02:05:01 PM,04/20/2011 05:17:38 PM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 05:26:59 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",111100299-E06 +160630341,78,16024944,Medical Incident,03/03/2016,03/02/2016,03/03/2016 04:06:13 AM,03/03/2016 04:06:57 AM,03/03/2016 04:07:18 AM,03/03/2016 04:07:41 AM,03/03/2016 04:12:14 AM,03/03/2016 04:18:06 AM,03/03/2016 04:23:18 AM,Code 2 Transport,03/03/2016 05:25:24 AM,MARKET ST/HYDE ST,San Francisco,94103,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160630341-78 +103310029,E06,10105835,Medical Incident,11/27/2010,11/26/2010,11/27/2010 02:09:37 AM,11/27/2010 02:10:41 AM,11/27/2010 02:11:14 AM,11/27/2010 02:12:07 AM,11/27/2010 02:15:50 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 02:16:28 AM,HAIGHT ST/FILLMORE ST,SF,94117,B05,6,3526,3,3,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7721082581802, -122.430433920263)",103310029-E06 +131710069,T06,13057963,Alarms,06/20/2013,06/19/2013,06/20/2013 07:49:48 AM,06/20/2013 07:51:26 AM,06/20/2013 07:51:42 AM,06/20/2013 07:54:44 AM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/20/2013 08:03:26 AM,200 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,3,2,8,Mission,"(37.7671990407506, -122.424452084295)",131710069-T06 +140400287,E40,14013662,Medical Incident,02/09/2014,02/09/2014,02/09/2014 04:30:38 PM,02/09/2014 04:31:09 PM,02/09/2014 04:31:38 PM,02/09/2014 04:32:49 PM,02/09/2014 04:35:01 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/09/2014 04:41:13 PM,2500 Block of 16TH AVE,SF,94116,B08,40,7357,,E,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7403956364845, -122.472355896248)",140400287-E40 +140450292,E10,14015405,Medical Incident,02/14/2014,02/14/2014,02/14/2014 06:18:35 PM,02/14/2014 06:20:08 PM,02/14/2014 06:20:45 PM,02/14/2014 06:22:39 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 06:24:45 PM,FULTON ST/MASONIC AV,SF,94117,B05,21,4463,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",140450292-E10 +110350290,E18,11011571,Medical Incident,02/04/2011,02/04/2011,02/04/2011 05:34:15 PM,02/04/2011 05:34:33 PM,02/04/2011 05:35:00 PM,02/04/2011 05:35:16 PM,02/04/2011 05:37:31 PM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Other,02/04/2011 06:01:01 PM,1800 Block of 42ND AVE,SF,94122,B08,18,7633,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.752216982459, -122.501121774898)",110350290-E18 +131220366,E25,13041180,Gas Leak (Natural and LP Gases),05/02/2013,05/02/2013,05/02/2013 06:01:54 PM,05/02/2013 06:02:17 PM,05/02/2013 06:06:09 PM,05/02/2013 06:07:15 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 06:19:47 PM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.730710372177, -122.375579669518)",131220366-E25 +111500003,E31,11049548,Medical Incident,05/30/2011,05/29/2011,05/30/2011 12:08:50 AM,05/30/2011 12:10:08 AM,05/30/2011 12:10:48 AM,05/30/2011 12:11:53 AM,05/30/2011 12:14:33 AM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 12:30:54 AM,300 Block of 3RD AVE,SF,94118,B07,31,7116,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7821205849074, -122.46120423399)",111500003-E31 +131130100,E36,13038024,Medical Incident,04/23/2013,04/23/2013,04/23/2013 09:17:21 AM,04/23/2013 09:24:22 AM,04/23/2013 09:24:46 AM,04/23/2013 09:25:00 AM,04/23/2013 09:30:32 AM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,No Merit,04/23/2013 09:32:27 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",131130100-E36 +130320264,E03,13010991,Medical Incident,02/01/2013,02/01/2013,02/01/2013 04:34:09 PM,02/01/2013 04:34:47 PM,02/01/2013 04:35:12 PM,02/01/2013 04:36:04 PM,02/01/2013 04:39:18 PM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,02/01/2013 04:43:19 PM,MCALLISTER ST/LEAVENWORTH ST,SF,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",130320264-E03 +160143089,74,16005695,Medical Incident,01/14/2016,01/14/2016,01/14/2016 06:39:04 PM,01/14/2016 06:39:46 PM,01/14/2016 06:40:07 PM,01/14/2016 06:40:25 PM,01/14/2016 06:44:51 PM,01/14/2016 06:59:18 PM,01/14/2016 07:03:27 PM,Code 3 Transport,01/14/2016 07:28:25 PM,300 Block of POTRERO AVE,San Francisco,94103,B02,29,2416,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7651394094816, -122.407407963885)",160143089-74 +111480048,RS1,11048976,Alarms,05/28/2011,05/27/2011,05/28/2011 05:14:20 AM,05/28/2011 05:15:23 AM,05/28/2011 05:15:49 AM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,05/28/2011 05:22:33 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7811458612596, -122.409026046516)",111480048-RS1 +120950219,63,12031506,Medical Incident,04/04/2012,04/04/2012,04/04/2012 04:14:15 PM,04/04/2012 04:16:54 PM,04/04/2012 04:17:07 PM,04/04/2012 04:17:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/25/2016 01:59:20 PM,300 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",120950219-63 +160421706,AM12,16016859,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:30:50 PM,02/11/2016 12:32:30 PM,02/11/2016 12:33:06 PM,02/11/2016 12:34:16 PM,02/11/2016 12:40:08 PM,02/11/2016 01:02:56 PM,02/11/2016 01:24:26 PM,Code 2 Transport,02/11/2016 02:22:35 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160421706-AM12 +131000305,E10,13033709,Alarms,04/10/2013,04/10/2013,04/10/2013 05:53:47 PM,04/10/2013 05:55:09 PM,04/10/2013 05:55:25 PM,04/10/2013 05:56:32 PM,04/10/2013 05:59:00 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/10/2013 06:21:50 PM,0 Block of LUPINE AVE,SF,94118,B05,10,4371,3,3,3,true,Alarm,1,ENGINE,2,5,2,Presidio Heights,"(37.7840952881992, -122.449390199224)",131000305-E10 +132380012,B08,13080156,Citizen Assist / Service Call,08/26/2013,08/25/2013,08/26/2013 12:54:39 AM,08/26/2013 12:56:09 AM,08/26/2013 12:56:52 AM,08/26/2013 12:59:34 AM,08/26/2013 01:24:35 AM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Fire,08/26/2013 01:06:01 AM,1500 Block of SLOAT BLVD,SF,94132,B08,19,7552,3,3,3,false,Alarm,1,CHIEF,2,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",132380012-B08 +112670012,E21,11088075,Structure Fire,09/24/2011,09/23/2011,09/24/2011 12:39:03 AM,09/24/2011 12:39:04 AM,09/24/2011 12:39:14 AM,09/24/2011 12:40:41 AM,09/24/2011 12:42:16 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/24/2011 12:42:26 AM,MASONIC AV/OAK ST,SF,94117,B05,21,4465,3,3,3,false,,1,ENGINE,1,5,5,Golden Gate Park,"(37.7720803934485, -122.445716664284)",112670012-E21 +160333692,52,16013192,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:31:00 PM,02/02/2016 11:31:46 PM,02/02/2016 11:33:01 PM,02/02/2016 11:33:11 PM,02/02/2016 11:44:24 PM,02/03/2016 12:07:12 AM,02/03/2016 12:25:23 AM,Code 2 Transport,02/03/2016 01:13:29 AM,200 Block of FONT BLVD,San Francisco,94132,B08,19,8428,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7164364004339, -122.475092478363)",160333692-52 +160211945,KM11,16008399,Medical Incident,01/21/2016,01/21/2016,01/21/2016 01:26:46 PM,01/21/2016 01:28:22 PM,01/21/2016 01:29:14 PM,01/21/2016 01:31:20 PM,01/21/2016 01:36:29 PM,01/21/2016 01:54:33 PM,01/21/2016 01:54:39 PM,Code 2 Transport,01/21/2016 02:41:43 PM,2200 Block of OFARRELL ST,San Francisco,94115,B05,10,4236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",160211945-KM11 +122750156,87,12090713,Medical Incident,10/01/2012,10/01/2012,10/01/2012 11:36:36 AM,10/01/2012 11:37:10 AM,10/01/2012 11:37:18 AM,10/01/2012 11:37:46 AM,10/01/2012 11:48:31 AM,10/01/2012 12:09:21 PM,10/01/2012 12:23:14 PM,Code 2 Transport,10/01/2012 12:52:06 PM,0 Block of MARNE AVE,SF,94127,B08,39,8572,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7396404963064, -122.459051898169)",122750156-87 +121180092,AM04,12039016,Medical Incident,04/27/2012,04/27/2012,04/27/2012 08:14:03 AM,04/27/2012 08:14:29 AM,04/27/2012 08:14:40 AM,04/27/2012 08:15:11 AM,04/27/2012 08:19:55 AM,04/27/2012 08:31:05 AM,04/27/2012 08:44:05 AM,Code 2 Transport,04/27/2012 09:24:20 AM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",121180092-AM04 +160160934,KM09,16006347,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:04:56 AM,01/16/2016 09:04:56 AM,01/16/2016 09:05:21 AM,01/16/2016 09:05:58 AM,01/16/2016 09:15:34 AM,01/16/2016 09:26:32 AM,01/16/2016 09:37:08 AM,Code 2 Transport,01/16/2016 10:17:16 AM,BUCHANAN ST/SACRAMENTO ST,San Francisco,94115,B04,38,3435,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7902520626448, -122.430736822977)",160160934-KM09 +131090340,E01,13036770,Medical Incident,04/19/2013,04/19/2013,04/19/2013 07:12:18 PM,04/19/2013 07:13:16 PM,04/19/2013 07:13:31 PM,04/19/2013 07:14:28 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/19/2013 07:15:38 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",131090340-E01 +160711427,AM10,16028205,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:44:39 AM,03/11/2016 11:44:39 AM,03/11/2016 11:47:40 AM,03/11/2016 11:47:46 AM,03/11/2016 11:57:31 AM,03/11/2016 12:11:46 PM,03/11/2016 12:28:28 PM,Code 2 Transport,03/11/2016 01:15:18 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160711427-AM10 +160471860,KM12,16018931,Traffic Collision,02/16/2016,02/16/2016,02/16/2016 01:21:11 PM,02/16/2016 01:21:11 PM,02/16/2016 01:22:12 PM,02/16/2016 01:23:02 PM,02/16/2016 01:29:56 PM,02/16/2016 01:40:21 PM,02/16/2016 01:48:55 PM,Code 2 Transport,02/16/2016 02:15:06 PM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",160471860-KM12 +132630197,KM10,13089114,Medical Incident,09/20/2013,09/20/2013,09/20/2013 12:02:07 PM,09/20/2013 12:02:07 PM,09/20/2013 12:04:06 PM,09/20/2013 12:04:12 PM,09/20/2013 12:12:21 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Against Medical Advice,09/20/2013 01:04:18 PM,25TH AV/ANZA ST,SF,94121,B07,14,7213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7781658332143, -122.484595235477)",132630197-KM10 +130350333,66,13012108,Medical Incident,02/04/2013,02/04/2013,02/04/2013 05:18:30 PM,02/04/2013 05:20:45 PM,02/04/2013 05:21:03 PM,02/04/2013 05:22:36 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/04/2013 05:22:55 PM,1900 Block of 17TH AVE,SF,94116,B08,40,7374,1,1,2,true,Non Life-threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7515410594631, -122.474071150903)",130350333-66 +131510232,66,13051162,Medical Incident,05/31/2013,05/31/2013,05/31/2013 02:33:56 PM,05/31/2013 02:34:12 PM,05/31/2013 02:36:30 PM,05/31/2013 02:36:56 PM,05/31/2013 02:47:54 PM,05/31/2013 03:02:55 PM,05/31/2013 03:37:15 PM,Code 2 Transport,05/31/2013 04:00:01 PM,0 Block of WEST PORTAL AVE,SF,94127,B08,39,8611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7403329886376, -122.466448582438)",131510232-66 +111210288,E07,11040024,Medical Incident,05/01/2011,05/01/2011,05/01/2011 04:58:05 PM,05/01/2011 04:59:07 PM,05/01/2011 04:59:21 PM,05/01/2011 05:01:41 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 05:08:02 PM,VALENCIA ST/LIBERTY ST,SF,94110,B06,7,5456,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.757701416696, -122.421193864679)",111210288-E07 +111770129,B10,11058335,Structure Fire,06/26/2011,06/26/2011,06/26/2011 10:35:46 AM,06/26/2011 10:36:37 AM,06/26/2011 10:36:54 AM,06/26/2011 10:37:27 AM,06/26/2011 10:43:29 AM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,06/26/2011 10:50:40 AM,400 Block of HOFFMAN AVE,SF,94114,B06,24,5517,3,3,3,false,,1,CHIEF,5,6,8,Noe Valley,"(37.750105701763, -122.440468327667)",111770129-B10 +131880361,E14,13064257,Medical Incident,07/07/2013,07/07/2013,07/07/2013 10:40:38 PM,07/07/2013 10:42:29 PM,07/07/2013 10:43:13 PM,07/07/2013 10:44:29 PM,07/07/2013 10:45:32 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 11:09:50 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",131880361-E14 +122690165,96,12088838,Medical Incident,09/25/2012,09/25/2012,09/25/2012 02:01:23 PM,09/25/2012 02:02:14 PM,09/25/2012 02:02:29 PM,09/25/2012 02:02:43 PM,09/25/2012 02:09:02 PM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Patient Declined Transport,09/25/2012 02:15:17 PM,100 Block of BERTHA LN,SF,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7331435009212, -122.380990356551)",122690165-96 +121300094,88,12043188,Medical Incident,05/09/2012,05/09/2012,05/09/2012 09:30:03 AM,05/09/2012 09:32:11 AM,05/09/2012 09:32:41 AM,04/25/2016 01:58:46 PM,05/09/2012 09:41:28 AM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Gone on Arrival,05/09/2012 09:44:10 AM,2200 Block of 23RD ST,SF,94107,B10,37,2556,2,2,2,false,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7544865703941, -122.402068206398)",121300094-88 +112330222,E33,11076976,Medical Incident,08/21/2011,08/21/2011,08/21/2011 03:00:27 PM,08/21/2011 03:01:09 PM,08/21/2011 03:01:56 PM,08/21/2011 03:03:36 PM,08/21/2011 03:05:32 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 03:30:25 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",112330222-E33 +160280964,55,16011018,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:26:00 AM,01/28/2016 09:28:49 AM,01/28/2016 09:28:57 AM,01/28/2016 09:29:34 AM,01/28/2016 09:51:15 AM,01/28/2016 10:44:57 AM,01/28/2016 10:44:58 AM,Code 2 Transport,01/28/2016 12:18:13 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160280964-55 +122640281,55,12087263,Medical Incident,09/20/2012,09/20/2012,09/20/2012 04:38:08 PM,09/20/2012 04:39:39 PM,09/20/2012 04:39:52 PM,09/20/2012 04:40:38 PM,09/20/2012 04:50:36 PM,09/20/2012 05:13:56 PM,09/20/2012 05:40:39 PM,Code 2 Transport,09/20/2012 06:19:05 PM,400 Block of OCEAN AVE,SF,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7230519347083, -122.446013047919)",122640281-55 +133560178,T15,13121011,Alarms,12/22/2013,12/22/2013,12/22/2013 11:48:17 AM,12/22/2013 11:49:12 AM,12/22/2013 11:49:19 AM,12/22/2013 11:50:24 AM,12/22/2013 11:52:39 AM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 12:07:16 PM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",133560178-T15 +132410211,T18,13081310,Alarms,08/29/2013,08/29/2013,08/29/2013 02:33:33 PM,08/29/2013 02:35:04 PM,08/29/2013 02:35:28 PM,08/29/2013 02:36:11 PM,08/29/2013 02:40:09 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/29/2013 02:49:11 PM,2000 Block of 37TH AVE,SF,94116,B08,18,757,3,3,3,false,Alarm,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7487247711275, -122.495504020186)",132410211-T18 +160430125,70,16017102,Medical Incident,02/12/2016,02/11/2016,02/12/2016 01:01:45 AM,02/12/2016 01:02:15 AM,02/12/2016 01:03:14 AM,02/12/2016 01:03:21 AM,02/12/2016 01:08:04 AM,02/12/2016 01:21:21 AM,02/12/2016 01:24:57 AM,Code 2 Transport,02/12/2016 02:28:16 AM,900 Block of HAMPSHIRE ST,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7569109782313, -122.407609182364)",160430125-70 +160780208,AM18,16030868,Medical Incident,03/18/2016,03/17/2016,03/18/2016 01:44:16 AM,03/18/2016 01:46:06 AM,03/18/2016 01:47:34 AM,03/18/2016 01:49:20 AM,03/18/2016 02:03:58 AM,03/18/2016 02:04:00 AM,03/18/2016 02:24:38 AM,Code 2 Transport,03/18/2016 03:15:07 AM,1200 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8474,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7246916380621, -122.456361161182)",160780208-AM18 +160121127,50,16004725,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:05:42 AM,01/12/2016 10:06:04 AM,01/12/2016 10:06:18 AM,01/12/2016 10:06:34 AM,01/12/2016 10:17:50 AM,01/12/2016 10:31:50 AM,01/12/2016 10:45:23 AM,Code 2 Transport,01/12/2016 11:16:08 AM,800 Block of BRANNAN ST,San Francisco,94103,B03,29,2325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7722126507146, -122.404363751305)",160121127-50 +103560294,E42,10114358,Medical Incident,12/22/2010,12/22/2010,12/22/2010 06:23:54 PM,12/22/2010 06:24:48 PM,12/22/2010 06:27:33 PM,12/22/2010 06:28:34 PM,12/22/2010 06:30:23 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/22/2010 06:47:29 PM,200 Block of SWEENY ST,SF,94134,B10,42,6365,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7323246800434, -122.410212076026)",103560294-E42 +111380078,RS2,11045796,Medical Incident,05/18/2011,05/18/2011,05/18/2011 08:36:55 AM,05/18/2011 08:38:20 AM,05/18/2011 08:38:50 AM,05/18/2011 08:40:24 AM,05/18/2011 08:41:32 AM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 08:45:58 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,,1,RESCUE SQUAD,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",111380078-RS2 +121190031,E41,12039353,Medical Incident,04/28/2012,04/27/2012,04/28/2012 01:53:18 AM,04/28/2012 01:53:54 AM,04/28/2012 01:54:37 AM,04/28/2012 01:56:09 AM,04/28/2012 01:57:07 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 02:09:50 AM,CALIFORNIA ST/HYDE ST,SF,94109,B01,41,1541,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",121190031-E41 +130680195,81,13022681,Medical Incident,03/09/2013,03/09/2013,03/09/2013 12:45:56 PM,03/09/2013 12:46:27 PM,03/09/2013 12:46:36 PM,03/09/2013 12:46:50 PM,03/09/2013 12:52:45 PM,03/09/2013 01:07:05 PM,03/09/2013 01:15:40 PM,Code 3 Transport,03/09/2013 02:22:26 PM,1400 Block of REVERE AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7301191034184, -122.387315155313)",130680195-81 +122040327,B10,12067935,Medical Incident,07/22/2012,07/22/2012,07/22/2012 06:55:22 PM,07/22/2012 06:56:23 PM,07/22/2012 06:56:39 PM,07/22/2012 06:58:01 PM,07/22/2012 07:05:17 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/22/2012 07:15:32 PM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,A,A,2,false,Potentially Life-Threatening,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.730710372177, -122.375579669518)",122040327-B10 +113010412,63,11100027,Structure Fire,10/28/2011,10/28/2011,10/28/2011 11:11:20 PM,10/28/2011 11:12:33 PM,10/28/2011 11:12:54 PM,10/28/2011 11:15:23 PM,10/28/2011 11:15:29 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/28/2011 11:17:44 PM,800 Block of 14TH ST,SF,94114,B05,6,5212,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7675070758139, -122.43173994227)",113010412-63 +160912577,KM13,16036154,Medical Incident,03/31/2016,03/31/2016,03/31/2016 04:46:28 PM,03/31/2016 04:46:28 PM,03/31/2016 04:46:44 PM,03/31/2016 04:47:08 PM,03/31/2016 04:53:42 PM,03/31/2016 05:19:31 PM,03/31/2016 05:34:04 PM,Code 2 Transport,03/31/2016 05:47:57 PM,EDDY ST/LAGUNA ST,San Francisco,94102,B02,5,3366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",160912577-KM13 +130180043,E07,13006025,Medical Incident,01/18/2013,01/17/2013,01/18/2013 02:49:53 AM,01/18/2013 02:50:52 AM,01/18/2013 02:50:59 AM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,Other,01/18/2013 02:52:52 AM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",130180043-E07 +160093407,89,16003817,Medical Incident,01/09/2016,01/09/2016,01/09/2016 09:35:16 PM,01/09/2016 09:36:43 PM,01/09/2016 09:57:34 PM,01/09/2016 09:57:38 PM,01/09/2016 10:21:47 PM,01/09/2016 10:30:43 PM,01/09/2016 10:46:41 PM,Code 2 Transport,01/09/2016 11:07:36 PM,0 Block of MISSION ST,San Francisco,94105,B03,35,2131,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7935385958356, -122.392889145798)",160093407-89 +121850334,87,12061749,Medical Incident,07/03/2012,07/03/2012,07/03/2012 07:42:38 PM,07/03/2012 07:45:15 PM,07/03/2012 07:46:07 PM,07/03/2012 07:46:12 PM,07/03/2012 08:17:53 PM,07/03/2012 08:53:28 PM,07/03/2012 09:00:20 PM,Code 2 Transport,07/03/2012 09:33:34 PM,1600 Block of 10TH AVE,SF,94122,B08,22,7335,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7574627756341, -122.466996545022)",121850334-87 +130320313,E14,13011034,Medical Incident,02/01/2013,02/01/2013,02/01/2013 06:54:10 PM,02/01/2013 06:55:06 PM,02/01/2013 06:55:33 PM,02/01/2013 06:56:35 PM,02/01/2013 07:02:39 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/01/2013 07:14:13 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",130320313-E14 +131540222,AM04,13052182,Medical Incident,06/03/2013,06/03/2013,06/03/2013 01:45:36 PM,06/03/2013 01:47:23 PM,06/03/2013 01:48:19 PM,06/03/2013 01:49:02 PM,06/03/2013 01:53:41 PM,06/03/2013 02:24:21 PM,04/25/2016 01:52:28 PM,Code 2 Transport,06/03/2013 03:04:01 PM,1100 Block of 9TH AVE,SF,94122,B08,22,7333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",131540222-AM04 +121960212,KM01,12065216,Medical Incident,07/14/2012,07/14/2012,07/14/2012 02:51:01 PM,07/14/2012 02:53:20 PM,07/14/2012 03:01:06 PM,07/14/2012 03:01:45 PM,07/14/2012 03:07:48 PM,07/14/2012 03:29:35 PM,04/25/2016 01:57:43 PM,Code 2 Transport,07/14/2012 04:12:46 PM,2700 Block of LOMBARD ST,SF,94123,B04,16,4326,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7985968788664, -122.446649276894)",121960212-KM01 +140820200,E43,14027712,Electrical Hazard,03/23/2014,03/23/2014,03/23/2014 03:12:06 PM,03/23/2014 03:13:16 PM,03/23/2014 03:13:27 PM,03/23/2014 03:14:56 PM,03/23/2014 03:16:47 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Fire,03/23/2014 03:17:29 PM,1600 Block of GENEVA AVE,SAN FRANCISCO,94112,B09,43,6172,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7115816415732, -122.427965645504)",140820200-E43 +132770455,54,13094309,Medical Incident,10/04/2013,10/04/2013,10/04/2013 09:59:37 PM,10/04/2013 10:01:07 PM,10/04/2013 10:01:54 PM,10/04/2013 10:02:10 PM,10/04/2013 10:13:02 PM,10/04/2013 10:29:16 PM,10/04/2013 10:43:13 PM,Code 2 Transport,10/04/2013 11:12:17 PM,500 Block of BRYANT ST,SF,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7806714111875, -122.39656521118)",132770455-54 +160443920,53,16017909,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:15:27 PM,02/13/2016 11:15:27 PM,02/13/2016 11:15:41 PM,02/13/2016 11:16:36 PM,02/13/2016 11:24:45 PM,02/13/2016 11:32:02 PM,02/13/2016 11:43:36 PM,Code 2 Transport,02/14/2016 12:20:10 AM,GOUGH ST/FILBERT ST,San Francisco,94123,B04,16,3245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7990666836169, -122.427457297641)",160443920-53 +160423010,58,16016977,Traffic Collision,02/11/2016,02/11/2016,02/11/2016 06:07:02 PM,02/11/2016 06:07:02 PM,02/11/2016 06:07:46 PM,02/11/2016 06:08:04 PM,02/11/2016 06:14:42 PM,02/11/2016 06:43:46 PM,02/11/2016 06:50:03 PM,Code 2 Transport,02/11/2016 07:53:57 PM,ALABAMA ST/CESAR CHAVEZ ST,San Francisco,94110,B06,9,5615,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7483167190892, -122.410546068765)",160423010-58 +103380135,E06,10108094,Medical Incident,12/04/2010,12/04/2010,12/04/2010 09:35:25 AM,12/04/2010 09:36:52 AM,12/04/2010 09:37:31 AM,12/04/2010 09:38:20 AM,12/04/2010 09:39:39 AM,04/25/2016 02:07:18 PM,04/25/2016 02:07:18 PM,Other,12/04/2010 09:51:43 AM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,,1,ENGINE,1,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",103380135-E06 +110480153,T17,11015845,Medical Incident,02/17/2011,02/17/2011,02/17/2011 11:31:17 AM,02/17/2011 11:31:51 AM,02/17/2011 11:32:20 AM,02/17/2011 11:33:38 AM,02/17/2011 11:36:33 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 11:44:55 AM,REVERE AV/3RD ST,SF,94124,B10,17,6514,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7324319090354, -122.391521351669)",110480153-T17 +113610185,KM01,11119954,Medical Incident,12/27/2011,12/27/2011,12/27/2011 02:00:27 PM,12/27/2011 02:02:21 PM,12/27/2011 02:03:15 PM,12/27/2011 02:03:48 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Patient Declined Transport,12/27/2011 02:11:32 PM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",113610185-KM01 +121130317,E07,12037639,Citizen Assist / Service Call,04/22/2012,04/22/2012,04/22/2012 09:11:34 PM,04/22/2012 09:13:18 PM,04/22/2012 09:13:55 PM,04/22/2012 09:15:52 PM,04/22/2012 09:17:22 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/22/2012 09:31:05 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",121130317-E07 +160403248,63,16016183,Medical Incident,02/09/2016,02/09/2016,02/09/2016 07:26:54 PM,02/09/2016 07:27:33 PM,02/09/2016 07:27:48 PM,02/09/2016 07:27:57 PM,02/09/2016 07:32:21 PM,02/09/2016 07:43:47 PM,02/09/2016 07:56:14 PM,Code 2 Transport,02/09/2016 08:32:19 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",160403248-63 +121930356,E43,12064391,Medical Incident,07/11/2012,07/11/2012,07/11/2012 10:46:48 PM,07/11/2012 10:48:25 PM,07/11/2012 10:48:40 PM,07/11/2012 10:50:07 PM,07/11/2012 10:53:33 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 11:00:00 PM,500 Block of CARTER ST,SF,94134,B09,43,6245,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",121930356-E43 +122010055,54,12066712,Medical Incident,07/19/2012,07/18/2012,07/19/2012 06:39:32 AM,07/19/2012 06:40:08 AM,07/19/2012 06:40:23 AM,07/19/2012 06:40:29 AM,07/19/2012 06:43:06 AM,07/19/2012 06:54:11 AM,07/19/2012 07:04:03 AM,Code 2 Transport,07/19/2012 07:31:16 AM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",122010055-54 +160511444,KM04,16020450,Medical Incident,02/20/2016,02/20/2016,02/20/2016 12:08:25 PM,02/20/2016 12:09:03 PM,02/20/2016 12:09:29 PM,02/20/2016 12:10:14 PM,02/20/2016 12:19:22 PM,02/20/2016 12:37:40 PM,02/20/2016 12:56:33 PM,Code 2 Transport,02/20/2016 01:44:35 PM,0 Block of HAWTHORNE ST,San Francisco,94105,B03,1,2177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",160511444-KM04 +133400104,87,13115173,Medical Incident,12/06/2013,12/06/2013,12/06/2013 08:58:27 AM,12/06/2013 08:58:51 AM,12/06/2013 09:00:17 AM,12/06/2013 09:00:49 AM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 09:16:53 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",133400104-87 +121660029,E13,12054936,Traffic Collision,06/14/2012,06/13/2012,06/14/2012 02:22:18 AM,06/14/2012 02:25:24 AM,06/14/2012 02:26:02 AM,06/14/2012 02:29:22 AM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Other,06/14/2012 02:36:31 AM,0 Block of FREMONT ST,SF,94105,B03,35,2116,2,2,2,true,Non Life-threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",121660029-E13 +111010165,T10,11033504,Citizen Assist / Service Call,04/11/2011,04/11/2011,04/11/2011 12:14:39 PM,04/11/2011 12:17:32 PM,04/11/2011 12:17:42 PM,04/11/2011 12:18:45 PM,04/11/2011 12:21:57 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/11/2011 12:59:43 PM,0 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,false,,1,TRUCK,3,7,2,Presidio Heights,"(37.7848461901191, -122.4580614633)",111010165-T10 +120660053,AP,12021721,Other,03/06/2012,03/05/2012,03/06/2012 07:08:06 AM,03/06/2012 07:08:07 AM,03/06/2012 07:08:07 AM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Fire,03/06/2012 07:08:19 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120660053-AP +122570245,E18,12085008,Traffic Collision,09/13/2012,09/13/2012,09/13/2012 05:01:22 PM,09/13/2012 05:02:32 PM,09/13/2012 05:02:58 PM,09/13/2012 05:03:49 PM,09/13/2012 05:06:22 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/13/2012 05:29:53 PM,2300 Block of SUNSET BLVD,SF,94116,B08,18,7555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7431521718474, -122.494650777359)",122570245-E18 +160093081,88,16003768,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:32:46 PM,01/09/2016 07:35:24 PM,01/09/2016 07:37:24 PM,01/09/2016 07:37:40 PM,01/09/2016 07:54:03 PM,01/09/2016 08:02:31 PM,01/09/2016 08:14:53 PM,Code 2 Transport,01/09/2016 08:53:48 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160093081-88 +160452240,KM08,16018187,Medical Incident,02/14/2016,02/14/2016,02/14/2016 03:58:05 PM,02/14/2016 04:03:28 PM,02/14/2016 04:03:40 PM,02/14/2016 04:04:52 PM,02/14/2016 04:21:44 PM,02/14/2016 04:41:50 PM,02/14/2016 05:12:06 PM,Code 2 Transport,02/14/2016 05:29:52 PM,JONES ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",160452240-KM08 +160243494,60,16009712,Medical Incident,01/24/2016,01/24/2016,01/24/2016 10:31:34 PM,01/24/2016 10:34:20 PM,01/24/2016 10:34:34 PM,01/24/2016 10:34:48 PM,01/24/2016 10:46:36 PM,01/24/2016 11:13:26 PM,01/24/2016 11:23:37 PM,Code 2 Transport,01/24/2016 11:52:29 PM,1900 Block of PALOU AVE,San Francisco,94124,B10,42,6431,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7376407906904, -122.397487086449)",160243494-60 +122470112,86,12081653,Structure Fire,09/03/2012,09/03/2012,09/03/2012 11:03:37 AM,09/03/2012 11:06:52 AM,09/03/2012 11:07:25 AM,09/03/2012 11:08:46 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 11:13:12 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,true,Fire,1,MEDIC,9,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",122470112-86 +122430084,66,12080280,Medical Incident,08/30/2012,08/30/2012,08/30/2012 09:16:43 AM,08/30/2012 09:18:23 AM,08/30/2012 09:19:08 AM,08/30/2012 09:19:36 AM,08/30/2012 09:34:09 AM,08/30/2012 09:42:19 AM,08/30/2012 09:53:22 AM,Code 2 Transport,08/30/2012 10:28:15 AM,6TH ST/MISSION ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",122430084-66 +102430052,81,10076537,Medical Incident,08/31/2010,08/30/2010,08/31/2010 04:34:34 AM,08/31/2010 04:35:27 AM,08/31/2010 04:37:59 AM,08/31/2010 04:38:02 AM,08/31/2010 04:46:27 AM,08/31/2010 05:14:16 AM,08/31/2010 05:23:44 AM,Code 2 Transport,08/31/2010 05:58:31 AM,GOLDEN GATE AV/LEAVENWORTH ST,SF,94102,B02,1,1546,3,E,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",102430052-81 +122660013,T16,12087733,Alarms,09/22/2012,09/21/2012,09/22/2012 12:27:45 AM,09/22/2012 12:29:33 AM,09/22/2012 12:30:08 AM,09/22/2012 12:31:40 AM,09/22/2012 12:33:38 AM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 12:40:11 AM,2700 Block of GREENWICH ST,SF,94123,B04,16,4313,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.7978488000159, -122.444972846363)",122660013-T16 +120840058,KM07,12027799,Medical Incident,03/24/2012,03/23/2012,03/24/2012 03:46:01 AM,03/24/2012 03:46:20 AM,03/24/2012 03:47:33 AM,03/24/2012 03:48:21 AM,03/24/2012 03:51:16 AM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Patient Declined Transport,03/24/2012 04:11:25 AM,3000 Block of FILLMORE ST,SF,94123,B04,16,3552,3,3,3,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.797546363893, -122.435652367542)",120840058-KM07 +160412531,KM03,16016530,Medical Incident,02/10/2016,02/10/2016,02/10/2016 04:04:54 PM,02/10/2016 04:06:22 PM,02/10/2016 04:06:54 PM,02/10/2016 04:08:40 PM,02/10/2016 04:18:09 PM,02/10/2016 04:46:27 PM,02/10/2016 05:08:06 PM,Code 2 Transport,02/10/2016 06:07:41 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160412531-KM03 +113070078,T03,11101905,Medical Incident,11/03/2011,11/03/2011,11/03/2011 08:18:23 AM,11/03/2011 08:19:52 AM,11/03/2011 08:20:01 AM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/03/2011 08:20:55 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",113070078-T03 +132090030,77,13070562,Medical Incident,07/28/2013,07/27/2013,07/28/2013 01:11:38 AM,07/28/2013 01:12:44 AM,07/28/2013 01:15:00 AM,04/25/2016 01:51:36 PM,07/28/2013 01:18:10 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Code 3 Transport,07/28/2013 02:18:25 AM,600 Block of ALABAMA ST,SF,94110,B02,7,5426,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7610105720239, -122.411919466827)",132090030-77 +112470382,59,11081620,Medical Incident,09/04/2011,09/04/2011,09/04/2011 11:12:16 PM,09/04/2011 11:13:17 PM,09/04/2011 11:13:38 PM,09/04/2011 11:13:55 PM,09/04/2011 11:20:46 PM,09/04/2011 11:35:41 PM,09/04/2011 11:50:47 PM,Code 2 Transport,09/05/2011 12:07:53 AM,100 Block of WILSON ST,SF,94112,B09,33,8364,3,3,3,true,,1,MEDIC,2,9,11,Outer Mission,"(37.708532050649, -122.460226548629)",112470382-59 +160461031,88,16018452,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:47:49 AM,02/15/2016 09:51:03 AM,02/15/2016 09:52:06 AM,02/15/2016 09:55:49 AM,02/15/2016 10:10:31 AM,02/15/2016 10:34:06 AM,02/15/2016 10:44:28 AM,Code 2 Transport,02/15/2016 11:34:52 AM,0 Block of CONNECTICUT ST,San Francisco,94107,B03,29,2425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,10,Mission Bay,"(37.7657165510162, -122.397869370472)",160461031-88 +102830139,RC1,10090023,Medical Incident,10/10/2010,10/10/2010,10/10/2010 11:03:07 AM,10/10/2010 11:04:42 AM,10/10/2010 11:04:54 AM,10/10/2010 11:07:04 AM,10/10/2010 11:10:14 AM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 11:10:40 AM,0 Block of 7TH ST,SF,94103,B02,1,2315,E,E,3,true,,1,RESCUE CAPTAIN,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",102830139-RC1 +120350301,E03,12011734,Medical Incident,02/04/2012,02/04/2012,02/04/2012 06:25:49 PM,02/04/2012 06:28:12 PM,02/04/2012 06:28:45 PM,04/25/2016 02:00:17 PM,02/04/2012 06:30:13 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Other,02/04/2012 07:07:00 PM,1000 Block of POST ST,SF,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",120350301-E03 +123150301,E38,12104939,Structure Fire,11/10/2012,11/10/2012,11/10/2012 06:54:27 PM,11/10/2012 06:54:27 PM,11/10/2012 06:54:32 PM,11/10/2012 06:55:20 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 06:56:13 PM,GOUGH ST/CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7899518840675, -122.42561605443)",123150301-E38 +102380360,RS1,10075208,Structure Fire,08/26/2010,08/26/2010,08/26/2010 09:08:14 PM,08/26/2010 09:11:03 PM,08/26/2010 09:11:15 PM,08/26/2010 09:12:26 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 09:22:21 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,,1,RESCUE SQUAD,11,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",102380360-RS1 +123180080,E19,12105688,Medical Incident,11/13/2012,11/13/2012,11/13/2012 08:21:02 AM,11/13/2012 08:24:23 AM,11/13/2012 08:25:26 AM,11/13/2012 08:26:18 AM,11/13/2012 08:29:17 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 08:47:08 AM,100 Block of VALE AVE,SF,94132,B08,19,7464,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7348426988857, -122.484170400596)",123180080-E19 +121130214,E15,12037545,Medical Incident,04/22/2012,04/22/2012,04/22/2012 03:39:35 PM,04/22/2012 03:42:01 PM,04/22/2012 03:42:29 PM,04/22/2012 03:43:55 PM,04/22/2012 03:46:59 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 03:48:02 PM,0 Block of NORTON ST,SF,94112,B09,43,6117,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7250514707571, -122.435709128534)",121130214-E15 +132780434,54,13094725,Medical Incident,10/05/2013,10/05/2013,10/05/2013 11:46:19 PM,10/05/2013 11:48:22 PM,10/05/2013 11:48:43 PM,10/05/2013 11:49:11 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 11:58:02 PM,5100 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7458165668766, -122.44007828523)",132780434-54 +160203109,84,16008113,Medical Incident,01/20/2016,01/20/2016,01/20/2016 06:30:39 PM,01/20/2016 06:30:39 PM,01/20/2016 06:31:15 PM,01/20/2016 06:33:16 PM,01/20/2016 06:42:20 PM,01/20/2016 06:57:41 PM,01/20/2016 07:09:23 PM,Code 2 Transport,01/20/2016 07:34:06 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160203109-84 +160483392,72,16019479,Medical Incident,02/17/2016,02/17/2016,02/17/2016 07:13:40 PM,02/17/2016 07:16:21 PM,02/17/2016 07:17:15 PM,02/17/2016 07:17:33 PM,02/17/2016 07:28:54 PM,02/17/2016 07:50:17 PM,02/17/2016 08:11:55 PM,Code 2 Transport,02/17/2016 08:40:27 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160483392-72 +102530100,E22,10079868,Alarms,09/10/2010,09/10/2010,09/10/2010 08:37:32 AM,09/10/2010 08:38:32 AM,09/10/2010 08:38:59 AM,09/10/2010 08:40:05 AM,09/10/2010 08:45:20 AM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/10/2010 08:58:46 AM,800 Block of LA PLAYA,SF,94121,B07,34,7311,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7723244294895, -122.510034921211)",102530100-E22 +132930155,E01,13099688,Alarms,10/20/2013,10/20/2013,10/20/2013 12:16:13 PM,10/20/2013 12:17:33 PM,10/20/2013 12:17:41 PM,10/20/2013 12:18:48 PM,10/20/2013 12:20:14 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/20/2013 12:22:58 PM,0 Block of 5TH ST,SF,94103,B03,1,2247,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7832636870331, -122.407051190493)",132930155-E01 +160521565,62,16020807,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:32:49 PM,02/21/2016 12:33:07 PM,02/21/2016 12:34:05 PM,02/21/2016 12:34:28 PM,02/21/2016 12:40:14 PM,02/21/2016 01:02:18 PM,02/21/2016 01:31:22 PM,Code 2 Transport,02/21/2016 01:58:49 PM,700 Block of GIRARD ST,San Francisco,94134,B10,44,6326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7231572736013, -122.402920961359)",160521565-62 +122570043,E06,12084840,Medical Incident,09/13/2012,09/12/2012,09/13/2012 06:49:03 AM,09/13/2012 06:49:32 AM,09/13/2012 06:49:55 AM,09/13/2012 06:52:53 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/13/2012 06:54:23 AM,4300 Block of 17TH ST,SF,94114,B05,6,5254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7621597999525, -122.441543331544)",122570043-E06 +120870269,63,12028956,Medical Incident,03/27/2012,03/27/2012,03/27/2012 06:26:34 PM,03/27/2012 06:29:53 PM,03/27/2012 06:30:02 PM,03/27/2012 06:30:10 PM,03/27/2012 06:43:37 PM,03/27/2012 06:54:34 PM,03/27/2012 07:14:01 PM,Code 2 Transport,03/27/2012 07:40:31 PM,100 Block of DAKOTA ST,SF,94107,B10,37,2614,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",120870269-63 +110350182,E13,11011495,Medical Incident,02/04/2011,02/04/2011,02/04/2011 12:03:47 PM,02/04/2011 12:04:37 PM,02/04/2011 12:04:51 PM,02/04/2011 12:05:53 PM,02/04/2011 12:07:30 PM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Unable to Locate,02/04/2011 12:13:38 PM,500 Block of MARKET ST,SF,94104,B01,13,1164,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7905865694353, -122.399877480803)",110350182-E13 +120410027,86,12013525,Medical Incident,02/10/2012,02/09/2012,02/10/2012 02:01:45 AM,02/10/2012 02:03:30 AM,02/10/2012 02:03:47 AM,02/10/2012 02:03:56 AM,02/10/2012 02:09:20 AM,02/10/2012 02:19:01 AM,02/10/2012 02:39:29 AM,Code 2 Transport,02/10/2012 03:26:16 AM,1000 Block of KEARNY ST,SF,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7977714997338, -122.4055247968)",120410027-86 +102700236,E03,10085693,Medical Incident,09/27/2010,09/27/2010,09/27/2010 02:55:48 PM,09/27/2010 02:56:27 PM,09/27/2010 02:56:50 PM,09/27/2010 02:57:05 PM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,Other,09/27/2010 02:59:12 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",102700236-E03 +160302207,86,16011822,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:28:47 PM,01/30/2016 02:29:12 PM,01/30/2016 02:29:18 PM,01/30/2016 02:29:29 PM,01/30/2016 02:35:35 PM,01/30/2016 02:49:44 PM,01/30/2016 02:54:32 PM,Code 2 Transport,01/30/2016 03:51:17 PM,300 Block of 29TH ST,San Francisco,94131,B06,11,5563,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7435777003963, -122.427771265723)",160302207-86 +131890159,E08,13064403,Medical Incident,07/08/2013,07/08/2013,07/08/2013 12:18:03 PM,07/08/2013 12:18:41 PM,07/08/2013 12:19:21 PM,07/08/2013 12:20:17 PM,07/08/2013 12:24:20 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/08/2013 12:32:08 PM,900 Block of BRYANT ST,SF,94103,B03,8,2311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7729736182707, -122.406500466067)",131890159-E08 +102890191,E14,10092182,Medical Incident,10/16/2010,10/16/2010,10/16/2010 12:25:09 PM,10/16/2010 12:26:09 PM,10/16/2010 12:26:22 PM,10/16/2010 12:27:06 PM,10/16/2010 12:28:23 PM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/16/2010 12:38:43 PM,500 Block of 28TH AVE,SF,94121,B07,14,7226,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7789805573402, -122.487944517456)",102890191-E14 +160840173,72,16033214,Medical Incident,03/24/2016,03/23/2016,03/24/2016 01:48:51 AM,03/24/2016 01:48:51 AM,03/24/2016 01:48:55 AM,03/24/2016 01:49:14 AM,03/24/2016 01:52:29 AM,03/24/2016 02:08:44 AM,03/24/2016 02:13:53 AM,Code 2 Transport,03/24/2016 03:06:24 AM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",160840173-72 +140070308,AM08,14002597,Medical Incident,01/07/2014,01/07/2014,01/07/2014 07:01:55 PM,01/07/2014 07:03:58 PM,01/07/2014 07:05:14 PM,01/07/2014 07:05:44 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 07:17:30 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",140070308-AM08 +160242551,62,16009609,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:21:50 PM,01/24/2016 05:22:32 PM,01/24/2016 05:23:04 PM,01/24/2016 05:23:16 PM,01/24/2016 05:37:28 PM,01/24/2016 06:03:57 PM,01/24/2016 06:20:27 PM,Code 2 Transport,01/24/2016 07:08:12 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160242551-62 +103430182,T03,10109837,Elevator / Escalator Rescue,12/09/2010,12/09/2010,12/09/2010 11:13:11 AM,12/09/2010 11:14:40 AM,12/09/2010 11:16:14 AM,12/09/2010 11:17:38 AM,12/09/2010 11:22:03 AM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 11:31:02 AM,1300 Block of LARKIN ST,SF,94109,B04,41,1635,3,3,3,false,,1,TRUCK,2,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",103430182-T03 +160853631,63,16033960,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:51:59 PM,03/25/2016 08:53:34 PM,03/25/2016 08:53:46 PM,03/25/2016 08:54:42 PM,03/25/2016 09:02:03 PM,03/25/2016 09:10:57 PM,03/25/2016 09:39:39 PM,Code 2 Transport,03/25/2016 10:17:21 PM,24TH ST/NOE ST,San Francisco,94114,B06,11,5522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7514371592427, -122.431876685859)",160853631-63 +160153275,68,16006124,Medical Incident,01/15/2016,01/15/2016,01/15/2016 07:06:22 PM,01/15/2016 07:08:07 PM,01/15/2016 07:08:54 PM,01/15/2016 07:09:00 PM,01/15/2016 07:13:00 PM,01/15/2016 07:28:47 PM,01/15/2016 07:36:23 PM,Code 3 Transport,01/15/2016 08:20:19 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160153275-68 +112460348,91,11081266,Medical Incident,09/03/2011,09/03/2011,09/03/2011 09:39:39 PM,09/03/2011 09:39:39 PM,09/03/2011 09:39:39 PM,09/03/2011 09:40:52 PM,09/03/2011 09:44:44 PM,09/03/2011 09:54:16 PM,09/03/2011 10:12:22 PM,Code 2 Transport,09/03/2011 10:32:09 PM,MASON ST/EDDY ST,SF,94102,B03,1,1366,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",112460348-91 +131460158,B01,13049490,Water Rescue,05/26/2013,05/26/2013,05/26/2013 10:20:31 AM,05/26/2013 10:21:32 AM,05/26/2013 10:22:01 AM,05/26/2013 10:23:32 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Fire,05/26/2013 10:25:34 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,CHIEF,10,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",131460158-B01 +130280041,82,13009492,Medical Incident,01/28/2013,01/27/2013,01/28/2013 04:36:26 AM,01/28/2013 04:36:40 AM,01/28/2013 04:37:43 AM,01/28/2013 04:37:58 AM,01/28/2013 04:48:44 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Patient Declined Transport,01/28/2013 05:18:32 AM,600 Block of EXCELSIOR AVE,SF,94112,B09,43,6155,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7237257418198, -122.42849085299)",130280041-82 +110340174,E41,11011157,Structure Fire,02/03/2011,02/03/2011,02/03/2011 11:57:06 AM,02/03/2011 12:00:25 PM,02/03/2011 12:00:41 PM,02/03/2011 12:01:58 PM,02/03/2011 12:06:01 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,02/03/2011 12:06:04 PM,ELLIS ST/JONES ST,SF,94102,B03,3,1461,3,3,3,false,,1,ENGINE,6,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",110340174-E41 +160562399,KM11,16022444,Medical Incident,02/25/2016,02/25/2016,02/25/2016 03:08:08 PM,02/25/2016 03:08:08 PM,02/25/2016 03:09:03 PM,02/25/2016 03:09:30 PM,02/25/2016 03:49:52 PM,02/25/2016 04:14:47 PM,02/25/2016 04:15:00 PM,Code 2 Transport,02/25/2016 04:51:26 PM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Japantown,"(37.7848770596387, -122.442348914658)",160562399-KM11 +133360046,E41,13113777,Medical Incident,12/02/2013,12/01/2013,12/02/2013 06:49:43 AM,12/02/2013 06:51:12 AM,12/02/2013 06:52:15 AM,12/02/2013 06:54:03 AM,12/02/2013 06:56:02 AM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/02/2013 07:01:27 AM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",133360046-E41 +103120076,RC3,10099970,Medical Incident,11/08/2010,11/08/2010,11/08/2010 08:00:40 AM,11/08/2010 08:01:39 AM,11/08/2010 08:02:21 AM,04/25/2016 02:07:42 PM,11/08/2010 08:07:52 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/08/2010 08:20:22 AM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7530339738059, -122.418588598473)",103120076-RC3 +121410192,E02,12046852,Medical Incident,05/20/2012,05/20/2012,05/20/2012 12:39:39 PM,05/20/2012 12:42:17 PM,05/20/2012 12:42:34 PM,05/20/2012 12:43:49 PM,05/20/2012 12:45:54 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 12:59:40 PM,900 Block of GRANT AVE,SF,94108,B01,2,1312,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7955932512084, -122.406495596732)",121410192-E02 +110890369,66,11029555,Medical Incident,03/30/2011,03/30/2011,03/30/2011 09:08:26 PM,03/30/2011 09:08:45 PM,03/30/2011 09:08:55 PM,03/30/2011 09:09:20 PM,03/30/2011 09:12:27 PM,03/30/2011 09:26:07 PM,03/30/2011 09:47:25 PM,Code 2 Transport,03/30/2011 10:12:50 PM,SACRAMENTO ST/POLK ST,SF,94109,B04,41,3123,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7914958541783, -122.420873185108)",110890369-66 +120210385,87,12007299,Medical Incident,01/21/2012,01/21/2012,01/21/2012 09:04:18 PM,01/21/2012 09:05:11 PM,01/21/2012 09:05:27 PM,01/21/2012 09:07:45 PM,01/21/2012 09:10:18 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,No Merit,01/21/2012 09:33:11 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120210385-87 +160532384,KM12,16021296,Traffic Collision,02/22/2016,02/22/2016,02/22/2016 04:27:49 PM,02/22/2016 04:27:49 PM,02/22/2016 04:53:06 PM,02/22/2016 04:54:08 PM,02/22/2016 04:56:41 PM,02/22/2016 04:58:53 PM,02/22/2016 05:25:22 PM,Code 2 Transport,02/22/2016 05:54:54 PM,MISSION ST/17TH ST,San Francisco,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,3,2,9,Mission,"(37.7634292740134, -122.419512736792)",160532384-KM12 +123600103,67,12120447,Structure Fire,12/25/2012,12/25/2012,12/25/2012 10:33:21 AM,12/25/2012 10:36:36 AM,12/25/2012 10:36:43 AM,12/25/2012 10:36:59 AM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Other,12/25/2012 10:44:20 AM,14TH ST/ALPINE TR,SF,94117,B05,6,5211,3,3,3,true,Alarm,1,MEDIC,9,5,8,Castro/Upper Market,"(37.7672219301813, -122.437298991661)",123600103-67 +140060328,66,14002244,Medical Incident,01/06/2014,01/06/2014,01/06/2014 06:12:02 PM,01/06/2014 06:12:53 PM,01/06/2014 06:16:17 PM,01/06/2014 06:16:17 PM,01/06/2014 06:25:05 PM,01/06/2014 06:39:17 PM,01/06/2014 06:52:24 PM,Code 2 Transport,01/06/2014 07:19:41 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",140060328-66 +111330424,E44,11044102,Medical Incident,05/13/2011,05/13/2011,05/13/2011 04:33:08 PM,05/13/2011 04:34:17 PM,05/13/2011 04:36:12 PM,05/13/2011 04:37:34 PM,05/13/2011 04:51:26 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 04:51:29 PM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,true,,1,ENGINE,2,9,10,Visitacion Valley,"(37.7101556026027, -122.41260428896)",111330424-E44 +122340120,E21,12077551,Structure Fire,08/21/2012,08/21/2012,08/21/2012 10:48:07 AM,08/21/2012 10:50:08 AM,08/21/2012 10:50:22 AM,08/21/2012 10:57:49 AM,08/21/2012 11:00:15 AM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Other,08/21/2012 11:27:20 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Fire,1,ENGINE,4,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",122340120-E21 +110850068,86,11027927,Structure Fire,03/26/2011,03/25/2011,03/26/2011 05:12:18 AM,03/26/2011 05:12:19 AM,03/26/2011 05:12:19 AM,03/26/2011 05:14:26 AM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,04/25/2016 02:05:27 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,false,,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",110850068-86 +113150109,KM01,11104631,Medical Incident,11/11/2011,11/11/2011,11/11/2011 10:30:22 AM,11/11/2011 10:31:42 AM,11/11/2011 10:31:50 AM,11/11/2011 10:32:44 AM,04/25/2016 02:01:42 PM,11/11/2011 10:49:04 AM,11/11/2011 11:33:22 AM,Code 2 Transport,11/11/2011 11:05:23 AM,100 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,false,,1,PRIVATE,1,2,6,South of Market,"(37.7789597633583, -122.410718060304)",113150109-KM01 +113500071,T14,11116028,Structure Fire,12/16/2011,12/16/2011,12/16/2011 08:09:56 AM,12/16/2011 08:11:26 AM,12/16/2011 08:11:43 AM,12/16/2011 08:13:09 AM,12/16/2011 08:16:00 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/16/2011 08:17:00 AM,25TH AV/CALIFORNIA ST,SF,94121,B07,14,7214,3,3,3,false,,1,TRUCK,4,7,1,Outer Richmond,"(37.7838822347168, -122.485010943843)",113500071-T14 +130540202,85,13018275,Medical Incident,02/23/2013,02/23/2013,02/23/2013 03:15:03 PM,02/23/2013 03:15:03 PM,02/23/2013 03:19:14 PM,02/23/2013 03:19:50 PM,02/23/2013 03:33:37 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,04/25/2016 01:54:09 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",130540202-85 +133050392,93,13103795,Medical Incident,11/01/2013,11/01/2013,11/01/2013 06:48:39 PM,11/01/2013 06:49:11 PM,11/01/2013 06:49:44 PM,11/01/2013 06:50:04 PM,11/01/2013 06:51:57 PM,11/01/2013 07:04:27 PM,11/01/2013 07:11:15 PM,Code 2 Transport,11/01/2013 08:00:28 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",133050392-93 +133340066,E03,13113148,Medical Incident,11/30/2013,11/29/2013,11/30/2013 06:40:40 AM,11/30/2013 06:42:16 AM,11/30/2013 06:43:02 AM,11/30/2013 06:44:43 AM,11/30/2013 06:46:42 AM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/30/2013 06:56:08 AM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",133340066-E03 +121810334,83,12060398,Medical Incident,06/29/2012,06/29/2012,06/29/2012 08:38:54 PM,06/29/2012 08:39:42 PM,06/29/2012 08:40:52 PM,06/29/2012 08:40:59 PM,06/29/2012 08:43:08 PM,06/29/2012 09:17:44 PM,06/29/2012 09:39:27 PM,Code 2 Transport,06/29/2012 09:44:18 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",121810334-83 +112230185,D3,11073650,Structure Fire,08/11/2011,08/11/2011,08/11/2011 01:33:56 PM,08/11/2011 01:34:28 PM,08/11/2011 01:34:47 PM,08/11/2011 01:35:00 PM,08/11/2011 01:40:59 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,04/25/2016 02:03:13 PM,200 Block of CUMBERLAND ST,SF,94114,B06,11,5444,3,3,3,false,,1,CHIEF,8,6,8,Castro/Upper Market,"(37.7588840549508, -122.429141172461)",112230185-D3 +111520167,T02,11050285,Alarms,06/01/2011,06/01/2011,06/01/2011 12:55:18 PM,06/01/2011 12:56:05 PM,06/01/2011 12:56:57 PM,06/01/2011 12:58:24 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/01/2011 12:59:34 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,,1,TRUCK,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",111520167-T02 +131620258,RC3,13055102,Medical Incident,06/11/2013,06/11/2013,06/11/2013 04:15:29 PM,06/11/2013 04:15:29 PM,06/11/2013 04:32:52 PM,06/11/2013 04:33:40 PM,06/11/2013 04:50:30 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/11/2013 04:59:42 PM,20TH AV/WINSTON DR,SF,94132,B08,19,8862,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,8,7,Lakeshore,"(37.7269499157185, -122.476039471265)",131620258-RC3 +122650262,E07,12087625,Medical Incident,09/21/2012,09/21/2012,09/21/2012 06:43:35 PM,09/21/2012 06:43:49 PM,09/21/2012 06:45:28 PM,09/21/2012 06:47:24 PM,09/21/2012 06:50:17 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 07:10:37 PM,1200 Block of TREAT AVE,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7501648383073, -122.412831855469)",122650262-E07 +133250149,E36,13110355,Medical Incident,11/21/2013,11/21/2013,11/21/2013 11:28:02 AM,11/21/2013 11:28:42 AM,11/21/2013 11:29:35 AM,11/21/2013 11:31:25 AM,11/21/2013 11:34:41 AM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Other,11/21/2013 11:46:51 AM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",133250149-E36 +112650308,55,11087600,Medical Incident,09/22/2011,09/22/2011,09/22/2011 04:44:48 PM,09/22/2011 04:45:43 PM,09/22/2011 04:46:22 PM,09/22/2011 04:46:46 PM,09/22/2011 04:50:59 PM,09/22/2011 05:05:52 PM,09/22/2011 05:29:23 PM,Code 2 Transport,09/22/2011 06:03:41 PM,1300 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7513090308287, -122.420516937429)",112650308-55 +160881152,77,16034889,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:58:45 AM,03/28/2016 10:00:45 AM,03/28/2016 10:01:12 AM,03/28/2016 10:01:28 AM,03/28/2016 10:09:33 AM,03/28/2016 10:33:51 AM,03/28/2016 10:45:56 AM,Code 2 Transport,03/28/2016 11:23:35 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160881152-77 +130330062,E22,13011174,Medical Incident,02/02/2013,02/01/2013,02/02/2013 03:41:07 AM,02/02/2013 03:41:21 AM,02/02/2013 03:41:52 AM,02/02/2013 03:43:15 AM,02/02/2013 03:46:18 AM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/02/2013 03:48:35 AM,5TH AV/IRVING ST,SF,94122,B08,22,7325,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,5,5,Inner Sunset,"(37.7642248379085, -122.46203054108)",130330062-E22 +160722721,53,16028712,Medical Incident,03/12/2016,03/12/2016,03/12/2016 06:28:51 PM,03/12/2016 06:30:24 PM,03/12/2016 06:31:17 PM,03/12/2016 06:31:29 PM,03/12/2016 07:00:54 PM,03/12/2016 07:02:32 PM,03/12/2016 07:15:34 PM,Code 2 Transport,03/12/2016 08:00:47 PM,4000 Block of JUDAH ST,San Francisco,94122,B08,23,7655,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7603932695375, -122.505388569418)",160722721-53 +132120119,87,13071608,Medical Incident,07/31/2013,07/31/2013,07/31/2013 10:42:30 AM,07/31/2013 10:43:02 AM,07/31/2013 10:43:25 AM,07/31/2013 10:43:45 AM,07/31/2013 10:50:57 AM,07/31/2013 11:00:41 AM,07/31/2013 11:22:59 AM,Code 2 Transport,07/31/2013 11:49:53 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132120119-87 +110230070,E21,11007491,Medical Incident,01/23/2011,01/22/2011,01/23/2011 06:33:20 AM,01/23/2011 06:34:26 AM,01/23/2011 06:34:58 AM,01/23/2011 06:35:49 AM,01/23/2011 06:38:23 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/23/2011 06:39:08 AM,300 Block of STANYAN ST,SF,94118,B07,21,4556,3,3,3,false,,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7751493494797, -122.454629640097)",110230070-E21 +131970316,E03,13066933,Medical Incident,07/16/2013,07/16/2013,07/16/2013 07:08:11 PM,07/16/2013 07:09:54 PM,07/16/2013 07:10:38 PM,07/16/2013 07:11:43 PM,07/16/2013 07:16:35 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/16/2013 07:30:00 PM,TURK ST/TAYLOR ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",131970316-E03 +120550179,93,12018153,Medical Incident,02/24/2012,02/24/2012,02/24/2012 01:36:14 PM,02/24/2012 01:36:49 PM,02/24/2012 01:37:00 PM,02/24/2012 01:41:45 PM,02/24/2012 01:52:22 PM,02/24/2012 02:03:47 PM,02/24/2012 02:24:59 PM,Code 2 Transport,02/24/2012 02:47:26 PM,1700 Block of REVERE AVE,SF,94124,B10,17,6514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.733154464931, -122.392672357808)",120550179-93 +102370335,E09,10074839,Alarms,08/25/2010,08/25/2010,08/25/2010 06:37:55 PM,08/25/2010 06:38:44 PM,08/25/2010 06:38:49 PM,08/25/2010 06:39:23 PM,08/25/2010 06:42:08 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 07:00:34 PM,300 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",102370335-E09 +123550027,54,12118677,Medical Incident,12/20/2012,12/19/2012,12/20/2012 02:03:18 AM,12/20/2012 02:07:24 AM,12/20/2012 02:08:11 AM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 02:10:15 AM,300 Block of ELSIE ST,SF,94110,B06,32,5652,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7385960565627, -122.420200231971)",123550027-54 +102880181,B08,10091828,Other,10/15/2010,10/15/2010,10/15/2010 12:05:22 PM,10/15/2010 12:06:05 PM,10/15/2010 12:06:24 PM,10/15/2010 12:07:47 PM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,Fire,10/15/2010 12:19:33 PM,200 Block of MIDDLEFIELD DR,SF,94132,B08,19,8743,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7303132169002, -122.486205438256)",102880181-B08 +120540041,E15,12017720,Structure Fire,02/23/2012,02/22/2012,02/23/2012 04:22:34 AM,02/23/2012 04:25:02 AM,02/23/2012 04:25:24 AM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 04:32:05 AM,1900 Block of OCEAN AVE,SF,94127,B09,15,8456,3,3,3,true,Fire,1,ENGINE,11,9,7,West of Twin Peaks,"(37.7257598547537, -122.463278950857)",120540041-E15 +160521557,AM08,16020805,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:27:19 PM,02/21/2016 12:29:58 PM,02/21/2016 12:30:33 PM,02/21/2016 12:31:04 PM,02/21/2016 12:42:47 PM,02/21/2016 12:53:01 PM,02/21/2016 01:24:53 PM,Code 2 Transport,02/21/2016 01:51:40 PM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",160521557-AM08 +160812944,68,16032298,Medical Incident,03/21/2016,03/21/2016,03/21/2016 05:44:59 PM,03/21/2016 05:46:08 PM,03/21/2016 05:48:48 PM,03/21/2016 05:48:48 PM,03/21/2016 05:54:01 PM,03/21/2016 06:09:52 PM,03/21/2016 06:33:44 PM,Code 2 Transport,03/21/2016 06:50:20 PM,400 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8063948128853, -122.414598058157)",160812944-68 +132230255,85,13075381,Medical Incident,08/11/2013,08/11/2013,08/11/2013 04:47:57 PM,08/11/2013 04:48:08 PM,08/11/2013 04:48:36 PM,08/11/2013 04:48:50 PM,08/11/2013 04:51:16 PM,08/11/2013 05:01:07 PM,08/11/2013 05:12:59 PM,Code 2 Transport,08/11/2013 05:27:58 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",132230255-85 +160772811,89,16030690,Medical Incident,03/17/2016,03/17/2016,03/17/2016 04:31:29 PM,03/17/2016 04:33:29 PM,03/17/2016 04:42:32 PM,03/17/2016 04:42:37 PM,03/17/2016 05:08:05 PM,03/17/2016 05:12:35 PM,03/17/2016 05:15:08 PM,Code 2 Transport,03/17/2016 05:43:15 PM,1400 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",160772811-89 +131290245,67,13043649,Medical Incident,05/09/2013,05/09/2013,05/09/2013 04:06:28 PM,05/09/2013 04:08:41 PM,05/09/2013 04:09:07 PM,05/09/2013 04:09:34 PM,05/09/2013 04:28:55 PM,05/09/2013 04:50:10 PM,05/09/2013 04:50:16 PM,Code 2 Transport,05/09/2013 05:24:17 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",131290245-67 +130650105,E01,13021696,Medical Incident,03/06/2013,03/06/2013,03/06/2013 09:43:34 AM,03/06/2013 09:44:14 AM,03/06/2013 09:44:25 AM,03/06/2013 09:44:49 AM,03/06/2013 09:49:05 AM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,Other,03/06/2013 09:58:55 AM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",130650105-E01 +112570024,66,11084617,Medical Incident,09/14/2011,09/13/2011,09/14/2011 02:53:20 AM,09/14/2011 02:54:03 AM,09/14/2011 02:54:15 AM,09/14/2011 02:54:58 AM,09/14/2011 03:01:33 AM,09/14/2011 03:21:18 AM,09/14/2011 03:36:13 AM,Code 2 Transport,09/14/2011 04:01:38 AM,100 Block of AMHERST ST,SF,94134,B09,42,6147,3,3,3,true,,1,MEDIC,2,9,9,Excelsior,"(37.7275605128809, -122.416607387031)",112570024-66 +160811243,79,16032131,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:45:36 AM,03/21/2016 10:46:51 AM,03/21/2016 10:48:01 AM,03/21/2016 10:48:11 AM,03/21/2016 10:56:05 AM,03/21/2016 11:02:10 AM,03/21/2016 11:21:58 AM,Code 2 Transport,03/21/2016 11:47:58 AM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",160811243-79 +160500571,AM02,16019984,Medical Incident,02/19/2016,02/18/2016,02/19/2016 07:19:42 AM,02/19/2016 07:20:50 AM,02/19/2016 07:20:59 AM,02/19/2016 07:21:27 AM,02/19/2016 07:25:51 AM,02/19/2016 07:48:34 AM,02/19/2016 07:56:39 AM,Code 2 Transport,02/19/2016 08:26:14 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.7869733159879, -122.425845942974)",160500571-AM02 +130470310,T01,13016103,Gas Leak (Natural and LP Gases),02/16/2013,02/16/2013,02/16/2013 04:54:22 PM,02/16/2013 04:54:36 PM,02/16/2013 04:55:12 PM,02/16/2013 04:57:12 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/16/2013 05:09:12 PM,300 Block of CLEMENTINA ST,SF,94103,B07,1,2215,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7820387146172, -122.40232147638)",130470310-T01 +160364312,AM18,16014488,Medical Incident,02/05/2016,02/05/2016,02/05/2016 11:30:34 PM,02/05/2016 11:32:25 PM,02/05/2016 11:32:39 PM,02/05/2016 11:33:16 PM,02/05/2016 11:34:47 PM,02/05/2016 11:52:40 PM,02/06/2016 12:08:25 AM,Code 2 Transport,02/06/2016 01:00:28 AM,800 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7874037664371, -122.415827994726)",160364312-AM18 +133330151,E17,13112935,Medical Incident,11/29/2013,11/29/2013,11/29/2013 01:47:18 PM,11/29/2013 01:49:52 PM,11/29/2013 01:50:30 PM,11/29/2013 01:52:00 PM,11/29/2013 01:54:05 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/29/2013 02:06:32 PM,0 Block of BEATRICE LN,SF,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7308504053191, -122.379978149759)",133330151-E17 +132650149,B01,13089861,Alarms,09/22/2013,09/22/2013,09/22/2013 10:35:40 AM,09/22/2013 10:36:51 AM,09/22/2013 10:37:00 AM,09/22/2013 10:38:01 AM,09/22/2013 10:39:59 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Fire,09/22/2013 10:43:52 AM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,Alarm,1,CHIEF,1,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",132650149-B01 +160820548,53,16032473,Medical Incident,03/22/2016,03/21/2016,03/22/2016 07:26:00 AM,03/22/2016 07:26:00 AM,03/22/2016 07:26:27 AM,03/22/2016 07:26:56 AM,03/22/2016 07:39:55 AM,03/22/2016 08:04:58 AM,03/22/2016 08:20:54 AM,Code 2 Transport,03/22/2016 09:19:19 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",160820548-53 +120230187,D3,12007797,Structure Fire,01/23/2012,01/23/2012,01/23/2012 12:29:42 PM,01/23/2012 12:30:23 PM,01/23/2012 12:30:35 PM,01/23/2012 12:32:54 PM,01/23/2012 12:38:17 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 12:51:17 PM,1700 Block of CESAR CHAVEZ ST,SF,94107,B10,9,2634,3,3,3,false,Fire,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.7499142654366, -122.394328983742)",120230187-D3 +130400065,E08,13013560,Traffic Collision,02/09/2013,02/08/2013,02/09/2013 03:41:03 AM,02/09/2013 03:41:03 AM,02/09/2013 03:41:26 AM,02/09/2013 03:42:51 AM,02/09/2013 04:07:28 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Patient Declined Transport,02/09/2013 04:23:49 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",130400065-E08 +160720673,72,16028498,Medical Incident,03/12/2016,03/11/2016,03/12/2016 06:52:09 AM,03/12/2016 06:53:04 AM,03/12/2016 06:53:14 AM,03/12/2016 06:53:24 AM,03/12/2016 07:03:46 AM,03/12/2016 07:17:52 AM,03/12/2016 07:40:57 AM,Code 2 Transport,03/12/2016 08:03:43 AM,100 Block of ALBATROSS CT,San Francisco,94124,B10,17,6665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7283776507, -122.3722060123)",160720673-72 +121680276,E01,12055804,Medical Incident,06/16/2012,06/16/2012,06/16/2012 04:11:32 PM,06/16/2012 04:11:51 PM,06/16/2012 04:12:12 PM,06/16/2012 04:13:01 PM,06/16/2012 04:15:27 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/16/2012 04:15:43 PM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",121680276-E01 +113140060,96,11104236,Medical Incident,11/10/2011,11/09/2011,11/10/2011 07:48:20 AM,11/10/2011 07:48:59 AM,11/10/2011 07:49:05 AM,11/10/2011 07:50:06 AM,11/10/2011 08:00:29 AM,11/10/2011 08:14:11 AM,11/10/2011 08:21:02 AM,Code 2 Transport,11/10/2011 08:49:54 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",113140060-96 +131800016,79,13061059,Medical Incident,06/29/2013,06/28/2013,06/29/2013 01:14:18 AM,06/29/2013 01:15:43 AM,06/29/2013 01:16:00 AM,06/29/2013 01:16:51 AM,06/29/2013 01:21:34 AM,06/29/2013 01:31:05 AM,06/29/2013 01:41:19 AM,Code 2 Transport,06/29/2013 01:46:45 AM,5TH ST/HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",131800016-79 +132090025,E36,13070567,Medical Incident,07/28/2013,07/27/2013,07/28/2013 01:00:55 AM,07/28/2013 01:02:31 AM,07/28/2013 01:32:01 AM,07/28/2013 01:33:49 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/28/2013 01:44:25 AM,POND ST/17TH ST,SF,94114,B05,6,5252,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626681283104, -122.432124057517)",132090025-E36 +103080083,E05,10098612,Medical Incident,11/04/2010,11/04/2010,11/04/2010 08:06:34 AM,11/04/2010 08:12:17 AM,11/04/2010 08:12:57 AM,11/04/2010 08:15:33 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 08:18:42 AM,1700 Block of SUTTER ST,SF,94115,B04,38,3433,3,3,3,true,,1,ENGINE,3,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",103080083-E05 +123630150,T03,12121434,Structure Fire,12/28/2012,12/28/2012,12/28/2012 11:44:49 AM,12/28/2012 11:46:23 AM,12/28/2012 11:46:43 AM,12/28/2012 11:47:28 AM,12/28/2012 11:49:29 AM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 12:21:43 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,Fire,1,TRUCK,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",123630150-T03 +160593090,AM20,16023682,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:03:13 PM,02/28/2016 09:03:56 PM,02/28/2016 09:04:24 PM,02/28/2016 09:05:31 PM,02/28/2016 09:08:50 PM,02/28/2016 09:23:40 PM,02/28/2016 09:39:17 PM,Code 2 Transport,02/28/2016 10:14:15 PM,MISSION ST/4TH ST,San Francisco,94103,B03,1,2213,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",160593090-AM20 +130590321,55,13019925,Medical Incident,02/28/2013,02/28/2013,02/28/2013 07:57:52 PM,02/28/2013 07:58:03 PM,02/28/2013 07:58:58 PM,02/28/2013 07:59:14 PM,02/28/2013 08:01:20 PM,02/28/2013 08:11:24 PM,02/28/2013 08:26:41 PM,Code 2 Transport,02/28/2013 09:22:24 PM,TURK ST/DODGE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824204177221, -122.416982996397)",130590321-55 +113560042,B04,11118088,Structure Fire,12/22/2011,12/21/2011,12/22/2011 05:16:05 AM,12/22/2011 05:24:21 AM,12/22/2011 05:24:38 AM,12/22/2011 05:27:14 AM,12/22/2011 05:29:23 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/22/2011 05:43:55 AM,EDDY ST/FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,,1,CHIEF,2,5,5,Western Addition,"(37.7814283698384, -122.432328983123)",113560042-B04 +112850033,T16,11094258,Alarms,10/12/2011,10/11/2011,10/12/2011 04:05:34 AM,10/12/2011 04:06:48 AM,10/12/2011 04:07:11 AM,10/12/2011 04:09:16 AM,10/12/2011 04:12:04 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 04:18:10 AM,2500 Block of LYON ST,SF,94123,B04,16,4311,3,3,3,false,,1,TRUCK,2,7,2,Presidio,"(37.7942293589716, -122.446726558057)",112850033-T16 +160451621,71,16018114,Medical Incident,02/14/2016,02/14/2016,02/14/2016 12:48:56 PM,02/14/2016 12:51:12 PM,02/14/2016 12:51:27 PM,02/14/2016 12:55:00 PM,02/14/2016 01:02:54 PM,02/14/2016 01:28:23 PM,02/14/2016 01:34:02 PM,Code 2 Transport,02/14/2016 02:06:14 PM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7796886144323, -122.408201798882)",160451621-71 +103430389,RC1,10110026,Medical Incident,12/09/2010,12/09/2010,12/09/2010 09:25:15 PM,12/09/2010 09:27:47 PM,12/09/2010 09:27:54 PM,12/09/2010 10:16:59 PM,12/09/2010 10:20:21 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 10:54:58 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,RESCUE CAPTAIN,3,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",103430389-RC1 +140280243,AM12,14009576,Medical Incident,01/28/2014,01/28/2014,01/28/2014 03:06:41 PM,01/28/2014 03:08:35 PM,01/28/2014 03:08:59 PM,01/28/2014 03:10:07 PM,01/28/2014 03:15:26 PM,01/28/2014 03:21:16 PM,01/28/2014 03:37:36 PM,Code 3 Transport,01/28/2014 03:47:34 PM,100 Block of CAMBRIDGE ST,SF,94134,B09,42,635,3,2,2,false,Non Life-threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7297394945048, -122.419529070231)",140280243-AM12 +133270447,E06,13111303,Structure Fire,11/23/2013,11/23/2013,11/23/2013 11:57:32 PM,11/23/2013 11:57:32 PM,11/23/2013 11:59:59 PM,04/25/2016 01:49:36 PM,11/24/2013 12:00:40 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 12:01:17 AM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",133270447-E06 +140700011,54,14023467,Traffic Collision,03/11/2014,03/10/2014,03/11/2014 01:04:55 AM,03/11/2014 01:04:55 AM,03/11/2014 01:05:32 AM,03/11/2014 01:05:32 AM,03/11/2014 01:05:41 AM,03/11/2014 01:10:41 AM,03/11/2014 01:20:36 AM,Code 2 Transport,03/11/2014 02:01:38 AM,1000 Block of POLK ST,,94109,B04,3,3121,,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140700011-54 +123100336,E25,12103258,Medical Incident,11/05/2012,11/05/2012,11/05/2012 07:34:31 PM,11/05/2012 07:34:59 PM,11/05/2012 07:35:27 PM,11/05/2012 07:37:08 PM,11/05/2012 07:39:46 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 07:48:08 PM,22ND ST/PENNSYLVANIA AV,SF,94107,B10,37,2535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7576507860287, -122.393122630932)",123100336-E25 +112750369,62,11091173,Medical Incident,10/02/2011,10/02/2011,10/02/2011 09:29:04 PM,10/02/2011 09:29:44 PM,10/02/2011 09:29:57 PM,10/02/2011 09:30:02 PM,10/02/2011 09:36:26 PM,10/02/2011 09:52:40 PM,10/02/2011 09:57:24 PM,Code 2 Transport,10/02/2011 10:20:23 PM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",112750369-62 +110090042,T01,11002881,Alarms,01/09/2011,01/08/2011,01/09/2011 02:17:42 AM,01/09/2011 02:18:34 AM,01/09/2011 02:18:58 AM,01/09/2011 02:20:35 AM,01/09/2011 02:22:29 AM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/09/2011 02:28:46 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",110090042-T01 +160470215,AM20,16018762,Medical Incident,02/16/2016,02/15/2016,02/16/2016 02:19:47 AM,02/16/2016 02:19:47 AM,02/16/2016 02:20:52 AM,02/16/2016 02:21:21 AM,02/16/2016 02:28:07 AM,02/16/2016 03:06:22 AM,02/16/2016 03:16:21 AM,Code 2 Transport,02/16/2016 03:47:51 AM,200 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",160470215-AM20 +112740349,62,11090754,Medical Incident,10/01/2011,10/01/2011,10/01/2011 07:23:07 PM,10/01/2011 07:26:25 PM,10/01/2011 07:27:51 PM,10/01/2011 07:28:19 PM,10/01/2011 07:30:37 PM,10/01/2011 07:48:45 PM,10/01/2011 08:01:07 PM,Code 2 Transport,10/01/2011 08:32:53 PM,0 Block of GRANADA AVE,SF,94112,B09,33,8465,3,3,3,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7191314853575, -122.457220948481)",112740349-62 +102370320,E10,10074825,Alarms,08/25/2010,08/25/2010,08/25/2010 05:48:54 PM,08/25/2010 05:50:29 PM,08/25/2010 05:50:35 PM,08/25/2010 05:51:33 PM,08/25/2010 05:54:38 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 06:01:14 PM,3500 Block of JACKSON ST,SF,94118,B07,10,4425,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7901389360239, -122.453311569564)",102370320-E10 +122280283,E41,12075639,Alarms,08/15/2012,08/15/2012,08/15/2012 05:24:40 PM,08/15/2012 05:29:13 PM,08/15/2012 05:30:12 PM,04/25/2016 01:57:13 PM,08/15/2012 05:33:49 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 05:40:47 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",122280283-E41 +113070252,59,11102046,Medical Incident,11/03/2011,11/03/2011,11/03/2011 03:37:48 PM,11/03/2011 03:38:07 PM,11/03/2011 03:38:36 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,04/25/2016 02:01:49 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,2,2,true,,1,MEDIC,3,2,6,South of Market,"(37.7760463471271, -122.41128875661)",113070252-59 +160772961,KM11,16030707,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:04:23 PM,03/17/2016 05:04:23 PM,03/17/2016 05:13:31 PM,03/17/2016 05:41:31 PM,03/17/2016 05:41:31 PM,03/17/2016 05:47:50 PM,03/17/2016 06:05:17 PM,Code 2 Transport,03/17/2016 06:28:12 PM,700 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6364,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7352779641755, -122.406190479936)",160772961-KM11 +112860468,81,11094980,Medical Incident,10/13/2011,10/13/2011,10/13/2011 11:09:48 PM,10/13/2011 11:11:53 PM,10/13/2011 11:12:09 PM,10/13/2011 11:12:25 PM,10/13/2011 11:14:49 PM,10/13/2011 11:34:18 PM,10/13/2011 11:46:59 PM,Code 2 Transport,10/13/2011 11:13:33 PM,1700 Block of 44TH AVE,SF,94122,B08,23,7651,3,3,3,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7539955074466, -122.503258318497)",112860468-81 +121720267,E40,12057185,Medical Incident,06/20/2012,06/20/2012,06/20/2012 06:04:27 PM,06/20/2012 06:05:18 PM,06/20/2012 06:07:07 PM,06/20/2012 06:08:28 PM,06/20/2012 06:11:48 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 06:44:16 PM,500 Block of CASTENADA AVE,SF,94116,B08,39,8621,E,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7456546668463, -122.466872440759)",121720267-E40 +132940335,E13,13100116,Structure Fire,10/21/2013,10/21/2013,10/21/2013 07:58:15 PM,10/21/2013 07:58:15 PM,10/21/2013 07:58:24 PM,10/21/2013 07:59:39 PM,10/21/2013 08:02:42 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 08:02:47 PM,GRANT AV/BUSH ST,SF,94108,B01,13,1315,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7905652365323, -122.405573746363)",132940335-E13 +140480243,T17,14016404,Alarms,02/17/2014,02/17/2014,02/17/2014 05:20:46 PM,02/17/2014 05:22:16 PM,02/17/2014 05:22:42 PM,02/17/2014 05:24:06 PM,02/17/2014 05:29:57 PM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,Fire,02/17/2014 05:34:36 PM,100 Block of LELAND AVE,SF,94134,B09,44,6256,3,3,3,false,Alarm,1,TRUCK,2,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",140480243-T17 +160792538,76,16031462,Medical Incident,03/19/2016,03/19/2016,03/19/2016 04:08:00 PM,03/19/2016 04:08:50 PM,03/19/2016 04:08:59 PM,03/19/2016 04:09:06 PM,03/19/2016 04:13:47 PM,03/19/2016 04:34:21 PM,03/19/2016 04:47:33 PM,Code 2 Transport,03/19/2016 05:13:19 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160792538-76 +160602184,77,16023955,Medical Incident,02/29/2016,02/29/2016,02/29/2016 03:21:53 PM,02/29/2016 03:22:05 PM,02/29/2016 03:22:39 PM,02/29/2016 03:23:55 PM,02/29/2016 03:27:18 PM,02/29/2016 03:38:35 PM,02/29/2016 03:58:03 PM,Code 2 Transport,02/29/2016 04:27:55 PM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",160602184-77 +102320024,E32,10072894,Other,08/20/2010,08/19/2010,08/20/2010 02:39:45 AM,08/20/2010 02:40:30 AM,08/20/2010 02:40:51 AM,08/20/2010 02:42:08 AM,08/20/2010 02:47:33 AM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 02:51:43 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",102320024-E32 +160343058,52,16013545,Medical Incident,02/03/2016,02/03/2016,02/03/2016 07:23:32 PM,02/03/2016 07:25:19 PM,02/03/2016 07:25:46 PM,02/03/2016 07:25:54 PM,02/03/2016 07:34:24 PM,02/03/2016 07:43:21 PM,02/03/2016 08:03:52 PM,Code 2 Transport,02/03/2016 08:40:53 PM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",160343058-52 +121970066,T01,12065417,Alarms,07/15/2012,07/14/2012,07/15/2012 04:26:37 AM,07/15/2012 04:27:24 AM,07/15/2012 04:27:38 AM,07/15/2012 04:29:59 AM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,04/25/2016 01:57:43 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Alarm,1,TRUCK,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",121970066-T01 +111680096,T19,11055332,Alarms,06/17/2011,06/17/2011,06/17/2011 09:36:36 AM,06/17/2011 09:38:02 AM,06/17/2011 09:38:11 AM,04/25/2016 02:04:07 PM,06/17/2011 09:39:13 AM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 09:48:19 AM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,,1,TRUCK,1,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",111680096-T19 +133550342,78,13120794,Medical Incident,12/21/2013,12/21/2013,12/21/2013 06:33:32 PM,12/21/2013 06:36:04 PM,12/21/2013 06:36:41 PM,12/21/2013 06:37:08 PM,12/21/2013 06:47:25 PM,12/21/2013 07:08:49 PM,12/21/2013 07:32:16 PM,Code 2 Transport,12/21/2013 08:06:08 PM,0 Block of PINTO AVE,SF,94132,B08,19,8582,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7203696016077, -122.482187237209)",133550342-78 +111200160,E03,11039561,Medical Incident,04/30/2011,04/30/2011,04/30/2011 11:46:26 AM,04/30/2011 11:47:03 AM,04/30/2011 11:47:14 AM,04/30/2011 11:47:26 AM,04/30/2011 11:51:42 AM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 11:56:20 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7817569847968, -122.414263390372)",111200160-E03 +112600165,72,11085727,Medical Incident,09/17/2011,09/17/2011,09/17/2011 11:30:47 AM,09/17/2011 11:31:30 AM,09/17/2011 11:31:44 AM,09/17/2011 11:31:51 AM,09/17/2011 11:34:07 AM,09/17/2011 11:43:55 AM,09/17/2011 11:53:08 AM,Code 2 Transport,09/17/2011 12:12:40 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",112600165-72 +103180057,60,10101828,Medical Incident,11/14/2010,11/13/2010,11/14/2010 03:03:01 AM,11/14/2010 03:04:13 AM,11/14/2010 03:04:51 AM,11/14/2010 03:05:02 AM,11/14/2010 03:10:13 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,No Merit,11/14/2010 03:15:57 AM,4600 Block of MISSION ST,SF,94112,B09,43,6117,3,2,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7242679564906, -122.435032247159)",103180057-60 +160541409,KM02,16021544,Medical Incident,02/23/2016,02/23/2016,02/23/2016 11:22:49 AM,02/23/2016 11:25:48 AM,02/23/2016 11:26:23 AM,02/23/2016 11:27:00 AM,02/23/2016 11:37:02 AM,02/23/2016 11:40:10 AM,02/23/2016 11:47:13 AM,Code 3 Transport,02/23/2016 12:16:34 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",160541409-KM02 +160502274,85,16020142,Medical Incident,02/19/2016,02/19/2016,02/19/2016 03:22:44 PM,02/19/2016 03:23:55 PM,02/19/2016 03:27:25 PM,02/19/2016 03:28:01 PM,02/19/2016 03:50:32 PM,02/19/2016 04:02:11 PM,02/19/2016 04:20:22 PM,Code 2 Transport,02/19/2016 05:21:23 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160502274-85 +121640374,E36,12054559,Medical Incident,06/12/2012,06/12/2012,06/12/2012 10:34:39 PM,06/12/2012 10:35:05 PM,06/12/2012 10:35:15 PM,06/12/2012 10:36:33 PM,06/12/2012 10:38:11 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 10:41:05 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",121640374-E36 +123530357,T05,12118251,Structure Fire,12/18/2012,12/18/2012,12/18/2012 09:27:35 PM,12/18/2012 09:29:46 PM,12/18/2012 09:30:07 PM,12/18/2012 09:31:15 PM,12/18/2012 09:34:30 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/18/2012 09:31:42 PM,600 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,9,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",123530357-T05 +160393351,KM07,16015787,Medical Incident,02/08/2016,02/08/2016,02/08/2016 08:23:14 PM,02/08/2016 08:25:48 PM,02/08/2016 08:27:29 PM,02/08/2016 08:28:36 PM,02/08/2016 08:36:17 PM,02/08/2016 08:44:44 PM,02/08/2016 08:51:31 PM,Code 2 Transport,02/08/2016 09:27:31 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160393351-KM07 +160761498,82,16030117,Medical Incident,03/16/2016,03/16/2016,03/16/2016 11:38:06 AM,03/16/2016 11:40:26 AM,03/16/2016 11:44:54 AM,03/16/2016 11:45:02 AM,03/16/2016 11:51:49 AM,03/16/2016 12:23:32 PM,03/16/2016 12:41:03 PM,Code 2 Transport,03/16/2016 01:31:08 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160761498-82 +130610124,E03,13020413,Medical Incident,03/02/2013,03/02/2013,03/02/2013 10:01:24 AM,03/02/2013 10:02:08 AM,03/02/2013 10:02:38 AM,03/02/2013 10:03:32 AM,03/02/2013 10:05:15 AM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Other,03/02/2013 10:09:48 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",130610124-E03 +160691869,61,16027486,Medical Incident,03/09/2016,03/09/2016,03/09/2016 01:22:57 PM,03/09/2016 01:24:36 PM,03/09/2016 01:37:19 PM,03/09/2016 01:37:38 PM,03/09/2016 01:51:57 PM,03/09/2016 02:28:20 PM,03/09/2016 02:50:23 PM,Code 2 Transport,03/09/2016 03:32:23 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160691869-61 +122150325,AM04,12071486,Medical Incident,08/02/2012,08/02/2012,08/02/2012 09:15:50 PM,08/02/2012 09:16:22 PM,08/02/2012 09:16:57 PM,08/02/2012 09:18:53 PM,08/02/2012 09:22:16 PM,08/02/2012 09:40:45 PM,08/02/2012 09:56:40 PM,Code 3 Transport,08/02/2012 10:32:14 PM,0 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7202829536688, -122.3858679491)",122150325-AM04 +132380374,E07,13080458,Outside Fire,08/26/2013,08/26/2013,08/26/2013 09:17:03 PM,08/26/2013 09:18:44 PM,08/26/2013 09:18:57 PM,08/26/2013 09:21:00 PM,08/26/2013 09:23:18 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 09:28:51 PM,500 Block of DOLORES ST,SF,94110,B06,7,5435,3,3,3,true,Fire,1,ENGINE,1,6,8,Mission,"(37.7606376831681, -122.425843696986)",132380374-E07 +111340022,KM11,11044449,Medical Incident,05/14/2011,05/13/2011,05/14/2011 02:02:03 AM,05/14/2011 02:02:03 AM,05/14/2011 02:02:42 AM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,Other,04/25/2016 02:04:38 PM,11TH ST/FOLSOM ST,SF,94103,B02,36,5114,3,E,3,false,,1,PRIVATE,3,2,6,Mission,"(37.771863706441, -122.414026708032)",111340022-KM11 +123060142,81,12101610,Medical Incident,11/01/2012,11/01/2012,11/01/2012 10:34:18 AM,11/01/2012 10:35:25 AM,11/01/2012 10:35:49 AM,04/25/2016 01:56:00 PM,11/01/2012 10:37:44 AM,11/01/2012 10:49:18 AM,11/01/2012 11:22:41 AM,Code 2 Transport,11/01/2012 12:08:23 PM,900 Block of TARAVAL ST,SF,94116,B08,40,7434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7430820680504, -122.47620835162)",123060142-81 +160361193,AM06,16014177,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:36:34 AM,02/05/2016 09:37:39 AM,02/05/2016 09:38:52 AM,02/05/2016 09:39:31 AM,02/05/2016 09:57:17 AM,02/05/2016 10:25:05 AM,02/05/2016 10:58:40 AM,Code 2 Transport,02/05/2016 11:35:21 AM,100 Block of NAGLEE AVE,San Francisco,94112,B09,33,8346,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7123666278778, -122.447153827479)",160361193-AM06 +160680370,KM03,16026991,Medical Incident,03/08/2016,03/07/2016,03/08/2016 05:41:42 AM,03/08/2016 05:43:04 AM,03/08/2016 05:43:21 AM,03/08/2016 05:43:56 AM,03/08/2016 05:46:26 AM,03/08/2016 06:05:13 AM,03/08/2016 06:21:06 AM,Code 2 Transport,03/08/2016 07:27:21 AM,400 Block of 26TH AVE,San Francisco,94121,B07,14,7221,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7810031903924, -122.485945544565)",160680370-KM03 +130960259,83,13032242,Medical Incident,04/06/2013,04/06/2013,04/06/2013 04:23:36 PM,04/06/2013 04:23:44 PM,04/06/2013 04:23:58 PM,04/06/2013 04:24:34 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 04:25:33 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",130960259-83 +110840285,E03,11027753,Medical Incident,03/25/2011,03/25/2011,03/25/2011 04:50:35 PM,03/25/2011 04:51:16 PM,03/25/2011 04:51:33 PM,03/25/2011 04:51:58 PM,03/25/2011 04:53:59 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 05:01:50 PM,EDDY ST/LARKIN ST,SF,94109,B02,3,1643,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",110840285-E03 +130970334,T15,13032662,Medical Incident,04/07/2013,04/07/2013,04/07/2013 08:36:30 PM,04/07/2013 08:36:50 PM,04/07/2013 08:37:17 PM,04/07/2013 08:39:03 PM,04/07/2013 08:40:56 PM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Other,04/07/2013 08:46:27 PM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,E,2,2,false,Non Life-threatening,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",130970334-T15 +160421322,KM04,16016818,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:52:36 AM,02/11/2016 10:53:08 AM,02/11/2016 10:53:28 AM,02/11/2016 10:54:32 AM,02/11/2016 10:58:28 AM,02/11/2016 11:19:15 AM,02/11/2016 11:43:04 AM,Code 2 Transport,02/11/2016 12:12:44 PM,1400 Block of SCOTT ST,San Francisco,94115,B04,5,413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7831990201184, -122.437672374097)",160421322-KM04 +132910003,E01,13098860,Medical Incident,10/18/2013,10/17/2013,10/18/2013 12:11:34 AM,10/18/2013 12:13:11 AM,10/18/2013 12:13:24 AM,10/18/2013 12:15:33 AM,10/18/2013 12:17:26 AM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/18/2013 12:21:02 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7799892619986, -122.407376463936)",132910003-E01 +112960017,65,11098053,Medical Incident,10/23/2011,10/22/2011,10/23/2011 12:53:00 AM,10/23/2011 12:53:54 AM,10/23/2011 12:54:20 AM,10/23/2011 12:54:46 AM,10/23/2011 01:01:10 AM,10/23/2011 01:22:31 AM,10/23/2011 01:29:02 AM,Code 2 Transport,10/23/2011 02:14:23 AM,100 Block of UTAH ST,SF,94103,B02,29,2351,3,3,3,true,,1,MEDIC,2,2,10,Mission,"(37.7677826861899, -122.406668803339)",112960017-65 +160222664,AM14,16008853,Medical Incident,01/22/2016,01/22/2016,01/22/2016 04:54:21 PM,01/22/2016 04:56:40 PM,01/22/2016 04:57:19 PM,01/22/2016 04:58:08 PM,01/22/2016 05:14:47 PM,01/22/2016 05:56:55 PM,01/22/2016 05:57:06 PM,Code 2 Transport,01/22/2016 06:06:52 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160222664-AM14 +140430210,E37,14014632,Medical Incident,02/12/2014,02/12/2014,02/12/2014 01:59:04 PM,02/12/2014 01:59:51 PM,02/12/2014 02:00:50 PM,02/12/2014 02:01:39 PM,02/12/2014 02:03:15 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Code 2 Transport,02/12/2014 02:11:41 PM,600 Block of DE HARO ST,SF,94107,B10,37,2511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.761655083303, -122.401193113905)",140430210-E37 +102530395,E39,10080113,Structure Fire,09/10/2010,09/10/2010,09/10/2010 10:40:22 PM,09/10/2010 10:40:25 PM,09/10/2010 10:40:35 PM,09/10/2010 10:44:09 PM,09/10/2010 10:48:15 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 11:07:35 PM,1500 Block of OCEAN AVE,SF,94112,B09,15,8474,3,3,3,true,,1,ENGINE,6,9,7,Oceanview/Merced/Ingleside,"(37.7243455704597, -122.458727990325)",102530395-E39 +102310114,E13,10072644,Medical Incident,08/19/2010,08/19/2010,08/19/2010 10:02:16 AM,08/19/2010 10:03:12 AM,08/19/2010 10:05:02 AM,08/19/2010 10:05:55 AM,08/19/2010 10:06:53 AM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/19/2010 10:16:33 AM,200 Block of CALIFORNIA ST,SF,94111,B01,13,1162,E,E,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7933383335289, -122.399381167233)",102310114-E13 +160163235,53,16006572,Medical Incident,01/16/2016,01/16/2016,01/16/2016 08:06:46 PM,01/16/2016 08:08:15 PM,01/16/2016 08:08:38 PM,01/16/2016 08:08:52 PM,01/16/2016 08:14:28 PM,01/16/2016 08:28:15 PM,01/16/2016 08:44:21 PM,Code 2 Transport,01/16/2016 09:07:24 PM,MASON ST/OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862026638911, -122.409683072135)",160163235-53 +160463637,58,16018696,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:31:06 PM,02/15/2016 09:32:09 PM,02/15/2016 09:32:41 PM,02/15/2016 09:32:55 PM,02/15/2016 09:38:14 PM,02/15/2016 09:57:22 PM,02/15/2016 10:26:02 PM,Code 2 Transport,02/15/2016 10:54:47 PM,500 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7777260131845, -122.473696437291)",160463637-58 +120170359,E40,12005860,Citizen Assist / Service Call,01/17/2012,01/17/2012,01/17/2012 10:54:14 PM,01/17/2012 10:56:52 PM,01/17/2012 10:57:36 PM,01/17/2012 10:59:10 PM,01/17/2012 11:01:48 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 11:05:34 PM,2500 Block of 24TH AVE,SF,94116,B08,40,7442,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7400213164931, -122.480783251007)",120170359-E40 +140200210,T03,14006882,Alarms,01/20/2014,01/20/2014,01/20/2014 02:53:41 PM,01/20/2014 02:55:01 PM,01/20/2014 02:55:26 PM,01/20/2014 02:56:39 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/20/2014 03:05:30 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",140200210-T03 +120380366,E03,12012847,Alarms,02/07/2012,02/07/2012,02/07/2012 11:39:31 PM,02/07/2012 11:41:33 PM,02/07/2012 11:41:37 PM,02/07/2012 11:43:03 PM,02/07/2012 11:44:43 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Other,02/07/2012 11:48:05 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",120380366-E03 +132590054,B08,13087510,Traffic Collision,09/16/2013,09/15/2013,09/16/2013 07:13:07 AM,09/16/2013 07:14:14 AM,09/16/2013 07:27:54 AM,09/16/2013 07:28:55 AM,09/16/2013 07:32:52 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/16/2013 07:42:16 AM,30TH AV/LINCOLN WY,SF,94122,B08,22,7512,2,2,2,false,Non Life-threatening,1,CHIEF,6,8,4,Sunset/Parkside,"(37.7649288570358, -122.489042083169)",132590054-B08 +131770310,KM04,13060187,Medical Incident,06/26/2013,06/26/2013,06/26/2013 06:08:06 PM,06/26/2013 06:11:26 PM,06/26/2013 06:11:52 PM,06/26/2013 06:13:47 PM,04/25/2016 01:52:06 PM,06/26/2013 06:31:22 PM,06/26/2013 06:37:06 PM,Code 2 Transport,06/26/2013 07:25:15 PM,GEARY BL/ARGUELLO BL,SF,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",131770310-KM04 +112570278,AM18,11084826,Medical Incident,09/14/2011,09/14/2011,09/14/2011 06:45:06 PM,09/14/2011 06:45:07 PM,09/14/2011 06:46:59 PM,04/25/2016 02:02:40 PM,09/14/2011 06:57:55 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,No Merit,09/14/2011 07:06:08 PM,NOE ST/MARKET ST,SF,94114,B05,6,5231,2,2,2,false,,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",112570278-AM18 +111110104,E10,11036594,Medical Incident,04/21/2011,04/21/2011,04/21/2011 09:26:04 AM,04/21/2011 09:27:14 AM,04/21/2011 09:27:36 AM,04/21/2011 09:29:45 AM,04/21/2011 09:32:20 AM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/21/2011 09:36:51 AM,2100 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,,1,ENGINE,2,5,5,Western Addition,"(37.783357968274, -122.438601387081)",111110104-E10 +160020442,67,16000617,Medical Incident,01/02/2016,01/01/2016,01/02/2016 04:34:55 AM,01/02/2016 04:35:30 AM,01/02/2016 04:36:14 AM,01/02/2016 04:36:23 AM,01/02/2016 04:42:17 AM,01/02/2016 05:07:13 AM,01/02/2016 05:16:43 AM,Code 2 Transport,01/02/2016 05:49:33 AM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",160020442-67 +123260259,60,12108520,Medical Incident,11/21/2012,11/21/2012,11/21/2012 05:08:44 PM,11/21/2012 05:08:55 PM,11/21/2012 05:09:23 PM,11/21/2012 05:10:13 PM,11/21/2012 05:11:02 PM,11/21/2012 05:26:31 PM,11/21/2012 05:34:46 PM,Code 2 Transport,11/21/2012 06:01:49 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",123260259-60 +111150176,E22,11037937,Medical Incident,04/25/2011,04/25/2011,04/25/2011 12:12:25 PM,04/25/2011 12:13:12 PM,04/25/2011 12:14:26 PM,04/25/2011 12:15:13 PM,04/25/2011 12:16:45 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 12:27:00 PM,900 Block of LINCOLN WAY,SF,94122,B08,22,7333,3,3,3,false,,1,ENGINE,1,7,5,Inner Sunset,"(37.7657522392824, -122.46804064381)",111150176-E22 +120980025,KM15,12032363,Medical Incident,04/07/2012,04/06/2012,04/07/2012 01:54:52 AM,04/07/2012 01:56:13 AM,04/07/2012 01:57:54 AM,04/07/2012 01:58:59 AM,04/07/2012 02:09:47 AM,04/25/2016 01:59:17 PM,04/25/2016 01:59:17 PM,Patient Declined Transport,04/07/2012 02:43:45 AM,LAKE MERCED BL/STATE DR,SF,94132,B08,19,8855,3,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",120980025-KM15 +160310003,79,16012002,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:59:41 PM,01/31/2016 12:00:21 AM,01/31/2016 12:01:09 AM,01/31/2016 12:01:19 AM,01/31/2016 12:28:21 AM,01/31/2016 12:28:25 AM,01/31/2016 12:32:38 AM,Code 2 Transport,01/31/2016 01:06:34 AM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",160310003-79 +160632694,67,16025164,Medical Incident,03/03/2016,03/03/2016,03/03/2016 04:55:43 PM,03/03/2016 04:57:40 PM,03/03/2016 04:58:17 PM,03/03/2016 04:58:44 PM,03/03/2016 05:32:11 PM,03/03/2016 05:32:12 PM,03/03/2016 06:33:32 PM,Code 2 Transport,03/03/2016 07:06:35 PM,1000 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7191956969734, -122.388416108229)",160632694-67 +120160025,88,12005272,Medical Incident,01/16/2012,01/15/2012,01/16/2012 03:00:37 AM,01/16/2012 03:01:19 AM,01/16/2012 03:01:36 AM,01/16/2012 03:01:43 AM,01/16/2012 03:04:26 AM,01/16/2012 03:32:05 AM,01/16/2012 03:45:41 AM,Code 2 Transport,01/16/2012 04:06:47 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",120160025-88 +160673550,AM18,16026942,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:06:38 PM,03/07/2016 11:08:17 PM,03/07/2016 11:09:58 PM,03/07/2016 11:09:58 PM,03/07/2016 11:18:34 PM,03/07/2016 11:30:21 PM,03/07/2016 11:43:44 PM,Code 2 Transport,03/08/2016 12:22:02 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160673550-AM18 +131940083,E01,13065879,Structure Fire,07/13/2013,07/13/2013,07/13/2013 08:50:03 AM,07/13/2013 08:50:06 AM,07/13/2013 08:50:37 AM,07/13/2013 08:51:47 AM,07/13/2013 08:53:26 AM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 08:53:29 AM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7785051047871, -122.405615267864)",131940083-E01 +111800353,E08,11059581,Vehicle Fire,06/29/2011,06/29/2011,06/29/2011 11:32:51 PM,06/29/2011 11:34:35 PM,06/29/2011 11:34:39 PM,06/29/2011 11:36:55 PM,06/29/2011 11:39:48 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/29/2011 11:45:16 PM,400 Block of BERRY ST,SF,94107,B03,8,2262,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",111800353-E08 +140420196,E14,14014286,Medical Incident,02/11/2014,02/11/2014,02/11/2014 12:40:28 PM,02/11/2014 12:43:25 PM,02/11/2014 12:43:58 PM,02/11/2014 12:45:53 PM,02/11/2014 12:53:21 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/11/2014 01:02:00 PM,4400 Block of GEARY BLVD,SF,94118,B07,31,7135,2,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7810280644975, -122.466965657749)",140420196-E14 +130670087,84,13022250,Medical Incident,03/08/2013,03/08/2013,03/08/2013 08:47:46 AM,03/08/2013 08:48:29 AM,03/08/2013 08:48:48 AM,03/08/2013 08:50:17 AM,03/08/2013 08:51:37 AM,03/08/2013 08:59:00 AM,03/08/2013 09:34:25 AM,Code 2 Transport,03/08/2013 10:06:55 AM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",130670087-84 +160751133,75,16029653,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:16:28 AM,03/15/2016 10:18:21 AM,03/15/2016 10:19:44 AM,03/15/2016 10:19:55 AM,03/15/2016 10:31:34 AM,03/15/2016 10:41:37 AM,03/15/2016 11:09:07 AM,Code 2 Transport,03/15/2016 11:50:23 AM,0 Block of SAN LORENZO WAY,San Francisco,94127,B08,39,8565,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7389777646184, -122.464255454182)",160751133-75 +160601240,87,16023858,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:44:25 AM,02/29/2016 10:47:25 AM,02/29/2016 10:49:24 AM,02/29/2016 10:50:16 AM,02/29/2016 10:59:52 AM,02/29/2016 11:14:28 AM,02/29/2016 11:22:20 AM,Code 2 Transport,02/29/2016 11:50:27 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160601240-87 +133400191,78,13115236,Structure Fire,12/06/2013,12/06/2013,12/06/2013 12:34:20 PM,12/06/2013 12:35:33 PM,12/06/2013 12:36:06 PM,12/06/2013 12:36:25 PM,12/06/2013 12:38:31 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:43:09 PM,1400 Block of 44TH AVE,SF,94122,B08,23,7655,3,3,3,true,Alarm,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7595893401722, -122.503649903811)",133400191-78 +120090139,T03,12003074,Medical Incident,01/09/2012,01/09/2012,01/09/2012 10:07:52 AM,01/09/2012 10:08:54 AM,01/09/2012 10:09:45 AM,01/09/2012 10:11:17 AM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/09/2012 10:14:19 AM,400 Block of MCALLISTER ST,SF,94102,B02,3,3112,B,2,2,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",120090139-T03 +122940141,E07,12097471,Fuel Spill,10/20/2012,10/20/2012,10/20/2012 10:28:25 AM,10/20/2012 10:31:02 AM,10/20/2012 10:31:50 AM,10/20/2012 10:43:25 AM,10/20/2012 10:48:12 AM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 10:54:22 AM,100 Block of MANCHESTER ST,SF,94110,B06,11,5663,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7446356347755, -122.414198324538)",122940141-E07 +160772401,KM08,16030645,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:55:56 PM,03/17/2016 03:00:14 PM,03/17/2016 03:00:50 PM,03/17/2016 03:01:20 PM,03/17/2016 03:32:42 PM,03/17/2016 03:35:31 PM,03/17/2016 03:50:26 PM,Code 2 Transport,03/17/2016 04:23:14 PM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",160772401-KM08 +160762630,67,16030229,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:15:41 PM,03/16/2016 04:17:40 PM,03/16/2016 04:17:52 PM,03/16/2016 04:18:00 PM,03/16/2016 04:49:13 PM,03/16/2016 04:49:16 PM,03/16/2016 04:53:48 PM,Code 2 Transport,03/16/2016 05:35:39 PM,CABRILLO ST/12TH AV,San Francisco,94118,B07,31,7143,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7750765642202, -122.470297903243)",160762630-67 +130900341,RS1,13030259,Structure Fire,03/31/2013,03/31/2013,03/31/2013 10:14:06 PM,03/31/2013 10:16:12 PM,03/31/2013 10:18:36 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 10:23:08 PM,3100 Block of BRODERICK ST,SF,94123,B04,16,4223,3,3,3,false,Alarm,1,RESCUE SQUAD,13,4,2,Marina,"(37.799286568083, -122.444348958408)",130900341-RS1 +133240028,B04,13109885,Alarms,11/20/2013,11/19/2013,11/20/2013 02:28:51 AM,11/20/2013 02:30:12 AM,11/20/2013 02:30:41 AM,11/20/2013 02:32:14 AM,11/20/2013 02:35:07 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Fire,11/20/2013 02:37:21 AM,1200 Block of BUCHANAN ST,SF,94115,B02,5,3426,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7816468439098, -122.428929933146)",133240028-B04 +160260309,78,16010177,Medical Incident,01/26/2016,01/25/2016,01/26/2016 02:59:41 AM,01/26/2016 02:59:41 AM,01/26/2016 03:00:19 AM,01/26/2016 03:00:30 AM,01/26/2016 03:07:24 AM,01/26/2016 03:31:52 AM,01/26/2016 03:36:08 AM,Code 2 Transport,01/26/2016 04:09:18 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160260309-78 +160330684,88,16012869,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:03:33 AM,02/02/2016 08:03:58 AM,02/02/2016 08:04:09 AM,02/02/2016 08:04:35 AM,02/02/2016 08:07:29 AM,02/02/2016 08:25:07 AM,02/02/2016 08:48:53 AM,Code 2 Transport,02/02/2016 09:07:17 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160330684-88 +102590253,E03,10081868,Medical Incident,09/16/2010,09/16/2010,09/16/2010 02:55:56 PM,09/16/2010 02:57:11 PM,09/16/2010 02:59:44 PM,09/16/2010 03:00:31 PM,09/16/2010 03:05:08 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 03:10:15 PM,MARKET ST/7TH ST,SF,94103,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",102590253-E03 +123200001,E36,12106238,Traffic Collision,11/15/2012,11/14/2012,11/15/2012 12:07:06 AM,11/15/2012 12:07:23 AM,11/15/2012 12:07:48 AM,11/15/2012 12:09:53 AM,11/15/2012 12:12:20 AM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Other,11/15/2012 12:16:08 AM,OCTAVIA ST/MARKET ST,SF,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",123200001-E36 +112590010,E03,11085250,Structure Fire,09/16/2011,09/15/2011,09/16/2011 12:50:36 AM,09/16/2011 12:50:36 AM,09/16/2011 12:50:44 AM,09/16/2011 12:51:56 AM,09/16/2011 12:53:25 AM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/16/2011 12:53:57 AM,FRANKLIN ST/GEARY BL,SF,94109,B04,3,3222,3,3,3,true,,1,ENGINE,1,4,5,Western Addition,"(37.7854822436864, -122.423027555652)",112590010-E03 +160782494,68,16031067,Medical Incident,03/18/2016,03/18/2016,03/18/2016 03:58:26 PM,03/18/2016 03:59:20 PM,03/18/2016 04:00:02 PM,03/18/2016 04:00:23 PM,03/18/2016 04:03:25 PM,03/18/2016 04:20:51 PM,03/18/2016 04:30:00 PM,Code 3 Transport,03/18/2016 05:33:28 PM,1700 Block of DOLORES ST,San Francisco,94110,B06,32,5575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.741569515463, -122.424013506637)",160782494-68 +103180392,85,10102102,Medical Incident,11/14/2010,11/14/2010,11/14/2010 10:40:26 PM,11/14/2010 10:41:21 PM,11/14/2010 10:43:25 PM,11/14/2010 10:43:34 PM,11/14/2010 10:46:18 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,No Merit,11/14/2010 10:54:47 PM,700 Block of NATOMA ST,SF,94103,B02,1,2318,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",103180392-85 +160710921,55,16028145,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:12:09 AM,03/11/2016 09:12:52 AM,03/11/2016 09:13:11 AM,03/11/2016 09:14:21 AM,03/11/2016 09:25:13 AM,03/11/2016 09:39:13 AM,03/11/2016 09:56:17 AM,Code 2 Transport,03/11/2016 10:55:51 AM,1600 Block of KEITH ST,San Francisco,94124,B10,17,6551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7309508792927, -122.388067096627)",160710921-55 +120660187,83,12021828,Medical Incident,03/06/2012,03/06/2012,03/06/2012 12:28:17 PM,03/06/2012 12:29:23 PM,03/06/2012 12:30:01 PM,03/06/2012 12:30:52 PM,03/06/2012 12:36:14 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 12:37:43 PM,CLEMENTINA ST/9TH ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7741996547315, -122.412170113572)",120660187-83 +131240241,KM12,13041866,Medical Incident,05/04/2013,05/04/2013,05/04/2013 02:38:38 PM,05/04/2013 02:39:01 PM,05/04/2013 02:55:49 PM,05/04/2013 02:56:14 PM,05/04/2013 03:17:54 PM,05/04/2013 03:24:18 PM,05/04/2013 03:47:17 PM,Code 2 Transport,05/04/2013 04:15:31 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",131240241-KM12 +160670299,88,16026601,Medical Incident,03/07/2016,03/06/2016,03/07/2016 04:56:21 AM,03/07/2016 04:56:51 AM,03/07/2016 04:57:52 AM,03/07/2016 04:58:01 AM,03/07/2016 04:59:40 AM,03/07/2016 05:09:14 AM,03/07/2016 05:26:14 AM,Code 2 Transport,03/07/2016 05:53:53 AM,3RD ST/MARIN ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7490047598095, -122.387456311596)",160670299-88 +111940041,KM15,11063934,Medical Incident,07/13/2011,07/12/2011,07/13/2011 04:09:58 AM,07/13/2011 04:15:57 AM,07/13/2011 04:18:06 AM,07/13/2011 04:18:43 AM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 04:32:07 AM,900 Block of PLYMOUTH AVE,SF,94112,B09,33,8465,2,2,2,false,,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7191336251194, -122.45618965375)",111940041-KM15 +160671458,52,16026745,Medical Incident,03/07/2016,03/07/2016,03/07/2016 12:42:52 PM,03/07/2016 12:42:52 PM,03/07/2016 12:44:02 PM,03/07/2016 12:44:08 PM,03/07/2016 12:55:32 PM,03/07/2016 01:48:41 PM,03/07/2016 02:07:33 PM,Code 2 Transport,03/07/2016 02:48:22 PM,TREAT AV/HARRISON ST,San Francisco,94110,B02,7,5245,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7654476102712, -122.413105244954)",160671458-52 +160362038,KM08,16014266,Medical Incident,02/05/2016,02/05/2016,02/05/2016 01:25:26 PM,02/05/2016 01:25:26 PM,02/05/2016 01:25:59 PM,02/05/2016 01:27:03 PM,02/05/2016 01:35:51 PM,02/05/2016 01:55:09 PM,02/05/2016 02:21:32 PM,Code 2 Transport,02/05/2016 03:23:36 PM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",160362038-KM08 +123080171,E07,12102382,Medical Incident,11/03/2012,11/03/2012,11/03/2012 01:04:28 PM,11/03/2012 01:05:52 PM,11/03/2012 01:06:08 PM,11/03/2012 01:07:00 PM,11/03/2012 01:09:43 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,No Merit,11/03/2012 01:11:41 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7580957160416, -122.421301773834)",123080171-E07 +121460015,E31,12048327,Medical Incident,05/25/2012,05/24/2012,05/25/2012 01:45:11 AM,05/25/2012 01:48:27 AM,05/25/2012 01:49:58 AM,05/25/2012 01:51:41 AM,05/25/2012 01:55:24 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Other,05/25/2012 02:04:46 AM,300 Block of 5TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7820328555271, -122.463211509933)",121460015-E31 +110120017,E03,11003848,Outside Fire,01/12/2011,01/11/2011,01/12/2011 01:56:59 AM,01/12/2011 01:58:07 AM,01/12/2011 01:58:53 AM,01/12/2011 02:00:18 AM,01/12/2011 02:02:22 AM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Fire,01/12/2011 02:04:06 AM,HYDE ST/ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",110120017-E03 +160641439,87,16025468,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:03:32 AM,03/04/2016 11:05:15 AM,03/04/2016 11:05:29 AM,03/04/2016 11:05:39 AM,03/04/2016 11:17:47 AM,03/04/2016 11:27:08 AM,03/04/2016 11:42:26 AM,Code 2 Transport,03/04/2016 11:55:38 AM,500 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819285009366, -122.419015659869)",160641439-87 +131060041,E28,13035517,Medical Incident,04/16/2013,04/15/2013,04/16/2013 04:33:47 AM,04/16/2013 04:35:43 AM,04/16/2013 04:36:01 AM,04/16/2013 04:37:34 AM,04/16/2013 04:40:08 AM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/16/2013 05:01:11 AM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.804809171271, -122.406795529826)",131060041-E28 +140850029,E42,14028500,Medical Incident,03/26/2014,03/25/2014,03/26/2014 04:35:26 AM,03/26/2014 04:36:30 AM,03/26/2014 04:36:53 AM,03/26/2014 04:39:09 AM,03/26/2014 04:42:14 AM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/26/2014 04:50:59 AM,1000 Block of GOETTINGEN ST,SAN FRANCISCO,94134,B10,44,6313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7190814709175, -122.403254417719)",140850029-E42 +120530380,T19,12017667,Structure Fire,02/22/2012,02/22/2012,02/22/2012 11:09:57 PM,02/22/2012 11:10:46 PM,02/22/2012 11:11:09 PM,02/22/2012 11:13:21 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/22/2012 11:22:33 PM,2400 Block of 23RD AVE,SF,94116,B08,40,7442,3,3,3,false,Fire,1,TRUCK,5,8,4,Sunset/Parkside,"(37.7419253653114, -122.479981752509)",120530380-T19 +102370225,MA1,10074749,Structure Fire,08/25/2010,08/25/2010,08/25/2010 02:01:26 PM,08/25/2010 02:01:59 PM,08/25/2010 02:02:14 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 05:44:09 PM,1600 Block of 34TH AVE,SF,94122,B08,18,7542,3,3,3,false,,1,SUPPORT,15,8,4,Sunset/Parkside,"(37.7563315945926, -122.492671605402)",102370225-MA1 +110770371,74,11025504,Medical Incident,03/18/2011,03/18/2011,03/18/2011 10:12:03 PM,03/18/2011 10:13:06 PM,03/18/2011 10:16:49 PM,03/18/2011 10:16:55 PM,03/18/2011 10:23:47 PM,03/18/2011 10:48:44 PM,03/18/2011 10:59:58 PM,Code 2 Transport,03/18/2011 11:30:17 PM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2144,3,1,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",110770371-74 +160422213,86,16016917,Medical Incident,02/11/2016,02/11/2016,02/11/2016 02:48:15 PM,02/11/2016 02:51:14 PM,02/11/2016 02:52:01 PM,02/11/2016 02:52:17 PM,02/11/2016 02:55:26 PM,02/11/2016 03:15:48 PM,02/11/2016 03:35:43 PM,Code 2 Transport,02/11/2016 04:10:37 PM,MARKET ST/3RD ST,San Francisco,94103,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",160422213-86 +122170016,E11,12071887,Other,08/04/2012,08/03/2012,08/04/2012 01:01:26 AM,08/04/2012 01:02:42 AM,08/04/2012 01:04:24 AM,08/04/2012 01:05:56 AM,08/04/2012 01:08:17 AM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,08/04/2012 01:16:21 AM,2800 Block of MISSION ST,SF,94110,B06,11,5529,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",122170016-E11 +120060064,89,12001974,Medical Incident,01/06/2012,01/05/2012,01/06/2012 06:17:11 AM,01/06/2012 06:19:36 AM,01/06/2012 06:19:52 AM,01/06/2012 06:20:31 AM,01/06/2012 06:22:00 AM,01/06/2012 06:31:36 AM,01/06/2012 06:52:34 AM,Code 2 Transport,01/06/2012 07:08:12 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",120060064-89 +123200045,RC3,12106278,Structure Fire,11/15/2012,11/14/2012,11/15/2012 06:29:29 AM,11/15/2012 06:30:42 AM,11/15/2012 06:31:17 AM,11/15/2012 06:36:47 AM,11/15/2012 06:42:35 AM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Other,11/15/2012 07:14:19 AM,100 Block of BOUTWELL ST,SF,94124,B10,42,6364,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,10,10,Bayview Hunters Point,"(37.7348185901885, -122.405480344355)",123200045-RC3 +130100071,E32,13003338,Structure Fire,01/10/2013,01/09/2013,01/10/2013 07:53:46 AM,01/10/2013 07:58:39 AM,01/10/2013 07:58:58 AM,01/10/2013 08:00:38 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/10/2013 08:05:30 AM,500 Block of ELLSWORTH ST,SF,94110,B06,32,5737,3,3,3,true,Alarm,1,ENGINE,10,6,9,Bernal Heights,"(37.7365568312512, -122.414844736633)",130100071-E32 +112570144,E05,11084701,Medical Incident,09/14/2011,09/14/2011,09/14/2011 11:56:29 AM,09/14/2011 11:57:08 AM,09/14/2011 11:57:36 AM,09/14/2011 11:58:42 AM,09/14/2011 12:00:28 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/14/2011 12:08:50 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",112570144-E05 +140690367,E23,14023445,Medical Incident,03/10/2014,03/10/2014,03/10/2014 11:12:32 PM,03/10/2014 11:13:41 PM,03/10/2014 11:13:55 PM,03/10/2014 11:15:26 PM,03/10/2014 11:17:38 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Code 2 Transport,03/10/2014 11:32:46 PM,GREAT HY/KIRKHAM ST,SAN FRANCISCO,94122,B08,23,7724,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7584144537154, -122.509111290304)",140690367-E23 +111750251,72,11057736,Medical Incident,06/24/2011,06/24/2011,06/24/2011 03:21:22 PM,06/24/2011 03:22:18 PM,06/24/2011 03:23:22 PM,06/24/2011 03:23:32 PM,06/24/2011 03:30:48 PM,06/24/2011 03:40:54 PM,06/24/2011 03:57:58 PM,Code 2 Transport,06/24/2011 04:18:07 PM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7748170645635, -122.412845031536)",111750251-72 +111300058,AM04,11042875,Medical Incident,05/10/2011,05/09/2011,05/10/2011 07:33:50 AM,05/10/2011 07:35:43 AM,05/10/2011 07:38:48 AM,05/10/2011 07:40:29 AM,05/10/2011 07:48:30 AM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,No Merit,05/10/2011 07:52:49 AM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,1,1,2,false,,1,PRIVATE,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",111300058-AM04 +111920383,72,11063549,Medical Incident,07/11/2011,07/11/2011,07/11/2011 10:20:10 PM,07/11/2011 10:22:30 PM,07/11/2011 10:22:52 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 10:27:29 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,3,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",111920383-72 +160510096,71,16020307,Medical Incident,02/20/2016,02/19/2016,02/20/2016 12:41:29 AM,02/20/2016 12:42:08 AM,02/20/2016 12:42:54 AM,02/20/2016 12:43:09 AM,02/20/2016 12:55:58 AM,02/20/2016 01:09:18 AM,02/20/2016 01:23:28 AM,Code 2 Transport,02/20/2016 02:24:05 AM,1900 Block of 4TH ST,San Francisco,94158,B03,4,2436,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Potrero Hill,"(37.7654965381521, -122.390602942705)",160510096-71 +121430025,E03,12047411,Medical Incident,05/22/2012,05/21/2012,05/22/2012 02:43:29 AM,05/22/2012 02:44:56 AM,05/22/2012 02:45:20 AM,05/22/2012 02:47:12 AM,05/22/2012 02:49:25 AM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,No Merit,05/22/2012 02:55:29 AM,400 Block of JONES ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",121430025-E03 +102950259,79,10094143,Medical Incident,10/22/2010,10/22/2010,10/22/2010 03:00:10 PM,10/22/2010 03:00:34 PM,10/22/2010 03:00:44 PM,10/22/2010 03:01:13 PM,10/22/2010 03:02:04 PM,04/25/2016 02:07:59 PM,04/25/2016 02:07:59 PM,Patient Declined Transport,10/22/2010 03:26:54 PM,SUTTER ST/STOCKTON ST,SF,94108,B01,1,1324,3,3,3,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",102950259-79 +132530367,E09,13085644,Structure Fire,09/10/2013,09/10/2013,09/10/2013 11:05:21 PM,09/10/2013 11:05:21 PM,09/10/2013 11:06:03 PM,09/10/2013 11:07:26 PM,09/10/2013 11:09:29 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 11:09:58 PM,3RD ST/JERROLD AV,SF,94124,B10,25,6467,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7387419299442, -122.389310056266)",132530367-E09 +90430209,E51,9012792,Alarms,02/12/2009,02/12/2009,02/12/2009 01:14:52 PM,02/12/2009 01:14:53 PM,02/12/2009 01:14:53 PM,04/25/2016 03:30:09 PM,02/12/2009 01:16:00 PM,04/25/2016 03:30:09 PM,04/25/2016 03:30:09 PM,Other,02/12/2009 02:09:24 PM,0 Block of GRAHAM ST,PR,94129,B99,51,4626,3,3,3,false,,1,ENGINE,1,7,2,Presidio,"(37.8007066173192, -122.456882143505)",090430209-E51 +160030477,AM18,16001051,Medical Incident,01/03/2016,01/02/2016,01/03/2016 04:10:46 AM,01/03/2016 04:11:20 AM,01/03/2016 04:11:33 AM,01/03/2016 04:13:03 AM,01/03/2016 04:15:36 AM,01/03/2016 04:27:55 AM,01/03/2016 04:33:43 AM,Code 2 Transport,01/03/2016 04:55:32 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160030477-AM18 +130250061,E03,13008534,Medical Incident,01/25/2013,01/24/2013,01/25/2013 06:20:29 AM,01/25/2013 06:21:10 AM,01/25/2013 06:21:19 AM,01/25/2013 06:23:52 AM,01/25/2013 06:24:34 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/25/2013 06:26:50 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",130250061-E03 +160550802,74,16021922,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:37:12 AM,02/24/2016 08:38:10 AM,02/24/2016 08:38:26 AM,02/24/2016 08:38:38 AM,02/24/2016 08:46:33 AM,02/24/2016 08:53:59 AM,02/24/2016 09:32:39 AM,Code 2 Transport,02/24/2016 09:49:22 AM,0 Block of GARRISON AVE,San Francisco,94134,B09,44,6252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7107126536652, -122.412959518511)",160550802-74 +121760343,E39,12058644,Medical Incident,06/24/2012,06/24/2012,06/24/2012 07:04:24 PM,06/24/2012 07:05:05 PM,06/24/2012 07:05:25 PM,06/24/2012 07:06:19 PM,06/24/2012 07:08:31 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Patient Declined Transport,06/24/2012 07:23:00 PM,0 Block of SANTA CLARA AVE,SF,94127,B08,39,8563,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7388821506292, -122.465935520144)",121760343-E39 +131310199,E39,13044239,Medical Incident,05/11/2013,05/11/2013,05/11/2013 12:14:42 PM,05/11/2013 12:15:59 PM,05/11/2013 12:17:20 PM,05/11/2013 12:17:57 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 12:18:47 PM,2500 Block of TARAVAL ST,SF,94116,B08,18,7612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,8,4,Sunset/Parkside,"(37.7423270680376, -122.493375821676)",131310199-E39 +160062291,AM10,16002457,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:24:36 PM,01/06/2016 03:24:36 PM,01/06/2016 03:24:48 PM,01/06/2016 03:26:19 PM,01/06/2016 03:30:29 PM,01/06/2016 03:37:33 PM,01/06/2016 04:02:22 PM,Code 2 Transport,01/06/2016 04:46:33 PM,0 Block of BLUXOME ST,San Francisco,94107,B03,8,2223,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7768587665468, -122.396905531975)",160062291-AM10 +102940105,96,10093691,Medical Incident,10/21/2010,10/21/2010,10/21/2010 10:06:18 AM,10/21/2010 10:08:12 AM,10/21/2010 10:11:17 AM,10/21/2010 10:11:28 AM,10/21/2010 10:17:25 AM,10/21/2010 10:38:48 AM,10/21/2010 10:55:51 AM,Code 2 Transport,10/21/2010 11:43:51 AM,PAUL AV/BAYSHORE BL,SF,94124,B10,44,6323,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7236162096696, -122.40078474994)",102940105-96 +160612478,KM09,16024388,Medical Incident,03/01/2016,03/01/2016,03/01/2016 05:01:58 PM,03/01/2016 05:04:13 PM,03/01/2016 05:04:25 PM,03/01/2016 05:05:59 PM,03/01/2016 05:09:09 PM,03/01/2016 05:29:19 PM,03/01/2016 06:04:20 PM,Code 2 Transport,03/01/2016 05:12:21 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160612478-KM09 +160550883,89,16021926,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:58:16 AM,02/24/2016 09:00:16 AM,02/24/2016 09:00:38 AM,02/24/2016 09:00:46 AM,02/24/2016 09:09:49 AM,02/24/2016 09:19:56 AM,02/24/2016 09:34:48 AM,Code 2 Transport,02/24/2016 10:24:40 AM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",160550883-89 +112970340,E02,11098639,Alarms,10/24/2011,10/24/2011,10/24/2011 06:04:08 PM,10/24/2011 06:04:49 PM,10/24/2011 06:05:35 PM,10/24/2011 06:07:22 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 06:11:24 PM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",112970340-E02 +113050048,93,11101161,Structure Fire,11/01/2011,10/31/2011,11/01/2011 03:03:05 AM,11/01/2011 03:03:35 AM,11/01/2011 03:03:52 AM,11/01/2011 03:04:19 AM,11/01/2011 03:07:24 AM,11/01/2011 03:44:44 AM,11/01/2011 03:49:13 AM,Code 2 Transport,11/01/2011 04:08:38 AM,4300 Block of 19TH ST,SF,94114,B05,6,5415,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7590702726622, -122.437570190862)",113050048-93 +113590227,56,11119415,Medical Incident,12/25/2011,12/25/2011,12/25/2011 06:23:36 PM,12/25/2011 06:24:48 PM,12/25/2011 06:25:40 PM,12/25/2011 06:25:57 PM,12/25/2011 06:31:14 PM,12/25/2011 06:40:48 PM,12/25/2011 07:01:42 PM,Code 2 Transport,12/25/2011 07:16:29 PM,700 Block of KEARNY ST,SF,94111,B01,13,1245,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",113590227-56 +160470316,59,16018777,Medical Incident,02/16/2016,02/15/2016,02/16/2016 03:54:30 AM,02/16/2016 03:56:48 AM,02/16/2016 03:58:41 AM,02/16/2016 03:58:57 AM,02/16/2016 04:17:56 AM,02/16/2016 04:33:41 AM,02/16/2016 04:46:47 AM,Code 2 Transport,02/16/2016 05:47:16 AM,0 Block of CHARLTON CT,San Francisco,94123,B04,16,3443,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.7973631878648, -122.431318650656)",160470316-59 +160122840,52,16004869,Medical Incident,01/12/2016,01/12/2016,01/12/2016 05:33:10 PM,01/12/2016 05:36:28 PM,01/12/2016 05:36:50 PM,01/12/2016 05:36:55 PM,01/12/2016 05:56:29 PM,01/12/2016 06:23:26 PM,01/12/2016 06:48:03 PM,Code 2 Transport,01/12/2016 07:13:25 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160122840-52 +123040143,E06,12100857,Medical Incident,10/30/2012,10/30/2012,10/30/2012 12:24:13 PM,10/30/2012 12:25:32 PM,10/30/2012 12:26:25 PM,10/30/2012 12:27:41 PM,10/30/2012 12:32:49 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/30/2012 12:39:59 PM,16TH ST/ALBION ST,SF,94110,B02,6,5235,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7648432997817, -122.42311242302)",123040143-E06 +112580179,AM06,11085036,Medical Incident,09/15/2011,09/15/2011,09/15/2011 12:56:36 PM,09/15/2011 12:58:15 PM,09/15/2011 12:58:35 PM,09/15/2011 12:59:45 PM,09/15/2011 01:04:05 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Medical Examiner,09/15/2011 01:42:49 PM,1400 Block of 42ND AVE,SF,94122,B08,23,7631,E,E,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7596774580307, -122.501641592848)",112580179-AM06 +160131983,62,16005203,Medical Incident,01/13/2016,01/13/2016,01/13/2016 01:12:15 PM,01/13/2016 01:12:15 PM,01/13/2016 01:12:53 PM,01/13/2016 01:12:53 PM,01/13/2016 01:13:16 PM,01/13/2016 01:45:41 PM,01/13/2016 01:55:53 PM,Code 2 Transport,01/13/2016 02:56:11 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160131983-62 +133380255,E42,13114611,Traffic Collision,12/04/2013,12/04/2013,12/04/2013 04:41:13 PM,12/04/2013 04:44:15 PM,12/04/2013 04:44:42 PM,12/04/2013 04:46:28 PM,12/04/2013 04:50:24 PM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 05:00:31 PM,BAYSHORE BL/INDUSTRIAL ST,SF,94124,B10,42,6374,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.737965867581, -122.406910505115)",133380255-E42 +133170061,E40,13107633,Administrative,11/13/2013,11/12/2013,11/13/2013 07:18:08 AM,11/13/2013 07:18:10 AM,11/13/2013 07:18:24 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 07:18:51 AM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",133170061-E40 +123210260,57,12106748,Medical Incident,11/16/2012,11/16/2012,11/16/2012 04:24:59 PM,11/16/2012 04:25:35 PM,11/16/2012 04:27:46 PM,11/16/2012 04:28:00 PM,11/16/2012 04:44:19 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Patient Declined Transport,11/16/2012 05:05:49 PM,3300 Block of MISSION ST,SF,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",123210260-57 +131810372,B02,13061734,Medical Incident,06/30/2013,06/30/2013,06/30/2013 06:36:32 PM,06/30/2013 06:36:45 PM,06/30/2013 06:38:25 PM,06/30/2013 06:39:28 PM,06/30/2013 06:41:57 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,06/30/2013 06:47:38 PM,LARKIN ST/GROVE ST,SF,94102,B02,36,1552,E,E,3,false,Potentially Life-Threatening,1,CHIEF,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",131810372-B02 +132250082,AM04,13075866,Medical Incident,08/13/2013,08/13/2013,08/13/2013 08:40:11 AM,08/13/2013 08:42:32 AM,08/13/2013 08:42:43 AM,08/13/2013 08:44:31 AM,08/13/2013 08:45:28 AM,08/13/2013 09:00:30 AM,08/13/2013 09:11:26 AM,Code 3 Transport,08/13/2013 10:00:29 AM,100 Block of URBANO DR,SF,94127,B09,15,8455,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7252041089684, -122.464730624735)",132250082-AM04 +160162063,88,16006457,Medical Incident,01/16/2016,01/16/2016,01/16/2016 02:41:41 PM,01/16/2016 02:44:39 PM,01/16/2016 02:44:52 PM,01/16/2016 02:45:05 PM,01/16/2016 02:47:35 PM,01/16/2016 02:56:58 PM,01/16/2016 03:04:23 PM,Code 2 Transport,01/16/2016 03:45:54 PM,0 Block of ELLIS ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7855635181473, -122.406831011629)",160162063-88 +130560210,87,13018892,Medical Incident,02/25/2013,02/25/2013,02/25/2013 02:11:57 PM,02/25/2013 02:12:44 PM,02/25/2013 02:13:08 PM,02/25/2013 02:13:15 PM,02/25/2013 02:17:32 PM,04/25/2016 01:54:07 PM,04/25/2016 01:54:07 PM,No Merit,02/25/2013 02:25:36 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",130560210-87 +140840271,KM01,14028385,Medical Incident,03/25/2014,03/25/2014,03/25/2014 06:11:28 PM,03/25/2014 06:12:23 PM,03/25/2014 06:12:34 PM,03/25/2014 06:13:04 PM,03/25/2014 06:18:36 PM,03/25/2014 06:27:24 PM,03/25/2014 06:35:35 PM,Code 2 Transport,03/25/2014 07:04:12 PM,GEARY ST/LARKIN ST,SAN FRANCISCO,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",140840271-KM01 +160632341,64,16025129,Medical Incident,03/03/2016,03/03/2016,03/03/2016 03:32:11 PM,03/03/2016 03:33:29 PM,03/03/2016 03:33:48 PM,03/03/2016 03:34:32 PM,03/03/2016 03:44:34 PM,03/03/2016 04:03:08 PM,03/03/2016 04:20:04 PM,Code 2 Transport,03/03/2016 04:54:43 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7196213473258, -122.438507243932)",160632341-64 +130210282,75,13007353,Medical Incident,01/21/2013,01/21/2013,01/21/2013 05:46:37 PM,01/21/2013 05:48:43 PM,01/21/2013 05:49:20 PM,01/21/2013 05:50:27 PM,01/21/2013 06:00:46 PM,01/21/2013 06:29:51 PM,01/21/2013 07:02:26 PM,Code 2 Transport,01/21/2013 07:27:57 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",130210282-75 +113090286,B03,11102779,Alarms,11/05/2011,11/05/2011,11/05/2011 06:21:40 PM,11/05/2011 06:22:53 PM,11/05/2011 06:23:09 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,Other,04/25/2016 02:01:47 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,,1,CHIEF,4,2,8,Mission,"(37.7661259454801, -122.42207304894)",113090286-B03 +160083884,78,16003447,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:23:12 PM,01/08/2016 10:25:22 PM,01/08/2016 10:25:29 PM,01/08/2016 10:25:41 PM,01/08/2016 10:30:20 PM,01/08/2016 10:45:31 PM,01/08/2016 10:57:45 PM,Code 2 Transport,01/08/2016 11:33:16 PM,100 Block of SAN CARLOS ST,San Francisco,94110,B02,7,5423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7609848622239, -122.420120540924)",160083884-78 +132780248,E16,13094554,Medical Incident,10/05/2013,10/05/2013,10/05/2013 03:32:52 PM,10/05/2013 03:34:17 PM,10/05/2013 03:34:38 PM,10/05/2013 03:35:59 PM,10/05/2013 03:37:43 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Other,10/05/2013 03:58:23 PM,2300 Block of GREEN ST,SF,94123,B04,16,3612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7958995297548, -122.437781483312)",132780248-E16 +122000256,E23,12066524,Traffic Collision,07/18/2012,07/18/2012,07/18/2012 02:48:02 PM,07/18/2012 02:51:13 PM,07/18/2012 02:53:49 PM,07/18/2012 02:54:31 PM,07/18/2012 02:59:49 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,Other,07/18/2012 03:09:50 PM,400 Block of MIDDLE WEST DR,SF,94122,B08,23,7565,2,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7664523569659, -122.495934078446)",122000256-E23 +160822317,71,16032617,Medical Incident,03/22/2016,03/22/2016,03/22/2016 03:09:48 PM,03/22/2016 03:10:35 PM,03/22/2016 03:11:11 PM,03/22/2016 03:11:23 PM,03/22/2016 03:16:42 PM,03/22/2016 03:29:52 PM,03/22/2016 03:56:03 PM,Code 2 Transport,03/22/2016 04:25:47 PM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",160822317-71 +140740397,E24,14025195,Fuel Spill,03/15/2014,03/15/2014,03/15/2014 09:25:12 PM,03/15/2014 09:30:37 PM,03/15/2014 09:51:38 PM,03/15/2014 09:51:38 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Fire,03/15/2014 10:02:48 PM,900 Block of GUERRERO ST,SAN FRANCISCO,94110,B06,11,5471,3,3,3,true,Alarm,1,ENGINE,3,6,8,Mission,"(37.755573041962, -122.423107153531)",140740397-E24 +121750052,E13,12057990,Alarms,06/23/2012,06/22/2012,06/23/2012 03:37:08 AM,06/23/2012 03:38:16 AM,06/23/2012 03:38:49 AM,06/23/2012 03:40:36 AM,06/23/2012 03:43:34 AM,04/25/2016 01:58:04 PM,04/25/2016 01:58:04 PM,Other,06/23/2012 03:45:10 AM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",121750052-E13 +132530232,81,13085520,Medical Incident,09/10/2013,09/10/2013,09/10/2013 02:10:12 PM,09/10/2013 02:12:24 PM,09/10/2013 02:12:34 PM,09/10/2013 02:13:38 PM,09/10/2013 02:15:40 PM,09/10/2013 02:30:28 PM,09/10/2013 02:48:14 PM,Code 2 Transport,09/10/2013 03:18:54 PM,BRYANT ST/16TH ST,SF,94110,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",132530232-81 +110140130,RS1,11004605,Medical Incident,01/14/2011,01/14/2011,01/14/2011 11:19:06 AM,01/14/2011 11:20:03 AM,01/14/2011 11:20:42 AM,01/14/2011 11:21:18 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 11:21:25 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",110140130-RS1 +160211697,KM04,16008372,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:30:47 PM,01/21/2016 12:33:14 PM,01/21/2016 12:33:44 PM,01/21/2016 12:34:16 PM,01/21/2016 12:39:12 PM,01/21/2016 01:04:14 PM,01/21/2016 01:15:45 PM,Code 3 Transport,01/21/2016 02:04:45 PM,1400 Block of JACKSON ST,San Francisco,94109,B01,41,1633,3,3,3,false,Non Life-threatening,1,PRIVATE,1,1,3,Russian Hill,"(37.7944063708533, -122.418921298898)",160211697-KM04 +130110349,85,13003892,Medical Incident,01/11/2013,01/11/2013,01/11/2013 09:32:49 PM,01/11/2013 09:35:11 PM,01/11/2013 09:35:31 PM,01/11/2013 09:35:49 PM,01/11/2013 09:39:01 PM,01/11/2013 09:54:36 PM,01/11/2013 10:11:57 PM,Code 2 Transport,01/11/2013 11:00:27 PM,0 Block of PRINCETON ST,SF,94134,B09,42,6354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7292432457405, -122.416170968339)",130110349-85 +122130366,E18,12070859,Medical Incident,07/31/2012,07/31/2012,07/31/2012 11:52:45 PM,07/31/2012 11:53:05 PM,07/31/2012 11:53:15 PM,07/31/2012 11:54:21 PM,07/31/2012 11:56:26 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,No Merit,08/01/2012 12:08:42 AM,1500 Block of 31ST AVE,SF,94122,B08,18,7535,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7583357019527, -122.489587661906)",122130366-E18 +102810388,82,10089488,Medical Incident,10/08/2010,10/08/2010,10/08/2010 09:36:27 PM,10/08/2010 09:36:45 PM,10/08/2010 09:37:35 PM,10/08/2010 09:37:53 PM,10/08/2010 09:44:56 PM,10/08/2010 10:01:09 PM,10/08/2010 10:07:56 PM,Code 3 Transport,10/08/2010 10:35:21 PM,400 Block of PACIFIC AVE,SF,94133,B01,13,1212,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.7974015545937, -122.403291978554)",102810388-82 +112300332,88,11076079,Medical Incident,08/18/2011,08/18/2011,08/18/2011 08:56:02 PM,08/18/2011 08:59:35 PM,08/18/2011 09:01:35 PM,08/18/2011 09:01:40 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,Other,08/18/2011 09:05:00 PM,24TH ST/TREAT AV,SF,94110,B06,7,5477,2,2,2,true,,1,MEDIC,2,6,9,Mission,"(37.7525727580898, -122.41299517484)",112300332-88 +131790329,93,13060918,Medical Incident,06/28/2013,06/28/2013,06/28/2013 05:20:27 PM,06/28/2013 05:21:23 PM,06/28/2013 05:21:33 PM,06/28/2013 05:23:30 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,Other,06/28/2013 05:31:54 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",131790329-93 +160081583,AM08,16003210,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:59:37 AM,01/08/2016 12:00:46 PM,01/08/2016 12:01:08 PM,01/08/2016 12:02:31 PM,01/08/2016 12:06:49 PM,01/08/2016 12:22:54 PM,01/08/2016 12:41:09 PM,Code 2 Transport,01/08/2016 01:21:02 PM,100 Block of 5TH ST,San Francisco,94103,B03,1,2246,2,2,2,false,Non Life-threatening,1,PRIVATE,3,3,6,South of Market,"(37.7817509861584, -122.40515072935)",160081583-AM08 +160520898,53,16020735,Medical Incident,02/21/2016,02/21/2016,02/21/2016 08:46:26 AM,02/21/2016 08:46:47 AM,02/21/2016 08:47:09 AM,02/21/2016 08:47:40 AM,02/21/2016 08:52:47 AM,02/21/2016 09:05:29 AM,02/21/2016 09:21:43 AM,Code 2 Transport,02/21/2016 10:05:28 AM,MARKET ST/HYDE ST,San Francisco,94103,B02,1,1551,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160520898-53 +112520207,T07,11083108,Structure Fire,09/09/2011,09/09/2011,09/09/2011 01:09:24 PM,09/09/2011 01:09:24 PM,09/09/2011 01:09:36 PM,09/09/2011 01:11:55 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Fire,09/09/2011 01:13:22 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",112520207-T07 +131830233,77,13062394,Medical Incident,07/02/2013,07/02/2013,07/02/2013 03:21:53 PM,07/02/2013 03:25:32 PM,07/02/2013 03:26:34 PM,04/25/2016 01:52:00 PM,07/02/2013 03:27:03 PM,07/02/2013 03:50:05 PM,07/02/2013 04:09:10 PM,Code 2 Transport,07/02/2013 04:40:30 PM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",131830233-77 +130570230,T08,13019210,Alarms,02/26/2013,02/26/2013,02/26/2013 04:08:59 PM,02/26/2013 04:10:08 PM,02/26/2013 04:10:45 PM,02/26/2013 04:12:43 PM,02/26/2013 04:16:02 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 04:56:36 PM,100 Block of HUBBELL ST,SF,94107,B03,29,2272,3,3,3,false,Alarm,1,TRUCK,1,3,10,Mission Bay,"(37.767124226296, -122.397640037348)",130570230-T08 +131880277,RC3,13064179,Citizen Assist / Service Call,07/07/2013,07/07/2013,07/07/2013 05:33:26 PM,07/07/2013 05:38:46 PM,07/07/2013 05:40:42 PM,07/07/2013 05:40:52 PM,07/07/2013 05:56:11 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Fire,07/07/2013 06:37:17 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",131880277-RC3 +160371371,62,16014631,Medical Incident,02/06/2016,02/06/2016,02/06/2016 10:14:48 AM,02/06/2016 10:17:23 AM,02/06/2016 10:17:49 AM,02/06/2016 10:18:47 AM,02/06/2016 10:30:27 AM,02/06/2016 10:43:35 AM,02/06/2016 11:05:03 AM,Code 2 Transport,02/06/2016 11:30:47 AM,900 Block of HAMPSHIRE ST,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7569109782313, -122.407609182364)",160371371-62 +102640091,E36,10083475,Medical Incident,09/21/2010,09/21/2010,09/21/2010 09:33:49 AM,09/21/2010 09:35:07 AM,09/21/2010 09:35:38 AM,09/21/2010 09:37:09 AM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 09:39:59 AM,700 Block of NATOMA ST,SF,94103,B02,1,2318,3,3,3,false,,1,ENGINE,3,2,6,South of Market,"(37.7760099210785, -122.412889415461)",102640091-E36 +130170239,77,13005825,Medical Incident,01/17/2013,01/17/2013,01/17/2013 02:47:35 PM,01/17/2013 02:49:06 PM,01/17/2013 02:51:45 PM,01/17/2013 02:52:57 PM,01/17/2013 03:16:22 PM,01/17/2013 03:19:37 PM,01/17/2013 03:46:39 PM,Code 2 Transport,01/17/2013 04:28:02 PM,3700 Block of 22ND ST,SF,94114,B06,24,5466,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7546396842742, -122.431064347786)",130170239-77 +130110110,E17,13003690,Medical Incident,01/11/2013,01/11/2013,01/11/2013 09:44:25 AM,01/11/2013 09:51:51 AM,01/11/2013 09:52:07 AM,01/11/2013 09:54:47 AM,01/11/2013 09:58:59 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/11/2013 10:12:55 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",130110110-E17 +130110087,KM06,13003675,Medical Incident,01/11/2013,01/11/2013,01/11/2013 08:28:59 AM,01/11/2013 08:31:21 AM,01/11/2013 08:31:37 AM,01/11/2013 08:32:11 AM,01/11/2013 08:39:25 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/11/2013 08:41:11 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",130110087-KM06 +112190065,88,11072310,Medical Incident,08/07/2011,08/06/2011,08/07/2011 07:13:14 AM,08/07/2011 07:13:38 AM,08/07/2011 07:14:08 AM,08/07/2011 07:14:20 AM,08/07/2011 07:21:01 AM,04/25/2016 02:03:17 PM,04/25/2016 02:03:17 PM,Other,08/07/2011 07:23:23 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",112190065-88 +160341329,KM13,16013337,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:15:50 AM,02/03/2016 11:16:08 AM,02/03/2016 11:16:28 AM,02/03/2016 11:16:59 AM,02/03/2016 11:25:26 AM,02/03/2016 11:41:10 AM,02/03/2016 12:00:15 PM,Code 3 Transport,02/03/2016 01:00:12 PM,200 Block of BRANNAN ST,San Francisco,94107,B03,8,2153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7830704968216, -122.390626187021)",160341329-KM13 +160422562,AM16,16016944,Medical Incident,02/11/2016,02/11/2016,02/11/2016 04:10:56 PM,02/11/2016 04:12:05 PM,02/11/2016 04:12:18 PM,02/11/2016 04:13:16 PM,02/11/2016 04:26:09 PM,02/11/2016 04:40:01 PM,02/11/2016 04:59:54 PM,Code 2 Transport,02/11/2016 05:36:25 PM,100 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7933796204253, -122.398184018556)",160422562-AM16 +160730784,52,16028915,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:51:54 AM,03/13/2016 09:52:36 AM,03/13/2016 09:53:15 AM,03/13/2016 09:53:30 AM,03/13/2016 10:01:23 AM,03/13/2016 10:20:08 AM,03/13/2016 10:32:27 AM,Code 2 Transport,03/13/2016 11:03:51 AM,0 Block of BELLE AVE,San Francisco,94132,B09,33,8366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7086221660282, -122.470597811212)",160730784-52 +111570115,E03,11051858,Medical Incident,06/06/2011,06/06/2011,06/06/2011 09:53:41 AM,06/06/2011 09:54:40 AM,06/06/2011 09:55:23 AM,04/25/2016 02:04:17 PM,06/06/2011 10:01:15 AM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 10:03:23 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",111570115-E03 +140030109,T03,14000979,Medical Incident,01/03/2014,01/03/2014,01/03/2014 08:22:34 AM,01/03/2014 08:25:19 AM,01/03/2014 08:25:54 AM,01/03/2014 08:27:57 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/03/2014 08:29:40 AM,200 Block of JONES ST,SF,94102,B03,1,1456,,3,3,false,Non Life-threatening,1,TRUCK,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",140030109-T03 +110630225,67,11020735,Medical Incident,03/04/2011,03/04/2011,03/04/2011 02:03:07 PM,03/04/2011 02:04:19 PM,03/04/2011 02:04:31 PM,03/04/2011 02:04:39 PM,03/04/2011 02:12:00 PM,03/04/2011 02:21:37 PM,03/04/2011 02:36:07 PM,Code 2 Transport,03/04/2011 02:49:02 PM,3800 Block of 3RD ST,SF,94124,B10,25,6457,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7422681434531, -122.387936728644)",110630225-67 +111900292,E01,11062927,Medical Incident,07/09/2011,07/09/2011,07/09/2011 08:38:47 PM,07/09/2011 08:41:02 PM,07/09/2011 08:41:15 PM,07/09/2011 08:42:32 PM,07/09/2011 08:44:57 PM,04/25/2016 02:03:44 PM,04/25/2016 02:03:44 PM,Other,07/09/2011 08:55:16 PM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",111900292-E01 +140260210,B03,14008934,Alarms,01/26/2014,01/26/2014,01/26/2014 03:37:41 PM,01/26/2014 03:38:21 PM,01/26/2014 03:38:30 PM,01/26/2014 03:39:34 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Fire,01/26/2014 03:43:33 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",140260210-B03 +111320336,70,11043731,Medical Incident,05/12/2011,05/12/2011,05/12/2011 05:40:41 PM,05/12/2011 05:42:28 PM,05/12/2011 05:43:23 PM,05/12/2011 05:44:24 PM,05/12/2011 05:57:43 PM,05/12/2011 06:05:16 PM,05/12/2011 06:24:07 PM,Code 2 Transport,05/12/2011 06:37:50 PM,BEACH ST/TAYLOR ST,SF,94133,B01,28,1433,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.807275868938, -122.41561643642)",111320336-70 +103000044,KM15,10095667,Medical Incident,10/27/2010,10/26/2010,10/27/2010 04:26:30 AM,10/27/2010 04:29:16 AM,10/27/2010 04:29:28 AM,10/27/2010 04:30:27 AM,10/27/2010 04:34:34 AM,10/27/2010 04:58:28 AM,10/27/2010 05:17:34 AM,Code 2 Transport,10/27/2010 05:57:06 AM,FULTON ST/FRANKLIN ST,SF,94102,B02,36,3217,3,3,3,false,,1,PRIVATE,2,2,5,Hayes Valley,"(37.7789568629409, -122.421709307211)",103000044-KM15 +133030072,AM16,13102849,Traffic Collision,10/30/2013,10/30/2013,10/30/2013 08:57:48 AM,10/30/2013 08:58:33 AM,10/30/2013 08:59:32 AM,10/30/2013 09:00:20 AM,10/30/2013 09:01:30 AM,10/30/2013 09:14:36 AM,10/30/2013 09:22:18 AM,Code 3 Transport,10/30/2013 10:18:33 AM,300 Block of GIRARD ST,SF,94134,B10,42,634,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,9,Portola,"(37.7279571422744, -122.404908112095)",133030072-AM16 +131580439,E09,13053839,Medical Incident,06/07/2013,06/07/2013,06/07/2013 10:49:56 PM,06/07/2013 10:51:11 PM,06/07/2013 10:52:23 PM,06/07/2013 10:53:35 PM,06/07/2013 10:56:56 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/07/2013 11:07:00 PM,1600 Block of JERROLD AVE,SF,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7393422602198, -122.390249021887)",131580439-E09 +111020255,BE1,11033883,Other,04/12/2011,04/12/2011,04/12/2011 03:57:16 PM,04/12/2011 03:57:16 PM,04/12/2011 03:57:16 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/25/2016 02:05:08 PM,1300 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,,1,SUPPORT,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",111020255-BE1 +160732127,AM10,16029039,Medical Incident,03/13/2016,03/13/2016,03/13/2016 05:10:19 PM,03/13/2016 05:11:25 PM,03/13/2016 05:11:39 PM,03/13/2016 05:12:15 PM,03/13/2016 05:20:52 PM,03/13/2016 05:51:09 PM,03/13/2016 06:13:42 PM,Code 2 Transport,03/13/2016 06:57:31 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160732127-AM10 +120490004,96,12016069,Medical Incident,02/18/2012,02/17/2012,02/18/2012 12:10:31 AM,02/18/2012 12:11:08 AM,02/18/2012 12:11:23 AM,02/18/2012 12:12:00 AM,02/18/2012 12:24:10 AM,02/18/2012 12:55:52 AM,02/18/2012 01:26:49 AM,Code 2 Transport,02/18/2012 01:40:47 AM,400 Block of BRUSSELS ST,SF,94134,B10,42,6334,E,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7264977859761, -122.405401796538)",120490004-96 +160503737,AM16,16020274,Medical Incident,02/19/2016,02/19/2016,02/19/2016 10:09:40 PM,02/19/2016 10:09:40 PM,02/19/2016 10:09:52 PM,02/19/2016 10:10:48 PM,02/19/2016 10:16:23 PM,02/19/2016 10:33:17 PM,02/19/2016 10:46:32 PM,Code 3 Transport,02/19/2016 11:36:48 PM,0 Block of STONEYFORD AV,San Francisco,94112,B09,32,5681,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7302836938686, -122.4210807878)",160503737-AM16 +112580343,T15,11085182,Alarms,09/15/2011,09/15/2011,09/15/2011 07:30:52 PM,09/15/2011 07:31:33 PM,09/15/2011 07:32:05 PM,09/15/2011 07:33:34 PM,09/15/2011 07:36:25 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 07:36:58 PM,100 Block of MONTANA ST,SF,94112,B09,33,8373,3,3,3,false,,1,TRUCK,3,9,11,Oceanview/Merced/Ingleside,"(37.7165620568962, -122.457574442781)",112580343-T15 +130330246,81,13011337,Medical Incident,02/02/2013,02/02/2013,02/02/2013 03:41:32 PM,02/02/2013 03:42:46 PM,02/02/2013 03:44:35 PM,02/02/2013 03:44:48 PM,02/02/2013 03:56:13 PM,02/02/2013 04:05:27 PM,02/02/2013 04:21:41 PM,Code 2 Transport,02/02/2013 04:44:56 PM,12TH ST/MARKET ST,SF,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7743586748127, -122.420254280324)",130330246-81 +110430198,RC3,11014277,Medical Incident,02/12/2011,02/12/2011,02/12/2011 12:20:24 PM,02/12/2011 12:21:50 PM,02/12/2011 12:23:05 PM,02/12/2011 12:30:57 PM,02/12/2011 12:34:12 PM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 01:02:43 PM,3900 Block of MISSION ST,SF,94112,B06,32,5632,3,3,3,true,,1,RESCUE CAPTAIN,2,6,9,Bernal Heights,"(37.734771833301, -122.425166810279)",110430198-RC3 +123420291,T14,12114236,Alarms,12/07/2012,12/07/2012,12/07/2012 02:34:30 PM,12/07/2012 02:35:37 PM,12/07/2012 02:35:54 PM,12/07/2012 02:37:17 PM,12/07/2012 02:39:57 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 02:45:36 PM,400 Block of 18TH AVE,SF,94121,B07,31,7161,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",123420291-T14 +132890190,T03,13098298,Medical Incident,10/16/2013,10/16/2013,10/16/2013 01:14:35 PM,10/16/2013 01:14:43 PM,10/16/2013 01:15:51 PM,10/16/2013 01:17:08 PM,10/16/2013 01:19:39 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,No Merit,10/16/2013 01:21:23 PM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",132890190-T03 +132200242,AM14,13074360,Medical Incident,08/08/2013,08/08/2013,08/08/2013 04:17:00 PM,08/08/2013 04:18:12 PM,08/08/2013 04:18:24 PM,08/08/2013 04:19:26 PM,08/08/2013 04:21:59 PM,08/08/2013 04:30:46 PM,08/08/2013 04:45:48 PM,Code 2 Transport,08/08/2013 05:15:31 PM,3100 Block of 24TH ST,SF,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7524180928571, -122.414623849785)",132200242-AM14 +160013719,53,16000521,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:01:24 PM,01/01/2016 10:02:54 PM,01/01/2016 10:03:20 PM,01/01/2016 10:04:13 PM,01/01/2016 10:18:13 PM,01/01/2016 10:18:15 PM,01/01/2016 10:31:07 PM,Code 2 Transport,01/01/2016 11:13:40 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160013719-53 +130910190,87,13030447,Medical Incident,04/01/2013,04/01/2013,04/01/2013 01:25:06 PM,04/01/2013 01:25:11 PM,04/01/2013 01:26:13 PM,04/01/2013 01:27:24 PM,04/01/2013 01:38:07 PM,04/01/2013 01:49:12 PM,04/01/2013 02:06:03 PM,Code 2 Transport,04/01/2013 02:28:51 PM,3RD ST/OAKDALE AV,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",130910190-87 +160321017,87,16012510,Medical Incident,02/01/2016,02/01/2016,02/01/2016 09:54:22 AM,02/01/2016 09:55:03 AM,02/01/2016 09:55:26 AM,02/01/2016 09:55:35 AM,02/01/2016 10:02:18 AM,02/01/2016 10:24:34 AM,02/01/2016 10:44:29 AM,Code 2 Transport,02/01/2016 11:03:21 AM,1000 Block of WISCONSIN ST,San Francisco,94107,B10,37,257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",160321017-87 +132000399,68,13067987,Medical Incident,07/19/2013,07/19/2013,07/19/2013 10:55:14 PM,07/19/2013 10:55:45 PM,07/19/2013 10:58:51 PM,04/25/2016 01:51:43 PM,07/19/2013 11:01:59 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Patient Declined Transport,07/19/2013 11:39:07 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",132000399-68 +102310332,55,10072829,Medical Incident,08/19/2010,08/19/2010,08/19/2010 09:40:51 PM,08/19/2010 09:41:13 PM,08/19/2010 09:42:14 PM,08/19/2010 09:42:55 PM,08/19/2010 09:51:43 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Patient Declined Transport,08/19/2010 10:11:38 PM,300 Block of BRYANT ST,SF,94107,B03,35,2135,3,E,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7852209685555, -122.390882646731)",102310332-55 +160523554,AM18,16021009,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:33:29 PM,02/21/2016 10:34:56 PM,02/21/2016 10:36:43 PM,02/21/2016 10:37:27 PM,02/21/2016 10:41:13 PM,02/21/2016 10:49:41 PM,02/21/2016 10:53:34 PM,Code 2 Transport,02/21/2016 11:26:13 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160523554-AM18 +120290086,E15,12009662,Medical Incident,01/29/2012,01/29/2012,01/29/2012 08:10:34 AM,01/29/2012 08:10:56 AM,01/29/2012 08:11:05 AM,01/29/2012 08:12:19 AM,01/29/2012 08:16:02 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 08:24:25 AM,0 Block of ROME ST,SF,94112,B09,15,8333,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.716798658829, -122.444799828903)",120290086-E15 +160063934,KM07,16002648,Traffic Collision,01/06/2016,01/06/2016,01/06/2016 11:59:41 PM,01/06/2016 11:59:41 PM,01/07/2016 12:00:13 AM,01/07/2016 12:00:54 AM,01/07/2016 12:07:28 AM,01/07/2016 01:53:59 AM,01/07/2016 01:50:00 AM,Code 2 Transport,01/07/2016 01:54:17 AM,FOLSOM ST/THE EMBARCADERO SOU,San Francisco,94105,B03,35,2112,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7904750361941, -122.39055604599)",160063934-KM07 +121590044,E41,12052501,Medical Incident,06/07/2012,06/06/2012,06/07/2012 06:00:14 AM,06/07/2012 06:02:22 AM,06/07/2012 06:02:42 AM,06/07/2012 06:05:13 AM,06/07/2012 06:07:06 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/07/2012 06:13:22 AM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",121590044-E41 +160490437,63,16019622,Medical Incident,02/18/2016,02/17/2016,02/18/2016 06:44:31 AM,02/18/2016 06:44:31 AM,02/18/2016 06:44:31 AM,02/18/2016 06:44:31 AM,02/18/2016 06:44:31 AM,02/18/2016 06:53:48 AM,02/18/2016 07:10:02 AM,Code 2 Transport,02/18/2016 08:05:21 AM,5TH ST/HOWARD ST,San Francisco,94103,B99,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160490437-63 +111870256,E36,11061880,Medical Incident,07/06/2011,07/06/2011,07/06/2011 04:04:07 PM,07/06/2011 04:07:44 PM,07/06/2011 04:08:36 PM,07/06/2011 04:10:27 PM,07/06/2011 04:12:07 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 04:20:42 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",111870256-E36 +113310083,T18,11109624,Structure Fire,11/27/2011,11/27/2011,11/27/2011 08:53:53 AM,11/27/2011 08:54:15 AM,11/27/2011 08:54:35 AM,11/27/2011 08:55:31 AM,11/27/2011 09:01:08 AM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/27/2011 09:07:53 AM,2000 Block of GREAT HWY,SF,94116,B08,23,7726,3,3,3,false,,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7481854817293, -122.507749424582)",113310083-T18 +130460235,RC2,13015641,Medical Incident,02/15/2013,02/15/2013,02/15/2013 01:23:41 PM,02/15/2013 01:24:47 PM,02/15/2013 01:24:55 PM,02/15/2013 01:35:10 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 01:36:10 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,E,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,4,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",130460235-RC2 +160670589,KM13,16026633,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:38:14 AM,03/07/2016 08:38:14 AM,03/07/2016 08:38:57 AM,03/07/2016 08:39:33 AM,03/07/2016 08:57:53 AM,03/07/2016 09:37:05 AM,03/07/2016 10:04:09 AM,Code 2 Transport,03/07/2016 10:46:58 AM,POLK ST/CHESTNUT ST,San Francisco,94109,B01,16,3133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8024897363832, -122.423087806458)",160670589-KM13 +160090912,67,16003573,Medical Incident,01/09/2016,01/09/2016,01/09/2016 09:19:58 AM,01/09/2016 09:19:58 AM,01/09/2016 09:20:48 AM,01/09/2016 09:21:17 AM,01/09/2016 09:30:28 AM,01/09/2016 09:53:25 AM,01/09/2016 10:16:57 AM,Code 2 Transport,01/09/2016 11:13:37 AM,1300 Block of DIVISADERO ST,San Francisco,94115,B05,5,4153,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7819997550276, -122.439084739494)",160090912-67 +140280390,T06,14009704,Other,01/28/2014,01/28/2014,01/28/2014 10:01:33 PM,01/28/2014 10:01:51 PM,01/28/2014 10:02:06 PM,01/28/2014 10:03:52 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/28/2014 10:06:25 PM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.7632442446227, -122.419425525666)",140280390-T06 +140700015,E03,14023471,Medical Incident,03/11/2014,03/10/2014,03/11/2014 01:19:55 AM,03/11/2014 01:20:30 AM,03/11/2014 01:21:07 AM,03/11/2014 01:21:36 AM,03/11/2014 01:23:52 AM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Code 2 Transport,03/11/2014 01:28:30 AM,LARKIN ST/OFARRELL ST,SAN FRANCISCO,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",140700015-E03 +111100276,E36,11036381,Medical Incident,04/20/2011,04/20/2011,04/20/2011 03:47:13 PM,04/20/2011 03:48:34 PM,04/20/2011 03:50:05 PM,04/20/2011 04:05:22 PM,04/20/2011 04:06:57 PM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 04:12:22 PM,400 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,,1,ENGINE,3,2,5,Hayes Valley,"(37.7785884194197, -122.424165131998)",111100276-E36 +123300167,E18,12109706,Traffic Collision,11/25/2012,11/25/2012,11/25/2012 12:59:08 PM,11/25/2012 12:59:08 PM,11/25/2012 12:59:39 PM,11/25/2012 01:00:56 PM,11/25/2012 01:03:04 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 01:22:33 PM,SUNSET BL/PACHECO ST,SF,94116,B08,18,7561,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.74968371663, -122.49496874842)",123300167-E18 +160123251,E03,16004913,Medical Incident,01/12/2016,01/12/2016,01/12/2016 07:30:48 PM,01/12/2016 07:32:01 PM,01/12/2016 07:33:32 PM,01/12/2016 07:34:14 PM,01/12/2016 07:39:10 PM,01/12/2016 07:39:11 PM,01/12/2016 08:05:19 PM,Code 3 Transport,01/12/2016 08:06:30 PM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160123251-E03 +120520186,59,12017180,Medical Incident,02/21/2012,02/21/2012,02/21/2012 01:18:18 PM,02/21/2012 01:19:18 PM,02/21/2012 01:19:27 PM,02/21/2012 01:19:44 PM,02/21/2012 01:22:30 PM,02/21/2012 01:48:13 PM,02/21/2012 01:53:39 PM,Code 2 Transport,02/21/2012 02:35:09 PM,2500 Block of HARRISON ST,SF,94110,B06,7,545,3,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7566269297106, -122.412341955639)",120520186-59 +113260322,D3,11108345,Structure Fire,11/22/2011,11/22/2011,11/22/2011 07:03:58 PM,11/22/2011 07:04:54 PM,11/22/2011 07:05:31 PM,11/22/2011 07:06:27 PM,11/22/2011 07:07:42 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 07:12:46 PM,300 Block of CAPP ST,SF,94110,B06,7,5433,3,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.7610971516416, -122.41826370633)",113260322-D3 +160690487,57,16027347,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:29:35 AM,03/09/2016 06:31:34 AM,03/09/2016 06:31:54 AM,03/09/2016 06:32:09 AM,03/09/2016 06:38:02 AM,03/09/2016 06:45:57 AM,03/09/2016 06:50:36 AM,Code 2 Transport,03/09/2016 07:12:41 AM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160690487-57 +160742711,KM05,16029411,Medical Incident,03/14/2016,03/14/2016,03/14/2016 04:37:48 PM,03/14/2016 04:38:16 PM,03/14/2016 04:39:08 PM,03/14/2016 04:41:40 PM,03/14/2016 04:49:06 PM,03/14/2016 05:07:11 PM,03/14/2016 05:24:24 PM,Code 2 Transport,03/14/2016 06:02:34 PM,2700 Block of LOMBARD ST,San Francisco,94123,B04,16,4326,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7985968788664, -122.446649276894)",160742711-KM05 +113320068,E05,11109883,Medical Incident,11/28/2011,11/27/2011,11/28/2011 07:27:35 AM,11/28/2011 07:28:27 AM,11/28/2011 07:29:34 AM,11/28/2011 07:33:34 AM,11/28/2011 07:34:49 AM,04/25/2016 02:01:26 PM,04/25/2016 02:01:26 PM,Other,11/28/2011 07:54:23 AM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,2,2,2,true,,1,ENGINE,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",113320068-E05 +160731066,AM04,16028944,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:49:06 AM,03/13/2016 11:50:45 AM,03/13/2016 11:51:05 AM,03/13/2016 11:51:36 AM,03/13/2016 11:56:46 AM,03/13/2016 12:12:57 PM,03/13/2016 12:27:05 PM,Code 2 Transport,03/13/2016 12:53:13 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160731066-AM04 +160322606,KM02,16012671,Medical Incident,02/01/2016,02/01/2016,02/01/2016 05:04:45 PM,02/01/2016 05:05:53 PM,02/01/2016 05:09:38 PM,02/01/2016 05:10:34 PM,02/01/2016 05:20:12 PM,02/01/2016 05:50:31 PM,02/01/2016 05:57:03 PM,Code 2 Transport,02/01/2016 06:38:15 PM,100 Block of BELGRAVE AVE,San Francisco,94117,B05,12,5263,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Inner Sunset,"(37.7595963913319, -122.450389170062)",160322606-KM02 +160560532,AM24,16022261,Medical Incident,02/25/2016,02/24/2016,02/25/2016 06:59:47 AM,02/25/2016 06:59:47 AM,02/25/2016 07:00:15 AM,02/25/2016 07:00:45 AM,02/25/2016 07:04:05 AM,02/25/2016 07:09:26 AM,02/25/2016 07:24:02 AM,Code 2 Transport,02/25/2016 07:55:11 AM,200 Block of LARKIN ST,San Francisco,94102,B02,36,1645,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",160560532-AM24 +112840415,E08,11094218,Medical Incident,10/11/2011,10/11/2011,10/11/2011 11:19:29 PM,10/11/2011 11:21:56 PM,10/11/2011 11:22:18 PM,10/11/2011 11:23:47 PM,10/11/2011 11:25:46 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 11:37:16 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",112840415-E08 +112500178,E18,11082461,Medical Incident,09/07/2011,09/07/2011,09/07/2011 01:04:15 PM,09/07/2011 01:06:49 PM,09/07/2011 01:07:19 PM,09/07/2011 01:08:28 PM,09/07/2011 01:13:22 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 02:02:47 PM,LINCOLN WY/GREAT HY,SF,94122,B08,23,7722,3,3,3,true,,1,ENGINE,2,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",112500178-E18 +160272154,75,16010709,Medical Incident,01/27/2016,01/27/2016,01/27/2016 02:22:50 PM,01/27/2016 02:25:02 PM,01/27/2016 02:25:49 PM,01/27/2016 02:26:05 PM,01/27/2016 02:32:29 PM,01/27/2016 02:46:08 PM,01/27/2016 02:55:47 PM,Code 2 Transport,01/27/2016 03:37:28 PM,DIVISION ST/11TH ST,San Francisco,94103,B02,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7694111910912, -122.410931089145)",160272154-75 +131760137,E21,13059669,Citizen Assist / Service Call,06/25/2013,06/25/2013,06/25/2013 10:36:19 AM,06/25/2013 10:36:20 AM,06/25/2013 10:36:20 AM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Fire,06/25/2013 10:52:11 AM,700 Block of STEINER ST,SF,94117,B05,21,3631,3,3,3,true,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7760958575257, -122.432866504305)",131760137-E21 +160430258,63,16017128,Medical Incident,02/12/2016,02/11/2016,02/12/2016 02:37:51 AM,02/12/2016 02:40:22 AM,02/12/2016 02:40:30 AM,02/12/2016 02:41:38 AM,02/12/2016 02:48:26 AM,02/12/2016 02:50:20 AM,02/12/2016 03:16:43 AM,Code 2 Transport,02/12/2016 03:57:58 AM,500 Block of VISITACION AV,San Francisco,94134,B10,44,6255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7105978615874, -122.404694677438)",160430258-63 +160370866,AM04,16014583,Medical Incident,02/06/2016,02/05/2016,02/06/2016 06:25:07 AM,02/06/2016 06:29:35 AM,02/06/2016 06:29:59 AM,02/06/2016 06:30:50 AM,02/06/2016 06:36:36 AM,02/06/2016 06:48:15 AM,02/06/2016 06:56:20 AM,Code 2 Transport,02/06/2016 07:47:15 AM,3100 Block of 22ND ST,San Francisco,94110,B06,7,5472,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7555901594439, -122.417118050434)",160370866-AM04 +102500064,E14,10078914,Medical Incident,09/07/2010,09/06/2010,09/07/2010 07:41:23 AM,09/07/2010 07:42:10 AM,09/07/2010 07:42:43 AM,09/07/2010 07:43:25 AM,09/07/2010 07:46:19 AM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 08:11:44 AM,300 Block of 23RD AVE,SF,94121,B07,14,7175,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7811588503246, -122.482594276939)",102500064-E14 +122860337,AM18,12094741,Medical Incident,10/12/2012,10/12/2012,10/12/2012 09:51:02 PM,10/12/2012 09:52:49 PM,10/12/2012 09:53:23 PM,10/12/2012 09:54:00 PM,10/12/2012 10:03:07 PM,10/12/2012 10:19:05 PM,10/12/2012 10:28:33 PM,Code 2 Transport,10/12/2012 11:14:45 PM,900 Block of HOWARD ST,SF,94103,B03,1,2245,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811500329072, -122.405277197305)",122860337-AM18 +140550166,KM12,14018556,Medical Incident,02/24/2014,02/24/2014,02/24/2014 12:26:02 PM,02/24/2014 12:28:46 PM,02/24/2014 12:29:11 PM,02/24/2014 12:29:38 PM,02/24/2014 12:33:33 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,No Merit,02/24/2014 12:34:01 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",140550166-KM12 +110340213,E44,11011185,Vehicle Fire,02/03/2011,02/03/2011,02/03/2011 02:17:13 PM,02/03/2011 02:19:33 PM,02/03/2011 02:20:19 PM,02/03/2011 02:21:08 PM,02/03/2011 02:27:35 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Fire,02/03/2011 02:29:37 PM,100 Block of BAY SHORE BLVD,SF,94124,B10,44,6271,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",110340213-E44 +121510322,E32,12050166,Outside Fire,05/30/2012,05/30/2012,05/30/2012 09:23:51 PM,05/30/2012 09:27:11 PM,05/30/2012 09:27:53 PM,05/30/2012 09:29:05 PM,05/30/2012 09:33:13 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Fire,05/30/2012 09:39:01 PM,0 Block of CAMELLIA AVE,SF,94112,B09,32,6113,3,3,3,true,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.7300279058626, -122.431228703307)",121510322-E32 +120630091,93,12020671,Medical Incident,03/03/2012,03/02/2012,03/03/2012 06:35:15 AM,03/03/2012 06:37:53 AM,03/03/2012 06:38:02 AM,03/03/2012 06:38:20 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,04/25/2016 01:59:52 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,1,1,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",120630091-93 +122820280,E36,12093448,Medical Incident,10/08/2012,10/08/2012,10/08/2012 07:02:39 PM,10/08/2012 07:05:27 PM,10/08/2012 07:06:30 PM,10/08/2012 07:06:37 PM,10/08/2012 07:09:33 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/08/2012 07:16:51 PM,100 Block of GOUGH ST,SF,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7747945946049, -122.422481808427)",122820280-E36 +103390359,81,10108674,Medical Incident,12/05/2010,12/05/2010,12/05/2010 10:44:23 PM,12/05/2010 10:44:23 PM,12/05/2010 10:44:42 PM,12/05/2010 10:46:11 PM,12/05/2010 10:55:46 PM,12/05/2010 11:19:49 PM,12/05/2010 11:30:36 PM,Code 2 Transport,12/06/2010 12:01:30 AM,0 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,true,,1,MEDIC,3,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",103390359-81 +160622612,KM08,16024761,Medical Incident,03/02/2016,03/02/2016,03/02/2016 03:53:31 PM,03/02/2016 03:53:31 PM,03/02/2016 03:54:37 PM,03/02/2016 03:55:28 PM,03/02/2016 04:14:25 PM,03/02/2016 04:14:27 PM,03/02/2016 04:30:29 PM,Code 2 Transport,03/02/2016 04:52:32 PM,DON CHEE WY/STEUART ST,San Francisco,94105,B03,35,2131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7937724122673, -122.393860770156)",160622612-KM08 +132490079,85,13083951,Traffic Collision,09/06/2013,09/06/2013,09/06/2013 08:45:56 AM,09/06/2013 08:46:20 AM,09/06/2013 08:46:45 AM,09/06/2013 08:48:24 AM,09/06/2013 08:59:21 AM,09/06/2013 09:15:20 AM,09/06/2013 09:34:02 AM,Code 2 Transport,09/06/2013 10:16:42 AM,SUNSET BL/WAWONA ST,SF,94116,B08,18,7553,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7366350879596, -122.49405381825)",132490079-85 +111570326,E01,11052028,Medical Incident,06/06/2011,06/06/2011,06/06/2011 06:49:42 PM,06/06/2011 06:51:35 PM,06/06/2011 06:52:09 PM,06/06/2011 06:52:39 PM,06/06/2011 06:54:49 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/06/2011 07:02:35 PM,500 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7886287320653, -122.398912581875)",111570326-E01 +102920158,E03,10093097,Medical Incident,10/19/2010,10/19/2010,10/19/2010 11:47:30 AM,10/19/2010 11:49:04 AM,10/19/2010 11:49:25 AM,10/19/2010 11:49:41 AM,10/19/2010 11:50:51 AM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/19/2010 11:54:12 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",102920158-E03 +160643946,61,16025718,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:22:06 PM,03/04/2016 10:23:15 PM,03/04/2016 10:23:46 PM,03/04/2016 10:23:52 PM,03/04/2016 10:25:29 PM,03/04/2016 10:47:26 PM,03/04/2016 10:54:18 PM,Code 2 Transport,03/04/2016 11:33:06 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160643946-61 +132660340,E03,13090382,Medical Incident,09/23/2013,09/23/2013,09/23/2013 06:37:16 PM,09/23/2013 06:39:00 PM,09/23/2013 06:43:19 PM,09/23/2013 06:44:37 PM,09/23/2013 06:48:12 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,No Merit,09/23/2013 06:58:17 PM,SUTTER ST/VAN NESS AV,SF,94109,B04,3,3156,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",132660340-E03 +160053382,78,16002163,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:36:41 PM,01/05/2016 08:36:41 PM,01/05/2016 08:36:58 PM,01/05/2016 08:37:05 PM,01/05/2016 08:41:27 PM,01/05/2016 08:51:07 PM,01/05/2016 08:55:33 PM,Code 2 Transport,01/05/2016 09:42:18 PM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160053382-78 +110660347,E48,11021908,Vehicle Fire,03/07/2011,03/07/2011,03/07/2011 10:24:31 PM,03/07/2011 10:25:23 PM,03/07/2011 10:26:47 PM,03/07/2011 10:27:51 PM,03/07/2011 10:33:21 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Fire,03/07/2011 10:41:57 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",110660347-E48 +122840338,E41,12094093,Medical Incident,10/10/2012,10/10/2012,10/10/2012 10:31:03 PM,10/10/2012 10:31:31 PM,10/10/2012 10:31:49 PM,10/10/2012 10:33:31 PM,10/10/2012 10:36:01 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 10:36:38 PM,2200 Block of VAN NESS AVE,SF,94123,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.7961949216234, -122.423680853797)",122840338-E41 +112150045,T15,11070869,Alarms,08/03/2011,08/02/2011,08/03/2011 05:24:36 AM,08/03/2011 05:24:56 AM,08/03/2011 05:25:11 AM,04/25/2016 02:03:21 PM,08/03/2011 05:32:37 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Other,08/03/2011 05:34:25 AM,400 Block of ATHENS ST,SF,94112,B09,43,615,3,3,3,false,,1,TRUCK,3,9,11,Excelsior,"(37.7208342283008, -122.428956362457)",112150045-T15 +131900059,B02,13064639,Alarms,07/09/2013,07/08/2013,07/09/2013 07:19:23 AM,07/09/2013 07:20:19 AM,07/09/2013 07:22:09 AM,07/09/2013 07:23:50 AM,07/09/2013 07:27:14 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Fire,07/09/2013 07:30:50 AM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",131900059-B02 +131770335,E03,13060211,Medical Incident,06/26/2013,06/26/2013,06/26/2013 07:17:18 PM,06/26/2013 07:19:35 PM,06/26/2013 07:20:08 PM,06/26/2013 07:20:18 PM,06/26/2013 07:23:03 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 07:31:16 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",131770335-E03 +122220373,RS1,12073753,Structure Fire,08/09/2012,08/09/2012,08/09/2012 10:41:26 PM,08/09/2012 10:42:38 PM,08/09/2012 10:42:48 PM,08/09/2012 10:48:14 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/09/2012 10:49:08 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Fire,1,RESCUE SQUAD,8,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",122220373-RS1 +121370173,E10,12045508,Medical Incident,05/16/2012,05/16/2012,05/16/2012 11:30:07 AM,05/16/2012 11:31:24 AM,05/16/2012 11:31:46 AM,05/16/2012 11:32:24 AM,05/16/2012 11:36:59 AM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/16/2012 11:40:45 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",121370173-E10 +132650359,E44,13090053,Medical Incident,09/22/2013,09/22/2013,09/22/2013 09:10:21 PM,09/22/2013 09:11:17 PM,09/22/2013 09:11:38 PM,09/22/2013 09:12:25 PM,09/22/2013 09:16:53 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/22/2013 09:27:05 PM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7120385154865, -122.40773839531)",132650359-E44 +131520342,T03,13051644,Alarms,06/01/2013,06/01/2013,06/01/2013 10:25:55 PM,06/01/2013 10:26:41 PM,06/01/2013 10:27:20 PM,06/01/2013 10:28:41 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 10:36:08 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",131520342-T03 +123490053,E16,12116588,Medical Incident,12/14/2012,12/13/2012,12/14/2012 04:22:25 AM,12/14/2012 04:23:30 AM,12/14/2012 04:23:40 AM,12/14/2012 04:25:27 AM,12/14/2012 04:27:02 AM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/14/2012 04:31:25 AM,1600 Block of GREENWICH ST,SF,94123,B04,16,3234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.7999975397541, -122.427205502151)",123490053-E16 +132010143,E01,13068125,Structure Fire,07/20/2013,07/20/2013,07/20/2013 10:29:01 AM,07/20/2013 10:32:04 AM,07/20/2013 10:32:27 AM,07/20/2013 10:32:48 AM,07/20/2013 10:35:24 AM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 10:44:38 AM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",132010143-E01 +132250046,85,13075841,Medical Incident,08/13/2013,08/12/2013,08/13/2013 04:16:26 AM,08/13/2013 04:19:59 AM,08/13/2013 04:20:18 AM,08/13/2013 04:20:39 AM,08/13/2013 04:37:00 AM,08/13/2013 04:54:12 AM,08/13/2013 05:11:07 AM,Code 2 Transport,08/13/2013 05:30:26 AM,MARTIN LUTHER KING DR/9TH AV,SF,94122,B08,22,7333,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7664758960917, -122.466427952839)",132250046-85 +120840362,E28,12028058,Medical Incident,03/24/2012,03/24/2012,03/24/2012 10:01:07 PM,03/24/2012 10:02:17 PM,03/24/2012 10:03:25 PM,03/24/2012 10:04:37 PM,03/24/2012 10:06:33 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/24/2012 10:16:05 PM,400 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8065032552257, -122.414620177087)",120840362-E28 +112680179,E01,11088571,Medical Incident,09/25/2011,09/25/2011,09/25/2011 12:20:37 PM,09/25/2011 12:20:37 PM,09/25/2011 12:20:37 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 12:35:06 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",112680179-E01 +140950231,87,14031983,Medical Incident,04/05/2014,04/05/2014,04/05/2014 02:12:53 PM,04/05/2014 02:15:42 PM,04/05/2014 02:16:09 PM,04/05/2014 02:16:16 PM,04/05/2014 02:33:48 PM,04/05/2014 02:46:25 PM,04/05/2014 03:20:07 PM,Code 2 Transport,04/05/2014 03:48:07 PM,100 Block of SHIPLEY ST,SAN FRANCISCO,94107,B03,1,2215,,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",140950231-87 +160520672,53,16020713,Medical Incident,02/21/2016,02/20/2016,02/21/2016 06:00:57 AM,02/21/2016 06:04:07 AM,02/21/2016 06:04:22 AM,02/21/2016 06:04:47 AM,02/21/2016 06:11:55 AM,02/21/2016 06:29:45 AM,02/21/2016 06:56:30 AM,Code 2 Transport,02/21/2016 07:14:39 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160520672-53 +160723142,60,16028767,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:40:20 PM,03/12/2016 08:41:32 PM,03/12/2016 08:55:17 PM,03/12/2016 08:55:42 PM,03/12/2016 09:11:27 PM,03/12/2016 09:17:29 PM,03/12/2016 09:28:48 PM,Code 2 Transport,03/12/2016 10:02:14 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160723142-60 +121130053,77,12037409,Medical Incident,04/22/2012,04/21/2012,04/22/2012 03:01:15 AM,04/22/2012 03:01:53 AM,04/22/2012 03:02:34 AM,04/22/2012 03:03:02 AM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 03:10:05 AM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",121130053-77 +133430338,E43,13116448,Traffic Collision,12/09/2013,12/09/2013,12/09/2013 07:04:46 PM,12/09/2013 07:06:04 PM,12/09/2013 07:06:37 PM,12/09/2013 07:08:35 PM,12/09/2013 07:10:48 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/09/2013 07:26:22 PM,MISSION ST/ALLISON ST,SF,94112,B09,43,6176,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7146606201137, -122.442564962687)",133430338-E43 +112560156,AM04,11084414,Medical Incident,09/13/2011,09/13/2011,09/13/2011 11:32:04 AM,09/13/2011 11:33:22 AM,09/13/2011 11:33:33 AM,09/13/2011 11:35:23 AM,09/13/2011 11:40:24 AM,09/13/2011 12:16:18 PM,09/13/2011 12:40:10 PM,Code 2 Transport,09/13/2011 01:28:00 PM,2400 Block of 41ST AVE,SF,94116,B08,18,7636,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7410783762927, -122.499127726885)",112560156-AM04 +160621547,61,16024673,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:42:17 AM,03/02/2016 11:42:51 AM,03/02/2016 11:43:04 AM,03/02/2016 11:43:48 AM,03/02/2016 11:50:52 AM,03/02/2016 12:10:05 PM,03/02/2016 12:25:25 PM,Code 2 Transport,03/02/2016 12:57:17 PM,BRANNAN ST/9TH ST,San Francisco,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7700497723189, -122.407001491576)",160621547-61 +103080290,RS2,10098773,Structure Fire,11/04/2010,11/04/2010,11/04/2010 04:43:26 PM,11/04/2010 04:45:21 PM,11/04/2010 04:45:47 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 04:59:25 PM,2500 Block of OCEAN AVE,SF,94132,B08,19,8452,3,3,3,false,,1,RESCUE SQUAD,5,8,7,West of Twin Peaks,"(37.7313894670204, -122.472715463846)",103080290-RS2 +160023392,63,16000941,Medical Incident,01/02/2016,01/02/2016,01/02/2016 10:04:07 PM,01/02/2016 10:04:29 PM,01/02/2016 10:05:07 PM,01/02/2016 10:05:50 PM,01/02/2016 10:10:55 PM,01/02/2016 10:31:22 PM,01/02/2016 10:53:22 PM,Code 2 Transport,01/02/2016 11:37:28 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160023392-63 +160302241,77,16011827,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:39:33 PM,01/30/2016 02:39:33 PM,01/30/2016 02:39:44 PM,01/30/2016 02:39:50 PM,01/30/2016 02:45:47 PM,01/30/2016 03:01:23 PM,01/30/2016 03:34:33 PM,Other,01/30/2016 04:21:59 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7205476379806, -122.437805967469)",160302241-77 +123370084,E06,12112061,Medical Incident,12/02/2012,12/01/2012,12/02/2012 01:43:50 AM,12/02/2012 01:48:22 AM,12/02/2012 01:48:59 AM,12/02/2012 01:50:29 AM,12/02/2012 01:55:59 AM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/02/2012 02:03:13 AM,3100 Block of 16TH ST,SF,94103,B02,6,5235,1,1,2,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7649429344541, -122.422375182461)",123370084-E06 +121230072,KM15,12040737,Medical Incident,05/02/2012,05/02/2012,05/02/2012 08:37:19 AM,05/02/2012 08:39:22 AM,05/02/2012 08:40:01 AM,05/02/2012 08:40:37 AM,05/02/2012 08:43:55 AM,05/02/2012 08:58:38 AM,05/02/2012 09:15:24 AM,Code 2 Transport,05/02/2012 09:38:11 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121230072-KM15 +160261634,74,16010290,Medical Incident,01/26/2016,01/26/2016,01/26/2016 11:56:27 AM,01/26/2016 11:57:23 AM,01/26/2016 11:58:25 AM,01/26/2016 11:59:01 AM,01/26/2016 12:12:26 PM,01/26/2016 12:36:31 PM,01/26/2016 12:41:17 PM,Code 2 Transport,01/26/2016 01:24:59 PM,700 Block of POLK ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838069204559, -122.41925042197)",160261634-74 +113320053,T06,11109873,Alarms,11/28/2011,11/27/2011,11/28/2011 06:16:28 AM,11/28/2011 06:17:37 AM,11/28/2011 06:18:28 AM,11/28/2011 06:21:26 AM,11/28/2011 06:21:58 AM,04/25/2016 02:01:26 PM,04/25/2016 02:01:26 PM,Other,11/28/2011 06:25:16 AM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",113320053-T06 +111900023,RS1,11062698,Structure Fire,07/09/2011,07/08/2011,07/09/2011 01:31:24 AM,07/09/2011 01:32:31 AM,07/09/2011 01:32:45 AM,07/09/2011 01:33:58 AM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Other,07/09/2011 01:37:38 AM,800 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,,1,RESCUE SQUAD,9,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",111900023-RS1 +111970095,E17,11064941,Alarms,07/16/2011,07/16/2011,07/16/2011 08:40:04 AM,07/16/2011 08:40:04 AM,07/16/2011 08:40:15 AM,07/16/2011 08:41:46 AM,07/16/2011 08:44:08 AM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 08:45:52 AM,100 Block of WHITNEY YOUNG CIR,SF,94124,B10,17,1100,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7360363462118, -122.385908786754)",111970095-E17 +160431331,85,16017251,Medical Incident,02/12/2016,02/12/2016,02/12/2016 11:03:47 AM,02/12/2016 11:05:22 AM,02/12/2016 11:08:49 AM,02/12/2016 11:09:19 AM,02/12/2016 11:20:35 AM,02/12/2016 11:40:48 AM,02/12/2016 11:47:42 AM,Code 2 Transport,02/12/2016 12:02:42 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160431331-85 +160300661,75,16011690,Medical Incident,01/30/2016,01/29/2016,01/30/2016 06:20:00 AM,01/30/2016 06:22:33 AM,01/30/2016 06:24:01 AM,01/30/2016 06:24:09 AM,01/30/2016 06:36:56 AM,01/30/2016 06:55:39 AM,01/30/2016 07:10:07 AM,Code 2 Transport,01/30/2016 07:47:53 AM,3600 Block of WAWONA ST,San Francisco,94116,B08,23,7733,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7360605728424, -122.505741468658)",160300661-75 +130110018,E28,13003613,Medical Incident,01/11/2013,01/10/2013,01/11/2013 01:38:36 AM,01/11/2013 01:40:17 AM,01/11/2013 01:41:08 AM,01/11/2013 01:43:12 AM,01/11/2013 01:46:12 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/11/2013 01:53:48 AM,2600 Block of TAYLOR ST,SF,94133,B01,28,1433,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8068011147643, -122.415592391485)",130110018-E28 +102340356,E14,10073778,Medical Incident,08/22/2010,08/22/2010,08/22/2010 10:20:57 PM,08/22/2010 10:23:20 PM,08/22/2010 10:23:45 PM,08/22/2010 10:24:58 PM,08/22/2010 10:26:51 PM,08/22/2010 10:36:18 PM,04/25/2016 02:08:57 PM,Other,08/22/2010 11:01:15 PM,6700 Block of GEARY BLVD,SF,94121,B07,14,7245,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7798957711328, -122.491710309641)",102340356-E14 +112340333,AM10,11077377,Medical Incident,08/22/2011,08/22/2011,08/22/2011 09:35:22 PM,08/22/2011 09:37:08 PM,08/22/2011 09:37:53 PM,08/22/2011 09:38:35 PM,08/22/2011 09:49:02 PM,08/22/2011 10:00:20 PM,08/22/2011 10:14:46 PM,Code 2 Transport,08/22/2011 10:59:30 PM,100 Block of THORNTON AVE,SF,94124,B10,17,6513,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7308811280003, -122.393441784119)",112340333-AM10 +120590262,77,12019489,Medical Incident,02/28/2012,02/28/2012,02/28/2012 04:47:58 PM,02/28/2012 04:48:54 PM,02/28/2012 04:49:04 PM,02/28/2012 04:49:36 PM,02/28/2012 04:53:10 PM,02/28/2012 05:06:37 PM,02/28/2012 05:42:34 PM,Code 2 Transport,02/28/2012 05:54:18 PM,800 Block of 31ST AVE,SF,94121,B07,14,7242,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7732128077051, -122.490615216372)",120590262-77 +103450256,T03,10110640,Medical Incident,12/11/2010,12/11/2010,12/11/2010 03:36:10 PM,12/11/2010 03:36:41 PM,12/11/2010 03:37:02 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 03:38:01 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",103450256-T03 +113380133,94,11111966,Medical Incident,12/04/2011,12/04/2011,12/04/2011 09:32:01 AM,12/04/2011 09:33:48 AM,12/04/2011 09:34:37 AM,12/04/2011 09:34:49 AM,12/04/2011 09:53:44 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Patient Declined Transport,12/04/2011 10:23:55 AM,100 Block of 27TH ST,SF,94110,B06,11,5556,1,1,2,true,,1,MEDIC,1,6,8,Noe Valley,"(37.7471574360743, -122.423541884062)",113380133-94 +111740221,62,11057428,Medical Incident,06/23/2011,06/23/2011,06/23/2011 03:57:12 PM,06/23/2011 03:58:11 PM,06/23/2011 04:00:50 PM,06/23/2011 04:01:06 PM,06/23/2011 04:19:55 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Patient Declined Transport,06/23/2011 04:24:44 PM,0 Block of GRANT AVE,SF,94108,B01,1,1321,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",111740221-62 +160873321,89,16034737,Medical Incident,03/27/2016,03/27/2016,03/27/2016 09:09:47 PM,03/27/2016 09:09:47 PM,03/27/2016 09:10:13 PM,03/27/2016 09:10:22 PM,03/27/2016 09:23:37 PM,03/27/2016 09:52:42 PM,03/27/2016 10:11:36 PM,Code 2 Transport,03/27/2016 10:46:12 PM,TAYLOR ST/JEFFERSON ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.808214052974, -122.41580242723)",160873321-89 +160632912,68,16025184,Medical Incident,03/03/2016,03/03/2016,03/03/2016 05:50:55 PM,03/03/2016 05:50:55 PM,03/03/2016 05:51:14 PM,03/03/2016 05:51:25 PM,03/03/2016 05:58:05 PM,03/03/2016 06:05:47 PM,03/03/2016 06:56:10 PM,Code 2 Transport,03/03/2016 07:16:24 PM,100 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2157,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7872685412524, -122.400188931682)",160632912-68 +122040151,T06,12067783,Medical Incident,07/22/2012,07/22/2012,07/22/2012 10:59:14 AM,07/22/2012 11:00:45 AM,07/22/2012 11:01:33 AM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 11:03:45 AM,3600 Block of 17TH ST,SF,94114,B02,6,5251,E,2,2,false,Potentially Life-Threatening,1,TRUCK,5,2,8,Castro/Upper Market,"(37.7629861188021, -122.427843219467)",122040151-T06 +160882142,KM01,16034989,Medical Incident,03/28/2016,03/28/2016,03/28/2016 02:27:01 PM,03/28/2016 02:29:16 PM,03/28/2016 02:29:56 PM,03/28/2016 02:30:26 PM,03/28/2016 02:34:19 PM,03/28/2016 03:00:45 PM,03/28/2016 03:09:46 PM,Code 3 Transport,03/28/2016 03:56:23 PM,1000 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",160882142-KM01 +102790176,KM01,10088696,Traffic Collision,10/06/2010,10/06/2010,10/06/2010 01:40:02 PM,10/06/2010 01:42:09 PM,10/06/2010 01:43:34 PM,10/06/2010 01:45:18 PM,10/06/2010 01:53:29 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,No Merit,10/06/2010 02:01:35 PM,1100 Block of FELL ST,SF,94117,B05,21,4145,2,2,2,false,,1,PRIVATE,2,5,5,Hayes Valley,"(37.7741149466235, -122.436764397396)",102790176-KM01 +112170210,99,11071727,Medical Incident,08/05/2011,08/05/2011,08/05/2011 02:31:14 PM,08/05/2011 02:32:05 PM,08/05/2011 02:32:48 PM,08/05/2011 02:34:54 PM,08/05/2011 02:41:52 PM,08/05/2011 02:53:29 PM,08/05/2011 02:59:08 PM,Code 2 Transport,08/05/2011 03:43:02 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",112170210-99 +122890286,E36,12095699,Medical Incident,10/15/2012,10/15/2012,10/15/2012 04:46:24 PM,10/15/2012 04:47:09 PM,10/15/2012 04:47:26 PM,10/15/2012 04:48:38 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 04:49:09 PM,MISSION ST/MARY ST,SF,94103,B03,1,2246,E,E,3,true,Non Life-threatening,1,ENGINE,6,3,6,South of Market,"(37.7821194192723, -122.407254675951)",122890286-E36 +113040055,E05,11100825,Medical Incident,10/31/2011,10/30/2011,10/31/2011 06:04:09 AM,10/31/2011 06:05:04 AM,10/31/2011 06:06:12 AM,10/31/2011 06:06:53 AM,10/31/2011 06:09:41 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 06:19:55 AM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",113040055-E05 +110010220,T03,11000177,Structure Fire,01/01/2011,12/31/2010,01/01/2011 03:48:40 AM,01/01/2011 03:48:40 AM,01/01/2011 03:48:52 AM,01/01/2011 03:50:07 AM,01/01/2011 03:51:16 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 03:52:47 AM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",110010220-T03 +120120366,72,12004265,Medical Incident,01/12/2012,01/12/2012,01/12/2012 10:30:00 PM,01/12/2012 10:31:15 PM,01/12/2012 10:31:26 PM,01/12/2012 10:31:31 PM,01/12/2012 10:32:59 PM,01/12/2012 10:42:53 PM,01/12/2012 11:14:21 PM,Code 2 Transport,01/12/2012 11:31:26 PM,STANYAN ST/FREDERICK ST,SF,94117,B05,12,4551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.766374073924, -122.452947033535)",120120366-72 +111160209,T11,11038295,Structure Fire,04/26/2011,04/26/2011,04/26/2011 01:29:40 PM,04/26/2011 01:29:40 PM,04/26/2011 01:29:49 PM,04/26/2011 01:30:58 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 01:33:30 PM,AMBER DR/TURQUOISE WY,SF,94131,B06,26,8164,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7443481471112, -122.442629387858)",111160209-T11 +133340002,96,13113087,Medical Incident,11/30/2013,11/29/2013,11/30/2013 12:00:47 AM,11/30/2013 12:01:51 AM,11/30/2013 12:18:50 AM,11/30/2013 12:20:45 AM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/30/2013 12:24:46 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8641,2,3,3,true,Potentially Life-Threatening,1,MEDIC,4,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",133340002-96 +160610079,71,16024145,Medical Incident,03/01/2016,02/29/2016,03/01/2016 12:46:32 AM,03/01/2016 12:46:32 AM,03/01/2016 12:46:46 AM,03/01/2016 12:47:03 AM,03/01/2016 12:56:54 AM,03/01/2016 01:10:33 AM,03/01/2016 01:21:03 AM,Code 2 Transport,03/01/2016 01:59:05 AM,200 Block of 20TH AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7831962163812, -122.479514181601)",160610079-71 +120410157,83,12013634,Traffic Collision,02/10/2012,02/10/2012,02/10/2012 11:19:52 AM,02/10/2012 11:19:55 AM,02/10/2012 11:20:35 AM,02/10/2012 11:21:49 AM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 11:32:07 AM,DOUGLASS ST/27TH ST,SF,94131,B06,26,5554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7462313384095, -122.43801133342)",120410157-83 +160482724,76,16019419,Medical Incident,02/17/2016,02/17/2016,02/17/2016 04:29:24 PM,02/17/2016 04:30:36 PM,02/17/2016 04:30:42 PM,02/17/2016 04:31:06 PM,02/17/2016 04:44:35 PM,02/17/2016 04:52:59 PM,02/17/2016 05:11:48 PM,Code 2 Transport,02/17/2016 05:43:13 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160482724-76 +113330206,AM02,11110325,Medical Incident,11/29/2011,11/29/2011,11/29/2011 02:45:00 PM,11/29/2011 02:46:12 PM,11/29/2011 02:50:16 PM,11/29/2011 02:50:19 PM,11/29/2011 03:02:14 PM,11/29/2011 03:34:42 PM,04/25/2016 02:01:25 PM,Code 2 Transport,11/29/2011 04:41:48 PM,100 Block of ARLETA AVE,SF,94134,B10,44,6267,1,1,2,false,,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7136338116844, -122.405760298273)",113330206-AM02 +120020314,AM18,12000856,Medical Incident,01/02/2012,01/02/2012,01/02/2012 09:31:25 PM,01/02/2012 09:31:28 PM,01/02/2012 09:32:15 PM,01/02/2012 09:33:11 PM,01/02/2012 09:38:25 PM,01/02/2012 09:42:33 PM,01/02/2012 09:45:31 PM,Code 2 Transport,01/02/2012 10:09:04 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7756454671917, -122.412432457912)",120020314-AM18 +131320159,E43,13044564,Medical Incident,05/12/2013,05/12/2013,05/12/2013 01:46:09 PM,05/12/2013 01:48:05 PM,05/12/2013 01:48:38 PM,05/12/2013 01:49:23 PM,05/12/2013 01:51:09 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 02:09:41 PM,800 Block of MOSCOW ST,SF,94134,B09,43,6161,3,3,3,false,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7147094376962, -122.432490972814)",131320159-E43 +103250196,E31,10104194,Citizen Assist / Service Call,11/21/2010,11/21/2010,11/21/2010 01:34:47 PM,11/21/2010 01:36:52 PM,11/21/2010 01:37:03 PM,11/21/2010 01:37:48 PM,11/21/2010 01:44:48 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 01:50:57 PM,4600 Block of CALIFORNIA ST,SF,94118,B07,31,7136,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7846372329649, -122.467225537169)",103250196-E31 +131160250,E29,13039143,Medical Incident,04/26/2013,04/26/2013,04/26/2013 07:24:23 PM,04/26/2013 07:25:29 PM,04/26/2013 07:26:48 PM,04/26/2013 07:27:54 PM,04/26/2013 07:31:13 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 07:32:22 PM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7628776667056, -122.419528998826)",131160250-E29 +123430233,T09,12114658,Structure Fire,12/08/2012,12/08/2012,12/08/2012 02:53:57 PM,12/08/2012 02:54:17 PM,12/08/2012 02:54:27 PM,12/08/2012 02:55:35 PM,12/08/2012 02:59:50 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 03:17:00 PM,600 Block of WISCONSIN ST,SF,94107,B10,37,2521,3,3,3,false,Alarm,1,TRUCK,6,10,10,Potrero Hill,"(37.7585798761387, -122.398991240016)",123430233-T09 +160280486,81,16010970,Medical Incident,01/28/2016,01/27/2016,01/28/2016 06:39:05 AM,01/28/2016 06:40:54 AM,01/28/2016 06:41:11 AM,01/28/2016 06:41:22 AM,01/28/2016 06:45:02 AM,01/28/2016 07:09:54 AM,01/28/2016 07:21:02 AM,Code 2 Transport,01/28/2016 07:59:43 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160280486-81 +120810292,57,12026974,Medical Incident,03/21/2012,03/21/2012,03/21/2012 05:14:57 PM,03/21/2012 05:15:16 PM,03/21/2012 05:15:55 PM,03/21/2012 05:16:09 PM,03/21/2012 05:35:28 PM,03/21/2012 05:41:59 PM,03/21/2012 06:18:17 PM,Code 2 Transport,03/21/2012 06:26:23 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",120810292-57 +110180017,B10,11005807,Structure Fire,01/18/2011,01/17/2011,01/18/2011 01:47:17 AM,01/18/2011 01:47:17 AM,01/18/2011 01:47:47 AM,01/18/2011 01:49:23 AM,01/18/2011 01:51:38 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Fire,01/18/2011 02:00:29 AM,23RD ST/SAN BRUNO AV,SF,94110,B10,37,2554,3,3,3,false,,1,CHIEF,1,10,10,Mission,"(37.7543957935287, -122.404484367196)",110180017-B10 +121400032,92,12046370,Medical Incident,05/19/2012,05/18/2012,05/19/2012 02:03:47 AM,05/19/2012 02:05:38 AM,05/19/2012 02:06:12 AM,05/19/2012 02:06:48 AM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/19/2012 02:11:43 AM,500 Block of JONES ST,SF,94102,B01,3,1462,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",121400032-92 +121620022,E24,12053490,Medical Incident,06/10/2012,06/09/2012,06/10/2012 01:08:33 AM,06/10/2012 01:09:18 AM,06/10/2012 01:10:46 AM,06/10/2012 01:11:50 AM,06/10/2012 01:15:01 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 01:32:53 AM,0 Block of EAGLE ST,SF,94114,B06,24,5411,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7582655405732, -122.442897529652)",121620022-E24 +110310041,E33,11010059,Medical Incident,01/31/2011,01/30/2011,01/31/2011 05:09:14 AM,01/31/2011 05:10:01 AM,01/31/2011 05:10:26 AM,01/31/2011 05:12:27 AM,01/31/2011 05:14:05 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/31/2011 05:33:28 AM,3800 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,true,,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7115186082108, -122.466572433425)",110310041-E33 +160422120,87,16016905,Medical Incident,02/11/2016,02/11/2016,02/11/2016 02:24:32 PM,02/11/2016 02:25:35 PM,02/11/2016 02:26:27 PM,02/11/2016 02:35:19 PM,02/11/2016 02:50:56 PM,02/11/2016 03:26:51 PM,02/11/2016 04:14:16 PM,Code 2 Transport,02/11/2016 05:06:33 PM,800 Block of HEAD ST,San Francisco,94132,B09,15,8434,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7220266240306, -122.464274630754)",160422120-87 +110860084,KM15,11028292,Medical Incident,03/27/2011,03/26/2011,03/27/2011 04:10:17 AM,03/27/2011 04:11:25 AM,03/27/2011 04:13:12 AM,03/27/2011 04:14:05 AM,03/27/2011 04:27:32 AM,03/27/2011 04:42:16 AM,03/27/2011 04:49:10 AM,Code 2 Transport,03/27/2011 05:25:08 AM,700 Block of BACON ST,SF,94134,B10,42,6335,3,3,3,false,,1,PRIVATE,2,9,9,Portola,"(37.7260069529763, -122.410041179796)",110860084-KM15 +160072110,54,16002883,Medical Incident,01/07/2016,01/07/2016,01/07/2016 02:31:04 PM,01/07/2016 02:32:06 PM,01/07/2016 02:32:35 PM,01/07/2016 02:33:20 PM,01/07/2016 02:46:38 PM,01/07/2016 02:55:22 PM,01/07/2016 03:06:38 PM,Code 2 Transport,01/07/2016 04:01:26 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160072110-54 +160761942,AM12,16030162,Medical Incident,03/16/2016,03/16/2016,03/16/2016 01:26:11 PM,03/16/2016 01:27:53 PM,03/16/2016 01:28:02 PM,03/16/2016 01:29:31 PM,03/16/2016 01:35:41 PM,03/16/2016 01:52:12 PM,03/16/2016 02:01:45 PM,Code 2 Transport,03/16/2016 02:46:13 PM,800 Block of GRANT AVE,San Francisco,94108,B01,13,1313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7947123862364, -122.406321854883)",160761942-AM12 +121000365,E03,12033295,Medical Incident,04/09/2012,04/09/2012,04/09/2012 08:25:43 PM,04/09/2012 08:26:43 PM,04/09/2012 08:28:46 PM,04/09/2012 08:29:59 PM,04/09/2012 08:32:49 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Patient Declined Transport,04/09/2012 08:34:50 PM,HYDE ST/MARKET ST,SF,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",121000365-E03 +160080871,55,16003139,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:41:15 AM,01/08/2016 08:41:55 AM,01/08/2016 08:42:02 AM,01/08/2016 08:44:36 AM,01/08/2016 08:45:22 AM,01/08/2016 08:50:16 AM,01/08/2016 09:08:38 AM,Code 2 Transport,01/08/2016 09:55:39 AM,2900 Block of FOLSOM ST,San Francisco,94110,B06,7,5614,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7500991052351, -122.41391717161)",160080871-55 +121860025,79,12061830,Medical Incident,07/04/2012,07/03/2012,07/04/2012 02:01:19 AM,07/04/2012 02:01:19 AM,07/04/2012 02:02:07 AM,07/04/2012 02:02:31 AM,07/04/2012 02:06:59 AM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Patient Declined Transport,07/04/2012 02:26:40 AM,0 Block of PEARL ST,SF,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7702165874997, -122.42393258709)",121860025-79 +140740104,E03,14024959,Medical Incident,03/15/2014,03/15/2014,03/15/2014 09:09:09 AM,03/15/2014 09:11:42 AM,03/15/2014 09:13:59 AM,03/15/2014 09:16:30 AM,03/15/2014 09:18:45 AM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Patient Declined Transport,03/15/2014 09:58:11 AM,1000 Block of LARKIN ST,SAN FRANCISCO,94109,B04,3,1641,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7872715205959, -122.41824964748)",140740104-E03 +130110095,KM06,13003681,Traffic Collision,01/11/2013,01/11/2013,01/11/2013 09:09:51 AM,01/11/2013 09:12:06 AM,01/11/2013 09:12:17 AM,01/11/2013 09:12:51 AM,01/11/2013 09:15:42 AM,01/11/2013 09:24:44 AM,01/11/2013 09:31:59 AM,Code 2 Transport,01/11/2013 09:51:27 AM,MARKET ST/7TH ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",130110095-KM06 +131220246,E08,13041070,Medical Incident,05/02/2013,05/02/2013,05/02/2013 01:19:27 PM,05/02/2013 01:21:10 PM,05/02/2013 01:23:36 PM,05/02/2013 01:25:16 PM,05/02/2013 01:26:18 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 01:31:29 PM,3RD ST/TOWNSEND ST,SF,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7788517157298, -122.39274978786)",131220246-E08 +132300042,55,13077545,Medical Incident,08/18/2013,08/17/2013,08/18/2013 01:58:43 AM,08/18/2013 01:59:25 AM,08/18/2013 02:06:48 AM,08/18/2013 02:06:56 AM,08/18/2013 02:17:12 AM,08/18/2013 02:36:33 AM,08/18/2013 02:41:25 AM,Code 2 Transport,08/18/2013 03:35:26 AM,3100 Block of FILLMORE ST,SF,94123,B04,16,3553,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7987108226628, -122.435887713221)",132300042-55 +130700323,E13,13023454,Medical Incident,03/11/2013,03/11/2013,03/11/2013 05:35:55 PM,03/11/2013 05:36:52 PM,03/11/2013 05:37:29 PM,03/11/2013 05:38:08 PM,03/11/2013 05:41:23 PM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,Other,03/11/2013 05:48:49 PM,MISSION ST/3RD ST,SF,94103,B03,1,2178,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",130700323-E13 +140030076,88,14000949,Medical Incident,01/03/2014,01/02/2014,01/03/2014 05:37:25 AM,01/03/2014 05:38:36 AM,01/03/2014 05:41:49 AM,01/03/2014 05:42:14 AM,01/03/2014 05:49:26 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Patient Declined Transport,01/03/2014 06:25:16 AM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",140030076-88 +131240459,E41,13042062,Medical Incident,05/04/2013,05/04/2013,05/04/2013 11:02:39 PM,05/04/2013 11:03:27 PM,05/04/2013 11:03:36 PM,05/04/2013 11:04:50 PM,05/04/2013 11:06:33 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/04/2013 11:13:47 PM,1300 Block of JONES ST,SF,94108,B01,41,1466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7936750957454, -122.41449049505)",131240459-E41 +140950167,82,14031930,Medical Incident,04/05/2014,04/05/2014,04/05/2014 11:32:45 AM,04/05/2014 11:34:53 AM,04/05/2014 11:35:11 AM,04/05/2014 11:37:16 AM,04/05/2014 11:39:40 AM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,No Merit,04/05/2014 11:43:42 AM,5400 Block of GEARY BLVD,SAN FRANCISCO,94121,B07,31,7161,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7805288737833, -122.477780860361)",140950167-82 +123420247,T03,12114197,Medical Incident,12/07/2012,12/07/2012,12/07/2012 01:36:26 PM,12/07/2012 01:38:01 PM,12/07/2012 01:38:40 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 01:40:30 PM,100 Block of TURK ST,SF,94102,B03,1,1456,2,2,2,false,Potentially Life-Threatening,1,TRUCK,4,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",123420247-T03 +123250272,KM04,12108156,Medical Incident,11/20/2012,11/20/2012,11/20/2012 03:53:41 PM,11/20/2012 03:54:12 PM,11/20/2012 03:55:10 PM,11/20/2012 03:56:23 PM,11/20/2012 04:01:27 PM,11/20/2012 04:22:23 PM,11/20/2012 04:36:04 PM,Code 2 Transport,11/20/2012 05:14:19 PM,CLEMENT ST/7TH AV,SF,94118,B07,31,7127,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7828909801953, -122.465492390241)",123250272-KM04 +133050453,66,13103850,Medical Incident,11/01/2013,11/01/2013,11/01/2013 10:24:44 PM,11/01/2013 10:26:02 PM,11/01/2013 10:27:09 PM,11/01/2013 10:27:17 PM,11/01/2013 10:38:23 PM,11/01/2013 11:01:09 PM,11/01/2013 11:18:52 PM,Code 2 Transport,11/02/2013 12:08:20 AM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054738067872, -122.407570127181)",133050453-66 +140370193,RC3,14012516,Traffic Collision,02/06/2014,02/06/2014,02/06/2014 01:18:13 PM,02/06/2014 01:20:36 PM,02/06/2014 01:22:59 PM,02/06/2014 01:25:07 PM,02/06/2014 02:06:09 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 02:16:29 PM,200 Block of ALEMANY BLVD,SF,94110,B09,32,8137,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,10,9,Bernal Heights,"(37.7351501389095, -122.410360631063)",140370193-RC3 +110050183,E08,11001634,Outside Fire,01/05/2011,01/05/2011,01/05/2011 12:04:30 PM,01/05/2011 12:04:30 PM,01/05/2011 12:04:59 PM,01/05/2011 12:06:15 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 12:10:42 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8081576930541, -122.412496867032)",110050183-E08 +160720447,AM22,16028472,Medical Incident,03/12/2016,03/11/2016,03/12/2016 03:29:20 AM,03/12/2016 03:30:53 AM,03/12/2016 03:31:08 AM,03/12/2016 03:31:33 AM,03/12/2016 03:36:15 AM,03/12/2016 03:47:56 AM,03/12/2016 04:12:27 AM,Code 2 Transport,03/12/2016 04:32:14 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160720447-AM22 +120730290,B10,12024313,Structure Fire,03/13/2012,03/13/2012,03/13/2012 05:19:56 PM,03/13/2012 05:21:02 PM,03/13/2012 05:22:04 PM,03/13/2012 05:23:33 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 05:26:57 PM,4300 Block of 23RD ST,SF,94114,B06,24,5516,3,3,3,false,Fire,1,CHIEF,5,6,8,Noe Valley,"(37.7526182578559, -122.439705916869)",120730290-B10 +102800034,93,10088889,Medical Incident,10/07/2010,10/06/2010,10/07/2010 03:33:33 AM,10/07/2010 03:34:55 AM,10/07/2010 03:35:44 AM,10/07/2010 03:36:18 AM,10/07/2010 03:40:43 AM,10/07/2010 04:04:33 AM,10/07/2010 04:11:29 AM,Code 3 Transport,10/07/2010 04:49:59 AM,2600 Block of QUINTARA ST,SF,94116,B08,18,7556,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7479194803427, -122.493766483973)",102800034-93 +113120202,E14,11103656,Medical Incident,11/08/2011,11/08/2011,11/08/2011 01:46:36 PM,11/08/2011 01:47:35 PM,11/08/2011 01:47:50 PM,11/08/2011 01:48:59 PM,11/08/2011 01:51:04 PM,11/08/2011 02:17:29 PM,11/08/2011 02:26:14 PM,Other,11/08/2011 03:00:28 PM,5700 Block of GEARY BLVD,SF,94121,B07,14,7172,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7801345144004, -122.48097066301)",113120202-E14 +111160355,D3,11038419,Structure Fire,04/26/2011,04/26/2011,04/26/2011 07:40:50 PM,04/26/2011 07:43:53 PM,04/26/2011 07:44:49 PM,04/26/2011 07:46:02 PM,04/26/2011 07:49:05 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 07:54:27 PM,3900 Block of 23RD ST,SF,94114,B06,11,5514,3,3,3,false,,1,CHIEF,5,6,8,Noe Valley,"(37.7531464686924, -122.430920904132)",111160355-D3 +160790306,AM20,16031281,Medical Incident,03/19/2016,03/18/2016,03/19/2016 02:08:52 AM,03/19/2016 02:08:52 AM,03/19/2016 02:09:11 AM,03/19/2016 02:10:20 AM,03/19/2016 02:20:50 AM,03/19/2016 02:36:00 AM,03/19/2016 03:04:49 AM,Code 2 Transport,03/19/2016 03:24:05 AM,500 Block of BRANNAN ST,San Francisco,94107,B03,8,2241,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7774865325812, -122.397691886789)",160790306-AM20 +130290381,E01,13010073,Medical Incident,01/29/2013,01/29/2013,01/29/2013 11:41:18 PM,01/29/2013 11:42:21 PM,01/29/2013 11:43:40 PM,01/29/2013 11:45:38 PM,01/29/2013 11:48:37 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/29/2013 11:58:46 PM,700 Block of CLEMENTINA ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7747750238121, -122.411341676645)",130290381-E01 +132500088,E35,13084319,Medical Incident,09/07/2013,09/06/2013,09/07/2013 05:16:26 AM,09/07/2013 05:19:44 AM,09/07/2013 05:20:42 AM,09/07/2013 05:23:53 AM,09/07/2013 05:26:11 AM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/07/2013 05:30:12 AM,1ST ST/FOLSOM ST,SF,94105,B03,35,2137,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7872982139437, -122.394481274637)",132500088-E35 +140350034,T09,14011689,Vehicle Fire,02/04/2014,02/03/2014,02/04/2014 03:39:04 AM,02/04/2014 03:40:12 AM,02/04/2014 03:40:34 AM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Other,02/04/2014 03:42:33 AM,QUINT ST/NEWCOMB AV,SF,94124,B10,42,6444,,3,3,false,Fire,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7384036694155, -122.39538190701)",140350034-T09 +131160212,58,13039108,Medical Incident,04/26/2013,04/26/2013,04/26/2013 05:28:09 PM,04/26/2013 05:29:53 PM,04/26/2013 05:30:10 PM,04/26/2013 05:30:23 PM,04/26/2013 05:34:24 PM,04/26/2013 05:52:20 PM,04/26/2013 05:56:02 PM,Code 2 Transport,04/26/2013 06:30:24 PM,PACIFIC AV/STEINER ST,SF,94115,B04,16,3613,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.793136719645, -122.436381033468)",131160212-58 +120750321,E14,12025030,Alarms,03/15/2012,03/15/2012,03/15/2012 08:49:50 PM,03/15/2012 08:50:30 PM,03/15/2012 08:50:48 PM,03/15/2012 08:52:03 PM,03/15/2012 08:53:54 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Other,03/15/2012 09:03:55 PM,200 Block of 26TH AVE,SF,94121,B07,14,7217,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7847684584929, -122.486087154239)",120750321-E14 +132920213,B09,13099398,Medical Incident,10/19/2013,10/19/2013,10/19/2013 03:02:46 PM,10/19/2013 03:03:22 PM,10/19/2013 03:10:10 PM,10/19/2013 03:11:13 PM,10/19/2013 03:21:45 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 03:44:02 PM,400 Block of COLON AVE,SF,94127,B09,39,8523,3,E,3,false,Potentially Life-Threatening,1,CHIEF,4,9,7,West of Twin Peaks,"(37.7331175479308, -122.457641002996)",132920213-B09 +132830061,85,13096214,Medical Incident,10/10/2013,10/09/2013,10/10/2013 07:54:17 AM,10/10/2013 07:55:14 AM,10/10/2013 07:55:43 AM,10/10/2013 07:58:05 AM,10/10/2013 08:01:38 AM,10/10/2013 08:21:59 AM,10/10/2013 08:41:47 AM,Code 2 Transport,10/10/2013 09:20:54 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",132830061-85 +120630294,58,12020846,Medical Incident,03/03/2012,03/03/2012,03/03/2012 05:03:24 PM,03/03/2012 05:05:10 PM,03/03/2012 05:11:18 PM,03/03/2012 05:15:19 PM,03/03/2012 05:22:16 PM,03/03/2012 05:36:26 PM,03/03/2012 05:50:14 PM,Code 2 Transport,03/03/2012 06:15:28 PM,500 Block of CAYUGA AVE,SF,94112,B09,15,8264,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7289539219455, -122.435416030126)",120630294-58 +160440171,70,16017542,Medical Incident,02/13/2016,02/12/2016,02/13/2016 01:05:31 AM,02/13/2016 01:07:59 AM,02/13/2016 01:10:17 AM,02/13/2016 01:10:24 AM,02/13/2016 01:22:35 AM,02/13/2016 01:31:06 AM,02/13/2016 01:42:17 AM,Code 2 Transport,02/13/2016 02:11:32 AM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7111753869011, -122.41625926444)",160440171-70 +123590089,E13,12120102,Alarms,12/24/2012,12/24/2012,12/24/2012 08:48:06 AM,12/24/2012 08:49:29 AM,12/24/2012 08:49:35 AM,12/24/2012 08:50:46 AM,12/24/2012 08:51:02 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 08:55:38 AM,100 Block of SANSOME ST,SF,94104,B01,13,1165,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7916515232471, -122.400770219415)",123590089-E13 +112670170,E09,11088214,Vehicle Fire,09/24/2011,09/24/2011,09/24/2011 12:16:12 PM,09/24/2011 12:16:45 PM,09/24/2011 12:16:52 PM,09/24/2011 12:17:47 PM,09/24/2011 12:24:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 12:28:59 PM,100 Block of ALEMANY BLVD,SF,94110,B10,42,6361,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",112670170-E09 +160703599,58,16028026,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:53:43 PM,03/10/2016 09:55:19 PM,03/10/2016 09:55:29 PM,03/10/2016 09:56:20 PM,03/10/2016 10:01:55 PM,03/10/2016 10:23:22 PM,03/10/2016 10:46:30 PM,Code 2 Transport,03/10/2016 11:28:48 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160703599-58 +112930182,E01,11097201,Medical Incident,10/20/2011,10/20/2011,10/20/2011 01:25:04 PM,10/20/2011 01:25:04 PM,10/20/2011 01:25:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Fire,10/20/2011 01:46:02 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,2,2,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",112930182-E01 +110190360,T16,11006369,Structure Fire,01/19/2011,01/19/2011,01/19/2011 06:38:02 PM,01/19/2011 06:39:35 PM,01/19/2011 06:39:48 PM,01/19/2011 06:41:01 PM,01/19/2011 06:44:47 PM,04/25/2016 02:06:31 PM,04/25/2016 02:06:31 PM,Other,01/19/2011 06:50:00 PM,2100 Block of PACIFIC AVE,SF,94115,B04,38,3441,3,3,3,false,,1,TRUCK,6,4,2,Pacific Heights,"(37.79392640977, -122.430637263038)",110190360-T16 +130310332,E44,13010697,Medical Incident,01/31/2013,01/31/2013,01/31/2013 06:26:04 PM,01/31/2013 06:26:30 PM,01/31/2013 06:26:41 PM,01/31/2013 06:27:39 PM,01/31/2013 06:29:51 PM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,01/31/2013 06:38:32 PM,ARLETA AV/BAYSHORE BL,SF,94134,B10,44,6271,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",130310332-E44 +121350317,E17,12045007,Medical Incident,05/14/2012,05/14/2012,05/14/2012 07:57:56 PM,05/14/2012 07:59:08 PM,05/14/2012 07:59:20 PM,04/25/2016 01:58:41 PM,05/14/2012 08:07:21 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 08:15:42 PM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7290589753437, -122.385447178388)",121350317-E17 +131610227,E41,13054720,Medical Incident,06/10/2013,06/10/2013,06/10/2013 02:22:31 PM,06/10/2013 02:24:30 PM,06/10/2013 02:24:49 PM,06/10/2013 02:25:43 PM,06/10/2013 02:28:11 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,No Merit,06/10/2013 02:31:02 PM,2000 Block of POLK ST,SF,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",131610227-E41 +160182748,AM08,16007343,Medical Incident,01/18/2016,01/18/2016,01/18/2016 06:43:38 PM,01/18/2016 06:44:44 PM,01/18/2016 06:45:04 PM,01/18/2016 06:45:39 PM,01/18/2016 06:59:00 PM,01/18/2016 07:11:45 PM,01/18/2016 07:26:14 PM,Code 2 Transport,01/18/2016 08:08:29 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94116,B08,39,8624,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",160182748-AM08 +102600160,RC2,10082149,Medical Incident,09/17/2010,09/17/2010,09/17/2010 12:03:15 PM,09/17/2010 12:04:24 PM,09/17/2010 12:04:49 PM,04/25/2016 02:08:33 PM,09/17/2010 12:07:25 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 12:27:21 PM,500 Block of BALBOA ST,SF,94118,B07,31,7123,3,3,3,true,,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7772648752234, -122.464543600448)",102600160-RC2 +123100163,KM09,12103101,Medical Incident,11/05/2012,11/05/2012,11/05/2012 11:28:28 AM,11/05/2012 11:28:45 AM,11/05/2012 11:29:42 AM,11/05/2012 11:30:46 AM,11/05/2012 11:35:15 AM,11/05/2012 11:57:24 AM,11/05/2012 12:10:55 PM,Code 2 Transport,11/05/2012 12:55:02 PM,1800 Block of THE EMBARCADERO,SF,94133,B01,28,935,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8088354051007, -122.414108783784)",123100163-KM09 +113350157,KM10,11110878,Medical Incident,12/01/2011,12/01/2011,12/01/2011 11:40:15 AM,12/01/2011 11:42:35 AM,12/01/2011 11:43:15 AM,12/01/2011 11:43:59 AM,12/01/2011 11:46:52 AM,12/01/2011 12:07:06 PM,12/01/2011 12:14:14 PM,Code 2 Transport,12/01/2011 12:46:42 PM,1600 Block of 9TH AVE,SF,94122,B08,22,7335,3,3,3,false,,1,PRIVATE,1,8,7,Inner Sunset,"(37.7575163019787, -122.465785858602)",113350157-KM10 +112120154,79,11069931,Medical Incident,07/31/2011,07/31/2011,07/31/2011 11:54:57 AM,07/31/2011 11:57:35 AM,07/31/2011 11:57:52 AM,07/31/2011 11:58:15 AM,07/31/2011 12:10:15 PM,07/31/2011 12:18:57 PM,07/31/2011 12:31:25 PM,Code 2 Transport,07/31/2011 12:54:51 PM,2700 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,1,1,2,true,,1,MEDIC,1,10,9,Portola,"(37.7270507466082, -122.403281820851)",112120154-79 +120240096,88,12008038,Medical Incident,01/24/2012,01/24/2012,01/24/2012 10:01:18 AM,01/24/2012 10:03:04 AM,01/24/2012 10:03:47 AM,01/24/2012 10:06:14 AM,01/24/2012 10:09:49 AM,04/25/2016 02:00:28 PM,04/25/2016 02:00:28 PM,Patient Declined Transport,01/24/2012 10:39:48 AM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",120240096-88 +112220016,E26,11073197,Medical Incident,08/10/2011,08/09/2011,08/10/2011 12:55:58 AM,08/10/2011 12:57:42 AM,08/10/2011 12:57:54 AM,08/10/2011 12:59:54 AM,08/10/2011 01:02:42 AM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Unable to Locate,08/10/2011 01:07:41 AM,2300 Block of CASTRO ST,SF,94131,B06,26,5565,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.742895594432, -122.433422735149)",112220016-E26 +121080276,E36,12035835,Alarms,04/17/2012,04/17/2012,04/17/2012 05:54:06 PM,04/17/2012 05:55:17 PM,04/17/2012 05:55:27 PM,04/17/2012 05:56:52 PM,04/17/2012 05:58:37 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/17/2012 06:03:56 PM,100 Block of 9TH ST,SF,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",121080276-E36 +160041137,KM02,16001541,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:08:26 AM,01/04/2016 10:10:26 AM,01/04/2016 10:10:32 AM,01/04/2016 10:11:22 AM,01/04/2016 10:15:49 AM,01/04/2016 10:32:54 AM,01/04/2016 10:45:51 AM,Code 2 Transport,01/04/2016 11:29:47 AM,1700 Block of EDDY ST,San Francisco,94115,B05,5,4133,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7808513149724, -122.436427287945)",160041137-KM02 +110320175,E29,11010481,Medical Incident,02/01/2011,02/01/2011,02/01/2011 01:07:38 PM,02/01/2011 01:08:19 PM,02/01/2011 01:08:49 PM,02/01/2011 01:09:21 PM,02/01/2011 01:12:28 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,02/01/2011 01:18:19 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",110320175-E29 +160553129,AM08,16022105,Medical Incident,02/24/2016,02/24/2016,02/24/2016 06:02:44 PM,02/24/2016 06:03:25 PM,02/24/2016 06:03:45 PM,02/24/2016 06:05:00 PM,02/24/2016 06:26:00 PM,02/24/2016 06:26:01 PM,02/24/2016 06:46:50 PM,Code 2 Transport,02/24/2016 07:12:34 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160553129-AM08 +121910220,RC3,12063621,Traffic Collision,07/09/2012,07/09/2012,07/09/2012 02:50:26 PM,07/09/2012 02:50:26 PM,07/09/2012 02:50:38 PM,07/09/2012 02:52:06 PM,07/09/2012 02:53:52 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 03:13:30 PM,18TH ST/VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Mission,"(37.7617009099893, -122.421578400735)",121910220-RC3 +102480311,81,10078478,Medical Incident,09/05/2010,09/05/2010,09/05/2010 08:01:48 PM,09/05/2010 08:03:44 PM,09/05/2010 08:06:17 PM,09/05/2010 08:43:34 PM,09/05/2010 08:43:36 PM,09/05/2010 09:03:43 PM,09/05/2010 09:17:12 PM,Code 2 Transport,09/05/2010 09:31:23 PM,3000 Block of 16TH ST,SF,94103,B02,7,5236,2,2,2,true,,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",102480311-81 +122670081,E18,12088137,Traffic Collision,09/23/2012,09/22/2012,09/23/2012 07:43:40 AM,09/23/2012 07:43:40 AM,09/23/2012 07:43:53 AM,09/23/2012 07:44:28 AM,09/23/2012 07:48:39 AM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 08:05:43 AM,SUNSET BL/NORIEGA ST,SF,94122,B08,18,7573,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7534138174953, -122.495226538122)",122670081-E18 +160362534,67,16014318,Medical Incident,02/05/2016,02/05/2016,02/05/2016 03:23:34 PM,02/05/2016 03:24:02 PM,02/05/2016 03:24:56 PM,02/05/2016 03:25:02 PM,02/05/2016 03:29:25 PM,02/05/2016 03:54:55 PM,02/05/2016 04:29:13 PM,Code 2 Transport,02/05/2016 04:39:14 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",160362534-67 +160191941,61,16007654,Medical Incident,01/19/2016,01/19/2016,01/19/2016 01:49:13 PM,01/19/2016 01:49:13 PM,01/19/2016 01:51:07 PM,01/19/2016 01:51:21 PM,01/19/2016 02:01:13 PM,01/19/2016 02:16:44 PM,01/19/2016 02:28:48 PM,Code 2 Transport,01/19/2016 03:06:55 PM,JUDSON AV/GENNESSEE ST,San Francisco,94112,B09,15,8232,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.728357552492, -122.451112559186)",160191941-61 +110410248,95,11013622,Medical Incident,02/10/2011,02/10/2011,02/10/2011 03:01:27 PM,02/10/2011 03:02:05 PM,02/10/2011 03:02:54 PM,02/10/2011 03:03:24 PM,02/10/2011 03:05:10 PM,02/10/2011 03:31:01 PM,02/10/2011 03:50:17 PM,Code 2 Transport,02/10/2011 04:21:48 PM,0 Block of 28TH ST,SF,94110,B06,11,5577,3,3,3,true,,1,MEDIC,2,6,8,Noe Valley,"(37.7455620349301, -122.423383986336)",110410248-95 +160841961,63,16033390,Medical Incident,03/24/2016,03/24/2016,03/24/2016 01:03:13 PM,03/24/2016 01:05:02 PM,03/24/2016 01:07:25 PM,03/24/2016 01:07:41 PM,03/24/2016 01:14:43 PM,03/24/2016 01:34:07 PM,03/24/2016 01:59:00 PM,Code 2 Transport,03/24/2016 02:46:01 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160841961-63 +132250044,T10,13075839,Structure Fire,08/13/2013,08/12/2013,08/13/2013 03:40:23 AM,08/13/2013 03:40:24 AM,08/13/2013 03:40:55 AM,08/13/2013 03:43:09 AM,08/13/2013 03:45:15 AM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,Other,08/13/2013 03:45:25 AM,PIERCE ST/SACRAMENTO ST,SF,94115,B04,38,3652,3,3,3,false,Alarm,1,TRUCK,1,4,2,Pacific Heights,"(37.7894216306873, -122.437318569396)",132250044-T10 +132600311,E09,13088070,,09/17/2013,09/17/2013,09/17/2013 03:13:00 PM,09/17/2013 03:14:00 PM,09/17/2013 03:14:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,SFPD,09/17/2013 03:46:00 PM,2700 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,3,3,3,true,Alarm,1,ENGINE,2,10,9,Portola,"(37.7270168369018, -122.403413375689)",132600311-E09 +160392070,59,16015662,Medical Incident,02/08/2016,02/08/2016,02/08/2016 02:29:17 PM,02/08/2016 02:29:17 PM,02/08/2016 02:30:30 PM,02/08/2016 02:30:40 PM,02/08/2016 02:36:08 PM,02/08/2016 02:51:16 PM,02/08/2016 03:06:52 PM,Code 2 Transport,02/08/2016 03:58:21 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160392070-59 +112330331,E02,11077074,Structure Fire,08/21/2011,08/21/2011,08/21/2011 08:30:45 PM,08/21/2011 08:31:26 PM,08/21/2011 08:31:39 PM,08/21/2011 08:32:48 PM,08/21/2011 08:34:42 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/21/2011 08:47:33 PM,0 Block of KRAMER PL,SF,94133,B01,28,1335,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8020804245291, -122.408254700202)",112330331-E02 +160641696,57,16025503,Medical Incident,03/04/2016,03/04/2016,03/04/2016 12:12:39 PM,03/04/2016 12:15:06 PM,03/04/2016 12:15:58 PM,03/04/2016 12:16:46 PM,03/04/2016 12:22:56 PM,03/04/2016 12:33:57 PM,03/04/2016 12:52:17 PM,Code 2 Transport,03/04/2016 01:46:02 PM,KERN ST/DIAMOND ST,San Francisco,94131,B06,26,8146,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7338897472868, -122.434049927915)",160641696-57 +121100247,85,12036428,Medical Incident,04/19/2012,04/19/2012,04/19/2012 03:19:32 PM,04/19/2012 03:20:20 PM,04/19/2012 03:20:38 PM,04/19/2012 03:20:57 PM,04/19/2012 03:21:02 PM,04/19/2012 03:44:17 PM,04/19/2012 04:00:33 PM,Code 2 Transport,04/19/2012 04:21:24 PM,3000 Block of LARKIN ST,SF,94109,B01,28,1623,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8059751797269, -122.422033155092)",121100247-85 +140830054,54,14027889,Citizen Assist / Service Call,03/24/2014,03/23/2014,03/24/2014 07:34:54 AM,03/24/2014 07:35:53 AM,03/24/2014 07:45:28 AM,03/24/2014 07:45:54 AM,03/24/2014 07:54:31 AM,03/24/2014 08:17:20 AM,03/24/2014 08:44:14 AM,Code 2 Transport,03/24/2014 09:21:25 AM,2000 Block of 43RD AVE,SAN FRANCISCO,94116,B08,23,7645,3,3,3,true,Alarm,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7484404926143, -122.501933050867)",140830054-54 +140260111,E35,14008843,Alarms,01/26/2014,01/26/2014,01/26/2014 09:53:39 AM,01/26/2014 09:54:44 AM,01/26/2014 09:54:52 AM,01/26/2014 09:55:35 AM,01/26/2014 10:03:28 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 10:13:24 AM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",140260111-E35 +140180340,E37,14006311,Medical Incident,01/18/2014,01/18/2014,01/18/2014 07:39:57 PM,01/18/2014 07:40:38 PM,01/18/2014 07:43:11 PM,01/18/2014 07:44:10 PM,01/18/2014 07:45:28 PM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/18/2014 07:50:33 PM,WISCONSIN ST/CONNECTICUT ST,SF,94107,B10,37,2565,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536847460271, -122.398593151785)",140180340-E37 +122800255,E01,12092653,Medical Incident,10/06/2012,10/06/2012,10/06/2012 03:45:23 PM,10/06/2012 03:46:56 PM,10/06/2012 03:47:51 PM,10/06/2012 03:49:14 PM,10/06/2012 03:52:20 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,No Merit,10/06/2012 03:53:26 PM,100 Block of HARRIET ST,SF,94103,B03,1,2253,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7775807976906, -122.4052269245)",122800255-E01 +131890192,77,13064426,Medical Incident,07/08/2013,07/08/2013,07/08/2013 01:32:55 PM,07/08/2013 01:34:01 PM,07/08/2013 01:34:26 PM,07/08/2013 01:34:42 PM,07/08/2013 01:40:13 PM,07/08/2013 01:47:39 PM,07/08/2013 02:16:32 PM,Code 2 Transport,07/08/2013 02:45:30 PM,100 Block of HOWARD ST,SF,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7910007343294, -122.39301513185)",131890192-77 +112310309,AM04,11076389,Medical Incident,08/19/2011,08/19/2011,08/19/2011 08:05:47 PM,08/19/2011 08:07:21 PM,08/19/2011 08:08:25 PM,08/19/2011 08:09:24 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 08:15:46 PM,CAPP ST/20TH ST,SF,94110,B06,7,5433,2,2,2,false,,1,PRIVATE,2,6,9,Mission,"(37.7586982725851, -122.417964706277)",112310309-AM04 +120520255,E05,12017234,Medical Incident,02/21/2012,02/21/2012,02/21/2012 04:08:20 PM,02/21/2012 04:09:55 PM,02/21/2012 04:10:05 PM,02/21/2012 04:11:35 PM,02/21/2012 04:12:23 PM,04/25/2016 02:00:02 PM,04/25/2016 02:00:02 PM,Other,02/21/2012 04:24:09 PM,1000 Block of LAGUNA ST,SF,94115,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7806464131859, -122.427178095031)",120520255-E05 +122120377,D2,12070537,Structure Fire,07/30/2012,07/30/2012,07/30/2012 10:19:51 PM,07/30/2012 10:21:40 PM,07/30/2012 10:22:04 PM,07/30/2012 10:23:12 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 10:26:11 PM,1400 Block of MISSION ST,SF,94103,B02,36,2341,3,3,3,false,Fire,1,CHIEF,7,2,6,South of Market,"(37.7747597843525, -122.41645729662)",122120377-D2 +112820175,B06,11093324,Gas Leak (Natural and LP Gases),10/09/2011,10/09/2011,10/09/2011 12:37:45 PM,10/09/2011 12:39:42 PM,10/09/2011 12:41:13 PM,10/09/2011 12:42:23 PM,10/09/2011 12:47:04 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 12:56:58 PM,4300 Block of 25TH ST,SF,94114,B06,24,5542,3,3,3,false,,1,CHIEF,3,6,8,Noe Valley,"(37.7495508329815, -122.437234103436)",112820175-B06 +160160062,62,16006225,Medical Incident,01/16/2016,01/15/2016,01/16/2016 12:26:49 AM,01/16/2016 12:28:45 AM,01/16/2016 12:29:11 AM,01/16/2016 12:29:19 AM,01/16/2016 12:36:57 AM,01/16/2016 12:51:08 AM,01/16/2016 12:54:03 AM,Code 2 Transport,01/16/2016 01:09:03 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160160062-62 +160820378,70,16032456,Medical Incident,03/22/2016,03/21/2016,03/22/2016 05:34:53 AM,03/22/2016 05:34:53 AM,03/22/2016 05:37:45 AM,03/22/2016 05:37:55 AM,03/22/2016 05:40:33 AM,03/22/2016 05:49:56 AM,03/22/2016 06:02:09 AM,Code 2 Transport,03/22/2016 06:35:08 AM,SUTTER ST/LEAVENWORTH ST,San Francisco,94109,B01,3,1463,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7883879297961, -122.415185268348)",160820378-70 +140700138,E28,14023568,Medical Incident,03/11/2014,03/11/2014,03/11/2014 11:01:13 AM,03/11/2014 11:02:51 AM,03/11/2014 11:03:42 AM,03/11/2014 11:07:13 AM,03/11/2014 11:15:16 AM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Code 2 Transport,03/11/2014 11:20:27 AM,1000 Block of COLUMBUS AVE,SAN FRANCISCO,94133,B01,28,1434,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8041876050837, -122.415703120443)",140700138-E28 +111810129,E10,11059682,Medical Incident,06/30/2011,06/30/2011,06/30/2011 10:56:42 AM,06/30/2011 10:57:37 AM,06/30/2011 10:57:54 AM,06/30/2011 10:58:04 AM,06/30/2011 11:01:21 AM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 11:22:21 AM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,,1,ENGINE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",111810129-E10 +102600110,54,10082109,Medical Incident,09/17/2010,09/17/2010,09/17/2010 09:59:58 AM,09/17/2010 10:01:29 AM,09/17/2010 10:02:02 AM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 10:04:37 AM,"CALL BOX: DAVIS ST/JACKSON ST,SF",SF,94111,B01,13,1132,3,3,3,true,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7971265118993, -122.398275004328)",102600110-54 +113500114,RS1,11116057,Structure Fire,12/16/2011,12/16/2011,12/16/2011 10:13:29 AM,12/16/2011 10:16:33 AM,12/16/2011 10:16:51 AM,12/16/2011 10:17:59 AM,12/16/2011 10:23:03 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/16/2011 10:26:51 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,RESCUE SQUAD,8,4,5,Pacific Heights,"(37.7888365626691, -122.426230394716)",113500114-RS1 +120730259,B09,12024284,Traffic Collision,03/13/2012,03/13/2012,03/13/2012 04:06:15 PM,03/13/2012 04:07:53 PM,03/13/2012 04:08:12 PM,03/13/2012 04:08:58 PM,03/13/2012 04:09:32 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 04:30:38 PM,ATHENS ST/RUSSIA AV,SF,94112,B09,43,6156,3,3,3,false,Potentially Life-Threatening,1,CHIEF,1,9,11,Excelsior,"(37.7185302023032, -122.430778026674)",120730259-B09 +103080366,RC3,10098843,Medical Incident,11/04/2010,11/04/2010,11/04/2010 08:42:01 PM,11/04/2010 08:42:10 PM,11/04/2010 08:42:45 PM,11/04/2010 08:44:05 PM,11/04/2010 09:05:49 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 09:11:11 PM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,E,E,3,true,,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",103080366-RC3 +130680240,RS1,13022717,Structure Fire,03/09/2013,03/09/2013,03/09/2013 03:07:44 PM,03/09/2013 03:08:13 PM,03/09/2013 03:08:26 PM,03/09/2013 03:09:33 PM,03/09/2013 03:14:28 PM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,Other,03/09/2013 03:15:33 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Alarm,1,RESCUE SQUAD,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",130680240-RS1 +110290312,B09,11009657,Alarms,01/29/2011,01/29/2011,01/29/2011 08:21:33 PM,01/29/2011 08:23:14 PM,01/29/2011 08:23:37 PM,01/29/2011 08:24:42 PM,01/29/2011 08:27:14 PM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Other,01/29/2011 08:30:18 PM,600 Block of MONTEREY BLVD,SF,94127,B09,15,8235,3,3,3,false,,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7316357481737, -122.450007128241)",110290312-B09 +130930031,68,13031015,Medical Incident,04/03/2013,04/02/2013,04/03/2013 04:58:13 AM,04/03/2013 05:00:46 AM,04/03/2013 05:01:59 AM,04/03/2013 05:02:10 AM,04/03/2013 05:09:12 AM,04/03/2013 06:05:58 AM,04/03/2013 06:10:37 AM,Code 2 Transport,04/03/2013 07:28:33 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",130930031-68 +102460226,64,10077763,Medical Incident,09/03/2010,09/03/2010,09/03/2010 02:13:12 PM,09/03/2010 02:13:35 PM,09/03/2010 02:14:02 PM,09/03/2010 02:14:40 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Patient Declined Transport,09/03/2010 02:20:31 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",102460226-64 +103350294,D3,10107278,Structure Fire,12/01/2010,12/01/2010,12/01/2010 07:24:11 PM,12/01/2010 07:25:31 PM,12/01/2010 07:25:56 PM,12/01/2010 07:26:51 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/01/2010 07:32:59 PM,4200 Block of 22ND ST,SF,94114,B06,24,5463,3,3,3,false,,1,CHIEF,8,6,8,Noe Valley,"(37.7540784989199, -122.440387557495)",103350294-D3 +160283352,66,16011216,Medical Incident,01/28/2016,01/28/2016,01/28/2016 07:17:13 PM,01/28/2016 07:17:13 PM,01/28/2016 07:17:49 PM,01/28/2016 07:18:31 PM,01/28/2016 07:20:11 PM,01/28/2016 07:35:34 PM,01/28/2016 07:53:57 PM,Code 2 Transport,01/28/2016 09:46:42 PM,1800 Block of 47TH AV,San Francisco,94122,B08,23,7715,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7519873630417, -122.506342859028)",160283352-66 +122960225,KM11,12098183,Medical Incident,10/22/2012,10/22/2012,10/22/2012 02:48:02 PM,10/22/2012 02:48:51 PM,10/22/2012 02:49:14 PM,10/22/2012 02:49:56 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 02:54:20 PM,ELLIS ST/JONES ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",122960225-KM11 +160710441,62,16028090,Medical Incident,03/11/2016,03/10/2016,03/11/2016 05:08:50 AM,03/11/2016 05:08:50 AM,03/11/2016 05:10:08 AM,03/11/2016 05:10:20 AM,03/11/2016 05:20:31 AM,03/11/2016 05:36:40 AM,03/11/2016 05:48:26 AM,Code 2 Transport,03/11/2016 06:17:52 AM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7842224754433, -122.404037898963)",160710441-62 +132980122,T08,13101146,Structure Fire,10/25/2013,10/25/2013,10/25/2013 10:10:09 AM,10/25/2013 10:10:45 AM,10/25/2013 10:11:07 AM,10/25/2013 10:12:29 AM,10/25/2013 10:15:33 AM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 10:16:44 AM,1000 Block of MISSION ST,SF,94103,B02,1,2251,3,3,3,false,Alarm,1,TRUCK,5,3,6,South of Market,"(37.7800525030811, -122.40977382526)",132980122-T08 +160631691,60,16025066,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:43:39 PM,03/03/2016 12:44:54 PM,03/03/2016 12:45:18 PM,03/03/2016 12:45:29 PM,03/03/2016 01:02:15 PM,03/03/2016 01:13:14 PM,03/03/2016 01:19:58 PM,Code 2 Transport,03/03/2016 02:14:11 PM,2400 Block of VAN NESS AVE,San Francisco,94109,B04,41,3151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7981062556024, -122.423716686516)",160631691-60 +132420140,E01,13081590,Structure Fire,08/30/2013,08/30/2013,08/30/2013 10:05:26 AM,08/30/2013 10:05:26 AM,08/30/2013 10:06:04 AM,08/30/2013 10:06:19 AM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/30/2013 10:08:47 AM,MASON ST/ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",132420140-E01 +102690025,E29,10085177,Medical Incident,09/26/2010,09/25/2010,09/26/2010 01:03:30 AM,09/26/2010 01:04:08 AM,09/26/2010 01:04:31 AM,09/26/2010 01:05:13 AM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,09/26/2010 01:07:12 AM,3RD ST/20TH ST,SF,94107,B03,29,2466,3,2,2,true,,1,ENGINE,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",102690025-E29 +130040075,B09,13001269,Traffic Collision,01/04/2013,01/03/2013,01/04/2013 07:00:03 AM,01/04/2013 07:01:29 AM,01/04/2013 07:04:26 AM,04/25/2016 01:54:58 PM,01/04/2013 07:06:55 AM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 07:13:39 AM,200 Block of HEARST AVE,SF,94131,B09,15,8215,3,3,3,false,Potentially Life-Threatening,1,CHIEF,4,9,7,West of Twin Peaks,"(37.7306600755453, -122.443156519123)",130040075-B09 +121340056,81,12044495,Medical Incident,05/13/2012,05/12/2012,05/13/2012 04:32:11 AM,05/13/2012 04:33:28 AM,05/13/2012 04:33:58 AM,05/13/2012 04:34:35 AM,05/13/2012 04:37:43 AM,05/13/2012 04:41:48 AM,05/13/2012 04:45:16 AM,Code 2 Transport,05/13/2012 05:01:18 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",121340056-81 +160904131,85,16035909,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:26:16 PM,03/30/2016 11:26:16 PM,03/30/2016 11:26:25 PM,03/30/2016 11:26:35 PM,03/30/2016 11:31:56 PM,03/30/2016 11:49:42 PM,03/31/2016 12:05:23 AM,Code 2 Transport,03/31/2016 12:36:02 AM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160904131-85 +102240065,B02,10070465,Alarms,08/12/2010,08/11/2010,08/12/2010 07:51:33 AM,08/12/2010 07:53:06 AM,08/12/2010 07:53:21 AM,08/12/2010 07:55:55 AM,08/12/2010 07:57:54 AM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,Fire,08/12/2010 08:04:52 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,,1,CHIEF,2,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",102240065-B02 +130060037,E16,13001951,Structure Fire,01/06/2013,01/05/2013,01/06/2013 02:52:54 AM,01/06/2013 02:54:29 AM,01/06/2013 02:54:45 AM,01/06/2013 02:56:46 AM,01/06/2013 02:58:53 AM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/06/2013 03:06:59 AM,2800 Block of JACKSON ST,SF,94115,B04,10,4231,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7915786810021, -122.442001635191)",130060037-E16 +112290216,96,11075697,Traffic Collision,08/17/2011,08/17/2011,08/17/2011 03:15:20 PM,08/17/2011 03:15:20 PM,08/17/2011 03:15:34 PM,08/17/2011 03:16:04 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 03:20:57 PM,OCTAVIA ST/OAK ST,SF,94102,B02,36,3266,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7748247940204, -122.42413649936)",112290216-96 +160130335,KM07,16005043,Medical Incident,01/13/2016,01/12/2016,01/13/2016 04:08:40 AM,01/13/2016 04:08:40 AM,01/13/2016 04:09:40 AM,01/13/2016 04:10:41 AM,01/13/2016 04:12:25 AM,01/13/2016 04:31:05 AM,01/13/2016 04:37:35 AM,Code 2 Transport,01/13/2016 05:23:35 AM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",160130335-KM07 +160020690,85,16000643,Medical Incident,01/02/2016,01/01/2016,01/02/2016 07:55:37 AM,01/02/2016 07:57:52 AM,01/02/2016 07:58:06 AM,01/02/2016 07:58:19 AM,01/02/2016 08:12:20 AM,01/02/2016 08:32:43 AM,01/02/2016 08:45:23 AM,Code 2 Transport,01/02/2016 09:23:23 AM,2600 Block of 17TH AVE,San Francisco,94116,B08,40,7411,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.738481429132, -122.473295868437)",160020690-85 +102360313,71,10074420,Structure Fire,08/24/2010,08/24/2010,08/24/2010 04:21:17 PM,08/24/2010 04:22:14 PM,08/24/2010 04:22:54 PM,08/24/2010 04:24:07 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/24/2010 04:30:38 PM,3200 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,,1,MEDIC,10,6,9,Bernal Heights,"(37.7481086638549, -122.415383917829)",102360313-71 +160772855,52,16030698,Medical Incident,03/17/2016,03/17/2016,03/17/2016 04:38:52 PM,03/17/2016 04:39:58 PM,03/17/2016 04:40:26 PM,03/17/2016 04:40:46 PM,03/17/2016 04:45:49 PM,03/17/2016 05:43:12 PM,03/17/2016 05:46:09 PM,Code 2 Transport,03/17/2016 06:31:28 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160772855-52 +113010161,E06,11099820,Structure Fire,10/28/2011,10/28/2011,10/28/2011 11:27:33 AM,10/28/2011 11:30:15 AM,10/28/2011 11:30:39 AM,10/28/2011 11:32:17 AM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 11:34:50 AM,0 Block of WOODWARD ST,SF,94103,B02,36,5215,3,3,3,true,,1,ENGINE,7,2,9,Mission,"(37.7690757517644, -122.420788636046)",113010161-E06 +121110285,E12,12036797,Medical Incident,04/20/2012,04/20/2012,04/20/2012 04:01:07 PM,04/20/2012 04:01:53 PM,04/20/2012 04:02:45 PM,04/25/2016 01:59:05 PM,04/20/2012 04:11:13 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 04:27:07 PM,100 Block of JOHN F KENNEDY DR,SF,94122,B05,12,4554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Golden Gate Park,"(37.7711332354432, -122.457507583541)",121110285-E12 +160483635,85,16019509,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:30:15 PM,02/17/2016 08:30:52 PM,02/17/2016 08:31:19 PM,02/17/2016 08:31:28 PM,02/17/2016 08:35:32 PM,02/17/2016 08:59:01 PM,02/17/2016 09:16:08 PM,Code 2 Transport,02/17/2016 09:44:38 PM,800 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7589313181833, -122.421382559773)",160483635-85 +130260044,E07,13008868,Outside Fire,01/26/2013,01/25/2013,01/26/2013 02:38:04 AM,01/26/2013 02:39:21 AM,01/26/2013 02:41:07 AM,01/26/2013 02:42:26 AM,01/26/2013 02:44:31 AM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/26/2013 04:15:28 AM,100 Block of LINDA ST,SF,94110,B06,7,5434,3,3,3,true,Fire,1,ENGINE,1,6,8,Mission,"(37.7594094951426, -122.422887066133)",130260044-E07 +111560091,E06,11051507,Medical Incident,06/05/2011,06/04/2011,06/05/2011 05:33:10 AM,06/05/2011 05:35:10 AM,06/05/2011 05:36:05 AM,06/05/2011 05:37:56 AM,06/05/2011 05:40:02 AM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 05:45:42 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",111560091-E06 +131370294,81,13046363,Medical Incident,05/17/2013,05/17/2013,05/17/2013 05:54:35 PM,05/17/2013 05:54:59 PM,05/17/2013 05:55:07 PM,05/17/2013 05:55:15 PM,04/25/2016 01:52:45 PM,05/17/2013 06:15:47 PM,05/17/2013 06:58:33 PM,Code 2 Transport,05/17/2013 07:20:17 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",131370294-81 +122560011,T03,12084500,Structure Fire,09/12/2012,09/11/2012,09/12/2012 12:50:43 AM,09/12/2012 12:51:51 AM,09/12/2012 12:52:14 AM,04/25/2016 01:56:48 PM,09/12/2012 01:02:20 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 01:16:36 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Fire,1,TRUCK,4,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",122560011-T03 +160190051,83,16007440,Medical Incident,01/19/2016,01/18/2016,01/19/2016 12:22:25 AM,01/19/2016 12:24:31 AM,01/19/2016 12:24:40 AM,01/19/2016 12:24:59 AM,01/19/2016 12:33:24 AM,01/19/2016 12:59:14 AM,01/19/2016 01:10:37 AM,Code 2 Transport,01/19/2016 01:42:10 AM,300 Block of CRESCENT CT,San Francisco,94134,B10,44,6575,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7113376268931, -122.388702684874)",160190051-83 +120990198,E20,12032826,Medical Incident,04/08/2012,04/08/2012,04/08/2012 03:38:26 PM,04/08/2012 03:39:07 PM,04/08/2012 03:39:13 PM,04/08/2012 03:40:09 PM,04/08/2012 03:42:24 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 03:57:16 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",120990198-E20 +103570008,86,10114423,Medical Incident,12/23/2010,12/22/2010,12/23/2010 12:37:08 AM,12/23/2010 12:38:05 AM,12/23/2010 12:40:09 AM,12/23/2010 12:41:16 AM,12/23/2010 12:52:09 AM,12/23/2010 01:04:53 AM,12/23/2010 01:17:23 AM,Code 2 Transport,12/23/2010 01:50:22 AM,800 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",103570008-86 +111620348,84,11053641,Medical Incident,06/11/2011,06/11/2011,06/11/2011 09:55:28 PM,06/11/2011 09:58:03 PM,06/11/2011 09:59:51 PM,06/11/2011 10:01:53 PM,06/11/2011 10:03:35 PM,06/11/2011 10:19:57 PM,06/11/2011 10:30:38 PM,Code 2 Transport,06/11/2011 11:00:43 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",111620348-84 +160163371,79,16006584,Medical Incident,01/16/2016,01/16/2016,01/16/2016 08:47:07 PM,01/16/2016 08:47:26 PM,01/16/2016 08:47:52 PM,01/16/2016 08:48:02 PM,01/16/2016 08:53:38 PM,01/16/2016 09:18:21 PM,01/16/2016 09:27:47 PM,Code 2 Transport,01/16/2016 09:55:15 PM,EDDY ST/LARKIN ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",160163371-79 +133000294,E03,13102043,Medical Incident,10/27/2013,10/27/2013,10/27/2013 06:47:42 PM,10/27/2013 06:47:59 PM,10/27/2013 06:48:21 PM,10/27/2013 06:49:26 PM,10/27/2013 06:51:27 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 06:54:59 PM,TURK ST/JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",133000294-E03 +122840140,B04,12093917,Alarms,10/10/2012,10/10/2012,10/10/2012 12:02:20 PM,10/10/2012 12:04:00 PM,10/10/2012 12:04:06 PM,10/10/2012 12:06:25 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 12:09:23 PM,1300 Block of BUCHANAN ST,SF,94115,B02,5,3431,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7820811831699, -122.429017793799)",122840140-B04 +160482188,86,16019376,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 02:08:18 PM,02/17/2016 02:10:03 PM,02/17/2016 02:23:27 PM,02/17/2016 02:23:40 PM,02/17/2016 02:32:51 PM,02/17/2016 02:44:19 PM,02/17/2016 03:15:33 PM,Code 2 Transport,02/17/2016 03:56:25 PM,2ND ST/STEVENSON ST,San Francisco,94105,B03,1,2144,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7888154965828, -122.400812304237)",160482188-86 +160322758,AM18,16012685,Medical Incident,02/01/2016,02/01/2016,02/01/2016 05:35:05 PM,02/01/2016 05:36:54 PM,02/01/2016 05:38:28 PM,02/01/2016 05:39:02 PM,02/01/2016 05:42:50 PM,02/01/2016 06:00:59 PM,02/01/2016 06:30:19 PM,Code 2 Transport,02/01/2016 06:58:22 PM,CHANNEL ST/4TH ST,San Francisco,,B03,4,2226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,None,"(37.7750268633971, -122.392346204303)",160322758-AM18 +102450198,KM02,10077330,Medical Incident,09/02/2010,09/02/2010,09/02/2010 11:29:38 AM,09/02/2010 11:30:50 AM,09/02/2010 11:30:59 AM,09/02/2010 11:31:40 AM,09/02/2010 11:35:38 AM,09/02/2010 11:55:22 AM,09/02/2010 12:08:23 PM,Code 2 Transport,09/02/2010 12:37:40 PM,100 Block of 17TH AVE,SF,94118,B07,31,7162,3,3,3,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7852029440362, -122.476436885446)",102450198-KM02 +121280270,E08,12042660,Outside Fire,05/07/2012,05/07/2012,05/07/2012 03:32:01 PM,05/07/2012 03:32:01 PM,05/07/2012 03:32:16 PM,05/07/2012 03:33:35 PM,05/07/2012 03:37:02 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 03:39:34 PM,400 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,954,3,3,3,true,Alarm,1,ENGINE,2,3,6,Mission Bay,"(37.7717396202959, -122.386663865791)",121280270-E08 +133150374,55,13107240,Medical Incident,11/11/2013,11/11/2013,11/11/2013 08:13:04 PM,11/11/2013 08:14:53 PM,11/11/2013 08:15:21 PM,11/11/2013 08:15:55 PM,11/11/2013 08:21:54 PM,11/11/2013 08:31:39 PM,11/11/2013 08:51:00 PM,Code 2 Transport,11/11/2013 09:09:13 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",133150374-55 +132130203,E13,13071988,Medical Incident,08/01/2013,08/01/2013,08/01/2013 03:37:33 PM,08/01/2013 03:38:42 PM,08/01/2013 03:39:01 PM,08/01/2013 03:39:54 PM,08/01/2013 03:43:06 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 03:45:22 PM,0 Block of GRANT AVE,SF,94108,B01,1,1321,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",132130203-E13 +160050217,71,16001832,Medical Incident,01/05/2016,01/04/2016,01/05/2016 02:32:38 AM,01/05/2016 02:33:06 AM,01/05/2016 02:33:59 AM,01/05/2016 02:34:16 AM,01/05/2016 02:42:01 AM,01/05/2016 03:11:56 AM,01/05/2016 03:24:23 AM,Code 2 Transport,01/05/2016 04:08:30 AM,2800 Block of 35TH AVE,San Francisco,94116,B08,19,7552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.734761472672, -122.492241109749)",160050217-71 +131660063,T17,13056294,Citizen Assist / Service Call,06/15/2013,06/14/2013,06/15/2013 06:45:36 AM,06/15/2013 06:46:37 AM,06/15/2013 06:46:45 AM,06/15/2013 06:49:21 AM,06/15/2013 06:51:23 AM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Fire,06/15/2013 06:56:27 AM,1400 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7282421265503, -122.389005419337)",131660063-T17 +110510026,E03,11016752,Medical Incident,02/20/2011,02/19/2011,02/20/2011 01:24:37 AM,02/20/2011 01:25:50 AM,02/20/2011 01:27:42 AM,02/20/2011 01:29:17 AM,02/20/2011 01:31:10 AM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Fire,02/20/2011 01:38:37 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",110510026-E03 +160550953,AM02,16021933,Traffic Collision,02/24/2016,02/24/2016,02/24/2016 09:16:14 AM,02/24/2016 09:17:55 AM,02/24/2016 09:19:12 AM,02/24/2016 09:19:55 AM,02/24/2016 09:19:55 AM,02/24/2016 09:39:25 AM,02/24/2016 09:58:05 AM,Code 2 Transport,02/24/2016 10:09:54 AM,SCOTT ST/MARINA BL,San Francisco,94123,B04,16,4111,2,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.8057862730196, -122.442209784032)",160550953-AM02 +103040014,67,10096976,Medical Incident,10/31/2010,10/30/2010,10/31/2010 12:27:26 AM,10/31/2010 12:28:14 AM,10/31/2010 12:28:31 AM,10/31/2010 12:28:36 AM,10/31/2010 12:32:47 AM,10/31/2010 01:09:25 AM,10/31/2010 01:18:54 AM,Code 2 Transport,10/31/2010 01:48:28 AM,0 Block of LOYOLA TER,SF,94117,B05,21,4522,3,3,3,true,,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.775869026469, -122.448995273702)",103040014-67 +123440295,E03,12115089,Medical Incident,12/09/2012,12/09/2012,12/09/2012 06:04:42 PM,12/09/2012 06:06:33 PM,12/09/2012 06:08:22 PM,12/09/2012 06:09:41 PM,12/09/2012 06:15:41 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 06:20:53 PM,1000 Block of FRANKLIN ST,SF,94109,B02,3,3221,1,1,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",123440295-E03 +102350184,T01,10073947,Alarms,08/23/2010,08/23/2010,08/23/2010 01:02:28 PM,08/23/2010 01:03:27 PM,08/23/2010 01:03:39 PM,08/23/2010 01:05:01 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 01:21:37 PM,300 Block of POST ST,SF,94108,B01,1,1362,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7884505799048, -122.407597246833)",102350184-T01 +132830001,87,13096158,Medical Incident,10/10/2013,10/09/2013,10/10/2013 12:22:15 AM,10/10/2013 12:22:56 AM,10/10/2013 12:23:16 AM,10/10/2013 12:23:31 AM,10/10/2013 12:30:29 AM,10/10/2013 12:43:19 AM,10/10/2013 12:51:50 AM,Code 2 Transport,10/10/2013 01:31:44 AM,21ST AV/CALIFORNIA ST,SF,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7840766069521, -122.480725305349)",132830001-87 +120980095,AM06,12032425,Medical Incident,04/07/2012,04/07/2012,04/07/2012 09:45:33 AM,04/07/2012 09:47:54 AM,04/07/2012 09:48:16 AM,04/07/2012 09:49:17 AM,04/07/2012 09:53:05 AM,04/07/2012 10:15:17 AM,04/07/2012 10:29:10 AM,Code 2 Transport,04/07/2012 11:11:21 AM,100 Block of FOOTE AVE,SF,94112,B09,33,8345,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7137644374712, -122.446069543288)",120980095-AM06 +122370152,AM06,12078484,Traffic Collision,08/24/2012,08/24/2012,08/24/2012 12:51:08 PM,08/24/2012 12:52:29 PM,08/24/2012 12:54:15 PM,08/24/2012 12:55:34 PM,08/24/2012 01:02:45 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 01:07:22 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Marina,"(37.8058923703038, -122.431246520303)",122370152-AM06 +122160116,B01,12071621,Alarms,08/03/2012,08/03/2012,08/03/2012 09:29:56 AM,08/03/2012 09:30:55 AM,08/03/2012 09:31:01 AM,08/03/2012 09:31:12 AM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Other,08/03/2012 09:36:23 AM,400 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,3,3,false,Alarm,1,CHIEF,1,1,3,North Beach,"(37.8063948128853, -122.414598058157)",122160116-B01 +132800188,B08,13095288,Alarms,10/07/2013,10/07/2013,10/07/2013 12:36:19 PM,10/07/2013 12:37:25 PM,10/07/2013 12:37:57 PM,10/07/2013 12:38:39 PM,10/07/2013 12:48:33 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/07/2013 12:48:37 PM,1700 Block of BROOKS ST,PR,94129,B99,51,4617,3,3,3,false,Alarm,1,CHIEF,2,7,2,Presidio,"(37.7901140556843, -122.480911597904)",132800188-B08 +160084062,89,16003463,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:12:53 PM,01/08/2016 11:15:03 PM,01/08/2016 11:16:00 PM,01/08/2016 11:16:07 PM,01/08/2016 11:28:20 PM,01/09/2016 12:03:55 AM,01/09/2016 12:23:04 AM,Unable to Locate,01/09/2016 01:02:16 AM,400 Block of BEALE ST,San Francisco,94105,B03,35,2123,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",160084062-89 +122370202,89,12078529,Medical Incident,08/24/2012,08/24/2012,08/24/2012 03:10:24 PM,08/24/2012 03:10:53 PM,08/24/2012 03:11:10 PM,08/24/2012 03:11:20 PM,08/24/2012 03:14:25 PM,08/24/2012 03:24:03 PM,08/24/2012 03:34:53 PM,Code 2 Transport,08/24/2012 04:04:13 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",122370202-89 +111370014,E19,11045449,Medical Incident,05/17/2011,05/16/2011,05/17/2011 01:22:10 AM,05/17/2011 01:23:04 AM,05/17/2011 01:24:02 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 01:26:16 AM,OCEAN AV/JUNIPERO SERRA BL,SF,94127,B08,19,8452,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7312055048522, -122.472160323543)",111370014-E19 +160323204,AM18,16012731,Medical Incident,02/01/2016,02/01/2016,02/01/2016 07:46:57 PM,02/01/2016 07:47:25 PM,02/01/2016 07:48:01 PM,02/01/2016 07:48:32 PM,02/01/2016 07:55:05 PM,02/01/2016 08:16:19 PM,02/01/2016 08:49:30 PM,Code 2 Transport,02/01/2016 09:17:56 PM,1000 Block of CAPITOL AV,San Francisco,94112,B09,15,8464,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209306722386, -122.459270472812)",160323204-AM18 +160753132,50,16029837,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:17:45 PM,03/15/2016 06:18:32 PM,03/15/2016 06:18:55 PM,03/15/2016 06:19:20 PM,03/15/2016 06:24:57 PM,03/15/2016 06:44:01 PM,03/15/2016 06:48:37 PM,Code 2 Transport,03/15/2016 07:05:49 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160753132-50 +160330901,88,16012898,Medical Incident,02/02/2016,02/02/2016,02/02/2016 09:10:47 AM,02/02/2016 09:10:47 AM,02/02/2016 09:11:58 AM,02/02/2016 09:12:08 AM,02/02/2016 09:17:58 AM,02/02/2016 09:41:14 AM,02/02/2016 09:56:48 AM,Code 2 Transport,02/02/2016 10:34:48 AM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",160330901-88 +133640294,96,13123693,Medical Incident,12/30/2013,12/30/2013,12/30/2013 05:49:11 PM,12/30/2013 05:51:13 PM,12/30/2013 05:53:24 PM,12/30/2013 05:53:34 PM,12/30/2013 05:57:46 PM,12/30/2013 06:24:17 PM,12/30/2013 06:35:31 PM,Code 2 Transport,12/30/2013 07:02:27 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",133640294-96 +113540359,E32,11117690,Medical Incident,12/20/2011,12/20/2011,12/20/2011 09:02:11 PM,12/20/2011 09:04:53 PM,12/20/2011 09:05:00 PM,12/20/2011 09:06:03 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,Other,04/25/2016 02:01:03 PM,3900 Block of MISSION ST,SF,94112,B06,32,5633,3,2,2,true,,1,ENGINE,2,6,8,Outer Mission,"(37.7338663102805, -122.426333773164)",113540359-E32 +121930036,T15,12064137,Citizen Assist / Service Call,07/11/2012,07/10/2012,07/11/2012 03:41:52 AM,07/11/2012 03:43:55 AM,07/11/2012 03:44:10 AM,07/11/2012 03:46:02 AM,07/11/2012 03:49:55 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 04:21:26 AM,400 Block of MONTEREY BLVD,SF,94127,B09,15,8221,3,3,3,false,Alarm,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7316567201418, -122.445449494658)",121930036-T15 +133540108,88,13120203,Medical Incident,12/20/2013,12/20/2013,12/20/2013 09:22:10 AM,12/20/2013 09:24:02 AM,12/20/2013 09:24:41 AM,12/20/2013 09:26:11 AM,12/20/2013 09:34:34 AM,12/20/2013 10:00:00 AM,12/20/2013 10:20:57 AM,Other,12/20/2013 10:36:01 AM,300 Block of BUENAVISTAEAST AV,SF,94117,B05,21,5136,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7667916111324, -122.440720545257)",133540108-88 +131220010,E03,13040868,Structure Fire,05/02/2013,05/01/2013,05/02/2013 12:23:01 AM,05/02/2013 12:23:01 AM,05/02/2013 12:23:11 AM,04/25/2016 01:53:01 PM,05/02/2013 12:25:40 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Other,05/02/2013 12:40:28 AM,500 Block of LARKIN ST,SF,94102,B02,3,1643,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",131220010-E03 +121110356,E07,12036863,Medical Incident,04/20/2012,04/20/2012,04/20/2012 07:00:41 PM,04/20/2012 07:01:33 PM,04/20/2012 07:01:53 PM,04/20/2012 07:03:01 PM,04/20/2012 07:05:12 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 07:06:18 PM,500 Block of VALENCIA ST,SF,94103,B02,7,5247,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",121110356-E07 +112170314,88,11071818,Medical Incident,08/05/2011,08/05/2011,08/05/2011 07:13:59 PM,08/05/2011 07:14:32 PM,08/05/2011 07:15:07 PM,08/05/2011 07:16:58 PM,08/05/2011 07:23:23 PM,08/05/2011 07:50:32 PM,08/05/2011 08:14:33 PM,Code 2 Transport,08/05/2011 08:43:03 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",112170314-88 +130600276,B04,13020200,Alarms,03/01/2013,03/01/2013,03/01/2013 05:10:10 PM,03/01/2013 05:11:04 PM,03/01/2013 05:11:11 PM,03/01/2013 05:11:57 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 05:20:01 PM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",130600276-B04 +113570101,85,11118513,Medical Incident,12/23/2011,12/22/2011,12/23/2011 03:51:12 AM,12/23/2011 03:52:53 AM,12/23/2011 03:53:21 AM,12/23/2011 03:53:59 AM,12/23/2011 04:00:33 AM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Patient Declined Transport,12/23/2011 04:34:05 AM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,1,MEDIC,2,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",113570101-85 +121320194,93,12043920,Medical Incident,05/11/2012,05/11/2012,05/11/2012 12:58:50 PM,05/11/2012 12:59:32 PM,05/11/2012 01:01:52 PM,05/11/2012 01:03:17 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,04/25/2016 01:58:44 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121320194-93 +131450329,E01,13049334,Fuel Spill,05/25/2013,05/25/2013,05/25/2013 10:54:34 PM,05/25/2013 10:56:02 PM,05/25/2013 10:57:05 PM,05/25/2013 10:58:29 PM,05/25/2013 11:00:07 PM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,Fire,05/25/2013 11:10:20 PM,400 Block of TEHAMA ST,SF,94103,B03,1,2245,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.78023451932, -122.405564838884)",131450329-E01 +160830177,93,16032812,Medical Incident,03/23/2016,03/22/2016,03/23/2016 01:43:08 AM,03/23/2016 01:43:57 AM,03/23/2016 01:44:07 AM,03/23/2016 01:46:25 AM,03/23/2016 01:47:50 AM,03/23/2016 02:15:40 AM,03/23/2016 02:20:38 AM,Code 3 Transport,03/23/2016 02:55:07 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160830177-93 +122060115,B06,12068430,Structure Fire,07/24/2012,07/24/2012,07/24/2012 09:50:18 AM,07/24/2012 09:50:19 AM,07/24/2012 09:50:29 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 09:52:57 AM,600 Block of DOUGLASS ST,SF,94114,B06,24,551,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",122060115-B06 +131110196,AM06,13037406,Medical Incident,04/21/2013,04/21/2013,04/21/2013 02:53:03 PM,04/21/2013 02:53:38 PM,04/21/2013 02:55:44 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 02:56:23 PM,SUTTER ST/POWELL ST,SF,94108,B01,1,1362,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,5,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",131110196-AM06 +111450073,92,11048093,Medical Incident,05/25/2011,05/25/2011,05/25/2011 08:19:13 AM,05/25/2011 08:22:09 AM,05/25/2011 08:22:26 AM,05/25/2011 08:46:38 AM,05/25/2011 08:54:58 AM,05/25/2011 09:19:33 AM,05/25/2011 09:38:25 AM,Code 2 Transport,05/25/2011 10:04:44 AM,3800 Block of 18TH ST,SF,94114,B02,6,5421,3,1,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",111450073-92 +112710236,99,11089573,Medical Incident,09/28/2011,09/28/2011,09/28/2011 01:32:57 PM,09/28/2011 01:33:32 PM,09/28/2011 01:34:48 PM,09/28/2011 01:41:29 PM,09/28/2011 01:45:32 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 02:33:40 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,,1,MEDIC,3,1,3,Nob Hill,"(37.7912571694899, -122.414917737337)",112710236-99 +111400236,RC3,11046585,Medical Incident,05/20/2011,05/20/2011,05/20/2011 04:44:58 PM,05/20/2011 04:45:42 PM,05/20/2011 04:46:06 PM,05/20/2011 04:47:55 PM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,Other,05/20/2011 04:54:38 PM,400 Block of CAPITOL AVE,SF,94112,B09,33,8374,3,3,3,true,,1,RESCUE CAPTAIN,3,9,11,Oceanview/Merced/Ingleside,"(37.7144823746566, -122.458971619556)",111400236-RC3 +160633155,AM20,16025204,Medical Incident,03/03/2016,03/03/2016,03/03/2016 06:49:52 PM,03/03/2016 06:50:31 PM,03/03/2016 06:50:52 PM,03/03/2016 06:52:48 PM,03/03/2016 06:55:45 PM,03/03/2016 07:17:11 PM,03/03/2016 07:36:21 PM,Code 2 Transport,03/03/2016 08:18:25 PM,2300 Block of 16TH ST,San Francisco,94103,B08,29,5241,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160633155-AM20 +140770067,KM12,14025975,Medical Incident,03/18/2014,03/17/2014,03/18/2014 07:56:39 AM,03/18/2014 07:57:05 AM,03/18/2014 07:58:05 AM,03/18/2014 07:59:01 AM,03/18/2014 08:06:49 AM,03/18/2014 08:30:06 AM,03/18/2014 08:36:01 AM,Code 2 Transport,03/18/2014 09:01:29 AM,800 Block of BRYANT ST,SAN FRANCISCO,94103,B03,8,2255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",140770067-KM12 +122120126,KM10,12070321,Structure Fire,07/30/2012,07/30/2012,07/30/2012 10:26:02 AM,07/30/2012 10:26:59 AM,07/30/2012 10:27:10 AM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 10:31:01 AM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,false,Fire,1,PRIVATE,10,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",122120126-KM10 +121020094,81,12033748,Medical Incident,04/11/2012,04/11/2012,04/11/2012 08:58:27 AM,04/11/2012 08:58:49 AM,04/11/2012 09:00:26 AM,04/11/2012 09:00:41 AM,04/11/2012 09:09:31 AM,04/11/2012 09:21:27 AM,04/11/2012 09:26:55 AM,Code 2 Transport,04/11/2012 10:05:33 AM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",121020094-81 +131690212,E28,13057398,Structure Fire,06/18/2013,06/18/2013,06/18/2013 12:38:49 PM,06/18/2013 12:38:49 PM,06/18/2013 12:38:56 PM,06/18/2013 12:39:37 PM,06/18/2013 12:40:16 PM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,Other,06/18/2013 12:40:57 PM,COLUMBUS AV/UNION ST,SF,94133,B01,28,1334,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8003154984429, -122.410206543893)",131690212-E28 +122100066,E19,12069669,Medical Incident,07/28/2012,07/27/2012,07/28/2012 04:46:23 AM,07/28/2012 04:46:52 AM,07/28/2012 04:47:15 AM,07/28/2012 04:49:02 AM,07/28/2012 04:51:44 AM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 05:12:14 AM,3000 Block of 20TH AVE,SF,94132,B08,19,8732,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7318943515613, -122.476052301377)",122100066-E19 +102800173,92,10088995,Medical Incident,10/07/2010,10/07/2010,10/07/2010 01:21:57 PM,10/07/2010 01:23:52 PM,10/07/2010 01:24:38 PM,10/07/2010 01:24:49 PM,10/07/2010 01:27:56 PM,10/07/2010 01:35:07 PM,10/07/2010 01:54:16 PM,Code 2 Transport,10/07/2010 02:19:29 PM,CAPP ST/19TH ST,SF,94110,B06,7,5433,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7603010632565, -122.41811811905)",102800173-92 +160011109,63,16000202,Medical Incident,01/01/2016,12/31/2015,01/01/2016 05:32:32 AM,01/01/2016 05:34:33 AM,01/01/2016 05:35:32 AM,01/01/2016 05:36:02 AM,01/01/2016 05:42:24 AM,01/01/2016 05:56:37 AM,01/01/2016 06:16:43 AM,Code 2 Transport,01/01/2016 06:48:49 AM,17TH ST/MISSION ST,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7634292740134, -122.419512736792)",160011109-63 +160582978,AM16,16023238,Medical Incident,02/27/2016,02/27/2016,02/27/2016 06:31:23 PM,02/27/2016 06:32:58 PM,02/27/2016 06:39:34 PM,02/27/2016 06:39:34 PM,02/27/2016 06:42:25 PM,02/27/2016 06:52:06 PM,02/27/2016 07:17:23 PM,Code 2 Transport,02/27/2016 07:44:00 PM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160582978-AM16 +110850363,E11,11028188,Medical Incident,03/26/2011,03/26/2011,03/26/2011 10:04:44 PM,03/26/2011 10:05:31 PM,03/26/2011 10:05:58 PM,03/26/2011 10:07:05 PM,03/26/2011 10:08:35 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 10:18:19 PM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7497020110556, -122.420499334167)",110850363-E11 +121320322,66,12044038,Medical Incident,05/11/2012,05/11/2012,05/11/2012 07:29:54 PM,05/11/2012 07:30:41 PM,05/11/2012 07:31:06 PM,05/11/2012 07:31:42 PM,05/11/2012 07:36:02 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 07:47:22 PM,100 Block of BROAD ST,SF,94112,B09,33,8374,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Oceanview/Merced/Ingleside,"(37.7132377405252, -122.457539370508)",121320322-66 +160360025,68,16014056,Medical Incident,02/05/2016,02/04/2016,02/05/2016 12:06:56 AM,02/05/2016 12:07:53 AM,02/05/2016 12:09:10 AM,02/05/2016 12:09:34 AM,02/05/2016 12:11:29 AM,02/05/2016 12:26:49 AM,02/05/2016 12:34:02 AM,Code 2 Transport,02/05/2016 12:56:34 AM,400 Block of MASON ST,San Francisco,94102,B01,3,1411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7877640990096, -122.409925328419)",160360025-68 +160640812,KM09,16025405,Medical Incident,03/04/2016,03/04/2016,03/04/2016 08:15:56 AM,03/04/2016 08:15:56 AM,03/04/2016 08:16:44 AM,03/04/2016 08:17:05 AM,03/04/2016 08:26:50 AM,03/04/2016 08:40:57 AM,03/04/2016 08:59:09 AM,Code 2 Transport,03/04/2016 09:32:35 AM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160640812-KM09 +122880307,96,12095391,Structure Fire,10/14/2012,10/14/2012,10/14/2012 07:03:58 PM,10/14/2012 07:05:15 PM,10/14/2012 07:05:30 PM,10/14/2012 07:05:52 PM,10/14/2012 07:10:20 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 07:34:04 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,Alarm,1,MEDIC,6,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",122880307-96 +160122217,AM02,16004814,Medical Incident,01/12/2016,01/12/2016,01/12/2016 03:05:24 PM,01/12/2016 03:06:00 PM,01/12/2016 03:06:20 PM,01/12/2016 03:06:57 PM,01/12/2016 03:08:28 PM,01/12/2016 03:29:46 PM,01/12/2016 04:00:25 PM,Code 2 Transport,01/12/2016 04:27:32 PM,700 Block of LAGUNA ST,San Francisco,94102,B02,5,3412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7776166559432, -122.426568297585)",160122217-AM02 +120950342,55,12031617,Medical Incident,04/04/2012,04/04/2012,04/04/2012 10:51:52 PM,04/04/2012 10:52:48 PM,04/04/2012 10:53:24 PM,04/04/2012 10:55:56 PM,04/04/2012 10:57:36 PM,04/04/2012 11:19:02 PM,04/04/2012 11:22:59 PM,Code 2 Transport,04/04/2012 11:43:41 PM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",120950342-55 +110890158,T03,11029369,Alarms,03/30/2011,03/30/2011,03/30/2011 11:58:45 AM,03/30/2011 11:59:47 AM,03/30/2011 12:00:10 PM,04/25/2016 02:05:22 PM,03/30/2011 12:03:52 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 12:12:16 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7852173616307, -122.417069611395)",110890158-T03 +140180075,B09,14006089,Gas Leak (Natural and LP Gases),01/18/2014,01/17/2014,01/18/2014 04:17:23 AM,01/18/2014 04:18:29 AM,01/18/2014 04:18:53 AM,01/18/2014 04:21:31 AM,01/18/2014 04:27:39 AM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/18/2014 04:33:37 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,3,3,false,Alarm,1,CHIEF,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",140180075-B09 +132640207,82,13089522,Medical Incident,09/21/2013,09/21/2013,09/21/2013 12:16:34 PM,09/21/2013 12:18:05 PM,09/21/2013 12:18:22 PM,09/21/2013 12:18:35 PM,09/21/2013 12:23:07 PM,09/21/2013 12:27:05 PM,09/21/2013 12:41:50 PM,Code 2 Transport,09/21/2013 01:11:16 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132640207-82 +122280137,85,12075514,Medical Incident,08/15/2012,08/15/2012,08/15/2012 10:56:58 AM,08/15/2012 10:57:16 AM,08/15/2012 10:57:32 AM,08/15/2012 10:58:06 AM,08/15/2012 11:09:02 AM,08/15/2012 11:32:47 AM,08/15/2012 11:42:03 AM,Code 2 Transport,08/15/2012 12:11:58 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",122280137-85 +160823351,KM11,16032710,Medical Incident,03/22/2016,03/22/2016,03/22/2016 07:09:50 PM,03/22/2016 07:12:20 PM,03/22/2016 07:12:55 PM,03/22/2016 07:13:31 PM,03/22/2016 07:20:21 PM,03/22/2016 07:41:57 PM,03/22/2016 07:45:59 PM,Code 2 Transport,03/22/2016 08:32:30 PM,PARKER AV/TURK BL,San Francisco,94118,B07,21,4557,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7778268618081, -122.453384994886)",160823351-KM11 +120830024,E07,12027435,Medical Incident,03/23/2012,03/22/2012,03/23/2012 02:38:23 AM,03/23/2012 02:41:01 AM,03/23/2012 02:41:28 AM,03/23/2012 02:43:29 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 02:44:25 AM,500 Block of VALENCIA ST,SF,94103,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7641127383912, -122.421739995141)",120830024-E07 +160810407,71,16032055,Medical Incident,03/21/2016,03/20/2016,03/21/2016 05:33:15 AM,03/21/2016 05:35:05 AM,03/21/2016 05:39:43 AM,03/21/2016 05:39:52 AM,03/21/2016 05:47:24 AM,03/21/2016 05:59:17 AM,03/21/2016 06:04:33 AM,Code 2 Transport,03/21/2016 06:34:50 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160810407-71 +160820167,58,16032430,Medical Incident,03/22/2016,03/21/2016,03/22/2016 01:39:44 AM,03/22/2016 01:39:44 AM,03/22/2016 01:40:40 AM,03/22/2016 01:40:54 AM,03/22/2016 01:58:23 AM,03/22/2016 01:58:32 AM,03/22/2016 02:06:58 AM,Code 2 Transport,03/22/2016 02:24:53 AM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",160820167-58 +132180024,E03,13073489,Medical Incident,08/06/2013,08/05/2013,08/06/2013 01:59:19 AM,08/06/2013 02:01:30 AM,08/06/2013 02:01:42 AM,08/06/2013 02:03:19 AM,08/06/2013 02:07:01 AM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/06/2013 02:11:24 AM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",132180024-E03 +113100105,E03,11102973,Medical Incident,11/06/2011,11/06/2011,11/06/2011 08:52:07 AM,11/06/2011 08:53:34 AM,11/06/2011 08:53:51 AM,11/06/2011 08:54:36 AM,11/06/2011 08:55:39 AM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,Other,11/06/2011 09:01:56 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",113100105-E03 +121990270,AM12,12066200,Medical Incident,07/17/2012,07/17/2012,07/17/2012 05:04:55 PM,07/17/2012 05:06:42 PM,07/17/2012 05:07:02 PM,07/17/2012 05:08:32 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 05:11:54 PM,POWELL ST/COLUMBUS AV,SF,94133,B01,28,1351,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8008329807078, -122.410953739812)",121990270-AM12 +122850270,B07,12094339,Structure Fire,10/11/2012,10/11/2012,10/11/2012 04:51:27 PM,10/11/2012 04:52:58 PM,10/11/2012 04:53:25 PM,10/11/2012 04:54:46 PM,10/11/2012 04:58:57 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 05:11:20 PM,2200 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,false,Alarm,1,CHIEF,5,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",122850270-B07 +110330261,75,11010882,Medical Incident,02/02/2011,02/02/2011,02/02/2011 03:48:07 PM,02/02/2011 03:49:57 PM,02/02/2011 03:54:02 PM,02/02/2011 03:54:17 PM,02/02/2011 04:17:19 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 05:10:46 PM,1400 Block of 3RD ST,SF,94158,B03,8,2231,1,1,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.770198458048, -122.389578265491)",110330261-75 +112220322,E28,11073444,Structure Fire,08/10/2011,08/10/2011,08/10/2011 07:52:47 PM,08/10/2011 07:55:37 PM,08/10/2011 07:55:53 PM,08/10/2011 07:59:46 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 08:07:23 PM,1200 Block of UNION ST,SF,94109,B01,41,1611,3,3,3,false,,1,ENGINE,6,1,2,Russian Hill,"(37.7991072019926, -122.420226685602)",112220322-E28 +160580113,57,16022950,Medical Incident,02/27/2016,02/26/2016,02/27/2016 12:49:02 AM,02/27/2016 12:49:55 AM,02/27/2016 12:50:19 AM,02/27/2016 12:50:27 AM,02/27/2016 12:53:43 AM,02/27/2016 01:15:47 AM,02/27/2016 01:20:33 AM,Code 2 Transport,02/27/2016 01:58:38 AM,500 Block of TAYLOR ST,San Francisco,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.787384716292, -122.41167556628)",160580113-57 +110840086,E20,11027587,Medical Incident,03/25/2011,03/24/2011,03/25/2011 06:38:09 AM,03/25/2011 06:40:21 AM,03/25/2011 06:41:14 AM,03/25/2011 06:43:52 AM,03/25/2011 06:47:28 AM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 07:16:12 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110840086-E20 +113040306,65,11101017,Medical Incident,10/31/2011,10/31/2011,10/31/2011 05:48:52 PM,10/31/2011 05:49:27 PM,10/31/2011 05:49:48 PM,10/31/2011 05:52:05 PM,10/31/2011 06:08:38 PM,10/31/2011 06:09:00 PM,10/31/2011 06:26:19 PM,Code 2 Transport,10/31/2011 06:48:07 PM,300 Block of DELLBROOK AVE,SF,94131,B08,20,5351,3,3,3,true,,1,MEDIC,2,8,7,Twin Peaks,"(37.7520890487805, -122.452418943057)",113040306-65 +160013006,76,16000444,Medical Incident,01/01/2016,01/01/2016,01/01/2016 06:07:26 PM,01/01/2016 06:09:23 PM,01/01/2016 06:10:04 PM,01/01/2016 06:10:14 PM,01/01/2016 06:13:41 PM,01/01/2016 06:39:03 PM,01/01/2016 06:45:23 PM,Code 2 Transport,01/01/2016 06:57:54 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160013006-76 +103080115,E43,10098634,Medical Incident,11/04/2010,11/04/2010,11/04/2010 09:36:58 AM,11/04/2010 09:37:20 AM,11/04/2010 09:38:12 AM,11/04/2010 09:38:46 AM,11/04/2010 09:41:12 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 09:47:50 AM,4500 Block of MISSION ST,SF,94112,B09,43,6116,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7249007364814, -122.43455277287)",103080115-E43 +160492844,62,16019817,Traffic Collision,02/18/2016,02/18/2016,02/18/2016 05:22:52 PM,02/18/2016 05:26:08 PM,02/18/2016 05:27:42 PM,02/18/2016 05:27:56 PM,02/18/2016 05:40:58 PM,02/18/2016 05:58:40 PM,02/18/2016 06:26:37 PM,Code 2 Transport,02/18/2016 06:52:22 PM,SAN BRUNO AV/SILLIMAN ST,San Francisco,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7312369255307, -122.405085875862)",160492844-62 +132590397,94,13087794,Medical Incident,09/16/2013,09/16/2013,09/16/2013 11:12:45 PM,09/16/2013 11:12:45 PM,09/16/2013 11:14:14 PM,09/16/2013 11:14:25 PM,09/16/2013 11:24:56 PM,09/16/2013 11:41:42 PM,09/16/2013 11:47:14 PM,Code 2 Transport,09/17/2013 12:27:26 AM,100 Block of TRUMBULL ST,SF,94112,B09,32,5635,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7307911496885, -122.427261743133)",132590397-94 +110540357,89,11017965,Medical Incident,02/23/2011,02/23/2011,02/23/2011 10:53:10 PM,02/23/2011 10:54:14 PM,02/23/2011 10:54:30 PM,02/23/2011 10:54:44 PM,02/23/2011 11:01:59 PM,02/23/2011 11:16:47 PM,02/23/2011 11:20:32 PM,Code 2 Transport,02/23/2011 11:43:13 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,2,2,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",110540357-89 +110490063,D3,11016093,Structure Fire,02/18/2011,02/17/2011,02/18/2011 06:16:40 AM,02/18/2011 06:17:35 AM,02/18/2011 06:18:06 AM,02/18/2011 06:19:06 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/18/2011 06:24:57 AM,1300 Block of UNDERWOOD AVE,SF,94124,B10,17,6653,3,3,3,false,,1,CHIEF,8,10,10,Bayview Hunters Point,"(37.7270915966656, -122.387216118798)",110490063-D3 +111160375,E17,11038435,Medical Incident,04/26/2011,04/26/2011,04/26/2011 09:00:35 PM,04/26/2011 09:01:42 PM,04/26/2011 09:01:54 PM,04/26/2011 09:02:40 PM,04/26/2011 09:04:35 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 09:14:49 PM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7298790936901, -122.382178424141)",111160375-E17 +121880124,AM20,12062587,Medical Incident,07/06/2012,07/06/2012,07/06/2012 10:21:42 AM,07/06/2012 10:22:49 AM,07/06/2012 10:23:10 AM,07/06/2012 10:23:50 AM,07/06/2012 10:26:49 AM,07/06/2012 10:46:16 AM,07/06/2012 11:01:49 AM,Code 2 Transport,07/06/2012 11:57:07 AM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7828124037537, -122.432679112133)",121880124-AM20 +131800129,KM14,13061157,Medical Incident,06/29/2013,06/29/2013,06/29/2013 10:27:57 AM,06/29/2013 10:28:25 AM,06/29/2013 10:28:56 AM,06/29/2013 10:29:58 AM,06/29/2013 10:34:05 AM,06/29/2013 10:51:19 AM,06/29/2013 11:15:00 AM,Code 2 Transport,06/29/2013 11:34:23 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",131800129-KM14 +132610147,E39,13088337,Medical Incident,09/18/2013,09/18/2013,09/18/2013 10:19:55 AM,09/18/2013 10:21:15 AM,09/18/2013 10:21:40 AM,09/18/2013 10:22:50 AM,09/18/2013 10:26:04 AM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 10:35:56 AM,0 Block of EL SERENO CT,SF,94127,B09,39,8654,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7387400303477, -122.444823965999)",132610147-E39 +160261950,KM04,16010312,Medical Incident,01/26/2016,01/26/2016,01/26/2016 01:26:33 PM,01/26/2016 01:27:36 PM,01/26/2016 01:28:13 PM,01/26/2016 01:31:33 PM,01/26/2016 01:33:08 PM,01/26/2016 01:48:45 PM,01/26/2016 02:11:10 PM,Code 2 Transport,01/26/2016 02:44:35 PM,HARRISON ST/9TH ST,San Francisco,94103,B03,29,2333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7725264425971, -122.410076850083)",160261950-KM04 +160101498,KM04,16004033,Medical Incident,01/10/2016,01/10/2016,01/10/2016 12:31:13 PM,01/10/2016 12:33:46 PM,01/10/2016 12:47:33 PM,01/10/2016 12:48:11 PM,01/10/2016 12:55:34 PM,01/10/2016 01:14:35 PM,01/10/2016 01:24:18 PM,Code 2 Transport,01/10/2016 01:44:47 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",160101498-KM04 +111230269,54,11040693,Medical Incident,05/03/2011,05/03/2011,05/03/2011 04:29:47 PM,05/03/2011 04:29:49 PM,05/03/2011 04:31:43 PM,05/03/2011 04:32:24 PM,05/03/2011 04:44:20 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Patient Declined Transport,05/03/2011 05:24:40 PM,5600 Block of MISSION ST,SF,94112,B09,33,6211,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7111379399076, -122.447066438218)",111230269-54 +160751179,62,16029659,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:27:12 AM,03/15/2016 10:29:11 AM,03/15/2016 10:29:37 AM,03/15/2016 10:29:45 AM,03/15/2016 10:34:32 AM,03/15/2016 10:51:06 AM,03/15/2016 10:58:39 AM,Code 2 Transport,03/15/2016 11:25:23 AM,HANCOCK ST/CHURCH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7604910079286, -122.428278232265)",160751179-62 +111670143,AM08,11055097,Medical Incident,06/16/2011,06/16/2011,06/16/2011 01:23:08 PM,06/16/2011 01:25:00 PM,06/16/2011 01:25:57 PM,06/16/2011 01:26:32 PM,06/16/2011 01:44:58 PM,06/16/2011 01:54:49 PM,06/16/2011 02:04:19 PM,Code 2 Transport,06/16/2011 02:52:29 PM,100 Block of MASON ST,SF,94102,B03,1,1366,2,2,2,false,,1,PRIVATE,1,3,3,Tenderloin,"(37.7848247766053, -122.409335015482)",111670143-AM08 +160791686,KM05,16031402,Medical Incident,03/19/2016,03/19/2016,03/19/2016 12:26:46 PM,03/19/2016 12:27:02 PM,03/19/2016 12:28:27 PM,03/19/2016 12:29:38 PM,03/19/2016 12:33:19 PM,03/19/2016 12:54:05 PM,03/19/2016 01:17:59 PM,Code 2 Transport,03/19/2016 01:51:48 PM,3000 Block of 20TH ST,San Francisco,94110,B06,7,5451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7590542429617, -122.411163913692)",160791686-KM05 +160161243,88,16006378,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:49:44 AM,01/16/2016 10:49:44 AM,01/16/2016 10:50:42 AM,01/16/2016 10:51:08 AM,01/16/2016 10:56:10 AM,01/16/2016 11:14:45 AM,01/16/2016 11:30:27 AM,Code 2 Transport,01/16/2016 12:05:05 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160161243-88 +131190309,AM18,13040147,Medical Incident,04/29/2013,04/29/2013,04/29/2013 05:46:12 PM,04/29/2013 05:47:15 PM,04/29/2013 05:48:27 PM,04/29/2013 05:49:14 PM,04/25/2016 01:53:03 PM,04/29/2013 06:13:21 PM,04/29/2013 06:28:50 PM,Code 2 Transport,04/29/2013 07:01:27 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7824182864419, -122.403869611535)",131190309-AM18 +160341821,54,16013399,Medical Incident,02/03/2016,02/03/2016,02/03/2016 01:30:47 PM,02/03/2016 01:31:11 PM,02/03/2016 01:32:29 PM,02/03/2016 01:32:44 PM,02/03/2016 01:39:02 PM,02/03/2016 02:04:22 PM,02/03/2016 02:27:47 PM,Code 2 Transport,02/03/2016 03:06:06 PM,100 Block of REY ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7116474138214, -122.411861229575)",160341821-54 +160201551,85,16007984,Medical Incident,01/20/2016,01/20/2016,01/20/2016 11:40:59 AM,01/20/2016 11:42:56 AM,01/20/2016 11:44:14 AM,01/20/2016 11:44:25 AM,01/20/2016 11:54:11 AM,01/20/2016 12:17:26 PM,01/20/2016 12:39:17 PM,Code 2 Transport,01/20/2016 01:24:12 PM,1000 Block of INGERSON AV,San Francisco,94124,B10,17,6612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7196891287467, -122.393876589377)",160201551-85 +160163528,72,16006599,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:43:09 PM,01/16/2016 09:43:45 PM,01/16/2016 09:44:05 PM,01/16/2016 09:44:20 PM,01/16/2016 09:50:47 PM,01/16/2016 10:09:51 PM,01/16/2016 10:39:28 PM,Code 2 Transport,01/16/2016 11:37:31 PM,900 Block of HARRISON ST,San Francisco,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7783376980367, -122.402624174737)",160163528-72 +121330140,KM02,12044230,Medical Incident,05/12/2012,05/12/2012,05/12/2012 11:05:54 AM,05/12/2012 11:07:51 AM,05/12/2012 11:14:20 AM,05/12/2012 11:14:57 AM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 11:21:12 AM,1100 Block of MASON CT,TI,94130,B03,48,2931,1,1,2,false,Non Life-threatening,1,PRIVATE,4,None,6,Treasure Island,"(37.8284029538431, -122.377606374892)",121330140-KM02 +122380294,AM18,12078939,Medical Incident,08/25/2012,08/25/2012,08/25/2012 09:22:22 PM,08/25/2012 09:23:14 PM,08/25/2012 09:24:09 PM,08/25/2012 09:24:40 PM,08/25/2012 09:29:03 PM,08/25/2012 09:36:18 PM,08/25/2012 09:46:15 PM,Code 2 Transport,08/25/2012 10:15:27 PM,200 Block of BALBOA ST,SF,94118,B07,31,7123,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7774109002765, -122.461336229441)",122380294-AM18 +123150243,E08,12104882,Traffic Collision,11/10/2012,11/10/2012,11/10/2012 03:31:01 PM,11/10/2012 03:31:36 PM,11/10/2012 03:32:32 PM,11/10/2012 03:33:51 PM,11/10/2012 03:36:49 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 04:06:14 PM,HOWARD ST/5TH ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",123150243-E08 +160830353,70,16032834,Medical Incident,03/23/2016,03/22/2016,03/23/2016 04:21:53 AM,03/23/2016 04:23:03 AM,03/23/2016 04:23:36 AM,03/23/2016 04:23:42 AM,03/23/2016 04:27:04 AM,03/23/2016 04:41:43 AM,03/23/2016 04:48:18 AM,Code 2 Transport,03/23/2016 05:31:18 AM,1200 Block of MASON ST,San Francisco,94108,B01,2,1415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7949762517322, -122.411384437499)",160830353-70 +160420249,52,16016719,Medical Incident,02/11/2016,02/10/2016,02/11/2016 03:06:04 AM,02/11/2016 03:06:39 AM,02/11/2016 03:06:53 AM,02/11/2016 03:07:02 AM,02/11/2016 03:09:57 AM,02/11/2016 03:25:18 AM,02/11/2016 03:40:33 AM,Code 3 Transport,02/11/2016 03:51:51 AM,2100 Block of 28TH AVE,San Francisco,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7472839020213, -122.485731349104)",160420249-52 +120400028,T19,12013208,Alarms,02/09/2012,02/08/2012,02/09/2012 02:23:10 AM,02/09/2012 02:24:38 AM,02/09/2012 02:25:13 AM,02/09/2012 02:27:25 AM,02/09/2012 02:30:07 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 02:35:48 AM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",120400028-T19 +140940137,KM01,14031555,Medical Incident,04/04/2014,04/04/2014,04/04/2014 11:01:36 AM,04/04/2014 11:03:38 AM,04/04/2014 11:03:58 AM,04/04/2014 11:04:57 AM,04/04/2014 11:14:09 AM,04/04/2014 11:28:57 AM,04/04/2014 11:39:59 AM,Code 2 Transport,04/04/2014 12:33:31 PM,2100 Block of FULTON ST,SAN FRANCISCO,94117,B07,21,4542,,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,1,Lone Mountain/USF,"(37.7753367356743, -122.450543942752)",140940137-KM01 +121840319,79,12061410,Medical Incident,07/02/2012,07/02/2012,07/02/2012 08:15:29 PM,07/02/2012 08:17:34 PM,07/02/2012 08:18:54 PM,07/02/2012 08:19:06 PM,07/02/2012 08:24:12 PM,07/02/2012 08:44:15 PM,07/02/2012 08:49:13 PM,Code 2 Transport,07/02/2012 09:10:24 PM,600 Block of CLAYTON ST,SF,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7693399647388, -122.448415933543)",121840319-79 +102450274,E32,10077388,Medical Incident,09/02/2010,09/02/2010,09/02/2010 01:54:23 PM,09/02/2010 01:55:07 PM,09/02/2010 01:55:33 PM,09/02/2010 01:56:59 PM,09/02/2010 01:59:41 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Patient Declined Transport,09/02/2010 02:15:26 PM,0 Block of ROTTECK ST,SF,94112,B09,32,8137,3,2,2,true,,1,ENGINE,1,9,8,Outer Mission,"(37.7329432860793, -122.431018033492)",102450274-E32 +133520044,E03,13119455,Medical Incident,12/18/2013,12/17/2013,12/18/2013 04:24:52 AM,12/18/2013 04:25:35 AM,12/18/2013 04:25:58 AM,12/18/2013 04:27:34 AM,12/18/2013 04:30:57 AM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/18/2013 04:35:07 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",133520044-E03 +133030324,E13,13103042,Outside Fire,10/30/2013,10/30/2013,10/30/2013 07:00:21 PM,10/30/2013 07:00:21 PM,10/30/2013 07:01:08 PM,10/30/2013 07:02:19 PM,10/30/2013 07:07:40 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 07:09:17 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",133030324-E13 +132240260,AM04,13075690,Medical Incident,08/12/2013,08/12/2013,08/12/2013 04:33:19 PM,08/12/2013 04:34:36 PM,08/12/2013 04:35:47 PM,08/12/2013 04:35:52 PM,08/12/2013 04:41:57 PM,08/12/2013 04:54:39 PM,08/12/2013 05:10:19 PM,Code 2 Transport,08/12/2013 05:44:28 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",132240260-AM04 +123660415,E02,12122635,Medical Incident,12/31/2012,12/31/2012,12/31/2012 11:08:20 PM,12/31/2012 11:08:33 PM,12/31/2012 11:09:33 PM,12/31/2012 11:09:48 PM,12/31/2012 11:10:51 PM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,12/31/2012 11:17:30 PM,GRANT AV/PACIFIC AV,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7969019046439, -122.406827678757)",123660415-E02 +131830013,85,13062217,Medical Incident,07/02/2013,07/01/2013,07/02/2013 01:04:27 AM,07/02/2013 01:06:47 AM,07/02/2013 01:07:17 AM,07/02/2013 01:08:15 AM,07/02/2013 01:13:12 AM,07/02/2013 01:23:22 AM,07/02/2013 01:41:03 AM,Code 2 Transport,07/02/2013 02:05:20 AM,STANYAN ST/FULTON ST,SF,94122,B07,21,4561,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7747554836103, -122.454682645753)",131830013-85 +140870254,B10,14029336,Fuel Spill,03/28/2014,03/28/2014,03/28/2014 04:00:52 PM,03/28/2014 04:03:42 PM,03/28/2014 04:09:23 PM,03/28/2014 04:11:48 PM,03/28/2014 04:15:12 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Fire,03/28/2014 04:39:49 PM,100 Block of TOPEKA AVE,SAN FRANCISCO,94124,B10,42,6446,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7335074659462, -122.398105759042)",140870254-B10 +140810379,92,14027537,Structure Fire,03/22/2014,03/22/2014,03/22/2014 11:28:46 PM,03/22/2014 11:29:19 PM,03/22/2014 11:29:32 PM,03/22/2014 11:30:33 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Fire,03/22/2014 11:53:18 PM,1600 Block of STOCKTON ST,SAN FRANCISCO,94133,B01,28,1335,3,3,3,true,Fire,1,MEDIC,12,1,3,North Beach,"(37.8009162018101, -122.409211049005)",140810379-92 +113000162,KM05,11099496,Medical Incident,10/27/2011,10/27/2011,10/27/2011 12:20:15 PM,10/27/2011 12:21:03 PM,10/27/2011 12:21:32 PM,10/27/2011 12:23:37 PM,10/27/2011 12:29:09 PM,10/27/2011 12:34:47 PM,10/27/2011 01:02:28 PM,Code 2 Transport,10/27/2011 01:20:12 PM,200 Block of GRANADA AVE,SF,94112,B09,15,8473,3,3,3,false,,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7229722670575, -122.457235193832)",113000162-KM05 +130590301,KM14,13019907,Medical Incident,02/28/2013,02/28/2013,02/28/2013 06:20:18 PM,02/28/2013 06:21:33 PM,02/28/2013 06:22:26 PM,02/28/2013 06:23:14 PM,02/28/2013 06:28:17 PM,02/28/2013 06:42:09 PM,02/28/2013 06:59:36 PM,Code 2 Transport,02/28/2013 07:30:56 PM,1300 Block of HYDE ST,SF,94109,B01,41,1564,3,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.7932523521612, -122.417779084032)",130590301-KM14 +102390131,67,10075338,Medical Incident,08/27/2010,08/27/2010,08/27/2010 11:25:31 AM,08/27/2010 11:26:51 AM,08/27/2010 11:27:46 AM,08/27/2010 11:28:04 AM,08/27/2010 11:33:18 AM,08/27/2010 11:43:48 AM,08/27/2010 11:59:10 AM,Code 2 Transport,08/27/2010 12:25:57 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,true,,1,MEDIC,3,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",102390131-67 +130620189,87,13020778,Medical Incident,03/03/2013,03/03/2013,03/03/2013 12:16:50 PM,03/03/2013 12:18:39 PM,03/03/2013 12:22:59 PM,03/03/2013 12:23:29 PM,03/03/2013 12:45:38 PM,03/03/2013 01:08:22 PM,03/03/2013 01:32:40 PM,Code 2 Transport,03/03/2013 01:57:42 PM,0 Block of SAN MARCOS AVE,SF,94116,B08,39,8623,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7461195450511, -122.463924054612)",130620189-87 +131670121,T06,13056642,Alarms,06/16/2013,06/16/2013,06/16/2013 09:51:30 AM,06/16/2013 09:52:58 AM,06/16/2013 09:53:10 AM,06/16/2013 09:54:42 AM,06/16/2013 09:58:15 AM,04/25/2016 01:52:16 PM,04/25/2016 01:52:16 PM,Other,06/16/2013 09:59:45 AM,200 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.773831971677, -122.424834587416)",131670121-T06 +160722389,74,16028669,Medical Incident,03/12/2016,03/12/2016,03/12/2016 05:03:02 PM,03/12/2016 05:03:33 PM,03/12/2016 05:04:00 PM,03/12/2016 05:04:27 PM,03/12/2016 05:07:16 PM,03/12/2016 05:36:35 PM,03/12/2016 05:38:57 PM,Code 2 Transport,03/12/2016 06:08:51 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160722389-74 +102620361,B07,10083046,Alarms,09/19/2010,09/19/2010,09/19/2010 10:52:33 PM,09/19/2010 10:53:56 PM,09/19/2010 10:54:22 PM,09/19/2010 10:55:45 PM,09/19/2010 10:59:43 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/19/2010 11:01:57 PM,800 Block of 24TH AVE,SF,94121,B07,14,7177,3,3,3,false,,1,CHIEF,3,7,1,Outer Richmond,"(37.773548644306, -122.483255988782)",102620361-B07 +111280112,79,11042296,Medical Incident,05/08/2011,05/08/2011,05/08/2011 10:31:34 AM,05/08/2011 10:32:23 AM,05/08/2011 10:32:39 AM,05/08/2011 10:33:31 AM,05/08/2011 10:53:24 AM,05/08/2011 11:08:13 AM,05/08/2011 11:11:43 AM,Code 2 Transport,05/08/2011 11:38:01 AM,0 Block of JOHN ST,SF,94133,B01,2,1354,3,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7960085369465, -122.410820106223)",111280112-79 +102980296,T09,10095242,Structure Fire,10/25/2010,10/25/2010,10/25/2010 05:47:39 PM,10/25/2010 05:47:39 PM,10/25/2010 05:47:47 PM,10/25/2010 05:49:05 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/25/2010 05:50:31 PM,25TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,false,,1,TRUCK,2,10,10,Potrero Hill,"(37.7521940654679, -122.398452381695)",102980296-T09 +130720146,E28,13023968,Traffic Collision,03/13/2013,03/13/2013,03/13/2013 10:22:12 AM,03/13/2013 10:22:44 AM,03/13/2013 10:22:56 AM,03/13/2013 10:23:28 AM,03/13/2013 10:24:54 AM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 10:58:27 AM,BAY ST/MASON ST,SF,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8056184799358, -122.413604167697)",130720146-E28 +160571696,KM09,16022747,Medical Incident,02/26/2016,02/26/2016,02/26/2016 12:46:58 PM,02/26/2016 12:46:58 PM,02/26/2016 12:47:55 PM,02/26/2016 12:48:50 PM,02/26/2016 12:58:38 PM,02/26/2016 01:28:20 PM,02/26/2016 02:05:13 PM,Code 2 Transport,02/26/2016 02:29:56 PM,400 Block of CAPP ST,San Francisco,94110,B06,7,5433,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7594955059934, -122.41811039755)",160571696-KM09 +103030327,E36,10096912,Medical Incident,10/30/2010,10/30/2010,10/30/2010 09:30:02 PM,10/30/2010 09:30:59 PM,10/30/2010 09:32:19 PM,04/25/2016 02:07:51 PM,10/30/2010 09:35:14 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 09:42:26 PM,HAYES ST/OCTAVIA ST,SF,94102,B02,36,3315,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7766875550419, -122.424513700951)",103030327-E36 +160323130,KM02,16012721,Medical Incident,02/01/2016,02/01/2016,02/01/2016 07:24:58 PM,02/01/2016 07:25:43 PM,02/01/2016 07:25:54 PM,02/01/2016 07:26:30 PM,02/01/2016 07:34:50 PM,02/01/2016 07:46:29 PM,02/01/2016 07:55:46 PM,Code 2 Transport,02/01/2016 08:29:59 PM,900 Block of PRESIDIO AV,San Francisco,94115,B05,10,4365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7830075660174, -122.445858485815)",160323130-KM02 +120230257,75,12007856,Medical Incident,01/23/2012,01/23/2012,01/23/2012 04:27:39 PM,01/23/2012 04:28:15 PM,01/23/2012 04:28:24 PM,01/23/2012 04:29:13 PM,01/23/2012 04:34:04 PM,01/23/2012 04:52:05 PM,01/23/2012 05:15:04 PM,Code 2 Transport,01/23/2012 05:43:18 PM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",120230257-75 +160181210,85,16007194,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:14:21 AM,01/18/2016 11:14:21 AM,01/18/2016 11:15:11 AM,01/18/2016 11:15:32 AM,01/18/2016 11:21:03 AM,01/18/2016 11:32:21 AM,01/18/2016 11:52:58 AM,Code 2 Transport,01/18/2016 12:31:39 PM,BAY ST/GOUGH ST,San Francisco,94123,B04,16,3236,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8037271288044, -122.428400274715)",160181210-85 +160293358,AM22,16011566,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:49:54 PM,01/29/2016 08:49:54 PM,01/29/2016 08:50:19 PM,01/29/2016 08:50:47 PM,01/29/2016 08:57:35 PM,01/29/2016 09:14:22 PM,01/29/2016 09:25:04 PM,Code 2 Transport,01/29/2016 09:50:38 PM,MASON ST/GEARY ST,San Francisco,94102,B04,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.787149142759, -122.409874017562)",160293358-AM22 +112940057,E05,11097428,Structure Fire,10/21/2011,10/20/2011,10/21/2011 07:29:54 AM,10/21/2011 07:29:54 AM,10/21/2011 07:30:31 AM,10/21/2011 07:31:31 AM,10/21/2011 07:32:31 AM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 07:33:31 AM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",112940057-E05 +123440097,E01,12114916,Medical Incident,12/09/2012,12/08/2012,12/09/2012 07:14:06 AM,12/09/2012 07:16:32 AM,12/09/2012 07:17:19 AM,04/25/2016 01:55:24 PM,12/09/2012 07:20:02 AM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/09/2012 07:28:37 AM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",123440097-E01 +112870165,E18,11095125,Administrative,10/14/2011,10/14/2011,10/14/2011 10:41:04 AM,10/14/2011 10:42:45 AM,10/14/2011 10:42:54 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 10:43:36 AM,1900 Block of 32ND AVE,SF,94116,B08,18,7533,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7508238719258, -122.490273641262)",112870165-E18 +160562269,74,16022430,Medical Incident,02/25/2016,02/25/2016,02/25/2016 02:34:34 PM,02/25/2016 02:35:03 PM,02/25/2016 02:35:22 PM,02/25/2016 02:35:35 PM,02/25/2016 02:37:37 PM,02/25/2016 02:52:08 PM,02/25/2016 03:10:43 PM,Code 2 Transport,02/25/2016 03:39:16 PM,200 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",160562269-74 +111830289,88,11060535,Medical Incident,07/02/2011,07/02/2011,07/02/2011 07:05:33 PM,07/02/2011 07:06:32 PM,07/02/2011 07:07:02 PM,07/02/2011 07:07:14 PM,07/02/2011 07:10:56 PM,07/02/2011 07:30:57 PM,07/02/2011 07:38:04 PM,Code 2 Transport,07/02/2011 08:03:03 PM,600 Block of HAYES ST,SF,94102,B02,36,3413,3,3,3,true,,1,MEDIC,1,2,5,Hayes Valley,"(37.7763047597518, -122.427077545588)",111830289-88 +110990340,93,11033018,Transfer,04/09/2011,04/09/2011,04/09/2011 09:07:57 PM,04/09/2011 09:10:45 PM,04/09/2011 09:10:56 PM,04/09/2011 09:21:25 PM,04/09/2011 09:29:48 PM,04/09/2011 09:53:22 PM,04/09/2011 10:01:22 PM,Code 2 Transport,04/09/2011 10:24:29 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",110990340-93 +102870232,86,10091540,Medical Incident,10/14/2010,10/14/2010,10/14/2010 02:04:36 PM,10/14/2010 02:05:06 PM,10/14/2010 02:10:19 PM,10/14/2010 02:11:26 PM,10/14/2010 02:15:23 PM,10/14/2010 02:23:50 PM,10/14/2010 02:34:47 PM,Code 2 Transport,10/14/2010 03:06:11 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,2,2,2,true,,1,MEDIC,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",102870232-86 +160611090,87,16024256,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:27:35 AM,03/01/2016 10:29:54 AM,03/01/2016 10:30:13 AM,03/01/2016 10:30:28 AM,03/01/2016 10:36:04 AM,03/01/2016 10:59:09 AM,03/01/2016 11:36:16 AM,Code 2 Transport,03/01/2016 12:03:29 PM,1500 Block of INDIANA ST,San Francisco,94107,B10,25,2635,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7507499478953, -122.390567258683)",160611090-87 +110790392,75,11026227,Medical Incident,03/20/2011,03/20/2011,03/20/2011 11:44:33 PM,03/20/2011 11:44:34 PM,03/20/2011 11:45:07 PM,03/20/2011 11:46:20 PM,03/20/2011 11:54:01 PM,03/21/2011 12:06:11 AM,03/21/2011 12:17:30 AM,Code 2 Transport,03/21/2011 12:32:13 AM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",110790392-75 +132680261,RS2,13091045,Medical Incident,09/25/2013,09/25/2013,09/25/2013 03:50:05 PM,09/25/2013 03:50:20 PM,09/25/2013 03:50:52 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 03:52:24 PM,18TH ST/LAPIDGE ST,SF,94110,B02,7,5422,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,6,8,Mission,"(37.7616502201426, -122.422411420735)",132680261-RS2 +140530249,AM12,14018003,Medical Incident,02/22/2014,02/22/2014,02/22/2014 04:40:45 PM,02/22/2014 04:42:19 PM,02/22/2014 04:42:32 PM,02/22/2014 04:43:29 PM,02/22/2014 04:48:40 PM,04/25/2016 01:48:05 PM,04/25/2016 01:48:05 PM,Against Medical Advice,02/22/2014 05:33:52 PM,300 Block of GENNESSEE ST,SF,94112,B09,15,8234,3,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7311092778715, -122.451074581002)",140530249-AM12 +102850061,E20,10090658,Medical Incident,10/12/2010,10/11/2010,10/12/2010 06:23:32 AM,10/12/2010 06:23:57 AM,10/12/2010 06:24:16 AM,10/12/2010 06:25:30 AM,10/12/2010 06:26:53 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 06:49:33 AM,100 Block of GALEWOOD CIR,SF,94131,B08,20,5342,3,3,3,true,,1,ENGINE,1,8,7,Inner Sunset,"(37.7518232059279, -122.457322629661)",102850061-E20 +132220381,E43,13075132,Medical Incident,08/10/2013,08/10/2013,08/10/2013 10:26:52 PM,08/10/2013 10:27:31 PM,08/10/2013 10:27:54 PM,08/10/2013 10:29:11 PM,08/10/2013 10:34:03 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,Other,08/10/2013 10:45:38 PM,100 Block of SANTOS ST,SF,94134,B09,43,6244,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",132220381-E43 +131950350,67,13066386,Medical Incident,07/14/2013,07/14/2013,07/14/2013 11:43:28 PM,07/14/2013 11:45:25 PM,07/14/2013 11:46:33 PM,07/14/2013 11:46:53 PM,07/14/2013 11:52:34 PM,07/15/2013 12:11:26 AM,07/15/2013 12:17:42 AM,Code 2 Transport,07/15/2013 12:37:10 AM,300 Block of CALIFORNIA ST,SF,94104,B01,13,1162,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",131950350-67 +131140135,B08,13038393,Structure Fire,04/24/2013,04/24/2013,04/24/2013 10:50:02 AM,04/24/2013 10:50:33 AM,04/24/2013 01:13:22 PM,04/24/2013 01:14:37 PM,04/24/2013 01:14:02 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 04:49:32 PM,2000 Block of VALLEJO ST,SF,94123,B04,38,3442,3,3,3,false,Fire,3,CHIEF,36,4,2,Marina,"(37.7958030542042, -122.431016298283)",131140135-B08 +103550090,67,10113884,Medical Incident,12/21/2010,12/21/2010,12/21/2010 08:54:20 AM,12/21/2010 08:56:51 AM,12/21/2010 08:58:23 AM,12/21/2010 08:58:29 AM,12/21/2010 09:11:10 AM,12/21/2010 09:30:44 AM,12/21/2010 09:44:06 AM,Code 2 Transport,12/21/2010 10:12:13 AM,2300 Block of 33RD AVE,SF,94116,B08,18,7546,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7433267118277, -122.490688040344)",103550090-67 +160202941,AM16,16008099,Medical Incident,01/20/2016,01/20/2016,01/20/2016 05:41:31 PM,01/20/2016 05:42:23 PM,01/20/2016 05:48:32 PM,01/20/2016 05:48:32 PM,01/20/2016 05:52:44 PM,01/20/2016 05:56:21 PM,01/20/2016 06:14:52 PM,Code 2 Transport,01/20/2016 06:42:02 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160202941-AM16 +160453189,KM03,16018292,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:58:52 PM,02/14/2016 08:58:52 PM,02/14/2016 09:00:31 PM,02/14/2016 09:00:59 PM,02/14/2016 09:12:23 PM,02/14/2016 09:31:05 PM,02/14/2016 09:40:01 PM,Code 2 Transport,02/14/2016 09:59:49 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160453189-KM03 +103200381,T09,10102725,Vehicle Fire,11/16/2010,11/16/2010,11/16/2010 10:05:57 PM,11/16/2010 10:07:02 PM,11/16/2010 10:07:10 PM,11/16/2010 10:08:13 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 10:12:30 PM,MANSELL ST/DARTMOUTH ST,SF,94134,B09,44,6322,3,3,3,false,,1,TRUCK,2,9,10,McLaren Park,"(37.7195867262349, -122.409021908423)",103200381-T09 +112100198,E22,11069347,Medical Incident,07/29/2011,07/29/2011,07/29/2011 03:30:34 PM,07/29/2011 03:31:41 PM,07/29/2011 03:32:05 PM,07/29/2011 03:33:17 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 03:36:17 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,,1,ENGINE,3,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",112100198-E22 +112380054,E41,11078447,Citizen Assist / Service Call,08/26/2011,08/25/2011,08/26/2011 05:55:58 AM,08/26/2011 05:58:01 AM,08/26/2011 05:58:05 AM,08/26/2011 05:59:26 AM,08/26/2011 06:01:23 AM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 06:07:24 AM,1200 Block of FILBERT ST,SF,94109,B01,41,1626,3,3,3,false,,1,ENGINE,1,1,2,Russian Hill,"(37.7999745038153, -122.420050559214)",112380054-E41 +113020213,E22,11100219,Medical Incident,10/29/2011,10/29/2011,10/29/2011 01:05:30 PM,10/29/2011 01:05:42 PM,10/29/2011 01:06:25 PM,10/29/2011 01:07:45 PM,10/29/2011 01:09:52 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/29/2011 01:15:52 PM,6TH AV/LINCOLN WY,SF,94122,B08,22,7325,3,3,3,false,,1,ENGINE,2,7,5,Inner Sunset,"(37.7660567219946, -122.463233168799)",113020213-E22 +132520134,E08,13085137,Alarms,09/09/2013,09/09/2013,09/09/2013 10:04:32 AM,09/09/2013 10:05:57 AM,09/09/2013 10:06:31 AM,09/09/2013 10:09:06 AM,09/09/2013 10:14:18 AM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Other,09/09/2013 10:17:19 AM,400 Block of CHINA BASIN ST,SF,94158,B03,8,2231,3,3,3,true,Alarm,1,ENGINE,2,3,6,Mission Bay,"(37.7720245149608, -122.388255494514)",132520134-E08 +113510321,85,11116596,Medical Incident,12/17/2011,12/17/2011,12/17/2011 05:45:57 PM,12/17/2011 05:48:10 PM,12/17/2011 05:55:19 PM,12/17/2011 05:56:14 PM,12/17/2011 06:02:08 PM,12/17/2011 06:22:32 PM,12/17/2011 06:52:38 PM,Code 2 Transport,12/17/2011 07:05:35 PM,0 Block of GARNETT TER,SF,94124,B10,17,6624,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7327997583863, -122.381958643275)",113510321-85 +122860088,E09,12094533,Traffic Collision,10/12/2012,10/12/2012,10/12/2012 08:46:09 AM,10/12/2012 08:46:42 AM,10/12/2012 08:47:14 AM,10/12/2012 08:48:21 AM,10/12/2012 09:07:26 AM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 08:52:16 AM,26TH ST/YORK ST,SF,94110,B06,9,5532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7496572265458, -122.407884355924)",122860088-E09 +132910017,E03,13098873,Medical Incident,10/18/2013,10/17/2013,10/18/2013 01:05:14 AM,10/18/2013 01:05:58 AM,10/18/2013 01:06:21 AM,10/18/2013 01:09:30 AM,10/18/2013 01:09:46 AM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/18/2013 01:13:27 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",132910017-E03 +160630824,AM02,16024982,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:30:49 AM,03/03/2016 08:31:38 AM,03/03/2016 08:31:46 AM,03/03/2016 08:32:21 AM,03/03/2016 08:39:05 AM,03/03/2016 08:53:18 AM,03/03/2016 09:10:18 AM,Code 2 Transport,03/03/2016 09:44:35 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160630824-AM02 +160251579,KM08,16009908,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:54:32 AM,01/25/2016 11:56:29 AM,01/25/2016 11:58:28 AM,01/25/2016 12:00:45 PM,01/25/2016 12:06:03 PM,01/25/2016 12:19:53 PM,01/25/2016 12:28:10 PM,Code 2 Transport,01/25/2016 01:09:38 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160251579-KM08 +103560109,KM11,10114204,Medical Incident,12/22/2010,12/22/2010,12/22/2010 10:10:40 AM,12/22/2010 10:12:33 AM,12/22/2010 10:13:56 AM,12/22/2010 10:14:32 AM,12/22/2010 10:18:29 AM,12/22/2010 10:36:07 AM,12/22/2010 10:46:00 AM,Code 2 Transport,12/22/2010 11:05:35 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",103560109-KM11 +111770376,E33,11058532,Medical Incident,06/26/2011,06/26/2011,06/26/2011 07:38:29 PM,06/26/2011 07:39:30 PM,06/26/2011 07:41:10 PM,06/26/2011 07:41:36 PM,06/26/2011 07:42:55 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/26/2011 07:52:18 PM,200 Block of SAGAMORE ST,SF,94112,B09,33,8375,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7114349669499, -122.460534777512)",111770376-E33 +122460022,RC1,12081200,Medical Incident,09/02/2012,09/01/2012,09/02/2012 01:02:14 AM,09/02/2012 01:03:18 AM,09/02/2012 01:03:41 AM,09/02/2012 01:05:48 AM,09/02/2012 01:08:48 AM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 01:09:42 AM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",122460022-RC1 +130040062,88,13001258,Medical Incident,01/04/2013,01/03/2013,01/04/2013 05:55:44 AM,01/04/2013 05:56:56 AM,01/04/2013 05:57:05 AM,01/04/2013 05:57:18 AM,01/04/2013 06:04:32 AM,01/04/2013 06:24:31 AM,01/04/2013 06:34:44 AM,Code 2 Transport,01/04/2013 06:55:41 AM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7363435467508, -122.411122016119)",130040062-88 +140420183,E10,14014273,Medical Incident,02/11/2014,02/11/2014,02/11/2014 12:08:58 PM,02/11/2014 12:09:36 PM,02/11/2014 12:42:26 PM,02/11/2014 12:43:09 PM,02/11/2014 12:44:38 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/11/2014 01:03:00 PM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,,E,3,true,Potentially Life-Threatening,1,ENGINE,3,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",140420183-E10 +160831189,KM04,16032901,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:00:46 AM,03/23/2016 10:02:02 AM,03/23/2016 10:02:18 AM,03/23/2016 10:03:15 AM,03/23/2016 10:16:14 AM,03/23/2016 10:38:05 AM,03/23/2016 11:17:43 AM,Code 2 Transport,03/23/2016 11:51:16 AM,1700 Block of QUINT ST,San Francisco,94124,B10,42,6445,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7350748815594, -122.398827357293)",160831189-KM04 +160160353,AM24,16006276,Medical Incident,01/16/2016,01/15/2016,01/16/2016 02:47:45 AM,01/16/2016 02:47:45 AM,01/16/2016 02:48:17 AM,01/16/2016 02:50:46 AM,01/16/2016 03:03:24 AM,01/16/2016 03:09:22 AM,01/16/2016 03:24:23 AM,Code 2 Transport,01/16/2016 03:59:30 AM,ULLOA ST/LENOX WY,San Francisco,94127,B08,39,8611,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7410435643275, -122.466122802215)",160160353-AM24 +102330008,86,10073194,Medical Incident,08/21/2010,08/20/2010,08/21/2010 12:31:43 AM,08/21/2010 12:34:11 AM,08/21/2010 12:34:23 AM,08/21/2010 12:34:34 AM,08/21/2010 12:37:09 AM,08/21/2010 12:55:21 AM,08/21/2010 01:07:07 AM,Code 2 Transport,08/21/2010 01:32:00 AM,600 Block of EUCLID AVE,SF,94118,B07,10,4451,3,3,3,true,,1,MEDIC,1,7,2,Presidio Heights,"(37.7838990648034, -122.456258324628)",102330008-86 +102370126,85,10074674,Traffic Collision,08/25/2010,08/25/2010,08/25/2010 09:47:20 AM,08/25/2010 09:47:20 AM,08/25/2010 09:47:48 AM,08/25/2010 09:47:59 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/25/2010 09:58:20 AM,0 Block of SPEAR ST,SF,94105,B03,13,2115,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",102370126-85 +121620016,66,12053485,Medical Incident,06/10/2012,06/09/2012,06/10/2012 12:47:57 AM,06/10/2012 12:49:38 AM,06/10/2012 12:49:59 AM,06/10/2012 12:50:07 AM,06/10/2012 12:54:15 AM,06/10/2012 01:19:14 AM,06/10/2012 01:31:48 AM,Code 2 Transport,06/10/2012 02:11:27 AM,2500 Block of GEARY BLVD,SF,94115,B05,10,4365,3,1,2,true,Non Life-threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.782740607461, -122.445203077158)",121620016-66 +121010302,T12,12033584,Alarms,04/10/2012,04/10/2012,04/10/2012 06:42:00 PM,04/10/2012 06:42:53 PM,04/10/2012 06:43:00 PM,04/10/2012 06:44:27 PM,04/10/2012 06:46:38 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 06:57:05 PM,1300 Block of 3RD AVE,SF,94122,B05,12,7324,3,3,3,false,Alarm,1,TRUCK,2,5,5,Inner Sunset,"(37.7636254238547, -122.459769881329)",121010302-T12 +132170214,E03,13073329,Medical Incident,08/05/2013,08/05/2013,08/05/2013 02:45:02 PM,08/05/2013 02:45:02 PM,08/05/2013 02:45:42 PM,08/05/2013 02:45:55 PM,08/05/2013 02:52:54 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 02:55:22 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132170214-E03 +102380315,RS2,10075168,Medical Incident,08/26/2010,08/26/2010,08/26/2010 05:56:20 PM,08/26/2010 05:57:50 PM,08/26/2010 05:59:00 PM,08/26/2010 06:00:17 PM,08/26/2010 06:02:36 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 06:27:16 PM,0 Block of HILL ST,SF,94110,B06,7,5456,3,3,3,false,,1,RESCUE SQUAD,1,6,8,Mission,"(37.7559816227909, -122.422122610502)",102380315-RS2 +120690279,RS1,12022972,Water Rescue,03/09/2012,03/09/2012,03/09/2012 05:35:24 PM,03/09/2012 05:41:39 PM,03/09/2012 05:45:05 PM,03/09/2012 05:46:02 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:05:22 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,RESCUE SQUAD,12,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120690279-RS1 +110640416,59,11021278,Medical Incident,03/05/2011,03/05/2011,03/05/2011 10:43:18 PM,03/05/2011 10:46:23 PM,03/05/2011 10:46:43 PM,03/05/2011 10:46:52 PM,03/05/2011 10:48:23 PM,03/05/2011 11:16:03 PM,03/05/2011 11:23:15 PM,Code 2 Transport,03/05/2011 11:45:37 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",110640416-59 +113610050,E32,11119843,Medical Incident,12/27/2011,12/26/2011,12/27/2011 06:42:49 AM,12/27/2011 06:45:03 AM,12/27/2011 06:45:26 AM,12/27/2011 06:48:11 AM,12/27/2011 06:48:14 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 07:07:58 AM,100 Block of APPLETON AVE,SF,94110,B06,32,5646,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",113610050-E32 +102610108,77,10082441,Medical Incident,09/18/2010,09/17/2010,09/18/2010 07:38:01 AM,09/18/2010 07:39:38 AM,09/18/2010 07:40:05 AM,09/18/2010 07:42:35 AM,09/18/2010 07:42:52 AM,09/18/2010 08:06:50 AM,09/18/2010 08:24:37 AM,Code 2 Transport,09/18/2010 08:39:13 AM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,true,,1,MEDIC,1,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",102610108-77 +112820162,RS1,11093315,Medical Incident,10/09/2011,10/09/2011,10/09/2011 12:09:41 PM,10/09/2011 12:10:27 PM,10/09/2011 12:11:39 PM,10/09/2011 12:12:00 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 12:13:05 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,,1,RESCUE SQUAD,4,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",112820162-RS1 +80260226,83,8008275,Medical Incident,01/26/2008,01/26/2008,01/26/2008 12:55:14 PM,01/26/2008 12:56:51 PM,01/26/2008 12:56:58 PM,01/26/2008 12:57:35 PM,01/26/2008 01:00:49 PM,04/25/2016 03:35:50 PM,01/26/2008 01:43:50 PM,Other,01/26/2008 01:59:10 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",080260226-83 +132620355,KM07,13088891,Medical Incident,09/19/2013,09/19/2013,09/19/2013 08:34:44 PM,09/19/2013 08:37:27 PM,09/19/2013 08:42:27 PM,09/19/2013 08:43:01 PM,09/19/2013 08:54:14 PM,09/19/2013 09:24:21 PM,09/19/2013 09:44:05 PM,Code 2 Transport,09/19/2013 10:17:11 PM,400 Block of POWELL ST,SF,94108,B01,1,1362,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",132620355-KM07 +133130031,79,13106245,Medical Incident,11/09/2013,11/08/2013,11/09/2013 01:59:22 AM,11/09/2013 02:00:00 AM,11/09/2013 02:02:54 AM,11/09/2013 02:03:28 AM,11/09/2013 02:08:19 AM,11/09/2013 02:23:01 AM,04/25/2016 01:49:51 PM,Code 2 Transport,11/09/2013 02:50:51 AM,GREEN ST/GRANT AV,SF,94133,B01,28,1266,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7997036751716, -122.407395244265)",133130031-79 +112960356,E05,11098335,Medical Incident,10/23/2011,10/23/2011,10/23/2011 09:03:15 PM,10/23/2011 09:04:16 PM,10/23/2011 09:05:07 PM,04/25/2016 02:02:00 PM,10/23/2011 09:06:17 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/23/2011 09:19:34 PM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",112960356-E05 +122590034,RC3,12085494,Medical Incident,09/15/2012,09/14/2012,09/15/2012 01:36:30 AM,09/15/2012 01:36:48 AM,09/15/2012 01:37:17 AM,09/15/2012 01:38:51 AM,09/15/2012 01:44:46 AM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/15/2012 01:52:01 AM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",122590034-RC3 +102680143,E12,10084851,Medical Incident,09/25/2010,09/25/2010,09/25/2010 10:19:05 AM,09/25/2010 10:19:09 AM,09/25/2010 10:19:29 AM,09/25/2010 10:19:48 AM,09/25/2010 10:22:54 AM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 10:32:26 AM,12TH AV/LINCOLN WY,SF,94122,B08,22,7346,3,3,3,true,,1,ENGINE,1,7,5,Inner Sunset,"(37.7657826725272, -122.469653846704)",102680143-E12 +113160096,E01,11104943,Medical Incident,11/12/2011,11/12/2011,11/12/2011 09:26:23 AM,11/12/2011 09:29:46 AM,11/12/2011 09:30:22 AM,11/12/2011 09:31:18 AM,11/12/2011 09:35:35 AM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/12/2011 09:41:03 AM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",113160096-E01 +120540162,93,12017808,Medical Incident,02/23/2012,02/23/2012,02/23/2012 12:54:40 PM,02/23/2012 12:55:31 PM,02/23/2012 12:55:45 PM,02/23/2012 01:00:15 PM,02/23/2012 01:04:32 PM,02/23/2012 01:27:09 PM,02/23/2012 01:55:59 PM,Code 2 Transport,02/23/2012 02:18:27 PM,2100 Block of 28TH AVE,SF,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7472839020213, -122.485731349104)",120540162-93 +133280026,E05,13111329,Medical Incident,11/24/2013,11/23/2013,11/24/2013 12:59:00 AM,11/24/2013 12:59:00 AM,11/24/2013 12:59:42 AM,11/24/2013 01:01:28 AM,11/24/2013 01:03:28 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 01:17:16 AM,1100 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",133280026-E05 +112350212,92,11077570,Medical Incident,08/23/2011,08/23/2011,08/23/2011 01:29:19 PM,08/23/2011 01:29:19 PM,08/23/2011 01:29:19 PM,08/23/2011 01:31:44 PM,08/23/2011 01:36:24 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Patient Declined Transport,08/23/2011 02:04:21 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",112350212-92 +132090260,KM01,13070755,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:32:44 PM,07/28/2013 04:34:01 PM,07/28/2013 04:34:26 PM,07/28/2013 04:36:17 PM,07/28/2013 04:47:07 PM,07/28/2013 05:00:02 PM,07/28/2013 05:10:17 PM,Code 2 Transport,07/28/2013 05:25:46 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132090260-KM01 +111360135,KM12,11045241,Traffic Collision,05/16/2011,05/16/2011,05/16/2011 10:58:35 AM,05/16/2011 10:59:47 AM,05/16/2011 11:00:32 AM,05/16/2011 11:01:15 AM,05/16/2011 11:03:44 AM,05/16/2011 11:20:18 AM,05/16/2011 11:40:33 AM,Other,05/16/2011 12:03:33 PM,POWELL ST/SUTTER ST,SF,94108,B01,1,1362,3,3,3,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",111360135-KM12 +103330321,E13,10106703,Structure Fire,11/29/2010,11/29/2010,11/29/2010 09:34:06 PM,11/29/2010 09:35:20 PM,11/29/2010 09:35:30 PM,11/29/2010 09:36:34 PM,11/29/2010 09:38:16 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Other,11/29/2010 09:55:59 PM,500 Block of MARKET ST,SF,94105,B03,13,2143,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",103330321-E13 +132730069,77,13092688,Medical Incident,09/30/2013,09/29/2013,09/30/2013 05:41:54 AM,09/30/2013 05:41:55 AM,09/30/2013 05:42:05 AM,09/30/2013 05:42:19 AM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 05:50:22 AM,1100 Block of GRANT AVE,SF,94133,B01,2,1311,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7971765677058, -122.406954465276)",132730069-77 +111290152,E17,11042633,Medical Incident,05/09/2011,05/09/2011,05/09/2011 12:45:22 PM,05/09/2011 12:46:05 PM,05/09/2011 12:46:19 PM,05/09/2011 12:47:37 PM,05/09/2011 12:48:14 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Medical Examiner,05/09/2011 01:17:22 PM,1400 Block of HAWES ST,SF,94124,B10,17,6634,3,E,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.727079743494, -122.382911278805)",111290152-E17 +160371709,71,16014672,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:00:05 PM,02/06/2016 12:00:45 PM,02/06/2016 12:01:04 PM,02/06/2016 12:01:20 PM,02/06/2016 12:16:19 PM,02/06/2016 12:25:59 PM,02/06/2016 12:43:17 PM,Code 2 Transport,02/06/2016 12:54:02 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160371709-71 +112040169,94,11067383,Medical Incident,07/23/2011,07/23/2011,07/23/2011 12:37:31 PM,07/23/2011 12:40:15 PM,07/23/2011 12:40:37 PM,07/23/2011 12:40:50 PM,07/23/2011 12:49:29 PM,07/23/2011 01:22:16 PM,07/23/2011 01:36:17 PM,Code 2 Transport,07/23/2011 02:27:32 PM,1700 Block of GENEVA AVE,SF,94134,B09,43,6245,1,1,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7118331290822, -122.427989009711)",112040169-94 +123570001,94,12119348,Medical Incident,12/22/2012,12/21/2012,12/22/2012 12:01:47 AM,12/22/2012 12:05:01 AM,12/22/2012 12:05:45 AM,12/22/2012 12:06:15 AM,12/22/2012 12:06:33 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Unable to Locate,12/22/2012 12:14:51 AM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",123570001-94 +112320133,E19,11076550,Medical Incident,08/20/2011,08/20/2011,08/20/2011 11:09:03 AM,08/20/2011 11:09:36 AM,08/20/2011 11:09:53 AM,08/20/2011 11:11:47 AM,08/20/2011 11:15:14 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 11:26:55 AM,0 Block of BEACHMONT DR,SF,94132,B08,19,7413,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.733498763623, -122.473976697519)",112320133-E19 +123030268,E33,12100570,Administrative,10/29/2012,10/29/2012,10/29/2012 12:40:42 PM,10/29/2012 12:40:55 PM,10/29/2012 12:41:02 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 12:41:37 PM,0 Block of CAPITOL AVE,SF,94112,B09,33,8374,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.710896081508, -122.458931105722)",123030268-E33 +160602585,65,16023994,Medical Incident,02/29/2016,02/29/2016,02/29/2016 05:08:41 PM,02/29/2016 05:08:41 PM,02/29/2016 05:09:03 PM,02/29/2016 05:13:09 PM,02/29/2016 05:36:25 PM,02/29/2016 05:43:17 PM,02/29/2016 05:53:32 PM,Code 2 Transport,02/29/2016 06:17:45 PM,BUSH ST/BATTERY ST,San Francisco,94111,B01,13,1163,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7913265326409, -122.399572031136)",160602585-65 +113570303,E36,11118685,Medical Incident,12/23/2011,12/23/2011,12/23/2011 03:00:28 PM,12/23/2011 03:01:33 PM,12/23/2011 03:01:56 PM,12/23/2011 03:02:48 PM,12/23/2011 03:05:36 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 03:10:17 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",113570303-E36 +112490193,AM04,11082135,Medical Incident,09/06/2011,09/06/2011,09/06/2011 01:14:20 PM,09/06/2011 01:15:12 PM,09/06/2011 01:15:22 PM,09/06/2011 01:16:08 PM,04/25/2016 02:02:48 PM,09/06/2011 01:33:12 PM,09/06/2011 01:40:07 PM,Code 2 Transport,09/06/2011 02:26:54 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",112490193-AM04 +160440318,AM24,16017558,Medical Incident,02/13/2016,02/12/2016,02/13/2016 02:11:03 AM,02/13/2016 02:12:14 AM,02/13/2016 02:13:33 AM,02/13/2016 02:14:34 AM,02/13/2016 02:19:28 AM,02/13/2016 02:30:43 AM,02/13/2016 02:47:21 AM,Code 2 Transport,02/13/2016 03:14:06 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160440318-AM24 +103230006,B08,10103343,Traffic Collision,11/19/2010,11/18/2010,11/19/2010 12:43:54 AM,11/19/2010 12:44:06 AM,11/19/2010 12:47:12 AM,11/19/2010 12:48:52 AM,11/19/2010 12:52:32 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/19/2010 02:35:25 AM,OCEAN AV/JUNIPERO SERRA BL,SF,94127,B08,19,8452,3,3,3,false,,1,CHIEF,4,8,7,West of Twin Peaks,"(37.7312055048522, -122.472160323543)",103230006-B08 +112010430,RS2,11066473,Traffic Collision,07/20/2011,07/20/2011,07/20/2011 10:09:04 PM,07/20/2011 10:09:53 PM,07/20/2011 10:10:44 PM,07/20/2011 10:12:16 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/20/2011 10:14:58 PM,25TH ST/ALABAMA ST,SF,94110,B06,7,5533,3,3,3,false,,1,RESCUE SQUAD,3,6,9,Mission,"(37.7510916902154, -122.410810712438)",112010430-RS2 +160550559,78,16021903,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:09:52 AM,02/24/2016 07:12:32 AM,02/24/2016 07:12:58 AM,02/24/2016 07:12:58 AM,02/24/2016 07:27:10 AM,02/24/2016 07:57:12 AM,02/24/2016 08:15:07 AM,Code 2 Transport,02/24/2016 09:02:04 AM,0 Block of FARRAGUT AVE,San Francisco,94112,B09,33,6212,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.710300614047, -122.449849497565)",160550559-78 +160443256,AM16,16017845,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:15:41 PM,02/13/2016 08:17:58 PM,02/13/2016 08:19:30 PM,02/13/2016 08:21:39 PM,02/13/2016 08:27:20 PM,02/13/2016 08:39:41 PM,02/13/2016 08:50:21 PM,Code 2 Transport,02/13/2016 09:17:33 PM,EDDY ST/PIERCE ST,San Francisco,94115,B05,5,3624,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7810093448177, -122.435616262656)",160443256-AM16 +130800389,T16,13026924,Citizen Assist / Service Call,03/21/2013,03/21/2013,03/21/2013 09:47:20 PM,03/21/2013 09:49:08 PM,03/21/2013 09:49:19 PM,03/21/2013 09:50:14 PM,03/21/2013 09:56:39 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Fire,03/21/2013 10:04:20 PM,1800 Block of UNION ST,SF,94123,B04,16,3335,3,3,3,true,Alarm,1,TRUCK,1,4,2,Marina,"(37.7978750464713, -122.42974742404)",130800389-T16 +133510007,E36,13119041,Medical Incident,12/17/2013,12/16/2013,12/17/2013 12:37:04 AM,12/17/2013 12:40:20 AM,12/17/2013 12:40:59 AM,12/17/2013 12:43:53 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 12:45:22 AM,8TH ST/MARKET ST,SF,94103,B02,36,1646,E,E,3,true,Non Life-threatening,1,ENGINE,3,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",133510007-E36 +160531122,60,16021149,Medical Incident,02/22/2016,02/22/2016,02/22/2016 10:19:53 AM,02/22/2016 10:19:53 AM,02/22/2016 10:20:08 AM,02/22/2016 10:22:56 AM,02/22/2016 10:37:18 AM,02/22/2016 10:40:04 AM,02/22/2016 11:03:42 AM,Code 2 Transport,02/22/2016 12:04:31 PM,JACKSON ST/MASON ST,San Francisco,94133,B01,2,1354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7954085267096, -122.411541532158)",160531122-60 +133360293,54,13113979,Medical Incident,12/02/2013,12/02/2013,12/02/2013 06:16:12 PM,12/02/2013 06:16:35 PM,12/02/2013 06:17:01 PM,12/02/2013 06:27:33 PM,12/02/2013 06:44:39 PM,12/02/2013 06:56:38 PM,12/02/2013 07:14:13 PM,Code 2 Transport,12/02/2013 07:43:40 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",133360293-54 +121550272,KM12,12051392,Medical Incident,06/03/2012,06/03/2012,06/03/2012 05:45:42 PM,06/03/2012 05:46:21 PM,06/03/2012 05:47:24 PM,06/03/2012 05:53:59 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 05:54:28 PM,POWELL ST/ELLIS ST,SF,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",121550272-KM12 +160481969,73,16019351,Medical Incident,02/17/2016,02/17/2016,02/17/2016 01:18:22 PM,02/17/2016 01:18:22 PM,02/17/2016 01:18:45 PM,02/17/2016 01:19:40 PM,02/17/2016 01:39:44 PM,02/17/2016 01:44:44 PM,02/17/2016 02:07:33 PM,Code 2 Transport,02/17/2016 02:51:38 PM,5TH ST/SHIPLEY ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7798285228536, -122.402840617488)",160481969-73 +123390110,85,12113000,Medical Incident,12/04/2012,12/04/2012,12/04/2012 09:56:13 AM,12/04/2012 09:57:56 AM,12/04/2012 09:58:28 AM,12/04/2012 09:58:52 AM,12/04/2012 10:02:43 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,No Merit,12/04/2012 10:19:04 AM,200 Block of KING ST,SF,94107,B03,8,2171,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",123390110-85 +102280147,B03,10071750,Alarms,08/16/2010,08/16/2010,08/16/2010 11:34:13 AM,08/16/2010 11:35:20 AM,08/16/2010 11:35:27 AM,08/16/2010 11:35:38 AM,08/16/2010 11:37:54 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Fire,08/16/2010 11:43:48 AM,100 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,false,,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7934447817207, -122.395879334268)",102280147-B03 +120280004,79,12009258,Medical Incident,01/28/2012,01/27/2012,01/28/2012 12:13:20 AM,01/28/2012 12:16:08 AM,01/28/2012 12:17:06 AM,01/28/2012 12:17:13 AM,01/28/2012 12:22:20 AM,01/28/2012 12:33:54 AM,01/28/2012 12:50:56 AM,Code 2 Transport,01/28/2012 01:30:08 AM,0 Block of NAVAJO AVE,SF,94112,B09,15,8332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7200829725539, -122.443857351608)",120280004-79 +120360173,T09,12011984,Citizen Assist / Service Call,02/05/2012,02/05/2012,02/05/2012 11:55:55 AM,02/05/2012 11:57:34 AM,02/05/2012 11:57:39 AM,02/05/2012 12:03:36 PM,02/05/2012 12:04:05 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Fire,02/05/2012 12:12:39 PM,0 Block of MIDDLE POINT RD,SF,94124,B10,25,6553,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7365156230475, -122.379343052197)",120360173-T09 +113600222,87,11119687,Medical Incident,12/26/2011,12/26/2011,12/26/2011 04:59:16 PM,12/26/2011 05:00:17 PM,12/26/2011 05:00:36 PM,12/26/2011 05:00:41 PM,12/26/2011 05:11:04 PM,12/26/2011 05:15:56 PM,12/26/2011 05:47:43 PM,Code 2 Transport,12/26/2011 06:01:18 PM,3300 Block of 24TH ST,SF,94110,B06,11,5525,3,3,3,false,,1,MEDIC,2,6,9,Mission,"(37.7522767133494, -122.418736723254)",113600222-87 +120090402,T10,12003298,Structure Fire,01/09/2012,01/09/2012,01/09/2012 10:06:26 PM,01/09/2012 10:07:51 PM,01/09/2012 10:08:06 PM,01/09/2012 10:09:25 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/09/2012 10:19:44 PM,800 Block of MASONIC AVE,SF,94117,B05,21,4464,3,3,3,false,Fire,1,TRUCK,7,5,5,Lone Mountain/USF,"(37.7734740617824, -122.445928715958)",120090402-T10 +120290184,B02,12009746,Alarms,01/29/2012,01/29/2012,01/29/2012 03:38:28 PM,01/29/2012 03:39:46 PM,01/29/2012 03:39:56 PM,01/29/2012 03:41:53 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 03:44:05 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",120290184-B02 +111970277,E08,11065091,Medical Incident,07/16/2011,07/16/2011,07/16/2011 06:19:26 PM,07/16/2011 06:20:04 PM,07/16/2011 06:20:48 PM,07/16/2011 06:21:48 PM,07/16/2011 06:24:16 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 06:26:09 PM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",111970277-E08 +160891939,AM02,16035345,Medical Incident,03/29/2016,03/29/2016,03/29/2016 01:19:10 PM,03/29/2016 01:19:10 PM,03/29/2016 01:21:13 PM,03/29/2016 01:21:40 PM,03/29/2016 01:33:52 PM,03/29/2016 01:52:56 PM,03/29/2016 02:31:29 PM,Code 2 Transport,03/29/2016 03:05:44 PM,SUNSET BL/OCEAN AV,San Francisco,94132,B08,19,7614,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Sunset/Parkside,"(37.731909880446, -122.493718802216)",160891939-AM02 +111810035,55,11059617,Medical Incident,06/30/2011,06/29/2011,06/30/2011 02:42:27 AM,06/30/2011 02:47:55 AM,06/30/2011 02:48:29 AM,06/30/2011 02:48:34 AM,06/30/2011 02:58:35 AM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Patient Declined Transport,06/30/2011 03:02:35 AM,500 Block of MARKET ST,SF,94104,B01,13,1164,1,1,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905865694353, -122.399877480803)",111810035-55 +132600082,E36,13087885,Administrative,09/17/2013,09/16/2013,09/17/2013 06:29:32 AM,09/17/2013 06:29:41 AM,09/17/2013 06:29:53 AM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 06:30:36 AM,100 Block of OAK ST,SF,94102,B02,36,3266,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",132600082-E36 +160270495,85,16010555,Medical Incident,01/27/2016,01/26/2016,01/27/2016 06:47:43 AM,01/27/2016 06:49:46 AM,01/27/2016 06:49:57 AM,01/27/2016 06:50:08 AM,01/27/2016 07:06:17 AM,01/27/2016 07:26:06 AM,01/27/2016 07:51:38 AM,Code 2 Transport,01/27/2016 08:36:23 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",160270495-85 +120490270,B06,12016295,Structure Fire,02/18/2012,02/18/2012,02/18/2012 05:45:41 PM,02/18/2012 05:46:43 PM,02/18/2012 05:47:06 PM,02/18/2012 05:48:41 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Other,02/18/2012 05:51:12 PM,1600 Block of INGALLS ST,SF,94124,B10,17,6572,3,3,3,false,Fire,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.7288306921005, -122.384331312842)",120490270-B06 +111760348,54,11058154,Medical Incident,06/25/2011,06/25/2011,06/25/2011 08:04:48 PM,06/25/2011 08:06:37 PM,06/25/2011 08:06:59 PM,06/25/2011 08:08:53 PM,06/25/2011 08:19:53 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Unable to Locate,06/25/2011 08:32:35 PM,16TH ST/GUERRERO ST,SF,94103,B02,6,5235,1,1,2,true,,1,MEDIC,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",111760348-54 +130750282,E06,13025118,Structure Fire,03/16/2013,03/16/2013,03/16/2013 06:38:37 PM,03/16/2013 06:39:41 PM,03/16/2013 06:40:15 PM,03/16/2013 06:41:18 PM,03/16/2013 06:42:47 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 06:53:34 PM,1900 Block of 15TH ST,SF,94114,B02,6,5227,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7661763079166, -122.427142652668)",130750282-E06 +120830109,E34,12027504,Medical Incident,03/23/2012,03/23/2012,03/23/2012 10:01:21 AM,03/23/2012 10:03:20 AM,03/23/2012 10:03:47 AM,03/23/2012 10:04:15 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 10:11:06 AM,800 Block of 47TH AVE,SF,94121,B07,34,7277,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7724297631777, -122.507750347312)",120830109-E34 +160690853,54,16027384,Medical Incident,03/09/2016,03/09/2016,03/09/2016 09:04:08 AM,03/09/2016 09:05:29 AM,03/09/2016 09:09:43 AM,03/09/2016 09:09:51 AM,03/09/2016 09:45:27 AM,03/09/2016 10:01:55 AM,03/09/2016 10:08:03 AM,Code 2 Transport,03/09/2016 11:09:53 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160690853-54 +103620331,KM15,10116243,Medical Incident,12/28/2010,12/28/2010,12/28/2010 09:18:03 PM,12/28/2010 09:18:11 PM,12/28/2010 09:19:09 PM,12/28/2010 09:19:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Patient Declined Transport,12/28/2010 09:29:15 PM,300 Block of 8TH AVE,SF,94118,B07,31,7127,3,3,3,false,,1,PRIVATE,1,7,1,Inner Richmond,"(37.7818900670733, -122.466425679428)",103620331-KM15 +73140294,T18,7090409,Other,11/10/2007,11/10/2007,11/10/2007 05:35:51 PM,11/10/2007 05:37:22 PM,11/10/2007 05:37:27 PM,11/10/2007 05:39:35 PM,11/10/2007 05:47:26 PM,04/25/2016 03:36:57 PM,04/25/2016 03:36:57 PM,Other,11/10/2007 06:04:37 PM,4200 Block of LAWTON ST,SF,94122,B08,23,7724,3,3,3,false,,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7566298402299, -122.508357460194)",073140294-T18 +160142653,KM02,16005651,Medical Incident,01/14/2016,01/14/2016,01/14/2016 04:47:38 PM,01/14/2016 04:49:07 PM,01/14/2016 04:49:20 PM,01/14/2016 04:52:47 PM,01/14/2016 04:52:47 PM,01/14/2016 04:58:07 PM,01/14/2016 05:23:54 PM,Code 3 Transport,01/14/2016 07:37:48 PM,400 Block of PARNASSUS AVE,San Francisco,94122,B05,12,5155,E,E,3,false,Non Life-threatening,1,PRIVATE,3,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",160142653-KM02 +160853533,75,16033951,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:28:10 PM,03/25/2016 08:28:32 PM,03/25/2016 08:28:51 PM,03/25/2016 08:28:58 PM,03/25/2016 08:40:15 PM,03/25/2016 08:49:17 PM,03/25/2016 09:19:41 PM,Code 2 Transport,03/25/2016 10:10:02 PM,400 Block of NEVADA ST,San Francisco,94110,B10,32,5736,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Bernal Heights,"(37.7363710737067, -122.411602118744)",160853533-75 +160483638,KM07,16019510,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:31:38 PM,02/17/2016 08:31:38 PM,02/17/2016 08:31:54 PM,02/17/2016 08:33:06 PM,02/17/2016 08:35:35 PM,02/17/2016 08:46:19 PM,02/17/2016 08:51:10 PM,Code 2 Transport,02/17/2016 09:18:11 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160483638-KM07 +160020012,67,16000556,Medical Incident,01/02/2016,01/01/2016,01/02/2016 12:06:07 AM,01/02/2016 12:06:07 AM,01/02/2016 12:08:57 AM,01/02/2016 12:09:06 AM,01/02/2016 12:13:08 AM,01/02/2016 12:26:54 AM,01/02/2016 12:45:57 AM,Code 2 Transport,01/02/2016 01:28:43 AM,BROADWAY/ROWLAND ST,San Francisco,94133,B01,13,1231,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.7978680155995, -122.404699107818)",160020012-67 +122620294,58,12086619,Medical Incident,09/18/2012,09/18/2012,09/18/2012 06:53:09 PM,09/18/2012 06:55:06 PM,09/18/2012 06:55:42 PM,09/18/2012 06:55:48 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,04/25/2016 01:56:43 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",122620294-58 +120420350,E11,12014177,Outside Fire,02/11/2012,02/11/2012,02/11/2012 08:13:55 PM,02/11/2012 08:17:43 PM,02/11/2012 08:18:34 PM,02/11/2012 08:19:37 PM,02/11/2012 08:21:42 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/11/2012 08:27:32 PM,1100 Block of GUERRERO ST,SF,94110,B06,11,5524,3,3,3,true,Fire,1,ENGINE,1,6,8,Mission,"(37.7527637339649, -122.423063371439)",120420350-E11 +121520184,87,12050340,Medical Incident,05/31/2012,05/31/2012,05/31/2012 01:39:13 PM,05/31/2012 01:41:53 PM,05/31/2012 01:42:45 PM,05/31/2012 01:43:54 PM,04/25/2016 01:58:26 PM,05/31/2012 02:09:44 PM,05/31/2012 02:38:13 PM,Other,05/31/2012 02:55:37 PM,100 Block of TURK ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",121520184-87 +160091322,65,16003613,Medical Incident,01/09/2016,01/09/2016,01/09/2016 11:28:03 AM,01/09/2016 11:29:36 AM,01/09/2016 11:30:01 AM,01/09/2016 11:30:14 AM,01/09/2016 11:35:42 AM,01/09/2016 12:06:21 PM,01/09/2016 12:20:07 PM,Code 2 Transport,01/09/2016 01:21:52 PM,2500 Block of LAKE ST,San Francisco,94121,B07,14,7217,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7857278220353, -122.486759035756)",160091322-65 +122560045,E02,12084533,Medical Incident,09/12/2012,09/11/2012,09/12/2012 04:32:01 AM,09/12/2012 04:34:40 AM,09/12/2012 04:36:44 AM,09/12/2012 04:38:46 AM,09/12/2012 04:39:35 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 04:52:53 AM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",122560045-E02 +112580219,B03,11085071,Alarms,09/15/2011,09/15/2011,09/15/2011 02:22:27 PM,09/15/2011 02:22:50 PM,09/15/2011 02:23:02 PM,09/15/2011 02:23:11 PM,09/15/2011 02:26:15 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/15/2011 02:55:21 PM,300 Block of BEALE ST,SF,94105,B03,35,2122,3,3,3,false,,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7880321954757, -122.392000314933)",112580219-B03 +120900181,E07,12029790,Structure Fire,03/30/2012,03/30/2012,03/30/2012 12:55:34 PM,03/30/2012 12:55:35 PM,03/30/2012 12:55:57 PM,03/30/2012 12:57:00 PM,03/30/2012 12:58:12 PM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,Other,03/30/2012 12:58:38 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",120900181-E07 +133400198,RC2,13115243,Medical Incident,12/06/2013,12/06/2013,12/06/2013 12:59:54 PM,12/06/2013 01:00:48 PM,12/06/2013 01:00:56 PM,12/06/2013 01:01:48 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 01:05:29 PM,1200 Block of 26TH AVE,SF,94122,B08,22,7452,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7641771031678, -122.484623655457)",133400198-RC2 +123430323,68,12114744,Medical Incident,12/08/2012,12/08/2012,12/08/2012 07:22:57 PM,12/08/2012 07:25:18 PM,12/08/2012 07:25:31 PM,12/08/2012 07:25:42 PM,12/08/2012 07:33:52 PM,12/08/2012 07:44:55 PM,12/08/2012 07:52:37 PM,Code 2 Transport,12/08/2012 08:15:54 PM,600 Block of JONES ST,SF,94109,B01,3,1462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7870479104601, -122.413296458789)",123430323-68 +132940033,E20,13099878,Medical Incident,10/21/2013,10/20/2013,10/21/2013 03:27:18 AM,10/21/2013 03:31:18 AM,10/21/2013 03:31:36 AM,10/21/2013 03:34:01 AM,10/21/2013 03:37:40 AM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 03:40:22 AM,600 Block of CLARENDON AVE,SF,94131,B08,20,5367,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7519950375446, -122.458952047787)",132940033-E20 +110280125,RS2,11009171,Medical Incident,01/28/2011,01/28/2011,01/28/2011 11:00:37 AM,01/28/2011 11:01:46 AM,01/28/2011 11:02:13 AM,01/28/2011 11:02:28 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 11:07:31 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,false,,1,RESCUE SQUAD,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",110280125-RS2 +103190233,81,10102287,Medical Incident,11/15/2010,11/15/2010,11/15/2010 02:35:24 PM,11/15/2010 02:35:29 PM,11/15/2010 02:35:54 PM,11/15/2010 02:36:27 PM,11/15/2010 02:43:32 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 02:44:18 PM,22ND ST/TREAT AV,SF,94110,B06,7,5473,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7557659155563, -122.4132940518)",103190233-81 +113280121,T02,11108834,Structure Fire,11/24/2011,11/24/2011,11/24/2011 11:26:11 AM,11/24/2011 11:27:09 AM,11/24/2011 11:27:21 AM,11/24/2011 11:28:38 AM,11/24/2011 11:31:17 AM,04/25/2016 02:01:29 PM,04/25/2016 02:01:29 PM,Other,11/24/2011 11:45:59 AM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,false,,1,TRUCK,7,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",113280121-T02 +122040341,55,12067948,Medical Incident,07/22/2012,07/22/2012,07/22/2012 07:35:43 PM,07/22/2012 07:36:42 PM,07/22/2012 07:37:18 PM,07/22/2012 07:37:48 PM,07/22/2012 07:42:44 PM,07/22/2012 07:52:13 PM,07/22/2012 08:04:49 PM,Code 2 Transport,07/22/2012 08:26:29 PM,100 Block of CASHMERE ST,SF,94124,B10,25,6522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",122040341-55 +122220268,E13,12073657,Explosion,08/09/2012,08/09/2012,08/09/2012 04:35:57 PM,08/09/2012 04:36:48 PM,08/09/2012 04:38:03 PM,08/09/2012 04:38:54 PM,08/09/2012 04:41:02 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,Other,08/09/2012 04:47:47 PM,MONTGOMERY ST/BUSH ST,SF,94104,B01,13,1235,3,3,3,true,Fire,1,ENGINE,1,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",122220268-E13 +160221306,82,16008734,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:01:48 AM,01/22/2016 11:03:55 AM,01/22/2016 11:07:10 AM,01/22/2016 11:07:24 AM,01/22/2016 11:16:43 AM,01/22/2016 11:25:54 AM,01/22/2016 12:00:22 PM,Code 2 Transport,01/22/2016 12:33:32 PM,1100 Block of 9TH AVE,San Francisco,94122,B08,22,7333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",160221306-82 +112820005,86,11093204,Medical Incident,10/09/2011,10/08/2011,10/09/2011 12:10:08 AM,10/09/2011 12:13:19 AM,10/09/2011 12:14:18 AM,10/09/2011 12:15:21 AM,10/09/2011 12:30:39 AM,10/09/2011 12:37:51 AM,10/09/2011 01:05:01 AM,Code 2 Transport,10/09/2011 01:10:34 AM,OCEAN AV/LAGUNITAS DR,SF,94132,B08,19,8452,1,1,2,true,,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7321200001213, -122.474206344886)",112820005-86 +160632709,86,16025165,Medical Incident,03/03/2016,03/03/2016,03/03/2016 04:59:33 PM,03/03/2016 05:01:12 PM,03/03/2016 05:01:36 PM,03/03/2016 05:01:59 PM,03/03/2016 05:19:12 PM,03/03/2016 05:36:45 PM,03/03/2016 06:07:34 PM,Code 2 Transport,03/03/2016 06:28:39 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160632709-86 +122810037,E13,12092873,Medical Incident,10/07/2012,10/06/2012,10/07/2012 02:07:17 AM,10/07/2012 02:07:39 AM,10/07/2012 02:09:48 AM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/07/2012 02:28:19 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.7981219270604, -122.405087523335)",122810037-E13 +122680303,85,12088634,Structure Fire,09/24/2012,09/24/2012,09/24/2012 06:28:19 PM,09/24/2012 06:29:13 PM,09/24/2012 06:29:59 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 06:39:26 PM,800 Block of POST ST,SF,94109,B04,3,1543,3,3,3,true,Fire,1,MEDIC,10,4,3,Nob Hill,"(37.7874037664371, -122.415827994726)",122680303-85 +110450210,64,11014944,Medical Incident,02/14/2011,02/14/2011,02/14/2011 02:20:03 PM,02/14/2011 02:22:02 PM,02/14/2011 02:22:23 PM,02/14/2011 02:23:18 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 02:28:56 PM,1000 Block of BRAZIL AVE,SF,94112,B09,43,6163,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7207283438447, -122.426391940904)",110450210-64 +132450109,89,13082620,Medical Incident,09/02/2013,09/02/2013,09/02/2013 09:13:15 AM,09/02/2013 09:14:26 AM,09/02/2013 09:14:40 AM,09/02/2013 09:14:51 AM,09/02/2013 09:17:01 AM,09/02/2013 09:34:23 AM,09/02/2013 09:39:55 AM,Code 2 Transport,09/02/2013 10:15:37 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",132450109-89 +132870119,AM16,13097563,Medical Incident,10/14/2013,10/14/2013,10/14/2013 10:04:05 AM,10/14/2013 10:08:32 AM,10/14/2013 10:09:09 AM,10/14/2013 10:09:58 AM,10/14/2013 10:18:51 AM,10/14/2013 10:33:21 AM,10/14/2013 11:02:01 AM,Code 2 Transport,10/14/2013 11:28:30 AM,0 Block of DE LONG ST,SF,94112,B09,33,8357,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7096061746136, -122.459869387331)",132870119-AM16 +140660178,T09,14022297,Structure Fire,03/07/2014,03/07/2014,03/07/2014 11:50:05 AM,03/07/2014 11:50:35 AM,03/07/2014 11:51:11 AM,03/07/2014 11:52:04 AM,03/07/2014 11:57:05 AM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Fire,03/07/2014 12:03:36 PM,1200 Block of EGBERT AVE,SAN FRANCISCO,94124,B10,17,6615,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7210363669692, -122.389871475458)",140660178-T09 +120440253,KM02,12014763,Medical Incident,02/13/2012,02/13/2012,02/13/2012 06:05:48 PM,02/13/2012 06:07:46 PM,02/13/2012 06:12:02 PM,02/13/2012 06:12:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 06:20:25 PM,200 Block of MAIN ST,SF,94105,B03,35,2117,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.78995234675, -122.392682318412)",120440253-KM02 +133240085,E07,13109940,Medical Incident,11/20/2013,11/19/2013,11/20/2013 07:28:42 AM,11/20/2013 07:31:29 AM,11/20/2013 07:37:22 AM,11/20/2013 07:38:51 AM,11/20/2013 07:51:49 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 08:16:56 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133240085-E07 +102260201,E02,10071167,Medical Incident,08/14/2010,08/14/2010,08/14/2010 02:31:03 PM,08/14/2010 02:31:51 PM,08/14/2010 02:32:22 PM,08/14/2010 02:33:37 PM,08/14/2010 02:34:39 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Medical Examiner,08/14/2010 03:32:54 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,E,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",102260201-E02 +103150194,64,10101002,Medical Incident,11/11/2010,11/11/2010,11/11/2010 02:41:31 PM,11/11/2010 02:43:33 PM,11/11/2010 02:44:01 PM,04/25/2016 02:07:39 PM,11/11/2010 02:52:47 PM,11/11/2010 03:04:00 PM,11/11/2010 03:14:46 PM,Code 2 Transport,11/11/2010 03:31:03 PM,1800 Block of MISSION ST,SF,94103,B02,36,5279,1,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",103150194-64 +160083986,70,16003457,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:55:38 PM,01/08/2016 10:55:38 PM,01/08/2016 10:56:25 PM,01/08/2016 10:56:46 PM,01/08/2016 11:04:26 PM,01/08/2016 11:19:19 PM,01/08/2016 11:25:44 PM,Code 2 Transport,01/08/2016 11:58:58 PM,JONES ST/FRANCISCO ST,San Francisco,94133,B01,28,1434,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8042768153063, -122.41669632739)",160083986-70 +111580212,KM04,11052275,Medical Incident,06/07/2011,06/07/2011,06/07/2011 02:27:01 PM,06/07/2011 02:28:50 PM,06/07/2011 02:50:51 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,04/25/2016 02:04:16 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",111580212-KM04 +113220331,E08,11107082,Medical Incident,11/18/2011,11/18/2011,11/18/2011 08:04:47 PM,11/18/2011 08:06:23 PM,11/18/2011 08:06:39 PM,11/18/2011 08:09:37 PM,11/18/2011 08:10:31 PM,04/25/2016 02:01:34 PM,04/25/2016 02:01:34 PM,No Merit,11/18/2011 08:14:11 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",113220331-E08 +123450074,RS2,12115247,Traffic Collision,12/10/2012,12/09/2012,12/10/2012 07:01:15 AM,12/10/2012 07:01:33 AM,12/10/2012 07:02:11 AM,12/10/2012 07:06:21 AM,12/10/2012 07:09:53 AM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/10/2012 07:31:52 AM,ALABAMA ST/RIPLEY ST,SF,94110,B06,9,5667,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,6,9,Bernal Heights,"(37.7443248592068, -122.410388561137)",123450074-RS2 +130680403,E23,13022866,Vehicle Fire,03/09/2013,03/09/2013,03/09/2013 10:43:15 PM,03/09/2013 10:45:19 PM,03/09/2013 10:45:27 PM,04/25/2016 01:53:54 PM,03/09/2013 10:49:59 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/09/2013 10:59:42 PM,37TH AV/KIRKHAM ST,SF,94122,B08,23,7571,3,3,3,true,Fire,1,ENGINE,1,8,4,Sunset/Parkside,"(37.758981122342, -122.496152482485)",130680403-E23 +121380049,89,12045756,Medical Incident,05/17/2012,05/16/2012,05/17/2012 04:45:14 AM,05/17/2012 04:45:14 AM,05/17/2012 04:46:18 AM,05/17/2012 04:46:33 AM,05/17/2012 04:49:03 AM,05/17/2012 05:05:24 AM,05/17/2012 05:11:34 AM,Code 3 Transport,05/17/2012 06:05:29 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",121380049-89 +160823672,86,16032742,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:53:16 PM,03/22/2016 08:56:21 PM,03/22/2016 08:56:42 PM,03/22/2016 08:56:54 PM,03/22/2016 09:15:46 PM,03/22/2016 09:21:02 PM,03/22/2016 09:48:15 PM,Code 2 Transport,03/22/2016 10:30:28 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160823672-86 +140030183,B02,14001033,Medical Incident,01/03/2014,01/03/2014,01/03/2014 11:31:43 AM,01/03/2014 11:34:24 AM,01/03/2014 11:38:53 AM,01/03/2014 11:39:28 AM,01/03/2014 11:42:10 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/03/2014 11:50:06 AM,URANUS TR/17TH ST,SF,94117,B05,12,5255,,3,3,false,Potentially Life-Threatening,1,CHIEF,2,5,8,Castro/Upper Market,"(37.7618804430412, -122.445309434045)",140030183-B02 +132530248,54,13085536,Medical Incident,09/10/2013,09/10/2013,09/10/2013 02:38:30 PM,09/10/2013 02:44:18 PM,09/10/2013 02:44:26 PM,09/10/2013 02:45:19 PM,09/10/2013 02:57:12 PM,09/10/2013 03:08:45 PM,09/10/2013 03:24:08 PM,Code 2 Transport,09/10/2013 03:49:06 PM,21ST ST/POTRERO AV,SF,94110,B10,7,2553,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7577620587984, -122.406799738992)",132530248-54 +121880255,T01,12062694,Alarms,07/06/2012,07/06/2012,07/06/2012 03:44:01 PM,07/06/2012 03:44:39 PM,07/06/2012 03:44:56 PM,07/06/2012 03:46:36 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/06/2012 03:48:20 PM,0 Block of 8TH ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7778103407202, -122.413699499217)",121880255-T01 +121520216,88,12050366,Medical Incident,05/31/2012,05/31/2012,05/31/2012 03:13:09 PM,05/31/2012 03:15:17 PM,05/31/2012 03:16:26 PM,05/31/2012 03:18:06 PM,05/31/2012 03:24:13 PM,05/31/2012 03:51:12 PM,05/31/2012 04:19:16 PM,Code 2 Transport,05/31/2012 04:38:18 PM,0 Block of MADDUX AVE,SF,94124,B10,42,6445,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7348036979308, -122.398206619816)",121520216-88 +132210263,77,13074694,Medical Incident,08/09/2013,08/09/2013,08/09/2013 05:19:32 PM,08/09/2013 05:19:52 PM,08/09/2013 05:28:06 PM,08/09/2013 05:28:13 PM,08/09/2013 05:40:10 PM,08/09/2013 05:45:56 PM,08/09/2013 06:03:52 PM,Code 2 Transport,08/09/2013 06:14:36 PM,200 Block of VIDAL DR,SF,94132,B08,19,8583,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.719201896577, -122.484666499759)",132210263-77 +130440084,E44,13014864,Medical Incident,02/13/2013,02/13/2013,02/13/2013 08:10:11 AM,02/13/2013 08:10:42 AM,02/13/2013 08:44:02 AM,02/13/2013 08:44:27 AM,02/13/2013 08:46:06 AM,02/13/2013 08:48:54 AM,04/25/2016 01:54:19 PM,Other,02/13/2013 09:42:04 AM,600 Block of VELASCO AVE,SF,94134,B09,43,6247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7096419146896, -122.418055998257)",130440084-E44 +160732292,AM16,16029056,Medical Incident,03/13/2016,03/13/2016,03/13/2016 06:01:39 PM,03/13/2016 06:02:57 PM,03/13/2016 06:03:12 PM,03/13/2016 06:03:50 PM,03/13/2016 06:13:15 PM,03/13/2016 06:24:15 PM,03/13/2016 06:54:30 PM,Code 2 Transport,03/13/2016 07:21:49 PM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",160732292-AM16 +160062736,86,16002509,Medical Incident,01/06/2016,01/06/2016,01/06/2016 05:16:19 PM,01/06/2016 05:16:19 PM,01/06/2016 05:21:07 PM,01/06/2016 05:21:19 PM,01/06/2016 05:30:19 PM,01/06/2016 05:48:56 PM,01/06/2016 06:06:47 PM,Code 2 Transport,01/06/2016 06:59:53 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160062736-86 +120400315,E43,12013452,Medical Incident,02/09/2012,02/09/2012,02/09/2012 07:32:40 PM,02/09/2012 07:34:44 PM,02/09/2012 07:35:25 PM,02/09/2012 07:36:13 PM,02/09/2012 07:38:42 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/09/2012 07:47:43 PM,800 Block of GENEVA AVE,SF,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7168169212828, -122.441408157149)",120400315-E43 +133090165,T19,13105045,Alarms,11/05/2013,11/05/2013,11/05/2013 11:39:24 AM,11/05/2013 11:40:50 AM,11/05/2013 11:43:57 AM,04/25/2016 01:49:54 PM,11/05/2013 11:46:14 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 11:48:35 AM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",133090165-T19 +122720057,81,12089648,Medical Incident,09/28/2012,09/27/2012,09/28/2012 07:11:00 AM,09/28/2012 07:12:21 AM,09/28/2012 07:13:14 AM,09/28/2012 07:13:22 AM,09/28/2012 07:21:26 AM,09/28/2012 07:36:42 AM,09/28/2012 08:00:11 AM,Code 2 Transport,09/28/2012 08:20:17 AM,0 Block of JULES AVE,SF,94112,B09,33,8462,1,1,2,false,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.719124726717, -122.461301532222)",122720057-81 +120580193,E18,12019127,Alarms,02/27/2012,02/27/2012,02/27/2012 01:37:16 PM,02/27/2012 01:40:07 PM,02/27/2012 01:40:15 PM,02/27/2012 01:41:54 PM,02/27/2012 01:45:37 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/27/2012 01:47:00 PM,2000 Block of VICENTE ST,SF,94116,B08,18,7547,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7386791202778, -122.4888178721)",120580193-E18 +121450095,E41,12048065,Citizen Assist / Service Call,05/24/2012,05/24/2012,05/24/2012 09:44:56 AM,05/24/2012 09:47:55 AM,05/24/2012 09:48:12 AM,05/24/2012 09:49:16 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 10:00:59 AM,2300 Block of VAN NESS AVE,SF,94123,B04,41,3151,3,3,3,false,Alarm,1,ENGINE,1,4,2,Marina,"(37.7971300527187, -122.423869880264)",121450095-E41 +132820147,72,13095925,Medical Incident,10/09/2013,10/09/2013,10/09/2013 10:23:26 AM,10/09/2013 10:25:15 AM,10/09/2013 10:28:01 AM,10/09/2013 10:28:22 AM,10/09/2013 10:40:15 AM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Medical Examiner,10/09/2013 11:33:40 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",132820147-72 +160671099,65,16026701,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:07:21 AM,03/07/2016 11:08:09 AM,03/07/2016 11:09:03 AM,03/07/2016 11:10:08 AM,03/07/2016 11:16:41 AM,03/07/2016 11:35:14 AM,03/07/2016 12:06:01 PM,Code 2 Transport,03/07/2016 12:40:51 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",160671099-65 +130950222,KM09,13031841,Medical Incident,04/05/2013,04/05/2013,04/05/2013 02:02:02 PM,04/05/2013 02:02:36 PM,04/05/2013 02:03:44 PM,04/05/2013 02:04:31 PM,04/05/2013 02:20:01 PM,04/05/2013 02:51:39 PM,04/05/2013 02:51:53 PM,Code 2 Transport,04/05/2013 03:23:27 PM,22ND ST/BRYANT ST,SF,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7559984420071, -122.409433069774)",130950222-KM09 +120650063,79,12021391,Medical Incident,03/05/2012,03/04/2012,03/05/2012 06:39:42 AM,03/05/2012 06:40:55 AM,03/05/2012 06:42:18 AM,03/05/2012 06:42:52 AM,03/05/2012 06:52:48 AM,03/05/2012 07:12:46 AM,03/05/2012 07:20:30 AM,Code 2 Transport,03/05/2012 07:43:58 AM,100 Block of JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825297445725, -122.412384547628)",120650063-79 +110910040,57,11030025,Medical Incident,04/01/2011,03/31/2011,04/01/2011 02:14:43 AM,04/01/2011 02:14:43 AM,04/01/2011 02:15:34 AM,04/01/2011 02:16:05 AM,04/01/2011 02:17:41 AM,04/01/2011 02:32:42 AM,04/01/2011 02:36:42 AM,Code 2 Transport,04/01/2011 03:08:44 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",110910040-57 +160102646,79,16004133,Medical Incident,01/10/2016,01/10/2016,01/10/2016 05:50:58 PM,01/10/2016 05:53:46 PM,01/10/2016 05:54:03 PM,01/10/2016 05:54:14 PM,01/10/2016 05:59:58 PM,01/10/2016 06:19:36 PM,01/10/2016 06:34:38 PM,Code 2 Transport,01/10/2016 07:08:16 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160102646-79 +160522594,58,16020899,Medical Incident,02/21/2016,02/21/2016,02/21/2016 05:34:51 PM,02/21/2016 05:38:22 PM,02/21/2016 05:38:34 PM,02/21/2016 05:38:48 PM,02/21/2016 05:45:31 PM,02/21/2016 06:07:40 PM,02/21/2016 06:25:14 PM,Code 2 Transport,02/21/2016 06:59:15 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160522594-58 +132490138,T10,13083987,Alarms,09/06/2013,09/06/2013,09/06/2013 11:09:09 AM,09/06/2013 11:10:34 AM,09/06/2013 11:10:48 AM,09/06/2013 11:11:20 AM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/06/2013 11:13:19 AM,100 Block of 2ND AVE,SF,94118,B07,31,7115,3,3,3,true,Alarm,1,TRUCK,3,7,2,Inner Richmond,"(37.7862053016842, -122.46028712472)",132490138-T10 +160263474,65,16010462,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:35:29 PM,01/26/2016 08:35:47 PM,01/26/2016 08:35:59 PM,01/26/2016 08:36:06 PM,01/26/2016 08:40:07 PM,01/26/2016 08:57:09 PM,01/26/2016 09:00:19 PM,Code 2 Transport,01/26/2016 09:35:58 PM,1300 Block of VAN NESS AVE,San Francisco,94109,B04,3,3156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7882889208706, -122.421732731473)",160263474-65 +122960079,E23,12098064,Electrical Hazard,10/22/2012,10/22/2012,10/22/2012 08:38:12 AM,10/22/2012 08:39:44 AM,10/22/2012 08:40:04 AM,10/22/2012 08:41:04 AM,10/22/2012 08:46:00 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 08:47:56 AM,48TH AV/RIVERA ST,SF,94116,B08,23,7727,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7454095435597, -122.507030539452)",122960079-E23 +160531174,KM06,16021154,Elevator / Escalator Rescue,02/22/2016,02/22/2016,02/22/2016 10:34:39 AM,02/22/2016 10:36:33 AM,02/22/2016 10:36:59 AM,02/22/2016 10:37:06 AM,02/22/2016 10:43:49 AM,02/22/2016 11:23:35 AM,02/22/2016 11:43:06 AM,Code 2 Transport,02/22/2016 12:56:13 PM,300 Block of MARKET ST,San Francisco,94105,B03,13,2125,3,3,3,false,Alarm,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7919873998129, -122.397733553251)",160531174-KM06 +122520009,E29,12083187,Medical Incident,09/08/2012,09/07/2012,09/08/2012 12:26:04 AM,09/08/2012 12:26:33 AM,09/08/2012 12:27:11 AM,09/08/2012 12:29:10 AM,09/08/2012 12:31:04 AM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/08/2012 12:40:21 AM,0 Block of DIVISION ST,SF,94103,B03,29,2326,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,10,Mission Bay,"(37.7698442258534, -122.403713555238)",122520009-E29 +131030168,KM09,13034568,Medical Incident,04/13/2013,04/13/2013,04/13/2013 12:23:57 PM,04/13/2013 12:25:36 PM,04/13/2013 12:26:25 PM,04/13/2013 12:27:06 PM,04/13/2013 12:34:35 PM,04/13/2013 12:54:20 PM,04/13/2013 01:15:53 PM,Code 2 Transport,04/13/2013 01:49:03 PM,1600 Block of ALABAMA ST,SF,94110,B06,9,5666,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7466283742569, -122.410660879834)",131030168-KM09 +130680334,E33,13022806,Medical Incident,03/09/2013,03/09/2013,03/09/2013 07:12:00 PM,03/09/2013 07:12:44 PM,03/09/2013 07:13:03 PM,03/09/2013 07:14:37 PM,03/09/2013 07:17:11 PM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,Other,03/09/2013 07:33:28 PM,5600 Block of MISSION ST,SF,94112,B09,33,6211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7110467368503, -122.446989356824)",130680334-E33 +121670127,86,12055346,Medical Incident,06/15/2012,06/15/2012,06/15/2012 11:15:35 AM,06/15/2012 11:17:16 AM,06/15/2012 11:17:42 AM,06/15/2012 11:18:47 AM,06/15/2012 11:19:22 AM,06/15/2012 11:32:44 AM,06/15/2012 11:44:30 AM,Code 2 Transport,06/15/2012 12:10:50 PM,2500 Block of MARIPOSA ST,SF,94110,B02,29,5243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7631695375953, -122.408796075221)",121670127-86 +160754108,60,16029944,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:34:51 PM,03/15/2016 11:36:40 PM,03/15/2016 11:36:55 PM,03/15/2016 11:37:14 PM,03/15/2016 11:44:35 PM,03/15/2016 11:58:22 PM,03/16/2016 12:15:05 AM,Code 2 Transport,03/16/2016 01:01:30 AM,100 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160754108-60 +123580274,RC1,12119946,Medical Incident,12/23/2012,12/23/2012,12/23/2012 06:46:39 PM,12/23/2012 06:47:06 PM,12/23/2012 06:47:59 PM,04/25/2016 01:55:10 PM,12/23/2012 06:52:23 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 06:58:31 PM,BROADWAY/KEARNY ST,SF,94133,B01,13,1231,2,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,North Beach,"(37.7980169557217, -122.40547307119)",123580274-RC1 +140940103,86,14031536,Medical Incident,04/04/2014,04/04/2014,04/04/2014 09:38:01 AM,04/04/2014 09:38:23 AM,04/04/2014 09:38:41 AM,04/04/2014 09:39:07 AM,04/04/2014 09:42:56 AM,04/04/2014 09:50:21 AM,04/04/2014 10:00:53 AM,Code 2 Transport,04/04/2014 10:23:23 AM,1500 Block of MISSION ST,SAN FRANCISCO,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7737629752818, -122.417960394107)",140940103-86 +110660267,65,11021843,Medical Incident,03/07/2011,03/07/2011,03/07/2011 05:55:14 PM,03/07/2011 05:55:58 PM,03/07/2011 05:56:06 PM,03/07/2011 05:56:20 PM,03/07/2011 05:59:11 PM,04/25/2016 02:05:44 PM,03/07/2011 06:34:31 PM,Code 2 Transport,03/07/2011 06:59:38 PM,FULTON ST/LARKIN ST,SF,94102,B02,1,1551,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",110660267-65 +160780056,68,16030848,Medical Incident,03/18/2016,03/17/2016,03/18/2016 12:18:26 AM,03/18/2016 12:18:26 AM,03/18/2016 12:18:36 AM,03/18/2016 12:19:42 AM,03/18/2016 12:54:50 AM,03/18/2016 01:24:36 AM,03/18/2016 01:24:37 AM,Code 2 Transport,03/18/2016 02:28:58 AM,600 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1543,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869955301845, -122.414832699131)",160780056-68 +103640001,E06,10116611,Medical Incident,12/30/2010,12/29/2010,12/30/2010 12:01:17 AM,12/30/2010 12:02:01 AM,12/30/2010 12:03:04 AM,12/30/2010 12:05:06 AM,12/30/2010 12:06:27 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/30/2010 12:08:17 AM,2400 Block of MARKET ST,SF,94114,B05,6,5259,3,3,3,true,,1,ENGINE,2,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",103640001-E06 +112090071,E05,11068918,Alarms,07/28/2011,07/27/2011,07/28/2011 07:48:31 AM,07/28/2011 07:49:17 AM,07/28/2011 07:49:32 AM,07/28/2011 07:51:04 AM,07/28/2011 07:52:17 AM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 07:53:19 AM,1600 Block of TURK ST,SF,94115,B05,5,3643,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.780026750015, -122.436259177468)",112090071-E05 +131870363,79,13063951,Medical Incident,07/06/2013,07/06/2013,07/06/2013 11:49:37 PM,07/06/2013 11:49:43 PM,07/06/2013 11:51:15 PM,07/06/2013 11:51:25 PM,07/06/2013 11:56:41 PM,07/07/2013 12:05:27 AM,07/07/2013 12:24:31 AM,Code 2 Transport,07/07/2013 12:41:49 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",131870363-79 +160641291,79,16025445,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:20:00 AM,03/04/2016 10:20:00 AM,03/04/2016 10:20:26 AM,03/04/2016 10:20:34 AM,03/04/2016 10:47:53 AM,03/04/2016 10:59:47 AM,03/04/2016 11:12:48 AM,Code 2 Transport,03/04/2016 11:47:34 AM,0 Block of CASHMERE ST,San Francisco,94124,B10,25,652,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7356570201695, -122.382731651637)",160641291-79 +110640290,86,11021163,Medical Incident,03/05/2011,03/05/2011,03/05/2011 04:30:43 PM,03/05/2011 04:31:05 PM,03/05/2011 04:31:38 PM,03/05/2011 04:32:15 PM,03/05/2011 04:44:39 PM,03/05/2011 05:00:59 PM,03/05/2011 05:23:11 PM,Code 2 Transport,03/05/2011 05:39:18 PM,0 Block of HARDING RD,SF,94132,B08,19,8713,3,2,2,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7248174091742, -122.497764890771)",110640290-86 +113050278,E07,11101349,Medical Incident,11/01/2011,11/01/2011,11/01/2011 03:05:48 PM,11/01/2011 03:09:38 PM,11/01/2011 03:10:59 PM,04/25/2016 02:01:52 PM,11/01/2011 03:15:07 PM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 03:36:49 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,true,,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",113050278-E07 +113620105,AM02,11120183,Medical Incident,12/28/2011,12/28/2011,12/28/2011 09:42:00 AM,12/28/2011 09:43:36 AM,12/28/2011 09:43:52 AM,12/28/2011 09:44:42 AM,12/28/2011 09:51:30 AM,12/28/2011 10:05:27 AM,12/28/2011 10:38:45 AM,Code 2 Transport,12/28/2011 11:04:00 AM,2300 Block of 27TH AVE,SF,94116,B08,40,7471,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7436095740682, -122.484260166229)",113620105-AM02 +123470051,77,12115907,Medical Incident,12/12/2012,12/11/2012,12/12/2012 05:15:51 AM,12/12/2012 05:17:28 AM,12/12/2012 05:17:56 AM,12/12/2012 05:18:33 AM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,04/25/2016 01:55:21 PM,1400 Block of MARKET ST,SF,94102,B02,36,3219,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",123470051-77 +160473178,65,16019069,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:00:20 PM,02/16/2016 07:00:53 PM,02/16/2016 07:01:00 PM,02/16/2016 07:05:08 PM,02/16/2016 07:07:11 PM,02/16/2016 07:42:30 PM,02/16/2016 07:47:06 PM,Code 3 Transport,02/16/2016 08:28:18 PM,100 Block of 21ST AVE,San Francisco,94121,B07,14,7173,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7850021263357, -122.480861795844)",160473178-65 +140700245,86,14023672,Medical Incident,03/11/2014,03/11/2014,03/11/2014 03:32:20 PM,03/11/2014 03:32:42 PM,03/11/2014 03:53:30 PM,03/11/2014 03:53:38 PM,03/11/2014 04:11:47 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Patient Declined Transport,03/11/2014 04:31:34 PM,2300 Block of 24TH AVE,,94116,B08,40,7461,3,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",140700245-86 +113200409,79,11106472,Medical Incident,11/16/2011,11/16/2011,11/16/2011 10:36:28 PM,11/16/2011 10:39:09 PM,11/16/2011 10:41:49 PM,11/16/2011 10:43:37 PM,11/16/2011 10:45:37 PM,11/16/2011 11:00:32 PM,11/16/2011 11:26:57 PM,Code 2 Transport,11/16/2011 11:32:53 PM,200 Block of GEARY ST,SF,94108,B01,1,1323,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",113200409-79 +110690289,B03,11022781,Structure Fire,03/10/2011,03/10/2011,03/10/2011 05:14:00 PM,03/10/2011 05:14:38 PM,03/10/2011 05:14:59 PM,03/10/2011 05:16:31 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 05:21:48 PM,500 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,false,,1,CHIEF,10,2,8,Mission,"(37.7627513875316, -122.424036887526)",110690289-B03 +102710438,66,10086210,Medical Incident,09/28/2010,09/28/2010,09/28/2010 11:23:08 PM,09/28/2010 11:23:51 PM,09/28/2010 11:24:04 PM,09/28/2010 11:24:18 PM,09/28/2010 11:27:53 PM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Patient Declined Transport,09/28/2010 11:52:39 PM,PIERCE ST/FELL ST,SF,94117,B05,21,3641,3,3,3,true,,1,MEDIC,2,5,5,Hayes Valley,"(37.7744758149032, -122.434294285502)",102710438-66 +121900162,T11,12063291,Alarms,07/08/2012,07/08/2012,07/08/2012 12:54:38 PM,07/08/2012 12:54:38 PM,07/08/2012 12:54:56 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/08/2012 12:56:09 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",121900162-T11 +140810198,E48,14027372,Structure Fire,03/22/2014,03/22/2014,03/22/2014 02:06:28 PM,03/22/2014 02:07:19 PM,03/22/2014 02:07:50 PM,03/22/2014 02:09:45 PM,03/22/2014 02:11:24 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Fire,03/22/2014 02:24:53 PM,500 Block of AVENUE D,TREASURE ISLAN,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,2,None,6,Treasure Island,"(37.8228747821529, -122.371743419371)",140810198-E48 +112360302,RC3,11077988,Traffic Collision,08/24/2011,08/24/2011,08/24/2011 07:28:14 PM,08/24/2011 07:28:29 PM,08/24/2011 07:28:50 PM,08/24/2011 07:33:13 PM,08/24/2011 07:38:15 PM,08/24/2011 07:59:20 PM,08/24/2011 08:20:26 PM,Other,08/24/2011 08:36:01 PM,BACON ST/BAYSHORE BL,SF,94124,B10,42,6451,3,3,3,true,,1,RESCUE CAPTAIN,5,10,10,Portola,"(37.7281019732216, -122.402209197225)",112360302-RC3 +121960238,E28,12065239,Medical Incident,07/14/2012,07/14/2012,07/14/2012 04:06:03 PM,07/14/2012 04:09:31 PM,07/14/2012 04:13:03 PM,07/14/2012 04:14:02 PM,07/14/2012 04:16:30 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/14/2012 04:49:38 PM,600 Block of FILBERT ST,SF,94133,B01,28,1351,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8013244963183, -122.410204322135)",121960238-E28 +103250169,T05,10104173,Structure Fire,11/21/2010,11/21/2010,11/21/2010 12:36:09 PM,11/21/2010 12:37:40 PM,11/21/2010 12:37:51 PM,11/21/2010 12:39:18 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 12:43:16 PM,0 Block of LAGUNA ST,SF,94102,B02,36,3416,3,3,3,false,,1,TRUCK,11,2,8,Hayes Valley,"(37.7713406311126, -122.42516067223)",103250169-T05 +133450437,55,13117209,Medical Incident,12/11/2013,12/11/2013,12/11/2013 09:16:16 PM,12/11/2013 09:18:11 PM,12/11/2013 09:20:06 PM,12/11/2013 09:20:20 PM,12/11/2013 09:30:35 PM,12/11/2013 09:40:44 PM,12/11/2013 09:58:54 PM,Code 2 Transport,12/11/2013 10:15:28 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",133450437-55 +91810384,T03,9053843,Alarms,06/30/2009,06/30/2009,06/30/2009 10:34:29 PM,06/30/2009 10:35:50 PM,06/30/2009 10:35:57 PM,04/25/2016 03:28:08 PM,06/30/2009 10:38:44 PM,04/25/2016 03:28:08 PM,04/25/2016 03:28:08 PM,Other,06/30/2009 10:49:45 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",091810384-T03 +160521411,88,16020790,Medical Incident,02/21/2016,02/21/2016,02/21/2016 11:49:32 AM,02/21/2016 11:50:16 AM,02/21/2016 11:51:01 AM,02/21/2016 11:51:09 AM,02/21/2016 11:58:41 AM,02/21/2016 12:05:23 PM,02/21/2016 12:31:27 PM,Code 2 Transport,02/21/2016 12:55:16 PM,1600 Block of 48TH AVE,San Francisco,94122,B08,23,7724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7556706107482, -122.507670205519)",160521411-88 +111600222,E09,11052917,Medical Incident,06/09/2011,06/09/2011,06/09/2011 04:37:05 PM,06/09/2011 04:37:31 PM,06/09/2011 04:37:39 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 04:42:36 PM,300 Block of TEXAS ST,SF,94107,B03,37,2462,3,3,3,true,,1,ENGINE,3,10,10,Potrero Hill,"(37.7620024484897, -122.395430669934)",111600222-E09 +160603054,RC2,16024043,Medical Incident,02/29/2016,02/29/2016,02/29/2016 07:04:06 PM,02/29/2016 07:04:43 PM,02/29/2016 07:06:20 PM,02/29/2016 07:06:20 PM,02/29/2016 07:08:41 PM,02/29/2016 07:28:38 PM,02/29/2016 07:47:05 PM,Code 3 Transport,02/29/2016 07:47:09 PM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",160603054-RC2 +120200310,E08,12006789,Medical Incident,01/20/2012,01/20/2012,01/20/2012 06:28:32 PM,01/20/2012 06:29:46 PM,01/20/2012 06:30:55 PM,01/20/2012 06:32:55 PM,01/20/2012 06:33:41 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 06:48:01 PM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",120200310-E08 +123350375,T12,12111473,Structure Fire,11/30/2012,11/30/2012,11/30/2012 06:37:34 PM,11/30/2012 06:37:35 PM,11/30/2012 06:38:00 PM,11/30/2012 06:39:01 PM,11/30/2012 06:40:24 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,11/30/2012 07:05:06 PM,100 Block of GRATTAN ST,SF,94117,B05,12,516,3,3,3,false,Alarm,1,TRUCK,1,5,5,Haight Ashbury,"(37.7638803864645, -122.450310275747)",123350375-T12 +140600177,E36,14020248,Medical Incident,03/01/2014,03/01/2014,03/01/2014 12:22:50 PM,03/01/2014 12:23:16 PM,03/01/2014 12:25:23 PM,03/01/2014 12:30:05 PM,03/01/2014 12:33:02 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Code 2 Transport,03/01/2014 12:42:00 PM,1200 Block of MARKET ST,SF,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",140600177-E36 +112870376,E36,11095309,Alarms,10/14/2011,10/14/2011,10/14/2011 07:42:29 PM,10/14/2011 07:43:24 PM,10/14/2011 07:43:40 PM,10/14/2011 07:45:31 PM,10/14/2011 07:47:40 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Other,10/14/2011 08:08:36 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",112870376-E36 +160360068,KM03,16014063,Medical Incident,02/05/2016,02/04/2016,02/05/2016 12:25:34 AM,02/05/2016 12:25:34 AM,02/05/2016 12:25:44 AM,02/05/2016 12:26:12 AM,02/05/2016 12:28:58 AM,02/05/2016 12:48:52 AM,02/05/2016 01:02:18 AM,Code 2 Transport,02/05/2016 01:48:20 AM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160360068-KM03 +122760059,E15,12091018,Medical Incident,10/02/2012,10/01/2012,10/02/2012 05:41:28 AM,10/02/2012 05:42:04 AM,10/02/2012 05:42:14 AM,10/02/2012 05:44:40 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 05:59:47 AM,HOLLOWAY AV/FAXON AV,SF,94112,B09,15,8463,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7218346887531, -122.460224421115)",122760059-E15 +160511378,65,16020444,Medical Incident,02/20/2016,02/20/2016,02/20/2016 11:47:13 AM,02/20/2016 11:47:39 AM,02/20/2016 11:47:58 AM,02/20/2016 11:49:53 AM,02/20/2016 11:55:06 AM,02/20/2016 12:14:46 PM,02/20/2016 12:35:42 PM,Code 2 Transport,02/20/2016 01:11:59 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7769455318934, -122.416807079177)",160511378-65 +160463733,65,16018710,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:01:29 PM,02/15/2016 10:01:29 PM,02/15/2016 10:02:01 PM,02/15/2016 10:03:03 PM,02/15/2016 10:16:43 PM,02/15/2016 10:16:44 PM,02/15/2016 10:26:10 PM,Code 2 Transport,02/15/2016 11:35:12 PM,0 Block of DEDMAN CT,San Francisco,94124,B10,25,6522,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7368469604958, -122.384907106098)",160463733-65 +121870107,E29,12062242,Outside Fire,07/05/2012,07/05/2012,07/05/2012 08:25:37 AM,07/05/2012 08:25:43 AM,07/05/2012 08:26:24 AM,07/05/2012 08:28:33 AM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/05/2012 08:33:22 AM,400 Block of THE EMBARCADERO,SF,94111,B03,35,926,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",121870107-E29 +160762408,74,16030204,Medical Incident,03/16/2016,03/16/2016,03/16/2016 03:27:41 PM,03/16/2016 03:27:41 PM,03/16/2016 03:28:15 PM,03/16/2016 03:28:35 PM,03/16/2016 03:30:55 PM,03/16/2016 03:46:06 PM,03/16/2016 04:00:23 PM,Code 2 Transport,03/16/2016 04:27:50 PM,VALENCIA ST/MARKET ST,San Francisco,94103,B02,36,5115,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7725028174103, -122.422619692886)",160762408-74 +110010572,E07,11000494,Medical Incident,01/01/2011,01/01/2011,01/01/2011 10:35:13 PM,01/01/2011 10:35:58 PM,01/01/2011 10:36:13 PM,01/01/2011 10:38:26 PM,01/01/2011 10:39:41 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/01/2011 10:41:44 PM,17TH ST/MISSION ST,SF,94110,B02,7,5246,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7634292740134, -122.419512736792)",110010572-E07 +113270267,KM05,11108637,Medical Incident,11/23/2011,11/23/2011,11/23/2011 05:25:49 PM,11/23/2011 05:27:28 PM,11/23/2011 05:28:15 PM,04/25/2016 02:01:30 PM,11/23/2011 05:41:10 PM,11/23/2011 05:46:37 PM,11/23/2011 06:07:28 PM,Code 2 Transport,11/23/2011 06:33:10 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",113270267-KM05 +160371264,AM06,16014622,Medical Incident,02/06/2016,02/06/2016,02/06/2016 09:36:58 AM,02/06/2016 09:42:16 AM,02/06/2016 09:43:11 AM,02/06/2016 09:44:30 AM,02/06/2016 10:05:11 AM,02/06/2016 10:05:13 AM,02/06/2016 11:05:10 AM,Other,02/06/2016 11:31:25 AM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160371264-AM06 +133440276,65,13116730,Medical Incident,12/10/2013,12/10/2013,12/10/2013 03:39:30 PM,12/10/2013 03:40:24 PM,12/10/2013 03:47:18 PM,12/10/2013 03:47:27 PM,12/10/2013 03:53:37 PM,12/10/2013 04:12:02 PM,12/10/2013 04:30:12 PM,Code 2 Transport,12/10/2013 04:49:20 PM,TENNESSEE ST/22ND ST,SF,94107,B10,25,2533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7578836645484, -122.389248224824)",133440276-65 +160863832,68,16034384,Medical Incident,03/26/2016,03/26/2016,03/26/2016 10:42:37 PM,03/26/2016 10:42:37 PM,03/26/2016 10:43:40 PM,03/26/2016 10:43:55 PM,03/26/2016 10:54:28 PM,03/26/2016 11:03:33 PM,03/26/2016 11:04:06 PM,Against Medical Advice,03/26/2016 11:51:37 PM,1800 Block of EDDY ST,San Francisco,94115,B05,5,4133,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7806409046944, -122.43808239162)",160863832-68 +140560356,E36,14019036,Medical Incident,02/25/2014,02/25/2014,02/25/2014 09:45:20 PM,02/25/2014 09:47:25 PM,02/25/2014 09:47:41 PM,02/25/2014 09:49:09 PM,02/25/2014 09:51:48 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Code 2 Transport,02/25/2014 10:03:47 PM,1600 Block of MARKET ST,SF,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",140560356-E36 +120600267,B04,12019826,Structure Fire,02/29/2012,02/29/2012,02/29/2012 06:48:47 PM,02/29/2012 06:48:47 PM,02/29/2012 06:48:53 PM,02/29/2012 06:50:39 PM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,Other,02/29/2012 06:55:59 PM,1400 Block of SCOTT ST,SF,94115,B04,5,413,3,3,3,false,Alarm,1,CHIEF,2,4,5,Western Addition,"(37.7831990201184, -122.437672374097)",120600267-B04 +103060379,E03,10098061,Medical Incident,11/02/2010,11/02/2010,11/02/2010 07:30:05 PM,11/02/2010 07:31:29 PM,11/02/2010 07:31:57 PM,11/02/2010 07:32:59 PM,11/02/2010 07:34:56 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 08:10:40 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",103060379-E03 +131530028,RC2,13051697,Medical Incident,06/02/2013,06/01/2013,06/02/2013 02:01:32 AM,06/02/2013 02:02:15 AM,06/02/2013 02:02:54 AM,06/02/2013 02:03:38 AM,06/02/2013 02:09:51 AM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/02/2013 02:22:27 AM,1500 Block of MCALLISTER ST,SF,94117,B05,21,4151,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,5,5,Western Addition,"(37.7778460603024, -122.437520119356)",131530028-RC2 +122700177,E41,12089118,Medical Incident,09/26/2012,09/26/2012,09/26/2012 01:59:13 PM,09/26/2012 01:59:32 PM,09/26/2012 01:59:47 PM,09/26/2012 02:00:53 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/26/2012 02:03:32 PM,2100 Block of POLK ST,SF,94109,B04,41,3126,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7964138831057, -122.421932885069)",122700177-E41 +123540224,E10,12118471,Medical Incident,12/19/2012,12/19/2012,12/19/2012 01:33:28 PM,12/19/2012 01:34:44 PM,12/19/2012 01:34:55 PM,12/19/2012 01:38:02 PM,12/19/2012 01:41:12 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 01:55:17 PM,0 Block of BALBOA ST,SF,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7775132246775, -122.459111622307)",123540224-E10 +160110765,82,16004304,Medical Incident,01/11/2016,01/11/2016,01/11/2016 08:25:22 AM,01/11/2016 08:26:40 AM,01/11/2016 08:27:20 AM,01/11/2016 08:27:28 AM,01/11/2016 08:38:25 AM,01/11/2016 08:43:36 AM,01/11/2016 08:57:12 AM,Code 2 Transport,01/11/2016 09:37:51 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160110765-82 +123430239,T01,12114664,Medical Incident,12/08/2012,12/08/2012,12/08/2012 03:19:02 PM,12/08/2012 03:19:03 PM,12/08/2012 03:19:03 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 03:48:54 PM,0 Block of HOWARD ST,SF,94105,B03,35,2114,2,2,2,false,Non Life-threatening,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7916972492914, -122.392134062208)",123430239-T01 +160753392,AM16,16029864,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:33:31 PM,03/15/2016 07:34:10 PM,03/15/2016 07:34:24 PM,03/15/2016 07:35:13 PM,03/15/2016 07:49:52 PM,03/15/2016 08:00:26 PM,03/15/2016 08:09:53 PM,Code 2 Transport,03/15/2016 08:38:37 PM,600 Block of SUTTER ST,San Francisco,94108,B01,3,1412,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",160753392-AM16 +132250315,E42,13076045,Medical Incident,08/13/2013,08/13/2013,08/13/2013 05:12:22 PM,08/13/2013 05:16:09 PM,08/13/2013 05:17:28 PM,08/13/2013 05:19:04 PM,08/13/2013 05:25:12 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 05:26:52 PM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",132250315-E42 +160602446,89,16023980,Medical Incident,02/29/2016,02/29/2016,02/29/2016 04:24:33 PM,02/29/2016 04:29:33 PM,02/29/2016 04:29:49 PM,02/29/2016 04:31:06 PM,02/29/2016 04:36:13 PM,02/29/2016 04:49:24 PM,02/29/2016 05:04:33 PM,Code 2 Transport,02/29/2016 05:28:52 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3311,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7734563328786, -122.421591110968)",160602446-89 +102640138,KM01,10083509,Medical Incident,09/21/2010,09/21/2010,09/21/2010 11:33:00 AM,09/21/2010 11:34:23 AM,09/21/2010 11:36:13 AM,09/21/2010 11:36:38 AM,09/21/2010 11:48:43 AM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Gone on Arrival,09/21/2010 11:51:42 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,2,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",102640138-KM01 +111850030,E01,11061014,Medical Incident,07/04/2011,07/03/2011,07/04/2011 02:44:54 AM,07/04/2011 02:44:55 AM,07/04/2011 02:45:07 AM,07/04/2011 02:47:40 AM,07/04/2011 02:50:39 AM,04/25/2016 02:03:50 PM,04/25/2016 02:03:50 PM,Other,07/04/2011 02:59:59 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",111850030-E01 +160510445,AM22,16020358,Medical Incident,02/20/2016,02/19/2016,02/20/2016 04:04:38 AM,02/20/2016 04:04:38 AM,02/20/2016 04:04:51 AM,02/20/2016 04:05:19 AM,02/20/2016 04:17:25 AM,02/20/2016 05:19:26 AM,02/20/2016 05:19:48 AM,Code 2 Transport,02/20/2016 05:19:53 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160510445-AM22 +132740321,T15,13093229,Alarms,10/01/2013,10/01/2013,10/01/2013 09:13:04 PM,10/01/2013 09:13:41 PM,10/01/2013 09:15:19 PM,04/25/2016 01:50:29 PM,10/01/2013 09:17:48 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 09:22:41 PM,200 Block of ONEIDA AVE,SF,94112,B09,15,828,3,3,3,false,Alarm,1,TRUCK,3,9,11,Outer Mission,"(37.7218642111521, -122.442994070235)",132740321-T15 +111760299,AM18,11058110,Medical Incident,06/25/2011,06/25/2011,06/25/2011 05:53:33 PM,06/25/2011 05:55:34 PM,06/25/2011 05:56:14 PM,06/25/2011 05:57:05 PM,06/25/2011 06:06:08 PM,06/25/2011 06:22:40 PM,06/25/2011 06:51:26 PM,Code 2 Transport,06/25/2011 07:15:23 PM,300 Block of ELLINGTON AVE,SF,94112,B09,33,8346,1,1,2,false,,1,PRIVATE,1,9,11,Outer Mission,"(37.7124278313923, -122.44655558742)",111760299-AM18 +110250309,T03,11008309,Elevator / Escalator Rescue,01/25/2011,01/25/2011,01/25/2011 03:23:26 PM,01/25/2011 03:25:08 PM,01/25/2011 03:25:20 PM,01/25/2011 03:25:55 PM,01/25/2011 03:28:47 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 04:39:10 PM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,false,,1,TRUCK,1,1,3,Nob Hill,"(37.7896888465146, -122.412913104115)",110250309-T03 +160671073,88,16026695,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:58:25 AM,03/07/2016 10:59:07 AM,03/07/2016 10:59:19 AM,03/07/2016 10:59:39 AM,03/07/2016 11:04:54 AM,03/07/2016 11:21:41 AM,03/07/2016 11:27:07 AM,Code 2 Transport,03/07/2016 11:59:53 AM,400 Block of 3RD AVE,San Francisco,94118,B07,31,7117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7802004442701, -122.46092794533)",160671073-88 +112020354,E33,11066777,Medical Incident,07/21/2011,07/21/2011,07/21/2011 06:31:02 PM,07/21/2011 06:31:42 PM,07/21/2011 06:33:30 PM,07/21/2011 06:35:18 PM,07/21/2011 06:37:52 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,07/21/2011 06:50:57 PM,700 Block of BRUNSWICK ST,SF,94112,B09,33,6214,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7087500759547, -122.44878758765)",112020354-E33 +120930265,88,12030872,Medical Incident,04/02/2012,04/02/2012,04/02/2012 04:04:24 PM,04/02/2012 04:06:37 PM,04/02/2012 04:08:05 PM,04/02/2012 04:08:10 PM,04/02/2012 04:24:04 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Patient Declined Transport,04/02/2012 04:32:44 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",120930265-88 +121660124,E21,12055009,Outside Fire,06/14/2012,06/14/2012,06/14/2012 10:06:20 AM,06/14/2012 10:09:13 AM,06/14/2012 10:09:22 AM,04/25/2016 01:58:13 PM,06/14/2012 10:11:50 AM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Fire,06/14/2012 10:15:25 AM,SCOTT ST/HAYES ST,SF,94117,B05,21,4136,3,3,3,false,Fire,1,ENGINE,1,5,5,Hayes Valley,"(37.77520593025, -122.436128964162)",121660124-E21 +160321389,KM02,16012549,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:42:03 AM,02/01/2016 11:42:03 AM,02/01/2016 11:44:21 AM,02/01/2016 11:44:37 AM,02/01/2016 11:48:01 AM,02/01/2016 12:14:23 PM,02/01/2016 12:24:11 PM,Code 2 Transport,02/01/2016 01:12:46 PM,2ND ST/MARKET ST,San Francisco,94105,B03,1,2144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",160321389-KM02 +132140283,KM02,13072346,Medical Incident,08/02/2013,08/02/2013,08/02/2013 05:07:08 PM,08/02/2013 05:08:30 PM,08/02/2013 05:09:10 PM,08/02/2013 05:10:13 PM,08/02/2013 05:22:25 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Patient Declined Transport,08/02/2013 06:13:28 PM,9TH AV/LINCOLN WY,SF,94122,B08,22,7333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",132140283-KM02 +122160388,75,12071853,Structure Fire,08/03/2012,08/03/2012,08/03/2012 10:47:28 PM,08/03/2012 10:49:43 PM,08/03/2012 10:50:15 PM,08/03/2012 10:50:30 PM,08/03/2012 10:55:18 PM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,08/03/2012 11:02:12 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Fire,1,MEDIC,8,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",122160388-75 +131170336,KM15,13039494,Medical Incident,04/27/2013,04/27/2013,04/27/2013 08:49:47 PM,04/27/2013 08:52:13 PM,04/27/2013 08:52:45 PM,04/27/2013 08:53:20 PM,04/27/2013 08:59:29 PM,04/27/2013 09:40:00 PM,04/27/2013 09:50:04 PM,Code 2 Transport,04/27/2013 10:46:21 PM,0 Block of COOK ST,SF,94118,B05,10,445,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7827615276268, -122.452255448643)",131170336-KM15 +110180048,54,11005836,Medical Incident,01/18/2011,01/17/2011,01/18/2011 07:40:39 AM,01/18/2011 07:42:55 AM,01/18/2011 07:43:49 AM,01/18/2011 07:44:19 AM,01/18/2011 07:49:50 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Against Medical Advice,01/18/2011 08:53:43 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,3,3,3,true,,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",110180048-54 +102580070,88,10081419,Medical Incident,09/15/2010,09/14/2010,09/15/2010 07:48:48 AM,09/15/2010 07:50:31 AM,09/15/2010 07:53:25 AM,09/15/2010 07:54:33 AM,09/15/2010 08:02:25 AM,09/15/2010 08:11:29 AM,09/15/2010 08:36:50 AM,Code 2 Transport,09/15/2010 08:54:17 AM,300 Block of OFARRELL ST,SF,94102,B01,1,1452,1,1,2,true,,1,MEDIC,1,1,3,Tenderloin,"(37.7861537029873, -122.410515154623)",102580070-88 +130560058,58,13018776,Medical Incident,02/25/2013,02/24/2013,02/25/2013 07:13:32 AM,02/25/2013 07:15:05 AM,02/25/2013 07:15:19 AM,02/25/2013 07:16:35 AM,02/25/2013 07:19:59 AM,02/25/2013 07:34:42 AM,02/25/2013 07:55:37 AM,Code 2 Transport,02/25/2013 08:03:58 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7739392650435, -122.412947871011)",130560058-58 +120460258,93,12015360,Medical Incident,02/15/2012,02/15/2012,02/15/2012 04:13:25 PM,02/15/2012 04:13:25 PM,02/15/2012 04:13:25 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,02/15/2012 04:24:44 PM,02/15/2012 04:39:46 PM,Code 2 Transport,02/15/2012 05:17:06 PM,0 Block of GROVE ST,SF,94102,B02,36,381,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",120460258-93 +123590296,E10,12120294,Alarms,12/24/2012,12/24/2012,12/24/2012 08:00:55 PM,12/24/2012 08:02:40 PM,12/24/2012 08:02:52 PM,12/24/2012 08:04:10 PM,12/24/2012 08:05:55 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 08:27:43 PM,3000 Block of SACRAMENTO ST,SF,94115,B04,10,4264,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.788729694614, -122.443129710334)",123590296-E10 +160570630,52,16022640,Medical Incident,02/26/2016,02/25/2016,02/26/2016 07:30:02 AM,02/26/2016 07:30:02 AM,02/26/2016 07:30:30 AM,02/26/2016 07:31:57 AM,02/26/2016 07:44:54 AM,02/26/2016 08:02:00 AM,02/26/2016 08:29:43 AM,Code 2 Transport,02/26/2016 09:08:53 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160570630-52 +113070122,89,11101937,Medical Incident,11/03/2011,11/03/2011,11/03/2011 10:24:45 AM,11/03/2011 10:25:42 AM,11/03/2011 10:26:10 AM,11/03/2011 10:26:44 AM,11/03/2011 11:02:24 AM,11/03/2011 11:02:38 AM,11/03/2011 11:02:54 AM,Code 3 Transport,11/03/2011 12:12:21 PM,0 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",113070122-89 +111680076,E06,11055315,Medical Incident,06/17/2011,06/16/2011,06/17/2011 07:35:42 AM,06/17/2011 07:37:39 AM,06/17/2011 07:38:00 AM,06/17/2011 07:39:11 AM,06/17/2011 07:42:49 AM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 07:44:17 AM,PAGE ST/BRODERICK ST,SF,94117,B05,21,4251,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7719904229663, -122.438899100601)",111680076-E06 +131360047,89,13045763,Medical Incident,05/16/2013,05/15/2013,05/16/2013 04:14:08 AM,05/16/2013 04:15:12 AM,05/16/2013 04:15:30 AM,05/16/2013 04:15:56 AM,05/16/2013 04:21:18 AM,05/16/2013 04:53:20 AM,05/16/2013 05:21:26 AM,Code 2 Transport,05/16/2013 05:44:30 AM,300 Block of 22ND AVE,SF,94121,B07,14,7175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7811963631552, -122.481518721735)",131360047-89 +131640075,T15,13055637,Alarms,06/13/2013,06/12/2013,06/13/2013 07:52:38 AM,06/13/2013 07:54:00 AM,06/13/2013 07:54:19 AM,06/13/2013 07:55:13 AM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/13/2013 07:59:42 AM,0 Block of MELROSE AVE,SF,94131,B09,15,8228,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.733778409433, -122.443159251702)",131640075-T15 +140760231,KM09,14025753,Medical Incident,03/17/2014,03/17/2014,03/17/2014 03:04:32 PM,03/17/2014 03:05:02 PM,03/17/2014 03:05:13 PM,03/17/2014 03:07:15 PM,03/17/2014 03:11:24 PM,03/17/2014 03:23:30 PM,03/17/2014 03:37:41 PM,Code 2 Transport,03/17/2014 04:02:09 PM,900 Block of FOLSOM ST,SAN FRANCISCO,94107,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7798137203933, -122.403860419019)",140760231-KM09 +160272808,59,16010781,Medical Incident,01/27/2016,01/27/2016,01/27/2016 05:00:44 PM,01/27/2016 05:01:59 PM,01/27/2016 05:02:23 PM,01/27/2016 05:02:32 PM,01/27/2016 05:09:41 PM,01/27/2016 05:38:41 PM,01/27/2016 06:12:02 PM,Code 2 Transport,01/27/2016 06:37:14 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160272808-59 +160193292,86,16007783,Medical Incident,01/19/2016,01/19/2016,01/19/2016 07:56:47 PM,01/19/2016 07:59:59 PM,01/19/2016 08:02:29 PM,01/19/2016 08:02:37 PM,01/19/2016 08:18:59 PM,01/19/2016 08:47:57 PM,01/19/2016 08:55:23 PM,Code 2 Transport,01/19/2016 09:39:35 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160193292-86 +103240397,E16,10104022,Medical Incident,11/20/2010,11/20/2010,11/20/2010 11:58:38 PM,11/20/2010 11:59:03 PM,11/20/2010 11:59:21 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,11/21/2010 12:01:29 AM,1900 Block of JEFFERSON ST,SF,94123,B04,16,4216,3,2,2,true,,1,ENGINE,2,4,2,Marina,"(37.8044775553238, -122.444614636594)",103240397-E16 +120280125,87,12009356,Medical Incident,01/28/2012,01/28/2012,01/28/2012 10:23:23 AM,01/28/2012 10:23:36 AM,01/28/2012 10:23:50 AM,01/28/2012 10:25:09 AM,01/28/2012 10:28:44 AM,01/28/2012 10:35:30 AM,01/28/2012 11:01:02 AM,Code 2 Transport,01/28/2012 11:07:30 AM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",120280125-87 +103400049,RC2,10108732,Traffic Collision,12/06/2010,12/05/2010,12/06/2010 06:35:18 AM,12/06/2010 06:35:39 AM,12/06/2010 06:37:04 AM,12/06/2010 06:39:38 AM,12/06/2010 06:44:36 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/06/2010 06:50:59 AM,STEINER ST/GEARY BL,SF,94115,B04,5,3623,3,3,3,true,,1,RESCUE CAPTAIN,3,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",103400049-RC2 +133570287,E20,13121456,Medical Incident,12/23/2013,12/23/2013,12/23/2013 06:32:57 PM,12/23/2013 06:33:42 PM,12/23/2013 06:36:14 PM,12/23/2013 06:37:16 PM,12/23/2013 06:41:19 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 07:01:35 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",133570287-E20 +120660273,T07,12021901,Structure Fire,03/06/2012,03/06/2012,03/06/2012 03:44:18 PM,03/06/2012 03:45:33 PM,03/06/2012 03:46:10 PM,03/06/2012 03:47:21 PM,03/06/2012 03:51:15 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 04:01:11 PM,500 Block of CASTRO ST,SF,94114,B06,6,5437,3,3,3,false,Fire,1,TRUCK,7,6,8,Castro/Upper Market,"(37.7600850560594, -122.434996193094)",120660273-T07 +140180027,E28,14006043,Medical Incident,01/18/2014,01/17/2014,01/18/2014 01:48:44 AM,01/18/2014 01:48:44 AM,01/18/2014 01:48:53 AM,01/18/2014 01:51:09 AM,01/18/2014 01:53:49 AM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/18/2014 02:06:27 AM,MASON ST/FILBERT ST,SF,94133,B01,28,1423,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.8009650564562, -122.412659662276)",140180027-E28 +160860965,89,16034108,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:23:09 AM,03/26/2016 09:23:09 AM,03/26/2016 09:23:37 AM,03/26/2016 09:27:21 AM,03/26/2016 09:52:28 AM,03/26/2016 09:56:23 AM,03/26/2016 10:08:33 AM,Code 2 Transport,03/26/2016 10:41:39 AM,300 Block of AMBER DR,San Francisco,94131,B06,26,8164,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Glen Park,"(37.7445636381979, -122.441704934967)",160860965-89 +160403655,70,16016226,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:45:21 PM,02/09/2016 09:46:29 PM,02/09/2016 09:46:41 PM,02/09/2016 09:46:51 PM,02/09/2016 10:08:18 PM,02/09/2016 10:13:40 PM,02/09/2016 10:28:13 PM,Code 2 Transport,02/09/2016 10:59:51 PM,0 Block of DELLBROOK AVE,San Francisco,94131,B08,20,5351,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7495710546897, -122.454036299238)",160403655-70 +130160331,67,13005573,Medical Incident,01/16/2013,01/16/2013,01/16/2013 08:35:49 PM,01/16/2013 08:37:50 PM,01/16/2013 08:38:12 PM,01/16/2013 08:38:20 PM,01/16/2013 08:51:19 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Patient Declined Transport,01/16/2013 09:22:21 PM,100 Block of SCOTIA AVE,SF,94124,B10,42,6363,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7336457993937, -122.401427923842)",130160331-67 +102770126,92,10088027,Medical Incident,10/04/2010,10/04/2010,10/04/2010 11:10:21 AM,10/04/2010 11:12:47 AM,10/04/2010 11:12:58 AM,10/04/2010 11:14:26 AM,10/04/2010 11:17:21 AM,10/04/2010 11:34:08 AM,10/04/2010 11:43:24 AM,Code 2 Transport,10/04/2010 12:12:46 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",102770126-92 +131630360,E44,13055529,Traffic Collision,06/12/2013,06/12/2013,06/12/2013 08:31:44 PM,06/12/2013 08:33:55 PM,06/12/2013 08:34:22 PM,06/12/2013 08:35:48 PM,06/12/2013 08:38:15 PM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/12/2013 08:52:36 PM,SALINAS AV/EXETER ST,SF,94124,B10,44,6542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7213025245734, -122.399006933001)",131630360-E44 +160142352,55,16005635,Medical Incident,01/14/2016,01/14/2016,01/14/2016 03:33:17 PM,01/14/2016 03:34:32 PM,01/14/2016 03:34:51 PM,01/14/2016 03:35:05 PM,01/14/2016 03:43:35 PM,01/14/2016 04:17:48 PM,01/14/2016 04:34:27 PM,Code 2 Transport,01/14/2016 05:31:58 PM,1500 Block of DIVISADERO ST,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7840751928704, -122.439752776223)",160142352-55 +111020010,T08,11033689,Medical Incident,04/12/2011,04/11/2011,04/12/2011 01:02:05 AM,04/12/2011 01:02:37 AM,04/12/2011 01:04:30 AM,04/12/2011 01:05:55 AM,04/12/2011 01:08:43 AM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/12/2011 01:09:29 AM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,false,,1,TRUCK,2,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",111020010-T08 +103540318,E11,10113770,Traffic Collision,12/20/2010,12/20/2010,12/20/2010 08:43:09 PM,12/20/2010 08:43:09 PM,12/20/2010 08:43:55 PM,12/20/2010 08:45:04 PM,12/20/2010 08:47:06 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,No Merit,12/20/2010 08:52:23 PM,SHOTWELL ST/CESAR CHAVEZ ST,SF,94110,B06,11,5623,2,2,2,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7482307319599, -122.414918964402)",103540318-E11 +123610263,B02,12120875,Alarms,12/26/2012,12/26/2012,12/26/2012 03:51:44 PM,12/26/2012 03:52:09 PM,12/26/2012 03:52:24 PM,12/26/2012 03:53:30 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 03:58:52 PM,2000 Block of HARRISON ST,SF,94110,B02,7,5245,3,3,3,false,Alarm,1,CHIEF,3,2,9,Mission,"(37.7647659461051, -122.413123030178)",123610263-B02 +110530311,E01,11017625,Alarms,02/22/2011,02/22/2011,02/22/2011 07:21:52 PM,02/22/2011 07:23:02 PM,02/22/2011 07:23:14 PM,02/22/2011 07:25:28 PM,02/22/2011 07:26:57 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 07:42:13 PM,500 Block of MARKET ST,SF,94105,B03,1,2144,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",110530311-E01 +160631629,53,16025057,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:23:00 PM,03/03/2016 12:23:00 PM,03/03/2016 12:23:13 PM,03/03/2016 12:23:35 PM,03/03/2016 12:40:11 PM,03/03/2016 01:16:20 PM,03/03/2016 01:33:28 PM,Code 2 Transport,03/03/2016 02:09:53 PM,0 Block of LELAND AVE,San Francisco,94134,B10,44,6255,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7118213439921, -122.405187328609)",160631629-53 +120910006,60,12029966,Medical Incident,03/31/2012,03/30/2012,03/31/2012 12:16:05 AM,03/31/2012 12:17:07 AM,03/31/2012 12:17:41 AM,03/31/2012 12:18:08 AM,03/31/2012 12:21:06 AM,03/31/2012 12:33:09 AM,03/31/2012 12:43:22 AM,Code 2 Transport,03/31/2012 01:08:05 AM,MISSION ST/SILVER AV,SF,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",120910006-60 +160482841,66,16019430,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 04:56:14 PM,02/17/2016 04:56:14 PM,02/17/2016 04:56:47 PM,02/17/2016 04:56:59 PM,02/17/2016 04:58:53 PM,02/17/2016 05:15:28 PM,02/17/2016 05:29:28 PM,Code 2 Transport,02/17/2016 07:21:34 PM,200 Block of ALABAMA ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7671584949516, -122.41250540209)",160482841-66 +110980344,99,11032627,Medical Incident,04/08/2011,04/08/2011,04/08/2011 06:18:55 PM,04/08/2011 06:19:48 PM,04/08/2011 06:22:05 PM,04/08/2011 06:22:16 PM,04/08/2011 06:29:46 PM,04/08/2011 07:10:17 PM,04/08/2011 07:27:07 PM,Code 2 Transport,04/08/2011 07:49:26 PM,100 Block of LOMBARD ST,SF,94111,B01,28,1224,3,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",110980344-99 +160570223,56,16022598,Medical Incident,02/26/2016,02/25/2016,02/26/2016 02:04:33 AM,02/26/2016 02:04:33 AM,02/26/2016 02:04:53 AM,02/26/2016 02:05:07 AM,02/26/2016 02:15:27 AM,02/26/2016 02:40:53 AM,02/26/2016 02:40:54 AM,Code 2 Transport,02/26/2016 03:31:48 AM,MASON ST/FILBERT ST,San Francisco,94133,B01,28,1422,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.8009650564562, -122.412659662276)",160570223-56 +132770127,T15,13094035,Medical Incident,10/04/2013,10/04/2013,10/04/2013 09:54:41 AM,10/04/2013 09:54:42 AM,10/04/2013 09:54:42 AM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 10:11:39 AM,PERSIA AV/LONDON ST,SF,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,TRUCK,2,9,11,Excelsior,"(37.7227637319069, -122.435208400094)",132770127-T15 +132640401,RC3,13089699,Vehicle Fire,09/21/2013,09/21/2013,09/21/2013 10:04:58 PM,09/21/2013 10:06:09 PM,09/21/2013 10:09:01 PM,09/21/2013 10:12:37 PM,04/25/2016 01:50:39 PM,09/21/2013 10:30:28 PM,04/25/2016 01:50:39 PM,Other,09/21/2013 10:28:20 PM,0 Block of 5TH ST,SF,94103,B03,8,2243,3,3,3,true,Fire,1,RESCUE CAPTAIN,8,3,6,South of Market,"(37.7831860531538, -122.407149119811)",132640401-RC3 +160381560,83,16015186,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:43:11 AM,02/07/2016 11:44:22 AM,02/07/2016 11:44:48 AM,02/07/2016 11:45:13 AM,02/07/2016 11:48:12 AM,02/07/2016 11:57:10 AM,02/07/2016 12:11:13 PM,Code 2 Transport,02/07/2016 12:49:40 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160381560-83 +111760338,T01,11058145,Alarms,06/25/2011,06/25/2011,06/25/2011 07:36:09 PM,06/25/2011 07:37:36 PM,06/25/2011 07:37:46 PM,06/25/2011 07:39:44 PM,06/25/2011 07:41:20 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 07:49:13 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,TRUCK,2,3,3,Financial District/South Beach,"(37.7864582323625, -122.407206735701)",111760338-T01 +160102810,KM04,16004152,Medical Incident,01/10/2016,01/10/2016,01/10/2016 06:39:37 PM,01/10/2016 06:41:45 PM,01/10/2016 06:44:53 PM,01/10/2016 06:45:23 PM,01/10/2016 06:56:08 PM,01/10/2016 07:20:18 PM,01/10/2016 07:42:53 PM,Code 2 Transport,01/10/2016 08:04:44 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160102810-KM04 +113420343,84,11113530,Medical Incident,12/08/2011,12/08/2011,12/08/2011 08:24:23 PM,12/08/2011 08:24:23 PM,12/08/2011 08:24:23 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Fire,12/08/2011 08:38:35 PM,100 Block of COLUMBUS AVE,SF,94133,B01,13,1246,2,2,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7969454448277, -122.405446187756)",113420343-84 +112350406,65,11077737,Medical Incident,08/23/2011,08/23/2011,08/23/2011 10:50:25 PM,08/23/2011 10:51:45 PM,08/23/2011 10:52:28 PM,08/23/2011 10:52:58 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/23/2011 10:53:45 PM,1100 Block of MARKET ST,SF,94103,B02,1,2316,2,3,3,true,,1,MEDIC,3,2,6,South of Market,"(37.7795310846627, -122.413542548681)",112350406-65 +110220197,KM04,11007275,Medical Incident,01/22/2011,01/22/2011,01/22/2011 02:50:20 PM,01/22/2011 02:51:29 PM,01/22/2011 02:51:57 PM,01/22/2011 02:53:18 PM,01/22/2011 02:56:55 PM,01/22/2011 03:23:56 PM,01/22/2011 03:38:40 PM,Code 2 Transport,01/22/2011 04:01:55 PM,700 Block of 27TH ST,SF,94131,B06,26,5554,3,3,3,false,,1,PRIVATE,2,6,8,Noe Valley,"(37.7462472673363, -122.436920444133)",110220197-KM04 +123120158,E21,12103807,Medical Incident,11/07/2012,11/07/2012,11/07/2012 11:34:09 AM,11/07/2012 11:35:45 AM,11/07/2012 11:36:34 AM,11/07/2012 11:37:18 AM,11/07/2012 11:38:11 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 11:40:16 AM,1400 Block of HAIGHT ST,SF,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7700546614555, -122.446128431298)",123120158-E21 +103470296,T03,10111356,Structure Fire,12/13/2010,12/13/2010,12/13/2010 05:00:02 PM,12/13/2010 05:00:03 PM,12/13/2010 05:00:07 PM,12/13/2010 05:01:39 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 05:04:13 PM,0 Block of LARKIN ST,SF,94102,B02,36,1646,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7775888205813, -122.416411092393)",103470296-T03 +102980093,82,10095096,Medical Incident,10/25/2010,10/25/2010,10/25/2010 08:47:25 AM,10/25/2010 08:49:54 AM,10/25/2010 09:01:40 AM,10/25/2010 09:06:08 AM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Other,04/25/2016 02:07:56 PM,3300 Block of CLEMENT ST,SF,94121,B07,34,7247,3,3,3,true,,1,MEDIC,4,7,1,Outer Richmond,"(37.781497447449, -122.495051120657)",102980093-82 +102710146,T03,10085955,Medical Incident,09/28/2010,09/28/2010,09/28/2010 10:35:48 AM,09/28/2010 10:36:25 AM,09/28/2010 10:36:57 AM,09/28/2010 10:37:10 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 10:41:23 AM,1600 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,false,,1,TRUCK,3,4,2,Western Addition,"(37.7882291932366, -122.424426274626)",102710146-T03 +160633362,65,16025227,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:43:09 PM,03/03/2016 07:43:09 PM,03/03/2016 07:53:46 PM,03/03/2016 07:54:14 PM,03/03/2016 07:55:11 PM,03/03/2016 08:00:40 PM,03/03/2016 08:11:54 PM,Code 3 Transport,03/03/2016 08:57:32 PM,TURK ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1456,A,E,3,true,Potentially Life-Threatening,1,MEDIC,7,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160633362-65 +111280310,E08,11042462,Medical Incident,05/08/2011,05/08/2011,05/08/2011 09:02:35 PM,05/08/2011 09:03:40 PM,05/08/2011 09:03:49 PM,05/08/2011 09:05:07 PM,05/08/2011 09:06:41 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,No Merit,05/08/2011 09:14:04 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111280310-E08 +102500304,78,10079100,Medical Incident,09/07/2010,09/07/2010,09/07/2010 07:58:55 PM,09/07/2010 07:59:49 PM,09/07/2010 08:00:44 PM,09/07/2010 08:00:50 PM,09/07/2010 08:03:37 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,No Merit,09/07/2010 08:19:46 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",102500304-78 +103150111,54,10100933,Traffic Collision,11/11/2010,11/11/2010,11/11/2010 10:39:32 AM,11/11/2010 10:39:32 AM,11/11/2010 10:40:05 AM,11/11/2010 10:44:42 AM,11/11/2010 10:48:08 AM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,Patient Declined Transport,11/11/2010 11:19:04 AM,LINCOLN WY/26TH AV,SF,94122,B08,22,7452,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7651167516205, -122.484758825812)",103150111-54 +130700254,E05,13023389,Medical Incident,03/11/2013,03/11/2013,03/11/2013 02:39:06 PM,03/11/2013 02:42:03 PM,03/11/2013 02:42:21 PM,03/11/2013 02:43:19 PM,03/11/2013 02:46:27 PM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,No Merit,03/11/2013 02:48:25 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",130700254-E05 +160713709,87,16028408,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:00:35 PM,03/11/2016 11:01:07 PM,03/11/2016 11:01:21 PM,03/11/2016 11:01:31 PM,03/11/2016 11:15:23 PM,03/11/2016 11:33:28 PM,03/11/2016 11:53:59 PM,Code 2 Transport,03/12/2016 12:22:40 AM,BUSH ST/POLK ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",160713709-87 +121000253,E01,12033193,Alarms,04/09/2012,04/09/2012,04/09/2012 02:50:59 PM,04/09/2012 02:51:44 PM,04/09/2012 02:51:51 PM,04/09/2012 02:53:16 PM,04/09/2012 02:56:04 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 02:57:34 PM,400 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",121000253-E01 +132070270,92,13070153,Medical Incident,07/26/2013,07/26/2013,07/26/2013 05:36:28 PM,07/26/2013 05:37:51 PM,07/26/2013 05:38:07 PM,07/26/2013 05:38:16 PM,07/26/2013 05:40:26 PM,07/26/2013 06:00:20 PM,07/26/2013 06:10:04 PM,Code 2 Transport,07/26/2013 06:25:56 PM,500 Block of DOLORES ST,SF,94114,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7606186794333, -122.426153349478)",132070270-92 +110960292,T17,11031930,Citizen Assist / Service Call,04/06/2011,04/06/2011,04/06/2011 06:23:50 PM,04/06/2011 06:25:24 PM,04/06/2011 06:27:45 PM,04/06/2011 06:28:50 PM,04/06/2011 06:31:04 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Fire,04/06/2011 06:38:26 PM,PALOU AV/LANE ST,SF,94124,B10,17,6551,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7329188959459, -122.389035070659)",110960292-T17 +112700300,T17,11089314,Structure Fire,09/27/2011,09/27/2011,09/27/2011 07:11:30 PM,09/27/2011 07:11:31 PM,09/27/2011 07:11:42 PM,09/27/2011 07:12:44 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/27/2011 07:15:28 PM,HUDSON AV/ARDATH CT,SF,94124,B10,17,6624,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",112700300-T17 +130920249,82,13030853,Medical Incident,04/02/2013,04/02/2013,04/02/2013 03:33:13 PM,04/02/2013 03:33:20 PM,04/02/2013 03:33:32 PM,04/02/2013 03:33:53 PM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,Other,04/02/2013 03:34:57 PM,700 Block of 7TH AVE,SF,94118,B07,31,7132,2,2,2,true,Potentially Life-Threatening,1,MEDIC,5,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",130920249-82 +160513246,88,16020616,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:46:56 PM,02/20/2016 09:46:56 PM,02/20/2016 09:47:06 PM,02/20/2016 09:47:14 PM,02/20/2016 09:53:53 PM,02/20/2016 10:07:53 PM,02/20/2016 10:18:23 PM,Code 2 Transport,02/20/2016 11:04:28 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160513246-88 +160703537,AM18,16028022,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:32:24 PM,03/10/2016 09:32:57 PM,03/10/2016 09:36:17 PM,03/10/2016 09:36:40 PM,03/10/2016 09:48:26 PM,03/10/2016 09:55:41 PM,03/10/2016 10:25:54 PM,Code 2 Transport,03/10/2016 11:10:37 PM,1000 Block of MUNICH ST,San Francisco,94112,B09,43,6226,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7110552815175, -122.434673347836)",160703537-AM18 +132740018,68,13092961,Medical Incident,10/01/2013,09/30/2013,10/01/2013 01:51:29 AM,10/01/2013 01:52:16 AM,10/01/2013 01:52:27 AM,10/01/2013 01:52:42 AM,10/01/2013 02:07:56 AM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,No Merit,10/01/2013 02:18:45 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",132740018-68 +123420302,E41,12114247,Medical Incident,12/07/2012,12/07/2012,12/07/2012 02:43:43 PM,12/07/2012 02:44:49 PM,12/07/2012 02:45:12 PM,12/07/2012 02:46:58 PM,12/07/2012 02:48:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/07/2012 02:57:48 PM,1100 Block of PACIFIC AVE,SF,94133,B01,41,1511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7960804793064, -122.413832669)",123420302-E41 +131330162,T07,13044836,Gas Leak (Natural and LP Gases),05/13/2013,05/13/2013,05/13/2013 11:35:09 AM,05/13/2013 11:35:58 AM,05/13/2013 11:37:08 AM,05/13/2013 11:37:28 AM,05/13/2013 11:39:00 AM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 12:07:01 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",131330162-T07 +110020127,82,11000613,Medical Incident,01/02/2011,01/02/2011,01/02/2011 10:47:30 AM,01/02/2011 10:49:20 AM,01/02/2011 10:50:07 AM,01/02/2011 10:51:20 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 11:04:43 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,,1,MEDIC,3,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",110020127-82 +160583362,76,16023281,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:31:26 PM,02/27/2016 08:33:18 PM,02/27/2016 08:33:27 PM,02/27/2016 08:33:35 PM,02/27/2016 08:44:29 PM,02/27/2016 08:44:30 PM,02/27/2016 08:47:39 PM,Code 3 Transport,02/27/2016 09:24:16 PM,100 Block of FELL ST,San Francisco,94102,B02,36,3213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.776209592511, -122.420316348058)",160583362-76 +131260069,AM16,13042457,Medical Incident,05/06/2013,05/05/2013,05/06/2013 06:47:54 AM,05/06/2013 06:48:11 AM,05/06/2013 06:48:53 AM,05/06/2013 06:49:32 AM,05/06/2013 06:54:50 AM,05/06/2013 07:16:01 AM,05/06/2013 07:23:28 AM,Code 3 Transport,05/06/2013 08:02:15 AM,400 Block of BENTON AVE,SF,94110,B06,32,5644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7339457026479, -122.418508074397)",131260069-AM16 +133440025,E18,13116540,Medical Incident,12/10/2013,12/09/2013,12/10/2013 02:10:38 AM,12/10/2013 02:11:47 AM,12/10/2013 02:14:04 AM,12/10/2013 02:14:44 AM,12/10/2013 02:20:23 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 02:30:02 AM,2700 Block of 19TH AVE,SF,94132,B08,40,7414,3,3,3,true,Non Life-threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7367464834668, -122.475102318429)",133440025-E18 +130280154,83,13009573,Medical Incident,01/28/2013,01/28/2013,01/28/2013 11:08:25 AM,01/28/2013 11:09:11 AM,01/28/2013 11:09:20 AM,01/28/2013 11:09:29 AM,01/28/2013 11:15:03 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Gone on Arrival,01/28/2013 11:16:39 AM,LAKE MERCED BL/JOHN MUIR DR,SF,,B08,19,8775,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,None,None,None,"(37.7080857299394, -122.485723865524)",130280154-83 +123640235,E23,12121848,Medical Incident,12/29/2012,12/29/2012,12/29/2012 04:05:53 PM,12/29/2012 04:06:30 PM,12/29/2012 04:06:43 PM,12/29/2012 04:07:42 PM,12/29/2012 04:09:37 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/29/2012 04:26:01 PM,1600 Block of 43RD AVE,SF,94122,B08,23,7651,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7558969181132, -122.502315236941)",123640235-E23 +110990187,66,11032879,Medical Incident,04/09/2011,04/09/2011,04/09/2011 01:42:24 PM,04/09/2011 01:46:00 PM,04/09/2011 01:46:12 PM,04/09/2011 01:46:23 PM,04/09/2011 01:52:22 PM,04/09/2011 02:09:42 PM,04/09/2011 02:13:30 PM,Code 3 Transport,04/09/2011 02:43:58 PM,600 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",110990187-66 +103630015,E07,10116315,Alarms,12/29/2010,12/28/2010,12/29/2010 01:16:45 AM,12/29/2010 01:17:57 AM,12/29/2010 01:18:08 AM,12/29/2010 01:21:16 AM,12/29/2010 01:23:06 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/29/2010 01:40:24 AM,0 Block of HOFF ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7641819463712, -122.420575720933)",103630015-E07 +102940168,E10,10093741,Alarms,10/21/2010,10/21/2010,10/21/2010 01:06:25 PM,10/21/2010 01:08:46 PM,10/21/2010 01:09:23 PM,10/21/2010 01:09:47 PM,10/21/2010 01:14:28 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/21/2010 01:39:42 PM,2800 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7931736175933, -122.444028632879)",102940168-E10 +121760146,54,12058469,Traffic Collision,06/24/2012,06/24/2012,06/24/2012 09:29:49 AM,06/24/2012 09:30:14 AM,06/24/2012 09:30:23 AM,04/25/2016 01:58:03 PM,06/24/2012 09:58:28 AM,06/24/2012 10:11:12 AM,06/24/2012 10:23:00 AM,Code 3 Transport,06/24/2012 11:21:14 AM,100 Block of BAY SHORE BLVD,SF,94124,B10,44,6271,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",121760146-54 +160491620,83,16019727,Medical Incident,02/18/2016,02/18/2016,02/18/2016 12:18:45 PM,02/18/2016 12:19:18 PM,02/18/2016 12:19:36 PM,02/18/2016 12:19:44 PM,02/18/2016 12:22:17 PM,02/18/2016 12:41:45 PM,02/18/2016 12:53:23 PM,Code 2 Transport,02/18/2016 01:38:51 PM,2100 Block of POLK ST,San Francisco,94109,B04,41,3126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7964138831057, -122.421932885069)",160491620-83 +160020196,65,16000579,Medical Incident,01/02/2016,01/01/2016,01/02/2016 01:33:46 AM,01/02/2016 01:34:24 AM,01/02/2016 01:35:28 AM,01/02/2016 01:35:59 AM,01/02/2016 01:40:19 AM,01/02/2016 02:06:45 AM,01/02/2016 02:34:01 AM,Code 2 Transport,01/02/2016 02:45:57 AM,2600 Block of FOLSOM ST,San Francisco,94110,B06,7,5473,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7549033596998, -122.414241576689)",160020196-65 +112860296,E16,11094822,Medical Incident,10/13/2011,10/13/2011,10/13/2011 04:01:52 PM,10/13/2011 04:02:35 PM,10/13/2011 04:03:02 PM,10/13/2011 04:04:51 PM,10/13/2011 04:05:48 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 04:15:06 PM,2200 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7994131607449, -122.438492113191)",112860296-E16 +132990346,E09,13101733,Structure Fire,10/26/2013,10/26/2013,10/26/2013 08:31:07 PM,10/26/2013 08:32:42 PM,10/26/2013 08:33:13 PM,10/26/2013 08:34:42 PM,10/26/2013 08:37:22 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/26/2013 08:46:47 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,Alarm,1,ENGINE,3,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",132990346-E09 +130530078,77,13017831,Medical Incident,02/22/2013,02/22/2013,02/22/2013 08:54:23 AM,02/22/2013 08:56:00 AM,02/22/2013 08:56:24 AM,02/22/2013 08:56:47 AM,02/22/2013 09:02:22 AM,02/22/2013 09:29:58 AM,02/22/2013 10:06:24 AM,Code 2 Transport,02/22/2013 10:11:32 AM,100 Block of ULLOA ST,SF,94127,B08,39,8671,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.743942311975, -122.455317853173)",130530078-77 +132380399,68,13080482,Medical Incident,08/26/2013,08/26/2013,08/26/2013 10:40:39 PM,08/26/2013 10:42:09 PM,08/26/2013 10:42:26 PM,08/26/2013 10:43:08 PM,08/26/2013 10:51:20 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 11:06:51 PM,700 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",132380399-68 +111920357,E03,11063525,Medical Incident,07/11/2011,07/11/2011,07/11/2011 08:08:22 PM,07/11/2011 08:09:44 PM,07/11/2011 08:09:58 PM,07/11/2011 08:11:32 PM,07/11/2011 08:13:05 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Patient Declined Transport,07/11/2011 08:14:34 PM,GEARY ST/HYDE ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7863102173267, -122.416449125138)",111920357-E03 +132410003,88,13081135,Medical Incident,08/29/2013,08/28/2013,08/29/2013 12:05:13 AM,08/29/2013 12:05:50 AM,08/29/2013 12:06:02 AM,08/29/2013 12:06:08 AM,08/29/2013 12:08:56 AM,08/29/2013 12:39:02 AM,08/29/2013 12:43:40 AM,Code 2 Transport,08/29/2013 01:06:38 AM,700 Block of 25TH AVE,SF,94121,B07,14,7212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7753725574025, -122.484324208009)",132410003-88 +121310085,KM05,12043496,Medical Incident,05/10/2012,05/10/2012,05/10/2012 09:14:32 AM,05/10/2012 09:15:18 AM,05/10/2012 09:16:57 AM,05/10/2012 09:17:45 AM,05/10/2012 09:28:27 AM,05/10/2012 09:40:08 AM,05/10/2012 09:55:00 AM,Code 2 Transport,05/10/2012 10:23:48 AM,1200 Block of NOE ST,SF,94114,B06,11,554,3,1,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7494248005842, -122.43174723)",121310085-KM05 +160832384,59,16033006,Medical Incident,03/23/2016,03/23/2016,03/23/2016 02:53:27 PM,03/23/2016 02:54:59 PM,03/23/2016 02:55:22 PM,03/23/2016 02:56:30 PM,03/23/2016 03:02:50 PM,03/23/2016 03:09:23 PM,03/23/2016 03:25:04 PM,Code 2 Transport,03/23/2016 04:08:02 PM,1100 Block of LAGUNA ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7818107490445, -122.427415796369)",160832384-59 +160843538,63,16033524,Medical Incident,03/24/2016,03/24/2016,03/24/2016 07:09:30 PM,03/24/2016 07:10:53 PM,03/24/2016 07:16:49 PM,03/24/2016 07:17:02 PM,03/24/2016 07:31:52 PM,03/24/2016 07:38:09 PM,03/24/2016 08:05:52 PM,Code 2 Transport,03/24/2016 08:34:02 PM,COLE ST/HAYES ST,San Francisco,94117,B05,21,4535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7733156442098, -122.450973753886)",160843538-63 +160130517,AM02,16005069,Medical Incident,01/13/2016,01/12/2016,01/13/2016 06:44:47 AM,01/13/2016 06:46:43 AM,01/13/2016 06:47:15 AM,01/13/2016 06:47:57 AM,01/13/2016 07:14:51 AM,01/13/2016 07:14:52 AM,01/13/2016 07:29:55 AM,Code 2 Transport,01/13/2016 07:57:29 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160130517-AM02 +160391303,50,16015569,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:53:41 AM,02/08/2016 10:54:27 AM,02/08/2016 10:56:14 AM,02/08/2016 10:56:20 AM,02/08/2016 10:58:14 AM,02/08/2016 11:25:32 AM,02/08/2016 11:34:17 AM,Code 2 Transport,02/08/2016 01:01:22 PM,4400 Block of MISSION ST,San Francisco,94112,B09,32,6113,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7273796970352, -122.432642958112)",160391303-50 +160801657,75,16031799,Medical Incident,03/20/2016,03/20/2016,03/20/2016 12:51:01 PM,03/20/2016 12:51:30 PM,03/20/2016 12:51:52 PM,03/20/2016 12:52:03 PM,03/20/2016 12:54:53 PM,03/20/2016 01:10:38 PM,03/20/2016 01:24:03 PM,Code 2 Transport,03/20/2016 01:55:53 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160801657-75 +112630442,E03,11087046,Citizen Assist / Service Call,09/20/2011,09/20/2011,09/20/2011 11:53:16 PM,09/20/2011 11:59:00 PM,09/20/2011 11:59:21 PM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/21/2011 12:17:31 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",112630442-E03 +120720329,E07,12024032,Outside Fire,03/12/2012,03/12/2012,03/12/2012 07:50:45 PM,03/12/2012 07:51:44 PM,03/12/2012 07:51:58 PM,03/12/2012 07:53:00 PM,03/12/2012 07:54:51 PM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,Other,03/12/2012 07:57:35 PM,MISSION ST/22ND ST,SF,94110,B06,7,5472,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",120720329-E07 +121640385,92,12054568,Medical Incident,06/12/2012,06/12/2012,06/12/2012 11:02:53 PM,06/12/2012 11:04:36 PM,06/12/2012 11:08:58 PM,06/12/2012 11:09:24 PM,06/12/2012 11:23:59 PM,06/12/2012 11:49:49 PM,06/13/2012 12:01:10 AM,Code 2 Transport,06/13/2012 12:29:29 AM,500 Block of GARFIELD ST,SF,94132,B09,33,8432,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7196137829207, -122.467601819004)",121640385-92 +160233301,KM07,16009309,Medical Incident,01/23/2016,01/23/2016,01/23/2016 08:19:41 PM,01/23/2016 08:19:58 PM,01/23/2016 08:20:33 PM,01/23/2016 08:21:53 PM,01/23/2016 08:25:09 PM,01/23/2016 08:37:24 PM,01/23/2016 08:57:57 PM,Code 2 Transport,01/23/2016 09:21:59 PM,OFARRELL ST/LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",160233301-KM07 +110510317,E02,11017002,Medical Incident,02/20/2011,02/20/2011,02/20/2011 06:33:33 PM,02/20/2011 06:33:56 PM,02/20/2011 06:34:17 PM,02/20/2011 06:35:15 PM,02/20/2011 06:37:03 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 07:03:17 PM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",110510317-E02 +121110105,T15,12036660,Other,04/20/2012,04/20/2012,04/20/2012 09:05:21 AM,04/20/2012 09:05:52 AM,04/20/2012 09:06:00 AM,04/20/2012 09:09:21 AM,04/20/2012 09:18:21 AM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 09:26:02 AM,200 Block of JUANITA WAY,SF,94127,B09,39,8672,3,3,3,false,Alarm,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7395764944697, -122.457869006822)",121110105-T15 +140430029,KM15,14014487,Medical Incident,02/12/2014,02/11/2014,02/12/2014 02:47:41 AM,02/12/2014 02:48:40 AM,02/12/2014 02:49:53 AM,02/12/2014 02:50:43 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/12/2014 03:07:15 AM,200 Block of BAY SHORE BLVD,SF,94124,B10,9,6376,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7442404121423, -122.40429562467)",140430029-KM15 +112260157,D2,11074653,Structure Fire,08/14/2011,08/14/2011,08/14/2011 12:57:27 PM,08/14/2011 01:02:43 PM,08/14/2011 01:03:06 PM,08/14/2011 01:03:46 PM,08/14/2011 01:07:14 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 01:18:39 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,,1,CHIEF,7,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",112260157-D2 +123240374,T15,12107893,Alarms,11/19/2012,11/19/2012,11/19/2012 08:57:46 PM,11/19/2012 08:58:49 PM,11/19/2012 08:59:01 PM,11/19/2012 09:00:47 PM,11/19/2012 09:06:28 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/19/2012 09:10:25 PM,0 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,false,Alarm,1,TRUCK,3,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",123240374-T15 +160692444,KM08,16027538,Medical Incident,03/09/2016,03/09/2016,03/09/2016 03:52:36 PM,03/09/2016 03:53:42 PM,03/09/2016 03:53:56 PM,03/09/2016 03:54:28 PM,03/09/2016 04:01:54 PM,03/09/2016 04:11:32 PM,03/09/2016 04:43:04 PM,Code 2 Transport,03/09/2016 05:02:10 PM,20TH ST/BRYANT ST,San Francisco,94110,B06,7,5451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7591940102579, -122.409770123675)",160692444-KM08 +123520125,AM06,12117696,Medical Incident,12/17/2012,12/17/2012,12/17/2012 10:07:05 AM,12/17/2012 10:08:51 AM,12/17/2012 10:09:13 AM,12/17/2012 10:09:53 AM,12/17/2012 10:15:37 AM,12/17/2012 10:29:32 AM,12/17/2012 10:53:51 AM,Code 2 Transport,12/17/2012 11:20:22 AM,TEHAMA ST/2ND ST,SF,94105,B03,1,2146,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7863386154364, -122.39770448764)",123520125-AM06 +110940387,86,11031382,Traffic Collision,04/04/2011,04/04/2011,04/04/2011 10:30:20 PM,04/04/2011 10:31:22 PM,04/04/2011 10:31:34 PM,04/04/2011 10:31:43 PM,04/04/2011 10:45:27 PM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,Against Medical Advice,04/04/2011 10:59:22 PM,HAIGHT ST/BRODERICK ST,SF,94117,B05,21,4246,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7710564942104, -122.438709122602)",110940387-86 +131980192,T06,13067150,Alarms,07/17/2013,07/17/2013,07/17/2013 02:15:59 PM,07/17/2013 02:17:02 PM,07/17/2013 02:17:06 PM,07/17/2013 02:18:18 PM,07/17/2013 02:19:55 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/17/2013 02:28:33 PM,600 Block of HAIGHT ST,SF,94117,B05,6,3633,3,3,3,false,Alarm,1,TRUCK,1,5,5,Haight Ashbury,"(37.7717385379256, -122.432902586218)",131980192-T06 +111200182,E23,11039581,Medical Incident,04/30/2011,04/30/2011,04/30/2011 12:41:22 PM,04/30/2011 12:42:03 PM,04/30/2011 12:42:17 PM,04/30/2011 12:43:01 PM,04/30/2011 12:45:07 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 01:02:36 PM,1800 Block of 45TH AVE,SF,94122,B08,23,7662,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7520806920335, -122.504199266238)",111200182-E23 +123530165,E29,12118081,Medical Incident,12/18/2012,12/18/2012,12/18/2012 11:52:03 AM,12/18/2012 11:54:34 AM,12/18/2012 11:55:08 AM,12/18/2012 11:56:18 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 11:58:48 AM,1300 Block of MISSION ST,SF,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7757873707648, -122.41535521839)",123530165-E29 +120790005,84,12026085,Medical Incident,03/19/2012,03/18/2012,03/19/2012 12:44:30 AM,03/19/2012 12:45:24 AM,03/19/2012 12:45:44 AM,03/19/2012 12:46:09 AM,03/19/2012 12:50:42 AM,03/19/2012 01:01:23 AM,03/19/2012 01:14:31 AM,Code 2 Transport,03/19/2012 01:42:35 AM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",120790005-84 +120910381,55,12030307,Medical Incident,03/31/2012,03/31/2012,03/31/2012 11:40:50 PM,03/31/2012 11:43:43 PM,03/31/2012 11:47:15 PM,03/31/2012 11:47:29 PM,04/01/2012 12:17:43 AM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,No Merit,04/01/2012 12:21:41 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",120910381-55 +112570055,AM16,11084642,Medical Incident,09/14/2011,09/13/2011,09/14/2011 07:37:29 AM,09/14/2011 07:38:59 AM,09/14/2011 07:39:18 AM,09/14/2011 07:39:57 AM,09/14/2011 07:49:40 AM,09/14/2011 08:03:33 AM,09/14/2011 08:09:40 AM,Code 2 Transport,09/14/2011 08:44:39 AM,1300 Block of FLORIDA ST,SF,94110,B06,9,5615,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7503405358981, -122.409907058485)",112570055-AM16 +102480033,63,10078237,Medical Incident,09/05/2010,09/04/2010,09/05/2010 02:09:48 AM,09/05/2010 02:10:44 AM,09/05/2010 02:11:09 AM,09/05/2010 02:11:23 AM,09/05/2010 02:20:46 AM,09/05/2010 02:36:57 AM,09/05/2010 02:47:30 AM,Code 2 Transport,09/05/2010 03:16:26 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",102480033-63 +110060096,T07,11001907,Alarms,01/06/2011,01/06/2011,01/06/2011 08:32:26 AM,01/06/2011 08:33:26 AM,01/06/2011 08:33:32 AM,01/06/2011 08:35:14 AM,01/06/2011 08:40:47 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 09:38:20 AM,100 Block of OTIS ST,SF,94103,B02,36,5125,3,3,3,false,,1,TRUCK,3,2,6,Mission,"(37.7709133372974, -122.420304994325)",110060096-T07 +121460291,RC3,12048564,Traffic Collision,05/25/2012,05/25/2012,05/25/2012 07:06:41 PM,05/25/2012 07:07:50 PM,05/25/2012 07:08:17 PM,04/25/2016 01:58:31 PM,05/25/2012 07:09:58 PM,05/25/2012 07:36:55 PM,05/25/2012 07:36:59 PM,Other,05/25/2012 07:48:10 PM,CESAR CHAVEZ ST/DOLORES ST,SF,94110,B06,11,5556,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,8,Noe Valley,"(37.7478303051898, -122.424768281488)",121460291-RC3 +102430014,86,10076504,Medical Incident,08/31/2010,08/30/2010,08/31/2010 12:49:09 AM,08/31/2010 12:50:39 AM,08/31/2010 12:53:03 AM,08/31/2010 12:55:46 AM,08/31/2010 12:57:19 AM,08/31/2010 01:22:28 AM,08/31/2010 01:31:43 AM,Other,08/31/2010 02:16:38 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,3,3,3,true,,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",102430014-86 +133150097,E38,13106995,Odor (Strange / Unknown),11/11/2013,11/11/2013,11/11/2013 08:00:43 AM,11/11/2013 08:01:49 AM,11/11/2013 08:02:09 AM,11/11/2013 08:03:57 AM,11/11/2013 08:06:13 AM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,No Merit,11/11/2013 08:06:54 AM,WASHINGTON ST/FILLMORE ST,SF,94115,B04,38,3545,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7915916498341, -122.434380485478)",133150097-E38 +110570103,E19,11018694,Structure Fire,02/26/2011,02/25/2011,02/26/2011 07:49:08 AM,02/26/2011 07:51:30 AM,02/26/2011 07:51:46 AM,02/26/2011 07:54:01 AM,02/26/2011 07:55:38 AM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/26/2011 08:19:51 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",110570103-E19 +120060105,60,12002010,Medical Incident,01/06/2012,01/06/2012,01/06/2012 08:59:22 AM,01/06/2012 09:00:28 AM,01/06/2012 09:01:12 AM,01/06/2012 09:01:24 AM,01/06/2012 09:06:45 AM,01/06/2012 09:23:46 AM,01/06/2012 09:45:57 AM,Code 2 Transport,01/06/2012 10:05:42 AM,200 Block of CONCORD ST,SF,94112,B09,43,6231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.709970591489, -122.441825595194)",120060105-60 +160830749,74,16032861,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:13:22 AM,03/23/2016 08:14:43 AM,03/23/2016 08:15:35 AM,03/23/2016 08:15:43 AM,03/23/2016 08:18:41 AM,03/23/2016 08:50:23 AM,03/23/2016 09:03:58 AM,Code 2 Transport,03/23/2016 10:06:49 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160830749-74 +123250077,87,12107995,Medical Incident,11/20/2012,11/19/2012,11/20/2012 07:43:06 AM,11/20/2012 07:46:08 AM,11/20/2012 07:46:20 AM,11/20/2012 07:47:07 AM,11/20/2012 07:49:13 AM,11/20/2012 08:05:56 AM,04/25/2016 01:55:43 PM,Code 2 Transport,11/20/2012 11:20:46 AM,0 Block of NANTUCKET AVE,SF,94112,B09,15,8266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7282735423755, -122.441361768718)",123250077-87 +123390187,E41,12113056,Alarms,12/04/2012,12/04/2012,12/04/2012 01:00:51 PM,12/04/2012 01:01:58 PM,12/04/2012 01:02:17 PM,12/04/2012 01:03:58 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 01:07:41 PM,500 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,false,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",123390187-E41 +160150222,78,16005817,Medical Incident,01/15/2016,01/14/2016,01/15/2016 01:36:42 AM,01/15/2016 01:37:16 AM,01/15/2016 01:37:51 AM,01/15/2016 01:38:13 AM,01/15/2016 01:42:56 AM,01/15/2016 02:11:05 AM,01/15/2016 02:27:39 AM,Code 2 Transport,01/15/2016 03:10:05 AM,HAIGHT ST/COLE ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",160150222-78 +111060071,E01,11034990,Medical Incident,04/16/2011,04/15/2011,04/16/2011 06:40:15 AM,04/16/2011 06:41:52 AM,04/16/2011 06:42:03 AM,04/16/2011 06:42:59 AM,04/16/2011 06:45:36 AM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/16/2011 06:48:32 AM,STEVENSON ST/6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7817543267261, -122.409693263148)",111060071-E01 +103640246,T15,10116818,Medical Incident,12/30/2010,12/30/2010,12/30/2010 03:52:15 PM,12/30/2010 03:53:55 PM,12/30/2010 03:54:57 PM,12/30/2010 03:55:31 PM,12/30/2010 03:58:44 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/30/2010 04:14:44 PM,700 Block of DELANO AVE,SF,94112,B09,15,833,3,3,3,false,,1,TRUCK,1,9,11,Outer Mission,"(37.7197751526902, -122.445244277465)",103640246-T15 +160493083,67,16019832,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:20:01 PM,02/18/2016 06:21:16 PM,02/18/2016 06:21:54 PM,02/18/2016 06:21:58 PM,02/18/2016 06:31:57 PM,02/18/2016 06:43:28 PM,02/18/2016 06:48:48 PM,Code 2 Transport,02/18/2016 07:00:20 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160493083-67 +160240439,70,16009418,Medical Incident,01/24/2016,01/23/2016,01/24/2016 03:09:26 AM,01/24/2016 03:10:42 AM,01/24/2016 03:11:07 AM,01/24/2016 03:11:43 AM,01/24/2016 03:18:35 AM,01/24/2016 03:33:27 AM,01/24/2016 03:41:37 AM,Code 3 Transport,01/24/2016 03:52:48 AM,100 Block of ATOLL CIR,San Francisco,94124,B10,17,6665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7283734093401, -122.373093223305)",160240439-70 +111650355,E29,11054580,Medical Incident,06/14/2011,06/14/2011,06/14/2011 08:24:29 PM,06/14/2011 08:25:31 PM,06/14/2011 08:26:36 PM,06/14/2011 08:28:42 PM,06/14/2011 08:31:03 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/14/2011 08:57:57 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111650355-E29 +160060498,79,16002275,Medical Incident,01/06/2016,01/05/2016,01/06/2016 06:46:45 AM,01/06/2016 06:46:45 AM,01/06/2016 06:47:05 AM,01/06/2016 06:47:09 AM,01/06/2016 06:50:45 AM,01/06/2016 07:05:32 AM,01/06/2016 07:11:45 AM,Code 2 Transport,01/06/2016 07:24:49 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160060498-79 +111020016,E01,11033694,Structure Fire,04/12/2011,04/11/2011,04/12/2011 01:30:13 AM,04/12/2011 01:30:14 AM,04/12/2011 01:31:30 AM,04/12/2011 01:32:28 AM,04/12/2011 01:34:35 AM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/12/2011 01:35:16 AM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",111020016-E01 +130470300,AM02,13016096,Medical Incident,02/16/2013,02/16/2013,02/16/2013 04:24:24 PM,02/16/2013 04:24:47 PM,02/16/2013 04:27:42 PM,02/16/2013 04:28:09 PM,02/16/2013 04:30:34 PM,02/16/2013 04:41:03 PM,02/16/2013 05:10:20 PM,Code 2 Transport,02/16/2013 05:15:33 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",130470300-AM02 +111540060,E07,11050781,Medical Incident,06/03/2011,06/02/2011,06/03/2011 07:06:02 AM,06/03/2011 07:06:34 AM,06/03/2011 07:06:53 AM,06/03/2011 07:08:11 AM,06/03/2011 07:10:22 AM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/03/2011 07:12:52 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",111540060-E07 +110020232,E05,11000708,Medical Incident,01/02/2011,01/02/2011,01/02/2011 04:32:12 PM,01/02/2011 04:32:44 PM,01/02/2011 04:32:57 PM,01/02/2011 04:35:48 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/02/2011 04:38:34 PM,1800 Block of CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,true,,1,ENGINE,3,4,2,Western Addition,"(37.7900019443199, -122.424784565831)",110020232-E05 +123070266,58,12102080,Medical Incident,11/02/2012,11/02/2012,11/02/2012 04:21:23 PM,11/02/2012 04:23:18 PM,11/02/2012 04:23:58 PM,11/02/2012 04:26:19 PM,11/02/2012 04:28:22 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Other,11/02/2012 04:37:38 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",123070266-58 +112260045,89,11074559,Medical Incident,08/14/2011,08/13/2011,08/14/2011 03:13:25 AM,08/14/2011 03:14:41 AM,08/14/2011 03:16:00 AM,08/14/2011 03:16:05 AM,08/14/2011 03:27:23 AM,08/14/2011 03:40:20 AM,08/14/2011 03:58:37 AM,Code 2 Transport,08/14/2011 04:23:28 AM,1500 Block of NEWHALL ST,SF,94124,B10,17,6471,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7347575593913, -122.393114279913)",112260045-89 +131050026,B10,13035142,Medical Incident,04/15/2013,04/14/2013,04/15/2013 02:24:07 AM,04/15/2013 02:24:08 AM,04/15/2013 02:24:24 AM,04/15/2013 02:27:01 AM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 02:31:46 AM,0 Block of REUEL CT,SF,94124,B10,25,652,E,E,3,false,Potentially Life-Threatening,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",131050026-B10 +160852508,66,16033847,Medical Incident,03/25/2016,03/25/2016,03/25/2016 03:59:30 PM,03/25/2016 04:01:44 PM,03/25/2016 04:02:12 PM,03/25/2016 04:03:13 PM,03/25/2016 04:08:10 PM,03/25/2016 04:17:15 PM,03/25/2016 04:32:43 PM,Code 3 Transport,03/25/2016 05:02:33 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,2,3,3,true,Non Life-threatening,1,MEDIC,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",160852508-66 +121300213,D2,12043284,Structure Fire,05/09/2012,05/09/2012,05/09/2012 02:42:47 PM,05/09/2012 02:43:23 PM,05/09/2012 02:43:35 PM,05/09/2012 02:43:50 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Other,05/09/2012 02:50:02 PM,KIRKHAM ST/10TH AV,SF,94122,B08,22,7344,3,3,3,false,Fire,1,CHIEF,7,8,7,Inner Sunset,"(37.7602645629643, -122.467121689637)",121300213-D2 +122580236,E28,12085328,Medical Incident,09/14/2012,09/14/2012,09/14/2012 04:17:22 PM,09/14/2012 04:17:46 PM,09/14/2012 04:17:58 PM,09/14/2012 04:19:30 PM,09/14/2012 04:22:05 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/14/2012 04:30:31 PM,TAYLOR ST/JEFFERSON ST,SF,94133,B01,28,945,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.808214052974, -122.41580242723)",122580236-E28 +112690389,KM07,11089079,Medical Incident,09/26/2011,09/26/2011,09/26/2011 11:49:26 PM,09/26/2011 11:50:44 PM,09/26/2011 11:51:17 PM,09/26/2011 11:52:29 PM,09/26/2011 11:56:58 PM,09/27/2011 12:06:40 AM,09/27/2011 12:25:49 AM,Code 2 Transport,09/27/2011 12:59:05 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",112690389-KM07 +113310229,AM18,11109752,Medical Incident,11/27/2011,11/27/2011,11/27/2011 05:59:04 PM,11/27/2011 05:59:46 PM,11/27/2011 06:00:22 PM,11/27/2011 06:01:16 PM,11/27/2011 06:04:52 PM,11/27/2011 06:21:36 PM,11/27/2011 06:29:14 PM,Code 2 Transport,11/27/2011 07:19:05 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",113310229-AM18 +160592533,KM01,16023616,Medical Incident,02/28/2016,02/28/2016,02/28/2016 05:51:50 PM,02/28/2016 05:53:23 PM,02/28/2016 05:53:49 PM,02/28/2016 05:55:07 PM,02/28/2016 06:03:11 PM,02/28/2016 06:25:56 PM,02/28/2016 06:59:08 PM,Code 2 Transport,02/28/2016 07:29:00 PM,2200 Block of 47TH AV,San Francisco,94116,B08,23,7713,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7445292906958, -122.505821929462)",160592533-KM01 +160111673,55,16004395,Medical Incident,01/11/2016,01/11/2016,01/11/2016 01:04:10 PM,01/11/2016 01:06:01 PM,01/11/2016 01:06:17 PM,01/11/2016 01:06:24 PM,01/11/2016 01:14:24 PM,01/11/2016 01:48:04 PM,01/11/2016 02:09:06 PM,Code 2 Transport,01/11/2016 02:59:48 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160111673-55 +120780328,KM02,12025996,Medical Incident,03/18/2012,03/18/2012,03/18/2012 06:44:28 PM,03/18/2012 06:46:01 PM,03/18/2012 06:46:47 PM,03/18/2012 06:47:18 PM,03/18/2012 06:56:49 PM,03/18/2012 07:17:37 PM,03/18/2012 07:28:49 PM,Code 2 Transport,03/18/2012 07:47:40 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120780328-KM02 +160091124,86,16003596,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:33:23 AM,01/09/2016 10:33:38 AM,01/09/2016 10:36:12 AM,01/09/2016 10:36:19 AM,01/09/2016 10:39:44 AM,01/09/2016 11:18:09 AM,01/09/2016 11:18:10 AM,Code 2 Transport,01/09/2016 11:46:34 AM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7546325890357, -122.41873973942)",160091124-86 +122150071,65,12071268,Traffic Collision,08/02/2012,08/02/2012,08/02/2012 08:16:32 AM,08/02/2012 08:16:50 AM,08/02/2012 08:17:37 AM,08/02/2012 08:18:06 AM,08/02/2012 08:25:07 AM,08/02/2012 08:44:28 AM,08/02/2012 08:54:12 AM,Code 2 Transport,08/02/2012 09:24:04 AM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7732232142847, -122.402889298062)",122150071-65 +110480314,T13,11015975,Structure Fire,02/17/2011,02/17/2011,02/17/2011 06:50:58 PM,02/17/2011 06:51:54 PM,02/17/2011 06:52:26 PM,02/17/2011 06:53:42 PM,02/17/2011 06:56:01 PM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 07:17:04 PM,300 Block of MAIN ST,SF,94105,B03,35,2117,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",110480314-T13 +110950311,E13,11031656,Structure Fire,04/05/2011,04/05/2011,04/05/2011 08:52:08 PM,04/05/2011 08:53:09 PM,04/05/2011 08:53:54 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,Other,04/06/2011 12:06:16 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,3,ENGINE,48,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",110950311-E13 +122880161,E12,12095264,Traffic Collision,10/14/2012,10/14/2012,10/14/2012 12:16:44 PM,10/14/2012 12:16:44 PM,10/14/2012 12:17:02 PM,10/14/2012 12:17:33 PM,10/14/2012 12:21:08 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 12:35:52 PM,OAK ST/SHRADER ST,SF,94117,B05,12,4544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7712298276373, -122.452241777167)",122880161-E12 +111990064,58,11065553,Medical Incident,07/18/2011,07/17/2011,07/18/2011 07:52:31 AM,07/18/2011 07:53:52 AM,07/18/2011 07:54:45 AM,07/18/2011 07:54:57 AM,07/18/2011 07:58:09 AM,07/18/2011 08:12:14 AM,07/18/2011 08:27:21 AM,Code 2 Transport,07/18/2011 09:06:21 AM,1ST ST/HARRISON ST,SF,94105,B03,35,2136,3,3,3,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860675314585, -122.392936686281)",111990064-58 +160813168,61,16032314,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:40:40 PM,03/21/2016 06:40:40 PM,03/21/2016 06:40:57 PM,03/21/2016 06:41:08 PM,03/21/2016 06:54:19 PM,03/21/2016 07:03:07 PM,03/21/2016 07:20:39 PM,Code 2 Transport,03/21/2016 07:52:26 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160813168-61 +111120380,59,11037173,Medical Incident,04/22/2011,04/22/2011,04/22/2011 10:40:11 PM,04/22/2011 10:40:43 PM,04/22/2011 10:41:44 PM,04/22/2011 10:42:04 PM,04/22/2011 10:54:41 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,No Merit,04/22/2011 11:05:08 PM,300 Block of MOSCOW ST,SF,94112,B09,43,6155,2,2,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7220697351307, -122.427115807241)",111120380-59 +160291589,55,16011434,Medical Incident,01/29/2016,01/29/2016,01/29/2016 12:29:49 PM,01/29/2016 12:31:22 PM,01/29/2016 12:33:31 PM,01/29/2016 12:33:41 PM,01/29/2016 12:57:23 PM,01/29/2016 01:24:16 PM,01/29/2016 01:50:03 PM,Code 2 Transport,01/29/2016 02:33:04 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160291589-55 +130550332,84,13018699,Medical Incident,02/24/2013,02/24/2013,02/24/2013 09:51:17 PM,02/24/2013 09:52:46 PM,02/24/2013 09:55:23 PM,02/24/2013 09:56:03 PM,02/24/2013 10:04:07 PM,02/24/2013 10:23:27 PM,04/25/2016 01:54:08 PM,Code 2 Transport,02/24/2013 10:54:24 PM,GOLDEN GATE AV/GOUGH ST,SF,94102,B02,5,3263,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.780611620733, -122.423730984614)",130550332-84 +113230106,T08,11107240,Structure Fire,11/19/2011,11/19/2011,11/19/2011 08:56:29 AM,11/19/2011 08:56:29 AM,11/19/2011 08:57:57 AM,11/19/2011 09:00:13 AM,11/19/2011 09:02:37 AM,04/25/2016 02:01:34 PM,04/25/2016 02:01:34 PM,Other,11/19/2011 09:04:23 AM,6TH ST/BRYANT ST,SF,94107,B03,8,2255,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7760393195221, -122.402524096783)",113230106-T08 +131530045,E01,13051714,Medical Incident,06/02/2013,06/01/2013,06/02/2013 03:34:12 AM,06/02/2013 03:35:16 AM,06/02/2013 03:37:33 AM,06/02/2013 03:38:30 AM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/02/2013 03:38:36 AM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",131530045-E01 +122350219,KM11,12077902,Medical Incident,08/22/2012,08/22/2012,08/22/2012 03:53:42 PM,08/22/2012 03:55:13 PM,08/22/2012 03:57:51 PM,08/22/2012 03:58:31 PM,08/22/2012 04:15:59 PM,08/22/2012 04:16:05 PM,08/22/2012 04:52:05 PM,Code 2 Transport,08/22/2012 05:02:58 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",122350219-KM11 +122050088,E36,12068093,Medical Incident,07/23/2012,07/23/2012,07/23/2012 08:40:47 AM,07/23/2012 08:41:08 AM,07/23/2012 08:41:53 AM,07/23/2012 08:43:42 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/23/2012 09:36:30 AM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7773515638882, -122.418857320448)",122050088-E36 +160233106,KM11,16009290,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:20:19 PM,01/23/2016 07:22:01 PM,01/23/2016 07:22:22 PM,01/23/2016 07:23:00 PM,01/23/2016 07:25:59 PM,01/23/2016 07:50:45 PM,01/23/2016 08:04:45 PM,Code 2 Transport,01/23/2016 08:34:40 PM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",160233106-KM11 +133240051,E14,13109906,Alarms,11/20/2013,11/19/2013,11/20/2013 05:29:46 AM,11/20/2013 05:30:21 AM,11/20/2013 05:31:16 AM,11/20/2013 05:32:59 AM,11/20/2013 05:35:18 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 05:42:30 AM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",133240051-E14 +160443225,KM07,16017839,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:10:35 PM,02/13/2016 08:11:19 PM,02/13/2016 08:11:36 PM,02/13/2016 08:12:02 PM,02/13/2016 08:16:09 PM,02/13/2016 08:37:05 PM,02/13/2016 09:08:29 PM,Code 2 Transport,02/13/2016 09:16:51 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160443225-KM07 +131750164,E05,13059357,Medical Incident,06/24/2013,06/24/2013,06/24/2013 12:14:52 PM,06/24/2013 12:15:32 PM,06/24/2013 12:15:47 PM,06/24/2013 12:16:34 PM,06/24/2013 12:18:30 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 12:21:02 PM,EDDY ST/POLK ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",131750164-E05 +160412292,56,16016503,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:08:14 PM,02/10/2016 03:09:28 PM,02/10/2016 03:10:04 PM,02/10/2016 03:10:40 PM,02/10/2016 03:17:01 PM,02/10/2016 03:34:58 PM,02/10/2016 04:00:24 PM,Code 2 Transport,02/10/2016 04:51:16 PM,MONTGOMERY ST/BUSH ST,San Francisco,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",160412292-56 +122280119,60,12075500,Medical Incident,08/15/2012,08/15/2012,08/15/2012 10:12:20 AM,08/15/2012 10:13:22 AM,08/15/2012 10:13:48 AM,08/15/2012 10:14:01 AM,08/15/2012 10:17:59 AM,08/15/2012 10:36:51 AM,08/15/2012 10:50:16 AM,Code 2 Transport,08/15/2012 11:06:28 AM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,false,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",122280119-60 +160811162,KM05,16032118,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:24:29 AM,03/21/2016 10:24:29 AM,03/21/2016 10:25:06 AM,03/21/2016 10:26:19 AM,03/21/2016 10:32:55 AM,03/21/2016 10:37:23 AM,03/21/2016 10:55:38 AM,Code 2 Transport,03/21/2016 11:40:19 AM,400 Block of DE HARO ST,San Francisco,94107,B02,29,2413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Potrero Hill,"(37.7641962628257, -122.40160796921)",160811162-KM05 +130320100,KM14,13010851,Medical Incident,02/01/2013,02/01/2013,02/01/2013 09:46:19 AM,02/01/2013 09:47:21 AM,02/01/2013 09:47:54 AM,02/01/2013 09:48:37 AM,02/01/2013 09:52:33 AM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,02/01/2013 09:53:28 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",130320100-KM14 +112490252,T03,11082179,Structure Fire,09/06/2011,09/06/2011,09/06/2011 03:20:44 PM,09/06/2011 03:21:24 PM,09/06/2011 03:22:05 PM,09/06/2011 03:22:57 PM,09/06/2011 03:24:18 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 03:55:13 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,TRUCK,2,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",112490252-T03 +110270295,B06,11008971,Structure Fire,01/27/2011,01/27/2011,01/27/2011 04:43:50 PM,01/27/2011 04:45:15 PM,01/27/2011 04:46:01 PM,01/27/2011 04:48:03 PM,01/27/2011 04:54:21 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 05:04:17 PM,300 Block of BRIDGEVIEW DR,SF,94124,B10,42,6447,3,3,3,false,,1,CHIEF,6,10,10,Bayview Hunters Point,"(37.7325995787535, -122.398677012353)",110270295-B06 +160051643,KM02,16001992,Medical Incident,01/05/2016,01/05/2016,01/05/2016 12:37:29 PM,01/05/2016 12:39:35 PM,01/05/2016 12:40:37 PM,01/05/2016 12:41:18 PM,01/05/2016 12:54:46 PM,01/05/2016 01:17:17 PM,01/05/2016 01:47:38 PM,Code 2 Transport,01/05/2016 02:21:24 PM,700 Block of DELANO AVE,San Francisco,94112,B09,15,833,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7198237591639, -122.445368299303)",160051643-KM02 +160210453,67,16008249,Medical Incident,01/21/2016,01/20/2016,01/21/2016 05:14:26 AM,01/21/2016 05:19:09 AM,01/21/2016 05:20:33 AM,01/21/2016 05:20:40 AM,01/21/2016 05:32:28 AM,01/21/2016 06:02:06 AM,01/21/2016 06:09:33 AM,Code 2 Transport,01/21/2016 07:10:32 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160210453-67 +132090211,67,13070708,Medical Incident,07/28/2013,07/28/2013,07/28/2013 02:04:11 PM,07/28/2013 02:05:23 PM,07/28/2013 02:09:43 PM,07/28/2013 02:09:59 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 02:15:26 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132090211-67 +140570058,E01,14019121,Medical Incident,02/26/2014,02/25/2014,02/26/2014 05:12:53 AM,02/26/2014 05:14:57 AM,02/26/2014 05:15:03 AM,02/26/2014 05:17:00 AM,02/26/2014 05:20:37 AM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,No Merit,02/26/2014 05:30:02 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",140570058-E01 +111820042,T18,11059953,Structure Fire,07/01/2011,06/30/2011,07/01/2011 04:47:24 AM,07/01/2011 04:47:24 AM,07/01/2011 04:47:35 AM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,Other,07/01/2011 04:49:59 AM,17TH AV/RIVERA ST,SF,94116,B08,40,7375,3,3,3,false,,1,TRUCK,2,8,7,West of Twin Peaks,"(37.7468740848656, -122.473816078327)",111820042-T18 +133210236,KM04,13109093,Medical Incident,11/17/2013,11/17/2013,11/17/2013 04:18:39 PM,11/17/2013 04:19:47 PM,11/17/2013 04:20:08 PM,11/17/2013 04:20:33 PM,11/17/2013 04:24:17 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Patient Declined Transport,11/17/2013 05:01:33 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",133210236-KM04 +120850016,84,12028095,Structure Fire,03/25/2012,03/24/2012,03/25/2012 01:00:14 AM,03/25/2012 01:00:14 AM,03/25/2012 01:00:18 AM,03/25/2012 01:05:00 AM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 01:05:37 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7571666434801, -122.416719595074)",120850016-84 +133050254,E06,13103683,Medical Incident,11/01/2013,11/01/2013,11/01/2013 01:15:40 PM,11/01/2013 01:16:13 PM,11/01/2013 01:17:48 PM,11/01/2013 01:19:37 PM,11/01/2013 01:21:27 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/01/2013 01:25:12 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",133050254-E06 +131360117,B01,13045820,Traffic Collision,05/16/2013,05/16/2013,05/16/2013 09:36:02 AM,05/16/2013 09:37:10 AM,05/16/2013 09:38:50 AM,04/25/2016 01:52:46 PM,05/16/2013 09:39:06 AM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 09:44:13 AM,WEBSTER ST/SUTTER ST,SF,94115,B04,38,3542,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,4,5,Japantown,"(37.7863039619679, -122.431552025504)",131360117-B01 +160240901,62,16009470,Medical Incident,01/24/2016,01/24/2016,01/24/2016 08:54:30 AM,01/24/2016 08:55:57 AM,01/24/2016 08:58:14 AM,01/24/2016 08:58:39 AM,01/24/2016 09:06:14 AM,01/24/2016 09:18:37 AM,01/24/2016 09:26:48 AM,Code 2 Transport,01/24/2016 10:16:34 AM,DIVISADERO ST/OFARRELL ST,San Francisco,94115,B05,5,4153,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7824504809987, -122.439297623944)",160240901-62 +160412972,68,16016578,Medical Incident,02/10/2016,02/10/2016,02/10/2016 05:55:15 PM,02/10/2016 05:57:09 PM,02/10/2016 05:58:38 PM,02/10/2016 05:58:50 PM,02/10/2016 06:15:43 PM,02/10/2016 06:28:50 PM,02/10/2016 06:49:53 PM,Unable to Locate,02/10/2016 07:13:28 PM,3300 Block of 21ST ST,San Francisco,94110,B06,7,5456,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.7567806311127, -122.422218844187)",160412972-68 +111730327,92,11057203,Medical Incident,06/22/2011,06/22/2011,06/22/2011 08:57:14 PM,06/22/2011 08:57:15 PM,06/22/2011 08:58:40 PM,06/22/2011 08:58:52 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,04/25/2016 02:04:01 PM,500 Block of MARKET ST,SF,94104,B01,13,1236,2,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7898275380016, -122.400837514889)",111730327-92 +112220007,T07,11073189,Structure Fire,08/10/2011,08/09/2011,08/10/2011 12:27:05 AM,08/10/2011 12:27:05 AM,08/10/2011 12:27:19 AM,08/10/2011 12:28:55 AM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/10/2011 12:31:04 AM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",112220007-T07 +133210156,66,13109021,Medical Incident,11/17/2013,11/17/2013,11/17/2013 11:52:16 AM,11/17/2013 11:53:35 AM,11/17/2013 11:54:18 AM,11/17/2013 11:54:29 AM,11/17/2013 11:55:12 AM,11/17/2013 12:16:15 PM,11/17/2013 12:21:39 PM,Code 2 Transport,11/17/2013 12:57:13 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",133210156-66 +160523197,64,16020966,Medical Incident,02/21/2016,02/21/2016,02/21/2016 08:35:27 PM,02/21/2016 08:35:27 PM,02/21/2016 08:35:38 PM,02/21/2016 08:35:49 PM,02/21/2016 08:48:20 PM,02/21/2016 09:03:38 PM,02/21/2016 09:19:29 PM,Code 2 Transport,02/21/2016 10:19:40 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160523197-64 +111860350,E19,11061605,Medical Incident,07/05/2011,07/05/2011,07/05/2011 07:20:46 PM,07/05/2011 07:21:17 PM,07/05/2011 07:21:38 PM,04/25/2016 02:03:48 PM,07/05/2011 07:29:36 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 07:41:38 PM,200 Block of STRATFORD DR,SF,94132,B09,19,8752,3,2,2,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7206719216771, -122.473717580095)",111860350-E19 +112250177,T06,11074333,Structure Fire,08/13/2011,08/13/2011,08/13/2011 12:30:17 PM,08/13/2011 12:30:17 PM,08/13/2011 12:30:25 PM,08/13/2011 12:31:36 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 12:32:54 PM,16TH ST/CHURCH ST,SF,94114,B02,6,5234,3,3,3,false,,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7645076140541, -122.428665130308)",112250177-T06 +121060201,B01,12035146,Alarms,04/15/2012,04/15/2012,04/15/2012 01:55:28 PM,04/15/2012 01:55:36 PM,04/15/2012 01:56:12 PM,04/15/2012 01:57:54 PM,04/15/2012 02:01:15 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/15/2012 02:06:34 PM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,false,Alarm,1,CHIEF,2,1,3,North Beach,"(37.8070220097095, -122.418095295202)",121060201-B01 +132110287,E35,13071460,Water Rescue,07/30/2013,07/30/2013,07/30/2013 08:09:48 PM,07/30/2013 08:10:29 PM,07/30/2013 08:12:57 PM,07/30/2013 08:13:48 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/30/2013 08:19:33 PM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,true,Fire,1,ENGINE,6,None,3,North Beach,"(37.8081679785862, -122.416634717802)",132110287-E35 +111200066,E37,11039490,Outside Fire,04/30/2011,04/29/2011,04/30/2011 04:31:40 AM,04/30/2011 04:32:53 AM,04/30/2011 04:33:09 AM,04/30/2011 04:35:00 AM,04/30/2011 04:36:24 AM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/30/2011 04:54:47 AM,25TH ST/CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",111200066-E37 +160811600,AM02,16032165,Other,03/21/2016,03/21/2016,03/21/2016 12:19:32 PM,03/21/2016 12:19:32 PM,03/21/2016 12:22:39 PM,03/21/2016 12:22:39 PM,03/21/2016 12:40:19 PM,03/21/2016 12:40:21 PM,03/21/2016 01:06:03 PM,Code 2 Transport,03/21/2016 01:33:02 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,false,Alarm,1,PRIVATE,2,6,9,Mission,"(37.7596933117757, -122.414834950578)",160811600-AM02 +160032012,68,16001233,Medical Incident,01/03/2016,01/03/2016,01/03/2016 03:46:38 PM,01/03/2016 03:48:34 PM,01/03/2016 03:48:50 PM,01/03/2016 03:48:58 PM,01/03/2016 03:53:23 PM,01/03/2016 04:05:38 PM,01/03/2016 04:18:33 PM,Code 2 Transport,01/03/2016 04:43:42 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",160032012-68 +140800201,E05,14027052,Medical Incident,03/21/2014,03/21/2014,03/21/2014 01:35:47 PM,03/21/2014 01:37:20 PM,03/21/2014 01:38:31 PM,03/21/2014 01:39:39 PM,03/21/2014 01:49:48 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/21/2014 02:11:21 PM,300 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",140800201-E05 +160391429,KM12,16015581,Medical Incident,02/08/2016,02/08/2016,02/08/2016 11:35:39 AM,02/08/2016 11:37:10 AM,02/08/2016 11:38:04 AM,02/08/2016 11:39:07 AM,02/08/2016 11:50:29 AM,02/08/2016 12:09:25 PM,02/08/2016 12:26:49 PM,Code 2 Transport,02/08/2016 01:05:57 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2246,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7829058754034, -122.40679650522)",160391429-KM12 +160752399,85,16029772,Medical Incident,03/15/2016,03/15/2016,03/15/2016 03:25:01 PM,03/15/2016 03:25:01 PM,03/15/2016 03:25:45 PM,03/15/2016 03:25:57 PM,03/15/2016 03:31:20 PM,03/15/2016 04:01:56 PM,03/15/2016 04:15:08 PM,Code 2 Transport,03/15/2016 05:25:29 PM,OAKDALE AV/LOOMIS ST,San Francisco,94124,B10,9,6377,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7425207341377, -122.404306293429)",160752399-85 +120110085,E29,12003736,Traffic Collision,01/11/2012,01/11/2012,01/11/2012 09:45:33 AM,01/11/2012 09:45:34 AM,01/11/2012 09:46:26 AM,01/11/2012 09:46:46 AM,01/11/2012 09:49:23 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 10:00:09 AM,300 Block of 10TH ST,SF,94103,B02,36,2343,2,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7724036771499, -122.412409765245)",120110085-E29 +110630046,T18,11020585,Structure Fire,03/04/2011,03/03/2011,03/04/2011 03:54:45 AM,03/04/2011 03:54:45 AM,03/04/2011 03:55:00 AM,03/04/2011 03:56:50 AM,04/25/2016 02:05:48 PM,04/25/2016 02:05:48 PM,04/25/2016 02:05:48 PM,Other,03/04/2011 03:58:38 AM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",110630046-T18 +110600093,E18,11019629,Medical Incident,03/01/2011,03/01/2011,03/01/2011 09:47:25 AM,03/01/2011 09:47:49 AM,03/01/2011 09:48:06 AM,03/01/2011 09:50:20 AM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 09:51:24 AM,2300 Block of 26TH AVE,SF,94116,B08,40,7471,3,3,3,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7436566730271, -122.483188286669)",110600093-E18 +121640006,E03,12054256,Medical Incident,06/12/2012,06/11/2012,06/12/2012 12:28:19 AM,06/12/2012 12:29:02 AM,06/12/2012 12:29:23 AM,06/12/2012 12:30:49 AM,06/12/2012 12:32:48 AM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/12/2012 12:41:31 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",121640006-E03 +110460220,RC2,11015259,Traffic Collision,02/15/2011,02/15/2011,02/15/2011 02:29:14 PM,02/15/2011 02:30:20 PM,02/15/2011 02:30:34 PM,02/15/2011 02:32:16 PM,02/15/2011 02:40:27 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 02:52:44 PM,SUNSET BL/OCEAN AV,SF,94132,B08,19,7614,3,3,3,true,,1,RESCUE CAPTAIN,5,8,7,Sunset/Parkside,"(37.731909880446, -122.493718802216)",110460220-RC2 +160783621,KM07,16031176,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:43:36 PM,03/18/2016 08:44:13 PM,03/18/2016 08:44:27 PM,03/18/2016 08:45:11 PM,03/18/2016 08:50:36 PM,03/18/2016 09:03:30 PM,03/18/2016 09:21:52 PM,Code 2 Transport,03/18/2016 10:17:16 PM,1500 Block of STOCKTON ST,San Francisco,94133,B01,28,1334,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.799975359605, -122.40903359976)",160783621-KM07 +160050517,63,16001866,Medical Incident,01/05/2016,01/04/2016,01/05/2016 07:00:09 AM,01/05/2016 07:00:09 AM,01/05/2016 07:04:28 AM,01/05/2016 07:04:49 AM,01/05/2016 07:13:15 AM,01/05/2016 07:27:37 AM,01/05/2016 07:52:02 AM,Code 2 Transport,01/05/2016 08:37:26 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160050517-63 +131160251,E11,13039144,Traffic Collision,04/26/2013,04/26/2013,04/26/2013 07:27:15 PM,04/26/2013 07:27:15 PM,04/26/2013 07:28:24 PM,04/26/2013 07:29:45 PM,04/26/2013 07:35:37 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Unable to Locate,04/26/2013 07:37:34 PM,CAPP ST/21ST ST,SF,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7571009328923, -122.417811900579)",131160251-E11 +121370062,T01,12045421,Structure Fire,05/16/2012,05/15/2012,05/16/2012 06:20:03 AM,05/16/2012 06:20:03 AM,05/16/2012 06:22:06 AM,05/16/2012 06:23:42 AM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,Other,05/16/2012 06:23:47 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",121370062-T01 +140040379,93,14001633,Medical Incident,01/04/2014,01/04/2014,01/04/2014 11:00:17 PM,01/04/2014 11:01:06 PM,01/04/2014 11:01:38 PM,01/04/2014 11:02:19 PM,01/04/2014 11:09:50 PM,01/04/2014 11:41:35 PM,01/04/2014 11:51:17 PM,Code 3 Transport,01/05/2014 01:12:41 AM,2300 Block of 34TH AVE,SF,94116,B08,18,7555,,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7432793416407, -122.491765256117)",140040379-93 +130990348,T17,13033382,Structure Fire,04/09/2013,04/09/2013,04/09/2013 07:27:04 PM,04/09/2013 07:27:05 PM,04/09/2013 07:27:52 PM,04/25/2016 01:53:23 PM,04/09/2013 07:28:03 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/09/2013 07:30:38 PM,HUDSON AV/CASHMERE ST,SF,94124,B10,25,652,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",130990348-T17 +112490015,E01,11081990,Medical Incident,09/06/2011,09/05/2011,09/06/2011 01:46:59 AM,09/06/2011 01:47:36 AM,09/06/2011 01:48:25 AM,09/06/2011 01:48:33 AM,09/06/2011 01:50:16 AM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/06/2011 02:04:03 AM,MISSION ST/7TH ST,SF,94103,B02,1,2315,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",112490015-E01 +132130107,E19,13071908,Medical Incident,08/01/2013,08/01/2013,08/01/2013 10:21:27 AM,08/01/2013 10:26:16 AM,08/01/2013 10:26:29 AM,08/01/2013 10:27:09 AM,08/01/2013 10:28:11 AM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 10:38:07 AM,19TH AV/SLOAT BL,SF,94132,B08,19,7413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",132130107-E19 +132620237,E06,13088786,Alarms,09/19/2013,09/19/2013,09/19/2013 02:44:13 PM,09/19/2013 02:44:58 PM,09/19/2013 02:45:10 PM,09/19/2013 02:46:20 PM,09/19/2013 02:47:47 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 02:50:19 PM,0 Block of FORD ST,SF,94114,B05,6,5252,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7618326995674, -122.431755549864)",132620237-E06 +160580192,KM03,16022960,Medical Incident,02/27/2016,02/26/2016,02/27/2016 01:23:11 AM,02/27/2016 01:23:42 AM,02/27/2016 01:24:41 AM,02/27/2016 01:26:00 AM,02/27/2016 01:34:21 AM,02/27/2016 01:53:35 AM,02/27/2016 02:26:00 AM,Code 3 Transport,02/27/2016 03:11:24 AM,800 Block of LISBON ST,San Francisco,94112,B09,43,6174,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7158405916513, -122.438322483619)",160580192-KM03 +120570045,96,12018688,Medical Incident,02/26/2012,02/25/2012,02/26/2012 02:26:24 AM,02/26/2012 02:28:29 AM,02/26/2012 02:28:53 AM,02/26/2012 02:29:00 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,04/25/2016 01:59:58 PM,1500 Block of 32ND AVE,SF,94122,B08,18,7535,1,1,2,true,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7582822731948, -122.490798209492)",120570045-96 +160903608,71,16035874,Medical Incident,03/30/2016,03/30/2016,03/30/2016 08:30:24 PM,03/30/2016 08:31:02 PM,03/30/2016 08:31:16 PM,03/30/2016 08:32:06 PM,03/30/2016 08:37:35 PM,03/30/2016 08:55:59 PM,03/30/2016 09:10:47 PM,Code 2 Transport,03/30/2016 09:36:24 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160903608-71 +112450012,E31,11080629,Medical Incident,09/02/2011,09/01/2011,09/02/2011 01:15:45 AM,09/02/2011 01:16:22 AM,09/02/2011 01:17:01 AM,09/02/2011 01:19:06 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 01:21:36 AM,700 Block of 20TH AVE,SF,94121,B07,31,7166,3,2,2,false,,1,ENGINE,4,7,1,Outer Richmond,"(37.7737509765237, -122.478835238462)",112450012-E31 +112570172,B01,11084726,Alarms,09/14/2011,09/14/2011,09/14/2011 01:44:22 PM,09/14/2011 01:45:23 PM,09/14/2011 01:45:30 PM,09/14/2011 01:45:56 PM,09/14/2011 01:50:12 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Fire,09/14/2011 01:53:52 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",112570172-B01 +110610187,E08,11020003,Traffic Collision,03/02/2011,03/02/2011,03/02/2011 12:21:12 PM,03/02/2011 12:21:22 PM,03/02/2011 12:24:25 PM,03/02/2011 12:25:40 PM,03/02/2011 12:27:11 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 12:36:18 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",110610187-E08 +120390226,E10,12013029,Citizen Assist / Service Call,02/08/2012,02/08/2012,02/08/2012 02:54:44 PM,02/08/2012 02:55:31 PM,02/08/2012 02:55:43 PM,02/08/2012 02:56:41 PM,02/08/2012 02:59:24 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Fire,02/08/2012 03:05:55 PM,200 Block of LAUREL ST,SF,94118,B04,10,4423,3,3,3,true,Alarm,1,ENGINE,1,4,2,Presidio Heights,"(37.7890909654403, -122.450499393296)",120390226-E10 +112120120,60,11069903,Medical Incident,07/31/2011,07/31/2011,07/31/2011 10:13:45 AM,07/31/2011 10:15:17 AM,07/31/2011 10:15:26 AM,07/31/2011 10:19:07 AM,07/31/2011 10:21:39 AM,07/31/2011 10:35:41 AM,07/31/2011 10:53:21 AM,Code 2 Transport,07/31/2011 11:13:26 AM,300 Block of BUENAVISTAEAST AV,SF,94117,B05,21,5136,3,3,3,true,,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7667916111324, -122.440720545257)",112120120-60 +120820014,92,12027087,Medical Incident,03/22/2012,03/21/2012,03/22/2012 12:52:28 AM,03/22/2012 12:53:51 AM,03/22/2012 12:54:05 AM,03/22/2012 12:56:24 AM,03/22/2012 01:06:49 AM,03/22/2012 01:21:31 AM,03/22/2012 01:45:32 AM,Code 2 Transport,03/22/2012 02:54:00 AM,1300 Block of OAKDALE AVE,SF,94124,B10,17,6551,1,1,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7322528903335, -122.386360654311)",120820014-92 +160322496,82,16012662,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:33:28 PM,02/01/2016 04:34:08 PM,02/01/2016 04:35:23 PM,02/01/2016 04:39:11 PM,02/01/2016 04:44:36 PM,02/01/2016 04:59:56 PM,02/01/2016 05:14:47 PM,Code 2 Transport,02/01/2016 05:31:37 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160322496-82 +130110266,E26,13003818,Medical Incident,01/11/2013,01/11/2013,01/11/2013 04:03:44 PM,01/11/2013 04:05:10 PM,01/11/2013 04:05:30 PM,01/11/2013 04:07:19 PM,01/11/2013 04:09:00 PM,04/25/2016 01:54:51 PM,04/25/2016 01:54:51 PM,Fire,01/11/2013 04:15:51 PM,400 Block of GOLD MINE DR,SF,94131,B06,26,8153,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Glen Park,"(37.7394547622904, -122.437041860856)",130110266-E26 +160083628,81,16003419,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:01:15 PM,01/08/2016 09:03:34 PM,01/08/2016 09:04:56 PM,01/08/2016 09:05:24 PM,01/08/2016 09:10:46 PM,01/08/2016 09:24:37 PM,01/08/2016 09:51:32 PM,Code 2 Transport,01/08/2016 10:22:02 PM,1200 Block of SILVER AVE,San Francisco,94134,B10,42,6356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7308246140879, -122.410982908601)",160083628-81 +112980338,T06,11098984,Medical Incident,10/25/2011,10/25/2011,10/25/2011 07:30:29 PM,10/25/2011 07:30:44 PM,10/25/2011 07:31:42 PM,10/25/2011 07:32:56 PM,10/25/2011 07:35:14 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 07:41:05 PM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,3,3,false,,1,TRUCK,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",112980338-T06 +103250316,B01,10104294,Alarms,11/21/2010,11/21/2010,11/21/2010 08:41:54 PM,11/21/2010 08:43:04 PM,11/21/2010 08:43:14 PM,11/21/2010 08:44:30 PM,11/21/2010 08:47:32 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 08:52:01 PM,600 Block of TAYLOR ST,SF,94109,B01,3,1451,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7883158695122, -122.41185546654)",103250316-B01 +102470200,RS1,10078075,Medical Incident,09/04/2010,09/04/2010,09/04/2010 02:12:05 PM,09/04/2010 02:13:23 PM,09/04/2010 02:14:33 PM,09/04/2010 02:20:09 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/04/2010 02:22:14 PM,400 Block of FRANCISCO ST,SF,94133,B01,28,131,3,3,3,true,,1,RESCUE SQUAD,7,1,3,North Beach,"(37.8048443206433, -122.412608500536)",102470200-RS1 +160860137,KM03,16034037,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:56:12 AM,03/26/2016 12:57:24 AM,03/26/2016 12:58:01 AM,03/26/2016 12:58:26 AM,03/26/2016 01:08:49 AM,03/26/2016 01:24:53 AM,03/26/2016 01:36:36 AM,Code 2 Transport,03/26/2016 01:59:18 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160860137-KM03 +132060235,B08,13069780,Structure Fire,07/25/2013,07/25/2013,07/25/2013 03:49:03 PM,07/25/2013 03:49:03 PM,07/25/2013 03:49:22 PM,07/25/2013 03:50:32 PM,07/25/2013 03:55:27 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Fire,07/25/2013 04:01:18 PM,1300 Block of 42ND AVE,SF,94122,B08,23,767,3,3,3,false,Alarm,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7615412530771, -122.501774156594)",132060235-B08 +160052166,63,16002041,Medical Incident,01/05/2016,01/05/2016,01/05/2016 03:07:51 PM,01/05/2016 03:07:51 PM,01/05/2016 03:13:50 PM,01/05/2016 03:13:50 PM,01/05/2016 03:28:30 PM,01/05/2016 03:28:31 PM,01/05/2016 03:53:39 PM,Code 2 Transport,01/05/2016 03:58:17 PM,22ND ST/POTRERO AV,San Francisco,94110,B06,7,5474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",160052166-63 +130520076,93,13017496,Citizen Assist / Service Call,02/21/2013,02/21/2013,02/21/2013 08:18:24 AM,02/21/2013 08:20:59 AM,02/21/2013 08:28:32 AM,02/21/2013 08:28:47 AM,02/21/2013 08:35:17 AM,02/21/2013 08:55:07 AM,02/21/2013 09:16:04 AM,Code 2 Transport,02/21/2013 09:52:49 AM,2500 Block of 40TH AVE,SF,94116,B08,18,7617,3,3,3,true,Alarm,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7392586275396, -122.498062678439)",130520076-93 +122130306,E08,12070801,Alarms,07/31/2012,07/31/2012,07/31/2012 06:22:13 PM,07/31/2012 06:22:38 PM,07/31/2012 06:22:48 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 06:25:59 PM,10TH ST/BRYANT ST,SF,94103,B02,29,2345,3,3,3,true,Alarm,1,ENGINE,3,2,6,Mission,"(37.7703485160634, -122.409735890482)",122130306-E08 +160482775,82,16019426,Medical Incident,02/17/2016,02/17/2016,02/17/2016 04:40:49 PM,02/17/2016 04:40:49 PM,02/17/2016 04:42:42 PM,02/17/2016 04:43:04 PM,02/17/2016 04:47:31 PM,02/17/2016 05:00:07 PM,02/17/2016 05:19:03 PM,Code 2 Transport,02/17/2016 05:42:53 PM,5200 Block of 3RD ST,San Francisco,94124,B10,17,6536,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7297002538198, -122.392619682108)",160482775-82 +160470546,AM02,16018806,Medical Incident,02/16/2016,02/15/2016,02/16/2016 07:09:55 AM,02/16/2016 07:10:26 AM,02/16/2016 07:10:37 AM,02/16/2016 07:11:06 AM,02/16/2016 07:13:16 AM,02/16/2016 07:29:05 AM,02/16/2016 07:48:52 AM,Code 2 Transport,02/16/2016 08:24:45 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160470546-AM02 +122880283,79,12095370,Water Rescue,10/14/2012,10/14/2012,10/14/2012 06:10:45 PM,10/14/2012 06:12:07 PM,10/14/2012 06:13:41 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 06:14:54 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,E,3,true,Fire,1,MEDIC,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",122880283-79 +112040288,AM18,11067481,Medical Incident,07/23/2011,07/23/2011,07/23/2011 06:19:43 PM,07/23/2011 06:22:28 PM,07/23/2011 06:24:48 PM,07/23/2011 06:32:02 PM,07/23/2011 06:35:29 PM,07/23/2011 06:40:56 PM,07/23/2011 06:57:01 PM,Code 2 Transport,07/23/2011 07:24:12 PM,0 Block of RAMONA AVE,SF,94103,B02,6,5214,3,3,3,false,,1,PRIVATE,2,2,8,Mission,"(37.7671534336724, -122.425207841138)",112040288-AM18 +160070245,61,16002679,Medical Incident,01/07/2016,01/06/2016,01/07/2016 02:45:25 AM,01/07/2016 02:46:47 AM,01/07/2016 02:47:36 AM,01/07/2016 02:47:50 AM,01/07/2016 02:54:01 AM,01/07/2016 03:23:10 AM,01/07/2016 03:28:27 AM,Code 2 Transport,01/07/2016 04:23:38 AM,2700 Block of PINE ST,San Francisco,94115,B04,10,4156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7869521630601, -122.441071822801)",160070245-61 +133030148,B07,13102901,Traffic Collision,10/30/2013,10/30/2013,10/30/2013 12:20:07 PM,10/30/2013 12:20:09 PM,10/30/2013 12:23:33 PM,04/25/2016 01:50:01 PM,10/30/2013 12:25:03 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/30/2013 01:06:12 PM,10TH AV/GEARY BL,SF,94118,B07,31,7141,3,3,3,false,Potentially Life-Threatening,1,CHIEF,4,7,1,Inner Richmond,"(37.780822030508, -122.468563870264)",133030148-B07 +160372375,82,16014751,Medical Incident,02/06/2016,02/06/2016,02/06/2016 03:05:46 PM,02/06/2016 03:06:47 PM,02/06/2016 03:07:10 PM,02/06/2016 03:07:28 PM,02/06/2016 03:14:25 PM,02/06/2016 03:31:19 PM,02/06/2016 03:34:48 PM,Code 2 Transport,02/06/2016 04:07:36 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160372375-82 +103310134,82,10105929,Medical Incident,11/27/2010,11/27/2010,11/27/2010 10:50:11 AM,11/27/2010 10:53:40 AM,11/27/2010 10:53:58 AM,11/27/2010 10:54:35 AM,11/27/2010 11:01:36 AM,11/27/2010 11:22:38 AM,11/27/2010 11:33:36 AM,Code 2 Transport,11/27/2010 12:14:49 PM,1300 Block of POLK ST,SF,94109,B04,3,3122,2,2,2,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",103310134-82 +132280194,58,13076959,Medical Incident,08/16/2013,08/16/2013,08/16/2013 12:31:32 PM,08/16/2013 12:31:51 PM,08/16/2013 12:33:25 PM,08/16/2013 12:35:46 PM,08/16/2013 12:39:00 PM,08/16/2013 12:47:14 PM,08/16/2013 12:51:46 PM,Code 2 Transport,08/16/2013 01:15:54 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",132280194-58 +133550403,B04,13120849,Alarms,12/21/2013,12/21/2013,12/21/2013 10:04:25 PM,12/21/2013 10:05:14 PM,12/21/2013 10:05:27 PM,12/21/2013 10:06:14 PM,12/21/2013 10:10:07 PM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Other,12/21/2013 10:38:38 PM,2600 Block of GEARY BLVD,SF,94115,B05,10,4365,3,3,3,false,Alarm,1,CHIEF,3,5,2,Lone Mountain/USF,"(37.7822483679158, -122.446592481498)",133550403-B04 +160071676,87,16002843,Medical Incident,01/07/2016,01/07/2016,01/07/2016 12:34:19 PM,01/07/2016 12:35:10 PM,01/07/2016 12:36:46 PM,01/07/2016 12:37:12 PM,01/07/2016 12:43:42 PM,01/07/2016 01:14:49 PM,01/07/2016 01:46:13 PM,Code 2 Transport,01/07/2016 02:55:49 PM,5100 Block of MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7161348110275, -122.441346172385)",160071676-87 +123180134,67,12105722,Medical Incident,11/13/2012,11/13/2012,11/13/2012 10:23:54 AM,11/13/2012 10:24:30 AM,11/13/2012 10:27:03 AM,11/13/2012 10:27:20 AM,11/13/2012 10:33:15 AM,11/13/2012 10:55:32 AM,11/13/2012 11:17:20 AM,Code 2 Transport,11/13/2012 11:35:34 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",123180134-67 +113440340,E37,11114267,Structure Fire,12/10/2011,12/10/2011,12/10/2011 09:29:50 PM,12/10/2011 09:30:46 PM,12/10/2011 09:30:57 PM,12/10/2011 09:31:51 PM,12/10/2011 09:34:23 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/11/2011 01:17:58 AM,1300 Block of UTAH ST,SF,94110,B10,9,2562,3,3,3,false,,3,ENGINE,5,10,10,Mission,"(37.7524211883021, -122.405338378285)",113440340-E37 +120530016,E34,12017364,Medical Incident,02/22/2012,02/21/2012,02/22/2012 02:25:14 AM,02/22/2012 02:26:48 AM,02/22/2012 02:26:56 AM,02/22/2012 02:29:16 AM,02/22/2012 02:31:09 AM,04/25/2016 02:00:01 PM,04/25/2016 02:00:01 PM,Other,02/22/2012 03:22:19 AM,400 Block of 34TH AVE,SF,94121,B07,34,7247,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7806103839199, -122.494519297377)",120530016-E34 +113570479,E15,11118850,Medical Incident,12/23/2011,12/23/2011,12/23/2011 11:30:38 PM,12/23/2011 11:31:52 PM,12/23/2011 11:32:04 PM,12/23/2011 11:33:29 PM,12/23/2011 11:35:47 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/23/2011 11:41:09 PM,0 Block of ONONDAGA AVE,SF,94112,B09,15,8277,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7220006439581, -122.43943565515)",113570479-E15 +160390512,71,16015485,Medical Incident,02/08/2016,02/07/2016,02/08/2016 05:34:16 AM,02/08/2016 05:34:40 AM,02/08/2016 05:35:02 AM,02/08/2016 05:35:14 AM,02/08/2016 05:42:01 AM,02/08/2016 05:55:47 AM,02/08/2016 06:00:18 AM,Code 3 Transport,02/08/2016 06:28:28 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160390512-71 +112660275,E05,11087958,Alarms,09/23/2011,09/23/2011,09/23/2011 05:03:08 PM,09/23/2011 05:05:10 PM,09/23/2011 05:05:18 PM,09/23/2011 05:06:22 PM,09/23/2011 05:07:46 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 05:12:28 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",112660275-E05 +132650134,E03,13089849,Alarms,09/22/2013,09/22/2013,09/22/2013 09:55:56 AM,09/22/2013 09:56:48 AM,09/22/2013 09:56:53 AM,09/22/2013 09:57:26 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/22/2013 09:58:25 AM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Alarm,1,ENGINE,3,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",132650134-E03 +110010556,KM15,11000480,Medical Incident,01/01/2011,01/01/2011,01/01/2011 09:47:45 PM,01/01/2011 09:49:17 PM,01/01/2011 09:49:52 PM,01/01/2011 09:50:57 PM,01/01/2011 09:55:07 PM,01/01/2011 10:10:35 PM,01/01/2011 10:19:36 PM,Code 2 Transport,01/01/2011 10:36:23 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,2,2,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",110010556-KM15 +132990084,66,13101505,Medical Incident,10/26/2013,10/25/2013,10/26/2013 06:48:46 AM,10/26/2013 06:49:33 AM,10/26/2013 06:49:48 AM,10/26/2013 06:50:01 AM,10/26/2013 06:56:17 AM,10/26/2013 07:22:38 AM,10/26/2013 07:43:16 AM,Code 2 Transport,10/26/2013 08:01:01 AM,900 Block of POWELL ST,SF,94108,B01,2,1355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",132990084-66 +113630047,AM16,11120485,Medical Incident,12/29/2011,12/28/2011,12/29/2011 06:37:30 AM,12/29/2011 06:39:41 AM,12/29/2011 06:39:52 AM,12/29/2011 06:40:37 AM,12/29/2011 06:45:30 AM,12/29/2011 07:08:40 AM,04/25/2016 02:00:54 PM,Code 2 Transport,12/29/2011 07:51:05 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,,1,PRIVATE,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",113630047-AM16 +140590083,E23,14019808,Medical Incident,02/28/2014,02/27/2014,02/28/2014 07:51:27 AM,02/28/2014 07:53:04 AM,02/28/2014 07:58:37 AM,02/28/2014 07:58:37 AM,02/28/2014 07:59:46 AM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Code 2 Transport,02/28/2014 08:03:32 AM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",140590083-E23 +111980209,T17,11065347,Structure Fire,07/17/2011,07/17/2011,07/17/2011 03:00:58 PM,07/17/2011 03:00:59 PM,07/17/2011 03:01:03 PM,07/17/2011 03:02:19 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 03:07:27 PM,100 Block of CASHMERE ST,SF,94124,B10,25,6522,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",111980209-T17 +160063502,78,16002601,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:12:37 PM,01/06/2016 09:12:37 PM,01/06/2016 09:13:27 PM,01/06/2016 09:13:34 PM,01/06/2016 09:21:38 PM,01/06/2016 09:43:14 PM,01/06/2016 09:51:42 PM,Code 2 Transport,01/06/2016 10:41:27 PM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160063502-78 +160720604,AM04,16028491,Medical Incident,03/12/2016,03/11/2016,03/12/2016 05:57:48 AM,03/12/2016 05:58:52 AM,03/12/2016 05:59:01 AM,03/12/2016 06:00:04 AM,03/12/2016 06:06:58 AM,03/12/2016 06:11:37 AM,03/12/2016 06:31:53 AM,Code 2 Transport,03/12/2016 06:48:29 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7906221863031, -122.413101980649)",160720604-AM04 +122040209,E21,12067832,Medical Incident,07/22/2012,07/22/2012,07/22/2012 01:43:12 PM,07/22/2012 01:43:41 PM,07/22/2012 01:43:54 PM,07/22/2012 01:45:09 PM,07/22/2012 01:46:07 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 01:54:53 PM,1800 Block of MCALLISTER ST,SF,94117,B05,21,4254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7772146315852, -122.442488680247)",122040209-E21 +102300332,E01,10072511,Medical Incident,08/18/2010,08/18/2010,08/18/2010 08:16:17 PM,08/18/2010 08:16:50 PM,08/18/2010 08:17:09 PM,08/18/2010 08:18:40 PM,08/18/2010 08:20:43 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/18/2010 08:23:11 PM,700 Block of HOWARD ST,SF,94103,B03,1,2214,3,E,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7841058563108, -122.401539484586)",102300332-E01 +160161099,75,16006363,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:02:23 AM,01/16/2016 10:02:46 AM,01/16/2016 10:03:51 AM,01/16/2016 10:03:59 AM,01/16/2016 10:05:38 AM,01/16/2016 10:23:18 AM,01/16/2016 10:38:13 AM,Code 2 Transport,01/16/2016 11:12:35 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160161099-75 +141000006,E11,14033618,Medical Incident,04/10/2014,04/09/2014,04/10/2014 12:55:23 AM,04/10/2014 12:57:33 AM,04/10/2014 12:57:48 AM,04/10/2014 12:59:15 AM,04/10/2014 01:01:01 AM,04/10/2014 01:33:17 AM,04/10/2014 01:33:27 AM,Code 2 Transport,04/10/2014 01:41:32 AM,1400 Block of VALENCIA ST,SAN FRANCISCO,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7497020110556, -122.420499334167)",141000006-E11 +121360016,E08,12045077,Medical Incident,05/15/2012,05/14/2012,05/15/2012 02:13:06 AM,05/15/2012 02:13:12 AM,05/15/2012 02:13:32 AM,05/15/2012 02:16:28 AM,05/15/2012 02:18:10 AM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/15/2012 02:27:38 AM,BRYANT ST/3RD ST,SF,94107,B03,8,2174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7813212571676, -122.395843500166)",121360016-E08 +130820343,E13,13027592,Medical Incident,03/23/2013,03/23/2013,03/23/2013 10:32:41 PM,03/23/2013 10:33:35 PM,03/23/2013 10:34:08 PM,03/23/2013 10:35:35 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/23/2013 10:55:42 PM,300 Block of BATTERY ST,SF,94111,B01,13,1161,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Chinatown,"(37.7947853577882, -122.400352669798)",130820343-E13 +132940182,E09,13099991,Citizen Assist / Service Call,10/21/2013,10/21/2013,10/21/2013 12:17:30 PM,10/21/2013 12:19:18 PM,10/21/2013 12:19:53 PM,10/21/2013 12:21:15 PM,10/21/2013 12:23:35 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Fire,10/21/2013 12:27:34 PM,2700 Block of BRYANT ST,SF,94110,B06,9,5532,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7504048658108, -122.408832583808)",132940182-E09 +113560066,T14,11118103,Alarms,12/22/2011,12/21/2011,12/22/2011 07:16:12 AM,12/22/2011 07:17:39 AM,12/22/2011 07:17:48 AM,12/22/2011 07:20:13 AM,12/22/2011 07:21:36 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/22/2011 07:25:52 AM,2800 Block of CLEMENT ST,SF,94121,B07,14,7237,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7818550511729, -122.489698043665)",113560066-T14 +131240059,E32,13041712,Traffic Collision,05/04/2013,05/03/2013,05/04/2013 03:36:57 AM,05/04/2013 03:37:49 AM,05/04/2013 03:38:31 AM,05/04/2013 03:41:04 AM,05/04/2013 03:44:00 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/04/2013 04:04:19 AM,0 Block of CAMBRIDGE ST,SF,94134,B09,32,5685,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,9,Portola,"(37.7315422235506, -122.419582529804)",131240059-E32 +160652134,63,16025969,Medical Incident,03/05/2016,03/05/2016,03/05/2016 03:26:28 PM,03/05/2016 03:26:28 PM,03/05/2016 03:26:28 PM,03/05/2016 03:26:28 PM,03/05/2016 03:26:28 PM,03/05/2016 03:33:38 PM,03/05/2016 03:49:13 PM,Code 2 Transport,03/05/2016 03:58:23 PM,LARKIN ST/POST ST,San Francisco,94109,B99,3,1641,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",160652134-63 +110540066,T15,11017734,Medical Incident,02/23/2011,02/22/2011,02/23/2011 07:37:23 AM,02/23/2011 07:38:04 AM,02/23/2011 07:38:27 AM,02/23/2011 07:40:54 AM,02/23/2011 07:42:57 AM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/23/2011 07:53:26 AM,2400 Block of SAN JOSE AVE,SF,94112,B09,15,8312,3,3,3,false,,1,TRUCK,2,9,11,Outer Mission,"(37.7185540654042, -122.447910942622)",110540066-T15 +132130318,E38,13072088,Medical Incident,08/01/2013,08/01/2013,08/01/2013 09:49:55 PM,08/01/2013 09:52:30 PM,08/01/2013 09:53:15 PM,08/01/2013 09:54:22 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/01/2013 09:54:52 PM,POLK ST/SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",132130318-E38 +132690164,68,13091329,Medical Incident,09/26/2013,09/26/2013,09/26/2013 11:20:06 AM,09/26/2013 11:20:19 AM,09/26/2013 11:20:39 AM,09/26/2013 11:20:48 AM,09/26/2013 11:35:02 AM,09/26/2013 11:57:46 AM,09/26/2013 12:16:05 PM,Code 2 Transport,09/26/2013 12:34:46 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",132690164-68 +160510491,KM06,16020362,Medical Incident,02/20/2016,02/19/2016,02/20/2016 04:54:42 AM,02/20/2016 04:56:11 AM,02/20/2016 04:56:40 AM,02/20/2016 04:57:42 AM,02/20/2016 05:04:04 AM,02/20/2016 05:18:06 AM,02/20/2016 05:30:46 AM,Code 2 Transport,02/20/2016 06:18:54 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160510491-KM06 +112180144,88,11072024,Medical Incident,08/06/2011,08/06/2011,08/06/2011 10:15:24 AM,08/06/2011 10:15:59 AM,08/06/2011 10:16:21 AM,08/06/2011 10:17:20 AM,08/06/2011 10:22:10 AM,08/06/2011 10:40:07 AM,08/06/2011 11:01:39 AM,Code 2 Transport,08/06/2011 11:42:30 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",112180144-88 +133520335,E37,13119686,Alarms,12/18/2013,12/18/2013,12/18/2013 06:15:12 PM,12/18/2013 06:16:13 PM,12/18/2013 06:17:16 PM,12/18/2013 06:19:25 PM,12/18/2013 06:20:59 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/18/2013 06:25:17 PM,400 Block of MISSISSIPPI ST,SF,94107,B10,37,2474,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7607835854557, -122.394344065742)",133520335-E37 +102320077,T17,10072940,Alarms,08/20/2010,08/20/2010,08/20/2010 08:20:57 AM,08/20/2010 08:21:54 AM,08/20/2010 08:22:15 AM,08/20/2010 08:23:05 AM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 08:27:53 AM,100 Block of KISKA RD,SF,94124,B10,17,6625,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7300498963351, -122.376015807467)",102320077-T17 +110650107,E03,11021388,Alarms,03/06/2011,03/05/2011,03/06/2011 07:11:25 AM,03/06/2011 07:12:33 AM,03/06/2011 07:12:57 AM,03/06/2011 07:14:35 AM,03/06/2011 07:15:37 AM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/06/2011 07:19:14 AM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",110650107-E03 +160590973,72,16023446,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:28:26 AM,02/28/2016 09:31:35 AM,02/28/2016 09:41:29 AM,02/28/2016 09:42:48 AM,02/28/2016 09:52:29 AM,02/28/2016 09:55:06 AM,02/28/2016 10:34:52 AM,Code 2 Transport,02/28/2016 11:16:33 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160590973-72 +160910474,64,16035972,Medical Incident,03/31/2016,03/30/2016,03/31/2016 06:19:24 AM,03/31/2016 06:20:24 AM,03/31/2016 06:20:39 AM,03/31/2016 06:20:39 AM,03/31/2016 06:24:46 AM,03/31/2016 06:32:07 AM,03/31/2016 06:53:22 AM,Code 2 Transport,03/31/2016 07:51:56 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160910474-64 +131360036,E17,13045753,Medical Incident,05/16/2013,05/15/2013,05/16/2013 02:36:47 AM,05/16/2013 02:38:57 AM,05/16/2013 02:39:03 AM,05/16/2013 02:41:44 AM,05/16/2013 02:45:12 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/16/2013 02:54:44 AM,0 Block of HARBOR RD,SF,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",131360036-E17 +122570285,E23,12085049,Medical Incident,09/13/2012,09/13/2012,09/13/2012 07:14:09 PM,09/13/2012 07:15:49 PM,09/13/2012 07:17:51 PM,09/13/2012 07:18:53 PM,09/13/2012 07:20:51 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/13/2012 07:42:28 PM,1600 Block of 44TH AVE,SF,94122,B08,23,7661,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7558537231148, -122.503526833565)",122570285-E23 +131090281,85,13036716,Medical Incident,04/19/2013,04/19/2013,04/19/2013 04:15:26 PM,04/19/2013 04:18:00 PM,04/19/2013 04:18:17 PM,04/19/2013 04:18:43 PM,04/19/2013 04:29:36 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Other,04/19/2013 04:30:31 PM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",131090281-85 +160881478,58,16034922,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:29:05 AM,03/28/2016 11:30:39 AM,03/28/2016 11:31:49 AM,03/28/2016 11:33:14 AM,03/28/2016 11:38:36 AM,03/28/2016 11:54:33 AM,03/28/2016 12:03:09 PM,Code 3 Transport,03/28/2016 12:33:58 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160881478-58 +123470352,T02,12116156,Structure Fire,12/12/2012,12/12/2012,12/12/2012 09:05:01 PM,12/12/2012 09:05:02 PM,12/12/2012 09:05:21 PM,12/12/2012 09:06:50 PM,12/12/2012 09:07:58 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Other,12/12/2012 09:08:13 PM,STOCKTON ST/VALLEJO ST,SF,94133,B01,2,1333,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.798571322815, -122.408808130013)",123470352-T02 +160732266,AM18,16029052,Medical Incident,03/13/2016,03/13/2016,03/13/2016 05:53:32 PM,03/13/2016 05:53:42 PM,03/13/2016 05:54:05 PM,03/13/2016 05:55:36 PM,03/13/2016 05:57:54 PM,03/13/2016 06:21:59 PM,03/13/2016 06:49:00 PM,Code 2 Transport,03/13/2016 07:27:14 PM,200 Block of OXFORD ST,San Francisco,94134,B09,42,6145,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7267862206207, -122.419568947341)",160732266-AM18 +121360015,AM18,12045076,Medical Incident,05/15/2012,05/14/2012,05/15/2012 02:02:52 AM,05/15/2012 02:08:23 AM,05/15/2012 02:08:49 AM,05/15/2012 02:09:38 AM,05/15/2012 02:17:01 AM,05/15/2012 02:51:56 AM,05/15/2012 02:55:36 AM,Other,05/15/2012 03:42:58 AM,0 Block of ROSS ALY,SF,94108,B01,2,1331,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.795493320177, -122.407280949818)",121360015-AM18 +160041408,74,16001572,Medical Incident,01/04/2016,01/04/2016,01/04/2016 11:34:56 AM,01/04/2016 11:35:39 AM,01/04/2016 11:35:53 AM,01/04/2016 11:36:00 AM,01/04/2016 11:41:01 AM,01/04/2016 11:54:21 AM,01/04/2016 11:57:24 AM,Code 3 Transport,01/04/2016 12:50:35 PM,1200 Block of MISSISSIPPI ST,San Francisco,94107,B10,25,2635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7504992302518, -122.393464783851)",160041408-74 +113340006,85,11110472,Structure Fire,11/30/2011,11/29/2011,11/30/2011 12:42:30 AM,11/30/2011 12:43:06 AM,11/30/2011 12:43:24 AM,11/30/2011 12:43:55 AM,11/30/2011 12:49:32 AM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/30/2011 12:51:32 AM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,,1,MEDIC,9,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",113340006-85 +111780171,E09,11058767,Medical Incident,06/27/2011,06/27/2011,06/27/2011 12:29:31 PM,06/27/2011 12:30:51 PM,06/27/2011 12:31:43 PM,06/27/2011 12:33:32 PM,06/27/2011 12:35:49 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 12:43:51 PM,800 Block of NEWHALL ST,SF,94124,B10,25,6467,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7392353214132, -122.388917732772)",111780171-E09 +160871748,89,16034575,Medical Incident,03/27/2016,03/27/2016,03/27/2016 12:52:38 PM,03/27/2016 12:55:28 PM,03/27/2016 12:56:11 PM,03/27/2016 12:57:19 PM,03/27/2016 01:03:16 PM,03/27/2016 01:28:38 PM,03/27/2016 01:45:46 PM,Code 2 Transport,03/27/2016 02:43:11 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",160871748-89 +160421221,53,16016807,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:25:44 AM,02/11/2016 10:25:58 AM,02/11/2016 10:26:14 AM,02/11/2016 10:26:19 AM,02/11/2016 10:37:31 AM,02/11/2016 10:50:41 AM,02/11/2016 11:01:46 AM,Code 2 Transport,02/11/2016 12:00:34 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7786769584105, -122.408601057595)",160421221-53 +160810052,82,16032003,Medical Incident,03/21/2016,03/20/2016,03/21/2016 12:30:07 AM,03/21/2016 12:31:37 AM,03/21/2016 12:32:07 AM,03/21/2016 12:32:20 AM,03/21/2016 12:37:21 AM,03/21/2016 12:59:15 AM,03/21/2016 01:17:34 AM,Code 2 Transport,03/21/2016 02:04:52 AM,500 Block of 19TH AVE,San Francisco,94121,B07,14,7165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7775292137816, -122.478030628058)",160810052-82 +140690323,E35,14023407,Traffic Collision,03/10/2014,03/10/2014,03/10/2014 07:46:34 PM,03/10/2014 07:48:09 PM,03/10/2014 07:48:35 PM,03/10/2014 07:49:21 PM,03/10/2014 07:56:34 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Other,03/10/2014 08:49:26 PM,ESSEX ST/FOLSOM ST,SAN FRANCISCO,94105,B03,35,2137,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7863789368239, -122.395645466731)",140690323-E35 +111420249,KM01,11047240,Medical Incident,05/22/2011,05/22/2011,05/22/2011 03:12:01 PM,05/22/2011 03:13:32 PM,05/22/2011 03:14:18 PM,05/22/2011 03:15:08 PM,05/22/2011 03:23:53 PM,05/22/2011 03:44:41 PM,04/25/2016 02:04:30 PM,Code 2 Transport,05/22/2011 04:08:10 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,2,2,false,,1,PRIVATE,2,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",111420249-KM01 +113420015,E03,11113262,Medical Incident,12/08/2011,12/07/2011,12/08/2011 01:03:07 AM,12/08/2011 01:03:24 AM,12/08/2011 01:03:40 AM,12/08/2011 01:05:10 AM,12/08/2011 01:06:59 AM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/08/2011 01:08:40 AM,LARKIN ST/FRANK NORRIS ST,SF,94109,B04,3,1636,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7893756305214, -122.41875045058)",113420015-E03 +122530187,86,12083659,Medical Incident,09/09/2012,09/09/2012,09/09/2012 12:30:21 PM,09/09/2012 12:31:17 PM,09/09/2012 12:31:38 PM,09/09/2012 12:31:45 PM,09/09/2012 12:36:20 PM,09/09/2012 12:43:56 PM,09/09/2012 12:54:28 PM,Code 2 Transport,09/09/2012 01:05:05 PM,UNION ST/COLUMBUS AV,SF,94133,B01,28,1334,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8003154984429, -122.410206543893)",122530187-86 +132740290,KM04,13093201,Medical Incident,10/01/2013,10/01/2013,10/01/2013 06:34:10 PM,10/01/2013 06:35:53 PM,10/01/2013 06:49:07 PM,04/25/2016 01:50:29 PM,10/01/2013 06:56:38 PM,10/01/2013 07:06:12 PM,10/01/2013 07:13:41 PM,Code 2 Transport,10/01/2013 07:30:29 PM,FRANKLIN ST/FULTON ST,SF,94102,B02,36,3217,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7789568629409, -122.421709307211)",132740290-KM04 +111260357,E10,11041839,Medical Incident,05/06/2011,05/06/2011,05/06/2011 08:35:34 PM,05/06/2011 08:36:47 PM,05/06/2011 08:36:55 PM,05/06/2011 08:38:03 PM,05/06/2011 08:40:37 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 08:54:22 PM,300 Block of ARGUELLO BLVD,SF,94118,B07,10,7114,3,3,3,true,,1,ENGINE,2,7,2,Presidio Heights,"(37.7853734302241, -122.459087139493)",111260357-E10 +131110235,E34,13037442,Medical Incident,04/21/2013,04/21/2013,04/21/2013 05:13:28 PM,04/21/2013 05:16:11 PM,04/21/2013 05:16:30 PM,04/21/2013 05:17:22 PM,04/21/2013 05:20:15 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Fire,04/21/2013 05:28:23 PM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",131110235-E34 +122680206,88,12088552,Medical Incident,09/24/2012,09/24/2012,09/24/2012 01:24:14 PM,09/24/2012 01:26:20 PM,09/24/2012 01:26:41 PM,09/24/2012 01:27:00 PM,09/24/2012 01:42:15 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Patient Declined Transport,09/24/2012 02:03:59 PM,200 Block of HAHN ST,SF,94134,B09,43,6241,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7101932992299, -122.416700898623)",122680206-88 +132830119,84,13096253,Medical Incident,10/10/2013,10/10/2013,10/10/2013 10:12:00 AM,10/10/2013 10:12:17 AM,10/10/2013 10:12:57 AM,10/10/2013 10:13:27 AM,10/10/2013 10:17:04 AM,10/10/2013 10:34:27 AM,10/10/2013 10:48:20 AM,Code 2 Transport,10/10/2013 11:07:38 AM,200 Block of GOUGH ST,SF,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.775244832582, -122.422713876818)",132830119-84 +131510343,68,13051268,Medical Incident,05/31/2013,05/31/2013,05/31/2013 07:18:22 PM,05/31/2013 07:22:08 PM,05/31/2013 07:22:44 PM,05/31/2013 07:23:01 PM,05/31/2013 07:31:53 PM,05/31/2013 07:42:01 PM,05/31/2013 07:56:43 PM,Code 2 Transport,05/31/2013 08:23:19 PM,100 Block of VELASCO AVE,SF,,B09,44,6251,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,None,None,"(37.7083038138668, -122.41329801378)",131510343-68 +122510359,99,12083155,Medical Incident,09/07/2012,09/07/2012,09/07/2012 10:01:04 PM,09/07/2012 10:03:11 PM,09/07/2012 10:03:25 PM,09/07/2012 10:03:39 PM,09/07/2012 10:06:43 PM,09/07/2012 10:26:11 PM,04/25/2016 01:56:52 PM,Code 2 Transport,09/07/2012 10:55:23 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122510359-99 +122860161,KM12,12094590,Medical Incident,10/12/2012,10/12/2012,10/12/2012 01:00:01 PM,10/12/2012 01:02:43 PM,10/12/2012 01:04:11 PM,10/12/2012 01:07:32 PM,10/12/2012 01:13:13 PM,10/12/2012 01:36:24 PM,10/12/2012 01:55:21 PM,Code 2 Transport,10/12/2012 02:31:50 PM,200 Block of OAK PARK DR,SF,94131,B08,20,5367,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7546835865431, -122.45712997517)",122860161-KM12 +122280315,B10,12075666,Medical Incident,08/15/2012,08/15/2012,08/15/2012 07:02:18 PM,08/15/2012 07:02:18 PM,08/15/2012 07:02:18 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 07:09:36 PM,24TH ST/BRYANT ST,SF,94110,B06,9,5532,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,6,9,Mission,"(37.7527955849274, -122.409129910252)",122280315-B10 +122570277,E28,12085040,Medical Incident,09/13/2012,09/13/2012,09/13/2012 06:55:07 PM,09/13/2012 06:55:25 PM,09/13/2012 06:57:04 PM,09/13/2012 06:59:43 PM,09/13/2012 07:01:12 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/13/2012 07:19:09 PM,300 Block of BAY ST,SF,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8057759671113, -122.412787887195)",122570277-E28 +160790797,62,16031338,Medical Incident,03/19/2016,03/18/2016,03/19/2016 07:39:31 AM,03/19/2016 07:41:25 AM,03/19/2016 07:41:35 AM,03/19/2016 07:41:44 AM,03/19/2016 07:50:22 AM,03/19/2016 08:25:00 AM,03/19/2016 08:35:18 AM,Code 2 Transport,03/19/2016 09:08:14 AM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",160790797-62 +120360297,RS2,12012095,Structure Fire,02/05/2012,02/05/2012,02/05/2012 05:05:48 PM,02/05/2012 05:08:01 PM,02/05/2012 05:08:53 PM,02/05/2012 05:10:20 PM,02/05/2012 05:12:00 PM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/05/2012 05:18:12 PM,1400 Block of FRANKLIN ST,SF,94109,B04,3,3223,3,3,3,false,Fire,1,RESCUE SQUAD,3,4,2,Western Addition,"(37.7875634697164, -122.423519117413)",120360297-RS2 +123160135,58,12105118,Medical Incident,11/11/2012,11/11/2012,11/11/2012 10:59:47 AM,11/11/2012 11:00:59 AM,11/11/2012 11:01:29 AM,11/11/2012 11:01:39 AM,11/11/2012 11:07:37 AM,11/11/2012 11:26:33 AM,11/11/2012 11:32:46 AM,Code 2 Transport,11/11/2012 12:03:23 PM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.752766726673, -122.410519781929)",123160135-58 +133470024,T16,13117615,Structure Fire,12/13/2013,12/12/2013,12/13/2013 02:02:47 AM,12/13/2013 02:03:35 AM,12/13/2013 02:04:04 AM,12/13/2013 02:06:32 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/13/2013 02:15:27 AM,2300 Block of PACIFIC AVE,SF,94115,B04,38,3546,3,3,3,false,Alarm,1,TRUCK,8,4,2,Pacific Heights,"(37.7935066493689, -122.433922048128)",133470024-T16 +122490010,E44,12082208,Structure Fire,09/05/2012,09/04/2012,09/05/2012 12:27:53 AM,09/05/2012 12:28:42 AM,09/05/2012 12:29:09 AM,09/05/2012 12:35:29 AM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/05/2012 12:45:27 AM,1700 Block of BANCROFT AVE,SF,94124,B10,17,6537,3,3,3,true,Fire,1,ENGINE,9,10,10,Bayview Hunters Point,"(37.7268724745843, -122.394902680548)",122490010-E44 +130170243,55,13005829,Medical Incident,01/17/2013,01/17/2013,01/17/2013 02:52:08 PM,01/17/2013 02:53:31 PM,01/17/2013 02:56:15 PM,01/17/2013 02:56:27 PM,01/17/2013 03:13:57 PM,01/17/2013 03:27:04 PM,01/17/2013 03:36:33 PM,Code 2 Transport,01/17/2013 04:18:05 PM,1400 Block of 20TH AVE,SF,94122,B08,22,7426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7607159070903, -122.478068414702)",130170243-55 +112260087,92,11074598,Medical Incident,08/14/2011,08/14/2011,08/14/2011 08:40:16 AM,08/14/2011 08:40:46 AM,08/14/2011 08:40:54 AM,08/14/2011 08:41:04 AM,08/14/2011 08:44:34 AM,08/14/2011 08:59:42 AM,08/14/2011 09:13:10 AM,Code 2 Transport,08/14/2011 09:43:33 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",112260087-92 +112630167,AM02,11086806,Medical Incident,09/20/2011,09/20/2011,09/20/2011 11:07:01 AM,09/20/2011 11:08:00 AM,09/20/2011 11:09:28 AM,09/20/2011 11:11:38 AM,09/20/2011 11:16:08 AM,09/20/2011 11:24:02 AM,09/20/2011 11:39:21 AM,Code 2 Transport,09/20/2011 12:29:55 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",112630167-AM02 +120650261,E05,12021549,Alarms,03/05/2012,03/05/2012,03/05/2012 04:19:04 PM,03/05/2012 04:19:04 PM,03/05/2012 04:19:21 PM,03/05/2012 04:20:22 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/05/2012 04:21:34 PM,FILLMORE ST/GEARY BL,SF,94115,B04,5,3541,3,3,3,true,Alarm,1,ENGINE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",120650261-E05 +130420042,T01,13014212,Structure Fire,02/11/2013,02/10/2013,02/11/2013 04:36:58 AM,02/11/2013 04:37:55 AM,02/11/2013 04:38:02 AM,02/11/2013 04:39:37 AM,02/11/2013 04:42:51 AM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,Other,02/11/2013 04:50:22 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,Alarm,1,TRUCK,7,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",130420042-T01 +130080162,E02,13002718,Medical Incident,01/08/2013,01/08/2013,01/08/2013 11:33:13 AM,01/08/2013 11:35:58 AM,01/08/2013 11:36:42 AM,01/08/2013 11:38:48 AM,01/08/2013 11:38:50 AM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,Other,01/08/2013 11:49:21 AM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",130080162-E02 +121180432,B04,12039299,Alarms,04/27/2012,04/27/2012,04/27/2012 10:37:41 PM,04/27/2012 10:39:02 PM,04/27/2012 10:39:11 PM,04/27/2012 10:40:15 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 10:41:30 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,Alarm,1,CHIEF,6,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",121180432-B04 +120570108,E29,12018745,Medical Incident,02/26/2012,02/26/2012,02/26/2012 08:10:14 AM,02/26/2012 08:10:58 AM,02/26/2012 08:11:11 AM,02/26/2012 08:12:21 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 08:12:51 AM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,8,Mission,"(37.766322531621, -122.424723870424)",120570108-E29 +111650191,E28,11054442,Structure Fire,06/14/2011,06/14/2011,06/14/2011 01:00:12 PM,06/14/2011 01:00:12 PM,06/14/2011 01:00:17 PM,06/14/2011 01:01:08 PM,06/14/2011 01:02:43 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,Other,06/14/2011 01:11:16 PM,2100 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8044382972452, -122.411605476142)",111650191-E28 +113050441,E11,11101490,Medical Incident,11/01/2011,11/01/2011,11/01/2011 10:05:21 PM,11/01/2011 10:06:02 PM,11/01/2011 10:06:43 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 10:11:22 PM,20TH ST/SHOTWELL ST,SF,94110,B06,7,5447,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7588302329897, -122.41577930019)",113050441-E11 +160741250,AM06,16029289,Medical Incident,03/14/2016,03/14/2016,03/14/2016 10:35:52 AM,03/14/2016 10:37:27 AM,03/14/2016 10:38:41 AM,03/14/2016 10:39:24 AM,03/14/2016 10:43:04 AM,03/14/2016 11:05:47 AM,03/14/2016 11:20:28 AM,Code 2 Transport,03/14/2016 11:56:48 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160741250-AM06 +112980003,E06,11098723,Medical Incident,10/25/2011,10/24/2011,10/25/2011 12:17:44 AM,10/25/2011 12:18:13 AM,10/25/2011 12:19:20 AM,10/25/2011 12:20:11 AM,10/25/2011 12:21:22 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 12:28:49 AM,0 Block of CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,,1,ENGINE,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",112980003-E06 +160310559,65,16012074,Traffic Collision,01/31/2016,01/30/2016,01/31/2016 04:29:31 AM,01/31/2016 04:31:57 AM,01/31/2016 04:33:08 AM,01/31/2016 04:33:15 AM,01/31/2016 04:49:44 AM,01/31/2016 05:10:41 AM,01/31/2016 05:28:32 AM,Code 2 Transport,01/31/2016 06:07:39 AM,2100 Block of SAN JOSE AV,San Francisco,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7228028607542, -122.444785549553)",160310559-65 +123300124,KM02,12109666,Medical Incident,11/25/2012,11/25/2012,11/25/2012 10:45:57 AM,11/25/2012 10:46:56 AM,11/25/2012 10:47:17 AM,11/25/2012 10:47:52 AM,11/25/2012 10:52:14 AM,11/25/2012 11:02:38 AM,11/25/2012 11:15:45 AM,Code 2 Transport,11/25/2012 11:33:33 AM,600 Block of 4TH ST,SF,94107,B03,8,2223,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.77797391183, -122.396186384499)",123300124-KM02 +132090259,E36,13070754,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:26:47 PM,07/28/2013 04:33:23 PM,07/28/2013 04:33:51 PM,07/28/2013 04:35:22 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 04:54:20 PM,200 Block of 10TH ST,SF,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",132090259-E36 +111710394,E22,11056569,Outside Fire,06/20/2011,06/20/2011,06/20/2011 11:08:35 PM,06/20/2011 11:09:47 PM,06/20/2011 11:09:59 PM,06/20/2011 11:11:42 PM,06/20/2011 11:14:04 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Fire,06/20/2011 11:29:20 PM,1600 Block of 17TH AVE,SF,94122,B08,22,7372,3,3,3,false,,1,ENGINE,1,8,7,Inner Sunset,"(37.7571285936027, -122.474597793083)",111710394-E22 +160170092,76,16006646,Medical Incident,01/17/2016,01/16/2016,01/17/2016 12:39:04 AM,01/17/2016 12:41:13 AM,01/17/2016 12:41:35 AM,01/17/2016 12:41:56 AM,01/17/2016 01:02:50 AM,01/17/2016 01:26:46 AM,01/17/2016 01:34:43 AM,Code 2 Transport,01/17/2016 02:30:16 AM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160170092-76 +130770021,93,13025590,Medical Incident,03/18/2013,03/17/2013,03/18/2013 03:00:15 AM,03/18/2013 03:01:47 AM,03/18/2013 03:02:15 AM,03/18/2013 03:02:57 AM,03/18/2013 03:06:26 AM,03/18/2013 03:15:41 AM,03/18/2013 03:23:33 AM,Code 3 Transport,03/18/2013 04:28:54 AM,900 Block of FRANKLIN ST,SF,94109,B02,3,3221,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7829271006902, -122.422442530821)",130770021-93 +103120285,E40,10100130,Medical Incident,11/08/2010,11/08/2010,11/08/2010 06:57:44 PM,11/08/2010 06:58:45 PM,11/08/2010 06:59:03 PM,11/08/2010 07:00:12 PM,11/08/2010 07:02:38 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 07:14:01 PM,500 Block of VICENTE ST,SF,94116,B08,40,7411,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7394969231551, -122.472760394335)",103120285-E40 +123120336,E36,12103960,Medical Incident,11/07/2012,11/07/2012,11/07/2012 09:04:13 PM,11/07/2012 09:05:51 PM,11/07/2012 09:06:35 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 09:08:36 PM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,5,5,Western Addition,"(37.7794051372088, -122.432762898818)",123120336-E36 +103080401,77,10098874,Medical Incident,11/04/2010,11/04/2010,11/04/2010 10:26:35 PM,11/04/2010 10:27:38 PM,11/04/2010 10:27:52 PM,11/04/2010 10:28:09 PM,11/04/2010 10:33:40 PM,11/04/2010 10:57:32 PM,11/04/2010 11:31:14 PM,Code 2 Transport,11/04/2010 11:50:00 PM,300 Block of VICTORIA ST,SF,94132,B09,33,841,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7170183759836, -122.46526241955)",103080401-77 +103050162,E13,10097464,Medical Incident,11/01/2010,11/01/2010,11/01/2010 10:26:07 AM,11/01/2010 10:27:32 AM,11/01/2010 10:28:25 AM,11/01/2010 10:29:12 AM,11/01/2010 10:32:42 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 10:42:47 AM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7908458791509, -122.396300374008)",103050162-E13 +160550306,AM24,16021872,Medical Incident,02/24/2016,02/23/2016,02/24/2016 04:04:33 AM,02/24/2016 04:05:14 AM,02/24/2016 04:05:27 AM,02/24/2016 04:06:06 AM,02/24/2016 04:13:12 AM,02/24/2016 04:22:21 AM,02/24/2016 04:37:54 AM,Code 2 Transport,02/24/2016 04:57:59 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160550306-AM24 +160241794,AM02,16009537,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:41:13 PM,01/24/2016 01:43:56 PM,01/24/2016 01:44:08 PM,01/24/2016 01:44:42 PM,01/24/2016 02:02:12 PM,01/24/2016 02:13:39 PM,01/24/2016 02:57:08 PM,Code 2 Transport,01/24/2016 03:17:03 PM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7968082637513, -122.408035995184)",160241794-AM02 +122100327,KM07,12069893,Medical Incident,07/28/2012,07/28/2012,07/28/2012 09:16:31 PM,07/28/2012 09:16:45 PM,07/28/2012 09:17:10 PM,07/28/2012 09:17:40 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 09:28:12 PM,JOHN MUIR DR/SKYLINE BL,SF,94132,B08,19,8714,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7189555597044, -122.500220952945)",122100327-KM07 +130290225,57,13009945,Medical Incident,01/29/2013,01/29/2013,01/29/2013 01:38:01 PM,01/29/2013 01:38:42 PM,01/29/2013 01:38:53 PM,01/29/2013 01:39:27 PM,01/29/2013 01:53:00 PM,01/29/2013 02:12:54 PM,01/29/2013 02:46:41 PM,Code 2 Transport,01/29/2013 03:37:54 PM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",130290225-57 +133500161,KM06,13118797,Medical Incident,12/16/2013,12/16/2013,12/16/2013 11:09:44 AM,12/16/2013 11:12:11 AM,12/16/2013 11:12:28 AM,12/16/2013 11:13:01 AM,12/16/2013 11:22:04 AM,12/16/2013 11:42:51 AM,12/16/2013 11:51:17 AM,Code 2 Transport,12/16/2013 12:24:03 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133500161-KM06 +120300032,E16,12009873,Medical Incident,01/30/2012,01/29/2012,01/30/2012 03:41:56 AM,01/30/2012 03:42:46 AM,01/30/2012 03:43:24 AM,01/30/2012 03:44:50 AM,01/30/2012 03:48:30 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/30/2012 03:54:02 AM,1400 Block of FRANCISCO ST,SF,94123,B04,16,3243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8027412588904, -122.429043718055)",120300032-E16 +102270333,T13,10071590,Alarms,08/15/2010,08/15/2010,08/15/2010 09:23:44 PM,08/15/2010 09:26:35 PM,08/15/2010 09:26:45 PM,08/15/2010 09:28:59 PM,08/15/2010 09:32:01 PM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,Other,08/15/2010 09:35:50 PM,500 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7905716665918, -122.405963225465)",102270333-T13 +140460072,RS1,14015569,Structure Fire,02/15/2014,02/14/2014,02/15/2014 06:02:55 AM,02/15/2014 06:03:37 AM,02/15/2014 06:03:47 AM,02/15/2014 06:05:45 AM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 06:09:26 AM,2300 Block of PINE ST,SF,94115,B04,38,3543,3,3,3,false,Alarm,1,RESCUE SQUAD,10,4,5,Pacific Heights,"(37.7877914845399, -122.434459190336)",140460072-RS1 +160321392,KM04,16012550,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:40:36 AM,02/01/2016 11:42:36 AM,02/01/2016 11:43:10 AM,02/01/2016 11:43:41 AM,02/01/2016 11:52:08 AM,02/01/2016 12:18:44 PM,02/01/2016 12:34:19 PM,Code 2 Transport,02/01/2016 01:17:24 PM,1200 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",160321392-KM04 +132780205,E07,13094518,Medical Incident,10/05/2013,10/05/2013,10/05/2013 01:42:27 PM,10/05/2013 01:43:26 PM,10/05/2013 01:43:40 PM,10/05/2013 01:44:50 PM,10/05/2013 01:46:34 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Other,10/05/2013 02:01:28 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",132780205-E07 +110450361,E01,11015080,Structure Fire,02/14/2011,02/14/2011,02/14/2011 09:30:51 PM,02/14/2011 09:30:51 PM,02/14/2011 09:31:19 PM,04/25/2016 02:06:05 PM,02/14/2011 09:33:23 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 09:34:34 PM,4TH ST/HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",110450361-E01 +120550276,E08,12018241,Medical Incident,02/24/2012,02/24/2012,02/24/2012 05:43:07 PM,02/24/2012 05:48:32 PM,02/24/2012 05:49:55 PM,02/24/2012 05:52:20 PM,02/24/2012 05:53:37 PM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 05:58:26 PM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",120550276-E08 +102340039,T05,10073505,Medical Incident,08/22/2010,08/21/2010,08/22/2010 02:39:22 AM,08/22/2010 02:40:14 AM,08/22/2010 02:43:30 AM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 02:49:01 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,,1,TRUCK,3,2,5,Western Addition,"(37.7818979587644, -122.428207532186)",102340039-T05 +123440290,E10,12115083,Medical Incident,12/09/2012,12/09/2012,12/09/2012 05:51:24 PM,12/09/2012 05:54:02 PM,12/09/2012 05:54:52 PM,12/09/2012 05:57:15 PM,12/09/2012 06:00:19 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 06:09:46 PM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,4436,1,1,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.78610251378, -122.455446445024)",123440290-E10 +160322451,KM04,16012656,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:20:40 PM,02/01/2016 04:21:43 PM,02/01/2016 04:23:13 PM,02/01/2016 04:23:49 PM,02/01/2016 04:27:52 PM,02/01/2016 04:57:13 PM,02/01/2016 05:20:25 PM,Code 2 Transport,02/01/2016 05:55:25 PM,400 Block of WALNUT ST,San Francisco,94118,B04,10,4421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7875219868232, -122.44849396272)",160322451-KM04 +123050389,KM05,12101356,Traffic Collision,10/31/2012,10/31/2012,10/31/2012 05:47:19 PM,10/31/2012 05:47:57 PM,10/31/2012 05:48:10 PM,10/31/2012 05:49:20 PM,10/31/2012 05:53:02 PM,10/31/2012 06:01:59 PM,10/31/2012 06:13:21 PM,Code 3 Transport,10/31/2012 06:53:56 PM,GENEVA AV/ALEMANY BL,SF,94112,B09,15,8331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7178334463476, -122.442328161761)",123050389-KM05 +160400627,89,16015910,Medical Incident,02/09/2016,02/08/2016,02/09/2016 07:45:32 AM,02/09/2016 07:46:39 AM,02/09/2016 07:47:40 AM,02/09/2016 07:50:58 AM,02/09/2016 07:58:43 AM,02/09/2016 08:10:37 AM,02/09/2016 08:25:18 AM,Code 2 Transport,02/09/2016 09:04:05 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160400627-89 +130060217,KM06,13002101,Medical Incident,01/06/2013,01/06/2013,01/06/2013 04:20:49 PM,01/06/2013 04:23:51 PM,01/06/2013 04:25:36 PM,01/06/2013 04:26:33 PM,01/06/2013 04:29:40 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 04:33:14 PM,200 Block of DORLAND ST,SF,94114,B02,6,5421,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7620293658927, -122.429546492088)",130060217-KM06 +140880040,68,14029519,Medical Incident,03/29/2014,03/28/2014,03/29/2014 02:25:08 AM,03/29/2014 02:25:08 AM,03/29/2014 02:25:18 AM,03/29/2014 02:25:30 AM,03/29/2014 02:27:24 AM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,Patient Declined Transport,03/29/2014 03:38:40 AM,800 Block of FOLSOM ST,SAN FRANCISCO,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811056901316, -122.402224662374)",140880040-68 +160783146,88,16031128,Medical Incident,03/18/2016,03/18/2016,03/18/2016 06:25:55 PM,03/18/2016 06:27:32 PM,03/18/2016 06:28:05 PM,03/18/2016 06:28:17 PM,03/18/2016 06:37:15 PM,03/18/2016 06:47:44 PM,03/18/2016 07:11:47 PM,Code 2 Transport,03/18/2016 07:45:26 PM,0 Block of TURNER TER,San Francisco,94107,B10,37,2542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7566399872109, -122.395114989)",160783146-88 +102510379,B09,10079460,Alarms,09/08/2010,09/08/2010,09/08/2010 10:54:07 PM,09/08/2010 10:54:51 PM,09/08/2010 10:55:02 PM,09/08/2010 10:56:04 PM,09/08/2010 11:00:39 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 11:08:38 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",102510379-B09 +110560115,54,11018396,Medical Incident,02/25/2011,02/25/2011,02/25/2011 09:38:18 AM,02/25/2011 09:40:46 AM,02/25/2011 09:46:14 AM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,04/25/2016 02:05:55 PM,600 Block of DE HARO ST,SF,94107,B10,37,2511,2,2,2,true,,1,MEDIC,4,10,10,Potrero Hill,"(37.761655083303, -122.401193113905)",110560115-54 +102610135,T11,10082460,Alarms,09/18/2010,09/18/2010,09/18/2010 09:22:16 AM,09/18/2010 09:24:15 AM,09/18/2010 09:24:58 AM,09/18/2010 09:26:14 AM,09/18/2010 09:30:48 AM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,Other,09/18/2010 09:33:30 AM,900 Block of BOSWORTH ST,SF,94131,B09,26,8176,3,3,3,false,,1,TRUCK,1,9,8,West of Twin Peaks,"(37.7340314726179, -122.437117738602)",102610135-T11 +121000328,B07,12033258,Structure Fire,04/09/2012,04/09/2012,04/09/2012 06:37:48 PM,04/09/2012 06:38:24 PM,04/09/2012 06:38:45 PM,04/09/2012 06:40:41 PM,04/09/2012 06:43:05 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 06:47:24 PM,CALIFORNIA ST/28TH AV,SF,94121,B07,14,7227,3,3,3,false,Fire,1,CHIEF,3,7,2,Seacliff,"(37.7837371507807, -122.488217443175)",121000328-B07 +131890154,94,13064398,Medical Incident,07/08/2013,07/08/2013,07/08/2013 12:02:13 PM,07/08/2013 12:03:19 PM,07/08/2013 12:03:41 PM,07/08/2013 12:03:55 PM,07/08/2013 12:07:22 PM,07/08/2013 12:27:20 PM,07/08/2013 12:37:11 PM,Code 2 Transport,07/08/2013 01:06:09 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",131890154-94 +160352878,77,16013924,Medical Incident,02/04/2016,02/04/2016,02/04/2016 05:35:34 PM,02/04/2016 05:35:34 PM,02/04/2016 05:36:00 PM,02/04/2016 05:36:05 PM,02/04/2016 05:40:19 PM,02/04/2016 05:52:23 PM,02/04/2016 06:04:33 PM,Code 2 Transport,02/04/2016 06:23:06 PM,ANNIE ST/STEVENSON ST,San Francisco,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.787617863969, -122.402289884758)",160352878-77 +122510329,77,12083127,Medical Incident,09/07/2012,09/07/2012,09/07/2012 08:26:17 PM,09/07/2012 08:27:07 PM,09/07/2012 08:29:43 PM,09/07/2012 08:30:05 PM,09/07/2012 08:39:47 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Gone on Arrival,09/07/2012 08:41:57 PM,600 Block of PARIS ST,SF,94112,B09,43,6125,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7185378337317, -122.437431844651)",122510329-77 +140010507,AR1,14000428,Outside Fire,01/01/2014,01/01/2014,01/01/2014 06:09:58 PM,01/01/2014 06:10:50 PM,01/01/2014 06:33:06 PM,01/01/2014 06:33:06 PM,01/01/2014 06:34:20 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Fire,01/01/2014 07:19:53 PM,200 Block of CAPP ST,SF,94110,B02,7,5246,,3,3,false,Fire,1,INVESTIGATION,2,2,9,Mission,"(37.7627107311563, -122.4182793889)",140010507-AR1 +140780155,KM09,14026363,Medical Incident,03/19/2014,03/19/2014,03/19/2014 11:00:06 AM,03/19/2014 11:01:17 AM,03/19/2014 12:33:16 PM,03/19/2014 12:33:16 PM,03/19/2014 12:33:16 PM,03/19/2014 12:33:31 PM,04/25/2016 01:47:40 PM,Code 2 Transport,03/19/2014 12:33:49 PM,1100 Block of UNION ST,SAN FRANCISCO,94109,B01,41,1611,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,2,Russian Hill,"(37.7993058366445, -122.418648752342)",140780155-KM09 +160250177,53,16009757,Medical Incident,01/25/2016,01/24/2016,01/25/2016 01:48:57 AM,01/25/2016 01:50:22 AM,01/25/2016 01:51:44 AM,01/25/2016 01:52:07 AM,01/25/2016 02:13:36 AM,01/25/2016 02:13:37 AM,01/25/2016 02:24:03 AM,Code 2 Transport,01/25/2016 03:06:50 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160250177-53 +110780401,E18,11025859,Electrical Hazard,03/19/2011,03/19/2011,03/19/2011 11:18:41 PM,03/19/2011 11:21:29 PM,03/19/2011 11:21:54 PM,03/19/2011 11:23:18 PM,03/19/2011 11:26:45 PM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,Other,03/19/2011 11:32:18 PM,27TH AV/LAWTON ST,SF,94122,B08,18,7454,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7575893374448, -122.485306629409)",110780401-E18 +122300299,87,12076319,Structure Fire,08/17/2012,08/17/2012,08/17/2012 04:40:13 PM,08/17/2012 04:40:58 PM,08/17/2012 04:41:29 PM,08/17/2012 04:41:42 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 04:46:12 PM,100 Block of 29TH ST,SF,94110,B06,11,5576,3,3,3,true,Fire,1,MEDIC,9,6,8,Noe Valley,"(37.7438354653162, -122.423521889173)",122300299-87 +160461303,62,16018468,Medical Incident,02/15/2016,02/15/2016,02/15/2016 11:13:23 AM,02/15/2016 11:14:18 AM,02/15/2016 11:15:14 AM,02/15/2016 11:16:39 AM,02/15/2016 11:19:54 AM,02/15/2016 11:32:10 AM,02/15/2016 11:37:17 AM,Code 2 Transport,02/15/2016 12:22:17 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160461303-62 +160351190,55,16013763,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:18:11 AM,02/04/2016 10:21:01 AM,02/04/2016 10:21:14 AM,02/04/2016 10:21:31 AM,02/04/2016 10:30:00 AM,02/04/2016 10:38:45 AM,02/04/2016 11:22:28 AM,Code 2 Transport,02/04/2016 12:10:07 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160351190-55 +160520418,55,16020683,Medical Incident,02/21/2016,02/20/2016,02/21/2016 02:49:18 AM,02/21/2016 02:51:23 AM,02/21/2016 02:52:16 AM,02/21/2016 02:52:40 AM,02/21/2016 03:04:21 AM,02/21/2016 03:09:32 AM,02/21/2016 03:19:38 AM,Code 2 Transport,02/21/2016 04:00:21 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160520418-55 +160641591,75,16025482,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:46:05 AM,03/04/2016 11:47:00 AM,03/04/2016 11:47:16 AM,03/04/2016 11:48:00 AM,03/04/2016 11:52:01 AM,03/04/2016 11:57:38 AM,03/04/2016 12:10:02 PM,Code 3 Transport,03/04/2016 01:10:48 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",160641591-75 +102760157,E39,10087707,Medical Incident,10/03/2010,10/03/2010,10/03/2010 11:04:32 AM,10/03/2010 11:05:15 AM,10/03/2010 11:05:39 AM,10/03/2010 11:05:59 AM,10/03/2010 11:07:36 AM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 11:36:48 AM,100 Block of MADRONE AVE,SF,94127,B08,39,8612,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7407800476092, -122.468014173503)",102760157-E39 +160613376,85,16024483,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:13:59 PM,03/01/2016 09:13:59 PM,03/01/2016 09:17:08 PM,03/01/2016 09:17:16 PM,03/01/2016 09:31:44 PM,03/01/2016 09:44:53 PM,03/01/2016 10:05:15 PM,Code 2 Transport,03/01/2016 10:40:20 PM,WAYLAND ST/UNIVERSITY ST,San Francisco,94134,B09,42,6345,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.7238582165262, -122.41296908292)",160613376-85 +132020159,E16,13068449,Water Rescue,07/21/2013,07/21/2013,07/21/2013 01:27:21 PM,07/21/2013 01:28:56 PM,07/21/2013 01:30:25 PM,07/21/2013 01:31:08 PM,07/21/2013 01:42:52 PM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 02:20:25 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,3,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132020159-E16 +130800200,67,13026755,Medical Incident,03/21/2013,03/21/2013,03/21/2013 12:59:54 PM,03/21/2013 01:00:24 PM,03/21/2013 01:01:40 PM,03/21/2013 01:02:09 PM,03/21/2013 01:07:36 PM,03/21/2013 01:27:50 PM,03/21/2013 01:40:41 PM,Code 2 Transport,03/21/2013 02:25:10 PM,1900 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",130800200-67 +122310334,E44,12076742,Gas Leak (Natural and LP Gases),08/18/2012,08/18/2012,08/18/2012 09:10:47 PM,08/18/2012 09:12:45 PM,08/18/2012 09:12:50 PM,08/18/2012 09:13:55 PM,08/18/2012 09:16:46 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 09:20:24 PM,300 Block of TEDDY AVE,SF,94134,B09,44,6312,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7153951688857, -122.409692952213)",122310334-E44 +130780157,67,13026000,Medical Incident,03/19/2013,03/19/2013,03/19/2013 10:27:43 AM,03/19/2013 10:29:29 AM,03/19/2013 10:29:38 AM,03/19/2013 10:29:54 AM,03/19/2013 10:34:10 AM,03/19/2013 10:59:38 AM,03/19/2013 11:11:18 AM,Code 2 Transport,03/19/2013 11:38:59 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",130780157-67 +131390027,E08,13046868,Medical Incident,05/19/2013,05/18/2013,05/19/2013 01:25:28 AM,05/19/2013 01:27:00 AM,05/19/2013 01:27:13 AM,05/19/2013 01:29:37 AM,05/19/2013 01:35:54 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,No Merit,05/19/2013 01:45:42 AM,300 Block of BERRY ST,SF,94158,B03,8,2235,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7731124835363, -122.39664007904)",131390027-E08 +122640197,E24,12087195,Medical Incident,09/20/2012,09/20/2012,09/20/2012 01:28:51 PM,09/20/2012 01:29:57 PM,09/20/2012 01:30:15 PM,09/20/2012 01:31:28 PM,09/20/2012 01:35:30 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 01:48:58 PM,5300 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",122640197-E24 +113020410,73,11100395,Medical Incident,10/29/2011,10/29/2011,10/29/2011 11:56:36 PM,10/29/2011 11:57:38 PM,10/29/2011 11:57:50 PM,10/29/2011 11:58:30 PM,04/25/2016 02:01:54 PM,10/30/2011 12:12:21 AM,10/30/2011 12:20:06 AM,Code 2 Transport,10/30/2011 12:49:36 AM,3100 Block of FILLMORE ST,SF,94123,B04,16,3553,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.7987282178823, -122.43575101831)",113020410-73 +160610970,AM10,16024242,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:48:09 AM,03/01/2016 09:48:09 AM,03/01/2016 09:48:27 AM,03/01/2016 09:49:24 AM,03/01/2016 09:55:31 AM,03/01/2016 10:06:26 AM,03/01/2016 10:13:39 AM,Code 2 Transport,03/01/2016 10:43:22 AM,3100 Block of 24TH ST,San Francisco,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7524180928571, -122.414623849785)",160610970-AM10 +122920177,83,12096735,Medical Incident,10/18/2012,10/18/2012,10/18/2012 11:51:35 AM,10/18/2012 11:53:56 AM,10/18/2012 11:54:29 AM,04/25/2016 01:56:14 PM,10/18/2012 12:06:25 PM,10/18/2012 12:21:59 PM,10/18/2012 12:45:05 PM,Code 2 Transport,10/18/2012 01:07:53 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",122920177-83 +160533639,53,16021399,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:07:55 PM,02/22/2016 11:09:09 PM,02/22/2016 11:09:39 PM,02/22/2016 11:09:50 PM,02/22/2016 11:15:10 PM,02/22/2016 11:32:29 PM,02/22/2016 11:45:45 PM,Fire,02/23/2016 01:00:15 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7608670671665, -122.434446928667)",160533639-53 +133000275,T03,13102025,Medical Incident,10/27/2013,10/27/2013,10/27/2013 05:17:55 PM,10/27/2013 05:20:10 PM,10/27/2013 05:20:26 PM,10/27/2013 05:20:34 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 05:22:36 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,TRUCK,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",133000275-T03 +131000289,RC2,13033693,Medical Incident,04/10/2013,04/10/2013,04/10/2013 04:55:00 PM,04/10/2013 04:56:29 PM,04/10/2013 05:00:09 PM,04/25/2016 01:53:23 PM,04/10/2013 05:04:25 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/10/2013 05:14:56 PM,500 Block of ARGUELLO BLVD,SF,94118,B07,31,7113,3,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.780292233646, -122.458864248937)",131000289-RC2 +110840282,E18,11027750,Traffic Collision,03/25/2011,03/25/2011,03/25/2011 04:35:40 PM,03/25/2011 04:35:40 PM,03/25/2011 04:36:09 PM,03/25/2011 04:48:28 PM,03/25/2011 04:39:15 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 05:11:15 PM,SUNSET BL/ULLOA ST,SF,94116,B08,18,7612,2,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7403563251836, -122.494312596203)",110840282-E18 +160062959,AM16,16002538,Medical Incident,01/06/2016,01/06/2016,01/06/2016 06:07:34 PM,01/06/2016 06:09:51 PM,01/06/2016 06:11:12 PM,01/06/2016 06:11:35 PM,01/06/2016 06:12:04 PM,01/06/2016 06:33:32 PM,01/06/2016 06:50:12 PM,Code 2 Transport,01/06/2016 07:14:29 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",160062959-AM16 +160732859,KM03,16029117,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:28:19 PM,03/13/2016 09:28:46 PM,03/13/2016 09:32:21 PM,03/13/2016 09:32:51 PM,03/13/2016 09:37:31 PM,03/13/2016 10:06:50 PM,03/13/2016 10:28:28 PM,Code 2 Transport,03/13/2016 11:10:28 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160732859-KM03 +130820340,E21,13027589,Medical Incident,03/23/2013,03/23/2013,03/23/2013 10:19:47 PM,03/23/2013 10:22:22 PM,03/23/2013 10:22:31 PM,03/23/2013 10:23:41 PM,03/23/2013 10:25:36 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/23/2013 10:27:28 PM,1000 Block of HAIGHT ST,SF,94117,B05,21,4246,3,3,3,false,Non Life-threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7710062058804, -122.439544330519)",130820340-E21 +133610273,83,13122754,Medical Incident,12/27/2013,12/27/2013,12/27/2013 06:36:03 PM,12/27/2013 06:36:44 PM,12/27/2013 06:39:05 PM,12/27/2013 06:39:11 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 06:51:10 PM,100 Block of 3RD ST,SF,94103,B03,1,2178,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7853906306613, -122.401027740415)",133610273-83 +132040206,E36,13069112,Medical Incident,07/23/2013,07/23/2013,07/23/2013 02:19:01 PM,07/23/2013 02:19:49 PM,07/23/2013 02:19:59 PM,07/23/2013 02:21:29 PM,07/23/2013 02:24:14 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 02:31:53 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",132040206-E36 +102490215,B10,10078724,Alarms,09/06/2010,09/06/2010,09/06/2010 03:31:56 PM,09/06/2010 03:33:49 PM,09/06/2010 03:35:04 PM,09/06/2010 03:36:59 PM,09/06/2010 03:39:42 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Fire,09/06/2010 03:41:09 PM,3100 Block of KAMILLE CT,SF,94110,B06,7,5533,B,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.7489045934703, -122.413186909994)",102490215-B10 +140500154,E38,14016956,Structure Fire,02/19/2014,02/19/2014,02/19/2014 12:43:57 PM,02/19/2014 12:44:31 PM,02/19/2014 12:44:49 PM,02/19/2014 12:45:19 PM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,Fire,02/19/2014 01:36:39 PM,2900 Block of LAGUNA ST,SF,94123,B04,16,3353,3,3,3,false,Alarm,1,ENGINE,8,4,2,Marina,"(37.7981909638084, -122.430584725411)",140500154-E38 +122240306,E17,12074384,Medical Incident,08/11/2012,08/11/2012,08/11/2012 07:19:15 PM,08/11/2012 07:20:47 PM,08/11/2012 07:20:59 PM,08/11/2012 07:22:36 PM,08/11/2012 07:25:07 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 07:34:03 PM,1000 Block of INGERSON AVE,SF,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7195997438228, -122.393956985315)",122240306-E17 +122630222,E03,12086896,Structure Fire,09/19/2012,09/19/2012,09/19/2012 03:34:22 PM,09/19/2012 03:35:11 PM,09/19/2012 03:35:42 PM,09/19/2012 03:36:38 PM,09/19/2012 03:37:12 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/19/2012 03:49:26 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Fire,1,ENGINE,2,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",122630222-E03 +131520196,T01,13051511,Alarms,06/01/2013,06/01/2013,06/01/2013 02:22:30 PM,06/01/2013 02:24:05 PM,06/01/2013 02:25:19 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 02:25:58 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,Alarm,1,TRUCK,3,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",131520196-T01 +132250182,E03,13075943,Alarms,08/13/2013,08/13/2013,08/13/2013 12:30:16 PM,08/13/2013 12:31:28 PM,08/13/2013 12:32:07 PM,08/13/2013 12:33:19 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 12:35:56 PM,200 Block of POST ST,SF,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7886509906461, -122.406006971458)",132250182-E03 +121340226,KM01,12044650,Medical Incident,05/13/2012,05/13/2012,05/13/2012 04:24:35 PM,05/13/2012 04:26:46 PM,05/13/2012 04:27:14 PM,05/13/2012 04:27:46 PM,05/13/2012 04:34:19 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Patient Declined Transport,05/13/2012 05:01:52 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7581042111797, -122.421163821698)",121340226-KM01 +110500092,E08,11016473,Medical Incident,02/19/2011,02/18/2011,02/19/2011 07:58:30 AM,02/19/2011 07:59:24 AM,02/19/2011 07:59:46 AM,02/19/2011 08:01:07 AM,02/19/2011 08:02:41 AM,02/19/2011 08:24:00 AM,04/25/2016 02:06:00 PM,Other,02/19/2011 08:44:56 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110500092-E08 +132300304,92,13077762,Medical Incident,08/18/2013,08/18/2013,08/18/2013 06:46:37 PM,08/18/2013 06:47:58 PM,08/18/2013 06:58:05 PM,08/18/2013 06:58:22 PM,08/18/2013 07:11:29 PM,08/18/2013 07:22:00 PM,08/18/2013 07:37:18 PM,Code 2 Transport,08/18/2013 08:07:33 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132300304-92 +111000195,79,11033227,Medical Incident,04/10/2011,04/10/2011,04/10/2011 01:44:47 PM,04/10/2011 01:45:15 PM,04/10/2011 01:45:40 PM,04/10/2011 01:46:45 PM,04/10/2011 01:54:28 PM,04/10/2011 02:15:55 PM,04/10/2011 02:38:58 PM,Code 2 Transport,04/10/2011 03:03:10 PM,800 Block of MIRAMAR AVE,SF,94112,B09,15,8511,3,2,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7304367304993, -122.458346694502)",111000195-79 +122550208,T01,12084304,Traffic Collision,09/11/2012,09/11/2012,09/11/2012 01:31:38 PM,09/11/2012 01:33:03 PM,09/11/2012 01:33:12 PM,09/11/2012 01:34:25 PM,09/11/2012 01:36:15 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 01:36:59 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,South of Market,"(37.7786769584105, -122.408601057595)",122550208-T01 +130460168,B01,13015583,Alarms,02/15/2013,02/15/2013,02/15/2013 11:02:55 AM,02/15/2013 11:05:07 AM,02/15/2013 11:05:25 AM,02/15/2013 11:06:00 AM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 11:10:29 AM,0 Block of WAVERLY PL,SF,94108,B01,2,1326,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7937477470757, -122.406800604626)",130460168-B01 +160784112,63,16031222,Medical Incident,03/18/2016,03/18/2016,03/18/2016 11:19:17 PM,03/18/2016 11:21:17 PM,03/18/2016 11:30:35 PM,03/18/2016 11:31:00 PM,03/18/2016 11:44:50 PM,03/19/2016 12:12:51 AM,03/19/2016 12:21:27 AM,Code 2 Transport,03/19/2016 12:33:17 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",160784112-63 +112140272,E41,11070701,Medical Incident,08/02/2011,08/02/2011,08/02/2011 05:05:07 PM,08/02/2011 05:07:37 PM,08/02/2011 05:07:52 PM,08/02/2011 05:08:54 PM,08/02/2011 05:10:12 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 05:24:32 PM,1700 Block of LARKIN ST,SF,94109,B01,41,1633,3,1,2,false,,1,ENGINE,1,1,3,Russian Hill,"(37.7939187842398, -122.41959752588)",112140272-E41 +111480291,75,11049183,Medical Incident,05/28/2011,05/28/2011,05/28/2011 08:06:36 PM,05/28/2011 08:06:59 PM,05/28/2011 08:07:40 PM,05/28/2011 08:07:50 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,04/25/2016 02:04:24 PM,OLMSTEAD ST/GIRARD ST,SF,94134,B10,44,6326,2,2,2,true,,1,MEDIC,1,10,9,Portola,"(37.7225740767609, -122.402604814524)",111480291-75 +112440323,AM18,11080570,Medical Incident,09/01/2011,09/01/2011,09/01/2011 08:10:36 PM,09/01/2011 08:11:25 PM,09/01/2011 08:12:15 PM,09/01/2011 08:13:10 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 08:20:19 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,2,2,2,false,,1,PRIVATE,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",112440323-AM18 +132120156,RC3,13071640,Medical Incident,07/31/2013,07/31/2013,07/31/2013 12:21:58 PM,07/31/2013 12:22:37 PM,07/31/2013 12:25:50 PM,07/31/2013 12:27:00 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 12:30:52 PM,1000 Block of WISCONSIN ST,SF,94107,B10,37,2565,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,10,10,Potrero Hill,"(37.7542876781547, -122.398580716544)",132120156-RC3 +160073008,75,16002959,Traffic Collision,01/07/2016,01/07/2016,01/07/2016 06:19:29 PM,01/07/2016 06:20:40 PM,01/07/2016 06:21:12 PM,01/07/2016 06:21:18 PM,01/07/2016 06:29:03 PM,01/07/2016 06:37:06 PM,01/07/2016 06:44:08 PM,Code 3 Transport,01/07/2016 07:47:07 PM,3100 Block of SAN JOSE AVE,San Francisco,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7087572220202, -122.458586011513)",160073008-75 +130400036,AM10,13013532,Medical Incident,02/09/2013,02/08/2013,02/09/2013 01:46:02 AM,02/09/2013 01:46:46 AM,02/09/2013 01:47:43 AM,02/09/2013 01:48:07 AM,02/09/2013 02:08:35 AM,02/09/2013 02:17:26 AM,02/09/2013 02:25:19 AM,Code 2 Transport,02/09/2013 02:55:41 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",130400036-AM10 +122890005,E28,12095463,Structure Fire,10/15/2012,10/14/2012,10/15/2012 12:11:39 AM,10/15/2012 12:11:40 AM,10/15/2012 12:12:00 AM,10/15/2012 12:13:33 AM,10/15/2012 12:15:51 AM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 12:25:59 AM,2100 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,false,Alarm,1,ENGINE,2,1,3,North Beach,"(37.8044382972452, -122.411605476142)",122890005-E28 +160312313,79,16012214,Medical Incident,01/31/2016,01/31/2016,01/31/2016 03:20:09 PM,01/31/2016 03:23:10 PM,01/31/2016 03:26:01 PM,01/31/2016 03:26:01 PM,01/31/2016 03:28:15 PM,01/31/2016 03:44:07 PM,01/31/2016 04:01:18 PM,Code 2 Transport,01/31/2016 04:28:58 PM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",160312313-79 +133100284,E03,13105472,Medical Incident,11/06/2013,11/06/2013,11/06/2013 05:19:29 PM,11/06/2013 05:22:39 PM,11/06/2013 05:22:47 PM,11/06/2013 05:24:02 PM,11/06/2013 05:28:11 PM,04/25/2016 01:49:53 PM,04/25/2016 01:49:53 PM,Other,11/06/2013 05:35:08 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",133100284-E03 +133410101,KM09,13115552,Medical Incident,12/07/2013,12/06/2013,12/07/2013 07:54:51 AM,12/07/2013 07:56:02 AM,12/07/2013 07:56:13 AM,12/07/2013 07:57:47 AM,12/07/2013 08:05:02 AM,12/07/2013 08:27:04 AM,12/07/2013 08:33:20 AM,Code 2 Transport,12/07/2013 09:19:47 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",133410101-KM09 +112000263,81,11066012,Medical Incident,07/19/2011,07/19/2011,07/19/2011 04:24:49 PM,07/19/2011 04:26:34 PM,07/19/2011 04:26:58 PM,07/19/2011 04:27:10 PM,07/19/2011 04:34:03 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Other,07/19/2011 04:35:16 PM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8084350175869, -122.410774214375)",112000263-81 +140260011,E13,14008755,Alarms,01/26/2014,01/25/2014,01/26/2014 12:26:06 AM,01/26/2014 12:29:15 AM,01/26/2014 12:30:03 AM,01/26/2014 12:30:15 AM,01/26/2014 12:31:22 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Fire,01/26/2014 12:35:36 AM,300 Block of SANSOME ST,SF,94104,B01,13,1166,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7937743739296, -122.401201213588)",140260011-E13 +121770081,B09,12058810,Alarms,06/25/2012,06/25/2012,06/25/2012 08:03:47 AM,06/25/2012 08:04:44 AM,06/25/2012 08:05:23 AM,06/25/2012 08:07:48 AM,06/25/2012 08:16:18 AM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/25/2012 08:16:33 AM,400 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,false,Alarm,1,CHIEF,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",121770081-B09 +121180109,94,12039030,Medical Incident,04/27/2012,04/27/2012,04/27/2012 09:10:38 AM,04/27/2012 09:11:33 AM,04/27/2012 09:12:46 AM,04/27/2012 09:13:13 AM,04/27/2012 09:23:34 AM,04/27/2012 09:47:17 AM,04/27/2012 09:57:26 AM,Code 2 Transport,04/27/2012 10:31:49 AM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",121180109-94 +120590281,RA48,12019506,Medical Incident,02/28/2012,02/28/2012,02/28/2012 05:38:36 PM,02/28/2012 05:40:06 PM,02/28/2012 05:43:20 PM,02/28/2012 05:47:28 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Other,02/28/2012 06:11:37 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,1,1,2,false,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",120590281-RA48 +131400433,T05,13047617,Structure Fire,05/20/2013,05/20/2013,05/20/2013 11:29:04 PM,05/20/2013 11:29:46 PM,05/20/2013 11:30:27 PM,05/20/2013 11:31:46 PM,05/21/2013 12:07:12 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 12:30:39 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,false,Fire,1,TRUCK,11,5,5,Western Addition,"(37.7797277077519, -122.431103473714)",131400433-T05 +120040309,B04,12001513,Structure Fire,01/04/2012,01/04/2012,01/04/2012 07:30:03 PM,01/04/2012 07:31:34 PM,01/04/2012 07:32:12 PM,01/04/2012 07:34:11 PM,01/04/2012 07:36:39 PM,04/25/2016 02:00:47 PM,04/25/2016 02:00:47 PM,Other,01/04/2012 07:36:52 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Fire,1,CHIEF,6,2,6,Mission,"(37.7740948566882, -122.420001436964)",120040309-B04 +122790068,E07,12092140,Alarms,10/05/2012,10/04/2012,10/05/2012 07:10:38 AM,10/05/2012 07:11:58 AM,10/05/2012 07:12:11 AM,10/05/2012 07:13:55 AM,10/05/2012 07:17:32 AM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/05/2012 07:17:38 AM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",122790068-E07 +121890040,E03,12062851,Medical Incident,07/07/2012,07/06/2012,07/07/2012 03:29:46 AM,07/07/2012 03:30:43 AM,07/07/2012 03:30:58 AM,07/07/2012 03:32:31 AM,07/07/2012 03:34:35 AM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/07/2012 03:47:40 AM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7855029033652, -122.414807788747)",121890040-E03 +113400299,E18,11112785,Traffic Collision,12/06/2011,12/06/2011,12/06/2011 04:47:14 PM,12/06/2011 04:49:05 PM,12/06/2011 04:50:38 PM,12/06/2011 04:59:24 PM,12/06/2011 05:03:00 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/06/2011 05:14:33 PM,GREAT HY/NORIEGA ST,SF,94122,B08,23,7725,2,2,2,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7528302279051, -122.508432394418)",113400299-E18 +160743618,53,16029480,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:42:56 PM,03/14/2016 08:43:30 PM,03/14/2016 08:43:51 PM,03/14/2016 08:44:39 PM,03/14/2016 08:50:34 PM,03/14/2016 08:56:42 PM,03/14/2016 09:24:21 PM,Patient Declined Transport,03/14/2016 09:46:06 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160743618-53 +122160117,E36,12071623,Medical Incident,08/03/2012,08/03/2012,08/03/2012 09:42:36 AM,08/03/2012 09:42:51 AM,08/03/2012 09:43:07 AM,08/03/2012 09:43:41 AM,08/03/2012 09:45:37 AM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Other,08/03/2012 09:46:46 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",122160117-E36 +131170021,85,13039218,Medical Incident,04/27/2013,04/26/2013,04/27/2013 01:02:14 AM,04/27/2013 01:03:39 AM,04/27/2013 01:03:59 AM,04/27/2013 01:04:15 AM,04/27/2013 01:08:42 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Patient Declined Transport,04/27/2013 01:37:09 AM,3000 Block of GOUGH ST,SF,94123,B04,16,3244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8013661410742, -122.427991917809)",131170021-85 +111410282,86,11046946,Medical Incident,05/21/2011,05/21/2011,05/21/2011 07:03:49 PM,05/21/2011 07:03:50 PM,05/21/2011 07:03:50 PM,05/21/2011 07:04:36 PM,05/21/2011 07:08:40 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,Against Medical Advice,05/21/2011 07:32:37 PM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",111410282-86 +110020069,E06,11000572,Structure Fire,01/02/2011,01/01/2011,01/02/2011 07:17:35 AM,01/02/2011 07:18:06 AM,01/02/2011 07:18:24 AM,01/02/2011 07:19:14 AM,01/02/2011 07:22:55 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 08:40:12 AM,700 Block of ASHBURY ST,SF,94117,B05,12,5143,3,3,3,true,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7681560288269, -122.44648875825)",110020069-E06 +120810372,54,12027050,Medical Incident,03/21/2012,03/21/2012,03/21/2012 09:57:43 PM,03/21/2012 09:59:53 PM,03/21/2012 10:00:12 PM,03/21/2012 10:00:31 PM,03/21/2012 10:05:29 PM,03/21/2012 10:22:55 PM,03/21/2012 10:27:39 PM,Code 2 Transport,03/21/2012 10:47:44 PM,3100 Block of 26TH ST,SF,94110,B06,7,5614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7492662278285, -122.413486484875)",120810372-54 +121200337,85,12039975,Medical Incident,04/29/2012,04/29/2012,04/29/2012 08:33:09 PM,04/29/2012 08:34:33 PM,04/29/2012 08:34:46 PM,04/29/2012 08:35:03 PM,04/29/2012 08:40:36 PM,04/29/2012 09:00:01 PM,04/29/2012 09:08:15 PM,Code 2 Transport,04/29/2012 09:38:50 PM,0 Block of POLK ST,SF,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7769444030522, -122.417995382094)",121200337-85 +102360168,B07,10074301,Alarms,08/24/2010,08/24/2010,08/24/2010 12:10:23 PM,08/24/2010 12:11:15 PM,08/24/2010 12:11:26 PM,08/24/2010 12:13:05 PM,08/24/2010 12:14:52 PM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 12:22:04 PM,200 Block of 11TH AVE,SF,94118,B07,31,7141,3,3,3,false,,1,CHIEF,2,7,1,Inner Richmond,"(37.783634135396, -122.469908011173)",102360168-B07 +160891537,KM13,16035316,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:38:59 AM,03/29/2016 11:41:32 AM,03/29/2016 11:42:28 AM,03/29/2016 11:42:40 AM,03/29/2016 11:49:33 AM,03/29/2016 12:22:23 PM,03/29/2016 12:38:36 PM,Code 2 Transport,03/29/2016 01:19:25 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160891537-KM13 +111930001,E17,11063572,Vehicle Fire,07/11/2011,07/11/2011,07/11/2011 11:59:54 PM,07/12/2011 12:01:25 AM,07/12/2011 12:03:14 AM,07/12/2011 12:05:08 AM,07/12/2011 12:08:10 AM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Fire,07/12/2011 12:32:55 AM,600 Block of JAMESTOWN AVE,SF,94124,B10,17,6577,3,3,3,false,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7131072321423, -122.387833652325)",111930001-E17 +123050400,E01,12101367,Medical Incident,10/31/2012,10/31/2012,10/31/2012 06:04:53 PM,10/31/2012 06:05:10 PM,10/31/2012 06:05:26 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 06:07:02 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2253,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7789337876718, -122.404974448604)",123050400-E01 +140480050,E13,14016233,Alarms,02/17/2014,02/16/2014,02/17/2014 04:54:00 AM,02/17/2014 04:54:55 AM,02/17/2014 04:55:03 AM,02/17/2014 04:56:44 AM,02/17/2014 05:00:39 AM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Fire,02/17/2014 06:06:20 AM,0 Block of KEARNY ST,SF,94108,B01,1,1241,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7877942875414, -122.403529728368)",140480050-E13 +133210029,E36,13108913,Traffic Collision,11/17/2013,11/16/2013,11/17/2013 01:36:28 AM,11/17/2013 01:37:25 AM,11/17/2013 01:37:58 AM,04/25/2016 01:49:43 PM,11/17/2013 01:38:11 AM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 01:52:32 AM,OCTAVIA ST/MARKET ST,SF,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",133210029-E36 +160171012,53,16006770,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:47:19 AM,01/17/2016 09:48:36 AM,01/17/2016 09:48:52 AM,01/17/2016 09:49:02 AM,01/17/2016 09:57:44 AM,01/17/2016 10:16:14 AM,01/17/2016 10:31:24 AM,Code 2 Transport,01/17/2016 11:21:05 AM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160171012-53 +160083747,65,16003433,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:42:41 PM,01/08/2016 09:44:20 PM,01/08/2016 09:44:42 PM,01/08/2016 09:45:23 PM,01/08/2016 09:57:23 PM,01/08/2016 10:01:48 PM,01/08/2016 10:17:43 PM,Code 2 Transport,01/08/2016 10:41:55 PM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7352738344938, -122.391413470729)",160083747-65 +103290291,E03,10105468,Medical Incident,11/25/2010,11/25/2010,11/25/2010 08:56:06 PM,11/25/2010 08:58:46 PM,11/25/2010 08:59:46 PM,11/25/2010 09:00:38 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/25/2010 09:01:50 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",103290291-E03 +160412488,73,16016523,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:52:55 PM,02/10/2016 03:54:40 PM,02/10/2016 03:55:26 PM,02/10/2016 03:55:41 PM,02/10/2016 04:04:36 PM,02/10/2016 04:26:25 PM,02/10/2016 04:56:49 PM,Code 3 Transport,02/10/2016 05:21:52 PM,2400 Block of KEITH ST,San Francisco,94124,B10,17,6546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",160412488-73 +110730255,E06,11024063,Medical Incident,03/14/2011,03/14/2011,03/14/2011 03:16:06 PM,03/14/2011 03:16:30 PM,03/14/2011 03:16:43 PM,03/14/2011 03:17:40 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 03:20:33 PM,1300 Block of FELL ST,SF,94117,B05,21,4252,3,3,3,true,,1,ENGINE,3,5,5,Hayes Valley,"(37.7736869919131, -122.440088215983)",110730255-E06 +111480355,B01,11049244,Alarms,05/28/2011,05/28/2011,05/28/2011 11:52:06 PM,05/28/2011 11:53:13 PM,05/28/2011 11:53:21 PM,05/28/2011 11:55:04 PM,05/29/2011 12:00:24 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 12:03:11 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",111480355-B01 +160420641,82,16016759,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:52:14 AM,02/11/2016 07:53:53 AM,02/11/2016 07:54:10 AM,02/11/2016 07:54:24 AM,02/11/2016 08:00:38 AM,02/11/2016 08:25:07 AM,02/11/2016 09:00:17 AM,Code 2 Transport,02/11/2016 09:37:13 AM,200 Block of JOOST AVE,San Francisco,94131,B09,26,8214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7323075322144, -122.440886977076)",160420641-82 +140240306,E41,14008274,Medical Incident,01/24/2014,01/24/2014,01/24/2014 04:27:05 PM,01/24/2014 04:28:17 PM,01/24/2014 04:28:35 PM,01/24/2014 04:29:32 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/24/2014 04:31:07 PM,JONES ST/BUSH ST,SF,94109,B01,41,1446,,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7895293173979, -122.413728390683)",140240306-E41 +130620286,KM12,13020862,Medical Incident,03/03/2013,03/03/2013,03/03/2013 04:59:14 PM,03/03/2013 05:00:31 PM,03/03/2013 05:00:58 PM,03/03/2013 05:01:34 PM,03/03/2013 05:04:44 PM,03/03/2013 05:20:09 PM,03/03/2013 05:33:46 PM,Code 2 Transport,03/03/2013 06:08:23 PM,1200 Block of MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",130620286-KM12 +140810073,AM24,14027274,Medical Incident,03/22/2014,03/21/2014,03/22/2014 07:02:03 AM,03/22/2014 07:02:48 AM,03/22/2014 07:03:05 AM,03/22/2014 07:03:39 AM,03/22/2014 07:06:30 AM,03/22/2014 07:09:11 AM,03/22/2014 07:18:51 AM,Code 2 Transport,03/22/2014 07:55:48 AM,900 Block of MARKET ST,SAN FRANCISCO,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",140810073-AM24 +133330142,67,13112926,Medical Incident,11/29/2013,11/29/2013,11/29/2013 12:58:32 PM,11/29/2013 12:59:43 PM,11/29/2013 01:00:30 PM,11/29/2013 01:01:41 PM,11/29/2013 01:10:21 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Patient Declined Transport,11/29/2013 01:28:35 PM,900 Block of MARKET ST,SF,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",133330142-67 +160651439,56,16025907,Medical Incident,03/05/2016,03/05/2016,03/05/2016 12:00:08 PM,03/05/2016 12:01:15 PM,03/05/2016 12:01:54 PM,03/05/2016 12:02:01 PM,03/05/2016 12:10:42 PM,03/05/2016 12:27:24 PM,03/05/2016 12:47:39 PM,Code 2 Transport,03/05/2016 01:58:17 PM,600 Block of COLBY ST,San Francisco,94134,B09,42,6344,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7223322748016, -122.411171674482)",160651439-56 +160892302,KM01,16035377,Medical Incident,03/29/2016,03/29/2016,03/29/2016 02:53:57 PM,03/29/2016 02:55:40 PM,03/29/2016 02:55:59 PM,03/29/2016 02:56:28 PM,03/29/2016 03:00:07 PM,03/29/2016 03:23:03 PM,03/29/2016 03:34:38 PM,Code 2 Transport,03/29/2016 04:16:44 PM,2500 Block of JUDAH ST,San Francisco,94122,B08,18,7513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7612125537078, -122.489320068189)",160892302-KM01 +110440039,B10,11014516,Medical Incident,02/13/2011,02/12/2011,02/13/2011 01:56:10 AM,02/13/2011 01:56:42 AM,02/13/2011 01:57:46 AM,02/13/2011 02:00:25 AM,02/13/2011 02:03:34 AM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 02:06:24 AM,3RD ST/PALOU AV,SF,94124,B10,17,6515,E,E,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",110440039-B10 +160161014,79,16006351,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:30:53 AM,01/16/2016 09:31:21 AM,01/16/2016 09:31:33 AM,01/16/2016 09:31:55 AM,01/16/2016 09:37:08 AM,01/16/2016 09:57:21 AM,01/16/2016 10:17:13 AM,Code 2 Transport,01/16/2016 10:39:10 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160161014-79 +102530024,E12,10079803,Medical Incident,09/10/2010,09/09/2010,09/10/2010 02:22:30 AM,09/10/2010 02:23:07 AM,09/10/2010 02:23:31 AM,09/10/2010 02:25:17 AM,09/10/2010 02:27:48 AM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/10/2010 02:56:15 AM,1200 Block of 4TH AVE,SF,94122,B05,12,7324,E,E,3,true,,1,ENGINE,2,5,5,Inner Sunset,"(37.7647436571219, -122.460921329608)",102530024-E12 +130530126,KM11,13017867,Medical Incident,02/22/2013,02/22/2013,02/22/2013 10:31:16 AM,02/22/2013 10:32:26 AM,02/22/2013 10:33:26 AM,02/22/2013 10:34:12 AM,04/25/2016 01:54:10 PM,02/22/2013 11:00:18 AM,02/22/2013 11:17:15 AM,Code 2 Transport,02/22/2013 11:47:39 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",130530126-KM11 +131450204,KM12,13049218,Medical Incident,05/25/2013,05/25/2013,05/25/2013 03:32:07 PM,05/25/2013 03:33:42 PM,05/25/2013 03:33:56 PM,05/25/2013 03:34:29 PM,05/25/2013 03:42:27 PM,05/25/2013 04:06:52 PM,05/25/2013 04:25:01 PM,Code 2 Transport,05/25/2013 05:02:44 PM,2800 Block of JACKSON ST,SF,94115,B04,10,4231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7914702134705, -122.44197971729)",131450204-KM12 +111560290,B07,11051655,Structure Fire,06/05/2011,06/05/2011,06/05/2011 04:40:49 PM,06/05/2011 04:41:26 PM,06/05/2011 04:41:37 PM,06/05/2011 04:43:10 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/05/2011 04:49:45 PM,2000 Block of 10TH AVE,SF,94116,B08,40,7341,3,3,3,false,,1,CHIEF,7,8,7,Inner Sunset,"(37.7500039400277, -122.466471699023)",111560290-B07 +102840205,T19,10090436,Structure Fire,10/11/2010,10/11/2010,10/11/2010 02:08:53 PM,10/11/2010 02:08:53 PM,10/11/2010 02:09:07 PM,10/11/2010 02:10:22 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Fire,10/11/2010 02:11:55 PM,EUCALYPTUS DR/MELBA AV,SF,94132,B08,19,8733,3,3,3,false,,1,TRUCK,2,8,7,Sunset/Parkside,"(37.7311290065009, -122.478246639408)",102840205-T19 +160701566,AM02,16027846,Medical Incident,03/10/2016,03/10/2016,03/10/2016 12:25:27 PM,03/10/2016 12:26:20 PM,03/10/2016 12:26:33 PM,03/10/2016 12:28:37 PM,03/10/2016 12:33:53 PM,03/10/2016 12:57:55 PM,03/10/2016 02:03:46 PM,Code 2 Transport,03/10/2016 02:04:58 PM,1300 Block of 24TH AVE,San Francisco,94122,B08,22,7451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.762398164889, -122.48234823338)",160701566-AM02 +120060339,79,12002213,Medical Incident,01/06/2012,01/06/2012,01/06/2012 08:57:20 PM,01/06/2012 08:58:38 PM,01/06/2012 08:59:55 PM,01/06/2012 09:00:19 PM,01/06/2012 09:08:03 PM,01/06/2012 09:14:22 PM,01/06/2012 09:29:06 PM,Code 2 Transport,01/06/2012 09:49:55 PM,2100 Block of NORIEGA ST,SF,94122,B08,18,7515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7537371684148, -122.486646700631)",120060339-79 +121840090,KM04,12061213,Medical Incident,07/02/2012,07/02/2012,07/02/2012 09:55:24 AM,07/02/2012 09:56:54 AM,07/02/2012 09:57:25 AM,07/02/2012 09:58:05 AM,07/02/2012 10:19:21 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Patient Declined Transport,07/02/2012 10:31:51 AM,VAN NESS AV/MARKET ST,SF,94103,B02,36,3211,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",121840090-KM04 +160342429,66,16013475,Medical Incident,02/03/2016,02/03/2016,02/03/2016 04:24:58 PM,02/03/2016 04:26:32 PM,02/03/2016 04:28:48 PM,02/03/2016 04:34:37 PM,02/03/2016 04:47:41 PM,02/03/2016 05:07:53 PM,02/03/2016 05:15:56 PM,Code 2 Transport,02/03/2016 05:28:50 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160342429-66 +160531102,65,16021148,Medical Incident,02/22/2016,02/22/2016,02/22/2016 10:13:01 AM,02/22/2016 10:14:33 AM,02/22/2016 10:15:45 AM,02/22/2016 10:15:45 AM,02/22/2016 10:23:28 AM,02/22/2016 10:39:02 AM,02/22/2016 10:57:07 AM,Code 2 Transport,02/22/2016 11:28:14 AM,1200 Block of NOE ST,San Francisco,94114,B06,11,554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7494248005842, -122.43174723)",160531102-65 +110890382,84,11029568,Medical Incident,03/30/2011,03/30/2011,03/30/2011 09:40:00 PM,03/30/2011 09:41:53 PM,03/30/2011 09:43:11 PM,03/30/2011 09:43:16 PM,04/25/2016 02:05:22 PM,03/30/2011 10:02:06 PM,03/30/2011 10:08:51 PM,Code 2 Transport,03/30/2011 10:25:04 PM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",110890382-84 +130480322,68,13016504,Medical Incident,02/17/2013,02/17/2013,02/17/2013 07:28:43 PM,02/17/2013 07:32:54 PM,02/17/2013 07:36:02 PM,02/17/2013 07:36:20 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,04/25/2016 01:54:14 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",130480322-68 +160013434,KM07,16000485,Medical Incident,01/01/2016,01/01/2016,01/01/2016 08:19:22 PM,01/01/2016 08:19:22 PM,01/01/2016 08:21:05 PM,01/01/2016 08:21:37 PM,01/01/2016 08:26:31 PM,01/01/2016 08:30:56 PM,01/01/2016 08:58:21 PM,Code 2 Transport,01/01/2016 09:44:13 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160013434-KM07 +160372333,88,16014747,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:54:28 PM,02/06/2016 02:55:28 PM,02/06/2016 02:55:39 PM,02/06/2016 02:55:51 PM,02/06/2016 03:01:10 PM,02/06/2016 03:12:44 PM,02/06/2016 03:26:52 PM,Code 2 Transport,02/06/2016 04:00:19 PM,18TH ST/DANVERS ST,San Francisco,94114,B05,24,5413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Castro/Upper Market,"(37.7603763288141, -122.443374430229)",160372333-88 +132690196,AM24,13091358,Medical Incident,09/26/2013,09/26/2013,09/26/2013 01:01:15 PM,09/26/2013 01:02:25 PM,09/26/2013 01:03:05 PM,09/26/2013 01:06:52 PM,09/26/2013 01:12:36 PM,09/26/2013 01:36:07 PM,09/26/2013 02:01:10 PM,Code 2 Transport,09/26/2013 02:35:05 PM,0 Block of LAGUNITAS DR,SF,94132,B08,19,8721,1,1,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7330825928908, -122.473545704125)",132690196-AM24 +160870972,50,16034509,Medical Incident,03/27/2016,03/27/2016,03/27/2016 08:41:59 AM,03/27/2016 08:44:05 AM,03/27/2016 08:44:19 AM,03/27/2016 08:44:36 AM,03/27/2016 08:56:26 AM,03/27/2016 09:11:11 AM,03/27/2016 09:25:30 AM,Code 3 Transport,03/27/2016 10:17:16 AM,1300 Block of MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7683637282341, -122.444850432809)",160870972-50 +111860408,T03,11061660,Structure Fire,07/05/2011,07/05/2011,07/05/2011 10:52:43 PM,07/05/2011 10:52:44 PM,07/05/2011 10:52:54 PM,07/05/2011 10:54:26 PM,07/05/2011 10:54:35 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 10:54:45 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",111860408-T03 +110410045,E44,11013469,Medical Incident,02/10/2011,02/09/2011,02/10/2011 05:28:50 AM,02/10/2011 05:32:15 AM,02/10/2011 05:32:42 AM,02/10/2011 05:35:10 AM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 05:43:11 AM,200 Block of ARGONAUT AVE,SF,94134,B09,44,6248,3,3,3,true,,1,ENGINE,2,9,10,Visitacion Valley,"(37.7107197085034, -122.414620256792)",110410045-E44 +102580366,E22,10081647,Structure Fire,09/15/2010,09/15/2010,09/15/2010 09:44:25 PM,09/15/2010 09:44:41 PM,09/15/2010 09:46:17 PM,09/15/2010 09:47:42 PM,09/15/2010 09:51:34 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/15/2010 09:51:38 PM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,false,,1,ENGINE,5,5,5,Haight Ashbury,"(37.7692177178614, -122.452690310191)",102580366-E22 +122060364,E01,12068649,Alarms,07/24/2012,07/24/2012,07/24/2012 10:08:43 PM,07/24/2012 10:09:48 PM,07/24/2012 10:09:58 PM,07/24/2012 10:11:40 PM,07/24/2012 10:14:39 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Other,07/24/2012 10:19:49 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",122060364-E01 +111970006,E19,11064868,Alarms,07/16/2011,07/15/2011,07/16/2011 12:36:03 AM,07/16/2011 12:38:17 AM,07/16/2011 12:38:28 AM,07/16/2011 12:40:04 AM,07/16/2011 12:43:07 AM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/16/2011 01:07:29 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",111970006-E19 +140650123,RC1,14021918,Medical Incident,03/06/2014,03/06/2014,03/06/2014 09:53:14 AM,03/06/2014 09:55:01 AM,03/06/2014 09:56:05 AM,03/06/2014 09:56:05 AM,03/06/2014 09:56:59 AM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Code 2 Transport,03/06/2014 10:02:49 AM,400 Block of 3RD ST,SAN FRANCISCO,94107,B03,8,2174,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Financial District/South Beach,"(37.7823750775991, -122.397064398742)",140650123-RC1 +160082249,60,16003288,Traffic Collision,01/08/2016,01/08/2016,01/08/2016 03:00:03 PM,01/08/2016 03:01:56 PM,01/08/2016 03:04:30 PM,01/08/2016 03:04:30 PM,01/08/2016 03:09:45 PM,01/08/2016 03:24:58 PM,01/08/2016 04:06:11 PM,Code 2 Transport,01/08/2016 04:38:26 PM,CALL BOX:,Presidio,94129,B99,51,4628,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio,"(37.8047254974409, -122.470058256513)",160082249-60 +130540232,RS2,13018302,Structure Fire,02/23/2013,02/23/2013,02/23/2013 04:33:40 PM,02/23/2013 04:34:03 PM,02/23/2013 04:34:33 PM,02/23/2013 04:35:04 PM,02/23/2013 04:43:55 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 04:59:25 PM,0 Block of DE LONG ST,SF,94112,B09,33,8357,3,3,3,false,Fire,1,RESCUE SQUAD,8,9,11,Outer Mission,"(37.7097160253437, -122.459870520587)",130540232-RS2 +113350331,RS1,11111038,Medical Incident,12/01/2011,12/01/2011,12/01/2011 08:53:34 PM,12/01/2011 08:54:53 PM,12/01/2011 08:55:41 PM,12/01/2011 08:56:27 PM,12/01/2011 08:58:20 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/01/2011 09:13:37 PM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,3,2,2,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",113350331-RS1 +160793129,57,16031509,Medical Incident,03/19/2016,03/19/2016,03/19/2016 06:08:34 PM,03/19/2016 06:08:52 PM,03/19/2016 06:09:11 PM,03/19/2016 06:09:22 PM,03/19/2016 06:14:34 PM,03/19/2016 06:33:41 PM,03/19/2016 07:01:15 PM,Code 2 Transport,03/19/2016 07:32:42 PM,400 Block of 20TH AVE,San Francisco,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7793682984654, -122.479380963947)",160793129-57 +113190155,CR1,11105915,Water Rescue,11/15/2011,11/15/2011,11/15/2011 10:50:39 AM,11/15/2011 10:51:34 AM,11/15/2011 10:52:29 AM,11/15/2011 10:57:13 AM,11/15/2011 11:16:35 AM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 11:16:55 AM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,,1,SUPPORT,8,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",113190155-CR1 +133390248,83,13114931,Traffic Collision,12/05/2013,12/05/2013,12/05/2013 03:07:20 PM,12/05/2013 03:09:27 PM,12/05/2013 03:10:06 PM,12/05/2013 03:10:19 PM,12/05/2013 03:18:25 PM,12/05/2013 03:36:45 PM,12/05/2013 03:57:46 PM,Code 2 Transport,12/05/2013 04:27:08 PM,JACKSON ST/PRESIDIO AV,SF,94115,B04,10,4414,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Presidio Heights,"(37.7908230221786, -122.447501496784)",133390248-83 +122050371,T01,12068337,Structure Fire,07/23/2012,07/23/2012,07/23/2012 11:58:36 PM,07/23/2012 11:59:58 PM,07/24/2012 12:00:12 AM,07/24/2012 12:03:09 AM,07/24/2012 12:05:00 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 12:48:47 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Fire,1,TRUCK,4,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",122050371-T01 +123470026,82,12115886,Medical Incident,12/12/2012,12/11/2012,12/12/2012 02:22:43 AM,12/12/2012 02:26:21 AM,12/12/2012 02:26:59 AM,12/12/2012 02:28:01 AM,12/12/2012 02:39:12 AM,12/12/2012 03:01:55 AM,12/12/2012 03:05:24 AM,Code 2 Transport,12/12/2012 03:46:09 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",123470026-82 +160302588,KM04,16011862,Medical Incident,01/30/2016,01/30/2016,01/30/2016 04:06:10 PM,01/30/2016 04:06:30 PM,01/30/2016 04:11:11 PM,01/30/2016 04:12:49 PM,01/30/2016 04:34:10 PM,01/30/2016 04:45:07 PM,01/30/2016 05:07:19 PM,Code 2 Transport,01/30/2016 05:55:19 PM,BATTERY ST/MARKET ST,San Francisco,94104,B99,13,1163,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7908053759388, -122.399504510645)",160302588-KM04 +160250011,85,16009734,Medical Incident,01/25/2016,01/24/2016,01/25/2016 12:02:05 AM,01/25/2016 12:04:26 AM,01/25/2016 12:04:57 AM,01/25/2016 12:05:07 AM,01/25/2016 12:14:13 AM,01/25/2016 12:32:50 AM,01/25/2016 12:40:21 AM,Code 2 Transport,01/25/2016 01:21:18 AM,1000 Block of BUCHANAN ST,San Francisco,94115,B02,5,3425,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7795248005676, -122.428502874835)",160250011-85 +102540335,AP,10080419,Other,09/11/2010,09/11/2010,09/11/2010 08:10:30 PM,09/11/2010 08:10:30 PM,09/11/2010 08:10:30 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,04/25/2016 02:08:38 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102540335-AP +122430273,T01,12080439,Structure Fire,08/30/2012,08/30/2012,08/30/2012 06:31:19 PM,08/30/2012 06:31:20 PM,08/30/2012 06:31:35 PM,08/30/2012 06:33:09 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,Other,08/30/2012 06:34:39 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122430273-T01 +160570004,AM16,16022578,Medical Incident,02/26/2016,02/25/2016,02/26/2016 12:01:26 AM,02/26/2016 12:03:23 AM,02/26/2016 12:04:16 AM,02/26/2016 12:04:38 AM,02/26/2016 12:12:41 AM,02/26/2016 12:22:50 AM,02/26/2016 12:33:49 AM,Code 2 Transport,02/26/2016 01:05:02 AM,1800 Block of EDDY ST,San Francisco,94115,B05,5,4133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7806409046944, -122.43808239162)",160570004-AM16 +112010405,E06,11066454,Structure Fire,07/20/2011,07/20/2011,07/20/2011 09:18:54 PM,07/20/2011 09:18:55 PM,07/20/2011 09:19:02 PM,07/20/2011 09:22:10 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/20/2011 09:22:22 PM,19TH ST/DOLORES ST,SF,94110,B06,7,5435,3,3,3,true,,1,ENGINE,3,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",112010405-E06 +140730065,E03,14024552,Medical Incident,03/14/2014,03/14/2014,03/14/2014 08:08:10 AM,03/14/2014 08:09:41 AM,03/14/2014 08:10:02 AM,03/14/2014 08:11:18 AM,03/14/2014 08:15:05 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Other,03/14/2014 08:16:37 AM,LEAVENWORTH ST/ELLIS ST,SAN FRANCISCO,94109,B04,3,1544,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",140730065-E03 +130480101,77,13016315,Medical Incident,02/17/2013,02/16/2013,02/17/2013 07:33:57 AM,02/17/2013 07:38:28 AM,02/17/2013 07:38:44 AM,02/17/2013 07:40:00 AM,02/17/2013 07:44:47 AM,02/17/2013 07:56:02 AM,02/17/2013 08:16:11 AM,Code 2 Transport,02/17/2013 08:52:28 AM,1200 Block of ALEMANY BLVD,SF,94112,B09,32,8263,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7301394309025, -122.432268894425)",130480101-77 +140450244,B04,14015363,Structure Fire,02/14/2014,02/14/2014,02/14/2014 03:33:24 PM,02/14/2014 03:34:34 PM,02/14/2014 03:35:09 PM,02/14/2014 03:35:51 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 03:46:50 PM,1600 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,false,Alarm,1,CHIEF,8,5,5,Lone Mountain/USF,"(37.7752450450943, -122.443780098911)",140450244-B04 +111400053,59,11046436,Medical Incident,05/20/2011,05/19/2011,05/20/2011 05:44:12 AM,05/20/2011 05:46:05 AM,05/20/2011 05:46:21 AM,05/20/2011 05:47:48 AM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,Other,04/25/2016 02:04:32 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,2,2,2,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",111400053-59 +102420262,T14,10076385,Structure Fire,08/30/2010,08/30/2010,08/30/2010 04:30:03 PM,08/30/2010 04:30:03 PM,08/30/2010 04:30:25 PM,08/30/2010 04:32:00 PM,08/30/2010 04:34:56 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/30/2010 04:46:25 PM,600 Block of 32ND AVE,SF,94121,B07,14,724,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",102420262-T14 +160370328,AM22,16014527,Medical Incident,02/06/2016,02/05/2016,02/06/2016 01:38:41 AM,02/06/2016 01:40:36 AM,02/06/2016 01:40:45 AM,02/06/2016 01:43:36 AM,02/06/2016 01:45:48 AM,02/06/2016 02:05:57 AM,02/06/2016 02:36:19 AM,Code 2 Transport,02/06/2016 02:54:50 AM,900 Block of ASHBURY ST,San Francisco,94117,B05,12,5164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7646916029501, -122.445790251499)",160370328-AM22 +132600459,B01,13088205,Alarms,09/17/2013,09/17/2013,09/17/2013 10:23:18 PM,09/17/2013 10:24:53 PM,09/17/2013 10:25:26 PM,09/17/2013 10:26:35 PM,09/17/2013 10:29:49 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 10:49:29 PM,100 Block of LOMBARD ST,SF,94111,B01,28,1224,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.8038770970726, -122.404157077302)",132600459-B01 +102720095,94,10086295,Medical Incident,09/29/2010,09/29/2010,09/29/2010 08:23:01 AM,09/29/2010 08:24:20 AM,09/29/2010 08:26:45 AM,09/29/2010 08:51:38 AM,09/29/2010 09:14:29 AM,09/29/2010 09:14:30 AM,09/29/2010 09:20:40 AM,Code 2 Transport,09/29/2010 09:48:44 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102720095-94 +80040065,E11,8001145,Alarms,01/04/2008,01/03/2008,01/04/2008 06:09:40 AM,01/04/2008 06:10:35 AM,01/04/2008 06:10:43 AM,01/04/2008 06:12:54 AM,01/04/2008 06:15:21 AM,04/25/2016 03:36:10 PM,04/25/2016 03:36:10 PM,Other,01/04/2008 06:19:39 AM,200 Block of 30TH ST,SF,94131,B06,11,5574,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.742133681941, -122.425018174758)",080040065-E11 +140810150,E23,14027330,Medical Incident,03/22/2014,03/22/2014,03/22/2014 11:17:04 AM,03/22/2014 11:19:01 AM,03/22/2014 11:19:55 AM,03/22/2014 11:20:40 AM,03/22/2014 11:23:55 AM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Code 2 Transport,03/22/2014 11:34:48 AM,700 Block of LA PLAYA,SAN FRANCISCO,94121,B07,34,7312,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",140810150-E23 +122620397,77,12086713,Medical Incident,09/18/2012,09/18/2012,09/18/2012 11:58:44 PM,09/18/2012 11:59:21 PM,09/18/2012 11:59:29 PM,09/18/2012 11:59:43 PM,09/19/2012 12:01:52 AM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,No Merit,09/19/2012 12:28:41 AM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",122620397-77 +121430303,54,12047642,Medical Incident,05/22/2012,05/22/2012,05/22/2012 07:35:53 PM,05/22/2012 07:37:29 PM,05/22/2012 07:37:43 PM,05/22/2012 07:37:58 PM,05/22/2012 07:39:28 PM,05/22/2012 07:56:15 PM,05/22/2012 08:14:02 PM,Code 2 Transport,05/22/2012 08:30:04 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7756498450242, -122.410791063977)",121430303-54 +123600240,E07,12120562,Medical Incident,12/25/2012,12/25/2012,12/25/2012 05:44:54 PM,12/25/2012 05:45:32 PM,12/25/2012 05:46:12 PM,04/25/2016 01:55:08 PM,12/25/2012 05:47:10 PM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Other,12/25/2012 06:03:36 PM,3400 Block of 19TH ST,SF,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7601573650684, -122.41958524775)",123600240-E07 +140720198,E03,14024322,Traffic Collision,03/13/2014,03/13/2014,03/13/2014 12:58:45 PM,03/13/2014 01:00:23 PM,03/13/2014 01:01:17 PM,03/13/2014 01:02:42 PM,03/13/2014 01:07:46 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Patient Declined Transport,03/13/2014 01:08:37 PM,SUTTER ST/HYDE ST,SAN FRANCISCO,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881778905715, -122.416827154311)",140720198-E03 +133110308,RS1,13105821,Medical Incident,11/07/2013,11/07/2013,11/07/2013 07:17:57 PM,11/07/2013 07:18:02 PM,11/07/2013 07:23:38 PM,04/25/2016 01:49:52 PM,11/07/2013 07:27:51 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/07/2013 07:46:58 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",133110308-RS1 +160633404,76,16025231,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:57:18 PM,03/03/2016 07:58:54 PM,03/03/2016 08:03:29 PM,03/03/2016 08:03:29 PM,03/03/2016 08:08:08 PM,03/03/2016 08:23:15 PM,03/03/2016 08:31:19 PM,Code 2 Transport,03/03/2016 09:10:30 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160633404-76 +140600222,RS2,14020288,Structure Fire,03/01/2014,03/01/2014,03/01/2014 02:48:23 PM,03/01/2014 02:49:29 PM,03/01/2014 02:49:46 PM,03/01/2014 02:51:32 PM,03/01/2014 02:54:22 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Fire,03/01/2014 03:06:52 PM,100 Block of DUNCAN ST,SF,94110,B06,11,5577,3,3,3,false,Alarm,1,RESCUE SQUAD,4,6,8,Noe Valley,"(37.7463637434942, -122.42346184697)",140600222-RS2 +121150308,92,12038255,Medical Incident,04/24/2012,04/24/2012,04/24/2012 08:43:58 PM,04/24/2012 08:44:39 PM,04/24/2012 08:45:02 PM,04/24/2012 08:45:24 PM,04/24/2012 08:50:09 PM,04/24/2012 08:58:15 PM,04/24/2012 09:13:59 PM,Code 3 Transport,04/24/2012 10:03:05 PM,FARALLONES ST/PLYMOUTH AV,SF,94112,B09,33,8324,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7140767605958, -122.456061424983)",121150308-92 +160022649,53,16000843,Medical Incident,01/02/2016,01/02/2016,01/02/2016 06:07:30 PM,01/02/2016 06:09:05 PM,01/02/2016 06:10:01 PM,01/02/2016 06:10:41 PM,01/02/2016 06:29:19 PM,01/02/2016 06:54:55 PM,01/02/2016 06:58:48 PM,Code 2 Transport,01/02/2016 07:41:58 PM,CALL BOX:,San Francisco,94158,B03,4,2226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7746201772347, -122.391974500536)",160022649-53 +123400344,55,12113550,Medical Incident,12/05/2012,12/05/2012,12/05/2012 07:06:17 PM,12/05/2012 07:06:41 PM,12/05/2012 07:06:57 PM,12/05/2012 07:07:04 PM,12/05/2012 07:15:19 PM,12/05/2012 07:28:00 PM,12/05/2012 07:49:32 PM,Code 2 Transport,12/05/2012 08:18:31 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",123400344-55 +130970111,T19,13032479,Alarms,04/07/2013,04/07/2013,04/07/2013 09:08:49 AM,04/07/2013 09:10:00 AM,04/07/2013 09:10:35 AM,04/07/2013 09:12:12 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 09:14:31 AM,0 Block of ZOO RD,SF,94132,B08,19,8716,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",130970111-T19 +130580053,E29,13019349,Structure Fire,02/27/2013,02/26/2013,02/27/2013 07:05:11 AM,02/27/2013 07:05:11 AM,02/27/2013 07:05:37 AM,02/27/2013 07:07:12 AM,02/27/2013 07:10:12 AM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Fire,02/27/2013 07:10:24 AM,MARIPOSA ST/INDIANA ST,SF,94107,B03,29,2436,3,3,3,true,Alarm,1,ENGINE,1,3,6,Potrero Hill,"(37.7641414045887, -122.391781010422)",130580053-E29 +102890194,89,10092185,Medical Incident,10/16/2010,10/16/2010,10/16/2010 12:39:30 PM,10/16/2010 12:40:48 PM,10/16/2010 12:42:35 PM,10/16/2010 12:44:45 PM,10/16/2010 01:07:48 PM,10/16/2010 02:11:53 PM,10/16/2010 02:11:59 PM,Other,10/16/2010 02:12:56 PM,0 Block of ASHBURY ST,SF,94117,B05,12,5141,3,3,3,true,,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7751421104171, -122.447904554135)",102890194-89 +112460364,E29,11081280,Medical Incident,09/03/2011,09/03/2011,09/03/2011 10:29:36 PM,09/03/2011 10:31:41 PM,09/03/2011 10:32:14 PM,09/03/2011 10:33:12 PM,09/03/2011 10:35:50 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Other,09/03/2011 10:46:05 PM,300 Block of 10TH ST,SF,94103,B02,36,2343,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7724811636038, -122.412311666664)",112460364-E29 +120740290,KM01,12024638,Medical Incident,03/14/2012,03/14/2012,03/14/2012 05:12:00 PM,03/14/2012 05:12:30 PM,03/14/2012 05:13:21 PM,03/14/2012 05:14:12 PM,03/14/2012 05:20:35 PM,03/14/2012 05:43:38 PM,03/14/2012 06:57:55 PM,Code 2 Transport,03/14/2012 06:51:51 PM,20TH AV/CALIFORNIA ST,SF,94121,B07,14,7173,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7841253549644, -122.479650916477)",120740290-KM01 +121120243,KM11,12037177,Medical Incident,04/21/2012,04/21/2012,04/21/2012 02:17:49 PM,04/21/2012 02:18:43 PM,04/21/2012 02:21:29 PM,04/21/2012 02:21:58 PM,04/21/2012 02:45:03 PM,04/21/2012 02:55:42 PM,04/21/2012 03:24:40 PM,Code 2 Transport,04/21/2012 03:51:50 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",121120243-KM11 +160010943,AM20,16000180,Medical Incident,01/01/2016,12/31/2015,01/01/2016 03:58:40 AM,01/01/2016 04:00:36 AM,01/01/2016 04:03:32 AM,01/01/2016 04:04:55 AM,01/01/2016 04:16:01 AM,01/01/2016 04:17:06 AM,01/01/2016 04:52:33 AM,Code 2 Transport,01/01/2016 05:13:23 AM,300 Block of LARKIN ST,San Francisco,94102,B02,3,1644,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7809676399552, -122.416978283011)",160010943-AM20 +113040182,AP,11100922,Other,10/31/2011,10/31/2011,10/31/2011 12:41:08 PM,10/31/2011 12:41:08 PM,10/31/2011 12:41:08 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Fire,10/31/2011 12:54:13 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",113040182-AP +133390400,92,13115067,Medical Incident,12/05/2013,12/05/2013,12/05/2013 10:49:05 PM,12/05/2013 10:49:35 PM,12/05/2013 10:49:52 PM,12/05/2013 10:50:01 PM,12/05/2013 10:55:30 PM,12/05/2013 11:09:34 PM,12/05/2013 11:31:41 PM,Code 2 Transport,12/06/2013 12:16:15 AM,700 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7611631165644, -122.417171363688)",133390400-92 +110440288,B10,11014710,Alarms,02/13/2011,02/13/2011,02/13/2011 05:55:33 PM,02/13/2011 05:56:42 PM,02/13/2011 05:56:55 PM,02/13/2011 05:58:01 PM,02/13/2011 06:02:31 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 06:02:34 PM,100 Block of TALBERT ST,SF,94134,B09,44,6256,3,3,3,false,,1,CHIEF,2,9,10,Visitacion Valley,"(37.7101618943601, -122.406532453491)",110440288-B10 +111070122,58,11035343,Medical Incident,04/17/2011,04/17/2011,04/17/2011 10:17:21 AM,04/17/2011 10:19:11 AM,04/17/2011 10:19:29 AM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 10:21:20 AM,1600 Block of KIRKWOOD AVE,SF,94124,B10,25,6467,3,2,2,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7386523750626, -122.390934976028)",111070122-58 +140920006,RC2,14030763,Medical Incident,04/02/2014,04/01/2014,04/02/2014 12:34:44 AM,04/02/2014 12:35:58 AM,04/02/2014 12:36:12 AM,04/02/2014 12:36:57 AM,04/02/2014 12:40:38 AM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,Code 2 Transport,04/02/2014 12:58:46 AM,500 Block of 12TH AVE,SAN FRANCISCO,94118,B07,31,7142,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.777867888715, -122.470569377123)",140920006-RC2 +160300356,79,16011648,Medical Incident,01/30/2016,01/29/2016,01/30/2016 02:27:25 AM,01/30/2016 02:28:05 AM,01/30/2016 02:29:34 AM,01/30/2016 02:33:38 AM,01/30/2016 03:08:13 AM,01/30/2016 03:08:16 AM,01/30/2016 03:11:58 AM,Code 2 Transport,01/30/2016 03:56:58 AM,3100 Block of WASHINGTON ST,San Francisco,94115,B04,10,4265,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7901683360428, -122.445106099134)",160300356-79 +132120256,B01,13071723,Alarms,07/31/2013,07/31/2013,07/31/2013 05:21:02 PM,07/31/2013 05:22:48 PM,07/31/2013 05:23:37 PM,07/31/2013 05:25:03 PM,07/31/2013 05:26:30 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,07/31/2013 05:35:15 PM,100 Block of SANSOME ST,SF,94104,B01,13,1165,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7916515232471, -122.400770219415)",132120256-B01 +140650212,T16,14021982,Alarms,03/06/2014,03/06/2014,03/06/2014 01:23:31 PM,03/06/2014 01:29:14 PM,03/06/2014 01:29:57 PM,03/06/2014 01:31:39 PM,03/06/2014 01:34:19 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Fire,03/06/2014 01:41:44 PM,3000 Block of VAN NESS AVE,SAN FRANCISCO,94123,B04,16,3144,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8036533799471, -122.425184931768)",140650212-T16 +121490071,KM15,12049370,Medical Incident,05/28/2012,05/27/2012,05/28/2012 06:29:06 AM,05/28/2012 06:29:35 AM,05/28/2012 06:30:00 AM,05/28/2012 06:31:29 AM,05/28/2012 06:39:56 AM,05/28/2012 06:50:37 AM,05/28/2012 06:54:10 AM,Code 2 Transport,05/28/2012 07:17:20 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121490071-KM15 +122280285,T19,12075640,Structure Fire,08/15/2012,08/15/2012,08/15/2012 05:35:26 PM,08/15/2012 05:36:22 PM,08/15/2012 05:37:24 PM,08/15/2012 05:39:24 PM,08/15/2012 05:45:01 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 05:48:56 PM,100 Block of SHAKESPEARE ST,SF,94112,B09,33,8364,3,3,3,false,Fire,1,TRUCK,3,9,11,Outer Mission,"(37.7087561081613, -122.463263341857)",122280285-T19 +110600227,T06,11019719,Alarms,03/01/2011,03/01/2011,03/01/2011 03:29:18 PM,03/01/2011 03:29:56 PM,03/01/2011 03:30:07 PM,03/01/2011 03:31:18 PM,03/01/2011 03:33:03 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 03:41:01 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,false,,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7635007029742, -122.434209629009)",110600227-T06 +112750119,E36,11090955,Alarms,10/02/2011,10/02/2011,10/02/2011 09:38:08 AM,10/02/2011 09:38:08 AM,10/02/2011 09:39:18 AM,04/25/2016 02:02:22 PM,10/02/2011 09:39:46 AM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,Fire,10/02/2011 09:40:32 AM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",112750119-E36 +160360851,79,16014151,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:01:26 AM,02/05/2016 08:03:02 AM,02/05/2016 08:03:25 AM,02/05/2016 08:03:37 AM,02/05/2016 08:22:11 AM,02/05/2016 08:31:42 AM,02/05/2016 08:42:09 AM,Code 2 Transport,02/05/2016 09:05:12 AM,0 Block of MACONDRAY LN,San Francisco,94133,B01,2,1441,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Russian Hill,"(37.7993128218572, -122.414858830846)",160360851-79 +160062257,81,16002454,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:14:43 PM,01/06/2016 03:15:56 PM,01/06/2016 03:16:53 PM,01/06/2016 03:17:02 PM,01/06/2016 03:39:59 PM,01/06/2016 03:45:12 PM,01/06/2016 03:58:17 PM,Code 2 Transport,01/06/2016 04:31:16 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7742496611166, -122.414204535023)",160062257-81 +111790180,67,11059111,Medical Incident,06/28/2011,06/28/2011,06/28/2011 01:19:53 PM,06/28/2011 01:20:34 PM,06/28/2011 01:21:19 PM,06/28/2011 01:21:34 PM,04/25/2016 02:03:56 PM,06/28/2011 01:35:50 PM,06/28/2011 02:01:19 PM,Code 2 Transport,06/28/2011 02:26:16 PM,2400 Block of KEITH ST,SF,94124,B10,17,6546,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",111790180-67 +121010046,83,12033378,Medical Incident,04/10/2012,04/09/2012,04/10/2012 04:25:19 AM,04/10/2012 04:27:33 AM,04/10/2012 04:30:07 AM,04/10/2012 04:39:38 AM,04/10/2012 04:45:04 AM,04/10/2012 04:55:16 AM,04/10/2012 05:01:18 AM,Code 2 Transport,04/10/2012 05:23:09 AM,2300 Block of MISSION ST,SF,94110,B06,7,5446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7594381240168, -122.419060339091)",121010046-83 +160753953,61,16029930,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:31:02 PM,03/15/2016 10:31:51 PM,03/15/2016 10:40:59 PM,03/15/2016 10:40:59 PM,03/15/2016 10:57:06 PM,03/15/2016 10:57:14 PM,03/15/2016 11:06:00 PM,Code 2 Transport,03/15/2016 11:25:37 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160753953-61 +122790039,E06,12092113,Medical Incident,10/05/2012,10/04/2012,10/05/2012 02:28:14 AM,10/05/2012 02:28:42 AM,10/05/2012 02:30:04 AM,10/05/2012 02:31:54 AM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/05/2012 02:32:17 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,8,Mission,"(37.7627436601147, -122.421747650463)",122790039-E06 +102860372,E25,10091295,Vehicle Fire,10/13/2010,10/13/2010,10/13/2010 08:12:40 PM,10/13/2010 08:13:14 PM,10/13/2010 08:14:01 PM,10/13/2010 08:18:15 PM,10/13/2010 08:18:50 PM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Fire,10/13/2010 08:43:15 PM,100 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,false,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7354411251468, -122.380298308533)",102860372-E25 +131410218,E34,13047803,Administrative,05/21/2013,05/21/2013,05/21/2013 02:05:30 PM,05/21/2013 02:05:56 PM,05/21/2013 02:06:06 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 02:07:49 PM,400 Block of 41ST AVE,SF,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",131410218-E34 +121540194,83,12050990,Medical Incident,06/02/2012,06/02/2012,06/02/2012 01:48:21 PM,06/02/2012 01:48:49 PM,06/02/2012 01:49:12 PM,06/02/2012 01:49:50 PM,06/02/2012 01:58:18 PM,06/02/2012 02:00:34 PM,06/02/2012 02:20:44 PM,Code 2 Transport,06/02/2012 02:52:11 PM,600 Block of COLBY ST,SF,94134,B09,42,6344,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7223322748016, -122.411171674482)",121540194-83 +113050366,61,11101422,Medical Incident,11/01/2011,11/01/2011,11/01/2011 06:23:22 PM,11/01/2011 06:24:09 PM,11/01/2011 06:24:23 PM,11/01/2011 06:24:40 PM,11/01/2011 06:30:13 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 08:10:00 PM,400 Block of GONZALEZ DR,SF,94132,B08,19,8481,3,E,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.716122935371, -122.476494710163)",113050366-61 +160090622,65,16003548,Medical Incident,01/09/2016,01/08/2016,01/09/2016 06:50:01 AM,01/09/2016 06:50:40 AM,01/09/2016 06:50:50 AM,01/09/2016 06:50:58 AM,01/09/2016 06:55:55 AM,01/09/2016 07:21:36 AM,01/09/2016 07:27:57 AM,Code 2 Transport,01/09/2016 08:00:21 AM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160090622-65 +160440873,KM09,16017616,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:34:07 AM,02/13/2016 08:34:47 AM,02/13/2016 08:35:25 AM,02/13/2016 08:35:54 AM,02/13/2016 08:39:26 AM,02/13/2016 09:02:54 AM,02/13/2016 09:09:31 AM,Code 2 Transport,02/13/2016 09:42:48 AM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160440873-KM09 +160280425,75,16010963,Medical Incident,01/28/2016,01/27/2016,01/28/2016 05:50:26 AM,01/28/2016 05:52:07 AM,01/28/2016 05:52:27 AM,01/28/2016 05:53:20 AM,01/28/2016 06:00:59 AM,01/28/2016 06:28:17 AM,01/28/2016 06:36:03 AM,Code 2 Transport,01/28/2016 07:16:50 AM,1300 Block of POTRERO AVE,San Francisco,94110,B10,9,2624,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Mission,"(37.750575539987, -122.406071752233)",160280425-75 +130110031,T06,13003624,Medical Incident,01/11/2013,01/10/2013,01/11/2013 02:28:11 AM,01/11/2013 02:30:24 AM,01/11/2013 02:30:57 AM,01/11/2013 02:32:45 AM,01/11/2013 02:35:19 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Fire,01/11/2013 02:49:51 AM,300 Block of WALLER ST,SF,94117,B05,6,3526,3,3,3,false,Non Life-threatening,1,TRUCK,1,2,5,Hayes Valley,"(37.7712242757005, -122.429426469723)",130110031-T06 +130620335,86,13020909,Medical Incident,03/03/2013,03/03/2013,03/03/2013 07:46:03 PM,03/03/2013 07:47:18 PM,03/03/2013 07:48:59 PM,04/25/2016 01:54:01 PM,03/03/2013 07:52:10 PM,03/03/2013 08:01:52 PM,03/03/2013 08:05:11 PM,Code 2 Transport,03/03/2013 08:29:07 PM,100 Block of LEAVENWORTH ST,SF,94102,B02,1,1546,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782320193191, -122.41402801662)",130620335-86 +130080168,RS1,13002724,Traffic Collision,01/08/2013,01/08/2013,01/08/2013 11:46:46 AM,01/08/2013 11:47:42 AM,01/08/2013 11:48:03 AM,01/08/2013 11:48:23 AM,01/08/2013 11:50:02 AM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,Other,01/08/2013 11:57:53 AM,5TH ST/SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7798285228536, -122.402840617488)",130080168-RS1 +140310306,94,14010654,Medical Incident,01/31/2014,01/31/2014,01/31/2014 09:57:55 PM,01/31/2014 09:59:01 PM,01/31/2014 09:59:29 PM,01/31/2014 09:59:44 PM,01/31/2014 10:06:35 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,01/31/2014 10:09:04 PM,500 Block of OAK ST,SF,94102,B02,5,3523,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Hayes Valley,"(37.7743391857975, -122.428373303516)",140310306-94 +110180228,E06,11005980,Medical Incident,01/18/2011,01/18/2011,01/18/2011 05:06:24 PM,01/18/2011 05:07:39 PM,01/18/2011 05:07:59 PM,01/18/2011 05:09:00 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 05:27:33 PM,3600 Block of 16TH ST,SF,94114,B05,6,5233,3,3,3,true,,1,ENGINE,3,5,8,Castro/Upper Market,"(37.7641154746137, -122.434189123043)",110180228-E06 +111180356,75,11039082,Medical Incident,04/28/2011,04/28/2011,04/28/2011 10:11:23 PM,04/28/2011 10:12:12 PM,04/28/2011 10:12:41 PM,04/28/2011 10:13:41 PM,04/28/2011 10:18:42 PM,04/28/2011 10:44:21 PM,04/28/2011 10:56:03 PM,Code 2 Transport,04/28/2011 11:28:08 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",111180356-75 +113640195,E11,11120904,Medical Incident,12/30/2011,12/30/2011,12/30/2011 12:51:07 PM,12/30/2011 12:51:12 PM,12/30/2011 12:51:31 PM,12/30/2011 12:52:13 PM,12/30/2011 12:54:49 PM,12/30/2011 01:20:45 PM,04/25/2016 02:00:53 PM,Other,12/30/2011 02:01:57 PM,700 Block of CHURCH ST,SF,94114,B06,11,5444,3,3,3,true,,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7592869335567, -122.4282332932)",113640195-E11 +111070034,T17,11035268,Alarms,04/17/2011,04/16/2011,04/17/2011 02:11:47 AM,04/17/2011 02:12:10 AM,04/17/2011 02:12:43 AM,04/17/2011 02:13:38 AM,04/17/2011 02:20:34 AM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 02:21:33 AM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,false,,1,TRUCK,2,9,10,Visitacion Valley,"(37.712002001307, -122.407607975966)",111070034-T17 +111290054,AP,11042557,Other,05/09/2011,05/08/2011,05/09/2011 06:19:17 AM,05/09/2011 06:19:17 AM,05/09/2011 06:19:17 AM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,Fire,05/09/2011 06:19:38 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",111290054-AP +160430164,AM20,16017106,Medical Incident,02/12/2016,02/11/2016,02/12/2016 01:20:13 AM,02/12/2016 01:21:40 AM,02/12/2016 01:21:59 AM,02/12/2016 01:22:26 AM,02/12/2016 01:42:33 AM,02/12/2016 01:46:04 AM,02/12/2016 01:58:03 AM,Code 2 Transport,02/12/2016 02:40:41 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160430164-AM20 +131350278,75,13045625,Medical Incident,05/15/2013,05/15/2013,05/15/2013 04:32:55 PM,05/15/2013 04:38:13 PM,05/15/2013 04:40:28 PM,05/15/2013 04:40:39 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 04:41:42 PM,400 Block of GEARY ST,SF,94102,B01,3,1411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",131350278-75 +102420101,E23,10076260,Medical Incident,08/30/2010,08/30/2010,08/30/2010 09:43:40 AM,08/30/2010 09:44:14 AM,08/30/2010 09:46:14 AM,08/30/2010 09:47:11 AM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/30/2010 09:49:07 AM,2000 Block of 44TH AVE,SF,94116,B08,23,7663,3,3,3,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7483929333299, -122.503006135149)",102420101-E23 +140100364,88,14003644,Medical Incident,01/10/2014,01/10/2014,01/10/2014 08:12:29 PM,01/10/2014 08:14:06 PM,01/10/2014 08:14:30 PM,01/10/2014 08:14:51 PM,01/10/2014 08:20:14 PM,01/10/2014 08:56:05 PM,01/10/2014 08:36:48 PM,Code 2 Transport,01/10/2014 09:04:23 PM,200 Block of CHURCH ST,SF,94114,B05,6,5231,,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.766821331685, -122.428814858006)",140100364-88 +111210317,E01,11040054,Alarms,05/01/2011,05/01/2011,05/01/2011 06:10:50 PM,05/01/2011 06:10:51 PM,05/01/2011 06:11:07 PM,04/25/2016 02:04:50 PM,05/01/2011 06:12:16 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 06:13:23 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",111210317-E01 +123550291,E41,12118899,Medical Incident,12/20/2012,12/20/2012,12/20/2012 06:53:35 PM,12/20/2012 06:55:48 PM,12/20/2012 06:56:09 PM,12/20/2012 06:56:16 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 06:56:39 PM,BROADWAY ST/LEAVENWORTH ST,SF,94109,B01,41,1534,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,1,3,Russian Hill,"(37.7965957022582, -122.416839400968)",123550291-E41 +111940294,E06,11064148,Medical Incident,07/13/2011,07/13/2011,07/13/2011 07:03:33 PM,07/13/2011 07:04:54 PM,07/13/2011 07:05:56 PM,07/13/2011 07:07:41 PM,07/13/2011 07:08:41 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 07:33:02 PM,2400 Block of MARKET ST,SF,94114,B05,6,5259,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",111940294-E06 +160873696,AM24,16034767,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:24:44 PM,03/27/2016 11:27:10 PM,03/27/2016 11:27:51 PM,03/27/2016 11:28:21 PM,03/27/2016 11:34:46 PM,03/27/2016 11:56:32 PM,03/28/2016 12:09:11 AM,Code 2 Transport,03/28/2016 12:44:23 AM,800 Block of CALIFORNIA ST,San Francisco,94108,B01,2,1356,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7922694289836, -122.407814772426)",160873696-AM24 +160480242,KM03,16019201,Medical Incident,02/17/2016,02/16/2016,02/17/2016 02:39:07 AM,02/17/2016 02:40:04 AM,02/17/2016 02:40:38 AM,02/17/2016 02:41:16 AM,02/17/2016 02:44:36 AM,02/17/2016 02:57:55 AM,02/17/2016 03:04:56 AM,Code 2 Transport,02/17/2016 03:46:44 AM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",160480242-KM03 +132680403,85,13091169,Medical Incident,09/25/2013,09/25/2013,09/25/2013 09:26:40 PM,09/25/2013 09:27:09 PM,09/25/2013 09:28:21 PM,09/25/2013 09:28:49 PM,09/25/2013 09:52:23 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Against Medical Advice,09/25/2013 09:52:51 PM,0 Block of PRESIDIO TER,SF,94118,B07,10,4444,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Inner Richmond,"(37.7881859123819, -122.461502002981)",132680403-85 +121240343,E06,12041298,Medical Incident,05/03/2012,05/03/2012,05/03/2012 07:55:46 PM,05/03/2012 07:57:24 PM,05/03/2012 07:58:12 PM,05/03/2012 07:59:05 PM,05/03/2012 08:00:10 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 08:14:24 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",121240343-E06 +112710272,B07,11089602,Alarms,09/28/2011,09/28/2011,09/28/2011 02:39:25 PM,09/28/2011 02:40:31 PM,09/28/2011 02:40:42 PM,09/28/2011 02:41:20 PM,09/28/2011 02:46:54 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Fire,09/28/2011 02:54:11 PM,500 Block of PARNASSUS AVE,SF,94131,B05,12,7323,3,3,3,false,,1,CHIEF,3,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",112710272-B07 +160231622,89,16009141,Medical Incident,01/23/2016,01/23/2016,01/23/2016 12:38:39 PM,01/23/2016 12:40:28 PM,01/23/2016 12:40:49 PM,01/23/2016 12:41:15 PM,01/23/2016 12:46:50 PM,01/23/2016 01:03:55 PM,01/23/2016 01:24:53 PM,Code 2 Transport,01/23/2016 02:10:01 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160231622-89 +132150257,93,13072674,Medical Incident,08/03/2013,08/03/2013,08/03/2013 03:20:15 PM,08/03/2013 03:22:47 PM,08/03/2013 03:23:06 PM,08/03/2013 03:23:22 PM,08/03/2013 03:30:54 PM,08/03/2013 03:45:38 PM,08/03/2013 04:08:06 PM,Code 2 Transport,08/03/2013 04:29:25 PM,TEHAMA ST/2ND ST,SF,94105,B03,1,2146,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7863386154364, -122.39770448764)",132150257-93 +123050260,E03,12101248,Medical Incident,10/31/2012,10/31/2012,10/31/2012 01:42:18 PM,10/31/2012 01:42:38 PM,10/31/2012 01:54:42 PM,10/31/2012 01:55:32 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,04/25/2016 01:56:01 PM,17TH ST/HARRISON ST,SF,94110,B02,7,5245,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7640908631503, -122.413002684918)",123050260-E03 +160040129,AM20,16001435,Medical Incident,01/04/2016,01/03/2016,01/04/2016 01:10:59 AM,01/04/2016 01:14:48 AM,01/04/2016 01:15:44 AM,01/04/2016 01:15:44 AM,01/04/2016 01:24:34 AM,01/04/2016 01:34:58 AM,01/04/2016 01:41:08 AM,Code 2 Transport,01/04/2016 02:32:39 AM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",160040129-AM20 +160273933,68,16010890,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:32:57 PM,01/27/2016 10:33:58 PM,01/27/2016 10:35:11 PM,01/27/2016 10:35:47 PM,01/27/2016 10:50:38 PM,01/27/2016 10:50:41 PM,01/27/2016 11:22:40 PM,Code 2 Transport,01/27/2016 11:36:12 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160273933-68 +160472041,KM09,16018947,Medical Incident,02/16/2016,02/16/2016,02/16/2016 02:02:08 PM,02/16/2016 02:03:07 PM,02/16/2016 02:04:50 PM,02/16/2016 02:05:41 PM,02/16/2016 02:09:39 PM,02/16/2016 02:26:03 PM,02/16/2016 03:08:55 PM,Code 2 Transport,02/16/2016 03:25:17 PM,100 Block of 10TH ST,San Francisco,94103,B02,36,2341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7750968170762, -122.415590844463)",160472041-KM09 +111100038,88,11036201,Medical Incident,04/20/2011,04/19/2011,04/20/2011 03:34:30 AM,04/20/2011 03:34:30 AM,04/20/2011 03:34:30 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,04/20/2011 03:44:35 AM,04/20/2011 03:53:29 AM,Code 2 Transport,04/20/2011 04:21:18 AM,VALENCIA ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,MEDIC,1,2,6,Mission,"(37.7725028174103, -122.422619692886)",111100038-88 +160340739,65,16013274,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:21:00 AM,02/03/2016 08:21:25 AM,02/03/2016 08:22:06 AM,02/03/2016 08:22:12 AM,02/03/2016 08:25:10 AM,02/03/2016 08:45:37 AM,02/03/2016 09:05:38 AM,Code 2 Transport,02/03/2016 09:39:02 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160340739-65 +140400137,T02,14013529,Alarms,02/09/2014,02/09/2014,02/09/2014 09:34:47 AM,02/09/2014 09:37:20 AM,02/09/2014 09:37:31 AM,02/09/2014 09:38:49 AM,02/09/2014 09:40:40 AM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/09/2014 09:45:45 AM,900 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.794945143819, -122.408499772009)",140400137-T02 +160630153,AM24,16024923,Medical Incident,03/03/2016,03/02/2016,03/03/2016 01:28:50 AM,03/03/2016 01:28:50 AM,03/03/2016 01:29:19 AM,03/03/2016 01:29:43 AM,03/03/2016 01:35:14 AM,03/03/2016 01:46:30 AM,03/03/2016 02:11:27 AM,Code 2 Transport,03/03/2016 02:54:30 AM,MARKET ST/BATTERY ST,San Francisco,94104,B01,13,1163,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7908053759388, -122.399504510645)",160630153-AM24 +112160233,E22,11071377,Traffic Collision,08/04/2011,08/04/2011,08/04/2011 02:03:33 PM,08/04/2011 02:06:14 PM,08/04/2011 02:06:20 PM,08/04/2011 02:07:42 PM,08/04/2011 02:08:43 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 02:15:46 PM,1000 Block of IRVING ST,SF,94122,B08,22,7345,3,3,3,true,,1,ENGINE,2,8,5,Inner Sunset,"(37.7638646239513, -122.468982718935)",112160233-E22 +140490379,81,14016828,Medical Incident,02/18/2014,02/18/2014,02/18/2014 11:15:24 PM,02/18/2014 11:15:52 PM,02/18/2014 11:16:46 PM,02/18/2014 11:16:52 PM,02/18/2014 11:26:38 PM,02/19/2014 12:09:21 AM,02/19/2014 12:17:52 AM,Code 2 Transport,02/19/2014 12:56:13 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",140490379-81 +132590038,E05,13087496,Medical Incident,09/16/2013,09/15/2013,09/16/2013 04:59:23 AM,09/16/2013 05:00:24 AM,09/16/2013 05:00:50 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,04/25/2016 01:50:46 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",132590038-E05 +133590203,T03,13122069,Structure Fire,12/25/2013,12/25/2013,12/25/2013 02:36:45 PM,12/25/2013 02:36:45 PM,12/25/2013 02:37:09 PM,12/25/2013 02:37:58 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/25/2013 02:39:37 PM,VAN NESS AV/OFARRELL ST,SF,94109,B04,3,3162,3,3,3,false,Alarm,1,TRUCK,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",133590203-T03 +160652576,AM10,16026015,Medical Incident,03/05/2016,03/05/2016,03/05/2016 05:37:47 PM,03/05/2016 05:37:47 PM,03/05/2016 05:38:23 PM,03/05/2016 05:38:57 PM,03/05/2016 05:41:35 PM,03/05/2016 06:03:38 PM,03/05/2016 06:14:39 PM,Code 2 Transport,03/05/2016 07:03:54 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",160652576-AM10 +121990331,E37,12066253,Structure Fire,07/17/2012,07/17/2012,07/17/2012 07:31:59 PM,07/17/2012 07:33:01 PM,07/17/2012 07:33:09 PM,07/17/2012 07:34:01 PM,07/17/2012 07:35:31 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,Other,07/17/2012 07:39:42 PM,KANSAS ST/22ND ST,SF,94107,B10,37,2545,3,3,3,false,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7570683684788, -122.402802943875)",121990331-E37 +112750039,RS1,11090881,Medical Incident,10/02/2011,10/01/2011,10/02/2011 01:57:56 AM,10/02/2011 01:58:22 AM,10/02/2011 01:58:35 AM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,Fire,04/25/2016 02:02:22 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,E,E,3,false,,1,RESCUE SQUAD,2,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",112750039-RS1 +112570137,92,11084696,Medical Incident,09/14/2011,09/14/2011,09/14/2011 11:22:40 AM,09/14/2011 11:25:01 AM,09/14/2011 11:26:11 AM,04/25/2016 02:02:41 PM,09/14/2011 11:30:56 AM,09/14/2011 12:01:51 PM,09/14/2011 12:17:22 PM,Code 2 Transport,09/14/2011 12:50:41 PM,1000 Block of PINE ST,SF,94109,B01,41,1464,1,1,2,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",112570137-92 +160543510,64,16021755,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:43:42 PM,02/23/2016 07:44:30 PM,02/23/2016 07:44:58 PM,02/23/2016 07:45:16 PM,02/23/2016 07:51:29 PM,02/23/2016 08:06:36 PM,02/23/2016 08:37:20 PM,Code 2 Transport,02/23/2016 09:14:10 PM,VETERANS DR/FORT MILEY CR,San Francisco,94121,B07,34,7266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lincoln Park,"(37.7812059887825, -122.50363781312)",160543510-64 +120940290,AM14,12031246,Medical Incident,04/03/2012,04/03/2012,04/03/2012 06:41:53 PM,04/03/2012 06:42:39 PM,04/03/2012 06:43:13 PM,04/03/2012 06:43:45 PM,04/03/2012 06:46:18 PM,04/03/2012 07:03:05 PM,04/03/2012 07:13:17 PM,Code 2 Transport,04/03/2012 07:36:20 PM,0 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7848461901191, -122.4580614633)",120940290-AM14 +113350369,E31,11111071,Alarms,12/01/2011,12/01/2011,12/01/2011 11:44:01 PM,12/01/2011 11:47:47 PM,12/01/2011 11:47:57 PM,12/01/2011 11:49:32 PM,12/01/2011 11:52:22 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/02/2011 12:01:26 AM,300 Block of 3RD AVE,SF,94118,B07,31,7116,3,3,3,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.7821271171767, -122.461066067245)",113350369-E31 +111460084,T11,11048406,Elevator / Escalator Rescue,05/26/2011,05/26/2011,05/26/2011 08:54:56 AM,05/26/2011 08:57:32 AM,05/26/2011 08:59:31 AM,05/26/2011 09:00:54 AM,05/26/2011 09:06:15 AM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,05/26/2011 09:28:03 AM,400 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,false,,1,TRUCK,1,6,9,Bernal Heights,"(37.7390370434051, -122.41683755188)",111460084-T11 +160800262,AM22,16031665,Medical Incident,03/20/2016,03/19/2016,03/20/2016 01:33:45 AM,03/20/2016 01:35:13 AM,03/20/2016 01:35:36 AM,03/20/2016 01:37:13 AM,03/20/2016 01:48:08 AM,03/20/2016 01:55:29 AM,03/20/2016 02:23:11 AM,Code 2 Transport,03/20/2016 03:01:30 AM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",160800262-AM22 +103180348,E38,10102064,Administrative,11/14/2010,11/14/2010,11/14/2010 08:26:28 PM,11/14/2010 08:26:36 PM,11/14/2010 08:27:24 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/14/2010 08:27:48 PM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",103180348-E38 +160351271,79,16013774,Traffic Collision,02/04/2016,02/04/2016,02/04/2016 10:34:19 AM,02/04/2016 10:39:34 AM,02/04/2016 10:40:11 AM,02/04/2016 10:40:16 AM,02/04/2016 11:04:12 AM,02/04/2016 11:12:02 AM,02/04/2016 11:21:32 AM,Code 2 Transport,02/04/2016 11:43:36 AM,CALL BOX:,,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225801, -122.365138272289)",160351271-79 +121650379,AM10,12054900,Medical Incident,06/13/2012,06/13/2012,06/13/2012 10:53:27 PM,06/13/2012 10:55:58 PM,06/13/2012 10:57:19 PM,06/13/2012 10:57:37 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Other,04/25/2016 01:58:13 PM,1400 Block of TREAT WAY,SF,94110,B06,7,5533,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7486593822992, -122.412687632433)",121650379-AM10 +160561963,76,16022397,Medical Incident,02/25/2016,02/25/2016,02/25/2016 01:11:08 PM,02/25/2016 01:13:04 PM,02/25/2016 01:13:29 PM,02/25/2016 01:13:36 PM,02/25/2016 01:30:59 PM,02/25/2016 01:31:03 PM,02/25/2016 01:48:12 PM,Code 2 Transport,02/25/2016 02:21:17 PM,300 Block of MAIN ST,San Francisco,94105,B03,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887132628625, -122.39113809089)",160561963-76 +130490087,E18,13016636,Medical Incident,02/18/2013,02/18/2013,02/18/2013 08:37:33 AM,02/18/2013 08:37:51 AM,02/18/2013 08:38:06 AM,02/18/2013 08:39:31 AM,02/18/2013 08:41:53 AM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/18/2013 08:50:46 AM,1500 Block of 31ST AVE,SF,94122,B08,18,7535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7583295917093, -122.489725814528)",130490087-E18 +131130015,T12,13037955,Structure Fire,04/23/2013,04/22/2013,04/23/2013 12:59:46 AM,04/23/2013 12:59:46 AM,04/23/2013 01:00:03 AM,04/23/2013 01:02:05 AM,04/23/2013 01:05:11 AM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/23/2013 01:13:19 AM,400 Block of STANYAN ST,SF,94117,B05,21,455,3,3,3,false,Alarm,1,TRUCK,2,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",131130015-T12 +120420161,E34,12014009,Medical Incident,02/11/2012,02/11/2012,02/11/2012 11:17:48 AM,02/11/2012 11:18:10 AM,02/11/2012 11:18:25 AM,02/11/2012 11:18:43 AM,02/11/2012 11:19:33 AM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 12:01:41 PM,4500 Block of CABRILLO ST,SF,94121,B07,34,7277,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7734373755219, -122.507358715889)",120420161-E34 +102930309,E17,10093548,Medical Incident,10/20/2010,10/20/2010,10/20/2010 07:12:04 PM,10/20/2010 07:13:02 PM,10/20/2010 07:13:38 PM,10/20/2010 07:14:43 PM,10/20/2010 07:16:42 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/20/2010 07:28:55 PM,1200 Block of GILMAN AVE,SF,94124,B10,17,6612,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7208340934162, -122.392843829472)",102930309-E17 +160091791,82,16003661,Medical Incident,01/09/2016,01/09/2016,01/09/2016 01:36:20 PM,01/09/2016 01:37:54 PM,01/09/2016 01:38:18 PM,01/09/2016 01:38:29 PM,01/09/2016 01:58:51 PM,01/09/2016 02:12:29 PM,01/09/2016 02:30:02 PM,Code 2 Transport,01/09/2016 03:09:26 PM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7584203036531, -122.418963082325)",160091791-82 +131030147,KM12,13034551,Medical Incident,04/13/2013,04/13/2013,04/13/2013 11:38:01 AM,04/13/2013 11:39:01 AM,04/13/2013 11:41:07 AM,04/13/2013 11:41:42 AM,04/13/2013 11:48:24 AM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/13/2013 11:48:50 AM,100 Block of 9TH ST,SF,94103,B02,36,2336,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7760543061938, -122.414393004759)",131030147-KM12 +160012575,74,16000391,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:54:21 PM,01/01/2016 03:55:08 PM,01/01/2016 03:55:31 PM,01/01/2016 03:56:29 PM,01/01/2016 04:04:11 PM,01/01/2016 04:29:08 PM,01/01/2016 04:44:22 PM,Code 2 Transport,01/01/2016 05:23:59 PM,1100 Block of KEY AVE,San Francisco,94124,B10,44,6542,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7203503464205, -122.398655526095)",160012575-74 +111390014,E15,11046075,Medical Incident,05/19/2011,05/18/2011,05/19/2011 01:25:22 AM,05/19/2011 01:26:18 AM,05/19/2011 01:26:43 AM,04/25/2016 02:04:33 PM,05/19/2011 01:30:29 AM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 01:43:16 AM,0 Block of NANTUCKET AVE,SF,94112,B09,15,8266,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7281766193106, -122.441426874148)",111390014-E15 +160353237,BT01,16013966,Medical Incident,02/04/2016,02/04/2016,02/04/2016 07:08:19 PM,02/04/2016 07:10:32 PM,02/04/2016 07:31:43 PM,02/04/2016 07:31:43 PM,02/04/2016 08:43:28 PM,02/04/2016 09:14:30 PM,02/04/2016 09:24:29 PM,Code 2 Transport,02/04/2016 09:53:12 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,false,Potentially Life-Threatening,1,SUPPORT,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160353237-BT01 +102350263,E40,10074010,Citizen Assist / Service Call,08/23/2010,08/23/2010,08/23/2010 03:30:38 PM,08/23/2010 03:32:24 PM,08/23/2010 03:32:39 PM,08/23/2010 03:33:42 PM,08/23/2010 03:37:26 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Fire,08/23/2010 03:48:21 PM,2400 Block of 31ST AVE,SF,94116,B08,18,7527,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7415475251009, -122.488551030522)",102350263-E40 +160413691,60,16016645,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:21:20 PM,02/10/2016 09:21:20 PM,02/10/2016 09:21:36 PM,02/10/2016 09:21:43 PM,02/10/2016 09:39:56 PM,02/10/2016 09:55:46 PM,02/10/2016 10:29:37 PM,Code 2 Transport,02/10/2016 10:34:04 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",160413691-60 +133480183,KM10,13118110,Medical Incident,12/14/2013,12/14/2013,12/14/2013 12:39:23 PM,12/14/2013 12:41:33 PM,12/14/2013 12:41:46 PM,12/14/2013 12:43:20 PM,12/14/2013 12:54:57 PM,12/14/2013 01:13:21 PM,12/14/2013 01:17:20 PM,Code 2 Transport,12/14/2013 01:42:51 PM,600 Block of DUBOCE AVE,SF,94117,B05,6,5131,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7692009093314, -122.434236954469)",133480183-KM10 +111920036,T03,11063275,Medical Incident,07/11/2011,07/10/2011,07/11/2011 04:52:59 AM,07/11/2011 04:54:07 AM,07/11/2011 04:54:40 AM,07/11/2011 04:57:22 AM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 04:57:45 AM,500 Block of POST ST,SF,94102,B01,3,1451,3,2,2,false,,1,TRUCK,3,1,3,Nob Hill,"(37.788031406746, -122.410889094263)",111920036-T03 +140650339,B01,14022085,Structure Fire,03/06/2014,03/06/2014,03/06/2014 07:21:20 PM,03/06/2014 07:22:34 PM,03/06/2014 07:23:21 PM,03/06/2014 07:24:15 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Fire,03/06/2014 07:30:52 PM,600 Block of ELLIS ST,SAN FRANCISCO,94109,B02,3,1555,3,3,3,false,Alarm,1,CHIEF,9,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",140650339-B01 +133460122,88,13117345,Medical Incident,12/12/2013,12/12/2013,12/12/2013 09:17:04 AM,12/12/2013 09:19:49 AM,12/12/2013 09:20:02 AM,12/12/2013 09:21:02 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,04/25/2016 01:49:18 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",133460122-88 +120990104,E05,12032742,Structure Fire,04/08/2012,04/08/2012,04/08/2012 09:51:02 AM,04/08/2012 09:52:07 AM,04/08/2012 09:52:31 AM,04/08/2012 09:53:40 AM,04/08/2012 09:55:05 AM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 09:58:14 AM,800 Block of FRANKLIN ST,SF,94102,B02,36,3216,3,3,3,true,Fire,1,ENGINE,2,2,5,Western Addition,"(37.7824435992634, -122.422484951715)",120990104-E05 +132000409,E36,13067997,Structure Fire,07/19/2013,07/19/2013,07/19/2013 11:41:47 PM,07/19/2013 11:41:48 PM,07/19/2013 11:41:58 PM,07/19/2013 11:43:01 PM,07/19/2013 11:44:19 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/19/2013 11:44:43 PM,0 Block of LARKIN ST,SF,94102,B02,36,1646,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7775888205813, -122.416411092393)",132000409-E36 +133530148,B04,13119887,Traffic Collision,12/19/2013,12/19/2013,12/19/2013 11:30:20 AM,12/19/2013 11:30:38 AM,12/19/2013 11:39:46 AM,12/19/2013 11:40:44 AM,12/19/2013 11:45:23 AM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 12:31:05 PM,STOCKTON ST/JACKSON ST,SF,94133,B01,2,1332,3,3,3,false,Potentially Life-Threatening,1,CHIEF,4,1,3,Chinatown,"(37.7958237062045, -122.408253204894)",133530148-B04 +132970020,E02,13100744,Medical Incident,10/24/2013,10/23/2013,10/24/2013 01:20:04 AM,10/24/2013 01:20:58 AM,10/24/2013 01:21:09 AM,10/24/2013 01:22:59 AM,10/24/2013 01:24:41 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 01:37:00 AM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",132970020-E02 +160190887,73,16007536,Medical Incident,01/19/2016,01/19/2016,01/19/2016 08:52:50 AM,01/19/2016 08:54:31 AM,01/19/2016 08:55:18 AM,01/19/2016 08:55:31 AM,01/19/2016 09:07:15 AM,01/19/2016 09:22:03 AM,01/19/2016 09:44:53 AM,Code 2 Transport,01/19/2016 10:52:26 AM,GEARY BL/23RD AV,San Francisco,94121,B07,14,7172,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7801894714823, -122.482591527553)",160190887-73 +160213342,66,16008514,Medical Incident,01/21/2016,01/21/2016,01/21/2016 06:55:11 PM,01/21/2016 06:57:16 PM,01/21/2016 07:04:51 PM,01/21/2016 07:05:49 PM,01/21/2016 07:12:48 PM,01/21/2016 07:27:11 PM,01/21/2016 07:47:09 PM,Code 2 Transport,01/21/2016 08:32:19 PM,0 Block of MISSION ST,San Francisco,94105,B03,35,2131,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7935385958356, -122.392889145798)",160213342-66 +122280270,87,12075627,Medical Incident,08/15/2012,08/15/2012,08/15/2012 04:50:15 PM,08/15/2012 04:50:56 PM,08/15/2012 04:51:26 PM,08/15/2012 04:51:30 PM,08/15/2012 05:08:53 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Medical Examiner,08/15/2012 06:00:46 PM,1700 Block of 32ND AVE,SF,94122,B08,18,7534,3,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7545630438483, -122.490398408661)",122280270-87 +112570172,E08,11084726,Alarms,09/14/2011,09/14/2011,09/14/2011 01:44:22 PM,09/14/2011 01:45:23 PM,09/14/2011 01:45:30 PM,09/14/2011 01:50:07 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/14/2011 01:53:43 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",112570172-E08 +160850420,72,16033638,Medical Incident,03/25/2016,03/24/2016,03/25/2016 04:11:58 AM,03/25/2016 04:15:10 AM,03/25/2016 04:15:51 AM,03/25/2016 04:16:29 AM,03/25/2016 04:23:40 AM,03/25/2016 04:36:16 AM,03/25/2016 04:52:19 AM,Code 2 Transport,03/25/2016 05:54:24 AM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",160850420-72 +122450109,AM02,12080938,Medical Incident,09/01/2012,09/01/2012,09/01/2012 10:12:33 AM,09/01/2012 10:13:17 AM,09/01/2012 10:13:44 AM,09/01/2012 10:15:06 AM,09/01/2012 10:19:25 AM,09/01/2012 10:26:17 AM,09/01/2012 10:38:58 AM,Code 2 Transport,09/01/2012 11:21:37 AM,16TH ST/DOLORES ST,SF,94103,B02,6,5234,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",122450109-AM02 +131720327,E03,13058515,Gas Leak (Natural and LP Gases),06/21/2013,06/21/2013,06/21/2013 09:00:46 PM,06/21/2013 09:02:46 PM,06/21/2013 09:03:11 PM,06/21/2013 09:04:21 PM,06/21/2013 09:06:15 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/21/2013 09:13:53 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",131720327-E03 +160693339,60,16027620,Medical Incident,03/09/2016,03/09/2016,03/09/2016 07:46:42 PM,03/09/2016 07:48:00 PM,03/09/2016 07:49:01 PM,03/09/2016 07:49:26 PM,03/09/2016 07:57:22 PM,03/09/2016 08:34:17 PM,03/09/2016 08:34:28 PM,Code 3 Transport,03/09/2016 10:14:31 PM,500 Block of ELLINGTON AVE,San Francisco,94112,B09,33,6211,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7106320073627, -122.448844883346)",160693339-60 +160180003,65,16007058,Medical Incident,01/18/2016,01/17/2016,01/18/2016 12:01:10 AM,01/18/2016 12:02:14 AM,01/18/2016 12:02:41 AM,01/18/2016 12:02:48 AM,01/18/2016 12:10:26 AM,01/18/2016 12:15:33 AM,01/18/2016 12:21:37 AM,Code 2 Transport,01/18/2016 01:09:03 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160180003-65 +110290008,E10,11009396,Alarms,01/29/2011,01/28/2011,01/29/2011 12:20:27 AM,01/29/2011 12:21:31 AM,01/29/2011 12:21:37 AM,01/29/2011 12:23:11 AM,01/29/2011 12:25:50 AM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/29/2011 12:29:34 AM,300 Block of LOCUST ST,SF,94118,B07,10,4426,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7879858500247, -122.452104476479)",110290008-E10 +133580218,KM14,13121740,Medical Incident,12/24/2013,12/24/2013,12/24/2013 02:41:56 PM,12/24/2013 02:43:18 PM,12/24/2013 02:43:54 PM,12/24/2013 02:44:28 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 02:49:33 PM,VAN NESS AV/BAY ST,SF,94109,B04,28,3143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,2,Russian Hill,"(37.8041458445112, -122.425109522103)",133580218-KM14 +140420394,AM22,14014457,Medical Incident,02/11/2014,02/11/2014,02/11/2014 11:27:16 PM,02/11/2014 11:27:42 PM,02/11/2014 11:28:20 PM,02/11/2014 11:28:54 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/11/2014 11:37:50 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",140420394-AM22 +132820282,T08,13096041,Medical Incident,10/09/2013,10/09/2013,10/09/2013 04:42:33 PM,10/09/2013 04:43:42 PM,10/09/2013 04:43:54 PM,10/09/2013 04:45:29 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/09/2013 04:48:37 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,false,Non Life-threatening,1,TRUCK,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132820282-T08 +140020287,E17,14000759,Medical Incident,01/02/2014,01/02/2014,01/02/2014 03:50:22 PM,01/02/2014 03:51:37 PM,01/02/2014 03:51:55 PM,01/02/2014 03:53:48 PM,01/02/2014 03:56:14 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/02/2014 04:06:41 PM,FITZGERALD AV/KEITH ST,SF,94124,B10,17,6614,,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7230924477564, -122.395035767852)",140020287-E17 +113390090,81,11112281,Medical Incident,12/05/2011,12/05/2011,12/05/2011 09:57:24 AM,12/05/2011 09:58:57 AM,12/05/2011 09:59:19 AM,12/05/2011 09:59:39 AM,12/05/2011 10:13:03 AM,12/05/2011 10:32:28 AM,12/05/2011 10:43:20 AM,Code 2 Transport,12/05/2011 11:15:14 AM,3000 Block of 16TH ST,SF,94103,B02,7,5236,1,1,2,false,,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",113390090-81 +113400054,E28,11112595,Medical Incident,12/06/2011,12/05/2011,12/06/2011 04:16:46 AM,12/06/2011 04:18:31 AM,12/06/2011 04:18:42 AM,12/06/2011 04:20:27 AM,12/06/2011 04:22:08 AM,04/25/2016 02:01:18 PM,04/25/2016 02:01:18 PM,Other,12/06/2011 04:44:27 AM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.804809171271, -122.406795529826)",113400054-E28 +113480085,KM15,11115388,Medical Incident,12/14/2011,12/14/2011,12/14/2011 08:22:32 AM,12/14/2011 08:24:27 AM,12/14/2011 08:24:48 AM,12/14/2011 08:25:18 AM,12/14/2011 08:26:52 AM,12/14/2011 08:44:12 AM,12/14/2011 08:49:19 AM,Code 2 Transport,12/14/2011 09:27:27 AM,1400 Block of BROADWAY,SF,94109,B01,41,1632,3,3,3,false,,1,PRIVATE,1,4,3,Russian Hill,"(37.7961350460104, -122.420951806977)",113480085-KM15 +112110279,E39,11069722,Odor (Strange / Unknown),07/30/2011,07/30/2011,07/30/2011 06:35:34 PM,07/30/2011 06:38:01 PM,07/30/2011 06:38:45 PM,07/30/2011 06:39:43 PM,07/30/2011 06:41:45 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,No Merit,07/30/2011 06:46:57 PM,600 Block of PORTOLA DR,SF,94127,B08,39,8661,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7452993390303, -122.451904398893)",112110279-E39 +160012780,63,16000417,Medical Incident,01/01/2016,01/01/2016,01/01/2016 04:52:39 PM,01/01/2016 04:54:47 PM,01/01/2016 04:55:07 PM,01/01/2016 04:55:32 PM,01/01/2016 05:14:59 PM,01/01/2016 05:15:02 PM,01/01/2016 05:19:28 PM,Code 2 Transport,01/01/2016 05:50:08 PM,4100 Block of 18TH ST,San Francisco,94114,B05,6,5415,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7608016861704, -122.435552336885)",160012780-63 +160461113,AM08,16018456,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:19:00 AM,02/15/2016 10:19:52 AM,02/15/2016 10:20:08 AM,02/15/2016 10:22:08 AM,02/15/2016 10:27:07 AM,02/15/2016 10:38:16 AM,02/15/2016 10:54:28 AM,Code 2 Transport,02/15/2016 11:53:09 AM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7234913181355, -122.435621772842)",160461113-AM08 +160272561,56,16010755,Medical Incident,01/27/2016,01/27/2016,01/27/2016 04:03:12 PM,01/27/2016 04:03:12 PM,01/27/2016 04:04:28 PM,01/27/2016 04:04:45 PM,01/27/2016 04:21:48 PM,01/27/2016 04:34:01 PM,01/27/2016 04:37:28 PM,Code 2 Transport,01/27/2016 04:57:09 PM,TAYLOR ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160272561-56 +110760196,E38,11024985,Medical Incident,03/17/2011,03/17/2011,03/17/2011 12:54:00 PM,03/17/2011 12:55:46 PM,03/17/2011 12:56:08 PM,03/17/2011 12:57:01 PM,03/17/2011 12:58:20 PM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 01:04:52 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",110760196-E38 +133070379,B03,13104563,Alarms,11/03/2013,11/03/2013,11/03/2013 11:54:12 PM,11/03/2013 11:54:12 PM,11/03/2013 11:54:44 PM,11/03/2013 11:57:00 PM,11/04/2013 12:00:46 AM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/04/2013 12:08:59 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7854258563204, -122.399870165149)",133070379-B03 +160111325,71,16004359,Medical Incident,01/11/2016,01/11/2016,01/11/2016 11:24:28 AM,01/11/2016 11:25:38 AM,01/11/2016 11:26:41 AM,01/11/2016 11:26:41 AM,01/11/2016 11:33:59 AM,01/11/2016 11:46:07 AM,01/11/2016 12:01:34 PM,Code 2 Transport,01/11/2016 12:48:34 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160111325-71 +160790767,55,16031336,Medical Incident,03/19/2016,03/18/2016,03/19/2016 07:25:06 AM,03/19/2016 07:25:43 AM,03/19/2016 07:26:19 AM,03/19/2016 07:27:31 AM,03/19/2016 07:51:53 AM,03/19/2016 07:51:54 AM,03/19/2016 07:51:55 AM,Code 2 Transport,03/19/2016 08:44:50 AM,500 Block of 5TH ST,San Francisco,94107,B07,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160790767-55 +110710140,94,11023322,Medical Incident,03/12/2011,03/12/2011,03/12/2011 10:05:44 AM,03/12/2011 10:06:47 AM,03/12/2011 10:07:03 AM,03/12/2011 10:07:12 AM,03/12/2011 10:19:10 AM,03/12/2011 10:27:19 AM,03/12/2011 10:40:25 AM,Code 2 Transport,03/12/2011 11:03:50 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",110710140-94 +110640311,T03,11021182,Medical Incident,03/05/2011,03/05/2011,03/05/2011 05:27:47 PM,03/05/2011 05:28:35 PM,03/05/2011 05:30:07 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 05:33:38 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,TRUCK,5,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",110640311-T03 +111300246,92,11043017,Medical Incident,05/10/2011,05/10/2011,05/10/2011 03:57:30 PM,05/10/2011 03:59:14 PM,05/10/2011 03:59:46 PM,05/10/2011 04:00:11 PM,05/10/2011 04:14:29 PM,05/10/2011 04:32:46 PM,05/10/2011 04:56:46 PM,Code 2 Transport,05/10/2011 05:30:21 PM,500 Block of LOMBARD ST,SF,94133,B01,28,1346,2,2,2,true,,1,MEDIC,2,1,3,North Beach,"(37.8031525870165, -122.41087857627)",111300246-92 +103550097,92,10113891,Medical Incident,12/21/2010,12/21/2010,12/21/2010 09:08:16 AM,12/21/2010 09:09:02 AM,12/21/2010 09:09:24 AM,12/21/2010 09:10:09 AM,12/21/2010 09:12:59 AM,12/21/2010 09:51:32 AM,12/21/2010 10:06:27 AM,Code 2 Transport,12/21/2010 10:52:44 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,2,2,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",103550097-92 +110490382,E41,11016353,Structure Fire,02/18/2011,02/18/2011,02/18/2011 09:02:36 PM,02/18/2011 09:04:00 PM,02/18/2011 09:04:27 PM,02/18/2011 09:05:47 PM,02/18/2011 09:08:14 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 09:10:57 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,,1,ENGINE,6,3,6,South of Market,"(37.7815374331217, -122.409518341416)",110490382-E41 +131330010,67,13044715,Medical Incident,05/13/2013,05/12/2013,05/13/2013 12:24:54 AM,05/13/2013 12:27:31 AM,05/13/2013 12:29:09 AM,05/13/2013 12:29:16 AM,05/13/2013 12:35:52 AM,05/13/2013 12:53:00 AM,05/13/2013 01:16:42 AM,Code 2 Transport,05/13/2013 01:45:44 AM,200 Block of 13TH ST,SF,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",131330010-67 +160721021,64,16028532,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:45:04 AM,03/12/2016 09:46:50 AM,03/12/2016 09:48:15 AM,03/12/2016 09:48:22 AM,03/12/2016 09:59:22 AM,03/12/2016 10:16:35 AM,03/12/2016 10:36:37 AM,Code 2 Transport,03/12/2016 11:26:48 AM,100 Block of NUEVA AVE,San Francisco,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7121182087675, -122.39706939553)",160721021-64 +121380325,RS1,12045970,Medical Incident,05/17/2012,05/17/2012,05/17/2012 07:56:41 PM,05/17/2012 07:57:33 PM,05/17/2012 07:58:58 PM,05/17/2012 08:00:13 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/17/2012 08:01:48 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",121380325-RS1 +110100067,E36,11003222,Medical Incident,01/10/2011,01/09/2011,01/10/2011 07:37:53 AM,01/10/2011 07:38:44 AM,01/10/2011 07:39:10 AM,01/10/2011 07:41:51 AM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 07:48:00 AM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,,1,ENGINE,3,2,8,Mission,"(37.7685615589203, -122.42458408581)",110100067-E36 +112550254,T08,11084175,Medical Incident,09/12/2011,09/12/2011,09/12/2011 04:15:53 PM,09/12/2011 04:18:35 PM,09/12/2011 04:18:56 PM,09/12/2011 04:20:17 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Other,09/12/2011 04:23:04 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,TRUCK,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112550254-T08 +160020691,81,16000644,Medical Incident,01/02/2016,01/01/2016,01/02/2016 07:56:07 AM,01/02/2016 07:58:12 AM,01/02/2016 07:58:43 AM,01/02/2016 07:58:53 AM,01/02/2016 08:13:22 AM,01/02/2016 08:19:41 AM,01/02/2016 08:38:19 AM,Code 2 Transport,01/02/2016 09:10:29 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160020691-81 +130890152,E12,13029725,Administrative,03/30/2013,03/30/2013,03/30/2013 12:17:24 PM,03/30/2013 12:17:36 PM,03/30/2013 12:17:49 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 12:18:17 PM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",130890152-E12 +160081458,71,16003200,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:26:35 AM,01/08/2016 11:27:27 AM,01/08/2016 11:28:04 AM,01/08/2016 11:28:22 AM,01/08/2016 11:32:25 AM,01/08/2016 11:56:02 AM,01/08/2016 12:12:08 PM,Code 2 Transport,01/08/2016 12:58:03 PM,3200 Block of QUINTARA ST,San Francisco,94116,B08,23,7645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7475260999198, -122.500186317205)",160081458-71 +130330128,B01,13011232,Alarms,02/02/2013,02/02/2013,02/02/2013 09:39:00 AM,02/02/2013 09:39:59 AM,02/02/2013 09:40:06 AM,02/02/2013 09:41:00 AM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/02/2013 09:52:53 AM,0 Block of FALLON PL,SF,94133,B01,2,1442,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.7977464099697, -122.413400804085)",130330128-B01 +160700964,59,16027776,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:32:03 AM,03/10/2016 09:32:40 AM,03/10/2016 09:33:05 AM,03/10/2016 09:35:42 AM,03/10/2016 09:43:04 AM,03/10/2016 09:54:42 AM,03/10/2016 10:15:03 AM,Code 2 Transport,03/10/2016 11:16:03 AM,0 Block of CONKLING ST,San Francisco,94124,B10,42,6363,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7355970334328, -122.401966640039)",160700964-59 +102830383,E01,10090232,Medical Incident,10/10/2010,10/10/2010,10/10/2010 10:03:03 PM,10/10/2010 10:03:53 PM,10/10/2010 10:04:01 PM,10/10/2010 10:06:25 PM,10/10/2010 10:08:54 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 10:20:17 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",102830383-E01 +103530004,E41,10113163,Medical Incident,12/19/2010,12/18/2010,12/19/2010 12:03:03 AM,12/19/2010 12:05:06 AM,12/19/2010 12:05:32 AM,12/19/2010 12:07:01 AM,12/19/2010 12:09:02 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/19/2010 12:19:51 AM,1500 Block of JACKSON ST,SF,94109,B01,41,1633,3,3,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7943031178825, -122.420589480632)",103530004-E41 +160432858,AM16,16017408,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:48:52 PM,02/12/2016 05:51:02 PM,02/12/2016 05:53:20 PM,02/12/2016 05:53:51 PM,02/12/2016 06:04:38 PM,02/12/2016 06:14:28 PM,02/12/2016 06:32:57 PM,Code 2 Transport,02/12/2016 06:57:41 PM,200 Block of MAIN ST,San Francisco,94105,B03,35,2117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.78995234675, -122.392682318412)",160432858-AM16 +132770043,AM22,13093968,Medical Incident,10/04/2013,10/03/2013,10/04/2013 03:55:27 AM,10/04/2013 03:56:35 AM,10/04/2013 03:56:55 AM,10/04/2013 03:57:53 AM,10/04/2013 04:00:42 AM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/04/2013 04:04:10 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,E,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",132770043-AM22 +132770418,E14,13094276,Alarms,10/04/2013,10/04/2013,10/04/2013 08:20:34 PM,10/04/2013 08:21:50 PM,10/04/2013 08:23:26 PM,10/04/2013 08:24:23 PM,10/04/2013 08:26:57 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Fire,10/04/2013 08:40:50 PM,500 Block of 20TH AVE,SF,94121,B07,14,7165,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7774804770389, -122.479104483079)",132770418-E14 +122960060,B02,12098047,Alarms,10/22/2012,10/21/2012,10/22/2012 07:04:50 AM,10/22/2012 07:06:25 AM,10/22/2012 07:07:10 AM,10/22/2012 07:08:59 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Fire,10/22/2012 07:14:39 AM,400 Block of 9TH ST,SF,94103,B03,29,2333,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7721679781687, -122.409530896113)",122960060-B02 +160493153,63,16019839,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:38:21 PM,02/18/2016 06:39:47 PM,02/18/2016 06:40:13 PM,02/18/2016 06:41:34 PM,02/18/2016 06:44:38 PM,02/18/2016 07:12:14 PM,02/18/2016 07:39:12 PM,Code 2 Transport,02/18/2016 08:16:08 PM,700 Block of UNION ST,San Francisco,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.800140039009, -122.412059325975)",160493153-63 +140790330,T06,14026843,Alarms,03/20/2014,03/20/2014,03/20/2014 07:32:44 PM,03/20/2014 07:34:05 PM,03/20/2014 07:34:11 PM,03/20/2014 07:36:00 PM,03/20/2014 07:37:43 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Fire,03/20/2014 07:44:24 PM,300 Block of VALENCIA ST,SAN FRANCISCO,94103,B02,6,5226,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.76701047078, -122.422020137013)",140790330-T06 +160431222,53,16017240,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:37:59 AM,02/12/2016 10:37:59 AM,02/12/2016 10:39:37 AM,02/12/2016 10:39:55 AM,02/12/2016 10:42:31 AM,02/12/2016 10:58:23 AM,02/12/2016 11:11:57 AM,Code 2 Transport,02/12/2016 11:57:58 AM,20TH AV/GEARY BL,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.780334689944, -122.479382974071)",160431222-53 +120350067,KM15,12011530,Medical Incident,02/04/2012,02/03/2012,02/04/2012 05:37:04 AM,02/04/2012 05:38:20 AM,02/04/2012 05:38:47 AM,02/04/2012 05:39:31 AM,02/04/2012 05:48:06 AM,02/04/2012 06:02:42 AM,02/04/2012 06:19:30 AM,Code 2 Transport,02/04/2012 06:37:27 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",120350067-KM15 +140770264,T01,14026134,Medical Incident,03/18/2014,03/18/2014,03/18/2014 04:43:49 PM,03/18/2014 04:45:09 PM,03/18/2014 04:57:20 PM,03/18/2014 04:57:44 PM,03/18/2014 05:01:47 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Patient Declined Transport,03/18/2014 05:03:25 PM,100 Block of 3RD ST,TREASURE ISLAN,94105,B02,48,2931,2,3,3,false,Non Life-threatening,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",140770264-T01 +110100037,E03,11003196,Medical Incident,01/10/2011,01/09/2011,01/10/2011 04:34:44 AM,01/10/2011 04:35:11 AM,01/10/2011 04:35:20 AM,01/10/2011 04:35:40 AM,01/10/2011 04:37:08 AM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 04:55:48 AM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",110100037-E03 +160883624,KM07,16035121,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:54:48 PM,03/28/2016 08:56:27 PM,03/28/2016 08:57:06 PM,03/28/2016 08:59:53 PM,03/28/2016 09:02:49 PM,03/28/2016 09:11:03 PM,03/28/2016 09:20:50 PM,Code 2 Transport,03/28/2016 09:45:18 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160883624-KM07 +160650525,55,16025820,Medical Incident,03/05/2016,03/04/2016,03/05/2016 04:47:31 AM,03/05/2016 04:49:45 AM,03/05/2016 04:50:04 AM,03/05/2016 04:50:28 AM,03/05/2016 04:53:12 AM,03/05/2016 05:10:05 AM,03/05/2016 05:17:46 AM,Code 2 Transport,03/05/2016 05:32:15 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160650525-55 +140260180,E43,14008908,Medical Incident,01/26/2014,01/26/2014,01/26/2014 01:55:21 PM,01/26/2014 01:56:50 PM,01/26/2014 02:02:27 PM,01/26/2014 02:03:03 PM,01/26/2014 02:06:46 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/26/2014 02:33:59 PM,0 Block of ROBINSON DR,SF,94112,B09,43,6236,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7092465786182, -122.42932313421)",140260180-E43 +160180067,72,16007065,Medical Incident,01/18/2016,01/17/2016,01/18/2016 12:31:15 AM,01/18/2016 12:32:33 AM,01/18/2016 12:32:52 AM,01/18/2016 12:33:14 AM,01/18/2016 12:36:34 AM,01/18/2016 12:49:17 AM,01/18/2016 01:00:12 AM,Code 2 Transport,01/18/2016 01:30:30 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160180067-72 +132980405,AP,13101396,Other,10/25/2013,10/25/2013,10/25/2013 10:13:18 PM,10/25/2013 10:13:19 PM,10/25/2013 10:13:19 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Fire,10/25/2013 10:13:43 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",132980405-AP +112280315,56,11075472,Medical Incident,08/16/2011,08/16/2011,08/16/2011 08:15:44 PM,08/16/2011 08:17:37 PM,08/16/2011 08:20:15 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Other,08/16/2011 08:21:10 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112280315-56 +123530049,KM09,12117997,Medical Incident,12/18/2012,12/17/2012,12/18/2012 05:26:28 AM,12/18/2012 05:27:52 AM,12/18/2012 05:28:23 AM,12/18/2012 05:29:46 AM,12/18/2012 05:39:26 AM,12/18/2012 05:48:23 AM,12/18/2012 06:03:52 AM,Code 2 Transport,12/18/2012 06:35:45 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,1,1,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",123530049-KM09 +160522599,AM16,16020901,Medical Incident,02/21/2016,02/21/2016,02/21/2016 05:38:51 PM,02/21/2016 05:39:37 PM,02/21/2016 05:40:17 PM,02/21/2016 05:40:50 PM,02/21/2016 05:48:44 PM,02/21/2016 06:16:37 PM,02/21/2016 06:30:43 PM,Code 2 Transport,02/21/2016 06:57:00 PM,600 Block of JONES ST,San Francisco,94102,B01,3,1462,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",160522599-AM16 +110490013,89,11016050,Medical Incident,02/18/2011,02/17/2011,02/18/2011 01:07:17 AM,02/18/2011 01:07:30 AM,02/18/2011 01:07:56 AM,02/18/2011 01:09:24 AM,02/18/2011 01:12:05 AM,02/18/2011 01:29:02 AM,02/18/2011 01:38:04 AM,Code 2 Transport,02/18/2011 02:15:13 AM,MISSION ST/FRANCE AV,SF,94112,B09,43,6123,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7200155262017, -122.438329412593)",110490013-89 +140750081,89,14025306,Traffic Collision,03/16/2014,03/15/2014,03/16/2014 04:40:09 AM,03/16/2014 04:41:15 AM,03/16/2014 04:41:35 AM,03/16/2014 04:41:57 AM,03/16/2014 04:47:30 AM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Unable to Locate,03/16/2014 04:52:00 AM,BAYSHORE BL/3RD ST,SAN FRANCISCO,94124,B10,44,6542,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7177400893424, -122.398434316401)",140750081-89 +140360182,AM06,14012207,Medical Incident,02/05/2014,02/05/2014,02/05/2014 01:07:26 PM,02/05/2014 01:09:26 PM,02/05/2014 01:09:40 PM,02/05/2014 01:10:17 PM,02/05/2014 01:14:19 PM,02/05/2014 01:46:00 PM,02/05/2014 01:59:36 PM,Code 2 Transport,02/05/2014 02:41:40 PM,300 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8057759671113, -122.412787887195)",140360182-AM06 +123450256,58,12115379,Medical Incident,12/10/2012,12/10/2012,12/10/2012 02:15:34 PM,12/10/2012 02:16:30 PM,12/10/2012 02:16:56 PM,12/10/2012 02:17:25 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,04/25/2016 01:55:22 PM,5600 Block of 3RD ST,SF,94124,B10,17,6537,E,E,3,true,Potentially Life-Threatening,1,MEDIC,6,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",123450256-58 +140530174,E21,14017933,Structure Fire,02/22/2014,02/22/2014,02/22/2014 12:27:44 PM,02/22/2014 12:28:35 PM,02/22/2014 12:29:01 PM,02/22/2014 12:30:02 PM,02/22/2014 12:31:12 PM,04/25/2016 01:48:05 PM,04/25/2016 01:48:05 PM,Fire,02/22/2014 12:44:49 PM,800 Block of WALLER ST,SF,94117,B05,21,4143,3,3,3,false,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.770115719974, -122.438149053573)",140530174-E21 +132020072,RC1,13068377,Alarms,07/21/2013,07/21/2013,07/21/2013 08:17:17 AM,07/21/2013 08:27:13 AM,07/21/2013 08:54:57 AM,04/25/2016 01:51:42 PM,07/21/2013 09:23:07 AM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 12:41:05 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,2,2,2,true,Alarm,1,RESCUE CAPTAIN,25,1,3,Financial District/South Beach,"(37.7891367799941, -122.40363527458)",132020072-RC1 +140380054,T14,14012722,Alarms,02/07/2014,02/06/2014,02/07/2014 07:15:43 AM,02/07/2014 07:17:02 AM,02/07/2014 07:17:17 AM,02/07/2014 07:18:53 AM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 07:20:08 AM,4100 Block of CLEMENT ST,SF,94121,B07,34,7266,3,3,3,false,Alarm,1,TRUCK,3,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",140380054-T14 +111600281,E31,11052962,Medical Incident,06/09/2011,06/09/2011,06/09/2011 07:39:52 PM,06/09/2011 07:41:09 PM,06/09/2011 07:41:50 PM,06/09/2011 07:42:51 PM,06/09/2011 07:45:53 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 08:01:34 PM,300 Block of LAKE ST,SF,94118,B07,31,712,3,3,3,true,,1,ENGINE,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",111600281-E31 +102930029,E06,10093322,Medical Incident,10/20/2010,10/19/2010,10/20/2010 03:40:50 AM,10/20/2010 03:41:51 AM,10/20/2010 03:42:30 AM,10/20/2010 03:43:59 AM,10/20/2010 03:45:38 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,No Merit,10/20/2010 03:47:13 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",102930029-E06 +110430351,E01,11014403,Medical Incident,02/12/2011,02/12/2011,02/12/2011 06:38:28 PM,02/12/2011 06:39:18 PM,02/12/2011 06:39:31 PM,04/25/2016 02:06:07 PM,02/12/2011 06:41:44 PM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 07:07:02 PM,800 Block of HOWARD ST,SF,94103,B03,1,2245,3,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7824182864419, -122.403869611535)",110430351-E01 +140560109,KM04,14018832,Medical Incident,02/25/2014,02/25/2014,02/25/2014 09:24:46 AM,02/25/2014 09:27:24 AM,02/25/2014 09:27:43 AM,02/25/2014 09:30:59 AM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,No Merit,02/25/2014 09:33:33 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7866019512795, -122.419812186232)",140560109-KM04 +160290673,AM02,16011347,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:02:43 AM,01/29/2016 08:03:04 AM,01/29/2016 08:03:16 AM,01/29/2016 08:03:45 AM,01/29/2016 08:11:27 AM,01/29/2016 08:28:53 AM,01/29/2016 08:47:16 AM,Code 2 Transport,01/29/2016 09:05:58 AM,0 Block of HARRINGTON ST,San Francisco,94112,B09,43,6117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7256640493624, -122.435313776535)",160290673-AM02 +112330039,58,11076822,Medical Incident,08/21/2011,08/20/2011,08/21/2011 01:50:22 AM,08/21/2011 01:52:46 AM,08/21/2011 01:53:16 AM,08/21/2011 01:53:50 AM,08/21/2011 02:00:43 AM,08/21/2011 02:10:39 AM,08/21/2011 02:36:24 AM,Code 2 Transport,08/21/2011 02:59:55 AM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",112330039-58 +111220277,E17,11040391,Medical Incident,05/02/2011,05/02/2011,05/02/2011 04:58:32 PM,05/02/2011 04:59:24 PM,05/02/2011 04:59:43 PM,05/02/2011 05:01:01 PM,05/02/2011 05:02:44 PM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,05/02/2011 05:13:37 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",111220277-E17 +160872452,KM05,16034637,Medical Incident,03/27/2016,03/27/2016,03/27/2016 04:19:40 PM,03/27/2016 04:20:33 PM,03/27/2016 04:20:40 PM,03/27/2016 04:22:03 PM,03/27/2016 04:28:19 PM,03/27/2016 04:44:55 PM,03/27/2016 05:06:32 PM,Code 2 Transport,03/27/2016 05:47:40 PM,800 Block of 40TH AVE,San Francisco,94121,B07,34,7261,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7727721530118, -122.500252838328)",160872452-KM05 +112260361,E22,11074829,Medical Incident,08/14/2011,08/14/2011,08/14/2011 09:44:06 PM,08/14/2011 09:46:31 PM,08/14/2011 09:47:53 PM,08/14/2011 09:48:56 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 09:50:17 PM,23RD AV/IRVING ST,SF,94122,B08,22,7451,3,3,3,false,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7633730938478, -122.481408835625)",112260361-E22 +120630047,T07,12020631,Structure Fire,03/03/2012,03/02/2012,03/03/2012 02:33:46 AM,03/03/2012 02:33:46 AM,03/03/2012 02:34:21 AM,03/03/2012 02:36:40 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 02:37:42 AM,16TH ST/GUERRERO ST,SF,94103,B02,6,5235,3,3,3,true,Alarm,1,TRUCK,2,2,8,Mission,"(37.7647834522541, -122.424102685064)",120630047-T07 +111100134,T01,11036272,Structure Fire,04/20/2011,04/20/2011,04/20/2011 10:10:29 AM,04/20/2011 10:11:44 AM,04/20/2011 10:12:34 AM,04/20/2011 10:14:02 AM,04/20/2011 10:15:05 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 10:24:41 AM,4TH ST/HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",111100134-T01 +111480072,E36,11048997,Alarms,05/28/2011,05/28/2011,05/28/2011 08:19:07 AM,05/28/2011 08:20:32 AM,05/28/2011 08:20:57 AM,05/28/2011 08:22:55 AM,05/28/2011 08:24:32 AM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,05/28/2011 08:27:58 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",111480072-E36 +103560139,64,10114224,Medical Incident,12/22/2010,12/22/2010,12/22/2010 11:00:53 AM,12/22/2010 11:02:50 AM,12/22/2010 11:05:07 AM,12/22/2010 11:05:18 AM,12/22/2010 11:09:21 AM,12/22/2010 11:25:20 AM,12/22/2010 11:50:13 AM,Code 2 Transport,12/22/2010 12:38:45 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",103560139-64 +111040207,75,11034495,Medical Incident,04/14/2011,04/14/2011,04/14/2011 02:46:17 PM,04/14/2011 02:48:14 PM,04/14/2011 02:49:29 PM,04/14/2011 02:50:03 PM,04/14/2011 03:06:38 PM,04/14/2011 03:15:57 PM,04/14/2011 03:37:30 PM,Code 2 Transport,04/14/2011 04:04:26 PM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,1,1,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7929530870311, -122.401531075315)",111040207-75 +122060235,79,12068530,Medical Incident,07/24/2012,07/24/2012,07/24/2012 03:27:40 PM,07/24/2012 03:28:12 PM,07/24/2012 03:28:27 PM,07/24/2012 03:28:47 PM,07/24/2012 03:34:55 PM,07/24/2012 03:44:00 PM,07/24/2012 03:56:40 PM,Code 2 Transport,07/24/2012 04:13:16 PM,100 Block of RICKARD ST,SF,94134,B10,42,6366,3,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7342270960394, -122.407403239738)",122060235-79 +111560292,92,11051657,Medical Incident,06/05/2011,06/05/2011,06/05/2011 04:48:00 PM,06/05/2011 04:49:22 PM,06/05/2011 04:49:37 PM,06/05/2011 04:50:19 PM,06/05/2011 04:58:40 PM,06/05/2011 05:18:10 PM,06/05/2011 05:35:43 PM,Code 2 Transport,06/05/2011 05:59:25 PM,1500 Block of ALEMANY BLVD,SF,94112,B09,15,8271,1,1,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7275315597461, -122.43567234398)",111560292-92 +112260136,E42,11074633,Medical Incident,08/14/2011,08/14/2011,08/14/2011 11:41:27 AM,08/14/2011 11:42:14 AM,08/14/2011 11:42:51 AM,08/14/2011 11:44:39 AM,08/14/2011 11:47:46 AM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 12:03:25 PM,300 Block of OXFORD ST,SF,94134,B09,43,6152,3,3,3,true,,1,ENGINE,3,9,9,Excelsior,"(37.72555008701, -122.419202552102)",112260136-E42 +130370089,66,13012619,Medical Incident,02/06/2013,02/06/2013,02/06/2013 09:02:52 AM,02/06/2013 09:04:28 AM,02/06/2013 09:04:55 AM,02/06/2013 09:05:29 AM,02/06/2013 09:10:36 AM,02/06/2013 09:26:34 AM,02/06/2013 09:36:03 AM,Code 3 Transport,02/06/2013 10:24:06 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",130370089-66 +131550262,E39,13052587,Alarms,06/04/2013,06/04/2013,06/04/2013 02:48:25 PM,06/04/2013 02:49:32 PM,06/04/2013 02:49:44 PM,06/04/2013 02:51:04 PM,06/04/2013 02:53:37 PM,04/25/2016 01:52:27 PM,04/25/2016 01:52:27 PM,Fire,06/04/2013 02:57:36 PM,0 Block of AGUA WAY,SF,94127,B09,39,8651,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.742207178028, -122.451868140233)",131550262-E39 +123430071,E18,12114531,Medical Incident,12/08/2012,12/07/2012,12/08/2012 05:20:31 AM,12/08/2012 05:21:11 AM,12/08/2012 05:21:48 AM,12/08/2012 05:23:01 AM,12/08/2012 05:26:15 AM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/08/2012 05:33:26 AM,2300 Block of 43RD AVE,SF,94116,B08,18,7644,3,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7428445256261, -122.501538737612)",123430071-E18 +160393660,AM20,16015812,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:03:28 PM,02/08/2016 10:04:41 PM,02/08/2016 10:06:02 PM,02/08/2016 10:06:47 PM,02/08/2016 10:10:55 PM,02/08/2016 10:30:23 PM,02/08/2016 10:42:42 PM,Code 2 Transport,02/08/2016 11:20:38 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160393660-AM20 +160451749,AM12,16018127,Medical Incident,02/14/2016,02/14/2016,02/14/2016 01:34:19 PM,02/14/2016 01:36:02 PM,02/14/2016 01:36:31 PM,02/14/2016 01:37:51 PM,02/14/2016 01:44:41 PM,02/14/2016 02:06:16 PM,02/14/2016 02:22:19 PM,Code 2 Transport,02/14/2016 02:52:25 PM,TAYLOR ST/JEFFERSON ST,San Francisco,94133,B01,28,1433,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.808214052974, -122.41580242723)",160451749-AM12 +133130230,83,13106409,Structure Fire,11/09/2013,11/09/2013,11/09/2013 01:47:09 PM,11/09/2013 01:48:01 PM,11/09/2013 01:48:08 PM,11/09/2013 01:48:29 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 01:55:37 PM,3900 Block of 24TH ST,SF,94114,B06,11,5522,3,3,3,true,Alarm,1,MEDIC,10,6,8,Noe Valley,"(37.7515587821475, -122.430772936349)",133130230-83 +110410420,E44,11013762,Structure Fire,02/10/2011,02/10/2011,02/10/2011 11:46:11 PM,02/10/2011 11:46:12 PM,02/10/2011 11:46:18 PM,02/10/2011 11:47:06 PM,02/10/2011 11:50:30 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/10/2011 11:51:12 PM,BAYSHORE BL/LELAND AV,SF,94134,B10,44,6255,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7111885730458, -122.403650108735)",110410420-E44 +160512976,62,16020586,Medical Incident,02/20/2016,02/20/2016,02/20/2016 08:22:47 PM,02/20/2016 08:24:37 PM,02/20/2016 08:24:45 PM,02/20/2016 08:24:54 PM,02/20/2016 08:33:35 PM,02/20/2016 08:55:34 PM,02/20/2016 09:14:02 PM,Code 2 Transport,02/20/2016 09:49:00 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160512976-62 +111160346,E28,11038409,Medical Incident,04/26/2011,04/26/2011,04/26/2011 07:11:12 PM,04/26/2011 07:13:54 PM,04/26/2011 07:14:11 PM,04/26/2011 07:15:04 PM,04/26/2011 07:16:50 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 07:20:45 PM,BAY ST/COLUMBUS AV,SF,94133,B01,28,1425,3,3,3,false,,1,ENGINE,1,1,2,Russian Hill,"(37.8051696488028, -122.417226194565)",111160346-E28 +160271831,88,16010676,Medical Incident,01/27/2016,01/27/2016,01/27/2016 01:08:17 PM,01/27/2016 01:08:17 PM,01/27/2016 01:08:36 PM,01/27/2016 01:09:32 PM,01/27/2016 01:12:47 PM,01/27/2016 01:41:06 PM,01/27/2016 02:06:13 PM,Code 2 Transport,01/27/2016 02:33:48 PM,HUDSON AV/3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7403172644605, -122.388754590589)",160271831-88 +130460176,RS1,13015594,Medical Incident,02/15/2013,02/15/2013,02/15/2013 11:23:57 AM,02/15/2013 11:25:04 AM,02/15/2013 11:25:34 AM,02/15/2013 11:26:37 AM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 11:27:15 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",130460176-RS1 +132990222,E02,13101621,Alarms,10/26/2013,10/26/2013,10/26/2013 02:14:26 PM,10/26/2013 02:14:27 PM,10/26/2013 02:14:49 PM,10/26/2013 02:16:19 PM,10/26/2013 02:17:38 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/26/2013 02:18:02 PM,GRANT AV/JACKSON ST,SF,94133,B01,2,1312,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",132990222-E02 +122240349,T08,12074427,Medical Incident,08/11/2012,08/11/2012,08/11/2012 09:35:09 PM,08/11/2012 09:35:40 PM,08/11/2012 09:36:25 PM,08/11/2012 09:37:54 PM,08/11/2012 09:40:08 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 09:51:21 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122240349-T08 +160672023,60,16026800,Medical Incident,03/07/2016,03/07/2016,03/07/2016 03:09:59 PM,03/07/2016 03:16:28 PM,03/07/2016 03:17:32 PM,03/07/2016 03:18:07 PM,03/07/2016 03:21:34 PM,03/07/2016 03:49:35 PM,03/07/2016 03:49:36 PM,Code 3 Transport,03/07/2016 04:28:01 PM,900 Block of POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",160672023-60 +110380040,RS2,11012469,Structure Fire,02/07/2011,02/06/2011,02/07/2011 03:01:44 AM,02/07/2011 03:02:35 AM,02/07/2011 03:03:09 AM,02/07/2011 03:06:17 AM,02/07/2011 03:10:38 AM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/07/2011 04:05:24 AM,300 Block of CORBETT AVE,SF,94114,B05,24,5265,3,3,3,false,,2,RESCUE SQUAD,4,6,8,Castro/Upper Market,"(37.7591354950053, -122.446136454029)",110380040-RS2 +130110133,86,13003703,Medical Incident,01/11/2013,01/11/2013,01/11/2013 10:44:32 AM,01/11/2013 10:47:53 AM,01/11/2013 10:49:36 AM,01/11/2013 10:49:42 AM,01/11/2013 11:00:38 AM,01/11/2013 11:16:52 AM,01/11/2013 11:37:20 AM,Code 2 Transport,01/11/2013 11:56:21 AM,300 Block of RHODE ISLAND ST,SF,94103,B03,29,2413,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission Bay,"(37.7654237351553, -122.402693174465)",130110133-86 +131350013,77,13045425,Medical Incident,05/15/2013,05/14/2013,05/15/2013 02:12:52 AM,05/15/2013 02:14:43 AM,05/15/2013 02:16:19 AM,05/15/2013 02:17:11 AM,05/15/2013 02:22:03 AM,05/15/2013 02:44:52 AM,05/15/2013 03:03:55 AM,Code 2 Transport,05/15/2013 03:50:28 AM,2500 Block of LOMBARD ST,SF,94123,B04,16,4223,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7990014109723, -122.443503858027)",131350013-77 +113140255,T05,11104389,Structure Fire,11/10/2011,11/10/2011,11/10/2011 04:12:44 PM,11/10/2011 04:13:06 PM,11/10/2011 04:13:30 PM,11/10/2011 04:14:36 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 04:24:34 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,,1,TRUCK,7,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",113140255-T05 +112360341,RC3,11078024,Medical Incident,08/24/2011,08/24/2011,08/24/2011 10:12:46 PM,08/24/2011 10:12:47 PM,08/24/2011 10:12:55 PM,08/24/2011 10:13:53 PM,08/24/2011 10:16:25 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 10:30:42 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,E,E,3,true,,1,RESCUE CAPTAIN,3,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",112360341-RC3 +160101990,52,16004074,Medical Incident,01/10/2016,01/10/2016,01/10/2016 02:47:11 PM,01/10/2016 02:49:07 PM,01/10/2016 02:49:36 PM,01/10/2016 02:49:49 PM,01/10/2016 03:02:54 PM,01/10/2016 03:18:45 PM,01/10/2016 03:37:47 PM,Code 2 Transport,01/10/2016 03:50:42 PM,0 Block of BARTLETT ST,San Francisco,94110,B06,7,5456,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.756171321347, -122.419865537021)",160101990-52 +122210365,E08,12073426,Medical Incident,08/08/2012,08/08/2012,08/08/2012 11:30:32 PM,08/08/2012 11:32:40 PM,08/08/2012 11:33:31 PM,08/08/2012 11:35:35 PM,08/08/2012 11:38:30 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,No Merit,08/08/2012 11:41:37 PM,HARRISON ST/7TH ST,SF,94103,B03,8,2312,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7755141534465, -122.406295964728)",122210365-E08 +112250100,E36,11074274,Alarms,08/13/2011,08/13/2011,08/13/2011 09:06:38 AM,08/13/2011 09:07:57 AM,08/13/2011 09:08:12 AM,08/13/2011 09:09:24 AM,08/13/2011 09:11:06 AM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 09:19:59 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",112250100-E36 +160432911,88,16017412,Medical Incident,02/12/2016,02/12/2016,02/12/2016 06:02:02 PM,02/12/2016 06:04:05 PM,02/12/2016 06:06:42 PM,02/12/2016 06:06:50 PM,02/12/2016 06:08:26 PM,02/12/2016 06:18:42 PM,02/12/2016 06:19:18 PM,Code 2 Transport,02/12/2016 06:48:43 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",160432911-88 +122560224,E13,12084679,Medical Incident,09/12/2012,09/12/2012,09/12/2012 04:46:12 PM,09/12/2012 04:47:53 PM,09/12/2012 04:48:18 PM,09/12/2012 04:49:38 PM,09/12/2012 04:51:33 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 05:10:10 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",122560224-E13 +132550277,RC1,13086258,Medical Incident,09/12/2013,09/12/2013,09/12/2013 04:28:09 PM,09/12/2013 04:29:09 PM,09/12/2013 04:31:25 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 04:31:53 PM,1000 Block of THE EMBARCADERO,SF,94111,B01,13,927,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",132550277-RC1 +160731921,87,16029016,Medical Incident,03/13/2016,03/13/2016,03/13/2016 04:10:02 PM,03/13/2016 04:10:36 PM,03/13/2016 04:10:57 PM,03/13/2016 04:11:07 PM,03/13/2016 04:14:04 PM,03/13/2016 04:25:53 PM,03/13/2016 04:29:18 PM,Code 3 Transport,03/13/2016 05:39:47 PM,1300 Block of 4TH AVE,San Francisco,94122,B05,12,7324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7634528101504, -122.460831251397)",160731921-87 +160852119,84,16033813,Medical Incident,03/25/2016,03/25/2016,03/25/2016 02:15:42 PM,03/25/2016 02:17:33 PM,03/25/2016 02:18:52 PM,03/25/2016 02:19:05 PM,03/25/2016 02:22:22 PM,03/25/2016 02:36:46 PM,03/25/2016 02:54:02 PM,Code 2 Transport,03/25/2016 03:24:09 PM,2100 Block of MARKET ST,San Francisco,94114,B05,6,5231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",160852119-84 +120280316,79,12009530,Medical Incident,01/28/2012,01/28/2012,01/28/2012 08:23:40 PM,01/28/2012 08:24:04 PM,01/28/2012 08:25:05 PM,01/28/2012 08:25:12 PM,01/28/2012 08:33:03 PM,01/28/2012 08:48:48 PM,01/28/2012 09:02:36 PM,Code 2 Transport,01/28/2012 09:35:33 PM,300 Block of JEFFERSON ST,SF,94133,B01,28,947,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8079624466014, -122.418277044979)",120280316-79 +122840046,89,12093844,Medical Incident,10/10/2012,10/09/2012,10/10/2012 06:40:57 AM,10/10/2012 06:41:45 AM,10/10/2012 06:42:42 AM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 06:50:17 AM,1900 Block of TURK ST,SF,94115,B05,21,4255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,2,Western Addition,"(37.7794555627999, -122.440688868912)",122840046-89 +113080422,B02,11102522,Medical Incident,11/04/2011,11/04/2011,11/04/2011 10:57:29 PM,11/04/2011 10:58:16 PM,11/04/2011 10:58:40 PM,04/25/2016 02:01:48 PM,11/04/2011 11:02:12 PM,04/25/2016 02:01:48 PM,04/25/2016 02:01:48 PM,Other,11/04/2011 11:16:27 PM,16TH ST/HOFF ST,SF,94103,B02,7,5236,E,E,3,false,,1,CHIEF,2,2,9,Mission,"(37.7649962714721, -122.420580608279)",113080422-B02 +140180373,E13,14006343,Medical Incident,01/18/2014,01/18/2014,01/18/2014 09:29:14 PM,01/18/2014 09:30:18 PM,01/18/2014 09:31:04 PM,01/18/2014 09:31:10 PM,01/18/2014 09:33:17 PM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/18/2014 09:48:36 PM,BUSH ST/MONTGOMERY ST,SF,94104,B01,13,1235,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",140180373-E13 +160491835,52,16019740,Medical Incident,02/18/2016,02/18/2016,02/18/2016 01:08:27 PM,02/18/2016 01:09:36 PM,02/18/2016 01:09:50 PM,02/18/2016 01:10:06 PM,02/18/2016 01:21:30 PM,02/18/2016 01:49:21 PM,02/18/2016 02:13:58 PM,Code 2 Transport,02/18/2016 02:48:37 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160491835-52 +121920219,T05,12063946,Medical Incident,07/10/2012,07/10/2012,07/10/2012 02:29:24 PM,07/10/2012 02:30:11 PM,07/10/2012 02:30:21 PM,07/10/2012 02:31:18 PM,07/10/2012 02:32:28 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 02:49:37 PM,MCALLISTER ST/FILLMORE ST,SF,94115,B05,5,3534,3,2,2,false,Non Life-threatening,1,TRUCK,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",121920219-T05 +140850124,E10,14028578,Structure Fire,03/26/2014,03/26/2014,03/26/2014 10:32:43 AM,03/26/2014 10:32:43 AM,03/26/2014 10:33:04 AM,03/26/2014 10:33:15 AM,03/26/2014 10:37:45 AM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Fire,03/26/2014 10:45:10 AM,0 Block of VEGA ST,,94115,B05,10,436,3,3,3,true,Alarm,1,ENGINE,1,5,2,Lone Mountain/USF,"(37.7801242878056, -122.445893581212)",140850124-E10 +121220147,54,12040463,Medical Incident,05/01/2012,05/01/2012,05/01/2012 12:17:56 PM,05/01/2012 12:20:56 PM,05/01/2012 12:21:40 PM,05/01/2012 12:22:19 PM,05/01/2012 12:33:02 PM,04/25/2016 01:58:54 PM,05/01/2012 01:17:11 PM,Code 2 Transport,05/01/2012 01:34:41 PM,100 Block of CLAY ST,SF,94111,B01,13,1133,1,1,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7953352957642, -122.397362199177)",121220147-54 +121520190,E42,12050343,Medical Incident,05/31/2012,05/31/2012,05/31/2012 01:58:40 PM,05/31/2012 02:01:20 PM,05/31/2012 02:01:32 PM,05/31/2012 02:02:45 PM,05/31/2012 02:05:15 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 02:15:53 PM,100 Block of HARVARD ST,SF,94134,B09,42,6144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Excelsior,"(37.7277240997544, -122.421047234904)",121520190-E42 +112080298,72,11068786,Structure Fire,07/27/2011,07/27/2011,07/27/2011 07:16:25 PM,07/27/2011 07:18:09 PM,07/27/2011 07:18:29 PM,07/27/2011 07:19:22 PM,07/27/2011 07:23:15 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 07:23:39 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,6,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",112080298-72 +113290149,E38,11109139,Medical Incident,11/25/2011,11/25/2011,11/25/2011 02:10:22 PM,11/25/2011 02:11:25 PM,11/25/2011 02:12:25 PM,11/25/2011 02:13:03 PM,11/25/2011 02:14:27 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 02:30:37 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",113290149-E38 +132380005,84,13080149,Medical Incident,08/26/2013,08/25/2013,08/26/2013 12:20:10 AM,08/26/2013 12:20:50 AM,08/26/2013 12:21:49 AM,08/26/2013 12:22:05 AM,08/26/2013 12:29:27 AM,08/26/2013 12:47:22 AM,08/26/2013 01:04:09 AM,Code 2 Transport,08/26/2013 01:38:12 AM,100 Block of BERTITA ST,SF,94112,B09,15,8331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7187468516262, -122.44040641879)",132380005-84 +131470184,MA1,13049888,Structure Fire,05/27/2013,05/27/2013,05/27/2013 02:56:55 PM,05/27/2013 02:57:16 PM,05/27/2013 03:21:16 PM,05/27/2013 03:21:48 PM,05/27/2013 03:37:13 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,Other,05/27/2013 04:43:33 PM,200 Block of JOOST AVE,SF,94131,B09,26,8214,3,3,3,false,Fire,1,SUPPORT,13,9,7,West of Twin Peaks,"(37.7323075322144, -122.440886977076)",131470184-MA1 +160391182,KM04,16015558,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:18:11 AM,02/08/2016 10:19:00 AM,02/08/2016 10:19:29 AM,02/08/2016 10:20:07 AM,02/08/2016 10:50:45 AM,02/08/2016 10:50:47 AM,02/08/2016 11:37:47 AM,Code 2 Transport,02/08/2016 11:57:42 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160391182-KM04 +160150483,52,16005855,Medical Incident,01/15/2016,01/14/2016,01/15/2016 06:10:24 AM,01/15/2016 06:11:51 AM,01/15/2016 06:13:02 AM,01/15/2016 06:13:19 AM,01/15/2016 06:22:51 AM,01/15/2016 06:44:00 AM,01/15/2016 06:58:48 AM,Code 2 Transport,01/15/2016 07:35:35 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160150483-52 +120880046,E07,12029077,Medical Incident,03/28/2012,03/27/2012,03/28/2012 04:46:08 AM,03/28/2012 04:47:07 AM,03/28/2012 04:49:35 AM,03/28/2012 04:51:57 AM,03/28/2012 04:55:08 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 05:04:06 AM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",120880046-E07 +133010216,E38,13102311,Medical Incident,10/28/2013,10/28/2013,10/28/2013 12:52:43 PM,10/28/2013 12:53:53 PM,10/28/2013 12:55:33 PM,10/28/2013 12:57:12 PM,10/28/2013 01:08:09 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/28/2013 01:17:25 PM,FILLMORE ST/JACKSON ST,SF,94115,B04,38,3545,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7924716369741, -122.434557722228)",133010216-E38 +140560319,72,14019003,Medical Incident,02/25/2014,02/25/2014,02/25/2014 07:27:58 PM,02/25/2014 07:29:19 PM,02/25/2014 07:29:48 PM,02/25/2014 07:30:13 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,No Merit,02/25/2014 07:33:58 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,E,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",140560319-72 +160452976,67,16018259,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 07:48:06 PM,02/14/2016 07:49:32 PM,02/14/2016 07:50:18 PM,02/14/2016 07:50:49 PM,02/14/2016 07:59:23 PM,02/14/2016 08:03:46 PM,02/14/2016 08:14:10 PM,Code 3 Transport,02/14/2016 08:41:00 PM,200 Block of ALEMANY BLVD,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Bernal Heights,"(37.7351501389095, -122.410360631063)",160452976-67 +160783843,65,16031200,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:53:43 PM,03/18/2016 09:56:24 PM,03/18/2016 09:56:35 PM,03/18/2016 09:56:43 PM,03/18/2016 10:11:02 PM,03/18/2016 10:24:58 PM,03/18/2016 10:33:46 PM,Code 2 Transport,03/18/2016 11:06:09 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7838599994859, -122.422630661972)",160783843-65 +123080355,E01,12102550,Structure Fire,11/03/2012,11/03/2012,11/03/2012 10:36:25 PM,11/03/2012 10:36:25 PM,11/03/2012 10:36:37 PM,11/03/2012 10:37:57 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,Other,11/03/2012 10:39:40 PM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,Alarm,1,ENGINE,2,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",123080355-E01 +160842711,59,16033461,Medical Incident,03/24/2016,03/24/2016,03/24/2016 04:01:01 PM,03/24/2016 04:02:48 PM,03/24/2016 04:03:33 PM,03/24/2016 04:03:57 PM,03/24/2016 04:11:00 PM,03/24/2016 04:24:30 PM,03/24/2016 04:28:40 PM,Code 2 Transport,03/24/2016 04:57:56 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160842711-59 +122990230,T01,12099140,Odor (Strange / Unknown),10/25/2012,10/25/2012,10/25/2012 03:29:06 PM,10/25/2012 03:31:06 PM,10/25/2012 03:31:37 PM,10/25/2012 03:33:56 PM,10/25/2012 03:34:00 PM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,Other,10/25/2012 03:37:04 PM,100 Block of MAIDEN LN,SF,94108,B01,1,1316,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.788077566398, -122.405896351986)",122990230-T01 +122710319,94,12089557,Medical Incident,09/27/2012,09/27/2012,09/27/2012 09:47:14 PM,09/27/2012 09:48:23 PM,09/27/2012 09:49:01 PM,09/27/2012 09:49:31 PM,09/27/2012 09:52:52 PM,09/27/2012 10:07:47 PM,09/27/2012 10:17:22 PM,Code 2 Transport,09/27/2012 10:42:26 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",122710319-94 +120380215,95,12012709,Medical Incident,02/07/2012,02/07/2012,02/07/2012 02:25:12 PM,02/07/2012 02:27:46 PM,02/07/2012 02:27:59 PM,02/07/2012 02:28:06 PM,02/07/2012 02:35:57 PM,02/07/2012 02:57:04 PM,02/07/2012 03:15:48 PM,Code 2 Transport,02/07/2012 03:51:38 PM,2100 Block of BAY SHORE BLVD,SF,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7124904928046, -122.401088283306)",120380215-95 +110380393,70,11012753,Medical Incident,02/07/2011,02/07/2011,02/07/2011 08:59:36 PM,02/07/2011 09:03:14 PM,02/07/2011 09:04:43 PM,02/07/2011 09:05:05 PM,02/07/2011 09:12:40 PM,02/07/2011 09:25:14 PM,02/07/2011 09:32:05 PM,Code 2 Transport,02/07/2011 10:10:55 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,1,1,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",110380393-70 +140930083,66,14031193,Medical Incident,04/03/2014,04/03/2014,04/03/2014 08:27:15 AM,04/03/2014 08:27:55 AM,04/03/2014 08:29:26 AM,04/03/2014 08:29:31 AM,04/03/2014 08:39:34 AM,04/03/2014 08:54:10 AM,04/03/2014 09:06:14 AM,Code 2 Transport,04/03/2014 09:51:56 AM,100 Block of SCOTIA AVE,SAN FRANCISCO,94124,B10,42,6447,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7319729671946, -122.39977690025)",140930083-66 +123200231,HZ1,12106420,Odor (Strange / Unknown),11/15/2012,11/15/2012,11/15/2012 03:24:03 PM,11/15/2012 03:25:21 PM,11/15/2012 03:26:16 PM,11/15/2012 03:50:00 PM,11/15/2012 03:56:40 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 04:50:08 PM,0 Block of MOSS ST,SF,94103,B03,1,2313,3,3,3,false,Alarm,1,SUPPORT,8,3,6,South of Market,"(37.7777588128811, -122.40811239746)",123200231-HZ1 +132810196,T11,13095615,Structure Fire,10/08/2013,10/08/2013,10/08/2013 01:12:35 PM,10/08/2013 01:13:29 PM,10/08/2013 01:13:57 PM,10/08/2013 01:16:34 PM,10/08/2013 01:22:37 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/08/2013 02:06:37 PM,200 Block of DUBLIN ST,SF,94112,B09,43,6165,3,3,3,false,Fire,1,TRUCK,6,9,11,Excelsior,"(37.7164730517118, -122.42788997524)",132810196-T11 +133180016,T03,13107941,Alarms,11/14/2013,11/13/2013,11/14/2013 12:43:30 AM,11/14/2013 12:44:38 AM,11/14/2013 12:46:32 AM,11/14/2013 12:47:05 AM,11/14/2013 12:47:15 AM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,Other,11/14/2013 12:49:58 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,TRUCK,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",133180016-T03 +130890096,AP,13029685,Other,03/30/2013,03/30/2013,03/30/2013 08:26:04 AM,03/30/2013 08:26:04 AM,03/30/2013 08:26:04 AM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Fire,03/30/2013 08:27:15 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",130890096-AP +160543071,AM28,16021714,Medical Incident,02/23/2016,02/23/2016,02/23/2016 05:54:24 PM,02/23/2016 05:56:54 PM,02/23/2016 05:57:18 PM,02/23/2016 05:57:51 PM,02/23/2016 06:09:25 PM,02/23/2016 06:27:39 PM,02/23/2016 06:36:07 PM,Code 2 Transport,02/23/2016 07:08:36 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160543071-AM28 +160903378,AM10,16035858,Medical Incident,03/30/2016,03/30/2016,03/30/2016 07:10:34 PM,03/30/2016 07:12:46 PM,03/30/2016 07:15:40 PM,03/30/2016 07:16:29 PM,03/30/2016 07:20:28 PM,03/30/2016 07:39:39 PM,03/30/2016 07:53:16 PM,Code 2 Transport,03/30/2016 08:23:58 PM,1900 Block of 32ND AVE,San Francisco,94116,B08,18,7533,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7508300233373, -122.490135504861)",160903378-AM10 +113360408,E38,11111417,Medical Incident,12/02/2011,12/02/2011,12/02/2011 07:49:34 PM,12/02/2011 07:51:00 PM,12/02/2011 07:51:17 PM,12/02/2011 07:52:37 PM,12/02/2011 07:53:56 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 08:17:11 PM,2100 Block of BUSH ST,SF,94115,B04,38,3512,3,3,3,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7870349820474, -122.432911990737)",113360408-E38 +140080107,E38,14002756,Medical Incident,01/08/2014,01/08/2014,01/08/2014 08:51:52 AM,01/08/2014 08:53:31 AM,01/08/2014 08:53:37 AM,01/08/2014 08:55:21 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/08/2014 08:58:17 AM,1600 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,5,Japantown,"(37.78676442656, -122.427490271072)",140080107-E38 +140460198,E43,14015674,Medical Incident,02/15/2014,02/15/2014,02/15/2014 01:30:58 PM,02/15/2014 01:33:07 PM,02/15/2014 01:47:08 PM,02/15/2014 01:50:10 PM,02/15/2014 01:52:26 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 01:55:25 PM,500 Block of EDINBURGH ST,SF,94112,B09,43,6134,,1,2,true,Non Life-threatening,1,ENGINE,2,9,11,Excelsior,"(37.7204306215676, -122.432536084431)",140460198-E43 +121920275,E01,12063998,Medical Incident,07/10/2012,07/10/2012,07/10/2012 05:23:37 PM,07/10/2012 05:24:15 PM,07/10/2012 05:24:31 PM,07/10/2012 05:25:43 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 05:27:50 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",121920275-E01 +160162423,74,16006489,Medical Incident,01/16/2016,01/16/2016,01/16/2016 04:27:30 PM,01/16/2016 04:27:30 PM,01/16/2016 04:28:04 PM,01/16/2016 04:28:12 PM,01/16/2016 04:39:33 PM,01/16/2016 04:55:30 PM,01/16/2016 05:01:54 PM,Code 2 Transport,01/16/2016 05:33:30 PM,HAIGHT ST/CLAYTON ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",160162423-74 +112920177,E14,11096884,Medical Incident,10/19/2011,10/19/2011,10/19/2011 12:46:55 PM,10/19/2011 12:47:44 PM,10/19/2011 12:47:50 PM,10/19/2011 12:48:52 PM,10/19/2011 12:54:36 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/19/2011 12:55:39 PM,GEARY BL/10TH AV,SF,94118,B07,31,7141,3,2,2,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.780822030508, -122.468563870264)",112920177-E14 +112970139,RC1,11098473,Medical Incident,10/24/2011,10/24/2011,10/24/2011 10:22:58 AM,10/24/2011 10:25:05 AM,10/24/2011 10:25:53 AM,04/25/2016 02:02:00 PM,10/24/2011 10:29:06 AM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 10:55:54 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,true,,1,RESCUE CAPTAIN,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",112970139-RC1 +122780287,E29,12091996,Medical Incident,10/04/2012,10/04/2012,10/04/2012 05:44:16 PM,10/04/2012 05:45:10 PM,10/04/2012 05:45:36 PM,10/04/2012 05:47:04 PM,10/04/2012 05:47:57 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/04/2012 05:54:23 PM,0 Block of CONNECTICUT ST,SF,94107,B03,29,2425,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,10,Mission Bay,"(37.7657165510162, -122.397869370472)",122780287-E29 +121710005,E43,12056605,Medical Incident,06/19/2012,06/18/2012,06/19/2012 12:07:24 AM,06/19/2012 12:07:24 AM,06/19/2012 12:07:44 AM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/19/2012 12:11:09 AM,4700 Block of MISSION ST,SF,94112,B09,43,6121,2,3,3,false,Potentially Life-Threatening,1,ENGINE,6,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",121710005-E43 +160612763,KM04,16024425,Medical Incident,03/01/2016,03/01/2016,03/01/2016 06:09:55 PM,03/01/2016 06:10:30 PM,03/01/2016 06:10:50 PM,03/01/2016 06:13:07 PM,03/01/2016 06:19:00 PM,03/01/2016 06:37:54 PM,03/01/2016 07:00:27 PM,Code 2 Transport,03/01/2016 07:34:58 PM,6TH ST/JESSIE ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",160612763-KM04 +140060068,54,14002035,Medical Incident,01/06/2014,01/05/2014,01/06/2014 06:55:20 AM,01/06/2014 06:56:54 AM,01/06/2014 07:01:01 AM,01/06/2014 07:01:14 AM,01/06/2014 07:22:07 AM,01/06/2014 07:35:28 AM,01/06/2014 07:53:49 AM,Code 2 Transport,01/06/2014 08:25:41 AM,500 Block of BAKER ST,SF,94117,B05,21,4253,2,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7759611503232, -122.441462517439)",140060068-54 +160823765,93,16032750,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:22:30 PM,03/22/2016 09:25:16 PM,03/22/2016 09:25:25 PM,03/22/2016 09:25:35 PM,03/22/2016 09:40:17 PM,03/22/2016 10:02:51 PM,03/22/2016 10:40:34 PM,Code 2 Transport,03/22/2016 10:53:05 PM,700 Block of BAKER ST,San Francisco,94115,B05,21,4254,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7778277077869, -122.441840240704)",160823765-93 +133630202,81,13123323,Medical Incident,12/29/2013,12/29/2013,12/29/2013 03:01:45 PM,12/29/2013 03:03:09 PM,12/29/2013 03:06:11 PM,12/29/2013 03:06:31 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,No Merit,12/29/2013 03:14:54 PM,500 Block of WEBSTER ST,SF,94102,B02,5,3522,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7753529596691, -122.429344544489)",133630202-81 +102820294,57,10089773,Medical Incident,10/09/2010,10/09/2010,10/09/2010 04:16:48 PM,10/09/2010 04:17:20 PM,10/09/2010 04:17:43 PM,10/09/2010 04:18:49 PM,10/09/2010 04:22:20 PM,10/09/2010 04:46:50 PM,10/09/2010 05:01:37 PM,Code 2 Transport,10/09/2010 05:34:34 PM,4TH ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",102820294-57 +120540303,E44,12017921,Structure Fire,02/23/2012,02/23/2012,02/23/2012 06:03:10 PM,02/23/2012 06:03:10 PM,02/23/2012 06:03:48 PM,02/23/2012 06:04:58 PM,02/23/2012 06:06:31 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 06:07:01 PM,SAN BRUNO AV/WAYLAND ST,SF,94134,B10,42,6333,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.7264334548196, -122.403102308557)",120540303-E44 +110110292,E43,11003770,Medical Incident,01/11/2011,01/11/2011,01/11/2011 07:56:29 PM,01/11/2011 07:57:00 PM,01/11/2011 07:58:48 PM,04/25/2016 02:06:38 PM,01/11/2011 08:00:05 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/11/2011 08:19:44 PM,300 Block of NAPLES ST,SF,94112,B09,43,6141,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7232047251311, -122.429490459371)",110110292-E43 +103170302,78,10101707,Medical Incident,11/13/2010,11/13/2010,11/13/2010 07:20:39 PM,11/13/2010 07:21:29 PM,11/13/2010 07:22:06 PM,11/13/2010 07:22:23 PM,11/13/2010 07:38:13 PM,11/13/2010 07:45:47 PM,11/13/2010 07:59:03 PM,Code 2 Transport,11/13/2010 08:28:39 PM,700 Block of 4TH ST,SF,94107,B03,8,2224,3,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",103170302-78 +140070282,E01,14002572,Medical Incident,01/07/2014,01/07/2014,01/07/2014 06:04:20 PM,01/07/2014 06:06:30 PM,01/07/2014 06:07:22 PM,01/07/2014 06:08:29 PM,01/07/2014 06:10:10 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 06:34:39 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",140070282-E01 +120750179,E07,12024902,Medical Incident,03/15/2012,03/15/2012,03/15/2012 12:34:27 PM,03/15/2012 12:38:17 PM,03/15/2012 12:38:45 PM,03/15/2012 12:40:12 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 12:48:55 PM,2800 Block of 23RD ST,SF,94110,B06,7,5476,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7544804202345, -122.408803266483)",120750179-E07 +160840607,52,16033268,Medical Incident,03/24/2016,03/23/2016,03/24/2016 07:28:01 AM,03/24/2016 07:28:01 AM,03/24/2016 07:28:14 AM,03/24/2016 07:28:22 AM,03/24/2016 07:31:41 AM,03/24/2016 07:52:02 AM,03/24/2016 08:23:28 AM,Code 2 Transport,03/24/2016 08:33:08 AM,200 Block of OAK ST,San Francisco,94102,B02,36,3266,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748685141021, -122.4233563121)",160840607-52 +111250085,E03,11041285,Outside Fire,05/05/2011,05/05/2011,05/05/2011 08:40:12 AM,05/05/2011 08:41:20 AM,05/05/2011 08:41:43 AM,04/25/2016 02:04:46 PM,05/05/2011 08:48:10 AM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Unable to Locate,05/05/2011 08:50:10 AM,OFARRELL ST/POWELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",111250085-E03 +120130071,KM15,12004349,Medical Incident,01/13/2012,01/12/2012,01/13/2012 07:44:20 AM,01/13/2012 07:45:28 AM,01/13/2012 07:45:40 AM,01/13/2012 07:46:30 AM,01/13/2012 07:49:51 AM,01/13/2012 08:05:43 AM,01/13/2012 08:19:51 AM,Code 2 Transport,01/13/2012 08:51:45 AM,1400 Block of STEVENSON ST,SF,94103,B02,36,5215,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.768768454666, -122.421348341172)",120130071-KM15 +140970250,65,14032716,Medical Incident,04/07/2014,04/07/2014,04/07/2014 02:14:02 PM,04/07/2014 02:15:05 PM,04/07/2014 02:39:30 PM,04/07/2014 02:39:30 PM,04/07/2014 02:39:30 PM,04/07/2014 02:43:28 PM,04/07/2014 03:07:42 PM,Code 2 Transport,04/07/2014 03:50:15 PM,1100 Block of MARKET ST,,94102,B02,1,2309,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",140970250-65 +140010077,E41,14000061,Medical Incident,01/01/2014,12/31/2013,01/01/2014 12:56:50 AM,01/01/2014 12:58:48 AM,01/01/2014 12:59:04 AM,01/01/2014 12:59:26 AM,01/01/2014 01:00:31 AM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 01:10:31 AM,1700 Block of JACKSON ST,SF,94109,B04,41,3153,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7937762800279, -122.423860535824)",140010077-E41 +122300337,B04,12076355,Gas Leak (Natural and LP Gases),08/17/2012,08/17/2012,08/17/2012 07:32:13 PM,08/17/2012 07:34:12 PM,08/17/2012 07:34:20 PM,08/17/2012 07:35:17 PM,08/17/2012 07:38:12 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 07:43:29 PM,800 Block of HYDE ST,SF,94109,B04,3,1557,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.7886352751239, -122.416990342804)",122300337-B04 +130100064,E03,13003333,Medical Incident,01/10/2013,01/09/2013,01/10/2013 07:24:42 AM,01/10/2013 07:26:32 AM,01/10/2013 07:26:52 AM,01/10/2013 07:27:41 AM,01/10/2013 07:30:33 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/10/2013 07:52:19 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",130100064-E03 +113270023,E17,11108438,Medical Incident,11/23/2011,11/22/2011,11/23/2011 02:32:52 AM,11/23/2011 02:34:27 AM,11/23/2011 02:34:57 AM,11/23/2011 02:37:08 AM,11/23/2011 02:38:44 AM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 02:47:22 AM,100 Block of KISKA RD,SF,94124,B10,17,6625,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",113270023-E17 +122270195,AM06,12075267,Traffic Collision,08/14/2012,08/14/2012,08/14/2012 03:18:33 PM,08/14/2012 03:18:33 PM,08/14/2012 03:18:43 PM,08/14/2012 03:19:18 PM,08/14/2012 03:26:01 PM,08/14/2012 03:38:17 PM,08/14/2012 03:47:51 PM,Code 2 Transport,08/14/2012 04:35:14 PM,SAN JOSE AV/30TH ST,SF,94110,B06,32,5575,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7422945337206, -122.42328556238)",122270195-AM06 +113020362,RC1,11100350,Medical Incident,10/29/2011,10/29/2011,10/29/2011 10:02:22 PM,10/29/2011 10:03:56 PM,10/29/2011 10:04:11 PM,04/25/2016 02:01:54 PM,10/29/2011 10:08:51 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/29/2011 10:13:56 PM,0 Block of CLAY ST,SF,94111,B01,13,1133,3,3,3,true,,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.795488462612, -122.396159020859)",113020362-RC1 +160020438,KM07,16000616,Medical Incident,01/02/2016,01/01/2016,01/02/2016 04:27:39 AM,01/02/2016 04:30:00 AM,01/02/2016 04:30:50 AM,01/02/2016 04:31:42 AM,01/02/2016 04:37:11 AM,01/02/2016 04:50:50 AM,01/02/2016 05:06:18 AM,Code 2 Transport,01/02/2016 05:34:58 AM,1200 Block of HAIGHT ST,San Francisco,94117,B05,21,4353,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",160020438-KM07 +132550058,RC1,13086086,Citizen Assist / Service Call,09/12/2013,09/11/2013,09/12/2013 07:38:11 AM,09/12/2013 07:39:30 AM,09/12/2013 07:42:07 AM,09/12/2013 07:42:55 AM,09/12/2013 07:59:03 AM,04/25/2016 01:50:50 PM,09/12/2013 08:30:28 AM,Other,09/12/2013 09:02:53 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Alarm,1,RESCUE CAPTAIN,3,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132550058-RC1 +103180330,T13,10102047,Structure Fire,11/14/2010,11/14/2010,11/14/2010 07:12:22 PM,11/14/2010 07:12:22 PM,11/14/2010 07:12:30 PM,11/14/2010 07:14:00 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/14/2010 07:15:16 PM,KEARNY ST/SACRAMENTO ST,SF,94104,B01,13,1244,3,3,3,true,,1,TRUCK,2,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",103180330-T13 +160413827,63,16016655,Medical Incident,02/10/2016,02/10/2016,02/10/2016 10:01:14 PM,02/10/2016 10:01:33 PM,02/10/2016 10:02:31 PM,02/10/2016 10:02:55 PM,02/10/2016 10:22:06 PM,02/10/2016 10:22:11 PM,02/10/2016 10:52:29 PM,Code 2 Transport,02/10/2016 11:13:31 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Potrero Hill,"(37.7572895904578, -122.406870402082)",160413827-63 +110240168,64,11007855,Medical Incident,01/24/2011,01/24/2011,01/24/2011 11:41:59 AM,01/24/2011 11:45:07 AM,01/24/2011 11:45:44 AM,01/24/2011 11:46:11 AM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/24/2011 11:50:45 AM,100 Block of VICTORIA ST,SF,94132,B09,33,8416,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7136151594856, -122.465362817213)",110240168-64 +110930057,RC1,11030769,Medical Incident,04/03/2011,04/02/2011,04/03/2011 03:33:27 AM,04/03/2011 03:34:25 AM,04/03/2011 03:34:35 AM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 03:57:42 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",110930057-RC1 +160291986,AM08,16011469,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:10:25 PM,01/29/2016 02:11:43 PM,01/29/2016 02:14:13 PM,01/29/2016 02:14:52 PM,01/29/2016 02:19:54 PM,01/29/2016 02:38:17 PM,01/29/2016 02:49:52 PM,Code 2 Transport,01/29/2016 03:13:47 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160291986-AM08 +110950173,E26,11031532,Medical Incident,04/05/2011,04/05/2011,04/05/2011 01:21:51 PM,04/05/2011 01:22:29 PM,04/05/2011 01:24:41 PM,04/05/2011 01:26:25 PM,04/05/2011 01:30:45 PM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,Other,04/05/2011 01:44:18 PM,600 Block of DOUGLASS ST,SF,94114,B06,24,551,2,2,2,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",110950173-E26 +113370333,RC1,11111789,Medical Incident,12/03/2011,12/03/2011,12/03/2011 09:02:53 PM,12/03/2011 09:04:24 PM,12/03/2011 09:04:47 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/03/2011 09:15:13 PM,CYRIL MAGNIN ST/EDDY ST,SF,94102,B03,1,1453,2,2,2,true,,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",113370333-RC1 +160111474,89,16004376,Medical Incident,01/11/2016,01/11/2016,01/11/2016 12:08:57 PM,01/11/2016 12:08:57 PM,01/11/2016 12:09:45 PM,01/11/2016 12:09:45 PM,01/11/2016 12:20:21 PM,01/11/2016 12:44:44 PM,01/11/2016 12:58:58 PM,Code 2 Transport,01/11/2016 02:09:32 PM,900 Block of ASHBURY ST,San Francisco,94117,B05,12,5164,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7646916029501, -122.445790251499)",160111474-89 +160731137,78,16028951,Medical Incident,03/13/2016,03/13/2016,03/13/2016 12:12:33 PM,03/13/2016 12:13:35 PM,03/13/2016 12:15:28 PM,03/13/2016 12:15:35 PM,03/13/2016 12:34:31 PM,03/13/2016 12:50:19 PM,03/13/2016 01:01:43 PM,Code 2 Transport,03/13/2016 01:49:55 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160731137-78 +123060313,E13,12101762,Structure Fire,11/01/2012,11/01/2012,11/01/2012 07:49:44 PM,11/01/2012 07:49:44 PM,11/01/2012 07:49:52 PM,11/01/2012 07:50:26 PM,11/01/2012 07:52:32 PM,04/25/2016 01:56:00 PM,04/25/2016 01:56:00 PM,Other,11/01/2012 07:53:08 PM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7895620432155, -122.402161869829)",123060313-E13 +110650292,RC2,11021548,Medical Incident,03/06/2011,03/06/2011,03/06/2011 05:34:53 PM,03/06/2011 05:35:39 PM,03/06/2011 05:36:02 PM,03/06/2011 05:36:58 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,Other,03/06/2011 05:43:55 PM,2100 Block of 42ND AVE,SF,94116,B08,23,7645,E,3,3,true,,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7466275952464, -122.500592785414)",110650292-RC2 +103020217,E36,10096515,Structure Fire,10/29/2010,10/29/2010,10/29/2010 03:35:15 PM,10/29/2010 03:35:15 PM,10/29/2010 03:35:30 PM,10/29/2010 03:36:44 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/29/2010 03:37:28 PM,8TH ST/MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",103020217-E36 +160160650,53,16006317,Medical Incident,01/16/2016,01/15/2016,01/16/2016 06:12:27 AM,01/16/2016 06:15:58 AM,01/16/2016 06:16:50 AM,01/16/2016 06:17:02 AM,01/16/2016 06:31:47 AM,01/16/2016 06:44:15 AM,01/16/2016 06:57:01 AM,Code 2 Transport,01/16/2016 07:20:19 AM,300 Block of MISSION ST,San Francisco,94105,B03,35,2126,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",160160650-53 +160592009,61,16023563,Medical Incident,02/28/2016,02/28/2016,02/28/2016 03:12:50 PM,02/28/2016 03:14:13 PM,02/28/2016 03:15:26 PM,02/28/2016 03:15:45 PM,02/28/2016 03:18:51 PM,02/28/2016 03:28:14 PM,02/28/2016 03:34:33 PM,Code 2 Transport,02/28/2016 04:46:19 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160592009-61 +160622363,88,16024743,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:50:45 PM,03/02/2016 02:53:24 PM,03/02/2016 02:53:57 PM,03/02/2016 02:54:05 PM,03/02/2016 02:56:18 PM,03/02/2016 03:20:58 PM,03/02/2016 03:31:48 PM,Code 2 Transport,03/02/2016 03:56:03 PM,2200 Block of MARKET ST,San Francisco,94114,B02,6,5231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",160622363-88 +160022960,60,16000876,Medical Incident,01/02/2016,01/02/2016,01/02/2016 07:31:21 PM,01/02/2016 07:31:21 PM,01/02/2016 07:32:15 PM,01/02/2016 07:32:41 PM,01/02/2016 07:57:48 PM,01/02/2016 08:09:19 PM,01/02/2016 08:19:48 PM,Code 2 Transport,01/02/2016 09:08:17 PM,BUSH ST/CHATHAM PL,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7904696068223, -122.406330947745)",160022960-60 +110050338,T03,11001768,Alarms,01/05/2011,01/05/2011,01/05/2011 07:23:27 PM,01/05/2011 07:25:08 PM,01/05/2011 07:25:23 PM,01/05/2011 07:27:02 PM,01/05/2011 07:28:12 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/05/2011 07:32:57 PM,1300 Block of BUSH ST,SF,94109,B04,3,1636,3,3,3,false,,1,TRUCK,2,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",110050338-T03 +123510296,E28,12117495,Structure Fire,12/16/2012,12/16/2012,12/16/2012 06:18:50 PM,12/16/2012 06:18:50 PM,12/16/2012 06:19:40 PM,12/16/2012 06:20:31 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/16/2012 06:23:46 PM,POLK ST/BEACH ST,SF,94109,B01,28,3135,3,3,3,false,Alarm,1,ENGINE,2,1,2,Russian Hill,"(37.8062218934452, -122.423844681839)",123510296-E28 +130770025,E12,13025594,Medical Incident,03/18/2013,03/17/2013,03/18/2013 03:18:46 AM,03/18/2013 03:21:25 AM,03/18/2013 03:21:45 AM,03/18/2013 03:24:21 AM,03/18/2013 03:25:45 AM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 03:38:37 AM,700 Block of COLE ST,SF,94117,B05,12,5144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7671882889192, -122.4503083982)",130770025-E12 +130280127,E33,13009555,Medical Incident,01/28/2013,01/28/2013,01/28/2013 10:11:01 AM,01/28/2013 10:11:34 AM,01/28/2013 10:12:38 AM,01/28/2013 10:14:20 AM,01/28/2013 10:20:35 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 10:43:21 AM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",130280127-E33 +113020369,79,11100357,Medical Incident,10/29/2011,10/29/2011,10/29/2011 10:22:53 PM,10/29/2011 10:24:39 PM,10/29/2011 10:24:51 PM,10/29/2011 10:25:09 PM,10/29/2011 10:30:25 PM,10/29/2011 10:40:55 PM,10/29/2011 10:55:33 PM,Code 2 Transport,10/29/2011 11:16:19 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",113020369-79 +122940295,E02,12097606,Medical Incident,10/20/2012,10/20/2012,10/20/2012 07:24:56 PM,10/20/2012 07:25:27 PM,10/20/2012 07:26:32 PM,10/20/2012 07:28:12 PM,10/20/2012 07:29:02 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/21/2012 12:17:56 AM,1500 Block of POWELL ST,SF,94133,B01,2,1352,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7988290749187, -122.410618562757)",122940295-E02 +133010116,RS2,13102235,Electrical Hazard,10/28/2013,10/28/2013,10/28/2013 09:51:24 AM,10/28/2013 09:52:53 AM,10/28/2013 09:54:49 AM,10/28/2013 09:58:01 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 10:01:45 AM,800 Block of URBANO DR,SF,94127,B09,15,8443,3,3,3,false,Alarm,1,RESCUE SQUAD,6,9,7,West of Twin Peaks,"(37.723517646765, -122.463421633503)",133010116-RS2 +130570292,81,13019264,Medical Incident,02/26/2013,02/26/2013,02/26/2013 08:33:01 PM,02/26/2013 08:33:51 PM,02/26/2013 08:34:12 PM,02/26/2013 08:40:23 PM,02/26/2013 08:44:38 PM,02/26/2013 09:02:41 PM,02/26/2013 09:22:42 PM,Code 2 Transport,02/26/2013 10:08:52 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7741100998058, -122.440947780365)",130570292-81 +131170131,E09,13039312,Traffic Collision,04/27/2013,04/27/2013,04/27/2013 10:50:41 AM,04/27/2013 10:54:13 AM,04/27/2013 10:54:51 AM,04/27/2013 10:55:33 AM,04/27/2013 10:58:48 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/27/2013 11:17:20 AM,1900 Block of JERROLD AVE,SF,94124,B10,9,6416,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7426888178901, -122.395861469236)",131170131-E09 +111120277,E14,11037077,Medical Incident,04/22/2011,04/22/2011,04/22/2011 04:54:38 PM,04/22/2011 04:54:57 PM,04/22/2011 04:55:13 PM,04/22/2011 04:56:29 PM,04/22/2011 04:59:11 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 05:13:03 PM,7500 Block of GEARY BLVD,SF,94121,B07,34,7264,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",111120277-E14 +140320206,66,14010858,Medical Incident,02/01/2014,02/01/2014,02/01/2014 02:21:01 PM,02/01/2014 02:21:27 PM,02/01/2014 02:21:46 PM,02/01/2014 02:22:26 PM,02/01/2014 02:27:33 PM,02/01/2014 02:49:07 PM,02/01/2014 03:07:59 PM,Code 2 Transport,02/01/2014 03:37:04 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",140320206-66 +102840255,E32,10090478,Structure Fire,10/11/2010,10/11/2010,10/11/2010 04:37:47 PM,10/11/2010 04:37:48 PM,10/11/2010 04:38:13 PM,10/11/2010 04:39:00 PM,10/11/2010 04:41:11 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Other,10/11/2010 04:51:45 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",102840255-E32 +122620394,T09,12086710,Alarms,09/18/2012,09/18/2012,09/18/2012 11:35:44 PM,09/18/2012 11:37:26 PM,09/18/2012 11:37:33 PM,09/18/2012 11:39:24 PM,09/18/2012 11:42:37 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/18/2012 11:46:47 PM,300 Block of MONTCALM ST,SF,94110,B06,9,5666,3,3,3,false,Alarm,1,TRUCK,1,6,9,Bernal Heights,"(37.7455631181386, -122.409730514967)",122620394-T09 +112540155,KM12,11083799,Medical Incident,09/11/2011,09/11/2011,09/11/2011 12:31:56 PM,09/11/2011 12:32:30 PM,09/11/2011 12:32:39 PM,09/11/2011 12:33:16 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Other,09/11/2011 12:35:25 PM,22ND AV/LAWTON ST,SF,94122,B08,22,7427,3,3,3,false,,1,PRIVATE,4,8,4,Sunset/Parkside,"(37.7578254814546, -122.479945065812)",112540155-KM12 +160061094,KM13,16002335,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:58:04 AM,01/06/2016 09:59:55 AM,01/06/2016 10:03:54 AM,01/06/2016 10:04:17 AM,01/06/2016 10:09:24 AM,01/06/2016 10:19:34 AM,01/06/2016 10:50:26 AM,Code 2 Transport,01/06/2016 11:23:27 AM,300 Block of SOUTH VAN NESS AVE,San Francisco,94103,B02,7,5225,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7676009992449, -122.417792788399)",160061094-KM13 +121070042,87,12035341,Medical Incident,04/16/2012,04/15/2012,04/16/2012 03:42:24 AM,04/16/2012 03:43:52 AM,04/16/2012 03:45:49 AM,04/16/2012 03:46:25 AM,04/16/2012 03:55:33 AM,04/16/2012 04:11:45 AM,04/16/2012 04:20:43 AM,Code 2 Transport,04/16/2012 05:00:40 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",121070042-87 +160622630,86,16024765,Medical Incident,03/02/2016,03/02/2016,03/02/2016 03:57:29 PM,03/02/2016 03:57:29 PM,03/02/2016 04:00:46 PM,03/02/2016 04:01:00 PM,03/02/2016 04:11:29 PM,03/02/2016 04:38:17 PM,03/02/2016 04:46:18 PM,Code 2 Transport,03/02/2016 05:31:15 PM,MARKET ST/15TH ST,San Francisco,94114,B02,6,5213,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7660137310169, -122.430824395878)",160622630-86 +111200064,E11,11039488,Outside Fire,04/30/2011,04/29/2011,04/30/2011 04:22:53 AM,04/30/2011 04:24:20 AM,04/30/2011 04:24:33 AM,04/30/2011 04:25:49 AM,04/30/2011 04:27:16 AM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/30/2011 04:31:37 AM,26TH ST/VALENCIA ST,SF,94110,B06,11,5612,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7489065309397, -122.420353712148)",111200064-E11 +123620132,T10,12121112,Citizen Assist / Service Call,12/27/2012,12/27/2012,12/27/2012 11:26:54 AM,12/27/2012 11:27:43 AM,12/27/2012 11:27:53 AM,12/27/2012 11:29:32 AM,12/27/2012 11:30:49 AM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Fire,12/27/2012 11:44:58 AM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,false,Alarm,1,TRUCK,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",123620132-T10 +121360364,E26,12045363,Structure Fire,05/15/2012,05/15/2012,05/15/2012 11:53:05 PM,05/15/2012 11:53:06 PM,05/15/2012 11:53:27 PM,05/15/2012 11:55:03 PM,05/15/2012 11:57:16 PM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,Other,05/15/2012 11:57:47 PM,ARLINGTON ST/MIGUEL ST,SF,94110,B06,26,8133,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7366849508836, -122.427155509154)",121360364-E26 +110280053,92,11009125,Medical Incident,01/28/2011,01/27/2011,01/28/2011 07:11:28 AM,01/28/2011 07:12:43 AM,01/28/2011 07:13:03 AM,01/28/2011 07:13:24 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 07:16:43 AM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,E,E,3,true,,1,MEDIC,4,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",110280053-92 +160172772,75,16006955,Medical Incident,01/17/2016,01/17/2016,01/17/2016 06:52:20 PM,01/17/2016 06:52:20 PM,01/17/2016 06:55:56 PM,01/17/2016 06:56:11 PM,01/17/2016 07:01:01 PM,01/17/2016 07:19:27 PM,01/17/2016 07:26:58 PM,Code 2 Transport,01/17/2016 08:02:30 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7649777859582, -122.466445638121)",160172772-75 +122960038,85,12098026,Traffic Collision,10/22/2012,10/21/2012,10/22/2012 03:39:06 AM,10/22/2012 03:40:49 AM,10/22/2012 03:41:54 AM,10/22/2012 03:42:54 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 03:57:20 AM,900 Block of 19TH ST,SF,94107,B10,25,2612,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7614987364492, -122.392203379395)",122960038-85 +122160281,KM02,12071756,Medical Incident,08/03/2012,08/03/2012,08/03/2012 05:03:02 PM,08/03/2012 05:07:17 PM,08/03/2012 05:09:32 PM,08/03/2012 05:10:03 PM,08/03/2012 05:22:50 PM,08/03/2012 05:42:21 PM,08/03/2012 05:49:42 PM,Code 2 Transport,08/03/2012 06:18:25 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",122160281-KM02 +160211583,84,16008362,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:04:09 PM,01/21/2016 12:06:28 PM,01/21/2016 12:07:07 PM,01/21/2016 12:07:31 PM,01/21/2016 12:24:36 PM,01/21/2016 12:41:38 PM,01/21/2016 01:01:18 PM,Code 2 Transport,01/21/2016 01:49:08 PM,300 Block of HEAD ST,San Francisco,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.713614800777, -122.464324485172)",160211583-84 +120420295,RS1,12014127,Medical Incident,02/11/2012,02/11/2012,02/11/2012 05:39:29 PM,02/11/2012 05:39:40 PM,02/11/2012 05:40:41 PM,02/11/2012 05:41:51 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 05:42:56 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",120420295-RS1 +111420137,KM01,11047142,Medical Incident,05/22/2011,05/22/2011,05/22/2011 09:49:15 AM,05/22/2011 09:50:41 AM,05/22/2011 09:52:26 AM,05/22/2011 09:53:03 AM,05/22/2011 09:58:09 AM,05/22/2011 10:10:01 AM,05/22/2011 10:17:51 AM,Code 2 Transport,05/22/2011 10:48:41 AM,3200 Block of 21ST ST,SF,94110,B06,7,5456,2,2,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7570664613489, -122.419300301039)",111420137-KM01 +123240237,58,12107769,Medical Incident,11/19/2012,11/19/2012,11/19/2012 02:16:26 PM,11/19/2012 02:16:43 PM,11/19/2012 02:17:15 PM,11/19/2012 02:17:29 PM,11/19/2012 02:24:57 PM,11/19/2012 02:38:06 PM,11/19/2012 02:43:45 PM,Code 2 Transport,11/19/2012 03:36:20 PM,2700 Block of 16TH ST,SF,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7653263612606, -122.414201573327)",123240237-58 +160640226,57,16025336,Medical Incident,03/04/2016,03/03/2016,03/04/2016 02:08:40 AM,03/04/2016 02:08:40 AM,03/04/2016 02:09:02 AM,03/04/2016 02:09:48 AM,03/04/2016 02:15:34 AM,03/04/2016 02:43:54 AM,03/04/2016 02:58:38 AM,Code 2 Transport,03/04/2016 03:49:28 AM,LYON ST/CALIFORNIA ST,San Francisco,94115,B04,10,4336,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Presidio Heights,"(37.7874381647128, -122.44540219702)",160640226-57 +140230256,E06,14007925,Medical Incident,01/23/2014,01/23/2014,01/23/2014 05:48:46 PM,01/23/2014 05:50:09 PM,01/23/2014 05:51:10 PM,01/23/2014 05:53:31 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 06:02:00 PM,CHURCH ST/MARKET ST,SF,94114,B02,6,5213,,2,2,true,Non Life-threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",140230256-E06 +130480250,94,13016435,Traffic Collision,02/17/2013,02/17/2013,02/17/2013 03:29:35 PM,02/17/2013 03:32:00 PM,02/17/2013 03:32:32 PM,02/17/2013 03:34:54 PM,02/17/2013 03:47:10 PM,02/17/2013 04:01:28 PM,02/17/2013 04:26:57 PM,Code 2 Transport,02/17/2013 04:39:11 PM,LINCOLN BL/ARMISTEAD RD,PR,94129,B99,51,4628,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio,"(37.8047012971434, -122.469994469726)",130480250-94 +160323481,76,16012761,Medical Incident,02/01/2016,02/01/2016,02/01/2016 09:22:12 PM,02/01/2016 09:22:40 PM,02/01/2016 09:23:20 PM,02/01/2016 09:23:28 PM,02/01/2016 09:29:42 PM,02/01/2016 09:46:44 PM,02/01/2016 09:53:22 PM,Code 2 Transport,02/01/2016 10:14:43 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160323481-76 +130490233,B09,13016752,Alarms,02/18/2013,02/18/2013,02/18/2013 03:25:19 PM,02/18/2013 03:26:31 PM,02/18/2013 03:26:51 PM,02/18/2013 03:27:02 PM,02/18/2013 03:29:58 PM,04/25/2016 01:54:13 PM,04/25/2016 01:54:13 PM,Fire,02/18/2013 03:43:06 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,false,Alarm,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",130490233-B09 +160342127,62,16013447,Medical Incident,02/03/2016,02/03/2016,02/03/2016 03:04:54 PM,02/03/2016 03:04:54 PM,02/03/2016 03:04:54 PM,02/03/2016 03:04:54 PM,02/03/2016 03:04:54 PM,02/03/2016 03:32:55 PM,02/03/2016 03:41:32 PM,Code 2 Transport,02/03/2016 04:05:04 PM,400 Block of TURK ST,San Francisco,94102,B99,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",160342127-62 +130910107,E21,13030375,Administrative,04/01/2013,04/01/2013,04/01/2013 09:35:04 AM,04/01/2013 09:35:08 AM,04/01/2013 09:35:20 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Fire,04/01/2013 09:35:46 AM,100 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7671998905043, -122.431083812685)",130910107-E21 +112800204,T13,11092686,Medical Incident,10/07/2011,10/07/2011,10/07/2011 01:05:39 PM,10/07/2011 01:06:43 PM,10/07/2011 01:07:29 PM,10/07/2011 01:08:35 PM,10/07/2011 01:11:40 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 01:30:07 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,E,3,false,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",112800204-T13 +140220201,E29,14007528,Medical Incident,01/22/2014,01/22/2014,01/22/2014 01:43:05 PM,01/22/2014 01:45:38 PM,01/22/2014 01:47:08 PM,01/22/2014 01:48:33 PM,01/22/2014 01:50:07 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/22/2014 01:58:11 PM,300 Block of RHODE ISLAND ST,SF,94103,B03,29,2413,3,3,3,false,Non Life-threatening,1,ENGINE,1,2,10,Mission Bay,"(37.7654237351553, -122.402693174465)",140220201-E29 +113420238,77,11113436,Medical Incident,12/08/2011,12/08/2011,12/08/2011 03:03:09 PM,12/08/2011 03:04:51 PM,12/08/2011 03:05:44 PM,12/08/2011 03:08:23 PM,12/08/2011 03:21:14 PM,12/08/2011 03:43:59 PM,12/08/2011 04:09:31 PM,Code 2 Transport,12/08/2011 04:36:50 PM,3500 Block of MORAGA ST,SF,94122,B08,23,7651,2,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7550826256438, -122.500715154585)",113420238-77 +160662932,68,16026514,Medical Incident,03/06/2016,03/06/2016,03/06/2016 08:20:47 PM,03/06/2016 08:23:39 PM,03/06/2016 08:24:20 PM,03/06/2016 08:24:33 PM,03/06/2016 08:27:30 PM,03/06/2016 08:43:19 PM,03/06/2016 08:58:50 PM,Code 2 Transport,03/06/2016 09:39:44 PM,0 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843467613273, -122.408890252742)",160662932-68 +160031508,KM11,16001179,Medical Incident,01/03/2016,01/03/2016,01/03/2016 12:59:15 PM,01/03/2016 12:59:46 PM,01/03/2016 01:00:07 PM,01/03/2016 01:00:38 PM,01/03/2016 01:05:13 PM,01/03/2016 01:21:53 PM,01/03/2016 01:41:17 PM,Code 2 Transport,01/03/2016 02:15:42 PM,700 Block of BRANNAN ST,San Francisco,94103,B03,8,2276,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7732232142847, -122.402889298062)",160031508-KM11 +123020313,E37,12100277,Other,10/28/2012,10/28/2012,10/28/2012 06:51:55 PM,10/28/2012 06:52:39 PM,10/28/2012 06:53:00 PM,10/28/2012 06:54:39 PM,10/28/2012 06:55:51 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 07:03:58 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",123020313-E37 +140090398,88,14003312,Medical Incident,01/09/2014,01/09/2014,01/09/2014 09:36:03 PM,01/09/2014 09:36:46 PM,01/09/2014 09:38:27 PM,01/09/2014 09:39:06 PM,01/09/2014 09:50:25 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Patient Declined Transport,01/09/2014 10:28:12 PM,1100 Block of OAK ST,SF,94117,B05,21,4245,2,2,2,false,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7729735021369, -122.438244838709)",140090398-88 +131700335,E35,13057855,Traffic Collision,06/19/2013,06/19/2013,06/19/2013 08:17:20 PM,06/19/2013 08:19:39 PM,06/19/2013 08:21:12 PM,06/19/2013 08:22:42 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,CHP,06/19/2013 08:25:43 PM,BRYANT ST/STERLING ST,SF,94107,B03,35,2135,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7836926412873, -122.392840050712)",131700335-E35 +103020196,AP,10096499,Other,10/29/2010,10/29/2010,10/29/2010 02:48:15 PM,10/29/2010 02:48:15 PM,10/29/2010 02:48:15 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Fire,10/29/2010 02:48:48 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",103020196-AP +112990173,54,11099174,Medical Incident,10/26/2011,10/26/2011,10/26/2011 12:11:33 PM,10/26/2011 12:12:06 PM,10/26/2011 12:12:16 PM,10/26/2011 12:13:04 PM,10/26/2011 12:18:03 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 12:20:43 PM,1300 Block of FITZGERALD AVE,SF,94124,B10,17,6614,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7226082792348, -122.394063657718)",112990173-54 +133370349,E03,13114369,Medical Incident,12/03/2013,12/03/2013,12/03/2013 10:02:55 PM,12/03/2013 10:03:34 PM,12/03/2013 10:04:23 PM,12/03/2013 10:04:56 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 10:05:47 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",133370349-E03 +112660302,E51,11087985,Traffic Collision,09/23/2011,09/23/2011,09/23/2011 06:01:21 PM,09/23/2011 06:03:01 PM,09/23/2011 06:04:07 PM,09/23/2011 06:05:42 PM,09/23/2011 06:08:38 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 06:26:36 PM,900 Block of MARINE DR,PR,94129,B99,51,4628,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8089767888005, -122.47460956271)",112660302-E51 +133270195,E33,13111069,Medical Incident,11/23/2013,11/23/2013,11/23/2013 11:43:27 AM,11/23/2013 11:44:12 AM,11/23/2013 11:44:45 AM,11/23/2013 11:44:56 AM,11/23/2013 11:46:53 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 12:04:48 PM,5600 Block of MISSION ST,SF,94112,B09,33,6211,B,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7111379399076, -122.447066438218)",133270195-E33 +110300145,AM16,11009818,Medical Incident,01/30/2011,01/30/2011,01/30/2011 09:55:33 AM,01/30/2011 09:56:19 AM,01/30/2011 09:57:19 AM,01/30/2011 09:58:10 AM,01/30/2011 10:13:54 AM,01/30/2011 10:14:03 AM,01/30/2011 10:26:12 AM,Code 2 Transport,01/30/2011 10:53:13 AM,300 Block of BRODERICK ST,SF,94117,B05,21,4245,3,3,3,false,,1,PRIVATE,2,5,5,Hayes Valley,"(37.7733933056349, -122.43911438549)",110300145-AM16 +160862330,KM09,16034233,Medical Incident,03/26/2016,03/26/2016,03/26/2016 03:46:22 PM,03/26/2016 03:48:15 PM,03/26/2016 03:49:34 PM,03/26/2016 03:51:38 PM,03/26/2016 04:04:41 PM,03/26/2016 04:27:28 PM,03/26/2016 05:12:07 PM,Code 2 Transport,03/26/2016 05:18:13 PM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",160862330-KM09 +132610430,AM18,13088582,Medical Incident,09/18/2013,09/18/2013,09/18/2013 10:27:33 PM,09/18/2013 10:28:23 PM,09/18/2013 10:28:38 PM,09/18/2013 10:29:19 PM,09/18/2013 10:33:42 PM,09/18/2013 11:22:04 PM,09/18/2013 11:30:37 PM,Against Medical Advice,09/19/2013 12:35:08 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",132610430-AM18 +122040356,E16,12067961,Water Rescue,07/22/2012,07/22/2012,07/22/2012 08:19:52 PM,07/22/2012 08:19:52 PM,07/22/2012 08:20:47 PM,07/22/2012 08:23:40 PM,07/22/2012 08:26:29 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/22/2012 10:04:54 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122040356-E16 +132010193,54,13068171,Medical Incident,07/20/2013,07/20/2013,07/20/2013 01:09:49 PM,07/20/2013 01:11:17 PM,07/20/2013 01:11:39 PM,07/20/2013 01:12:04 PM,07/20/2013 01:31:35 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 01:41:31 PM,1300 Block of EVANS AVE,SF,94124,B10,25,6464,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",132010193-54 +160511773,KM05,16020490,Medical Incident,02/20/2016,02/20/2016,02/20/2016 02:00:32 PM,02/20/2016 02:04:24 PM,02/20/2016 02:10:46 PM,02/20/2016 02:10:48 PM,02/20/2016 02:21:02 PM,02/20/2016 02:41:13 PM,02/20/2016 03:11:04 PM,Code 2 Transport,02/20/2016 03:49:33 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7823404680537, -122.40377191669)",160511773-KM05 +102630234,E07,10083253,Alarms,09/20/2010,09/20/2010,09/20/2010 02:54:55 PM,09/20/2010 02:55:28 PM,09/20/2010 02:55:42 PM,04/25/2016 02:08:30 PM,09/20/2010 03:00:19 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Fire,09/20/2010 03:03:34 PM,2200 Block of BRYANT ST,SF,94110,B06,7,5474,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7580257466594, -122.409534922253)",102630234-E07 +122060072,E05,12068400,Medical Incident,07/24/2012,07/23/2012,07/24/2012 07:44:12 AM,07/24/2012 07:44:53 AM,07/24/2012 07:45:21 AM,07/24/2012 07:46:07 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 07:47:47 AM,600 Block of LARKIN ST,SF,94109,B02,3,1643,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",122060072-E05 +131220447,E36,13041240,Medical Incident,05/02/2013,05/02/2013,05/02/2013 09:19:48 PM,05/02/2013 09:21:01 PM,05/02/2013 09:24:03 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 09:25:56 PM,STEVENSON ST/6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,South of Market,"(37.7817543267261, -122.409693263148)",131220447-E36 +113370233,E51,11111696,Medical Incident,12/03/2011,12/03/2011,12/03/2011 03:54:12 PM,12/03/2011 03:57:20 PM,12/03/2011 04:01:13 PM,12/03/2011 04:06:05 PM,12/03/2011 04:08:22 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Patient Declined Transport,12/03/2011 04:20:14 PM,LYON ST/RICHARDSON AV,SF,94123,B04,16,4325,2,2,2,true,,1,ENGINE,1,7,2,Presidio,"(37.8008319125226, -122.447695066076)",113370233-E51 +130580289,E01,13019534,Medical Incident,02/27/2013,02/27/2013,02/27/2013 03:52:26 PM,02/27/2013 03:54:50 PM,02/27/2013 03:55:06 PM,02/27/2013 03:55:34 PM,02/27/2013 03:59:52 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,02/27/2013 04:06:20 PM,MASON ST/ELLIS ST,SF,94102,B03,1,1366,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",130580289-E01 +110970031,T17,11032027,Structure Fire,04/07/2011,04/06/2011,04/07/2011 03:30:05 AM,04/07/2011 03:31:31 AM,04/07/2011 03:32:33 AM,04/07/2011 03:34:26 AM,04/07/2011 03:38:08 AM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/07/2011 03:43:08 AM,1000 Block of LE CONTE AVE,SF,94124,B10,44,6575,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",110970031-T17 +160341132,74,16013320,Medical Incident,02/03/2016,02/03/2016,02/03/2016 10:23:01 AM,02/03/2016 10:25:05 AM,02/03/2016 10:25:17 AM,02/03/2016 10:26:09 AM,02/03/2016 10:27:33 AM,02/03/2016 10:51:24 AM,02/03/2016 10:55:21 AM,Code 2 Transport,02/03/2016 11:45:27 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160341132-74 +121990145,E32,12066091,Structure Fire,07/17/2012,07/17/2012,07/17/2012 10:51:01 AM,07/17/2012 10:51:01 AM,07/17/2012 10:51:12 AM,07/17/2012 10:51:41 AM,07/17/2012 10:54:50 AM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 10:55:08 AM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",121990145-E32 +111510247,B08,11050050,Structure Fire,05/31/2011,05/31/2011,05/31/2011 05:22:37 PM,05/31/2011 05:23:54 PM,05/31/2011 05:24:13 PM,05/31/2011 05:25:55 PM,05/31/2011 05:27:30 PM,04/25/2016 02:04:22 PM,04/25/2016 02:04:22 PM,Other,05/31/2011 05:30:59 PM,2000 Block of 28TH AVE,SF,94116,B08,18,7516,3,3,3,false,,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7491491409489, -122.485861250588)",111510247-B08 +160011641,65,16000291,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:31:55 AM,01/01/2016 10:32:26 AM,01/01/2016 10:33:40 AM,01/01/2016 10:33:49 AM,01/01/2016 10:43:20 AM,01/01/2016 10:58:36 AM,01/01/2016 11:20:38 AM,Code 2 Transport,01/01/2016 11:45:22 AM,25TH ST/3RD ST,San Francisco,94107,B10,25,2611,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7528356119566, -122.38775628178)",160011641-65 +130040159,E10,13001329,Traffic Collision,01/04/2013,01/04/2013,01/04/2013 10:56:36 AM,01/04/2013 10:57:32 AM,01/04/2013 10:57:55 AM,01/04/2013 10:59:13 AM,01/04/2013 11:01:53 AM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 11:05:26 AM,BALBOA ST/ARGUELLO BL,SF,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.777253917962, -122.458580630046)",130040159-E10 +123060350,E17,12101798,Medical Incident,11/01/2012,11/01/2012,11/01/2012 09:08:12 PM,11/01/2012 09:09:01 PM,11/01/2012 09:09:27 PM,11/01/2012 09:10:26 PM,11/01/2012 09:13:26 PM,04/25/2016 01:56:00 PM,04/25/2016 01:56:00 PM,Other,11/01/2012 09:27:09 PM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",123060350-E17 +160270635,79,16010567,Medical Incident,01/27/2016,01/26/2016,01/27/2016 07:49:30 AM,01/27/2016 07:50:43 AM,01/27/2016 07:50:59 AM,01/27/2016 07:51:26 AM,01/27/2016 08:04:16 AM,01/27/2016 08:14:00 AM,01/27/2016 08:39:29 AM,Code 2 Transport,01/27/2016 09:50:34 AM,MASON ST/OFARRELL ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862026638911, -122.409683072135)",160270635-79 +120320282,T19,12010662,Alarms,02/01/2012,02/01/2012,02/01/2012 06:04:16 PM,02/01/2012 06:05:36 PM,02/01/2012 06:05:43 PM,02/01/2012 06:07:14 PM,02/01/2012 06:11:50 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 06:26:21 PM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,TRUCK,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",120320282-T19 +160801637,61,16031798,Medical Incident,03/20/2016,03/20/2016,03/20/2016 12:42:18 PM,03/20/2016 12:44:51 PM,03/20/2016 12:45:56 PM,03/20/2016 12:46:18 PM,03/20/2016 12:56:50 PM,03/20/2016 01:10:22 PM,03/20/2016 01:23:25 PM,Code 2 Transport,03/20/2016 02:02:28 PM,MISSION ST/14TH ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",160801637-61 +133330317,E21,13113078,Medical Incident,11/29/2013,11/29/2013,11/29/2013 11:11:48 PM,11/29/2013 11:12:30 PM,11/29/2013 11:13:02 PM,11/29/2013 11:13:48 PM,11/29/2013 11:14:54 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/29/2013 11:27:51 PM,700 Block of BAKER ST,SF,94115,B05,21,4254,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7778451297525, -122.441703588406)",133330317-E21 +123000243,E05,12099490,Medical Incident,10/26/2012,10/26/2012,10/26/2012 04:21:59 PM,10/26/2012 04:23:15 PM,10/26/2012 04:23:37 PM,10/26/2012 04:24:33 PM,10/26/2012 04:26:35 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/26/2012 04:42:53 PM,2000 Block of OFARRELL ST,SF,94115,B04,5,413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.782664870999, -122.438053867276)",123000243-E05 +121690159,E29,12056094,Administrative,06/17/2012,06/17/2012,06/17/2012 12:05:09 PM,06/17/2012 12:05:15 PM,06/17/2012 12:05:38 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/17/2012 12:06:42 PM,200 Block of VERMONT ST,SF,94103,B02,29,2422,3,3,3,true,,1,ENGINE,1,2,10,Mission Bay,"(37.7666119536778, -122.404617787649)",121690159-E29 +160474037,85,16019164,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:16:39 PM,02/16/2016 11:17:46 PM,02/16/2016 11:19:33 PM,02/16/2016 11:19:53 PM,02/16/2016 11:27:44 PM,02/16/2016 11:47:29 PM,02/17/2016 12:02:46 AM,Code 2 Transport,02/17/2016 12:35:55 AM,1200 Block of 25TH AVE,San Francisco,94122,B08,22,7452,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7642224558921, -122.483550413228)",160474037-85 +111360127,59,11045236,Medical Incident,05/16/2011,05/16/2011,05/16/2011 10:46:14 AM,05/16/2011 10:46:57 AM,05/16/2011 10:49:01 AM,05/16/2011 10:49:14 AM,05/16/2011 11:00:01 AM,05/16/2011 11:07:41 AM,05/16/2011 11:31:09 AM,Code 2 Transport,05/16/2011 11:59:50 AM,KING ST/4TH ST,SF,94107,B03,8,2236,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",111360127-59 +120080184,AM06,12002770,Medical Incident,01/08/2012,01/08/2012,01/08/2012 12:26:58 PM,01/08/2012 12:28:08 PM,01/08/2012 12:31:22 PM,01/08/2012 12:32:13 PM,01/08/2012 12:41:38 PM,01/08/2012 12:55:05 PM,01/08/2012 01:04:43 PM,Code 2 Transport,01/08/2012 01:41:20 PM,200 Block of ALMA ST,SF,94117,B05,12,5162,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7629834619379, -122.451564578029)",120080184-AM06 +133490249,E05,13118532,Medical Incident,12/15/2013,12/15/2013,12/15/2013 03:12:20 PM,12/15/2013 03:14:26 PM,12/15/2013 03:15:06 PM,12/15/2013 03:16:05 PM,12/15/2013 03:18:18 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 03:28:14 PM,1800 Block of GEARY BLVD,SF,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Western Addition,"(37.7842501079896, -122.432035315509)",133490249-E05 +160893989,70,16035525,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:01:06 PM,03/29/2016 11:02:01 PM,03/29/2016 11:11:38 PM,03/29/2016 11:11:38 PM,03/29/2016 11:11:38 PM,03/29/2016 11:23:04 PM,03/29/2016 11:40:34 PM,Code 2 Transport,03/30/2016 12:02:09 AM,5TH ST/MINNA ST,San Francisco,94103,B03,1,2246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822961395725, -122.405931328409)",160893989-70 +160490393,KM03,16019616,Medical Incident,02/18/2016,02/17/2016,02/18/2016 06:17:13 AM,02/18/2016 06:18:57 AM,02/18/2016 06:19:56 AM,02/18/2016 06:20:33 AM,02/18/2016 06:28:40 AM,02/18/2016 06:41:40 AM,02/18/2016 06:55:35 AM,Code 3 Transport,02/18/2016 07:06:13 AM,400 Block of GOETTINGEN ST,San Francisco,94134,B10,42,6334,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7262410518031, -122.406384038984)",160490393-KM03 +103510105,64,10112529,Medical Incident,12/17/2010,12/17/2010,12/17/2010 08:55:18 AM,12/17/2010 08:57:05 AM,12/17/2010 08:57:43 AM,12/17/2010 08:57:48 AM,12/17/2010 09:05:54 AM,12/17/2010 09:30:30 AM,12/17/2010 09:52:47 AM,Code 2 Transport,12/17/2010 10:02:59 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",103510105-64 +113600145,KM02,11119619,Medical Incident,12/26/2011,12/26/2011,12/26/2011 12:40:21 PM,12/26/2011 12:41:23 PM,12/26/2011 12:42:19 PM,12/26/2011 12:43:12 PM,12/26/2011 12:54:03 PM,12/26/2011 01:14:36 PM,12/26/2011 01:23:24 PM,Code 2 Transport,12/26/2011 01:56:28 PM,25TH ST/CONNECTICUT ST,SF,94107,B10,37,2615,2,2,2,false,,1,PRIVATE,1,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",113600145-KM02 +121130296,E40,12037620,Medical Incident,04/22/2012,04/22/2012,04/22/2012 08:10:14 PM,04/22/2012 08:12:19 PM,04/22/2012 08:12:39 PM,04/22/2012 08:13:21 PM,04/22/2012 08:18:01 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/22/2012 08:41:38 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",121130296-E40 +102460310,B09,10077838,Other,09/03/2010,09/03/2010,09/03/2010 06:18:58 PM,09/03/2010 06:19:46 PM,09/03/2010 06:21:19 PM,09/03/2010 06:23:13 PM,09/03/2010 06:26:58 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/03/2010 06:32:29 PM,100 Block of WESTGATE DR,SF,94127,B09,15,8533,3,3,3,false,,1,CHIEF,1,9,7,West of Twin Peaks,"(37.7291836301101, -122.464899637313)",102460310-B09 +122680347,81,12088677,Medical Incident,09/24/2012,09/24/2012,09/24/2012 09:06:18 PM,09/24/2012 09:09:27 PM,09/24/2012 09:09:42 PM,04/25/2016 01:56:37 PM,09/24/2012 09:12:10 PM,09/24/2012 09:24:41 PM,09/24/2012 09:30:28 PM,Code 2 Transport,09/24/2012 10:06:56 PM,2600 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7546325890357, -122.41873973942)",122680347-81 +133270321,E44,13111187,Medical Incident,11/23/2013,11/23/2013,11/23/2013 05:26:37 PM,11/23/2013 05:28:34 PM,11/23/2013 05:32:07 PM,11/23/2013 05:33:06 PM,11/23/2013 05:36:25 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 05:41:47 PM,CORTLAND AV/BAYSHORE BL,SF,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",133270321-E44 +160573547,56,16022910,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:31:35 PM,02/26/2016 09:34:49 PM,02/26/2016 09:35:00 PM,02/26/2016 09:35:26 PM,02/26/2016 09:43:53 PM,02/26/2016 09:50:34 PM,02/26/2016 10:06:17 PM,Code 2 Transport,02/26/2016 10:41:05 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7957870183223, -122.422579704734)",160573547-56 +160440678,85,16017597,Medical Incident,02/13/2016,02/12/2016,02/13/2016 06:59:27 AM,02/13/2016 07:00:49 AM,02/13/2016 07:01:12 AM,02/13/2016 07:02:08 AM,02/13/2016 07:06:07 AM,02/13/2016 07:21:36 AM,02/13/2016 07:27:53 AM,Code 3 Transport,02/13/2016 08:28:50 AM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7792841462441, -122.402061300134)",160440678-85 +110330032,60,11010695,Medical Incident,02/02/2011,02/01/2011,02/02/2011 02:55:46 AM,02/02/2011 02:56:50 AM,02/02/2011 02:58:35 AM,02/02/2011 03:00:27 AM,02/02/2011 03:06:11 AM,02/02/2011 03:26:12 AM,02/02/2011 03:45:30 AM,Code 2 Transport,02/02/2011 04:02:29 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",110330032-60 +103070100,T15,10098196,Alarms,11/03/2010,11/03/2010,11/03/2010 08:53:58 AM,11/03/2010 08:55:34 AM,11/03/2010 08:56:07 AM,11/03/2010 08:57:32 AM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/03/2010 09:02:56 AM,3600 Block of ALEMANY BLVD,SF,94132,B09,33,8375,3,3,3,false,,1,TRUCK,3,9,7,Oceanview/Merced/Ingleside,"(37.7115651552421, -122.464545672378)",103070100-T15 +110310035,T01,11010053,Structure Fire,01/31/2011,01/30/2011,01/31/2011 03:28:57 AM,01/31/2011 03:30:58 AM,01/31/2011 03:31:40 AM,01/31/2011 03:33:06 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/31/2011 03:35:14 AM,POST ST/SHANNON ST,SF,94109,B01,3,1451,3,3,3,false,,1,TRUCK,11,1,3,Tenderloin,"(37.7877668066184, -122.412531202783)",110310035-T01 +112510091,RC1,11082693,Medical Incident,09/08/2011,09/08/2011,09/08/2011 08:24:56 AM,09/08/2011 08:25:39 AM,09/08/2011 08:26:31 AM,09/08/2011 08:27:47 AM,09/08/2011 08:32:33 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 08:35:34 AM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,3,E,3,true,,1,RESCUE CAPTAIN,2,None,3,North Beach,"(37.8081679785862, -122.416634717802)",112510091-RC1 +120230093,T12,12007722,Structure Fire,01/23/2012,01/23/2012,01/23/2012 08:21:21 AM,01/23/2012 08:21:21 AM,01/23/2012 08:21:29 AM,01/23/2012 08:22:47 AM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 08:25:27 AM,FUNSTON AV/LINCOLN WY,SF,94122,B08,22,7346,3,3,3,false,Alarm,1,TRUCK,2,7,5,Golden Gate Park,"(37.7657392555003, -122.470727257629)",120230093-T12 +132290018,RS1,13077173,Traffic Collision,08/17/2013,08/16/2013,08/17/2013 01:17:00 AM,08/17/2013 01:17:38 AM,08/17/2013 01:18:24 AM,08/17/2013 01:20:32 AM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,Other,08/17/2013 01:21:46 AM,VAN NESS AV/ELLIS ST,SF,94109,B04,3,3162,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,2,5,Western Addition,"(37.7838241173643, -122.421008360007)",132290018-RS1 +120630099,E16,12020678,Medical Incident,03/03/2012,03/02/2012,03/03/2012 07:21:10 AM,03/03/2012 07:22:58 AM,03/03/2012 07:23:22 AM,03/03/2012 07:26:48 AM,03/03/2012 07:28:09 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 07:32:33 AM,BAY ST/BUCHANAN ST,SF,94123,B04,16,3446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8030568840333, -122.433327957472)",120630099-E16 +133520331,92,13119683,Medical Incident,12/18/2013,12/18/2013,12/18/2013 05:56:47 PM,12/18/2013 05:59:44 PM,12/18/2013 06:04:27 PM,12/18/2013 06:09:15 PM,12/18/2013 06:20:32 PM,12/18/2013 06:42:12 PM,12/18/2013 06:55:29 PM,Code 2 Transport,12/18/2013 07:29:33 PM,0 Block of CHURCH ST,SF,94114,B02,6,3525,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",133520331-92 +140590285,E38,14019982,Medical Incident,02/28/2014,02/28/2014,02/28/2014 04:27:28 PM,02/28/2014 04:29:09 PM,02/28/2014 04:30:36 PM,02/28/2014 04:32:02 PM,02/28/2014 04:34:49 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Code 2 Transport,02/28/2014 04:49:28 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",140590285-E38 +102570228,E01,10081229,Medical Incident,09/14/2010,09/14/2010,09/14/2010 02:35:35 PM,09/14/2010 02:36:16 PM,09/14/2010 02:36:46 PM,09/14/2010 02:38:58 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Other,09/14/2010 02:39:32 PM,HOWARD ST/5TH ST,SF,94103,B03,1,2245,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",102570228-E01 +160762100,KM05,16030173,Medical Incident,03/16/2016,03/16/2016,03/16/2016 02:06:38 PM,03/16/2016 02:07:33 PM,03/16/2016 02:07:51 PM,03/16/2016 02:08:34 PM,03/16/2016 02:16:11 PM,03/16/2016 02:25:49 PM,03/16/2016 02:34:14 PM,Code 2 Transport,03/16/2016 03:28:31 PM,ASHBURY ST/HAIGHT ST,San Francisco,94117,B05,21,4513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7700076057236, -122.446933818288)",160762100-KM05 +102650308,AP,10083993,Other,09/22/2010,09/22/2010,09/22/2010 08:43:32 PM,09/22/2010 08:43:32 PM,09/22/2010 08:43:32 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Fire,09/22/2010 08:44:44 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102650308-AP +160633452,64,16025238,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:15:27 PM,03/03/2016 08:15:27 PM,03/03/2016 08:28:20 PM,03/03/2016 08:28:26 PM,03/03/2016 08:50:30 PM,03/03/2016 08:56:36 PM,03/03/2016 09:26:10 PM,Code 2 Transport,03/03/2016 09:50:42 PM,1400 Block of 42ND AVE,San Francisco,94122,B08,23,7631,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.759683719968, -122.501503448088)",160633452-64 +121510135,66,12050000,Medical Incident,05/30/2012,05/30/2012,05/30/2012 11:25:34 AM,05/30/2012 11:26:33 AM,05/30/2012 11:26:45 AM,05/30/2012 11:26:57 AM,05/30/2012 11:31:45 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,No Merit,05/30/2012 11:32:45 AM,0 Block of MERCURY ST,SF,94124,B10,42,6447,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7319018847034, -122.401643423217)",121510135-66 +140810305,E33,14027470,Alarms,03/22/2014,03/22/2014,03/22/2014 07:26:33 PM,03/22/2014 07:27:45 PM,03/22/2014 07:28:58 PM,03/22/2014 07:30:31 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Fire,03/22/2014 07:42:34 PM,8400 Block of OCEANVIEW TER,SAN FRANCISCO,94132,B09,33,8412,3,3,3,true,Alarm,1,ENGINE,3,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",140810305-E33 +122720078,T05,12089665,Structure Fire,09/28/2012,09/28/2012,09/28/2012 08:48:13 AM,09/28/2012 08:49:12 AM,09/28/2012 08:49:57 AM,09/28/2012 08:50:46 AM,09/28/2012 08:52:07 AM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/28/2012 09:03:11 AM,1200 Block of LAGUNA ST,SF,94115,B02,5,3366,3,3,3,false,Fire,1,TRUCK,2,2,5,Western Addition,"(37.7822812615868, -122.427511862361)",122720078-T05 +160893244,64,16035457,Medical Incident,03/29/2016,03/29/2016,03/29/2016 07:04:19 PM,03/29/2016 07:05:48 PM,03/29/2016 07:06:23 PM,03/29/2016 07:06:48 PM,03/29/2016 07:16:05 PM,03/29/2016 07:27:16 PM,03/29/2016 07:56:20 PM,Code 2 Transport,03/29/2016 08:25:06 PM,TAPIA DR/HOLLOWAY AV,San Francisco,94132,B08,19,868,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7207027284867, -122.481058032141)",160893244-64 +131120253,T13,13037753,Medical Incident,04/22/2013,04/22/2013,04/22/2013 02:18:07 PM,04/22/2013 02:18:40 PM,04/22/2013 02:21:04 PM,04/22/2013 02:22:37 PM,04/22/2013 02:24:56 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/22/2013 02:40:35 PM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.793872317337, -122.405454714295)",131120253-T13 +160603645,AM16,16024105,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:11:29 PM,02/29/2016 10:13:01 PM,02/29/2016 10:13:21 PM,02/29/2016 10:14:00 PM,02/29/2016 10:36:53 PM,02/29/2016 10:36:57 PM,02/29/2016 10:50:28 PM,Code 2 Transport,02/29/2016 11:18:20 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160603645-AM16 +110840190,E15,11027675,Medical Incident,03/25/2011,03/25/2011,03/25/2011 12:29:15 PM,03/25/2011 12:29:46 PM,03/25/2011 12:29:54 PM,03/25/2011 12:30:53 PM,03/25/2011 12:32:30 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 12:45:00 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",110840190-E15 +131850125,E38,13063008,Smoke Investigation (Outside),07/04/2013,07/04/2013,07/04/2013 10:36:14 AM,07/04/2013 10:38:08 AM,07/04/2013 10:38:28 AM,07/04/2013 10:38:54 AM,07/04/2013 10:42:13 AM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Fire,07/04/2013 10:43:12 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",131850125-E38 +123520250,B06,12117791,Structure Fire,12/17/2012,12/17/2012,12/17/2012 02:38:51 PM,12/17/2012 02:40:43 PM,12/17/2012 02:41:20 PM,12/17/2012 02:42:24 PM,12/17/2012 02:48:13 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 02:56:27 PM,BURROWS ST/PERU AV,SF,94134,B09,43,6153,3,3,3,false,Alarm,1,CHIEF,4,9,9,Excelsior,"(37.723944193532, -122.422830068357)",123520250-B06 +160752692,50,16029794,Medical Incident,03/15/2016,03/15/2016,03/15/2016 04:33:33 PM,03/15/2016 04:33:33 PM,03/15/2016 04:33:59 PM,03/15/2016 04:34:28 PM,03/15/2016 04:41:04 PM,03/15/2016 04:59:41 PM,03/15/2016 05:19:12 PM,Code 2 Transport,03/15/2016 05:59:49 PM,OAK GROVE ST/HARRISON ST,San Francisco,94107,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7781489639207, -122.402961159131)",160752692-50 +130790393,RS1,13026588,Medical Incident,03/20/2013,03/20/2013,03/20/2013 11:17:00 PM,03/20/2013 11:18:06 PM,03/20/2013 11:18:53 PM,03/20/2013 11:20:37 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/20/2013 11:21:36 PM,5TH ST/STEVENSON ST,SF,94103,B03,1,2247,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.783528916199, -122.407482813601)",130790393-RS1 +131280172,67,13043257,Medical Incident,05/08/2013,05/08/2013,05/08/2013 11:30:36 AM,05/08/2013 11:31:03 AM,05/08/2013 11:31:17 AM,05/08/2013 11:31:33 AM,04/25/2016 01:52:54 PM,05/08/2013 11:49:49 AM,05/08/2013 11:56:53 AM,Code 2 Transport,05/08/2013 12:55:42 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",131280172-67 +113650228,E03,11121309,Medical Incident,12/31/2011,12/31/2011,12/31/2011 02:55:40 PM,12/31/2011 02:56:01 PM,12/31/2011 02:56:24 PM,12/31/2011 02:57:26 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 03:06:09 PM,1400 Block of PINE ST,SF,94109,B04,3,3122,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",113650228-E03 +112330153,AM02,11076912,Medical Incident,08/21/2011,08/21/2011,08/21/2011 11:12:30 AM,08/21/2011 11:14:48 AM,08/21/2011 11:15:22 AM,08/21/2011 11:16:04 AM,04/25/2016 02:03:04 PM,08/21/2011 11:26:50 AM,08/21/2011 11:34:34 AM,Code 2 Transport,08/21/2011 12:07:59 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",112330153-AM02 +130900219,RC3,13030146,Medical Incident,03/31/2013,03/31/2013,03/31/2013 03:31:38 PM,03/31/2013 03:32:00 PM,03/31/2013 03:32:16 PM,03/31/2013 03:34:06 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 03:35:04 PM,1100 Block of HAIGHT ST,SF,94117,B05,21,4353,E,E,3,true,Non Life-threatening,1,RESCUE CAPTAIN,4,5,5,Haight Ashbury,"(37.7707967646224, -122.44118874316)",130900219-RC3 +140600028,AM18,14020124,Medical Incident,03/01/2014,02/28/2014,03/01/2014 01:54:23 AM,03/01/2014 01:55:32 AM,03/01/2014 01:55:54 AM,03/01/2014 01:56:32 AM,03/01/2014 02:00:44 AM,03/01/2014 02:20:24 AM,03/01/2014 02:22:47 AM,Code 2 Transport,03/01/2014 03:16:14 AM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",140600028-AM18 +111410302,E05,11046970,Medical Incident,05/21/2011,05/21/2011,05/21/2011 07:43:48 PM,05/21/2011 07:47:00 PM,05/21/2011 07:58:42 PM,05/21/2011 07:59:38 PM,05/21/2011 08:01:25 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,Other,05/21/2011 08:26:01 PM,GROVE ST/STEINER ST,SF,94117,B05,21,3631,1,1,2,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7765501206667, -122.433028501221)",111410302-E05 +130610322,E44,13020577,Structure Fire,03/02/2013,03/02/2013,03/02/2013 08:15:42 PM,03/02/2013 08:16:57 PM,03/02/2013 08:17:11 PM,03/02/2013 08:17:30 PM,03/02/2013 08:19:57 PM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Other,03/02/2013 08:28:37 PM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.724618348147, -122.402420149939)",130610322-E44 +160762572,KM06,16030224,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:03:46 PM,03/16/2016 04:05:54 PM,03/16/2016 04:06:17 PM,03/16/2016 04:06:41 PM,03/16/2016 04:18:54 PM,03/16/2016 04:42:40 PM,03/16/2016 04:56:17 PM,Code 2 Transport,03/16/2016 05:30:02 PM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160762572-KM06 +112380181,D2,11078545,Structure Fire,08/26/2011,08/26/2011,08/26/2011 01:13:50 PM,08/26/2011 01:14:20 PM,08/26/2011 01:14:32 PM,08/26/2011 01:15:26 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 01:18:03 PM,600 Block of 14TH ST,SF,94114,B02,6,5213,3,3,3,false,,1,CHIEF,8,2,8,Castro/Upper Market,"(37.7677090926808, -122.428254748888)",112380181-D2 +132890380,92,13098472,Medical Incident,10/16/2013,10/16/2013,10/16/2013 11:00:34 PM,10/16/2013 11:01:01 PM,10/16/2013 11:01:28 PM,10/16/2013 11:02:13 PM,10/16/2013 11:24:17 PM,10/16/2013 11:31:43 PM,10/16/2013 11:46:57 PM,Code 2 Transport,10/17/2013 12:21:39 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",132890380-92 +160643065,AM14,16025621,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:14:17 PM,03/04/2016 06:15:51 PM,03/04/2016 06:17:04 PM,03/04/2016 06:17:47 PM,03/04/2016 06:25:19 PM,03/04/2016 06:43:18 PM,03/04/2016 06:58:06 PM,Code 2 Transport,03/04/2016 07:21:12 PM,0 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7895797011957, -122.402025244971)",160643065-AM14 +132340023,E01,13078870,Medical Incident,08/22/2013,08/21/2013,08/22/2013 02:42:44 AM,08/22/2013 02:42:44 AM,08/22/2013 02:42:44 AM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/22/2013 02:50:54 AM,HOWARD ST/7TH ST,SF,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7779770860913, -122.409387007126)",132340023-E01 +160601785,AM10,16023909,Medical Incident,02/29/2016,02/29/2016,02/29/2016 01:19:27 PM,02/29/2016 01:20:44 PM,02/29/2016 01:21:28 PM,02/29/2016 01:21:55 PM,02/29/2016 01:27:12 PM,02/29/2016 02:22:35 PM,02/29/2016 02:40:53 PM,Code 2 Transport,02/29/2016 02:56:55 PM,4TH ST/HOWARD ST,San Francisco,94103,B03,1,2214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",160601785-AM10 +140240271,E05,14008245,Medical Incident,01/24/2014,01/24/2014,01/24/2014 02:57:57 PM,01/24/2014 02:58:38 PM,01/24/2014 03:00:33 PM,01/24/2014 03:00:33 PM,01/24/2014 03:02:14 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/24/2014 03:06:38 PM,600 Block of FELL ST,SF,94102,B02,36,3423,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7752684985876, -122.428555766328)",140240271-E05 +160392574,68,16015708,Medical Incident,02/08/2016,02/08/2016,02/08/2016 04:45:01 PM,02/08/2016 04:46:01 PM,02/08/2016 04:46:39 PM,02/08/2016 04:46:44 PM,02/08/2016 04:53:42 PM,02/08/2016 04:59:21 PM,02/08/2016 05:29:33 PM,Code 2 Transport,02/08/2016 05:46:28 PM,ELSIE ST/ESMERALDA AV,San Francisco,94110,B06,32,5657,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7432227219521, -122.417421527797)",160392574-68 +123050024,54,12101062,Medical Incident,10/31/2012,10/30/2012,10/31/2012 02:03:05 AM,10/31/2012 02:04:56 AM,10/31/2012 02:06:00 AM,04/25/2016 01:56:02 PM,10/31/2012 02:06:15 AM,10/31/2012 02:24:34 AM,10/31/2012 02:45:56 AM,Other,10/31/2012 03:19:23 AM,CHURCH ST/18TH ST,SF,94114,B02,6,5421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",123050024-54 +111530061,E38,11050493,Medical Incident,06/02/2011,06/01/2011,06/02/2011 07:36:58 AM,06/02/2011 07:37:19 AM,06/02/2011 07:38:07 AM,06/02/2011 07:39:56 AM,06/02/2011 07:40:46 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/02/2011 07:50:11 AM,LAGUNA ST/SACRAMENTO ST,SF,94109,B04,38,3435,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7904594992722, -122.429092268636)",111530061-E38 +160080215,57,16003068,Medical Incident,01/08/2016,01/07/2016,01/08/2016 01:59:06 AM,01/08/2016 02:01:02 AM,01/08/2016 02:01:41 AM,01/08/2016 02:02:07 AM,01/08/2016 02:02:31 AM,01/08/2016 02:25:24 AM,01/08/2016 02:40:33 AM,Code 2 Transport,01/08/2016 03:30:30 AM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882286861562, -122.415995198292)",160080215-57 +102260142,E02,10071115,Medical Incident,08/14/2010,08/14/2010,08/14/2010 11:43:39 AM,08/14/2010 11:44:01 AM,08/14/2010 11:44:49 AM,08/14/2010 11:46:12 AM,08/14/2010 11:47:32 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 11:48:10 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.7980497141877, -122.406829909619)",102260142-E02 +111240041,E03,11040856,Medical Incident,05/04/2011,05/03/2011,05/04/2011 05:29:27 AM,05/04/2011 05:29:41 AM,05/04/2011 05:31:12 AM,05/04/2011 05:32:53 AM,05/04/2011 05:35:21 AM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/04/2011 05:46:10 AM,LEAVENWORTH ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",111240041-E03 +111250275,T01,11041437,Alarms,05/05/2011,05/05/2011,05/05/2011 04:49:00 PM,05/05/2011 04:50:47 PM,05/05/2011 04:50:58 PM,05/05/2011 04:52:46 PM,05/05/2011 04:56:10 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 05:00:03 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",111250275-T01 +102750153,B01,10087333,Alarms,10/02/2010,10/02/2010,10/02/2010 11:01:50 AM,10/02/2010 11:02:36 AM,10/02/2010 11:02:43 AM,10/02/2010 11:03:08 AM,10/02/2010 11:06:49 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Fire,10/02/2010 11:16:47 AM,600 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,false,,1,CHIEF,1,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",102750153-B01 +121530361,T03,12050804,Alarms,06/01/2012,06/01/2012,06/01/2012 10:21:48 PM,06/01/2012 10:23:07 PM,06/01/2012 10:23:21 PM,06/01/2012 10:25:32 PM,06/01/2012 10:27:07 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 10:30:23 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Alarm,1,TRUCK,3,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",121530361-T03 +121530122,83,12050586,Structure Fire,06/01/2012,06/01/2012,06/01/2012 11:26:46 AM,06/01/2012 11:27:53 AM,06/01/2012 11:28:30 AM,06/01/2012 11:28:43 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 11:34:27 AM,800 Block of 28TH AVE,SF,94121,B07,14,7223,3,3,3,true,Fire,1,MEDIC,11,7,1,Outer Richmond,"(37.7733597463577, -122.48739702419)",121530122-83 +160723140,76,16028765,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:40:23 PM,03/12/2016 08:40:23 PM,03/12/2016 08:41:56 PM,03/12/2016 08:42:03 PM,03/12/2016 08:49:58 PM,03/12/2016 09:08:36 PM,03/12/2016 09:22:38 PM,Code 2 Transport,03/12/2016 10:03:57 PM,900 Block of CHURCH ST,San Francisco,94114,B06,11,5467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7560963961337, -122.427783359919)",160723140-76 +132120131,T07,13071618,Other,07/31/2013,07/31/2013,07/31/2013 11:05:08 AM,07/31/2013 11:05:09 AM,07/31/2013 11:05:09 AM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 11:10:57 AM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,false,Alarm,1,TRUCK,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",132120131-T07 +122810343,93,12093130,Medical Incident,10/07/2012,10/07/2012,10/07/2012 08:12:15 PM,10/07/2012 08:12:51 PM,10/07/2012 08:13:48 PM,10/07/2012 08:13:58 PM,10/07/2012 08:20:51 PM,10/07/2012 08:38:35 PM,10/07/2012 08:57:10 PM,Code 3 Transport,10/07/2012 09:38:36 PM,1000 Block of OAKDALE AVE,SF,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7288155676841, -122.380327013416)",122810343-93 +120730087,59,12024153,Explosion,03/13/2012,03/13/2012,03/13/2012 08:13:40 AM,03/13/2012 08:15:25 AM,03/13/2012 08:16:16 AM,03/13/2012 08:20:40 AM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,Other,03/13/2012 08:23:29 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Fire,1,MEDIC,13,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",120730087-59 +160491217,62,16019688,Medical Incident,02/18/2016,02/18/2016,02/18/2016 10:41:17 AM,02/18/2016 10:41:37 AM,02/18/2016 10:42:23 AM,02/18/2016 10:42:36 AM,02/18/2016 10:50:36 AM,02/18/2016 11:00:01 AM,02/18/2016 11:21:23 AM,Code 2 Transport,02/18/2016 12:13:42 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160491217-62 +110490076,E20,11016104,Structure Fire,02/18/2011,02/17/2011,02/18/2011 07:34:50 AM,02/18/2011 07:34:56 AM,02/18/2011 07:35:02 AM,02/18/2011 07:36:00 AM,02/18/2011 07:40:04 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/18/2011 08:13:28 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110490076-E20 +160452423,64,16018206,Medical Incident,02/14/2016,02/14/2016,02/14/2016 04:55:19 PM,02/14/2016 04:57:00 PM,02/14/2016 04:57:41 PM,02/14/2016 04:57:53 PM,02/14/2016 05:11:33 PM,02/14/2016 05:36:37 PM,02/14/2016 05:45:12 PM,Code 2 Transport,02/14/2016 06:14:31 PM,200 Block of NAPLES ST,San Francisco,94112,B09,43,6142,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7247649649334, -122.428320157023)",160452423-64 +122560011,B02,12084500,Structure Fire,09/12/2012,09/11/2012,09/12/2012 12:50:43 AM,09/12/2012 12:51:51 AM,09/12/2012 12:52:14 AM,04/25/2016 01:56:48 PM,09/12/2012 01:03:15 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 01:12:37 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Fire,1,CHIEF,6,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",122560011-B02 +121620253,T01,12053686,Structure Fire,06/10/2012,06/10/2012,06/10/2012 03:19:48 PM,06/10/2012 03:19:48 PM,06/10/2012 03:19:57 PM,06/10/2012 03:20:25 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 03:22:48 PM,10TH ST/HOWARD ST,SF,94103,B02,36,2342,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7740433259374, -122.414367692219)",121620253-T01 +132280266,85,13077020,Medical Incident,08/16/2013,08/16/2013,08/16/2013 03:08:16 PM,08/16/2013 03:09:08 PM,08/16/2013 03:11:19 PM,08/16/2013 03:11:46 PM,08/16/2013 03:18:34 PM,08/16/2013 03:25:36 PM,08/16/2013 03:50:37 PM,Code 2 Transport,08/16/2013 04:22:52 PM,4TH ST/BRANNAN ST,SF,94107,B03,8,2223,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7783268314649, -122.396530638158)",132280266-85 +160132601,AM02,16005247,Medical Incident,01/13/2016,01/13/2016,01/13/2016 03:41:28 PM,01/13/2016 03:41:28 PM,01/13/2016 03:41:40 PM,01/13/2016 03:42:43 PM,01/13/2016 03:52:58 PM,01/13/2016 04:18:25 PM,01/13/2016 04:26:13 PM,Code 2 Transport,01/13/2016 04:55:46 PM,NOE ST/MARKET ST,San Francisco,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",160132601-AM02 +160183538,82,16007423,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:14:53 PM,01/18/2016 11:15:57 PM,01/18/2016 11:16:33 PM,01/18/2016 11:17:11 PM,01/18/2016 11:24:50 PM,01/18/2016 11:32:37 PM,01/18/2016 11:46:58 PM,Code 2 Transport,01/19/2016 01:07:58 AM,6200 Block of 3RD ST,San Francisco,94124,B10,44,6544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7213831461768, -122.396234473248)",160183538-82 +160572332,KM02,16022817,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:30:53 PM,02/26/2016 03:33:07 PM,02/26/2016 03:43:35 PM,02/26/2016 03:44:10 PM,02/26/2016 04:02:39 PM,02/26/2016 04:13:03 PM,02/26/2016 04:46:00 PM,Code 2 Transport,02/26/2016 05:30:39 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",160572332-KM02 +160520196,76,16020662,Medical Incident,02/21/2016,02/20/2016,02/21/2016 01:08:51 AM,02/21/2016 01:09:46 AM,02/21/2016 01:10:00 AM,02/21/2016 01:10:07 AM,02/21/2016 01:12:22 AM,02/21/2016 01:41:54 AM,02/21/2016 01:41:54 AM,Code 2 Transport,02/21/2016 02:29:59 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7609766090845, -122.434457353955)",160520196-76 +110350321,T02,11011602,Alarms,02/04/2011,02/04/2011,02/04/2011 07:00:32 PM,02/04/2011 07:01:13 PM,02/04/2011 07:03:25 PM,02/04/2011 07:04:47 PM,02/04/2011 07:06:51 PM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Other,02/04/2011 07:18:06 PM,500 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7910048906559, -122.407192484843)",110350321-T02 +102310309,AM08,10072808,Medical Incident,08/19/2010,08/19/2010,08/19/2010 08:15:06 PM,08/19/2010 08:15:49 PM,08/19/2010 08:16:15 PM,04/25/2016 02:09:00 PM,08/19/2010 08:26:25 PM,08/19/2010 08:35:12 PM,08/19/2010 08:58:01 PM,Code 2 Transport,08/19/2010 09:20:52 PM,2300 Block of 16TH AVE,SF,94116,B08,40,7376,3,E,3,false,,1,PRIVATE,3,8,7,West of Twin Peaks,"(37.7444297202932, -122.472811993501)",102310309-AM08 +123460073,E35,12115611,Outside Fire,12/11/2012,12/10/2012,12/11/2012 07:17:20 AM,12/11/2012 07:17:20 AM,12/11/2012 07:17:44 AM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/11/2012 07:22:24 AM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,8,966,3,3,3,true,Alarm,1,ENGINE,3,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",123460073-E35 +160030280,53,16001017,Medical Incident,01/03/2016,01/02/2016,01/03/2016 01:53:09 AM,01/03/2016 01:53:39 AM,01/03/2016 01:54:37 AM,01/03/2016 01:54:49 AM,01/03/2016 02:00:07 AM,01/03/2016 02:16:10 AM,01/03/2016 02:16:11 AM,Code 2 Transport,01/03/2016 03:30:50 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160030280-53 +131650169,RC1,13056037,Traffic Collision,06/14/2013,06/14/2013,06/14/2013 12:19:26 PM,06/14/2013 12:19:56 PM,06/14/2013 12:22:53 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 12:41:36 PM,MONTGOMERY ST/CLAY ST,SF,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Chinatown,"(37.7946662813797, -122.403139296426)",131650169-RC1 +160423794,88,16017061,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:12:17 PM,02/11/2016 10:13:31 PM,02/11/2016 10:14:04 PM,02/11/2016 10:14:14 PM,02/11/2016 10:20:31 PM,02/11/2016 10:33:10 PM,02/11/2016 10:46:53 PM,Code 2 Transport,02/11/2016 11:26:05 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160423794-88 +113070230,74,11102025,Medical Incident,11/03/2011,11/03/2011,11/03/2011 02:33:52 PM,11/03/2011 02:35:39 PM,11/03/2011 02:36:33 PM,11/03/2011 02:36:59 PM,04/25/2016 02:01:49 PM,11/03/2011 03:05:04 PM,11/03/2011 03:50:26 PM,Code 2 Transport,11/03/2011 03:50:28 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",113070230-74 +113640261,E07,11120962,Medical Incident,12/30/2011,12/30/2011,12/30/2011 03:52:18 PM,12/30/2011 03:53:40 PM,12/30/2011 03:53:55 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,Other,12/30/2011 03:54:53 PM,24TH ST/TREAT AV,SF,94110,B06,7,5477,3,2,2,true,,1,ENGINE,2,6,9,Mission,"(37.7525727580898, -122.41299517484)",113640261-E07 +103020275,E01,10096567,Medical Incident,10/29/2010,10/29/2010,10/29/2010 07:18:23 PM,10/29/2010 07:19:28 PM,10/29/2010 07:19:55 PM,10/29/2010 07:21:19 PM,10/29/2010 07:23:18 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/29/2010 07:33:08 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",103020275-E01 +113490255,E18,11115865,Structure Fire,12/15/2011,12/15/2011,12/15/2011 05:08:22 PM,12/15/2011 05:08:22 PM,12/15/2011 05:08:31 PM,12/15/2011 05:09:26 PM,12/15/2011 05:12:14 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/15/2011 05:20:34 PM,1500 Block of 31ST AVE,SF,94122,B08,18,753,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7583357019527, -122.489587661906)",113490255-E18 +131260111,67,13042496,Traffic Collision,05/06/2013,05/06/2013,05/06/2013 09:06:02 AM,05/06/2013 09:07:19 AM,05/06/2013 09:07:32 AM,05/06/2013 09:07:45 AM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,Other,05/06/2013 09:12:59 AM,19TH ST/DOLORES ST,SF,94110,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",131260111-67 +120200373,KM07,12006842,Medical Incident,01/20/2012,01/20/2012,01/20/2012 08:31:34 PM,01/20/2012 08:35:05 PM,01/20/2012 08:35:30 PM,01/20/2012 08:36:41 PM,01/20/2012 08:40:58 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Patient Declined Transport,01/20/2012 09:30:46 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",120200373-KM07 +133470101,T11,13117685,Structure Fire,12/13/2013,12/13/2013,12/13/2013 09:24:36 AM,12/13/2013 09:24:36 AM,12/13/2013 09:24:55 AM,04/25/2016 01:49:17 PM,12/13/2013 09:30:47 AM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 09:36:16 AM,100 Block of LIPPARD AVE,SF,94131,B09,26,817,3,3,3,false,Alarm,1,TRUCK,2,9,8,West of Twin Peaks,"(37.7331188960885, -122.436006242451)",133470101-T11 +160520472,85,16020688,Medical Incident,02/21/2016,02/20/2016,02/21/2016 03:22:23 AM,02/21/2016 03:23:51 AM,02/21/2016 03:24:20 AM,02/21/2016 03:24:28 AM,02/21/2016 03:26:05 AM,02/21/2016 03:42:23 AM,02/21/2016 03:48:28 AM,Code 2 Transport,02/21/2016 04:39:47 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160520472-85 +120750194,RC1,12024913,Medical Incident,03/15/2012,03/15/2012,03/15/2012 01:46:15 PM,03/15/2012 01:46:59 PM,03/15/2012 01:47:30 PM,03/15/2012 01:48:38 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 01:52:05 PM,RUSS ST/HOWARD ST,SF,94103,B03,1,2252,3,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7788606854675, -122.408271588549)",120750194-RC1 +160252750,81,16010027,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:09:48 PM,01/25/2016 05:09:48 PM,01/25/2016 05:10:46 PM,01/25/2016 05:11:01 PM,01/25/2016 05:25:32 PM,01/25/2016 05:56:38 PM,01/25/2016 06:03:09 PM,Code 2 Transport,01/25/2016 06:43:00 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",160252750-81 +130470013,T13,13015857,Medical Incident,02/16/2013,02/15/2013,02/16/2013 12:30:37 AM,02/16/2013 12:31:06 AM,02/16/2013 12:31:58 AM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,04/25/2016 01:54:16 PM,MONTGOMERY ST/BROADWAY,SF,94133,B01,13,1231,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,1,3,North Beach,"(37.7982229704871, -122.403863019987)",130470013-T13 +122920307,D3,12096848,Structure Fire,10/18/2012,10/18/2012,10/18/2012 05:02:01 PM,10/18/2012 05:03:34 PM,10/18/2012 05:04:24 PM,10/18/2012 05:06:03 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 05:09:16 PM,0 Block of HAZELWOOD AVE,SF,94112,B09,15,8521,3,3,3,false,Alarm,1,CHIEF,8,9,7,West of Twin Peaks,"(37.7294941295348, -122.454084854429)",122920307-D3 +160690361,72,16027325,Medical Incident,03/09/2016,03/08/2016,03/09/2016 04:41:57 AM,03/09/2016 04:43:44 AM,03/09/2016 04:44:17 AM,03/09/2016 04:44:28 AM,03/09/2016 04:53:50 AM,03/09/2016 05:10:58 AM,03/09/2016 05:25:38 AM,Code 2 Transport,03/09/2016 05:46:58 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160690361-72 +111880027,54,11062033,Medical Incident,07/07/2011,07/06/2011,07/07/2011 02:38:08 AM,07/07/2011 02:38:45 AM,07/07/2011 02:39:03 AM,07/07/2011 02:39:20 AM,07/07/2011 02:41:30 AM,07/07/2011 02:46:21 AM,07/07/2011 02:52:36 AM,Code 2 Transport,07/07/2011 03:01:26 AM,700 Block of MARKET ST,SF,94103,B03,1,2211,2,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",111880027-54 +123440169,E15,12114971,Medical Incident,12/09/2012,12/09/2012,12/09/2012 11:25:42 AM,12/09/2012 11:26:19 AM,12/09/2012 11:26:31 AM,12/09/2012 11:30:46 AM,12/09/2012 11:33:00 AM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 11:41:11 AM,0 Block of SANTA ROSA AVE,SF,94112,B06,15,8265,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7262876072469, -122.434951059598)",123440169-E15 +123590340,E01,12120336,Structure Fire,12/24/2012,12/24/2012,12/24/2012 10:11:17 PM,12/24/2012 10:12:21 PM,12/24/2012 10:12:41 PM,12/24/2012 10:13:15 PM,12/24/2012 10:17:53 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 10:21:40 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,6,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",123590340-E01 +133430219,E09,13116342,Medical Incident,12/09/2013,12/09/2013,12/09/2013 01:56:22 PM,12/09/2013 01:56:28 PM,12/09/2013 01:56:58 PM,12/09/2013 01:58:53 PM,12/09/2013 02:17:16 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/09/2013 02:20:31 PM,2800 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5621,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Mission,"(37.7490475978139, -122.405997639804)",133430219-E09 +133450166,B03,13116987,Medical Incident,12/11/2013,12/11/2013,12/11/2013 11:35:43 AM,12/11/2013 11:36:13 AM,12/11/2013 11:36:41 AM,12/11/2013 11:37:05 AM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/11/2013 11:40:14 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,E,E,3,false,Potentially Life-Threatening,1,CHIEF,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",133450166-B03 +110720039,AM18,11023607,Medical Incident,03/13/2011,03/12/2011,03/13/2011 01:53:57 AM,03/13/2011 01:57:03 AM,03/13/2011 03:14:11 AM,03/13/2011 03:16:36 AM,03/13/2011 03:20:04 AM,03/13/2011 03:21:43 AM,04/25/2016 02:05:39 PM,Code 2 Transport,03/13/2011 03:55:11 AM,200 Block of FELTON ST,SF,94134,B10,42,6341,1,3,3,false,,1,PRIVATE,2,10,9,Portola,"(37.7293375380523, -122.40704751351)",110720039-AM18 +120070167,KM07,12002397,Medical Incident,01/07/2012,01/07/2012,01/07/2012 11:35:47 AM,01/07/2012 11:37:40 AM,01/07/2012 11:38:03 AM,01/07/2012 11:53:12 AM,01/07/2012 12:06:12 PM,01/07/2012 12:24:33 PM,01/07/2012 12:42:39 PM,Code 2 Transport,01/07/2012 01:17:03 PM,1200 Block of 48TH AVE,SF,94122,B08,23,7721,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7631362332956, -122.508195889084)",120070167-KM07 +121840188,T17,12061299,Structure Fire,07/02/2012,07/02/2012,07/02/2012 02:12:18 PM,07/02/2012 02:12:20 PM,07/02/2012 02:12:46 PM,07/02/2012 02:14:58 PM,07/02/2012 02:13:59 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 02:16:09 PM,WOOLSEY ST/HAMILTON ST,SF,94134,B10,42,6331,3,3,3,false,Alarm,1,TRUCK,1,9,9,Portola,"(37.7236880085901, -122.408528698653)",121840188-T17 +130480061,E03,13016279,Alarms,02/17/2013,02/16/2013,02/17/2013 03:20:14 AM,02/17/2013 03:21:34 AM,02/17/2013 03:21:51 AM,02/17/2013 03:23:01 AM,02/17/2013 03:25:21 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 03:31:07 AM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",130480061-E03 +102800015,E01,10088873,Medical Incident,10/07/2010,10/06/2010,10/07/2010 12:57:25 AM,10/07/2010 12:57:55 AM,10/07/2010 12:58:08 AM,10/07/2010 12:59:59 AM,10/07/2010 01:02:15 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/07/2010 01:09:40 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",102800015-E01 +112760242,92,11091394,Medical Incident,10/03/2011,10/03/2011,10/03/2011 02:53:39 PM,10/03/2011 02:55:47 PM,10/03/2011 02:56:10 PM,10/03/2011 02:56:36 PM,10/03/2011 03:03:30 PM,10/03/2011 03:24:51 PM,10/03/2011 03:42:49 PM,Code 2 Transport,10/03/2011 04:11:01 PM,700 Block of BRUNSWICK ST,SF,94112,B09,33,6214,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7086491717857, -122.448732919576)",112760242-92 +110430401,AM18,11014445,Medical Incident,02/12/2011,02/12/2011,02/12/2011 08:56:03 PM,02/12/2011 08:56:25 PM,02/12/2011 08:57:09 PM,04/25/2016 02:06:06 PM,02/12/2011 09:13:30 PM,02/12/2011 09:17:34 PM,02/12/2011 09:24:49 PM,Code 2 Transport,02/12/2011 10:26:48 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",110430401-AM18 +120430330,E43,12014533,Medical Incident,02/12/2012,02/12/2012,02/12/2012 10:40:23 PM,02/12/2012 10:43:06 PM,02/12/2012 10:43:26 PM,02/12/2012 10:44:13 PM,02/12/2012 10:46:50 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/12/2012 10:51:14 PM,100 Block of BRAZIL AVE,SF,94112,B09,43,6127,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7240773628608, -122.433668179488)",120430330-E43 +140610247,96,14020698,Medical Incident,03/02/2014,03/02/2014,03/02/2014 05:12:15 PM,03/02/2014 05:13:54 PM,03/02/2014 05:15:28 PM,03/02/2014 05:16:08 PM,03/02/2014 05:42:30 PM,03/02/2014 05:42:34 PM,03/02/2014 05:53:57 PM,Code 2 Transport,03/02/2014 06:06:14 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7562403438982, -122.418755320213)",140610247-96 +140350392,RC2,14011999,Medical Incident,02/04/2014,02/04/2014,02/04/2014 07:30:20 PM,02/04/2014 07:33:28 PM,02/04/2014 07:34:25 PM,02/04/2014 07:35:40 PM,04/25/2016 01:48:22 PM,04/25/2016 01:48:22 PM,04/25/2016 01:48:22 PM,Other,02/04/2014 07:36:13 PM,200 Block of FARALLONES ST,SF,94112,B09,33,8374,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,11,Oceanview/Merced/Ingleside,"(37.7139875097179, -122.460811423157)",140350392-RC2 +103600131,63,10115499,Medical Incident,12/26/2010,12/26/2010,12/26/2010 01:16:57 PM,12/26/2010 01:17:31 PM,12/26/2010 01:17:57 PM,12/26/2010 01:18:05 PM,12/26/2010 01:25:24 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 01:31:21 PM,LAGUNA HONDA BL/CLARENDON AV,SF,94131,B08,20,8635,3,2,2,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7515035610676, -122.461523603256)",103600131-63 +140910288,66,14030696,Traffic Collision,04/01/2014,04/01/2014,04/01/2014 07:57:00 PM,04/01/2014 07:58:21 PM,04/01/2014 07:58:56 PM,04/01/2014 07:59:14 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,Code 2 Transport,04/25/2016 01:47:27 PM,300 Block of 1ST ST,SAN FRANCISCO,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",140910288-66 +140680097,66,14022940,Medical Incident,03/09/2014,03/09/2014,03/09/2014 09:40:35 AM,03/09/2014 09:41:21 AM,03/09/2014 09:41:33 AM,03/09/2014 09:41:59 AM,03/09/2014 09:46:08 AM,03/09/2014 09:57:30 AM,03/09/2014 10:26:39 AM,Code 2 Transport,03/09/2014 10:36:22 AM,300 Block of CORTLAND AVE,SAN FRANCISCO,94110,B06,32,5652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7392773970379, -122.418180028379)",140680097-66 +122490065,67,12082260,Medical Incident,09/05/2012,09/04/2012,09/05/2012 07:51:06 AM,09/05/2012 07:51:52 AM,09/05/2012 07:52:09 AM,09/05/2012 07:53:10 AM,09/05/2012 07:56:39 AM,09/05/2012 08:13:32 AM,09/05/2012 08:17:51 AM,Code 3 Transport,09/05/2012 08:56:09 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",122490065-67 +111570140,E32,11051874,Medical Incident,06/06/2011,06/06/2011,06/06/2011 10:34:56 AM,06/06/2011 10:35:25 AM,06/06/2011 10:36:04 AM,06/06/2011 10:36:22 AM,06/06/2011 10:38:31 AM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 10:51:52 AM,3200 Block of MISSION ST,SF,94110,B06,11,5624,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7454669542894, -122.419890921573)",111570140-E32 +123510316,87,12117515,Traffic Collision,12/16/2012,12/16/2012,12/16/2012 06:56:35 PM,12/16/2012 06:57:15 PM,12/16/2012 06:59:44 PM,12/16/2012 07:08:59 PM,12/16/2012 07:22:41 PM,12/16/2012 07:29:48 PM,12/16/2012 07:40:54 PM,Other,12/16/2012 08:35:13 PM,NAPLES ST/GENEVA AV,SF,94112,B09,43,6174,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7142094836778, -122.436176465247)",123510316-87 +111310257,T06,11043352,Alarms,05/11/2011,05/11/2011,05/11/2011 04:37:14 PM,05/11/2011 04:37:32 PM,05/11/2011 04:39:21 PM,05/11/2011 04:40:21 PM,05/11/2011 04:42:33 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/11/2011 04:45:22 PM,600 Block of HAIGHT ST,SF,94117,B05,6,3633,3,3,3,false,,1,TRUCK,2,5,5,Haight Ashbury,"(37.7718470065339, -122.432924490694)",111310257-T06 +133470012,82,13117605,Medical Incident,12/13/2013,12/12/2013,12/13/2013 12:31:23 AM,12/13/2013 12:34:02 AM,12/13/2013 12:34:24 AM,12/13/2013 12:34:49 AM,12/13/2013 12:39:26 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,No Merit,12/13/2013 12:46:19 AM,800 Block of BUSH ST,SF,94108,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",133470012-82 +160673470,61,16026932,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:41:21 PM,03/07/2016 10:42:18 PM,03/07/2016 10:42:34 PM,03/07/2016 10:42:50 PM,03/07/2016 10:53:53 PM,03/07/2016 11:20:42 PM,03/07/2016 11:28:11 PM,Code 2 Transport,03/08/2016 12:06:47 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160673470-61 +131160312,AM18,13039199,Medical Incident,04/26/2013,04/26/2013,04/26/2013 11:39:29 PM,04/26/2013 11:40:04 PM,04/26/2013 11:41:30 PM,04/26/2013 11:42:07 PM,04/26/2013 11:48:55 PM,04/27/2013 12:00:04 AM,04/27/2013 12:06:23 AM,Code 2 Transport,04/27/2013 12:24:15 AM,EDDY ST/MASON ST,SF,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",131160312-AM18 +123280342,E38,12109238,Medical Incident,11/23/2012,11/23/2012,11/23/2012 10:51:25 PM,11/23/2012 10:53:19 PM,11/23/2012 10:53:48 PM,11/23/2012 10:54:55 PM,11/23/2012 10:58:49 PM,11/23/2012 11:14:29 PM,11/23/2012 11:17:09 PM,Other,11/23/2012 11:22:19 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",123280342-E38 +121100189,E13,12036380,Traffic Collision,04/19/2012,04/19/2012,04/19/2012 12:55:42 PM,04/19/2012 12:57:14 PM,04/19/2012 12:58:36 PM,04/19/2012 12:59:37 PM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/25/2016 01:59:06 PM,HARRISON ST/2ND ST,SF,94105,B03,8,2151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7843110117006, -122.395160623078)",121100189-E13 +111560340,E16,11051701,Traffic Collision,06/05/2011,06/05/2011,06/05/2011 07:19:38 PM,06/05/2011 07:19:38 PM,06/05/2011 07:20:01 PM,06/05/2011 07:21:25 PM,06/05/2011 07:23:50 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,No Merit,06/05/2011 07:35:39 PM,FILBERT ST/FRANKLIN ST,SF,94123,B04,16,3146,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.799275669307, -122.425813533209)",111560340-E16 +131880360,E01,13064256,Medical Incident,07/07/2013,07/07/2013,07/07/2013 10:38:37 PM,07/07/2013 10:40:39 PM,07/07/2013 10:41:34 PM,07/07/2013 10:42:42 PM,07/07/2013 10:46:45 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,No Merit,07/07/2013 10:48:38 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",131880360-E01 +102470042,E13,10077959,Medical Incident,09/04/2010,09/03/2010,09/04/2010 03:29:30 AM,09/04/2010 03:31:17 AM,09/04/2010 03:31:38 AM,09/04/2010 03:33:24 AM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/04/2010 03:35:54 AM,400 Block of BUSH ST,SF,94108,B01,13,1315,1,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7906704035857, -122.405181396784)",102470042-E13 +131560350,68,13053046,Medical Incident,06/05/2013,06/05/2013,06/05/2013 09:10:44 PM,06/05/2013 09:11:32 PM,06/05/2013 09:11:52 PM,06/05/2013 09:12:41 PM,06/05/2013 09:15:51 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Patient Declined Transport,06/05/2013 09:34:53 PM,HUDSON AV/CASHMERE ST,SF,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",131560350-68 +133330240,85,13113012,Medical Incident,11/29/2013,11/29/2013,11/29/2013 06:34:53 PM,11/29/2013 06:36:32 PM,11/29/2013 06:36:50 PM,11/29/2013 06:37:08 PM,11/29/2013 06:43:17 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Patient Declined Transport,11/29/2013 07:21:55 PM,100 Block of EL VERANO WAY,SF,94127,B09,15,8547,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7306626236043, -122.46146141525)",133330240-85 +102650120,AM08,10083828,Medical Incident,09/22/2010,09/22/2010,09/22/2010 11:24:29 AM,09/22/2010 11:26:58 AM,09/22/2010 11:27:10 AM,09/22/2010 11:28:18 AM,09/22/2010 11:31:39 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,No Merit,09/22/2010 11:32:32 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7815063666429, -122.407932868203)",102650120-AM08 +160220181,79,16008625,Medical Incident,01/22/2016,01/21/2016,01/22/2016 01:45:27 AM,01/22/2016 01:45:27 AM,01/22/2016 01:45:42 AM,01/22/2016 01:45:56 AM,01/22/2016 02:08:55 AM,01/22/2016 02:27:59 AM,01/22/2016 02:36:42 AM,Code 2 Transport,01/22/2016 03:10:56 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160220181-79 +112080328,55,11068813,Medical Incident,07/27/2011,07/27/2011,07/27/2011 08:36:22 PM,07/27/2011 08:38:58 PM,07/27/2011 08:39:12 PM,07/27/2011 08:40:18 PM,07/27/2011 08:41:59 PM,07/27/2011 08:52:51 PM,07/27/2011 08:55:43 PM,Code 2 Transport,07/27/2011 09:31:57 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7528524062967, -122.408188967839)",112080328-55 +160833796,68,16033142,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:41:11 PM,03/23/2016 08:45:10 PM,03/23/2016 08:45:27 PM,03/23/2016 08:45:34 PM,03/23/2016 09:00:03 PM,03/23/2016 09:11:23 PM,03/23/2016 09:35:09 PM,Code 2 Transport,03/23/2016 09:51:49 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",160833796-68 +160541189,70,16021525,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:26:40 AM,02/23/2016 10:27:31 AM,02/23/2016 10:27:42 AM,02/23/2016 10:27:50 AM,02/23/2016 10:33:35 AM,02/23/2016 10:48:01 AM,02/23/2016 11:07:52 AM,Code 2 Transport,02/23/2016 12:17:18 PM,0 Block of 2ND ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7886675869095, -122.400529034534)",160541189-70 +160110458,AM02,16004271,Medical Incident,01/11/2016,01/10/2016,01/11/2016 05:51:36 AM,01/11/2016 05:52:38 AM,01/11/2016 05:52:52 AM,01/11/2016 05:53:43 AM,01/11/2016 06:12:54 AM,01/11/2016 06:33:31 AM,01/11/2016 07:00:33 AM,Code 2 Transport,01/11/2016 07:43:54 AM,0 Block of HUNTINGTON DR,San Francisco,94132,B08,19,8825,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Sunset/Parkside,"(37.7308419656662, -122.495954672576)",160110458-AM02 +160170988,AM08,16006766,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:41:16 AM,01/17/2016 09:41:16 AM,01/17/2016 09:42:19 AM,01/17/2016 09:43:44 AM,01/17/2016 09:57:45 AM,01/17/2016 09:57:53 AM,01/17/2016 10:11:57 AM,Code 2 Transport,01/17/2016 10:34:13 AM,PACIFIC AV/COLUMBUS AV,San Francisco,94133,B01,13,1246,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7970645895846, -122.405512936752)",160170988-AM08 +123610345,79,12120949,Traffic Collision,12/26/2012,12/26/2012,12/26/2012 08:14:42 PM,12/26/2012 08:14:42 PM,12/26/2012 08:15:27 PM,12/26/2012 08:15:40 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 08:20:39 PM,CALIFORNIA ST/BATTERY ST,SF,94111,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",123610345-79 +120740184,E13,12024547,Alarms,03/14/2012,03/14/2012,03/14/2012 12:06:08 PM,03/14/2012 12:07:23 PM,03/14/2012 12:07:34 PM,03/14/2012 12:08:19 PM,03/14/2012 12:13:11 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/14/2012 12:20:39 PM,800 Block of FOLSOM ST,SF,94103,B03,1,2215,3,3,3,true,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7811835585525, -122.402322293906)",120740184-E13 +112950204,RC3,11097856,Medical Incident,10/22/2011,10/22/2011,10/22/2011 02:58:37 PM,10/22/2011 02:59:16 PM,10/22/2011 03:01:04 PM,04/25/2016 02:02:02 PM,10/22/2011 03:24:32 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 03:28:58 PM,1400 Block of REVERE AVE,SF,94124,B10,17,6571,3,3,3,true,,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7301191034184, -122.387315155313)",112950204-RC3 +103440167,KM01,10110194,Medical Incident,12/10/2010,12/10/2010,12/10/2010 11:21:46 AM,12/10/2010 11:22:54 AM,12/10/2010 11:23:45 AM,12/10/2010 11:25:44 AM,12/10/2010 11:41:36 AM,12/10/2010 11:53:06 AM,12/10/2010 12:08:56 PM,Code 2 Transport,12/10/2010 12:44:15 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,,1,PRIVATE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",103440167-KM01 +102960129,E15,10094384,Medical Incident,10/23/2010,10/23/2010,10/23/2010 11:07:06 AM,10/23/2010 11:07:32 AM,10/23/2010 11:07:55 AM,10/23/2010 11:08:39 AM,10/23/2010 11:10:12 AM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 11:17:05 AM,500 Block of NIAGARA AVE,SF,94112,B09,15,8312,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7199678711509, -122.448978601482)",102960129-E15 +160561427,85,16022345,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:03:30 AM,02/25/2016 11:05:17 AM,02/25/2016 11:05:34 AM,02/25/2016 11:05:48 AM,02/25/2016 11:31:51 AM,02/25/2016 11:31:52 AM,02/25/2016 11:52:38 AM,Code 2 Transport,02/25/2016 01:04:10 PM,0 Block of LAPHAM WAY,San Francisco,94112,B09,43,6236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7093116547795, -122.428696423047)",160561427-85 +123160174,T15,12105156,Structure Fire,11/11/2012,11/11/2012,11/11/2012 12:51:38 PM,11/11/2012 12:51:38 PM,11/11/2012 12:53:02 PM,11/11/2012 12:54:04 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/11/2012 12:54:47 PM,MOSCOW ST/ITALY AV,SF,94134,B09,43,6161,3,3,3,false,Alarm,1,TRUCK,3,9,11,Excelsior,"(37.7150382199173, -122.432323401646)",123160174-T15 +130040167,B02,13001333,Alarms,01/04/2013,01/04/2013,01/04/2013 11:06:08 AM,01/04/2013 11:07:24 AM,01/04/2013 11:07:33 AM,01/04/2013 11:09:43 AM,01/04/2013 11:12:19 AM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Fire,01/04/2013 11:16:16 AM,700 Block of FULTON ST,SF,94102,B05,5,3521,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",130040167-B02 +112780278,B01,11092108,Structure Fire,10/05/2011,10/05/2011,10/05/2011 05:49:33 PM,10/05/2011 05:50:26 PM,10/05/2011 05:50:49 PM,10/05/2011 05:51:49 PM,10/05/2011 05:54:41 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 05:58:35 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,,1,CHIEF,4,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",112780278-B01 +112990038,T10,11099082,Structure Fire,10/26/2011,10/25/2011,10/26/2011 05:03:32 AM,10/26/2011 05:04:22 AM,10/26/2011 05:05:19 AM,10/26/2011 05:07:45 AM,10/26/2011 05:11:28 AM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 05:31:31 AM,600 Block of 6TH AVE,SF,94118,B07,31,7123,3,3,3,false,,1,TRUCK,5,7,1,Inner Richmond,"(37.776298721061, -122.464012148208)",112990038-T10 +111270162,KM12,11042026,Medical Incident,05/07/2011,05/07/2011,05/07/2011 12:54:00 PM,05/07/2011 12:54:25 PM,05/07/2011 12:54:50 PM,05/07/2011 12:55:12 PM,05/07/2011 12:59:00 PM,05/07/2011 01:11:27 PM,05/07/2011 01:52:43 PM,Code 2 Transport,05/07/2011 02:09:51 PM,1600 Block of BAY SHORE BLVD,SF,94124,B10,44,6542,2,2,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7220922733519, -122.400087817543)",111270162-KM12 +112610325,81,11086272,Medical Incident,09/18/2011,09/18/2011,09/18/2011 08:38:54 PM,09/18/2011 08:40:46 PM,09/18/2011 08:40:57 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,04/25/2016 02:02:36 PM,1800 Block of 25TH ST,SF,94107,B10,37,2615,1,3,3,true,,1,MEDIC,4,10,10,Potrero Hill,"(37.7523071859772, -122.397488168993)",112610325-81 +160753435,AM12,16029869,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:49:04 PM,03/15/2016 07:49:04 PM,03/15/2016 07:49:17 PM,03/15/2016 07:49:47 PM,03/15/2016 08:28:12 PM,03/15/2016 08:28:15 PM,03/15/2016 08:43:34 PM,Code 2 Transport,03/15/2016 09:29:07 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160753435-AM12 +111440300,E10,11047954,Medical Incident,05/24/2011,05/24/2011,05/24/2011 06:52:36 PM,05/24/2011 06:54:01 PM,05/24/2011 06:54:15 PM,05/24/2011 06:56:35 PM,05/24/2011 06:58:27 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/24/2011 07:57:22 PM,SACRAMENTO ST/CHERRY ST,SF,94118,B07,10,4441,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7869282192113, -122.45687451949)",111440300-E10 +160351657,92,16013816,Medical Incident,02/04/2016,02/04/2016,02/04/2016 12:16:18 PM,02/04/2016 12:16:23 PM,02/04/2016 12:17:03 PM,02/04/2016 12:17:21 PM,02/04/2016 12:19:40 PM,02/04/2016 12:42:02 PM,02/04/2016 12:51:13 PM,Code 2 Transport,02/04/2016 01:40:30 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160351657-92 +103230039,B04,10103366,Alarms,11/19/2010,11/18/2010,11/19/2010 04:48:55 AM,11/19/2010 04:50:44 AM,11/19/2010 04:51:10 AM,11/19/2010 04:52:39 AM,11/19/2010 04:54:58 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/19/2010 05:08:28 AM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",103230039-B04 +160812745,63,16032282,Medical Incident,03/21/2016,03/21/2016,03/21/2016 05:03:36 PM,03/21/2016 05:05:06 PM,03/21/2016 05:06:10 PM,03/21/2016 05:06:23 PM,03/21/2016 05:16:28 PM,03/21/2016 05:37:07 PM,03/21/2016 06:02:54 PM,Code 2 Transport,03/21/2016 06:40:23 PM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160812745-63 +120810306,KM07,12026987,Medical Incident,03/21/2012,03/21/2012,03/21/2012 06:03:58 PM,03/21/2012 06:05:00 PM,03/21/2012 06:05:23 PM,03/21/2012 06:06:04 PM,03/21/2012 06:08:33 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Unable to Locate,03/21/2012 06:09:38 PM,FRANKLIN ST/GEARY BL,SF,94109,B04,3,3222,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7854822436864, -122.423027555652)",120810306-KM07 +132640215,T01,13089528,Gas Leak (Natural and LP Gases),09/21/2013,09/21/2013,09/21/2013 12:39:19 PM,09/21/2013 12:40:28 PM,09/21/2013 12:41:03 PM,09/21/2013 12:43:06 PM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Other,09/21/2013 12:45:40 PM,500 Block of POWELL ST,SF,94108,B01,2,1361,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7895480762148, -122.408590897717)",132640215-T01 +160673438,AM14,16026930,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:31:53 PM,03/07/2016 10:31:53 PM,03/07/2016 10:32:20 PM,03/07/2016 10:32:51 PM,03/07/2016 10:44:27 PM,03/07/2016 11:03:14 PM,03/07/2016 11:29:34 PM,Code 2 Transport,03/07/2016 11:52:26 PM,FRANKLIN ST/HAYES ST,San Francisco,94102,B02,36,3213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7770909730691, -122.421330432788)",160673438-AM14 +140790295,E02,14026808,Medical Incident,03/20/2014,03/20/2014,03/20/2014 05:23:53 PM,03/20/2014 05:24:25 PM,03/20/2014 05:30:50 PM,03/20/2014 05:30:50 PM,03/20/2014 05:30:50 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,No Merit,03/20/2014 05:37:50 PM,SPEAR ST/MARKET ST,SAN FRANCISCO,94105,B01,13,1113,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",140790295-E02 +133440261,E08,13116717,Medical Incident,12/10/2013,12/10/2013,12/10/2013 02:54:43 PM,12/10/2013 02:56:20 PM,12/10/2013 02:58:31 PM,12/10/2013 02:59:58 PM,12/10/2013 03:07:45 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 03:12:47 PM,700 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",133440261-E08 +130510130,E07,13017218,Medical Incident,02/20/2013,02/20/2013,02/20/2013 10:25:47 AM,02/20/2013 10:27:02 AM,02/20/2013 10:32:08 AM,02/20/2013 10:32:08 AM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Other,02/20/2013 10:34:23 AM,900 Block of ALABAMA ST,SF,94110,B06,7,545,3,2,2,true,Non Life-threatening,1,ENGINE,4,6,9,Mission,"(37.7566821047653, -122.41141748085)",130510130-E07 +103190258,E36,10102307,Medical Incident,11/15/2010,11/15/2010,11/15/2010 03:33:25 PM,11/15/2010 03:33:56 PM,11/15/2010 03:34:12 PM,11/15/2010 03:35:42 PM,11/15/2010 03:37:22 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 03:45:54 PM,OTIS ST/GOUGH ST,SF,94103,B02,36,5125,3,3,3,false,,1,ENGINE,1,2,6,Mission,"(37.7717702499037, -122.420344369487)",103190258-E36 +120210125,92,12007066,Medical Incident,01/21/2012,01/21/2012,01/21/2012 07:59:04 AM,01/21/2012 08:01:11 AM,01/21/2012 08:03:18 AM,01/21/2012 08:03:29 AM,01/21/2012 08:15:20 AM,01/21/2012 08:30:09 AM,01/21/2012 08:37:59 AM,Code 2 Transport,01/21/2012 09:05:39 AM,BAYSHORE BL/HELENA ST,SF,94134,B10,42,6364,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7363086049464, -122.406703835668)",120210125-92 +133570310,E37,13121475,Citizen Assist / Service Call,12/23/2013,12/23/2013,12/23/2013 07:39:30 PM,12/23/2013 07:42:06 PM,12/23/2013 07:42:46 PM,12/23/2013 07:43:57 PM,12/23/2013 07:46:05 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 08:00:20 PM,1700 Block of 25TH ST,SF,94107,B10,37,2614,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7523945846734, -122.396035863128)",133570310-E37 +110530129,E08,11017474,Medical Incident,02/22/2011,02/22/2011,02/22/2011 11:10:56 AM,02/22/2011 11:12:09 AM,02/22/2011 11:12:23 AM,02/22/2011 11:13:23 AM,02/22/2011 11:15:32 AM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 11:21:09 AM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",110530129-E08 +133070161,KM12,13104363,Medical Incident,11/03/2013,11/03/2013,11/03/2013 11:36:04 AM,11/03/2013 11:36:21 AM,11/03/2013 11:36:43 AM,11/03/2013 11:37:58 AM,11/03/2013 11:46:53 AM,11/03/2013 11:53:49 AM,11/03/2013 12:21:57 PM,Code 2 Transport,11/03/2013 12:38:49 PM,20TH ST/3RD ST,SF,94107,B03,29,2466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",133070161-KM12 +131170129,T05,13039309,Alarms,04/27/2013,04/27/2013,04/27/2013 10:51:54 AM,04/27/2013 10:53:25 AM,04/27/2013 10:53:36 AM,04/27/2013 10:55:25 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/27/2013 11:03:42 AM,1700 Block of OFARRELL ST,SF,94115,B04,5,3623,3,3,3,false,Alarm,1,TRUCK,3,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",131170129-T05 +140780067,88,14026295,Medical Incident,03/19/2014,03/18/2014,03/19/2014 07:07:40 AM,03/19/2014 07:08:48 AM,03/19/2014 07:09:01 AM,03/19/2014 07:09:41 AM,03/19/2014 07:14:57 AM,03/19/2014 07:43:36 AM,03/19/2014 07:43:37 AM,Code 2 Transport,03/19/2014 08:16:55 AM,100 Block of CAPP ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",140780067-88 +120570166,AM06,12018789,Medical Incident,02/26/2012,02/26/2012,02/26/2012 11:26:19 AM,02/26/2012 11:28:03 AM,02/26/2012 11:28:23 AM,02/26/2012 11:29:32 AM,02/26/2012 11:40:37 AM,02/26/2012 11:57:34 AM,02/26/2012 12:18:49 PM,Code 2 Transport,02/26/2012 01:25:14 PM,0 Block of STEVENSON ST,SF,94105,B03,1,2144,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7893540721016, -122.400032359721)",120570166-AM06 +160751712,77,16029710,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:43:30 PM,03/15/2016 12:44:51 PM,03/15/2016 12:45:12 PM,03/15/2016 12:45:40 PM,03/15/2016 01:16:45 PM,03/15/2016 01:16:48 PM,03/15/2016 01:39:28 PM,Code 2 Transport,03/15/2016 02:16:13 PM,100 Block of CANYON DR,San Francisco,94112,B09,43,6235,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7090926289518, -122.431337133991)",160751712-77 +160741109,KM02,16029269,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:57:28 AM,03/14/2016 09:58:38 AM,03/14/2016 09:59:27 AM,03/14/2016 09:59:57 AM,03/14/2016 10:14:25 AM,03/14/2016 10:14:27 AM,03/14/2016 10:32:52 AM,Code 2 Transport,03/14/2016 10:57:28 AM,MARKET ST/CALIFORNIA ST,San Francisco,94105,B01,13,1113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7931042858925, -122.396312555212)",160741109-KM02 +103050096,KM12,10097421,Medical Incident,11/01/2010,10/31/2010,11/01/2010 07:28:44 AM,11/01/2010 07:30:30 AM,11/01/2010 07:58:44 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,04/25/2016 02:07:49 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,false,,1,PRIVATE,4,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",103050096-KM12 +160432663,KM06,16017385,Medical Incident,02/12/2016,02/12/2016,02/12/2016 04:56:04 PM,02/12/2016 04:56:26 PM,02/12/2016 04:56:52 PM,02/12/2016 04:57:29 PM,02/12/2016 05:07:12 PM,02/12/2016 05:24:18 PM,02/12/2016 05:37:01 PM,Code 2 Transport,02/12/2016 06:06:24 PM,TAYLOR ST/EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",160432663-KM06 +132370051,T03,13079839,Alarms,08/25/2013,08/24/2013,08/25/2013 03:05:33 AM,08/25/2013 03:06:51 AM,08/25/2013 03:07:12 AM,08/25/2013 03:09:38 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,04/25/2016 01:51:08 PM,1300 Block of VAN NESS AVE,SF,94109,B04,3,3156,3,3,3,false,Alarm,1,TRUCK,3,4,3,Nob Hill,"(37.7882889208706, -122.421732731473)",132370051-T03 +131860393,67,13063607,Medical Incident,07/05/2013,07/05/2013,07/05/2013 09:38:19 PM,07/05/2013 09:38:38 PM,07/05/2013 09:38:54 PM,07/05/2013 09:39:03 PM,07/05/2013 09:46:59 PM,07/05/2013 10:13:54 PM,07/05/2013 10:27:28 PM,Code 2 Transport,07/05/2013 10:50:41 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",131860393-67 +122750219,KM12,12090765,Medical Incident,10/01/2012,10/01/2012,10/01/2012 01:52:58 PM,10/01/2012 01:55:14 PM,10/01/2012 01:55:38 PM,10/01/2012 01:56:22 PM,04/25/2016 01:56:31 PM,04/25/2016 01:56:31 PM,04/25/2016 01:56:31 PM,Other,04/25/2016 01:56:31 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7803475492385, -122.406487967809)",122750219-KM12 +160841485,54,16033343,Medical Incident,03/24/2016,03/24/2016,03/24/2016 11:10:16 AM,03/24/2016 11:10:16 AM,03/24/2016 11:10:59 AM,03/24/2016 11:13:33 AM,03/24/2016 11:16:06 AM,03/24/2016 11:35:22 AM,03/24/2016 12:06:13 PM,Code 2 Transport,03/24/2016 12:51:42 PM,400 Block of TEHAMA ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.78023451932, -122.405564838884)",160841485-54 +123590063,E02,12120077,Alarms,12/24/2012,12/23/2012,12/24/2012 06:23:27 AM,12/24/2012 06:25:42 AM,12/24/2012 06:25:58 AM,12/24/2012 06:29:26 AM,12/24/2012 06:30:59 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 06:35:29 AM,500 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7910048906559, -122.407192484843)",123590063-E02 +111640095,E38,11054063,Structure Fire,06/13/2011,06/13/2011,06/13/2011 08:39:01 AM,06/13/2011 08:39:01 AM,06/13/2011 08:39:23 AM,06/13/2011 08:40:22 AM,06/13/2011 08:43:05 AM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/13/2011 08:46:28 AM,2700 Block of CALIFORNIA ST,SF,94115,B04,38,412,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7881185452243, -122.439595812264)",111640095-E38 +160870951,57,16034506,Medical Incident,03/27/2016,03/27/2016,03/27/2016 08:31:20 AM,03/27/2016 08:33:49 AM,03/27/2016 08:34:03 AM,03/27/2016 08:34:35 AM,03/27/2016 08:37:16 AM,03/27/2016 08:46:19 AM,03/27/2016 09:13:35 AM,Code 2 Transport,03/27/2016 09:21:10 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7627519882568, -122.42160967399)",160870951-57 +160261254,56,16010254,Medical Incident,01/26/2016,01/26/2016,01/26/2016 10:14:02 AM,01/26/2016 10:14:02 AM,01/26/2016 10:14:12 AM,01/26/2016 10:15:08 AM,01/26/2016 10:26:55 AM,01/26/2016 10:48:52 AM,01/26/2016 11:06:52 AM,Code 2 Transport,01/26/2016 11:57:42 AM,0 Block of BURLWOOD DR,San Francisco,94127,B09,39,8251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7347598143379, -122.454363730782)",160261254-56 +130260239,E13,13009022,Medical Incident,01/26/2013,01/26/2013,01/26/2013 03:41:48 PM,01/26/2013 03:42:03 PM,01/26/2013 03:42:23 PM,01/26/2013 03:43:28 PM,01/26/2013 03:45:03 PM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/26/2013 03:50:43 PM,BEALE ST/MARKET ST,SF,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,Financial District/South Beach,"(37.7924055206042, -122.397383447066)",130260239-E13 +160123189,85,16004904,Medical Incident,01/12/2016,01/12/2016,01/12/2016 07:08:50 PM,01/12/2016 07:11:51 PM,01/12/2016 07:25:54 PM,01/12/2016 07:26:04 PM,01/12/2016 07:38:03 PM,01/12/2016 07:46:00 PM,01/12/2016 08:03:38 PM,Code 2 Transport,01/12/2016 08:37:40 PM,DORE ST/BRYANT ST,San Francisco,94103,B03,29,2333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7708202419377, -122.409134369165)",160123189-85 +160511365,89,16020442,Medical Incident,02/20/2016,02/20/2016,02/20/2016 11:44:17 AM,02/20/2016 11:44:53 AM,02/20/2016 11:47:31 AM,02/20/2016 11:47:46 AM,02/20/2016 12:01:08 PM,02/20/2016 12:09:25 PM,02/20/2016 12:21:13 PM,Code 2 Transport,02/20/2016 01:06:48 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160511365-89 +140040233,KM10,14001493,Medical Incident,01/04/2014,01/04/2014,01/04/2014 03:25:05 PM,01/04/2014 03:26:11 PM,01/04/2014 03:26:31 PM,01/04/2014 03:27:17 PM,01/04/2014 03:31:45 PM,01/04/2014 03:48:33 PM,01/04/2014 04:07:27 PM,Code 2 Transport,01/04/2014 04:31:42 PM,900 Block of HURON AVE,SF,94112,B09,33,8354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7097377270817, -122.452626148465)",140040233-KM10 +120070342,E08,12002558,Alarms,01/07/2012,01/07/2012,01/07/2012 09:14:49 PM,01/07/2012 09:16:12 PM,01/07/2012 09:18:08 PM,01/07/2012 09:19:19 PM,01/07/2012 09:22:00 PM,04/25/2016 02:00:44 PM,04/25/2016 02:00:44 PM,Other,01/07/2012 09:30:01 PM,800 Block of THE EMBARCADERO,SF,94111,B03,35,940,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",120070342-E08 +132040219,RC2,13069124,Medical Incident,07/23/2013,07/23/2013,07/23/2013 02:49:37 PM,07/23/2013 02:51:22 PM,07/23/2013 02:53:20 PM,04/25/2016 01:51:40 PM,07/23/2013 03:00:02 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 03:19:18 PM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,2,Presidio,"(37.8012720767056, -122.453377012346)",132040219-RC2 +122770056,RS1,12091424,Water Rescue,10/03/2012,10/02/2012,10/03/2012 06:02:46 AM,10/03/2012 06:02:47 AM,10/03/2012 06:03:55 AM,10/03/2012 06:06:49 AM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 06:12:57 AM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,3,3,3,false,Fire,1,RESCUE SQUAD,7,1,3,North Beach,"(37.8084350175869, -122.410774214375)",122770056-RS1 +122260184,RC2,12074916,Medical Incident,08/13/2012,08/13/2012,08/13/2012 12:09:20 PM,08/13/2012 12:12:19 PM,08/13/2012 12:12:32 PM,04/25/2016 01:57:15 PM,08/13/2012 12:15:04 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 12:22:47 PM,4900 Block of CALIFORNIA ST,SF,94118,B07,31,7147,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,7,1,Inner Richmond,"(37.7846034684534, -122.470448587211)",122260184-RC2 +140130360,T13,14004613,Structure Fire,01/13/2014,01/13/2014,01/13/2014 09:15:22 PM,01/13/2014 09:15:22 PM,01/13/2014 09:15:40 PM,01/13/2014 09:16:50 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Fire,01/13/2014 09:32:31 PM,GRANT AV/CLAY ST,SF,94108,B01,13,1313,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7942636257508, -122.406304988112)",140130360-T13 +102760400,60,10087925,Medical Incident,10/03/2010,10/03/2010,10/03/2010 11:48:48 PM,10/03/2010 11:49:44 PM,10/03/2010 11:49:52 PM,10/03/2010 11:50:04 PM,10/04/2010 12:04:47 AM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Patient Declined Transport,10/04/2010 12:34:46 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",102760400-60 +160911103,KM01,16036020,Medical Incident,03/31/2016,03/31/2016,03/31/2016 10:10:08 AM,03/31/2016 10:12:12 AM,03/31/2016 10:12:44 AM,03/31/2016 10:12:44 AM,03/31/2016 10:20:29 AM,03/31/2016 10:37:07 AM,03/31/2016 10:58:45 AM,Code 2 Transport,03/31/2016 11:34:59 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160911103-KM01 +120360090,87,12011917,Medical Incident,02/05/2012,02/04/2012,02/05/2012 06:27:06 AM,02/05/2012 06:27:44 AM,02/05/2012 06:28:03 AM,02/05/2012 06:28:24 AM,02/05/2012 06:34:48 AM,02/05/2012 06:56:17 AM,02/05/2012 07:20:14 AM,Code 2 Transport,02/05/2012 07:42:50 AM,800 Block of 46TH AVE,SF,94121,B07,34,7277,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7724779182768, -122.506684203589)",120360090-87 +132530345,T10,13085623,Structure Fire,09/10/2013,09/10/2013,09/10/2013 09:38:42 PM,09/10/2013 09:40:50 PM,09/10/2013 09:40:56 PM,09/10/2013 09:42:14 PM,09/10/2013 09:43:24 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 09:59:15 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",132530345-T10 +112480168,E03,11081774,Medical Incident,09/05/2011,09/05/2011,09/05/2011 12:00:55 PM,09/05/2011 12:01:36 PM,09/05/2011 12:02:03 PM,09/05/2011 12:03:13 PM,09/05/2011 12:03:21 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Patient Declined Transport,09/05/2011 12:10:56 PM,CEDAR ST/LARKIN ST,SF,94109,B04,3,1641,2,2,2,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7865659835783, -122.418178854944)",112480168-E03 +130420139,E05,13014289,Medical Incident,02/11/2013,02/11/2013,02/11/2013 11:34:43 AM,02/11/2013 11:35:31 AM,02/11/2013 11:35:41 AM,02/11/2013 11:36:22 AM,02/11/2013 11:38:06 AM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,No Merit,02/11/2013 11:41:53 AM,700 Block of MCALLISTER ST,SF,94102,B02,5,3316,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.779520032299, -122.425195823386)",130420139-E05 +120410330,E13,12013790,Administrative,02/10/2012,02/10/2012,02/10/2012 07:41:49 PM,02/10/2012 07:41:52 PM,02/10/2012 07:42:29 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 07:43:09 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",120410330-E13 +121550007,E26,12051165,Medical Incident,06/03/2012,06/02/2012,06/03/2012 12:19:15 AM,06/03/2012 12:22:34 AM,06/03/2012 12:24:53 AM,06/03/2012 12:27:36 AM,06/03/2012 12:30:41 AM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/03/2012 12:38:33 AM,100 Block of MANGELS AVE,SF,94131,B09,26,8216,3,3,3,true,Non Life-threatening,1,ENGINE,2,9,8,West of Twin Peaks,"(37.7330459737615, -122.44145226654)",121550007-E26 +111870334,E14,11061950,Medical Incident,07/06/2011,07/06/2011,07/06/2011 08:16:19 PM,07/06/2011 08:16:36 PM,07/06/2011 08:17:39 PM,07/06/2011 08:19:07 PM,07/06/2011 08:21:27 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/06/2011 08:26:31 PM,200 Block of 18TH AVE,SF,94121,B07,31,7162,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.783294686314, -122.477372735277)",111870334-E14 +112440046,E41,11080338,Medical Incident,09/01/2011,08/31/2011,09/01/2011 05:31:56 AM,09/01/2011 05:32:32 AM,09/01/2011 05:32:53 AM,09/01/2011 05:36:03 AM,09/01/2011 05:37:05 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 05:41:47 AM,CLAY ST/POLK ST,SF,94109,B04,41,1634,3,3,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7923832522829, -122.421052874002)",112440046-E41 +121010283,B04,12033564,Alarms,04/10/2012,04/10/2012,04/10/2012 05:44:16 PM,04/10/2012 05:45:06 PM,04/10/2012 05:45:20 PM,04/10/2012 05:47:43 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 05:51:07 PM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",121010283-B04 +103360066,E31,10107397,Medical Incident,12/02/2010,12/01/2010,12/02/2010 07:38:45 AM,12/02/2010 07:39:41 AM,12/02/2010 07:40:04 AM,12/02/2010 07:40:20 AM,12/02/2010 07:42:49 AM,12/02/2010 07:59:56 AM,04/25/2016 02:07:20 PM,Other,12/02/2010 08:26:03 AM,200 Block of 19TH AVE,SF,94121,B07,31,7164,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7832443393406, -122.478442077544)",103360066-E31 +121190141,E05,12039443,Medical Incident,04/28/2012,04/28/2012,04/28/2012 11:35:37 AM,04/28/2012 11:36:44 AM,04/28/2012 11:37:01 AM,04/28/2012 11:37:41 AM,04/28/2012 11:39:11 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 11:47:26 AM,2200 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7843705673053, -122.438841200784)",121190141-E05 +111170095,B09,11038549,Alarms,04/27/2011,04/27/2011,04/27/2011 09:56:19 AM,04/27/2011 09:56:52 AM,04/27/2011 09:56:59 AM,04/27/2011 09:58:01 AM,04/27/2011 10:02:39 AM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 10:10:43 AM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",111170095-B09 +160012434,KM02,16000375,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:09:42 PM,01/01/2016 03:14:29 PM,01/01/2016 03:14:46 PM,01/01/2016 03:17:30 PM,01/01/2016 03:59:02 PM,01/01/2016 03:59:04 PM,01/01/2016 04:24:48 PM,Code 2 Transport,01/01/2016 05:02:18 PM,5600 Block of FULTON ST,San Francisco,94121,B07,14,7243,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7722578492323, -122.492228684689)",160012434-KM02 +121500219,E41,12049777,Medical Incident,05/29/2012,05/29/2012,05/29/2012 03:18:53 PM,05/29/2012 03:18:56 PM,05/29/2012 03:19:10 PM,05/29/2012 03:20:50 PM,05/29/2012 03:22:24 PM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/29/2012 03:24:08 PM,2100 Block of SACRAMENTO ST,SF,94109,B04,38,3326,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.790617450871, -122.428280876807)",121500219-E41 +132840005,77,13096471,Medical Incident,10/11/2013,10/10/2013,10/11/2013 12:24:33 AM,10/11/2013 12:26:24 AM,10/11/2013 12:26:42 AM,10/11/2013 12:27:37 AM,10/11/2013 12:50:58 AM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,No Merit,10/11/2013 12:58:33 AM,ULLOA ST/CLAREMONT BL,SF,94127,B08,39,8573,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7406508984156, -122.465036130555)",132840005-77 +130530392,89,13018094,Medical Incident,02/22/2013,02/22/2013,02/22/2013 11:28:31 PM,02/22/2013 11:29:50 PM,02/22/2013 11:30:43 PM,02/22/2013 11:34:13 PM,02/22/2013 11:37:43 PM,02/22/2013 11:52:12 PM,02/22/2013 11:58:38 PM,Code 2 Transport,02/23/2013 12:30:24 AM,1800 Block of BALBOA ST,SF,94121,B07,14,7171,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7766256276294, -122.478573783403)",130530392-89 +132280409,84,13077148,Medical Incident,08/16/2013,08/16/2013,08/16/2013 11:09:27 PM,08/16/2013 11:11:57 PM,08/16/2013 11:12:51 PM,08/16/2013 11:12:57 PM,08/16/2013 11:20:13 PM,08/16/2013 11:41:34 PM,08/17/2013 12:00:04 AM,Code 2 Transport,08/17/2013 12:39:13 AM,800 Block of NORTH POINT ST,SF,94109,B01,28,1623,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.805662586176, -122.421199675724)",132280409-84 +123080215,KM10,12102422,Medical Incident,11/03/2012,11/03/2012,11/03/2012 03:59:49 PM,11/03/2012 04:01:00 PM,11/03/2012 04:02:04 PM,11/03/2012 04:02:47 PM,11/03/2012 04:11:43 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,No Merit,11/03/2012 04:21:41 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",123080215-KM10 +140170379,T08,14006000,Alarms,01/17/2014,01/17/2014,01/17/2014 11:06:13 PM,01/17/2014 11:07:40 PM,01/17/2014 11:07:54 PM,01/17/2014 11:09:16 PM,01/17/2014 11:12:53 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 11:12:55 PM,700 Block of TENNESSEE ST,SF,94107,B03,29,2465,3,3,3,false,Alarm,1,TRUCK,1,10,10,Potrero Hill,"(37.7623526426806, -122.389601295426)",140170379-T08 +130970253,E01,13032594,Structure Fire,04/07/2013,04/07/2013,04/07/2013 04:32:18 PM,04/07/2013 04:33:02 PM,04/07/2013 04:34:34 PM,04/07/2013 04:34:44 PM,04/07/2013 04:35:03 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 05:18:27 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",130970253-E01 +132390211,85,13080638,Medical Incident,08/27/2013,08/27/2013,08/27/2013 02:06:05 PM,08/27/2013 02:06:29 PM,08/27/2013 02:06:55 PM,08/27/2013 02:07:32 PM,08/27/2013 02:21:46 PM,08/27/2013 02:24:00 PM,08/27/2013 02:34:37 PM,Code 2 Transport,08/27/2013 03:03:13 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",132390211-85 +131200223,88,13040410,Medical Incident,04/30/2013,04/30/2013,04/30/2013 05:12:36 PM,04/30/2013 05:14:57 PM,04/30/2013 05:16:50 PM,04/30/2013 05:16:58 PM,04/30/2013 05:33:40 PM,04/30/2013 06:01:29 PM,04/30/2013 06:30:42 PM,Code 2 Transport,04/30/2013 07:01:14 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",131200223-88 +102640228,RS2,10083582,Medical Incident,09/21/2010,09/21/2010,09/21/2010 02:59:03 PM,09/21/2010 03:04:25 PM,09/21/2010 03:05:17 PM,04/25/2016 02:08:29 PM,09/21/2010 03:05:47 PM,04/25/2016 02:08:29 PM,09/21/2010 03:07:05 PM,Other,09/21/2010 03:10:50 PM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,false,,1,RESCUE SQUAD,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",102640228-RS2 +112790133,63,11092307,Medical Incident,10/06/2011,10/06/2011,10/06/2011 10:54:03 AM,10/06/2011 10:54:37 AM,10/06/2011 10:56:11 AM,10/06/2011 10:56:25 AM,10/06/2011 11:06:31 AM,10/06/2011 11:30:55 AM,10/06/2011 11:39:24 AM,Code 2 Transport,10/06/2011 12:17:19 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,2,2,true,,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",112790133-63 +160622381,AM02,16024747,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:57:39 PM,03/02/2016 02:59:08 PM,03/02/2016 03:00:16 PM,03/02/2016 03:00:58 PM,03/02/2016 03:04:39 PM,03/02/2016 03:27:14 PM,03/02/2016 03:38:49 PM,Code 2 Transport,03/02/2016 04:15:07 PM,0 Block of ALADDIN TER,San Francisco,94133,B01,28,1436,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Russian Hill,"(37.8003907605978, -122.413810263469)",160622381-AM02 +123470091,AP,12115943,Other,12/12/2012,12/12/2012,12/12/2012 08:45:12 AM,12/12/2012 08:45:13 AM,12/12/2012 08:45:13 AM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Fire,12/12/2012 08:45:33 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",123470091-AP +120710173,E02,12023606,Alarms,03/11/2012,03/11/2012,03/11/2012 12:29:09 PM,03/11/2012 12:30:06 PM,03/11/2012 12:30:17 PM,03/11/2012 12:31:25 PM,03/11/2012 12:34:21 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/11/2012 12:39:30 PM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8070220097095, -122.418095295202)",120710173-E02 +113480405,AM10,11115653,Medical Incident,12/14/2011,12/14/2011,12/14/2011 11:32:07 PM,12/14/2011 11:32:57 PM,12/14/2011 11:33:24 PM,12/14/2011 11:34:21 PM,12/14/2011 11:40:24 PM,12/14/2011 11:48:48 PM,12/14/2011 11:54:33 PM,Code 2 Transport,12/15/2011 12:14:40 AM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,false,,1,PRIVATE,2,2,6,South of Market,"(37.7748170645635, -122.412845031536)",113480405-AM10 +140710131,E38,14023921,Structure Fire,03/12/2014,03/12/2014,03/12/2014 09:56:56 AM,03/12/2014 09:56:57 AM,03/12/2014 09:57:09 AM,03/12/2014 09:57:21 AM,03/12/2014 09:59:59 AM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Patient Declined Transport,03/12/2014 10:07:28 AM,LAGUNA ST/CALIFORNIA ST,SAN FRANCISCO,94109,B04,38,3362,3,3,3,false,Alarm,1,ENGINE,1,4,5,Pacific Heights,"(37.7895337395648, -122.428905310397)",140710131-E38 +133190160,B06,13108368,Alarms,11/15/2013,11/15/2013,11/15/2013 10:59:04 AM,11/15/2013 11:01:03 AM,11/15/2013 11:01:11 AM,11/15/2013 11:01:20 AM,11/15/2013 11:05:04 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 11:05:11 AM,2800 Block of MISSION ST,SF,94110,B06,11,558,3,3,3,false,Alarm,1,CHIEF,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",133190160-B06 +121790056,E13,12059507,Alarms,06/27/2012,06/26/2012,06/27/2012 05:03:48 AM,06/27/2012 05:04:53 AM,06/27/2012 05:04:57 AM,06/27/2012 05:07:23 AM,06/27/2012 05:08:55 AM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Fire,06/27/2012 05:13:35 AM,500 Block of KEARNY ST,SF,94104,B01,13,1244,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7931109185713, -122.404447655569)",121790056-E13 +72350111,4700,7067351,,08/23/2007,08/23/2007,08/23/2007 09:34:41 AM,08/23/2007 09:35:19 AM,08/23/2007 09:35:28 AM,04/25/2016 03:38:03 PM,04/25/2016 03:38:03 PM,04/25/2016 03:38:03 PM,04/25/2016 03:38:03 PM,Other,08/23/2007 10:03:48 AM,4TH ST/BRYANT ST,SF,94107,B03,8,2217,3,3,3,false,,1,ADMIN,0,3,6,South of Market,"(37.7795669099357, -122.398059940086)",072350111-4700 +102320013,E39,10072883,Alarms,08/20/2010,08/19/2010,08/20/2010 01:51:09 AM,08/20/2010 01:52:26 AM,08/20/2010 01:52:43 AM,08/20/2010 01:54:09 AM,08/20/2010 01:57:56 AM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 02:18:47 AM,400 Block of WAWONA ST,SF,94132,B08,39,7356,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7375196184662, -122.472621186741)",102320013-E39 +140510235,RS1,14017311,Confined Space / Structure Collapse,02/20/2014,02/20/2014,02/20/2014 02:19:52 PM,02/20/2014 02:20:42 PM,02/20/2014 02:21:15 PM,04/25/2016 01:48:06 PM,02/20/2014 02:24:21 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Other,02/20/2014 02:43:41 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Fire,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7908458791509, -122.396300374008)",140510235-RS1 +120590308,E19,12019529,Medical Incident,02/28/2012,02/28/2012,02/28/2012 07:15:03 PM,02/28/2012 07:16:02 PM,02/28/2012 07:16:09 PM,02/28/2012 07:18:25 PM,02/28/2012 07:19:02 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Other,02/28/2012 07:28:10 PM,300 Block of EUCALYPTUS DR,SF,94132,B08,19,8731,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7310536423783, -122.476383904851)",120590308-E19 +123600029,88,12120386,Medical Incident,12/25/2012,12/24/2012,12/25/2012 03:00:33 AM,12/25/2012 03:01:50 AM,12/25/2012 03:02:18 AM,12/25/2012 03:02:51 AM,12/25/2012 03:05:10 AM,12/25/2012 03:39:54 AM,12/25/2012 03:51:50 AM,Code 2 Transport,12/25/2012 04:21:07 AM,700 Block of LARKIN ST,SF,94109,B04,3,1642,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7849474956973, -122.417785340586)",123600029-88 +160411116,KM08,16016390,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:50:00 AM,02/10/2016 09:52:36 AM,02/10/2016 09:54:30 AM,02/10/2016 09:55:28 AM,02/10/2016 10:19:51 AM,02/10/2016 10:45:10 AM,02/10/2016 11:13:14 AM,Code 2 Transport,02/10/2016 11:39:33 AM,2400 Block of 22ND ST,San Francisco,94110,B10,37,2551,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7569318582039, -122.40598450618)",160411116-KM08 +133530147,E03,13119886,Traffic Collision,12/19/2013,12/19/2013,12/19/2013 11:23:20 AM,12/19/2013 11:23:20 AM,12/19/2013 11:23:20 AM,12/19/2013 11:24:52 AM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 12:18:04 PM,OCTAVIA ST/OAK ST,SF,94102,B02,36,3266,2,2,2,true,Non Life-threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7748247940204, -122.42413649936)",133530147-E03 +121550179,B06,12051314,Alarms,06/03/2012,06/03/2012,06/03/2012 12:44:17 PM,06/03/2012 12:45:24 PM,06/03/2012 12:45:31 PM,06/03/2012 12:47:03 PM,06/03/2012 12:50:26 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 12:57:30 PM,600 Block of DOUGLASS ST,SF,94114,B06,24,5516,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",121550179-B06 +160313214,AM10,16012321,Medical Incident,01/31/2016,01/31/2016,01/31/2016 07:34:45 PM,01/31/2016 07:35:58 PM,01/31/2016 07:40:29 PM,01/31/2016 07:41:19 PM,01/31/2016 07:45:04 PM,01/31/2016 07:52:01 PM,01/31/2016 08:09:53 PM,Code 2 Transport,01/31/2016 08:44:50 PM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",160313214-AM10 +113510428,89,11116692,Medical Incident,12/17/2011,12/17/2011,12/17/2011 11:43:56 PM,12/17/2011 11:44:29 PM,12/17/2011 11:44:59 PM,12/17/2011 11:45:15 PM,12/17/2011 11:47:13 PM,12/18/2011 12:09:22 AM,12/18/2011 12:22:38 AM,Code 2 Transport,12/18/2011 12:52:42 AM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,3,3,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",113510428-89 +160772896,82,16030704,Medical Incident,03/17/2016,03/17/2016,03/17/2016 04:48:34 PM,03/17/2016 04:48:34 PM,03/17/2016 04:48:34 PM,03/17/2016 04:48:34 PM,03/17/2016 04:48:34 PM,03/17/2016 05:02:37 PM,03/17/2016 05:22:33 PM,Code 2 Transport,03/17/2016 05:47:58 PM,15TH ST/POTRERO AV,San Francisco,94103,B99,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7670819828491, -122.407685033247)",160772896-82 +132070160,E37,13070056,Explosion,07/26/2013,07/26/2013,07/26/2013 12:21:49 PM,07/26/2013 12:24:03 PM,07/26/2013 12:26:03 PM,07/26/2013 12:27:18 PM,07/26/2013 12:28:58 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/26/2013 12:31:58 PM,CONNECTICUT ST/WISCONSIN ST,SF,94107,B10,37,2565,3,3,3,false,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7536847460271, -122.398593151785)",132070160-E37 +160862948,AM08,16034284,Medical Incident,03/26/2016,03/26/2016,03/26/2016 06:23:24 PM,03/26/2016 06:24:53 PM,03/26/2016 06:25:25 PM,03/26/2016 06:25:53 PM,03/26/2016 06:37:27 PM,03/26/2016 06:55:37 PM,03/26/2016 07:02:01 PM,Code 2 Transport,03/26/2016 07:42:40 PM,2700 Block of WEBSTER ST,San Francisco,94123,B04,16,3463,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7958921870605, -122.433631822106)",160862948-AM08 +131310355,KM15,13044378,Medical Incident,05/11/2013,05/11/2013,05/11/2013 08:00:04 PM,05/11/2013 08:02:26 PM,05/11/2013 08:08:56 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,04/25/2016 01:52:51 PM,1300 Block of LARKIN ST,SF,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,3,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",131310355-KM15 +140700278,E43,14023691,Structure Fire,03/11/2014,03/11/2014,03/11/2014 04:55:27 PM,03/11/2014 04:56:24 PM,03/11/2014 11:45:31 PM,03/11/2014 11:50:18 PM,03/12/2014 01:49:19 AM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Code 2 Transport,03/12/2014 04:25:31 AM,4TH ST/CHINA BASIN ST,SAN FRANCISCO,94158,B03,8,2231,3,3,3,false,Fire,5,ENGINE,58,3,6,Mission Bay,"(37.7718971758313, -122.391284249119)",140700278-E43 +111690162,E10,11055686,Medical Incident,06/18/2011,06/18/2011,06/18/2011 11:49:10 AM,06/18/2011 11:50:28 AM,06/18/2011 11:50:47 AM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,Other,04/25/2016 02:04:06 PM,3600 Block of CALIFORNIA ST,SF,94118,B07,10,4436,3,3,3,true,,1,ENGINE,3,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",111690162-E10 +133420329,B01,13116091,Alarms,12/08/2013,12/08/2013,12/08/2013 07:06:04 PM,12/08/2013 07:07:54 PM,12/08/2013 07:08:14 PM,12/08/2013 07:10:48 PM,12/08/2013 07:12:55 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/08/2013 07:18:06 PM,2200 Block of LARKIN ST,SF,94109,B01,41,1631,3,3,3,false,Alarm,1,CHIEF,3,1,3,Russian Hill,"(37.7983718644437, -122.420498877705)",133420329-B01 +121490090,55,12049386,Medical Incident,05/28/2012,05/28/2012,05/28/2012 08:13:37 AM,05/28/2012 08:15:28 AM,05/28/2012 08:16:25 AM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/28/2012 08:18:48 AM,1900 Block of 25TH ST,SF,94107,B10,37,2615,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7521976465641, -122.397477711041)",121490090-55 +160030510,61,16001057,Medical Incident,01/03/2016,01/02/2016,01/03/2016 04:32:28 AM,01/03/2016 04:34:31 AM,01/03/2016 04:35:03 AM,01/03/2016 04:35:16 AM,01/03/2016 04:40:56 AM,01/03/2016 04:56:01 AM,01/03/2016 05:24:28 AM,Code 2 Transport,01/03/2016 05:54:02 AM,300 Block of ARGUELLO BLVD,San Francisco,94118,B07,10,7114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7844395880636, -122.459158221689)",160030510-61 +112930384,AM10,11097376,Medical Incident,10/20/2011,10/20/2011,10/20/2011 11:43:41 PM,10/20/2011 11:45:32 PM,10/20/2011 11:45:44 PM,10/20/2011 11:46:24 PM,10/20/2011 11:54:56 PM,10/21/2011 12:11:35 AM,10/21/2011 12:23:48 AM,Code 2 Transport,10/21/2011 12:50:49 AM,700 Block of HAYES ST,SF,94102,B02,5,3522,1,3,3,false,,1,PRIVATE,2,2,5,Hayes Valley,"(37.7760947496614, -122.428722900919)",112930384-AM10 +133420382,E51,13116140,Structure Fire,12/08/2013,12/08/2013,12/08/2013 09:51:38 PM,12/08/2013 09:53:47 PM,12/08/2013 09:54:12 PM,12/08/2013 09:55:42 PM,12/08/2013 09:57:16 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/08/2013 10:23:48 PM,3000 Block of BAKER ST,SF,94123,B04,16,4314,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7990997208922, -122.445999130936)",133420382-E51 +123560073,KM12,12119051,Medical Incident,12/21/2012,12/20/2012,12/21/2012 07:31:14 AM,12/21/2012 07:31:41 AM,12/21/2012 07:31:54 AM,12/21/2012 07:32:46 AM,12/21/2012 07:36:02 AM,12/21/2012 07:58:50 AM,12/21/2012 08:02:55 AM,Code 3 Transport,12/21/2012 08:29:48 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",123560073-KM12 +140970447,T05,14032885,Structure Fire,04/07/2014,04/07/2014,04/07/2014 11:37:51 PM,04/07/2014 11:37:51 PM,04/07/2014 11:38:48 PM,04/07/2014 11:39:59 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Fire,04/07/2014 11:43:04 PM,GOUGH ST/OAK ST,SAN FRANCISCO,94102,B02,36,3266,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7750206954016, -122.42259804367)",140970447-T05 +121740202,E03,12057784,Medical Incident,06/22/2012,06/22/2012,06/22/2012 02:50:03 PM,06/22/2012 02:50:05 PM,06/22/2012 02:50:21 PM,06/22/2012 02:50:35 PM,06/22/2012 02:51:58 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/22/2012 02:58:58 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",121740202-E03 +133390083,E35,13114805,Medical Incident,12/05/2013,12/04/2013,12/05/2013 07:32:24 AM,12/05/2013 07:35:37 AM,12/05/2013 07:36:58 AM,12/05/2013 07:38:02 AM,12/05/2013 07:41:31 AM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 07:44:18 AM,MAIN ST/BRYANT ST,SF,94105,B03,35,2121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868986775116, -122.388779437164)",133390083-E35 +160642367,AM14,16025558,Medical Incident,03/04/2016,03/04/2016,03/04/2016 03:08:41 PM,03/04/2016 03:10:07 PM,03/04/2016 03:10:27 PM,03/04/2016 03:10:52 PM,03/04/2016 03:27:31 PM,03/04/2016 03:38:21 PM,03/04/2016 03:52:29 PM,Code 2 Transport,03/04/2016 04:20:32 PM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",160642367-AM14 +103160351,E05,10101423,Alarms,11/12/2010,11/12/2010,11/12/2010 09:35:15 PM,11/12/2010 09:38:17 PM,11/12/2010 09:38:46 PM,11/12/2010 09:39:32 PM,11/12/2010 09:40:48 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,Other,11/12/2010 09:49:13 PM,1100 Block of LAGUNA ST,SF,94115,B02,5,3366,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7813408435344, -122.427318976353)",103160351-E05 +123090043,66,12102618,Medical Incident,11/04/2012,11/03/2012,11/04/2012 01:58:23 AM,11/04/2012 01:00:05 AM,11/04/2012 01:00:43 AM,11/04/2012 01:02:14 AM,11/04/2012 01:10:47 AM,11/04/2012 01:23:03 AM,11/04/2012 01:38:31 AM,Code 2 Transport,11/04/2012 02:09:57 AM,GUERRERO ST/19TH ST,SF,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7599673760707, -122.423641307645)",123090043-66 +121110183,KM15,12036718,Medical Incident,04/20/2012,04/20/2012,04/20/2012 12:03:27 PM,04/20/2012 12:05:43 PM,04/20/2012 12:11:40 PM,04/20/2012 12:11:53 PM,04/20/2012 12:18:55 PM,04/20/2012 12:24:13 PM,04/20/2012 12:31:49 PM,Code 2 Transport,04/20/2012 12:47:45 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",121110183-KM15 +160691495,62,16027448,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:46:28 AM,03/09/2016 11:46:28 AM,03/09/2016 11:47:13 AM,03/09/2016 11:47:21 AM,03/09/2016 11:59:38 AM,03/09/2016 12:11:24 PM,03/09/2016 12:16:43 PM,Code 2 Transport,03/09/2016 12:48:55 PM,1100 Block of SCOTT ST,San Francisco,94115,B05,5,4133,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7803259118056, -122.437234296615)",160691495-62 +160302281,85,16011830,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:49:33 PM,01/30/2016 02:51:53 PM,01/30/2016 02:52:29 PM,01/30/2016 02:53:12 PM,01/30/2016 03:27:30 PM,01/30/2016 03:27:31 PM,01/30/2016 03:37:42 PM,Code 2 Transport,01/30/2016 04:00:27 PM,POLK ST/TURK ST,San Francisco,94102,B02,3,3114,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7821692691963, -122.418993274637)",160302281-85 +123450256,E44,12115379,Medical Incident,12/10/2012,12/10/2012,12/10/2012 02:15:34 PM,12/10/2012 02:16:30 PM,12/10/2012 02:16:56 PM,12/10/2012 02:22:12 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,04/25/2016 01:55:22 PM,5600 Block of 3RD ST,SF,94124,B10,17,6537,E,E,3,true,Potentially Life-Threatening,1,ENGINE,8,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",123450256-E44 +160880389,65,16034814,Medical Incident,03/28/2016,03/27/2016,03/28/2016 04:52:05 AM,03/28/2016 04:53:44 AM,03/28/2016 04:55:06 AM,03/28/2016 04:55:14 AM,03/28/2016 05:10:05 AM,03/28/2016 05:39:06 AM,03/28/2016 05:59:41 AM,Code 2 Transport,03/28/2016 06:34:33 AM,1400 Block of MONTGOMERY ST,San Francisco,94133,B01,28,1225,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8024541673033, -122.404584339307)",160880389-65 +111940304,AM18,11064159,Medical Incident,07/13/2011,07/13/2011,07/13/2011 07:43:47 PM,07/13/2011 07:44:28 PM,07/13/2011 07:45:33 PM,07/13/2011 07:46:08 PM,07/13/2011 07:49:58 PM,07/13/2011 07:58:30 PM,07/13/2011 08:09:00 PM,Code 2 Transport,07/13/2011 08:54:54 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",111940304-AM18 +102730030,83,10086560,Medical Incident,09/30/2010,09/29/2010,09/30/2010 02:20:30 AM,09/30/2010 02:21:03 AM,09/30/2010 02:23:23 AM,09/30/2010 02:24:44 AM,09/30/2010 02:37:49 AM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Patient Declined Transport,09/30/2010 03:03:35 AM,LINCOLN WY/35TH AV,SF,94122,B08,23,7564,2,2,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7646861934351, -122.494402492941)",102730030-83 +112830138,71,11093637,Medical Incident,10/10/2011,10/10/2011,10/10/2011 11:28:19 AM,10/10/2011 11:29:09 AM,10/10/2011 11:30:55 AM,10/10/2011 11:31:20 AM,10/10/2011 11:36:00 AM,10/10/2011 12:10:59 PM,10/10/2011 12:11:07 PM,Code 2 Transport,10/10/2011 01:03:09 PM,100 Block of RAE AVE,SF,94112,B09,33,8347,3,3,3,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7111761445996, -122.449516638021)",112830138-71 +160850129,57,16033617,Medical Incident,03/25/2016,03/24/2016,03/25/2016 01:00:02 AM,03/25/2016 01:02:10 AM,03/25/2016 01:03:00 AM,03/25/2016 01:03:20 AM,03/25/2016 01:29:57 AM,03/25/2016 01:30:27 AM,03/25/2016 02:01:48 AM,Code 2 Transport,03/25/2016 02:45:33 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160850129-57 +140500315,E03,14017094,Medical Incident,02/19/2014,02/19/2014,02/19/2014 10:08:27 PM,02/19/2014 10:08:27 PM,02/19/2014 10:08:27 PM,02/19/2014 10:08:27 PM,02/19/2014 10:08:27 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Code 2 Transport,02/19/2014 10:14:29 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",140500315-E03 +160500599,83,16019987,Medical Incident,02/19/2016,02/18/2016,02/19/2016 07:32:27 AM,02/19/2016 07:34:14 AM,02/19/2016 07:34:44 AM,02/19/2016 07:34:53 AM,02/19/2016 07:41:13 AM,02/19/2016 07:48:14 AM,02/19/2016 07:49:53 AM,Code 2 Transport,02/19/2016 08:25:17 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.783815387293, -122.432878599409)",160500599-83 +140480324,55,14016478,Medical Incident,02/17/2014,02/17/2014,02/17/2014 09:54:30 PM,02/17/2014 09:56:01 PM,02/17/2014 09:56:48 PM,02/17/2014 09:57:14 PM,02/17/2014 10:12:39 PM,02/17/2014 10:29:12 PM,02/17/2014 10:57:18 PM,Code 2 Transport,02/17/2014 11:35:25 PM,1400 Block of FLOUNDER CT,TI,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8266042052086, -122.374685426441)",140480324-55 +140220180,E51,14007509,Other,01/22/2014,01/22/2014,01/22/2014 12:55:32 PM,01/22/2014 12:56:50 PM,01/22/2014 12:57:11 PM,01/22/2014 12:58:07 PM,01/22/2014 01:01:28 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/22/2014 01:03:32 PM,2100 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,true,Alarm,1,ENGINE,3,4,2,Marina,"(37.8005603246335, -122.438707766533)",140220180-E51 +111200087,86,11039506,Medical Incident,04/30/2011,04/29/2011,04/30/2011 07:21:24 AM,04/30/2011 07:22:16 AM,04/30/2011 07:22:54 AM,04/30/2011 07:23:16 AM,04/30/2011 07:24:23 AM,04/30/2011 07:45:54 AM,04/30/2011 08:11:45 AM,Code 2 Transport,04/30/2011 08:30:42 AM,2500 Block of 17TH AVE,SF,94116,B08,40,7411,3,3,3,true,,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7403477431661, -122.473426697343)",111200087-86 +113480294,KM04,11115550,Medical Incident,12/14/2011,12/14/2011,12/14/2011 05:18:53 PM,12/14/2011 05:19:27 PM,12/14/2011 05:21:11 PM,12/14/2011 05:22:03 PM,12/14/2011 05:39:58 PM,12/14/2011 05:56:08 PM,12/14/2011 06:27:33 PM,Code 2 Transport,12/14/2011 06:48:02 PM,800 Block of HARRISON ST,SF,94107,B03,8,2243,3,2,2,false,,1,PRIVATE,2,3,6,South of Market,"(37.7798728838566, -122.400680947527)",113480294-KM04 +121970066,B02,12065417,Alarms,07/15/2012,07/14/2012,07/15/2012 04:26:37 AM,07/15/2012 04:27:24 AM,07/15/2012 04:27:38 AM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/15/2012 04:30:06 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",121970066-B02 +130440297,E11,13015011,Medical Incident,02/13/2013,02/13/2013,02/13/2013 04:34:34 PM,02/13/2013 04:34:39 PM,02/13/2013 04:37:49 PM,02/13/2013 04:38:39 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,Other,02/13/2013 04:41:35 PM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7563716216308, -122.416574134534)",130440297-E11 +102400008,E06,10075561,Medical Incident,08/28/2010,08/27/2010,08/28/2010 12:16:59 AM,08/28/2010 12:19:47 AM,08/28/2010 12:21:25 AM,08/28/2010 12:22:46 AM,08/28/2010 12:25:36 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Other,08/28/2010 12:26:06 AM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7737629752818, -122.417960394107)",102400008-E06 +120770379,RC1,12025681,Medical Incident,03/17/2012,03/17/2012,03/17/2012 10:39:35 PM,03/17/2012 10:41:06 PM,03/17/2012 10:41:20 PM,03/17/2012 10:46:44 PM,03/17/2012 10:48:13 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/17/2012 10:49:55 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7815374331217, -122.409518341416)",120770379-RC1 +121710058,88,12056654,Medical Incident,06/19/2012,06/18/2012,06/19/2012 06:10:17 AM,06/19/2012 06:11:32 AM,06/19/2012 06:11:49 AM,06/19/2012 06:11:56 AM,06/19/2012 06:20:31 AM,06/19/2012 06:35:46 AM,06/19/2012 06:49:51 AM,Other,06/19/2012 07:13:16 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",121710058-88 +132400016,E11,13080821,Medical Incident,08/28/2013,08/27/2013,08/28/2013 02:05:34 AM,08/28/2013 02:06:11 AM,08/28/2013 02:06:25 AM,08/28/2013 02:07:53 AM,08/28/2013 02:10:39 AM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/28/2013 02:19:40 AM,200 Block of BARTLETT ST,SF,94110,B06,11,5512,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7529745872366, -122.41956241492)",132400016-E11 +110100286,T17,11003395,Odor (Strange / Unknown),01/10/2011,01/10/2011,01/10/2011 04:04:45 PM,01/10/2011 04:07:27 PM,01/10/2011 04:07:52 PM,01/10/2011 04:09:28 PM,01/10/2011 04:11:53 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/10/2011 04:16:58 PM,3RD ST/GILMAN AV,SF,94124,B10,44,6544,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7224316058888, -122.395622760595)",110100286-T17 +160052574,67,16002080,Medical Incident,01/05/2016,01/05/2016,01/05/2016 04:41:52 PM,01/05/2016 04:43:13 PM,01/05/2016 04:43:52 PM,01/05/2016 04:45:58 PM,01/05/2016 05:04:11 PM,01/05/2016 05:24:09 PM,01/05/2016 05:49:24 PM,Code 2 Transport,01/05/2016 05:58:11 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160052574-67 +110460023,59,11015132,Medical Incident,02/15/2011,02/14/2011,02/15/2011 02:39:44 AM,02/15/2011 02:42:07 AM,02/15/2011 02:42:38 AM,02/15/2011 02:43:08 AM,02/15/2011 02:49:16 AM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,No Merit,02/15/2011 02:50:33 AM,2500 Block of MARIPOSA ST,SF,94110,B02,29,5243,1,1,2,true,,1,MEDIC,2,2,10,Mission,"(37.7631695375953, -122.408796075221)",110460023-59 +160710464,KM03,16028094,Medical Incident,03/11/2016,03/10/2016,03/11/2016 05:44:47 AM,03/11/2016 05:47:15 AM,03/11/2016 05:47:38 AM,03/11/2016 05:48:19 AM,03/11/2016 05:54:21 AM,03/11/2016 06:17:14 AM,03/11/2016 06:38:15 AM,Code 2 Transport,03/11/2016 07:12:58 AM,1200 Block of CHESTNUT ST,San Francisco,94109,B01,16,3133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8023311264976, -122.423898591878)",160710464-KM03 +120980278,E36,12032581,Medical Incident,04/07/2012,04/07/2012,04/07/2012 07:10:18 PM,04/07/2012 07:12:24 PM,04/07/2012 07:13:38 PM,04/07/2012 07:14:43 PM,04/25/2016 01:59:17 PM,04/25/2016 01:59:17 PM,04/25/2016 01:59:17 PM,Other,04/07/2012 07:15:44 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",120980278-E36 +120860304,83,12028660,Structure Fire,03/26/2012,03/26/2012,03/26/2012 07:45:42 PM,03/26/2012 07:46:07 PM,03/26/2012 07:46:32 PM,03/26/2012 07:46:44 PM,03/26/2012 07:53:22 PM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 08:14:09 PM,1800 Block of DIVISADERO ST,SF,94115,B04,10,4156,3,3,3,true,Fire,1,MEDIC,10,4,2,Pacific Heights,"(37.7866611138334, -122.440038591399)",120860304-83 +130800088,E38,13026668,Medical Incident,03/21/2013,03/21/2013,03/21/2013 08:54:46 AM,03/21/2013 08:55:42 AM,03/21/2013 08:56:15 AM,03/21/2013 08:56:56 AM,03/21/2013 08:58:48 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 09:11:55 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",130800088-E38 +131680175,B10,13057033,Alarms,06/17/2013,06/17/2013,06/17/2013 01:24:24 PM,06/17/2013 01:25:45 PM,06/17/2013 01:26:08 PM,06/17/2013 01:31:08 PM,06/17/2013 01:31:25 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/17/2013 01:57:12 PM,2200 Block of 23RD ST,SF,94107,B10,37,2556,3,3,3,false,Alarm,1,CHIEF,3,10,10,Potrero Hill,"(37.7544865703941, -122.402068206398)",131680175-B10 +160783036,53,16031118,Medical Incident,03/18/2016,03/18/2016,03/18/2016 05:55:32 PM,03/18/2016 05:59:42 PM,03/18/2016 06:00:10 PM,03/18/2016 06:00:24 PM,03/18/2016 06:14:31 PM,03/18/2016 06:39:14 PM,03/18/2016 06:49:21 PM,Code 2 Transport,03/18/2016 07:26:19 PM,FILLMORE ST/HAIGHT ST,San Francisco,94117,B05,6,3526,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7721082581802, -122.430433920263)",160783036-53 +113130269,92,11104078,Medical Incident,11/09/2011,11/09/2011,11/09/2011 04:52:26 PM,11/09/2011 04:53:21 PM,11/09/2011 04:54:06 PM,11/09/2011 04:54:16 PM,11/09/2011 04:57:24 PM,11/09/2011 05:08:55 PM,11/09/2011 05:13:37 PM,Code 2 Transport,11/09/2011 05:59:34 PM,1700 Block of POST ST,SF,94115,B04,5,3513,3,E,3,true,,1,MEDIC,2,4,5,Japantown,"(37.7854139465586, -122.430564088684)",113130269-92 +120400057,E31,12013234,Traffic Collision,02/09/2012,02/09/2012,02/09/2012 08:02:25 AM,02/09/2012 08:03:01 AM,02/09/2012 08:03:23 AM,02/09/2012 08:04:15 AM,02/09/2012 08:06:54 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 08:24:41 AM,7TH AV/GEARY BL,SF,94118,B07,31,7127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7809654895117, -122.465352868331)",120400057-E31 +130570284,E36,13019258,Alarms,02/26/2013,02/26/2013,02/26/2013 08:07:38 PM,02/26/2013 08:09:21 PM,02/26/2013 08:10:44 PM,02/26/2013 08:12:12 PM,02/26/2013 08:13:52 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 08:21:03 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",130570284-E36 +160092909,89,16003752,Traffic Collision,01/09/2016,01/09/2016,01/09/2016 06:37:38 PM,01/09/2016 06:38:04 PM,01/09/2016 06:38:31 PM,01/09/2016 06:38:38 PM,01/09/2016 06:43:00 PM,01/09/2016 07:05:34 PM,01/09/2016 07:17:13 PM,Code 2 Transport,01/09/2016 07:45:40 PM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160092909-89 +112930344,T18,11097338,Structure Fire,10/20/2011,10/20/2011,10/20/2011 08:49:29 PM,10/20/2011 08:49:29 PM,10/20/2011 08:50:39 PM,10/20/2011 08:52:34 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 08:54:07 PM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",112930344-T18 +110800114,E01,11026322,Medical Incident,03/21/2011,03/21/2011,03/21/2011 09:31:55 AM,03/21/2011 09:32:40 AM,03/21/2011 09:33:45 AM,03/21/2011 09:36:01 AM,03/21/2011 09:39:36 AM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 09:43:25 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",110800114-E01 +160023233,60,16000926,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:05:46 PM,01/02/2016 09:07:10 PM,01/02/2016 09:09:28 PM,01/02/2016 09:09:58 PM,01/02/2016 09:23:31 PM,01/02/2016 09:33:53 PM,01/02/2016 09:51:12 PM,Code 2 Transport,01/02/2016 10:24:30 PM,3300 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7482858766932, -122.417044258324)",160023233-60 +133630216,E28,13123335,Medical Incident,12/29/2013,12/29/2013,12/29/2013 03:47:01 PM,12/29/2013 03:47:20 PM,12/29/2013 03:47:52 PM,12/29/2013 03:48:34 PM,12/29/2013 03:51:26 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/29/2013 03:57:28 PM,0 Block of JEFFERSON ST,SF,94133,B01,28,943,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8084686918657, -122.4133334279)",133630216-E28 +140220316,E29,14007631,Medical Incident,01/22/2014,01/22/2014,01/22/2014 07:29:22 PM,01/22/2014 07:30:31 PM,01/22/2014 07:31:36 PM,01/22/2014 07:32:48 PM,01/22/2014 07:36:26 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/22/2014 07:40:45 PM,0 Block of MCLEA CT,SF,94103,B03,29,2333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7720751846477, -122.408746829681)",140220316-E29 +160522939,KM12,16020937,Medical Incident,02/21/2016,02/21/2016,02/21/2016 07:16:23 PM,02/21/2016 07:17:27 PM,02/21/2016 07:17:40 PM,02/21/2016 07:18:36 PM,02/21/2016 07:27:52 PM,02/21/2016 07:54:04 PM,02/21/2016 08:09:00 PM,Code 2 Transport,02/21/2016 08:49:32 PM,0 Block of MAXWELL CT,San Francisco,94103,B02,6,5226,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7670121091229, -122.423152344232)",160522939-KM12 +160403721,78,16016232,Medical Incident,02/09/2016,02/09/2016,02/09/2016 10:05:50 PM,02/09/2016 10:06:51 PM,02/09/2016 10:08:11 PM,02/09/2016 10:08:27 PM,02/09/2016 10:16:12 PM,02/09/2016 10:31:12 PM,02/09/2016 10:39:11 PM,Code 2 Transport,02/09/2016 11:16:05 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160403721-78 +112980033,KM07,11098751,Medical Incident,10/25/2011,10/24/2011,10/25/2011 04:46:32 AM,10/25/2011 04:47:24 AM,10/25/2011 04:49:02 AM,04/25/2016 02:01:59 PM,10/25/2011 05:14:33 AM,10/25/2011 05:14:51 AM,10/25/2011 05:32:00 AM,Code 2 Transport,10/25/2011 04:49:38 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,2,2,2,false,,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",112980033-KM07 +102530193,RC1,10079937,Medical Incident,09/10/2010,09/10/2010,09/10/2010 12:32:31 PM,09/10/2010 12:33:28 PM,09/10/2010 12:33:35 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 12:55:05 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",102530193-RC1 +112130085,67,11070215,Medical Incident,08/01/2011,08/01/2011,08/01/2011 08:38:08 AM,08/01/2011 08:39:10 AM,08/01/2011 08:39:21 AM,08/01/2011 08:40:06 AM,08/01/2011 08:47:47 AM,08/01/2011 09:06:38 AM,08/01/2011 09:24:39 AM,Code 2 Transport,08/01/2011 10:00:52 AM,0 Block of NEBRASKA ST,SF,94110,B10,32,5725,3,3,3,true,,1,MEDIC,2,10,9,Bernal Heights,"(37.7405663924858, -122.410366949718)",112130085-67 +132770012,E05,13093940,Medical Incident,10/04/2013,10/03/2013,10/04/2013 12:49:08 AM,10/04/2013 12:50:02 AM,10/04/2013 12:50:42 AM,04/25/2016 01:50:27 PM,10/04/2013 12:52:26 AM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/04/2013 01:02:32 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",132770012-E05 +103250062,E08,10104077,Medical Incident,11/21/2010,11/20/2010,11/21/2010 04:18:23 AM,11/21/2010 04:18:55 AM,11/21/2010 04:19:16 AM,11/21/2010 04:20:41 AM,11/21/2010 04:23:55 AM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,11/21/2010 04:27:35 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103250062-E08 +103210105,68,10102831,Medical Incident,11/17/2010,11/17/2010,11/17/2010 08:53:05 AM,11/17/2010 08:53:21 AM,11/17/2010 08:53:50 AM,11/17/2010 08:56:01 AM,11/17/2010 09:13:54 AM,04/25/2016 02:07:33 PM,04/25/2016 02:07:33 PM,Patient Declined Transport,11/17/2010 09:19:16 AM,1700 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,2,2,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",103210105-68 +132350206,E08,13079325,Administrative,08/23/2013,08/23/2013,08/23/2013 01:45:15 PM,08/23/2013 01:45:19 PM,08/23/2013 01:45:34 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/23/2013 01:46:17 PM,0 Block of BLUXOME ST,SF,94107,B03,8,2223,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",132350206-E08 +122400349,93,12079579,HazMat,08/27/2012,08/27/2012,08/27/2012 08:33:38 PM,08/27/2012 08:33:38 PM,08/27/2012 08:34:11 PM,08/27/2012 08:37:01 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Other,08/27/2012 08:42:15 PM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,true,Alarm,1,MEDIC,4,10,10,Potrero Hill,"(37.7572927810101, -122.395771897062)",122400349-93 +132170273,E07,13073378,Medical Incident,08/05/2013,08/05/2013,08/05/2013 05:30:02 PM,08/05/2013 05:31:31 PM,08/05/2013 05:32:21 PM,08/05/2013 05:34:33 PM,08/05/2013 05:36:27 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 06:10:20 PM,3300 Block of 26TH ST,SF,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.74906765286, -122.416778466557)",132170273-E07 +113500071,85,11116028,Structure Fire,12/16/2011,12/16/2011,12/16/2011 08:09:56 AM,12/16/2011 08:11:26 AM,12/16/2011 08:11:43 AM,12/16/2011 08:12:02 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/16/2011 08:16:50 AM,25TH AV/CALIFORNIA ST,SF,94121,B07,14,7214,3,3,3,true,,1,MEDIC,9,7,1,Outer Richmond,"(37.7838822347168, -122.485010943843)",113500071-85 +120100001,71,12003326,Medical Incident,01/10/2012,01/09/2012,01/10/2012 12:00:28 AM,01/10/2012 12:01:15 AM,01/10/2012 12:01:28 AM,01/10/2012 12:02:02 AM,01/10/2012 12:06:17 AM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Against Medical Advice,01/10/2012 12:59:24 AM,2200 Block of CLAY ST,SF,94115,B04,38,3361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7911798396384, -122.430081084266)",120100001-71 +112350358,E38,11077695,Medical Incident,08/23/2011,08/23/2011,08/23/2011 07:59:31 PM,08/23/2011 08:01:51 PM,08/23/2011 08:05:45 PM,08/23/2011 08:06:54 PM,08/23/2011 08:08:18 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 08:28:49 PM,1600 Block of BUSH ST,SF,94109,B04,38,3255,1,1,2,false,,1,ENGINE,1,4,2,Western Addition,"(37.7881207326796, -122.424404304157)",112350358-E38 +120030095,T10,12000966,Medical Incident,01/03/2012,01/02/2012,01/03/2012 07:56:41 AM,01/03/2012 07:56:52 AM,01/03/2012 07:57:40 AM,01/03/2012 07:59:10 AM,01/03/2012 08:02:09 AM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/03/2012 08:11:28 AM,0 Block of JORDAN AVE,SF,94118,B07,10,4441,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,7,2,Presidio Heights,"(37.7849495594926, -122.456819205112)",120030095-T10 +111920087,T02,11063317,Other,07/11/2011,07/11/2011,07/11/2011 09:08:25 AM,07/11/2011 09:09:02 AM,07/11/2011 09:09:12 AM,07/11/2011 09:10:29 AM,07/11/2011 09:14:30 AM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 10:18:45 AM,2000 Block of LARKIN ST,SF,94109,B01,41,1632,3,3,3,false,,1,TRUCK,1,4,3,Russian Hill,"(37.7965929265297, -122.420281529401)",111920087-T02 +122720279,E42,12089837,Medical Incident,09/28/2012,09/28/2012,09/28/2012 08:37:26 PM,09/28/2012 08:38:03 PM,09/28/2012 08:38:52 PM,09/28/2012 08:40:15 PM,09/28/2012 08:42:15 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/28/2012 08:50:25 PM,400 Block of HAMILTON ST,SF,94134,B10,42,6335,3,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.725501228245, -122.409211492676)",122720279-E42 +121340233,E18,12044657,Medical Incident,05/13/2012,05/13/2012,05/13/2012 05:08:13 PM,05/13/2012 05:10:19 PM,05/13/2012 05:11:31 PM,05/13/2012 05:14:04 PM,05/13/2012 05:16:54 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 05:27:10 PM,1300 Block of 31ST AVE,SF,94122,B08,23,7536,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7620676593975, -122.489849528292)",121340233-E18 +102850456,87,10090962,Medical Incident,10/12/2010,10/12/2010,10/12/2010 10:06:27 PM,10/12/2010 10:07:09 PM,10/12/2010 10:07:32 PM,10/12/2010 10:07:56 PM,10/12/2010 10:12:57 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Patient Declined Transport,10/12/2010 10:31:55 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",102850456-87 +130100222,T07,13003454,Structure Fire,01/10/2013,01/10/2013,01/10/2013 03:40:27 PM,01/10/2013 03:41:07 PM,01/10/2013 03:41:17 PM,01/10/2013 03:42:51 PM,01/10/2013 03:49:37 PM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/10/2013 03:50:03 PM,200 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,8,2,8,Mission,"(37.7671990407506, -122.424452084295)",130100222-T07 +102740384,T12,10087176,Structure Fire,10/01/2010,10/01/2010,10/01/2010 10:44:26 PM,10/01/2010 10:44:26 PM,10/01/2010 10:44:40 PM,10/01/2010 10:45:45 PM,10/01/2010 10:48:07 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 10:48:11 PM,STANYAN ST/FELL ST,SF,94122,B05,12,4554,3,3,3,false,,1,TRUCK,1,5,1,Golden Gate Park,"(37.7719304034998, -122.454083217642)",102740384-T12 +110670246,RS1,11022115,Medical Incident,03/08/2011,03/08/2011,03/08/2011 04:07:42 PM,03/08/2011 04:08:22 PM,03/08/2011 04:09:31 PM,03/08/2011 04:11:34 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 04:13:55 PM,POWELL ST/ELLIS ST,SF,94102,B03,1,1322,3,3,3,true,,1,RESCUE SQUAD,3,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",110670246-RS1 +102950080,AM02,10094001,Traffic Collision,10/22/2010,10/21/2010,10/22/2010 07:07:34 AM,10/22/2010 07:07:34 AM,10/22/2010 07:08:36 AM,10/22/2010 07:09:15 AM,10/22/2010 07:31:27 AM,10/22/2010 07:39:19 AM,10/22/2010 08:22:25 AM,Code 2 Transport,10/22/2010 08:49:46 AM,19TH AV/VICENTE ST,SF,94116,B08,40,7415,2,2,2,false,,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.739325432683, -122.475409073617)",102950080-AM02 +102570020,54,10081072,Medical Incident,09/14/2010,09/13/2010,09/14/2010 02:25:03 AM,09/14/2010 02:29:54 AM,09/14/2010 02:30:10 AM,09/14/2010 02:30:16 AM,09/14/2010 02:33:11 AM,09/14/2010 02:50:25 AM,09/14/2010 03:19:26 AM,Code 2 Transport,09/14/2010 03:47:05 AM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",102570020-54 +140970409,E40,14032852,Medical Incident,04/07/2014,04/07/2014,04/07/2014 09:04:57 PM,04/07/2014 09:07:57 PM,04/07/2014 09:08:14 PM,04/07/2014 09:09:42 PM,04/07/2014 09:11:31 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Code 2 Transport,04/07/2014 09:28:17 PM,2200 Block of 16TH AVE,SAN FRANCISCO,94116,B08,40,7375,,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",140970409-E40 +160310149,KM07,16012019,Medical Incident,01/31/2016,01/30/2016,01/31/2016 12:55:20 AM,01/31/2016 12:56:48 AM,01/31/2016 12:57:46 AM,01/31/2016 01:03:54 AM,01/31/2016 01:03:54 AM,01/31/2016 01:24:20 AM,01/31/2016 01:33:36 AM,Code 2 Transport,01/31/2016 01:54:55 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160310149-KM07 +112990037,89,11099081,Medical Incident,10/26/2011,10/25/2011,10/26/2011 04:56:11 AM,10/26/2011 04:57:14 AM,10/26/2011 04:57:30 AM,10/26/2011 04:58:00 AM,10/26/2011 05:12:04 AM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Gone on Arrival,10/26/2011 05:18:27 AM,800 Block of MISSION ST,SF,94103,B03,1,2213,3,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7842816168857, -122.404614647152)",112990037-89 +120320159,72,12010553,Medical Incident,02/01/2012,02/01/2012,02/01/2012 12:14:59 PM,02/01/2012 12:16:12 PM,02/01/2012 12:16:34 PM,02/01/2012 12:44:12 PM,02/01/2012 12:56:03 PM,02/01/2012 12:56:19 PM,02/01/2012 01:11:30 PM,Code 2 Transport,02/01/2012 01:44:04 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,1,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",120320159-72 +102290021,E03,10071937,Medical Incident,08/17/2010,08/16/2010,08/17/2010 01:27:32 AM,08/17/2010 01:32:10 AM,08/17/2010 01:36:08 AM,08/17/2010 01:37:17 AM,08/17/2010 01:39:28 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/17/2010 01:52:38 AM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.79151461877, -122.424319326849)",102290021-E03 +160682803,61,16027199,Medical Incident,03/08/2016,03/08/2016,03/08/2016 05:34:50 PM,03/08/2016 05:36:28 PM,03/08/2016 05:37:34 PM,03/08/2016 05:37:34 PM,03/08/2016 05:40:43 PM,03/08/2016 05:46:02 PM,03/08/2016 06:03:22 PM,Code 2 Transport,03/08/2016 06:30:14 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7769314520229, -122.399308076553)",160682803-61 +133590246,T07,13122109,Alarms,12/25/2013,12/25/2013,12/25/2013 05:09:53 PM,12/25/2013 05:10:54 PM,12/25/2013 05:10:59 PM,12/25/2013 05:12:55 PM,12/25/2013 05:15:32 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/25/2013 05:17:54 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",133590246-T07 +122260280,83,12075001,Medical Incident,08/13/2012,08/13/2012,08/13/2012 05:10:03 PM,08/13/2012 05:11:14 PM,08/13/2012 05:13:37 PM,08/13/2012 05:14:01 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 05:23:35 PM,400 Block of 7TH ST,SF,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",122260280-83 +160483198,62,16019460,Medical Incident,02/17/2016,02/17/2016,02/17/2016 06:28:04 PM,02/17/2016 06:29:01 PM,02/17/2016 06:29:40 PM,02/17/2016 06:29:52 PM,02/17/2016 06:32:08 PM,02/17/2016 06:47:10 PM,02/17/2016 07:16:21 PM,Code 2 Transport,02/17/2016 07:44:41 PM,1500 Block of NORTH POINT ST,San Francisco,94123,B04,16,3346,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8040848078318, -122.432688436131)",160483198-62 +112170077,E06,11071623,Medical Incident,08/05/2011,08/04/2011,08/05/2011 06:50:53 AM,08/05/2011 06:52:32 AM,08/05/2011 06:52:44 AM,08/05/2011 06:54:22 AM,08/05/2011 06:55:52 AM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 07:08:39 AM,200 Block of STEINER ST,SF,94117,B05,6,3633,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7711888020343, -122.432019614304)",112170077-E06 +113160132,E01,11104968,Structure Fire,11/12/2011,11/12/2011,11/12/2011 12:21:42 PM,11/12/2011 12:21:42 PM,11/12/2011 12:21:49 PM,04/25/2016 02:01:41 PM,11/12/2011 12:25:01 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Fire,11/12/2011 12:25:26 PM,2ND ST/FOLSOM ST,SF,94107,B03,1,2147,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",113160132-E01 +130350181,T07,13011978,Administrative,02/04/2013,02/04/2013,02/04/2013 11:53:03 AM,02/04/2013 11:53:05 AM,02/04/2013 11:53:18 AM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,Other,02/04/2013 11:53:42 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",130350181-T07 +112380353,T18,11078699,Structure Fire,08/26/2011,08/26/2011,08/26/2011 09:42:38 PM,08/26/2011 09:42:38 PM,08/26/2011 09:42:49 PM,08/26/2011 09:43:56 PM,08/26/2011 09:49:12 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 10:00:25 PM,1500 Block of 43RD AVE,SF,94122,B08,23,765,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.757770435301, -122.502447012656)",112380353-T18 +140170157,E31,14005802,Medical Incident,01/17/2014,01/17/2014,01/17/2014 11:35:53 AM,01/17/2014 11:36:41 AM,01/17/2014 11:37:10 AM,01/17/2014 11:38:04 AM,01/17/2014 11:40:44 AM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,Other,01/17/2014 11:53:14 AM,700 Block of 5TH AVE,SF,94118,B07,31,7122,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7745920044375, -122.462675189691)",140170157-E31 +132460320,E36,13083116,Medical Incident,09/03/2013,09/03/2013,09/03/2013 06:34:06 PM,09/03/2013 06:35:27 PM,09/03/2013 06:36:53 PM,09/03/2013 06:37:50 PM,09/03/2013 06:41:35 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/03/2013 06:59:46 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",132460320-E36 +112150076,T01,11070894,Alarms,08/03/2011,08/03/2011,08/03/2011 08:11:34 AM,08/03/2011 08:12:50 AM,08/03/2011 08:13:18 AM,08/03/2011 08:15:29 AM,08/03/2011 08:18:19 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Other,08/03/2011 08:24:01 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7838066631424, -122.409129633669)",112150076-T01 +121490275,E38,12049541,Medical Incident,05/28/2012,05/28/2012,05/28/2012 08:05:44 PM,05/28/2012 08:07:04 PM,05/28/2012 08:07:22 PM,05/28/2012 08:08:21 PM,05/28/2012 08:09:42 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 08:31:56 PM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,1,1,2,true,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",121490275-E38 +110150338,KM15,11005137,Medical Incident,01/15/2011,01/15/2011,01/15/2011 08:31:29 PM,01/15/2011 08:33:05 PM,01/15/2011 08:34:00 PM,01/15/2011 08:34:34 PM,01/15/2011 08:44:21 PM,01/15/2011 09:00:58 PM,01/15/2011 09:22:56 PM,Code 2 Transport,01/15/2011 09:38:07 PM,0 Block of PARKRIDGE DR,SF,94131,B06,24,5283,1,1,2,false,,1,PRIVATE,1,6,8,Twin Peaks,"(37.751152470811, -122.445668704285)",110150338-KM15 +133040356,93,13103412,Medical Incident,10/31/2013,10/31/2013,10/31/2013 08:58:34 PM,10/31/2013 08:58:43 PM,10/31/2013 08:58:53 PM,10/31/2013 08:59:04 PM,10/31/2013 09:10:33 PM,10/31/2013 09:20:40 PM,10/31/2013 09:30:38 PM,Code 2 Transport,10/31/2013 09:47:56 PM,GEARY ST/POWELL ST,SF,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",133040356-93 +112870008,94,11094998,Medical Incident,10/14/2011,10/13/2011,10/14/2011 12:30:43 AM,10/14/2011 12:31:36 AM,10/14/2011 12:32:18 AM,10/14/2011 12:34:02 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 12:36:53 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,MEDIC,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",112870008-94 +111120168,83,11036985,Odor (Strange / Unknown),04/22/2011,04/22/2011,04/22/2011 11:51:14 AM,04/22/2011 11:54:18 AM,04/22/2011 11:55:00 AM,04/22/2011 12:14:03 PM,04/22/2011 12:26:58 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 01:39:17 PM,1900 Block of PAGE ST,SF,94117,B05,12,4553,3,3,3,true,,1,MEDIC,6,5,5,Haight Ashbury,"(37.7702606599781, -122.452901890861)",111120168-83 +113510301,E08,11116574,Medical Incident,12/17/2011,12/17/2011,12/17/2011 04:50:57 PM,12/17/2011 04:51:35 PM,12/17/2011 04:52:52 PM,12/17/2011 04:54:34 PM,12/17/2011 04:56:51 PM,04/25/2016 02:01:06 PM,04/25/2016 02:01:06 PM,Other,12/17/2011 05:01:52 PM,0 Block of MISSION ROCK ST,SF,94158,B03,8,2231,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7731157627784, -122.38857804747)",113510301-E08 +160031307,82,16001156,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:43:21 AM,01/03/2016 11:44:15 AM,01/03/2016 11:47:13 AM,01/03/2016 11:47:34 AM,01/03/2016 11:48:41 AM,01/03/2016 12:26:11 PM,01/03/2016 12:38:08 PM,Code 2 Transport,01/03/2016 01:15:36 PM,0 Block of RED ROCK WAY,San Francisco,94131,B06,26,8167,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",160031307-82 +111760292,T17,11058104,Structure Fire,06/25/2011,06/25/2011,06/25/2011 05:35:11 PM,06/25/2011 05:36:20 PM,06/25/2011 05:36:53 PM,06/25/2011 05:37:49 PM,06/25/2011 05:40:26 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 05:49:27 PM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",111760292-T17 +132680102,81,13090922,Medical Incident,09/25/2013,09/25/2013,09/25/2013 10:01:00 AM,09/25/2013 10:02:56 AM,09/25/2013 10:04:32 AM,09/25/2013 10:04:42 AM,09/25/2013 10:14:11 AM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Patient Declined Transport,09/25/2013 10:40:32 AM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",132680102-81 +160272297,KM04,16010730,Medical Incident,01/27/2016,01/27/2016,01/27/2016 02:59:38 PM,01/27/2016 03:00:46 PM,01/27/2016 03:01:32 PM,01/27/2016 03:01:55 PM,01/27/2016 03:13:12 PM,01/27/2016 03:43:05 PM,01/27/2016 04:09:02 PM,Code 2 Transport,01/27/2016 04:47:34 PM,0 Block of JENNINGS CT,San Francisco,94124,B10,44,6575,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7170822816087, -122.397590008469)",160272297-KM04 +160520521,63,16020693,Medical Incident,02/21/2016,02/20/2016,02/21/2016 03:51:42 AM,02/21/2016 03:52:48 AM,02/21/2016 03:53:05 AM,02/21/2016 03:53:23 AM,02/21/2016 03:55:48 AM,02/21/2016 04:13:34 AM,02/21/2016 04:16:39 AM,Code 3 Transport,02/21/2016 04:48:13 AM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160520521-63 +130310004,E01,13010422,Medical Incident,01/31/2013,01/30/2013,01/31/2013 12:08:46 AM,01/31/2013 12:10:18 AM,01/31/2013 12:10:37 AM,01/31/2013 12:12:06 AM,01/31/2013 12:14:15 AM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 12:20:00 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130310004-E01 +131830029,E03,13062233,Medical Incident,07/02/2013,07/01/2013,07/02/2013 03:35:02 AM,07/02/2013 03:35:59 AM,07/02/2013 03:36:22 AM,07/02/2013 03:38:21 AM,07/02/2013 03:39:42 AM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 03:50:46 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",131830029-E03 +160881361,KM05,16034903,Medical Incident,03/28/2016,03/28/2016,03/28/2016 10:59:53 AM,03/28/2016 10:59:53 AM,03/28/2016 11:00:08 AM,03/28/2016 11:00:27 AM,03/28/2016 11:08:25 AM,03/28/2016 11:13:07 AM,03/28/2016 11:36:21 AM,Code 2 Transport,03/28/2016 12:15:30 PM,200 Block of STAPLES AVE,San Francisco,94112,B09,15,8232,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7291328071593, -122.447707176044)",160881361-KM05 +121530121,B04,12050584,Medical Incident,06/01/2012,06/01/2012,06/01/2012 11:22:24 AM,06/01/2012 11:24:51 AM,06/01/2012 11:25:41 AM,06/01/2012 11:37:39 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 11:42:36 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121530121-B04 +123420539,E32,12114463,Alarms,12/07/2012,12/07/2012,12/07/2012 11:38:15 PM,12/07/2012 11:40:44 PM,12/07/2012 11:40:56 PM,12/07/2012 11:43:27 PM,12/07/2012 11:48:38 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/07/2012 11:59:52 PM,200 Block of COLERIDGE ST,SF,94110,B06,32,5653,3,3,3,true,Alarm,1,ENGINE,3,6,9,Bernal Heights,"(37.74250126057, -122.42041921408)",123420539-E32 +111740206,RC1,11057416,Medical Incident,06/23/2011,06/23/2011,06/23/2011 02:57:25 PM,06/23/2011 02:57:35 PM,06/23/2011 02:58:11 PM,04/25/2016 02:04:01 PM,06/23/2011 03:05:56 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,06/23/2011 03:16:58 PM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,RESCUE CAPTAIN,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",111740206-RC1 +113340013,AM18,11110478,Medical Incident,11/30/2011,11/29/2011,11/30/2011 01:09:44 AM,11/30/2011 01:11:13 AM,11/30/2011 01:11:42 AM,11/30/2011 01:12:11 AM,11/30/2011 01:16:16 AM,11/30/2011 01:31:26 AM,11/30/2011 01:50:54 AM,Other,11/30/2011 02:21:00 AM,2600 Block of MASON ST,SF,94133,B01,28,1344,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8079604704743, -122.414001361661)",113340013-AM18 +160250431,KM03,16009789,Medical Incident,01/25/2016,01/24/2016,01/25/2016 05:13:29 AM,01/25/2016 05:17:22 AM,01/25/2016 05:20:54 AM,01/25/2016 05:21:35 AM,01/25/2016 05:36:29 AM,01/25/2016 05:38:30 AM,01/25/2016 05:55:17 AM,Code 2 Transport,01/25/2016 06:48:06 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",160250431-KM03 +132130216,E08,13072000,Medical Incident,08/01/2013,08/01/2013,08/01/2013 04:33:23 PM,08/01/2013 04:34:09 PM,08/01/2013 04:34:52 PM,08/01/2013 04:36:53 PM,08/01/2013 04:38:37 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 05:00:40 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132130216-E08 +113240301,E03,11107725,Medical Incident,11/20/2011,11/20/2011,11/20/2011 07:28:23 PM,11/20/2011 07:29:01 PM,11/20/2011 07:30:11 PM,11/20/2011 07:31:09 PM,11/20/2011 07:45:03 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 07:46:49 PM,300 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7839735143019, -122.416045465656)",113240301-E03 +121960291,E36,12065285,Other,07/14/2012,07/14/2012,07/14/2012 06:39:59 PM,07/14/2012 06:39:59 PM,07/14/2012 06:39:59 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/14/2012 06:42:24 PM,12TH ST/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7743586748127, -122.420254280324)",121960291-E36 +120310146,E41,12010252,Structure Fire,01/31/2012,01/31/2012,01/31/2012 11:23:06 AM,01/31/2012 11:23:35 AM,01/31/2012 11:23:49 AM,01/31/2012 11:25:03 AM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/31/2012 11:28:56 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Fire,1,ENGINE,7,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",120310146-E41 +130690174,E28,13023034,Medical Incident,03/10/2013,03/10/2013,03/10/2013 01:43:37 PM,03/10/2013 01:44:31 PM,03/10/2013 01:44:43 PM,03/10/2013 01:45:50 PM,03/10/2013 01:47:15 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 01:55:33 PM,900 Block of COLUMBUS AVE,SF,94133,B01,28,1435,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",130690174-E28 +121650211,T05,12054743,Elevator / Escalator Rescue,06/13/2012,06/13/2012,06/13/2012 02:36:42 PM,06/13/2012 02:39:52 PM,06/13/2012 02:40:04 PM,06/13/2012 02:41:08 PM,06/13/2012 02:43:30 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Fire,06/13/2012 02:58:11 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",121650211-T05 +121020085,E20,12033743,Medical Incident,04/11/2012,04/11/2012,04/11/2012 08:36:15 AM,04/11/2012 08:36:57 AM,04/11/2012 08:37:08 AM,04/11/2012 08:38:08 AM,04/11/2012 08:40:48 AM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 08:58:06 AM,0 Block of CITYVIEW WAY,SF,94131,B08,20,5357,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7486095497539, -122.449771571472)",121020085-E20 +121630354,E36,12054192,Alarms,06/11/2012,06/11/2012,06/11/2012 08:19:55 PM,06/11/2012 08:19:55 PM,06/11/2012 08:20:10 PM,06/11/2012 08:21:43 PM,06/11/2012 08:22:49 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 08:25:27 PM,1200 Block of MARKET ST,SF,94103,B02,36,2337,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",121630354-E36 +102590341,78,10081946,Structure Fire,09/16/2010,09/16/2010,09/16/2010 07:01:40 PM,09/16/2010 07:02:10 PM,09/16/2010 07:02:48 PM,09/16/2010 07:03:42 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 07:07:45 PM,1000 Block of BROADWAY,SF,94133,B01,2,1442,3,3,3,true,,1,MEDIC,9,1,3,Nob Hill,"(37.7968985022629, -122.413996618846)",102590341-78 +130740039,85,13024555,Medical Incident,03/15/2013,03/14/2013,03/15/2013 03:38:28 AM,03/15/2013 03:40:11 AM,03/15/2013 03:40:50 AM,03/15/2013 03:41:45 AM,03/15/2013 03:44:57 AM,03/15/2013 04:01:54 AM,03/15/2013 04:12:06 AM,Code 2 Transport,03/15/2013 04:39:10 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",130740039-85 +103240023,67,10103695,Medical Incident,11/20/2010,11/19/2010,11/20/2010 01:40:37 AM,11/20/2010 01:42:02 AM,11/20/2010 01:42:17 AM,11/20/2010 01:43:01 AM,11/20/2010 01:50:03 AM,11/20/2010 02:10:29 AM,11/20/2010 02:41:20 AM,Code 2 Transport,11/20/2010 03:08:37 AM,200 Block of FOLSOM ST,SF,94105,B03,35,2117,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",103240023-67 +122350196,AM06,12077883,Medical Incident,08/22/2012,08/22/2012,08/22/2012 02:28:34 PM,08/22/2012 02:30:52 PM,08/22/2012 02:31:27 PM,08/22/2012 02:31:56 PM,08/22/2012 02:41:40 PM,08/22/2012 02:52:38 PM,08/22/2012 03:19:53 PM,Code 2 Transport,08/22/2012 03:44:33 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",122350196-AM06 +121290255,T17,12042995,Structure Fire,05/08/2012,05/08/2012,05/08/2012 04:11:33 PM,05/08/2012 04:11:33 PM,05/08/2012 04:11:45 PM,05/08/2012 04:12:49 PM,04/25/2016 01:58:47 PM,04/25/2016 01:58:47 PM,04/25/2016 01:58:47 PM,Other,05/08/2012 04:15:40 PM,PAUL AV/EXETER ST,SF,94124,B10,44,6323,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7230361592834, -122.398348115685)",121290255-T17 +123330109,T05,12110603,Medical Incident,11/28/2012,11/28/2012,11/28/2012 09:20:13 AM,11/28/2012 09:20:13 AM,11/28/2012 09:21:15 AM,11/28/2012 09:22:58 AM,11/28/2012 09:23:43 AM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/28/2012 09:24:25 AM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,E,E,3,false,Non Life-threatening,1,TRUCK,1,5,5,Western Addition,"(37.7828124037537, -122.432679112133)",123330109-T05 +160100531,52,16003921,Medical Incident,01/10/2016,01/09/2016,01/10/2016 04:48:14 AM,01/10/2016 04:48:27 AM,01/10/2016 04:48:34 AM,01/10/2016 04:48:44 AM,01/10/2016 04:59:24 AM,01/10/2016 05:04:34 AM,01/10/2016 05:30:52 AM,Code 2 Transport,01/10/2016 05:47:34 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160100531-52 +160790482,AM24,16031301,Medical Incident,03/19/2016,03/18/2016,03/19/2016 04:14:37 AM,03/19/2016 04:17:16 AM,03/19/2016 04:17:36 AM,03/19/2016 04:18:57 AM,03/19/2016 04:31:57 AM,03/19/2016 04:58:39 AM,03/19/2016 05:16:30 AM,Code 2 Transport,03/19/2016 05:46:18 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160790482-AM24 +112740077,57,11090521,Medical Incident,10/01/2011,09/30/2011,10/01/2011 05:04:00 AM,10/01/2011 05:04:28 AM,10/01/2011 05:05:00 AM,10/01/2011 05:05:38 AM,10/01/2011 05:08:54 AM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Patient Declined Transport,10/01/2011 05:16:57 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",112740077-57 +131360356,E05,13046015,Medical Incident,05/16/2013,05/16/2013,05/16/2013 05:29:09 PM,05/16/2013 05:30:54 PM,05/16/2013 05:31:11 PM,05/16/2013 05:31:26 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 05:32:29 PM,CALIFORNIA ST/STEINER ST,SF,94115,B04,38,3616,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,2,Pacific Heights,"(37.7886969402203, -122.435485565193)",131360356-E05 +123140298,B09,12104590,Alarms,11/09/2012,11/09/2012,11/09/2012 05:55:32 PM,11/09/2012 05:55:37 PM,11/09/2012 05:55:52 PM,11/09/2012 05:58:07 PM,11/09/2012 06:00:17 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 06:04:09 PM,100 Block of MONTANA ST,SF,94112,B09,33,8373,3,3,3,false,Alarm,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7165620568962, -122.457574442781)",123140298-B09 +121370247,T09,12045567,Structure Fire,05/16/2012,05/16/2012,05/16/2012 01:58:51 PM,05/16/2012 01:58:51 PM,05/16/2012 01:59:16 PM,05/16/2012 02:00:17 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/16/2012 02:02:33 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",121370247-T09 +110600378,54,11019849,Medical Incident,03/01/2011,03/01/2011,03/01/2011 11:43:53 PM,03/01/2011 11:43:53 PM,03/01/2011 11:44:10 PM,03/01/2011 11:44:32 PM,03/01/2011 11:46:23 PM,03/01/2011 11:59:47 PM,03/02/2011 12:20:06 AM,Code 2 Transport,03/02/2011 12:40:05 AM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7497103478042, -122.420361382102)",110600378-54 +160670024,88,16026552,Medical Incident,03/07/2016,03/06/2016,03/07/2016 12:06:31 AM,03/07/2016 12:12:24 AM,03/07/2016 12:13:02 AM,03/07/2016 12:13:22 AM,03/07/2016 12:17:57 AM,03/07/2016 12:45:06 AM,03/07/2016 12:48:22 AM,Code 2 Transport,03/07/2016 01:48:06 AM,1600 Block of POLK ST,San Francisco,94109,B04,41,3123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7919308386336, -122.421031367895)",160670024-88 +140110155,RC2,14003815,Medical Incident,01/11/2014,01/11/2014,01/11/2014 12:43:39 PM,01/11/2014 12:44:28 PM,01/11/2014 12:47:03 PM,01/11/2014 12:47:03 PM,01/11/2014 12:49:13 PM,01/11/2014 01:04:25 PM,04/25/2016 01:48:46 PM,Other,01/11/2014 01:50:13 PM,4200 Block of IRVING ST,SF,94122,B08,23,7653,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,8,4,Sunset/Parkside,"(37.7623486594048, -122.503376288616)",140110155-RC2 +160893622,66,16035488,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:10:14 PM,03/29/2016 09:10:14 PM,03/29/2016 09:12:26 PM,03/29/2016 09:12:26 PM,03/29/2016 09:18:08 PM,03/29/2016 09:19:42 PM,03/29/2016 09:40:11 PM,Code 2 Transport,03/29/2016 10:13:53 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",160893622-66 +160361169,KM08,16014175,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:31:47 AM,02/05/2016 09:31:47 AM,02/05/2016 09:32:17 AM,02/05/2016 09:32:54 AM,02/05/2016 09:39:03 AM,02/05/2016 09:49:50 AM,02/05/2016 09:55:45 AM,Code 2 Transport,02/05/2016 11:05:09 AM,17TH ST/DE HARO ST,San Francisco,94107,B03,29,2413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission Bay,"(37.7648392372895, -122.401599000928)",160361169-KM08 +111620314,RS1,11053608,Medical Incident,06/11/2011,06/11/2011,06/11/2011 07:42:58 PM,06/11/2011 07:44:44 PM,06/11/2011 07:46:35 PM,06/11/2011 07:47:26 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Other,06/11/2011 07:47:55 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",111620314-RS1 +160551556,84,16021982,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:50:54 AM,02/24/2016 11:51:31 AM,02/24/2016 11:52:45 AM,02/24/2016 11:53:35 AM,02/24/2016 11:57:21 AM,02/24/2016 12:17:36 PM,02/24/2016 12:35:14 PM,Code 2 Transport,02/24/2016 01:20:01 PM,900 Block of GRAFTON AVE,San Francisco,94112,B09,15,8434,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7199512389218, -122.462457629063)",160551556-84 +110730313,E05,11024115,Medical Incident,03/14/2011,03/14/2011,03/14/2011 06:35:21 PM,03/14/2011 06:36:19 PM,03/14/2011 06:36:39 PM,03/14/2011 06:37:38 PM,03/14/2011 06:38:40 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 06:57:08 PM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",110730313-E05 +160322398,61,16012644,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:02:25 PM,02/01/2016 04:04:30 PM,02/01/2016 04:05:09 PM,02/01/2016 04:05:19 PM,02/01/2016 04:24:41 PM,02/01/2016 04:34:56 PM,02/01/2016 04:47:17 PM,Code 2 Transport,02/01/2016 05:10:56 PM,600 Block of PERSIA AVE,San Francisco,94112,B09,43,6156,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7206195943641, -122.430843982203)",160322398-61 +112550025,66,11084003,Medical Incident,09/12/2011,09/11/2011,09/12/2011 02:41:16 AM,09/12/2011 02:43:29 AM,09/12/2011 02:43:38 AM,09/12/2011 02:43:50 AM,09/12/2011 02:50:01 AM,09/12/2011 02:58:47 AM,09/12/2011 03:08:54 AM,Code 2 Transport,09/12/2011 03:15:32 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112550025-66 +133250208,84,13110396,Medical Incident,11/21/2013,11/21/2013,11/21/2013 01:52:58 PM,11/21/2013 01:54:39 PM,11/21/2013 01:54:52 PM,11/21/2013 01:59:01 PM,11/21/2013 02:20:14 PM,11/21/2013 02:33:34 PM,11/21/2013 03:10:25 PM,Code 2 Transport,11/21/2013 03:32:15 PM,1100 Block of FITZGERALD AVE,SF,94124,B10,17,6615,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7204964019129, -122.390342560546)",133250208-84 +111820280,KM11,11060155,Traffic Collision,07/01/2011,07/01/2011,07/01/2011 04:00:20 PM,07/01/2011 04:00:21 PM,07/01/2011 04:00:49 PM,07/01/2011 04:07:20 PM,07/01/2011 04:11:50 PM,07/01/2011 04:24:54 PM,07/01/2011 04:40:18 PM,Code 2 Transport,07/01/2011 04:58:33 PM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,3,3,3,false,,1,PRIVATE,2,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",111820280-KM11 +111850031,E39,11061015,Medical Incident,07/04/2011,07/03/2011,07/04/2011 02:41:21 AM,07/04/2011 02:45:51 AM,07/04/2011 02:46:11 AM,07/04/2011 02:47:57 AM,07/04/2011 02:50:39 AM,04/25/2016 02:03:50 PM,04/25/2016 02:03:50 PM,Other,07/04/2011 03:03:26 AM,WEST PORTAL AV/14TH AV,SF,94127,B08,39,8562,1,1,2,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7379698827734, -122.469056677033)",111850031-E39 +111580363,E16,11052397,Structure Fire,06/07/2011,06/07/2011,06/07/2011 09:41:56 PM,06/07/2011 09:41:57 PM,06/07/2011 09:42:43 PM,06/07/2011 09:44:07 PM,06/07/2011 09:45:29 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/07/2011 09:45:37 PM,LAGUNA ST/LOMBARD ST,SF,94123,B04,16,3352,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8004692165623, -122.431115291336)",111580363-E16 +113380240,E08,11112060,Traffic Collision,12/04/2011,12/04/2011,12/04/2011 02:40:53 PM,12/04/2011 02:41:02 PM,12/04/2011 02:41:29 PM,12/04/2011 02:42:19 PM,12/04/2011 02:43:12 PM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/04/2011 03:41:54 PM,4TH ST/BRANNAN ST,SF,94107,B03,8,2223,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7783268314649, -122.396530638158)",113380240-E08 +140100072,B04,14003401,Structure Fire,01/10/2014,01/09/2014,01/10/2014 07:35:28 AM,01/10/2014 07:35:28 AM,01/10/2014 07:35:37 AM,01/10/2014 07:36:25 AM,01/10/2014 07:39:11 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 07:48:04 AM,2300 Block of JACKSON ST,SF,94115,B04,38,3465,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7926300152034, -122.433748587874)",140100072-B04 +103090167,RS2,10099016,Structure Fire,11/05/2010,11/05/2010,11/05/2010 12:17:10 PM,11/05/2010 12:18:02 PM,11/05/2010 12:18:18 PM,11/05/2010 12:19:02 PM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Other,11/05/2010 12:22:53 PM,1900 Block of GOUGH ST,SF,94109,B04,38,3253,3,3,3,false,,1,RESCUE SQUAD,11,4,2,Pacific Heights,"(37.7913069920103, -122.425959496985)",103090167-RS2 +160812233,60,16032230,Medical Incident,03/21/2016,03/21/2016,03/21/2016 03:01:57 PM,03/21/2016 03:01:57 PM,03/21/2016 03:02:07 PM,03/21/2016 03:03:10 PM,03/21/2016 03:13:30 PM,03/21/2016 03:28:58 PM,03/21/2016 03:32:40 PM,Code 2 Transport,03/21/2016 04:32:33 PM,200 Block of 12TH AVE,San Francisco,94118,B07,31,718,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7835852895624, -122.470982832694)",160812233-60 +160531733,85,16021209,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:30:56 PM,02/22/2016 01:31:23 PM,02/22/2016 01:31:41 PM,02/22/2016 01:31:51 PM,02/22/2016 01:35:08 PM,02/22/2016 01:42:22 PM,02/22/2016 01:47:55 PM,Code 3 Transport,02/22/2016 03:02:54 PM,19TH ST/DOLORES ST,San Francisco,94110,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",160531733-85 +103600270,E01,10115625,Medical Incident,12/26/2010,12/26/2010,12/26/2010 09:43:20 PM,12/26/2010 09:43:56 PM,12/26/2010 09:44:38 PM,12/26/2010 09:47:56 PM,12/26/2010 09:48:26 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 09:51:47 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103600270-E01 +122640003,T05,12087039,Citizen Assist / Service Call,09/19/2012,09/19/2012,09/19/2012 11:59:36 PM,09/20/2012 12:01:36 AM,09/20/2012 12:01:43 AM,09/20/2012 12:03:53 AM,09/20/2012 12:07:21 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Fire,09/20/2012 01:11:13 AM,0 Block of PAGE ST,SF,94102,B02,36,3212,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7741354532801, -122.421572563496)",122640003-T05 +132670298,E08,13090740,Medical Incident,09/24/2013,09/24/2013,09/24/2013 05:55:33 PM,09/24/2013 05:57:19 PM,09/24/2013 05:58:02 PM,09/24/2013 05:58:41 PM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Other,09/24/2013 05:59:49 PM,100 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7786395920196, -122.410120840963)",132670298-E08 +120800215,T02,12026586,Alarms,03/20/2012,03/20/2012,03/20/2012 02:52:26 PM,03/20/2012 02:53:42 PM,03/20/2012 02:54:18 PM,03/20/2012 02:56:23 PM,03/20/2012 02:58:49 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/20/2012 03:07:07 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",120800215-T02 +121580099,KM04,12052209,Medical Incident,06/06/2012,06/06/2012,06/06/2012 09:38:15 AM,06/06/2012 09:38:36 AM,06/06/2012 09:40:20 AM,06/06/2012 09:41:01 AM,06/06/2012 09:43:36 AM,06/06/2012 10:00:38 AM,06/06/2012 10:16:23 AM,Code 2 Transport,06/06/2012 10:50:08 AM,1000 Block of MCALLISTER ST,SF,94102,B02,5,3425,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",121580099-KM04 +112370047,E17,11078095,Medical Incident,08/25/2011,08/24/2011,08/25/2011 03:35:45 AM,08/25/2011 03:36:38 AM,08/25/2011 03:36:55 AM,08/25/2011 03:38:24 AM,08/25/2011 03:39:45 AM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 03:49:00 AM,THOMAS AV/INGALLS ST,SF,94124,B10,17,6653,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7272332288185, -122.385682204312)",112370047-E17 +102590088,T10,10081743,Alarms,09/16/2010,09/16/2010,09/16/2010 08:11:52 AM,09/16/2010 08:13:06 AM,09/16/2010 08:13:14 AM,09/16/2010 08:17:29 AM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 08:19:09 AM,0 Block of TERRA VISTA AVE,SF,94115,B05,21,4256,3,3,3,false,,1,TRUCK,3,5,2,Lone Mountain/USF,"(37.7815553117613, -122.44255898267)",102590088-T10 +160802818,AM08,16031901,Medical Incident,03/20/2016,03/20/2016,03/20/2016 06:12:29 PM,03/20/2016 06:13:57 PM,03/20/2016 06:14:49 PM,03/20/2016 06:15:18 PM,03/20/2016 06:29:00 PM,03/20/2016 06:49:48 PM,03/20/2016 07:13:54 PM,Code 2 Transport,03/20/2016 07:32:43 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160802818-AM08 +131460227,RC1,13049546,Water Rescue,05/26/2013,05/26/2013,05/26/2013 01:31:17 PM,05/26/2013 01:32:44 PM,05/26/2013 01:33:46 PM,05/26/2013 01:34:02 PM,05/26/2013 01:41:19 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 01:46:43 PM,CALL BOX: FORT MASON-PIER 4,SF,94109,B99,16,3349,3,3,3,true,Fire,1,RESCUE CAPTAIN,6,1,2,Russian Hill,"(37.8085019164153, -122.420857228902)",131460227-RC1 +120150042,87,12004975,Medical Incident,01/15/2012,01/14/2012,01/15/2012 02:09:43 AM,01/15/2012 02:11:32 AM,01/15/2012 02:11:53 AM,01/15/2012 02:12:02 AM,01/15/2012 02:16:34 AM,01/15/2012 02:29:02 AM,01/15/2012 02:41:52 AM,Code 2 Transport,01/15/2012 03:01:57 AM,1700 Block of TURK ST,SF,94115,B05,5,4152,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7798704351211, -122.437493921383)",120150042-87 +121780174,E22,12059248,Other,06/26/2012,06/26/2012,06/26/2012 12:46:02 PM,06/26/2012 12:47:11 PM,06/26/2012 12:47:16 PM,06/26/2012 12:48:18 PM,06/26/2012 01:00:06 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Fire,06/26/2012 01:00:47 PM,8TH AV/ORTEGA ST,SF,94116,B08,22,7336,3,3,3,false,Alarm,1,ENGINE,1,8,7,Inner Sunset,"(37.7528992273861, -122.464462033628)",121780174-E22 +111500343,B01,11049849,Alarms,05/30/2011,05/30/2011,05/30/2011 11:27:49 PM,05/30/2011 11:29:03 PM,05/30/2011 11:29:45 PM,05/30/2011 11:29:57 PM,05/30/2011 11:32:11 PM,04/25/2016 02:04:22 PM,04/25/2016 02:04:22 PM,Other,05/30/2011 11:35:18 PM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7983830790911, -122.407521730924)",111500343-B01 +112510056,T16,11082664,Structure Fire,09/08/2011,09/07/2011,09/08/2011 04:53:25 AM,09/08/2011 04:53:25 AM,09/08/2011 04:54:42 AM,09/08/2011 04:56:31 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 05:11:00 AM,1600 Block of UNION ST,SF,94123,B04,16,323,3,3,3,false,,1,TRUCK,3,4,2,Marina,"(37.7981848264843, -122.426436289929)",112510056-T16 +111540208,96,11050902,Medical Incident,06/03/2011,06/03/2011,06/03/2011 02:27:44 PM,06/03/2011 02:29:33 PM,06/03/2011 02:29:48 PM,06/03/2011 02:30:30 PM,06/03/2011 02:36:28 PM,06/03/2011 02:51:54 PM,06/03/2011 03:10:13 PM,Code 2 Transport,06/03/2011 03:29:42 PM,0 Block of SPEAR ST,SF,94105,B03,13,2115,E,E,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",111540208-96 +103480266,AM06,10111655,Medical Incident,12/14/2010,12/14/2010,12/14/2010 03:41:58 PM,12/14/2010 03:43:33 PM,12/14/2010 03:44:13 PM,12/14/2010 03:45:43 PM,12/14/2010 03:49:58 PM,12/14/2010 04:01:03 PM,12/14/2010 04:11:54 PM,Code 2 Transport,12/14/2010 04:54:15 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",103480266-AM06 +112880067,E01,11095442,Medical Incident,10/15/2011,10/14/2011,10/15/2011 05:27:52 AM,10/15/2011 05:29:35 AM,10/15/2011 05:29:59 AM,10/15/2011 05:30:31 AM,10/15/2011 05:31:15 AM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Other,10/15/2011 05:35:09 AM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112880067-E01 +102580274,KM05,10081564,Medical Incident,09/15/2010,09/15/2010,09/15/2010 04:27:41 PM,09/15/2010 04:28:43 PM,09/15/2010 04:29:01 PM,09/15/2010 04:29:44 PM,09/15/2010 04:30:24 PM,09/15/2010 04:55:07 PM,09/15/2010 04:58:44 PM,Code 3 Transport,09/15/2010 05:43:22 PM,400 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",102580274-KM05 +122330222,AM02,12077313,Medical Incident,08/20/2012,08/20/2012,08/20/2012 02:39:51 PM,08/20/2012 02:41:26 PM,08/20/2012 02:42:34 PM,08/20/2012 02:43:15 PM,08/20/2012 02:47:23 PM,08/20/2012 03:22:06 PM,08/20/2012 03:29:25 PM,Code 2 Transport,08/20/2012 04:10:07 PM,900 Block of SCOTT ST,SF,94115,B05,5,4134,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7784633845532, -122.436858958509)",122330222-AM02 +160693029,56,16027587,Medical Incident,03/09/2016,03/09/2016,03/09/2016 06:17:03 PM,03/09/2016 06:17:49 PM,03/09/2016 06:18:08 PM,03/09/2016 06:18:33 PM,03/09/2016 06:27:32 PM,03/09/2016 06:33:40 PM,03/09/2016 07:02:45 PM,Code 2 Transport,03/09/2016 07:11:54 PM,0 Block of SANTA MONICA WAY,San Francisco,94127,B08,39,8564,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7389789572342, -122.465038949076)",160693029-56 +110330230,E19,11010852,Medical Incident,02/02/2011,02/02/2011,02/02/2011 02:41:17 PM,02/02/2011 02:41:56 PM,02/02/2011 02:42:56 PM,02/02/2011 02:45:30 PM,02/02/2011 02:48:47 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 02:52:57 PM,300 Block of WEST PORTAL AVE,SF,94127,B08,39,8561,3,3,3,true,,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7373722059796, -122.469939861606)",110330230-E19 +160091952,89,16003677,Medical Incident,01/09/2016,01/09/2016,01/09/2016 02:25:25 PM,01/09/2016 02:25:25 PM,01/09/2016 02:26:41 PM,01/09/2016 02:27:33 PM,01/09/2016 02:35:36 PM,01/09/2016 02:57:28 PM,01/09/2016 03:14:53 PM,Code 2 Transport,01/09/2016 04:14:40 PM,DOLORES ST/CLINTON PARK ST,San Francisco,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7692470632367, -122.426955631709)",160091952-89 +160502516,67,16020165,Medical Incident,02/19/2016,02/19/2016,02/19/2016 04:31:28 PM,02/19/2016 04:32:46 PM,02/19/2016 04:35:14 PM,02/19/2016 04:35:21 PM,02/19/2016 04:41:07 PM,02/19/2016 05:04:25 PM,02/19/2016 05:12:13 PM,Code 2 Transport,02/19/2016 05:58:08 PM,ELLIS ST/HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",160502516-67 +112860149,E14,11094704,Other,10/13/2011,10/13/2011,10/13/2011 10:36:14 AM,10/13/2011 10:36:37 AM,10/13/2011 10:36:49 AM,10/13/2011 10:37:06 AM,10/13/2011 10:43:25 AM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 11:01:35 AM,JOHN F KENNEDY DR/30TH AV,SF,94122,B07,14,7211,3,3,3,true,,1,ENGINE,1,7,1,Golden Gate Park,"(37.7708945643478, -122.489804361308)",112860149-E14 +120650066,78,12021395,Medical Incident,03/05/2012,03/04/2012,03/05/2012 06:45:43 AM,03/05/2012 06:48:29 AM,03/05/2012 06:53:01 AM,03/05/2012 06:53:04 AM,03/05/2012 07:02:21 AM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Unable to Locate,03/05/2012 07:14:16 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",120650066-78 +112450340,B03,11080895,Alarms,09/02/2011,09/02/2011,09/02/2011 07:59:41 PM,09/02/2011 08:00:55 PM,09/02/2011 08:01:01 PM,09/02/2011 08:04:14 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 08:05:36 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.787352867216, -122.399071684966)",112450340-B03 +121760038,E36,12058371,Medical Incident,06/24/2012,06/23/2012,06/24/2012 01:36:25 AM,06/24/2012 01:38:04 AM,06/24/2012 01:38:18 AM,06/24/2012 01:40:10 AM,06/24/2012 01:40:38 AM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/24/2012 01:41:00 AM,VAN NESS AV/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7751470741622, -122.419255607214)",121760038-E36 +122590036,E03,12085496,Medical Incident,09/15/2012,09/14/2012,09/15/2012 01:48:52 AM,09/15/2012 01:50:28 AM,09/15/2012 01:51:01 AM,09/15/2012 01:52:59 AM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/15/2012 01:54:51 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,Non Life-threatening,1,ENGINE,2,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",122590036-E03 +160811902,79,16032191,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:34:23 PM,03/21/2016 01:36:20 PM,03/21/2016 01:36:40 PM,03/21/2016 01:36:53 PM,03/21/2016 01:43:06 PM,03/21/2016 02:06:08 PM,03/21/2016 02:23:22 PM,Code 2 Transport,03/21/2016 03:02:16 PM,1200 Block of SHAFTER AVE,San Francisco,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",160811902-79 +121510016,88,12049903,Medical Incident,05/30/2012,05/29/2012,05/30/2012 01:24:37 AM,05/30/2012 01:26:50 AM,05/30/2012 01:28:25 AM,05/30/2012 01:28:44 AM,05/30/2012 01:37:26 AM,05/30/2012 01:50:01 AM,05/30/2012 02:02:23 AM,Other,05/30/2012 02:23:49 AM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,E,E,3,false,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",121510016-88 +110450227,74,11014957,Medical Incident,02/14/2011,02/14/2011,02/14/2011 03:07:45 PM,02/14/2011 03:09:26 PM,02/14/2011 03:09:53 PM,02/14/2011 03:10:24 PM,02/14/2011 03:13:55 PM,02/14/2011 03:36:23 PM,02/14/2011 04:13:51 PM,Code 2 Transport,02/14/2011 04:17:18 PM,700 Block of CORTLAND AVE,SF,94110,B06,32,5726,E,E,3,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.738957265139, -122.414863269861)",110450227-74 +132360181,E29,13079639,Medical Incident,08/24/2013,08/24/2013,08/24/2013 02:39:25 PM,08/24/2013 02:39:57 PM,08/24/2013 02:40:46 PM,08/24/2013 02:41:47 PM,08/24/2013 02:45:29 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/24/2013 02:48:27 PM,0 Block of NORFOLK ST,SF,94103,B02,36,5121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7709412271608, -122.413598233416)",132360181-E29 +140370321,AR1,14012635,Administrative,02/06/2014,02/06/2014,02/06/2014 08:03:03 PM,02/06/2014 08:03:53 PM,02/06/2014 08:06:07 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 08:06:35 PM,1400 Block of EVANS AVE,SF,94124,B10,25,6521,3,3,3,false,,1,INVESTIGATION,1,10,10,Bayview Hunters Point,"(37.7413198233919, -122.385730461663)",140370321-AR1 +160551377,KM15,16021961,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:10:39 AM,02/24/2016 11:12:09 AM,02/24/2016 11:12:40 AM,02/24/2016 11:13:28 AM,02/24/2016 11:21:48 AM,02/24/2016 11:43:39 AM,02/24/2016 12:51:32 PM,Code 2 Transport,02/24/2016 12:53:23 PM,700 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7794115468887, -122.425174050161)",160551377-KM15 +160092637,77,16003736,Traffic Collision,01/09/2016,01/09/2016,01/09/2016 05:27:42 PM,01/09/2016 05:28:17 PM,01/09/2016 05:29:50 PM,01/09/2016 05:29:50 PM,01/09/2016 05:32:34 PM,01/09/2016 05:49:38 PM,01/09/2016 06:04:58 PM,Code 3 Transport,01/09/2016 07:11:47 PM,NORTH POINT ST/COLUMBUS AV,San Francisco,94133,B01,28,1525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8059773670462, -122.418380658404)",160092637-77 +102790154,89,10088680,Medical Incident,10/06/2010,10/06/2010,10/06/2010 12:37:00 PM,10/06/2010 12:37:30 PM,10/06/2010 12:38:18 PM,10/06/2010 12:40:18 PM,10/06/2010 12:44:10 PM,10/06/2010 12:57:19 PM,10/06/2010 01:06:01 PM,Code 2 Transport,10/06/2010 01:45:59 PM,2600 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7546325890357, -122.41873973942)",102790154-89 +110100021,B06,11003182,Medical Incident,01/10/2011,01/09/2011,01/10/2011 01:42:12 AM,01/10/2011 01:42:12 AM,01/10/2011 01:43:40 AM,01/10/2011 01:46:39 AM,01/10/2011 01:48:30 AM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 01:50:10 AM,29TH ST/SAN JOSE AV,SF,94110,B06,32,5625,E,E,3,false,,1,CHIEF,4,6,8,Noe Valley,"(37.7439422420021, -122.422669446432)",110100021-B06 +160061203,55,16002344,Medical Incident,01/06/2016,01/06/2016,01/06/2016 10:29:30 AM,01/06/2016 10:29:30 AM,01/06/2016 10:30:36 AM,01/06/2016 10:30:45 AM,01/06/2016 10:43:01 AM,01/06/2016 11:27:34 AM,01/06/2016 11:34:42 AM,Code 2 Transport,01/06/2016 12:01:27 PM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",160061203-55 +132010281,E33,13068239,Medical Incident,07/20/2013,07/20/2013,07/20/2013 06:22:27 PM,07/20/2013 06:25:13 PM,07/20/2013 06:25:29 PM,07/20/2013 06:27:31 PM,07/20/2013 06:30:51 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 06:35:03 PM,MOUNT VERNON AV/MISSION ST,SF,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7145671993419, -122.442661524594)",132010281-E33 +120800344,E19,12026706,Medical Incident,03/20/2012,03/20/2012,03/20/2012 09:56:45 PM,03/20/2012 09:57:19 PM,03/20/2012 09:57:45 PM,03/20/2012 09:59:27 PM,03/20/2012 10:02:24 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/20/2012 10:10:43 PM,2600 Block of YORBA ST,SF,94116,B08,19,7614,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7346752562367, -122.494982313585)",120800344-E19 +111560191,B08,11051578,Structure Fire,06/05/2011,06/05/2011,06/05/2011 12:07:13 PM,06/05/2011 12:08:02 PM,06/05/2011 12:08:09 PM,04/25/2016 02:04:18 PM,06/05/2011 12:09:06 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 12:34:13 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,,1,CHIEF,1,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",111560191-B08 +140370247,88,14012571,Medical Incident,02/06/2014,02/06/2014,02/06/2014 04:00:17 PM,02/06/2014 04:01:25 PM,02/06/2014 04:11:37 PM,02/06/2014 04:17:03 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Patient Declined Transport,02/06/2014 04:31:11 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",140370247-88 +160481417,73,16019308,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 11:10:46 AM,02/17/2016 11:11:17 AM,02/17/2016 11:11:58 AM,02/17/2016 11:12:30 AM,02/17/2016 11:16:55 AM,02/17/2016 11:39:38 AM,02/17/2016 11:52:36 AM,Code 2 Transport,02/17/2016 12:58:37 PM,UNION ST/VAN NESS AV,San Francisco,94109,B04,41,3131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Russian Hill,"(37.7985524526538, -122.423982146754)",160481417-73 +110670343,E18,11022200,Medical Incident,03/08/2011,03/08/2011,03/08/2011 10:02:34 PM,03/08/2011 10:04:31 PM,03/08/2011 10:04:58 PM,03/08/2011 10:06:05 PM,03/08/2011 10:10:54 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/08/2011 10:19:57 PM,LINCOLN WY/GREAT HY,SF,94122,B08,23,7722,3,3,3,true,,1,ENGINE,2,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",110670343-E18 +112450285,T06,11080847,Alarms,09/02/2011,09/02/2011,09/02/2011 05:06:24 PM,09/02/2011 05:08:51 PM,09/02/2011 05:08:56 PM,09/02/2011 05:09:52 PM,09/02/2011 05:12:20 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 05:19:29 PM,700 Block of HAIGHT ST,SF,94117,B05,21,4142,3,3,3,false,,1,TRUCK,1,5,5,Haight Ashbury,"(37.7716381141296, -122.434564848231)",112450285-T06 +140440289,D2,14015040,Other,02/13/2014,02/13/2014,02/13/2014 03:34:26 PM,02/13/2014 03:34:26 PM,02/13/2014 03:37:06 PM,02/13/2014 03:37:38 PM,02/13/2014 03:42:27 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 05:05:36 PM,MASON ST/UNION ST,SF,94133,B01,28,1422,,3,3,false,Alarm,1,CHIEF,2,1,3,Russian Hill,"(37.8000323990065, -122.412471378823)",140440289-D2 +160671253,61,16026717,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:46:38 AM,03/07/2016 11:49:03 AM,03/07/2016 11:49:39 AM,03/07/2016 11:49:48 AM,03/07/2016 12:02:19 PM,03/07/2016 12:24:32 PM,03/07/2016 12:36:33 PM,Code 2 Transport,03/07/2016 01:20:20 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160671253-61 +110180140,E48,11005900,Medical Incident,01/18/2011,01/18/2011,01/18/2011 11:56:44 AM,01/18/2011 11:58:04 AM,01/18/2011 11:58:22 AM,01/18/2011 11:59:58 AM,01/18/2011 12:03:37 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 12:13:00 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,1,3,3,true,,1,ENGINE,2,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",110180140-E48 +160331362,75,16012951,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:34:10 AM,02/02/2016 11:34:10 AM,02/02/2016 11:34:57 AM,02/02/2016 11:35:11 AM,02/02/2016 11:43:04 AM,02/02/2016 11:55:54 AM,02/02/2016 12:01:23 PM,Code 2 Transport,02/02/2016 12:40:02 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7683208883339, -122.4243245293)",160331362-75 +132630385,E28,13089287,Medical Incident,09/20/2013,09/20/2013,09/20/2013 08:26:11 PM,09/20/2013 08:27:18 PM,09/20/2013 08:28:51 PM,09/20/2013 08:29:53 PM,09/20/2013 08:33:51 PM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Patient Declined Transport,09/20/2013 08:51:59 PM,BAY ST/TAYLOR ST,SF,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8054171711156, -122.415241486546)",132630385-E28 +112950298,91,11097942,Water Rescue,10/22/2011,10/22/2011,10/22/2011 06:46:23 PM,10/22/2011 06:47:32 PM,10/22/2011 06:48:36 PM,10/22/2011 06:48:49 PM,10/22/2011 06:54:56 PM,10/22/2011 07:11:04 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 07:38:40 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,true,,1,MEDIC,5,1,3,North Beach,"(37.8081576930541, -122.412496867032)",112950298-91 +131320070,E05,13044501,Alarms,05/12/2013,05/12/2013,05/12/2013 08:16:50 AM,05/12/2013 08:18:18 AM,05/12/2013 08:18:28 AM,05/12/2013 08:19:49 AM,05/12/2013 08:21:35 AM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 08:53:27 AM,TURK ST/PIERCE ST,SF,94115,B05,5,3643,3,3,3,true,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.780077637862, -122.435424516858)",131320070-E05 +133320109,T17,13112629,Alarms,11/28/2013,11/28/2013,11/28/2013 11:34:50 AM,11/28/2013 11:35:46 AM,11/28/2013 11:36:04 AM,11/28/2013 11:37:49 AM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 11:44:08 AM,300 Block of SCHWERIN ST,SF,,B09,44,6252,3,3,3,false,Alarm,1,TRUCK,3,None,None,None,"(37.7082991569298, -122.41229956133)",133320109-T17 +160761179,89,16030079,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:14:56 AM,03/16/2016 10:16:35 AM,03/16/2016 10:19:05 AM,03/16/2016 10:19:42 AM,03/16/2016 10:56:42 AM,03/16/2016 10:56:42 AM,03/16/2016 11:20:48 AM,Code 2 Transport,03/16/2016 12:12:28 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7854659679151, -122.405582629186)",160761179-89 +133390190,E13,13114885,Alarms,12/05/2013,12/05/2013,12/05/2013 12:32:46 PM,12/05/2013 12:34:03 PM,12/05/2013 12:34:21 PM,12/05/2013 12:35:33 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 12:38:42 PM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7927320655845, -122.40413464889)",133390190-E13 +160492572,84,16019794,Medical Incident,02/18/2016,02/18/2016,02/18/2016 04:21:15 PM,02/18/2016 04:23:15 PM,02/18/2016 04:24:02 PM,02/18/2016 04:24:09 PM,02/18/2016 04:41:02 PM,02/18/2016 05:24:53 PM,02/18/2016 06:02:07 PM,Code 2 Transport,02/18/2016 07:01:25 PM,1000 Block of WISCONSIN ST,San Francisco,94107,B10,37,257,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",160492572-84 +92080059,AP,9061606,Other,07/27/2009,07/26/2009,07/27/2009 07:25:27 AM,07/27/2009 07:25:28 AM,07/27/2009 07:25:28 AM,04/25/2016 03:27:44 PM,04/25/2016 03:27:44 PM,04/25/2016 03:27:44 PM,04/25/2016 03:27:44 PM,Fire,07/27/2009 07:25:46 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",092080059-AP +160493531,AM14,16019878,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:44:36 PM,02/18/2016 08:44:59 PM,02/18/2016 08:45:30 PM,02/18/2016 08:46:10 PM,02/18/2016 08:50:02 PM,02/18/2016 09:11:26 PM,02/18/2016 09:28:18 PM,Code 2 Transport,02/18/2016 09:54:24 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7979143834762, -122.405841249396)",160493531-AM14 +160232771,53,16009253,Medical Incident,01/23/2016,01/23/2016,01/23/2016 05:52:22 PM,01/23/2016 05:53:26 PM,01/23/2016 05:53:39 PM,01/23/2016 05:53:50 PM,01/23/2016 06:06:39 PM,01/23/2016 06:17:11 PM,01/23/2016 06:22:07 PM,Code 2 Transport,01/23/2016 07:05:54 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160232771-53 +160400750,88,16015920,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:26:20 AM,02/09/2016 08:26:20 AM,02/09/2016 08:26:36 AM,02/09/2016 08:27:32 AM,02/09/2016 08:35:34 AM,02/09/2016 08:51:44 AM,02/09/2016 08:58:07 AM,Code 2 Transport,02/09/2016 09:16:35 AM,MAIDEN LN/GRANT AV,San Francisco,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7882302955315, -122.405131393424)",160400750-88 +122300243,E19,12076268,Medical Incident,08/17/2012,08/17/2012,08/17/2012 02:00:07 PM,08/17/2012 02:03:48 PM,08/17/2012 02:04:32 PM,08/17/2012 02:05:55 PM,08/17/2012 02:10:18 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 02:38:49 PM,600 Block of JUNIPERO SERRA BLVD,SF,94127,B09,19,8446,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7278528624134, -122.471837933686)",122300243-E19 +132820066,E21,13095860,Medical Incident,10/09/2013,10/09/2013,10/09/2013 08:03:56 AM,10/09/2013 08:05:48 AM,10/09/2013 08:09:22 AM,10/09/2013 08:10:46 AM,10/09/2013 08:14:08 AM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/09/2013 08:34:12 AM,1600 Block of HAYES ST,SF,94117,B05,21,4351,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7741999233828, -122.443568815049)",132820066-E21 +120280165,E21,12009394,Medical Incident,01/28/2012,01/28/2012,01/28/2012 12:50:43 PM,01/28/2012 12:51:45 PM,01/28/2012 12:52:33 PM,01/28/2012 12:52:58 PM,01/28/2012 12:54:44 PM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/28/2012 01:06:23 PM,600 Block of DIVISADERO ST,SF,94117,B05,21,4146,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.775474331091, -122.437778722849)",120280165-E21 +132250081,AM16,13075865,Medical Incident,08/13/2013,08/13/2013,08/13/2013 08:38:52 AM,08/13/2013 08:40:37 AM,08/13/2013 08:41:32 AM,08/13/2013 08:42:56 AM,08/13/2013 08:46:11 AM,08/13/2013 08:54:28 AM,08/13/2013 09:12:00 AM,Code 2 Transport,08/13/2013 10:00:23 AM,1300 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7960793777464, -122.411606337845)",132250081-AM16 +160083700,76,16003424,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:30:35 PM,01/08/2016 09:30:35 PM,01/08/2016 09:31:39 PM,01/08/2016 09:31:48 PM,01/08/2016 09:49:45 PM,01/08/2016 09:52:02 PM,01/08/2016 10:18:03 PM,Code 2 Transport,01/08/2016 11:03:52 PM,5100 Block of 3RD ST,San Francisco,94124,B10,17,6514,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7320660126248, -122.391792063665)",160083700-76 +160451262,82,16018080,Medical Incident,02/14/2016,02/14/2016,02/14/2016 10:59:35 AM,02/14/2016 10:59:58 AM,02/14/2016 11:00:11 AM,02/14/2016 11:00:40 AM,02/14/2016 11:10:41 AM,02/14/2016 11:11:47 AM,02/14/2016 11:18:18 AM,Code 3 Transport,02/14/2016 12:16:00 PM,200 Block of 26TH AV,San Francisco,94121,B07,14,7217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Outer Richmond,"(37.7847621492875, -122.48622534236)",160451262-82 +160631076,60,16025004,Medical Incident,03/03/2016,03/03/2016,03/03/2016 09:39:11 AM,03/03/2016 09:41:08 AM,03/03/2016 09:41:47 AM,03/03/2016 09:41:58 AM,03/03/2016 09:49:55 AM,03/03/2016 10:01:45 AM,03/03/2016 10:26:13 AM,Code 2 Transport,03/03/2016 10:56:36 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160631076-60 +141000107,68,14033701,Medical Incident,04/10/2014,04/10/2014,04/10/2014 09:30:52 AM,04/10/2014 09:33:17 AM,04/10/2014 09:35:55 AM,04/10/2014 09:36:53 AM,04/25/2016 01:47:17 PM,04/25/2016 01:47:17 PM,04/25/2016 01:47:17 PM,Patient Declined Transport,04/10/2014 09:47:07 AM,200 Block of MARKET ST,,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",141000107-68 +113320285,95,11110060,Medical Incident,11/28/2011,11/28/2011,11/28/2011 04:38:07 PM,11/28/2011 04:38:46 PM,11/28/2011 04:39:54 PM,11/28/2011 04:40:19 PM,11/28/2011 04:51:49 PM,11/28/2011 05:05:38 PM,11/28/2011 05:39:12 PM,Code 2 Transport,11/28/2011 05:59:19 PM,1400 Block of CROAKER CT,TI,94130,B03,48,2931,3,3,3,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8241187828322, -122.374566544632)",113320285-95 +140950191,E37,14031949,Structure Fire,04/05/2014,04/05/2014,04/05/2014 12:40:25 PM,04/05/2014 12:40:25 PM,04/05/2014 12:40:48 PM,04/05/2014 12:41:54 PM,04/05/2014 12:43:35 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Fire,04/05/2014 12:44:13 PM,18TH ST/MISSOURI ST,SAN FRANCISCO,94107,B03,37,2462,3,3,3,false,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7625796499629, -122.396526826726)",140950191-E37 +111940120,T01,11063998,Structure Fire,07/13/2011,07/13/2011,07/13/2011 10:42:45 AM,07/13/2011 10:43:39 AM,07/13/2011 10:44:01 AM,07/13/2011 10:49:50 AM,07/13/2011 10:55:23 AM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 11:01:54 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,TRUCK,9,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",111940120-T01 +131750131,T02,13059331,Alarms,06/24/2013,06/24/2013,06/24/2013 10:57:47 AM,06/24/2013 10:59:06 AM,06/24/2013 10:59:16 AM,06/24/2013 10:59:54 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 11:03:19 AM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Alarm,1,TRUCK,3,1,3,North Beach,"(37.7979143834762, -122.405841249396)",131750131-T02 +130680134,88,13022633,Medical Incident,03/09/2013,03/09/2013,03/09/2013 10:24:31 AM,03/09/2013 10:26:27 AM,03/09/2013 10:26:41 AM,03/09/2013 10:28:06 AM,03/09/2013 10:37:11 AM,03/09/2013 10:49:05 AM,03/09/2013 11:20:14 AM,Code 2 Transport,03/09/2013 12:01:24 PM,6200 Block of 3RD ST,SF,94124,B10,44,6544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208979952595, -122.396464970114)",130680134-88 +160753212,83,16029846,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:40:08 PM,03/15/2016 06:40:51 PM,03/15/2016 06:41:09 PM,03/15/2016 06:42:31 PM,03/15/2016 06:53:24 PM,03/15/2016 07:03:43 PM,03/15/2016 07:35:54 PM,Code 2 Transport,03/15/2016 08:20:14 PM,0 Block of SANTOS ST,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121040537994, -122.41847388242)",160753212-83 +160810714,AM04,16032084,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:21:54 AM,03/21/2016 08:21:54 AM,03/21/2016 08:21:54 AM,03/21/2016 08:21:54 AM,03/21/2016 08:21:54 AM,03/21/2016 08:28:18 AM,03/21/2016 08:43:17 AM,Code 2 Transport,03/21/2016 09:26:17 AM,17TH ST/VALENCIA ST,San Francisco,94110,B99,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7632997692, -122.421731523653)",160810714-AM04 +122540290,AM18,12084059,Medical Incident,09/10/2012,09/10/2012,09/10/2012 07:12:37 PM,09/10/2012 07:13:23 PM,09/10/2012 07:13:43 PM,04/25/2016 01:56:50 PM,09/10/2012 07:31:48 PM,09/10/2012 07:38:06 PM,09/10/2012 07:48:59 PM,Code 2 Transport,09/10/2012 08:12:58 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",122540290-AM18 +130940318,93,13031572,Medical Incident,04/04/2013,04/04/2013,04/04/2013 07:16:50 PM,04/04/2013 07:17:49 PM,04/04/2013 07:18:24 PM,04/04/2013 07:18:42 PM,04/25/2016 01:53:29 PM,04/04/2013 07:32:19 PM,04/04/2013 07:40:34 PM,Code 2 Transport,04/04/2013 08:15:43 PM,100 Block of MAXWELL CT,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7669025720969, -122.423141850936)",130940318-93 +133610259,81,13122742,Medical Incident,12/27/2013,12/27/2013,12/27/2013 05:52:22 PM,12/27/2013 05:54:47 PM,12/27/2013 05:57:29 PM,12/27/2013 05:57:49 PM,12/27/2013 06:06:33 PM,12/27/2013 06:30:29 PM,12/27/2013 06:37:26 PM,Code 2 Transport,12/27/2013 07:14:58 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",133610259-81 +113120139,E39,11103609,Structure Fire,11/08/2011,11/08/2011,11/08/2011 10:42:15 AM,11/08/2011 10:42:40 AM,11/08/2011 10:43:02 AM,11/08/2011 10:43:55 AM,11/08/2011 10:45:56 AM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,Other,11/08/2011 11:19:36 AM,200 Block of JUANITA WAY,SF,94127,B09,39,8672,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7395764944697, -122.457869006822)",113120139-E39 +160920642,KM13,16036351,Medical Incident,04/01/2016,03/31/2016,04/01/2016 07:34:46 AM,04/01/2016 07:39:07 AM,04/01/2016 07:39:26 AM,04/01/2016 07:43:07 AM,04/01/2016 07:43:07 AM,04/01/2016 08:02:08 AM,04/01/2016 08:19:07 AM,Code 2 Transport,04/01/2016 08:51:24 AM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",160920642-KM13 +160130506,65,16005067,Medical Incident,01/13/2016,01/12/2016,01/13/2016 06:40:40 AM,01/13/2016 06:40:40 AM,01/13/2016 06:40:46 AM,01/13/2016 06:42:22 AM,01/13/2016 06:49:10 AM,01/13/2016 07:13:18 AM,01/13/2016 07:23:03 AM,Code 2 Transport,01/13/2016 07:51:43 AM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160130506-65 +112930318,96,11097316,Medical Incident,10/20/2011,10/20/2011,10/20/2011 07:29:18 PM,10/20/2011 07:30:46 PM,10/20/2011 07:31:29 PM,10/20/2011 07:31:44 PM,10/20/2011 07:34:48 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 07:35:39 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,1,1,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",112930318-96 +160832826,67,16033045,Medical Incident,03/23/2016,03/23/2016,03/23/2016 04:37:39 PM,03/23/2016 04:39:44 PM,03/23/2016 04:40:49 PM,03/23/2016 04:41:11 PM,03/23/2016 04:50:41 PM,03/23/2016 05:08:22 PM,03/23/2016 05:45:52 PM,Code 2 Transport,03/23/2016 06:35:31 PM,800 Block of 44TH AV,San Francisco,94121,B07,34,7271,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7725696176919, -122.504681383702)",160832826-67 +112350214,RS2,11077571,Medical Incident,08/23/2011,08/23/2011,08/23/2011 01:31:22 PM,08/23/2011 01:33:33 PM,08/23/2011 01:33:47 PM,08/23/2011 01:35:17 PM,08/23/2011 01:38:02 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 01:39:41 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,,1,RESCUE SQUAD,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",112350214-RS2 +160031658,74,16001195,Medical Incident,01/03/2016,01/03/2016,01/03/2016 01:53:28 PM,01/03/2016 01:54:00 PM,01/03/2016 01:54:17 PM,01/03/2016 01:54:26 PM,01/03/2016 01:58:06 PM,01/03/2016 02:15:12 PM,01/03/2016 02:46:08 PM,Code 2 Transport,01/03/2016 03:19:32 PM,300 Block of CHESTNUT ST,San Francisco,94133,B01,28,1336,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8042597516357, -122.409641027466)",160031658-74 +131920303,67,13065442,Medical Incident,07/11/2013,07/11/2013,07/11/2013 07:05:07 PM,07/11/2013 07:07:03 PM,07/11/2013 07:07:14 PM,07/11/2013 07:10:02 PM,07/11/2013 07:14:45 PM,07/11/2013 07:41:27 PM,07/11/2013 07:56:03 PM,Code 2 Transport,07/11/2013 08:25:56 PM,700 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",131920303-67 +130160161,77,13005428,Medical Incident,01/16/2013,01/16/2013,01/16/2013 01:03:02 PM,01/16/2013 01:04:26 PM,01/16/2013 01:05:44 PM,01/16/2013 01:06:46 PM,01/16/2013 01:19:32 PM,01/16/2013 01:29:09 PM,01/16/2013 01:56:01 PM,Code 2 Transport,01/16/2013 02:35:12 PM,100 Block of CAMBRIDGE ST,SF,94134,B09,42,635,3,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Excelsior,"(37.7297394945048, -122.419529070231)",130160161-77 +121600182,78,12052928,Medical Incident,06/08/2012,06/08/2012,06/08/2012 12:51:48 PM,06/08/2012 12:53:33 PM,06/08/2012 12:53:53 PM,06/08/2012 12:54:05 PM,06/08/2012 01:16:43 PM,06/08/2012 01:37:27 PM,06/08/2012 01:58:31 PM,Code 2 Transport,06/08/2012 02:44:08 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",121600182-78 +120170200,57,12005718,Medical Incident,01/17/2012,01/17/2012,01/17/2012 02:19:08 PM,01/17/2012 02:22:05 PM,01/17/2012 02:22:17 PM,01/17/2012 02:22:25 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,04/25/2016 02:00:35 PM,900 Block of COLUMBUS AVE,SF,94133,B01,28,1435,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",120170200-57 +121130248,E44,12037575,Medical Incident,04/22/2012,04/22/2012,04/22/2012 05:42:50 PM,04/22/2012 05:43:31 PM,04/22/2012 05:43:58 PM,04/22/2012 05:45:42 PM,04/22/2012 05:48:34 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 06:01:44 PM,0 Block of RECYCLE RD,SF,94134,B10,44,6271,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7084481302271, -122.400887358723)",121130248-E44 +140200167,KM10,14006845,Medical Incident,01/20/2014,01/20/2014,01/20/2014 12:38:09 PM,01/20/2014 12:40:05 PM,01/20/2014 12:40:31 PM,01/20/2014 12:43:47 PM,01/20/2014 12:44:06 PM,01/20/2014 12:51:56 PM,01/20/2014 01:01:10 PM,Code 2 Transport,01/20/2014 01:34:59 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",140200167-KM10 +123550270,E20,12118878,Medical Incident,12/20/2012,12/20/2012,12/20/2012 06:03:15 PM,12/20/2012 06:03:58 PM,12/20/2012 06:04:45 PM,12/20/2012 06:06:04 PM,12/20/2012 06:07:35 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 06:20:21 PM,300 Block of LAGUNA HONDA BLVD,SF,94116,B08,20,8641,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",123550270-E20 +132200194,KM01,13074319,Structure Fire,08/08/2013,08/08/2013,08/08/2013 02:03:50 PM,08/08/2013 02:09:07 PM,08/08/2013 02:09:49 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 02:12:59 PM,900 Block of KIRKHAM ST,SF,94122,B08,22,7365,3,3,3,false,Alarm,1,PRIVATE,9,8,7,Inner Sunset,"(37.760044724144, -122.470867724082)",132200194-KM01 +160891491,83,16035310,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:30:31 AM,03/29/2016 11:31:05 AM,03/29/2016 11:31:16 AM,03/29/2016 11:31:29 AM,03/29/2016 11:34:52 AM,03/29/2016 11:45:54 AM,03/29/2016 11:58:06 AM,Code 2 Transport,03/29/2016 12:42:46 PM,GROVE ST/HYDE ST,San Francisco,94103,B02,36,1552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160891491-83 +131870073,KM12,13063709,Medical Incident,07/06/2013,07/05/2013,07/06/2013 07:51:40 AM,07/06/2013 07:55:55 AM,07/06/2013 07:56:37 AM,07/06/2013 07:57:13 AM,07/06/2013 08:22:09 AM,07/06/2013 08:32:52 AM,07/06/2013 08:40:42 AM,Code 2 Transport,07/06/2013 09:17:06 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131870073-KM12 +112670387,FB1,11088405,Administrative,09/24/2011,09/24/2011,09/24/2011 11:38:50 PM,09/24/2011 11:39:01 PM,09/24/2011 11:39:19 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Fire,09/24/2011 11:39:48 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,false,,1,SUPPORT,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",112670387-FB1 +160273055,71,16010803,Medical Incident,01/27/2016,01/27/2016,01/27/2016 06:09:30 PM,01/27/2016 06:10:13 PM,01/27/2016 06:10:26 PM,01/27/2016 06:10:32 PM,01/27/2016 06:19:10 PM,01/27/2016 06:28:16 PM,01/27/2016 07:10:53 PM,Code 2 Transport,01/27/2016 07:32:11 PM,1400 Block of HALIBUT CT,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8248190426844, -122.375030442219)",160273055-71 +160160470,AM20,16006290,Medical Incident,01/16/2016,01/15/2016,01/16/2016 03:50:23 AM,01/16/2016 03:50:55 AM,01/16/2016 03:51:17 AM,01/16/2016 03:51:53 AM,01/16/2016 03:54:38 AM,01/16/2016 04:12:42 AM,01/16/2016 04:41:00 AM,Code 2 Transport,01/16/2016 05:10:53 AM,HOWARD ST/11TH ST,San Francisco,94103,B02,36,5114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7731005870473, -122.415561389884)",160160470-AM20 +113140025,E32,11104205,Medical Incident,11/10/2011,11/09/2011,11/10/2011 03:19:54 AM,11/10/2011 03:21:07 AM,11/10/2011 03:21:23 AM,11/10/2011 03:23:43 AM,11/10/2011 03:26:10 AM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 03:44:32 AM,100 Block of JUSTIN DR,SF,94112,B06,32,5641,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7334468814341, -122.422321504161)",113140025-E32 +130430201,E38,13014647,Citizen Assist / Service Call,02/12/2013,02/12/2013,02/12/2013 01:59:47 PM,02/12/2013 02:06:08 PM,02/12/2013 02:06:59 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,04/25/2016 01:54:20 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",130430201-E38 +131520277,92,13051582,Medical Incident,06/01/2013,06/01/2013,06/01/2013 06:55:35 PM,06/01/2013 06:55:35 PM,06/01/2013 06:56:23 PM,06/01/2013 06:56:33 PM,06/01/2013 07:09:00 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,No Merit,06/01/2013 07:10:35 PM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7772727011897, -122.404070256526)",131520277-92 +133350266,RS1,13113649,Medical Incident,12/01/2013,12/01/2013,12/01/2013 05:58:10 PM,12/01/2013 05:58:57 PM,12/01/2013 06:02:19 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/01/2013 06:08:01 PM,5TH ST/STEVENSON ST,SF,94103,B03,1,2247,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.783528916199, -122.407482813601)",133350266-RS1 +160550174,72,16021848,Medical Incident,02/24/2016,02/23/2016,02/24/2016 01:41:58 AM,02/24/2016 01:44:08 AM,02/24/2016 01:44:17 AM,02/24/2016 01:44:33 AM,02/24/2016 01:52:25 AM,02/24/2016 02:04:58 AM,02/24/2016 02:20:03 AM,Code 2 Transport,02/24/2016 03:00:14 AM,900 Block of HAIGHT ST,San Francisco,94117,B05,21,4246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7712162010371, -122.437888283036)",160550174-72 +160364307,53,16014487,Medical Incident,02/05/2016,02/05/2016,02/05/2016 11:29:45 PM,02/05/2016 11:30:23 PM,02/05/2016 11:30:38 PM,02/05/2016 11:30:52 PM,02/05/2016 11:35:25 PM,02/06/2016 12:05:19 AM,02/06/2016 12:14:09 AM,Code 2 Transport,02/06/2016 12:44:09 AM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",160364307-53 +133350103,E11,13113509,Medical Incident,12/01/2013,12/01/2013,12/01/2013 09:17:26 AM,12/01/2013 09:17:35 AM,12/01/2013 09:17:54 AM,12/01/2013 09:18:17 AM,12/01/2013 09:21:14 AM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,12/01/2013 09:42:31 AM,OSAGE AL/24TH ST,SF,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7522044420966, -122.419017543719)",133350103-E11 +110560020,E01,11018316,Medical Incident,02/25/2011,02/24/2011,02/25/2011 01:50:56 AM,02/25/2011 01:51:45 AM,02/25/2011 01:52:13 AM,02/25/2011 01:53:51 AM,02/25/2011 02:04:47 AM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 02:06:40 AM,300 Block of TEHAMA ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",110560020-E01 +160420150,75,16016701,Medical Incident,02/11/2016,02/10/2016,02/11/2016 01:25:44 AM,02/11/2016 01:25:44 AM,02/11/2016 01:27:04 AM,02/11/2016 01:27:09 AM,02/11/2016 01:30:09 AM,02/11/2016 01:36:49 AM,02/11/2016 01:58:42 AM,Code 2 Transport,02/11/2016 02:40:41 AM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8851,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160420150-75 +160060603,61,16002291,Medical Incident,01/06/2016,01/05/2016,01/06/2016 07:35:38 AM,01/06/2016 07:40:10 AM,01/06/2016 07:40:34 AM,01/06/2016 07:40:54 AM,01/06/2016 07:51:12 AM,01/06/2016 08:01:12 AM,01/06/2016 08:48:43 AM,Code 2 Transport,01/06/2016 09:20:28 AM,0 Block of LIEBIG ST,San Francisco,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7089054042414, -122.456844244926)",160060603-61 +102620060,89,10082784,Medical Incident,09/19/2010,09/18/2010,09/19/2010 03:26:22 AM,09/19/2010 03:27:34 AM,09/19/2010 03:28:05 AM,09/19/2010 03:28:47 AM,09/19/2010 03:37:27 AM,09/19/2010 03:41:53 AM,09/19/2010 03:43:52 AM,Code 3 Transport,09/19/2010 04:57:22 AM,3000 Block of 24TH ST,SF,94110,B06,7,5527,E,E,3,true,,1,MEDIC,4,6,9,Mission,"(37.7525321494276, -122.412724702186)",102620060-89 +121500284,E36,12049834,Medical Incident,05/29/2012,05/29/2012,05/29/2012 06:56:34 PM,05/29/2012 06:58:10 PM,05/29/2012 06:59:09 PM,05/29/2012 07:00:29 PM,05/29/2012 07:01:50 PM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Unable to Locate,05/29/2012 07:04:06 PM,LAFAYETTE ST/MISSION ST,SF,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7734744200989, -122.418030231851)",121500284-E36 +160530448,KM03,16021076,Medical Incident,02/22/2016,02/21/2016,02/22/2016 06:38:35 AM,02/22/2016 06:39:47 AM,02/22/2016 06:39:59 AM,02/22/2016 06:40:59 AM,02/22/2016 06:51:06 AM,02/22/2016 06:57:41 AM,02/22/2016 07:12:04 AM,Code 2 Transport,02/22/2016 07:23:30 AM,900 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160530448-KM03 +130740168,E02,13024661,Alarms,03/15/2013,03/15/2013,03/15/2013 12:23:43 PM,03/15/2013 12:25:02 PM,03/15/2013 12:25:13 PM,03/15/2013 12:25:30 PM,03/15/2013 12:28:26 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 12:29:49 PM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,2,1,3,North Beach,"(37.798465838236, -122.407430691755)",130740168-E02 +130590317,E03,13019921,Medical Incident,02/28/2013,02/28/2013,02/28/2013 07:29:02 PM,02/28/2013 07:31:08 PM,02/28/2013 07:32:37 PM,02/28/2013 07:33:38 PM,02/28/2013 07:35:33 PM,04/25/2016 01:54:04 PM,04/25/2016 01:54:04 PM,Other,02/28/2013 07:38:05 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",130590317-E03 +121400299,E15,12046603,Medical Incident,05/19/2012,05/19/2012,05/19/2012 07:40:38 PM,05/19/2012 07:42:22 PM,05/19/2012 07:44:45 PM,05/19/2012 07:59:17 PM,05/19/2012 07:59:20 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/19/2012 08:23:03 PM,100 Block of MADRID ST,SF,94112,B09,43,6132,1,1,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7270917743498, -122.428757548678)",121400299-E15 +110370355,E43,11012354,Structure Fire,02/06/2011,02/06/2011,02/06/2011 07:28:39 PM,02/06/2011 07:28:40 PM,02/06/2011 07:28:52 PM,02/06/2011 07:29:44 PM,02/06/2011 07:33:01 PM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/06/2011 07:33:32 PM,500 Block of CAMBRIDGE ST,SF,94134,B09,43,6151,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7246014563756, -122.417723435873)",110370355-E43 +110990168,KM01,11032865,Medical Incident,04/09/2011,04/09/2011,04/09/2011 12:51:58 PM,04/09/2011 12:53:12 PM,04/09/2011 12:53:50 PM,04/09/2011 12:55:07 PM,04/09/2011 01:02:07 PM,04/09/2011 01:21:59 PM,04/09/2011 01:38:44 PM,Code 2 Transport,04/09/2011 02:10:32 PM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,false,,1,PRIVATE,2,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",110990168-KM01 +103120307,E12,10100148,Medical Incident,11/08/2010,11/08/2010,11/08/2010 08:04:54 PM,11/08/2010 08:06:32 PM,11/08/2010 08:07:28 PM,11/08/2010 08:09:17 PM,11/08/2010 08:11:26 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 08:41:35 PM,2500 Block of FULTON ST,SF,94118,B07,31,7111,3,3,3,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.7742921485831, -122.458939567106)",103120307-E12 +131940158,E43,13065931,Medical Incident,07/13/2013,07/13/2013,07/13/2013 12:02:41 PM,07/13/2013 12:03:23 PM,07/13/2013 12:05:06 PM,07/13/2013 12:05:37 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 12:06:09 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,2,2,2,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",131940158-E43 +113560177,RS1,11118188,Medical Incident,12/22/2011,12/22/2011,12/22/2011 12:18:30 PM,12/22/2011 12:21:26 PM,12/22/2011 12:21:44 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,04/25/2016 02:01:01 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,,1,RESCUE SQUAD,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",113560177-RS1 +133270136,RS1,13111027,Other,11/23/2013,11/23/2013,11/23/2013 09:12:08 AM,11/23/2013 09:15:01 AM,11/23/2013 09:18:30 AM,11/23/2013 09:19:03 AM,11/23/2013 09:20:23 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 10:13:53 AM,600 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,false,Alarm,1,RESCUE SQUAD,3,1,6,Tenderloin,"(37.7865705542086, -122.413973061638)",133270136-RS1 +112220343,E16,11073464,Medical Incident,08/10/2011,08/10/2011,08/10/2011 08:46:45 PM,08/10/2011 08:47:31 PM,08/10/2011 08:48:14 PM,08/10/2011 08:49:41 PM,08/10/2011 08:51:45 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 09:03:26 PM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",112220343-E16 +103090207,94,10099051,Medical Incident,11/05/2010,11/05/2010,11/05/2010 02:49:26 PM,11/05/2010 02:50:23 PM,11/05/2010 02:51:12 PM,11/05/2010 02:51:39 PM,11/05/2010 02:53:58 PM,11/05/2010 03:14:37 PM,11/05/2010 03:18:07 PM,Code 3 Transport,11/05/2010 03:56:55 PM,1500 Block of PACIFIC AVE,SF,94109,B04,41,3125,3,3,3,true,,1,MEDIC,1,4,3,Russian Hill,"(37.7950782760706, -122.420748201669)",103090207-94 +101110281,B02,10034304,Alarms,04/21/2010,04/21/2010,04/21/2010 05:57:44 PM,04/21/2010 05:59:04 PM,04/21/2010 06:00:12 PM,04/21/2010 06:01:06 PM,04/21/2010 06:04:57 PM,04/25/2016 03:23:38 PM,04/25/2016 03:23:38 PM,Other,04/21/2010 06:06:27 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,,1,CHIEF,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",101110281-B02 +131230245,E09,13041487,Medical Incident,05/03/2013,05/03/2013,05/03/2013 01:38:09 PM,05/03/2013 01:38:44 PM,05/03/2013 01:40:43 PM,05/03/2013 01:42:58 PM,05/03/2013 01:45:43 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 02:02:37 PM,0 Block of IRONWOOD WAY,SF,94124,B10,25,6556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7365296705973, -122.380044762122)",131230245-E09 +102310222,E36,10072730,Medical Incident,08/19/2010,08/19/2010,08/19/2010 02:40:07 PM,08/19/2010 02:40:17 PM,08/19/2010 02:40:48 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 02:41:51 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",102310222-E36 +160121660,63,16004767,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:36:33 PM,01/12/2016 12:36:33 PM,01/12/2016 12:37:41 PM,01/12/2016 12:37:55 PM,01/12/2016 12:40:05 PM,01/12/2016 01:11:15 PM,01/12/2016 01:21:53 PM,Code 2 Transport,01/12/2016 02:06:31 PM,SILVER AV/CAMBRIDGE ST,San Francisco,94134,B09,42,6144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,9,Excelsior,"(37.729046444895, -122.419486478081)",160121660-63 +160331260,KM08,16012933,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:04:33 AM,02/02/2016 11:04:33 AM,02/02/2016 11:05:14 AM,02/02/2016 11:08:13 AM,02/02/2016 11:09:19 AM,02/02/2016 11:28:52 AM,02/02/2016 11:38:26 AM,Code 2 Transport,02/02/2016 12:13:22 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",160331260-KM08 +102330008,E10,10073194,Medical Incident,08/21/2010,08/20/2010,08/21/2010 12:31:43 AM,08/21/2010 12:34:11 AM,08/21/2010 12:34:23 AM,08/21/2010 12:35:39 AM,08/21/2010 12:37:22 AM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/21/2010 12:39:17 AM,600 Block of EUCLID AVE,SF,94118,B07,10,4451,3,3,3,true,,1,ENGINE,2,7,2,Presidio Heights,"(37.7838990648034, -122.456258324628)",102330008-E10 +140270032,AM22,14009079,Traffic Collision,01/27/2014,01/26/2014,01/27/2014 04:58:57 AM,01/27/2014 04:59:14 AM,01/27/2014 04:59:40 AM,01/27/2014 05:00:20 AM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/27/2014 05:05:50 AM,MORAGA ST/46TH AV,SF,94122,B08,23,7661,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7548311825796, -122.505534443241)",140270032-AM22 +110490091,E15,11016111,Medical Incident,02/18/2011,02/18/2011,02/18/2011 08:25:32 AM,02/18/2011 08:25:35 AM,02/18/2011 08:26:25 AM,02/18/2011 08:27:07 AM,02/18/2011 08:30:13 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/18/2011 08:33:49 AM,700 Block of FOERSTER ST,SF,94127,B09,15,8247,1,2,2,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7350921935101, -122.448959925357)",110490091-E15 +160660032,AM16,16026205,Medical Incident,03/06/2016,03/05/2016,03/06/2016 12:06:16 AM,03/06/2016 12:08:47 AM,03/06/2016 12:09:01 AM,03/06/2016 12:09:31 AM,03/06/2016 12:16:33 AM,03/06/2016 12:27:53 AM,03/06/2016 12:36:41 AM,Code 2 Transport,03/06/2016 01:11:57 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160660032-AM16 +131090418,67,13036847,Medical Incident,04/19/2013,04/19/2013,04/19/2013 11:23:06 PM,04/19/2013 11:23:49 PM,04/19/2013 11:24:01 PM,04/19/2013 11:24:17 PM,04/19/2013 11:25:39 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Against Medical Advice,04/20/2013 12:06:00 AM,1300 Block of EVANS AVE,SF,94124,B10,25,6464,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",131090418-67 +160340164,85,16013218,Medical Incident,02/03/2016,02/02/2016,02/03/2016 01:45:55 AM,02/03/2016 01:47:55 AM,02/03/2016 01:48:03 AM,02/03/2016 01:48:26 AM,02/03/2016 01:57:51 AM,02/03/2016 02:16:19 AM,02/03/2016 02:33:27 AM,Code 2 Transport,02/03/2016 03:23:12 AM,1700 Block of 11TH AVE,San Francisco,94122,B08,22,7343,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.755553264712, -122.467936192928)",160340164-85 +160880148,68,16034788,Medical Incident,03/28/2016,03/27/2016,03/28/2016 01:11:09 AM,03/28/2016 01:12:48 AM,03/28/2016 01:13:10 AM,03/28/2016 01:13:29 AM,03/28/2016 01:16:34 AM,03/28/2016 01:45:25 AM,03/28/2016 01:45:25 AM,Code 2 Transport,03/28/2016 02:30:17 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160880148-68 +122620302,E13,12086625,Structure Fire,09/18/2012,09/18/2012,09/18/2012 07:13:40 PM,09/18/2012 07:13:40 PM,09/18/2012 07:14:21 PM,09/18/2012 07:14:53 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 07:16:32 PM,SANSOME ST/PINE ST,SF,94104,B01,13,1165,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7921084008601, -122.400933083929)",122620302-E13 +120260158,63,12008703,Medical Incident,01/26/2012,01/26/2012,01/26/2012 12:18:20 PM,01/26/2012 12:21:17 PM,01/26/2012 12:24:04 PM,01/26/2012 12:24:13 PM,01/26/2012 12:41:48 PM,01/26/2012 01:02:45 PM,01/26/2012 01:14:04 PM,Code 2 Transport,01/26/2012 01:43:45 PM,100 Block of MASON ST,SF,94102,B03,1,1366,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",120260158-63 +131150281,RC3,13038868,Structure Fire,04/25/2013,04/25/2013,04/25/2013 06:57:20 PM,04/25/2013 06:57:20 PM,04/25/2013 07:01:44 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 07:09:34 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Alarm,1,RESCUE CAPTAIN,4,6,9,Mission,"(37.7490412884368, -122.418135251703)",131150281-RC3 +131230152,E01,13041408,Structure Fire,05/03/2013,05/03/2013,05/03/2013 10:32:54 AM,05/03/2013 10:32:54 AM,05/03/2013 10:33:23 AM,05/03/2013 10:33:33 AM,05/03/2013 10:35:34 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 10:36:08 AM,MONTGOMERY ST/BUSH ST,SF,94104,B01,13,1235,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",131230152-E01 +111830150,KM12,11060403,Medical Incident,07/02/2011,07/02/2011,07/02/2011 12:10:04 PM,07/02/2011 12:11:04 PM,07/02/2011 12:11:30 PM,04/25/2016 02:03:52 PM,07/02/2011 12:15:31 PM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Patient Declined Transport,07/02/2011 12:48:33 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",111830150-KM12 +132280069,AM24,13076859,Medical Incident,08/16/2013,08/15/2013,08/16/2013 07:04:30 AM,08/16/2013 07:06:23 AM,08/16/2013 07:07:10 AM,08/16/2013 07:07:50 AM,08/16/2013 07:13:24 AM,08/16/2013 07:29:20 AM,08/16/2013 07:56:56 AM,Code 2 Transport,08/16/2013 08:23:01 AM,100 Block of SANTOS ST,SF,94134,B09,43,6244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",132280069-AM24 +121170336,KM15,12038911,Medical Incident,04/26/2012,04/26/2012,04/26/2012 09:12:45 PM,04/26/2012 09:14:08 PM,04/26/2012 09:16:04 PM,04/26/2012 09:16:35 PM,04/26/2012 09:25:00 PM,04/26/2012 09:51:05 PM,04/26/2012 09:59:27 PM,Code 2 Transport,04/26/2012 10:25:09 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",121170336-KM15 +140060249,E15,14002174,Medical Incident,01/06/2014,01/06/2014,01/06/2014 02:28:15 PM,01/06/2014 02:28:46 PM,01/06/2014 02:28:55 PM,01/06/2014 02:29:54 PM,01/06/2014 02:31:01 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 02:44:32 PM,100 Block of HOLLOWAY AVE,SF,94112,B09,15,8472,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.721904919521, -122.454617025243)",140060249-E15 +102480177,B04,10078358,Medical Incident,09/05/2010,09/05/2010,09/05/2010 12:44:05 PM,09/05/2010 12:44:19 PM,09/05/2010 12:44:32 PM,09/05/2010 12:45:09 PM,09/05/2010 01:01:14 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 01:02:13 PM,EDDY ST/SCOTT ST,SF,94115,B05,5,4133,E,E,3,false,,1,CHIEF,5,5,5,Western Addition,"(37.7808017697156, -122.437260058038)",102480177-B04 +160433043,AM20,16017427,Medical Incident,02/12/2016,02/12/2016,02/12/2016 06:41:02 PM,02/12/2016 06:42:03 PM,02/12/2016 06:42:36 PM,02/12/2016 06:43:25 PM,02/12/2016 06:50:43 PM,02/12/2016 07:14:42 PM,02/12/2016 07:24:16 PM,Code 2 Transport,02/12/2016 07:59:15 PM,900 Block of FILBERT ST,San Francisco,94133,B01,28,1436,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Russian Hill,"(37.8006671097614, -122.414578355169)",160433043-AM20 +130350309,T06,13012084,Structure Fire,02/04/2013,02/04/2013,02/04/2013 04:21:16 PM,02/04/2013 04:21:16 PM,02/04/2013 04:21:24 PM,02/04/2013 04:21:57 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/04/2013 04:26:41 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",130350309-T06 +111640103,E21,11054071,Medical Incident,06/13/2011,06/13/2011,06/13/2011 09:13:28 AM,06/13/2011 09:14:11 AM,06/13/2011 09:14:52 AM,06/13/2011 09:15:53 AM,06/13/2011 09:24:31 AM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/13/2011 09:24:36 AM,2800 Block of TURK BLVD,SF,94118,B05,21,4565,3,3,3,false,,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7780501202623, -122.451998028803)",111640103-E21 +121380085,E14,12045785,Medical Incident,05/17/2012,05/17/2012,05/17/2012 08:07:23 AM,05/17/2012 08:08:57 AM,05/17/2012 08:09:15 AM,05/17/2012 08:10:21 AM,05/17/2012 08:12:21 AM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/17/2012 09:28:17 AM,30TH AV/GEARY BL,SF,94121,B07,14,722,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7798398321439, -122.490096577723)",121380085-E14 +123190315,79,12106177,Medical Incident,11/14/2012,11/14/2012,11/14/2012 06:50:47 PM,11/14/2012 06:52:30 PM,11/14/2012 06:53:58 PM,11/14/2012 06:54:24 PM,11/14/2012 06:57:39 PM,11/14/2012 07:21:47 PM,11/14/2012 07:39:42 PM,Code 2 Transport,11/14/2012 08:10:24 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123190315-79 +121050143,E33,12034729,Medical Incident,04/14/2012,04/14/2012,04/14/2012 10:48:05 AM,04/14/2012 10:48:26 AM,04/14/2012 10:48:45 AM,04/14/2012 10:49:02 AM,04/14/2012 10:53:10 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 11:09:41 AM,300 Block of ALLISON ST,SF,94112,B09,43,6217,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7105610673233, -122.440929507582)",121050143-E33 +111770437,79,11058586,Traffic Collision,06/26/2011,06/26/2011,06/26/2011 09:37:44 PM,06/26/2011 09:38:45 PM,06/26/2011 09:38:59 PM,06/26/2011 09:41:23 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/26/2011 09:41:39 PM,POTRERO AV/16TH ST,SF,94103,B02,29,2351,3,3,3,true,,1,MEDIC,4,2,10,Mission,"(37.7657832995202, -122.407534230594)",111770437-79 +123510386,E17,12117587,Medical Incident,12/16/2012,12/16/2012,12/16/2012 11:07:08 PM,12/16/2012 11:08:27 PM,12/16/2012 11:16:43 PM,12/16/2012 11:17:56 PM,12/16/2012 11:21:03 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/16/2012 11:40:21 PM,NEWCOMB AV/3RD ST,SF,94124,B10,17,6515,1,1,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",123510386-E17 +112930363,T11,11097355,Medical Incident,10/20/2011,10/20/2011,10/20/2011 09:52:41 PM,10/20/2011 09:54:02 PM,10/20/2011 09:54:18 PM,10/20/2011 09:55:28 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 09:57:27 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,TRUCK,3,6,9,Mission,"(37.7522394549791, -122.418445272851)",112930363-T11 +131040306,T07,13035030,Alarms,04/14/2013,04/14/2013,04/14/2013 06:16:02 PM,04/14/2013 06:20:17 PM,04/14/2013 06:21:15 PM,04/14/2013 06:23:48 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 06:25:27 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,false,Alarm,1,TRUCK,3,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",131040306-T07 +102400003,KM14,10075556,Traffic Collision,08/28/2010,08/27/2010,08/28/2010 12:04:40 AM,08/28/2010 12:04:40 AM,08/28/2010 12:05:23 AM,08/28/2010 12:05:57 AM,08/28/2010 12:10:35 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Against Medical Advice,08/28/2010 12:23:35 AM,BRODERICK ST/JEFFERSON ST,SF,94123,B04,16,4216,3,3,3,false,,1,PRIVATE,1,4,2,Marina,"(37.8044256996865, -122.445459231428)",102400003-KM14 +131050270,T08,13035342,Alarms,04/15/2013,04/15/2013,04/15/2013 03:47:32 PM,04/15/2013 03:48:25 PM,04/15/2013 03:49:48 PM,04/25/2016 01:53:18 PM,04/15/2013 03:53:25 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 03:58:22 PM,400 Block of ILLINOIS ST,SF,94158,B03,8,2374,3,3,3,false,Alarm,1,TRUCK,1,3,6,Mission Bay,"(37.7656728122297, -122.387971482123)",131050270-T08 +120830335,E07,12027691,Structure Fire,03/23/2012,03/23/2012,03/23/2012 08:12:06 PM,03/23/2012 08:12:39 PM,03/23/2012 08:13:00 PM,03/23/2012 08:14:02 PM,03/23/2012 08:16:05 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Other,03/23/2012 08:28:52 PM,3300 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,true,Fire,1,ENGINE,2,6,8,Mission,"(37.7552738020119, -122.422313025926)",120830335-E07 +133090280,85,13105136,Medical Incident,11/05/2013,11/05/2013,11/05/2013 04:14:13 PM,11/05/2013 04:14:55 PM,11/05/2013 04:16:30 PM,11/05/2013 04:17:02 PM,11/05/2013 04:30:17 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 04:32:19 PM,1200 Block of MASONIC AVE,SF,94117,B05,21,4466,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769728147466, -122.44532047465)",133090280-85 +120560280,96,12018579,Traffic Collision,02/25/2012,02/25/2012,02/25/2012 07:32:47 PM,02/25/2012 07:34:17 PM,02/25/2012 07:35:56 PM,02/25/2012 07:36:03 PM,02/25/2012 07:39:55 PM,02/25/2012 07:46:24 PM,02/25/2012 08:01:55 PM,Code 2 Transport,02/25/2012 08:13:47 PM,3000 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.723359097822, -122.401902489608)",120560280-96 +113120336,84,11103776,Medical Incident,11/08/2011,11/08/2011,11/08/2011 07:19:54 PM,11/08/2011 07:21:51 PM,11/08/2011 07:22:18 PM,11/08/2011 07:24:49 PM,11/08/2011 07:27:11 PM,11/08/2011 07:37:18 PM,11/08/2011 07:49:42 PM,Code 2 Transport,11/08/2011 08:05:40 PM,1100 Block of PALOU AVE,SF,94124,B10,17,6647,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",113120336-84 +133630017,KM07,13123167,Medical Incident,12/29/2013,12/28/2013,12/29/2013 01:20:45 AM,12/29/2013 01:22:44 AM,12/29/2013 01:23:13 AM,12/29/2013 01:24:05 AM,12/29/2013 01:30:48 AM,12/29/2013 02:01:52 AM,12/29/2013 02:09:45 AM,Code 2 Transport,12/29/2013 02:41:28 AM,1300 Block of VAN NESS AVE,SF,94109,B04,3,3156,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7877876566277, -122.421631319974)",133630017-KM07 +132050151,B02,13069393,Medical Incident,07/24/2013,07/24/2013,07/24/2013 11:57:59 AM,07/24/2013 11:58:23 AM,07/24/2013 12:06:57 PM,07/24/2013 12:07:37 PM,07/24/2013 12:09:19 PM,04/25/2016 01:51:39 PM,04/25/2016 01:51:39 PM,Other,07/24/2013 12:16:04 PM,400 Block of GROVE ST,SF,94102,B02,36,3315,3,2,2,false,Non Life-threatening,1,CHIEF,3,2,5,Hayes Valley,"(37.7776543498914, -122.423976044858)",132050151-B02 +103550315,E13,10114069,Alarms,12/21/2010,12/21/2010,12/21/2010 08:06:56 PM,12/21/2010 08:08:03 PM,12/21/2010 08:08:08 PM,12/21/2010 08:08:52 PM,12/21/2010 08:10:48 PM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,Other,12/21/2010 08:17:30 PM,500 Block of PACIFIC AVE,SF,94133,B01,13,1246,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7971157930221, -122.404677401547)",103550315-E13 +160851262,84,16033716,Traffic Collision,03/25/2016,03/25/2016,03/25/2016 10:24:39 AM,03/25/2016 10:24:39 AM,03/25/2016 10:24:55 AM,03/25/2016 10:25:26 AM,03/25/2016 10:42:04 AM,03/25/2016 10:43:09 AM,03/25/2016 11:09:03 AM,Code 2 Transport,03/25/2016 12:02:08 PM,VALLEJO ST/FILLMORE ST,San Francisco,94123,B04,16,3551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7952258324577, -122.435113289743)",160851262-84 +102340184,E15,10073628,Medical Incident,08/22/2010,08/22/2010,08/22/2010 01:31:32 PM,08/22/2010 01:33:03 PM,08/22/2010 01:33:36 PM,08/22/2010 01:34:18 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 01:41:00 PM,4800 Block of MISSION ST,SF,94112,B09,43,6123,3,3,3,true,,1,ENGINE,3,9,11,Outer Mission,"(37.7206322139604, -122.437984003995)",102340184-E15 +111020095,E14,11033757,Medical Incident,04/12/2011,04/12/2011,04/12/2011 08:57:25 AM,04/12/2011 08:58:54 AM,04/12/2011 08:59:24 AM,04/12/2011 09:01:54 AM,04/12/2011 09:04:46 AM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/12/2011 09:07:55 AM,600 Block of 34TH AVE,SF,94121,B07,34,7251,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7767969175813, -122.494102661436)",111020095-E14 +110510131,E43,11016844,Medical Incident,02/20/2011,02/20/2011,02/20/2011 09:29:45 AM,02/20/2011 09:29:48 AM,02/20/2011 09:30:05 AM,02/20/2011 09:31:11 AM,02/20/2011 09:34:19 AM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 09:49:31 AM,0 Block of FARRAGUT AVE,SF,94112,B09,33,6212,3,3,3,false,,1,ENGINE,1,9,11,Outer Mission,"(37.710378052108, -122.449751419152)",110510131-E43 +113610295,T11,11120052,Structure Fire,12/27/2011,12/27/2011,12/27/2011 08:56:35 PM,12/27/2011 08:56:35 PM,12/27/2011 08:56:44 PM,12/27/2011 08:59:10 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 09:00:12 PM,3200 Block of FOLSOM ST,SF,94110,B06,11,5664,3,3,3,false,,1,TRUCK,2,6,9,Bernal Heights,"(37.7469641460451, -122.413620574987)",113610295-T11 +130220027,T06,13007460,Structure Fire,01/22/2013,01/21/2013,01/22/2013 02:40:55 AM,01/22/2013 02:40:55 AM,01/22/2013 02:40:59 AM,01/22/2013 02:43:05 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 02:45:23 AM,0 Block of DUBOCE AVE,SF,94103,B02,36,5124,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7698769653623, -122.420425746328)",130220027-T06 +132920127,E34,13099326,Medical Incident,10/19/2013,10/19/2013,10/19/2013 10:53:42 AM,10/19/2013 10:54:10 AM,10/19/2013 10:54:37 AM,10/19/2013 10:56:17 AM,10/19/2013 10:59:27 AM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 11:07:53 AM,800 Block of 47TH AVE,SF,94121,B07,34,7277,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7724297631777, -122.507750347312)",132920127-E34 +160582775,KM09,16023222,Medical Incident,02/27/2016,02/27/2016,02/27/2016 05:44:11 PM,02/27/2016 05:44:49 PM,02/27/2016 05:44:59 PM,02/27/2016 05:45:25 PM,02/27/2016 05:52:36 PM,02/27/2016 06:14:13 PM,02/27/2016 06:20:23 PM,Code 2 Transport,02/27/2016 06:54:44 PM,900 Block of COLE ST,San Francisco,94117,B05,12,5144,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7653245528088, -122.449932240368)",160582775-KM09 +131600261,72,13054425,Medical Incident,06/09/2013,06/09/2013,06/09/2013 05:34:21 PM,06/09/2013 05:35:03 PM,06/09/2013 05:35:14 PM,06/09/2013 05:35:45 PM,06/09/2013 05:38:34 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Patient Declined Transport,06/09/2013 06:16:09 PM,VAN NESS AV/CLAY ST,SF,94109,B04,41,3154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7921746447197, -122.4226941645)",131600261-72 +110930168,94,11030858,Medical Incident,04/03/2011,04/03/2011,04/03/2011 11:59:38 AM,04/03/2011 12:00:34 PM,04/03/2011 12:01:10 PM,04/03/2011 12:02:18 PM,04/03/2011 12:05:57 PM,04/03/2011 12:18:46 PM,04/03/2011 12:33:11 PM,Code 2 Transport,04/03/2011 01:07:48 PM,CALL BOX: PALACE OF LEGION OF HONOR,SF,94121,B07,34,7235,3,3,3,true,,1,MEDIC,2,7,1,Lincoln Park,"(37.7849108847772, -122.499514565485)",110930168-94 +160881407,AM10,16034914,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:11:42 AM,03/28/2016 11:13:57 AM,03/28/2016 11:17:34 AM,03/28/2016 11:18:13 AM,03/28/2016 11:26:57 AM,03/28/2016 11:46:00 AM,03/28/2016 12:01:07 PM,Code 2 Transport,03/28/2016 12:36:52 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160881407-AM10 +160042237,55,16001648,Medical Incident,01/04/2016,01/04/2016,01/04/2016 03:09:19 PM,01/04/2016 03:09:51 PM,01/04/2016 03:10:07 PM,01/04/2016 03:10:32 PM,01/04/2016 03:13:02 PM,01/04/2016 03:40:31 PM,01/04/2016 04:00:29 PM,Code 2 Transport,01/04/2016 05:30:22 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160042237-55 +160660675,89,16026300,Medical Incident,03/06/2016,03/05/2016,03/06/2016 07:34:56 AM,03/06/2016 07:36:28 AM,03/06/2016 07:36:49 AM,03/06/2016 07:37:06 AM,03/06/2016 07:44:27 AM,03/06/2016 08:00:05 AM,03/06/2016 08:12:53 AM,Code 2 Transport,03/06/2016 09:04:58 AM,200 Block of LIBERTY ST,San Francisco,94114,B06,11,5457,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7574157301461, -122.426834770854)",160660675-89 +160284089,AM24,16011270,Medical Incident,01/28/2016,01/28/2016,01/28/2016 11:12:15 PM,01/28/2016 11:12:57 PM,01/28/2016 11:13:25 PM,01/28/2016 11:15:05 PM,01/28/2016 11:29:05 PM,01/28/2016 11:53:10 PM,01/29/2016 12:19:11 AM,Code 2 Transport,01/29/2016 12:51:19 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160284089-AM24 +131150339,E28,13038925,Water Rescue,04/25/2013,04/25/2013,04/25/2013 11:26:52 PM,04/25/2013 11:29:24 PM,04/25/2013 11:29:42 PM,04/25/2013 11:30:55 PM,04/25/2013 11:33:30 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 11:45:37 PM,2800 Block of HYDE ST,SF,94109,B03,28,1616,E,E,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8071154533997, -122.420720018434)",131150339-E28 +160742831,53,16029417,Medical Incident,03/14/2016,03/14/2016,03/14/2016 05:05:10 PM,03/14/2016 05:06:04 PM,03/14/2016 05:06:21 PM,03/14/2016 05:06:39 PM,03/14/2016 05:17:38 PM,03/14/2016 05:17:41 PM,03/14/2016 05:35:50 PM,Code 2 Transport,03/14/2016 06:09:34 PM,21ST ST/SHOTWELL ST,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7572324112144, -122.415626198524)",160742831-53 +111170227,E03,11038654,Medical Incident,04/27/2011,04/27/2011,04/27/2011 03:26:46 PM,04/27/2011 03:27:40 PM,04/27/2011 03:30:46 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 03:31:31 PM,STEVENSON ST/5TH ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,3,3,6,South of Market,"(37.783528916199, -122.407482813601)",111170227-E03 +140720233,D3,14024353,Structure Fire,03/13/2014,03/13/2014,03/13/2014 02:28:23 PM,03/13/2014 02:28:52 PM,03/13/2014 02:29:27 PM,03/13/2014 02:30:25 PM,03/13/2014 02:34:47 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Fire,03/13/2014 02:39:30 PM,17TH ST/CASTRO ST,SAN FRANCISCO,94114,B05,6,5417,3,3,3,false,Alarm,1,CHIEF,8,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",140720233-D3 +160730194,75,16028853,Medical Incident,03/13/2016,03/12/2016,03/13/2016 01:31:48 AM,03/13/2016 01:33:01 AM,03/13/2016 01:34:54 AM,03/13/2016 01:35:10 AM,03/13/2016 01:44:46 AM,03/13/2016 03:05:50 AM,03/13/2016 03:13:33 AM,Code 2 Transport,03/13/2016 04:18:45 AM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7584203036531, -122.418963082325)",160730194-75 +122990218,77,12099129,Medical Incident,10/25/2012,10/25/2012,10/25/2012 03:05:11 PM,10/25/2012 03:09:56 PM,10/25/2012 03:13:00 PM,10/25/2012 03:16:12 PM,10/25/2012 03:30:52 PM,10/25/2012 03:44:14 PM,10/25/2012 04:07:10 PM,Code 2 Transport,10/25/2012 04:29:01 PM,0 Block of TAPIA DR,SF,94132,B08,19,868,1,1,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7219462985802, -122.48090573832)",122990218-77 +110620298,E38,11020466,Medical Incident,03/03/2011,03/03/2011,03/03/2011 06:32:44 PM,03/03/2011 06:33:25 PM,03/03/2011 06:33:50 PM,03/03/2011 06:34:44 PM,03/03/2011 06:36:39 PM,04/25/2016 02:05:48 PM,04/25/2016 02:05:48 PM,Other,03/03/2011 06:56:05 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,2,2,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",110620298-E38 +112210041,E43,11072888,Medical Incident,08/09/2011,08/08/2011,08/09/2011 04:52:01 AM,08/09/2011 04:53:51 AM,08/09/2011 04:54:07 AM,08/09/2011 04:55:49 AM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 05:05:36 AM,800 Block of GENEVA AVE,SF,94112,B09,43,6175,A,A,2,false,,1,ENGINE,4,9,11,Outer Mission,"(37.7168169212828, -122.441408157149)",112210041-E43 +102400186,92,10075703,Medical Incident,08/28/2010,08/28/2010,08/28/2010 01:54:44 PM,08/28/2010 01:55:41 PM,08/28/2010 02:00:43 PM,08/28/2010 02:00:53 PM,08/28/2010 02:16:39 PM,08/28/2010 02:35:01 PM,08/28/2010 02:54:30 PM,Code 2 Transport,08/28/2010 03:30:39 PM,0 Block of OLIVER ST,SF,94112,B09,33,6212,2,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7089141999968, -122.450236359264)",102400186-92 +133500353,E35,13118957,Alarms,12/16/2013,12/16/2013,12/16/2013 06:55:28 PM,12/16/2013 06:55:39 PM,12/16/2013 06:55:46 PM,12/16/2013 06:56:05 PM,12/16/2013 06:58:56 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,12/16/2013 07:05:53 PM,100 Block of STEUART ST,SF,94105,B03,35,2111,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7926568376756, -122.39236449327)",133500353-E35 +160611140,58,16024260,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:46:29 AM,03/01/2016 10:47:43 AM,03/01/2016 10:48:19 AM,03/01/2016 10:48:43 AM,03/01/2016 10:53:36 AM,03/01/2016 11:11:00 AM,03/01/2016 11:19:08 AM,Code 2 Transport,03/01/2016 12:14:37 PM,400 Block of BALBOA ST,San Francisco,94118,B07,31,7123,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7773135972539, -122.463479596584)",160611140-58 +160670153,52,16026569,Medical Incident,03/07/2016,03/06/2016,03/07/2016 02:03:11 AM,03/07/2016 02:05:32 AM,03/07/2016 02:05:54 AM,03/07/2016 02:06:00 AM,03/07/2016 02:11:30 AM,03/07/2016 02:35:22 AM,03/07/2016 02:49:32 AM,Code 2 Transport,03/07/2016 03:06:57 AM,4000 Block of NORIEGA ST,San Francisco,94122,B08,23,7725,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7528382693813, -122.50700721306)",160670153-52 +160182953,64,16007364,Medical Incident,01/18/2016,01/18/2016,01/18/2016 07:50:18 PM,01/18/2016 07:51:22 PM,01/18/2016 07:51:32 PM,01/18/2016 07:51:44 PM,01/18/2016 07:53:19 PM,01/18/2016 08:08:32 PM,01/18/2016 08:37:28 PM,Code 2 Transport,01/18/2016 09:35:40 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7205476379806, -122.437805967469)",160182953-64 +140950286,E33,14032033,Medical Incident,04/05/2014,04/05/2014,04/05/2014 05:20:00 PM,04/05/2014 05:22:14 PM,04/05/2014 05:22:29 PM,04/05/2014 05:23:26 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Code 3 Transport,04/05/2014 05:24:20 PM,800 Block of OCEAN AVE,SAN FRANCISCO,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,7,Oceanview/Merced/Ingleside,"(37.7228437407708, -122.450588711327)",140950286-E33 +111400299,AM10,11046641,Medical Incident,05/20/2011,05/20/2011,05/20/2011 07:51:18 PM,05/20/2011 07:52:03 PM,05/20/2011 07:53:06 PM,05/20/2011 07:53:46 PM,05/20/2011 07:57:21 PM,05/20/2011 08:08:21 PM,05/20/2011 08:14:23 PM,Code 2 Transport,05/20/2011 08:40:38 PM,300 Block of PINE ST,SF,94104,B01,13,1165,3,3,3,false,,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7919141534886, -122.402017229103)",111400299-AM10 +160690822,72,16027379,Medical Incident,03/09/2016,03/09/2016,03/09/2016 08:50:51 AM,03/09/2016 08:51:17 AM,03/09/2016 08:53:21 AM,03/09/2016 08:53:46 AM,03/09/2016 09:14:33 AM,03/09/2016 09:16:36 AM,03/09/2016 09:31:58 AM,Code 2 Transport,03/09/2016 10:12:27 AM,2000 Block of GREENWICH ST,San Francisco,94123,B04,16,3444,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7992109753413, -122.4333916159)",160690822-72 +122310373,77,12076777,Medical Incident,08/18/2012,08/18/2012,08/18/2012 11:26:14 PM,08/18/2012 11:27:02 PM,08/18/2012 11:27:13 PM,08/18/2012 11:27:40 PM,08/18/2012 11:41:22 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Patient Declined Transport,08/19/2012 12:13:22 AM,1600 Block of STOCKTON ST,SF,94133,B01,28,1335,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8009162018101, -122.409211049005)",122310373-77 +122490030,E41,12082228,Medical Incident,09/05/2012,09/04/2012,09/05/2012 02:39:23 AM,09/05/2012 02:40:37 AM,09/05/2012 02:41:20 AM,09/05/2012 02:41:35 AM,09/05/2012 02:49:34 AM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/05/2012 03:10:57 AM,1500 Block of LEAVENWORTH ST,SF,94109,B01,41,1535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7952323460567, -122.416494402639)",122490030-E41 +160563974,AM20,16022557,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:27:53 PM,02/25/2016 10:29:04 PM,02/25/2016 10:29:41 PM,02/25/2016 10:30:16 PM,02/25/2016 10:36:51 PM,02/25/2016 10:56:16 PM,02/25/2016 11:10:54 PM,Code 2 Transport,02/26/2016 12:05:24 AM,1900 Block of OCEAN AVE,San Francisco,94127,B09,15,8456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7257598547537, -122.463278950857)",160563974-AM20 +111160177,E07,11038274,Medical Incident,04/26/2011,04/26/2011,04/26/2011 12:39:11 PM,04/26/2011 12:41:01 PM,04/26/2011 12:41:19 PM,04/26/2011 12:42:18 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 12:49:09 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",111160177-E07 +131890028,67,13064298,Medical Incident,07/08/2013,07/07/2013,07/08/2013 04:44:51 AM,07/08/2013 04:48:09 AM,07/08/2013 04:49:07 AM,07/08/2013 04:49:36 AM,07/08/2013 04:52:01 AM,07/08/2013 05:02:52 AM,07/08/2013 05:08:48 AM,Code 2 Transport,07/08/2013 05:30:36 AM,3RD ST/KIRKWOOD AV,SF,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7379553967402, -122.389587380179)",131890028-67 +110800072,E28,11026294,Medical Incident,03/21/2011,03/20/2011,03/21/2011 07:03:14 AM,03/21/2011 07:04:21 AM,03/21/2011 07:04:38 AM,03/21/2011 07:05:43 AM,03/21/2011 07:07:20 AM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 07:20:48 AM,1500 Block of STOCKTON ST,SF,94133,B01,28,1334,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.7999595181379, -122.409170597925)",110800072-E28 +102650013,77,10083739,Medical Incident,09/22/2010,09/21/2010,09/22/2010 12:39:57 AM,09/22/2010 12:40:19 AM,09/22/2010 12:40:56 AM,09/22/2010 12:41:21 AM,09/22/2010 12:50:43 AM,09/22/2010 01:03:25 AM,09/22/2010 01:16:12 AM,Code 2 Transport,09/22/2010 01:34:45 AM,200 Block of GEARY ST,SF,94108,B01,1,1323,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",102650013-77 +113590286,79,11119465,Medical Incident,12/25/2011,12/25/2011,12/25/2011 09:38:47 PM,12/25/2011 09:39:03 PM,12/25/2011 09:39:25 PM,12/25/2011 09:39:39 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,Other,12/25/2011 09:42:44 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,2,2,true,,1,MEDIC,4,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",113590286-79 +111920346,62,11063513,Medical Incident,07/11/2011,07/11/2011,07/11/2011 07:38:11 PM,07/11/2011 07:38:38 PM,07/11/2011 07:38:59 PM,07/11/2011 07:40:40 PM,07/11/2011 07:41:50 PM,07/11/2011 08:12:07 PM,07/11/2011 08:25:21 PM,Code 2 Transport,07/11/2011 08:40:47 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,MEDIC,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",111920346-62 +130800186,T03,13026746,Other,03/21/2013,03/21/2013,03/21/2013 12:30:22 PM,03/21/2013 12:30:23 PM,03/21/2013 12:30:23 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 12:31:47 PM,1100 Block of POST ST,SF,94109,B04,3,3161,3,3,3,false,Alarm,1,TRUCK,1,4,3,Nob Hill,"(37.786777482512, -122.420759970574)",130800186-T03 +131450317,E07,13049323,Medical Incident,05/25/2013,05/25/2013,05/25/2013 10:04:10 PM,05/25/2013 10:04:18 PM,05/25/2013 10:05:22 PM,05/25/2013 10:06:07 PM,05/25/2013 10:08:25 PM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,Other,05/25/2013 10:15:17 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",131450317-E07 +131140192,T15,13038445,Medical Incident,04/24/2013,04/24/2013,04/24/2013 01:10:25 PM,04/24/2013 01:10:50 PM,04/24/2013 01:11:09 PM,04/24/2013 01:12:12 PM,04/24/2013 01:15:18 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 01:16:10 PM,400 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,3,2,2,false,Potentially Life-Threatening,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7144912745705, -122.455997573047)",131140192-T15 +121240403,T07,12041352,Structure Fire,05/03/2012,05/03/2012,05/03/2012 11:54:56 PM,05/03/2012 11:54:56 PM,05/03/2012 11:55:03 PM,05/03/2012 11:56:43 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 11:58:47 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,false,Alarm,1,TRUCK,3,6,9,Mission,"(37.7571666434801, -122.416719595074)",121240403-T07 +120490316,T05,12016336,Structure Fire,02/18/2012,02/18/2012,02/18/2012 08:59:03 PM,02/18/2012 08:59:04 PM,02/18/2012 08:59:11 PM,02/18/2012 09:00:07 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Other,02/18/2012 09:00:56 PM,FRANKLIN ST/FELL ST,SF,94102,B02,36,3213,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7761587640112, -122.421148424067)",120490316-T05 +133390344,E01,13115017,Medical Incident,12/05/2013,12/05/2013,12/05/2013 08:23:43 PM,12/05/2013 08:24:14 PM,12/05/2013 08:24:39 PM,12/05/2013 08:26:08 PM,12/05/2013 08:27:55 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 08:43:45 PM,300 Block of TEHAMA ST,SF,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7821103331421, -122.403196436662)",133390344-E01 +160520657,84,16020709,Medical Incident,02/21/2016,02/20/2016,02/21/2016 05:37:52 AM,02/21/2016 05:40:14 AM,02/21/2016 05:41:05 AM,02/21/2016 05:41:21 AM,02/21/2016 05:49:15 AM,02/21/2016 06:00:07 AM,02/21/2016 06:11:53 AM,Code 2 Transport,02/21/2016 06:47:26 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160520657-84 +113320354,T03,11110125,Structure Fire,11/28/2011,11/28/2011,11/28/2011 07:40:17 PM,11/28/2011 07:41:11 PM,11/28/2011 07:41:42 PM,11/28/2011 07:58:29 PM,11/28/2011 08:01:15 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/28/2011 08:25:36 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,TRUCK,8,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",113320354-T03 +112210376,RC3,11073176,Medical Incident,08/09/2011,08/09/2011,08/09/2011 11:11:31 PM,08/09/2011 11:12:23 PM,08/09/2011 11:12:33 PM,08/09/2011 11:14:56 PM,08/09/2011 11:18:37 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 11:30:49 PM,0 Block of HOFFMAN AVE,SF,94114,B06,24,5373,3,3,3,true,,1,RESCUE CAPTAIN,2,6,8,Noe Valley,"(37.7536986542799, -122.440960677385)",112210376-RC3 +131130190,E42,13038101,Medical Incident,04/23/2013,04/23/2013,04/23/2013 01:14:55 PM,04/23/2013 01:17:20 PM,04/23/2013 01:17:32 PM,04/23/2013 01:18:30 PM,04/23/2013 01:20:27 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 01:37:59 PM,500 Block of GOETTINGEN ST,SF,94134,B10,42,6332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.725041918425, -122.405887060725)",131130190-E42 +130730093,KM12,13024281,Medical Incident,03/14/2013,03/14/2013,03/14/2013 09:02:13 AM,03/14/2013 09:02:31 AM,03/14/2013 09:03:23 AM,03/14/2013 09:04:06 AM,03/14/2013 09:12:56 AM,03/14/2013 09:21:58 AM,03/14/2013 09:39:58 AM,Code 2 Transport,03/14/2013 10:07:09 AM,2100 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8044382972452, -122.411605476142)",130730093-KM12 +160112835,KM09,16004513,Medical Incident,01/11/2016,01/11/2016,01/11/2016 06:23:26 PM,01/11/2016 06:23:26 PM,01/11/2016 06:23:52 PM,01/11/2016 06:24:18 PM,01/11/2016 06:29:11 PM,01/11/2016 06:34:06 PM,01/11/2016 06:43:11 PM,Code 2 Transport,01/11/2016 06:58:59 PM,SCOTT ST/CHESTNUT ST,San Francisco,94123,B04,16,4115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.8001901863715, -122.441177375002)",160112835-KM09 +120520011,T14,12017031,Gas Leak (Natural and LP Gases),02/21/2012,02/20/2012,02/21/2012 12:56:25 AM,02/21/2012 12:57:41 AM,02/21/2012 12:58:25 AM,02/21/2012 01:00:19 AM,02/21/2012 01:04:17 AM,04/25/2016 02:00:02 PM,04/25/2016 02:00:02 PM,Other,02/21/2012 01:07:58 AM,4400 Block of GEARY BLVD,SF,94118,B07,31,7135,3,3,3,false,Alarm,1,TRUCK,3,7,1,Inner Richmond,"(37.7810280644975, -122.466965657749)",120520011-T14 +160900910,73,16035637,Medical Incident,03/30/2016,03/30/2016,03/30/2016 08:53:15 AM,03/30/2016 08:54:09 AM,03/30/2016 08:54:18 AM,03/30/2016 08:54:32 AM,03/30/2016 09:06:16 AM,03/30/2016 09:25:18 AM,03/30/2016 10:14:01 AM,Code 2 Transport,03/30/2016 11:00:07 AM,POTRERO AV/23RD ST,San Francisco,94110,B10,37,2552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Potrero Hill,"(37.7545642123343, -122.406480459209)",160900910-73 +113140149,E05,11104307,Medical Incident,11/10/2011,11/10/2011,11/10/2011 11:52:49 AM,11/10/2011 11:54:22 AM,11/10/2011 11:55:04 AM,11/10/2011 11:55:25 AM,11/10/2011 11:57:19 AM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 12:01:13 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,E,E,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",113140149-E05 +122690147,T05,12088825,Medical Incident,09/25/2012,09/25/2012,09/25/2012 01:03:59 PM,09/25/2012 01:08:49 PM,09/25/2012 01:09:00 PM,09/25/2012 01:09:48 PM,09/25/2012 01:12:03 PM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,09/25/2012 01:16:13 PM,1800 Block of ELLIS ST,SF,94115,B05,5,3644,3,3,3,false,Non Life-threatening,1,TRUCK,1,5,5,Western Addition,"(37.7818879022854, -122.436641324153)",122690147-T05 +122770252,89,12091571,Medical Incident,10/03/2012,10/03/2012,10/03/2012 01:55:50 PM,10/03/2012 01:58:03 PM,10/03/2012 01:58:30 PM,10/03/2012 01:58:42 PM,10/03/2012 02:07:54 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 02:10:07 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122770252-89 +121280261,E02,12042652,Medical Incident,05/07/2012,05/07/2012,05/07/2012 03:06:36 PM,05/07/2012 03:07:49 PM,05/07/2012 03:08:26 PM,05/07/2012 03:09:28 PM,05/07/2012 03:15:32 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 03:26:08 PM,600 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7871121680272, -122.400833489392)",121280261-E02 +160723117,KM07,16028762,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:34:35 PM,03/12/2016 08:34:51 PM,03/12/2016 08:35:03 PM,03/12/2016 08:36:18 PM,03/12/2016 08:41:15 PM,03/12/2016 09:03:40 PM,03/12/2016 09:18:32 PM,Code 2 Transport,03/12/2016 09:49:08 PM,1500 Block of 30TH AVE,San Francisco,94122,B08,18,7535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7583830897079, -122.488513553465)",160723117-KM07 +160021269,65,16000706,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:31:06 AM,01/02/2016 11:31:20 AM,01/02/2016 11:32:30 AM,01/02/2016 11:32:40 AM,01/02/2016 11:43:09 AM,01/02/2016 11:54:45 AM,01/02/2016 12:09:13 PM,Code 2 Transport,01/02/2016 01:02:33 PM,GENEVA AV/SAN JOSE AV,San Francisco,94112,B09,15,8313,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",160021269-65 +131120160,83,13037670,Medical Incident,04/22/2013,04/22/2013,04/22/2013 11:19:16 AM,04/22/2013 11:19:16 AM,04/22/2013 11:21:20 AM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Other,04/25/2016 01:53:11 PM,300 Block of SUTTER ST,SF,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7894784048694, -122.406166894053)",131120160-83 +130170188,KM12,13005782,Medical Incident,01/17/2013,01/17/2013,01/17/2013 01:11:22 PM,01/17/2013 01:12:04 PM,01/17/2013 01:13:04 PM,01/17/2013 01:13:37 PM,01/17/2013 01:44:06 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Code 2 Transport,01/17/2013 02:23:33 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130170188-KM12 +111950363,59,11064528,Medical Incident,07/14/2011,07/14/2011,07/14/2011 09:03:35 PM,07/14/2011 09:04:11 PM,07/14/2011 09:04:36 PM,07/14/2011 09:04:54 PM,07/14/2011 09:06:11 PM,07/14/2011 09:29:00 PM,07/14/2011 09:35:33 PM,Code 2 Transport,07/14/2011 09:48:32 PM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",111950363-59 +123000042,B07,12099320,Medical Incident,10/26/2012,10/25/2012,10/26/2012 02:46:49 AM,10/26/2012 02:48:49 AM,10/26/2012 02:49:24 AM,10/26/2012 02:52:02 AM,10/26/2012 02:54:10 AM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,Other,10/26/2012 03:04:01 AM,100 Block of 20TH AVE,SF,94121,B07,31,7163,A,A,2,false,Potentially Life-Threatening,1,CHIEF,3,7,1,Outer Richmond,"(37.7850571442915, -122.479649201881)",123000042-B07 +111560247,93,11051618,Medical Incident,06/05/2011,06/05/2011,06/05/2011 02:09:08 PM,06/05/2011 02:13:44 PM,06/05/2011 02:13:56 PM,06/05/2011 02:14:12 PM,06/05/2011 02:18:09 PM,06/05/2011 02:28:50 PM,06/05/2011 02:37:58 PM,Code 2 Transport,06/05/2011 03:14:08 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",111560247-93 +123610094,E13,12120729,Alarms,12/26/2012,12/26/2012,12/26/2012 09:23:16 AM,12/26/2012 09:25:38 AM,12/26/2012 09:25:53 AM,12/26/2012 09:26:53 AM,12/26/2012 09:29:29 AM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 09:30:21 AM,300 Block of THE EMBARCADERO,SF,94111,B01,13,903,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",123610094-E13 +160120480,82,16004662,Medical Incident,01/12/2016,01/11/2016,01/12/2016 06:28:43 AM,01/12/2016 06:31:50 AM,01/12/2016 06:33:06 AM,01/12/2016 06:33:13 AM,01/12/2016 06:51:29 AM,01/12/2016 07:03:29 AM,01/12/2016 07:15:57 AM,Code 2 Transport,01/12/2016 07:47:55 AM,1800 Block of POST ST,San Francisco,94115,B04,5,3513,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7853160090058, -122.432236013697)",160120480-82 +112910144,T15,11096537,Alarms,10/18/2011,10/18/2011,10/18/2011 10:39:19 AM,10/18/2011 10:41:52 AM,10/18/2011 10:42:03 AM,10/18/2011 10:43:48 AM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/18/2011 10:49:26 AM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,3,3,3,false,,1,TRUCK,3,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",112910144-T15 +160303044,77,16011900,Medical Incident,01/30/2016,01/30/2016,01/30/2016 06:24:24 PM,01/30/2016 06:26:37 PM,01/30/2016 06:26:58 PM,01/30/2016 06:27:07 PM,01/30/2016 06:31:45 PM,01/30/2016 07:00:40 PM,01/30/2016 07:11:48 PM,Code 2 Transport,01/30/2016 07:34:38 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7829058754034, -122.40679650522)",160303044-77 +160073902,84,16003031,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:58:51 PM,01/07/2016 10:59:28 PM,01/07/2016 10:59:54 PM,01/07/2016 11:00:06 PM,01/07/2016 11:04:53 PM,01/07/2016 11:21:20 PM,01/07/2016 11:30:52 PM,Code 2 Transport,01/08/2016 12:37:50 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",160073902-84 +123030176,81,12100503,Medical Incident,10/29/2012,10/28/2012,10/29/2012 07:33:25 AM,10/29/2012 07:34:50 AM,10/29/2012 07:35:34 AM,10/29/2012 07:35:58 AM,10/29/2012 07:41:55 AM,10/29/2012 08:08:32 AM,04/25/2016 01:56:04 PM,Code 2 Transport,10/29/2012 08:53:59 AM,2500 Block of 40TH AVE,SF,94116,B08,18,7617,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7392586275396, -122.498062678439)",123030176-81 +132860359,E31,13097432,Medical Incident,10/13/2013,10/13/2013,10/13/2013 09:44:15 PM,10/13/2013 09:46:43 PM,10/13/2013 09:47:12 PM,10/13/2013 09:48:01 PM,10/13/2013 09:50:33 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/13/2013 09:55:25 PM,4000 Block of FULTON ST,SF,94118,B07,31,7156,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7730416077459, -122.475086257619)",132860359-E31 +131770048,94,13059972,Medical Incident,06/26/2013,06/25/2013,06/26/2013 02:57:07 AM,06/26/2013 02:58:44 AM,06/26/2013 03:15:05 AM,06/26/2013 03:15:50 AM,06/26/2013 03:22:15 AM,06/26/2013 03:35:28 AM,06/26/2013 03:42:45 AM,Code 2 Transport,06/26/2013 04:02:03 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131770048-94 +121290377,E14,12043102,Medical Incident,05/08/2012,05/08/2012,05/08/2012 11:46:05 PM,05/08/2012 11:46:51 PM,05/08/2012 11:47:10 PM,05/08/2012 11:49:59 PM,05/08/2012 11:51:38 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Other,05/09/2012 12:29:18 AM,400 Block of 17TH AVE,SF,94118,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7795181030335, -122.47602814983)",121290377-E14 +132840060,E36,13096518,Medical Incident,10/11/2013,10/10/2013,10/11/2013 06:49:20 AM,10/11/2013 06:49:55 AM,10/11/2013 06:50:29 AM,10/11/2013 06:52:20 AM,10/11/2013 06:56:40 AM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/11/2013 07:02:25 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,2,2,false,Non Life-threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132840060-E36 +102640313,RS1,10083664,Medical Incident,09/21/2010,09/21/2010,09/21/2010 06:58:48 PM,09/21/2010 07:00:01 PM,09/21/2010 07:00:43 PM,09/21/2010 07:01:28 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:01:43 PM,6TH ST/MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7809711823918, -122.408708674954)",102640313-RS1 +133300322,T09,13112180,Structure Fire,11/26/2013,11/26/2013,11/26/2013 08:24:37 PM,11/26/2013 08:24:37 PM,11/26/2013 08:24:45 PM,11/26/2013 08:26:13 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,Fire,11/26/2013 08:28:45 PM,26TH ST/HAMPSHIRE ST,SF,94110,B06,9,5616,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7497166298249, -122.406896451435)",133300322-T09 +160742514,76,16029396,Medical Incident,03/14/2016,03/14/2016,03/14/2016 03:52:15 PM,03/14/2016 03:53:22 PM,03/14/2016 03:56:28 PM,03/14/2016 03:56:36 PM,03/14/2016 04:00:00 PM,03/14/2016 04:15:01 PM,03/14/2016 04:27:13 PM,Code 2 Transport,03/14/2016 05:11:39 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160742514-76 +132910194,T11,13099010,Alarms,10/18/2013,10/18/2013,10/18/2013 12:28:39 PM,10/18/2013 12:30:31 PM,10/18/2013 12:30:36 PM,10/18/2013 12:31:44 PM,10/18/2013 12:34:47 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/18/2013 12:45:31 PM,1100 Block of VALENCIA ST,SF,94110,B06,11,5512,3,3,3,false,Alarm,1,TRUCK,2,6,8,Mission,"(37.7544947867363, -122.420957096572)",132910194-T11 +133570170,93,13121360,Medical Incident,12/23/2013,12/23/2013,12/23/2013 01:14:52 PM,12/23/2013 01:15:13 PM,12/23/2013 01:15:23 PM,12/23/2013 01:15:34 PM,12/23/2013 01:19:01 PM,12/23/2013 01:31:50 PM,12/23/2013 02:05:40 PM,Code 3 Transport,12/23/2013 02:04:24 PM,MASON ST/EDDY ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",133570170-93 +160661399,87,16026372,Medical Incident,03/06/2016,03/06/2016,03/06/2016 12:25:40 PM,03/06/2016 12:27:56 PM,03/06/2016 12:29:29 PM,03/06/2016 12:29:48 PM,03/06/2016 12:36:27 PM,03/06/2016 01:02:56 PM,03/06/2016 01:06:42 PM,Code 2 Transport,03/06/2016 01:58:29 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160661399-87 +121800307,67,12060033,Medical Incident,06/28/2012,06/28/2012,06/28/2012 06:27:37 PM,06/28/2012 06:28:09 PM,06/28/2012 06:28:38 PM,06/28/2012 06:28:44 PM,06/28/2012 06:28:54 PM,06/28/2012 06:46:38 PM,06/28/2012 07:10:48 PM,Code 2 Transport,06/28/2012 07:26:27 PM,KING ST/4TH ST,SF,94107,B03,8,2236,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",121800307-67 +102260128,E31,10071101,Medical Incident,08/14/2010,08/14/2010,08/14/2010 11:01:37 AM,08/14/2010 11:02:33 AM,08/14/2010 11:02:48 AM,08/14/2010 11:03:33 AM,08/14/2010 11:05:57 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 11:10:59 AM,200 Block of 3RD AVE,SF,94118,B07,31,7116,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7840251611754, -122.461202829371)",102260128-E31 +113560168,E06,11118181,Structure Fire,12/22/2011,12/22/2011,12/22/2011 11:52:54 AM,12/22/2011 11:53:42 AM,12/22/2011 11:54:25 AM,12/22/2011 11:58:01 AM,12/22/2011 12:03:06 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 04:44:55 PM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,true,,5,ENGINE,11,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",113560168-E06 +160490678,63,16019640,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:11:41 AM,02/18/2016 08:13:22 AM,02/18/2016 08:16:16 AM,02/18/2016 08:16:25 AM,02/18/2016 08:26:34 AM,02/18/2016 08:46:12 AM,02/18/2016 09:07:13 AM,Code 2 Transport,02/18/2016 09:46:48 AM,2500 Block of 42ND AVE,San Francisco,94116,B08,18,7643,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7391643787319, -122.500198611331)",160490678-63 +112830301,E38,11093788,Medical Incident,10/10/2011,10/10/2011,10/10/2011 06:48:20 PM,10/10/2011 06:55:20 PM,10/10/2011 06:55:46 PM,10/10/2011 06:55:58 PM,10/10/2011 06:59:02 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 07:02:21 PM,2700 Block of JACKSON ST,SF,94115,B04,38,4123,3,3,3,false,,1,ENGINE,2,4,2,Pacific Heights,"(37.7916826631611, -122.440310160049)",112830301-E38 +102650348,T01,10084031,Alarms,09/22/2010,09/22/2010,09/22/2010 11:26:58 PM,09/22/2010 11:28:16 PM,09/22/2010 11:28:36 PM,09/22/2010 11:30:02 PM,09/22/2010 11:32:27 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 11:37:11 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",102650348-T01 +131590034,E01,13053892,Medical Incident,06/08/2013,06/07/2013,06/08/2013 01:34:09 AM,06/08/2013 01:34:09 AM,06/08/2013 01:34:37 AM,06/08/2013 01:34:55 AM,06/08/2013 01:38:41 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Unable to Locate,06/08/2013 01:41:11 AM,100 Block of 3RD ST,SF,94103,B03,1,2177,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",131590034-E01 +123120193,T06,12103834,Medical Incident,11/07/2012,11/07/2012,11/07/2012 01:19:38 PM,11/07/2012 01:20:24 PM,11/07/2012 01:20:58 PM,11/07/2012 01:22:33 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,04/25/2016 01:55:54 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",123120193-T06 +113260272,T03,11108302,Medical Incident,11/22/2011,11/22/2011,11/22/2011 03:47:23 PM,11/22/2011 03:48:20 PM,11/22/2011 03:48:54 PM,11/22/2011 03:51:21 PM,11/22/2011 03:52:55 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 03:57:11 PM,LEAVENWORTH ST/GEARY ST,SF,94109,B04,3,1543,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",113260272-T03 +123280288,E10,12109190,Structure Fire,11/23/2012,11/23/2012,11/23/2012 07:37:06 PM,11/23/2012 07:37:06 PM,11/23/2012 07:37:12 PM,11/23/2012 07:38:35 PM,11/23/2012 07:41:58 PM,04/25/2016 01:55:40 PM,04/25/2016 01:55:40 PM,Other,11/23/2012 07:42:19 PM,2500 Block of BRODERICK ST,SF,94123,B04,10,4226,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.793707267382, -122.443219876826)",123280288-E10 +121710063,E36,12056657,Structure Fire,06/19/2012,06/18/2012,06/19/2012 06:34:04 AM,06/19/2012 06:34:04 AM,06/19/2012 06:34:13 AM,06/19/2012 06:36:09 AM,06/19/2012 06:37:54 AM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Fire,06/19/2012 06:42:01 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7726641818375, -122.418338317697)",121710063-E36 +103440356,67,10110350,Medical Incident,12/10/2010,12/10/2010,12/10/2010 07:27:01 PM,12/10/2010 07:28:28 PM,12/10/2010 07:30:34 PM,12/10/2010 07:31:05 PM,12/10/2010 07:51:42 PM,12/10/2010 08:11:10 PM,12/10/2010 08:30:54 PM,Code 2 Transport,12/10/2010 08:49:22 PM,2200 Block of 14TH AVE,SF,94116,B08,40,736,2,2,2,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7460932039344, -122.470360848492)",103440356-67 +113290089,RC1,11109089,Medical Incident,11/25/2011,11/25/2011,11/25/2011 10:32:10 AM,11/25/2011 10:34:36 AM,11/25/2011 10:34:54 AM,04/25/2016 02:01:28 PM,11/25/2011 10:40:17 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,No Merit,11/25/2011 10:45:39 AM,200 Block of GEARY ST,SF,94108,B01,1,1323,3,2,2,true,,1,RESCUE CAPTAIN,2,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",113290089-RC1 +160702626,68,16027934,Medical Incident,03/10/2016,03/10/2016,03/10/2016 05:11:15 PM,03/10/2016 05:11:15 PM,03/10/2016 05:11:53 PM,03/10/2016 05:12:05 PM,03/10/2016 05:22:15 PM,03/10/2016 05:34:52 PM,03/10/2016 05:38:07 PM,Code 2 Transport,03/10/2016 07:27:24 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",160702626-68 +121620065,E01,12053528,Alarms,06/10/2012,06/09/2012,06/10/2012 03:08:49 AM,06/10/2012 03:08:49 AM,06/10/2012 03:09:16 AM,06/10/2012 03:10:09 AM,06/10/2012 03:15:16 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Fire,06/10/2012 03:15:44 AM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",121620065-E01 +133250005,KM15,13110233,Medical Incident,11/21/2013,11/20/2013,11/21/2013 12:12:47 AM,11/21/2013 12:13:06 AM,11/21/2013 12:13:58 AM,11/21/2013 12:14:59 AM,11/21/2013 12:20:29 AM,11/21/2013 12:29:04 AM,11/21/2013 12:46:37 AM,Code 2 Transport,11/21/2013 01:15:09 AM,200 Block of FOLSOM ST,SF,94105,B03,35,2117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",133250005-KM15 +160583131,85,16023255,Medical Incident,02/27/2016,02/27/2016,02/27/2016 07:12:33 PM,02/27/2016 07:13:35 PM,02/27/2016 07:14:15 PM,02/27/2016 07:15:04 PM,02/27/2016 07:20:37 PM,02/27/2016 07:34:04 PM,02/27/2016 07:54:34 PM,Code 2 Transport,02/27/2016 08:32:07 PM,VAN NESS AV/NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",160583131-85 +102640225,E32,10083580,Medical Incident,09/21/2010,09/21/2010,09/21/2010 03:00:02 PM,09/21/2010 03:00:37 PM,09/21/2010 03:01:06 PM,09/21/2010 03:01:42 PM,09/21/2010 03:03:18 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 03:12:46 PM,30TH ST/MISSION ST,SF,94110,B06,32,5625,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",102640225-E32 +140810067,T05,14027268,Elevator / Escalator Rescue,03/22/2014,03/21/2014,03/22/2014 06:09:24 AM,03/22/2014 06:10:36 AM,03/22/2014 06:10:42 AM,03/22/2014 06:13:38 AM,03/22/2014 06:27:37 AM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Fire,03/22/2014 06:27:39 AM,1200 Block of WEBSTER ST,SAN FRANCISCO,94115,B05,5,3515,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",140810067-T05 +140150137,E10,14005092,Medical Incident,01/15/2014,01/15/2014,01/15/2014 10:50:56 AM,01/15/2014 10:53:02 AM,01/15/2014 10:54:19 AM,01/15/2014 10:56:05 AM,01/15/2014 10:59:59 AM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/15/2014 11:08:56 AM,DIVISADERO ST/SUTTER ST,SF,94115,B05,10,4155,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Japantown,"(37.7852475259262, -122.439872612659)",140150137-E10 +112350053,T08,11077454,Alarms,08/23/2011,08/22/2011,08/23/2011 06:14:59 AM,08/23/2011 06:17:11 AM,08/23/2011 06:17:26 AM,08/23/2011 06:19:46 AM,08/23/2011 06:23:54 AM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 06:31:09 AM,0 Block of HARRISON ST,SF,94105,B03,35,2113,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7892474519723, -122.389008295709)",112350053-T08 +160251101,81,16009862,Medical Incident,01/25/2016,01/25/2016,01/25/2016 09:45:04 AM,01/25/2016 09:48:04 AM,01/25/2016 09:51:34 AM,01/25/2016 09:51:46 AM,01/25/2016 09:54:33 AM,01/25/2016 10:28:00 AM,01/25/2016 10:33:15 AM,Code 2 Transport,01/25/2016 11:03:25 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160251101-81 +131730139,81,13058667,Medical Incident,06/22/2013,06/22/2013,06/22/2013 12:10:28 PM,06/22/2013 12:11:50 PM,06/22/2013 12:12:26 PM,06/22/2013 12:12:33 PM,06/22/2013 12:22:30 PM,06/22/2013 12:38:51 PM,06/22/2013 12:41:16 PM,Code 2 Transport,06/22/2013 01:02:39 PM,1100 Block of POST ST,SF,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Tenderloin,"(37.7866690098549, -122.420738096439)",131730139-81 +123000128,AM16,12099390,Medical Incident,10/26/2012,10/26/2012,10/26/2012 10:40:48 AM,10/26/2012 10:42:00 AM,10/26/2012 10:42:26 AM,10/26/2012 10:44:07 AM,10/26/2012 10:56:58 AM,10/26/2012 11:15:12 AM,10/26/2012 11:31:54 AM,Code 2 Transport,10/26/2012 12:10:16 PM,600 Block of SANSOME ST,SF,94111,B01,13,1211,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Chinatown,"(37.79618119485, -122.401696308834)",123000128-AM16 +160860487,60,16034071,Medical Incident,03/26/2016,03/25/2016,03/26/2016 04:10:04 AM,03/26/2016 04:10:04 AM,03/26/2016 04:10:12 AM,03/26/2016 04:10:19 AM,03/26/2016 04:13:58 AM,03/26/2016 04:28:49 AM,03/26/2016 04:31:28 AM,Code 3 Transport,03/26/2016 05:14:18 AM,1500 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7906289225699, -122.41985085623)",160860487-60 +120160055,T07,12005300,Gas Leak (Natural and LP Gases),01/16/2012,01/15/2012,01/16/2012 07:19:39 AM,01/16/2012 07:21:30 AM,01/16/2012 07:21:45 AM,01/16/2012 07:24:12 AM,01/16/2012 07:39:09 AM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/16/2012 07:45:43 AM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7737629752818, -122.417960394107)",120160055-T07 +123630241,E15,12121520,Medical Incident,12/28/2012,12/28/2012,12/28/2012 04:33:29 PM,12/28/2012 04:33:45 PM,12/28/2012 04:34:05 PM,12/28/2012 04:35:01 PM,12/28/2012 04:37:22 PM,12/28/2012 05:10:06 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 05:33:07 PM,0 Block of EDNA ST,SF,94112,B09,15,8226,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7270811295823, -122.446621667815)",123630241-E15 +130150176,54,13005106,Medical Incident,01/15/2013,01/15/2013,01/15/2013 01:03:43 PM,01/15/2013 01:04:27 PM,01/15/2013 01:04:43 PM,01/15/2013 01:04:52 PM,01/15/2013 01:09:49 PM,01/15/2013 01:31:43 PM,01/15/2013 02:04:43 PM,Code 2 Transport,01/15/2013 02:38:26 PM,300 Block of VICTORIA ST,SF,94132,B09,33,841,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7170173593096, -122.46540070392)",130150176-54 +130810211,E28,13027135,Structure Fire,03/22/2013,03/22/2013,03/22/2013 02:28:14 PM,03/22/2013 02:29:09 PM,03/22/2013 02:33:54 PM,03/22/2013 02:34:39 PM,03/22/2013 02:38:52 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 02:53:13 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,false,Fire,1,ENGINE,9,4,2,Marina,"(37.8006947037442, -122.436775838314)",130810211-E28 +121570186,E34,12051947,Medical Incident,06/05/2012,06/05/2012,06/05/2012 01:40:28 PM,06/05/2012 01:41:06 PM,06/05/2012 01:41:52 PM,06/05/2012 01:42:29 PM,06/05/2012 01:46:21 PM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,Other,06/05/2012 01:52:46 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",121570186-E34 +131400227,E21,13047434,Alarms,05/20/2013,05/20/2013,05/20/2013 01:00:32 PM,05/20/2013 01:01:49 PM,05/20/2013 01:03:19 PM,05/20/2013 01:04:24 PM,05/20/2013 01:07:32 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,Other,05/20/2013 01:09:22 PM,1300 Block of MASONIC AVE,SF,94117,B05,21,4466,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7683463778754, -122.444987081385)",131400227-E21 +140700035,67,14023491,Medical Incident,03/11/2014,03/10/2014,03/11/2014 03:45:04 AM,03/11/2014 03:50:19 AM,03/11/2014 03:50:34 AM,03/11/2014 03:50:51 AM,03/11/2014 04:09:44 AM,03/11/2014 04:34:24 AM,03/11/2014 05:16:10 AM,Code 2 Transport,03/11/2014 05:30:11 AM,24TH ST/SOUTH VAN NESS AV,SAN FRANCISCO,94110,B06,7,5511,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7523727894276, -122.416265511485)",140700035-67 +133410084,E26,13115536,Medical Incident,12/07/2013,12/06/2013,12/07/2013 06:29:28 AM,12/07/2013 06:31:36 AM,12/07/2013 06:32:57 AM,12/07/2013 06:34:28 AM,12/07/2013 06:38:20 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/07/2013 06:54:16 AM,0 Block of ORA WAY,SF,94131,B06,26,8154,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7414013070575, -122.437853503826)",133410084-E26 +160671770,71,16026772,Medical Incident,03/07/2016,03/07/2016,03/07/2016 02:05:41 PM,03/07/2016 02:07:26 PM,03/07/2016 02:08:17 PM,03/07/2016 02:08:24 PM,03/07/2016 02:27:10 PM,03/07/2016 02:33:50 PM,03/07/2016 02:33:51 PM,Code 2 Transport,03/07/2016 03:19:07 PM,200 Block of 21ST AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7831476181283, -122.480588567897)",160671770-71 +160312222,AM16,16012205,Medical Incident,01/31/2016,01/31/2016,01/31/2016 02:57:34 PM,01/31/2016 03:02:14 PM,01/31/2016 03:02:57 PM,01/31/2016 03:03:38 PM,01/31/2016 03:14:23 PM,01/31/2016 03:26:31 PM,01/31/2016 03:56:17 PM,Code 2 Transport,01/31/2016 04:19:38 PM,0 Block of NORTON ST,San Francisco,94112,B09,43,6117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7249572695798, -122.435780283156)",160312222-AM16 +160822927,62,16032675,Medical Incident,03/22/2016,03/22/2016,03/22/2016 05:31:59 PM,03/22/2016 05:31:59 PM,03/22/2016 05:34:14 PM,03/22/2016 05:34:14 PM,03/22/2016 05:38:00 PM,03/22/2016 05:56:26 PM,03/22/2016 06:10:28 PM,Code 2 Transport,03/22/2016 06:37:18 PM,1700 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160822927-62 +103030333,E07,10096918,Medical Incident,10/30/2010,10/30/2010,10/30/2010 09:45:09 PM,10/30/2010 09:45:09 PM,10/30/2010 09:46:23 PM,04/25/2016 02:07:51 PM,10/30/2010 09:48:59 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 09:52:21 PM,500 Block of DOLORES ST,SF,94114,B06,7,5435,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7606186794333, -122.426153349478)",103030333-E07 +110650274,72,11021533,Medical Incident,03/06/2011,03/06/2011,03/06/2011 04:41:33 PM,03/06/2011 04:41:59 PM,03/06/2011 04:42:15 PM,03/06/2011 04:42:21 PM,03/06/2011 04:46:12 PM,03/06/2011 04:55:41 PM,03/06/2011 05:06:31 PM,Code 2 Transport,03/06/2011 05:21:38 PM,GOLDEN GATE AV/VAN NESS AV,SF,94102,B02,36,3164,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",110650274-72 +103090243,AM06,10099084,Medical Incident,11/05/2010,11/05/2010,11/05/2010 04:28:17 PM,11/05/2010 04:29:43 PM,11/05/2010 04:34:53 PM,11/05/2010 04:35:18 PM,11/05/2010 04:48:04 PM,11/05/2010 05:11:23 PM,11/05/2010 05:25:43 PM,Code 2 Transport,11/05/2010 06:03:33 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,1,1,2,false,,1,PRIVATE,1,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",103090243-AM06 +122830045,E12,12093539,Alarms,10/09/2012,10/08/2012,10/09/2012 05:04:06 AM,10/09/2012 05:04:07 AM,10/09/2012 05:04:35 AM,10/09/2012 05:06:15 AM,10/09/2012 05:07:51 AM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 05:15:41 AM,500 Block of PARNASSUS AVE,SF,94131,B05,12,7323,3,3,3,true,Alarm,1,ENGINE,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",122830045-E12 +160061375,57,16002360,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:13:11 AM,01/06/2016 11:14:34 AM,01/06/2016 11:15:04 AM,01/06/2016 11:15:18 AM,01/06/2016 11:27:32 AM,01/06/2016 11:37:13 AM,01/06/2016 11:47:53 AM,Code 3 Transport,01/06/2016 12:43:30 PM,700 Block of GREAT HWY,San Francisco,94121,B07,34,7316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7740193377855, -122.511346410906)",160061375-57 +120880123,E10,12029136,Medical Incident,03/28/2012,03/28/2012,03/28/2012 10:38:04 AM,03/28/2012 10:38:31 AM,03/28/2012 10:38:39 AM,03/28/2012 10:39:30 AM,03/28/2012 10:41:56 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 10:49:14 AM,300 Block of WALNUT ST,SF,94118,B04,10,4416,3,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Presidio Heights,"(37.7884256240016, -122.448677680002)",120880123-E10 +123620218,KM11,12121187,Medical Incident,12/27/2012,12/27/2012,12/27/2012 03:20:36 PM,12/27/2012 03:20:52 PM,12/27/2012 03:21:15 PM,12/27/2012 03:21:56 PM,12/27/2012 03:24:06 PM,12/27/2012 04:07:53 PM,04/25/2016 01:55:06 PM,Code 2 Transport,12/27/2012 04:08:02 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",123620218-KM11 +160471932,KM03,16018936,Medical Incident,02/16/2016,02/16/2016,02/16/2016 01:32:23 PM,02/16/2016 01:36:32 PM,02/16/2016 01:37:16 PM,02/16/2016 01:37:51 PM,02/16/2016 01:49:14 PM,02/16/2016 02:17:27 PM,02/16/2016 02:17:33 PM,Code 2 Transport,02/16/2016 02:58:56 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160471932-KM03 +160152389,67,16006046,Medical Incident,01/15/2016,01/15/2016,01/15/2016 03:25:13 PM,01/15/2016 03:27:07 PM,01/15/2016 03:30:11 PM,01/15/2016 03:30:19 PM,01/15/2016 03:40:51 PM,01/15/2016 03:55:31 PM,01/15/2016 04:13:52 PM,Code 2 Transport,01/15/2016 04:50:20 PM,2400 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7318198889718, -122.405412091734)",160152389-67 +113170118,94,11105268,Medical Incident,11/13/2011,11/13/2011,11/13/2011 08:44:17 AM,11/13/2011 08:44:23 AM,11/13/2011 08:45:02 AM,11/13/2011 08:45:17 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Fire,11/13/2011 08:54:33 AM,0 Block of ROSSI AVE,SF,94118,B07,21,4557,3,2,2,true,,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.779215348773, -122.45632948558)",113170118-94 +160590197,77,16023349,Medical Incident,02/28/2016,02/27/2016,02/28/2016 01:14:33 AM,02/28/2016 01:15:32 AM,02/28/2016 01:15:56 AM,02/28/2016 01:16:17 AM,02/28/2016 01:19:30 AM,02/28/2016 01:42:44 AM,02/28/2016 01:49:23 AM,Code 2 Transport,02/28/2016 02:44:12 AM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",160590197-77 +121760374,T15,12058669,Alarms,06/24/2012,06/24/2012,06/24/2012 08:17:50 PM,06/24/2012 08:19:32 PM,06/24/2012 08:19:51 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 08:23:22 PM,600 Block of EDINBURGH ST,SF,94112,B09,43,6137,3,3,3,true,Alarm,1,TRUCK,4,9,11,Excelsior,"(37.718874761067, -122.433710461209)",121760374-T15 +112510388,74,11082919,Structure Fire,09/08/2011,09/08/2011,09/08/2011 08:36:20 PM,09/08/2011 08:36:42 PM,09/08/2011 08:37:06 PM,09/08/2011 08:37:19 PM,09/08/2011 08:43:10 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 09:02:47 PM,200 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,true,,1,MEDIC,8,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",112510388-74 +132020303,E40,13068578,Medical Incident,07/21/2013,07/21/2013,07/21/2013 08:19:24 PM,07/21/2013 08:21:34 PM,07/21/2013 08:21:40 PM,07/21/2013 08:22:36 PM,07/21/2013 08:26:58 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,Other,07/21/2013 08:35:10 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",132020303-E40 +160802997,52,16031919,Medical Incident,03/20/2016,03/20/2016,03/20/2016 07:02:09 PM,03/20/2016 07:03:44 PM,03/20/2016 07:04:16 PM,03/20/2016 07:08:05 PM,03/20/2016 07:19:44 PM,03/20/2016 07:34:28 PM,03/20/2016 07:59:19 PM,Code 2 Transport,03/20/2016 08:41:07 PM,DUBOCE AV/FILLMORE ST,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7694079208278, -122.429905644885)",160802997-52 +123040115,B04,12100835,Alarms,10/30/2012,10/30/2012,10/30/2012 10:50:24 AM,10/30/2012 10:51:45 AM,10/30/2012 10:51:52 AM,10/30/2012 10:52:06 AM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/30/2012 10:55:55 AM,0 Block of PAGE ST,SF,94103,B02,36,3212,3,3,3,false,Alarm,1,CHIEF,3,2,5,Hayes Valley,"(37.7742723004159, -122.420496143745)",123040115-B04 +113070360,E08,11102143,Medical Incident,11/03/2011,11/03/2011,11/03/2011 08:07:37 PM,11/03/2011 08:09:33 PM,11/03/2011 08:13:50 PM,11/03/2011 08:15:45 PM,11/03/2011 08:18:46 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/03/2011 08:29:42 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7758599616408, -122.402849079555)",113070360-E08 +160773130,AM14,16030720,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:40:22 PM,03/17/2016 05:41:13 PM,03/17/2016 05:42:23 PM,03/17/2016 05:45:29 PM,03/17/2016 05:49:54 PM,03/17/2016 06:13:40 PM,03/17/2016 06:30:42 PM,Code 2 Transport,03/17/2016 07:15:01 PM,0 Block of GARDENSIDE DR,San Francisco,94131,B06,24,5282,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,8,Twin Peaks,"(37.7517781008065, -122.444988946157)",160773130-AM14 +133240243,E08,13110074,Other,11/20/2013,11/20/2013,11/20/2013 02:05:30 PM,11/20/2013 02:05:58 PM,11/20/2013 02:23:19 PM,11/20/2013 02:23:25 PM,11/20/2013 02:26:42 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 02:28:23 PM,100 Block of GILBERT ST,SF,94103,B03,8,2276,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7731318817549, -122.402341017674)",133240243-E08 +121790163,E39,12059589,Medical Incident,06/27/2012,06/27/2012,06/27/2012 11:08:21 AM,06/27/2012 11:08:55 AM,06/27/2012 11:09:08 AM,06/27/2012 11:10:23 AM,06/27/2012 11:13:42 AM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/27/2012 11:24:25 AM,300 Block of SANTA ANA AVE,SF,94127,B09,39,8552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7306370747512, -122.467921642897)",121790163-E39 +112070309,T17,11068491,Alarms,07/26/2011,07/26/2011,07/26/2011 08:38:22 PM,07/26/2011 08:38:47 PM,07/26/2011 08:38:53 PM,07/26/2011 08:40:31 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/26/2011 08:42:30 PM,CASHMERE ST/HUDSON AV,SF,94124,B10,25,652,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",112070309-T17 +160042122,52,16001633,Medical Incident,01/04/2016,01/04/2016,01/04/2016 02:37:55 PM,01/04/2016 02:38:54 PM,01/04/2016 02:39:15 PM,01/04/2016 02:39:42 PM,01/04/2016 02:44:58 PM,01/04/2016 03:07:17 PM,01/04/2016 03:25:48 PM,Code 2 Transport,01/04/2016 03:40:41 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160042122-52 +130980460,E16,13033085,Medical Incident,04/08/2013,04/08/2013,04/08/2013 10:47:37 PM,04/08/2013 10:48:26 PM,04/08/2013 10:48:37 PM,04/08/2013 10:50:10 PM,04/08/2013 10:53:07 PM,04/25/2016 01:53:24 PM,04/25/2016 01:53:24 PM,Other,04/08/2013 10:57:03 PM,2600 Block of LARKIN ST,SF,94109,B01,41,1625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.8022389057912, -122.421286499541)",130980460-E16 +160312998,85,16012294,Medical Incident,01/31/2016,01/31/2016,01/31/2016 06:27:38 PM,01/31/2016 06:29:54 PM,01/31/2016 06:31:33 PM,01/31/2016 06:31:33 PM,01/31/2016 06:39:31 PM,01/31/2016 06:54:41 PM,01/31/2016 06:57:48 PM,Code 2 Transport,01/31/2016 07:27:13 PM,0 Block of VIRGINIA AVE,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7428517374449, -122.420967440564)",160312998-85 +131100374,RS2,13037189,"Extrication / Entrapped (Machinery, Vehicle)",04/20/2013,04/20/2013,04/20/2013 09:04:49 PM,04/20/2013 09:05:07 PM,04/20/2013 09:05:18 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/20/2013 09:06:20 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,3,3,3,false,Fire,1,RESCUE SQUAD,5,2,9,Mission,"(37.7642361189447, -122.419659842408)",131100374-RS2 +160293031,61,16011541,Medical Incident,01/29/2016,01/29/2016,01/29/2016 07:16:19 PM,01/29/2016 07:16:19 PM,01/29/2016 07:16:25 PM,01/29/2016 07:16:52 PM,01/29/2016 07:30:47 PM,01/29/2016 07:40:00 PM,01/29/2016 07:45:25 PM,Code 2 Transport,01/29/2016 08:14:08 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",160293031-61 +113230339,T09,11107435,Alarms,11/19/2011,11/19/2011,11/19/2011 10:42:21 PM,11/19/2011 10:42:22 PM,11/19/2011 10:43:08 PM,11/19/2011 10:44:40 PM,11/19/2011 10:48:22 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/19/2011 11:19:00 PM,2700 Block of BRYANT ST,SF,94110,B06,9,553,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.750396573149, -122.408970541511)",113230339-T09 +111780386,KM15,11058942,Medical Incident,06/27/2011,06/27/2011,06/27/2011 10:56:48 PM,06/27/2011 10:57:52 PM,06/27/2011 11:00:05 PM,06/27/2011 11:01:04 PM,06/27/2011 11:11:52 PM,06/27/2011 11:29:15 PM,04/25/2016 02:03:56 PM,Code 2 Transport,06/27/2011 11:57:33 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,2,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",111780386-KM15 +132490078,81,13083950,Medical Incident,09/06/2013,09/06/2013,09/06/2013 08:37:01 AM,09/06/2013 08:38:32 AM,09/06/2013 08:39:01 AM,09/06/2013 08:39:29 AM,09/06/2013 08:42:32 AM,09/06/2013 08:56:00 AM,09/06/2013 09:16:26 AM,Code 2 Transport,09/06/2013 09:38:20 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",132490078-81 +102360258,T18,10074372,Structure Fire,08/24/2010,08/24/2010,08/24/2010 02:28:31 PM,08/24/2010 02:29:30 PM,08/24/2010 02:30:27 PM,08/24/2010 02:30:51 PM,08/24/2010 02:34:24 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/24/2010 02:50:38 PM,1900 Block of 44TH AVE,SF,94116,B08,23,7646,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7502631234043, -122.502999290875)",102360258-T18 +110530151,T06,11017490,Structure Fire,02/22/2011,02/22/2011,02/22/2011 12:13:26 PM,02/22/2011 12:13:27 PM,02/22/2011 12:13:41 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 12:18:23 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",110530151-T06 +160880430,KM07,16034819,Medical Incident,03/28/2016,03/27/2016,03/28/2016 05:36:00 AM,03/28/2016 05:36:00 AM,03/28/2016 05:36:40 AM,03/28/2016 05:37:21 AM,03/28/2016 05:41:39 AM,03/28/2016 05:48:14 AM,03/28/2016 06:10:37 AM,Code 2 Transport,03/28/2016 06:39:56 AM,EDDY ST/CYRIL MAGNIN ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",160880430-KM07 +103620303,E21,10116217,Alarms,12/28/2010,12/28/2010,12/28/2010 08:03:55 PM,12/28/2010 08:05:12 PM,12/28/2010 08:05:35 PM,12/28/2010 08:06:16 PM,12/28/2010 08:09:56 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 08:31:26 PM,2200 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,true,,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",103620303-E21 +160641580,88,16025481,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:43:32 AM,03/04/2016 11:45:09 AM,03/04/2016 11:45:53 AM,03/04/2016 11:46:25 AM,03/04/2016 12:20:55 PM,03/04/2016 12:30:47 PM,03/04/2016 01:11:13 PM,Code 2 Transport,03/04/2016 01:42:06 PM,1400 Block of HALIBUT CT,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",160641580-88 +103630329,70,10116576,Medical Incident,12/29/2010,12/29/2010,12/29/2010 10:02:56 PM,12/29/2010 10:04:47 PM,12/29/2010 10:05:59 PM,12/29/2010 10:09:12 PM,12/29/2010 10:11:24 PM,12/29/2010 10:30:48 PM,12/29/2010 10:49:25 PM,Code 2 Transport,12/29/2010 11:12:58 PM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",103630329-70 +123220298,E21,12107146,Medical Incident,11/17/2012,11/17/2012,11/17/2012 05:07:26 PM,11/17/2012 05:10:43 PM,11/17/2012 05:10:52 PM,11/17/2012 05:11:41 PM,11/17/2012 05:13:09 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 05:23:21 PM,500 Block of CENTRAL AVE,SF,94117,B05,21,4361,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7746264390362, -122.444430401392)",123220298-E21 +160201919,61,16008018,Medical Incident,01/20/2016,01/20/2016,01/20/2016 01:27:57 PM,01/20/2016 01:28:58 PM,01/20/2016 01:29:20 PM,01/20/2016 01:29:31 PM,01/20/2016 01:36:09 PM,01/20/2016 01:42:48 PM,01/20/2016 01:48:08 PM,Code 2 Transport,01/20/2016 02:38:52 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160201919-61 +121860166,D2,12061948,Structure Fire,07/04/2012,07/04/2012,07/04/2012 02:12:11 PM,07/04/2012 02:13:14 PM,07/04/2012 02:13:30 PM,07/04/2012 02:14:07 PM,07/04/2012 02:18:01 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 02:33:57 PM,2000 Block of GOLDEN GATE AVE,SF,94115,B05,21,4345,3,3,3,false,Fire,1,CHIEF,4,5,5,Lone Mountain/USF,"(37.7779335823054, -122.444320744028)",121860166-D2 +122890241,E51,12095664,Water Rescue,10/15/2012,10/15/2012,10/15/2012 03:19:43 PM,10/15/2012 03:20:39 PM,10/15/2012 03:21:56 PM,10/15/2012 03:24:13 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 03:36:52 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Fire,1,ENGINE,9,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",122890241-E51 +113290191,T03,11109177,Alarms,11/25/2011,11/25/2011,11/25/2011 04:45:59 PM,11/25/2011 04:47:00 PM,11/25/2011 04:47:10 PM,11/25/2011 04:48:10 PM,11/25/2011 04:51:06 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 04:53:06 PM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",113290191-T03 +160103314,66,16004191,Medical Incident,01/10/2016,01/10/2016,01/10/2016 09:41:27 PM,01/10/2016 09:41:27 PM,01/10/2016 09:41:47 PM,01/10/2016 09:41:56 PM,01/10/2016 10:02:40 PM,01/10/2016 10:04:16 PM,01/10/2016 10:19:57 PM,Code 2 Transport,01/10/2016 11:05:26 PM,CHINA BASIN ST/3RD ST,San Francisco,94158,B03,4,2231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7719979371741, -122.389611483823)",160103314-66 +160310672,75,16012088,Medical Incident,01/31/2016,01/30/2016,01/31/2016 06:34:30 AM,01/31/2016 06:36:04 AM,01/31/2016 06:36:44 AM,01/31/2016 06:36:56 AM,01/31/2016 06:43:54 AM,01/31/2016 06:59:05 AM,01/31/2016 07:02:43 AM,Code 2 Transport,01/31/2016 07:34:59 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160310672-75 +160521152,KM02,16020761,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:22:22 AM,02/21/2016 10:23:18 AM,02/21/2016 10:23:33 AM,02/21/2016 10:24:30 AM,02/21/2016 10:40:52 AM,02/21/2016 10:40:53 AM,02/21/2016 10:46:35 AM,Code 3 Transport,02/21/2016 11:35:25 AM,2200 Block of PACIFIC AVE,San Francisco,94115,B04,38,3441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7937165642364, -122.432279480256)",160521152-KM02 +110060060,E41,11001884,Medical Incident,01/06/2011,01/05/2011,01/06/2011 05:53:18 AM,01/06/2011 05:54:47 AM,01/06/2011 05:55:04 AM,04/25/2016 02:06:44 PM,01/06/2011 05:58:31 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 06:05:47 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",110060060-E41 +140290230,89,14009921,Medical Incident,01/29/2014,01/29/2014,01/29/2014 02:43:22 PM,01/29/2014 02:44:49 PM,01/29/2014 02:45:24 PM,01/29/2014 02:46:42 PM,01/29/2014 03:06:29 PM,01/29/2014 03:29:23 PM,01/29/2014 03:38:48 PM,Code 2 Transport,01/29/2014 03:58:23 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",140290230-89 +103110303,77,10099848,Medical Incident,11/07/2010,11/07/2010,11/07/2010 07:09:28 PM,11/07/2010 07:12:50 PM,11/07/2010 07:13:15 PM,11/07/2010 07:14:59 PM,11/07/2010 07:19:45 PM,11/07/2010 07:35:54 PM,11/07/2010 07:50:28 PM,Code 2 Transport,11/07/2010 08:17:43 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",103110303-77 +160421364,50,16016825,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:02:05 AM,02/11/2016 11:03:31 AM,02/11/2016 11:04:43 AM,02/11/2016 11:05:03 AM,02/11/2016 11:30:39 AM,02/11/2016 11:30:41 AM,02/11/2016 11:48:32 AM,Code 2 Transport,02/11/2016 12:35:18 PM,200 Block of BYXBEE ST,San Francisco,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7187705572293, -122.469775794648)",160421364-50 +160721072,75,16028539,Medical Incident,03/12/2016,03/12/2016,03/12/2016 10:08:20 AM,03/12/2016 10:09:28 AM,03/12/2016 10:09:44 AM,03/12/2016 10:09:55 AM,03/12/2016 10:15:23 AM,03/12/2016 10:45:30 AM,03/12/2016 10:45:34 AM,Code 2 Transport,03/12/2016 11:47:09 AM,700 Block of PANORAMA DR,San Francisco,94131,B08,20,5364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7534063007868, -122.454061829425)",160721072-75 +102340186,86,10073631,Medical Incident,08/22/2010,08/22/2010,08/22/2010 01:38:19 PM,08/22/2010 01:38:44 PM,08/22/2010 01:39:00 PM,08/22/2010 01:39:35 PM,08/22/2010 01:53:27 PM,08/22/2010 02:00:45 PM,08/22/2010 02:25:24 PM,Code 2 Transport,08/22/2010 02:57:01 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,2,2,true,,1,MEDIC,2,1,3,North Beach,"(37.8069201392161, -122.407170160416)",102340186-86 +160390243,75,16015456,Medical Incident,02/08/2016,02/07/2016,02/08/2016 01:52:00 AM,02/08/2016 01:53:35 AM,02/08/2016 01:54:40 AM,02/08/2016 01:54:56 AM,02/08/2016 02:04:31 AM,02/08/2016 02:27:53 AM,02/08/2016 02:40:07 AM,Code 2 Transport,02/08/2016 03:04:12 AM,1700 Block of 46TH AVE,San Francisco,94122,B08,23,7716,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7539006471459, -122.505401038194)",160390243-75 +130890387,T17,13029943,Vehicle Fire,03/30/2013,03/30/2013,03/30/2013 11:31:49 PM,03/30/2013 11:33:06 PM,03/30/2013 11:34:08 PM,03/30/2013 11:36:44 PM,03/30/2013 11:37:53 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 11:50:10 PM,PALOU AV/HAWES ST,SF,94124,B10,17,6647,3,3,3,false,Fire,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7286780137338, -122.381564415076)",130890387-T17 +133520303,E01,13119662,Medical Incident,12/18/2013,12/18/2013,12/18/2013 04:12:18 PM,12/18/2013 04:13:49 PM,12/18/2013 04:14:20 PM,12/18/2013 04:15:07 PM,12/18/2013 04:16:55 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/18/2013 04:26:29 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,A,A,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7810145579776, -122.413423114482)",133520303-E01 +160692065,60,16027500,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:14:43 PM,03/09/2016 02:15:56 PM,03/09/2016 02:16:30 PM,03/09/2016 02:17:38 PM,03/09/2016 02:38:18 PM,03/09/2016 03:14:41 PM,03/09/2016 03:42:53 PM,Code 2 Transport,03/09/2016 04:15:40 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160692065-60 +160281051,52,16011025,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:50:10 AM,01/28/2016 09:51:57 AM,01/28/2016 09:52:18 AM,01/28/2016 09:52:29 AM,01/28/2016 09:59:54 AM,01/28/2016 10:17:59 AM,01/28/2016 10:35:28 AM,Code 2 Transport,01/28/2016 11:10:53 AM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",160281051-52 +140650250,93,14022013,Medical Incident,03/06/2014,03/06/2014,03/06/2014 03:24:48 PM,03/06/2014 03:27:01 PM,03/06/2014 03:27:49 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Code 2 Transport,04/25/2016 01:47:52 PM,100 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",140650250-93 +160010173,KM07,16000027,Medical Incident,01/01/2016,12/31/2015,01/01/2016 12:40:08 AM,01/01/2016 12:40:08 AM,01/01/2016 01:06:55 AM,01/01/2016 01:26:55 AM,01/01/2016 01:26:55 AM,01/01/2016 01:31:33 AM,01/01/2016 01:47:18 AM,Code 2 Transport,01/01/2016 02:06:45 AM,4000 Block of NORIEGA ST,San Francisco,94122,B08,23,7725,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7528382693813, -122.50700721306)",160010173-KM07 +111610372,RS1,11053350,Medical Incident,06/10/2011,06/10/2011,06/10/2011 11:30:05 PM,06/10/2011 11:31:43 PM,06/10/2011 11:34:49 PM,06/10/2011 11:35:33 PM,06/10/2011 11:38:16 PM,04/25/2016 02:04:13 PM,04/25/2016 02:04:13 PM,Other,06/10/2011 11:40:40 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",111610372-RS1 +111990284,57,11065726,Medical Incident,07/18/2011,07/18/2011,07/18/2011 06:52:14 PM,07/18/2011 06:52:49 PM,07/18/2011 06:53:28 PM,07/18/2011 06:53:49 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Other,04/25/2016 02:03:36 PM,3RD ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",111990284-57 +130240059,E39,13008195,Medical Incident,01/24/2013,01/23/2013,01/24/2013 07:15:14 AM,01/24/2013 07:16:26 AM,01/24/2013 07:16:46 AM,01/24/2013 07:19:38 AM,01/24/2013 07:24:09 AM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Other,01/24/2013 07:27:17 AM,2300 Block of 21ST AVE,SF,94116,B08,40,7434,3,3,3,true,Non Life-threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7438859404109, -122.477970593365)",130240059-E39 +102760377,T08,10087905,Structure Fire,10/03/2010,10/03/2010,10/03/2010 10:12:00 PM,10/03/2010 10:12:50 PM,10/03/2010 10:13:13 PM,10/03/2010 10:14:27 PM,10/03/2010 10:15:26 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/03/2010 10:21:10 PM,500 Block of 4TH ST,SF,94107,B03,8,2217,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7793874256322, -122.397749284931)",102760377-T08 +160450923,88,16018045,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:33:46 AM,02/14/2016 08:35:45 AM,02/14/2016 08:36:56 AM,02/14/2016 08:37:17 AM,02/14/2016 08:47:26 AM,02/14/2016 09:02:48 AM,02/14/2016 09:25:13 AM,Code 2 Transport,02/14/2016 10:14:34 AM,DON CHEE WY/STEUART ST,San Francisco,94105,B03,35,2131,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7937724122673, -122.393860770156)",160450923-88 +130010189,RS1,13000128,Medical Incident,01/01/2013,12/31/2012,01/01/2013 03:01:21 AM,01/01/2013 03:02:09 AM,01/01/2013 03:02:30 AM,01/01/2013 03:03:10 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 03:03:52 AM,700 Block of MARKET ST,SF,94108,B01,1,1241,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,1,3,Financial District/South Beach,"(37.7872560927993, -122.40409466245)",130010189-RS1 +111890289,RC1,11062573,Medical Incident,07/08/2011,07/08/2011,07/08/2011 04:56:16 PM,07/08/2011 04:57:07 PM,07/08/2011 04:57:25 PM,07/08/2011 04:59:17 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,Other,07/08/2011 05:07:25 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,E,E,3,true,,1,RESCUE CAPTAIN,3,5,5,Japantown,"(37.7833263288474, -122.44032487616)",111890289-RC1 +160813830,74,16032385,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:10:16 PM,03/21/2016 10:10:48 PM,03/21/2016 10:12:34 PM,03/21/2016 10:12:42 PM,03/21/2016 10:23:43 PM,03/21/2016 10:42:37 PM,03/21/2016 11:03:25 PM,Code 2 Transport,03/21/2016 11:49:57 PM,700 Block of FONT BLVD,San Francisco,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",160813830-74 +160013878,57,16000540,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:52:36 PM,01/01/2016 10:57:28 PM,01/01/2016 11:00:18 PM,01/01/2016 11:00:44 PM,01/01/2016 11:11:50 PM,01/01/2016 11:29:40 PM,01/01/2016 11:46:48 PM,Code 2 Transport,01/02/2016 12:41:39 AM,DIAMOND ST/BOSWORTH ST,San Francisco,94131,B09,26,8261,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",160013878-57 +160070192,AM24,16002672,Medical Incident,01/07/2016,01/06/2016,01/07/2016 02:00:51 AM,01/07/2016 02:01:30 AM,01/07/2016 02:01:45 AM,01/07/2016 02:02:23 AM,01/07/2016 02:06:43 AM,01/07/2016 02:13:49 AM,01/07/2016 02:29:58 AM,Code 2 Transport,01/07/2016 02:55:46 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160070192-AM24 +160240853,AM04,16009463,Medical Incident,01/24/2016,01/24/2016,01/24/2016 08:33:05 AM,01/24/2016 08:35:42 AM,01/24/2016 08:36:45 AM,01/24/2016 08:37:36 AM,01/24/2016 08:41:39 AM,01/24/2016 08:58:09 AM,01/24/2016 09:22:08 AM,Code 2 Transport,01/24/2016 10:01:35 AM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",160240853-AM04 +130460373,77,13015765,Medical Incident,02/15/2013,02/15/2013,02/15/2013 06:49:04 PM,02/15/2013 06:51:35 PM,02/15/2013 06:54:10 PM,02/15/2013 07:01:37 PM,02/15/2013 07:01:49 PM,02/15/2013 07:23:41 PM,02/15/2013 07:37:27 PM,Code 2 Transport,02/15/2013 08:03:23 PM,1600 Block of 37TH AVE,SF,94122,B08,18,7572,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7561810724749, -122.496028362811)",130460373-77 +133230227,E19,13109672,Medical Incident,11/19/2013,11/19/2013,11/19/2013 01:38:30 PM,11/19/2013 01:40:58 PM,11/19/2013 01:41:41 PM,11/19/2013 01:42:32 PM,11/19/2013 01:43:38 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 02:16:23 PM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",133230227-E19 +131870004,E01,13063643,Medical Incident,07/06/2013,07/05/2013,07/06/2013 12:33:43 AM,07/06/2013 12:35:46 AM,07/06/2013 12:35:57 AM,07/06/2013 12:37:57 AM,07/06/2013 12:40:51 AM,04/25/2016 01:51:56 PM,04/25/2016 01:51:56 PM,Other,07/06/2013 12:51:10 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131870004-E01 +160901642,AM06,16035703,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:47:42 AM,03/30/2016 11:49:53 AM,03/30/2016 11:51:15 AM,03/30/2016 11:51:54 AM,03/30/2016 12:01:23 PM,03/30/2016 12:16:24 PM,03/30/2016 01:00:48 PM,Code 2 Transport,03/30/2016 01:34:44 PM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160901642-AM06 +133010153,E51,13102260,Other,10/28/2013,10/28/2013,10/28/2013 10:55:49 AM,10/28/2013 10:56:43 AM,10/28/2013 10:57:02 AM,10/28/2013 10:58:44 AM,10/28/2013 11:13:39 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 11:20:30 AM,CHESTNUT ST/PIERCE ST,SF,94123,B04,16,3661,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8004034299938, -122.439504170635)",133010153-E51 +113330309,E07,11110416,Medical Incident,11/29/2011,11/29/2011,11/29/2011 08:20:06 PM,11/29/2011 08:20:12 PM,11/29/2011 08:20:25 PM,11/29/2011 08:21:32 PM,11/29/2011 08:23:34 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/29/2011 08:29:35 PM,1000 Block of FLORIDA ST,SF,94110,B06,7,5476,E,E,3,true,,1,ENGINE,1,6,9,Mission,"(37.7551453615588, -122.41022765898)",113330309-E07 +121040142,E16,12034424,Structure Fire,04/13/2012,04/13/2012,04/13/2012 12:19:08 PM,04/13/2012 12:19:08 PM,04/13/2012 12:19:15 PM,04/13/2012 12:20:34 PM,04/13/2012 12:22:19 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Fire,04/13/2012 12:22:34 PM,BAKER ST/CHESTNUT ST,SF,94123,B04,16,4314,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7995560991799, -122.446161088315)",121040142-E16 +131100124,E25,13036958,Medical Incident,04/20/2013,04/20/2013,04/20/2013 10:19:23 AM,04/20/2013 10:21:51 AM,04/20/2013 10:22:09 AM,04/20/2013 10:24:01 AM,04/20/2013 10:31:21 AM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,No Merit,04/20/2013 10:31:32 AM,INNES AV/HUNTERS POINT BL,SF,94124,B10,25,6632,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324961246572, -122.376638038168)",131100124-E25 +120560083,RS1,12018421,Medical Incident,02/25/2012,02/25/2012,02/25/2012 09:14:23 AM,02/25/2012 09:14:41 AM,02/25/2012 09:14:52 AM,02/25/2012 09:17:38 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 09:18:58 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",120560083-RS1 +130890170,RS2,13029742,Water Rescue,03/30/2013,03/30/2013,03/30/2013 12:58:24 PM,03/30/2013 01:01:19 PM,03/30/2013 01:02:53 PM,03/30/2013 01:04:11 PM,03/30/2013 01:17:02 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 01:46:11 PM,500 Block of SKYLINE BLVD,SF,94132,B08,19,8772,3,3,3,false,Fire,1,RESCUE SQUAD,7,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",130890170-RS2 +123090095,94,12102667,Medical Incident,11/04/2012,11/03/2012,11/04/2012 04:30:39 AM,11/04/2012 04:31:26 AM,11/04/2012 04:31:53 AM,11/04/2012 04:32:44 AM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 04:39:08 AM,1600 Block of 24TH AVE,SF,94122,B08,18,7454,E,E,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7567983540483, -122.482094455948)",123090095-94 +111770415,54,11058566,Medical Incident,06/26/2011,06/26/2011,06/26/2011 08:46:10 PM,06/26/2011 08:47:50 PM,06/26/2011 08:50:25 PM,06/26/2011 08:56:17 PM,06/26/2011 08:56:20 PM,06/26/2011 09:06:59 PM,06/26/2011 09:20:12 PM,Code 2 Transport,06/26/2011 09:51:07 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,3,3,3,true,,1,MEDIC,3,6,9,Mission,"(37.7602353559327, -122.419206043807)",111770415-54 +123580325,82,12119995,Medical Incident,12/23/2012,12/23/2012,12/23/2012 09:45:36 PM,12/23/2012 09:47:31 PM,12/23/2012 09:49:39 PM,12/23/2012 09:57:47 PM,12/23/2012 10:04:45 PM,12/23/2012 10:20:31 PM,12/23/2012 10:41:46 PM,Code 2 Transport,12/23/2012 11:07:22 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",123580325-82 +110180292,B02,11006037,Other,01/18/2011,01/18/2011,01/18/2011 08:06:44 PM,01/18/2011 08:08:36 PM,01/18/2011 08:09:04 PM,01/18/2011 08:24:04 PM,01/18/2011 08:29:21 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Fire,01/18/2011 08:57:53 PM,1300 Block of HARRISON ST,SF,94103,B02,29,2344,3,3,3,false,,1,CHIEF,2,2,6,South of Market,"(37.7718543104907, -122.411027020165)",110180292-B02 +160391106,AM10,16015549,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:52:40 AM,02/08/2016 09:55:04 AM,02/08/2016 09:55:32 AM,02/08/2016 09:56:06 AM,02/08/2016 10:17:05 AM,02/08/2016 10:43:06 AM,02/08/2016 11:01:59 AM,Code 2 Transport,02/08/2016 11:34:33 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160391106-AM10 +131330375,67,13045024,Medical Incident,05/13/2013,05/13/2013,05/13/2013 09:20:13 PM,05/13/2013 09:23:07 PM,05/13/2013 09:23:23 PM,05/13/2013 09:24:12 PM,05/13/2013 10:01:27 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Patient Declined Transport,05/13/2013 10:08:58 PM,100 Block of RALSTON ST,SF,94132,B09,33,8411,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7151766826134, -122.468976771328)",131330375-67 +140210063,54,14007090,Medical Incident,01/21/2014,01/21/2014,01/21/2014 08:55:52 AM,01/21/2014 08:57:09 AM,01/21/2014 08:59:23 AM,01/21/2014 09:01:06 AM,01/21/2014 09:05:09 AM,01/21/2014 09:26:07 AM,01/21/2014 10:03:34 AM,Code 2 Transport,01/21/2014 10:46:02 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",140210063-54 +130190329,B02,13006636,Alarms,01/19/2013,01/19/2013,01/19/2013 07:08:09 PM,01/19/2013 07:09:36 PM,01/19/2013 07:10:26 PM,01/19/2013 07:13:14 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 07:18:52 PM,1300 Block of BUCHANAN ST,SF,94115,B02,5,3431,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7820811831699, -122.429017793799)",130190329-B02 +160050131,62,16001824,Medical Incident,01/05/2016,01/04/2016,01/05/2016 01:18:39 AM,01/05/2016 01:18:39 AM,01/05/2016 01:19:53 AM,01/05/2016 01:20:00 AM,01/05/2016 01:21:31 AM,01/05/2016 01:41:58 AM,01/05/2016 01:44:48 AM,Code 2 Transport,01/05/2016 02:23:35 AM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160050131-62 +123020086,B10,12100071,Medical Incident,10/28/2012,10/27/2012,10/28/2012 03:36:39 AM,10/28/2012 03:36:53 AM,10/28/2012 03:37:17 AM,10/28/2012 03:39:40 AM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/28/2012 03:40:06 AM,0 Block of GEORGE CT,SF,94124,B10,17,6572,3,E,3,false,Potentially Life-Threatening,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7309025092294, -122.382609703047)",123020086-B10 +111720382,89,11056906,Medical Incident,06/21/2011,06/21/2011,06/21/2011 10:37:23 PM,06/21/2011 10:38:32 PM,06/21/2011 10:39:21 PM,04/25/2016 02:04:02 PM,06/21/2011 10:41:32 PM,06/21/2011 11:06:37 PM,06/21/2011 11:15:24 PM,Code 2 Transport,06/21/2011 11:44:27 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",111720382-89 +160581846,76,16023134,Medical Incident,02/27/2016,02/27/2016,02/27/2016 01:32:19 PM,02/27/2016 01:33:04 PM,02/27/2016 01:33:42 PM,02/27/2016 01:33:49 PM,02/27/2016 01:41:02 PM,02/27/2016 01:49:26 PM,02/27/2016 02:11:22 PM,Code 2 Transport,02/27/2016 02:27:41 PM,3200 Block of 23RD ST,San Francisco,94110,B06,7,5511,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7539240929444, -122.418055151685)",160581846-76 +111760341,E06,11058149,Traffic Collision,06/25/2011,06/25/2011,06/25/2011 07:53:11 PM,06/25/2011 07:54:15 PM,06/25/2011 07:55:26 PM,06/25/2011 07:56:27 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 07:58:38 PM,16TH ST/DOLORES ST,SF,94103,B02,6,5234,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",111760341-E06 +160503414,75,16020245,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:26:22 PM,02/19/2016 08:28:36 PM,02/19/2016 08:29:36 PM,02/19/2016 08:29:42 PM,02/19/2016 08:30:00 PM,02/19/2016 08:40:06 PM,02/19/2016 08:57:44 PM,Code 2 Transport,02/19/2016 09:28:03 PM,NORIEGA ST/32ND AV,San Francisco,94122,B08,18,7543,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7536267146176, -122.49040061315)",160503414-75 +102630361,E11,10083363,Vehicle Fire,09/20/2010,09/20/2010,09/20/2010 08:52:56 PM,09/20/2010 08:53:30 PM,09/20/2010 08:54:33 PM,09/20/2010 08:56:02 PM,09/20/2010 09:06:53 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Fire,09/20/2010 09:07:11 PM,JERSEY ST/SANCHEZ ST,SF,94114,B06,11,5537,3,3,3,false,,1,ENGINE,1,6,8,Noe Valley,"(37.7507620189092, -122.429576537136)",102630361-E11 +160640148,55,16025328,Medical Incident,03/04/2016,03/03/2016,03/04/2016 01:23:02 AM,03/04/2016 01:24:10 AM,03/04/2016 01:24:41 AM,03/04/2016 01:24:51 AM,03/04/2016 01:32:03 AM,03/04/2016 01:37:45 AM,03/04/2016 01:58:33 AM,Code 2 Transport,03/04/2016 02:28:45 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160640148-55 +110850220,E25,11028054,Medical Incident,03/26/2011,03/26/2011,03/26/2011 02:17:51 PM,03/26/2011 02:20:16 PM,03/26/2011 02:20:53 PM,03/26/2011 02:22:37 PM,03/26/2011 02:23:38 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 02:48:51 PM,3RD ST/HUDSON AV,SF,94124,B10,25,6467,2,2,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7403172644605, -122.388754590589)",110850220-E25 +160100696,82,16003938,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:13:30 AM,01/10/2016 07:15:29 AM,01/10/2016 07:15:58 AM,01/10/2016 07:16:33 AM,01/10/2016 07:23:53 AM,01/10/2016 07:44:55 AM,01/10/2016 07:46:24 AM,Code 2 Transport,01/10/2016 08:33:19 AM,0 Block of CASTRO ST,San Francisco,94117,B05,21,4143,3,3,3,true,Non Life-threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7701295276066, -122.436422965066)",160100696-82 +122130100,AR1,12070637,Structure Fire,07/31/2012,07/31/2012,07/31/2012 08:55:12 AM,07/31/2012 08:55:53 AM,07/31/2012 08:56:33 AM,04/25/2016 01:57:28 PM,07/31/2012 09:26:04 AM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/31/2012 10:02:26 AM,0 Block of LAPIDGE ST,SF,94110,B02,7,5422,3,3,3,false,Fire,1,INVESTIGATION,14,6,8,Mission,"(37.760846425159, -122.422403820974)",122130100-AR1 +120400126,E29,12013285,Electrical Hazard,02/09/2012,02/09/2012,02/09/2012 11:14:23 AM,02/09/2012 11:15:49 AM,02/09/2012 11:16:04 AM,02/09/2012 11:16:12 AM,02/09/2012 11:20:41 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 12:09:21 PM,600 Block of KANSAS ST,SF,94107,B02,37,2455,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7615275000671, -122.403300396468)",120400126-E29 +112920377,E41,11097049,Medical Incident,10/19/2011,10/19/2011,10/19/2011 11:12:59 PM,10/19/2011 11:14:10 PM,10/19/2011 11:14:25 PM,10/19/2011 11:15:23 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/19/2011 11:16:04 PM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,false,,1,ENGINE,3,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",112920377-E41 +112700039,E32,11089116,Medical Incident,09/27/2011,09/26/2011,09/27/2011 05:38:11 AM,09/27/2011 05:40:13 AM,09/27/2011 05:40:50 AM,09/27/2011 05:42:37 AM,09/27/2011 05:45:16 AM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/27/2011 06:03:09 AM,200 Block of CHENERY ST,SF,94131,B06,32,8113,2,2,2,true,,1,ENGINE,1,6,8,Glen Park,"(37.7377199867519, -122.426819638194)",112700039-E32 +103350054,81,10107080,Medical Incident,12/01/2010,11/30/2010,12/01/2010 05:48:06 AM,12/01/2010 05:49:23 AM,12/01/2010 05:49:57 AM,12/01/2010 05:50:46 AM,12/01/2010 05:54:14 AM,12/01/2010 06:33:16 AM,12/01/2010 06:39:13 AM,Code 2 Transport,12/01/2010 07:06:52 AM,1700 Block of NOE ST,SF,94131,B06,26,5573,3,2,2,true,,1,MEDIC,1,6,8,Glen Park,"(37.7411238421841, -122.43088351415)",103350054-81 +160892880,63,16035430,Medical Incident,03/29/2016,03/29/2016,03/29/2016 05:31:06 PM,03/29/2016 05:33:05 PM,03/29/2016 05:33:43 PM,03/29/2016 05:34:08 PM,03/29/2016 05:41:16 PM,03/29/2016 06:03:53 PM,03/29/2016 06:25:39 PM,Code 2 Transport,03/29/2016 06:55:14 PM,100 Block of CAINE AVE,San Francisco,94112,B09,33,8325,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7157481523614, -122.451744181527)",160892880-63 +120510031,T19,12016736,Citizen Assist / Service Call,02/20/2012,02/19/2012,02/20/2012 02:22:59 AM,02/20/2012 02:24:55 AM,02/20/2012 02:25:39 AM,02/20/2012 02:27:54 AM,02/20/2012 02:33:03 AM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Fire,02/20/2012 03:05:47 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",120510031-T19 +110760423,87,11025178,Medical Incident,03/17/2011,03/17/2011,03/17/2011 11:22:33 PM,03/17/2011 11:23:49 PM,03/17/2011 11:24:03 PM,03/17/2011 11:24:33 PM,03/17/2011 11:32:38 PM,03/17/2011 11:44:18 PM,03/17/2011 11:57:46 PM,Code 2 Transport,03/18/2011 12:32:23 AM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",110760423-87 +160291301,79,16011406,Medical Incident,01/29/2016,01/29/2016,01/29/2016 11:02:16 AM,01/29/2016 11:03:25 AM,01/29/2016 11:04:09 AM,01/29/2016 11:04:17 AM,01/29/2016 11:12:29 AM,01/29/2016 11:19:02 AM,01/29/2016 11:25:20 AM,Code 2 Transport,01/29/2016 11:44:39 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160291301-79 +132990147,E21,13101550,Medical Incident,10/26/2013,10/26/2013,10/26/2013 10:24:21 AM,10/26/2013 10:25:41 AM,10/26/2013 10:27:34 AM,10/26/2013 10:28:15 AM,10/26/2013 10:31:29 AM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/26/2013 10:39:34 AM,2100 Block of GROVE ST,SF,94117,B05,21,4535,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7741989625507, -122.451998918385)",132990147-E21 +111990220,E17,11065666,Outside Fire,07/18/2011,07/18/2011,07/18/2011 02:34:42 PM,07/18/2011 02:35:49 PM,07/18/2011 02:38:42 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Fire,07/18/2011 02:46:52 PM,900 Block of INNES AVE,SF,94124,B10,25,6632,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7327383183604, -122.377183549255)",111990220-E17 +102960063,E44,10094331,Medical Incident,10/23/2010,10/22/2010,10/23/2010 05:05:23 AM,10/23/2010 05:07:07 AM,10/23/2010 05:07:26 AM,10/23/2010 05:09:36 AM,10/23/2010 05:11:15 AM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 05:25:32 AM,1000 Block of GIRARD ST,SF,94134,B10,44,6277,3,3,3,true,,1,ENGINE,1,10,10,Portola,"(37.7195653938725, -122.401416634791)",102960063-E44 +131840211,B10,13062711,Medical Incident,07/03/2013,07/03/2013,07/03/2013 02:08:24 PM,07/03/2013 02:08:24 PM,07/03/2013 02:08:24 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Other,07/03/2013 02:16:27 PM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7445838881586, -122.399489023505)",131840211-B10 +111200256,RC3,11039638,Medical Incident,04/30/2011,04/30/2011,04/30/2011 03:44:28 PM,04/30/2011 03:45:12 PM,04/30/2011 03:45:41 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 03:59:43 PM,MISSION ST/GENEVA AV,SF,94112,B09,43,6175,3,3,3,true,,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",111200256-RC3 +160790348,75,16031287,Medical Incident,03/19/2016,03/18/2016,03/19/2016 02:36:36 AM,03/19/2016 02:36:36 AM,03/19/2016 02:36:54 AM,03/19/2016 02:38:21 AM,03/19/2016 02:55:41 AM,03/19/2016 03:10:32 AM,03/19/2016 03:37:54 AM,Code 2 Transport,03/19/2016 04:38:12 AM,100 Block of RAE AVE,San Francisco,94112,B09,33,8347,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7110981375943, -122.449419273523)",160790348-75 +111200288,95,11039669,Medical Incident,04/30/2011,04/30/2011,04/30/2011 05:27:47 PM,04/30/2011 05:29:54 PM,04/30/2011 05:30:04 PM,04/30/2011 05:30:19 PM,04/30/2011 05:33:27 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 05:34:37 PM,VALENCIA ST/BROSNAN ST,SF,94103,B02,36,5126,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7687541449843, -122.422258156194)",111200288-95 +160753138,KM12,16029838,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:20:19 PM,03/15/2016 06:20:49 PM,03/15/2016 06:21:01 PM,03/15/2016 06:21:46 PM,03/15/2016 06:32:36 PM,03/15/2016 06:37:12 PM,03/15/2016 07:04:47 PM,Code 2 Transport,03/15/2016 07:22:12 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160753138-KM12 +132400135,RC2,13080918,Medical Incident,08/28/2013,08/28/2013,08/28/2013 11:02:56 AM,08/28/2013 11:03:45 AM,08/28/2013 11:04:08 AM,08/28/2013 11:04:44 AM,08/28/2013 11:07:03 AM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/28/2013 11:49:57 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",132400135-RC2 +133220019,E29,13109211,Medical Incident,11/18/2013,11/17/2013,11/18/2013 01:27:27 AM,11/18/2013 01:28:38 AM,11/18/2013 01:29:53 AM,11/18/2013 01:32:14 AM,11/18/2013 01:33:19 AM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/18/2013 01:47:40 AM,700 Block of KANSAS ST,SF,94107,B10,37,2522,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7602504316626, -122.403178548853)",133220019-E29 +123320262,RS1,12110424,Medical Incident,11/27/2012,11/27/2012,11/27/2012 05:33:14 PM,11/27/2012 05:33:47 PM,11/27/2012 05:34:06 PM,11/27/2012 05:35:06 PM,11/27/2012 05:39:23 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/27/2012 05:43:50 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",123320262-RS1 +132010207,E07,13068181,Medical Incident,07/20/2013,07/20/2013,07/20/2013 01:50:18 PM,07/20/2013 01:52:08 PM,07/20/2013 02:00:45 PM,07/20/2013 02:02:02 PM,07/20/2013 02:08:21 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 02:14:07 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",132010207-E07 +131000071,85,13033512,Medical Incident,04/10/2013,04/09/2013,04/10/2013 07:40:15 AM,04/10/2013 07:40:54 AM,04/10/2013 07:41:13 AM,04/10/2013 07:41:29 AM,04/10/2013 07:47:10 AM,04/10/2013 08:02:13 AM,04/10/2013 08:12:57 AM,Code 2 Transport,04/10/2013 08:42:11 AM,1600 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7752450450943, -122.443780098911)",131000071-85 +123110180,E08,12103474,Alarms,11/06/2012,11/06/2012,11/06/2012 12:10:15 PM,11/06/2012 12:10:15 PM,11/06/2012 12:10:20 PM,11/06/2012 12:12:12 PM,11/06/2012 12:13:08 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Fire,11/06/2012 12:18:40 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,true,Alarm,1,ENGINE,2,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",123110180-E08 +133230393,87,13109827,Medical Incident,11/19/2013,11/19/2013,11/19/2013 09:30:04 PM,11/19/2013 09:30:41 PM,11/19/2013 10:00:28 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,04/25/2016 01:49:41 PM,QUESADA AV/3RD ST,SF,94124,B10,17,6535,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7332232631153, -122.391244493226)",133230393-87 +122740092,AM02,12090307,Medical Incident,09/30/2012,09/30/2012,09/30/2012 08:43:35 AM,09/30/2012 08:47:07 AM,09/30/2012 08:47:19 AM,09/30/2012 08:48:24 AM,09/30/2012 08:56:53 AM,09/30/2012 09:05:59 AM,09/30/2012 09:22:23 AM,Code 2 Transport,09/30/2012 09:48:30 AM,0 Block of 1ST ST,SF,94105,B03,13,2143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7898688685777, -122.397805556033)",122740092-AM02 +160301707,65,16011778,Medical Incident,01/30/2016,01/30/2016,01/30/2016 12:03:09 PM,01/30/2016 12:04:19 PM,01/30/2016 12:04:45 PM,01/30/2016 12:05:01 PM,01/30/2016 12:09:52 PM,01/30/2016 12:30:36 PM,01/30/2016 12:35:23 PM,Code 2 Transport,01/30/2016 01:28:21 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160301707-65 +120640123,RS2,12021090,Structure Fire,03/04/2012,03/04/2012,03/04/2012 09:31:31 AM,03/04/2012 09:35:55 AM,03/04/2012 09:36:03 AM,03/04/2012 09:37:09 AM,03/04/2012 09:40:05 AM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Other,03/04/2012 09:40:46 AM,1800 Block of 25TH ST,SF,94107,B10,37,2615,3,3,3,false,Fire,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7521976465641, -122.397477711041)",120640123-RS2 +113530207,AM08,11117216,Medical Incident,12/19/2011,12/19/2011,12/19/2011 01:58:45 PM,12/19/2011 02:00:32 PM,12/19/2011 02:01:20 PM,12/19/2011 02:02:32 PM,12/19/2011 02:09:42 PM,12/19/2011 02:25:42 PM,12/19/2011 02:38:38 PM,Code 2 Transport,12/19/2011 03:16:28 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,1,1,2,false,,1,PRIVATE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",113530207-AM08 +132720282,E07,13092533,Outside Fire,09/29/2013,09/29/2013,09/29/2013 05:19:16 PM,09/29/2013 05:21:17 PM,09/29/2013 05:22:15 PM,09/29/2013 05:23:23 PM,09/29/2013 05:24:47 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 05:32:46 PM,ENTERPRISE ST/FOLSOM ST,SF,94110,B02,7,5237,3,3,3,true,Fire,1,ENGINE,1,2,9,Mission,"(37.7647052999236, -122.415250650143)",132720282-E07 +140900280,83,14030384,Medical Incident,03/31/2014,03/31/2014,03/31/2014 06:38:32 PM,03/31/2014 06:38:47 PM,03/31/2014 06:39:42 PM,03/31/2014 06:40:07 PM,03/31/2014 06:49:21 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Against Medical Advice,03/31/2014 07:18:40 PM,KANSAS ST/15TH ST,SAN FRANCISCO,94103,B02,29,2353,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission Bay,"(37.7673163648446, -122.403759537883)",140900280-83 +132550137,T13,13086145,Fuel Spill,09/12/2013,09/12/2013,09/12/2013 10:55:31 AM,09/12/2013 10:57:45 AM,09/12/2013 10:57:58 AM,09/12/2013 11:00:20 AM,09/12/2013 11:01:42 AM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 11:09:56 AM,500 Block of WASHINGTON ST,SF,94111,B01,13,1211,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7956190455503, -122.403039422993)",132550137-T13 +121270352,89,12042426,Medical Incident,05/06/2012,05/06/2012,05/06/2012 10:28:40 PM,05/06/2012 10:28:42 PM,05/06/2012 10:28:58 PM,05/06/2012 10:29:08 PM,05/06/2012 10:32:39 PM,05/06/2012 10:55:12 PM,04/25/2016 01:58:48 PM,Code 2 Transport,05/06/2012 11:14:58 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",121270352-89 +130240367,77,13008440,Medical Incident,01/24/2013,01/24/2013,01/24/2013 08:31:58 PM,01/24/2013 08:35:06 PM,01/24/2013 08:35:36 PM,01/24/2013 08:35:49 PM,01/24/2013 08:45:00 PM,01/24/2013 08:55:14 PM,01/24/2013 09:04:22 PM,Code 2 Transport,01/24/2013 09:40:28 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130240367-77 +130730385,E06,13024518,Structure Fire,03/14/2013,03/14/2013,03/14/2013 11:55:07 PM,03/14/2013 11:55:07 PM,03/14/2013 11:55:19 PM,03/14/2013 11:56:40 PM,03/14/2013 11:58:58 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Fire,03/14/2013 11:59:35 PM,15TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7665395771344, -122.422043813368)",130730385-E06 +120240310,E44,12008212,Medical Incident,01/24/2012,01/24/2012,01/24/2012 09:35:32 PM,01/24/2012 09:36:08 PM,01/24/2012 09:36:22 PM,01/24/2012 09:37:22 PM,01/24/2012 09:40:06 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/24/2012 09:54:25 PM,100 Block of GILLETTE AVE,SF,94134,B10,44,6273,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7107068525159, -122.396661914568)",120240310-E44 +160800280,AM20,16031667,Medical Incident,03/20/2016,03/19/2016,03/20/2016 01:39:07 AM,03/20/2016 01:40:13 AM,03/20/2016 01:40:28 AM,03/20/2016 01:41:06 AM,03/20/2016 01:50:16 AM,03/20/2016 03:29:07 AM,03/20/2016 03:29:10 AM,Code 2 Transport,03/20/2016 05:02:40 AM,100 Block of 3RD ST,San Francisco,94103,B03,1,2177,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",160800280-AM20 +130400302,E35,13013770,Medical Incident,02/09/2013,02/09/2013,02/09/2013 06:44:16 PM,02/09/2013 06:45:50 PM,02/09/2013 06:47:16 PM,02/09/2013 06:48:25 PM,02/09/2013 06:50:47 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/09/2013 06:51:07 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",130400302-E35 +110130367,AP,11004477,Other,01/13/2011,01/13/2011,01/13/2011 09:17:29 PM,01/13/2011 09:17:29 PM,01/13/2011 09:17:29 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Fire,01/13/2011 09:21:07 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110130367-AP +121120212,96,12037152,Medical Incident,04/21/2012,04/21/2012,04/21/2012 12:43:47 PM,04/21/2012 12:43:47 PM,04/21/2012 12:44:00 PM,04/21/2012 12:44:10 PM,04/21/2012 01:03:30 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Patient Declined Transport,04/21/2012 01:21:55 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",121120212-96 +121990196,E01,12066133,Medical Incident,07/17/2012,07/17/2012,07/17/2012 01:16:28 PM,07/17/2012 01:17:22 PM,07/17/2012 01:17:31 PM,07/17/2012 01:18:37 PM,07/17/2012 01:21:16 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 01:27:56 PM,500 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7800574377607, -122.408673540372)",121990196-E01 +110400266,B02,11013303,Structure Fire,02/09/2011,02/09/2011,02/09/2011 03:49:03 PM,02/09/2011 03:49:03 PM,02/09/2011 03:49:15 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 03:51:54 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,,1,CHIEF,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",110400266-B02 +140180192,E36,14006185,Structure Fire,01/18/2014,01/18/2014,01/18/2014 12:20:02 PM,01/18/2014 12:20:02 PM,01/18/2014 12:20:17 PM,01/18/2014 12:20:35 PM,01/18/2014 12:20:57 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/18/2014 12:21:40 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7741251002903, -122.418810211803)",140180192-E36 +133470394,E12,13117926,Medical Incident,12/13/2013,12/13/2013,12/13/2013 10:07:40 PM,12/13/2013 10:09:26 PM,12/13/2013 10:10:34 PM,12/13/2013 10:11:46 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 10:12:53 PM,HAIGHT ST/MASONIC AV,SF,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",133470394-E12 +121910308,77,12063700,Medical Incident,07/09/2012,07/09/2012,07/09/2012 07:40:55 PM,07/09/2012 07:41:50 PM,07/09/2012 07:42:10 PM,07/09/2012 07:42:21 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,04/25/2016 01:57:48 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",121910308-77 +160771185,67,16030511,Medical Incident,03/17/2016,03/17/2016,03/17/2016 10:10:09 AM,03/17/2016 10:13:06 AM,03/17/2016 10:14:00 AM,03/17/2016 10:14:50 AM,03/17/2016 10:26:09 AM,03/17/2016 10:44:42 AM,03/17/2016 10:49:19 AM,Code 2 Transport,03/17/2016 11:32:31 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160771185-67 +103610004,E41,10115654,Medical Incident,12/27/2010,12/26/2010,12/27/2010 12:16:24 AM,12/27/2010 12:17:51 AM,12/27/2010 12:18:13 AM,12/27/2010 12:20:05 AM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/27/2010 12:21:11 AM,800 Block of BUSH ST,SF,94108,B01,41,1446,2,3,3,false,,1,ENGINE,2,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",103610004-E41 +133600165,KM10,13122333,Medical Incident,12/26/2013,12/26/2013,12/26/2013 01:09:42 PM,12/26/2013 01:10:16 PM,12/26/2013 01:11:12 PM,12/26/2013 01:11:51 PM,12/26/2013 01:17:45 PM,12/26/2013 01:36:48 PM,12/26/2013 01:55:28 PM,Code 2 Transport,12/26/2013 02:44:27 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",133600165-KM10 +131860038,68,13063309,Medical Incident,07/05/2013,07/04/2013,07/05/2013 02:20:57 AM,07/05/2013 02:21:57 AM,07/05/2013 02:22:35 AM,07/05/2013 02:24:26 AM,07/05/2013 02:32:11 AM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/05/2013 02:32:32 AM,5100 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7458165668766, -122.44007828523)",131860038-68 +110140009,RC3,11004506,Medical Incident,01/14/2011,01/13/2011,01/14/2011 12:30:26 AM,01/14/2011 12:31:30 AM,01/14/2011 12:32:07 AM,01/14/2011 12:34:02 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 12:39:59 AM,1700 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",110140009-RC3 +131380415,E29,13046840,Outside Fire,05/18/2013,05/18/2013,05/18/2013 11:56:01 PM,05/18/2013 11:57:21 PM,05/18/2013 11:57:38 PM,05/18/2013 11:59:01 PM,05/19/2013 12:00:28 AM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,No Merit,05/19/2013 12:04:01 AM,BRYANT ST/MARIPOSA ST,SF,94110,B02,29,5242,3,3,3,true,Fire,1,ENGINE,1,2,9,Mission,"(37.7630293338155, -122.410244115777)",131380415-E29 +160042347,74,16001662,Medical Incident,01/04/2016,01/04/2016,01/04/2016 03:42:21 PM,01/04/2016 03:44:03 PM,01/04/2016 03:44:21 PM,01/04/2016 03:44:29 PM,01/04/2016 04:04:44 PM,01/04/2016 04:14:54 PM,01/04/2016 04:22:17 PM,Code 2 Transport,01/04/2016 05:09:18 PM,700 Block of 21ST AVE,San Francisco,94121,B07,14,7167,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7736958053498, -122.480041380237)",160042347-74 +103360226,E44,10107519,Other,12/02/2010,12/02/2010,12/02/2010 02:45:59 PM,12/02/2010 02:46:32 PM,12/02/2010 02:46:39 PM,12/02/2010 02:47:57 PM,12/02/2010 02:57:22 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Fire,12/02/2010 03:07:20 PM,1500 Block of VISITACION AVE,SF,94134,B09,44,6263,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7130646228669, -122.413927298726)",103360226-E44 +110820355,E01,11027082,Alarms,03/23/2011,03/23/2011,03/23/2011 08:44:38 PM,03/23/2011 08:45:10 PM,03/23/2011 08:45:26 PM,03/23/2011 08:45:52 PM,03/23/2011 08:48:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 08:52:57 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",110820355-E01 +132730261,85,13092828,Medical Incident,09/30/2013,09/30/2013,09/30/2013 03:33:39 PM,09/30/2013 03:34:37 PM,09/30/2013 03:34:55 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,04/25/2016 01:50:30 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",132730261-85 +102660299,E01,10084270,Medical Incident,09/23/2010,09/23/2010,09/23/2010 07:01:35 PM,09/23/2010 07:03:25 PM,09/23/2010 07:04:25 PM,09/23/2010 07:05:47 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 07:23:49 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",102660299-E01 +122600233,96,12085990,Medical Incident,09/16/2012,09/16/2012,09/16/2012 05:19:14 PM,09/16/2012 05:19:35 PM,09/16/2012 05:21:35 PM,09/16/2012 05:21:44 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,No Merit,09/16/2012 05:42:34 PM,1800 Block of WALLER ST,SF,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",122600233-96 +120360196,88,12012005,Medical Incident,02/05/2012,02/05/2012,02/05/2012 12:46:00 PM,02/05/2012 12:48:18 PM,02/05/2012 12:50:19 PM,02/05/2012 12:50:50 PM,02/05/2012 12:54:41 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,No Merit,02/05/2012 01:00:17 PM,1700 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7694700718007, -122.415525556609)",120360196-88 +140180161,94,14006160,Medical Incident,01/18/2014,01/18/2014,01/18/2014 10:46:17 AM,01/18/2014 10:47:31 AM,01/18/2014 10:47:43 AM,01/18/2014 10:47:59 AM,01/18/2014 10:53:06 AM,01/18/2014 11:02:37 AM,01/18/2014 11:22:52 AM,Code 2 Transport,01/18/2014 11:32:59 AM,300 Block of POTRERO AVE,SF,94103,B02,29,2416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7651394094816, -122.407407963885)",140180161-94 +160813319,72,16032329,Medical Incident,03/21/2016,03/21/2016,03/21/2016 07:18:09 PM,03/21/2016 07:20:48 PM,03/21/2016 07:21:22 PM,03/21/2016 07:21:32 PM,03/21/2016 07:44:20 PM,03/21/2016 07:54:10 PM,03/21/2016 08:22:47 PM,Code 2 Transport,03/21/2016 09:12:32 PM,300 Block of CHINA BASIN ST,San Francisco,94158,B03,4,2231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.772025294652, -122.38824254537)",160813319-72 +133380090,94,13114474,Medical Incident,12/04/2013,12/04/2013,12/04/2013 09:28:57 AM,12/04/2013 09:32:43 AM,12/04/2013 09:34:29 AM,12/04/2013 09:34:53 AM,12/04/2013 09:41:42 AM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Patient Declined Transport,12/04/2013 10:22:56 AM,1200 Block of 12TH AVE,SF,94122,B08,22,7346,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7648362657127, -122.469656987954)",133380090-94 +131730248,T14,13058762,Structure Fire,06/22/2013,06/22/2013,06/22/2013 04:37:59 PM,06/22/2013 04:38:02 PM,06/22/2013 04:38:10 PM,06/22/2013 04:39:59 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/22/2013 04:41:16 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",131730248-T14 +122500089,KM02,12082589,Medical Incident,09/06/2012,09/06/2012,09/06/2012 09:18:13 AM,09/06/2012 09:18:54 AM,09/06/2012 09:19:27 AM,09/06/2012 09:19:38 AM,09/06/2012 09:24:25 AM,09/06/2012 09:43:18 AM,09/06/2012 09:51:22 AM,Code 2 Transport,09/06/2012 10:27:47 AM,3100 Block of CALIFORNIA ST,SF,94115,B04,10,4336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7874042492839, -122.446108408104)",122500089-KM02 +122560336,T17,12084783,Structure Fire,09/12/2012,09/12/2012,09/12/2012 10:30:26 PM,09/12/2012 10:31:45 PM,09/12/2012 10:32:17 PM,09/12/2012 10:33:44 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 10:52:43 PM,1200 Block of INGALLS ST,SF,94124,B10,17,6572,3,3,3,false,Fire,1,TRUCK,7,10,10,Bayview Hunters Point,"(37.7305663224371, -122.381859307677)",122560336-T17 +160270304,KM07,16010533,Medical Incident,01/27/2016,01/26/2016,01/27/2016 03:47:13 AM,01/27/2016 03:48:54 AM,01/27/2016 03:49:44 AM,01/27/2016 03:50:07 AM,01/27/2016 03:57:11 AM,01/27/2016 04:21:33 AM,01/27/2016 04:32:58 AM,Code 2 Transport,01/27/2016 04:53:47 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160270304-KM07 +160063696,KM03,16002621,Medical Incident,01/06/2016,01/06/2016,01/06/2016 10:26:11 PM,01/06/2016 10:27:16 PM,01/06/2016 10:27:25 PM,01/06/2016 10:28:58 PM,01/06/2016 10:37:28 PM,01/06/2016 10:45:35 PM,01/06/2016 11:01:44 PM,Code 2 Transport,01/06/2016 11:36:00 PM,1200 Block of GRANT AVE,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7986417020523, -122.407109258598)",160063696-KM03 +122130055,93,12070602,Citizen Assist / Service Call,07/31/2012,07/30/2012,07/31/2012 05:38:24 AM,07/31/2012 05:39:38 AM,07/31/2012 05:40:48 AM,07/31/2012 05:41:23 AM,07/31/2012 05:49:51 AM,07/31/2012 06:20:51 AM,07/31/2012 06:39:36 AM,Code 2 Transport,07/31/2012 07:07:58 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Alarm,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",122130055-93 +160190964,AM02,16007551,Medical Incident,01/19/2016,01/19/2016,01/19/2016 09:15:25 AM,01/19/2016 09:16:48 AM,01/19/2016 09:18:12 AM,01/19/2016 09:19:34 AM,01/19/2016 09:48:36 AM,01/19/2016 09:48:38 AM,01/19/2016 10:06:25 AM,Code 2 Transport,01/19/2016 10:43:23 AM,1100 Block of STEINER ST,San Francisco,94115,B05,5,3625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7798119295256, -122.433758569735)",160190964-AM02 +123580041,54,12119727,Medical Incident,12/23/2012,12/22/2012,12/23/2012 03:33:23 AM,12/23/2012 03:36:26 AM,12/23/2012 03:36:36 AM,12/23/2012 03:52:14 AM,12/23/2012 03:57:27 AM,12/23/2012 04:17:48 AM,04/25/2016 01:55:10 PM,Code 2 Transport,12/23/2012 04:18:22 AM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,MEDIC,4,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",123580041-54 +123340241,T01,12111015,Alarms,11/29/2012,11/29/2012,11/29/2012 03:57:12 PM,11/29/2012 03:59:07 PM,11/29/2012 03:59:20 PM,11/29/2012 04:01:25 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/29/2012 04:02:37 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7868930732367, -122.408063130974)",123340241-T01 +140990376,E10,14033584,Medical Incident,04/09/2014,04/09/2014,04/09/2014 09:19:38 PM,04/09/2014 09:20:32 PM,04/09/2014 09:20:41 PM,04/09/2014 09:21:43 PM,04/09/2014 09:24:01 PM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Code 2 Transport,04/09/2014 09:37:52 PM,300 Block of ARGUELLO BLVD,SAN FRANCISCO,94118,B07,10,7114,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7844395880636, -122.459158221689)",140990376-E10 +122370291,E35,12078607,Medical Incident,08/24/2012,08/24/2012,08/24/2012 07:23:49 PM,08/24/2012 07:24:50 PM,08/24/2012 07:25:11 PM,08/24/2012 07:26:53 PM,08/24/2012 07:29:23 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 07:29:32 PM,200 Block of FOLSOM ST,SF,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",122370291-E35 +120220268,E36,12007569,Medical Incident,01/22/2012,01/22/2012,01/22/2012 07:00:19 PM,01/22/2012 07:01:06 PM,01/22/2012 07:01:27 PM,01/22/2012 07:02:36 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/22/2012 07:02:58 PM,600 Block of VAN NESS AVE,SF,94102,B02,36,3164,E,1,2,true,Non Life-threatening,1,ENGINE,3,2,5,Western Addition,"(37.78147394156, -122.42068958116)",120220268-E36 +110890244,T08,11029436,Alarms,03/30/2011,03/30/2011,03/30/2011 03:18:31 PM,03/30/2011 03:19:30 PM,03/30/2011 03:19:40 PM,03/30/2011 03:21:18 PM,03/30/2011 03:21:59 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 03:32:11 PM,300 Block of 3RD ST,SF,94107,B03,1,2176,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7833526602624, -122.398485675312)",110890244-T08 +160251639,88,16009916,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:11:31 PM,01/25/2016 12:14:33 PM,01/25/2016 12:15:07 PM,01/25/2016 12:15:14 PM,01/25/2016 12:19:14 PM,01/25/2016 12:38:54 PM,01/25/2016 12:44:02 PM,Code 2 Transport,01/25/2016 01:30:26 PM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",160251639-88 +130730270,RS1,13024416,Traffic Collision,03/14/2013,03/14/2013,03/14/2013 05:22:28 PM,03/14/2013 05:22:54 PM,03/14/2013 05:23:21 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,04/25/2016 01:53:50 PM,CAPITOL AV/OCEAN AV,SF,94112,B09,15,8474,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,9,7,West of Twin Peaks,"(37.7245331724618, -122.459212802427)",130730270-RS1 +110070392,E11,11002503,Medical Incident,01/07/2011,01/07/2011,01/07/2011 10:20:20 PM,01/07/2011 10:20:42 PM,01/07/2011 10:20:56 PM,01/07/2011 10:22:37 PM,01/07/2011 10:25:22 PM,04/25/2016 02:06:42 PM,04/25/2016 02:06:42 PM,Other,01/07/2011 10:26:06 PM,3400 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,true,,1,ENGINE,2,6,9,Bernal Heights,"(37.741419043576, -122.422665047787)",110070392-E11 +120810173,T06,12026875,Medical Incident,03/21/2012,03/21/2012,03/21/2012 11:42:26 AM,03/21/2012 11:44:06 AM,03/21/2012 11:44:54 AM,03/21/2012 11:46:00 AM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 11:49:05 AM,14TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,8,Mission,"(37.7681396851482, -122.422199175206)",120810173-T06 +121300290,82,12043357,Medical Incident,05/09/2012,05/09/2012,05/09/2012 07:05:14 PM,05/09/2012 07:06:39 PM,05/09/2012 07:06:54 PM,05/09/2012 07:07:09 PM,05/09/2012 07:10:36 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,No Merit,05/09/2012 07:21:21 PM,0 Block of MASON ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",121300290-82 +160032275,AM16,16001268,Medical Incident,01/03/2016,01/03/2016,01/03/2016 05:00:03 PM,01/03/2016 05:00:20 PM,01/03/2016 05:01:48 PM,01/03/2016 05:06:39 PM,01/03/2016 05:08:43 PM,01/03/2016 05:22:54 PM,01/03/2016 05:40:39 PM,Code 2 Transport,01/03/2016 06:14:00 PM,400 Block of 10TH ST,San Francisco,94103,B02,29,2344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7709248562482, -122.410555957263)",160032275-AM16 +140240058,87,14008071,Medical Incident,01/24/2014,01/23/2014,01/24/2014 05:32:04 AM,01/24/2014 05:32:54 AM,01/24/2014 05:33:48 AM,01/24/2014 05:35:34 AM,01/24/2014 05:39:45 AM,01/24/2014 05:51:17 AM,01/24/2014 05:53:57 AM,Code 3 Transport,01/24/2014 06:33:05 AM,1500 Block of CALIFORNIA ST,SF,94109,B04,41,1635,,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",140240058-87 +110820293,T17,11027030,Structure Fire,03/23/2011,03/23/2011,03/23/2011 04:51:15 PM,03/23/2011 04:51:16 PM,03/23/2011 04:52:02 PM,03/23/2011 04:52:55 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 04:55:47 PM,ARLETA AV/DELTA ST,SF,94134,B09,44,6312,3,3,3,false,,1,TRUCK,2,9,10,Visitacion Valley,"(37.7144789564786, -122.40889553475)",110820293-T17 +110450285,E03,11015008,Medical Incident,02/14/2011,02/14/2011,02/14/2011 06:10:01 PM,02/14/2011 06:11:52 PM,02/14/2011 06:12:13 PM,02/14/2011 06:13:21 PM,02/14/2011 06:15:35 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,No Merit,02/14/2011 06:17:51 PM,HYDE ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",110450285-E03 +111730328,E32,11057204,Medical Incident,06/22/2011,06/22/2011,06/22/2011 08:58:48 PM,06/22/2011 08:59:06 PM,06/22/2011 08:59:35 PM,06/22/2011 09:00:44 PM,06/22/2011 09:02:01 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,06/22/2011 09:12:44 PM,3400 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7408597419405, -122.423026769778)",111730328-E32 +113290042,KM04,11109046,Medical Incident,11/25/2011,11/24/2011,11/25/2011 05:14:48 AM,11/25/2011 05:16:08 AM,11/25/2011 05:17:14 AM,11/25/2011 05:18:09 AM,11/25/2011 05:21:55 AM,11/25/2011 05:33:40 AM,11/25/2011 05:36:38 AM,Code 2 Transport,11/25/2011 05:50:05 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",113290042-KM04 +160282158,86,16011127,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:29:29 PM,01/28/2016 02:30:17 PM,01/28/2016 02:31:00 PM,01/28/2016 02:31:10 PM,01/28/2016 02:38:58 PM,01/28/2016 02:53:43 PM,01/28/2016 03:10:17 PM,Code 2 Transport,01/28/2016 04:18:22 PM,700 Block of VICTORIA ST,San Francisco,94127,B09,15,8443,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7241304877603, -122.464177585076)",160282158-86 +160331547,79,16012972,Medical Incident,02/02/2016,02/02/2016,02/02/2016 12:19:09 PM,02/02/2016 12:24:00 PM,02/02/2016 12:25:29 PM,02/02/2016 12:25:51 PM,02/02/2016 12:33:10 PM,02/02/2016 12:51:11 PM,02/02/2016 12:52:03 PM,Code 3 Transport,02/02/2016 01:40:19 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",160331547-79 +122680368,94,12088697,Medical Incident,09/24/2012,09/24/2012,09/24/2012 10:34:34 PM,09/24/2012 10:35:00 PM,09/24/2012 10:35:08 PM,09/24/2012 10:36:36 PM,09/24/2012 10:39:49 PM,09/24/2012 10:57:14 PM,09/24/2012 11:06:55 PM,Code 2 Transport,09/24/2012 11:22:37 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7864070156063, -122.408499456394)",122680368-94 +122730053,94,12089931,Medical Incident,09/29/2012,09/28/2012,09/29/2012 02:40:22 AM,09/29/2012 02:40:56 AM,09/29/2012 02:41:16 AM,09/29/2012 02:41:30 AM,09/29/2012 03:04:50 AM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Patient Declined Transport,09/29/2012 03:29:35 AM,STOCKTON ST/GREEN ST,SF,94133,B01,28,1266,2,2,2,false,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7994898187705, -122.40901437954)",122730053-94 +122290168,81,12075864,Medical Incident,08/16/2012,08/16/2012,08/16/2012 12:06:26 PM,08/16/2012 12:08:06 PM,08/16/2012 12:08:50 PM,08/16/2012 12:09:23 PM,08/16/2012 12:21:31 PM,08/16/2012 12:31:03 PM,08/16/2012 12:34:42 PM,Code 2 Transport,08/16/2012 01:07:19 PM,1800 Block of SUTTER ST,SF,94115,B04,38,3433,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,4,5,Pacific Heights,"(37.7864581478384, -122.43077642338)",122290168-81 +113210110,AM16,11106574,Medical Incident,11/17/2011,11/17/2011,11/17/2011 09:37:36 AM,11/17/2011 09:38:45 AM,11/17/2011 09:39:09 AM,11/17/2011 09:39:50 AM,11/17/2011 09:50:49 AM,11/17/2011 10:05:32 AM,11/17/2011 10:35:55 AM,Code 2 Transport,11/17/2011 11:18:18 AM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,E,3,false,,1,PRIVATE,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",113210110-AM16 +160082254,75,16003289,Medical Incident,01/08/2016,01/08/2016,01/08/2016 03:02:21 PM,01/08/2016 03:02:53 PM,01/08/2016 03:05:20 PM,01/08/2016 03:05:20 PM,01/08/2016 03:07:14 PM,01/08/2016 03:21:01 PM,01/08/2016 03:26:40 PM,Code 3 Transport,01/08/2016 04:25:12 PM,POST ST/TAYLOR ST,San Francisco,94102,B01,3,1451,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7878721676702, -122.411699233294)",160082254-75 +120940027,77,12031024,Medical Incident,04/03/2012,04/02/2012,04/03/2012 03:03:43 AM,04/03/2012 03:06:29 AM,04/03/2012 03:06:48 AM,04/03/2012 03:06:56 AM,04/03/2012 03:12:21 AM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,No Merit,04/03/2012 03:19:57 AM,3400 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7550983758636, -122.42346407777)",120940027-77 +160392736,71,16015726,Medical Incident,02/08/2016,02/08/2016,02/08/2016 05:26:04 PM,02/08/2016 05:28:04 PM,02/08/2016 05:28:13 PM,02/08/2016 05:28:29 PM,02/08/2016 05:43:47 PM,02/08/2016 05:51:46 PM,02/08/2016 06:12:13 PM,Code 2 Transport,02/08/2016 06:44:26 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7191183780763, -122.480484610594)",160392736-71 +113370388,E21,11111837,Structure Fire,12/03/2011,12/03/2011,12/03/2011 11:36:42 PM,12/03/2011 11:38:11 PM,12/03/2011 11:38:43 PM,12/03/2011 11:40:03 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/03/2011 11:43:45 PM,500 Block of PAGE ST,SF,94117,B05,6,3531,3,3,3,false,,1,ENGINE,8,2,5,Hayes Valley,"(37.7731977871942, -122.429820520759)",113370388-E21 +121150256,E33,12038205,Medical Incident,04/24/2012,04/24/2012,04/24/2012 05:13:26 PM,04/24/2012 05:16:04 PM,04/24/2012 05:16:18 PM,04/24/2012 05:18:06 PM,04/24/2012 05:21:33 PM,04/25/2016 01:59:01 PM,04/25/2016 01:59:01 PM,Other,04/24/2012 05:40:43 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",121150256-E33 +110440340,E36,11014762,Medical Incident,02/13/2011,02/13/2011,02/13/2011 10:04:30 PM,02/13/2011 10:05:36 PM,02/13/2011 10:05:55 PM,02/13/2011 10:07:06 PM,02/13/2011 10:09:03 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/13/2011 10:30:54 PM,300 Block of 11TH ST,SF,94103,B02,36,5112,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7712855259531, -122.413204267102)",110440340-E36 +121750284,KM05,12058193,Medical Incident,06/23/2012,06/23/2012,06/23/2012 05:07:24 PM,06/23/2012 05:07:48 PM,06/23/2012 05:08:15 PM,06/23/2012 05:08:50 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 05:16:30 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121750284-KM05 +112410028,E28,11079399,Structure Fire,08/29/2011,08/28/2011,08/29/2011 02:18:09 AM,08/29/2011 02:18:09 AM,08/29/2011 02:18:15 AM,08/29/2011 02:19:54 AM,08/29/2011 02:22:07 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Fire,08/29/2011 02:24:01 AM,JONES ST/CHESTNUT ST,SF,94133,B01,28,1515,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.8033479668451, -122.416510772611)",112410028-E28 +140600245,E01,14020310,Medical Incident,03/01/2014,03/01/2014,03/01/2014 03:58:34 PM,03/01/2014 03:58:53 PM,03/01/2014 04:01:31 PM,03/01/2014 04:01:31 PM,03/01/2014 04:03:42 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Code 2 Transport,03/01/2014 04:08:15 PM,NATOMA ST/6TH ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801620260598, -122.407691417119)",140600245-E01 +160403731,68,16016233,Medical Incident,02/09/2016,02/09/2016,02/09/2016 10:09:29 PM,02/09/2016 10:10:35 PM,02/09/2016 10:10:47 PM,02/09/2016 10:10:54 PM,02/09/2016 10:21:50 PM,02/09/2016 10:31:26 PM,02/09/2016 10:46:41 PM,Code 2 Transport,02/09/2016 11:18:51 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160403731-68 +120680359,AP,12022728,Other,03/08/2012,03/08/2012,03/08/2012 10:28:47 PM,03/08/2012 10:28:47 PM,03/08/2012 10:28:47 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Fire,03/08/2012 10:29:24 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120680359-AP +133630104,E41,13123239,Medical Incident,12/29/2013,12/29/2013,12/29/2013 09:39:13 AM,12/29/2013 09:40:11 AM,12/29/2013 09:40:30 AM,12/29/2013 09:41:11 AM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/29/2013 09:43:56 AM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",133630104-E41 +160173514,55,16007046,Structure Fire,01/17/2016,01/17/2016,01/17/2016 11:20:39 PM,01/17/2016 11:23:56 PM,01/17/2016 11:24:10 PM,01/17/2016 11:24:39 PM,01/17/2016 11:35:53 PM,01/17/2016 11:41:01 PM,01/17/2016 11:56:58 PM,Code 2 Transport,01/18/2016 12:25:27 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Alarm,1,MEDIC,10,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160173514-55 +122100035,B01,12069640,Explosion,07/28/2012,07/27/2012,07/28/2012 02:18:06 AM,07/28/2012 02:20:45 AM,07/28/2012 02:21:14 AM,07/28/2012 02:22:44 AM,07/28/2012 02:24:58 AM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Fire,07/28/2012 02:26:45 AM,1300 Block of PACIFIC AVE,SF,94109,B01,41,1565,3,3,3,false,Fire,1,CHIEF,2,1,3,Russian Hill,"(37.79570213146, -122.416839772953)",122100035-B01 +121450314,B09,12048250,Structure Fire,05/24/2012,05/24/2012,05/24/2012 07:34:51 PM,05/24/2012 07:37:50 PM,05/24/2012 07:38:42 PM,05/24/2012 07:39:12 PM,05/24/2012 07:43:04 PM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 07:46:11 PM,100 Block of DUBLIN ST,SF,94112,B09,43,6165,3,3,3,false,Fire,1,CHIEF,2,9,11,Excelsior,"(37.7178073238376, -122.42704025216)",121450314-B09 +121480123,KM10,12049063,Medical Incident,05/27/2012,05/27/2012,05/27/2012 10:05:15 AM,05/27/2012 10:06:50 AM,05/27/2012 10:08:21 AM,05/27/2012 10:08:54 AM,05/27/2012 10:15:29 AM,05/27/2012 10:44:12 AM,05/27/2012 10:50:23 AM,Code 2 Transport,05/27/2012 11:13:22 AM,400 Block of LARKIN ST,SF,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",121480123-KM10 +122630344,93,12087007,Medical Incident,09/19/2012,09/19/2012,09/19/2012 09:14:19 PM,09/19/2012 09:15:11 PM,09/19/2012 09:15:33 PM,09/19/2012 09:15:48 PM,09/19/2012 09:25:41 PM,09/19/2012 09:31:42 PM,09/19/2012 09:58:17 PM,Code 2 Transport,09/19/2012 09:19:33 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122630344-93 +131010190,KM06,13033951,Medical Incident,04/11/2013,04/11/2013,04/11/2013 12:31:35 PM,04/11/2013 12:32:26 PM,04/11/2013 12:32:48 PM,04/11/2013 12:33:44 PM,04/11/2013 12:40:23 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/11/2013 12:42:35 PM,700 Block of PRESIDIO AVE,SF,94115,B05,10,4366,E,2,2,false,Non Life-threatening,1,PRIVATE,4,5,2,Presidio Heights,"(37.7849123605726, -122.446266007624)",131010190-KM06 +131750099,RS1,13059313,Medical Incident,06/24/2013,06/24/2013,06/24/2013 09:31:43 AM,06/24/2013 09:33:59 AM,06/24/2013 09:35:01 AM,06/24/2013 09:36:12 AM,06/24/2013 09:38:30 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 09:38:42 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131750099-RS1 +133470191,E02,13117756,Fuel Spill,12/13/2013,12/13/2013,12/13/2013 01:22:30 PM,12/13/2013 01:26:17 PM,12/13/2013 01:26:39 PM,12/13/2013 01:28:47 PM,12/13/2013 01:31:03 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Fire,12/13/2013 01:39:51 PM,300 Block of POST ST,SF,94108,B01,1,1362,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7883420975425, -122.407575452565)",133470191-E02 +120940064,58,12031054,Medical Incident,04/03/2012,04/03/2012,04/03/2012 08:06:25 AM,04/03/2012 08:08:02 AM,04/03/2012 08:08:24 AM,04/03/2012 08:09:07 AM,04/03/2012 08:14:52 AM,04/03/2012 08:26:17 AM,04/03/2012 08:52:00 AM,Code 2 Transport,04/03/2012 09:00:42 AM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",120940064-58 +112310320,E17,11076399,Medical Incident,08/19/2011,08/19/2011,08/19/2011 09:16:52 PM,08/19/2011 09:18:01 PM,08/19/2011 09:18:15 PM,08/19/2011 09:19:16 PM,08/19/2011 09:21:10 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 09:28:20 PM,0 Block of HUDSON AVE,SF,94124,B10,17,6626,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324208265708, -122.379091692307)",112310320-E17 +111640186,54,11054129,Medical Incident,06/13/2011,06/13/2011,06/13/2011 12:48:49 PM,06/13/2011 12:49:54 PM,06/13/2011 12:50:27 PM,06/13/2011 12:51:08 PM,06/13/2011 01:01:11 PM,06/13/2011 01:28:16 PM,06/13/2011 01:39:45 PM,Code 3 Transport,06/13/2011 02:42:03 PM,1200 Block of CHESTNUT ST,SF,94109,B01,16,3133,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8023311264976, -122.423898591878)",111640186-54 +160452435,KM12,16018208,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 05:01:12 PM,02/14/2016 05:01:12 PM,02/14/2016 05:02:18 PM,02/14/2016 05:03:22 PM,02/14/2016 05:07:52 PM,02/14/2016 05:21:15 PM,02/14/2016 05:40:06 PM,Code 2 Transport,02/14/2016 06:15:58 PM,3RD AV/LINCOLN WY,San Francisco,94122,B05,12,7324,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7661657883675, -122.460016419093)",160452435-KM12 +123050251,E06,12101237,Alarms,10/31/2012,10/31/2012,10/31/2012 01:30:15 PM,10/31/2012 01:32:04 PM,10/31/2012 01:34:40 PM,10/31/2012 01:35:05 PM,10/31/2012 01:38:31 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/31/2012 01:43:52 PM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,3,3,true,Alarm,1,ENGINE,3,2,8,Mission,"(37.766322531621, -122.424723870424)",123050251-E06 +160140374,89,16005436,Medical Incident,01/14/2016,01/13/2016,01/14/2016 04:51:00 AM,01/14/2016 04:52:02 AM,01/14/2016 04:52:21 AM,01/14/2016 04:52:28 AM,01/14/2016 04:57:12 AM,01/14/2016 05:13:29 AM,01/14/2016 05:20:00 AM,Code 3 Transport,01/14/2016 05:38:52 AM,400 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7858304240068, -122.392540509434)",160140374-89 +160350758,85,16013716,Medical Incident,02/04/2016,02/04/2016,02/04/2016 08:12:17 AM,02/04/2016 08:12:17 AM,02/04/2016 08:12:36 AM,02/04/2016 08:12:37 AM,02/04/2016 08:16:39 AM,02/04/2016 08:25:52 AM,02/04/2016 08:34:49 AM,Code 3 Transport,02/04/2016 09:19:41 AM,CYRIL MAGNIN ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160350758-85 +113430390,E07,11113918,Medical Incident,12/09/2011,12/09/2011,12/09/2011 08:53:24 PM,12/09/2011 08:53:43 PM,12/09/2011 08:53:52 PM,12/09/2011 08:55:28 PM,12/09/2011 08:56:38 PM,04/25/2016 02:01:14 PM,04/25/2016 02:01:14 PM,Other,12/09/2011 09:01:28 PM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",113430390-E07 +160373541,52,16014899,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:12:46 PM,02/06/2016 08:14:47 PM,02/06/2016 08:18:11 PM,02/06/2016 08:18:19 PM,02/06/2016 08:32:48 PM,02/06/2016 08:46:32 PM,02/06/2016 08:51:57 PM,Code 2 Transport,02/06/2016 09:50:38 PM,300 Block of BAKER ST,San Francisco,94117,B05,21,4252,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7741100998058, -122.440947780365)",160373541-52 +122440338,E05,12080808,Outside Fire,08/31/2012,08/31/2012,08/31/2012 09:39:13 PM,08/31/2012 09:39:53 PM,08/31/2012 09:40:33 PM,08/31/2012 09:41:46 PM,08/31/2012 09:43:00 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Fire,08/31/2012 09:51:35 PM,GROVE ST/WEBSTER ST,SF,94117,B05,5,3533,3,3,3,true,Fire,1,ENGINE,1,2,5,Hayes Valley,"(37.7769760216356, -122.429686882502)",122440338-E05 +160883384,52,16035093,Medical Incident,03/28/2016,03/28/2016,03/28/2016 07:37:45 PM,03/28/2016 07:40:22 PM,03/28/2016 07:40:39 PM,03/28/2016 07:40:54 PM,03/28/2016 07:46:05 PM,03/28/2016 07:56:54 PM,03/28/2016 08:18:25 PM,Code 3 Transport,03/28/2016 08:53:42 PM,300 Block of 24TH AVE,San Francisco,94121,B07,14,7214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7830006442599, -122.483939034671)",160883384-52 +110470057,E44,11015444,Alarms,02/16/2011,02/15/2011,02/16/2011 06:39:30 AM,02/16/2011 06:41:02 AM,02/16/2011 06:41:24 AM,04/25/2016 02:06:04 PM,02/16/2011 06:42:53 AM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/16/2011 07:03:37 AM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",110470057-E44 +110350125,E01,11011453,Medical Incident,02/04/2011,02/04/2011,02/04/2011 09:49:00 AM,02/04/2011 09:51:02 AM,02/04/2011 09:51:47 AM,02/04/2011 09:52:46 AM,02/04/2011 09:55:30 AM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,04/25/2016 02:06:16 PM,MISSION ST/3RD ST,SF,94103,B03,1,2178,2,2,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",110350125-E01 +123460316,RS1,12115822,Medical Incident,12/11/2012,12/11/2012,12/11/2012 08:17:05 PM,12/11/2012 08:17:47 PM,12/11/2012 08:18:19 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 08:19:28 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7812234542945, -122.408928070797)",123460316-RS1 +160851613,56,16033753,Medical Incident,03/25/2016,03/25/2016,03/25/2016 12:05:06 PM,03/25/2016 12:06:40 PM,03/25/2016 12:07:37 PM,03/25/2016 12:10:32 PM,03/25/2016 12:28:42 PM,03/25/2016 12:41:36 PM,03/25/2016 01:07:39 PM,Code 2 Transport,03/25/2016 01:23:51 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160851613-56 +120400154,D2,12013310,Structure Fire,02/09/2012,02/09/2012,02/09/2012 12:19:15 PM,02/09/2012 12:20:55 PM,02/09/2012 12:21:23 PM,02/09/2012 12:22:11 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 12:27:58 PM,800 Block of 33RD AVE,SF,94121,B07,14,7243,3,3,3,false,Fire,1,CHIEF,8,7,1,Outer Richmond,"(37.7731148603785, -122.492763022617)",120400154-D2 +130040304,T19,13001448,Water Rescue,01/04/2013,01/04/2013,01/04/2013 04:55:16 PM,01/04/2013 04:57:12 PM,01/04/2013 04:57:40 PM,01/04/2013 04:59:13 PM,01/04/2013 05:03:49 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 05:14:34 PM,GREAT HY/SLOAT BL,SF,94132,B08,19,8713,3,3,3,true,,1,TRUCK,3,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",130040304-T19 +160711884,KM04,16028251,Medical Incident,03/11/2016,03/11/2016,03/11/2016 01:47:15 PM,03/11/2016 01:47:15 PM,03/11/2016 01:49:58 PM,03/11/2016 01:50:51 PM,03/11/2016 01:54:16 PM,03/11/2016 02:08:20 PM,03/11/2016 02:17:41 PM,Code 2 Transport,03/11/2016 02:49:54 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160711884-KM04 +160243104,75,16009667,Medical Incident,01/24/2016,01/24/2016,01/24/2016 07:56:50 PM,01/24/2016 07:59:02 PM,01/24/2016 07:59:19 PM,01/24/2016 07:59:23 PM,01/24/2016 08:12:05 PM,01/24/2016 08:43:01 PM,01/24/2016 08:48:48 PM,Code 2 Transport,01/24/2016 09:23:26 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160243104-75 +160322953,KM11,16012703,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:32:53 PM,02/01/2016 06:34:32 PM,02/01/2016 06:34:41 PM,02/01/2016 06:35:04 PM,02/01/2016 06:52:28 PM,02/01/2016 06:52:30 PM,02/01/2016 07:07:14 PM,Code 2 Transport,02/01/2016 07:30:55 PM,500 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6374,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,9,Bernal Heights,"(37.739324402545, -122.407138468032)",160322953-KM11 +113550022,67,11117743,Medical Incident,12/21/2011,12/20/2011,12/21/2011 02:27:57 AM,12/21/2011 02:30:45 AM,12/21/2011 02:31:05 AM,12/21/2011 02:31:45 AM,12/21/2011 02:41:45 AM,12/21/2011 02:53:25 AM,12/21/2011 02:57:32 AM,Code 2 Transport,12/21/2011 03:34:39 AM,400 Block of DUBOCE AVE,SF,94114,B02,6,3525,2,2,2,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",113550022-67 +102820063,T06,10089586,Structure Fire,10/09/2010,10/08/2010,10/09/2010 03:43:44 AM,10/09/2010 03:43:45 AM,10/09/2010 03:44:48 AM,10/09/2010 03:46:30 AM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/09/2010 03:47:16 AM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,false,,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",102820063-T06 +160181640,60,16007230,Medical Incident,01/18/2016,01/18/2016,01/18/2016 01:20:32 PM,01/18/2016 01:22:38 PM,01/18/2016 01:24:06 PM,01/18/2016 01:24:26 PM,01/18/2016 01:46:49 PM,01/18/2016 02:56:34 PM,01/18/2016 02:56:35 PM,Code 2 Transport,01/18/2016 03:08:52 PM,0 Block of FREMONT ST,San Francisco,94105,B03,35,2126,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7911273215916, -122.397428020134)",160181640-60 +133500396,75,13118993,Medical Incident,12/16/2013,12/16/2013,12/16/2013 08:57:09 PM,12/16/2013 08:58:50 PM,12/16/2013 09:01:52 PM,12/16/2013 09:02:39 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,04/25/2016 01:49:13 PM,HERON ST/BERWICK PL,SF,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7747871187973, -122.408309558364)",133500396-75 +112260183,E40,11074671,Medical Incident,08/14/2011,08/14/2011,08/14/2011 01:44:25 PM,08/14/2011 01:45:19 PM,08/14/2011 01:46:22 PM,08/14/2011 01:51:25 PM,08/14/2011 01:51:28 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Against Medical Advice,08/14/2011 02:40:14 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",112260183-E40 +160123447,KM03,16004940,Medical Incident,01/12/2016,01/12/2016,01/12/2016 08:36:23 PM,01/12/2016 08:38:40 PM,01/12/2016 08:38:58 PM,01/12/2016 08:39:27 PM,01/12/2016 08:47:39 PM,01/12/2016 08:52:03 PM,01/12/2016 09:00:17 PM,Code 2 Transport,01/12/2016 09:25:11 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160123447-KM03 +133240286,E03,13110111,Medical Incident,11/20/2013,11/20/2013,11/20/2013 04:02:12 PM,11/20/2013 04:03:28 PM,11/20/2013 04:03:44 PM,11/20/2013 04:03:55 PM,11/20/2013 04:05:45 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 04:10:11 PM,LARKIN ST/EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",133240286-E03 +122550256,54,12084346,Medical Incident,09/11/2012,09/11/2012,09/11/2012 03:34:14 PM,09/11/2012 03:35:56 PM,09/11/2012 03:38:27 PM,04/25/2016 01:56:49 PM,09/11/2012 03:40:28 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,No Merit,09/11/2012 03:43:53 PM,1100 Block of SUTTER ST,SF,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",122550256-54 +103530289,AP,10113414,Other,12/19/2010,12/19/2010,12/19/2010 04:52:16 PM,12/19/2010 04:52:17 PM,12/19/2010 04:52:17 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,Fire,12/19/2010 04:52:47 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",103530289-AP +123510221,RC1,12117423,Medical Incident,12/16/2012,12/16/2012,12/16/2012 02:23:46 PM,12/16/2012 02:23:58 PM,12/16/2012 02:24:08 PM,12/16/2012 02:38:04 PM,12/16/2012 02:46:27 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/16/2012 02:54:06 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",123510221-RC1 +110860013,E36,11028232,Medical Incident,03/27/2011,03/26/2011,03/27/2011 12:29:08 AM,03/27/2011 12:30:51 AM,03/27/2011 12:31:17 AM,03/27/2011 12:33:04 AM,03/27/2011 12:35:21 AM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/27/2011 12:38:14 AM,ROSE ST/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7737747522652, -122.421089416719)",110860013-E36 +160822257,89,16032609,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:55:15 PM,03/22/2016 02:56:33 PM,03/22/2016 03:01:18 PM,03/22/2016 03:02:12 PM,03/22/2016 03:13:02 PM,03/22/2016 03:29:30 PM,03/22/2016 03:53:33 PM,Code 2 Transport,03/22/2016 04:50:28 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",160822257-89 +123390341,T17,12113194,Medical Incident,12/04/2012,12/04/2012,12/04/2012 07:04:41 PM,12/04/2012 07:06:03 PM,12/04/2012 07:07:31 PM,12/04/2012 07:09:10 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,Other,12/04/2012 07:24:42 PM,0 Block of GARLINGTON CT,SF,94124,B10,17,6622,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7325070966122, -122.384396871119)",123390341-T17 +132580075,RC3,13087185,Structure Fire,09/15/2013,09/14/2013,09/15/2013 05:52:22 AM,09/15/2013 05:53:13 AM,09/15/2013 05:57:23 AM,09/15/2013 05:59:54 AM,09/15/2013 06:21:51 AM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/15/2013 07:00:07 AM,300 Block of 11TH ST,SF,94103,B02,36,5112,3,3,3,true,Fire,2,RESCUE CAPTAIN,16,2,6,Mission,"(37.7712080387402, -122.413302363173)",132580075-RC3 +160430284,KM07,16017137,Medical Incident,02/12/2016,02/11/2016,02/12/2016 02:59:46 AM,02/12/2016 03:01:13 AM,02/12/2016 03:03:21 AM,02/12/2016 03:03:57 AM,02/12/2016 03:09:26 AM,02/12/2016 03:15:40 AM,02/12/2016 03:47:28 AM,Code 2 Transport,02/12/2016 04:10:38 AM,400 Block of CENTRAL AVE,San Francisco,94117,B05,21,4356,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7736894298686, -122.444242063533)",160430284-KM07 +131480218,T03,13050197,Medical Incident,05/28/2013,05/28/2013,05/28/2013 01:38:54 PM,05/28/2013 01:40:25 PM,05/28/2013 01:40:35 PM,05/28/2013 01:42:03 PM,05/28/2013 01:44:50 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/28/2013 02:03:05 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",131480218-T03 +102690144,95,10085276,Medical Incident,09/26/2010,09/26/2010,09/26/2010 09:43:26 AM,09/26/2010 09:44:56 AM,09/26/2010 09:45:04 AM,09/26/2010 09:45:47 AM,09/26/2010 09:55:56 AM,09/26/2010 10:06:52 AM,09/26/2010 10:09:25 AM,Code 2 Transport,09/26/2010 10:24:42 AM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",102690144-95 +120450172,KM02,12014958,Medical Incident,02/14/2012,02/14/2012,02/14/2012 12:12:25 PM,02/14/2012 12:14:16 PM,02/14/2012 12:15:20 PM,02/14/2012 12:16:07 PM,02/14/2012 12:31:13 PM,02/14/2012 12:58:29 PM,04/25/2016 02:00:08 PM,Code 2 Transport,02/14/2012 01:19:02 PM,TAYLOR ST/BROADWAY ST,SF,94133,B01,2,1442,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7970385137093, -122.413558545037)",120450172-KM02 +160690444,72,16027339,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:05:41 AM,03/09/2016 06:07:56 AM,03/09/2016 06:08:27 AM,03/09/2016 06:08:36 AM,03/09/2016 06:10:25 AM,03/09/2016 06:16:07 AM,03/09/2016 06:27:03 AM,Code 2 Transport,03/09/2016 06:34:08 AM,10TH ST/MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",160690444-72 +120460200,85,12015311,Structure Fire,02/15/2012,02/15/2012,02/15/2012 01:47:31 PM,02/15/2012 01:48:44 PM,02/15/2012 01:49:08 PM,02/15/2012 01:49:36 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 01:55:12 PM,100 Block of BENNINGTON ST,SF,94110,B06,32,5742,3,3,3,true,Fire,1,MEDIC,6,6,9,Bernal Heights,"(37.7387969257185, -122.417769040148)",120460200-85 +122460385,E48,12081532,Medical Incident,09/02/2012,09/02/2012,09/02/2012 10:24:19 PM,09/02/2012 10:27:00 PM,09/02/2012 10:28:54 PM,09/02/2012 10:31:08 PM,09/02/2012 10:32:21 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 10:47:26 PM,1400 Block of CHINOOK CT,TI,94130,B03,48,2931,1,1,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8241920117735, -122.373821928989)",122460385-E48 +110670311,E01,11022170,Medical Incident,03/08/2011,03/08/2011,03/08/2011 08:00:16 PM,03/08/2011 08:02:39 PM,03/08/2011 08:03:23 PM,03/08/2011 08:05:11 PM,03/08/2011 08:08:16 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/08/2011 08:10:02 PM,MINNA ST/6TH ST,SF,94103,B03,1,2251,E,E,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7805353840251, -122.40816079453)",110670311-E01 +120450377,E36,12015140,Alarms,02/14/2012,02/14/2012,02/14/2012 10:42:58 PM,02/14/2012 10:43:49 PM,02/14/2012 10:44:02 PM,02/14/2012 10:44:55 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 10:46:30 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,4,3,6,South of Market,"(37.7800525030811, -122.40977382526)",120450377-E36 +113460098,E39,11114726,Medical Incident,12/12/2011,12/12/2011,12/12/2011 09:10:15 AM,12/12/2011 09:10:48 AM,12/12/2011 09:11:12 AM,12/12/2011 09:12:34 AM,12/12/2011 09:35:43 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 09:35:52 AM,0 Block of SAN ANDREAS WAY,SF,94127,B09,39,8551,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7336132918446, -122.463842714852)",113460098-E39 +133430042,96,13116202,Medical Incident,12/09/2013,12/08/2013,12/09/2013 05:44:26 AM,12/09/2013 05:46:38 AM,12/09/2013 05:49:18 AM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,04/25/2016 01:49:22 PM,8300 Block of OCEANVIEW TER,SF,94132,B09,33,8412,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",133430042-96 +112820029,E03,11093227,Structure Fire,10/09/2011,10/08/2011,10/09/2011 02:18:17 AM,10/09/2011 02:18:17 AM,10/09/2011 02:18:23 AM,04/25/2016 02:02:15 PM,10/09/2011 02:19:58 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 02:22:14 AM,400 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.787297919885, -122.409833940233)",112820029-E03 +160382396,KM06,16015281,Medical Incident,02/07/2016,02/07/2016,02/07/2016 03:42:34 PM,02/07/2016 03:43:13 PM,02/07/2016 03:43:54 PM,02/07/2016 03:44:38 PM,02/07/2016 03:49:44 PM,02/07/2016 04:11:07 PM,02/07/2016 04:28:07 PM,Code 2 Transport,02/07/2016 05:08:26 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160382396-KM06 +120450020,B01,12014850,Alarms,02/14/2012,02/13/2012,02/14/2012 02:14:53 AM,02/14/2012 02:15:33 AM,02/14/2012 02:15:42 AM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/14/2012 02:17:58 AM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8083718015584, -122.414994322457)",120450020-B01 +120060310,89,12002186,Medical Incident,01/06/2012,01/06/2012,01/06/2012 07:12:43 PM,01/06/2012 07:12:43 PM,01/06/2012 07:13:51 PM,01/06/2012 07:13:58 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,Other,01/06/2012 07:16:19 PM,3RD ST/PAUL AV,SF,94124,B10,44,6544,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7224316058888, -122.395622760595)",120060310-89 +160822829,85,16032667,Medical Incident,03/22/2016,03/22/2016,03/22/2016 05:09:32 PM,03/22/2016 05:09:32 PM,03/22/2016 05:09:46 PM,03/22/2016 05:10:03 PM,03/22/2016 05:25:22 PM,03/22/2016 05:57:43 PM,03/22/2016 06:04:19 PM,Code 2 Transport,03/22/2016 07:16:31 PM,1100 Block of FILLMORE ST,San Francisco,94115,B02,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160822829-85 +160430981,78,16017218,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:33:01 AM,02/12/2016 09:35:11 AM,02/12/2016 09:35:51 AM,02/12/2016 09:37:12 AM,02/12/2016 09:49:48 AM,02/12/2016 10:13:57 AM,02/12/2016 10:27:44 AM,Code 2 Transport,02/12/2016 11:01:56 AM,0 Block of NEY ST,San Francisco,94112,B09,32,5635,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7299211801387, -122.42921503487)",160430981-78 +130420252,92,13014380,Medical Incident,02/11/2013,02/11/2013,02/11/2013 04:03:29 PM,02/11/2013 04:04:29 PM,02/11/2013 04:05:23 PM,02/11/2013 04:05:51 PM,02/11/2013 04:09:15 PM,02/11/2013 04:20:19 PM,02/11/2013 04:41:32 PM,Code 2 Transport,02/11/2013 04:56:06 PM,2900 Block of 21ST ST,SF,94110,B06,7,545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7573853251797, -122.413999387231)",130420252-92 +160582375,67,16023183,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:55:28 PM,02/27/2016 03:57:57 PM,02/27/2016 03:59:10 PM,02/27/2016 03:59:18 PM,02/27/2016 04:02:11 PM,02/27/2016 04:10:07 PM,02/27/2016 04:19:53 PM,Code 2 Transport,02/27/2016 05:19:21 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160582375-67 +113140309,E13,11104437,Medical Incident,11/10/2011,11/10/2011,11/10/2011 06:34:14 PM,11/10/2011 06:35:39 PM,11/10/2011 06:36:11 PM,11/10/2011 06:36:28 PM,11/10/2011 06:42:21 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,04/25/2016 02:01:42 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",113140309-E13 +130720130,AM16,13023958,Medical Incident,03/13/2013,03/13/2013,03/13/2013 09:55:38 AM,03/13/2013 09:57:01 AM,03/13/2013 09:57:43 AM,03/13/2013 09:58:29 AM,03/13/2013 10:01:50 AM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,No Merit,03/13/2013 10:05:27 AM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",130720130-AM16 +131260086,E03,13042474,Medical Incident,05/06/2013,05/05/2013,05/06/2013 07:49:33 AM,05/06/2013 07:50:35 AM,05/06/2013 07:51:23 AM,05/06/2013 07:53:15 AM,05/06/2013 07:55:14 AM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,Other,05/06/2013 08:23:30 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",131260086-E03 +121900192,E36,12063314,Alarms,07/08/2012,07/08/2012,07/08/2012 02:39:41 PM,07/08/2012 02:41:18 PM,07/08/2012 02:41:31 PM,07/08/2012 02:41:42 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/08/2012 02:43:07 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,4,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",121900192-E36 +110830107,E14,11027222,Medical Incident,03/24/2011,03/24/2011,03/24/2011 09:02:00 AM,03/24/2011 09:03:17 AM,03/24/2011 09:03:57 AM,03/24/2011 09:05:37 AM,03/24/2011 09:08:25 AM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/24/2011 09:26:44 AM,500 Block of 29TH AVE,SF,94121,B07,14,7226,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.778934321761, -122.488875414525)",110830107-E14 +160412048,KM04,16016482,Medical Incident,02/10/2016,02/10/2016,02/10/2016 02:01:51 PM,02/10/2016 02:02:51 PM,02/10/2016 02:03:15 PM,02/10/2016 02:09:56 PM,02/10/2016 02:20:05 PM,02/10/2016 02:28:33 PM,02/10/2016 02:54:37 PM,Code 2 Transport,02/10/2016 03:49:55 PM,THE EMBARCADERO SOU/FOLSOM ST,San Francisco,94105,B03,35,2112,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7904750361941, -122.39055604599)",160412048-KM04 +122790069,55,12092141,Medical Incident,10/05/2012,10/04/2012,10/05/2012 07:10:48 AM,10/05/2012 07:13:07 AM,10/05/2012 07:13:56 AM,10/05/2012 07:14:04 AM,10/05/2012 07:20:30 AM,10/05/2012 07:34:50 AM,10/05/2012 07:40:23 AM,Code 2 Transport,10/05/2012 08:08:26 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",122790069-55 +111310161,81,11043269,Medical Incident,05/11/2011,05/11/2011,05/11/2011 12:08:22 PM,05/11/2011 12:09:33 PM,05/11/2011 12:12:50 PM,05/11/2011 12:13:09 PM,05/11/2011 12:22:23 PM,05/11/2011 12:43:00 PM,05/11/2011 01:25:26 PM,Code 2 Transport,05/11/2011 01:41:05 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.781960649289, -122.402224095303)",111310161-81 +130480285,E03,13016467,Traffic Collision,02/17/2013,02/17/2013,02/17/2013 05:50:58 PM,02/17/2013 05:51:17 PM,02/17/2013 05:51:39 PM,02/17/2013 05:53:17 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 05:54:18 PM,HYDE ST/MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",130480285-E03 +160032394,58,16001279,Medical Incident,01/03/2016,01/03/2016,01/03/2016 05:33:31 PM,01/03/2016 05:33:31 PM,01/03/2016 05:34:11 PM,01/03/2016 05:34:23 PM,01/03/2016 05:41:29 PM,01/03/2016 06:06:03 PM,01/03/2016 06:16:13 PM,Code 2 Transport,01/03/2016 06:35:53 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160032394-58 +160163412,75,16006590,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:02:27 PM,01/16/2016 09:03:03 PM,01/16/2016 09:03:18 PM,01/16/2016 09:03:29 PM,01/16/2016 09:08:35 PM,01/16/2016 09:25:29 PM,01/16/2016 09:30:40 PM,Code 2 Transport,01/16/2016 09:47:15 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160163412-75 +113060120,E43,11101594,Medical Incident,11/02/2011,11/02/2011,11/02/2011 09:52:13 AM,11/02/2011 09:52:29 AM,11/02/2011 09:53:27 AM,11/02/2011 09:54:56 AM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 10:02:06 AM,700 Block of EXCELSIOR AVE,SF,94112,B09,43,6155,3,2,2,false,,1,ENGINE,1,9,11,Excelsior,"(37.7233483966745, -122.427699241431)",113060120-E43 +160051933,50,16002018,Medical Incident,01/05/2016,01/05/2016,01/05/2016 01:54:36 PM,01/05/2016 01:55:39 PM,01/05/2016 01:55:50 PM,01/05/2016 01:56:06 PM,01/05/2016 02:04:46 PM,01/05/2016 02:21:40 PM,01/05/2016 02:41:38 PM,Code 2 Transport,01/05/2016 03:22:40 PM,1700 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",160051933-50 +131510364,E07,13051289,Medical Incident,05/31/2013,05/31/2013,05/31/2013 08:42:33 PM,05/31/2013 08:43:22 PM,05/31/2013 08:43:48 PM,05/31/2013 08:45:03 PM,05/31/2013 08:47:16 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 08:52:14 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",131510364-E07 +160351186,82,16013762,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:19:56 AM,02/04/2016 10:20:18 AM,02/04/2016 10:20:28 AM,02/04/2016 10:20:38 AM,02/04/2016 10:21:13 AM,02/04/2016 10:52:47 AM,02/04/2016 11:13:48 AM,Code 2 Transport,02/04/2016 11:47:11 AM,400 Block of ANDERSON ST,San Francisco,94110,B06,32,5726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7378006756546, -122.415350364076)",160351186-82 +160043029,KM04,16001727,Medical Incident,01/04/2016,01/04/2016,01/04/2016 06:50:53 PM,01/04/2016 06:55:26 PM,01/04/2016 06:56:15 PM,01/04/2016 06:57:02 PM,01/04/2016 07:06:43 PM,01/04/2016 07:43:53 PM,01/04/2016 08:04:26 PM,Code 2 Transport,01/04/2016 08:08:39 PM,4100 Block of 25TH ST,San Francisco,94114,B06,11,5541,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7498175678923, -122.432828272359)",160043029-KM04 +122150126,T09,12071312,Vehicle Fire,08/02/2012,08/02/2012,08/02/2012 11:02:04 AM,08/02/2012 11:04:37 AM,08/02/2012 11:04:50 AM,08/02/2012 11:05:59 AM,08/02/2012 11:09:44 AM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/02/2012 11:24:33 AM,100 Block of RICKARD ST,SF,94134,B10,42,6366,3,3,3,false,Fire,1,TRUCK,2,10,9,Portola,"(37.7342270960394, -122.407403239738)",122150126-T09 +112390015,E18,11078738,Medical Incident,08/27/2011,08/26/2011,08/27/2011 01:18:24 AM,08/27/2011 01:19:08 AM,08/27/2011 01:19:41 AM,08/27/2011 01:21:13 AM,08/27/2011 01:21:28 AM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 01:27:24 AM,1600 Block of 23RD AVE,SF,94122,B08,18,7446,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7568516433542, -122.480884171274)",112390015-E18 +113570264,KM11,11118656,Medical Incident,12/23/2011,12/23/2011,12/23/2011 01:08:08 PM,12/23/2011 01:09:03 PM,12/23/2011 01:09:50 PM,12/23/2011 01:11:15 PM,12/23/2011 01:18:53 PM,12/23/2011 01:38:53 PM,12/23/2011 02:03:55 PM,Code 2 Transport,12/23/2011 02:25:24 PM,1500 Block of SLOAT BLVD,SF,94132,B08,19,7552,3,3,3,false,,1,PRIVATE,2,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",113570264-KM11 +111500159,B06,11049682,Alarms,05/30/2011,05/30/2011,05/30/2011 12:34:15 PM,05/30/2011 12:36:15 PM,05/30/2011 12:36:27 PM,04/25/2016 02:04:23 PM,05/30/2011 12:42:48 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Fire,05/30/2011 12:57:04 PM,2900 Block of 18TH ST,SF,94110,B02,7,5426,3,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.7616171946557, -122.411565020696)",111500159-B06 +140340302,B02,14011604,Alarms,02/03/2014,02/03/2014,02/03/2014 07:28:54 PM,02/03/2014 07:28:55 PM,02/03/2014 07:28:59 PM,02/03/2014 07:30:15 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Fire,02/03/2014 07:33:30 PM,600 Block of DIVISADERO ST,SF,94117,B05,21,4146,3,3,3,false,Alarm,1,CHIEF,3,5,5,Hayes Valley,"(37.775474331091, -122.437778722849)",140340302-B02 +160092222,68,16003696,Medical Incident,01/09/2016,01/09/2016,01/09/2016 03:40:10 PM,01/09/2016 03:42:05 PM,01/09/2016 03:42:18 PM,01/09/2016 03:42:25 PM,01/09/2016 03:44:37 PM,01/09/2016 03:58:52 PM,01/09/2016 04:09:42 PM,Code 2 Transport,01/09/2016 04:25:34 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160092222-68 +140650072,E03,14021881,Vehicle Fire,03/06/2014,03/05/2014,03/06/2014 07:37:09 AM,03/06/2014 07:39:23 AM,03/06/2014 07:39:43 AM,03/06/2014 07:42:12 AM,03/06/2014 07:43:55 AM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Fire,03/06/2014 07:45:53 AM,700 Block of SUTTER ST,SAN FRANCISCO,94109,B01,3,1463,3,3,3,true,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",140650072-E03 +140140241,KM12,14004841,Medical Incident,01/14/2014,01/14/2014,01/14/2014 03:22:27 PM,01/14/2014 03:23:50 PM,01/14/2014 03:24:25 PM,01/14/2014 03:25:00 PM,01/14/2014 03:33:38 PM,01/14/2014 04:02:04 PM,01/14/2014 04:08:35 PM,Code 2 Transport,01/14/2014 04:41:48 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",140140241-KM12 +102990077,E33,10095391,Traffic Collision,10/26/2010,10/25/2010,10/26/2010 07:45:45 AM,10/26/2010 07:47:29 AM,10/26/2010 07:47:45 AM,10/26/2010 07:48:40 AM,10/26/2010 07:51:19 AM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 08:24:11 AM,SAN JOSE AV/LIEBIG ST,SF,94112,B09,33,8357,2,2,2,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7095398944267, -122.457670304505)",102990077-E33 +160510687,79,16020382,Medical Incident,02/20/2016,02/19/2016,02/20/2016 07:45:48 AM,02/20/2016 07:48:25 AM,02/20/2016 07:49:28 AM,02/20/2016 07:50:14 AM,02/20/2016 07:58:43 AM,02/20/2016 08:11:33 AM,02/20/2016 08:30:38 AM,Code 2 Transport,02/20/2016 09:13:00 AM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160510687-79 +140980102,T05,14032981,Alarms,04/08/2014,04/08/2014,04/08/2014 08:09:36 AM,04/08/2014 08:10:46 AM,04/08/2014 08:11:08 AM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Fire,04/08/2014 08:12:41 AM,0 Block of SANCHEZ ST,SAN FRANCISCO,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,4,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",140980102-T05 +132180389,E21,13073792,Alarms,08/06/2013,08/06/2013,08/06/2013 11:41:11 PM,08/06/2013 11:42:26 PM,08/06/2013 11:42:33 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 11:43:41 PM,2200 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,true,Alarm,1,ENGINE,3,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",132180389-E21 +130340259,58,13011681,Structure Fire,02/03/2013,02/03/2013,02/03/2013 05:40:31 PM,02/03/2013 05:41:19 PM,02/03/2013 05:41:48 PM,02/03/2013 05:41:58 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 05:46:22 PM,1500 Block of GOUGH ST,SF,94109,B04,38,3255,3,3,3,true,Alarm,1,MEDIC,11,4,2,Western Addition,"(37.7878420386913, -122.425120391793)",130340259-58 +160703528,88,16028021,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:28:42 PM,03/10/2016 09:30:02 PM,03/10/2016 09:30:46 PM,03/10/2016 09:30:55 PM,03/10/2016 09:48:39 PM,03/10/2016 10:14:29 PM,03/10/2016 10:34:09 PM,Code 2 Transport,03/10/2016 11:36:08 PM,5400 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7131083433264, -122.444314025188)",160703528-88 +160363653,85,16014424,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:24:11 PM,02/05/2016 08:28:06 PM,02/05/2016 08:28:57 PM,02/05/2016 08:29:06 PM,02/05/2016 08:40:36 PM,02/05/2016 08:51:52 PM,02/05/2016 09:02:43 PM,Code 3 Transport,02/05/2016 09:36:19 PM,800 Block of WASHINGTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",160363653-85 +160913335,AM14,16036227,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:01:07 PM,03/31/2016 08:03:54 PM,03/31/2016 08:14:21 PM,03/31/2016 08:14:41 PM,03/31/2016 08:20:59 PM,03/31/2016 08:41:05 PM,03/31/2016 08:58:07 PM,Code 2 Transport,03/31/2016 09:23:53 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160913335-AM14 +110770011,T01,11025199,Alarms,03/18/2011,03/17/2011,03/18/2011 12:33:20 AM,03/18/2011 12:34:26 AM,03/18/2011 12:34:42 AM,03/18/2011 12:36:46 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 12:38:10 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",110770011-T01 +160621490,87,16024665,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:26:29 AM,03/02/2016 11:28:07 AM,03/02/2016 11:30:52 AM,03/02/2016 11:31:21 AM,03/02/2016 11:45:18 AM,03/02/2016 12:03:14 PM,03/02/2016 12:17:55 PM,Code 2 Transport,03/02/2016 12:47:14 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",160621490-87 +160472376,KM09,16018985,Medical Incident,02/16/2016,02/16/2016,02/16/2016 03:26:14 PM,02/16/2016 03:27:32 PM,02/16/2016 03:28:07 PM,02/16/2016 03:28:49 PM,02/16/2016 03:35:18 PM,02/16/2016 04:03:50 PM,02/16/2016 04:17:20 PM,Code 2 Transport,02/16/2016 05:13:57 PM,400 Block of HAIGHT ST,San Francisco,94117,B02,6,3524,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",160472376-KM09 +123610041,E02,12120686,Medical Incident,12/26/2012,12/25/2012,12/26/2012 05:45:56 AM,12/26/2012 05:48:19 AM,12/26/2012 05:48:32 AM,12/26/2012 05:50:28 AM,12/26/2012 05:52:19 AM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 06:01:34 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.796699717573, -122.408014703843)",123610041-E02 +112490402,E13,11082311,Medical Incident,09/06/2011,09/06/2011,09/06/2011 10:55:31 PM,09/06/2011 10:56:30 PM,09/06/2011 10:57:09 PM,09/06/2011 10:58:36 PM,09/06/2011 11:01:24 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 11:08:42 PM,200 Block of FOLSOM ST,SF,94105,B03,35,2117,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",112490402-E13 +132710378,E01,13092249,Medical Incident,09/28/2013,09/28/2013,09/28/2013 09:16:19 PM,09/28/2013 09:18:13 PM,09/28/2013 09:18:29 PM,09/28/2013 09:21:11 PM,09/28/2013 09:29:49 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,Other,09/28/2013 09:39:31 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",132710378-E01 +122570364,55,12085125,Medical Incident,09/13/2012,09/13/2012,09/13/2012 11:49:03 PM,09/13/2012 11:49:44 PM,09/13/2012 11:51:41 PM,09/13/2012 11:56:43 PM,09/14/2012 12:01:19 AM,09/14/2012 12:12:18 AM,09/14/2012 12:15:58 AM,Code 2 Transport,09/14/2012 12:42:44 AM,22ND ST/SAN BRUNO AV,SF,94110,B10,37,2551,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7569521955647, -122.404732268579)",122570364-55 +121940065,T16,12064460,Structure Fire,07/12/2012,07/11/2012,07/12/2012 06:38:48 AM,07/12/2012 06:38:48 AM,07/12/2012 06:38:54 AM,07/12/2012 06:40:34 AM,07/12/2012 06:44:33 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Fire,07/12/2012 08:05:05 AM,1600 Block of UNION ST,SF,94123,B04,16,323,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.7981848264843, -122.426436289929)",121940065-T16 +140630045,RC2,14021171,Medical Incident,03/04/2014,03/03/2014,03/04/2014 04:43:34 AM,03/04/2014 04:44:01 AM,03/04/2014 04:51:26 AM,03/04/2014 04:51:26 AM,03/04/2014 04:51:26 AM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Code 3 Transport,03/04/2014 05:18:10 AM,300 Block of 2ND AVE,SF,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7821780951379, -122.459999332268)",140630045-RC2 +140060097,E29,14002061,Traffic Collision,01/06/2014,01/06/2014,01/06/2014 08:28:34 AM,01/06/2014 08:30:00 AM,01/06/2014 08:30:18 AM,01/06/2014 08:31:26 AM,01/06/2014 08:33:01 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 08:40:23 AM,7TH ST/16TH ST,SF,94158,B03,29,2414,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,10,Mission Bay,"(37.7665445770442, -122.39506054595)",140060097-E29 +113330282,B04,11110391,Structure Fire,11/29/2011,11/29/2011,11/29/2011 06:22:37 PM,11/29/2011 06:24:35 PM,11/29/2011 06:24:59 PM,11/29/2011 06:26:00 PM,11/29/2011 06:29:43 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 06:36:32 PM,2700 Block of UNION ST,SF,94123,B04,16,4312,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.7958773081236, -122.444574927621)",113330282-B04 +160360825,62,16014145,Medical Incident,02/05/2016,02/04/2016,02/05/2016 07:51:20 AM,02/05/2016 07:52:58 AM,02/05/2016 07:56:43 AM,02/05/2016 07:59:04 AM,02/05/2016 07:59:04 AM,02/05/2016 08:12:57 AM,02/05/2016 08:23:25 AM,Code 2 Transport,02/05/2016 09:04:39 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160360825-62 +160420740,KM09,16016769,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:22:19 AM,02/11/2016 08:23:20 AM,02/11/2016 08:23:47 AM,02/11/2016 08:24:11 AM,02/11/2016 08:29:36 AM,02/11/2016 09:00:55 AM,02/11/2016 09:17:23 AM,Code 2 Transport,02/11/2016 10:11:54 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160420740-KM09 +160053664,75,16002192,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:23:54 PM,01/05/2016 10:26:18 PM,01/05/2016 10:26:34 PM,01/05/2016 10:26:46 PM,01/05/2016 10:43:40 PM,01/05/2016 11:01:16 PM,01/05/2016 11:06:08 PM,Code 2 Transport,01/05/2016 11:42:37 PM,STEVENSON ST/5TH ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.783528916199, -122.407482813601)",160053664-75 +160552704,52,16022077,Medical Incident,02/24/2016,02/24/2016,02/24/2016 04:32:25 PM,02/24/2016 04:33:57 PM,02/24/2016 04:34:43 PM,02/24/2016 04:34:51 PM,02/24/2016 04:53:02 PM,02/24/2016 05:04:19 PM,02/24/2016 05:31:33 PM,Code 2 Transport,02/24/2016 06:03:10 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160552704-52 +131220277,T08,13041096,Administrative,05/02/2013,05/02/2013,05/02/2013 02:38:04 PM,05/02/2013 02:38:08 PM,05/02/2013 02:38:53 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Fire,05/02/2013 02:39:20 PM,0 Block of BLUXOME ST,SF,94107,B03,8,2223,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",131220277-T08 +121540056,55,12050881,Medical Incident,06/02/2012,06/01/2012,06/02/2012 04:00:10 AM,06/02/2012 04:03:16 AM,06/02/2012 04:03:24 AM,06/02/2012 04:04:27 AM,06/02/2012 04:11:31 AM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 04:12:30 AM,500 Block of 48TH AVE,SF,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7780077592037, -122.509229146953)",121540056-55 +111970087,82,11064933,Medical Incident,07/16/2011,07/15/2011,07/16/2011 07:55:53 AM,07/16/2011 07:56:55 AM,07/16/2011 07:57:04 AM,07/16/2011 07:57:43 AM,07/16/2011 08:12:45 AM,07/16/2011 08:12:51 AM,07/16/2011 08:15:47 AM,Code 2 Transport,07/16/2011 08:47:36 AM,GEARY ST/LARKIN ST,SF,94109,B04,3,3116,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",111970087-82 +130640062,E17,13021346,Medical Incident,03/05/2013,03/04/2013,03/05/2013 06:58:33 AM,03/05/2013 06:59:50 AM,03/05/2013 07:00:06 AM,03/05/2013 07:01:02 AM,03/05/2013 07:05:12 AM,04/25/2016 01:53:59 PM,04/25/2016 01:53:59 PM,Other,03/05/2013 07:42:12 AM,1200 Block of NEWHALL ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7365653368668, -122.391311377651)",130640062-E17 +131960334,B01,13066667,Alarms,07/15/2013,07/15/2013,07/15/2013 10:57:42 PM,07/15/2013 10:58:45 PM,07/15/2013 10:59:08 PM,07/15/2013 11:00:13 PM,07/15/2013 11:02:32 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Fire,07/15/2013 11:36:14 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,Alarm,1,CHIEF,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",131960334-B01 +131930020,67,13065518,Medical Incident,07/12/2013,07/11/2013,07/12/2013 01:43:45 AM,07/12/2013 01:44:50 AM,07/12/2013 01:45:06 AM,07/12/2013 01:45:49 AM,04/25/2016 01:51:50 PM,07/12/2013 02:05:37 AM,07/12/2013 02:14:20 AM,Code 2 Transport,07/12/2013 02:44:03 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131930020-67 +121490211,T09,12049479,Structure Fire,05/28/2012,05/28/2012,05/28/2012 04:45:12 PM,05/28/2012 04:45:12 PM,05/28/2012 04:45:17 PM,05/28/2012 04:46:36 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 04:48:51 PM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",121490211-T09 +131930170,KM04,13065639,Medical Incident,07/12/2013,07/12/2013,07/12/2013 01:43:36 PM,07/12/2013 01:45:53 PM,07/12/2013 01:46:20 PM,07/12/2013 01:47:25 PM,07/12/2013 01:54:27 PM,07/12/2013 02:46:54 PM,07/12/2013 02:18:02 PM,Code 2 Transport,07/12/2013 02:47:10 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",131930170-KM04 +131470019,88,13049743,Medical Incident,05/27/2013,05/26/2013,05/27/2013 01:12:42 AM,05/27/2013 01:13:46 AM,05/27/2013 01:17:18 AM,05/27/2013 01:17:34 AM,05/27/2013 01:25:39 AM,05/27/2013 01:41:20 AM,05/27/2013 01:47:38 AM,Code 2 Transport,05/27/2013 02:04:47 AM,MISSION ST/VALENCIA ST,SF,94110,B06,11,5624,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7453890212933, -122.420019126223)",131470019-88 +102830254,64,10090116,Medical Incident,10/10/2010,10/10/2010,10/10/2010 03:57:27 PM,10/10/2010 03:58:47 PM,10/10/2010 03:59:45 PM,10/10/2010 04:09:55 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,No Merit,10/10/2010 04:19:33 PM,700 Block of POLK ST,SF,94109,B02,3,3115,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7833430636234, -122.419159190984)",102830254-64 +160330560,AM02,16012860,Medical Incident,02/02/2016,02/01/2016,02/02/2016 07:13:12 AM,02/02/2016 07:14:51 AM,02/02/2016 07:15:22 AM,02/02/2016 07:15:51 AM,02/02/2016 07:22:52 AM,02/02/2016 07:37:06 AM,02/02/2016 07:52:15 AM,Code 2 Transport,02/02/2016 08:14:27 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160330560-AM02 +112140231,E07,11070664,Medical Incident,08/02/2011,08/02/2011,08/02/2011 03:21:33 PM,08/02/2011 03:22:46 PM,08/02/2011 03:23:03 PM,08/02/2011 03:23:33 PM,08/02/2011 03:32:05 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 03:37:04 PM,1300 Block of TREAT WAY,SF,94110,B06,7,5533,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7491304830529, -122.41259458806)",112140231-E07 +160421598,KM02,16016848,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:07:15 PM,02/11/2016 12:07:29 PM,02/11/2016 12:08:25 PM,02/11/2016 12:09:16 PM,02/11/2016 12:15:16 PM,02/11/2016 12:34:07 PM,02/11/2016 01:30:37 PM,Code 2 Transport,02/11/2016 02:08:45 PM,2000 Block of DIVISADERO ST,San Francisco,94115,B04,10,4161,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7885177229343, -122.440647405877)",160421598-KM02 +160371833,88,16014684,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:34:16 PM,02/06/2016 12:34:16 PM,02/06/2016 12:34:46 PM,02/06/2016 12:34:52 PM,02/06/2016 12:43:16 PM,02/06/2016 12:54:20 PM,02/06/2016 01:02:08 PM,Code 2 Transport,02/06/2016 01:28:25 PM,3300 Block of BUCHANAN ST,San Francisco,94123,B04,16,3445,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8005078995999, -122.432880441363)",160371833-88 +121120118,E08,12037073,Structure Fire,04/21/2012,04/21/2012,04/21/2012 08:47:46 AM,04/21/2012 08:47:47 AM,04/21/2012 08:48:03 AM,04/21/2012 08:50:43 AM,04/21/2012 08:51:40 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 08:51:52 AM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7772727011897, -122.404070256526)",121120118-E08 +123100186,B10,12103122,Structure Fire,11/05/2012,11/05/2012,11/05/2012 12:45:39 PM,11/05/2012 12:46:21 PM,11/05/2012 12:46:44 PM,11/05/2012 12:47:21 PM,11/05/2012 12:51:44 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,04/25/2016 01:55:56 PM,15TH ST/BRYANT ST,SF,94103,B02,29,5222,3,3,3,false,Alarm,1,CHIEF,7,2,10,Mission,"(37.7669034447897, -122.410609802507)",123100186-B10 +102450427,E13,10077514,Structure Fire,09/02/2010,09/02/2010,09/02/2010 07:27:33 PM,09/02/2010 07:27:34 PM,09/02/2010 07:28:00 PM,09/02/2010 07:28:55 PM,09/02/2010 07:30:22 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Fire,09/02/2010 07:30:39 PM,KEARNY ST/SACRAMENTO ST,SF,94104,B01,13,1244,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",102450427-E13 +121480292,E03,12049209,Medical Incident,05/27/2012,05/27/2012,05/27/2012 06:55:55 PM,05/27/2012 06:56:15 PM,05/27/2012 06:56:23 PM,05/27/2012 06:57:04 PM,05/27/2012 06:58:01 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/27/2012 07:14:56 PM,HEMLOCK ST/POLK ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",121480292-E03 +122640170,E13,12087177,Medical Incident,09/20/2012,09/20/2012,09/20/2012 12:30:30 PM,09/20/2012 12:36:01 PM,09/20/2012 12:36:19 PM,09/20/2012 12:38:58 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 12:39:29 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7850811742657, -122.406497767804)",122640170-E13 +130520338,E33,13017714,Alarms,02/21/2013,02/21/2013,02/21/2013 08:25:20 PM,02/21/2013 08:26:32 PM,02/21/2013 08:27:39 PM,02/21/2013 08:28:51 PM,02/21/2013 08:30:54 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Fire,02/21/2013 08:48:21 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",130520338-E33 +123500244,E29,12117091,Alarms,12/15/2012,12/15/2012,12/15/2012 04:32:46 PM,12/15/2012 04:34:09 PM,12/15/2012 04:34:17 PM,12/15/2012 04:37:23 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 04:44:55 PM,600 Block of 8TH ST,SF,94103,B03,29,2325,3,3,3,true,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7707183649645, -122.404602175806)",123500244-E29 +160282200,83,16011130,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:39:26 PM,01/28/2016 02:40:36 PM,01/28/2016 02:41:34 PM,01/28/2016 02:41:42 PM,01/28/2016 02:48:04 PM,01/28/2016 03:00:56 PM,01/28/2016 03:12:13 PM,Code 2 Transport,01/28/2016 03:29:13 PM,0 Block of MIRAMAR AVE,San Francisco,94112,B09,15,8464,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7191290044036, -122.458239208661)",160282200-83 +160393231,61,16015773,Medical Incident,02/08/2016,02/08/2016,02/08/2016 07:51:42 PM,02/08/2016 07:53:09 PM,02/08/2016 07:53:52 PM,02/08/2016 07:54:01 PM,02/08/2016 08:03:47 PM,02/08/2016 08:17:16 PM,02/08/2016 08:44:03 PM,Code 2 Transport,02/08/2016 08:55:37 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160393231-61 +160432008,53,16017322,Medical Incident,02/12/2016,02/12/2016,02/12/2016 02:18:28 PM,02/12/2016 02:19:02 PM,02/12/2016 02:19:11 PM,02/12/2016 02:19:28 PM,02/12/2016 02:28:48 PM,02/12/2016 02:55:56 PM,02/12/2016 03:14:12 PM,Code 2 Transport,02/12/2016 03:37:13 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160432008-53 +160823888,55,16032759,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:01:46 PM,03/22/2016 10:01:46 PM,03/22/2016 10:02:49 PM,03/22/2016 10:03:06 PM,03/22/2016 10:10:52 PM,03/22/2016 10:26:21 PM,03/22/2016 10:29:33 PM,Code 2 Transport,03/22/2016 11:09:25 PM,CHURCH ST/DUBOCE AV,San Francisco,94114,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",160823888-55 +110860232,KM04,11028410,Medical Incident,03/27/2011,03/27/2011,03/27/2011 01:54:58 PM,03/27/2011 01:56:10 PM,03/27/2011 01:56:28 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,Other,03/27/2011 01:57:57 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,PRIVATE,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",110860232-KM04 +123520248,B04,12117789,Alarms,12/17/2012,12/17/2012,12/17/2012 02:33:29 PM,12/17/2012 02:37:01 PM,12/17/2012 02:37:27 PM,12/17/2012 02:38:31 PM,12/17/2012 02:41:02 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 02:42:50 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.7916541828949, -122.420058319923)",123520248-B04 +160503985,79,16020295,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:32:20 PM,02/19/2016 11:34:28 PM,02/19/2016 11:34:55 PM,02/19/2016 11:35:32 PM,02/19/2016 11:39:30 PM,02/19/2016 11:45:32 PM,02/19/2016 11:56:08 PM,Code 2 Transport,02/20/2016 12:13:35 AM,0 Block of HARE ST,San Francisco,94124,B10,25,6556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7345361872345, -122.378999931156)",160503985-79 +102990333,71,10095583,Medical Incident,10/26/2010,10/26/2010,10/26/2010 08:01:52 PM,10/26/2010 08:03:00 PM,10/26/2010 08:03:16 PM,04/25/2016 02:07:54 PM,10/26/2010 08:09:08 PM,10/26/2010 08:25:01 PM,10/26/2010 08:43:54 PM,Code 2 Transport,10/26/2010 09:22:30 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",102990333-71 +132700271,E07,13091763,Medical Incident,09/27/2013,09/27/2013,09/27/2013 03:25:36 PM,09/27/2013 03:25:49 PM,09/27/2013 03:26:04 PM,09/27/2013 03:27:05 PM,09/27/2013 03:28:57 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/27/2013 03:29:09 PM,400 Block of SOUTH VAN NESS AVE,SF,94103,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.766282946754, -122.417524902878)",132700271-E07 +160091035,55,16003587,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:00:29 AM,01/09/2016 10:01:52 AM,01/09/2016 10:02:32 AM,01/09/2016 10:02:49 AM,01/09/2016 10:08:43 AM,01/09/2016 10:44:27 AM,01/09/2016 10:52:34 AM,Code 2 Transport,01/09/2016 11:30:45 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160091035-55 +103110302,E03,10099847,Medical Incident,11/07/2010,11/07/2010,11/07/2010 07:03:13 PM,11/07/2010 07:05:26 PM,11/07/2010 07:06:10 PM,11/07/2010 07:06:58 PM,11/07/2010 07:08:38 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 07:09:15 PM,HYDE ST/CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",103110302-E03 +160601159,83,16023848,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:22:52 AM,02/29/2016 10:25:05 AM,02/29/2016 10:25:29 AM,02/29/2016 10:27:16 AM,02/29/2016 10:36:00 AM,02/29/2016 10:40:55 AM,02/29/2016 11:03:43 AM,Code 2 Transport,02/29/2016 12:05:33 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160601159-83 +112500109,AM02,11082409,Medical Incident,09/07/2011,09/07/2011,09/07/2011 09:40:50 AM,09/07/2011 09:41:36 AM,09/07/2011 09:41:57 AM,09/07/2011 09:42:40 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 09:46:51 AM,400 Block of SCOTT ST,SF,94117,B05,21,4141,3,3,3,false,,1,PRIVATE,3,5,5,Hayes Valley,"(37.7738199257134, -122.43577759366)",112500109-AM02 +131370391,55,13046452,Structure Fire,05/17/2013,05/17/2013,05/17/2013 11:04:42 PM,05/17/2013 11:05:30 PM,05/17/2013 11:06:02 PM,05/17/2013 11:08:19 PM,05/17/2013 11:16:12 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/17/2013 11:18:49 PM,0 Block of KNOLLVIEW WAY,SF,94131,B08,20,5361,3,3,3,true,Alarm,1,MEDIC,8,8,7,Twin Peaks,"(37.7500309334752, -122.451132948475)",131370391-55 +112650241,E40,11087550,Medical Incident,09/22/2011,09/22/2011,09/22/2011 01:59:27 PM,09/22/2011 02:01:02 PM,09/22/2011 02:01:48 PM,09/22/2011 02:02:42 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,Other,09/22/2011 02:05:41 PM,19TH AV/ULLOA ST,SF,94116,B08,40,7415,3,2,2,false,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7411866396813, -122.475539786188)",112650241-E40 +122840139,E19,12093916,Medical Incident,10/10/2012,10/10/2012,10/10/2012 12:02:50 PM,10/10/2012 12:03:12 PM,10/10/2012 12:03:25 PM,10/10/2012 12:04:10 PM,10/10/2012 12:07:00 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 12:30:25 PM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",122840139-E19 +120100115,55,12003421,Medical Incident,01/10/2012,01/10/2012,01/10/2012 10:05:38 AM,01/10/2012 10:06:18 AM,01/10/2012 10:06:50 AM,01/10/2012 10:06:59 AM,01/10/2012 10:13:46 AM,01/10/2012 10:36:56 AM,01/10/2012 11:04:07 AM,Code 2 Transport,01/10/2012 11:10:45 AM,6TH ST/MISSION ST,SF,94103,B03,1,2251,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",120100115-55 +160831040,82,16032889,Medical Incident,03/23/2016,03/23/2016,03/23/2016 09:23:13 AM,03/23/2016 09:26:32 AM,03/23/2016 09:26:56 AM,03/23/2016 09:27:11 AM,03/23/2016 09:37:51 AM,03/23/2016 10:24:02 AM,03/23/2016 10:54:54 AM,Code 2 Transport,03/23/2016 11:49:59 AM,0 Block of CHURCH ST,San Francisco,94114,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",160831040-82 +160111078,KM15,16004332,Medical Incident,01/11/2016,01/11/2016,01/11/2016 10:10:59 AM,01/11/2016 10:12:41 AM,01/11/2016 10:13:24 AM,01/11/2016 10:14:47 AM,01/11/2016 10:24:51 AM,01/11/2016 10:50:21 AM,01/11/2016 11:00:34 AM,Code 2 Transport,01/11/2016 11:39:18 AM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",160111078-KM15 +112400009,E03,11079057,Structure Fire,08/28/2011,08/27/2011,08/28/2011 12:43:05 AM,08/28/2011 12:43:05 AM,08/28/2011 12:43:10 AM,08/28/2011 12:44:34 AM,08/28/2011 12:45:00 AM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Fire,08/28/2011 12:45:52 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",112400009-E03 +122190164,E18,12072637,Medical Incident,08/06/2012,08/06/2012,08/06/2012 12:12:51 PM,08/06/2012 12:13:31 PM,08/06/2012 12:13:41 PM,08/06/2012 12:16:45 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/06/2012 12:18:49 PM,2100 Block of 20TH AVE,SF,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7476622873216, -122.477157809386)",122190164-E18 +130220091,AM04,13007511,Medical Incident,01/22/2013,01/22/2013,01/22/2013 08:31:51 AM,01/22/2013 08:32:42 AM,01/22/2013 08:32:48 AM,01/22/2013 08:33:25 AM,01/22/2013 08:37:15 AM,01/22/2013 08:56:04 AM,01/22/2013 09:09:34 AM,Code 2 Transport,01/22/2013 10:03:51 AM,300 Block of UTAH ST,SF,94103,B02,29,2416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7651908103714, -122.406559981453)",130220091-AM04 +110860149,92,11028343,Medical Incident,03/27/2011,03/27/2011,03/27/2011 09:42:46 AM,03/27/2011 09:43:26 AM,03/27/2011 09:43:33 AM,04/25/2016 02:05:25 PM,03/27/2011 09:45:06 AM,03/27/2011 10:12:20 AM,03/27/2011 10:32:34 AM,Code 2 Transport,03/27/2011 10:51:00 AM,1300 Block of 20TH AVE,SF,94122,B08,22,7424,3,3,3,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7625869726576, -122.47805731643)",110860149-92 +123570093,81,12119435,Medical Incident,12/22/2012,12/22/2012,12/22/2012 08:25:41 AM,12/22/2012 08:27:36 AM,12/22/2012 08:29:41 AM,12/22/2012 08:30:01 AM,12/22/2012 08:33:41 AM,12/22/2012 08:47:04 AM,12/22/2012 08:56:17 AM,Code 3 Transport,12/22/2012 09:38:41 AM,700 Block of FUNSTON AVE,SF,94118,B07,31,7144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7740978841783, -122.471237469015)",123570093-81 +130630204,E01,13021102,Structure Fire,03/04/2013,03/04/2013,03/04/2013 12:55:04 PM,03/04/2013 12:55:04 PM,03/04/2013 12:55:11 PM,03/04/2013 12:55:45 PM,03/04/2013 12:58:36 PM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 12:59:07 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",130630204-E01 +160133844,AM20,16005357,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:02:02 PM,01/13/2016 09:02:25 PM,01/13/2016 09:03:06 PM,01/13/2016 09:03:49 PM,01/13/2016 09:07:47 PM,01/13/2016 09:25:47 PM,01/13/2016 09:29:59 PM,Code 2 Transport,01/13/2016 10:00:44 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,false,Non Life-threatening,1,PRIVATE,3,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",160133844-AM20 +133010322,KM01,13102391,Medical Incident,10/28/2013,10/28/2013,10/28/2013 05:47:16 PM,10/28/2013 05:47:25 PM,10/28/2013 05:47:38 PM,10/28/2013 05:48:09 PM,10/28/2013 05:54:00 PM,10/28/2013 06:09:43 PM,10/28/2013 06:24:52 PM,Code 2 Transport,10/28/2013 06:31:21 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",133010322-KM01 +121890125,E13,12062920,Medical Incident,07/07/2012,07/07/2012,07/07/2012 10:35:55 AM,07/07/2012 10:36:21 AM,07/07/2012 10:37:31 AM,07/07/2012 10:37:45 AM,07/07/2012 10:39:20 AM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/07/2012 10:49:58 AM,FRONT ST/GREEN ST,SF,94111,B01,13,1153,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8006071207221, -122.40025046408)",121890125-E13 +140280284,AM24,14009613,Medical Incident,01/28/2014,01/28/2014,01/28/2014 04:45:21 PM,01/28/2014 04:46:54 PM,01/28/2014 04:49:05 PM,01/28/2014 04:49:46 PM,01/28/2014 05:01:59 PM,01/28/2014 05:13:16 PM,01/28/2014 05:39:44 PM,Code 2 Transport,01/28/2014 06:08:20 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",140280284-AM24 +131850393,B09,13063227,Outside Fire,07/04/2013,07/04/2013,07/04/2013 10:25:08 PM,07/04/2013 10:28:24 PM,07/04/2013 10:31:29 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 11:07:04 PM,200 Block of SAN JOSE AVE,SF,94110,B09,15,8313,3,3,3,false,Fire,1,CHIEF,4,6,8,Mission,"(37.7512439644709, -122.421585334305)",131850393-B09 +160263233,66,16010432,Medical Incident,01/26/2016,01/26/2016,01/26/2016 07:10:16 PM,01/26/2016 07:12:14 PM,01/26/2016 07:12:48 PM,01/26/2016 07:13:02 PM,01/26/2016 07:56:31 PM,01/26/2016 08:00:11 PM,01/26/2016 08:03:34 PM,Code 2 Transport,01/26/2016 09:00:50 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",160263233-66 +160011307,71,16000237,Structure Fire,01/01/2016,12/31/2015,01/01/2016 07:48:38 AM,01/01/2016 07:48:38 AM,01/01/2016 07:53:10 AM,01/01/2016 07:55:59 AM,01/01/2016 07:59:38 AM,01/01/2016 08:19:27 AM,01/01/2016 08:23:33 AM,Code 2 Transport,01/01/2016 08:44:09 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",160011307-71 +111830124,E07,11060382,Medical Incident,07/02/2011,07/02/2011,07/02/2011 10:56:58 AM,07/02/2011 10:58:47 AM,07/02/2011 11:00:09 AM,07/02/2011 11:02:47 AM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,07/02/2011 11:03:59 AM,SOUTH VAN NESS AV/22ND ST,SF,94110,B06,7,5455,3,3,3,true,,1,ENGINE,3,6,9,Mission,"(37.7555682781294, -122.416566643053)",111830124-E07 +112350255,94,11077601,Medical Incident,08/23/2011,08/23/2011,08/23/2011 03:13:17 PM,08/23/2011 03:14:30 PM,08/23/2011 03:15:03 PM,08/23/2011 03:15:46 PM,08/23/2011 03:26:19 PM,08/23/2011 03:44:50 PM,08/23/2011 03:51:00 PM,Code 2 Transport,08/23/2011 04:15:21 PM,1700 Block of MARKET ST,SF,94102,B02,36,3311,1,1,2,true,,1,MEDIC,1,2,5,Hayes Valley,"(37.7722683129989, -122.423098219736)",112350255-94 +160440224,76,16017545,Medical Incident,02/13/2016,02/12/2016,02/13/2016 01:29:37 AM,02/13/2016 01:31:40 AM,02/13/2016 01:33:32 AM,02/13/2016 01:33:41 AM,02/13/2016 01:36:32 AM,02/13/2016 01:42:31 AM,02/13/2016 01:57:02 AM,Code 2 Transport,02/13/2016 02:31:11 AM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",160440224-76 +111800134,E16,11059386,Water Rescue,06/29/2011,06/29/2011,06/29/2011 11:46:55 AM,06/29/2011 11:48:31 AM,06/29/2011 11:50:08 AM,06/29/2011 11:51:08 AM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Fire,06/29/2011 12:49:52 PM,900 Block of 3RD ST,SF,94158,B03,8,946,3,3,3,true,,1,ENGINE,13,None,6,None,"(37.7765531472403, -122.390007762623)",111800134-E16 +110420364,E03,11014060,Medical Incident,02/11/2011,02/11/2011,02/11/2011 08:43:26 PM,02/11/2011 08:44:33 PM,02/11/2011 08:44:48 PM,02/11/2011 08:46:01 PM,02/11/2011 08:49:51 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 09:03:21 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,1,2,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",110420364-E03 +112720358,81,11090092,Medical Incident,09/29/2011,09/29/2011,09/29/2011 10:31:25 PM,09/29/2011 10:33:26 PM,09/29/2011 10:33:45 PM,09/29/2011 10:34:49 PM,09/29/2011 10:40:45 PM,09/29/2011 10:48:41 PM,09/29/2011 11:06:22 PM,Code 2 Transport,09/29/2011 11:51:10 PM,3300 Block of MARKET ST,SF,94114,B05,24,5271,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7579292066111, -122.443571515688)",112720358-81 +130020052,E14,13000537,Medical Incident,01/02/2013,01/01/2013,01/02/2013 05:40:40 AM,01/02/2013 05:41:40 AM,01/02/2013 05:46:10 AM,04/25/2016 01:55:00 PM,01/02/2013 05:48:53 AM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 05:56:29 AM,6300 Block of GEARY BLVD,SF,94121,B07,14,7226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7800899146648, -122.48741856209)",130020052-E14 +160340095,AM24,16013211,Medical Incident,02/03/2016,02/02/2016,02/03/2016 12:48:10 AM,02/03/2016 12:48:10 AM,02/03/2016 12:49:21 AM,02/03/2016 12:50:05 AM,02/03/2016 01:16:08 AM,02/03/2016 01:27:47 AM,02/03/2016 01:40:36 AM,Code 2 Transport,02/03/2016 02:08:43 AM,300 Block of RAYMOND AVE,San Francisco,94134,B09,44,6264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.714134744642, -122.410232764113)",160340095-AM24 +120780186,KM02,12025873,Medical Incident,03/18/2012,03/18/2012,03/18/2012 11:21:11 AM,03/18/2012 11:22:11 AM,03/18/2012 11:22:20 AM,03/18/2012 11:24:26 AM,03/18/2012 11:30:39 AM,03/18/2012 11:52:12 AM,03/18/2012 12:06:58 PM,Code 2 Transport,03/18/2012 12:45:43 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",120780186-KM02 +160112822,87,16004512,Outside Fire,01/11/2016,01/11/2016,01/11/2016 06:20:53 PM,01/11/2016 06:20:53 PM,01/11/2016 06:32:34 PM,01/11/2016 06:33:02 PM,01/11/2016 06:40:59 PM,01/11/2016 07:00:59 PM,01/11/2016 07:29:36 PM,Code 2 Transport,01/11/2016 08:01:20 PM,400 Block of NATOMA ST,San Francisco,94103,B03,1,2252,3,3,3,true,Fire,1,MEDIC,2,3,6,South of Market,"(37.7806950637682, -122.40692070933)",160112822-87 +160340214,AM24,16013226,Medical Incident,02/03/2016,02/02/2016,02/03/2016 02:33:10 AM,02/03/2016 02:35:36 AM,02/03/2016 02:35:59 AM,02/03/2016 02:36:29 AM,02/03/2016 02:44:14 AM,02/03/2016 03:05:59 AM,02/03/2016 03:21:54 AM,Code 2 Transport,02/03/2016 03:49:22 AM,400 Block of MYRA WAY,San Francisco,94127,B09,39,8664,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7374773999885, -122.452652203687)",160340214-AM24 +160531863,57,16021228,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:08:29 PM,02/22/2016 02:09:36 PM,02/22/2016 02:10:05 PM,02/22/2016 02:10:23 PM,02/22/2016 02:24:38 PM,02/22/2016 02:56:11 PM,02/22/2016 02:56:12 PM,Code 2 Transport,02/22/2016 03:56:36 PM,2800 Block of BUSH ST,San Francisco,94115,B05,10,4341,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7857078594258, -122.444206026512)",160531863-57 +111600232,E14,11052924,Medical Incident,06/09/2011,06/09/2011,06/09/2011 05:00:00 PM,06/09/2011 05:00:55 PM,06/09/2011 05:01:01 PM,06/09/2011 05:02:10 PM,06/09/2011 05:03:54 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Patient Declined Transport,06/09/2011 05:08:38 PM,27TH AV/CABRILLO ST,SF,94121,B07,14,7223,3,2,2,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.774338772454, -122.486468646472)",111600232-E14 +160381796,AM04,16015213,Medical Incident,02/07/2016,02/07/2016,02/07/2016 12:55:14 PM,02/07/2016 12:55:14 PM,02/07/2016 01:06:58 PM,02/07/2016 01:06:58 PM,02/07/2016 01:07:02 PM,02/07/2016 01:12:17 PM,02/07/2016 01:35:29 PM,Code 2 Transport,02/07/2016 01:44:42 PM,2200 Block of CHESTNUT ST,San Francisco,94123,B04,16,3661,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Marina,"(37.8002979850598, -122.439895933599)",160381796-AM04 +133650333,KM10,13124067,Medical Incident,12/31/2013,12/31/2013,12/31/2013 08:01:53 PM,12/31/2013 08:01:53 PM,12/31/2013 08:01:53 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,12/31/2013 08:02:26 PM,12/31/2013 08:16:18 PM,Code 2 Transport,12/31/2013 08:46:05 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",133650333-KM10 +112720286,96,11090025,Medical Incident,09/29/2011,09/29/2011,09/29/2011 06:07:59 PM,09/29/2011 06:08:37 PM,09/29/2011 06:08:50 PM,09/29/2011 06:09:39 PM,04/25/2016 02:02:25 PM,09/29/2011 06:30:17 PM,09/29/2011 06:53:48 PM,Code 2 Transport,09/29/2011 07:22:20 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7726948236861, -122.422188261426)",112720286-96 +130020041,E17,13000527,Medical Incident,01/02/2013,01/01/2013,01/02/2013 04:55:20 AM,01/02/2013 04:56:01 AM,01/02/2013 04:56:23 AM,01/02/2013 04:58:59 AM,01/02/2013 05:01:19 AM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 05:03:54 AM,1400 Block of NEWCOMB AVE,SF,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",130020041-E17 +110950295,64,11031642,Medical Incident,04/05/2011,04/05/2011,04/05/2011 08:12:54 PM,04/05/2011 08:15:10 PM,04/05/2011 08:15:24 PM,04/05/2011 08:15:33 PM,04/05/2011 08:19:50 PM,04/05/2011 08:34:29 PM,04/05/2011 08:43:16 PM,Code 2 Transport,04/05/2011 09:16:10 PM,1500 Block of FULTON ST,SF,94117,B05,21,4346,3,3,3,true,,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.776384773708, -122.442321333784)",110950295-64 +122870139,E05,12094897,Structure Fire,10/13/2012,10/13/2012,10/13/2012 11:33:08 AM,10/13/2012 11:34:29 AM,10/13/2012 11:34:55 AM,10/13/2012 11:36:18 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/13/2012 11:38:02 AM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Alarm,1,ENGINE,11,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",122870139-E05 +160393738,79,16015819,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:31:51 PM,02/08/2016 10:33:18 PM,02/08/2016 10:33:35 PM,02/08/2016 10:33:44 PM,02/08/2016 10:37:44 PM,02/08/2016 10:48:04 PM,02/08/2016 10:56:03 PM,Code 2 Transport,02/08/2016 11:28:15 PM,300 Block of CAPP ST,San Francisco,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7611054758664, -122.418125731465)",160393738-79 +130930310,96,13031247,Medical Incident,04/03/2013,04/03/2013,04/03/2013 07:11:15 PM,04/03/2013 07:11:15 PM,04/03/2013 07:12:02 PM,04/25/2016 01:53:30 PM,04/03/2013 07:22:01 PM,04/03/2013 07:23:18 PM,04/03/2013 07:30:06 PM,Code 2 Transport,04/03/2013 07:50:32 PM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",130930310-96 +110770075,E10,11025257,Medical Incident,03/18/2011,03/17/2011,03/18/2011 06:52:32 AM,03/18/2011 06:53:22 AM,03/18/2011 06:53:41 AM,03/18/2011 06:54:57 AM,03/18/2011 06:57:51 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 07:46:14 AM,3600 Block of CALIFORNIA ST,SF,94118,B07,10,4436,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",110770075-E10 +160731136,AM06,16028950,Medical Incident,03/13/2016,03/13/2016,03/13/2016 12:13:09 PM,03/13/2016 12:13:31 PM,03/13/2016 12:14:13 PM,03/13/2016 12:14:51 PM,03/13/2016 12:20:02 PM,03/13/2016 12:32:29 PM,03/13/2016 12:54:08 PM,Code 2 Transport,03/13/2016 01:37:34 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160731136-AM06 +160570801,56,16022663,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:29:17 AM,02/26/2016 08:30:11 AM,02/26/2016 08:31:24 AM,02/26/2016 08:31:24 AM,02/26/2016 08:33:21 AM,02/26/2016 09:10:42 AM,02/26/2016 09:46:07 AM,Code 2 Transport,02/26/2016 10:11:21 AM,GREAT HY/VICENTE ST,San Francisco,94116,B08,23,7732,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7379598525566, -122.506435606778)",160570801-56 +130240153,58,13008263,Citizen Assist / Service Call,01/24/2013,01/24/2013,01/24/2013 10:47:48 AM,01/24/2013 10:49:44 AM,01/24/2013 11:05:36 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 11:09:49 AM,900 Block of EDDY ST,SF,94102,B02,5,3262,3,3,3,true,Alarm,1,MEDIC,5,2,5,Western Addition,"(37.782522418285, -122.423274430962)",130240153-58 +112180027,E16,11071927,Structure Fire,08/06/2011,08/05/2011,08/06/2011 01:13:38 AM,08/06/2011 01:13:38 AM,08/06/2011 01:13:58 AM,08/06/2011 01:15:45 AM,08/06/2011 01:16:44 AM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Fire,08/06/2011 01:17:59 AM,WEBSTER ST/LOMBARD ST,SF,94123,B04,16,3461,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8000515477468, -122.434404699853)",112180027-E16 +160463841,63,16018725,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:34:26 PM,02/15/2016 10:36:29 PM,02/15/2016 10:55:29 PM,02/15/2016 10:55:49 PM,02/15/2016 11:00:55 PM,02/15/2016 11:25:06 PM,02/15/2016 11:32:52 PM,Code 2 Transport,02/16/2016 12:03:49 AM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",160463841-63 +160773566,71,16030757,Medical Incident,03/17/2016,03/17/2016,03/17/2016 07:27:38 PM,03/17/2016 07:29:20 PM,03/17/2016 07:29:37 PM,03/17/2016 07:29:49 PM,03/17/2016 07:40:29 PM,03/17/2016 07:57:24 PM,03/17/2016 08:17:41 PM,Code 2 Transport,03/17/2016 09:04:37 PM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",160773566-71 +160360689,55,16014134,Medical Incident,02/05/2016,02/04/2016,02/05/2016 07:00:33 AM,02/05/2016 07:03:03 AM,02/05/2016 07:03:30 AM,02/05/2016 07:05:51 AM,02/05/2016 07:13:40 AM,02/05/2016 07:22:59 AM,02/05/2016 07:43:59 AM,Code 2 Transport,02/05/2016 08:08:16 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",160360689-55 +160842702,67,16033460,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:58:49 PM,03/24/2016 04:00:14 PM,03/24/2016 04:01:43 PM,03/24/2016 04:02:02 PM,03/24/2016 04:06:47 PM,03/24/2016 04:39:09 PM,03/24/2016 05:13:59 PM,Code 2 Transport,03/24/2016 05:46:58 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160842702-67 +113560199,KM11,11118210,Medical Incident,12/22/2011,12/22/2011,12/22/2011 01:19:11 PM,12/22/2011 01:20:26 PM,12/22/2011 01:20:44 PM,12/22/2011 01:21:28 PM,12/22/2011 01:27:07 PM,12/22/2011 01:35:22 PM,12/22/2011 01:44:51 PM,Code 2 Transport,12/22/2011 02:22:24 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",113560199-KM11 +102550023,65,10080496,Medical Incident,09/12/2010,09/11/2010,09/12/2010 01:22:06 AM,09/12/2010 01:25:38 AM,09/12/2010 01:25:57 AM,09/12/2010 01:28:50 AM,09/12/2010 01:31:52 AM,09/12/2010 01:42:42 AM,09/12/2010 01:51:41 AM,Code 2 Transport,09/12/2010 02:29:39 AM,TARAVAL ST/19TH AV,SF,94116,B08,40,7376,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7430518135439, -122.475644467981)",102550023-65 +111900065,B03,11062738,Alarms,07/09/2011,07/09/2011,07/09/2011 08:24:24 AM,07/09/2011 08:25:36 AM,07/09/2011 08:25:47 AM,07/09/2011 08:27:33 AM,07/09/2011 08:30:44 AM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Other,07/09/2011 08:37:06 AM,300 Block of 3RD ST,SF,94107,B03,1,2176,3,3,3,false,,1,CHIEF,3,3,6,South of Market,"(37.7833526602624, -122.398485675312)",111900065-B03 +103390337,E17,10108655,Medical Incident,12/05/2010,12/05/2010,12/05/2010 09:19:35 PM,12/05/2010 09:20:33 PM,12/05/2010 09:20:46 PM,12/05/2010 09:21:45 PM,12/05/2010 09:24:07 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 09:30:18 PM,1500 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7292122545104, -122.390956947476)",103390337-E17 +160421463,88,16016836,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:32:19 AM,02/11/2016 11:32:19 AM,02/11/2016 11:32:48 AM,02/11/2016 11:33:03 AM,02/11/2016 11:36:38 AM,02/11/2016 11:49:30 AM,02/11/2016 12:00:59 PM,Code 2 Transport,02/11/2016 12:43:34 PM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7864582323625, -122.407206735701)",160421463-88 +122560213,KM02,12084668,Medical Incident,09/12/2012,09/12/2012,09/12/2012 04:08:39 PM,09/12/2012 04:14:22 PM,09/12/2012 04:17:27 PM,04/25/2016 01:56:48 PM,09/12/2012 04:24:04 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Patient Declined Transport,09/12/2012 05:11:29 PM,1900 Block of WEBSTER ST,SF,94115,B04,38,3511,2,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.788645855655, -122.432031665816)",122560213-KM02 +121010172,T11,12033478,Traffic Collision,04/10/2012,04/10/2012,04/10/2012 12:37:47 PM,04/10/2012 12:37:47 PM,04/10/2012 12:38:17 PM,04/10/2012 12:39:16 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 12:41:57 PM,CAPP ST/25TH ST,SF,94110,B06,11,5534,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,6,9,Mission,"(37.7507051844664, -122.417200906783)",121010172-T11 +132870232,89,13097666,Medical Incident,10/14/2013,10/14/2013,10/14/2013 02:34:51 PM,10/14/2013 02:35:13 PM,10/14/2013 02:36:25 PM,10/14/2013 02:37:40 PM,10/14/2013 02:38:02 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Patient Declined Transport,10/14/2013 03:21:41 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",132870232-89 +110640032,E40,11020950,Medical Incident,03/05/2011,03/04/2011,03/05/2011 01:23:47 AM,03/05/2011 01:27:38 AM,03/05/2011 01:29:13 AM,03/05/2011 01:30:49 AM,03/05/2011 01:33:39 AM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Other,03/05/2011 01:34:52 AM,2400 Block of 26TH AVE,SF,94116,B08,40,7461,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7417893679969, -122.483058319471)",110640032-E40 +160901348,57,16035676,Medical Incident,03/30/2016,03/30/2016,03/30/2016 10:40:18 AM,03/30/2016 10:41:58 AM,03/30/2016 10:42:29 AM,03/30/2016 10:42:39 AM,03/30/2016 10:59:05 AM,03/30/2016 11:23:19 AM,03/30/2016 11:23:22 AM,Code 2 Transport,03/30/2016 11:53:19 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160901348-57 +122440181,E42,12080662,Medical Incident,08/31/2012,08/31/2012,08/31/2012 01:32:06 PM,08/31/2012 01:33:58 PM,08/31/2012 01:34:26 PM,08/31/2012 01:35:57 PM,08/31/2012 01:38:19 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,Other,08/31/2012 01:59:38 PM,1100 Block of SILVER AVE,SF,94134,B09,42,6354,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,9,Portola,"(37.7299644716829, -122.4129271346)",122440181-E42 +110390061,AM16,11012839,Medical Incident,02/08/2011,02/07/2011,02/08/2011 06:12:44 AM,02/08/2011 06:13:22 AM,02/08/2011 06:14:05 AM,02/08/2011 06:14:55 AM,04/25/2016 02:06:11 PM,02/08/2011 06:37:35 AM,02/08/2011 06:48:27 AM,Code 2 Transport,02/08/2011 07:41:17 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,,1,PRIVATE,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",110390061-AM16 +110400167,E01,11013221,Medical Incident,02/09/2011,02/09/2011,02/09/2011 11:37:05 AM,02/09/2011 11:39:43 AM,02/09/2011 11:40:17 AM,02/09/2011 11:50:16 AM,02/09/2011 11:53:16 AM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 12:24:57 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",110400167-E01 +120710050,78,12023511,Traffic Collision,03/11/2012,03/10/2012,03/11/2012 03:47:17 AM,03/11/2012 03:47:17 AM,03/11/2012 03:48:02 AM,04/25/2016 01:59:44 PM,03/11/2012 03:52:33 AM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,Other,03/11/2012 03:54:05 AM,SUTTER ST/POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",120710050-78 +110260219,E14,11008602,Medical Incident,01/26/2011,01/26/2011,01/26/2011 02:07:12 PM,01/26/2011 02:09:34 PM,01/26/2011 02:10:19 PM,01/26/2011 02:11:29 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/26/2011 02:20:56 PM,GEARY BL/25TH AV,SF,94121,B07,14,7213,2,2,2,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7800925816609, -122.484732261339)",110260219-E14 +132080045,B02,13070294,Alarms,07/27/2013,07/26/2013,07/27/2013 02:33:24 AM,07/27/2013 02:34:46 AM,07/27/2013 02:35:07 AM,07/27/2013 02:36:55 AM,07/27/2013 02:39:38 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Fire,07/27/2013 02:49:20 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",132080045-B02 +123570147,AM04,12119473,Medical Incident,12/22/2012,12/22/2012,12/22/2012 10:47:55 AM,12/22/2012 10:50:37 AM,12/22/2012 10:51:34 AM,12/22/2012 10:52:09 AM,12/22/2012 10:55:24 AM,12/22/2012 11:21:52 AM,12/22/2012 11:36:26 AM,Code 2 Transport,12/22/2012 12:08:07 PM,300 Block of DOLORES ST,SF,94110,B02,6,5251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7635158382169, -122.426118705944)",123570147-AM04 +160592203,AM04,16023583,Medical Incident,02/28/2016,02/28/2016,02/28/2016 04:19:53 PM,02/28/2016 04:21:14 PM,02/28/2016 04:21:27 PM,02/28/2016 04:22:04 PM,02/28/2016 04:25:14 PM,02/28/2016 04:39:18 PM,02/28/2016 04:53:55 PM,Code 2 Transport,02/28/2016 05:15:50 PM,1600 Block of 30TH AVE,San Francisco,94122,B08,18,7514,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7565210163368, -122.488382449456)",160592203-AM04 +102280232,81,10071818,Medical Incident,08/16/2010,08/16/2010,08/16/2010 04:12:23 PM,08/16/2010 04:13:13 PM,08/16/2010 04:14:57 PM,08/16/2010 04:15:42 PM,08/16/2010 04:25:11 PM,08/16/2010 04:37:37 PM,04/25/2016 02:09:03 PM,Code 2 Transport,08/16/2010 05:22:27 PM,4600 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7234913181355, -122.435621772842)",102280232-81 +132660318,E36,13090364,Structure Fire,09/23/2013,09/23/2013,09/23/2013 05:46:10 PM,09/23/2013 05:46:10 PM,09/23/2013 05:46:19 PM,09/23/2013 05:47:25 PM,09/23/2013 05:48:21 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/23/2013 05:48:42 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7726641818375, -122.418338317697)",132660318-E36 +140510141,E12,14017230,Alarms,02/20/2014,02/20/2014,02/20/2014 10:22:12 AM,02/20/2014 10:24:01 AM,02/20/2014 10:25:00 AM,02/20/2014 10:25:17 AM,02/20/2014 10:26:24 AM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Fire,02/20/2014 10:48:13 AM,0 Block of PARNASSUS AVE,SF,94117,B05,12,5151,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7650054157028, -122.449116319397)",140510141-E12 +111560046,99,11051463,Medical Incident,06/05/2011,06/04/2011,06/05/2011 01:58:57 AM,06/05/2011 02:01:06 AM,06/05/2011 02:01:30 AM,06/05/2011 02:01:55 AM,06/05/2011 02:08:11 AM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Patient Declined Transport,06/05/2011 02:45:39 AM,2700 Block of LOMBARD ST,SF,94123,B04,16,4326,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.7984883739853, -122.44662765351)",111560046-99 +160693018,65,16027586,Medical Incident,03/09/2016,03/09/2016,03/09/2016 06:13:57 PM,03/09/2016 06:15:57 PM,03/09/2016 06:17:22 PM,03/09/2016 06:17:31 PM,03/09/2016 06:33:35 PM,03/09/2016 07:00:44 PM,03/09/2016 07:41:03 PM,Code 2 Transport,03/09/2016 08:28:47 PM,0 Block of CRESTLINE DR,San Francisco,94131,B06,24,5284,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Twin Peaks,"(37.7501301863303, -122.446483988175)",160693018-65 +130380093,KM04,13012931,Medical Incident,02/07/2013,02/07/2013,02/07/2013 09:02:10 AM,02/07/2013 09:03:56 AM,02/07/2013 09:04:11 AM,02/07/2013 09:04:59 AM,02/07/2013 09:09:32 AM,02/07/2013 09:35:38 AM,02/07/2013 09:49:33 AM,Code 2 Transport,02/07/2013 10:26:38 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",130380093-KM04 +102250007,T07,10070705,Structure Fire,08/13/2010,08/12/2010,08/13/2010 12:56:28 AM,08/13/2010 12:56:29 AM,08/13/2010 12:56:48 AM,08/13/2010 12:58:22 AM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 01:10:06 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,556,3,3,3,false,,1,TRUCK,3,6,9,Mission,"(37.7597015509874, -122.414696971308)",102250007-T07 +160510946,AM08,16020406,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:33:16 AM,02/20/2016 09:35:12 AM,02/20/2016 09:35:37 AM,02/20/2016 09:36:24 AM,02/20/2016 09:39:28 AM,02/20/2016 10:16:20 AM,02/20/2016 10:30:06 AM,Code 2 Transport,02/20/2016 11:16:24 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160510946-AM08 +111560030,AM18,11051446,Medical Incident,06/05/2011,06/04/2011,06/05/2011 01:08:56 AM,06/05/2011 01:09:45 AM,06/05/2011 01:09:55 AM,06/05/2011 01:11:00 AM,06/05/2011 01:14:25 AM,06/05/2011 01:27:43 AM,06/05/2011 01:56:52 AM,Code 2 Transport,06/05/2011 02:34:38 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",111560030-AM18 +160730142,62,16028843,Medical Incident,03/13/2016,03/12/2016,03/13/2016 12:59:10 AM,03/13/2016 12:59:10 AM,03/13/2016 12:59:27 AM,03/13/2016 12:59:33 AM,03/13/2016 01:02:07 AM,03/13/2016 01:31:35 AM,03/13/2016 01:38:41 AM,Code 2 Transport,03/13/2016 01:57:06 AM,11TH ST/MISSION ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160730142-62 +130890133,E08,13029708,Medical Incident,03/30/2013,03/30/2013,03/30/2013 11:33:09 AM,03/30/2013 11:35:02 AM,03/30/2013 11:35:58 AM,03/30/2013 11:36:17 AM,03/30/2013 11:44:19 AM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,No Merit,03/30/2013 11:50:03 AM,6TH ST/NATOMA ST,SF,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801620260598, -122.407691417119)",130890133-E08 +160530780,AM02,16021108,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:48:57 AM,02/22/2016 08:49:34 AM,02/22/2016 08:50:13 AM,02/22/2016 08:50:58 AM,02/22/2016 09:04:12 AM,02/22/2016 09:04:15 AM,02/22/2016 09:24:29 AM,Code 2 Transport,02/22/2016 09:42:15 AM,900 Block of MISSOURI ST,San Francisco,94107,B10,37,2566,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7552453099076, -122.39565974671)",160530780-AM02 +130930340,E36,13031271,Medical Incident,04/03/2013,04/03/2013,04/03/2013 08:39:06 PM,04/03/2013 08:41:18 PM,04/03/2013 08:42:04 PM,04/03/2013 08:43:19 PM,04/03/2013 08:46:12 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Other,04/03/2013 08:49:45 PM,1300 Block of NATOMA ST,SF,94103,B02,36,5215,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7675637955338, -122.418410340467)",130930340-E36 +133130362,E05,13106533,Medical Incident,11/09/2013,11/09/2013,11/09/2013 07:56:54 PM,11/09/2013 08:01:37 PM,11/09/2013 08:09:46 PM,11/09/2013 08:10:16 PM,11/09/2013 08:12:47 PM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Patient Declined Transport,11/09/2013 08:29:20 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",133130362-E05 +160832501,71,16033013,Medical Incident,03/23/2016,03/23/2016,03/23/2016 03:25:40 PM,03/23/2016 03:25:40 PM,03/23/2016 03:26:01 PM,03/23/2016 03:26:17 PM,03/23/2016 03:29:49 PM,03/23/2016 03:49:58 PM,03/23/2016 03:54:53 PM,Code 2 Transport,03/23/2016 04:23:49 PM,3300 Block of 25TH ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7508088628081, -122.416394801639)",160832501-71 +103360169,RS2,10107474,Structure Fire,12/02/2010,12/02/2010,12/02/2010 12:20:07 PM,12/02/2010 12:20:54 PM,12/02/2010 12:21:26 PM,12/02/2010 12:23:21 PM,12/02/2010 12:28:49 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/02/2010 12:32:19 PM,4200 Block of 22ND ST,SF,94114,B06,24,5463,3,3,3,false,,1,RESCUE SQUAD,7,6,8,Noe Valley,"(37.7540784989199, -122.440387557495)",103360169-RS2 +133320110,KM06,13112630,Medical Incident,11/28/2013,11/28/2013,11/28/2013 11:47:28 AM,11/28/2013 11:48:07 AM,11/28/2013 11:48:26 AM,11/28/2013 11:49:05 AM,11/28/2013 11:56:27 AM,11/28/2013 12:16:42 PM,11/28/2013 12:26:24 PM,Code 2 Transport,11/28/2013 12:57:32 PM,800 Block of WISCONSIN ST,SF,94107,B10,37,2544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7565749650827, -122.398800339981)",133320110-KM06 +121930076,89,12064171,Medical Incident,07/11/2012,07/10/2012,07/11/2012 07:11:55 AM,07/11/2012 07:13:25 AM,07/11/2012 07:14:52 AM,07/11/2012 07:16:02 AM,07/11/2012 07:23:50 AM,07/11/2012 07:34:32 AM,07/11/2012 07:55:16 AM,Code 2 Transport,07/11/2012 08:21:50 AM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7756454671917, -122.412432457912)",121930076-89 +160341607,KM12,16013371,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:25:30 PM,02/03/2016 12:26:03 PM,02/03/2016 12:27:01 PM,02/03/2016 12:27:33 PM,02/03/2016 12:34:50 PM,02/03/2016 12:58:53 PM,02/03/2016 01:25:06 PM,Code 2 Transport,02/03/2016 02:02:18 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7677331022924, -122.415606951318)",160341607-KM12 +111380281,E07,11045960,Structure Fire,05/18/2011,05/18/2011,05/18/2011 05:52:26 PM,05/18/2011 05:52:27 PM,05/18/2011 05:52:41 PM,05/18/2011 05:53:59 PM,05/18/2011 05:55:36 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 05:56:02 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",111380281-E07 +121750418,RS1,12058314,Medical Incident,06/23/2012,06/23/2012,06/23/2012 10:36:43 PM,06/23/2012 10:37:19 PM,06/23/2012 10:37:28 PM,06/23/2012 10:38:23 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 10:39:31 PM,MARKET ST/6TH ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7822305756448, -122.410292026777)",121750418-RS1 +160223218,KM12,16008900,Medical Incident,01/22/2016,01/22/2016,01/22/2016 07:22:41 PM,01/22/2016 07:22:41 PM,01/22/2016 07:23:13 PM,01/22/2016 07:23:42 PM,01/22/2016 07:32:00 PM,01/22/2016 07:56:00 PM,01/22/2016 08:17:20 PM,Code 2 Transport,01/22/2016 08:52:05 PM,2100 Block of MARKET ST,San Francisco,94114,B05,6,5231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",160223218-KM12 +130450181,E13,13015247,Vehicle Fire,02/14/2013,02/14/2013,02/14/2013 11:59:33 AM,02/14/2013 12:00:50 PM,02/14/2013 12:01:47 PM,04/25/2016 01:54:18 PM,02/14/2013 12:04:15 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Fire,02/14/2013 12:22:28 PM,800 Block of BATTERY ST,SF,94111,B01,13,1155,3,3,3,true,Fire,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7990643005082, -122.401077389929)",130450181-E13 +102500054,85,10078905,Medical Incident,09/07/2010,09/06/2010,09/07/2010 07:07:42 AM,09/07/2010 07:08:14 AM,09/07/2010 07:08:28 AM,09/07/2010 07:10:42 AM,09/07/2010 07:16:04 AM,09/07/2010 07:37:02 AM,09/07/2010 08:14:01 AM,Code 2 Transport,09/07/2010 08:43:58 AM,0 Block of RHINE ST,SF,94112,B09,33,8364,3,3,3,true,,1,MEDIC,2,9,11,Outer Mission,"(37.7094010318368, -122.460892914576)",102500054-85 +111180055,85,11038829,Medical Incident,04/28/2011,04/27/2011,04/28/2011 07:00:58 AM,04/28/2011 07:01:33 AM,04/28/2011 07:02:09 AM,04/28/2011 07:04:31 AM,04/28/2011 07:09:25 AM,04/28/2011 07:27:32 AM,04/28/2011 07:56:48 AM,Code 2 Transport,04/28/2011 08:17:20 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",111180055-85 +111110230,58,11036693,Traffic Collision,04/21/2011,04/21/2011,04/21/2011 02:54:26 PM,04/21/2011 02:55:51 PM,04/21/2011 02:56:32 PM,04/21/2011 02:57:31 PM,04/21/2011 03:11:54 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Patient Declined Transport,04/21/2011 03:27:18 PM,HAYES ST/SCOTT ST,SF,94117,B05,21,4136,2,2,2,true,,1,MEDIC,2,5,5,Hayes Valley,"(37.77520593025, -122.436128964162)",111110230-58 +140730123,54,14024597,Medical Incident,03/14/2014,03/14/2014,03/14/2014 10:55:32 AM,03/14/2014 10:56:46 AM,03/14/2014 10:59:18 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Code 2 Transport,04/25/2016 01:47:45 PM,1200 Block of MARKET ST,SAN FRANCISCO,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",140730123-54 +113180350,KM07,11105788,Medical Incident,11/14/2011,11/14/2011,11/14/2011 10:53:20 PM,11/14/2011 10:54:36 PM,11/14/2011 10:54:50 PM,11/14/2011 10:56:26 PM,11/14/2011 11:01:28 PM,11/14/2011 11:17:59 PM,11/14/2011 11:36:06 PM,Code 2 Transport,11/15/2011 12:11:55 AM,300 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",113180350-KM07 +160650484,AM20,16025814,Medical Incident,03/05/2016,03/04/2016,03/05/2016 04:07:00 AM,03/05/2016 04:07:37 AM,03/05/2016 04:07:51 AM,03/05/2016 04:08:35 AM,03/05/2016 04:14:55 AM,03/05/2016 04:46:31 AM,03/05/2016 04:59:13 AM,Code 2 Transport,03/05/2016 05:27:20 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",160650484-AM20 +102430182,AP,10076629,Other,08/31/2010,08/31/2010,08/31/2010 12:31:59 PM,08/31/2010 12:31:59 PM,08/31/2010 12:31:59 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Fire,08/31/2010 12:32:20 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102430182-AP +160572142,AM16,16022796,Medical Incident,02/26/2016,02/26/2016,02/26/2016 02:48:09 PM,02/26/2016 02:48:09 PM,02/26/2016 02:50:30 PM,02/26/2016 02:51:05 PM,02/26/2016 03:16:10 PM,02/26/2016 03:31:03 PM,02/26/2016 03:48:53 PM,Code 2 Transport,02/26/2016 04:15:38 PM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160572142-AM16 +160230952,79,16009087,Medical Incident,01/23/2016,01/23/2016,01/23/2016 09:01:04 AM,01/23/2016 09:03:15 AM,01/23/2016 09:03:29 AM,01/23/2016 09:03:36 AM,01/23/2016 09:12:05 AM,01/23/2016 09:21:55 AM,01/23/2016 09:34:57 AM,Code 2 Transport,01/23/2016 09:53:08 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160230952-79 +121280299,T02,12042686,Outside Fire,05/07/2012,05/07/2012,05/07/2012 04:59:29 PM,05/07/2012 04:59:30 PM,05/07/2012 04:59:50 PM,05/07/2012 05:02:40 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 05:07:02 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Alarm,1,TRUCK,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",121280299-T02 +160920013,87,16036275,Medical Incident,04/01/2016,03/31/2016,04/01/2016 12:02:49 AM,04/01/2016 12:04:01 AM,04/01/2016 12:05:03 AM,04/01/2016 12:06:06 AM,04/01/2016 12:09:05 AM,04/01/2016 12:23:21 AM,04/01/2016 12:43:26 AM,Code 2 Transport,04/01/2016 01:15:58 AM,5TH ST/BRANNAN ST,San Francisco,94107,B03,8,2241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7765683820103, -122.398755450545)",160920013-87 +160183494,KM07,16007422,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:01:24 PM,01/18/2016 11:02:50 PM,01/18/2016 11:04:43 PM,01/18/2016 11:04:46 PM,01/18/2016 11:12:35 PM,01/18/2016 11:16:25 PM,01/18/2016 11:25:35 PM,Code 2 Transport,01/18/2016 11:54:03 PM,1000 Block of NOE ST,San Francisco,94114,B06,11,5522,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",160183494-KM07 +133550346,E25,13120798,Structure Fire,12/21/2013,12/21/2013,12/21/2013 06:45:55 PM,12/21/2013 06:45:55 PM,12/21/2013 06:46:05 PM,12/21/2013 06:47:55 PM,12/21/2013 06:48:53 PM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Other,12/21/2013 06:49:09 PM,3RD ST/JERROLD AV,SF,94124,B10,25,6467,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7387419299442, -122.389310056266)",133550346-E25 +160583894,AM24,16023323,Medical Incident,02/27/2016,02/27/2016,02/27/2016 11:04:49 PM,02/27/2016 11:06:29 PM,02/27/2016 11:07:38 PM,02/27/2016 11:08:27 PM,02/27/2016 11:19:31 PM,02/27/2016 11:46:03 PM,02/27/2016 11:59:53 PM,Code 2 Transport,02/28/2016 12:28:13 AM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",160583894-AM24 +103400350,93,10108971,Medical Incident,12/06/2010,12/06/2010,12/06/2010 10:08:29 PM,12/06/2010 10:10:15 PM,12/06/2010 10:10:25 PM,12/06/2010 10:11:03 PM,12/06/2010 10:16:06 PM,12/06/2010 10:39:21 PM,12/06/2010 10:49:28 PM,Code 2 Transport,12/06/2010 11:17:44 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",103400350-93 +121800124,E03,12059874,Medical Incident,06/28/2012,06/28/2012,06/28/2012 09:43:28 AM,06/28/2012 09:45:22 AM,06/28/2012 09:46:09 AM,06/28/2012 09:46:52 AM,06/28/2012 09:49:58 AM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/28/2012 10:01:12 AM,500 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7869413406164, -122.411939021128)",121800124-E03 +130250200,KM14,13008631,Medical Incident,01/25/2013,01/25/2013,01/25/2013 12:50:52 PM,01/25/2013 12:52:51 PM,01/25/2013 12:53:19 PM,01/25/2013 12:54:02 PM,04/25/2016 01:54:37 PM,01/25/2013 01:12:10 PM,01/25/2013 01:21:12 PM,Code 2 Transport,01/25/2013 01:53:30 PM,1600 Block of VALLEJO ST,SF,94123,B04,38,3232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7965319488523, -122.424414630029)",130250200-KM14 +131830313,93,13062466,Traffic Collision,07/02/2013,07/02/2013,07/02/2013 07:24:08 PM,07/02/2013 07:25:38 PM,07/02/2013 07:27:01 PM,07/02/2013 07:27:13 PM,07/02/2013 07:40:30 PM,07/02/2013 07:50:04 PM,07/02/2013 08:01:36 PM,Code 2 Transport,07/02/2013 08:37:08 PM,300 Block of BRYANT ST,SF,94107,B03,35,2135,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7839080570669, -122.392433239348)",131830313-93 +160721022,72,16028533,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:46:44 AM,03/12/2016 09:47:01 AM,03/12/2016 09:47:23 AM,03/12/2016 09:47:51 AM,03/12/2016 09:52:26 AM,03/12/2016 10:10:59 AM,03/12/2016 10:19:13 AM,Code 3 Transport,03/12/2016 11:35:26 AM,200 Block of MINERVA ST,San Francisco,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7156918777367, -122.460860536014)",160721022-72 +102950224,66,10094114,Medical Incident,10/22/2010,10/22/2010,10/22/2010 01:53:53 PM,10/22/2010 01:54:15 PM,10/22/2010 01:55:19 PM,10/22/2010 01:57:36 PM,04/25/2016 02:07:59 PM,10/22/2010 02:16:09 PM,10/22/2010 02:30:12 PM,Code 2 Transport,10/22/2010 02:55:13 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",102950224-66 +110890046,E18,11029278,Structure Fire,03/30/2011,03/29/2011,03/30/2011 03:25:00 AM,03/30/2011 03:25:54 AM,03/30/2011 03:26:02 AM,03/30/2011 03:27:23 AM,03/30/2011 03:33:00 AM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 04:16:46 AM,1300 Block of LAWTON ST,SF,94122,B08,22,7427,3,3,3,true,,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7579991229146, -122.4772494747)",110890046-E18 +111030150,60,11034104,Medical Incident,04/13/2011,04/13/2011,04/13/2011 11:34:57 AM,04/13/2011 11:37:02 AM,04/13/2011 11:38:02 AM,04/13/2011 11:38:36 AM,04/13/2011 11:44:32 AM,04/13/2011 11:57:29 AM,04/13/2011 12:11:06 PM,Code 2 Transport,04/13/2011 12:34:51 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7816524457175, -122.415083177799)",111030150-60 +123410203,T16,12113790,Structure Fire,12/06/2012,12/06/2012,12/06/2012 12:14:51 PM,12/06/2012 12:17:30 PM,12/06/2012 12:17:57 PM,12/06/2012 12:19:07 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/06/2012 12:22:46 PM,2100 Block of DIVISADERO ST,SF,94115,B04,10,4161,3,3,3,false,Alarm,1,TRUCK,8,4,2,Pacific Heights,"(37.7894494127185, -122.440600844327)",123410203-T16 +160460517,88,16018406,Medical Incident,02/15/2016,02/14/2016,02/15/2016 05:37:45 AM,02/15/2016 05:39:23 AM,02/15/2016 05:39:29 AM,02/15/2016 05:39:50 AM,02/15/2016 05:44:30 AM,02/15/2016 05:57:06 AM,02/15/2016 06:05:58 AM,Code 2 Transport,02/15/2016 06:37:37 AM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842224754433, -122.404037898963)",160460517-88 +160872422,KM04,16034634,Medical Incident,03/27/2016,03/27/2016,03/27/2016 04:08:04 PM,03/27/2016 04:09:46 PM,03/27/2016 04:10:18 PM,03/27/2016 04:10:53 PM,03/27/2016 04:15:22 PM,03/27/2016 04:36:43 PM,03/27/2016 05:06:26 PM,Code 2 Transport,03/27/2016 05:52:30 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",160872422-KM04 +123300006,E15,12109568,Medical Incident,11/25/2012,11/24/2012,11/25/2012 12:20:03 AM,11/25/2012 12:20:32 AM,11/25/2012 12:20:54 AM,11/25/2012 12:22:25 AM,11/25/2012 12:26:12 AM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 12:52:06 AM,0 Block of MINERVA ST,SF,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7158849109873, -122.454797121611)",123300006-E15 +102940313,AM10,10093867,Medical Incident,10/21/2010,10/21/2010,10/21/2010 08:06:44 PM,10/21/2010 08:10:13 PM,10/21/2010 08:10:47 PM,04/25/2016 02:08:00 PM,10/21/2010 08:11:56 PM,10/21/2010 08:19:13 PM,10/21/2010 08:26:43 PM,Code 2 Transport,10/21/2010 08:11:17 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",102940313-AM10 +121780345,E06,12059392,Structure Fire,06/26/2012,06/26/2012,06/26/2012 08:45:33 PM,06/26/2012 08:45:33 PM,06/26/2012 08:45:47 PM,06/26/2012 08:46:39 PM,06/26/2012 08:50:24 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 08:52:42 PM,17TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7635716035073, -122.41733240732)",121780345-E06 +111250129,E12,11041314,Medical Incident,05/05/2011,05/05/2011,05/05/2011 10:35:11 AM,05/05/2011 10:35:41 AM,05/05/2011 10:36:10 AM,05/05/2011 10:36:35 AM,05/05/2011 10:37:51 AM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 10:44:00 AM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,3,2,2,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",111250129-E12 +131230317,RS1,13041552,Medical Incident,05/03/2013,05/03/2013,05/03/2013 04:05:57 PM,05/03/2013 04:06:08 PM,05/03/2013 04:06:48 PM,05/03/2013 04:08:20 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 04:10:44 PM,600 Block of 3RD ST,SF,94107,B03,8,2172,3,3,3,false,Non Life-threatening,1,RESCUE SQUAD,4,3,6,Financial District/South Beach,"(37.7795094454815, -122.393475822659)",131230317-RS1 +123130011,E06,12103999,Medical Incident,11/08/2012,11/07/2012,11/08/2012 12:37:56 AM,11/08/2012 12:38:27 AM,11/08/2012 12:40:04 AM,11/08/2012 12:48:54 AM,11/08/2012 12:50:48 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/08/2012 12:58:07 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",123130011-E06 +140720118,AM02,14024263,Medical Incident,03/13/2014,03/13/2014,03/13/2014 08:55:16 AM,03/13/2014 08:57:04 AM,03/13/2014 08:57:19 AM,03/13/2014 08:58:26 AM,03/13/2014 09:04:31 AM,03/13/2014 09:14:46 AM,03/13/2014 09:22:34 AM,Code 2 Transport,03/13/2014 09:59:07 AM,900 Block of POTRERO AVE,SAN FRANCISCO,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",140720118-AM02 +102340181,B02,10073625,Structure Fire,08/22/2010,08/22/2010,08/22/2010 01:26:32 PM,08/22/2010 01:29:23 PM,08/22/2010 01:29:53 PM,08/22/2010 01:31:34 PM,08/22/2010 01:35:40 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 01:39:15 PM,1900 Block of OAK ST,SF,94117,B05,12,4544,3,3,3,false,,1,CHIEF,6,5,5,Haight Ashbury,"(37.7713013028881, -122.451412659858)",102340181-B02 +160851583,AM10,16033746,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:50:17 AM,03/25/2016 11:55:49 AM,03/25/2016 12:01:03 PM,03/25/2016 12:01:38 PM,03/25/2016 12:09:51 PM,03/25/2016 12:25:11 PM,03/25/2016 12:39:46 PM,Code 2 Transport,03/25/2016 01:11:03 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160851583-AM10 +123050151,AM06,12101172,Medical Incident,10/31/2012,10/31/2012,10/31/2012 10:57:26 AM,10/31/2012 10:58:37 AM,10/31/2012 11:00:37 AM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/31/2012 11:07:03 AM,600 Block of THE EMBARCADERO,SF,94111,B01,13,909,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",123050151-AM06 +160182942,AM22,16007362,Medical Incident,01/18/2016,01/18/2016,01/18/2016 07:46:12 PM,01/18/2016 07:47:00 PM,01/18/2016 07:48:00 PM,01/18/2016 07:48:59 PM,01/18/2016 07:51:07 PM,01/18/2016 07:58:55 PM,01/18/2016 08:25:32 PM,Code 2 Transport,01/18/2016 08:42:08 PM,100 Block of THE EMBARCADERO,San Francisco,94111,B01,13,901,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7953080071145, -122.3938439729)",160182942-AM22 +160552965,58,16022092,Medical Incident,02/24/2016,02/24/2016,02/24/2016 05:27:06 PM,02/24/2016 05:28:19 PM,02/24/2016 05:28:45 PM,02/24/2016 05:29:00 PM,02/24/2016 05:48:56 PM,02/24/2016 05:48:57 PM,02/24/2016 05:54:43 PM,Code 3 Transport,02/24/2016 06:49:50 PM,300 Block of MUNICH ST,San Francisco,94112,B09,43,6163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7200682259192, -122.427352796378)",160552965-58 +131540136,E33,13052120,High Angle Rescue,06/03/2013,06/03/2013,06/03/2013 10:30:45 AM,06/03/2013 10:32:35 AM,06/03/2013 10:34:10 AM,06/03/2013 10:36:24 AM,06/03/2013 10:42:54 AM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/03/2013 11:49:38 AM,500 Block of SKYLINE BLVD,SF,94132,B08,19,8772,3,3,3,true,Fire,1,ENGINE,4,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",131540136-E33 +130370193,E23,13012700,Medical Incident,02/06/2013,02/06/2013,02/06/2013 01:25:05 PM,02/06/2013 01:25:48 PM,02/06/2013 01:26:43 PM,04/25/2016 01:54:26 PM,02/06/2013 01:27:58 PM,04/25/2016 01:54:26 PM,04/25/2016 01:54:26 PM,Other,02/06/2013 02:11:17 PM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",130370193-E23 +132330117,T03,13078617,Alarms,08/21/2013,08/21/2013,08/21/2013 10:11:53 AM,08/21/2013 10:13:07 AM,08/21/2013 10:13:34 AM,08/21/2013 10:14:39 AM,08/21/2013 10:16:58 AM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/21/2013 10:22:47 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",132330117-T03 +121950128,E33,12064858,Medical Incident,07/13/2012,07/13/2012,07/13/2012 10:53:49 AM,07/13/2012 10:55:34 AM,07/13/2012 10:55:50 AM,07/13/2012 10:56:58 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/13/2012 10:59:17 AM,0 Block of POPE ST,SF,94112,B09,43,6176,E,E,3,true,Potentially Life-Threatening,1,ENGINE,4,9,11,Excelsior,"(37.7142931903001, -122.441384223845)",121950128-E33 +130020013,AM18,13000500,Medical Incident,01/02/2013,01/01/2013,01/02/2013 01:51:27 AM,01/02/2013 01:53:34 AM,01/02/2013 01:53:56 AM,01/02/2013 01:54:12 AM,01/02/2013 02:00:54 AM,01/02/2013 02:12:15 AM,01/02/2013 02:22:43 AM,Code 2 Transport,01/02/2013 02:54:04 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",130020013-AM18 +160461554,61,16018499,Medical Incident,02/15/2016,02/15/2016,02/15/2016 12:33:04 PM,02/15/2016 12:33:04 PM,02/15/2016 12:33:41 PM,02/15/2016 12:33:55 PM,02/15/2016 12:36:53 PM,02/15/2016 12:44:23 PM,02/15/2016 12:53:23 PM,Code 2 Transport,02/15/2016 01:17:59 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7596933117757, -122.414834950578)",160461554-61 +111640108,B09,11054074,Alarms,06/13/2011,06/13/2011,06/13/2011 09:26:43 AM,06/13/2011 09:27:47 AM,06/13/2011 09:27:55 AM,06/13/2011 09:28:08 AM,06/13/2011 09:31:44 AM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/13/2011 09:41:00 AM,800 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,false,,1,CHIEF,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",111640108-B09 +140860091,E20,14028875,Structure Fire,03/27/2014,03/27/2014,03/27/2014 09:45:13 AM,03/27/2014 09:45:16 AM,03/27/2014 09:45:52 AM,03/27/2014 09:46:33 AM,03/27/2014 09:49:44 AM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 09:54:57 AM,300 Block of LAGUNA HONDA BLVD,,94131,B08,20,8637,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",140860091-E20 +111880220,E06,11062185,Medical Incident,07/07/2011,07/07/2011,07/07/2011 03:08:38 PM,07/07/2011 03:09:12 PM,07/07/2011 03:09:39 PM,07/07/2011 03:10:33 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/07/2011 03:11:01 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,3,2,8,Mission,"(37.7661259454801, -122.42207304894)",111880220-E06 +160794238,81,16031619,Medical Incident,03/19/2016,03/19/2016,03/19/2016 11:03:06 PM,03/19/2016 11:03:06 PM,03/19/2016 11:03:06 PM,03/19/2016 11:03:06 PM,03/19/2016 11:03:06 PM,03/19/2016 11:13:02 PM,03/19/2016 11:30:29 PM,Code 2 Transport,03/19/2016 11:45:59 PM,24TH ST/MISSION ST,San Francisco,94110,B99,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160794238-81 +121330084,T03,12044185,Medical Incident,05/12/2012,05/11/2012,05/12/2012 07:52:12 AM,05/12/2012 07:54:31 AM,05/12/2012 07:54:47 AM,05/12/2012 07:55:39 AM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 07:59:59 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",121330084-T03 +130110279,E01,13003830,Medical Incident,01/11/2013,01/11/2013,01/11/2013 04:37:17 PM,01/11/2013 04:40:22 PM,01/11/2013 04:40:54 PM,01/11/2013 04:43:18 PM,01/11/2013 04:49:07 PM,04/25/2016 01:54:51 PM,04/25/2016 01:54:51 PM,Other,01/11/2013 04:52:24 PM,0 Block of TURK ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",130110279-E01 +121520131,65,12050301,Medical Incident,05/31/2012,05/31/2012,05/31/2012 11:00:40 AM,05/31/2012 11:02:34 AM,05/31/2012 11:04:57 AM,05/31/2012 11:05:10 AM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 11:14:35 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",121520131-65 +122640139,T19,12087149,Medical Incident,09/20/2012,09/20/2012,09/20/2012 10:59:37 AM,09/20/2012 11:00:51 AM,09/20/2012 11:01:04 AM,09/20/2012 11:02:06 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 11:02:08 AM,200 Block of SKYLINE BLVD,SF,94132,B08,19,8713,3,3,3,true,Non Life-threatening,1,TRUCK,3,8,7,Lakeshore,"(37.730009641642, -122.500476623156)",122640139-T19 +120590106,77,12019371,Traffic Collision,02/28/2012,02/28/2012,02/28/2012 10:03:10 AM,02/28/2012 10:04:08 AM,02/28/2012 10:08:01 AM,02/28/2012 10:09:49 AM,02/28/2012 10:19:51 AM,02/28/2012 10:31:06 AM,02/28/2012 10:48:25 AM,Code 2 Transport,02/28/2012 11:05:43 AM,BRYANT ST/9TH ST,SF,94103,B03,29,2324,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7712907918294, -122.408531083232)",120590106-77 +102670292,E03,10084601,Medical Incident,09/24/2010,09/24/2010,09/24/2010 05:35:11 PM,09/24/2010 05:38:06 PM,09/24/2010 05:38:29 PM,04/25/2016 02:08:26 PM,09/24/2010 05:41:09 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Other,09/24/2010 05:50:13 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",102670292-E03 +140490019,AM18,14016522,Medical Incident,02/18/2014,02/17/2014,02/18/2014 02:45:52 AM,02/18/2014 02:47:19 AM,02/18/2014 02:47:53 AM,02/18/2014 02:48:19 AM,02/18/2014 02:52:20 AM,02/18/2014 03:03:49 AM,02/18/2014 03:21:13 AM,Code 2 Transport,02/18/2014 03:49:42 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",140490019-AM18 +102720068,86,10086273,Medical Incident,09/29/2010,09/28/2010,09/29/2010 06:28:41 AM,09/29/2010 06:30:20 AM,09/29/2010 06:30:52 AM,09/29/2010 06:31:04 AM,09/29/2010 06:43:07 AM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Gone on Arrival,09/29/2010 06:47:53 AM,700 Block of 4TH ST,SF,94107,B03,8,2224,1,1,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",102720068-86 +112840188,E42,11094011,Medical Incident,10/11/2011,10/11/2011,10/11/2011 12:50:16 PM,10/11/2011 12:51:42 PM,10/11/2011 12:52:21 PM,10/11/2011 12:53:40 PM,10/11/2011 12:55:05 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 01:06:36 PM,2000 Block of BANCROFT AVE,SF,94124,B10,42,6361,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7303221668854, -122.401247005211)",112840188-E42 +122170072,E16,12071939,Structure Fire,08/04/2012,08/03/2012,08/04/2012 07:26:30 AM,08/04/2012 07:26:30 AM,08/04/2012 07:27:01 AM,04/25/2016 01:57:24 PM,08/04/2012 07:28:56 AM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Fire,08/04/2012 07:29:20 AM,FILLMORE ST/GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7989518491605, -122.435866321305)",122170072-E16 +160601140,57,16023842,Traffic Collision,02/29/2016,02/29/2016,02/29/2016 10:18:57 AM,02/29/2016 10:18:57 AM,02/29/2016 10:19:08 AM,02/29/2016 10:19:19 AM,02/29/2016 10:21:41 AM,02/29/2016 10:57:46 AM,02/29/2016 11:08:57 AM,Code 2 Transport,02/29/2016 12:04:03 PM,POLK ST/ELM ST,San Francisco,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7817047859478, -122.418901311189)",160601140-57 +113310162,T01,11109693,Alarms,11/27/2011,11/27/2011,11/27/2011 02:03:35 PM,11/27/2011 02:04:24 PM,11/27/2011 02:05:06 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/27/2011 02:07:18 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",113310162-T01 +121390261,E15,12046231,Medical Incident,05/18/2012,05/18/2012,05/18/2012 05:20:15 PM,05/18/2012 05:20:44 PM,05/18/2012 05:23:48 PM,05/18/2012 05:24:46 PM,05/18/2012 05:32:40 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Patient Declined Transport,05/18/2012 05:41:47 PM,ALEMANY BL/OTTAWA AV,SF,94112,B09,15,8333,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7152977977514, -122.445835075938)",121390261-E15 +123570330,86,12119638,Medical Incident,12/22/2012,12/22/2012,12/22/2012 08:05:31 PM,12/22/2012 08:06:46 PM,12/22/2012 08:07:08 PM,12/22/2012 08:07:18 PM,12/22/2012 08:10:36 PM,12/22/2012 08:25:49 PM,12/22/2012 08:31:29 PM,Code 2 Transport,12/22/2012 08:56:15 PM,100 Block of CYRIL MAGNIN ST,SF,94102,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",123570330-86 +112540314,E13,11083940,Medical Incident,09/11/2011,09/11/2011,09/11/2011 08:36:15 PM,09/11/2011 08:36:55 PM,09/11/2011 08:37:10 PM,09/11/2011 08:38:32 PM,09/11/2011 08:40:09 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Other,09/11/2011 08:51:09 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",112540314-E13 +120880120,55,12029133,Traffic Collision,03/28/2012,03/28/2012,03/28/2012 10:28:53 AM,03/28/2012 10:29:47 AM,03/28/2012 10:31:19 AM,03/28/2012 10:31:44 AM,03/28/2012 10:39:15 AM,03/28/2012 10:58:54 AM,03/28/2012 11:23:35 AM,Code 2 Transport,03/28/2012 12:00:53 PM,19TH AV/HOLLOWAY AV,SF,94132,B08,19,8751,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,Lakeshore,"(37.7210572969552, -122.475221950242)",120880120-55 +160794285,76,16031623,Medical Incident,03/19/2016,03/19/2016,03/19/2016 11:15:12 PM,03/19/2016 11:15:50 PM,03/19/2016 11:16:23 PM,03/19/2016 11:16:28 PM,03/19/2016 11:19:35 PM,03/19/2016 11:39:00 PM,03/19/2016 11:46:40 PM,Code 2 Transport,03/20/2016 12:06:17 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160794285-76 +102660321,E03,10084288,Alarms,09/23/2010,09/23/2010,09/23/2010 08:34:44 PM,09/23/2010 08:36:02 PM,09/23/2010 08:36:08 PM,09/23/2010 08:37:05 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 08:37:42 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",102660321-E03 +131170180,T10,13039353,Alarms,04/27/2013,04/27/2013,04/27/2013 01:27:45 PM,04/27/2013 01:28:45 PM,04/27/2013 01:29:18 PM,04/27/2013 01:34:06 PM,04/27/2013 01:36:53 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/27/2013 01:45:54 PM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,false,Alarm,1,TRUCK,3,4,5,Japantown,"(37.7846877609559, -122.437204719428)",131170180-T10 +160622165,64,16024724,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:07:03 PM,03/02/2016 02:08:30 PM,03/02/2016 02:09:07 PM,03/02/2016 02:09:14 PM,03/02/2016 02:28:42 PM,03/02/2016 02:45:04 PM,03/02/2016 03:06:43 PM,Code 2 Transport,03/02/2016 03:37:58 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160622165-64 +160372741,63,16014796,Medical Incident,02/06/2016,02/06/2016,02/06/2016 04:36:36 PM,02/06/2016 04:38:55 PM,02/06/2016 04:55:30 PM,02/06/2016 04:56:04 PM,02/06/2016 05:22:09 PM,02/06/2016 05:34:59 PM,02/06/2016 06:11:33 PM,Code 2 Transport,02/06/2016 06:46:39 PM,BAY ST/BUCHANAN ST,San Francisco,94123,B04,16,3446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8030568840333, -122.433327957472)",160372741-63 +140230040,E37,14007748,Alarms,01/23/2014,01/22/2014,01/23/2014 04:47:19 AM,01/23/2014 04:50:02 AM,01/23/2014 04:50:24 AM,01/23/2014 04:52:28 AM,01/23/2014 04:54:27 AM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/23/2014 05:02:10 AM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",140230040-E37 +121230257,RS2,12040891,Medical Incident,05/02/2012,05/02/2012,05/02/2012 05:05:34 PM,05/02/2012 05:05:47 PM,05/02/2012 05:06:43 PM,05/02/2012 05:08:07 PM,05/02/2012 05:10:26 PM,04/25/2016 01:58:53 PM,04/25/2016 01:58:53 PM,Other,05/02/2012 05:11:09 PM,CALEDONIA ST/16TH ST,SF,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7649478897256, -122.421381476722)",121230257-RS2 +160761734,63,16030137,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:31:17 PM,03/16/2016 12:33:10 PM,03/16/2016 12:33:32 PM,03/16/2016 12:33:41 PM,03/16/2016 12:37:42 PM,03/16/2016 12:50:46 PM,03/16/2016 01:00:38 PM,Code 2 Transport,03/16/2016 01:26:38 PM,500 Block of HAMPSHIRE ST,San Francisco,94110,B02,29,5243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7624947073577, -122.408313688)",160761734-63 +113630293,E11,11120697,Medical Incident,12/29/2011,12/29/2011,12/29/2011 08:01:27 PM,12/29/2011 08:01:36 PM,12/29/2011 08:02:05 PM,12/29/2011 08:02:57 PM,12/29/2011 08:04:57 PM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/29/2011 08:51:41 PM,VALENCIA ST/25TH ST,SF,94110,B06,11,5535,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7505058278022, -122.420507005779)",113630293-E11 +132840291,E36,13096714,Medical Incident,10/11/2013,10/11/2013,10/11/2013 07:09:59 PM,10/11/2013 07:10:49 PM,10/11/2013 07:11:14 PM,10/11/2013 07:11:26 PM,10/11/2013 07:15:09 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/11/2013 07:17:07 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,1,2,false,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7742515142555, -122.420565431007)",132840291-E36 +121300336,T05,12043398,Alarms,05/09/2012,05/09/2012,05/09/2012 09:56:37 PM,05/09/2012 09:59:42 PM,05/09/2012 10:00:08 PM,05/09/2012 10:05:07 PM,05/09/2012 10:07:48 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Other,05/09/2012 10:11:19 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",121300336-T05 +103370150,E06,10107774,Medical Incident,12/03/2010,12/03/2010,12/03/2010 11:52:28 AM,12/03/2010 11:52:38 AM,12/03/2010 11:53:26 AM,12/03/2010 11:53:55 AM,12/03/2010 11:55:52 AM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/03/2010 12:06:38 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,2,2,true,,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",103370150-E06 +103630087,84,10116376,Medical Incident,12/29/2010,12/29/2010,12/29/2010 09:26:53 AM,12/29/2010 09:27:29 AM,12/29/2010 09:29:11 AM,12/29/2010 09:29:40 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/29/2010 09:35:09 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103630087-84 +160410490,89,16016328,Medical Incident,02/10/2016,02/09/2016,02/10/2016 06:28:05 AM,02/10/2016 06:30:02 AM,02/10/2016 06:31:09 AM,02/10/2016 06:31:34 AM,02/10/2016 06:52:10 AM,02/10/2016 07:11:28 AM,02/10/2016 07:19:53 AM,Code 2 Transport,02/10/2016 08:26:08 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7813958668825, -122.417987996268)",160410490-89 +111360067,E06,11045189,Traffic Collision,05/16/2011,05/15/2011,05/16/2011 07:37:10 AM,05/16/2011 07:38:28 AM,05/16/2011 07:38:54 AM,05/16/2011 07:40:51 AM,05/16/2011 07:44:32 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 08:01:37 AM,CASTRO ST/MARKET ST,SF,94114,B05,6,5233,2,2,2,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",111360067-E06 +160550382,KM03,16021884,Medical Incident,02/24/2016,02/23/2016,02/24/2016 05:29:13 AM,02/24/2016 05:29:13 AM,02/24/2016 05:29:19 AM,02/24/2016 05:30:43 AM,02/24/2016 05:37:58 AM,02/24/2016 05:53:36 AM,02/24/2016 06:02:34 AM,Code 2 Transport,02/24/2016 06:33:04 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160550382-KM03 +160131707,KM04,16005184,Medical Incident,01/13/2016,01/13/2016,01/13/2016 12:09:57 PM,01/13/2016 12:11:38 PM,01/13/2016 12:12:07 PM,01/13/2016 12:12:07 PM,01/13/2016 12:18:34 PM,01/13/2016 12:51:23 PM,01/13/2016 01:11:37 PM,Code 2 Transport,01/13/2016 01:57:51 PM,500 Block of SCOTT ST,San Francisco,94117,B05,21,4136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7747500421845, -122.435966327435)",160131707-KM04 +132410272,RA48,13081368,Traffic Collision,08/29/2013,08/29/2013,08/29/2013 06:00:34 PM,08/29/2013 06:01:39 PM,08/29/2013 06:02:05 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,04/25/2016 01:51:03 PM,PARIS ST/PERSIA AV,SF,94112,B03,43,6126,3,3,3,false,Potentially Life-Threatening,1,MEDIC,5,9,11,Excelsior,"(37.7223816672522, -122.434406708467)",132410272-RA48 +121530330,AM10,12050774,Medical Incident,06/01/2012,06/01/2012,06/01/2012 08:58:04 PM,06/01/2012 08:58:18 PM,06/01/2012 08:58:39 PM,06/01/2012 08:59:28 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 09:00:10 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",121530330-AM10 +130730234,E36,13024386,Medical Incident,03/14/2013,03/14/2013,03/14/2013 03:32:48 PM,03/14/2013 03:34:06 PM,03/14/2013 03:35:04 PM,03/14/2013 03:36:47 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 03:40:05 PM,11TH ST/MISSION ST,SF,94103,B02,36,5116,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",130730234-E36 +103430377,B10,10110015,Medical Incident,12/09/2010,12/09/2010,12/09/2010 08:32:16 PM,12/09/2010 08:33:49 PM,12/09/2010 08:34:07 PM,12/09/2010 08:35:07 PM,12/09/2010 08:38:43 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 08:45:12 PM,"CALL BOX: ELLSWORTH ST/ALEMANY SB BL,SF",SF,94110,B06,32,5645,E,E,3,false,,1,CHIEF,2,6,9,Bernal Heights,"(37.7322713620509, -122.418897144818)",103430377-B10 +160792008,85,16031427,Medical Incident,03/19/2016,03/19/2016,03/19/2016 01:56:35 PM,03/19/2016 01:57:39 PM,03/19/2016 01:58:23 PM,03/19/2016 02:01:08 PM,03/19/2016 02:09:10 PM,03/19/2016 02:26:39 PM,03/19/2016 02:57:14 PM,Code 2 Transport,03/19/2016 03:43:32 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160792008-85 +131070156,E22,13035946,Medical Incident,04/17/2013,04/17/2013,04/17/2013 11:36:16 AM,04/17/2013 11:37:38 AM,04/17/2013 11:37:46 AM,04/17/2013 11:39:22 AM,04/17/2013 11:40:47 AM,04/25/2016 01:53:16 PM,04/25/2016 01:53:16 PM,No Merit,04/17/2013 12:17:42 PM,21ST AV/IRVING ST,SF,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.763467414062, -122.479266517798)",131070156-E22 +130080255,RS2,13002798,Structure Fire,01/08/2013,01/08/2013,01/08/2013 02:57:34 PM,01/08/2013 02:59:30 PM,01/08/2013 02:59:58 PM,01/08/2013 03:01:17 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,Other,01/08/2013 03:04:16 PM,1700 Block of 25TH ST,SF,94107,B10,37,2614,3,3,3,false,Alarm,1,RESCUE SQUAD,10,10,10,Potrero Hill,"(37.7523945846734, -122.396035863128)",130080255-RS2 +130210350,86,13007415,Medical Incident,01/21/2013,01/21/2013,01/21/2013 09:23:00 PM,01/21/2013 09:26:39 PM,01/21/2013 09:26:51 PM,01/21/2013 09:27:13 PM,01/21/2013 09:35:25 PM,01/21/2013 10:03:21 PM,01/21/2013 10:12:14 PM,Code 2 Transport,01/21/2013 10:42:00 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",130210350-86 +123050363,E03,12101331,Medical Incident,10/31/2012,10/31/2012,10/31/2012 04:48:44 PM,10/31/2012 04:49:03 PM,10/31/2012 04:50:32 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 04:56:40 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",123050363-E03 +122760108,E11,12091057,Medical Incident,10/02/2012,10/02/2012,10/02/2012 09:11:20 AM,10/02/2012 09:12:04 AM,10/02/2012 09:12:15 AM,04/25/2016 01:56:30 PM,10/02/2012 09:16:49 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 09:31:16 AM,300 Block of FAIR OAKS ST,SF,94110,B06,11,5524,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Mission,"(37.7511121804335, -122.423840159589)",122760108-E11 +102250153,E28,10070831,Medical Incident,08/13/2010,08/13/2010,08/13/2010 01:16:20 PM,08/13/2010 01:17:04 PM,08/13/2010 01:17:15 PM,08/13/2010 01:17:46 PM,08/13/2010 01:19:15 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 01:31:50 PM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.804809171271, -122.406795529826)",102250153-E28 +110250347,89,11008339,Medical Incident,01/25/2011,01/25/2011,01/25/2011 05:27:09 PM,01/25/2011 05:27:34 PM,01/25/2011 05:28:34 PM,01/25/2011 05:29:07 PM,01/25/2011 05:36:11 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Patient Declined Transport,01/25/2011 06:30:17 PM,1700 Block of 38TH AVE,SF,94122,B08,18,7624,3,2,2,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7542694898327, -122.496966375985)",110250347-89 +102590358,T01,10081963,Alarms,09/16/2010,09/16/2010,09/16/2010 08:00:15 PM,09/16/2010 08:01:06 PM,09/16/2010 08:01:20 PM,09/16/2010 08:02:44 PM,09/16/2010 08:05:07 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 08:13:23 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",102590358-T01 +160591364,72,16023491,Medical Incident,02/28/2016,02/28/2016,02/28/2016 11:40:49 AM,02/28/2016 11:41:24 AM,02/28/2016 11:41:39 AM,02/28/2016 11:42:03 AM,02/28/2016 11:47:23 AM,02/28/2016 12:10:25 PM,02/28/2016 12:24:18 PM,Code 3 Transport,02/28/2016 01:22:26 PM,0 Block of OSCEOLA LN,San Francisco,94124,B10,17,6637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",160591364-72 +122960201,E36,12098162,Medical Incident,10/22/2012,10/22/2012,10/22/2012 01:38:50 PM,10/22/2012 01:40:13 PM,10/22/2012 01:40:29 PM,10/22/2012 01:41:40 PM,10/22/2012 01:45:13 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 01:45:36 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122960201-E36 +122430189,T08,12080365,Structure Fire,08/30/2012,08/30/2012,08/30/2012 02:25:47 PM,08/30/2012 02:25:47 PM,08/30/2012 02:26:03 PM,08/30/2012 02:26:41 PM,08/30/2012 02:28:52 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Fire,08/30/2012 02:29:20 PM,7TH ST/BRYANT ST,SF,94103,B03,8,2311,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7742810407569, -122.404748493756)",122430189-T08 +160214104,64,16008589,Medical Incident,01/21/2016,01/21/2016,01/21/2016 10:59:16 PM,01/21/2016 10:59:57 PM,01/21/2016 11:00:17 PM,01/21/2016 11:00:34 PM,01/21/2016 11:03:07 PM,01/21/2016 11:09:46 PM,01/21/2016 11:23:34 PM,Code 2 Transport,01/22/2016 12:07:50 AM,TAYLOR ST/OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",160214104-64 +120770057,E03,12025397,Medical Incident,03/17/2012,03/16/2012,03/17/2012 05:15:33 AM,03/17/2012 05:18:11 AM,03/17/2012 05:18:49 AM,03/17/2012 05:20:14 AM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 05:29:32 AM,1500 Block of CALIFORNIA ST,SF,94109,B04,41,1635,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",120770057-E03 +120700031,KM07,12023134,Medical Incident,03/10/2012,03/09/2012,03/10/2012 02:14:00 AM,03/10/2012 02:15:45 AM,03/10/2012 02:17:33 AM,03/10/2012 02:18:30 AM,03/10/2012 02:30:45 AM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Against Medical Advice,03/10/2012 02:46:14 AM,700 Block of HARRISON ST,SF,94107,B03,8,2216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",120700031-KM07 +140420310,77,14014383,Medical Incident,02/11/2014,02/11/2014,02/11/2014 06:37:42 PM,02/11/2014 06:38:59 PM,02/11/2014 06:49:32 PM,02/11/2014 06:49:37 PM,02/11/2014 06:53:38 PM,02/11/2014 07:06:42 PM,02/11/2014 07:17:04 PM,Code 2 Transport,02/11/2014 07:39:57 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7829058754034, -122.40679650522)",140420310-77 +160633299,AM10,16025221,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:28:03 PM,03/03/2016 07:29:21 PM,03/03/2016 07:30:55 PM,03/03/2016 07:35:21 PM,03/03/2016 07:44:14 PM,03/03/2016 07:58:22 PM,03/03/2016 08:12:28 PM,Code 2 Transport,03/03/2016 08:39:47 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B01,13,1133,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160633299-AM10 +160220137,78,16008619,Medical Incident,01/22/2016,01/21/2016,01/22/2016 01:16:20 AM,01/22/2016 01:16:37 AM,01/22/2016 01:18:11 AM,01/22/2016 01:18:39 AM,01/22/2016 01:21:21 AM,01/22/2016 01:42:44 AM,01/22/2016 02:04:08 AM,Code 2 Transport,01/22/2016 02:43:20 AM,3900 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7812602215298, -122.461609339534)",160220137-78 +160751371,AM02,16029678,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:11:59 AM,03/15/2016 11:17:44 AM,03/15/2016 11:18:25 AM,03/15/2016 11:20:19 AM,03/15/2016 11:30:41 AM,03/15/2016 11:53:10 AM,03/15/2016 12:13:05 PM,Code 2 Transport,03/15/2016 12:48:34 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160751371-AM02 +160081653,65,16003222,Medical Incident,01/08/2016,01/08/2016,01/08/2016 12:18:56 PM,01/08/2016 12:19:54 PM,01/08/2016 12:20:57 PM,01/08/2016 12:21:06 PM,01/08/2016 12:29:35 PM,01/08/2016 12:44:03 PM,01/08/2016 01:04:52 PM,Code 2 Transport,01/08/2016 01:52:32 PM,2400 Block of 33RD AVE,San Francisco,94116,B08,18,7546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7414530173202, -122.4906959863)",160081653-65 +132850349,E18,13097098,Medical Incident,10/12/2013,10/12/2013,10/12/2013 10:25:38 PM,10/12/2013 10:26:13 PM,10/12/2013 10:26:31 PM,10/12/2013 10:27:53 PM,10/12/2013 10:31:15 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/12/2013 10:47:35 PM,1500 Block of 29TH AVE,SF,94122,B08,18,7514,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.758430206182, -122.487445223679)",132850349-E18 +131690266,T11,13057438,Structure Fire,06/18/2013,06/18/2013,06/18/2013 03:05:05 PM,06/18/2013 03:05:05 PM,06/18/2013 03:05:17 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 03:05:53 PM,24TH ST/CHURCH ST,SF,94114,B06,11,5523,3,3,3,false,Alarm,1,TRUCK,2,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",131690266-T11 +131490006,E36,13050370,Medical Incident,05/29/2013,05/28/2013,05/29/2013 12:26:50 AM,05/29/2013 12:27:54 AM,05/29/2013 12:28:14 AM,05/29/2013 12:29:24 AM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/29/2013 12:40:09 AM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,2,2,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",131490006-E36 +132410354,T03,13081446,Alarms,08/29/2013,08/29/2013,08/29/2013 10:24:22 PM,08/29/2013 10:25:48 PM,08/29/2013 10:26:06 PM,08/29/2013 10:27:26 PM,08/29/2013 10:29:36 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/29/2013 10:34:51 PM,600 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,false,Alarm,1,TRUCK,1,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",132410354-T03 +102370376,61,10074879,Medical Incident,08/25/2010,08/25/2010,08/25/2010 08:24:25 PM,08/25/2010 08:25:51 PM,08/25/2010 08:29:09 PM,08/25/2010 08:30:23 PM,08/25/2010 08:34:33 PM,08/25/2010 08:47:01 PM,08/25/2010 09:03:43 PM,Code 2 Transport,08/25/2010 09:31:58 PM,GOLDEN GATE AV/LARKIN ST,SF,94102,B02,3,1644,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",102370376-61 +160583135,KM11,16023258,Medical Incident,02/27/2016,02/27/2016,02/27/2016 07:13:52 PM,02/27/2016 07:14:26 PM,02/27/2016 07:16:19 PM,02/27/2016 07:17:03 PM,02/27/2016 07:21:51 PM,02/27/2016 07:38:31 PM,02/27/2016 08:11:00 PM,Code 2 Transport,02/27/2016 08:31:08 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160583135-KM11 +160443991,72,16017917,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:37:57 PM,02/13/2016 11:38:59 PM,02/13/2016 11:39:12 PM,02/13/2016 11:39:21 PM,02/13/2016 11:42:52 PM,02/14/2016 12:02:32 AM,02/14/2016 12:17:08 AM,Code 2 Transport,02/14/2016 01:01:14 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160443991-72 +102250030,E03,10070727,Medical Incident,08/13/2010,08/12/2010,08/13/2010 02:56:37 AM,08/13/2010 02:57:00 AM,08/13/2010 02:57:23 AM,08/13/2010 02:59:03 AM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 03:00:08 AM,EDDY ST/JONES ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",102250030-E03 +121410040,E15,12046724,Structure Fire,05/20/2012,05/19/2012,05/20/2012 02:46:48 AM,05/20/2012 02:47:24 AM,05/20/2012 02:47:36 AM,05/20/2012 02:54:44 AM,05/20/2012 02:58:29 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 03:06:22 AM,100 Block of SURREY ST,SF,94131,B06,26,8156,3,3,3,true,Fire,1,ENGINE,9,6,8,Glen Park,"(37.7359859928405, -122.434770054605)",121410040-E15 +160313405,72,16012340,Medical Incident,01/31/2016,01/31/2016,01/31/2016 08:42:53 PM,01/31/2016 08:44:47 PM,01/31/2016 08:45:42 PM,01/31/2016 08:46:08 PM,01/31/2016 08:51:22 PM,01/31/2016 09:08:47 PM,01/31/2016 09:22:42 PM,Code 2 Transport,01/31/2016 10:01:08 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160313405-72 +160151919,86,16006000,Medical Incident,01/15/2016,01/15/2016,01/15/2016 01:21:45 PM,01/15/2016 01:23:27 PM,01/15/2016 01:23:41 PM,01/15/2016 01:24:44 PM,01/15/2016 01:29:16 PM,01/15/2016 01:44:14 PM,01/15/2016 02:08:08 PM,Code 2 Transport,01/15/2016 02:54:00 PM,1700 Block of BANCROFT AVE,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7268724745843, -122.394902680548)",160151919-86 +122730344,94,12090184,Medical Incident,09/29/2012,09/29/2012,09/29/2012 09:19:11 PM,09/29/2012 09:20:54 PM,09/29/2012 09:21:02 PM,09/29/2012 09:21:11 PM,09/29/2012 09:24:53 PM,09/29/2012 09:42:40 PM,09/29/2012 09:50:18 PM,Code 2 Transport,09/29/2012 10:09:18 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",122730344-94 +160813646,88,16032359,Medical Incident,03/21/2016,03/21/2016,03/21/2016 09:15:00 PM,03/21/2016 09:15:00 PM,03/21/2016 09:21:57 PM,03/21/2016 09:22:09 PM,03/21/2016 09:42:36 PM,03/21/2016 09:42:39 PM,03/21/2016 10:13:22 PM,Other,03/21/2016 11:01:00 PM,6TH AV/GEARY BL,San Francisco,94118,B07,31,7127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Inner Richmond,"(37.7810189207549, -122.464279168827)",160813646-88 +123590033,E34,12120049,Structure Fire,12/24/2012,12/23/2012,12/24/2012 02:36:39 AM,12/24/2012 02:36:39 AM,12/24/2012 02:37:03 AM,04/25/2016 01:55:09 PM,12/24/2012 02:38:21 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Fire,12/24/2012 02:38:56 AM,41ST AV/GEARY BL,SF,94121,B07,34,7264,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7795143345145, -122.501887212899)",123590033-E34 +140090075,E17,14003055,Medical Incident,01/09/2014,01/08/2014,01/09/2014 07:32:30 AM,01/09/2014 07:33:04 AM,01/09/2014 07:33:52 AM,01/09/2014 07:35:47 AM,01/09/2014 07:37:43 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/09/2014 07:46:28 AM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316639968394, -122.38316735998)",140090075-E17 +120290012,E08,12009594,Medical Incident,01/29/2012,01/28/2012,01/29/2012 12:58:17 AM,01/29/2012 12:58:54 AM,01/29/2012 12:59:15 AM,01/29/2012 01:01:01 AM,01/29/2012 01:02:07 AM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/29/2012 01:10:52 AM,300 Block of RITCH ST,SF,94107,B03,8,2173,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790063172282, -122.394112632975)",120290012-E08 +111330191,E19,11044071,Medical Incident,05/13/2011,05/13/2011,05/13/2011 02:22:57 PM,05/13/2011 02:23:42 PM,05/13/2011 02:24:26 PM,05/13/2011 02:27:46 PM,05/13/2011 02:31:33 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 02:46:03 PM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",111330191-E19 +120470183,AM12,12015637,Traffic Collision,02/16/2012,02/16/2012,02/16/2012 01:54:18 PM,02/16/2012 01:55:46 PM,02/16/2012 01:57:09 PM,02/16/2012 01:58:00 PM,04/25/2016 02:00:06 PM,04/25/2016 02:00:06 PM,04/25/2016 02:00:06 PM,No Merit,02/16/2012 02:03:26 PM,200 Block of 25TH AVE,SF,94121,B03,29,2436,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7848173202648, -122.48501034869)",120470183-AM12 +112650317,E13,11087607,Structure Fire,09/22/2011,09/22/2011,09/22/2011 05:05:38 PM,09/22/2011 05:05:38 PM,09/22/2011 05:06:02 PM,09/22/2011 05:07:08 PM,09/22/2011 05:09:21 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,Other,09/22/2011 05:09:52 PM,MARKET ST/STEUART ST,SF,94105,B01,13,1112,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",112650317-E13 +111360297,94,11045376,Medical Incident,05/16/2011,05/16/2011,05/16/2011 07:11:17 PM,05/16/2011 07:11:53 PM,05/16/2011 07:12:02 PM,05/16/2011 07:12:17 PM,05/16/2011 07:16:09 PM,05/16/2011 07:33:40 PM,05/16/2011 07:49:51 PM,Code 2 Transport,05/16/2011 08:15:24 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",111360297-94 +131520134,E01,13051454,Alarms,06/01/2013,06/01/2013,06/01/2013 10:37:41 AM,06/01/2013 10:39:06 AM,06/01/2013 10:39:22 AM,06/01/2013 10:39:32 AM,06/01/2013 10:41:44 AM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 10:47:52 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131520134-E01 +132860331,T05,13097404,Structure Fire,10/13/2013,10/13/2013,10/13/2013 07:40:08 PM,10/13/2013 07:41:01 PM,10/13/2013 07:41:15 PM,10/13/2013 07:42:10 PM,10/13/2013 07:45:26 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/13/2013 07:52:49 PM,900 Block of POLK ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,7,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",132860331-T05 +120260375,E16,12008883,Medical Incident,01/26/2012,01/26/2012,01/26/2012 10:58:09 PM,01/26/2012 10:59:51 PM,01/26/2012 11:00:35 PM,01/26/2012 11:02:21 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,Other,01/26/2012 11:03:18 PM,3200 Block of WEBSTER ST,SF,94123,B04,16,3461,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.8008030512791, -122.43448682618)",120260375-E16 +132110156,E07,13071349,Outside Fire,07/30/2013,07/30/2013,07/30/2013 12:27:41 PM,07/30/2013 12:31:23 PM,07/30/2013 12:32:10 PM,07/30/2013 12:33:21 PM,07/30/2013 12:35:02 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/30/2013 12:39:55 PM,CAPP ST/20TH ST,SF,94110,B06,7,5433,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7586982725851, -122.417964706277)",132110156-E07 +160100728,62,16003947,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:41:01 AM,01/10/2016 07:42:28 AM,01/10/2016 07:43:23 AM,01/10/2016 07:44:30 AM,01/10/2016 08:01:20 AM,01/10/2016 08:13:24 AM,01/10/2016 08:32:53 AM,Code 2 Transport,01/10/2016 08:58:57 AM,0 Block of MARVEL CT,San Francisco,94121,B07,14,7246,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7829456223596, -122.492889548856)",160100728-62 +130660200,94,13022054,Medical Incident,03/07/2013,03/07/2013,03/07/2013 02:03:43 PM,03/07/2013 02:05:21 PM,03/07/2013 02:05:29 PM,03/07/2013 02:07:10 PM,03/07/2013 02:12:42 PM,03/07/2013 02:26:03 PM,03/07/2013 02:41:53 PM,Code 2 Transport,03/07/2013 03:05:02 PM,HARRIET ST/HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7793184597995, -122.407691082986)",130660200-94 +102860213,E29,10091146,Outside Fire,10/13/2010,10/13/2010,10/13/2010 01:15:42 PM,10/13/2010 01:17:09 PM,10/13/2010 01:18:38 PM,10/13/2010 01:19:45 PM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Other,10/13/2010 01:22:24 PM,700 Block of THE EMBARCADERO,SF,94111,B01,13,917,3,3,3,true,,1,ENGINE,5,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",102860213-E29 +131010227,86,13033982,Medical Incident,04/11/2013,04/11/2013,04/11/2013 02:23:16 PM,04/11/2013 02:24:25 PM,04/11/2013 02:24:50 PM,04/11/2013 02:25:11 PM,04/11/2013 02:46:10 PM,04/11/2013 02:54:32 PM,04/11/2013 03:57:58 PM,Code 2 Transport,04/11/2013 03:59:53 PM,1200 Block of MARINER DR,TI,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",131010227-86 +160330833,53,16012889,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:48:09 AM,02/02/2016 08:49:11 AM,02/02/2016 08:52:45 AM,02/02/2016 08:53:11 AM,02/02/2016 08:59:04 AM,02/02/2016 09:09:52 AM,02/02/2016 09:23:15 AM,Code 2 Transport,02/02/2016 10:06:11 AM,1ST ST/MARKET ST,San Francisco,94105,B03,13,2143,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",160330833-53 +112850399,E03,11094567,Medical Incident,10/12/2011,10/12/2011,10/12/2011 09:21:37 PM,10/12/2011 09:21:49 PM,10/12/2011 09:22:33 PM,10/12/2011 09:24:07 PM,10/12/2011 09:25:11 PM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Medical Examiner,10/12/2011 09:41:44 PM,500 Block of HYDE ST,SF,94109,B04,3,1556,3,E,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7855599708748, -122.416226912302)",112850399-E03 +130390378,94,13013475,Structure Fire,02/08/2013,02/08/2013,02/08/2013 10:16:16 PM,02/08/2013 10:17:30 PM,02/08/2013 10:18:36 PM,02/08/2013 10:19:15 PM,02/08/2013 10:27:00 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/08/2013 10:31:16 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,MEDIC,9,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",130390378-94 +111500005,E05,11049549,Medical Incident,05/30/2011,05/29/2011,05/30/2011 12:11:21 AM,05/30/2011 12:12:16 AM,05/30/2011 12:13:01 AM,05/30/2011 12:15:08 AM,05/30/2011 12:17:58 AM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 12:35:10 AM,2300 Block of PINE ST,SF,94115,B04,38,3543,3,2,2,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7878999566909, -122.434481068996)",111500005-E05 +103090069,E03,10098950,Medical Incident,11/05/2010,11/04/2010,11/05/2010 07:15:01 AM,11/05/2010 07:15:35 AM,11/05/2010 07:16:00 AM,11/05/2010 07:21:39 AM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Other,11/05/2010 07:23:41 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,1,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",103090069-E03 +103620011,E38,10115971,Traffic Collision,12/28/2010,12/27/2010,12/28/2010 12:39:54 AM,12/28/2010 12:42:08 AM,12/28/2010 12:43:44 AM,12/28/2010 12:45:43 AM,12/28/2010 12:47:03 AM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,12/28/2010 01:08:56 AM,POST ST/LAGUNA ST,SF,94109,B04,38,3364,2,2,2,false,,1,ENGINE,1,4,5,Japantown,"(37.7857844875918, -122.428148186864)",103620011-E38 +132270332,E26,13076727,Outside Fire,08/15/2013,08/15/2013,08/15/2013 08:13:05 PM,08/15/2013 08:20:17 PM,08/15/2013 08:20:20 PM,08/15/2013 08:21:52 PM,08/15/2013 08:28:22 PM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Fire,08/15/2013 08:39:44 PM,0 Block of ELK ST,SF,94131,B06,26,8175,3,3,3,true,Fire,1,ENGINE,1,6,8,Glen Park,"(37.7365430606257, -122.439775823336)",132270332-E26 +100870031,58,10026831,Other,03/28/2010,03/27/2010,03/28/2010 02:03:35 AM,03/28/2010 02:07:10 AM,03/28/2010 02:09:09 AM,03/28/2010 03:40:14 AM,03/28/2010 03:46:44 AM,03/28/2010 04:05:41 AM,03/28/2010 04:16:22 AM,Other,03/28/2010 04:49:23 AM,200 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,true,,1,MEDIC,17,5,5,Haight Ashbury,"(37.7718353453919, -122.443861893304)",100870031-58 +160680748,E40,16027031,Medical Incident,03/08/2016,03/08/2016,03/08/2016 08:32:04 AM,03/08/2016 08:33:29 AM,03/08/2016 08:35:53 AM,03/08/2016 08:37:12 AM,03/08/2016 08:38:46 AM,03/08/2016 08:53:33 AM,03/08/2016 09:30:08 AM,Code 2 Transport,03/08/2016 09:47:58 AM,2400 Block of 19TH AVE,San Francisco,94116,B08,40,7415,3,E,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7421133651274, -122.475733220027)",160680748-E40 +140280326,E43,14009651,Outside Fire,01/28/2014,01/28/2014,01/28/2014 06:35:19 PM,01/28/2014 06:35:48 PM,01/28/2014 06:36:51 PM,04/25/2016 01:48:29 PM,01/28/2014 06:40:47 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/28/2014 06:44:33 PM,RUSSIA AV/MISSION ST,SF,94112,B09,43,6121,3,3,3,true,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7215750031455, -122.437149523285)",140280326-E43 +160740203,65,16029177,Medical Incident,03/14/2016,03/13/2016,03/14/2016 02:24:29 AM,03/14/2016 02:26:19 AM,03/14/2016 02:26:45 AM,03/14/2016 02:27:36 AM,03/14/2016 02:35:23 AM,03/14/2016 02:44:54 AM,03/14/2016 02:57:42 AM,Code 2 Transport,03/14/2016 03:27:24 AM,3400 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6317,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Visitacion Valley,"(37.7181958836059, -122.400271809821)",160740203-65 +111870135,E14,11061781,Medical Incident,07/06/2011,07/06/2011,07/06/2011 10:49:07 AM,07/06/2011 10:50:58 AM,07/06/2011 10:51:39 AM,07/06/2011 10:52:37 AM,07/06/2011 10:54:33 AM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 11:11:39 AM,6300 Block of CALIFORNIA ST,SF,94121,B07,14,7214,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7838030202773, -122.485545885783)",111870135-E14 +123010154,RC3,12099767,HazMat,10/27/2012,10/27/2012,10/27/2012 11:37:06 AM,10/27/2012 11:40:26 AM,10/27/2012 11:43:15 AM,10/27/2012 11:45:31 AM,10/27/2012 11:49:20 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:54:09 PM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Alarm,1,RESCUE CAPTAIN,4,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",123010154-RC3 +160610927,54,16024238,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:30:41 AM,03/01/2016 09:32:52 AM,03/01/2016 09:33:35 AM,03/01/2016 09:33:46 AM,03/01/2016 09:50:52 AM,03/01/2016 10:04:51 AM,03/01/2016 10:33:32 AM,Code 2 Transport,03/01/2016 11:09:26 AM,3100 Block of 20TH AVE,San Francisco,94132,B08,19,8862,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7306107022051, -122.475862776859)",160610927-54 +111860110,E41,11061410,Medical Incident,07/05/2011,07/05/2011,07/05/2011 08:17:53 AM,07/05/2011 08:18:20 AM,07/05/2011 08:18:36 AM,07/05/2011 08:20:16 AM,07/05/2011 08:21:51 AM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/05/2011 08:36:51 AM,900 Block of JONES ST,SF,94109,B01,41,1464,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7899875725685, -122.413890484978)",111860110-E41 +160431662,52,16017291,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:37:03 PM,02/12/2016 12:39:22 PM,02/12/2016 12:41:59 PM,02/12/2016 12:42:11 PM,02/12/2016 12:45:08 PM,02/12/2016 12:50:23 PM,02/12/2016 12:50:23 PM,Code 2 Transport,02/12/2016 12:55:38 PM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",160431662-52 +132030158,E36,13068746,Medical Incident,07/22/2013,07/22/2013,07/22/2013 12:09:31 PM,07/22/2013 12:09:32 PM,07/22/2013 12:09:32 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,No Merit,07/22/2013 12:13:40 PM,OAK ST/GOUGH ST,SF,94102,B02,36,3266,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7750206954016, -122.42259804367)",132030158-E36 +113160033,88,11104888,Medical Incident,11/12/2011,11/11/2011,11/12/2011 02:51:13 AM,11/12/2011 02:52:33 AM,11/12/2011 02:52:54 AM,11/12/2011 02:53:22 AM,11/12/2011 02:58:52 AM,11/12/2011 03:11:36 AM,11/12/2011 03:18:05 AM,Code 2 Transport,11/12/2011 03:28:41 AM,2300 Block of 16TH ST,SF,94103,B02,29,5241,3,3,3,true,,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",113160033-88 +160050389,55,16001856,Medical Incident,01/05/2016,01/04/2016,01/05/2016 05:08:32 AM,01/05/2016 05:10:00 AM,01/05/2016 05:11:34 AM,01/05/2016 05:12:09 AM,01/05/2016 05:31:49 AM,01/05/2016 05:31:51 AM,01/05/2016 05:31:59 AM,Code 2 Transport,01/05/2016 05:50:50 AM,400 Block of LYON ST,San Francisco,94117,B05,21,4351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7748184226764, -122.442918467854)",160050389-55 +131720186,77,13058387,Traffic Collision,06/21/2013,06/21/2013,06/21/2013 02:37:22 PM,06/21/2013 02:40:17 PM,06/21/2013 02:41:50 PM,06/21/2013 02:44:37 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,Other,06/21/2013 02:49:40 PM,300 Block of JEFFERSON ST,SF,94133,B01,28,1524,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,3,North Beach,"(37.8081679785862, -122.416634717802)",131720186-77 +133160213,86,13107458,Medical Incident,11/12/2013,11/12/2013,11/12/2013 02:45:24 PM,11/12/2013 02:46:34 PM,11/12/2013 02:52:39 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 02:57:20 PM,HARRISON ST/MAIN ST,SF,94105,B03,35,2113,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.78813450058, -122.390319483833)",133160213-86 +112430189,96,11080132,Medical Incident,08/31/2011,08/31/2011,08/31/2011 12:32:59 PM,08/31/2011 12:33:41 PM,08/31/2011 12:34:26 PM,08/31/2011 12:34:37 PM,08/31/2011 12:38:41 PM,08/31/2011 12:53:39 PM,08/31/2011 01:00:29 PM,Code 3 Transport,08/31/2011 01:31:18 PM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,3,3,3,true,,1,MEDIC,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",112430189-96 +160723732,AM20,16028821,Medical Incident,03/12/2016,03/12/2016,03/12/2016 11:48:33 PM,03/12/2016 11:49:38 PM,03/12/2016 11:49:58 PM,03/12/2016 11:50:22 PM,03/13/2016 12:09:23 AM,03/13/2016 12:09:26 AM,03/13/2016 12:26:21 AM,Code 2 Transport,03/13/2016 12:54:43 AM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160723732-AM20 +131850239,RS2,13063101,Structure Fire,07/04/2013,07/04/2013,07/04/2013 04:19:14 PM,07/04/2013 04:19:37 PM,07/04/2013 04:20:08 PM,07/04/2013 04:21:18 PM,07/04/2013 04:25:49 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/04/2013 04:29:10 PM,600 Block of PERALTA AVE,SF,94110,B10,32,5722,A,A,2,false,Alarm,1,RESCUE SQUAD,4,10,9,Bernal Heights,"(37.7430226018947, -122.40865632531)",131850239-RS2 +122100065,T02,12069668,Citizen Assist / Service Call,07/28/2012,07/27/2012,07/28/2012 04:40:06 AM,07/28/2012 04:43:19 AM,07/28/2012 04:43:28 AM,07/28/2012 04:46:14 AM,07/28/2012 04:49:03 AM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 05:02:06 AM,900 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7930991715599, -122.408788273382)",122100065-T02 +160610560,64,16024201,Traffic Collision,03/01/2016,02/29/2016,03/01/2016 07:26:09 AM,03/01/2016 07:26:59 AM,03/01/2016 07:27:25 AM,03/01/2016 07:27:52 AM,03/01/2016 07:38:56 AM,03/01/2016 07:56:33 AM,03/01/2016 08:41:28 AM,Code 2 Transport,03/01/2016 09:11:37 AM,28TH AV/FULTON ST,San Francisco,94121,B07,14,7223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7724230771545, -122.487398288282)",160610560-64 +160480305,64,16019214,Medical Incident,02/17/2016,02/16/2016,02/17/2016 03:53:46 AM,02/17/2016 03:53:46 AM,02/17/2016 03:54:49 AM,02/17/2016 03:55:40 AM,02/17/2016 04:00:23 AM,02/17/2016 04:16:48 AM,02/17/2016 04:30:32 AM,Code 2 Transport,02/17/2016 05:21:34 AM,1000 Block of POST ST,San Francisco,94109,B02,3,1641,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",160480305-64 +160482085,79,16019367,Medical Incident,02/17/2016,02/17/2016,02/17/2016 01:47:53 PM,02/17/2016 01:49:08 PM,02/17/2016 01:51:17 PM,02/17/2016 01:51:17 PM,02/17/2016 01:54:29 PM,02/17/2016 02:06:22 PM,02/17/2016 02:14:18 PM,Code 2 Transport,02/17/2016 02:43:12 PM,2700 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7881185452243, -122.439595812264)",160482085-79 +160010660,61,16000134,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:29:19 AM,01/01/2016 02:31:29 AM,01/01/2016 02:32:03 AM,01/01/2016 02:32:25 AM,01/01/2016 02:41:35 AM,01/01/2016 02:55:11 AM,01/01/2016 03:15:57 AM,Code 2 Transport,01/01/2016 03:46:28 AM,0 Block of YACHT RD,San Francisco,94123,B04,16,4215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,2,Marina,"(37.8067582085576, -122.446916219003)",160010660-61 +160342492,58,16013486,Medical Incident,02/03/2016,02/03/2016,02/03/2016 04:41:27 PM,02/03/2016 04:42:37 PM,02/03/2016 04:43:35 PM,02/03/2016 04:43:44 PM,02/03/2016 04:51:38 PM,02/03/2016 05:04:20 PM,02/03/2016 05:16:56 PM,Code 2 Transport,02/03/2016 05:57:38 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3111,2,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160342492-58 +160543242,62,16021729,Medical Incident,02/23/2016,02/23/2016,02/23/2016 06:26:19 PM,02/23/2016 06:28:15 PM,02/23/2016 06:28:37 PM,02/23/2016 06:28:43 PM,02/23/2016 06:33:05 PM,02/23/2016 06:44:20 PM,02/23/2016 07:01:28 PM,Code 2 Transport,02/23/2016 07:45:34 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160543242-62 +112370384,E16,11078362,Medical Incident,08/25/2011,08/25/2011,08/25/2011 09:55:59 PM,08/25/2011 09:57:24 PM,08/25/2011 09:57:59 PM,08/25/2011 09:59:41 PM,08/25/2011 10:01:24 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 10:06:28 PM,0 Block of RICHARDSON AVE,SF,94123,B04,16,4223,E,E,3,true,,1,ENGINE,2,4,2,Marina,"(37.7992803030821, -122.445320477419)",112370384-E16 +160670663,53,16026640,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:54:36 AM,03/07/2016 08:54:36 AM,03/07/2016 08:54:36 AM,03/07/2016 08:54:36 AM,03/07/2016 08:54:36 AM,03/07/2016 07:55:00 AM,03/07/2016 08:25:00 AM,Code 2 Transport,03/07/2016 09:14:56 AM,100 Block of FRANCISCO ST,San Francisco,94133,B99,28,1255,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054738067872, -122.407570127181)",160670663-53 +160021349,KM09,16000713,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:55:10 AM,01/02/2016 11:57:45 AM,01/02/2016 11:58:31 AM,01/02/2016 12:01:19 PM,01/02/2016 12:04:05 PM,01/02/2016 12:21:09 PM,01/02/2016 12:35:58 PM,Code 2 Transport,01/02/2016 01:03:13 PM,2000 Block of JEFFERSON ST,San Francisco,94123,B04,16,4216,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8043756821194, -122.446289340263)",160021349-KM09 +110150103,E29,11004933,Medical Incident,01/15/2011,01/15/2011,01/15/2011 08:54:46 AM,01/15/2011 08:55:31 AM,01/15/2011 08:56:02 AM,01/15/2011 08:56:55 AM,01/15/2011 08:58:49 AM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 09:07:05 AM,TREAT AV/ALABAMA ST,SF,94103,B02,29,5221,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7675383433068, -122.412610839251)",110150103-E29 +160040201,KM03,16001439,Medical Incident,01/04/2016,01/03/2016,01/04/2016 02:08:14 AM,01/04/2016 02:10:52 AM,01/04/2016 02:11:00 AM,01/04/2016 02:11:24 AM,01/04/2016 02:19:10 AM,01/04/2016 02:21:10 AM,01/04/2016 02:44:44 AM,Code 2 Transport,01/04/2016 03:10:50 AM,3300 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.775892549655, -122.49464338851)",160040201-KM03 +160380527,AM10,16015072,Medical Incident,02/07/2016,02/06/2016,02/07/2016 03:07:27 AM,02/07/2016 03:07:49 AM,02/07/2016 03:08:03 AM,02/07/2016 03:08:30 AM,02/07/2016 03:11:58 AM,02/07/2016 03:26:37 AM,02/07/2016 03:34:47 AM,Code 2 Transport,02/07/2016 03:54:42 AM,1000 Block of JACKSON ST,San Francisco,94133,B01,2,1443,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7954402184143, -122.411728616731)",160380527-AM10 +131010160,E03,13033926,Medical Incident,04/11/2013,04/11/2013,04/11/2013 11:22:24 AM,04/11/2013 11:23:02 AM,04/11/2013 11:23:20 AM,04/11/2013 11:23:46 AM,04/11/2013 11:26:40 AM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/11/2013 11:30:57 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",131010160-E03 +131770367,77,13060241,Structure Fire,06/26/2013,06/26/2013,06/26/2013 09:23:21 PM,06/26/2013 09:25:00 PM,06/26/2013 09:25:29 PM,06/26/2013 09:25:43 PM,06/26/2013 09:28:08 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 09:31:38 PM,2400 Block of LAKE ST,SF,94121,B07,14,7217,3,3,3,true,Alarm,1,MEDIC,1,7,1,Outer Richmond,"(37.7856667322606, -122.485681909658)",131770367-77 +112550351,E11,11084261,Medical Incident,09/12/2011,09/12/2011,09/12/2011 09:42:25 PM,09/12/2011 09:44:18 PM,09/12/2011 09:44:39 PM,09/12/2011 09:46:06 PM,09/12/2011 09:47:35 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Other,09/12/2011 09:54:53 PM,3000 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.748597504437, -122.418163001869)",112550351-E11 +130940272,84,13031531,Medical Incident,04/04/2013,04/04/2013,04/04/2013 05:04:46 PM,04/04/2013 05:06:28 PM,04/04/2013 05:06:57 PM,04/04/2013 05:07:08 PM,04/04/2013 05:10:23 PM,04/04/2013 05:31:48 PM,04/04/2013 05:58:17 PM,Code 2 Transport,04/04/2013 06:28:42 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130940272-84 +140150279,B03,14005211,Alarms,01/15/2014,01/15/2014,01/15/2014 04:55:32 PM,01/15/2014 04:56:55 PM,01/15/2014 04:57:12 PM,01/15/2014 04:58:23 PM,01/15/2014 05:03:58 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 05:04:02 PM,900 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7835699386918, -122.408421116922)",140150279-B03 +160350516,71,16013691,Medical Incident,02/04/2016,02/03/2016,02/04/2016 06:36:18 AM,02/04/2016 06:37:38 AM,02/04/2016 06:38:40 AM,02/04/2016 06:38:55 AM,02/04/2016 06:40:54 AM,02/04/2016 07:12:24 AM,02/04/2016 07:20:53 AM,Code 2 Transport,02/04/2016 08:11:11 AM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",160350516-71 +160851360,79,16033730,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:51:48 AM,03/25/2016 10:51:48 AM,03/25/2016 10:52:00 AM,03/25/2016 10:52:35 AM,03/25/2016 11:01:31 AM,03/25/2016 11:13:30 AM,03/25/2016 11:51:23 AM,Code 2 Transport,03/25/2016 12:48:37 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",160851360-79 +122740356,58,12090541,Medical Incident,09/30/2012,09/30/2012,09/30/2012 09:02:03 PM,09/30/2012 09:03:53 PM,09/30/2012 09:04:19 PM,09/30/2012 09:04:59 PM,09/30/2012 09:10:58 PM,09/30/2012 09:32:54 PM,09/30/2012 10:05:05 PM,Code 2 Transport,09/30/2012 10:13:43 PM,100 Block of PUTNAM ST,SF,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7375380639723, -122.410869557896)",122740356-58 +122810009,E14,12092846,Smoke Investigation (Outside),10/07/2012,10/06/2012,10/07/2012 12:32:58 AM,10/07/2012 12:35:13 AM,10/07/2012 12:35:37 AM,10/07/2012 12:37:27 AM,10/07/2012 12:39:36 AM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Fire,10/07/2012 12:45:26 AM,5400 Block of FULTON ST,SF,94121,B07,14,7224,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.772355745851, -122.490082156003)",122810009-E14 +121620115,E07,12053573,Medical Incident,06/10/2012,06/10/2012,06/10/2012 08:36:36 AM,06/10/2012 08:39:29 AM,06/10/2012 08:39:46 AM,06/10/2012 08:41:49 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 08:43:46 AM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",121620115-E07 +110440289,E15,11014711,Medical Incident,02/13/2011,02/13/2011,02/13/2011 06:06:46 PM,02/13/2011 06:07:41 PM,02/13/2011 06:07:55 PM,02/13/2011 06:08:49 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 06:11:54 PM,PERSIA AV/OCEAN AV,SF,94112,B09,43,6121,E,3,3,true,,1,ENGINE,4,9,11,Outer Mission,"(37.7237878477275, -122.436449314515)",110440289-E15 +102880382,E02,10092002,Medical Incident,10/15/2010,10/15/2010,10/15/2010 10:26:14 PM,10/15/2010 10:27:59 PM,10/15/2010 10:28:30 PM,10/15/2010 10:29:39 PM,10/15/2010 10:31:27 PM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,Other,10/15/2010 10:42:57 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",102880382-E02 +110490336,E33,11016310,Medical Incident,02/18/2011,02/18/2011,02/18/2011 07:04:09 PM,02/18/2011 07:09:08 PM,02/18/2011 07:11:12 PM,02/18/2011 07:12:31 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 07:31:07 PM,200 Block of THRIFT ST,SF,94112,B09,33,8415,3,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7173776032909, -122.461431734706)",110490336-E33 +122060327,AP,12068615,Other,07/24/2012,07/24/2012,07/24/2012 08:13:16 PM,07/24/2012 08:13:16 PM,07/24/2012 08:13:16 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Fire,07/24/2012 08:13:34 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122060327-AP +140230088,E05,14007785,Alarms,01/23/2014,01/23/2014,01/23/2014 09:01:01 AM,01/23/2014 09:01:56 AM,01/23/2014 09:02:59 AM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/23/2014 09:04:04 AM,800 Block of ELLIS ST,SF,94109,B02,3,3115,,3,3,true,Alarm,1,ENGINE,4,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",140230088-E05 +131620365,E14,13055200,Medical Incident,06/11/2013,06/11/2013,06/11/2013 09:58:10 PM,06/11/2013 10:00:37 PM,06/11/2013 10:01:20 PM,06/11/2013 10:02:47 PM,06/11/2013 10:03:30 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/11/2013 10:11:43 PM,26TH AV/GEARY BL,SF,94121,B07,14,7213,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7800379523626, -122.485807574821)",131620365-E14 +121720012,89,12056963,Medical Incident,06/20/2012,06/19/2012,06/20/2012 12:50:25 AM,06/20/2012 12:50:32 AM,06/20/2012 12:52:39 AM,06/20/2012 12:52:51 AM,06/20/2012 01:00:37 AM,06/20/2012 01:13:54 AM,06/20/2012 01:51:02 AM,Code 2 Transport,06/20/2012 02:13:55 AM,1300 Block of 9TH AVE,SF,94122,B08,22,7334,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.763102976167, -122.466314668643)",121720012-89 +111250364,T15,11041512,Structure Fire,05/05/2011,05/05/2011,05/05/2011 09:59:28 PM,05/05/2011 09:59:29 PM,05/05/2011 09:59:40 PM,05/05/2011 10:00:44 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 10:02:58 PM,SAN JOSE AV/FARALLONES ST,SF,94112,B09,33,8324,3,3,3,false,,1,TRUCK,2,9,11,Oceanview/Merced/Ingleside,"(37.7141037637842, -122.452174082905)",111250364-T15 +160190112,76,16007443,Medical Incident,01/19/2016,01/18/2016,01/19/2016 12:50:19 AM,01/19/2016 12:50:51 AM,01/19/2016 12:51:24 AM,01/19/2016 12:51:57 AM,01/19/2016 01:15:26 AM,01/19/2016 01:34:02 AM,01/19/2016 01:37:42 AM,Code 2 Transport,01/19/2016 02:29:12 AM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160190112-76 +131620170,E13,13055031,Medical Incident,06/11/2013,06/11/2013,06/11/2013 12:47:24 PM,06/11/2013 12:49:12 PM,06/11/2013 12:49:27 PM,06/11/2013 12:49:42 PM,06/11/2013 12:52:27 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/11/2013 01:06:25 PM,300 Block of VALLEJO ST,SF,94133,B01,13,1213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7992755571219, -122.403678525194)",131620170-E13 +103170251,83,10101664,Medical Incident,11/13/2010,11/13/2010,11/13/2010 04:27:33 PM,11/13/2010 04:29:50 PM,11/13/2010 04:30:40 PM,11/13/2010 04:31:15 PM,11/13/2010 04:42:13 PM,11/13/2010 04:51:40 PM,11/13/2010 05:06:58 PM,Code 2 Transport,11/13/2010 05:38:33 PM,100 Block of HAYES ST,SF,94102,B02,36,3166,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7773515638882, -122.418857320448)",103170251-83 +160270792,85,16010581,Medical Incident,01/27/2016,01/27/2016,01/27/2016 08:31:51 AM,01/27/2016 08:36:46 AM,01/27/2016 08:37:17 AM,01/27/2016 08:37:59 AM,01/27/2016 08:53:20 AM,01/27/2016 09:06:23 AM,01/27/2016 10:01:33 AM,Code 2 Transport,01/27/2016 10:07:27 AM,0 Block of JANSEN ST,San Francisco,94133,B01,28,1423,3,A,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.8022668069282, -122.41369753745)",160270792-85 +101690138,AP,10053305,Other,06/18/2010,06/18/2010,06/18/2010 12:08:39 PM,06/18/2010 12:08:40 PM,06/18/2010 12:08:40 PM,04/25/2016 03:22:42 PM,04/25/2016 03:22:42 PM,04/25/2016 03:22:42 PM,04/25/2016 03:22:42 PM,Fire,06/18/2010 12:08:49 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",101690138-AP +112030255,91,11067070,Medical Incident,07/22/2011,07/22/2011,07/22/2011 03:32:42 PM,07/22/2011 03:33:30 PM,07/22/2011 03:33:47 PM,07/22/2011 03:34:32 PM,07/22/2011 03:44:44 PM,07/22/2011 04:02:09 PM,07/22/2011 04:35:32 PM,Code 2 Transport,07/22/2011 04:50:14 PM,4400 Block of MISSION ST,SF,94112,B09,43,6116,3,3,3,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7269111586163, -122.433193907155)",112030255-91 +112730388,AM04,11090421,Medical Incident,09/30/2011,09/30/2011,09/30/2011 09:56:17 PM,09/30/2011 09:57:51 PM,09/30/2011 09:58:03 PM,09/30/2011 09:58:41 PM,09/30/2011 10:02:05 PM,09/30/2011 10:24:05 PM,09/30/2011 10:24:12 PM,Code 2 Transport,09/30/2011 10:40:00 PM,100 Block of SPEAR ST,SF,94105,B03,35,2114,3,2,2,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7918853862733, -122.393341223517)",112730388-AM04 +130260166,85,13008964,Medical Incident,01/26/2013,01/26/2013,01/26/2013 12:11:30 PM,01/26/2013 12:13:23 PM,01/26/2013 12:13:28 PM,01/26/2013 12:13:52 PM,01/26/2013 12:20:25 PM,01/26/2013 12:43:58 PM,01/26/2013 01:11:15 PM,Code 2 Transport,01/26/2013 01:42:13 PM,POLK ST/VALLEJO ST,SF,94109,B04,41,3126,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7968997476834, -122.42196091068)",130260166-85 +130770055,E03,13025621,Medical Incident,03/18/2013,03/17/2013,03/18/2013 07:14:33 AM,03/18/2013 07:16:27 AM,03/18/2013 07:17:22 AM,03/18/2013 07:18:33 AM,03/18/2013 07:20:52 AM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 07:40:16 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",130770055-E03 +160912946,66,16036191,Medical Incident,03/31/2016,03/31/2016,03/31/2016 06:15:27 PM,03/31/2016 06:17:34 PM,03/31/2016 06:17:44 PM,03/31/2016 06:17:50 PM,03/31/2016 06:37:30 PM,03/31/2016 06:57:13 PM,03/31/2016 07:49:53 PM,Code 2 Transport,03/31/2016 08:20:04 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160912946-66 +140510119,T18,14017213,Alarms,02/20/2014,02/20/2014,02/20/2014 09:51:22 AM,02/20/2014 09:51:23 AM,02/20/2014 09:51:35 AM,02/20/2014 09:51:57 AM,02/20/2014 09:56:10 AM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Fire,02/20/2014 09:56:38 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",140510119-T18 +160571229,74,16022703,Medical Incident,02/26/2016,02/26/2016,02/26/2016 10:34:28 AM,02/26/2016 10:37:14 AM,02/26/2016 10:41:35 AM,02/26/2016 10:41:44 AM,02/26/2016 11:04:08 AM,02/26/2016 11:31:02 AM,02/26/2016 11:38:58 AM,Code 2 Transport,02/26/2016 12:12:45 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160571229-74 +140470235,E15,14016056,Structure Fire,02/16/2014,02/16/2014,02/16/2014 03:58:45 PM,02/16/2014 03:58:45 PM,02/16/2014 03:59:33 PM,02/16/2014 04:00:15 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 04:01:09 PM,SANTA ROSA AV/CAYUGA AV,SF,94112,B09,15,8265,,3,3,true,Alarm,1,ENGINE,3,9,11,Outer Mission,"(37.7271683911386, -122.436805492694)",140470235-E15 +160760817,54,16030040,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:41:51 AM,03/16/2016 08:44:23 AM,03/16/2016 08:45:17 AM,03/16/2016 08:45:26 AM,03/16/2016 08:53:38 AM,03/16/2016 09:14:53 AM,03/16/2016 09:34:43 AM,Code 2 Transport,03/16/2016 10:13:08 AM,100 Block of 5TH ST,San Francisco,94103,B03,1,2246,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7817509861584, -122.40515072935)",160760817-54 +112940203,T14,11097530,Alarms,10/21/2011,10/21/2011,10/21/2011 01:53:17 PM,10/21/2011 01:54:18 PM,10/21/2011 01:54:26 PM,10/21/2011 01:54:48 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 02:04:13 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,,1,TRUCK,2,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",112940203-T14 +102350003,E25,10073796,Alarms,08/23/2010,08/22/2010,08/23/2010 12:06:11 AM,08/23/2010 12:07:10 AM,08/23/2010 12:07:19 AM,08/23/2010 12:08:35 AM,08/23/2010 12:10:56 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 12:21:00 AM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",102350003-E25 +120520277,AM14,12017255,Medical Incident,02/21/2012,02/21/2012,02/21/2012 05:38:39 PM,02/21/2012 05:40:56 PM,02/21/2012 05:41:25 PM,02/21/2012 05:42:00 PM,02/21/2012 05:52:37 PM,02/21/2012 05:56:29 PM,02/21/2012 06:13:06 PM,Code 2 Transport,02/21/2012 06:41:54 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120520277-AM14 +132540346,T01,13085947,Structure Fire,09/11/2013,09/11/2013,09/11/2013 06:37:05 PM,09/11/2013 06:37:58 PM,09/11/2013 06:38:10 PM,09/11/2013 06:39:07 PM,04/25/2016 01:50:50 PM,04/25/2016 01:50:50 PM,04/25/2016 01:50:50 PM,Other,09/11/2013 06:51:29 PM,0 Block of 5TH ST,SF,94103,B03,1,2247,3,3,3,false,Fire,1,TRUCK,10,3,6,South of Market,"(37.7833716368249, -122.407382686506)",132540346-T01 +160393644,70,16015809,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:54:31 PM,02/08/2016 09:56:52 PM,02/08/2016 09:57:06 PM,02/08/2016 09:57:37 PM,02/08/2016 10:10:15 PM,02/08/2016 10:18:18 PM,02/08/2016 10:24:33 PM,Code 2 Transport,02/08/2016 10:48:34 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160393644-70 +112660378,E13,11088056,Medical Incident,09/23/2011,09/23/2011,09/23/2011 11:12:43 PM,09/23/2011 11:15:24 PM,09/23/2011 11:15:42 PM,09/23/2011 11:15:59 PM,09/23/2011 11:17:21 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 11:26:14 PM,400 Block of SACRAMENTO ST,SF,94104,B01,13,1166,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7940064054138, -122.400720766753)",112660378-E13 +102670265,T14,10084576,Alarms,09/24/2010,09/24/2010,09/24/2010 04:54:41 PM,09/24/2010 04:55:50 PM,09/24/2010 04:56:10 PM,09/24/2010 04:56:45 PM,09/24/2010 04:59:21 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Other,09/24/2010 05:05:50 PM,200 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7215,3,3,3,false,,1,TRUCK,1,7,2,Seacliff,"(37.7875319374674, -122.485817151324)",102670265-T14 +113240302,T08,11107726,Elevator / Escalator Rescue,11/20/2011,11/20/2011,11/20/2011 07:40:11 PM,11/20/2011 07:42:20 PM,11/20/2011 07:43:12 PM,11/20/2011 07:44:23 PM,11/20/2011 07:48:00 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 08:12:36 PM,600 Block of TOWNSEND ST,SF,94107,B03,29,2275,3,3,3,true,,1,TRUCK,1,3,10,Mission Bay,"(37.7709010647695, -122.402718399164)",113240302-T08 +160740722,AM06,16029231,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:15:07 AM,03/14/2016 08:16:58 AM,03/14/2016 08:17:15 AM,03/14/2016 08:17:58 AM,03/14/2016 08:30:51 AM,03/14/2016 08:42:15 AM,03/14/2016 08:55:00 AM,Code 2 Transport,03/14/2016 09:26:58 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160740722-AM06 +112820010,E29,11093209,Medical Incident,10/09/2011,10/08/2011,10/09/2011 12:23:59 AM,10/09/2011 12:28:07 AM,10/09/2011 12:28:47 AM,10/09/2011 12:30:08 AM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Other,10/09/2011 12:43:39 AM,1100 Block of FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7752603293476, -122.409820946894)",112820010-E29 +160773635,76,16030767,Medical Incident,03/17/2016,03/17/2016,03/17/2016 07:47:20 PM,03/17/2016 07:47:20 PM,03/17/2016 07:48:27 PM,03/17/2016 07:48:35 PM,03/17/2016 07:59:55 PM,03/17/2016 08:03:22 PM,03/17/2016 08:17:56 PM,Code 2 Transport,03/17/2016 09:04:48 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160773635-76 +131280136,68,13043232,Medical Incident,05/08/2013,05/08/2013,05/08/2013 10:06:11 AM,05/08/2013 10:07:41 AM,05/08/2013 10:08:09 AM,05/08/2013 10:08:24 AM,05/08/2013 10:13:50 AM,05/08/2013 10:27:21 AM,05/08/2013 11:01:28 AM,Code 2 Transport,05/08/2013 11:45:05 AM,600 Block of BRYANT ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786440354083, -122.399130045019)",131280136-68 +120380263,66,12012750,Medical Incident,02/07/2012,02/07/2012,02/07/2012 04:57:39 PM,02/07/2012 04:57:44 PM,02/07/2012 04:59:07 PM,02/07/2012 04:59:16 PM,02/07/2012 05:05:40 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Patient Declined Transport,02/07/2012 05:25:38 PM,GARDEN ST/BRODERICK ST,SF,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Japantown,"(37.783641693269, -122.441255225206)",120380263-66 +160341893,72,16013409,Medical Incident,02/03/2016,02/03/2016,02/03/2016 01:50:54 PM,02/03/2016 01:52:45 PM,02/03/2016 01:57:22 PM,02/03/2016 01:57:27 PM,02/03/2016 02:06:42 PM,02/03/2016 02:13:51 PM,02/03/2016 02:46:42 PM,Code 2 Transport,02/03/2016 03:16:25 PM,0 Block of BELGRAVE AVE,San Francisco,94114,B05,12,5263,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7594868419389, -122.450378875628)",160341893-72 +120020019,57,12000596,Medical Incident,01/02/2012,01/01/2012,01/02/2012 01:28:38 AM,01/02/2012 01:29:39 AM,01/02/2012 01:30:03 AM,01/02/2012 01:31:27 AM,01/02/2012 01:33:30 AM,01/02/2012 01:57:54 AM,01/02/2012 02:45:16 AM,Code 2 Transport,01/02/2012 02:52:15 AM,1300 Block of FOLSOM ST,SF,94103,B02,36,2343,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7730095075911, -122.41247584547)",120020019-57 +112690285,E41,11088987,Medical Incident,09/26/2011,09/26/2011,09/26/2011 05:23:19 PM,09/26/2011 05:24:28 PM,09/26/2011 05:25:54 PM,09/26/2011 05:27:24 PM,09/26/2011 05:28:27 PM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/26/2011 05:43:52 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,,1,ENGINE,1,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",112690285-E41 +160282064,71,16011113,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:09:05 PM,01/28/2016 02:10:47 PM,01/28/2016 02:11:44 PM,01/28/2016 02:11:56 PM,01/28/2016 02:16:47 PM,01/28/2016 02:35:32 PM,01/28/2016 02:47:39 PM,Code 2 Transport,01/28/2016 03:16:31 PM,100 Block of DRUMM ST,San Francisco,94111,B01,13,1115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",160282064-71 +160331777,KM08,16012992,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:31:48 PM,02/02/2016 01:32:57 PM,02/02/2016 01:33:20 PM,02/02/2016 01:33:38 PM,02/02/2016 01:40:49 PM,02/02/2016 01:47:21 PM,02/02/2016 02:15:56 PM,Code 2 Transport,02/02/2016 03:04:13 PM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",160331777-KM08 +132300246,55,13077710,Medical Incident,08/18/2013,08/18/2013,08/18/2013 03:39:11 PM,08/18/2013 03:39:34 PM,08/18/2013 03:40:10 PM,08/18/2013 03:40:47 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,Other,08/18/2013 03:41:29 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",132300246-55 +160350616,65,16013707,Medical Incident,02/04/2016,02/03/2016,02/04/2016 07:21:28 AM,02/04/2016 07:21:28 AM,02/04/2016 07:21:43 AM,02/04/2016 07:21:51 AM,02/04/2016 07:31:26 AM,02/04/2016 07:46:28 AM,02/04/2016 08:03:17 AM,Code 2 Transport,02/04/2016 08:52:45 AM,PAUL AV/BAYSHORE BL,San Francisco,94124,B10,44,6323,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7236162096696, -122.40078474994)",160350616-65 +102270139,94,10071418,Medical Incident,08/15/2010,08/15/2010,08/15/2010 10:40:44 AM,08/15/2010 10:41:53 AM,08/15/2010 10:42:03 AM,08/15/2010 10:42:18 AM,08/15/2010 10:45:37 AM,08/15/2010 11:14:23 AM,08/15/2010 11:36:07 AM,Code 2 Transport,08/15/2010 11:46:06 AM,3200 Block of MISSION ST,SF,94110,B06,32,5625,3,3,3,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",102270139-94 +112440038,E01,11080330,Medical Incident,09/01/2011,08/31/2011,09/01/2011 03:16:30 AM,09/01/2011 03:17:33 AM,09/01/2011 03:17:44 AM,09/01/2011 03:20:26 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 03:23:53 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,1,2,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",112440038-E01 +160421590,53,16016847,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:05:28 PM,02/11/2016 12:06:01 PM,02/11/2016 12:06:28 PM,02/11/2016 12:07:23 PM,02/11/2016 12:08:27 PM,02/11/2016 12:09:24 PM,02/11/2016 12:09:25 PM,Code 2 Transport,02/11/2016 02:12:58 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160421590-53 +131860047,E07,13063318,Other,07/05/2013,07/04/2013,07/05/2013 03:17:04 AM,07/05/2013 03:17:29 AM,07/05/2013 03:17:57 AM,04/25/2016 01:51:57 PM,07/05/2013 03:23:35 AM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Fire,07/05/2013 03:38:35 AM,3100 Block of 16TH ST,SF,94103,B02,6,5235,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7648681454287, -122.423612806769)",131860047-E07 +111210082,E21,11039859,Medical Incident,05/01/2011,04/30/2011,05/01/2011 07:42:34 AM,05/01/2011 07:43:42 AM,05/01/2011 07:43:55 AM,05/01/2011 07:44:56 AM,05/01/2011 07:47:55 AM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,05/01/2011 07:52:40 AM,2000 Block of GROVE ST,SF,94117,B05,21,4535,3,3,3,true,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7744085299386, -122.450351367472)",111210082-E21 +102510345,E03,10079428,Structure Fire,09/08/2010,09/08/2010,09/08/2010 07:51:23 PM,09/08/2010 07:53:35 PM,09/08/2010 07:53:49 PM,04/25/2016 02:08:41 PM,09/08/2010 07:56:34 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 08:10:47 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",102510345-E03 +133170231,T05,13107775,Alarms,11/13/2013,11/13/2013,11/13/2013 03:08:57 PM,11/13/2013 03:09:55 PM,11/13/2013 03:11:35 PM,11/13/2013 03:11:53 PM,11/13/2013 03:15:41 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 03:16:24 PM,0 Block of PAGE ST,SF,94102,B02,36,3212,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7742439239467, -122.421594452135)",133170231-T05 +103640354,E18,10116913,Electrical Hazard,12/30/2010,12/30/2010,12/30/2010 10:19:15 PM,12/30/2010 10:22:20 PM,12/30/2010 10:22:26 PM,12/30/2010 10:23:51 PM,12/30/2010 10:25:53 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/30/2010 10:31:18 PM,1800 Block of 43RD AVE,SF,94122,B08,23,7646,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7521699490631, -122.502194739789)",103640354-E18 +102480013,E01,10078218,Medical Incident,09/05/2010,09/04/2010,09/05/2010 12:58:53 AM,09/05/2010 12:59:22 AM,09/05/2010 12:59:45 AM,09/05/2010 01:01:21 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 01:03:46 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",102480013-E01 +121090291,E28,12036139,Water Rescue,04/18/2012,04/18/2012,04/18/2012 06:20:07 PM,04/18/2012 06:20:07 PM,04/18/2012 06:21:32 PM,04/18/2012 06:23:03 PM,04/18/2012 06:25:30 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/18/2012 06:44:35 PM,CALL BOX: PIER 43,SF,94133,B01,28,943,3,3,3,false,Fire,1,ENGINE,1,1,3,North Beach,"(37.8086727647211, -122.412586999257)",121090291-E28 +110960365,73,11031998,Medical Incident,04/06/2011,04/06/2011,04/06/2011 11:13:48 PM,04/06/2011 11:15:01 PM,04/06/2011 11:16:10 PM,04/06/2011 11:16:45 PM,04/06/2011 11:28:53 PM,04/06/2011 11:43:10 PM,04/06/2011 11:50:30 PM,Code 2 Transport,04/07/2011 12:19:33 AM,100 Block of CLEO RAND AVE,SF,94124,B10,25,6666,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291145750944, -122.371202591843)",110960365-73 +140840036,AM18,14028185,Medical Incident,03/25/2014,03/24/2014,03/25/2014 03:53:19 AM,03/25/2014 03:53:45 AM,03/25/2014 03:54:07 AM,03/25/2014 03:55:18 AM,03/25/2014 03:58:31 AM,03/25/2014 04:02:12 AM,03/25/2014 04:12:48 AM,Code 2 Transport,03/25/2014 04:22:09 AM,17TH ST/PROSPER ST,SAN FRANCISCO,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.762703174991, -122.431544840056)",140840036-AM18 +130730016,88,13024214,Medical Incident,03/14/2013,03/13/2013,03/14/2013 01:29:35 AM,03/14/2013 01:31:11 AM,03/14/2013 01:31:20 AM,03/14/2013 01:31:29 AM,03/14/2013 01:40:12 AM,03/14/2013 01:59:27 AM,03/14/2013 02:18:10 AM,Code 2 Transport,03/14/2013 02:39:20 AM,300 Block of VIENNA ST,SF,94112,B09,43,6155,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7227804111928, -122.428602345947)",130730016-88 +132940375,58,13100155,Medical Incident,10/21/2013,10/21/2013,10/21/2013 10:19:40 PM,10/21/2013 10:21:37 PM,10/21/2013 10:24:11 PM,10/21/2013 10:24:15 PM,10/21/2013 10:34:14 PM,10/21/2013 10:50:37 PM,04/25/2016 01:50:09 PM,Code 2 Transport,10/21/2013 11:28:27 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2244,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",132940375-58 +140570148,E15,14019192,Medical Incident,02/26/2014,02/26/2014,02/26/2014 10:36:47 AM,02/26/2014 10:37:41 AM,02/26/2014 10:37:56 AM,02/26/2014 10:40:05 AM,02/26/2014 10:41:47 AM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Other,02/26/2014 11:06:11 AM,GENEVA AV/NAPLES ST,SF,94112,B09,43,6174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7142094836778, -122.436176465247)",140570148-E15 +111190017,83,11039114,Medical Incident,04/29/2011,04/28/2011,04/29/2011 01:48:57 AM,04/29/2011 01:51:23 AM,04/29/2011 01:51:41 AM,04/29/2011 01:52:01 AM,04/29/2011 01:53:23 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,No Merit,04/29/2011 02:01:36 AM,1300 Block of VAN NESS AVE,SF,94109,B04,3,3156,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7882889208706, -122.421732731473)",111190017-83 +120280254,E25,12009473,Medical Incident,01/28/2012,01/28/2012,01/28/2012 05:27:33 PM,01/28/2012 05:29:01 PM,01/28/2012 05:30:15 PM,01/28/2012 05:31:41 PM,01/28/2012 05:33:54 PM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/28/2012 05:37:15 PM,23RD ST/INDIANA ST,SF,94107,B10,25,2573,3,3,3,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.755213902438, -122.390921943768)",120280254-E25 +123360437,E38,12111952,Structure Fire,12/01/2012,12/01/2012,12/01/2012 10:37:00 PM,12/01/2012 10:39:36 PM,12/01/2012 10:40:43 PM,12/01/2012 10:43:06 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 10:47:57 PM,1100 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,ENGINE,6,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",123360437-E38 +110820211,E40,11026965,Administrative,03/23/2011,03/23/2011,03/23/2011 01:40:20 PM,03/23/2011 01:40:23 PM,03/23/2011 01:40:41 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 01:42:44 PM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,false,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",110820211-E40 +123540090,E01,12118375,Alarms,12/19/2012,12/18/2012,12/19/2012 07:44:00 AM,12/19/2012 07:44:00 AM,12/19/2012 07:44:08 AM,12/19/2012 07:46:37 AM,12/19/2012 07:49:59 AM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 07:50:17 AM,TAYLOR ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",123540090-E01 +103450300,E13,10110680,Medical Incident,12/11/2010,12/11/2010,12/11/2010 05:36:25 PM,12/11/2010 05:38:35 PM,12/11/2010 05:39:16 PM,12/11/2010 05:39:56 PM,12/11/2010 05:42:05 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 05:49:53 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",103450300-E13 +133450311,E15,13117097,Medical Incident,12/11/2013,12/11/2013,12/11/2013 04:32:54 PM,12/11/2013 04:36:24 PM,12/11/2013 04:36:58 PM,12/11/2013 04:38:20 PM,12/11/2013 04:40:30 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,Other,12/11/2013 05:00:02 PM,300 Block of FOERSTER ST,SF,94112,B09,15,8235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7311162784575, -122.448932516664)",133450311-E15 +111270026,E43,11041917,Medical Incident,05/07/2011,05/06/2011,05/07/2011 02:46:48 AM,05/07/2011 02:46:48 AM,05/07/2011 02:47:46 AM,05/07/2011 02:54:04 AM,05/07/2011 02:56:45 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,No Merit,05/07/2011 03:01:30 AM,0 Block of CURTIS ST,SF,94112,B09,43,6232,2,E,3,true,,1,ENGINE,2,9,11,Excelsior,"(37.7141265601832, -122.439828171044)",111270026-E43 +120670133,84,12022163,Medical Incident,03/07/2012,03/07/2012,03/07/2012 09:37:53 AM,03/07/2012 09:40:30 AM,03/07/2012 09:40:48 AM,03/07/2012 09:43:16 AM,03/07/2012 09:47:35 AM,03/07/2012 10:14:55 AM,03/07/2012 10:42:37 AM,Code 2 Transport,03/07/2012 11:06:34 AM,400 Block of 3RD ST,SF,94107,B03,8,2174,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7823750775991, -122.397064398742)",120670133-84 +160642359,KM04,16025557,Medical Incident,03/04/2016,03/04/2016,03/04/2016 03:07:21 PM,03/04/2016 03:08:27 PM,03/04/2016 03:08:52 PM,03/04/2016 03:09:23 PM,03/04/2016 03:14:54 PM,03/04/2016 03:24:59 PM,03/04/2016 03:46:26 PM,Code 2 Transport,03/04/2016 04:14:52 PM,1600 Block of VALENCIA ST,San Francisco,94110,B06,11,5611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7473464894373, -122.420273560089)",160642359-KM04 +140520045,66,14017506,Medical Incident,02/21/2014,02/20/2014,02/21/2014 06:02:48 AM,02/21/2014 06:05:08 AM,02/21/2014 06:07:31 AM,02/21/2014 06:07:40 AM,02/21/2014 06:11:39 AM,02/21/2014 06:17:18 AM,02/21/2014 06:34:34 AM,Code 2 Transport,02/21/2014 07:03:20 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",140520045-66 +160362073,77,16014271,Medical Incident,02/05/2016,02/05/2016,02/05/2016 01:31:26 PM,02/05/2016 01:32:19 PM,02/05/2016 01:32:44 PM,02/05/2016 01:32:49 PM,02/05/2016 01:39:07 PM,02/05/2016 01:47:58 PM,02/05/2016 02:08:35 PM,Code 2 Transport,02/05/2016 02:42:30 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",160362073-77 +160192828,68,16007737,Medical Incident,01/19/2016,01/19/2016,01/19/2016 05:39:50 PM,01/19/2016 05:41:08 PM,01/19/2016 05:43:08 PM,01/19/2016 05:43:18 PM,01/19/2016 05:50:58 PM,01/19/2016 06:13:03 PM,01/19/2016 06:27:58 PM,Code 2 Transport,01/19/2016 07:09:32 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160192828-68 +160062732,KM04,16002508,Medical Incident,01/06/2016,01/06/2016,01/06/2016 05:14:38 PM,01/06/2016 05:15:31 PM,01/06/2016 05:16:43 PM,01/06/2016 05:18:10 PM,01/06/2016 05:25:30 PM,01/06/2016 05:35:54 PM,01/06/2016 05:48:50 PM,Code 2 Transport,01/06/2016 06:27:38 PM,GEARY BL/ARGUELLO BL,San Francisco,94118,B07,31,7113,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",160062732-KM04 +110720076,88,11023631,Medical Incident,03/13/2011,03/12/2011,03/13/2011 05:00:16 AM,03/13/2011 05:01:04 AM,03/13/2011 05:01:41 AM,03/13/2011 05:01:48 AM,03/13/2011 05:09:12 AM,03/13/2011 05:25:26 AM,03/13/2011 05:48:25 AM,Code 2 Transport,03/13/2011 06:19:11 AM,3800 Block of JUDAH ST,SF,94122,B08,23,7655,3,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7604879962872, -122.503245387558)",110720076-88 +130620303,72,13020877,Medical Incident,03/03/2013,03/03/2013,03/03/2013 06:09:39 PM,03/03/2013 06:10:25 PM,03/03/2013 06:10:33 PM,03/03/2013 06:11:01 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 06:21:20 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",130620303-72 +131610081,88,13054607,Medical Incident,06/10/2013,06/10/2013,06/10/2013 08:04:10 AM,06/10/2013 08:05:02 AM,06/10/2013 08:05:31 AM,06/10/2013 08:05:57 AM,06/10/2013 08:12:56 AM,06/10/2013 08:37:12 AM,06/10/2013 09:00:52 AM,Code 2 Transport,06/10/2013 09:29:50 AM,2500 Block of 38TH AVE,SF,94116,B08,18,7617,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7393588005446, -122.495784981897)",131610081-88 +123640241,KM09,12121854,Medical Incident,12/29/2012,12/29/2012,12/29/2012 04:54:16 PM,12/29/2012 04:55:09 PM,12/29/2012 04:55:23 PM,12/29/2012 04:56:27 PM,12/29/2012 05:00:41 PM,12/29/2012 05:27:55 PM,12/29/2012 05:31:40 PM,Code 2 Transport,12/29/2012 06:18:30 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",123640241-KM09 +112930338,E28,11097332,Medical Incident,10/20/2011,10/20/2011,10/20/2011 08:27:37 PM,10/20/2011 08:28:18 PM,10/20/2011 08:29:36 PM,10/20/2011 08:30:30 PM,10/20/2011 08:33:22 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 08:41:56 PM,900 Block of BEACH ST,SF,94109,B01,28,3135,3,3,3,false,,1,ENGINE,1,1,2,Russian Hill,"(37.806210458565, -122.424360355387)",112930338-E28 +140520300,T12,14017717,Citizen Assist / Service Call,02/21/2014,02/21/2014,02/21/2014 06:55:01 PM,02/21/2014 06:59:42 PM,02/21/2014 07:01:31 PM,02/21/2014 07:03:31 PM,02/21/2014 07:08:25 PM,04/25/2016 01:48:05 PM,04/25/2016 01:48:05 PM,Fire,02/21/2014 07:30:33 PM,1300 Block of PAGE ST,SF,94117,B05,21,4355,3,3,3,false,Alarm,1,TRUCK,1,5,5,Haight Ashbury,"(37.771410364477, -122.443000900574)",140520300-T12 +102410312,T02,10076131,Alarms,08/29/2010,08/29/2010,08/29/2010 08:09:48 PM,08/29/2010 08:10:54 PM,08/29/2010 08:11:08 PM,08/29/2010 08:12:59 PM,08/29/2010 08:14:10 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/29/2010 08:26:03 PM,700 Block of JACKSON ST,SF,94133,B01,2,1312,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7960519173156, -122.406878836938)",102410312-T02 +131350033,E03,13045443,Structure Fire,05/15/2013,05/14/2013,05/15/2013 06:07:19 AM,05/15/2013 06:07:19 AM,05/15/2013 06:07:26 AM,05/15/2013 06:08:56 AM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,Fire,05/15/2013 06:10:30 AM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",131350033-E03 +132880349,E08,13098107,Medical Incident,10/15/2013,10/15/2013,10/15/2013 08:02:42 PM,10/15/2013 08:04:57 PM,10/15/2013 08:15:21 PM,10/15/2013 08:16:52 PM,10/15/2013 08:18:16 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,10/15/2013 08:32:11 PM,200 Block of KING ST,SF,94107,B03,8,2171,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",132880349-E08 +112740129,E07,11090567,Medical Incident,10/01/2011,10/01/2011,10/01/2011 09:15:56 AM,10/01/2011 09:16:09 AM,10/01/2011 09:16:31 AM,10/01/2011 09:16:59 AM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Other,10/01/2011 09:19:29 AM,1200 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7531743146878, -122.416270507567)",112740129-E07 +160822982,83,16032680,Medical Incident,03/22/2016,03/22/2016,03/22/2016 05:42:44 PM,03/22/2016 05:43:38 PM,03/22/2016 05:44:24 PM,03/22/2016 05:44:34 PM,03/22/2016 05:49:53 PM,03/22/2016 06:07:02 PM,03/22/2016 06:13:04 PM,Code 3 Transport,03/22/2016 06:41:46 PM,100 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,3,E,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",160822982-83 +113420290,B02,11113480,Structure Fire,12/08/2011,12/08/2011,12/08/2011 05:27:10 PM,12/08/2011 05:27:10 PM,12/08/2011 05:27:19 PM,12/08/2011 05:28:25 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/08/2011 05:30:54 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,,1,CHIEF,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",113420290-B02 +113400402,58,11112878,Medical Incident,12/06/2011,12/06/2011,12/06/2011 10:10:22 PM,12/06/2011 10:10:34 PM,12/06/2011 10:10:47 PM,12/06/2011 10:10:53 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/06/2011 10:14:43 PM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,2,2,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",113400402-58 +132790235,81,13094937,Medical Incident,10/06/2013,10/06/2013,10/06/2013 01:21:23 PM,10/06/2013 01:23:14 PM,10/06/2013 01:23:48 PM,10/06/2013 01:24:10 PM,10/06/2013 01:31:17 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,No Merit,10/06/2013 01:32:49 PM,1700 Block of JACKSON ST,SF,94109,B04,41,3153,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7937762800279, -122.423860535824)",132790235-81 +120460306,88,12015403,Medical Incident,02/15/2012,02/15/2012,02/15/2012 06:22:51 PM,02/15/2012 06:23:41 PM,02/15/2012 06:23:58 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 06:24:41 PM,200 Block of JUSTIN DR,SF,94110,B06,32,5642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,6,9,Bernal Heights,"(37.7329903518167, -122.421772605391)",120460306-88 +133190038,E34,13108276,Medical Incident,11/15/2013,11/14/2013,11/15/2013 05:39:19 AM,11/15/2013 05:39:34 AM,11/15/2013 05:39:49 AM,11/15/2013 05:41:19 AM,11/15/2013 05:42:45 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 05:56:34 AM,7500 Block of GEARY BLVD,SF,94121,B07,34,7264,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.779202123681, -122.501331891706)",133190038-E34 +110850239,KM12,11028071,Medical Incident,03/26/2011,03/26/2011,03/26/2011 03:06:17 PM,03/26/2011 03:06:44 PM,03/26/2011 03:08:49 PM,03/26/2011 03:18:55 PM,03/26/2011 03:31:18 PM,03/26/2011 03:35:04 PM,03/26/2011 03:50:50 PM,Code 2 Transport,03/26/2011 04:13:51 PM,24TH ST/CAPP ST,SF,94110,B06,7,5511,2,2,2,false,,1,PRIVATE,2,6,9,Mission,"(37.7523059787388, -122.417357818307)",110850239-KM12 +103620374,T05,10116284,Alarms,12/28/2010,12/28/2010,12/28/2010 11:07:11 PM,12/28/2010 11:08:26 PM,12/28/2010 11:10:36 PM,12/28/2010 11:13:10 PM,12/28/2010 11:16:54 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 11:40:23 PM,0 Block of GOUGH ST,SF,94103,B02,36,3311,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.7720182186828, -122.420755115779)",103620374-T05 +160642050,KM09,16025534,Medical Incident,03/04/2016,03/04/2016,03/04/2016 01:43:31 PM,03/04/2016 01:44:16 PM,03/04/2016 01:45:12 PM,03/04/2016 01:45:46 PM,03/04/2016 01:49:53 PM,03/04/2016 02:17:24 PM,03/04/2016 02:29:41 PM,Code 2 Transport,03/04/2016 03:40:23 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160642050-KM09 +140740108,KM06,14024962,Medical Incident,03/15/2014,03/15/2014,03/15/2014 09:23:29 AM,03/15/2014 09:26:02 AM,03/15/2014 09:27:12 AM,03/15/2014 09:28:16 AM,03/15/2014 09:34:03 AM,03/15/2014 09:48:03 AM,03/15/2014 09:55:07 AM,Code 2 Transport,03/15/2014 10:32:44 AM,4800 Block of CALIFORNIA ST,SAN FRANCISCO,94118,B07,31,7136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.784542004652, -122.469369873836)",140740108-KM06 +133400007,67,13115092,Medical Incident,12/06/2013,12/05/2013,12/06/2013 12:27:05 AM,12/06/2013 12:29:07 AM,12/06/2013 12:30:39 AM,12/06/2013 12:30:48 AM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:36:42 AM,FILLMORE ST/GEARY BL,SF,94115,B04,5,3541,2,2,2,false,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",133400007-67 +140780166,87,14026371,Medical Incident,03/19/2014,03/19/2014,03/19/2014 11:38:40 AM,03/19/2014 11:39:54 AM,03/19/2014 11:40:18 AM,03/19/2014 11:40:25 AM,03/19/2014 11:45:56 AM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Patient Declined Transport,03/19/2014 12:59:02 PM,700 Block of LE CONTE AVE,SAN FRANCISCO,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7168290872241, -122.396710749994)",140780166-87 +113170242,T07,11105379,Medical Incident,11/13/2011,11/13/2011,11/13/2011 03:56:37 PM,11/13/2011 03:58:25 PM,11/13/2011 03:59:32 PM,11/13/2011 04:04:06 PM,11/13/2011 04:10:10 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 04:22:33 PM,1700 Block of 17TH ST,SF,94103,B03,29,2413,2,2,2,false,,1,TRUCK,2,3,10,Mission Bay,"(37.7649231427351, -122.40112140635)",113170242-T07 +160120450,62,16004657,Medical Incident,01/12/2016,01/11/2016,01/12/2016 06:02:29 AM,01/12/2016 06:04:18 AM,01/12/2016 06:04:31 AM,01/12/2016 06:04:53 AM,01/12/2016 06:13:44 AM,01/12/2016 06:33:51 AM,01/12/2016 06:38:32 AM,Code 3 Transport,01/12/2016 07:33:29 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",160120450-62 +110240236,E44,11007905,Medical Incident,01/24/2011,01/24/2011,01/24/2011 01:40:55 PM,01/24/2011 01:42:13 PM,01/24/2011 01:43:07 PM,01/24/2011 01:45:09 PM,01/24/2011 01:48:25 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/24/2011 01:51:37 PM,900 Block of GIRARD ST,SF,94134,B10,44,6277,3,3,3,true,,1,ENGINE,1,10,10,Portola,"(37.7207468266439, -122.401762550619)",110240236-E44 +123180138,E10,12105725,Medical Incident,11/13/2012,11/13/2012,11/13/2012 10:42:46 AM,11/13/2012 10:43:10 AM,11/13/2012 10:43:30 AM,11/13/2012 10:44:13 AM,11/13/2012 10:47:56 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 11:28:36 AM,1600 Block of SCOTT ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7849864733147, -122.438181369407)",123180138-E10 +140080044,T08,14002706,Structure Fire,01/08/2014,01/07/2014,01/08/2014 04:14:57 AM,01/08/2014 04:14:58 AM,01/08/2014 04:16:07 AM,01/08/2014 04:17:01 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/08/2014 04:20:54 AM,8TH ST/BRYANT ST,SF,94103,B03,29,2324,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.772526268193, -122.406968289725)",140080044-T08 +111250325,T03,11041479,Medical Incident,05/05/2011,05/05/2011,05/05/2011 07:18:50 PM,05/05/2011 07:19:27 PM,05/05/2011 07:19:51 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,04/25/2016 02:04:46 PM,400 Block of VAN NESS AVE,SF,94102,B02,36,3237,3,3,3,false,,1,TRUCK,3,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",111250325-T03 +160322911,76,16012698,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:24:20 PM,02/01/2016 06:24:20 PM,02/01/2016 06:39:10 PM,02/01/2016 06:39:15 PM,02/01/2016 06:51:20 PM,02/01/2016 07:05:17 PM,02/01/2016 07:10:33 PM,Code 2 Transport,02/01/2016 07:37:31 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160322911-76 +160813526,KM07,16032347,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:31:48 PM,03/21/2016 08:31:48 PM,03/21/2016 08:32:42 PM,03/21/2016 08:33:13 PM,03/21/2016 08:38:43 PM,03/21/2016 08:46:25 PM,03/21/2016 08:55:36 PM,Code 2 Transport,03/21/2016 09:24:55 PM,1100 Block of MISSION ST,San Francisco,94103,B99,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160813526-KM07 +102490215,T07,10078724,Alarms,09/06/2010,09/06/2010,09/06/2010 03:31:56 PM,09/06/2010 03:33:49 PM,09/06/2010 03:35:04 PM,09/06/2010 03:36:26 PM,09/06/2010 03:38:48 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Other,09/06/2010 03:41:09 PM,3100 Block of KAMILLE CT,SF,94110,B06,7,5533,B,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7489045934703, -122.413186909994)",102490215-T07 +160512013,88,16020513,Medical Incident,02/20/2016,02/20/2016,02/20/2016 03:18:26 PM,02/20/2016 03:19:25 PM,02/20/2016 03:19:37 PM,02/20/2016 03:19:46 PM,02/20/2016 03:23:56 PM,02/20/2016 03:45:16 PM,02/20/2016 03:57:57 PM,Code 2 Transport,02/20/2016 04:20:22 PM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160512013-88 +121110189,81,12036721,Medical Incident,04/20/2012,04/20/2012,04/20/2012 12:18:38 PM,04/20/2012 12:18:58 PM,04/20/2012 12:20:57 PM,04/20/2012 12:21:13 PM,04/20/2012 12:31:44 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Patient Declined Transport,04/20/2012 12:43:04 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",121110189-81 +120590340,KM15,12019560,Medical Incident,02/28/2012,02/28/2012,02/28/2012 09:00:17 PM,02/28/2012 09:00:46 PM,02/28/2012 09:02:47 PM,02/28/2012 09:03:34 PM,02/28/2012 09:19:58 PM,02/28/2012 09:29:15 PM,02/28/2012 09:36:55 PM,Code 2 Transport,02/28/2012 10:09:49 PM,10TH ST/STEVENSON ST,SF,94103,B02,36,2338,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760757745405, -122.416915852561)",120590340-KM15 +160110122,68,16004233,Medical Incident,01/11/2016,01/10/2016,01/11/2016 01:01:08 AM,01/11/2016 01:02:59 AM,01/11/2016 01:03:11 AM,01/11/2016 01:03:19 AM,01/11/2016 01:09:17 AM,01/11/2016 01:28:57 AM,01/11/2016 01:48:02 AM,Code 2 Transport,01/11/2016 02:28:59 AM,HOWARD ST/MAIN ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160110122-68 +160423812,62,16017064,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:16:53 PM,02/11/2016 10:18:28 PM,02/11/2016 10:20:03 PM,02/11/2016 10:20:11 PM,02/11/2016 10:31:00 PM,02/11/2016 10:53:09 PM,02/11/2016 11:09:52 PM,Code 2 Transport,02/11/2016 11:52:17 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",160423812-62 +102240241,E01,10070598,Structure Fire,08/12/2010,08/12/2010,08/12/2010 03:42:19 PM,08/12/2010 03:42:20 PM,08/12/2010 03:42:38 PM,08/12/2010 03:43:17 PM,08/12/2010 03:45:57 PM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,No Merit,08/12/2010 03:46:40 PM,1ST ST/HOWARD ST,SF,94105,B03,35,2141,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7885359297329, -122.396034766801)",102240241-E01 +113600172,B07,11119644,Structure Fire,12/26/2011,12/26/2011,12/26/2011 02:20:18 PM,12/26/2011 02:21:11 PM,12/26/2011 02:21:27 PM,12/26/2011 02:22:51 PM,12/26/2011 02:28:06 PM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 03:05:54 PM,1500 Block of 48TH AVE,SF,94122,B08,23,7717,3,3,3,false,,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7575292588802, -122.507939651503)",113600172-B07 +111830174,E01,11060425,Medical Incident,07/02/2011,07/02/2011,07/02/2011 01:23:33 PM,07/02/2011 01:24:33 PM,07/02/2011 01:25:11 PM,07/02/2011 01:25:44 PM,07/02/2011 01:28:02 PM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,07/02/2011 02:02:16 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",111830174-E01 +112310011,79,11076135,Medical Incident,08/19/2011,08/18/2011,08/19/2011 01:19:39 AM,08/19/2011 01:20:08 AM,08/19/2011 01:20:17 AM,08/19/2011 01:20:25 AM,08/19/2011 01:22:34 AM,08/19/2011 01:38:00 AM,08/19/2011 01:49:14 AM,Code 3 Transport,08/19/2011 02:25:37 AM,0 Block of LEAVENWORTH ST,SF,94102,B02,1,1551,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7804679955627, -122.413513550884)",112310011-79 +121140247,E14,12037895,Medical Incident,04/23/2012,04/23/2012,04/23/2012 04:09:03 PM,04/23/2012 04:09:59 PM,04/23/2012 04:10:17 PM,04/23/2012 04:11:30 PM,04/23/2012 04:13:06 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 04:29:09 PM,200 Block of 21ST AVE,SF,94121,B07,14,7173,3,1,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",121140247-E14 +132430410,77,13082190,Medical Incident,08/31/2013,08/31/2013,08/31/2013 11:55:11 PM,08/31/2013 11:56:41 PM,08/31/2013 11:56:50 PM,08/31/2013 11:58:49 PM,09/01/2013 12:00:51 AM,09/01/2013 12:21:58 AM,09/01/2013 12:30:35 AM,Code 2 Transport,09/01/2013 12:50:34 AM,2300 Block of POLK ST,SF,94109,B04,41,3131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7982845733871, -122.422310712051)",132430410-77 +160432733,KM12,16017392,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:18:24 PM,02/12/2016 05:19:08 PM,02/12/2016 05:19:31 PM,02/12/2016 05:20:22 PM,02/12/2016 05:23:12 PM,02/12/2016 05:41:15 PM,02/12/2016 06:01:51 PM,Code 2 Transport,02/12/2016 06:39:54 PM,CHURCH ST/18TH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",160432733-KM12 +120440298,E01,12014802,Medical Incident,02/13/2012,02/13/2012,02/13/2012 08:50:10 PM,02/13/2012 08:50:41 PM,02/13/2012 08:51:22 PM,02/13/2012 08:53:14 PM,02/13/2012 08:56:13 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 08:59:46 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.780721312022, -122.415737767164)",120440298-E01 +122180382,E34,12072495,Medical Incident,08/05/2012,08/05/2012,08/05/2012 11:15:45 PM,08/05/2012 11:17:08 PM,08/05/2012 11:17:46 PM,08/05/2012 11:19:50 PM,08/05/2012 11:22:29 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 11:35:23 PM,3300 Block of CABRILLO ST,SF,94121,B07,34,7252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7739165095867, -122.494499655142)",122180382-E34 +132460364,T19,13083155,Alarms,09/03/2013,09/03/2013,09/03/2013 09:21:08 PM,09/03/2013 09:22:54 PM,09/03/2013 09:23:00 PM,09/03/2013 09:24:10 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/03/2013 09:34:43 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",132460364-T19 +160591988,88,16023562,Medical Incident,02/28/2016,02/28/2016,02/28/2016 03:08:17 PM,02/28/2016 03:08:59 PM,02/28/2016 03:10:08 PM,02/28/2016 03:10:36 PM,02/28/2016 03:20:50 PM,02/28/2016 03:26:18 PM,02/28/2016 03:36:23 PM,Code 2 Transport,02/28/2016 04:02:08 PM,1800 Block of 25TH AVE,San Francisco,94122,B08,18,7455,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7530220350499, -122.482903541099)",160591988-88 +133170283,E09,13107817,Medical Incident,11/13/2013,11/13/2013,11/13/2013 05:29:12 PM,11/13/2013 05:32:00 PM,11/13/2013 05:33:19 PM,11/13/2013 05:34:58 PM,11/13/2013 05:36:52 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 05:39:16 PM,200 Block of NAPOLEON ST,SF,94124,B10,9,6412,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7469874361298, -122.399147231229)",133170283-E09 +112930074,E40,11097122,Medical Incident,10/20/2011,10/20/2011,10/20/2011 08:33:54 AM,10/20/2011 08:34:28 AM,10/20/2011 08:34:51 AM,10/20/2011 08:35:53 AM,10/20/2011 08:38:52 AM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 09:24:53 AM,2600 Block of 19TH AVE,SF,94116,B08,40,7414,3,3,3,false,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7383937747552, -122.475208337551)",112930074-E40 +121270362,E08,12042436,Medical Incident,05/06/2012,05/06/2012,05/06/2012 11:14:46 PM,05/06/2012 11:16:30 PM,05/06/2012 11:16:43 PM,05/06/2012 11:17:48 PM,05/06/2012 11:19:27 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/06/2012 11:26:29 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121270362-E08 +111200006,E01,11039434,Outside Fire,04/30/2011,04/29/2011,04/30/2011 12:08:04 AM,04/30/2011 12:08:30 AM,04/30/2011 12:08:42 AM,04/30/2011 12:10:03 AM,04/30/2011 12:13:20 AM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Fire,04/30/2011 12:16:40 AM,GEARY ST/POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",111200006-E01 +160703630,AM14,16028033,Medical Incident,03/10/2016,03/10/2016,03/10/2016 10:03:38 PM,03/10/2016 10:06:15 PM,03/10/2016 10:06:28 PM,03/10/2016 10:07:14 PM,03/10/2016 10:11:52 PM,03/10/2016 10:27:55 PM,03/10/2016 10:38:38 PM,Code 2 Transport,03/10/2016 11:01:47 PM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160703630-AM14 +160191581,83,16007622,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:17:46 PM,01/19/2016 12:20:22 PM,01/19/2016 12:21:24 PM,01/19/2016 12:21:35 PM,01/19/2016 12:25:59 PM,01/19/2016 12:31:54 PM,01/19/2016 12:37:38 PM,Code 2 Transport,01/19/2016 01:24:02 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160191581-83 +160493292,70,16019855,Medical Incident,02/18/2016,02/18/2016,02/18/2016 07:18:43 PM,02/18/2016 07:19:54 PM,02/18/2016 07:20:50 PM,02/18/2016 07:21:11 PM,02/18/2016 07:29:32 PM,02/18/2016 07:43:07 PM,02/18/2016 07:48:30 PM,Code 2 Transport,02/18/2016 08:08:21 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160493292-70 +102770236,72,10088118,Medical Incident,10/04/2010,10/04/2010,10/04/2010 05:02:13 PM,10/04/2010 05:03:13 PM,10/04/2010 05:03:33 PM,10/04/2010 05:03:37 PM,10/04/2010 05:04:06 PM,10/04/2010 05:16:25 PM,10/04/2010 05:24:58 PM,Code 2 Transport,10/04/2010 05:54:51 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",102770236-72 +120590148,E31,12019398,Medical Incident,02/28/2012,02/28/2012,02/28/2012 11:31:54 AM,02/28/2012 11:32:32 AM,02/28/2012 11:32:44 AM,02/28/2012 11:33:06 AM,02/28/2012 11:34:46 AM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/28/2012 11:47:46 AM,600 Block of 6TH AVE,SF,94118,B07,31,719,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.776298721061, -122.464012148208)",120590148-E31 +112530097,T10,11083399,Alarms,09/10/2011,09/10/2011,09/10/2011 08:08:32 AM,09/10/2011 08:10:01 AM,09/10/2011 08:10:10 AM,09/10/2011 08:11:43 AM,09/10/2011 08:14:17 AM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Other,09/10/2011 08:31:02 AM,3800 Block of CALIFORNIA ST,SF,94118,B07,10,7114,3,3,3,false,,1,TRUCK,1,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",112530097-T10 +111460147,E02,11048451,Medical Incident,05/26/2011,05/26/2011,05/26/2011 12:25:34 PM,05/26/2011 12:27:07 PM,05/26/2011 12:27:30 PM,05/26/2011 12:28:47 PM,05/26/2011 12:30:17 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,05/26/2011 12:40:26 PM,1500 Block of BROADWAY,SF,94109,B04,41,3152,3,3,3,true,,1,ENGINE,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",111460147-E02 +160650365,55,16025793,Medical Incident,03/05/2016,03/04/2016,03/05/2016 02:46:08 AM,03/05/2016 02:49:55 AM,03/05/2016 02:50:22 AM,03/05/2016 02:50:47 AM,03/05/2016 03:01:15 AM,03/05/2016 03:13:45 AM,03/05/2016 03:22:23 AM,Code 2 Transport,03/05/2016 03:58:28 AM,700 Block of KEARNY ST,San Francisco,94111,B01,13,1245,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",160650365-55 +120810150,E13,12026854,Medical Incident,03/21/2012,03/21/2012,03/21/2012 10:40:25 AM,03/21/2012 10:42:49 AM,03/21/2012 10:43:16 AM,03/21/2012 10:44:09 AM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 10:48:14 AM,2ND ST/MARKET ST,SF,94105,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",120810150-E13 +160401078,75,16015952,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:51:28 AM,02/09/2016 09:52:20 AM,02/09/2016 09:53:08 AM,02/09/2016 09:54:26 AM,02/09/2016 10:03:16 AM,02/09/2016 10:15:15 AM,02/09/2016 10:33:18 AM,Code 2 Transport,02/09/2016 11:09:18 AM,100 Block of SANTA MARINA ST,San Francisco,94110,B06,32,5652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7395201844996, -122.420491573507)",160401078-75 +110990074,E40,11032785,Transfer,04/09/2011,04/08/2011,04/09/2011 07:44:33 AM,04/09/2011 07:45:00 AM,04/09/2011 07:45:16 AM,04/09/2011 07:46:35 AM,04/09/2011 07:49:51 AM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/09/2011 08:02:41 AM,2000 Block of 19TH AVE,SF,94116,B08,40,7417,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",110990074-E40 +132560364,E12,13086705,Medical Incident,09/13/2013,09/13/2013,09/13/2013 08:41:28 PM,09/13/2013 08:42:21 PM,09/13/2013 08:42:29 PM,09/13/2013 08:43:56 PM,09/13/2013 08:45:39 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 09:01:32 PM,100 Block of EDGEWOOD AVE,SF,94117,B05,12,5154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Inner Sunset,"(37.7634208296019, -122.454876622631)",132560364-E12 +130350352,E05,13012125,Medical Incident,02/04/2013,02/04/2013,02/04/2013 06:27:43 PM,02/04/2013 06:28:50 PM,02/04/2013 06:30:31 PM,02/04/2013 06:30:49 PM,02/04/2013 06:34:37 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/04/2013 06:46:06 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",130350352-E05 +120580072,E41,12019022,Traffic Collision,02/27/2012,02/27/2012,02/27/2012 08:06:18 AM,02/27/2012 08:07:09 AM,02/27/2012 08:07:22 AM,02/27/2012 08:08:46 AM,02/27/2012 08:10:35 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/27/2012 08:14:38 AM,WASHINGTON ST/POLK ST,SF,94109,B04,41,3124,3,2,2,false,Non Life-threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7932578660017, -122.421229982115)",120580072-E41 +113280074,88,11108790,Medical Incident,11/24/2011,11/24/2011,11/24/2011 08:56:41 AM,11/24/2011 08:58:05 AM,11/24/2011 08:58:20 AM,11/24/2011 08:58:31 AM,11/24/2011 09:04:12 AM,11/24/2011 09:21:47 AM,11/24/2011 09:30:46 AM,Code 2 Transport,11/24/2011 09:39:42 AM,500 Block of CHESTNUT ST,SF,94133,B01,28,1424,3,3,3,true,,1,MEDIC,3,1,3,North Beach,"(37.8038310510819, -122.412205193918)",113280074-88 +160323024,AM14,16012714,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:53:55 PM,02/01/2016 06:54:35 PM,02/01/2016 06:55:10 PM,02/01/2016 06:55:49 PM,02/01/2016 07:01:26 PM,02/01/2016 07:32:30 PM,02/01/2016 08:09:14 PM,Code 2 Transport,02/01/2016 08:32:26 PM,1200 Block of SILVER AVE,San Francisco,94134,B10,42,6356,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7308246140879, -122.410982908601)",160323024-AM14 +103460234,E18,10110993,Medical Incident,12/12/2010,12/12/2010,12/12/2010 02:34:04 PM,12/12/2010 02:35:40 PM,12/12/2010 02:35:55 PM,12/12/2010 02:36:33 PM,12/12/2010 02:38:50 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 03:01:13 PM,2800 Block of NORIEGA ST,SF,94122,B08,18,7573,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.753515955384, -122.494158682075)",103460234-E18 +111210386,E19,11040120,Structure Fire,05/01/2011,05/01/2011,05/01/2011 08:43:31 PM,05/01/2011 08:44:15 PM,05/01/2011 08:44:31 PM,05/01/2011 08:45:39 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 08:49:43 PM,200 Block of HOLLOWAY AVE,SF,94112,B09,15,8473,3,3,3,true,,1,ENGINE,7,9,7,Oceanview/Merced/Ingleside,"(37.7219021621891, -122.455634489655)",111210386-E19 +120430079,88,12014312,Medical Incident,02/12/2012,02/11/2012,02/12/2012 04:56:23 AM,02/12/2012 04:57:27 AM,02/12/2012 04:58:09 AM,02/12/2012 05:01:51 AM,02/12/2012 05:10:05 AM,02/12/2012 05:26:06 AM,02/12/2012 05:58:02 AM,Code 2 Transport,02/12/2012 05:59:34 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",120430079-88 +130920024,RC3,13030675,Medical Incident,04/02/2013,04/01/2013,04/02/2013 02:36:15 AM,04/02/2013 02:38:45 AM,04/02/2013 02:39:07 AM,04/02/2013 02:41:14 AM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,Other,04/02/2013 02:46:28 AM,1800 Block of 25TH ST,SF,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Potrero Hill,"(37.7523071859772, -122.397488168993)",130920024-RC3 +102780203,63,10088390,Medical Incident,10/05/2010,10/05/2010,10/05/2010 12:54:18 PM,10/05/2010 12:54:18 PM,10/05/2010 12:54:18 PM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,10/05/2010 01:11:01 PM,10/05/2010 01:38:41 PM,Fire,10/05/2010 02:02:39 PM,OCEAN AV/PLYMOUTH AV,SF,94112,B09,15,8472,2,2,2,true,,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",102780203-63 +132450151,E13,13082644,Alarms,09/02/2013,09/02/2013,09/02/2013 10:49:55 AM,09/02/2013 10:51:22 AM,09/02/2013 10:51:45 AM,09/02/2013 10:52:27 AM,09/02/2013 10:57:19 AM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/02/2013 11:19:56 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",132450151-E13 +103570014,KM15,10114427,Medical Incident,12/23/2010,12/22/2010,12/23/2010 01:01:56 AM,12/23/2010 01:02:03 AM,12/23/2010 01:02:59 AM,12/23/2010 01:03:55 AM,12/23/2010 01:06:29 AM,12/23/2010 01:20:15 AM,12/23/2010 01:26:38 AM,Code 3 Transport,12/23/2010 02:00:31 AM,200 Block of 9TH AVE,SF,94118,B07,31,7136,3,3,3,false,,1,PRIVATE,2,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",103570014-KM15 +121210056,KM15,12040079,Medical Incident,04/30/2012,04/29/2012,04/30/2012 05:30:29 AM,04/30/2012 05:32:37 AM,04/30/2012 05:33:03 AM,04/30/2012 05:33:38 AM,04/30/2012 05:41:50 AM,04/30/2012 05:55:46 AM,04/30/2012 06:11:23 AM,Code 2 Transport,04/30/2012 06:33:19 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121210056-KM15 +160621518,KM04,16024670,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:31:51 AM,03/02/2016 11:33:42 AM,03/02/2016 11:34:17 AM,03/02/2016 11:36:50 AM,03/02/2016 11:39:14 AM,03/02/2016 11:51:22 AM,03/02/2016 11:59:53 AM,Code 2 Transport,03/02/2016 12:18:32 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",160621518-KM04 +121560122,89,12051591,Medical Incident,06/04/2012,06/04/2012,06/04/2012 10:02:28 AM,06/04/2012 10:05:05 AM,06/04/2012 10:08:43 AM,06/04/2012 10:08:57 AM,06/04/2012 10:13:24 AM,04/25/2016 01:58:22 PM,04/25/2016 01:58:22 PM,Patient Declined Transport,06/04/2012 10:32:50 AM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7362394819721, -122.393112998589)",121560122-89 +121800355,E15,12060078,Medical Incident,06/28/2012,06/28/2012,06/28/2012 09:18:48 PM,06/28/2012 09:23:52 PM,06/28/2012 09:25:10 PM,06/28/2012 09:25:53 PM,06/28/2012 09:27:15 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/28/2012 09:45:37 PM,200 Block of BRIGHTON AVE,SF,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7227602820685, -122.455200493072)",121800355-E15 +160360183,68,16014072,Medical Incident,02/05/2016,02/04/2016,02/05/2016 01:15:01 AM,02/05/2016 01:15:44 AM,02/05/2016 01:16:45 AM,02/05/2016 01:16:45 AM,02/05/2016 01:19:37 AM,02/05/2016 01:28:58 AM,02/05/2016 01:56:48 AM,Code 2 Transport,02/05/2016 02:28:16 AM,100 Block of FELL ST,San Francisco,94102,B02,36,3213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7762095925877, -122.420316347942)",160360183-68 +160472637,AM16,16019012,Medical Incident,02/16/2016,02/16/2016,02/16/2016 04:39:08 PM,02/16/2016 04:39:24 PM,02/16/2016 04:39:48 PM,02/16/2016 04:41:10 PM,02/16/2016 04:47:42 PM,02/16/2016 05:00:10 PM,02/16/2016 05:06:15 PM,Code 3 Transport,02/16/2016 05:43:17 PM,100 Block of MARVIEW WAY,San Francisco,94131,B08,20,5362,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7549312025223, -122.448638523474)",160472637-AM16 +102600194,64,10082179,Medical Incident,09/17/2010,09/17/2010,09/17/2010 01:36:38 PM,09/17/2010 01:36:57 PM,09/17/2010 01:37:16 PM,09/17/2010 01:37:31 PM,09/17/2010 02:04:13 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,No Merit,09/17/2010 02:13:07 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,2,2,2,true,,1,MEDIC,1,1,3,North Beach,"(37.8083718015584, -122.414994322457)",102600194-64 +113300010,B02,11109292,Alarms,11/26/2011,11/25/2011,11/26/2011 01:21:38 AM,11/26/2011 01:23:24 AM,11/26/2011 01:23:31 AM,11/26/2011 01:25:15 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/26/2011 01:33:38 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,,1,CHIEF,3,2,6,South of Market,"(37.7764944808779, -122.411359138357)",113300010-B02 +103070560,68,10098534,Medical Incident,11/03/2010,11/03/2010,11/03/2010 11:25:14 PM,11/03/2010 11:25:14 PM,11/03/2010 11:26:06 PM,11/03/2010 11:26:39 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Other,11/03/2010 11:30:31 PM,HAIGHT ST/CLAYTON ST,SF,94117,B05,12,4525,E,E,3,true,,1,MEDIC,4,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",103070560-68 +131230028,84,13041295,Medical Incident,05/03/2013,05/02/2013,05/03/2013 02:17:52 AM,05/03/2013 02:17:52 AM,05/03/2013 02:17:52 AM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,No Merit,05/03/2013 02:24:04 AM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",131230028-84 +140520233,RS2,14017658,Structure Fire,02/21/2014,02/21/2014,02/21/2014 03:56:20 PM,02/21/2014 03:57:27 PM,02/21/2014 03:57:42 PM,02/21/2014 03:59:04 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Fire,02/21/2014 04:03:13 PM,2400 Block of 35TH AVE,SF,94116,B08,18,7554,3,3,3,false,Alarm,1,RESCUE SQUAD,10,8,4,Sunset/Parkside,"(37.7413584667856, -122.49284056995)",140520233-RS2 +160380972,91,16015124,Medical Incident,02/07/2016,02/07/2016,02/07/2016 08:08:42 AM,02/07/2016 08:10:09 AM,02/07/2016 08:10:25 AM,02/07/2016 08:11:28 AM,02/07/2016 08:18:15 AM,02/07/2016 08:37:31 AM,02/07/2016 08:46:38 AM,Code 3 Transport,02/07/2016 09:51:42 AM,2500 Block of ALEMANY BL,San Francisco,94112,B09,33,8345,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7150697980765, -122.446625468753)",160380972-91 +140120207,B02,14004175,Medical Incident,01/12/2014,01/12/2014,01/12/2014 03:58:39 PM,01/12/2014 03:59:38 PM,01/12/2014 04:00:12 PM,01/12/2014 04:01:27 PM,01/12/2014 04:05:19 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 04:17:29 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,E,E,3,false,Potentially Life-Threatening,1,CHIEF,3,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140120207-B02 +120890039,E07,12029353,Medical Incident,03/29/2012,03/28/2012,03/29/2012 05:36:39 AM,03/29/2012 05:38:14 AM,03/29/2012 05:38:54 AM,03/29/2012 05:40:23 AM,03/29/2012 05:42:43 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/29/2012 05:42:51 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7643815293641, -122.417340510338)",120890039-E07 +132640114,67,13089454,Medical Incident,09/21/2013,09/21/2013,09/21/2013 08:22:10 AM,09/21/2013 08:24:14 AM,09/21/2013 09:07:13 AM,09/21/2013 09:08:16 AM,09/21/2013 09:12:50 AM,09/21/2013 09:23:28 AM,09/21/2013 09:32:56 AM,Code 2 Transport,09/21/2013 10:02:15 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",132640114-67 +122400346,54,12079576,Medical Incident,08/27/2012,08/27/2012,08/27/2012 08:12:25 PM,08/27/2012 08:13:15 PM,08/27/2012 08:13:46 PM,08/27/2012 08:15:59 PM,08/27/2012 08:20:05 PM,08/27/2012 08:33:57 PM,08/27/2012 08:51:24 PM,Code 2 Transport,08/27/2012 09:29:01 PM,RHODE ISLAND ST/24TH ST,SF,94107,B10,37,2556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7532936004477, -122.401467891812)",122400346-54 +160493361,76,16019862,Medical Incident,02/18/2016,02/18/2016,02/18/2016 07:37:23 PM,02/18/2016 07:38:13 PM,02/18/2016 07:38:19 PM,02/18/2016 07:38:26 PM,02/18/2016 07:45:00 PM,02/18/2016 08:04:15 PM,02/18/2016 08:10:51 PM,Code 2 Transport,02/18/2016 08:44:46 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160493361-76 +131210346,93,13040792,Medical Incident,05/01/2013,05/01/2013,05/01/2013 07:34:35 PM,05/01/2013 07:36:07 PM,05/01/2013 07:36:28 PM,05/01/2013 07:36:44 PM,05/01/2013 07:48:01 PM,05/01/2013 07:58:21 PM,05/01/2013 08:18:32 PM,Code 2 Transport,05/01/2013 08:32:04 PM,2100 Block of GREENWICH ST,SF,94123,B04,16,3553,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7991105071928, -122.435056310717)",131210346-93 +131300147,KM09,13043880,Medical Incident,05/10/2013,05/10/2013,05/10/2013 12:15:13 PM,05/10/2013 12:16:03 PM,05/10/2013 12:16:28 PM,05/10/2013 12:17:18 PM,05/10/2013 12:21:20 PM,05/10/2013 12:30:31 PM,05/10/2013 12:56:51 PM,Code 2 Transport,05/10/2013 01:27:30 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",131300147-KM09 +120950331,E02,12031607,Medical Incident,04/04/2012,04/04/2012,04/04/2012 10:07:16 PM,04/04/2012 10:10:18 PM,04/04/2012 10:10:29 PM,04/04/2012 10:10:57 PM,04/04/2012 10:13:40 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 10:23:52 PM,2700 Block of TAYLOR ST,SF,94133,B01,28,1433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8077534960371, -122.415641041957)",120950331-E02 +132210009,E14,13074490,Structure Fire,08/09/2013,08/08/2013,08/09/2013 12:54:42 AM,08/09/2013 12:55:18 AM,08/09/2013 12:55:46 AM,08/09/2013 12:57:21 AM,08/09/2013 12:59:01 AM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/09/2013 02:53:51 AM,6100 Block of CALIFORNIA ST,SF,94121,B07,14,7214,3,3,3,true,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7840099058265, -122.483407053463)",132210009-E14 +160910136,82,16035930,Medical Incident,03/31/2016,03/30/2016,03/31/2016 01:09:09 AM,03/31/2016 01:10:06 AM,03/31/2016 01:12:43 AM,03/31/2016 01:12:56 AM,03/31/2016 01:19:06 AM,03/31/2016 01:44:07 AM,03/31/2016 02:08:01 AM,Code 2 Transport,03/31/2016 02:51:16 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160910136-82 +122190362,E16,12072808,Medical Incident,08/06/2012,08/06/2012,08/06/2012 10:20:36 PM,08/06/2012 10:21:20 PM,08/06/2012 10:21:32 PM,08/06/2012 10:23:07 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 10:28:28 PM,900 Block of BEACH ST,SF,94109,B01,28,3135,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,2,Russian Hill,"(37.806210458565, -122.424360355387)",122190362-E16 +110890400,65,11029586,Medical Incident,03/30/2011,03/30/2011,03/30/2011 10:40:15 PM,03/30/2011 10:43:20 PM,03/30/2011 10:43:49 PM,04/25/2016 02:05:22 PM,03/30/2011 10:45:43 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,No Merit,03/30/2011 10:53:45 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,A,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",110890400-65 +160823994,68,16032768,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:39:18 PM,03/22/2016 10:40:24 PM,03/22/2016 10:40:45 PM,03/22/2016 10:40:55 PM,03/22/2016 10:43:56 PM,03/22/2016 10:57:59 PM,03/22/2016 11:17:27 PM,Code 2 Transport,03/22/2016 11:45:00 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160823994-68 +160202613,68,16008080,Medical Incident,01/20/2016,01/20/2016,01/20/2016 04:20:32 PM,01/20/2016 04:22:05 PM,01/20/2016 04:22:37 PM,01/20/2016 04:22:45 PM,01/20/2016 04:27:42 PM,01/20/2016 04:34:57 PM,01/20/2016 04:58:13 PM,Code 2 Transport,01/20/2016 05:29:46 PM,SUTTER ST/MARKET ST,San Francisco,94104,B01,13,1164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7902901603061, -122.400152471245)",160202613-68 +140060160,E05,14002102,Medical Incident,01/06/2014,01/06/2014,01/06/2014 10:40:12 AM,01/06/2014 10:41:31 AM,01/06/2014 10:45:22 AM,01/06/2014 10:45:30 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 10:48:21 AM,1400 Block of PINE ST,SF,94109,B04,3,3122,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",140060160-E05 +123180232,E28,12105800,Administrative,11/13/2012,11/13/2012,11/13/2012 03:14:26 PM,11/13/2012 03:14:29 PM,11/13/2012 03:14:45 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 03:15:09 PM,1800 Block of STOCKTON ST,SF,94133,B01,28,1335,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8027782547729, -122.409586942281)",123180232-E28 +160521592,84,16020809,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:37:35 PM,02/21/2016 12:41:20 PM,02/21/2016 12:41:39 PM,02/21/2016 12:42:25 PM,02/21/2016 01:02:10 PM,02/21/2016 01:10:49 PM,02/21/2016 01:48:33 PM,Code 2 Transport,02/21/2016 02:23:08 PM,20TH ST/VALENCIA ST,San Francisco,94110,B06,7,5446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.758498510544, -122.421271730144)",160521592-84 +112850047,T02,11094272,Alarms,10/12/2011,10/11/2011,10/12/2011 05:14:01 AM,10/12/2011 05:15:15 AM,10/12/2011 05:16:09 AM,10/12/2011 05:18:52 AM,10/12/2011 05:22:19 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 05:24:10 AM,1100 Block of CLAY ST,SF,94108,B01,41,1444,3,3,3,false,,1,TRUCK,3,1,3,Nob Hill,"(37.7935326875045, -122.412480168701)",112850047-T02 +160801836,KM13,16031815,Medical Incident,03/20/2016,03/20/2016,03/20/2016 01:42:10 PM,03/20/2016 01:42:48 PM,03/20/2016 01:43:22 PM,03/20/2016 01:44:06 PM,03/20/2016 01:50:31 PM,03/20/2016 02:21:43 PM,03/20/2016 02:34:47 PM,Code 2 Transport,03/20/2016 03:09:45 PM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",160801836-KM13 +140320321,86,14010964,Other,02/01/2014,02/01/2014,02/01/2014 07:06:06 PM,02/01/2014 07:06:18 PM,02/01/2014 07:12:22 PM,02/01/2014 07:12:22 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/01/2014 07:53:19 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,,3,3,true,Alarm,1,MEDIC,3,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",140320321-86 +160212245,74,16008433,Medical Incident,01/21/2016,01/21/2016,01/21/2016 02:48:43 PM,01/21/2016 02:50:34 PM,01/21/2016 02:54:05 PM,01/21/2016 02:54:20 PM,01/21/2016 03:04:44 PM,01/21/2016 03:27:20 PM,01/21/2016 03:43:22 PM,Code 2 Transport,01/21/2016 04:30:21 PM,2400 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3616,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7887473804417, -122.434651659294)",160212245-74 +111880268,E37,11062230,Water Rescue,07/07/2011,07/07/2011,07/07/2011 05:33:11 PM,07/07/2011 05:36:45 PM,07/07/2011 05:38:33 PM,07/07/2011 05:39:36 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/07/2011 05:39:42 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,,1,ENGINE,15,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",111880268-E37 +110080240,79,11002725,Medical Incident,01/08/2011,01/08/2011,01/08/2011 03:53:19 PM,01/08/2011 03:54:19 PM,01/08/2011 03:56:14 PM,01/08/2011 03:56:29 PM,01/08/2011 04:02:22 PM,01/08/2011 04:18:12 PM,01/08/2011 04:24:51 PM,Code 2 Transport,01/08/2011 04:47:23 PM,1800 Block of BUSH ST,SF,94109,B04,38,3363,2,2,2,true,,1,MEDIC,1,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",110080240-79 +123030334,E33,12100627,Medical Incident,10/29/2012,10/29/2012,10/29/2012 04:03:12 PM,10/29/2012 04:04:00 PM,10/29/2012 04:04:14 PM,10/29/2012 04:05:29 PM,10/29/2012 04:08:28 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 04:13:41 PM,600 Block of BRUNSWICK ST,SF,94112,B09,33,6214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7092872123477, -122.447216818163)",123030334-E33 +132730333,RS2,13092893,Medical Incident,09/30/2013,09/30/2013,09/30/2013 07:21:44 PM,09/30/2013 07:21:59 PM,09/30/2013 07:24:59 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 07:30:16 PM,JONES ST/GOLDEN GATE AV,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",132730333-RS2 +160060616,89,16002293,Medical Incident,01/06/2016,01/05/2016,01/06/2016 07:43:07 AM,01/06/2016 07:44:17 AM,01/06/2016 07:45:03 AM,01/06/2016 07:45:25 AM,01/06/2016 08:00:37 AM,01/06/2016 08:21:55 AM,01/06/2016 08:43:47 AM,Code 2 Transport,01/06/2016 09:36:25 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160060616-89 +160251170,57,16009872,Medical Incident,01/25/2016,01/25/2016,01/25/2016 10:08:13 AM,01/25/2016 10:08:36 AM,01/25/2016 10:13:50 AM,01/25/2016 10:13:50 AM,01/25/2016 10:28:57 AM,01/25/2016 10:28:59 AM,01/25/2016 10:53:03 AM,Code 2 Transport,01/25/2016 11:27:42 AM,POWELL ST/BROADWAY,San Francisco,94133,B01,2,1353,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7974201856554, -122.410263526117)",160251170-57 +112080176,E40,11068684,Medical Incident,07/27/2011,07/27/2011,07/27/2011 01:00:29 PM,07/27/2011 01:02:51 PM,07/27/2011 01:03:47 PM,07/27/2011 01:05:02 PM,07/27/2011 01:09:28 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 01:26:02 PM,2500 Block of 25TH AVE,SF,94116,B08,40,7462,2,2,2,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7399677614762, -122.481993144476)",112080176-E40 +102700004,83,10085509,Medical Incident,09/27/2010,09/26/2010,09/27/2010 12:16:01 AM,09/27/2010 12:16:25 AM,09/27/2010 12:16:39 AM,09/27/2010 12:17:06 AM,09/27/2010 12:26:29 AM,09/27/2010 12:50:20 AM,09/27/2010 01:08:36 AM,Code 2 Transport,09/27/2010 01:22:01 AM,0 Block of GOETTINGEN ST,SF,94134,B10,42,6356,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7310232063749, -122.408217325833)",102700004-83 +131140253,RS2,13038489,Medical Incident,04/24/2013,04/24/2013,04/24/2013 03:30:41 PM,04/24/2013 03:31:29 PM,04/24/2013 03:32:22 PM,04/24/2013 03:33:44 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 03:36:34 PM,2500 Block of BRYANT ST,SF,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,6,9,Mission,"(37.7536039830321, -122.409137616637)",131140253-RS2 +121080245,59,12035809,Medical Incident,04/17/2012,04/17/2012,04/17/2012 04:35:09 PM,04/17/2012 04:35:28 PM,04/17/2012 04:35:39 PM,04/17/2012 04:36:16 PM,04/17/2012 04:42:25 PM,04/17/2012 05:08:16 PM,04/17/2012 05:12:01 PM,Code 2 Transport,04/17/2012 05:53:21 PM,2100 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.783357968274, -122.438601387081)",121080245-59 +160601122,AM02,16023840,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:14:16 AM,02/29/2016 10:14:16 AM,02/29/2016 10:14:36 AM,02/29/2016 10:15:22 AM,02/29/2016 10:18:34 AM,02/29/2016 10:37:41 AM,02/29/2016 10:50:11 AM,Code 2 Transport,02/29/2016 11:24:41 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160601122-AM02 +122140201,E36,12071030,Alarms,08/01/2012,08/01/2012,08/01/2012 02:16:21 PM,08/01/2012 02:17:36 PM,08/01/2012 02:18:04 PM,08/01/2012 02:19:29 PM,08/01/2012 02:21:23 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/01/2012 02:40:21 PM,1900 Block of MISSION ST,SF,94103,B02,36,5279,3,3,3,false,Alarm,1,ENGINE,2,2,9,Mission,"(37.7658582826035, -122.419816092644)",122140201-E36 +122770265,KM12,12091587,Medical Incident,10/03/2012,10/03/2012,10/03/2012 02:26:59 PM,10/03/2012 02:27:14 PM,10/03/2012 02:30:43 PM,10/03/2012 02:31:22 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,Other,10/03/2012 02:41:02 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",122770265-KM12 +103600086,T02,10115459,Structure Fire,12/26/2010,12/26/2010,12/26/2010 10:53:16 AM,12/26/2010 10:53:17 AM,12/26/2010 10:53:27 AM,12/26/2010 10:54:14 AM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 10:56:04 AM,GRANT AV/BROADWAY,SF,94133,B01,2,1311,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",103600086-T02 +133460246,KM06,13117440,Medical Incident,12/12/2013,12/12/2013,12/12/2013 03:08:33 PM,12/12/2013 03:10:33 PM,12/12/2013 03:14:35 PM,12/12/2013 03:15:24 PM,12/12/2013 03:19:04 PM,12/12/2013 03:48:15 PM,12/12/2013 04:01:44 PM,Code 2 Transport,12/12/2013 04:25:32 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",133460246-KM06 +140580118,E03,14019512,Medical Incident,02/27/2014,02/27/2014,02/27/2014 10:17:18 AM,02/27/2014 10:18:08 AM,02/27/2014 10:19:39 AM,02/27/2014 10:20:19 AM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Code 2 Transport,02/27/2014 10:24:04 AM,2000 Block of GOUGH ST,SF,94109,B04,38,3253,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,4,2,Pacific Heights,"(37.7922040282598, -122.426000258192)",140580118-E03 +120390037,86,12012880,Medical Incident,02/08/2012,02/07/2012,02/08/2012 05:43:42 AM,02/08/2012 05:44:36 AM,02/08/2012 05:44:45 AM,02/08/2012 05:45:12 AM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Other,02/08/2012 05:53:45 AM,1200 Block of GOUGH ST,SF,94109,B04,3,3261,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7843759652994, -122.42442259558)",120390037-86 +121540217,RS1,12051010,Structure Fire,06/02/2012,06/02/2012,06/02/2012 02:53:14 PM,06/02/2012 02:54:38 PM,06/02/2012 02:54:56 PM,06/02/2012 02:56:13 PM,06/02/2012 03:00:31 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 03:00:45 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Fire,1,RESCUE SQUAD,7,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121540217-RS1 +160913470,85,16036237,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:57:54 PM,03/31/2016 08:59:06 PM,03/31/2016 08:59:16 PM,03/31/2016 08:59:32 PM,03/31/2016 09:04:23 PM,03/31/2016 09:20:09 PM,03/31/2016 09:28:21 PM,Code 2 Transport,03/31/2016 09:57:29 PM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6121,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7234913181355, -122.435621772842)",160913470-85 +122700232,88,12089166,Medical Incident,09/26/2012,09/26/2012,09/26/2012 04:26:49 PM,09/26/2012 04:29:13 PM,09/26/2012 04:29:23 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,04/25/2016 01:56:35 PM,1400 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7287791192352, -122.388524913867)",122700232-88 +131800090,T11,13061128,Alarms,06/29/2013,06/29/2013,06/29/2013 08:52:59 AM,06/29/2013 08:54:38 AM,06/29/2013 08:54:46 AM,06/29/2013 08:55:41 AM,06/29/2013 08:57:21 AM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/29/2013 08:59:41 AM,500 Block of ELIZABETH ST,SF,94114,B06,11,5522,3,3,3,false,Alarm,1,TRUCK,1,6,8,Noe Valley,"(37.7521041525291, -122.433049553474)",131800090-T11 +132650196,T19,13089905,Water Rescue,09/22/2013,09/22/2013,09/22/2013 12:48:42 PM,09/22/2013 12:52:06 PM,09/22/2013 12:58:29 PM,09/22/2013 01:00:26 PM,09/22/2013 01:05:52 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/22/2013 01:11:15 PM,JOHN MUIR DR/SKYLINE BL,SF,94132,B08,19,8714,3,3,3,false,Fire,1,TRUCK,1,8,7,Lakeshore,"(37.7189555597044, -122.500220952945)",132650196-T19 +122120159,AM16,12070348,Medical Incident,07/30/2012,07/30/2012,07/30/2012 11:39:39 AM,07/30/2012 11:41:22 AM,07/30/2012 11:41:45 AM,07/30/2012 11:43:32 AM,07/30/2012 12:01:37 PM,07/30/2012 12:12:59 PM,07/30/2012 12:44:59 PM,Code 2 Transport,07/30/2012 01:07:12 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,1,1,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",122120159-AM16 +160640434,63,16025362,Medical Incident,03/04/2016,03/03/2016,03/04/2016 05:16:04 AM,03/04/2016 05:18:05 AM,03/04/2016 05:18:25 AM,03/04/2016 05:18:33 AM,03/04/2016 05:24:33 AM,03/04/2016 05:35:27 AM,03/04/2016 05:40:53 AM,Code 2 Transport,03/04/2016 06:09:04 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160640434-63 +102820235,63,10089722,Medical Incident,10/09/2010,10/09/2010,10/09/2010 02:07:08 PM,10/09/2010 02:07:50 PM,10/09/2010 02:08:17 PM,10/09/2010 02:09:11 PM,10/09/2010 02:16:00 PM,10/09/2010 02:19:13 PM,10/09/2010 02:38:51 PM,Code 2 Transport,10/09/2010 02:39:03 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",102820235-63 +160202341,64,16008058,Medical Incident,01/20/2016,01/20/2016,01/20/2016 03:16:19 PM,01/20/2016 03:17:19 PM,01/20/2016 03:17:40 PM,01/20/2016 03:17:51 PM,01/20/2016 03:33:44 PM,01/20/2016 03:55:40 PM,01/20/2016 04:07:12 PM,Code 2 Transport,01/20/2016 04:49:29 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160202341-64 +120050299,E05,12001838,Structure Fire,01/05/2012,01/05/2012,01/05/2012 06:30:34 PM,01/05/2012 06:30:34 PM,01/05/2012 06:30:41 PM,01/05/2012 06:31:31 PM,01/05/2012 06:32:56 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Fire,01/05/2012 06:33:46 PM,FILLMORE ST/FELL ST,SF,94117,B05,5,3532,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.774902830471, -122.431011539466)",120050299-E05 +160383815,71,16015431,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:46:58 PM,02/07/2016 11:48:10 PM,02/07/2016 11:48:36 PM,02/07/2016 11:48:45 PM,02/07/2016 11:53:09 PM,02/08/2016 12:05:46 AM,02/08/2016 12:16:27 AM,Code 2 Transport,02/08/2016 12:50:59 AM,100 Block of 3RD ST,San Francisco,94103,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",160383815-71 +160553286,75,16022116,Medical Incident,02/24/2016,02/24/2016,02/24/2016 06:36:52 PM,02/24/2016 06:36:52 PM,02/24/2016 06:37:04 PM,02/24/2016 06:37:08 PM,02/24/2016 06:41:14 PM,02/24/2016 07:01:22 PM,02/24/2016 07:16:22 PM,Code 2 Transport,02/24/2016 07:50:48 PM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160553286-75 +140380205,KM04,14012839,Medical Incident,02/07/2014,02/07/2014,02/07/2014 01:26:32 PM,02/07/2014 01:27:07 PM,02/07/2014 01:28:12 PM,02/07/2014 01:29:55 PM,02/07/2014 01:47:41 PM,02/07/2014 01:55:59 PM,02/07/2014 02:21:16 PM,Code 2 Transport,02/07/2014 03:05:42 PM,200 Block of MONTGOMERY ST,SF,94104,B01,13,1235,3,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7914426036611, -122.40240755277)",140380205-KM04 +140860337,82,14029087,Medical Incident,03/27/2014,03/27/2014,03/27/2014 09:40:29 PM,03/27/2014 09:41:26 PM,03/27/2014 09:42:03 PM,03/27/2014 09:42:14 PM,03/27/2014 09:53:48 PM,03/27/2014 10:06:51 PM,03/27/2014 10:20:04 PM,Code 2 Transport,03/27/2014 10:56:41 PM,100 Block of 27TH ST,SAN FRANCISCO,94110,B06,11,5556,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7471574360743, -122.423541884062)",140860337-82 +132310301,65,13078098,Medical Incident,08/19/2013,08/19/2013,08/19/2013 04:58:42 PM,08/19/2013 04:59:01 PM,08/19/2013 04:59:12 PM,08/19/2013 04:59:26 PM,08/19/2013 05:09:04 PM,08/19/2013 05:16:58 PM,04/25/2016 01:51:13 PM,Code 3 Transport,08/19/2013 05:42:39 PM,SUNNYDALE AV/BAYSHORE BL,SF,94134,B10,44,6254,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,9,10,Bayview Hunters Point,"(37.7088536077159, -122.405109455132)",132310301-65 +120210121,E19,12007061,Alarms,01/21/2012,01/20/2012,01/21/2012 07:38:59 AM,01/21/2012 07:39:33 AM,01/21/2012 07:39:52 AM,01/21/2012 07:41:27 AM,01/21/2012 07:45:20 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 08:04:20 AM,900 Block of BROTHERHOOD WAY,SF,94132,B08,19,8774,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7144993922405, -122.482766475657)",120210121-E19 +120490328,B08,12016348,Alarms,02/18/2012,02/18/2012,02/18/2012 10:29:51 PM,02/18/2012 10:32:59 PM,02/18/2012 10:33:12 PM,02/18/2012 10:35:19 PM,02/18/2012 10:38:50 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Other,02/18/2012 10:53:01 PM,1400 Block of 10TH AVE,SF,94122,B08,22,7334,3,3,3,false,Alarm,1,CHIEF,2,8,7,Inner Sunset,"(37.7611931997962, -122.467256491478)",120490328-B08 +140370041,87,14012389,Medical Incident,02/06/2014,02/05/2014,02/06/2014 04:07:23 AM,02/06/2014 04:09:25 AM,02/06/2014 04:43:51 AM,02/06/2014 04:43:51 AM,02/06/2014 05:03:47 AM,02/06/2014 05:06:44 AM,02/06/2014 05:29:31 AM,Other,02/06/2014 05:58:10 AM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.8046368314261, -122.414251200714)",140370041-87 +133570243,T02,13121418,Structure Fire,12/23/2013,12/23/2013,12/23/2013 04:21:01 PM,12/23/2013 04:21:01 PM,12/23/2013 04:22:36 PM,12/23/2013 04:24:19 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 04:26:55 PM,MASON ST/PINE ST,SF,94108,B01,41,1413,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7908806970808, -122.410622872864)",133570243-T02 +113520320,E08,11116979,Structure Fire,12/18/2011,12/18/2011,12/18/2011 07:34:28 PM,12/18/2011 07:35:00 PM,12/18/2011 07:35:24 PM,04/25/2016 02:01:05 PM,12/18/2011 07:39:44 PM,04/25/2016 02:01:05 PM,04/25/2016 02:01:05 PM,Other,12/18/2011 07:41:49 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,7,3,6,South of Market,"(37.7801303744947, -122.409871449933)",113520320-E08 +133480383,68,13118284,Medical Incident,12/14/2013,12/14/2013,12/14/2013 09:13:01 PM,12/14/2013 09:14:56 PM,12/14/2013 09:15:17 PM,12/14/2013 09:15:28 PM,12/14/2013 09:20:37 PM,12/14/2013 09:40:57 PM,12/14/2013 09:57:30 PM,Code 2 Transport,12/14/2013 10:26:40 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",133480383-68 +121580107,KM12,12052213,Medical Incident,06/06/2012,06/06/2012,06/06/2012 09:53:11 AM,06/06/2012 09:54:42 AM,06/06/2012 09:55:16 AM,06/06/2012 09:56:02 AM,06/06/2012 10:02:31 AM,06/06/2012 10:16:09 AM,06/06/2012 10:28:26 AM,Code 2 Transport,06/06/2012 10:50:27 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",121580107-KM12 +160071509,88,16002817,Medical Incident,01/07/2016,01/07/2016,01/07/2016 11:51:12 AM,01/07/2016 11:53:05 AM,01/07/2016 11:53:30 AM,01/07/2016 11:53:37 AM,01/07/2016 12:01:15 PM,01/07/2016 12:08:36 PM,01/07/2016 12:40:03 PM,Code 2 Transport,01/07/2016 01:24:34 PM,VAN DYKE AV/INGALLS ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7259856664173, -122.386800107579)",160071509-88 +140010020,AM04,14000013,Medical Incident,01/01/2014,12/31/2013,01/01/2014 12:15:48 AM,01/01/2014 12:17:59 AM,01/01/2014 12:18:57 AM,01/01/2014 12:20:05 AM,01/01/2014 12:23:29 AM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Unable to Locate,01/01/2014 12:27:07 AM,BATTERY ST/WASHINGTON ST,SF,94111,B01,13,1142,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7958750038383, -122.400485537558)",140010020-AM04 +140140051,E08,14004693,Medical Incident,01/14/2014,01/13/2014,01/14/2014 04:55:04 AM,01/14/2014 04:56:24 AM,01/14/2014 04:57:00 AM,01/14/2014 04:58:40 AM,01/14/2014 05:01:39 AM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/14/2014 05:10:05 AM,400 Block of BERRY ST,SF,94107,B03,8,2262,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",140140051-E08 +131490052,E09,13050412,Medical Incident,05/29/2013,05/28/2013,05/29/2013 06:38:33 AM,05/29/2013 06:40:17 AM,05/29/2013 06:41:22 AM,05/29/2013 06:43:10 AM,05/29/2013 06:49:03 AM,04/25/2016 01:52:33 PM,04/25/2016 01:52:33 PM,Other,05/29/2013 07:05:25 AM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",131490052-E09 +140250130,AM02,14008520,Medical Incident,01/25/2014,01/25/2014,01/25/2014 10:43:13 AM,01/25/2014 10:46:44 AM,01/25/2014 10:47:27 AM,01/25/2014 10:47:53 AM,01/25/2014 10:54:04 AM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Unable to Locate,01/25/2014 10:56:12 AM,25TH AV/CLEMENT ST,SF,94121,B07,14,7214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7820254939242, -122.484874258894)",140250130-AM02 +111670028,94,11054999,Medical Incident,06/16/2011,06/15/2011,06/16/2011 03:11:09 AM,06/16/2011 03:12:09 AM,06/16/2011 03:12:29 AM,06/16/2011 03:12:42 AM,06/16/2011 03:18:56 AM,06/16/2011 03:26:02 AM,06/16/2011 04:03:00 AM,Code 2 Transport,06/16/2011 04:20:07 AM,200 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7668131434468, -122.428952855226)",111670028-94 +112410110,E38,11079467,Medical Incident,08/29/2011,08/29/2011,08/29/2011 10:26:30 AM,08/29/2011 10:27:28 AM,08/29/2011 10:29:07 AM,08/29/2011 10:29:54 AM,08/29/2011 10:33:14 AM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 10:51:48 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,2,2,2,false,,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",112410110-E38 +102810419,RS2,10089518,Traffic Collision,10/08/2010,10/08/2010,10/08/2010 11:27:30 PM,10/08/2010 11:27:44 PM,10/08/2010 11:28:26 PM,10/08/2010 11:29:01 PM,10/08/2010 11:31:08 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/09/2010 12:06:23 AM,400 Block of SAN BRUNO AVE,SF,94110,B10,29,2421,3,3,3,false,,1,RESCUE SQUAD,1,2,10,Potrero Hill,"(37.7639386424608, -122.405469974111)",102810419-RS2 +130700025,E03,13023205,Medical Incident,03/11/2013,03/10/2013,03/11/2013 02:15:45 AM,03/11/2013 02:16:04 AM,03/11/2013 02:16:26 AM,03/11/2013 02:17:56 AM,03/11/2013 02:19:16 AM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,Other,03/11/2013 02:31:17 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",130700025-E03 +160451752,74,16018129,Medical Incident,02/14/2016,02/14/2016,02/14/2016 01:34:49 PM,02/14/2016 01:37:03 PM,02/14/2016 01:37:56 PM,02/14/2016 01:38:05 PM,02/14/2016 01:48:28 PM,02/14/2016 02:13:14 PM,02/14/2016 02:17:18 PM,Code 2 Transport,02/14/2016 02:52:56 PM,WASHINGTON ST/FILLMORE ST,San Francisco,94115,B04,38,3545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7915916498341, -122.434380485478)",160451752-74 +112460024,E01,11080980,Medical Incident,09/03/2011,09/02/2011,09/03/2011 01:25:01 AM,09/03/2011 01:27:05 AM,09/03/2011 01:27:23 AM,04/25/2016 02:02:52 PM,09/03/2011 01:43:25 AM,09/03/2011 01:48:28 AM,09/03/2011 01:53:11 AM,Other,09/03/2011 01:47:14 AM,MARKET ST/CYRIL MAGNIN ST,SF,94103,B03,1,1366,E,E,3,true,,1,ENGINE,5,3,6,South of Market,"(37.7839914857614, -122.408066547804)",112460024-E01 +140380137,KM01,14012782,Medical Incident,02/07/2014,02/07/2014,02/07/2014 10:55:15 AM,02/07/2014 10:57:59 AM,02/07/2014 10:59:08 AM,02/07/2014 11:00:19 AM,02/07/2014 11:07:50 AM,02/07/2014 11:31:58 AM,02/07/2014 11:41:42 AM,Code 2 Transport,02/07/2014 12:27:25 PM,1200 Block of BUSH ST,SF,94109,B04,3,1636,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.788955611099, -122.417825829364)",140380137-KM01 +160340914,77,16013297,Structure Fire,02/03/2016,02/03/2016,02/03/2016 09:23:05 AM,02/03/2016 09:23:05 AM,02/03/2016 09:26:07 AM,02/03/2016 09:26:07 AM,02/03/2016 09:26:07 AM,02/03/2016 09:36:01 AM,02/03/2016 09:47:43 AM,Code 2 Transport,02/03/2016 10:32:44 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",160340914-77 +122890041,E13,12095498,Alarms,10/15/2012,10/14/2012,10/15/2012 04:10:21 AM,10/15/2012 04:11:29 AM,10/15/2012 04:11:39 AM,10/15/2012 04:13:20 AM,10/15/2012 04:14:31 AM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 04:24:02 AM,500 Block of SACRAMENTO ST,SF,94111,B01,13,1166,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7938844190655, -122.402569303912)",122890041-E13 +131830183,RS2,13062355,Medical Incident,07/02/2013,07/02/2013,07/02/2013 01:15:38 PM,07/02/2013 01:15:38 PM,07/02/2013 01:15:38 PM,04/25/2016 01:52:00 PM,07/02/2013 01:17:18 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 01:40:14 PM,100 Block of OTIS ST,SF,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",131830183-RS2 +123260118,E07,12108397,Medical Incident,11/21/2012,11/21/2012,11/21/2012 09:36:25 AM,11/21/2012 09:37:13 AM,11/21/2012 09:38:32 AM,11/21/2012 09:40:28 AM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,Other,11/21/2012 09:44:37 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",123260118-E07 +103490264,77,10111991,Traffic Collision,12/15/2010,12/15/2010,12/15/2010 05:15:59 PM,12/15/2010 05:16:30 PM,12/15/2010 05:16:42 PM,04/25/2016 02:07:06 PM,12/15/2010 05:23:32 PM,12/15/2010 05:35:41 PM,12/15/2010 05:46:03 PM,Code 2 Transport,12/15/2010 06:12:30 PM,SAINT JOSEPHS AV/OFARRELL ST,SF,94115,B05,10,4261,3,3,3,true,,1,MEDIC,2,5,2,Western Addition,"(37.782233945745, -122.441671637841)",103490264-77 +112820133,T05,11093295,Alarms,10/09/2011,10/09/2011,10/09/2011 10:47:06 AM,10/09/2011 10:48:34 AM,10/09/2011 10:48:49 AM,10/09/2011 10:50:33 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 10:51:51 AM,1700 Block of OFARRELL ST,SF,94115,B04,5,3623,3,3,3,false,,1,TRUCK,4,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",112820133-T05 +122570356,T07,12085117,Structure Fire,09/13/2012,09/13/2012,09/13/2012 11:26:19 PM,09/13/2012 11:28:14 PM,09/13/2012 11:28:36 PM,09/13/2012 11:30:24 PM,09/13/2012 11:38:40 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/14/2012 12:05:39 AM,FOLSOM ST/PRECITA AV,SF,94110,B06,11,5664,3,3,3,false,Fire,1,TRUCK,8,6,9,Bernal Heights,"(37.7471710211027, -122.413571133066)",122570356-T07 +112010032,E01,11066159,Medical Incident,07/20/2011,07/19/2011,07/20/2011 03:42:07 AM,07/20/2011 03:43:23 AM,07/20/2011 03:43:39 AM,07/20/2011 03:45:03 AM,07/20/2011 03:47:32 AM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/20/2011 03:52:13 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",112010032-E01 +130070026,67,13002249,Medical Incident,01/07/2013,01/06/2013,01/07/2013 02:40:49 AM,01/07/2013 02:43:13 AM,01/07/2013 02:43:32 AM,01/07/2013 02:43:40 AM,01/07/2013 02:49:55 AM,01/07/2013 02:59:58 AM,01/07/2013 03:10:15 AM,Code 2 Transport,01/07/2013 03:13:33 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",130070026-67 +130430004,68,13014489,Medical Incident,02/12/2013,02/11/2013,02/12/2013 12:27:11 AM,02/12/2013 12:30:51 AM,02/12/2013 12:31:48 AM,02/12/2013 12:32:10 AM,02/12/2013 12:48:57 AM,02/12/2013 01:07:45 AM,02/12/2013 01:26:31 AM,Code 2 Transport,02/12/2013 01:52:09 AM,0 Block of TURK ST,SF,94102,B03,1,1365,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",130430004-68 +140980416,E06,14033224,Medical Incident,04/08/2014,04/08/2014,04/08/2014 07:57:42 PM,04/08/2014 08:01:34 PM,04/08/2014 08:01:58 PM,04/08/2014 08:02:40 PM,04/08/2014 08:06:12 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Code 2 Transport,04/08/2014 08:15:31 PM,GUERRERO ST/15TH ST,SAN FRANCISCO,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7664057681804, -122.42425811346)",140980416-E06 +133470055,T07,13117644,Citizen Assist / Service Call,12/13/2013,12/12/2013,12/13/2013 05:22:41 AM,12/13/2013 05:24:38 AM,12/13/2013 05:24:43 AM,12/13/2013 05:27:34 AM,12/13/2013 05:33:26 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/13/2013 05:40:07 AM,100 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5116,3,3,3,false,Alarm,1,TRUCK,1,2,6,Mission,"(37.7705590121375, -122.417949585261)",133470055-T07 +103650028,E07,10116951,Structure Fire,12/31/2010,12/30/2010,12/31/2010 02:03:37 AM,12/31/2010 02:04:24 AM,12/31/2010 02:05:12 AM,12/31/2010 02:07:13 AM,12/31/2010 02:10:21 AM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/31/2010 02:20:42 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,,1,ENGINE,6,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",103650028-E07 +121860317,E51,12062071,Outside Fire,07/04/2012,07/04/2012,07/04/2012 08:31:02 PM,07/04/2012 08:31:50 PM,07/04/2012 08:32:21 PM,07/04/2012 08:34:14 PM,07/04/2012 08:37:56 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 09:04:56 PM,0 Block of YACHT RD,SF,94123,B04,16,4215,3,3,3,true,Fire,1,ENGINE,1,None,2,Marina,"(37.8067582085576, -122.446916219003)",121860317-E51 +160784215,85,16031236,Medical Incident,03/18/2016,03/18/2016,03/18/2016 11:53:30 PM,03/18/2016 11:53:30 PM,03/18/2016 11:53:40 PM,03/18/2016 11:53:54 PM,03/18/2016 11:58:53 PM,03/19/2016 12:03:29 AM,03/19/2016 12:18:08 AM,Code 2 Transport,03/19/2016 12:52:46 AM,HOWARD ST/8TH ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762213544451, -122.411606113878)",160784215-85 +112460330,71,11081251,Medical Incident,09/03/2011,09/03/2011,09/03/2011 08:50:49 PM,09/03/2011 08:50:50 PM,09/03/2011 08:52:05 PM,09/03/2011 08:52:23 PM,09/03/2011 08:58:39 PM,09/03/2011 09:43:56 PM,09/03/2011 10:09:13 PM,Code 2 Transport,09/03/2011 10:36:48 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",112460330-71 +132940201,E02,13100003,Administrative,10/21/2013,10/21/2013,10/21/2013 01:09:44 PM,10/21/2013 01:09:48 PM,10/21/2013 01:10:22 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 01:10:48 PM,1300 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",132940201-E02 +130550285,E41,13018655,Medical Incident,02/24/2013,02/24/2013,02/24/2013 07:09:38 PM,02/24/2013 07:11:53 PM,02/24/2013 07:11:59 PM,02/24/2013 07:13:19 PM,02/24/2013 07:16:03 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Other,02/24/2013 07:39:19 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",130550285-E41 +160032722,68,16001318,Medical Incident,01/03/2016,01/03/2016,01/03/2016 07:07:09 PM,01/03/2016 07:09:09 PM,01/03/2016 07:09:21 PM,01/03/2016 07:09:28 PM,01/03/2016 07:12:21 PM,01/03/2016 07:27:31 PM,01/03/2016 07:51:58 PM,Code 2 Transport,01/03/2016 07:59:11 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160032722-68 +111120168,E36,11036985,Odor (Strange / Unknown),04/22/2011,04/22/2011,04/22/2011 11:51:14 AM,04/22/2011 11:54:18 AM,04/22/2011 11:55:00 AM,04/22/2011 12:05:09 PM,04/22/2011 01:56:50 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 02:09:14 PM,1900 Block of PAGE ST,SF,94117,B05,12,4553,3,3,3,true,,1,ENGINE,7,5,5,Haight Ashbury,"(37.7702606599781, -122.452901890861)",111120168-E36 +120960265,E23,12031860,Structure Fire,04/05/2012,04/05/2012,04/05/2012 05:01:33 PM,04/05/2012 05:02:04 PM,04/05/2012 05:02:21 PM,04/05/2012 05:03:38 PM,04/05/2012 05:07:06 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Other,04/05/2012 05:12:13 PM,2300 Block of 35TH AVE,SF,94116,B08,18,7555,3,3,3,false,Fire,1,ENGINE,3,8,4,Sunset/Parkside,"(37.743232255412, -122.492833251462)",120960265-E23 +110530078,59,11017444,Medical Incident,02/22/2011,02/22/2011,02/22/2011 09:22:52 AM,02/22/2011 09:24:53 AM,02/22/2011 09:25:26 AM,02/22/2011 09:25:45 AM,02/22/2011 09:30:38 AM,02/22/2011 09:57:03 AM,02/22/2011 10:16:21 AM,Code 2 Transport,02/22/2011 11:00:45 AM,1200 Block of MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",110530078-59 +110920259,KM01,11030601,Medical Incident,04/02/2011,04/02/2011,04/02/2011 05:34:09 PM,04/02/2011 05:35:10 PM,04/02/2011 05:35:27 PM,04/02/2011 05:36:36 PM,04/02/2011 05:40:21 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Patient Declined Transport,04/02/2011 05:43:54 PM,VALENCIA ST/16TH ST,SF,94103,B02,6,5226,3,3,3,false,,1,PRIVATE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",110920259-KM01 +160823088,53,16032690,Medical Incident,03/22/2016,03/22/2016,03/22/2016 06:05:20 PM,03/22/2016 06:06:43 PM,03/22/2016 06:06:56 PM,03/22/2016 06:07:07 PM,03/22/2016 06:20:03 PM,03/22/2016 06:29:31 PM,03/22/2016 06:55:58 PM,Code 2 Transport,03/22/2016 07:17:01 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160823088-53 +130460072,B06,13015518,Structure Fire,02/15/2013,02/14/2013,02/15/2013 07:14:01 AM,02/15/2013 07:14:02 AM,02/15/2013 07:14:15 AM,02/15/2013 07:15:55 AM,02/15/2013 07:19:32 AM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Fire,02/15/2013 07:28:51 AM,500 Block of PORTOLA DR,SF,94131,B06,20,5353,3,3,3,false,Alarm,1,CHIEF,2,6,8,Glen Park,"(37.7455667070932, -122.451155727844)",130460072-B06 +160253154,57,16010071,Medical Incident,01/25/2016,01/25/2016,01/25/2016 07:03:54 PM,01/25/2016 07:07:20 PM,01/25/2016 07:10:50 PM,01/25/2016 07:10:55 PM,01/25/2016 07:24:05 PM,01/25/2016 07:34:29 PM,01/25/2016 07:53:18 PM,Code 2 Transport,01/25/2016 08:18:57 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160253154-57 +130250276,AM08,13008698,Medical Incident,01/25/2013,01/25/2013,01/25/2013 04:28:46 PM,01/25/2013 04:30:20 PM,01/25/2013 04:30:59 PM,01/25/2013 04:31:43 PM,01/25/2013 04:33:12 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/25/2013 04:33:31 PM,BELVEDERE ST/17TH ST,SF,94117,B05,12,5163,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7617264200069, -122.447780350679)",130250276-AM08 +123180191,E06,12105770,Medical Incident,11/13/2012,11/13/2012,11/13/2012 12:43:27 PM,11/13/2012 12:45:46 PM,11/13/2012 12:45:57 PM,11/13/2012 12:47:48 PM,11/13/2012 12:49:38 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 01:03:11 PM,3500 Block of 17TH ST,SF,94110,B02,6,5251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7631541226795, -122.425099106789)",123180191-E06 +120190354,E11,12006498,Medical Incident,01/19/2012,01/19/2012,01/19/2012 10:05:04 PM,01/19/2012 10:05:41 PM,01/19/2012 10:06:04 PM,01/19/2012 10:06:53 PM,01/19/2012 10:09:11 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 10:14:40 PM,200 Block of CLIPPER ST,SF,94114,B06,11,5537,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7491478181193, -122.430536253107)",120190354-E11 +160490390,79,16019614,Traffic Collision,02/18/2016,02/17/2016,02/18/2016 06:17:01 AM,02/18/2016 06:18:23 AM,02/18/2016 06:18:41 AM,02/18/2016 06:18:48 AM,02/18/2016 06:21:47 AM,02/18/2016 06:41:26 AM,02/18/2016 07:01:08 AM,Code 2 Transport,02/18/2016 07:32:09 AM,WAWONA ST/19TH AV,San Francisco,94132,B08,40,7414,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7374547435254, -122.475288554879)",160490390-79 +160041857,54,16001612,Medical Incident,01/04/2016,01/04/2016,01/04/2016 01:30:44 PM,01/04/2016 01:32:22 PM,01/04/2016 01:33:18 PM,01/04/2016 01:33:24 PM,01/04/2016 01:45:38 PM,01/04/2016 02:06:55 PM,01/04/2016 02:34:42 PM,Code 2 Transport,01/04/2016 03:00:53 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",160041857-54 +140460159,E14,14015639,Medical Incident,02/15/2014,02/15/2014,02/15/2014 11:35:50 AM,02/15/2014 11:37:08 AM,02/15/2014 11:40:32 AM,02/15/2014 11:40:38 AM,02/15/2014 11:42:48 AM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 11:59:13 AM,500 Block of 44TH AVE,SF,94121,B07,34,7274,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7781961082837, -122.505090063959)",140460159-E14 +120370196,E13,12012349,Alarms,02/06/2012,02/06/2012,02/06/2012 12:52:16 PM,02/06/2012 12:52:50 PM,02/06/2012 12:53:03 PM,02/06/2012 12:53:54 PM,02/06/2012 12:58:34 PM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/06/2012 01:04:31 PM,0 Block of STEVENSON ST,SF,94105,B03,1,2144,3,3,3,true,Alarm,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7893540721016, -122.400032359721)",120370196-E13 +132120060,RC1,13071564,Medical Incident,07/31/2013,07/30/2013,07/31/2013 07:20:35 AM,07/31/2013 07:23:13 AM,07/31/2013 07:23:40 AM,07/31/2013 07:25:24 AM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 07:29:54 AM,1200 Block of MARKET ST,SF,94102,B02,1,2317,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",132120060-RC1 +131030245,KM12,13034636,Medical Incident,04/13/2013,04/13/2013,04/13/2013 03:56:58 PM,04/13/2013 03:58:57 PM,04/13/2013 03:59:09 PM,04/13/2013 03:59:47 PM,04/13/2013 04:02:19 PM,04/13/2013 04:11:48 PM,04/13/2013 04:21:13 PM,Code 2 Transport,04/13/2013 04:35:00 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131030245-KM12 +110790345,72,11026183,Medical Incident,03/20/2011,03/20/2011,03/20/2011 08:31:23 PM,03/20/2011 08:31:58 PM,03/20/2011 08:32:09 PM,03/20/2011 08:32:27 PM,03/20/2011 08:39:01 PM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Patient Declined Transport,03/20/2011 09:21:14 PM,1000 Block of MCALLISTER ST,SF,94102,B02,5,3425,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",110790345-72 +123240108,KM10,12107663,Medical Incident,11/19/2012,11/19/2012,11/19/2012 09:29:14 AM,11/19/2012 09:30:02 AM,11/19/2012 09:30:58 AM,11/19/2012 09:31:44 AM,11/19/2012 09:34:42 AM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/19/2012 09:34:58 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123240108-KM10 +112560310,E11,11084535,Medical Incident,09/13/2011,09/13/2011,09/13/2011 07:10:44 PM,09/13/2011 07:11:41 PM,09/13/2011 07:11:59 PM,09/13/2011 07:13:06 PM,09/13/2011 07:14:43 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/13/2011 07:32:31 PM,3700 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7478492013456, -122.423619315765)",112560310-E11 +160381732,75,16015207,Medical Incident,02/07/2016,02/07/2016,02/07/2016 12:35:32 PM,02/07/2016 12:37:07 PM,02/07/2016 12:37:31 PM,02/07/2016 12:41:07 PM,02/07/2016 12:41:07 PM,02/07/2016 12:53:55 PM,02/07/2016 01:15:27 PM,Code 2 Transport,02/07/2016 01:49:15 PM,100 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7905126810084, -122.402216710445)",160381732-75 +140330278,E01,14011292,Alarms,02/02/2014,02/02/2014,02/02/2014 07:46:21 PM,02/02/2014 07:47:09 PM,02/02/2014 07:47:15 PM,02/02/2014 07:48:27 PM,02/02/2014 07:49:53 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Fire,02/02/2014 07:55:05 PM,900 Block of HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7784155560729, -122.402721814145)",140330278-E01 +103630284,56,10116536,Medical Incident,12/29/2010,12/29/2010,12/29/2010 07:16:51 PM,12/29/2010 07:18:10 PM,12/29/2010 07:18:31 PM,12/29/2010 07:19:36 PM,12/29/2010 07:53:12 PM,12/29/2010 07:53:38 PM,12/29/2010 08:05:16 PM,Code 2 Transport,12/29/2010 08:29:36 PM,200 Block of RANDALL ST,SF,94131,B06,26,8115,3,3,3,true,,1,MEDIC,2,6,8,Glen Park,"(37.7398425374407, -122.428365917767)",103630284-56 +160102097,67,16004084,Traffic Collision,01/10/2016,01/10/2016,01/10/2016 03:17:41 PM,01/10/2016 03:17:41 PM,01/10/2016 03:18:04 PM,01/10/2016 03:18:58 PM,01/10/2016 03:23:33 PM,01/10/2016 03:36:10 PM,01/10/2016 03:39:37 PM,Code 2 Transport,01/10/2016 04:26:34 PM,POTRERO AV/25TH ST,San Francisco,94110,B10,9,2624,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Mission,"(37.7517262101212, -122.406219413558)",160102097-67 +132450049,68,13082570,Medical Incident,09/02/2013,09/01/2013,09/02/2013 03:51:36 AM,09/02/2013 03:51:36 AM,09/02/2013 03:51:36 AM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,09/02/2013 04:09:33 AM,09/02/2013 04:13:41 AM,Code 2 Transport,09/02/2013 04:40:23 AM,1900 Block of MARKET ST,SF,94102,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7702451976438, -122.425669041358)",132450049-68 +112400213,E17,11079222,Medical Incident,08/28/2011,08/28/2011,08/28/2011 02:46:36 PM,08/28/2011 02:47:59 PM,08/28/2011 02:48:09 PM,08/28/2011 02:49:32 PM,08/28/2011 02:51:58 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 03:03:39 PM,0 Block of WESTBROOK CT,SF,94124,B10,17,6624,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7349292027756, -122.382439124672)",112400213-E17 +103580233,E18,10114971,Alarms,12/24/2010,12/24/2010,12/24/2010 05:11:17 PM,12/24/2010 05:12:32 PM,12/24/2010 05:12:38 PM,12/24/2010 05:13:30 PM,12/24/2010 05:17:09 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 05:20:54 PM,1400 Block of 38TH AVE,SF,94122,B08,18,7521,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7598718838573, -122.497218491144)",103580233-E18 +133070196,E39,13104397,Medical Incident,11/03/2013,11/03/2013,11/03/2013 01:38:45 PM,11/03/2013 01:40:14 PM,11/03/2013 01:40:56 PM,11/03/2013 01:41:47 PM,11/03/2013 01:45:24 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/03/2013 02:01:32 PM,0 Block of MARIETTA DR,SF,94127,B09,39,8651,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7422027864452, -122.450017874524)",133070196-E39 +133420165,E38,13115949,Alarms,12/08/2013,12/08/2013,12/08/2013 11:03:23 AM,12/08/2013 11:04:34 AM,12/08/2013 11:04:42 AM,12/08/2013 11:05:45 AM,12/08/2013 11:07:20 AM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 11:22:48 AM,2000 Block of SUTTER ST,SF,94115,B04,38,3542,3,3,3,false,Alarm,1,ENGINE,1,4,5,Japantown,"(37.7859265850289, -122.434083678259)",133420165-E38 +112050312,E03,11067855,Medical Incident,07/24/2011,07/24/2011,07/24/2011 08:08:00 PM,07/24/2011 08:08:34 PM,07/24/2011 08:08:49 PM,07/24/2011 08:10:51 PM,07/24/2011 08:12:06 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/24/2011 08:20:32 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",112050312-E03 +113000248,RA48,11099557,Medical Incident,10/27/2011,10/27/2011,10/27/2011 03:12:46 PM,10/27/2011 03:13:57 PM,10/27/2011 03:14:36 PM,10/27/2011 03:17:02 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 04:09:43 PM,1200 Block of MARINER DR,TI,94130,B03,48,2931,3,3,3,false,,1,MEDIC,3,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",113000248-RA48 +110960327,B03,11031962,Structure Fire,04/06/2011,04/06/2011,04/06/2011 08:09:57 PM,04/06/2011 08:10:16 PM,04/06/2011 08:10:37 PM,04/06/2011 11:43:03 PM,04/06/2011 11:49:32 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/07/2011 04:21:29 AM,3200 Block of MISSION ST,SF,94110,B06,32,5625,3,3,3,false,,3,CHIEF,34,6,9,Bernal Heights,"(37.7447384333683, -122.420517921043)",110960327-B03 +121200002,T13,12039676,Medical Incident,04/29/2012,04/28/2012,04/29/2012 12:00:42 AM,04/29/2012 12:02:31 AM,04/29/2012 12:04:27 AM,04/29/2012 12:06:04 AM,04/29/2012 12:07:36 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Fire,04/29/2012 12:13:45 AM,WASHINGTON ST/KEARNY ST,SF,94108,B01,13,1245,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.7953266906824, -122.404957209767)",121200002-T13 +120640244,RC3,12021191,Medical Incident,03/04/2012,03/04/2012,03/04/2012 03:47:55 PM,03/04/2012 03:48:28 PM,03/04/2012 03:49:12 PM,04/25/2016 01:59:50 PM,03/04/2012 03:53:20 PM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Other,03/04/2012 04:11:39 PM,3600 Block of MISSION ST,SF,94110,B06,32,5631,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,8,Bernal Heights,"(37.7381275371551, -122.424063544101)",120640244-RC3 +110260275,E37,11008645,Alarms,01/26/2011,01/26/2011,01/26/2011 04:50:51 PM,01/26/2011 04:52:14 PM,01/26/2011 04:52:41 PM,01/26/2011 04:53:50 PM,01/26/2011 04:55:47 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/26/2011 05:02:12 PM,500 Block of WISCONSIN ST,SF,94107,B10,37,2521,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7604841026364, -122.39931132693)",110260275-E37 +140780319,T13,14026495,Alarms,03/19/2014,03/19/2014,03/19/2014 07:14:39 PM,03/19/2014 07:15:41 PM,03/19/2014 07:15:50 PM,03/19/2014 07:17:01 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Fire,03/19/2014 07:50:54 PM,700 Block of BATTERY ST,SAN FRANCISCO,94111,B01,13,1155,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7981258379836, -122.400888896243)",140780319-T13 +160360307,KM06,16014088,Medical Incident,02/05/2016,02/04/2016,02/05/2016 02:16:48 AM,02/05/2016 02:18:26 AM,02/05/2016 02:18:49 AM,02/05/2016 02:21:19 AM,02/05/2016 02:26:26 AM,02/05/2016 02:35:20 AM,02/05/2016 02:41:20 AM,Code 2 Transport,02/05/2016 03:16:17 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",160360307-KM06 +100900365,E26,10027934,Transfer,03/31/2010,03/31/2010,03/31/2010 09:53:15 PM,03/31/2010 09:53:37 PM,03/31/2010 09:54:17 PM,03/31/2010 09:55:38 PM,03/31/2010 09:58:59 PM,04/25/2016 03:23:57 PM,04/25/2016 03:23:57 PM,Fire,03/31/2010 10:17:43 PM,0 Block of SURREY ST,SF,94131,B06,26,8146,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7349903415761, -122.432892827354)",100900365-E26 +160470157,65,16018754,Medical Incident,02/16/2016,02/15/2016,02/16/2016 01:29:45 AM,02/16/2016 01:32:09 AM,02/16/2016 01:32:26 AM,02/16/2016 01:32:57 AM,02/16/2016 01:40:03 AM,02/16/2016 01:46:25 AM,02/16/2016 01:54:22 AM,Code 2 Transport,02/16/2016 03:14:01 AM,100 Block of KISKA RD,San Francisco,94124,B10,17,6625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",160470157-65 +160501332,AM06,16020050,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:15:53 AM,02/19/2016 11:17:43 AM,02/19/2016 11:18:12 AM,02/19/2016 11:19:45 AM,02/19/2016 11:30:52 AM,02/19/2016 11:34:55 AM,02/19/2016 12:04:27 PM,Code 2 Transport,02/19/2016 12:38:59 PM,13TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",160501332-AM06 +160921201,61,16036389,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:26:32 AM,04/01/2016 10:31:32 AM,04/01/2016 10:33:23 AM,04/01/2016 10:33:34 AM,04/01/2016 10:46:14 AM,04/01/2016 10:54:50 AM,04/01/2016 11:16:54 AM,Code 2 Transport,04/01/2016 11:37:19 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7613401387036, -122.46390786542)",160921201-61 +120940061,61,12031052,Medical Incident,04/03/2012,04/03/2012,04/03/2012 07:58:21 AM,04/03/2012 08:00:51 AM,04/03/2012 08:01:27 AM,04/03/2012 08:01:43 AM,04/03/2012 08:10:02 AM,04/03/2012 08:18:29 AM,04/03/2012 08:31:59 AM,Code 2 Transport,04/03/2012 09:05:33 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",120940061-61 +160760744,KM09,16030035,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:17:35 AM,03/16/2016 08:18:45 AM,03/16/2016 08:20:41 AM,03/16/2016 08:21:08 AM,03/16/2016 09:03:27 AM,03/16/2016 09:03:32 AM,03/16/2016 09:20:36 AM,Code 2 Transport,03/16/2016 09:57:02 AM,0 Block of DELLBROOK AVE,San Francisco,94131,B08,20,5351,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7495710546897, -122.454036299238)",160760744-KM09 +130980122,E18,13032813,Medical Incident,04/08/2013,04/08/2013,04/08/2013 08:57:28 AM,04/08/2013 08:58:54 AM,04/08/2013 08:59:13 AM,04/08/2013 09:00:19 AM,04/08/2013 09:05:32 AM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Other,04/08/2013 09:15:14 AM,KIRKHAM ST/19TH AV,SF,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7598339367344, -122.47681389085)",130980122-E18 +133200266,RC1,13108798,Medical Incident,11/16/2013,11/16/2013,11/16/2013 05:28:46 PM,11/16/2013 05:31:33 PM,11/16/2013 05:32:18 PM,11/16/2013 05:32:26 PM,11/16/2013 05:42:00 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 05:52:57 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",133200266-RC1 +132150419,AP,13072820,Other,08/03/2013,08/03/2013,08/03/2013 11:28:24 PM,08/03/2013 11:28:25 PM,08/03/2013 11:28:25 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Fire,08/03/2013 11:28:49 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",132150419-AP +121040201,E03,12034468,Medical Incident,04/13/2012,04/13/2012,04/13/2012 03:06:03 PM,04/13/2012 03:06:43 PM,04/13/2012 03:07:50 PM,04/13/2012 03:09:07 PM,04/13/2012 03:12:45 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/13/2012 03:13:32 PM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",121040201-E03 +103410193,T05,10109132,Alarms,12/07/2010,12/07/2010,12/07/2010 01:20:07 PM,12/07/2010 01:21:36 PM,12/07/2010 01:21:49 PM,12/07/2010 01:22:50 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Other,04/25/2016 02:07:15 PM,600 Block of PAGE ST,SF,94117,B05,6,3531,3,3,3,false,,1,TRUCK,4,5,5,Hayes Valley,"(37.7729885097289, -122.431465550486)",103410193-T05 +132420227,66,13081661,Traffic Collision,08/30/2013,08/30/2013,08/30/2013 01:31:26 PM,08/30/2013 01:32:55 PM,08/30/2013 01:33:30 PM,08/30/2013 01:33:58 PM,08/30/2013 01:42:26 PM,08/30/2013 01:53:22 PM,08/30/2013 02:19:19 PM,Code 2 Transport,08/30/2013 02:53:35 PM,8TH AV/FULTON ST,SF,94122,B07,31,7133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7733982051293, -122.4658831608)",132420227-66 +140060332,79,14002249,Medical Incident,01/06/2014,01/06/2014,01/06/2014 06:28:08 PM,01/06/2014 06:29:05 PM,01/06/2014 06:51:44 PM,01/06/2014 06:51:47 PM,01/06/2014 06:59:46 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Patient Declined Transport,01/06/2014 08:00:02 PM,22ND ST/VALENCIA ST,SF,94110,B06,7,5456,,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7552947827711, -122.420964094826)",140060332-79 +110010376,E03,11000321,Alarms,01/01/2011,01/01/2011,01/01/2011 01:17:49 PM,01/01/2011 01:18:33 PM,01/01/2011 01:18:42 PM,01/01/2011 01:19:43 PM,01/01/2011 01:21:20 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 01:24:08 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",110010376-E03 +112800329,93,11092800,Medical Incident,10/07/2011,10/07/2011,10/07/2011 08:06:00 PM,10/07/2011 08:07:23 PM,10/07/2011 08:07:56 PM,10/07/2011 08:10:10 PM,10/07/2011 08:10:12 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 08:22:34 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",112800329-93 +160612586,KM01,16024400,Medical Incident,03/01/2016,03/01/2016,03/01/2016 05:26:51 PM,03/01/2016 05:27:32 PM,03/01/2016 05:28:14 PM,03/01/2016 05:29:50 PM,03/01/2016 05:33:35 PM,03/01/2016 05:45:32 PM,03/01/2016 06:03:01 PM,Code 2 Transport,03/01/2016 06:46:07 PM,200 Block of CHURCH ST,San Francisco,94114,B05,6,5231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7668131434468, -122.428952855226)",160612586-KM01 +123150073,66,12104746,Medical Incident,11/10/2012,11/09/2012,11/10/2012 06:07:01 AM,11/10/2012 06:08:35 AM,11/10/2012 06:08:59 AM,11/10/2012 06:09:21 AM,11/10/2012 06:11:33 AM,11/10/2012 06:39:25 AM,11/10/2012 06:58:48 AM,Code 2 Transport,11/10/2012 07:42:12 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",123150073-66 +120410383,T08,12013840,Structure Fire,02/10/2012,02/10/2012,02/10/2012 10:23:21 PM,02/10/2012 10:23:21 PM,02/10/2012 10:24:00 PM,02/10/2012 10:24:57 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/10/2012 10:29:43 PM,4TH ST/BRYANT ST,SF,94107,B03,8,2217,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7795669099357, -122.398059940086)",120410383-T08 +132920051,RC1,13099257,Medical Incident,10/19/2013,10/18/2013,10/19/2013 03:16:15 AM,10/19/2013 03:16:38 AM,10/19/2013 03:17:05 AM,10/19/2013 03:19:19 AM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 03:22:36 AM,HYDE ST/OFARRELL ST,SF,94109,B04,3,1544,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,6,Tenderloin,"(37.7853759730503, -122.416259705763)",132920051-RC1 +133540209,B04,13120275,Alarms,12/20/2013,12/20/2013,12/20/2013 12:17:30 PM,12/20/2013 12:18:50 PM,12/20/2013 12:19:30 PM,12/20/2013 12:20:38 PM,12/20/2013 12:22:01 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Fire,12/20/2013 12:23:11 PM,2200 Block of JACKSON ST,SF,94115,B04,38,3465,3,3,3,false,Alarm,1,CHIEF,1,4,2,Pacific Heights,"(37.7928385256344, -122.432101129272)",133540209-B04 +110820313,63,11027044,Medical Incident,03/23/2011,03/23/2011,03/23/2011 05:43:14 PM,03/23/2011 05:44:46 PM,03/23/2011 05:47:09 PM,03/23/2011 05:47:32 PM,03/23/2011 06:03:37 PM,03/23/2011 06:42:26 PM,03/23/2011 06:55:50 PM,Code 2 Transport,03/23/2011 07:23:14 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,2,2,2,true,,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110820313-63 +112160328,E28,11071462,Medical Incident,08/04/2011,08/04/2011,08/04/2011 07:04:24 PM,08/04/2011 07:04:44 PM,08/04/2011 07:04:58 PM,08/04/2011 07:05:40 PM,08/04/2011 07:07:55 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 07:19:39 PM,JEFFERSON ST/POWELL ST,SF,94133,B01,28,1344,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.808624849677, -122.412523835376)",112160328-E28 +160263607,88,16010471,Medical Incident,01/26/2016,01/26/2016,01/26/2016 09:22:28 PM,01/26/2016 09:23:52 PM,01/26/2016 09:24:46 PM,01/26/2016 09:25:23 PM,01/26/2016 09:27:00 PM,01/26/2016 09:46:25 PM,01/26/2016 09:49:12 PM,Code 2 Transport,01/26/2016 10:34:15 PM,1100 Block of HYDE ST,San Francisco,94109,B01,41,1563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7914566786177, -122.417418430351)",160263607-88 +140620327,86,14021071,Medical Incident,03/03/2014,03/03/2014,03/03/2014 07:28:43 PM,03/03/2014 07:30:40 PM,03/03/2014 07:33:52 PM,03/03/2014 07:34:01 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Other,03/03/2014 07:36:24 PM,25TH ST/BRYANT ST,SF,94110,B06,9,5532,E,E,3,true,Potentially Life-Threatening,1,MEDIC,6,6,9,Mission,"(37.7512007973024, -122.408977846958)",140620327-86 +121330299,86,12044369,Medical Incident,05/12/2012,05/12/2012,05/12/2012 08:01:24 PM,05/12/2012 08:02:58 PM,05/12/2012 08:03:13 PM,04/25/2016 01:58:43 PM,05/12/2012 08:07:57 PM,05/12/2012 08:28:04 PM,05/12/2012 08:45:33 PM,Code 2 Transport,05/12/2012 09:26:48 PM,400 Block of DEWEY BLVD,SF,94116,B08,20,8641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.74646714941, -122.460326158513)",121330299-86 +122220025,KM07,12073450,Medical Incident,08/09/2012,08/08/2012,08/09/2012 01:58:10 AM,08/09/2012 01:59:09 AM,08/09/2012 01:59:52 AM,08/09/2012 02:00:33 AM,08/09/2012 02:07:32 AM,08/09/2012 02:10:57 AM,08/09/2012 02:28:30 AM,Code 2 Transport,08/09/2012 02:42:33 AM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,1,1,2,false,Non Life-threatening,1,PRIVATE,1,None,3,North Beach,"(37.8081679785862, -122.416634717802)",122220025-KM07 +160603019,72,16024037,Medical Incident,02/29/2016,02/29/2016,02/29/2016 06:55:56 PM,02/29/2016 06:55:56 PM,02/29/2016 06:56:55 PM,02/29/2016 06:57:43 PM,02/29/2016 07:02:50 PM,02/29/2016 07:13:21 PM,02/29/2016 07:20:28 PM,Code 2 Transport,02/29/2016 08:04:09 PM,1200 Block of HOWARD ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7756454671917, -122.412432457912)",160603019-72 +120270247,63,12009114,Traffic Collision,01/27/2012,01/27/2012,01/27/2012 03:12:09 PM,01/27/2012 03:12:46 PM,01/27/2012 03:13:53 PM,01/27/2012 03:14:11 PM,01/27/2012 03:17:38 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Patient Declined Transport,01/27/2012 03:46:10 PM,OAKDALE AV/TOLAND ST,SF,94124,B10,9,6377,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.740961928907, -122.401555700705)",120270247-63 +111310290,95,11043381,Medical Incident,05/11/2011,05/11/2011,05/11/2011 05:54:57 PM,05/11/2011 05:56:59 PM,05/11/2011 05:57:47 PM,05/11/2011 06:09:33 PM,05/11/2011 06:11:39 PM,05/11/2011 06:22:22 PM,05/11/2011 06:33:00 PM,Code 2 Transport,05/11/2011 06:53:06 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7683208883339, -122.4243245293)",111310290-95 +133270252,AM24,13111121,Structure Fire,11/23/2013,11/23/2013,11/23/2013 02:31:50 PM,11/23/2013 02:32:09 PM,11/23/2013 02:37:08 PM,04/25/2016 01:49:37 PM,11/23/2013 02:38:33 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 03:32:05 PM,3600 Block of SACRAMENTO ST,SF,94118,B07,10,4432,3,3,3,false,Fire,3,PRIVATE,6,7,2,Presidio Heights,"(37.7873936866832, -122.452758503157)",133270252-AM24 +122240170,B03,12074266,Structure Fire,08/11/2012,08/11/2012,08/11/2012 12:12:18 PM,08/11/2012 12:13:21 PM,08/11/2012 12:13:30 PM,08/11/2012 12:15:18 PM,08/11/2012 12:17:47 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 12:23:30 PM,1100 Block of FOLSOM ST,SF,94103,B03,1,2313,3,3,3,false,Fire,1,CHIEF,8,2,6,South of Market,"(37.7761748805979, -122.408661568722)",122240170-B03 +113540015,E15,11117398,Medical Incident,12/20/2011,12/19/2011,12/20/2011 01:07:49 AM,12/20/2011 01:10:17 AM,12/20/2011 01:10:38 AM,12/20/2011 01:12:23 AM,12/20/2011 01:13:59 AM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/20/2011 01:20:17 AM,0 Block of EDGAR AVE,SF,94112,B09,15,8471,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7208956020171, -122.452236185324)",113540015-E15 +160561315,59,16022334,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:36:32 AM,02/25/2016 10:39:02 AM,02/25/2016 10:39:16 AM,02/25/2016 10:39:28 AM,02/25/2016 10:54:41 AM,02/25/2016 11:16:53 AM,02/25/2016 11:34:28 AM,Code 2 Transport,02/25/2016 12:11:05 PM,0 Block of MOUNT VERNON AVE,San Francisco,94112,B09,43,6176,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7157777924445, -122.444279310961)",160561315-59 +112140210,E39,11070649,Medical Incident,08/02/2011,08/02/2011,08/02/2011 02:27:04 PM,08/02/2011 02:27:42 PM,08/02/2011 02:28:07 PM,08/02/2011 02:29:10 PM,08/02/2011 02:31:21 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 02:38:54 PM,14TH AV/WEST PORTAL AV,SF,94127,B08,39,8562,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7379698827734, -122.469056677033)",112140210-E39 +160513154,AM24,16020611,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:16:52 PM,02/20/2016 09:17:42 PM,02/20/2016 09:22:09 PM,02/20/2016 09:22:52 PM,02/20/2016 09:36:58 PM,02/20/2016 09:46:13 PM,02/20/2016 10:01:33 PM,Code 2 Transport,02/20/2016 10:30:31 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160513154-AM24 +160023237,AM24,16000927,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:06:19 PM,01/02/2016 09:08:32 PM,01/02/2016 09:19:55 PM,01/02/2016 09:20:22 PM,01/02/2016 09:26:00 PM,01/02/2016 09:32:39 PM,01/02/2016 09:59:00 PM,Code 2 Transport,01/02/2016 10:16:52 PM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160023237-AM24 +110070151,E29,11002295,Alarms,01/07/2011,01/07/2011,01/07/2011 11:57:15 AM,01/07/2011 11:58:16 AM,01/07/2011 11:58:24 AM,01/07/2011 11:59:10 AM,01/07/2011 12:01:21 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/07/2011 12:06:13 PM,900 Block of 16TH ST,SF,94107,B03,29,2414,3,3,3,true,,1,ENGINE,2,3,10,Mission Bay,"(37.7664325184439, -122.395973403657)",110070151-E29 +111720016,55,11056587,Medical Incident,06/21/2011,06/20/2011,06/21/2011 02:10:33 AM,06/21/2011 02:11:04 AM,06/21/2011 02:11:14 AM,06/21/2011 02:11:28 AM,06/21/2011 02:14:05 AM,06/21/2011 02:38:50 AM,06/21/2011 03:15:14 AM,Code 2 Transport,06/21/2011 03:29:02 AM,1800 Block of WALLER ST,SF,94122,B05,12,4552,3,3,3,true,,1,MEDIC,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",111720016-55 +140190365,E11,14006697,Medical Incident,01/19/2014,01/19/2014,01/19/2014 10:32:24 PM,01/19/2014 10:33:42 PM,01/19/2014 10:33:56 PM,01/19/2014 10:34:26 PM,01/19/2014 10:36:20 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/19/2014 10:52:29 PM,600 Block of SAN JOSE AVE,SF,94110,B06,11,5577,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",140190365-E11 +112480255,96,11081857,Medical Incident,09/05/2011,09/05/2011,09/05/2011 04:42:01 PM,09/05/2011 04:42:30 PM,09/05/2011 04:45:56 PM,09/05/2011 04:46:46 PM,09/05/2011 04:54:00 PM,09/05/2011 05:09:28 PM,09/05/2011 05:16:50 PM,Code 2 Transport,09/05/2011 05:50:31 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",112480255-96 +120020309,E03,12000851,Medical Incident,01/02/2012,01/02/2012,01/02/2012 09:20:40 PM,01/02/2012 09:21:17 PM,01/02/2012 09:22:41 PM,01/02/2012 09:23:24 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/02/2012 09:25:29 PM,300 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7839909656227, -122.415908808889)",120020309-E03 +160332797,74,16013099,Medical Incident,02/02/2016,02/02/2016,02/02/2016 06:22:58 PM,02/02/2016 06:24:24 PM,02/02/2016 06:26:25 PM,02/02/2016 06:26:25 PM,02/02/2016 06:33:50 PM,02/02/2016 06:42:05 PM,02/02/2016 06:52:58 PM,Code 2 Transport,02/02/2016 07:28:20 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",160332797-74 +113200295,E17,11106367,Medical Incident,11/16/2011,11/16/2011,11/16/2011 05:02:39 PM,11/16/2011 05:06:08 PM,11/16/2011 05:07:05 PM,11/16/2011 05:08:30 PM,11/16/2011 05:12:31 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/16/2011 05:25:10 PM,600 Block of JAMESTOWN AVE,SF,94124,B10,17,6577,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7131072321423, -122.387833652325)",113200295-E17 +130740008,75,13024528,Medical Incident,03/15/2013,03/14/2013,03/15/2013 12:33:37 AM,03/15/2013 12:34:29 AM,03/15/2013 12:34:53 AM,03/15/2013 12:35:06 AM,03/15/2013 12:36:56 AM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Patient Declined Transport,03/15/2013 01:02:33 AM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",130740008-75 +111310283,E02,11043375,Alarms,05/11/2011,05/11/2011,05/11/2011 05:46:59 PM,05/11/2011 05:47:51 PM,05/11/2011 05:48:07 PM,05/11/2011 05:49:26 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/11/2011 05:54:01 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.787352867216, -122.399071684966)",111310283-E02 +122280167,81,12075540,Medical Incident,08/15/2012,08/15/2012,08/15/2012 11:59:39 AM,08/15/2012 12:00:31 PM,08/15/2012 12:01:04 PM,08/15/2012 12:01:57 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 12:09:13 PM,0 Block of OLIVER ST,SF,94112,B09,33,6212,1,1,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7089572932128, -122.450109167554)",122280167-81 +111720005,54,11056577,Medical Incident,06/21/2011,06/20/2011,06/21/2011 12:52:09 AM,06/21/2011 12:52:45 AM,06/21/2011 12:53:04 AM,06/21/2011 12:53:08 AM,06/21/2011 01:06:15 AM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Patient Declined Transport,06/21/2011 01:12:19 AM,200 Block of FOLSOM ST,SF,94105,B03,35,2817,3,2,2,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",111720005-54 +130190270,E10,13006579,Citizen Assist / Service Call,01/19/2013,01/19/2013,01/19/2013 04:05:03 PM,01/19/2013 04:05:24 PM,01/19/2013 04:05:40 PM,01/19/2013 04:07:23 PM,01/19/2013 04:08:05 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Fire,01/19/2013 04:19:03 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,Alarm,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",130190270-E10 +120230287,RS2,12007879,Medical Incident,01/23/2012,01/23/2012,01/23/2012 05:46:05 PM,01/23/2012 05:47:02 PM,01/23/2012 05:47:41 PM,01/23/2012 05:47:59 PM,01/23/2012 05:49:19 PM,04/25/2016 02:00:28 PM,04/25/2016 02:00:28 PM,Other,01/23/2012 05:54:13 PM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",120230287-RS2 +103630161,E26,10116429,Medical Incident,12/29/2010,12/29/2010,12/29/2010 01:05:26 PM,12/29/2010 01:06:58 PM,12/29/2010 01:09:10 PM,12/29/2010 01:10:21 PM,12/29/2010 01:13:29 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/29/2010 01:30:12 PM,0 Block of TURQUOISE WAY,SF,94131,B06,26,8165,2,2,2,true,,1,ENGINE,1,6,8,Glen Park,"(37.7435345441074, -122.444884466475)",103630161-E26 +130710323,KM01,13023812,Medical Incident,03/12/2013,03/12/2013,03/12/2013 07:45:21 PM,03/12/2013 07:47:40 PM,03/12/2013 07:49:02 PM,03/12/2013 07:50:13 PM,03/12/2013 08:03:11 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 08:31:26 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8082633159603, -122.414972542075)",130710323-KM01 +121450081,55,12048054,Medical Incident,05/24/2012,05/24/2012,05/24/2012 09:20:15 AM,05/24/2012 09:21:32 AM,05/24/2012 09:21:42 AM,05/24/2012 09:22:14 AM,05/24/2012 09:31:41 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Patient Declined Transport,05/24/2012 10:06:37 AM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",121450081-55 +132210305,E01,13074731,Medical Incident,08/09/2013,08/09/2013,08/09/2013 07:16:00 PM,08/09/2013 07:16:00 PM,08/09/2013 07:17:46 PM,08/09/2013 07:19:49 PM,08/09/2013 07:22:22 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,No Merit,08/09/2013 07:30:28 PM,0 Block of 5TH ST,SF,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",132210305-E01 +103130132,85,10100305,Medical Incident,11/09/2010,11/09/2010,11/09/2010 09:55:32 AM,11/09/2010 09:57:50 AM,11/09/2010 09:58:22 AM,11/09/2010 09:59:42 AM,11/09/2010 10:01:28 AM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Gone on Arrival,11/09/2010 10:02:53 AM,RICO WY/AVILA ST,SF,94123,B04,16,3664,2,2,2,true,,1,MEDIC,1,4,2,Marina,"(37.8054985331263, -122.440328097497)",103130132-85 +160120747,KM08,16004685,Medical Incident,01/12/2016,01/12/2016,01/12/2016 08:22:50 AM,01/12/2016 08:24:34 AM,01/12/2016 08:25:19 AM,01/12/2016 08:25:57 AM,01/12/2016 08:30:03 AM,01/12/2016 08:45:43 AM,01/12/2016 09:05:54 AM,Code 2 Transport,01/12/2016 09:45:07 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160120747-KM08 +160091163,AM08,16003598,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:44:32 AM,01/09/2016 10:44:32 AM,01/09/2016 10:45:15 AM,01/09/2016 10:57:27 AM,01/09/2016 10:57:27 AM,01/09/2016 11:11:02 AM,01/09/2016 11:26:50 AM,Code 2 Transport,01/09/2016 11:55:16 AM,MISSION ST/HIGHLAND AV,San Francisco,94110,B06,32,5631,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Bernal Heights,"(37.7374062487517, -122.424040149847)",160091163-AM08 +130540304,AM18,13018362,Alarms,02/23/2013,02/23/2013,02/23/2013 08:06:40 PM,02/23/2013 08:09:15 PM,02/23/2013 08:18:40 PM,02/23/2013 08:19:27 PM,02/23/2013 08:44:30 PM,02/23/2013 09:01:22 PM,02/23/2013 09:09:33 PM,Code 2 Transport,02/23/2013 09:40:44 PM,2000 Block of LINCOLN WAY,SF,94122,B08,22,7425,3,3,3,false,Alarm,1,PRIVATE,4,8,4,Sunset/Parkside,"(37.7652361095237, -122.479927681939)",130540304-AM18 +131310008,68,13044090,Medical Incident,05/11/2013,05/10/2013,05/11/2013 12:23:59 AM,05/11/2013 12:24:49 AM,05/11/2013 12:25:31 AM,05/11/2013 12:25:39 AM,05/11/2013 12:30:39 AM,05/11/2013 12:52:04 AM,05/11/2013 01:01:58 AM,Code 2 Transport,05/11/2013 01:33:39 AM,2700 Block of JUDAH ST,SF,94122,B08,23,7541,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7611180469496, -122.491464026808)",131310008-68 +133280066,89,13111365,Medical Incident,11/24/2013,11/23/2013,11/24/2013 05:07:56 AM,11/24/2013 05:08:19 AM,11/24/2013 05:08:34 AM,11/24/2013 05:08:53 AM,11/24/2013 05:27:13 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Patient Declined Transport,11/24/2013 05:58:40 AM,2200 Block of 42ND AVE,SF,94116,B08,18,7635,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7447651974344, -122.500461812681)",133280066-89 +122180125,E24,12072261,Medical Incident,08/05/2012,08/05/2012,08/05/2012 09:23:44 AM,08/05/2012 09:24:46 AM,08/05/2012 09:25:33 AM,08/05/2012 09:26:37 AM,08/05/2012 09:27:46 AM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,No Merit,08/05/2012 09:28:51 AM,21ST ST/CASTRO ST,SF,94114,B06,24,5462,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7560929565677, -122.434546113447)",122180125-E24 +132250363,AM22,13076085,Medical Incident,08/13/2013,08/13/2013,08/13/2013 07:28:56 PM,08/13/2013 07:29:33 PM,08/13/2013 07:29:58 PM,08/13/2013 07:35:14 PM,08/13/2013 07:32:34 PM,08/13/2013 07:39:01 PM,08/13/2013 07:59:18 PM,Code 2 Transport,08/13/2013 08:21:52 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",132250363-AM22 +140790282,FB1,14026798,Medical Incident,03/20/2014,03/20/2014,03/20/2014 05:03:53 PM,03/20/2014 05:04:54 PM,03/20/2014 05:05:55 PM,03/20/2014 05:07:18 PM,03/20/2014 05:13:02 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/20/2014 05:35:59 PM,300 Block of THE EMBARCADERO,,94111,B01,13,903,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,5,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",140790282-FB1 +130450018,E11,13015119,Medical Incident,02/14/2013,02/13/2013,02/14/2013 01:51:50 AM,02/14/2013 01:53:40 AM,02/14/2013 01:54:04 AM,02/14/2013 01:55:34 AM,02/14/2013 02:02:01 AM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 02:07:32 AM,0 Block of 28TH ST,SF,94110,B06,11,5577,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7455620349301, -122.423383986336)",130450018-E11 +121930157,E44,12064227,Medical Incident,07/11/2012,07/11/2012,07/11/2012 11:19:44 AM,07/11/2012 11:21:37 AM,07/11/2012 11:21:58 AM,07/11/2012 11:22:44 AM,07/11/2012 11:26:07 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 11:51:24 AM,100 Block of LOEHR ST,SF,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.71262387882, -122.413673241478)",121930157-E44 +160310518,61,16012067,Medical Incident,01/31/2016,01/30/2016,01/31/2016 03:59:53 AM,01/31/2016 03:59:53 AM,01/31/2016 04:01:08 AM,01/31/2016 04:01:45 AM,01/31/2016 04:08:32 AM,01/31/2016 04:32:13 AM,01/31/2016 04:40:07 AM,Code 2 Transport,01/31/2016 05:38:59 AM,100 Block of MISSOURI ST,San Francisco,94107,B03,29,2414,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.764486265804, -122.396776680869)",160310518-61 +120550037,B04,12018043,Alarms,02/24/2012,02/23/2012,02/24/2012 04:36:07 AM,02/24/2012 04:37:05 AM,02/24/2012 04:37:13 AM,02/24/2012 04:38:43 AM,02/24/2012 04:41:09 AM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 04:58:59 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",120550037-B04 +130780353,E11,13026172,Medical Incident,03/19/2013,03/19/2013,03/19/2013 07:02:49 PM,03/19/2013 07:03:29 PM,03/19/2013 07:07:35 PM,03/19/2013 07:08:52 PM,03/19/2013 07:10:43 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 07:20:33 PM,2800 Block of MISSION ST,SF,94110,B06,11,5525,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7514438314246, -122.41829760412)",130780353-E11 +160193243,83,16007779,Medical Incident,01/19/2016,01/19/2016,01/19/2016 07:43:30 PM,01/19/2016 07:43:30 PM,01/19/2016 07:43:59 PM,01/19/2016 07:44:11 PM,01/19/2016 07:45:49 PM,01/19/2016 08:08:02 PM,01/19/2016 08:28:08 PM,Code 2 Transport,01/19/2016 08:56:35 PM,8TH ST/MINNA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7770264198259, -122.412616668185)",160193243-83 +160031260,52,16001151,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:25:46 AM,01/03/2016 11:27:49 AM,01/03/2016 11:28:39 AM,01/03/2016 11:28:52 AM,01/03/2016 11:37:06 AM,01/03/2016 11:52:09 AM,01/03/2016 11:57:43 AM,Code 3 Transport,01/03/2016 12:39:54 PM,0 Block of MIDDLE POINT RD,San Francisco,94124,B10,25,6556,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7357585640379, -122.379345378835)",160031260-52 +131560343,82,13053039,Medical Incident,06/05/2013,06/05/2013,06/05/2013 08:42:56 PM,06/05/2013 08:44:32 PM,06/05/2013 08:45:17 PM,06/05/2013 08:45:31 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,No Merit,06/05/2013 08:52:35 PM,1200 Block of 33RD AVE,SF,94122,B08,23,7537,3,3,3,true,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7638430783698, -122.492123436611)",131560343-82 +110490304,B02,11016280,Alarms,02/18/2011,02/18/2011,02/18/2011 05:35:39 PM,02/18/2011 05:37:58 PM,02/18/2011 05:38:04 PM,02/18/2011 05:39:21 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Fire,02/18/2011 05:42:33 PM,800 Block of 14TH ST,SF,94114,B05,6,5212,3,3,3,false,,1,CHIEF,2,5,8,Castro/Upper Market,"(37.7675070758139, -122.43173994227)",110490304-B02 +102370176,T02,10074712,Structure Fire,08/25/2010,08/25/2010,08/25/2010 11:33:50 AM,08/25/2010 11:36:09 AM,08/25/2010 11:36:34 AM,08/25/2010 11:37:30 AM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 11:38:38 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,TRUCK,12,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",102370176-T02 +112710322,E07,11089647,Medical Incident,09/28/2011,09/28/2011,09/28/2011 04:12:24 PM,09/28/2011 04:12:24 PM,09/28/2011 04:12:24 PM,04/25/2016 02:02:26 PM,09/28/2011 04:27:50 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Patient Declined Transport,09/28/2011 04:31:19 PM,2800 Block of 24TH ST,SF,94110,B06,9,5531,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7528787651491, -122.408664686116)",112710322-E07 +123030352,E01,12100643,Medical Incident,10/29/2012,10/29/2012,10/29/2012 04:59:15 PM,10/29/2012 05:00:15 PM,10/29/2012 05:00:36 PM,10/29/2012 05:01:40 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 05:05:01 PM,0 Block of GOLDEN GATE AVE,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.782141624229, -122.411246661611)",123030352-E01 +140850371,T13,14028797,Alarms,03/26/2014,03/26/2014,03/26/2014 11:03:58 PM,03/26/2014 11:05:27 PM,03/26/2014 11:07:37 PM,03/26/2014 11:09:36 PM,03/26/2014 11:12:04 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/26/2014 11:16:49 PM,0 Block of MARKET ST,SAN FRANCISCO,94105,B03,13,2115,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",140850371-T13 +112870171,T48,11095130,Administrative,10/14/2011,10/14/2011,10/14/2011 10:54:52 AM,10/14/2011 10:55:02 AM,10/14/2011 10:55:20 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 10:56:10 AM,800 Block of AVENUE D,TI,94130,B03,48,2931,3,3,3,false,,1,TRUCK,1,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",112870171-T48 +112080230,75,11068724,Medical Incident,07/27/2011,07/27/2011,07/27/2011 03:28:43 PM,07/27/2011 03:31:37 PM,07/27/2011 03:32:01 PM,07/27/2011 03:32:24 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 03:39:26 PM,1700 Block of 40TH AVE,SF,94122,B08,18,7624,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7541785301676, -122.498968357512)",112080230-75 +121760116,B02,12058445,Medical Incident,06/24/2012,06/23/2012,06/24/2012 07:36:21 AM,06/24/2012 07:36:25 AM,06/24/2012 07:36:50 AM,06/24/2012 07:38:10 AM,06/24/2012 07:41:19 AM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/24/2012 07:43:43 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,E,E,3,false,Non Life-threatening,1,CHIEF,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",121760116-B02 +132650329,AM18,13090026,Medical Incident,09/22/2013,09/22/2013,09/22/2013 07:06:37 PM,09/22/2013 07:07:04 PM,09/22/2013 07:08:11 PM,09/22/2013 07:08:51 PM,09/22/2013 07:12:46 PM,09/22/2013 07:23:31 PM,09/22/2013 07:46:06 PM,Code 2 Transport,09/22/2013 08:25:36 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",132650329-AM18 +160320779,61,16012481,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:39:44 AM,02/01/2016 08:39:44 AM,02/01/2016 08:51:26 AM,02/01/2016 08:51:34 AM,02/01/2016 09:02:33 AM,02/01/2016 09:28:51 AM,02/01/2016 09:42:13 AM,Other,02/01/2016 10:03:00 AM,LEAVENWORTH ST/WASHINGTON ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7938920823793, -122.416291702526)",160320779-61 +113450013,RA48,11114312,Medical Incident,12/11/2011,12/10/2011,12/11/2011 12:31:32 AM,12/11/2011 12:32:42 AM,12/11/2011 12:33:41 AM,12/11/2011 12:36:51 AM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/11/2011 01:08:28 AM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,false,,1,MEDIC,3,None,6,Treasure Island,"(37.8299718852834, -122.374994903359)",113450013-RA48 +130920072,E06,13030718,Gas Leak (Natural and LP Gases),04/02/2013,04/02/2013,04/02/2013 08:07:52 AM,04/02/2013 08:10:00 AM,04/02/2013 08:10:39 AM,04/02/2013 08:11:30 AM,04/02/2013 08:14:18 AM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,Other,04/02/2013 08:16:17 AM,CASTRO ST/MARKET ST,SF,94114,B05,6,5233,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",130920072-E06 +133330105,T01,13112893,Alarms,11/29/2013,11/29/2013,11/29/2013 10:36:28 AM,11/29/2013 10:37:37 AM,11/29/2013 10:37:46 AM,11/29/2013 10:39:08 AM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/29/2013 10:41:16 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7854659679151, -122.405582629186)",133330105-T01 +123580030,T01,12119716,Alarms,12/23/2012,12/22/2012,12/23/2012 02:35:47 AM,12/23/2012 02:35:48 AM,12/23/2012 02:36:35 AM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 02:39:01 AM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",123580030-T01 +120910036,E05,12029995,Medical Incident,03/31/2012,03/30/2012,03/31/2012 01:51:11 AM,03/31/2012 01:51:22 AM,03/31/2012 01:52:39 AM,03/31/2012 01:54:23 AM,03/31/2012 01:55:37 AM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,Other,03/31/2012 01:58:11 AM,MCALLISTER ST/LAGUNA ST,SF,94102,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7792579701506, -122.426828557488)",120910036-E05 +111090013,E12,11035864,Medical Incident,04/19/2011,04/18/2011,04/19/2011 01:50:32 AM,04/19/2011 01:52:26 AM,04/19/2011 01:53:31 AM,04/19/2011 01:54:58 AM,04/19/2011 01:57:37 AM,04/25/2016 02:05:02 PM,04/25/2016 02:05:02 PM,Other,04/19/2011 02:02:46 AM,600 Block of IRVING ST,SF,94122,B08,22,7332,3,3,3,true,,1,ENGINE,2,8,5,Inner Sunset,"(37.7640524831749, -122.464704638953)",111090013-E12 +110350274,B06,11011558,Traffic Collision,02/04/2011,02/04/2011,02/04/2011 04:37:51 PM,02/04/2011 04:37:51 PM,02/04/2011 04:38:18 PM,02/04/2011 04:40:31 PM,02/04/2011 04:44:41 PM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Other,02/04/2011 04:48:55 PM,0 Block of AMBER DR,SF,94131,B06,26,8166,3,3,3,false,,1,CHIEF,3,6,8,Noe Valley,"(37.7462761269097, -122.444743384409)",110350274-B06 +160412015,63,16016478,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:52:59 PM,02/10/2016 01:53:12 PM,02/10/2016 01:53:33 PM,02/10/2016 01:53:45 PM,02/10/2016 02:01:55 PM,02/10/2016 02:19:15 PM,02/10/2016 02:35:32 PM,Code 2 Transport,02/10/2016 02:51:45 PM,100 Block of LAKE MERCED HILL SOU ST,San Francisco,94132,B08,19,8764,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7086460122135, -122.483547793251)",160412015-63 +130310218,E03,13010590,Medical Incident,01/31/2013,01/31/2013,01/31/2013 01:00:54 PM,01/31/2013 01:02:56 PM,01/31/2013 01:03:12 PM,01/31/2013 01:04:54 PM,01/31/2013 01:07:51 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 01:14:15 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",130310218-E03 +111360048,E08,11045174,Traffic Collision,05/16/2011,05/15/2011,05/16/2011 05:41:37 AM,05/16/2011 05:45:11 AM,05/16/2011 05:46:49 AM,05/16/2011 05:48:23 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 05:54:07 AM,7TH ST/BRYANT ST,SF,94103,B03,8,2311,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7742810407569, -122.404748493756)",111360048-E08 +130900128,KM14,13030067,Medical Incident,03/31/2013,03/31/2013,03/31/2013 10:26:16 AM,03/31/2013 10:28:13 AM,03/31/2013 10:28:43 AM,03/31/2013 10:30:10 AM,03/31/2013 10:44:35 AM,03/31/2013 11:07:29 AM,03/31/2013 11:19:07 AM,Code 2 Transport,03/31/2013 11:54:02 AM,0 Block of MOULTON ST,SF,94123,B04,16,3444,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7996785804117, -122.433486264039)",130900128-KM14 +123530094,T08,12118036,Medical Incident,12/18/2012,12/18/2012,12/18/2012 09:04:48 AM,12/18/2012 09:05:21 AM,12/18/2012 09:05:49 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 09:07:02 AM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",123530094-T08 +111720229,62,11056770,Medical Incident,06/21/2011,06/21/2011,06/21/2011 02:22:32 PM,06/21/2011 02:22:32 PM,06/21/2011 02:22:32 PM,06/21/2011 02:40:18 PM,06/21/2011 03:02:46 PM,06/21/2011 03:11:15 PM,06/21/2011 03:45:13 PM,Code 2 Transport,06/21/2011 04:05:40 PM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,2,2,2,true,,1,MEDIC,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",111720229-62 +120440202,72,12014716,Medical Incident,02/13/2012,02/13/2012,02/13/2012 02:50:42 PM,02/13/2012 02:51:48 PM,02/13/2012 02:53:44 PM,02/13/2012 02:53:58 PM,02/13/2012 03:00:34 PM,02/13/2012 03:26:54 PM,02/13/2012 03:34:20 PM,Code 2 Transport,02/13/2012 03:58:14 PM,2400 Block of HARRISON ST,SF,94110,B06,7,545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7582329952396, -122.412355500109)",120440202-72 +140730034,84,14024526,Medical Incident,03/14/2014,03/13/2014,03/14/2014 04:35:56 AM,03/14/2014 04:37:25 AM,03/14/2014 04:37:49 AM,03/14/2014 04:38:05 AM,03/14/2014 04:49:04 AM,03/14/2014 05:14:11 AM,03/14/2014 05:40:26 AM,Code 2 Transport,03/14/2014 06:24:42 AM,1000 Block of CALIFORNIA ST,SAN FRANCISCO,94108,B01,41,1418,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7918323962484, -122.411275585139)",140730034-84 +131150323,E03,13038909,Medical Incident,04/25/2013,04/25/2013,04/25/2013 09:56:44 PM,04/25/2013 09:58:05 PM,04/25/2013 09:58:26 PM,04/25/2013 09:59:15 PM,04/25/2013 10:01:31 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 10:04:00 PM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",131150323-E03 +121140084,E17,12037767,Medical Incident,04/23/2012,04/23/2012,04/23/2012 08:22:08 AM,04/23/2012 08:23:00 AM,04/23/2012 08:23:16 AM,04/23/2012 08:23:59 AM,04/23/2012 08:26:34 AM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 08:33:29 AM,1300 Block of QUESADA AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7295945473081, -122.384963446158)",121140084-E17 +113410130,KM12,11113001,Medical Incident,12/07/2011,12/07/2011,12/07/2011 09:56:21 AM,12/07/2011 09:56:40 AM,12/07/2011 09:57:21 AM,12/07/2011 09:58:00 AM,12/07/2011 10:01:56 AM,12/07/2011 10:19:47 AM,12/07/2011 10:38:43 AM,Code 2 Transport,12/07/2011 11:07:43 AM,400 Block of ARCH ST,SF,94132,B09,33,8444,3,2,2,false,,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",113410130-KM12 +160780149,73,16030860,Medical Incident,03/18/2016,03/17/2016,03/18/2016 01:05:08 AM,03/18/2016 01:05:08 AM,03/18/2016 01:37:41 AM,03/18/2016 01:37:50 AM,03/18/2016 01:43:48 AM,03/18/2016 01:51:01 AM,03/18/2016 01:59:17 AM,Code 2 Transport,03/18/2016 02:42:19 AM,VAN NESS AV/GROVE ST,San Francisco,94102,B02,36,3165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",160780149-73 +130690064,68,13022947,Medical Incident,03/10/2013,03/09/2013,03/10/2013 04:12:58 AM,03/10/2013 04:15:44 AM,03/10/2013 04:16:02 AM,03/10/2013 04:16:10 AM,03/10/2013 04:20:44 AM,03/10/2013 04:48:40 AM,03/10/2013 05:03:47 AM,Other,03/10/2013 05:28:48 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,2,3,3,false,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",130690064-68 +160130372,70,16005046,Traffic Collision,01/13/2016,01/12/2016,01/13/2016 04:36:12 AM,01/13/2016 04:39:44 AM,01/13/2016 04:42:28 AM,01/13/2016 04:42:40 AM,01/13/2016 04:51:54 AM,01/13/2016 05:43:29 AM,01/13/2016 05:52:13 AM,Code 2 Transport,01/13/2016 06:11:01 AM,280NB MARIPOSA OF/MARIPOSA ST,San Francisco,94107,B03,25,2612,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,10,Potrero Hill,"(37.7640645231086, -122.392134719451)",160130372-70 +131190220,E03,13040070,Medical Incident,04/29/2013,04/29/2013,04/29/2013 01:35:14 PM,04/29/2013 01:36:10 PM,04/29/2013 01:38:06 PM,04/25/2016 01:53:03 PM,04/29/2013 01:39:09 PM,04/25/2016 01:53:03 PM,04/25/2016 01:53:03 PM,Other,04/29/2013 01:54:13 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",131190220-E03 +111480274,65,11049172,Medical Incident,05/28/2011,05/28/2011,05/28/2011 07:16:36 PM,05/28/2011 07:17:43 PM,05/28/2011 07:24:15 PM,05/28/2011 07:39:04 PM,05/28/2011 07:48:38 PM,05/28/2011 08:01:38 PM,05/28/2011 08:12:58 PM,Code 2 Transport,05/28/2011 08:30:23 PM,0 Block of JONES ST,SF,94102,B03,1,1455,1,1,2,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",111480274-65 +120900083,E18,12029712,Medical Incident,03/30/2012,03/30/2012,03/30/2012 08:18:22 AM,03/30/2012 08:20:04 AM,03/30/2012 08:20:15 AM,03/30/2012 08:22:33 AM,03/30/2012 08:27:32 AM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,Other,03/30/2012 08:31:04 AM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7444820263748, -122.506894604858)",120900083-E18 +110680452,54,11022532,Medical Incident,03/09/2011,03/09/2011,03/09/2011 10:38:37 PM,03/09/2011 10:39:03 PM,03/09/2011 10:39:25 PM,03/09/2011 10:40:26 PM,03/09/2011 10:48:55 PM,03/09/2011 11:23:33 PM,03/09/2011 11:34:59 PM,Code 2 Transport,03/10/2011 12:02:50 AM,300 Block of LONDON ST,SF,94112,B09,43,6127,2,2,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7235683507145, -122.434680216191)",110680452-54 +130580403,67,13019637,Medical Incident,02/27/2013,02/27/2013,02/27/2013 10:21:26 PM,02/27/2013 10:23:14 PM,02/27/2013 10:24:22 PM,02/27/2013 10:25:02 PM,02/27/2013 10:38:44 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,No Merit,02/27/2013 10:48:08 PM,400 Block of 10TH AVE,SF,94118,B07,31,7135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7798565842319, -122.468564165185)",130580403-67 +111660366,B01,11054952,Alarms,06/15/2011,06/15/2011,06/15/2011 10:31:57 PM,06/15/2011 10:33:30 PM,06/15/2011 10:33:51 PM,06/15/2011 10:36:27 PM,06/15/2011 10:41:05 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Fire,06/15/2011 10:42:12 PM,100 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,false,,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7933796204253, -122.398184018556)",111660366-B01 +112110259,94,11069703,Medical Incident,07/30/2011,07/30/2011,07/30/2011 04:52:37 PM,07/30/2011 04:54:28 PM,07/30/2011 04:56:31 PM,07/30/2011 04:56:43 PM,07/30/2011 05:09:25 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,No Merit,07/30/2011 05:14:26 PM,3900 Block of MISSION ST,SF,94112,B06,32,5632,2,2,2,true,,1,MEDIC,1,6,8,Bernal Heights,"(37.7348739744369, -122.425329625953)",112110259-94 +131000368,81,13033764,Medical Incident,04/10/2013,04/10/2013,04/10/2013 08:51:58 PM,04/10/2013 08:53:44 PM,04/10/2013 08:54:17 PM,04/10/2013 08:54:23 PM,04/10/2013 09:05:46 PM,04/10/2013 09:26:25 PM,04/10/2013 09:31:07 PM,Code 2 Transport,04/10/2013 09:57:11 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",131000368-81 +113110144,E05,11103309,Medical Incident,11/07/2011,11/07/2011,11/07/2011 10:41:25 AM,11/07/2011 10:44:22 AM,11/07/2011 10:44:36 AM,11/07/2011 10:45:34 AM,11/07/2011 10:47:35 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 10:53:45 AM,1300 Block of PIERCE ST,SF,94115,B05,5,3647,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",113110144-E05 +131690340,T15,13057504,Other,06/18/2013,06/18/2013,06/18/2013 06:25:39 PM,06/18/2013 06:28:57 PM,06/18/2013 06:29:09 PM,06/18/2013 06:30:05 PM,06/18/2013 06:32:46 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 06:44:59 PM,4500 Block of MISSION ST,SF,94112,B09,43,6116,3,3,3,false,Alarm,1,TRUCK,3,9,11,Excelsior,"(37.7254403539192, -122.434144744673)",131690340-T15 +160300810,85,16011703,Medical Incident,01/30/2016,01/29/2016,01/30/2016 07:52:59 AM,01/30/2016 07:54:23 AM,01/30/2016 08:13:29 AM,01/30/2016 08:13:39 AM,01/30/2016 08:17:34 AM,01/30/2016 08:22:07 AM,01/30/2016 08:46:38 AM,Code 3 Transport,01/30/2016 09:16:11 AM,MISSION ST/HARRINGTON ST,San Francisco,94112,B09,43,6116,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.725175477117, -122.434425695768)",160300810-85 +122600292,96,12086043,Medical Incident,09/16/2012,09/16/2012,09/16/2012 08:28:16 PM,09/16/2012 08:29:48 PM,09/16/2012 08:29:54 PM,09/16/2012 08:30:44 PM,09/16/2012 08:42:42 PM,09/16/2012 08:57:43 PM,09/16/2012 09:10:50 PM,Code 2 Transport,09/16/2012 09:52:58 PM,500 Block of 37TH AVE,SF,94121,B07,34,7255,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7785448312332, -122.497454025563)",122600292-96 +140320276,54,14010925,Medical Incident,02/01/2014,02/01/2014,02/01/2014 05:20:04 PM,02/01/2014 05:21:05 PM,02/01/2014 05:21:52 PM,02/01/2014 05:22:45 PM,02/01/2014 05:36:52 PM,02/01/2014 05:55:18 PM,02/01/2014 06:09:40 PM,Code 2 Transport,02/01/2014 06:33:09 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",140320276-54 +160031752,89,16001201,Medical Incident,01/03/2016,01/03/2016,01/03/2016 02:24:04 PM,01/03/2016 02:27:28 PM,01/03/2016 02:27:39 PM,01/03/2016 02:28:29 PM,01/03/2016 02:31:26 PM,01/03/2016 02:53:36 PM,01/03/2016 03:08:31 PM,Code 2 Transport,01/03/2016 03:52:57 PM,1200 Block of OCEAN AV,San Francisco,94112,B09,15,8472,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7238590120011, -122.455615861538)",160031752-89 +132820278,89,13096038,Medical Incident,10/09/2013,10/09/2013,10/09/2013 04:36:54 PM,10/09/2013 04:37:28 PM,10/09/2013 04:38:12 PM,10/09/2013 04:38:34 PM,10/09/2013 04:45:24 PM,10/09/2013 04:54:54 PM,10/09/2013 05:10:04 PM,Code 2 Transport,10/09/2013 05:47:51 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",132820278-89 +160262792,59,16010386,Medical Incident,01/26/2016,01/26/2016,01/26/2016 05:06:17 PM,01/26/2016 05:07:26 PM,01/26/2016 05:07:43 PM,01/26/2016 05:07:49 PM,01/26/2016 05:13:03 PM,01/26/2016 05:41:04 PM,01/26/2016 05:46:57 PM,Code 2 Transport,01/26/2016 06:31:14 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160262792-59 +160612792,KM12,16024427,Medical Incident,03/01/2016,03/01/2016,03/01/2016 06:15:37 PM,03/01/2016 06:16:07 PM,03/01/2016 06:17:19 PM,03/01/2016 06:18:39 PM,03/01/2016 06:21:33 PM,03/01/2016 06:35:09 PM,03/01/2016 07:08:49 PM,Code 2 Transport,03/01/2016 07:50:25 PM,BAY ST/BUCHANAN ST,San Francisco,94123,B04,16,3446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8030568840333, -122.433327957472)",160612792-KM12 +160762828,57,16030245,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:52:24 PM,03/16/2016 04:52:24 PM,03/16/2016 04:52:37 PM,03/16/2016 04:52:50 PM,03/16/2016 05:08:52 PM,03/16/2016 05:13:33 PM,03/16/2016 05:33:13 PM,Code 2 Transport,03/16/2016 06:19:58 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160762828-57 +133030030,82,13102820,Medical Incident,10/30/2013,10/29/2013,10/30/2013 04:19:40 AM,10/30/2013 04:21:24 AM,10/30/2013 04:21:45 AM,10/30/2013 04:21:51 AM,10/30/2013 04:31:02 AM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/30/2013 04:33:17 AM,900 Block of POWELL ST,SF,94108,B01,2,1355,2,2,2,false,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",133030030-82 +160753187,KM05,16029843,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:32:07 PM,03/15/2016 06:33:36 PM,03/15/2016 06:34:45 PM,03/15/2016 06:35:38 PM,03/15/2016 06:47:02 PM,03/15/2016 07:00:32 PM,03/15/2016 07:10:28 PM,Code 2 Transport,03/15/2016 07:41:01 PM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7758850858315, -122.430365346492)",160753187-KM05 +132100311,KM02,13071132,Medical Incident,07/29/2013,07/29/2013,07/29/2013 05:46:43 PM,07/29/2013 05:48:04 PM,07/29/2013 05:49:03 PM,07/29/2013 05:49:56 PM,07/29/2013 05:54:54 PM,07/29/2013 06:12:11 PM,07/29/2013 06:24:03 PM,Code 2 Transport,07/29/2013 06:47:23 PM,KEARNY ST/BUSH ST,SF,94104,B01,13,1235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",132100311-KM02 +123360225,E03,12111759,Medical Incident,12/01/2012,12/01/2012,12/01/2012 02:30:59 PM,12/01/2012 02:33:50 PM,12/01/2012 02:41:06 PM,12/01/2012 02:42:14 PM,12/01/2012 02:43:57 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 02:59:36 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",123360225-E03 +132820289,T05,13096046,Structure Fire,10/09/2013,10/09/2013,10/09/2013 05:00:47 PM,10/09/2013 05:00:47 PM,10/09/2013 05:01:08 PM,10/09/2013 05:02:08 PM,10/09/2013 05:03:26 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/09/2013 05:05:17 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",132820289-T05 +121270369,77,12042443,Medical Incident,05/06/2012,05/06/2012,05/06/2012 11:46:09 PM,05/06/2012 11:47:11 PM,05/06/2012 11:47:20 PM,05/06/2012 11:47:27 PM,05/06/2012 11:57:03 PM,05/07/2012 12:15:09 AM,05/07/2012 12:25:48 AM,Code 2 Transport,05/07/2012 01:02:33 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",121270369-77 +160200070,70,16007835,Medical Incident,01/20/2016,01/19/2016,01/20/2016 12:31:24 AM,01/20/2016 12:32:22 AM,01/20/2016 12:32:29 AM,01/20/2016 12:33:14 AM,01/20/2016 12:37:57 AM,01/20/2016 01:05:56 AM,01/20/2016 01:12:36 AM,Code 2 Transport,01/20/2016 01:35:46 AM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",160200070-70 +140420166,77,14014258,Medical Incident,02/11/2014,02/11/2014,02/11/2014 11:21:22 AM,02/11/2014 11:23:32 AM,02/11/2014 11:23:56 AM,02/11/2014 11:24:14 AM,02/11/2014 11:35:58 AM,02/11/2014 12:13:50 PM,02/11/2014 12:47:08 PM,Code 2 Transport,02/11/2014 01:24:23 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",140420166-77 +130970041,94,13032415,Medical Incident,04/07/2013,04/06/2013,04/07/2013 02:16:35 AM,04/07/2013 02:17:04 AM,04/07/2013 02:17:25 AM,04/07/2013 02:17:34 AM,04/07/2013 02:25:53 AM,04/07/2013 02:40:18 AM,04/07/2013 02:45:51 AM,Code 2 Transport,04/07/2013 02:59:53 AM,29TH ST/CHURCH ST,SF,94131,B06,11,5563,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7436995806296, -122.42667038152)",130970041-94 +121470320,89,12048920,Traffic Collision,05/26/2012,05/26/2012,05/26/2012 09:56:13 PM,05/26/2012 09:58:49 PM,05/26/2012 09:59:03 PM,05/26/2012 09:59:17 PM,05/26/2012 10:02:07 PM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/26/2012 10:46:39 PM,STEINER ST/HAIGHT ST,SF,94117,B05,6,3633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7718972649576, -122.432092300663)",121470320-89 +111430099,T17,11047463,Outside Fire,05/23/2011,05/23/2011,05/23/2011 09:16:52 AM,05/23/2011 09:19:14 AM,05/23/2011 09:19:45 AM,05/23/2011 09:20:07 AM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/23/2011 09:34:28 AM,ARELIOUS WALKER DR/INNES AV,SF,94124,B10,25,6663,3,3,3,false,,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7309360720471, -122.373890366307)",111430099-T17 +132570229,E01,13086942,Medical Incident,09/14/2013,09/14/2013,09/14/2013 02:38:20 PM,09/14/2013 02:39:44 PM,09/14/2013 02:40:02 PM,09/14/2013 02:41:44 PM,09/14/2013 02:44:25 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 02:48:19 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",132570229-E01 +160853641,78,16033962,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:55:53 PM,03/25/2016 08:55:53 PM,03/25/2016 08:56:21 PM,03/25/2016 08:56:33 PM,03/25/2016 09:05:53 PM,03/25/2016 09:25:49 PM,03/25/2016 09:30:24 PM,Code 2 Transport,03/25/2016 10:11:50 PM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",160853641-78 +113030314,E31,11100664,Traffic Collision,10/30/2011,10/30/2011,10/30/2011 05:01:28 PM,10/30/2011 05:02:19 PM,10/30/2011 05:02:48 PM,10/30/2011 05:03:58 PM,10/30/2011 05:06:31 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 05:08:24 PM,FUNSTON AV/FULTON ST,SF,94118,B07,31,7144,3,3,3,false,,1,ENGINE,1,7,1,Golden Gate Park,"(37.7731619822657, -122.471240066496)",113030314-E31 +160862167,81,16034218,Medical Incident,03/26/2016,03/26/2016,03/26/2016 03:01:40 PM,03/26/2016 03:02:49 PM,03/26/2016 03:04:07 PM,03/26/2016 03:04:20 PM,03/26/2016 03:16:15 PM,03/26/2016 03:29:59 PM,03/26/2016 03:45:33 PM,Code 2 Transport,03/26/2016 05:01:59 PM,PERU AV/BURROWS ST,San Francisco,94134,B09,43,6153,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Excelsior,"(37.7239441939341, -122.422830067938)",160862167-81 +132650164,66,13089877,Medical Incident,09/22/2013,09/22/2013,09/22/2013 11:20:09 AM,09/22/2013 11:20:38 AM,09/22/2013 11:24:30 AM,09/22/2013 11:24:52 AM,09/22/2013 11:36:03 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Patient Declined Transport,09/22/2013 12:07:22 PM,300 Block of 5TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7820265124689, -122.463349690466)",132650164-66 +140640055,81,14021539,Medical Incident,03/05/2014,03/04/2014,03/05/2014 07:56:29 AM,03/05/2014 07:58:30 AM,03/05/2014 08:01:32 AM,03/05/2014 08:01:36 AM,03/05/2014 08:20:41 AM,03/05/2014 08:45:10 AM,03/05/2014 09:07:41 AM,Code 2 Transport,03/05/2014 09:47:41 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",140640055-81 +102520166,T06,10079609,Medical Incident,09/09/2010,09/09/2010,09/09/2010 12:39:19 PM,09/09/2010 12:39:37 PM,09/09/2010 12:39:49 PM,09/09/2010 12:40:49 PM,09/09/2010 12:43:05 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/09/2010 12:51:08 PM,0 Block of PEARL ST,SF,94103,B02,36,5126,2,2,2,false,,1,TRUCK,1,2,8,Mission,"(37.7702165874997, -122.42393258709)",102520166-T06 +121810323,KM09,12060387,Medical Incident,06/29/2012,06/29/2012,06/29/2012 08:00:22 PM,06/29/2012 08:00:49 PM,06/29/2012 08:01:42 PM,06/29/2012 08:03:56 PM,06/29/2012 08:03:14 PM,06/29/2012 08:34:02 PM,06/29/2012 08:37:30 PM,Code 2 Transport,06/29/2012 09:12:37 PM,0 Block of STANYAN BLVD,SF,94118,B07,10,4563,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Lone Mountain/USF,"(37.7806293517594, -122.456219132434)",121810323-KM09 +160903345,AM20,16035851,Medical Incident,03/30/2016,03/30/2016,03/30/2016 07:05:33 PM,03/30/2016 07:05:33 PM,03/30/2016 07:08:15 PM,03/30/2016 07:08:48 PM,03/30/2016 07:21:43 PM,03/30/2016 07:50:01 PM,03/30/2016 08:03:55 PM,Code 2 Transport,03/30/2016 08:41:29 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160903345-AM20 +140640221,T02,14021675,Alarms,03/05/2014,03/05/2014,03/05/2014 03:19:07 PM,03/05/2014 03:19:08 PM,03/05/2014 03:19:47 PM,03/05/2014 03:20:50 PM,03/05/2014 03:22:01 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Fire,03/05/2014 03:22:54 PM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.7980497141877, -122.406829909619)",140640221-T02 +130480057,67,13016275,Medical Incident,02/17/2013,02/16/2013,02/17/2013 02:52:23 AM,02/17/2013 02:52:24 AM,02/17/2013 02:52:56 AM,02/17/2013 02:53:08 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 03:00:16 AM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,E,E,3,false,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7209580935201, -122.387166280374)",130480057-67 +113330158,T17,11110290,Structure Fire,11/29/2011,11/29/2011,11/29/2011 12:22:26 PM,11/29/2011 12:22:35 PM,11/29/2011 12:22:48 PM,11/29/2011 12:24:36 PM,11/29/2011 12:27:11 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 12:34:15 PM,100 Block of WHITNEY YOUNG CIR,SF,94124,B10,17,1100,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7360363462118, -122.385908786754)",113330158-T17 +112870397,60,11095330,Medical Incident,10/14/2011,10/14/2011,10/14/2011 08:55:29 PM,10/14/2011 08:57:22 PM,10/14/2011 08:57:40 PM,10/14/2011 08:57:51 PM,10/14/2011 09:02:39 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Patient Declined Transport,10/14/2011 09:05:49 PM,600 Block of COLUMBUS AVE,SF,94133,B01,28,1334,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8006156213687, -122.410534621364)",112870397-60 +130480345,E37,13016525,Medical Incident,02/17/2013,02/17/2013,02/17/2013 09:00:44 PM,02/17/2013 09:02:36 PM,02/17/2013 09:02:48 PM,02/17/2013 09:03:56 PM,02/17/2013 09:05:36 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 09:14:52 PM,500 Block of TEXAS ST,SF,94107,B10,37,2541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7592223045204, -122.395164170538)",130480345-E37 +160482013,AM10,16019357,Medical Incident,02/17/2016,02/17/2016,02/17/2016 01:31:25 PM,02/17/2016 01:32:08 PM,02/17/2016 01:32:18 PM,02/17/2016 01:35:18 PM,02/17/2016 01:42:16 PM,02/17/2016 01:57:07 PM,02/17/2016 02:24:48 PM,Code 2 Transport,02/17/2016 02:49:59 PM,200 Block of 3RD ST,San Francisco,94105,B03,1,2177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7846604121968, -122.39991472916)",160482013-AM10 +122430114,E38,12080301,Traffic Collision,08/30/2012,08/30/2012,08/30/2012 10:25:36 AM,08/30/2012 10:26:09 AM,08/30/2012 10:26:23 AM,08/30/2012 10:26:39 AM,08/30/2012 10:29:17 AM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/30/2012 10:32:11 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",122430114-E38 +113110157,T03,11103320,Medical Incident,11/07/2011,11/07/2011,11/07/2011 11:22:49 AM,11/07/2011 11:23:37 AM,11/07/2011 11:23:59 AM,11/07/2011 11:24:13 AM,11/07/2011 11:28:41 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 11:32:52 AM,500 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,false,,1,TRUCK,1,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",113110157-T03 +160413251,76,16016599,Medical Incident,02/10/2016,02/10/2016,02/10/2016 07:03:35 PM,02/10/2016 07:04:43 PM,02/10/2016 07:05:12 PM,02/10/2016 07:05:21 PM,02/10/2016 07:14:48 PM,02/10/2016 07:30:32 PM,02/10/2016 07:42:14 PM,Code 2 Transport,02/10/2016 08:20:07 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160413251-76 +121840138,AM08,12061255,Medical Incident,07/02/2012,07/02/2012,07/02/2012 11:41:40 AM,07/02/2012 11:45:27 AM,07/02/2012 11:46:36 AM,07/02/2012 11:47:04 AM,07/02/2012 11:52:45 AM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Unable to Locate,07/02/2012 11:56:45 AM,CORTLAND AV/BAYSHORE BL,SF,94124,B10,42,6374,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",121840138-AM08 +111340304,AM04,11044675,Medical Incident,05/14/2011,05/14/2011,05/14/2011 08:37:58 PM,05/14/2011 08:39:49 PM,05/14/2011 08:41:14 PM,04/25/2016 02:04:38 PM,05/14/2011 08:49:25 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,No Merit,05/14/2011 08:58:45 PM,0 Block of OFARRELL ST,SF,94108,B01,1,1321,1,1,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.786735734759, -122.405883301385)",111340304-AM04 +112860174,KM15,11094725,Medical Incident,10/13/2011,10/13/2011,10/13/2011 11:19:45 AM,10/13/2011 11:21:11 AM,10/13/2011 11:21:42 AM,10/13/2011 11:24:06 AM,10/13/2011 11:34:03 AM,10/13/2011 11:50:09 AM,04/25/2016 02:02:11 PM,Code 2 Transport,10/13/2011 12:54:18 PM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,false,,1,PRIVATE,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",112860174-KM15 +102610094,E03,10082430,Medical Incident,09/18/2010,09/17/2010,09/18/2010 06:43:25 AM,09/18/2010 06:45:51 AM,09/18/2010 06:46:37 AM,09/18/2010 06:49:08 AM,09/18/2010 06:50:43 AM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,Other,09/18/2010 07:01:04 AM,900 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.787277154617, -122.416825199786)",102610094-E03 +160130420,60,16005060,Medical Incident,01/13/2016,01/12/2016,01/13/2016 05:28:40 AM,01/13/2016 05:28:40 AM,01/13/2016 05:28:40 AM,01/13/2016 05:28:40 AM,01/13/2016 05:28:40 AM,01/13/2016 05:41:05 AM,01/13/2016 06:04:42 AM,Code 2 Transport,01/13/2016 06:29:58 AM,SCOTT ST/MARINA BL,San Francisco,94123,B99,16,4111,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8057862730196, -122.442209784032)",160130420-60 +122090218,E32,12069472,Alarms,07/27/2012,07/27/2012,07/27/2012 03:31:36 PM,07/27/2012 03:32:53 PM,07/27/2012 03:33:23 PM,07/27/2012 03:35:58 PM,07/27/2012 03:38:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 03:41:24 PM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",122090218-E32 +130060240,B02,13002119,Structure Fire,01/06/2013,01/06/2013,01/06/2013 05:20:24 PM,01/06/2013 05:21:53 PM,01/06/2013 05:22:02 PM,01/06/2013 05:24:09 PM,01/06/2013 05:25:48 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 05:33:46 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Alarm,1,CHIEF,6,3,6,South of Market,"(37.7795675906982, -122.407474134289)",130060240-B02 +113270191,RS2,11108568,Traffic Collision,11/23/2011,11/23/2011,11/23/2011 01:44:51 PM,11/23/2011 01:46:42 PM,11/23/2011 01:47:05 PM,11/23/2011 01:47:51 PM,11/23/2011 01:50:09 PM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 01:53:46 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,false,,1,RESCUE SQUAD,1,2,9,Mission,"(37.7677331022924, -122.415606951318)",113270191-RS2 +160582190,57,16023157,Traffic Collision,02/27/2016,02/27/2016,02/27/2016 03:08:08 PM,02/27/2016 03:09:54 PM,02/27/2016 03:11:22 PM,02/27/2016 03:12:41 PM,02/27/2016 03:13:35 PM,02/27/2016 04:00:21 PM,02/27/2016 04:19:43 PM,Code 2 Transport,02/27/2016 04:52:49 PM,SPEAR ST/HARRISON ST,San Francisco,94105,B03,35,2113,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7888377778921, -122.389428941783)",160582190-57 +130530190,E01,13017913,Medical Incident,02/22/2013,02/22/2013,02/22/2013 01:01:38 PM,02/22/2013 01:02:27 PM,02/22/2013 01:02:53 PM,02/22/2013 01:04:19 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Other,02/22/2013 01:05:29 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",130530190-E01 +123610136,AM20,12120766,Medical Incident,12/26/2012,12/26/2012,12/26/2012 11:18:37 AM,12/26/2012 11:20:25 AM,12/26/2012 11:21:45 AM,12/26/2012 11:22:41 AM,12/26/2012 11:33:27 AM,12/26/2012 11:48:12 AM,12/26/2012 12:01:45 PM,Code 2 Transport,12/26/2012 12:44:19 PM,0 Block of WILLS ST,SF,94124,B10,25,6556,1,1,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7361932827644, -122.378911946522)",123610136-AM20 +112070237,86,11068424,Medical Incident,07/26/2011,07/26/2011,07/26/2011 04:02:56 PM,07/26/2011 04:03:30 PM,07/26/2011 04:03:50 PM,07/26/2011 04:04:26 PM,07/26/2011 04:06:45 PM,07/26/2011 04:39:46 PM,07/26/2011 05:03:43 PM,Code 2 Transport,07/26/2011 05:31:14 PM,1600 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,,1,MEDIC,1,4,5,Japantown,"(37.78676442656, -122.427490271072)",112070237-86 +113300031,92,11109313,Medical Incident,11/26/2011,11/25/2011,11/26/2011 02:42:25 AM,11/26/2011 02:46:04 AM,11/26/2011 02:46:24 AM,11/26/2011 02:46:39 AM,11/26/2011 02:48:55 AM,11/26/2011 03:17:09 AM,11/26/2011 03:41:52 AM,Other,11/26/2011 04:07:54 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,,1,MEDIC,1,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",113300031-92 +102960262,T05,10094496,Structure Fire,10/23/2010,10/23/2010,10/23/2010 06:14:14 PM,10/23/2010 06:14:14 PM,10/23/2010 06:14:22 PM,10/23/2010 06:15:31 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 06:17:24 PM,0 Block of LARKIN ST,SF,94102,B02,36,1646,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7775888205813, -122.416411092393)",102960262-T05 +111830278,AM18,11060523,Medical Incident,07/02/2011,07/02/2011,07/02/2011 06:36:35 PM,07/02/2011 06:37:20 PM,07/02/2011 06:37:50 PM,07/02/2011 06:38:27 PM,07/02/2011 06:45:36 PM,07/02/2011 06:57:32 PM,07/02/2011 07:16:30 PM,Code 2 Transport,07/02/2011 07:41:58 PM,200 Block of BRUNSWICK ST,SF,94112,B09,43,6217,3,3,3,false,,1,PRIVATE,2,9,11,Excelsior,"(37.7113587742685, -122.440341216576)",111830278-AM18 +123250389,E10,12108255,Medical Incident,11/20/2012,11/20/2012,11/20/2012 09:07:23 PM,11/20/2012 09:08:27 PM,11/20/2012 09:08:47 PM,11/20/2012 09:10:24 PM,11/20/2012 09:13:26 PM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,Other,11/20/2012 09:29:09 PM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",123250389-E10 +103560307,E01,10114369,Medical Incident,12/22/2010,12/22/2010,12/22/2010 07:19:01 PM,12/22/2010 07:19:45 PM,12/22/2010 07:20:45 PM,12/22/2010 07:22:18 PM,12/22/2010 07:24:58 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/22/2010 07:33:04 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",103560307-E01 +160532162,76,16021265,Medical Incident,02/22/2016,02/22/2016,02/22/2016 03:23:55 PM,02/22/2016 03:25:18 PM,02/22/2016 03:26:32 PM,02/22/2016 03:28:30 PM,02/22/2016 03:30:44 PM,02/22/2016 03:55:22 PM,02/22/2016 04:17:52 PM,Code 2 Transport,02/22/2016 05:02:33 PM,1700 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7499142654366, -122.394328983742)",160532162-76 +160752188,54,16029752,Medical Incident,03/15/2016,03/15/2016,03/15/2016 02:35:29 PM,03/15/2016 02:37:19 PM,03/15/2016 02:40:27 PM,03/15/2016 02:40:35 PM,03/15/2016 03:03:34 PM,03/15/2016 03:18:54 PM,03/15/2016 03:45:12 PM,Code 2 Transport,03/15/2016 04:22:04 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160752188-54 +122010348,AM10,12066945,Medical Incident,07/19/2012,07/19/2012,07/19/2012 11:22:43 PM,07/19/2012 11:24:42 PM,07/19/2012 11:25:32 PM,07/19/2012 11:26:20 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/19/2012 11:33:11 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",122010348-AM10 +160171604,88,16006845,Medical Incident,01/17/2016,01/17/2016,01/17/2016 12:49:05 PM,01/17/2016 12:52:45 PM,01/17/2016 12:53:08 PM,01/17/2016 12:53:50 PM,01/17/2016 12:57:32 PM,01/17/2016 01:16:16 PM,01/17/2016 01:21:18 PM,Code 2 Transport,01/17/2016 02:01:59 PM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",160171604-88 +103440244,T03,10110252,Medical Incident,12/10/2010,12/10/2010,12/10/2010 01:59:33 PM,12/10/2010 01:59:52 PM,12/10/2010 02:00:50 PM,12/10/2010 02:01:55 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 02:05:55 PM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,,1,TRUCK,4,2,6,Tenderloin,"(37.7825297445725, -122.412384547628)",103440244-T03 +110100276,84,11003386,Medical Incident,01/10/2011,01/10/2011,01/10/2011 03:41:03 PM,01/10/2011 03:42:05 PM,01/10/2011 03:42:59 PM,01/10/2011 03:43:15 PM,01/10/2011 03:45:20 PM,01/10/2011 03:58:29 PM,01/10/2011 04:06:27 PM,Code 2 Transport,01/10/2011 04:24:47 PM,700 Block of HYDE ST,SF,94109,B04,3,1557,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7877028540247, -122.416801264327)",110100276-84 +160330217,65,16012821,Medical Incident,02/02/2016,02/01/2016,02/02/2016 02:16:51 AM,02/02/2016 02:17:41 AM,02/02/2016 02:18:12 AM,02/02/2016 02:18:54 AM,02/02/2016 02:21:17 AM,02/02/2016 02:50:05 AM,02/02/2016 02:50:06 AM,Code 3 Transport,02/02/2016 03:30:33 AM,TAYLOR ST/GEARY ST,San Francisco,94102,B01,3,1462,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869397066362, -122.411515768512)",160330217-65 +140050270,E41,14001880,Smoke Investigation (Outside),01/05/2014,01/05/2014,01/05/2014 05:20:19 PM,01/05/2014 05:23:23 PM,01/05/2014 05:24:11 PM,01/05/2014 05:25:13 PM,01/05/2014 05:26:34 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 05:30:59 PM,POLK ST/SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7914958541783, -122.420873185108)",140050270-E41 +133270102,E24,13110998,Medical Incident,11/23/2013,11/22/2013,11/23/2013 07:20:08 AM,11/23/2013 07:21:12 AM,11/23/2013 07:21:39 AM,11/23/2013 07:23:59 AM,11/23/2013 07:26:23 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 09:06:19 AM,4700 Block of 19TH ST,SF,94114,B05,24,5271,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.758856824394, -122.443469820107)",133270102-E24 +140770060,E15,14025968,Smoke Investigation (Outside),03/18/2014,03/17/2014,03/18/2014 07:44:08 AM,03/18/2014 07:45:26 AM,03/18/2014 07:45:52 AM,03/18/2014 07:46:52 AM,03/18/2014 07:50:03 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,No Merit,03/18/2014 07:54:46 AM,0 Block of PHELAN AVE,SAN FRANCISCO,94112,B09,15,8225,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",140770060-E15 +133580304,B06,13121821,Alarms,12/24/2013,12/24/2013,12/24/2013 07:11:30 PM,12/24/2013 07:12:38 PM,12/24/2013 07:12:59 PM,12/24/2013 07:14:15 PM,12/24/2013 07:18:11 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 07:26:39 PM,600 Block of ALVARADO ST,SF,94114,B06,24,5515,3,3,3,false,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7536611563754, -122.435425173732)",133580304-B06 +132660276,E11,13090323,Traffic Collision,09/23/2013,09/23/2013,09/23/2013 03:47:53 PM,09/23/2013 03:48:28 PM,09/23/2013 03:48:53 PM,09/23/2013 03:50:10 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/23/2013 03:50:10 PM,MISSION ST/RANDALL ST,SF,94110,B06,32,8112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,6,8,Bernal Heights,"(37.7398837058751, -122.423580240732)",132660276-E11 +131720274,RC3,13058468,Structure Fire,06/21/2013,06/21/2013,06/21/2013 07:04:06 PM,06/21/2013 07:13:09 PM,06/21/2013 07:46:32 PM,06/21/2013 07:48:19 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/21/2013 07:49:54 PM,2400 Block of 18TH AVE,SF,94116,B08,40,7376,3,3,3,true,Fire,1,RESCUE CAPTAIN,10,8,7,West of Twin Peaks,"(37.7421624130837, -122.47462808747)",131720274-RC3 +160032019,53,16001236,Medical Incident,01/03/2016,01/03/2016,01/03/2016 03:51:37 PM,01/03/2016 03:51:37 PM,01/03/2016 03:51:48 PM,01/03/2016 03:52:30 PM,01/03/2016 04:13:06 PM,01/03/2016 04:18:58 PM,01/03/2016 04:18:59 PM,Code 2 Transport,01/03/2016 05:09:31 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7777903094246, -122.412834332129)",160032019-53 +160223979,62,16008989,Traffic Collision,01/22/2016,01/22/2016,01/22/2016 11:39:14 PM,01/22/2016 11:40:58 PM,01/22/2016 11:41:12 PM,01/22/2016 11:41:31 PM,01/22/2016 11:46:37 PM,01/22/2016 11:55:19 PM,01/23/2016 12:18:43 AM,Code 2 Transport,01/23/2016 12:50:29 AM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",160223979-62 +111430190,E08,11047531,Alarms,05/23/2011,05/23/2011,05/23/2011 01:13:54 PM,05/23/2011 01:14:56 PM,05/23/2011 01:15:04 PM,05/23/2011 01:16:21 PM,05/23/2011 01:19:12 PM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/23/2011 01:22:27 PM,200 Block of 2ND ST,SF,94105,B03,1,2147,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",111430190-E08 +160641348,64,16025452,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:34:17 AM,03/04/2016 10:36:21 AM,03/04/2016 10:39:55 AM,03/04/2016 10:40:18 AM,03/04/2016 11:01:48 AM,03/04/2016 11:45:48 AM,03/04/2016 12:16:39 PM,Code 3 Transport,03/04/2016 01:15:56 PM,1200 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7211257483752, -122.389791072632)",160641348-64 +133010038,E14,13102167,Medical Incident,10/28/2013,10/27/2013,10/28/2013 05:35:57 AM,10/28/2013 05:36:48 AM,10/28/2013 05:38:39 AM,10/28/2013 05:40:44 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 06:04:46 AM,1800 Block of WEDEMEYER ST,PR,94129,B99,31,4623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,2,Presidio,"(37.788127899431, -122.475124124799)",133010038-E14 +132450020,54,13082543,Medical Incident,09/02/2013,09/01/2013,09/02/2013 12:54:03 AM,09/02/2013 12:54:25 AM,09/02/2013 12:54:41 AM,09/02/2013 12:54:53 AM,09/02/2013 01:05:08 AM,09/02/2013 01:19:05 AM,09/02/2013 01:41:17 AM,Code 2 Transport,09/02/2013 01:57:06 AM,19TH AV/GEARY BL,SF,94121,B07,31,7161,2,2,2,false,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7803811907228, -122.47830487835)",132450020-54 +130380229,B02,13013030,Alarms,02/07/2013,02/07/2013,02/07/2013 03:06:26 PM,02/07/2013 03:07:15 PM,02/07/2013 03:07:19 PM,02/07/2013 03:08:31 PM,02/07/2013 03:11:32 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/07/2013 03:14:20 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",130380229-B02 +130860222,E13,13028716,Medical Incident,03/27/2013,03/27/2013,03/27/2013 02:24:41 PM,03/27/2013 02:25:12 PM,03/27/2013 02:25:44 PM,03/27/2013 02:27:12 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,04/25/2016 01:53:37 PM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",130860222-E13 +122970153,E41,12098463,Medical Incident,10/23/2012,10/23/2012,10/23/2012 10:28:12 AM,10/23/2012 10:28:48 AM,10/23/2012 10:29:03 AM,10/23/2012 10:30:05 AM,10/23/2012 10:36:01 AM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 10:36:29 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",122970153-E41 +131810017,T06,13061470,Medical Incident,06/30/2013,06/29/2013,06/30/2013 12:52:55 AM,06/30/2013 12:54:43 AM,06/30/2013 12:55:25 AM,06/30/2013 12:58:55 AM,06/30/2013 12:59:33 AM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,Other,06/30/2013 01:05:19 AM,DOUGLASS ST/17TH ST,SF,94114,B05,6,5254,2,2,2,false,Potentially Life-Threatening,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7622268680344, -122.439491322733)",131810017-T06 +110820397,E07,11027120,Medical Incident,03/23/2011,03/23/2011,03/23/2011 11:35:25 PM,03/23/2011 11:36:31 PM,03/23/2011 11:37:18 PM,03/23/2011 11:38:07 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 11:49:58 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,E,E,3,true,,1,ENGINE,3,2,9,Mission,"(37.7642444942899, -122.419521866555)",110820397-E07 +121580117,E33,12052222,Medical Incident,06/06/2012,06/06/2012,06/06/2012 10:04:01 AM,06/06/2012 10:05:50 AM,06/06/2012 10:11:18 AM,06/06/2012 10:13:22 AM,06/06/2012 10:18:05 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/06/2012 10:33:42 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",121580117-E33 +120010109,E06,12000084,Medical Incident,01/01/2012,12/31/2011,01/01/2012 01:18:36 AM,01/01/2012 01:19:26 AM,01/01/2012 01:21:09 AM,01/01/2012 01:30:15 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 01:31:13 AM,1000 Block of FOLSOM ST,SF,94103,B03,1,2313,3,E,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,South of Market,"(37.7777816676305, -122.406629219771)",120010109-E06 +121620224,E06,12053659,Medical Incident,06/10/2012,06/10/2012,06/10/2012 02:00:02 PM,06/10/2012 02:03:03 PM,06/10/2012 02:03:20 PM,06/10/2012 02:04:27 PM,06/10/2012 02:06:08 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 02:12:58 PM,CHURCH ST/DUBOCE AV,SF,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",121620224-E06 +160670129,85,16026567,Medical Incident,03/07/2016,03/06/2016,03/07/2016 01:36:58 AM,03/07/2016 01:38:18 AM,03/07/2016 01:38:58 AM,03/07/2016 01:39:10 AM,03/07/2016 01:54:03 AM,03/07/2016 02:04:34 AM,03/07/2016 02:10:38 AM,Code 2 Transport,03/07/2016 02:36:57 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7824182864419, -122.403869611535)",160670129-85 +140730266,72,14024709,Medical Incident,03/14/2014,03/14/2014,03/14/2014 04:03:10 PM,03/14/2014 04:04:06 PM,03/14/2014 04:05:12 PM,03/14/2014 04:05:55 PM,03/14/2014 04:13:52 PM,03/14/2014 04:25:26 PM,03/14/2014 04:29:51 PM,Code 2 Transport,03/14/2014 04:54:57 PM,500 Block of OFARRELL ST,SAN FRANCISCO,94102,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",140730266-72 +123070327,55,12102132,Medical Incident,11/02/2012,11/02/2012,11/02/2012 06:38:20 PM,11/02/2012 06:38:49 PM,11/02/2012 06:38:54 PM,11/02/2012 06:49:51 PM,11/02/2012 07:00:14 PM,11/02/2012 07:15:49 PM,11/02/2012 07:34:01 PM,Code 2 Transport,11/02/2012 07:52:18 PM,100 Block of SAGAMORE ST,SF,94112,B09,33,8371,3,2,2,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7114525824993, -122.457522136578)",123070327-55 +120230248,75,12007847,Medical Incident,01/23/2012,01/23/2012,01/23/2012 03:40:39 PM,01/23/2012 03:41:14 PM,01/23/2012 03:41:25 PM,01/23/2012 03:41:41 PM,01/23/2012 03:43:30 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Patient Declined Transport,01/23/2012 03:53:46 PM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",120230248-75 +160770183,KM03,16030420,Medical Incident,03/17/2016,03/16/2016,03/17/2016 01:20:24 AM,03/17/2016 01:22:37 AM,03/17/2016 01:30:17 AM,03/17/2016 01:31:41 AM,03/17/2016 01:38:08 AM,03/17/2016 01:52:28 AM,03/17/2016 02:24:28 AM,Code 2 Transport,03/17/2016 02:24:41 AM,1000 Block of HAIGHT ST,San Francisco,94117,B05,21,4246,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7710062058804, -122.439544330519)",160770183-KM03 +102680281,89,10084975,Medical Incident,09/25/2010,09/25/2010,09/25/2010 03:27:32 PM,09/25/2010 03:29:21 PM,09/25/2010 03:29:51 PM,09/25/2010 03:32:04 PM,09/25/2010 03:36:48 PM,09/25/2010 03:54:51 PM,04/25/2016 02:08:25 PM,Code 2 Transport,09/25/2010 04:40:44 PM,500 Block of FUNSTON AVE,SF,94118,B07,31,7145,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7778254843331, -122.471503187288)",102680281-89 +102830048,73,10089959,Medical Incident,10/10/2010,10/09/2010,10/10/2010 03:22:31 AM,10/10/2010 03:22:56 AM,10/10/2010 03:23:12 AM,10/10/2010 03:23:24 AM,10/10/2010 03:30:55 AM,10/10/2010 03:45:52 AM,10/10/2010 03:51:41 AM,Code 3 Transport,10/10/2010 04:28:36 AM,800 Block of EUCLID AVE,SF,94118,B07,10,4446,3,3,3,true,,1,MEDIC,2,7,2,Presidio Heights,"(37.7837956101144, -122.458479982089)",102830048-73 +121010247,59,12033536,Medical Incident,04/10/2012,04/10/2012,04/10/2012 04:08:40 PM,04/10/2012 04:10:38 PM,04/10/2012 04:11:00 PM,04/10/2012 04:11:14 PM,04/10/2012 04:16:05 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Against Medical Advice,04/10/2012 04:56:17 PM,FITZGERALD AV/JENNINGS ST,SF,94124,B10,17,6614,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7220347181097, -122.393171960162)",121010247-59 +113190390,E13,11106118,Medical Incident,11/15/2011,11/15/2011,11/15/2011 10:25:14 PM,11/15/2011 10:26:02 PM,11/15/2011 10:26:37 PM,11/15/2011 10:27:55 PM,11/15/2011 10:32:25 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/15/2011 11:02:08 PM,300 Block of MAIN ST,SF,94105,B03,35,2117,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",113190390-E13 +160610458,62,16024188,Medical Incident,03/01/2016,02/29/2016,03/01/2016 06:31:01 AM,03/01/2016 06:32:26 AM,03/01/2016 06:32:56 AM,03/01/2016 06:33:07 AM,03/01/2016 06:36:40 AM,03/01/2016 06:52:18 AM,03/01/2016 06:57:34 AM,Code 2 Transport,03/01/2016 07:28:21 AM,1300 Block of LARKIN ST,San Francisco,94109,B04,41,1635,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",160610458-62 +160200703,75,16007918,Medical Incident,01/20/2016,01/19/2016,01/20/2016 07:51:35 AM,01/20/2016 07:53:45 AM,01/20/2016 07:54:44 AM,01/20/2016 07:54:49 AM,01/20/2016 08:13:27 AM,01/20/2016 08:30:48 AM,01/20/2016 08:51:28 AM,Code 2 Transport,01/20/2016 09:27:01 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160200703-75 +131850260,86,13063117,Medical Incident,07/04/2013,07/04/2013,07/04/2013 05:42:08 PM,07/04/2013 05:45:02 PM,07/04/2013 05:45:13 PM,07/04/2013 05:45:19 PM,07/04/2013 05:52:07 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Against Medical Advice,07/04/2013 06:45:36 PM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",131850260-86 +113120328,E39,11103768,Medical Incident,11/08/2011,11/08/2011,11/08/2011 06:51:33 PM,11/08/2011 06:52:02 PM,11/08/2011 06:52:47 PM,11/08/2011 06:53:36 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,Other,11/08/2011 06:53:54 PM,100 Block of LANSDALE AVE,SF,94127,B09,39,8571,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7380813470488, -122.460536260185)",113120328-E39 +111540150,T03,11050856,Structure Fire,06/03/2011,06/03/2011,06/03/2011 12:23:35 PM,06/03/2011 12:23:35 PM,06/03/2011 12:24:24 PM,06/03/2011 12:25:58 PM,06/03/2011 12:27:35 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Fire,06/03/2011 12:28:05 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",111540150-T03 +140040156,T07,14001419,Structure Fire,01/04/2014,01/04/2014,01/04/2014 11:35:27 AM,01/04/2014 11:35:28 AM,01/04/2014 11:35:37 AM,01/04/2014 11:40:46 AM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,Other,01/04/2014 11:45:24 AM,19TH ST/DOLORES ST,SF,94110,B06,7,5435,,3,3,false,Alarm,1,TRUCK,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",140040156-T07 +160203596,67,16008175,Medical Incident,01/20/2016,01/20/2016,01/20/2016 09:02:36 PM,01/20/2016 09:03:33 PM,01/20/2016 09:04:14 PM,01/20/2016 09:04:25 PM,01/20/2016 09:23:04 PM,01/20/2016 09:35:14 PM,01/20/2016 09:48:23 PM,Code 2 Transport,01/20/2016 10:36:00 PM,31ST AV/NORIEGA ST,San Francisco,94122,B08,18,7534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7536741932902, -122.489323710584)",160203596-67 +102530311,AM04,10080046,Medical Incident,09/10/2010,09/10/2010,09/10/2010 05:56:20 PM,09/10/2010 05:58:36 PM,09/10/2010 05:58:57 PM,09/10/2010 06:00:38 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,04/25/2016 02:08:39 PM,1600 Block of KIRKWOOD AVE,SF,94124,B10,25,6467,2,2,2,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7387417648077, -122.390854570377)",102530311-AM04 +160893074,68,16035446,Medical Incident,03/29/2016,03/29/2016,03/29/2016 06:19:06 PM,03/29/2016 06:21:36 PM,03/29/2016 06:21:49 PM,03/29/2016 06:22:11 PM,03/29/2016 06:35:33 PM,03/29/2016 06:50:46 PM,03/29/2016 07:21:24 PM,Code 2 Transport,03/29/2016 07:35:41 PM,1200 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",160893074-68 +120060114,57,12002017,Medical Incident,01/06/2012,01/06/2012,01/06/2012 09:30:39 AM,01/06/2012 09:31:47 AM,01/06/2012 09:32:12 AM,01/06/2012 09:32:49 AM,01/06/2012 09:51:19 AM,01/06/2012 10:02:37 AM,01/06/2012 10:11:09 AM,Code 2 Transport,01/06/2012 10:36:39 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",120060114-57 +120310078,E03,12010193,Medical Incident,01/31/2012,01/30/2012,01/31/2012 07:31:05 AM,01/31/2012 07:31:55 AM,01/31/2012 07:32:11 AM,01/31/2012 07:33:49 AM,01/31/2012 07:37:12 AM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Gone on Arrival,01/31/2012 07:42:31 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",120310078-E03 +160591249,55,16023475,Medical Incident,02/28/2016,02/28/2016,02/28/2016 11:05:40 AM,02/28/2016 11:05:40 AM,02/28/2016 11:06:05 AM,02/28/2016 11:09:12 AM,02/28/2016 11:13:13 AM,02/28/2016 11:34:42 AM,02/28/2016 11:39:03 AM,Code 2 Transport,02/28/2016 12:48:51 PM,OFARRELL ST/DIVISADERO ST,San Francisco,94115,B04,5,413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7824504809987, -122.439297623944)",160591249-55 +132630280,T07,13089190,Structure Fire,09/20/2013,09/20/2013,09/20/2013 04:13:21 PM,09/20/2013 04:13:21 PM,09/20/2013 04:13:33 PM,09/20/2013 04:14:57 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 04:17:34 PM,TREAT AV/ALAMEDA ST,SF,94103,B02,29,5221,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.7680736053747, -122.412424183842)",132630280-T07 +112000186,95,11065952,Medical Incident,07/19/2011,07/19/2011,07/19/2011 12:47:22 PM,07/19/2011 12:47:55 PM,07/19/2011 12:48:17 PM,07/19/2011 12:49:03 PM,07/19/2011 12:51:57 PM,07/19/2011 01:14:55 PM,07/19/2011 01:36:47 PM,Code 2 Transport,07/19/2011 02:16:25 PM,600 Block of CAPITOL AVE,SF,94112,B09,33,8373,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7161811504722, -122.458990060206)",112000186-95 +113050002,93,11101118,Medical Incident,11/01/2011,10/31/2011,11/01/2011 12:02:07 AM,11/01/2011 12:02:55 AM,11/01/2011 12:03:05 AM,11/01/2011 12:03:13 AM,11/01/2011 12:05:11 AM,11/01/2011 12:19:08 AM,11/01/2011 12:25:51 AM,Code 3 Transport,11/01/2011 12:54:08 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",113050002-93 +160013815,70,16000532,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:29:57 PM,01/01/2016 10:31:24 PM,01/01/2016 10:31:42 PM,01/01/2016 10:31:51 PM,01/01/2016 10:39:12 PM,01/01/2016 11:10:42 PM,01/01/2016 11:18:38 PM,Code 2 Transport,01/02/2016 12:01:37 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160013815-70 +140080059,T17,14002718,Medical Incident,01/08/2014,01/07/2014,01/08/2014 06:08:57 AM,01/08/2014 06:10:36 AM,01/08/2014 06:11:12 AM,01/08/2014 06:12:51 AM,01/08/2014 06:20:10 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/08/2014 06:22:38 AM,REY ST/SUNNYDALE AV,SF,94134,B09,44,6253,E,E,3,true,Potentially Life-Threatening,1,TRUCK,5,9,10,Visitacion Valley,"(37.7108660629811, -122.412281152657)",140080059-T17 +160231266,KM11,16009106,Medical Incident,01/23/2016,01/23/2016,01/23/2016 10:47:24 AM,01/23/2016 10:49:38 AM,01/23/2016 10:50:23 AM,01/23/2016 10:51:09 AM,01/23/2016 11:00:06 AM,01/23/2016 11:18:59 AM,01/23/2016 11:28:46 AM,Code 2 Transport,01/23/2016 11:51:37 AM,1100 Block of GOUGH ST,San Francisco,94109,B04,3,3261,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.784358514886, -122.424559253604)",160231266-KM11 +160570722,71,16022651,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:08:44 AM,02/26/2016 08:10:10 AM,02/26/2016 08:10:26 AM,02/26/2016 08:10:46 AM,02/26/2016 08:15:56 AM,02/26/2016 08:49:39 AM,02/26/2016 09:14:13 AM,Code 2 Transport,02/26/2016 09:45:11 AM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5259,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",160570722-71 +133510069,E01,13119096,Vehicle Fire,12/17/2013,12/16/2013,12/17/2013 06:39:57 AM,12/17/2013 06:40:21 AM,12/17/2013 06:40:35 AM,12/17/2013 06:42:02 AM,12/17/2013 06:45:45 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 06:54:43 AM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,Fire,1,ENGINE,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",133510069-E01 +131950069,E12,13066157,Alarms,07/14/2013,07/13/2013,07/14/2013 06:30:26 AM,07/14/2013 06:31:31 AM,07/14/2013 06:31:47 AM,07/14/2013 06:33:41 AM,07/14/2013 06:36:22 AM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Fire,07/14/2013 06:51:49 AM,1400 Block of WALLER ST,SF,94117,B05,12,4512,3,3,3,true,Alarm,1,ENGINE,2,5,5,Haight Ashbury,"(37.768862804, -122.44796773714)",131950069-E12 +113570474,E44,11118846,Medical Incident,12/23/2011,12/23/2011,12/23/2011 11:20:57 PM,12/23/2011 11:21:36 PM,12/23/2011 11:22:28 PM,12/23/2011 11:23:38 PM,12/23/2011 11:26:11 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 12:04:17 AM,100 Block of ARLETA AVE,SF,94134,B10,44,6267,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7135351434593, -122.405821093621)",113570474-E44 +122040175,E17,12067804,Medical Incident,07/22/2012,07/22/2012,07/22/2012 12:10:24 PM,07/22/2012 12:13:25 PM,07/22/2012 12:13:36 PM,07/22/2012 12:14:58 PM,07/22/2012 12:17:52 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 12:25:49 PM,0 Block of ARDATH CT,SF,94124,B10,17,6624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7345025151708, -122.382247020863)",122040175-E17 +123590196,B01,12120199,Alarms,12/24/2012,12/24/2012,12/24/2012 02:26:20 PM,12/24/2012 02:28:05 PM,12/24/2012 02:28:16 PM,12/24/2012 02:29:34 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 02:31:58 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",123590196-B01 +113220060,E43,11106862,Medical Incident,11/18/2011,11/17/2011,11/18/2011 06:20:11 AM,11/18/2011 06:20:37 AM,11/18/2011 06:21:07 AM,11/18/2011 06:23:45 AM,11/18/2011 06:28:22 AM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/18/2011 06:36:12 AM,1800 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,,1,ENGINE,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",113220060-E43 +160792167,62,16031440,Medical Incident,03/19/2016,03/19/2016,03/19/2016 02:35:10 PM,03/19/2016 02:36:32 PM,03/19/2016 02:36:41 PM,03/19/2016 02:36:50 PM,03/19/2016 02:54:00 PM,03/19/2016 03:08:45 PM,03/19/2016 03:20:03 PM,Code 2 Transport,03/19/2016 03:49:19 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160792167-62 +112580287,AM18,11085128,Medical Incident,09/15/2011,09/15/2011,09/15/2011 05:29:30 PM,09/15/2011 05:30:50 PM,09/15/2011 05:31:05 PM,09/15/2011 05:32:08 PM,09/15/2011 05:38:15 PM,09/15/2011 06:03:42 PM,09/15/2011 06:20:36 PM,Code 2 Transport,09/15/2011 07:05:51 PM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7345707092334, -122.391831743022)",112580287-AM18 +160423873,AM20,16017069,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:40:23 PM,02/11/2016 10:42:17 PM,02/11/2016 10:42:51 PM,02/11/2016 10:43:47 PM,02/11/2016 10:52:38 PM,02/11/2016 11:16:09 PM,02/11/2016 11:38:36 PM,Code 2 Transport,02/12/2016 12:24:07 AM,100 Block of CRESCENT WAY,San Francisco,94134,B10,44,6575,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7111340886592, -122.389340428123)",160423873-AM20 +112490248,T17,11082176,Alarms,09/06/2011,09/06/2011,09/06/2011 03:10:14 PM,09/06/2011 03:10:35 PM,09/06/2011 03:10:42 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 03:11:49 PM,200 Block of LELAND AVE,SF,94134,B10,44,6254,3,3,3,false,,1,TRUCK,3,9,10,Visitacion Valley,"(37.7126284936114, -122.407863164797)",112490248-T17 +131750008,E14,13059230,Medical Incident,06/24/2013,06/23/2013,06/24/2013 12:37:17 AM,06/24/2013 12:37:40 AM,06/24/2013 12:37:54 AM,06/24/2013 12:39:37 AM,06/24/2013 12:43:05 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 12:50:15 AM,100 Block of 28TH AVE,SF,94121,B07,14,7231,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Seacliff,"(37.7859048053744, -122.488355259583)",131750008-E14 +120680349,E07,12022720,Structure Fire,03/08/2012,03/08/2012,03/08/2012 10:09:58 PM,03/08/2012 10:10:56 PM,03/08/2012 10:11:29 PM,03/08/2012 10:12:53 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/08/2012 10:17:02 PM,3200 Block of 25TH ST,SF,94110,B06,11,5534,3,3,3,true,Fire,1,ENGINE,8,6,9,Mission,"(37.7507333784902, -122.415819362041)",120680349-E07 +160110397,70,16004260,Medical Incident,01/11/2016,01/10/2016,01/11/2016 04:38:44 AM,01/11/2016 04:40:32 AM,01/11/2016 04:41:08 AM,01/11/2016 04:44:40 AM,01/11/2016 04:51:18 AM,01/11/2016 05:00:16 AM,01/11/2016 05:17:03 AM,Code 2 Transport,01/11/2016 06:09:09 AM,1300 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",160110397-70 +123390418,89,12113262,Medical Incident,12/04/2012,12/04/2012,12/04/2012 11:56:26 PM,12/04/2012 11:57:19 PM,12/04/2012 11:57:37 PM,12/04/2012 11:57:51 PM,12/05/2012 12:05:27 AM,12/05/2012 12:22:51 AM,12/05/2012 12:35:16 AM,Code 2 Transport,12/05/2012 12:51:12 AM,PALOU AV/3RD ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",123390418-89 +160380083,AM10,16015022,Medical Incident,02/07/2016,02/06/2016,02/07/2016 12:22:51 AM,02/07/2016 12:23:43 AM,02/07/2016 12:25:08 AM,02/07/2016 12:25:40 AM,02/07/2016 12:27:53 AM,02/07/2016 12:33:06 AM,02/07/2016 12:45:31 AM,Code 2 Transport,02/07/2016 01:14:32 AM,1400 Block of DIVISADERO ST,San Francisco,94115,B05,10,4154,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7828972510359, -122.439273399197)",160380083-AM10 +120880093,KM02,12029112,Medical Incident,03/28/2012,03/28/2012,03/28/2012 09:11:45 AM,03/28/2012 09:12:29 AM,03/28/2012 09:12:57 AM,03/28/2012 09:15:51 AM,03/28/2012 09:19:06 AM,03/28/2012 09:39:57 AM,03/28/2012 09:48:31 AM,Code 2 Transport,03/28/2012 10:24:30 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",120880093-KM02 +130870201,E23,13029028,Medical Incident,03/28/2013,03/28/2013,03/28/2013 01:58:55 PM,03/28/2013 02:01:48 PM,03/28/2013 02:02:13 PM,03/28/2013 02:03:26 PM,03/28/2013 02:04:30 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 02:13:46 PM,1400 Block of 43RD AVE,SF,94122,B08,23,7652,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7596302865022, -122.50271641994)",130870201-E23 +130010236,KM15,13000180,Traffic Collision,01/01/2013,12/31/2012,01/01/2013 04:39:51 AM,01/01/2013 04:40:36 AM,01/01/2013 04:41:06 AM,01/01/2013 04:41:50 AM,01/01/2013 04:45:39 AM,01/01/2013 04:55:32 AM,01/01/2013 05:09:00 AM,Code 2 Transport,01/01/2013 05:31:46 AM,400 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7849036811274, -122.416234049056)",130010236-KM15 +103280330,T13,10105200,Alarms,11/24/2010,11/24/2010,11/24/2010 10:44:45 PM,11/24/2010 10:47:04 PM,11/24/2010 10:47:38 PM,11/24/2010 10:49:17 PM,11/24/2010 10:51:23 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/24/2010 10:56:22 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,B,B,2,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",103280330-T13 +112580395,E43,11085227,Medical Incident,09/15/2011,09/15/2011,09/15/2011 10:44:42 PM,09/15/2011 10:46:13 PM,09/15/2011 10:46:21 PM,09/15/2011 10:47:34 PM,09/15/2011 10:49:56 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 10:58:31 PM,0 Block of NEWTON ST,SF,94112,B09,43,6232,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7139398137679, -122.438943296577)",112580395-E43 +140770278,E40,14026145,Medical Incident,03/18/2014,03/18/2014,03/18/2014 05:11:35 PM,03/18/2014 05:12:54 PM,03/18/2014 05:13:50 PM,03/18/2014 05:15:01 PM,03/18/2014 05:17:27 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Patient Declined Transport,03/18/2014 05:23:40 PM,2300 Block of 24TH AVE,,94116,B08,40,7461,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",140770278-E40 +131880285,E03,13064187,Medical Incident,07/07/2013,07/07/2013,07/07/2013 06:01:08 PM,07/07/2013 06:03:13 PM,07/07/2013 06:08:27 PM,07/07/2013 06:09:31 PM,07/07/2013 06:14:19 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 06:24:07 PM,POLK ST/MCALLISTER ST,SF,94102,B02,3,3113,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",131880285-E03 +140640072,78,14021549,Medical Incident,03/05/2014,03/05/2014,03/05/2014 08:36:16 AM,03/05/2014 08:37:13 AM,03/05/2014 08:37:41 AM,03/05/2014 08:38:16 AM,03/05/2014 08:42:13 AM,03/05/2014 09:01:43 AM,03/05/2014 09:17:33 AM,Code 2 Transport,03/05/2014 10:11:39 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",140640072-78 +160621088,64,16024632,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:55:34 AM,03/02/2016 09:57:53 AM,03/02/2016 09:58:50 AM,03/02/2016 09:59:15 AM,03/02/2016 10:10:03 AM,03/02/2016 10:36:12 AM,03/02/2016 11:18:57 AM,Code 2 Transport,03/02/2016 11:58:27 AM,500 Block of CRESTLAKE DR,San Francisco,94116,B08,19,7551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7364819292531, -122.490732289058)",160621088-64 +131770084,87,13060003,Medical Incident,06/26/2013,06/25/2013,06/26/2013 07:22:24 AM,06/26/2013 07:24:58 AM,06/26/2013 07:25:15 AM,06/26/2013 07:25:40 AM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 07:32:22 AM,24TH ST/GUERRERO ST,SF,94110,B06,11,5524,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7519716270837, -122.422878832716)",131770084-87 +120420265,88,12014101,Medical Incident,02/11/2012,02/11/2012,02/11/2012 03:59:57 PM,02/11/2012 04:03:04 PM,02/11/2012 04:05:09 PM,02/11/2012 04:05:21 PM,02/11/2012 04:15:17 PM,02/11/2012 04:33:53 PM,02/11/2012 04:43:23 PM,Code 2 Transport,02/11/2012 05:03:08 PM,800 Block of POTRERO AVE,SF,94110,B10,7,255,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",120420265-88 +110670172,T07,11022057,Structure Fire,03/08/2011,03/08/2011,03/08/2011 12:56:29 PM,03/08/2011 12:56:50 PM,03/08/2011 12:57:15 PM,03/08/2011 12:58:15 PM,03/08/2011 01:00:43 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 01:07:44 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,3,3,3,false,,1,TRUCK,6,6,9,Mission,"(37.7581042111797, -122.421163821698)",110670172-T07 +160122521,KM09,16004839,Medical Incident,01/12/2016,01/12/2016,01/12/2016 04:17:41 PM,01/12/2016 04:19:09 PM,01/12/2016 04:19:23 PM,01/12/2016 04:19:58 PM,01/12/2016 04:31:00 PM,01/12/2016 04:50:39 PM,01/12/2016 05:13:21 PM,Code 2 Transport,01/12/2016 05:56:13 PM,MISSION ST/6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160122521-KM09 +112840132,AM12,11093962,Medical Incident,10/11/2011,10/11/2011,10/11/2011 10:54:21 AM,10/11/2011 10:55:30 AM,10/11/2011 10:56:08 AM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,04/25/2016 02:02:13 PM,300 Block of 3RD ST,SF,94107,B03,1,2176,3,3,3,false,,1,PRIVATE,3,3,6,South of Market,"(37.7833526602624, -122.398485675312)",112840132-AM12 +160473298,KM12,16019085,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:34:17 PM,02/16/2016 07:36:32 PM,02/16/2016 07:36:48 PM,02/16/2016 07:37:51 PM,02/16/2016 07:42:30 PM,02/16/2016 07:59:05 PM,02/16/2016 08:34:40 PM,Code 2 Transport,02/16/2016 08:37:22 PM,15TH ST/MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",160473298-KM12 +110130276,77,11004393,Medical Incident,01/13/2011,01/13/2011,01/13/2011 04:17:05 PM,01/13/2011 04:20:21 PM,01/13/2011 04:21:02 PM,01/13/2011 04:21:22 PM,01/13/2011 04:45:11 PM,01/13/2011 05:13:32 PM,01/13/2011 05:32:54 PM,Code 2 Transport,01/13/2011 06:04:50 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110130276-77 +123480282,96,12116437,Medical Incident,12/13/2012,12/13/2012,12/13/2012 04:45:31 PM,12/13/2012 04:49:04 PM,12/13/2012 04:51:10 PM,12/13/2012 04:51:21 PM,12/13/2012 05:04:29 PM,12/13/2012 05:20:14 PM,04/25/2016 01:55:20 PM,Code 2 Transport,12/13/2012 05:33:54 PM,200 Block of WAWONA ST,SF,94127,B08,39,8612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.739291844463, -122.468883827055)",123480282-96 +111010220,E19,11033547,Citizen Assist / Service Call,04/11/2011,04/11/2011,04/11/2011 02:59:31 PM,04/11/2011 02:59:59 PM,04/11/2011 03:01:34 PM,04/11/2011 03:02:47 PM,04/11/2011 03:06:20 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Fire,04/11/2011 03:12:46 PM,0 Block of CRESTLAKE DR,SF,94132,B08,19,7463,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.735368444791, -122.48194205066)",111010220-E19 +112210171,E22,11072987,Medical Incident,08/09/2011,08/09/2011,08/09/2011 01:17:19 PM,08/09/2011 01:18:27 PM,08/09/2011 01:18:54 PM,08/09/2011 01:19:50 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 01:20:47 PM,1300 Block of 24TH AVE,SF,94122,B08,22,7451,3,2,2,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7623920631346, -122.48248639415)",112210171-E22 +132100018,E36,13070885,Medical Incident,07/29/2013,07/28/2013,07/29/2013 12:51:21 AM,07/29/2013 12:53:56 AM,07/29/2013 12:56:32 AM,07/29/2013 12:58:24 AM,07/29/2013 01:00:57 AM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/29/2013 01:06:08 AM,100 Block of OTIS ST,SF,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",132100018-E36 +140270016,66,14009065,Medical Incident,01/27/2014,01/26/2014,01/27/2014 01:49:47 AM,01/27/2014 01:51:48 AM,01/27/2014 01:52:03 AM,01/27/2014 01:52:28 AM,01/27/2014 02:08:21 AM,01/27/2014 02:08:27 AM,01/27/2014 02:20:15 AM,Code 2 Transport,01/27/2014 02:58:04 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",140270016-66 +111800336,E08,11059566,Medical Incident,06/29/2011,06/29/2011,06/29/2011 10:09:26 PM,06/29/2011 10:10:54 PM,06/29/2011 10:11:10 PM,04/25/2016 02:03:54 PM,06/29/2011 10:16:21 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/29/2011 10:21:28 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",111800336-E08 +122220353,E03,12073735,Alarms,08/09/2012,08/09/2012,08/09/2012 09:07:47 PM,08/09/2012 09:08:34 PM,08/09/2012 09:08:45 PM,08/09/2012 09:10:10 PM,08/09/2012 09:11:38 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/09/2012 09:17:14 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",122220353-E03 +160120310,60,16004632,Medical Incident,01/12/2016,01/11/2016,01/12/2016 03:35:30 AM,01/12/2016 03:36:20 AM,01/12/2016 03:36:31 AM,01/12/2016 03:36:41 AM,01/12/2016 03:46:16 AM,01/12/2016 04:05:25 AM,01/12/2016 04:29:11 AM,Code 2 Transport,01/12/2016 04:59:40 AM,500 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",160120310-60 +121120040,T13,12036999,Alarms,04/21/2012,04/20/2012,04/21/2012 02:08:39 AM,04/21/2012 02:09:36 AM,04/21/2012 02:09:58 AM,04/21/2012 02:11:45 AM,04/21/2012 02:15:22 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 02:26:43 AM,100 Block of HOWARD ST,SF,94105,B03,35,2114,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7910007343294, -122.39301513185)",121120040-T13 +103000223,EMS1,10095800,Other,10/27/2010,10/27/2010,10/27/2010 03:20:21 PM,10/27/2010 03:20:21 PM,10/27/2010 03:20:21 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 07:37:25 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,3,3,3,false,,1,CHIEF,9,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",103000223-EMS1 +160133905,61,16005366,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:22:33 PM,01/13/2016 09:24:01 PM,01/13/2016 09:26:48 PM,01/13/2016 09:27:06 PM,01/13/2016 09:39:11 PM,01/13/2016 09:58:18 PM,01/13/2016 10:03:33 PM,Code 2 Transport,01/13/2016 10:39:59 PM,1700 Block of ALABAMA ST,San Francisco,94110,B06,9,5666,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7451039771086, -122.410526466205)",160133905-61 +132500441,T09,13084616,Structure Fire,09/07/2013,09/07/2013,09/07/2013 09:48:25 PM,09/07/2013 09:48:25 PM,09/07/2013 09:48:47 PM,09/07/2013 09:49:56 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/07/2013 09:49:57 PM,22ND ST/3RD ST,SF,94107,B10,25,2533,3,3,3,false,Alarm,1,TRUCK,2,10,10,Potrero Hill,"(37.7579397061731, -122.388315530161)",132500441-T09 +110310348,E44,11010302,Medical Incident,01/31/2011,01/31/2011,01/31/2011 09:20:52 PM,01/31/2011 09:21:41 PM,01/31/2011 09:22:22 PM,01/31/2011 09:23:34 PM,01/31/2011 09:27:46 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,01/31/2011 09:39:26 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",110310348-E44 +120690008,E36,12022750,Medical Incident,03/09/2012,03/08/2012,03/09/2012 12:36:12 AM,03/09/2012 12:36:29 AM,03/09/2012 12:36:45 AM,03/09/2012 12:38:42 AM,03/09/2012 12:41:21 AM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/09/2012 12:41:38 AM,HOWARD ST/8TH ST,SF,94103,B02,36,2335,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7762213544451, -122.411606113878)",120690008-E36 +160631646,KM03,16025061,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:28:05 PM,03/03/2016 12:29:03 PM,03/03/2016 12:29:19 PM,03/03/2016 12:29:51 PM,03/03/2016 12:41:02 PM,03/03/2016 01:15:21 PM,03/03/2016 01:20:12 PM,Code 2 Transport,03/03/2016 02:04:27 PM,2200 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3435,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7903015380555, -122.429903683028)",160631646-KM03 +122350126,E05,12077824,Traffic Collision,08/22/2012,08/22/2012,08/22/2012 10:51:28 AM,08/22/2012 10:51:28 AM,08/22/2012 10:52:19 AM,08/22/2012 10:53:48 AM,08/22/2012 10:56:05 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,No Merit,08/22/2012 11:13:45 AM,DIVISADERO ST/GOLDEN GATE AV,SF,94115,B05,5,4134,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7787241071017, -122.43855227518)",122350126-E05 +122300298,RS1,12076318,Medical Incident,08/17/2012,08/17/2012,08/17/2012 04:38:35 PM,08/17/2012 04:40:37 PM,08/17/2012 04:40:49 PM,08/17/2012 04:42:35 PM,08/17/2012 04:43:32 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 04:51:19 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",122300298-RS1 +160303802,75,16011973,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:08:23 PM,01/30/2016 10:08:23 PM,01/30/2016 10:08:49 PM,01/30/2016 10:09:00 PM,01/30/2016 10:20:00 PM,01/30/2016 10:44:24 PM,01/30/2016 10:55:53 PM,Code 2 Transport,01/30/2016 11:38:07 PM,CALL BOX:,San Francisco,94105,B03,35,2121,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.786916509361, -122.388858954466)",160303802-75 +160311024,65,16012109,Medical Incident,01/31/2016,01/31/2016,01/31/2016 09:42:13 AM,01/31/2016 09:44:41 AM,01/31/2016 09:44:57 AM,01/31/2016 09:46:10 AM,01/31/2016 09:50:35 AM,01/31/2016 10:07:48 AM,01/31/2016 10:16:18 AM,Code 2 Transport,01/31/2016 10:49:03 AM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",160311024-65 +123630270,KM06,12121547,Medical Incident,12/28/2012,12/28/2012,12/28/2012 05:41:10 PM,12/28/2012 05:41:35 PM,12/28/2012 05:42:27 PM,12/28/2012 05:43:06 PM,12/28/2012 05:51:45 PM,12/28/2012 06:02:04 PM,12/28/2012 06:31:27 PM,Code 2 Transport,12/28/2012 07:01:12 PM,700 Block of ANDERSON ST,SF,94110,B06,32,5743,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7340529990627, -122.415549507157)",123630270-KM06 +132680080,E13,13090906,Medical Incident,09/25/2013,09/25/2013,09/25/2013 08:18:03 AM,09/25/2013 08:20:38 AM,09/25/2013 08:21:03 AM,09/25/2013 08:22:06 AM,09/25/2013 08:26:43 AM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Patient Declined Transport,09/25/2013 08:44:34 AM,500 Block of BATTERY ST,SF,94111,B01,13,1156,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7963352483576, -122.400515223296)",132680080-E13 +103170122,B01,10101557,Alarms,11/13/2010,11/13/2010,11/13/2010 10:01:29 AM,11/13/2010 10:02:19 AM,11/13/2010 10:02:27 AM,11/13/2010 10:03:17 AM,11/13/2010 10:05:50 AM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,No Merit,11/13/2010 10:08:49 AM,500 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7944323288641, -122.403161406047)",103170122-B01 +113180236,E03,11105687,Medical Incident,11/14/2011,11/14/2011,11/14/2011 04:35:31 PM,11/14/2011 04:36:37 PM,11/14/2011 04:36:52 PM,11/14/2011 04:38:18 PM,11/14/2011 04:39:22 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/14/2011 04:47:04 PM,1300 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,true,,1,ENGINE,1,4,2,Western Addition,"(37.7873894173843, -122.422569914317)",113180236-E03 +110600173,E03,11019685,Medical Incident,03/01/2011,03/01/2011,03/01/2011 01:08:31 PM,03/01/2011 01:10:27 PM,03/01/2011 01:11:01 PM,03/01/2011 01:11:47 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 01:12:54 PM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",110600173-E03 +121810236,E25,12060311,Structure Fire,06/29/2012,06/29/2012,06/29/2012 03:22:13 PM,06/29/2012 03:22:38 PM,06/29/2012 03:22:51 PM,06/29/2012 03:23:46 PM,06/29/2012 03:51:10 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 04:59:56 PM,100 Block of CHARTER OAK AVE,SF,94124,B10,42,6381,3,3,3,true,Fire,1,ENGINE,11,10,10,Bayview Hunters Point,"(37.7362893426109, -122.404797186551)",121810236-E25 +121590009,E21,12052466,Medical Incident,06/07/2012,06/06/2012,06/07/2012 01:52:57 AM,06/07/2012 01:53:44 AM,06/07/2012 01:54:41 AM,06/07/2012 01:55:53 AM,06/07/2012 01:58:05 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/07/2012 02:07:52 AM,100 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7709008861602, -122.443674283595)",121590009-E21 +123220125,E16,12106992,Water Rescue,11/17/2012,11/17/2012,11/17/2012 08:04:15 AM,11/17/2012 08:06:11 AM,11/17/2012 08:06:40 AM,04/25/2016 01:55:46 PM,11/17/2012 09:32:03 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/17/2012 09:51:24 AM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,15,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",123220125-E16 +131430344,AM18,13048634,Medical Incident,05/23/2013,05/23/2013,05/23/2013 08:25:51 PM,05/23/2013 08:31:03 PM,05/23/2013 08:33:15 PM,05/23/2013 08:34:04 PM,05/23/2013 08:40:22 PM,05/23/2013 09:22:00 PM,05/23/2013 09:35:44 PM,Code 2 Transport,05/23/2013 10:27:50 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",131430344-AM18 +110460310,64,11015340,Medical Incident,02/15/2011,02/15/2011,02/15/2011 08:03:05 PM,02/15/2011 08:04:01 PM,02/15/2011 08:04:53 PM,02/15/2011 08:05:08 PM,02/15/2011 08:08:23 PM,02/15/2011 08:25:37 PM,02/15/2011 08:44:19 PM,Code 2 Transport,02/15/2011 08:51:35 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",110460310-64 +102520230,T10,10079658,Structure Fire,09/09/2010,09/09/2010,09/09/2010 03:44:15 PM,09/09/2010 03:46:27 PM,09/09/2010 03:46:44 PM,09/09/2010 03:47:51 PM,09/09/2010 03:50:57 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/09/2010 03:58:14 PM,1700 Block of FULTON ST,SF,94117,B05,21,4463,3,3,3,true,,1,TRUCK,6,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",102520230-T10 +122270182,E06,12075258,Medical Incident,08/14/2012,08/14/2012,08/14/2012 02:12:03 PM,08/14/2012 02:13:11 PM,08/14/2012 02:13:25 PM,08/14/2012 02:16:33 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/14/2012 02:17:50 PM,100 Block of BRODERICK ST,SF,94117,B05,21,4246,E,E,3,true,Potentially Life-Threatening,1,ENGINE,4,5,5,Haight Ashbury,"(37.7715322141424, -122.438735800595)",122270182-E06 +160570390,KM07,16022614,Medical Incident,02/26/2016,02/25/2016,02/26/2016 04:42:19 AM,02/26/2016 04:44:27 AM,02/26/2016 04:45:08 AM,02/26/2016 04:45:54 AM,02/26/2016 04:55:38 AM,02/26/2016 05:24:19 AM,02/26/2016 05:38:39 AM,Code 2 Transport,02/26/2016 06:29:05 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160570390-KM07 +122370139,E19,12078473,Other,08/24/2012,08/24/2012,08/24/2012 12:28:17 PM,08/24/2012 12:29:21 PM,08/24/2012 12:30:24 PM,08/24/2012 12:31:25 PM,08/24/2012 12:33:04 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 12:43:56 PM,2900 Block of 21ST AVE,SF,94132,B08,19,8732,3,3,3,true,Alarm,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7336313643554, -122.477083030431)",122370139-E19 +102980048,T03,10095054,Structure Fire,10/25/2010,10/24/2010,10/25/2010 05:43:49 AM,10/25/2010 05:43:49 AM,10/25/2010 05:44:07 AM,10/25/2010 05:45:32 AM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Other,10/25/2010 05:48:01 AM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",102980048-T03 +121630375,66,12054213,Medical Incident,06/11/2012,06/11/2012,06/11/2012 09:33:52 PM,06/11/2012 09:34:18 PM,06/11/2012 09:34:41 PM,06/11/2012 09:35:22 PM,06/11/2012 09:38:51 PM,06/11/2012 10:05:59 PM,06/11/2012 10:19:03 PM,Code 2 Transport,06/11/2012 11:08:49 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",121630375-66 +160023671,52,16000975,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:40:15 PM,01/02/2016 11:41:48 PM,01/02/2016 11:42:08 PM,01/02/2016 11:42:16 PM,01/03/2016 12:01:16 AM,01/03/2016 12:25:47 AM,01/03/2016 12:36:48 AM,Code 2 Transport,01/03/2016 01:44:51 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160023671-52 +102320300,RC1,10073107,Medical Incident,08/20/2010,08/20/2010,08/20/2010 06:41:54 PM,08/20/2010 06:42:15 PM,08/20/2010 06:42:48 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/20/2010 07:07:47 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",102320300-RC1 +121390186,KM11,12046164,Medical Incident,05/18/2012,05/18/2012,05/18/2012 01:40:04 PM,05/18/2012 01:41:25 PM,05/18/2012 01:42:25 PM,05/18/2012 01:43:39 PM,05/18/2012 01:50:23 PM,05/18/2012 01:58:06 PM,05/18/2012 02:14:32 PM,Code 2 Transport,05/18/2012 02:51:03 PM,0 Block of MASON ST,SF,94102,B03,1,1365,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",121390186-KM11 +140290302,E05,14009989,Medical Incident,01/29/2014,01/29/2014,01/29/2014 06:04:11 PM,01/29/2014 06:05:38 PM,01/29/2014 06:14:00 PM,01/29/2014 06:14:59 PM,01/29/2014 06:17:20 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/29/2014 06:53:03 PM,1200 Block of FILLMORE ST,SF,94115,B05,5,3535,,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",140290302-E05 +102260234,T01,10071194,Structure Fire,08/14/2010,08/14/2010,08/14/2010 04:34:23 PM,08/14/2010 04:34:23 PM,08/14/2010 04:35:12 PM,08/14/2010 04:37:26 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 04:57:11 PM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",102260234-T01 +122360262,E21,12078255,Electrical Hazard,08/23/2012,08/23/2012,08/23/2012 05:03:38 PM,08/23/2012 05:07:08 PM,08/23/2012 05:07:24 PM,08/23/2012 05:09:39 PM,08/23/2012 05:10:05 PM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Fire,08/23/2012 05:20:54 PM,600 Block of SCOTT ST,SF,94117,B05,21,4136,3,3,3,false,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7756631447471, -122.436291871367)",122360262-E21 +121960105,T19,12065138,Medical Incident,07/14/2012,07/14/2012,07/14/2012 08:58:38 AM,07/14/2012 09:01:14 AM,07/14/2012 09:02:26 AM,07/14/2012 09:03:38 AM,07/14/2012 09:07:17 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/14/2012 09:08:24 AM,3800 Block of OCEAN AVE,SF,94132,B08,19,8742,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,8,7,Sunset/Parkside,"(37.7322026123682, -122.48583077494)",121960105-T19 +110010174,E24,11000117,Medical Incident,01/01/2011,12/31/2010,01/01/2011 02:36:16 AM,01/01/2011 02:36:46 AM,01/01/2011 02:39:34 AM,01/01/2011 02:40:30 AM,01/01/2011 02:43:26 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 02:56:08 AM,4100 Block of 18TH ST,SF,94114,B05,6,5415,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7608016861704, -122.435552336885)",110010174-E24 +131830318,E05,13062471,Medical Incident,07/02/2013,07/02/2013,07/02/2013 07:36:21 PM,07/02/2013 07:37:17 PM,07/02/2013 07:40:37 PM,07/02/2013 07:41:34 PM,07/02/2013 07:43:45 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Other,07/02/2013 07:48:24 PM,1500 Block of MCALLISTER ST,SF,94115,B05,21,4151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Western Addition,"(37.7779545300539, -122.437542013129)",131830318-E05 +132400340,AM14,13081098,Medical Incident,08/28/2013,08/28/2013,08/28/2013 09:00:40 PM,08/28/2013 09:04:00 PM,08/28/2013 09:08:35 PM,08/28/2013 09:09:20 PM,08/28/2013 09:25:23 PM,08/28/2013 09:33:43 PM,08/28/2013 09:46:27 PM,Code 2 Transport,08/28/2013 10:12:06 PM,0 Block of SPEAR ST,SF,94105,B03,13,2115,3,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.793107178894, -122.394870688082)",132400340-AM14 +102310120,96,10072651,Medical Incident,08/19/2010,08/19/2010,08/19/2010 10:21:28 AM,08/19/2010 10:23:01 AM,08/19/2010 10:25:26 AM,08/19/2010 10:25:33 AM,08/19/2010 10:30:29 AM,08/19/2010 11:19:09 AM,08/19/2010 11:56:24 AM,Code 2 Transport,08/19/2010 12:12:42 PM,MARKET ST/5TH ST,SF,94103,B03,1,1364,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",102310120-96 +160290089,65,16011283,Medical Incident,01/29/2016,01/28/2016,01/29/2016 12:45:28 AM,01/29/2016 12:45:28 AM,01/29/2016 12:45:47 AM,01/29/2016 12:47:00 AM,01/29/2016 12:51:26 AM,01/29/2016 01:45:26 AM,01/29/2016 01:45:29 AM,Code 2 Transport,01/29/2016 01:45:31 AM,24TH ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7523727894276, -122.416265511485)",160290089-65 +103210145,93,10102857,Medical Incident,11/17/2010,11/17/2010,11/17/2010 10:35:15 AM,11/17/2010 10:35:55 AM,11/17/2010 10:36:33 AM,11/17/2010 10:37:06 AM,11/17/2010 10:41:47 AM,11/17/2010 10:55:35 AM,11/17/2010 10:56:29 AM,Code 2 Transport,11/17/2010 11:36:56 AM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,3,3,3,true,,1,MEDIC,2,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",103210145-93 +103580244,E19,10114980,Odor (Strange / Unknown),12/24/2010,12/24/2010,12/24/2010 05:42:39 PM,12/24/2010 05:47:36 PM,12/24/2010 05:48:21 PM,12/24/2010 05:50:02 PM,12/24/2010 05:52:43 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 06:15:53 PM,100 Block of LAKE MERCED HILL ST,SF,94132,B08,19,8764,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7105915232014, -122.483990040237)",103580244-E19 +133170139,B01,13107696,Alarms,11/13/2013,11/13/2013,11/13/2013 11:01:12 AM,11/13/2013 11:03:04 AM,11/13/2013 11:03:09 AM,11/13/2013 11:04:32 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 11:05:12 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,3,3,false,Alarm,1,CHIEF,4,2,6,South of Market,"(37.7734664897325, -122.413546904215)",133170139-B01 +160843533,KM04,16033522,Medical Incident,03/24/2016,03/24/2016,03/24/2016 07:06:59 PM,03/24/2016 07:09:34 PM,03/24/2016 07:10:13 PM,03/24/2016 07:15:45 PM,03/24/2016 07:15:45 PM,03/24/2016 07:32:42 PM,03/24/2016 08:04:30 PM,Code 2 Transport,03/24/2016 08:26:34 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160843533-KM04 +120950118,AM16,12031415,Medical Incident,04/04/2012,04/04/2012,04/04/2012 10:55:52 AM,04/04/2012 10:57:52 AM,04/04/2012 10:58:22 AM,04/04/2012 10:59:02 AM,04/04/2012 11:05:14 AM,04/04/2012 11:14:20 AM,04/04/2012 11:32:47 AM,Code 2 Transport,04/04/2012 12:31:54 PM,31ST AV/NORIEGA ST,SF,94122,B08,18,7515,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7536741932902, -122.489323710584)",120950118-AM16 +120400339,64,12013475,Medical Incident,02/09/2012,02/09/2012,02/09/2012 09:45:53 PM,02/09/2012 09:46:35 PM,02/09/2012 09:46:59 PM,02/09/2012 09:47:24 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/09/2012 09:51:46 PM,300 Block of CONNECTICUT ST,SF,94107,B03,37,2462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7618859006044, -122.397364393329)",120400339-64 +113040102,84,11100866,Medical Incident,10/31/2011,10/31/2011,10/31/2011 09:24:11 AM,10/31/2011 09:24:11 AM,10/31/2011 09:24:11 AM,10/31/2011 09:26:24 AM,10/31/2011 09:31:02 AM,10/31/2011 09:40:56 AM,10/31/2011 09:57:55 AM,Code 2 Transport,10/31/2011 10:19:14 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",113040102-84 +113250242,E42,11107979,Medical Incident,11/21/2011,11/21/2011,11/21/2011 03:08:59 PM,11/21/2011 03:11:23 PM,11/21/2011 03:13:20 PM,11/21/2011 03:15:02 PM,11/21/2011 03:15:53 PM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,Other,11/21/2011 03:28:58 PM,0 Block of AUGUSTA ST,SF,94124,B10,42,6364,3,2,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7345219151106, -122.402450703554)",113250242-E42 +160834124,53,16033173,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:28:52 PM,03/23/2016 10:28:52 PM,03/23/2016 10:29:10 PM,03/23/2016 10:29:21 PM,03/23/2016 10:56:42 PM,03/23/2016 10:56:47 PM,03/23/2016 11:19:07 PM,Code 2 Transport,03/24/2016 12:22:00 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160834124-53 +160282226,62,16011134,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:47:01 PM,01/28/2016 02:49:01 PM,01/28/2016 02:49:53 PM,01/28/2016 02:50:03 PM,01/28/2016 02:59:09 PM,01/28/2016 03:14:31 PM,01/28/2016 03:16:18 PM,Code 2 Transport,01/28/2016 04:02:37 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160282226-62 +112320363,E43,11076752,Medical Incident,08/20/2011,08/20/2011,08/20/2011 10:04:56 PM,08/20/2011 10:05:22 PM,08/20/2011 10:06:57 PM,08/20/2011 10:08:22 PM,08/20/2011 10:10:48 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/20/2011 10:25:11 PM,900 Block of AVALON AVE,SF,94112,B09,43,6164,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7245111737707, -122.424676766119)",112320363-E43 +160753466,KM15,16029871,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:57:16 PM,03/15/2016 07:58:20 PM,03/15/2016 07:58:29 PM,03/15/2016 07:59:31 PM,03/15/2016 08:09:01 PM,03/15/2016 08:26:12 PM,03/15/2016 08:45:58 PM,Code 2 Transport,03/15/2016 09:06:45 PM,1200 Block of 34TH AVE,San Francisco,94122,B08,23,7537,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7637961722893, -122.493195707857)",160753466-KM15 +131120144,96,13037656,Medical Incident,04/22/2013,04/22/2013,04/22/2013 10:46:00 AM,04/22/2013 10:47:14 AM,04/22/2013 10:49:00 AM,04/22/2013 10:50:05 AM,04/22/2013 10:56:18 AM,04/22/2013 11:16:13 AM,04/22/2013 11:37:35 AM,Code 2 Transport,04/22/2013 12:40:28 PM,1100 Block of MARKET ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7807642254398, -122.412320907436)",131120144-96 +112300173,AM04,11075946,Medical Incident,08/18/2011,08/18/2011,08/18/2011 12:39:45 PM,08/18/2011 12:39:46 PM,08/18/2011 12:40:08 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,04/25/2016 02:03:07 PM,CEDAR ST/POLK ST,SF,94109,B04,3,1641,2,2,2,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",112300173-AM04 +122910144,B10,12096309,Structure Fire,10/17/2012,10/17/2012,10/17/2012 10:40:24 AM,10/17/2012 10:40:30 AM,10/17/2012 10:40:36 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 10:41:57 AM,300 Block of HARBOR RD,SF,94124,B10,25,666,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7337140340786, -122.380588546877)",122910144-B10 +112820191,60,11093338,Structure Fire,10/09/2011,10/09/2011,10/09/2011 01:32:18 PM,10/09/2011 01:33:40 PM,10/09/2011 01:33:54 PM,10/09/2011 01:34:07 PM,10/09/2011 01:39:00 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 01:52:31 PM,100 Block of MERCED AVE,SF,94127,B08,39,8617,3,3,3,true,,1,MEDIC,4,8,7,West of Twin Peaks,"(37.744049522508, -122.462108757816)",112820191-60 +122180147,E31,12072278,Traffic Collision,08/05/2012,08/05/2012,08/05/2012 10:50:42 AM,08/05/2012 10:53:47 AM,08/05/2012 10:55:52 AM,08/05/2012 10:57:15 AM,08/05/2012 11:00:17 AM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 11:07:06 AM,BALBOA ST/14TH AV,SF,94118,B07,31,7145,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7768440093858, -122.472571669495)",122180147-E31 +160473931,78,16019153,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:33:21 PM,02/16/2016 10:38:46 PM,02/16/2016 10:39:20 PM,02/16/2016 10:39:36 PM,02/16/2016 11:02:43 PM,02/16/2016 11:20:53 PM,02/16/2016 11:40:33 PM,Code 2 Transport,02/17/2016 12:15:25 AM,300 Block of SWEENY ST,San Francisco,94134,B09,42,6367,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,9,Portola,"(37.7317997290088, -122.41202117343)",160473931-78 +122750199,KM04,12090750,Medical Incident,10/01/2012,10/01/2012,10/01/2012 01:13:44 PM,10/01/2012 01:15:53 PM,10/01/2012 01:18:17 PM,10/01/2012 01:19:08 PM,10/01/2012 01:25:59 PM,10/01/2012 01:57:34 PM,10/01/2012 02:46:33 PM,Code 2 Transport,10/01/2012 02:59:46 PM,2700 Block of 39TH AVE,SF,94116,B08,18,7616,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7355911537064, -122.496591052463)",122750199-KM04 +113090099,RC2,11102620,Medical Incident,11/05/2011,11/05/2011,11/05/2011 09:29:28 AM,11/05/2011 09:29:41 AM,11/05/2011 09:29:49 AM,04/25/2016 02:01:48 PM,11/05/2011 09:31:59 AM,04/25/2016 02:01:48 PM,04/25/2016 02:01:48 PM,No Merit,11/05/2011 09:55:29 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,,1,RESCUE CAPTAIN,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",113090099-RC2 +160263450,71,16010460,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:23:39 PM,01/26/2016 08:25:15 PM,01/26/2016 08:25:26 PM,01/26/2016 08:25:33 PM,01/26/2016 08:38:32 PM,01/26/2016 08:54:00 PM,01/26/2016 09:03:22 PM,Code 2 Transport,01/26/2016 09:55:57 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160263450-71 +111940328,59,11064180,Medical Incident,07/13/2011,07/13/2011,07/13/2011 09:04:03 PM,07/13/2011 09:05:14 PM,07/13/2011 09:05:46 PM,07/13/2011 09:06:29 PM,07/13/2011 09:16:00 PM,07/13/2011 09:26:35 PM,07/13/2011 09:44:19 PM,Code 2 Transport,07/13/2011 10:15:37 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",111940328-59 +130380303,77,13013092,Traffic Collision,02/07/2013,02/07/2013,02/07/2013 07:33:34 PM,02/07/2013 07:37:02 PM,02/07/2013 07:37:25 PM,02/07/2013 07:37:40 PM,02/07/2013 07:49:44 PM,02/07/2013 07:58:10 PM,02/07/2013 08:25:19 PM,Code 2 Transport,02/07/2013 08:59:54 PM,CHESTER AV/ALEMANY BL,SF,94132,B09,33,8412,2,2,2,false,Non Life-threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7098998478298, -122.47040910045)",130380303-77 +103230352,77,10103614,Medical Incident,11/19/2010,11/19/2010,11/19/2010 08:35:11 PM,11/19/2010 08:35:51 PM,11/19/2010 08:36:21 PM,11/19/2010 08:36:54 PM,11/19/2010 08:39:59 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Against Medical Advice,11/19/2010 09:22:06 PM,1500 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7292122545104, -122.390956947476)",103230352-77 +160770969,KM09,16030492,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:14:39 AM,03/17/2016 09:17:34 AM,03/17/2016 09:18:00 AM,03/17/2016 09:23:23 AM,03/17/2016 09:23:23 AM,03/17/2016 09:39:49 AM,03/17/2016 10:05:31 AM,Code 2 Transport,03/17/2016 10:30:55 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160770969-KM09 +132140266,RC2,13072332,Medical Incident,08/02/2013,08/02/2013,08/02/2013 04:31:12 PM,08/02/2013 04:31:43 PM,08/02/2013 04:33:49 PM,04/25/2016 01:51:30 PM,08/02/2013 04:35:43 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 05:10:04 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",132140266-RC2 +110390226,E26,11012963,Alarms,02/08/2011,02/08/2011,02/08/2011 02:32:35 PM,02/08/2011 02:33:13 PM,02/08/2011 02:33:22 PM,02/08/2011 02:34:39 PM,02/08/2011 02:37:10 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 03:10:28 PM,900 Block of CHENERY ST,SF,94131,B06,26,8175,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7350908240715, -122.437272445338)",110390226-E26 +130950120,E20,13031755,Medical Incident,04/05/2013,04/05/2013,04/05/2013 10:22:06 AM,04/05/2013 10:22:31 AM,04/05/2013 10:22:39 AM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,Other,04/05/2013 10:22:48 AM,8TH AV/KIRKHAM ST,SF,94122,B08,22,7331,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,5,Inner Sunset,"(37.7603584606606, -122.464981053248)",130950120-E20 +121750317,77,12058223,Medical Incident,06/23/2012,06/23/2012,06/23/2012 06:25:40 PM,06/23/2012 06:26:02 PM,06/23/2012 06:27:00 PM,06/23/2012 06:27:09 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 06:27:45 PM,3100 Block of 25TH ST,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7510387026502, -122.412580809695)",121750317-77 +121850375,B01,12061788,Alarms,07/03/2012,07/03/2012,07/03/2012 10:38:05 PM,07/03/2012 10:39:18 PM,07/03/2012 10:39:51 PM,07/03/2012 10:41:43 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Fire,07/03/2012 10:47:17 PM,200 Block of CALIFORNIA ST,SF,94111,B01,13,1162,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7933383335289, -122.399381167233)",121850375-B01 +111980222,KM12,11065358,Medical Incident,07/17/2011,07/17/2011,07/17/2011 03:45:23 PM,07/17/2011 03:46:41 PM,07/17/2011 03:46:48 PM,07/17/2011 03:59:04 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 04:01:38 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,,1,PRIVATE,5,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",111980222-KM12 +140050144,88,14001768,Medical Incident,01/05/2014,01/05/2014,01/05/2014 10:39:42 AM,01/05/2014 10:42:30 AM,01/05/2014 10:46:32 AM,01/05/2014 10:46:32 AM,01/05/2014 10:51:55 AM,01/05/2014 11:09:44 AM,01/05/2014 11:39:28 AM,Code 2 Transport,01/05/2014 12:06:16 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",140050144-88 +110510236,KM12,11016930,Medical Incident,02/20/2011,02/20/2011,02/20/2011 03:08:37 PM,02/20/2011 03:12:38 PM,02/20/2011 03:13:21 PM,02/20/2011 03:17:07 PM,02/20/2011 03:23:42 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Patient Declined Transport,02/20/2011 03:38:30 PM,0 Block of MONTCALM ST,SF,94110,B06,9,5672,2,2,2,false,,1,PRIVATE,1,6,9,Bernal Heights,"(37.7472040308887, -122.405898418864)",110510236-KM12 +140210195,E07,14007196,Medical Incident,01/21/2014,01/21/2014,01/21/2014 01:59:08 PM,01/21/2014 02:00:58 PM,01/21/2014 02:01:54 PM,01/21/2014 02:02:30 PM,01/21/2014 02:05:29 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/21/2014 02:20:02 PM,0 Block of LUCKY ST,SF,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7517329980946, -122.413509818711)",140210195-E07 +160224009,61,16008992,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:50:58 PM,01/22/2016 11:50:58 PM,01/22/2016 11:52:06 PM,01/22/2016 11:52:13 PM,01/22/2016 11:57:05 PM,01/23/2016 12:02:37 AM,01/23/2016 12:25:28 AM,Code 2 Transport,01/23/2016 12:54:58 AM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7892754139105, -122.407765078811)",160224009-61 +120750125,KM04,12024862,Medical Incident,03/15/2012,03/15/2012,03/15/2012 10:00:31 AM,03/15/2012 10:02:18 AM,03/15/2012 10:04:41 AM,03/15/2012 10:06:36 AM,03/15/2012 10:21:24 AM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 10:24:16 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",120750125-KM04 +160193392,79,16007789,Traffic Collision,01/19/2016,01/19/2016,01/19/2016 08:37:04 PM,01/19/2016 08:37:04 PM,01/19/2016 08:37:27 PM,01/19/2016 08:41:57 PM,01/19/2016 08:41:59 PM,01/19/2016 08:46:21 PM,01/19/2016 08:56:13 PM,Code 3 Transport,01/19/2016 09:25:36 PM,FELL ST/CLAYTON ST,San Francisco,94117,B05,21,4514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",160193392-79 +130340071,E05,13011526,Alarms,02/03/2013,02/02/2013,02/03/2013 05:53:56 AM,02/03/2013 05:55:27 AM,02/03/2013 05:55:34 AM,02/03/2013 05:56:47 AM,02/03/2013 05:57:55 AM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 06:04:00 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,true,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",130340071-E05 +160182039,79,16007275,Medical Incident,01/18/2016,01/18/2016,01/18/2016 03:24:44 PM,01/18/2016 03:24:44 PM,01/18/2016 03:25:04 PM,01/18/2016 03:25:09 PM,01/18/2016 03:31:37 PM,01/18/2016 03:44:51 PM,01/18/2016 03:50:38 PM,Code 2 Transport,01/18/2016 04:27:38 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160182039-79 +160373554,91,16014904,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:15:55 PM,02/06/2016 08:16:57 PM,02/06/2016 08:20:36 PM,02/06/2016 08:20:47 PM,02/06/2016 08:52:25 PM,02/06/2016 09:06:21 PM,02/06/2016 09:24:03 PM,Code 2 Transport,02/06/2016 10:08:12 PM,1800 Block of OAKDALE AVE,San Francisco,94124,B10,42,6444,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375042189557, -122.395572399938)",160373554-91 +160392128,50,16015668,Medical Incident,02/08/2016,02/08/2016,02/08/2016 02:45:35 PM,02/08/2016 02:47:38 PM,02/08/2016 02:48:09 PM,02/08/2016 02:48:17 PM,02/08/2016 02:56:01 PM,02/08/2016 03:29:58 PM,02/08/2016 03:44:28 PM,Code 2 Transport,02/08/2016 04:25:23 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",160392128-50 +120220043,81,12007378,Medical Incident,01/22/2012,01/21/2012,01/22/2012 02:22:27 AM,01/22/2012 02:28:21 AM,01/22/2012 02:36:50 AM,01/22/2012 02:36:54 AM,01/22/2012 02:52:17 AM,01/22/2012 02:58:53 AM,01/22/2012 03:10:32 AM,Code 3 Transport,01/22/2012 03:27:56 AM,400 Block of STANYAN ST,SF,94117,B05,21,455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",120220043-81 +122190357,B07,12072804,Alarms,08/06/2012,08/06/2012,08/06/2012 09:49:29 PM,08/06/2012 09:51:22 PM,08/06/2012 09:52:10 PM,08/06/2012 09:53:21 PM,08/06/2012 09:55:10 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 09:59:56 PM,400 Block of 18TH AVE,SF,94121,B07,31,7161,3,3,3,false,Alarm,1,CHIEF,2,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",122190357-B07 +122100339,E05,12069903,Medical Incident,07/28/2012,07/28/2012,07/28/2012 09:51:20 PM,07/28/2012 09:52:58 PM,07/28/2012 09:53:38 PM,07/28/2012 09:54:38 PM,07/28/2012 09:57:00 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 10:01:27 PM,GEARY BL/STEINER ST,SF,94115,B04,5,3623,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",122100339-E05 +123140202,E19,12104504,Medical Incident,11/09/2012,11/09/2012,11/09/2012 01:15:11 PM,11/09/2012 01:17:06 PM,11/09/2012 01:18:58 PM,11/09/2012 01:19:51 PM,11/09/2012 01:24:42 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 01:34:36 PM,2700 Block of 41ST AVE,SF,94116,B08,19,7641,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7354674300338, -122.498871451486)",123140202-E19 +160630292,64,16024936,Medical Incident,03/03/2016,03/02/2016,03/03/2016 03:23:40 AM,03/03/2016 03:23:40 AM,03/03/2016 03:24:06 AM,03/03/2016 03:24:16 AM,03/03/2016 03:27:48 AM,03/03/2016 03:42:29 AM,03/03/2016 03:52:53 AM,Code 3 Transport,03/03/2016 05:07:12 AM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",160630292-64 +131250122,E13,13042187,Alarms,05/05/2013,05/05/2013,05/05/2013 10:48:55 AM,05/05/2013 10:50:04 AM,05/05/2013 10:50:11 AM,05/05/2013 10:51:44 AM,05/05/2013 10:52:45 AM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 11:02:36 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Alarm,1,ENGINE,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",131250122-E13 +123070255,RS1,12102071,Medical Incident,11/02/2012,11/02/2012,11/02/2012 04:04:33 PM,11/02/2012 04:06:36 PM,11/02/2012 04:07:00 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Other,04/25/2016 01:55:59 PM,26TH ST/VALENCIA ST,SF,94110,B06,11,5612,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,6,9,Mission,"(37.7489065309397, -122.420353712148)",123070255-RS1 +133250160,E03,13110361,Other,11/21/2013,11/21/2013,11/21/2013 11:50:46 AM,11/21/2013 11:51:55 AM,11/21/2013 11:52:36 AM,11/21/2013 11:52:44 AM,11/21/2013 11:54:32 AM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Other,11/21/2013 12:03:12 PM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",133250160-E03 +160223909,73,16008980,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:08:07 PM,01/22/2016 11:11:38 PM,01/22/2016 11:11:45 PM,01/22/2016 11:12:10 PM,01/22/2016 11:18:56 PM,01/22/2016 11:30:49 PM,01/22/2016 11:40:38 PM,Code 2 Transport,01/23/2016 12:28:29 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160223909-73 +122750078,93,12090653,Traffic Collision,10/01/2012,10/01/2012,10/01/2012 08:14:00 AM,10/01/2012 08:14:00 AM,10/01/2012 08:14:29 AM,10/01/2012 08:15:20 AM,10/01/2012 08:21:03 AM,10/01/2012 08:35:42 AM,10/01/2012 09:00:39 AM,Code 3 Transport,10/01/2012 09:48:53 AM,42ND AV/POINT LOBOS AV,SF,94121,B07,34,7265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.77960973574, -122.502972263941)",122750078-93 +112140124,B03,11070581,Alarms,08/02/2011,08/02/2011,08/02/2011 10:38:37 AM,08/02/2011 10:39:41 AM,08/02/2011 10:42:16 AM,08/02/2011 10:43:11 AM,08/02/2011 10:46:50 AM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 10:54:27 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,,1,CHIEF,1,3,6,South of Market,"(37.7854659679151, -122.405582629186)",112140124-B03 +122680288,66,12088622,Medical Incident,09/24/2012,09/24/2012,09/24/2012 05:53:23 PM,09/24/2012 05:53:48 PM,09/24/2012 05:54:03 PM,09/24/2012 05:54:19 PM,09/24/2012 06:00:31 PM,09/24/2012 06:10:32 PM,09/24/2012 06:17:54 PM,Code 2 Transport,09/24/2012 06:39:26 PM,300 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",122680288-66 +130180257,85,13006190,Medical Incident,01/18/2013,01/18/2013,01/18/2013 02:53:50 PM,01/18/2013 02:58:25 PM,01/18/2013 02:58:38 PM,01/18/2013 02:58:48 PM,04/25/2016 01:54:44 PM,01/18/2013 03:18:06 PM,01/18/2013 03:45:01 PM,Code 2 Transport,01/18/2013 04:06:31 PM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7697840925361, -122.449122960735)",130180257-85 +160730068,85,16028829,Medical Incident,03/13/2016,03/12/2016,03/13/2016 12:25:12 AM,03/13/2016 12:26:07 AM,03/13/2016 12:26:35 AM,03/13/2016 12:27:01 AM,03/13/2016 12:30:06 AM,03/13/2016 12:46:46 AM,03/13/2016 12:51:48 AM,Code 2 Transport,03/13/2016 01:14:40 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160730068-85 +112650052,T11,11087417,Alarms,09/22/2011,09/21/2011,09/22/2011 05:44:04 AM,09/22/2011 05:45:47 AM,09/22/2011 05:46:05 AM,09/22/2011 05:48:13 AM,09/22/2011 05:50:49 AM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/22/2011 06:03:17 AM,1200 Block of SANCHEZ ST,SF,94114,B06,11,5537,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7495570097851, -122.429530400976)",112650052-T11 +160773234,71,16030730,Medical Incident,03/17/2016,03/17/2016,03/17/2016 06:05:24 PM,03/17/2016 06:05:24 PM,03/17/2016 06:06:00 PM,03/17/2016 06:06:16 PM,03/17/2016 06:20:46 PM,03/17/2016 06:32:23 PM,03/17/2016 06:53:07 PM,Code 2 Transport,03/17/2016 07:13:24 PM,23RD ST/SHOTWELL ST,San Francisco,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7540335346403, -122.415320140499)",160773234-71 +160850577,60,16033659,Medical Incident,03/25/2016,03/24/2016,03/25/2016 06:59:14 AM,03/25/2016 06:59:14 AM,03/25/2016 07:00:17 AM,03/25/2016 07:00:30 AM,03/25/2016 07:06:39 AM,03/25/2016 07:35:44 AM,03/25/2016 07:54:37 AM,Code 2 Transport,03/25/2016 08:26:14 AM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160850577-60 +131110305,E21,13037511,Structure Fire,04/21/2013,04/21/2013,04/21/2013 08:53:26 PM,04/21/2013 08:54:52 PM,04/21/2013 08:55:16 PM,04/21/2013 08:56:04 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Other,04/21/2013 08:57:53 PM,4200 Block of 18TH ST,SF,94114,B05,6,5415,3,3,3,false,Alarm,1,ENGINE,12,5,8,Castro/Upper Market,"(37.7608458177764, -122.436657685547)",131110305-E21 +133040303,86,13103361,Medical Incident,10/31/2013,10/31/2013,10/31/2013 05:55:06 PM,10/31/2013 05:56:29 PM,10/31/2013 05:56:46 PM,10/31/2013 05:57:02 PM,10/31/2013 06:07:41 PM,10/31/2013 06:22:54 PM,10/31/2013 07:19:24 PM,Code 2 Transport,10/31/2013 07:19:58 PM,0 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",133040303-86 +130800124,E36,13026693,HazMat,03/21/2013,03/21/2013,03/21/2013 10:05:37 AM,03/21/2013 10:10:20 AM,03/21/2013 10:17:41 AM,03/21/2013 10:28:14 AM,03/21/2013 10:42:45 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 12:31:04 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,ENGINE,3,None,None,None,"(37.6168823239251, -122.384094238098)",130800124-E36 +111170062,86,11038527,Medical Incident,04/27/2011,04/26/2011,04/27/2011 07:36:08 AM,04/27/2011 07:39:10 AM,04/27/2011 07:39:33 AM,04/27/2011 07:40:37 AM,04/27/2011 07:44:19 AM,04/27/2011 08:10:02 AM,04/27/2011 08:22:11 AM,Code 2 Transport,04/27/2011 07:58:32 AM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",111170062-86 +132350189,E13,13079312,Medical Incident,08/23/2013,08/23/2013,08/23/2013 12:45:21 PM,08/23/2013 12:46:32 PM,08/23/2013 12:46:46 PM,04/25/2016 01:51:09 PM,08/23/2013 12:49:16 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/23/2013 12:58:43 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",132350189-E13 +131000323,54,13033722,Medical Incident,04/10/2013,04/10/2013,04/10/2013 06:43:10 PM,04/10/2013 06:43:44 PM,04/10/2013 06:45:44 PM,04/10/2013 06:46:14 PM,04/10/2013 06:48:59 PM,04/10/2013 07:08:54 PM,04/10/2013 07:38:56 PM,Code 2 Transport,04/10/2013 08:03:59 PM,600 Block of TOWNSEND ST,SF,94103,B03,29,2275,2,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7709789357353, -122.402816011063)",131000323-54 +112960017,E29,11098053,Medical Incident,10/23/2011,10/22/2011,10/23/2011 12:53:00 AM,10/23/2011 12:53:54 AM,10/23/2011 12:54:20 AM,10/23/2011 12:55:40 AM,10/23/2011 12:58:03 AM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 01:10:26 AM,100 Block of UTAH ST,SF,94103,B02,29,2351,3,3,3,true,,1,ENGINE,1,2,10,Mission,"(37.7677826861899, -122.406668803339)",112960017-E29 +160352967,57,16013935,Medical Incident,02/04/2016,02/04/2016,02/04/2016 05:56:51 PM,02/04/2016 05:58:49 PM,02/04/2016 05:59:28 PM,02/04/2016 05:59:36 PM,02/04/2016 06:18:38 PM,02/04/2016 06:41:16 PM,02/04/2016 06:54:02 PM,Code 2 Transport,02/04/2016 07:14:56 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160352967-57 +132240017,E16,13075499,Medical Incident,08/12/2013,08/11/2013,08/12/2013 01:07:07 AM,08/12/2013 01:08:31 AM,08/12/2013 01:08:44 AM,08/12/2013 01:10:23 AM,08/12/2013 01:11:43 AM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/12/2013 01:20:21 AM,MALLORCA WY/CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8006837310432, -122.437299668371)",132240017-E16 +103200053,E38,10102467,Alarms,11/16/2010,11/15/2010,11/16/2010 05:56:54 AM,11/16/2010 05:58:08 AM,11/16/2010 05:58:13 AM,11/16/2010 05:59:36 AM,11/16/2010 06:01:15 AM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 06:15:28 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",103200053-E38 +121560137,RC3,12051604,Medical Incident,06/04/2012,06/04/2012,06/04/2012 10:30:27 AM,06/04/2012 10:31:23 AM,06/04/2012 10:31:52 AM,06/04/2012 10:34:08 AM,06/04/2012 10:38:54 AM,04/25/2016 01:58:22 PM,04/25/2016 01:58:22 PM,Other,06/04/2012 10:48:44 AM,0 Block of MONTEREY BLVD,SF,94131,B09,26,8261,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,9,8,West of Twin Peaks,"(37.7324628415478, -122.434750982103)",121560137-RC3 +130580320,E44,13019560,Medical Incident,02/27/2013,02/27/2013,02/27/2013 05:53:40 PM,02/27/2013 05:56:40 PM,02/27/2013 05:57:00 PM,02/27/2013 05:59:22 PM,02/27/2013 06:02:11 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,02/27/2013 06:13:05 PM,0 Block of RACINE LN,SF,94134,B10,44,6265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Visitacion Valley,"(37.7134529745264, -122.401092818593)",130580320-E44 +102480075,93,10078274,Medical Incident,09/05/2010,09/04/2010,09/05/2010 06:44:54 AM,09/05/2010 06:46:26 AM,09/05/2010 06:47:15 AM,09/05/2010 06:47:33 AM,09/05/2010 06:53:09 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Patient Declined Transport,09/05/2010 07:15:09 AM,0 Block of SPARTA ST,SF,94134,B10,44,6315,2,3,3,true,,1,MEDIC,1,10,10,Visitacion Valley,"(37.7179625135002, -122.403644220317)",102480075-93 +140250272,88,14008654,Medical Incident,01/25/2014,01/25/2014,01/25/2014 06:07:27 PM,01/25/2014 06:07:50 PM,01/25/2014 06:08:58 PM,01/25/2014 06:09:03 PM,01/25/2014 06:29:37 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Patient Declined Transport,01/25/2014 06:45:32 PM,25TH AV/CALIFORNIA ST,SF,94121,B07,14,7214,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7838822347168, -122.485010943843)",140250272-88 +160580097,85,16022948,Medical Incident,02/27/2016,02/26/2016,02/27/2016 12:39:35 AM,02/27/2016 12:42:40 AM,02/27/2016 12:42:56 AM,02/27/2016 12:47:34 AM,02/27/2016 12:55:21 AM,02/27/2016 01:25:29 AM,02/27/2016 01:38:33 AM,Code 2 Transport,02/27/2016 02:33:03 AM,FELTON ST/SAN BRUNO AV,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7300371964722, -122.404592619044)",160580097-85 +160572665,86,16022841,Medical Incident,02/26/2016,02/26/2016,02/26/2016 05:04:23 PM,02/26/2016 05:05:39 PM,02/26/2016 05:06:00 PM,02/26/2016 05:08:43 PM,02/26/2016 05:23:08 PM,02/26/2016 05:36:32 PM,02/26/2016 05:49:42 PM,Code 2 Transport,02/26/2016 06:37:11 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160572665-86 +103280203,B02,10105087,Alarms,11/24/2010,11/24/2010,11/24/2010 03:02:49 PM,11/24/2010 03:04:32 PM,11/24/2010 03:06:10 PM,11/24/2010 03:07:36 PM,11/24/2010 03:09:21 PM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/24/2010 03:09:25 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,false,,1,CHIEF,3,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",103280203-B02 +112200128,RS2,11072652,Medical Incident,08/08/2011,08/08/2011,08/08/2011 10:43:52 AM,08/08/2011 10:45:37 AM,08/08/2011 10:46:19 AM,08/08/2011 10:46:35 AM,08/08/2011 10:48:19 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 10:58:02 AM,2800 Block of 22ND ST,SF,94110,B06,7,5474,3,E,3,false,,1,RESCUE SQUAD,1,6,9,Mission,"(37.7559148150977, -122.411740426812)",112200128-RS2 +160703321,E05,16027998,Medical Incident,03/10/2016,03/10/2016,03/10/2016 08:21:32 PM,03/10/2016 08:22:44 PM,03/10/2016 08:29:16 PM,03/10/2016 08:30:15 PM,03/10/2016 08:34:08 PM,03/10/2016 09:20:00 PM,03/10/2016 09:20:04 PM,Code 3 Transport,03/10/2016 09:20:07 PM,2300 Block of BUCHANAN ST,San Francisco,94115,B04,38,3435,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",160703321-E05 +121530288,55,12050736,Medical Incident,06/01/2012,06/01/2012,06/01/2012 07:02:49 PM,06/01/2012 07:04:14 PM,06/01/2012 07:05:00 PM,06/01/2012 07:07:32 PM,06/01/2012 07:14:39 PM,06/01/2012 07:28:33 PM,06/01/2012 07:43:43 PM,Code 2 Transport,06/01/2012 07:52:37 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",121530288-55 +160531400,88,16021178,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:52:12 AM,02/22/2016 11:53:24 AM,02/22/2016 11:53:46 AM,02/22/2016 11:54:13 AM,02/22/2016 12:12:37 PM,02/22/2016 12:12:43 PM,02/22/2016 12:20:04 PM,Code 2 Transport,02/22/2016 12:58:30 PM,HYDE ST/GOLDEN GATE AV,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",160531400-88 +111430097,54,11047461,Medical Incident,05/23/2011,05/23/2011,05/23/2011 09:15:13 AM,05/23/2011 09:16:30 AM,05/23/2011 09:17:02 AM,05/23/2011 09:17:41 AM,05/23/2011 09:25:47 AM,05/23/2011 09:55:45 AM,05/23/2011 10:12:53 AM,Code 2 Transport,05/23/2011 10:46:00 AM,1000 Block of WASHINGTON ST,SF,94108,B01,2,1415,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7945246981773, -122.410940056689)",111430097-54 +103180035,T01,10101808,Structure Fire,11/14/2010,11/13/2010,11/14/2010 01:49:10 AM,11/14/2010 01:49:10 AM,11/14/2010 01:49:20 AM,11/14/2010 01:50:34 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 01:51:45 AM,10TH ST/FOLSOM ST,SF,94103,B02,36,2343,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7728121600424, -122.412824228759)",103180035-T01 +121750121,KM02,12058052,Medical Incident,06/23/2012,06/23/2012,06/23/2012 09:48:19 AM,06/23/2012 09:49:47 AM,06/23/2012 09:50:15 AM,06/23/2012 09:51:32 AM,06/23/2012 09:56:51 AM,06/23/2012 10:12:09 AM,06/23/2012 10:39:12 AM,Code 2 Transport,06/23/2012 10:54:13 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",121750121-KM02 +112680015,E16,11088426,Traffic Collision,09/25/2011,09/24/2011,09/25/2011 12:46:00 AM,09/25/2011 12:46:13 AM,09/25/2011 12:46:33 AM,09/25/2011 12:47:49 AM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/25/2011 12:50:47 AM,VAN NESS AV/NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,,1,ENGINE,3,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",112680015-E16 +160191977,89,16007660,Medical Incident,01/19/2016,01/19/2016,01/19/2016 01:57:41 PM,01/19/2016 01:57:41 PM,01/19/2016 01:57:53 PM,01/19/2016 01:58:01 PM,01/19/2016 02:07:30 PM,01/19/2016 02:54:35 PM,01/19/2016 03:09:28 PM,Code 2 Transport,01/19/2016 03:46:22 PM,400 Block of 7TH AV,San Francisco,94118,B07,31,7131,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800008159621, -122.46535084744)",160191977-89 +140710196,B03,14023969,Alarms,03/12/2014,03/12/2014,03/12/2014 12:37:52 PM,03/12/2014 12:39:09 PM,03/12/2014 12:44:13 PM,03/12/2014 12:44:13 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Fire,04/25/2016 01:47:47 PM,1400 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3223,3,3,3,false,Alarm,1,CHIEF,6,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",140710196-B03 +110810275,E13,11026728,Medical Incident,03/22/2011,03/22/2011,03/22/2011 06:23:18 PM,03/22/2011 06:24:36 PM,03/22/2011 06:25:01 PM,03/22/2011 06:25:56 PM,03/22/2011 06:27:37 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Against Medical Advice,03/22/2011 07:02:22 PM,0 Block of SANSOME ST,SF,94104,B01,13,1164,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",110810275-E13 +160133566,65,16005336,Medical Incident,01/13/2016,01/13/2016,01/13/2016 07:26:16 PM,01/13/2016 07:27:27 PM,01/13/2016 07:28:15 PM,01/13/2016 07:28:22 PM,01/13/2016 07:36:10 PM,01/13/2016 07:54:14 PM,01/13/2016 08:11:03 PM,Code 2 Transport,01/13/2016 08:54:38 PM,2500 Block of 44TH AVE,San Francisco,94116,B08,18,7643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7390700333049, -122.502349719445)",160133566-65 +133520050,54,13119461,Medical Incident,12/18/2013,12/17/2013,12/18/2013 05:14:44 AM,12/18/2013 05:16:14 AM,12/18/2013 05:35:02 AM,12/18/2013 05:35:37 AM,12/18/2013 05:35:09 AM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/18/2013 05:47:21 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",133520050-54 +160043262,68,16001755,Medical Incident,01/04/2016,01/04/2016,01/04/2016 08:15:25 PM,01/04/2016 08:17:21 PM,01/04/2016 08:17:35 PM,01/04/2016 08:17:41 PM,01/04/2016 08:25:25 PM,01/04/2016 08:48:12 PM,01/04/2016 08:56:08 PM,Code 2 Transport,01/04/2016 09:35:22 PM,1900 Block of CLAY ST,San Francisco,94109,B04,38,3253,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7919153818228, -122.425171289022)",160043262-68 +160031119,67,16001134,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:24:05 AM,01/03/2016 10:26:12 AM,01/03/2016 10:26:30 AM,01/03/2016 10:29:44 AM,01/03/2016 10:29:51 AM,01/03/2016 10:41:08 AM,01/03/2016 11:03:48 AM,Code 2 Transport,01/03/2016 11:05:22 AM,JOSE SARRIA CT/POND ST,San Francisco,94114,B05,6,5252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7642889660509, -122.432279517045)",160031119-67 +132230254,E37,13075380,Medical Incident,08/11/2013,08/11/2013,08/11/2013 04:43:01 PM,08/11/2013 04:43:01 PM,08/11/2013 04:44:15 PM,08/11/2013 04:45:31 PM,08/11/2013 04:47:06 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 04:57:18 PM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7563302749024, -122.395565360141)",132230254-E37 +140470209,T14,14016031,Water Rescue,02/16/2014,02/16/2014,02/16/2014 02:39:33 PM,02/16/2014 02:40:33 PM,02/16/2014 02:42:32 PM,02/16/2014 02:43:58 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 02:48:27 PM,LAWTON ST/GREAT HY,SF,94122,B08,23,7724,3,3,3,false,Fire,1,TRUCK,8,8,4,Sunset/Parkside,"(37.7565512306025, -122.508902542437)",140470209-T14 +112860168,E38,11094719,Medical Incident,10/13/2011,10/13/2011,10/13/2011 11:10:11 AM,10/13/2011 11:11:40 AM,10/13/2011 11:12:20 AM,10/13/2011 11:13:33 AM,10/13/2011 11:15:38 AM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,No Merit,10/13/2011 11:17:25 AM,2000 Block of SACRAMENTO ST,SF,94109,B04,38,3326,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7907164232714, -122.426614088537)",112860168-E38 +133380367,67,13114715,Traffic Collision,12/04/2013,12/04/2013,12/04/2013 10:32:26 PM,12/04/2013 10:34:09 PM,12/04/2013 10:35:09 PM,12/04/2013 10:35:18 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/04/2013 10:40:30 PM,JACKSON ST/VAN NESS AV,SF,94109,B04,41,3153,2,2,2,false,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7939350051074, -122.423048803014)",133380367-67 +133030015,E17,13102805,Citizen Assist / Service Call,10/30/2013,10/29/2013,10/30/2013 01:31:31 AM,10/30/2013 01:32:44 AM,10/30/2013 01:32:54 AM,10/30/2013 01:35:03 AM,10/30/2013 01:40:18 AM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/30/2013 02:08:32 AM,100 Block of CRESCENT WAY,SF,94134,B10,17,6576,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7111340886592, -122.389340428123)",133030015-E17 +160270058,E02,16010514,Medical Incident,01/27/2016,01/26/2016,01/27/2016 12:29:33 AM,01/27/2016 12:31:21 AM,01/27/2016 12:31:38 AM,01/27/2016 12:33:34 AM,01/27/2016 12:35:48 AM,01/27/2016 01:00:37 AM,01/27/2016 01:08:12 AM,Code 3 Transport,01/27/2016 01:14:30 AM,500 Block of VALLEJO ST,San Francisco,94133,B01,2,1251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7988538467026, -122.407028870833)",160270058-E02 +110740304,T03,11024436,Alarms,03/15/2011,03/15/2011,03/15/2011 06:10:44 PM,03/15/2011 06:10:51 PM,03/15/2011 06:11:12 PM,03/15/2011 06:13:21 PM,03/15/2011 06:15:02 PM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/15/2011 06:18:59 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",110740304-T03 +160623561,AM08,16024832,Medical Incident,03/02/2016,03/02/2016,03/02/2016 07:24:44 PM,03/02/2016 07:25:19 PM,03/02/2016 07:29:00 PM,03/02/2016 07:29:39 PM,03/02/2016 07:33:23 PM,03/02/2016 07:57:14 PM,03/02/2016 08:13:16 PM,Code 2 Transport,03/02/2016 08:45:12 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160623561-AM08 +140440126,T03,14014912,Medical Incident,02/13/2014,02/13/2014,02/13/2014 09:34:12 AM,02/13/2014 09:35:08 AM,02/13/2014 09:35:55 AM,02/13/2014 09:37:43 AM,02/13/2014 09:45:22 AM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/13/2014 09:51:38 AM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",140440126-T03 +131060216,T02,13035658,Alarms,04/16/2013,04/16/2013,04/16/2013 02:03:09 PM,04/16/2013 02:04:53 PM,04/16/2013 02:05:00 PM,04/16/2013 02:06:13 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/16/2013 02:09:24 PM,1000 Block of LEAVENWORTH ST,SF,94109,B01,41,1541,3,3,3,false,Alarm,1,TRUCK,3,4,3,Nob Hill,"(37.7907216617507, -122.415722994443)",131060216-T02 +133110219,E42,13105744,Citizen Assist / Service Call,11/07/2013,11/07/2013,11/07/2013 02:41:41 PM,11/07/2013 02:44:39 PM,11/07/2013 02:46:31 PM,11/07/2013 02:48:10 PM,11/07/2013 02:48:52 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/07/2013 02:57:41 PM,300 Block of ARLETA AVE,SF,94134,B09,44,6312,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.714716142368, -122.40998252975)",133110219-E42 +130070252,87,13002428,Medical Incident,01/07/2013,01/07/2013,01/07/2013 03:38:59 PM,01/07/2013 03:39:13 PM,01/07/2013 03:39:26 PM,01/07/2013 03:39:32 PM,01/07/2013 03:52:24 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 04:08:47 PM,HAMILTON ST/SILVER AV,SF,94134,B10,42,6356,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.7306078962756, -122.411394405815)",130070252-87 +160091590,56,16003640,Medical Incident,01/09/2016,01/09/2016,01/09/2016 12:43:47 PM,01/09/2016 12:45:08 PM,01/09/2016 12:47:29 PM,01/09/2016 12:47:40 PM,01/09/2016 01:10:30 PM,01/09/2016 01:36:47 PM,01/09/2016 01:52:18 PM,Code 2 Transport,01/09/2016 02:39:50 PM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160091590-56 +140560097,E18,14018827,Medical Incident,02/25/2014,02/25/2014,02/25/2014 08:52:45 AM,02/25/2014 08:53:04 AM,02/25/2014 08:53:26 AM,02/25/2014 08:54:54 AM,02/25/2014 08:57:17 AM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,Code 2 Transport,02/25/2014 09:11:56 AM,1600 Block of 34TH AVE,SF,94122,B08,18,7542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7563254807326, -122.492809754043)",140560097-E18 +131770049,E03,13059973,Medical Incident,06/26/2013,06/25/2013,06/26/2013 03:00:39 AM,06/26/2013 03:02:04 AM,06/26/2013 03:02:26 AM,06/26/2013 03:04:03 AM,06/26/2013 03:05:23 AM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 03:11:12 AM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",131770049-E03 +130620164,E14,13020753,Medical Incident,03/03/2013,03/03/2013,03/03/2013 11:16:04 AM,03/03/2013 11:16:44 AM,03/03/2013 11:16:49 AM,03/03/2013 11:17:05 AM,03/03/2013 11:21:32 AM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 11:31:21 AM,400 Block of 28TH AVE,SF,94121,B07,14,7221,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7809076741432, -122.488084551957)",130620164-E14 +122750371,99,12090897,Medical Incident,10/01/2012,10/01/2012,10/01/2012 07:43:19 PM,10/01/2012 07:45:21 PM,10/01/2012 07:45:34 PM,10/01/2012 07:45:51 PM,10/01/2012 07:54:02 PM,10/01/2012 08:19:29 PM,10/01/2012 08:42:45 PM,Code 2 Transport,10/01/2012 09:16:08 PM,0 Block of NAVY RD,SF,94124,B10,17,6646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294990859712, -122.379424889828)",122750371-99 +160483842,89,16019523,Medical Incident,02/17/2016,02/17/2016,02/17/2016 09:34:21 PM,02/17/2016 09:35:49 PM,02/17/2016 09:36:07 PM,02/17/2016 09:36:19 PM,02/17/2016 09:43:19 PM,02/17/2016 10:01:17 PM,02/17/2016 10:09:01 PM,Code 2 Transport,02/17/2016 10:42:45 PM,800 Block of TREAT AVE,San Francisco,94110,B06,7,545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7565605303297, -122.413439435953)",160483842-89 +160204051,85,16008211,Medical Incident,01/20/2016,01/20/2016,01/20/2016 11:37:30 PM,01/20/2016 11:41:13 PM,01/20/2016 11:43:05 PM,01/20/2016 11:43:05 PM,01/20/2016 11:45:11 PM,01/21/2016 12:04:58 AM,01/21/2016 12:09:07 AM,Code 2 Transport,01/21/2016 12:44:05 AM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160204051-85 +103070362,KM05,10098363,Medical Incident,11/03/2010,11/03/2010,11/03/2010 03:27:01 PM,11/03/2010 03:27:17 PM,11/03/2010 03:28:00 PM,11/03/2010 03:28:33 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Duplicate,11/03/2010 03:40:34 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",103070362-KM05 +133200276,E16,13108807,Medical Incident,11/16/2013,11/16/2013,11/16/2013 06:01:48 PM,11/16/2013 06:03:10 PM,11/16/2013 06:04:08 PM,11/16/2013 06:05:36 PM,11/16/2013 06:07:07 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 06:13:42 PM,UNION ST/LAGUNA ST,SF,94123,B04,16,3353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7977162114993, -122.430558960196)",133200276-E16 +140040135,55,14001403,Medical Incident,01/04/2014,01/04/2014,01/04/2014 10:49:08 AM,01/04/2014 10:52:23 AM,01/04/2014 10:54:21 AM,01/04/2014 10:55:51 AM,01/04/2014 11:06:31 AM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,No Merit,01/04/2014 11:10:33 AM,600 Block of HEAD ST,SF,94132,B09,33,8433,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7188076273319, -122.464519500184)",140040135-55 +122740063,E11,12090283,Structure Fire,09/30/2012,09/29/2012,09/30/2012 06:52:50 AM,09/30/2012 06:55:51 AM,09/30/2012 06:56:00 AM,09/30/2012 06:59:43 AM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,Other,09/30/2012 07:02:17 AM,3600 Block of 18TH ST,SF,94110,B02,7,5422,3,3,3,true,Fire,1,ENGINE,9,6,8,Mission,"(37.7614043814693, -122.425545388909)",122740063-E11 +121420305,85,12047345,Medical Incident,05/21/2012,05/21/2012,05/21/2012 07:56:58 PM,05/21/2012 07:58:19 PM,05/21/2012 07:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,04/25/2016 01:58:34 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",121420305-85 +140640371,E06,14021811,Medical Incident,03/05/2014,03/05/2014,03/05/2014 10:51:54 PM,03/05/2014 10:53:27 PM,03/05/2014 10:53:50 PM,03/05/2014 10:55:34 PM,03/05/2014 11:07:59 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,No Merit,03/05/2014 11:08:34 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",140640371-E06 +133190131,KM12,13108350,Medical Incident,11/15/2013,11/15/2013,11/15/2013 09:57:44 AM,11/15/2013 10:01:58 AM,11/15/2013 10:02:15 AM,11/15/2013 10:02:42 AM,11/15/2013 10:26:09 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Patient Declined Transport,11/15/2013 10:53:09 AM,5800 Block of CALIFORNIA ST,SF,94121,B07,14,7173,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7840461448147, -122.480184160897)",133190131-KM12 +160531348,89,16021173,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:37:01 AM,02/22/2016 11:37:47 AM,02/22/2016 11:37:59 AM,02/22/2016 11:38:29 AM,02/22/2016 11:46:02 AM,02/22/2016 12:00:08 PM,02/22/2016 12:15:43 PM,Code 2 Transport,02/22/2016 01:00:57 PM,600 Block of 3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7795094454815, -122.393475822659)",160531348-89 +103100065,E03,10099297,Medical Incident,11/06/2010,11/05/2010,11/06/2010 06:27:06 AM,11/06/2010 06:28:03 AM,11/06/2010 06:28:28 AM,11/06/2010 06:30:46 AM,11/06/2010 06:31:27 AM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 06:31:31 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",103100065-E03 +112830204,E05,11093695,Medical Incident,10/10/2011,10/10/2011,10/10/2011 02:09:43 PM,10/10/2011 02:14:12 PM,10/10/2011 02:14:29 PM,10/10/2011 02:15:43 PM,10/10/2011 02:18:35 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 02:34:46 PM,1400 Block of EDDY ST,SF,94115,B04,5,3515,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7815912239311, -122.431479968624)",112830204-E05 +131280085,E01,13043199,Structure Fire,05/08/2013,05/07/2013,05/08/2013 07:36:08 AM,05/08/2013 07:36:08 AM,05/08/2013 07:36:21 AM,05/08/2013 07:37:21 AM,05/08/2013 07:39:17 AM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 07:40:30 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131280085-E01 +112480332,E05,11081927,Medical Incident,09/05/2011,09/05/2011,09/05/2011 08:14:47 PM,09/05/2011 08:16:52 PM,09/05/2011 08:17:10 PM,09/05/2011 08:18:13 PM,09/05/2011 08:21:11 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 08:42:15 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",112480332-E05 +160361926,62,16014256,Medical Incident,02/05/2016,02/05/2016,02/05/2016 12:53:20 PM,02/05/2016 12:56:04 PM,02/05/2016 12:57:28 PM,02/05/2016 12:58:21 PM,02/05/2016 01:21:44 PM,02/05/2016 01:32:47 PM,02/05/2016 01:55:56 PM,Code 2 Transport,02/05/2016 02:30:44 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160361926-62 +160271223,84,16010617,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:31:23 AM,01/27/2016 10:31:23 AM,01/27/2016 10:31:39 AM,01/27/2016 10:34:57 AM,01/27/2016 10:34:57 AM,01/27/2016 10:53:22 AM,01/27/2016 10:59:11 AM,Code 2 Transport,01/27/2016 11:35:10 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160271223-84 +130480059,E07,13016277,Traffic Collision,02/17/2013,02/16/2013,02/17/2013 02:54:16 AM,02/17/2013 02:54:57 AM,02/17/2013 02:55:41 AM,02/17/2013 02:56:54 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 03:15:03 AM,19TH ST/MISSION ST,SF,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",130480059-E07 +122730121,E17,12089989,Alarms,09/29/2012,09/29/2012,09/29/2012 09:43:52 AM,09/29/2012 09:45:00 AM,09/29/2012 09:46:10 AM,09/29/2012 09:48:19 AM,09/29/2012 09:50:29 AM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/29/2012 10:04:10 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",122730121-E17 +160061507,52,16002377,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:47:06 AM,01/06/2016 11:48:42 AM,01/06/2016 11:51:33 AM,01/06/2016 11:52:25 AM,01/06/2016 12:02:48 PM,01/06/2016 12:10:57 PM,01/06/2016 12:19:09 PM,Code 2 Transport,01/06/2016 12:53:34 PM,400 Block of CORBETT AVE,San Francisco,94114,B05,24,5265,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7579022051959, -122.445567287846)",160061507-52 +132750336,67,13093552,Medical Incident,10/02/2013,10/02/2013,10/02/2013 08:38:30 PM,10/02/2013 08:40:34 PM,10/02/2013 08:41:21 PM,10/02/2013 08:41:30 PM,10/02/2013 08:48:19 PM,10/02/2013 08:52:13 PM,10/02/2013 09:06:43 PM,Code 2 Transport,10/02/2013 09:34:33 PM,400 Block of 29TH AVE,SF,94121,B07,14,7226,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7808610214772, -122.489016145519)",132750336-67 +122380315,T16,12078957,Alarms,08/25/2012,08/25/2012,08/25/2012 10:27:29 PM,08/25/2012 10:29:23 PM,08/25/2012 10:29:43 PM,08/25/2012 10:31:26 PM,08/25/2012 10:39:37 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 10:40:33 PM,1200 Block of STOREY AVE,PR,94129,B99,51,4615,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.8020188733283, -122.470612578016)",122380315-T16 +120360351,83,12012142,Medical Incident,02/05/2012,02/05/2012,02/05/2012 08:13:31 PM,02/05/2012 08:14:43 PM,02/05/2012 08:16:27 PM,02/05/2012 08:16:53 PM,02/05/2012 08:17:51 PM,02/05/2012 08:26:54 PM,02/05/2012 08:47:06 PM,Code 2 Transport,02/05/2012 09:14:10 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",120360351-83 +160300421,62,16011655,Medical Incident,01/30/2016,01/29/2016,01/30/2016 03:03:06 AM,01/30/2016 03:05:10 AM,01/30/2016 03:05:49 AM,01/30/2016 03:05:57 AM,01/30/2016 03:07:31 AM,01/30/2016 03:15:51 AM,01/30/2016 03:33:29 AM,Code 2 Transport,01/30/2016 03:55:00 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160300421-62 +160822454,59,16032628,Medical Incident,03/22/2016,03/22/2016,03/22/2016 03:41:18 PM,03/22/2016 03:42:45 PM,03/22/2016 03:43:14 PM,03/22/2016 03:43:22 PM,03/22/2016 03:49:02 PM,03/22/2016 04:09:36 PM,03/22/2016 04:21:59 PM,Code 2 Transport,03/22/2016 05:01:38 PM,POWELL ST/BROADWAY,San Francisco,94133,B01,2,1353,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7974201856554, -122.410263526117)",160822454-59 +160010343,71,16000062,Medical Incident,01/01/2016,12/31/2015,01/01/2016 01:12:55 AM,01/01/2016 01:14:49 AM,01/01/2016 01:16:29 AM,01/01/2016 01:16:55 AM,01/01/2016 01:25:01 AM,01/01/2016 01:49:03 AM,01/01/2016 01:52:05 AM,Code 2 Transport,01/01/2016 02:21:31 AM,400 Block of MISSISSIPPI ST,San Francisco,94107,B10,37,2474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7607753106683, -122.394482044355)",160010343-71 +122520196,T08,12083345,Alarms,09/08/2012,09/08/2012,09/08/2012 02:30:10 PM,09/08/2012 02:31:37 PM,09/08/2012 02:31:43 PM,09/08/2012 02:34:11 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/08/2012 02:36:16 PM,500 Block of 15TH ST,SF,94103,B02,29,2352,3,3,3,false,Alarm,1,TRUCK,3,2,10,Mission,"(37.7672258966731, -122.406197525908)",122520196-T08 +112830031,E03,11093542,Medical Incident,10/10/2011,10/09/2011,10/10/2011 02:58:33 AM,10/10/2011 02:59:16 AM,10/10/2011 03:00:12 AM,10/10/2011 03:01:45 AM,10/10/2011 03:03:43 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/10/2011 03:05:33 AM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7830416107165, -122.415856533326)",112830031-E03 +130480007,E13,13016226,Medical Incident,02/17/2013,02/16/2013,02/17/2013 12:17:46 AM,02/17/2013 12:18:04 AM,02/17/2013 12:18:50 AM,02/17/2013 12:19:51 AM,02/17/2013 12:21:04 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 12:29:53 AM,MONTGOMERY ST/BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7982229704871, -122.403863019987)",130480007-E13 +111250215,E15,11041386,Alarms,05/05/2011,05/05/2011,05/05/2011 02:22:02 PM,05/05/2011 02:23:38 PM,05/05/2011 02:24:01 PM,05/05/2011 02:25:35 PM,05/05/2011 02:30:23 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 02:31:28 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",111250215-E15 +160423368,88,16017013,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:03:06 PM,02/11/2016 08:04:24 PM,02/11/2016 08:04:48 PM,02/11/2016 08:04:57 PM,02/11/2016 08:08:14 PM,02/11/2016 08:22:33 PM,02/11/2016 08:27:43 PM,Code 2 Transport,02/11/2016 09:19:59 PM,3100 Block of SACRAMENTO ST,San Francisco,94115,B04,10,4264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7884127178988, -122.444753541117)",160423368-88 +131120175,E10,13037686,Alarms,04/22/2013,04/22/2013,04/22/2013 11:55:21 AM,04/22/2013 11:57:07 AM,04/22/2013 11:57:21 AM,04/22/2013 11:59:45 AM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Other,04/22/2013 12:05:03 PM,1600 Block of DIVISADERO ST,SF,94115,B04,10,4131,3,3,3,true,Alarm,1,ENGINE,3,5,5,Japantown,"(37.7847979838284, -122.439663867351)",131120175-E10 +110260013,B01,11008470,Citizen Assist / Service Call,01/26/2011,01/25/2011,01/26/2011 12:56:40 AM,01/26/2011 01:00:04 AM,01/26/2011 01:00:29 AM,01/26/2011 01:02:56 AM,01/26/2011 01:05:22 AM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/26/2011 01:47:05 AM,2100 Block of STOCKTON ST,SF,94133,B01,28,1341,3,3,3,false,,1,CHIEF,2,1,3,North Beach,"(37.8055542731117, -122.410285576775)",110260013-B01 +160580406,55,16022991,Medical Incident,02/27/2016,02/26/2016,02/27/2016 02:55:49 AM,02/27/2016 02:58:13 AM,02/27/2016 03:00:25 AM,02/27/2016 03:00:49 AM,02/27/2016 03:06:49 AM,02/27/2016 03:18:48 AM,02/27/2016 03:29:02 AM,Code 2 Transport,02/27/2016 04:03:45 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160580406-55 +160011592,84,16000281,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:11:36 AM,01/01/2016 10:13:36 AM,01/01/2016 10:13:56 AM,01/01/2016 10:14:58 AM,01/01/2016 10:23:16 AM,01/01/2016 10:45:42 AM,01/01/2016 10:57:22 AM,Code 2 Transport,01/01/2016 11:10:43 AM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160011592-84 +160640088,68,16025316,Medical Incident,03/04/2016,03/03/2016,03/04/2016 12:47:13 AM,03/04/2016 12:47:57 AM,03/04/2016 12:48:09 AM,03/04/2016 12:49:02 AM,03/04/2016 12:51:03 AM,03/04/2016 12:53:44 AM,03/04/2016 01:21:33 AM,Code 2 Transport,03/04/2016 02:26:59 AM,1600 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7916541828949, -122.420058319923)",160640088-68 +123500265,E36,12117111,Traffic Collision,12/15/2012,12/15/2012,12/15/2012 05:50:43 PM,12/15/2012 05:50:55 PM,12/15/2012 05:51:07 PM,12/15/2012 05:53:05 PM,12/15/2012 05:55:37 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 06:23:00 PM,MISSION ST/15TH ST,SF,94103,B02,36,5279,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",123500265-E36 +160903301,68,16035844,Medical Incident,03/30/2016,03/30/2016,03/30/2016 06:48:26 PM,03/30/2016 06:51:47 PM,03/30/2016 06:52:27 PM,03/30/2016 06:52:35 PM,03/30/2016 07:04:16 PM,03/30/2016 07:26:52 PM,03/30/2016 07:47:39 PM,Code 2 Transport,03/30/2016 08:29:29 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160903301-68 +111790167,E13,11059101,Medical Incident,06/28/2011,06/28/2011,06/28/2011 12:52:44 PM,06/28/2011 12:54:53 PM,06/28/2011 12:55:44 PM,06/28/2011 12:56:49 PM,06/28/2011 12:58:53 PM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Other,06/28/2011 01:07:11 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",111790167-E13 +160512237,KM04,16020523,Medical Incident,02/20/2016,02/20/2016,02/20/2016 04:25:05 PM,02/20/2016 04:25:05 PM,02/20/2016 04:25:46 PM,02/20/2016 04:26:47 PM,02/20/2016 04:41:21 PM,02/20/2016 04:51:51 PM,02/20/2016 05:04:18 PM,Code 2 Transport,02/20/2016 05:48:49 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7716028339242, -122.445694365285)",160512237-KM04 +102500158,D3,10078977,Structure Fire,09/07/2010,09/07/2010,09/07/2010 01:00:37 PM,09/07/2010 01:00:58 PM,09/07/2010 01:01:11 PM,04/25/2016 02:08:42 PM,09/07/2010 01:03:31 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 01:08:43 PM,3100 Block of 22ND ST,SF,94110,B06,7,5472,3,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.755524488206, -122.418208517373)",102500158-D3 +122660310,83,12087987,Medical Incident,09/22/2012,09/22/2012,09/22/2012 08:37:23 PM,09/22/2012 08:38:23 PM,09/22/2012 08:38:34 PM,09/22/2012 08:39:38 PM,09/22/2012 08:46:28 PM,09/22/2012 09:07:12 PM,09/22/2012 09:25:55 PM,Code 2 Transport,09/22/2012 09:58:05 PM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",122660310-83 +131970096,AM24,13066753,Medical Incident,07/16/2013,07/16/2013,07/16/2013 09:24:04 AM,07/16/2013 09:25:29 AM,07/16/2013 09:25:59 AM,07/16/2013 09:26:49 AM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/16/2013 09:45:50 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",131970096-AM24 +160043640,71,16001789,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:29:28 PM,01/04/2016 10:30:45 PM,01/04/2016 10:32:02 PM,01/04/2016 10:34:07 PM,01/04/2016 10:41:51 PM,01/04/2016 11:07:29 PM,01/04/2016 11:13:53 PM,Code 2 Transport,01/04/2016 11:52:06 PM,1200 Block of PAGE ST,San Francisco,94117,B05,21,4251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7717293101583, -122.441377954936)",160043640-71 +160850975,54,16033686,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:56:33 AM,03/25/2016 08:58:27 AM,03/25/2016 08:58:48 AM,03/25/2016 09:00:45 AM,03/25/2016 09:09:53 AM,03/25/2016 09:24:00 AM,03/25/2016 09:26:43 AM,Code 2 Transport,03/25/2016 10:05:20 AM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",160850975-54 +102290249,B10,10072112,Alarms,08/17/2010,08/17/2010,08/17/2010 04:50:14 PM,08/17/2010 04:51:21 PM,08/17/2010 04:51:25 PM,08/17/2010 04:52:52 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 04:58:47 PM,1700 Block of BANCROFT AVE,SF,94124,B10,17,6537,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7268724745843, -122.394902680548)",102290249-B10 +120630222,KM05,12020775,Medical Incident,03/03/2012,03/03/2012,03/03/2012 01:39:38 PM,03/03/2012 01:41:24 PM,03/03/2012 01:42:08 PM,03/03/2012 01:42:42 PM,03/03/2012 02:14:57 PM,03/03/2012 02:15:03 PM,03/03/2012 02:45:20 PM,Code 2 Transport,03/03/2012 03:20:19 PM,0 Block of BONITA ST,SF,94109,B04,41,3126,1,1,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7973537252438, -122.422620569494)",120630222-KM05 +121620363,T07,12053785,Structure Fire,06/10/2012,06/10/2012,06/10/2012 07:39:43 PM,06/10/2012 07:39:43 PM,06/10/2012 07:40:14 PM,06/10/2012 07:41:49 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 07:43:52 PM,19TH ST/DOLORES ST,SF,94110,B06,7,5435,3,3,3,false,Alarm,1,TRUCK,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",121620363-T07 +132800203,E01,13095302,Medical Incident,10/07/2013,10/07/2013,10/07/2013 01:17:12 PM,10/07/2013 01:18:05 PM,10/07/2013 01:18:25 PM,10/07/2013 01:19:20 PM,10/07/2013 01:21:37 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/07/2013 01:25:47 PM,1000 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",132800203-E01 +103530146,B04,10113291,Alarms,12/19/2010,12/19/2010,12/19/2010 08:37:46 AM,12/19/2010 08:38:40 AM,12/19/2010 08:39:34 AM,12/19/2010 08:40:53 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/19/2010 08:46:43 AM,1800 Block of EDDY ST,SF,94115,B05,5,4133,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7807493567341, -122.438104422838)",103530146-B04 +160902525,77,16035782,Medical Incident,03/30/2016,03/30/2016,03/30/2016 03:44:55 PM,03/30/2016 03:45:54 PM,03/30/2016 03:49:07 PM,03/30/2016 03:49:16 PM,03/30/2016 04:26:49 PM,03/30/2016 04:46:51 PM,03/30/2016 05:18:26 PM,Code 2 Transport,03/30/2016 05:54:55 PM,300 Block of MARKET ST,San Francisco,94111,B01,13,1136,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7921324266791, -122.397911804174)",160902525-77 +131790462,94,13061040,Medical Incident,06/28/2013,06/28/2013,06/28/2013 11:30:26 PM,06/28/2013 11:32:57 PM,06/28/2013 11:34:09 PM,06/28/2013 11:36:24 PM,06/28/2013 11:46:28 PM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/29/2013 12:01:29 AM,ILLINOIS ST/16TH ST,SF,94158,B03,8,2374,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Potrero Hill,"(37.7669579113914, -122.388164137128)",131790462-94 +160311906,KM02,16012174,Medical Incident,01/31/2016,01/31/2016,01/31/2016 01:46:20 PM,01/31/2016 01:46:20 PM,01/31/2016 01:47:24 PM,01/31/2016 01:48:15 PM,01/31/2016 01:56:41 PM,01/31/2016 02:19:15 PM,01/31/2016 02:32:24 PM,Code 2 Transport,01/31/2016 02:59:22 PM,POST ST/HYDE ST,San Francisco,94109,B04,3,1641,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7872452103353, -122.41663869807)",160311906-KM02 +123110120,T08,12103427,Gas Leak (Natural and LP Gases),11/06/2012,11/06/2012,11/06/2012 09:34:23 AM,11/06/2012 09:35:47 AM,11/06/2012 09:35:56 AM,11/06/2012 09:36:34 AM,11/06/2012 09:40:37 AM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/06/2012 09:53:36 AM,800 Block of HARRISON ST,SF,94107,B03,8,2243,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7798728838566, -122.400680947527)",123110120-T08 +140920071,77,14030821,Traffic Collision,04/02/2014,04/01/2014,04/02/2014 07:49:14 AM,04/02/2014 07:50:26 AM,04/02/2014 07:50:41 AM,04/02/2014 07:50:47 AM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,Other,04/02/2014 08:04:34 AM,MCALLISTER ST/VAN NESS AV,SAN FRANCISCO,94102,B02,36,3164,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",140920071-77 +111930359,T19,11063865,Alarms,07/12/2011,07/12/2011,07/12/2011 09:50:58 PM,07/12/2011 09:51:50 PM,07/12/2011 09:51:57 PM,07/12/2011 09:56:27 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,Other,04/25/2016 02:03:42 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,false,,1,TRUCK,4,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",111930359-T19 +160451383,AM08,16018093,Medical Incident,02/14/2016,02/14/2016,02/14/2016 11:36:13 AM,02/14/2016 11:36:13 AM,02/14/2016 11:36:41 AM,02/14/2016 11:37:11 AM,02/14/2016 11:41:42 AM,02/14/2016 11:47:53 AM,02/14/2016 11:54:56 AM,Code 2 Transport,02/14/2016 12:34:20 PM,MISSION ST/CESAR CHAVEZ ST,San Francisco,94110,B06,11,5613,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7481656900206, -122.418221171762)",160451383-AM08 +112610347,E15,11086292,Alarms,09/18/2011,09/18/2011,09/18/2011 09:42:10 PM,09/18/2011 09:42:11 PM,09/18/2011 09:42:32 PM,04/25/2016 02:02:36 PM,09/18/2011 09:44:16 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,No Merit,09/18/2011 09:46:31 PM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",112610347-E15 +160731164,KM04,16028955,Medical Incident,03/13/2016,03/13/2016,03/13/2016 12:20:32 PM,03/13/2016 12:20:32 PM,03/13/2016 12:21:24 PM,03/13/2016 12:21:52 PM,03/13/2016 12:24:36 PM,03/13/2016 12:41:29 PM,03/13/2016 01:03:32 PM,Code 2 Transport,03/13/2016 01:44:02 PM,ECKER ST/STEVENSON ST,San Francisco,94105,B03,13,2143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7899705030754, -122.399350054959)",160731164-KM04 +111790347,AP,11059257,Other,06/28/2011,06/28/2011,06/28/2011 10:42:18 PM,06/28/2011 10:42:18 PM,06/28/2011 10:42:18 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Fire,06/28/2011 10:42:36 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",111790347-AP +160102124,87,16004087,Medical Incident,01/10/2016,01/10/2016,01/10/2016 03:24:48 PM,01/10/2016 03:25:47 PM,01/10/2016 03:28:07 PM,01/10/2016 03:28:16 PM,01/10/2016 03:41:16 PM,01/10/2016 04:05:17 PM,01/10/2016 04:26:52 PM,Code 3 Transport,01/10/2016 05:16:34 PM,NORTH POINT ST/VAN NESS AV,San Francisco,94109,B04,28,3143,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",160102124-87 +131930176,93,13065646,Medical Incident,07/12/2013,07/12/2013,07/12/2013 01:55:08 PM,07/12/2013 01:55:08 PM,07/12/2013 01:56:55 PM,07/12/2013 01:57:01 PM,07/12/2013 01:58:58 PM,07/12/2013 02:16:41 PM,07/12/2013 02:49:31 PM,Code 2 Transport,07/12/2013 03:30:43 PM,26TH AV/GEARY BL,SF,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7800379523626, -122.485807574821)",131930176-93 +133540050,55,13120156,Medical Incident,12/20/2013,12/19/2013,12/20/2013 04:42:56 AM,12/20/2013 04:45:11 AM,12/20/2013 04:52:56 AM,04/25/2016 01:49:10 PM,12/20/2013 04:56:41 AM,12/20/2013 05:04:24 AM,12/20/2013 05:13:26 AM,Code 2 Transport,12/20/2013 05:27:15 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",133540050-55 +122130332,E36,12070826,Structure Fire,07/31/2012,07/31/2012,07/31/2012 08:26:43 PM,07/31/2012 08:26:43 PM,07/31/2012 08:26:54 PM,07/31/2012 08:27:52 PM,07/31/2012 08:29:23 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 08:39:15 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",122130332-E36 +113280113,65,11108826,Medical Incident,11/24/2011,11/24/2011,11/24/2011 10:39:08 AM,11/24/2011 10:40:24 AM,11/24/2011 10:40:57 AM,04/25/2016 02:01:29 PM,11/24/2011 10:46:08 AM,11/24/2011 10:57:54 AM,11/24/2011 11:06:06 AM,Code 2 Transport,11/24/2011 11:33:22 AM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",113280113-65 +140960180,82,14032302,Medical Incident,04/06/2014,04/06/2014,04/06/2014 11:57:46 AM,04/06/2014 12:00:37 PM,04/06/2014 12:00:51 PM,04/06/2014 12:01:01 PM,04/06/2014 12:13:46 PM,04/06/2014 12:20:48 PM,04/06/2014 12:36:49 PM,Code 2 Transport,04/06/2014 01:01:35 PM,1400 Block of HALIBUT CT,TREASURE ISLAN,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",140960180-82 +132820313,96,13096071,Medical Incident,10/09/2013,10/09/2013,10/09/2013 06:18:57 PM,10/09/2013 06:22:12 PM,10/09/2013 06:22:29 PM,10/09/2013 06:22:47 PM,10/09/2013 06:26:39 PM,10/09/2013 06:49:04 PM,10/09/2013 07:11:03 PM,Code 2 Transport,10/09/2013 07:28:48 PM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",132820313-96 +140270190,E15,14009204,Medical Incident,01/27/2014,01/27/2014,01/27/2014 01:30:50 PM,01/27/2014 01:32:32 PM,01/27/2014 01:33:39 PM,01/27/2014 01:36:06 PM,01/27/2014 01:36:28 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/27/2014 01:49:20 PM,1200 Block of PLYMOUTH AVE,SF,94112,B09,15,8474,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7246916380621, -122.456361161182)",140270190-E15 +131080294,E26,13036402,Medical Incident,04/18/2013,04/18/2013,04/18/2013 06:38:39 PM,04/18/2013 06:40:13 PM,04/18/2013 06:44:49 PM,04/18/2013 06:47:15 PM,04/18/2013 06:51:24 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/18/2013 07:01:16 PM,700 Block of CHENERY ST,SF,94131,B09,26,8176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7346541377753, -122.4351506789)",131080294-E26 +102480076,B02,10078275,Structure Fire,09/05/2010,09/04/2010,09/05/2010 06:47:05 AM,09/05/2010 06:48:10 AM,09/05/2010 06:48:26 AM,09/05/2010 06:49:57 AM,09/05/2010 06:50:51 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 06:55:51 AM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,false,,1,CHIEF,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",102480076-B02 +122650022,54,12087416,Medical Incident,09/21/2012,09/20/2012,09/21/2012 01:42:23 AM,09/21/2012 01:43:40 AM,09/21/2012 01:44:05 AM,09/21/2012 01:44:36 AM,09/21/2012 01:47:18 AM,09/21/2012 01:58:23 AM,09/21/2012 02:02:44 AM,Code 2 Transport,09/21/2012 02:27:45 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",122650022-54 +122910123,E35,12096295,Structure Fire,10/17/2012,10/17/2012,10/17/2012 10:02:00 AM,10/17/2012 10:02:01 AM,10/17/2012 10:02:12 AM,10/17/2012 10:02:22 AM,10/17/2012 10:04:39 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 10:05:03 AM,MARKET ST/STEUART ST,SF,94105,B01,13,1112,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",122910123-E35 +160570755,62,16022655,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:20:11 AM,02/26/2016 08:20:11 AM,02/26/2016 09:28:55 AM,02/26/2016 09:29:12 AM,02/26/2016 09:46:37 AM,02/26/2016 10:21:29 AM,02/26/2016 10:46:04 AM,Code 2 Transport,02/26/2016 11:20:18 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160570755-62 +113410307,KM14,11113147,Medical Incident,12/07/2011,12/07/2011,12/07/2011 05:30:04 PM,12/07/2011 05:30:55 PM,12/07/2011 05:32:03 PM,12/07/2011 05:35:05 PM,12/07/2011 05:37:55 PM,12/07/2011 05:48:25 PM,12/07/2011 05:59:55 PM,Code 2 Transport,12/07/2011 06:33:17 PM,100 Block of NAPLES ST,SF,94112,B09,43,6142,3,3,3,false,,1,PRIVATE,2,9,11,Excelsior,"(37.7263264472922, -122.427153217062)",113410307-KM14 +102400107,E03,10075644,Medical Incident,08/28/2010,08/28/2010,08/28/2010 10:03:48 AM,08/28/2010 10:04:03 AM,08/28/2010 10:04:33 AM,04/25/2016 02:08:52 PM,08/28/2010 10:08:11 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Other,08/28/2010 10:14:36 AM,GEARY ST/LEAVENWORTH ST,SF,94109,B04,3,1543,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",102400107-E03 +160374314,AM08,16015005,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:51:45 PM,02/06/2016 11:54:35 PM,02/06/2016 11:54:46 PM,02/06/2016 11:55:52 PM,02/06/2016 11:57:15 PM,02/07/2016 12:07:21 AM,02/07/2016 12:26:15 AM,Code 2 Transport,02/07/2016 12:59:49 AM,HARRISON ST/HAWTHORNE ST,San Francisco,94107,B03,8,2151,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7834407522825, -122.396262402533)",160374314-AM08 +130030319,E03,13001124,Medical Incident,01/03/2013,01/03/2013,01/03/2013 06:51:01 PM,01/03/2013 06:51:50 PM,01/03/2013 06:52:04 PM,01/03/2013 06:53:03 PM,01/03/2013 06:55:21 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 06:57:13 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",130030319-E03 +140730121,B08,14024594,Alarms,03/14/2014,03/14/2014,03/14/2014 10:46:29 AM,03/14/2014 10:47:40 AM,03/14/2014 10:47:54 AM,03/14/2014 10:48:13 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Fire,03/14/2014 10:59:53 AM,0 Block of ZOO RD,SAN FRANCISCO,94132,B08,19,8716,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",140730121-B08 +113600002,E22,11119490,Medical Incident,12/26/2011,12/25/2011,12/26/2011 12:04:55 AM,12/26/2011 12:05:38 AM,12/26/2011 12:05:57 AM,12/26/2011 12:06:32 AM,12/26/2011 12:10:00 AM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 12:27:20 AM,0 Block of LOCKSLEY AVE,SF,94122,B08,22,7331,3,3,3,false,,1,ENGINE,1,8,7,Inner Sunset,"(37.7592202975893, -122.46331160715)",113600002-E22 +130830059,66,13027664,Medical Incident,03/24/2013,03/23/2013,03/24/2013 05:00:38 AM,03/24/2013 05:02:58 AM,03/24/2013 05:13:10 AM,03/24/2013 05:13:36 AM,03/24/2013 05:25:24 AM,03/24/2013 05:31:57 AM,03/24/2013 05:46:30 AM,Code 3 Transport,03/24/2013 06:21:40 AM,2000 Block of 19TH AVE,SF,94116,B08,40,7417,3,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7495857189023, -122.475966067526)",130830059-66 +110400339,55,11013364,Medical Incident,02/09/2011,02/09/2011,02/09/2011 07:30:40 PM,02/09/2011 07:31:34 PM,02/09/2011 07:32:31 PM,02/09/2011 07:32:38 PM,02/09/2011 07:39:32 PM,02/09/2011 07:47:49 PM,02/09/2011 08:13:23 PM,Code 2 Transport,02/09/2011 08:32:28 PM,CLEMENTINA ST/5TH ST,SF,94103,B03,1,2244,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7806990485862, -122.403920882808)",110400339-55 +122830345,AM10,12093793,Traffic Collision,10/09/2012,10/09/2012,10/09/2012 10:24:16 PM,10/09/2012 10:25:58 PM,10/09/2012 10:28:07 PM,10/09/2012 10:29:16 PM,10/09/2012 10:43:14 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Patient Declined Transport,10/09/2012 10:51:50 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,2,2,2,false,Non Life-threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",122830345-AM10 +110030129,RS1,11000935,Medical Incident,01/03/2011,01/03/2011,01/03/2011 10:51:36 AM,01/03/2011 10:52:44 AM,01/03/2011 10:53:58 AM,01/03/2011 10:54:30 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 10:59:37 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7811458612596, -122.409026046516)",110030129-RS1 +123350394,T01,12111490,Structure Fire,11/30/2012,11/30/2012,11/30/2012 07:40:52 PM,11/30/2012 07:40:52 PM,11/30/2012 07:41:04 PM,11/30/2012 07:41:51 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,11/30/2012 07:44:16 PM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",123350394-T01 +160763714,55,16030345,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:36:39 PM,03/16/2016 08:37:51 PM,03/16/2016 08:40:10 PM,03/16/2016 08:40:30 PM,03/16/2016 08:58:19 PM,03/16/2016 09:10:38 PM,03/16/2016 09:31:01 PM,Code 2 Transport,03/16/2016 10:12:09 PM,800 Block of FONT BLVD,San Francisco,94132,B08,19,868,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",160763714-55 +110200207,E01,11006614,Medical Incident,01/20/2011,01/20/2011,01/20/2011 12:49:49 PM,01/20/2011 12:52:31 PM,01/20/2011 12:55:15 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 01:00:48 PM,0 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7796475431341, -122.411385962592)",110200207-E01 +111350084,54,11044817,Medical Incident,05/15/2011,05/14/2011,05/15/2011 06:38:34 AM,05/15/2011 06:39:09 AM,05/15/2011 06:39:59 AM,04/25/2016 02:04:37 PM,05/15/2011 06:50:50 AM,05/15/2011 07:10:06 AM,05/15/2011 07:17:22 AM,Code 2 Transport,05/15/2011 07:55:52 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111350084-54 +120040187,93,12001407,Medical Incident,01/04/2012,01/04/2012,01/04/2012 01:13:04 PM,01/04/2012 01:13:33 PM,01/04/2012 01:15:25 PM,01/04/2012 01:15:51 PM,01/04/2012 01:30:11 PM,01/04/2012 02:00:16 PM,01/04/2012 02:23:10 PM,Code 2 Transport,01/04/2012 03:16:05 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",120040187-93 +121400129,KM11,12046452,Medical Incident,05/19/2012,05/19/2012,05/19/2012 10:12:49 AM,05/19/2012 10:12:49 AM,05/19/2012 10:13:40 AM,05/19/2012 10:14:21 AM,05/19/2012 10:18:55 AM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/19/2012 10:20:12 AM,100 Block of 26TH AVE,SF,94121,B07,14,7217,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7866268330609, -122.486350477082)",121400129-KM11 +130130184,E12,13004424,Medical Incident,01/13/2013,01/13/2013,01/13/2013 11:18:32 AM,01/13/2013 11:20:54 AM,01/13/2013 11:21:27 AM,01/13/2013 11:22:21 AM,01/13/2013 11:23:48 AM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,No Merit,01/13/2013 11:28:51 AM,PARNASSUS AV/CLAYTON ST,SF,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7651387353822, -122.44763462758)",130130184-E12 +121430259,E11,12047599,Structure Fire,05/22/2012,05/22/2012,05/22/2012 04:59:35 PM,05/22/2012 05:01:36 PM,05/22/2012 05:02:18 PM,05/22/2012 05:03:12 PM,05/22/2012 05:06:37 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Other,05/22/2012 05:13:11 PM,2800 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,true,Fire,1,ENGINE,6,6,9,Mission,"(37.7527125370932, -122.409592912103)",121430259-E11 +133230386,E06,13109808,Alarms,11/19/2013,11/19/2013,11/19/2013 09:04:17 PM,11/19/2013 09:08:24 PM,11/19/2013 09:10:53 PM,04/25/2016 01:49:41 PM,11/19/2013 09:14:59 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 09:18:30 PM,100 Block of HARTFORD ST,SF,94114,B05,6,5417,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7601511990346, -122.433893032003)",133230386-E06 +120520365,68,12017339,Medical Incident,02/21/2012,02/21/2012,02/21/2012 10:39:01 PM,02/21/2012 10:39:27 PM,02/21/2012 10:40:14 PM,02/21/2012 10:40:27 PM,02/21/2012 10:49:39 PM,04/25/2016 02:00:01 PM,04/25/2016 02:00:01 PM,Other,02/21/2012 11:28:27 PM,2300 Block of 24TH AVE,SF,94116,B08,40,7461,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",120520365-68 +123190001,E39,12105918,Alarms,11/13/2012,11/13/2012,11/13/2012 11:58:31 PM,11/14/2012 12:00:39 AM,11/14/2012 12:01:08 AM,11/14/2012 12:03:16 AM,11/14/2012 12:06:48 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/14/2012 12:16:33 AM,100 Block of SANTA ANA AVE,SF,94127,B08,39,8556,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7339902916618, -122.467976795247)",123190001-E39 +122670247,KM11,12088275,Medical Incident,09/23/2012,09/23/2012,09/23/2012 04:37:26 PM,09/23/2012 04:40:43 PM,09/23/2012 04:41:54 PM,09/23/2012 04:49:30 PM,09/23/2012 05:09:42 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Unable to Locate,09/23/2012 05:16:53 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",122670247-KM11 +123440268,87,12115064,Medical Incident,12/09/2012,12/09/2012,12/09/2012 05:05:23 PM,12/09/2012 05:07:25 PM,12/09/2012 05:08:30 PM,12/09/2012 05:08:46 PM,12/09/2012 05:14:10 PM,12/09/2012 05:25:13 PM,12/09/2012 05:38:19 PM,Code 2 Transport,12/09/2012 05:59:31 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",123440268-87 +140960321,RC3,14032432,Medical Incident,04/06/2014,04/06/2014,04/06/2014 07:30:52 PM,04/06/2014 07:32:25 PM,04/06/2014 07:32:45 PM,04/06/2014 07:34:43 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,Code 2 Transport,04/06/2014 07:34:50 PM,0 Block of TURK ST,SAN FRANCISCO,94102,B03,1,1365,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",140960321-RC3 +131740026,87,13058907,Medical Incident,06/23/2013,06/22/2013,06/23/2013 01:57:26 AM,06/23/2013 02:00:03 AM,06/23/2013 02:00:40 AM,06/23/2013 02:01:11 AM,06/23/2013 02:23:09 AM,06/23/2013 02:27:02 AM,06/23/2013 02:31:58 AM,Code 2 Transport,06/23/2013 03:08:43 AM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7917657997993, -122.407489250227)",131740026-87 +123430048,T03,12114509,Alarms,12/08/2012,12/07/2012,12/08/2012 03:16:04 AM,12/08/2012 03:17:38 AM,12/08/2012 03:17:56 AM,12/08/2012 03:20:13 AM,12/08/2012 03:21:42 AM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/08/2012 03:28:25 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",123430048-T03 +112010004,E18,11066132,Medical Incident,07/20/2011,07/19/2011,07/20/2011 12:18:20 AM,07/20/2011 12:19:02 AM,07/20/2011 12:20:30 AM,07/20/2011 12:22:37 AM,07/20/2011 12:24:24 AM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/20/2011 12:35:25 AM,2300 Block of TARAVAL ST,SF,94116,B08,18,7546,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7423117225804, -122.491226137541)",112010004-E18 +111090250,61,11036055,Medical Incident,04/19/2011,04/19/2011,04/19/2011 05:06:50 PM,04/19/2011 05:09:14 PM,04/19/2011 05:10:55 PM,04/19/2011 05:11:39 PM,04/19/2011 05:22:41 PM,04/19/2011 05:45:07 PM,04/19/2011 06:32:09 PM,Code 2 Transport,04/19/2011 06:47:24 PM,0 Block of ARNOLD AVE,SF,94110,B06,32,5644,2,2,2,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.7345537872053, -122.419581868301)",111090250-61 +131700195,E16,13057728,Medical Incident,06/19/2013,06/19/2013,06/19/2013 01:35:05 PM,06/19/2013 01:35:39 PM,06/19/2013 01:36:46 PM,06/19/2013 01:37:50 PM,06/19/2013 01:39:35 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/19/2013 01:46:26 PM,FILLMORE ST/BAY ST,SF,94123,B04,16,3555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8026284241178, -122.436693347158)",131700195-E16 +102490044,E33,10078573,Medical Incident,09/06/2010,09/05/2010,09/06/2010 04:27:12 AM,09/06/2010 04:27:39 AM,09/06/2010 04:27:51 AM,09/06/2010 04:29:55 AM,09/06/2010 04:32:53 AM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Other,09/06/2010 04:42:28 AM,0 Block of RICE ST,SF,94112,B09,33,8357,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7083648058395, -122.457265666619)",102490044-E33 +140020091,89,14000597,Medical Incident,01/02/2014,01/01/2014,01/02/2014 07:45:45 AM,01/02/2014 07:46:11 AM,01/02/2014 07:46:39 AM,01/02/2014 07:49:14 AM,01/02/2014 07:57:21 AM,01/02/2014 08:25:04 AM,01/02/2014 08:55:31 AM,Code 2 Transport,01/02/2014 09:13:16 AM,400 Block of FRANCONIA ST,SF,94110,B10,32,5722,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7427331584639, -122.408199890691)",140020091-89 +160040689,71,16001496,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:54:43 AM,01/04/2016 07:54:43 AM,01/04/2016 07:56:33 AM,01/04/2016 07:56:44 AM,01/04/2016 08:02:53 AM,01/04/2016 08:13:35 AM,01/04/2016 08:21:58 AM,Code 2 Transport,01/04/2016 09:13:50 AM,0 Block of COLUMBIA SQUARE ST,San Francisco,94103,B03,1,2253,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7772769755923, -122.405617030416)",160040689-71 +140730187,88,14024650,Medical Incident,03/14/2014,03/14/2014,03/14/2014 01:21:48 PM,03/14/2014 01:23:23 PM,03/14/2014 01:25:25 PM,03/14/2014 01:26:13 PM,03/14/2014 01:37:11 PM,03/14/2014 02:00:25 PM,03/14/2014 02:10:49 PM,Code 2 Transport,03/14/2014 02:49:38 PM,400 Block of 2ND AVE,SAN FRANCISCO,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7802449131001, -122.459999104399)",140730187-88 +120330140,E37,12010865,Structure Fire,02/02/2012,02/02/2012,02/02/2012 11:39:37 AM,02/02/2012 11:42:10 AM,02/02/2012 11:43:02 AM,02/02/2012 11:44:35 AM,02/02/2012 11:50:44 AM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/02/2012 11:50:46 AM,500 Block of MISSION ROCK ST,SF,94158,B03,8,2366,3,3,3,false,Fire,1,ENGINE,5,3,6,Mission Bay,"(37.7728261278708, -122.390539901912)",120330140-E37 +140520026,AM18,14017487,Medical Incident,02/21/2014,02/20/2014,02/21/2014 02:19:09 AM,02/21/2014 02:20:59 AM,02/21/2014 02:21:11 AM,02/21/2014 02:21:55 AM,02/21/2014 02:32:05 AM,02/21/2014 02:50:59 AM,02/21/2014 02:56:35 AM,Code 2 Transport,02/21/2014 03:36:02 AM,MISSION ST/CORTLAND AV,SF,94110,B06,32,5626,C,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7410274087506, -122.422840577347)",140520026-AM18 +140300324,RS1,14010326,Structure Fire,01/30/2014,01/30/2014,01/30/2014 08:11:16 PM,01/30/2014 08:11:58 PM,01/30/2014 08:12:36 PM,01/30/2014 08:14:53 PM,01/30/2014 08:16:30 PM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/30/2014 08:18:57 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Alarm,1,RESCUE SQUAD,5,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",140300324-RS1 +160540961,82,16021508,Medical Incident,02/23/2016,02/23/2016,02/23/2016 09:26:24 AM,02/23/2016 09:28:10 AM,02/23/2016 09:28:32 AM,02/23/2016 09:29:15 AM,02/23/2016 09:36:59 AM,02/23/2016 09:42:20 AM,02/23/2016 09:57:52 AM,Code 2 Transport,02/23/2016 10:40:05 AM,0 Block of WASHBURN ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",160540961-82 +112290169,E07,11075660,Medical Incident,08/17/2011,08/17/2011,08/17/2011 12:56:57 PM,08/17/2011 12:57:14 PM,08/17/2011 12:58:15 PM,08/17/2011 12:59:47 PM,08/17/2011 01:00:51 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 01:06:28 PM,2300 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",112290169-E07 +120110028,89,12003689,Medical Incident,01/11/2012,01/10/2012,01/11/2012 02:51:01 AM,01/11/2012 02:51:24 AM,01/11/2012 02:51:53 AM,01/11/2012 02:52:56 AM,01/11/2012 02:55:19 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,No Merit,01/11/2012 03:04:55 AM,600 Block of SUTTER ST,SF,94102,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",120110028-89 +110120163,58,11003963,Medical Incident,01/12/2011,01/12/2011,01/12/2011 12:11:26 PM,01/12/2011 12:12:59 PM,01/12/2011 12:13:14 PM,01/12/2011 12:13:31 PM,01/12/2011 12:27:51 PM,01/12/2011 01:06:19 PM,01/12/2011 01:19:51 PM,Code 2 Transport,01/12/2011 01:55:46 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",110120163-58 +160381149,75,16015139,Medical Incident,02/07/2016,02/07/2016,02/07/2016 09:25:35 AM,02/07/2016 09:25:35 AM,02/07/2016 09:25:54 AM,02/07/2016 09:26:05 AM,02/07/2016 09:30:21 AM,02/07/2016 09:46:46 AM,02/07/2016 10:03:13 AM,Code 2 Transport,02/07/2016 10:34:32 AM,5TH ST/HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160381149-75 +160873233,AM14,16034724,Traffic Collision,03/27/2016,03/27/2016,03/27/2016 08:27:38 PM,03/27/2016 08:28:19 PM,03/27/2016 08:29:17 PM,03/27/2016 08:29:48 PM,03/27/2016 08:34:21 PM,03/27/2016 09:03:26 PM,03/27/2016 09:28:48 PM,Code 2 Transport,03/27/2016 10:09:35 PM,FULTON ST/MASONIC AV,San Francisco,94117,B05,21,4463,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",160873233-AM14 +110940040,89,11031091,Medical Incident,04/04/2011,04/03/2011,04/04/2011 04:00:14 AM,04/04/2011 04:05:24 AM,04/04/2011 04:05:56 AM,04/04/2011 04:08:25 AM,04/04/2011 04:10:38 AM,04/04/2011 04:40:22 AM,04/04/2011 04:50:11 AM,Code 2 Transport,04/04/2011 05:17:51 AM,1200 Block of HAIGHT ST,SF,94117,B05,21,4353,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",110940040-89 +130070053,E42,13002270,Structure Fire,01/07/2013,01/06/2013,01/07/2013 06:24:28 AM,01/07/2013 06:25:01 AM,01/07/2013 06:25:36 AM,01/07/2013 06:27:48 AM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/07/2013 06:32:34 AM,900 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,Alarm,1,ENGINE,7,9,10,Visitacion Valley,"(37.7106642055694, -122.408348294705)",130070053-E42 +122280113,E20,12075494,Medical Incident,08/15/2012,08/15/2012,08/15/2012 09:57:54 AM,08/15/2012 09:58:51 AM,08/15/2012 09:59:57 AM,08/15/2012 10:01:15 AM,08/15/2012 10:02:29 AM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,No Merit,08/15/2012 10:17:30 AM,400 Block of DELLBROOK AVE,SF,94131,B08,20,5364,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7540367145417, -122.453946978856)",122280113-E20 +160853418,68,16033931,Medical Incident,03/25/2016,03/25/2016,03/25/2016 07:55:04 PM,03/25/2016 07:55:04 PM,03/25/2016 07:55:15 PM,03/25/2016 07:55:25 PM,03/25/2016 08:01:25 PM,03/25/2016 08:29:55 PM,03/25/2016 08:38:36 PM,Code 2 Transport,03/25/2016 09:19:59 PM,800 Block of SHOTWELL ST,San Francisco,94110,B06,7,544,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7548296619064, -122.415465689137)",160853418-68 +112250228,T09,11074363,Structure Fire,08/13/2011,08/13/2011,08/13/2011 02:18:53 PM,08/13/2011 02:18:54 PM,08/13/2011 02:19:00 PM,08/13/2011 02:20:46 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 02:22:30 PM,25TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,false,,1,TRUCK,2,10,10,Potrero Hill,"(37.7521940654679, -122.398452381695)",112250228-T09 +123020243,E31,12100211,Citizen Assist / Service Call,10/28/2012,10/28/2012,10/28/2012 02:59:40 PM,10/28/2012 03:01:14 PM,10/28/2012 03:01:35 PM,10/28/2012 03:02:42 PM,10/28/2012 03:07:04 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 03:13:25 PM,500 Block of 5TH AVE,SF,94118,B07,31,7123,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7782074967778, -122.463077569875)",123020243-E31 +123020252,KM10,12100221,Medical Incident,10/28/2012,10/28/2012,10/28/2012 03:41:58 PM,10/28/2012 03:42:24 PM,10/28/2012 03:43:32 PM,10/28/2012 03:44:05 PM,10/28/2012 03:51:43 PM,10/28/2012 03:58:27 PM,10/28/2012 04:05:14 PM,Code 2 Transport,10/28/2012 04:24:07 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",123020252-KM10 +110910450,E07,11030372,Medical Incident,04/01/2011,04/01/2011,04/01/2011 11:52:59 PM,04/01/2011 11:57:44 PM,04/01/2011 11:57:55 PM,04/01/2011 11:59:14 PM,04/02/2011 12:00:56 AM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,No Merit,04/02/2011 12:07:43 AM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",110910450-E07 +160920404,72,16036312,Medical Incident,04/01/2016,03/31/2016,04/01/2016 05:03:40 AM,04/01/2016 05:05:07 AM,04/01/2016 05:05:28 AM,04/01/2016 05:05:42 AM,04/01/2016 05:12:05 AM,04/01/2016 05:33:53 AM,04/01/2016 05:49:22 AM,Code 2 Transport,04/01/2016 06:28:51 AM,3800 Block of DIVISADERO ST,San Francisco,94123,B04,16,4214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8051007679396, -122.443956087143)",160920404-72 +113070151,65,11101959,Medical Incident,11/03/2011,11/03/2011,11/03/2011 11:37:57 AM,11/03/2011 11:38:20 AM,11/03/2011 11:38:41 AM,11/03/2011 11:38:58 AM,11/03/2011 11:46:38 AM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/03/2011 11:50:44 AM,1000 Block of WISCONSIN ST,SF,94107,B10,37,2565,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7542876781547, -122.398580716544)",113070151-65 +102850071,E44,10090666,Traffic Collision,10/12/2010,10/11/2010,10/12/2010 07:29:58 AM,10/12/2010 07:30:19 AM,10/12/2010 07:31:18 AM,10/12/2010 07:32:32 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 07:52:51 AM,100 Block of 3RD ST,SF,94105,B10,44,6544,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",102850071-E44 +160473134,78,16019062,Medical Incident,02/16/2016,02/16/2016,02/16/2016 06:45:25 PM,02/16/2016 06:47:04 PM,02/16/2016 06:47:31 PM,02/16/2016 06:47:44 PM,02/16/2016 07:02:41 PM,02/16/2016 07:16:28 PM,02/16/2016 07:41:55 PM,Code 2 Transport,02/16/2016 08:09:51 PM,4100 Block of 24TH ST,San Francisco,94114,B06,24,5521,2,3,3,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7511737565624, -122.435188201994)",160473134-78 +140710187,77,14023960,Medical Incident,03/12/2014,03/12/2014,03/12/2014 12:06:52 PM,03/12/2014 12:07:15 PM,03/12/2014 12:07:23 PM,03/12/2014 12:07:36 PM,03/12/2014 12:15:29 PM,03/12/2014 12:28:35 PM,03/12/2014 12:54:18 PM,Code 2 Transport,03/12/2014 01:30:35 PM,5100 Block of MISSION ST,SAN FRANCISCO,94112,B09,43,6175,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.716127093001, -122.441352016549)",140710187-77 +123460017,E43,12115564,Medical Incident,12/11/2012,12/10/2012,12/11/2012 12:34:04 AM,12/11/2012 12:35:33 AM,12/11/2012 12:36:16 AM,12/11/2012 12:38:30 AM,12/11/2012 12:40:18 AM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/11/2012 12:50:04 AM,700 Block of ITALY AVE,SF,94112,B09,43,6136,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7156619177228, -122.433494545632)",123460017-E43 +110250103,KM05,11008157,Medical Incident,01/25/2011,01/25/2011,01/25/2011 08:29:33 AM,01/25/2011 08:30:01 AM,01/25/2011 08:30:47 AM,01/25/2011 08:33:34 AM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/25/2011 08:39:21 AM,600 Block of LOS PALMOS DR,SF,94127,B09,39,8524,3,E,3,false,,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.735094064772, -122.456695545364)",110250103-KM05 +130870189,E33,13029018,Medical Incident,03/28/2013,03/28/2013,03/28/2013 01:20:26 PM,03/28/2013 01:20:59 PM,03/28/2013 01:21:18 PM,03/28/2013 01:22:09 PM,03/28/2013 01:24:41 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 01:31:44 PM,0 Block of WHITTIER ST,SF,94112,B09,33,6214,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7093012444004, -122.447722961329)",130870189-E33 +160592780,AM08,16023645,Medical Incident,02/28/2016,02/28/2016,02/28/2016 07:04:21 PM,02/28/2016 07:04:40 PM,02/28/2016 07:05:16 PM,02/28/2016 07:05:35 PM,02/28/2016 07:24:16 PM,02/28/2016 07:26:24 PM,02/28/2016 07:38:22 PM,Code 2 Transport,02/28/2016 07:45:10 PM,1800 Block of WALLER ST,San Francisco,94122,B05,12,4552,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",160592780-AM08 +160520659,KM03,16020710,Medical Incident,02/21/2016,02/20/2016,02/21/2016 05:42:07 AM,02/21/2016 05:43:06 AM,02/21/2016 05:43:22 AM,02/21/2016 05:44:27 AM,02/21/2016 05:51:28 AM,02/21/2016 06:04:12 AM,02/21/2016 06:17:54 AM,Code 2 Transport,02/21/2016 06:41:53 AM,200 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8853,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",160520659-KM03 +121130055,94,12037411,Medical Incident,04/22/2012,04/21/2012,04/22/2012 03:03:51 AM,04/22/2012 03:04:32 AM,04/22/2012 03:05:06 AM,04/22/2012 03:09:46 AM,04/22/2012 03:21:53 AM,04/22/2012 03:50:33 AM,04/22/2012 04:38:37 AM,Code 2 Transport,04/22/2012 04:59:42 AM,200 Block of BYXBEE ST,SF,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7187698335106, -122.469914085582)",121130055-94 +160862816,KM11,16034275,Medical Incident,03/26/2016,03/26/2016,03/26/2016 05:47:46 PM,03/26/2016 05:47:46 PM,03/26/2016 05:57:38 PM,03/26/2016 05:58:29 PM,03/26/2016 06:07:00 PM,03/26/2016 06:22:14 PM,03/26/2016 06:36:37 PM,Code 2 Transport,03/26/2016 07:13:04 PM,1000 Block of PORTOLA DR,San Francisco,94127,B09,39,8572,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7404960254393, -122.458524519728)",160862816-KM11 +121130357,E42,12037676,Medical Incident,04/22/2012,04/22/2012,04/22/2012 10:56:52 PM,04/22/2012 10:58:00 PM,04/22/2012 10:59:35 PM,04/22/2012 11:01:48 PM,04/22/2012 11:04:01 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/22/2012 11:31:15 PM,300 Block of BRIDGEVIEW DR,SF,94124,B10,42,6447,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7325104794834, -122.398596100985)",121130357-E42 +123340018,KM07,12110832,Medical Incident,11/29/2012,11/28/2012,11/29/2012 12:55:03 AM,11/29/2012 12:56:48 AM,11/29/2012 01:07:43 AM,11/29/2012 01:08:08 AM,11/29/2012 01:17:10 AM,11/29/2012 01:41:51 AM,11/29/2012 01:54:47 AM,Code 2 Transport,11/29/2012 02:27:31 AM,1300 Block of INGALLS ST,SF,94124,B10,17,6572,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7304672300474, -122.382582263214)",123340018-KM07 +112090234,T05,11069046,Vehicle Fire,07/28/2011,07/28/2011,07/28/2011 03:31:41 PM,07/28/2011 03:31:57 PM,07/28/2011 03:32:32 PM,07/28/2011 03:33:56 PM,07/28/2011 03:37:11 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 03:38:49 PM,1300 Block of GROVE ST,SF,94117,B05,21,4146,3,3,3,false,,1,TRUCK,2,5,5,Hayes Valley,"(37.7757652644923, -122.438812235858)",112090234-T05 +110650147,KM12,11021425,Medical Incident,03/06/2011,03/06/2011,03/06/2011 10:29:45 AM,03/06/2011 10:31:59 AM,03/06/2011 10:32:46 AM,03/06/2011 10:35:24 AM,03/06/2011 10:57:26 AM,03/06/2011 11:14:07 AM,03/06/2011 11:26:56 AM,Code 2 Transport,03/06/2011 11:58:35 AM,300 Block of 18TH AVE,SF,94121,B07,31,7164,1,1,2,false,,1,PRIVATE,1,7,1,Outer Richmond,"(37.7814031484353, -122.477238000486)",110650147-KM12 +140850191,84,14028635,Medical Incident,03/26/2014,03/26/2014,03/26/2014 01:18:20 PM,03/26/2014 01:19:04 PM,03/26/2014 01:19:46 PM,03/26/2014 01:22:01 PM,03/26/2014 01:28:44 PM,03/26/2014 01:53:03 PM,03/26/2014 02:18:29 PM,Code 2 Transport,03/26/2014 02:51:25 PM,1500 Block of 30TH AVE,SAN FRANCISCO,94122,B08,18,7535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7583769816242, -122.488651706287)",140850191-84 +140570404,E16,14019409,Medical Incident,02/26/2014,02/26/2014,02/26/2014 10:49:24 PM,02/26/2014 10:51:40 PM,02/26/2014 10:52:03 PM,02/26/2014 10:53:32 PM,02/26/2014 10:55:14 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Code 2 Transport,02/26/2014 11:02:46 PM,1900 Block of UNION ST,SF,94123,B04,16,3443,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.7976099463654, -122.431831857814)",140570404-E16 +160880492,AM02,16034826,Medical Incident,03/28/2016,03/27/2016,03/28/2016 06:24:04 AM,03/28/2016 06:24:04 AM,03/28/2016 06:24:51 AM,03/28/2016 06:25:41 AM,03/28/2016 06:33:46 AM,03/28/2016 06:45:12 AM,03/28/2016 07:00:59 AM,Code 2 Transport,03/28/2016 07:27:02 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.780906077687, -122.413401299155)",160880492-AM02 +113620145,E01,11120216,Alarms,12/28/2011,12/28/2011,12/28/2011 11:17:55 AM,12/28/2011 11:18:58 AM,12/28/2011 11:19:52 AM,12/28/2011 11:20:52 AM,12/28/2011 11:26:04 AM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 11:33:32 AM,100 Block of STOCKTON ST,SF,94108,B01,1,1323,3,3,3,true,,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7871003167622, -122.406426031165)",113620145-E01 +140990201,E51,14033443,Water Rescue,04/09/2014,04/09/2014,04/09/2014 01:06:54 PM,04/09/2014 01:08:04 PM,04/09/2014 01:09:06 PM,04/09/2014 01:10:28 PM,04/09/2014 01:15:04 PM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Fire,04/09/2014 01:32:42 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,SAN FRANCISCO,94129,B99,51,4632,3,3,3,true,Fire,1,ENGINE,2,7,2,Presidio,"(37.8066581989584, -122.47471662098)",140990201-E51 +133330132,93,13112916,Medical Incident,11/29/2013,11/29/2013,11/29/2013 11:53:03 AM,11/29/2013 11:54:18 AM,11/29/2013 11:55:00 AM,11/29/2013 11:55:37 AM,11/29/2013 12:00:20 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Against Medical Advice,11/29/2013 01:13:32 PM,1800 Block of GEARY BLVD,SF,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7840473873954, -122.433701277792)",133330132-93 +160482605,KM03,16019409,Medical Incident,02/17/2016,02/17/2016,02/17/2016 03:57:27 PM,02/17/2016 03:59:16 PM,02/17/2016 03:59:36 PM,02/17/2016 04:00:20 PM,02/17/2016 04:04:05 PM,02/17/2016 04:38:28 PM,02/17/2016 04:55:15 PM,Code 2 Transport,02/17/2016 05:42:13 PM,1300 Block of 24TH AVE,San Francisco,94122,B08,22,7451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7623920631346, -122.48248639415)",160482605-KM03 +160520090,76,16020649,Medical Incident,02/21/2016,02/20/2016,02/21/2016 12:30:41 AM,02/21/2016 12:30:41 AM,02/21/2016 12:30:41 AM,02/21/2016 12:30:41 AM,02/21/2016 12:30:41 AM,02/21/2016 12:39:30 AM,02/21/2016 12:47:59 AM,Code 2 Transport,02/21/2016 12:56:55 AM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160520090-76 +103220166,KM04,10103188,Medical Incident,11/18/2010,11/18/2010,11/18/2010 01:07:50 PM,11/18/2010 01:09:40 PM,11/18/2010 01:10:18 PM,11/18/2010 01:12:09 PM,11/18/2010 01:13:42 PM,11/18/2010 01:25:30 PM,11/18/2010 01:27:34 PM,Code 2 Transport,11/18/2010 01:41:11 PM,HYDE ST/ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",103220166-KM04 +110240237,E38,11007906,Administrative,01/24/2011,01/24/2011,01/24/2011 01:44:36 PM,01/24/2011 01:44:58 PM,01/24/2011 01:45:09 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,04/25/2016 02:06:26 PM,600 Block of PRESIDIO AVE,SF,94115,B05,10,4411,3,3,3,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7858275651586, -122.446584417888)",110240237-E38 +160060569,78,16002283,Medical Incident,01/06/2016,01/05/2016,01/06/2016 07:24:10 AM,01/06/2016 07:25:34 AM,01/06/2016 07:26:14 AM,01/06/2016 07:26:43 AM,01/06/2016 07:34:58 AM,01/06/2016 07:53:15 AM,01/06/2016 08:15:58 AM,Code 2 Transport,01/06/2016 09:00:30 AM,0 Block of OCEAN AVE,San Francisco,94112,B09,43,6121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7237942596577, -122.435907357723)",160060569-78 +133380325,E11,13114673,Alarms,12/04/2013,12/04/2013,12/04/2013 07:57:57 PM,12/04/2013 07:59:02 PM,12/04/2013 07:59:09 PM,12/04/2013 08:00:36 PM,12/04/2013 08:02:44 PM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 08:13:00 PM,200 Block of PRECITA AVE,SF,94110,B06,11,5664,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7473189471178, -122.414189809933)",133380325-E11 +140060244,T19,14002172,Administrative,01/06/2014,01/06/2014,01/06/2014 02:24:08 PM,01/06/2014 02:24:10 PM,01/06/2014 02:24:58 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 02:25:55 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,,1,TRUCK,1,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",140060244-T19 +160731503,KM13,16028984,Medical Incident,03/13/2016,03/13/2016,03/13/2016 01:59:09 PM,03/13/2016 02:01:45 PM,03/13/2016 02:01:56 PM,03/13/2016 02:02:28 PM,03/13/2016 02:08:29 PM,03/13/2016 02:32:50 PM,03/13/2016 02:55:55 PM,Code 2 Transport,03/13/2016 03:20:39 PM,800 Block of KEARNY ST,San Francisco,94133,B01,13,1245,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7957597902135, -122.405118369279)",160731503-KM13 +160380456,54,16015063,Medical Incident,02/07/2016,02/06/2016,02/07/2016 02:37:49 AM,02/07/2016 02:37:49 AM,02/07/2016 02:38:26 AM,02/07/2016 02:38:34 AM,02/07/2016 02:46:33 AM,02/07/2016 03:05:02 AM,02/07/2016 03:12:02 AM,Code 2 Transport,02/07/2016 03:52:35 AM,1000 Block of LINCOLN WAY,San Francisco,94122,B08,22,7346,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.765704888258, -122.469111435958)",160380456-54 +160421513,67,16016841,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:43:25 AM,02/11/2016 11:44:03 AM,02/11/2016 11:44:15 AM,02/11/2016 11:44:24 AM,02/11/2016 11:45:57 AM,02/11/2016 11:59:53 AM,02/11/2016 12:34:58 PM,Code 2 Transport,02/11/2016 01:12:34 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160421513-67 +120010142,E06,12000115,Medical Incident,01/01/2012,12/31/2011,01/01/2012 01:40:05 AM,01/01/2012 01:41:09 AM,01/01/2012 01:44:31 AM,04/25/2016 02:00:51 PM,01/01/2012 01:52:25 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 01:56:30 AM,700 Block of GUERRERO ST,SF,94110,B02,7,5445,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7591737466274, -122.423447331328)",120010142-E06 +121730341,E33,12057581,Traffic Collision,06/21/2012,06/21/2012,06/21/2012 09:23:41 PM,06/21/2012 09:24:01 PM,06/21/2012 09:24:30 PM,06/21/2012 09:25:50 PM,06/21/2012 09:29:05 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/21/2012 09:43:24 PM,0 Block of BEVERLY ST,SF,94132,B09,33,8421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7169988805638, -122.471554113527)",121730341-E33 +140350193,E29,14011818,Medical Incident,02/04/2014,02/04/2014,02/04/2014 12:21:05 PM,02/04/2014 12:21:09 PM,02/04/2014 12:21:35 PM,02/04/2014 12:23:06 PM,02/04/2014 12:28:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,No Merit,02/04/2014 12:28:39 PM,20TH ST/3RD ST,SF,94107,B03,29,2466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",140350193-E29 +160683695,88,16027276,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:37:26 PM,03/08/2016 10:37:26 PM,03/08/2016 10:37:39 PM,03/08/2016 10:37:48 PM,03/08/2016 10:41:18 PM,03/08/2016 10:46:03 PM,03/08/2016 10:58:17 PM,Code 2 Transport,03/08/2016 11:37:31 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160683695-88 +111840198,65,11060789,Medical Incident,07/03/2011,07/03/2011,07/03/2011 01:42:14 PM,07/03/2011 01:44:04 PM,07/03/2011 01:44:15 PM,07/03/2011 01:44:26 PM,07/03/2011 01:49:08 PM,07/03/2011 02:03:41 PM,07/03/2011 02:09:24 PM,Code 2 Transport,07/03/2011 02:34:42 PM,2800 Block of GOUGH ST,SF,94123,B04,16,3245,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.7995232754464, -122.427619653562)",111840198-65 +160751256,85,16029664,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:47:23 AM,03/15/2016 10:48:28 AM,03/15/2016 10:48:50 AM,03/15/2016 10:49:33 AM,03/15/2016 11:11:12 AM,03/15/2016 11:11:24 AM,03/15/2016 11:20:23 AM,Code 3 Transport,03/15/2016 12:18:09 PM,200 Block of VICTORIA ST,San Francisco,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7152017918179, -122.465379533034)",160751256-85 +160462253,50,16018561,Medical Incident,02/15/2016,02/15/2016,02/15/2016 03:26:28 PM,02/15/2016 03:28:12 PM,02/15/2016 03:28:40 PM,02/15/2016 03:28:48 PM,02/15/2016 03:44:29 PM,02/15/2016 04:01:05 PM,02/15/2016 04:11:42 PM,Code 2 Transport,02/15/2016 04:55:00 PM,UNION ST/COLUMBUS AV,San Francisco,94133,B01,28,1334,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",160462253-50 +112420108,93,11079765,Medical Incident,08/30/2011,08/30/2011,08/30/2011 10:12:46 AM,08/30/2011 10:14:09 AM,08/30/2011 10:14:20 AM,08/30/2011 10:14:30 AM,08/30/2011 10:19:14 AM,08/30/2011 10:37:14 AM,08/30/2011 10:54:01 AM,Code 2 Transport,08/30/2011 11:23:56 AM,1700 Block of BRYANT ST,SF,94110,B02,29,5242,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7649537879117, -122.410494214244)",112420108-93 +140920043,82,14030796,Medical Incident,04/02/2014,04/01/2014,04/02/2014 04:40:18 AM,04/02/2014 04:41:36 AM,04/02/2014 04:42:05 AM,04/02/2014 04:42:29 AM,04/02/2014 04:54:15 AM,04/02/2014 05:17:36 AM,04/02/2014 06:25:28 AM,Code 2 Transport,04/02/2014 06:25:30 AM,1500 Block of 48TH AVE,SAN FRANCISCO,94122,B08,23,7717,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7575292588802, -122.507939651503)",140920043-82 +120060272,CO2,12002153,Explosion,01/06/2012,01/06/2012,01/06/2012 05:29:55 PM,01/06/2012 05:31:26 PM,01/06/2012 05:32:50 PM,01/06/2012 05:42:47 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,Other,01/06/2012 05:43:32 PM,4TH ST/16TH ST,SF,94158,B03,8,2364,3,3,3,false,Fire,1,SUPPORT,8,3,6,Mission Bay,"(37.7668024436729, -122.390797171523)",120060272-CO2 +160772323,84,16030636,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:38:49 PM,03/17/2016 02:40:53 PM,03/17/2016 02:41:43 PM,03/17/2016 02:41:49 PM,03/17/2016 02:53:25 PM,03/17/2016 03:15:48 PM,03/17/2016 03:19:48 PM,Code 3 Transport,03/17/2016 04:05:09 PM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",160772323-84 +132230259,KM14,13075384,Medical Incident,08/11/2013,08/11/2013,08/11/2013 05:20:27 PM,08/11/2013 05:22:26 PM,08/11/2013 05:22:44 PM,08/11/2013 05:23:17 PM,08/11/2013 05:30:45 PM,08/11/2013 05:59:25 PM,08/11/2013 06:16:44 PM,Code 3 Transport,08/11/2013 07:02:24 PM,900 Block of POWELL ST,SF,94108,B01,2,1355,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",132230259-KM14 +122910122,E33,12096294,Medical Incident,10/17/2012,10/17/2012,10/17/2012 09:56:51 AM,10/17/2012 09:58:13 AM,10/17/2012 09:58:34 AM,10/17/2012 10:00:14 AM,10/17/2012 10:01:58 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 10:12:27 AM,100 Block of FARALLONES ST,SF,94112,B09,33,8372,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7141209660917, -122.457549033066)",122910122-E33 +122620310,88,12086633,Medical Incident,09/18/2012,09/18/2012,09/18/2012 07:24:24 PM,09/18/2012 07:25:40 PM,09/18/2012 07:29:18 PM,09/18/2012 07:41:27 PM,09/18/2012 08:02:34 PM,09/18/2012 08:15:09 PM,09/18/2012 08:27:47 PM,Code 2 Transport,09/18/2012 08:49:02 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",122620310-88 +121000236,KM14,12033180,Medical Incident,04/09/2012,04/09/2012,04/09/2012 02:16:05 PM,04/09/2012 02:17:34 PM,04/09/2012 02:17:48 PM,04/09/2012 02:19:11 PM,04/09/2012 02:24:51 PM,04/09/2012 02:43:47 PM,04/09/2012 02:49:48 PM,Code 3 Transport,04/09/2012 03:32:31 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",121000236-KM14 +160214262,52,16008605,Medical Incident,01/21/2016,01/21/2016,01/21/2016 11:58:14 PM,01/21/2016 11:58:14 PM,01/22/2016 12:00:29 AM,01/22/2016 12:00:37 AM,01/22/2016 12:15:29 AM,01/22/2016 12:28:35 AM,01/22/2016 12:46:48 AM,Code 2 Transport,01/22/2016 01:28:33 AM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",160214262-52 +160883389,64,16035094,Medical Incident,03/28/2016,03/28/2016,03/28/2016 07:39:51 PM,03/28/2016 07:41:59 PM,03/28/2016 07:42:58 PM,03/28/2016 07:43:09 PM,03/28/2016 07:51:14 PM,03/28/2016 08:13:20 PM,03/28/2016 08:57:49 PM,Code 2 Transport,03/28/2016 09:12:00 PM,700 Block of CLEMENTINA ST,San Francisco,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7747750238121, -122.411341676645)",160883389-64 +111660132,E13,11054742,Medical Incident,06/15/2011,06/15/2011,06/15/2011 10:53:38 AM,06/15/2011 10:54:27 AM,06/15/2011 10:56:04 AM,04/25/2016 02:04:09 PM,06/15/2011 10:57:43 AM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/15/2011 11:16:30 AM,400 Block of SANSOME ST,SF,94111,B01,13,1166,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7946244346899, -122.401514024657)",111660132-E13 +130010563,57,13000466,Medical Incident,01/01/2013,01/01/2013,01/01/2013 10:20:47 PM,01/01/2013 10:24:10 PM,01/01/2013 10:24:42 PM,01/01/2013 10:24:54 PM,01/01/2013 10:32:26 PM,01/01/2013 10:55:27 PM,01/01/2013 11:07:41 PM,Code 2 Transport,01/01/2013 11:25:09 PM,200 Block of EVELYN WAY,SF,94127,B09,39,8655,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7426820880698, -122.449417082278)",130010563-57 +112530239,87,11083500,Medical Incident,09/10/2011,09/10/2011,09/10/2011 01:30:57 PM,09/10/2011 01:31:44 PM,09/10/2011 01:32:32 PM,09/10/2011 01:32:50 PM,09/10/2011 01:38:31 PM,09/10/2011 01:54:06 PM,09/10/2011 02:21:05 PM,Code 2 Transport,09/10/2011 02:45:30 PM,700 Block of LONDON ST,SF,94112,B09,43,6125,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7175106231913, -122.439146338541)",112530239-87 +103180167,E08,10101913,Medical Incident,11/14/2010,11/14/2010,11/14/2010 11:17:39 AM,11/14/2010 11:17:39 AM,11/14/2010 11:32:11 AM,11/14/2010 11:32:53 AM,11/14/2010 11:38:31 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 11:58:46 AM,500 Block of BEALE ST,SF,94107,B03,8,2134,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7857367878809, -122.389124364412)",103180167-E08 +103300283,E38,10105743,Structure Fire,11/26/2010,11/26/2010,11/26/2010 07:40:48 PM,11/26/2010 07:40:48 PM,11/26/2010 07:41:58 PM,11/26/2010 07:42:50 PM,11/26/2010 07:44:52 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 07:48:09 PM,LAGUNA ST/POST ST,SF,94109,B04,38,3364,3,3,3,false,,1,ENGINE,2,4,5,Japantown,"(37.7857844875918, -122.428148186864)",103300283-E38 +140100363,E33,14003643,Medical Incident,01/10/2014,01/10/2014,01/10/2014 08:10:07 PM,01/10/2014 08:11:09 PM,01/10/2014 08:13:21 PM,01/10/2014 08:14:36 PM,01/10/2014 08:18:37 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Fire,01/10/2014 08:23:11 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",140100363-E33 +111690123,E22,11055657,Medical Incident,06/18/2011,06/18/2011,06/18/2011 09:51:54 AM,06/18/2011 09:51:54 AM,06/18/2011 09:52:38 AM,06/18/2011 09:53:27 AM,06/18/2011 09:55:34 AM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,Other,06/18/2011 09:59:58 AM,600 Block of IRVING ST,SF,94122,B08,22,7332,3,3,3,false,,1,ENGINE,1,8,5,Inner Sunset,"(37.7640524831749, -122.464704638953)",111690123-E22 +160342921,75,16013532,Medical Incident,02/03/2016,02/03/2016,02/03/2016 06:45:25 PM,02/03/2016 06:46:00 PM,02/03/2016 06:46:33 PM,02/03/2016 06:46:58 PM,02/03/2016 06:51:57 PM,02/03/2016 07:01:02 PM,02/03/2016 07:15:36 PM,Code 2 Transport,02/03/2016 08:03:44 PM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.737593919819, -122.389860953099)",160342921-75 +120490248,59,12016277,Medical Incident,02/18/2012,02/18/2012,02/18/2012 04:49:43 PM,02/18/2012 04:52:17 PM,02/18/2012 04:53:05 PM,02/18/2012 04:57:44 PM,02/18/2012 05:02:45 PM,02/18/2012 05:17:46 PM,02/18/2012 05:34:58 PM,Code 2 Transport,02/18/2012 06:05:25 PM,800 Block of CLAYTON ST,SF,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7655967523319, -122.447797520946)",120490248-59 +102440345,E02,10077111,Medical Incident,09/01/2010,09/01/2010,09/01/2010 07:09:16 PM,09/01/2010 07:09:49 PM,09/01/2010 07:11:04 PM,09/01/2010 07:12:13 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Other,09/01/2010 07:26:52 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",102440345-E02 +122140198,E07,12071027,Medical Incident,08/01/2012,08/01/2012,08/01/2012 02:10:08 PM,08/01/2012 02:10:27 PM,08/01/2012 02:10:51 PM,08/01/2012 02:11:39 PM,08/01/2012 02:13:54 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/01/2012 02:18:42 PM,1900 Block of MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",122140198-E07 +103510341,81,10112732,Medical Incident,12/17/2010,12/17/2010,12/17/2010 07:44:11 PM,12/17/2010 07:44:56 PM,12/17/2010 07:45:07 PM,12/17/2010 07:45:23 PM,12/17/2010 07:59:02 PM,12/17/2010 08:06:46 PM,12/17/2010 08:17:30 PM,Code 2 Transport,12/17/2010 08:54:16 PM,1200 Block of 34TH AVE,SF,94122,B08,23,7537,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7637900578037, -122.493333871469)",103510341-81 +132160146,81,13072956,Medical Incident,08/04/2013,08/04/2013,08/04/2013 12:11:10 PM,08/04/2013 12:11:28 PM,08/04/2013 12:11:45 PM,08/04/2013 12:11:53 PM,08/04/2013 12:20:51 PM,08/04/2013 12:43:08 PM,08/04/2013 12:48:14 PM,Code 2 Transport,08/04/2013 01:28:26 PM,700 Block of 23RD AVE,SF,94121,B07,14,7177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7735976795866, -122.482185448619)",132160146-81 +120190276,E01,12006428,Structure Fire,01/19/2012,01/19/2012,01/19/2012 05:23:48 PM,01/19/2012 05:23:48 PM,01/19/2012 05:24:02 PM,01/19/2012 05:25:03 PM,01/19/2012 05:27:54 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Fire,01/19/2012 05:28:03 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",120190276-E01 +160083872,AM16,16003444,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:20:57 PM,01/08/2016 10:21:15 PM,01/08/2016 10:22:25 PM,01/08/2016 10:23:34 PM,01/08/2016 10:37:14 PM,01/08/2016 10:37:25 PM,01/08/2016 11:03:05 PM,Code 2 Transport,01/08/2016 11:34:30 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160083872-AM16 +160900451,71,16035588,Medical Incident,03/30/2016,03/29/2016,03/30/2016 05:28:11 AM,03/30/2016 05:31:04 AM,03/30/2016 05:31:27 AM,03/30/2016 05:31:33 AM,03/30/2016 05:38:16 AM,03/30/2016 06:00:14 AM,03/30/2016 06:08:50 AM,Code 2 Transport,03/30/2016 06:56:36 AM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7975061057448, -122.409143124942)",160900451-71 +131260140,KM14,13042518,Medical Incident,05/06/2013,05/06/2013,05/06/2013 10:12:43 AM,05/06/2013 10:14:59 AM,05/06/2013 10:15:48 AM,05/06/2013 10:18:21 AM,05/06/2013 10:43:09 AM,05/06/2013 11:02:52 AM,05/06/2013 11:15:13 AM,Code 2 Transport,05/06/2013 11:42:52 AM,200 Block of BATTERY ST,SF,94104,B01,13,1162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7939050731848, -122.400171834642)",131260140-KM14 +160401682,82,16016016,Medical Incident,02/09/2016,02/09/2016,02/09/2016 12:19:28 PM,02/09/2016 12:21:36 PM,02/09/2016 12:23:07 PM,02/09/2016 12:23:15 PM,02/09/2016 12:46:10 PM,02/09/2016 01:04:45 PM,02/09/2016 01:25:33 PM,Code 2 Transport,02/09/2016 01:58:41 PM,1200 Block of STEINER ST,San Francisco,94115,B05,5,3624,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7807440381763, -122.433947180627)",160401682-82 +102480329,B02,10078494,Medical Incident,09/05/2010,09/05/2010,09/05/2010 08:43:09 PM,09/05/2010 08:44:09 PM,09/05/2010 08:44:24 PM,09/05/2010 08:46:18 PM,09/05/2010 08:47:34 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,No Merit,09/05/2010 09:16:30 PM,HAYES ST/VAN NESS AV,SF,94102,B02,36,3166,3,3,3,false,,1,CHIEF,2,2,6,Tenderloin,"(37.7772998560434, -122.419693565739)",102480329-B02 +130520205,E42,13017593,Medical Incident,02/21/2013,02/21/2013,02/21/2013 01:46:26 PM,02/21/2013 01:48:03 PM,02/21/2013 01:49:13 PM,02/21/2013 01:49:56 PM,02/21/2013 01:54:11 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,02/21/2013 02:09:50 PM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",130520205-E42 +160761178,54,16030078,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:15:47 AM,03/16/2016 10:16:26 AM,03/16/2016 10:17:10 AM,03/16/2016 10:17:20 AM,03/16/2016 10:23:55 AM,03/16/2016 10:45:10 AM,03/16/2016 10:56:08 AM,Code 2 Transport,03/16/2016 11:10:26 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7906221863031, -122.413101980649)",160761178-54 +131350140,RS1,13045522,Medical Incident,05/15/2013,05/15/2013,05/15/2013 11:25:39 AM,05/15/2013 11:27:47 AM,05/15/2013 11:28:00 AM,05/15/2013 11:29:16 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 11:33:37 AM,100 Block of MASON ST,SF,94102,B03,1,1366,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",131350140-RS1 +160420323,KM07,16016729,Medical Incident,02/11/2016,02/10/2016,02/11/2016 04:24:03 AM,02/11/2016 04:25:55 AM,02/11/2016 04:27:16 AM,02/11/2016 04:27:44 AM,02/11/2016 04:35:43 AM,02/11/2016 05:01:06 AM,02/11/2016 05:04:32 AM,Code 2 Transport,02/11/2016 05:38:23 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160420323-KM07 +121740145,E06,12057734,Medical Incident,06/22/2012,06/22/2012,06/22/2012 12:07:34 PM,06/22/2012 12:08:43 PM,06/22/2012 12:09:15 PM,06/22/2012 12:09:26 PM,06/22/2012 12:11:29 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/22/2012 12:19:00 PM,600 Block of PAGE ST,SF,94117,B05,6,3531,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7728800408528, -122.431443648937)",121740145-E06 +102520217,E21,10079648,Alarms,09/09/2010,09/09/2010,09/09/2010 03:12:48 PM,09/09/2010 03:13:47 PM,09/09/2010 03:14:32 PM,09/09/2010 03:15:15 PM,09/09/2010 03:17:18 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Fire,09/09/2010 03:38:30 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",102520217-E21 +160822644,KM09,16032649,Medical Incident,03/22/2016,03/22/2016,03/22/2016 04:27:47 PM,03/22/2016 04:29:08 PM,03/22/2016 04:29:28 PM,03/22/2016 04:30:02 PM,03/22/2016 04:32:09 PM,03/22/2016 04:52:15 PM,03/22/2016 05:27:54 PM,Code 2 Transport,03/22/2016 05:57:31 PM,200 Block of SWEENY ST,San Francisco,94134,B10,42,6365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,9,Portola,"(37.7322220692702, -122.410162680629)",160822644-KM09 +160802402,55,16031870,Medical Incident,03/20/2016,03/20/2016,03/20/2016 04:29:03 PM,03/20/2016 04:31:08 PM,03/20/2016 04:33:23 PM,03/20/2016 04:34:03 PM,03/20/2016 04:40:37 PM,03/20/2016 04:54:29 PM,03/20/2016 05:07:49 PM,Code 2 Transport,03/20/2016 05:37:56 PM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",160802402-55 +132380338,E31,13080425,Structure Fire,08/26/2013,08/26/2013,08/26/2013 07:15:34 PM,08/26/2013 07:16:55 PM,08/26/2013 07:17:16 PM,08/26/2013 07:19:15 PM,08/26/2013 07:19:49 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 07:36:02 PM,2000 Block of ANZA ST,SF,94118,B07,31,7142,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.778770015145, -122.470027224406)",132380338-E31 +121160275,E29,12038522,Traffic Collision,04/25/2012,04/25/2012,04/25/2012 05:17:43 PM,04/25/2012 05:18:28 PM,04/25/2012 05:18:56 PM,04/25/2012 05:19:40 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/25/2012 05:19:50 PM,16TH ST/HARRISON ST,SF,94110,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7654476102712, -122.413105244954)",121160275-E29 +113280139,E03,11108852,Medical Incident,11/24/2011,11/24/2011,11/24/2011 12:16:06 PM,11/24/2011 12:16:31 PM,11/24/2011 12:17:00 PM,04/25/2016 02:01:29 PM,11/24/2011 12:20:03 PM,04/25/2016 02:01:29 PM,04/25/2016 02:01:29 PM,Other,11/24/2011 12:29:20 PM,300 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,2,1,3,Tenderloin,"(37.7871999750116, -122.409039390561)",113280139-E03 +120840316,RS2,12028017,Traffic Collision,03/24/2012,03/24/2012,03/24/2012 07:11:14 PM,03/24/2012 07:11:14 PM,03/24/2012 07:11:29 PM,03/24/2012 07:13:21 PM,03/24/2012 07:14:47 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/24/2012 07:25:19 PM,13TH ST/FOLSOM ST,SF,94103,B02,36,5121,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,Mission,"(37.7695911594816, -122.415577014994)",120840316-RS2 +131630332,E33,13055504,Structure Fire,06/12/2013,06/12/2013,06/12/2013 06:51:03 PM,06/12/2013 06:52:50 PM,06/12/2013 06:53:06 PM,06/12/2013 06:54:24 PM,06/12/2013 06:56:40 PM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/12/2013 07:59:47 PM,100 Block of CAINE AVE,SF,94112,B09,33,8325,3,3,3,true,Fire,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7158093811845, -122.451858998224)",131630332-E33 +160111705,88,16004399,Medical Incident,01/11/2016,01/11/2016,01/11/2016 01:14:52 PM,01/11/2016 01:15:37 PM,01/11/2016 01:15:50 PM,01/11/2016 01:16:19 PM,01/11/2016 01:25:13 PM,01/11/2016 01:40:23 PM,01/11/2016 01:55:53 PM,Code 2 Transport,01/11/2016 02:27:57 PM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",160111705-88 +130280136,E41,13009561,Medical Incident,01/28/2013,01/28/2013,01/28/2013 10:33:50 AM,01/28/2013 10:35:47 AM,01/28/2013 10:35:56 AM,01/28/2013 10:36:56 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 10:39:29 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",130280136-E41 +131640015,93,13055584,Medical Incident,06/13/2013,06/12/2013,06/13/2013 01:29:03 AM,06/13/2013 01:29:03 AM,06/13/2013 01:29:34 AM,04/25/2016 01:52:19 PM,06/13/2013 01:34:01 AM,06/13/2013 01:41:28 AM,06/13/2013 02:12:12 AM,Code 2 Transport,06/13/2013 02:38:17 AM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",131640015-93 +131560309,E07,13053005,Medical Incident,06/05/2013,06/05/2013,06/05/2013 06:28:02 PM,06/05/2013 06:29:26 PM,06/05/2013 06:29:33 PM,06/05/2013 06:30:30 PM,06/05/2013 06:34:17 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/05/2013 06:43:55 PM,3500 Block of 18TH ST,SF,94110,B02,7,5422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7615843954582, -122.422587868983)",131560309-E07 +160273560,68,16010854,Medical Incident,01/27/2016,01/27/2016,01/27/2016 08:34:10 PM,01/27/2016 08:35:03 PM,01/27/2016 08:35:31 PM,01/27/2016 08:36:14 PM,01/27/2016 08:39:23 PM,01/27/2016 08:54:09 PM,01/27/2016 09:04:08 PM,Code 2 Transport,01/27/2016 09:26:35 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160273560-68 +112590236,E19,11085430,Medical Incident,09/16/2011,09/16/2011,09/16/2011 03:03:31 PM,09/16/2011 03:04:24 PM,09/16/2011 03:04:51 PM,09/16/2011 03:06:10 PM,09/16/2011 03:07:44 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/16/2011 03:23:12 PM,LAKE MERCED BL/WINSTON DR,SF,94132,B08,19,8855,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7270195241029, -122.483864394372)",112590236-E19 +160810048,60,16032001,Medical Incident,03/21/2016,03/20/2016,03/21/2016 12:29:06 AM,03/21/2016 12:30:46 AM,03/21/2016 12:30:52 AM,03/21/2016 12:31:02 AM,03/21/2016 12:37:06 AM,03/21/2016 01:01:20 AM,03/21/2016 01:13:10 AM,Code 2 Transport,03/21/2016 02:04:44 AM,2500 Block of 25TH AVE,San Francisco,94116,B08,40,7462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7399677614762, -122.481993144476)",160810048-60 +102930071,RC1,10093358,Medical Incident,10/20/2010,10/20/2010,10/20/2010 08:12:21 AM,10/20/2010 08:12:38 AM,10/20/2010 08:13:02 AM,04/25/2016 02:08:01 PM,10/20/2010 08:24:48 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 08:33:43 AM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,RESCUE CAPTAIN,2,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",102930071-RC1 +160403542,76,16016214,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:01:33 PM,02/09/2016 09:01:33 PM,02/09/2016 09:01:57 PM,02/09/2016 09:02:05 PM,02/09/2016 09:06:03 PM,02/09/2016 09:22:27 PM,02/09/2016 09:34:26 PM,Code 2 Transport,02/09/2016 10:27:24 PM,MISSION ST/11TH ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160403542-76 +130410082,RS1,13013938,Structure Fire,02/10/2013,02/09/2013,02/10/2013 07:22:43 AM,02/10/2013 07:23:27 AM,02/10/2013 07:23:46 AM,02/10/2013 07:25:40 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 07:31:59 AM,PINE ST/LYON ST,SF,94115,B05,10,4263,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,2,Presidio Heights,"(37.7864809020092, -122.44520849167)",130410082-RS1 +132800039,E03,13095176,Medical Incident,10/07/2013,10/06/2013,10/07/2013 04:35:37 AM,10/07/2013 04:35:37 AM,10/07/2013 04:35:44 AM,10/07/2013 04:37:42 AM,10/07/2013 04:42:44 AM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/07/2013 04:51:14 AM,VAN NESS AV/EDDY ST,SF,94109,B02,3,3163,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",132800039-E03 +122040053,RC2,12067707,Medical Incident,07/22/2012,07/21/2012,07/22/2012 03:00:20 AM,07/22/2012 03:02:05 AM,07/22/2012 03:02:38 AM,07/22/2012 03:06:06 AM,07/22/2012 03:11:11 AM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,04/25/2016 01:57:36 PM,1600 Block of WALLACE AVE,SF,94124,B10,17,6546,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7280277124346, -122.391963404098)",122040053-RC2 +121810131,89,12060218,Medical Incident,06/29/2012,06/29/2012,06/29/2012 10:13:43 AM,06/29/2012 10:14:17 AM,06/29/2012 10:14:37 AM,06/29/2012 10:19:48 AM,06/29/2012 10:21:46 AM,06/29/2012 10:44:59 AM,06/29/2012 11:12:33 AM,Code 2 Transport,06/29/2012 11:23:50 AM,8TH ST/TEHAMA ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7757938041855, -122.411069443844)",121810131-89 +111050172,E03,11034763,Medical Incident,04/15/2011,04/15/2011,04/15/2011 01:18:45 PM,04/15/2011 01:19:23 PM,04/15/2011 01:19:48 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/15/2011 01:21:11 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",111050172-E03 +131730047,T13,13058586,Outside Fire,06/22/2013,06/21/2013,06/22/2013 04:06:41 AM,06/22/2013 04:06:55 AM,06/22/2013 04:07:51 AM,06/22/2013 04:10:38 AM,06/22/2013 04:13:10 AM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/22/2013 04:17:37 AM,800 Block of THE EMBARCADERO,SF,94111,B01,13,919,3,3,3,true,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",131730047-T13 +102300338,B02,10072517,Alarms,08/18/2010,08/18/2010,08/18/2010 08:32:30 PM,08/18/2010 08:34:27 PM,08/18/2010 08:38:08 PM,08/18/2010 08:39:19 PM,08/18/2010 08:43:33 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/18/2010 08:46:22 PM,2100 Block of FOLSOM ST,SF,94110,B02,7,5424,3,3,3,false,,1,CHIEF,3,2,9,Mission,"(37.7628937069404, -122.415145830574)",102300338-B02 +120320189,E32,12010583,Medical Incident,02/01/2012,02/01/2012,02/01/2012 01:50:35 PM,02/01/2012 01:50:52 PM,02/01/2012 01:51:09 PM,02/01/2012 01:52:32 PM,02/01/2012 01:54:41 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,No Merit,02/01/2012 01:58:45 PM,100 Block of BONVIEW ST,SF,94110,B06,32,5655,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7414828908711, -122.417767999236)",120320189-E32 +122660357,E32,12088031,Medical Incident,09/22/2012,09/22/2012,09/22/2012 10:27:26 PM,09/22/2012 10:28:01 PM,09/22/2012 10:28:41 PM,09/22/2012 10:30:01 PM,09/22/2012 10:32:03 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/22/2012 10:34:09 PM,400 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7391460959559, -122.416820868342)",122660357-E32 +112800367,71,11092834,Medical Incident,10/07/2011,10/07/2011,10/07/2011 10:47:27 PM,10/07/2011 10:48:08 PM,10/07/2011 10:48:44 PM,04/25/2016 02:02:17 PM,10/07/2011 10:50:49 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 10:52:05 PM,1600 Block of POLK ST,SF,94109,B04,41,3123,3,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7919308386336, -122.421031367895)",112800367-71 +110500410,E02,11016718,Alarms,02/19/2011,02/19/2011,02/19/2011 11:19:18 PM,02/19/2011 11:20:32 PM,02/19/2011 11:20:47 PM,02/19/2011 11:21:39 PM,02/19/2011 11:25:59 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 11:29:11 PM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",110500410-E02 +160111598,52,16004386,Medical Incident,01/11/2016,01/11/2016,01/11/2016 12:44:04 PM,01/11/2016 12:45:18 PM,01/11/2016 12:47:09 PM,01/11/2016 12:48:18 PM,01/11/2016 12:53:27 PM,01/11/2016 01:07:38 PM,01/11/2016 01:16:08 PM,Code 3 Transport,01/11/2016 02:05:06 PM,1200 Block of 16TH AVE,San Francisco,94122,B08,22,7367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",160111598-52 +120440204,E03,12014717,Medical Incident,02/13/2012,02/13/2012,02/13/2012 02:54:38 PM,02/13/2012 02:55:47 PM,02/13/2012 02:56:27 PM,02/13/2012 02:57:55 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 02:59:16 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",120440204-E03 +123190004,T07,12105920,Structure Fire,11/14/2012,11/13/2012,11/14/2012 12:09:40 AM,11/14/2012 12:09:40 AM,11/14/2012 12:09:50 AM,11/14/2012 12:11:33 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/14/2012 12:14:09 AM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,true,Alarm,1,TRUCK,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",123190004-T07 +121940404,KM15,12064734,Medical Incident,07/12/2012,07/12/2012,07/12/2012 09:42:20 PM,07/12/2012 09:44:15 PM,07/12/2012 09:44:27 PM,07/12/2012 09:45:07 PM,07/12/2012 09:50:21 PM,07/12/2012 09:57:53 PM,07/12/2012 10:11:49 PM,Code 2 Transport,07/12/2012 10:47:34 PM,700 Block of PAGE ST,SF,94117,B05,6,3636,1,1,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7726705470926, -122.433090198155)",121940404-KM15 +133210057,89,13108936,Medical Incident,11/17/2013,11/16/2013,11/17/2013 04:42:16 AM,11/17/2013 04:43:01 AM,11/17/2013 04:43:18 AM,11/17/2013 04:43:37 AM,11/17/2013 04:46:38 AM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Patient Declined Transport,11/17/2013 04:54:15 AM,300 Block of 11TH ST,SF,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7712855259531, -122.413204267102)",133210057-89 +122920285,E42,12096829,Traffic Collision,10/18/2012,10/18/2012,10/18/2012 03:54:37 PM,10/18/2012 03:54:38 PM,10/18/2012 03:54:52 PM,10/18/2012 03:55:50 PM,10/18/2012 03:58:43 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Patient Declined Transport,10/18/2012 04:09:41 PM,BACON ST/SAN BRUNO AV,SF,94134,B10,42,6451,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7276341272753, -122.403592890818)",122920285-E42 +160382906,AM08,16015338,Medical Incident,02/07/2016,02/07/2016,02/07/2016 06:39:28 PM,02/07/2016 06:42:10 PM,02/07/2016 06:42:20 PM,02/07/2016 06:43:17 PM,02/07/2016 06:52:04 PM,02/07/2016 07:25:35 PM,02/07/2016 07:56:30 PM,Code 2 Transport,02/07/2016 08:30:27 PM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7120857687728, -122.445406512004)",160382906-AM08 +103350134,T19,10107139,Structure Fire,12/01/2010,12/01/2010,12/01/2010 11:12:02 AM,12/01/2010 11:12:41 AM,12/01/2010 11:12:57 AM,12/01/2010 11:13:44 AM,12/01/2010 11:17:02 AM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Other,12/01/2010 11:37:16 AM,GREAT HY/SKYLINE BL,SF,94132,B08,19,8713,3,3,3,false,,1,TRUCK,1,8,7,Lakeshore,"(37.7252595509479, -122.503040635623)",103350134-T19 +160110916,57,16004318,Medical Incident,01/11/2016,01/11/2016,01/11/2016 09:15:26 AM,01/11/2016 09:16:44 AM,01/11/2016 09:17:13 AM,01/11/2016 09:17:21 AM,01/11/2016 09:25:45 AM,01/11/2016 09:31:45 AM,01/11/2016 09:40:29 AM,Code 3 Transport,01/11/2016 10:37:52 AM,2300 Block of 35TH AVE,San Francisco,94116,B08,18,7555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.743232255412, -122.492833251462)",160110916-57 +160042918,62,16001715,Medical Incident,01/04/2016,01/04/2016,01/04/2016 06:18:13 PM,01/04/2016 06:18:13 PM,01/04/2016 06:18:47 PM,01/04/2016 06:18:55 PM,01/04/2016 06:30:15 PM,01/04/2016 06:43:24 PM,01/04/2016 07:04:13 PM,Code 2 Transport,01/04/2016 07:41:35 PM,HOWARD ST/5TH ST,San Francisco,94103,B03,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160042918-62 +102460073,B02,10077646,Alarms,09/03/2010,09/02/2010,09/03/2010 06:16:36 AM,09/03/2010 06:19:32 AM,09/03/2010 06:19:54 AM,09/03/2010 06:22:04 AM,09/03/2010 06:23:44 AM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/03/2010 06:26:54 AM,600 Block of FELL ST,SF,94102,B02,36,3423,3,3,3,false,,1,CHIEF,3,2,5,Hayes Valley,"(37.7751599940562, -122.42853414448)",102460073-B02 +112820288,54,11093421,Medical Incident,10/09/2011,10/09/2011,10/09/2011 05:38:02 PM,10/09/2011 05:38:41 PM,10/09/2011 05:38:54 PM,10/09/2011 05:40:42 PM,10/09/2011 05:42:51 PM,10/09/2011 06:09:20 PM,10/09/2011 06:23:43 PM,Code 2 Transport,10/09/2011 07:15:31 PM,1800 Block of 39TH AVE,SF,94122,B08,18,7623,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7523579274535, -122.497905539152)",112820288-54 +111190114,T08,11039192,Medical Incident,04/29/2011,04/29/2011,04/29/2011 10:47:09 AM,04/29/2011 10:48:41 AM,04/29/2011 10:48:56 AM,04/29/2011 10:49:47 AM,04/29/2011 10:53:11 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 11:01:35 AM,300 Block of 7TH ST,SF,94103,B03,1,2313,E,E,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7765647940442, -122.407516832678)",111190114-T08 +160420364,88,16016735,Medical Incident,02/11/2016,02/10/2016,02/11/2016 04:58:00 AM,02/11/2016 04:59:42 AM,02/11/2016 05:00:18 AM,02/11/2016 05:00:33 AM,02/11/2016 05:07:07 AM,02/11/2016 05:33:20 AM,02/11/2016 05:43:29 AM,Code 2 Transport,02/11/2016 06:16:34 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160420364-88 +123390196,86,12113064,Medical Incident,12/04/2012,12/04/2012,12/04/2012 01:23:45 PM,12/04/2012 01:25:47 PM,12/04/2012 01:26:03 PM,12/04/2012 01:26:45 PM,12/04/2012 01:31:04 PM,12/04/2012 01:43:40 PM,12/04/2012 01:59:18 PM,Code 2 Transport,12/04/2012 02:11:08 PM,1100 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7517406897648, -122.396529537539)",123390196-86 +160181104,63,16007185,Medical Incident,01/18/2016,01/18/2016,01/18/2016 10:33:44 AM,01/18/2016 10:35:28 AM,01/18/2016 10:35:44 AM,01/18/2016 10:36:03 AM,01/18/2016 10:41:31 AM,01/18/2016 11:10:29 AM,01/18/2016 11:11:13 AM,Code 2 Transport,01/18/2016 11:44:07 AM,1600 Block of VALENCIA ST,San Francisco,94110,B06,11,5611,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7459784515022, -122.420143715406)",160181104-63 +111580371,E42,11052405,Medical Incident,06/07/2011,06/07/2011,06/07/2011 10:30:22 PM,06/07/2011 10:32:38 PM,06/07/2011 10:32:46 PM,06/07/2011 10:34:21 PM,06/07/2011 10:35:07 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/07/2011 10:45:05 PM,100 Block of HALE ST,SF,94134,B10,42,6362,3,3,3,true,,1,ENGINE,2,10,9,Portola,"(37.7323441875657, -122.408123114783)",111580371-E42 +120830262,E08,12027631,Alarms,03/23/2012,03/23/2012,03/23/2012 04:42:17 PM,03/23/2012 04:43:23 PM,03/23/2012 04:43:38 PM,03/23/2012 04:45:13 PM,03/23/2012 04:49:16 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 04:58:13 PM,100 Block of TOWNSEND ST,SF,94107,B03,8,2154,3,3,3,true,Alarm,1,ENGINE,3,3,6,Mission Bay,"(37.7796910137658, -122.391588816975)",120830262-E08 +112730359,E12,11090393,Alarms,09/30/2011,09/30/2011,09/30/2011 08:19:49 PM,09/30/2011 08:21:22 PM,09/30/2011 08:21:39 PM,04/25/2016 02:02:24 PM,09/30/2011 08:24:49 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 08:27:03 PM,600 Block of CLAYTON ST,SF,94117,B05,12,4525,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7693399647388, -122.448415933543)",112730359-E12 +102290060,E18,10071972,Medical Incident,08/17/2010,08/16/2010,08/17/2010 07:49:02 AM,08/17/2010 07:50:28 AM,08/17/2010 07:51:04 AM,08/17/2010 07:51:52 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/17/2010 07:53:29 AM,1600 Block of 43RD AVE,SF,94122,B08,23,7651,3,3,3,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7558907938511, -122.502453384004)",102290060-E18 +112770234,E41,11091732,Alarms,10/04/2011,10/04/2011,10/04/2011 02:30:39 PM,10/04/2011 02:31:07 PM,10/04/2011 02:31:15 PM,10/04/2011 02:32:17 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 02:32:19 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,,1,ENGINE,4,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",112770234-E41 +103360348,E03,10107624,Medical Incident,12/02/2010,12/02/2010,12/02/2010 09:14:21 PM,12/02/2010 09:15:30 PM,12/02/2010 09:18:20 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,04/25/2016 02:07:19 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",103360348-E03 +132760058,93,13093638,Medical Incident,10/03/2013,10/02/2013,10/03/2013 05:37:54 AM,10/03/2013 05:39:32 AM,10/03/2013 05:40:05 AM,10/03/2013 05:40:22 AM,10/03/2013 05:55:44 AM,10/03/2013 06:12:53 AM,10/03/2013 06:26:46 AM,Code 2 Transport,10/03/2013 06:42:23 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132760058-93 +111180360,B04,11039086,Alarms,04/28/2011,04/28/2011,04/28/2011 10:36:05 PM,04/28/2011 10:38:21 PM,04/28/2011 10:38:32 PM,04/28/2011 10:39:40 PM,04/28/2011 10:42:01 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Fire,04/28/2011 10:47:27 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,,1,CHIEF,3,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",111180360-B04 +160163935,83,16006639,Medical Incident,01/16/2016,01/16/2016,01/16/2016 11:53:39 PM,01/16/2016 11:55:07 PM,01/16/2016 11:56:30 PM,01/16/2016 11:56:59 PM,01/17/2016 12:14:35 AM,01/17/2016 12:14:54 AM,01/17/2016 12:20:58 AM,Code 2 Transport,01/17/2016 12:59:25 AM,19TH ST/DOLORES ST,San Francisco,94110,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",160163935-83 +160522096,KM13,16020852,Medical Incident,02/21/2016,02/21/2016,02/21/2016 03:18:23 PM,02/21/2016 03:18:48 PM,02/21/2016 03:19:13 PM,02/21/2016 03:20:36 PM,02/21/2016 03:28:17 PM,02/21/2016 03:47:44 PM,02/21/2016 04:43:52 PM,Code 2 Transport,02/21/2016 04:55:25 PM,MAIN ST/MARKET ST,San Francisco,94105,B03,35,2116,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7930970823054, -122.396504488933)",160522096-KM13 +121060178,AM06,12035127,Medical Incident,04/15/2012,04/15/2012,04/15/2012 01:00:26 PM,04/15/2012 01:02:20 PM,04/15/2012 01:02:41 PM,04/25/2016 01:59:09 PM,04/15/2012 01:09:12 PM,04/15/2012 01:24:16 PM,04/15/2012 01:28:15 PM,Code 2 Transport,04/15/2012 02:10:04 PM,700 Block of TAYLOR ST,SF,94109,B01,41,1446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7892649467456, -122.412049085376)",121060178-AM06 +102990180,E11,10095457,Alarms,10/26/2010,10/26/2010,10/26/2010 12:27:58 PM,10/26/2010 12:29:23 PM,10/26/2010 12:29:33 PM,10/26/2010 12:30:28 PM,10/26/2010 12:33:13 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 12:35:39 PM,800 Block of CAPP ST,SF,94110,B06,7,5511,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7531080512306, -122.417362867532)",102990180-E11 +160460067,63,16018344,Medical Incident,02/15/2016,02/14/2016,02/15/2016 12:26:05 AM,02/15/2016 12:27:02 AM,02/15/2016 12:28:05 AM,02/15/2016 12:28:41 AM,02/15/2016 12:47:11 AM,02/15/2016 12:47:57 AM,02/15/2016 01:12:22 AM,Code 2 Transport,02/15/2016 01:45:44 AM,1000 Block of KEY AVE,San Francisco,94124,B10,44,6575,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7196121077812, -122.397328238942)",160460067-63 +160160592,62,16006308,Medical Incident,01/16/2016,01/15/2016,01/16/2016 05:13:47 AM,01/16/2016 05:16:25 AM,01/16/2016 05:22:35 AM,01/16/2016 05:22:47 AM,01/16/2016 05:31:46 AM,01/16/2016 05:47:33 AM,01/16/2016 06:01:13 AM,Code 2 Transport,01/16/2016 06:41:38 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160160592-62 +160290717,55,16011352,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:13:25 AM,01/29/2016 08:13:47 AM,01/29/2016 08:14:29 AM,01/29/2016 08:14:56 AM,01/29/2016 08:38:38 AM,01/29/2016 08:58:52 AM,01/29/2016 09:40:39 AM,Code 2 Transport,01/29/2016 10:42:20 AM,1700 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",160290717-55 +160181978,66,16007268,Medical Incident,01/18/2016,01/18/2016,01/18/2016 03:04:01 PM,01/18/2016 03:05:09 PM,01/18/2016 03:05:36 PM,01/18/2016 03:05:42 PM,01/18/2016 03:29:08 PM,01/18/2016 03:56:19 PM,01/18/2016 04:09:43 PM,Code 2 Transport,01/18/2016 05:15:05 PM,200 Block of HARRISON ST,San Francisco,94105,B03,35,2123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",160181978-66 +131020056,KM04,13034177,Medical Incident,04/12/2013,04/11/2013,04/12/2013 07:25:39 AM,04/12/2013 07:27:35 AM,04/12/2013 07:27:57 AM,04/12/2013 07:28:40 AM,04/12/2013 07:35:28 AM,04/12/2013 08:01:35 AM,04/12/2013 08:08:58 AM,Code 2 Transport,04/12/2013 08:47:31 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",131020056-KM04 +112030387,E03,11067189,Medical Incident,07/22/2011,07/22/2011,07/22/2011 09:38:32 PM,07/22/2011 09:38:32 PM,07/22/2011 09:39:05 PM,07/22/2011 09:40:46 PM,07/22/2011 09:44:47 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/22/2011 09:55:26 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",112030387-E03 +111710344,E25,11056521,Structure Fire,06/20/2011,06/20/2011,06/20/2011 08:17:07 PM,06/20/2011 08:18:13 PM,06/20/2011 08:18:43 PM,06/20/2011 08:19:45 PM,06/20/2011 08:21:31 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/20/2011 08:52:44 PM,1900 Block of OAKDALE AVE,SF,94124,B10,42,6444,3,3,3,false,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7382707285537, -122.396917502397)",111710344-E25 +160080280,71,16003078,Medical Incident,01/08/2016,01/07/2016,01/08/2016 02:45:00 AM,01/08/2016 02:50:12 AM,01/08/2016 02:51:13 AM,01/08/2016 02:51:28 AM,01/08/2016 02:56:29 AM,01/08/2016 03:15:36 AM,01/08/2016 03:39:58 AM,Code 2 Transport,01/08/2016 04:11:19 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",160080280-71 +140420208,T16,14014297,Citizen Assist / Service Call,02/11/2014,02/11/2014,02/11/2014 01:02:43 PM,02/11/2014 01:05:32 PM,02/11/2014 01:06:23 PM,02/11/2014 01:07:11 PM,02/11/2014 01:11:55 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/11/2014 01:16:28 PM,LARKIN ST/NORTH POINT ST,SF,94109,B01,28,1623,3,3,3,false,Alarm,1,TRUCK,1,1,2,Russian Hill,"(37.8054966485492, -122.42200682156)",140420208-T16 +111100343,KM01,11036438,Medical Incident,04/20/2011,04/20/2011,04/20/2011 07:22:14 PM,04/20/2011 07:24:06 PM,04/20/2011 07:24:46 PM,04/20/2011 07:26:27 PM,04/20/2011 07:30:09 PM,04/20/2011 07:52:56 PM,04/20/2011 08:00:27 PM,Code 2 Transport,04/20/2011 08:33:04 PM,0 Block of TERRA VISTA AVE,SF,94115,B05,21,4256,3,3,3,false,,1,PRIVATE,1,5,2,Lone Mountain/USF,"(37.7814248717141, -122.441695636568)",111100343-KM01 +122050260,E03,12068236,Medical Incident,07/23/2012,07/23/2012,07/23/2012 05:10:20 PM,07/23/2012 05:11:23 PM,07/23/2012 05:11:40 PM,07/23/2012 05:12:53 PM,07/23/2012 05:14:26 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/23/2012 05:28:40 PM,1400 Block of PINE ST,SF,94109,B04,3,3122,E,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",122050260-E03 +160601768,KM09,16023908,Medical Incident,02/29/2016,02/29/2016,02/29/2016 01:10:46 PM,02/29/2016 01:15:08 PM,02/29/2016 01:16:00 PM,02/29/2016 01:17:07 PM,02/29/2016 01:18:53 PM,02/29/2016 01:44:32 PM,02/29/2016 02:10:04 PM,Code 2 Transport,02/29/2016 02:49:27 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160601768-KM09 +120910230,E39,12030169,Medical Incident,03/31/2012,03/31/2012,03/31/2012 03:53:04 PM,03/31/2012 03:55:47 PM,03/31/2012 03:57:38 PM,03/31/2012 03:59:03 PM,03/31/2012 04:00:28 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,Other,03/31/2012 04:12:21 PM,100 Block of DORCHESTER WAY,SF,94127,B08,39,8573,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7410346351348, -122.462900219595)",120910230-E39 +140840038,84,14028187,Medical Incident,03/25/2014,03/24/2014,03/25/2014 04:06:56 AM,03/25/2014 04:07:19 AM,03/25/2014 04:07:55 AM,03/25/2014 04:08:21 AM,03/25/2014 04:27:36 AM,03/25/2014 04:38:54 AM,03/25/2014 05:11:27 AM,Code 2 Transport,03/25/2014 05:40:52 AM,1000 Block of POTRERO AVE,SAN FRANCISCO,94110,B10,37,2552,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7553586640566, -122.406682612344)",140840038-84 +121540258,T16,12051049,Alarms,06/02/2012,06/02/2012,06/02/2012 04:56:42 PM,06/02/2012 04:58:58 PM,06/02/2012 04:59:26 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 05:01:12 PM,400 Block of AVILA ST,SF,94123,B04,16,3664,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.8051805387731, -122.440515540396)",121540258-T16 +102710164,T09,10085972,Alarms,09/28/2010,09/28/2010,09/28/2010 11:27:32 AM,09/28/2010 11:28:42 AM,09/28/2010 11:28:57 AM,09/28/2010 11:29:59 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 11:34:54 AM,2000 Block of 3RD ST,SF,94107,B03,29,2466,3,3,3,false,,1,TRUCK,3,3,10,Potrero Hill,"(37.7636793846458, -122.388919450533)",102710164-T09 +160423434,KM03,16017020,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:25:51 PM,02/11/2016 08:25:51 PM,02/11/2016 08:26:10 PM,02/11/2016 08:26:37 PM,02/11/2016 08:34:01 PM,02/11/2016 08:45:08 PM,02/11/2016 08:50:31 PM,Code 2 Transport,02/11/2016 09:23:49 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7697840925361, -122.449122960735)",160423434-KM03 +160550220,71,16021857,Medical Incident,02/24/2016,02/23/2016,02/24/2016 02:32:37 AM,02/24/2016 02:34:48 AM,02/24/2016 02:35:40 AM,02/24/2016 02:35:51 AM,02/24/2016 02:40:51 AM,02/24/2016 02:53:42 AM,02/24/2016 02:57:18 AM,Code 2 Transport,02/24/2016 03:24:59 AM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160550220-71 +130820276,E08,13027530,Medical Incident,03/23/2013,03/23/2013,03/23/2013 07:03:33 PM,03/23/2013 07:04:12 PM,03/23/2013 07:04:34 PM,03/23/2013 07:04:45 PM,03/23/2013 07:06:21 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Other,03/23/2013 07:30:13 PM,0 Block of RIZAL ST,SF,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.781822111031, -122.399291985556)",130820276-E08 +111570383,92,11052081,Medical Incident,06/06/2011,06/06/2011,06/06/2011 11:26:23 PM,06/06/2011 11:28:35 PM,06/06/2011 11:29:06 PM,06/06/2011 11:29:39 PM,06/06/2011 11:32:09 PM,06/06/2011 11:49:52 PM,06/06/2011 11:56:11 PM,Code 2 Transport,06/07/2011 12:25:13 AM,200 Block of PIERCE ST,SF,94117,B05,6,3636,3,3,3,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7721629494815, -122.433760149864)",111570383-92 +132680173,E06,13090970,Medical Incident,09/25/2013,09/25/2013,09/25/2013 12:16:02 PM,09/25/2013 12:16:36 PM,09/25/2013 12:17:01 PM,09/25/2013 12:18:10 PM,09/25/2013 12:20:42 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 12:24:39 PM,3800 Block of 17TH ST,SF,94114,B05,6,5252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",132680173-E06 +120440254,74,12014762,Structure Fire,02/13/2012,02/13/2012,02/13/2012 06:07:38 PM,02/13/2012 06:08:01 PM,02/13/2012 06:08:26 PM,02/13/2012 06:08:40 PM,02/13/2012 06:19:25 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 06:55:29 PM,2900 Block of GRIFFITH ST,SF,94124,B10,17,6642,3,3,3,true,Fire,1,MEDIC,8,10,10,Bayview Hunters Point,"(37.7165907184231, -122.389695949457)",120440254-74 +160411613,57,16016434,Medical Incident,02/10/2016,02/10/2016,02/10/2016 12:06:54 PM,02/10/2016 12:07:59 PM,02/10/2016 12:08:28 PM,02/10/2016 12:12:27 PM,02/10/2016 12:12:40 PM,02/10/2016 12:17:41 PM,02/10/2016 12:28:03 PM,Code 2 Transport,02/10/2016 01:04:01 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",160411613-57 +123100139,E28,12103079,Medical Incident,11/05/2012,11/05/2012,11/05/2012 10:31:33 AM,11/05/2012 10:33:43 AM,11/05/2012 10:34:05 AM,11/05/2012 10:35:26 AM,11/05/2012 10:38:50 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 11:11:31 AM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,1,1,2,false,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",123100139-E28 +103520292,T16,10113063,Alarms,12/18/2010,12/18/2010,12/18/2010 05:50:03 PM,12/18/2010 05:51:34 PM,12/18/2010 05:51:43 PM,12/18/2010 05:53:58 PM,12/18/2010 05:59:08 PM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/18/2010 06:04:49 PM,1200 Block of GREENWICH ST,SF,94109,B01,41,1612,3,3,3,false,,1,TRUCK,3,1,2,Russian Hill,"(37.8009065560237, -122.420238670227)",103520292-T16 +110770111,E51,11025285,Medical Incident,03/18/2011,03/18/2011,03/18/2011 09:13:41 AM,03/18/2011 09:14:22 AM,03/18/2011 09:15:06 AM,03/18/2011 09:16:29 AM,03/18/2011 09:22:18 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 09:47:33 AM,1400 Block of BATTERY CAULFIELD RD,PR,94129,B99,51,4622,2,2,2,true,,1,ENGINE,1,7,2,Presidio,"(37.7918040090412, -122.475148791115)",110770111-E51 +160722726,89,16028713,Medical Incident,03/12/2016,03/12/2016,03/12/2016 06:30:46 PM,03/12/2016 06:31:45 PM,03/12/2016 06:35:30 PM,03/12/2016 06:35:38 PM,03/12/2016 06:43:37 PM,03/12/2016 06:53:38 PM,03/12/2016 07:12:12 PM,Code 2 Transport,03/12/2016 07:44:04 PM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160722726-89 +131070344,E19,13036105,Medical Incident,04/17/2013,04/17/2013,04/17/2013 07:45:33 PM,04/17/2013 07:46:37 PM,04/17/2013 07:47:06 PM,04/17/2013 07:48:48 PM,04/17/2013 07:52:04 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/17/2013 08:07:10 PM,500 Block of CRESTLAKE DR,SF,94132,B08,19,7551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7365196116791, -122.490602354914)",131070344-E19 +102330264,E03,10073416,Medical Incident,08/21/2010,08/21/2010,08/21/2010 07:57:20 PM,08/21/2010 07:57:47 PM,08/21/2010 07:58:16 PM,08/21/2010 08:00:06 PM,08/21/2010 08:01:34 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Fire,08/21/2010 08:07:53 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7866019512795, -122.419812186232)",102330264-E03 +131310178,E28,13044222,Traffic Collision,05/11/2013,05/11/2013,05/11/2013 11:30:33 AM,05/11/2013 11:30:36 AM,05/11/2013 11:31:29 AM,05/11/2013 11:31:47 AM,05/11/2013 11:35:40 AM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 11:43:53 AM,JEFFERSON ST/HYDE ST,SF,94109,B03,28,1616,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8075901055183, -122.420743268989)",131310178-E28 +160800949,53,16031737,Medical Incident,03/20/2016,03/20/2016,03/20/2016 08:42:57 AM,03/20/2016 08:43:56 AM,03/20/2016 08:44:26 AM,03/20/2016 08:44:43 AM,03/20/2016 08:49:09 AM,03/20/2016 08:59:13 AM,03/20/2016 09:08:41 AM,Code 2 Transport,03/20/2016 09:31:30 AM,HOWARD ST/MAIN ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160800949-53 +112320166,KM01,11076580,Medical Incident,08/20/2011,08/20/2011,08/20/2011 12:30:23 PM,08/20/2011 12:30:52 PM,08/20/2011 12:33:05 PM,04/25/2016 02:03:05 PM,08/20/2011 12:40:16 PM,08/20/2011 12:51:18 PM,08/20/2011 01:01:48 PM,Code 2 Transport,08/20/2011 01:43:56 PM,1100 Block of MARKET ST,SF,94102,B03,36,1552,2,2,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",112320166-KM01 +121750185,KM02,12058108,Medical Incident,06/23/2012,06/23/2012,06/23/2012 01:03:40 PM,06/23/2012 01:04:50 PM,06/23/2012 01:05:41 PM,06/23/2012 01:06:28 PM,06/23/2012 01:10:33 PM,06/23/2012 01:16:18 PM,06/23/2012 01:31:34 PM,Code 2 Transport,06/23/2012 01:43:44 PM,300 Block of MASON ST,SF,94102,B01,3,1411,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7864220856559, -122.409797430148)",121750185-KM02 +132160038,66,13072866,Medical Incident,08/04/2013,08/03/2013,08/04/2013 02:21:06 AM,08/04/2013 02:24:52 AM,08/04/2013 02:25:22 AM,08/04/2013 02:26:11 AM,08/04/2013 02:33:40 AM,08/04/2013 02:46:12 AM,08/04/2013 02:50:38 AM,Code 2 Transport,08/04/2013 03:11:28 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",132160038-66 +123100391,75,12103315,Medical Incident,11/05/2012,11/05/2012,11/05/2012 11:19:36 PM,11/05/2012 11:21:18 PM,11/05/2012 11:21:47 PM,11/05/2012 11:22:07 PM,11/05/2012 11:30:45 PM,11/05/2012 11:56:24 PM,11/06/2012 12:05:27 AM,Code 2 Transport,11/06/2012 12:33:14 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",123100391-75 +131440125,KM01,13048776,Medical Incident,05/24/2013,05/24/2013,05/24/2013 10:46:32 AM,05/24/2013 10:47:11 AM,05/24/2013 10:47:26 AM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Other,05/24/2013 10:49:49 AM,6500 Block of CALIFORNIA ST,SF,94121,B07,14,7227,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,7,1,Outer Richmond,"(37.783706451885, -122.487680139218)",131440125-KM01 +131670206,E20,13056712,Electrical Hazard,06/16/2013,06/16/2013,06/16/2013 01:28:20 PM,06/16/2013 01:30:31 PM,06/16/2013 01:31:26 PM,06/16/2013 01:32:38 PM,06/16/2013 01:36:53 PM,04/25/2016 01:52:16 PM,04/25/2016 01:52:16 PM,Fire,06/16/2013 01:42:46 PM,500 Block of BURNETT AVE,SF,94131,B06,24,5281,3,3,3,true,Alarm,1,ENGINE,1,6,8,Twin Peaks,"(37.7522092988242, -122.444482891572)",131670206-E20 +123630169,66,12121451,Medical Incident,12/28/2012,12/28/2012,12/28/2012 12:35:23 PM,12/28/2012 12:36:32 PM,12/28/2012 12:37:56 PM,12/28/2012 12:38:11 PM,12/28/2012 12:41:56 PM,12/28/2012 12:56:25 PM,12/28/2012 01:18:17 PM,Code 2 Transport,12/28/2012 01:51:42 PM,100 Block of MONTANA ST,SF,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7166719045495, -122.457576023074)",123630169-66 +103230361,E37,10103622,Medical Incident,11/19/2010,11/19/2010,11/19/2010 09:01:37 PM,11/19/2010 09:07:11 PM,11/19/2010 09:07:24 PM,11/19/2010 09:08:08 PM,11/19/2010 09:09:44 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Other,11/19/2010 09:18:22 PM,600 Block of WISCONSIN ST,SF,94107,B10,37,2521,3,3,3,false,,1,ENGINE,1,10,10,Potrero Hill,"(37.7585715950261, -122.399129212862)",103230361-E37 +131360079,55,13045789,Medical Incident,05/16/2013,05/15/2013,05/16/2013 07:33:44 AM,05/16/2013 07:34:53 AM,05/16/2013 07:35:25 AM,05/16/2013 07:35:55 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/16/2013 07:44:47 AM,100 Block of GIRARD ST,SF,94134,B10,42,6341,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7303933049122, -122.40577188604)",131360079-55 +130950250,E13,13031864,Medical Incident,04/05/2013,04/05/2013,04/05/2013 03:04:21 PM,04/05/2013 03:05:28 PM,04/05/2013 03:06:27 PM,04/05/2013 03:07:16 PM,04/05/2013 03:10:03 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,No Merit,04/05/2013 03:11:39 PM,200 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7897614265442, -122.404814371149)",130950250-E13 +121000372,96,12033301,Medical Incident,04/09/2012,04/09/2012,04/09/2012 08:48:00 PM,04/09/2012 08:50:53 PM,04/09/2012 08:52:22 PM,04/09/2012 08:52:48 PM,04/09/2012 08:59:43 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,No Merit,04/09/2012 09:22:01 PM,FOLSOM ST/5TH ST,SF,94107,B03,1,2244,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",121000372-96 +121120343,E43,12037266,Other,04/21/2012,04/21/2012,04/21/2012 07:14:58 PM,04/21/2012 07:15:17 PM,04/21/2012 07:15:26 PM,04/21/2012 07:16:53 PM,04/21/2012 07:21:08 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Fire,04/21/2012 07:38:42 PM,0 Block of NORTON ST,SF,94112,B09,43,6117,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7250514707571, -122.435709128534)",121120343-E43 +160850126,65,16033614,Medical Incident,03/25/2016,03/24/2016,03/25/2016 12:58:44 AM,03/25/2016 12:58:44 AM,03/25/2016 12:59:25 AM,03/25/2016 01:01:37 AM,03/25/2016 01:12:05 AM,03/25/2016 02:15:52 AM,03/25/2016 01:41:48 AM,Code 2 Transport,03/25/2016 02:52:25 AM,1400 Block of CARROLL AVE,San Francisco,94124,B10,17,6615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7233380868371, -122.390595923329)",160850126-65 +121180353,E38,12039226,Medical Incident,04/27/2012,04/27/2012,04/27/2012 06:56:26 PM,04/27/2012 06:57:31 PM,04/27/2012 06:57:37 PM,04/27/2012 06:59:20 PM,04/27/2012 07:02:37 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 07:25:07 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121180353-E38 +111980240,KM04,11065374,Medical Incident,07/17/2011,07/17/2011,07/17/2011 04:30:43 PM,07/17/2011 04:32:22 PM,07/17/2011 04:34:32 PM,07/17/2011 04:38:45 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 04:38:54 PM,100 Block of 6TH AVE,SF,94118,B07,31,7126,1,1,2,false,,1,PRIVATE,2,7,2,Inner Richmond,"(37.7858353536862, -122.464563713387)",111980240-KM04 +110010098,KM15,11000074,Structure Fire,01/01/2011,12/31/2010,01/01/2011 01:27:50 AM,01/01/2011 01:28:08 AM,01/01/2011 01:28:57 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,04/25/2016 02:06:49 PM,900 Block of MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,false,,2,PRIVATE,35,1,3,North Beach,"(37.7976045922032, -122.403668204308)",110010098-KM15 +160072835,KM04,16002944,Medical Incident,01/07/2016,01/07/2016,01/07/2016 05:36:18 PM,01/07/2016 05:37:24 PM,01/07/2016 05:37:54 PM,01/07/2016 05:38:19 PM,01/07/2016 05:51:04 PM,01/07/2016 06:05:41 PM,01/07/2016 06:13:40 PM,Code 2 Transport,01/07/2016 06:33:29 PM,1800 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.777323102471, -122.442510566382)",160072835-KM04 +121780400,E38,12059442,Medical Incident,06/26/2012,06/26/2012,06/26/2012 10:51:06 PM,06/26/2012 10:51:06 PM,06/26/2012 10:51:43 PM,06/26/2012 10:53:15 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 10:53:40 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",121780400-E38 +131930178,E29,13065648,Citizen Assist / Service Call,07/12/2013,07/12/2013,07/12/2013 01:52:21 PM,07/12/2013 01:55:49 PM,07/12/2013 01:59:53 PM,07/12/2013 02:00:35 PM,07/12/2013 02:04:08 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Fire,07/12/2013 02:12:12 PM,900 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",131930178-E29 +130510250,KM06,13017308,Medical Incident,02/20/2013,02/20/2013,02/20/2013 03:56:59 PM,02/20/2013 03:57:16 PM,02/20/2013 03:58:44 PM,02/20/2013 03:59:02 PM,02/20/2013 04:00:30 PM,02/20/2013 04:22:47 PM,02/20/2013 04:40:52 PM,Code 2 Transport,02/20/2013 05:10:26 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",130510250-KM06 +160463686,68,16018704,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:46:47 PM,02/15/2016 09:49:21 PM,02/15/2016 09:49:33 PM,02/15/2016 09:49:54 PM,02/15/2016 09:59:01 PM,02/15/2016 10:07:50 PM,02/15/2016 10:26:34 PM,Code 2 Transport,02/15/2016 10:49:39 PM,BUSH ST/KEARNY ST,San Francisco,94104,B01,13,1235,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",160463686-68 +121740070,68,12057673,Medical Incident,06/22/2012,06/22/2012,06/22/2012 08:42:21 AM,06/22/2012 08:44:19 AM,06/22/2012 08:44:27 AM,06/22/2012 08:44:36 AM,06/22/2012 08:48:16 AM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/22/2012 08:50:31 AM,11TH ST/MARKET ST,SF,94103,B02,36,3211,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",121740070-68 +121670272,79,12055477,Medical Incident,06/15/2012,06/15/2012,06/15/2012 05:57:14 PM,06/15/2012 05:59:11 PM,06/15/2012 06:00:56 PM,06/15/2012 06:03:07 PM,04/25/2016 01:58:11 PM,06/15/2012 06:36:22 PM,06/15/2012 06:46:46 PM,Code 2 Transport,06/15/2012 07:04:35 PM,200 Block of LELAND AVE,SF,94134,B10,44,6254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7130215958017, -122.408889222653)",121670272-79 +122490010,T09,12082208,Structure Fire,09/05/2012,09/04/2012,09/05/2012 12:27:53 AM,09/05/2012 12:28:42 AM,09/05/2012 12:29:09 AM,09/05/2012 12:36:04 AM,09/05/2012 12:41:29 AM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/05/2012 12:45:29 AM,1700 Block of BANCROFT AVE,SF,94124,B10,17,6537,3,3,3,false,Fire,1,TRUCK,5,10,10,Bayview Hunters Point,"(37.7268724745843, -122.394902680548)",122490010-T09 +133570005,E36,13121219,Medical Incident,12/23/2013,12/22/2013,12/23/2013 12:30:47 AM,12/23/2013 12:31:54 AM,12/23/2013 12:32:09 AM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 12:34:01 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7760099210785, -122.412889415461)",133570005-E36 +113520013,59,11116708,Medical Incident,12/18/2011,12/17/2011,12/18/2011 12:46:55 AM,12/18/2011 12:47:50 AM,12/18/2011 12:48:07 AM,12/18/2011 12:48:16 AM,12/18/2011 12:54:19 AM,12/18/2011 01:07:30 AM,12/18/2011 01:23:05 AM,Code 2 Transport,12/18/2011 01:54:30 AM,CLAY ST/DRUMM ST,SF,94111,B01,13,1116,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",113520013-59 +102850194,83,10090745,Medical Incident,10/12/2010,10/12/2010,10/12/2010 11:35:25 AM,10/12/2010 11:36:32 AM,10/12/2010 11:39:26 AM,10/12/2010 11:39:47 AM,10/12/2010 11:47:02 AM,10/12/2010 12:03:06 PM,04/25/2016 02:08:08 PM,Code 2 Transport,10/12/2010 12:23:27 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,1,1,2,true,,1,MEDIC,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",102850194-83 +160080987,KM08,16003149,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:12:40 AM,01/08/2016 09:14:44 AM,01/08/2016 09:15:09 AM,01/08/2016 09:15:41 AM,01/08/2016 09:35:52 AM,01/08/2016 09:50:38 AM,01/08/2016 10:18:29 AM,Code 2 Transport,01/08/2016 10:44:30 AM,3300 Block of GEARY BLVD,San Francisco,94118,B07,10,4453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7815739713841, -122.45542879534)",160080987-KM08 +112530164,RS1,11083442,Medical Incident,09/10/2011,09/10/2011,09/10/2011 10:57:30 AM,09/10/2011 10:59:20 AM,09/10/2011 10:59:49 AM,04/25/2016 02:02:44 PM,09/10/2011 11:04:10 AM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 11:05:08 AM,MISSION ST/9TH ST,SF,94103,B02,36,2336,3,3,3,false,,1,RESCUE SQUAD,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112530164-RS1 +160491088,84,16019676,Medical Incident,02/18/2016,02/18/2016,02/18/2016 10:06:15 AM,02/18/2016 10:07:40 AM,02/18/2016 10:07:56 AM,02/18/2016 10:09:29 AM,02/18/2016 10:17:26 AM,02/18/2016 10:32:43 AM,02/18/2016 10:54:38 AM,Code 2 Transport,02/18/2016 11:58:12 AM,0 Block of CONNECTICUT ST,San Francisco,94107,B03,29,2425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7657165510162, -122.397869370472)",160491088-84 +131170081,55,13039276,Medical Incident,04/27/2013,04/27/2013,04/27/2013 09:10:07 AM,04/27/2013 09:10:38 AM,04/27/2013 09:10:45 AM,04/27/2013 09:11:31 AM,04/25/2016 01:53:06 PM,04/27/2013 09:28:38 AM,04/27/2013 09:52:30 AM,Code 2 Transport,04/27/2013 10:34:27 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",131170081-55 +112470386,E01,11081624,Medical Incident,09/04/2011,09/04/2011,09/04/2011 11:36:12 PM,09/04/2011 11:37:04 PM,09/04/2011 11:37:35 PM,09/04/2011 11:38:12 PM,09/04/2011 11:40:06 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 11:44:17 PM,200 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",112470386-E01 +103110293,T16,10099838,Structure Fire,11/07/2010,11/07/2010,11/07/2010 06:26:43 PM,11/07/2010 06:28:40 PM,11/07/2010 06:29:07 PM,11/07/2010 06:30:15 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 06:35:48 PM,100 Block of LAUREL ST,SF,94118,B04,10,4423,3,3,3,false,,1,TRUCK,8,7,2,Presidio Heights,"(37.7899496375617, -122.450811842875)",103110293-T16 +112800291,T05,11092763,Alarms,10/07/2011,10/07/2011,10/07/2011 05:29:50 PM,10/07/2011 05:30:53 PM,10/07/2011 05:31:57 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,04/25/2016 02:02:17 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,TRUCK,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",112800291-T05 +140270041,81,14009085,Medical Incident,01/27/2014,01/26/2014,01/27/2014 06:27:58 AM,01/27/2014 06:30:11 AM,01/27/2014 06:30:37 AM,01/27/2014 06:31:02 AM,01/27/2014 06:42:15 AM,01/27/2014 07:07:13 AM,01/27/2014 07:30:10 AM,Code 2 Transport,01/27/2014 08:01:41 AM,2300 Block of 40TH AVE,SF,94116,B08,18,7621,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7429942454276, -122.498185928463)",140270041-81 +160722194,71,16028654,Medical Incident,03/12/2016,03/12/2016,03/12/2016 03:59:06 PM,03/12/2016 04:01:10 PM,03/12/2016 04:02:32 PM,03/12/2016 04:02:56 PM,03/12/2016 04:32:39 PM,03/12/2016 04:57:22 PM,03/12/2016 05:00:12 PM,Code 2 Transport,03/12/2016 05:48:46 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160722194-71 +122110142,T09,12070055,Other,07/29/2012,07/29/2012,07/29/2012 12:28:43 PM,07/29/2012 12:29:26 PM,07/29/2012 12:29:36 PM,07/29/2012 12:30:21 PM,07/29/2012 12:34:13 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Fire,07/29/2012 12:52:05 PM,100 Block of YALE ST,SF,94134,B09,42,635,3,3,3,false,Alarm,1,TRUCK,1,9,9,Excelsior,"(37.7273031621958, -122.417591901483)",122110142-T09 +160130458,KM07,16005065,Medical Incident,01/13/2016,01/12/2016,01/13/2016 06:06:47 AM,01/13/2016 06:08:26 AM,01/13/2016 06:11:30 AM,01/13/2016 06:12:10 AM,01/13/2016 06:24:11 AM,01/13/2016 06:24:23 AM,01/13/2016 06:42:01 AM,Code 2 Transport,01/13/2016 06:52:29 AM,1300 Block of 9TH AVE,San Francisco,94122,B08,22,7334,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,5,Inner Sunset,"(37.7631090580661, -122.466176505201)",160130458-KM07 +160221544,AM10,16008757,Medical Incident,01/22/2016,01/22/2016,01/22/2016 12:04:04 PM,01/22/2016 12:06:04 PM,01/22/2016 12:06:18 PM,01/22/2016 12:06:57 PM,01/22/2016 12:13:37 PM,01/22/2016 12:31:30 PM,01/22/2016 12:55:28 PM,Code 2 Transport,01/22/2016 01:26:07 PM,600 Block of MONTEREY BL,San Francisco,94112,B09,15,8235,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7314401007597, -122.450004426316)",160221544-AM10 +122590218,60,12085651,Medical Incident,09/15/2012,09/15/2012,09/15/2012 04:15:36 PM,09/15/2012 04:15:36 PM,09/15/2012 04:15:53 PM,09/15/2012 04:16:13 PM,09/15/2012 04:31:05 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,No Merit,09/15/2012 04:36:35 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",122590218-60 +122480272,AM20,12082078,Medical Incident,09/04/2012,09/04/2012,09/04/2012 05:02:21 PM,09/04/2012 05:08:05 PM,09/04/2012 05:08:28 PM,09/04/2012 05:09:12 PM,09/04/2012 05:16:46 PM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/04/2012 05:18:34 PM,600 Block of ELLSWORTH ST,SF,94110,B06,32,5743,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7353755947006, -122.414812838878)",122480272-AM20 +160210197,76,16008225,Medical Incident,01/21/2016,01/20/2016,01/21/2016 01:38:49 AM,01/21/2016 01:38:49 AM,01/21/2016 01:40:00 AM,01/21/2016 01:40:07 AM,01/21/2016 01:50:31 AM,01/21/2016 02:05:40 AM,01/21/2016 02:11:43 AM,Code 2 Transport,01/21/2016 02:29:47 AM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830416107165, -122.415856533326)",160210197-76 +122430121,T02,12080306,Structure Fire,08/30/2012,08/30/2012,08/30/2012 10:38:06 AM,08/30/2012 10:38:27 AM,08/30/2012 10:38:55 AM,08/30/2012 10:39:47 AM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,04/25/2016 01:57:00 PM,200 Block of THE EMBARCADERO,SF,94111,B01,13,901,3,3,3,false,Fire,1,TRUCK,8,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",122430121-T02 +132220271,67,13075037,Medical Incident,08/10/2013,08/10/2013,08/10/2013 04:54:31 PM,08/10/2013 04:57:02 PM,08/10/2013 04:57:22 PM,08/10/2013 04:57:32 PM,08/10/2013 05:01:00 PM,08/10/2013 05:08:45 PM,08/10/2013 05:12:08 PM,Code 2 Transport,08/10/2013 05:27:24 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",132220271-67 +122970273,E01,12098563,Alarms,10/23/2012,10/23/2012,10/23/2012 06:29:20 PM,10/23/2012 06:30:15 PM,10/23/2012 06:30:22 PM,10/23/2012 06:32:31 PM,10/23/2012 06:34:32 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 06:38:42 PM,1000 Block of MARKET ST,SF,94103,B03,1,1454,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",122970273-E01 +111050317,T13,11034885,Medical Incident,04/15/2011,04/15/2011,04/15/2011 08:39:05 PM,04/15/2011 08:40:06 PM,04/15/2011 08:40:20 PM,04/15/2011 08:41:53 PM,04/15/2011 08:43:39 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 08:48:47 PM,BATTERY ST/SACRAMENTO ST,SF,94104,B01,13,1141,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7941342341045, -122.400148778875)",111050317-T13 +112850083,E08,11094303,Medical Incident,10/12/2011,10/12/2011,10/12/2011 08:29:26 AM,10/12/2011 08:29:31 AM,10/12/2011 08:29:53 AM,10/12/2011 08:31:31 AM,10/12/2011 08:35:21 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 08:46:27 AM,HARRISON ST/HARRIET ST,SF,94103,B03,8,2254,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7768462331312, -122.404610031616)",112850083-E08 +103000076,E07,10095694,Traffic Collision,10/27/2010,10/27/2010,10/27/2010 08:24:59 AM,10/27/2010 08:26:27 AM,10/27/2010 08:30:00 AM,10/27/2010 08:30:46 AM,10/27/2010 08:34:29 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 08:41:08 AM,15TH ST/DE HARO ST,SF,94107,B02,29,2353,2,2,2,true,,1,ENGINE,1,2,10,Mission Bay,"(37.7674307778584, -122.401842505041)",103000076-E07 +160431402,63,16017258,Medical Incident,02/12/2016,02/12/2016,02/12/2016 11:29:20 AM,02/12/2016 11:29:34 AM,02/12/2016 11:29:46 AM,02/12/2016 11:29:57 AM,02/12/2016 11:43:05 AM,02/12/2016 11:54:14 AM,02/12/2016 12:21:33 PM,Code 2 Transport,02/12/2016 01:02:50 PM,1500 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8271,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7275315597461, -122.43567234398)",160431402-63 +160833541,60,16033105,Medical Incident,03/23/2016,03/23/2016,03/23/2016 07:24:21 PM,03/23/2016 07:25:31 PM,03/23/2016 07:25:43 PM,03/23/2016 07:26:10 PM,03/23/2016 07:34:25 PM,03/23/2016 08:00:09 PM,03/23/2016 08:25:00 PM,Code 2 Transport,03/23/2016 09:11:31 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160833541-60 +133540040,E36,13120146,Structure Fire,12/20/2013,12/19/2013,12/20/2013 03:56:23 AM,12/20/2013 03:58:15 AM,12/20/2013 04:02:07 AM,12/20/2013 04:02:58 AM,12/20/2013 04:05:07 AM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/20/2013 05:46:48 AM,300 Block of DIVISADERO ST,SF,94117,B05,21,4144,3,3,3,true,Fire,1,ENGINE,6,5,5,Haight Ashbury,"(37.7726538451108, -122.437444929872)",133540040-E36 +102540353,94,10080436,Medical Incident,09/11/2010,09/11/2010,09/11/2010 08:37:08 PM,09/11/2010 08:38:53 PM,09/11/2010 08:39:40 PM,09/11/2010 08:41:14 PM,09/11/2010 08:51:14 PM,09/11/2010 09:02:21 PM,09/11/2010 09:39:07 PM,Code 2 Transport,09/11/2010 09:58:48 PM,TABER PL/3RD ST,SF,94107,B03,8,2173,1,1,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7810621398035, -122.395517753822)",102540353-94 +120790207,78,12026250,Medical Incident,03/19/2012,03/19/2012,03/19/2012 01:35:50 PM,03/19/2012 01:37:14 PM,03/19/2012 01:37:23 PM,03/19/2012 01:37:41 PM,03/19/2012 01:44:38 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 01:52:32 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120790207-78 +133030263,T01,13102994,Structure Fire,10/30/2013,10/30/2013,10/30/2013 04:37:14 PM,10/30/2013 04:37:15 PM,10/30/2013 04:38:16 PM,10/30/2013 04:39:33 PM,10/30/2013 04:41:22 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 04:42:16 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",133030263-T01 +133410021,78,13115479,Medical Incident,12/07/2013,12/06/2013,12/07/2013 12:53:32 AM,12/07/2013 12:54:55 AM,12/07/2013 12:56:24 AM,12/07/2013 12:56:43 AM,12/07/2013 01:21:02 AM,12/07/2013 01:36:00 AM,12/07/2013 01:48:04 AM,Code 2 Transport,12/07/2013 02:12:14 AM,2100 Block of JENNINGS ST,SF,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",133410021-78 +112270172,KM01,11075009,Medical Incident,08/15/2011,08/15/2011,08/15/2011 11:39:16 AM,08/15/2011 11:39:39 AM,08/15/2011 11:40:11 AM,08/15/2011 11:41:04 AM,08/15/2011 11:52:40 AM,08/15/2011 12:14:06 PM,08/15/2011 12:20:24 PM,Code 3 Transport,08/15/2011 01:01:08 PM,2000 Block of THOMAS AVE,SF,94124,B10,42,6454,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7344696105327, -122.398897723272)",112270172-KM01 +111990008,83,11065501,Traffic Collision,07/18/2011,07/17/2011,07/18/2011 12:47:40 AM,07/18/2011 12:47:40 AM,07/18/2011 12:47:51 AM,07/18/2011 01:00:46 AM,07/18/2011 01:09:00 AM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Against Medical Advice,07/18/2011 01:51:20 AM,PAGE ST/OCTAVIA ST,SF,94102,B02,36,3313,3,3,3,true,,1,MEDIC,3,2,5,Hayes Valley,"(37.7738892381955, -122.42394706123)",111990008-83 +132640109,T03,13089451,Medical Incident,09/21/2013,09/21/2013,09/21/2013 08:01:52 AM,09/21/2013 08:03:34 AM,09/21/2013 08:03:51 AM,09/21/2013 08:06:04 AM,09/21/2013 08:08:39 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Other,09/21/2013 08:11:15 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7825297445725, -122.412384547628)",132640109-T03 +103600098,KM05,10115470,Medical Incident,12/26/2010,12/26/2010,12/26/2010 11:31:16 AM,12/26/2010 11:31:49 AM,12/26/2010 11:32:20 AM,12/26/2010 11:33:04 AM,12/26/2010 11:38:39 AM,12/26/2010 11:56:27 AM,12/26/2010 12:06:27 PM,Code 2 Transport,12/26/2010 12:27:05 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",103600098-KM05 +160180285,78,16007098,Medical Incident,01/18/2016,01/17/2016,01/18/2016 03:15:17 AM,01/18/2016 03:16:36 AM,01/18/2016 03:18:05 AM,01/18/2016 03:18:51 AM,01/18/2016 03:26:17 AM,01/18/2016 03:42:01 AM,01/18/2016 04:17:21 AM,Code 2 Transport,01/18/2016 04:52:55 AM,700 Block of LAKEVIEW AV,San Francisco,94112,B09,33,8462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7181751963466, -122.4596980221)",160180285-78 +160460476,62,16018398,Medical Incident,02/15/2016,02/14/2016,02/15/2016 04:47:33 AM,02/15/2016 04:49:09 AM,02/15/2016 04:50:16 AM,02/15/2016 04:50:23 AM,02/15/2016 04:58:45 AM,02/15/2016 05:19:26 AM,02/15/2016 05:57:45 AM,Code 2 Transport,02/15/2016 06:02:10 AM,BACON ST/HAMILTON ST,San Francisco,94134,B10,42,6335,3,A,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7260836951517, -122.409526867427)",160460476-62 +131390034,AR1,13046875,Structure Fire,05/19/2013,05/18/2013,05/19/2013 01:36:35 AM,05/19/2013 01:37:16 AM,05/19/2013 01:46:49 AM,05/19/2013 01:51:01 AM,05/19/2013 01:58:51 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 04:41:44 AM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Fire,2,INVESTIGATION,20,2,8,Mission,"(37.7641044099588, -122.42187797405)",131390034-AR1 +140450192,E48,14015321,Medical Incident,02/14/2014,02/14/2014,02/14/2014 01:32:25 PM,02/14/2014 01:36:05 PM,02/14/2014 01:38:33 PM,02/14/2014 01:39:55 PM,02/14/2014 01:42:35 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Patient Declined Transport,02/14/2014 02:03:13 PM,1400 Block of GATEVIEW AVE,TI,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,ENGINE,2,None,6,Treasure Island,"(37.8287013117818, -122.372417311741)",140450192-E48 +103000391,B03,10095949,Odor (Strange / Unknown),10/27/2010,10/27/2010,10/27/2010 11:06:15 PM,10/27/2010 11:09:22 PM,10/27/2010 11:10:34 PM,10/27/2010 11:12:30 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Other,10/27/2010 11:16:45 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,CHIEF,4,3,6,South of Market,"(37.7801303744947, -122.409871449933)",103000391-B03 +102830375,71,10090224,Medical Incident,10/10/2010,10/10/2010,10/10/2010 09:23:21 PM,10/10/2010 09:24:09 PM,10/10/2010 09:24:29 PM,10/10/2010 09:24:43 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 09:30:49 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",102830375-71 +160901559,53,16035694,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:32:16 AM,03/30/2016 11:32:16 AM,03/30/2016 11:33:19 AM,03/30/2016 11:33:30 AM,03/30/2016 11:36:55 AM,03/30/2016 11:57:39 AM,03/30/2016 12:16:24 PM,Code 2 Transport,03/30/2016 01:28:21 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160901559-53 +121210111,AM16,12040124,Medical Incident,04/30/2012,04/30/2012,04/30/2012 09:56:22 AM,04/30/2012 09:57:00 AM,04/30/2012 09:57:22 AM,04/30/2012 09:58:16 AM,04/30/2012 10:01:07 AM,04/30/2012 10:09:43 AM,04/30/2012 10:27:31 AM,Code 2 Transport,04/30/2012 11:18:55 AM,100 Block of DOLORES ST,SF,94114,B02,6,5127,3,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.767452628597, -122.42680873617)",121210111-AM16 +160041939,50,16001617,Medical Incident,01/04/2016,01/04/2016,01/04/2016 01:50:01 PM,01/04/2016 01:50:01 PM,01/04/2016 01:50:56 PM,01/04/2016 01:51:06 PM,01/04/2016 01:54:55 PM,01/04/2016 02:06:07 PM,01/04/2016 02:18:58 PM,Code 2 Transport,01/04/2016 02:51:38 PM,SLOAT BL/WEST PORTAL AV,San Francisco,94132,B08,39,8555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7347068117722, -122.471569339996)",160041939-50 +160180249,AM18,16007093,Medical Incident,01/18/2016,01/17/2016,01/18/2016 02:45:01 AM,01/18/2016 02:45:01 AM,01/18/2016 02:45:12 AM,01/18/2016 02:45:55 AM,01/18/2016 02:50:36 AM,01/18/2016 02:59:09 AM,01/18/2016 03:09:49 AM,Code 2 Transport,01/18/2016 03:26:47 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160180249-AM18 +160372854,79,16014808,Medical Incident,02/06/2016,02/06/2016,02/06/2016 05:10:44 PM,02/06/2016 05:11:15 PM,02/06/2016 05:12:06 PM,02/06/2016 05:12:18 PM,02/06/2016 05:13:43 PM,02/06/2016 05:26:45 PM,02/06/2016 05:57:27 PM,Code 2 Transport,02/06/2016 06:36:37 PM,3RD ST/LA SALLE AV,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371695334489, -122.389864463351)",160372854-79 +121450007,81,12047986,Medical Incident,05/24/2012,05/23/2012,05/24/2012 12:55:27 AM,05/24/2012 12:57:45 AM,05/24/2012 12:59:10 AM,05/24/2012 12:59:34 AM,05/24/2012 01:08:33 AM,05/24/2012 01:23:35 AM,05/24/2012 01:30:00 AM,Code 2 Transport,05/24/2012 02:00:35 AM,18TH ST/VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7617009099893, -122.421578400735)",121450007-81 +111170165,E23,11038610,Water Rescue,04/27/2011,04/27/2011,04/27/2011 01:06:34 PM,04/27/2011 01:06:53 PM,04/27/2011 01:07:18 PM,04/27/2011 01:08:26 PM,04/27/2011 01:12:52 PM,04/27/2011 01:45:25 PM,04/27/2011 01:45:32 PM,Other,04/27/2011 02:40:12 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",111170165-E23 +160852090,KM01,16033809,Medical Incident,03/25/2016,03/25/2016,03/25/2016 02:10:47 PM,03/25/2016 02:11:40 PM,03/25/2016 02:12:32 PM,03/25/2016 02:13:45 PM,03/25/2016 02:21:39 PM,03/25/2016 02:49:28 PM,03/25/2016 03:11:40 PM,Code 2 Transport,03/25/2016 04:07:39 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160852090-KM01 +103020074,T03,10096405,Other,10/29/2010,10/29/2010,10/29/2010 08:25:31 AM,10/29/2010 08:25:31 AM,10/29/2010 08:25:45 AM,10/29/2010 08:27:59 AM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Unable to Locate,10/29/2010 08:31:19 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",103020074-T03 +102930288,E05,10093529,Medical Incident,10/20/2010,10/20/2010,10/20/2010 05:41:31 PM,10/20/2010 05:43:06 PM,10/20/2010 05:43:35 PM,10/20/2010 05:45:02 PM,10/20/2010 05:45:50 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/20/2010 05:57:10 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,2,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",102930288-E05 +123520264,59,12117805,Medical Incident,12/17/2012,12/17/2012,12/17/2012 03:17:39 PM,12/17/2012 03:17:39 PM,12/17/2012 03:17:39 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Patient Declined Transport,12/17/2012 03:18:56 PM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",123520264-59 +160251530,75,16009903,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:41:36 AM,01/25/2016 11:43:29 AM,01/25/2016 11:43:39 AM,01/25/2016 11:43:44 AM,01/25/2016 11:47:53 AM,01/25/2016 12:10:25 PM,01/25/2016 12:41:48 PM,Code 2 Transport,01/25/2016 12:56:37 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160251530-75 +160541194,KM06,16021526,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:26:54 AM,02/23/2016 10:28:04 AM,02/23/2016 10:28:30 AM,02/23/2016 10:29:21 AM,02/23/2016 10:43:53 AM,02/23/2016 11:47:38 AM,02/23/2016 11:47:41 AM,Code 2 Transport,02/23/2016 11:51:05 AM,3600 Block of WEBSTER ST,San Francisco,94123,B04,16,3455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8042987269017, -122.43519491895)",160541194-KM06 +123420142,76,12114101,Medical Incident,12/07/2012,12/07/2012,12/07/2012 11:04:24 AM,12/07/2012 11:06:34 AM,12/07/2012 11:07:15 AM,12/07/2012 11:07:44 AM,12/07/2012 11:13:07 AM,12/07/2012 11:26:41 AM,12/07/2012 11:43:02 AM,Fire,12/07/2012 12:28:59 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",123420142-76 +140350214,B03,14011838,Structure Fire,02/04/2014,02/04/2014,02/04/2014 01:10:27 PM,02/04/2014 01:12:04 PM,02/04/2014 01:12:36 PM,02/04/2014 01:14:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Other,02/04/2014 01:19:09 PM,800 Block of RHODE ISLAND ST,SF,94107,B10,37,2522,,3,3,false,Alarm,1,CHIEF,6,10,10,Potrero Hill,"(37.7590349138891, -122.40208714693)",140350214-B03 +121770092,B07,12058818,Alarms,06/25/2012,06/25/2012,06/25/2012 08:41:49 AM,06/25/2012 08:42:54 AM,06/25/2012 08:43:00 AM,06/25/2012 08:44:10 AM,06/25/2012 08:47:43 AM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/25/2012 08:49:03 AM,100 Block of BEAUMONT AVE,SF,94118,B07,21,4557,3,3,3,false,Alarm,1,CHIEF,2,5,1,Lone Mountain/USF,"(37.7783340472822, -122.454387737988)",121770092-B07 +160690170,70,16027304,Medical Incident,03/09/2016,03/08/2016,03/09/2016 01:32:33 AM,03/09/2016 01:34:06 AM,03/09/2016 01:34:24 AM,03/09/2016 01:35:15 AM,03/09/2016 01:46:52 AM,03/09/2016 02:07:55 AM,03/09/2016 02:19:28 AM,Code 2 Transport,03/09/2016 03:07:17 AM,2600 Block of 17TH AVE,San Francisco,94116,B08,40,7411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7384875345339, -122.473157752879)",160690170-70 +122480035,E01,12081867,Structure Fire,09/04/2012,09/03/2012,09/04/2012 02:23:12 AM,09/04/2012 02:26:33 AM,09/04/2012 02:26:45 AM,09/04/2012 02:27:56 AM,09/04/2012 02:29:30 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/04/2012 02:43:08 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Fire,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122480035-E01 +111570049,67,11051806,Medical Incident,06/06/2011,06/05/2011,06/06/2011 04:38:28 AM,06/06/2011 04:38:51 AM,06/06/2011 04:39:48 AM,06/06/2011 04:41:47 AM,06/06/2011 04:41:56 AM,06/06/2011 04:48:55 AM,04/25/2016 02:04:17 PM,Code 2 Transport,06/06/2011 05:07:32 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",111570049-67 +113410399,T07,11113231,Structure Fire,12/07/2011,12/07/2011,12/07/2011 09:57:09 PM,12/07/2011 09:57:38 PM,12/07/2011 09:58:01 PM,12/07/2011 09:59:25 PM,12/07/2011 10:01:26 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/07/2011 11:31:04 PM,3100 Block of 21ST ST,SF,94110,B06,7,5455,3,3,3,false,,1,TRUCK,5,6,9,Mission,"(37.7570133986695, -122.418351237622)",113410399-T07 +131880085,82,13064027,Medical Incident,07/07/2013,07/07/2013,07/07/2013 08:30:12 AM,07/07/2013 08:31:31 AM,07/07/2013 08:33:07 AM,07/07/2013 08:33:44 AM,07/07/2013 08:42:41 AM,07/07/2013 09:01:53 AM,07/07/2013 09:14:32 AM,Code 2 Transport,07/07/2013 09:35:07 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",131880085-82 +102370231,E09,10074754,Structure Fire,08/25/2010,08/25/2010,08/25/2010 02:17:00 PM,08/25/2010 02:17:00 PM,08/25/2010 02:17:14 PM,08/25/2010 02:17:25 PM,08/25/2010 02:19:10 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 02:19:38 PM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",102370231-E09 +130710310,T18,13023801,Structure Fire,03/12/2013,03/12/2013,03/12/2013 07:11:51 PM,03/12/2013 07:11:52 PM,03/12/2013 07:11:59 PM,03/12/2013 07:12:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 07:17:28 PM,GREAT HY/TARAVAL ST,SF,94116,B08,23,7731,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7416730182637, -122.506865451052)",130710310-T18 +122240114,T16,12074224,Medical Incident,08/11/2012,08/11/2012,08/11/2012 09:26:08 AM,08/11/2012 09:28:06 AM,08/11/2012 09:28:24 AM,08/11/2012 09:29:10 AM,08/11/2012 09:32:39 AM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 09:40:49 AM,1900 Block of GREENWICH ST,SF,94123,B04,16,3444,2,2,2,false,Potentially Life-Threatening,1,TRUCK,2,4,2,Marina,"(37.7994201230243, -122.431746985684)",122240114-T16 +122930012,E05,12096991,Medical Incident,10/19/2012,10/18/2012,10/19/2012 12:47:57 AM,10/19/2012 12:51:07 AM,10/19/2012 12:51:50 AM,10/19/2012 12:53:26 AM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 12:56:02 AM,LARKIN ST/ELLIS ST,SF,94109,B02,3,3115,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",122930012-E05 +160432758,58,16017394,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:25:55 PM,02/12/2016 05:26:55 PM,02/12/2016 05:27:23 PM,02/12/2016 05:27:46 PM,02/12/2016 05:38:24 PM,02/12/2016 05:41:56 PM,02/12/2016 05:44:34 PM,Code 2 Transport,02/12/2016 06:20:35 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160432758-58 +160351346,64,16013782,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:55:51 AM,02/04/2016 10:58:06 AM,02/04/2016 10:58:31 AM,02/04/2016 11:01:13 AM,02/04/2016 11:16:42 AM,02/04/2016 11:44:22 AM,02/04/2016 11:53:09 AM,Code 3 Transport,02/04/2016 01:07:36 PM,2200 Block of MARKET ST,San Francisco,94114,B05,6,5231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",160351346-64 +160123682,72,16004975,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:08:09 PM,01/12/2016 10:10:00 PM,01/12/2016 10:10:17 PM,01/12/2016 10:12:18 PM,01/12/2016 10:18:42 PM,01/12/2016 10:33:36 PM,01/12/2016 10:47:43 PM,Code 2 Transport,01/12/2016 11:38:41 PM,300 Block of LELAND AV,San Francisco,94134,B09,44,6257,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7133783929319, -122.410639630746)",160123682-72 +131020286,E44,13034367,Medical Incident,04/12/2013,04/12/2013,04/12/2013 07:09:16 PM,04/12/2013 07:09:29 PM,04/12/2013 07:09:52 PM,04/12/2013 07:11:11 PM,04/12/2013 07:30:39 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/12/2013 07:34:57 PM,GILMAN AV/EARL ST,SF,94124,B10,17,6616,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7160909689518, -122.384402012195)",131020286-E44 +121850387,E03,12061800,Traffic Collision,07/03/2012,07/03/2012,07/03/2012 11:29:25 PM,07/03/2012 11:29:44 PM,07/03/2012 11:30:23 PM,07/03/2012 11:31:31 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Other,07/03/2012 11:33:15 PM,VAN NESS AV/MCALLISTER ST,SF,94102,B02,36,3164,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",121850387-E03 +121150049,93,12038042,Medical Incident,04/24/2012,04/23/2012,04/24/2012 07:41:32 AM,04/24/2012 07:43:34 AM,04/24/2012 07:43:45 AM,04/24/2012 07:44:02 AM,04/24/2012 07:52:52 AM,04/24/2012 08:22:56 AM,04/24/2012 08:38:01 AM,Code 2 Transport,04/24/2012 09:26:37 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121150049-93 +113220160,KM04,11106930,Medical Incident,11/18/2011,11/18/2011,11/18/2011 11:52:39 AM,11/18/2011 11:53:27 AM,11/18/2011 11:54:02 AM,11/18/2011 11:55:21 AM,11/18/2011 12:05:21 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Against Medical Advice,11/18/2011 12:09:26 PM,1300 Block of OAKDALE AVE,SF,94124,B10,17,653,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.732342352455, -122.386280381355)",113220160-KM04 +111210181,B01,11039941,Alarms,05/01/2011,05/01/2011,05/01/2011 12:26:21 PM,05/01/2011 12:27:15 PM,05/01/2011 12:27:30 PM,05/01/2011 12:28:27 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 12:33:30 PM,1100 Block of GREENWICH ST,SF,94109,B01,41,1612,3,3,3,false,,1,CHIEF,2,1,2,Russian Hill,"(37.8011579204345, -122.418225398663)",111210181-B01 +113020345,RC1,11100335,Medical Incident,10/29/2011,10/29/2011,10/29/2011 08:48:57 PM,10/29/2011 08:49:22 PM,10/29/2011 08:49:56 PM,04/25/2016 02:01:55 PM,10/29/2011 08:55:31 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/29/2011 08:55:53 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",113020345-RC1 +160423746,89,16017057,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:01:29 PM,02/11/2016 10:02:35 PM,02/11/2016 10:03:16 PM,02/11/2016 10:03:33 PM,02/11/2016 10:11:18 PM,02/11/2016 10:30:03 PM,02/11/2016 10:38:37 PM,Code 2 Transport,02/11/2016 11:16:32 PM,1200 Block of 16TH AVE,San Francisco,94122,B08,22,7367,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",160423746-89 +132560085,E28,13086461,Medical Incident,09/13/2013,09/13/2013,09/13/2013 08:12:16 AM,09/13/2013 08:12:27 AM,09/13/2013 08:13:00 AM,09/13/2013 08:14:21 AM,09/13/2013 08:16:20 AM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/13/2013 08:19:39 AM,FILBERT ST/LEAVENWORTH ST,SF,94133,B01,28,1532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8003407918188, -122.417586973965)",132560085-E28 +112850135,KM05,11094336,Medical Incident,10/12/2011,10/12/2011,10/12/2011 10:31:15 AM,10/12/2011 10:31:51 AM,10/12/2011 10:33:04 AM,10/12/2011 10:33:48 AM,10/12/2011 10:37:59 AM,10/12/2011 10:54:06 AM,10/12/2011 11:23:28 AM,Code 2 Transport,10/12/2011 11:51:49 AM,3200 Block of DIVISADERO ST,SF,94123,B04,16,4211,3,3,3,false,,1,PRIVATE,3,4,2,Marina,"(37.7994802939346, -122.442815337235)",112850135-KM05 +140370086,77,14012426,Medical Incident,02/06/2014,02/06/2014,02/06/2014 08:10:26 AM,02/06/2014 08:10:55 AM,02/06/2014 08:13:37 AM,02/06/2014 08:15:55 AM,02/06/2014 08:50:55 AM,02/06/2014 09:02:21 AM,02/06/2014 09:54:01 AM,Code 2 Transport,02/06/2014 09:57:52 AM,0 Block of 4TH ST,SF,94103,B03,1,2213,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7846551607137, -122.404580497913)",140370086-77 +133530148,AM02,13119887,Traffic Collision,12/19/2013,12/19/2013,12/19/2013 11:30:20 AM,12/19/2013 11:30:38 AM,12/19/2013 11:41:54 AM,04/25/2016 01:49:11 PM,12/19/2013 11:52:49 AM,12/19/2013 12:11:23 PM,12/19/2013 12:37:34 PM,Code 2 Transport,12/19/2013 01:25:43 PM,STOCKTON ST/JACKSON ST,SF,94133,B01,2,1332,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,6,1,3,Chinatown,"(37.7958237062045, -122.408253204894)",133530148-AM02 +133270420,KM07,13111278,Medical Incident,11/23/2013,11/23/2013,11/23/2013 10:02:16 PM,11/23/2013 10:05:49 PM,11/23/2013 10:23:52 PM,11/23/2013 10:24:21 PM,11/23/2013 10:28:34 PM,11/23/2013 10:36:54 PM,11/23/2013 11:00:45 PM,Code 2 Transport,11/23/2013 11:35:56 PM,600 Block of SUTTER ST,SF,94108,B01,3,1412,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",133270420-KM07 +121640239,77,12054442,Medical Incident,06/12/2012,06/12/2012,06/12/2012 03:44:46 PM,06/12/2012 03:45:34 PM,06/12/2012 03:45:47 PM,06/12/2012 03:46:10 PM,06/12/2012 03:50:59 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Patient Declined Transport,06/12/2012 04:28:43 PM,0 Block of GOLD ST,SF,94133,B01,13,1232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7967932420058, -122.40301629649)",121640239-77 +113030091,E16,11100480,Medical Incident,10/30/2011,10/29/2011,10/30/2011 02:36:27 AM,10/30/2011 02:38:40 AM,10/30/2011 02:40:38 AM,10/30/2011 02:41:59 AM,10/30/2011 02:43:23 AM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 03:04:40 AM,2300 Block of CHESTNUT ST,SF,94123,B04,16,4211,1,1,2,true,,1,ENGINE,1,4,2,Marina,"(37.8001383201841, -122.44202268807)",113030091-E16 +113570242,B09,11118633,Alarms,12/23/2011,12/23/2011,12/23/2011 12:09:44 PM,12/23/2011 12:10:40 PM,12/23/2011 12:10:53 PM,12/23/2011 12:12:25 PM,12/23/2011 12:18:23 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Fire,12/23/2011 12:31:49 PM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,false,,1,CHIEF,2,9,10,Visitacion Valley,"(37.7101556026027, -122.41260428896)",113570242-B09 +122220352,AM22,12073734,Medical Incident,08/09/2012,08/09/2012,08/09/2012 09:04:31 PM,08/09/2012 09:06:27 PM,08/09/2012 09:07:27 PM,08/09/2012 09:08:21 PM,08/09/2012 09:17:56 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Gone on Arrival,08/09/2012 09:27:20 PM,500 Block of BAY ST,SF,94133,B01,28,1425,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",122220352-AM22 +123410262,E31,12113841,Alarms,12/06/2012,12/06/2012,12/06/2012 03:12:07 PM,12/06/2012 03:13:27 PM,12/06/2012 03:14:08 PM,12/06/2012 03:15:55 PM,12/06/2012 03:18:40 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/06/2012 03:38:46 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,3,3,3,true,Alarm,1,ENGINE,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",123410262-E31 +160550217,85,16021856,Medical Incident,02/24/2016,02/23/2016,02/24/2016 02:30:47 AM,02/24/2016 02:30:47 AM,02/24/2016 02:30:59 AM,02/24/2016 02:31:14 AM,02/24/2016 02:35:09 AM,02/24/2016 03:10:20 AM,02/24/2016 03:10:23 AM,Code 2 Transport,02/24/2016 03:45:21 AM,2600 Block of VALLEJO ST,San Francisco,94123,B04,16,4164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7945996422766, -122.440467628404)",160550217-85 +120290148,E19,12009717,Medical Incident,01/29/2012,01/29/2012,01/29/2012 01:08:29 PM,01/29/2012 01:08:55 PM,01/29/2012 01:09:16 PM,01/29/2012 01:10:06 PM,01/29/2012 01:14:54 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 02:00:35 PM,1500 Block of SLOAT BLVD,SF,94132,B08,19,7552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7342213212186, -122.489706214168)",120290148-E19 +130410022,E01,13013883,Medical Incident,02/10/2013,02/09/2013,02/10/2013 01:21:16 AM,02/10/2013 01:22:38 AM,02/10/2013 01:23:09 AM,02/10/2013 01:23:39 AM,02/10/2013 01:25:58 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 01:26:09 AM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7856114039588, -122.414829445627)",130410022-E01 +113340143,RC2,11110575,Medical Incident,11/30/2011,11/30/2011,11/30/2011 12:20:08 PM,11/30/2011 12:21:38 PM,11/30/2011 12:21:52 PM,04/25/2016 02:01:24 PM,11/30/2011 12:27:27 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/30/2011 12:42:16 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,true,,1,RESCUE CAPTAIN,4,8,5,Inner Sunset,"(37.7631968207196, -122.464176094005)",113340143-RC2 +130810385,67,13027297,Medical Incident,03/22/2013,03/22/2013,03/22/2013 11:34:09 PM,03/22/2013 11:34:31 PM,03/22/2013 11:35:08 PM,03/22/2013 11:35:53 PM,04/25/2016 01:53:41 PM,03/22/2013 11:55:22 PM,03/23/2013 12:03:30 AM,Code 2 Transport,03/23/2013 12:42:57 AM,400 Block of 7TH ST,SF,94103,B03,8,231,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",130810385-67 +160551555,52,16021981,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:50:41 AM,02/24/2016 11:51:20 AM,02/24/2016 11:51:43 AM,02/24/2016 11:52:08 AM,02/24/2016 11:57:06 AM,02/24/2016 12:12:33 PM,02/24/2016 12:25:03 PM,Code 2 Transport,02/24/2016 01:21:19 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",160551555-52 +160642015,66,16025530,Traffic Collision,03/04/2016,03/04/2016,03/04/2016 01:37:42 PM,03/04/2016 01:37:42 PM,03/04/2016 01:41:04 PM,03/04/2016 01:41:28 PM,03/04/2016 01:43:05 PM,03/04/2016 02:11:21 PM,03/04/2016 02:33:30 PM,Code 2 Transport,03/04/2016 03:14:37 PM,LOMBARD ST/PIERCE ST,San Francisco,94123,B04,16,3566,2,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7994253119327, -122.439336652409)",160642015-66 +120390162,E13,12012972,Medical Incident,02/08/2012,02/08/2012,02/08/2012 12:24:56 PM,02/08/2012 12:25:45 PM,02/08/2012 12:26:42 PM,04/25/2016 02:00:14 PM,02/08/2012 12:31:28 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Other,02/08/2012 12:29:53 PM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",120390162-E13 +123450369,E03,12115481,Medical Incident,12/10/2012,12/10/2012,12/10/2012 07:19:26 PM,12/10/2012 07:20:55 PM,12/10/2012 07:21:00 PM,12/10/2012 07:22:32 PM,12/10/2012 07:22:56 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 07:29:57 PM,POLK ST/HEMLOCK ST,SF,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",123450369-E03 +160551767,55,16022004,Medical Incident,02/24/2016,02/24/2016,02/24/2016 12:47:05 PM,02/24/2016 12:48:40 PM,02/24/2016 12:49:10 PM,02/24/2016 12:51:01 PM,02/24/2016 12:57:51 PM,02/24/2016 01:09:12 PM,02/24/2016 01:09:13 PM,Code 2 Transport,02/24/2016 01:51:23 PM,CLAY ST/KEARNY ST,San Francisco,94111,B01,13,1233,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7944530044512, -122.404796473576)",160551767-55 +113140042,E31,11104220,Alarms,11/10/2011,11/09/2011,11/10/2011 06:14:31 AM,11/10/2011 06:16:14 AM,11/10/2011 06:16:25 AM,11/10/2011 06:18:32 AM,11/10/2011 06:19:46 AM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 06:28:16 AM,4700 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7806274376634, -122.470163577078)",113140042-E31 +122030116,E33,12067413,Medical Incident,07/21/2012,07/21/2012,07/21/2012 09:48:23 AM,07/21/2012 09:49:42 AM,07/21/2012 09:49:54 AM,07/21/2012 09:50:36 AM,07/21/2012 09:54:33 AM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 10:58:29 AM,0 Block of LOBOS ST,SF,94112,B09,33,8372,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.714970324741, -122.454264273625)",122030116-E33 +123370140,AM16,12112114,Medical Incident,12/02/2012,12/01/2012,12/02/2012 05:20:35 AM,12/02/2012 05:22:11 AM,12/02/2012 05:22:47 AM,12/02/2012 05:24:59 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 05:28:45 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",123370140-AM16 +120270210,B09,12009082,Structure Fire,01/27/2012,01/27/2012,01/27/2012 01:57:25 PM,01/27/2012 01:59:38 PM,01/27/2012 02:00:05 PM,01/27/2012 02:01:27 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Other,01/27/2012 02:05:20 PM,200 Block of BRUSSELS ST,SF,94134,B10,42,6341,3,3,3,false,Fire,1,CHIEF,7,10,9,Portola,"(37.7289338104185, -122.406263897118)",120270210-B09 +132690040,B01,13091237,Alarms,09/26/2013,09/25/2013,09/26/2013 03:00:48 AM,09/26/2013 03:02:06 AM,09/26/2013 03:03:25 AM,09/26/2013 03:05:38 AM,09/26/2013 03:07:52 AM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/26/2013 03:11:27 AM,1100 Block of SACRAMENTO ST,SF,94108,B01,41,1414,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.7927592488818, -122.411464544103)",132690040-B01 +160591052,64,16023457,Medical Incident,02/28/2016,02/28/2016,02/28/2016 10:01:02 AM,02/28/2016 10:01:02 AM,02/28/2016 10:01:18 AM,02/28/2016 10:01:27 AM,02/28/2016 10:11:07 AM,02/28/2016 10:25:08 AM,02/28/2016 10:41:48 AM,Code 2 Transport,02/28/2016 11:41:58 AM,17TH ST/MARKET ST,San Francisco,94114,B05,6,5417,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",160591052-64 +160822103,70,16032595,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:13:41 PM,03/22/2016 02:15:20 PM,03/22/2016 02:15:42 PM,03/22/2016 02:15:55 PM,03/22/2016 02:31:33 PM,03/22/2016 03:03:10 PM,03/22/2016 03:50:13 PM,Code 2 Transport,03/22/2016 04:18:04 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160822103-70 +132880132,KM15,13097935,Traffic Collision,10/15/2013,10/15/2013,10/15/2013 10:14:41 AM,10/15/2013 10:16:16 AM,10/15/2013 10:18:22 AM,04/25/2016 01:50:15 PM,10/15/2013 10:24:57 AM,10/15/2013 10:32:49 AM,10/15/2013 10:54:30 AM,Code 2 Transport,10/15/2013 11:20:49 AM,1ST ST/MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7897625977156, -122.397574469759)",132880132-KM15 +121590078,B02,12052527,Alarms,06/07/2012,06/07/2012,06/07/2012 09:04:12 AM,06/07/2012 09:05:19 AM,06/07/2012 09:05:26 AM,06/07/2012 09:06:51 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/07/2012 09:09:20 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",121590078-B02 +160800040,AM16,16031640,Medical Incident,03/20/2016,03/19/2016,03/20/2016 12:08:37 AM,03/20/2016 12:10:14 AM,03/20/2016 12:11:42 AM,03/20/2016 12:12:02 AM,03/20/2016 12:15:34 AM,03/20/2016 12:22:33 AM,03/20/2016 12:54:59 AM,Code 2 Transport,03/20/2016 01:14:30 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160800040-AM16 +160141952,66,16005588,Medical Incident,01/14/2016,01/14/2016,01/14/2016 01:39:39 PM,01/14/2016 01:41:54 PM,01/14/2016 01:46:00 PM,01/14/2016 01:46:46 PM,01/14/2016 01:48:37 PM,01/14/2016 01:56:25 PM,01/14/2016 02:13:23 PM,Code 3 Transport,01/14/2016 03:07:56 PM,1700 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367746861465, -122.39262575818)",160141952-66 +160203010,68,16008107,Medical Incident,01/20/2016,01/20/2016,01/20/2016 05:59:58 PM,01/20/2016 06:01:45 PM,01/20/2016 06:03:34 PM,01/20/2016 06:03:41 PM,01/20/2016 06:17:30 PM,01/20/2016 06:28:12 PM,01/20/2016 06:45:12 PM,Code 2 Transport,01/20/2016 07:19:25 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",160203010-68 +131550077,E01,13052444,Medical Incident,06/04/2013,06/03/2013,06/04/2013 07:20:14 AM,06/04/2013 07:21:52 AM,06/04/2013 07:22:07 AM,06/04/2013 07:23:24 AM,06/04/2013 07:26:57 AM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/04/2013 07:31:46 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131550077-E01 +130060206,93,13002093,Medical Incident,01/06/2013,01/06/2013,01/06/2013 03:43:46 PM,01/06/2013 03:45:50 PM,01/06/2013 03:46:47 PM,01/06/2013 03:47:21 PM,01/06/2013 03:51:12 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Unable to Locate,01/06/2013 03:56:17 PM,GEARY BL/PALM AV,SF,94118,B07,10,4446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7813145853948, -122.457733042674)",130060206-93 +160471309,74,16018883,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:51:39 AM,02/16/2016 10:51:39 AM,02/16/2016 10:51:59 AM,02/16/2016 10:53:27 AM,02/16/2016 10:59:52 AM,02/16/2016 11:15:03 AM,02/16/2016 11:26:08 AM,Code 2 Transport,02/16/2016 11:59:04 AM,500 Block of MARKET ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Financial District/South Beach,"(37.7898275380016, -122.400837514889)",160471309-74 +111190020,E24,11039117,Smoke Investigation (Outside),04/29/2011,04/28/2011,04/29/2011 02:04:00 AM,04/29/2011 02:05:57 AM,04/29/2011 02:06:17 AM,04/29/2011 02:08:15 AM,04/29/2011 02:11:57 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 02:17:24 AM,300 Block of CORBETT AVE,SF,94114,B05,24,5265,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7599260499038, -122.445043500566)",111190020-E24 +121310274,E51,12043653,Medical Incident,05/10/2012,05/10/2012,05/10/2012 05:02:55 PM,05/10/2012 05:03:29 PM,05/10/2012 05:04:16 PM,05/10/2012 05:06:26 PM,05/10/2012 05:06:35 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 05:23:50 PM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",121310274-E51 +103010283,KM15,10096178,Medical Incident,10/28/2010,10/28/2010,10/28/2010 03:40:34 PM,10/28/2010 03:40:40 PM,10/28/2010 03:43:14 PM,10/28/2010 03:43:29 PM,10/28/2010 03:54:30 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Medical Examiner,10/28/2010 04:34:00 PM,0 Block of BELDEN ST,SF,94104,B01,13,1235,2,2,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7912610957374, -122.40383849944)",103010283-KM15 +102410181,E02,10076019,Medical Incident,08/29/2010,08/29/2010,08/29/2010 12:36:51 PM,08/29/2010 12:37:46 PM,08/29/2010 12:39:37 PM,08/29/2010 12:41:18 PM,08/29/2010 12:44:37 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,No Merit,08/29/2010 12:46:35 PM,BEACH ST/JONES ST,SF,94133,B01,28,1521,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8070725139897, -122.417260632444)",102410181-E02 +110470243,99,11015574,Medical Incident,02/16/2011,02/16/2011,02/16/2011 02:47:00 PM,02/16/2011 02:47:00 PM,02/16/2011 02:47:31 PM,02/16/2011 02:47:52 PM,04/25/2016 02:06:03 PM,02/16/2011 03:16:28 PM,02/16/2011 03:33:46 PM,Code 2 Transport,02/16/2011 03:59:49 PM,FOLSOM ST/BEALE ST,SF,94105,B03,35,2122,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7886866619654, -122.392722833778)",110470243-99 +102830028,54,10089939,Medical Incident,10/10/2010,10/09/2010,10/10/2010 02:19:27 AM,10/10/2010 02:19:48 AM,10/10/2010 02:19:54 AM,10/10/2010 02:20:19 AM,10/10/2010 02:26:21 AM,10/10/2010 02:40:17 AM,10/10/2010 02:52:07 AM,Code 2 Transport,10/10/2010 03:17:47 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",102830028-54 +132780388,T06,13094683,Structure Fire,10/05/2013,10/05/2013,10/05/2013 09:34:48 PM,10/05/2013 09:35:28 PM,10/05/2013 09:35:46 PM,10/05/2013 09:37:02 PM,10/05/2013 09:37:52 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 09:51:55 PM,3400 Block of 16TH ST,SF,94114,B05,6,5234,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7643418581632, -122.430494795393)",132780388-T06 +110250227,E43,11008246,Medical Incident,01/25/2011,01/25/2011,01/25/2011 12:35:28 PM,01/25/2011 12:36:48 PM,01/25/2011 12:38:13 PM,01/25/2011 12:39:11 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 12:47:07 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,false,,1,ENGINE,3,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",110250227-E43 +130870034,T11,13028893,Medical Incident,03/28/2013,03/27/2013,03/28/2013 02:47:51 AM,03/28/2013 02:49:32 AM,03/28/2013 02:50:14 AM,03/28/2013 02:51:52 AM,03/28/2013 02:55:10 AM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/28/2013 02:56:48 AM,KINGSTON ST/MISSION ST,SF,94110,B06,32,5626,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Bernal Heights,"(37.7417604896051, -122.422366461844)",130870034-T11 +160751714,71,16029712,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:43:36 PM,03/15/2016 12:45:29 PM,03/15/2016 12:47:54 PM,03/15/2016 12:48:01 PM,03/15/2016 01:10:41 PM,03/15/2016 01:22:47 PM,03/15/2016 01:46:47 PM,Code 2 Transport,03/15/2016 02:12:51 PM,1200 Block of BAYSIDE DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8305521373319, -122.376358682495)",160751714-71 +133400368,T15,13115401,Vehicle Fire,12/06/2013,12/06/2013,12/06/2013 08:26:29 PM,12/06/2013 08:27:11 PM,12/06/2013 08:27:35 PM,12/06/2013 08:29:02 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/06/2013 08:33:03 PM,100 Block of PARQUE DR,SF,94134,B09,43,6246,3,3,3,false,Fire,1,TRUCK,2,9,10,Visitacion Valley,"(37.710246785234, -122.421304206858)",133400368-T15 +160412008,79,16016477,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:48:40 PM,02/10/2016 01:50:22 PM,02/10/2016 01:50:41 PM,02/10/2016 01:50:51 PM,02/10/2016 01:52:35 PM,02/10/2016 02:01:33 PM,02/10/2016 02:06:02 PM,Code 2 Transport,02/10/2016 02:39:32 PM,FERN ST/POLK ST,San Francisco,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",160412008-79 +132780250,B07,13094556,Alarms,10/05/2013,10/05/2013,10/05/2013 03:37:47 PM,10/05/2013 03:39:45 PM,10/05/2013 03:40:00 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,No Merit,10/05/2013 03:43:20 PM,2200 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,false,Alarm,1,CHIEF,2,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",132780250-B07 +120630187,83,12020750,Medical Incident,03/03/2012,03/03/2012,03/03/2012 12:16:06 PM,03/03/2012 12:16:48 PM,03/03/2012 12:17:09 PM,03/03/2012 12:17:40 PM,03/03/2012 12:24:42 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Patient Declined Transport,03/03/2012 01:12:52 PM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7273738403389, -122.384143344423)",120630187-83 +112670338,E18,11088361,Medical Incident,09/24/2011,09/24/2011,09/24/2011 08:29:27 PM,09/24/2011 08:30:09 PM,09/24/2011 08:30:20 PM,09/24/2011 08:31:57 PM,09/24/2011 08:35:40 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 08:41:28 PM,2700 Block of 43RD AVE,SF,94116,B08,18,7642,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7357515946534, -122.501045149306)",112670338-E18 +160051146,63,16001941,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:25:12 AM,01/05/2016 10:26:22 AM,01/05/2016 10:26:51 AM,01/05/2016 10:27:19 AM,01/05/2016 10:48:20 AM,01/05/2016 10:48:22 AM,01/05/2016 10:59:13 AM,Code 3 Transport,01/05/2016 12:11:09 PM,2800 Block of BUSH ST,San Francisco,94115,B05,10,4341,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,5,2,Presidio Heights,"(37.7855993911938, -122.444184112776)",160051146-63 +140610050,T13,14020523,Structure Fire,03/02/2014,03/01/2014,03/02/2014 03:31:51 AM,03/02/2014 03:31:52 AM,03/02/2014 03:32:03 AM,03/02/2014 03:34:09 AM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Fire,03/02/2014 03:36:28 AM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7895620432155, -122.402161869829)",140610050-T13 +140210006,E23,14007038,Medical Incident,01/21/2014,01/20/2014,01/21/2014 01:04:58 AM,01/21/2014 01:05:13 AM,01/21/2014 01:05:27 AM,01/21/2014 01:08:17 AM,01/21/2014 01:10:55 AM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/21/2014 01:21:09 AM,48TH AV/ORTEGA ST,SF,94116,B08,23,7725,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.751003286283, -122.507416228519)",140210006-E23 +112460299,E17,11081223,Outside Fire,09/03/2011,09/03/2011,09/03/2011 07:15:22 PM,09/03/2011 07:15:57 PM,09/03/2011 07:16:34 PM,09/03/2011 07:18:06 PM,09/03/2011 07:22:24 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Fire,09/03/2011 07:34:26 PM,600 Block of JAMESTOWN AVE,SF,94124,B10,17,6577,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7131072321423, -122.387833652325)",112460299-E17 +132280263,E05,13077017,Traffic Collision,08/16/2013,08/16/2013,08/16/2013 03:03:41 PM,08/16/2013 03:03:41 PM,08/16/2013 03:04:08 PM,08/16/2013 03:05:11 PM,08/16/2013 03:06:18 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,Patient Declined Transport,08/16/2013 03:14:36 PM,FILLMORE ST/FULTON ST,SF,94117,B05,5,3521,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.777699925281, -122.431574643438)",132280263-E05 +111470277,81,11048851,Medical Incident,05/27/2011,05/27/2011,05/27/2011 05:53:20 PM,05/27/2011 05:54:41 PM,05/27/2011 05:54:56 PM,05/27/2011 05:55:04 PM,05/27/2011 05:58:40 PM,05/27/2011 06:21:57 PM,05/27/2011 06:33:08 PM,Code 2 Transport,05/27/2011 06:58:05 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",111470277-81 +121070032,T13,12035330,Medical Incident,04/16/2012,04/15/2012,04/16/2012 02:24:23 AM,04/16/2012 02:24:55 AM,04/16/2012 02:27:25 AM,04/16/2012 02:29:27 AM,04/16/2012 02:32:37 AM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/16/2012 02:33:07 AM,100 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7934447817207, -122.395879334268)",121070032-T13 +131460186,E21,13049512,Outside Fire,05/26/2013,05/26/2013,05/26/2013 11:16:25 AM,05/26/2013 11:16:58 AM,05/26/2013 11:17:35 AM,05/26/2013 11:18:15 AM,05/26/2013 11:22:02 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 11:28:42 AM,FULTON ST/ARGUELLO BL,SF,94122,B07,31,7111,3,3,3,true,Fire,1,ENGINE,1,7,1,Golden Gate Park,"(37.7743088945696, -122.458371098705)",131460186-E21 +160761957,57,16030163,Medical Incident,03/16/2016,03/16/2016,03/16/2016 01:31:02 PM,03/16/2016 01:33:18 PM,03/16/2016 01:33:33 PM,03/16/2016 01:33:49 PM,03/16/2016 01:38:18 PM,03/16/2016 01:56:19 PM,03/16/2016 02:00:57 PM,Code 2 Transport,03/16/2016 02:27:01 PM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160761957-57 +160542171,KM02,16021636,Medical Incident,02/23/2016,02/23/2016,02/23/2016 02:30:51 PM,02/23/2016 02:31:13 PM,02/23/2016 02:31:59 PM,02/23/2016 02:33:12 PM,02/23/2016 03:02:40 PM,02/23/2016 03:02:49 PM,02/23/2016 03:12:20 PM,Code 2 Transport,02/23/2016 03:53:25 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",160542171-KM02 +140680063,88,14022914,Medical Incident,03/09/2014,03/08/2014,03/09/2014 06:06:57 AM,03/09/2014 06:08:28 AM,03/09/2014 06:10:15 AM,03/09/2014 06:10:21 AM,03/09/2014 06:15:15 AM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Other,03/09/2014 06:15:43 AM,500 Block of ELLIS ST,SAN FRANCISCO,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",140680063-88 +132180339,E11,13073748,Medical Incident,08/06/2013,08/06/2013,08/06/2013 08:13:47 PM,08/06/2013 08:13:47 PM,08/06/2013 08:13:47 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 08:20:11 PM,3000 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.748597504437, -122.418163001869)",132180339-E11 +160393149,70,16015762,Medical Incident,02/08/2016,02/08/2016,02/08/2016 07:24:43 PM,02/08/2016 07:26:43 PM,02/08/2016 07:27:51 PM,02/08/2016 07:28:02 PM,02/08/2016 07:32:49 PM,02/08/2016 07:41:55 PM,02/08/2016 07:55:53 PM,Code 2 Transport,02/08/2016 08:08:12 PM,0 Block of BLK DAKOTA ST,San Francisco,94107,B10,37,2614,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7548384184422, -122.396359741274)",160393149-70 +110890238,T10,11029429,Alarms,03/30/2011,03/30/2011,03/30/2011 03:11:07 PM,03/30/2011 03:12:29 PM,03/30/2011 03:12:33 PM,03/30/2011 03:13:51 PM,03/30/2011 03:17:27 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 03:29:10 PM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,false,,1,TRUCK,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",110890238-T10 +140400075,E19,14013470,Alarms,02/09/2014,02/08/2014,02/09/2014 04:29:48 AM,02/09/2014 04:31:13 AM,02/09/2014 04:31:23 AM,02/09/2014 04:33:16 AM,02/09/2014 04:36:36 AM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/09/2014 04:45:07 AM,400 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Alarm,1,ENGINE,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",140400075-E19 +111210192,E39,11039950,Medical Incident,05/01/2011,05/01/2011,05/01/2011 12:59:04 PM,05/01/2011 01:00:39 PM,05/01/2011 01:01:25 PM,05/01/2011 01:02:18 PM,05/01/2011 01:04:31 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 01:16:55 PM,200 Block of YERBA BUENA AVE,SF,94127,B09,39,8526,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7339416420231, -122.459345019691)",111210192-E39 +160712488,74,16028305,Medical Incident,03/11/2016,03/11/2016,03/11/2016 04:35:29 PM,03/11/2016 04:36:34 PM,03/11/2016 04:36:52 PM,03/11/2016 04:37:06 PM,03/11/2016 04:40:35 PM,03/11/2016 04:56:09 PM,03/11/2016 05:13:01 PM,Code 2 Transport,03/11/2016 06:11:18 PM,1600 Block of DIVISADERO ST,San Francisco,94115,B05,10,4155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7847979838284, -122.439663867351)",160712488-74 +121780186,E11,12059255,Structure Fire,06/26/2012,06/26/2012,06/26/2012 01:11:59 PM,06/26/2012 01:11:59 PM,06/26/2012 01:12:08 PM,06/26/2012 01:13:36 PM,06/26/2012 01:14:18 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 01:14:38 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7490412884368, -122.418135251703)",121780186-E11 +160841293,60,16033327,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:18:34 AM,03/24/2016 10:21:26 AM,03/24/2016 10:21:52 AM,03/24/2016 10:23:24 AM,03/24/2016 10:28:17 AM,03/24/2016 10:50:36 AM,03/24/2016 11:04:37 AM,Code 2 Transport,03/24/2016 11:37:52 AM,500 Block of 15TH ST,San Francisco,94103,B02,29,2352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7672258966731, -122.406197525908)",160841293-60 +110890281,B02,11029471,Alarms,03/30/2011,03/30/2011,03/30/2011 04:26:52 PM,03/30/2011 04:29:32 PM,03/30/2011 04:32:03 PM,03/30/2011 04:32:57 PM,03/30/2011 04:43:29 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 04:45:04 PM,1700 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,false,,1,CHIEF,3,5,5,Lone Mountain/USF,"(37.7750328323783, -122.445449213896)",110890281-B02 +133100353,E05,13105531,Structure Fire,11/06/2013,11/06/2013,11/06/2013 08:44:02 PM,11/06/2013 08:44:02 PM,11/06/2013 08:45:09 PM,11/06/2013 08:47:04 PM,11/06/2013 08:49:29 PM,04/25/2016 01:49:53 PM,04/25/2016 01:49:53 PM,Fire,11/06/2013 08:49:47 PM,0 Block of VAN NESS AVE,SF,94102,B02,36,3211,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7752607728259, -122.419431229777)",133100353-E05 +132260022,RS1,13076166,Structure Fire,08/14/2013,08/13/2013,08/14/2013 01:44:14 AM,08/14/2013 01:44:39 AM,08/14/2013 01:44:46 AM,08/14/2013 01:46:43 AM,08/14/2013 01:47:42 AM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/14/2013 01:53:27 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Alarm,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",132260022-RS1 +160233230,63,16009302,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:57:47 PM,01/23/2016 07:58:27 PM,01/23/2016 07:59:10 PM,01/23/2016 07:59:31 PM,01/23/2016 08:08:21 PM,01/23/2016 08:40:11 PM,01/23/2016 08:48:42 PM,Code 2 Transport,01/23/2016 09:18:56 PM,2700 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",160233230-63 +133630317,E03,13123430,Medical Incident,12/29/2013,12/29/2013,12/29/2013 10:41:36 PM,12/29/2013 10:44:56 PM,12/29/2013 10:45:20 PM,12/29/2013 10:46:44 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/29/2013 10:47:45 PM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",133630317-E03 +111080094,RS1,11035621,Structure Fire,04/18/2011,04/18/2011,04/18/2011 09:45:15 AM,04/18/2011 09:45:45 AM,04/18/2011 09:45:59 AM,04/18/2011 09:48:21 AM,04/18/2011 09:51:32 AM,04/25/2016 02:05:03 PM,04/25/2016 02:05:03 PM,Other,04/18/2011 10:28:26 AM,200 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,false,,1,RESCUE SQUAD,10,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",111080094-RS1 +122500023,T16,12082534,Alarms,09/06/2012,09/05/2012,09/06/2012 03:23:14 AM,09/06/2012 03:26:12 AM,09/06/2012 03:26:32 AM,09/06/2012 03:27:53 AM,09/06/2012 03:30:41 AM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/06/2012 03:37:31 AM,3600 Block of FILLMORE ST,SF,94123,B04,16,3555,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8030999984868, -122.436950517531)",122500023-T16 +131050003,B02,13035121,Alarms,04/15/2013,04/14/2013,04/15/2013 12:16:35 AM,04/15/2013 12:18:12 AM,04/15/2013 12:18:18 AM,04/15/2013 12:19:52 AM,04/15/2013 12:22:44 AM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 12:24:13 AM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",131050003-B02 +112590364,81,11085548,Medical Incident,09/16/2011,09/16/2011,09/16/2011 09:41:01 PM,09/16/2011 09:41:46 PM,09/16/2011 09:42:34 PM,09/16/2011 09:44:15 PM,09/16/2011 09:47:36 PM,09/16/2011 10:05:11 PM,09/16/2011 10:18:49 PM,Code 2 Transport,09/16/2011 10:53:36 PM,MARKET ST/JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",112590364-81 +120140236,D3,12004821,Structure Fire,01/14/2012,01/14/2012,01/14/2012 05:24:59 PM,01/14/2012 05:26:43 PM,01/14/2012 05:27:14 PM,01/14/2012 05:27:50 PM,01/14/2012 05:32:23 PM,04/25/2016 02:00:38 PM,04/25/2016 02:00:38 PM,Other,01/14/2012 05:33:59 PM,500 Block of BARTLETT ST,SF,94110,B06,11,5613,3,3,3,false,Fire,1,CHIEF,6,6,9,Mission,"(37.7485807507693, -122.419139646958)",120140236-D3 +160891441,56,16035306,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:17:34 AM,03/29/2016 11:18:31 AM,03/29/2016 11:18:49 AM,03/29/2016 11:18:57 AM,03/29/2016 11:26:25 AM,03/29/2016 11:43:27 AM,03/29/2016 12:13:36 PM,Code 2 Transport,03/29/2016 12:55:00 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160891441-56 +122060053,E33,12068383,Traffic Collision,07/24/2012,07/23/2012,07/24/2012 05:40:27 AM,07/24/2012 05:40:27 AM,07/24/2012 05:40:43 AM,07/24/2012 05:42:44 AM,07/24/2012 05:48:41 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 06:00:33 AM,OCEAN AV/SAN JOSE AV,SF,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7229665717171, -122.44474662479)",122060053-E33 +132870400,87,13097824,Medical Incident,10/14/2013,10/14/2013,10/14/2013 11:38:57 PM,10/14/2013 11:41:29 PM,10/14/2013 11:42:52 PM,10/14/2013 11:43:28 PM,10/15/2013 12:04:59 AM,10/15/2013 12:15:13 AM,10/15/2013 12:55:31 AM,Code 2 Transport,10/15/2013 01:37:22 AM,400 Block of BAY ST,SF,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",132870400-87 +120110194,T13,12003817,Medical Incident,01/11/2012,01/11/2012,01/11/2012 03:08:11 PM,01/11/2012 03:08:46 PM,01/11/2012 03:09:35 PM,01/11/2012 03:13:09 PM,01/11/2012 03:16:19 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 03:23:45 PM,700 Block of GRANT AVE,SF,94108,B01,13,1313,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.7940392610273, -122.406331131515)",120110194-T13 +123310198,B01,12110027,Alarms,11/26/2012,11/26/2012,11/26/2012 12:05:47 PM,11/26/2012 12:07:24 PM,11/26/2012 12:07:31 PM,11/26/2012 12:08:01 PM,11/26/2012 12:12:36 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 12:13:13 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",123310198-B01 +132980249,B03,13101256,Medical Incident,10/25/2013,10/25/2013,10/25/2013 03:48:09 PM,10/25/2013 03:48:09 PM,10/25/2013 03:53:26 PM,10/25/2013 04:04:41 PM,10/25/2013 04:08:56 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 04:14:52 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2244,2,2,2,false,Non Life-threatening,1,CHIEF,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",132980249-B03 +120390385,72,12013176,Medical Incident,02/08/2012,02/08/2012,02/08/2012 11:42:36 PM,02/08/2012 11:45:03 PM,02/08/2012 11:45:17 PM,02/08/2012 11:45:44 PM,02/08/2012 11:57:00 PM,02/09/2012 12:18:16 AM,02/09/2012 12:43:45 AM,Code 2 Transport,02/09/2012 01:14:01 AM,1300 Block of INGALLS ST,SF,94124,B10,17,6572,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304672300474, -122.382582263214)",120390385-72 +120610247,T10,12020105,Medical Incident,03/01/2012,03/01/2012,03/01/2012 04:05:17 PM,03/01/2012 04:06:02 PM,03/01/2012 04:06:31 PM,03/01/2012 04:08:22 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/01/2012 04:10:17 PM,1500 Block of DIVISADERO ST,SF,94115,B05,10,4154,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,5,5,Japantown,"(37.7840751928704, -122.439752776223)",120610247-T10 +132960111,KM01,13100543,Alarms,10/23/2013,10/23/2013,10/23/2013 10:13:48 AM,10/23/2013 10:15:35 AM,10/23/2013 10:16:24 AM,10/23/2013 10:17:24 AM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/23/2013 10:25:37 AM,100 Block of MORNINGSIDE DR,SF,94132,B08,19,8814,3,3,3,false,Alarm,1,PRIVATE,3,8,7,Sunset/Parkside,"(37.7304824793744, -122.492110393736)",132960111-KM01 +160243013,56,16009654,Medical Incident,01/24/2016,01/24/2016,01/24/2016 07:31:07 PM,01/24/2016 07:31:57 PM,01/24/2016 07:32:59 PM,01/24/2016 07:33:05 PM,01/24/2016 07:37:48 PM,01/24/2016 08:01:30 PM,01/24/2016 08:20:28 PM,Code 2 Transport,01/24/2016 08:59:52 PM,0 Block of CAINE AVE,San Francisco,94112,B09,33,8325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7173835692586, -122.450562512299)",160243013-56 +112990275,KM15,11099254,Medical Incident,10/26/2011,10/26/2011,10/26/2011 05:53:31 PM,10/26/2011 05:55:16 PM,10/26/2011 05:55:34 PM,10/26/2011 05:56:29 PM,10/26/2011 06:07:38 PM,10/26/2011 06:24:29 PM,10/26/2011 06:41:32 PM,Code 2 Transport,10/26/2011 07:12:51 PM,100 Block of CASHMERE ST,SF,94124,B10,25,6522,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",112990275-KM15 +111370218,59,11045598,Medical Incident,05/17/2011,05/17/2011,05/17/2011 02:45:52 PM,05/17/2011 02:47:05 PM,05/17/2011 02:47:18 PM,05/17/2011 02:47:39 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 02:48:41 PM,1800 Block of 24TH AVE,SF,94122,B08,18,7455,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7530690887832, -122.481836048422)",111370218-59 +133130379,E11,13106545,Medical Incident,11/09/2013,11/09/2013,11/09/2013 08:41:08 PM,11/09/2013 08:41:58 PM,11/09/2013 08:51:14 PM,04/25/2016 01:49:50 PM,11/09/2013 08:47:24 PM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/09/2013 09:06:10 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7530420707497, -122.418450617982)",133130379-E11 +121500343,E07,12049890,Medical Incident,05/29/2012,05/29/2012,05/29/2012 11:59:15 PM,05/29/2012 11:59:42 PM,05/30/2012 12:00:09 AM,04/25/2016 01:58:27 PM,05/30/2012 12:03:49 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/30/2012 12:11:46 AM,500 Block of VALENCIA ST,SF,94103,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",121500343-E07 +112590088,E05,11085322,Medical Incident,09/16/2011,09/16/2011,09/16/2011 08:25:18 AM,09/16/2011 08:27:18 AM,09/16/2011 08:27:27 AM,09/16/2011 08:28:45 AM,09/16/2011 08:29:13 AM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Medical Examiner,09/16/2011 09:08:36 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,2,2,true,,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",112590088-E05 +160222599,73,16008841,Medical Incident,01/22/2016,01/22/2016,01/22/2016 04:40:39 PM,01/22/2016 04:42:40 PM,01/22/2016 04:44:03 PM,01/22/2016 04:44:10 PM,01/22/2016 04:48:13 PM,01/22/2016 04:55:03 PM,01/22/2016 05:01:43 PM,Code 2 Transport,01/22/2016 05:26:51 PM,CESAR CHAVEZ ST/POTRERO AV,San Francisco,94110,B10,9,2626,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7490055721109, -122.405007343737)",160222599-73 +160741351,59,16029299,Traffic Collision,03/14/2016,03/14/2016,03/14/2016 11:03:06 AM,03/14/2016 11:03:06 AM,03/14/2016 11:03:20 AM,03/14/2016 11:07:08 AM,03/14/2016 11:07:08 AM,03/14/2016 11:16:06 AM,03/14/2016 11:24:37 AM,Code 2 Transport,03/14/2016 12:15:28 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160741351-59 +140060309,E06,14002229,Medical Incident,01/06/2014,01/06/2014,01/06/2014 05:03:14 PM,01/06/2014 05:04:13 PM,01/06/2014 05:04:38 PM,01/06/2014 05:05:58 PM,01/06/2014 05:07:11 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Patient Declined Transport,01/06/2014 05:36:16 PM,100 Block of NOE ST,SF,94114,B05,6,5212,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7670576552688, -122.4334390759)",140060309-E06 +120010290,RC1,12000244,Medical Incident,01/01/2012,12/31/2011,01/01/2012 05:05:09 AM,01/01/2012 05:05:56 AM,01/01/2012 05:06:12 AM,01/01/2012 05:09:22 AM,01/01/2012 05:12:49 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 05:23:33 AM,JONES ST/GEARY ST,SF,94102,B01,3,1462,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",120010290-RC1 +160150967,53,16005904,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:23:15 AM,01/15/2016 09:23:15 AM,01/15/2016 09:24:56 AM,01/15/2016 09:25:17 AM,01/15/2016 09:30:43 AM,01/15/2016 10:02:03 AM,01/15/2016 10:22:12 AM,Code 2 Transport,01/15/2016 10:42:17 AM,0 Block of STONEYFORD AVE,San Francisco,94112,B09,32,5681,,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7302836940584, -122.421080787461)",160150967-53 +120710253,T14,12023672,Structure Fire,03/11/2012,03/11/2012,03/11/2012 04:35:50 PM,03/11/2012 04:35:51 PM,03/11/2012 04:36:17 PM,03/11/2012 04:37:18 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/11/2012 04:39:53 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",120710253-T14 +160723097,78,16028759,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:21:32 PM,03/12/2016 08:21:32 PM,03/12/2016 08:27:05 PM,03/12/2016 08:27:12 PM,03/12/2016 08:39:02 PM,03/12/2016 08:46:29 PM,03/12/2016 08:51:03 PM,Code 2 Transport,03/12/2016 09:32:04 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160723097-78 +132500016,87,13084249,Medical Incident,09/07/2013,09/06/2013,09/07/2013 12:41:41 AM,09/07/2013 12:41:42 AM,09/07/2013 12:42:16 AM,09/07/2013 12:42:49 AM,09/07/2013 12:54:24 AM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Against Medical Advice,09/07/2013 01:38:31 AM,2800 Block of LEAVENWORTH ST,SF,94109,B01,28,1524,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8073249129151, -122.419065516897)",132500016-87 +133400004,E18,13115089,Medical Incident,12/06/2013,12/05/2013,12/06/2013 12:13:04 AM,12/06/2013 12:13:43 AM,12/06/2013 12:17:12 AM,12/06/2013 12:18:36 AM,12/06/2013 12:22:52 AM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:37:06 AM,4100 Block of NORIEGA ST,SF,94122,B08,23,7725,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7527950009872, -122.507985239819)",133400004-E18 +103440254,E19,10110260,Traffic Collision,12/10/2010,12/10/2010,12/10/2010 02:29:58 PM,12/10/2010 02:29:58 PM,12/10/2010 02:34:32 PM,12/10/2010 02:34:59 PM,12/10/2010 02:37:28 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 03:18:46 PM,LAKE MERCED BL/FONT BL,SF,94132,B08,19,8855,2,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7239997279789, -122.485075175889)",103440254-E19 +121610300,64,12053413,Medical Incident,06/09/2012,06/09/2012,06/09/2012 07:44:45 PM,06/09/2012 07:45:21 PM,06/09/2012 07:46:15 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,04/25/2016 01:58:17 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",121610300-64 +160840237,71,16033224,Medical Incident,03/24/2016,03/23/2016,03/24/2016 02:23:02 AM,03/24/2016 02:23:02 AM,03/24/2016 02:28:51 AM,03/24/2016 02:28:56 AM,03/24/2016 02:32:51 AM,03/24/2016 02:50:21 AM,03/24/2016 02:53:18 AM,Code 2 Transport,03/24/2016 03:24:31 AM,1000 Block of POST ST,San Francisco,94109,B02,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",160840237-71 +160640035,57,16025310,Medical Incident,03/04/2016,03/03/2016,03/04/2016 12:15:43 AM,03/04/2016 12:18:18 AM,03/04/2016 12:19:52 AM,03/04/2016 12:19:52 AM,03/04/2016 12:24:39 AM,03/04/2016 12:36:18 AM,03/04/2016 12:36:53 AM,Code 2 Transport,03/04/2016 01:04:50 AM,2500 Block of 23RD ST,San Francisco,94110,B10,37,2554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.754404748573, -122.405248327082)",160640035-57 +160600253,AM20,16023742,Medical Incident,02/29/2016,02/28/2016,02/29/2016 02:58:12 AM,02/29/2016 02:59:57 AM,02/29/2016 03:00:12 AM,02/29/2016 03:00:57 AM,02/29/2016 03:03:21 AM,02/29/2016 03:31:52 AM,02/29/2016 03:40:46 AM,Code 2 Transport,02/29/2016 04:10:51 AM,1100 Block of HYDE ST,San Francisco,94109,B01,41,1563,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7914566786177, -122.417418430351)",160600253-AM20 +120080258,T12,12002836,Alarms,01/08/2012,01/08/2012,01/08/2012 03:54:04 PM,01/08/2012 03:56:48 PM,01/08/2012 03:56:53 PM,01/08/2012 03:57:31 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/08/2012 04:05:09 PM,1500 Block of 8TH AVE,SF,94122,B08,22,7331,3,3,3,false,Alarm,1,TRUCK,3,8,7,Inner Sunset,"(37.7594218897131, -122.464985351728)",120080258-T12 +160090469,61,16003530,Medical Incident,01/09/2016,01/08/2016,01/09/2016 04:50:50 AM,01/09/2016 04:51:32 AM,01/09/2016 04:52:05 AM,01/09/2016 04:52:18 AM,01/09/2016 04:58:18 AM,01/09/2016 05:25:12 AM,01/09/2016 05:44:38 AM,Code 2 Transport,01/09/2016 06:28:46 AM,100 Block of STAPLES AVE,San Francisco,94112,B09,15,8222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7290334767278, -122.445423790113)",160090469-61 +103630186,RS1,10116448,Medical Incident,12/29/2010,12/29/2010,12/29/2010 02:09:14 PM,12/29/2010 02:09:55 PM,12/29/2010 02:12:26 PM,12/29/2010 02:13:54 PM,12/29/2010 02:15:20 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/29/2010 02:24:43 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",103630186-RS1 +111190134,E28,11039208,Medical Incident,04/29/2011,04/29/2011,04/29/2011 11:49:26 AM,04/29/2011 11:51:43 AM,04/29/2011 11:52:01 AM,04/29/2011 11:53:38 AM,04/29/2011 11:55:36 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 12:03:36 PM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",111190134-E28 +160091949,AM16,16003675,Medical Incident,01/09/2016,01/09/2016,01/09/2016 02:22:03 PM,01/09/2016 02:24:28 PM,01/09/2016 02:24:57 PM,01/09/2016 02:25:36 PM,01/09/2016 02:27:58 PM,01/09/2016 02:50:02 PM,01/09/2016 03:14:43 PM,Code 2 Transport,01/09/2016 03:37:56 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",160091949-AM16 +110690381,E05,11022867,Medical Incident,03/10/2011,03/10/2011,03/10/2011 10:37:05 PM,03/10/2011 10:37:21 PM,03/10/2011 10:37:34 PM,03/10/2011 10:38:28 PM,03/10/2011 10:40:12 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/10/2011 10:46:29 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7810598440913, -122.434783737987)",110690381-E05 +121030153,KM10,12034089,Medical Incident,04/12/2012,04/12/2012,04/12/2012 11:13:35 AM,04/12/2012 11:14:14 AM,04/12/2012 11:14:29 AM,04/12/2012 11:15:54 AM,04/12/2012 11:16:40 AM,04/12/2012 11:30:07 AM,04/12/2012 11:47:28 AM,Code 2 Transport,04/12/2012 12:21:15 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",121030153-KM10 +140330028,T10,14011074,Structure Fire,02/02/2014,02/01/2014,02/02/2014 01:46:18 AM,02/02/2014 01:47:34 AM,02/02/2014 01:50:10 AM,02/02/2014 01:53:08 AM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/02/2014 01:55:11 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,,3,3,false,Alarm,1,TRUCK,7,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",140330028-T10 +140300026,T12,14010084,Vehicle Fire,01/30/2014,01/29/2014,01/30/2014 01:59:41 AM,01/30/2014 02:00:06 AM,01/30/2014 02:00:29 AM,01/30/2014 02:02:03 AM,01/30/2014 02:07:48 AM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/30/2014 02:09:35 AM,11TH AV/MORAGA ST,SF,94122,B08,22,7343,,3,3,false,Fire,1,TRUCK,2,8,7,Inner Sunset,"(37.756486205733, -122.467931638181)",140300026-T12 +113110048,T08,11103238,Medical Incident,11/07/2011,11/06/2011,11/07/2011 05:09:13 AM,11/07/2011 05:10:29 AM,11/07/2011 05:11:00 AM,11/07/2011 05:12:30 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 05:15:53 AM,0 Block of KING ST,SF,94107,B03,35,940,3,3,3,false,,1,TRUCK,3,3,6,Mission Bay,"(37.7807643532489, -122.388778001806)",113110048-T08 +120910365,72,12030292,Medical Incident,03/31/2012,03/31/2012,03/31/2012 10:52:38 PM,03/31/2012 10:52:58 PM,03/31/2012 10:53:12 PM,03/31/2012 10:53:21 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,Other,03/31/2012 10:54:42 PM,500 Block of 25TH AVE,SF,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7791261121342, -122.484732839947)",120910365-72 +132550300,E15,13086280,Administrative,09/12/2013,09/12/2013,09/12/2013 05:11:51 PM,09/12/2013 05:11:54 PM,09/12/2013 05:12:17 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 05:12:47 PM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",132550300-E15 +112800386,AM10,11092853,Medical Incident,10/07/2011,10/07/2011,10/07/2011 11:51:49 PM,10/07/2011 11:53:40 PM,10/07/2011 11:54:15 PM,10/07/2011 11:54:55 PM,10/07/2011 11:57:08 PM,10/08/2011 12:15:50 AM,10/08/2011 12:24:17 AM,Patient Declined Transport,10/08/2011 12:24:33 AM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,false,,1,PRIVATE,1,6,9,Mission,"(37.752711512136, -122.411436461904)",112800386-AM10 +160141843,71,16005574,Medical Incident,01/14/2016,01/14/2016,01/14/2016 01:13:18 PM,01/14/2016 01:14:43 PM,01/14/2016 01:15:12 PM,01/14/2016 01:15:21 PM,01/14/2016 01:21:44 PM,01/14/2016 01:41:42 PM,01/14/2016 02:07:27 PM,Code 2 Transport,01/14/2016 02:38:13 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160141843-71 +160671011,67,16026683,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:42:06 AM,03/07/2016 10:42:56 AM,03/07/2016 10:44:03 AM,03/07/2016 10:44:38 AM,03/07/2016 10:54:38 AM,03/07/2016 11:07:55 AM,03/07/2016 11:15:28 AM,Code 3 Transport,03/07/2016 12:17:52 PM,300 Block of SOUTH HILL BLVD,San Francisco,94112,B09,43,6235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7085560806587, -122.430073010407)",160671011-67 +160160639,63,16006315,Medical Incident,01/16/2016,01/15/2016,01/16/2016 06:05:25 AM,01/16/2016 06:06:18 AM,01/16/2016 06:06:29 AM,01/16/2016 06:06:42 AM,01/16/2016 06:13:30 AM,01/16/2016 06:26:06 AM,01/16/2016 06:41:18 AM,Code 2 Transport,01/16/2016 07:14:53 AM,1600 Block of MARKET ST,San Francisco,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7732180675925, -122.421522300696)",160160639-63 +122570024,AM18,12084824,Medical Incident,09/13/2012,09/12/2012,09/13/2012 04:04:15 AM,09/13/2012 04:04:40 AM,09/13/2012 04:07:51 AM,09/13/2012 04:11:25 AM,09/13/2012 04:14:14 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,No Merit,09/13/2012 04:20:16 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",122570024-AM18 +110610042,T06,11019896,Medical Incident,03/02/2011,03/01/2011,03/02/2011 04:30:43 AM,03/02/2011 04:31:40 AM,03/02/2011 04:36:33 AM,03/02/2011 04:38:22 AM,03/02/2011 04:40:57 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 04:47:55 AM,100 Block of LANDERS ST,SF,94114,B02,6,5234,3,3,3,false,,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7651080913316, -122.427584518743)",110610042-T06 +160280052,KM07,16010921,Medical Incident,01/28/2016,01/27/2016,01/28/2016 12:26:26 AM,01/28/2016 12:27:47 AM,01/28/2016 12:28:10 AM,01/28/2016 12:28:42 AM,01/28/2016 12:28:00 AM,01/28/2016 12:50:41 AM,01/28/2016 12:58:16 AM,Code 2 Transport,01/28/2016 01:26:10 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160280052-KM07 +112410119,T11,11079472,Alarms,08/29/2011,08/29/2011,08/29/2011 10:45:10 AM,08/29/2011 10:47:07 AM,08/29/2011 10:47:16 AM,08/29/2011 10:48:40 AM,08/29/2011 10:52:16 AM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 11:10:42 AM,700 Block of SAN JOSE AVE,SF,94110,B06,32,5575,3,3,3,true,,1,TRUCK,1,6,8,Noe Valley,"(37.743555148233, -122.422948278787)",112410119-T11 +160333259,KM03,16013154,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:50:29 PM,02/02/2016 08:51:35 PM,02/02/2016 08:52:07 PM,02/02/2016 08:52:49 PM,02/02/2016 08:56:49 PM,02/02/2016 09:06:16 PM,02/02/2016 09:16:49 PM,Code 2 Transport,02/02/2016 09:52:15 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160333259-KM03 +160352117,AM06,16013852,Medical Incident,02/04/2016,02/04/2016,02/04/2016 02:19:11 PM,02/04/2016 02:21:18 PM,02/04/2016 02:21:54 PM,02/04/2016 02:22:28 PM,02/04/2016 02:36:21 PM,02/04/2016 02:59:29 PM,02/04/2016 03:21:19 PM,Code 2 Transport,02/04/2016 03:56:13 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160352117-AM06 +133200180,84,13108724,Medical Incident,11/16/2013,11/16/2013,11/16/2013 01:12:21 PM,11/16/2013 01:13:02 PM,11/16/2013 01:13:20 PM,11/16/2013 01:13:36 PM,11/16/2013 01:18:21 PM,11/16/2013 01:49:27 PM,11/16/2013 02:21:21 PM,Code 3 Transport,11/16/2013 03:09:23 PM,1300 Block of 34TH AVE,SF,94122,B08,23,7564,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7619258657108, -122.493064380739)",133200180-84 +131050323,E29,13035389,Other,04/15/2013,04/15/2013,04/15/2013 05:57:14 PM,04/15/2013 05:57:19 PM,04/15/2013 05:57:53 PM,04/15/2013 05:58:34 PM,04/15/2013 06:01:18 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/15/2013 06:18:41 PM,ARKANSAS ST/MARIPOSA ST,SF,94107,B03,29,2425,3,3,3,true,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7637357276639, -122.398580416512)",131050323-E29 +120690291,E34,12022983,Water Rescue,03/09/2012,03/09/2012,03/09/2012 06:12:29 PM,03/09/2012 06:14:24 PM,03/09/2012 06:17:35 PM,04/25/2016 01:59:45 PM,03/09/2012 06:27:03 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:28:46 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,Fire,1,ENGINE,5,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",120690291-E34 +113010142,E14,11099805,Gas Leak (Natural and LP Gases),10/28/2011,10/28/2011,10/28/2011 10:51:27 AM,10/28/2011 10:53:28 AM,10/28/2011 10:53:55 AM,10/28/2011 10:55:47 AM,10/28/2011 10:57:10 AM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 11:06:24 AM,500 Block of 33RD AVE,SF,94121,B07,14,7245,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7787282416429, -122.493301622886)",113010142-E14 +111730009,T02,11056929,Outside Fire,06/22/2011,06/21/2011,06/22/2011 12:25:16 AM,06/22/2011 12:25:16 AM,06/22/2011 12:25:38 AM,06/22/2011 12:27:23 AM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 12:30:02 AM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,false,,1,TRUCK,5,1,3,North Beach,"(37.8081576930541, -122.412496867032)",111730009-T02 +120170071,E31,12005631,Traffic Collision,01/17/2012,01/17/2012,01/17/2012 08:09:16 AM,01/17/2012 08:12:17 AM,01/17/2012 08:12:31 AM,01/17/2012 08:14:19 AM,01/17/2012 08:15:55 AM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 08:16:29 AM,16TH AV/GEARY BL,SF,94118,B07,31,7153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.780528533552, -122.47508357879)",120170071-E31 +110630439,T07,11020916,Alarms,03/04/2011,03/04/2011,03/04/2011 11:45:27 PM,03/04/2011 11:45:27 PM,03/04/2011 11:46:18 PM,03/04/2011 11:47:54 PM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Other,03/04/2011 11:48:24 PM,17TH ST/VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7632997692, -122.421731523653)",110630439-T07 +111760366,2R01,11058169,,06/25/2011,06/25/2011,06/25/2011 08:59:56 PM,06/25/2011 09:02:48 PM,06/25/2011 09:03:44 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 09:10:43 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,false,,1,ADMIN,0,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",111760366-2R01 +110320145,T07,11010459,Alarms,02/01/2011,02/01/2011,02/01/2011 12:04:37 PM,02/01/2011 12:04:37 PM,02/01/2011 12:05:23 PM,02/01/2011 12:06:37 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,02/01/2011 12:08:53 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",110320145-T07 +121650148,E11,12054694,Structure Fire,06/13/2012,06/13/2012,06/13/2012 12:01:43 PM,06/13/2012 12:03:29 PM,06/13/2012 12:04:28 PM,06/13/2012 12:05:53 PM,06/13/2012 12:08:43 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/13/2012 12:12:02 PM,400 Block of ARLINGTON ST,SF,94131,B06,26,8127,3,3,3,true,Fire,1,ENGINE,2,6,8,Glen Park,"(37.7352138289885, -122.429302522016)",121650148-E11 +103030325,E09,10096911,Structure Fire,10/30/2010,10/30/2010,10/30/2010 09:27:32 PM,10/30/2010 09:28:54 PM,10/30/2010 09:29:09 PM,10/30/2010 09:32:32 PM,10/30/2010 09:34:02 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 10:11:38 PM,HOLLADAY AV/YORK ST,SF,94110,B06,9,5672,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7464741474185, -122.405213959019)",103030325-E09 +121190348,E39,12039624,Vehicle Fire,04/28/2012,04/28/2012,04/28/2012 09:36:06 PM,04/28/2012 09:36:54 PM,04/28/2012 09:37:02 PM,04/28/2012 09:38:12 PM,04/28/2012 09:41:07 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 09:51:05 PM,PORTOLA DR/GLENVIEW DR,SF,94131,B08,20,5353,3,3,3,true,Fire,1,ENGINE,1,6,8,Twin Peaks,"(37.7469149228497, -122.447870406555)",121190348-E39 +131250135,KM07,13042199,Medical Incident,05/05/2013,05/05/2013,05/05/2013 11:38:24 AM,05/05/2013 11:40:44 AM,05/05/2013 11:42:02 AM,05/05/2013 11:42:46 AM,05/05/2013 11:46:49 AM,05/05/2013 11:58:31 AM,05/05/2013 12:07:04 PM,Code 2 Transport,05/05/2013 12:59:09 PM,1000 Block of YORK ST,SF,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7552580412955, -122.408352038428)",131250135-KM07 +120730333,56,12024351,Medical Incident,03/13/2012,03/13/2012,03/13/2012 08:19:32 PM,03/13/2012 08:20:26 PM,03/13/2012 08:20:40 PM,03/13/2012 08:21:26 PM,03/13/2012 08:28:04 PM,03/13/2012 08:43:42 PM,03/13/2012 08:49:14 PM,Code 2 Transport,03/13/2012 09:22:36 PM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",120730333-56 +122070032,AP,12068704,Other,07/25/2012,07/24/2012,07/25/2012 02:47:56 AM,07/25/2012 02:47:56 AM,07/25/2012 02:47:56 AM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Fire,07/25/2012 02:48:09 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122070032-AP +132940377,E07,13100156,Medical Incident,10/21/2013,10/21/2013,10/21/2013 10:27:57 PM,10/21/2013 10:28:23 PM,10/21/2013 10:29:06 PM,10/21/2013 10:30:11 PM,10/21/2013 10:32:32 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 10:39:00 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",132940377-E07 +111270220,E08,11042077,Structure Fire,05/07/2011,05/07/2011,05/07/2011 03:53:27 PM,05/07/2011 03:53:27 PM,05/07/2011 03:54:17 PM,05/07/2011 03:55:21 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/07/2011 03:56:56 PM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,3,3,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7802649718101, -122.40338721034)",111270220-E08 +132090077,54,13070605,Medical Incident,07/28/2013,07/27/2013,07/28/2013 07:03:12 AM,07/28/2013 07:03:41 AM,07/28/2013 07:03:49 AM,07/28/2013 07:04:06 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,04/25/2016 01:51:36 PM,7TH AV/IRVING ST,SF,94122,B08,22,7332,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7641308708366, -122.46417202271)",132090077-54 +160610992,AM08,16024245,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:56:21 AM,03/01/2016 09:56:21 AM,03/01/2016 09:57:08 AM,03/01/2016 09:57:38 AM,03/01/2016 10:01:47 AM,03/01/2016 10:18:38 AM,03/01/2016 10:34:03 AM,Code 2 Transport,03/01/2016 10:53:57 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160610992-AM08 +120700397,E07,12023442,Medical Incident,03/10/2012,03/10/2012,03/10/2012 11:08:47 PM,03/10/2012 11:09:40 PM,03/10/2012 11:09:53 PM,03/10/2012 11:10:56 PM,03/10/2012 11:14:21 PM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,Other,03/10/2012 11:17:05 PM,24TH ST/HARRISON ST,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7526285917569, -122.41189982284)",120700397-E07 +160602185,67,16023956,Medical Incident,02/29/2016,02/29/2016,02/29/2016 03:19:44 PM,02/29/2016 03:22:12 PM,02/29/2016 03:23:47 PM,02/29/2016 03:24:08 PM,02/29/2016 03:36:07 PM,02/29/2016 03:56:46 PM,02/29/2016 04:21:43 PM,Code 2 Transport,02/29/2016 05:09:08 PM,300 Block of CASTENADA AVE,San Francisco,94116,B08,39,8621,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7459543314229, -122.464661989257)",160602185-67 +160282530,74,16011155,Medical Incident,01/28/2016,01/28/2016,01/28/2016 03:54:41 PM,01/28/2016 03:56:45 PM,01/28/2016 03:58:55 PM,01/28/2016 03:59:06 PM,01/28/2016 04:08:41 PM,01/28/2016 04:21:25 PM,01/28/2016 04:39:08 PM,Code 2 Transport,01/28/2016 05:12:52 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160282530-74 +160811622,60,16032166,Medical Incident,03/21/2016,03/21/2016,03/21/2016 12:23:48 PM,03/21/2016 12:25:38 PM,03/21/2016 12:26:04 PM,03/21/2016 12:26:27 PM,03/21/2016 12:46:04 PM,03/21/2016 01:00:07 PM,03/21/2016 01:16:23 PM,Code 2 Transport,03/21/2016 01:52:34 PM,MARKET ST/3RD ST,San Francisco,94103,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",160811622-60 +131600090,T02,13054278,Alarms,06/09/2013,06/09/2013,06/09/2013 09:09:48 AM,06/09/2013 09:11:15 AM,06/09/2013 09:11:20 AM,06/09/2013 09:12:27 AM,06/09/2013 09:15:09 AM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/09/2013 09:22:59 AM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",131600090-T02 +131340066,B04,13045112,Structure Fire,05/14/2013,05/13/2013,05/14/2013 07:25:27 AM,05/14/2013 07:26:39 AM,05/14/2013 07:26:49 AM,05/14/2013 07:28:07 AM,05/14/2013 07:30:51 AM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/14/2013 07:33:08 AM,2000 Block of UNION ST,SF,94123,B04,16,3443,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.7974567249549, -122.433036469991)",131340066-B04 +160421865,79,16016875,Medical Incident,02/11/2016,02/11/2016,02/11/2016 01:12:47 PM,02/11/2016 01:14:59 PM,02/11/2016 01:15:40 PM,02/11/2016 01:15:51 PM,02/11/2016 01:18:27 PM,02/11/2016 01:30:16 PM,02/11/2016 01:44:37 PM,Code 2 Transport,02/11/2016 02:06:49 PM,400 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",160421865-79 +132920266,E11,13099440,Structure Fire,10/19/2013,10/19/2013,10/19/2013 04:55:02 PM,10/19/2013 04:56:01 PM,10/19/2013 04:56:12 PM,10/19/2013 04:56:51 PM,10/19/2013 04:58:44 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 05:01:36 PM,CASTRO ST/24TH ST,SF,94114,B06,24,5521,3,3,3,true,Alarm,1,ENGINE,3,6,8,Noe Valley,"(37.7513037332512, -122.434089515984)",132920266-E11 +130810382,88,13027294,Medical Incident,03/22/2013,03/22/2013,03/22/2013 11:16:02 PM,03/22/2013 11:20:54 PM,03/22/2013 11:21:15 PM,03/22/2013 11:21:30 PM,03/22/2013 11:39:13 PM,03/22/2013 11:42:42 PM,03/22/2013 11:54:48 PM,Code 2 Transport,03/23/2013 12:38:17 AM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",130810382-88 +160452983,62,16018260,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:50:29 PM,02/14/2016 07:51:32 PM,02/14/2016 07:51:56 PM,02/14/2016 07:52:10 PM,02/14/2016 08:00:57 PM,02/14/2016 08:25:53 PM,02/14/2016 08:57:05 PM,Code 2 Transport,02/14/2016 09:20:18 PM,1300 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",160452983-62 +122060057,AR1,12068386,Vehicle Fire,07/24/2012,07/23/2012,07/24/2012 06:12:34 AM,07/24/2012 06:14:11 AM,07/24/2012 06:14:26 AM,07/24/2012 06:26:43 AM,07/24/2012 06:38:15 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 06:25:30 AM,1300 Block of UNDERWOOD AVE,SF,94124,B10,17,6653,3,3,3,false,Fire,1,INVESTIGATION,3,10,10,Bayview Hunters Point,"(37.7271809770545, -122.387135707387)",122060057-AR1 +121330101,RS1,12044198,Medical Incident,05/12/2012,05/12/2012,05/12/2012 08:52:41 AM,05/12/2012 08:53:34 AM,05/12/2012 08:53:56 AM,05/12/2012 08:54:29 AM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 08:54:33 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7820387146172, -122.40232147638)",121330101-RS1 +160920440,88,16036318,Medical Incident,04/01/2016,03/31/2016,04/01/2016 05:35:32 AM,04/01/2016 05:36:31 AM,04/01/2016 05:36:56 AM,04/01/2016 05:37:03 AM,04/01/2016 05:52:22 AM,04/01/2016 06:06:03 AM,04/01/2016 06:23:20 AM,Code 2 Transport,04/01/2016 07:09:07 AM,1500 Block of OWENS ST,San Francisco,94158,B03,4,2265,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7688607878339, -122.395396036624)",160920440-88 +160661286,55,16026360,Medical Incident,03/06/2016,03/06/2016,03/06/2016 11:47:22 AM,03/06/2016 11:47:22 AM,03/06/2016 11:47:55 AM,03/06/2016 11:49:02 AM,03/06/2016 11:54:47 AM,03/06/2016 01:05:08 PM,03/06/2016 01:16:50 PM,Code 2 Transport,03/06/2016 01:44:54 PM,GEARY BL/GOUGH ST,San Francisco,94109,B04,3,3222,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7853346212295, -122.4246870426)",160661286-55 +113010423,T03,11100036,Medical Incident,10/28/2011,10/28/2011,10/28/2011 11:51:31 PM,10/28/2011 11:52:34 PM,10/28/2011 11:53:25 PM,10/28/2011 11:54:51 PM,10/28/2011 11:56:23 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/29/2011 12:04:59 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,,1,TRUCK,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113010423-T03 +123410134,D3,12113740,Structure Fire,12/06/2012,12/06/2012,12/06/2012 09:38:24 AM,12/06/2012 09:39:46 AM,12/06/2012 09:41:13 AM,04/25/2016 01:55:27 PM,12/06/2012 09:42:46 AM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/06/2012 09:46:01 AM,900 Block of MARIPOSA ST,SF,94107,B03,29,2436,3,3,3,false,Alarm,1,CHIEF,1,3,10,Potrero Hill,"(37.7639837100324, -122.393446448966)",123410134-D3 +102320333,65,10073140,Medical Incident,08/20/2010,08/20/2010,08/20/2010 08:25:35 PM,08/20/2010 08:26:19 PM,08/20/2010 08:26:47 PM,08/20/2010 08:27:37 PM,08/20/2010 08:32:38 PM,08/20/2010 08:40:21 PM,08/20/2010 09:17:19 PM,Code 2 Transport,08/20/2010 09:39:52 PM,200 Block of HOLYOKE ST,SF,94134,B10,42,6342,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7281264834061, -122.409351194321)",102320333-65 +102650038,B02,10083764,Alarms,09/22/2010,09/21/2010,09/22/2010 04:47:49 AM,09/22/2010 04:48:37 AM,09/22/2010 04:48:52 AM,09/22/2010 04:51:10 AM,09/22/2010 04:54:18 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 05:03:29 AM,300 Block of DOLORES ST,SF,94110,B02,6,5251,3,3,3,false,,1,CHIEF,3,2,8,Mission,"(37.7635158382169, -122.426118705944)",102650038-B02 +122120047,88,12070266,Medical Incident,07/30/2012,07/29/2012,07/30/2012 05:08:27 AM,07/30/2012 05:08:56 AM,07/30/2012 05:11:06 AM,07/30/2012 05:15:05 AM,07/30/2012 05:25:54 AM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/30/2012 05:26:13 AM,0 Block of WATCHMAN WAY,SF,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7553520145946, -122.395257871762)",122120047-88 +121190097,E07,12039410,Structure Fire,04/28/2012,04/28/2012,04/28/2012 09:01:02 AM,04/28/2012 09:01:02 AM,04/28/2012 09:01:10 AM,04/28/2012 09:02:29 AM,04/28/2012 09:06:10 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,No Merit,04/28/2012 09:06:33 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,true,Alarm,1,ENGINE,2,2,6,Mission,"(37.7726641818375, -122.418338317697)",121190097-E07 +102660263,E28,10084236,Medical Incident,09/23/2010,09/23/2010,09/23/2010 05:03:24 PM,09/23/2010 05:04:05 PM,09/23/2010 05:06:10 PM,09/23/2010 05:07:39 PM,09/23/2010 05:09:46 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 05:25:45 PM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",102660263-E28 +113530312,E43,11117308,Medical Incident,12/19/2011,12/19/2011,12/19/2011 07:32:56 PM,12/19/2011 07:33:53 PM,12/19/2011 07:34:28 PM,12/19/2011 07:37:12 PM,12/19/2011 07:37:27 PM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 07:50:35 PM,0 Block of CORDOVA ST,SF,94112,B09,43,6224,E,E,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7128542066496, -122.43602367503)",113530312-E43 +160520346,AM24,16020675,Medical Incident,02/21/2016,02/20/2016,02/21/2016 02:13:43 AM,02/21/2016 02:14:17 AM,02/21/2016 02:16:23 AM,02/21/2016 02:16:23 AM,02/21/2016 02:18:09 AM,02/21/2016 02:42:59 AM,02/21/2016 02:45:27 AM,Code 3 Transport,02/21/2016 03:45:28 AM,1500 Block of VAN NESS AVE,San Francisco,94109,B04,38,3155,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Western Addition,"(37.7898667563619, -122.422402454582)",160520346-AM24 +121720166,B06,12057096,Structure Fire,06/20/2012,06/20/2012,06/20/2012 12:29:21 PM,06/20/2012 12:31:52 PM,06/20/2012 12:33:41 PM,06/20/2012 12:34:33 PM,06/20/2012 12:36:03 PM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,Other,06/20/2012 12:42:12 PM,3900 Block of 23RD ST,SF,94114,B06,11,5514,3,3,3,false,Fire,1,CHIEF,2,6,8,Noe Valley,"(37.7530369299091, -122.430910430767)",121720166-B06 +111380104,RC1,11045815,Medical Incident,05/18/2011,05/18/2011,05/18/2011 09:50:07 AM,05/18/2011 09:51:16 AM,05/18/2011 09:51:30 AM,04/25/2016 02:04:34 PM,05/18/2011 09:54:59 AM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 10:14:54 AM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,,1,RESCUE CAPTAIN,2,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",111380104-RC1 +103370088,T10,10107727,Structure Fire,12/03/2010,12/03/2010,12/03/2010 09:19:04 AM,12/03/2010 09:19:35 AM,12/03/2010 09:19:55 AM,12/03/2010 09:21:48 AM,12/03/2010 09:25:07 AM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/03/2010 09:29:19 AM,400 Block of 7TH AVE,SF,94118,B07,31,7131,3,3,3,false,,1,TRUCK,4,7,1,Inner Richmond,"(37.7800008161634, -122.465350847748)",103370088-T10 +160631359,85,16025031,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:57:04 AM,03/03/2016 10:58:51 AM,03/03/2016 11:01:28 AM,03/03/2016 11:01:51 AM,03/03/2016 11:07:33 AM,03/03/2016 11:31:49 AM,03/03/2016 11:37:27 AM,Code 2 Transport,03/03/2016 11:59:53 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",160631359-85 +110020241,E17,11000717,Smoke Investigation (Outside),01/02/2011,01/02/2011,01/02/2011 05:04:50 PM,01/02/2011 05:08:04 PM,01/02/2011 05:08:16 PM,01/02/2011 05:10:07 PM,01/02/2011 05:10:57 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Fire,01/02/2011 05:14:40 PM,INGALLS ST/PALOU AV,SF,94124,B10,17,6572,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7297375529835, -122.38343118495)",110020241-E17 +123190189,KM02,12106070,Medical Incident,11/14/2012,11/14/2012,11/14/2012 01:09:15 PM,11/14/2012 01:09:52 PM,11/14/2012 01:10:03 PM,11/14/2012 01:11:00 PM,11/14/2012 01:20:03 PM,11/14/2012 01:37:58 PM,11/14/2012 01:45:52 PM,Code 2 Transport,11/14/2012 02:40:17 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",123190189-KM02 +123470076,79,12115929,Medical Incident,12/12/2012,12/11/2012,12/12/2012 07:44:26 AM,12/12/2012 07:45:56 AM,12/12/2012 07:46:16 AM,12/12/2012 07:46:37 AM,12/12/2012 07:50:12 AM,12/12/2012 07:58:23 AM,12/12/2012 08:13:33 AM,Code 2 Transport,12/12/2012 08:37:22 AM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7840781681969, -122.41852472124)",123470076-79 +120230180,E11,12007790,Medical Incident,01/23/2012,01/23/2012,01/23/2012 12:10:07 PM,01/23/2012 12:11:03 PM,01/23/2012 12:11:23 PM,01/23/2012 12:12:12 PM,01/23/2012 12:13:48 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 12:21:01 PM,1500 Block of VALENCIA ST,SF,94110,B06,11,5611,E,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7473464894373, -122.420273560089)",120230180-E11 +160350830,79,16013724,Medical Incident,02/04/2016,02/04/2016,02/04/2016 08:34:40 AM,02/04/2016 08:35:02 AM,02/04/2016 08:35:14 AM,02/04/2016 08:35:21 AM,02/04/2016 08:44:55 AM,02/04/2016 08:56:53 AM,02/04/2016 09:06:27 AM,Code 2 Transport,02/04/2016 09:26:49 AM,1700 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7822796519681, -122.477904660461)",160350830-79 +160543768,70,16021775,Medical Incident,02/23/2016,02/23/2016,02/23/2016 09:03:24 PM,02/23/2016 09:04:32 PM,02/23/2016 09:06:17 PM,02/23/2016 09:07:00 PM,02/23/2016 09:11:58 PM,02/23/2016 09:26:08 PM,02/23/2016 09:33:22 PM,Code 2 Transport,02/23/2016 10:04:03 PM,STANYAN ST/HAIGHT ST,San Francisco,94117,B05,12,4553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",160543768-70 +140720128,KM14,14024269,Medical Incident,03/13/2014,03/13/2014,03/13/2014 09:43:39 AM,03/13/2014 09:44:49 AM,03/13/2014 09:45:03 AM,03/13/2014 09:49:28 AM,03/13/2014 09:49:56 AM,03/13/2014 10:08:37 AM,03/13/2014 10:19:53 AM,Code 2 Transport,03/13/2014 10:59:21 AM,900 Block of MASON ST,SAN FRANCISCO,94108,B01,41,1414,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",140720128-KM14 +102280145,E36,10071749,Traffic Collision,08/16/2010,08/16/2010,08/16/2010 11:28:58 AM,08/16/2010 11:29:10 AM,08/16/2010 11:30:24 AM,08/16/2010 11:30:58 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/16/2010 11:40:50 AM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,2,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",102280145-E36 +102780333,65,10088501,Medical Incident,10/05/2010,10/05/2010,10/05/2010 07:15:10 PM,10/05/2010 07:15:38 PM,10/05/2010 07:16:11 PM,10/05/2010 07:16:20 PM,10/05/2010 07:24:53 PM,10/05/2010 07:42:00 PM,04/25/2016 02:08:15 PM,Code 2 Transport,10/05/2010 08:00:31 PM,500 Block of MARKET ST,SF,94105,B03,13,2143,2,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",102780333-65 +130200110,E01,13006809,Medical Incident,01/20/2013,01/20/2013,01/20/2013 09:46:23 AM,01/20/2013 09:47:04 AM,01/20/2013 09:47:32 AM,01/20/2013 09:47:40 AM,01/20/2013 09:50:12 AM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/20/2013 10:01:00 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",130200110-E01 +110380127,E32,11012537,Medical Incident,02/07/2011,02/07/2011,02/07/2011 09:19:20 AM,02/07/2011 09:20:21 AM,02/07/2011 09:20:59 AM,02/07/2011 09:22:44 AM,02/07/2011 09:25:53 AM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,Other,02/07/2011 09:39:54 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",110380127-E32 +160322208,85,16012620,Medical Incident,02/01/2016,02/01/2016,02/01/2016 03:07:47 PM,02/01/2016 03:09:49 PM,02/01/2016 03:10:03 PM,02/01/2016 03:10:12 PM,02/01/2016 03:21:37 PM,02/01/2016 03:39:47 PM,02/01/2016 03:55:24 PM,Code 2 Transport,02/01/2016 04:27:34 PM,500 Block of MISSOURI ST,San Francisco,94107,B10,37,252,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7591673695367, -122.396100402003)",160322208-85 +102370351,E41,10074852,Other,08/25/2010,08/25/2010,08/25/2010 07:22:39 PM,08/25/2010 07:23:12 PM,08/25/2010 07:23:21 PM,08/25/2010 07:24:17 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,No Merit,08/25/2010 07:31:56 PM,2100 Block of LARKIN ST,SF,94109,B01,41,1631,3,3,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7975625827342, -122.420477453586)",102370351-E41 +132230284,E17,13075406,Medical Incident,08/11/2013,08/11/2013,08/11/2013 06:46:47 PM,08/11/2013 06:48:01 PM,08/11/2013 06:49:35 PM,08/11/2013 06:51:21 PM,08/11/2013 06:56:59 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 07:15:00 PM,4600 Block of 3RD ST,SF,94124,B10,17,6516,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7360180524544, -122.390409391697)",132230284-E17 +102760211,E01,10087751,Medical Incident,10/03/2010,10/03/2010,10/03/2010 01:40:05 PM,10/03/2010 01:40:33 PM,10/03/2010 01:41:01 PM,10/03/2010 01:42:59 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 01:50:07 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",102760211-E01 +112650377,63,11087658,Medical Incident,09/22/2011,09/22/2011,09/22/2011 07:44:37 PM,09/22/2011 07:45:21 PM,09/22/2011 07:45:47 PM,09/22/2011 07:46:33 PM,09/22/2011 07:55:32 PM,09/22/2011 08:21:50 PM,09/22/2011 08:41:33 PM,Code 2 Transport,09/22/2011 09:12:16 PM,600 Block of PACIFIC AVE,SF,94133,B01,13,1246,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",112650377-63 +132810411,88,13095797,Medical Incident,10/08/2013,10/08/2013,10/08/2013 11:21:43 PM,10/08/2013 11:23:13 PM,10/08/2013 11:23:53 PM,10/08/2013 11:24:01 PM,10/08/2013 11:38:06 PM,10/08/2013 11:39:13 PM,10/08/2013 11:45:57 PM,Code 2 Transport,10/09/2013 12:17:53 AM,600 Block of CLAY ST,SF,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",132810411-88 +133080064,E43,13104620,Structure Fire,11/04/2013,11/03/2013,11/04/2013 07:05:01 AM,11/04/2013 07:07:10 AM,11/04/2013 07:07:42 AM,04/25/2016 01:49:56 PM,11/04/2013 07:08:45 AM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/04/2013 07:13:05 AM,1100 Block of OCEAN AV,SF,94112,B09,15,8472,3,3,3,false,Alarm,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7234871655198, -122.454662311927)",133080064-E43 +132090104,B10,13070629,Alarms,07/28/2013,07/28/2013,07/28/2013 09:02:50 AM,07/28/2013 09:04:43 AM,07/28/2013 09:05:17 AM,07/28/2013 09:06:47 AM,07/28/2013 09:09:13 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/28/2013 09:14:41 AM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",132090104-B10 +102710094,E42,10085922,Structure Fire,09/28/2010,09/28/2010,09/28/2010 08:29:11 AM,09/28/2010 08:30:30 AM,09/28/2010 08:30:52 AM,09/28/2010 08:31:58 AM,09/28/2010 08:34:14 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 09:21:11 AM,1500 Block of SHAFTER AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.730553557091, -122.389751029234)",102710094-E42 +131010043,82,13033845,Medical Incident,04/11/2013,04/10/2013,04/11/2013 05:22:41 AM,04/11/2013 05:24:05 AM,04/11/2013 05:24:19 AM,04/11/2013 05:24:28 AM,04/11/2013 05:33:48 AM,04/11/2013 05:45:38 AM,04/11/2013 06:24:59 AM,Code 2 Transport,04/11/2013 06:27:43 AM,500 Block of MINNA ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7800574377607, -122.408673540372)",131010043-82 +101320349,T03,10041222,Alarms,05/12/2010,05/12/2010,05/12/2010 08:40:35 PM,05/12/2010 08:41:44 PM,05/12/2010 08:42:09 PM,05/12/2010 08:43:21 PM,05/12/2010 08:45:11 PM,04/25/2016 03:23:18 PM,04/25/2016 03:23:18 PM,Other,05/12/2010 08:55:37 PM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,false,,1,TRUCK,2,1,3,Nob Hill,"(37.7885472961758, -122.414374370709)",101320349-T03 +132310270,E18,13078072,Medical Incident,08/19/2013,08/19/2013,08/19/2013 03:44:57 PM,08/19/2013 03:47:12 PM,08/19/2013 03:47:29 PM,08/19/2013 03:48:45 PM,08/19/2013 03:50:16 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 04:12:03 PM,2000 Block of 30TH AVE,SF,94116,B08,18,7516,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7490607246002, -122.487862048225)",132310270-E18 +131030339,B01,13034723,Alarms,04/13/2013,04/13/2013,04/13/2013 09:05:18 PM,04/13/2013 09:06:24 PM,04/13/2013 09:06:37 PM,04/25/2016 01:53:20 PM,04/13/2013 09:09:34 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/13/2013 09:16:01 PM,800 Block of CALIFORNIA ST,SF,94108,B01,2,1356,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7922694289836, -122.407814772426)",131030339-B01 +121570324,93,12052073,Medical Incident,06/05/2012,06/05/2012,06/05/2012 08:30:29 PM,06/05/2012 08:34:29 PM,06/05/2012 08:34:52 PM,06/05/2012 08:35:13 PM,06/05/2012 08:56:31 PM,06/05/2012 08:59:55 PM,06/05/2012 09:19:51 PM,Code 2 Transport,06/05/2012 09:43:05 PM,0 Block of CYRIL MAGNIN ST,SF,94102,B03,1,1366,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",121570324-93 +160270459,65,16010550,Medical Incident,01/27/2016,01/26/2016,01/27/2016 06:21:28 AM,01/27/2016 06:24:10 AM,01/27/2016 06:24:30 AM,01/27/2016 06:24:40 AM,01/27/2016 06:27:49 AM,01/27/2016 06:40:59 AM,01/27/2016 06:56:53 AM,Code 2 Transport,01/27/2016 07:41:33 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7906221863031, -122.413101980649)",160270459-65 +140240297,E03,14008269,Alarms,01/24/2014,01/24/2014,01/24/2014 04:06:15 PM,01/24/2014 04:06:15 PM,01/24/2014 04:06:49 PM,01/24/2014 04:06:57 PM,01/24/2014 04:11:01 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Fire,01/24/2014 04:15:55 PM,GRANT AV/POST ST,SF,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",140240297-E03 +103590333,72,10115355,Medical Incident,12/25/2010,12/25/2010,12/25/2010 09:26:35 PM,12/25/2010 09:27:26 PM,12/25/2010 09:27:42 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,04/25/2016 02:06:55 PM,300 Block of WHEELER AVE,SF,94134,B10,44,6271,3,3,3,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7113240203215, -122.400039856194)",103590333-72 +121280074,E08,12042505,Alarms,05/07/2012,05/07/2012,05/07/2012 08:05:22 AM,05/07/2012 08:05:22 AM,05/07/2012 08:06:25 AM,05/07/2012 08:08:26 AM,05/07/2012 08:12:37 AM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 08:13:32 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",121280074-E08 +130680409,B02,13022872,Alarms,03/09/2013,03/09/2013,03/09/2013 11:07:17 PM,03/09/2013 11:08:29 PM,03/09/2013 11:08:36 PM,03/09/2013 11:09:11 PM,03/09/2013 11:12:30 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/09/2013 11:19:12 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",130680409-B02 +131730070,77,13058609,Medical Incident,06/22/2013,06/21/2013,06/22/2013 07:24:07 AM,06/22/2013 07:24:54 AM,06/22/2013 07:25:17 AM,06/22/2013 07:26:44 AM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/22/2013 07:36:10 AM,500 Block of 14TH ST,SF,94103,B02,6,5214,3,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7678894397284, -122.425439589883)",131730070-77 +140380321,E07,14012945,Electrical Hazard,02/07/2014,02/07/2014,02/07/2014 07:20:31 PM,02/07/2014 07:22:06 PM,02/07/2014 07:22:13 PM,02/07/2014 07:23:39 PM,02/07/2014 07:26:48 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 08:17:54 PM,2800 Block of HARRISON ST,SF,94110,B06,7,5533,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7518270551886, -122.411891999747)",140380321-E07 +131000098,55,13033535,Medical Incident,04/10/2013,04/10/2013,04/10/2013 09:36:38 AM,04/10/2013 09:38:42 AM,04/10/2013 09:42:51 AM,04/10/2013 09:43:07 AM,04/10/2013 09:52:44 AM,04/10/2013 10:11:49 AM,04/10/2013 10:42:06 AM,Code 2 Transport,04/10/2013 11:06:26 AM,MISSION ST/GENEVA AV,SF,94112,B09,43,6175,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",131000098-55 +120250360,E06,12008548,Medical Incident,01/25/2012,01/25/2012,01/25/2012 08:45:34 PM,01/25/2012 08:47:52 PM,01/25/2012 08:48:32 PM,01/25/2012 08:49:37 PM,01/25/2012 08:51:32 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 09:00:26 PM,3900 Block of 18TH ST,SF,94114,B05,6,5417,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7611431684857, -122.431688789383)",120250360-E06 +120780332,84,12026001,Medical Incident,03/18/2012,03/18/2012,03/18/2012 07:01:28 PM,03/18/2012 07:01:40 PM,03/18/2012 07:03:41 PM,03/18/2012 07:04:03 PM,03/18/2012 07:09:53 PM,03/18/2012 07:31:09 PM,03/18/2012 07:37:49 PM,Code 2 Transport,03/18/2012 07:52:19 PM,SUTTER ST/POWELL ST,SF,94108,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",120780332-84 +80270203,B09,8008644,Alarms,01/27/2008,01/27/2008,01/27/2008 12:35:43 PM,01/27/2008 12:42:26 PM,01/27/2008 12:42:51 PM,01/27/2008 12:44:25 PM,01/27/2008 12:49:23 PM,04/25/2016 03:35:49 PM,04/25/2016 03:35:49 PM,Fire,01/27/2008 12:52:40 PM,5700 Block of MISSION ST,SF,94112,B09,33,6212,3,3,3,false,,1,CHIEF,2,9,11,Excelsior,"(37.709762526111, -122.449674980499)",080270203-B09 +160190497,83,16007488,Medical Incident,01/19/2016,01/18/2016,01/19/2016 06:21:42 AM,01/19/2016 06:23:58 AM,01/19/2016 06:24:43 AM,01/19/2016 06:24:52 AM,01/19/2016 06:27:53 AM,01/19/2016 06:42:05 AM,01/19/2016 06:54:52 AM,Code 2 Transport,01/19/2016 07:26:26 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",160190497-83 +132710003,RC1,13091912,Medical Incident,09/28/2013,09/27/2013,09/28/2013 12:06:23 AM,09/28/2013 12:06:52 AM,09/28/2013 12:07:35 AM,09/28/2013 12:08:29 AM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/28/2013 12:11:15 AM,29TH ST/CHURCH ST,SF,94131,B06,11,5563,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,6,8,Noe Valley,"(37.7436995806296, -122.42667038152)",132710003-RC1 +131290134,KM09,13043562,Medical Incident,05/09/2013,05/09/2013,05/09/2013 11:14:35 AM,05/09/2013 11:17:14 AM,05/09/2013 11:17:29 AM,05/09/2013 11:18:39 AM,05/09/2013 11:31:35 AM,05/09/2013 11:55:49 AM,05/09/2013 12:21:16 PM,Code 2 Transport,05/09/2013 12:28:42 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131290134-KM09 +132110336,81,13071508,Medical Incident,07/30/2013,07/30/2013,07/30/2013 11:52:29 PM,07/30/2013 11:53:17 PM,07/30/2013 11:53:31 PM,07/30/2013 11:53:45 PM,07/30/2013 11:59:08 PM,07/31/2013 12:24:38 AM,07/31/2013 01:03:38 AM,Code 2 Transport,07/31/2013 01:39:44 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",132110336-81 +131420026,55,13048010,Medical Incident,05/22/2013,05/21/2013,05/22/2013 02:38:44 AM,05/22/2013 02:40:03 AM,05/22/2013 02:40:10 AM,05/22/2013 02:40:28 AM,05/22/2013 02:48:20 AM,05/22/2013 03:01:04 AM,05/22/2013 03:11:36 AM,Code 2 Transport,05/22/2013 03:55:36 AM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",131420026-55 +110080286,FB1,11002768,Administrative,01/08/2011,01/08/2011,01/08/2011 06:34:24 PM,01/08/2011 06:34:54 PM,01/08/2011 06:35:18 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/08/2011 06:35:41 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,false,,1,SUPPORT,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",110080286-FB1 +160510720,65,16020388,Medical Incident,02/20/2016,02/20/2016,02/20/2016 08:05:58 AM,02/20/2016 08:06:25 AM,02/20/2016 08:06:50 AM,02/20/2016 08:06:59 AM,02/20/2016 08:13:40 AM,02/20/2016 08:24:20 AM,02/20/2016 08:24:20 AM,Code 2 Transport,02/20/2016 09:16:40 AM,1000 Block of SHOTWELL ST,San Francisco,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7516425997951, -122.41502434397)",160510720-65 +102410326,E42,10076144,Medical Incident,08/29/2010,08/29/2010,08/29/2010 08:51:56 PM,08/29/2010 08:52:30 PM,08/29/2010 08:52:47 PM,08/29/2010 08:53:36 PM,08/29/2010 08:55:59 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/29/2010 09:08:51 PM,600 Block of UNIVERSITY ST,SF,94134,B09,42,6344,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7220752950278, -122.412154949905)",102410326-E42 +102630341,E06,10083342,Medical Incident,09/20/2010,09/20/2010,09/20/2010 07:42:54 PM,09/20/2010 07:44:59 PM,09/20/2010 07:47:37 PM,09/20/2010 07:48:36 PM,09/20/2010 07:50:05 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 07:55:47 PM,200 Block of SANCHEZ ST,SF,94114,B02,6,5231,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7651165803072, -122.431022802867)",102630341-E06 +113020197,92,11100206,Medical Incident,10/29/2011,10/29/2011,10/29/2011 12:24:38 PM,10/29/2011 12:24:58 PM,10/29/2011 12:25:12 PM,10/29/2011 12:26:13 PM,10/29/2011 12:32:44 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/29/2011 12:32:46 PM,500 Block of JOHN MUIR DR,SF,94132,B08,19,8714,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",113020197-92 +130370122,KM01,13012644,Medical Incident,02/06/2013,02/06/2013,02/06/2013 10:38:27 AM,02/06/2013 10:39:02 AM,02/06/2013 10:39:16 AM,02/06/2013 10:39:57 AM,02/06/2013 10:46:10 AM,02/06/2013 11:09:22 AM,02/06/2013 11:20:39 AM,Code 2 Transport,02/06/2013 12:08:20 PM,1800 Block of GOLDEN GATE AVE,SF,94115,B05,21,4242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Western Addition,"(37.7784597347567, -122.44105052615)",130370122-KM01 +130870298,E02,13029115,Alarms,03/28/2013,03/28/2013,03/28/2013 06:33:48 PM,03/28/2013 06:33:48 PM,03/28/2013 06:34:06 PM,03/28/2013 06:35:58 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 06:36:38 PM,SANSOME ST/SACRAMENTO ST,SF,94111,B01,13,1166,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.793987062413, -122.401314505437)",130870298-E02 +122790032,E08,12092106,Medical Incident,10/05/2012,10/04/2012,10/05/2012 01:51:08 AM,10/05/2012 01:51:27 AM,10/05/2012 01:52:23 AM,04/25/2016 01:56:27 PM,10/05/2012 01:56:20 AM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/05/2012 02:02:38 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7753428666813, -122.403307133032)",122790032-E08 +160501576,85,16020070,Medical Incident,02/19/2016,02/19/2016,02/19/2016 12:25:54 PM,02/19/2016 12:25:54 PM,02/19/2016 12:26:40 PM,02/19/2016 12:27:29 PM,02/19/2016 12:37:55 PM,02/19/2016 01:15:52 PM,02/19/2016 01:48:18 PM,Code 2 Transport,02/19/2016 02:55:11 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160501576-85 +110620342,E07,11020505,Medical Incident,03/03/2011,03/03/2011,03/03/2011 08:25:26 PM,03/03/2011 08:25:58 PM,03/03/2011 08:26:11 PM,03/03/2011 08:27:40 PM,03/03/2011 08:29:16 PM,04/25/2016 02:05:48 PM,04/25/2016 02:05:48 PM,Other,03/03/2011 08:43:52 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",110620342-E07 +160790631,52,16031320,Medical Incident,03/19/2016,03/18/2016,03/19/2016 06:19:07 AM,03/19/2016 06:19:07 AM,03/19/2016 06:22:26 AM,03/19/2016 06:22:36 AM,03/19/2016 06:23:53 AM,03/19/2016 06:34:04 AM,03/19/2016 06:56:22 AM,Code 3 Transport,03/19/2016 07:17:36 AM,23RD ST/UTAH ST,San Francisco,94110,B10,37,2554,A,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.754337232305, -122.405454171915)",160790631-52 +160920487,53,16036327,Medical Incident,04/01/2016,03/31/2016,04/01/2016 06:14:22 AM,04/01/2016 06:16:17 AM,04/01/2016 06:17:00 AM,04/01/2016 06:17:09 AM,04/01/2016 06:31:38 AM,04/01/2016 06:42:05 AM,04/01/2016 06:57:03 AM,Code 2 Transport,04/01/2016 07:38:06 AM,400 Block of THE EMBARCADERO,San Francisco,94111,B01,13,907,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",160920487-53 +121620357,T01,12053782,Structure Fire,06/10/2012,06/10/2012,06/10/2012 07:34:41 PM,06/10/2012 07:34:42 PM,06/10/2012 07:34:51 PM,06/10/2012 07:36:16 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 07:38:56 PM,500 Block of MARKET ST,SF,94105,B03,1,2144,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",121620357-T01 +130490291,88,13016803,Medical Incident,02/18/2013,02/18/2013,02/18/2013 06:29:19 PM,02/18/2013 06:32:39 PM,02/18/2013 06:33:14 PM,02/18/2013 06:33:51 PM,02/18/2013 06:44:56 PM,02/18/2013 06:58:34 PM,04/25/2016 01:54:13 PM,Code 2 Transport,02/18/2013 07:21:05 PM,900 Block of HAYES ST,SF,94117,B05,21,3631,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7757844466813, -122.432025160558)",130490291-88 +112520287,E03,11083170,Medical Incident,09/09/2011,09/09/2011,09/09/2011 04:00:57 PM,09/09/2011 04:00:57 PM,09/09/2011 04:02:23 PM,09/09/2011 04:03:56 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,No Merit,09/09/2011 04:06:59 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",112520287-E03 +110320226,E43,11010523,Medical Incident,02/01/2011,02/01/2011,02/01/2011 03:08:03 PM,02/01/2011 03:08:21 PM,02/01/2011 03:08:59 PM,02/01/2011 03:09:59 PM,02/01/2011 03:12:31 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/01/2011 03:19:34 PM,4400 Block of MISSION ST,SF,94112,B09,43,6116,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7263839435754, -122.433431238863)",110320226-E43 +133230150,B04,13109614,Gas Leak (Natural and LP Gases),11/19/2013,11/19/2013,11/19/2013 09:56:13 AM,11/19/2013 09:58:24 AM,11/19/2013 09:58:49 AM,11/19/2013 10:00:25 AM,11/19/2013 10:04:38 AM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 10:18:26 AM,2000 Block of GREENWICH ST,SF,94123,B04,16,3444,3,3,3,false,Alarm,1,CHIEF,2,4,2,Marina,"(37.7993194442958, -122.433413524677)",133230150-B04 +111250165,E14,11041343,Medical Incident,05/05/2011,05/05/2011,05/05/2011 11:59:03 AM,05/05/2011 12:00:52 PM,05/05/2011 12:01:19 PM,05/05/2011 12:02:38 PM,05/05/2011 12:03:39 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 12:25:05 PM,300 Block of 23RD AVE,SF,94121,B07,14,7175,2,2,2,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7811523792502, -122.4827324457)",111250165-E14 +110760333,RS1,11025101,Medical Incident,03/17/2011,03/17/2011,03/17/2011 05:51:53 PM,03/17/2011 05:52:33 PM,03/17/2011 05:53:48 PM,03/17/2011 05:56:15 PM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 05:58:02 PM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,2,3,3,false,,1,RESCUE SQUAD,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",110760333-RS1 +160820894,93,16032495,Traffic Collision,03/22/2016,03/22/2016,03/22/2016 09:14:35 AM,03/22/2016 09:14:35 AM,03/22/2016 09:14:49 AM,03/22/2016 09:15:10 AM,03/22/2016 09:55:52 AM,03/22/2016 09:56:35 AM,03/22/2016 10:10:44 AM,Code 2 Transport,03/22/2016 10:40:50 AM,PINE ST/PRESIDIO AV,San Francisco,94115,B04,10,4411,2,2,2,true,Non Life-threatening,1,MEDIC,4,5,2,Presidio Heights,"(37.7863022984419, -122.446610464943)",160820894-93 +120360044,RB1,12011878,Water Rescue,02/05/2012,02/04/2012,02/05/2012 02:14:33 AM,02/05/2012 02:16:33 AM,02/05/2012 02:19:26 AM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Other,02/05/2012 02:26:55 AM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,3,3,3,false,Fire,1,SUPPORT,7,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",120360044-RB1 +110030355,82,11001118,Medical Incident,01/03/2011,01/03/2011,01/03/2011 09:27:04 PM,01/03/2011 09:27:04 PM,01/03/2011 09:30:56 PM,01/03/2011 09:31:18 PM,01/03/2011 09:39:11 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,No Merit,01/03/2011 09:41:53 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",110030355-82 +160693436,AM16,16027635,Medical Incident,03/09/2016,03/09/2016,03/09/2016 08:22:03 PM,03/09/2016 08:24:28 PM,03/09/2016 08:24:49 PM,03/09/2016 08:25:41 PM,03/09/2016 08:37:13 PM,03/09/2016 08:49:30 PM,03/09/2016 09:15:03 PM,Code 2 Transport,03/09/2016 09:35:56 PM,1900 Block of 43RD AVE,San Francisco,94116,B08,23,7646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7503055397555, -122.50206418609)",160693436-AM16 +102310364,58,10072860,Medical Incident,08/19/2010,08/19/2010,08/19/2010 11:28:48 PM,08/19/2010 11:30:16 PM,08/19/2010 11:31:15 PM,08/19/2010 11:31:43 PM,08/19/2010 11:37:34 PM,08/19/2010 11:59:03 PM,08/20/2010 12:07:22 AM,Code 2 Transport,08/20/2010 12:33:34 AM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.780721312022, -122.415737767164)",102310364-58 +111720009,E17,11056581,Medical Incident,06/21/2011,06/20/2011,06/21/2011 01:23:16 AM,06/21/2011 01:23:51 AM,06/21/2011 01:24:24 AM,06/21/2011 01:25:47 AM,06/21/2011 01:26:56 AM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/21/2011 01:42:52 AM,1500 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7299273763086, -122.390314136294)",111720009-E17 +112590375,RC3,11085559,Medical Incident,09/16/2011,09/16/2011,09/16/2011 10:32:15 PM,09/16/2011 10:32:59 PM,09/16/2011 10:33:15 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/16/2011 11:11:24 PM,3100 Block of FILLMORE ST,SF,94123,B04,16,3553,3,2,2,true,,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.7987282178823, -122.43575101831)",112590375-RC3 +160723603,75,16028812,Medical Incident,03/12/2016,03/12/2016,03/12/2016 11:09:06 PM,03/12/2016 11:10:26 PM,03/12/2016 11:11:06 PM,03/12/2016 11:11:15 PM,03/12/2016 11:17:42 PM,03/12/2016 11:40:35 PM,03/12/2016 11:56:27 PM,Code 2 Transport,03/13/2016 12:39:35 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160723603-75 +160833564,70,16033108,Medical Incident,03/23/2016,03/23/2016,03/23/2016 07:32:27 PM,03/23/2016 07:32:27 PM,03/23/2016 07:33:00 PM,03/23/2016 07:33:12 PM,03/23/2016 07:47:05 PM,03/23/2016 07:54:09 PM,03/23/2016 08:18:41 PM,Code 3 Transport,03/23/2016 08:45:19 PM,1400 Block of UNDERWOOD AVE,San Francisco,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7281527449008, -122.389085829648)",160833564-70 +121430171,85,12047523,Medical Incident,05/22/2012,05/22/2012,05/22/2012 12:17:25 PM,05/22/2012 12:18:28 PM,05/22/2012 12:19:39 PM,05/22/2012 12:20:40 PM,05/22/2012 12:28:01 PM,05/22/2012 12:41:05 PM,05/22/2012 12:55:22 PM,Code 2 Transport,05/22/2012 01:28:39 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",121430171-85 +140900155,AM06,14030273,Medical Incident,03/31/2014,03/31/2014,03/31/2014 12:15:14 PM,03/31/2014 12:15:50 PM,03/31/2014 12:17:05 PM,03/31/2014 12:17:43 PM,03/31/2014 12:20:12 PM,03/31/2014 12:25:36 PM,03/31/2014 12:49:45 PM,Code 2 Transport,03/31/2014 01:18:48 PM,1600 Block of MARKET ST,SAN FRANCISCO,94103,B02,36,5115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",140900155-AM06 +133460360,66,13117543,Medical Incident,12/12/2013,12/12/2013,12/12/2013 08:29:30 PM,12/12/2013 08:30:51 PM,12/12/2013 08:31:14 PM,12/12/2013 08:31:35 PM,12/12/2013 08:33:58 PM,12/12/2013 08:46:41 PM,12/12/2013 09:07:25 PM,Code 2 Transport,12/12/2013 09:34:22 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",133460360-66 +110820363,E36,11027090,Other,03/23/2011,03/23/2011,03/23/2011 09:01:12 PM,03/23/2011 09:01:12 PM,03/23/2011 09:01:12 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 09:05:40 PM,10TH ST/MARKET ST,SF,94103,B02,36,2338,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",110820363-E36 +110570141,79,11018720,Medical Incident,02/26/2011,02/26/2011,02/26/2011 10:27:22 AM,02/26/2011 10:30:10 AM,02/26/2011 10:30:26 AM,02/26/2011 10:30:48 AM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/26/2011 10:38:29 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7758599616408, -122.402849079555)",110570141-79 +160882931,79,16035061,Medical Incident,03/28/2016,03/28/2016,03/28/2016 05:40:39 PM,03/28/2016 05:42:37 PM,03/28/2016 05:45:42 PM,03/28/2016 05:45:54 PM,03/28/2016 05:57:24 PM,03/28/2016 06:17:25 PM,03/28/2016 06:40:09 PM,Code 3 Transport,03/28/2016 07:15:28 PM,100 Block of AMHERST ST,San Francisco,94134,B09,42,6147,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7275605128809, -122.416607387031)",160882931-79 +102650348,E01,10084031,Alarms,09/22/2010,09/22/2010,09/22/2010 11:26:58 PM,09/22/2010 11:28:16 PM,09/22/2010 11:28:36 PM,04/25/2016 02:08:28 PM,09/22/2010 11:32:13 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 11:38:12 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",102650348-E01 +140520065,82,14017523,Medical Incident,02/21/2014,02/20/2014,02/21/2014 07:30:52 AM,02/21/2014 07:32:15 AM,02/21/2014 07:32:34 AM,02/21/2014 07:32:50 AM,02/21/2014 07:42:18 AM,02/21/2014 07:56:53 AM,02/21/2014 08:10:42 AM,Code 2 Transport,02/21/2014 08:59:41 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,E,E,3,false,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",140520065-82 +132430079,RC3,13081906,Medical Incident,08/31/2013,08/30/2013,08/31/2013 05:04:59 AM,08/31/2013 05:06:30 AM,08/31/2013 05:16:01 AM,08/31/2013 05:18:25 AM,08/31/2013 05:19:40 AM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/31/2013 05:39:34 AM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,8,Mission,"(37.748178766022, -122.4214039484)",132430079-RC3 +160770500,65,16030455,Medical Incident,03/17/2016,03/16/2016,03/17/2016 06:36:04 AM,03/17/2016 06:37:06 AM,03/17/2016 06:37:31 AM,03/17/2016 06:37:38 AM,03/17/2016 06:47:33 AM,03/17/2016 06:56:25 AM,03/17/2016 07:11:13 AM,Code 2 Transport,03/17/2016 07:41:21 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160770500-65 +160580610,AM02,16023017,Medical Incident,02/27/2016,02/26/2016,02/27/2016 05:49:50 AM,02/27/2016 05:49:50 AM,02/27/2016 05:50:00 AM,02/27/2016 05:50:31 AM,02/27/2016 05:56:07 AM,02/27/2016 06:06:07 AM,02/27/2016 06:24:54 AM,Code 2 Transport,02/27/2016 07:03:44 AM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160580610-AM02 +160812179,85,16032224,Medical Incident,03/21/2016,03/21/2016,03/21/2016 02:43:47 PM,03/21/2016 02:45:28 PM,03/21/2016 02:45:52 PM,03/21/2016 02:46:04 PM,03/21/2016 02:51:02 PM,03/21/2016 03:19:53 PM,03/21/2016 04:03:36 PM,Code 2 Transport,03/21/2016 04:21:01 PM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",160812179-85 +112970325,KM11,11098623,Medical Incident,10/24/2011,10/24/2011,10/24/2011 05:28:05 PM,10/24/2011 05:28:42 PM,10/24/2011 05:29:17 PM,10/24/2011 05:29:54 PM,10/24/2011 05:39:48 PM,10/24/2011 05:54:11 PM,10/24/2011 06:16:58 PM,Code 2 Transport,10/24/2011 06:39:03 PM,200 Block of MADRID ST,SF,94112,B09,43,613,3,2,2,false,,1,PRIVATE,2,9,11,Excelsior,"(37.7255316247491, -122.429925994016)",112970325-KM11 +160624209,79,16024892,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:54:43 PM,03/02/2016 10:55:03 PM,03/02/2016 10:55:14 PM,03/02/2016 10:55:38 PM,03/02/2016 11:00:18 PM,03/02/2016 11:16:09 PM,03/02/2016 11:22:29 PM,Code 3 Transport,03/03/2016 12:16:04 AM,0 Block of MIDDLE POINT RD,San Francisco,94124,B10,25,6556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7357585640379, -122.379345378835)",160624209-79 +160291514,54,16011428,Medical Incident,01/29/2016,01/29/2016,01/29/2016 12:08:26 PM,01/29/2016 12:09:34 PM,01/29/2016 12:10:21 PM,01/29/2016 12:10:31 PM,01/29/2016 12:16:55 PM,01/29/2016 12:29:05 PM,01/29/2016 01:00:23 PM,Code 2 Transport,01/29/2016 01:26:57 PM,3400 Block of JENNINGS ST,San Francisco,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7185889862689, -122.396218710547)",160291514-54 +111100310,E44,11036413,Structure Fire,04/20/2011,04/20/2011,04/20/2011 05:36:23 PM,04/20/2011 05:36:23 PM,04/20/2011 05:36:37 PM,04/20/2011 05:37:40 PM,04/20/2011 05:41:09 PM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Fire,04/20/2011 05:41:26 PM,LELAND AV/SAWYER ST,SF,94134,B09,44,6263,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7143150560138, -122.413892696029)",111100310-E44 +160262853,66,16010395,Medical Incident,01/26/2016,01/26/2016,01/26/2016 05:22:02 PM,01/26/2016 05:22:42 PM,01/26/2016 05:23:26 PM,01/26/2016 05:23:35 PM,01/26/2016 05:38:00 PM,01/26/2016 05:58:21 PM,01/26/2016 06:04:43 PM,Code 2 Transport,01/26/2016 06:49:46 PM,0 Block of BONITA ST,San Francisco,94109,B04,41,3126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7972452861696, -122.422598432571)",160262853-66 +121170059,E17,12038674,Medical Incident,04/26/2012,04/25/2012,04/26/2012 07:40:09 AM,04/26/2012 07:41:33 AM,04/26/2012 07:41:41 AM,04/26/2012 07:47:17 AM,04/26/2012 07:49:26 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/26/2012 07:51:17 AM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",121170059-E17 +160411888,57,16016463,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:19:52 PM,02/10/2016 01:21:39 PM,02/10/2016 01:21:50 PM,02/10/2016 01:21:58 PM,02/10/2016 01:26:43 PM,02/10/2016 01:52:44 PM,02/10/2016 01:58:48 PM,Code 2 Transport,02/10/2016 02:47:30 PM,600 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",160411888-57 +133640164,E12,13123583,Medical Incident,12/30/2013,12/30/2013,12/30/2013 11:43:02 AM,12/30/2013 11:43:34 AM,12/30/2013 11:44:16 AM,12/30/2013 11:45:13 AM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,Other,12/30/2013 12:42:28 PM,1200 Block of STANYAN ST,SF,94117,B05,12,5261,3,2,2,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Inner Sunset,"(37.7604665979751, -122.451823739066)",133640164-E12 +123560084,E38,12119060,Medical Incident,12/21/2012,12/21/2012,12/21/2012 08:35:09 AM,12/21/2012 08:37:02 AM,12/21/2012 08:37:39 AM,12/21/2012 08:39:37 AM,12/21/2012 08:41:10 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 08:53:57 AM,1700 Block of PACIFIC AVE,SF,94109,B04,38,3231,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7947665561905, -122.424060519207)",123560084-E38 +111560362,58,11051722,Medical Incident,06/05/2011,06/05/2011,06/05/2011 08:33:43 PM,06/05/2011 08:36:03 PM,06/05/2011 08:36:13 PM,06/05/2011 08:37:01 PM,06/05/2011 08:41:51 PM,06/05/2011 08:58:48 PM,06/05/2011 09:04:15 PM,Code 2 Transport,06/05/2011 09:22:42 PM,6TH ST/JESSIE ST,SF,94103,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",111560362-58 +133470291,E21,13117835,Medical Incident,12/13/2013,12/13/2013,12/13/2013 05:26:16 PM,12/13/2013 05:28:08 PM,12/13/2013 05:28:27 PM,12/13/2013 05:29:36 PM,12/13/2013 05:31:34 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 05:39:54 PM,2100 Block of FULTON ST,SF,94117,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7753367356743, -122.450543942752)",133470291-E21 +111930320,93,11063832,Medical Incident,07/12/2011,07/12/2011,07/12/2011 07:58:53 PM,07/12/2011 07:59:41 PM,07/12/2011 07:59:50 PM,07/12/2011 08:00:13 PM,07/12/2011 08:04:34 PM,07/12/2011 08:19:32 PM,07/12/2011 08:38:19 PM,Code 2 Transport,07/12/2011 09:00:59 PM,CALIFORNIA ST/POLK ST,SF,94109,B04,41,1635,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7905782582579, -122.420687383115)",111930320-93 +102330140,AM04,10073304,Medical Incident,08/21/2010,08/21/2010,08/21/2010 11:03:27 AM,08/21/2010 11:05:21 AM,08/21/2010 11:05:40 AM,08/21/2010 11:06:10 AM,08/21/2010 11:07:22 AM,08/21/2010 11:17:52 AM,08/21/2010 11:46:25 AM,Code 2 Transport,08/21/2010 12:01:16 PM,MARKET ST/CYRIL MAGNIN ST,SF,94103,B03,1,1366,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",102330140-AM04 +112160345,E43,11071478,Traffic Collision,08/04/2011,08/04/2011,08/04/2011 07:51:08 PM,08/04/2011 07:52:23 PM,08/04/2011 07:53:22 PM,08/04/2011 07:54:33 PM,08/04/2011 07:56:10 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Patient Declined Transport,08/04/2011 08:04:18 PM,MISSION ST/AMAZON AV,SF,94112,B09,43,6175,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7172446200647, -122.440417736667)",112160345-E43 +160202173,KM05,16008040,Medical Incident,01/20/2016,01/20/2016,01/20/2016 02:27:30 PM,01/20/2016 02:28:53 PM,01/20/2016 02:29:06 PM,01/20/2016 02:29:46 PM,01/20/2016 02:36:32 PM,01/20/2016 02:46:21 PM,01/20/2016 03:02:26 PM,Code 2 Transport,01/20/2016 03:49:52 PM,400 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1333,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7991347204832, -122.408396415403)",160202173-KM05 +160703043,KM02,16027969,Medical Incident,03/10/2016,03/10/2016,03/10/2016 07:07:03 PM,03/10/2016 07:07:46 PM,03/10/2016 07:07:54 PM,03/10/2016 07:08:22 PM,03/10/2016 07:32:42 PM,03/10/2016 07:58:48 PM,03/10/2016 08:29:31 PM,Code 2 Transport,03/10/2016 08:48:05 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160703043-KM02 +160012183,85,16000349,Medical Incident,01/01/2016,01/01/2016,01/01/2016 01:57:07 PM,01/01/2016 01:57:23 PM,01/01/2016 01:57:41 PM,01/01/2016 01:57:51 PM,01/01/2016 02:03:08 PM,01/01/2016 02:18:23 PM,01/01/2016 02:25:37 PM,Code 2 Transport,01/01/2016 03:21:00 PM,1700 Block of UNION ST,San Francisco,94123,B04,16,3335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7980842323578, -122.428102430228)",160012183-85 +122930388,77,12097313,Medical Incident,10/19/2012,10/19/2012,10/19/2012 09:25:55 PM,10/19/2012 09:27:28 PM,10/19/2012 09:28:01 PM,10/19/2012 09:28:22 PM,10/19/2012 09:33:21 PM,10/19/2012 09:52:57 PM,10/19/2012 10:00:44 PM,Code 2 Transport,10/19/2012 10:32:47 PM,25TH ST/BARTLETT ST,SF,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7505726090469, -122.419399682073)",122930388-77 +123520022,87,12117618,Medical Incident,12/17/2012,12/16/2012,12/17/2012 02:18:13 AM,12/17/2012 02:19:12 AM,12/17/2012 02:19:37 AM,12/17/2012 02:20:01 AM,12/17/2012 02:35:54 AM,12/17/2012 02:52:20 AM,12/17/2012 03:11:47 AM,Code 2 Transport,12/17/2012 03:38:04 AM,1400 Block of CHINOOK CT,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8240947747678, -122.373757490289)",123520022-87 +140090046,E40,14003034,Medical Incident,01/09/2014,01/08/2014,01/09/2014 03:49:20 AM,01/09/2014 03:52:34 AM,01/09/2014 03:54:13 AM,01/09/2014 03:56:29 AM,01/09/2014 04:00:11 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/09/2014 04:00:43 AM,2600 Block of 26TH AVE,SF,94116,B08,40,7462,3,3,3,false,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7384572962242, -122.482826418103)",140090046-E40 +112970321,E06,11098619,Medical Incident,10/24/2011,10/24/2011,10/24/2011 05:22:24 PM,10/24/2011 05:23:13 PM,10/24/2011 05:23:57 PM,10/24/2011 05:24:41 PM,10/24/2011 05:27:36 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 05:36:18 PM,0 Block of MAXWELL CT,SF,94103,B02,6,5214,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7669025720969, -122.423141850936)",112970321-E06 +111400268,E03,11046613,Alarms,05/20/2011,05/20/2011,05/20/2011 06:10:36 PM,05/20/2011 06:11:25 PM,05/20/2011 06:11:37 PM,05/20/2011 06:13:24 PM,05/20/2011 06:14:45 PM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,Other,05/20/2011 06:19:43 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",111400268-E03 +112330359,66,11077101,Medical Incident,08/21/2011,08/21/2011,08/21/2011 10:00:00 PM,08/21/2011 10:01:04 PM,08/21/2011 10:01:25 PM,08/21/2011 10:01:34 PM,08/21/2011 10:07:55 PM,08/21/2011 10:24:20 PM,08/21/2011 10:37:55 PM,Code 2 Transport,08/21/2011 11:08:08 PM,200 Block of MAYNARD ST,SF,94112,B09,32,5683,3,E,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7295080178827, -122.424915560486)",112330359-66 +103100166,B01,10099374,Alarms,11/06/2010,11/06/2010,11/06/2010 12:04:28 PM,11/06/2010 12:05:33 PM,11/06/2010 12:05:36 PM,11/06/2010 12:06:30 PM,11/06/2010 12:08:40 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Fire,11/06/2010 12:12:00 PM,500 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,,1,CHIEF,2,1,3,North Beach,"(37.80526026245, -122.416053831859)",103100166-B01 +103050309,E28,10097592,Medical Incident,11/01/2010,11/01/2010,11/01/2010 05:06:32 PM,11/01/2010 05:07:11 PM,11/01/2010 05:07:47 PM,11/01/2010 05:08:41 PM,11/01/2010 05:09:50 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/01/2010 05:26:02 PM,600 Block of FILBERT ST,SF,94133,B01,28,1351,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8013244963183, -122.410204322135)",103050309-E28 +121340219,E06,12044643,Medical Incident,05/13/2012,05/13/2012,05/13/2012 04:09:26 PM,05/13/2012 04:10:36 PM,05/13/2012 04:10:45 PM,05/13/2012 04:11:38 PM,05/13/2012 04:13:56 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 04:23:52 PM,600 Block of HAIGHT ST,SF,94117,B05,6,3633,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7717385379256, -122.432902586218)",121340219-E06 +121160382,77,12038621,Medical Incident,04/25/2012,04/25/2012,04/25/2012 11:14:42 PM,04/25/2012 11:16:26 PM,04/25/2012 11:16:51 PM,04/25/2012 11:16:58 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Patient Declined Transport,04/25/2012 11:47:04 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",121160382-77 +121050267,RS1,12034838,Structure Fire,04/14/2012,04/14/2012,04/14/2012 04:32:34 PM,04/14/2012 04:33:20 PM,04/14/2012 04:33:28 PM,04/14/2012 04:34:27 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Other,04/14/2012 04:38:22 PM,0 Block of PRESIDIO AVE,SF,94115,B04,10,4414,3,3,3,false,Fire,1,RESCUE SQUAD,10,4,2,Presidio Heights,"(37.7912716532952, -122.447522009721)",121050267-RS1 +111890088,T03,11062410,Medical Incident,07/08/2011,07/08/2011,07/08/2011 08:20:11 AM,07/08/2011 08:22:06 AM,07/08/2011 08:23:58 AM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,Other,04/25/2016 02:03:46 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,,1,TRUCK,4,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",111890088-T03 +112000065,96,11065864,Medical Incident,07/19/2011,07/18/2011,07/19/2011 07:49:26 AM,07/19/2011 07:50:20 AM,07/19/2011 07:51:28 AM,07/19/2011 07:51:34 AM,07/19/2011 07:56:41 AM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Patient Declined Transport,07/19/2011 08:20:31 AM,3RD ST/MARIN ST,SF,94124,B10,25,2641,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7490047598095, -122.387456311596)",112000065-96 +140910176,E11,14030599,Other,04/01/2014,04/01/2014,04/01/2014 02:09:35 PM,04/01/2014 02:12:45 PM,04/01/2014 02:13:23 PM,04/01/2014 02:14:30 PM,04/01/2014 02:16:47 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,Fire,04/01/2014 02:58:49 PM,3300 Block of 22ND ST,SAN FRANCISCO,94110,B06,11,5471,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7551642237886, -122.422303225706)",140910176-E11 +121500104,B03,12049681,Alarms,05/29/2012,05/29/2012,05/29/2012 09:32:46 AM,05/29/2012 09:34:46 AM,05/29/2012 09:34:52 AM,05/29/2012 09:35:36 AM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/29/2012 09:42:06 AM,200 Block of MAIN ST,SF,94105,B03,35,2114,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7900295956883, -122.392583899031)",121500104-B03 +130850139,E03,13028339,Medical Incident,03/26/2013,03/26/2013,03/26/2013 10:53:39 AM,03/26/2013 10:54:34 AM,03/26/2013 10:54:57 AM,03/26/2013 10:55:26 AM,03/26/2013 11:08:00 AM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 11:18:43 AM,1700 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7903193034194, -122.4231629068)",130850139-E03 +112040097,E22,11067330,Structure Fire,07/23/2011,07/23/2011,07/23/2011 08:21:55 AM,07/23/2011 08:23:13 AM,07/23/2011 08:23:55 AM,07/23/2011 08:25:24 AM,07/23/2011 08:29:16 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/23/2011 08:31:21 AM,500 Block of FREDERICK ST,SF,94122,B05,12,4551,3,3,3,false,,1,ENGINE,3,5,5,Golden Gate Park,"(37.7663240152294, -122.453780886842)",112040097-E22 +160700380,70,16027717,Medical Incident,03/10/2016,03/09/2016,03/10/2016 05:18:51 AM,03/10/2016 05:20:48 AM,03/10/2016 05:25:38 AM,03/10/2016 05:25:50 AM,03/10/2016 05:36:12 AM,03/10/2016 05:39:39 AM,03/10/2016 05:47:22 AM,Code 2 Transport,03/10/2016 06:17:26 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160700380-70 +113510077,E21,11116391,Medical Incident,12/17/2011,12/16/2011,12/17/2011 03:58:51 AM,12/17/2011 03:58:51 AM,12/17/2011 03:59:08 AM,12/17/2011 03:59:49 AM,12/17/2011 04:02:23 AM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/17/2011 04:06:23 AM,500 Block of ASHBURY ST,SF,94117,B05,21,4513,3,E,3,false,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7704798919759, -122.446959951124)",113510077-E21 +160263901,53,16010501,Medical Incident,01/26/2016,01/26/2016,01/26/2016 11:06:29 PM,01/26/2016 11:07:14 PM,01/26/2016 11:08:10 PM,01/26/2016 11:08:37 PM,01/26/2016 11:09:44 PM,01/26/2016 11:27:40 PM,01/26/2016 11:41:31 PM,Code 2 Transport,01/27/2016 12:33:29 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160263901-53 +160360824,85,16014144,Medical Incident,02/05/2016,02/04/2016,02/05/2016 07:51:48 AM,02/05/2016 07:52:34 AM,02/05/2016 07:53:16 AM,02/05/2016 07:53:23 AM,02/05/2016 08:01:48 AM,02/05/2016 08:06:32 AM,02/05/2016 08:32:00 AM,Code 2 Transport,02/05/2016 09:13:34 AM,4TH ST/FOLSOM ST,San Francisco,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7820242662358, -122.401159719509)",160360824-85 +123170274,KM09,12105588,Medical Incident,11/12/2012,11/12/2012,11/12/2012 08:08:02 PM,11/12/2012 08:08:54 PM,11/12/2012 08:09:38 PM,11/12/2012 08:10:11 PM,11/12/2012 08:15:15 PM,11/12/2012 08:22:57 PM,11/12/2012 08:32:57 PM,Code 2 Transport,11/12/2012 09:02:33 PM,1300 Block of MISSION ST,SF,94103,B02,36,2336,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7757873707648, -122.41535521839)",123170274-KM09 +102390023,E17,10075256,Medical Incident,08/27/2010,08/26/2010,08/27/2010 01:49:27 AM,08/27/2010 01:50:16 AM,08/27/2010 01:50:51 AM,08/27/2010 01:52:20 AM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/27/2010 01:55:45 AM,1700 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7356170255073, -122.393678827972)",102390023-E17 +120410046,B04,12013543,Alarms,02/10/2012,02/09/2012,02/10/2012 04:04:26 AM,02/10/2012 04:05:20 AM,02/10/2012 04:05:34 AM,02/10/2012 04:07:37 AM,02/10/2012 04:11:44 AM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 04:12:43 AM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",120410046-B04 +132600117,AM24,13087911,Medical Incident,09/17/2013,09/17/2013,09/17/2013 08:23:14 AM,09/17/2013 08:25:24 AM,09/17/2013 08:28:12 AM,09/17/2013 08:28:52 AM,09/17/2013 08:41:12 AM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 08:46:24 AM,GUTTENBERG ST/BRUNSWICK ST,SF,94112,B09,43,6218,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7105545807996, -122.443335369545)",132600117-AM24 +160793793,88,16031579,Medical Incident,03/19/2016,03/19/2016,03/19/2016 09:05:37 PM,03/19/2016 09:05:37 PM,03/19/2016 09:05:48 PM,03/19/2016 09:06:04 PM,03/19/2016 09:08:36 PM,03/19/2016 09:11:58 PM,03/19/2016 09:24:49 PM,Code 2 Transport,03/19/2016 09:52:37 PM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160793793-88 +111420232,RS2,11047226,Medical Incident,05/22/2011,05/22/2011,05/22/2011 02:34:22 PM,05/22/2011 02:34:54 PM,05/22/2011 02:35:09 PM,05/22/2011 02:36:22 PM,05/22/2011 02:38:34 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,Other,05/22/2011 03:19:18 PM,3100 Block of KAMILLE CT,SF,94110,B06,7,5533,E,E,3,false,,1,RESCUE SQUAD,2,6,9,Mission,"(37.748861117995, -122.412087843139)",111420232-RS2 +112670042,75,11088102,Medical Incident,09/24/2011,09/23/2011,09/24/2011 02:03:37 AM,09/24/2011 02:06:24 AM,09/24/2011 02:07:18 AM,09/24/2011 02:07:28 AM,09/24/2011 02:12:30 AM,09/24/2011 02:25:29 AM,09/24/2011 02:27:05 AM,Code 2 Transport,09/24/2011 03:09:29 AM,400 Block of TURK ST,SF,94102,B02,3,1554,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",112670042-75 +133140299,RS2,13106860,Medical Incident,11/10/2013,11/10/2013,11/10/2013 08:53:30 PM,11/10/2013 08:55:50 PM,11/10/2013 08:56:04 PM,11/10/2013 08:56:43 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 08:57:35 PM,2300 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,6,9,Mission,"(37.7594381240168, -122.419060339091)",133140299-RS2 +160603418,76,16024082,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:00:39 PM,02/29/2016 09:00:39 PM,02/29/2016 09:01:07 PM,02/29/2016 09:01:15 PM,02/29/2016 09:08:24 PM,02/29/2016 09:30:24 PM,02/29/2016 09:41:09 PM,Code 2 Transport,02/29/2016 10:21:11 PM,EDINBURGH ST/PERSIA AV,San Francisco,94112,B09,43,6141,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7212372577883, -122.432005499322)",160603418-76 +131020068,88,13034189,Traffic Collision,04/12/2013,04/12/2013,04/12/2013 08:28:21 AM,04/12/2013 08:28:31 AM,04/12/2013 08:28:56 AM,04/12/2013 08:29:07 AM,04/12/2013 08:32:49 AM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Against Medical Advice,04/12/2013 09:34:46 AM,MASONIC AV/OAK ST,SF,94117,B05,21,4465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Golden Gate Park,"(37.7720803934485, -122.445716664284)",131020068-88 +140400069,AP,14013464,Other,02/09/2014,02/08/2014,02/09/2014 03:57:02 AM,02/09/2014 03:57:02 AM,02/09/2014 03:57:02 AM,02/09/2014 03:57:02 AM,02/09/2014 03:57:02 AM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Fire,02/09/2014 03:57:30 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",140400069-AP +122820252,E06,12093419,Alarms,10/08/2012,10/08/2012,10/08/2012 05:04:49 PM,10/08/2012 05:05:45 PM,10/08/2012 05:06:55 PM,10/08/2012 05:08:23 PM,10/08/2012 05:10:52 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/08/2012 05:14:03 PM,0 Block of ALPINE TER,SF,94117,B05,6,5134,3,3,3,true,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.7696375999837, -122.4376111774)",122820252-E06 +121500015,RC1,12049602,Medical Incident,05/29/2012,05/28/2012,05/29/2012 01:08:08 AM,05/29/2012 01:08:47 AM,05/29/2012 01:10:09 AM,05/29/2012 01:12:09 AM,05/29/2012 01:14:54 AM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/29/2012 01:49:30 AM,200 Block of BAY ST,SF,94133,B01,28,1341,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,North Beach,"(37.8058720561285, -122.411119801648)",121500015-RC1 +112640246,E33,11087225,Medical Incident,09/21/2011,09/21/2011,09/21/2011 02:50:09 PM,09/21/2011 02:51:17 PM,09/21/2011 02:52:04 PM,09/21/2011 02:52:48 PM,09/21/2011 02:55:59 PM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/21/2011 03:08:08 PM,0 Block of MINERVA ST,SF,94112,B09,33,8372,3,3,3,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7156899151892, -122.454796659779)",112640246-E33 +121390231,E01,12046203,Medical Incident,05/18/2012,05/18/2012,05/18/2012 04:03:30 PM,05/18/2012 04:03:45 PM,05/18/2012 04:04:09 PM,05/18/2012 04:05:27 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/18/2012 04:06:40 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",121390231-E01 +140670310,T02,14022788,Structure Fire,03/08/2014,03/08/2014,03/08/2014 08:02:44 PM,03/08/2014 08:02:44 PM,03/08/2014 08:03:02 PM,03/08/2014 08:04:16 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Fire,03/08/2014 08:05:57 PM,GRANT AV/JACKSON ST,SAN FRANCISCO,94133,B01,2,1312,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",140670310-T02 +120810250,E41,12026937,Structure Fire,03/21/2012,03/21/2012,03/21/2012 02:53:43 PM,03/21/2012 02:56:00 PM,03/21/2012 02:56:15 PM,03/21/2012 02:57:38 PM,03/21/2012 03:00:39 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 03:01:51 PM,2200 Block of STOCKTON ST,SF,94133,B01,28,1341,3,3,3,false,Fire,1,ENGINE,6,1,3,North Beach,"(37.8064867194015, -122.410472573644)",120810250-E41 +130040212,E12,13001371,Structure Fire,01/04/2013,01/04/2013,01/04/2013 12:53:26 PM,01/04/2013 12:53:26 PM,01/04/2013 12:53:31 PM,01/04/2013 12:54:12 PM,01/04/2013 12:56:46 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Fire,01/04/2013 12:57:13 PM,SHRADER ST/OAK ST,SF,94117,B05,12,4544,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7712298276373, -122.452241777167)",130040212-E12 +123150270,E26,12104908,Medical Incident,11/10/2012,11/10/2012,11/10/2012 05:27:28 PM,11/10/2012 05:28:49 PM,11/10/2012 05:31:53 PM,11/10/2012 05:33:38 PM,11/10/2012 05:36:37 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 05:44:57 PM,KERN ST/DIAMOND ST,SF,94131,B06,26,8146,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Glen Park,"(37.7338897472868, -122.434049927915)",123150270-E26 +160611331,KM12,16024279,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:42:39 AM,03/01/2016 11:42:52 AM,03/01/2016 11:43:11 AM,03/01/2016 11:43:45 AM,03/01/2016 11:47:49 AM,03/01/2016 12:32:12 PM,03/01/2016 01:01:27 PM,Code 2 Transport,03/01/2016 01:31:48 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160611331-KM12 +131550312,E01,13052636,Medical Incident,06/04/2013,06/04/2013,06/04/2013 05:03:42 PM,06/04/2013 05:04:27 PM,06/04/2013 05:07:17 PM,06/04/2013 05:07:31 PM,04/25/2016 01:52:27 PM,04/25/2016 01:52:27 PM,04/25/2016 01:52:27 PM,Other,06/04/2013 05:08:10 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",131550312-E01 +160610591,85,16024203,Medical Incident,03/01/2016,02/29/2016,03/01/2016 07:38:09 AM,03/01/2016 07:38:46 AM,03/01/2016 07:39:05 AM,03/01/2016 07:39:37 AM,03/01/2016 07:44:22 AM,03/01/2016 08:08:28 AM,03/01/2016 08:19:26 AM,Code 2 Transport,03/01/2016 08:34:12 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",160610591-85 +160382081,72,16015246,Medical Incident,02/07/2016,02/07/2016,02/07/2016 02:12:29 PM,02/07/2016 02:12:29 PM,02/07/2016 02:13:33 PM,02/07/2016 02:13:38 PM,02/07/2016 02:31:56 PM,02/07/2016 02:31:58 PM,02/07/2016 02:49:22 PM,Code 2 Transport,02/07/2016 03:12:53 PM,0 Block of BLK ELLIS ST,San Francisco,94103,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7854659679447, -122.405582629186)",160382081-72 +122650038,T03,12087431,Structure Fire,09/21/2012,09/20/2012,09/21/2012 03:50:14 AM,09/21/2012 03:54:24 AM,09/21/2012 03:54:38 AM,09/21/2012 03:54:46 AM,09/21/2012 03:55:44 AM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 04:16:00 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,false,Fire,1,TRUCK,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",122650038-T03 +160190355,64,16007471,Medical Incident,01/19/2016,01/18/2016,01/19/2016 03:59:22 AM,01/19/2016 04:03:25 AM,01/19/2016 04:05:08 AM,01/19/2016 04:05:13 AM,01/19/2016 04:16:15 AM,01/19/2016 04:45:38 AM,01/19/2016 05:03:27 AM,Code 2 Transport,01/19/2016 05:43:50 AM,HYDE ST/GROVE ST,San Francisco,94103,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160190355-64 +133190217,53,13108414,Medical Incident,11/15/2013,11/15/2013,11/15/2013 01:32:48 PM,11/15/2013 01:34:00 PM,11/15/2013 01:34:55 PM,11/15/2013 01:35:10 PM,11/15/2013 01:38:28 PM,11/15/2013 02:09:49 PM,11/15/2013 02:28:16 PM,Code 2 Transport,11/15/2013 03:00:13 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8069201392161, -122.407170160416)",133190217-53 +160131369,73,16005162,Medical Incident,01/13/2016,01/13/2016,01/13/2016 10:58:36 AM,01/13/2016 10:59:34 AM,01/13/2016 11:00:00 AM,01/13/2016 11:00:43 AM,01/13/2016 11:09:27 AM,01/13/2016 11:44:00 AM,01/13/2016 11:53:14 AM,Code 3 Transport,01/13/2016 12:57:31 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.779911669335, -122.407474439624)",160131369-73 +133030272,T07,13103001,Alarms,10/30/2013,10/30/2013,10/30/2013 04:53:24 PM,10/30/2013 04:54:27 PM,10/30/2013 04:54:52 PM,10/30/2013 04:57:03 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 05:01:14 PM,2500 Block of MARIPOSA ST,SF,94110,B02,29,5243,3,3,3,false,Alarm,1,TRUCK,3,2,10,Mission,"(37.7631695375953, -122.408796075221)",133030272-T07 +121840240,E01,12061343,Traffic Collision,07/02/2012,07/02/2012,07/02/2012 04:38:40 PM,07/02/2012 04:38:40 PM,07/02/2012 04:39:22 PM,07/02/2012 04:40:08 PM,07/02/2012 04:41:08 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 04:43:37 PM,MARKET ST/3RD ST,SF,94103,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",121840240-E01 +133620026,E01,13122862,Medical Incident,12/28/2013,12/27/2013,12/28/2013 01:50:55 AM,12/28/2013 01:51:29 AM,12/28/2013 01:51:46 AM,12/28/2013 01:53:24 AM,12/28/2013 01:57:01 AM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 02:01:45 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",133620026-E01 +140610303,78,14020752,Medical Incident,03/02/2014,03/02/2014,03/02/2014 08:26:03 PM,03/02/2014 08:26:37 PM,03/02/2014 08:27:34 PM,03/02/2014 08:27:49 PM,03/02/2014 08:39:10 PM,03/02/2014 08:51:45 PM,03/02/2014 09:29:54 PM,Code 3 Transport,03/02/2014 10:02:14 PM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",140610303-78 +160540877,71,16021501,Medical Incident,02/23/2016,02/23/2016,02/23/2016 09:05:56 AM,02/23/2016 09:07:40 AM,02/23/2016 09:08:42 AM,02/23/2016 09:08:53 AM,02/23/2016 09:24:18 AM,02/23/2016 09:33:53 AM,02/23/2016 09:33:53 AM,Code 2 Transport,02/23/2016 10:19:16 AM,0 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7202829536688, -122.3858679491)",160540877-71 +160711614,52,16028224,Medical Incident,03/11/2016,03/11/2016,03/11/2016 12:33:50 PM,03/11/2016 12:35:12 PM,03/11/2016 12:35:39 PM,03/11/2016 12:35:49 PM,03/11/2016 12:38:39 PM,03/11/2016 12:55:29 PM,03/11/2016 01:02:57 PM,Code 2 Transport,03/11/2016 01:37:49 PM,GEARY BL/WEBSTER ST,San Francisco,94115,B04,5,3432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7845682402461, -122.431204945516)",160711614-52 +133140053,55,13106649,Medical Incident,11/10/2013,11/09/2013,11/10/2013 03:50:17 AM,11/10/2013 03:52:48 AM,11/10/2013 03:53:06 AM,11/10/2013 03:53:16 AM,11/10/2013 03:57:02 AM,11/10/2013 04:24:23 AM,11/10/2013 04:57:04 AM,Code 2 Transport,11/10/2013 05:09:42 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",133140053-55 +120050136,E21,12001693,Elevator / Escalator Rescue,01/05/2012,01/05/2012,01/05/2012 10:26:39 AM,01/05/2012 10:27:40 AM,01/05/2012 10:28:11 AM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 10:28:58 AM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,3,3,false,Alarm,1,ENGINE,3,5,5,Western Addition,"(37.7794051372088, -122.432762898818)",120050136-E21 +113010254,91,11099888,Medical Incident,10/28/2011,10/28/2011,10/28/2011 03:09:56 PM,10/28/2011 03:10:22 PM,10/28/2011 03:10:44 PM,10/28/2011 03:10:58 PM,10/28/2011 03:17:06 PM,10/28/2011 03:43:21 PM,10/28/2011 03:58:29 PM,Code 2 Transport,10/28/2011 04:16:50 PM,400 Block of SUTTER ST,SF,94108,B01,1,1324,3,3,3,true,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",113010254-91 +113580349,T02,11119175,Alarms,12/24/2011,12/24/2011,12/24/2011 09:34:07 PM,12/24/2011 09:35:42 PM,12/24/2011 09:35:51 PM,12/24/2011 09:37:14 PM,12/24/2011 09:40:14 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,Other,12/24/2011 09:56:55 PM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,false,,1,TRUCK,2,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",113580349-T02 +111100291,86,11036396,Medical Incident,04/20/2011,04/20/2011,04/20/2011 04:40:39 PM,04/20/2011 04:42:45 PM,04/20/2011 04:43:43 PM,04/20/2011 04:44:17 PM,04/20/2011 05:00:41 PM,04/20/2011 05:29:33 PM,04/20/2011 05:45:52 PM,Code 2 Transport,04/20/2011 06:11:33 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,2,2,2,true,,1,MEDIC,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",111100291-86 +160642872,68,16025601,Medical Incident,03/04/2016,03/04/2016,03/04/2016 05:24:31 PM,03/04/2016 05:25:59 PM,03/04/2016 05:26:45 PM,03/04/2016 05:26:53 PM,03/04/2016 05:30:24 PM,03/04/2016 05:46:53 PM,03/04/2016 06:42:39 PM,Code 2 Transport,03/04/2016 06:42:40 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160642872-68 +131380291,B04,13046723,Alarms,05/18/2013,05/18/2013,05/18/2013 06:18:36 PM,05/18/2013 06:19:47 PM,05/18/2013 06:19:59 PM,05/18/2013 06:20:43 PM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,Other,05/18/2013 06:25:51 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.7869733159879, -122.425845942974)",131380291-B04 +160820642,70,16032479,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:00:07 AM,03/22/2016 08:01:12 AM,03/22/2016 08:01:51 AM,03/22/2016 08:02:19 AM,03/22/2016 08:20:23 AM,03/22/2016 08:30:47 AM,03/22/2016 08:59:53 AM,Code 2 Transport,03/22/2016 09:40:14 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160820642-70 +131670335,85,13056834,Medical Incident,06/16/2013,06/16/2013,06/16/2013 08:36:47 PM,06/16/2013 08:38:58 PM,06/16/2013 08:39:43 PM,06/16/2013 08:39:48 PM,06/16/2013 08:43:27 PM,06/16/2013 08:53:27 PM,06/16/2013 09:07:00 PM,Code 2 Transport,06/16/2013 09:17:25 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131670335-85 +110340382,T07,11011335,Structure Fire,02/03/2011,02/03/2011,02/03/2011 11:17:26 PM,02/03/2011 11:18:45 PM,02/03/2011 11:19:51 PM,02/03/2011 11:21:35 PM,02/03/2011 11:24:31 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,02/03/2011 11:31:34 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,false,,1,TRUCK,6,2,10,Mission,"(37.7657832995202, -122.407534230594)",110340382-T07 +160480543,63,16019237,Medical Incident,02/17/2016,02/16/2016,02/17/2016 06:52:29 AM,02/17/2016 06:52:29 AM,02/17/2016 06:52:38 AM,02/17/2016 06:52:58 AM,02/17/2016 06:56:53 AM,02/17/2016 07:14:42 AM,02/17/2016 07:37:48 AM,Code 2 Transport,02/17/2016 08:17:40 AM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160480543-63 +103290057,E32,10105269,Alarms,11/25/2010,11/24/2010,11/25/2010 07:06:39 AM,11/25/2010 07:08:20 AM,11/25/2010 07:08:43 AM,11/25/2010 07:10:14 AM,11/25/2010 07:13:33 AM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/25/2010 07:17:20 AM,300 Block of EUGENIA AVE,SF,94110,B06,32,5654,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7411572625173, -122.419119707434)",103290057-E32 +140990312,E33,14033525,Electrical Hazard,04/09/2014,04/09/2014,04/09/2014 05:08:48 PM,04/09/2014 05:10:44 PM,04/09/2014 05:11:00 PM,04/09/2014 05:12:16 PM,04/09/2014 05:15:27 PM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Fire,04/09/2014 05:28:16 PM,0 Block of DEL MONTE ST,SAN FRANCISCO,94112,B09,43,6176,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.715834493274, -122.443442239902)",140990312-E33 +131820241,83,13062054,Medical Incident,07/01/2013,07/01/2013,07/01/2013 02:06:13 PM,07/01/2013 02:08:14 PM,07/01/2013 02:08:45 PM,07/01/2013 02:08:55 PM,07/01/2013 02:13:59 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Medical Examiner,07/01/2013 03:28:24 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",131820241-83 +160022046,62,16000774,Medical Incident,01/02/2016,01/02/2016,01/02/2016 03:28:27 PM,01/02/2016 03:28:27 PM,01/02/2016 03:28:48 PM,01/02/2016 03:29:03 PM,01/02/2016 03:32:27 PM,01/02/2016 03:40:27 PM,01/02/2016 03:47:57 PM,Code 2 Transport,01/02/2016 04:02:23 PM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7546409372119, -122.418601779487)",160022046-62 +160012583,58,16000394,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:58:00 PM,01/01/2016 03:58:00 PM,01/01/2016 03:58:00 PM,01/01/2016 03:58:00 PM,01/01/2016 03:58:00 PM,01/01/2016 04:12:45 PM,01/01/2016 04:21:21 PM,Code 2 Transport,01/01/2016 05:03:04 PM,MARIN ST/ILLINOIS ST,San Francisco,94124,B10,25,2641,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7490658211877, -122.3864279303)",160012583-58 +102840376,E26,10090584,Odor (Strange / Unknown),10/11/2010,10/11/2010,10/11/2010 10:56:37 PM,10/11/2010 10:59:20 PM,10/11/2010 10:59:28 PM,10/11/2010 11:00:31 PM,10/11/2010 11:03:12 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Other,10/11/2010 11:05:10 PM,1600 Block of NOE ST,SF,94131,B06,26,5573,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7430265668943, -122.431130295533)",102840376-E26 +111560086,60,11051502,Medical Incident,06/05/2011,06/04/2011,06/05/2011 05:02:25 AM,06/05/2011 05:04:34 AM,06/05/2011 05:04:54 AM,06/05/2011 05:05:01 AM,06/05/2011 05:06:09 AM,06/05/2011 05:19:16 AM,06/05/2011 05:28:20 AM,Code 2 Transport,06/05/2011 05:58:09 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,,1,MEDIC,1,2,5,Western Addition,"(37.7818979587644, -122.428207532186)",111560086-60 +110580246,B02,11019134,Alarms,02/27/2011,02/27/2011,02/27/2011 04:08:10 PM,02/27/2011 04:09:31 PM,02/27/2011 04:09:57 PM,02/27/2011 04:10:59 PM,02/27/2011 04:13:41 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Other,02/27/2011 04:16:06 PM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,,1,CHIEF,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",110580246-B02 +103110146,E44,10099704,Other,11/07/2010,11/07/2010,11/07/2010 10:07:57 AM,11/07/2010 10:07:58 AM,11/07/2010 10:07:58 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Fire,11/07/2010 10:23:22 AM,SAN BRUNO AV/WILDE AV,SF,94134,B10,44,6317,3,3,3,true,,1,ENGINE,1,10,10,Visitacion Valley,"(37.7166501503264, -122.399828144562)",103110146-E44 +160304094,KM07,16011995,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:25:22 PM,01/30/2016 11:25:39 PM,01/30/2016 11:26:44 PM,01/30/2016 11:31:11 PM,01/30/2016 11:32:37 PM,01/30/2016 11:43:42 PM,01/30/2016 11:52:11 PM,Code 2 Transport,01/31/2016 12:32:08 AM,MARKET ST/HYDE ST,San Francisco,94103,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160304094-KM07 +140740042,E02,14024902,Structure Fire,03/15/2014,03/14/2014,03/15/2014 03:26:49 AM,03/15/2014 03:26:50 AM,03/15/2014 03:26:58 AM,03/15/2014 03:28:27 AM,03/15/2014 03:30:01 AM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Fire,03/15/2014 03:30:19 AM,GRANT AV/BROADWAY,SAN FRANCISCO,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",140740042-E02 +160573324,70,16022896,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:15:46 PM,02/26/2016 08:19:28 PM,02/26/2016 08:20:23 PM,02/26/2016 08:20:32 PM,02/26/2016 08:25:55 PM,02/26/2016 08:39:39 PM,02/26/2016 08:46:52 PM,Code 2 Transport,02/26/2016 09:14:43 PM,5TH ST/KING ST,San Francisco,94107,B03,8,2235,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7745780664091, -122.396261347887)",160573324-70 +133480127,E16,13118063,Traffic Collision,12/14/2013,12/14/2013,12/14/2013 10:19:01 AM,12/14/2013 10:19:05 AM,12/14/2013 10:19:46 AM,12/14/2013 10:21:27 AM,12/14/2013 10:23:00 AM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 10:45:18 AM,DIVISADERO ST/GREENWICH ST,SF,94123,B04,16,4166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7981119509009, -122.442467912575)",133480127-E16 +160564169,71,16022571,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:32:03 PM,02/25/2016 11:33:46 PM,02/25/2016 11:33:52 PM,02/25/2016 11:34:20 PM,02/25/2016 11:45:00 PM,02/25/2016 11:52:26 PM,02/26/2016 12:10:01 AM,Code 3 Transport,02/26/2016 12:53:46 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160564169-71 +130660233,81,13022082,Medical Incident,03/07/2013,03/07/2013,03/07/2013 03:35:54 PM,03/07/2013 03:37:01 PM,03/07/2013 03:40:56 PM,03/07/2013 03:41:02 PM,03/07/2013 03:42:43 PM,04/25/2016 01:53:57 PM,04/25/2016 01:53:57 PM,Other,03/07/2013 03:41:09 PM,EDDY ST/TAYLOR ST,SF,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",130660233-81 +133640073,AM02,13123509,Medical Incident,12/30/2013,12/29/2013,12/30/2013 06:45:28 AM,12/30/2013 06:47:34 AM,12/30/2013 06:47:45 AM,12/30/2013 06:48:36 AM,12/30/2013 06:50:48 AM,12/30/2013 07:14:36 AM,12/30/2013 07:26:29 AM,Code 2 Transport,12/30/2013 08:06:28 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",133640073-AM02 +122780121,KM05,12091860,Medical Incident,10/04/2012,10/04/2012,10/04/2012 10:33:19 AM,10/04/2012 10:34:10 AM,10/04/2012 10:36:02 AM,10/04/2012 10:36:44 AM,10/04/2012 10:47:02 AM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,Patient Declined Transport,10/04/2012 11:21:34 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",122780121-KM05 +112710026,92,11089414,Medical Incident,09/28/2011,09/27/2011,09/28/2011 02:21:28 AM,09/28/2011 02:22:25 AM,09/28/2011 02:22:49 AM,09/28/2011 02:23:07 AM,09/28/2011 02:25:58 AM,09/28/2011 02:41:38 AM,09/28/2011 02:48:37 AM,Code 3 Transport,09/28/2011 03:31:25 AM,700 Block of DIAMOND ST,SF,94114,B06,24,5521,3,3,3,true,,1,MEDIC,1,6,8,Noe Valley,"(37.7515609916355, -122.436268817742)",112710026-92 +132900241,E03,13098684,Medical Incident,10/17/2013,10/17/2013,10/17/2013 02:06:20 PM,10/17/2013 02:08:51 PM,10/17/2013 02:09:06 PM,10/17/2013 02:09:20 PM,10/17/2013 02:13:14 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 02:41:57 PM,500 Block of GEARY ST,SF,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7869413406164, -122.411939021128)",132900241-E03 +160633831,60,16025291,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:33:45 PM,03/03/2016 10:36:37 PM,03/03/2016 10:41:24 PM,03/03/2016 10:41:58 PM,03/03/2016 10:43:59 PM,03/03/2016 11:00:11 PM,03/03/2016 11:15:00 PM,Code 2 Transport,03/03/2016 11:59:08 PM,24TH ST/YORK ST,San Francisco,94110,B06,9,5531,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7528524062967, -122.408188967839)",160633831-60 +140720255,E01,14024373,Medical Incident,03/13/2014,03/13/2014,03/13/2014 03:20:50 PM,03/13/2014 03:23:00 PM,03/13/2014 03:23:32 PM,03/13/2014 03:24:43 PM,03/13/2014 03:27:26 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Code 2 Transport,03/13/2014 03:35:51 PM,100 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",140720255-E01 +140020135,T10,14000629,Medical Incident,01/02/2014,01/02/2014,01/02/2014 09:19:25 AM,01/02/2014 09:20:23 AM,01/02/2014 09:20:36 AM,01/02/2014 09:21:51 AM,01/02/2014 09:25:08 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/02/2014 09:36:41 AM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",140020135-T10 +112820048,B07,11093243,Alarms,10/09/2011,10/08/2011,10/09/2011 03:22:19 AM,10/09/2011 03:23:44 AM,10/09/2011 03:24:04 AM,10/09/2011 03:25:58 AM,10/09/2011 03:30:40 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 03:38:32 AM,1200 Block of WILLARD ST,SF,94117,B05,12,5145,3,3,3,false,,1,CHIEF,3,5,5,Inner Sunset,"(37.7656904785056, -122.454566783502)",112820048-B07 +130730381,E10,13024514,Medical Incident,03/14/2013,03/14/2013,03/14/2013 11:33:06 PM,03/14/2013 11:33:56 PM,03/14/2013 11:34:39 PM,03/14/2013 11:36:17 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 11:37:41 PM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",130730381-E10 +111870400,E31,11062007,Citizen Assist / Service Call,07/06/2011,07/06/2011,07/06/2011 11:58:40 PM,07/06/2011 11:58:52 PM,07/06/2011 11:59:05 PM,07/07/2011 12:00:19 AM,07/07/2011 12:08:35 AM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/07/2011 12:10:13 AM,PARK PRESIDIO BL/BALBOA ST,SF,94118,B07,31,7145,3,3,3,false,,1,ENGINE,1,7,1,Inner Richmond,"(37.7768682293368, -122.472039541478)",111870400-E31 +102800174,KM02,10088996,Medical Incident,10/07/2010,10/07/2010,10/07/2010 01:31:37 PM,10/07/2010 01:32:31 PM,10/07/2010 01:32:42 PM,10/07/2010 01:33:33 PM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,Other,10/07/2010 01:38:22 PM,1100 Block of COLUMBUS AVE,SF,94133,B01,28,1434,3,3,3,false,,1,PRIVATE,2,1,3,Russian Hill,"(37.8050697823361, -122.416976744235)",102800174-KM02 +112300250,T07,11076002,Alarms,08/18/2011,08/18/2011,08/18/2011 03:43:07 PM,08/18/2011 03:43:07 PM,08/18/2011 03:43:37 PM,08/18/2011 03:44:56 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,Other,08/18/2011 03:46:04 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",112300250-T07 +131460290,55,13049605,Medical Incident,05/26/2013,05/26/2013,05/26/2013 04:34:36 PM,05/26/2013 04:35:16 PM,05/26/2013 04:35:40 PM,05/26/2013 04:37:24 PM,05/26/2013 05:13:43 PM,05/26/2013 05:33:40 PM,05/26/2013 06:04:46 PM,Code 2 Transport,05/26/2013 06:16:45 PM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8054738067872, -122.407570127181)",131460290-55 +160163805,91,16006625,Medical Incident,01/16/2016,01/16/2016,01/16/2016 11:09:38 PM,01/16/2016 11:11:32 PM,01/16/2016 11:11:47 PM,01/16/2016 11:11:56 PM,01/16/2016 11:14:47 PM,01/16/2016 11:25:29 PM,01/16/2016 11:42:13 PM,Code 2 Transport,01/17/2016 12:05:26 AM,700 Block of 7TH AVE,San Francisco,94118,B07,31,7132,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",160163805-91 +160392360,85,16015691,Medical Incident,02/08/2016,02/08/2016,02/08/2016 03:42:04 PM,02/08/2016 03:43:56 PM,02/08/2016 03:44:01 PM,02/08/2016 03:45:00 PM,02/08/2016 03:56:02 PM,02/08/2016 04:12:32 PM,02/08/2016 04:42:13 PM,Code 2 Transport,02/08/2016 05:27:45 PM,26TH AV/IRVING ST,San Francisco,94122,B08,22,7452,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7632313510262, -122.484626651835)",160392360-85 +111370263,KM12,11045639,Medical Incident,05/17/2011,05/17/2011,05/17/2011 05:21:38 PM,05/17/2011 05:24:30 PM,05/17/2011 05:25:19 PM,05/17/2011 05:25:56 PM,05/17/2011 05:37:47 PM,05/17/2011 05:53:31 PM,05/17/2011 06:12:52 PM,Code 2 Transport,05/17/2011 06:38:46 PM,0 Block of BARTLETT ST,SF,94110,B06,7,5456,2,2,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7561630112752, -122.420003504083)",111370263-KM12 +120170191,T06,12005710,Medical Incident,01/17/2012,01/17/2012,01/17/2012 02:06:54 PM,01/17/2012 02:08:02 PM,01/17/2012 02:08:31 PM,01/17/2012 02:09:48 PM,01/17/2012 02:11:51 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 02:14:42 PM,400 Block of HAIGHT ST,SF,94117,B02,6,3524,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",120170191-T06 +112470343,T06,11081585,Alarms,09/04/2011,09/04/2011,09/04/2011 08:01:53 PM,09/04/2011 08:02:49 PM,09/04/2011 08:02:58 PM,09/04/2011 08:04:13 PM,09/04/2011 08:05:56 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 08:21:27 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,false,,1,TRUCK,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",112470343-T06 +160501810,KM11,16020100,Medical Incident,02/19/2016,02/19/2016,02/19/2016 01:26:56 PM,02/19/2016 01:27:09 PM,02/19/2016 01:29:08 PM,02/19/2016 01:29:40 PM,02/19/2016 01:40:28 PM,02/19/2016 01:59:00 PM,02/19/2016 03:01:09 PM,Code 2 Transport,02/19/2016 03:08:42 PM,0 Block of SAN JACINTO WAY,San Francisco,94127,B09,39,8551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7351849311429, -122.463509193108)",160501810-KM11 +132310368,E17,13078157,Medical Incident,08/19/2013,08/19/2013,08/19/2013 08:04:28 PM,08/19/2013 08:04:56 PM,08/19/2013 08:05:36 PM,08/19/2013 08:07:27 PM,08/19/2013 08:10:03 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 08:19:22 PM,OAKDALE AV/MENDELL ST,SF,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7345987087422, -122.390344550544)",132310368-E17 +140070270,77,14002560,Medical Incident,01/07/2014,01/07/2014,01/07/2014 05:34:39 PM,01/07/2014 05:35:52 PM,01/07/2014 05:36:11 PM,01/07/2014 05:36:31 PM,01/07/2014 05:40:57 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 05:44:30 PM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,E,E,3,false,Potentially Life-Threatening,1,MEDIC,3,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",140070270-77 +160300732,55,16011695,Medical Incident,01/30/2016,01/29/2016,01/30/2016 07:04:03 AM,01/30/2016 07:08:51 AM,01/30/2016 07:09:14 AM,01/30/2016 07:09:34 AM,01/30/2016 07:16:55 AM,01/30/2016 07:27:45 AM,01/30/2016 07:48:12 AM,Code 2 Transport,01/30/2016 08:22:57 AM,400 Block of HOWARD ST,San Francisco,94105,B03,35,2141,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7889242269803, -122.395641699334)",160300732-55 +160322426,KM05,16012649,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:10:45 PM,02/01/2016 04:12:19 PM,02/01/2016 04:13:04 PM,02/01/2016 04:15:01 PM,02/01/2016 04:18:51 PM,02/01/2016 04:36:38 PM,02/01/2016 04:57:28 PM,Code 2 Transport,02/01/2016 05:24:50 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160322426-KM05 +132610163,77,13088349,Medical Incident,09/18/2013,09/18/2013,09/18/2013 11:04:42 AM,09/18/2013 11:07:34 AM,09/18/2013 11:09:32 AM,09/18/2013 11:09:45 AM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 11:19:16 AM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7927299343809, -122.40328650281)",132610163-77 +120080029,E06,12002636,Outside Fire,01/08/2012,01/07/2012,01/08/2012 01:45:21 AM,01/08/2012 01:45:46 AM,01/08/2012 01:46:21 AM,01/08/2012 01:46:31 AM,01/08/2012 01:47:38 AM,04/25/2016 02:00:44 PM,04/25/2016 02:00:44 PM,Other,01/08/2012 01:50:25 AM,HAIGHT ST/STEINER ST,SF,94117,B05,6,3633,3,3,3,true,Fire,1,ENGINE,1,5,5,Haight Ashbury,"(37.7718972649576, -122.432092300663)",120080029-E06 +140750096,E41,14025320,Structure Fire,03/16/2014,03/15/2014,03/16/2014 06:39:16 AM,03/16/2014 06:40:02 AM,03/16/2014 06:40:30 AM,03/16/2014 06:41:20 AM,03/16/2014 06:43:43 AM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Fire,03/16/2014 06:48:40 AM,800 Block of LOMBARD ST,SAN FRANCISCO,94133,B01,28,1435,3,3,3,false,Alarm,1,ENGINE,3,1,3,Russian Hill,"(37.8025702182431, -122.415513808402)",140750096-E41 +131230191,E28,13041442,Traffic Collision,05/03/2013,05/03/2013,05/03/2013 11:51:58 AM,05/03/2013 11:52:53 AM,05/03/2013 11:53:29 AM,05/03/2013 11:54:59 AM,05/03/2013 11:57:13 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 11:58:14 AM,COLUMBUS AV/LOMBARD ST,SF,94133,B01,28,1435,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8027432009748, -122.413718749936)",131230191-E28 +122040115,E33,12067759,Alarms,07/22/2012,07/22/2012,07/22/2012 09:07:46 AM,07/22/2012 09:09:40 AM,07/22/2012 09:09:50 AM,07/22/2012 09:11:22 AM,07/22/2012 09:13:35 AM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 09:24:40 AM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",122040115-E33 +160460686,89,16018418,Medical Incident,02/15/2016,02/14/2016,02/15/2016 07:40:11 AM,02/15/2016 07:41:24 AM,02/15/2016 07:41:36 AM,02/15/2016 07:41:45 AM,02/15/2016 07:46:06 AM,02/15/2016 08:00:16 AM,02/15/2016 08:20:07 AM,Code 2 Transport,02/15/2016 09:03:54 AM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",160460686-89 +122840160,E03,12093934,Medical Incident,10/10/2012,10/10/2012,10/10/2012 12:51:43 PM,10/10/2012 12:53:52 PM,10/10/2012 12:54:13 PM,10/10/2012 12:55:18 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,04/25/2016 01:56:22 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,E,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",122840160-E03 +132780372,66,13094667,Medical Incident,10/05/2013,10/05/2013,10/05/2013 08:50:07 PM,10/05/2013 08:51:44 PM,10/05/2013 08:52:46 PM,10/05/2013 08:52:56 PM,10/05/2013 09:01:39 PM,10/05/2013 09:22:10 PM,10/05/2013 09:43:03 PM,Code 2 Transport,10/05/2013 10:15:05 PM,100 Block of KINGSTON ST,SF,94110,B06,32,5626,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7414881841782, -122.421846740838)",132780372-66 +160041249,AM12,16001548,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:42:53 AM,01/04/2016 10:43:53 AM,01/04/2016 10:44:08 AM,01/04/2016 10:45:19 AM,01/04/2016 10:50:23 AM,01/04/2016 11:10:22 AM,01/04/2016 11:24:52 AM,Code 2 Transport,01/04/2016 12:07:23 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160041249-AM12 +160861773,52,16034175,Medical Incident,03/26/2016,03/26/2016,03/26/2016 01:15:08 PM,03/26/2016 01:17:00 PM,03/26/2016 01:18:08 PM,03/26/2016 01:18:22 PM,03/26/2016 01:37:39 PM,03/26/2016 02:01:16 PM,03/26/2016 02:14:13 PM,Code 2 Transport,03/26/2016 02:39:02 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160861773-52 +140090159,E40,14003109,Other,01/09/2014,01/09/2014,01/09/2014 10:59:12 AM,01/09/2014 11:00:47 AM,01/09/2014 11:01:25 AM,01/09/2014 11:02:40 AM,01/09/2014 11:04:50 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 11:09:22 AM,1400 Block of NORIEGA ST,SF,94122,B08,40,7431,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7541770390488, -122.479155289903)",140090159-E40 +113590092,KM14,11119291,Medical Incident,12/25/2011,12/25/2011,12/25/2011 10:30:09 AM,12/25/2011 10:31:39 AM,12/25/2011 10:32:10 AM,12/25/2011 10:32:31 AM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,No Merit,12/25/2011 10:38:57 AM,5TH ST/MARKET ST,SF,94103,B03,1,1364,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",113590092-KM14 +160651585,53,16025922,Medical Incident,03/05/2016,03/05/2016,03/05/2016 12:47:31 PM,03/05/2016 12:47:31 PM,03/05/2016 12:48:06 PM,03/05/2016 12:48:11 PM,03/05/2016 12:54:34 PM,03/05/2016 01:14:46 PM,03/05/2016 01:26:05 PM,Code 2 Transport,03/05/2016 02:20:12 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160651585-53 +131460116,E25,13049454,Electrical Hazard,05/26/2013,05/25/2013,05/26/2013 07:55:43 AM,05/26/2013 07:57:41 AM,05/26/2013 07:58:03 AM,05/26/2013 07:59:45 AM,05/26/2013 08:06:44 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 08:34:38 AM,DELTA ST/LELAND AV,SF,94134,B09,44,6257,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7131255723585, -122.409488902744)",131460116-E25 +102960053,B04,10094323,Alarms,10/23/2010,10/22/2010,10/23/2010 03:13:24 AM,10/23/2010 03:15:07 AM,10/23/2010 03:15:14 AM,10/23/2010 03:16:55 AM,10/23/2010 03:19:11 AM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 03:32:57 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",102960053-B04 +122100226,KM09,12069803,Traffic Collision,07/28/2012,07/28/2012,07/28/2012 03:57:42 PM,07/28/2012 03:59:26 PM,07/28/2012 04:01:24 PM,07/28/2012 04:01:28 PM,07/28/2012 04:13:44 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Patient Declined Transport,07/28/2012 05:04:30 PM,MASON ST/BAY ST,SF,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8056184799358, -122.413604167697)",122100226-KM09 +110420348,T14,11014043,Alarms,02/11/2011,02/11/2011,02/11/2011 07:28:13 PM,02/11/2011 07:30:02 PM,02/11/2011 07:30:07 PM,02/11/2011 07:31:24 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 07:38:45 PM,800 Block of 34TH AVE,SF,94121,B07,34,7252,3,3,3,false,,1,TRUCK,3,7,1,Outer Richmond,"(37.7730595887208, -122.493969430949)",110420348-T14 +160481212,56,16019287,Medical Incident,02/17/2016,02/17/2016,02/17/2016 10:23:00 AM,02/17/2016 10:23:41 AM,02/17/2016 10:24:27 AM,02/17/2016 10:25:13 AM,02/17/2016 10:38:27 AM,02/17/2016 11:05:19 AM,02/17/2016 11:19:18 AM,Code 2 Transport,02/17/2016 11:53:44 AM,2800 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Portola,"(37.7258169452923, -122.402916975907)",160481212-56 +120200395,66,12006866,Medical Incident,01/20/2012,01/20/2012,01/20/2012 09:24:17 PM,01/20/2012 09:24:57 PM,01/20/2012 09:26:08 PM,01/20/2012 09:26:15 PM,01/20/2012 09:45:37 PM,01/20/2012 10:03:37 PM,01/20/2012 10:12:07 PM,Code 2 Transport,01/20/2012 10:31:41 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",120200395-66 +140170088,E24,14005751,Medical Incident,01/17/2014,01/17/2014,01/17/2014 08:33:35 AM,01/17/2014 08:35:47 AM,01/17/2014 08:36:09 AM,01/17/2014 08:36:40 AM,01/17/2014 08:43:05 AM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,No Merit,01/17/2014 09:05:02 AM,0 Block of CRESTLINE DR,SF,94131,B06,24,5284,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Twin Peaks,"(37.7501301863303, -122.446483988175)",140170088-E24 +160052777,71,16002103,Medical Incident,01/05/2016,01/05/2016,01/05/2016 05:35:10 PM,01/05/2016 05:38:14 PM,01/05/2016 05:38:24 PM,01/05/2016 05:38:33 PM,01/05/2016 05:46:18 PM,01/05/2016 06:02:22 PM,01/05/2016 06:15:29 PM,Code 2 Transport,01/05/2016 06:52:37 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160052777-71 +160490170,64,16019577,Medical Incident,02/18/2016,02/17/2016,02/18/2016 01:56:45 AM,02/18/2016 01:58:49 AM,02/18/2016 01:59:04 AM,02/18/2016 01:59:11 AM,02/18/2016 02:01:34 AM,02/18/2016 02:15:58 AM,02/18/2016 02:29:03 AM,Code 2 Transport,02/18/2016 03:08:43 AM,KEARNY ST/COLUMBUS AV,San Francisco,94133,B01,13,1246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7969090575454, -122.405288399326)",160490170-64 +131020329,E13,13034405,Medical Incident,04/12/2013,04/12/2013,04/12/2013 09:31:56 PM,04/12/2013 09:34:44 PM,04/12/2013 09:35:04 PM,04/25/2016 01:53:20 PM,04/12/2013 09:38:33 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/12/2013 09:50:31 PM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",131020329-E13 +160473487,58,16019113,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:24:13 PM,02/16/2016 08:25:13 PM,02/16/2016 08:29:13 PM,02/16/2016 08:29:45 PM,02/16/2016 08:36:47 PM,02/16/2016 08:51:04 PM,02/16/2016 09:16:46 PM,Code 2 Transport,02/16/2016 09:38:46 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160473487-58 +113050399,T12,11101450,Alarms,11/01/2011,11/01/2011,11/01/2011 07:42:57 PM,11/01/2011 07:43:19 PM,11/01/2011 07:43:25 PM,11/01/2011 07:44:56 PM,11/01/2011 07:47:04 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 07:49:29 PM,1400 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,false,,1,TRUCK,2,5,5,Inner Sunset,"(37.7614340333644, -122.46176630545)",113050399-T12 +122180273,E41,12072394,Medical Incident,08/05/2012,08/05/2012,08/05/2012 05:05:08 PM,08/05/2012 05:06:14 PM,08/05/2012 05:08:42 PM,08/05/2012 05:09:33 PM,08/05/2012 05:12:38 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 05:14:45 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",122180273-E41 +113650368,KM07,11121419,Medical Incident,12/31/2011,12/31/2011,12/31/2011 10:23:31 PM,12/31/2011 10:25:17 PM,12/31/2011 10:26:50 PM,12/31/2011 10:27:06 PM,12/31/2011 10:43:18 PM,12/31/2011 10:50:57 PM,12/31/2011 11:13:04 PM,Code 2 Transport,12/31/2011 11:28:58 PM,2800 Block of FOLSOM ST,SF,94110,B06,7,5526,1,1,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7516999794245, -122.414074863195)",113650368-KM07 +133500366,T03,13118968,Structure Fire,12/16/2013,12/16/2013,12/16/2013 07:36:41 PM,12/16/2013 07:37:02 PM,12/16/2013 07:37:16 PM,12/16/2013 07:38:51 PM,12/16/2013 07:45:01 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,12/16/2013 07:45:05 PM,400 Block of VAN NESS AVE,SF,94102,B02,36,3237,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",133500366-T03 +140940147,E48,14031564,Medical Incident,04/04/2014,04/04/2014,04/04/2014 11:23:46 AM,04/04/2014 11:25:49 AM,04/04/2014 11:28:03 AM,04/04/2014 11:29:01 AM,04/04/2014 11:31:28 AM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Code 2 Transport,04/04/2014 11:48:39 AM,1400 Block of HALIBUT CT,TREASURE ISLAN,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",140940147-E48 +130840323,E13,13028163,Medical Incident,03/25/2013,03/25/2013,03/25/2013 07:17:31 PM,03/25/2013 07:18:01 PM,03/25/2013 07:19:20 PM,03/25/2013 07:20:07 PM,03/25/2013 07:22:50 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,Other,03/25/2013 07:41:31 PM,300 Block of GRANT AVE,SF,94108,B01,13,1315,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7903132062356, -122.405617299563)",130840323-E13 +160920563,55,16036340,Medical Incident,04/01/2016,03/31/2016,04/01/2016 07:11:05 AM,04/01/2016 07:11:53 AM,04/01/2016 07:12:24 AM,04/01/2016 07:12:33 AM,04/01/2016 07:22:20 AM,04/01/2016 07:53:53 AM,04/01/2016 08:23:45 AM,Code 2 Transport,04/01/2016 08:53:35 AM,1400 Block of STURGEON ST,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8265334272456, -122.376529052523)",160920563-55 +103430308,KM11,10109952,Medical Incident,12/09/2010,12/09/2010,12/09/2010 04:51:03 PM,12/09/2010 04:54:55 PM,12/09/2010 04:57:28 PM,04/25/2016 02:07:12 PM,12/09/2010 05:05:50 PM,12/09/2010 05:14:09 PM,04/25/2016 02:07:12 PM,Code 2 Transport,12/09/2010 05:55:20 PM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,2,2,2,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",103430308-KM11 +160140477,55,16005454,Medical Incident,01/14/2016,01/13/2016,01/14/2016 06:22:02 AM,01/14/2016 06:24:27 AM,01/14/2016 06:25:55 AM,01/14/2016 06:26:07 AM,01/14/2016 06:38:50 AM,01/14/2016 07:11:15 AM,01/14/2016 07:47:59 AM,Code 2 Transport,01/14/2016 08:17:31 AM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160140477-55 +131000023,KM07,13033470,Medical Incident,04/10/2013,04/09/2013,04/10/2013 01:19:02 AM,04/10/2013 01:20:23 AM,04/10/2013 01:21:08 AM,04/10/2013 01:22:12 AM,04/10/2013 01:25:42 AM,04/10/2013 01:37:54 AM,04/10/2013 01:59:34 AM,Code 2 Transport,04/10/2013 02:05:28 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",131000023-KM07 +140210208,E02,14007208,Medical Incident,01/21/2014,01/21/2014,01/21/2014 02:22:20 PM,01/21/2014 02:24:01 PM,01/21/2014 02:24:36 PM,01/21/2014 02:26:02 PM,01/21/2014 02:27:14 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/21/2014 02:35:04 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",140210208-E02 +132840173,AM20,13096607,Medical Incident,10/11/2013,10/11/2013,10/11/2013 01:15:45 PM,10/11/2013 01:16:07 PM,10/11/2013 01:17:09 PM,04/25/2016 01:50:19 PM,10/11/2013 01:28:20 PM,10/11/2013 01:42:19 PM,10/11/2013 01:58:56 PM,Code 2 Transport,10/11/2013 02:29:19 PM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",132840173-AM20 +160023269,58,16000930,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:20:13 PM,01/02/2016 09:20:13 PM,01/02/2016 09:27:58 PM,01/02/2016 09:28:09 PM,01/02/2016 09:32:51 PM,01/02/2016 09:48:32 PM,01/02/2016 09:53:38 PM,Code 2 Transport,01/02/2016 10:36:30 PM,OCTAVIA ST/MARKET ST,San Francisco,94102,B02,36,3311,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",160023269-58 +110320118,82,11010434,Medical Incident,02/01/2011,02/01/2011,02/01/2011 10:45:07 AM,02/01/2011 10:46:30 AM,02/01/2011 10:46:43 AM,02/01/2011 10:47:32 AM,04/25/2016 02:06:19 PM,02/01/2011 11:22:12 AM,02/01/2011 11:26:36 AM,Code 2 Transport,02/01/2011 12:01:24 PM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,true,,1,MEDIC,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",110320118-82 +160130801,82,16005096,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:30:45 AM,01/13/2016 08:32:54 AM,01/13/2016 08:33:06 AM,01/13/2016 08:33:20 AM,01/13/2016 08:39:28 AM,01/13/2016 08:58:00 AM,01/13/2016 09:18:28 AM,Code 3 Transport,01/13/2016 11:04:29 AM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7173197736494, -122.434883626306)",160130801-82 +110760074,E43,11024907,Alarms,03/17/2011,03/16/2011,03/17/2011 07:42:39 AM,03/17/2011 07:43:23 AM,03/17/2011 07:43:53 AM,03/17/2011 07:45:46 AM,03/17/2011 07:48:15 AM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 08:42:19 AM,700 Block of VELASCO AVE,SF,94134,B09,43,6246,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7098796520514, -122.418901425651)",110760074-E43 +110230284,T02,11007674,Structure Fire,01/23/2011,01/23/2011,01/23/2011 07:40:22 PM,01/23/2011 07:40:22 PM,01/23/2011 07:40:29 PM,01/23/2011 07:41:54 PM,01/23/2011 07:44:20 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/23/2011 07:44:34 PM,2100 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.8044382972452, -122.411605476142)",110230284-T02 +131230142,RS2,13041401,Medical Incident,05/03/2013,05/03/2013,05/03/2013 10:11:33 AM,05/03/2013 10:11:55 AM,05/03/2013 10:12:11 AM,05/03/2013 10:14:15 AM,05/03/2013 10:15:20 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,No Merit,05/03/2013 10:17:30 AM,2800 Block of 22ND ST,SF,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,6,9,Mission,"(37.7558599031957, -122.410817751206)",131230142-RS2 +140890368,E05,14030140,Medical Incident,03/30/2014,03/30/2014,03/30/2014 11:36:20 PM,03/30/2014 11:37:08 PM,03/30/2014 11:37:24 PM,03/30/2014 11:39:09 PM,03/30/2014 11:41:34 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Code 2 Transport,03/30/2014 11:48:01 PM,500 Block of FILLMORE ST,SAN FRANCISCO,94117,B05,5,3532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7744290293867, -122.430986461769)",140890368-E05 +160701279,88,16027810,Medical Incident,03/10/2016,03/10/2016,03/10/2016 11:03:20 AM,03/10/2016 11:04:29 AM,03/10/2016 11:07:44 AM,03/10/2016 11:08:17 AM,03/10/2016 11:14:17 AM,03/10/2016 11:23:49 AM,03/10/2016 11:32:22 AM,Code 2 Transport,03/10/2016 12:07:15 PM,1100 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Mission,"(37.7536444586415, -122.406325430802)",160701279-88 +132500466,RS1,13084641,Medical Incident,09/07/2013,09/07/2013,09/07/2013 11:38:23 PM,09/07/2013 11:38:56 PM,09/07/2013 11:40:51 PM,09/07/2013 11:42:38 PM,09/07/2013 11:44:36 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 12:11:40 AM,700 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",132500466-RS1 +160040123,53,16001432,Medical Incident,01/04/2016,01/03/2016,01/04/2016 01:06:37 AM,01/04/2016 01:08:14 AM,01/04/2016 01:09:38 AM,01/04/2016 01:09:44 AM,01/04/2016 01:18:59 AM,01/04/2016 01:39:21 AM,01/04/2016 01:39:22 AM,Code 2 Transport,01/04/2016 02:30:45 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160040123-53 +103530094,RC3,10113247,Traffic Collision,12/19/2010,12/18/2010,12/19/2010 04:12:25 AM,12/19/2010 04:14:31 AM,12/19/2010 04:16:18 AM,04/25/2016 02:07:02 PM,12/19/2010 04:26:18 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Unable to Locate,12/19/2010 04:30:29 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,,1,RESCUE CAPTAIN,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",103530094-RC3 +131760270,91,13059778,Medical Incident,06/25/2013,06/25/2013,06/25/2013 04:02:41 PM,06/25/2013 04:03:27 PM,06/25/2013 04:03:41 PM,06/25/2013 04:03:50 PM,06/25/2013 04:09:26 PM,06/25/2013 04:11:21 PM,06/25/2013 04:27:15 PM,Code 2 Transport,06/25/2013 04:39:05 PM,21ST ST/TREAT AV,SF,94110,B06,7,545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7573634626497, -122.413446855888)",131760270-91 +111830101,59,11060371,Medical Incident,07/02/2011,07/02/2011,07/02/2011 09:38:15 AM,07/02/2011 09:39:15 AM,07/02/2011 09:39:34 AM,07/02/2011 09:39:51 AM,07/02/2011 09:44:24 AM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,04/25/2016 02:03:52 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",111830101-59 +123520339,55,12117875,Medical Incident,12/17/2012,12/17/2012,12/17/2012 07:15:12 PM,12/17/2012 07:16:39 PM,12/17/2012 07:17:05 PM,12/17/2012 07:17:10 PM,12/17/2012 07:19:36 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Against Medical Advice,12/17/2012 08:00:10 PM,300 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",123520339-55 +130170050,85,13005673,Medical Incident,01/17/2013,01/16/2013,01/17/2013 06:56:10 AM,01/17/2013 06:57:49 AM,01/17/2013 06:58:12 AM,01/17/2013 06:58:23 AM,01/17/2013 07:11:05 AM,01/17/2013 07:30:40 AM,01/17/2013 07:49:22 AM,Code 2 Transport,01/17/2013 07:59:41 AM,1600 Block of QUESADA AVE,SF,94124,B10,17,6535,2,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7327119317696, -122.390462761272)",130170050-85 +160142705,AM14,16005656,Medical Incident,01/14/2016,01/14/2016,01/14/2016 04:57:30 PM,01/14/2016 04:59:41 PM,01/14/2016 05:00:25 PM,01/14/2016 05:02:06 PM,01/14/2016 05:08:43 PM,01/14/2016 05:36:02 PM,01/14/2016 06:09:58 PM,Code 2 Transport,01/14/2016 06:50:12 PM,2300 Block of 32ND AVE,San Francisco,94116,B08,18,7531,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7433678265215, -122.489754348894)",160142705-AM14 +132860012,AM22,13097124,Medical Incident,10/13/2013,10/12/2013,10/13/2013 12:44:53 AM,10/13/2013 12:45:22 AM,10/13/2013 12:45:56 AM,10/13/2013 12:46:26 AM,10/13/2013 12:50:09 AM,10/13/2013 01:03:13 AM,10/13/2013 01:06:57 AM,Code 2 Transport,10/13/2013 01:45:15 AM,2300 Block of MARKET ST,SF,94114,B05,6,5252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",132860012-AM22 +132210046,E13,13074524,Medical Incident,08/09/2013,08/08/2013,08/09/2013 07:34:29 AM,08/09/2013 07:35:03 AM,08/09/2013 07:35:16 AM,08/09/2013 07:36:21 AM,08/09/2013 07:38:55 AM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 07:49:00 AM,400 Block of DAVIS CT,SF,94111,B01,13,1132,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7967073395076, -122.398186156213)",132210046-E13 +110740103,RS1,11024289,Medical Incident,03/15/2011,03/15/2011,03/15/2011 09:30:48 AM,03/15/2011 09:31:49 AM,03/15/2011 09:32:29 AM,03/15/2011 09:33:45 AM,03/15/2011 09:36:02 AM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/15/2011 09:47:22 AM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,true,,1,RESCUE SQUAD,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",110740103-RS1 +111120379,RC3,11037172,Traffic Collision,04/22/2011,04/22/2011,04/22/2011 10:32:31 PM,04/22/2011 10:34:11 PM,04/22/2011 10:34:59 PM,04/22/2011 10:37:10 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/22/2011 10:42:29 PM,100 Block of 10TH ST,SF,94103,B02,29,2345,3,3,3,true,,1,RESCUE CAPTAIN,6,2,6,South of Market,"(37.7750968170762, -122.415590844463)",111120379-RC3 +113410145,KM14,11113012,Medical Incident,12/07/2011,12/07/2011,12/07/2011 10:23:36 AM,12/07/2011 10:24:16 AM,12/07/2011 10:25:00 AM,12/07/2011 10:25:41 AM,12/07/2011 10:35:28 AM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Patient Declined Transport,12/07/2011 10:44:42 AM,16TH ST/UTAH ST,SF,94103,B02,29,2421,3,3,3,false,,1,PRIVATE,2,2,10,Mission,"(37.7658422720667, -122.406552825622)",113410145-KM14 +122450165,88,12080984,Medical Incident,09/01/2012,09/01/2012,09/01/2012 12:26:03 PM,09/01/2012 12:27:39 PM,09/01/2012 12:27:50 PM,09/01/2012 12:27:57 PM,09/01/2012 12:39:51 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,No Merit,09/01/2012 12:43:23 PM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",122450165-88 +131440008,AM10,13048680,Medical Incident,05/24/2013,05/23/2013,05/24/2013 01:25:10 AM,05/24/2013 01:28:58 AM,05/24/2013 01:29:05 AM,05/24/2013 01:31:44 AM,05/24/2013 01:33:17 AM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Gone on Arrival,05/24/2013 01:55:59 AM,600 Block of SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",131440008-AM10 +120870285,E25,12028972,Medical Incident,03/27/2012,03/27/2012,03/27/2012 07:21:27 PM,03/27/2012 07:24:09 PM,03/27/2012 07:25:27 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 07:41:34 PM,2800 Block of 3RD ST,SF,94107,B10,25,2611,2,2,2,false,Non Life-threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7534661505978, -122.387955478164)",120870285-E25 +160262670,84,16010379,Medical Incident,01/26/2016,01/26/2016,01/26/2016 04:36:08 PM,01/26/2016 04:38:44 PM,01/26/2016 04:39:22 PM,01/26/2016 04:39:36 PM,01/26/2016 05:02:31 PM,01/26/2016 05:34:23 PM,01/26/2016 05:41:24 PM,Code 2 Transport,01/26/2016 06:30:46 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160262670-84 +160603233,KM03,16024066,Medical Incident,02/29/2016,02/29/2016,02/29/2016 08:02:10 PM,02/29/2016 08:02:10 PM,02/29/2016 08:03:29 PM,02/29/2016 08:03:47 PM,02/29/2016 08:14:05 PM,02/29/2016 08:23:36 PM,02/29/2016 08:36:50 PM,Code 2 Transport,02/29/2016 08:50:40 PM,500 Block of ASHBURY ST,San Francisco,94117,B05,21,4513,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7704798924053, -122.446959951281)",160603233-KM03 +121130184,KM05,12037515,Medical Incident,04/22/2012,04/22/2012,04/22/2012 01:54:49 PM,04/22/2012 01:55:10 PM,04/22/2012 01:55:51 PM,04/22/2012 01:56:46 PM,04/22/2012 02:04:57 PM,04/22/2012 02:12:22 PM,04/22/2012 02:58:31 PM,Code 2 Transport,04/22/2012 03:29:18 PM,GREAT HY/JOHN F KENNEDY DR,SF,94122,B08,23,7722,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7704356758824, -122.510925945877)",121130184-KM05 +111310236,T13,11043332,Alarms,05/11/2011,05/11/2011,05/11/2011 03:37:22 PM,05/11/2011 03:38:48 PM,05/11/2011 03:39:03 PM,05/11/2011 03:40:32 PM,05/11/2011 03:42:12 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/11/2011 03:58:22 PM,700 Block of SACRAMENTO ST,SF,94108,B01,13,1244,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7935266827738, -122.405381996327)",111310236-T13 +131550159,87,13052507,Medical Incident,06/04/2013,06/04/2013,06/04/2013 10:51:10 AM,06/04/2013 10:54:08 AM,06/04/2013 10:54:51 AM,06/04/2013 10:55:16 AM,06/04/2013 11:02:46 AM,06/04/2013 11:08:34 AM,06/04/2013 11:35:40 AM,Code 2 Transport,06/04/2013 12:01:30 PM,1100 Block of PINE ST,SF,94109,B01,41,1464,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7903887572034, -122.414938763678)",131550159-87 +110240300,75,11007965,Medical Incident,01/24/2011,01/24/2011,01/24/2011 04:30:18 PM,01/24/2011 04:30:42 PM,01/24/2011 04:32:16 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,01/24/2011 04:58:19 PM,01/24/2011 05:07:43 PM,Code 2 Transport,01/24/2011 05:37:50 PM,4TH ST/HOWARD ST,SF,94103,B03,1,2214,3,2,2,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",110240300-75 +112440016,93,11080311,Medical Incident,09/01/2011,08/31/2011,09/01/2011 12:42:59 AM,09/01/2011 12:43:59 AM,09/01/2011 12:44:29 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,04/25/2016 02:02:54 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,,1,MEDIC,3,3,6,South of Market,"(37.7821372491619, -122.397814506334)",112440016-93 +120960221,E26,12031822,Medical Incident,04/05/2012,04/05/2012,04/05/2012 03:32:01 PM,04/05/2012 03:33:53 PM,04/05/2012 03:34:18 PM,04/05/2012 03:35:03 PM,04/05/2012 03:40:36 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Other,04/05/2012 04:00:45 PM,2900 Block of DIAMOND ST,SF,94131,B09,26,8269,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",120960221-E26 +140230063,AM26,14007768,Medical Incident,01/23/2014,01/22/2014,01/23/2014 07:30:08 AM,01/23/2014 07:32:38 AM,01/23/2014 07:33:19 AM,01/23/2014 07:33:49 AM,01/23/2014 07:43:01 AM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Unable to Locate,01/23/2014 07:47:11 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",140230063-AM26 +160240731,67,16009456,Medical Incident,01/24/2016,01/23/2016,01/24/2016 07:30:28 AM,01/24/2016 07:30:28 AM,01/24/2016 07:31:07 AM,01/24/2016 07:34:32 AM,01/24/2016 07:53:55 AM,01/24/2016 08:06:49 AM,01/24/2016 08:27:57 AM,Code 2 Transport,01/24/2016 09:01:16 AM,400 Block of PERSIA AVE,San Francisco,94112,B09,43,6134,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7213809153444, -122.432441314928)",160240731-67 +160760738,77,16030032,Traffic Collision,03/16/2016,03/16/2016,03/16/2016 08:16:53 AM,03/16/2016 08:17:36 AM,03/16/2016 08:17:55 AM,03/16/2016 08:18:16 AM,03/16/2016 08:24:39 AM,03/16/2016 08:44:32 AM,03/16/2016 08:57:22 AM,Code 2 Transport,03/16/2016 09:29:58 AM,STEINER ST/WALLER ST,San Francisco,94117,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7709644257411, -122.431904325159)",160760738-77 +131690059,T17,13057274,Traffic Collision,06/18/2013,06/17/2013,06/18/2013 05:58:01 AM,06/18/2013 06:04:10 AM,06/18/2013 06:04:52 AM,06/18/2013 06:07:06 AM,06/18/2013 06:11:50 AM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,Other,06/18/2013 06:33:42 AM,100 Block of SAN BRUNO AVE,SF,94103,B10,42,6337,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,10,Mission,"(37.7690702954409, -122.405814382975)",131690059-T17 +160340417,62,16013248,Medical Incident,02/03/2016,02/02/2016,02/03/2016 05:48:44 AM,02/03/2016 05:52:01 AM,02/03/2016 05:52:22 AM,02/03/2016 05:52:32 AM,02/03/2016 05:59:32 AM,02/03/2016 06:25:07 AM,02/03/2016 06:25:13 AM,Code 3 Transport,02/03/2016 08:22:27 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",160340417-62 +160562137,60,16022409,Medical Incident,02/25/2016,02/25/2016,02/25/2016 01:52:39 PM,02/25/2016 01:54:39 PM,02/25/2016 01:59:16 PM,02/25/2016 01:59:27 PM,02/25/2016 02:17:31 PM,02/25/2016 02:49:46 PM,02/25/2016 02:59:07 PM,Code 2 Transport,02/25/2016 04:09:08 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160562137-60 +161011834,KM06,16040202,Medical Incident,04/10/2016,04/10/2016,04/10/2016 01:40:56 PM,04/10/2016 01:42:42 PM,04/10/2016 01:43:18 PM,04/10/2016 01:44:04 PM,04/10/2016 01:49:15 PM,04/10/2016 01:58:14 PM,04/10/2016 02:02:28 PM,Code 2 Transport,04/10/2016 02:41:23 PM,23RD ST/POTRERO AV,San Francisco,94110,B10,37,2554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Potrero Hill,"(37.7545642123343, -122.406480459209)",161011834-KM06 +123180179,KM09,12105760,Medical Incident,11/13/2012,11/13/2012,11/13/2012 12:07:37 PM,11/13/2012 12:08:13 PM,11/13/2012 12:08:31 PM,11/13/2012 12:09:18 PM,11/13/2012 12:12:20 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Medical Examiner,11/13/2012 12:47:40 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",123180179-KM09 +110800352,55,11026501,Medical Incident,03/21/2011,03/21/2011,03/21/2011 09:20:17 PM,03/21/2011 09:23:29 PM,03/21/2011 09:24:12 PM,03/21/2011 09:25:00 PM,03/21/2011 09:32:18 PM,03/21/2011 09:55:16 PM,03/21/2011 10:05:15 PM,Code 2 Transport,03/21/2011 10:42:09 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,true,,1,MEDIC,3,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",110800352-55 +123360418,T19,12111934,Other,12/01/2012,12/01/2012,12/01/2012 09:53:45 PM,12/01/2012 09:54:40 PM,12/01/2012 09:54:57 PM,12/01/2012 09:56:22 PM,12/01/2012 10:03:48 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 10:31:25 PM,CALL BOX: JOHN MUIR DR/SKYLINE BL,SF,94132,B08,19,8714,3,3,3,true,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7250443458965, -122.50306646178)",123360418-T19 +103470244,RS2,10111315,Medical Incident,12/13/2010,12/13/2010,12/13/2010 02:48:29 PM,12/13/2010 02:48:58 PM,12/13/2010 02:51:21 PM,12/13/2010 02:53:17 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 02:55:59 PM,1500 Block of 15TH ST,SF,94103,B02,7,522,3,3,3,false,,1,RESCUE SQUAD,3,2,9,Mission,"(37.7666745282978, -122.418897837337)",103470244-RS2 +112690206,E29,11088928,Traffic Collision,09/26/2011,09/26/2011,09/26/2011 02:03:28 PM,09/26/2011 02:06:18 PM,09/26/2011 02:06:35 PM,09/26/2011 02:07:27 PM,09/26/2011 02:09:06 PM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/26/2011 02:19:09 PM,0 Block of CONNECTICUT ST,SF,94107,B03,29,2425,3,3,3,true,,1,ENGINE,1,3,10,Mission Bay,"(37.7657165510162, -122.397869370472)",112690206-E29 +160342906,93,16013530,Medical Incident,02/03/2016,02/03/2016,02/03/2016 06:42:05 PM,02/03/2016 06:42:05 PM,02/03/2016 06:42:43 PM,02/03/2016 06:42:56 PM,02/03/2016 06:49:54 PM,02/03/2016 06:58:18 PM,02/03/2016 07:12:12 PM,Code 2 Transport,02/03/2016 08:00:08 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160342906-93 +122050305,68,12068276,Medical Incident,07/23/2012,07/23/2012,07/23/2012 07:30:36 PM,07/23/2012 07:30:54 PM,07/23/2012 07:31:06 PM,07/23/2012 07:32:42 PM,07/23/2012 07:33:31 PM,07/23/2012 07:47:06 PM,07/23/2012 07:52:27 PM,Code 2 Transport,07/23/2012 08:20:57 PM,MARKET ST/4TH ST,SF,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",122050305-68 +121000141,E01,12033096,Other,04/09/2012,04/09/2012,04/09/2012 10:53:09 AM,04/09/2012 10:54:30 AM,04/09/2012 10:54:41 AM,04/09/2012 10:56:11 AM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Fire,04/09/2012 11:02:11 AM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",121000141-E01 +160300619,KM03,16011683,Medical Incident,01/30/2016,01/29/2016,01/30/2016 05:47:43 AM,01/30/2016 05:50:51 AM,01/30/2016 05:52:20 AM,01/30/2016 05:53:47 AM,01/30/2016 06:05:41 AM,01/30/2016 06:38:43 AM,01/30/2016 07:00:01 AM,Code 2 Transport,01/30/2016 07:31:34 AM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8038770970726, -122.404157077302)",160300619-KM03 +160681176,60,16027075,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:22:32 AM,03/08/2016 10:22:32 AM,03/08/2016 10:23:04 AM,03/08/2016 10:23:10 AM,03/08/2016 10:42:35 AM,03/08/2016 11:19:19 AM,03/08/2016 11:33:03 AM,Code 2 Transport,03/08/2016 12:13:22 PM,24TH ST/BARTLETT ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7521714122228, -122.419557366822)",160681176-60 +160822265,55,16032611,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:57:31 PM,03/22/2016 02:57:31 PM,03/22/2016 02:58:55 PM,03/22/2016 02:59:09 PM,03/22/2016 03:11:16 PM,03/22/2016 03:29:05 PM,03/22/2016 03:51:08 PM,Code 2 Transport,03/22/2016 04:30:49 PM,100 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5646,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7372540256563, -122.422102908674)",160822265-55 +110800323,E17,11026476,Medical Incident,03/21/2011,03/21/2011,03/21/2011 07:31:24 PM,03/21/2011 07:32:32 PM,03/21/2011 07:32:52 PM,03/21/2011 07:34:11 PM,03/21/2011 07:37:21 PM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 07:41:52 PM,0 Block of FLORA ST,SF,94124,B10,17,6472,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7318711159459, -122.394396938807)",110800323-E17 +102700011,60,10085516,Medical Incident,09/27/2010,09/26/2010,09/27/2010 12:37:43 AM,09/27/2010 12:38:08 AM,09/27/2010 12:40:04 AM,09/27/2010 12:40:15 AM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,Other,09/27/2010 12:41:38 AM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,2,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",102700011-60 +103100320,E36,10099508,Structure Fire,11/06/2010,11/06/2010,11/06/2010 07:59:37 PM,11/06/2010 07:59:37 PM,11/06/2010 08:00:17 PM,11/06/2010 08:01:05 PM,11/06/2010 08:01:23 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 08:01:36 PM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7779770860913, -122.409387007126)",103100320-E36 +160180110,64,16007073,Medical Incident,01/18/2016,01/17/2016,01/18/2016 12:54:37 AM,01/18/2016 12:57:06 AM,01/18/2016 12:57:44 AM,01/18/2016 12:58:06 AM,01/18/2016 01:02:23 AM,01/18/2016 01:10:03 AM,01/18/2016 01:17:18 AM,Code 2 Transport,01/18/2016 01:59:52 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821161321441, -122.407160717737)",160180110-64 +131440130,AR1,13048781,Administrative,05/24/2013,05/24/2013,05/24/2013 10:56:06 AM,05/24/2013 10:56:11 AM,05/24/2013 10:56:28 AM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Other,05/24/2013 10:58:33 AM,1400 Block of EVANS AVE,SF,94124,B10,25,6521,3,3,3,false,,1,INVESTIGATION,1,10,10,Bayview Hunters Point,"(37.7413198233919, -122.385730461663)",131440130-AR1 +131130007,E07,13037947,Medical Incident,04/23/2013,04/22/2013,04/23/2013 12:15:52 AM,04/23/2013 12:16:31 AM,04/23/2013 12:17:34 AM,04/23/2013 12:18:59 AM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/23/2013 12:23:26 AM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.752711512136, -122.411436461904)",131130007-E07 +140740404,RC1,14025199,Medical Incident,03/15/2014,03/15/2014,03/15/2014 09:42:41 PM,03/15/2014 09:43:54 PM,03/15/2014 09:45:06 PM,03/15/2014 09:45:06 PM,03/15/2014 09:47:52 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Code 2 Transport,03/15/2014 09:57:26 PM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",140740404-RC1 +132940281,92,13100070,Traffic Collision,10/21/2013,10/21/2013,10/21/2013 04:50:43 PM,10/21/2013 04:51:23 PM,10/21/2013 04:51:56 PM,10/21/2013 04:52:54 PM,10/21/2013 05:04:59 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Patient Declined Transport,10/21/2013 05:08:19 PM,17TH ST/SAN BRUNO AV,SF,94110,B02,29,2421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Potrero Hill,"(37.7646059683542, -122.405463421253)",132940281-92 +132420065,55,13081535,Medical Incident,08/30/2013,08/29/2013,08/30/2013 05:40:18 AM,08/30/2013 05:41:57 AM,08/30/2013 05:42:36 AM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,04/25/2016 01:51:03 PM,900 Block of COLUMBUS AVE,SF,94133,B01,28,1435,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",132420065-55 +140770319,RS2,14026185,Structure Fire,03/18/2014,03/18/2014,03/18/2014 07:12:37 PM,03/18/2014 07:12:47 PM,03/18/2014 07:13:32 PM,03/18/2014 07:15:50 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Fire,03/18/2014 07:15:58 PM,1800 Block of LOMBARD ST,SAN FRANCISCO,94123,B04,16,3352,3,3,3,false,Alarm,1,RESCUE SQUAD,10,4,2,Marina,"(37.8002483466327, -122.431914332097)",140770319-RS2 +133060143,E28,13104008,Traffic Collision,11/02/2013,11/02/2013,11/02/2013 11:25:09 AM,11/02/2013 11:27:29 AM,11/02/2013 11:27:54 AM,11/02/2013 11:28:19 AM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,Other,11/02/2013 11:40:33 AM,HYDE ST/BAY ST,SF,94109,B01,28,1614,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,2,Russian Hill,"(37.8047903067381, -122.420178127211)",133060143-E28 +160660495,60,16026267,Medical Incident,03/06/2016,03/05/2016,03/06/2016 05:09:16 AM,03/06/2016 05:09:16 AM,03/06/2016 05:09:30 AM,03/06/2016 05:10:18 AM,03/06/2016 05:12:23 AM,03/06/2016 05:34:03 AM,03/06/2016 05:47:43 AM,Code 2 Transport,03/06/2016 06:29:31 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160660495-60 +112760167,T03,11091333,Gas Leak (Natural and LP Gases),10/03/2011,10/03/2011,10/03/2011 11:09:04 AM,10/03/2011 11:10:52 AM,10/03/2011 11:11:12 AM,10/03/2011 11:16:06 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 11:18:58 AM,1200 Block of MARKET ST,SF,94103,B02,1,2317,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",112760167-T03 +122360067,E10,12078103,Alarms,08/23/2012,08/23/2012,08/23/2012 08:38:57 AM,08/23/2012 08:40:21 AM,08/23/2012 08:40:38 AM,08/23/2012 08:42:30 AM,08/23/2012 08:44:42 AM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Other,08/23/2012 08:52:50 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,true,Alarm,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",122360067-E10 +123340007,E17,12110819,Vehicle Fire,11/29/2012,11/28/2012,11/29/2012 12:23:42 AM,11/29/2012 12:24:50 AM,11/29/2012 12:25:09 AM,11/29/2012 12:26:52 AM,11/29/2012 12:29:31 AM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/29/2012 01:23:35 AM,GRIFFITH ST/FITZGERALD AV,SF,94124,B10,17,6573,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7187604993165, -122.387661334611)",123340007-E17 +160152567,68,16006059,Medical Incident,01/15/2016,01/15/2016,01/15/2016 04:13:58 PM,01/15/2016 04:15:19 PM,01/15/2016 04:15:36 PM,01/15/2016 04:15:44 PM,01/15/2016 04:33:07 PM,01/15/2016 04:37:30 PM,01/15/2016 04:48:52 PM,Code 2 Transport,01/15/2016 05:10:55 PM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7720141510333, -122.419088601412)",160152567-68 +160072931,81,16002946,Medical Incident,01/07/2016,01/07/2016,01/07/2016 06:00:39 PM,01/07/2016 06:00:39 PM,01/07/2016 06:01:34 PM,01/07/2016 06:01:51 PM,01/07/2016 06:10:54 PM,01/07/2016 06:27:31 PM,01/07/2016 06:38:34 PM,Code 2 Transport,01/07/2016 07:07:03 PM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",160072931-81 +122260232,81,12074960,Medical Incident,08/13/2012,08/13/2012,08/13/2012 02:44:17 PM,08/13/2012 02:46:24 PM,08/13/2012 02:46:37 PM,08/13/2012 02:46:44 PM,08/13/2012 03:02:15 PM,08/13/2012 03:19:48 PM,08/13/2012 03:41:20 PM,Code 2 Transport,08/13/2012 04:25:33 PM,100 Block of TURK ST,SF,94102,B03,1,1456,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",122260232-81 +110910255,61,11030203,Medical Incident,04/01/2011,04/01/2011,04/01/2011 03:18:58 PM,04/01/2011 03:19:23 PM,04/01/2011 03:20:13 PM,04/01/2011 03:20:35 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 03:24:20 PM,18TH ST/BRYANT ST,SF,94110,B02,7,5426,3,3,3,true,,1,MEDIC,3,2,9,Mission,"(37.7617594196716, -122.410118192354)",110910255-61 +160371815,67,16014683,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:27:41 PM,02/06/2016 12:29:18 PM,02/06/2016 12:29:34 PM,02/06/2016 12:30:00 PM,02/06/2016 12:39:10 PM,02/06/2016 12:50:21 PM,02/06/2016 01:08:43 PM,Code 2 Transport,02/06/2016 01:44:41 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160371815-67 +110190008,E25,11006093,Medical Incident,01/19/2011,01/18/2011,01/19/2011 12:22:39 AM,01/19/2011 12:23:58 AM,01/19/2011 12:24:48 AM,01/19/2011 12:26:12 AM,01/19/2011 12:28:49 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/19/2011 12:38:33 AM,1000 Block of NEWHALL ST,SF,94124,B10,25,6467,3,2,2,false,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7378858878982, -122.390296258832)",110190008-E25 +132220343,68,13075101,Medical Incident,08/10/2013,08/10/2013,08/10/2013 08:17:41 PM,08/10/2013 08:19:22 PM,08/10/2013 08:19:28 PM,08/10/2013 08:19:35 PM,08/10/2013 08:30:28 PM,08/10/2013 08:55:34 PM,08/10/2013 09:16:04 PM,Code 2 Transport,08/10/2013 09:40:13 PM,0 Block of ROBINSON DR,SF,,B09,43,6236,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,None,None,"(37.7079219034586, -122.428716681874)",132220343-68 +160063691,59,16002620,Medical Incident,01/06/2016,01/06/2016,01/06/2016 10:25:40 PM,01/06/2016 10:25:40 PM,01/06/2016 10:26:07 PM,01/06/2016 10:26:17 PM,01/06/2016 10:37:31 PM,01/06/2016 10:55:40 PM,01/06/2016 11:13:34 PM,Code 2 Transport,01/06/2016 11:39:13 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160063691-59 +160850070,78,16033609,Medical Incident,03/25/2016,03/24/2016,03/25/2016 12:32:40 AM,03/25/2016 12:32:59 AM,03/25/2016 12:33:54 AM,03/25/2016 12:34:04 AM,03/25/2016 12:38:47 AM,03/25/2016 12:47:59 AM,03/25/2016 12:51:44 AM,Code 2 Transport,03/25/2016 01:35:28 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Tenderloin,"(37.7865845259792, -122.419948853352)",160850070-78 +131150256,KM12,13038849,Medical Incident,04/25/2013,04/25/2013,04/25/2013 05:38:19 PM,04/25/2013 05:39:44 PM,04/25/2013 05:40:10 PM,04/25/2013 05:40:59 PM,04/25/2016 01:53:07 PM,04/25/2013 06:03:29 PM,04/25/2013 06:40:10 PM,Code 3 Transport,04/25/2013 06:42:51 PM,600 Block of 39TH AVE,SF,94121,B07,34,7257,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.776553267268, -122.499453605944)",131150256-KM12 +112370323,61,11078308,Medical Incident,08/25/2011,08/25/2011,08/25/2011 06:18:47 PM,08/25/2011 06:19:49 PM,08/25/2011 06:20:03 PM,08/25/2011 06:20:47 PM,08/25/2011 06:25:25 PM,08/25/2011 06:51:30 PM,08/25/2011 06:56:59 PM,Code 2 Transport,08/25/2011 07:34:03 PM,1200 Block of 12TH AVE,SF,94122,B08,22,7346,3,3,3,true,,1,MEDIC,2,7,5,Inner Sunset,"(37.7648362657127, -122.469656987954)",112370323-61 +122040365,E13,12067969,Outside Fire,07/22/2012,07/22/2012,07/22/2012 08:38:54 PM,07/22/2012 08:38:54 PM,07/22/2012 08:40:11 PM,07/22/2012 08:40:29 PM,07/22/2012 08:43:32 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Fire,07/22/2012 08:51:46 PM,200 Block of THE EMBARCADERO,SF,94111,B01,13,901,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",122040365-E13 +160750342,KM07,16029576,Medical Incident,03/15/2016,03/14/2016,03/15/2016 04:24:00 AM,03/15/2016 04:24:23 AM,03/15/2016 04:24:33 AM,03/15/2016 04:25:03 AM,03/15/2016 04:34:11 AM,03/15/2016 04:44:44 AM,03/15/2016 04:55:29 AM,Code 2 Transport,03/15/2016 05:25:36 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160750342-KM07 +112050212,68,11067762,Traffic Collision,07/24/2011,07/24/2011,07/24/2011 02:47:44 PM,07/24/2011 02:48:42 PM,07/24/2011 02:49:47 PM,07/24/2011 02:52:13 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/24/2011 02:53:23 PM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",112050212-68 +121030235,54,12034154,Medical Incident,04/12/2012,04/12/2012,04/12/2012 02:52:21 PM,04/12/2012 02:53:43 PM,04/12/2012 02:53:50 PM,04/12/2012 02:55:47 PM,04/12/2012 03:03:04 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 03:08:18 PM,400 Block of 30TH ST,SF,94131,B06,26,5573,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Glen Park,"(37.7418667376014, -122.429424181558)",121030235-54 +130530374,82,13018078,Medical Incident,02/22/2013,02/22/2013,02/22/2013 10:35:32 PM,02/22/2013 10:36:45 PM,02/22/2013 10:38:39 PM,02/22/2013 10:38:45 PM,02/22/2013 10:43:45 PM,02/22/2013 10:59:16 PM,02/22/2013 11:19:15 PM,Code 2 Transport,02/22/2013 11:36:36 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,2,3,3,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",130530374-82 +133520249,E36,13119614,Medical Incident,12/18/2013,12/18/2013,12/18/2013 01:41:47 PM,12/18/2013 01:43:17 PM,12/18/2013 01:47:39 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/18/2013 01:48:34 PM,PEARL ST/MARKET ST,SF,94103,B02,36,3416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,8,Mission,"(37.771369005901, -122.423973386603)",133520249-E36 +103560275,E05,10114341,Alarms,12/22/2010,12/22/2010,12/22/2010 05:27:06 PM,12/22/2010 05:30:15 PM,12/22/2010 05:31:23 PM,12/22/2010 05:32:17 PM,12/22/2010 05:34:06 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/22/2010 05:59:12 PM,1100 Block of PIERCE ST,SF,94115,B05,5,3643,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805346367144, -122.435588688565)",103560275-E05 +102510151,E06,10079263,Alarms,09/08/2010,09/08/2010,09/08/2010 10:44:08 AM,09/08/2010 10:45:19 AM,09/08/2010 10:47:08 AM,09/08/2010 10:48:19 AM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,04/25/2016 02:08:41 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,3,2,8,Mission,"(37.7661259454801, -122.42207304894)",102510151-E06 +122620106,E03,12086448,Medical Incident,09/18/2012,09/18/2012,09/18/2012 10:15:29 AM,09/18/2012 10:16:45 AM,09/18/2012 10:17:35 AM,09/18/2012 10:19:21 AM,09/18/2012 10:21:36 AM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 10:31:37 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122620106-E03 +123070239,58,12102055,Medical Incident,11/02/2012,11/02/2012,11/02/2012 03:11:04 PM,11/02/2012 03:11:42 PM,11/02/2012 03:12:55 PM,11/02/2012 03:13:11 PM,11/02/2012 03:15:55 PM,11/02/2012 03:26:26 PM,11/02/2012 03:38:52 PM,Code 2 Transport,11/02/2012 04:10:12 PM,900 Block of GENEVA AVE,SF,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.715765426995, -122.439909766772)",123070239-58 +113410304,AM04,11113144,Medical Incident,12/07/2011,12/07/2011,12/07/2011 05:22:14 PM,12/07/2011 05:22:44 PM,12/07/2011 05:23:56 PM,12/07/2011 05:24:27 PM,12/07/2011 05:35:58 PM,12/07/2011 06:06:29 PM,12/07/2011 06:35:36 PM,Code 2 Transport,12/07/2011 06:57:27 PM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7345707092334, -122.391831743022)",113410304-AM04 +121640241,SO1,12054444,Structure Fire,06/12/2012,06/12/2012,06/12/2012 03:46:24 PM,06/12/2012 03:47:10 PM,06/12/2012 03:47:34 PM,04/25/2016 01:58:14 PM,06/12/2012 05:07:45 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 06:46:42 PM,2800 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,3,3,3,false,Fire,4,SUPPORT,28,10,9,Portola,"(37.7258169452923, -122.402916975907)",121640241-SO1 +133320046,82,13112573,Medical Incident,11/28/2013,11/27/2013,11/28/2013 05:45:38 AM,11/28/2013 05:47:13 AM,11/28/2013 05:48:01 AM,11/28/2013 05:48:19 AM,11/28/2013 05:55:49 AM,11/28/2013 06:02:00 AM,11/28/2013 06:11:21 AM,Code 2 Transport,11/28/2013 06:31:33 AM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",133320046-82 +160080429,67,16003091,Medical Incident,01/08/2016,01/07/2016,01/08/2016 05:04:44 AM,01/08/2016 05:07:44 AM,01/08/2016 05:08:03 AM,01/08/2016 05:09:08 AM,01/08/2016 05:14:24 AM,01/08/2016 05:19:22 AM,01/08/2016 05:39:27 AM,Code 2 Transport,01/08/2016 06:00:05 AM,2000 Block of SLOAT BL,San Francisco,94116,B08,19,7615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7339690570118, -122.495544493465)",160080429-67 +140960019,KM03,14032168,Medical Incident,04/06/2014,04/05/2014,04/06/2014 12:59:16 AM,04/06/2014 12:59:27 AM,04/06/2014 12:59:44 AM,04/06/2014 01:02:13 AM,04/06/2014 01:07:19 AM,04/06/2014 01:16:55 AM,04/06/2014 01:27:55 AM,Code 2 Transport,04/06/2014 01:54:11 AM,14TH ST/MISSION ST,SAN FRANCISCO,94103,B02,36,5215,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7682736543413, -122.419981513232)",140960019-KM03 +160120817,71,16004688,Medical Incident,01/12/2016,01/12/2016,01/12/2016 08:44:09 AM,01/12/2016 08:45:35 AM,01/12/2016 08:45:57 AM,01/12/2016 08:46:14 AM,01/12/2016 08:50:22 AM,01/12/2016 09:06:20 AM,01/12/2016 09:24:37 AM,Code 2 Transport,01/12/2016 10:12:52 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160120817-71 +102780248,T08,10088425,Structure Fire,10/05/2010,10/05/2010,10/05/2010 02:56:19 PM,10/05/2010 02:56:19 PM,10/05/2010 02:57:02 PM,10/05/2010 02:57:58 PM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,10/05/2010 02:58:37 PM,Other,10/05/2010 02:58:40 PM,9TH ST/HARRISON ST,SF,94103,B03,29,2333,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7725264425971, -122.410076850083)",102780248-T08 +110860355,57,11028518,Medical Incident,03/27/2011,03/27/2011,03/27/2011 08:57:35 PM,03/27/2011 08:57:35 PM,03/27/2011 08:58:24 PM,03/27/2011 08:58:49 PM,03/27/2011 09:00:57 PM,03/27/2011 09:18:34 PM,03/27/2011 09:37:13 PM,Code 2 Transport,03/27/2011 10:06:47 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",110860355-57 +122760343,E44,12091257,Medical Incident,10/02/2012,10/02/2012,10/02/2012 05:42:47 PM,10/02/2012 05:43:29 PM,10/02/2012 05:43:59 PM,10/02/2012 05:46:01 PM,10/02/2012 06:01:26 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 06:13:41 PM,SUNNYDALE AV/SANTOS ST,SF,94134,B09,43,6241,E,E,3,true,Potentially Life-Threatening,1,ENGINE,5,9,10,Visitacion Valley,"(37.7123491478047, -122.418283422082)",122760343-E44 +111460045,81,11048373,Medical Incident,05/26/2011,05/25/2011,05/26/2011 06:04:43 AM,05/26/2011 06:05:11 AM,05/26/2011 06:05:22 AM,05/26/2011 06:05:40 AM,05/26/2011 06:12:05 AM,05/26/2011 06:30:28 AM,05/26/2011 06:39:47 AM,Code 2 Transport,05/26/2011 07:08:58 AM,200 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7352990808534, -122.378938094591)",111460045-81 +110970425,E31,11032338,Medical Incident,04/07/2011,04/07/2011,04/07/2011 10:53:19 PM,04/07/2011 10:54:30 PM,04/07/2011 10:54:43 PM,04/07/2011 10:55:32 PM,04/07/2011 10:58:33 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Other,04/07/2011 11:19:42 PM,4000 Block of GEARY BLVD,SF,94118,B07,31,7124,3,2,2,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7812175298072, -122.46268182082)",110970425-E31 +102620347,RC2,10083032,Medical Incident,09/19/2010,09/19/2010,09/19/2010 09:47:41 PM,09/19/2010 09:49:02 PM,09/19/2010 09:49:59 PM,09/19/2010 09:51:25 PM,09/19/2010 09:55:59 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/19/2010 10:06:45 PM,4200 Block of BALBOA ST,SF,94121,B07,34,7273,3,E,3,true,,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7754517962446, -122.504284482138)",102620347-RC2 +131020194,AM20,13034284,Medical Incident,04/12/2013,04/12/2013,04/12/2013 02:19:03 PM,04/12/2013 02:19:27 PM,04/12/2013 02:19:53 PM,04/12/2013 02:20:33 PM,04/12/2013 02:24:38 PM,04/12/2013 02:20:40 PM,04/12/2013 02:47:01 PM,Code 2 Transport,04/12/2013 03:21:36 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",131020194-AM20 +160424040,75,16017093,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:59:31 PM,02/12/2016 12:01:15 AM,02/12/2016 12:03:12 AM,02/12/2016 12:03:23 AM,02/12/2016 12:25:15 AM,02/12/2016 12:25:18 AM,02/12/2016 12:40:09 AM,No Merit,02/12/2016 01:35:58 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160424040-75 +121700233,KM11,12056464,Medical Incident,06/18/2012,06/18/2012,06/18/2012 03:23:58 PM,06/18/2012 03:25:32 PM,06/18/2012 03:26:09 PM,06/18/2012 03:26:46 PM,06/18/2012 03:29:47 PM,06/18/2012 03:51:59 PM,06/18/2012 04:04:09 PM,Code 2 Transport,06/18/2012 04:42:31 PM,1800 Block of 22ND AVE,SF,94122,B08,40,7431,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.753163589686, -122.479691469824)",121700233-KM11 +121260250,B04,12041933,Alarms,05/05/2012,05/05/2012,05/05/2012 02:41:58 PM,05/05/2012 02:42:07 PM,05/05/2012 02:42:55 PM,04/25/2016 01:58:50 PM,05/05/2012 02:50:18 PM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,No Merit,05/05/2012 02:50:56 PM,1500 Block of SCOTT ST,SF,94115,B04,10,4131,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.784133355861, -122.437865551162)",121260250-B04 +160100225,71,16003877,Medical Incident,01/10/2016,01/09/2016,01/10/2016 01:25:59 AM,01/10/2016 01:25:59 AM,01/10/2016 01:28:39 AM,01/10/2016 01:28:44 AM,01/10/2016 01:33:06 AM,01/10/2016 01:44:39 AM,01/10/2016 01:57:18 AM,Code 2 Transport,01/10/2016 02:08:36 AM,400 Block of POST ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",160100225-71 +160261326,KM09,16010261,Traffic Collision,01/26/2016,01/26/2016,01/26/2016 10:30:33 AM,01/26/2016 10:31:46 AM,01/26/2016 10:33:00 AM,01/26/2016 10:33:39 AM,01/26/2016 10:42:35 AM,01/26/2016 11:11:20 AM,01/26/2016 11:25:58 AM,Code 2 Transport,01/26/2016 12:15:24 PM,33RD AV/GEARY BL,San Francisco,94121,B07,14,7245,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7796883694276, -122.493297257775)",160261326-KM09 +111790051,E36,11059000,Citizen Assist / Service Call,06/28/2011,06/27/2011,06/28/2011 06:13:13 AM,06/28/2011 06:29:18 AM,06/28/2011 06:29:47 AM,06/28/2011 06:31:58 AM,06/28/2011 06:33:38 AM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Other,06/28/2011 06:53:48 AM,800 Block of FRANKLIN ST,SF,94102,B02,36,3216,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7824435992634, -122.422484951715)",111790051-E36 +160573543,86,16022909,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:33:50 PM,02/26/2016 09:33:50 PM,02/26/2016 09:33:59 PM,02/26/2016 09:34:42 PM,02/26/2016 09:40:48 PM,02/26/2016 09:50:40 PM,02/26/2016 09:59:03 PM,Code 2 Transport,02/26/2016 10:34:19 PM,1200 Block of 40TH AV,San Francisco,94122,B08,23,7627,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7635064950379, -122.499762632538)",160573543-86 +160270918,77,16010587,Medical Incident,01/27/2016,01/27/2016,01/27/2016 09:06:01 AM,01/27/2016 09:07:36 AM,01/27/2016 09:08:24 AM,01/27/2016 09:08:33 AM,01/27/2016 09:24:36 AM,01/27/2016 09:48:10 AM,01/27/2016 10:10:57 AM,Code 2 Transport,01/27/2016 10:48:20 AM,3300 Block of DIVISADERO ST,San Francisco,94123,B04,16,4211,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8004343723216, -122.443008700997)",160270918-77 +133230010,55,13109502,Medical Incident,11/19/2013,11/18/2013,11/19/2013 01:15:37 AM,11/19/2013 01:18:46 AM,11/19/2013 01:19:08 AM,11/19/2013 01:19:51 AM,11/19/2013 01:33:27 AM,04/25/2016 01:49:42 PM,04/25/2016 01:49:42 PM,Patient Declined Transport,11/19/2013 01:38:43 AM,1700 Block of LOMBARD ST,SF,94123,B04,16,3352,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8006899587765, -122.430316559527)",133230010-55 +102690170,67,10085295,Medical Incident,09/26/2010,09/26/2010,09/26/2010 11:16:45 AM,09/26/2010 11:20:23 AM,09/26/2010 11:20:40 AM,09/26/2010 11:20:55 AM,09/26/2010 11:28:50 AM,09/26/2010 11:51:34 AM,09/26/2010 11:58:09 AM,Patient Declined Transport,09/26/2010 12:15:49 PM,4TH ST/HARRISON ST,SF,94107,B03,8,2216,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7807914830651, -122.399616233554)",102690170-67 +110420345,B09,11014042,Structure Fire,02/11/2011,02/11/2011,02/11/2011 07:24:35 PM,02/11/2011 07:25:17 PM,02/11/2011 07:25:28 PM,02/11/2011 07:27:00 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 07:31:47 PM,600 Block of MADRID ST,SF,94112,B09,43,6135,3,3,3,false,,1,CHIEF,9,9,11,Excelsior,"(37.7193135099129, -122.434630200737)",110420345-B09 +121930011,E38,12064112,Medical Incident,07/11/2012,07/10/2012,07/11/2012 12:49:52 AM,07/11/2012 12:50:33 AM,07/11/2012 12:50:59 AM,07/11/2012 12:53:04 AM,07/11/2012 12:55:24 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 01:02:29 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",121930011-E38 +160854012,55,16033993,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:24:43 PM,03/25/2016 10:28:11 PM,03/25/2016 10:28:34 PM,03/25/2016 10:31:17 PM,03/25/2016 10:42:33 PM,03/25/2016 11:10:16 PM,03/25/2016 11:21:12 PM,Code 2 Transport,03/26/2016 12:18:21 AM,500 Block of 29TH AVE,San Francisco,94121,B07,14,7226,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7789280620518, -122.489013594677)",160854012-55 +112460145,E12,11081080,Medical Incident,09/03/2011,09/03/2011,09/03/2011 10:57:54 AM,09/03/2011 10:58:20 AM,09/03/2011 10:58:38 AM,09/03/2011 10:59:30 AM,09/03/2011 11:01:21 AM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/03/2011 11:08:30 AM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,3,3,3,true,,1,ENGINE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",112460145-E12 +160052993,KM09,16002121,Medical Incident,01/05/2016,01/05/2016,01/05/2016 06:39:27 PM,01/05/2016 06:41:18 PM,01/05/2016 06:41:38 PM,01/05/2016 06:43:04 PM,01/05/2016 06:47:33 PM,01/05/2016 06:56:30 PM,01/05/2016 07:08:56 PM,Code 2 Transport,01/05/2016 07:32:20 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160052993-KM09 +132980102,89,13101135,Medical Incident,10/25/2013,10/25/2013,10/25/2013 09:14:14 AM,10/25/2013 09:16:36 AM,10/25/2013 09:16:47 AM,10/25/2013 09:16:57 AM,10/25/2013 09:21:08 AM,10/25/2013 09:40:51 AM,10/25/2013 10:08:02 AM,Code 2 Transport,10/25/2013 10:33:58 AM,100 Block of OTIS ST,SF,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",132980102-89 +160141760,67,16005568,Medical Incident,01/14/2016,01/14/2016,01/14/2016 12:55:00 PM,01/14/2016 12:55:52 PM,01/14/2016 12:56:23 PM,01/14/2016 12:56:35 PM,01/14/2016 01:02:18 PM,01/14/2016 01:35:42 PM,01/14/2016 01:42:48 PM,Code 2 Transport,01/14/2016 02:37:37 PM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160141760-67 +140340130,88,14011452,Medical Incident,02/03/2014,02/03/2014,02/03/2014 10:38:28 AM,02/03/2014 10:40:39 AM,02/03/2014 10:42:31 AM,02/03/2014 10:42:57 AM,02/03/2014 10:56:27 AM,02/03/2014 11:11:31 AM,02/03/2014 11:37:17 AM,Code 2 Transport,02/03/2014 11:58:26 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",140340130-88 +111650352,E41,11054578,Structure Fire,06/14/2011,06/14/2011,06/14/2011 08:20:07 PM,06/14/2011 08:20:09 PM,06/14/2011 08:20:52 PM,06/14/2011 08:21:35 PM,06/14/2011 08:23:16 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Fire,06/14/2011 08:24:04 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,false,,1,ENGINE,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",111650352-E41 +123140396,B03,12104676,Alarms,11/09/2012,11/09/2012,11/09/2012 11:29:54 PM,11/09/2012 11:32:08 PM,11/09/2012 11:32:24 PM,11/09/2012 11:34:38 PM,11/09/2012 11:37:24 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 11:44:31 PM,1600 Block of OWENS ST,SF,94158,B03,29,2414,3,3,3,false,Alarm,1,CHIEF,2,3,6,Mission Bay,"(37.7680699628929, -122.394293450332)",123140396-B03 +132040038,E18,13068987,Medical Incident,07/23/2013,07/22/2013,07/23/2013 05:28:23 AM,07/23/2013 05:30:21 AM,07/23/2013 05:31:04 AM,07/23/2013 05:33:32 AM,07/23/2013 05:36:00 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 05:40:03 AM,1800 Block of 26TH AVE,SF,94122,B08,18,7455,3,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7529746574641, -122.483978131849)",132040038-E18 +111230153,E01,11040600,Medical Incident,05/03/2011,05/03/2011,05/03/2011 10:47:46 AM,05/03/2011 10:50:57 AM,05/03/2011 10:51:18 AM,05/03/2011 10:52:09 AM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 11:00:30 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,E,E,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7820387146172, -122.40232147638)",111230153-E01 +103380124,93,10108085,Medical Incident,12/04/2010,12/04/2010,12/04/2010 09:03:12 AM,12/04/2010 09:07:06 AM,12/04/2010 09:08:11 AM,12/04/2010 09:08:59 AM,12/04/2010 09:12:51 AM,12/04/2010 09:27:08 AM,12/04/2010 09:32:18 AM,Code 2 Transport,12/04/2010 10:15:53 AM,1500 Block of FLORIDA ST,SF,94110,B06,9,5615,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7479396461948, -122.409678034048)",103380124-93 +120670382,B02,12022374,Gas Leak (Natural and LP Gases),03/07/2012,03/07/2012,03/07/2012 08:33:51 PM,03/07/2012 08:35:46 PM,03/07/2012 08:35:56 PM,03/07/2012 08:37:00 PM,03/07/2012 08:40:38 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Fire,03/07/2012 08:47:43 PM,1500 Block of OFARRELL ST,SF,94115,B04,5,3514,3,3,3,false,Alarm,1,CHIEF,3,4,5,Western Addition,"(37.7834972119133, -122.430603323889)",120670382-B02 +123280071,E07,12108994,Medical Incident,11/23/2012,11/22/2012,11/23/2012 07:17:00 AM,11/23/2012 07:18:04 AM,11/23/2012 07:18:23 AM,11/23/2012 07:20:46 AM,04/25/2016 01:55:40 PM,04/25/2016 01:55:40 PM,04/25/2016 01:55:40 PM,Other,11/23/2012 07:22:54 AM,1200 Block of TREAT AVE,SF,94110,B06,7,5533,3,3,3,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7501730752061, -122.412693892535)",123280071-E07 +160281106,75,16011027,Medical Incident,01/28/2016,01/28/2016,01/28/2016 10:03:41 AM,01/28/2016 10:05:18 AM,01/28/2016 10:05:37 AM,01/28/2016 10:05:48 AM,01/28/2016 10:08:49 AM,01/28/2016 10:29:46 AM,01/28/2016 10:53:04 AM,Code 2 Transport,01/28/2016 11:41:26 AM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160281106-75 +120020168,T19,12000725,Alarms,01/02/2012,01/02/2012,01/02/2012 01:45:05 PM,01/02/2012 01:46:23 PM,01/02/2012 01:47:10 PM,01/02/2012 01:50:41 PM,01/02/2012 01:50:50 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/02/2012 01:56:59 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",120020168-T19 +160283274,54,16011208,Medical Incident,01/28/2016,01/28/2016,01/28/2016 06:53:21 PM,01/28/2016 06:54:30 PM,01/28/2016 06:55:03 PM,01/28/2016 06:55:13 PM,01/28/2016 06:55:13 PM,01/28/2016 07:02:05 PM,01/28/2016 07:08:26 PM,Code 2 Transport,01/28/2016 07:27:33 PM,JONES ST/MARKET ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",160283274-54 +140980382,RS1,14033187,Structure Fire,04/08/2014,04/08/2014,04/08/2014 05:56:23 PM,04/08/2014 05:57:05 PM,04/08/2014 05:57:46 PM,04/08/2014 05:59:19 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Fire,04/08/2014 06:04:40 PM,2200 Block of LAKE ST,SAN FRANCISCO,94121,B07,14,7174,3,3,3,false,Alarm,1,RESCUE SQUAD,11,7,1,Outer Richmond,"(37.7857597027575, -122.483539028526)",140980382-RS1 +132500125,E37,13084350,Alarms,09/07/2013,09/07/2013,09/07/2013 09:39:18 AM,09/07/2013 09:40:39 AM,09/07/2013 09:40:45 AM,09/07/2013 09:42:35 AM,09/07/2013 09:44:44 AM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/07/2013 09:52:55 AM,800 Block of KANSAS ST,SF,94107,B10,37,2522,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7588485273625, -122.403043636357)",132500125-E37 +130500117,89,13016954,Medical Incident,02/19/2013,02/19/2013,02/19/2013 11:58:41 AM,02/19/2013 11:59:48 AM,02/19/2013 11:59:58 AM,02/19/2013 12:01:18 PM,02/19/2013 12:09:25 PM,02/19/2013 12:27:12 PM,02/19/2013 12:30:44 PM,Code 2 Transport,02/19/2013 01:12:39 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",130500117-89 +160213124,81,16008492,Medical Incident,01/21/2016,01/21/2016,01/21/2016 06:02:40 PM,01/21/2016 06:05:04 PM,01/21/2016 06:07:02 PM,01/21/2016 06:07:32 PM,01/21/2016 06:10:02 PM,01/21/2016 06:31:35 PM,01/21/2016 06:43:34 PM,Code 2 Transport,01/21/2016 07:19:54 PM,DIVISADERO ST/FULTON ST,San Francisco,94117,B05,21,4146,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7768558891973, -122.438177046242)",160213124-81 +160651975,AM02,16025960,Medical Incident,03/05/2016,03/05/2016,03/05/2016 02:40:33 PM,03/05/2016 02:41:09 PM,03/05/2016 02:41:36 PM,03/05/2016 02:42:29 PM,03/05/2016 02:46:05 PM,03/05/2016 03:00:29 PM,03/05/2016 03:15:01 PM,Code 2 Transport,03/05/2016 03:47:17 PM,1500 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7737629752818, -122.417960394107)",160651975-AM02 +110100354,E01,11003457,Medical Incident,01/10/2011,01/10/2011,01/10/2011 07:41:44 PM,01/10/2011 07:43:51 PM,01/10/2011 07:44:38 PM,01/10/2011 07:46:05 PM,01/10/2011 07:47:57 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/10/2011 07:58:24 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",110100354-E01 +122940236,E36,12097552,Structure Fire,10/20/2012,10/20/2012,10/20/2012 03:34:13 PM,10/20/2012 03:34:58 PM,10/20/2012 03:35:15 PM,10/20/2012 03:35:53 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 04:01:55 PM,700 Block of HAIGHT ST,SF,94117,B05,21,4142,3,3,3,true,Fire,1,ENGINE,7,5,5,Haight Ashbury,"(37.7715296499469, -122.434542909739)",122940236-E36 +120590326,66,12019546,Medical Incident,02/28/2012,02/28/2012,02/28/2012 08:17:31 PM,02/28/2012 08:17:56 PM,02/28/2012 08:18:11 PM,02/28/2012 08:18:35 PM,02/28/2012 08:20:08 PM,02/28/2012 08:44:04 PM,02/28/2012 08:55:36 PM,Code 3 Transport,02/28/2012 09:49:40 PM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",120590326-66 +160620148,75,16024537,Medical Incident,03/02/2016,03/01/2016,03/02/2016 01:21:50 AM,03/02/2016 01:23:46 AM,03/02/2016 01:23:59 AM,03/02/2016 01:24:03 AM,03/02/2016 01:27:40 AM,03/02/2016 01:51:38 AM,03/02/2016 01:55:37 AM,Code 2 Transport,03/02/2016 02:37:20 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160620148-75 +103220277,55,10103289,Medical Incident,11/18/2010,11/18/2010,11/18/2010 08:02:26 PM,11/18/2010 08:03:55 PM,11/18/2010 08:04:32 PM,11/18/2010 08:04:44 PM,11/18/2010 08:11:29 PM,11/18/2010 08:19:06 PM,11/18/2010 08:43:42 PM,Code 2 Transport,11/18/2010 09:06:12 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",103220277-55 +160260683,KM13,16010217,Medical Incident,01/26/2016,01/25/2016,01/26/2016 07:33:10 AM,01/26/2016 07:33:52 AM,01/26/2016 07:34:04 AM,01/26/2016 07:34:50 AM,01/26/2016 08:00:23 AM,01/26/2016 08:00:24 AM,01/26/2016 08:09:41 AM,Code 2 Transport,01/26/2016 08:33:13 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160260683-KM13 +160431308,73,16017248,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:58:34 AM,02/12/2016 10:59:42 AM,02/12/2016 10:59:48 AM,02/12/2016 11:00:16 AM,02/12/2016 11:14:55 AM,02/12/2016 11:29:39 AM,02/12/2016 11:35:59 AM,Code 2 Transport,02/12/2016 12:17:54 PM,2900 Block of FOLSOM ST,San Francisco,94110,B06,7,5614,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7500991052351, -122.41391717161)",160431308-73 +132290192,88,13077304,Medical Incident,08/17/2013,08/17/2013,08/17/2013 12:44:07 PM,08/17/2013 12:45:50 PM,08/17/2013 12:46:09 PM,08/17/2013 12:49:50 PM,08/17/2013 12:52:47 PM,08/17/2013 01:06:48 PM,08/17/2013 01:26:39 PM,Code 2 Transport,08/17/2013 01:49:07 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.781585403105, -122.423090188841)",132290192-88 +160170590,70,16006710,Medical Incident,01/17/2016,01/16/2016,01/17/2016 05:44:55 AM,01/17/2016 05:46:06 AM,01/17/2016 05:46:51 AM,01/17/2016 05:47:07 AM,01/17/2016 05:53:27 AM,01/17/2016 05:55:09 AM,01/17/2016 06:08:43 AM,Code 2 Transport,01/17/2016 06:34:25 AM,1000 Block of NOE ST,San Francisco,94114,B06,11,5522,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",160170590-70 +122050066,MA1,12068078,Structure Fire,07/23/2012,07/22/2012,07/23/2012 07:15:42 AM,07/23/2012 07:16:21 AM,07/23/2012 07:17:02 AM,07/23/2012 07:32:56 AM,07/23/2012 07:46:15 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/23/2012 08:11:53 AM,3300 Block of 26TH ST,SF,94110,B06,11,5613,3,3,3,false,Fire,2,SUPPORT,22,6,9,Mission,"(37.7492100327414, -122.416241794051)",122050066-MA1 +122730345,89,12090185,Medical Incident,09/29/2012,09/29/2012,09/29/2012 09:23:14 PM,09/29/2012 09:24:07 PM,09/29/2012 09:24:38 PM,09/29/2012 09:25:07 PM,09/29/2012 09:36:15 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,No Merit,09/29/2012 09:41:47 PM,100 Block of SERRANO DR,SF,94132,B08,19,8426,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7200426334367, -122.477542614396)",122730345-89 +102640238,T17,10083592,Structure Fire,09/21/2010,09/21/2010,09/21/2010 03:33:22 PM,09/21/2010 03:33:22 PM,09/21/2010 03:33:45 PM,09/21/2010 03:34:50 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 03:38:44 PM,VISITACION AV/SCHWERIN ST,SF,94134,B09,44,6257,3,3,3,false,,1,TRUCK,2,9,10,Visitacion Valley,"(37.7122062230511, -122.410640795976)",102640238-T17 +102930268,T03,10093511,Medical Incident,10/20/2010,10/20/2010,10/20/2010 04:40:28 PM,10/20/2010 04:40:56 PM,10/20/2010 04:41:44 PM,10/20/2010 04:42:40 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,04/25/2016 02:08:00 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102930268-T03 +122960050,93,12098038,Medical Incident,10/22/2012,10/21/2012,10/22/2012 06:00:18 AM,10/22/2012 06:01:20 AM,10/22/2012 06:01:29 AM,10/22/2012 06:01:37 AM,10/22/2012 06:08:29 AM,10/22/2012 06:38:02 AM,10/22/2012 07:10:04 AM,Code 2 Transport,10/22/2012 07:17:56 AM,0 Block of MADDUX AVE,SF,94124,B10,42,6446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7348036979308, -122.398206619816)",122960050-93 +140230089,E37,14007786,Medical Incident,01/23/2014,01/23/2014,01/23/2014 09:03:45 AM,01/23/2014 09:04:41 AM,01/23/2014 09:05:39 AM,01/23/2014 09:06:52 AM,01/23/2014 09:08:18 AM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/23/2014 09:18:53 AM,600 Block of DE HARO ST,SF,94107,B10,37,2511,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.761655083303, -122.401193113905)",140230089-E37 +160913305,53,16036224,Medical Incident,03/31/2016,03/31/2016,03/31/2016 07:55:20 PM,03/31/2016 07:55:57 PM,03/31/2016 07:56:06 PM,03/31/2016 07:56:53 PM,03/31/2016 08:01:28 PM,03/31/2016 08:23:39 PM,03/31/2016 08:57:36 PM,Code 2 Transport,03/31/2016 09:53:01 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160913305-53 +160503443,58,16020251,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:37:23 PM,02/19/2016 08:38:39 PM,02/19/2016 08:39:24 PM,02/19/2016 08:39:35 PM,02/19/2016 08:52:56 PM,02/19/2016 09:11:02 PM,02/19/2016 09:48:32 PM,Code 2 Transport,02/19/2016 10:03:55 PM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5417,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7610427981277, -122.433353754785)",160503443-58 +120580321,58,12019235,Medical Incident,02/27/2012,02/27/2012,02/27/2012 08:21:05 PM,02/27/2012 08:22:45 PM,02/27/2012 08:24:11 PM,02/27/2012 08:26:48 PM,02/27/2012 08:32:29 PM,02/27/2012 08:49:38 PM,02/27/2012 09:15:08 PM,Code 2 Transport,02/27/2012 09:28:46 PM,MISSION ST/19TH ST,SF,94110,B06,7,5433,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",120580321-58 +140320246,E02,14010895,Structure Fire,02/01/2014,02/01/2014,02/01/2014 04:09:34 PM,02/01/2014 04:09:34 PM,02/01/2014 04:09:42 PM,02/01/2014 04:10:39 PM,02/01/2014 04:12:31 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 04:12:43 PM,GRANT AV/JACKSON ST,SF,94133,B01,2,1312,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",140320246-E02 +130150064,B07,13005023,Alarms,01/15/2013,01/15/2013,01/15/2013 08:01:12 AM,01/15/2013 08:03:08 AM,01/15/2013 08:03:17 AM,01/15/2013 08:04:45 AM,01/15/2013 08:10:47 AM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,Fire,01/15/2013 08:11:18 AM,4100 Block of CLEMENT ST,SF,94121,B07,34,7266,3,3,3,false,Alarm,1,CHIEF,3,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",130150064-B07 +132180315,72,13073725,Medical Incident,08/06/2013,08/06/2013,08/06/2013 06:32:52 PM,08/06/2013 06:35:17 PM,08/06/2013 06:35:35 PM,08/06/2013 06:35:45 PM,08/06/2013 06:43:45 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Against Medical Advice,08/06/2013 07:24:04 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",132180315-72 +121270277,83,12042358,Structure Fire,05/06/2012,05/06/2012,05/06/2012 05:53:25 PM,05/06/2012 05:53:53 PM,05/06/2012 05:54:12 PM,05/06/2012 05:54:41 PM,04/25/2016 01:58:49 PM,04/25/2016 01:58:49 PM,04/25/2016 01:58:49 PM,Other,05/06/2012 06:02:12 PM,300 Block of HAYES ST,SF,94102,B02,36,3265,3,3,3,true,Fire,1,MEDIC,10,2,5,Hayes Valley,"(37.7769330032548, -122.422143452116)",121270277-83 +122180386,RC1,12072499,Medical Incident,08/05/2012,08/05/2012,08/05/2012 11:29:59 PM,08/05/2012 11:30:46 PM,08/05/2012 11:31:07 PM,08/05/2012 11:33:20 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 11:34:46 PM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,3,Nob Hill,"(37.7910106630521, -122.416733654434)",122180386-RC1 +160643150,AM10,16025632,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:36:26 PM,03/04/2016 06:37:25 PM,03/04/2016 06:38:04 PM,03/04/2016 06:38:38 PM,03/04/2016 06:48:30 PM,03/04/2016 07:16:21 PM,03/04/2016 07:23:55 PM,Code 2 Transport,03/04/2016 08:18:39 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160643150-AM10 +110700307,T09,11023121,Structure Fire,03/11/2011,03/11/2011,03/11/2011 06:25:47 PM,03/11/2011 06:25:47 PM,03/11/2011 06:26:14 PM,03/11/2011 06:27:11 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/11/2011 06:30:05 PM,22ND ST/3RD ST,SF,94107,B10,25,2533,3,3,3,false,,1,TRUCK,2,10,10,Potrero Hill,"(37.7579397061731, -122.388315530161)",110700307-T09 +160170915,85,16006756,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:17:20 AM,01/17/2016 09:17:20 AM,01/17/2016 09:17:56 AM,01/17/2016 09:18:23 AM,01/17/2016 09:23:01 AM,01/17/2016 09:33:18 AM,01/17/2016 09:43:09 AM,Code 2 Transport,01/17/2016 10:20:01 AM,300 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7678020825962, -122.422235792189)",160170915-85 +131180286,E01,13039784,Medical Incident,04/28/2013,04/28/2013,04/28/2013 05:46:46 PM,04/28/2013 05:47:17 PM,04/28/2013 05:48:00 PM,04/28/2013 05:49:08 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/25/2016 01:53:04 PM,4TH ST/MARKET ST,SF,94103,B03,1,1322,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",131180286-E01 +160592338,KM11,16023596,Medical Incident,02/28/2016,02/28/2016,02/28/2016 04:59:34 PM,02/28/2016 05:00:49 PM,02/28/2016 05:01:11 PM,02/28/2016 05:01:58 PM,02/28/2016 05:05:26 PM,02/28/2016 05:22:26 PM,02/28/2016 05:31:26 PM,Code 2 Transport,02/28/2016 06:05:12 PM,1300 Block of FILLMORE ST,San Francisco,94115,B05,5,3536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7818977107871, -122.432353853525)",160592338-KM11 +122020025,E36,12066976,Medical Incident,07/20/2012,07/19/2012,07/20/2012 01:37:45 AM,07/20/2012 01:38:58 AM,07/20/2012 01:39:13 AM,07/20/2012 01:40:48 AM,07/20/2012 01:44:12 AM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 01:51:43 AM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",122020025-E36 +160233488,55,16009334,Medical Incident,01/23/2016,01/23/2016,01/23/2016 09:24:30 PM,01/23/2016 09:26:38 PM,01/23/2016 09:26:50 PM,01/23/2016 09:27:05 PM,01/23/2016 09:36:11 PM,01/23/2016 09:54:48 PM,01/23/2016 10:09:57 PM,Code 2 Transport,01/23/2016 10:35:51 PM,400 Block of 2ND AVE,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.780251191916, -122.459860923031)",160233488-55 +122760266,KM12,12091189,Medical Incident,10/02/2012,10/02/2012,10/02/2012 02:34:50 PM,10/02/2012 02:35:43 PM,10/02/2012 02:37:54 PM,10/02/2012 02:38:23 PM,10/02/2012 02:45:20 PM,10/02/2012 02:54:55 PM,10/02/2012 03:03:59 PM,Code 3 Transport,10/02/2012 03:44:41 PM,2400 Block of 23RD AVE,SF,94116,B08,40,7442,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7419253653114, -122.479981752509)",122760266-KM12 +113080135,E38,11102279,Medical Incident,11/04/2011,11/04/2011,11/04/2011 10:26:03 AM,11/04/2011 10:28:25 AM,11/04/2011 10:29:12 AM,11/04/2011 10:29:31 AM,11/04/2011 10:31:46 AM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/04/2011 10:31:51 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,3,3,3,false,,1,ENGINE,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",113080135-E38 +160253866,63,16010140,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:12:26 PM,01/25/2016 11:13:46 PM,01/25/2016 11:13:59 PM,01/25/2016 11:14:44 PM,01/25/2016 11:17:59 PM,01/26/2016 12:32:55 AM,01/26/2016 12:48:47 AM,Code 3 Transport,01/26/2016 02:01:52 AM,200 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7671990407506, -122.424452084295)",160253866-63 +140660014,RC1,14022167,Medical Incident,03/07/2014,03/06/2014,03/07/2014 01:00:30 AM,03/07/2014 01:02:54 AM,03/07/2014 01:03:08 AM,03/07/2014 01:03:17 AM,03/07/2014 01:07:45 AM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Code 2 Transport,03/07/2014 01:12:06 AM,600 Block of POLK ST,SAN FRANCISCO,94102,B02,3,3114,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",140660014-RC1 +110530272,E15,11017586,Medical Incident,02/22/2011,02/22/2011,02/22/2011 05:14:49 PM,02/22/2011 05:15:47 PM,02/22/2011 05:16:13 PM,02/22/2011 05:17:45 PM,02/22/2011 05:21:38 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 05:47:14 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",110530272-E15 +160221571,61,16008759,Medical Incident,01/22/2016,01/22/2016,01/22/2016 12:10:45 PM,01/22/2016 12:11:40 PM,01/22/2016 12:12:35 PM,01/22/2016 12:17:41 PM,01/22/2016 12:17:41 PM,01/22/2016 12:45:01 PM,01/22/2016 01:01:08 PM,Code 2 Transport,01/22/2016 01:39:53 PM,800 Block of BRANNAN ST,San Francisco,94103,B03,29,2325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7722126507146, -122.404363751305)",160221571-61 +112600164,E41,11085726,Medical Incident,09/17/2011,09/17/2011,09/17/2011 11:26:33 AM,09/17/2011 11:29:48 AM,09/17/2011 11:30:23 AM,09/17/2011 11:32:01 AM,09/17/2011 11:35:07 AM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 11:36:11 AM,2000 Block of FRANKLIN ST,SF,94109,B04,38,3226,E,E,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.7932922930477, -122.424537680646)",112600164-E41 +112350385,T03,11077718,Structure Fire,08/23/2011,08/23/2011,08/23/2011 09:24:43 PM,08/23/2011 09:24:43 PM,08/23/2011 09:25:30 PM,08/23/2011 09:26:39 PM,08/23/2011 09:27:52 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/23/2011 09:28:27 PM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",112350385-T03 +132590225,KM04,13087644,Medical Incident,09/16/2013,09/16/2013,09/16/2013 02:06:39 PM,09/16/2013 02:06:39 PM,09/16/2013 02:06:50 PM,04/25/2016 01:50:45 PM,09/16/2013 02:08:45 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Fire,09/16/2013 02:19:38 PM,STEVENSON ST/7TH ST,SF,94103,B02,36,2316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",132590225-KM04 +123140258,E03,12104552,Citizen Assist / Service Call,11/09/2012,11/09/2012,11/09/2012 04:05:27 PM,11/09/2012 04:06:26 PM,11/09/2012 04:06:45 PM,11/09/2012 04:08:20 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,04/25/2016 01:55:52 PM,1400 Block of FRANKLIN ST,SF,94109,B04,3,3223,3,3,3,true,Alarm,1,ENGINE,1,4,2,Western Addition,"(37.7880511870399, -122.423477689614)",123140258-E03 +160281742,82,16011081,Medical Incident,01/28/2016,01/28/2016,01/28/2016 12:50:14 PM,01/28/2016 12:52:23 PM,01/28/2016 12:52:54 PM,01/28/2016 12:54:58 PM,01/28/2016 01:07:05 PM,01/28/2016 01:38:10 PM,01/28/2016 01:46:54 PM,Code 2 Transport,01/28/2016 02:39:27 PM,100 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7729000896445, -122.424646169194)",160281742-82 +160212292,KM05,16008438,Medical Incident,01/21/2016,01/21/2016,01/21/2016 03:03:07 PM,01/21/2016 03:03:47 PM,01/21/2016 03:04:39 PM,01/21/2016 03:06:05 PM,01/21/2016 03:14:41 PM,01/21/2016 03:14:56 PM,01/21/2016 03:53:00 PM,Code 2 Transport,01/21/2016 04:41:37 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160212292-KM05 +120150180,T03,12005099,Other,01/15/2012,01/15/2012,01/15/2012 01:22:26 PM,01/15/2012 01:22:53 PM,01/15/2012 01:22:58 PM,01/15/2012 01:23:57 PM,01/15/2012 01:28:46 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Fire,01/15/2012 01:49:17 PM,3400 Block of CALIFORNIA ST,SF,94118,B07,10,4431,3,3,3,false,Alarm,1,TRUCK,1,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",120150180-T03 +160473145,83,16019065,Medical Incident,02/16/2016,02/16/2016,02/16/2016 06:50:09 PM,02/16/2016 06:50:20 PM,02/16/2016 06:50:39 PM,02/16/2016 06:51:09 PM,02/16/2016 06:57:56 PM,02/16/2016 07:10:34 PM,02/16/2016 07:39:10 PM,Code 2 Transport,02/16/2016 08:14:55 PM,100 Block of MOFFITT ST,San Francisco,94131,B06,26,8152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7370707422577, -122.432876744063)",160473145-83 +140780003,E01,14026245,Structure Fire,03/19/2014,03/18/2014,03/19/2014 12:08:36 AM,03/19/2014 12:09:52 AM,03/19/2014 12:10:13 AM,03/19/2014 12:11:47 AM,03/19/2014 12:15:12 AM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Code 2 Transport,03/19/2014 01:09:42 AM,300 Block of TAYLOR ST,SAN FRANCISCO,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",140780003-E01 +130970176,B01,13032527,Alarms,04/07/2013,04/07/2013,04/07/2013 12:28:26 PM,04/07/2013 12:29:19 PM,04/07/2013 12:29:31 PM,04/07/2013 12:31:21 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Fire,04/07/2013 12:41:45 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",130970176-B01 +110620083,AM06,11020295,Medical Incident,03/03/2011,03/03/2011,03/03/2011 08:57:10 AM,03/03/2011 08:59:02 AM,03/03/2011 09:01:05 AM,04/25/2016 02:05:49 PM,03/03/2011 09:25:05 AM,03/03/2011 09:49:07 AM,03/03/2011 10:19:48 AM,Code 2 Transport,03/03/2011 11:24:07 AM,LOMBARD ST/BRODERICK ST,SF,94123,B04,16,4223,3,3,3,false,,1,PRIVATE,2,4,2,Marina,"(37.7987902446741, -122.444318619211)",110620083-AM06 +160163601,83,16006609,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:02:51 PM,01/16/2016 10:05:25 PM,01/16/2016 10:07:40 PM,01/16/2016 10:07:49 PM,01/16/2016 10:20:42 PM,01/16/2016 10:38:54 PM,01/16/2016 10:45:12 PM,Code 2 Transport,01/16/2016 11:23:15 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160163601-83 +160820420,93,16032463,Medical Incident,03/22/2016,03/21/2016,03/22/2016 06:10:21 AM,03/22/2016 06:12:18 AM,03/22/2016 06:12:36 AM,03/22/2016 06:12:45 AM,03/22/2016 06:21:31 AM,03/22/2016 06:38:33 AM,03/22/2016 06:56:13 AM,Code 2 Transport,03/22/2016 07:30:51 AM,400 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807728096562, -122.407018493217)",160820420-93 +111660354,B04,11054940,Structure Fire,06/15/2011,06/15/2011,06/15/2011 09:11:00 PM,06/15/2011 09:12:14 PM,06/15/2011 09:12:40 PM,06/15/2011 09:14:09 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/15/2011 09:18:16 PM,100 Block of FRANKLIN ST,SF,94102,B02,36,3213,3,3,3,false,,1,CHIEF,8,2,5,Hayes Valley,"(37.7759358319818, -122.421032543678)",111660354-B04 +133590215,T12,13122081,Alarms,12/25/2013,12/25/2013,12/25/2013 03:14:40 PM,12/25/2013 03:15:33 PM,12/25/2013 03:16:08 PM,12/25/2013 03:17:52 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/25/2013 03:22:45 PM,1500 Block of 35TH AVE,SF,94122,B08,18,7563,3,3,3,false,Alarm,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7581403111983, -122.49401278695)",133590215-T12 +160812317,58,16032239,Medical Incident,03/21/2016,03/21/2016,03/21/2016 03:21:02 PM,03/21/2016 03:23:33 PM,03/21/2016 03:23:48 PM,03/21/2016 03:23:59 PM,03/21/2016 03:31:17 PM,03/21/2016 03:37:43 PM,03/21/2016 03:58:06 PM,Code 2 Transport,03/21/2016 04:08:50 PM,1900 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160812317-58 +121140223,E07,12037872,Medical Incident,04/23/2012,04/23/2012,04/23/2012 03:06:42 PM,04/23/2012 03:07:13 PM,04/23/2012 03:07:24 PM,04/23/2012 03:08:17 PM,04/23/2012 03:11:10 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 03:28:07 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",121140223-E07 +112030043,77,11066903,Medical Incident,07/22/2011,07/21/2011,07/22/2011 02:34:55 AM,07/22/2011 02:35:41 AM,07/22/2011 02:36:31 AM,07/22/2011 02:36:36 AM,07/22/2011 02:40:07 AM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Patient Declined Transport,07/22/2011 03:06:27 AM,CAMPTON PL/STOCKTON ST,SF,94108,B01,1,1324,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7889862925464, -122.406865030473)",112030043-77 +121410175,E21,12046837,Structure Fire,05/20/2012,05/20/2012,05/20/2012 12:12:25 PM,05/20/2012 12:12:25 PM,05/20/2012 12:12:33 PM,05/20/2012 12:13:21 PM,05/20/2012 12:16:29 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Fire,05/20/2012 12:17:06 PM,DIVISADERO ST/PAGE ST,SF,94117,B05,21,4144,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",121410175-E21 +160770585,89,16030465,Medical Incident,03/17/2016,03/16/2016,03/17/2016 07:20:51 AM,03/17/2016 07:20:51 AM,03/17/2016 07:23:32 AM,03/17/2016 07:23:42 AM,03/17/2016 07:35:26 AM,03/17/2016 07:55:31 AM,03/17/2016 08:15:43 AM,Code 2 Transport,03/17/2016 09:02:30 AM,1800 Block of CHESTNUT ST,San Francisco,94123,B04,16,3445,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8010769361014, -122.433769037511)",160770585-89 +122880243,E13,12095335,Medical Incident,10/14/2012,10/14/2012,10/14/2012 04:19:20 PM,10/14/2012 04:20:45 PM,10/14/2012 04:21:06 PM,10/14/2012 04:21:59 PM,10/14/2012 04:24:43 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 04:30:22 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,3,1,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7896050522565, -122.403725876784)",122880243-E13 +122830178,96,12093644,Medical Incident,10/09/2012,10/09/2012,10/09/2012 01:11:08 PM,10/09/2012 01:12:39 PM,10/09/2012 01:13:09 PM,10/09/2012 01:13:34 PM,10/09/2012 01:24:29 PM,10/09/2012 01:37:54 PM,10/09/2012 01:47:01 PM,Code 2 Transport,10/09/2012 02:18:35 PM,400 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",122830178-96 +122040376,E17,12067977,Outside Fire,07/22/2012,07/22/2012,07/22/2012 08:59:43 PM,07/22/2012 09:01:17 PM,07/22/2012 09:02:20 PM,07/22/2012 09:03:20 PM,07/22/2012 09:05:51 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Fire,07/22/2012 09:21:39 PM,OSCEOLA LN/LA SALLE AV,SF,94124,B10,17,6622,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324340245393, -122.383803252037)",122040376-E17 +121910029,E02,12063463,Medical Incident,07/09/2012,07/08/2012,07/09/2012 03:22:30 AM,07/09/2012 03:24:08 AM,07/09/2012 03:25:07 AM,07/09/2012 03:26:38 AM,07/09/2012 03:29:04 AM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 03:38:01 AM,500 Block of BATTERY ST,SF,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7963165979031, -122.40065165037)",121910029-E02 +122960184,T10,12098148,Alarms,10/22/2012,10/22/2012,10/22/2012 12:56:01 PM,10/22/2012 12:57:38 PM,10/22/2012 12:58:09 PM,10/22/2012 12:59:43 PM,10/22/2012 01:01:56 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 01:03:27 PM,2000 Block of LYON ST,SF,94115,B04,10,4335,3,3,3,false,Alarm,1,TRUCK,1,4,2,Pacific Heights,"(37.7896922052437, -122.445777560087)",122960184-T10 +121350009,T01,12044753,Alarms,05/14/2012,05/13/2012,05/14/2012 12:55:17 AM,05/14/2012 12:55:17 AM,05/14/2012 12:55:35 AM,05/14/2012 01:00:25 AM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Fire,05/14/2012 01:00:54 AM,0 Block of GRANT AVE,SF,94108,B01,1,1321,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7871853698326, -122.404995219077)",121350009-T01 +123100280,55,12103207,Traffic Collision,11/05/2012,11/05/2012,11/05/2012 05:30:41 PM,11/05/2012 05:31:31 PM,11/05/2012 05:31:48 PM,04/25/2016 01:55:56 PM,11/05/2012 05:44:38 PM,11/05/2012 05:50:04 PM,11/05/2012 06:22:20 PM,Code 2 Transport,11/05/2012 06:28:52 PM,BROTHERHOOD WY/ARCH ST,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7124218732149, -122.467072688577)",123100280-55 +133310030,KM07,13112244,Medical Incident,11/27/2013,11/26/2013,11/27/2013 02:26:59 AM,11/27/2013 02:28:52 AM,11/27/2013 02:29:18 AM,11/27/2013 02:29:51 AM,11/27/2013 02:39:04 AM,11/27/2013 02:43:41 AM,11/27/2013 03:00:42 AM,Code 2 Transport,11/27/2013 03:29:49 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",133310030-KM07 +113560438,AM14,11118415,Traffic Collision,12/22/2011,12/22/2011,12/22/2011 11:37:28 PM,12/22/2011 11:37:37 PM,12/22/2011 11:39:38 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 11:40:30 PM,KEZAR DR/LINCOLN WY,SF,94122,B05,12,7321,2,2,2,false,,1,PRIVATE,3,7,5,Golden Gate Park,"(37.766348841086, -122.459931486887)",113560438-AM14 +140900199,E03,14030310,Odor (Strange / Unknown),03/31/2014,03/31/2014,03/31/2014 02:06:25 PM,03/31/2014 02:08:32 PM,03/31/2014 02:09:09 PM,03/31/2014 02:10:29 PM,03/31/2014 02:13:09 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Fire,03/31/2014 02:24:14 PM,500 Block of GEARY ST,SAN FRANCISCO,94102,B01,3,1462,3,3,3,true,Alarm,1,ENGINE,1,1,6,Tenderloin,"(37.786727898565, -122.412739888549)",140900199-E03 +110440142,59,11014594,Medical Incident,02/13/2011,02/13/2011,02/13/2011 10:52:51 AM,02/13/2011 10:53:41 AM,02/13/2011 10:54:29 AM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 11:02:21 AM,0 Block of LIBERTY ST,SF,94110,B06,7,5456,E,E,3,true,,1,MEDIC,3,6,8,Mission,"(37.7575809773167, -122.422275311384)",110440142-59 +140160275,65,14005548,Medical Incident,01/16/2014,01/16/2014,01/16/2014 04:21:51 PM,01/16/2014 04:22:58 PM,01/16/2014 04:25:43 PM,01/16/2014 04:25:43 PM,01/16/2014 04:29:39 PM,01/16/2014 04:48:26 PM,01/16/2014 05:16:56 PM,Code 2 Transport,01/16/2014 05:26:00 PM,700 Block of CHESTNUT ST,SF,94133,B01,28,1515,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.8034994679895, -122.415704043223)",140160275-65 +103510351,KM01,10112742,Medical Incident,12/17/2010,12/17/2010,12/17/2010 08:12:38 PM,12/17/2010 08:14:02 PM,12/17/2010 08:14:39 PM,12/17/2010 08:14:49 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,Other,12/17/2010 08:25:42 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7840781681969, -122.41852472124)",103510351-KM01 +160752227,86,16029755,Medical Incident,03/15/2016,03/15/2016,03/15/2016 02:43:06 PM,03/15/2016 02:45:34 PM,03/15/2016 02:45:48 PM,03/15/2016 02:45:57 PM,03/15/2016 03:14:33 PM,03/15/2016 03:29:55 PM,03/15/2016 03:53:18 PM,Code 2 Transport,03/15/2016 04:40:49 PM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",160752227-86 +140690082,AM04,14023207,Medical Incident,03/10/2014,03/10/2014,03/10/2014 08:39:00 AM,03/10/2014 08:39:53 AM,03/10/2014 08:40:18 AM,03/10/2014 08:41:28 AM,03/10/2014 08:47:02 AM,03/10/2014 08:56:28 AM,03/10/2014 09:15:36 AM,Code 2 Transport,03/10/2014 09:50:29 AM,2000 Block of VAN NESS AVE,SAN FRANCISCO,94109,B04,41,3153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7943544378215, -122.423308835651)",140690082-AM04 +110650226,T01,11021487,Alarms,03/06/2011,03/06/2011,03/06/2011 01:58:14 PM,03/06/2011 02:00:26 PM,03/06/2011 02:00:31 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,Other,04/25/2016 02:05:45 PM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.772123277472, -122.416667284185)",110650226-T01 +160402379,76,16016103,Medical Incident,02/09/2016,02/09/2016,02/09/2016 03:29:58 PM,02/09/2016 03:30:51 PM,02/09/2016 03:34:10 PM,02/09/2016 03:35:46 PM,02/09/2016 03:35:46 PM,02/09/2016 03:52:41 PM,02/09/2016 04:03:38 PM,Code 2 Transport,02/09/2016 04:33:40 PM,24TH ST/VALENCIA ST,San Francisco,94110,B06,11,5525,2,3,3,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7521036457482, -122.420664802284)",160402379-76 +160821653,54,16032550,Medical Incident,03/22/2016,03/22/2016,03/22/2016 12:18:56 PM,03/22/2016 12:20:51 PM,03/22/2016 12:21:04 PM,03/22/2016 12:21:15 PM,03/22/2016 12:24:42 PM,03/22/2016 01:01:16 PM,03/22/2016 01:30:22 PM,Code 2 Transport,03/22/2016 02:10:34 PM,0 Block of RIZAL ST,San Francisco,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.781822111031, -122.399291985556)",160821653-54 +113050064,T17,11101175,Alarms,11/01/2011,10/31/2011,11/01/2011 04:26:49 AM,11/01/2011 04:28:09 AM,11/01/2011 04:28:26 AM,11/01/2011 04:31:03 AM,11/01/2011 04:37:29 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 04:37:58 AM,2200 Block of BAY SHORE BLVD,SF,94134,B10,44,6255,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7116826340704, -122.403060940712)",113050064-T17 +160890867,AM02,16035250,Medical Incident,03/29/2016,03/29/2016,03/29/2016 08:52:26 AM,03/29/2016 08:53:32 AM,03/29/2016 08:54:16 AM,03/29/2016 08:54:59 AM,03/29/2016 08:59:20 AM,03/29/2016 09:32:13 AM,03/29/2016 09:44:00 AM,Code 2 Transport,03/29/2016 10:19:59 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160890867-AM02 +112940317,E28,11097630,Medical Incident,10/21/2011,10/21/2011,10/21/2011 07:11:48 PM,10/21/2011 07:12:50 PM,10/21/2011 07:13:05 PM,10/21/2011 07:14:10 PM,10/21/2011 07:17:16 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 07:24:14 PM,JONES ST/BEACH ST,SF,94133,B01,28,1521,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8070725139897, -122.417260632444)",112940317-E28 +160332799,63,16013100,Medical Incident,02/02/2016,02/02/2016,02/02/2016 06:21:37 PM,02/02/2016 06:25:10 PM,02/02/2016 06:25:20 PM,02/02/2016 06:25:29 PM,02/02/2016 06:33:29 PM,02/02/2016 06:46:34 PM,02/02/2016 06:52:57 PM,Code 2 Transport,02/02/2016 07:21:03 PM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",160332799-63 +102260315,64,10071265,Medical Incident,08/14/2010,08/14/2010,08/14/2010 08:53:23 PM,08/14/2010 08:55:07 PM,08/14/2010 08:56:08 PM,08/14/2010 08:56:27 PM,08/14/2010 08:59:36 PM,08/14/2010 09:18:31 PM,08/14/2010 09:44:11 PM,Code 2 Transport,08/14/2010 09:59:29 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",102260315-64 +132150175,66,13072599,Medical Incident,08/03/2013,08/03/2013,08/03/2013 12:11:02 PM,08/03/2013 12:11:57 PM,08/03/2013 12:12:17 PM,08/03/2013 12:12:39 PM,08/03/2013 12:15:31 PM,08/03/2013 12:28:42 PM,08/03/2013 01:12:35 PM,Code 2 Transport,08/03/2013 01:49:30 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",132150175-66 +160154026,63,16006201,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:45:29 PM,01/15/2016 10:47:21 PM,01/15/2016 10:47:58 PM,01/15/2016 10:48:12 PM,01/15/2016 11:13:03 PM,01/15/2016 11:13:34 PM,01/15/2016 11:35:08 PM,Code 2 Transport,01/16/2016 12:21:30 AM,1400 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7300297211845, -122.387395567373)",160154026-63 +130220079,RC3,13007503,Traffic Collision,01/22/2013,01/22/2013,01/22/2013 08:01:57 AM,01/22/2013 08:05:43 AM,01/22/2013 08:08:55 AM,01/22/2013 08:11:44 AM,01/22/2013 08:22:24 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 09:19:18 AM,0 Block of SCHWERIN ST,SF,94134,B09,44,625,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,9,10,Visitacion Valley,"(37.7127368731615, -122.410330435128)",130220079-RC3 +121630211,KM04,12054060,Medical Incident,06/11/2012,06/11/2012,06/11/2012 01:55:24 PM,06/11/2012 01:56:28 PM,06/11/2012 01:56:46 PM,06/11/2012 01:57:21 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Patient Declined Transport,06/11/2012 02:34:37 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.8006947037442, -122.436775838314)",121630211-KM04 +140430057,E22,14014512,Structure Fire,02/12/2014,02/11/2014,02/12/2014 07:04:31 AM,02/12/2014 07:04:31 AM,02/12/2014 07:04:47 AM,02/12/2014 07:05:34 AM,02/12/2014 07:07:56 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/12/2014 07:08:18 AM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",140430057-E22 +132170041,E02,13073192,Medical Incident,08/05/2013,08/04/2013,08/05/2013 03:52:47 AM,08/05/2013 03:56:02 AM,08/05/2013 03:56:53 AM,08/05/2013 03:58:53 AM,08/05/2013 04:01:12 AM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/05/2013 04:04:36 AM,COLUMBUS AV/LOMBARD ST,SF,94133,B01,28,1435,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8027432009748, -122.413718749936)",132170041-E02 +102240139,AM06,10070520,Medical Incident,08/12/2010,08/12/2010,08/12/2010 11:13:38 AM,08/12/2010 11:14:46 AM,08/12/2010 11:15:15 AM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,Other,04/25/2016 02:09:07 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,false,,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",102240139-AM06 +160282009,85,16011109,Medical Incident,01/28/2016,01/28/2016,01/28/2016 01:59:11 PM,01/28/2016 02:01:14 PM,01/28/2016 02:05:26 PM,01/28/2016 02:05:36 PM,01/28/2016 02:38:15 PM,01/28/2016 02:38:18 PM,01/28/2016 03:03:43 PM,Code 2 Transport,01/28/2016 04:00:50 PM,1000 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6613,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",160282009-85 +123310262,RS1,12110080,Medical Incident,11/26/2012,11/26/2012,11/26/2012 03:22:46 PM,11/26/2012 03:23:11 PM,11/26/2012 03:23:34 PM,11/26/2012 03:25:27 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 03:33:15 PM,500 Block of STEVENSON ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7809266852586, -122.410870424137)",123310262-RS1 +123460229,T05,12115740,Alarms,12/11/2012,12/11/2012,12/11/2012 01:54:03 PM,12/11/2012 01:56:02 PM,12/11/2012 01:56:27 PM,12/11/2012 01:57:52 PM,12/11/2012 01:59:57 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 02:05:03 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",123460229-T05 +140270303,E41,14009306,Medical Incident,01/27/2014,01/27/2014,01/27/2014 07:02:58 PM,01/27/2014 07:05:01 PM,01/27/2014 07:05:44 PM,01/27/2014 07:06:58 PM,01/27/2014 07:07:53 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/27/2014 07:23:18 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",140270303-E41 +160042258,79,16001651,Medical Incident,01/04/2016,01/04/2016,01/04/2016 03:14:41 PM,01/04/2016 03:16:13 PM,01/04/2016 03:16:38 PM,01/04/2016 03:16:50 PM,01/04/2016 03:21:05 PM,01/04/2016 03:50:51 PM,01/04/2016 04:05:58 PM,Code 2 Transport,01/04/2016 04:36:16 PM,16TH ST/POTRERO AV,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",160042258-79 +121060055,E33,12035022,Medical Incident,04/15/2012,04/14/2012,04/15/2012 03:29:15 AM,04/15/2012 03:30:11 AM,04/15/2012 03:30:20 AM,04/15/2012 03:32:04 AM,04/15/2012 03:34:33 AM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Other,04/15/2012 03:39:36 AM,200 Block of MONTANA ST,SF,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7165269181456, -122.461422911465)",121060055-E33 +121600026,RC3,12052793,Medical Incident,06/08/2012,06/07/2012,06/08/2012 02:12:24 AM,06/08/2012 02:12:24 AM,06/08/2012 02:13:06 AM,06/08/2012 02:15:23 AM,06/08/2012 02:18:18 AM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/08/2012 02:33:05 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7650513381945, -122.419668973861)",121600026-RC3 +123200072,78,12106297,Medical Incident,11/15/2012,11/15/2012,11/15/2012 08:42:17 AM,11/15/2012 08:43:14 AM,11/15/2012 08:43:26 AM,11/15/2012 08:43:33 AM,11/15/2012 08:49:59 AM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Against Medical Advice,11/15/2012 09:20:02 AM,1900 Block of TURK ST,SF,94115,B05,21,4255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Western Addition,"(37.7794555627999, -122.440688868912)",123200072-78 +122730112,E03,12089980,Structure Fire,09/29/2012,09/29/2012,09/29/2012 08:48:52 AM,09/29/2012 08:48:52 AM,09/29/2012 08:48:59 AM,09/29/2012 08:49:35 AM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/29/2012 08:52:39 AM,GRANT AV/POST ST,SF,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",122730112-E03 +131330287,75,13044941,Medical Incident,05/13/2013,05/13/2013,05/13/2013 04:33:01 PM,05/13/2013 04:34:25 PM,05/13/2013 04:37:08 PM,05/13/2013 04:37:08 PM,05/13/2013 04:47:50 PM,05/13/2013 05:08:59 PM,05/13/2013 05:28:38 PM,Code 2 Transport,05/13/2013 05:44:09 PM,3200 Block of INGALLS ST,SF,94124,B10,44,6575,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7187685722727, -122.393206912421)",131330287-75 +133380196,AM02,13114564,Medical Incident,12/04/2013,12/04/2013,12/04/2013 02:05:16 PM,12/04/2013 02:07:44 PM,12/04/2013 02:08:04 PM,12/04/2013 02:08:32 PM,12/04/2013 02:23:10 PM,12/04/2013 02:26:38 PM,12/04/2013 03:18:55 PM,Code 2 Transport,12/04/2013 03:19:29 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.78026973391, -122.406390271833)",133380196-AM02 +111040334,99,11034606,Medical Incident,04/14/2011,04/14/2011,04/14/2011 10:12:29 PM,04/14/2011 10:13:47 PM,04/14/2011 10:15:07 PM,04/14/2011 10:15:37 PM,04/14/2011 10:21:52 PM,04/14/2011 10:37:05 PM,04/14/2011 10:47:41 PM,Code 2 Transport,04/14/2011 11:16:36 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111040334-99 +160631762,63,16025068,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:57:43 PM,03/03/2016 12:59:49 PM,03/03/2016 01:00:24 PM,03/03/2016 01:00:39 PM,03/03/2016 01:03:25 PM,03/03/2016 01:10:53 PM,03/03/2016 01:20:08 PM,Code 2 Transport,03/03/2016 01:37:05 PM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",160631762-63 +110480034,60,11015753,Medical Incident,02/17/2011,02/16/2011,02/17/2011 05:04:19 AM,02/17/2011 05:07:51 AM,02/17/2011 05:08:04 AM,02/17/2011 05:08:23 AM,02/17/2011 05:12:27 AM,02/17/2011 05:36:24 AM,02/17/2011 05:36:29 AM,Code 2 Transport,02/17/2011 06:04:05 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",110480034-60 +110880268,84,11029117,Medical Incident,03/29/2011,03/29/2011,03/29/2011 04:15:11 PM,03/29/2011 04:17:04 PM,03/29/2011 04:17:31 PM,03/29/2011 04:20:19 PM,03/29/2011 04:21:11 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 04:21:27 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",110880268-84 +160671863,KM01,16026782,Medical Incident,03/07/2016,03/07/2016,03/07/2016 02:29:43 PM,03/07/2016 02:30:06 PM,03/07/2016 02:31:14 PM,03/07/2016 02:32:01 PM,03/07/2016 02:44:04 PM,03/07/2016 02:55:29 PM,03/07/2016 03:34:51 PM,Code 2 Transport,03/07/2016 04:05:37 PM,200 Block of MONTEREY BLVD,San Francisco,94131,B09,26,8214,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7316806819241, -122.440884413372)",160671863-KM01 +140360061,E03,14012111,Traffic Collision,02/05/2014,02/04/2014,02/05/2014 07:33:03 AM,02/05/2014 07:33:51 AM,02/05/2014 07:34:14 AM,02/05/2014 07:36:12 AM,02/05/2014 07:37:40 AM,02/05/2014 07:49:34 AM,02/05/2014 08:02:58 AM,Other,02/05/2014 08:17:43 AM,OFARRELL ST/LEAVENWORTH ST,SF,94109,B04,3,1544,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",140360061-E03 +110220018,RS1,11007133,Medical Incident,01/22/2011,01/21/2011,01/22/2011 12:50:53 AM,01/22/2011 12:51:28 AM,01/22/2011 12:52:17 AM,01/22/2011 12:53:37 AM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/22/2011 12:56:08 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,false,,1,RESCUE SQUAD,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110220018-RS1 +131620179,88,13055036,Medical Incident,06/11/2013,06/11/2013,06/11/2013 01:19:47 PM,06/11/2013 01:20:52 PM,06/11/2013 01:21:07 PM,06/11/2013 01:21:23 PM,06/11/2013 01:29:41 PM,06/11/2013 01:56:09 PM,06/11/2013 02:13:10 PM,Code 2 Transport,06/11/2013 02:47:07 PM,600 Block of 45TH AVE,SF,94121,B07,34,7273,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7762535401496, -122.506022206848)",131620179-88 +112890195,T08,11095886,Structure Fire,10/16/2011,10/16/2011,10/16/2011 01:39:35 PM,10/16/2011 01:39:36 PM,10/16/2011 01:40:04 PM,10/16/2011 01:41:23 PM,10/16/2011 01:44:31 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 01:49:14 PM,800 Block of HARRISON ST,SF,94107,B03,8,221,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7799507434806, -122.400778586916)",112890195-T08 +132620186,E03,13088745,Administrative,09/19/2013,09/19/2013,09/19/2013 12:47:56 PM,09/19/2013 12:48:02 PM,09/19/2013 12:48:10 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 12:48:50 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",132620186-E03 +133460078,94,13117310,Medical Incident,12/12/2013,12/11/2013,12/12/2013 07:12:23 AM,12/12/2013 07:20:29 AM,12/12/2013 07:44:47 AM,12/12/2013 07:45:35 AM,12/12/2013 07:54:38 AM,12/12/2013 08:21:23 AM,12/12/2013 08:27:22 AM,Code 2 Transport,12/12/2013 09:01:08 AM,1300 Block of LARKIN ST,SF,94109,B04,41,1635,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",133460078-94 +120730128,KM04,12024179,Medical Incident,03/13/2012,03/13/2012,03/13/2012 09:59:28 AM,03/13/2012 10:00:31 AM,03/13/2012 10:00:41 AM,03/13/2012 10:01:04 AM,03/13/2012 10:12:59 AM,03/13/2012 10:26:07 AM,03/13/2012 10:35:36 AM,Code 2 Transport,03/13/2012 10:59:01 AM,500 Block of JONES ST,SF,94102,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",120730128-KM04 +130060107,RC2,13002008,Medical Incident,01/06/2013,01/06/2013,01/06/2013 10:16:05 AM,01/06/2013 10:18:10 AM,01/06/2013 11:56:35 AM,04/25/2016 01:54:56 PM,01/06/2013 11:56:42 AM,01/06/2013 11:56:56 AM,01/06/2013 11:56:58 AM,Other,01/06/2013 11:57:06 AM,3300 Block of BALBOA ST,SF,94121,B07,34,7254,1,1,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.775892549655, -122.49464338851)",130060107-RC2 +102920362,T08,10093269,Structure Fire,10/19/2010,10/19/2010,10/19/2010 09:29:15 PM,10/19/2010 09:29:16 PM,10/19/2010 09:29:31 PM,10/19/2010 09:30:48 PM,10/19/2010 09:33:05 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Fire,10/19/2010 09:33:38 PM,3RD ST/BRYANT ST,SF,94107,B03,8,2174,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7813212571676, -122.395843500166)",102920362-T08 +160013639,70,16000510,Medical Incident,01/01/2016,01/01/2016,01/01/2016 09:33:04 PM,01/01/2016 09:33:04 PM,01/01/2016 09:34:57 PM,01/01/2016 09:35:18 PM,01/01/2016 09:46:22 PM,01/01/2016 09:58:23 PM,01/01/2016 10:01:58 PM,Code 2 Transport,01/01/2016 10:27:54 PM,1900 Block of LAGUNA ST,San Francisco,94109,B04,38,3362,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7890640954381, -122.428740370022)",160013639-70 +122360103,RC2,12078130,Other,08/23/2012,08/23/2012,08/23/2012 10:16:07 AM,08/23/2012 10:17:05 AM,08/23/2012 10:17:14 AM,08/23/2012 10:32:51 AM,08/23/2012 10:33:49 AM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Medical Examiner,08/23/2012 10:51:45 AM,1300 Block of 16TH AVE,SF,94122,B08,22,7366,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,8,5,Inner Sunset,"(37.7627751424743, -122.473778893146)",122360103-RC2 +160461990,62,16018542,Medical Incident,02/15/2016,02/15/2016,02/15/2016 02:18:42 PM,02/15/2016 02:19:08 PM,02/15/2016 02:19:28 PM,02/15/2016 02:19:57 PM,02/15/2016 02:43:20 PM,02/15/2016 02:43:25 PM,02/15/2016 02:46:35 PM,Code 2 Transport,02/15/2016 03:46:09 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",160461990-62 +132700321,E42,13091812,Medical Incident,09/27/2013,09/27/2013,09/27/2013 05:44:38 PM,09/27/2013 05:46:18 PM,09/27/2013 05:46:46 PM,09/27/2013 05:48:17 PM,09/27/2013 05:51:04 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/27/2013 06:05:14 PM,500 Block of THORNTON AVE,SF,94124,B10,42,6447,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7315384486672, -122.399836854573)",132700321-E42 +160381018,85,16015129,Medical Incident,02/07/2016,02/07/2016,02/07/2016 08:31:15 AM,02/07/2016 08:32:59 AM,02/07/2016 08:33:19 AM,02/07/2016 08:33:31 AM,02/07/2016 08:45:22 AM,02/07/2016 09:15:04 AM,02/07/2016 09:41:02 AM,Code 2 Transport,02/07/2016 10:13:36 AM,1100 Block of LARKIN ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881906054546, -122.418580508889)",160381018-85 +121040341,E01,12034600,Medical Incident,04/13/2012,04/13/2012,04/13/2012 11:19:39 PM,04/13/2012 11:19:40 PM,04/13/2012 11:20:17 PM,04/13/2012 11:28:06 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/13/2012 11:29:38 PM,TURK ST/TAYLOR ST,SF,94102,B03,1,1365,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",121040341-E01 +160832028,66,16032965,Medical Incident,03/23/2016,03/23/2016,03/23/2016 01:29:02 PM,03/23/2016 01:29:52 PM,03/23/2016 01:30:17 PM,03/23/2016 01:31:03 PM,03/23/2016 01:36:31 PM,03/23/2016 01:48:29 PM,03/23/2016 02:17:28 PM,Code 2 Transport,03/23/2016 03:06:50 PM,1300 Block of THOMAS AVE,San Francisco,94124,B10,17,6547,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",160832028-66 +121540322,82,12051109,Medical Incident,06/02/2012,06/02/2012,06/02/2012 09:04:55 PM,06/02/2012 09:06:16 PM,06/02/2012 09:06:37 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,06/02/2012 09:23:56 PM,06/02/2012 09:53:39 PM,Code 2 Transport,06/02/2012 10:17:04 PM,9TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",121540322-82 +120930314,E36,12030916,Medical Incident,04/02/2012,04/02/2012,04/02/2012 06:59:30 PM,04/02/2012 06:59:30 PM,04/02/2012 06:59:45 PM,04/02/2012 07:00:57 PM,04/02/2012 07:03:04 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Other,04/02/2012 07:07:52 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7756454671917, -122.412432457912)",120930314-E36 +111320012,E23,11043482,Medical Incident,05/12/2011,05/11/2011,05/12/2011 12:55:57 AM,05/12/2011 12:56:48 AM,05/12/2011 12:57:01 AM,05/12/2011 12:58:05 AM,05/12/2011 01:01:25 AM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/12/2011 01:10:54 AM,GREAT HY/FULTON ST,SF,94121,B08,23,7722,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7713424988011, -122.511053754552)",111320012-E23 +103380423,AM10,10108349,Medical Incident,12/04/2010,12/04/2010,12/04/2010 10:46:22 PM,12/04/2010 10:47:46 PM,12/04/2010 10:48:04 PM,12/04/2010 10:48:49 PM,12/04/2010 10:51:04 PM,12/04/2010 11:20:59 PM,12/04/2010 11:35:43 PM,Code 2 Transport,12/05/2010 12:10:34 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",103380423-AM10 +160811396,71,16032149,Medical Incident,03/21/2016,03/21/2016,03/21/2016 11:24:57 AM,03/21/2016 11:27:40 AM,03/21/2016 11:27:56 AM,03/21/2016 11:28:05 AM,03/21/2016 11:34:56 AM,03/21/2016 11:53:16 AM,03/21/2016 12:03:08 PM,Code 2 Transport,03/21/2016 01:09:20 PM,1900 Block of 14TH AVE,San Francisco,94116,B08,40,7368,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.751629099333, -122.47047025628)",160811396-71 +160340530,55,16013258,Medical Incident,02/03/2016,02/02/2016,02/03/2016 07:05:21 AM,02/03/2016 07:07:29 AM,02/03/2016 07:07:46 AM,02/03/2016 07:08:24 AM,02/03/2016 07:20:20 AM,02/03/2016 07:33:47 AM,02/03/2016 08:01:53 AM,Code 2 Transport,02/03/2016 08:55:58 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160340530-55 +113290121,E05,11109117,Medical Incident,11/25/2011,11/25/2011,11/25/2011 12:22:39 PM,11/25/2011 12:22:51 PM,11/25/2011 12:23:14 PM,11/25/2011 12:24:03 PM,11/25/2011 12:25:18 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 12:33:20 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",113290121-E05 +110450350,E01,11015070,Alarms,02/14/2011,02/14/2011,02/14/2011 08:26:32 PM,02/14/2011 08:27:39 PM,02/14/2011 08:27:47 PM,02/14/2011 08:32:05 PM,02/14/2011 08:33:31 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 08:40:06 PM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.784851966461, -122.389795266719)",110450350-E01 +160550609,70,16021908,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:30:10 AM,02/24/2016 07:31:57 AM,02/24/2016 07:32:30 AM,02/24/2016 07:32:44 AM,02/24/2016 07:51:52 AM,02/24/2016 08:04:39 AM,02/24/2016 08:15:47 AM,Code 3 Transport,02/24/2016 09:34:59 AM,4100 Block of 19TH AVE,San Francisco,94132,B09,33,8417,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7140201610277, -122.469605898584)",160550609-70 +130400330,AM10,13013797,Medical Incident,02/09/2013,02/09/2013,02/09/2013 07:55:18 PM,02/09/2013 07:55:52 PM,02/09/2013 08:01:37 PM,02/09/2013 08:02:21 PM,02/09/2013 08:11:20 PM,02/09/2013 08:19:15 PM,02/09/2013 08:34:44 PM,Code 2 Transport,02/09/2013 09:05:39 PM,MISSION ST/5TH ST,SF,94103,B03,1,2246,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",130400330-AM10 +140290286,83,14009973,Medical Incident,01/29/2014,01/29/2014,01/29/2014 05:25:39 PM,01/29/2014 05:28:11 PM,01/29/2014 05:43:24 PM,01/29/2014 05:50:35 PM,01/29/2014 05:51:54 PM,01/29/2014 06:09:01 PM,01/29/2014 06:24:22 PM,Code 2 Transport,01/29/2014 06:47:23 PM,1300 Block of 38TH AVE,SF,94122,B08,23,7626,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7617367287526, -122.497349537472)",140290286-83 +123230154,59,12107387,Medical Incident,11/18/2012,11/18/2012,11/18/2012 11:29:02 AM,11/18/2012 11:31:12 AM,11/18/2012 11:31:28 AM,11/18/2012 11:32:07 AM,11/18/2012 11:34:08 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,No Merit,11/18/2012 11:36:20 AM,200 Block of MIRAMAR AVE,SF,94112,B09,15,8474,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7227490413148, -122.458117167077)",123230154-59 +131830353,75,13062501,Medical Incident,07/02/2013,07/02/2013,07/02/2013 09:40:29 PM,07/02/2013 09:40:42 PM,07/02/2013 09:40:52 PM,07/02/2013 09:41:05 PM,07/02/2013 09:43:33 PM,07/02/2013 09:53:01 PM,07/02/2013 10:08:31 PM,Code 2 Transport,07/02/2013 10:27:04 PM,1300 Block of BUCHANAN ST,SF,94115,B02,5,3431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7820811831699, -122.429017793799)",131830353-75 +122300368,75,12076384,Medical Incident,08/17/2012,08/17/2012,08/17/2012 09:01:48 PM,08/17/2012 09:03:29 PM,08/17/2012 09:03:44 PM,08/17/2012 09:04:11 PM,08/17/2012 09:07:54 PM,08/17/2012 09:24:40 PM,08/17/2012 09:33:25 PM,Code 2 Transport,08/17/2012 10:00:30 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",122300368-75 +120050253,E08,12001794,Medical Incident,01/05/2012,01/05/2012,01/05/2012 04:30:17 PM,01/05/2012 04:31:00 PM,01/05/2012 04:31:52 PM,01/05/2012 04:34:32 PM,01/05/2012 04:36:01 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 04:40:14 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120050253-E08 +102300030,81,10072273,Medical Incident,08/18/2010,08/17/2010,08/18/2010 04:13:32 AM,08/18/2010 04:14:16 AM,08/18/2010 04:14:27 AM,08/18/2010 04:15:46 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/18/2010 04:17:47 AM,COLUMBUS AV/BROADWAY,SF,94133,B01,2,1311,2,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",102300030-81 +160043668,58,16001793,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:37:25 PM,01/04/2016 10:39:31 PM,01/04/2016 10:40:18 PM,01/04/2016 10:40:27 PM,01/04/2016 10:56:02 PM,01/04/2016 11:21:46 PM,01/04/2016 11:33:13 PM,Code 2 Transport,01/05/2016 12:05:17 AM,1500 Block of SUTTER ST,San Francisco,94109,B05,38,3324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7869733157952, -122.425845943218)",160043668-58 +120070108,AM02,12002351,Medical Incident,01/07/2012,01/07/2012,01/07/2012 09:09:57 AM,01/07/2012 09:10:24 AM,01/07/2012 09:10:58 AM,01/07/2012 09:11:34 AM,01/07/2012 09:14:03 AM,01/07/2012 09:35:55 AM,01/07/2012 09:55:40 AM,Code 2 Transport,01/07/2012 10:42:20 AM,1500 Block of DOLORES ST,SF,94131,B06,11,5576,3,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7442280333573, -122.424575505878)",120070108-AM02 +122190379,E40,12072825,Medical Incident,08/06/2012,08/06/2012,08/06/2012 11:28:12 PM,08/06/2012 11:29:00 PM,08/06/2012 11:29:10 PM,08/06/2012 11:30:50 PM,08/06/2012 11:32:15 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 11:41:43 PM,2300 Block of 20TH AVE,SF,94116,B08,40,7416,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7439390940789, -122.476761034475)",122190379-E40 +140190021,58,14006399,Medical Incident,01/19/2014,01/18/2014,01/19/2014 12:52:14 AM,01/19/2014 12:54:39 AM,01/19/2014 12:58:14 AM,01/19/2014 12:58:23 AM,01/19/2014 01:09:27 AM,01/19/2014 01:24:14 AM,01/19/2014 01:33:05 AM,Other,01/19/2014 01:59:35 AM,HALLAM ST/FOLSOM ST,SF,94103,B02,1,2313,,2,2,false,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7759532285245, -122.408845751769)",140190021-58 +130010480,E31,13000396,Alarms,01/01/2013,01/01/2013,01/01/2013 06:22:03 PM,01/01/2013 06:23:20 PM,01/01/2013 06:23:28 PM,01/01/2013 06:26:05 PM,01/01/2013 06:27:21 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 06:44:24 PM,400 Block of 18TH AVE,SF,94121,B07,31,7161,3,3,3,true,Alarm,1,ENGINE,2,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",130010480-E31 +160680430,88,16026997,Medical Incident,03/08/2016,03/07/2016,03/08/2016 06:28:54 AM,03/08/2016 06:31:37 AM,03/08/2016 06:31:49 AM,03/08/2016 06:32:01 AM,03/08/2016 06:39:29 AM,03/08/2016 06:53:10 AM,03/08/2016 07:07:48 AM,Code 2 Transport,03/08/2016 07:37:48 AM,0 Block of SANTOS ST,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121040537994, -122.41847388242)",160680430-88 +112480304,E36,11081900,Medical Incident,09/05/2011,09/05/2011,09/05/2011 07:17:20 PM,09/05/2011 07:18:06 PM,09/05/2011 07:18:13 PM,09/05/2011 07:19:37 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 07:21:09 PM,MARKET ST/8TH ST,SF,94103,B02,1,2317,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",112480304-E36 +112730331,T09,11090369,Structure Fire,09/30/2011,09/30/2011,09/30/2011 07:24:23 PM,09/30/2011 07:24:23 PM,09/30/2011 07:24:41 PM,09/30/2011 07:26:03 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 07:26:42 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",112730331-T09 +123010349,93,12099944,Medical Incident,10/27/2012,10/27/2012,10/27/2012 09:27:19 PM,10/27/2012 09:29:29 PM,10/27/2012 09:29:42 PM,10/27/2012 09:30:39 PM,10/27/2012 09:42:46 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,04/25/2016 01:56:05 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",123010349-93 +140620147,E03,14020915,Medical Incident,03/03/2014,03/03/2014,03/03/2014 11:53:06 AM,03/03/2014 11:56:53 AM,03/03/2014 11:58:25 AM,03/03/2014 11:59:46 AM,03/03/2014 12:02:35 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,No Merit,03/03/2014 12:13:17 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",140620147-E03 +112450064,T03,11080676,Citizen Assist / Service Call,09/02/2011,09/01/2011,09/02/2011 07:17:10 AM,09/02/2011 07:19:29 AM,09/02/2011 07:20:16 AM,09/02/2011 07:22:17 AM,09/02/2011 07:23:53 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Fire,09/02/2011 07:27:46 AM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,false,,1,TRUCK,1,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",112450064-T03 +121140269,AM06,12037909,Medical Incident,04/23/2012,04/23/2012,04/23/2012 05:31:49 PM,04/23/2012 05:35:01 PM,04/23/2012 05:35:30 PM,04/23/2012 05:36:25 PM,04/23/2012 05:43:36 PM,04/23/2012 06:06:37 PM,04/23/2012 06:17:45 PM,Code 2 Transport,04/23/2012 07:05:37 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",121140269-AM06 +103240239,E39,10103877,Citizen Assist / Service Call,11/20/2010,11/20/2010,11/20/2010 05:04:57 PM,11/20/2010 05:06:59 PM,11/20/2010 05:07:34 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,04/25/2016 02:07:30 PM,300 Block of MAGELLAN AVE,SF,94116,B08,39,8624,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.745122780308, -122.463198233673)",103240239-E39 +160171768,79,16006856,Medical Incident,01/17/2016,01/17/2016,01/17/2016 01:42:25 PM,01/17/2016 01:43:00 PM,01/17/2016 01:46:11 PM,01/17/2016 01:46:24 PM,01/17/2016 01:52:35 PM,01/17/2016 02:02:17 PM,01/17/2016 02:09:03 PM,Code 2 Transport,01/17/2016 02:32:00 PM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160171768-79 +133070376,T16,13104561,Other,11/03/2013,11/03/2013,11/03/2013 11:38:06 PM,11/03/2013 11:38:27 PM,11/03/2013 11:39:45 PM,11/03/2013 11:42:35 PM,11/03/2013 11:43:29 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/04/2013 12:03:15 AM,1700 Block of GREENWICH ST,SF,94123,B04,16,3336,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.7998384641503, -122.428456807722)",133070376-T16 +131690051,88,13057267,Medical Incident,06/18/2013,06/17/2013,06/18/2013 05:25:44 AM,06/18/2013 05:26:43 AM,06/18/2013 05:29:12 AM,06/18/2013 05:29:28 AM,06/18/2013 05:35:05 AM,06/18/2013 05:54:31 AM,06/18/2013 06:14:48 AM,Code 2 Transport,06/18/2013 06:41:32 AM,1000 Block of 22ND ST,SF,94107,B10,37,2535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7576843079875, -122.391648743155)",131690051-88 +120150040,RC1,12004973,Medical Incident,01/15/2012,01/14/2012,01/15/2012 02:00:46 AM,01/15/2012 02:00:49 AM,01/15/2012 02:02:23 AM,01/15/2012 02:06:51 AM,01/15/2012 02:12:14 AM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 02:39:53 AM,1900 Block of UNION ST,SF,94123,B04,16,3443,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,4,2,Marina,"(37.7976099463654, -122.431831857814)",120150040-RC1 +130080384,93,13002919,Medical Incident,01/08/2013,01/08/2013,01/08/2013 09:05:21 PM,01/08/2013 09:05:27 PM,01/08/2013 09:05:54 PM,01/08/2013 09:06:14 PM,01/08/2013 09:13:57 PM,01/08/2013 09:31:05 PM,01/08/2013 09:37:19 PM,Code 2 Transport,01/08/2013 10:16:32 PM,1300 Block of FOLSOM ST,SF,94103,B02,36,2343,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7730095075911, -122.41247584547)",130080384-93 +123090327,T01,12102868,Structure Fire,11/04/2012,11/04/2012,11/04/2012 05:59:25 PM,11/04/2012 06:00:11 PM,11/04/2012 06:00:43 PM,11/04/2012 06:01:19 PM,11/04/2012 06:03:22 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 06:31:34 PM,0 Block of GUY PL,SF,94105,B03,35,2137,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7863713360254, -122.394626707002)",123090327-T01 +122020394,81,12067290,Medical Incident,07/20/2012,07/20/2012,07/20/2012 10:35:55 PM,07/20/2012 10:35:55 PM,07/20/2012 10:39:35 PM,07/20/2012 10:40:38 PM,07/20/2012 11:06:57 PM,07/20/2012 11:23:20 PM,07/20/2012 11:39:45 PM,Code 2 Transport,07/21/2012 12:11:20 AM,MARKET ST/LAGUNA ST,SF,94103,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",122020394-81 +110410051,E03,11013475,Medical Incident,02/10/2011,02/09/2011,02/10/2011 06:06:37 AM,02/10/2011 06:07:10 AM,02/10/2011 06:07:28 AM,02/10/2011 06:09:45 AM,02/10/2011 06:11:24 AM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 06:12:41 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",110410051-E03 +123360283,B06,12111808,Alarms,12/01/2012,12/01/2012,12/01/2012 05:19:16 PM,12/01/2012 05:21:23 PM,12/01/2012 05:21:59 PM,12/01/2012 05:23:13 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Fire,12/01/2012 05:33:19 PM,400 Block of CAPITOL AVE,SF,94112,B09,33,837,3,3,3,false,Alarm,1,CHIEF,3,9,11,Oceanview/Merced/Ingleside,"(37.7144812752634, -122.459109898055)",123360283-B06 +130600189,KM01,13020125,Medical Incident,03/01/2013,03/01/2013,03/01/2013 01:02:51 PM,03/01/2013 01:03:37 PM,03/01/2013 01:04:02 PM,03/01/2013 01:04:28 PM,03/01/2013 01:07:49 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Patient Declined Transport,03/01/2013 01:43:12 PM,FULTON ST/PARK PRESIDIO DR,SF,94118,B07,31,7144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Golden Gate Park,"(37.7731389469461, -122.471762120845)",130600189-KM01 +122490247,AM12,12082413,Medical Incident,09/05/2012,09/05/2012,09/05/2012 06:03:43 PM,09/05/2012 06:05:25 PM,09/05/2012 06:05:45 PM,09/05/2012 06:06:17 PM,09/05/2012 06:10:18 PM,09/05/2012 06:24:11 PM,09/05/2012 06:31:40 PM,Code 2 Transport,09/05/2012 07:01:30 PM,300 Block of CASTRO ST,SF,94114,B05,6,5253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7630708109806, -122.435153340097)",122490247-AM12 +120990246,78,12032869,Medical Incident,04/08/2012,04/08/2012,04/08/2012 06:37:30 PM,04/08/2012 06:40:32 PM,04/08/2012 06:40:46 PM,04/08/2012 06:41:01 PM,04/08/2012 06:47:43 PM,04/08/2012 06:53:09 PM,04/08/2012 07:01:18 PM,Code 2 Transport,04/08/2012 07:24:10 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",120990246-78 +113040261,E36,11100977,Structure Fire,10/31/2011,10/31/2011,10/31/2011 03:44:34 PM,10/31/2011 03:44:34 PM,10/31/2011 03:44:38 PM,10/31/2011 03:46:04 PM,10/31/2011 03:48:43 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 03:49:35 PM,100 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",113040261-E36 +121370087,66,12045443,Medical Incident,05/16/2012,05/16/2012,05/16/2012 08:08:16 AM,05/16/2012 08:08:17 AM,05/16/2012 08:09:14 AM,05/16/2012 08:09:32 AM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,No Merit,05/16/2012 08:15:50 AM,800 Block of MOSCOW ST,SF,94134,B09,43,6161,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7147094376962, -122.432490972814)",121370087-66 +111070043,83,11035277,Medical Incident,04/17/2011,04/16/2011,04/17/2011 03:15:53 AM,04/17/2011 03:17:44 AM,04/17/2011 03:17:55 AM,04/17/2011 03:18:03 AM,04/17/2011 03:22:36 AM,04/17/2011 03:42:29 AM,04/17/2011 04:00:04 AM,Code 2 Transport,04/17/2011 04:18:06 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",111070043-83 +113030344,T17,11100690,Structure Fire,10/30/2011,10/30/2011,10/30/2011 06:20:57 PM,10/30/2011 06:20:57 PM,10/30/2011 06:22:00 PM,10/30/2011 06:22:49 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/30/2011 06:24:05 PM,1100 Block of LA SALLE AV,SF,94124,B10,17,6637,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7313968208455, -122.381711184291)",113030344-T17 +113500006,68,11115971,Medical Incident,12/16/2011,12/15/2011,12/16/2011 12:37:36 AM,12/16/2011 12:39:50 AM,12/16/2011 12:40:35 AM,12/16/2011 12:40:45 AM,12/16/2011 12:45:19 AM,12/16/2011 01:09:55 AM,12/16/2011 01:18:22 AM,Code 2 Transport,12/16/2011 01:32:56 AM,3300 Block of CABRILLO ST,SF,94121,B07,34,7252,1,3,3,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.774026180989, -122.494507620938)",113500006-68 +111380168,66,11045866,Medical Incident,05/18/2011,05/18/2011,05/18/2011 12:34:30 PM,05/18/2011 12:36:43 PM,05/18/2011 12:38:14 PM,05/18/2011 12:38:45 PM,05/18/2011 01:01:24 PM,05/18/2011 01:18:01 PM,05/18/2011 01:35:25 PM,Code 2 Transport,05/18/2011 02:01:48 PM,3100 Block of INGALLS ST,SF,94124,B10,17,6612,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.719394865519, -122.392643622892)",111380168-66 +122980054,54,12098663,Medical Incident,10/24/2012,10/23/2012,10/24/2012 07:03:24 AM,10/24/2012 07:05:01 AM,10/24/2012 07:05:29 AM,10/24/2012 07:05:44 AM,10/24/2012 07:11:10 AM,10/24/2012 07:23:33 AM,10/24/2012 07:43:35 AM,Code 2 Transport,10/24/2012 08:21:19 AM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8082633159603, -122.414972542075)",122980054-54 +122800391,58,12092775,Medical Incident,10/06/2012,10/06/2012,10/06/2012 08:55:13 PM,10/06/2012 08:57:42 PM,10/06/2012 08:58:16 PM,10/06/2012 08:58:26 PM,10/06/2012 09:02:23 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Against Medical Advice,10/06/2012 09:41:03 PM,FILLMORE ST/POST ST,SF,94115,B04,38,3542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7851509392156, -122.433083400235)",122800391-58 +160242186,50,16009580,Medical Incident,01/24/2016,01/24/2016,01/24/2016 03:46:15 PM,01/24/2016 03:46:40 PM,01/24/2016 03:47:13 PM,01/24/2016 03:47:20 PM,01/24/2016 03:54:14 PM,01/24/2016 04:09:27 PM,01/24/2016 04:35:28 PM,Code 2 Transport,01/24/2016 05:05:02 PM,1200 Block of SILVER AVE,San Francisco,94134,B10,42,6356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7308246140879, -122.410982908601)",160242186-50 +160303088,87,16011904,Medical Incident,01/30/2016,01/30/2016,01/30/2016 06:43:15 PM,01/30/2016 06:43:43 PM,01/30/2016 06:44:02 PM,01/30/2016 06:44:15 PM,01/30/2016 06:48:59 PM,01/30/2016 07:07:52 PM,01/30/2016 07:23:18 PM,Code 2 Transport,01/30/2016 08:02:58 PM,300 Block of HAYES ST,San Francisco,94102,B02,36,3265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7769330032548, -122.422143452116)",160303088-87 +140090429,E02,14003340,Medical Incident,01/09/2014,01/09/2014,01/09/2014 11:57:53 PM,01/09/2014 11:58:12 PM,01/09/2014 11:59:27 PM,01/10/2014 12:01:14 AM,01/10/2014 12:03:45 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 12:08:49 AM,POWELL ST/GEARY ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",140090429-E02 +110130385,E25,11004493,Medical Incident,01/13/2011,01/13/2011,01/13/2011 11:04:28 PM,01/13/2011 11:05:21 PM,01/13/2011 11:06:14 PM,01/13/2011 11:07:12 PM,01/13/2011 11:10:11 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/13/2011 11:26:09 PM,0 Block of BOWMAN CT,SF,94124,B10,25,6565,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7380398300004, -122.382481774704)",110130385-E25 +113650080,E21,11121174,Gas Leak (Natural and LP Gases),12/31/2011,12/30/2011,12/31/2011 05:20:02 AM,12/31/2011 05:22:21 AM,12/31/2011 05:22:31 AM,12/31/2011 05:23:47 AM,12/31/2011 05:27:39 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 05:28:46 AM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,false,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",113650080-E21 +111610266,AM28,11053262,Medical Incident,06/10/2011,06/10/2011,06/10/2011 05:49:20 PM,06/10/2011 05:51:57 PM,06/10/2011 05:56:03 PM,06/10/2011 06:00:11 PM,06/10/2011 06:07:28 PM,06/10/2011 06:22:36 PM,06/10/2011 06:33:45 PM,Code 2 Transport,06/10/2011 07:14:42 PM,200 Block of SURREY ST,SF,94131,B06,26,8175,1,1,2,false,,1,PRIVATE,1,6,8,Glen Park,"(37.7357430748536, -122.435632974234)",111610266-AM28 +130760085,54,13025307,Medical Incident,03/17/2013,03/16/2013,03/17/2013 06:38:01 AM,03/17/2013 06:38:59 AM,03/17/2013 06:39:19 AM,03/17/2013 06:39:25 AM,03/17/2013 06:50:33 AM,03/17/2013 06:57:40 AM,03/17/2013 07:16:42 AM,Code 2 Transport,03/17/2013 07:48:17 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130760085-54 +112590080,86,11085315,Medical Incident,09/16/2011,09/16/2011,09/16/2011 08:09:57 AM,09/16/2011 08:11:46 AM,09/16/2011 08:12:13 AM,09/16/2011 08:12:32 AM,09/16/2011 08:27:07 AM,09/16/2011 08:38:13 AM,09/16/2011 09:09:23 AM,Code 2 Transport,09/16/2011 09:25:58 AM,900 Block of BRYANT ST,SF,94103,B03,8,2311,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7734713973423, -122.405870779067)",112590080-86 +103200305,E41,10102657,Structure Fire,11/16/2010,11/16/2010,11/16/2010 05:26:52 PM,11/16/2010 05:26:52 PM,11/16/2010 05:27:14 PM,04/25/2016 02:07:34 PM,11/16/2010 05:29:24 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Fire,11/16/2010 05:39:53 PM,1400 Block of JACKSON ST,SF,94109,B01,41,163,3,3,3,true,,1,ENGINE,1,1,3,Russian Hill,"(37.7944063708533, -122.418921298898)",103200305-E41 +113500300,82,11116206,Medical Incident,12/16/2011,12/16/2011,12/16/2011 06:12:07 PM,12/16/2011 06:13:52 PM,12/16/2011 06:14:15 PM,12/16/2011 06:14:41 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 06:15:51 PM,700 Block of VAN NESS AVE,SF,94102,B02,3,3163,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7824440383404, -122.420574545604)",113500300-82 +112670395,E07,11088413,Medical Incident,09/24/2011,09/24/2011,09/24/2011 11:53:48 PM,09/24/2011 11:54:26 PM,09/24/2011 11:54:45 PM,09/24/2011 11:55:22 PM,09/24/2011 11:57:02 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 11:59:23 PM,2900 Block of 16TH ST,SF,94110,B02,7,5236,3,E,3,true,,1,ENGINE,2,2,9,Mission,"(37.7650953807343, -122.418027620141)",112670395-E07 +103010086,92,10096035,Medical Incident,10/28/2010,10/27/2010,10/28/2010 07:18:51 AM,10/28/2010 07:20:51 AM,10/28/2010 07:21:07 AM,10/28/2010 07:21:21 AM,10/28/2010 07:32:49 AM,10/28/2010 07:50:19 AM,10/28/2010 08:05:05 AM,Code 2 Transport,10/28/2010 08:23:56 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,1,2,true,,1,MEDIC,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",103010086-92 +130540255,E34,13018321,Traffic Collision,02/23/2013,02/23/2013,02/23/2013 05:38:30 PM,02/23/2013 05:38:30 PM,02/23/2013 05:39:13 PM,02/23/2013 05:41:18 PM,02/23/2013 05:45:13 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 05:48:33 PM,GREAT HY/IRVING ST,SF,94122,B08,23,7722,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7621272900049, -122.509622174033)",130540255-E34 +102740096,E41,10086946,Medical Incident,10/01/2010,10/01/2010,10/01/2010 10:15:03 AM,10/01/2010 10:15:40 AM,10/01/2010 10:15:49 AM,10/01/2010 10:20:36 AM,10/01/2010 10:23:37 AM,10/01/2010 10:45:55 AM,04/25/2016 02:08:19 PM,Other,10/01/2010 11:10:00 AM,2100 Block of HYDE ST,SF,94109,B01,41,1612,3,3,3,false,,1,ENGINE,2,1,2,Russian Hill,"(37.800589159018, -122.419397480833)",102740096-E41 +140360117,53,14012156,Medical Incident,02/05/2014,02/05/2014,02/05/2014 10:17:08 AM,02/05/2014 10:18:37 AM,02/05/2014 10:19:24 AM,02/05/2014 10:19:34 AM,02/05/2014 10:28:42 AM,04/25/2016 01:48:22 PM,04/25/2016 01:48:22 PM,Other,02/05/2014 10:50:36 AM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7933243681385, -122.4027937497)",140360117-53 +130380064,B04,13012908,Alarms,02/07/2013,02/06/2013,02/07/2013 07:12:25 AM,02/07/2013 07:12:25 AM,02/07/2013 07:12:39 AM,02/07/2013 07:14:24 AM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/07/2013 07:17:53 AM,0 Block of BARCELONA AVE,SF,94115,B05,21,4344,3,3,3,false,Alarm,1,CHIEF,2,5,2,Lone Mountain/USF,"(37.7802569986603, -122.444496343055)",130380064-B04 +122420091,89,12079979,Medical Incident,08/29/2012,08/29/2012,08/29/2012 09:01:05 AM,08/29/2012 09:02:31 AM,08/29/2012 09:03:20 AM,08/29/2012 09:04:52 AM,08/29/2012 09:12:26 AM,08/29/2012 09:22:06 AM,08/29/2012 09:33:03 AM,Code 2 Transport,08/29/2012 10:09:58 AM,2200 Block of REVERE AVE,SF,94124,B10,42,6381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7384628741056, -122.402264769107)",122420091-89 +160110872,81,16004312,Medical Incident,01/11/2016,01/11/2016,01/11/2016 08:59:47 AM,01/11/2016 09:01:29 AM,01/11/2016 09:03:18 AM,01/11/2016 09:03:41 AM,01/11/2016 09:22:48 AM,01/11/2016 09:30:10 AM,01/11/2016 09:46:44 AM,Code 2 Transport,01/11/2016 10:09:49 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160110872-81 +160020144,89,16000571,Medical Incident,01/02/2016,01/01/2016,01/02/2016 01:06:29 AM,01/02/2016 01:08:43 AM,01/02/2016 01:10:49 AM,01/02/2016 01:10:58 AM,01/02/2016 01:17:29 AM,01/02/2016 01:34:40 AM,01/02/2016 01:38:08 AM,Code 2 Transport,01/02/2016 02:22:06 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160020144-89 +112400267,E11,11079274,Medical Incident,08/28/2011,08/28/2011,08/28/2011 05:56:56 PM,08/28/2011 05:58:16 PM,08/28/2011 05:58:33 PM,08/28/2011 05:59:57 PM,08/28/2011 06:01:20 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 06:02:54 PM,3000 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7485954399415, -122.418024677603)",112400267-E11 +133620050,68,13122885,Medical Incident,12/28/2013,12/27/2013,12/28/2013 03:57:15 AM,12/28/2013 03:59:12 AM,12/28/2013 03:59:25 AM,12/28/2013 04:00:06 AM,12/28/2013 04:10:22 AM,12/28/2013 04:21:50 AM,12/28/2013 04:41:08 AM,Code 2 Transport,12/28/2013 05:20:23 AM,0 Block of KING ST,SF,94107,B03,35,940,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7807643532489, -122.388778001806)",133620050-68 +160811934,KM08,16032195,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:44:28 PM,03/21/2016 01:45:38 PM,03/21/2016 01:46:40 PM,03/21/2016 01:49:14 PM,03/21/2016 01:54:37 PM,03/21/2016 02:37:03 PM,03/21/2016 02:43:08 PM,Code 3 Transport,03/21/2016 03:14:31 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160811934-KM08 +132260306,B06,13076393,Alarms,08/14/2013,08/14/2013,08/14/2013 05:56:37 PM,08/14/2013 05:58:38 PM,08/14/2013 05:59:22 PM,08/14/2013 05:59:49 PM,08/14/2013 06:01:21 PM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,Fire,08/14/2013 06:05:51 PM,4200 Block of 24TH ST,SF,94114,B06,24,5521,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7510337035454, -122.437381084007)",132260306-B06 +160784166,58,16031230,Medical Incident,03/18/2016,03/18/2016,03/18/2016 11:33:02 PM,03/18/2016 11:36:30 PM,03/18/2016 11:36:46 PM,03/18/2016 11:36:56 PM,03/18/2016 11:59:04 PM,03/19/2016 12:03:00 AM,03/19/2016 12:15:05 AM,Code 2 Transport,03/19/2016 01:10:27 AM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769506585734, -122.451298930077)",160784166-58 +130990212,KM12,13033265,Medical Incident,04/09/2013,04/09/2013,04/09/2013 01:09:10 PM,04/09/2013 01:11:13 PM,04/09/2013 01:11:30 PM,04/09/2013 01:12:36 PM,04/25/2016 01:53:24 PM,04/25/2016 01:53:24 PM,04/25/2016 01:53:24 PM,Other,04/09/2013 01:16:31 PM,700 Block of MINNA ST,SF,94103,B02,36,2318,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7763745624994, -122.413346206384)",130990212-KM12 +122490331,RC2,12082486,Medical Incident,09/05/2012,09/05/2012,09/05/2012 09:57:33 PM,09/05/2012 09:57:55 PM,09/05/2012 09:58:26 PM,09/05/2012 10:00:22 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/05/2012 10:02:26 PM,4200 Block of 25TH ST,SF,94114,B06,11,5541,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,6,8,Noe Valley,"(37.7495741560835, -122.435028131227)",122490331-RC2 +140200019,B04,14006729,Outside Fire,01/20/2014,01/19/2014,01/20/2014 02:08:46 AM,01/20/2014 02:10:43 AM,01/20/2014 02:11:01 AM,01/20/2014 02:12:35 AM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/20/2014 02:14:26 AM,PRESIDIO AV/CLAY ST,SF,94115,B04,10,4413,3,3,3,false,Fire,1,CHIEF,3,4,2,Presidio Heights,"(37.7890713875458, -122.447148006965)",140200019-B04 +160183023,61,16007370,Medical Incident,01/18/2016,01/18/2016,01/18/2016 08:16:31 PM,01/18/2016 08:18:01 PM,01/18/2016 08:18:33 PM,01/18/2016 08:18:44 PM,01/18/2016 08:27:49 PM,01/18/2016 08:44:47 PM,01/18/2016 09:04:33 PM,Code 2 Transport,01/18/2016 09:40:52 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160183023-61 +110040323,AM18,11001412,Medical Incident,01/04/2011,01/04/2011,01/04/2011 07:13:35 PM,01/04/2011 07:14:17 PM,01/04/2011 07:14:53 PM,01/04/2011 07:15:23 PM,01/04/2011 07:18:33 PM,01/04/2011 07:26:27 PM,01/04/2011 07:42:47 PM,Code 2 Transport,01/04/2011 08:17:34 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110040323-AM18 +111380226,E16,11045910,Structure Fire,05/18/2011,05/18/2011,05/18/2011 02:42:27 PM,05/18/2011 02:42:27 PM,05/18/2011 02:42:43 PM,05/18/2011 02:43:06 PM,05/18/2011 02:44:49 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 02:46:07 PM,BUCHANAN ST/BAY ST,SF,94123,B04,16,3446,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8030568840333, -122.433327957472)",111380226-E16 +102280029,E03,10071660,Medical Incident,08/16/2010,08/15/2010,08/16/2010 02:49:28 AM,08/16/2010 02:51:03 AM,08/16/2010 02:51:15 AM,04/25/2016 02:09:03 PM,08/16/2010 02:53:55 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Patient Declined Transport,08/16/2010 02:59:41 AM,HYDE ST/PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",102280029-E03 +110450257,86,11014984,Medical Incident,02/14/2011,02/14/2011,02/14/2011 04:26:51 PM,02/14/2011 04:27:18 PM,02/14/2011 04:27:35 PM,02/14/2011 04:30:24 PM,02/14/2011 04:32:42 PM,02/14/2011 04:48:04 PM,02/14/2011 05:06:03 PM,Code 2 Transport,02/14/2011 05:34:26 PM,0 Block of ROCKRIDGE DR,SF,94116,B08,40,7354,3,3,3,true,,1,MEDIC,2,8,7,Inner Sunset,"(37.7508105921877, -122.469748625841)",110450257-86 +160083378,76,16003383,Medical Incident,01/08/2016,01/08/2016,01/08/2016 07:43:18 PM,01/08/2016 07:43:18 PM,01/08/2016 07:43:18 PM,01/08/2016 07:43:18 PM,01/08/2016 07:43:18 PM,01/08/2016 07:58:12 PM,01/08/2016 08:04:43 PM,Code 2 Transport,01/08/2016 09:07:52 PM,EDDY ST/CYRIL MAGNIN ST,San Francisco,94102,B01,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",160083378-76 +160870640,57,16034472,Medical Incident,03/27/2016,03/26/2016,03/27/2016 05:37:51 AM,03/27/2016 05:41:11 AM,03/27/2016 05:41:42 AM,03/27/2016 05:41:52 AM,03/27/2016 05:56:08 AM,03/27/2016 06:08:51 AM,03/27/2016 06:36:24 AM,Code 2 Transport,03/27/2016 07:07:35 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160870640-57 +130800113,E48,13026687,Medical Incident,03/21/2013,03/21/2013,03/21/2013 09:44:30 AM,03/21/2013 09:46:01 AM,03/21/2013 09:46:24 AM,03/21/2013 09:47:52 AM,03/21/2013 09:50:51 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 10:17:52 AM,1200 Block of MARINER DR,TI,94130,B03,48,2931,1,1,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",130800113-E48 +131710188,E36,13058051,Medical Incident,06/20/2013,06/20/2013,06/20/2013 01:12:40 PM,06/20/2013 01:13:43 PM,06/20/2013 01:27:08 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/20/2013 01:28:40 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,E,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",131710188-E36 +130870374,E05,13029187,Administrative,03/28/2013,03/28/2013,03/28/2013 09:56:12 PM,03/28/2013 09:56:26 PM,03/28/2013 09:57:50 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 09:58:15 PM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",130870374-E05 +140810359,58,14027518,Medical Incident,03/22/2014,03/22/2014,03/22/2014 10:15:26 PM,03/22/2014 10:15:49 PM,03/22/2014 10:15:57 PM,03/22/2014 10:18:22 PM,03/22/2014 10:21:40 PM,03/22/2014 10:49:56 PM,03/22/2014 11:00:50 PM,Code 2 Transport,03/22/2014 11:39:08 PM,500 Block of GREEN ST,SAN FRANCISCO,94133,B01,28,1266,E,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.7997378624541, -122.407557998761)",140810359-58 +160022355,88,16000807,Medical Incident,01/02/2016,01/02/2016,01/02/2016 04:53:35 PM,01/02/2016 04:53:35 PM,01/02/2016 04:53:48 PM,01/02/2016 04:54:33 PM,01/02/2016 05:08:29 PM,01/02/2016 05:33:00 PM,01/02/2016 05:38:48 PM,Code 2 Transport,01/02/2016 05:59:28 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",160022355-88 +102350080,E01,10073865,Medical Incident,08/23/2010,08/23/2010,08/23/2010 08:48:06 AM,08/23/2010 08:49:19 AM,08/23/2010 08:49:39 AM,08/23/2010 08:50:59 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,04/25/2016 02:08:57 PM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,3,2,6,South of Market,"(37.7739392650435, -122.412947871011)",102350080-E01 +111430165,E33,11047511,Traffic Collision,05/23/2011,05/23/2011,05/23/2011 11:47:51 AM,05/23/2011 11:53:15 AM,05/23/2011 11:54:45 AM,05/23/2011 11:55:53 AM,05/23/2011 12:04:09 PM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/23/2011 12:04:19 PM,200 Block of SAGAMORE ST,SF,94112,B09,33,8375,2,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7113251139189, -122.460533946078)",111430165-E33 +160910049,KM03,16035920,Medical Incident,03/31/2016,03/30/2016,03/31/2016 12:22:25 AM,03/31/2016 12:22:49 AM,03/31/2016 12:23:17 AM,03/31/2016 12:23:49 AM,03/31/2016 12:28:57 AM,03/31/2016 12:51:12 AM,03/31/2016 01:01:55 AM,Code 2 Transport,03/31/2016 01:38:53 AM,400 Block of VICTORIA ST,San Francisco,94132,B09,33,8444,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7188021317353, -122.465280431039)",160910049-KM03 +110350170,RC3,11011487,Traffic Collision,02/04/2011,02/04/2011,02/04/2011 11:30:54 AM,02/04/2011 11:32:31 AM,02/04/2011 11:32:51 AM,02/04/2011 11:40:10 AM,02/04/2011 11:42:58 AM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Other,02/04/2011 11:55:07 AM,SANTA CLARA AV/PORTOLA DR,SF,94127,B08,39,8563,2,3,3,true,,1,RESCUE CAPTAIN,2,8,7,West of Twin Peaks,"(37.7392358314406, -122.466157325803)",110350170-RC3 +113300068,T01,11109343,Alarms,11/26/2011,11/26/2011,11/26/2011 08:43:58 AM,11/26/2011 08:45:57 AM,11/26/2011 08:46:11 AM,11/26/2011 08:47:29 AM,11/26/2011 08:51:51 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/26/2011 08:58:37 AM,0 Block of WASHBURN ST,SF,94103,B02,36,2336,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7752362231466, -122.414406294791)",113300068-T01 +130610158,B03,13020439,Alarms,03/02/2013,03/02/2013,03/02/2013 11:18:45 AM,03/02/2013 11:19:51 AM,03/02/2013 11:20:26 AM,03/02/2013 11:20:34 AM,03/02/2013 11:22:33 AM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Other,03/02/2013 11:32:48 AM,400 Block of 10TH ST,SF,94103,B02,29,2345,3,3,3,false,Alarm,1,CHIEF,1,2,6,South of Market,"(37.7709248562482, -122.410555957263)",130610158-B03 +102240287,E36,10070635,Medical Incident,08/12/2010,08/12/2010,08/12/2010 06:12:11 PM,08/12/2010 06:13:12 PM,08/12/2010 06:13:29 PM,08/12/2010 06:14:46 PM,08/12/2010 06:16:29 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/12/2010 06:21:43 PM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",102240287-E36 +111780323,85,11058888,Medical Incident,06/27/2011,06/27/2011,06/27/2011 07:16:48 PM,06/27/2011 07:17:47 PM,06/27/2011 07:18:18 PM,06/27/2011 07:18:35 PM,06/27/2011 07:24:10 PM,06/27/2011 07:47:08 PM,06/27/2011 07:58:26 PM,Code 2 Transport,06/27/2011 08:26:16 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",111780323-85 +160280374,KM07,16010957,Medical Incident,01/28/2016,01/27/2016,01/28/2016 04:55:52 AM,01/28/2016 04:55:52 AM,01/28/2016 04:56:58 AM,01/28/2016 04:57:37 AM,01/28/2016 05:02:57 AM,01/28/2016 05:28:34 AM,01/28/2016 05:40:13 AM,Code 2 Transport,01/28/2016 06:27:47 AM,11TH ST/HOWARD ST,San Francisco,94103,B02,36,5114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7731005870473, -122.415561389884)",160280374-KM07 +130460338,E13,13015733,Medical Incident,02/15/2013,02/15/2013,02/15/2013 05:38:16 PM,02/15/2013 05:40:34 PM,02/15/2013 05:43:43 PM,02/15/2013 05:44:50 PM,02/15/2013 05:52:28 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 06:12:11 PM,MISSION ST/SPEAR ST,SF,94105,B03,35,2111,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7925372164019, -122.394059624933)",130460338-E13 +140580310,E19,14019674,Administrative,02/27/2014,02/27/2014,02/27/2014 07:31:56 PM,02/27/2014 07:32:29 PM,02/27/2014 07:32:50 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Other,02/27/2014 07:35:30 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",140580310-E19 +110680201,96,11022373,Medical Incident,03/09/2011,03/09/2011,03/09/2011 01:09:07 PM,03/09/2011 01:11:10 PM,03/09/2011 01:11:50 PM,03/09/2011 01:14:05 PM,03/09/2011 01:17:43 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/09/2011 01:20:57 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",110680201-96 +160361920,KM09,16014255,Medical Incident,02/05/2016,02/05/2016,02/05/2016 12:52:32 PM,02/05/2016 12:54:31 PM,02/05/2016 12:55:43 PM,02/05/2016 01:00:01 PM,02/05/2016 01:37:15 PM,02/05/2016 01:37:19 PM,02/05/2016 01:58:42 PM,Code 2 Transport,02/05/2016 03:08:40 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160361920-KM09 +121730104,E02,12057377,Alarms,06/21/2012,06/21/2012,06/21/2012 08:34:53 AM,06/21/2012 08:35:39 AM,06/21/2012 08:35:51 AM,06/21/2012 08:37:50 AM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/21/2012 08:40:51 AM,400 Block of POST ST,SF,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",121730104-E02 +160270158,KM07,16010521,Medical Incident,01/27/2016,01/26/2016,01/27/2016 01:46:52 AM,01/27/2016 01:48:56 AM,01/27/2016 01:49:07 AM,01/27/2016 01:49:44 AM,01/27/2016 01:53:59 AM,01/27/2016 02:05:23 AM,01/27/2016 02:22:01 AM,Code 2 Transport,01/27/2016 02:46:57 AM,0 Block of PERRY ST,San Francisco,94107,B03,8,2175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",160270158-KM07 +110330011,B01,11010674,Alarms,02/02/2011,02/01/2011,02/02/2011 01:09:59 AM,02/02/2011 01:12:18 AM,02/02/2011 01:12:43 AM,02/02/2011 01:14:45 AM,02/02/2011 01:20:55 AM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Fire,02/02/2011 01:22:11 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,CHIEF,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",110330011-B01 +133650185,E44,13123940,Medical Incident,12/31/2013,12/31/2013,12/31/2013 01:21:06 PM,12/31/2013 01:22:16 PM,12/31/2013 01:22:50 PM,12/31/2013 01:23:59 PM,12/31/2013 01:24:45 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Other,12/31/2013 01:34:44 PM,SAN BRUNO AV/FELTON ST,SF,94134,B10,42,6337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7300371964722, -122.404592619044)",133650185-E44 +131510266,E05,13051195,Medical Incident,05/31/2013,05/31/2013,05/31/2013 04:17:12 PM,05/31/2013 04:19:18 PM,05/31/2013 04:20:49 PM,05/31/2013 04:21:37 PM,05/31/2013 04:25:32 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 04:31:44 PM,1700 Block of POST ST,SF,94115,B04,5,3513,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7854139465586, -122.430564088684)",131510266-E05 +111350097,94,11044829,Medical Incident,05/15/2011,05/14/2011,05/15/2011 07:33:49 AM,05/15/2011 07:37:21 AM,05/15/2011 07:37:53 AM,05/15/2011 07:40:27 AM,05/15/2011 07:41:38 AM,05/15/2011 07:59:40 AM,05/15/2011 08:20:40 AM,Code 2 Transport,05/15/2011 08:51:01 AM,0 Block of VAN NESS AVE,SF,94102,B02,36,3211,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7761270178724, -122.419607871931)",111350097-94 +121010336,E01,12033615,Outside Fire,04/10/2012,04/10/2012,04/10/2012 08:05:09 PM,04/10/2012 08:07:36 PM,04/10/2012 08:08:00 PM,04/10/2012 08:09:15 PM,04/10/2012 08:10:53 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Fire,04/10/2012 08:16:33 PM,FOLSOM ST/5TH ST,SF,94107,B03,1,2244,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",121010336-E01 +122050079,KM04,12068090,Medical Incident,07/23/2012,07/23/2012,07/23/2012 08:10:23 AM,07/23/2012 08:10:58 AM,07/23/2012 08:12:16 AM,07/23/2012 08:12:59 AM,07/23/2012 08:18:44 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,No Merit,07/23/2012 08:22:04 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122050079-KM04 +140360143,82,14012172,Medical Incident,02/05/2014,02/05/2014,02/05/2014 11:28:54 AM,02/05/2014 11:31:02 AM,02/05/2014 11:31:16 AM,02/05/2014 11:31:32 AM,02/05/2014 11:39:18 AM,02/05/2014 11:59:50 AM,02/05/2014 12:07:45 PM,Code 2 Transport,02/05/2014 12:49:02 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",140360143-82 +110780384,RS1,11025843,Medical Incident,03/19/2011,03/19/2011,03/19/2011 10:46:57 PM,03/19/2011 10:49:09 PM,03/19/2011 10:49:45 PM,03/19/2011 10:50:43 PM,03/19/2011 10:54:01 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 10:59:10 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",110780384-RS1 +102380352,E33,10075200,Alarms,08/26/2010,08/26/2010,08/26/2010 08:36:31 PM,08/26/2010 08:37:38 PM,08/26/2010 08:37:49 PM,08/26/2010 08:39:21 PM,08/26/2010 08:40:29 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 09:00:59 PM,3900 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,true,,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",102380352-E33 +112100056,RS1,11069232,Traffic Collision,07/29/2011,07/28/2011,07/29/2011 07:23:44 AM,07/29/2011 07:24:46 AM,07/29/2011 07:25:02 AM,07/29/2011 07:27:05 AM,07/29/2011 07:31:21 AM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 07:31:32 AM,1ST ST/HOWARD ST,SF,94105,B03,35,2141,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7885359297329, -122.396034766801)",112100056-RS1 +160120350,85,16004640,Medical Incident,01/12/2016,01/11/2016,01/12/2016 04:20:04 AM,01/12/2016 04:21:02 AM,01/12/2016 04:21:13 AM,01/12/2016 04:21:24 AM,01/12/2016 04:27:05 AM,01/12/2016 04:41:59 AM,01/12/2016 04:48:32 AM,Code 2 Transport,01/12/2016 06:00:56 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160120350-85 +160532003,75,16021246,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:44:26 PM,02/22/2016 02:44:48 PM,02/22/2016 02:46:50 PM,02/22/2016 02:47:06 PM,02/22/2016 02:51:46 PM,02/22/2016 03:09:02 PM,02/22/2016 03:39:53 PM,Code 2 Transport,02/22/2016 04:02:46 PM,100 Block of VERNON ST,San Francisco,94132,B09,33,8411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7151841543994, -122.46807546609)",160532003-75 +121400231,E42,12046538,Medical Incident,05/19/2012,05/19/2012,05/19/2012 04:32:42 PM,05/19/2012 04:35:41 PM,05/19/2012 04:35:55 PM,05/19/2012 04:37:12 PM,05/19/2012 04:41:17 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/19/2012 04:52:02 PM,3200 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Portola,"(37.7209679400284, -122.400941241027)",121400231-E42 +110920308,T15,11030647,Traffic Collision,04/02/2011,04/02/2011,04/02/2011 07:31:07 PM,04/02/2011 07:31:50 PM,04/02/2011 07:32:14 PM,04/02/2011 07:33:36 PM,04/02/2011 07:41:01 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/02/2011 08:33:38 PM,"CALL BOX: JOHN DALY BL/MISSION ST,DC",DC,,B09,33,9922,3,3,3,false,,1,TRUCK,3,None,None,None,"(37.7049649190377, -122.462393901191)",110920308-T15 +120570098,E29,12018737,Alarms,02/26/2012,02/25/2012,02/26/2012 07:32:21 AM,02/26/2012 07:33:31 AM,02/26/2012 07:33:41 AM,02/26/2012 07:35:52 AM,02/26/2012 07:38:45 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 07:43:31 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,2,2,9,Mission,"(37.7622701739914, -122.419470488515)",120570098-E29 +130960288,E32,13032269,Medical Incident,04/06/2013,04/06/2013,04/06/2013 05:37:46 PM,04/06/2013 05:39:16 PM,04/06/2013 05:39:52 PM,04/06/2013 05:41:25 PM,04/06/2013 05:43:48 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 05:58:07 PM,100 Block of PUTNAM ST,SF,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7375380639723, -122.410869557896)",130960288-E32 +110640429,E33,11021292,Medical Incident,03/05/2011,03/05/2011,03/05/2011 11:25:24 PM,03/05/2011 11:26:38 PM,03/05/2011 11:26:59 PM,03/05/2011 11:28:24 PM,03/05/2011 11:31:38 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 11:38:39 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",110640429-E33 +102430303,E29,10076729,Medical Incident,08/31/2010,08/31/2010,08/31/2010 04:51:22 PM,08/31/2010 04:54:59 PM,08/31/2010 04:55:32 PM,08/31/2010 04:56:23 PM,08/31/2010 04:59:15 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,08/31/2010 05:02:06 PM,1500 Block of BRYANT ST,SF,94103,B02,29,5222,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.767536533024, -122.410739256407)",102430303-E29 +131370053,E35,13046162,Alarms,05/17/2013,05/16/2013,05/17/2013 06:27:14 AM,05/17/2013 06:28:53 AM,05/17/2013 06:29:22 AM,05/17/2013 06:31:04 AM,05/17/2013 06:34:43 AM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Fire,05/17/2013 07:04:28 AM,500 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7886287320653, -122.398912581875)",131370053-E35 +102600318,54,10082281,Medical Incident,09/17/2010,09/17/2010,09/17/2010 07:00:03 PM,09/17/2010 07:01:16 PM,09/17/2010 07:01:56 PM,04/25/2016 02:08:33 PM,09/17/2010 07:05:20 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 07:09:19 PM,200 Block of NIAGARA AVE,SF,94112,B09,15,8312,2,3,3,true,,1,MEDIC,2,9,11,Outer Mission,"(37.7184046032624, -122.445324703758)",102600318-54 +160050582,53,16001870,Medical Incident,01/05/2016,01/04/2016,01/05/2016 07:21:58 AM,01/05/2016 07:24:09 AM,01/05/2016 07:24:27 AM,01/05/2016 07:24:46 AM,01/05/2016 07:33:36 AM,01/05/2016 07:55:22 AM,01/05/2016 07:58:47 AM,Code 2 Transport,01/05/2016 09:13:57 AM,100 Block of BLAKE ST,San Francisco,94118,B05,10,4454,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.781311939044, -122.450913525833)",160050582-53 +160032524,50,16001295,Medical Incident,01/03/2016,01/03/2016,01/03/2016 06:07:54 PM,01/03/2016 06:07:54 PM,01/03/2016 06:08:20 PM,01/03/2016 06:08:30 PM,01/03/2016 06:12:21 PM,01/03/2016 06:23:37 PM,01/03/2016 06:28:58 PM,Code 2 Transport,01/03/2016 06:57:24 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160032524-50 +130880424,E02,13029576,Medical Incident,03/29/2013,03/29/2013,03/29/2013 10:28:16 PM,03/29/2013 10:29:00 PM,03/29/2013 10:30:45 PM,03/29/2013 10:31:58 PM,03/29/2013 10:34:24 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 10:53:49 PM,100 Block of VALPARAISO ST,SF,94133,B01,28,1514,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Russian Hill,"(37.8011433372893, -122.415457652032)",130880424-E02 +132770387,E37,13094247,Gas Leak (Natural and LP Gases),10/04/2013,10/04/2013,10/04/2013 07:16:25 PM,10/04/2013 07:17:55 PM,10/04/2013 07:18:54 PM,10/04/2013 07:20:08 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,No Merit,10/04/2013 07:26:38 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",132770387-E37 +132080229,T03,13070447,Structure Fire,07/27/2013,07/27/2013,07/27/2013 05:19:43 PM,07/27/2013 05:19:43 PM,07/27/2013 05:20:11 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/27/2013 05:22:57 PM,POLK ST/MCALLISTER ST,SF,94102,B02,3,3113,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",132080229-T03 +160531402,79,16021179,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:53:11 AM,02/22/2016 11:54:13 AM,02/22/2016 11:54:37 AM,02/22/2016 11:55:18 AM,02/22/2016 12:17:31 PM,02/22/2016 12:17:33 PM,02/22/2016 12:56:07 PM,Code 2 Transport,02/22/2016 12:56:08 PM,OCEAN AV/PLYMOUTH AV,San Francisco,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",160531402-79 +111390258,E02,11046273,Structure Fire,05/19/2011,05/19/2011,05/19/2011 04:27:37 PM,05/19/2011 04:27:37 PM,05/19/2011 04:27:53 PM,05/19/2011 04:28:54 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 04:30:01 PM,KEARNY ST/SACRAMENTO ST,SF,94104,B01,13,1244,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",111390258-E02 +160533297,88,16021374,Medical Incident,02/22/2016,02/22/2016,02/22/2016 09:07:20 PM,02/22/2016 09:08:38 PM,02/22/2016 09:09:48 PM,02/22/2016 09:09:57 PM,02/22/2016 09:13:54 PM,02/22/2016 09:38:51 PM,02/22/2016 09:58:24 PM,Code 2 Transport,02/22/2016 10:12:03 PM,0 Block of 10TH ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762695066166, -122.41725760507)",160533297-88 +121630362,E34,12054200,Medical Incident,06/11/2012,06/11/2012,06/11/2012 08:42:20 PM,06/11/2012 08:44:22 PM,06/11/2012 08:44:46 PM,06/11/2012 08:45:43 PM,06/11/2012 08:47:06 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 09:02:48 PM,8100 Block of GEARY BLVD,SF,94121,B07,34,7274,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7790318016958, -122.506695255358)",121630362-E34 +132030208,83,13068788,Medical Incident,07/22/2013,07/22/2013,07/22/2013 02:22:46 PM,07/22/2013 02:24:45 PM,07/22/2013 02:24:52 PM,04/25/2016 01:51:41 PM,07/22/2013 02:27:01 PM,07/22/2013 02:42:26 PM,07/22/2013 03:00:35 PM,Code 2 Transport,07/22/2013 03:18:12 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7694504462794, -122.424435244186)",132030208-83 +121610310,T03,12053423,Structure Fire,06/09/2012,06/09/2012,06/09/2012 08:28:35 PM,06/09/2012 08:28:36 PM,06/09/2012 08:28:42 PM,06/09/2012 08:29:46 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/09/2012 08:30:38 PM,1200 Block of LARKIN ST,SF,94109,B04,3,1636,3,3,3,true,Alarm,1,TRUCK,2,4,3,Nob Hill,"(37.7891338877614, -122.418771494007)",121610310-T03 +160783674,AM20,16031183,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:56:59 PM,03/18/2016 08:57:33 PM,03/18/2016 08:57:44 PM,03/18/2016 08:58:10 PM,03/18/2016 09:01:26 PM,03/18/2016 09:24:48 PM,03/18/2016 09:36:19 PM,Code 2 Transport,03/18/2016 10:05:27 PM,MCALLISTER ST/HYDE ST,San Francisco,94102,B02,3,1553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160783674-AM20 +160713369,72,16028384,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:11:58 PM,03/11/2016 09:13:44 PM,03/11/2016 09:14:24 PM,03/11/2016 09:14:43 PM,03/11/2016 09:18:14 PM,03/11/2016 09:38:06 PM,03/11/2016 09:57:37 PM,Code 2 Transport,03/11/2016 10:24:17 PM,400 Block of PENNSYLVANIA AVE,San Francisco,94107,B10,37,2474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7608348188682, -122.393495540914)",160713369-72 +160823260,72,16032705,Medical Incident,03/22/2016,03/22/2016,03/22/2016 06:48:41 PM,03/22/2016 06:48:41 PM,03/22/2016 06:49:51 PM,03/22/2016 06:49:59 PM,03/22/2016 06:50:39 PM,03/22/2016 07:10:40 PM,03/22/2016 07:25:57 PM,Code 2 Transport,03/22/2016 08:06:11 PM,3300 Block of 3RD ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,None,None,"(37.7475912199361, -122.387182780653)",160823260-72 +112570297,59,11084845,Medical Incident,09/14/2011,09/14/2011,09/14/2011 08:10:15 PM,09/14/2011 08:12:56 PM,09/14/2011 08:13:12 PM,09/14/2011 08:30:14 PM,09/14/2011 08:35:12 PM,09/14/2011 08:50:45 PM,09/14/2011 09:04:21 PM,Code 2 Transport,09/14/2011 09:25:38 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,2,2,2,true,,1,MEDIC,3,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",112570297-59 +131330313,E06,13044966,Medical Incident,05/13/2013,05/13/2013,05/13/2013 06:01:04 PM,05/13/2013 06:01:55 PM,05/13/2013 06:02:22 PM,05/13/2013 06:04:41 PM,05/13/2013 06:05:25 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 06:20:45 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",131330313-E06 +160741965,KM04,16029354,Medical Incident,03/14/2016,03/14/2016,03/14/2016 01:35:57 PM,03/14/2016 01:37:08 PM,03/14/2016 01:39:09 PM,03/14/2016 01:39:46 PM,03/14/2016 01:48:04 PM,03/14/2016 02:15:25 PM,03/14/2016 02:28:36 PM,Code 2 Transport,03/14/2016 03:05:22 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160741965-KM04 +111500206,E01,11049725,Structure Fire,05/30/2011,05/30/2011,05/30/2011 03:30:59 PM,05/30/2011 03:32:58 PM,05/30/2011 03:33:12 PM,05/30/2011 03:34:23 PM,05/30/2011 03:36:33 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 03:38:48 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,5,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",111500206-E01 +113210185,94,11106628,Medical Incident,11/17/2011,11/17/2011,11/17/2011 12:18:33 PM,11/17/2011 12:23:02 PM,11/17/2011 12:25:25 PM,11/17/2011 12:27:25 PM,11/17/2011 12:38:15 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/17/2011 01:06:37 PM,4100 Block of CLEMENT ST,SF,94121,B07,34,7266,1,1,2,true,,1,MEDIC,1,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",113210185-94 +111630154,E41,11053797,Medical Incident,06/12/2011,06/12/2011,06/12/2011 12:24:04 PM,06/12/2011 12:26:28 PM,06/12/2011 12:26:40 PM,06/12/2011 12:27:38 PM,06/12/2011 12:28:44 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Other,06/12/2011 12:44:50 PM,1200 Block of JACKSON ST,SF,94109,B01,41,1535,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7948284980697, -122.415638166928)",111630154-E41 +160802589,88,16031890,Medical Incident,03/20/2016,03/20/2016,03/20/2016 05:19:19 PM,03/20/2016 05:19:19 PM,03/20/2016 05:20:01 PM,03/20/2016 05:20:42 PM,03/20/2016 05:29:30 PM,03/20/2016 05:45:40 PM,03/20/2016 06:00:01 PM,Code 2 Transport,03/20/2016 06:16:21 PM,700 Block of STANYAN ST,San Francisco,94122,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Golden Gate Park,"(37.7686969786551, -122.453512911126)",160802589-88 +111110310,55,11036766,Medical Incident,04/21/2011,04/21/2011,04/21/2011 06:42:54 PM,04/21/2011 06:43:47 PM,04/21/2011 06:44:02 PM,04/21/2011 06:44:15 PM,04/21/2011 06:46:30 PM,04/21/2011 07:23:51 PM,04/21/2011 07:40:09 PM,Code 2 Transport,04/21/2011 08:08:27 PM,700 Block of PARKER AVE,SF,94118,B05,21,4542,2,2,2,true,,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7753639647551, -122.452955343611)",111110310-55 +160601995,74,16023926,Medical Incident,02/29/2016,02/29/2016,02/29/2016 02:21:43 PM,02/29/2016 02:24:45 PM,02/29/2016 02:25:38 PM,02/29/2016 02:25:45 PM,02/29/2016 02:37:40 PM,02/29/2016 02:48:45 PM,02/29/2016 02:56:48 PM,Code 2 Transport,02/29/2016 03:33:23 PM,200 Block of GOUGH ST,San Francisco,94102,B02,36,3266,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.775244832582, -122.422713876818)",160601995-74 +111600307,T09,11052985,Structure Fire,06/09/2011,06/09/2011,06/09/2011 09:09:18 PM,06/09/2011 09:09:19 PM,06/09/2011 09:09:24 PM,06/09/2011 09:10:50 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 09:11:42 PM,25TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,false,,1,TRUCK,2,10,10,Potrero Hill,"(37.7521940654679, -122.398452381695)",111600307-T09 +140740104,AM02,14024959,Medical Incident,03/15/2014,03/15/2014,03/15/2014 09:09:09 AM,03/15/2014 09:11:42 AM,03/15/2014 09:13:59 AM,03/15/2014 09:14:54 AM,03/15/2014 09:23:03 AM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Patient Declined Transport,03/15/2014 09:32:35 AM,1000 Block of LARKIN ST,SAN FRANCISCO,94109,B04,3,1641,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7872715205959, -122.41824964748)",140740104-AM02 +120680116,KM11,12022509,Medical Incident,03/08/2012,03/08/2012,03/08/2012 10:36:27 AM,03/08/2012 10:37:07 AM,03/08/2012 10:38:01 AM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,04/25/2016 01:59:46 PM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",120680116-KM11 +140680310,55,14023129,Medical Incident,03/09/2014,03/09/2014,03/09/2014 10:50:43 PM,03/09/2014 10:51:53 PM,03/09/2014 10:54:07 PM,03/09/2014 10:54:15 PM,03/09/2014 11:00:43 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Patient Declined Transport,03/09/2014 11:03:25 PM,1800 Block of CLAY ST,SAN FRANCISCO,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7920157739195, -122.423506395119)",140680310-55 +102970402,81,10094944,Medical Incident,10/24/2010,10/24/2010,10/24/2010 07:07:49 PM,10/24/2010 07:08:32 PM,10/24/2010 07:08:51 PM,10/24/2010 07:09:45 PM,10/24/2010 07:14:49 PM,10/24/2010 07:29:49 PM,10/24/2010 07:35:09 PM,Code 2 Transport,10/24/2010 08:11:49 PM,1700 Block of WALLER ST,SF,94117,B05,12,4552,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7682837349171, -122.452502140464)",102970402-81 +110270136,E16,11008839,Alarms,01/27/2011,01/27/2011,01/27/2011 10:35:44 AM,01/27/2011 10:36:50 AM,01/27/2011 10:37:02 AM,01/27/2011 10:38:19 AM,01/27/2011 10:39:57 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Fire,01/27/2011 10:52:10 AM,2200 Block of UNION ST,SF,94123,B04,16,3552,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7970384069746, -122.43632472497)",110270136-E16 +160150589,62,16005868,Medical Incident,01/15/2016,01/14/2016,01/15/2016 07:17:52 AM,01/15/2016 07:18:02 AM,01/15/2016 07:18:11 AM,01/15/2016 07:19:23 AM,01/15/2016 07:22:24 AM,01/15/2016 07:43:14 AM,01/15/2016 07:55:03 AM,Fire,01/15/2016 08:41:56 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160150589-62 +160761730,AM04,16030136,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:29:27 PM,03/16/2016 12:32:32 PM,03/16/2016 12:38:01 PM,03/16/2016 12:38:09 PM,03/16/2016 12:47:34 PM,03/16/2016 01:25:51 PM,03/16/2016 01:46:27 PM,Code 2 Transport,03/16/2016 02:05:23 PM,3000 Block of CABRILLO ST,San Francisco,94121,B07,14,7242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7741733058215, -122.491291710487)",160761730-AM04 +140010096,E06,14000072,Structure Fire,01/01/2014,12/31/2013,01/01/2014 01:15:13 AM,01/01/2014 01:18:33 AM,01/01/2014 01:19:22 AM,01/01/2014 01:19:46 AM,01/01/2014 01:20:59 AM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 01:54:14 AM,900 Block of PAGE ST,SF,94117,B05,21,4144,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.772256599569, -122.436388097743)",140010096-E06 +160863284,79,16034326,Medical Incident,03/26/2016,03/26/2016,03/26/2016 07:53:06 PM,03/26/2016 07:56:26 PM,03/26/2016 07:57:23 PM,03/26/2016 07:57:36 PM,03/26/2016 07:59:35 PM,03/26/2016 08:14:28 PM,03/26/2016 08:51:55 PM,Code 2 Transport,03/26/2016 09:38:24 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",160863284-79 +160572106,KM04,16022789,Medical Incident,02/26/2016,02/26/2016,02/26/2016 02:36:15 PM,02/26/2016 02:36:54 PM,02/26/2016 02:37:34 PM,02/26/2016 02:38:23 PM,02/26/2016 02:49:55 PM,02/26/2016 03:07:16 PM,02/26/2016 03:30:52 PM,Code 2 Transport,02/26/2016 04:09:05 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160572106-KM04 +160661856,KM12,16026413,Medical Incident,03/06/2016,03/06/2016,03/06/2016 02:34:48 PM,03/06/2016 02:36:53 PM,03/06/2016 02:37:54 PM,03/06/2016 02:38:34 PM,03/06/2016 02:45:00 PM,03/06/2016 03:17:13 PM,03/06/2016 03:29:00 PM,Code 2 Transport,03/06/2016 04:19:14 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160661856-KM12 +132560367,E43,13086708,Medical Incident,09/13/2013,09/13/2013,09/13/2013 08:52:48 PM,09/13/2013 08:54:34 PM,09/13/2013 08:54:44 PM,09/13/2013 08:55:23 PM,09/13/2013 08:58:05 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 09:03:17 PM,300 Block of BRUNSWICK ST,SF,94112,B09,43,6217,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7110609171929, -122.441929369106)",132560367-E43 +110060338,B06,11002105,Structure Fire,01/06/2011,01/06/2011,01/06/2011 07:43:48 PM,01/06/2011 07:44:27 PM,01/06/2011 07:44:33 PM,01/06/2011 07:45:36 PM,01/06/2011 07:47:17 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/06/2011 07:56:42 PM,3400 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,false,,1,CHIEF,2,6,8,Mission,"(37.7552079402492, -122.423474114301)",110060338-B06 +123220094,B02,12106964,Structure Fire,11/17/2012,11/16/2012,11/17/2012 06:10:37 AM,11/17/2012 06:10:37 AM,11/17/2012 06:10:54 AM,11/17/2012 06:12:41 AM,11/17/2012 06:14:38 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/17/2012 06:16:49 AM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123220094-B02 +121560308,RC3,12051749,Structure Fire,06/04/2012,06/04/2012,06/04/2012 07:36:33 PM,06/04/2012 07:38:00 PM,06/04/2012 07:38:25 PM,06/04/2012 07:46:31 PM,06/04/2012 07:51:36 PM,04/25/2016 01:58:22 PM,04/25/2016 01:58:22 PM,Other,06/04/2012 08:09:05 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Fire,1,RESCUE CAPTAIN,10,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",121560308-RC3 +121640374,AM18,12054559,Medical Incident,06/12/2012,06/12/2012,06/12/2012 10:34:39 PM,06/12/2012 10:35:05 PM,06/12/2012 10:35:15 PM,06/12/2012 10:35:56 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 10:41:07 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",121640374-AM18 +121370325,E21,12045629,Citizen Assist / Service Call,05/16/2012,05/16/2012,05/16/2012 06:23:23 PM,05/16/2012 06:24:31 PM,05/16/2012 06:24:38 PM,05/16/2012 06:25:46 PM,05/16/2012 06:31:09 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/16/2012 06:42:39 PM,1300 Block of MASONIC AVE,SF,94117,B05,21,4466,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7683637280532, -122.444850432801)",121370325-E21 +160543484,67,16021753,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:35:50 PM,02/23/2016 07:35:50 PM,02/23/2016 07:36:41 PM,02/23/2016 07:36:49 PM,02/23/2016 07:41:57 PM,02/23/2016 07:58:41 PM,02/23/2016 08:14:54 PM,Code 2 Transport,02/23/2016 09:27:44 PM,1300 Block of STEVENSON ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.770783953905, -122.421596103834)",160543484-67 +160443632,71,16017882,Medical Incident,02/13/2016,02/13/2016,02/13/2016 09:55:59 PM,02/13/2016 09:55:59 PM,02/13/2016 09:56:34 PM,02/13/2016 09:56:39 PM,02/13/2016 10:01:57 PM,02/13/2016 10:19:34 PM,02/13/2016 10:50:51 PM,Code 2 Transport,02/13/2016 11:06:31 PM,1300 Block of PALOU AVE,San Francisco,94124,B10,17,6551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731368836689, -122.38618654066)",160443632-71 +132910068,67,13098920,Medical Incident,10/18/2013,10/17/2013,10/18/2013 06:51:08 AM,10/18/2013 06:52:21 AM,10/18/2013 06:52:46 AM,10/18/2013 06:53:19 AM,10/18/2013 06:57:55 AM,10/18/2013 07:28:47 AM,10/18/2013 07:47:21 AM,Code 2 Transport,10/18/2013 08:12:47 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",132910068-67 +103530310,E03,10113433,Medical Incident,12/19/2010,12/19/2010,12/19/2010 05:45:04 PM,12/19/2010 05:46:52 PM,12/19/2010 05:47:33 PM,12/19/2010 05:48:36 PM,12/19/2010 05:50:03 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,Other,12/19/2010 05:58:46 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",103530310-E03 +160590845,50,16023430,Medical Incident,02/28/2016,02/28/2016,02/28/2016 08:32:53 AM,02/28/2016 08:34:24 AM,02/28/2016 08:34:57 AM,02/28/2016 08:35:13 AM,02/28/2016 08:42:28 AM,02/28/2016 08:53:23 AM,02/28/2016 09:16:52 AM,Code 2 Transport,02/28/2016 09:52:01 AM,SANSOME ST/PINE ST,San Francisco,94104,B01,13,1165,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7921084008601, -122.400933083929)",160590845-50 +131280083,E06,13043197,Medical Incident,05/08/2013,05/07/2013,05/08/2013 07:17:59 AM,05/08/2013 07:19:00 AM,05/08/2013 07:23:00 AM,05/08/2013 07:24:24 AM,05/08/2013 07:28:37 AM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 07:31:08 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643815293641, -122.417340510338)",131280083-E06 +160061601,85,16002384,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:12:51 PM,01/06/2016 12:13:46 PM,01/06/2016 12:14:27 PM,01/06/2016 12:17:14 PM,01/06/2016 12:26:38 PM,01/06/2016 12:41:51 PM,01/06/2016 12:57:37 PM,Code 2 Transport,01/06/2016 01:43:52 PM,200 Block of 21ST AVE,San Francisco,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",160061601-85 +121440353,E17,12047978,Other,05/23/2012,05/23/2012,05/23/2012 11:38:48 PM,05/23/2012 11:39:06 PM,05/23/2012 11:39:24 PM,05/23/2012 11:41:23 PM,05/23/2012 11:45:18 PM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Fire,05/23/2012 11:54:43 PM,2400 Block of GRIFFITH ST,SF,94124,B10,17,6573,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7191884467237, -122.386431507122)",121440353-E17 +122580046,E38,12085172,Gas Leak (Natural and LP Gases),09/14/2012,09/13/2012,09/14/2012 04:56:04 AM,09/14/2012 04:57:59 AM,09/14/2012 04:58:35 AM,09/14/2012 05:00:48 AM,09/14/2012 05:06:37 AM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/14/2012 05:06:39 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",122580046-E38 +130420276,79,13014400,Medical Incident,02/11/2013,02/11/2013,02/11/2013 05:30:06 PM,02/11/2013 05:30:43 PM,02/11/2013 05:31:17 PM,02/11/2013 05:34:14 PM,02/11/2013 05:34:44 PM,02/11/2013 05:48:42 PM,02/11/2013 05:52:46 PM,Code 2 Transport,02/11/2013 06:11:57 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130420276-79 +132040129,T17,13069046,Administrative,07/23/2013,07/23/2013,07/23/2013 10:41:09 AM,07/23/2013 10:41:13 AM,07/23/2013 10:41:40 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 10:41:40 AM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",132040129-T17 +160090473,78,16003531,Medical Incident,01/09/2016,01/08/2016,01/09/2016 04:50:32 AM,01/09/2016 04:52:48 AM,01/09/2016 04:53:11 AM,01/09/2016 04:54:46 AM,01/09/2016 05:00:10 AM,01/09/2016 05:20:21 AM,01/09/2016 05:38:28 AM,Code 2 Transport,01/09/2016 06:02:40 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160090473-78 +160892658,75,16035405,Medical Incident,03/29/2016,03/29/2016,03/29/2016 04:34:17 PM,03/29/2016 04:35:39 PM,03/29/2016 04:36:26 PM,03/29/2016 04:36:55 PM,03/29/2016 04:41:18 PM,03/29/2016 04:51:19 PM,03/29/2016 04:58:05 PM,Code 2 Transport,03/29/2016 05:31:31 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160892658-75 +103340119,KM01,10106827,Medical Incident,11/30/2010,11/30/2010,11/30/2010 10:34:05 AM,11/30/2010 10:36:32 AM,11/30/2010 10:37:43 AM,11/30/2010 10:38:17 AM,11/30/2010 10:45:02 AM,11/30/2010 11:00:08 AM,11/30/2010 11:10:14 AM,Code 2 Transport,11/30/2010 11:39:35 AM,1100 Block of SCOTT ST,SF,94115,B05,5,4133,3,3,3,false,,1,PRIVATE,2,5,5,Western Addition,"(37.7803259118056, -122.437234296615)",103340119-KM01 +160370437,70,16014536,Medical Incident,02/06/2016,02/05/2016,02/06/2016 02:17:03 AM,02/06/2016 02:18:38 AM,02/06/2016 02:18:46 AM,02/06/2016 02:20:40 AM,02/06/2016 02:34:39 AM,02/06/2016 02:42:35 AM,02/06/2016 02:50:33 AM,Code 2 Transport,02/06/2016 03:44:08 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160370437-70 +160383812,87,16015430,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:45:31 PM,02/07/2016 11:45:31 PM,02/07/2016 11:46:10 PM,02/07/2016 11:46:24 PM,02/07/2016 11:52:26 PM,02/07/2016 11:56:46 PM,02/08/2016 12:06:20 AM,Code 2 Transport,02/08/2016 12:42:59 AM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160383812-87 +111860228,RC3,11061502,Medical Incident,07/05/2011,07/05/2011,07/05/2011 01:38:34 PM,07/05/2011 01:39:20 PM,07/05/2011 01:39:39 PM,07/05/2011 01:39:47 PM,07/05/2011 01:43:51 PM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/05/2011 01:48:56 PM,500 Block of 14TH ST,SF,94103,B02,6,5214,E,E,3,true,,1,RESCUE CAPTAIN,3,2,8,Mission,"(37.768032836315, -122.42488784779)",111860228-RC3 +112220162,E21,11073316,Structure Fire,08/10/2011,08/10/2011,08/10/2011 12:45:28 PM,08/10/2011 12:45:29 PM,08/10/2011 12:46:10 PM,08/10/2011 12:47:05 PM,08/10/2011 12:49:27 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 12:49:43 PM,FILLMORE ST/MCALLISTER ST,SF,94115,B05,5,3534,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",112220162-E21 +113110092,KM12,11103277,Medical Incident,11/07/2011,11/07/2011,11/07/2011 08:34:06 AM,11/07/2011 08:34:54 AM,11/07/2011 08:35:12 AM,11/07/2011 08:36:14 AM,11/07/2011 08:49:55 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Patient Declined Transport,11/07/2011 09:06:07 AM,2100 Block of JENNINGS ST,SF,94124,B10,17,6651,3,3,3,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",113110092-KM12 +121170006,E09,12038631,Alarms,04/26/2012,04/25/2012,04/26/2012 12:26:53 AM,04/26/2012 12:29:29 AM,04/26/2012 12:31:14 AM,04/26/2012 12:33:15 AM,04/26/2012 12:34:40 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,No Merit,04/26/2012 12:35:02 AM,200 Block of NAPOLEON ST,SF,94124,B10,9,6412,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7469874361298, -122.399147231229)",121170006-E09 +123200235,E03,12106424,Medical Incident,11/15/2012,11/15/2012,11/15/2012 03:37:47 PM,11/15/2012 03:38:13 PM,11/15/2012 03:38:31 PM,11/15/2012 03:40:09 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 03:42:00 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7845808066125, -122.414593411257)",123200235-E03 +113330050,E03,11110217,Structure Fire,11/29/2011,11/28/2011,11/29/2011 05:38:43 AM,11/29/2011 05:38:43 AM,11/29/2011 05:39:26 AM,11/29/2011 05:40:42 AM,11/29/2011 05:41:29 AM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 05:41:57 AM,LEAVENWORTH ST/POST ST,SF,94109,B04,3,1543,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7874538432357, -122.414995423077)",113330050-E03 +122320200,E08,12076956,Medical Incident,08/19/2012,08/19/2012,08/19/2012 01:50:15 PM,08/19/2012 01:50:44 PM,08/19/2012 01:51:26 PM,08/19/2012 01:52:52 PM,08/19/2012 01:54:36 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 02:03:10 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",122320200-E08 +131910241,84,13065086,Medical Incident,07/10/2013,07/10/2013,07/10/2013 04:08:04 PM,07/10/2013 04:09:36 PM,07/10/2013 04:09:53 PM,07/10/2013 04:10:10 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/10/2013 04:18:58 PM,300 Block of TOPEKA AVE,SF,94124,B10,42,6473,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7315669733056, -122.395295699157)",131910241-84 +112110360,62,11069797,Medical Incident,07/30/2011,07/30/2011,07/30/2011 11:32:30 PM,07/30/2011 11:36:05 PM,07/30/2011 11:36:51 PM,07/30/2011 11:37:47 PM,07/30/2011 11:41:24 PM,07/31/2011 12:12:36 AM,07/31/2011 12:30:23 AM,Code 2 Transport,07/31/2011 12:44:36 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",112110360-62 +160403267,89,16016184,Medical Incident,02/09/2016,02/09/2016,02/09/2016 07:30:36 PM,02/09/2016 07:32:36 PM,02/09/2016 07:35:07 PM,02/09/2016 07:35:21 PM,02/09/2016 07:39:16 PM,02/09/2016 08:02:37 PM,02/09/2016 08:09:01 PM,Code 2 Transport,02/09/2016 08:37:09 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160403267-89 +130400165,55,13013644,Medical Incident,02/09/2013,02/09/2013,02/09/2013 11:44:16 AM,02/09/2013 11:46:12 AM,02/09/2013 11:46:24 AM,02/09/2013 11:46:39 AM,02/09/2013 11:53:58 AM,02/09/2013 12:19:56 PM,02/09/2013 12:38:06 PM,Code 2 Transport,02/09/2013 01:03:37 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",130400165-55 +111030305,96,11034236,Medical Incident,04/13/2011,04/13/2011,04/13/2011 06:18:57 PM,04/13/2011 06:19:37 PM,04/13/2011 06:21:51 PM,04/13/2011 06:21:57 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/13/2011 06:23:40 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,2,2,true,,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",111030305-96 +160373071,71,16014829,Medical Incident,02/06/2016,02/06/2016,02/06/2016 06:09:54 PM,02/06/2016 06:11:58 PM,02/06/2016 06:12:39 PM,02/06/2016 06:12:52 PM,02/06/2016 06:21:15 PM,02/06/2016 06:39:55 PM,02/06/2016 06:49:22 PM,Code 2 Transport,02/06/2016 07:24:19 PM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160373071-71 +113100009,84,11102884,Medical Incident,11/06/2011,11/05/2011,11/06/2011 12:37:50 AM,11/06/2011 12:38:01 AM,11/06/2011 12:39:25 AM,11/06/2011 12:40:00 AM,11/06/2011 12:44:13 AM,11/06/2011 01:00:35 AM,11/06/2011 01:06:09 AM,Code 2 Transport,11/06/2011 01:30:03 AM,ELLIS ST/TAYLOR ST,SF,94102,B03,1,1366,2,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",113100009-84 +160242773,76,16009631,Medical Incident,01/24/2016,01/24/2016,01/24/2016 06:19:00 PM,01/24/2016 06:19:19 PM,01/24/2016 06:19:35 PM,01/24/2016 06:19:48 PM,01/24/2016 06:23:45 PM,01/24/2016 06:32:56 PM,01/24/2016 06:32:56 PM,Code 3 Transport,01/24/2016 08:11:39 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160242773-76 +121680325,55,12055851,Medical Incident,06/16/2012,06/16/2012,06/16/2012 06:12:00 PM,06/16/2012 06:14:07 PM,06/16/2012 06:23:30 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/16/2012 06:38:56 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,1,1,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",121680325-55 +133140082,E07,13106677,Medical Incident,11/10/2013,11/09/2013,11/10/2013 07:32:05 AM,11/10/2013 07:33:09 AM,11/10/2013 07:33:30 AM,11/10/2013 07:34:24 AM,11/10/2013 07:36:09 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/10/2013 07:46:33 AM,600 Block of ALABAMA ST,SF,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7610105720239, -122.411919466827)",133140082-E07 +160231809,62,16009164,Medical Incident,01/23/2016,01/23/2016,01/23/2016 01:30:55 PM,01/23/2016 01:35:21 PM,01/23/2016 01:35:58 PM,01/23/2016 01:36:31 PM,01/23/2016 01:50:19 PM,01/23/2016 02:06:37 PM,01/23/2016 02:34:56 PM,Code 2 Transport,01/23/2016 03:04:58 PM,1700 Block of 14TH AVE,San Francisco,94122,B08,40,7352,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7545363237624, -122.471116094101)",160231809-62 +132560349,E03,13086691,Structure Fire,09/13/2013,09/13/2013,09/13/2013 08:01:30 PM,09/13/2013 08:01:30 PM,09/13/2013 08:01:35 PM,09/13/2013 08:02:20 PM,09/13/2013 08:03:46 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 08:16:25 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",132560349-E03 +160143919,KM03,16005772,Medical Incident,01/14/2016,01/14/2016,01/14/2016 10:56:23 PM,01/14/2016 10:57:12 PM,01/14/2016 10:57:33 PM,01/14/2016 11:00:12 PM,01/14/2016 11:14:17 PM,01/14/2016 11:18:10 PM,01/14/2016 11:21:20 PM,Code 2 Transport,01/14/2016 11:48:54 PM,700 Block of 7TH AVE,San Francisco,94118,B07,31,7132,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",160143919-KM03 +160333172,64,16013141,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:13:42 PM,02/02/2016 08:16:04 PM,02/02/2016 08:16:16 PM,02/02/2016 08:16:49 PM,02/02/2016 08:21:50 PM,02/02/2016 08:33:45 PM,02/02/2016 08:42:08 PM,Code 2 Transport,02/02/2016 09:36:21 PM,700 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7715296496414, -122.434542909332)",160333172-64 +160160253,63,16006255,Medical Incident,01/16/2016,01/15/2016,01/16/2016 01:44:07 AM,01/16/2016 01:45:50 AM,01/16/2016 01:47:28 AM,01/16/2016 01:47:44 AM,01/16/2016 01:50:46 AM,01/16/2016 02:07:30 AM,01/16/2016 02:20:28 AM,Code 2 Transport,01/16/2016 02:49:22 AM,16TH ST/GUERRERO ST,San Francisco,94103,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",160160253-63 +102480200,83,10078379,Medical Incident,09/05/2010,09/05/2010,09/05/2010 01:56:52 PM,09/05/2010 01:57:32 PM,09/05/2010 01:57:51 PM,09/05/2010 01:59:05 PM,09/05/2010 02:05:12 PM,09/05/2010 02:29:00 PM,09/05/2010 02:35:02 PM,Code 3 Transport,09/05/2010 03:05:45 PM,0 Block of CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,,1,MEDIC,2,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",102480200-83 +111660200,KM04,11054803,Medical Incident,06/15/2011,06/15/2011,06/15/2011 01:27:50 PM,06/15/2011 01:30:44 PM,06/15/2011 01:31:14 PM,04/25/2016 02:04:09 PM,06/15/2011 01:37:59 PM,06/15/2011 01:47:36 PM,06/15/2011 02:00:54 PM,Code 2 Transport,06/15/2011 02:24:28 PM,2000 Block of 23RD AVE,SF,94116,B08,40,7444,3,3,3,false,,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7493917486636, -122.480364209631)",111660200-KM04 +113050298,E01,11101364,Medical Incident,11/01/2011,11/01/2011,11/01/2011 04:06:58 PM,11/01/2011 04:07:38 PM,11/01/2011 04:09:21 PM,11/01/2011 04:11:44 PM,11/01/2011 04:13:58 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 04:17:41 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",113050298-E01 +120640171,89,12021127,Medical Incident,03/04/2012,03/04/2012,03/04/2012 12:09:32 PM,03/04/2012 12:09:57 PM,03/04/2012 12:10:11 PM,03/04/2012 12:12:07 PM,04/25/2016 01:59:50 PM,03/04/2012 12:25:47 PM,03/04/2012 12:40:26 PM,Code 2 Transport,03/04/2012 01:20:05 PM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",120640171-89 +131650124,E01,13056001,Administrative,06/14/2013,06/14/2013,06/14/2013 09:55:44 AM,06/14/2013 09:56:30 AM,06/14/2013 09:56:42 AM,04/25/2016 01:52:18 PM,06/14/2013 09:57:08 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 09:57:13 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",131650124-E01 +130090329,T13,13003227,Alarms,01/09/2013,01/09/2013,01/09/2013 08:17:27 PM,01/09/2013 08:18:39 PM,01/09/2013 08:18:46 PM,01/09/2013 08:20:44 PM,01/09/2013 08:22:50 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 08:30:06 PM,0 Block of FRONT ST,SF,94111,B01,13,1136,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7920192720524, -122.39857867407)",130090329-T13 +160113512,58,16004571,Medical Incident,01/11/2016,01/11/2016,01/11/2016 10:11:39 PM,01/11/2016 10:13:45 PM,01/11/2016 10:14:18 PM,01/11/2016 10:14:30 PM,01/11/2016 10:20:27 PM,01/11/2016 10:34:23 PM,01/11/2016 10:39:08 PM,Code 2 Transport,01/11/2016 11:34:07 PM,1000 Block of NOE ST,San Francisco,94114,B06,11,5522,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",160113512-58 +121160141,93,12038409,Medical Incident,04/25/2012,04/25/2012,04/25/2012 11:15:47 AM,04/25/2012 11:16:44 AM,04/25/2012 11:17:33 AM,04/25/2016 01:59:00 PM,04/25/2012 11:23:31 AM,04/25/2012 11:42:34 AM,04/25/2012 12:08:32 PM,Code 2 Transport,04/25/2012 12:29:27 PM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7735946111262, -122.402419477738)",121160141-93 +113390086,E23,11112278,Alarms,12/05/2011,12/05/2011,12/05/2011 09:40:19 AM,12/05/2011 09:40:50 AM,12/05/2011 09:41:20 AM,12/05/2011 09:43:21 AM,12/05/2011 09:44:38 AM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Fire,12/05/2011 09:46:30 AM,4200 Block of LAWTON ST,SF,94122,B08,23,7724,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7565201491444, -122.508349925919)",113390086-E23 +130740312,E20,13024786,Structure Fire,03/15/2013,03/15/2013,03/15/2013 06:47:08 PM,03/15/2013 06:47:57 PM,03/15/2013 06:48:36 PM,03/15/2013 06:49:34 PM,03/15/2013 06:52:07 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 06:53:33 PM,100 Block of LENOX WAY,SF,94127,B08,39,8611,3,3,3,true,Alarm,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7417568103981, -122.465616085454)",130740312-E20 +120170191,KM10,12005710,Medical Incident,01/17/2012,01/17/2012,01/17/2012 02:06:54 PM,01/17/2012 02:08:02 PM,01/17/2012 02:08:31 PM,01/17/2012 02:09:24 PM,01/17/2012 02:12:20 PM,01/17/2012 02:20:04 PM,01/17/2012 02:39:58 PM,Code 2 Transport,01/17/2012 02:56:42 PM,400 Block of HAIGHT ST,SF,94117,B02,6,3524,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",120170191-KM10 +122860101,T07,12094544,Alarms,10/12/2012,10/12/2012,10/12/2012 10:04:14 AM,10/12/2012 10:04:14 AM,10/12/2012 10:04:21 AM,10/12/2012 10:05:35 AM,10/12/2012 10:09:09 AM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 10:12:52 AM,3400 Block of 24TH ST,SF,94110,B06,11,5524,3,3,3,true,Alarm,1,TRUCK,1,6,8,Mission,"(37.7520058586101, -122.421363754128)",122860101-T07 +140490372,55,14016821,Medical Incident,02/18/2014,02/18/2014,02/18/2014 10:32:31 PM,02/18/2014 10:34:53 PM,02/18/2014 10:35:24 PM,02/18/2014 10:35:34 PM,04/25/2016 01:48:08 PM,02/18/2014 11:01:25 PM,02/18/2014 11:15:41 PM,Code 2 Transport,02/18/2014 11:31:25 PM,1400 Block of REVERE AVE,SF,94124,B10,17,6571,3,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7301191034184, -122.387315155313)",140490372-55 +132320192,E15,13078359,Structure Fire,08/20/2013,08/20/2013,08/20/2013 01:43:34 PM,08/20/2013 01:43:34 PM,08/20/2013 01:44:34 PM,08/20/2013 01:45:41 PM,08/20/2013 01:47:15 PM,04/25/2016 01:51:12 PM,04/25/2016 01:51:12 PM,Other,08/20/2013 01:47:34 PM,OCEAN AV/HOWTH ST,SF,94112,B09,15,8314,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7229613197443, -122.449558618759)",132320192-E15 +121810218,E29,12060294,Structure Fire,06/29/2012,06/29/2012,06/29/2012 02:43:47 PM,06/29/2012 02:45:35 PM,06/29/2012 02:46:01 PM,06/29/2012 02:46:59 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 02:52:37 PM,1200 Block of UTAH ST,SF,94110,B10,9,2562,3,3,3,true,Fire,1,ENGINE,10,10,10,Mission,"(37.7536963307706, -122.405461613953)",121810218-E29 +160223855,AM18,16008973,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:47:25 PM,01/22/2016 10:49:51 PM,01/22/2016 10:50:34 PM,01/22/2016 10:51:25 PM,01/22/2016 11:03:44 PM,01/22/2016 11:20:59 PM,01/22/2016 11:42:51 PM,Code 2 Transport,01/23/2016 12:21:54 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",160223855-AM18 +140010505,86,14000426,Traffic Collision,01/01/2014,01/01/2014,01/01/2014 06:08:02 PM,01/01/2014 06:09:13 PM,01/01/2014 06:14:09 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/01/2014 06:14:51 PM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,,3,3,false,Potentially Life-Threatening,1,MEDIC,7,5,2,Western Addition,"(37.7821816632884, -122.44131673326)",140010505-86 +132820043,RC1,13095839,Medical Incident,10/09/2013,10/08/2013,10/09/2013 06:08:53 AM,10/09/2013 06:09:16 AM,10/09/2013 06:12:41 AM,10/09/2013 06:15:10 AM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/09/2013 06:15:50 AM,1000 Block of MARKET ST,SF,94103,B03,1,2248,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7812876870909, -122.411318055371)",132820043-RC1 +102740116,E44,10086963,Medical Incident,10/01/2010,10/01/2010,10/01/2010 10:43:24 AM,10/01/2010 10:45:35 AM,10/01/2010 10:46:31 AM,10/01/2010 10:47:56 AM,10/01/2010 10:52:06 AM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 11:12:01 AM,2400 Block of KEITH ST,SF,94124,B10,17,6546,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",102740116-E44 +111320087,E02,11043549,Medical Incident,05/12/2011,05/12/2011,05/12/2011 08:21:43 AM,05/12/2011 08:28:32 AM,05/12/2011 08:33:28 AM,05/12/2011 08:52:52 AM,05/12/2011 08:55:53 AM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Unable to Locate,05/12/2011 08:57:54 AM,BROADWAY/BATTERY ST,SF,94111,B01,13,1155,2,2,2,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7985800532877, -122.401051292992)",111320087-E02 +102680106,B07,10084822,Alarms,09/25/2010,09/25/2010,09/25/2010 08:37:59 AM,09/25/2010 08:38:22 AM,09/25/2010 08:38:40 AM,09/25/2010 08:39:32 AM,09/25/2010 08:42:09 AM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 08:46:45 AM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,false,,1,CHIEF,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",102680106-B07 +112220357,57,11073476,Medical Incident,08/10/2011,08/10/2011,08/10/2011 09:43:33 PM,08/10/2011 09:44:09 PM,08/10/2011 09:44:34 PM,08/10/2011 09:44:50 PM,08/10/2011 09:50:21 PM,08/10/2011 10:11:24 PM,08/10/2011 10:33:04 PM,Code 2 Transport,08/10/2011 11:09:05 PM,100 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7666629415025, -122.426732392551)",112220357-57 +110520057,72,11017127,Medical Incident,02/21/2011,02/20/2011,02/21/2011 06:51:05 AM,02/21/2011 06:51:38 AM,02/21/2011 06:51:53 AM,02/21/2011 06:52:02 AM,04/25/2016 02:05:58 PM,02/21/2011 06:57:21 AM,02/21/2011 07:38:26 AM,Code 2 Transport,02/21/2011 07:54:04 AM,100 Block of 22ND AVE,SF,94121,B07,14,7174,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7849595734598, -122.481791099239)",110520057-72 +160112689,53,16004497,Medical Incident,01/11/2016,01/11/2016,01/11/2016 05:38:01 PM,01/11/2016 05:39:48 PM,01/11/2016 05:41:12 PM,01/11/2016 05:41:29 PM,01/11/2016 05:56:10 PM,01/11/2016 06:07:18 PM,01/11/2016 06:19:57 PM,Code 2 Transport,01/11/2016 06:59:55 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",160112689-53 +160800660,71,16031714,Medical Incident,03/20/2016,03/19/2016,03/20/2016 05:49:34 AM,03/20/2016 05:52:39 AM,03/20/2016 05:53:01 AM,03/20/2016 05:53:13 AM,03/20/2016 05:59:26 AM,03/20/2016 06:05:09 AM,03/20/2016 06:21:50 AM,Code 2 Transport,03/20/2016 06:48:00 AM,100 Block of NORTHRIDGE RD,San Francisco,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7312838053833, -122.378204872935)",160800660-71 +160510315,75,16020332,Medical Incident,02/20/2016,02/19/2016,02/20/2016 02:34:44 AM,02/20/2016 02:36:14 AM,02/20/2016 02:36:30 AM,02/20/2016 02:36:36 AM,02/20/2016 03:00:07 AM,02/20/2016 03:26:29 AM,02/20/2016 03:39:37 AM,Code 2 Transport,02/20/2016 04:23:51 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160510315-75 +111590290,E01,11052673,Medical Incident,06/08/2011,06/08/2011,06/08/2011 07:09:28 PM,06/08/2011 07:11:57 PM,06/08/2011 07:12:09 PM,06/08/2011 07:12:28 PM,06/08/2011 07:14:49 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/08/2011 07:16:02 PM,MARKET ST/5TH ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",111590290-E01 +121250282,RS2,12041593,Structure Fire,05/04/2012,05/04/2012,05/04/2012 05:29:21 PM,05/04/2012 05:30:33 PM,05/04/2012 05:31:00 PM,05/04/2012 05:32:14 PM,05/04/2012 05:34:17 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 05:45:05 PM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,false,Fire,1,RESCUE SQUAD,1,6,9,Mission,"(37.752711512136, -122.411436461904)",121250282-RS2 +160102919,55,16004157,Medical Incident,01/10/2016,01/10/2016,01/10/2016 07:17:32 PM,01/10/2016 07:18:53 PM,01/10/2016 07:19:04 PM,01/10/2016 07:19:16 PM,01/10/2016 07:24:19 PM,01/10/2016 07:35:38 PM,01/10/2016 07:57:27 PM,Code 2 Transport,01/10/2016 08:21:29 PM,0 Block of NORTHRIDGE RD,San Francisco,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",160102919-55 +132190317,KM04,13074062,Medical Incident,08/07/2013,08/07/2013,08/07/2013 06:21:52 PM,08/07/2013 06:23:07 PM,08/07/2013 06:23:23 PM,08/07/2013 06:25:26 PM,08/07/2013 06:36:07 PM,08/07/2013 06:53:47 PM,08/07/2013 07:11:38 PM,Code 2 Transport,08/07/2013 07:36:35 PM,0 Block of MARVEL CT,SF,94121,B07,14,7246,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7829456223596, -122.492889548856)",132190317-KM04 +122470060,AM16,12081609,Medical Incident,09/03/2012,09/02/2012,09/03/2012 06:22:00 AM,09/03/2012 06:23:56 AM,09/03/2012 06:24:14 AM,09/03/2012 06:24:50 AM,09/03/2012 06:32:04 AM,09/03/2012 06:42:15 AM,09/03/2012 07:10:56 AM,Code 2 Transport,09/03/2012 07:40:30 AM,5600 Block of MISSION ST,SF,94112,B09,33,6211,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7111379399076, -122.447066438218)",122470060-AM16 +160201825,54,16008007,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:59:14 PM,01/20/2016 01:00:10 PM,01/20/2016 01:01:41 PM,01/20/2016 01:02:35 PM,01/20/2016 01:12:35 PM,01/20/2016 01:28:09 PM,01/20/2016 01:53:03 PM,Code 2 Transport,01/20/2016 03:11:15 PM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",160201825-54 +160562460,AM12,16022449,Medical Incident,02/25/2016,02/25/2016,02/25/2016 03:23:43 PM,02/25/2016 03:23:43 PM,02/25/2016 03:27:28 PM,02/25/2016 03:28:01 PM,02/25/2016 03:54:14 PM,02/25/2016 03:56:15 PM,02/25/2016 04:01:45 PM,Code 2 Transport,02/25/2016 04:24:29 PM,LAUSSAT ST/FILLMORE ST,San Francisco,94117,B05,6,3526,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7716398058136, -122.430354563572)",160562460-AM12 +160013438,71,16000488,Medical Incident,01/01/2016,01/01/2016,01/01/2016 08:18:25 PM,01/01/2016 08:20:47 PM,01/01/2016 08:21:42 PM,01/01/2016 08:21:46 PM,01/01/2016 08:28:45 PM,01/01/2016 08:42:31 PM,01/01/2016 08:44:43 PM,Code 2 Transport,01/01/2016 09:25:29 PM,STANYAN ST/WALLER ST,San Francisco,94117,B05,12,4552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.7682460259648, -122.453352288829)",160013438-71 +160452156,71,16018179,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 03:38:39 PM,02/14/2016 03:38:39 PM,02/14/2016 03:38:53 PM,02/14/2016 03:39:04 PM,02/14/2016 03:44:13 PM,02/14/2016 04:03:58 PM,02/14/2016 04:31:37 PM,Code 2 Transport,02/14/2016 04:49:22 PM,NORTH POINT ST/POLK ST,San Francisco,94109,B01,28,1623,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.805286983829, -122.423655077131)",160452156-71 +160141899,87,16005582,Medical Incident,01/14/2016,01/14/2016,01/14/2016 01:28:50 PM,01/14/2016 01:28:50 PM,01/14/2016 01:29:19 PM,01/14/2016 01:29:29 PM,01/14/2016 01:37:16 PM,01/14/2016 01:47:01 PM,01/14/2016 02:17:11 PM,Code 2 Transport,01/14/2016 02:58:31 PM,SOUTH VAN NESS AV/101 SVN ON,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.769098278953, -122.417926081681)",160141899-87 +102670293,78,10084602,Medical Incident,09/24/2010,09/24/2010,09/24/2010 05:37:56 PM,09/24/2010 05:40:45 PM,09/24/2010 05:41:51 PM,04/25/2016 02:08:26 PM,09/24/2010 05:47:16 PM,09/24/2010 05:54:27 PM,09/24/2010 06:05:58 PM,Code 2 Transport,09/24/2010 06:38:11 PM,500 Block of SAN BRUNO AVE,SF,94107,B02,37,2455,2,2,2,true,,1,MEDIC,1,2,10,Potrero Hill,"(37.7628154721662, -122.405224148676)",102670293-78 +160433532,KM07,16017474,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:11:01 PM,02/12/2016 09:11:41 PM,02/12/2016 09:11:59 PM,02/12/2016 09:12:40 PM,02/12/2016 09:18:11 PM,02/12/2016 09:43:41 PM,02/12/2016 09:49:08 PM,Code 3 Transport,02/12/2016 10:51:18 PM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",160433532-KM07 +132610048,E08,13088274,Medical Incident,09/18/2013,09/17/2013,09/18/2013 05:57:44 AM,09/18/2013 05:59:50 AM,09/18/2013 06:00:03 AM,09/18/2013 06:02:03 AM,09/18/2013 06:03:26 AM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 06:20:56 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132610048-E08 +122550223,E01,12084317,Medical Incident,09/11/2012,09/11/2012,09/11/2012 02:17:30 PM,09/11/2012 02:18:34 PM,09/11/2012 02:19:33 PM,09/11/2012 02:20:00 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 02:25:41 PM,400 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7810688918781, -122.407387172098)",122550223-E01 +120580258,KM10,12019181,Medical Incident,02/27/2012,02/27/2012,02/27/2012 04:55:19 PM,02/27/2012 04:56:30 PM,02/27/2012 04:57:11 PM,02/27/2012 04:57:42 PM,02/27/2012 05:09:52 PM,02/27/2012 05:25:14 PM,02/27/2012 05:38:54 PM,Code 3 Transport,02/27/2012 06:16:50 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",120580258-KM10 +110940163,E18,11031184,Medical Incident,04/04/2011,04/04/2011,04/04/2011 11:59:01 AM,04/04/2011 12:00:36 PM,04/04/2011 12:01:49 PM,04/04/2011 12:02:53 PM,04/04/2011 12:04:58 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/04/2011 12:06:49 PM,1500 Block of 33RD AVE,SF,94122,B08,18,7542,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7582410131545, -122.491732792443)",110940163-E18 +130070022,E08,13002245,Medical Incident,01/07/2013,01/06/2013,01/07/2013 02:36:42 AM,01/07/2013 02:38:17 AM,01/07/2013 02:38:40 AM,01/07/2013 02:40:50 AM,01/07/2013 02:42:42 AM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/07/2013 02:46:40 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130070022-E08 +110320235,E03,11010533,Medical Incident,02/01/2011,02/01/2011,02/01/2011 03:31:08 PM,02/01/2011 03:31:15 PM,02/01/2011 03:33:31 PM,02/01/2011 03:34:55 PM,02/01/2011 03:37:34 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/01/2011 03:50:37 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",110320235-E03 +140170347,77,14005968,Structure Fire,01/17/2014,01/17/2014,01/17/2014 09:00:56 PM,01/17/2014 09:03:40 PM,01/17/2014 09:04:01 PM,01/17/2014 09:04:15 PM,01/17/2014 09:10:17 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 09:12:53 PM,500 Block of PINE ST,SF,94108,B01,13,1243,,3,3,true,Alarm,1,MEDIC,8,1,3,Financial District/South Beach,"(37.79153985856, -122.404971889407)",140170347-77 +132320020,D3,13078227,Outside Fire,08/20/2013,08/19/2013,08/20/2013 02:55:11 AM,08/20/2013 02:56:21 AM,08/20/2013 02:57:22 AM,08/20/2013 02:58:52 AM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/20/2013 03:00:52 AM,MISSION ST/14TH ST,SF,94103,B02,36,5215,3,3,3,false,Fire,1,CHIEF,5,2,9,Mission,"(37.7682736543413, -122.419981513232)",132320020-D3 +160601017,AM10,16023829,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:41:58 AM,02/29/2016 09:43:50 AM,02/29/2016 09:46:04 AM,02/29/2016 09:46:42 AM,02/29/2016 09:48:57 AM,02/29/2016 09:56:24 AM,02/29/2016 09:59:18 AM,Code 3 Transport,02/29/2016 10:45:41 AM,24TH ST/HARRISON ST,San Francisco,94110,B06,7,5527,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7526285917569, -122.41189982284)",160601017-AM10 +160711228,65,16028184,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:47:39 AM,03/11/2016 10:49:05 AM,03/11/2016 10:49:41 AM,03/11/2016 10:49:52 AM,03/11/2016 10:56:48 AM,03/11/2016 11:14:31 AM,03/11/2016 11:52:25 AM,Code 2 Transport,03/11/2016 12:23:06 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7677331022924, -122.415606951318)",160711228-65 +132600441,E13,13088186,Administrative,09/17/2013,09/17/2013,09/17/2013 09:11:03 PM,09/17/2013 09:11:05 PM,09/17/2013 09:12:24 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 09:13:39 PM,500 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",132600441-E13 +160873578,AM20,16034755,Medical Incident,03/27/2016,03/27/2016,03/27/2016 10:40:08 PM,03/27/2016 10:42:55 PM,03/27/2016 10:43:17 PM,03/27/2016 10:43:39 PM,03/27/2016 11:01:43 PM,03/27/2016 11:11:02 PM,03/27/2016 11:25:20 PM,Code 2 Transport,03/27/2016 11:48:32 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",160873578-AM20 +133270437,54,13111294,Traffic Collision,11/23/2013,11/23/2013,11/23/2013 10:56:12 PM,11/23/2013 10:56:38 PM,11/23/2013 11:01:54 PM,11/23/2013 11:02:47 PM,11/23/2013 11:06:15 PM,11/23/2013 11:15:19 PM,11/23/2013 11:46:27 PM,Code 3 Transport,11/23/2013 11:54:55 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7571666434801, -122.416719595074)",133270437-54 +132900154,B01,13098607,Alarms,10/17/2013,10/17/2013,10/17/2013 10:38:28 AM,10/17/2013 10:39:33 AM,10/17/2013 10:40:07 AM,10/17/2013 10:40:51 AM,10/17/2013 10:46:52 AM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Fire,10/17/2013 10:51:21 AM,700 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,Alarm,1,CHIEF,2,3,6,South of Market,"(37.7841058563108, -122.401539484586)",132900154-B01 +122970066,E08,12098406,Traffic Collision,10/23/2012,10/22/2012,10/23/2012 06:31:09 AM,10/23/2012 06:33:33 AM,10/23/2012 06:33:48 AM,04/25/2016 01:56:09 PM,10/23/2012 06:39:09 AM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 06:56:12 AM,500 Block of 3RD ST,SF,94107,B03,8,2173,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7809200704439, -122.395242268798)",122970066-E08 +160362212,53,16014285,Medical Incident,02/05/2016,02/05/2016,02/05/2016 02:06:05 PM,02/05/2016 02:08:41 PM,02/05/2016 02:09:06 PM,02/05/2016 02:09:18 PM,02/05/2016 02:24:08 PM,02/05/2016 02:51:15 PM,02/05/2016 03:13:46 PM,Code 2 Transport,02/05/2016 03:32:26 PM,4400 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",160362212-53 +120990194,KM05,12032822,Medical Incident,04/08/2012,04/08/2012,04/08/2012 03:31:40 PM,04/08/2012 03:35:21 PM,04/08/2012 03:35:42 PM,04/08/2012 03:36:07 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/25/2016 01:59:16 PM,HOWARD ST/9TH ST,SF,94103,B02,36,2335,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",120990194-KM05 +131150015,E21,13038651,Medical Incident,04/25/2013,04/24/2013,04/25/2013 02:07:49 AM,04/25/2013 02:09:04 AM,04/25/2013 02:09:14 AM,04/25/2013 02:11:27 AM,04/25/2013 02:12:25 AM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/25/2013 02:22:28 AM,500 Block of SCOTT ST,SF,94117,B05,21,4136,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7747325666892, -122.436102962462)",131150015-E21 +160432994,52,16017418,Medical Incident,02/12/2016,02/12/2016,02/12/2016 06:30:16 PM,02/12/2016 06:30:59 PM,02/12/2016 06:33:12 PM,02/12/2016 06:33:12 PM,02/12/2016 06:39:08 PM,02/12/2016 07:03:20 PM,02/12/2016 07:34:18 PM,Code 2 Transport,02/12/2016 08:20:40 PM,300 Block of STAPLES AVE,San Francisco,94112,B09,15,8232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7290125327304, -122.449989978031)",160432994-52 +140770004,KM07,14025916,Medical Incident,03/18/2014,03/17/2014,03/18/2014 12:37:27 AM,03/18/2014 12:39:21 AM,03/18/2014 12:39:50 AM,03/18/2014 12:40:33 AM,03/18/2014 12:49:32 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Patient Declined Transport,03/18/2014 12:55:53 AM,0 Block of 12TH ST,SAN FRANCISCO,94103,B02,36,3212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",140770004-KM07 +140430253,KM14,14014671,Medical Incident,02/12/2014,02/12/2014,02/12/2014 04:00:12 PM,02/12/2014 04:02:52 PM,02/12/2014 04:03:46 PM,02/12/2014 04:05:22 PM,02/12/2014 04:17:53 PM,02/12/2014 04:17:59 PM,02/12/2014 04:54:12 PM,Code 2 Transport,02/12/2014 05:30:36 PM,1400 Block of 3RD ST,SF,94158,B03,8,2231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.770198458048, -122.389578265491)",140430253-KM14 +102790344,E03,10088850,Medical Incident,10/06/2010,10/06/2010,10/06/2010 10:36:37 PM,10/06/2010 10:37:01 PM,10/06/2010 10:37:15 PM,10/06/2010 10:37:45 PM,10/06/2010 10:38:58 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 10:46:31 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",102790344-E03 +132760400,B04,13093912,Structure Fire,10/03/2013,10/03/2013,10/03/2013 10:40:33 PM,10/03/2013 10:41:05 PM,10/03/2013 10:41:21 PM,10/03/2013 10:42:31 PM,10/03/2013 10:44:49 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/03/2013 10:50:17 PM,2700 Block of BUSH ST,SF,94115,B04,10,4234,3,3,3,false,Alarm,1,CHIEF,4,4,2,Pacific Heights,"(37.7859173973794, -122.442559256485)",132760400-B04 +131840319,T07,13062808,Structure Fire,07/03/2013,07/03/2013,07/03/2013 06:50:27 PM,07/03/2013 06:50:27 PM,07/03/2013 06:51:08 PM,07/03/2013 06:52:34 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/03/2013 06:53:58 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",131840319-T07 +132180033,E21,13073498,Medical Incident,08/06/2013,08/05/2013,08/06/2013 02:44:28 AM,08/06/2013 02:45:16 AM,08/06/2013 02:45:57 AM,08/06/2013 02:47:03 AM,08/06/2013 02:50:22 AM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 02:54:31 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",132180033-E21 +140170126,E36,14005778,Medical Incident,01/17/2014,01/17/2014,01/17/2014 10:06:24 AM,01/17/2014 10:07:39 AM,01/17/2014 10:08:39 AM,01/17/2014 10:08:52 AM,01/17/2014 10:09:52 AM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,Fire,01/17/2014 10:12:07 AM,400 Block of FRANKLIN ST,SF,94102,B02,36,3214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7784801386574, -122.421683336458)",140170126-E36 +113170364,E13,11105495,Medical Incident,11/13/2011,11/13/2011,11/13/2011 11:40:51 PM,11/13/2011 11:41:18 PM,11/13/2011 11:41:33 PM,11/13/2011 11:45:02 PM,11/13/2011 11:45:06 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 11:49:40 PM,0 Block of CLAY ST,SF,94111,B01,13,1133,3,2,2,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.795488462612, -122.396159020859)",113170364-E13 +111200278,E33,11039660,Traffic Collision,04/30/2011,04/30/2011,04/30/2011 04:56:08 PM,04/30/2011 04:56:38 PM,04/30/2011 04:56:51 PM,04/30/2011 04:57:47 PM,04/30/2011 05:00:03 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 05:09:28 PM,FONT BL/CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7150113911845, -122.472990955765)",111200278-E33 +112960068,E07,11098099,Medical Incident,10/23/2011,10/22/2011,10/23/2011 03:01:54 AM,10/23/2011 03:02:26 AM,10/23/2011 03:05:13 AM,10/23/2011 03:16:01 AM,10/23/2011 03:17:43 AM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 03:40:17 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",112960068-E07 +121920189,E22,12063920,Medical Incident,07/10/2012,07/10/2012,07/10/2012 01:07:04 PM,07/10/2012 01:08:16 PM,07/10/2012 01:08:52 PM,07/10/2012 01:10:16 PM,07/10/2012 01:13:01 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 01:22:51 PM,0 Block of MUSIC CONCOURSE DR,SF,94118,B07,22,7744,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",121920189-E22 +120680093,83,12022494,Medical Incident,03/08/2012,03/08/2012,03/08/2012 09:18:57 AM,03/08/2012 09:19:19 AM,03/08/2012 09:22:01 AM,03/08/2012 09:22:16 AM,03/08/2012 09:34:37 AM,03/08/2012 09:47:58 AM,03/08/2012 10:10:17 AM,Code 2 Transport,03/08/2012 10:56:45 AM,FILBERT ST/VAN NESS AV,SF,94109,B04,16,3146,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Russian Hill,"(37.7994845306272, -122.424170564426)",120680093-83 +120930266,54,12030873,Medical Incident,04/02/2012,04/02/2012,04/02/2012 04:07:43 PM,04/02/2012 04:08:46 PM,04/02/2012 04:08:58 PM,04/02/2012 04:09:10 PM,04/02/2012 04:15:34 PM,04/02/2012 05:03:56 PM,04/02/2012 05:41:55 PM,Code 2 Transport,04/02/2012 06:28:15 PM,700 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",120930266-54 +112730319,E08,11090360,Medical Incident,09/30/2011,09/30/2011,09/30/2011 06:54:59 PM,09/30/2011 06:55:29 PM,09/30/2011 06:56:01 PM,09/30/2011 06:57:23 PM,09/30/2011 06:59:35 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 07:16:44 PM,HARRISON ST/4TH ST,SF,94107,B03,8,2216,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7807914830651, -122.399616233554)",112730319-E08 +122060130,KM11,12068443,Medical Incident,07/24/2012,07/24/2012,07/24/2012 10:29:21 AM,07/24/2012 10:29:56 AM,07/24/2012 10:30:17 AM,07/24/2012 10:31:01 AM,07/24/2012 10:33:30 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Patient Declined Transport,07/24/2012 11:00:51 AM,1700 Block of FULTON ST,SF,94117,B05,21,4463,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",122060130-KM11 +112420030,89,11079705,Medical Incident,08/30/2011,08/29/2011,08/30/2011 03:31:43 AM,08/30/2011 03:34:23 AM,08/30/2011 03:34:49 AM,08/30/2011 03:35:33 AM,08/30/2011 03:41:08 AM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,No Merit,08/30/2011 04:13:51 AM,100 Block of HAMILTON ST,SF,94134,B10,42,6342,3,3,3,true,,1,MEDIC,2,9,9,Portola,"(37.7290705510996, -122.410832555968)",112420030-89 +130170361,E41,13005935,Alarms,01/17/2013,01/17/2013,01/17/2013 08:17:37 PM,01/17/2013 08:18:41 PM,01/17/2013 08:18:51 PM,01/17/2013 08:19:40 PM,01/17/2013 08:21:39 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,Other,01/17/2013 08:37:24 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",130170361-E41 +113540310,E43,11117647,Medical Incident,12/20/2011,12/20/2011,12/20/2011 06:27:07 PM,12/20/2011 06:32:13 PM,12/20/2011 06:32:46 PM,12/20/2011 06:34:25 PM,12/20/2011 06:36:40 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,Other,12/20/2011 06:51:47 PM,200 Block of PARQUE DR,SF,94134,B09,43,6245,2,2,2,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.709998706156, -122.422592099161)",113540310-E43 +133500238,E13,13118853,Medical Incident,12/16/2013,12/16/2013,12/16/2013 01:42:08 PM,12/16/2013 01:42:55 PM,12/16/2013 01:43:46 PM,12/16/2013 01:44:41 PM,12/16/2013 01:46:35 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,12/16/2013 01:59:07 PM,900 Block of MONTGOMERY ST,SF,94133,B01,13,1231,2,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.7975870868314, -122.403804875894)",133500238-E13 +110380083,E07,11012505,Medical Incident,02/07/2011,02/06/2011,02/07/2011 07:26:09 AM,02/07/2011 07:26:17 AM,02/07/2011 07:26:41 AM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,Other,02/07/2011 07:35:11 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,E,E,3,true,,1,ENGINE,5,2,9,Mission,"(37.7632358693888, -122.419563499673)",110380083-E07 +160173355,89,16007022,Medical Incident,01/17/2016,01/17/2016,01/17/2016 10:22:59 PM,01/17/2016 10:23:29 PM,01/17/2016 10:23:51 PM,01/17/2016 10:24:05 PM,01/17/2016 10:27:11 PM,01/17/2016 10:39:39 PM,01/17/2016 10:42:08 PM,Code 2 Transport,01/17/2016 11:21:06 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160173355-89 +131790324,T01,13060911,Alarms,06/28/2013,06/28/2013,06/28/2013 05:03:54 PM,06/28/2013 05:03:54 PM,06/28/2013 05:04:51 PM,06/28/2013 05:05:03 PM,06/28/2013 05:09:06 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,Other,06/28/2013 05:09:19 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,Alarm,1,TRUCK,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",131790324-T01 +140410403,85,14014113,Medical Incident,02/10/2014,02/10/2014,02/10/2014 09:33:35 PM,02/10/2014 09:33:55 PM,02/10/2014 09:34:29 PM,02/10/2014 09:34:35 PM,02/10/2014 09:52:04 PM,02/10/2014 10:12:28 PM,02/10/2014 10:19:44 PM,Code 2 Transport,02/10/2014 10:45:34 PM,3000 Block of MISSION ST,SF,94110,B06,11,5613,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.748597504437, -122.418163001869)",140410403-85 +132870280,E06,13097709,Outside Fire,10/14/2013,10/14/2013,10/14/2013 04:47:27 PM,10/14/2013 04:48:51 PM,10/14/2013 04:48:58 PM,10/14/2013 04:50:06 PM,10/14/2013 04:52:29 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 04:54:44 PM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,Fire,1,ENGINE,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",132870280-E06 +160864039,75,16034405,Medical Incident,03/26/2016,03/26/2016,03/26/2016 11:39:53 PM,03/26/2016 11:39:53 PM,03/26/2016 11:41:26 PM,03/26/2016 11:41:32 PM,03/26/2016 11:45:52 PM,03/27/2016 12:05:30 AM,03/27/2016 12:16:45 AM,Code 2 Transport,03/27/2016 12:49:04 AM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7801357011746, -122.40877066526)",160864039-75 +140780049,KM03,14026283,Medical Incident,03/19/2014,03/18/2014,03/19/2014 04:06:06 AM,03/19/2014 04:08:09 AM,03/19/2014 04:08:46 AM,03/19/2014 04:09:19 AM,03/19/2014 04:17:13 AM,03/19/2014 04:29:11 AM,03/19/2014 04:35:27 AM,Code 2 Transport,03/19/2014 04:45:21 AM,FULTON ST/SHRADER ST,SAN FRANCISCO,94118,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7749707534359, -122.453003329775)",140780049-KM03 +160672642,KM09,16026846,Medical Incident,03/07/2016,03/07/2016,03/07/2016 06:05:00 PM,03/07/2016 06:05:24 PM,03/07/2016 06:05:48 PM,03/07/2016 06:06:28 PM,03/07/2016 06:15:17 PM,03/07/2016 06:34:52 PM,03/07/2016 06:46:15 PM,Code 2 Transport,03/07/2016 07:09:15 PM,1700 Block of PALOU AVE,San Francisco,94124,B10,17,6471,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7355275899497, -122.393759150834)",160672642-KM09 +132340259,85,13079057,Medical Incident,08/22/2013,08/22/2013,08/22/2013 04:39:07 PM,08/22/2013 04:40:43 PM,08/22/2013 04:42:02 PM,08/22/2013 04:42:10 PM,08/22/2013 04:47:52 PM,08/22/2013 05:07:49 PM,08/22/2013 05:14:39 PM,Code 2 Transport,08/22/2013 05:39:33 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",132340259-85 +103550111,E12,10113900,Medical Incident,12/21/2010,12/21/2010,12/21/2010 09:45:57 AM,12/21/2010 09:46:46 AM,12/21/2010 09:47:26 AM,12/21/2010 09:48:06 AM,12/21/2010 09:50:05 AM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 10:00:14 AM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",103550111-E12 +140580165,T06,14019545,Alarms,02/27/2014,02/27/2014,02/27/2014 12:16:42 PM,02/27/2014 12:19:03 PM,02/27/2014 12:19:19 PM,02/27/2014 12:19:36 PM,02/27/2014 12:22:35 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/27/2014 01:01:32 PM,0 Block of MCCOPPIN ST,SF,94103,B02,36,5125,3,3,3,false,Alarm,1,TRUCK,2,2,6,Mission,"(37.7715636917588, -122.422131789635)",140580165-T06 +160391318,AM04,16015571,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:56:18 AM,02/08/2016 10:59:45 AM,02/08/2016 11:01:37 AM,02/08/2016 11:02:23 AM,02/08/2016 11:09:20 AM,02/08/2016 11:21:17 AM,02/08/2016 11:42:33 AM,Code 2 Transport,02/08/2016 12:08:26 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160391318-AM04 +121510303,B08,12050148,Structure Fire,05/30/2012,05/30/2012,05/30/2012 07:49:27 PM,05/30/2012 07:51:49 PM,05/30/2012 07:51:58 PM,05/30/2012 07:54:23 PM,05/30/2012 07:58:35 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/30/2012 08:08:53 PM,1200 Block of 47TH AVE,SF,94122,B08,23,7721,3,3,3,false,Fire,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7631799716508, -122.507127249562)",121510303-B08 +103060215,E01,10097924,Structure Fire,11/02/2010,11/02/2010,11/02/2010 11:58:54 AM,11/02/2010 11:59:33 AM,11/02/2010 12:00:10 PM,11/02/2010 12:00:25 PM,11/02/2010 12:03:23 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 12:10:58 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,3,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",103060215-E01 +112570091,T09,11084669,Outside Fire,09/14/2011,09/14/2011,09/14/2011 09:24:50 AM,09/14/2011 09:26:37 AM,09/14/2011 09:26:42 AM,09/14/2011 09:28:51 AM,09/14/2011 09:35:28 AM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/14/2011 09:36:19 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,false,,1,TRUCK,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",112570091-T09 +103130027,E03,10100224,Medical Incident,11/09/2010,11/08/2010,11/09/2010 02:29:29 AM,11/09/2010 02:29:39 AM,11/09/2010 02:30:07 AM,11/09/2010 02:32:14 AM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/09/2010 02:34:07 AM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",103130027-E03 +160430188,58,16017111,Medical Incident,02/12/2016,02/11/2016,02/12/2016 01:38:40 AM,02/12/2016 01:39:34 AM,02/12/2016 01:40:46 AM,02/12/2016 01:40:58 AM,02/12/2016 01:47:07 AM,02/12/2016 01:52:20 AM,02/12/2016 02:05:43 AM,Code 2 Transport,02/12/2016 02:27:46 AM,900 Block of VALENCIA ST,San Francisco,94110,B06,7,5456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7572975613482, -122.421224686971)",160430188-58 +103250261,E05,10104249,Medical Incident,11/21/2010,11/21/2010,11/21/2010 05:59:29 PM,11/21/2010 06:00:15 PM,11/21/2010 06:00:38 PM,11/21/2010 06:01:42 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 06:03:14 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,true,,1,ENGINE,3,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",103250261-E05 +160650457,71,16025807,Medical Incident,03/05/2016,03/04/2016,03/05/2016 03:46:06 AM,03/05/2016 03:46:06 AM,03/05/2016 03:46:43 AM,03/05/2016 03:47:42 AM,03/05/2016 03:55:04 AM,03/05/2016 04:20:17 AM,03/05/2016 04:38:16 AM,Code 2 Transport,03/05/2016 05:00:21 AM,1900 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160650457-71 +110560178,KM10,11018443,Medical Incident,02/25/2011,02/25/2011,02/25/2011 12:51:37 PM,02/25/2011 12:52:29 PM,02/25/2011 12:53:21 PM,02/25/2011 12:53:54 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 12:54:29 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,2,2,false,,1,PRIVATE,3,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",110560178-KM10 +102670129,E42,10084446,Medical Incident,09/24/2010,09/24/2010,09/24/2010 10:33:20 AM,09/24/2010 10:34:04 AM,09/24/2010 10:34:24 AM,09/24/2010 10:36:09 AM,09/24/2010 10:44:34 AM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/24/2010 10:49:25 AM,600 Block of THORNTON AVE,SF,94124,B10,42,6447,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7313162270083, -122.400690668956)",102670129-E42 +123040301,E15,12100994,Medical Incident,10/30/2012,10/30/2012,10/30/2012 07:56:10 PM,10/30/2012 07:56:49 PM,10/30/2012 07:57:41 PM,10/30/2012 07:58:45 PM,10/30/2012 08:01:30 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/30/2012 08:05:55 PM,300 Block of CAPISTRANO AVE,SF,94112,B09,15,8275,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7261544790806, -122.438335983298)",123040301-E15 +103360249,T18,10107533,Structure Fire,12/02/2010,12/02/2010,12/02/2010 03:49:29 PM,12/02/2010 03:49:29 PM,12/02/2010 03:49:48 PM,12/02/2010 03:50:59 PM,12/02/2010 03:53:59 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/02/2010 03:55:28 PM,25TH AV/TARAVAL ST,SF,94116,B08,40,7461,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7427672829659, -122.482121647462)",103360249-T18 +131240127,T02,13041761,Alarms,05/04/2013,05/04/2013,05/04/2013 10:01:31 AM,05/04/2013 10:02:32 AM,05/04/2013 10:03:05 AM,05/04/2013 10:05:06 AM,04/25/2016 01:52:58 PM,04/25/2016 01:52:58 PM,04/25/2016 01:52:58 PM,Other,05/04/2013 10:08:43 AM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7939808204935, -122.405476353162)",131240127-T02 +113560345,E15,11118329,Alarms,12/22/2011,12/22/2011,12/22/2011 06:32:07 PM,12/22/2011 06:33:12 PM,12/22/2011 06:33:32 PM,04/25/2016 02:01:01 PM,12/22/2011 06:36:14 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 06:50:25 PM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",113560345-E15 +140090266,E18,14003199,Medical Incident,01/09/2014,01/09/2014,01/09/2014 03:29:45 PM,01/09/2014 03:30:45 PM,01/09/2014 03:31:48 PM,01/09/2014 03:32:49 PM,01/09/2014 03:35:56 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 03:51:48 PM,1500 Block of 43RD AVE,SF,94122,B08,23,7652,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7577643099664, -122.502585164302)",140090266-E18 +120600005,AM10,12019601,Medical Incident,02/29/2012,02/28/2012,02/29/2012 12:25:23 AM,02/29/2012 12:26:35 AM,02/29/2012 12:27:55 AM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Other,04/25/2016 01:59:55 PM,400 Block of BARTLETT ST,SF,94110,B06,11,5535,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Mission,"(37.74976903279, -122.419392137608)",120600005-AM10 +140030237,KM10,14001082,Medical Incident,01/03/2014,01/03/2014,01/03/2014 01:16:01 PM,01/03/2014 01:18:04 PM,01/03/2014 01:25:53 PM,01/03/2014 01:25:53 PM,01/03/2014 01:32:36 PM,01/03/2014 01:48:00 PM,01/03/2014 02:01:48 PM,Code 2 Transport,01/03/2014 02:41:44 PM,3000 Block of MARKET ST,SF,94114,B05,24,5413,,3,3,false,Non Life-threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7608293644755, -122.4432168391)",140030237-KM10 +133160156,94,13107407,Medical Incident,11/12/2013,11/12/2013,11/12/2013 12:33:13 PM,11/12/2013 12:34:51 PM,11/12/2013 12:35:22 PM,11/12/2013 12:36:15 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 12:39:37 PM,1300 Block of HOWARD ST,SF,94103,B02,36,2342,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7742496611166, -122.414204535023)",133160156-94 +103270198,E41,10104778,Outside Fire,11/23/2010,11/23/2010,11/23/2010 01:48:33 PM,11/23/2010 01:51:13 PM,11/23/2010 01:51:33 PM,04/25/2016 02:07:28 PM,11/23/2010 01:53:26 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 01:57:44 PM,TAYLOR ST/BEACH ST,SF,94133,B01,28,1433,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.807275868938, -122.41561643642)",103270198-E41 +131640228,E03,13055746,Administrative,06/13/2013,06/13/2013,06/13/2013 02:32:52 PM,06/13/2013 02:32:54 PM,06/13/2013 02:33:02 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/13/2013 02:33:36 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",131640228-E03 +160772571,86,16030667,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:40:33 PM,03/17/2016 03:40:33 PM,03/17/2016 03:49:23 PM,03/17/2016 03:49:30 PM,03/17/2016 04:12:30 PM,03/17/2016 04:37:22 PM,03/17/2016 04:45:03 PM,Code 2 Transport,03/17/2016 05:33:22 PM,200 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7671990407506, -122.424452084295)",160772571-86 +112170310,E11,11071814,Medical Incident,08/05/2011,08/05/2011,08/05/2011 06:50:26 PM,08/05/2011 06:51:17 PM,08/05/2011 06:51:54 PM,08/05/2011 06:54:53 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 06:56:28 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,E,3,true,,1,ENGINE,4,6,9,Mission,"(37.7562319946436, -122.418893283075)",112170310-E11 +133490137,E43,13118438,Medical Incident,12/15/2013,12/15/2013,12/15/2013 10:56:58 AM,12/15/2013 10:57:16 AM,12/15/2013 10:59:41 AM,12/15/2013 11:00:26 AM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 11:02:30 AM,0 Block of CORDOVA ST,SF,94112,B09,43,6224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7128542066496, -122.43602367503)",133490137-E43 +132780414,E37,13094706,Structure Fire,10/05/2013,10/05/2013,10/05/2013 10:53:20 PM,10/05/2013 10:54:54 PM,10/05/2013 10:56:23 PM,10/05/2013 10:57:45 PM,10/05/2013 10:59:19 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 11:00:47 PM,1100 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,false,Alarm,1,ENGINE,4,6,9,Mission,"(37.7547721851074, -122.416421083608)",132780414-E37 +120150204,87,12005118,Medical Incident,01/15/2012,01/15/2012,01/15/2012 02:33:01 PM,01/15/2012 02:34:54 PM,01/15/2012 02:35:16 PM,01/15/2012 02:35:26 PM,01/15/2012 02:39:25 PM,01/15/2012 02:47:34 PM,01/15/2012 03:02:51 PM,Code 2 Transport,01/15/2012 03:52:18 PM,1400 Block of MARKET ST,SF,94102,B02,36,3211,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",120150204-87 +110310296,B04,11010252,Alarms,01/31/2011,01/31/2011,01/31/2011 05:55:58 PM,01/31/2011 05:56:34 PM,01/31/2011 05:57:01 PM,01/31/2011 05:58:21 PM,01/31/2011 06:00:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,01/31/2011 06:06:59 PM,1300 Block of POLK ST,SF,94109,B04,3,3122,3,3,3,false,,1,CHIEF,3,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",110310296-B04 +112770051,E18,11091591,Medical Incident,10/04/2011,10/03/2011,10/04/2011 06:38:34 AM,10/04/2011 06:40:13 AM,10/04/2011 06:41:16 AM,10/04/2011 06:42:23 AM,10/04/2011 06:45:49 AM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 07:02:20 AM,4100 Block of PACHECO ST,SF,94116,B08,23,7663,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7492037670734, -122.504607119511)",112770051-E18 +103190055,67,10102158,Medical Incident,11/15/2010,11/14/2010,11/15/2010 07:26:48 AM,11/15/2010 07:27:13 AM,11/15/2010 07:27:22 AM,11/15/2010 07:35:48 AM,11/15/2010 07:45:11 AM,11/15/2010 08:13:38 AM,11/15/2010 08:32:54 AM,Code 2 Transport,11/15/2010 08:58:09 AM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",103190055-67 +103400135,81,10108793,Medical Incident,12/06/2010,12/06/2010,12/06/2010 10:34:03 AM,12/06/2010 10:35:03 AM,12/06/2010 10:35:09 AM,04/25/2016 02:07:16 PM,12/06/2010 10:57:56 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Patient Declined Transport,12/06/2010 11:19:57 AM,800 Block of VIENNA ST,SF,94112,B09,43,6136,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7154074124053, -122.434151959876)",103400135-81 +160351919,91,16013834,Medical Incident,02/04/2016,02/04/2016,02/04/2016 01:30:18 PM,02/04/2016 01:32:11 PM,02/04/2016 01:32:35 PM,02/04/2016 01:40:08 PM,02/04/2016 01:41:34 PM,02/04/2016 01:57:16 PM,02/04/2016 02:16:27 PM,Code 2 Transport,02/04/2016 02:44:03 PM,3600 Block of WAWONA ST,San Francisco,94116,B08,23,7733,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7360605728424, -122.505741468658)",160351919-91 +123290204,B01,12109437,Fuel Spill,11/24/2012,11/24/2012,11/24/2012 03:15:28 PM,11/24/2012 03:17:04 PM,11/24/2012 03:18:48 PM,11/24/2012 03:20:10 PM,11/24/2012 03:22:53 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 03:35:50 PM,LOMBARD ST/LARKIN ST,SF,94109,B01,41,1625,3,3,3,false,Alarm,1,CHIEF,1,1,2,Russian Hill,"(37.8017584160095, -122.421257557973)",123290204-B01 +122090081,E01,12069366,Medical Incident,07/27/2012,07/27/2012,07/27/2012 08:44:34 AM,07/27/2012 08:46:37 AM,07/27/2012 08:47:01 AM,07/27/2012 08:47:43 AM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 08:49:08 AM,STEVENSON ST/6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7817543267261, -122.409693263148)",122090081-E01 +110380044,93,11012471,Medical Incident,02/07/2011,02/06/2011,02/07/2011 03:07:32 AM,02/07/2011 03:08:01 AM,02/07/2011 03:14:16 AM,02/07/2011 03:19:51 AM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/07/2011 03:25:52 AM,4400 Block of CABRILLO ST,SF,94121,B07,34,7277,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7733768091246, -122.506280175439)",110380044-93 +131500308,E01,13050923,Structure Fire,05/30/2013,05/30/2013,05/30/2013 08:40:08 PM,05/30/2013 08:40:09 PM,05/30/2013 08:40:14 PM,05/30/2013 08:41:16 PM,05/30/2013 08:43:44 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/30/2013 08:44:09 PM,LEAVENWORTH ST/UNITED NATIONS PZ,SF,94102,B02,1,1551,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7799917401811, -122.413487401339)",131500308-E01 +132490403,AM22,13084219,Medical Incident,09/06/2013,09/06/2013,09/06/2013 11:18:16 PM,09/06/2013 11:18:50 PM,09/06/2013 11:19:05 PM,09/06/2013 11:20:19 PM,09/06/2013 11:28:16 PM,09/06/2013 11:42:08 PM,09/07/2013 12:00:37 AM,Code 2 Transport,09/07/2013 12:28:22 AM,300 Block of TEDDY AVE,SF,94134,B09,44,6312,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7153951688857, -122.409692952213)",132490403-AM22 +123540387,E37,12118624,Alarms,12/19/2012,12/19/2012,12/19/2012 09:49:12 PM,12/19/2012 09:50:14 PM,12/19/2012 09:50:43 PM,12/19/2012 09:51:39 PM,12/19/2012 09:53:30 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/19/2012 10:16:11 PM,1600 Block of 18TH ST,SF,94107,B03,37,2456,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7623498926454, -122.399419936094)",123540387-E37 +160361338,KM11,16014193,Medical Incident,02/05/2016,02/05/2016,02/05/2016 10:16:25 AM,02/05/2016 10:18:06 AM,02/05/2016 10:18:21 AM,02/05/2016 10:18:56 AM,02/05/2016 10:27:39 AM,02/05/2016 10:49:06 AM,02/05/2016 11:10:01 AM,Code 2 Transport,02/05/2016 11:28:52 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160361338-KM11 +140050057,KM07,14001697,Medical Incident,01/05/2014,01/04/2014,01/05/2014 03:45:53 AM,01/05/2014 03:45:53 AM,01/05/2014 03:48:09 AM,01/05/2014 03:48:42 AM,01/05/2014 03:58:32 AM,01/05/2014 04:26:19 AM,01/05/2014 04:55:18 AM,Code 2 Transport,01/05/2014 05:25:26 AM,MARKET ST/4TH ST,SF,94103,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",140050057-KM07 +160420243,AM20,16016717,Medical Incident,02/11/2016,02/10/2016,02/11/2016 02:53:04 AM,02/11/2016 02:54:46 AM,02/11/2016 02:55:12 AM,02/11/2016 02:55:52 AM,02/11/2016 03:04:07 AM,02/11/2016 03:28:12 AM,02/11/2016 03:36:00 AM,Code 2 Transport,02/11/2016 04:06:51 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160420243-AM20 +120630075,92,12020657,Medical Incident,03/03/2012,03/02/2012,03/03/2012 04:30:36 AM,03/03/2012 04:32:03 AM,03/03/2012 04:32:37 AM,04/25/2016 01:59:52 PM,03/03/2012 04:36:28 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 04:37:51 AM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",120630075-92 +140270074,T01,14009112,Medical Incident,01/27/2014,01/27/2014,01/27/2014 08:25:20 AM,01/27/2014 08:26:34 AM,01/27/2014 08:26:47 AM,01/27/2014 08:29:38 AM,01/27/2014 08:36:48 AM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/27/2014 08:42:15 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,,2,2,false,Potentially Life-Threatening,1,TRUCK,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",140270074-T01 +160383019,87,16015352,Medical Incident,02/07/2016,02/07/2016,02/07/2016 07:19:16 PM,02/07/2016 07:19:16 PM,02/07/2016 07:20:00 PM,02/07/2016 07:20:09 PM,02/07/2016 07:28:38 PM,02/07/2016 07:38:04 PM,02/07/2016 07:45:31 PM,Code 2 Transport,02/07/2016 08:03:52 PM,1700 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7694700718007, -122.415525556609)",160383019-87 +112160270,E26,11071409,Medical Incident,08/04/2011,08/04/2011,08/04/2011 03:24:33 PM,08/04/2011 03:26:32 PM,08/04/2011 03:27:39 PM,08/04/2011 03:29:02 PM,08/04/2011 03:31:23 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Unable to Locate,08/04/2011 03:35:04 PM,BOSWORTH ST/CONGO ST,SF,94131,B09,26,8176,3,2,2,true,,1,ENGINE,1,9,8,West of Twin Peaks,"(37.7348568102964, -122.439934384552)",112160270-E26 +122570038,77,12084836,Medical Incident,09/13/2012,09/12/2012,09/13/2012 06:00:36 AM,09/13/2012 06:01:30 AM,09/13/2012 06:02:10 AM,09/13/2012 06:03:58 AM,09/13/2012 06:11:17 AM,09/13/2012 06:20:49 AM,09/13/2012 06:53:11 AM,Code 2 Transport,09/13/2012 07:34:10 AM,200 Block of ASHTON AVE,SF,94112,B09,15,8434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7224246331182, -122.462198993823)",122570038-77 +110460075,T06,11015167,Vehicle Fire,02/15/2011,02/15/2011,02/15/2011 08:15:58 AM,02/15/2011 08:17:40 AM,02/15/2011 08:18:00 AM,02/15/2011 08:19:30 AM,02/15/2011 08:22:52 AM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 08:24:40 AM,CHURCH ST/17TH ST,SF,94114,B02,6,5251,3,3,3,false,,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7628898668395, -122.428508749574)",110460075-T06 +121090178,B04,12036047,Alarms,04/18/2012,04/18/2012,04/18/2012 01:10:45 PM,04/18/2012 01:11:53 PM,04/18/2012 01:12:00 PM,04/18/2012 01:15:13 PM,04/18/2012 01:16:14 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/18/2012 01:16:44 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Alarm,1,CHIEF,3,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121090178-B04 +131690408,78,13057567,Medical Incident,06/18/2013,06/18/2013,06/18/2013 10:43:05 PM,06/18/2013 10:44:21 PM,06/18/2013 10:44:32 PM,06/18/2013 10:45:09 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Patient Declined Transport,06/18/2013 10:48:21 PM,22ND ST/BARTLETT ST,SF,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7553657296757, -122.419857942792)",131690408-78 +120170245,E01,12005754,Structure Fire,01/17/2012,01/17/2012,01/17/2012 04:27:20 PM,01/17/2012 04:27:20 PM,01/17/2012 04:29:47 PM,01/17/2012 04:29:59 PM,01/17/2012 04:33:33 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Fire,01/17/2012 04:33:38 PM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",120170245-E01 +160850657,79,16033663,Medical Incident,03/25/2016,03/24/2016,03/25/2016 07:29:03 AM,03/25/2016 07:31:24 AM,03/25/2016 07:31:36 AM,03/25/2016 07:32:06 AM,03/25/2016 07:39:11 AM,03/25/2016 08:11:19 AM,03/25/2016 08:40:48 AM,Code 2 Transport,03/25/2016 09:33:15 AM,1300 Block of 27TH AVE,San Francisco,94122,B08,22,7511,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7622565136355, -122.485564556768)",160850657-79 +121610266,KM11,12053380,Citizen Assist / Service Call,06/09/2012,06/09/2012,06/09/2012 05:40:59 PM,06/09/2012 05:45:27 PM,06/09/2012 05:46:00 PM,06/09/2012 05:46:30 PM,06/09/2012 05:50:08 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/09/2012 05:52:45 PM,2000 Block of 23RD AVE,SF,94116,B08,40,7444,3,3,3,false,Alarm,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7493917486636, -122.480364209631)",121610266-KM11 +111580402,E01,11052434,Medical Incident,06/07/2011,06/07/2011,06/07/2011 11:51:52 PM,06/07/2011 11:53:41 PM,06/07/2011 11:53:55 PM,06/07/2011 11:55:11 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/07/2011 11:57:56 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",111580402-E01 +133420307,75,13116074,Medical Incident,12/08/2013,12/08/2013,12/08/2013 06:21:20 PM,12/08/2013 06:23:21 PM,12/08/2013 06:25:23 PM,12/08/2013 06:26:13 PM,12/08/2013 06:27:43 PM,12/08/2013 06:35:17 PM,12/08/2013 06:54:06 PM,Code 2 Transport,12/08/2013 07:21:41 PM,EDWARD ST/ARGUELLO BL,SF,94118,B07,31,7112,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7780083487713, -122.45863789522)",133420307-75 +113070275,E29,11102065,Medical Incident,11/03/2011,11/03/2011,11/03/2011 04:42:18 PM,11/03/2011 04:44:13 PM,11/03/2011 04:45:48 PM,11/03/2011 04:48:02 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/03/2011 04:48:12 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",113070275-E29 +102750373,81,10087527,Medical Incident,10/02/2010,10/02/2010,10/02/2010 09:18:19 PM,10/02/2010 09:18:56 PM,10/02/2010 09:22:03 PM,10/02/2010 09:22:10 PM,10/02/2010 09:44:05 PM,10/02/2010 09:48:46 PM,10/02/2010 09:56:26 PM,Code 2 Transport,10/02/2010 10:23:00 PM,OFARRELL ST/HYDE ST,SF,94109,B04,3,1544,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7853759730503, -122.416259705763)",102750373-81 +160343168,86,16013560,Medical Incident,02/03/2016,02/03/2016,02/03/2016 07:53:30 PM,02/03/2016 07:53:51 PM,02/03/2016 07:54:03 PM,02/03/2016 07:54:16 PM,02/03/2016 08:02:02 PM,02/03/2016 08:27:19 PM,02/03/2016 08:42:46 PM,Code 2 Transport,02/03/2016 09:35:46 PM,100 Block of CHESTER AVE,San Francisco,94132,B09,33,8417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7138267353133, -122.470388666003)",160343168-86 +131670005,T07,13056544,Structure Fire,06/16/2013,06/15/2013,06/16/2013 12:08:57 AM,06/16/2013 12:08:57 AM,06/16/2013 12:09:14 AM,06/16/2013 12:10:34 AM,04/25/2016 01:52:16 PM,04/25/2016 01:52:16 PM,04/25/2016 01:52:16 PM,Other,06/16/2013 12:16:10 AM,14TH ST/FOLSOM ST,SF,94103,B02,7,5216,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7685373884214, -122.415613781366)",131670005-T07 +160113381,AM24,16004561,Medical Incident,01/11/2016,01/11/2016,01/11/2016 09:32:40 PM,01/11/2016 09:32:40 PM,01/11/2016 09:33:33 PM,01/11/2016 09:33:51 PM,01/11/2016 09:39:25 PM,01/11/2016 09:51:49 PM,01/11/2016 09:58:26 PM,Code 2 Transport,01/11/2016 10:22:02 PM,CHURCH ST/VALLEY ST,San Francisco,94131,B06,11,5562,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7444974074355, -122.426746185523)",160113381-AM24 +120500204,AM04,12016546,Medical Incident,02/19/2012,02/19/2012,02/19/2012 02:37:03 PM,02/19/2012 02:38:27 PM,02/19/2012 02:38:43 PM,02/19/2012 02:40:04 PM,02/19/2012 02:41:49 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,No Merit,02/19/2012 02:56:12 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",120500204-AM04 +132670016,E03,13090500,Medical Incident,09/24/2013,09/23/2013,09/24/2013 02:06:14 AM,09/24/2013 02:08:32 AM,09/24/2013 02:08:56 AM,09/24/2013 02:10:31 AM,09/24/2013 02:11:50 AM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/24/2013 02:20:19 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132670016-E03 +122390163,E16,12079120,Structure Fire,08/26/2012,08/26/2012,08/26/2012 01:12:02 PM,08/26/2012 01:12:03 PM,08/26/2012 01:12:11 PM,08/26/2012 01:12:48 PM,08/26/2012 01:14:09 PM,04/25/2016 01:57:03 PM,04/25/2016 01:57:03 PM,Fire,08/26/2012 01:15:37 PM,SCOTT ST/LOMBARD ST,SF,94123,B04,16,4115,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.799212365751, -122.440977561035)",122390163-E16 +121840030,E36,12061164,Alarms,07/02/2012,07/01/2012,07/02/2012 03:04:16 AM,07/02/2012 03:04:31 AM,07/02/2012 03:06:07 AM,07/02/2012 03:07:48 AM,07/02/2012 03:09:15 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/02/2012 03:18:04 AM,100 Block of GROVE ST,SF,94102,B02,36,3165,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7783289000176, -122.419047896211)",121840030-E36 +160391679,65,16015612,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:41:50 PM,02/08/2016 12:41:50 PM,02/08/2016 12:43:56 PM,02/08/2016 12:48:55 PM,02/08/2016 01:14:21 PM,02/08/2016 01:35:43 PM,02/08/2016 01:51:53 PM,Code 2 Transport,02/08/2016 02:38:33 PM,0 Block of BATTERY ST,San Francisco,94111,B01,13,1163,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7918010769728, -122.399599379177)",160391679-65 +103400011,E09,10108697,Medical Incident,12/06/2010,12/05/2010,12/06/2010 12:55:46 AM,12/06/2010 12:56:37 AM,12/06/2010 12:56:59 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/06/2010 12:58:10 AM,1300 Block of SAN BRUNO AVE,SF,94110,B10,9,2562,3,2,2,true,,1,ENGINE,2,10,10,Mission,"(37.752479036245, -122.404371466638)",103400011-E09 +130940077,55,13031382,Medical Incident,04/04/2013,04/04/2013,04/04/2013 08:40:49 AM,04/04/2013 08:41:43 AM,04/04/2013 08:42:53 AM,04/04/2013 08:45:33 AM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/04/2013 08:52:47 AM,0 Block of MIGUEL ST,SF,94131,B06,26,8116,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7391422231463, -122.429773232934)",130940077-55 +123490228,E35,12116723,Administrative,12/14/2012,12/14/2012,12/14/2012 02:34:46 PM,12/14/2012 02:34:49 PM,12/14/2012 02:35:04 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/14/2012 02:36:37 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",123490228-E35 +110610039,T03,11019892,Medical Incident,03/02/2011,03/01/2011,03/02/2011 04:11:56 AM,03/02/2011 04:11:57 AM,03/02/2011 04:12:16 AM,03/02/2011 04:14:15 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 04:17:44 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,,1,TRUCK,4,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",110610039-T03 +123070426,E09,12102222,Citizen Assist / Service Call,11/02/2012,11/02/2012,11/02/2012 11:11:00 PM,11/02/2012 11:13:55 PM,11/02/2012 11:14:44 PM,11/02/2012 11:17:38 PM,11/02/2012 11:21:11 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Other,11/02/2012 11:35:34 PM,1500 Block of INNES AVE,SF,94124,B10,25,6532,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7389350707758, -122.387857880453)",123070426-E09 +131440077,KM09,13048741,Medical Incident,05/24/2013,05/24/2013,05/24/2013 09:05:43 AM,05/24/2013 09:07:09 AM,05/24/2013 09:08:04 AM,05/24/2013 09:09:51 AM,05/24/2013 09:38:28 AM,05/24/2013 09:45:37 AM,05/24/2013 10:37:59 AM,Code 2 Transport,05/24/2013 11:03:44 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131440077-KM09 +133500155,KM10,13118792,Medical Incident,12/16/2013,12/16/2013,12/16/2013 10:55:30 AM,12/16/2013 10:57:10 AM,12/16/2013 10:57:33 AM,12/16/2013 10:57:55 AM,12/16/2013 11:03:03 AM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Patient Declined Transport,12/16/2013 11:06:12 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",133500155-KM10 +111950345,E05,11064513,Structure Fire,07/14/2011,07/14/2011,07/14/2011 08:21:42 PM,07/14/2011 08:22:46 PM,07/14/2011 08:22:58 PM,07/14/2011 08:24:42 PM,07/14/2011 08:26:20 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 09:11:56 PM,2000 Block of MCALLISTER ST,SF,94118,B05,21,4462,3,3,3,true,,1,ENGINE,4,5,5,Lone Mountain/USF,"(37.7769038844357, -122.445824245144)",111950345-E05 +112380064,E36,11078456,Medical Incident,08/26/2011,08/25/2011,08/26/2011 07:17:45 AM,08/26/2011 07:19:12 AM,08/26/2011 07:19:29 AM,08/26/2011 07:21:05 AM,08/26/2011 07:23:48 AM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 07:26:19 AM,600 Block of LINDEN ST,SF,94102,B02,36,3423,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7757362094861, -122.428650470789)",112380064-E36 +131900046,E42,13064628,Structure Fire,07/09/2013,07/08/2013,07/09/2013 06:02:29 AM,07/09/2013 06:03:52 AM,07/09/2013 06:04:18 AM,07/09/2013 06:06:12 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 06:57:00 AM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,3,3,3,true,Fire,1,ENGINE,10,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",131900046-E42 +160252881,79,16010039,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:48:23 PM,01/25/2016 05:49:12 PM,01/25/2016 05:50:42 PM,01/25/2016 05:50:53 PM,01/25/2016 06:16:28 PM,01/25/2016 06:16:29 PM,01/25/2016 06:33:28 PM,Code 2 Transport,01/25/2016 07:14:42 PM,500 Block of RIVERA ST,San Francisco,94116,B08,40,7375,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7469914012749, -122.472403675394)",160252881-79 +132300011,93,13077518,Medical Incident,08/18/2013,08/17/2013,08/18/2013 12:24:23 AM,08/18/2013 12:26:00 AM,08/18/2013 12:33:00 AM,08/18/2013 12:33:11 AM,08/18/2013 12:36:44 AM,08/18/2013 12:48:52 AM,08/18/2013 01:00:51 AM,Code 2 Transport,08/18/2013 01:32:54 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",132300011-93 +132000296,RC2,13067885,Traffic Collision,07/19/2013,07/19/2013,07/19/2013 05:32:03 PM,07/19/2013 05:32:49 PM,07/19/2013 05:33:13 PM,04/25/2016 01:51:44 PM,07/19/2013 05:36:23 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 06:12:01 PM,4TH AV/CALIFORNIA ST,SF,94118,B07,31,7125,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,2,Inner Richmond,"(37.7852661262191, -122.462441443062)",132000296-RC2 +122460284,96,12081441,Structure Fire,09/02/2012,09/02/2012,09/02/2012 05:03:14 PM,09/02/2012 05:04:10 PM,09/02/2012 05:04:31 PM,09/02/2012 05:06:54 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 05:11:03 PM,BELVEDERE ST/CARMEL ST,SF,94117,B05,12,5256,3,3,3,true,Fire,1,MEDIC,9,5,5,Inner Sunset,"(37.760932688307, -122.447624825892)",122460284-96 +103050163,RS1,10097465,Medical Incident,11/01/2010,11/01/2010,11/01/2010 10:27:38 AM,11/01/2010 10:28:26 AM,11/01/2010 10:29:01 AM,11/01/2010 10:30:40 AM,11/01/2010 10:34:53 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 10:48:55 AM,MARKET ST/7TH ST,SF,94103,B03,1,1455,3,3,3,true,,1,RESCUE SQUAD,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",103050163-RS1 +110030279,RC1,11001050,Medical Incident,01/03/2011,01/03/2011,01/03/2011 05:39:09 PM,01/03/2011 05:39:28 PM,01/03/2011 05:39:49 PM,04/25/2016 02:06:46 PM,01/03/2011 05:45:52 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/03/2011 05:54:18 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",110030279-RC1 +120580357,81,12019268,Medical Incident,02/27/2012,02/27/2012,02/27/2012 10:34:05 PM,02/27/2012 10:34:27 PM,02/27/2012 10:34:41 PM,02/27/2012 10:35:02 PM,02/27/2012 10:39:59 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Against Medical Advice,02/27/2012 11:35:49 PM,12TH AV/IRVING ST,SF,94122,B08,22,7345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7638959454809, -122.469521963382)",120580357-81 +132330271,79,13078741,Medical Incident,08/21/2013,08/21/2013,08/21/2013 05:09:24 PM,08/21/2013 05:13:41 PM,08/21/2013 05:14:20 PM,08/21/2013 05:16:56 PM,08/21/2013 05:22:18 PM,08/21/2013 05:35:45 PM,08/21/2013 05:51:42 PM,Code 2 Transport,08/21/2013 06:20:37 PM,400 Block of EUREKA ST,SF,94114,B06,24,5465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7549139058085, -122.437777856509)",132330271-79 +160832158,63,16032978,Medical Incident,03/23/2016,03/23/2016,03/23/2016 02:01:27 PM,03/23/2016 02:02:57 PM,03/23/2016 02:03:39 PM,03/23/2016 02:04:00 PM,03/23/2016 02:19:18 PM,03/23/2016 02:45:43 PM,03/23/2016 02:49:33 PM,Code 2 Transport,03/23/2016 03:08:54 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160832158-63 +112440139,E21,11080410,Alarms,09/01/2011,09/01/2011,09/01/2011 11:06:38 AM,09/01/2011 11:07:27 AM,09/01/2011 11:07:37 AM,09/01/2011 11:09:28 AM,09/01/2011 11:11:34 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Fire,09/01/2011 11:20:33 AM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,3,3,true,,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",112440139-E21 +110040208,E26,11001311,Alarms,01/04/2011,01/04/2011,01/04/2011 01:54:58 PM,01/04/2011 01:58:22 PM,01/04/2011 01:59:26 PM,01/04/2011 02:00:34 PM,01/04/2011 02:04:20 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/04/2011 02:19:53 PM,100 Block of RED ROCK WAY,SF,94131,B06,26,8167,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",110040208-E26 +111030098,95,11034068,Medical Incident,04/13/2011,04/13/2011,04/13/2011 09:42:59 AM,04/13/2011 09:44:01 AM,04/13/2011 09:44:23 AM,04/13/2011 09:45:06 AM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/13/2011 09:52:21 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",111030098-95 +160340056,76,16013206,Medical Incident,02/03/2016,02/02/2016,02/03/2016 12:22:58 AM,02/03/2016 12:26:19 AM,02/03/2016 12:26:29 AM,02/03/2016 12:26:40 AM,02/03/2016 12:29:18 AM,02/03/2016 12:46:08 AM,02/03/2016 12:57:32 AM,Code 2 Transport,02/03/2016 01:10:40 AM,200 Block of LARKIN ST,San Francisco,94102,B02,36,1645,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",160340056-76 +113310190,E36,11109719,Traffic Collision,11/27/2011,11/27/2011,11/27/2011 03:37:20 PM,11/27/2011 03:37:55 PM,11/27/2011 03:38:05 PM,11/27/2011 03:41:08 PM,11/27/2011 03:42:37 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/27/2011 04:00:51 PM,DIVISADERO ST/OAK ST,SF,94117,B05,21,4141,3,3,3,false,,1,ENGINE,3,5,5,Hayes Valley,"(37.773133492205, -122.437422938764)",113310190-E36 +130550015,55,13018425,Medical Incident,02/24/2013,02/23/2013,02/24/2013 12:41:21 AM,02/24/2013 12:45:26 AM,02/24/2013 12:46:02 AM,02/24/2013 12:46:21 AM,02/24/2013 12:52:34 AM,02/24/2013 01:40:57 AM,02/24/2013 01:51:01 AM,Code 2 Transport,02/24/2013 02:29:53 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7795655119181, -122.406844762466)",130550015-55 +110600326,E03,11019806,Medical Incident,03/01/2011,03/01/2011,03/01/2011 07:57:19 PM,03/01/2011 07:58:01 PM,03/01/2011 07:58:10 PM,03/01/2011 07:59:20 PM,03/01/2011 08:01:42 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/01/2011 08:20:02 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",110600326-E03 +130760131,T03,13025342,Medical Incident,03/17/2013,03/17/2013,03/17/2013 09:48:36 AM,03/17/2013 09:51:26 AM,03/17/2013 09:51:42 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 09:54:46 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",130760131-T03 +131350340,E41,13045681,Medical Incident,05/15/2013,05/15/2013,05/15/2013 08:05:09 PM,05/15/2013 08:06:52 PM,05/15/2013 08:07:00 PM,05/15/2013 08:07:44 PM,05/15/2013 08:09:36 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 08:09:59 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",131350340-E41 +122360164,54,12078175,Medical Incident,08/23/2012,08/23/2012,08/23/2012 12:58:30 PM,08/23/2012 01:01:01 PM,08/23/2012 01:03:08 PM,08/23/2012 01:03:45 PM,04/25/2016 01:57:06 PM,08/23/2012 01:21:20 PM,08/23/2012 01:39:18 PM,Code 2 Transport,08/23/2012 01:52:35 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",122360164-54 +121940339,59,12064678,Medical Incident,07/12/2012,07/12/2012,07/12/2012 06:30:03 PM,07/12/2012 06:31:40 PM,07/12/2012 06:32:28 PM,07/12/2012 06:34:57 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/12/2012 06:43:34 PM,1000 Block of CALIFORNIA ST,SF,94108,B01,41,1445,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7916201314541, -122.412075501697)",121940339-59 +121590235,E28,12052654,Medical Incident,06/07/2012,06/07/2012,06/07/2012 04:46:24 PM,06/07/2012 04:47:09 PM,06/07/2012 04:47:26 PM,06/07/2012 04:48:13 PM,06/07/2012 04:51:01 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/07/2012 06:00:59 PM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8084350175869, -122.410774214375)",121590235-E28 +133300068,RC3,13111969,Medical Incident,11/26/2013,11/25/2013,11/26/2013 07:25:09 AM,11/26/2013 07:25:47 AM,11/26/2013 07:32:36 AM,11/26/2013 07:33:28 AM,11/26/2013 07:44:49 AM,11/26/2013 08:16:25 AM,11/26/2013 08:16:27 AM,Other,11/26/2013 08:20:45 AM,1200 Block of BROADWAY,SF,94109,B01,41,1534,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Russian Hill,"(37.7965421990179, -122.417889998529)",133300068-RC3 +122030373,E01,12067631,Medical Incident,07/21/2012,07/21/2012,07/21/2012 10:49:30 PM,07/21/2012 10:49:30 PM,07/21/2012 10:49:30 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,04/25/2016 01:57:36 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122030373-E01 +123360272,89,12111797,Medical Incident,12/01/2012,12/01/2012,12/01/2012 04:39:36 PM,12/01/2012 04:41:16 PM,12/01/2012 04:41:40 PM,12/01/2012 04:42:11 PM,12/01/2012 04:49:40 PM,12/01/2012 05:10:48 PM,12/01/2012 05:35:12 PM,Code 2 Transport,12/01/2012 05:58:51 PM,2200 Block of SANTIAGO ST,SF,94116,B08,18,7555,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7441785122761, -122.491357624063)",123360272-89 +120940183,E41,12031150,Medical Incident,04/03/2012,04/03/2012,04/03/2012 01:42:30 PM,04/03/2012 01:44:17 PM,04/03/2012 01:44:52 PM,04/03/2012 01:45:32 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 01:47:35 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120940183-E41 +113430167,77,11113730,Medical Incident,12/09/2011,12/09/2011,12/09/2011 11:32:37 AM,12/09/2011 11:33:19 AM,12/09/2011 11:34:06 AM,12/09/2011 11:34:33 AM,12/09/2011 11:38:31 AM,12/09/2011 11:59:10 AM,12/09/2011 12:23:43 PM,Code 2 Transport,12/09/2011 12:47:38 PM,300 Block of 7TH ST,SF,94103,B03,8,2312,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7759488172418, -122.406743783137)",113430167-77 +113350131,B02,11110856,Alarms,12/01/2011,12/01/2011,12/01/2011 10:33:33 AM,12/01/2011 10:34:36 AM,12/01/2011 10:34:47 AM,12/01/2011 10:35:34 AM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,12/01/2011 10:40:47 AM,400 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,false,,1,CHIEF,3,3,6,South of Market,"(37.7798600031214, -122.405090496364)",113350131-B02 +131150202,E03,13038800,Alarms,04/25/2013,04/25/2013,04/25/2013 03:15:16 PM,04/25/2013 03:15:54 PM,04/25/2013 03:16:01 PM,04/25/2013 03:16:42 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 03:23:54 PM,700 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,true,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",131150202-E03 +112990238,59,11099222,Medical Incident,10/26/2011,10/26/2011,10/26/2011 03:10:50 PM,10/26/2011 03:11:39 PM,10/26/2011 03:11:51 PM,10/26/2011 03:12:35 PM,04/25/2016 02:01:58 PM,10/26/2011 03:37:56 PM,10/26/2011 03:44:22 PM,Code 2 Transport,10/26/2011 04:17:02 PM,GOLDEN GATE AV/HYDE ST,SF,94102,B02,1,1546,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",112990238-59 +160140340,61,16005432,Medical Incident,01/14/2016,01/13/2016,01/14/2016 04:19:47 AM,01/14/2016 04:19:47 AM,01/14/2016 04:19:47 AM,01/14/2016 04:19:47 AM,01/14/2016 04:19:47 AM,01/14/2016 04:28:44 AM,01/14/2016 04:35:33 AM,Code 2 Transport,01/14/2016 06:00:37 AM,500 Block of 5TH ST,San Francisco,94107,B99,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160140340-61 +160171437,KM11,16006827,Medical Incident,01/17/2016,01/17/2016,01/17/2016 12:03:42 PM,01/17/2016 12:04:17 PM,01/17/2016 12:05:13 PM,01/17/2016 12:06:01 PM,01/17/2016 12:14:18 PM,01/17/2016 12:37:13 PM,01/17/2016 12:52:48 PM,Code 2 Transport,01/17/2016 01:15:39 PM,100 Block of LAIDLEY ST,San Francisco,94131,B06,26,8114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Glen Park,"(37.7395435129968, -122.429083804755)",160171437-KM11 +122760344,B06,12091258,Alarms,10/02/2012,10/02/2012,10/02/2012 05:44:01 PM,10/02/2012 05:45:27 PM,10/02/2012 05:45:37 PM,10/02/2012 05:47:03 PM,10/02/2012 05:49:19 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/02/2012 05:54:40 PM,300 Block of 29TH ST,SF,94131,B06,11,5563,3,3,3,false,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7436872348427, -122.427781805638)",122760344-B06 +121870035,KM15,12062180,Medical Incident,07/05/2012,07/04/2012,07/05/2012 01:23:48 AM,07/05/2012 01:26:42 AM,07/05/2012 01:27:18 AM,07/05/2012 01:30:13 AM,07/05/2012 01:34:19 AM,07/05/2012 01:48:32 AM,07/05/2012 02:00:00 AM,Code 2 Transport,07/05/2012 02:22:25 AM,800 Block of 26TH AVE,SF,94121,B07,14,7223,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7734572244074, -122.485260561331)",121870035-KM15 +121060017,E01,12034987,Medical Incident,04/15/2012,04/14/2012,04/15/2012 12:49:31 AM,04/15/2012 12:49:31 AM,04/15/2012 12:49:31 AM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Other,04/15/2012 01:01:16 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",121060017-E01 +123020059,B10,12100047,Alarms,10/28/2012,10/27/2012,10/28/2012 02:39:52 AM,10/28/2012 02:40:01 AM,10/28/2012 02:40:13 AM,10/28/2012 02:42:32 AM,10/28/2012 02:48:35 AM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/28/2012 02:56:45 AM,1000 Block of GILMAN AVE,SF,94124,B10,17,6611,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7187222856771, -122.389118324965)",123020059-B10 +130940401,85,13031645,Medical Incident,04/04/2013,04/04/2013,04/04/2013 11:36:59 PM,04/04/2013 11:43:42 PM,04/04/2013 11:43:56 PM,04/04/2013 11:45:07 PM,04/04/2013 11:55:38 PM,04/05/2013 12:19:56 AM,04/05/2013 12:26:22 AM,Code 2 Transport,04/05/2013 12:50:40 AM,2500 Block of GEARY BLVD,SF,94115,B05,10,4365,3,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.782740607461, -122.445203077158)",130940401-85 +160892410,KM12,16035384,Medical Incident,03/29/2016,03/29/2016,03/29/2016 03:26:35 PM,03/29/2016 03:28:14 PM,03/29/2016 03:28:30 PM,03/29/2016 03:29:01 PM,03/29/2016 03:34:07 PM,03/29/2016 03:53:03 PM,03/29/2016 04:17:47 PM,Code 2 Transport,03/29/2016 04:58:14 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160892410-KM12 +111410280,E06,11046944,Other,05/21/2011,05/21/2011,05/21/2011 06:49:14 PM,05/21/2011 06:50:43 PM,05/21/2011 06:51:32 PM,05/21/2011 06:52:35 PM,05/21/2011 06:57:05 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,Other,05/21/2011 07:07:32 PM,0 Block of MUSEUM WAY,SF,94114,B05,6,5175,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7645174149932, -122.440219513694)",111410280-E06 +160891280,53,16035287,Medical Incident,03/29/2016,03/29/2016,03/29/2016 10:33:21 AM,03/29/2016 10:33:42 AM,03/29/2016 10:34:04 AM,03/29/2016 10:34:15 AM,03/29/2016 10:44:01 AM,03/29/2016 11:08:35 AM,03/29/2016 11:45:24 AM,Code 2 Transport,03/29/2016 12:35:07 PM,0 Block of SAN PABLO AVE,San Francisco,94127,B08,39,8565,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.73959485255, -122.462100133243)",160891280-53 +140240108,T08,14008115,Medical Incident,01/24/2014,01/24/2014,01/24/2014 09:10:31 AM,01/24/2014 09:11:33 AM,01/24/2014 09:11:56 AM,01/24/2014 09:13:25 AM,01/24/2014 09:15:25 AM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/24/2014 09:24:59 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,,3,3,false,Potentially Life-Threatening,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",140240108-T08 +160783539,85,16031172,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:15:51 PM,03/18/2016 08:17:43 PM,03/18/2016 08:17:59 PM,03/18/2016 08:18:19 PM,03/18/2016 08:23:11 PM,03/18/2016 08:36:06 PM,03/18/2016 08:43:15 PM,Code 2 Transport,03/18/2016 09:24:05 PM,2000 Block of POLK ST,San Francisco,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",160783539-85 +160333345,76,16013159,Medical Incident,02/02/2016,02/02/2016,02/02/2016 09:27:54 PM,02/02/2016 09:28:50 PM,02/02/2016 09:29:28 PM,02/02/2016 09:29:37 PM,02/02/2016 09:34:45 PM,02/02/2016 09:55:59 PM,02/02/2016 10:04:08 PM,Code 2 Transport,02/02/2016 10:46:27 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160333345-76 +160363091,62,16014374,Medical Incident,02/05/2016,02/05/2016,02/05/2016 05:52:28 PM,02/05/2016 05:54:44 PM,02/05/2016 05:55:29 PM,02/05/2016 05:55:41 PM,02/05/2016 06:20:11 PM,02/05/2016 06:48:08 PM,02/05/2016 07:10:12 PM,Code 2 Transport,02/05/2016 07:49:11 PM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",160363091-62 +111950274,72,11064452,Medical Incident,07/14/2011,07/14/2011,07/14/2011 05:40:03 PM,07/14/2011 05:40:37 PM,07/14/2011 05:41:37 PM,07/14/2011 05:41:46 PM,04/25/2016 02:03:40 PM,07/14/2011 06:06:17 PM,07/14/2011 06:25:33 PM,Code 2 Transport,07/14/2011 06:49:34 PM,100 Block of CORA ST,SF,94134,B09,44,6253,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.710878454701, -122.409122191393)",111950274-72 +110490067,87,11016096,Medical Incident,02/18/2011,02/17/2011,02/18/2011 06:51:29 AM,02/18/2011 06:52:28 AM,02/18/2011 06:53:45 AM,02/18/2011 06:53:54 AM,02/18/2011 06:56:28 AM,02/18/2011 07:36:05 AM,02/18/2011 07:43:09 AM,Code 2 Transport,02/18/2011 07:54:41 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",110490067-87 +122060087,T07,12068411,Alarms,07/24/2012,07/24/2012,07/24/2012 08:47:20 AM,07/24/2012 08:47:20 AM,07/24/2012 08:48:32 AM,07/24/2012 08:49:55 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 08:50:59 AM,17TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7635716035073, -122.41733240732)",122060087-T07 +102910361,T14,10092957,Alarms,10/18/2010,10/18/2010,10/18/2010 09:58:26 PM,10/18/2010 09:59:58 PM,10/18/2010 10:00:19 PM,10/18/2010 10:02:31 PM,10/18/2010 10:04:40 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/18/2010 10:12:05 PM,3500 Block of BALBOA ST,SF,94121,B07,34,7254,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.775684774254, -122.496784770232)",102910361-T14 +132440358,E31,13082504,Medical Incident,09/01/2013,09/01/2013,09/01/2013 10:08:47 PM,09/01/2013 10:12:27 PM,09/01/2013 10:12:43 PM,09/01/2013 10:13:33 PM,09/01/2013 10:16:07 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,No Merit,09/01/2013 10:23:57 PM,500 Block of 3RD AVE,SF,94118,B07,31,7117,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7783106692418, -122.460794716382)",132440358-E31 +160720075,88,16028432,Medical Incident,03/12/2016,03/11/2016,03/12/2016 12:27:27 AM,03/12/2016 12:30:50 AM,03/12/2016 12:31:08 AM,03/12/2016 12:31:20 AM,03/12/2016 12:34:31 AM,03/12/2016 12:52:00 AM,03/12/2016 01:10:52 AM,Code 2 Transport,03/12/2016 01:55:52 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160720075-88 +133550071,AP,13120570,Other,12/21/2013,12/20/2013,12/21/2013 04:57:19 AM,12/21/2013 04:57:19 AM,12/21/2013 04:57:19 AM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Fire,12/21/2013 04:57:42 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",133550071-AP +132650343,T01,13090039,Structure Fire,09/22/2013,09/22/2013,09/22/2013 08:15:11 PM,09/22/2013 08:16:56 PM,09/22/2013 08:17:05 PM,09/22/2013 08:18:12 PM,09/22/2013 08:20:32 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/22/2013 08:35:12 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",132650343-T01 +103080294,AM08,10098776,Medical Incident,11/04/2010,11/04/2010,11/04/2010 04:50:41 PM,11/04/2010 04:51:43 PM,11/04/2010 04:52:48 PM,11/04/2010 04:53:29 PM,11/04/2010 04:54:37 PM,11/04/2010 05:23:17 PM,11/04/2010 05:27:32 PM,Code 2 Transport,11/04/2010 06:07:30 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,PRIVATE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",103080294-AM08 +160690423,79,16027336,Medical Incident,03/09/2016,03/08/2016,03/09/2016 05:42:35 AM,03/09/2016 05:42:35 AM,03/09/2016 05:43:09 AM,03/09/2016 05:43:17 AM,03/09/2016 06:06:02 AM,03/09/2016 06:06:04 AM,03/09/2016 06:10:43 AM,Code 2 Transport,03/09/2016 06:39:40 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160690423-79 +110090025,E13,11002865,Alarms,01/09/2011,01/08/2011,01/09/2011 01:26:47 AM,01/09/2011 01:27:18 AM,01/09/2011 01:27:34 AM,01/09/2011 01:29:17 AM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/09/2011 01:32:09 AM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",110090025-E13 +160272812,KM02,16010782,Medical Incident,01/27/2016,01/27/2016,01/27/2016 05:01:19 PM,01/27/2016 05:03:18 PM,01/27/2016 05:04:48 PM,01/27/2016 05:05:10 PM,01/27/2016 05:16:03 PM,01/27/2016 05:28:42 PM,01/27/2016 05:57:06 PM,Code 2 Transport,01/27/2016 06:50:38 PM,GOLDEN GATE AV/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",160272812-KM02 +112900273,94,11096275,Medical Incident,10/17/2011,10/17/2011,10/17/2011 03:36:11 PM,10/17/2011 03:36:53 PM,10/17/2011 03:39:43 PM,10/17/2011 03:40:05 PM,04/25/2016 02:02:07 PM,10/17/2011 03:56:19 PM,10/17/2011 04:18:04 PM,Code 2 Transport,10/17/2011 04:44:31 PM,3600 Block of BALBOA ST,SF,94121,B07,34,7254,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",112900273-94 +71300108,T09,7037405,Alarms,05/10/2007,05/10/2007,05/10/2007 09:33:41 AM,05/10/2007 09:36:11 AM,05/10/2007 09:36:24 AM,05/10/2007 09:38:09 AM,05/10/2007 09:46:21 AM,04/25/2016 03:39:31 PM,04/25/2016 03:39:31 PM,Other,05/10/2007 09:49:38 AM,0 Block of OLIVER ST,SF,94112,B09,33,6212,3,3,3,true,,1,TRUCK,1,9,11,Excelsior,"(37.7089141999968, -122.450236359264)",071300108-T09 +111590281,75,11052664,Medical Incident,06/08/2011,06/08/2011,06/08/2011 06:30:41 PM,06/08/2011 06:34:38 PM,06/08/2011 06:34:59 PM,06/08/2011 06:35:13 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/08/2011 06:43:51 PM,800 Block of 39TH AVE,SF,94121,B07,34,7261,3,3,3,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7728149712601, -122.499320036214)",111590281-75 +160630885,61,16024988,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:46:18 AM,03/03/2016 08:48:28 AM,03/03/2016 08:48:44 AM,03/03/2016 08:49:09 AM,03/03/2016 09:07:06 AM,03/03/2016 09:48:08 AM,03/03/2016 09:57:48 AM,Code 2 Transport,03/03/2016 10:53:41 AM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",160630885-61 +102640174,T16,10083539,Structure Fire,09/21/2010,09/21/2010,09/21/2010 12:46:11 PM,09/21/2010 12:47:37 PM,09/21/2010 12:47:44 PM,09/21/2010 12:49:15 PM,09/21/2010 12:51:33 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 12:59:09 PM,3700 Block of FILLMORE ST,SF,94123,B04,16,3556,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.8048946040758, -122.437315946974)",102640174-T16 +160670207,AM18,16026578,Medical Incident,03/07/2016,03/06/2016,03/07/2016 03:07:01 AM,03/07/2016 03:07:52 AM,03/07/2016 03:08:11 AM,03/07/2016 03:08:49 AM,03/07/2016 03:16:07 AM,03/07/2016 03:29:09 AM,03/07/2016 03:36:39 AM,Code 2 Transport,03/07/2016 04:12:48 AM,300 Block of BAY SHORE BLVD,San Francisco,94110,B10,42,6374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",160670207-AM18 +160341640,KM05,16013374,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:34:39 PM,02/03/2016 12:36:15 PM,02/03/2016 12:37:45 PM,02/03/2016 12:37:45 PM,02/03/2016 12:49:19 PM,02/03/2016 01:17:19 PM,02/03/2016 01:38:06 PM,Code 2 Transport,02/03/2016 02:38:38 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160341640-KM05 +160564049,89,16022562,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:52:40 PM,02/25/2016 10:52:40 PM,02/25/2016 10:53:16 PM,02/25/2016 10:53:26 PM,02/25/2016 11:16:33 PM,02/25/2016 11:16:34 PM,02/25/2016 11:42:42 PM,Code 2 Transport,02/26/2016 12:04:13 AM,800 Block of BAY ST,San Francisco,94109,B01,28,1614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8047317256533, -122.421008558013)",160564049-89 +120930191,D3,12030810,Structure Fire,04/02/2012,04/02/2012,04/02/2012 01:05:44 PM,04/02/2012 01:06:36 PM,04/02/2012 01:06:48 PM,04/02/2012 01:08:32 PM,04/02/2012 01:09:26 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Fire,04/02/2012 01:23:19 PM,1500 Block of FOLSOM ST,SF,94103,B02,36,5121,3,3,3,false,Fire,1,CHIEF,2,2,6,Mission,"(37.7716700767604, -122.414328770789)",120930191-D3 +112330318,B04,11077064,Structure Fire,08/21/2011,08/21/2011,08/21/2011 07:37:27 PM,08/21/2011 07:38:16 PM,08/21/2011 07:38:29 PM,08/21/2011 07:42:08 PM,08/21/2011 07:42:10 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/21/2011 07:58:54 PM,600 Block of LARCH ST,SF,94115,B02,5,3426,3,3,3,false,,1,CHIEF,8,2,5,Western Addition,"(37.7815345081004, -122.428135307501)",112330318-B04 +132290375,93,13077461,Medical Incident,08/17/2013,08/17/2013,08/17/2013 09:39:35 PM,08/17/2013 09:41:37 PM,08/17/2013 09:41:58 PM,08/17/2013 09:42:48 PM,08/17/2013 09:54:25 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Unable to Locate,08/17/2013 09:58:55 PM,0 Block of TELEGRAPH HILL BLVD,SF,94133,B01,28,1253,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8022505061483, -122.405471739992)",132290375-93 +120520348,81,12017322,Medical Incident,02/21/2012,02/21/2012,02/21/2012 09:27:42 PM,02/21/2012 09:29:54 PM,02/21/2012 09:31:05 PM,02/21/2012 09:31:13 PM,02/21/2012 09:38:56 PM,04/25/2016 02:00:01 PM,04/25/2016 02:00:01 PM,Patient Declined Transport,02/21/2012 10:27:53 PM,1500 Block of SHAFTER AVE,SF,94124,B10,17,6547,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.730553557091, -122.389751029234)",120520348-81 +133000066,E03,13101847,Medical Incident,10/27/2013,10/26/2013,10/27/2013 03:04:17 AM,10/27/2013 03:08:50 AM,10/27/2013 03:10:09 AM,10/27/2013 03:12:12 AM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/27/2013 03:13:58 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",133000066-E03 +122230286,92,12074019,Medical Incident,08/10/2012,08/10/2012,08/10/2012 05:34:44 PM,08/10/2012 05:36:28 PM,08/10/2012 05:37:24 PM,08/10/2012 05:37:48 PM,08/10/2012 05:50:25 PM,08/10/2012 06:11:01 PM,08/10/2012 06:41:10 PM,Code 2 Transport,08/10/2012 07:01:28 PM,3200 Block of VAN NESS AVE,SF,94109,B04,28,3143,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.805550799113, -122.425219186379)",122230286-92 +103040123,86,10097077,Medical Incident,10/31/2010,10/30/2010,10/31/2010 06:08:16 AM,10/31/2010 06:08:53 AM,10/31/2010 06:09:43 AM,10/31/2010 06:09:59 AM,10/31/2010 06:18:54 AM,10/31/2010 06:34:51 AM,04/25/2016 02:07:50 PM,Code 2 Transport,10/31/2010 07:12:13 AM,700 Block of 35TH AVE,SF,94121,B07,34,7252,3,3,3,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7748832270511, -122.495037870754)",103040123-86 +140430107,KM14,14014549,Medical Incident,02/12/2014,02/12/2014,02/12/2014 09:56:08 AM,02/12/2014 09:56:46 AM,02/12/2014 09:56:56 AM,02/12/2014 09:58:02 AM,02/12/2014 10:01:14 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Patient Declined Transport,02/12/2014 10:04:37 AM,1800 Block of IRVING ST,SF,94122,B08,22,7424,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.763591973361, -122.477686297417)",140430107-KM14 +132600114,AM16,13087908,Medical Incident,09/17/2013,09/17/2013,09/17/2013 08:22:05 AM,09/17/2013 08:22:48 AM,09/17/2013 08:23:30 AM,09/17/2013 08:24:06 AM,09/17/2013 08:27:55 AM,09/17/2013 08:40:50 AM,09/17/2013 08:54:57 AM,Code 2 Transport,09/17/2013 09:21:59 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",132600114-AM16 +123330004,92,12110507,Medical Incident,11/28/2012,11/27/2012,11/28/2012 12:07:08 AM,11/28/2012 12:09:47 AM,11/28/2012 12:10:07 AM,11/28/2012 12:11:01 AM,11/28/2012 12:17:24 AM,11/28/2012 12:37:38 AM,11/28/2012 01:06:57 AM,Code 2 Transport,11/28/2012 01:02:53 AM,500 Block of 27TH ST,SF,94131,B06,11,5553,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7464538550572, -122.432847009979)",123330004-92 +160372073,AM06,16014716,Medical Incident,02/06/2016,02/06/2016,02/06/2016 01:37:43 PM,02/06/2016 01:37:43 PM,02/06/2016 01:47:07 PM,02/06/2016 01:47:25 PM,02/06/2016 01:57:20 PM,02/06/2016 02:09:51 PM,02/06/2016 02:15:21 PM,Code 2 Transport,02/06/2016 02:50:43 PM,1400 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",160372073-AM06 +121910019,E13,12063453,Structure Fire,07/09/2012,07/08/2012,07/09/2012 02:11:59 AM,07/09/2012 02:12:57 AM,07/09/2012 02:13:26 AM,07/09/2012 02:14:57 AM,07/09/2012 02:58:55 AM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 03:01:16 AM,500 Block of FILBERT ST,SF,94133,B01,28,1265,3,3,3,true,Fire,1,ENGINE,9,1,3,North Beach,"(37.8014938580961, -122.407940275839)",121910019-E13 +111240247,RC1,11041022,Medical Incident,05/04/2011,05/04/2011,05/04/2011 02:49:11 PM,05/04/2011 02:49:45 PM,05/04/2011 02:50:14 PM,04/25/2016 02:04:47 PM,05/04/2011 02:52:47 PM,04/25/2016 02:04:47 PM,04/25/2016 02:04:47 PM,Other,05/04/2011 03:07:53 PM,LEAVENWORTH ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,RESCUE CAPTAIN,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",111240247-RC1 +111130249,T03,11037392,Elevator / Escalator Rescue,04/23/2011,04/23/2011,04/23/2011 04:41:49 PM,04/23/2011 04:43:38 PM,04/23/2011 04:43:55 PM,04/23/2011 04:45:45 PM,04/23/2011 04:46:40 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/23/2011 05:08:05 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",111130249-T03 +122850352,82,12094417,Medical Incident,10/11/2012,10/11/2012,10/11/2012 09:10:53 PM,10/11/2012 09:11:14 PM,10/11/2012 09:11:34 PM,10/11/2012 09:12:06 PM,10/11/2012 09:22:38 PM,10/11/2012 09:37:39 PM,10/11/2012 09:47:56 PM,Code 2 Transport,10/11/2012 10:16:03 PM,300 Block of EDINBURGH ST,SF,94112,B09,43,6133,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7235920979291, -122.430301878327)",122850352-82 +112220113,54,11073274,Medical Incident,08/10/2011,08/10/2011,08/10/2011 10:14:58 AM,08/10/2011 10:16:29 AM,08/10/2011 10:16:52 AM,08/10/2011 10:17:03 AM,08/10/2011 10:22:48 AM,08/10/2011 10:27:50 AM,08/10/2011 10:45:34 AM,Code 2 Transport,08/10/2011 11:14:36 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",112220113-54 +112980263,68,11098918,Medical Incident,10/25/2011,10/25/2011,10/25/2011 04:21:34 PM,10/25/2011 04:21:35 PM,10/25/2011 04:23:07 PM,10/25/2011 04:25:24 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 04:27:15 PM,BRYANT ST/16TH ST,SF,94110,B02,29,5241,2,2,2,true,,1,MEDIC,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",112980263-68 +160103477,62,16004203,Medical Incident,01/10/2016,01/10/2016,01/10/2016 10:35:57 PM,01/10/2016 10:35:57 PM,01/10/2016 10:36:14 PM,01/10/2016 10:36:20 PM,01/10/2016 10:43:03 PM,01/10/2016 10:52:17 PM,01/10/2016 10:56:13 PM,Code 2 Transport,01/10/2016 11:33:42 PM,3100 Block of WEBSTER ST,San Francisco,94123,B04,16,3461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.799403168775, -122.434203435941)",160103477-62 +131980042,RS2,13067037,Structure Fire,07/17/2013,07/16/2013,07/17/2013 06:41:00 AM,07/17/2013 06:42:15 AM,07/17/2013 06:42:44 AM,07/17/2013 06:45:44 AM,07/17/2013 06:46:29 AM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/17/2013 06:49:27 AM,CESAR CHAVEZ ST/BAYSHORE BL,SF,94110,B10,9,2626,3,3,3,false,Alarm,1,RESCUE SQUAD,4,6,9,Bernal Heights,"(37.7489710482463, -122.405626953003)",131980042-RS2 +111200230,E22,11039616,Structure Fire,04/30/2011,04/30/2011,04/30/2011 02:37:26 PM,04/30/2011 02:37:27 PM,04/30/2011 02:38:32 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 02:41:05 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,true,,1,ENGINE,4,8,5,Inner Sunset,"(37.7632029010129, -122.464037930237)",111200230-E22 +121270189,KM15,12042277,Medical Incident,05/06/2012,05/06/2012,05/06/2012 02:01:31 PM,05/06/2012 02:04:25 PM,05/06/2012 02:04:48 PM,05/06/2012 02:05:23 PM,05/06/2012 02:15:10 PM,05/06/2012 02:20:17 PM,05/06/2012 02:30:55 PM,Code 2 Transport,05/06/2012 02:54:32 PM,GREAT HY/JOHN F KENNEDY DR,SF,94122,B08,23,7722,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7704356758824, -122.510925945877)",121270189-KM15 +160902799,53,16035803,Medical Incident,03/30/2016,03/30/2016,03/30/2016 04:45:28 PM,03/30/2016 04:47:09 PM,03/30/2016 04:47:32 PM,03/30/2016 04:47:54 PM,03/30/2016 04:52:49 PM,03/30/2016 05:07:52 PM,03/30/2016 05:18:39 PM,Code 2 Transport,03/30/2016 06:03:06 PM,2500 Block of 19TH ST,San Francisco,94110,B10,7,5427,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.760685936082, -122.407570201357)",160902799-53 +120790020,E06,12026100,Alarms,03/19/2012,03/18/2012,03/19/2012 02:37:02 AM,03/19/2012 02:41:02 AM,03/19/2012 02:41:12 AM,03/19/2012 02:42:46 AM,03/19/2012 02:45:52 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 03:00:38 AM,200 Block of FILLMORE ST,SF,94117,B05,6,3526,3,3,3,true,Alarm,1,ENGINE,3,5,5,Hayes Valley,"(37.7718667121551, -122.430462821161)",120790020-E06 +160311933,88,16012176,Medical Incident,01/31/2016,01/31/2016,01/31/2016 01:54:57 PM,01/31/2016 01:55:28 PM,01/31/2016 01:56:44 PM,01/31/2016 01:56:48 PM,01/31/2016 02:01:05 PM,01/31/2016 02:22:26 PM,01/31/2016 02:24:43 PM,Code 2 Transport,01/31/2016 03:11:16 PM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",160311933-88 +103020113,E03,10096433,Medical Incident,10/29/2010,10/29/2010,10/29/2010 10:36:58 AM,10/29/2010 10:38:13 AM,10/29/2010 10:39:18 AM,10/29/2010 10:39:50 AM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/29/2010 10:40:35 AM,VAN NESS AV/POST ST,SF,94109,B04,3,3161,3,2,2,true,,1,ENGINE,2,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",103020113-E03 +121170328,E31,12038903,Medical Incident,04/26/2012,04/26/2012,04/26/2012 08:45:26 PM,04/26/2012 08:47:12 PM,04/26/2012 08:47:27 PM,04/26/2012 08:48:29 PM,04/26/2012 08:51:18 PM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,Other,04/26/2012 08:51:39 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",121170328-E31 +121720100,E08,12057043,Medical Incident,06/20/2012,06/20/2012,06/20/2012 09:24:49 AM,06/20/2012 09:25:09 AM,06/20/2012 09:25:21 AM,06/20/2012 09:26:56 AM,06/20/2012 09:28:50 AM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,Other,06/20/2012 09:41:08 AM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",121720100-E08 +131970324,E18,13066941,Medical Incident,07/16/2013,07/16/2013,07/16/2013 07:39:38 PM,07/16/2013 07:40:19 PM,07/16/2013 07:40:33 PM,07/16/2013 07:41:30 PM,07/16/2013 07:44:10 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Medical Examiner,07/16/2013 08:06:46 PM,2400 Block of TARAVAL ST,SF,94116,B08,18,7546,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7423741797947, -122.492306247956)",131970324-E18 +113250243,E06,11107980,Medical Incident,11/21/2011,11/21/2011,11/21/2011 03:13:09 PM,11/21/2011 03:14:03 PM,11/21/2011 03:14:26 PM,11/21/2011 03:16:08 PM,11/21/2011 03:19:43 PM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,Other,11/21/2011 03:37:48 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",113250243-E06 +120320147,E14,12010540,Medical Incident,02/01/2012,02/01/2012,02/01/2012 11:37:18 AM,02/01/2012 11:37:49 AM,02/01/2012 11:38:06 AM,02/01/2012 11:38:26 AM,02/01/2012 11:39:24 AM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 11:54:12 AM,300 Block of 30TH AVE,SF,94121,B07,14,7227,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7827045726487, -122.490366876901)",120320147-E14 +122900122,T11,12095921,Medical Incident,10/16/2012,10/16/2012,10/16/2012 09:37:15 AM,10/16/2012 09:39:08 AM,10/16/2012 09:39:15 AM,10/16/2012 09:40:25 AM,10/16/2012 09:42:40 AM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/16/2012 09:51:48 AM,VALLEY ST/SANCHEZ ST,SF,94131,B06,11,5564,2,2,2,false,Potentially Life-Threatening,1,TRUCK,1,6,8,Noe Valley,"(37.7443632395525, -122.428959474009)",122900122-T11 +160910895,65,16036002,Medical Incident,03/31/2016,03/31/2016,03/31/2016 09:14:42 AM,03/31/2016 09:15:52 AM,03/31/2016 09:16:10 AM,03/31/2016 09:16:18 AM,03/31/2016 09:26:07 AM,03/31/2016 09:55:53 AM,03/31/2016 10:12:34 AM,Code 2 Transport,03/31/2016 10:53:29 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160910895-65 +122090234,54,12069489,Medical Incident,07/27/2012,07/27/2012,07/27/2012 04:16:24 PM,07/27/2012 04:19:41 PM,07/27/2012 04:21:59 PM,07/27/2012 04:22:05 PM,07/27/2012 04:37:21 PM,07/27/2012 04:57:27 PM,07/27/2012 05:16:03 PM,Code 2 Transport,07/27/2012 05:40:19 PM,1400 Block of SOUTH VAN NESS AVE,SF,94110,B06,11,5534,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7499674756402, -122.416100108389)",122090234-54 +111670046,E05,11055017,Medical Incident,06/16/2011,06/15/2011,06/16/2011 05:38:30 AM,06/16/2011 05:39:49 AM,06/16/2011 05:40:40 AM,04/25/2016 02:04:08 PM,06/16/2011 05:43:24 AM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/16/2011 05:45:09 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",111670046-E05 +160761802,56,16030144,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:48:49 PM,03/16/2016 12:49:01 PM,03/16/2016 12:49:14 PM,03/16/2016 12:49:44 PM,03/16/2016 12:52:40 PM,03/16/2016 01:03:36 PM,03/16/2016 01:13:28 PM,Code 2 Transport,03/16/2016 02:17:14 PM,15TH ST/SOUTH VAN NESS AV,San Francisco,94103,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7668052440942, -122.417645453705)",160761802-56 +111230124,67,11040578,Medical Incident,05/03/2011,05/03/2011,05/03/2011 09:34:21 AM,05/03/2011 09:35:26 AM,05/03/2011 09:35:56 AM,05/03/2011 09:36:07 AM,05/03/2011 10:04:39 AM,05/03/2011 10:05:26 AM,05/03/2011 10:36:56 AM,Code 2 Transport,05/03/2011 11:03:25 AM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.772815434744, -122.41598356737)",111230124-67 +130010219,54,13000159,Medical Incident,01/01/2013,12/31/2012,01/01/2013 03:48:19 AM,01/01/2013 03:49:13 AM,01/01/2013 03:51:21 AM,01/01/2013 03:52:28 AM,01/01/2013 03:57:06 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,No Merit,01/01/2013 04:21:35 AM,2500 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7294531060335, -122.404280402051)",130010219-54 +123530301,58,12118197,Structure Fire,12/18/2012,12/18/2012,12/18/2012 05:37:53 PM,12/18/2012 05:38:50 PM,12/18/2012 05:39:09 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 05:47:06 PM,1600 Block of CABRILLO ST,SF,94121,B07,31,7166,3,3,3,true,Alarm,1,MEDIC,5,7,1,Outer Richmond,"(37.7747485859842, -122.476286291215)",123530301-58 +140480323,B04,14016477,Alarms,02/17/2014,02/17/2014,02/17/2014 09:54:29 PM,02/17/2014 09:55:28 PM,02/17/2014 09:55:50 PM,02/17/2014 09:57:11 PM,02/17/2014 09:59:36 PM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,Fire,02/17/2014 10:06:21 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",140480323-B04 +121210183,B09,12040184,Alarms,04/30/2012,04/30/2012,04/30/2012 01:35:29 PM,04/30/2012 01:35:56 PM,04/30/2012 01:36:12 PM,04/30/2012 01:36:32 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 01:42:11 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,CHIEF,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",121210183-B09 +130930228,81,13031170,Medical Incident,04/03/2013,04/03/2013,04/03/2013 03:09:07 PM,04/03/2013 03:10:52 PM,04/03/2013 03:11:13 PM,04/03/2013 03:11:24 PM,04/03/2013 03:21:40 PM,04/03/2013 03:27:44 PM,04/25/2016 01:53:30 PM,Code 2 Transport,04/03/2013 04:02:31 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",130930228-81 +123560030,E16,12119009,Structure Fire,12/21/2012,12/20/2012,12/21/2012 01:53:27 AM,12/21/2012 01:53:27 AM,12/21/2012 01:53:36 AM,12/21/2012 01:55:30 AM,12/21/2012 01:56:35 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Fire,12/21/2012 01:56:40 AM,PIERCE ST/GREENWICH ST,SF,94123,B04,16,3656,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7985333270748, -122.439156219009)",123560030-E16 +140700170,E09,14023598,Structure Fire,03/11/2014,03/11/2014,03/11/2014 12:29:41 PM,03/11/2014 12:29:41 PM,03/11/2014 12:30:02 PM,03/11/2014 12:31:37 PM,03/11/2014 12:33:18 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Fire,03/11/2014 12:39:56 PM,2600 Block of 25TH ST,SAN FRANCISCO,94110,B10,9,2624,3,3,3,true,Alarm,1,ENGINE,1,10,10,Mission,"(37.75176116963, -122.404719532996)",140700170-E09 +140970330,E44,14032784,Medical Incident,04/07/2014,04/07/2014,04/07/2014 05:12:15 PM,04/07/2014 05:13:08 PM,04/07/2014 05:14:16 PM,04/07/2014 05:14:16 PM,04/07/2014 05:16:36 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Code 3 Transport,04/07/2014 05:51:13 PM,1400 Block of PALOU AVE,SAN FRANCISCO,94124,B10,17,6551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323435109332, -122.388141018741)",140970330-E44 +132870067,T07,13097522,Alarms,10/14/2013,10/13/2013,10/14/2013 06:41:41 AM,10/14/2013 06:43:27 AM,10/14/2013 06:43:41 AM,10/14/2013 06:45:58 AM,10/14/2013 06:48:57 AM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 06:53:35 AM,200 Block of KANSAS ST,SF,94103,B02,29,2353,3,3,3,false,Alarm,1,TRUCK,2,2,10,Mission Bay,"(37.7666628176846, -122.403770313617)",132870067-T07 +120950204,E07,12031490,Medical Incident,04/04/2012,04/04/2012,04/04/2012 03:32:11 PM,04/04/2012 03:32:36 PM,04/04/2012 03:32:59 PM,04/04/2012 03:33:50 PM,04/04/2012 03:36:09 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 03:36:32 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",120950204-E07 +123060201,60,12101664,Medical Incident,11/01/2012,11/01/2012,11/01/2012 01:43:07 PM,11/01/2012 01:44:02 PM,11/01/2012 01:47:35 PM,11/01/2012 01:57:29 PM,11/01/2012 02:00:17 PM,11/01/2012 02:14:49 PM,11/01/2012 02:24:08 PM,Code 2 Transport,11/01/2012 02:57:34 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",123060201-60 +113610214,E12,11119975,Medical Incident,12/27/2011,12/27/2011,12/27/2011 04:04:21 PM,12/27/2011 04:04:44 PM,12/27/2011 04:05:00 PM,12/27/2011 04:06:48 PM,12/27/2011 04:10:52 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 04:46:00 PM,1700 Block of OAK ST,SF,94117,B05,21,4524,3,E,3,true,,1,ENGINE,3,5,5,Golden Gate Park,"(37.7718274800356, -122.448146140288)",113610214-E12 +160553946,75,16022168,Medical Incident,02/24/2016,02/24/2016,02/24/2016 09:46:01 PM,02/24/2016 09:46:56 PM,02/24/2016 09:47:50 PM,02/24/2016 09:48:00 PM,02/24/2016 09:56:36 PM,02/24/2016 10:12:37 PM,02/24/2016 10:50:57 PM,Code 2 Transport,02/24/2016 11:23:15 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160553946-75 +160060072,85,16002219,Medical Incident,01/06/2016,01/05/2016,01/06/2016 12:35:30 AM,01/06/2016 12:37:11 AM,01/06/2016 12:37:43 AM,01/06/2016 12:37:55 AM,01/06/2016 12:41:23 AM,01/06/2016 12:50:47 AM,01/06/2016 01:03:23 AM,Code 2 Transport,01/06/2016 01:32:52 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",160060072-85 +123600061,KM12,12120412,Medical Incident,12/25/2012,12/25/2012,12/25/2012 08:09:20 AM,12/25/2012 08:10:31 AM,12/25/2012 08:10:54 AM,12/25/2012 08:11:34 AM,12/25/2012 08:16:01 AM,12/25/2012 08:31:46 AM,12/25/2012 08:56:39 AM,Code 2 Transport,12/25/2012 09:08:57 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",123600061-KM12 +160840995,52,16033297,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:09:05 AM,03/24/2016 09:09:05 AM,03/24/2016 09:10:21 AM,03/24/2016 09:10:33 AM,03/24/2016 09:24:46 AM,03/24/2016 09:39:25 AM,03/24/2016 09:53:38 AM,Code 2 Transport,03/24/2016 10:35:49 AM,400 Block of BLK COLUMBUS AV,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7984593845717, -122.407835265258)",160840995-52 +113600089,E08,11119572,Outside Fire,12/26/2011,12/26/2011,12/26/2011 09:10:46 AM,12/26/2011 09:11:19 AM,12/26/2011 09:11:27 AM,12/26/2011 09:13:00 AM,12/26/2011 09:15:50 AM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Fire,12/26/2011 09:20:52 AM,1ST ST/HARRISON ST,SF,94105,B03,35,2136,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860675314585, -122.392936686281)",113600089-E08 +102830002,74,10089915,Medical Incident,10/10/2010,10/09/2010,10/10/2010 12:00:26 AM,10/10/2010 12:01:28 AM,10/10/2010 12:01:38 AM,10/10/2010 12:04:08 AM,10/10/2010 12:09:21 AM,10/10/2010 12:26:11 AM,10/10/2010 12:37:00 AM,Code 2 Transport,10/10/2010 12:51:06 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",102830002-74 +123220290,E01,12107139,Medical Incident,11/17/2012,11/17/2012,11/17/2012 04:57:23 PM,11/17/2012 04:58:17 PM,11/17/2012 04:59:22 PM,11/17/2012 05:04:19 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 05:04:53 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",123220290-E01 +132810081,94,13095526,Medical Incident,10/08/2013,10/07/2013,10/08/2013 07:40:02 AM,10/08/2013 07:40:51 AM,10/08/2013 07:41:10 AM,10/08/2013 07:41:33 AM,10/08/2013 07:45:21 AM,10/08/2013 08:02:33 AM,10/08/2013 08:37:47 AM,Code 2 Transport,10/08/2013 09:12:14 AM,1400 Block of NEWCOMB AVE,SF,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",132810081-94 +120850031,E01,12028109,Medical Incident,03/25/2012,03/24/2012,03/25/2012 01:57:53 AM,03/25/2012 01:58:45 AM,03/25/2012 01:58:54 AM,03/25/2012 02:00:07 AM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 02:01:04 AM,200 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",120850031-E01 +160160575,88,16006304,Medical Incident,01/16/2016,01/15/2016,01/16/2016 04:56:15 AM,01/16/2016 04:58:45 AM,01/16/2016 04:59:09 AM,01/16/2016 04:59:54 AM,01/16/2016 05:09:36 AM,01/16/2016 05:24:02 AM,01/16/2016 05:29:38 AM,Code 2 Transport,01/16/2016 05:51:53 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160160575-88 +110430416,87,11014459,Medical Incident,02/12/2011,02/12/2011,02/12/2011 09:59:06 PM,02/12/2011 09:59:41 PM,02/12/2011 10:00:05 PM,02/12/2011 10:02:36 PM,02/12/2011 10:10:03 PM,02/12/2011 10:31:02 PM,02/12/2011 10:45:22 PM,Code 2 Transport,02/12/2011 11:14:44 PM,500 Block of NATOMA ST,SF,94103,B03,1,2314,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7788157426427, -122.409325210496)",110430416-87 +130150088,E08,13005043,Medical Incident,01/15/2013,01/15/2013,01/15/2013 09:03:47 AM,01/15/2013 09:10:00 AM,01/15/2013 09:10:42 AM,01/15/2013 09:12:42 AM,01/15/2013 09:18:44 AM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,Other,01/15/2013 09:28:35 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",130150088-E08 +121410400,81,12047032,Medical Incident,05/20/2012,05/20/2012,05/20/2012 07:46:13 PM,05/20/2012 07:49:15 PM,05/20/2012 07:49:28 PM,05/20/2012 07:49:37 PM,05/20/2012 07:56:43 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,Patient Declined Transport,05/20/2012 08:25:42 PM,PACHECO ST/48TH AV,SF,94116,B08,23,7726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7491399727259, -122.507286878321)",121410400-81 +111750157,E24,11057657,Citizen Assist / Service Call,06/24/2011,06/24/2011,06/24/2011 11:48:30 AM,06/24/2011 11:49:57 AM,06/24/2011 11:50:19 AM,04/25/2016 02:04:00 PM,06/24/2011 11:50:58 AM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Fire,06/24/2011 12:01:42 PM,CASTRO ST/24TH ST,SF,94114,B06,24,5521,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7513037332512, -122.434089515984)",111750157-E24 +130500212,B02,13017038,Alarms,02/19/2013,02/19/2013,02/19/2013 05:47:32 PM,02/19/2013 05:49:23 PM,02/19/2013 05:49:33 PM,02/19/2013 05:51:23 PM,02/19/2013 05:54:59 PM,04/25/2016 01:54:13 PM,04/25/2016 01:54:13 PM,Other,02/19/2013 06:01:01 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130500212-B02 +131410085,82,13047698,Medical Incident,05/21/2013,05/21/2013,05/21/2013 08:42:57 AM,05/21/2013 08:43:58 AM,05/21/2013 08:44:20 AM,05/21/2013 08:44:28 AM,05/21/2013 08:51:58 AM,05/21/2013 09:13:06 AM,05/21/2013 09:27:06 AM,Code 2 Transport,05/21/2013 09:48:02 AM,1100 Block of FRANCISCO ST,SF,94109,B01,16,314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,2,Russian Hill,"(37.803363322315, -122.424107741649)",131410085-82 +113570370,77,11118748,Traffic Collision,12/23/2011,12/23/2011,12/23/2011 06:08:07 PM,12/23/2011 06:08:07 PM,12/23/2011 06:08:07 PM,12/23/2011 06:09:54 PM,04/25/2016 02:01:00 PM,12/23/2011 06:33:40 PM,12/23/2011 06:50:03 PM,Code 2 Transport,12/23/2011 07:13:55 PM,17TH ST/POTRERO AV,SF,94110,B02,29,2416,2,2,2,true,,1,MEDIC,2,2,10,Potrero Hill,"(37.764487829529, -122.407419738574)",113570370-77 +111050239,E01,11034814,Medical Incident,04/15/2011,04/15/2011,04/15/2011 04:38:44 PM,04/15/2011 04:38:58 PM,04/15/2011 04:39:11 PM,04/15/2011 04:40:09 PM,04/15/2011 04:43:21 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 04:45:33 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",111050239-E01 +160293432,85,16011571,Medical Incident,01/29/2016,01/29/2016,01/29/2016 09:10:15 PM,01/29/2016 09:11:27 PM,01/29/2016 09:13:37 PM,01/29/2016 09:13:37 PM,01/29/2016 09:22:50 PM,01/29/2016 09:30:56 PM,01/29/2016 09:39:36 PM,Code 2 Transport,01/29/2016 10:16:55 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160293432-85 +102910192,E08,10092811,Medical Incident,10/18/2010,10/18/2010,10/18/2010 12:56:30 PM,10/18/2010 12:57:23 PM,10/18/2010 12:57:58 PM,10/18/2010 12:58:51 PM,10/18/2010 01:01:34 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/18/2010 01:06:15 PM,0 Block of GILBERT ST,SF,94103,B03,8,2311,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7740497389956, -122.403491478866)",102910192-E08 +160501998,53,16020117,Medical Incident,02/19/2016,02/19/2016,02/19/2016 02:12:46 PM,02/19/2016 02:14:18 PM,02/19/2016 02:14:50 PM,02/19/2016 02:15:04 PM,02/19/2016 02:25:25 PM,02/19/2016 02:37:13 PM,02/19/2016 03:12:11 PM,Code 2 Transport,02/19/2016 03:30:52 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160501998-53 +111490244,E07,11049460,Medical Incident,05/29/2011,05/29/2011,05/29/2011 06:30:01 PM,05/29/2011 06:33:26 PM,05/29/2011 06:33:44 PM,05/29/2011 06:34:48 PM,05/29/2011 06:38:25 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 06:44:47 PM,500 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7619448798252, -122.423956468)",111490244-E07 +111530275,E02,11050655,Structure Fire,06/02/2011,06/02/2011,06/02/2011 06:52:02 PM,06/02/2011 06:53:52 PM,06/02/2011 06:54:28 PM,06/02/2011 06:55:40 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/02/2011 07:03:17 PM,1800 Block of THE EMBARCADERO,SF,94133,B01,28,935,3,3,3,true,,1,ENGINE,11,1,3,North Beach,"(37.8088354051007, -122.414108783784)",111530275-E02 +123060182,E44,12101647,Alarms,11/01/2012,11/01/2012,11/01/2012 12:32:32 PM,11/01/2012 12:33:47 PM,11/01/2012 12:33:53 PM,11/01/2012 12:34:54 PM,11/01/2012 12:38:07 PM,04/25/2016 01:56:00 PM,04/25/2016 01:56:00 PM,Other,11/01/2012 12:52:39 PM,200 Block of EXECUTIVE PARK BLVD,SF,94134,B10,44,6275,3,3,3,true,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7111243307685, -122.39173301635)",123060182-E44 +140600254,67,14020317,Medical Incident,03/01/2014,03/01/2014,03/01/2014 04:22:44 PM,03/01/2014 04:22:59 PM,03/01/2014 04:24:19 PM,03/01/2014 04:24:34 PM,03/01/2014 04:26:45 PM,03/01/2014 04:41:21 PM,03/01/2014 05:01:06 PM,Code 2 Transport,03/01/2014 05:19:14 PM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",140600254-67 +111710080,76,11056299,Medical Incident,06/20/2011,06/20/2011,06/20/2011 08:12:43 AM,06/20/2011 08:14:34 AM,06/20/2011 08:15:28 AM,06/20/2011 08:15:42 AM,06/20/2011 08:34:48 AM,06/20/2011 08:44:52 AM,06/20/2011 09:10:34 AM,Code 2 Transport,06/20/2011 09:30:42 AM,300 Block of 4TH ST,SF,94107,B03,8,2216,2,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7810432179334, -122.399833846531)",111710080-76 +131390237,E16,13047041,Medical Incident,05/19/2013,05/19/2013,05/19/2013 01:05:48 PM,05/19/2013 01:06:15 PM,05/19/2013 01:07:13 PM,05/19/2013 01:08:32 PM,05/19/2013 01:15:29 PM,05/19/2013 01:20:25 PM,05/19/2013 01:27:40 PM,Other,05/19/2013 01:53:44 PM,2100 Block of GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7990020385579, -122.435034398467)",131390237-E16 +122560045,57,12084533,Medical Incident,09/12/2012,09/11/2012,09/12/2012 04:32:01 AM,09/12/2012 04:34:40 AM,09/12/2012 04:36:44 AM,09/12/2012 04:37:09 AM,09/12/2012 04:43:32 AM,09/12/2012 05:10:19 AM,09/12/2012 05:24:54 AM,Code 2 Transport,09/12/2012 05:47:40 AM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",122560045-57 +140990112,AM06,14033369,Medical Incident,04/09/2014,04/09/2014,04/09/2014 09:17:32 AM,04/09/2014 09:17:56 AM,04/09/2014 09:18:19 AM,04/09/2014 09:18:53 AM,04/09/2014 09:36:25 AM,04/09/2014 09:43:31 AM,04/09/2014 10:04:22 AM,Code 2 Transport,04/09/2014 10:42:24 AM,700 Block of BRANNAN ST,SAN FRANCISCO,94103,B03,8,2276,,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7742149186174, -122.401830898172)",140990112-AM06 +122260076,T06,12074837,Structure Fire,08/13/2012,08/12/2012,08/13/2012 07:50:46 AM,08/13/2012 07:50:46 AM,08/13/2012 07:50:51 AM,08/13/2012 07:52:33 AM,08/13/2012 07:55:30 AM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 07:55:50 AM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",122260076-T06 +130670051,E41,13022224,Medical Incident,03/08/2013,03/07/2013,03/08/2013 05:04:04 AM,03/08/2013 05:04:04 AM,03/08/2013 05:05:08 AM,03/08/2013 05:07:22 AM,03/08/2013 05:08:41 AM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,No Merit,03/08/2013 05:13:25 AM,1400 Block of JACKSON ST,SF,94109,B01,41,1633,1,1,2,false,Non Life-threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7945147745264, -122.418943712595)",130670051-E41 +160160105,55,16006234,Medical Incident,01/16/2016,01/15/2016,01/16/2016 12:46:57 AM,01/16/2016 12:48:25 AM,01/16/2016 12:48:43 AM,01/16/2016 12:48:55 AM,01/16/2016 12:53:29 AM,01/16/2016 01:07:14 AM,01/16/2016 01:15:37 AM,Code 2 Transport,01/16/2016 01:36:03 AM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",160160105-55 +112910271,AM04,11096630,Medical Incident,10/18/2011,10/18/2011,10/18/2011 03:34:51 PM,10/18/2011 03:36:40 PM,10/18/2011 03:39:00 PM,10/18/2011 03:39:40 PM,04/25/2016 02:02:05 PM,10/18/2011 04:02:22 PM,10/18/2011 04:23:54 PM,Code 2 Transport,10/18/2011 04:56:12 PM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,2,2,false,,1,PRIVATE,3,3,6,South of Market,"(37.7820242662358, -122.401159719509)",112910271-AM04 +123110267,60,12103547,Traffic Collision,11/06/2012,11/06/2012,11/06/2012 03:54:03 PM,11/06/2012 03:54:53 PM,11/06/2012 03:55:05 PM,11/06/2012 03:55:44 PM,11/06/2012 03:58:41 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Patient Declined Transport,11/06/2012 04:41:18 PM,SCOTT ST/CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7882783987172, -122.438773337284)",123110267-60 +120950294,64,12031573,Medical Incident,04/04/2012,04/04/2012,04/04/2012 08:29:35 PM,04/04/2012 08:30:49 PM,04/04/2012 08:31:28 PM,04/04/2012 08:31:36 PM,04/04/2012 08:33:15 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,No Merit,04/04/2012 08:43:14 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",120950294-64 +122990267,87,12099171,Medical Incident,10/25/2012,10/25/2012,10/25/2012 04:43:11 PM,10/25/2012 04:45:37 PM,10/25/2012 04:46:05 PM,04/25/2016 01:56:07 PM,10/25/2012 04:58:11 PM,10/25/2012 05:24:02 PM,10/25/2012 05:43:05 PM,Code 2 Transport,10/25/2012 04:46:09 PM,400 Block of BERRY ST,SF,94107,B03,8,2262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",122990267-87 +160332602,53,16013083,Medical Incident,02/02/2016,02/02/2016,02/02/2016 05:21:20 PM,02/02/2016 05:22:13 PM,02/02/2016 05:22:59 PM,02/02/2016 05:23:06 PM,02/02/2016 05:34:36 PM,02/02/2016 05:41:57 PM,02/02/2016 05:52:49 PM,Code 2 Transport,02/02/2016 06:07:03 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",160332602-53 +112310293,E32,11076373,Medical Incident,08/19/2011,08/19/2011,08/19/2011 07:11:34 PM,08/19/2011 07:13:29 PM,08/19/2011 07:13:59 PM,08/19/2011 07:14:48 PM,08/19/2011 07:16:37 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 07:26:48 PM,100 Block of RICHLAND AVE,SF,94110,B06,32,5632,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.73595384996, -122.423811513859)",112310293-E32 +102260004,E23,10070998,Medical Incident,08/14/2010,08/13/2010,08/14/2010 12:14:43 AM,08/14/2010 12:15:09 AM,08/14/2010 12:15:52 AM,08/14/2010 12:28:25 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 12:31:19 AM,GREAT HY/ULLOA ST,SF,94116,B08,23,7731,2,3,3,false,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7398123853281, -122.506675736076)",102260004-E23 +123120080,E01,12103755,Medical Incident,11/07/2012,11/07/2012,11/07/2012 08:16:19 AM,11/07/2012 08:17:59 AM,11/07/2012 08:18:29 AM,11/07/2012 08:19:40 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 08:21:23 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",123120080-E01 +130560077,89,13018792,Medical Incident,02/25/2013,02/25/2013,02/25/2013 08:26:58 AM,02/25/2013 08:28:02 AM,02/25/2013 08:28:19 AM,02/25/2013 08:28:37 AM,02/25/2013 08:31:44 AM,02/25/2013 08:55:29 AM,02/25/2013 09:26:49 AM,Code 2 Transport,02/25/2013 09:49:44 AM,200 Block of SOUTH HILL BLVD,SF,94112,B09,43,6235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7091771253725, -122.430108132211)",130560077-89 +133600205,T10,13122371,Citizen Assist / Service Call,12/26/2013,12/26/2013,12/26/2013 02:38:27 PM,12/26/2013 02:40:37 PM,12/26/2013 02:40:50 PM,12/26/2013 02:41:14 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 02:43:49 PM,2500 Block of SUTTER ST,SF,94115,B05,10,4262,3,3,3,false,Alarm,1,TRUCK,2,5,5,Japantown,"(37.7848770596387, -122.442348914658)",133600205-T10 +112870068,E08,11095052,Medical Incident,10/14/2011,10/13/2011,10/14/2011 05:19:26 AM,10/14/2011 05:21:25 AM,10/14/2011 05:22:47 AM,10/14/2011 05:25:39 AM,10/14/2011 05:26:56 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 05:35:04 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112870068-E08 +132150047,77,13072485,Medical Incident,08/03/2013,08/02/2013,08/03/2013 02:54:33 AM,08/03/2013 02:56:00 AM,08/03/2013 02:57:02 AM,08/03/2013 02:57:22 AM,08/03/2013 03:15:23 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,No Merit,08/03/2013 03:21:37 AM,27TH ST/GUERRERO ST,SF,94110,B06,11,5551,2,2,2,false,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7471719168985, -122.422383537284)",132150047-77 +130030262,94,13001075,Medical Incident,01/03/2013,01/03/2013,01/03/2013 03:47:02 PM,01/03/2013 03:48:54 PM,01/03/2013 03:50:02 PM,01/03/2013 03:51:02 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 03:53:39 PM,1100 Block of MASON ST,SF,94108,B01,2,1415,1,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7942845562863, -122.411386186498)",130030262-94 +103490201,92,10111939,Medical Incident,12/15/2010,12/15/2010,12/15/2010 02:07:14 PM,12/15/2010 02:07:44 PM,12/15/2010 02:09:10 PM,12/15/2010 02:09:41 PM,12/15/2010 02:11:11 PM,12/15/2010 02:28:53 PM,04/25/2016 02:07:06 PM,Code 2 Transport,12/15/2010 03:09:33 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",103490201-92 +160332077,KM09,16013025,Medical Incident,02/02/2016,02/02/2016,02/02/2016 02:46:52 PM,02/02/2016 02:49:55 PM,02/02/2016 02:50:29 PM,02/02/2016 02:51:25 PM,02/02/2016 03:14:09 PM,02/02/2016 03:21:19 PM,02/02/2016 03:47:17 PM,Code 2 Transport,02/02/2016 04:33:21 PM,2900 Block of GREAT HWY,San Francisco,94132,B08,19,8712,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7297644793355, -122.506576531064)",160332077-KM09 +122370133,T12,12078467,Alarms,08/24/2012,08/24/2012,08/24/2012 12:10:21 PM,08/24/2012 12:11:18 PM,08/24/2012 12:11:28 PM,08/24/2012 12:13:47 PM,08/24/2012 12:16:03 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 12:34:45 PM,500 Block of PARNASSUS AVE,SF,94131,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",122370133-T12 +132130298,T13,13072073,Structure Fire,08/01/2013,08/01/2013,08/01/2013 08:45:08 PM,08/01/2013 08:45:09 PM,08/01/2013 08:45:24 PM,08/01/2013 08:46:38 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/01/2013 08:48:35 PM,FRONT ST/SACRAMENTO ST,SF,94111,B01,13,1141,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",132130298-T13 +102260219,E01,10071182,Medical Incident,08/14/2010,08/14/2010,08/14/2010 03:32:30 PM,08/14/2010 03:34:24 PM,08/14/2010 03:34:59 PM,08/14/2010 03:36:22 PM,08/14/2010 03:39:26 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 03:44:22 PM,MISSION ST/LASKIE ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7767076869648, -122.41410689559)",102260219-E01 +82380178,T03,8072945,Other,08/25/2008,08/25/2008,08/25/2008 12:17:47 PM,08/25/2008 12:22:40 PM,08/25/2008 12:24:37 PM,08/25/2008 12:24:40 PM,04/25/2016 03:32:41 PM,04/25/2016 03:32:41 PM,04/25/2016 03:32:41 PM,Other,08/25/2008 12:26:01 PM,LARKIN ST/HAYES ST,SF,94102,B02,36,1646,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7777227510073, -122.416401071795)",082380178-T03 +102470219,E37,10078092,Medical Incident,09/04/2010,09/04/2010,09/04/2010 03:27:11 PM,09/04/2010 03:27:34 PM,09/04/2010 03:28:27 PM,09/04/2010 03:29:39 PM,09/04/2010 03:31:35 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/04/2010 03:44:52 PM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",102470219-E37 +111590126,RC1,11052538,Medical Incident,06/08/2011,06/08/2011,06/08/2011 10:45:19 AM,06/08/2011 10:47:21 AM,06/08/2011 10:47:33 AM,04/25/2016 02:04:15 PM,06/08/2011 10:54:12 AM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/08/2011 11:06:57 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,,1,RESCUE CAPTAIN,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",111590126-RC1 +103170267,B08,10101679,Alarms,11/13/2010,11/13/2010,11/13/2010 05:46:13 PM,11/13/2010 05:48:17 PM,11/13/2010 05:48:20 PM,11/13/2010 05:49:34 PM,11/13/2010 05:52:49 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,Other,11/13/2010 05:58:50 PM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,3,3,3,false,,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",103170267-B08 +132580106,E43,13087211,Medical Incident,09/15/2013,09/15/2013,09/15/2013 09:15:12 AM,09/15/2013 09:15:58 AM,09/15/2013 09:16:13 AM,09/15/2013 09:17:12 AM,09/15/2013 09:20:32 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/15/2013 09:28:16 AM,0 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",132580106-E43 +122490050,KM07,12082246,Medical Incident,09/05/2012,09/04/2012,09/05/2012 05:24:06 AM,09/05/2012 05:25:26 AM,09/05/2012 05:26:31 AM,09/05/2012 05:27:02 AM,09/05/2012 05:32:17 AM,09/05/2012 05:45:37 AM,09/05/2012 06:05:45 AM,Code 2 Transport,09/05/2012 06:33:14 AM,0 Block of KEYSTONE WAY,SF,94112,B09,15,8456,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7267775523581, -122.462501118425)",122490050-KM07 +130720399,55,13024182,Medical Incident,03/13/2013,03/13/2013,03/13/2013 10:41:57 PM,03/13/2013 10:43:29 PM,03/13/2013 10:44:19 PM,03/13/2013 10:44:35 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/13/2013 10:48:14 PM,0 Block of YERBA BUENA LN,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7857639967999, -122.404208166751)",130720399-55 +160380072,54,16015019,Medical Incident,02/07/2016,02/06/2016,02/07/2016 12:17:48 AM,02/07/2016 12:21:37 AM,02/07/2016 12:23:01 AM,02/07/2016 12:23:11 AM,02/07/2016 12:33:58 AM,02/07/2016 01:02:09 AM,02/07/2016 01:16:17 AM,Code 2 Transport,02/07/2016 01:51:22 AM,0 Block of STRATFORD DR,San Francisco,94132,B09,19,8727,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7238052072403, -122.473327132329)",160380072-54 +120120389,67,12004286,Medical Incident,01/12/2012,01/12/2012,01/12/2012 11:56:32 PM,01/12/2012 11:57:03 PM,01/12/2012 11:58:09 PM,01/13/2012 12:00:47 AM,01/13/2012 12:11:28 AM,01/13/2012 12:33:17 AM,01/13/2012 12:39:16 AM,Code 2 Transport,01/13/2012 01:06:37 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",120120389-67 +132060389,55,13069913,Medical Incident,07/25/2013,07/25/2013,07/25/2013 11:19:05 PM,07/25/2013 11:19:05 PM,07/25/2013 11:21:32 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,No Merit,07/25/2013 11:33:57 PM,600 Block of LAGUNA ST,SF,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7767060831773, -122.426242891179)",132060389-55 +123350153,E25,12111298,Medical Incident,11/30/2012,11/30/2012,11/30/2012 09:15:17 AM,11/30/2012 09:15:40 AM,11/30/2012 09:15:49 AM,11/30/2012 09:17:28 AM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/30/2012 09:17:57 AM,800 Block of INNES AVE,SF,94124,B10,25,6632,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7314216570538, -122.374864504136)",123350153-E25 +132630088,E25,13089029,Fuel Spill,09/20/2013,09/20/2013,09/20/2013 08:02:20 AM,09/20/2013 08:07:01 AM,09/20/2013 08:07:25 AM,09/20/2013 08:09:07 AM,09/20/2013 08:12:19 AM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Fire,09/20/2013 08:15:00 AM,ILLINOIS ST/CESAR CHAVEZ ST,SF,94124,B10,25,2641,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7503250432347, -122.386568300663)",132630088-E25 +140460362,78,14015820,Medical Incident,02/15/2014,02/15/2014,02/15/2014 09:57:33 PM,02/15/2014 09:58:20 PM,02/15/2014 09:59:18 PM,02/15/2014 09:59:45 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 10:11:01 PM,MISSION ST/4TH ST,SF,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",140460362-78 +133020124,E19,13102571,Traffic Collision,10/29/2013,10/29/2013,10/29/2013 09:25:29 AM,10/29/2013 09:26:05 AM,10/29/2013 09:26:22 AM,10/29/2013 09:27:14 AM,10/29/2013 09:31:32 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/29/2013 09:55:20 AM,LAKE MERCED BL/BROTHERHOOD WY,SF,94132,B08,19,8775,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7146945137547, -122.485228934867)",133020124-E19 +160780694,72,16030926,Medical Incident,03/18/2016,03/17/2016,03/18/2016 07:30:32 AM,03/18/2016 07:32:27 AM,03/18/2016 07:33:08 AM,03/18/2016 07:33:18 AM,03/18/2016 07:48:12 AM,03/18/2016 08:10:09 AM,03/18/2016 08:24:23 AM,Code 2 Transport,03/18/2016 09:22:58 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160780694-72 +160240286,60,16009405,Medical Incident,01/24/2016,01/23/2016,01/24/2016 01:47:19 AM,01/24/2016 01:47:19 AM,01/24/2016 01:47:44 AM,01/24/2016 01:48:20 AM,01/24/2016 01:52:50 AM,01/24/2016 02:01:45 AM,01/24/2016 02:08:48 AM,Code 3 Transport,01/24/2016 03:01:36 AM,POWELL ST/OFARRELL ST,San Francisco,94102,B03,1,1363,A,E,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",160240286-60 +131530172,E03,13051823,Structure Fire,06/02/2013,06/02/2013,06/02/2013 01:06:00 PM,06/02/2013 01:07:14 PM,06/02/2013 01:07:26 PM,06/02/2013 01:09:06 PM,06/02/2013 01:10:19 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 01:40:42 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",131530172-E03 +122850295,E02,12094363,Structure Fire,10/11/2012,10/11/2012,10/11/2012 06:11:12 PM,10/11/2012 06:11:56 PM,10/11/2012 06:12:25 PM,10/11/2012 06:13:25 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 06:17:06 PM,2000 Block of POWELL ST,SF,94133,B01,28,1346,3,3,3,true,Alarm,1,ENGINE,5,1,3,North Beach,"(37.8034897757347, -122.411553189926)",122850295-E02 +110250222,KM12,11008243,Traffic Collision,01/25/2011,01/25/2011,01/25/2011 12:28:01 PM,01/25/2011 12:29:38 PM,01/25/2011 12:34:04 PM,01/25/2011 12:34:32 PM,01/25/2011 12:55:45 PM,01/25/2011 01:10:38 PM,01/25/2011 01:29:46 PM,Code 2 Transport,01/25/2011 01:53:17 PM,DUBOCE AV/VALENCIA ST,SF,94103,B02,36,5126,2,2,2,false,,1,PRIVATE,2,2,9,Mission,"(37.7698676980277, -122.422364819149)",110250222-KM12 +140440270,RS2,14015025,Medical Incident,02/13/2014,02/13/2014,02/13/2014 02:51:37 PM,02/13/2014 02:52:20 PM,02/13/2014 02:52:40 PM,02/13/2014 02:53:39 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 02:57:11 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,9,Mission,"(37.7642444942899, -122.419521866555)",140440270-RS2 +102750136,RC1,10087320,Medical Incident,10/02/2010,10/02/2010,10/02/2010 10:28:49 AM,10/02/2010 10:29:16 AM,10/02/2010 10:29:48 AM,10/02/2010 10:35:03 AM,10/02/2010 10:37:03 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,No Merit,10/02/2010 10:42:32 AM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,RESCUE CAPTAIN,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",102750136-RC1 +132380148,86,13080261,Medical Incident,08/26/2013,08/26/2013,08/26/2013 10:41:10 AM,08/26/2013 10:43:34 AM,08/26/2013 10:44:16 AM,08/26/2013 10:44:43 AM,08/26/2013 10:52:49 AM,08/26/2013 11:09:32 AM,08/26/2013 11:31:22 AM,Code 2 Transport,08/26/2013 11:56:28 AM,600 Block of KING ST,SF,94107,B03,29,2275,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,10,Mission Bay,"(37.7705405549826, -122.401653062396)",132380148-86 +121480036,54,12048988,Medical Incident,05/27/2012,05/26/2012,05/27/2012 03:04:02 AM,05/27/2012 03:05:49 AM,05/27/2012 03:06:18 AM,05/27/2012 03:06:32 AM,05/27/2012 03:16:28 AM,05/27/2012 03:23:54 AM,05/27/2012 03:34:13 AM,Code 2 Transport,05/27/2012 03:50:07 AM,2800 Block of MISSION ST,SF,94110,B06,11,5529,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",121480036-54 +110910200,E31,11030158,Structure Fire,04/01/2011,04/01/2011,04/01/2011 01:39:06 PM,04/01/2011 01:39:37 PM,04/01/2011 01:40:03 PM,04/01/2011 01:41:36 PM,04/01/2011 01:46:30 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 01:54:26 PM,0 Block of COLLINS ST,SF,94118,B05,10,4373,3,3,3,true,,1,ENGINE,7,5,2,Presidio Heights,"(37.7852915032502, -122.450168457545)",110910200-E31 +123370299,E14,12112258,Medical Incident,12/02/2012,12/02/2012,12/02/2012 09:44:52 AM,12/02/2012 09:45:43 AM,12/02/2012 09:47:40 AM,12/02/2012 09:48:07 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 10:00:02 AM,6200 Block of GEARY BLVD,SF,94121,B07,14,7213,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.780133471504, -122.486348931975)",123370299-E14 +130860350,B09,13028833,Other,03/27/2013,03/27/2013,03/27/2013 09:41:06 PM,03/27/2013 09:42:58 PM,03/27/2013 09:45:41 PM,03/27/2013 09:47:39 PM,03/27/2013 09:52:30 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/27/2013 10:06:08 PM,1200 Block of MONTEREY BLVD,SF,94127,B09,15,8547,3,3,3,false,Alarm,1,CHIEF,3,9,7,West of Twin Peaks,"(37.7304697848581, -122.463092715715)",130860350-B09 +130220283,86,13007670,Medical Incident,01/22/2013,01/22/2013,01/22/2013 04:48:02 PM,01/22/2013 04:49:12 PM,01/22/2013 04:49:32 PM,01/22/2013 04:49:43 PM,01/22/2013 04:56:15 PM,01/22/2013 05:19:44 PM,01/22/2013 05:53:05 PM,Code 2 Transport,01/22/2013 06:21:46 PM,1100 Block of SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",130220283-86 +160243254,60,16009688,Medical Incident,01/24/2016,01/24/2016,01/24/2016 09:05:35 PM,01/24/2016 09:06:57 PM,01/24/2016 09:07:19 PM,01/24/2016 09:07:26 PM,01/24/2016 09:13:44 PM,01/24/2016 09:29:36 PM,01/24/2016 09:34:48 PM,Code 2 Transport,01/24/2016 10:10:08 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160243254-60 +103380130,82,10108090,Medical Incident,12/04/2010,12/04/2010,12/04/2010 09:12:09 AM,12/04/2010 09:15:27 AM,12/04/2010 09:17:05 AM,12/04/2010 09:17:34 AM,12/04/2010 09:29:17 AM,12/04/2010 10:01:55 AM,12/04/2010 10:53:20 AM,Code 2 Transport,12/04/2010 11:02:29 AM,300 Block of GARFIELD ST,SF,94132,B09,33,8433,1,1,2,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7197369271653, -122.465806378562)",103380130-82 +133150196,82,13107075,Medical Incident,11/11/2013,11/11/2013,11/11/2013 11:43:44 AM,11/11/2013 11:46:20 AM,11/11/2013 11:46:45 AM,11/11/2013 11:46:55 AM,11/11/2013 11:56:34 AM,11/11/2013 12:16:57 PM,11/11/2013 12:20:55 PM,Code 2 Transport,11/11/2013 12:52:34 PM,2200 Block of VALLEJO ST,SF,94123,B04,16,3551,2,2,2,false,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7953847417128, -122.434302143729)",133150196-82 +160760421,74,16030001,Medical Incident,03/16/2016,03/15/2016,03/16/2016 05:26:48 AM,03/16/2016 05:28:12 AM,03/16/2016 05:30:26 AM,03/16/2016 05:30:46 AM,03/16/2016 05:37:13 AM,03/16/2016 05:51:39 AM,03/16/2016 06:08:33 AM,Code 2 Transport,03/16/2016 06:37:48 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160760421-74 +122970269,T13,12098559,Alarms,10/23/2012,10/23/2012,10/23/2012 06:19:47 PM,10/23/2012 06:21:22 PM,10/23/2012 06:21:29 PM,10/23/2012 06:22:14 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 06:25:32 PM,200 Block of SPEAR ST,SF,94105,B03,35,2114,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7907290972823, -122.391698710083)",122970269-T13 +111720232,E08,11056772,Alarms,06/21/2011,06/21/2011,06/21/2011 02:28:05 PM,06/21/2011 02:30:17 PM,06/21/2011 02:30:25 PM,06/21/2011 02:31:55 PM,06/21/2011 02:34:25 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/21/2011 02:49:40 PM,1400 Block of 3RD ST,SF,94158,B03,8,2231,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7702071711418, -122.389579097943)",111720232-E08 +113110246,95,11103388,Medical Incident,11/07/2011,11/07/2011,11/07/2011 03:51:59 PM,11/07/2011 03:52:43 PM,11/07/2011 03:53:01 PM,11/07/2011 03:53:14 PM,11/07/2011 04:00:15 PM,11/07/2011 04:15:46 PM,11/07/2011 04:38:39 PM,Code 2 Transport,11/07/2011 04:59:34 PM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",113110246-95 +112940154,B04,11097493,Alarms,10/21/2011,10/21/2011,10/21/2011 11:26:19 AM,10/21/2011 11:26:51 AM,10/21/2011 11:27:05 AM,10/21/2011 11:28:01 AM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 11:32:19 AM,0 Block of GRAHAM ST,PR,94129,B99,51,4626,3,3,3,false,,1,CHIEF,3,7,2,Presidio,"(37.8007066173192, -122.456882143505)",112940154-B04 +122300209,T17,12076240,Medical Incident,08/17/2012,08/17/2012,08/17/2012 12:46:19 PM,08/17/2012 12:47:41 PM,08/17/2012 12:47:53 PM,08/17/2012 01:07:34 PM,08/17/2012 01:12:54 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 01:34:33 PM,200 Block of CASHMERE ST,SF,94124,B10,17,6517,3,E,3,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7362537955292, -122.387097160369)",122300209-T17 +121250154,AM12,12041483,Medical Incident,05/04/2012,05/04/2012,05/04/2012 12:15:33 PM,05/04/2012 12:18:44 PM,05/04/2012 12:19:10 PM,05/04/2012 12:19:44 PM,05/04/2012 12:21:45 PM,05/04/2012 12:48:20 PM,05/04/2012 01:04:58 PM,Code 2 Transport,05/04/2012 01:40:48 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",121250154-AM12 +160451952,KM08,16018153,Medical Incident,02/14/2016,02/14/2016,02/14/2016 02:36:21 PM,02/14/2016 02:37:57 PM,02/14/2016 02:38:15 PM,02/14/2016 02:39:01 PM,02/14/2016 02:42:26 PM,02/14/2016 03:01:29 PM,02/14/2016 03:14:50 PM,Code 2 Transport,02/14/2016 03:44:39 PM,8TH ST/HOWARD ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7762213544451, -122.411606113878)",160451952-KM08 +160383750,75,16015420,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:18:50 PM,02/07/2016 11:22:35 PM,02/07/2016 11:23:19 PM,02/07/2016 11:23:31 PM,02/07/2016 11:27:56 PM,02/07/2016 11:50:53 PM,02/07/2016 11:59:49 PM,Code 2 Transport,02/08/2016 12:22:59 AM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774574199485, -122.413157691577)",160383750-75 +130410181,E22,13014018,Medical Incident,02/10/2013,02/10/2013,02/10/2013 01:49:49 PM,02/10/2013 01:52:44 PM,02/10/2013 01:53:04 PM,02/10/2013 01:54:17 PM,02/10/2013 01:55:48 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 02:05:45 PM,19TH AV/IRVING ST,SF,94122,B08,22,7424,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",130410181-E22 +103180358,E22,10102071,Outside Fire,11/14/2010,11/14/2010,11/14/2010 08:48:14 PM,11/14/2010 08:50:09 PM,11/14/2010 08:50:42 PM,11/14/2010 08:51:10 PM,11/14/2010 08:53:04 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/14/2010 08:57:37 PM,IRVING ST/14TH AV,SF,94122,B08,22,7366,3,3,3,true,,1,ENGINE,1,8,5,Inner Sunset,"(37.7638016485067, -122.471667792686)",103180358-E22 +160841687,67,16033359,Medical Incident,03/24/2016,03/24/2016,03/24/2016 12:00:42 PM,03/24/2016 12:01:42 PM,03/24/2016 12:02:03 PM,03/24/2016 12:02:53 PM,03/24/2016 12:08:10 PM,03/24/2016 12:24:55 PM,03/24/2016 12:46:55 PM,Code 2 Transport,03/24/2016 01:13:53 PM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",160841687-67 +160740196,KM07,16029176,Medical Incident,03/14/2016,03/13/2016,03/14/2016 02:13:40 AM,03/14/2016 02:14:15 AM,03/14/2016 02:14:41 AM,03/14/2016 02:15:15 AM,03/14/2016 02:17:03 AM,03/14/2016 02:37:17 AM,03/14/2016 03:15:12 AM,Code 2 Transport,03/14/2016 03:36:20 AM,600 Block of GEARY ST,San Francisco,94109,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",160740196-KM07 +160030133,61,16000989,Medical Incident,01/03/2016,01/02/2016,01/03/2016 12:47:27 AM,01/03/2016 12:49:41 AM,01/03/2016 12:49:52 AM,01/03/2016 12:50:06 AM,01/03/2016 12:59:48 AM,01/03/2016 01:16:37 AM,01/03/2016 01:37:23 AM,Code 2 Transport,01/03/2016 02:27:59 AM,3100 Block of BUCHANAN ST,San Francisco,94123,B04,16,3444,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7991461246326, -122.43246545761)",160030133-61 +160110186,70,16004236,Medical Incident,01/11/2016,01/10/2016,01/11/2016 01:56:39 AM,01/11/2016 01:58:03 AM,01/11/2016 01:58:46 AM,01/11/2016 01:59:46 AM,01/11/2016 02:08:59 AM,01/11/2016 02:24:37 AM,01/11/2016 02:37:22 AM,Code 2 Transport,01/11/2016 03:02:15 AM,0 Block of GARLINGTON CT,San Francisco,94124,B10,17,6622,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7325070966122, -122.384396871119)",160110186-70 +132550072,E07,13086098,Medical Incident,09/12/2013,09/12/2013,09/12/2013 08:29:08 AM,09/12/2013 08:30:36 AM,09/12/2013 08:30:47 AM,09/12/2013 08:32:21 AM,09/12/2013 08:34:15 AM,04/25/2016 01:50:50 PM,04/25/2016 01:50:50 PM,Other,09/12/2013 08:39:49 AM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",132550072-E07 +110840316,54,11027779,Medical Incident,03/25/2011,03/25/2011,03/25/2011 06:13:12 PM,03/25/2011 06:15:24 PM,03/25/2011 06:15:50 PM,03/25/2011 06:16:36 PM,03/25/2011 06:32:02 PM,03/25/2011 06:40:02 PM,03/25/2011 06:53:28 PM,Code 2 Transport,03/25/2011 07:12:22 PM,0 Block of CERES ST,SF,94124,B10,17,6513,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7302170309802, -122.394251598498)",110840316-54 +120450370,AM10,12015133,Medical Incident,02/14/2012,02/14/2012,02/14/2012 10:28:20 PM,02/14/2012 10:30:06 PM,02/14/2012 10:30:31 PM,02/14/2012 10:31:55 PM,02/14/2012 10:34:43 PM,02/14/2012 10:49:56 PM,02/14/2012 10:54:52 PM,Code 2 Transport,02/14/2012 11:17:09 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",120450370-AM10 +160291879,82,16011457,Medical Incident,01/29/2016,01/29/2016,01/29/2016 01:45:19 PM,01/29/2016 01:46:30 PM,01/29/2016 01:46:49 PM,01/29/2016 01:47:19 PM,01/29/2016 01:51:11 PM,01/29/2016 02:09:25 PM,01/29/2016 02:18:23 PM,Code 2 Transport,01/29/2016 03:11:31 PM,1500 Block of 24TH AVE,San Francisco,94122,B08,22,7447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7586664205644, -122.482086757814)",160291879-82 +130460214,T05,13015625,Traffic Collision,02/15/2013,02/15/2013,02/15/2013 12:54:54 PM,02/15/2013 12:55:41 PM,02/15/2013 12:55:58 PM,02/15/2013 12:56:36 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 12:57:43 PM,LARKIN ST/EDDY ST,SF,94109,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",130460214-T05 +160553845,AM24,16022158,Medical Incident,02/24/2016,02/24/2016,02/24/2016 09:11:41 PM,02/24/2016 09:13:52 PM,02/24/2016 09:14:09 PM,02/24/2016 09:14:38 PM,02/24/2016 09:24:20 PM,02/24/2016 09:50:48 PM,02/24/2016 10:11:08 PM,Code 2 Transport,02/24/2016 10:46:01 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",160553845-AM24 +160331322,84,16012947,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:20:58 AM,02/02/2016 11:22:06 AM,02/02/2016 11:22:55 AM,02/02/2016 11:23:05 AM,02/02/2016 11:28:29 AM,02/02/2016 11:48:00 AM,02/02/2016 12:10:28 PM,Code 2 Transport,02/02/2016 12:51:04 PM,200 Block of YERBA BUENA AVE,San Francisco,94127,B09,39,8526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7351605295458, -122.460357051758)",160331322-84 +130800324,E38,13026862,Structure Fire,03/21/2013,03/21/2013,03/21/2013 06:10:46 PM,03/21/2013 06:12:59 PM,03/21/2013 06:13:38 PM,03/21/2013 06:15:03 PM,03/21/2013 06:16:01 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 06:18:48 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,false,Alarm,1,ENGINE,4,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",130800324-E38 +112910262,RC3,11096623,Medical Incident,10/18/2011,10/18/2011,10/18/2011 03:19:08 PM,10/18/2011 03:21:08 PM,10/18/2011 03:21:24 PM,10/18/2011 03:22:45 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/18/2011 03:28:18 PM,BERRY ST/DE HARO ST,SF,94103,B02,29,2355,A,A,2,true,,1,RESCUE CAPTAIN,4,2,10,Mission Bay,"(37.7690294704835, -122.401992728373)",112910262-RC3 +103420141,KM05,10109435,Medical Incident,12/08/2010,12/08/2010,12/08/2010 09:47:04 AM,12/08/2010 09:49:07 AM,12/08/2010 09:49:58 AM,12/08/2010 09:50:31 AM,12/08/2010 10:01:59 AM,12/08/2010 10:12:39 AM,12/08/2010 10:27:46 AM,Code 2 Transport,12/08/2010 10:46:51 AM,400 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7781649349602, -122.40085398952)",103420141-KM05 +103480330,RC3,10111708,Medical Incident,12/14/2010,12/14/2010,12/14/2010 06:57:05 PM,12/14/2010 06:58:02 PM,12/14/2010 06:58:29 PM,12/14/2010 07:00:12 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Other,12/14/2010 07:01:14 PM,100 Block of LOMBARD ST,SF,94111,B01,28,1224,3,E,3,true,,1,RESCUE CAPTAIN,4,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",103480330-RC3 +121650149,E03,12054695,Medical Incident,06/13/2012,06/13/2012,06/13/2012 12:03:11 PM,06/13/2012 12:05:06 PM,06/13/2012 12:06:46 PM,06/13/2012 12:08:06 PM,06/13/2012 12:10:01 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/13/2012 12:18:22 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",121650149-E03 +112780177,93,11092021,Medical Incident,10/05/2011,10/05/2011,10/05/2011 12:25:39 PM,10/05/2011 12:27:25 PM,10/05/2011 12:27:50 PM,10/05/2011 12:29:59 PM,10/05/2011 12:34:35 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 12:37:09 PM,0 Block of 12TH ST,SF,94103,B02,36,5116,2,2,2,true,,1,MEDIC,2,2,6,Mission,"(37.7734277265612, -122.419200287559)",112780177-93 +160401076,AM06,16015951,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:50:51 AM,02/09/2016 09:52:06 AM,02/09/2016 09:54:57 AM,02/09/2016 09:56:06 AM,02/09/2016 10:06:09 AM,02/09/2016 10:19:44 AM,02/09/2016 10:29:34 AM,Code 2 Transport,02/09/2016 10:51:32 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160401076-AM06 +112040008,89,11067249,Medical Incident,07/23/2011,07/22/2011,07/23/2011 12:11:30 AM,07/23/2011 12:12:48 AM,07/23/2011 12:13:13 AM,07/23/2011 12:13:28 AM,07/23/2011 12:17:47 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Patient Declined Transport,07/23/2011 12:40:50 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",112040008-89 +160621351,89,16024658,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:58:36 AM,03/02/2016 11:00:25 AM,03/02/2016 11:01:01 AM,03/02/2016 11:01:52 AM,03/02/2016 11:24:03 AM,03/02/2016 11:53:19 AM,03/02/2016 12:07:58 PM,Code 2 Transport,03/02/2016 01:13:32 PM,100 Block of RALSTON ST,San Francisco,94132,B09,33,8411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7151777593562, -122.468838490776)",160621351-89 +112230081,E03,11073571,Medical Incident,08/11/2011,08/11/2011,08/11/2011 08:30:36 AM,08/11/2011 08:32:44 AM,08/11/2011 08:32:59 AM,08/11/2011 08:35:28 AM,08/11/2011 08:36:56 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,No Merit,08/11/2011 08:45:49 AM,1100 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",112230081-E03 +112400340,E42,11079340,Structure Fire,08/28/2011,08/28/2011,08/28/2011 09:20:00 PM,08/28/2011 09:21:36 PM,08/28/2011 09:22:03 PM,08/28/2011 09:23:41 PM,08/28/2011 09:25:52 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 09:45:32 PM,700 Block of RUTLAND ST,SF,94134,B09,44,6264,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.712904274834, -122.407267551258)",112400340-E42 +131750170,B09,13059363,Alarms,06/24/2013,06/24/2013,06/24/2013 12:37:51 PM,06/24/2013 12:37:51 PM,06/24/2013 12:38:04 PM,06/24/2013 12:39:12 PM,06/24/2013 12:44:25 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 12:51:19 PM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,Alarm,1,CHIEF,3,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",131750170-B09 +123020108,E42,12100092,Medical Incident,10/28/2012,10/27/2012,10/28/2012 06:08:00 AM,10/28/2012 06:08:00 AM,10/28/2012 06:08:51 AM,10/28/2012 06:11:10 AM,10/28/2012 06:12:10 AM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/28/2012 06:25:12 AM,100 Block of FELTON ST,SF,94134,B10,42,6341,1,1,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7296995803959, -122.406105145502)",123020108-E42 +120860195,E36,12028566,Medical Incident,03/26/2012,03/26/2012,03/26/2012 01:55:47 PM,03/26/2012 01:58:23 PM,03/26/2012 01:59:19 PM,03/26/2012 02:00:46 PM,03/26/2012 02:02:54 PM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 02:18:39 PM,400 Block of IVY ST,SF,94102,B02,36,3315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7769806945809, -122.425527315472)",120860195-E36 +132130125,B07,13071919,Structure Fire,08/01/2013,08/01/2013,08/01/2013 11:43:28 AM,08/01/2013 11:43:47 AM,08/01/2013 11:47:00 AM,08/01/2013 11:49:14 AM,08/01/2013 11:53:09 AM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 12:44:29 PM,200 Block of CARL ST,SF,94117,B05,12,5145,3,3,3,false,Alarm,1,CHIEF,7,5,5,Inner Sunset,"(37.7652836629529, -122.453570243869)",132130125-B07 +113020371,57,11100359,Medical Incident,10/29/2011,10/29/2011,10/29/2011 10:24:51 PM,10/29/2011 10:26:07 PM,10/29/2011 10:26:26 PM,10/29/2011 10:26:46 PM,10/29/2011 10:31:03 PM,10/29/2011 10:46:28 PM,10/29/2011 11:02:03 PM,Code 2 Transport,10/29/2011 11:32:44 PM,20TH AV/GEARY BL,SF,94121,B07,14,7172,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.780334689944, -122.479382974071)",113020371-57 +121870376,92,12062466,Medical Incident,07/05/2012,07/05/2012,07/05/2012 09:57:21 PM,07/05/2012 09:59:35 PM,07/05/2012 10:00:04 PM,07/05/2012 10:00:27 PM,07/05/2012 10:08:32 PM,07/05/2012 10:16:38 PM,07/05/2012 10:46:57 PM,Code 2 Transport,07/05/2012 11:04:43 PM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",121870376-92 +112760142,KM11,11091309,Medical Incident,10/03/2011,10/03/2011,10/03/2011 10:28:14 AM,10/03/2011 10:29:39 AM,10/03/2011 10:30:01 AM,10/03/2011 10:30:31 AM,10/03/2011 10:35:19 AM,10/03/2011 10:54:35 AM,10/03/2011 11:03:14 AM,Code 2 Transport,10/03/2011 11:33:02 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",112760142-KM11 +122250276,B02,12074708,Alarms,08/12/2012,08/12/2012,08/12/2012 07:57:28 PM,08/12/2012 08:01:06 PM,08/12/2012 08:01:19 PM,08/12/2012 08:03:52 PM,08/12/2012 08:05:43 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 08:24:17 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",122250276-B02 +110750001,E13,11024547,Alarms,03/16/2011,03/15/2011,03/16/2011 12:07:31 AM,03/16/2011 12:08:47 AM,03/16/2011 12:09:27 AM,03/16/2011 12:11:05 AM,03/16/2011 12:13:25 AM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Other,03/16/2011 12:23:52 AM,0 Block of SPEAR ST,SF,94105,B03,13,2115,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",110750001-E13 +112510339,T10,11082877,Structure Fire,09/08/2011,09/08/2011,09/08/2011 06:44:52 PM,09/08/2011 06:45:52 PM,09/08/2011 06:46:11 PM,09/08/2011 06:47:32 PM,09/08/2011 06:50:00 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 06:59:58 PM,3200 Block of CLAY ST,SF,94115,B04,10,4335,3,3,3,false,,1,TRUCK,1,4,2,Presidio Heights,"(37.7892141353212, -122.446463989599)",112510339-T10 +130810226,D2,13027148,Structure Fire,03/22/2013,03/22/2013,03/22/2013 03:30:26 PM,03/22/2013 03:31:54 PM,03/22/2013 03:32:09 PM,03/22/2013 03:32:32 PM,03/22/2013 03:35:23 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 03:36:45 PM,600 Block of GEARY ST,SF,94109,B01,3,1462,3,3,3,false,Alarm,1,CHIEF,6,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",130810226-D2 +132560183,B09,13086536,Structure Fire,09/13/2013,09/13/2013,09/13/2013 01:16:08 PM,09/13/2013 01:16:44 PM,09/13/2013 01:17:06 PM,09/13/2013 01:17:59 PM,09/13/2013 01:21:02 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Fire,09/13/2013 01:27:55 PM,0 Block of CONCORD ST,SF,94112,B09,43,6221,3,3,3,false,Alarm,1,CHIEF,2,9,11,Excelsior,"(37.7127395198874, -122.442907763659)",132560183-B09 +133160287,86,13107517,Medical Incident,11/12/2013,11/12/2013,11/12/2013 06:34:36 PM,11/12/2013 06:34:39 PM,11/12/2013 06:35:17 PM,11/12/2013 06:35:39 PM,11/12/2013 06:35:33 PM,11/12/2013 07:10:23 PM,11/12/2013 07:44:47 PM,Code 2 Transport,11/12/2013 08:22:19 PM,700 Block of MOSCOW ST,SF,94134,B09,43,6161,2,2,2,false,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.715844082258, -122.431797985467)",133160287-86 +123660125,KM10,12122395,Medical Incident,12/31/2012,12/31/2012,12/31/2012 10:29:47 AM,12/31/2012 10:30:54 AM,12/31/2012 10:31:20 AM,12/31/2012 10:33:11 AM,12/31/2012 10:38:16 AM,12/31/2012 10:56:50 AM,12/31/2012 11:03:32 AM,Code 2 Transport,12/31/2012 11:32:47 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",123660125-KM10 +140740095,55,14024951,Medical Incident,03/15/2014,03/15/2014,03/15/2014 08:37:16 AM,03/15/2014 08:39:28 AM,03/15/2014 08:40:15 AM,03/15/2014 08:40:22 AM,03/15/2014 08:48:49 AM,03/15/2014 09:11:36 AM,03/15/2014 09:22:04 AM,Code 2 Transport,03/15/2014 09:58:29 AM,1100 Block of MISSION ST,SAN FRANCISCO,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",140740095-55 +123540199,E03,12118454,Medical Incident,12/19/2012,12/19/2012,12/19/2012 12:02:23 PM,12/19/2012 12:04:53 PM,12/19/2012 12:05:37 PM,12/19/2012 12:05:48 PM,12/19/2012 12:09:11 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 12:35:48 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",123540199-E03 +111190233,E05,11039299,Traffic Collision,04/29/2011,04/29/2011,04/29/2011 04:28:48 PM,04/29/2011 04:28:55 PM,04/29/2011 04:33:56 PM,04/29/2011 04:34:48 PM,04/29/2011 04:37:18 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Patient Declined Transport,04/29/2011 04:44:08 PM,DIVISADERO ST/OFARRELL ST,SF,94115,B04,5,413,2,2,2,true,,1,ENGINE,1,5,5,Western Addition,"(37.7824504809987, -122.439297623944)",111190233-E05 +111490335,E02,11049543,Medical Incident,05/29/2011,05/29/2011,05/29/2011 11:29:12 PM,05/29/2011 11:31:06 PM,05/29/2011 11:31:33 PM,05/29/2011 11:36:48 PM,05/29/2011 11:43:41 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/29/2011 11:50:16 PM,500 Block of JONES ST,SF,94102,B01,3,1462,1,1,2,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",111490335-E02 +160624341,60,16024903,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:45:11 PM,03/02/2016 11:46:39 PM,03/02/2016 11:48:19 PM,03/02/2016 11:48:28 PM,03/02/2016 11:59:29 PM,03/03/2016 12:18:01 AM,03/03/2016 12:47:17 AM,Code 2 Transport,03/03/2016 01:32:38 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2175,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",160624341-60 +160040901,74,16001519,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:00:47 AM,01/04/2016 09:01:05 AM,01/04/2016 09:02:01 AM,01/04/2016 09:02:13 AM,01/04/2016 09:06:32 AM,01/04/2016 09:22:43 AM,01/04/2016 09:32:08 AM,Code 2 Transport,01/04/2016 10:04:23 AM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7243246599401, -122.43515070173)",160040901-74 +132360014,RS2,13079504,Structure Fire,08/24/2013,08/23/2013,08/24/2013 12:55:51 AM,08/24/2013 12:56:32 AM,08/24/2013 12:56:59 AM,08/24/2013 12:58:43 AM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/24/2013 01:05:05 AM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,false,Alarm,1,RESCUE SQUAD,10,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",132360014-RS2 +131940312,B02,13066068,Structure Fire,07/13/2013,07/13/2013,07/13/2013 09:18:17 PM,07/13/2013 09:19:03 PM,07/13/2013 09:19:21 PM,07/13/2013 09:20:32 PM,07/13/2013 09:22:22 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 09:35:52 PM,VAN NESS AV/GEARY BL,SF,94109,B04,3,3161,3,3,3,false,Alarm,1,CHIEF,5,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",131940312-B02 +160753844,64,16029917,Traffic Collision,03/15/2016,03/15/2016,03/15/2016 09:56:05 PM,03/15/2016 09:59:01 PM,03/15/2016 09:59:11 PM,03/15/2016 10:00:11 PM,03/15/2016 10:04:31 PM,03/15/2016 10:26:41 PM,03/15/2016 10:42:01 PM,Code 2 Transport,03/15/2016 11:25:02 PM,600 Block of 8TH ST,San Francisco,94103,B03,29,2325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7707183646173, -122.404602175632)",160753844-64 +121370342,RC3,12045644,Medical Incident,05/16/2012,05/16/2012,05/16/2012 07:23:24 PM,05/16/2012 07:24:56 PM,05/16/2012 07:25:05 PM,05/16/2012 07:39:34 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,05/16/2012 08:12:09 PM,Other,05/16/2012 07:49:16 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",121370342-RC3 +160860814,62,16034096,Medical Incident,03/26/2016,03/26/2016,03/26/2016 08:14:33 AM,03/26/2016 08:14:33 AM,03/26/2016 08:14:33 AM,03/26/2016 08:14:33 AM,03/26/2016 08:14:33 AM,03/26/2016 08:35:27 AM,03/26/2016 08:50:28 AM,Code 2 Transport,03/26/2016 09:20:46 AM,MASON ST/GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.787149142759, -122.409874017562)",160860814-62 +110810133,E03,11026623,Medical Incident,03/22/2011,03/22/2011,03/22/2011 11:34:16 AM,03/22/2011 11:34:49 AM,03/22/2011 11:38:04 AM,03/22/2011 11:44:53 AM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 11:45:51 AM,500 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",110810133-E03 +112630018,E01,11086689,Medical Incident,09/20/2011,09/19/2011,09/20/2011 02:00:15 AM,09/20/2011 02:00:55 AM,09/20/2011 02:01:05 AM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/20/2011 02:31:07 AM,100 Block of 3RD ST,SF,94103,B03,1,2177,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",112630018-E01 +133580121,E22,13121654,Medical Incident,12/24/2013,12/24/2013,12/24/2013 09:14:47 AM,12/24/2013 09:15:55 AM,12/24/2013 09:16:43 AM,12/24/2013 09:18:19 AM,12/24/2013 09:21:41 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 09:22:07 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",133580121-E22 +160422885,71,16016961,Medical Incident,02/11/2016,02/11/2016,02/11/2016 05:35:29 PM,02/11/2016 05:35:42 PM,02/11/2016 05:36:29 PM,02/11/2016 05:36:34 PM,02/11/2016 06:20:19 PM,02/11/2016 06:21:59 PM,02/11/2016 06:37:32 PM,Code 2 Transport,02/11/2016 07:36:50 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160422885-71 +131160193,E19,13039090,Medical Incident,04/26/2013,04/26/2013,04/26/2013 04:10:42 PM,04/26/2013 04:12:36 PM,04/26/2013 04:12:42 PM,04/26/2013 04:13:45 PM,04/26/2013 04:18:36 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 04:31:39 PM,2400 Block of 45TH AVE,SF,94116,B08,18,7665,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7408866307923, -122.503414693179)",131160193-E19 +160281512,71,16011062,Medical Incident,01/28/2016,01/28/2016,01/28/2016 11:53:01 AM,01/28/2016 11:54:54 AM,01/28/2016 11:55:00 AM,01/28/2016 11:55:05 AM,01/28/2016 12:07:39 PM,01/28/2016 12:24:02 PM,01/28/2016 12:34:12 PM,Code 2 Transport,01/28/2016 01:16:40 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",160281512-71 +140410315,E38,14014031,Structure Fire,02/10/2014,02/10/2014,02/10/2014 04:43:03 PM,02/10/2014 04:43:50 PM,02/10/2014 04:44:07 PM,04/25/2016 01:48:16 PM,02/10/2014 04:46:36 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 04:49:39 PM,1400 Block of EDDY ST,SF,94115,B05,5,3515,3,3,3,true,Alarm,1,ENGINE,4,5,5,Western Addition,"(37.7814827356164, -122.431458216164)",140410315-E38 +120560079,AM02,12018417,Medical Incident,02/25/2012,02/25/2012,02/25/2012 08:48:36 AM,02/25/2012 08:56:14 AM,02/25/2012 08:56:27 AM,02/25/2012 08:56:55 AM,02/25/2012 09:07:50 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,No Merit,02/25/2012 09:27:35 AM,600 Block of CLAY ST,SF,94111,B01,13,1233,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7945054272056, -122.403956804569)",120560079-AM02 +160480175,AM24,16019193,Medical Incident,02/17/2016,02/16/2016,02/17/2016 01:36:35 AM,02/17/2016 01:38:24 AM,02/17/2016 01:38:38 AM,02/17/2016 01:39:26 AM,02/17/2016 01:44:35 AM,02/17/2016 02:17:51 AM,02/17/2016 03:09:31 AM,Code 2 Transport,02/17/2016 03:18:04 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160480175-AM24 +160443831,KM03,16017903,Medical Incident,02/13/2016,02/13/2016,02/13/2016 10:48:02 PM,02/13/2016 10:50:25 PM,02/13/2016 10:50:50 PM,02/13/2016 10:51:20 PM,02/13/2016 10:55:20 PM,02/13/2016 11:15:52 PM,02/13/2016 11:32:42 PM,Code 2 Transport,02/14/2016 12:09:15 AM,900 Block of GENEVA AVE,San Francisco,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7159411510558, -122.439784371506)",160443831-KM03 +160350298,88,16013665,Medical Incident,02/04/2016,02/03/2016,02/04/2016 02:57:49 AM,02/04/2016 02:58:19 AM,02/04/2016 02:58:38 AM,02/04/2016 02:58:50 AM,02/04/2016 03:02:13 AM,02/04/2016 03:13:20 AM,02/04/2016 03:24:57 AM,Code 2 Transport,02/04/2016 03:58:46 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160350298-88 +120010262,55,12000223,Medical Incident,01/01/2012,12/31/2011,01/01/2012 03:46:57 AM,01/01/2012 03:49:17 AM,01/01/2012 03:50:07 AM,01/01/2012 03:50:32 AM,01/01/2012 03:55:20 AM,01/01/2012 04:01:27 AM,01/01/2012 04:11:31 AM,Code 2 Transport,01/01/2012 04:30:44 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",120010262-55 +160602559,KM09,16023990,Medical Incident,02/29/2016,02/29/2016,02/29/2016 05:03:29 PM,02/29/2016 05:03:29 PM,02/29/2016 05:03:43 PM,02/29/2016 05:06:39 PM,02/29/2016 05:18:23 PM,02/29/2016 05:39:16 PM,02/29/2016 05:58:49 PM,Code 2 Transport,02/29/2016 06:39:26 PM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",160602559-KM09 +123480315,E21,12116466,Medical Incident,12/13/2012,12/13/2012,12/13/2012 06:38:03 PM,12/13/2012 06:39:06 PM,12/13/2012 06:39:32 PM,12/13/2012 06:41:00 PM,12/13/2012 06:42:51 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/13/2012 06:51:35 PM,600 Block of STEINER ST,SF,94117,B05,21,3631,3,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7751510634662, -122.432804075352)",123480315-E21 +121040043,74,12034345,Medical Incident,04/13/2012,04/12/2012,04/13/2012 05:58:53 AM,04/13/2012 05:59:58 AM,04/13/2012 06:03:08 AM,04/13/2012 06:03:46 AM,04/25/2016 01:59:12 PM,04/13/2012 06:22:00 AM,04/13/2012 06:37:24 AM,Code 2 Transport,04/13/2012 07:08:36 AM,0 Block of MASON ST,SF,94102,B03,1,1365,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",121040043-74 +160800140,62,16031648,Medical Incident,03/20/2016,03/19/2016,03/20/2016 12:42:51 AM,03/20/2016 12:43:16 AM,03/20/2016 12:44:26 AM,03/20/2016 12:44:45 AM,03/20/2016 01:02:11 AM,03/20/2016 01:24:37 AM,03/20/2016 01:40:32 AM,Code 2 Transport,03/20/2016 02:52:33 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160800140-62 +130370224,B04,13012728,Alarms,02/06/2013,02/06/2013,02/06/2013 03:02:27 PM,02/06/2013 03:03:59 PM,02/06/2013 03:05:20 PM,02/06/2013 03:07:20 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 03:09:36 PM,2800 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7931736175933, -122.444028632879)",130370224-B04 +120300255,KM11,12010061,Medical Incident,01/30/2012,01/30/2012,01/30/2012 06:46:24 PM,01/30/2012 06:47:40 PM,01/30/2012 06:49:04 PM,04/25/2016 02:00:22 PM,01/30/2012 06:55:46 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/30/2012 07:12:36 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",120300255-KM11 +132240092,67,13075564,Medical Incident,08/12/2013,08/12/2013,08/12/2013 09:03:36 AM,08/12/2013 09:05:37 AM,08/12/2013 09:06:26 AM,08/12/2013 09:07:00 AM,08/12/2013 09:11:31 AM,08/12/2013 09:40:16 AM,08/12/2013 09:52:39 AM,Code 2 Transport,08/12/2013 10:42:14 AM,0 Block of POMONA ST,SF,94124,B10,17,6513,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7317250476804, -122.393375988902)",132240092-67 +160040527,88,16001478,Medical Incident,01/04/2016,01/03/2016,01/04/2016 06:33:59 AM,01/04/2016 06:33:59 AM,01/04/2016 06:34:33 AM,01/04/2016 06:34:53 AM,01/04/2016 06:45:53 AM,01/04/2016 06:59:03 AM,01/04/2016 06:59:04 AM,Code 2 Transport,01/04/2016 07:40:21 AM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160040527-88 +130190273,75,13006582,Medical Incident,01/19/2013,01/19/2013,01/19/2013 04:15:06 PM,01/19/2013 04:15:41 PM,01/19/2013 04:16:00 PM,01/19/2013 04:16:13 PM,01/19/2013 04:35:22 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Against Medical Advice,01/19/2013 05:18:36 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8082633159603, -122.414972542075)",130190273-75 +160061440,AM08,16002369,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:28:57 AM,01/06/2016 11:30:21 AM,01/06/2016 11:31:45 AM,01/06/2016 11:32:27 AM,01/06/2016 11:35:26 AM,01/06/2016 11:47:19 AM,01/06/2016 12:07:00 PM,Code 2 Transport,01/06/2016 12:36:25 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160061440-AM08 +130370343,E03,13012839,Medical Incident,02/06/2013,02/06/2013,02/06/2013 10:07:45 PM,02/06/2013 10:10:39 PM,02/06/2013 10:11:01 PM,02/06/2013 10:12:07 PM,02/06/2013 10:14:31 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 10:25:03 PM,LEAVENWORTH ST/TURK ST,SF,94102,B02,1,1546,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",130370343-E03 +113480315,E33,11115569,Alarms,12/14/2011,12/14/2011,12/14/2011 06:47:58 PM,12/14/2011 06:48:54 PM,12/14/2011 06:49:16 PM,12/14/2011 06:50:41 PM,12/14/2011 06:52:19 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 07:06:07 PM,8200 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,true,,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",113480315-E33 +131090056,KM15,13036521,Medical Incident,04/19/2013,04/18/2013,04/19/2013 05:52:01 AM,04/19/2013 05:53:04 AM,04/19/2013 05:53:38 AM,04/19/2013 05:56:04 AM,04/19/2013 06:04:08 AM,04/19/2013 06:31:39 AM,04/19/2013 06:47:53 AM,Code 2 Transport,04/19/2013 06:59:37 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",131090056-KM15 +160872978,72,16034692,Medical Incident,03/27/2016,03/27/2016,03/27/2016 07:01:24 PM,03/27/2016 07:01:56 PM,03/27/2016 07:02:50 PM,03/27/2016 07:02:57 PM,03/27/2016 07:09:01 PM,03/27/2016 07:51:13 PM,03/27/2016 08:19:10 PM,Code 2 Transport,03/27/2016 09:15:31 PM,1600 Block of BAY SHORE BLVD,San Francisco,94124,B10,44,6542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7220922733519, -122.400087817543)",160872978-72 +112230105,T03,11073588,Medical Incident,08/11/2011,08/11/2011,08/11/2011 09:38:34 AM,08/11/2011 09:40:23 AM,08/11/2011 09:40:53 AM,08/11/2011 09:40:59 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,04/25/2016 02:03:13 PM,WILLOW ST/LARKIN ST,SF,94109,B02,3,1643,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7837775223432, -122.417618573606)",112230105-T03 +103070063,55,10098173,Medical Incident,11/03/2010,11/02/2010,11/03/2010 06:52:26 AM,11/03/2010 06:54:55 AM,11/03/2010 06:58:53 AM,11/03/2010 06:59:32 AM,11/03/2010 07:06:18 AM,11/03/2010 07:18:30 AM,11/03/2010 07:36:50 AM,Code 2 Transport,11/03/2010 08:04:37 AM,600 Block of CALIFORNIA ST,SF,94108,B01,13,1314,1,1,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",103070063-55 +111360018,E36,11045144,Medical Incident,05/16/2011,05/15/2011,05/16/2011 01:28:37 AM,05/16/2011 01:30:52 AM,05/16/2011 01:31:11 AM,05/16/2011 01:32:58 AM,05/16/2011 01:35:06 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 01:43:16 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",111360018-E36 +113610136,KM15,11119910,Medical Incident,12/27/2011,12/27/2011,12/27/2011 11:17:46 AM,12/27/2011 11:19:21 AM,12/27/2011 11:20:50 AM,12/27/2011 11:21:23 AM,12/27/2011 11:38:20 AM,12/27/2011 12:07:00 PM,12/27/2011 12:30:40 PM,Code 2 Transport,12/27/2011 01:06:43 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,false,,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",113610136-KM15 +122680244,E32,12088584,Structure Fire,09/24/2012,09/24/2012,09/24/2012 03:04:39 PM,09/24/2012 03:04:39 PM,09/24/2012 03:06:08 PM,09/24/2012 03:07:22 PM,09/24/2012 03:09:21 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 03:13:16 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",122680244-E32 +160581497,87,16023105,Medical Incident,02/27/2016,02/27/2016,02/27/2016 11:32:12 AM,02/27/2016 11:34:55 AM,02/27/2016 11:36:06 AM,02/27/2016 11:36:43 AM,02/27/2016 11:54:51 AM,02/27/2016 11:54:53 AM,02/27/2016 12:20:16 PM,Code 2 Transport,02/27/2016 12:57:48 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160581497-87 +133010058,E07,13102185,Medical Incident,10/28/2013,10/27/2013,10/28/2013 07:14:07 AM,10/28/2013 07:15:44 AM,10/28/2013 07:17:04 AM,10/28/2013 07:18:55 AM,10/28/2013 07:20:46 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 07:27:02 AM,3100 Block of 21ST ST,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7571885589512, -122.417270975533)",133010058-E07 +140560353,E07,14019033,Medical Incident,02/25/2014,02/25/2014,02/25/2014 09:42:40 PM,02/25/2014 09:43:50 PM,02/25/2014 09:44:04 PM,02/25/2014 09:44:59 PM,02/25/2014 09:50:15 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Code 2 Transport,02/25/2014 09:57:05 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",140560353-E07 +131360124,E51,13045825,Alarms,05/16/2013,05/16/2013,05/16/2013 09:48:00 AM,05/16/2013 09:49:26 AM,05/16/2013 09:50:03 AM,05/16/2013 09:51:50 AM,05/16/2013 09:53:56 AM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 09:58:44 AM,300 Block of MORAGA AVE,PR,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.7986237777426, -122.460634690165)",131360124-E51 +160270954,52,16010590,Medical Incident,01/27/2016,01/27/2016,01/27/2016 09:15:37 AM,01/27/2016 09:17:52 AM,01/27/2016 09:31:31 AM,01/27/2016 09:31:41 AM,01/27/2016 09:36:45 AM,01/27/2016 09:58:18 AM,01/27/2016 10:05:22 AM,Code 3 Transport,01/27/2016 11:10:43 AM,500 Block of HURON AVE,San Francisco,94112,B09,33,8345,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7140548685457, -122.447132820655)",160270954-52 +122860291,RS2,12094699,Structure Fire,10/12/2012,10/12/2012,10/12/2012 07:00:15 PM,10/12/2012 07:04:13 PM,10/12/2012 07:04:32 PM,10/12/2012 07:06:09 PM,10/12/2012 07:07:46 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 07:11:08 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Alarm,1,RESCUE SQUAD,4,2,9,Mission,"(37.7650513381945, -122.419668973861)",122860291-RS2 +160890531,62,16035220,Medical Incident,03/29/2016,03/28/2016,03/29/2016 06:56:31 AM,03/29/2016 06:58:04 AM,03/29/2016 06:58:34 AM,03/29/2016 06:58:48 AM,03/29/2016 07:02:40 AM,03/29/2016 07:10:28 AM,03/29/2016 07:15:21 AM,Code 3 Transport,03/29/2016 08:07:12 AM,200 Block of OCTAVIA ST,San Francisco,94102,B02,36,3313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745930151123, -122.424320630004)",160890531-62 +160293332,92,16011564,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:40:36 PM,01/29/2016 08:41:29 PM,01/29/2016 08:42:21 PM,01/29/2016 08:44:28 PM,01/29/2016 08:49:55 PM,01/29/2016 08:56:26 PM,01/29/2016 09:04:23 PM,Code 3 Transport,01/29/2016 09:51:53 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160293332-92 +133200283,93,13108814,Medical Incident,11/16/2013,11/16/2013,11/16/2013 06:28:46 PM,11/16/2013 06:30:12 PM,11/16/2013 06:30:54 PM,11/16/2013 06:32:08 PM,11/16/2013 06:46:45 PM,11/16/2013 07:09:02 PM,11/16/2013 07:27:23 PM,Code 2 Transport,11/16/2013 08:02:41 PM,2200 Block of 42ND AVE,SF,94116,B08,18,7635,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7447651974344, -122.500461812681)",133200283-93 +122500076,55,12082580,Medical Incident,09/06/2012,09/06/2012,09/06/2012 08:41:41 AM,09/06/2012 08:43:33 AM,09/06/2012 08:44:34 AM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,04/25/2016 01:56:54 PM,0 Block of DORE ST,SF,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",122500076-55 +160243340,56,16009700,Traffic Collision,01/24/2016,01/24/2016,01/24/2016 09:39:15 PM,01/24/2016 09:39:15 PM,01/24/2016 09:40:02 PM,01/24/2016 09:40:14 PM,01/24/2016 09:54:54 PM,01/24/2016 10:07:19 PM,01/24/2016 10:11:28 PM,Code 2 Transport,01/24/2016 10:39:35 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160243340-56 +111630123,E11,11053768,Structure Fire,06/12/2011,06/12/2011,06/12/2011 10:12:43 AM,06/12/2011 10:12:43 AM,06/12/2011 10:13:06 AM,06/12/2011 10:18:24 AM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Other,06/12/2011 10:18:27 AM,COLERIDGE ST/FAIR AV,SF,94110,B06,11,5662,3,3,3,true,,1,ENGINE,2,6,9,Bernal Heights,"(37.7451507672258, -122.418784784921)",111630123-E11 +160102146,58,16004089,Medical Incident,01/10/2016,01/10/2016,01/10/2016 03:30:49 PM,01/10/2016 03:31:19 PM,01/10/2016 03:33:38 PM,01/10/2016 03:34:22 PM,01/10/2016 03:42:10 PM,01/10/2016 03:54:07 PM,01/10/2016 04:18:27 PM,Code 2 Transport,01/10/2016 04:56:09 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7823404680537, -122.40377191669)",160102146-58 +122380038,81,12078716,Medical Incident,08/25/2012,08/24/2012,08/25/2012 01:52:04 AM,08/25/2012 01:53:27 AM,08/25/2012 01:53:48 AM,08/25/2012 01:54:00 AM,08/25/2012 01:55:56 AM,08/25/2012 02:07:20 AM,08/25/2012 02:17:07 AM,Code 2 Transport,08/25/2012 02:32:40 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",122380038-81 +160511662,AM12,16020473,Medical Incident,02/20/2016,02/20/2016,02/20/2016 01:26:33 PM,02/20/2016 01:27:05 PM,02/20/2016 01:27:23 PM,02/20/2016 01:27:54 PM,02/20/2016 01:31:11 PM,02/20/2016 01:36:21 PM,02/20/2016 01:53:33 PM,Code 2 Transport,02/20/2016 02:16:01 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160511662-AM12 +132830201,E03,13096315,Medical Incident,10/10/2013,10/10/2013,10/10/2013 01:17:24 PM,10/10/2013 01:18:19 PM,10/10/2013 01:19:39 PM,10/10/2013 01:21:35 PM,10/10/2013 01:23:35 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/10/2013 01:29:40 PM,1600 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,5,Japantown,"(37.78676442656, -122.427490271072)",132830201-E03 +102990162,RS2,10095442,Traffic Collision,10/26/2010,10/26/2010,10/26/2010 11:19:29 AM,10/26/2010 11:19:38 AM,10/26/2010 11:19:55 AM,10/26/2010 11:20:51 AM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 11:24:49 AM,29TH ST/DIAMOND ST,SF,94131,B06,26,5557,3,3,3,false,,1,RESCUE SQUAD,7,6,8,Noe Valley,"(37.743161446786, -122.435559005337)",102990162-RS2 +120090244,64,12003155,Medical Incident,01/09/2012,01/09/2012,01/09/2012 02:11:19 PM,01/09/2012 02:11:39 PM,01/09/2012 02:11:58 PM,01/09/2012 02:12:11 PM,01/09/2012 02:13:39 PM,01/09/2012 02:27:49 PM,01/09/2012 02:37:22 PM,Code 2 Transport,01/09/2012 03:03:54 PM,400 Block of SHRADER ST,SF,94117,B05,12,4544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7707625335991, -122.452216807745)",120090244-64 +121250110,T06,12041447,Structure Fire,05/04/2012,05/04/2012,05/04/2012 10:11:01 AM,05/04/2012 10:11:37 AM,05/04/2012 10:12:36 AM,05/04/2012 10:16:25 AM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 10:23:33 AM,100 Block of FOREST KNOLLS DR,SF,94131,B08,20,5366,3,3,3,false,Fire,1,TRUCK,5,8,7,Inner Sunset,"(37.7548692522345, -122.455591695127)",121250110-T06 +120100166,E01,12003463,Medical Incident,01/10/2012,01/10/2012,01/10/2012 12:35:27 PM,01/10/2012 12:35:59 PM,01/10/2012 12:36:16 PM,01/10/2012 12:38:13 PM,01/10/2012 12:39:51 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/10/2012 12:49:13 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",120100166-E01 +120750317,89,12025027,Medical Incident,03/15/2012,03/15/2012,03/15/2012 08:40:20 PM,03/15/2012 08:40:45 PM,03/15/2012 08:41:01 PM,03/15/2012 08:42:42 PM,03/15/2012 08:57:52 PM,03/15/2012 08:57:57 PM,03/15/2012 09:00:25 PM,Code 2 Transport,03/15/2012 09:14:48 PM,SAN JOSE AV/24TH ST,SF,94110,B06,11,5524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7520468115771, -122.4215951516)",120750317-89 +160400806,52,16015926,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:36:36 AM,02/09/2016 08:37:50 AM,02/09/2016 08:38:15 AM,02/09/2016 08:38:24 AM,02/09/2016 08:54:44 AM,02/09/2016 09:48:43 AM,02/09/2016 10:13:22 AM,Code 2 Transport,02/09/2016 10:33:38 AM,2100 Block of 22ND AVE,San Francisco,94116,B08,40,7444,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7475738115005, -122.479161952946)",160400806-52 +123050240,T03,12101232,Elevator / Escalator Rescue,10/31/2012,10/31/2012,10/31/2012 01:17:35 PM,10/31/2012 01:19:27 PM,10/31/2012 01:27:07 PM,04/25/2016 01:56:02 PM,10/31/2012 01:31:06 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Fire,10/31/2012 01:36:21 PM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",123050240-T03 +122790403,T07,12092423,Structure Fire,10/05/2012,10/05/2012,10/05/2012 11:32:16 PM,10/05/2012 11:32:17 PM,10/05/2012 11:32:21 PM,10/05/2012 11:33:49 PM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,Other,10/05/2012 11:35:40 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",122790403-T07 +112350353,RC2,11077689,Medical Incident,08/23/2011,08/23/2011,08/23/2011 07:40:04 PM,08/23/2011 07:40:46 PM,08/23/2011 07:40:55 PM,04/25/2016 02:03:02 PM,08/23/2011 07:44:03 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 07:58:29 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,2,2,true,,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7800578530259, -122.464142970045)",112350353-RC2 +130040411,81,13001546,Medical Incident,01/04/2013,01/04/2013,01/04/2013 10:10:06 PM,01/04/2013 10:12:29 PM,01/04/2013 10:12:49 PM,01/04/2013 10:13:11 PM,01/04/2013 10:22:05 PM,01/04/2013 10:48:39 PM,01/04/2013 11:03:04 PM,Code 2 Transport,01/04/2013 11:55:10 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",130040411-81 +121650080,RS1,12054643,Traffic Collision,06/13/2012,06/13/2012,06/13/2012 09:01:21 AM,06/13/2012 09:02:25 AM,06/13/2012 09:02:37 AM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/13/2012 09:22:15 AM,STEINER ST/POST ST,SF,94115,B04,5,3622,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,4,5,Japantown,"(37.7849440060036, -122.434729991182)",121650080-RS1 +110140204,T17,11004662,Medical Incident,01/14/2011,01/14/2011,01/14/2011 02:37:38 PM,01/14/2011 02:37:59 PM,01/14/2011 02:38:13 PM,01/14/2011 02:39:14 PM,01/14/2011 02:42:06 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 02:57:41 PM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,true,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7345707092334, -122.391831743022)",110140204-T17 +160112727,50,16004499,Medical Incident,01/11/2016,01/11/2016,01/11/2016 05:48:01 PM,01/11/2016 05:50:37 PM,01/11/2016 05:50:56 PM,01/11/2016 05:51:05 PM,01/11/2016 05:55:34 PM,01/11/2016 06:18:24 PM,01/11/2016 06:26:32 PM,Code 2 Transport,01/11/2016 07:04:06 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160112727-50 +160822705,KM11,16032653,Medical Incident,03/22/2016,03/22/2016,03/22/2016 04:39:40 PM,03/22/2016 04:40:29 PM,03/22/2016 04:41:42 PM,03/22/2016 04:42:12 PM,03/22/2016 04:47:34 PM,03/22/2016 05:05:41 PM,03/22/2016 05:13:47 PM,Code 2 Transport,03/22/2016 05:55:44 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160822705-KM11 +112300088,E41,11075878,Medical Incident,08/18/2011,08/18/2011,08/18/2011 08:58:33 AM,08/18/2011 09:01:14 AM,08/18/2011 09:02:08 AM,08/18/2011 09:03:33 AM,08/18/2011 09:03:40 AM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/18/2011 09:17:41 AM,1400 Block of LEAVENWORTH ST,SF,94109,B01,41,1535,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.7943258846738, -122.416450548399)",112300088-E41 +112370191,T13,11078196,Alarms,08/25/2011,08/25/2011,08/25/2011 12:18:31 PM,08/25/2011 12:20:09 PM,08/25/2011 12:20:20 PM,08/25/2011 12:21:09 PM,08/25/2011 12:24:46 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 12:29:24 PM,1700 Block of MONTGOMERY ST,SF,94133,B01,28,1223,3,3,3,false,,1,TRUCK,1,1,3,North Beach,"(37.8052210976384, -122.405333785642)",112370191-T13 +160251709,54,16009923,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:33:47 PM,01/25/2016 12:36:48 PM,01/25/2016 12:36:55 PM,01/25/2016 12:37:09 PM,01/25/2016 12:51:27 PM,01/25/2016 01:02:30 PM,01/25/2016 01:22:23 PM,Code 2 Transport,01/25/2016 02:26:59 PM,1000 Block of WISCONSIN ST,San Francisco,94107,B10,37,257,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",160251709-54 +160250482,AM24,16009795,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:03:21 AM,01/25/2016 06:06:46 AM,01/25/2016 06:07:49 AM,01/25/2016 06:08:22 AM,01/25/2016 06:13:43 AM,01/25/2016 06:21:24 AM,01/25/2016 07:08:39 AM,Code 2 Transport,01/25/2016 07:32:12 AM,400 Block of 25TH AVE,San Francisco,94121,B07,14,7213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7810622346199, -122.484734171651)",160250482-AM24 +110490185,E01,11016178,Medical Incident,02/18/2011,02/18/2011,02/18/2011 12:08:43 PM,02/18/2011 12:10:26 PM,02/18/2011 12:11:57 PM,02/18/2011 12:13:29 PM,02/18/2011 12:14:37 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 12:24:34 PM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",110490185-E01 +122580113,E01,12085226,Medical Incident,09/14/2012,09/14/2012,09/14/2012 10:35:00 AM,09/14/2012 10:36:18 AM,09/14/2012 10:36:37 AM,09/14/2012 10:41:16 AM,09/14/2012 10:43:31 AM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/14/2012 10:48:01 AM,800 Block of FOLSOM ST,SF,94107,B03,1,2215,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811056901316, -122.402224662374)",122580113-E01 +102790242,78,10088756,Medical Incident,10/06/2010,10/06/2010,10/06/2010 04:45:11 PM,10/06/2010 04:45:42 PM,10/06/2010 04:49:18 PM,10/06/2010 04:49:26 PM,10/06/2010 04:54:35 PM,10/06/2010 05:17:05 PM,10/06/2010 05:42:06 PM,Code 2 Transport,10/06/2010 05:59:38 PM,MARKET ST/GUERRERO ST,SF,94103,B02,36,3416,2,2,2,true,,1,MEDIC,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",102790242-78 +110070334,E36,11002451,Medical Incident,01/07/2011,01/07/2011,01/07/2011 06:52:01 PM,01/07/2011 06:54:01 PM,01/07/2011 06:54:32 PM,01/07/2011 06:56:01 PM,01/07/2011 06:58:16 PM,04/25/2016 02:06:42 PM,04/25/2016 02:06:42 PM,Patient Declined Transport,01/07/2011 06:59:44 PM,BUCHANAN ST/HAYES ST,SF,94102,B02,36,3423,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7762536677457, -122.427913715931)",110070334-E36 +111810201,E12,11059738,Medical Incident,06/30/2011,06/30/2011,06/30/2011 01:51:38 PM,06/30/2011 01:51:58 PM,06/30/2011 01:52:30 PM,06/30/2011 01:53:44 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 01:54:59 PM,OAK ST/ASHBURY ST,SF,94117,B05,21,4513,3,3,3,true,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7718777415662, -122.447312420784)",111810201-E12 +102410171,E25,10076010,Alarms,08/29/2010,08/29/2010,08/29/2010 12:08:26 PM,08/29/2010 12:10:07 PM,08/29/2010 12:10:40 PM,08/29/2010 12:11:47 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/29/2010 12:26:26 PM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,3,3,3,false,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",102410171-E25 +140070322,E41,14002611,Alarms,01/07/2014,01/07/2014,01/07/2014 07:40:19 PM,01/07/2014 07:41:59 PM,01/07/2014 07:42:05 PM,01/07/2014 07:43:18 PM,01/07/2014 07:45:46 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 07:59:19 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",140070322-E41 +160051443,59,16001968,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:43:26 AM,01/05/2016 11:44:33 AM,01/05/2016 11:44:47 AM,01/05/2016 11:44:54 AM,01/05/2016 11:47:53 AM,01/05/2016 12:17:32 PM,01/05/2016 12:23:29 PM,Code 2 Transport,01/05/2016 01:23:04 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160051443-59 +122810197,67,12092999,Medical Incident,10/07/2012,10/07/2012,10/07/2012 12:36:47 PM,10/07/2012 12:37:57 PM,10/07/2012 12:38:45 PM,10/07/2012 12:39:28 PM,10/07/2012 12:49:57 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,No Merit,10/07/2012 01:00:29 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",122810197-67 +160870295,88,16034431,Medical Incident,03/27/2016,03/26/2016,03/27/2016 01:47:31 AM,03/27/2016 01:49:52 AM,03/27/2016 01:50:32 AM,03/27/2016 01:50:47 AM,03/27/2016 02:04:25 AM,03/27/2016 02:09:46 AM,03/27/2016 02:14:27 AM,Code 2 Transport,03/27/2016 02:52:23 AM,MARKET ST/TURK ST,San Francisco,94103,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",160870295-88 +122270107,E28,12075198,Traffic Collision,08/14/2012,08/14/2012,08/14/2012 10:49:59 AM,08/14/2012 10:50:59 AM,08/14/2012 10:51:30 AM,08/14/2012 10:52:22 AM,08/14/2012 10:53:50 AM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/14/2012 11:10:51 AM,POWELL ST/FILBERT ST,SF,94133,B01,28,1351,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.801169751007, -122.41101851673)",122270107-E28 +160761211,60,16030085,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:20:24 AM,03/16/2016 10:22:57 AM,03/16/2016 10:23:43 AM,03/16/2016 10:28:22 AM,03/16/2016 11:03:33 AM,03/16/2016 11:03:38 AM,03/16/2016 11:12:47 AM,Code 2 Transport,03/16/2016 11:58:36 AM,200 Block of 19TH AVE,San Francisco,94121,B07,31,7164,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7832380252403, -122.478580262547)",160761211-60 +111310230,94,11043327,Medical Incident,05/11/2011,05/11/2011,05/11/2011 03:28:12 PM,05/11/2011 03:30:35 PM,05/11/2011 03:31:10 PM,05/11/2011 03:31:26 PM,05/11/2011 03:35:31 PM,05/11/2011 03:56:02 PM,05/11/2011 04:13:13 PM,Code 2 Transport,05/11/2011 04:41:02 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",111310230-94 +123500057,87,12116932,Medical Incident,12/15/2012,12/14/2012,12/15/2012 04:27:47 AM,12/15/2012 04:28:38 AM,12/15/2012 04:29:22 AM,12/15/2012 04:29:36 AM,12/15/2012 04:34:58 AM,12/15/2012 04:49:01 AM,12/15/2012 05:01:41 AM,Code 2 Transport,12/15/2012 05:32:33 AM,GENEVA AV/SAN JOSE AV,SF,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",123500057-87 +130780373,E05,13026192,Medical Incident,03/19/2013,03/19/2013,03/19/2013 07:48:19 PM,03/19/2013 07:49:41 PM,03/19/2013 07:50:08 PM,03/19/2013 07:50:29 PM,03/19/2013 07:51:15 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 08:12:11 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",130780373-E05 +133640183,89,13123596,Medical Incident,12/30/2013,12/30/2013,12/30/2013 12:41:32 PM,12/30/2013 12:43:14 PM,12/30/2013 12:43:40 PM,12/30/2013 12:43:56 PM,12/30/2013 12:58:52 PM,12/30/2013 01:18:54 PM,12/30/2013 01:28:23 PM,Code 2 Transport,12/30/2013 01:56:47 PM,1700 Block of TURK ST,SF,94115,B05,5,4152,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7797665517286, -122.438328082289)",133640183-89 +140690046,88,14023181,Medical Incident,03/10/2014,03/09/2014,03/10/2014 06:03:34 AM,03/10/2014 06:08:06 AM,03/10/2014 06:08:38 AM,03/10/2014 06:08:45 AM,03/10/2014 06:20:02 AM,03/10/2014 06:41:59 AM,03/10/2014 07:00:53 AM,Code 2 Transport,03/10/2014 07:30:43 AM,0 Block of THOMAS MORE WAY,SAN FRANCISCO,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",140690046-88 +123340060,82,12110868,Medical Incident,11/29/2012,11/28/2012,11/29/2012 05:48:21 AM,11/29/2012 05:49:49 AM,11/29/2012 05:50:24 AM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,04/25/2016 01:55:35 PM,STEUART ST/MARKET ST,SF,94105,B01,13,1112,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",123340060-82 +160301774,67,16011786,Medical Incident,01/30/2016,01/30/2016,01/30/2016 12:20:13 PM,01/30/2016 12:22:16 PM,01/30/2016 12:22:47 PM,01/30/2016 12:23:17 PM,01/30/2016 12:43:27 PM,01/30/2016 01:08:49 PM,01/30/2016 01:36:42 PM,Code 2 Transport,01/30/2016 02:16:52 PM,742-744 HOLLOWAY AV,San Francisco,94112,B09,15,8463,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7218878674022, -122.460743393033)",160301774-67 +113070191,KM01,11101994,Medical Incident,11/03/2011,11/03/2011,11/03/2011 01:18:55 PM,11/03/2011 01:20:42 PM,11/03/2011 01:20:58 PM,11/03/2011 01:21:36 PM,11/03/2011 01:25:20 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Patient Declined Transport,11/03/2011 01:52:28 PM,400 Block of SAWYER ST,SF,94134,B09,44,6263,3,3,3,false,,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7124324746921, -122.414660020644)",113070191-KM01 +111270190,E02,11042052,Structure Fire,05/07/2011,05/07/2011,05/07/2011 02:07:48 PM,05/07/2011 02:07:48 PM,05/07/2011 02:08:15 PM,05/07/2011 02:09:28 PM,05/07/2011 02:11:35 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Fire,05/07/2011 02:12:06 PM,STOCKTON ST/SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7931783017695, -122.40772718761)",111270190-E02 +130770211,E13,13025733,Medical Incident,03/18/2013,03/18/2013,03/18/2013 01:56:01 PM,03/18/2013 01:57:04 PM,03/18/2013 01:59:21 PM,03/18/2013 01:59:31 PM,03/18/2013 02:00:17 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,No Merit,03/18/2013 02:02:25 PM,CALIFORNIA ST/BATTERY ST,SF,94111,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",130770211-E13 +112860313,E12,11094839,Structure Fire,10/13/2011,10/13/2011,10/13/2011 04:33:07 PM,10/13/2011 04:33:07 PM,10/13/2011 04:34:07 PM,10/13/2011 04:35:07 PM,10/13/2011 04:38:26 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 04:40:07 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,true,,1,ENGINE,1,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",112860313-E12 +121190005,E03,12039331,Medical Incident,04/28/2012,04/27/2012,04/28/2012 12:25:31 AM,04/28/2012 12:26:01 AM,04/28/2012 12:26:16 AM,04/28/2012 12:28:02 AM,04/28/2012 12:29:57 AM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/28/2012 12:31:34 AM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",121190005-E03 +132230250,81,13075376,Medical Incident,08/11/2013,08/11/2013,08/11/2013 04:24:16 PM,08/11/2013 04:25:22 PM,08/11/2013 04:26:45 PM,08/11/2013 04:29:47 PM,08/11/2013 04:32:07 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Patient Declined Transport,08/11/2013 04:45:43 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",132230250-81 +113150340,E40,11104853,Medical Incident,11/11/2011,11/11/2011,11/11/2011 11:17:21 PM,11/11/2011 11:18:57 PM,11/11/2011 11:23:27 PM,11/11/2011 11:25:28 PM,11/11/2011 11:27:34 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/11/2011 11:52:19 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",113150340-E40 +112640033,87,11087075,Medical Incident,09/21/2011,09/20/2011,09/21/2011 02:33:05 AM,09/21/2011 02:34:40 AM,09/21/2011 02:34:55 AM,09/21/2011 02:36:36 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Patient Declined Transport,09/21/2011 02:46:42 AM,700 Block of 26TH AVE,SF,94121,B07,14,7212,3,3,3,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7753232435727, -122.48539571121)",112640033-87 +160653248,64,16026112,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:41:04 PM,03/05/2016 08:41:57 PM,03/05/2016 08:45:15 PM,03/05/2016 08:45:15 PM,03/05/2016 08:50:09 PM,03/05/2016 08:57:22 PM,03/05/2016 09:23:36 PM,Code 2 Transport,03/05/2016 09:55:20 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160653248-64 +140030230,E12,14001075,Medical Incident,01/03/2014,01/03/2014,01/03/2014 01:03:24 PM,01/03/2014 01:04:22 PM,01/03/2014 01:05:47 PM,01/03/2014 01:06:22 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,Other,01/03/2014 01:13:23 PM,1400 Block of LINCOLN WAY,SF,94122,B08,22,7367,,2,2,true,Potentially Life-Threatening,1,ENGINE,3,7,5,Inner Sunset,"(37.7655073554414, -122.473477522814)",140030230-E12 +160522208,56,16020864,Medical Incident,02/21/2016,02/21/2016,02/21/2016 03:51:24 PM,02/21/2016 03:52:39 PM,02/21/2016 03:53:05 PM,02/21/2016 03:53:41 PM,02/21/2016 04:06:12 PM,02/21/2016 04:27:58 PM,02/21/2016 04:34:33 PM,Code 2 Transport,02/21/2016 04:52:26 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160522208-56 +110240268,T03,11007933,Medical Incident,01/24/2011,01/24/2011,01/24/2011 03:00:03 PM,01/24/2011 03:01:00 PM,01/24/2011 03:01:35 PM,01/24/2011 03:02:32 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/24/2011 03:02:51 PM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,1,2,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",110240268-T03 +130070143,B07,13002337,Alarms,01/07/2013,01/07/2013,01/07/2013 10:56:44 AM,01/07/2013 10:57:59 AM,01/07/2013 10:58:17 AM,01/07/2013 10:59:44 AM,01/07/2013 11:02:36 AM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Fire,01/07/2013 11:13:31 AM,0 Block of 19TH AVE,SF,94121,B07,31,7163,3,3,3,false,Alarm,1,CHIEF,1,7,2,Seacliff,"(37.7863877327251, -122.47867010798)",130070143-B07 +132140138,B04,13072225,Gas Leak (Natural and LP Gases),08/02/2013,08/02/2013,08/02/2013 11:17:43 AM,08/02/2013 11:19:06 AM,08/02/2013 11:27:18 AM,08/02/2013 11:27:23 AM,08/02/2013 11:28:15 AM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/02/2013 12:43:08 PM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7900221078411, -122.433000512108)",132140138-B04 +112000041,E15,11065846,Medical Incident,07/19/2011,07/18/2011,07/19/2011 05:13:37 AM,07/19/2011 05:14:37 AM,07/19/2011 05:14:48 AM,07/19/2011 05:17:42 AM,07/19/2011 05:21:14 AM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Other,07/19/2011 05:33:06 AM,4800 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,,1,ENGINE,2,9,11,Excelsior,"(37.7213272618826, -122.437216421378)",112000041-E15 +122880075,T05,12095191,Citizen Assist / Service Call,10/14/2012,10/13/2012,10/14/2012 05:40:51 AM,10/14/2012 05:46:21 AM,10/14/2012 05:46:45 AM,10/14/2012 05:48:06 AM,10/14/2012 05:50:01 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 05:55:19 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",122880075-T05 +160411237,52,16016403,Medical Incident,02/10/2016,02/10/2016,02/10/2016 10:25:45 AM,02/10/2016 10:27:25 AM,02/10/2016 10:28:31 AM,02/10/2016 10:29:07 AM,02/10/2016 10:41:18 AM,02/10/2016 11:02:51 AM,02/10/2016 11:12:28 AM,Code 3 Transport,02/10/2016 11:57:08 AM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",160411237-52 +112820254,87,11093391,Traffic Collision,10/09/2011,10/09/2011,10/09/2011 04:13:25 PM,10/09/2011 04:13:51 PM,10/09/2011 04:14:43 PM,10/09/2011 04:15:10 PM,10/09/2011 04:17:12 PM,10/09/2011 04:28:37 PM,10/09/2011 04:41:03 PM,Code 3 Transport,10/09/2011 05:12:08 PM,POWELL ST/NORTH POINT ST,SF,94133,B01,28,1262,3,3,3,true,,1,MEDIC,1,1,3,North Beach,"(37.8067580824981, -122.412141425527)",112820254-87 +132540011,B04,13085663,Alarms,09/11/2013,09/10/2013,09/11/2013 12:49:04 AM,09/11/2013 12:51:54 AM,09/11/2013 12:55:28 AM,09/11/2013 12:55:32 AM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Fire,09/11/2013 01:02:13 AM,300 Block of ARGUELLO BLVD,SF,94118,B07,10,7114,3,3,3,false,Alarm,1,CHIEF,4,7,1,Inner Richmond,"(37.7844395880636, -122.459158221689)",132540011-B04 +103410264,82,10109180,Medical Incident,12/07/2010,12/07/2010,12/07/2010 03:54:42 PM,12/07/2010 03:56:43 PM,12/07/2010 03:59:48 PM,12/07/2010 04:00:13 PM,04/25/2016 02:07:14 PM,12/07/2010 04:14:09 PM,12/07/2010 04:17:44 PM,Code 2 Transport,12/07/2010 04:43:00 PM,1100 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7870624915967, -122.419905427898)",103410264-82 +160800986,75,16031743,Medical Incident,03/20/2016,03/20/2016,03/20/2016 08:59:18 AM,03/20/2016 08:59:47 AM,03/20/2016 09:01:17 AM,03/20/2016 09:01:25 AM,03/20/2016 09:04:43 AM,03/20/2016 09:22:34 AM,03/20/2016 09:34:24 AM,Code 2 Transport,03/20/2016 09:51:22 AM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160800986-75 +121320234,65,12043956,Medical Incident,05/11/2012,05/11/2012,05/11/2012 02:47:26 PM,05/11/2012 02:47:26 PM,05/11/2012 02:48:51 PM,05/11/2012 02:49:07 PM,05/11/2012 03:06:45 PM,05/11/2012 03:07:08 PM,05/11/2012 03:24:28 PM,Code 2 Transport,05/11/2012 04:05:49 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,E,3,true,Non Life-threatening,1,MEDIC,4,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",121320234-65 +102930370,AM12,10093606,Medical Incident,10/20/2010,10/20/2010,10/20/2010 11:25:38 PM,10/20/2010 11:26:27 PM,10/20/2010 11:27:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,04/25/2016 02:08:00 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,PRIVATE,3,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",102930370-AM12 +120800248,T13,12026615,Medical Incident,03/20/2012,03/20/2012,03/20/2012 04:35:19 PM,03/20/2012 04:37:01 PM,03/20/2012 04:37:10 PM,03/20/2012 04:38:17 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/20/2012 04:38:32 PM,GRANT AV/BUSH ST,SF,94108,B01,13,1315,2,2,2,false,Potentially Life-Threatening,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7905652365323, -122.405573746363)",120800248-T13 +123630059,78,12121361,Medical Incident,12/28/2012,12/27/2012,12/28/2012 06:34:54 AM,12/28/2012 06:36:09 AM,12/28/2012 06:36:39 AM,12/28/2012 06:36:47 AM,12/28/2012 06:39:10 AM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Patient Declined Transport,12/28/2012 07:04:08 AM,700 Block of MISSION ST,SF,94103,B03,1,2178,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",123630059-78 +160592598,74,16023623,Medical Incident,02/28/2016,02/28/2016,02/28/2016 06:09:26 PM,02/28/2016 06:10:24 PM,02/28/2016 06:11:42 PM,02/28/2016 06:12:39 PM,02/28/2016 06:18:01 PM,02/28/2016 06:33:50 PM,02/28/2016 06:48:58 PM,Code 2 Transport,02/28/2016 07:13:31 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825297445725, -122.412384547628)",160592598-74 +140740103,B07,14024958,Other,03/15/2014,03/15/2014,03/15/2014 09:06:34 AM,03/15/2014 09:09:34 AM,03/15/2014 09:11:09 AM,03/15/2014 09:12:55 AM,03/15/2014 09:20:58 AM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Fire,03/15/2014 09:43:28 AM,1000 Block of POINT LOBOS AVE,,94121,B07,34,7314,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",140740103-B07 +110750261,E40,11024745,Odor (Strange / Unknown),03/16/2011,03/16/2011,03/16/2011 06:38:12 PM,03/16/2011 06:40:28 PM,03/16/2011 06:41:15 PM,03/16/2011 06:42:07 PM,03/16/2011 06:46:00 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Other,03/16/2011 06:58:00 PM,IRVING ST/20TH AV,SF,94122,B08,22,7425,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.763514759084, -122.478190825777)",110750261-E40 +113440249,AR1,11114184,Structure Fire,12/10/2011,12/10/2011,12/10/2011 05:19:24 PM,12/10/2011 05:20:07 PM,12/10/2011 05:20:22 PM,12/10/2011 05:34:34 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 08:58:29 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,INVESTIGATION,25,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",113440249-AR1 +112160307,E29,11071440,Structure Fire,08/04/2011,08/04/2011,08/04/2011 05:51:21 PM,08/04/2011 05:52:41 PM,08/04/2011 05:53:07 PM,08/04/2011 05:54:59 PM,08/04/2011 05:57:30 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 05:58:44 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,true,,1,ENGINE,6,2,9,Mission,"(37.7677331022924, -122.415606951318)",112160307-E29 +133010375,E08,13102434,Medical Incident,10/28/2013,10/28/2013,10/28/2013 08:24:04 PM,10/28/2013 08:26:07 PM,10/28/2013 08:27:13 PM,10/28/2013 08:28:43 PM,10/28/2013 08:34:22 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/28/2013 08:41:24 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",133010375-E08 +160510470,KM03,16020361,Medical Incident,02/20/2016,02/19/2016,02/20/2016 04:30:49 AM,02/20/2016 04:32:26 AM,02/20/2016 04:32:40 AM,02/20/2016 04:33:18 AM,02/20/2016 04:35:43 AM,02/20/2016 04:55:44 AM,02/20/2016 05:07:13 AM,Code 2 Transport,02/20/2016 05:40:53 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160510470-KM03 +131340009,AM18,13045060,Medical Incident,05/14/2013,05/13/2013,05/14/2013 12:32:46 AM,05/14/2013 12:34:00 AM,05/14/2013 12:34:13 AM,05/14/2013 12:35:13 AM,05/14/2013 12:46:47 AM,05/14/2013 12:46:53 AM,05/14/2013 12:51:11 AM,Code 2 Transport,05/14/2013 01:16:11 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",131340009-AM18 +160210662,79,16008275,Medical Incident,01/21/2016,01/20/2016,01/21/2016 07:50:17 AM,01/21/2016 07:52:10 AM,01/21/2016 07:52:30 AM,01/21/2016 07:52:49 AM,01/21/2016 08:10:52 AM,01/21/2016 08:45:20 AM,01/21/2016 09:13:13 AM,Code 2 Transport,01/21/2016 10:09:41 AM,0 Block of BROADMOOR DR,San Francisco,94132,B09,19,8723,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7277422805146, -122.473265515738)",160210662-79 +160030044,85,16000986,Medical Incident,01/03/2016,01/02/2016,01/03/2016 12:14:20 AM,01/03/2016 12:14:45 AM,01/03/2016 12:15:07 AM,01/03/2016 12:15:40 AM,01/03/2016 12:32:03 AM,01/03/2016 01:06:18 AM,01/03/2016 01:24:53 AM,Code 2 Transport,01/03/2016 02:04:05 AM,500 Block of AMAZON AVE,San Francisco,94112,B09,43,6136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7155859094303, -122.435741243059)",160030044-85 +132430115,85,13081940,Water Rescue,08/31/2013,08/31/2013,08/31/2013 08:52:45 AM,08/31/2013 08:54:43 AM,08/31/2013 08:56:05 AM,08/31/2013 08:56:17 AM,08/31/2013 09:04:27 AM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/31/2013 09:10:06 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,MEDIC,9,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132430115-85 +113200115,T03,11106232,Medical Incident,11/16/2011,11/16/2011,11/16/2011 09:42:07 AM,11/16/2011 09:42:32 AM,11/16/2011 09:42:55 AM,11/16/2011 09:44:10 AM,11/16/2011 09:46:31 AM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 09:53:15 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,,1,TRUCK,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",113200115-T03 +122700362,E13,12089286,Medical Incident,09/26/2012,09/26/2012,09/26/2012 11:58:07 PM,09/26/2012 11:58:40 PM,09/26/2012 11:59:10 PM,09/27/2012 12:01:23 AM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/27/2012 12:10:04 AM,SPEAR ST/MARKET ST,SF,94105,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",122700362-E13 +160411634,88,16016437,Medical Incident,02/10/2016,02/10/2016,02/10/2016 12:11:20 PM,02/10/2016 12:12:23 PM,02/10/2016 12:12:43 PM,02/10/2016 12:13:03 PM,02/10/2016 12:17:35 PM,02/10/2016 12:30:06 PM,02/10/2016 12:51:03 PM,Code 2 Transport,02/10/2016 01:29:37 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160411634-88 +123400047,85,12113308,Medical Incident,12/05/2012,12/04/2012,12/05/2012 04:32:57 AM,12/05/2012 04:35:24 AM,12/05/2012 04:35:46 AM,12/05/2012 04:35:59 AM,12/05/2012 04:55:13 AM,12/05/2012 05:38:38 AM,12/05/2012 05:56:36 AM,Code 2 Transport,12/05/2012 06:12:22 AM,200 Block of BLYTHDALE AVE,SF,94134,B09,43,6243,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",123400047-85 +122850380,77,12094446,Medical Incident,10/11/2012,10/11/2012,10/11/2012 10:53:59 PM,10/11/2012 10:54:31 PM,10/11/2012 10:59:58 PM,10/11/2012 11:00:26 PM,10/11/2012 11:11:16 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Patient Declined Transport,10/11/2012 11:33:48 PM,OAK ST/STANYAN ST,SF,94117,B05,12,4554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.7714283936706, -122.453979521283)",122850380-77 +160320074,89,16012400,Medical Incident,02/01/2016,01/31/2016,02/01/2016 12:32:53 AM,02/01/2016 12:33:44 AM,02/01/2016 12:34:26 AM,02/01/2016 12:34:41 AM,02/01/2016 12:38:34 AM,02/01/2016 12:50:04 AM,02/01/2016 01:06:27 AM,Code 2 Transport,02/01/2016 01:36:46 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160320074-89 +160652857,79,16026046,Medical Incident,03/05/2016,03/05/2016,03/05/2016 06:56:53 PM,03/05/2016 06:58:54 PM,03/05/2016 06:59:16 PM,03/05/2016 06:59:24 PM,03/05/2016 07:03:58 PM,03/05/2016 07:22:01 PM,03/05/2016 07:41:56 PM,Code 2 Transport,03/05/2016 08:13:22 PM,800 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7874037664371, -122.415827994726)",160652857-79 +122440057,88,12080563,Medical Incident,08/31/2012,08/30/2012,08/31/2012 06:10:02 AM,08/31/2012 06:10:48 AM,08/31/2012 06:11:02 AM,08/31/2012 06:11:25 AM,08/31/2012 06:17:06 AM,08/31/2012 06:35:16 AM,08/31/2012 06:51:14 AM,Code 2 Transport,08/31/2012 07:14:15 AM,PARNASSUS AV/SHRADER ST,SF,94117,B05,12,5161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7646823660448, -122.451213061284)",122440057-88 +131520270,RS2,13051576,Traffic Collision,06/01/2013,06/01/2013,06/01/2013 06:35:12 PM,06/01/2013 06:36:08 PM,06/01/2013 06:36:59 PM,06/01/2013 06:38:06 PM,06/01/2013 06:47:49 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 06:52:07 PM,SUNSET BL/SANTIAGO ST,SF,94116,B08,18,7575,3,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,8,4,Sunset/Parkside,"(37.7440918577885, -122.494573841532)",131520270-RS2 +160272486,71,16010749,Medical Incident,01/27/2016,01/27/2016,01/27/2016 03:44:41 PM,01/27/2016 03:45:21 PM,01/27/2016 03:46:05 PM,01/27/2016 03:46:26 PM,01/27/2016 03:50:59 PM,01/27/2016 04:11:36 PM,01/27/2016 04:17:49 PM,Code 2 Transport,01/27/2016 04:45:03 PM,1200 Block of GOUGH ST,San Francisco,94109,B04,3,3261,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7843759652994, -122.42442259558)",160272486-71 +112450311,E08,11080868,Structure Fire,09/02/2011,09/02/2011,09/02/2011 06:05:12 PM,09/02/2011 06:05:13 PM,09/02/2011 06:05:23 PM,09/02/2011 06:06:28 PM,09/02/2011 06:08:56 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Fire,09/02/2011 06:09:20 PM,2ND ST/FOLSOM ST,SF,94107,B03,1,2147,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",112450311-E08 +121060018,67,12034989,Medical Incident,04/15/2012,04/14/2012,04/15/2012 12:51:07 AM,04/15/2012 12:53:13 AM,04/15/2012 12:53:58 AM,04/15/2012 12:54:08 AM,04/15/2012 01:08:19 AM,04/15/2012 01:46:13 AM,04/15/2012 01:57:07 AM,Code 2 Transport,04/15/2012 02:32:31 AM,0 Block of FOUNTAIN ST,SF,94114,B06,24,5517,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7500294084309, -122.441681630817)",121060018-67 +110510370,59,11017051,Medical Incident,02/20/2011,02/20/2011,02/20/2011 10:13:25 PM,02/20/2011 10:13:36 PM,02/20/2011 10:14:28 PM,02/20/2011 10:14:37 PM,02/20/2011 10:20:37 PM,02/20/2011 10:40:33 PM,02/20/2011 10:49:46 PM,Code 2 Transport,02/20/2011 11:03:44 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",110510370-59 +120990340,E38,12032952,Structure Fire,04/08/2012,04/08/2012,04/08/2012 10:22:38 PM,04/08/2012 10:22:38 PM,04/08/2012 10:22:43 PM,04/08/2012 10:22:50 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 10:26:01 PM,BUCHANAN ST/FELL ST,SF,94102,B02,36,3423,3,3,3,false,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7753173082714, -122.427724046608)",120990340-E38 +111670232,67,11055175,Traffic Collision,06/16/2011,06/16/2011,06/16/2011 06:32:18 PM,06/16/2011 06:34:05 PM,06/16/2011 06:36:01 PM,06/16/2011 06:36:15 PM,06/16/2011 06:47:24 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/16/2011 06:47:44 PM,200 Block of MONTEREY BLVD,SF,94131,B10,32,5746,2,2,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7316806819241, -122.440884413372)",111670232-67 +160631654,77,16025062,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:30:55 PM,03/03/2016 12:30:55 PM,03/03/2016 12:31:31 PM,03/03/2016 12:32:00 PM,03/03/2016 12:40:24 PM,03/03/2016 01:17:55 PM,03/03/2016 01:27:33 PM,Code 2 Transport,03/03/2016 01:41:44 PM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",160631654-77 +113580018,E07,11118870,Medical Incident,12/24/2011,12/23/2011,12/24/2011 12:48:39 AM,12/24/2011 12:49:54 AM,12/24/2011 12:50:09 AM,12/24/2011 12:51:30 AM,12/24/2011 12:57:28 AM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 12:57:29 AM,3100 Block of 17TH ST,SF,94110,B02,7,5246,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7635485886261, -122.4167748425)",113580018-E07 +160200215,70,16007851,Medical Incident,01/20/2016,01/19/2016,01/20/2016 02:08:19 AM,01/20/2016 02:09:30 AM,01/20/2016 02:10:31 AM,01/20/2016 02:12:49 AM,01/20/2016 02:25:59 AM,01/20/2016 02:36:36 AM,01/20/2016 02:45:57 AM,Code 2 Transport,01/20/2016 04:00:56 AM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160200215-70 +160580065,89,16022943,Medical Incident,02/27/2016,02/26/2016,02/27/2016 12:25:12 AM,02/27/2016 12:26:48 AM,02/27/2016 12:27:44 AM,02/27/2016 12:28:00 AM,02/27/2016 12:43:53 AM,02/27/2016 01:16:04 AM,02/27/2016 01:38:18 AM,Code 2 Transport,02/27/2016 02:11:49 AM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160580065-89 +123040268,E36,12100970,Structure Fire,10/30/2012,10/30/2012,10/30/2012 06:22:07 PM,10/30/2012 06:23:06 PM,10/30/2012 06:23:48 PM,04/25/2016 01:56:02 PM,10/30/2012 06:25:43 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/30/2012 06:29:06 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",123040268-E36 +130640267,67,13021496,Medical Incident,03/05/2013,03/05/2013,03/05/2013 04:43:11 PM,03/05/2013 04:45:16 PM,03/05/2013 04:45:56 PM,03/05/2013 04:46:30 PM,03/05/2013 04:50:00 PM,03/05/2013 05:01:31 PM,03/05/2013 05:17:52 PM,Code 2 Transport,03/05/2013 05:28:46 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",130640267-67 +131740372,E08,13059223,Medical Incident,06/23/2013,06/23/2013,06/23/2013 11:41:17 PM,06/23/2013 11:42:08 PM,06/23/2013 11:42:31 PM,06/23/2013 11:44:23 PM,06/23/2013 11:45:26 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/23/2013 11:48:36 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131740372-E08 +110020165,KM01,11000649,Medical Incident,01/02/2011,01/02/2011,01/02/2011 12:29:00 PM,01/02/2011 12:29:27 PM,01/02/2011 12:29:38 PM,01/02/2011 12:33:04 PM,01/02/2011 12:36:36 PM,01/02/2011 12:41:41 PM,01/02/2011 12:54:24 PM,Code 2 Transport,01/02/2011 01:21:30 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,2,2,false,,1,PRIVATE,2,2,9,Mission,"(37.7661343875141, -122.421935077177)",110020165-KM01 +111190368,T06,11039428,Electrical Hazard,04/29/2011,04/29/2011,04/29/2011 11:52:04 PM,04/29/2011 11:53:02 PM,04/29/2011 11:53:20 PM,04/29/2011 11:54:57 PM,04/29/2011 11:56:19 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/30/2011 12:06:14 AM,200 Block of DUBOCE AVE,SF,94103,B02,6,5127,3,3,3,false,,1,TRUCK,2,2,8,Mission,"(37.7696279240777, -122.425442212445)",111190368-T06 +131760264,AM02,13059773,Medical Incident,06/25/2013,06/25/2013,06/25/2013 03:47:59 PM,06/25/2013 03:50:21 PM,06/25/2013 03:50:48 PM,06/25/2013 03:51:27 PM,06/25/2013 03:54:10 PM,06/25/2013 04:21:09 PM,06/25/2013 04:29:53 PM,Code 2 Transport,06/25/2013 05:09:28 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",131760264-AM02 +160672211,61,16026814,Medical Incident,03/07/2016,03/07/2016,03/07/2016 04:03:26 PM,03/07/2016 04:06:54 PM,03/07/2016 04:07:13 PM,03/07/2016 04:07:21 PM,03/07/2016 04:12:30 PM,03/07/2016 04:42:57 PM,03/07/2016 04:47:53 PM,Code 2 Transport,03/07/2016 05:08:18 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160672211-61 +160373959,86,16014956,Traffic Collision,02/06/2016,02/06/2016,02/06/2016 10:09:49 PM,02/06/2016 10:09:49 PM,02/06/2016 10:10:40 PM,02/06/2016 10:10:49 PM,02/06/2016 10:14:56 PM,02/06/2016 10:31:05 PM,02/06/2016 10:38:22 PM,Code 2 Transport,02/06/2016 11:29:15 PM,3RD ST/LA SALLE AV,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371695334489, -122.389864463351)",160373959-86 +131100157,54,13036987,Medical Incident,04/20/2013,04/20/2013,04/20/2013 11:20:25 AM,04/20/2013 11:23:05 AM,04/20/2013 11:23:17 AM,04/20/2013 11:23:54 AM,04/20/2013 11:37:01 AM,04/20/2013 12:57:14 PM,04/20/2013 12:57:19 PM,Code 2 Transport,04/20/2013 01:02:22 PM,300 Block of 28TH AVE,SF,94121,B07,14,7227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7828027305271, -122.48822032656)",131100157-54 +140900078,B01,14030214,Alarms,03/31/2014,03/30/2014,03/31/2014 07:40:53 AM,03/31/2014 07:42:38 AM,03/31/2014 07:45:18 AM,03/31/2014 07:49:31 AM,03/31/2014 07:50:01 AM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Fire,03/31/2014 08:00:18 AM,1900 Block of HYDE ST,SAN FRANCISCO,94109,B01,41,1611,3,3,3,false,Alarm,1,CHIEF,2,1,3,Russian Hill,"(37.7988211829314, -122.418902323417)",140900078-B01 +160101309,AM08,16004012,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:37:04 AM,01/10/2016 11:38:06 AM,01/10/2016 11:38:43 AM,01/10/2016 11:39:19 AM,01/10/2016 11:44:42 AM,01/10/2016 12:01:31 PM,01/10/2016 12:18:09 PM,Code 2 Transport,01/10/2016 12:40:27 PM,700 Block of JACKSON ST,San Francisco,94133,B01,2,1312,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7960100024932, -122.4072125994)",160101309-AM08 +160363585,53,16014414,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:07:11 PM,02/05/2016 08:10:27 PM,02/05/2016 08:10:40 PM,02/05/2016 08:10:51 PM,02/05/2016 08:14:54 PM,02/05/2016 08:29:58 PM,02/05/2016 08:41:15 PM,Code 2 Transport,02/05/2016 09:25:21 PM,25TH ST/MISSION ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7506396511688, -122.418287870978)",160363585-53 +160092312,67,16003706,Medical Incident,01/09/2016,01/09/2016,01/09/2016 04:05:25 PM,01/09/2016 04:05:25 PM,01/09/2016 04:05:40 PM,01/09/2016 04:08:18 PM,01/09/2016 04:14:36 PM,01/09/2016 04:42:22 PM,01/09/2016 04:52:48 PM,Code 2 Transport,01/09/2016 05:32:00 PM,CALIFORNIA ST/POLK ST,San Francisco,94109,B04,41,1635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7905782582579, -122.420687383115)",160092312-67 +160461892,61,16018529,Medical Incident,02/15/2016,02/15/2016,02/15/2016 01:58:28 PM,02/15/2016 01:58:28 PM,02/15/2016 01:59:23 PM,02/15/2016 01:59:36 PM,02/15/2016 02:07:32 PM,02/15/2016 02:20:01 PM,02/15/2016 02:45:23 PM,Code 2 Transport,02/15/2016 03:20:01 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160461892-61 +160773937,79,16030792,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:08:32 PM,03/17/2016 09:09:11 PM,03/17/2016 09:10:34 PM,03/17/2016 09:10:44 PM,03/17/2016 09:17:03 PM,03/17/2016 09:28:31 PM,03/17/2016 09:40:05 PM,Code 2 Transport,03/17/2016 10:02:04 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160773937-79 +110300087,58,11009774,Medical Incident,01/30/2011,01/29/2011,01/30/2011 06:16:58 AM,01/30/2011 06:18:16 AM,01/30/2011 06:19:25 AM,01/30/2011 06:19:42 AM,04/25/2016 02:06:21 PM,01/30/2011 06:27:54 AM,01/30/2011 06:45:49 AM,Code 2 Transport,01/30/2011 07:06:45 AM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,2,2,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",110300087-58 +160432835,76,16017404,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:42:48 PM,02/12/2016 05:44:15 PM,02/12/2016 05:44:32 PM,02/12/2016 05:44:39 PM,02/12/2016 05:50:57 PM,02/12/2016 06:05:41 PM,02/12/2016 06:08:53 PM,Code 2 Transport,02/12/2016 07:00:26 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160432835-76 +102530359,58,10080089,Medical Incident,09/10/2010,09/10/2010,09/10/2010 09:04:11 PM,09/10/2010 09:05:35 PM,09/10/2010 09:06:15 PM,09/10/2010 09:06:27 PM,09/10/2010 09:13:10 PM,09/10/2010 09:24:29 PM,09/10/2010 09:43:55 PM,Code 2 Transport,09/10/2010 10:12:23 PM,1200 Block of 38TH AVE,SF,94122,B08,23,7565,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7636074446689, -122.497481002564)",102530359-58 +102630067,94,10083122,Traffic Collision,09/20/2010,09/19/2010,09/20/2010 07:57:51 AM,09/20/2010 07:59:26 AM,09/20/2010 08:00:13 AM,04/25/2016 02:08:30 PM,09/20/2010 08:08:26 AM,09/20/2010 08:23:22 AM,09/20/2010 08:32:36 AM,Code 2 Transport,09/20/2010 09:03:47 AM,22ND ST/HARRISON ST,SF,94110,B06,7,545,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7558325113453, -122.412197892408)",102630067-94 +111390103,E03,11046140,Medical Incident,05/19/2011,05/19/2011,05/19/2011 10:01:47 AM,05/19/2011 10:03:34 AM,05/19/2011 10:03:55 AM,05/19/2011 10:08:17 AM,05/19/2011 10:10:05 AM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 10:17:01 AM,900 Block of POST ST,SF,94109,B04,3,1641,1,1,2,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7871735250079, -122.417641342653)",111390103-E03 +120700110,E42,12023203,Medical Incident,03/10/2012,03/10/2012,03/10/2012 09:16:59 AM,03/10/2012 09:17:35 AM,03/10/2012 09:17:49 AM,03/10/2012 09:19:08 AM,03/10/2012 09:21:01 AM,04/25/2016 01:59:44 PM,03/10/2012 09:44:03 AM,Other,03/10/2012 09:44:08 AM,0 Block of MERCURY ST,SF,94124,B10,42,6447,3,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7319360833699, -122.401511978709)",120700110-E42 +132270039,E22,13076506,Odor (Strange / Unknown),08/15/2013,08/14/2013,08/15/2013 03:51:02 AM,08/15/2013 03:51:50 AM,08/15/2013 03:52:25 AM,08/15/2013 03:54:53 AM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,Other,08/15/2013 04:28:19 AM,1400 Block of 17TH AVE,SF,94122,B08,22,7371,3,3,3,false,Alarm,1,ENGINE,4,8,7,Inner Sunset,"(37.7608577152876, -122.474858703379)",132270039-E22 +160690565,88,16027354,Medical Incident,03/09/2016,03/08/2016,03/09/2016 07:14:57 AM,03/09/2016 07:17:03 AM,03/09/2016 07:17:48 AM,03/09/2016 07:18:00 AM,03/09/2016 07:28:59 AM,03/09/2016 07:38:43 AM,03/09/2016 07:58:38 AM,Code 2 Transport,03/09/2016 08:31:59 AM,100 Block of COLERIDGE ST,San Francisco,94110,B06,11,5662,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",160690565-88 +160851868,AM02,16033789,Medical Incident,03/25/2016,03/25/2016,03/25/2016 01:14:54 PM,03/25/2016 01:16:50 PM,03/25/2016 01:18:36 PM,03/25/2016 01:19:01 PM,03/25/2016 01:28:53 PM,03/25/2016 01:45:22 PM,03/25/2016 02:28:09 PM,Code 2 Transport,03/25/2016 02:49:48 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160851868-AM02 +110340264,T13,11011228,Alarms,02/03/2011,02/03/2011,02/03/2011 04:19:02 PM,02/03/2011 04:20:41 PM,02/03/2011 04:21:17 PM,02/03/2011 04:23:19 PM,02/03/2011 04:25:57 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,02/03/2011 04:34:59 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",110340264-T13 +160190045,71,16007439,Medical Incident,01/19/2016,01/18/2016,01/19/2016 12:16:01 AM,01/19/2016 12:19:01 AM,01/19/2016 12:19:19 AM,01/19/2016 12:20:20 AM,01/19/2016 12:24:24 AM,01/19/2016 12:42:16 AM,01/19/2016 12:48:33 AM,Code 2 Transport,01/19/2016 01:20:53 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7609766090845, -122.434457353955)",160190045-71 +122420131,AM02,12080004,Medical Incident,08/29/2012,08/29/2012,08/29/2012 10:36:48 AM,08/29/2012 10:38:09 AM,08/29/2012 10:38:24 AM,08/29/2012 10:39:13 AM,08/29/2012 10:41:33 AM,08/29/2012 10:56:23 AM,08/29/2012 11:51:01 AM,Code 2 Transport,08/29/2012 11:01:48 AM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,1,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",122420131-AM02 +132720323,AM22,13092573,Medical Incident,09/29/2013,09/29/2013,09/29/2013 08:06:22 PM,09/29/2013 08:06:44 PM,09/29/2013 08:07:03 PM,09/29/2013 08:07:49 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 08:12:07 PM,10TH ST/HOWARD ST,SF,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7740433259374, -122.414367692219)",132720323-AM22 +160191648,75,16007628,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:35:55 PM,01/19/2016 12:37:12 PM,01/19/2016 12:37:54 PM,01/19/2016 12:38:17 PM,01/19/2016 12:47:05 PM,01/19/2016 01:17:18 PM,01/19/2016 01:39:07 PM,Code 2 Transport,01/19/2016 02:33:36 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160191648-75 +102410261,KM14,10076085,Medical Incident,08/29/2010,08/29/2010,08/29/2010 05:58:08 PM,08/29/2010 05:58:52 PM,08/29/2010 05:59:16 PM,08/29/2010 05:59:48 PM,08/29/2010 06:01:25 PM,08/29/2010 06:09:08 PM,08/29/2010 06:12:34 PM,Code 2 Transport,08/29/2010 06:37:32 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,1,2,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",102410261-KM14 +160331990,84,16013019,Medical Incident,02/02/2016,02/02/2016,02/02/2016 02:27:01 PM,02/02/2016 02:27:57 PM,02/02/2016 02:28:33 PM,02/02/2016 02:28:50 PM,02/02/2016 02:36:53 PM,02/02/2016 02:57:48 PM,02/02/2016 03:01:18 PM,Code 2 Transport,02/02/2016 03:45:11 PM,GEARY BL/BLAKE ST,San Francisco,94118,B05,10,4454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7819841151425, -122.451119860337)",160331990-84 +103570176,E18,10114567,Medical Incident,12/23/2010,12/23/2010,12/23/2010 12:52:38 PM,12/23/2010 12:54:19 PM,12/23/2010 12:54:57 PM,12/23/2010 12:56:10 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/23/2010 12:56:44 PM,19TH AV/RIVERA ST,SF,94116,B08,40,7433,3,3,3,true,,1,ENGINE,5,8,4,West of Twin Peaks,"(37.7467820382349, -122.475902020366)",103570176-E18 +120820384,83,12027399,Medical Incident,03/22/2012,03/22/2012,03/22/2012 10:23:27 PM,03/22/2012 10:24:25 PM,03/22/2012 10:25:23 PM,03/22/2012 10:25:35 PM,03/22/2012 10:37:14 PM,03/22/2012 10:52:23 PM,03/22/2012 11:23:11 PM,Code 3 Transport,03/22/2012 11:42:36 PM,0 Block of SANTOS ST,SF,94134,B09,43,6244,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.711332789313, -122.41867937435)",120820384-83 +102950335,E28,10094210,Medical Incident,10/22/2010,10/22/2010,10/22/2010 07:04:18 PM,10/22/2010 07:04:54 PM,10/22/2010 07:05:27 PM,10/22/2010 07:06:33 PM,10/22/2010 07:08:30 PM,04/25/2016 02:07:59 PM,04/25/2016 02:07:59 PM,Other,10/22/2010 07:17:24 PM,400 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8072284650361, -122.416449199064)",102950335-E28 +131570338,85,13053364,Medical Incident,06/06/2013,06/06/2013,06/06/2013 06:42:27 PM,06/06/2013 06:44:50 PM,06/06/2013 06:46:37 PM,06/06/2013 06:46:45 PM,06/06/2013 06:53:53 PM,06/06/2013 07:21:15 PM,06/06/2013 07:44:34 PM,Code 2 Transport,06/06/2013 08:17:34 PM,500 Block of MOSCOW ST,SF,94112,B09,43,6156,2,2,2,false,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7189576969244, -122.42945072491)",131570338-85 +120030064,87,12000938,Medical Incident,01/03/2012,01/02/2012,01/03/2012 05:19:14 AM,01/03/2012 05:20:53 AM,01/03/2012 05:22:17 AM,01/03/2012 05:22:54 AM,01/03/2012 05:42:03 AM,01/03/2012 05:42:10 AM,04/25/2016 02:00:49 PM,Code 2 Transport,01/03/2012 06:07:03 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",120030064-87 +112980065,E19,11098777,Medical Incident,10/25/2011,10/25/2011,10/25/2011 08:20:09 AM,10/25/2011 08:20:54 AM,10/25/2011 08:21:37 AM,10/25/2011 08:23:17 AM,10/25/2011 08:27:24 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 08:40:46 AM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",112980065-E19 +102340054,B03,10073518,Structure Fire,08/22/2010,08/21/2010,08/22/2010 04:07:22 AM,08/22/2010 04:07:58 AM,08/22/2010 04:08:16 AM,08/22/2010 04:09:41 AM,08/22/2010 04:12:45 AM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 04:14:45 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,,1,CHIEF,7,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",102340054-B03 +112360355,72,11078038,Medical Incident,08/24/2011,08/24/2011,08/24/2011 11:04:53 PM,08/24/2011 11:06:12 PM,08/24/2011 11:06:23 PM,08/24/2011 11:06:34 PM,04/25/2016 02:03:01 PM,08/24/2011 11:11:46 PM,08/24/2011 11:25:24 PM,Code 2 Transport,08/24/2011 11:38:55 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7316639968394, -122.38316735998)",112360355-72 +160100330,89,16003893,Medical Incident,01/10/2016,01/09/2016,01/10/2016 02:25:47 AM,01/10/2016 02:27:02 AM,01/10/2016 02:28:07 AM,01/10/2016 02:28:12 AM,01/10/2016 02:33:33 AM,01/10/2016 02:45:34 AM,01/10/2016 03:01:53 AM,Code 2 Transport,01/10/2016 03:23:36 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",160100330-89 +112160414,88,11071542,Medical Incident,08/04/2011,08/04/2011,08/04/2011 11:20:57 PM,08/04/2011 11:21:37 PM,08/04/2011 11:22:03 PM,08/04/2011 11:23:04 PM,08/04/2011 11:30:28 PM,08/04/2011 11:38:12 PM,08/05/2011 12:07:15 AM,Code 2 Transport,08/05/2011 12:40:09 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",112160414-88 +160761653,52,16030131,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:16:28 PM,03/16/2016 12:17:49 PM,03/16/2016 12:19:05 PM,03/16/2016 12:19:13 PM,03/16/2016 12:31:18 PM,03/16/2016 12:53:56 PM,03/16/2016 01:20:33 PM,Code 2 Transport,03/16/2016 01:57:12 PM,1900 Block of 14TH AVE,San Francisco,94116,B08,40,7368,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.751629099333, -122.47047025628)",160761653-52 +131940285,E36,13066045,Medical Incident,07/13/2013,07/13/2013,07/13/2013 07:32:24 PM,07/13/2013 07:34:32 PM,07/13/2013 07:34:58 PM,07/13/2013 07:37:03 PM,07/13/2013 07:38:58 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 07:51:55 PM,0 Block of 8TH ST,SF,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7778103407202, -122.413699499217)",131940285-E36 +130420031,55,13014201,Medical Incident,02/11/2013,02/10/2013,02/11/2013 02:56:05 AM,02/11/2013 02:56:25 AM,02/11/2013 02:56:42 AM,02/11/2013 02:56:57 AM,02/11/2013 03:02:52 AM,02/11/2013 03:17:02 AM,02/11/2013 03:38:45 AM,Code 2 Transport,02/11/2013 04:10:04 AM,GREAT HY/LAWTON ST,SF,94122,B08,23,7724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7565512306025, -122.508902542437)",130420031-55 +160891163,KM13,16035280,Medical Incident,03/29/2016,03/29/2016,03/29/2016 10:04:59 AM,03/29/2016 10:05:54 AM,03/29/2016 10:08:34 AM,03/29/2016 10:08:36 AM,03/29/2016 10:19:16 AM,03/29/2016 10:43:11 AM,03/29/2016 10:58:07 AM,Code 2 Transport,03/29/2016 11:21:45 AM,3RD ST/HOWARD ST,San Francisco,94105,B03,1,2177,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",160891163-KM13 +132380013,E03,13080157,Medical Incident,08/26/2013,08/25/2013,08/26/2013 01:01:33 AM,08/26/2013 01:03:22 AM,08/26/2013 01:04:23 AM,08/26/2013 01:06:01 AM,08/26/2013 01:09:05 AM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Other,08/26/2013 01:14:24 AM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",132380013-E03 +140620203,KM14,14020961,Medical Incident,03/03/2014,03/03/2014,03/03/2014 02:08:22 PM,03/03/2014 02:09:27 PM,03/03/2014 02:13:20 PM,03/03/2014 02:13:50 PM,03/03/2014 02:19:22 PM,03/03/2014 02:34:34 PM,03/03/2014 03:15:45 PM,Code 2 Transport,03/03/2014 03:24:11 PM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",140620203-KM14 +112860447,E36,11094963,Medical Incident,10/13/2011,10/13/2011,10/13/2011 10:03:49 PM,10/13/2011 10:03:56 PM,10/13/2011 10:04:07 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/13/2011 10:06:04 PM,400 Block of FULTON ST,SF,94102,B02,36,3264,3,2,2,true,,1,ENGINE,2,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",112860447-E36 +110500373,RS1,11016685,Traffic Collision,02/19/2011,02/19/2011,02/19/2011 08:43:22 PM,02/19/2011 08:44:08 PM,02/19/2011 08:44:31 PM,02/19/2011 08:45:59 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 08:46:21 PM,MARKET ST/6TH ST,SF,94102,B03,1,2248,3,3,3,false,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7822305756448, -122.410292026777)",110500373-RS1 +111040126,E08,11034425,Medical Incident,04/14/2011,04/14/2011,04/14/2011 11:06:30 AM,04/14/2011 11:06:59 AM,04/14/2011 11:07:13 AM,04/14/2011 11:07:51 AM,04/14/2011 11:09:55 AM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/14/2011 11:26:24 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",111040126-E08 +160590504,KM03,16023382,Medical Incident,02/28/2016,02/27/2016,02/28/2016 03:55:04 AM,02/28/2016 03:55:04 AM,02/28/2016 03:56:17 AM,02/28/2016 03:56:53 AM,02/28/2016 04:01:48 AM,02/28/2016 04:39:52 AM,02/28/2016 04:54:59 AM,Code 2 Transport,02/28/2016 05:32:45 AM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",160590504-KM03 +160860266,72,16034049,Medical Incident,03/26/2016,03/25/2016,03/26/2016 01:54:46 AM,03/26/2016 01:58:00 AM,03/26/2016 01:58:32 AM,03/26/2016 01:59:30 AM,03/26/2016 02:07:30 AM,03/26/2016 02:37:04 AM,03/26/2016 02:47:38 AM,Code 2 Transport,03/26/2016 03:39:21 AM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",160860266-72 +130450282,55,13015337,Medical Incident,02/14/2013,02/14/2013,02/14/2013 03:35:23 PM,02/14/2013 03:37:27 PM,02/14/2013 03:38:31 PM,04/25/2016 01:54:18 PM,02/14/2013 03:56:20 PM,02/14/2013 04:20:19 PM,02/14/2013 04:38:07 PM,Code 2 Transport,02/14/2013 05:07:11 PM,700 Block of HOWARD ST,SF,94103,B03,1,2177,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7841836756047, -122.401637180525)",130450282-55 +102410047,E06,10075913,Medical Incident,08/29/2010,08/28/2010,08/29/2010 03:22:13 AM,08/29/2010 03:22:55 AM,08/29/2010 03:24:09 AM,08/29/2010 03:25:38 AM,08/29/2010 03:26:59 AM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/29/2010 03:40:21 AM,200 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.766821331685, -122.428814858006)",102410047-E06 +133470293,B01,13117837,Alarms,12/13/2013,12/13/2013,12/13/2013 05:27:57 PM,12/13/2013 05:29:49 PM,12/13/2013 05:30:19 PM,12/13/2013 05:31:31 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 05:32:08 PM,4TH ST/CHANNEL ST,SF,,B03,8,2225,3,3,3,false,Alarm,1,CHIEF,4,3,6,None,"(37.7750268633971, -122.392346204303)",133470293-B01 +123290199,E32,12109434,Other,11/24/2012,11/24/2012,11/24/2012 03:04:20 PM,11/24/2012 03:04:59 PM,11/24/2012 03:05:08 PM,11/24/2012 03:06:06 PM,11/24/2012 03:08:25 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 04:02:55 PM,SAN JOSE AV/29TH ST,SF,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7439422420021, -122.422669446432)",123290199-E32 +102440033,E07,10076854,Structure Fire,09/01/2010,08/31/2010,09/01/2010 03:49:04 AM,09/01/2010 03:49:48 AM,09/01/2010 03:50:10 AM,09/01/2010 03:51:12 AM,09/01/2010 03:52:57 AM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Fire,09/01/2010 04:07:45 AM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7576217212029, -122.418887293065)",102440033-E07 +140680161,E11,14022993,Medical Incident,03/09/2014,03/09/2014,03/09/2014 01:21:23 PM,03/09/2014 01:22:16 PM,03/09/2014 01:22:55 PM,03/09/2014 01:24:02 PM,03/09/2014 01:36:02 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Patient Declined Transport,03/09/2014 01:36:08 PM,3100 Block of MISSION ST,SAN FRANCISCO,94110,B06,11,5624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7474453071495, -122.418609719102)",140680161-E11 +120020017,KM15,12000594,Medical Incident,01/02/2012,01/01/2012,01/02/2012 01:15:26 AM,01/02/2012 01:16:32 AM,01/02/2012 01:16:58 AM,01/02/2012 01:17:35 AM,01/02/2012 01:29:41 AM,01/02/2012 02:11:37 AM,01/02/2012 02:11:42 AM,Code 2 Transport,01/02/2012 02:31:15 AM,100 Block of STEUART ST,SF,94105,B03,35,2111,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7926568376756, -122.39236449327)",120020017-KM15 +132290342,T02,13077430,Structure Fire,08/17/2013,08/17/2013,08/17/2013 07:20:41 PM,08/17/2013 07:20:41 PM,08/17/2013 07:23:15 PM,08/17/2013 07:24:50 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Other,08/17/2013 07:26:18 PM,COLUMBUS AV/UNION ST,SF,94133,B01,28,1334,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",132290342-T02 +123220157,T01,12107022,Alarms,11/17/2012,11/17/2012,11/17/2012 09:55:10 AM,11/17/2012 09:56:06 AM,11/17/2012 09:56:16 AM,11/17/2012 09:58:39 AM,11/17/2012 09:59:54 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 10:03:38 AM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",123220157-T01 +102490089,54,10078612,Medical Incident,09/06/2010,09/06/2010,09/06/2010 09:45:15 AM,09/06/2010 09:46:01 AM,09/06/2010 09:46:11 AM,09/06/2010 09:46:23 AM,09/06/2010 10:12:58 AM,09/06/2010 10:13:12 AM,09/06/2010 10:20:39 AM,Code 2 Transport,09/06/2010 10:46:41 AM,500 Block of 20TH AVE,SF,94121,B07,14,7165,3,2,2,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7774741918641, -122.479242659231)",102490089-54 +160111742,79,16004402,Medical Incident,01/11/2016,01/11/2016,01/11/2016 01:21:46 PM,01/11/2016 01:23:13 PM,01/11/2016 01:23:53 PM,01/11/2016 01:24:00 PM,01/11/2016 01:29:26 PM,01/11/2016 01:45:47 PM,01/11/2016 02:09:43 PM,Code 2 Transport,01/11/2016 02:45:17 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160111742-79 +120420197,E06,12014041,Alarms,02/11/2012,02/11/2012,02/11/2012 01:11:29 PM,02/11/2012 01:12:38 PM,02/11/2012 01:12:52 PM,02/11/2012 01:13:47 PM,02/11/2012 01:15:51 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 01:17:37 PM,300 Block of GUERRERO ST,SF,94103,B02,6,5235,3,3,3,true,Alarm,1,ENGINE,2,2,8,Mission,"(37.7656013077776, -122.424063077074)",120420197-E06 +131820217,E36,13062032,Medical Incident,07/01/2013,07/01/2013,07/01/2013 01:12:50 PM,07/01/2013 01:13:32 PM,07/01/2013 01:13:51 PM,07/01/2013 01:15:43 PM,07/01/2013 01:18:24 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,07/01/2013 01:33:23 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",131820217-E36 +111560113,T05,11051525,Medical Incident,06/05/2011,06/05/2011,06/05/2011 08:18:00 AM,06/05/2011 08:18:37 AM,06/05/2011 08:18:46 AM,06/05/2011 08:19:41 AM,06/05/2011 08:20:59 AM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 08:31:42 AM,1100 Block of MCALLISTER ST,SF,94117,B05,5,3534,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7786327618285, -122.431321447148)",111560113-T05 +111230387,E01,11040806,Medical Incident,05/03/2011,05/03/2011,05/03/2011 10:23:29 PM,05/03/2011 10:24:00 PM,05/03/2011 10:24:34 PM,05/03/2011 10:25:21 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 10:28:06 PM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",111230387-E01 +102700294,AM08,10085745,Medical Incident,09/27/2010,09/27/2010,09/27/2010 05:26:06 PM,09/27/2010 05:27:56 PM,09/27/2010 05:28:29 PM,09/27/2010 05:29:02 PM,04/25/2016 02:08:23 PM,09/27/2010 05:42:41 PM,09/27/2010 05:53:33 PM,Code 2 Transport,09/27/2010 06:16:50 PM,100 Block of ALBION ST,SF,94110,B02,7,5247,3,3,3,false,,1,PRIVATE,2,2,8,Mission,"(37.7636369573177, -122.422805752252)",102700294-AM08 +160281389,61,16011049,Medical Incident,01/28/2016,01/28/2016,01/28/2016 11:23:28 AM,01/28/2016 11:26:43 AM,01/28/2016 11:26:51 AM,01/28/2016 11:27:03 AM,01/28/2016 11:43:03 AM,01/28/2016 12:04:06 PM,01/28/2016 12:10:43 PM,Code 2 Transport,01/28/2016 12:47:18 PM,0 Block of GEARY ST,San Francisco,94108,B01,1,1241,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",160281389-61 +131570316,68,13053343,Traffic Collision,06/06/2013,06/06/2013,06/06/2013 05:32:45 PM,06/06/2013 05:32:49 PM,06/06/2013 05:33:02 PM,06/06/2013 05:33:45 PM,06/06/2013 05:58:17 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Patient Declined Transport,06/06/2013 06:27:25 PM,MASONIC AV/OAK ST,SF,94117,B05,21,4465,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Golden Gate Park,"(37.7720803934485, -122.445716664284)",131570316-68 +131030348,89,13034736,Medical Incident,04/13/2013,04/13/2013,04/13/2013 09:44:34 PM,04/13/2013 09:46:57 PM,04/13/2013 09:48:43 PM,04/13/2013 09:48:51 PM,04/13/2013 10:01:43 PM,04/13/2013 10:33:32 PM,04/13/2013 10:47:38 PM,Code 2 Transport,04/13/2013 11:30:19 PM,200 Block of CLAY ST,SF,94111,B01,13,1133,2,2,2,false,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7952923975164, -122.398573051955)",131030348-89 +131360448,AM10,13046100,Medical Incident,05/16/2013,05/16/2013,05/16/2013 10:58:18 PM,05/16/2013 11:00:10 PM,05/16/2013 11:00:47 PM,05/16/2013 11:03:32 PM,05/16/2013 11:07:59 PM,05/16/2013 11:25:07 PM,05/16/2013 11:28:24 PM,Code 2 Transport,05/17/2013 12:13:58 AM,2300 Block of SACRAMENTO ST,SF,94115,B04,38,3435,3,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7900938901936, -122.431549817415)",131360448-AM10 +113200066,92,11106197,Medical Incident,11/16/2011,11/15/2011,11/16/2011 07:45:32 AM,11/16/2011 07:47:00 AM,11/16/2011 07:47:22 AM,11/16/2011 07:47:33 AM,11/16/2011 07:55:30 AM,11/16/2011 08:11:01 AM,11/16/2011 08:23:51 AM,Code 2 Transport,11/16/2011 08:47:20 AM,6TH ST/CLEMENTINA ST,SF,94103,B03,1,2253,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.778942761412, -122.406162859193)",113200066-92 +133100027,E29,13105265,Other,11/06/2013,11/05/2013,11/06/2013 03:51:48 AM,11/06/2013 03:52:54 AM,11/06/2013 03:53:11 AM,11/06/2013 03:54:38 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/06/2013 03:58:49 AM,10TH ST/BRYANT ST,SF,94103,B02,29,2345,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7703485160634, -122.409735890482)",133100027-E29 +140050090,KM07,14001727,Medical Incident,01/05/2014,01/04/2014,01/05/2014 07:16:54 AM,01/05/2014 07:17:32 AM,01/05/2014 07:17:44 AM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 07:34:05 AM,HYDE ST/MARKET ST,SF,94103,B02,36,1646,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",140050090-KM07 +160473692,72,16019130,Medical Incident,02/16/2016,02/16/2016,02/16/2016 09:23:14 PM,02/16/2016 09:24:50 PM,02/16/2016 09:25:18 PM,02/16/2016 09:25:43 PM,02/16/2016 09:27:38 PM,02/16/2016 09:49:15 PM,02/16/2016 09:53:15 PM,Code 2 Transport,02/16/2016 10:32:28 PM,600 Block of SUTTER ST,San Francisco,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",160473692-72 +112900182,96,11096212,Medical Incident,10/17/2011,10/17/2011,10/17/2011 12:54:44 PM,10/17/2011 12:56:14 PM,10/17/2011 12:57:25 PM,10/17/2011 12:58:00 PM,10/17/2011 01:09:40 PM,10/17/2011 01:19:05 PM,10/17/2011 01:44:27 PM,Code 2 Transport,10/17/2011 02:06:52 PM,0 Block of CLAY ST,SF,94111,B01,13,1133,1,1,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.795488462612, -122.396159020859)",112900182-96 +112190062,T10,11072306,Citizen Assist / Service Call,08/07/2011,08/06/2011,08/07/2011 07:04:00 AM,08/07/2011 07:05:31 AM,08/07/2011 07:06:10 AM,08/07/2011 07:07:36 AM,08/07/2011 07:09:41 AM,04/25/2016 02:03:17 PM,04/25/2016 02:03:17 PM,Other,08/07/2011 07:26:02 AM,2500 Block of SUTTER ST,SF,94115,B05,10,4262,3,3,3,false,,1,TRUCK,2,5,5,Japantown,"(37.7848770596387, -122.442348914658)",112190062-T10 +160122996,AM06,16004884,Medical Incident,01/12/2016,01/12/2016,01/12/2016 06:13:08 PM,01/12/2016 06:14:47 PM,01/12/2016 06:19:21 PM,01/12/2016 06:19:21 PM,01/12/2016 06:19:21 PM,01/12/2016 07:22:42 PM,01/12/2016 07:23:35 PM,Code 2 Transport,01/12/2016 08:09:17 PM,TURK BL/STANYAN BL,San Francisco,94118,B07,21,4557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,1,Lone Mountain/USF,"(37.7775992781141, -122.455216941832)",160122996-AM06 +121570102,AM16,12051882,Medical Incident,06/05/2012,06/05/2012,06/05/2012 09:24:12 AM,06/05/2012 09:25:21 AM,06/05/2012 09:25:46 AM,06/05/2012 09:26:27 AM,06/05/2012 09:34:57 AM,06/05/2012 09:53:10 AM,06/05/2012 10:11:20 AM,Code 2 Transport,06/05/2012 10:44:34 AM,400 Block of ATHENS ST,SF,94112,B09,43,6156,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7208342283008, -122.428956362457)",121570102-AM16 +103400134,E16,10108792,Medical Incident,12/06/2010,12/06/2010,12/06/2010 10:32:16 AM,12/06/2010 10:32:51 AM,12/06/2010 10:33:35 AM,12/06/2010 10:35:58 AM,12/06/2010 10:39:39 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/06/2010 10:57:14 AM,3100 Block of SACRAMENTO ST,SF,94115,B04,10,4264,3,3,3,true,,1,ENGINE,2,4,2,Pacific Heights,"(37.7885212285579, -122.444775114678)",103400134-E16 +112870317,T06,11095253,Alarms,10/14/2011,10/14/2011,10/14/2011 04:39:24 PM,10/14/2011 04:40:07 PM,10/14/2011 04:40:16 PM,10/14/2011 04:41:15 PM,10/14/2011 04:43:58 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 04:48:50 PM,200 Block of 14TH ST,SF,94103,B02,36,5215,3,3,3,false,,1,TRUCK,3,2,9,Mission,"(37.7683277432997, -122.418173796435)",112870317-T06 +102660183,E03,10084170,Industrial Accidents,09/23/2010,09/23/2010,09/23/2010 01:58:37 PM,09/23/2010 02:00:05 PM,09/23/2010 02:00:34 PM,09/23/2010 02:01:36 PM,09/23/2010 02:02:52 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 02:14:39 PM,1100 Block of SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7878072346953, -122.41927961906)",102660183-E03 +113260399,82,11108414,Medical Incident,11/22/2011,11/22/2011,11/22/2011 11:50:37 PM,11/22/2011 11:51:22 PM,11/22/2011 11:51:41 PM,11/22/2011 11:51:46 PM,11/22/2011 11:54:49 PM,11/23/2011 12:11:54 AM,11/23/2011 12:23:38 AM,Code 2 Transport,11/23/2011 12:37:11 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113260399-82 +112390227,89,11078904,Medical Incident,08/27/2011,08/27/2011,08/27/2011 02:58:34 PM,08/27/2011 02:58:50 PM,08/27/2011 02:59:06 PM,08/27/2011 03:01:07 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 03:02:22 PM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,3,3,3,true,,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",112390227-89 +132490418,68,13084231,Medical Incident,09/06/2013,09/06/2013,09/06/2013 11:47:50 PM,09/06/2013 11:48:02 PM,09/06/2013 11:49:48 PM,09/06/2013 11:50:14 PM,09/06/2013 11:59:55 PM,09/07/2013 12:29:16 AM,09/07/2013 12:49:37 AM,Code 2 Transport,09/07/2013 01:12:12 AM,2100 Block of FUNSTON AVE,SF,94116,B08,40,7348,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7480158894767, -122.469420379357)",132490418-68 +110970328,E10,11032252,Traffic Collision,04/07/2011,04/07/2011,04/07/2011 05:22:02 PM,04/07/2011 05:23:03 PM,04/07/2011 05:23:32 PM,04/07/2011 05:24:33 PM,04/07/2011 05:25:17 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Other,04/07/2011 05:51:06 PM,PRESIDIO AV/CALIFORNIA ST,SF,94118,B04,10,4336,2,2,2,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7872618525102, -122.446792778615)",110970328-E10 +112590193,E28,11085400,Medical Incident,09/16/2011,09/16/2011,09/16/2011 12:58:38 PM,09/16/2011 01:00:47 PM,09/16/2011 01:01:13 PM,09/16/2011 01:02:12 PM,09/16/2011 01:03:44 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/16/2011 01:10:46 PM,600 Block of LOMBARD ST,SF,94133,B01,28,1346,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8029850565766, -122.41222223167)",112590193-E28 +133190301,E07,13108480,Medical Incident,11/15/2013,11/15/2013,11/15/2013 05:35:18 PM,11/15/2013 05:36:50 PM,11/15/2013 05:37:29 PM,11/15/2013 05:38:46 PM,11/15/2013 05:41:54 PM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,04/25/2016 01:49:45 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133190301-E07 +131540266,77,13052226,Medical Incident,06/03/2013,06/03/2013,06/03/2013 03:12:45 PM,06/03/2013 03:16:33 PM,06/03/2013 03:16:40 PM,06/03/2013 03:17:33 PM,06/03/2013 03:22:09 PM,06/03/2013 03:41:57 PM,06/03/2013 04:08:06 PM,Code 2 Transport,06/03/2013 04:28:58 PM,700 Block of WASHINGTON ST,SF,94108,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.795117116509, -122.406249619336)",131540266-77 +120880035,E31,12029066,Medical Incident,03/28/2012,03/27/2012,03/28/2012 02:57:35 AM,03/28/2012 02:58:37 AM,03/28/2012 02:58:52 AM,03/28/2012 03:01:15 AM,03/28/2012 03:03:05 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 03:06:00 AM,CALIFORNIA ST/PARK PRESIDIO BL,SF,94118,B07,31,7153,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7844488888819, -122.472585865925)",120880035-E31 +160720719,78,16028503,Medical Incident,03/12/2016,03/11/2016,03/12/2016 07:24:32 AM,03/12/2016 07:25:23 AM,03/12/2016 07:25:30 AM,03/12/2016 07:25:36 AM,03/12/2016 07:27:19 AM,03/12/2016 07:37:01 AM,03/12/2016 07:49:37 AM,Code 2 Transport,03/12/2016 08:55:38 AM,200 Block of POTRERO AV,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7664275995867, -122.407678530455)",160720719-78 +120370303,E05,12012441,Medical Incident,02/06/2012,02/06/2012,02/06/2012 05:38:47 PM,02/06/2012 05:39:24 PM,02/06/2012 05:40:04 PM,02/06/2012 05:40:20 PM,02/06/2012 05:42:23 PM,04/25/2016 02:00:15 PM,04/25/2016 02:00:15 PM,Other,02/06/2012 05:51:53 PM,600 Block of GROVE ST,SF,94102,B02,5,3424,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7773373896226, -122.427287577929)",120370303-E05 +120040148,KM04,12001370,Medical Incident,01/04/2012,01/04/2012,01/04/2012 11:26:47 AM,01/04/2012 11:28:20 AM,01/04/2012 11:28:56 AM,01/04/2012 11:30:29 AM,01/04/2012 11:33:23 AM,01/04/2012 11:40:31 AM,01/04/2012 11:51:58 AM,Code 2 Transport,01/04/2012 12:12:20 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7683208883339, -122.4243245293)",120040148-KM04 +112820222,KM05,11093365,Medical Incident,10/09/2011,10/09/2011,10/09/2011 03:03:11 PM,10/09/2011 03:04:25 PM,10/09/2011 03:05:22 PM,10/09/2011 03:06:06 PM,04/25/2016 02:02:15 PM,10/09/2011 03:25:23 PM,10/09/2011 03:32:52 PM,Code 2 Transport,10/09/2011 04:04:33 PM,600 Block of LAGUNA ST,SF,94102,B02,36,3413,3,3,3,false,,1,PRIVATE,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",112820222-KM05 +160373132,86,16014838,Medical Incident,02/06/2016,02/06/2016,02/06/2016 06:23:24 PM,02/06/2016 06:24:54 PM,02/06/2016 06:25:13 PM,02/06/2016 06:25:27 PM,02/06/2016 06:29:31 PM,02/06/2016 06:37:52 PM,02/06/2016 06:42:44 PM,Code 2 Transport,02/06/2016 06:58:34 PM,1300 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7703725071371, -122.444508010123)",160373132-86 +122740019,E07,12090243,Medical Incident,09/30/2012,09/29/2012,09/30/2012 01:33:55 AM,09/30/2012 01:34:37 AM,09/30/2012 01:35:38 AM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,Other,09/30/2012 01:37:00 AM,22ND ST/FOLSOM ST,SF,94110,B06,7,5473,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7556994645677, -122.414387602502)",122740019-E07 +111330047,E14,11043959,Medical Incident,05/13/2011,05/12/2011,05/13/2011 06:52:19 AM,05/13/2011 06:52:40 AM,05/13/2011 06:53:37 AM,05/13/2011 06:54:40 AM,05/13/2011 06:58:56 AM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 07:13:04 AM,4900 Block of FULTON ST,SF,94121,B07,14,7211,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7725995783809, -122.484732077289)",111330047-E14 +111130014,D2,11037200,Structure Fire,04/23/2011,04/22/2011,04/23/2011 12:59:01 AM,04/23/2011 01:00:11 AM,04/23/2011 01:00:41 AM,04/23/2011 01:02:19 AM,04/23/2011 01:08:36 AM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/23/2011 01:26:37 AM,1900 Block of CLEMENT ST,SF,94121,B07,31,7164,3,3,3,false,,1,CHIEF,8,7,1,Outer Richmond,"(37.7822913773437, -122.480056750248)",111130014-D2 +130590306,93,13019911,Medical Incident,02/28/2013,02/28/2013,02/28/2013 06:40:37 PM,02/28/2013 06:41:57 PM,02/28/2013 06:42:07 PM,02/28/2013 06:42:13 PM,02/28/2013 06:52:02 PM,02/28/2013 07:07:43 PM,02/28/2013 07:40:11 PM,Code 2 Transport,02/28/2013 08:02:17 PM,0 Block of CHANCERY LN,SF,94112,B09,15,8333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7169521307423, -122.442381200156)",130590306-93 +132680109,T02,13090925,Alarms,09/25/2013,09/25/2013,09/25/2013 10:06:27 AM,09/25/2013 10:09:11 AM,09/25/2013 10:10:08 AM,09/25/2013 10:10:27 AM,09/25/2013 10:15:21 AM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Other,09/25/2013 10:10:32 AM,300 Block of UNION ST,SF,94133,B01,28,1227,3,3,3,true,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8009314288084, -122.404823820896)",132680109-T02 +122180200,54,12072323,Medical Incident,08/05/2012,08/05/2012,08/05/2012 01:48:02 PM,08/05/2012 01:50:20 PM,08/05/2012 01:50:34 PM,08/05/2012 01:51:23 PM,08/05/2012 01:56:29 PM,08/05/2012 02:09:19 PM,08/05/2012 02:16:21 PM,Code 2 Transport,08/05/2012 02:44:04 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",122180200-54 +160061804,75,16002405,Medical Incident,01/06/2016,01/06/2016,01/06/2016 01:04:53 PM,01/06/2016 01:05:32 PM,01/06/2016 01:05:49 PM,01/06/2016 01:05:58 PM,01/06/2016 01:11:20 PM,01/06/2016 01:30:41 PM,01/06/2016 01:42:29 PM,Code 2 Transport,01/06/2016 03:00:20 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160061804-75 +121350295,E05,12044985,Medical Incident,05/14/2012,05/14/2012,05/14/2012 06:39:34 PM,05/14/2012 06:41:12 PM,05/14/2012 06:42:01 PM,05/14/2012 06:42:34 PM,05/14/2012 06:46:11 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 06:49:34 PM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7773515638882, -122.418857320448)",121350295-E05 +130100094,E01,13003356,Gas Leak (Natural and LP Gases),01/10/2013,01/10/2013,01/10/2013 09:36:27 AM,01/10/2013 09:36:52 AM,01/10/2013 09:37:59 AM,04/25/2016 01:54:53 PM,01/10/2013 09:38:57 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Fire,01/10/2013 09:57:36 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",130100094-E01 +140030133,RS1,14000997,Structure Fire,01/03/2014,01/03/2014,01/03/2014 09:27:26 AM,01/03/2014 09:27:52 AM,01/03/2014 09:28:48 AM,01/03/2014 09:31:30 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/03/2014 09:38:08 AM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,,3,3,false,Alarm,1,RESCUE SQUAD,9,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",140030133-RS1 +130360213,B04,13012389,Alarms,02/05/2013,02/05/2013,02/05/2013 02:03:17 PM,02/05/2013 02:05:31 PM,02/05/2013 02:05:48 PM,02/05/2013 02:09:37 PM,04/25/2016 01:54:26 PM,04/25/2016 01:54:26 PM,04/25/2016 01:54:26 PM,Other,02/05/2013 02:13:00 PM,0 Block of FUNSTON AVE,PR,94118,B99,51,4626,3,3,3,false,Alarm,1,CHIEF,3,7,2,Inner Richmond,"(37.786490510641, -122.472127294583)",130360213-B04 +122470147,E15,12081686,Outside Fire,09/03/2012,09/03/2012,09/03/2012 01:11:05 PM,09/03/2012 01:11:29 PM,09/03/2012 01:11:39 PM,09/03/2012 01:12:57 PM,09/03/2012 01:14:49 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 01:19:40 PM,800 Block of CAYUGA AVE,SF,94112,B09,15,8274,3,3,3,true,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.7244686448895, -122.438350027274)",122470147-E15 +121620044,RC1,12053509,Medical Incident,06/10/2012,06/09/2012,06/10/2012 02:16:43 AM,06/10/2012 02:16:43 AM,06/10/2012 02:17:10 AM,06/10/2012 02:19:01 AM,06/10/2012 02:23:11 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 02:27:08 AM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",121620044-RC1 +131010349,85,13034087,Medical Incident,04/11/2013,04/11/2013,04/11/2013 08:59:13 PM,04/11/2013 09:00:54 PM,04/11/2013 09:01:21 PM,04/11/2013 09:01:33 PM,04/11/2013 09:05:12 PM,04/11/2013 09:14:45 PM,04/11/2013 09:33:32 PM,Code 2 Transport,04/11/2013 10:05:37 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131010349-85 +130090238,E03,13003144,Alarms,01/09/2013,01/09/2013,01/09/2013 03:06:54 PM,01/09/2013 03:07:40 PM,01/09/2013 03:08:17 PM,01/09/2013 03:09:41 PM,01/09/2013 03:12:31 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 03:17:52 PM,100 Block of MAIDEN LN,SF,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.788077566398, -122.405896351986)",130090238-E03 +132660079,68,13090162,Medical Incident,09/23/2013,09/22/2013,09/23/2013 07:39:50 AM,09/23/2013 07:40:24 AM,09/23/2013 07:55:16 AM,04/25/2016 01:50:38 PM,09/23/2013 08:02:20 AM,09/23/2013 08:11:04 AM,09/23/2013 08:21:50 AM,Code 3 Transport,09/23/2013 08:55:49 AM,900 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7591210187575, -122.390401159216)",132660079-68 +131230293,54,13041530,Medical Incident,05/03/2013,05/03/2013,05/03/2013 03:09:23 PM,05/03/2013 03:09:59 PM,05/03/2013 03:10:22 PM,05/03/2013 03:10:31 PM,05/03/2013 03:23:31 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Patient Declined Transport,05/03/2013 04:03:34 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",131230293-54 +160012748,KM09,16000412,Medical Incident,01/01/2016,01/01/2016,01/01/2016 04:43:44 PM,01/01/2016 04:44:58 PM,01/01/2016 04:45:28 PM,01/01/2016 04:47:35 PM,01/01/2016 04:56:39 PM,01/01/2016 05:45:10 PM,01/01/2016 05:45:18 PM,Code 2 Transport,01/01/2016 06:42:20 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160012748-KM09 +133100143,87,13105360,Medical Incident,11/06/2013,11/06/2013,11/06/2013 11:38:49 AM,11/06/2013 11:39:30 AM,11/06/2013 11:40:48 AM,04/25/2016 01:49:53 PM,11/06/2013 11:44:52 AM,11/06/2013 12:10:25 PM,11/06/2013 12:13:22 PM,Code 2 Transport,11/06/2013 12:51:15 PM,300 Block of LAIDLEY ST,SF,94131,B06,26,8127,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7372888006621, -122.428846489541)",133100143-87 +160794086,AM14,16031605,Medical Incident,03/19/2016,03/19/2016,03/19/2016 10:21:15 PM,03/19/2016 10:21:37 PM,03/19/2016 10:21:52 PM,03/19/2016 10:22:33 PM,03/19/2016 10:25:43 PM,03/19/2016 10:56:34 PM,03/19/2016 11:03:30 PM,Code 2 Transport,03/19/2016 11:42:43 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160794086-AM14 +113380140,77,11111972,Medical Incident,12/04/2011,12/04/2011,12/04/2011 09:45:35 AM,12/04/2011 09:46:10 AM,12/04/2011 09:46:55 AM,12/04/2011 09:47:04 AM,12/04/2011 09:51:51 AM,12/04/2011 10:10:04 AM,12/04/2011 10:18:19 AM,Code 2 Transport,12/04/2011 10:42:18 AM,POLK ST/GROVE ST,SF,94102,B02,36,1552,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7784891171437, -122.418226581728)",113380140-77 +112530290,T01,11083547,Traffic Collision,09/10/2011,09/10/2011,09/10/2011 04:13:04 PM,09/10/2011 04:13:04 PM,09/10/2011 04:13:12 PM,09/10/2011 04:14:13 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 04:16:25 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,,1,TRUCK,4,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112530290-T01 +113170237,RC1,11105375,Medical Incident,11/13/2011,11/13/2011,11/13/2011 03:39:54 PM,11/13/2011 03:42:19 PM,11/13/2011 03:42:32 PM,11/13/2011 03:47:12 PM,11/13/2011 03:50:25 PM,11/13/2011 04:17:10 PM,11/13/2011 04:23:57 PM,Code 3 Transport,11/13/2011 04:53:39 PM,1100 Block of GRANT AVE,SF,94133,B01,2,1311,3,E,3,true,,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7971943093664, -122.406817843184)",113170237-RC1 +131280090,E01,13043204,Medical Incident,05/08/2013,05/08/2013,05/08/2013 08:00:41 AM,05/08/2013 08:01:46 AM,05/08/2013 08:02:04 AM,05/08/2013 08:02:44 AM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 08:04:40 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",131280090-E01 +121480106,82,12049053,Medical Incident,05/27/2012,05/27/2012,05/27/2012 09:14:11 AM,05/27/2012 09:15:57 AM,05/27/2012 09:17:14 AM,05/27/2012 09:17:29 AM,05/27/2012 09:35:41 AM,05/27/2012 09:47:53 AM,05/27/2012 09:54:11 AM,Code 2 Transport,05/27/2012 10:34:08 AM,1200 Block of MASON ST,SF,94108,B01,2,1415,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7949589269529, -122.411521140244)",121480106-82 +160562810,56,16022475,Medical Incident,02/25/2016,02/25/2016,02/25/2016 04:50:09 PM,02/25/2016 04:51:50 PM,02/25/2016 04:52:14 PM,02/25/2016 04:52:20 PM,02/25/2016 05:00:55 PM,02/25/2016 05:26:44 PM,02/25/2016 05:38:12 PM,Code 2 Transport,02/25/2016 05:12:31 PM,1500 Block of STOCKTON ST,San Francisco,94133,B01,28,1334,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.799975359605, -122.40903359976)",160562810-56 +120790138,92,12026191,Medical Incident,03/19/2012,03/19/2012,03/19/2012 10:42:21 AM,03/19/2012 10:44:03 AM,03/19/2012 10:45:43 AM,03/19/2012 10:46:23 AM,03/19/2012 10:53:19 AM,03/19/2012 11:09:18 AM,03/19/2012 11:25:42 AM,Code 2 Transport,03/19/2012 11:46:47 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",120790138-92 +122070266,75,12068898,Medical Incident,07/25/2012,07/25/2012,07/25/2012 04:29:33 PM,07/25/2012 04:30:20 PM,07/25/2012 04:30:52 PM,07/25/2012 04:31:50 PM,07/25/2012 04:42:26 PM,07/25/2012 05:08:52 PM,07/25/2012 05:47:52 PM,Code 2 Transport,07/25/2012 06:21:25 PM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8084325058333, -122.410757587167)",122070266-75 +160230176,61,16009010,Medical Incident,01/23/2016,01/22/2016,01/23/2016 01:08:16 AM,01/23/2016 01:09:19 AM,01/23/2016 01:09:33 AM,01/23/2016 01:09:39 AM,01/23/2016 01:15:13 AM,01/23/2016 01:29:16 AM,01/23/2016 01:35:42 AM,Code 2 Transport,01/23/2016 02:28:33 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160230176-61 +121420281,T03,12047322,Alarms,05/21/2012,05/21/2012,05/21/2012 06:02:17 PM,05/21/2012 06:03:27 PM,05/21/2012 06:03:40 PM,05/21/2012 06:05:13 PM,05/21/2012 06:06:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/21/2012 06:11:25 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Alarm,1,TRUCK,3,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",121420281-T03 +123020437,E08,12100365,Medical Incident,10/28/2012,10/28/2012,10/28/2012 11:21:58 PM,10/28/2012 11:22:13 PM,10/28/2012 11:26:53 PM,10/28/2012 11:28:10 PM,10/28/2012 11:29:17 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 11:47:38 PM,200 Block of TOWNSEND ST,SF,94107,B03,8,2172,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.778367882018, -122.393460595106)",123020437-E08 +110850117,83,11027972,Medical Incident,03/26/2011,03/26/2011,03/26/2011 09:35:48 AM,03/26/2011 09:36:37 AM,03/26/2011 09:36:58 AM,03/26/2011 09:37:13 AM,03/26/2011 09:39:34 AM,03/26/2011 10:00:01 AM,03/26/2011 10:09:25 AM,Code 2 Transport,03/26/2011 10:33:22 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",110850117-83 +102940326,55,10093879,Medical Incident,10/21/2010,10/21/2010,10/21/2010 08:50:01 PM,10/21/2010 08:53:37 PM,10/21/2010 08:53:56 PM,10/21/2010 08:54:30 PM,10/21/2010 09:04:13 PM,10/21/2010 09:14:28 PM,10/21/2010 09:32:18 PM,Code 2 Transport,10/21/2010 10:00:09 PM,400 Block of MARIETTA DR,SF,94127,B09,39,8654,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.738687302848, -122.44337815957)",102940326-55 +123610034,55,12120679,Medical Incident,12/26/2012,12/25/2012,12/26/2012 04:29:22 AM,12/26/2012 04:29:54 AM,12/26/2012 04:30:07 AM,12/26/2012 04:30:16 AM,12/26/2012 04:38:54 AM,12/26/2012 04:46:50 AM,12/26/2012 05:02:38 AM,Code 2 Transport,12/26/2012 05:57:29 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",123610034-55 +160160184,68,16006243,Medical Incident,01/16/2016,01/15/2016,01/16/2016 01:21:38 AM,01/16/2016 01:23:51 AM,01/16/2016 01:24:39 AM,01/16/2016 01:24:49 AM,01/16/2016 01:27:24 AM,01/16/2016 01:31:25 AM,01/16/2016 02:03:18 AM,Code 2 Transport,01/16/2016 02:29:09 AM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",160160184-68 +123150062,E36,12104736,Alarms,11/10/2012,11/09/2012,11/10/2012 04:38:55 AM,11/10/2012 04:40:20 AM,11/10/2012 04:40:28 AM,11/10/2012 04:42:19 AM,11/10/2012 04:43:45 AM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/10/2012 04:51:59 AM,300 Block of FELL ST,SF,94102,B02,36,3314,3,3,3,false,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7757976823178, -122.423545172225)",123150062-E36 +110620310,KM02,11020476,Medical Incident,03/03/2011,03/03/2011,03/03/2011 07:06:09 PM,03/03/2011 07:08:38 PM,03/03/2011 07:09:32 PM,03/03/2011 07:10:10 PM,03/03/2011 07:15:10 PM,03/03/2011 07:23:17 PM,03/03/2011 07:36:42 PM,Code 2 Transport,03/03/2011 07:50:25 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110620310-KM02 +122550420,81,12084487,Medical Incident,09/11/2012,09/11/2012,09/11/2012 11:47:01 PM,09/11/2012 11:47:24 PM,09/11/2012 11:47:32 PM,09/11/2012 11:47:45 PM,09/11/2012 11:55:43 PM,09/12/2012 12:06:17 AM,09/12/2012 12:13:28 AM,Code 2 Transport,09/12/2012 12:31:23 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",122550420-81 +110560214,E08,11018471,Alarms,02/25/2011,02/25/2011,02/25/2011 03:04:02 PM,02/25/2011 03:05:46 PM,02/25/2011 03:05:58 PM,02/25/2011 03:07:24 PM,02/25/2011 03:09:53 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 03:16:00 PM,300 Block of 7TH ST,SF,94103,B03,8,2312,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7758712904252, -122.406841835314)",110560214-E08 +113170126,E20,11105274,Medical Incident,11/13/2011,11/13/2011,11/13/2011 09:18:38 AM,11/13/2011 09:21:34 AM,11/13/2011 09:21:41 AM,11/13/2011 09:22:38 AM,11/13/2011 09:25:45 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Other,11/13/2011 09:44:36 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",113170126-E20 +133600029,E03,13122220,Medical Incident,12/26/2013,12/25/2013,12/26/2013 03:18:46 AM,12/26/2013 03:21:11 AM,12/26/2013 03:21:22 AM,12/26/2013 03:22:38 AM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 03:24:01 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",133600029-E03 +112720106,75,11089880,Traffic Collision,09/29/2011,09/29/2011,09/29/2011 09:44:30 AM,09/29/2011 09:45:44 AM,09/29/2011 09:46:40 AM,09/29/2011 09:47:51 AM,09/29/2011 09:50:20 AM,09/29/2011 10:07:08 AM,09/29/2011 10:18:21 AM,Code 2 Transport,09/29/2011 10:53:09 AM,3000 Block of LARKIN ST,SF,94109,B01,28,1623,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8059751797269, -122.422033155092)",112720106-75 +160831802,67,16032942,Medical Incident,03/23/2016,03/23/2016,03/23/2016 12:34:16 PM,03/23/2016 12:34:16 PM,03/23/2016 12:34:37 PM,03/23/2016 12:36:22 PM,03/23/2016 12:36:59 PM,03/23/2016 01:01:47 PM,03/23/2016 01:14:57 PM,Code 2 Transport,03/23/2016 01:59:19 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160831802-67 +113290232,79,11109217,Medical Incident,11/25/2011,11/25/2011,11/25/2011 07:10:21 PM,11/25/2011 07:11:19 PM,11/25/2011 07:11:29 PM,11/25/2011 07:12:12 PM,11/25/2011 07:20:04 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 07:54:15 PM,2800 Block of VALLEJO ST,SF,94123,B04,16,4311,E,E,3,true,,1,MEDIC,2,4,2,Pacific Heights,"(37.7941220413487, -122.444220734836)",113290232-79 +111530118,T08,11050537,Structure Fire,06/02/2011,06/02/2011,06/02/2011 10:53:23 AM,06/02/2011 10:55:15 AM,06/02/2011 10:55:51 AM,06/02/2011 10:58:17 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/02/2011 10:59:43 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,,1,TRUCK,11,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",111530118-T08 +102270327,73,10071583,Medical Incident,08/15/2010,08/15/2010,08/15/2010 09:11:19 PM,08/15/2010 09:13:08 PM,08/15/2010 09:13:38 PM,08/15/2010 09:13:46 PM,08/15/2010 09:21:09 PM,08/15/2010 09:33:31 PM,08/15/2010 09:46:52 PM,Code 2 Transport,08/15/2010 09:54:51 PM,MARTIN LUTHER KING DR/SUNSET BL,SF,94122,B08,23,7565,3,3,3,true,,1,MEDIC,2,7,1,Golden Gate Park,"(37.7654614240896, -122.496063125425)",102270327-73 +120810294,E29,12026975,Medical Incident,03/21/2012,03/21/2012,03/21/2012 05:15:35 PM,03/21/2012 05:16:51 PM,03/21/2012 05:17:04 PM,03/21/2012 05:18:49 PM,03/21/2012 05:19:44 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Other,03/21/2012 05:39:42 PM,9TH ST/BRYANT ST,SF,94103,B03,29,2324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7712907918294, -122.408531083232)",120810294-E29 +131860209,84,13063454,Medical Incident,07/05/2013,07/05/2013,07/05/2013 01:19:29 PM,07/05/2013 01:20:57 PM,07/05/2013 01:22:59 PM,07/05/2013 01:23:48 PM,07/05/2013 01:28:07 PM,07/05/2013 01:47:08 PM,07/05/2013 02:04:17 PM,Code 2 Transport,07/05/2013 02:32:19 PM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",131860209-84 +132570389,94,13087086,Medical Incident,09/14/2013,09/14/2013,09/14/2013 10:18:27 PM,09/14/2013 10:19:48 PM,09/14/2013 10:20:02 PM,09/14/2013 10:20:17 PM,09/14/2013 10:36:47 PM,09/14/2013 10:55:50 PM,09/14/2013 11:22:18 PM,Code 2 Transport,09/14/2013 11:46:31 PM,800 Block of TURK ST,SF,94102,B02,36,3216,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",132570389-94 +102330180,60,10073337,Medical Incident,08/21/2010,08/21/2010,08/21/2010 01:51:44 PM,08/21/2010 01:53:06 PM,08/21/2010 01:53:14 PM,08/21/2010 01:53:30 PM,08/21/2010 02:01:36 PM,08/21/2010 02:06:58 PM,08/21/2010 02:24:39 PM,Code 2 Transport,08/21/2010 02:45:24 PM,3000 Block of SAN JOSE AVE,SF,94112,B09,33,8371,1,1,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7098606715103, -122.457422352481)",102330180-60 +111150061,T01,11037854,Alarms,04/25/2011,04/24/2011,04/25/2011 06:15:45 AM,04/25/2011 06:16:26 AM,04/25/2011 06:16:35 AM,04/25/2011 06:18:43 AM,04/25/2011 06:20:13 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 06:26:40 AM,500 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7886287320653, -122.398912581875)",111150061-T01 +122890311,AM06,12095720,Medical Incident,10/15/2012,10/15/2012,10/15/2012 05:40:01 PM,10/15/2012 05:41:29 PM,10/15/2012 05:42:05 PM,10/15/2012 05:42:50 PM,10/15/2012 05:56:03 PM,10/15/2012 06:21:41 PM,10/15/2012 06:32:10 PM,Code 2 Transport,10/15/2012 07:10:13 PM,5600 Block of CALIFORNIA ST,SF,94121,B07,31,7162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7842530764945, -122.478048040322)",122890311-AM06 +122110256,E12,12070149,Outside Fire,07/29/2012,07/29/2012,07/29/2012 06:35:42 PM,07/29/2012 06:36:19 PM,07/29/2012 06:36:28 PM,07/29/2012 06:37:19 PM,07/29/2012 06:39:20 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 06:44:53 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,Fire,1,ENGINE,1,5,5,Haight Ashbury,"(37.7677850586334, -122.45319019834)",122110256-E12 +102370326,AM04,10074831,Medical Incident,08/25/2010,08/25/2010,08/25/2010 06:04:04 PM,08/25/2010 06:04:15 PM,08/25/2010 06:05:09 PM,08/25/2010 06:05:47 PM,08/25/2010 06:06:49 PM,08/25/2010 06:19:19 PM,08/25/2010 06:35:02 PM,Code 2 Transport,08/25/2010 07:19:52 PM,0 Block of VAN NESS AVE,SF,94102,B02,36,3210,3,3,3,false,,1,PRIVATE,1,2,5,Hayes Valley,"(37.7756495714097, -122.419512541033)",102370326-AM04 +120490290,72,12016312,Medical Incident,02/18/2012,02/18/2012,02/18/2012 07:24:58 PM,02/18/2012 07:24:58 PM,02/18/2012 07:28:47 PM,02/18/2012 07:29:21 PM,02/18/2012 07:34:26 PM,02/18/2012 07:54:22 PM,02/18/2012 08:05:35 PM,Code 2 Transport,02/18/2012 08:40:25 PM,MISSION ST/15TH ST,SF,94103,B02,36,5279,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",120490290-72 +120450358,T17,12015121,Structure Fire,02/14/2012,02/14/2012,02/14/2012 09:32:53 PM,02/14/2012 09:33:59 PM,02/14/2012 09:34:05 PM,04/25/2016 02:00:08 PM,02/14/2012 09:37:29 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 09:39:19 PM,200 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,false,Fire,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.735189226844, -122.378938285616)",120450358-T17 +132000119,E03,13067734,Alarms,07/19/2013,07/19/2013,07/19/2013 10:00:07 AM,07/19/2013 10:01:35 AM,07/19/2013 10:02:12 AM,07/19/2013 10:02:25 AM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 10:08:26 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,true,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",132000119-E03 +160223959,64,16008986,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:31:34 PM,01/22/2016 11:33:20 PM,01/22/2016 11:33:55 PM,01/22/2016 11:36:31 PM,01/22/2016 11:40:15 PM,01/23/2016 12:02:24 AM,01/23/2016 12:10:52 AM,Code 2 Transport,01/23/2016 12:43:48 AM,1100 Block of LARKIN ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882080201925, -122.418443835989)",160223959-64 +160302537,89,16011853,Medical Incident,01/30/2016,01/30/2016,01/30/2016 03:53:54 PM,01/30/2016 03:53:54 PM,01/30/2016 03:54:26 PM,01/30/2016 03:57:18 PM,01/30/2016 04:02:22 PM,01/30/2016 04:17:23 PM,01/30/2016 04:29:23 PM,Code 2 Transport,01/30/2016 05:29:00 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160302537-89 +121030248,94,12034165,Medical Incident,04/12/2012,04/12/2012,04/12/2012 03:37:13 PM,04/12/2012 03:38:27 PM,04/12/2012 03:40:10 PM,04/12/2012 03:40:57 PM,04/12/2012 03:43:01 PM,04/12/2012 03:59:12 PM,04/12/2012 04:21:50 PM,Code 2 Transport,04/12/2012 04:56:29 PM,100 Block of AMAZON AVE,SF,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7167456288944, -122.439228156954)",121030248-94 +110450336,E36,11015056,Medical Incident,02/14/2011,02/14/2011,02/14/2011 08:01:25 PM,02/14/2011 08:01:25 PM,02/14/2011 08:01:25 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 08:04:18 PM,MARKET ST/SANCHEZ ST,SF,94114,B02,6,5213,3,3,3,true,,1,ENGINE,4,5,8,Castro/Upper Market,"(37.7658679882367, -122.431025473299)",110450336-E36 +160382395,KM15,16015280,Medical Incident,02/07/2016,02/07/2016,02/07/2016 03:41:58 PM,02/07/2016 03:42:54 PM,02/07/2016 03:43:09 PM,02/07/2016 03:43:46 PM,02/07/2016 03:46:29 PM,02/07/2016 04:18:39 PM,02/07/2016 04:34:49 PM,Code 2 Transport,02/07/2016 05:34:58 PM,1400 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",160382395-KM15 +160420646,62,16016761,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:54:15 AM,02/11/2016 07:55:41 AM,02/11/2016 07:56:38 AM,02/11/2016 07:56:58 AM,02/11/2016 08:02:26 AM,02/11/2016 08:11:50 AM,02/11/2016 08:49:18 AM,Code 2 Transport,02/11/2016 09:27:53 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160420646-62 +160413611,70,16016640,Medical Incident,02/10/2016,02/10/2016,02/10/2016 08:51:44 PM,02/10/2016 08:51:44 PM,02/10/2016 08:53:23 PM,02/10/2016 08:53:30 PM,02/10/2016 09:06:58 PM,02/10/2016 09:38:27 PM,02/10/2016 10:04:12 PM,Code 2 Transport,02/10/2016 10:40:12 PM,2700 Block of MARKET ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7614990581746, -122.438865566115)",160413611-70 +111180192,AM08,11038935,Medical Incident,04/28/2011,04/28/2011,04/28/2011 01:26:43 PM,04/28/2011 01:27:53 PM,04/28/2011 01:38:42 PM,04/28/2011 01:50:25 PM,04/28/2011 01:54:23 PM,04/28/2011 02:05:04 PM,04/28/2011 02:12:20 PM,Code 2 Transport,04/28/2011 02:32:38 PM,0 Block of JONES ST,SF,94102,B03,1,1455,1,1,2,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",111180192-AM08 +102400267,E09,10075767,Medical Incident,08/28/2010,08/28/2010,08/28/2010 05:47:46 PM,08/28/2010 05:48:34 PM,08/28/2010 05:49:36 PM,08/28/2010 05:50:36 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/28/2010 05:53:26 PM,4100 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7399568110921, -122.389027814103)",102400267-E09 +113410086,95,11112980,Medical Incident,12/07/2011,12/06/2011,12/07/2011 07:45:28 AM,12/07/2011 07:47:08 AM,12/07/2011 08:05:13 AM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,04/25/2016 02:01:17 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113410086-95 +112640287,KM11,11087261,Medical Incident,09/21/2011,09/21/2011,09/21/2011 04:47:05 PM,09/21/2011 04:48:22 PM,09/21/2011 04:48:33 PM,04/25/2016 02:02:33 PM,09/21/2011 04:55:01 PM,09/21/2011 05:10:20 PM,09/21/2011 05:32:07 PM,Code 2 Transport,09/21/2011 05:58:08 PM,JUNIPERO SERRA BL/19TH AV,SF,94132,B08,19,8427,3,3,3,false,,1,PRIVATE,2,9,7,Lakeshore,"(37.71717386983, -122.472572451935)",112640287-KM11 +131970292,E31,13066912,Medical Incident,07/16/2013,07/16/2013,07/16/2013 05:56:41 PM,07/16/2013 05:59:23 PM,07/16/2013 06:01:43 PM,07/16/2013 06:02:20 PM,07/16/2013 06:05:27 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/16/2013 06:12:19 PM,FULTON ST/6TH AV,SF,94122,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7736240632884, -122.463749209233)",131970292-E31 +160832800,64,16033042,Medical Incident,03/23/2016,03/23/2016,03/23/2016 04:33:48 PM,03/23/2016 04:33:48 PM,03/23/2016 04:34:36 PM,03/23/2016 04:34:48 PM,03/23/2016 04:47:47 PM,03/23/2016 05:04:55 PM,03/23/2016 05:23:32 PM,Code 2 Transport,03/23/2016 06:04:30 PM,PAGE ST/WEBSTER ST,San Francisco,94102,B02,36,3422,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7732477996527, -122.428990053871)",160832800-64 +160870556,KM03,16034463,Medical Incident,03/27/2016,03/26/2016,03/27/2016 04:06:37 AM,03/27/2016 04:08:00 AM,03/27/2016 04:08:18 AM,03/27/2016 04:08:56 AM,03/27/2016 04:29:29 AM,03/27/2016 04:29:34 AM,03/27/2016 04:38:13 AM,Code 2 Transport,03/27/2016 05:06:01 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160870556-KM03 +160621085,52,16024631,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:57:26 AM,03/02/2016 09:57:26 AM,03/02/2016 09:58:04 AM,03/02/2016 09:59:03 AM,03/02/2016 10:20:32 AM,03/02/2016 10:20:34 AM,03/02/2016 10:24:33 AM,Code 3 Transport,03/02/2016 11:14:06 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160621085-52 +120650377,E17,12021650,Medical Incident,03/05/2012,03/05/2012,03/05/2012 09:52:55 PM,03/05/2012 09:53:16 PM,03/05/2012 09:53:26 PM,03/05/2012 09:54:19 PM,03/05/2012 09:57:36 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/05/2012 10:05:25 PM,0 Block of COMMER CT,SF,94124,B10,17,6622,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7325365939267, -122.385005626506)",120650377-E17 +121730240,T11,12057490,Medical Incident,06/21/2012,06/21/2012,06/21/2012 04:06:14 PM,06/21/2012 04:06:42 PM,06/21/2012 04:07:07 PM,06/21/2012 04:08:27 PM,06/21/2012 04:11:21 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/21/2012 04:13:56 PM,3200 Block of MISSION ST,SF,94110,B06,11,5624,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Bernal Heights,"(37.7454669542894, -122.419890921573)",121730240-T11 +103290070,E05,10105282,Structure Fire,11/25/2010,11/25/2010,11/25/2010 08:46:01 AM,11/25/2010 08:46:02 AM,11/25/2010 08:46:12 AM,11/25/2010 08:46:36 AM,11/25/2010 08:47:56 AM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Fire,11/25/2010 08:49:24 AM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",103290070-E05 +130810380,E07,13027292,Medical Incident,03/22/2013,03/22/2013,03/22/2013 11:01:04 PM,03/22/2013 11:03:25 PM,03/22/2013 11:23:14 PM,03/22/2013 11:26:03 PM,03/22/2013 11:32:48 PM,03/22/2013 11:41:32 PM,04/25/2016 01:53:41 PM,Other,03/22/2013 11:49:30 PM,1000 Block of HAMPSHIRE ST,SF,94110,B06,7,5474,1,1,2,true,Non Life-threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7553117218433, -122.407456232878)",130810380-E07 +103420213,E02,10109487,Structure Fire,12/08/2010,12/08/2010,12/08/2010 01:02:58 PM,12/08/2010 01:03:31 PM,12/08/2010 01:03:55 PM,12/08/2010 01:04:52 PM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,04/25/2016 02:07:13 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,,1,ENGINE,9,2,6,Tenderloin,"(37.7854364798696, -122.41533612902)",103420213-E02 +102760037,88,10087612,Medical Incident,10/03/2010,10/02/2010,10/03/2010 01:36:44 AM,10/03/2010 01:37:45 AM,10/03/2010 01:38:20 AM,04/25/2016 02:08:17 PM,10/03/2010 01:55:41 AM,10/03/2010 02:13:33 AM,10/03/2010 02:31:26 AM,Code 2 Transport,10/03/2010 02:57:05 AM,400 Block of GONZALEZ DR,SF,94132,B08,19,8481,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7162110914239, -122.47657722537)",102760037-88 +121280225,RS1,12042623,Medical Incident,05/07/2012,05/07/2012,05/07/2012 02:05:20 PM,05/07/2012 02:05:49 PM,05/07/2012 02:06:16 PM,05/07/2012 02:06:51 PM,05/07/2012 02:12:49 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 02:13:16 PM,JONES ST/GOLDEN GATE AV,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",121280225-RS1 +120010166,68,12000136,Medical Incident,01/01/2012,12/31/2011,01/01/2012 02:01:48 AM,01/01/2012 02:01:57 AM,01/01/2012 02:03:53 AM,01/01/2012 02:04:15 AM,01/01/2012 02:10:42 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 02:17:39 AM,MONTGOMERY ST/BUSH ST,SF,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",120010166-68 +103120195,59,10100057,Medical Incident,11/08/2010,11/08/2010,11/08/2010 01:18:11 PM,11/08/2010 01:18:40 PM,11/08/2010 01:19:53 PM,11/08/2010 01:21:46 PM,11/08/2010 01:30:47 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Patient Declined Transport,11/08/2010 02:31:38 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",103120195-59 +160140556,82,16005465,Medical Incident,01/14/2016,01/13/2016,01/14/2016 07:07:15 AM,01/14/2016 07:07:45 AM,01/14/2016 07:08:23 AM,01/14/2016 07:08:29 AM,01/14/2016 07:16:27 AM,01/14/2016 07:32:17 AM,01/14/2016 07:58:07 AM,Code 2 Transport,01/14/2016 08:33:44 AM,4TH ST/BRYANT ST,San Francisco,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7795669099357, -122.398059940086)",160140556-82 +140210183,E31,14007184,Medical Incident,01/21/2014,01/21/2014,01/21/2014 01:32:52 PM,01/21/2014 01:34:39 PM,01/21/2014 01:35:10 PM,01/21/2014 01:36:14 PM,01/21/2014 01:39:52 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/21/2014 01:47:40 PM,17TH AV/GEARY BL,SF,94118,B07,31,7161,,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7804758485589, -122.476169188097)",140210183-E31 +160660355,70,16026252,Medical Incident,03/06/2016,03/05/2016,03/06/2016 02:49:02 AM,03/06/2016 02:49:02 AM,03/06/2016 02:50:06 AM,03/06/2016 02:50:15 AM,03/06/2016 02:54:39 AM,03/06/2016 03:05:43 AM,03/06/2016 03:17:17 AM,Code 2 Transport,03/06/2016 04:00:24 AM,500 Block of MONTGOMERY ST,San Francisco,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7944323288641, -122.403161406047)",160660355-70 +160790677,79,16031324,Medical Incident,03/19/2016,03/18/2016,03/19/2016 06:37:49 AM,03/19/2016 06:40:07 AM,03/19/2016 06:43:23 AM,03/19/2016 06:45:36 AM,03/19/2016 06:54:54 AM,03/19/2016 07:11:16 AM,03/19/2016 07:25:43 AM,Code 2 Transport,03/19/2016 07:43:23 AM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.8012720767056, -122.453377012346)",160790677-79 +103120298,E17,10100139,Electrical Hazard,11/08/2010,11/08/2010,11/08/2010 07:28:44 PM,11/08/2010 07:30:49 PM,11/08/2010 07:30:57 PM,11/08/2010 07:32:18 PM,11/08/2010 07:33:52 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 07:42:22 PM,1500 Block of SHAFTER AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.730553557091, -122.389751029234)",103120298-E17 +160030916,AM02,16001113,Medical Incident,01/03/2016,01/03/2016,01/03/2016 09:10:37 AM,01/03/2016 09:11:23 AM,01/03/2016 09:12:00 AM,01/03/2016 09:12:33 AM,01/03/2016 09:15:35 AM,01/03/2016 09:41:22 AM,01/03/2016 10:05:59 AM,Code 2 Transport,01/03/2016 10:37:40 AM,100 Block of PAGE ST,San Francisco,94102,B02,36,3313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",160030916-AM02 +130140130,E36,13004735,Medical Incident,01/14/2013,01/14/2013,01/14/2013 09:58:59 AM,01/14/2013 09:59:56 AM,01/14/2013 10:00:45 AM,04/25/2016 01:54:49 PM,01/14/2013 10:02:47 AM,04/25/2016 01:54:49 PM,04/25/2016 01:54:49 PM,Other,01/14/2013 10:15:40 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",130140130-E36 +111960324,94,11064829,Medical Incident,07/15/2011,07/15/2011,07/15/2011 09:20:01 PM,07/15/2011 09:21:23 PM,07/15/2011 09:21:54 PM,07/15/2011 09:22:19 PM,07/15/2011 09:24:17 PM,07/15/2011 09:30:03 PM,07/15/2011 10:13:00 PM,Code 2 Transport,07/15/2011 10:38:58 PM,POST ST/DIVISADERO ST,SF,94115,B04,10,4131,3,3,3,true,,1,MEDIC,1,5,5,Japantown,"(37.7843186737916, -122.439684677541)",111960324-94 +130790189,AM08,13026401,Medical Incident,03/20/2013,03/20/2013,03/20/2013 01:29:44 PM,03/20/2013 01:32:06 PM,03/20/2013 01:32:30 PM,03/20/2013 01:33:17 PM,03/20/2013 01:39:52 PM,03/20/2013 02:18:20 PM,03/20/2013 02:36:20 PM,Code 2 Transport,03/20/2013 03:09:17 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130790189-AM08 +123310022,79,12109896,Medical Incident,11/26/2012,11/25/2012,11/26/2012 01:49:08 AM,11/26/2012 01:51:11 AM,11/26/2012 01:51:29 AM,11/26/2012 01:51:55 AM,11/26/2012 01:56:00 AM,11/26/2012 02:01:42 AM,11/26/2012 02:06:57 AM,Code 2 Transport,11/26/2012 02:30:07 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,1,1,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",123310022-79 +160372293,AM12,16014740,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:43:02 PM,02/06/2016 02:44:23 PM,02/06/2016 02:44:38 PM,02/06/2016 02:45:16 PM,02/06/2016 03:00:44 PM,02/06/2016 03:10:03 PM,02/06/2016 03:24:57 PM,Code 2 Transport,02/06/2016 03:51:33 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160372293-AM12 +103540025,T01,10113525,Alarms,12/20/2010,12/19/2010,12/20/2010 03:23:06 AM,12/20/2010 03:24:13 AM,12/20/2010 03:24:25 AM,12/20/2010 03:26:33 AM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,Other,12/20/2010 03:31:14 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7812234542945, -122.408928070797)",103540025-T01 +160850144,70,16033618,Medical Incident,03/25/2016,03/24/2016,03/25/2016 01:06:25 AM,03/25/2016 01:08:37 AM,03/25/2016 01:08:52 AM,03/25/2016 01:09:01 AM,03/25/2016 01:31:27 AM,03/25/2016 01:31:33 AM,03/25/2016 01:43:13 AM,Code 2 Transport,03/25/2016 02:30:25 AM,2200 Block of 42ND AVE,San Francisco,94116,B08,18,7635,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7447589556193, -122.500599930305)",160850144-70 +160872069,KM13,16034598,Medical Incident,03/27/2016,03/27/2016,03/27/2016 02:33:08 PM,03/27/2016 02:33:34 PM,03/27/2016 02:35:01 PM,03/27/2016 02:35:43 PM,03/27/2016 02:41:47 PM,03/27/2016 02:54:52 PM,03/27/2016 03:25:00 PM,Code 2 Transport,03/27/2016 04:08:26 PM,DRUMM ST/CLAY ST,San Francisco,94111,B01,13,1116,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",160872069-KM13 +133080269,T18,13104783,Alarms,11/04/2013,11/04/2013,11/04/2013 04:18:12 PM,11/04/2013 04:19:28 PM,11/04/2013 04:19:34 PM,11/04/2013 04:22:07 PM,11/04/2013 04:25:44 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/04/2013 04:30:41 PM,1800 Block of KIRKHAM ST,SF,94122,B08,22,7447,3,3,3,false,Alarm,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7596118153789, -122.480607761661)",133080269-T18 +160192261,KM05,16007693,Medical Incident,01/19/2016,01/19/2016,01/19/2016 03:12:14 PM,01/19/2016 03:14:47 PM,01/19/2016 03:14:54 PM,01/19/2016 03:16:27 PM,01/19/2016 03:19:02 PM,01/19/2016 03:34:14 PM,01/19/2016 03:49:35 PM,Code 2 Transport,01/19/2016 04:29:37 PM,700 Block of 9TH AVE,San Francisco,94118,B07,31,7133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7742838362114, -122.467088086382)",160192261-KM05 +160062896,62,16002529,Medical Incident,01/06/2016,01/06/2016,01/06/2016 05:52:43 PM,01/06/2016 05:53:29 PM,01/06/2016 05:53:40 PM,01/06/2016 05:53:51 PM,01/06/2016 05:55:55 PM,01/06/2016 06:12:04 PM,01/06/2016 06:20:31 PM,Code 2 Transport,01/06/2016 06:53:26 PM,18TH ST/GUERRERO ST,San Francisco,94110,B02,7,5422,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7615656740721, -122.42380067092)",160062896-62 +123170132,E32,12105459,Medical Incident,11/12/2012,11/12/2012,11/12/2012 11:50:03 AM,11/12/2012 11:50:16 AM,11/12/2012 11:51:01 AM,11/12/2012 11:51:54 AM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,Other,11/12/2012 11:53:21 AM,200 Block of SILVER AVE,SF,94112,B09,32,6113,3,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7294754378112, -122.432892177428)",123170132-E32 +112180001,E28,11071904,Alarms,08/05/2011,08/05/2011,08/05/2011 11:59:19 PM,08/06/2011 12:00:32 AM,08/06/2011 12:00:47 AM,08/06/2011 12:02:10 AM,08/06/2011 12:06:18 AM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/06/2011 12:13:38 AM,400 Block of JEFFERSON ST,SF,94109,B01,28,1524,3,3,3,false,,1,ENGINE,3,1,2,Russian Hill,"(37.8076423943453, -122.419903598279)",112180001-E28 +160781401,KM09,16030986,Medical Incident,03/18/2016,03/18/2016,03/18/2016 10:50:44 AM,03/18/2016 10:52:11 AM,03/18/2016 10:52:29 AM,03/18/2016 10:56:53 AM,03/18/2016 11:01:08 AM,03/18/2016 11:25:28 AM,03/18/2016 11:32:47 AM,Code 2 Transport,03/18/2016 12:10:23 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160781401-KM09 +132120302,E06,13071764,Medical Incident,07/31/2013,07/31/2013,07/31/2013 07:18:57 PM,07/31/2013 07:21:00 PM,07/31/2013 07:21:18 PM,07/31/2013 07:22:09 PM,07/31/2013 07:24:25 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,07/31/2013 07:37:16 PM,900 Block of HAIGHT ST,SF,94117,B05,21,4246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7711077229875, -122.437866452972)",132120302-E06 +113630275,AM08,11120680,Medical Incident,12/29/2011,12/29/2011,12/29/2011 06:51:17 PM,12/29/2011 06:52:57 PM,12/29/2011 06:53:20 PM,12/29/2011 06:54:10 PM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/29/2011 07:01:37 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",113630275-AM08 +102900020,T05,10092376,Alarms,10/17/2010,10/16/2010,10/17/2010 12:56:24 AM,10/17/2010 12:57:23 AM,10/17/2010 12:57:33 AM,10/17/2010 12:58:47 AM,10/17/2010 01:00:28 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 01:10:11 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,,1,TRUCK,2,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",102900020-T05 +112270323,B01,11075138,Structure Fire,08/15/2011,08/15/2011,08/15/2011 05:54:13 PM,08/15/2011 05:55:06 PM,08/15/2011 05:55:26 PM,08/15/2011 05:57:39 PM,08/15/2011 05:59:22 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 06:11:42 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,CHIEF,4,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",112270323-B01 +121020068,KM07,12033728,Medical Incident,04/11/2012,04/10/2012,04/11/2012 07:13:29 AM,04/11/2012 07:16:08 AM,04/11/2012 07:16:24 AM,04/11/2012 07:16:57 AM,04/11/2012 07:32:29 AM,04/11/2012 07:56:01 AM,04/11/2012 08:03:30 AM,Code 2 Transport,04/11/2012 08:45:33 AM,3100 Block of 21ST ST,SF,94110,B06,7,5455,3,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7570790190504, -122.417260520587)",121020068-KM07 +121410040,B09,12046724,Structure Fire,05/20/2012,05/19/2012,05/20/2012 02:46:48 AM,05/20/2012 02:47:24 AM,05/20/2012 02:47:36 AM,05/20/2012 02:48:58 AM,05/20/2012 02:54:02 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 03:24:29 AM,100 Block of SURREY ST,SF,94131,B06,26,8156,3,3,3,false,Fire,1,CHIEF,3,6,8,Glen Park,"(37.7359859928405, -122.434770054605)",121410040-B09 +121760288,E41,12058591,Medical Incident,06/24/2012,06/24/2012,06/24/2012 05:05:41 PM,06/24/2012 05:07:03 PM,06/24/2012 05:08:04 PM,06/24/2012 05:08:53 PM,06/24/2012 05:11:09 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 05:11:11 PM,CALIFORNIA ST/HYDE ST,SF,94109,B01,41,1541,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",121760288-E41 +112580064,B02,11084960,Medical Incident,09/15/2011,09/14/2011,09/15/2011 07:15:33 AM,09/15/2011 07:16:22 AM,09/15/2011 07:16:30 AM,09/15/2011 07:19:09 AM,09/15/2011 07:20:33 AM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/15/2011 07:44:16 AM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,false,,1,CHIEF,1,2,6,Tenderloin,"(37.7773515638882, -122.418857320448)",112580064-B02 +130310335,E44,13010700,Other,01/31/2013,01/31/2013,01/31/2013 06:38:35 PM,01/31/2013 06:39:10 PM,01/31/2013 06:39:15 PM,04/25/2016 01:54:31 PM,01/31/2013 06:42:29 PM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,01/31/2013 06:50:03 PM,ARLETA AV/BAYSHORE BL,SF,94134,B10,44,6271,2,2,2,true,Alarm,1,ENGINE,1,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",130310335-E44 +160762833,53,16030246,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:52:08 PM,03/16/2016 04:53:28 PM,03/16/2016 04:54:40 PM,03/16/2016 04:54:55 PM,03/16/2016 05:15:17 PM,03/16/2016 05:32:48 PM,03/16/2016 05:32:49 PM,Code 2 Transport,03/16/2016 06:26:54 PM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160762833-53 +132710177,AM06,13092064,Medical Incident,09/28/2013,09/28/2013,09/28/2013 12:04:03 PM,09/28/2013 12:04:21 PM,09/28/2013 12:04:33 PM,09/28/2013 12:05:09 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,Other,09/28/2013 12:07:57 PM,DUBOCE AV/VALENCIA ST,SF,94103,B02,36,5126,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7698676980277, -122.422364819149)",132710177-AM06 +122990037,RS1,12098973,Structure Fire,10/25/2012,10/24/2012,10/25/2012 02:17:44 AM,10/25/2012 02:19:05 AM,10/25/2012 02:19:30 AM,10/25/2012 02:20:57 AM,10/25/2012 02:22:34 AM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/25/2012 02:27:41 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Alarm,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",122990037-RS1 +70110033,B04,7003129,Alarms,01/11/2007,01/10/2007,01/11/2007 04:50:27 AM,01/11/2007 04:51:48 AM,01/11/2007 04:51:56 AM,01/11/2007 04:54:35 AM,04/25/2016 03:41:12 PM,04/25/2016 03:41:12 PM,04/25/2016 03:41:12 PM,Other,04/25/2016 03:41:12 PM,1200 Block of COLUMBUS AVE,SF,94133,B01,28,1525,3,3,3,false,,1,CHIEF,4,1,3,North Beach,"(37.8056147061622, -122.417757636198)",070110033-B04 +160831604,65,16032926,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:43:06 AM,03/23/2016 11:46:38 AM,03/23/2016 11:46:43 AM,03/23/2016 11:46:51 AM,03/23/2016 11:53:03 AM,03/23/2016 12:24:51 PM,03/23/2016 12:24:52 PM,Code 2 Transport,03/23/2016 01:41:07 PM,1600 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",160831604-65 +112020404,95,11066823,Medical Incident,07/21/2011,07/21/2011,07/21/2011 09:06:57 PM,07/21/2011 09:07:42 PM,07/21/2011 09:07:51 PM,07/21/2011 09:08:02 PM,07/21/2011 09:12:52 PM,07/21/2011 09:18:15 PM,07/21/2011 09:31:30 PM,Code 2 Transport,07/21/2011 10:02:53 PM,3500 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7393668849403, -122.423797447335)",112020404-95 +110130289,66,11004406,Medical Incident,01/13/2011,01/13/2011,01/13/2011 04:58:39 PM,01/13/2011 05:00:19 PM,01/13/2011 05:05:03 PM,01/13/2011 05:05:13 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Other,04/25/2016 02:06:37 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,2,2,2,true,,1,MEDIC,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",110130289-66 +160844149,AM16,16033571,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:14:29 PM,03/24/2016 10:16:19 PM,03/24/2016 10:17:13 PM,03/24/2016 10:18:01 PM,03/24/2016 10:37:26 PM,03/24/2016 10:48:35 PM,03/24/2016 11:15:23 PM,Code 2 Transport,03/24/2016 11:36:44 PM,1500 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7310897557507, -122.389268390192)",160844149-AM16 +113360393,T12,11111403,Alarms,12/02/2011,12/02/2011,12/02/2011 07:08:31 PM,12/02/2011 07:10:10 PM,12/02/2011 07:10:27 PM,12/02/2011 07:11:20 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 07:12:35 PM,1300 Block of FUNSTON AVE,SF,94122,B08,22,7347,3,3,3,false,,1,TRUCK,3,8,5,Inner Sunset,"(37.7629209366704, -122.47046092083)",113360393-T12 +133080259,RS1,13104774,Medical Incident,11/04/2013,11/04/2013,11/04/2013 04:01:28 PM,11/04/2013 04:02:38 PM,11/04/2013 04:03:08 PM,11/04/2013 04:04:24 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/04/2013 04:06:02 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",133080259-RS1 +132780051,68,13094386,Medical Incident,10/05/2013,10/04/2013,10/05/2013 03:14:10 AM,10/05/2013 03:14:46 AM,10/05/2013 03:16:07 AM,10/05/2013 03:17:14 AM,10/05/2013 03:37:35 AM,10/05/2013 03:40:44 AM,10/05/2013 04:02:46 AM,Code 2 Transport,10/05/2013 04:30:42 AM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8061515935611, -122.418537074676)",132780051-68 +111090127,E36,11035948,Structure Fire,04/19/2011,04/19/2011,04/19/2011 11:25:19 AM,04/19/2011 11:25:19 AM,04/19/2011 11:26:07 AM,04/19/2011 11:27:10 AM,04/19/2011 11:28:41 AM,04/25/2016 02:05:02 PM,04/25/2016 02:05:02 PM,Other,04/19/2011 11:29:19 AM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",111090127-E36 +160770331,AM22,16030435,Medical Incident,03/17/2016,03/16/2016,03/17/2016 03:37:21 AM,03/17/2016 03:38:25 AM,03/17/2016 03:40:51 AM,03/17/2016 03:41:19 AM,03/17/2016 03:48:06 AM,03/17/2016 03:54:20 AM,03/17/2016 04:08:12 AM,Code 2 Transport,03/17/2016 05:19:19 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160770331-AM22 +122760036,B01,12090995,Alarms,10/02/2012,10/01/2012,10/02/2012 02:59:08 AM,10/02/2012 03:00:21 AM,10/02/2012 03:00:39 AM,10/02/2012 03:02:52 AM,10/02/2012 03:09:52 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 03:10:06 AM,500 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,CHIEF,2,4,6,Tenderloin,"(37.7860096412795, -122.416458282406)",122760036-B01 +110900363,58,11029915,Medical Incident,03/31/2011,03/31/2011,03/31/2011 07:34:38 PM,03/31/2011 07:37:07 PM,03/31/2011 07:46:48 PM,03/31/2011 08:07:36 PM,03/31/2011 08:12:41 PM,03/31/2011 08:15:14 PM,04/25/2016 02:05:20 PM,Code 2 Transport,03/31/2011 08:35:42 PM,1800 Block of OAKDALE AVE,SF,94124,B10,42,6444,2,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375042189557, -122.395572399938)",110900363-58 +160142015,65,16005596,Medical Incident,01/14/2016,01/14/2016,01/14/2016 01:55:01 PM,01/14/2016 01:56:40 PM,01/14/2016 01:59:23 PM,01/14/2016 02:01:14 PM,01/14/2016 02:06:48 PM,01/14/2016 02:17:02 PM,01/14/2016 03:01:13 PM,Code 2 Transport,01/14/2016 03:28:23 PM,BROADWAY/KEARNY ST,San Francisco,94133,B01,13,1231,2,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.7980169557217, -122.40547307119)",160142015-65 +113080278,72,11102387,Medical Incident,11/04/2011,11/04/2011,11/04/2011 04:14:27 PM,11/04/2011 04:16:21 PM,11/04/2011 04:18:14 PM,11/04/2011 04:18:31 PM,11/04/2011 04:21:37 PM,11/04/2011 04:34:46 PM,11/04/2011 04:45:46 PM,Code 2 Transport,11/04/2011 05:19:49 PM,2300 Block of 16TH ST,SF,94103,B02,29,5241,3,3,3,true,,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",113080278-72 +160903899,78,16035892,Medical Incident,03/30/2016,03/30/2016,03/30/2016 10:01:17 PM,03/30/2016 10:05:49 PM,03/30/2016 10:06:53 PM,03/30/2016 10:07:58 PM,03/30/2016 10:17:29 PM,03/30/2016 10:32:01 PM,03/30/2016 11:00:11 PM,Code 2 Transport,03/30/2016 11:32:00 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160903899-78 +112560360,B02,11084580,Structure Fire,09/13/2011,09/13/2011,09/13/2011 10:34:29 PM,09/13/2011 10:35:33 PM,09/13/2011 10:35:46 PM,09/13/2011 10:36:39 PM,09/13/2011 10:38:27 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Fire,09/14/2011 12:27:19 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",112560360-B02 +131710284,E25,13058140,Medical Incident,06/20/2013,06/20/2013,06/20/2013 05:39:32 PM,06/20/2013 05:39:53 PM,06/20/2013 05:40:45 PM,06/20/2013 05:42:18 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,Other,06/20/2013 05:45:01 PM,0 Block of CASHMERE ST,SF,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",131710284-E25 +140880111,87,14029585,Medical Incident,03/29/2014,03/29/2014,03/29/2014 09:36:31 AM,03/29/2014 09:41:43 AM,03/29/2014 09:41:53 AM,03/29/2014 09:42:06 AM,03/29/2014 09:49:12 AM,03/29/2014 10:01:47 AM,03/29/2014 10:16:20 AM,Code 2 Transport,03/29/2014 10:46:45 AM,100 Block of HALE ST,SAN FRANCISCO,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7322416900991, -122.408073349592)",140880111-87 +130950141,85,13031772,Medical Incident,04/05/2013,04/05/2013,04/05/2013 11:10:27 AM,04/05/2013 11:13:04 AM,04/05/2013 11:13:36 AM,04/05/2013 11:14:03 AM,04/05/2013 11:25:50 AM,04/05/2013 11:39:13 AM,04/05/2013 11:52:20 AM,Code 2 Transport,04/05/2013 12:27:33 PM,100 Block of JENNINGS ST,SF,94124,B10,25,996,3,3,3,true,Non Life-threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",130950141-85 +122260087,T01,12074846,Structure Fire,08/13/2012,08/13/2012,08/13/2012 08:29:58 AM,08/13/2012 08:29:58 AM,08/13/2012 08:30:06 AM,08/13/2012 08:30:54 AM,08/13/2012 08:33:08 AM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 08:33:31 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122260087-T01 +131640273,58,13055786,Medical Incident,06/13/2013,06/13/2013,06/13/2013 04:47:41 PM,06/13/2013 04:48:28 PM,06/13/2013 04:49:05 PM,06/13/2013 04:49:28 PM,06/13/2013 04:52:02 PM,06/13/2013 05:08:13 PM,06/13/2013 05:15:28 PM,Code 2 Transport,06/13/2013 05:46:46 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",131640273-58 +160721591,67,16028586,Medical Incident,03/12/2016,03/12/2016,03/12/2016 12:53:36 PM,03/12/2016 12:54:37 PM,03/12/2016 12:54:56 PM,03/12/2016 12:55:16 PM,03/12/2016 01:02:07 PM,03/12/2016 01:14:20 PM,03/12/2016 01:31:38 PM,Code 2 Transport,03/12/2016 02:24:39 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160721591-67 +131420279,E01,13048215,Traffic Collision,05/22/2013,05/22/2013,05/22/2013 04:01:27 PM,05/22/2013 04:02:49 PM,05/22/2013 04:03:15 PM,05/22/2013 04:04:32 PM,05/22/2013 04:06:37 PM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,Other,05/22/2013 04:23:09 PM,JONES ST/TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",131420279-E01 +160410389,62,16016307,Medical Incident,02/10/2016,02/09/2016,02/10/2016 05:11:30 AM,02/10/2016 05:13:53 AM,02/10/2016 05:16:46 AM,02/10/2016 05:17:04 AM,02/10/2016 05:21:27 AM,02/10/2016 05:35:32 AM,02/10/2016 05:51:11 AM,Code 2 Transport,02/10/2016 06:28:45 AM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7101932992299, -122.416700898623)",160410389-62 +110040346,T19,11001433,Alarms,01/04/2011,01/04/2011,01/04/2011 07:53:24 PM,01/04/2011 07:54:14 PM,01/04/2011 07:55:14 PM,01/04/2011 07:57:29 PM,01/04/2011 08:02:09 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/04/2011 08:09:43 PM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,,1,TRUCK,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",110040346-T19 +130940020,87,13031335,Medical Incident,04/04/2013,04/03/2013,04/04/2013 02:09:25 AM,04/04/2013 02:10:54 AM,04/04/2013 02:11:27 AM,04/04/2013 02:11:51 AM,04/04/2013 02:19:44 AM,04/04/2013 02:30:12 AM,04/04/2013 02:59:09 AM,Code 2 Transport,04/04/2013 03:15:31 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",130940020-87 +160731934,KM11,16029020,Medical Incident,03/13/2016,03/13/2016,03/13/2016 04:13:49 PM,03/13/2016 04:14:50 PM,03/13/2016 04:16:14 PM,03/13/2016 04:17:13 PM,03/13/2016 04:20:51 PM,03/13/2016 04:40:34 PM,03/13/2016 05:07:01 PM,Code 2 Transport,03/13/2016 05:18:10 PM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160731934-KM11 +110740039,E26,11024241,Medical Incident,03/15/2011,03/14/2011,03/15/2011 04:25:48 AM,03/15/2011 04:28:39 AM,03/15/2011 04:29:04 AM,03/15/2011 04:33:31 AM,03/15/2011 04:39:45 AM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/15/2011 04:48:21 AM,100 Block of HAMERTON AVE,SF,94131,B10,26,8213,3,3,3,true,,1,ENGINE,2,9,8,West of Twin Peaks,"(37.7334365327686, -122.437842254623)",110740039-E26 +132860019,E03,13097131,Medical Incident,10/13/2013,10/12/2013,10/13/2013 01:31:36 AM,10/13/2013 01:31:36 AM,10/13/2013 01:34:52 AM,10/13/2013 01:36:46 AM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/13/2013 01:40:14 AM,BUSH ST/POLK ST,SF,94109,B04,3,1636,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",132860019-E03 +113570238,T13,11118630,Medical Incident,12/23/2011,12/23/2011,12/23/2011 12:04:19 PM,12/23/2011 12:05:03 PM,12/23/2011 12:05:30 PM,12/23/2011 12:06:09 PM,12/23/2011 12:07:53 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 12:21:18 PM,100 Block of DRUMM ST,SF,94111,B01,13,1115,3,2,2,true,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",113570238-T13 +140010480,E41,14000404,Gas Leak (Natural and LP Gases),01/01/2014,01/01/2014,01/01/2014 04:42:31 PM,01/01/2014 04:43:34 PM,01/01/2014 04:43:43 PM,01/01/2014 04:44:59 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/01/2014 04:45:29 PM,1100 Block of BUSH ST,SF,94109,B01,41,1542,,3,3,false,Alarm,1,ENGINE,4,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",140010480-E41 +111650362,E13,11054588,Medical Incident,06/14/2011,06/14/2011,06/14/2011 08:41:47 PM,06/14/2011 08:42:57 PM,06/14/2011 08:43:55 PM,06/14/2011 08:44:55 PM,06/14/2011 08:46:06 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/14/2011 09:00:36 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",111650362-E13 +133130153,AM24,13106343,Medical Incident,11/09/2013,11/09/2013,11/09/2013 10:15:51 AM,11/09/2013 10:16:13 AM,11/09/2013 10:16:31 AM,11/09/2013 10:17:13 AM,11/09/2013 10:22:21 AM,11/09/2013 10:49:32 AM,11/09/2013 11:09:20 AM,Code 2 Transport,11/09/2013 11:43:27 AM,300 Block of ROOSEVELT WAY,SF,94114,B05,6,5175,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7649307776933, -122.442869421813)",133130153-AM24 +110950010,E25,11031409,Structure Fire,04/05/2011,04/04/2011,04/05/2011 12:57:33 AM,04/05/2011 12:57:33 AM,04/05/2011 12:57:49 AM,04/05/2011 12:58:56 AM,04/05/2011 01:02:15 AM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,Fire,04/05/2011 01:02:30 AM,100 Block of CASHMERE ST,SF,94124,B10,25,6522,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",110950010-E25 +140100414,81,14003690,Medical Incident,01/10/2014,01/10/2014,01/10/2014 11:45:04 PM,01/10/2014 11:47:11 PM,01/10/2014 11:47:39 PM,01/10/2014 11:48:12 PM,01/10/2014 11:57:29 PM,01/11/2014 12:16:38 AM,01/11/2014 12:47:57 AM,Code 2 Transport,01/11/2014 01:20:25 AM,2000 Block of FILLMORE ST,SF,94115,B04,38,3543,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7884369454792, -122.433675045444)",140100414-81 +130710084,AM06,13023616,Structure Fire,03/12/2013,03/12/2013,03/12/2013 08:53:45 AM,03/12/2013 08:53:45 AM,03/12/2013 08:58:49 AM,03/12/2013 08:59:26 AM,03/12/2013 09:02:38 AM,03/12/2013 09:12:00 AM,03/12/2013 09:23:09 AM,Code 2 Transport,03/12/2013 09:57:05 AM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,false,Alarm,1,PRIVATE,3,3,6,South of Market,"(37.7812876870909, -122.411318055371)",130710084-AM06 +140350426,96,14012029,Medical Incident,02/04/2014,02/04/2014,02/04/2014 09:30:57 PM,02/04/2014 09:32:04 PM,02/04/2014 09:32:12 PM,02/04/2014 09:32:17 PM,02/04/2014 09:34:09 PM,02/04/2014 10:03:36 PM,02/04/2014 10:08:04 PM,Code 2 Transport,02/04/2014 10:28:52 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",140350426-96 +160793114,54,16031507,Medical Incident,03/19/2016,03/19/2016,03/19/2016 06:02:16 PM,03/19/2016 06:03:16 PM,03/19/2016 06:03:59 PM,03/19/2016 06:04:12 PM,03/19/2016 06:09:44 PM,03/19/2016 06:22:11 PM,03/19/2016 06:44:26 PM,Code 2 Transport,03/19/2016 07:17:43 PM,MARKET ST/9TH ST,San Francisco,94103,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160793114-54 +113420056,66,11113295,Structure Fire,12/08/2011,12/07/2011,12/08/2011 06:25:54 AM,12/08/2011 06:28:48 AM,12/08/2011 06:28:55 AM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/08/2011 06:38:15 AM,500 Block of BURNETT AVE,SF,94131,B06,24,5281,3,3,3,true,,1,MEDIC,8,6,8,Twin Peaks,"(37.7522092988242, -122.444482891572)",113420056-66 +160473653,53,16019127,Medical Incident,02/16/2016,02/16/2016,02/16/2016 09:08:40 PM,02/16/2016 09:09:43 PM,02/16/2016 09:10:17 PM,02/16/2016 09:10:17 PM,02/16/2016 09:16:46 PM,02/16/2016 09:47:37 PM,02/16/2016 09:47:57 PM,Code 2 Transport,02/16/2016 10:20:15 PM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160473653-53 +160863492,KM07,16034349,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:00:48 PM,03/26/2016 09:02:54 PM,03/26/2016 09:04:01 PM,03/26/2016 09:04:30 PM,03/26/2016 09:08:34 PM,03/26/2016 09:25:34 PM,03/26/2016 09:39:47 PM,Code 2 Transport,03/26/2016 10:10:23 PM,600 Block of MARKET ST,San Francisco,94104,B03,1,2211,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",160863492-KM07 +132470155,87,13083304,Medical Incident,09/04/2013,09/04/2013,09/04/2013 11:05:15 AM,09/04/2013 11:06:52 AM,09/04/2013 11:07:32 AM,09/04/2013 11:07:36 AM,09/04/2013 11:16:42 AM,09/04/2013 11:39:39 AM,09/04/2013 11:52:54 AM,Code 2 Transport,09/04/2013 12:29:33 PM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",132470155-87 +113630125,E21,11120544,Medical Incident,12/29/2011,12/29/2011,12/29/2011 11:31:36 AM,12/29/2011 11:32:03 AM,12/29/2011 11:32:43 AM,12/29/2011 11:33:32 AM,12/29/2011 11:35:25 AM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/29/2011 11:46:57 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",113630125-E21 +133620031,E35,13122867,Medical Incident,12/28/2013,12/27/2013,12/28/2013 02:13:59 AM,12/28/2013 02:14:14 AM,12/28/2013 02:14:35 AM,12/28/2013 02:16:11 AM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 02:19:23 AM,0 Block of MISSION ST,SF,94105,B03,35,2131,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7935385958356, -122.392889145798)",133620031-E35 +160450892,74,16018040,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:19:26 AM,02/14/2016 08:21:01 AM,02/14/2016 08:35:33 AM,02/14/2016 08:35:41 AM,02/14/2016 08:40:48 AM,02/14/2016 08:55:52 AM,02/14/2016 09:05:33 AM,Code 2 Transport,02/14/2016 09:30:01 AM,1100 Block of MCALLISTER ST,San Francisco,94115,B02,5,3425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7788506690436, -122.430485430914)",160450892-74 +160452991,52,16018261,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:52:39 PM,02/14/2016 07:54:08 PM,02/14/2016 07:54:23 PM,02/14/2016 07:54:34 PM,02/14/2016 07:59:58 PM,02/14/2016 08:17:33 PM,02/14/2016 08:23:22 PM,Code 2 Transport,02/14/2016 09:03:35 PM,0 Block of CENTRAL AV,San Francisco,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7692123967769, -122.443477161647)",160452991-52 +110880240,99,11029092,Medical Incident,03/29/2011,03/29/2011,03/29/2011 03:12:30 PM,03/29/2011 03:15:45 PM,03/29/2011 03:18:04 PM,03/29/2011 03:28:30 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 03:32:27 PM,100 Block of OAK ST,SF,94102,B02,36,3266,1,1,2,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7751828010225, -122.421790707519)",110880240-99 +123330151,T05,12110632,Alarms,11/28/2012,11/28/2012,11/28/2012 11:31:46 AM,11/28/2012 11:32:44 AM,11/28/2012 11:33:05 AM,04/25/2016 01:55:36 PM,11/28/2012 11:34:40 AM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/28/2012 11:42:35 AM,800 Block of HAYES ST,SF,94117,B02,5,3522,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",123330151-T05 +122490138,RS1,12082315,Medical Incident,09/05/2012,09/05/2012,09/05/2012 12:04:11 PM,09/05/2012 12:05:28 PM,09/05/2012 12:05:45 PM,09/05/2012 12:06:32 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/05/2012 12:08:37 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",122490138-RS1 +131880324,66,13064221,Medical Incident,07/07/2013,07/07/2013,07/07/2013 08:35:59 PM,07/07/2013 08:38:28 PM,07/07/2013 08:38:42 PM,07/07/2013 08:38:50 PM,07/07/2013 08:44:50 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 09:00:09 PM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",131880324-66 +102430175,KM15,10076625,Medical Incident,08/31/2010,08/31/2010,08/31/2010 12:05:02 PM,08/31/2010 12:08:39 PM,08/31/2010 12:23:30 PM,08/31/2010 12:30:42 PM,08/31/2010 12:40:23 PM,08/31/2010 12:55:05 PM,08/31/2010 01:12:21 PM,Code 2 Transport,08/31/2010 01:38:55 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",102430175-KM15 +160851585,88,16033747,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:53:33 AM,03/25/2016 11:55:59 AM,03/25/2016 11:58:02 AM,03/25/2016 11:58:30 AM,03/25/2016 12:04:14 PM,03/25/2016 12:18:52 PM,03/25/2016 12:32:48 PM,Code 2 Transport,03/25/2016 01:04:13 PM,0 Block of MORAGA AVE,Presidio,94129,B99,51,4626,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.7975035110849, -122.458535633981)",160851585-88 +160341048,79,16013311,Medical Incident,02/03/2016,02/03/2016,02/03/2016 09:58:19 AM,02/03/2016 10:01:07 AM,02/03/2016 10:02:10 AM,02/03/2016 10:02:46 AM,02/03/2016 10:14:51 AM,02/03/2016 10:57:05 AM,02/03/2016 11:18:46 AM,Code 2 Transport,02/03/2016 12:08:21 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160341048-79 +112760068,AP,11091263,Other,10/03/2011,10/02/2011,10/03/2011 06:43:59 AM,10/03/2011 06:43:59 AM,10/03/2011 06:43:59 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Fire,10/03/2011 06:44:22 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",112760068-AP +160603804,64,16024128,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:18:20 PM,02/29/2016 11:18:20 PM,02/29/2016 11:18:36 PM,02/29/2016 11:18:48 PM,02/29/2016 11:36:21 PM,03/01/2016 12:14:29 AM,03/01/2016 12:21:29 AM,Other,03/01/2016 01:30:04 AM,24TH ST/TREAT AV,San Francisco,94110,B06,7,5527,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7525727580898, -122.41299517484)",160603804-64 +130290352,T15,13010052,Traffic Collision,01/29/2013,01/29/2013,01/29/2013 08:53:42 PM,01/29/2013 08:55:11 PM,01/29/2013 09:03:38 PM,01/29/2013 09:04:41 PM,01/29/2013 09:08:14 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/29/2013 09:14:16 PM,200 Block of SAN JOSE AVE,SF,94110,B09,33,8371,2,2,2,false,Non Life-threatening,1,TRUCK,3,6,8,Mission,"(37.7512439644709, -122.421585334305)",130290352-T15 +140300298,E23,14010302,Other,01/30/2014,01/30/2014,01/30/2014 06:23:31 PM,01/30/2014 06:25:03 PM,01/30/2014 06:25:14 PM,01/30/2014 06:27:05 PM,01/30/2014 06:28:58 PM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Fire,01/30/2014 06:48:39 PM,1300 Block of 46TH AVE,SF,94122,B08,23,7721,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7613577781783, -122.505924512458)",140300298-E23 +111150373,E51,11038100,Alarms,04/25/2011,04/25/2011,04/25/2011 09:37:25 PM,04/25/2011 09:38:05 PM,04/25/2011 09:38:41 PM,04/25/2011 09:39:58 PM,04/25/2011 09:40:35 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 09:46:44 PM,200 Block of LINCOLN BLVD,PR,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8015231495142, -122.455935974002)",111150373-E51 +123130197,E03,12104146,Alarms,11/08/2012,11/08/2012,11/08/2012 12:49:24 PM,11/08/2012 12:50:48 PM,11/08/2012 12:50:59 PM,11/08/2012 12:52:47 PM,11/08/2012 12:56:27 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 01:06:45 PM,600 Block of NATOMA ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7774997276449, -122.410999268699)",123130197-E03 +160911098,79,16036019,Medical Incident,03/31/2016,03/31/2016,03/31/2016 10:08:47 AM,03/31/2016 10:10:45 AM,03/31/2016 10:11:11 AM,03/31/2016 10:11:19 AM,03/31/2016 10:19:42 AM,03/31/2016 10:42:10 AM,03/31/2016 11:02:19 AM,Code 2 Transport,03/31/2016 11:47:30 AM,200 Block of DRAKE ST,San Francisco,94112,B09,43,6227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.708780112841, -122.435517133765)",160911098-79 +160814023,65,16032399,Citizen Assist / Service Call,03/21/2016,03/21/2016,03/21/2016 11:02:42 PM,03/21/2016 11:05:51 PM,03/21/2016 11:07:13 PM,03/21/2016 11:08:07 PM,03/21/2016 11:24:39 PM,03/21/2016 11:44:33 PM,03/21/2016 11:51:25 PM,Code 2 Transport,03/22/2016 12:30:59 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Alarm,1,MEDIC,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",160814023-65 +112890114,E14,11095821,Medical Incident,10/16/2011,10/16/2011,10/16/2011 09:25:40 AM,10/16/2011 09:27:27 AM,10/16/2011 09:29:01 AM,10/16/2011 09:29:43 AM,10/16/2011 09:33:05 AM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 09:53:48 AM,600 Block of 33RD AVE,SF,94121,B07,14,7244,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7768393829407, -122.493175110923)",112890114-E14 +110640304,E15,11021176,Medical Incident,03/05/2011,03/05/2011,03/05/2011 05:19:21 PM,03/05/2011 05:19:49 PM,03/05/2011 05:21:12 PM,03/05/2011 05:23:00 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 05:24:26 PM,200 Block of ASHTON AVE,SF,94132,B09,15,8434,3,3,3,true,,1,ENGINE,3,9,7,West of Twin Peaks,"(37.7224242445103, -122.462337293434)",110640304-E15 +130760073,E44,13025295,Medical Incident,03/17/2013,03/16/2013,03/17/2013 04:53:10 AM,03/17/2013 04:54:42 AM,03/17/2013 04:55:08 AM,03/17/2013 04:57:03 AM,03/17/2013 05:00:20 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 05:11:13 AM,300 Block of TEDDY AVE,SF,94134,B09,44,6312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.715499055529, -122.409647993428)",130760073-E44 +112370374,58,11078355,Medical Incident,08/25/2011,08/25/2011,08/25/2011 09:35:27 PM,08/25/2011 09:36:30 PM,08/25/2011 09:36:38 PM,08/25/2011 09:41:20 PM,08/25/2011 09:41:38 PM,08/25/2011 09:59:45 PM,08/25/2011 10:11:59 PM,Code 2 Transport,08/25/2011 10:26:43 PM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",112370374-58 +121640216,E01,12054425,Medical Incident,06/12/2012,06/12/2012,06/12/2012 02:49:49 PM,06/12/2012 02:51:09 PM,06/12/2012 02:51:29 PM,06/12/2012 02:53:46 PM,06/12/2012 02:55:22 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 03:01:25 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",121640216-E01 +91290312,E34,9038266,Other,05/09/2009,05/09/2009,05/09/2009 09:09:14 PM,05/09/2009 09:10:23 PM,05/09/2009 09:10:36 PM,05/09/2009 09:12:02 PM,05/09/2009 09:13:19 PM,04/25/2016 03:28:55 PM,04/25/2016 03:28:55 PM,Other,05/09/2009 09:36:48 PM,400 Block of 47TH AVE,SF,94121,B07,34,7313,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794714478026, -122.508264739771)",091290312-E34 +130260088,E31,13008906,Medical Incident,01/26/2013,01/25/2013,01/26/2013 07:43:58 AM,01/26/2013 07:44:51 AM,01/26/2013 07:45:07 AM,01/26/2013 07:47:15 AM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/26/2013 07:49:22 AM,EDWARD ST/ARGUELLO BL,SF,94118,B07,31,7112,3,2,2,false,Non Life-threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7780083487713, -122.45863789522)",130260088-E31 +140390158,KM09,14013160,Medical Incident,02/08/2014,02/08/2014,02/08/2014 11:28:19 AM,02/08/2014 11:29:02 AM,02/08/2014 11:29:59 AM,02/08/2014 11:30:22 AM,02/08/2014 12:02:20 PM,02/08/2014 12:05:33 PM,02/08/2014 12:23:51 PM,Code 2 Transport,02/08/2014 12:50:08 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",140390158-KM09 +112810212,AP,11093028,Other,10/08/2011,10/08/2011,10/08/2011 01:57:16 PM,10/08/2011 01:57:16 PM,10/08/2011 01:57:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Fire,10/08/2011 01:57:38 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",112810212-AP +110680356,E03,11022441,Medical Incident,03/09/2011,03/09/2011,03/09/2011 05:00:49 PM,03/09/2011 05:02:56 PM,03/09/2011 05:04:23 PM,03/09/2011 05:05:28 PM,03/09/2011 05:07:36 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/09/2011 05:12:33 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",110680356-E03 +120230202,81,12007809,Medical Incident,01/23/2012,01/23/2012,01/23/2012 01:24:17 PM,01/23/2012 01:24:48 PM,01/23/2012 01:25:23 PM,01/23/2012 01:28:04 PM,01/23/2012 01:43:36 PM,01/23/2012 01:53:55 PM,01/23/2012 02:07:20 PM,Code 2 Transport,01/23/2012 02:30:02 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",120230202-81 +123070297,E26,12102107,Medical Incident,11/02/2012,11/02/2012,11/02/2012 05:52:14 PM,11/02/2012 05:53:42 PM,11/02/2012 05:54:02 PM,11/02/2012 05:55:27 PM,11/02/2012 05:58:41 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Patient Declined Transport,11/02/2012 06:07:06 PM,500 Block of LAIDLEY ST,SF,94131,B06,26,8111,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Glen Park,"(37.7355907204076, -122.431668474022)",123070297-E26 +102770014,E10,10087937,Alarms,10/04/2010,10/03/2010,10/04/2010 02:40:10 AM,10/04/2010 02:41:06 AM,10/04/2010 02:41:12 AM,10/04/2010 02:42:51 AM,10/04/2010 02:46:08 AM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/04/2010 02:49:00 AM,3700 Block of WASHINGTON ST,SF,94118,B07,10,4433,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7889392689062, -122.454758818504)",102770014-E10 +130280351,E38,13009736,Other,01/28/2013,01/28/2013,01/28/2013 07:55:07 PM,01/28/2013 07:55:59 PM,01/28/2013 07:56:34 PM,01/28/2013 07:57:24 PM,01/28/2013 07:59:55 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Fire,01/28/2013 08:11:15 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,Alarm,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",130280351-E38 +140850194,T07,14028637,Medical Incident,03/26/2014,03/26/2014,03/26/2014 01:19:28 PM,03/26/2014 01:20:34 PM,03/26/2014 01:21:15 PM,03/26/2014 01:22:19 PM,03/26/2014 01:24:46 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/26/2014 01:31:51 PM,2800 Block of FOLSOM ST,SAN FRANCISCO,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,6,9,Mission,"(37.7516999794245, -122.414074863195)",140850194-T07 +121250002,92,12041356,Medical Incident,05/04/2012,05/03/2012,05/04/2012 12:00:35 AM,05/04/2012 12:00:35 AM,05/04/2012 12:00:56 AM,05/04/2012 12:01:18 AM,05/04/2012 12:12:22 AM,05/04/2012 12:24:50 AM,05/04/2012 12:34:19 AM,Code 2 Transport,05/04/2012 12:47:01 AM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",121250002-92 +123510219,85,12117422,Medical Incident,12/16/2012,12/16/2012,12/16/2012 02:22:27 PM,12/16/2012 02:23:08 PM,12/16/2012 02:23:20 PM,12/16/2012 02:23:39 PM,12/16/2012 02:26:12 PM,12/16/2012 02:36:18 PM,12/16/2012 02:45:17 PM,Code 2 Transport,12/16/2012 03:15:16 PM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7619675295768, -122.417178937573)",123510219-85 +160401318,60,16015980,Medical Incident,02/09/2016,02/09/2016,02/09/2016 10:50:11 AM,02/09/2016 10:50:54 AM,02/09/2016 10:51:27 AM,02/09/2016 10:51:47 AM,02/09/2016 10:57:43 AM,02/09/2016 11:10:11 AM,02/09/2016 11:14:37 AM,Code 2 Transport,02/09/2016 11:55:53 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160401318-60 +121750410,E07,12058306,Medical Incident,06/23/2012,06/23/2012,06/23/2012 09:58:12 PM,06/23/2012 10:00:30 PM,06/23/2012 10:00:42 PM,06/23/2012 10:02:06 PM,06/23/2012 10:03:54 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 10:12:16 PM,2800 Block of 21ST ST,SF,94110,B06,7,545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7575119857155, -122.411891416138)",121750410-E07 +160221209,KM02,16008721,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:24:59 AM,01/22/2016 10:31:04 AM,01/22/2016 10:32:10 AM,01/22/2016 10:32:39 AM,01/22/2016 10:46:34 AM,01/22/2016 11:12:49 AM,01/22/2016 11:50:17 AM,Code 2 Transport,01/22/2016 12:21:08 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7677331022924, -122.415606951318)",160221209-KM02 +130840175,E44,13028039,Medical Incident,03/25/2013,03/25/2013,03/25/2013 12:09:33 PM,03/25/2013 12:10:44 PM,03/25/2013 12:13:18 PM,03/25/2013 12:14:04 PM,03/25/2013 12:19:32 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,Other,03/25/2013 12:26:28 PM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7246523794049, -122.402288649686)",130840175-E44 +160672772,85,16026861,Medical Incident,03/07/2016,03/07/2016,03/07/2016 06:36:45 PM,03/07/2016 06:37:23 PM,03/07/2016 06:41:34 PM,03/07/2016 06:41:34 PM,03/07/2016 06:50:05 PM,03/07/2016 07:07:12 PM,03/07/2016 07:17:46 PM,Code 2 Transport,03/07/2016 07:59:02 PM,14TH ST/MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",160672772-85 +103190169,E23,10102236,Medical Incident,11/15/2010,11/15/2010,11/15/2010 11:32:24 AM,11/15/2010 11:32:48 AM,11/15/2010 11:33:24 AM,11/15/2010 11:33:46 AM,11/15/2010 11:35:18 AM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 12:25:09 PM,1700 Block of 31ST AVE,SF,94122,B08,18,7534,3,1,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7546105806532, -122.489322158112)",103190169-E23 +122390026,E01,12079001,Medical Incident,08/26/2012,08/25/2012,08/26/2012 01:23:11 AM,08/26/2012 01:24:44 AM,08/26/2012 01:25:09 AM,08/26/2012 01:27:07 AM,08/26/2012 01:29:33 AM,04/25/2016 01:57:03 PM,04/25/2016 01:57:03 PM,Unable to Locate,08/26/2012 01:34:18 AM,FOLSOM ST/5TH ST,SF,94107,B03,1,2244,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",122390026-E01 +122980100,B07,12098700,Structure Fire,10/24/2012,10/24/2012,10/24/2012 09:32:48 AM,10/24/2012 09:34:24 AM,10/24/2012 09:34:28 AM,10/24/2012 09:36:11 AM,10/24/2012 09:37:55 AM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/24/2012 09:57:02 AM,300 Block of 9TH AVE,SF,94118,B07,31,7135,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7818377800951, -122.467627461804)",122980100-B07 +110160325,81,11005458,Medical Incident,01/16/2011,01/16/2011,01/16/2011 08:52:52 PM,01/16/2011 08:53:01 PM,01/16/2011 08:53:28 PM,01/16/2011 08:53:38 PM,01/16/2011 09:01:14 PM,01/16/2011 09:24:25 PM,01/16/2011 09:41:33 PM,Code 2 Transport,01/16/2011 10:09:52 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",110160325-81 +160503487,88,16020255,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:50:58 PM,02/19/2016 08:53:09 PM,02/19/2016 08:53:17 PM,02/19/2016 08:53:22 PM,02/19/2016 08:56:18 PM,02/19/2016 09:09:29 PM,02/19/2016 09:15:02 PM,Code 2 Transport,02/19/2016 09:26:18 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160503487-88 +140350152,RC3,14011785,Traffic Collision,02/04/2014,02/04/2014,02/04/2014 10:58:06 AM,02/04/2014 10:58:32 AM,02/04/2014 11:01:09 AM,02/04/2014 11:02:00 AM,02/04/2014 11:16:12 AM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Medical Examiner,02/04/2014 01:02:00 PM,SUNSET BL/YORBA ST,SF,94116,B08,18,7553,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7350234144441, -122.494014875893)",140350152-RC3 +131110022,E43,13037263,Structure Fire,04/21/2013,04/20/2013,04/21/2013 02:32:22 AM,04/21/2013 02:32:48 AM,04/21/2013 02:33:11 AM,04/21/2013 02:34:33 AM,04/21/2013 02:37:19 AM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 02:50:16 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,3,3,false,Alarm,1,ENGINE,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",131110022-E43 +133210299,E07,13109154,Medical Incident,11/17/2013,11/17/2013,11/17/2013 08:36:11 PM,11/17/2013 08:36:39 PM,11/17/2013 08:40:08 PM,11/17/2013 08:41:30 PM,11/17/2013 08:45:22 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 08:57:07 PM,3200 Block of 17TH ST,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7635887638425, -122.417913861876)",133210299-E07 +130740404,89,13024872,Medical Incident,03/15/2013,03/15/2013,03/15/2013 11:41:44 PM,03/15/2013 11:42:17 PM,03/15/2013 11:42:37 PM,03/15/2013 11:42:59 PM,03/15/2013 11:50:19 PM,03/16/2013 12:08:14 AM,03/16/2013 12:21:11 AM,Code 2 Transport,03/16/2013 01:00:28 AM,PAGE ST/WEBSTER ST,SF,94102,B05,6,3531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7732477996527, -122.428990053871)",130740404-89 +160274125,AM16,16010907,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:35:27 PM,01/27/2016 11:39:42 PM,01/27/2016 11:41:17 PM,01/27/2016 11:41:58 PM,01/27/2016 11:46:39 PM,01/28/2016 12:01:22 AM,01/28/2016 12:26:02 AM,Code 2 Transport,01/28/2016 12:48:50 AM,2800 Block of JUDAH ST,San Francisco,94122,B08,23,7541,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7610707511249, -122.492536634443)",160274125-AM16 +160591255,75,16023476,Medical Incident,02/28/2016,02/28/2016,02/28/2016 11:06:44 AM,02/28/2016 11:08:06 AM,02/28/2016 11:08:19 AM,02/28/2016 11:08:27 AM,02/28/2016 11:19:03 AM,02/28/2016 11:30:21 AM,02/28/2016 11:42:07 AM,Code 2 Transport,02/28/2016 12:41:10 PM,1100 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",160591255-75 +160280555,KM08,16010977,Medical Incident,01/28/2016,01/27/2016,01/28/2016 07:11:37 AM,01/28/2016 07:11:37 AM,01/28/2016 07:12:10 AM,01/28/2016 07:13:08 AM,01/28/2016 07:43:21 AM,01/28/2016 08:05:50 AM,01/28/2016 08:43:39 AM,Code 2 Transport,01/28/2016 09:08:49 AM,300 Block of KING ST,San Francisco,94158,B03,8,2236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",160280555-KM08 +130900180,94,13030112,Medical Incident,03/31/2013,03/31/2013,03/31/2013 01:01:37 PM,03/31/2013 01:04:24 PM,03/31/2013 01:04:52 PM,03/31/2013 01:05:10 PM,03/31/2013 01:22:54 PM,03/31/2013 01:32:01 PM,03/31/2013 01:34:28 PM,Code 2 Transport,03/31/2013 01:58:13 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",130900180-94 +110430084,B02,11014184,Alarms,02/12/2011,02/11/2011,02/12/2011 04:29:21 AM,02/12/2011 04:30:53 AM,02/12/2011 04:31:10 AM,02/12/2011 04:33:22 AM,02/12/2011 04:35:31 AM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 04:40:39 AM,400 Block of SCOTT ST,SF,94117,B05,21,4141,3,3,3,false,,1,CHIEF,2,5,5,Hayes Valley,"(37.7738199257134, -122.43577759366)",110430084-B02 +112870316,65,11095254,Medical Incident,10/14/2011,10/14/2011,10/14/2011 04:37:20 PM,10/14/2011 04:38:52 PM,10/14/2011 04:42:18 PM,04/25/2016 02:02:10 PM,10/14/2011 05:16:28 PM,10/14/2011 05:38:20 PM,10/14/2011 05:47:02 PM,Code 2 Transport,10/14/2011 06:10:21 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,1,1,2,true,,1,MEDIC,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",112870316-65 +160621282,54,16024651,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:44:01 AM,03/02/2016 10:44:50 AM,03/02/2016 10:45:15 AM,03/02/2016 10:45:30 AM,03/02/2016 10:52:36 AM,03/02/2016 10:55:32 AM,03/02/2016 11:23:47 AM,Code 2 Transport,03/02/2016 11:53:54 AM,2100 Block of 32ND AVE,San Francisco,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7470947465854, -122.490012839631)",160621282-54 +121370330,E07,12045633,Structure Fire,05/16/2012,05/16/2012,05/16/2012 06:37:36 PM,05/16/2012 06:38:03 PM,05/16/2012 06:38:35 PM,05/16/2012 06:40:56 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/16/2012 06:45:38 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,Fire,1,ENGINE,8,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",121370330-E07 +121840209,B02,12061318,Alarms,07/02/2012,07/02/2012,07/02/2012 02:53:41 PM,07/02/2012 02:53:47 PM,07/02/2012 02:54:00 PM,07/02/2012 02:55:11 PM,07/02/2012 02:56:37 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Fire,07/02/2012 03:09:15 PM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",121840209-B02 +160640641,85,16025389,Medical Incident,03/04/2016,03/03/2016,03/04/2016 07:19:24 AM,03/04/2016 07:20:57 AM,03/04/2016 07:24:00 AM,03/04/2016 07:24:05 AM,03/04/2016 07:33:57 AM,03/04/2016 07:51:51 AM,03/04/2016 08:11:12 AM,Code 2 Transport,03/04/2016 09:00:17 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160640641-85 +130810178,89,13027108,Medical Incident,03/22/2013,03/22/2013,03/22/2013 01:00:14 PM,03/22/2013 01:02:00 PM,03/22/2013 01:02:47 PM,03/22/2013 01:02:52 PM,03/22/2013 01:09:12 PM,03/22/2013 01:17:45 PM,03/22/2013 01:31:41 PM,Code 2 Transport,03/22/2013 02:12:27 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",130810178-89 +160301439,KM08,16011751,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:53:13 AM,01/30/2016 10:53:13 AM,01/30/2016 10:54:21 AM,01/30/2016 10:57:01 AM,01/30/2016 11:13:28 AM,01/30/2016 11:22:39 AM,01/30/2016 11:59:22 AM,Code 2 Transport,01/30/2016 12:40:01 PM,600 Block of MARKET ST,San Francisco,94105,B03,1,2158,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",160301439-KM08 +160690973,KM01,16027392,Medical Incident,03/09/2016,03/09/2016,03/09/2016 09:33:14 AM,03/09/2016 09:35:44 AM,03/09/2016 09:35:59 AM,03/09/2016 09:36:32 AM,03/09/2016 09:54:05 AM,03/09/2016 10:07:05 AM,03/09/2016 10:20:49 AM,Code 2 Transport,03/09/2016 11:00:54 AM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7810688918781, -122.407387172098)",160690973-KM01 +131220074,E36,13040924,Alarms,05/02/2013,05/01/2013,05/02/2013 06:28:20 AM,05/02/2013 06:30:05 AM,05/02/2013 06:30:34 AM,05/02/2013 06:32:03 AM,05/02/2013 06:33:10 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Other,05/02/2013 06:40:18 AM,700 Block of VAN NESS AVE,SF,94102,B02,3,3163,3,3,3,false,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7821664550649, -122.420830648843)",131220074-E36 +112930085,85,11097127,Medical Incident,10/20/2011,10/20/2011,10/20/2011 09:27:50 AM,10/20/2011 09:30:35 AM,10/20/2011 09:31:08 AM,10/20/2011 09:31:37 AM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 09:32:42 AM,1400 Block of 26TH AVE,SF,94122,B08,22,7453,1,1,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7604386722606, -122.484361591093)",112930085-85 +111920138,59,11063348,Medical Incident,07/11/2011,07/11/2011,07/11/2011 11:13:40 AM,07/11/2011 11:14:36 AM,07/11/2011 11:15:41 AM,07/11/2011 11:17:20 AM,07/11/2011 11:17:29 AM,07/11/2011 11:45:58 AM,07/11/2011 11:53:22 AM,Code 2 Transport,07/11/2011 12:30:52 PM,3200 Block of STEINER ST,SF,94123,B04,16,3566,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.7989248224108, -122.437621392217)",111920138-59 +103010273,E17,10096170,Medical Incident,10/28/2010,10/28/2010,10/28/2010 03:25:30 PM,10/28/2010 03:25:31 PM,10/28/2010 03:25:59 PM,10/28/2010 03:26:59 PM,10/28/2010 03:29:15 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Other,10/28/2010 03:42:00 PM,4500 Block of 3RD ST,SF,94124,B10,17,6515,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7367493649191, -122.389874761395)",103010273-E17 +160681290,88,16027088,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:52:36 AM,03/08/2016 10:53:00 AM,03/08/2016 10:53:28 AM,03/08/2016 10:53:39 AM,03/08/2016 10:56:56 AM,03/08/2016 11:08:05 AM,03/08/2016 11:22:52 AM,Code 2 Transport,03/08/2016 11:37:05 AM,ASHBURY ST/FELL ST,San Francisco,94117,B05,21,4514,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.772790452811, -122.447497243592)",160681290-88 +160443360,78,16017857,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:41:46 PM,02/13/2016 08:41:46 PM,02/13/2016 08:42:10 PM,02/13/2016 08:42:18 PM,02/13/2016 09:01:08 PM,02/13/2016 09:01:11 PM,02/13/2016 09:04:43 PM,Code 3 Transport,02/13/2016 09:52:49 PM,KIRKWOOD AV/MENDELL ST,San Francisco,94124,B10,25,6467,A,E,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7371063767658, -122.388090826716)",160443360-78 +131970287,85,13066908,Medical Incident,07/16/2013,07/16/2013,07/16/2013 05:45:50 PM,07/16/2013 05:47:37 PM,07/16/2013 06:19:40 PM,04/25/2016 01:51:46 PM,07/16/2013 06:31:33 PM,07/16/2013 06:39:31 PM,07/16/2013 06:46:59 PM,Code 2 Transport,07/16/2013 07:27:45 PM,200 Block of JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",131970287-85 +131720304,78,13058497,Medical Incident,06/21/2013,06/21/2013,06/21/2013 08:12:51 PM,06/21/2013 08:13:39 PM,06/21/2013 08:14:04 PM,06/21/2013 08:14:10 PM,06/21/2013 08:20:01 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Against Medical Advice,06/21/2013 08:56:14 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",131720304-78 +131060270,KM11,13035701,Medical Incident,04/16/2013,04/16/2013,04/16/2013 04:30:04 PM,04/16/2013 04:33:02 PM,04/16/2013 04:47:32 PM,04/25/2016 01:53:17 PM,04/16/2013 04:54:55 PM,04/16/2013 05:15:59 PM,04/16/2013 05:27:15 PM,Code 2 Transport,04/16/2013 06:13:37 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131060270-KM11 +120020264,T06,12000811,Structure Fire,01/02/2012,01/02/2012,01/02/2012 06:34:55 PM,01/02/2012 06:35:49 PM,01/02/2012 06:36:16 PM,01/02/2012 06:37:26 PM,01/02/2012 06:39:37 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/02/2012 06:51:55 PM,MARKET ST/DOUGLASS ST,SF,94114,B05,6,5254,3,3,3,false,Fire,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7614245661086, -122.439413851523)",120020264-T06 +103250343,E13,10104321,Other,11/21/2010,11/21/2010,11/21/2010 10:23:38 PM,11/21/2010 10:24:10 PM,11/21/2010 10:24:28 PM,11/21/2010 10:25:17 PM,11/21/2010 10:30:47 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Fire,11/21/2010 10:34:49 PM,600 Block of THE EMBARCADERO,SF,94111,B01,13,909,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",103250343-E13 +160340092,70,16013210,Medical Incident,02/03/2016,02/02/2016,02/03/2016 12:47:11 AM,02/03/2016 12:47:11 AM,02/03/2016 12:50:36 AM,02/03/2016 12:51:15 AM,02/03/2016 01:12:11 AM,02/03/2016 01:12:15 AM,02/03/2016 01:24:08 AM,Code 2 Transport,02/03/2016 01:41:41 AM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7351844916326, -122.391493955999)",160340092-70 +160160514,AM24,16006297,Structure Fire,01/16/2016,01/15/2016,01/16/2016 04:17:47 AM,01/16/2016 04:17:47 AM,01/16/2016 04:22:35 AM,01/16/2016 04:23:18 AM,01/16/2016 04:26:20 AM,01/16/2016 04:36:48 AM,01/16/2016 04:56:39 AM,Code 2 Transport,01/16/2016 05:30:44 AM,LAGUNA ST/FULTON ST,San Francisco,94102,B02,5,3412,3,3,3,false,Alarm,1,PRIVATE,2,2,5,Hayes Valley,"(37.778328563042, -122.426641497595)",160160514-AM24 +110230277,73,11007669,Traffic Collision,01/23/2011,01/23/2011,01/23/2011 07:23:12 PM,01/23/2011 07:23:35 PM,01/23/2011 07:25:04 PM,01/23/2011 07:25:15 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/23/2011 07:32:52 PM,GEARY BL/29TH AV,SF,94121,B07,14,7226,2,2,2,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7798905753776, -122.489013490407)",110230277-73 +122060299,B07,12068588,Alarms,07/24/2012,07/24/2012,07/24/2012 06:32:30 PM,07/24/2012 06:33:24 PM,07/24/2012 06:33:33 PM,07/24/2012 06:35:38 PM,07/24/2012 06:38:45 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Other,07/24/2012 06:58:23 PM,600 Block of SPRUCE ST,SF,94118,B05,10,4374,3,3,3,false,Alarm,1,CHIEF,2,7,2,Presidio Heights,"(37.7828772925038, -122.453478866911)",122060299-B07 +131430301,RC2,13048597,Structure Fire,05/23/2013,05/23/2013,05/23/2013 06:02:27 PM,05/23/2013 06:03:46 PM,05/23/2013 06:09:20 PM,05/23/2013 06:09:57 PM,05/23/2013 06:17:30 PM,04/25/2016 01:52:39 PM,05/23/2013 06:52:29 PM,Other,05/23/2013 07:12:29 PM,4300 Block of KIRKHAM ST,SF,94122,B08,23,7717,3,3,3,true,Fire,1,RESCUE CAPTAIN,8,8,4,Sunset/Parkside,"(37.7585441184385, -122.507405939677)",131430301-RC2 +131980272,E02,13067223,Traffic Collision,07/17/2013,07/17/2013,07/17/2013 06:47:38 PM,07/17/2013 06:49:07 PM,07/17/2013 06:49:20 PM,07/17/2013 06:50:34 PM,07/17/2013 06:55:03 PM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/17/2013 06:56:12 PM,FRONT ST/MARKET ST,SF,94105,B01,13,1136,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7917160576835, -122.398264448196)",131980272-E02 +120310337,E11,12010405,Medical Incident,01/31/2012,01/31/2012,01/31/2012 09:49:42 PM,01/31/2012 09:52:01 PM,01/31/2012 09:52:25 PM,01/31/2012 09:53:50 PM,01/31/2012 09:56:44 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,01/31/2012 10:11:35 PM,3600 Block of 21ST ST,SF,94114,B06,11,5461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7564818532329, -122.429008644145)",120310337-E11 +120630333,E01,12020876,Medical Incident,03/03/2012,03/03/2012,03/03/2012 07:15:40 PM,03/03/2012 07:16:10 PM,03/03/2012 07:16:27 PM,03/03/2012 07:17:29 PM,03/03/2012 07:18:54 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/03/2012 07:21:36 PM,MARKET ST/3RD ST,SF,94103,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",120630333-E01 +121430218,E36,12047564,Medical Incident,05/22/2012,05/22/2012,05/22/2012 02:24:04 PM,05/22/2012 02:24:53 PM,05/22/2012 02:25:16 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 02:42:21 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7815374331217, -122.409518341416)",121430218-E36 +120490089,KM12,12016148,Structure Fire,02/18/2012,02/18/2012,02/18/2012 09:02:51 AM,02/18/2012 09:02:51 AM,02/18/2012 09:03:26 AM,02/18/2012 09:07:39 AM,02/18/2012 09:15:35 AM,02/18/2012 09:20:53 AM,02/18/2012 09:32:07 AM,Code 2 Transport,02/18/2012 09:44:16 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,false,Alarm,1,PRIVATE,2,6,9,Mission,"(37.7571666434801, -122.416719595074)",120490089-KM12 +160460718,79,16018420,Medical Incident,02/15/2016,02/14/2016,02/15/2016 07:56:07 AM,02/15/2016 07:56:56 AM,02/15/2016 07:57:05 AM,02/15/2016 07:57:17 AM,02/15/2016 08:02:16 AM,02/15/2016 08:15:49 AM,02/15/2016 08:32:07 AM,Code 2 Transport,02/15/2016 09:04:58 AM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8046368314261, -122.414251200714)",160460718-79 +160784086,60,16031219,Medical Incident,03/18/2016,03/18/2016,03/18/2016 11:11:36 PM,03/18/2016 11:13:37 PM,03/18/2016 11:15:47 PM,03/18/2016 11:16:06 PM,03/18/2016 11:26:49 PM,03/19/2016 12:08:12 AM,03/19/2016 12:51:17 AM,Code 2 Transport,03/19/2016 01:31:49 AM,100 Block of MARIETTA DR,San Francisco,94127,B09,39,8653,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7405892464069, -122.447460984391)",160784086-60 +160172183,81,16006894,Medical Incident,01/17/2016,01/17/2016,01/17/2016 03:51:26 PM,01/17/2016 03:53:19 PM,01/17/2016 03:55:45 PM,01/17/2016 03:55:55 PM,01/17/2016 04:03:43 PM,01/17/2016 04:17:52 PM,01/17/2016 04:26:57 PM,Code 2 Transport,01/17/2016 04:56:23 PM,3RD ST/MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",160172183-81 +130810113,T01,13027054,Structure Fire,03/22/2013,03/22/2013,03/22/2013 10:14:19 AM,03/22/2013 10:14:19 AM,03/22/2013 10:17:22 AM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 11:12:49 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,10,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130810113-T01 +122810190,E13,12092992,Traffic Collision,10/07/2012,10/07/2012,10/07/2012 12:28:36 PM,10/07/2012 12:29:16 PM,10/07/2012 12:29:33 PM,10/07/2012 12:31:19 PM,10/07/2012 12:32:12 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/07/2012 12:50:19 PM,700 Block of THE EMBARCADERO,SF,94111,B01,13,917,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",122810190-E13 +123010211,81,12099816,Medical Incident,10/27/2012,10/27/2012,10/27/2012 02:45:40 PM,10/27/2012 02:46:11 PM,10/27/2012 02:46:36 PM,10/27/2012 02:46:50 PM,10/27/2012 02:53:18 PM,10/27/2012 03:03:17 PM,10/27/2012 03:14:20 PM,Code 3 Transport,10/27/2012 03:54:19 PM,700 Block of HEAD ST,SF,94132,B09,33,8433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7206855865381, -122.464541679225)",123010211-81 +130070346,E24,13002512,Other,01/07/2013,01/07/2013,01/07/2013 07:49:19 PM,01/07/2013 07:49:27 PM,01/07/2013 07:49:50 PM,01/07/2013 07:51:22 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 07:52:01 PM,MARKET ST/ARGENT AL,SF,94131,B06,24,5276,3,3,3,true,Alarm,1,ENGINE,1,6,8,Twin Peaks,"(37.7525636991443, -122.442728859019)",130070346-E24 +131580297,KM01,13053708,Medical Incident,06/07/2013,06/07/2013,06/07/2013 04:34:54 PM,06/07/2013 04:36:48 PM,06/07/2013 04:37:04 PM,06/07/2013 04:40:10 PM,06/07/2013 04:43:31 PM,06/07/2013 05:07:26 PM,06/07/2013 05:15:58 PM,Code 2 Transport,06/07/2013 05:57:52 PM,100 Block of LEAVENWORTH ST,SF,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",131580297-KM01 +160790560,88,16031315,Medical Incident,03/19/2016,03/18/2016,03/19/2016 05:26:53 AM,03/19/2016 05:27:18 AM,03/19/2016 05:28:06 AM,03/19/2016 05:28:13 AM,03/19/2016 05:33:42 AM,03/19/2016 05:50:23 AM,03/19/2016 05:56:03 AM,Code 2 Transport,03/19/2016 06:21:16 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160790560-88 +121830241,E05,12061019,Structure Fire,07/01/2012,07/01/2012,07/01/2012 04:48:23 PM,07/01/2012 04:48:44 PM,07/01/2012 04:49:07 PM,04/25/2016 01:57:55 PM,07/01/2012 04:52:43 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 04:58:47 PM,1700 Block of FILLMORE ST,SF,94115,B04,38,3542,3,3,3,true,Fire,1,ENGINE,6,4,5,Japantown,"(37.7856095150052, -122.433245830312)",121830241-E05 +112110099,KM04,11069569,Medical Incident,07/30/2011,07/30/2011,07/30/2011 09:16:38 AM,07/30/2011 09:17:21 AM,07/30/2011 09:17:58 AM,07/30/2011 09:18:43 AM,07/30/2011 09:23:11 AM,07/30/2011 09:30:05 AM,07/30/2011 09:38:50 AM,Code 2 Transport,07/30/2011 10:18:37 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",112110099-KM04 +130480242,T06,13016427,Structure Fire,02/17/2013,02/17/2013,02/17/2013 03:08:28 PM,02/17/2013 03:09:43 PM,02/17/2013 03:10:06 PM,04/25/2016 01:54:14 PM,02/17/2013 03:13:36 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 03:23:49 PM,2100 Block of 15TH ST,SF,94114,B05,6,5232,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7659837505885, -122.432151907364)",130480242-T06 +160080428,AM20,16003090,Medical Incident,01/08/2016,01/07/2016,01/08/2016 05:04:32 AM,01/08/2016 05:05:08 AM,01/08/2016 05:05:38 AM,01/08/2016 05:06:20 AM,01/08/2016 05:15:12 AM,01/08/2016 05:28:11 AM,01/08/2016 05:50:05 AM,Code 2 Transport,01/08/2016 06:15:20 AM,2600 Block of 47TH AVE,San Francisco,94116,B08,23,7733,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7366045798993, -122.50526050111)",160080428-AM20 +160503357,89,16020241,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:08:09 PM,02/19/2016 08:09:13 PM,02/19/2016 08:10:57 PM,02/19/2016 08:10:59 PM,02/19/2016 08:10:59 PM,02/19/2016 08:37:43 PM,02/19/2016 08:57:05 PM,Code 3 Transport,02/19/2016 09:34:59 PM,400 Block of STANYAN ST,San Francisco,94117,B07,21,4556,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",160503357-89 +120670398,B04,12022389,Alarms,03/07/2012,03/07/2012,03/07/2012 09:04:58 PM,03/07/2012 09:06:07 PM,03/07/2012 09:06:19 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,04/25/2016 01:59:47 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,CHIEF,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",120670398-B04 +110890060,E29,11029292,Structure Fire,03/30/2011,03/29/2011,03/30/2011 05:20:44 AM,03/30/2011 05:21:07 AM,03/30/2011 05:22:18 AM,03/30/2011 05:23:19 AM,03/30/2011 05:25:46 AM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 08:10:40 AM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7733010519139, -122.402986957756)",110890060-E29 +102440423,AM10,10077182,Medical Incident,09/01/2010,09/01/2010,09/01/2010 11:44:26 PM,09/01/2010 11:48:01 PM,09/01/2010 11:48:16 PM,09/01/2010 11:48:53 PM,09/01/2010 11:52:49 PM,09/02/2010 12:18:16 AM,09/02/2010 12:25:52 AM,Code 2 Transport,09/02/2010 12:55:30 AM,1800 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7363516779415, -122.395214003225)",102440423-AM10 +112950363,E03,11098003,Medical Incident,10/22/2011,10/22/2011,10/22/2011 10:04:15 PM,10/22/2011 10:04:35 PM,10/22/2011 10:05:29 PM,10/22/2011 10:06:49 PM,10/22/2011 10:09:20 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/22/2011 10:14:36 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",112950363-E03 +110420345,E43,11014042,Structure Fire,02/11/2011,02/11/2011,02/11/2011 07:24:35 PM,02/11/2011 07:25:17 PM,02/11/2011 07:25:28 PM,02/11/2011 07:25:56 PM,02/11/2011 07:27:14 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 07:32:24 PM,600 Block of MADRID ST,SF,94112,B09,43,6135,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7193135099129, -122.434630200737)",110420345-E43 +112900163,AP,11096193,Other,10/17/2011,10/17/2011,10/17/2011 12:16:25 PM,10/17/2011 12:16:26 PM,10/17/2011 12:16:26 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Fire,10/17/2011 12:17:07 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",112900163-AP +112800306,95,11092778,Medical Incident,10/07/2011,10/07/2011,10/07/2011 06:44:16 PM,10/07/2011 06:45:31 PM,10/07/2011 06:48:57 PM,10/07/2011 06:49:07 PM,10/07/2011 07:09:15 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,No Merit,10/07/2011 07:28:04 PM,1200 Block of GRANT AVE,SF,94133,B01,2,1311,1,1,2,true,,1,MEDIC,1,1,3,North Beach,"(37.7983293338887, -122.407047477146)",112800306-95 +132140049,85,13072159,Medical Incident,08/02/2013,08/01/2013,08/02/2013 06:36:20 AM,08/02/2013 06:37:23 AM,08/02/2013 06:37:43 AM,08/02/2013 06:38:14 AM,08/02/2013 06:39:38 AM,08/02/2013 06:56:47 AM,08/02/2013 07:10:24 AM,Code 2 Transport,08/02/2013 07:41:32 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",132140049-85 +131390088,E29,13046926,Traffic Collision,05/19/2013,05/18/2013,05/19/2013 06:39:09 AM,05/19/2013 06:39:09 AM,05/19/2013 06:39:55 AM,05/19/2013 06:41:31 AM,05/19/2013 06:43:56 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 06:55:44 AM,9TH ST/BRYANT ST,SF,94103,B03,29,2324,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7712907918294, -122.408531083232)",131390088-E29 +160172291,KM12,16006903,Medical Incident,01/17/2016,01/17/2016,01/17/2016 04:21:45 PM,01/17/2016 04:27:40 PM,01/17/2016 04:29:05 PM,01/17/2016 04:29:50 PM,01/17/2016 04:46:50 PM,01/17/2016 04:53:35 PM,01/17/2016 05:15:26 PM,Code 2 Transport,01/17/2016 05:27:40 PM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",160172291-KM12 +102340277,73,10073706,Medical Incident,08/22/2010,08/22/2010,08/22/2010 06:03:36 PM,08/22/2010 06:04:47 PM,08/22/2010 06:06:43 PM,08/22/2010 06:12:57 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,04/25/2016 02:08:58 PM,2500 Block of SAN JOSE AVE,SF,94112,B09,33,8325,3,3,3,true,,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7175145654024, -122.449359068183)",102340277-73 +103130277,E29,10100422,Medical Incident,11/09/2010,11/09/2010,11/09/2010 04:54:23 PM,11/09/2010 04:56:46 PM,11/09/2010 04:57:15 PM,11/09/2010 04:57:52 PM,11/09/2010 05:01:37 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/09/2010 05:07:13 PM,KANSAS ST/22ND ST,SF,94107,B10,37,2545,3,3,3,true,,1,ENGINE,2,10,10,Potrero Hill,"(37.7570683684788, -122.402802943875)",103130277-E29 +160753215,AM08,16029847,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:41:01 PM,03/15/2016 06:41:30 PM,03/15/2016 06:41:58 PM,03/15/2016 06:42:44 PM,03/15/2016 06:46:35 PM,03/15/2016 07:02:01 PM,03/15/2016 07:03:40 PM,Code 3 Transport,03/15/2016 07:35:59 PM,0 Block of LOCKSLEY AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7592202975893, -122.46331160715)",160753215-AM08 +160381312,79,16015160,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:25:28 AM,02/07/2016 10:26:55 AM,02/07/2016 10:27:20 AM,02/07/2016 10:27:52 AM,02/07/2016 10:55:12 AM,02/07/2016 10:55:15 AM,02/07/2016 10:57:53 AM,Code 2 Transport,02/07/2016 12:19:14 PM,2600 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.788437365658, -122.437962237482)",160381312-79 +122340287,59,12077691,Medical Incident,08/21/2012,08/21/2012,08/21/2012 08:33:17 PM,08/21/2012 08:37:18 PM,08/21/2012 08:42:13 PM,08/21/2012 08:42:45 PM,08/21/2012 08:54:12 PM,08/21/2012 09:16:06 PM,08/21/2012 09:29:22 PM,Code 2 Transport,08/21/2012 09:57:13 PM,300 Block of 19TH AVE,SF,94121,B07,31,7164,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7813416538301, -122.478443283523)",122340287-59 +110010319,E13,11000271,Citizen Assist / Service Call,01/01/2011,01/01/2011,01/01/2011 10:12:58 AM,01/01/2011 10:12:58 AM,01/01/2011 10:12:58 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 11:08:29 AM,500 Block of WASHINGTON ST,SF,94111,B01,13,1211,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7956190455503, -122.403039422993)",110010319-E13 +160613375,76,16024482,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:10:45 PM,03/01/2016 09:13:24 PM,03/01/2016 09:15:24 PM,03/01/2016 09:19:00 PM,03/01/2016 09:23:39 PM,03/01/2016 09:44:00 PM,03/01/2016 09:53:18 PM,Code 2 Transport,03/01/2016 10:26:39 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.781960649289, -122.402224095303)",160613375-76 +160290591,71,16011341,Medical Incident,01/29/2016,01/28/2016,01/29/2016 07:27:48 AM,01/29/2016 07:28:25 AM,01/29/2016 07:28:43 AM,01/29/2016 07:28:54 AM,01/29/2016 07:31:58 AM,01/29/2016 07:53:06 AM,01/29/2016 08:07:22 AM,Code 2 Transport,01/29/2016 08:33:11 AM,0 Block of CASHMERE ST,San Francisco,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7356570201695, -122.382731651637)",160290591-71 +113220276,93,11107032,Traffic Collision,11/18/2011,11/18/2011,11/18/2011 05:15:57 PM,11/18/2011 05:16:37 PM,11/18/2011 05:17:03 PM,11/18/2011 05:17:20 PM,04/25/2016 02:01:35 PM,11/18/2011 05:45:42 PM,11/18/2011 06:08:00 PM,Code 2 Transport,11/18/2011 06:31:38 PM,4500 Block of FULTON ST,SF,94121,B07,14,7167,3,3,3,true,,1,MEDIC,5,7,1,Outer Richmond,"(37.7727957681472, -122.480445666258)",113220276-93 +160052183,54,16002044,Medical Incident,01/05/2016,01/05/2016,01/05/2016 03:11:21 PM,01/05/2016 03:13:51 PM,01/05/2016 03:14:16 PM,01/05/2016 03:14:25 PM,01/05/2016 03:23:10 PM,01/05/2016 03:37:27 PM,01/05/2016 03:58:14 PM,Code 2 Transport,01/05/2016 04:45:24 PM,100 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7904950228094, -122.402353336974)",160052183-54 +110610185,AR1,11020001,Structure Fire,03/02/2011,03/02/2011,03/02/2011 12:19:43 PM,03/02/2011 12:20:06 PM,03/02/2011 12:20:30 PM,03/02/2011 12:26:42 PM,03/02/2011 12:44:04 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 02:32:34 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,false,,2,INVESTIGATION,15,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",110610185-AR1 +122510170,AM20,12082986,Medical Incident,09/07/2012,09/07/2012,09/07/2012 11:24:49 AM,09/07/2012 11:30:00 AM,09/07/2012 11:34:37 AM,09/07/2012 11:35:26 AM,09/07/2012 11:43:20 AM,09/07/2012 11:54:24 AM,09/07/2012 12:15:20 PM,Code 2 Transport,09/07/2012 12:55:08 PM,100 Block of MONTGOMERY ST,SF,94104,B01,13,1235,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7905126810084, -122.402216710445)",122510170-AM20 +123440142,77,12114952,Medical Incident,12/09/2012,12/09/2012,12/09/2012 10:04:41 AM,12/09/2012 10:06:06 AM,12/09/2012 10:06:17 AM,12/09/2012 10:07:28 AM,12/09/2012 10:37:00 AM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Against Medical Advice,12/09/2012 10:47:55 AM,400 Block of WARREN DR,SF,94131,B08,20,5377,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7579763881592, -122.462011747016)",123440142-77 +132790132,E22,13094853,Traffic Collision,10/06/2013,10/06/2013,10/06/2013 08:39:28 AM,10/06/2013 08:40:08 AM,10/06/2013 08:41:14 AM,10/06/2013 08:43:27 AM,10/06/2013 08:44:39 AM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/06/2013 08:53:40 AM,9TH AV/IRVING ST,SF,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",132790132-E22 +160661266,61,16026359,Medical Incident,03/06/2016,03/06/2016,03/06/2016 11:40:52 AM,03/06/2016 11:41:34 AM,03/06/2016 11:42:04 AM,03/06/2016 11:42:13 AM,03/06/2016 11:45:49 AM,03/06/2016 12:06:53 PM,03/06/2016 12:18:05 PM,Code 2 Transport,03/06/2016 01:01:43 PM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.795777854883, -122.404981817889)",160661266-61 +121910327,E12,12063717,Medical Incident,07/09/2012,07/09/2012,07/09/2012 08:27:11 PM,07/09/2012 08:28:39 PM,07/09/2012 08:29:00 PM,07/09/2012 08:31:00 PM,07/09/2012 08:31:52 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 08:38:21 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",121910327-E12 +133260308,E15,13110822,Medical Incident,11/22/2013,11/22/2013,11/22/2013 07:02:27 PM,11/22/2013 07:02:58 PM,11/22/2013 07:04:12 PM,11/22/2013 07:05:48 PM,11/22/2013 07:09:27 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 07:17:11 PM,300 Block of VIENNA ST,SF,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7227804111928, -122.428602345947)",133260308-E15 +110960364,E05,11031997,Medical Incident,04/06/2011,04/06/2011,04/06/2011 11:13:41 PM,04/06/2011 11:14:55 PM,04/06/2011 11:15:25 PM,04/25/2016 02:05:14 PM,04/06/2011 11:18:56 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/06/2011 11:33:15 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,2,2,true,,1,ENGINE,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",110960364-E05 +132170286,67,13073389,Medical Incident,08/05/2013,08/05/2013,08/05/2013 06:30:02 PM,08/05/2013 06:33:17 PM,08/05/2013 06:34:20 PM,08/05/2013 06:34:30 PM,08/05/2013 06:39:18 PM,08/05/2013 06:55:23 PM,08/05/2013 07:00:46 PM,Code 2 Transport,08/05/2013 07:23:14 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",132170286-67 +112850042,E01,11094267,Medical Incident,10/12/2011,10/11/2011,10/12/2011 04:50:43 AM,10/12/2011 04:51:20 AM,10/12/2011 04:51:44 AM,10/12/2011 04:54:01 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 04:57:20 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",112850042-E01 +133580310,E21,13121826,Medical Incident,12/24/2013,12/24/2013,12/24/2013 07:27:57 PM,12/24/2013 07:30:54 PM,12/24/2013 07:33:05 PM,12/24/2013 07:33:58 PM,12/24/2013 07:43:12 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 07:49:39 PM,900 Block of BUENAVISTAWEST AV,SF,94117,B05,21,4353,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7699941054658, -122.44324157754)",133580310-E21 +131670246,E25,13056746,Medical Incident,06/16/2013,06/16/2013,06/16/2013 04:24:58 PM,06/16/2013 04:25:22 PM,06/16/2013 04:25:31 PM,06/16/2013 04:26:45 PM,06/16/2013 04:29:18 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/16/2013 04:33:38 PM,INDIANA ST/23RD ST,SF,94107,B10,25,2573,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.755213902438, -122.390921943768)",131670246-E25 +160061880,84,16002410,Medical Incident,01/06/2016,01/06/2016,01/06/2016 01:30:44 PM,01/06/2016 01:31:35 PM,01/06/2016 01:31:49 PM,01/06/2016 01:31:59 PM,01/06/2016 01:37:58 PM,01/06/2016 01:48:14 PM,01/06/2016 02:02:17 PM,Code 2 Transport,01/06/2016 02:46:09 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160061880-84 +133300158,E05,13112037,Alarms,11/26/2013,11/26/2013,11/26/2013 11:58:58 AM,11/26/2013 11:58:58 AM,11/26/2013 11:59:32 AM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,Other,11/26/2013 12:03:58 PM,0 Block of GROVE ST,SF,94102,B02,36,381,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",133300158-E05 +131900205,84,13064730,Medical Incident,07/09/2013,07/09/2013,07/09/2013 12:54:50 PM,07/09/2013 12:56:24 PM,07/09/2013 12:56:40 PM,07/09/2013 12:56:57 PM,07/09/2013 01:11:25 PM,07/09/2013 01:26:21 PM,07/09/2013 01:55:15 PM,Code 2 Transport,07/09/2013 02:06:33 PM,100 Block of 4TH ST,SF,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",131900205-84 +131310149,83,13044201,Medical Incident,05/11/2013,05/11/2013,05/11/2013 10:28:18 AM,05/11/2013 10:30:16 AM,05/11/2013 10:30:59 AM,05/11/2013 10:31:08 AM,05/11/2013 10:48:06 AM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,No Merit,05/11/2013 11:04:31 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",131310149-83 +102980342,T03,10095280,Structure Fire,10/25/2010,10/25/2010,10/25/2010 08:15:22 PM,10/25/2010 08:15:22 PM,10/25/2010 08:15:33 PM,10/25/2010 08:17:09 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/25/2010 08:18:21 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,TRUCK,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",102980342-T03 +132490244,E08,13084076,Medical Incident,09/06/2013,09/06/2013,09/06/2013 03:37:59 PM,09/06/2013 03:38:29 PM,09/06/2013 03:46:12 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/06/2013 03:47:49 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,ENGINE,3,3,6,South of Market,"(37.7799892619986, -122.407376463936)",132490244-E08 +160493636,AM12,16019890,Medical Incident,02/18/2016,02/18/2016,02/18/2016 09:23:44 PM,02/18/2016 09:26:33 PM,02/18/2016 09:26:56 PM,02/18/2016 09:27:41 PM,02/18/2016 09:41:33 PM,02/18/2016 09:51:00 PM,02/18/2016 10:05:01 PM,Code 2 Transport,02/18/2016 10:18:37 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160493636-AM12 +123540331,58,12118574,Medical Incident,12/19/2012,12/19/2012,12/19/2012 06:55:29 PM,12/19/2012 06:56:29 PM,12/19/2012 06:59:53 PM,12/19/2012 07:07:08 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,04/25/2016 01:55:13 PM,100 Block of LARKIN ST,SF,94102,B02,36,1647,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",123540331-58 +160623560,71,16024831,Medical Incident,03/02/2016,03/02/2016,03/02/2016 07:24:18 PM,03/02/2016 07:25:19 PM,03/02/2016 07:27:29 PM,03/02/2016 07:27:54 PM,03/02/2016 07:35:16 PM,03/02/2016 07:45:48 PM,03/02/2016 08:12:31 PM,Code 3 Transport,03/02/2016 08:32:51 PM,0 Block of 19TH AVE,San Francisco,94121,B07,31,7163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7863877327251, -122.47867010798)",160623560-71 +112530075,B07,11083379,Alarms,09/10/2011,09/09/2011,09/10/2011 06:20:53 AM,09/10/2011 06:22:43 AM,09/10/2011 06:23:36 AM,09/10/2011 06:23:55 AM,09/10/2011 06:25:35 AM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Other,09/10/2011 08:06:29 AM,3600 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,,1,CHIEF,1,7,1,Lone Mountain/USF,"(37.7811661910196, -122.458279197581)",112530075-B07 +110240073,E16,11007790,Medical Incident,01/24/2011,01/23/2011,01/24/2011 07:50:22 AM,01/24/2011 07:50:49 AM,01/24/2011 07:51:21 AM,01/24/2011 07:54:13 AM,01/24/2011 07:57:47 AM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/24/2011 08:04:37 AM,BAY ST/VAN NESS AV,SF,94109,B04,28,3143,3,3,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8041458445112, -122.425109522103)",110240073-E16 +111780139,AM08,11058741,Medical Incident,06/27/2011,06/27/2011,06/27/2011 11:10:18 AM,06/27/2011 11:10:31 AM,06/27/2011 11:11:00 AM,06/27/2011 11:11:35 AM,06/27/2011 11:15:14 AM,06/27/2011 11:25:13 AM,06/27/2011 11:34:12 AM,Code 2 Transport,06/27/2011 12:08:16 PM,3100 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7525276230522, -122.414634473592)",111780139-AM08 +131120380,E13,13037869,Medical Incident,04/22/2013,04/22/2013,04/22/2013 07:31:14 PM,04/22/2013 07:33:43 PM,04/22/2013 07:35:30 PM,04/22/2013 07:36:18 PM,04/22/2013 07:39:20 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,No Merit,04/22/2013 07:42:01 PM,DAVIS ST/WASHINGTON ST,SF,94111,B01,13,1116,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7961860716176, -122.398152068472)",131120380-E13 +160252879,65,16010038,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:48:04 PM,01/25/2016 05:48:44 PM,01/25/2016 05:49:38 PM,01/25/2016 05:49:46 PM,01/25/2016 05:58:08 PM,01/25/2016 06:17:07 PM,01/25/2016 06:43:28 PM,Code 2 Transport,01/25/2016 07:23:19 PM,700 Block of EXCELSIOR AVE,San Francisco,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7233483966745, -122.427699241431)",160252879-65 +132160131,66,13072943,Medical Incident,08/04/2013,08/04/2013,08/04/2013 11:18:58 AM,08/04/2013 11:19:49 AM,08/04/2013 11:20:20 AM,08/04/2013 11:20:46 AM,08/04/2013 11:26:12 AM,08/04/2013 11:44:25 AM,08/04/2013 12:13:09 PM,Code 2 Transport,08/04/2013 12:37:23 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",132160131-66 +132100171,KM02,13071003,Medical Incident,07/29/2013,07/29/2013,07/29/2013 11:31:44 AM,07/29/2013 11:33:49 AM,07/29/2013 11:34:10 AM,07/29/2013 11:34:38 AM,07/29/2013 11:44:41 AM,07/29/2013 12:07:05 PM,07/29/2013 12:22:33 PM,Code 2 Transport,07/29/2013 01:01:38 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132100171-KM02 +120090428,E13,12003324,Alarms,01/09/2012,01/09/2012,01/09/2012 11:51:06 PM,01/09/2012 11:53:39 PM,01/09/2012 11:54:03 PM,01/09/2012 11:55:37 PM,01/09/2012 11:57:25 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/10/2012 12:09:42 AM,300 Block of MARKET ST,SF,94111,B03,13,2125,B,B,2,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7921324266791, -122.397911804174)",120090428-E13 +140340202,KM06,14011514,Medical Incident,02/03/2014,02/03/2014,02/03/2014 02:14:51 PM,02/03/2014 02:15:36 PM,02/03/2014 02:16:33 PM,02/03/2014 02:17:11 PM,02/03/2014 02:21:13 PM,02/03/2014 02:37:40 PM,02/03/2014 02:47:10 PM,Code 2 Transport,02/03/2014 03:20:58 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",140340202-KM06 +132060181,RS1,13069742,Medical Incident,07/25/2013,07/25/2013,07/25/2013 01:58:00 PM,07/25/2013 01:59:41 PM,07/25/2013 02:02:12 PM,07/25/2013 02:03:04 PM,07/25/2013 02:05:04 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Other,07/25/2013 02:09:27 PM,0 Block of RUSS ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7794247784274, -122.40887907669)",132060181-RS1 +113570478,E23,11118849,Medical Incident,12/23/2011,12/23/2011,12/23/2011 11:24:33 PM,12/23/2011 11:25:53 PM,12/23/2011 11:26:43 PM,12/23/2011 11:28:36 PM,12/23/2011 11:31:42 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/23/2011 11:42:47 PM,2100 Block of 43RD AVE,SF,94116,B08,23,7645,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7465803443069, -122.501664644737)",113570478-E23 +123240381,93,12107900,Medical Incident,11/19/2012,11/19/2012,11/19/2012 09:34:08 PM,11/19/2012 09:34:49 PM,11/19/2012 09:36:56 PM,11/19/2012 09:37:18 PM,11/19/2012 09:57:25 PM,11/19/2012 09:57:57 PM,11/19/2012 10:08:38 PM,Code 2 Transport,11/19/2012 11:02:01 PM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8061515935611, -122.418537074676)",123240381-93 +160721983,AM16,16028631,Medical Incident,03/12/2016,03/12/2016,03/12/2016 03:01:48 PM,03/12/2016 03:02:11 PM,03/12/2016 03:02:55 PM,03/12/2016 03:03:24 PM,03/12/2016 03:07:55 PM,03/12/2016 03:23:49 PM,03/12/2016 03:45:27 PM,Code 2 Transport,03/12/2016 04:24:47 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160721983-AM16 +140900243,T08,14030351,Administrative,03/31/2014,03/31/2014,03/31/2014 04:23:55 PM,03/31/2014 04:23:57 PM,03/31/2014 04:26:37 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Other,03/31/2014 04:27:04 PM,0 Block of BLUXOME ST,,94107,B03,8,2223,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",140900243-T08 +130800005,E03,13026597,Alarms,03/21/2013,03/20/2013,03/21/2013 12:35:20 AM,03/21/2013 12:37:42 AM,03/21/2013 12:37:51 AM,03/21/2013 12:39:38 AM,03/21/2013 12:40:59 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 12:47:30 AM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,true,Alarm,1,ENGINE,1,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",130800005-E03 +130780347,E37,13026167,Vehicle Fire,03/19/2013,03/19/2013,03/19/2013 06:44:43 PM,03/19/2013 06:45:13 PM,03/19/2013 06:45:26 PM,03/19/2013 06:46:36 PM,03/19/2013 06:50:00 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Fire,03/19/2013 07:20:56 PM,ILLINOIS ST/22ND ST,SF,94107,B10,37,2665,3,3,3,false,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7579999556756, -122.387312694069)",130780347-E37 +160241075,56,16009479,Medical Incident,01/24/2016,01/24/2016,01/24/2016 09:56:32 AM,01/24/2016 09:56:32 AM,01/24/2016 09:57:03 AM,01/24/2016 09:57:16 AM,01/24/2016 10:03:40 AM,01/24/2016 10:06:10 AM,01/24/2016 10:24:16 AM,Code 2 Transport,01/24/2016 10:41:40 AM,300 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8854,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",160241075-56 +133490086,68,13118403,Medical Incident,12/15/2013,12/15/2013,12/15/2013 08:27:28 AM,12/15/2013 08:29:36 AM,12/15/2013 08:30:08 AM,12/15/2013 08:31:04 AM,12/15/2013 08:35:09 AM,12/15/2013 08:47:34 AM,12/15/2013 09:14:44 AM,Code 2 Transport,12/15/2013 09:37:42 AM,36TH AV/KIRKHAM ST,SF,94122,B08,23,7571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7590281315068, -122.495082385834)",133490086-68 +122010137,B04,12066763,Water Rescue,07/19/2012,07/19/2012,07/19/2012 10:54:56 AM,07/19/2012 10:54:56 AM,07/19/2012 10:55:19 AM,07/19/2012 10:57:03 AM,07/19/2012 11:09:29 AM,04/25/2016 01:57:39 PM,04/25/2016 01:57:39 PM,Other,07/19/2012 11:40:41 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,CHIEF,12,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122010137-B04 +160102268,76,16004096,Medical Incident,01/10/2016,01/10/2016,01/10/2016 04:05:01 PM,01/10/2016 04:07:34 PM,01/10/2016 04:08:00 PM,01/10/2016 04:08:11 PM,01/10/2016 04:21:49 PM,01/10/2016 05:17:20 PM,01/10/2016 05:24:40 PM,Code 2 Transport,01/10/2016 06:13:52 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160102268-76 +102510347,79,10079430,Medical Incident,09/08/2010,09/08/2010,09/08/2010 08:07:50 PM,09/08/2010 08:10:05 PM,09/08/2010 08:10:29 PM,09/08/2010 08:11:21 PM,09/08/2010 08:18:52 PM,09/08/2010 08:29:48 PM,09/08/2010 08:40:14 PM,Code 2 Transport,09/08/2010 09:09:05 PM,1100 Block of FOLSOM ST,SF,94103,B03,1,2313,1,1,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7765710578401, -122.408160058123)",102510347-79 +130220193,E01,13007589,Alarms,01/22/2013,01/22/2013,01/22/2013 12:28:23 PM,01/22/2013 12:29:12 PM,01/22/2013 12:29:30 PM,01/22/2013 12:30:25 PM,01/22/2013 12:32:30 PM,04/25/2016 01:54:40 PM,04/25/2016 01:54:40 PM,Other,01/22/2013 12:35:35 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",130220193-E01 +120060112,89,12002016,Medical Incident,01/06/2012,01/06/2012,01/06/2012 09:25:40 AM,01/06/2012 09:27:13 AM,01/06/2012 09:28:00 AM,01/06/2012 09:35:06 AM,01/06/2012 09:35:13 AM,01/06/2012 10:00:25 AM,01/06/2012 10:37:32 AM,Code 2 Transport,01/06/2012 11:02:54 AM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",120060112-89 +160162714,AM08,16006522,Traffic Collision,01/16/2016,01/16/2016,01/16/2016 05:36:21 PM,01/16/2016 05:36:21 PM,01/16/2016 05:37:01 PM,01/16/2016 05:37:55 PM,01/16/2016 05:53:16 PM,01/16/2016 06:13:19 PM,01/16/2016 06:22:13 PM,Code 2 Transport,01/16/2016 06:48:20 PM,10TH ST/MARKET ST,San Francisco,94103,B02,36,2338,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",160162714-AM08 +160641456,83,16025470,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:09:08 AM,03/04/2016 11:10:00 AM,03/04/2016 11:10:17 AM,03/04/2016 11:10:26 AM,03/04/2016 11:16:59 AM,03/04/2016 11:50:43 AM,03/04/2016 12:09:54 PM,Code 2 Transport,03/04/2016 01:12:15 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",160641456-83 +112980013,E34,11098732,Medical Incident,10/25/2011,10/24/2011,10/25/2011 01:20:17 AM,10/25/2011 01:21:30 AM,10/25/2011 01:22:07 AM,10/25/2011 01:23:44 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 01:24:55 AM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,1,2,false,,1,ENGINE,2,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",112980013-E34 +120430226,E41,12014436,Gas Leak (Natural and LP Gases),02/12/2012,02/12/2012,02/12/2012 03:16:17 PM,02/12/2012 03:17:41 PM,02/12/2012 03:17:46 PM,02/12/2012 03:19:06 PM,02/12/2012 03:19:58 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/12/2012 03:39:14 PM,1800 Block of LARKIN ST,SF,94109,B01,41,1633,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.7948046203031, -122.419775875954)",120430226-E41 +133170363,67,13107890,Medical Incident,11/13/2013,11/13/2013,11/13/2013 09:09:47 PM,11/13/2013 09:10:11 PM,11/13/2013 09:11:33 PM,11/13/2013 09:11:39 PM,11/13/2013 09:29:38 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,No Merit,11/13/2013 09:41:03 PM,GUERRERO ST/15TH ST,SF,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7664057681804, -122.42425811346)",133170363-67 +160391550,63,16015596,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:08:20 PM,02/08/2016 12:08:59 PM,02/08/2016 12:09:12 PM,02/08/2016 12:09:21 PM,02/08/2016 12:15:19 PM,02/08/2016 12:29:12 PM,02/08/2016 12:42:42 PM,Code 2 Transport,02/08/2016 01:43:22 PM,2300 Block of NORIEGA ST,San Francisco,94122,B08,18,7515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7537523918863, -122.488797729304)",160391550-63 +160490557,79,16019629,Medical Incident,02/18/2016,02/17/2016,02/18/2016 07:35:25 AM,02/18/2016 07:36:00 AM,02/18/2016 07:37:19 AM,02/18/2016 07:37:25 AM,02/18/2016 07:40:34 AM,02/18/2016 07:47:57 AM,02/18/2016 07:52:37 AM,Code 2 Transport,02/18/2016 08:11:11 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160490557-79 +120060161,KM15,12002056,Medical Incident,01/06/2012,01/06/2012,01/06/2012 12:12:01 PM,01/06/2012 12:14:01 PM,01/06/2012 12:15:17 PM,01/06/2012 12:15:55 PM,01/06/2012 12:25:17 PM,01/06/2012 12:35:43 PM,01/06/2012 12:44:38 PM,Code 2 Transport,01/06/2012 01:04:36 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",120060161-KM15 +140960145,B01,14032274,Structure Fire,04/06/2014,04/06/2014,04/06/2014 10:24:03 AM,04/06/2014 10:26:13 AM,04/06/2014 10:26:39 AM,04/06/2014 10:27:06 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Fire,04/06/2014 10:28:14 AM,900 Block of FRANKLIN ST,SAN FRANCISCO,94109,B02,3,3221,3,3,3,false,Alarm,1,CHIEF,10,2,5,Western Addition,"(37.7833939650918, -122.422536931307)",140960145-B01 +122920270,E33,12096816,Medical Incident,10/18/2012,10/18/2012,10/18/2012 03:12:12 PM,10/18/2012 03:13:10 PM,10/18/2012 03:13:33 PM,10/18/2012 03:15:12 PM,10/18/2012 03:18:51 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 03:52:56 PM,300 Block of ALLISON ST,SF,94112,B09,43,6217,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7105959087254, -122.440798369343)",122920270-E33 +140750318,88,14025503,Medical Incident,03/16/2014,03/16/2014,03/16/2014 07:58:47 PM,03/16/2014 07:59:00 PM,03/16/2014 07:59:15 PM,03/16/2014 08:00:20 PM,03/16/2014 08:10:12 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Other,03/16/2014 08:21:36 PM,LAGUNA ST/LOMBARD ST,SAN FRANCISCO,94123,B04,16,3352,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8004692165623, -122.431115291336)",140750318-88 +111450069,74,11048089,Medical Incident,05/25/2011,05/25/2011,05/25/2011 08:07:26 AM,05/25/2011 08:09:20 AM,05/25/2011 08:09:47 AM,05/25/2011 08:10:02 AM,05/25/2011 08:30:04 AM,05/25/2011 08:56:52 AM,05/25/2011 09:19:38 AM,Code 2 Transport,05/25/2011 09:40:03 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",111450069-74 +111750301,B01,11057780,Alarms,06/24/2011,06/24/2011,06/24/2011 05:30:38 PM,06/24/2011 05:32:04 PM,06/24/2011 05:32:19 PM,06/24/2011 05:33:57 PM,06/24/2011 05:37:12 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Fire,06/24/2011 05:39:50 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,false,,1,CHIEF,3,3,3,Tenderloin,"(37.7853856653984, -122.408248882093)",111750301-B01 +160553519,70,16022133,Medical Incident,02/24/2016,02/24/2016,02/24/2016 07:33:20 PM,02/24/2016 07:33:20 PM,02/24/2016 07:34:08 PM,02/24/2016 07:34:20 PM,02/24/2016 07:37:45 PM,02/24/2016 07:42:34 PM,02/24/2016 07:49:02 PM,Code 3 Transport,02/24/2016 08:27:27 PM,QUESADA AV/3RD ST,San Francisco,94124,B10,17,6535,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7332232631153, -122.391244493226)",160553519-70 +132600090,B09,13087889,Structure Fire,09/17/2013,09/16/2013,09/17/2013 06:48:43 AM,09/17/2013 06:49:17 AM,09/17/2013 06:49:30 AM,09/17/2013 06:51:49 AM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 06:58:32 AM,2600 Block of GREAT HWY,SF,94116,B08,23,7733,3,3,3,false,Alarm,1,CHIEF,7,8,4,Sunset/Parkside,"(37.7365648338539, -122.506185260392)",132600090-B09 +160092086,65,16003687,Medical Incident,01/09/2016,01/09/2016,01/09/2016 03:03:26 PM,01/09/2016 03:03:55 PM,01/09/2016 03:04:10 PM,01/09/2016 03:04:21 PM,01/09/2016 03:08:11 PM,01/09/2016 03:21:57 PM,01/09/2016 03:37:52 PM,Code 2 Transport,01/09/2016 03:55:38 PM,400 Block of MOSCOW ST,San Francisco,94112,B09,43,6163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7204564874695, -122.428165238049)",160092086-65 +102770182,KM14,10088074,Medical Incident,10/04/2010,10/04/2010,10/04/2010 02:16:46 PM,10/04/2010 02:16:58 PM,10/04/2010 02:17:47 PM,10/04/2010 02:18:48 PM,10/04/2010 02:21:03 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Patient Declined Transport,10/04/2010 02:33:22 PM,1100 Block of CAPITOL AVE,SF,94112,B09,15,8474,3,1,2,false,,1,PRIVATE,1,9,7,Oceanview/Merced/Ingleside,"(37.7227448340219, -122.459276254997)",102770182-KM14 +160190770,KM09,16007526,Medical Incident,01/19/2016,01/19/2016,01/19/2016 08:17:25 AM,01/19/2016 08:18:59 AM,01/19/2016 08:19:18 AM,01/19/2016 08:21:37 AM,01/19/2016 08:33:54 AM,01/19/2016 08:48:26 AM,01/19/2016 09:09:32 AM,Code 2 Transport,01/19/2016 09:44:36 AM,GROVE ST/HYDE ST,San Francisco,94103,B02,36,1552,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160190770-KM09 +160871320,79,16034539,Medical Incident,03/27/2016,03/27/2016,03/27/2016 10:56:00 AM,03/27/2016 10:57:51 AM,03/27/2016 10:58:21 AM,03/27/2016 10:58:30 AM,03/27/2016 11:23:47 AM,03/27/2016 11:36:49 AM,03/27/2016 11:52:22 AM,Code 2 Transport,03/27/2016 12:36:02 PM,100 Block of SEACLIFF AVE,San Francisco,94121,B07,14,7216,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Seacliff,"(37.788782447872, -122.487546538274)",160871320-79 +160841721,81,16033361,Medical Incident,03/24/2016,03/24/2016,03/24/2016 12:06:54 PM,03/24/2016 12:08:22 PM,03/24/2016 12:08:38 PM,03/24/2016 12:09:51 PM,03/24/2016 12:14:23 PM,03/24/2016 12:24:26 PM,03/24/2016 12:39:52 PM,Code 2 Transport,03/24/2016 01:38:11 PM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7744969083055, -122.452976375626)",160841721-81 +112440280,E08,11080530,Medical Incident,09/01/2011,09/01/2011,09/01/2011 05:40:01 PM,09/01/2011 05:41:44 PM,09/01/2011 05:42:40 PM,09/01/2011 05:43:42 PM,09/01/2011 05:46:44 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 05:54:00 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",112440280-E08 +130400209,E18,13013684,Medical Incident,02/09/2013,02/09/2013,02/09/2013 01:51:30 PM,02/09/2013 01:53:21 PM,02/09/2013 01:53:29 PM,02/09/2013 01:54:22 PM,02/09/2013 01:57:48 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 02:09:55 PM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7444820263748, -122.506894604858)",130400209-E18 +160331223,KM12,16012925,Medical Incident,02/02/2016,02/02/2016,02/02/2016 10:49:41 AM,02/02/2016 10:50:36 AM,02/02/2016 10:51:35 AM,02/02/2016 10:52:01 AM,02/02/2016 11:15:24 AM,02/02/2016 11:19:22 AM,02/02/2016 11:38:48 AM,Code 3 Transport,02/02/2016 12:43:09 PM,BAY ST/TAYLOR ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8054171711156, -122.415241486546)",160331223-KM12 +160581886,KM11,16023135,Medical Incident,02/27/2016,02/27/2016,02/27/2016 01:40:10 PM,02/27/2016 01:41:42 PM,02/27/2016 01:42:06 PM,02/27/2016 01:42:53 PM,02/27/2016 01:46:02 PM,02/27/2016 02:15:18 PM,02/27/2016 02:32:21 PM,Code 2 Transport,02/27/2016 02:59:01 PM,200 Block of CAPISTRANO AVE,San Francisco,94112,B09,15,8265,3,3,3,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7274083661221, -122.438237343059)",160581886-KM11 +122920209,E29,12096764,Medical Incident,10/18/2012,10/18/2012,10/18/2012 01:00:57 PM,10/18/2012 01:01:45 PM,10/18/2012 01:03:15 PM,10/18/2012 01:03:47 PM,10/18/2012 01:06:40 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 01:18:42 PM,1600 Block of OWENS ST,SF,94158,B03,29,2414,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7680699628929, -122.394293450332)",122920209-E29 +123150359,57,12104995,Medical Incident,11/10/2012,11/10/2012,11/10/2012 11:12:15 PM,11/10/2012 11:15:01 PM,11/10/2012 11:16:01 PM,11/10/2012 11:18:11 PM,11/10/2012 11:25:48 PM,11/10/2012 11:53:09 PM,11/11/2012 12:12:59 AM,Code 2 Transport,11/11/2012 12:49:01 AM,300 Block of BAKER ST,SF,94117,B05,21,4252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",123150359-57 +160032091,AM08,16001248,Medical Incident,01/03/2016,01/03/2016,01/03/2016 04:08:42 PM,01/03/2016 04:09:44 PM,01/03/2016 04:10:33 PM,01/03/2016 04:11:05 PM,01/03/2016 04:15:20 PM,01/03/2016 04:22:07 PM,01/03/2016 04:33:17 PM,Code 2 Transport,01/03/2016 05:03:44 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160032091-AM08 +121180158,RC1,12039063,Medical Incident,04/27/2012,04/27/2012,04/27/2012 10:33:45 AM,04/27/2012 10:35:01 AM,04/27/2012 10:36:42 AM,04/27/2012 10:42:11 AM,04/27/2012 10:50:18 AM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 11:27:28 AM,1500 Block of MARKET ST,SF,94103,B02,36,3211,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,2,6,Mission,"(37.7746823329875, -122.419666717917)",121180158-RC1 +122640187,E08,12087186,Medical Incident,09/20/2012,09/20/2012,09/20/2012 01:06:36 PM,09/20/2012 01:08:28 PM,09/20/2012 01:08:59 PM,09/20/2012 01:11:24 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 01:13:54 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",122640187-E08 +160502573,KM12,16020172,Medical Incident,02/19/2016,02/19/2016,02/19/2016 04:43:21 PM,02/19/2016 04:44:43 PM,02/19/2016 04:46:08 PM,02/19/2016 04:47:11 PM,02/19/2016 05:06:10 PM,02/19/2016 05:29:19 PM,02/19/2016 05:42:16 PM,Code 2 Transport,02/19/2016 06:24:18 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,3,3,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160502573-KM12 +120840029,KM07,12027771,Medical Incident,03/24/2012,03/23/2012,03/24/2012 01:27:08 AM,03/24/2012 01:27:42 AM,03/24/2012 01:28:29 AM,04/25/2016 01:59:31 PM,03/24/2012 01:39:38 AM,03/24/2012 01:48:37 AM,03/24/2012 01:56:29 AM,Code 2 Transport,03/24/2012 02:20:38 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",120840029-KM07 +160152526,76,16006056,Medical Incident,01/15/2016,01/15/2016,01/15/2016 04:00:10 PM,01/15/2016 04:01:53 PM,01/15/2016 04:02:10 PM,01/15/2016 04:02:19 PM,01/15/2016 04:12:29 PM,01/15/2016 04:15:05 PM,01/15/2016 04:29:44 PM,Code 2 Transport,01/15/2016 04:46:48 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160152526-76 +102610248,E03,10082548,Medical Incident,09/18/2010,09/18/2010,09/18/2010 01:58:03 PM,09/18/2010 01:59:39 PM,09/18/2010 02:00:27 PM,09/18/2010 02:01:38 PM,09/18/2010 02:03:45 PM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,Other,09/18/2010 02:08:03 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",102610248-E03 +122700075,E33,12089038,Aircraft Emergency,09/26/2012,09/26/2012,09/26/2012 08:49:26 AM,09/26/2012 08:49:43 AM,09/26/2012 08:50:33 AM,09/26/2012 08:52:09 AM,09/26/2012 09:10:04 AM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,09/26/2012 11:17:17 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,true,Fire,1,ENGINE,2,None,None,None,"(37.6168823239251, -122.384094238098)",122700075-E33 +122230291,E05,12074024,Medical Incident,08/10/2012,08/10/2012,08/10/2012 05:58:19 PM,08/10/2012 06:00:43 PM,08/10/2012 06:01:03 PM,08/10/2012 06:01:49 PM,08/10/2012 06:04:02 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 06:11:42 PM,1900 Block of EDDY ST,SF,94115,B05,21,4241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Western Addition,"(37.7805348135093, -122.439769204544)",122230291-E05 +132680257,E16,13091042,Water Rescue,09/25/2013,09/25/2013,09/25/2013 03:34:26 PM,09/25/2013 03:36:46 PM,09/25/2013 03:39:51 PM,09/25/2013 03:41:59 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 03:59:45 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,9,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132680257-E16 +160080463,88,16003097,Medical Incident,01/08/2016,01/07/2016,01/08/2016 05:43:27 AM,01/08/2016 05:44:37 AM,01/08/2016 05:45:14 AM,01/08/2016 05:45:18 AM,01/08/2016 05:54:57 AM,01/08/2016 06:06:39 AM,01/08/2016 06:12:12 AM,Code 2 Transport,01/08/2016 06:39:33 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160080463-88 +131330209,B06,13044874,Outside Fire,05/13/2013,05/13/2013,05/13/2013 01:48:06 PM,05/13/2013 01:49:17 PM,05/13/2013 02:32:04 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 02:33:09 PM,MOULTRIE ST/CRESCENT AV,SF,94110,B06,32,5751,3,3,3,false,Fire,1,CHIEF,15,6,9,Bernal Heights,"(37.7348557177897, -122.416171881103)",131330209-B06 +130760358,RC3,13025540,Medical Incident,03/17/2013,03/17/2013,03/17/2013 08:55:29 PM,03/17/2013 08:56:56 PM,03/17/2013 08:58:06 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 08:59:24 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130760358-RC3 +111230170,AM12,11040613,Medical Incident,05/03/2011,05/03/2011,05/03/2011 11:40:23 AM,05/03/2011 11:41:47 AM,05/03/2011 11:42:07 AM,05/03/2011 11:42:44 AM,05/03/2011 11:44:45 AM,05/03/2011 11:54:41 AM,05/03/2011 12:13:40 PM,Code 2 Transport,05/03/2011 12:42:06 PM,500 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7800574377607, -122.408673540372)",111230170-AM12 +102550274,60,10080722,Medical Incident,09/12/2010,09/12/2010,09/12/2010 09:11:19 PM,09/12/2010 09:11:47 PM,09/12/2010 09:13:01 PM,09/12/2010 09:13:04 PM,09/12/2010 09:15:54 PM,09/12/2010 09:43:37 PM,09/12/2010 09:58:40 PM,Code 2 Transport,09/12/2010 10:47:12 PM,900 Block of BUSH ST,SF,94109,B01,41,1446,2,2,2,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",102550274-60 +132390207,T10,13080635,Structure Fire,08/27/2013,08/27/2013,08/27/2013 01:43:54 PM,08/27/2013 01:44:55 PM,08/27/2013 01:45:38 PM,08/27/2013 01:46:35 PM,08/27/2013 01:49:28 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 02:07:27 PM,700 Block of ARGUELLO BLVD,SF,94118,B07,31,7112,3,3,3,false,Fire,1,TRUCK,4,7,1,Lone Mountain/USF,"(37.7767252712767, -122.458473543257)",132390207-T10 +122160197,KM12,12071684,Medical Incident,08/03/2012,08/03/2012,08/03/2012 01:16:43 PM,08/03/2012 01:17:08 PM,08/03/2012 01:17:14 PM,08/03/2012 01:18:07 PM,08/03/2012 01:30:15 PM,08/03/2012 01:37:47 PM,08/03/2012 01:55:28 PM,Code 2 Transport,08/03/2012 02:33:24 PM,GEARY BL/FILLMORE ST,SF,94115,B04,5,3541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",122160197-KM12 +110590303,83,11019481,Medical Incident,02/28/2011,02/28/2011,02/28/2011 07:02:39 PM,02/28/2011 07:03:57 PM,02/28/2011 07:04:09 PM,02/28/2011 07:04:35 PM,02/28/2011 07:14:31 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Medical Examiner,02/28/2011 07:21:20 PM,100 Block of HALE ST,SF,94134,B10,42,6362,E,2,2,true,,1,MEDIC,2,10,9,Portola,"(37.7322416900991, -122.408073349592)",110590303-83 +122990059,E41,12098994,Alarms,10/25/2012,10/24/2012,10/25/2012 05:46:28 AM,10/25/2012 05:48:14 AM,10/25/2012 05:48:31 AM,10/25/2012 05:50:25 AM,10/25/2012 05:53:28 AM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/25/2012 06:00:12 AM,1100 Block of PACIFIC AVE,SF,94133,B01,41,1511,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7959719808332, -122.413810992406)",122990059-E41 +123010137,E14,12099751,Medical Incident,10/27/2012,10/27/2012,10/27/2012 10:20:25 AM,10/27/2012 10:22:15 AM,10/27/2012 10:22:26 AM,10/27/2012 10:25:36 AM,10/27/2012 10:30:07 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 11:23:16 AM,500 Block of 48TH AVE,SF,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7780077592037, -122.509229146953)",123010137-E14 +132380103,54,13080231,Medical Incident,08/26/2013,08/26/2013,08/26/2013 08:35:52 AM,08/26/2013 08:37:12 AM,08/26/2013 08:38:00 AM,08/26/2013 08:38:05 AM,08/26/2013 08:58:24 AM,08/26/2013 09:08:49 AM,08/26/2013 09:16:45 AM,Code 2 Transport,08/26/2013 09:50:38 AM,VAN NESS AV/TURK ST,SF,94102,B02,36,3164,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7819607659915, -122.420638249893)",132380103-54 +160670192,71,16026573,Medical Incident,03/07/2016,03/06/2016,03/07/2016 02:44:56 AM,03/07/2016 02:45:44 AM,03/07/2016 02:46:06 AM,03/07/2016 02:46:38 AM,03/07/2016 02:55:10 AM,03/07/2016 03:16:53 AM,03/07/2016 03:33:03 AM,Code 2 Transport,03/07/2016 04:16:55 AM,100 Block of GIRARD ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7303933049122, -122.40577188604)",160670192-71 +120850162,RS1,12028226,Structure Fire,03/25/2012,03/25/2012,03/25/2012 12:33:04 PM,03/25/2012 12:34:15 PM,03/25/2012 12:34:34 PM,03/25/2012 12:37:10 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 12:44:37 PM,200 Block of POST ST,SF,94108,B01,1,1316,3,3,3,false,Fire,1,RESCUE SQUAD,9,1,3,Financial District/South Beach,"(37.7885424853863, -122.405985351484)",120850162-RS1 +132600445,68,13088192,Medical Incident,09/17/2013,09/17/2013,09/17/2013 09:35:00 PM,09/17/2013 09:36:52 PM,09/17/2013 09:38:28 PM,09/17/2013 09:38:39 PM,09/17/2013 09:53:28 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,No Merit,09/17/2013 09:58:26 PM,SILVER AV/SAN BRUNO AV,SF,94134,B10,42,6362,2,2,2,false,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7324386586756, -122.405607549199)",132600445-68 +112940225,E01,11097545,Medical Incident,10/21/2011,10/21/2011,10/21/2011 02:45:50 PM,10/21/2011 02:46:29 PM,10/21/2011 02:47:01 PM,04/25/2016 02:02:03 PM,10/21/2011 02:49:53 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 02:58:18 PM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,true,,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",112940225-E01 +121950012,E08,12064768,Alarms,07/13/2012,07/12/2012,07/13/2012 01:21:58 AM,07/13/2012 01:23:27 AM,07/13/2012 01:23:45 AM,04/25/2016 01:57:45 PM,07/13/2012 01:25:56 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/13/2012 01:41:24 AM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7848984736106, -122.389669866427)",121950012-E08 +113290091,T07,11109090,Structure Fire,11/25/2011,11/25/2011,11/25/2011 10:35:17 AM,11/25/2011 10:35:17 AM,11/25/2011 10:35:43 AM,11/25/2011 10:35:53 AM,11/25/2011 10:40:41 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 10:41:30 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",113290091-T07 +111240263,E40,11041036,Electrical Hazard,05/04/2011,05/04/2011,05/04/2011 03:18:54 PM,05/04/2011 03:20:48 PM,05/04/2011 03:23:15 PM,05/04/2011 03:24:24 PM,05/04/2011 03:26:20 PM,04/25/2016 02:04:47 PM,04/25/2016 02:04:47 PM,Fire,05/04/2011 03:30:27 PM,1000 Block of RIVERA ST,SF,94116,B08,40,7433,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7467637296912, -122.477562996056)",111240263-E40 +130710301,96,13023792,Medical Incident,03/12/2013,03/12/2013,03/12/2013 06:44:44 PM,03/12/2013 06:46:03 PM,03/12/2013 06:46:29 PM,04/25/2016 01:53:52 PM,03/12/2013 06:48:18 PM,03/12/2013 07:05:21 PM,03/12/2013 07:29:11 PM,Code 2 Transport,03/12/2013 07:49:49 PM,1700 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7903193034194, -122.4231629068)",130710301-96 +160852948,KM11,16033889,Medical Incident,03/25/2016,03/25/2016,03/25/2016 05:51:39 PM,03/25/2016 05:52:41 PM,03/25/2016 05:53:17 PM,03/25/2016 05:53:49 PM,03/25/2016 06:01:12 PM,03/25/2016 06:20:19 PM,03/25/2016 06:46:40 PM,Code 3 Transport,03/25/2016 07:12:38 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160852948-KM11 +111920122,E01,11063338,Medical Incident,07/11/2011,07/11/2011,07/11/2011 10:51:44 AM,07/11/2011 10:52:34 AM,07/11/2011 10:52:45 AM,07/11/2011 10:54:56 AM,07/11/2011 10:58:31 AM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 11:08:01 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7816136403158, -122.412054141237)",111920122-E01 +110150195,81,11005007,Medical Incident,01/15/2011,01/15/2011,01/15/2011 01:47:35 PM,01/15/2011 01:47:36 PM,01/15/2011 01:47:36 PM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,01/15/2011 01:51:21 PM,01/15/2011 02:13:32 PM,Code 2 Transport,01/15/2011 02:30:11 PM,24TH ST/CAPP ST,SF,94110,B06,7,5511,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7523059787388, -122.417357818307)",110150195-81 +132170071,AM16,13073215,Medical Incident,08/05/2013,08/04/2013,08/05/2013 06:39:23 AM,08/05/2013 06:41:14 AM,08/05/2013 06:42:28 AM,08/05/2013 06:43:29 AM,08/05/2013 06:55:27 AM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,No Merit,08/05/2013 06:58:37 AM,WAWONA ST/46TH AV,SF,94116,B08,18,7642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7361821250694, -122.504227749875)",132170071-AM16 +160661659,AM08,16026400,Medical Incident,03/06/2016,03/06/2016,03/06/2016 01:40:04 PM,03/06/2016 01:41:33 PM,03/06/2016 01:42:40 PM,03/06/2016 01:43:35 PM,03/06/2016 01:48:20 PM,03/06/2016 01:59:41 PM,03/06/2016 02:10:32 PM,Code 2 Transport,03/06/2016 02:29:39 PM,BEACH ST/TAYLOR ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.807275868938, -122.41561643642)",160661659-AM08 +122830173,RS1,12093639,Structure Fire,10/09/2012,10/09/2012,10/09/2012 01:02:03 PM,10/09/2012 01:02:52 PM,10/09/2012 01:03:08 PM,10/09/2012 01:04:11 PM,10/09/2012 01:11:06 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 01:16:44 PM,3200 Block of SACRAMENTO ST,SF,94115,B04,10,4412,3,3,3,false,Alarm,1,RESCUE SQUAD,7,4,2,Presidio Heights,"(37.7882208815731, -122.446270384367)",122830173-RS1 +123190314,E11,12106176,Medical Incident,11/14/2012,11/14/2012,11/14/2012 06:49:12 PM,11/14/2012 06:51:05 PM,11/14/2012 06:51:39 PM,04/25/2016 01:55:48 PM,11/14/2012 06:56:29 PM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Other,11/14/2012 07:05:07 PM,20TH ST/DOLORES ST,SF,94110,B06,11,5444,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7582268286563, -122.425766808104)",123190314-E11 +113340197,E18,11110614,Medical Incident,11/30/2011,11/30/2011,11/30/2011 02:24:44 PM,11/30/2011 02:25:29 PM,11/30/2011 02:26:23 PM,11/30/2011 02:27:20 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,11/30/2011 02:29:27 PM,1300 Block of 48TH AVE,SF,94122,B08,23,7721,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.761256999261, -122.508202143455)",113340197-E18 +121860385,55,12062126,Traffic Collision,07/04/2012,07/04/2012,07/04/2012 10:34:03 PM,07/04/2012 10:37:33 PM,07/04/2012 10:49:15 PM,07/04/2012 10:49:28 PM,07/04/2012 10:56:48 PM,07/04/2012 11:10:27 PM,07/04/2012 11:25:29 PM,Code 2 Transport,07/04/2012 11:52:30 PM,30TH ST/DOLORES ST,SF,94110,B06,11,5574,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7422363026492, -122.424233278525)",121860385-55 +110770071,AM16,11025254,Medical Incident,03/18/2011,03/17/2011,03/18/2011 06:30:47 AM,03/18/2011 06:31:37 AM,03/18/2011 06:32:23 AM,03/18/2011 06:33:28 AM,03/18/2011 06:41:32 AM,03/18/2011 06:49:01 AM,03/18/2011 08:04:03 AM,Code 2 Transport,03/18/2011 08:36:52 AM,700 Block of 4TH ST,SF,94107,B03,8,2224,3,2,2,false,,1,PRIVATE,2,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",110770071-AM16 +140210346,92,14007334,Structure Fire,01/21/2014,01/21/2014,01/21/2014 09:14:15 PM,01/21/2014 09:14:16 PM,01/21/2014 09:26:13 PM,01/21/2014 09:26:41 PM,01/21/2014 09:32:37 PM,01/21/2014 10:05:04 PM,01/21/2014 10:12:05 PM,Other,01/21/2014 10:49:54 PM,26TH ST/HAMPSHIRE ST,SF,94110,B06,9,5616,,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7497166298249, -122.406896451435)",140210346-92 +160123158,64,16004900,Medical Incident,01/12/2016,01/12/2016,01/12/2016 06:59:10 PM,01/12/2016 06:59:10 PM,01/12/2016 06:59:48 PM,01/12/2016 07:00:04 PM,01/12/2016 07:04:52 PM,01/12/2016 07:11:58 PM,01/12/2016 07:29:43 PM,Code 2 Transport,01/12/2016 08:03:39 PM,EVANS AV/PHELPS ST,San Francisco,94124,B10,25,6457,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7429806182434, -122.388455028839)",160123158-64 +160410709,55,16016354,Medical Incident,02/10/2016,02/09/2016,02/10/2016 07:56:54 AM,02/10/2016 07:57:39 AM,02/10/2016 07:59:49 AM,02/10/2016 08:02:50 AM,02/10/2016 08:35:53 AM,02/10/2016 08:35:57 AM,02/10/2016 08:48:16 AM,Code 2 Transport,02/10/2016 10:15:48 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7817569847968, -122.414263390372)",160410709-55 +131750219,RC1,13059404,Traffic Collision,06/24/2013,06/24/2013,06/24/2013 02:51:37 PM,06/24/2013 02:52:20 PM,06/24/2013 02:54:14 PM,04/25/2016 01:52:08 PM,06/24/2013 02:59:44 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 03:19:45 PM,RUSS ST/FOLSOM ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7776289330635, -122.40672447168)",131750219-RC1 +110730378,E10,11024173,Medical Incident,03/14/2011,03/14/2011,03/14/2011 09:26:26 PM,03/14/2011 09:27:08 PM,03/14/2011 09:27:22 PM,03/14/2011 09:28:19 PM,03/14/2011 09:31:56 PM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/14/2011 09:49:41 PM,3600 Block of CALIFORNIA ST,SF,94118,B07,10,4436,3,3,3,true,,1,ENGINE,2,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",110730378-E10 +160062134,AM08,16002442,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:37:56 PM,01/06/2016 02:38:30 PM,01/06/2016 02:39:05 PM,01/06/2016 02:40:27 PM,01/06/2016 02:57:12 PM,01/06/2016 02:57:28 PM,01/06/2016 03:30:18 PM,Code 2 Transport,01/06/2016 04:04:47 PM,1600 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8271,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.725089760675, -122.436723473282)",160062134-AM08 +122680266,86,12088605,Medical Incident,09/24/2012,09/24/2012,09/24/2012 04:57:46 PM,09/24/2012 04:59:25 PM,09/24/2012 05:01:24 PM,09/24/2012 05:02:09 PM,09/24/2012 05:10:41 PM,09/24/2012 05:30:55 PM,09/24/2012 05:43:37 PM,Code 2 Transport,09/24/2012 06:10:18 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",122680266-86 +160173160,78,16007003,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:05:32 PM,01/17/2016 09:06:53 PM,01/17/2016 09:07:39 PM,01/17/2016 09:07:52 PM,01/17/2016 09:18:14 PM,01/17/2016 09:40:01 PM,01/17/2016 10:01:44 PM,Code 2 Transport,01/17/2016 10:34:59 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",160173160-78 +160602498,66,16023984,Medical Incident,02/29/2016,02/29/2016,02/29/2016 04:44:08 PM,02/29/2016 04:47:21 PM,02/29/2016 04:48:55 PM,02/29/2016 04:49:08 PM,02/29/2016 05:02:45 PM,02/29/2016 05:31:01 PM,02/29/2016 05:41:37 PM,Code 2 Transport,02/29/2016 06:48:23 PM,1600 Block of 16TH AVE,San Francisco,94122,B08,22,7372,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7574539149952, -122.473691932928)",160602498-66 +111270105,E37,11041978,Medical Incident,05/07/2011,05/07/2011,05/07/2011 10:16:21 AM,05/07/2011 10:17:00 AM,05/07/2011 10:17:16 AM,05/07/2011 10:17:48 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/07/2011 10:21:06 AM,24TH ST/POTRERO AV,SF,94110,B10,37,2554,3,3,3,true,,1,ENGINE,4,10,9,Mission,"(37.7530040313925, -122.406336240587)",111270105-E37 +160390493,52,16015482,Medical Incident,02/08/2016,02/07/2016,02/08/2016 05:18:06 AM,02/08/2016 05:20:54 AM,02/08/2016 05:21:13 AM,02/08/2016 05:21:55 AM,02/08/2016 05:26:27 AM,02/08/2016 05:44:44 AM,02/08/2016 06:04:56 AM,Code 2 Transport,02/08/2016 06:40:23 AM,400 Block of LA GRANDE AVE,San Francisco,94112,B09,43,6165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7168832129692, -122.426832020339)",160390493-52 +110180070,E26,11005853,Traffic Collision,01/18/2011,01/18/2011,01/18/2011 09:08:53 AM,01/18/2011 09:10:49 AM,01/18/2011 09:12:16 AM,01/18/2011 09:13:33 AM,01/18/2011 09:15:40 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Patient Declined Transport,01/18/2011 09:37:57 AM,DIAMOND HEIGHTS BL/ARBOR ST,SF,94131,B06,26,8174,2,2,2,true,,1,ENGINE,1,6,8,Glen Park,"(37.7377891378553, -122.439919792973)",110180070-E26 +130470376,55,13016165,Medical Incident,02/16/2013,02/16/2013,02/16/2013 08:10:05 PM,02/16/2013 08:12:23 PM,02/16/2013 08:12:56 PM,02/16/2013 08:13:05 PM,02/16/2013 08:22:06 PM,02/16/2013 08:50:57 PM,02/16/2013 09:04:37 PM,Code 2 Transport,02/16/2013 09:26:46 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",130470376-55 +132040047,E02,13068996,Medical Incident,07/23/2013,07/22/2013,07/23/2013 06:22:01 AM,07/23/2013 06:23:43 AM,07/23/2013 06:24:47 AM,07/23/2013 06:26:33 AM,07/23/2013 06:28:12 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 06:36:40 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7980497141877, -122.406829909619)",132040047-E02 +121130073,E16,12037427,Medical Incident,04/22/2012,04/21/2012,04/22/2012 05:50:14 AM,04/22/2012 05:51:17 AM,04/22/2012 05:52:27 AM,04/22/2012 05:54:43 AM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 05:54:49 AM,2100 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7998548796266, -122.436893822331)",121130073-E16 +102790177,E08,10088697,Medical Incident,10/06/2010,10/06/2010,10/06/2010 01:41:06 PM,10/06/2010 01:43:18 PM,10/06/2010 01:43:53 PM,10/06/2010 01:45:14 PM,10/06/2010 01:46:36 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 01:53:40 PM,900 Block of 4TH ST,SF,94158,B03,8,2225,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7753672597362, -122.392898312211)",102790177-E08 +121480381,89,12049281,Medical Incident,05/27/2012,05/27/2012,05/27/2012 10:06:16 PM,05/27/2012 10:06:16 PM,05/27/2012 10:06:16 PM,05/27/2012 10:07:35 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/27/2012 10:08:44 PM,1600 Block of BATTERY CHAMBERLIN RD,PR,94129,B99,51,4630,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,2,Presidio,"(37.7915253713789, -122.483480228628)",121480381-89 +140560214,87,14018915,Medical Incident,02/25/2014,02/25/2014,02/25/2014 02:05:30 PM,02/25/2014 02:06:30 PM,02/25/2014 02:07:02 PM,02/25/2014 02:07:18 PM,02/25/2014 02:12:57 PM,02/25/2014 02:36:29 PM,02/25/2014 02:44:07 PM,Code 2 Transport,02/25/2014 03:13:41 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",140560214-87 +120590137,D3,12019391,Structure Fire,02/28/2012,02/28/2012,02/28/2012 11:18:00 AM,02/28/2012 11:18:26 AM,02/28/2012 11:18:33 AM,02/28/2012 11:22:02 AM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/28/2012 11:25:48 AM,3RD ST/REVERE AV,SF,94124,B10,17,6514,3,3,3,false,Fire,1,CHIEF,7,10,10,Bayview Hunters Point,"(37.7324319090354, -122.391521351669)",120590137-D3 +121410471,E37,12047101,Vehicle Fire,05/20/2012,05/20/2012,05/20/2012 11:11:13 PM,05/20/2012 11:13:09 PM,05/20/2012 11:13:24 PM,05/20/2012 11:15:08 PM,05/20/2012 11:17:51 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,Fire,05/20/2012 11:59:55 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,false,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",121410471-E37 +102990184,E33,10095461,Medical Incident,10/26/2010,10/26/2010,10/26/2010 12:43:47 PM,10/26/2010 12:46:23 PM,10/26/2010 12:46:39 PM,10/26/2010 12:48:04 PM,10/26/2010 12:50:34 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 01:18:46 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",102990184-E33 +133510089,84,13119113,Medical Incident,12/17/2013,12/16/2013,12/17/2013 07:22:15 AM,12/17/2013 07:23:04 AM,12/17/2013 07:23:50 AM,12/17/2013 07:24:03 AM,12/17/2013 07:30:50 AM,12/17/2013 07:51:51 AM,12/17/2013 08:13:00 AM,Code 3 Transport,12/17/2013 09:16:52 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",133510089-84 +122800221,E13,12092624,Medical Incident,10/06/2012,10/06/2012,10/06/2012 02:13:31 PM,10/06/2012 02:15:20 PM,10/06/2012 02:17:29 PM,10/06/2012 02:18:07 PM,10/06/2012 02:29:15 PM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,Other,10/06/2012 02:32:03 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",122800221-E13 +123390303,E41,12113160,Medical Incident,12/04/2012,12/04/2012,12/04/2012 05:46:21 PM,12/04/2012 05:46:21 PM,12/04/2012 05:46:21 PM,12/04/2012 06:03:57 PM,12/04/2012 06:08:48 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 06:18:58 PM,HYDE ST/OFARRELL ST,SF,94109,B04,3,1544,2,2,2,false,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7853759730503, -122.416259705763)",123390303-E41 +130240386,E42,13008459,Medical Incident,01/24/2013,01/24/2013,01/24/2013 09:58:47 PM,01/24/2013 09:59:08 PM,01/24/2013 09:59:15 PM,01/24/2013 10:00:37 PM,01/24/2013 10:02:12 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 10:10:46 PM,2800 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7258516225617, -122.402785741041)",130240386-E42 +102420100,E42,10076259,Medical Incident,08/30/2010,08/30/2010,08/30/2010 09:41:45 AM,08/30/2010 09:44:00 AM,08/30/2010 09:45:27 AM,08/30/2010 09:46:40 AM,08/30/2010 09:48:31 AM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/30/2010 10:00:34 AM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",102420100-E42 +112750318,T48,11091127,Vehicle Fire,10/02/2011,10/02/2011,10/02/2011 07:03:20 PM,10/02/2011 07:04:06 PM,10/02/2011 07:06:52 PM,10/02/2011 07:08:00 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/02/2011 07:28:54 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,,1,TRUCK,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",112750318-T48 +110650295,87,11021552,Medical Incident,03/06/2011,03/06/2011,03/06/2011 05:40:23 PM,03/06/2011 05:41:25 PM,03/06/2011 05:41:49 PM,03/06/2011 05:42:42 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,Other,03/06/2011 05:48:26 PM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",110650295-87 +131750125,E01,13059329,Medical Incident,06/24/2013,06/24/2013,06/24/2013 10:39:17 AM,06/24/2013 10:40:10 AM,06/24/2013 10:40:22 AM,06/24/2013 10:40:34 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 10:43:57 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131750125-E01 +120490159,E36,12016196,Structure Fire,02/18/2012,02/18/2012,02/18/2012 12:37:15 PM,02/18/2012 12:37:15 PM,02/18/2012 12:37:23 PM,02/18/2012 12:38:43 PM,02/18/2012 12:40:10 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Fire,02/18/2012 12:40:46 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",120490159-E36 +132550270,T03,13086253,Citizen Assist / Service Call,09/12/2013,09/12/2013,09/12/2013 04:14:15 PM,09/12/2013 04:15:40 PM,09/12/2013 04:16:01 PM,09/12/2013 04:20:10 PM,09/12/2013 04:24:15 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 04:37:17 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,Alarm,1,TRUCK,1,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",132550270-T03 +110040236,B01,11001336,Alarms,01/04/2011,01/04/2011,01/04/2011 03:17:47 PM,01/04/2011 03:18:57 PM,01/04/2011 03:19:23 PM,01/04/2011 03:22:18 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/04/2011 03:30:47 PM,100 Block of UNION ST,SF,94111,B01,13,1153,3,3,3,false,,1,CHIEF,3,1,3,Financial District/South Beach,"(37.8012225262749, -122.402484813291)",110040236-B01 +160810560,82,16032075,Medical Incident,03/21/2016,03/20/2016,03/21/2016 07:16:26 AM,03/21/2016 07:17:56 AM,03/21/2016 07:19:20 AM,03/21/2016 07:21:01 AM,03/21/2016 07:25:12 AM,03/21/2016 07:39:57 AM,03/21/2016 07:45:33 AM,Code 2 Transport,03/21/2016 08:12:37 AM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160810560-82 +160580457,KM07,16023000,Traffic Collision,02/27/2016,02/26/2016,02/27/2016 03:36:04 AM,02/27/2016 03:39:01 AM,02/27/2016 03:39:06 AM,02/27/2016 03:39:43 AM,02/27/2016 03:47:46 AM,02/27/2016 04:01:50 AM,02/27/2016 04:10:29 AM,Other,02/27/2016 05:17:59 AM,1600 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7726948236861, -122.422188261426)",160580457-KM07 +132960080,E03,13100518,Medical Incident,10/23/2013,10/23/2013,10/23/2013 09:10:49 AM,10/23/2013 09:13:27 AM,10/23/2013 09:14:28 AM,10/23/2013 09:15:00 AM,10/23/2013 09:15:46 AM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/23/2013 09:53:51 AM,1300 Block of BUSH ST,SF,94109,B04,3,1636,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",132960080-E03 +121120426,KM07,12037345,Medical Incident,04/21/2012,04/21/2012,04/21/2012 11:06:21 PM,04/21/2012 11:07:47 PM,04/21/2012 11:08:26 PM,04/21/2012 11:09:24 PM,04/21/2012 11:13:06 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Patient Declined Transport,04/21/2012 11:14:23 PM,TAYLOR ST/SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",121120426-KM07 +160191937,AM14,16007652,Medical Incident,01/19/2016,01/19/2016,01/19/2016 01:46:30 PM,01/19/2016 01:48:49 PM,01/19/2016 01:53:01 PM,01/19/2016 01:53:37 PM,01/19/2016 02:12:12 PM,01/19/2016 02:12:48 PM,01/19/2016 02:40:55 PM,Code 2 Transport,01/19/2016 03:10:06 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160191937-AM14 +130840154,T03,13028023,Citizen Assist / Service Call,03/25/2013,03/25/2013,03/25/2013 10:50:18 AM,03/25/2013 10:51:39 AM,03/25/2013 10:54:21 AM,03/25/2013 10:55:21 AM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,Other,03/25/2013 10:58:08 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,Alarm,1,TRUCK,1,1,6,Tenderloin,"(37.7862508859711, -122.413133876591)",130840154-T03 +131790055,82,13060686,Medical Incident,06/28/2013,06/27/2013,06/28/2013 03:46:16 AM,06/28/2013 03:47:01 AM,06/28/2013 03:47:27 AM,06/28/2013 03:47:33 AM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,Other,06/28/2013 03:50:18 AM,1500 Block of 18TH AVE,SF,94122,B08,22,7423,E,E,3,false,Potentially Life-Threatening,1,MEDIC,4,8,7,Inner Sunset,"(37.7589435555381, -122.47580028939)",131790055-82 +160151809,53,16005990,Medical Incident,01/15/2016,01/15/2016,01/15/2016 12:58:24 PM,01/15/2016 01:00:09 PM,01/15/2016 01:01:34 PM,01/15/2016 01:01:46 PM,01/15/2016 01:20:54 PM,01/15/2016 01:23:21 PM,01/15/2016 01:46:03 PM,Code 2 Transport,01/15/2016 02:07:21 PM,200 Block of FRONT ST,San Francisco,94111,B01,13,1141,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7936101605254, -122.398762705491)",160151809-53 +160160284,AM18,16006259,Medical Incident,01/16/2016,01/15/2016,01/16/2016 02:03:13 AM,01/16/2016 02:03:13 AM,01/16/2016 02:04:04 AM,01/16/2016 02:04:46 AM,01/16/2016 02:12:22 AM,01/16/2016 02:38:45 AM,01/16/2016 02:47:18 AM,Code 2 Transport,01/16/2016 03:14:34 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160160284-AM18 +131290126,83,13043557,Medical Incident,05/09/2013,05/09/2013,05/09/2013 11:03:03 AM,05/09/2013 11:04:39 AM,05/09/2013 11:05:21 AM,05/09/2013 11:05:43 AM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,Other,04/25/2016 01:52:53 PM,MISSION ST/7TH ST,SF,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",131290126-83 +120010397,B10,12000342,Structure Fire,01/01/2012,01/01/2012,01/01/2012 11:51:34 AM,01/01/2012 11:52:11 AM,01/01/2012 11:52:27 AM,01/01/2012 11:53:16 AM,01/01/2012 11:57:14 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 11:58:11 AM,800 Block of INNES AVE,SF,94124,B10,25,6632,3,3,3,false,Fire,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7314216570538, -122.374864504136)",120010397-B10 +110080231,99,11002716,Medical Incident,01/08/2011,01/08/2011,01/08/2011 03:18:37 PM,01/08/2011 03:19:19 PM,01/08/2011 03:19:40 PM,01/08/2011 03:20:00 PM,01/08/2011 03:23:14 PM,01/08/2011 03:36:47 PM,01/08/2011 03:49:01 PM,Code 2 Transport,01/08/2011 04:04:14 PM,100 Block of LONDON ST,SF,94112,B09,43,6131,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7266191011756, -122.432371371352)",110080231-99 +120310256,E31,12010331,Traffic Collision,01/31/2012,01/31/2012,01/31/2012 04:48:34 PM,01/31/2012 04:48:47 PM,01/31/2012 04:49:33 PM,01/31/2012 04:51:04 PM,01/31/2012 04:53:02 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/31/2012 04:53:45 PM,18TH AV/CLEMENT ST,SF,94121,B07,31,7162,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7823605680596, -122.477374310784)",120310256-E31 +113560339,E21,11118323,Medical Incident,12/22/2011,12/22/2011,12/22/2011 06:20:25 PM,12/22/2011 06:22:10 PM,12/22/2011 06:22:42 PM,12/22/2011 06:23:51 PM,12/22/2011 06:24:21 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 06:44:49 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,3,3,false,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",113560339-E21 +140530014,55,14017800,Medical Incident,02/22/2014,02/21/2014,02/22/2014 12:34:06 AM,02/22/2014 12:36:26 AM,02/22/2014 12:36:38 AM,02/22/2014 12:36:47 AM,02/22/2014 12:45:34 AM,02/22/2014 01:02:42 AM,02/22/2014 01:17:33 AM,Code 2 Transport,02/22/2014 01:57:48 AM,2700 Block of 41ST AVE,SF,94116,B08,19,7641,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7354674300338, -122.498871451486)",140530014-55 +110070156,E16,11002299,Medical Incident,01/07/2011,01/07/2011,01/07/2011 12:04:16 PM,01/07/2011 12:06:23 PM,01/07/2011 12:06:40 PM,01/07/2011 12:07:45 PM,01/07/2011 12:12:49 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/07/2011 12:18:41 PM,2200 Block of FILBERT ST,SF,94123,B04,16,3611,2,2,2,true,,1,ENGINE,2,4,2,Marina,"(37.7979705264225, -122.436513149932)",110070156-E16 +120890079,AM06,12029389,Medical Incident,03/29/2012,03/29/2012,03/29/2012 09:06:43 AM,03/29/2012 09:07:17 AM,03/29/2012 09:08:32 AM,03/29/2012 09:09:11 AM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,No Merit,03/29/2012 09:12:03 AM,16TH ST/ALBION ST,SF,94110,B02,6,5235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7648432997817, -122.42311242302)",120890079-AM06 +130600225,RC1,13020155,Medical Incident,03/01/2013,03/01/2013,03/01/2013 02:25:06 PM,03/01/2013 02:27:42 PM,03/01/2013 02:28:13 PM,03/01/2013 02:30:19 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 02:33:23 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",130600225-RC1 +160373613,AM04,16014916,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:33:21 PM,02/06/2016 08:33:40 PM,02/06/2016 08:34:16 PM,02/06/2016 08:35:34 PM,02/06/2016 08:45:19 PM,02/06/2016 08:59:06 PM,02/06/2016 09:30:44 PM,Code 2 Transport,02/06/2016 09:55:49 PM,400 Block of PACIFIC AVE,San Francisco,94133,B01,13,1212,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.7974015545937, -122.403291978554)",160373613-AM04 +140360217,55,14012237,Medical Incident,02/05/2014,02/05/2014,02/05/2014 02:56:16 PM,02/05/2014 02:58:27 PM,02/05/2014 02:59:45 PM,02/05/2014 02:59:52 PM,02/05/2014 03:10:34 PM,02/05/2014 03:33:40 PM,02/05/2014 03:37:56 PM,Code 2 Transport,02/05/2014 04:01:34 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",140360217-55 +111480047,83,11048975,Medical Incident,05/28/2011,05/27/2011,05/28/2011 05:13:44 AM,05/28/2011 05:13:54 AM,05/28/2011 05:14:06 AM,05/28/2011 05:15:01 AM,05/28/2011 05:19:58 AM,05/28/2011 05:39:13 AM,05/28/2011 06:09:19 AM,Code 2 Transport,05/28/2011 06:27:31 AM,4800 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7213272618826, -122.437216421378)",111480047-83 +160420404,50,16016736,Medical Incident,02/11/2016,02/10/2016,02/11/2016 05:31:56 AM,02/11/2016 05:34:42 AM,02/11/2016 05:35:06 AM,02/11/2016 05:36:16 AM,02/11/2016 05:41:02 AM,02/11/2016 05:50:42 AM,02/11/2016 06:02:58 AM,Code 2 Transport,02/11/2016 06:52:32 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160420404-50 +122480008,RS2,12081840,Medical Incident,09/04/2012,09/03/2012,09/04/2012 12:09:49 AM,09/04/2012 12:10:03 AM,09/04/2012 12:10:16 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/04/2012 12:11:49 AM,900 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,E,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,6,9,Mission,"(37.7579695979937, -122.416727053367)",122480008-RS2 +160810559,62,16032074,Medical Incident,03/21/2016,03/20/2016,03/21/2016 07:17:46 AM,03/21/2016 07:17:46 AM,03/21/2016 07:18:28 AM,03/21/2016 07:18:43 AM,03/21/2016 07:24:55 AM,03/21/2016 07:40:01 AM,03/21/2016 08:00:03 AM,Code 2 Transport,03/21/2016 08:24:04 AM,VAN NESS AV/AUSTIN ST,San Francisco,94109,B04,3,3156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7889426233667, -122.42214537963)",160810559-62 +110850326,E01,11028156,Structure Fire,03/26/2011,03/26/2011,03/26/2011 07:28:39 PM,03/26/2011 07:28:39 PM,03/26/2011 07:28:49 PM,04/25/2016 02:05:26 PM,03/26/2011 07:32:11 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 07:32:26 PM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",110850326-E01 +102680185,D2,10084887,Structure Fire,09/25/2010,09/25/2010,09/25/2010 12:20:38 PM,09/25/2010 12:21:04 PM,09/25/2010 12:21:29 PM,09/25/2010 12:22:22 PM,09/25/2010 12:32:22 PM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 12:45:13 PM,1800 Block of 30TH AVE,SF,94122,B08,18,7515,3,3,3,false,,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7527846529683, -122.488272720267)",102680185-D2 +102810352,E17,10089453,Alarms,10/08/2010,10/08/2010,10/08/2010 07:06:58 PM,10/08/2010 07:08:45 PM,10/08/2010 07:10:30 PM,10/08/2010 07:11:20 PM,10/08/2010 07:14:34 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/08/2010 07:16:52 PM,0 Block of REDDY ST,SF,94124,B10,17,6513,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7303445745684, -122.395149263029)",102810352-E17 +160403382,68,16016197,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:11:15 PM,02/09/2016 08:11:15 PM,02/09/2016 08:12:05 PM,02/09/2016 08:12:12 PM,02/09/2016 08:25:44 PM,02/09/2016 08:31:40 PM,02/09/2016 09:06:50 PM,Code 2 Transport,02/09/2016 09:49:08 PM,500 Block of 2ND ST,San Francisco,94107,B03,8,2153,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7824042708264, -122.392678013095)",160403382-68 +111860112,E07,11061412,Medical Incident,07/05/2011,07/05/2011,07/05/2011 08:27:13 AM,07/05/2011 08:27:51 AM,07/05/2011 08:28:32 AM,07/05/2011 08:29:56 AM,07/05/2011 08:31:06 AM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/05/2011 08:38:09 AM,3100 Block of 18TH ST,SF,94110,B02,7,5424,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7621831102458, -122.414520446496)",111860112-E07 +160181191,65,16007192,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:04:23 AM,01/18/2016 11:05:42 AM,01/18/2016 11:06:16 AM,01/18/2016 11:06:22 AM,01/18/2016 11:14:24 AM,01/18/2016 11:28:54 AM,01/18/2016 11:38:37 AM,Code 2 Transport,01/18/2016 12:28:39 PM,400 Block of POWELL ST,San Francisco,94108,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",160181191-65 +131570213,RS2,13053249,Medical Incident,06/06/2013,06/06/2013,06/06/2013 01:04:08 PM,06/06/2013 01:04:58 PM,06/06/2013 01:05:40 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/06/2013 01:06:59 PM,600 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,9,Mission,"(37.7627737268131, -122.417186682545)",131570213-RS2 +102330112,E06,10073283,Traffic Collision,08/21/2010,08/21/2010,08/21/2010 09:05:29 AM,08/21/2010 09:06:58 AM,08/21/2010 09:07:34 AM,08/21/2010 09:08:12 AM,08/21/2010 09:10:37 AM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/21/2010 09:21:42 AM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",102330112-E06 +112620310,T06,11086556,Alarms,09/19/2011,09/19/2011,09/19/2011 04:55:00 PM,09/19/2011 04:55:57 PM,09/19/2011 04:56:02 PM,09/19/2011 04:57:46 PM,09/19/2011 05:00:55 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 05:12:51 PM,200 Block of 14TH ST,SF,94103,B02,36,5215,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7682417343017, -122.419597974659)",112620310-T06 +121140059,54,12037746,Medical Incident,04/23/2012,04/22/2012,04/23/2012 06:36:41 AM,04/23/2012 06:37:42 AM,04/23/2012 06:38:13 AM,04/23/2012 06:38:31 AM,04/23/2012 06:43:52 AM,04/23/2012 06:53:51 AM,04/23/2012 07:11:37 AM,Code 2 Transport,04/23/2012 07:22:33 AM,LOS PALMOS DR/HAZELWOOD AV,SF,94127,B09,39,8526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7344863265683, -122.457562932379)",121140059-54 +102760167,T01,10087714,Structure Fire,10/03/2010,10/03/2010,10/03/2010 11:38:07 AM,10/03/2010 11:38:07 AM,10/03/2010 11:38:35 AM,10/03/2010 11:39:51 AM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Fire,10/03/2010 11:41:48 AM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7779770860913, -122.409387007126)",102760167-T01 +122330263,T14,12077351,Citizen Assist / Service Call,08/20/2012,08/20/2012,08/20/2012 04:18:51 PM,08/20/2012 04:19:54 PM,08/20/2012 04:22:33 PM,08/20/2012 04:23:27 PM,08/20/2012 04:27:53 PM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Fire,08/20/2012 04:32:13 PM,BALBOA ST/37TH AV,SF,94121,B07,34,7254,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.7757154136216, -122.497318725581)",122330263-T14 +110460239,64,11015275,Medical Incident,02/15/2011,02/15/2011,02/15/2011 03:23:05 PM,02/15/2011 03:23:28 PM,02/15/2011 03:24:05 PM,02/15/2011 03:24:20 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 03:27:55 PM,600 Block of SHOTWELL ST,SF,94110,B06,7,5447,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.758027155218, -122.415771731954)",110460239-64 +140370226,65,14012546,Medical Incident,02/06/2014,02/06/2014,02/06/2014 03:05:10 PM,02/06/2014 03:08:00 PM,02/06/2014 03:08:52 PM,02/06/2014 03:09:10 PM,02/06/2014 03:19:25 PM,02/06/2014 03:45:03 PM,02/06/2014 03:57:02 PM,Code 2 Transport,02/06/2014 04:22:05 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",140370226-65 +123220238,E28,12107092,Medical Incident,11/17/2012,11/17/2012,11/17/2012 02:07:47 PM,11/17/2012 02:08:33 PM,11/17/2012 02:09:43 PM,11/17/2012 02:10:24 PM,11/17/2012 02:11:47 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,No Merit,11/17/2012 02:23:03 PM,UNION ST/COLUMBUS AV,SF,94133,B01,28,1334,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8003154984429, -122.410206543893)",123220238-E28 +160682796,77,16027197,Medical Incident,03/08/2016,03/08/2016,03/08/2016 05:34:42 PM,03/08/2016 05:34:42 PM,03/08/2016 05:34:50 PM,03/08/2016 05:35:01 PM,03/08/2016 05:55:35 PM,03/08/2016 06:10:46 PM,03/08/2016 06:37:24 PM,Code 2 Transport,03/08/2016 07:26:05 PM,6800 Block of GEARY BLVD,San Francisco,94121,B07,14,7245,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7795992276272, -122.49275286314)",160682796-77 +131530302,66,13051944,Medical Incident,06/02/2013,06/02/2013,06/02/2013 08:12:23 PM,06/02/2013 08:14:14 PM,06/02/2013 08:17:17 PM,06/02/2013 08:17:33 PM,06/02/2013 08:26:21 PM,06/02/2013 08:35:24 PM,06/02/2013 08:46:49 PM,Code 2 Transport,06/02/2013 09:04:06 PM,3800 Block of 18TH ST,SF,94114,B02,6,5421,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",131530302-66 +120280127,KM01,12009358,Medical Incident,01/28/2012,01/28/2012,01/28/2012 10:26:14 AM,01/28/2012 10:27:31 AM,01/28/2012 10:28:45 AM,01/28/2012 10:30:50 AM,01/28/2012 10:43:00 AM,01/28/2012 10:46:23 AM,01/28/2012 11:07:51 AM,Code 2 Transport,01/28/2012 11:46:03 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",120280127-KM01 +120320357,E25,12010732,Medical Incident,02/01/2012,02/01/2012,02/01/2012 10:32:06 PM,02/01/2012 10:32:27 PM,02/01/2012 10:33:17 PM,04/25/2016 02:00:20 PM,02/01/2012 10:36:11 PM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/01/2012 10:47:38 PM,600 Block of MENDELL ST,SF,94124,B10,25,6521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7392640592313, -122.386060486785)",120320357-E25 +133440157,E36,13116631,Medical Incident,12/10/2013,12/10/2013,12/10/2013 10:39:12 AM,12/10/2013 10:41:46 AM,12/10/2013 10:42:33 AM,12/10/2013 10:42:45 AM,12/10/2013 10:48:32 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 10:52:27 AM,200 Block of VALENCIA ST,SF,94103,B02,36,5126,2,3,3,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7690117510129, -122.422352223863)",133440157-E36 +132520364,AM10,13085338,Medical Incident,09/09/2013,09/09/2013,09/09/2013 11:53:18 PM,09/09/2013 11:54:44 PM,09/09/2013 11:55:09 PM,09/09/2013 11:55:59 PM,09/10/2013 12:02:53 AM,09/10/2013 12:30:40 AM,09/10/2013 12:45:27 AM,Code 2 Transport,09/10/2013 01:21:11 AM,100 Block of BOUTWELL ST,SF,94124,B10,42,6364,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7348185901885, -122.405480344355)",132520364-AM10 +160532598,59,16021315,Medical Incident,02/22/2016,02/22/2016,02/22/2016 05:22:43 PM,02/22/2016 05:22:43 PM,02/22/2016 05:24:10 PM,02/22/2016 05:24:10 PM,02/22/2016 05:43:10 PM,02/22/2016 05:48:39 PM,02/22/2016 06:15:24 PM,Code 2 Transport,02/22/2016 06:34:43 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160532598-59 +160883514,AM16,16035108,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:21:18 PM,03/28/2016 08:21:18 PM,03/28/2016 08:21:32 PM,03/28/2016 08:22:00 PM,03/28/2016 08:31:33 PM,03/28/2016 08:42:42 PM,03/28/2016 09:09:07 PM,Code 2 Transport,03/28/2016 09:37:51 PM,0 Block of LIPPARD AVE,San Francisco,94131,B09,26,8176,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Glen Park,"(37.7343228660254, -122.435628143027)",160883514-AM16 +131320153,67,13044559,Medical Incident,05/12/2013,05/12/2013,05/12/2013 01:40:51 PM,05/12/2013 01:41:19 PM,05/12/2013 01:41:29 PM,05/12/2013 01:41:38 PM,05/12/2013 01:47:17 PM,05/12/2013 02:00:27 PM,05/12/2013 02:13:36 PM,Code 2 Transport,05/12/2013 02:39:35 PM,100 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",131320153-67 +111420347,60,11047326,Medical Incident,05/22/2011,05/22/2011,05/22/2011 08:22:17 PM,05/22/2011 08:23:35 PM,05/22/2011 08:25:31 PM,04/25/2016 02:04:30 PM,05/22/2011 08:43:24 PM,05/22/2011 09:12:20 PM,05/22/2011 09:39:08 PM,Code 2 Transport,05/22/2011 10:15:05 PM,300 Block of BALTIMORE WAY,SF,94112,B09,43,6228,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7087981055096, -122.437985362628)",111420347-60 +110280135,65,11009181,Medical Incident,01/28/2011,01/28/2011,01/28/2011 11:28:27 AM,01/28/2011 11:28:42 AM,01/28/2011 11:29:17 AM,01/28/2011 11:29:29 AM,01/28/2011 11:37:12 AM,01/28/2011 11:49:50 AM,01/28/2011 12:02:08 PM,Code 2 Transport,01/28/2011 12:41:31 PM,1300 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",110280135-65 +112810185,E42,11093003,Structure Fire,10/08/2011,10/08/2011,10/08/2011 12:39:42 PM,10/08/2011 12:40:12 PM,10/08/2011 12:40:29 PM,10/08/2011 12:42:20 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Other,10/08/2011 12:44:14 PM,0 Block of MARIST CT,SF,94124,B10,25,6556,3,3,3,true,,1,ENGINE,11,10,10,Bayview Hunters Point,"(37.7331127824761, -122.378240199244)",112810185-E42 +160211727,85,16008380,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:41:50 PM,01/21/2016 12:41:50 PM,01/21/2016 12:42:43 PM,01/21/2016 12:42:55 PM,01/21/2016 12:46:18 PM,01/21/2016 12:53:37 PM,01/21/2016 01:28:03 PM,Code 2 Transport,01/21/2016 02:14:05 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160211727-85 +102930020,RS1,10093313,Structure Fire,10/20/2010,10/19/2010,10/20/2010 01:57:38 AM,10/20/2010 01:59:08 AM,10/20/2010 01:59:15 AM,10/20/2010 02:01:07 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 02:03:25 AM,600 Block of WILLOW ST,SF,94115,B02,5,3431,3,3,3,true,,1,RESCUE SQUAD,10,2,5,Western Addition,"(37.7823648993622, -122.428294883003)",102930020-RS1 +160251618,82,16009915,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:04:31 PM,01/25/2016 12:07:46 PM,01/25/2016 12:07:59 PM,01/25/2016 12:09:18 PM,01/25/2016 12:14:29 PM,01/25/2016 12:33:45 PM,01/25/2016 12:48:13 PM,Code 2 Transport,01/25/2016 01:32:19 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160251618-82 +160620287,72,16024554,Medical Incident,03/02/2016,03/01/2016,03/02/2016 03:46:44 AM,03/02/2016 03:48:52 AM,03/02/2016 03:49:05 AM,03/02/2016 03:49:21 AM,03/02/2016 03:59:27 AM,03/02/2016 04:17:29 AM,03/02/2016 04:27:23 AM,Code 2 Transport,03/02/2016 05:08:51 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160620287-72 +112230252,T15,11073703,Vehicle Fire,08/11/2011,08/11/2011,08/11/2011 04:15:05 PM,08/11/2011 04:16:03 PM,08/11/2011 04:16:36 PM,08/11/2011 04:17:49 PM,08/11/2011 04:19:51 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Fire,08/11/2011 04:29:54 PM,200 Block of OCEAN AVE,SF,94112,B09,15,8311,3,3,3,false,,1,TRUCK,2,9,11,Outer Mission,"(37.7232033054721, -122.442927356983)",112230252-T15 +120260030,55,12008610,Medical Incident,01/26/2012,01/25/2012,01/26/2012 02:52:07 AM,01/26/2012 02:52:34 AM,01/26/2012 02:53:02 AM,01/26/2012 02:53:09 AM,01/26/2012 03:03:27 AM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,No Merit,01/26/2012 03:07:50 AM,GALVEZ AV/3RD ST,SF,94124,B10,25,6457,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7411076328457, -122.388475895082)",120260030-55 +132990386,E14,13101768,Structure Fire,10/26/2013,10/26/2013,10/26/2013 10:51:49 PM,10/26/2013 10:53:16 PM,10/26/2013 10:53:40 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/26/2013 10:56:04 PM,400 Block of 34TH AVE,SF,94121,B07,34,7247,3,3,3,true,Alarm,1,ENGINE,10,7,1,Outer Richmond,"(37.7806166653743, -122.494381116106)",132990386-E14 +160633758,76,16025276,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:11:04 PM,03/03/2016 10:11:41 PM,03/03/2016 10:11:54 PM,03/03/2016 10:12:01 PM,03/03/2016 10:14:14 PM,03/03/2016 10:25:08 PM,03/03/2016 10:28:31 PM,Code 3 Transport,03/03/2016 10:40:47 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784689282473, -122.414615262229)",160633758-76 +121250280,T14,12041591,Administrative,05/04/2012,05/04/2012,05/04/2012 05:26:20 PM,05/04/2012 05:26:34 PM,05/04/2012 05:26:46 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 05:27:10 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,3,3,3,false,,1,TRUCK,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",121250280-T14 +133550101,E17,13120594,Medical Incident,12/21/2013,12/21/2013,12/21/2013 08:00:14 AM,12/21/2013 08:02:09 AM,12/21/2013 08:02:39 AM,12/21/2013 08:04:04 AM,12/21/2013 08:08:43 AM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Other,12/21/2013 08:29:47 AM,1400 Block of OAKDALE AVE,SF,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.732955634816, -122.387590806117)",133550101-E17 +160782306,66,16031052,Medical Incident,03/18/2016,03/18/2016,03/18/2016 03:01:28 PM,03/18/2016 03:01:28 PM,03/18/2016 03:06:05 PM,03/18/2016 03:06:05 PM,03/18/2016 03:13:47 PM,03/18/2016 03:26:29 PM,03/18/2016 03:43:58 PM,Code 2 Transport,03/18/2016 03:58:45 PM,0 Block of GLADSTONE DR,San Francisco,94112,B09,32,5685,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Excelsior,"(37.7304026570113, -122.420306723417)",160782306-66 +130370352,RC3,13012847,Medical Incident,02/06/2013,02/06/2013,02/06/2013 10:41:31 PM,02/06/2013 10:42:39 PM,02/06/2013 10:44:41 PM,02/06/2013 10:45:49 PM,02/06/2013 10:53:29 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 11:12:54 PM,200 Block of ONONDAGA AVE,SF,94112,B09,15,8277,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7229961977161, -122.441961400944)",130370352-RC3 +160562207,61,16022417,Traffic Collision,02/25/2016,02/25/2016,02/25/2016 02:15:42 PM,02/25/2016 02:15:42 PM,02/25/2016 02:23:12 PM,02/25/2016 02:24:05 PM,02/25/2016 02:48:51 PM,02/25/2016 02:48:53 PM,02/25/2016 03:19:14 PM,Code 2 Transport,02/25/2016 04:34:35 PM,46TH AV/FULTON ST,San Francisco,94122,B07,34,7277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,7,7,1,Outer Richmond,"(37.7715424783159, -122.506685313329)",160562207-61 +111230310,B08,11040731,Structure Fire,05/03/2011,05/03/2011,05/03/2011 06:13:43 PM,05/03/2011 06:14:07 PM,05/03/2011 06:14:24 PM,05/03/2011 06:15:20 PM,05/03/2011 06:18:07 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 07:09:26 PM,2500 Block of 23RD AVE,SF,94116,B08,40,7442,3,3,3,false,,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7400685754574, -122.479713963677)",111230310-B08 +131970233,AM24,13066857,Medical Incident,07/16/2013,07/16/2013,07/16/2013 03:19:58 PM,07/16/2013 03:20:39 PM,07/16/2013 03:20:52 PM,07/16/2013 03:21:30 PM,07/16/2013 03:24:17 PM,07/16/2013 03:35:46 PM,07/16/2013 03:52:26 PM,Code 2 Transport,07/16/2013 04:22:06 PM,1100 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7870624915967, -122.419905427898)",131970233-AM24 +160440639,62,16017594,Medical Incident,02/13/2016,02/12/2016,02/13/2016 06:34:37 AM,02/13/2016 06:36:15 AM,02/13/2016 06:36:51 AM,02/13/2016 06:37:46 AM,02/13/2016 06:46:35 AM,02/13/2016 07:11:40 AM,02/13/2016 07:15:03 AM,Code 2 Transport,02/13/2016 07:58:43 AM,0 Block of NOB HILL PL,San Francisco,94108,B01,41,1413,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7914483957783, -122.410969541094)",160440639-62 +132300390,65,13077846,Medical Incident,08/18/2013,08/18/2013,08/18/2013 11:38:51 PM,08/18/2013 11:40:34 PM,08/18/2013 11:41:12 PM,08/18/2013 11:41:56 PM,08/18/2013 11:45:54 PM,08/19/2013 12:01:16 AM,08/19/2013 12:08:11 AM,Code 2 Transport,08/19/2013 12:43:40 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",132300390-65 +131310129,E19,13044190,Medical Incident,05/11/2013,05/11/2013,05/11/2013 09:37:00 AM,05/11/2013 09:39:18 AM,05/11/2013 09:39:56 AM,05/11/2013 09:40:58 AM,05/11/2013 10:08:01 AM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 10:08:17 AM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",131310129-E19 +160233472,56,16009331,Medical Incident,01/23/2016,01/23/2016,01/23/2016 09:18:07 PM,01/23/2016 09:19:14 PM,01/23/2016 09:19:59 PM,01/23/2016 09:20:36 PM,01/23/2016 09:26:32 PM,01/23/2016 09:37:21 PM,01/23/2016 09:48:32 PM,Code 2 Transport,01/23/2016 10:15:55 PM,LOMBARD ST/WEBSTER ST,San Francisco,94123,B04,16,3461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8000515477468, -122.434404699853)",160233472-56 +110650051,B10,11021340,Alarms,03/06/2011,03/05/2011,03/06/2011 02:22:38 AM,03/06/2011 02:23:25 AM,03/06/2011 02:25:45 AM,03/06/2011 02:27:13 AM,03/06/2011 02:30:11 AM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/06/2011 02:35:50 AM,500 Block of BARNEVELD AVE,SF,94124,B10,9,6427,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.74044593571, -122.404296869791)",110650051-B10 +113060155,E32,11101625,Medical Incident,11/02/2011,11/02/2011,11/02/2011 11:05:40 AM,11/02/2011 11:06:39 AM,11/02/2011 11:07:16 AM,11/02/2011 11:08:07 AM,11/02/2011 11:12:28 AM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 11:31:24 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",113060155-E32 +110930340,D3,11031020,Structure Fire,04/03/2011,04/03/2011,04/03/2011 09:16:36 PM,04/03/2011 09:18:31 PM,04/03/2011 09:18:54 PM,04/03/2011 09:20:20 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/03/2011 09:23:19 PM,4700 Block of 17TH ST,SF,94117,B05,12,5257,3,3,3,false,,1,CHIEF,11,5,5,Inner Sunset,"(37.7616324966478, -122.448445203867)",110930340-D3 +132790348,E28,13095038,Structure Fire,10/06/2013,10/06/2013,10/06/2013 06:08:23 PM,10/06/2013 06:10:19 PM,10/06/2013 06:10:34 PM,10/06/2013 06:11:40 PM,10/06/2013 06:13:08 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/06/2013 06:18:58 PM,POWELL ST/NORTH POINT ST,SF,94133,B01,28,1262,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8067580824981, -122.412141425527)",132790348-E28 +140580177,B07,14019559,Water Rescue,02/27/2014,02/27/2014,02/27/2014 12:38:15 PM,02/27/2014 12:39:33 PM,02/27/2014 12:40:18 PM,02/27/2014 12:41:28 PM,02/27/2014 12:46:42 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/27/2014 02:46:51 PM,400 Block of SEACLIFF AVE,SF,94121,B07,14,7232,3,3,3,false,Fire,1,CHIEF,4,7,2,Seacliff,"(37.7875454268637, -122.490200284081)",140580177-B07 +131820014,T16,13061858,Alarms,07/01/2013,06/30/2013,07/01/2013 12:39:59 AM,07/01/2013 12:41:30 AM,07/01/2013 12:41:42 AM,07/01/2013 12:43:00 AM,07/01/2013 12:46:29 AM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,07/01/2013 01:01:26 AM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,3,3,false,Alarm,1,TRUCK,2,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",131820014-T16 +132120166,86,13071648,Medical Incident,07/31/2013,07/31/2013,07/31/2013 12:41:23 PM,07/31/2013 12:44:16 PM,07/31/2013 12:45:13 PM,07/31/2013 12:45:19 PM,07/31/2013 01:02:43 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 01:06:13 PM,700 Block of RANDOLPH ST,SF,94132,B09,33,8417,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7143060404144, -122.4693501478)",132120166-86 +113460165,E08,11114775,Gas Leak (Natural and LP Gases),12/12/2011,12/12/2011,12/12/2011 11:47:42 AM,12/12/2011 11:49:08 AM,12/12/2011 11:49:41 AM,12/12/2011 11:51:29 AM,12/12/2011 11:52:20 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 12:06:40 PM,400 Block of TOWNSEND ST,SF,94107,B03,8,2236,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7744917897257, -122.398368544424)",113460165-E08 +102430222,94,10076663,Medical Incident,08/31/2010,08/31/2010,08/31/2010 01:48:26 PM,08/31/2010 01:49:05 PM,08/31/2010 01:49:40 PM,08/31/2010 01:49:51 PM,08/31/2010 01:53:06 PM,08/31/2010 02:08:58 PM,08/31/2010 02:19:35 PM,Code 2 Transport,08/31/2010 02:46:10 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",102430222-94 +160312874,AM08,16012282,Medical Incident,01/31/2016,01/31/2016,01/31/2016 05:57:00 PM,01/31/2016 05:57:48 PM,01/31/2016 05:58:00 PM,01/31/2016 05:58:36 PM,01/31/2016 06:04:19 PM,01/31/2016 06:08:10 PM,01/31/2016 06:27:39 PM,Code 2 Transport,01/31/2016 07:04:19 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160312874-AM08 +121860239,RC3,12062011,Medical Incident,07/04/2012,07/04/2012,07/04/2012 05:43:21 PM,07/04/2012 05:43:34 PM,07/04/2012 05:44:30 PM,07/04/2012 05:46:27 PM,07/04/2012 05:50:47 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 06:01:37 PM,1400 Block of SHAFTER AVE,SF,94124,B10,17,6571,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7294942313003, -122.387879447239)",121860239-RC3 +160830734,63,16032857,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:08:58 AM,03/23/2016 08:09:26 AM,03/23/2016 08:10:01 AM,03/23/2016 08:10:14 AM,03/23/2016 08:17:27 AM,03/23/2016 08:33:23 AM,03/23/2016 09:08:14 AM,Code 3 Transport,03/23/2016 09:40:38 AM,800 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",160830734-63 +123630358,E16,12121628,Medical Incident,12/28/2012,12/28/2012,12/28/2012 10:46:43 PM,12/28/2012 10:47:44 PM,12/28/2012 10:48:05 PM,12/28/2012 10:49:56 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 10:53:50 PM,1900 Block of JEFFERSON ST,SF,94123,B04,16,4216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.8044775553238, -122.444614636594)",123630358-E16 +132150278,RC2,13072692,Medical Incident,08/03/2013,08/03/2013,08/03/2013 04:44:39 PM,08/03/2013 04:45:50 PM,08/03/2013 04:48:11 PM,04/25/2016 01:51:29 PM,08/03/2013 04:49:16 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 04:55:38 PM,PARK PRESIDIO BL/GEARY BL,SF,94118,B07,31,7146,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",132150278-RC2 +160341197,52,16013328,Structure Fire,02/03/2016,02/03/2016,02/03/2016 10:41:53 AM,02/03/2016 10:41:53 AM,02/03/2016 10:45:54 AM,02/03/2016 10:46:11 AM,02/03/2016 10:51:51 AM,02/03/2016 11:13:04 AM,02/03/2016 11:23:52 AM,Code 2 Transport,02/03/2016 11:59:12 AM,MISSION ST/PERSIA AV,San Francisco,94112,B09,43,6121,3,3,3,true,Alarm,1,MEDIC,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",160341197-52 +122460032,T18,12081211,Structure Fire,09/02/2012,09/01/2012,09/02/2012 01:50:57 AM,09/02/2012 01:50:58 AM,09/02/2012 01:51:15 AM,09/02/2012 01:53:06 AM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 01:55:17 AM,23RD AV/IRVING ST,SF,94122,B08,22,7451,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7633730938478, -122.481408835625)",122460032-T18 +123600007,AM18,12120364,Medical Incident,12/25/2012,12/24/2012,12/25/2012 12:42:05 AM,12/25/2012 12:43:18 AM,12/25/2012 12:43:44 AM,12/25/2012 12:44:24 AM,12/25/2012 12:48:18 AM,12/25/2012 01:01:01 AM,12/25/2012 01:09:35 AM,Code 2 Transport,12/25/2012 01:32:58 AM,3100 Block of 16TH ST,SF,94103,B02,6,5235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7649058943352, -122.42298817064)",123600007-AM18 +130430014,T01,13014499,Structure Fire,02/12/2013,02/11/2013,02/12/2013 01:53:22 AM,02/12/2013 01:54:41 AM,02/12/2013 01:54:59 AM,02/12/2013 01:57:01 AM,02/12/2013 01:58:55 AM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,02/12/2013 02:01:36 AM,700 Block of 4TH ST,SF,94107,B03,8,2224,3,3,3,false,Alarm,1,TRUCK,6,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",130430014-T01 +140440195,72,14014960,Medical Incident,02/13/2014,02/13/2014,02/13/2014 11:25:46 AM,02/13/2014 11:26:45 AM,02/13/2014 11:28:53 AM,02/13/2014 11:30:37 AM,02/13/2014 11:32:30 AM,02/13/2014 11:45:19 AM,02/13/2014 11:58:54 AM,Code 2 Transport,02/13/2014 12:23:10 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",140440195-72 +102360083,E25,10074242,Electrical Hazard,08/24/2010,08/23/2010,08/24/2010 07:50:18 AM,08/24/2010 07:50:18 AM,08/24/2010 07:50:44 AM,08/24/2010 07:53:14 AM,08/24/2010 07:55:51 AM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 08:09:59 AM,400 Block of 23RD ST,SF,94107,B10,25,2731,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7555201502879, -122.384993438991)",102360083-E25 +120340195,E06,12011274,Medical Incident,02/03/2012,02/03/2012,02/03/2012 12:51:43 PM,02/03/2012 12:52:34 PM,02/03/2012 12:54:44 PM,02/03/2012 12:56:44 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/03/2012 12:57:29 PM,1800 Block of MISSION ST,SF,94103,B02,36,5279,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7674778738529, -122.419834389169)",120340195-E06 +121530127,94,12050591,Medical Incident,06/01/2012,06/01/2012,06/01/2012 11:31:12 AM,06/01/2012 11:32:52 AM,06/01/2012 11:33:21 AM,06/01/2012 11:33:42 AM,06/01/2012 11:40:51 AM,06/01/2012 12:03:29 PM,06/01/2012 12:31:32 PM,Code 2 Transport,06/01/2012 12:52:41 PM,1000 Block of SUNNYDALE AVE,SF,94134,B09,44,6253,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7107870868247, -122.411792052492)",121530127-94 +120470055,E34,12015539,Outside Fire,02/16/2012,02/15/2012,02/16/2012 07:24:56 AM,02/16/2012 07:26:20 AM,02/16/2012 07:26:33 AM,02/16/2012 07:27:46 AM,02/16/2012 07:30:37 AM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Fire,02/16/2012 07:34:27 AM,LA PLAYA ST/CABRILLO ST,SF,94121,B07,34,7277,3,3,3,false,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",120470055-E34 +130060147,E08,13002042,Medical Incident,01/06/2013,01/06/2013,01/06/2013 12:35:44 PM,01/06/2013 12:36:26 PM,01/06/2013 12:36:53 PM,01/06/2013 12:37:51 PM,01/06/2013 12:41:03 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 12:46:11 PM,0 Block of MOSS ST,SF,94103,B03,1,2313,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7778360253922, -122.408013948834)",130060147-E08 +111290238,91,11042702,Medical Incident,05/09/2011,05/09/2011,05/09/2011 04:24:33 PM,05/09/2011 04:26:29 PM,05/09/2011 04:26:37 PM,05/09/2011 04:27:02 PM,05/09/2011 04:34:41 PM,05/09/2011 04:51:04 PM,05/09/2011 05:02:27 PM,Code 3 Transport,05/09/2011 05:48:03 PM,100 Block of LUNADO WAY,SF,94127,B09,19,8441,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7248250362492, -122.471176049374)",111290238-91 +103080076,E09,10098605,Alarms,11/04/2010,11/03/2010,11/04/2010 07:50:02 AM,11/04/2010 07:50:54 AM,11/04/2010 07:51:17 AM,11/04/2010 07:53:54 AM,11/04/2010 07:55:44 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 08:10:46 AM,100 Block of HOLLADAY AVE,SF,94110,B06,9,5671,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7469258373327, -122.405245459643)",103080076-E09 +160813420,61,16032340,Medical Incident,03/21/2016,03/21/2016,03/21/2016 07:55:06 PM,03/21/2016 07:55:31 PM,03/21/2016 07:55:46 PM,03/21/2016 07:56:04 PM,03/21/2016 08:02:49 PM,03/21/2016 08:14:45 PM,03/21/2016 08:28:34 PM,Code 2 Transport,03/21/2016 08:58:14 PM,0 Block of NORTHRIDGE RD,San Francisco,94124,B10,17,6633,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.730710372177, -122.375579669518)",160813420-61 +132350320,E16,13079420,Medical Incident,08/23/2013,08/23/2013,08/23/2013 07:27:46 PM,08/23/2013 07:29:38 PM,08/23/2013 07:51:34 PM,08/23/2013 07:52:55 PM,08/23/2013 07:54:51 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/23/2013 08:09:23 PM,1500 Block of FRANCISCO ST,SF,94123,B04,16,3351,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8025340608773, -122.430687416035)",132350320-E16 +131670294,E39,13056794,Medical Incident,06/16/2013,06/16/2013,06/16/2013 06:40:56 PM,06/16/2013 06:41:50 PM,06/16/2013 06:42:47 PM,06/16/2013 06:43:57 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/16/2013 06:48:02 PM,2100 Block of 27TH AVE,SF,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7473313113651, -122.484657780818)",131670294-E39 +132770420,RC3,13094279,Medical Incident,10/04/2013,10/04/2013,10/04/2013 08:25:20 PM,10/04/2013 08:29:36 PM,10/04/2013 08:29:45 PM,10/04/2013 08:30:40 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 08:37:03 PM,KEITH ST/PALOU AV,SF,94124,B10,17,6551,E,E,3,true,Non Life-threatening,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7318574704956, -122.387166513569)",132770420-RC3 +160370566,88,16014551,Medical Incident,02/06/2016,02/05/2016,02/06/2016 03:16:48 AM,02/06/2016 03:16:48 AM,02/06/2016 03:17:23 AM,02/06/2016 03:17:36 AM,02/06/2016 03:24:35 AM,02/06/2016 04:03:18 AM,02/06/2016 04:12:13 AM,Code 2 Transport,02/06/2016 04:26:41 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160370566-88 +160050038,AM16,16001812,Medical Incident,01/05/2016,01/04/2016,01/05/2016 12:18:16 AM,01/05/2016 12:21:20 AM,01/05/2016 12:22:26 AM,01/05/2016 12:23:12 AM,01/05/2016 12:28:17 AM,01/05/2016 12:35:57 AM,01/05/2016 12:40:58 AM,Code 2 Transport,01/05/2016 01:02:22 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,A,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160050038-AM16 +123510230,KM02,12117434,Medical Incident,12/16/2012,12/16/2012,12/16/2012 03:02:02 PM,12/16/2012 03:02:15 PM,12/16/2012 03:05:35 PM,12/16/2012 03:08:48 PM,12/16/2012 03:20:24 PM,12/16/2012 03:29:52 PM,12/16/2012 03:49:14 PM,Code 2 Transport,12/16/2012 04:07:47 PM,400 Block of ARGONAUT AVE,SF,94134,B09,44,6248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7093100167059, -122.414908310861)",123510230-KM02 +160310967,KM06,16012104,Medical Incident,01/31/2016,01/31/2016,01/31/2016 09:25:34 AM,01/31/2016 09:25:34 AM,01/31/2016 09:26:52 AM,01/31/2016 09:27:39 AM,01/31/2016 09:34:29 AM,01/31/2016 09:55:29 AM,01/31/2016 10:04:58 AM,Code 2 Transport,01/31/2016 10:46:17 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160310967-KM06 +130720036,67,13023889,Medical Incident,03/13/2013,03/12/2013,03/13/2013 03:16:16 AM,03/13/2013 03:16:45 AM,03/13/2013 03:17:16 AM,03/13/2013 03:18:26 AM,03/13/2013 03:20:02 AM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 03:32:22 AM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",130720036-67 +132730295,T15,13092861,Structure Fire,09/30/2013,09/30/2013,09/30/2013 05:29:22 PM,09/30/2013 05:29:22 PM,09/30/2013 05:29:42 PM,09/30/2013 05:30:53 PM,09/30/2013 05:32:46 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 05:39:19 PM,300 Block of SENECA AVE,SF,94112,B09,15,833,3,3,3,false,Alarm,1,TRUCK,1,9,11,Outer Mission,"(37.7214113471419, -122.445147338302)",132730295-T15 +112450013,E41,11080630,Structure Fire,09/02/2011,09/01/2011,09/02/2011 01:20:29 AM,09/02/2011 01:20:29 AM,09/02/2011 01:20:34 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 01:23:34 AM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,,1,ENGINE,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",112450013-E41 +160123704,76,16004977,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:17:56 PM,01/12/2016 10:19:10 PM,01/12/2016 10:19:30 PM,01/12/2016 10:19:40 PM,01/12/2016 10:48:50 PM,01/12/2016 10:48:51 PM,01/12/2016 11:06:02 PM,Code 2 Transport,01/12/2016 11:29:55 PM,0 Block of SOUTH PARK,San Francisco,94107,B03,8,2153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",160123704-76 +110720340,72,11023856,Medical Incident,03/13/2011,03/13/2011,03/13/2011 10:27:50 PM,03/13/2011 10:28:31 PM,03/13/2011 10:28:47 PM,03/13/2011 10:31:05 PM,03/13/2011 10:33:06 PM,03/13/2011 10:52:15 PM,03/13/2011 11:08:47 PM,Code 2 Transport,03/13/2011 11:28:00 PM,700 Block of VICTORIA ST,SF,94127,B09,15,8443,3,1,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7241304877603, -122.464177585076)",110720340-72 +160333731,88,16013197,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:54:08 PM,02/02/2016 11:54:44 PM,02/02/2016 11:55:04 PM,02/02/2016 11:56:06 PM,02/02/2016 11:59:11 PM,02/03/2016 12:16:23 AM,02/03/2016 12:23:43 AM,Code 2 Transport,02/03/2016 01:00:05 AM,300 Block of WILLARD NORTH ST,San Francisco,94118,B07,21,4561,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7750277510342, -122.456309855191)",160333731-88 +140840195,72,14028319,Medical Incident,03/25/2014,03/25/2014,03/25/2014 01:56:14 PM,03/25/2014 01:57:26 PM,03/25/2014 02:02:05 PM,03/25/2014 02:02:12 PM,03/25/2014 02:11:34 PM,03/25/2014 02:36:40 PM,03/25/2014 02:50:57 PM,Code 2 Transport,03/25/2014 03:17:57 PM,200 Block of 13TH ST,SAN FRANCISCO,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",140840195-72 +120040106,85,12001334,Medical Incident,01/04/2012,01/04/2012,01/04/2012 09:50:44 AM,01/04/2012 09:53:09 AM,01/04/2012 09:53:50 AM,01/04/2012 09:59:06 AM,01/04/2012 10:03:27 AM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,Other,01/04/2012 11:10:23 AM,300 Block of 3RD ST,SF,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7833526602624, -122.398485675312)",120040106-85 +160580151,AM22,16022953,Medical Incident,02/27/2016,02/26/2016,02/27/2016 01:06:59 AM,02/27/2016 01:07:42 AM,02/27/2016 01:08:16 AM,02/27/2016 01:08:46 AM,02/27/2016 01:19:41 AM,02/27/2016 01:24:39 AM,02/27/2016 01:35:13 AM,Code 2 Transport,02/27/2016 02:08:34 AM,1000 Block of LARKIN,,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7872715203341, -122.418249647967)",160580151-AM22 +140440086,E07,14014884,Alarms,02/13/2014,02/12/2014,02/13/2014 07:56:45 AM,02/13/2014 07:57:56 AM,02/13/2014 07:58:22 AM,02/13/2014 08:00:15 AM,02/13/2014 08:02:34 AM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/13/2014 08:24:32 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",140440086-E07 +132730304,E05,13092869,Medical Incident,09/30/2013,09/30/2013,09/30/2013 05:55:44 PM,09/30/2013 05:58:47 PM,09/30/2013 06:06:44 PM,09/30/2013 06:07:51 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 06:07:54 PM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",132730304-E05 +112200037,82,11072583,Medical Incident,08/08/2011,08/07/2011,08/08/2011 05:53:33 AM,08/08/2011 05:55:53 AM,08/08/2011 05:56:21 AM,08/08/2011 05:56:50 AM,08/08/2011 05:58:32 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Against Medical Advice,08/08/2011 06:42:56 AM,1800 Block of CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,true,,1,MEDIC,1,4,2,Western Addition,"(37.7900019443199, -122.424784565831)",112200037-82 +133100044,E28,13105280,Structure Fire,11/06/2013,11/05/2013,11/06/2013 06:34:21 AM,11/06/2013 06:35:14 AM,11/06/2013 06:35:29 AM,11/06/2013 06:36:46 AM,11/06/2013 06:37:38 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/06/2013 06:53:54 AM,800 Block of FILBERT ST,SF,94133,B01,28,1436,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.8009158809974, -122.413492014536)",133100044-E28 +132770202,E13,13094094,Medical Incident,10/04/2013,10/04/2013,10/04/2013 12:51:58 PM,10/04/2013 12:52:59 PM,10/04/2013 12:53:30 PM,10/04/2013 12:54:05 PM,10/04/2013 12:54:38 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 01:04:11 PM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7933243681385, -122.4027937497)",132770202-E13 +112690066,99,11088825,Medical Incident,09/26/2011,09/26/2011,09/26/2011 08:03:15 AM,09/26/2011 08:04:47 AM,09/26/2011 08:05:34 AM,09/26/2011 08:06:02 AM,09/26/2011 08:22:11 AM,09/26/2011 09:26:43 AM,04/25/2016 02:02:28 PM,Code 2 Transport,09/26/2011 09:26:49 AM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,1,1,2,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",112690066-99 +112200085,55,11072620,Structure Fire,08/08/2011,08/08/2011,08/08/2011 09:14:22 AM,08/08/2011 09:14:50 AM,08/08/2011 09:15:00 AM,08/08/2011 09:15:40 AM,08/08/2011 09:26:29 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 09:37:16 AM,500 Block of 47TH AVE,SF,94121,B07,34,7276,3,3,3,true,,1,MEDIC,7,7,1,Outer Richmond,"(37.7780563534045, -122.508161525398)",112200085-55 +121550281,E08,12051402,Structure Fire,06/03/2012,06/03/2012,06/03/2012 06:16:18 PM,06/03/2012 06:16:19 PM,06/03/2012 06:16:36 PM,06/03/2012 06:17:01 PM,06/03/2012 06:19:00 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 06:19:10 PM,3RD ST/BRYANT ST,SF,94107,B03,8,2174,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7813212571676, -122.395843500166)",121550281-E08 +112980177,96,11098849,Medical Incident,10/25/2011,10/25/2011,10/25/2011 11:57:35 AM,10/25/2011 11:57:36 AM,10/25/2011 11:57:36 AM,10/25/2011 12:00:14 PM,10/25/2011 12:04:24 PM,10/25/2011 12:25:41 PM,10/25/2011 12:47:37 PM,Code 2 Transport,10/25/2011 01:11:02 PM,5800 Block of 3RD ST,SF,94124,B10,17,6537,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7247633708506, -122.394719523533)",112980177-96 +102740230,E36,10087044,Medical Incident,10/01/2010,10/01/2010,10/01/2010 03:21:26 PM,10/01/2010 03:22:42 PM,10/01/2010 03:25:03 PM,10/01/2010 03:38:31 PM,10/01/2010 03:26:26 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 03:58:47 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",102740230-E36 +160751634,AM12,16029699,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:25:52 PM,03/15/2016 12:27:06 PM,03/15/2016 12:27:28 PM,03/15/2016 12:28:35 PM,03/15/2016 12:30:50 PM,03/15/2016 01:05:13 PM,03/15/2016 01:27:52 PM,Code 2 Transport,03/15/2016 02:07:05 PM,1000 Block of MCALLISTER ST,San Francisco,94102,B02,5,3425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",160751634-AM12 +102410057,E03,10075922,Structure Fire,08/29/2010,08/28/2010,08/29/2010 05:26:44 AM,08/29/2010 05:26:44 AM,08/29/2010 05:26:53 AM,08/29/2010 05:28:36 AM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,04/25/2016 02:08:51 PM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",102410057-E03 +113020111,54,11100140,Medical Incident,10/29/2011,10/29/2011,10/29/2011 08:21:45 AM,10/29/2011 08:22:31 AM,10/29/2011 08:22:45 AM,10/29/2011 08:23:20 AM,04/25/2016 02:01:55 PM,10/29/2011 08:37:59 AM,10/29/2011 08:46:31 AM,Code 2 Transport,10/29/2011 09:15:43 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",113020111-54 +160270571,53,16010561,Medical Incident,01/27/2016,01/26/2016,01/27/2016 07:27:37 AM,01/27/2016 07:29:32 AM,01/27/2016 07:30:05 AM,01/27/2016 07:30:15 AM,01/27/2016 07:34:09 AM,01/27/2016 07:56:29 AM,01/27/2016 08:06:30 AM,Code 2 Transport,01/27/2016 09:20:53 AM,300 Block of CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7829589368788, -122.462810653671)",160270571-53 +110110276,T13,11003755,Medical Incident,01/11/2011,01/11/2011,01/11/2011 06:38:41 PM,01/11/2011 06:39:03 PM,01/11/2011 06:40:20 PM,01/11/2011 06:51:04 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/11/2011 06:51:55 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,2,3,3,false,,1,TRUCK,6,1,3,North Beach,"(37.7982249345487, -122.404282497745)",110110276-T13 +130650012,KM07,13021621,Medical Incident,03/06/2013,03/05/2013,03/06/2013 01:14:24 AM,03/06/2013 01:15:53 AM,03/06/2013 01:16:12 AM,03/06/2013 01:19:41 AM,03/06/2013 01:20:33 AM,03/06/2013 01:27:33 AM,03/06/2013 01:48:30 AM,Code 2 Transport,03/06/2013 02:26:16 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",130650012-KM07 +132530197,E18,13085491,Medical Incident,09/10/2013,09/10/2013,09/10/2013 12:49:43 PM,09/10/2013 12:50:56 PM,09/10/2013 12:51:48 PM,09/10/2013 12:52:56 PM,09/10/2013 12:53:49 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 01:14:36 PM,2100 Block of 32ND AVE,SF,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.747100816678, -122.489874704565)",132530197-E18 +103350220,E17,10107212,Medical Incident,12/01/2010,12/01/2010,12/01/2010 02:55:24 PM,12/01/2010 02:55:24 PM,12/01/2010 02:55:32 PM,12/01/2010 02:56:38 PM,12/01/2010 02:59:04 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/01/2010 03:04:58 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",103350220-E17 +102930070,B08,10093360,Alarms,10/20/2010,10/20/2010,10/20/2010 08:11:22 AM,10/20/2010 08:12:38 AM,10/20/2010 08:14:23 AM,10/20/2010 08:15:19 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 08:18:04 AM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,3,3,3,false,,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",102930070-B08 +112830141,T02,11093639,Alarms,10/10/2011,10/10/2011,10/10/2011 11:33:09 AM,10/10/2011 11:34:31 AM,10/10/2011 11:34:35 AM,10/10/2011 11:36:22 AM,10/10/2011 11:38:27 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 11:45:00 AM,1200 Block of GRANT AVE,SF,94133,B01,2,1311,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.7983293338887, -122.407047477146)",112830141-T02 +120880041,74,12029072,Medical Incident,03/28/2012,03/27/2012,03/28/2012 03:37:54 AM,03/28/2012 03:38:14 AM,03/28/2012 03:38:37 AM,03/28/2012 03:38:49 AM,03/28/2012 03:50:03 AM,03/28/2012 03:54:31 AM,03/28/2012 04:06:01 AM,Code 2 Transport,03/28/2012 04:33:16 AM,200 Block of CAMERON WAY,SF,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.720440433346, -122.388366313776)",120880041-74 +130830177,KM09,13027759,Medical Incident,03/24/2013,03/24/2013,03/24/2013 02:15:13 PM,03/24/2013 02:16:36 PM,03/24/2013 02:17:14 PM,03/24/2013 02:19:42 PM,03/24/2013 02:20:33 PM,03/24/2013 02:32:46 PM,03/24/2013 02:42:55 PM,Code 2 Transport,03/24/2013 03:10:22 PM,2300 Block of NORIEGA ST,SF,94122,B08,18,7515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7537523918863, -122.488797729304)",130830177-KM09 +111800139,B02,11059392,Alarms,06/29/2011,06/29/2011,06/29/2011 12:02:01 PM,06/29/2011 12:03:27 PM,06/29/2011 12:03:33 PM,06/29/2011 12:05:38 PM,06/29/2011 12:07:58 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Fire,06/29/2011 12:08:01 PM,100 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,false,,1,CHIEF,2,2,8,Castro/Upper Market,"(37.7681979747465, -122.429080297019)",111800139-B02 +120340055,AM02,12011157,Medical Incident,02/03/2012,02/02/2012,02/03/2012 06:50:06 AM,02/03/2012 06:51:18 AM,02/03/2012 06:51:38 AM,02/03/2012 06:52:16 AM,02/03/2012 06:54:35 AM,02/03/2012 07:01:41 AM,02/03/2012 07:11:14 AM,Code 2 Transport,02/03/2012 07:33:18 AM,400 Block of SHOTWELL ST,SF,94110,B02,7,5424,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.761229577891, -122.416072364125)",120340055-AM02 +112400157,92,11079181,Medical Incident,08/28/2011,08/28/2011,08/28/2011 10:58:45 AM,08/28/2011 10:59:01 AM,08/28/2011 11:00:28 AM,08/28/2011 11:00:40 AM,08/28/2011 11:11:46 AM,08/28/2011 11:23:54 AM,08/28/2011 11:44:11 AM,Code 2 Transport,08/28/2011 12:00:33 PM,0 Block of DOUBLE ROCK ST,SF,94124,B10,17,6613,3,1,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7204658651293, -122.387775002515)",112400157-92 +131810119,E03,13061560,Structure Fire,06/30/2013,06/29/2013,06/30/2013 07:54:09 AM,06/30/2013 07:54:09 AM,06/30/2013 07:54:18 AM,06/30/2013 07:55:47 AM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,Other,06/30/2013 07:58:00 AM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",131810119-E03 +140650120,B01,14021914,Structure Fire,03/06/2014,03/06/2014,03/06/2014 09:43:07 AM,03/06/2014 09:44:07 AM,03/06/2014 09:45:05 AM,03/06/2014 09:46:32 AM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Fire,03/06/2014 09:50:07 AM,1200 Block of LA PLAYA,SAN FRANCISCO,94122,B08,23,7722,3,3,3,false,Alarm,1,CHIEF,10,8,4,Sunset/Parkside,"(37.7630908951705, -122.509266553866)",140650120-B01 +112090305,AM08,11069109,Medical Incident,07/28/2011,07/28/2011,07/28/2011 06:58:48 PM,07/28/2011 06:58:52 PM,07/28/2011 06:59:50 PM,07/28/2011 07:01:03 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Unable to Locate,07/28/2011 07:12:36 PM,100 Block of 7TH ST,SF,94103,B03,8,2312,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7790372933741, -122.41062000696)",112090305-AM08 +131790453,E31,13061032,Medical Incident,06/28/2013,06/28/2013,06/28/2013 11:05:25 PM,06/28/2013 11:06:21 PM,06/28/2013 11:06:48 PM,06/28/2013 11:08:20 PM,06/28/2013 11:09:56 PM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/28/2013 11:20:58 PM,4700 Block of CALIFORNIA ST,SF,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7846996077954, -122.468305863552)",131790453-E31 +113030004,87,11100397,Medical Incident,10/30/2011,10/29/2011,10/30/2011 12:03:49 AM,10/30/2011 12:05:16 AM,10/30/2011 12:05:34 AM,10/30/2011 12:08:00 AM,10/30/2011 12:10:28 AM,10/30/2011 12:33:11 AM,10/30/2011 12:47:43 AM,Code 2 Transport,10/30/2011 01:05:09 AM,100 Block of KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",113030004-87 +160071251,KM02,16002788,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:41:58 AM,01/07/2016 10:43:54 AM,01/07/2016 10:46:25 AM,01/07/2016 10:48:51 AM,01/07/2016 10:51:49 AM,01/07/2016 10:59:52 AM,01/07/2016 11:15:32 AM,Code 2 Transport,01/07/2016 11:49:49 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",160071251-KM02 +160650755,61,16025852,Medical Incident,03/05/2016,03/04/2016,03/05/2016 07:38:08 AM,03/05/2016 07:38:34 AM,03/05/2016 07:38:52 AM,03/05/2016 07:39:49 AM,03/05/2016 07:49:06 AM,03/05/2016 08:07:44 AM,03/05/2016 08:27:33 AM,Code 2 Transport,03/05/2016 09:01:53 AM,HOWARD ST/2ND ST,San Francisco,94105,B03,1,2146,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7867789486792, -122.398256963317)",160650755-61 +130460378,RS1,13015768,Medical Incident,02/15/2013,02/15/2013,02/15/2013 06:59:20 PM,02/15/2013 07:01:31 PM,02/15/2013 07:01:56 PM,02/15/2013 07:02:22 PM,02/15/2013 07:04:47 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 07:08:01 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,E,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7826911213472, -122.409536662692)",130460378-RS1 +132140104,B09,13072203,Structure Fire,08/02/2013,08/02/2013,08/02/2013 09:53:33 AM,08/02/2013 09:53:34 AM,08/02/2013 09:53:50 AM,08/02/2013 09:54:12 AM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Fire,08/02/2013 09:58:53 AM,800 Block of PRAGUE ST,SF,94112,B09,43,622,3,3,3,false,Alarm,1,CHIEF,3,9,11,Excelsior,"(37.7104309664976, -122.434220514636)",132140104-B09 +132560004,89,13086388,Medical Incident,09/13/2013,09/12/2013,09/13/2013 12:29:38 AM,09/13/2013 12:30:01 AM,09/13/2013 12:31:25 AM,09/13/2013 12:31:49 AM,09/13/2013 12:37:46 AM,09/13/2013 12:57:59 AM,09/13/2013 01:18:21 AM,Code 2 Transport,09/13/2013 01:51:47 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",132560004-89 +140410368,E01,14014080,Medical Incident,02/10/2014,02/10/2014,02/10/2014 07:15:23 PM,02/10/2014 07:21:28 PM,02/10/2014 07:22:51 PM,02/10/2014 07:24:33 PM,02/10/2014 07:26:13 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 07:44:05 PM,200 Block of SHIPLEY ST,SF,94107,B03,1,2244,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.779377841254, -122.403313163388)",140410368-E01 +103360296,E03,10107576,Medical Incident,12/02/2010,12/02/2010,12/02/2010 06:11:35 PM,12/02/2010 06:16:16 PM,12/02/2010 06:17:02 PM,04/25/2016 02:07:19 PM,12/02/2010 06:20:15 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/02/2010 06:32:16 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",103360296-E03 +131180248,E03,13039751,Medical Incident,04/28/2013,04/28/2013,04/28/2013 04:14:58 PM,04/28/2013 04:17:58 PM,04/28/2013 04:18:22 PM,04/28/2013 04:19:42 PM,04/28/2013 04:20:59 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/28/2013 04:23:55 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131180248-E03 +112620276,AM12,11086529,Medical Incident,09/19/2011,09/19/2011,09/19/2011 03:29:25 PM,09/19/2011 03:29:30 PM,09/19/2011 03:31:56 PM,09/19/2011 03:32:47 PM,09/19/2011 03:41:55 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Patient Declined Transport,09/19/2011 04:12:57 PM,32ND AV/GEARY BL,SF,94121,B07,14,724,2,2,2,false,,1,PRIVATE,1,7,1,Outer Richmond,"(37.7797469488678, -122.492232287419)",112620276-AM12 +140670081,AM04,14022606,Medical Incident,03/08/2014,03/07/2014,03/08/2014 07:36:51 AM,03/08/2014 07:37:12 AM,03/08/2014 07:38:27 AM,03/08/2014 07:39:01 AM,03/08/2014 08:02:47 AM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Patient Declined Transport,03/08/2014 08:02:54 AM,0 Block of WASHBURN ST,SAN FRANCISCO,94103,B02,36,2336,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",140670081-AM04 +140180245,B02,14006231,Alarms,01/18/2014,01/18/2014,01/18/2014 03:15:52 PM,01/18/2014 03:16:53 PM,01/18/2014 03:17:21 PM,01/18/2014 03:18:47 PM,01/18/2014 03:20:40 PM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/18/2014 03:28:36 PM,200 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,false,Alarm,1,CHIEF,1,2,8,Castro/Upper Market,"(37.766007030875, -122.426668982689)",140180245-B02 +160391577,KM11,16015600,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:15:18 PM,02/08/2016 12:16:01 PM,02/08/2016 12:17:27 PM,02/08/2016 12:18:04 PM,02/08/2016 12:30:09 PM,02/08/2016 12:40:38 PM,02/08/2016 12:59:06 PM,Code 2 Transport,02/08/2016 01:24:24 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160391577-KM11 +160343746,AM24,16013622,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:08:25 PM,02/03/2016 11:09:04 PM,02/03/2016 11:10:06 PM,02/03/2016 11:11:30 PM,02/03/2016 11:16:22 PM,02/03/2016 11:32:31 PM,02/03/2016 11:50:50 PM,Code 2 Transport,02/04/2016 12:27:00 AM,900 Block of DOUGLASS ST,San Francisco,94114,B06,24,5542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.749051492923, -122.438214092414)",160343746-AM24 +160081871,63,16003243,Medical Incident,01/08/2016,01/08/2016,01/08/2016 01:20:18 PM,01/08/2016 01:22:37 PM,01/08/2016 01:23:52 PM,01/08/2016 01:24:02 PM,01/08/2016 01:39:57 PM,01/08/2016 01:59:50 PM,01/08/2016 02:10:48 PM,Code 2 Transport,01/08/2016 02:49:22 PM,1100 Block of BATTERY ST,San Francisco,94111,B01,13,1153,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.8018375690837, -122.401773002011)",160081871-63 +133300355,AM22,13112213,Medical Incident,11/26/2013,11/26/2013,11/26/2013 11:23:15 PM,11/26/2013 11:25:27 PM,11/26/2013 11:27:18 PM,11/26/2013 11:28:12 PM,11/26/2013 11:46:41 PM,11/26/2013 11:55:09 PM,11/27/2013 12:08:17 AM,Code 2 Transport,11/27/2013 12:32:28 AM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Mission,"(37.7536444586415, -122.406325430802)",133300355-AM22 +160410193,AM18,16016278,Medical Incident,02/10/2016,02/09/2016,02/10/2016 01:45:54 AM,02/10/2016 01:49:22 AM,02/10/2016 01:49:56 AM,02/10/2016 01:50:44 AM,02/10/2016 01:54:55 AM,02/10/2016 02:04:39 AM,02/10/2016 02:33:10 AM,Code 2 Transport,02/10/2016 02:48:27 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160410193-AM18 +113510007,E39,11116326,Medical Incident,12/17/2011,12/16/2011,12/17/2011 12:19:33 AM,12/17/2011 12:19:33 AM,12/17/2011 12:20:05 AM,12/17/2011 12:22:13 AM,12/17/2011 12:27:31 AM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/17/2011 12:46:02 AM,500 Block of MONTEREY BLVD,SF,94127,B09,15,8235,3,2,2,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7316434245908, -122.448078912384)",113510007-E39 +103310041,E03,10105846,Medical Incident,11/27/2010,11/26/2010,11/27/2010 02:56:35 AM,11/27/2010 02:56:54 AM,11/27/2010 02:57:06 AM,11/27/2010 02:59:12 AM,11/27/2010 03:02:17 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 03:09:30 AM,OFARRELL ST/MASON ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7862026638911, -122.409683072135)",103310041-E03 +110840178,E13,11027663,Medical Incident,03/25/2011,03/25/2011,03/25/2011 11:31:49 AM,03/25/2011 11:32:24 AM,03/25/2011 11:32:53 AM,03/25/2011 11:38:47 AM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 11:39:56 AM,200 Block of KEARNY ST,SF,94108,B01,13,1242,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",110840178-E13 +133510320,58,13119299,Medical Incident,12/17/2013,12/17/2013,12/17/2013 05:05:26 PM,12/17/2013 05:07:48 PM,12/17/2013 05:34:30 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Patient Declined Transport,12/17/2013 05:35:45 PM,100 Block of HAHN ST,SF,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,9,10,Visitacion Valley,"(37.7127277704943, -122.415710728503)",133510320-58 +131590147,77,13053989,Medical Incident,06/08/2013,06/08/2013,06/08/2013 10:45:59 AM,06/08/2013 10:47:15 AM,06/08/2013 10:47:43 AM,06/08/2013 10:50:02 AM,06/08/2013 11:02:03 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,No Merit,06/08/2013 11:04:12 AM,LA PLAYA ST/FULTON ST,SF,94121,B07,34,7311,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7713960328361, -122.509894748816)",131590147-77 +110820083,E03,11026867,Medical Incident,03/23/2011,03/22/2011,03/23/2011 07:54:25 AM,03/23/2011 07:55:20 AM,03/23/2011 07:55:32 AM,03/23/2011 07:57:41 AM,03/23/2011 08:00:18 AM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,No Merit,03/23/2011 08:04:34 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",110820083-E03 +132920333,E05,13099505,Alarms,10/19/2013,10/19/2013,10/19/2013 08:06:13 PM,10/19/2013 08:08:27 PM,10/19/2013 08:09:22 PM,04/25/2016 01:50:11 PM,10/19/2013 08:11:43 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 08:28:08 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",132920333-E05 +112770237,E36,11091735,Medical Incident,10/04/2011,10/04/2011,10/04/2011 02:36:07 PM,10/04/2011 02:37:17 PM,10/04/2011 02:37:33 PM,10/04/2011 02:38:41 PM,10/04/2011 02:40:47 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 02:40:59 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",112770237-E36 +160083156,E20,16003366,Medical Incident,01/08/2016,01/08/2016,01/08/2016 06:45:30 PM,01/08/2016 06:46:58 PM,01/08/2016 06:47:31 PM,01/08/2016 06:48:33 PM,01/08/2016 06:51:44 PM,01/08/2016 07:27:14 PM,01/08/2016 07:33:30 PM,Code 3 Transport,01/08/2016 07:41:20 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160083156-E20 +160041387,KM11,16001568,Medical Incident,01/04/2016,01/04/2016,01/04/2016 11:27:41 AM,01/04/2016 11:29:42 AM,01/04/2016 11:30:17 AM,01/04/2016 11:31:01 AM,01/04/2016 11:37:34 AM,01/04/2016 11:58:56 AM,01/04/2016 12:08:54 PM,Code 2 Transport,01/04/2016 12:40:37 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160041387-KM11 +160342411,85,16013473,Medical Incident,02/03/2016,02/03/2016,02/03/2016 04:21:47 PM,02/03/2016 04:23:29 PM,02/03/2016 04:24:26 PM,02/03/2016 04:24:48 PM,02/03/2016 04:30:30 PM,02/03/2016 04:38:46 PM,02/03/2016 04:52:42 PM,Code 3 Transport,02/03/2016 05:34:25 PM,2200 Block of 46TH AVE,San Francisco,94116,B08,23,7664,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7445764654926, -122.504750126329)",160342411-85 +112260161,T06,11074655,Structure Fire,08/14/2011,08/14/2011,08/14/2011 01:12:12 PM,08/14/2011 01:12:13 PM,08/14/2011 01:12:32 PM,08/14/2011 01:13:46 PM,08/14/2011 01:14:17 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 01:14:23 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,false,,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",112260161-T06 +160833056,KM01,16033062,Medical Incident,03/23/2016,03/23/2016,03/23/2016 05:27:24 PM,03/23/2016 05:27:53 PM,03/23/2016 05:28:24 PM,03/23/2016 05:29:02 PM,03/23/2016 05:37:19 PM,03/23/2016 05:55:07 PM,03/23/2016 06:47:35 PM,Code 2 Transport,03/23/2016 07:14:24 PM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6554,2,2,2,false,Non Life-threatening,1,PRIVATE,4,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",160833056-KM01 +103250230,77,10104220,Medical Incident,11/21/2010,11/21/2010,11/21/2010 03:46:06 PM,11/21/2010 03:46:44 PM,11/21/2010 03:47:24 PM,11/21/2010 03:52:15 PM,11/21/2010 03:53:28 PM,11/21/2010 04:11:12 PM,11/21/2010 04:24:12 PM,Code 2 Transport,11/21/2010 04:49:32 PM,STANYAN ST/PARAMOUNT TR,SF,94118,B07,21,4557,3,3,3,true,,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7763223581115, -122.45497837506)",103250230-77 +121720381,E19,12057290,Alarms,06/20/2012,06/20/2012,06/20/2012 11:34:06 PM,06/20/2012 11:35:31 PM,06/20/2012 11:35:39 PM,06/20/2012 11:38:08 PM,06/20/2012 11:40:09 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 11:46:10 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",121720381-E19 +160663069,KM07,16026526,Medical Incident,03/06/2016,03/06/2016,03/06/2016 09:25:40 PM,03/06/2016 09:26:42 PM,03/06/2016 09:27:13 PM,03/06/2016 09:27:39 PM,03/06/2016 09:32:26 PM,03/06/2016 09:49:17 PM,03/06/2016 09:55:53 PM,Code 2 Transport,03/06/2016 10:38:32 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",160663069-KM07 +121430205,B07,12047554,Alarms,05/22/2012,05/22/2012,05/22/2012 01:37:50 PM,05/22/2012 01:39:42 PM,05/22/2012 01:42:20 PM,05/22/2012 01:43:29 PM,05/22/2012 01:47:07 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Fire,05/22/2012 02:01:08 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,CHIEF,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",121430205-B07 +113480285,64,11115542,Medical Incident,12/14/2011,12/14/2011,12/14/2011 04:54:47 PM,12/14/2011 04:56:26 PM,12/14/2011 04:57:36 PM,12/14/2011 05:17:38 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 05:18:24 PM,2300 Block of FRANCISCO ST,SF,94123,B04,16,4222,1,1,2,true,,1,MEDIC,4,4,2,Marina,"(37.8007477402134, -122.443858484161)",113480285-64 +102310055,96,10072605,Medical Incident,08/19/2010,08/18/2010,08/19/2010 07:42:48 AM,08/19/2010 07:43:35 AM,08/19/2010 07:45:52 AM,08/19/2010 07:46:21 AM,08/19/2010 07:51:43 AM,08/19/2010 08:08:10 AM,08/19/2010 08:45:30 AM,Code 2 Transport,08/19/2010 08:58:30 AM,2500 Block of MASON ST,SF,94133,B01,28,1425,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.807027306345, -122.413812485246)",102310055-96 +121040121,B03,12034406,Alarms,04/13/2012,04/13/2012,04/13/2012 10:50:58 AM,04/13/2012 10:52:32 AM,04/13/2012 10:52:40 AM,04/13/2012 10:56:43 AM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/13/2012 10:57:01 AM,0 Block of SPEAR ST,SF,94105,B03,13,2115,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",121040121-B03 +160720981,52,16028525,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:28:15 AM,03/12/2016 09:29:19 AM,03/12/2016 09:29:41 AM,03/12/2016 09:29:53 AM,03/12/2016 09:31:38 AM,03/12/2016 09:52:03 AM,03/12/2016 10:05:38 AM,Code 2 Transport,03/12/2016 10:39:41 AM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7658582826035, -122.419816092644)",160720981-52 +133610244,KM09,13122727,Medical Incident,12/27/2013,12/27/2013,12/27/2013 05:20:28 PM,12/27/2013 05:20:43 PM,12/27/2013 05:21:45 PM,04/25/2016 01:49:02 PM,12/27/2013 05:28:07 PM,12/27/2013 05:33:57 PM,12/27/2013 05:54:44 PM,Code 2 Transport,12/27/2013 06:02:01 PM,5200 Block of GEARY BLVD,SF,94118,B07,31,7161,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7806317611627, -122.475635484021)",133610244-KM09 +130120357,B04,13004247,Structure Fire,01/12/2013,01/12/2013,01/12/2013 10:41:02 PM,01/12/2013 10:41:58 PM,01/12/2013 10:42:16 PM,01/12/2013 10:43:05 PM,01/12/2013 10:45:29 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/13/2013 12:11:52 AM,2400 Block of OCTAVIA ST,SF,94109,B04,38,3332,3,3,3,false,Fire,1,CHIEF,4,4,2,Pacific Heights,"(37.7946551961653, -122.428183423328)",130120357-B04 +103120083,E34,10099975,Medical Incident,11/08/2010,11/08/2010,11/08/2010 08:21:20 AM,11/08/2010 08:21:36 AM,11/08/2010 08:23:36 AM,11/08/2010 08:25:23 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/08/2010 08:26:03 AM,GREAT HY/BALBOA ST,SF,94121,B07,34,7312,2,2,2,true,,1,ENGINE,3,7,1,Outer Richmond,"(37.7750759610096, -122.511294923938)",103120083-E34 +160060052,72,16002216,Medical Incident,01/06/2016,01/05/2016,01/06/2016 12:26:42 AM,01/06/2016 12:28:34 AM,01/06/2016 12:28:53 AM,01/06/2016 12:29:26 AM,01/06/2016 12:37:45 AM,01/06/2016 01:02:57 AM,01/06/2016 01:12:08 AM,Code 2 Transport,01/06/2016 02:00:10 AM,800 Block of BRODERICK ST,San Francisco,94115,B05,21,4242,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",160060052-72 +160080919,75,16003142,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:55:58 AM,01/08/2016 08:56:42 AM,01/08/2016 08:58:13 AM,01/08/2016 08:58:20 AM,01/08/2016 09:11:56 AM,01/08/2016 09:26:02 AM,01/08/2016 09:44:17 AM,Code 2 Transport,01/08/2016 10:05:19 AM,100 Block of VALE AVE,San Francisco,94132,B08,19,7464,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7348479600179, -122.48403223577)",160080919-75 +160453261,AM24,16018301,Medical Incident,02/14/2016,02/14/2016,02/14/2016 09:25:00 PM,02/14/2016 09:26:41 PM,02/14/2016 09:27:39 PM,02/14/2016 09:28:21 PM,02/14/2016 09:41:31 PM,02/14/2016 10:01:05 PM,02/14/2016 10:21:14 PM,Code 2 Transport,02/14/2016 09:51:21 PM,100 Block of BEVERLY ST,San Francisco,94127,B09,19,8447,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7187576857238, -122.471711289196)",160453261-AM24 +130820160,E21,13027427,Fuel Spill,03/23/2013,03/23/2013,03/23/2013 12:36:52 PM,03/23/2013 12:37:21 PM,03/23/2013 12:37:40 PM,03/23/2013 12:38:45 PM,03/23/2013 12:41:06 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Fire,03/23/2013 12:52:09 PM,500 Block of DIVISADERO ST,SF,94117,B05,21,4145,3,3,3,false,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7745415617003, -122.437589912285)",130820160-E21 +140560295,KM02,14018982,Medical Incident,02/25/2014,02/25/2014,02/25/2014 06:10:59 PM,02/25/2014 06:16:30 PM,02/25/2014 06:16:49 PM,02/25/2014 06:17:25 PM,02/25/2014 06:21:50 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Unable to Locate,02/25/2014 06:27:44 PM,1100 Block of HAIGHT ST,SF,94117,B05,21,4353,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7707967646224, -122.44118874316)",140560295-KM02 +111690144,E36,11055674,Medical Incident,06/18/2011,06/18/2011,06/18/2011 10:40:57 AM,06/18/2011 10:42:07 AM,06/18/2011 10:42:24 AM,06/18/2011 10:42:51 AM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,Other,04/25/2016 02:04:06 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7819536537257, -122.410041631816)",111690144-E36 +123250005,93,12107930,Medical Incident,11/20/2012,11/19/2012,11/20/2012 12:18:29 AM,11/20/2012 12:19:52 AM,11/20/2012 12:20:14 AM,11/20/2012 12:20:51 AM,11/20/2012 12:28:51 AM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/20/2012 02:13:26 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",123250005-93 +160690471,KM03,16027344,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:21:57 AM,03/09/2016 06:22:44 AM,03/09/2016 06:23:32 AM,03/09/2016 06:24:55 AM,03/09/2016 06:38:10 AM,03/09/2016 06:51:48 AM,03/09/2016 07:04:55 AM,Code 3 Transport,03/09/2016 07:20:51 AM,300 Block of FAXON AVE,San Francisco,94112,B09,15,8463,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209280246624, -122.460152149561)",160690471-KM03 +110930087,E33,11030797,Structure Fire,04/03/2011,04/02/2011,04/03/2011 07:26:30 AM,04/03/2011 07:27:25 AM,04/03/2011 07:27:49 AM,04/03/2011 07:29:09 AM,04/03/2011 07:30:15 AM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 08:31:33 AM,5300 Block of MISSION ST,SF,94112,B09,43,6176,3,3,3,true,,1,ENGINE,2,9,11,Outer Mission,"(37.7142832798437, -122.443056240053)",110930087-E33 +130680008,B01,13022523,Alarms,03/09/2013,03/08/2013,03/09/2013 12:09:29 AM,03/09/2013 12:11:34 AM,03/09/2013 12:12:40 AM,03/09/2013 12:14:27 AM,03/09/2013 12:15:38 AM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,Other,03/09/2013 12:25:16 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7969072647197, -122.407234390471)",130680008-B01 +111420406,66,11047382,Medical Incident,05/22/2011,05/22/2011,05/22/2011 11:55:58 PM,05/22/2011 11:57:14 PM,05/22/2011 11:57:35 PM,05/22/2011 11:57:44 PM,05/23/2011 12:03:59 AM,05/23/2011 12:26:35 AM,05/23/2011 12:34:19 AM,Code 2 Transport,05/23/2011 01:03:59 AM,0 Block of SYCAMORE ST,SF,94110,B02,7,5423,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7627003582299, -122.420562762663)",111420406-66 +132350073,81,13079227,Medical Incident,08/23/2013,08/22/2013,08/23/2013 07:47:34 AM,08/23/2013 07:47:34 AM,08/23/2013 07:47:34 AM,08/23/2013 07:47:52 AM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,08/23/2013 08:11:06 AM,Code 3 Transport,08/23/2013 08:44:56 AM,0 Block of CASTRO ST,SF,94114,B05,6,513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",132350073-81 +160412058,AM12,16016484,Medical Incident,02/10/2016,02/10/2016,02/10/2016 02:04:13 PM,02/10/2016 02:05:39 PM,02/10/2016 02:05:52 PM,02/10/2016 02:06:42 PM,02/10/2016 02:14:51 PM,02/10/2016 02:27:20 PM,02/10/2016 02:38:46 PM,Code 2 Transport,02/10/2016 02:59:40 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160412058-AM12 +102610079,E03,10082416,Alarms,09/18/2010,09/17/2010,09/18/2010 04:58:09 AM,09/18/2010 05:00:13 AM,09/18/2010 05:00:19 AM,09/18/2010 05:01:49 AM,09/18/2010 05:04:25 AM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,Other,09/18/2010 05:10:08 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",102610079-E03 +160260879,61,16010226,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:35:46 AM,01/26/2016 08:38:02 AM,01/26/2016 08:38:18 AM,01/26/2016 08:38:27 AM,01/26/2016 08:46:58 AM,01/26/2016 09:32:26 AM,01/26/2016 09:47:58 AM,Code 2 Transport,01/26/2016 10:35:16 AM,GREAT HY/LINCOLN WY,San Francisco,94122,B08,23,7722,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",160260879-61 +160110815,KM09,16004308,Medical Incident,01/11/2016,01/11/2016,01/11/2016 08:43:24 AM,01/11/2016 08:43:42 AM,01/11/2016 08:44:16 AM,01/11/2016 08:44:57 AM,01/11/2016 08:51:32 AM,01/11/2016 09:16:10 AM,01/11/2016 09:26:23 AM,Code 2 Transport,01/11/2016 10:08:27 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160110815-KM09 +160693499,68,16027641,Medical Incident,03/09/2016,03/09/2016,03/09/2016 08:39:43 PM,03/09/2016 08:43:04 PM,03/09/2016 08:43:51 PM,03/09/2016 08:44:20 PM,03/09/2016 08:49:36 PM,03/09/2016 09:15:57 PM,03/09/2016 09:46:43 PM,Code 2 Transport,03/09/2016 10:07:46 PM,300 Block of 20TH ST,San Francisco,94107,B10,25,970,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.7606927106062, -122.386101233024)",160693499-68 +131280234,E13,13043306,Medical Incident,05/08/2013,05/08/2013,05/08/2013 03:08:12 PM,05/08/2013 03:10:08 PM,05/08/2013 03:10:50 PM,05/08/2013 03:12:14 PM,05/08/2013 03:14:17 PM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 03:22:45 PM,300 Block of CALIFORNIA ST,SF,94104,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",131280234-E13 +131040217,94,13034948,Medical Incident,04/14/2013,04/14/2013,04/14/2013 01:33:51 PM,04/14/2013 01:35:25 PM,04/14/2013 01:35:31 PM,04/14/2013 01:35:41 PM,04/14/2013 01:45:07 PM,04/14/2013 01:59:23 PM,04/14/2013 02:14:49 PM,Code 2 Transport,04/14/2013 02:44:42 PM,1000 Block of FLORIDA ST,SF,94110,B06,7,5476,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7551370276889, -122.410365620906)",131040217-94 +103290129,KM04,10105333,Medical Incident,11/25/2010,11/25/2010,11/25/2010 12:14:25 PM,11/25/2010 12:15:07 PM,11/25/2010 12:15:24 PM,11/25/2010 12:16:20 PM,11/25/2010 12:37:07 PM,11/25/2010 12:37:11 PM,11/25/2010 12:49:15 PM,Code 2 Transport,11/25/2010 01:16:33 PM,1900 Block of 31ST AVE,SF,94116,B08,18,7533,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.750871857963, -122.48919906293)",103290129-KM04 +121340128,KM12,12044559,Medical Incident,05/13/2012,05/13/2012,05/13/2012 11:24:27 AM,05/13/2012 11:26:03 AM,05/13/2012 11:26:58 AM,05/13/2012 11:27:53 AM,05/13/2012 11:33:35 AM,05/13/2012 11:51:05 AM,05/13/2012 11:57:36 AM,Code 2 Transport,05/13/2012 12:15:50 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",121340128-KM12 +102600328,E33,10082290,Medical Incident,09/17/2010,09/17/2010,09/17/2010 07:37:34 PM,09/17/2010 07:39:33 PM,09/17/2010 07:39:51 PM,09/17/2010 07:40:43 PM,09/17/2010 07:44:19 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 07:58:30 PM,5100 Block of MISSION ST,SF,94112,B09,43,6176,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7154728757373, -122.441686062166)",102600328-E33 +160122228,89,16004816,Medical Incident,01/12/2016,01/12/2016,01/12/2016 03:07:42 PM,01/12/2016 03:08:42 PM,01/12/2016 03:09:13 PM,01/12/2016 03:09:23 PM,01/12/2016 03:13:45 PM,01/12/2016 03:28:27 PM,01/12/2016 03:39:32 PM,Code 2 Transport,01/12/2016 04:26:49 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160122228-89 +102610322,E19,10082618,Smoke Investigation (Outside),09/18/2010,09/18/2010,09/18/2010 05:22:46 PM,09/18/2010 05:25:46 PM,09/18/2010 05:25:54 PM,09/18/2010 05:27:22 PM,09/18/2010 05:32:46 PM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,No Merit,09/18/2010 05:45:19 PM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",102610322-E19 +132560079,E36,13086456,Alarms,09/13/2013,09/12/2013,09/13/2013 07:46:38 AM,09/13/2013 07:47:39 AM,09/13/2013 07:48:05 AM,09/13/2013 07:51:44 AM,09/13/2013 07:54:14 AM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/13/2013 08:00:03 AM,200 Block of VAN NESS AVE,SF,94102,B02,36,3166,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7775400880886, -122.419594770553)",132560079-E36 +123530055,66,12118003,Medical Incident,12/18/2012,12/17/2012,12/18/2012 05:56:36 AM,12/18/2012 05:56:46 AM,12/18/2012 05:57:16 AM,12/18/2012 05:57:49 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 06:05:50 AM,FULTON ST/7TH AV,SF,94122,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7734887431391, -122.464811669746)",123530055-66 +140570099,94,14019155,Citizen Assist / Service Call,02/26/2014,02/26/2014,02/26/2014 08:35:37 AM,02/26/2014 08:37:06 AM,02/26/2014 08:42:52 AM,02/26/2014 08:43:04 AM,02/26/2014 08:45:10 AM,02/26/2014 08:59:51 AM,02/26/2014 09:38:27 AM,Code 2 Transport,02/26/2014 10:05:41 AM,1700 Block of LA SALLE AVE,SF,94124,B10,25,6467,3,3,3,true,Alarm,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7380275003224, -122.391497205515)",140570099-94 +160260219,79,16010170,Medical Incident,01/26/2016,01/25/2016,01/26/2016 01:53:37 AM,01/26/2016 01:54:33 AM,01/26/2016 01:54:47 AM,01/26/2016 01:55:05 AM,01/26/2016 02:05:01 AM,01/26/2016 02:21:52 AM,01/26/2016 02:42:07 AM,Code 2 Transport,01/26/2016 03:21:55 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160260219-79 +111180269,AM14,11038999,Medical Incident,04/28/2011,04/28/2011,04/28/2011 05:32:49 PM,04/28/2011 05:32:49 PM,04/28/2011 05:33:25 PM,04/28/2011 05:34:01 PM,04/28/2011 05:37:47 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 05:41:29 PM,400 Block of JEFFERSON ST,SF,94109,B01,28,1524,3,3,3,false,,1,PRIVATE,2,1,2,Russian Hill,"(37.8076423943453, -122.419903598279)",111180269-AM14 +112520445,B10,11083307,Alarms,09/09/2011,09/09/2011,09/09/2011 11:35:56 PM,09/09/2011 11:36:50 PM,09/09/2011 11:36:59 PM,09/09/2011 11:38:56 PM,09/09/2011 11:43:15 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Other,09/09/2011 11:50:36 PM,2600 Block of 3RD ST,SF,94107,B10,25,2574,3,3,3,false,,1,CHIEF,3,10,10,Potrero Hill,"(37.7566551377293, -122.388267584017)",112520445-B10 +160571004,79,16022682,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:31:26 AM,02/26/2016 09:32:08 AM,02/26/2016 09:32:37 AM,02/26/2016 09:32:47 AM,02/26/2016 09:37:04 AM,02/26/2016 09:52:50 AM,02/26/2016 09:55:42 AM,Code 3 Transport,02/26/2016 10:31:49 AM,500 Block of BRODERICK ST,San Francisco,94117,B05,21,4244,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.7752371573517, -122.439629672801)",160571004-79 +103020256,E16,10096549,Structure Fire,10/29/2010,10/29/2010,10/29/2010 06:11:49 PM,10/29/2010 06:13:44 PM,10/29/2010 06:14:04 PM,04/25/2016 02:07:52 PM,10/29/2010 06:17:27 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/29/2010 06:35:48 PM,1800 Block of BROADWAY,SF,94123,B04,38,3251,3,3,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.795265168848, -122.427533073347)",103020256-E16 +131990005,T06,13067311,Other,07/18/2013,07/17/2013,07/18/2013 12:18:34 AM,07/18/2013 12:18:38 AM,07/18/2013 12:19:17 AM,07/18/2013 12:21:07 AM,07/18/2013 12:22:46 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 12:43:45 AM,700 Block of HAIGHT ST,SF,94117,B05,21,4142,3,3,3,false,Alarm,1,TRUCK,1,5,5,Haight Ashbury,"(37.7716381141296, -122.434564848231)",131990005-T06 +160293269,86,16011562,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:22:03 PM,01/29/2016 08:23:09 PM,01/29/2016 08:23:33 PM,01/29/2016 08:23:44 PM,01/29/2016 08:23:46 PM,01/29/2016 08:46:41 PM,01/29/2016 08:54:28 PM,Code 2 Transport,01/29/2016 09:26:35 PM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160293269-86 +123570159,T14,12119484,Structure Fire,12/22/2012,12/22/2012,12/22/2012 11:11:20 AM,12/22/2012 11:12:01 AM,12/22/2012 11:12:21 AM,12/22/2012 11:13:34 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 11:21:59 AM,2100 Block of BALBOA ST,SF,94121,B07,14,7171,3,3,3,false,Alarm,1,TRUCK,6,7,1,Outer Richmond,"(37.7764791578621, -122.481786615604)",123570159-T14 +132150307,86,13072717,Medical Incident,08/03/2013,08/03/2013,08/03/2013 06:02:03 PM,08/03/2013 06:02:40 PM,08/03/2013 06:05:23 PM,08/03/2013 06:05:47 PM,08/03/2013 06:11:46 PM,08/03/2013 06:27:45 PM,08/03/2013 06:39:26 PM,Code 2 Transport,08/03/2013 07:40:06 PM,POLK ST/VALLEJO ST,SF,94109,B04,41,3126,3,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7968997476834, -122.42196091068)",132150307-86 +140800189,82,14027041,Medical Incident,03/21/2014,03/21/2014,03/21/2014 01:19:54 PM,03/21/2014 01:21:44 PM,03/21/2014 01:26:52 PM,03/21/2014 01:27:03 PM,03/21/2014 01:28:52 PM,03/21/2014 01:44:56 PM,03/21/2014 02:00:26 PM,Code 2 Transport,03/21/2014 02:20:03 PM,300 Block of FULTON ST,SAN FRANCISCO,94102,B02,36,3264,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140800189-82 +113560009,E03,11118056,Other,12/22/2011,12/21/2011,12/22/2011 12:26:28 AM,12/22/2011 12:27:06 AM,12/22/2011 12:27:22 AM,12/22/2011 12:28:56 AM,12/22/2011 12:37:23 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Fire,12/22/2011 12:37:34 AM,GEARY ST/JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",113560009-E03 +102260120,E34,10071096,Citizen Assist / Service Call,08/14/2010,08/14/2010,08/14/2010 10:24:16 AM,08/14/2010 10:26:22 AM,08/14/2010 10:26:49 AM,08/14/2010 10:28:29 AM,08/14/2010 10:32:16 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 10:41:23 AM,400 Block of 34TH AVE,SF,94121,B07,34,7247,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7806103839199, -122.494519297377)",102260120-E34 +110930249,E01,11030932,Structure Fire,04/03/2011,04/03/2011,04/03/2011 04:07:06 PM,04/03/2011 04:07:07 PM,04/03/2011 04:07:20 PM,04/03/2011 04:07:43 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/03/2011 04:09:32 PM,4TH ST/MISSION ST,SF,94103,B03,1,2213,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",110930249-E01 +160011830,85,16000317,Medical Incident,01/01/2016,01/01/2016,01/01/2016 12:02:23 PM,01/01/2016 12:02:23 PM,01/01/2016 12:04:08 PM,01/01/2016 12:04:16 PM,01/01/2016 12:18:41 PM,01/01/2016 12:38:51 PM,01/01/2016 12:57:57 PM,Code 2 Transport,01/01/2016 01:37:15 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",160011830-85 +140320308,E38,14010953,Medical Incident,02/01/2014,02/01/2014,02/01/2014 06:28:52 PM,02/01/2014 06:30:13 PM,02/01/2014 06:30:26 PM,02/01/2014 06:30:40 PM,02/01/2014 06:33:23 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/01/2014 06:44:27 PM,2500 Block of SACRAMENTO ST,SF,94115,B04,38,3544,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7896788715046, -122.434839317117)",140320308-E38 +113370011,B04,11111508,Alarms,12/03/2011,12/02/2011,12/03/2011 12:29:51 AM,12/03/2011 12:31:14 AM,12/03/2011 12:31:27 AM,12/03/2011 12:33:50 AM,12/03/2011 12:35:04 AM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/03/2011 12:40:22 AM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,3,3,3,false,,1,CHIEF,3,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",113370011-B04 +110370110,88,11012143,Medical Incident,02/06/2011,02/06/2011,02/06/2011 08:22:26 AM,02/06/2011 08:24:06 AM,02/06/2011 08:24:16 AM,02/06/2011 08:43:53 AM,04/25/2016 02:06:14 PM,04/25/2016 02:06:14 PM,04/25/2016 02:06:14 PM,Other,04/25/2016 02:06:14 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,,1,MEDIC,3,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",110370110-88 +132990031,RC3,13101457,Medical Incident,10/26/2013,10/25/2013,10/26/2013 01:18:37 AM,10/26/2013 01:19:47 AM,10/26/2013 01:21:22 AM,10/26/2013 01:22:25 AM,10/26/2013 01:34:13 AM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/26/2013 01:51:51 AM,200 Block of SADOWA ST,SF,94112,B09,33,8374,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Oceanview/Merced/Ingleside,"(37.7123395683606, -122.460798752041)",132990031-RC3 +132700016,T08,13091557,Vehicle Fire,09/27/2013,09/26/2013,09/27/2013 01:13:29 AM,09/27/2013 01:14:07 AM,09/27/2013 01:16:06 AM,09/27/2013 01:18:14 AM,09/27/2013 01:26:50 AM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/27/2013 01:39:26 AM,300 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,false,Fire,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",132700016-T08 +122400017,E03,12079303,Medical Incident,08/27/2012,08/26/2012,08/27/2012 02:08:54 AM,08/27/2012 02:09:22 AM,08/27/2012 02:10:14 AM,08/27/2012 02:11:41 AM,08/27/2012 02:14:00 AM,04/25/2016 01:57:03 PM,04/25/2016 01:57:03 PM,Other,08/27/2012 02:21:13 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",122400017-E03 +140670063,T10,14022589,Structure Fire,03/08/2014,03/07/2014,03/08/2014 06:23:42 AM,03/08/2014 06:25:12 AM,03/08/2014 06:25:45 AM,03/08/2014 06:27:45 AM,03/08/2014 06:29:39 AM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Fire,03/08/2014 06:31:47 AM,2100 Block of OFARRELL ST,SAN FRANCISCO,94115,B05,10,4236,3,3,3,false,Alarm,1,TRUCK,5,5,5,Western Addition,"(37.7822906196571, -122.44011945632)",140670063-T10 +113250380,AM18,11108102,Medical Incident,11/21/2011,11/21/2011,11/21/2011 11:19:07 PM,11/21/2011 11:19:26 PM,11/21/2011 11:20:29 PM,11/21/2011 11:20:56 PM,11/21/2011 11:26:26 PM,11/21/2011 11:32:51 PM,11/21/2011 11:38:10 PM,Code 2 Transport,11/22/2011 12:06:24 AM,0 Block of DORE ST,SF,94103,B02,36,2342,2,2,2,false,,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",113250380-AM18 +140020337,E21,14000802,Gas Leak (Natural and LP Gases),01/02/2014,01/02/2014,01/02/2014 06:23:48 PM,01/02/2014 06:23:48 PM,01/02/2014 06:24:26 PM,01/02/2014 06:25:45 PM,01/02/2014 06:26:43 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/02/2014 06:38:31 PM,1000 Block of PAGE ST,SF,94117,B05,21,4144,,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7720428462416, -122.438055986147)",140020337-E21 +103290030,73,10105243,Medical Incident,11/25/2010,11/24/2010,11/25/2010 03:03:46 AM,11/25/2010 03:04:57 AM,11/25/2010 03:06:12 AM,11/25/2010 03:06:39 AM,11/25/2010 03:12:07 AM,11/25/2010 03:17:19 AM,11/25/2010 03:25:19 AM,Code 2 Transport,11/25/2010 03:51:41 AM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",103290030-73 +122320229,E26,12076984,Traffic Collision,08/19/2012,08/19/2012,08/19/2012 02:55:30 PM,08/19/2012 02:56:49 PM,08/19/2012 02:57:17 PM,08/19/2012 02:58:57 PM,08/19/2012 03:02:09 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 03:32:12 PM,0 Block of AMBER DR,SF,94131,B06,26,8166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Noe Valley,"(37.7462761269097, -122.444743384409)",122320229-E26 +121620055,E01,12053518,Alarms,06/10/2012,06/09/2012,06/10/2012 02:30:52 AM,06/10/2012 02:30:54 AM,06/10/2012 02:31:58 AM,04/25/2016 01:58:17 PM,06/10/2012 02:32:56 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 02:33:22 AM,0 Block of GRANT AVE,SF,94108,B01,1,1321,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7871853698326, -122.404995219077)",121620055-E01 +123170144,AM02,12105471,Medical Incident,11/12/2012,11/12/2012,11/12/2012 12:25:48 PM,11/12/2012 12:27:02 PM,11/12/2012 12:27:21 PM,11/12/2012 12:28:13 PM,11/12/2012 12:30:08 PM,11/12/2012 12:33:35 PM,11/12/2012 01:26:25 PM,Code 2 Transport,11/12/2012 01:51:38 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",123170144-AM02 +160700539,52,16027738,Medical Incident,03/10/2016,03/09/2016,03/10/2016 07:13:04 AM,03/10/2016 07:14:17 AM,03/10/2016 07:15:44 AM,03/10/2016 07:15:53 AM,03/10/2016 07:34:00 AM,03/10/2016 07:39:02 AM,03/10/2016 07:53:22 AM,Code 2 Transport,03/10/2016 08:17:17 AM,HAYES ST/LARKIN ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7777227510073, -122.416401071795)",160700539-52 +132700013,T13,13091555,Alarms,09/27/2013,09/26/2013,09/27/2013 01:06:32 AM,09/27/2013 01:08:47 AM,09/27/2013 01:08:53 AM,09/27/2013 01:11:18 AM,09/27/2013 01:14:40 AM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/27/2013 01:26:57 AM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",132700013-T13 +132070020,E13,13069938,Alarms,07/26/2013,07/25/2013,07/26/2013 02:05:11 AM,07/26/2013 02:06:37 AM,07/26/2013 02:07:19 AM,07/26/2013 02:08:45 AM,07/26/2013 02:12:09 AM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/26/2013 02:17:57 AM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",132070020-E13 +160382974,66,16015349,Medical Incident,02/07/2016,02/07/2016,02/07/2016 07:03:34 PM,02/07/2016 07:04:58 PM,02/07/2016 07:06:03 PM,02/07/2016 07:08:01 PM,02/07/2016 07:11:58 PM,02/07/2016 07:17:22 PM,02/07/2016 07:38:15 PM,Code 2 Transport,02/07/2016 07:58:19 PM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",160382974-66 +112680335,B09,11088718,Structure Fire,09/25/2011,09/25/2011,09/25/2011 08:15:01 PM,09/25/2011 08:15:54 PM,09/25/2011 08:16:44 PM,09/25/2011 08:17:34 PM,09/25/2011 08:21:42 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 08:40:10 PM,200 Block of THRIFT ST,SF,94112,B09,33,8415,3,3,3,false,,1,CHIEF,4,9,11,Oceanview/Merced/Ingleside,"(37.7174874499717, -122.46143337515)",112680335-B09 +111830009,E02,11060292,Alarms,07/02/2011,07/01/2011,07/02/2011 12:28:27 AM,07/02/2011 12:29:32 AM,07/02/2011 12:29:41 AM,07/02/2011 12:32:01 AM,07/02/2011 12:32:06 AM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,07/02/2011 12:37:19 AM,500 Block of VALLEJO ST,SF,94133,B01,2,1251,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.7988360851222, -122.406273249471)",111830009-E02 +102940246,78,10093806,Medical Incident,10/21/2010,10/21/2010,10/21/2010 04:15:28 PM,10/21/2010 04:18:16 PM,10/21/2010 04:18:31 PM,10/21/2010 04:18:36 PM,10/21/2010 04:27:17 PM,10/21/2010 04:41:55 PM,10/21/2010 05:17:33 PM,Code 2 Transport,10/21/2010 05:43:34 PM,300 Block of SACRAMENTO ST,SF,94111,B01,13,1141,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941550943821, -122.399548542979)",102940246-78 +160172847,89,16006965,Medical Incident,01/17/2016,01/17/2016,01/17/2016 07:14:01 PM,01/17/2016 07:14:34 PM,01/17/2016 07:15:27 PM,01/17/2016 07:22:12 PM,01/17/2016 07:25:15 PM,01/17/2016 07:33:58 PM,01/17/2016 07:39:07 PM,Other,01/17/2016 08:13:28 PM,19TH AV/LINCOLN WY,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,4,Sunset/Parkside,"(37.7654479866215, -122.477308393483)",160172847-89 +131040389,AM22,13035108,Medical Incident,04/14/2013,04/14/2013,04/14/2013 10:43:36 PM,04/14/2013 10:46:00 PM,04/14/2013 10:46:14 PM,04/14/2013 10:47:07 PM,04/14/2013 10:58:43 PM,04/14/2013 11:12:31 PM,04/14/2013 11:30:46 PM,Code 2 Transport,04/15/2013 12:17:01 AM,300 Block of MONCADA WAY,SF,94127,B09,15,8453,3,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7296962224471, -122.470055977724)",131040389-AM22 +160891148,KM05,16035277,Medical Incident,03/29/2016,03/29/2016,03/29/2016 10:00:10 AM,03/29/2016 10:02:08 AM,03/29/2016 10:05:57 AM,03/29/2016 10:05:57 AM,03/29/2016 10:11:13 AM,03/29/2016 10:25:16 AM,03/29/2016 10:42:51 AM,Code 2 Transport,03/29/2016 11:22:36 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160891148-KM05 +131590166,B02,13054005,Medical Incident,06/08/2013,06/08/2013,06/08/2013 12:11:05 PM,06/08/2013 12:11:53 PM,06/08/2013 12:13:10 PM,04/25/2016 01:52:23 PM,06/08/2013 12:14:50 PM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/08/2013 12:23:34 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",131590166-B02 +111140152,E10,11037652,Medical Incident,04/24/2011,04/24/2011,04/24/2011 01:11:36 PM,04/24/2011 01:15:51 PM,04/24/2011 01:16:20 PM,04/24/2011 01:17:23 PM,04/24/2011 01:18:13 PM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 01:30:47 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",111140152-E10 +130050279,B06,13001801,Structure Fire,01/05/2013,01/05/2013,01/05/2013 04:11:31 PM,01/05/2013 04:12:01 PM,01/05/2013 04:12:13 PM,01/05/2013 04:13:36 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/05/2013 04:16:23 PM,HARBOR RD/NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7310098713367, -122.376999546443)",130050279-B06 +160860559,KM07,16034075,Medical Incident,03/26/2016,03/25/2016,03/26/2016 05:07:27 AM,03/26/2016 05:09:12 AM,03/26/2016 05:09:25 AM,03/26/2016 05:09:48 AM,03/26/2016 05:14:43 AM,03/26/2016 05:30:24 AM,03/26/2016 05:43:27 AM,Code 3 Transport,03/26/2016 06:36:39 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160860559-KM07 +160273764,60,16010872,Medical Incident,01/27/2016,01/27/2016,01/27/2016 09:39:07 PM,01/27/2016 09:39:07 PM,01/27/2016 09:42:59 PM,01/27/2016 09:43:28 PM,01/27/2016 09:55:41 PM,01/27/2016 10:24:00 PM,01/27/2016 10:35:43 PM,Code 2 Transport,01/27/2016 11:24:13 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7747867934702, -122.41332535029)",160273764-60 +122650303,RC2,12087659,Citizen Assist / Service Call,09/21/2012,09/21/2012,09/21/2012 08:38:04 PM,09/21/2012 08:39:36 PM,09/21/2012 08:40:45 PM,09/21/2012 08:52:39 PM,09/21/2012 09:04:42 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 09:45:52 PM,4200 Block of BALBOA ST,SF,94121,B07,34,7273,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7754517962446, -122.504284482138)",122650303-RC2 +120940257,KM05,12031215,Medical Incident,04/03/2012,04/03/2012,04/03/2012 05:12:09 PM,04/03/2012 05:13:10 PM,04/03/2012 05:13:40 PM,04/03/2012 05:14:26 PM,04/03/2012 05:18:19 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 05:27:11 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",120940257-KM05 +112350326,T05,11077667,Structure Fire,08/23/2011,08/23/2011,08/23/2011 06:26:02 PM,08/23/2011 06:27:21 PM,08/23/2011 06:27:41 PM,08/23/2011 06:28:42 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 06:32:54 PM,1000 Block of OFARRELL ST,SF,94109,B04,3,3162,3,3,3,false,,1,TRUCK,6,2,5,Western Addition,"(37.7845957801826, -122.42200470349)",112350326-T05 +123450259,KM10,12115383,Traffic Collision,12/10/2012,12/10/2012,12/10/2012 02:23:05 PM,12/10/2012 02:23:24 PM,12/10/2012 02:23:42 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 02:24:56 PM,HARRISON ST/8TH ST,SF,94103,B03,29,2333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,South of Market,"(37.7737596997868, -122.408516330795)",123450259-KM10 +160683147,AM08,16027222,Medical Incident,03/08/2016,03/08/2016,03/08/2016 07:16:48 PM,03/08/2016 07:17:32 PM,03/08/2016 07:17:58 PM,03/08/2016 07:18:26 PM,03/08/2016 07:22:54 PM,03/08/2016 07:32:10 PM,03/08/2016 07:43:51 PM,Code 2 Transport,03/08/2016 08:02:27 PM,FULTON ST/MASONIC AV,San Francisco,94117,B05,21,4463,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",160683147-AM08 +130690011,54,13022896,Medical Incident,03/10/2013,03/09/2013,03/10/2013 12:18:46 AM,03/10/2013 12:19:36 AM,03/10/2013 12:20:50 AM,03/10/2013 12:21:17 AM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,04/25/2016 01:53:54 PM,1900 Block of 33RD AVE,SF,94116,B08,18,7544,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7507759828328, -122.491347448106)",130690011-54 +160243176,78,16009675,Medical Incident,01/24/2016,01/24/2016,01/24/2016 08:26:15 PM,01/24/2016 08:27:14 PM,01/24/2016 08:27:33 PM,01/24/2016 08:28:14 PM,01/24/2016 08:32:43 PM,01/24/2016 08:56:54 PM,01/24/2016 09:33:11 PM,Code 2 Transport,01/24/2016 10:01:41 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",160243176-78 +132150405,E09,13072808,Medical Incident,08/03/2013,08/03/2013,08/03/2013 10:40:29 PM,08/03/2013 10:41:44 PM,08/03/2013 10:41:59 PM,08/03/2013 10:42:55 PM,08/03/2013 10:46:24 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Patient Declined Transport,08/03/2013 10:58:19 PM,2700 Block of 24TH ST,SF,94110,B06,9,5531,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7528247417833, -122.407734831168)",132150405-E09 +120360181,E06,12011991,Other,02/05/2012,02/05/2012,02/05/2012 12:12:25 PM,02/05/2012 12:17:14 PM,02/05/2012 12:17:40 PM,02/05/2012 12:19:27 PM,02/05/2012 12:20:14 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,No Merit,02/05/2012 12:27:50 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,Alarm,1,ENGINE,1,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",120360181-E06 +102790093,KM05,10088631,Medical Incident,10/06/2010,10/06/2010,10/06/2010 10:02:27 AM,10/06/2010 10:02:53 AM,10/06/2010 10:03:19 AM,10/06/2010 10:19:55 AM,10/06/2010 10:21:12 AM,10/06/2010 10:35:18 AM,10/06/2010 10:50:04 AM,Code 2 Transport,10/06/2010 11:12:08 AM,400 Block of BATTERY ST,SF,94111,B01,13,1161,2,2,2,false,,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7952390728016, -122.400302577155)",102790093-KM05 +102260256,E38,10071215,Traffic Collision,08/14/2010,08/14/2010,08/14/2010 05:58:53 PM,08/14/2010 05:58:53 PM,08/14/2010 05:59:14 PM,08/14/2010 06:00:12 PM,08/14/2010 06:01:15 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 06:12:05 PM,GOUGH ST/CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,false,,1,ENGINE,3,4,2,Pacific Heights,"(37.7899518840675, -122.42561605443)",102260256-E38 +121430205,T01,12047554,Alarms,05/22/2012,05/22/2012,05/22/2012 01:37:50 PM,05/22/2012 01:39:42 PM,05/22/2012 01:42:20 PM,05/22/2012 01:42:31 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 02:01:58 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",121430205-T01 +102400152,KM11,10075677,Medical Incident,08/28/2010,08/28/2010,08/28/2010 12:13:05 PM,08/28/2010 12:13:52 PM,08/28/2010 12:14:22 PM,08/28/2010 12:15:01 PM,08/28/2010 12:25:15 PM,08/28/2010 12:34:23 PM,08/28/2010 12:39:56 PM,Code 2 Transport,08/28/2010 12:59:40 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,E,E,3,false,,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",102400152-KM11 +132120225,E22,13071696,Medical Incident,07/31/2013,07/31/2013,07/31/2013 03:16:12 PM,07/31/2013 03:19:00 PM,07/31/2013 03:19:26 PM,07/31/2013 03:20:29 PM,07/31/2013 03:22:42 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,07/31/2013 03:45:13 PM,2500 Block of LINCOLN WAY,SF,94122,B08,22,7452,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7650045363484, -122.485288145155)",132120225-E22 +160332246,58,16013044,Medical Incident,02/02/2016,02/02/2016,02/02/2016 03:36:56 PM,02/02/2016 03:37:42 PM,02/02/2016 03:38:01 PM,02/02/2016 03:38:24 PM,02/02/2016 03:52:29 PM,02/02/2016 04:15:51 PM,02/02/2016 04:45:58 PM,Code 2 Transport,02/02/2016 07:19:43 PM,100 Block of THRIFT ST,San Francisco,94112,B09,33,8465,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7175209597826, -122.457583925506)",160332246-58 +121910230,E09,12063630,Structure Fire,07/09/2012,07/09/2012,07/09/2012 03:17:00 PM,07/09/2012 03:17:39 PM,07/09/2012 03:17:55 PM,07/09/2012 03:19:04 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 03:27:19 PM,100 Block of NAUTILUS DR,SF,94124,B10,17,6665,3,3,3,true,Fire,1,ENGINE,9,10,10,Bayview Hunters Point,"(37.728115531126, -122.372708921939)",121910230-E09 +140260012,84,14008756,Medical Incident,01/26/2014,01/25/2014,01/26/2014 12:43:12 AM,01/26/2014 12:44:04 AM,01/26/2014 12:45:23 AM,01/26/2014 12:45:46 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 12:55:59 AM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,Potentially Life-Threatening,1,MEDIC,5,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",140260012-84 +122480040,81,12081872,Medical Incident,09/04/2012,09/03/2012,09/04/2012 02:49:04 AM,09/04/2012 02:49:48 AM,09/04/2012 02:50:00 AM,09/04/2012 02:50:33 AM,04/25/2016 01:56:56 PM,09/04/2012 03:09:25 AM,09/04/2012 03:12:13 AM,Code 3 Transport,09/04/2012 03:44:46 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",122480040-81 +132320014,75,13078221,Medical Incident,08/20/2013,08/19/2013,08/20/2013 01:40:35 AM,08/20/2013 01:41:40 AM,08/20/2013 01:42:08 AM,08/20/2013 01:43:35 AM,08/20/2013 01:49:21 AM,08/20/2013 02:00:15 AM,08/20/2013 02:26:39 AM,Code 2 Transport,08/20/2013 03:03:56 AM,700 Block of BRUSSELS ST,SF,94134,B10,44,6325,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7229051925223, -122.403886645844)",132320014-75 +123660286,E02,12122532,Traffic Collision,12/31/2012,12/31/2012,12/31/2012 06:33:12 PM,12/31/2012 06:34:06 PM,12/31/2012 06:34:21 PM,12/31/2012 06:35:43 PM,12/31/2012 06:39:05 PM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,12/31/2012 06:50:15 PM,600 Block of BAY ST,SF,94133,B01,28,1614,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8050301528697, -122.417867154077)",123660286-E02 +112020042,D2,11066530,Structure Fire,07/21/2011,07/20/2011,07/21/2011 04:40:05 AM,07/21/2011 04:40:56 AM,07/21/2011 04:41:38 AM,07/21/2011 04:43:07 AM,07/21/2011 04:46:22 AM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Fire,07/21/2011 04:53:35 AM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,,1,CHIEF,8,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",112020042-D2 +110050324,B04,11001754,Structure Fire,01/05/2011,01/05/2011,01/05/2011 06:22:25 PM,01/05/2011 06:22:58 PM,01/05/2011 06:23:31 PM,01/05/2011 06:24:38 PM,01/05/2011 06:28:03 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/05/2011 06:39:40 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,false,,1,CHIEF,5,4,3,Nob Hill,"(37.7882286861562, -122.415995198292)",110050324-B04 +131330070,54,13044771,Medical Incident,05/13/2013,05/12/2013,05/13/2013 07:13:46 AM,05/13/2013 07:14:34 AM,05/13/2013 07:15:29 AM,05/13/2013 07:15:40 AM,05/13/2013 07:28:46 AM,05/13/2013 07:52:56 AM,05/13/2013 08:17:16 AM,Code 2 Transport,05/13/2013 08:53:15 AM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",131330070-54 +110320068,82,11010398,Medical Incident,02/01/2011,02/01/2011,02/01/2011 08:51:54 AM,02/01/2011 08:53:26 AM,02/01/2011 08:53:41 AM,02/01/2011 08:54:23 AM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,04/25/2016 02:06:19 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",110320068-82 +131650031,E06,13055920,Medical Incident,06/14/2013,06/13/2013,06/14/2013 02:55:31 AM,06/14/2013 02:59:13 AM,06/14/2013 02:59:30 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 03:01:18 AM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",131650031-E06 +160521030,57,16020750,Medical Incident,02/21/2016,02/21/2016,02/21/2016 09:39:43 AM,02/21/2016 09:40:30 AM,02/21/2016 10:00:08 AM,02/21/2016 10:00:20 AM,02/21/2016 10:14:52 AM,02/21/2016 10:35:12 AM,02/21/2016 10:57:38 AM,Code 2 Transport,02/21/2016 11:37:44 AM,300 Block of 18TH AVE,San Francisco,94121,B07,31,7164,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7814031484353, -122.477238000486)",160521030-57 +112400069,B04,11079111,Alarms,08/28/2011,08/27/2011,08/28/2011 05:19:07 AM,08/28/2011 05:19:39 AM,08/28/2011 05:19:44 AM,08/28/2011 05:23:17 AM,08/28/2011 05:24:12 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 05:29:56 AM,1300 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7818977107871, -122.432353853525)",112400069-B04 +133490107,B01,13118412,Structure Fire,12/15/2013,12/15/2013,12/15/2013 09:26:54 AM,12/15/2013 09:27:33 AM,12/15/2013 09:28:07 AM,12/15/2013 09:28:53 AM,12/15/2013 09:31:10 AM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 12:52:20 PM,1600 Block of POWELL ST,SF,94133,B01,2,1352,3,3,3,false,Fire,1,CHIEF,1,1,3,Chinatown,"(37.7997797092439, -122.410670608693)",133490107-B01 +160272712,KM05,16010772,Medical Incident,01/27/2016,01/27/2016,01/27/2016 04:41:01 PM,01/27/2016 04:42:01 PM,01/27/2016 04:42:27 PM,01/27/2016 04:43:00 PM,01/27/2016 04:48:02 PM,01/27/2016 05:07:50 PM,01/27/2016 05:30:40 PM,Code 2 Transport,01/27/2016 06:06:20 PM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",160272712-KM05 +120620355,E40,12020542,Traffic Collision,03/02/2012,03/02/2012,03/02/2012 09:38:20 PM,03/02/2012 09:39:08 PM,03/02/2012 09:39:31 PM,03/02/2012 09:40:41 PM,03/02/2012 09:43:14 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,No Merit,03/02/2012 09:45:44 PM,20TH AV/ORTEGA ST,SF,94116,B08,40,7421,2,2,2,false,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7523291026289, -122.477414975855)",120620355-E40 +110250449,E38,11008427,Medical Incident,01/25/2011,01/25/2011,01/25/2011 10:17:14 PM,01/25/2011 10:18:48 PM,01/25/2011 10:19:09 PM,01/25/2011 10:20:22 PM,01/25/2011 10:22:20 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 10:37:34 PM,1600 Block of POST ST,SF,94115,B04,38,3364,3,2,2,false,,1,ENGINE,1,4,5,Japantown,"(37.7856200211531, -122.428953785897)",110250449-E38 +160022152,76,16000786,Medical Incident,01/02/2016,01/02/2016,01/02/2016 03:57:15 PM,01/02/2016 04:00:12 PM,01/02/2016 04:00:31 PM,01/02/2016 04:00:45 PM,01/02/2016 04:03:50 PM,01/02/2016 04:14:31 PM,01/02/2016 04:20:28 PM,Code 2 Transport,01/02/2016 04:44:47 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160022152-76 +140150165,E03,14005116,Structure Fire,01/15/2014,01/15/2014,01/15/2014 11:50:27 AM,01/15/2014 11:51:01 AM,01/15/2014 11:51:31 AM,01/15/2014 11:53:37 AM,01/15/2014 11:55:55 AM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/15/2014 12:26:12 PM,1700 Block of CLAY ST,SF,94109,B04,41,3154,3,3,3,true,Alarm,1,ENGINE,6,4,3,Nob Hill,"(37.7922247161992, -122.421862574917)",140150165-E03 +110140124,E36,11004599,Alarms,01/14/2011,01/14/2011,01/14/2011 11:02:36 AM,01/14/2011 11:03:45 AM,01/14/2011 11:03:54 AM,01/14/2011 11:05:38 AM,01/14/2011 11:07:03 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 11:17:22 AM,200 Block of FRANKLIN ST,SF,94102,B02,36,3213,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7763842191709, -122.421260388531)",110140124-E36 +111650400,E21,11054622,Medical Incident,06/14/2011,06/14/2011,06/14/2011 10:48:19 PM,06/14/2011 10:48:55 PM,06/14/2011 10:49:30 PM,06/14/2011 10:51:10 PM,06/14/2011 10:53:35 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/14/2011 11:01:25 PM,2100 Block of FULTON ST,SF,94117,B05,21,4542,3,3,3,false,,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7750309504676, -122.452073282988)",111650400-E21 +122160357,E05,12071822,Other,08/03/2012,08/03/2012,08/03/2012 08:30:37 PM,08/03/2012 08:30:47 PM,08/03/2012 08:31:07 PM,08/03/2012 08:31:56 PM,08/03/2012 08:45:30 PM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,08/03/2012 08:54:39 PM,1100 Block of ELLIS ST,SF,94109,B02,5,3322,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7831387146973, -122.425928739913)",122160357-E05 +130830083,E26,13027684,Traffic Collision,03/24/2013,03/24/2013,03/24/2013 08:27:54 AM,03/24/2013 08:30:26 AM,03/24/2013 08:32:04 AM,03/24/2013 08:32:58 AM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/24/2013 08:37:01 AM,200 Block of SAN JOSE AVE,SF,94110,B09,15,8313,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,8,Mission,"(37.7512439644709, -122.421585334305)",130830083-E26 +160252678,76,16010022,Medical Incident,01/25/2016,01/25/2016,01/25/2016 04:49:51 PM,01/25/2016 04:51:14 PM,01/25/2016 04:51:37 PM,01/25/2016 04:51:44 PM,01/25/2016 04:55:17 PM,01/25/2016 05:09:00 PM,01/25/2016 05:14:38 PM,Code 2 Transport,01/25/2016 05:36:57 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160252678-76 +111870395,85,11062002,Medical Incident,07/06/2011,07/06/2011,07/06/2011 11:36:04 PM,07/06/2011 11:37:16 PM,07/06/2011 11:39:08 PM,07/06/2011 11:39:30 PM,07/06/2011 11:45:55 PM,07/06/2011 11:55:59 PM,07/07/2011 12:16:54 AM,Code 2 Transport,07/07/2011 12:42:28 AM,0 Block of DORE ST,SF,94103,B02,36,2342,2,2,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",111870395-85 +102800047,AP,10088902,Other,10/07/2010,10/06/2010,10/07/2010 05:37:53 AM,10/07/2010 05:37:54 AM,10/07/2010 05:37:54 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Fire,10/07/2010 05:53:50 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102800047-AP +130960277,T13,13032256,Structure Fire,04/06/2013,04/06/2013,04/06/2013 04:51:05 PM,04/06/2013 04:51:06 PM,04/06/2013 04:51:32 PM,04/06/2013 04:52:13 PM,04/06/2013 04:55:41 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 04:55:56 PM,600 Block of MARKET ST,SF,94105,B03,1,2211,3,3,3,true,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",130960277-T13 +103230330,58,10103593,Medical Incident,11/19/2010,11/19/2010,11/19/2010 07:27:33 PM,11/19/2010 07:29:20 PM,11/19/2010 07:29:32 PM,11/19/2010 07:30:04 PM,11/19/2010 07:43:35 PM,11/19/2010 07:43:53 PM,11/19/2010 07:54:39 PM,Code 2 Transport,11/19/2010 08:12:53 PM,800 Block of BARNEVELD AVE,SF,94134,B10,42,6362,3,2,2,true,,1,MEDIC,2,10,9,Portola,"(37.7323326205367, -122.40695846592)",103230330-58 +123480061,E42,12116248,Medical Incident,12/13/2012,12/12/2012,12/13/2012 06:04:51 AM,12/13/2012 06:07:04 AM,12/13/2012 06:07:27 AM,12/13/2012 06:09:17 AM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Other,12/13/2012 06:11:45 AM,300 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",123480061-E42 +160640457,AM24,16025364,Medical Incident,03/04/2016,03/03/2016,03/04/2016 05:33:58 AM,03/04/2016 05:35:32 AM,03/04/2016 05:35:47 AM,03/04/2016 05:36:58 AM,03/04/2016 05:56:41 AM,03/04/2016 06:09:29 AM,03/04/2016 06:19:09 AM,Code 2 Transport,03/04/2016 06:50:51 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160640457-AM24 +132390194,T07,13080626,Alarms,08/27/2013,08/27/2013,08/27/2013 01:11:31 PM,08/27/2013 01:12:36 PM,08/27/2013 01:12:43 PM,08/27/2013 01:14:28 PM,08/27/2013 01:16:57 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 01:29:39 PM,3600 Block of 20TH ST,SF,94110,B06,7,5445,3,3,3,false,Alarm,1,TRUCK,2,6,8,Mission,"(37.7583767667371, -122.422374882262)",132390194-T07 +121200173,AM06,12039818,Medical Incident,04/29/2012,04/29/2012,04/29/2012 11:11:51 AM,04/29/2012 11:12:50 AM,04/29/2012 11:13:59 AM,04/25/2016 01:58:56 PM,04/29/2012 11:15:02 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Patient Declined Transport,04/29/2012 11:17:43 AM,MASONIC AV/HAIGHT ST,SF,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",121200173-AM06 +123040195,RS1,12100906,Medical Incident,10/30/2012,10/30/2012,10/30/2012 03:09:05 PM,10/30/2012 03:09:26 PM,10/30/2012 03:13:24 PM,10/30/2012 03:14:38 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/30/2012 03:16:20 PM,200 Block of GEARY ST,SF,94108,B01,1,1323,2,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",123040195-RS1 +133030260,79,13102991,Medical Incident,10/30/2013,10/30/2013,10/30/2013 04:29:13 PM,10/30/2013 04:30:03 PM,10/30/2013 04:30:20 PM,10/30/2013 04:30:57 PM,10/30/2013 04:37:58 PM,10/30/2013 04:52:13 PM,10/30/2013 04:59:27 PM,Code 2 Transport,10/30/2013 05:48:53 PM,200 Block of SHOTWELL ST,SF,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7644380015359, -122.416376372761)",133030260-79 +132780060,85,13094395,Medical Incident,10/05/2013,10/04/2013,10/05/2013 04:13:56 AM,10/05/2013 04:16:15 AM,10/05/2013 04:17:28 AM,10/05/2013 04:17:43 AM,04/25/2016 01:50:25 PM,10/05/2013 04:34:55 AM,10/05/2013 04:46:59 AM,Code 2 Transport,10/05/2013 05:28:27 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7794880680759, -122.40694292477)",132780060-85 +133530229,E41,13119948,Medical Incident,12/19/2013,12/19/2013,12/19/2013 02:35:55 PM,12/19/2013 02:37:36 PM,12/19/2013 02:38:42 PM,12/19/2013 02:39:42 PM,12/19/2013 02:40:54 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 02:53:40 PM,1300 Block of JONES ST,SF,94109,B01,41,1466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",133530229-E41 +110340337,E11,11011294,Medical Incident,02/03/2011,02/03/2011,02/03/2011 08:10:37 PM,02/03/2011 08:12:01 PM,02/03/2011 08:12:37 PM,02/03/2011 08:13:27 PM,02/03/2011 08:15:08 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,02/03/2011 08:20:45 PM,MISSION ST/26TH ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7490412884368, -122.418135251703)",110340337-E11 +160223746,65,16008961,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:13:31 PM,01/22/2016 10:16:01 PM,01/22/2016 10:16:27 PM,01/22/2016 10:16:42 PM,01/22/2016 10:27:32 PM,01/22/2016 10:40:54 PM,01/22/2016 10:44:27 PM,Code 2 Transport,01/22/2016 11:08:36 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160223746-65 +132810293,E05,13095694,Medical Incident,10/08/2013,10/08/2013,10/08/2013 05:27:36 PM,10/08/2013 05:28:52 PM,10/08/2013 05:32:56 PM,04/25/2016 01:50:21 PM,10/08/2013 05:34:41 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/08/2013 05:37:35 PM,TURK ST/GOUGH ST,SF,94102,B02,5,3263,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Western Addition,"(37.7815356107047, -122.423917826838)",132810293-E05 +111050216,E32,11034794,Medical Incident,04/15/2011,04/15/2011,04/15/2011 03:13:03 PM,04/15/2011 03:13:44 PM,04/15/2011 03:14:46 PM,04/15/2011 03:16:32 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 03:17:10 PM,0 Block of MOFFITT ST,SF,94131,B06,26,8111,3,3,3,true,,1,ENGINE,3,6,8,Glen Park,"(37.7371435128093, -122.432773119399)",111050216-E32 +112790029,B02,11092223,Alarms,10/06/2011,10/05/2011,10/06/2011 02:11:22 AM,10/06/2011 02:12:24 AM,10/06/2011 02:12:40 AM,04/25/2016 02:02:18 PM,10/06/2011 02:17:41 AM,04/25/2016 02:02:18 PM,04/25/2016 02:02:18 PM,Other,10/06/2011 02:34:09 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,false,,1,CHIEF,3,3,6,South of Market,"(37.7826911213472, -122.409536662692)",112790029-B02 +160744101,53,16029525,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:10:15 PM,03/14/2016 11:11:17 PM,03/14/2016 11:11:32 PM,03/14/2016 11:11:54 PM,03/14/2016 11:16:45 PM,03/14/2016 11:33:16 PM,03/14/2016 11:39:00 PM,Code 2 Transport,03/15/2016 12:46:33 AM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160744101-53 +120730327,72,12024346,Medical Incident,03/13/2012,03/13/2012,03/13/2012 07:57:22 PM,03/13/2012 07:57:40 PM,03/13/2012 07:58:02 PM,03/13/2012 07:58:36 PM,03/13/2012 08:06:53 PM,03/13/2012 08:27:29 PM,03/13/2012 08:34:55 PM,Code 2 Transport,03/13/2012 08:54:43 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",120730327-72 +140870282,KM10,14029358,Medical Incident,03/28/2014,03/28/2014,03/28/2014 05:14:30 PM,03/28/2014 05:14:46 PM,03/28/2014 05:21:41 PM,03/28/2014 05:22:18 PM,03/28/2014 05:29:26 PM,03/28/2014 05:35:13 PM,03/28/2014 05:43:46 PM,Code 2 Transport,03/28/2014 06:14:33 PM,200 Block of TURK ST,SAN FRANCISCO,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",140870282-KM10 +160634033,55,16025304,Medical Incident,03/03/2016,03/03/2016,03/03/2016 11:49:08 PM,03/03/2016 11:49:08 PM,03/03/2016 11:49:16 PM,03/03/2016 11:49:42 PM,03/03/2016 11:54:26 PM,03/04/2016 12:00:52 AM,03/04/2016 12:05:04 AM,Code 2 Transport,03/04/2016 12:55:03 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",160634033-55 +140850015,94,14028485,Medical Incident,03/26/2014,03/25/2014,03/26/2014 02:00:46 AM,03/26/2014 02:01:08 AM,03/26/2014 02:01:39 AM,03/26/2014 02:03:33 AM,03/26/2014 02:05:43 AM,03/26/2014 02:20:54 AM,03/26/2014 02:38:24 AM,Code 2 Transport,03/26/2014 03:10:30 AM,21ST ST/VALENCIA ST,SAN FRANCISCO,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7569020093743, -122.421117541576)",140850015-94 +131520115,KM04,13051439,Medical Incident,06/01/2013,06/01/2013,06/01/2013 09:31:39 AM,06/01/2013 09:32:12 AM,06/01/2013 09:33:18 AM,04/25/2016 01:52:31 PM,06/01/2013 09:38:10 AM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Patient Declined Transport,06/01/2013 10:36:32 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",131520115-KM04 +160261976,74,16010317,Medical Incident,01/26/2016,01/26/2016,01/26/2016 01:33:29 PM,01/26/2016 01:33:29 PM,01/26/2016 01:34:33 PM,01/26/2016 01:35:12 PM,01/26/2016 01:44:36 PM,01/26/2016 02:07:47 PM,01/26/2016 02:19:08 PM,Code 2 Transport,01/26/2016 03:02:47 PM,BAY ST/THE EMBARCADERO NOR,San Francisco,94133,B01,28,1255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8065688614821, -122.406429633461)",160261976-74 +122950178,67,12097846,Medical Incident,10/21/2012,10/21/2012,10/21/2012 01:30:56 PM,10/21/2012 01:33:29 PM,10/21/2012 01:33:45 PM,10/21/2012 01:34:26 PM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,Other,10/21/2012 01:42:29 PM,500 Block of GEARY ST,SF,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869413406164, -122.411939021128)",122950178-67 +122350203,E01,12077887,Alarms,08/22/2012,08/22/2012,08/22/2012 03:00:48 PM,08/22/2012 03:01:28 PM,08/22/2012 03:01:35 PM,08/22/2012 03:02:50 PM,08/22/2012 03:05:00 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Other,08/22/2012 03:27:10 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7815063666429, -122.407932868203)",122350203-E01 +110460334,59,11015358,Structure Fire,02/15/2011,02/15/2011,02/15/2011 09:30:21 PM,02/15/2011 09:31:02 PM,02/15/2011 09:31:17 PM,02/15/2011 09:34:12 PM,02/15/2011 09:45:27 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 09:52:15 PM,2500 Block of WASHINGTON ST,SF,94115,B04,38,3545,3,3,3,true,,1,MEDIC,7,4,2,Pacific Heights,"(37.791541565931, -122.435214356646)",110460334-59 +121550220,B04,12051345,Administrative,06/03/2012,06/03/2012,06/03/2012 03:01:03 PM,06/03/2012 03:01:29 PM,06/03/2012 03:01:40 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Fire,06/03/2012 03:02:02 PM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,false,,1,CHIEF,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",121550220-B04 +111940082,RC1,11063966,Traffic Collision,07/13/2011,07/13/2011,07/13/2011 08:11:40 AM,07/13/2011 08:13:28 AM,07/13/2011 08:14:24 AM,07/13/2011 08:15:44 AM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 08:20:45 AM,800 Block of CAROLINA ST,SF,94107,B10,37,2544,3,3,3,true,,1,RESCUE CAPTAIN,3,10,10,Potrero Hill,"(37.7586517986248, -122.400101304192)",111940082-RC1 +160753528,58,16029877,Medical Incident,03/15/2016,03/15/2016,03/15/2016 08:15:55 PM,03/15/2016 08:17:07 PM,03/15/2016 08:18:57 PM,03/15/2016 08:19:07 PM,03/15/2016 08:21:43 PM,03/15/2016 08:47:51 PM,03/15/2016 09:20:58 PM,Code 2 Transport,03/15/2016 09:44:29 PM,1300 Block of WASHINGTON ST,San Francisco,94109,B01,41,1466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.79405405477, -122.415456646894)",160753528-58 +140750158,E39,14025370,Alarms,03/16/2014,03/16/2014,03/16/2014 10:47:21 AM,03/16/2014 10:47:21 AM,03/16/2014 10:48:30 AM,03/16/2014 10:49:58 AM,03/16/2014 10:56:24 AM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Fire,03/16/2014 10:59:52 AM,700 Block of WAWONA ST,SAN FRANCISCO,94132,B08,39,7356,3,3,3,true,Alarm,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7374238355845, -122.474755479354)",140750158-E39 +133160045,B10,13107321,Alarms,11/12/2013,11/11/2013,11/12/2013 07:11:29 AM,11/12/2013 07:11:29 AM,11/12/2013 07:11:56 AM,11/12/2013 07:14:16 AM,11/12/2013 07:19:58 AM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 07:21:40 AM,200 Block of ORDWAY ST,SF,94134,B10,44,6313,3,3,3,false,Alarm,1,CHIEF,3,10,10,Portola,"(37.7198454609097, -122.403098664835)",133160045-B10 +160300588,57,16011676,Medical Incident,01/30/2016,01/29/2016,01/30/2016 05:20:47 AM,01/30/2016 05:23:40 AM,01/30/2016 05:24:59 AM,01/30/2016 05:25:20 AM,01/30/2016 05:28:33 AM,01/30/2016 05:58:19 AM,01/30/2016 06:09:28 AM,Code 2 Transport,01/30/2016 06:45:37 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,A,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160300588-57 +123050200,B04,12101202,Structure Fire,10/31/2012,10/31/2012,10/31/2012 12:25:33 PM,10/31/2012 12:25:33 PM,10/31/2012 12:26:10 PM,10/31/2012 12:27:18 PM,10/31/2012 12:34:18 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Fire,10/31/2012 12:34:22 PM,2300 Block of JACKSON ST,SF,94115,B04,38,3465,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7926300152034, -122.433748587874)",123050200-B04 +103390244,B02,10108572,Structure Fire,12/05/2010,12/05/2010,12/05/2010 03:40:01 PM,12/05/2010 03:40:01 PM,12/05/2010 03:40:09 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 03:44:22 PM,0 Block of LAGUNA ST,SF,94102,B02,36,3416,3,3,3,false,,1,CHIEF,2,2,8,Hayes Valley,"(37.7707597722717, -122.425026833485)",103390244-B02 +111370144,E43,11045542,Medical Incident,05/17/2011,05/17/2011,05/17/2011 11:32:50 AM,05/17/2011 11:33:37 AM,05/17/2011 11:33:56 AM,05/17/2011 11:34:12 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 11:51:42 AM,5000 Block of MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,ENGINE,2,9,11,Outer Mission,"(37.7174988976749, -122.440357992837)",111370144-E43 +160693623,72,16027655,Medical Incident,03/09/2016,03/09/2016,03/09/2016 09:28:17 PM,03/09/2016 09:30:50 PM,03/09/2016 09:32:14 PM,03/09/2016 09:32:19 PM,03/09/2016 09:38:14 PM,03/09/2016 10:24:39 PM,03/09/2016 11:01:48 PM,Code 2 Transport,03/09/2016 11:36:21 PM,600 Block of EDINBURGH ST,San Francisco,94112,B09,43,6137,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7188747615519, -122.433710461002)",160693623-72 +160410318,72,16016296,Medical Incident,02/10/2016,02/09/2016,02/10/2016 03:57:10 AM,02/10/2016 03:58:51 AM,02/10/2016 03:59:46 AM,02/10/2016 04:00:23 AM,02/10/2016 04:06:14 AM,02/10/2016 04:26:18 AM,02/10/2016 04:28:27 AM,Code 2 Transport,02/10/2016 05:32:47 AM,FULTON ST/ARGUELLO BL,San Francisco,94122,B07,21,4561,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7743088945696, -122.458371098705)",160410318-72 +160703256,74,16027986,Medical Incident,03/10/2016,03/10/2016,03/10/2016 08:00:30 PM,03/10/2016 08:02:48 PM,03/10/2016 08:04:43 PM,03/10/2016 08:05:14 PM,03/10/2016 08:12:57 PM,03/10/2016 09:18:25 PM,03/10/2016 09:58:33 PM,Code 2 Transport,03/10/2016 10:28:21 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",160703256-74 +112300310,T19,11076057,Alarms,08/18/2011,08/18/2011,08/18/2011 07:38:20 PM,08/18/2011 07:39:42 PM,08/18/2011 07:41:39 PM,08/18/2011 07:43:34 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,Other,08/18/2011 07:52:14 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,,1,TRUCK,3,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",112300310-T19 +140390397,E16,14013374,Alarms,02/08/2014,02/08/2014,02/08/2014 10:19:25 PM,02/08/2014 10:21:16 PM,02/08/2014 10:21:31 PM,02/08/2014 10:24:53 PM,02/08/2014 10:29:54 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/08/2014 10:38:03 PM,0 Block of MACARTHUR AVE,FM,94123,B99,51,3344,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8054225883231, -122.42595889896)",140390397-E16 +160612287,AM08,16024374,Medical Incident,03/01/2016,03/01/2016,03/01/2016 04:17:59 PM,03/01/2016 04:18:40 PM,03/01/2016 04:19:54 PM,03/01/2016 04:24:12 PM,03/01/2016 04:24:12 PM,03/01/2016 04:41:42 PM,03/01/2016 04:52:22 PM,Code 2 Transport,03/01/2016 05:22:30 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160612287-AM08 +131390259,E03,13047058,Medical Incident,05/19/2013,05/19/2013,05/19/2013 01:46:53 PM,05/19/2013 01:48:26 PM,05/19/2013 01:49:38 PM,04/25/2016 01:52:43 PM,05/19/2013 01:52:27 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 01:55:45 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",131390259-E03 +130280026,B09,13009479,Structure Fire,01/28/2013,01/27/2013,01/28/2013 03:00:41 AM,01/28/2013 03:01:23 AM,01/28/2013 03:09:26 AM,04/25/2016 01:54:35 PM,01/28/2013 03:12:44 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 03:36:21 AM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,false,Alarm,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7444757680124, -122.507032721172)",130280026-B09 +131970258,T07,13066877,Structure Fire,07/16/2013,07/16/2013,07/16/2013 04:21:16 PM,07/16/2013 04:22:42 PM,07/16/2013 04:23:07 PM,07/16/2013 04:25:12 PM,07/16/2013 04:27:54 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/16/2013 04:35:37 PM,1400 Block of 17TH ST,SF,94107,B03,29,2425,3,3,3,false,Alarm,1,TRUCK,6,3,10,Potrero Hill,"(37.7649883073813, -122.398215133351)",131970258-T07 +160681455,79,16027102,Medical Incident,03/08/2016,03/08/2016,03/08/2016 11:33:25 AM,03/08/2016 11:34:24 AM,03/08/2016 11:34:56 AM,03/08/2016 11:35:10 AM,03/08/2016 11:40:35 AM,03/08/2016 11:47:00 AM,03/08/2016 12:04:48 PM,Code 2 Transport,03/08/2016 12:39:43 PM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",160681455-79 +160502273,84,16020141,Medical Incident,02/19/2016,02/19/2016,02/19/2016 03:22:51 PM,02/19/2016 03:23:46 PM,02/19/2016 03:24:18 PM,02/19/2016 03:25:06 PM,02/19/2016 03:37:42 PM,02/19/2016 03:53:10 PM,02/19/2016 04:02:03 PM,Code 2 Transport,02/19/2016 05:00:58 PM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7927320655845, -122.40413464889)",160502273-84 +123350251,B02,12111376,Structure Fire,11/30/2012,11/30/2012,11/30/2012 12:39:48 PM,11/30/2012 12:39:49 PM,11/30/2012 12:40:08 PM,11/30/2012 12:40:57 PM,11/30/2012 12:44:42 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:33 PM,Other,11/30/2012 12:49:34 PM,400 Block of CHURCH ST,SF,94114,B02,6,523,3,3,3,false,Alarm,1,CHIEF,2,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",123350251-B02 +122460324,RC1,12081476,Medical Incident,09/02/2012,09/02/2012,09/02/2012 06:47:03 PM,09/02/2012 06:47:30 PM,09/02/2012 06:48:12 PM,09/02/2012 06:49:37 PM,09/02/2012 06:53:45 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 07:07:36 PM,NORTH POINT ST/TAYLOR ST,SF,94133,B01,28,1433,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,North Beach,"(37.8063434294735, -122.415431571973)",122460324-RC1 +160832849,84,16033051,Medical Incident,03/23/2016,03/23/2016,03/23/2016 04:45:07 PM,03/23/2016 04:45:07 PM,03/23/2016 04:46:01 PM,03/23/2016 04:46:09 PM,03/23/2016 05:04:17 PM,03/23/2016 05:23:56 PM,03/23/2016 05:30:54 PM,Code 2 Transport,03/23/2016 06:25:27 PM,EVANS AV/TOLAND ST,San Francisco,94124,B10,9,6422,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7472623482525, -122.396008614627)",160832849-84 +111130330,79,11037471,Medical Incident,04/23/2011,04/23/2011,04/23/2011 09:10:56 PM,04/23/2011 09:11:37 PM,04/23/2011 09:11:44 PM,04/23/2011 09:11:56 PM,04/23/2011 09:17:40 PM,04/23/2011 09:33:21 PM,04/23/2011 09:44:08 PM,Code 2 Transport,04/23/2011 10:19:34 PM,3000 Block of LARKIN ST,SF,94109,B01,28,1623,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8059751797269, -122.422033155092)",111130330-79 +132300101,E36,13077594,Medical Incident,08/18/2013,08/17/2013,08/18/2013 07:43:49 AM,08/18/2013 07:45:03 AM,08/18/2013 07:56:46 AM,08/18/2013 07:57:54 AM,08/18/2013 08:02:38 AM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,Other,08/18/2013 08:03:31 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",132300101-E36 +132850110,B02,13096890,Structure Fire,10/12/2013,10/12/2013,10/12/2013 09:20:30 AM,10/12/2013 09:21:30 AM,10/12/2013 09:21:49 AM,10/12/2013 09:22:30 AM,10/12/2013 09:24:56 AM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Fire,10/12/2013 10:01:12 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",132850110-B02 +132250295,94,13076028,Medical Incident,08/13/2013,08/13/2013,08/13/2013 04:20:39 PM,08/13/2013 04:21:10 PM,08/13/2013 04:21:34 PM,08/13/2013 04:22:10 PM,08/13/2013 04:26:14 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 05:01:31 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",132250295-94 +160701845,KM12,16027866,Medical Incident,03/10/2016,03/10/2016,03/10/2016 01:33:21 PM,03/10/2016 01:34:54 PM,03/10/2016 01:35:28 PM,03/10/2016 01:36:20 PM,03/10/2016 01:45:56 PM,03/10/2016 02:00:21 PM,03/10/2016 02:11:23 PM,Code 2 Transport,03/10/2016 03:00:33 PM,1500 Block of COLE ST,San Francisco,94117,B05,12,5257,2,3,3,false,Non Life-threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7604877592567, -122.448956117984)",160701845-KM12 +132520301,E20,13085282,Structure Fire,09/09/2013,09/09/2013,09/09/2013 07:03:26 PM,09/09/2013 07:04:51 PM,09/09/2013 07:05:26 PM,09/09/2013 07:06:52 PM,09/09/2013 07:09:40 PM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Other,09/09/2013 07:46:38 PM,400 Block of WARREN DR,SF,94131,B08,20,5377,3,3,3,true,Fire,1,ENGINE,1,8,7,Inner Sunset,"(37.7579474132621, -122.462145213369)",132520301-E20 +132700325,KM01,13091815,Medical Incident,09/27/2013,09/27/2013,09/27/2013 06:06:36 PM,09/27/2013 06:08:03 PM,09/27/2013 06:08:20 PM,09/27/2013 06:09:02 PM,09/27/2013 06:20:03 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Medical Examiner,09/27/2013 08:20:36 PM,3700 Block of BRODERICK ST,SF,94123,B04,16,4216,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Marina,"(37.8048883733226, -122.445622996571)",132700325-KM01 +133310205,E36,13112385,Medical Incident,11/27/2013,11/27/2013,11/27/2013 03:13:38 PM,11/27/2013 03:14:01 PM,11/27/2013 03:14:20 PM,11/27/2013 03:15:45 PM,11/27/2013 03:20:57 PM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/27/2013 03:34:58 PM,1200 Block of PAGE ST,SF,94117,B05,21,4251,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7717293101583, -122.441377954936)",133310205-E36 +121680403,E16,12055915,Medical Incident,06/16/2012,06/16/2012,06/16/2012 09:49:32 PM,06/16/2012 09:49:55 PM,06/16/2012 09:50:59 PM,06/16/2012 09:52:56 PM,06/16/2012 09:56:29 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/16/2012 10:03:32 PM,3100 Block of LYON ST,SF,94123,B04,16,4326,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7998636121859, -122.447470967489)",121680403-E16 +110140193,B02,11004656,Alarms,01/14/2011,01/14/2011,01/14/2011 02:12:51 PM,01/14/2011 02:15:24 PM,01/14/2011 02:15:36 PM,01/14/2011 02:16:19 PM,01/14/2011 02:19:51 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 02:34:07 PM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,3,3,false,,1,CHIEF,3,2,8,Mission,"(37.766322531621, -122.424723870424)",110140193-B02 +123030166,E08,12100494,Medical Incident,10/29/2012,10/28/2012,10/29/2012 06:34:21 AM,10/29/2012 06:34:55 AM,10/29/2012 06:35:49 AM,10/29/2012 06:38:39 AM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/29/2012 06:44:11 AM,700 Block of 4TH ST,SF,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",123030166-E08 +122210278,T12,12073344,Other,08/08/2012,08/08/2012,08/08/2012 05:53:08 PM,08/08/2012 05:53:18 PM,08/08/2012 05:53:32 PM,08/08/2012 05:54:26 PM,08/08/2012 06:01:29 PM,04/25/2016 01:57:20 PM,04/25/2016 01:57:20 PM,Other,08/08/2012 06:10:37 PM,100 Block of SAINT GERMAIN AVE,SF,94114,B05,20,5262,3,3,3,false,Alarm,1,TRUCK,2,5,7,Twin Peaks,"(37.7574611272384, -122.451170334224)",122210278-T12 +132080138,RC2,13070362,Medical Incident,07/27/2013,07/27/2013,07/27/2013 11:00:53 AM,07/27/2013 11:01:24 AM,07/27/2013 11:05:40 AM,04/25/2016 01:51:36 PM,07/27/2013 11:13:29 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/27/2013 11:13:36 AM,2400 Block of 32ND AVE,SF,94116,B08,18,7546,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7415063192431, -122.489486072568)",132080138-RC2 +102920220,E12,10093145,Structure Fire,10/19/2010,10/19/2010,10/19/2010 02:33:41 PM,10/19/2010 02:33:41 PM,10/19/2010 02:34:22 PM,10/19/2010 02:35:21 PM,10/19/2010 02:36:36 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Fire,10/19/2010 02:45:26 PM,100 Block of GRATTAN ST,SF,94117,B05,12,516,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7638803864645, -122.450310275747)",102920220-E12 +120930058,E14,12030707,Medical Incident,04/02/2012,04/01/2012,04/02/2012 07:10:00 AM,04/02/2012 07:10:53 AM,04/02/2012 07:11:35 AM,04/02/2012 07:12:34 AM,04/02/2012 07:14:50 AM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Other,04/02/2012 07:31:42 AM,400 Block of 20TH AVE,SF,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7793682984654, -122.479380963947)",120930058-E14 +112580015,E07,11084914,Citizen Assist / Service Call,09/15/2011,09/14/2011,09/15/2011 01:23:58 AM,09/15/2011 01:24:32 AM,09/15/2011 01:24:42 AM,09/15/2011 01:27:02 AM,09/15/2011 01:31:34 AM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Fire,09/15/2011 01:32:28 AM,20TH ST/POTRERO AV,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7593654899942, -122.406946874696)",112580015-E07 +121060254,FB1,12035196,Outside Fire,04/15/2012,04/15/2012,04/15/2012 04:19:53 PM,04/15/2012 04:19:53 PM,04/15/2012 04:20:06 PM,04/15/2012 04:23:27 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/15/2012 04:25:33 PM,100 Block of CARGO WAY,SF,94124,B10,25,994,3,3,3,false,Alarm,1,SUPPORT,4,10,10,Bayview Hunters Point,"(37.7420919993497, -122.379931669849)",121060254-FB1 +111190254,T17,11039317,Alarms,04/29/2011,04/29/2011,04/29/2011 05:23:08 PM,04/29/2011 05:24:27 PM,04/29/2011 05:25:12 PM,04/29/2011 05:26:53 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 05:30:41 PM,1100 Block of GILMAN AVE,SF,94124,B10,17,6613,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7197791000327, -122.390985214053)",111190254-T17 +131170069,E13,13039265,Alarms,04/27/2013,04/26/2013,04/27/2013 07:35:42 AM,04/27/2013 07:37:46 AM,04/27/2013 07:37:54 AM,04/27/2013 07:39:01 AM,04/27/2013 07:41:33 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/27/2013 07:53:42 AM,500 Block of MARKET ST,SF,94105,B03,1,2144,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",131170069-E13 +113380011,79,11111855,Medical Incident,12/04/2011,12/03/2011,12/04/2011 12:39:10 AM,12/04/2011 12:39:39 AM,12/04/2011 12:40:31 AM,12/04/2011 12:41:24 AM,12/04/2011 12:55:01 AM,12/04/2011 01:04:10 AM,12/04/2011 01:16:50 AM,Code 2 Transport,12/04/2011 01:39:05 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",113380011-79 +113470217,RS2,11115130,Structure Fire,12/13/2011,12/13/2011,12/13/2011 01:02:05 PM,12/13/2011 01:03:19 PM,12/13/2011 01:03:31 PM,12/13/2011 01:05:10 PM,12/13/2011 01:09:17 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,Other,12/13/2011 01:09:53 PM,100 Block of ELLERT ST,SF,94110,B06,32,5742,3,3,3,false,,1,RESCUE SQUAD,5,6,9,Bernal Heights,"(37.7384112563215, -122.417199146201)",113470217-RS2 +133010043,E29,13102170,Medical Incident,10/28/2013,10/27/2013,10/28/2013 05:53:54 AM,10/28/2013 05:55:43 AM,10/28/2013 05:58:16 AM,10/28/2013 06:00:33 AM,10/28/2013 06:03:24 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 06:17:37 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7777903094246, -122.412834332129)",133010043-E29 +140810320,E01,14027485,Traffic Collision,03/22/2014,03/22/2014,03/22/2014 07:59:27 PM,03/22/2014 08:01:48 PM,03/22/2014 08:03:22 PM,03/22/2014 08:03:22 PM,03/22/2014 08:03:44 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Patient Declined Transport,03/22/2014 08:05:06 PM,5TH ST/MARKET ST,SAN FRANCISCO,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",140810320-E01 +160063375,86,16002585,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:19:55 PM,01/06/2016 08:20:53 PM,01/06/2016 08:21:40 PM,01/06/2016 08:21:55 PM,01/06/2016 08:31:33 PM,01/06/2016 09:01:46 PM,01/06/2016 09:20:27 PM,Code 2 Transport,01/06/2016 10:12:27 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160063375-86 +122030151,KM09,12067438,Medical Incident,07/21/2012,07/21/2012,07/21/2012 11:19:22 AM,07/21/2012 11:22:06 AM,07/21/2012 11:22:52 AM,07/21/2012 11:24:07 AM,07/21/2012 11:36:19 AM,07/21/2012 11:49:25 AM,07/21/2012 11:59:39 AM,Code 2 Transport,07/21/2012 12:39:46 PM,300 Block of CLAY ST,SF,94111,B01,13,1161,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7950325941141, -122.399739729147)",122030151-KM09 +160130428,71,16005062,Medical Incident,01/13/2016,01/12/2016,01/13/2016 05:34:36 AM,01/13/2016 05:35:03 AM,01/13/2016 05:35:43 AM,01/13/2016 05:35:55 AM,01/13/2016 05:46:33 AM,01/13/2016 06:12:11 AM,01/13/2016 06:12:18 AM,Code 2 Transport,01/13/2016 06:45:10 AM,1200 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",160130428-71 +131840304,KM01,13062794,Medical Incident,07/03/2013,07/03/2013,07/03/2013 05:52:53 PM,07/03/2013 05:53:46 PM,07/03/2013 05:54:40 PM,07/03/2013 05:56:00 PM,07/03/2013 06:04:54 PM,07/03/2013 06:19:32 PM,07/03/2013 06:31:43 PM,Code 2 Transport,07/03/2013 07:04:17 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",131840304-KM01 +120160123,E39,12005362,Medical Incident,01/16/2012,01/16/2012,01/16/2012 11:25:31 AM,01/16/2012 11:26:01 AM,01/16/2012 11:26:46 AM,01/16/2012 11:27:25 AM,01/16/2012 11:33:11 AM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/16/2012 11:47:24 AM,500 Block of TERESITA BLVD,SF,94127,B09,39,8654,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.738002083532, -122.446449647871)",120160123-E39 +160690265,53,16027312,Medical Incident,03/09/2016,03/08/2016,03/09/2016 02:57:05 AM,03/09/2016 02:57:05 AM,03/09/2016 02:58:14 AM,03/09/2016 02:59:45 AM,03/09/2016 03:03:45 AM,03/09/2016 03:09:50 AM,03/09/2016 03:20:52 AM,Code 2 Transport,03/09/2016 03:38:49 AM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",160690265-53 +132140299,92,13072361,Medical Incident,08/02/2013,08/02/2013,08/02/2013 06:19:03 PM,08/02/2013 06:21:09 PM,08/02/2013 06:21:28 PM,08/02/2013 06:21:38 PM,08/02/2013 06:30:03 PM,08/02/2013 06:42:58 PM,08/02/2013 06:48:22 PM,Code 2 Transport,08/02/2013 07:00:01 PM,0 Block of COLLINGWOOD ST,SF,94114,B05,6,5415,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7614765846451, -122.436246937814)",132140299-92 +120570057,65,12018700,Citizen Assist / Service Call,02/26/2012,02/25/2012,02/26/2012 03:08:11 AM,02/26/2012 03:09:22 AM,02/26/2012 03:09:30 AM,02/26/2012 03:17:47 AM,02/26/2012 03:25:23 AM,02/26/2012 03:56:54 AM,02/26/2012 04:13:40 AM,Code 2 Transport,02/26/2012 04:55:44 AM,1900 Block of 21ST AVE,SF,94116,B08,40,7432,3,3,3,true,Alarm,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7513518688952, -122.478350883784)",120570057-65 +113510007,AM10,11116326,Medical Incident,12/17/2011,12/16/2011,12/17/2011 12:19:33 AM,12/17/2011 12:19:33 AM,12/17/2011 12:20:05 AM,12/17/2011 12:29:14 AM,12/17/2011 12:39:24 AM,12/17/2011 12:50:28 AM,12/17/2011 01:06:59 AM,Code 2 Transport,12/17/2011 01:21:39 AM,500 Block of MONTEREY BLVD,SF,94127,B09,15,8235,3,2,2,false,,1,PRIVATE,3,9,7,West of Twin Peaks,"(37.7316434245908, -122.448078912384)",113510007-AM10 +112980305,T05,11098953,Structure Fire,10/25/2011,10/25/2011,10/25/2011 06:06:19 PM,10/25/2011 06:06:40 PM,10/25/2011 06:06:59 PM,10/25/2011 06:08:04 PM,10/25/2011 06:30:03 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 06:30:04 PM,1700 Block of BUCHANAN ST,SF,94115,B04,38,3433,3,3,3,false,,1,TRUCK,9,4,5,Japantown,"(37.7860248694299, -122.429949040947)",112980305-T05 +140530023,E05,14017808,Outside Fire,02/22/2014,02/21/2014,02/22/2014 01:20:10 AM,02/22/2014 01:21:57 AM,02/22/2014 01:22:05 AM,02/22/2014 01:24:01 AM,02/22/2014 01:25:35 AM,04/25/2016 01:48:05 PM,04/25/2016 01:48:05 PM,Fire,02/22/2014 01:32:19 AM,EDDY ST/GOUGH ST,SF,94109,B02,5,3262,3,3,3,true,Fire,1,ENGINE,1,2,5,Western Addition,"(37.7824770505897, -122.424108201912)",140530023-E05 +133510441,E22,13119410,Medical Incident,12/17/2013,12/17/2013,12/17/2013 11:30:32 PM,12/17/2013 11:31:14 PM,12/17/2013 11:31:42 PM,12/17/2013 11:33:36 PM,12/17/2013 11:36:45 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/17/2013 11:52:23 PM,1800 Block of 9TH AVE,SF,94122,B08,22,7336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7537831979209, -122.465528559203)",133510441-E22 +122040176,E15,12067805,Medical Incident,07/22/2012,07/22/2012,07/22/2012 12:10:40 PM,07/22/2012 12:14:27 PM,07/22/2012 12:14:48 PM,07/22/2012 12:19:54 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 12:20:06 PM,400 Block of URBANO DR,SF,94127,B09,19,8445,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7246459835787, -122.47014141859)",122040176-E15 +110790291,KM12,11026133,Medical Incident,03/20/2011,03/20/2011,03/20/2011 05:40:51 PM,03/20/2011 05:41:21 PM,03/20/2011 05:42:44 PM,03/20/2011 05:43:15 PM,03/20/2011 05:45:42 PM,03/20/2011 06:10:09 PM,03/20/2011 06:25:55 PM,Code 3 Transport,03/20/2011 06:30:52 PM,14TH ST/FOLSOM ST,SF,94103,B02,7,5216,3,E,3,false,,1,PRIVATE,1,2,9,Mission,"(37.7685373884214, -122.415613781366)",110790291-KM12 +140280282,T16,14009611,Structure Fire,01/28/2014,01/28/2014,01/28/2014 04:41:10 PM,01/28/2014 04:42:20 PM,01/28/2014 04:43:16 PM,01/28/2014 04:44:47 PM,01/28/2014 04:46:04 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/28/2014 05:36:51 PM,0 Block of TOLEDO WAY,SF,94123,B04,16,3565,,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.8011950731509, -122.438465461238)",140280282-T16 +140960086,93,14032229,Medical Incident,04/06/2014,04/05/2014,04/06/2014 05:43:15 AM,04/06/2014 05:43:43 AM,04/06/2014 05:44:15 AM,04/06/2014 05:44:55 AM,04/06/2014 05:51:03 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,No Merit,04/06/2014 05:54:05 AM,1200 Block of TURK ST,SAN FRANCISCO,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",140960086-93 +160341711,AM14,16013381,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:55:01 PM,02/03/2016 12:56:58 PM,02/03/2016 12:59:18 PM,02/03/2016 12:59:18 PM,02/03/2016 01:14:47 PM,02/03/2016 01:23:53 PM,02/03/2016 01:43:59 PM,Code 2 Transport,02/03/2016 02:28:14 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160341711-AM14 +110440343,86,11014765,Medical Incident,02/13/2011,02/13/2011,02/13/2011 10:28:26 PM,02/13/2011 10:28:42 PM,02/13/2011 10:29:04 PM,02/13/2011 10:29:14 PM,02/13/2011 10:32:10 PM,02/13/2011 10:42:15 PM,02/13/2011 10:44:40 PM,Code 2 Transport,02/13/2011 11:15:03 PM,24TH ST/POTRERO AV,SF,94110,B10,37,2554,2,2,2,true,,1,MEDIC,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",110440343-86 +160722325,78,16028662,Medical Incident,03/12/2016,03/12/2016,03/12/2016 04:41:27 PM,03/12/2016 04:41:27 PM,03/12/2016 04:43:17 PM,03/12/2016 04:43:45 PM,03/12/2016 04:47:13 PM,03/12/2016 04:54:32 PM,03/12/2016 05:30:08 PM,Code 2 Transport,03/12/2016 05:59:34 PM,1000 Block of HARRISON ST,San Francisco,94103,B03,8,2254,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7770983962506, -122.404388964595)",160722325-78 +132570153,T05,13086884,Elevator / Escalator Rescue,09/14/2013,09/14/2013,09/14/2013 10:38:21 AM,09/14/2013 10:40:05 AM,09/14/2013 10:40:17 AM,09/14/2013 10:47:05 AM,09/14/2013 10:51:42 AM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Fire,09/14/2013 11:07:34 AM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",132570153-T05 +123450098,T06,12115265,Structure Fire,12/10/2012,12/10/2012,12/10/2012 08:36:15 AM,12/10/2012 08:36:16 AM,12/10/2012 08:36:32 AM,12/10/2012 08:38:15 AM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/10/2012 08:41:45 AM,14TH ST/MISSION ST,SF,94103,B02,36,5215,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",123450098-T06 +140880136,E03,14029606,Medical Incident,03/29/2014,03/29/2014,03/29/2014 11:04:25 AM,03/29/2014 11:05:18 AM,03/29/2014 11:05:29 AM,03/29/2014 11:06:01 AM,03/29/2014 11:08:51 AM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,No Merit,03/29/2014 11:13:02 AM,200 Block of MCALLISTER ST,SAN FRANCISCO,94102,B02,3,1553,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",140880136-E03 +111120012,82,11036855,Medical Incident,04/22/2011,04/21/2011,04/22/2011 12:44:47 AM,04/22/2011 12:44:47 AM,04/22/2011 12:46:51 AM,04/22/2011 12:47:07 AM,04/22/2011 12:52:07 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Patient Declined Transport,04/22/2011 01:25:56 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",111120012-82 +160601440,KM08,16023881,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:39:25 AM,02/29/2016 11:40:51 AM,02/29/2016 11:41:12 AM,02/29/2016 11:41:52 AM,02/29/2016 11:45:52 AM,02/29/2016 12:02:46 PM,02/29/2016 12:34:13 PM,Code 2 Transport,02/29/2016 12:59:57 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160601440-KM08 +121160081,T02,12038364,Medical Incident,04/25/2012,04/25/2012,04/25/2012 08:41:13 AM,04/25/2012 08:42:12 AM,04/25/2012 08:42:23 AM,04/25/2012 08:43:56 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/25/2012 08:49:06 AM,CALIFORNIA ST/DRUMM ST,SF,94111,B01,13,1134,3,1,2,false,Non Life-threatening,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7936637772453, -122.396390415025)",121160081-T02 +113200223,E36,11106306,Structure Fire,11/16/2011,11/16/2011,11/16/2011 01:47:21 PM,11/16/2011 01:47:45 PM,11/16/2011 01:48:54 PM,11/16/2011 01:49:41 PM,11/16/2011 01:52:13 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 02:07:28 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,5,3,6,South of Market,"(37.7811458612596, -122.409026046516)",113200223-E36 +160011026,67,16000190,Medical Incident,01/01/2016,12/31/2015,01/01/2016 04:43:16 AM,01/01/2016 04:44:57 AM,01/01/2016 04:45:36 AM,01/01/2016 04:45:45 AM,01/01/2016 05:10:33 AM,01/01/2016 05:10:35 AM,01/01/2016 05:21:14 AM,Code 2 Transport,01/01/2016 05:58:39 AM,800 Block of 32ND AVE,San Francisco,94121,B07,14,7242,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7731638886859, -122.491686815577)",160011026-67 +123440327,E31,12115118,Medical Incident,12/09/2012,12/09/2012,12/09/2012 07:29:04 PM,12/09/2012 07:31:03 PM,12/09/2012 07:31:55 PM,12/09/2012 07:33:10 PM,12/09/2012 07:35:22 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 07:46:08 PM,1700 Block of BALBOA ST,SF,94121,B07,31,7157,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7766744230881, -122.477503029321)",123440327-E31 +102930035,B02,10093327,Structure Fire,10/20/2010,10/19/2010,10/20/2010 05:05:37 AM,10/20/2010 05:06:01 AM,10/20/2010 05:06:47 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 08:06:26 AM,800 Block of HYDE ST,SF,94109,B04,3,1557,3,3,3,false,,4,CHIEF,56,4,3,Nob Hill,"(37.7886527895166, -122.416853689502)",102930035-B02 +111420192,RC2,11047191,Medical Incident,05/22/2011,05/22/2011,05/22/2011 12:21:10 PM,05/22/2011 12:21:45 PM,05/22/2011 12:21:59 PM,05/22/2011 12:23:50 PM,05/22/2011 12:27:59 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,Other,05/22/2011 12:44:32 PM,100 Block of STOW LAKE DR,SF,94118,B07,22,7158,3,3,3,true,,1,RESCUE CAPTAIN,2,7,1,Golden Gate Park,"(37.7697458272649, -122.472717967103)",111420192-RC2 +102240339,B01,10070680,Alarms,08/12/2010,08/12/2010,08/12/2010 10:11:42 PM,08/12/2010 10:14:25 PM,08/12/2010 10:14:36 PM,04/25/2016 02:09:06 PM,08/12/2010 10:15:48 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,No Merit,08/12/2010 10:22:54 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,CHIEF,1,1,3,Nob Hill,"(37.7908027242584, -122.410799552417)",102240339-B01 +140840306,E07,14028418,Medical Incident,03/25/2014,03/25/2014,03/25/2014 07:40:18 PM,03/25/2014 07:41:03 PM,03/25/2014 07:41:43 PM,03/25/2014 07:42:53 PM,03/25/2014 07:44:49 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/25/2014 07:46:32 PM,2000 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",140840306-E07 +160183247,70,16007395,Medical Incident,01/18/2016,01/18/2016,01/18/2016 09:37:14 PM,01/18/2016 09:39:34 PM,01/18/2016 09:39:46 PM,01/18/2016 09:39:55 PM,01/18/2016 09:44:32 PM,01/18/2016 09:57:39 PM,01/18/2016 10:09:28 PM,Code 2 Transport,01/18/2016 10:49:50 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7622701739914, -122.419470488515)",160183247-70 +130340406,KM07,13011817,Medical Incident,02/03/2013,02/03/2013,02/03/2013 11:14:06 PM,02/03/2013 11:16:38 PM,02/03/2013 11:16:49 PM,02/03/2013 11:19:09 PM,02/03/2013 11:21:01 PM,02/03/2013 11:39:02 PM,02/03/2013 11:54:07 PM,Code 3 Transport,02/04/2013 12:29:35 AM,100 Block of 28TH ST,SF,94131,B06,11,5562,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7453123454481, -122.425675416499)",130340406-KM07 +121730155,77,12057418,Medical Incident,06/21/2012,06/21/2012,06/21/2012 10:57:05 AM,06/21/2012 10:58:34 AM,06/21/2012 11:00:38 AM,06/21/2012 11:01:29 AM,06/21/2012 11:07:48 AM,06/21/2012 11:29:19 AM,06/21/2012 11:31:12 AM,Code 3 Transport,06/21/2012 12:14:31 PM,2600 Block of BRYANT ST,SF,94110,B06,9,5532,2,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7519940443041, -122.4091228581)",121730155-77 +130600162,E16,13020101,Medical Incident,03/01/2013,03/01/2013,03/01/2013 11:55:29 AM,03/01/2013 11:56:56 AM,03/01/2013 12:00:16 PM,03/01/2013 12:01:32 PM,03/01/2013 12:03:21 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 12:12:19 PM,WEBSTER ST/BROMLEY PL,SF,94115,B04,38,3465,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.793119406637, -122.432999598029)",130600162-E16 +102940315,D2,10093869,Structure Fire,10/21/2010,10/21/2010,10/21/2010 08:10:14 PM,10/21/2010 08:13:58 PM,10/21/2010 08:14:13 PM,10/21/2010 08:14:43 PM,10/21/2010 08:18:07 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Fire,10/21/2010 08:32:44 PM,1600 Block of BROADWAY,SF,94123,B04,41,3152,3,3,3,false,,1,CHIEF,7,4,2,Pacific Heights,"(37.7956860710912, -122.42424620746)",102940315-D2 +102440215,68,10077002,Medical Incident,09/01/2010,09/01/2010,09/01/2010 01:13:20 PM,09/01/2010 01:13:42 PM,09/01/2010 01:21:08 PM,09/01/2010 01:21:16 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,09/01/2010 01:23:14 PM,15TH ST/POTRERO AV,SF,94103,B02,29,2351,3,2,2,true,,1,MEDIC,1,2,10,Mission,"(37.7670819828491, -122.407685033247)",102440215-68 +103630153,54,10116423,Medical Incident,12/29/2010,12/29/2010,12/29/2010 12:38:03 PM,12/29/2010 12:39:44 PM,12/29/2010 12:41:24 PM,12/29/2010 12:41:50 PM,12/29/2010 01:07:58 PM,12/29/2010 01:08:59 PM,12/29/2010 01:15:15 PM,Code 2 Transport,12/29/2010 01:34:00 PM,300 Block of 5TH AVE,SF,94118,B07,31,7124,2,2,2,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.7820328555271, -122.463211509933)",103630153-54 +160211931,77,16008396,Medical Incident,01/21/2016,01/21/2016,01/21/2016 01:26:03 PM,01/21/2016 01:26:03 PM,01/21/2016 01:26:26 PM,01/21/2016 01:26:34 PM,01/21/2016 01:29:33 PM,01/21/2016 01:56:36 PM,01/21/2016 02:05:33 PM,Code 2 Transport,01/21/2016 03:03:06 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160211931-77 +133340066,77,13113148,Medical Incident,11/30/2013,11/29/2013,11/30/2013 06:40:40 AM,11/30/2013 06:42:16 AM,11/30/2013 06:43:02 AM,11/30/2013 06:43:34 AM,11/30/2013 06:53:59 AM,11/30/2013 06:59:09 AM,11/30/2013 07:15:04 AM,Code 2 Transport,11/30/2013 07:38:38 AM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",133340066-77 +160440589,53,16017588,Medical Incident,02/13/2016,02/12/2016,02/13/2016 05:45:23 AM,02/13/2016 05:46:41 AM,02/13/2016 05:46:57 AM,02/13/2016 05:47:08 AM,02/13/2016 05:49:56 AM,02/13/2016 06:10:07 AM,02/13/2016 06:15:06 AM,Code 2 Transport,02/13/2016 07:10:36 AM,400 Block of SHRADER ST,San Francisco,94117,B05,12,4544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.77078004571, -122.452080187765)",160440589-53 +112980394,RC3,11099032,Structure Fire,10/25/2011,10/25/2011,10/25/2011 10:14:41 PM,10/25/2011 10:17:31 PM,10/25/2011 10:18:02 PM,10/25/2011 10:19:27 PM,10/25/2011 10:24:48 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/25/2011 10:26:32 PM,100 Block of YUKON ST,SF,94114,B06,24,5266,3,3,3,true,,1,RESCUE CAPTAIN,2,6,8,Twin Peaks,"(37.7571718335026, -122.442254011196)",112980394-RC3 +113250160,RC2,11107904,Medical Incident,11/21/2011,11/21/2011,11/21/2011 11:52:14 AM,11/21/2011 11:53:54 AM,11/21/2011 11:54:03 AM,04/25/2016 02:01:32 PM,11/21/2011 11:56:28 AM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,Other,11/21/2011 12:18:12 PM,700 Block of 24TH AVE,SF,94121,B07,14,7212,3,2,2,true,,1,RESCUE CAPTAIN,1,7,1,Outer Richmond,"(37.7754214554732, -122.483253320428)",113250160-RC2 +112500087,B01,11082396,Alarms,09/07/2011,09/07/2011,09/07/2011 08:52:35 AM,09/07/2011 08:53:26 AM,09/07/2011 08:54:18 AM,09/07/2011 08:55:44 AM,09/07/2011 08:58:00 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 09:00:09 AM,1700 Block of GREEN ST,SF,94123,B01,38,3246,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.797150187503, -122.427913713585)",112500087-B01 +132200243,86,13074362,Other,08/08/2013,08/08/2013,08/08/2013 04:23:51 PM,08/08/2013 04:24:19 PM,08/08/2013 04:26:07 PM,08/08/2013 04:26:20 PM,08/08/2013 04:30:32 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 05:38:58 PM,400 Block of 3RD ST,SF,94107,B03,8,2174,3,3,3,true,Alarm,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7823750775991, -122.397064398742)",132200243-86 +102740325,T01,10087124,Alarms,10/01/2010,10/01/2010,10/01/2010 07:28:32 PM,10/01/2010 07:29:06 PM,10/01/2010 07:29:19 PM,10/01/2010 07:30:46 PM,10/01/2010 07:32:51 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 07:35:39 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",102740325-T01 +160893744,62,16035500,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:48:05 PM,03/29/2016 09:48:05 PM,03/29/2016 09:48:25 PM,03/29/2016 09:48:33 PM,03/29/2016 09:49:53 PM,03/29/2016 10:13:32 PM,03/29/2016 10:30:34 PM,Code 2 Transport,03/29/2016 10:56:54 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160893744-62 +111920395,E05,11063560,Medical Incident,07/11/2011,07/11/2011,07/11/2011 11:16:45 PM,07/11/2011 11:17:15 PM,07/11/2011 11:17:43 PM,07/11/2011 11:18:27 PM,07/11/2011 11:20:14 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 11:37:36 PM,500 Block of WEBSTER ST,SF,94102,B02,5,3522,3,E,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7753529596691, -122.429344544489)",111920395-E05 +160242126,KM05,16009571,Medical Incident,01/24/2016,01/24/2016,01/24/2016 03:26:01 PM,01/24/2016 03:28:27 PM,01/24/2016 03:29:00 PM,01/24/2016 03:29:27 PM,01/24/2016 03:45:01 PM,01/24/2016 04:06:45 PM,01/24/2016 04:16:34 PM,Code 2 Transport,01/24/2016 04:53:23 PM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",160242126-KM05 +132470147,E03,13083298,Medical Incident,09/04/2013,09/04/2013,09/04/2013 10:51:58 AM,09/04/2013 10:52:12 AM,09/04/2013 10:52:31 AM,09/04/2013 10:54:37 AM,09/04/2013 10:56:48 AM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 10:56:57 AM,EDDY ST/JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",132470147-E03 +121350173,83,12044884,Medical Incident,05/14/2012,05/14/2012,05/14/2012 12:30:32 PM,05/14/2012 12:32:03 PM,05/14/2012 12:32:37 PM,05/14/2012 12:32:50 PM,04/25/2016 01:58:41 PM,05/14/2012 12:47:55 PM,05/14/2012 01:08:10 PM,Code 2 Transport,05/14/2012 01:26:00 PM,OFARRELL ST/VAN NESS AV,SF,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",121350173-83 +160502680,KM11,16020180,Medical Incident,02/19/2016,02/19/2016,02/19/2016 05:09:19 PM,02/19/2016 05:09:41 PM,02/19/2016 05:10:28 PM,02/19/2016 05:11:06 PM,02/19/2016 05:25:19 PM,02/19/2016 05:51:38 PM,02/19/2016 06:26:02 PM,Code 2 Transport,02/19/2016 07:03:40 PM,1300 Block of 45TH AV,San Francisco,94122,B08,23,7655,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7614051603232, -122.504853112286)",160502680-KM11 +140610292,67,14020741,Medical Incident,03/02/2014,03/02/2014,03/02/2014 07:50:33 PM,03/02/2014 07:51:48 PM,03/02/2014 07:52:38 PM,03/02/2014 07:52:47 PM,03/02/2014 08:04:03 PM,03/02/2014 08:09:45 PM,03/02/2014 08:27:57 PM,Code 2 Transport,03/02/2014 09:03:05 PM,ULLOA ST/WEST PORTAL AV,SF,94127,B08,39,8611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7408919760876, -122.465829021907)",140610292-67 +130790363,E03,13026559,Medical Incident,03/20/2013,03/20/2013,03/20/2013 09:42:53 PM,03/20/2013 09:44:17 PM,03/20/2013 09:45:43 PM,03/20/2013 09:46:12 PM,03/20/2013 09:47:49 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 09:59:20 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",130790363-E03 +112900179,68,11096209,Medical Incident,10/17/2011,10/17/2011,10/17/2011 12:50:25 PM,10/17/2011 12:52:19 PM,10/17/2011 12:52:31 PM,10/17/2011 12:52:58 PM,10/17/2011 12:55:55 PM,10/17/2011 01:15:11 PM,10/17/2011 01:51:37 PM,Code 2 Transport,10/17/2011 02:07:23 PM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,true,,1,MEDIC,2,4,2,Pacific Heights,"(37.7915320518223, -122.424182651752)",112900179-68 +160030775,71,16001093,Medical Incident,01/03/2016,01/02/2016,01/03/2016 07:54:42 AM,01/03/2016 07:54:59 AM,01/03/2016 07:56:04 AM,01/03/2016 07:56:42 AM,01/03/2016 08:03:11 AM,01/03/2016 08:21:54 AM,01/03/2016 08:27:48 AM,Code 2 Transport,01/03/2016 09:15:48 AM,2700 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7882270245748, -122.439617640821)",160030775-71 +132980315,B02,13101315,Alarms,10/25/2013,10/25/2013,10/25/2013 06:06:56 PM,10/25/2013 06:08:09 PM,10/25/2013 06:08:58 PM,10/25/2013 06:09:49 PM,10/25/2013 06:12:52 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 06:14:27 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",132980315-B02 +103420234,77,10109507,Medical Incident,12/08/2010,12/08/2010,12/08/2010 01:48:47 PM,12/08/2010 01:49:25 PM,12/08/2010 01:51:49 PM,12/08/2010 01:52:16 PM,12/08/2010 02:04:15 PM,12/08/2010 02:07:20 PM,12/08/2010 02:34:14 PM,Code 2 Transport,12/08/2010 02:56:33 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",103420234-77 +120060073,E36,12001981,Alarms,01/06/2012,01/05/2012,01/06/2012 07:09:53 AM,01/06/2012 07:10:32 AM,01/06/2012 07:10:53 AM,01/06/2012 07:11:48 AM,01/06/2012 07:14:15 AM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/06/2012 07:22:15 AM,1200 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7770436202636, -122.413583483648)",120060073-E36 +140970417,E03,14032858,Medical Incident,04/07/2014,04/07/2014,04/07/2014 09:20:43 PM,04/07/2014 09:22:18 PM,04/07/2014 09:22:45 PM,04/07/2014 09:23:42 PM,04/07/2014 09:25:50 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Code 2 Transport,04/07/2014 09:34:33 PM,400 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",140970417-E03 +130460363,E01,13015754,Medical Incident,02/15/2013,02/15/2013,02/15/2013 06:37:10 PM,02/15/2013 06:38:16 PM,02/15/2013 06:38:28 PM,02/15/2013 06:39:36 PM,02/15/2013 06:43:25 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 06:50:36 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",130460363-E01 +111960354,59,11064858,Medical Incident,07/15/2011,07/15/2011,07/15/2011 11:18:25 PM,07/15/2011 11:19:59 PM,07/15/2011 11:20:32 PM,07/15/2011 11:21:24 PM,07/15/2011 11:31:41 PM,07/15/2011 11:41:53 PM,07/15/2011 11:50:01 PM,Code 2 Transport,07/16/2011 12:13:58 AM,600 Block of 21ST AVE,SF,94121,B07,14,7171,1,1,2,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7755618197735, -122.480176764762)",111960354-59 +111300258,E03,11043028,Medical Incident,05/10/2011,05/10/2011,05/10/2011 04:26:38 PM,05/10/2011 04:27:14 PM,05/10/2011 04:28:02 PM,05/10/2011 04:28:47 PM,05/10/2011 04:31:08 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 04:42:34 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",111300258-E03 +130870283,E35,13029101,Traffic Collision,03/28/2013,03/28/2013,03/28/2013 05:43:03 PM,03/28/2013 05:43:52 PM,03/28/2013 05:44:32 PM,03/28/2013 05:44:49 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 05:47:32 PM,0 Block of FREMONT ST,SF,94105,B03,35,2116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",130870283-E35 +160100720,52,16003945,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:33:01 AM,01/10/2016 07:34:59 AM,01/10/2016 07:35:20 AM,01/10/2016 07:35:28 AM,01/10/2016 07:49:16 AM,01/10/2016 08:16:01 AM,01/10/2016 08:33:33 AM,Code 2 Transport,01/10/2016 08:58:56 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",160100720-52 +111520120,E05,11050248,Medical Incident,06/01/2011,06/01/2011,06/01/2011 10:55:29 AM,06/01/2011 10:55:58 AM,06/01/2011 10:57:34 AM,06/01/2011 10:58:38 AM,06/01/2011 11:00:35 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/01/2011 11:33:37 AM,1500 Block of STEINER ST,SF,94115,B04,5,3623,3,3,3,true,,1,ENGINE,1,4,5,Western Addition,"(37.7836259697111, -122.434387879259)",111520120-E05 +123360067,T14,12111623,Other,12/01/2012,11/30/2012,12/01/2012 07:00:08 AM,12/01/2012 07:00:55 AM,12/01/2012 07:01:12 AM,12/01/2012 07:03:35 AM,12/01/2012 07:07:37 AM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,12/01/2012 07:20:48 AM,PARK PRESIDIO BL/GEARY BL,SF,94118,B07,31,7146,3,3,3,true,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",123360067-T14 +111760207,E38,11058029,Medical Incident,06/25/2011,06/25/2011,06/25/2011 01:58:47 PM,06/25/2011 01:58:58 PM,06/25/2011 02:00:24 PM,06/25/2011 02:02:11 PM,06/25/2011 02:06:47 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 02:20:16 PM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,2,2,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7915320518223, -122.424182651752)",111760207-E38 +140030312,72,14001151,Medical Incident,01/03/2014,01/03/2014,01/03/2014 04:33:40 PM,01/03/2014 04:35:11 PM,01/03/2014 04:35:23 PM,01/03/2014 04:35:31 PM,01/03/2014 04:38:16 PM,01/03/2014 04:54:31 PM,01/03/2014 05:00:50 PM,Code 2 Transport,01/03/2014 05:30:16 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",140030312-72 +121720281,E11,12057196,Administrative,06/20/2012,06/20/2012,06/20/2012 06:39:40 PM,06/20/2012 06:39:44 PM,06/20/2012 06:39:49 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 06:40:08 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",121720281-E11 +122560096,T01,12084576,Citizen Assist / Service Call,09/12/2012,09/12/2012,09/12/2012 09:21:18 AM,09/12/2012 09:23:24 AM,09/12/2012 09:23:38 AM,09/12/2012 09:23:53 AM,09/12/2012 09:25:50 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Fire,09/12/2012 09:33:40 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",122560096-T01 +110610172,B09,11019991,Structure Fire,03/02/2011,03/02/2011,03/02/2011 11:39:14 AM,03/02/2011 11:39:14 AM,03/02/2011 11:39:35 AM,03/02/2011 11:41:18 AM,03/02/2011 11:43:07 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 11:46:14 AM,SAN JOSE AV/NIAGARA AV,SF,94112,B09,15,8312,3,3,3,false,,1,CHIEF,3,9,11,Outer Mission,"(37.7194811206803, -122.447562061428)",110610172-B09 +123360141,KM04,12111685,Traffic Collision,12/01/2012,12/01/2012,12/01/2012 11:08:17 AM,12/01/2012 11:09:28 AM,12/01/2012 11:10:12 AM,12/01/2012 11:10:44 AM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,12/01/2012 11:14:24 AM,BUSH ST/POLK ST,SF,94109,B04,3,1636,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",123360141-KM04 +160750996,63,16029646,Medical Incident,03/15/2016,03/15/2016,03/15/2016 09:43:49 AM,03/15/2016 09:45:59 AM,03/15/2016 09:47:04 AM,03/15/2016 09:47:13 AM,03/15/2016 10:01:09 AM,03/15/2016 10:06:28 AM,03/15/2016 10:38:23 AM,Code 2 Transport,03/15/2016 10:51:48 AM,1900 Block of SILVER AVE,San Francisco,94124,B10,42,6454,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7354666161568, -122.40069359718)",160750996-63 +122250183,RS1,12074628,Medical Incident,08/12/2012,08/12/2012,08/12/2012 02:08:08 PM,08/12/2012 02:08:30 PM,08/12/2012 02:09:01 PM,08/12/2012 02:10:03 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 02:17:35 PM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",122250183-RS1 +160382805,50,16015327,Medical Incident,02/07/2016,02/07/2016,02/07/2016 06:05:06 PM,02/07/2016 06:06:42 PM,02/07/2016 06:07:14 PM,02/07/2016 06:07:23 PM,02/07/2016 06:11:17 PM,02/07/2016 06:41:29 PM,02/07/2016 06:49:03 PM,Code 2 Transport,02/07/2016 07:11:15 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",160382805-50 +122880317,E43,12095401,Medical Incident,10/14/2012,10/14/2012,10/14/2012 07:21:59 PM,10/14/2012 07:26:00 PM,10/14/2012 07:27:34 PM,10/14/2012 07:28:46 PM,10/14/2012 07:33:20 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 07:56:16 PM,500 Block of BRUNSWICK ST,SF,94112,B09,43,6218,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7102344068027, -122.444446694511)",122880317-E43 +121410287,E01,12046932,Other,05/20/2012,05/20/2012,05/20/2012 04:03:49 PM,05/20/2012 04:03:49 PM,05/20/2012 04:03:49 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,Other,04/25/2016 01:58:35 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,5,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121410287-E01 +120790019,E34,12026099,Medical Incident,03/19/2012,03/18/2012,03/19/2012 02:33:03 AM,03/19/2012 02:34:22 AM,03/19/2012 02:35:34 AM,03/19/2012 02:37:00 AM,03/19/2012 02:37:31 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 03:01:27 AM,7600 Block of GEARY BLVD,SF,94121,B07,34,7264,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.779202123681, -122.501331891706)",120790019-E34 +160402069,84,16016069,Medical Incident,02/09/2016,02/09/2016,02/09/2016 02:03:45 PM,02/09/2016 02:05:28 PM,02/09/2016 02:06:01 PM,02/09/2016 02:08:08 PM,02/09/2016 02:24:00 PM,02/09/2016 02:24:01 PM,02/09/2016 02:55:38 PM,Code 2 Transport,02/09/2016 03:23:31 PM,800 Block of CALIFORNIA ST,San Francisco,94108,B01,2,1356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7920560718489, -122.408603297968)",160402069-84 +110710365,E41,11023506,Medical Incident,03/12/2011,03/12/2011,03/12/2011 08:19:43 PM,03/12/2011 08:20:38 PM,03/12/2011 08:20:50 PM,03/12/2011 08:21:58 PM,03/12/2011 08:24:10 PM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/12/2011 08:24:45 PM,1000 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.79172390851, -122.411253828638)",110710365-E41 +160283220,76,16011203,Medical Incident,01/28/2016,01/28/2016,01/28/2016 06:40:00 PM,01/28/2016 06:40:00 PM,01/28/2016 06:41:04 PM,01/28/2016 06:41:15 PM,01/28/2016 07:07:57 PM,01/28/2016 07:28:53 PM,01/28/2016 07:38:57 PM,Code 2 Transport,01/28/2016 08:08:14 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160283220-76 +113080058,E06,11102225,Medical Incident,11/04/2011,11/03/2011,11/04/2011 06:53:54 AM,11/04/2011 06:56:11 AM,11/04/2011 06:57:45 AM,04/25/2016 02:01:49 PM,11/04/2011 07:01:23 AM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Fire,11/04/2011 07:33:23 AM,800 Block of 14TH ST,SF,94114,B05,6,5212,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7675497854134, -122.432858989765)",113080058-E06 +160752409,KM15,16029773,Medical Incident,03/15/2016,03/15/2016,03/15/2016 03:24:31 PM,03/15/2016 03:26:21 PM,03/15/2016 03:26:41 PM,03/15/2016 03:27:40 PM,03/15/2016 03:37:04 PM,03/15/2016 03:49:38 PM,03/15/2016 04:00:35 PM,Code 3 Transport,03/15/2016 04:21:57 PM,300 Block of 24TH AVE,San Francisco,94121,B07,14,7214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7830006442599, -122.483939034671)",160752409-KM15 +121740143,KM09,12057732,Medical Incident,06/22/2012,06/22/2012,06/22/2012 12:03:59 PM,06/22/2012 12:04:42 PM,06/22/2012 12:05:48 PM,06/22/2012 12:06:42 PM,06/22/2012 12:14:20 PM,06/22/2012 12:33:51 PM,06/22/2012 12:44:46 PM,Code 2 Transport,06/22/2012 01:27:57 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",121740143-KM09 +133150344,AM18,13107210,Medical Incident,11/11/2013,11/11/2013,11/11/2013 06:37:25 PM,11/11/2013 06:38:34 PM,11/11/2013 06:44:02 PM,04/25/2016 01:49:48 PM,11/11/2013 06:47:50 PM,11/11/2013 07:08:30 PM,11/11/2013 07:37:03 PM,Code 2 Transport,11/11/2013 08:20:38 PM,1000 Block of FELL ST,SF,94117,B05,21,3641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7744305495676, -122.435127733614)",133150344-AM18 +160012287,KM13,16000361,Medical Incident,01/01/2016,01/01/2016,01/01/2016 02:26:47 PM,01/01/2016 02:27:52 PM,01/01/2016 02:29:38 PM,01/01/2016 02:30:05 PM,01/01/2016 02:34:26 PM,01/01/2016 02:56:03 PM,01/01/2016 03:18:25 PM,Code 2 Transport,01/01/2016 03:49:00 PM,800 Block of LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7858627664608, -122.418110537872)",160012287-KM13 +122660066,T01,12087781,Structure Fire,09/22/2012,09/21/2012,09/22/2012 04:20:03 AM,09/22/2012 04:20:48 AM,09/22/2012 04:21:11 AM,09/22/2012 04:23:27 AM,09/22/2012 04:27:52 AM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 04:39:50 AM,500 Block of NELSON RISING LN,SF,94158,B03,8,2264,3,3,3,false,Fire,1,TRUCK,8,3,6,Mission Bay,"(37.7696540760545, -122.390263313432)",122660066-T01 +113650319,KM15,11121384,Medical Incident,12/31/2011,12/31/2011,12/31/2011 08:23:50 PM,12/31/2011 08:27:13 PM,12/31/2011 08:27:31 PM,12/31/2011 08:28:15 PM,12/31/2011 08:34:04 PM,12/31/2011 08:50:24 PM,12/31/2011 09:15:17 PM,Code 2 Transport,12/31/2011 09:23:29 PM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,false,,1,PRIVATE,2,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",113650319-KM15 +160530356,KM06,16021063,Medical Incident,02/22/2016,02/21/2016,02/22/2016 05:15:41 AM,02/22/2016 05:15:41 AM,02/22/2016 05:16:21 AM,02/22/2016 05:20:13 AM,02/22/2016 05:20:13 AM,02/22/2016 05:50:14 AM,02/22/2016 06:00:30 AM,Code 2 Transport,02/22/2016 06:40:42 AM,CYRIL MAGNIN ST/OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",160530356-KM06 +160431696,87,16017297,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:37:44 PM,02/12/2016 12:49:03 PM,02/12/2016 12:50:02 PM,02/12/2016 12:50:21 PM,02/12/2016 12:55:35 PM,02/12/2016 01:11:17 PM,02/12/2016 01:39:57 PM,Code 2 Transport,02/12/2016 02:19:07 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7197055234678, -122.438684868139)",160431696-87 +103220332,E13,10103337,Structure Fire,11/18/2010,11/18/2010,11/18/2010 11:51:08 PM,11/18/2010 11:51:09 PM,11/18/2010 11:51:15 PM,11/18/2010 11:52:58 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/18/2010 11:54:42 PM,NEW MONTGOMERY ST/MINNA ST,SF,94105,B03,1,2157,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7870107876875, -122.399974961899)",103220332-E13 +110120259,KM11,11004041,Medical Incident,01/12/2011,01/12/2011,01/12/2011 04:27:09 PM,01/12/2011 04:27:46 PM,01/12/2011 04:28:07 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/12/2011 04:29:48 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,,1,PRIVATE,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",110120259-KM11 +112820247,75,11093385,Medical Incident,10/09/2011,10/09/2011,10/09/2011 03:53:43 PM,10/09/2011 03:54:38 PM,10/09/2011 03:55:04 PM,10/09/2011 03:55:25 PM,10/09/2011 03:57:41 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Against Medical Advice,10/09/2011 04:48:05 PM,3000 Block of 20TH ST,SF,94110,B06,7,5451,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7590542429617, -122.411163913692)",112820247-75 +131530296,B04,13051938,Alarms,06/02/2013,06/02/2013,06/02/2013 07:46:46 PM,06/02/2013 07:47:43 PM,06/02/2013 07:47:51 PM,06/02/2013 07:48:12 PM,06/02/2013 07:49:40 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 07:56:23 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,CHIEF,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",131530296-B04 +112930157,E05,11097178,Odor (Strange / Unknown),10/20/2011,10/20/2011,10/20/2011 12:18:53 PM,10/20/2011 12:21:52 PM,10/20/2011 12:22:05 PM,10/20/2011 12:24:12 PM,10/20/2011 12:28:00 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 12:35:29 PM,2100 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,true,,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7732651286192, -122.451809729092)",112930157-E05 +120190322,E02,12006468,Structure Fire,01/19/2012,01/19/2012,01/19/2012 08:01:09 PM,01/19/2012 08:01:09 PM,01/19/2012 08:01:30 PM,01/19/2012 08:03:25 PM,01/19/2012 08:04:21 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 08:13:41 PM,900 Block of CLAY ST,SF,94108,B01,2,135,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7940625557105, -122.408322788185)",120190322-E02 +160631843,KM12,16025079,Medical Incident,03/03/2016,03/03/2016,03/03/2016 01:20:10 PM,03/03/2016 01:21:40 PM,03/03/2016 01:21:55 PM,03/03/2016 01:22:31 PM,03/03/2016 01:26:42 PM,03/03/2016 01:46:30 PM,03/03/2016 02:00:09 PM,Code 2 Transport,03/03/2016 02:32:06 PM,2200 Block of MARKET ST,San Francisco,94114,B05,6,5231,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",160631843-KM12 +133470163,86,13117734,Medical Incident,12/13/2013,12/13/2013,12/13/2013 12:18:41 PM,12/13/2013 12:19:08 PM,12/13/2013 12:19:24 PM,12/13/2013 12:19:33 PM,12/13/2013 12:22:05 PM,12/13/2013 12:36:51 PM,12/13/2013 12:54:08 PM,Code 2 Transport,12/13/2013 01:22:31 PM,200 Block of HARBOR RD,SF,94124,B10,17,6627,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",133470163-86 +103100174,T03,10099381,Structure Fire,11/06/2010,11/06/2010,11/06/2010 12:27:49 PM,11/06/2010 12:27:50 PM,11/06/2010 12:28:11 PM,04/25/2016 02:07:43 PM,11/06/2010 12:29:41 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 12:30:00 PM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,,1,TRUCK,1,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",103100174-T03 +160300344,88,16011645,Medical Incident,01/30/2016,01/29/2016,01/30/2016 02:22:55 AM,01/30/2016 02:22:55 AM,01/30/2016 02:23:20 AM,01/30/2016 02:23:28 AM,01/30/2016 02:35:29 AM,01/30/2016 03:06:37 AM,01/30/2016 03:12:23 AM,Code 2 Transport,01/30/2016 03:49:39 AM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.797627561244, -122.408618845707)",160300344-88 +123230070,94,12107319,Medical Incident,11/18/2012,11/17/2012,11/18/2012 05:48:20 AM,11/18/2012 05:50:34 AM,11/18/2012 05:50:56 AM,11/18/2012 05:51:07 AM,11/18/2012 05:57:45 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,No Merit,11/18/2012 06:11:51 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",123230070-94 +132830183,RC2,13096300,Water Rescue,10/10/2013,10/10/2013,10/10/2013 12:25:16 PM,10/10/2013 12:26:50 PM,10/10/2013 12:28:05 PM,10/10/2013 12:29:33 PM,10/10/2013 12:35:42 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/10/2013 12:42:57 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,,1,RESCUE CAPTAIN,7,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",132830183-RC2 +131700234,T01,13057764,Alarms,06/19/2013,06/19/2013,06/19/2013 03:15:51 PM,06/19/2013 03:15:52 PM,06/19/2013 03:16:58 PM,06/19/2013 03:19:11 PM,06/19/2013 03:22:02 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/19/2013 03:25:42 PM,900 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",131700234-T01 +160461443,AM02,16018487,Medical Incident,02/15/2016,02/15/2016,02/15/2016 11:56:04 AM,02/15/2016 11:56:30 AM,02/15/2016 11:56:52 AM,02/15/2016 11:58:10 AM,02/15/2016 12:01:17 PM,02/15/2016 12:16:11 PM,02/15/2016 12:29:15 PM,Code 2 Transport,02/15/2016 12:57:19 PM,1300 Block of CASTRO ST,San Francisco,94114,B06,11,5541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7508948687888, -122.434116965108)",160461443-AM02 +130880403,E01,13029558,Medical Incident,03/29/2013,03/29/2013,03/29/2013 09:35:01 PM,03/29/2013 09:37:10 PM,03/29/2013 09:37:18 PM,03/29/2013 09:39:08 PM,03/29/2013 09:40:34 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 09:44:53 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",130880403-E01 +130620281,E31,13020857,Medical Incident,03/03/2013,03/03/2013,03/03/2013 04:45:23 PM,03/03/2013 04:46:48 PM,03/03/2013 04:47:37 PM,03/03/2013 04:49:04 PM,03/03/2013 04:51:39 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,No Merit,03/03/2013 04:53:30 PM,FULTON ST/4TH AV,SF,94122,B07,31,7122,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7738952538632, -122.461619756026)",130620281-E31 +123580067,AM02,12119752,Medical Incident,12/23/2012,12/22/2012,12/23/2012 07:24:02 AM,12/23/2012 07:29:14 AM,12/23/2012 07:29:30 AM,12/23/2012 07:30:11 AM,12/23/2012 07:35:15 AM,12/23/2012 07:55:18 AM,12/23/2012 08:07:19 AM,Code 2 Transport,12/23/2012 08:44:17 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",123580067-AM02 +120560209,E29,12018512,Medical Incident,02/25/2012,02/25/2012,02/25/2012 03:23:01 PM,02/25/2012 03:25:08 PM,02/25/2012 03:28:00 PM,02/25/2012 03:29:41 PM,02/25/2012 03:37:39 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 03:42:47 PM,20TH ST/3RD ST,SF,94107,B03,29,2466,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",120560209-E29 +122510025,AM10,12082862,Medical Incident,09/07/2012,09/06/2012,09/07/2012 02:00:17 AM,09/07/2012 02:01:12 AM,09/07/2012 02:01:39 AM,09/07/2012 02:02:33 AM,09/07/2012 02:05:22 AM,09/07/2012 02:13:32 AM,09/07/2012 02:24:54 AM,Code 2 Transport,09/07/2012 02:52:14 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",122510025-AM10 +123640275,KM01,12121886,Medical Incident,12/29/2012,12/29/2012,12/29/2012 07:20:43 PM,12/29/2012 07:22:49 PM,12/29/2012 07:23:22 PM,12/29/2012 07:23:55 PM,12/29/2012 07:29:28 PM,12/29/2012 07:38:19 PM,12/29/2012 07:54:23 PM,Code 2 Transport,12/29/2012 08:27:22 PM,GEARY ST/POLK ST,SF,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",123640275-KM01 +160570131,64,16022591,Medical Incident,02/26/2016,02/25/2016,02/26/2016 01:00:40 AM,02/26/2016 01:02:36 AM,02/26/2016 01:02:54 AM,02/26/2016 01:03:14 AM,02/26/2016 01:10:56 AM,02/26/2016 01:22:14 AM,02/26/2016 01:34:38 AM,Code 2 Transport,02/26/2016 02:17:53 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",160570131-64 +120880027,E01,12029059,Medical Incident,03/28/2012,03/27/2012,03/28/2012 02:06:17 AM,03/28/2012 02:07:19 AM,03/28/2012 02:07:32 AM,03/28/2012 02:09:13 AM,03/28/2012 02:11:14 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 02:11:27 AM,FOLSOM ST/5TH ST,SF,94107,B03,1,2244,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7802649718101, -122.40338721034)",120880027-E01 +121760434,54,12058722,Medical Incident,06/24/2012,06/24/2012,06/24/2012 10:50:04 PM,06/24/2012 10:51:27 PM,06/24/2012 10:51:56 PM,06/24/2012 10:52:09 PM,06/24/2012 10:56:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 10:59:01 PM,900 Block of BRANNAN ST,SF,94103,B03,29,2330,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7707119826907, -122.406261949572)",121760434-54 +160583561,58,16023297,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:24:35 PM,02/27/2016 09:25:45 PM,02/27/2016 09:26:58 PM,02/27/2016 09:27:15 PM,02/27/2016 09:33:25 PM,02/27/2016 09:44:49 PM,02/27/2016 09:52:58 PM,Code 2 Transport,02/27/2016 10:21:29 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160583561-58 +160531502,71,16021192,Medical Incident,02/22/2016,02/22/2016,02/22/2016 12:19:29 PM,02/22/2016 12:20:31 PM,02/22/2016 12:21:00 PM,02/22/2016 12:22:04 PM,02/22/2016 12:26:59 PM,02/22/2016 12:51:36 PM,02/22/2016 01:03:42 PM,Code 2 Transport,02/22/2016 01:41:14 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160531502-71 +130620273,87,13020850,Medical Incident,03/03/2013,03/03/2013,03/03/2013 04:23:34 PM,03/03/2013 04:24:39 PM,03/03/2013 04:24:55 PM,03/03/2013 04:25:03 PM,03/03/2013 04:35:11 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,No Merit,03/03/2013 04:45:16 PM,ELLIS ST/TAYLOR ST,SF,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",130620273-87 +160380722,AM10,16015098,Medical Incident,02/07/2016,02/06/2016,02/07/2016 05:07:41 AM,02/07/2016 05:09:06 AM,02/07/2016 05:09:18 AM,02/07/2016 05:16:39 AM,02/07/2016 05:28:11 AM,02/07/2016 05:31:15 AM,02/07/2016 05:42:17 AM,Code 2 Transport,02/07/2016 06:05:50 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160380722-AM10 +120280109,T15,12009347,Medical Incident,01/28/2012,01/28/2012,01/28/2012 09:35:17 AM,01/28/2012 09:36:14 AM,01/28/2012 09:36:39 AM,01/28/2012 09:37:59 AM,01/28/2012 09:43:33 AM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/28/2012 09:53:47 AM,SUNNYDALE AV/HAHN ST,SF,94134,B09,43,6241,E,E,3,false,Potentially Life-Threatening,1,TRUCK,3,9,10,Visitacion Valley,"(37.7119145572968, -122.416000281038)",120280109-T15 +122190332,E02,12072780,Medical Incident,08/06/2012,08/06/2012,08/06/2012 07:50:04 PM,08/06/2012 07:51:00 PM,08/06/2012 07:51:15 PM,08/06/2012 07:52:35 PM,08/06/2012 07:55:21 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 07:58:35 PM,100 Block of JACKSON ST,SF,94111,B01,13,1132,3,3,3,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",122190332-E02 +130350211,KM06,13011998,Medical Incident,02/04/2013,02/04/2013,02/04/2013 12:50:38 PM,02/04/2013 12:52:22 PM,02/04/2013 12:52:45 PM,02/04/2013 12:53:09 PM,02/04/2013 01:03:15 PM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,No Merit,02/04/2013 01:29:50 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",130350211-KM06 +111470364,E01,11048926,Structure Fire,05/27/2011,05/27/2011,05/27/2011 11:42:21 PM,05/27/2011 11:42:22 PM,05/27/2011 11:43:37 PM,05/27/2011 11:44:36 PM,05/27/2011 11:46:28 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Fire,05/27/2011 11:47:14 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",111470364-E01 +140790274,E34,14026793,Medical Incident,03/20/2014,03/20/2014,03/20/2014 04:56:58 PM,03/20/2014 04:56:58 PM,03/20/2014 04:56:58 PM,03/20/2014 04:56:58 PM,03/20/2014 04:56:58 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,No Merit,03/20/2014 04:59:52 PM,900 Block of POINT LOBOS AVE,,94121,B07,34,7314,,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",140790274-E34 +160381167,64,16015142,Medical Incident,02/07/2016,02/07/2016,02/07/2016 09:28:52 AM,02/07/2016 09:30:51 AM,02/07/2016 09:31:23 AM,02/07/2016 09:33:07 AM,02/07/2016 09:44:59 AM,02/07/2016 09:57:17 AM,02/07/2016 10:24:54 AM,Code 2 Transport,02/07/2016 10:56:09 AM,100 Block of SAINT CHARLES AV,San Francisco,94132,B09,33,8412,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7113900997901, -122.469364912259)",160381167-64 +120560154,E21,12018470,Medical Incident,02/25/2012,02/25/2012,02/25/2012 12:32:31 PM,02/25/2012 12:34:50 PM,02/25/2012 12:36:12 PM,02/25/2012 12:37:08 PM,02/25/2012 12:38:08 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 12:54:56 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,1,E,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",120560154-E21 +102650127,E16,10083836,Administrative,09/22/2010,09/22/2010,09/22/2010 11:31:52 AM,09/22/2010 11:32:15 AM,09/22/2010 11:34:29 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 11:34:51 AM,2200 Block of GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7987927965073, -122.436679384834)",102650127-E16 +133320018,KM15,13112547,Medical Incident,11/28/2013,11/27/2013,11/28/2013 01:35:02 AM,11/28/2013 01:35:56 AM,11/28/2013 01:36:40 AM,11/28/2013 01:39:24 AM,11/28/2013 01:41:19 AM,11/28/2013 01:51:45 AM,11/28/2013 02:05:53 AM,Code 2 Transport,11/28/2013 02:39:07 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",133320018-KM15 +123640259,E07,12121872,Smoke Investigation (Outside),12/29/2012,12/29/2012,12/29/2012 06:20:14 PM,12/29/2012 06:21:25 PM,12/29/2012 06:21:33 PM,12/29/2012 06:23:03 PM,12/29/2012 06:25:44 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/29/2012 06:29:30 PM,ALABAMA ST/22ND ST,SF,94110,B06,7,545,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.755887569503, -122.411272619634)",123640259-E07 +160053256,AM12,16002148,Medical Incident,01/05/2016,01/05/2016,01/05/2016 07:53:12 PM,01/05/2016 07:53:12 PM,01/05/2016 07:53:49 PM,01/05/2016 07:54:37 PM,01/05/2016 07:59:30 PM,01/05/2016 08:10:09 PM,01/05/2016 08:24:21 PM,Code 2 Transport,01/05/2016 09:14:53 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160053256-AM12 +131440251,83,13048881,Medical Incident,05/24/2013,05/24/2013,05/24/2013 03:40:00 PM,05/24/2013 03:41:09 PM,05/24/2013 03:41:55 PM,05/24/2013 03:42:06 PM,05/24/2013 03:52:20 PM,05/24/2013 04:09:20 PM,05/24/2013 04:37:22 PM,Code 2 Transport,05/24/2013 05:05:24 PM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",131440251-83 +140500261,KM11,14017045,Medical Incident,02/19/2014,02/19/2014,02/19/2014 05:39:35 PM,02/19/2014 05:39:56 PM,02/19/2014 06:33:36 PM,02/19/2014 05:45:19 PM,02/19/2014 06:34:11 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Patient Declined Transport,02/19/2014 07:03:00 PM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",140500261-KM11 +131220413,E16,13041213,Structure Fire,05/02/2013,05/02/2013,05/02/2013 07:43:17 PM,05/02/2013 07:44:06 PM,05/02/2013 07:44:16 PM,05/02/2013 07:45:23 PM,05/02/2013 07:45:52 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 08:17:24 PM,2300 Block of GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,Fire,1,ENGINE,1,4,2,Marina,"(37.7986920036256, -122.438346249439)",131220413-E16 +133260089,B01,13110638,Structure Fire,11/22/2013,11/22/2013,11/22/2013 09:17:16 AM,11/22/2013 09:17:22 AM,11/22/2013 09:17:37 AM,11/22/2013 09:17:47 AM,11/22/2013 09:22:17 AM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Fire,11/22/2013 09:24:26 AM,2200 Block of JONES ST,SF,94133,B01,28,151,3,3,3,false,Alarm,1,CHIEF,1,1,3,Russian Hill,"(37.8019369945594, -122.416296996585)",133260089-B01 +160850798,AM06,16033673,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:11:37 AM,03/25/2016 08:12:15 AM,03/25/2016 08:12:24 AM,03/25/2016 08:12:58 AM,03/25/2016 08:17:24 AM,03/25/2016 08:38:42 AM,03/25/2016 08:50:36 AM,Code 2 Transport,03/25/2016 09:33:46 AM,BUSH ST/STEINER ST,San Francisco,94115,B04,38,3621,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,5,Pacific Heights,"(37.7868105416223, -122.435105769551)",160850798-AM06 +160252626,AM14,16010019,Medical Incident,01/25/2016,01/25/2016,01/25/2016 04:35:59 PM,01/25/2016 04:37:00 PM,01/25/2016 04:37:43 PM,01/25/2016 04:38:22 PM,01/25/2016 04:45:51 PM,01/25/2016 05:05:25 PM,01/25/2016 05:21:17 PM,Code 3 Transport,01/25/2016 06:17:39 PM,200 Block of SKYLINE BLVD,San Francisco,94132,B08,19,8713,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.730009641642, -122.500476623156)",160252626-AM14 +160531273,AM06,16021167,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:15:03 AM,02/22/2016 11:15:47 AM,02/22/2016 11:16:19 AM,02/22/2016 11:16:52 AM,02/22/2016 11:18:29 AM,02/22/2016 11:33:02 AM,02/22/2016 11:39:02 AM,Code 2 Transport,02/22/2016 12:22:12 PM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",160531273-AM06 +111940290,E17,11064145,Medical Incident,07/13/2011,07/13/2011,07/13/2011 06:48:21 PM,07/13/2011 06:50:55 PM,07/13/2011 06:51:15 PM,07/13/2011 06:52:29 PM,07/13/2011 06:53:54 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 07:11:34 PM,1400 Block of PALOU AVE,SF,94124,B10,17,6551,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324328629482, -122.388060552096)",111940290-E17 +160181048,83,16007180,Medical Incident,01/18/2016,01/18/2016,01/18/2016 10:15:33 AM,01/18/2016 10:16:01 AM,01/18/2016 10:16:31 AM,01/18/2016 10:16:42 AM,01/18/2016 10:18:57 AM,01/18/2016 10:53:07 AM,01/18/2016 11:03:57 AM,Code 2 Transport,01/18/2016 11:46:01 AM,200 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7845991269502, -122.411114048741)",160181048-83 +140570216,KM10,14019243,Medical Incident,02/26/2014,02/26/2014,02/26/2014 01:14:19 PM,02/26/2014 01:16:35 PM,02/26/2014 01:19:24 PM,02/26/2014 01:19:57 PM,02/26/2014 01:26:15 PM,02/26/2014 01:48:24 PM,02/26/2014 01:56:14 PM,Code 2 Transport,02/26/2014 02:26:00 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,2,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",140570216-KM10 +133290311,E09,13111884,Structure Fire,11/25/2013,11/25/2013,11/25/2013 09:03:43 PM,11/25/2013 09:03:44 PM,11/25/2013 09:04:29 PM,11/25/2013 09:06:26 PM,11/25/2013 09:07:51 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Fire,11/25/2013 09:08:43 PM,26TH ST/FLORIDA ST,SF,94110,B06,9,5615,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.749544316577, -122.409761760345)",133290311-E09 +160380028,KM07,16015010,Medical Incident,02/07/2016,02/06/2016,02/07/2016 12:07:00 AM,02/07/2016 12:07:55 AM,02/07/2016 12:08:17 AM,02/07/2016 12:08:46 AM,02/07/2016 12:13:58 AM,02/07/2016 12:25:25 AM,02/07/2016 12:46:16 AM,Code 2 Transport,02/07/2016 12:57:24 AM,1600 Block of POLK ST,San Francisco,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7919482669732, -122.420894691237)",160380028-KM07 +132940260,KM06,13100053,Medical Incident,10/21/2013,10/21/2013,10/21/2013 03:46:42 PM,10/21/2013 03:47:55 PM,10/21/2013 03:50:10 PM,10/21/2013 03:50:47 PM,10/21/2013 03:57:28 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 03:58:27 PM,MARKET ST/HYDE ST,SF,94103,B02,36,1646,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",132940260-KM06 +111520055,85,11050201,Medical Incident,06/01/2011,05/31/2011,06/01/2011 07:58:51 AM,06/01/2011 07:59:38 AM,06/01/2011 08:00:54 AM,06/01/2011 08:01:13 AM,06/01/2011 08:10:29 AM,06/01/2011 08:37:24 AM,06/01/2011 08:50:32 AM,Code 2 Transport,06/01/2011 09:23:40 AM,700 Block of 35TH AVE,SF,94121,B07,34,7252,1,1,2,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7748832270511, -122.495037870754)",111520055-85 +103070142,B09,10098225,Structure Fire,11/03/2010,11/03/2010,11/03/2010 10:37:07 AM,11/03/2010 10:37:48 AM,11/03/2010 10:38:20 AM,11/03/2010 10:46:16 AM,11/03/2010 10:50:19 AM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Other,11/03/2010 10:52:55 AM,200 Block of UPLAND DR,SF,94127,B09,15,8533,3,3,3,false,,1,CHIEF,8,9,7,West of Twin Peaks,"(37.7293813611504, -122.463779173628)",103070142-B09 +123380266,KM04,12112760,Medical Incident,12/03/2012,12/03/2012,12/03/2012 03:18:46 PM,12/03/2012 03:21:29 PM,12/03/2012 03:21:57 PM,12/03/2012 03:22:34 PM,12/03/2012 03:29:54 PM,12/03/2012 03:52:28 PM,12/03/2012 03:57:29 PM,Code 2 Transport,12/03/2012 04:30:37 PM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",123380266-KM04 +110290233,E43,11009586,Medical Incident,01/29/2011,01/29/2011,01/29/2011 03:48:37 PM,01/29/2011 03:50:51 PM,01/29/2011 03:51:12 PM,01/29/2011 03:51:57 PM,01/29/2011 03:53:49 PM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Other,01/29/2011 04:10:13 PM,700 Block of ROLPH ST,SF,94112,B09,43,6226,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7117488749643, -122.431036191075)",110290233-E43 +132410249,RS2,13081347,Traffic Collision,08/29/2013,08/29/2013,08/29/2013 04:38:51 PM,08/29/2013 04:39:27 PM,08/29/2013 04:39:48 PM,08/29/2013 04:42:49 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/29/2013 04:44:42 PM,PORTOLA DR/SAN ANSELMO AV,SF,94127,B08,39,8562,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,8,7,West of Twin Peaks,"(37.7374171488633, -122.468309607404)",132410249-RS2 +122710346,E33,12089584,Medical Incident,09/27/2012,09/27/2012,09/27/2012 11:22:33 PM,09/27/2012 11:24:09 PM,09/27/2012 11:24:26 PM,09/27/2012 11:26:46 PM,09/27/2012 11:29:47 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/27/2012 11:52:31 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",122710346-E33 +160111506,61,16004378,Medical Incident,01/11/2016,01/11/2016,01/11/2016 12:17:40 PM,01/11/2016 12:18:15 PM,01/11/2016 12:19:19 PM,01/11/2016 12:19:27 PM,01/11/2016 12:26:29 PM,01/11/2016 12:38:24 PM,01/11/2016 12:55:54 PM,Code 2 Transport,01/11/2016 01:37:20 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160111506-61 +111740225,E15,11057432,Medical Incident,06/23/2011,06/23/2011,06/23/2011 04:14:04 PM,06/23/2011 04:14:28 PM,06/23/2011 04:14:47 PM,06/23/2011 04:49:06 PM,06/23/2011 04:51:16 PM,06/23/2011 04:52:17 PM,04/25/2016 02:04:01 PM,Other,06/23/2011 05:34:26 PM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,,1,ENGINE,3,9,7,Oceanview/Merced/Ingleside,"(37.7247694508388, -122.460748189713)",111740225-E15 +123240198,E02,12107735,Alarms,11/19/2012,11/19/2012,11/19/2012 01:00:49 PM,11/19/2012 01:02:18 PM,11/19/2012 01:02:29 PM,11/19/2012 01:03:43 PM,11/19/2012 01:05:50 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/19/2012 01:10:34 PM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.79330670928, -122.402930381265)",123240198-E02 +160623944,86,16024870,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:27:41 PM,03/02/2016 09:27:41 PM,03/02/2016 09:29:30 PM,03/02/2016 09:29:47 PM,03/02/2016 09:41:11 PM,03/02/2016 09:45:43 PM,03/02/2016 09:58:50 PM,Code 2 Transport,03/02/2016 10:31:07 PM,MISSION ST/7TH ST,San Francisco,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160623944-86 +160741044,88,16029260,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:41:23 AM,03/14/2016 09:41:53 AM,03/14/2016 09:42:10 AM,03/14/2016 09:42:18 AM,03/14/2016 09:44:56 AM,03/14/2016 09:55:00 AM,03/14/2016 10:08:47 AM,Code 2 Transport,03/14/2016 10:34:44 AM,3100 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7483773808375, -122.412579951922)",160741044-88 +103410419,66,10109317,Medical Incident,12/07/2010,12/07/2010,12/07/2010 11:46:54 PM,12/07/2010 11:47:25 PM,12/07/2010 11:49:18 PM,12/07/2010 11:49:27 PM,12/07/2010 11:58:25 PM,12/08/2010 12:41:50 AM,12/08/2010 12:51:13 AM,Code 2 Transport,12/08/2010 01:23:48 AM,0 Block of HARBOR RD,SF,94124,B10,17,6633,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",103410419-66 +111620333,83,11053627,Medical Incident,06/11/2011,06/11/2011,06/11/2011 09:14:03 PM,06/11/2011 09:15:04 PM,06/11/2011 09:15:45 PM,06/11/2011 09:16:03 PM,06/11/2011 09:18:45 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Patient Declined Transport,06/11/2011 10:01:04 PM,100 Block of 4TH ST,SF,94103,B03,1,2213,3,E,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",111620333-83 +113340298,AM10,11110701,Medical Incident,11/30/2011,11/30/2011,11/30/2011 07:45:01 PM,11/30/2011 07:47:10 PM,11/30/2011 07:48:59 PM,11/30/2011 07:49:04 PM,11/30/2011 08:01:16 PM,11/30/2011 08:12:41 PM,11/30/2011 08:15:50 PM,Code 2 Transport,11/30/2011 08:45:54 PM,1100 Block of OFARRELL ST,SF,94109,B04,3,3261,2,2,2,false,,1,PRIVATE,1,2,5,Western Addition,"(37.7845957801826, -122.42200470349)",113340298-AM10 +132690303,KM01,13091452,Medical Incident,09/26/2013,09/26/2013,09/26/2013 06:14:33 PM,09/26/2013 06:17:31 PM,09/26/2013 06:18:08 PM,09/26/2013 06:19:16 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,04/25/2016 01:50:34 PM,18TH ST/SANCHEZ ST,SF,94114,B05,6,5252,3,2,2,false,Non Life-threatening,1,PRIVATE,3,5,8,Castro/Upper Market,"(37.7611554774347, -122.430573567918)",132690303-KM01 +160900635,AM02,16035609,Traffic Collision,03/30/2016,03/29/2016,03/30/2016 07:33:09 AM,03/30/2016 07:35:11 AM,03/30/2016 07:36:14 AM,03/30/2016 07:36:24 AM,03/30/2016 07:43:13 AM,03/30/2016 08:03:10 AM,03/30/2016 08:37:40 AM,Code 2 Transport,03/30/2016 09:17:09 AM,400 Block of CLAYTON ST,San Francisco,94117,B05,21,4524,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.771191086771, -122.44893127026)",160900635-AM02 +160543281,AM08,16021735,Medical Incident,02/23/2016,02/23/2016,02/23/2016 06:35:59 PM,02/23/2016 06:37:39 PM,02/23/2016 06:37:54 PM,02/23/2016 06:38:18 PM,02/23/2016 06:47:55 PM,02/23/2016 07:09:57 PM,02/23/2016 07:19:48 PM,Code 2 Transport,02/23/2016 07:41:38 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160543281-AM08 +102640060,B08,10083454,Alarms,09/21/2010,09/20/2010,09/21/2010 07:54:08 AM,09/21/2010 07:54:46 AM,09/21/2010 07:54:54 AM,09/21/2010 07:55:59 AM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:58:05 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,false,,1,CHIEF,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",102640060-B08 +160903000,62,16035823,Medical Incident,03/30/2016,03/30/2016,03/30/2016 05:32:34 PM,03/30/2016 05:34:11 PM,03/30/2016 05:35:14 PM,03/30/2016 05:35:26 PM,03/30/2016 05:44:38 PM,03/30/2016 06:02:32 PM,03/30/2016 06:21:31 PM,Code 2 Transport,03/30/2016 06:51:11 PM,3700 Block of TARAVAL ST,San Francisco,94116,B08,23,7731,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7416397448507, -122.506275019904)",160903000-62 +111020353,RS1,11033973,Structure Fire,04/12/2011,04/12/2011,04/12/2011 10:22:20 PM,04/12/2011 10:22:53 PM,04/12/2011 10:23:06 PM,04/12/2011 10:24:31 PM,04/12/2011 10:26:34 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/12/2011 10:39:42 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",111020353-RS1 +133270230,E14,13111101,Medical Incident,11/23/2013,11/23/2013,11/23/2013 01:02:58 PM,11/23/2013 01:27:18 PM,11/23/2013 01:29:20 PM,11/23/2013 01:30:27 PM,11/23/2013 01:33:37 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 01:50:37 PM,500 Block of 11TH AVE,SF,94118,B07,31,7142,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7779228408214, -122.469358764286)",133270230-E14 +130520381,84,13017753,Medical Incident,02/21/2013,02/21/2013,02/21/2013 10:50:58 PM,02/21/2013 10:51:38 PM,02/21/2013 10:52:45 PM,02/21/2013 10:52:51 PM,02/21/2013 11:00:00 PM,02/21/2013 11:11:03 PM,02/21/2013 11:24:25 PM,Code 2 Transport,02/22/2013 12:01:05 AM,1300 Block of QUESADA AVE,SF,94124,B10,17,6571,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7295945473081, -122.384963446158)",130520381-84 +121980193,E41,12065816,Administrative,07/16/2012,07/16/2012,07/16/2012 02:30:41 PM,07/16/2012 02:30:46 PM,07/16/2012 02:31:04 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 02:31:28 PM,1300 Block of LEAVENWORTH ST,SF,94109,B01,41,1536,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",121980193-E41 +102510095,E03,10079228,Medical Incident,09/08/2010,09/08/2010,09/08/2010 08:55:53 AM,09/08/2010 08:57:04 AM,09/08/2010 08:57:57 AM,09/08/2010 09:00:49 AM,09/08/2010 09:03:43 AM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 09:09:48 AM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,2,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",102510095-E03 +160261491,KM13,16010273,Traffic Collision,01/26/2016,01/26/2016,01/26/2016 11:19:42 AM,01/26/2016 11:19:42 AM,01/26/2016 11:21:04 AM,01/26/2016 11:22:02 AM,01/26/2016 11:25:47 AM,01/26/2016 11:34:18 AM,01/26/2016 12:00:30 PM,Code 2 Transport,01/26/2016 12:56:27 PM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7840781681969, -122.41852472124)",160261491-KM13 +160131204,89,16005142,Medical Incident,01/13/2016,01/13/2016,01/13/2016 10:17:54 AM,01/13/2016 10:18:48 AM,01/13/2016 10:19:33 AM,01/13/2016 10:20:47 AM,01/13/2016 10:34:46 AM,01/13/2016 10:52:44 AM,01/13/2016 11:02:18 AM,Code 2 Transport,01/13/2016 11:41:52 AM,700 Block of 46TH AV,San Francisco,94121,B07,34,7273,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7743375823658, -122.506958423715)",160131204-89 +160130404,88,16005052,Medical Incident,01/13/2016,01/12/2016,01/13/2016 05:12:19 AM,01/13/2016 05:12:19 AM,01/13/2016 05:12:26 AM,01/13/2016 05:12:39 AM,01/13/2016 05:16:15 AM,01/13/2016 05:27:19 AM,01/13/2016 05:41:43 AM,Code 2 Transport,01/13/2016 06:15:35 AM,1000 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7943031538936, -122.40956298612)",160130404-88 +160020384,KM07,16000607,Medical Incident,01/02/2016,01/01/2016,01/02/2016 03:24:26 AM,01/02/2016 03:24:26 AM,01/02/2016 03:24:54 AM,01/02/2016 03:25:22 AM,01/02/2016 03:31:58 AM,01/02/2016 03:47:22 AM,01/02/2016 03:57:01 AM,Code 2 Transport,01/02/2016 04:28:52 AM,600 Block of UNION ST,San Francisco,94133,B01,28,1334,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.800223037363, -122.410509595301)",160020384-KM07 +110400377,E24,11013398,Fuel Spill,02/09/2011,02/09/2011,02/09/2011 09:14:44 PM,02/09/2011 09:17:40 PM,02/09/2011 09:17:48 PM,02/09/2011 09:23:38 PM,02/09/2011 09:27:15 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Fire,02/09/2011 09:29:40 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",110400377-E24 +132660083,KM09,13090166,Medical Incident,09/23/2013,09/23/2013,09/23/2013 08:00:17 AM,09/23/2013 08:00:30 AM,09/23/2013 08:01:15 AM,09/23/2013 08:01:24 AM,09/23/2013 08:13:14 AM,09/23/2013 08:31:47 AM,09/23/2013 08:42:35 AM,Code 2 Transport,09/23/2013 09:36:36 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",132660083-KM09 +130170141,E05,13005739,Administrative,01/17/2013,01/17/2013,01/17/2013 10:55:17 AM,01/17/2013 10:57:19 AM,01/17/2013 10:57:55 AM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 10:58:53 AM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",130170141-E05 +160853978,78,16033991,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:16:49 PM,03/25/2016 10:17:56 PM,03/25/2016 10:18:20 PM,03/25/2016 10:18:24 PM,03/25/2016 10:26:42 PM,03/25/2016 10:43:06 PM,03/25/2016 10:52:55 PM,Code 2 Transport,03/25/2016 11:29:27 PM,COLE ST/HAIGHT ST,San Francisco,94117,B05,12,4533,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",160853978-78 +113520244,B06,11116907,Structure Fire,12/18/2011,12/18/2011,12/18/2011 03:26:04 PM,12/18/2011 03:26:12 PM,12/18/2011 03:28:00 PM,04/25/2016 02:01:05 PM,04/25/2016 02:01:05 PM,04/25/2016 02:01:05 PM,04/25/2016 02:01:05 PM,Fire,12/18/2011 03:33:43 PM,1100 Block of CARROLL AVE,SF,94124,B10,17,6615,3,3,3,false,,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7202710808043, -122.384912924434)",113520244-B06 +140310082,E03,14010461,Medical Incident,01/31/2014,01/31/2014,01/31/2014 09:16:56 AM,01/31/2014 09:17:34 AM,01/31/2014 09:18:02 AM,01/31/2014 09:19:33 AM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/31/2014 09:32:35 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140310082-E03 +113280033,82,11108753,Medical Incident,11/24/2011,11/23/2011,11/24/2011 03:37:37 AM,11/24/2011 03:39:55 AM,11/24/2011 03:40:36 AM,11/24/2011 03:40:40 AM,11/24/2011 03:42:13 AM,11/24/2011 03:46:07 AM,11/24/2011 03:58:58 AM,Code 2 Transport,11/24/2011 04:30:27 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",113280033-82 +160013596,75,16000504,Medical Incident,01/01/2016,01/01/2016,01/01/2016 09:15:50 PM,01/01/2016 09:17:52 PM,01/01/2016 09:18:23 PM,01/01/2016 09:18:59 PM,01/01/2016 09:22:21 PM,01/01/2016 09:42:41 PM,01/01/2016 09:48:42 PM,Code 3 Transport,01/01/2016 10:31:26 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160013596-75 +120830184,E38,12027563,Structure Fire,03/23/2012,03/23/2012,03/23/2012 01:14:17 PM,03/23/2012 01:17:21 PM,03/23/2012 01:18:04 PM,03/23/2012 01:19:38 PM,03/23/2012 01:26:18 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 01:41:25 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,false,Fire,1,ENGINE,7,4,2,Marina,"(37.8008031731089, -122.436797742278)",120830184-E38 +120710153,T15,12023587,Structure Fire,03/11/2012,03/11/2012,03/11/2012 11:19:41 AM,03/11/2012 11:19:41 AM,03/11/2012 11:19:56 AM,03/11/2012 11:20:32 AM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/11/2012 11:23:25 AM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,true,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",120710153-T15 +123490027,E19,12116565,Traffic Collision,12/14/2012,12/13/2012,12/14/2012 02:06:58 AM,12/14/2012 02:09:12 AM,12/14/2012 02:09:19 AM,12/14/2012 02:11:02 AM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/14/2012 02:12:28 AM,SLOAT BL/19TH AV,SF,94132,B08,19,7413,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",123490027-E19 +160854065,76,16033999,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:39:12 PM,03/25/2016 10:39:12 PM,03/25/2016 10:39:38 PM,03/25/2016 10:39:45 PM,03/25/2016 10:47:45 PM,03/25/2016 10:51:36 PM,03/25/2016 11:06:26 PM,Code 2 Transport,03/25/2016 11:50:57 PM,2100 Block of MARKET ST,San Francisco,94114,B02,6,5209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",160854065-76 +102330310,E01,10073460,Medical Incident,08/21/2010,08/21/2010,08/21/2010 11:28:31 PM,08/21/2010 11:29:14 PM,08/21/2010 11:29:25 PM,04/25/2016 02:08:58 PM,08/21/2010 11:31:16 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/21/2010 11:42:37 PM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",102330310-E01 +102290228,E03,10072093,Other,08/17/2010,08/17/2010,08/17/2010 03:07:57 PM,08/17/2010 03:09:08 PM,08/17/2010 03:09:55 PM,08/17/2010 03:12:21 PM,08/17/2010 03:19:34 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 04:04:43 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",102290228-E03 +120160003,54,12005251,Medical Incident,01/16/2012,01/15/2012,01/16/2012 12:16:29 AM,01/16/2012 12:17:55 AM,01/16/2012 12:18:35 AM,01/16/2012 12:18:43 AM,01/16/2012 12:23:39 AM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Against Medical Advice,01/16/2012 01:41:54 AM,800 Block of BEACH ST,SF,94109,B01,28,3135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8062749295905, -122.423009244612)",120160003-54 +113140231,E05,11104372,Medical Incident,11/10/2011,11/10/2011,11/10/2011 03:08:46 PM,11/10/2011 03:09:23 PM,11/10/2011 03:12:26 PM,11/10/2011 03:13:33 PM,11/10/2011 03:17:30 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 03:27:29 PM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,2,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",113140231-E05 +113470382,99,11115286,Medical Incident,12/13/2011,12/13/2011,12/13/2011 09:51:16 PM,12/13/2011 09:53:03 PM,12/13/2011 09:59:41 PM,12/13/2011 10:05:51 PM,04/25/2016 02:01:10 PM,12/13/2011 10:20:46 PM,12/13/2011 11:26:08 PM,Code 2 Transport,12/13/2011 11:28:55 PM,200 Block of CAMERON WAY,SF,94124,B10,17,6613,2,2,2,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.720440433346, -122.388366313776)",113470382-99 +160392672,52,16015717,Medical Incident,02/08/2016,02/08/2016,02/08/2016 05:08:46 PM,02/08/2016 05:09:50 PM,02/08/2016 05:10:06 PM,02/08/2016 05:10:28 PM,02/08/2016 05:18:53 PM,02/08/2016 05:39:29 PM,02/08/2016 05:51:02 PM,Code 2 Transport,02/08/2016 06:40:13 PM,600 Block of OAK ST,San Francisco,94117,B02,5,3523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",160392672-52 +140370182,E03,14012505,Structure Fire,02/06/2014,02/06/2014,02/06/2014 12:46:06 PM,02/06/2014 12:46:06 PM,02/06/2014 12:48:13 PM,02/06/2014 12:48:13 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 12:48:25 PM,GRANT AV/BUSH ST,SF,94108,B01,13,1315,,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7905652365323, -122.405573746363)",140370182-E03 +160512743,76,16020566,Medical Incident,02/20/2016,02/20/2016,02/20/2016 07:00:59 PM,02/20/2016 07:01:29 PM,02/20/2016 07:02:11 PM,02/20/2016 07:02:17 PM,02/20/2016 07:09:19 PM,02/20/2016 07:22:38 PM,02/20/2016 07:29:54 PM,Code 2 Transport,02/20/2016 08:16:01 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",160512743-76 +110640432,E07,11021295,Citizen Assist / Service Call,03/05/2011,03/05/2011,03/05/2011 11:27:51 PM,03/05/2011 11:37:26 PM,03/05/2011 11:39:32 PM,03/05/2011 11:40:46 PM,03/05/2011 11:43:44 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Fire,03/06/2011 12:22:14 AM,3500 Block of 18TH ST,SF,94110,B02,7,5422,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7615366331071, -122.423372714145)",110640432-E07 +122770354,59,12091660,Medical Incident,10/03/2012,10/03/2012,10/03/2012 05:51:53 PM,10/03/2012 05:53:02 PM,10/03/2012 05:54:03 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,Other,04/25/2016 01:56:28 PM,700 Block of BROADWAY,SF,94133,B01,2,1353,3,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7976146082072, -122.409164766852)",122770354-59 +121730177,T07,12057438,Structure Fire,06/21/2012,06/21/2012,06/21/2012 11:51:40 AM,06/21/2012 11:51:41 AM,06/21/2012 11:51:49 AM,06/21/2012 11:53:15 AM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/21/2012 11:54:20 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,false,Alarm,1,TRUCK,2,2,6,Mission,"(37.7726641818375, -122.418338317697)",121730177-T07 +160763632,70,16030333,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:07:55 PM,03/16/2016 08:09:34 PM,03/16/2016 08:10:02 PM,03/16/2016 08:10:10 PM,03/16/2016 08:16:59 PM,03/16/2016 08:19:56 PM,03/16/2016 08:48:53 PM,Code 2 Transport,03/16/2016 09:15:01 PM,PAGE ST/ASHBURY ST,San Francisco,94117,B05,21,4513,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7709346395903, -122.447122700475)",160763632-70 +130780083,E43,13025948,Medical Incident,03/19/2013,03/18/2013,03/19/2013 07:19:04 AM,03/19/2013 07:19:25 AM,03/19/2013 07:20:25 AM,04/25/2016 01:53:45 PM,03/19/2013 07:22:53 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 07:40:04 AM,1800 Block of FELTON ST,SF,94134,B09,43,6153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,9,Excelsior,"(37.7253187899942, -122.422855621147)",130780083-E43 +102860416,B07,10091336,Traffic Collision,10/13/2010,10/13/2010,10/13/2010 10:19:16 PM,10/13/2010 10:20:46 PM,10/13/2010 10:22:23 PM,10/13/2010 10:27:42 PM,10/13/2010 10:38:57 PM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Other,10/13/2010 10:53:53 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,2,2,2,false,,1,CHIEF,5,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",102860416-B07 +122820309,68,12093475,Medical Incident,10/08/2012,10/08/2012,10/08/2012 09:07:54 PM,10/08/2012 09:09:49 PM,10/08/2012 09:10:22 PM,10/08/2012 09:10:36 PM,10/08/2012 09:15:22 PM,10/08/2012 09:23:04 PM,10/08/2012 09:45:40 PM,Code 2 Transport,10/08/2012 09:58:05 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122820309-68 +160113298,63,16004555,Medical Incident,01/11/2016,01/11/2016,01/11/2016 09:00:47 PM,01/11/2016 09:00:47 PM,01/11/2016 09:00:57 PM,01/11/2016 09:01:08 PM,01/11/2016 09:06:44 PM,01/11/2016 09:12:45 PM,01/11/2016 09:24:57 PM,Code 2 Transport,01/11/2016 09:46:05 PM,MISSION ST/ONONDAGA AV,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7211635493758, -122.437461137723)",160113298-63 +131430230,E05,13048534,Medical Incident,05/23/2013,05/23/2013,05/23/2013 02:11:50 PM,05/23/2013 02:12:42 PM,05/23/2013 02:15:55 PM,05/23/2013 02:16:07 PM,04/25/2016 01:52:39 PM,04/25/2016 01:52:39 PM,04/25/2016 01:52:39 PM,Other,05/23/2013 02:16:54 PM,MARKET ST/VAN NESS AV,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Mission,"(37.7751470741622, -122.419255607214)",131430230-E05 +133040204,E41,13103277,Medical Incident,10/31/2013,10/31/2013,10/31/2013 01:22:12 PM,10/31/2013 01:22:29 PM,10/31/2013 01:23:02 PM,10/31/2013 01:23:55 PM,10/31/2013 01:25:56 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/31/2013 01:25:09 PM,CLAY ST/TAYLOR ST,SF,94108,B01,41,1444,3,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7934323938956, -122.412829216622)",133040204-E41 +140740375,RC2,14025177,Medical Incident,03/15/2014,03/15/2014,03/15/2014 08:22:16 PM,03/15/2014 08:23:01 PM,03/15/2014 08:24:57 PM,03/15/2014 08:26:19 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Code 2 Transport,03/15/2014 08:28:54 PM,2800 Block of 19TH AVE,SAN FRANCISCO,94132,B08,19,7413,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,7,West of Twin Peaks,"(37.7353187711004, -122.47501281141)",140740375-RC2 +131930232,E03,13065691,Medical Incident,07/12/2013,07/12/2013,07/12/2013 04:43:44 PM,07/12/2013 04:44:17 PM,07/12/2013 04:44:45 PM,04/25/2016 01:51:50 PM,07/12/2013 04:46:35 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 04:50:04 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",131930232-E03 +160451352,KM11,16018087,Medical Incident,02/14/2016,02/14/2016,02/14/2016 11:23:59 AM,02/14/2016 11:24:25 AM,02/14/2016 11:24:44 AM,02/14/2016 11:25:15 AM,02/14/2016 11:29:49 AM,02/14/2016 11:45:15 AM,02/14/2016 12:07:41 PM,Code 2 Transport,02/14/2016 12:24:10 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160451352-KM11 +132560188,T13,13086540,Medical Incident,09/13/2013,09/13/2013,09/13/2013 01:27:50 PM,09/13/2013 01:28:21 PM,09/13/2013 01:29:01 PM,09/13/2013 01:30:14 PM,09/13/2013 01:32:54 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 01:36:08 PM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7933243681385, -122.4027937497)",132560188-T13 +133260207,E36,13110733,Structure Fire,11/22/2013,11/22/2013,11/22/2013 01:58:46 PM,11/22/2013 01:58:46 PM,11/22/2013 01:59:21 PM,04/25/2016 01:49:38 PM,11/22/2013 02:04:13 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 02:06:39 PM,0 Block of CASTRO ST,SF,94114,B05,6,513,3,3,3,true,Alarm,1,ENGINE,3,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",133260207-E36 +160493532,71,16019879,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:45:18 PM,02/18/2016 08:45:18 PM,02/18/2016 08:47:14 PM,02/18/2016 08:47:20 PM,02/18/2016 08:56:38 PM,02/18/2016 09:14:14 PM,02/18/2016 09:26:30 PM,Code 2 Transport,02/18/2016 10:10:03 PM,400 Block of FREDERICK ST,San Francisco,94117,B05,12,4551,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7665369786005, -122.452132605079)",160493532-71 +121500314,AM18,12049863,Medical Incident,05/29/2012,05/29/2012,05/29/2012 09:41:13 PM,05/29/2012 09:42:44 PM,05/29/2012 09:42:52 PM,05/29/2012 09:43:23 PM,05/29/2012 09:50:44 PM,05/29/2012 10:06:10 PM,05/29/2012 10:25:16 PM,Code 2 Transport,05/29/2012 10:58:21 PM,500 Block of BAY ST,SF,94133,B01,28,1425,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",121500314-AM18 +111500305,E02,11049813,Medical Incident,05/30/2011,05/30/2011,05/30/2011 09:01:49 PM,05/30/2011 09:02:50 PM,05/30/2011 09:03:04 PM,05/30/2011 09:04:28 PM,05/30/2011 09:06:33 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 09:15:34 PM,1100 Block of KEARNY ST,SF,94133,B01,2,1251,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.798837491664, -122.405548432613)",111500305-E02 +160200970,60,16007946,Medical Incident,01/20/2016,01/20/2016,01/20/2016 09:12:34 AM,01/20/2016 09:14:35 AM,01/20/2016 09:15:12 AM,01/20/2016 09:16:05 AM,01/20/2016 09:26:58 AM,01/20/2016 09:34:59 AM,01/20/2016 09:46:58 AM,Code 2 Transport,01/20/2016 10:50:28 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",160200970-60 +122000340,E41,12066603,Medical Incident,07/18/2012,07/18/2012,07/18/2012 07:42:34 PM,07/18/2012 07:44:55 PM,07/18/2012 07:45:37 PM,07/18/2012 07:45:58 PM,07/18/2012 07:47:14 PM,04/25/2016 01:57:39 PM,04/25/2016 01:57:39 PM,Other,07/18/2012 08:00:40 PM,2500 Block of LARKIN ST,SF,94109,B01,41,1625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8012870809778, -122.421228710563)",122000340-E41 +111450193,E36,11048189,Structure Fire,05/25/2011,05/25/2011,05/25/2011 02:52:43 PM,05/25/2011 02:52:43 PM,05/25/2011 02:53:06 PM,05/25/2011 02:54:33 PM,05/25/2011 02:55:25 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Fire,05/25/2011 02:56:11 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7726641818375, -122.418338317697)",111450193-E36 +132580029,T05,13087142,Structure Fire,09/15/2013,09/14/2013,09/15/2013 01:51:35 AM,09/15/2013 01:51:35 AM,09/15/2013 01:52:11 AM,09/15/2013 01:53:44 AM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/15/2013 01:57:20 AM,WEBSTER ST/CLAY ST,SF,94115,B04,38,3466,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7909199784308, -122.432561650806)",132580029-T05 +110250032,E43,11008097,Medical Incident,01/25/2011,01/24/2011,01/25/2011 02:19:09 AM,01/25/2011 02:20:53 AM,01/25/2011 02:21:45 AM,01/25/2011 02:23:46 AM,01/25/2011 02:25:47 AM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/25/2011 02:30:01 AM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",110250032-E43 +121440067,E02,12047736,Medical Incident,05/23/2012,05/22/2012,05/23/2012 07:31:11 AM,05/23/2012 07:34:10 AM,05/23/2012 07:34:37 AM,05/23/2012 07:36:30 AM,05/23/2012 07:37:09 AM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Other,05/23/2012 07:53:10 AM,800 Block of VALLEJO ST,SF,94133,B01,2,1421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.798323215746, -122.411286922682)",121440067-E02 +160090737,75,16003559,Medical Incident,01/09/2016,01/08/2016,01/09/2016 07:57:46 AM,01/09/2016 07:58:19 AM,01/09/2016 07:58:33 AM,01/09/2016 07:59:03 AM,01/09/2016 08:03:36 AM,01/09/2016 08:18:08 AM,01/09/2016 08:23:58 AM,Code 2 Transport,01/09/2016 08:49:03 AM,1100 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7904931635277, -122.414117159154)",160090737-75 +123560152,E07,12119112,Medical Incident,12/21/2012,12/21/2012,12/21/2012 11:33:42 AM,12/21/2012 11:34:25 AM,12/21/2012 11:34:32 AM,12/21/2012 11:34:37 AM,12/21/2012 11:35:40 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 11:45:03 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",123560152-E07 +122390176,E34,12079130,Medical Incident,08/26/2012,08/26/2012,08/26/2012 01:58:52 PM,08/26/2012 01:59:17 PM,08/26/2012 01:59:33 PM,08/26/2012 02:00:19 PM,08/26/2012 02:01:33 PM,04/25/2016 01:57:03 PM,04/25/2016 01:57:03 PM,Other,08/26/2012 02:13:35 PM,500 Block of 42ND AVE,SF,94121,B07,34,7264,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7782935625687, -122.502945688959)",122390176-E34 +112740375,54,11090779,Medical Incident,10/01/2011,10/01/2011,10/01/2011 08:27:18 PM,10/01/2011 08:29:34 PM,10/01/2011 08:31:37 PM,10/01/2011 08:31:55 PM,10/01/2011 08:37:05 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Patient Declined Transport,10/01/2011 09:15:44 PM,700 Block of CAPITOL AVE,SF,94112,B09,33,8373,1,1,2,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7170286522761, -122.459137060052)",112740375-54 +160911125,56,16036025,Medical Incident,03/31/2016,03/31/2016,03/31/2016 10:16:47 AM,03/31/2016 10:16:47 AM,03/31/2016 10:17:33 AM,03/31/2016 10:17:33 AM,03/31/2016 10:23:35 AM,03/31/2016 10:37:42 AM,03/31/2016 10:46:09 AM,Code 2 Transport,03/31/2016 10:59:07 AM,700 Block of MINNA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7763745623724, -122.413346205922)",160911125-56 +131220311,RS1,13041126,Medical Incident,05/02/2013,05/02/2013,05/02/2013 03:55:28 PM,05/02/2013 03:56:34 PM,05/02/2013 03:58:07 PM,05/02/2013 03:58:20 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 04:00:25 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7807920802753, -122.408385745499)",131220311-RS1 +111110285,B03,11036743,Alarms,04/21/2011,04/21/2011,04/21/2011 05:24:35 PM,04/21/2011 05:24:59 PM,04/21/2011 05:27:34 PM,04/21/2011 05:28:59 PM,04/21/2011 05:31:23 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Fire,04/21/2011 05:33:36 PM,1500 Block of 4TH ST,SF,94158,B03,8,2366,3,3,3,false,,1,CHIEF,2,3,6,Mission Bay,"(37.7691856282366, -122.391094397762)",111110285-B03 +160062771,79,16002515,Medical Incident,01/06/2016,01/06/2016,01/06/2016 05:22:17 PM,01/06/2016 05:23:32 PM,01/06/2016 05:25:58 PM,01/06/2016 05:26:17 PM,01/06/2016 05:52:03 PM,01/06/2016 06:04:55 PM,01/06/2016 06:11:28 PM,Code 2 Transport,01/06/2016 06:48:53 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7683148008502, -122.427682264817)",160062771-79 +160671356,77,16026730,Medical Incident,03/07/2016,03/07/2016,03/07/2016 12:14:32 PM,03/07/2016 12:17:00 PM,03/07/2016 12:17:35 PM,03/07/2016 12:17:44 PM,03/07/2016 12:21:08 PM,03/07/2016 12:38:09 PM,03/07/2016 12:47:46 PM,Code 2 Transport,03/07/2016 01:37:39 PM,1900 Block of PALOU AVE,San Francisco,94124,B10,42,6431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7376407906904, -122.397487086449)",160671356-77 +113600190,T12,11119659,Alarms,12/26/2011,12/26/2011,12/26/2011 02:47:19 PM,12/26/2011 02:48:35 PM,12/26/2011 02:48:43 PM,12/26/2011 02:50:28 PM,12/26/2011 02:56:03 PM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 03:08:31 PM,0 Block of MUSIC CONCOURSE DR,SF,94118,B07,22,7744,3,3,3,false,,1,TRUCK,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",113600190-T12 +113270221,57,11108597,Medical Incident,11/23/2011,11/23/2011,11/23/2011 03:14:58 PM,11/23/2011 03:16:39 PM,11/23/2011 03:17:03 PM,11/23/2011 03:17:34 PM,11/23/2011 03:25:48 PM,11/23/2011 03:37:46 PM,11/23/2011 03:52:25 PM,Code 2 Transport,11/23/2011 04:20:51 PM,100 Block of MONETA WAY,SF,94112,B09,33,8347,3,3,3,true,,1,MEDIC,2,9,11,Outer Mission,"(37.7125153301803, -122.450418099402)",113270221-57 +123560054,82,12119032,Medical Incident,12/21/2012,12/20/2012,12/21/2012 04:20:47 AM,12/21/2012 04:21:37 AM,12/21/2012 04:21:55 AM,12/21/2012 04:22:07 AM,12/21/2012 04:24:18 AM,12/21/2012 04:46:10 AM,12/21/2012 04:50:54 AM,Code 2 Transport,12/21/2012 05:31:48 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",123560054-82 +103060266,92,10097961,Medical Incident,11/02/2010,11/02/2010,11/02/2010 02:10:29 PM,11/02/2010 02:10:48 PM,11/02/2010 02:11:22 PM,11/02/2010 02:12:33 PM,11/02/2010 02:21:34 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 02:25:14 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",103060266-92 +160890983,82,16035257,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:24:14 AM,03/29/2016 09:25:10 AM,03/29/2016 09:34:00 AM,03/29/2016 09:34:00 AM,03/29/2016 09:42:07 AM,03/29/2016 09:53:10 AM,03/29/2016 10:20:55 AM,Code 2 Transport,03/29/2016 11:01:02 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160890983-82 +123130196,E01,12104145,Structure Fire,11/08/2012,11/08/2012,11/08/2012 12:46:21 PM,11/08/2012 12:47:07 PM,11/08/2012 12:47:15 PM,11/08/2012 12:48:29 PM,11/08/2012 12:51:02 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 01:19:35 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7764944808779, -122.411359138357)",123130196-E01 +111660303,E10,11054893,Medical Incident,06/15/2011,06/15/2011,06/15/2011 06:15:01 PM,06/15/2011 06:15:50 PM,06/15/2011 06:17:28 PM,06/15/2011 06:18:44 PM,06/15/2011 06:20:37 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/15/2011 06:34:26 PM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,,1,ENGINE,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",111660303-E10 +131600098,72,13054282,Medical Incident,06/09/2013,06/09/2013,06/09/2013 09:28:24 AM,06/09/2013 09:29:22 AM,06/09/2013 09:30:08 AM,06/09/2013 09:30:16 AM,06/09/2013 09:34:54 AM,06/09/2013 09:41:56 AM,06/09/2013 09:49:05 AM,Code 2 Transport,06/09/2013 10:12:04 AM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7619675295768, -122.417178937573)",131600098-72 +160773118,KM05,16030719,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:37:50 PM,03/17/2016 05:37:50 PM,03/17/2016 05:38:49 PM,03/17/2016 05:39:11 PM,03/17/2016 06:20:31 PM,03/17/2016 06:20:37 PM,03/17/2016 07:04:05 PM,Code 2 Transport,03/17/2016 07:43:15 PM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160773118-KM05 +121620384,55,12053804,Medical Incident,06/10/2012,06/10/2012,06/10/2012 08:16:29 PM,06/10/2012 08:17:05 PM,06/10/2012 08:17:33 PM,06/10/2012 08:17:49 PM,06/10/2012 08:25:44 PM,06/10/2012 08:37:37 PM,06/10/2012 08:56:50 PM,Code 3 Transport,06/10/2012 09:33:43 PM,700 Block of 42ND AVE,SF,94121,B07,34,7263,3,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7745338805976, -122.502672176486)",121620384-55 +140820159,85,14027677,Medical Incident,03/23/2014,03/23/2014,03/23/2014 12:53:24 PM,03/23/2014 12:55:19 PM,03/23/2014 01:00:50 PM,03/23/2014 01:01:37 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Gone on Arrival,03/23/2014 01:05:35 PM,1200 Block of CASTRO ST,SAN FRANCISCO,94114,B06,24,5515,3,2,2,true,Non Life-threatening,1,MEDIC,3,6,8,Noe Valley,"(37.7516863165838, -122.434194436175)",140820159-85 +140140379,68,14004965,Medical Incident,01/14/2014,01/14/2014,01/14/2014 10:04:39 PM,01/14/2014 10:05:21 PM,01/14/2014 10:05:42 PM,01/14/2014 10:08:23 PM,01/14/2014 10:11:00 PM,01/14/2014 10:20:57 PM,01/14/2014 10:33:19 PM,Code 2 Transport,01/14/2014 11:01:59 PM,1600 Block of 34TH AVE,SF,94122,B08,18,7542,,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7563254807326, -122.492809754043)",140140379-68 +160351528,63,16013805,Medical Incident,02/04/2016,02/04/2016,02/04/2016 11:44:01 AM,02/04/2016 11:44:01 AM,02/04/2016 11:44:33 AM,02/04/2016 11:45:35 AM,02/04/2016 12:00:34 PM,02/04/2016 12:39:58 PM,02/04/2016 12:42:58 PM,Code 2 Transport,02/04/2016 01:39:48 PM,30TH ST/MISSION ST,San Francisco,94110,B06,32,5575,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",160351528-63 +132760150,E12,13093706,Structure Fire,10/03/2013,10/03/2013,10/03/2013 11:50:06 AM,10/03/2013 11:51:28 AM,10/03/2013 11:51:52 AM,10/03/2013 11:52:32 AM,10/03/2013 11:55:48 AM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/03/2013 11:56:57 AM,3100 Block of FULTON ST,SF,94122,B07,31,7133,3,3,3,true,Alarm,1,ENGINE,2,7,1,Inner Richmond,"(37.7734767861199, -122.465348329956)",132760150-E12 +160910982,55,16036011,Medical Incident,03/31/2016,03/31/2016,03/31/2016 09:35:43 AM,03/31/2016 09:36:42 AM,03/31/2016 09:36:53 AM,03/31/2016 09:36:59 AM,03/31/2016 09:44:19 AM,03/31/2016 09:56:03 AM,03/31/2016 10:16:18 AM,Code 2 Transport,03/31/2016 10:31:18 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",160910982-55 +111150088,54,11037875,Medical Incident,04/25/2011,04/24/2011,04/25/2011 07:55:22 AM,04/25/2011 07:57:14 AM,04/25/2011 07:58:33 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 08:00:22 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",111150088-54 +113170276,KM12,11105412,Medical Incident,11/13/2011,11/13/2011,11/13/2011 06:17:07 PM,11/13/2011 06:21:21 PM,11/13/2011 06:21:44 PM,11/13/2011 06:27:15 PM,11/13/2011 06:27:32 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 06:29:47 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",113170276-KM12 +102360133,E41,10074276,Medical Incident,08/24/2010,08/24/2010,08/24/2010 10:34:01 AM,08/24/2010 10:35:41 AM,08/24/2010 10:36:06 AM,08/24/2010 10:37:16 AM,08/24/2010 10:38:44 AM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 10:53:42 AM,1200 Block of HYDE ST,SF,94109,B01,41,1563,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7921390492272, -122.417555588136)",102360133-E41 +160280943,65,16011013,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:21:38 AM,01/28/2016 09:22:57 AM,01/28/2016 09:23:30 AM,01/28/2016 09:23:38 AM,01/28/2016 09:33:30 AM,01/28/2016 09:54:24 AM,01/28/2016 10:10:53 AM,Code 2 Transport,01/28/2016 10:56:45 AM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160280943-65 +102730387,93,10086862,Medical Incident,09/30/2010,09/30/2010,09/30/2010 11:31:09 PM,09/30/2010 11:33:00 PM,09/30/2010 11:33:47 PM,09/30/2010 11:34:14 PM,09/30/2010 11:43:02 PM,09/30/2010 11:54:41 PM,10/01/2010 12:20:30 AM,Code 2 Transport,10/01/2010 12:22:04 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",102730387-93 +160372349,77,16014748,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:59:28 PM,02/06/2016 03:00:37 PM,02/06/2016 03:01:06 PM,02/06/2016 03:01:18 PM,02/06/2016 03:05:46 PM,02/06/2016 03:19:22 PM,02/06/2016 03:50:37 PM,Code 2 Transport,02/06/2016 04:34:05 PM,700 Block of 3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7785274304406, -122.392246074951)",160372349-77 +133200343,E17,13108870,Medical Incident,11/16/2013,11/16/2013,11/16/2013 10:33:54 PM,11/16/2013 10:35:02 PM,11/16/2013 10:35:55 PM,11/16/2013 10:38:29 PM,11/16/2013 10:41:47 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/16/2013 10:55:42 PM,NEWCOMB AV/KEITH ST,SF,94124,B10,17,6516,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7331034788148, -122.38604554171)",133200343-E17 +123290199,B06,12109434,Other,11/24/2012,11/24/2012,11/24/2012 03:04:20 PM,11/24/2012 03:04:59 PM,11/24/2012 03:05:08 PM,04/25/2016 01:55:39 PM,11/24/2012 03:18:35 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 04:07:40 PM,SAN JOSE AV/29TH ST,SF,94110,B06,32,5625,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,6,8,Noe Valley,"(37.7439422420021, -122.422669446432)",123290199-B06 +111170016,E17,11038488,Medical Incident,04/27/2011,04/26/2011,04/27/2011 01:34:06 AM,04/27/2011 01:35:35 AM,04/27/2011 01:36:02 AM,04/27/2011 01:37:27 AM,04/27/2011 01:41:04 AM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/27/2011 01:41:17 AM,4500 Block of 3RD ST,SF,94124,B10,17,6515,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7368113615571, -122.390133702873)",111170016-E17 +140970384,93,14032832,Medical Incident,04/07/2014,04/07/2014,04/07/2014 07:33:27 PM,04/07/2014 07:34:05 PM,04/07/2014 07:34:24 PM,04/07/2014 07:34:29 PM,04/07/2014 07:37:35 PM,04/07/2014 07:55:19 PM,04/07/2014 08:03:15 PM,Code 2 Transport,04/07/2014 08:25:16 PM,1300 Block of STOCKTON ST,SAN FRANCISCO,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",140970384-93 +160732509,64,16029068,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:07:01 PM,03/13/2016 07:08:18 PM,03/13/2016 07:08:52 PM,03/13/2016 07:12:41 PM,03/13/2016 07:14:05 PM,03/13/2016 07:19:25 PM,03/13/2016 07:41:18 PM,Code 2 Transport,03/13/2016 08:20:43 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",160732509-64 +113390299,E18,11112456,Medical Incident,12/05/2011,12/05/2011,12/05/2011 06:40:25 PM,12/05/2011 06:42:58 PM,12/05/2011 06:43:08 PM,12/05/2011 06:44:28 PM,12/05/2011 06:47:38 PM,04/25/2016 02:01:18 PM,04/25/2016 02:01:18 PM,Other,12/05/2011 06:52:58 PM,3800 Block of IRVING ST,SF,94122,B08,23,7626,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7625382455946, -122.499087530829)",113390299-E18 +160581200,AM10,16023073,Medical Incident,02/27/2016,02/27/2016,02/27/2016 10:06:45 AM,02/27/2016 10:08:13 AM,02/27/2016 10:08:46 AM,02/27/2016 10:09:13 AM,02/27/2016 10:16:11 AM,02/27/2016 10:26:42 AM,02/27/2016 10:42:05 AM,Code 2 Transport,02/27/2016 11:10:36 AM,MARKET ST/2ND ST,San Francisco,94105,B01,13,1236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",160581200-AM10 +160621843,88,16024698,Medical Incident,03/02/2016,03/02/2016,03/02/2016 12:49:53 PM,03/02/2016 12:53:51 PM,03/02/2016 12:56:36 PM,03/02/2016 12:56:43 PM,03/02/2016 01:01:00 PM,03/02/2016 01:14:45 PM,03/02/2016 01:30:37 PM,Code 2 Transport,03/02/2016 01:59:16 PM,3700 Block of CALIFORNIA ST,San Francisco,94118,B07,10,449,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",160621843-88 +122550275,60,12084362,Medical Incident,09/11/2012,09/11/2012,09/11/2012 04:40:16 PM,09/11/2012 04:41:46 PM,09/11/2012 04:42:49 PM,09/11/2012 04:43:19 PM,09/11/2012 04:47:59 PM,09/11/2012 04:59:42 PM,09/11/2012 05:09:04 PM,Code 3 Transport,09/11/2012 05:49:44 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7755676420155, -122.412334779681)",122550275-60 +121060349,67,12035280,Medical Incident,04/15/2012,04/15/2012,04/15/2012 09:10:46 PM,04/15/2012 09:12:01 PM,04/15/2012 09:12:12 PM,04/15/2012 09:12:58 PM,04/15/2012 09:16:21 PM,04/15/2012 09:41:20 PM,04/15/2012 09:55:06 PM,Code 2 Transport,04/15/2012 10:32:49 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",121060349-67 +103520321,E28,10113088,Citizen Assist / Service Call,12/18/2010,12/18/2010,12/18/2010 07:17:08 PM,12/18/2010 07:17:37 PM,12/18/2010 07:17:49 PM,12/18/2010 07:18:54 PM,12/18/2010 07:21:50 PM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/18/2010 07:24:54 PM,TAYLOR ST/JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.808214052974, -122.41580242723)",103520321-E28 +160011961,KM13,16000325,Medical Incident,01/01/2016,01/01/2016,01/01/2016 12:49:27 PM,01/01/2016 12:51:11 PM,01/01/2016 12:52:00 PM,01/01/2016 12:52:32 PM,01/01/2016 01:01:11 PM,01/01/2016 01:15:07 PM,01/01/2016 01:36:49 PM,Code 2 Transport,01/01/2016 02:09:17 PM,2400 Block of 16TH AV,San Francisco,94116,B08,40,7376,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7422583060718, -122.472485037175)",160011961-KM13 +160341655,67,16013375,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:38:39 PM,02/03/2016 12:39:52 PM,02/03/2016 12:40:28 PM,02/03/2016 12:40:42 PM,02/03/2016 01:08:44 PM,02/03/2016 01:23:15 PM,02/03/2016 01:40:48 PM,Code 2 Transport,02/03/2016 02:12:12 PM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",160341655-67 +102630154,94,10083185,Medical Incident,09/20/2010,09/20/2010,09/20/2010 11:43:29 AM,09/20/2010 11:44:12 AM,09/20/2010 11:44:58 AM,04/25/2016 02:08:30 PM,09/20/2010 11:45:11 AM,09/20/2010 12:10:30 PM,09/20/2010 12:30:18 PM,Code 2 Transport,09/20/2010 12:57:48 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7908458791509, -122.396300374008)",102630154-94 +132510092,84,13084733,Medical Incident,09/08/2013,09/07/2013,09/08/2013 06:17:14 AM,09/08/2013 06:19:27 AM,09/08/2013 06:19:35 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 06:20:08 AM,1700 Block of PACHECO ST,SF,94116,B08,40,7432,2,2,2,false,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7504469020193, -122.478893566637)",132510092-84 +122170284,54,12072120,Medical Incident,08/04/2012,08/04/2012,08/04/2012 09:33:36 PM,08/04/2012 09:36:02 PM,08/04/2012 09:36:18 PM,08/04/2012 09:36:30 PM,08/04/2012 09:42:49 PM,08/04/2012 09:52:41 PM,08/04/2012 10:00:13 PM,Code 2 Transport,08/04/2012 10:24:04 PM,21ST AV/CLEMENT ST,SF,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7822123116523, -122.48059001563)",122170284-54 +111980254,E11,11065388,Electrical Hazard,07/17/2011,07/17/2011,07/17/2011 05:40:09 PM,07/17/2011 05:40:26 PM,07/17/2011 05:40:33 PM,07/17/2011 05:41:52 PM,07/17/2011 05:43:38 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 06:06:20 PM,1600 Block of CHURCH ST,SF,94131,B06,11,5562,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.74490208732, -122.426715270055)",111980254-E11 +132030164,RC1,13068751,Medical Incident,07/22/2013,07/22/2013,07/22/2013 12:19:57 PM,07/22/2013 12:20:55 PM,07/22/2013 12:30:55 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,Other,07/22/2013 12:33:28 PM,7TH ST/BRYANT ST,SF,94103,B03,8,2311,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7742810407569, -122.404748493756)",132030164-RC1 +111700290,75,11056135,Medical Incident,06/19/2011,06/19/2011,06/19/2011 06:46:33 PM,06/19/2011 06:48:21 PM,06/19/2011 06:48:57 PM,06/19/2011 06:49:08 PM,06/19/2011 06:59:14 PM,06/19/2011 07:24:21 PM,06/19/2011 07:45:04 PM,Code 2 Transport,06/19/2011 08:14:08 PM,0 Block of SKYVIEW WAY,SF,94131,B08,20,5352,3,3,3,true,,1,MEDIC,2,8,7,Twin Peaks,"(37.7493307598868, -122.450432551712)",111700290-75 +132570283,KM14,13086986,Medical Incident,09/14/2013,09/14/2013,09/14/2013 05:02:48 PM,09/14/2013 05:03:43 PM,09/14/2013 05:04:24 PM,09/14/2013 05:05:12 PM,09/14/2013 05:33:48 PM,09/14/2013 05:35:38 PM,09/14/2013 06:06:25 PM,Code 2 Transport,09/14/2013 06:22:12 PM,2100 Block of WASHINGTON ST,SF,94109,B04,38,3331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7923752292486, -122.428636628697)",132570283-KM14 +131080111,T13,13036249,Alarms,04/18/2013,04/18/2013,04/18/2013 09:46:17 AM,04/18/2013 09:47:17 AM,04/18/2013 09:47:23 AM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/18/2013 09:52:13 AM,100 Block of TOWNSEND ST,SF,94107,B03,8,2154,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7797688910306, -122.391686434361)",131080111-T13 +160310323,89,16012041,Traffic Collision,01/31/2016,01/30/2016,01/31/2016 02:09:54 AM,01/31/2016 02:09:54 AM,01/31/2016 02:10:43 AM,01/31/2016 02:10:54 AM,01/31/2016 02:14:50 AM,01/31/2016 02:36:58 AM,01/31/2016 02:44:42 AM,Code 2 Transport,01/31/2016 03:35:15 AM,TURK ST/GOUGH ST,San Francisco,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,5,Western Addition,"(37.7815356107047, -122.423917826838)",160310323-89 +130610224,E29,13020490,Medical Incident,03/02/2013,03/02/2013,03/02/2013 02:06:18 PM,03/02/2013 02:07:03 PM,03/02/2013 02:07:18 PM,03/02/2013 02:07:56 PM,03/02/2013 02:11:25 PM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Other,03/02/2013 02:14:05 PM,3000 Block of 16TH ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7649119117282, -122.421065182856)",130610224-E29 +112700313,B03,11089327,Alarms,09/27/2011,09/27/2011,09/27/2011 07:35:58 PM,09/27/2011 07:37:23 PM,09/27/2011 07:37:32 PM,09/27/2011 07:39:59 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Fire,09/27/2011 07:54:36 PM,300 Block of MAIN ST,SF,94105,B03,35,2117,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",112700313-B03 +112830245,E09,11093733,Other,10/10/2011,10/10/2011,10/10/2011 04:12:43 PM,10/10/2011 04:17:59 PM,10/10/2011 04:18:46 PM,10/10/2011 04:19:50 PM,10/10/2011 04:22:50 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 05:09:39 PM,1300 Block of FLORIDA ST,SF,94110,B06,9,5615,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7503488296561, -122.409769100991)",112830245-E09 +110040248,T07,11001348,Medical Incident,01/04/2011,01/04/2011,01/04/2011 03:49:48 PM,01/04/2011 03:49:49 PM,01/04/2011 03:49:57 PM,01/04/2011 03:51:46 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/04/2011 03:53:22 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,false,,1,TRUCK,4,6,9,Mission,"(37.7571666434801, -122.416719595074)",110040248-T07 +160061573,55,16002381,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:04:06 PM,01/06/2016 12:05:28 PM,01/06/2016 12:05:45 PM,01/06/2016 12:05:53 PM,01/06/2016 12:20:45 PM,01/06/2016 12:50:54 PM,01/06/2016 01:02:25 PM,Code 2 Transport,01/06/2016 01:44:18 PM,3700 Block of BUCHANAN ST,San Francisco,94123,B04,16,3446,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8045420636578, -122.433697283061)",160061573-55 +131690084,AM16,13057297,Traffic Collision,06/18/2013,06/18/2013,06/18/2013 08:09:54 AM,06/18/2013 08:11:19 AM,06/18/2013 08:14:03 AM,06/18/2013 08:14:03 AM,06/18/2013 08:16:04 AM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,Against Medical Advice,06/18/2013 08:47:09 AM,OFARRELL ST/JONES ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",131690084-AM16 +120510262,E11,12016946,Medical Incident,02/20/2012,02/20/2012,02/20/2012 06:43:48 PM,02/20/2012 06:45:51 PM,02/20/2012 06:47:28 PM,02/20/2012 06:47:52 PM,02/20/2012 06:53:23 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 07:10:39 PM,1000 Block of CAPP ST,SF,94110,B06,11,5534,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7499099820999, -122.417055896284)",120510262-E11 +140210382,E12,14007368,Medical Incident,01/21/2014,01/21/2014,01/21/2014 11:53:26 PM,01/21/2014 11:55:11 PM,01/21/2014 11:55:30 PM,01/21/2014 11:57:17 PM,01/21/2014 11:59:47 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/22/2014 12:02:49 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",140210382-E12 +111840167,E34,11060765,Structure Fire,07/03/2011,07/03/2011,07/03/2011 12:25:08 PM,07/03/2011 12:25:08 PM,07/03/2011 12:28:10 PM,07/03/2011 12:29:37 PM,07/03/2011 12:30:54 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:31:28 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",111840167-E34 +102460035,84,10077613,Medical Incident,09/03/2010,09/02/2010,09/03/2010 02:05:26 AM,09/03/2010 02:06:37 AM,09/03/2010 02:07:03 AM,09/03/2010 02:08:04 AM,09/03/2010 02:12:08 AM,09/03/2010 02:28:30 AM,09/03/2010 02:35:50 AM,Code 2 Transport,09/03/2010 03:16:51 AM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,3,3,true,,1,MEDIC,1,10,9,Bernal Heights,"(37.7363435467508, -122.411122016119)",102460035-84 +160282840,57,16011178,Medical Incident,01/28/2016,01/28/2016,01/28/2016 05:09:15 PM,01/28/2016 05:09:34 PM,01/28/2016 05:09:51 PM,01/28/2016 05:09:57 PM,01/28/2016 05:18:40 PM,01/28/2016 05:34:41 PM,01/28/2016 06:00:44 PM,Code 2 Transport,01/28/2016 06:26:33 PM,700 Block of 7TH AVE,San Francisco,94118,B07,31,7132,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",160282840-57 +160433506,AM12,16017472,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:02:07 PM,02/12/2016 09:03:49 PM,02/12/2016 09:03:54 PM,02/12/2016 09:04:25 PM,02/12/2016 09:15:18 PM,02/12/2016 09:23:57 PM,02/12/2016 09:38:48 PM,Code 2 Transport,02/12/2016 09:52:22 PM,300 Block of POTRERO AVE,San Francisco,94110,B02,29,2416,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,10,Mission,"(37.7651317205291, -122.407546004301)",160433506-AM12 +122050013,AM22,12068029,Medical Incident,07/23/2012,07/22/2012,07/23/2012 12:23:34 AM,07/23/2012 12:23:58 AM,07/23/2012 12:24:40 AM,07/23/2012 12:25:22 AM,07/23/2012 12:35:53 AM,07/23/2012 12:54:32 AM,07/23/2012 12:57:19 AM,Code 2 Transport,07/23/2012 01:32:43 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",122050013-AM22 +130510036,E16,13017149,Alarms,02/20/2013,02/19/2013,02/20/2013 04:06:29 AM,02/20/2013 04:08:44 AM,02/20/2013 04:09:04 AM,02/20/2013 04:10:28 AM,02/20/2013 04:13:59 AM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Other,02/20/2013 04:25:04 AM,3600 Block of BAKER ST,SF,94123,B04,16,4321,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8046972838046, -122.447123829782)",130510036-E16 +120010662,B04,12000574,Alarms,01/01/2012,01/01/2012,01/01/2012 11:37:29 PM,01/01/2012 11:38:46 PM,01/01/2012 11:39:13 PM,01/01/2012 11:41:21 PM,01/01/2012 11:50:00 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 11:52:57 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,false,Alarm,1,CHIEF,3,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",120010662-B04 +133090326,81,13105176,Medical Incident,11/05/2013,11/05/2013,11/05/2013 06:28:52 PM,11/05/2013 06:29:54 PM,11/05/2013 06:31:02 PM,11/05/2013 06:32:58 PM,11/05/2013 06:39:44 PM,11/05/2013 06:54:22 PM,11/05/2013 07:19:20 PM,Code 2 Transport,11/05/2013 07:38:30 PM,3000 Block of 24TH ST,SF,94110,B06,7,5526,3,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7525005885994, -122.413250370402)",133090326-81 +140150245,81,14005182,Medical Incident,01/15/2014,01/15/2014,01/15/2014 03:28:43 PM,01/15/2014 03:28:43 PM,01/15/2014 03:29:51 PM,01/15/2014 03:30:51 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 03:38:43 PM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7845991269502, -122.411114048741)",140150245-81 +122290140,KM02,12075840,Medical Incident,08/16/2012,08/16/2012,08/16/2012 11:01:49 AM,08/16/2012 11:03:35 AM,08/16/2012 11:05:18 AM,08/16/2012 11:06:06 AM,08/16/2012 11:11:59 AM,08/16/2012 11:27:11 AM,08/16/2012 11:31:18 AM,Code 2 Transport,08/16/2012 12:04:55 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",122290140-KM02 +112100085,E06,11069256,Medical Incident,07/29/2011,07/29/2011,07/29/2011 09:30:47 AM,07/29/2011 09:31:16 AM,07/29/2011 09:31:32 AM,07/29/2011 09:33:42 AM,07/29/2011 09:37:16 AM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 09:49:08 AM,1500 Block of TURK ST,SF,94115,B05,5,3643,3,3,3,true,,1,ENGINE,2,5,5,Western Addition,"(37.780127937221, -122.434593558604)",112100085-E06 +160540131,65,16021424,Medical Incident,02/23/2016,02/22/2016,02/23/2016 01:31:21 AM,02/23/2016 01:32:30 AM,02/23/2016 01:33:11 AM,02/23/2016 01:33:36 AM,02/23/2016 01:37:44 AM,02/23/2016 01:54:54 AM,02/23/2016 02:45:26 AM,Code 2 Transport,02/23/2016 02:54:09 AM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7562403438982, -122.418755320213)",160540131-65 +160622267,74,16024734,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:28:33 PM,03/02/2016 02:30:14 PM,03/02/2016 02:30:34 PM,03/02/2016 02:31:59 PM,03/02/2016 02:47:06 PM,03/02/2016 03:11:17 PM,03/02/2016 03:16:17 PM,Code 2 Transport,03/02/2016 04:13:26 PM,700 Block of POST ST,San Francisco,94109,B04,3,1543,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7876129515348, -122.414185698261)",160622267-74 +112310278,78,11076359,Traffic Collision,08/19/2011,08/19/2011,08/19/2011 06:28:39 PM,08/19/2011 06:29:29 PM,08/19/2011 06:29:38 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 06:32:46 PM,MISSION ST/PARK ST,SF,94110,B06,32,5631,3,3,3,true,,1,MEDIC,4,6,8,Bernal Heights,"(37.7367374807361, -122.424235084303)",112310278-78 +121330238,T03,12044311,Structure Fire,05/12/2012,05/12/2012,05/12/2012 04:40:00 PM,05/12/2012 04:40:00 PM,05/12/2012 04:40:25 PM,05/12/2012 04:41:44 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 04:42:38 PM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",121330238-T03 +160511005,85,16020408,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:49:53 AM,02/20/2016 09:49:53 AM,02/20/2016 09:50:07 AM,02/20/2016 09:50:16 AM,02/20/2016 09:57:57 AM,02/20/2016 10:12:06 AM,02/20/2016 10:17:58 AM,Code 2 Transport,02/20/2016 11:13:19 AM,NANCY PELOSI DR/BOWLING GREEN DR,San Francisco,94118,B07,12,7743,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7703993491685, -122.460107590152)",160511005-85 +103390273,E06,10108596,Medical Incident,12/05/2010,12/05/2010,12/05/2010 05:02:31 PM,12/05/2010 05:02:54 PM,12/05/2010 05:03:46 PM,12/05/2010 05:04:13 PM,12/05/2010 05:06:46 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 05:25:10 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",103390273-E06 +140100141,T13,14003447,Alarms,01/10/2014,01/10/2014,01/10/2014 10:36:49 AM,01/10/2014 10:36:50 AM,01/10/2014 10:36:59 AM,01/10/2014 10:38:43 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/10/2014 10:59:41 AM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.793872317337, -122.405454714295)",140100141-T13 +160392849,AM16,16015734,Medical Incident,02/08/2016,02/08/2016,02/08/2016 06:00:59 PM,02/08/2016 06:03:11 PM,02/08/2016 06:03:21 PM,02/08/2016 06:04:34 PM,02/08/2016 06:09:19 PM,02/08/2016 06:16:48 PM,02/08/2016 06:27:37 PM,Code 2 Transport,02/08/2016 06:44:58 PM,ARGUELLO BL/CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7856816915684, -122.459178766352)",160392849-AM16 +160022878,71,16000869,Medical Incident,01/02/2016,01/02/2016,01/02/2016 07:06:10 PM,01/02/2016 07:07:42 PM,01/02/2016 07:08:03 PM,01/02/2016 07:08:16 PM,01/02/2016 07:11:50 PM,01/02/2016 07:26:09 PM,01/02/2016 07:34:40 PM,Code 2 Transport,01/02/2016 08:13:00 PM,0 Block of HARTFORD ST,San Francisco,94114,B05,6,5417,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7617484575612, -122.434051954938)",160022878-71 +140460333,E07,14015796,Citizen Assist / Service Call,02/15/2014,02/15/2014,02/15/2014 08:25:53 PM,02/15/2014 08:28:12 PM,02/15/2014 08:28:25 PM,02/15/2014 08:30:18 PM,02/15/2014 08:31:57 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 08:43:44 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7610397684815, -122.419213667994)",140460333-E07 +133120372,E43,13106192,Medical Incident,11/08/2013,11/08/2013,11/08/2013 09:39:12 PM,11/08/2013 09:41:47 PM,11/08/2013 09:42:06 PM,11/08/2013 09:44:03 PM,11/08/2013 09:46:40 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 10:04:12 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,2,2,2,false,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",133120372-E43 +132130134,E15,13071927,Medical Incident,08/01/2013,08/01/2013,08/01/2013 12:05:42 PM,08/01/2013 12:06:44 PM,08/01/2013 12:10:41 PM,08/01/2013 12:12:27 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 12:14:26 PM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",132130134-E15 +123120301,E01,12103927,Medical Incident,11/07/2012,11/07/2012,11/07/2012 06:33:58 PM,11/07/2012 06:34:59 PM,11/07/2012 06:35:19 PM,11/07/2012 06:36:53 PM,11/07/2012 06:40:41 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 06:43:40 PM,1200 Block of MISSION ST,SF,94103,B02,36,2336,E,E,3,true,Non Life-threatening,1,ENGINE,3,2,6,South of Market,"(37.7765080370233, -122.414457764634)",123120301-E01 +132950235,E03,13100358,Medical Incident,10/22/2013,10/22/2013,10/22/2013 04:55:26 PM,10/22/2013 04:55:48 PM,10/22/2013 04:56:47 PM,10/22/2013 04:57:42 PM,10/22/2013 05:00:10 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/22/2013 05:06:41 PM,500 Block of LARKIN ST,SF,94102,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",132950235-E03 +160241911,65,16009545,Medical Incident,01/24/2016,01/24/2016,01/24/2016 02:16:29 PM,01/24/2016 02:17:51 PM,01/24/2016 02:18:43 PM,01/24/2016 02:19:25 PM,01/24/2016 02:37:11 PM,01/24/2016 02:41:00 PM,01/24/2016 02:54:29 PM,Code 2 Transport,01/24/2016 03:22:51 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160241911-65 +160670502,62,16026628,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:24:46 AM,03/07/2016 08:25:14 AM,03/07/2016 08:38:12 AM,03/07/2016 08:38:12 AM,03/07/2016 08:38:12 AM,03/07/2016 08:49:45 AM,03/07/2016 09:03:41 AM,Code 2 Transport,03/07/2016 09:49:18 AM,1100 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",160670502-62 +112660149,E01,11087858,Vehicle Fire,09/23/2011,09/23/2011,09/23/2011 11:19:36 AM,09/23/2011 11:21:06 AM,09/23/2011 11:21:13 AM,09/23/2011 11:21:35 AM,09/23/2011 11:24:43 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 11:25:21 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",112660149-E01 +122010041,T01,12066698,Structure Fire,07/19/2012,07/18/2012,07/19/2012 04:23:51 AM,07/19/2012 04:23:51 AM,07/19/2012 04:24:22 AM,07/19/2012 04:27:13 AM,07/19/2012 04:31:07 AM,04/25/2016 01:57:39 PM,04/25/2016 01:57:39 PM,Other,07/19/2012 04:31:29 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",122010041-T01 +160062513,89,16002482,Medical Incident,01/06/2016,01/06/2016,01/06/2016 04:20:26 PM,01/06/2016 04:21:44 PM,01/06/2016 04:22:07 PM,01/06/2016 04:22:11 PM,01/06/2016 04:39:01 PM,01/06/2016 05:06:43 PM,01/06/2016 05:38:28 PM,Code 2 Transport,01/06/2016 06:05:25 PM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7967201326668, -122.41173518546)",160062513-89 +111300303,RWC1,11043068,Water Rescue,05/10/2011,05/10/2011,05/10/2011 06:42:46 PM,05/10/2011 06:43:38 PM,05/10/2011 06:44:01 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 07:32:52 PM,600 Block of MASON ST,PR,94108,B99,51,4613,E,E,3,false,,1,SUPPORT,10,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",111300303-RWC1 +122600032,77,12085806,Medical Incident,09/16/2012,09/15/2012,09/16/2012 01:51:23 AM,09/16/2012 01:53:39 AM,09/16/2012 01:54:11 AM,04/25/2016 01:56:45 PM,09/16/2012 01:57:17 AM,09/16/2012 02:08:50 AM,09/16/2012 02:15:08 AM,Code 2 Transport,09/16/2012 02:40:18 AM,1700 Block of MARKET ST,SF,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7722683129989, -122.423098219736)",122600032-77 +110570296,68,11018851,Medical Incident,02/26/2011,02/26/2011,02/26/2011 07:02:33 PM,02/26/2011 07:04:45 PM,02/26/2011 07:05:03 PM,02/26/2011 07:05:32 PM,02/26/2011 07:08:08 PM,02/26/2011 07:23:08 PM,02/26/2011 07:29:59 PM,Code 2 Transport,02/26/2011 08:10:09 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",110570296-68 +140780192,85,14026391,Medical Incident,03/19/2014,03/19/2014,03/19/2014 12:50:13 PM,03/19/2014 12:51:19 PM,03/19/2014 12:52:32 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Other,03/19/2014 12:53:16 PM,3200 Block of 20TH AVE,SAN FRANCISCO,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",140780192-85 +160353523,AM12,16013994,Medical Incident,02/04/2016,02/04/2016,02/04/2016 08:31:13 PM,02/04/2016 08:32:44 PM,02/04/2016 08:34:14 PM,02/04/2016 08:34:52 PM,02/04/2016 08:39:53 PM,02/04/2016 08:52:28 PM,02/04/2016 09:01:34 PM,Code 2 Transport,02/04/2016 09:45:11 PM,BRYANT ST/16TH ST,San Francisco,94110,B02,29,5222,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7656058395036, -122.410486689194)",160353523-AM12 +160653121,65,16026088,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:19:59 PM,03/05/2016 08:19:59 PM,03/05/2016 08:26:58 PM,03/05/2016 08:30:11 PM,03/05/2016 08:46:15 PM,03/05/2016 08:55:49 PM,03/05/2016 09:27:56 PM,Code 2 Transport,03/05/2016 10:12:34 PM,BROADWAY/LARKIN ST,San Francisco,94109,B01,41,1632,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7960945686376, -122.420109525147)",160653121-65 +102530176,E39,10079923,Administrative,09/10/2010,09/10/2010,09/10/2010 11:48:28 AM,09/10/2010 11:48:41 AM,09/10/2010 11:49:06 AM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 11:49:43 AM,1000 Block of PORTOLA DR,SF,94127,B08,39,8572,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7404960254393, -122.458524519728)",102530176-E39 +122910116,AM06,12096290,Medical Incident,10/17/2012,10/17/2012,10/17/2012 09:42:49 AM,10/17/2012 09:44:29 AM,10/17/2012 09:45:41 AM,10/17/2012 09:46:31 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Patient Declined Transport,10/17/2012 10:41:25 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",122910116-AM06 +133410022,67,13115480,Medical Incident,12/07/2013,12/06/2013,12/07/2013 12:58:05 AM,12/07/2013 12:59:46 AM,12/07/2013 01:00:22 AM,12/07/2013 01:00:45 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/07/2013 01:07:03 AM,300 Block of FOLSOM ST,SF,94105,B03,35,2122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7884176194702, -122.392965448447)",133410022-67 +103040071,E03,10097028,Medical Incident,10/31/2010,10/30/2010,10/31/2010 02:30:25 AM,10/31/2010 02:31:56 AM,10/31/2010 02:32:43 AM,10/31/2010 02:32:55 AM,10/31/2010 02:34:14 AM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 02:48:30 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",103040071-E03 +113000272,T18,11099577,Medical Incident,10/27/2011,10/27/2011,10/27/2011 04:04:30 PM,10/27/2011 04:05:55 PM,10/27/2011 04:06:14 PM,10/27/2011 04:07:16 PM,10/27/2011 04:09:51 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 04:13:22 PM,TARAVAL ST/32ND AV,SF,94116,B08,18,7546,3,3,3,false,,1,TRUCK,1,8,4,Sunset/Parkside,"(37.742437436698, -122.489620234677)",113000272-T18 +160040861,54,16001517,Medical Incident,01/04/2016,01/04/2016,01/04/2016 08:48:32 AM,01/04/2016 08:49:59 AM,01/04/2016 08:50:27 AM,01/04/2016 08:50:37 AM,01/04/2016 09:18:39 AM,01/04/2016 09:19:14 AM,01/04/2016 09:32:48 AM,Code 2 Transport,01/04/2016 09:58:16 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160040861-54 +140390252,E01,14013245,Medical Incident,02/08/2014,02/08/2014,02/08/2014 04:20:20 PM,02/08/2014 04:21:02 PM,02/08/2014 04:21:41 PM,02/08/2014 04:22:59 PM,02/08/2014 04:24:40 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/08/2014 04:32:03 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",140390252-E01 +110010275,87,11000238,Medical Incident,01/01/2011,12/31/2010,01/01/2011 07:45:22 AM,01/01/2011 07:46:09 AM,01/01/2011 07:46:26 AM,01/01/2011 07:46:37 AM,01/01/2011 07:48:47 AM,01/01/2011 08:21:23 AM,01/01/2011 08:25:38 AM,Code 2 Transport,01/01/2011 09:04:56 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,2,2,2,true,,1,MEDIC,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",110010275-87 +121540104,E03,12050920,Medical Incident,06/02/2012,06/02/2012,06/02/2012 08:50:52 AM,06/02/2012 08:51:01 AM,06/02/2012 08:52:42 AM,06/02/2012 08:53:23 AM,06/02/2012 08:58:30 AM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,No Merit,06/02/2012 08:59:01 AM,POST ST/VAN NESS AV,SF,94109,B04,3,3161,3,E,3,true,Non Life-threatening,1,ENGINE,2,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",121540104-E03 +130740195,E36,13024683,Medical Incident,03/15/2013,03/15/2013,03/15/2013 01:28:37 PM,03/15/2013 01:29:29 PM,03/15/2013 01:30:26 PM,03/15/2013 01:32:10 PM,03/15/2013 01:34:23 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 01:41:39 PM,OTIS ST/MCCOPPIN ST,SF,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7717702499037, -122.420344369487)",130740195-E36 +102850095,82,10090685,Medical Incident,10/12/2010,10/12/2010,10/12/2010 08:33:33 AM,10/12/2010 08:36:05 AM,10/12/2010 08:37:09 AM,10/12/2010 08:37:40 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 08:43:29 AM,19TH AV/KIRKHAM ST,SF,94122,B08,22,7423,3,3,3,true,,1,MEDIC,2,8,7,Inner Sunset,"(37.7598339367344, -122.47681389085)",102850095-82 +160171253,KM12,16006807,Medical Incident,01/17/2016,01/17/2016,01/17/2016 11:11:56 AM,01/17/2016 11:13:57 AM,01/17/2016 11:14:42 AM,01/17/2016 11:18:11 AM,01/17/2016 11:30:18 AM,01/17/2016 11:49:05 AM,01/17/2016 12:10:58 PM,Code 2 Transport,01/17/2016 12:36:30 PM,8TH ST/NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7766609866916, -122.412157954704)",160171253-KM12 +123210183,E18,12106685,Medical Incident,11/16/2012,11/16/2012,11/16/2012 12:45:02 PM,11/16/2012 12:46:52 PM,11/16/2012 12:47:37 PM,11/16/2012 12:48:51 PM,11/16/2012 12:54:49 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/16/2012 01:29:10 PM,2700 Block of 40TH AVE,SF,94116,B08,18,7616,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7355376867029, -122.497802628088)",123210183-E18 +120420089,E41,12013954,Medical Incident,02/11/2012,02/10/2012,02/11/2012 06:50:36 AM,02/11/2012 06:51:51 AM,02/11/2012 06:52:29 AM,02/11/2012 06:54:19 AM,02/11/2012 06:57:27 AM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 07:02:54 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",120420089-E41 +103510012,E13,10112450,Medical Incident,12/17/2010,12/16/2010,12/17/2010 12:42:29 AM,12/17/2010 12:44:34 AM,12/17/2010 12:46:41 AM,12/17/2010 12:48:15 AM,12/17/2010 12:49:24 AM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,Patient Declined Transport,12/17/2010 12:59:14 AM,300 Block of BATTERY ST,SF,94111,B01,13,1161,2,2,2,true,,1,ENGINE,1,1,3,Chinatown,"(37.7947853577882, -122.400352669798)",103510012-E13 +132730309,T18,13092871,Alarms,09/30/2013,09/30/2013,09/30/2013 06:11:55 PM,09/30/2013 06:13:25 PM,09/30/2013 06:13:43 PM,09/30/2013 06:15:13 PM,09/30/2013 06:17:41 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 06:30:27 PM,3600 Block of NORIEGA ST,SF,94122,B08,23,7662,3,3,3,true,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7531373876101, -122.502730775255)",132730309-T18 +120840060,E13,12027801,Structure Fire,03/24/2012,03/23/2012,03/24/2012 04:04:30 AM,03/24/2012 04:04:31 AM,03/24/2012 04:04:40 AM,03/24/2012 04:08:54 AM,03/24/2012 04:09:16 AM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Other,03/24/2012 04:09:54 AM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7895620432155, -122.402161869829)",120840060-E13 +160531759,55,16021213,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:39:21 PM,02/22/2016 01:39:37 PM,02/22/2016 01:40:02 PM,02/22/2016 01:41:19 PM,02/22/2016 02:19:16 PM,02/22/2016 02:19:18 PM,02/22/2016 03:07:47 PM,Code 2 Transport,02/22/2016 03:41:25 PM,30TH ST/MISSION ST,San Francisco,94110,B06,32,5575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",160531759-55 +133630246,86,13123365,Medical Incident,12/29/2013,12/29/2013,12/29/2013 05:36:36 PM,12/29/2013 05:39:18 PM,12/29/2013 05:40:19 PM,12/29/2013 05:40:29 PM,12/29/2013 05:52:20 PM,12/29/2013 06:07:28 PM,12/29/2013 06:22:12 PM,Code 2 Transport,12/29/2013 06:50:55 PM,400 Block of GONZALEZ DR,SF,94132,B08,19,8481,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.716122935371, -122.476494710163)",133630246-86 +131910355,AM18,13065191,Medical Incident,07/10/2013,07/10/2013,07/10/2013 11:34:27 PM,07/10/2013 11:35:31 PM,07/10/2013 11:36:23 PM,07/10/2013 11:37:05 PM,07/10/2013 11:42:54 PM,07/10/2013 11:45:41 PM,07/11/2013 12:05:12 AM,Code 2 Transport,07/11/2013 12:28:40 AM,1200 Block of REVERE AVE,SF,94124,B10,17,6634,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7280000551487, -122.383581434035)",131910355-AM18 +113260148,T09,11108210,Structure Fire,11/22/2011,11/22/2011,11/22/2011 10:30:31 AM,11/22/2011 10:30:32 AM,11/22/2011 10:31:12 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,04/25/2016 02:01:31 PM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,562,3,3,3,false,,1,TRUCK,3,6,9,Bernal Heights,"(37.748166431151, -122.412573078107)",113260148-T09 +113620294,AM06,11120350,Medical Incident,12/28/2011,12/28/2011,12/28/2011 05:53:14 PM,12/28/2011 05:54:02 PM,12/28/2011 05:55:20 PM,12/28/2011 05:55:51 PM,12/28/2011 06:04:07 PM,12/28/2011 06:10:38 PM,12/28/2011 06:50:11 PM,Code 2 Transport,12/28/2011 07:12:56 PM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,2,2,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",113620294-AM06 +133430372,AM10,13116480,Medical Incident,12/09/2013,12/09/2013,12/09/2013 09:02:48 PM,12/09/2013 09:04:17 PM,12/09/2013 09:17:15 PM,04/25/2016 01:49:21 PM,12/09/2013 09:22:33 PM,12/09/2013 09:38:53 PM,12/09/2013 09:49:50 PM,Code 2 Transport,12/09/2013 10:26:29 PM,FRANKLIN ST/MCALLISTER ST,SF,94102,B02,36,3215,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7798901049166, -122.42189157233)",133430372-AM10 +102910079,93,10092734,Medical Incident,10/18/2010,10/17/2010,10/18/2010 07:49:39 AM,10/18/2010 07:53:09 AM,10/18/2010 07:55:06 AM,10/18/2010 07:55:24 AM,10/18/2010 08:09:51 AM,10/18/2010 08:52:52 AM,10/18/2010 09:06:58 AM,Code 2 Transport,10/18/2010 09:51:58 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",102910079-93 +160181214,91,16007195,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:14:48 AM,01/18/2016 11:16:20 AM,01/18/2016 11:16:46 AM,01/18/2016 11:17:06 AM,01/18/2016 11:27:00 AM,01/18/2016 11:37:26 AM,01/18/2016 11:41:08 AM,Code 2 Transport,01/18/2016 12:13:57 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160181214-91 +102500114,E23,10078945,Alarms,09/07/2010,09/07/2010,09/07/2010 10:14:16 AM,09/07/2010 10:15:05 AM,09/07/2010 10:15:13 AM,09/07/2010 10:15:33 AM,09/07/2010 10:16:15 AM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Fire,09/07/2010 10:21:08 AM,4100 Block of LAWTON ST,SF,94122,B08,23,7724,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7566771525392, -122.507274525432)",102500114-E23 +133320059,E28,13112585,Medical Incident,11/28/2013,11/27/2013,11/28/2013 07:22:23 AM,11/28/2013 07:22:55 AM,11/28/2013 07:23:19 AM,11/28/2013 07:25:38 AM,11/28/2013 07:28:32 AM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/28/2013 07:30:25 AM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8084325058333, -122.410757587167)",133320059-E28 +160872954,KM12,16034686,Medical Incident,03/27/2016,03/27/2016,03/27/2016 06:53:11 PM,03/27/2016 06:53:33 PM,03/27/2016 06:53:53 PM,03/27/2016 06:54:40 PM,03/27/2016 07:01:22 PM,03/27/2016 07:28:04 PM,03/27/2016 07:41:18 PM,Code 2 Transport,03/27/2016 08:28:20 PM,400 Block of BEALE ST,San Francisco,94105,B03,35,2123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",160872954-KM12 +120800364,KM07,12026724,Medical Incident,03/20/2012,03/20/2012,03/20/2012 10:43:11 PM,03/20/2012 10:44:05 PM,03/20/2012 10:44:19 PM,03/20/2012 10:45:01 PM,03/20/2012 10:49:07 PM,03/20/2012 10:55:12 PM,03/20/2012 11:12:29 PM,Code 2 Transport,03/20/2012 11:28:59 PM,100 Block of BROAD ST,SF,94112,B09,33,8374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7131278901995, -122.45753811019)",120800364-KM07 +160273071,68,16010806,Medical Incident,01/27/2016,01/27/2016,01/27/2016 06:13:24 PM,01/27/2016 06:14:01 PM,01/27/2016 06:14:29 PM,01/27/2016 06:17:11 PM,01/27/2016 06:17:13 PM,01/27/2016 06:25:48 PM,01/27/2016 07:22:06 PM,Code 2 Transport,01/27/2016 07:22:09 PM,PACIFIC AV/MASON ST,San Francisco,94133,B01,2,1416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7962907638042, -122.411718940358)",160273071-68 +131140374,AM10,13038600,Medical Incident,04/24/2013,04/24/2013,04/24/2013 09:34:34 PM,04/24/2013 09:37:05 PM,04/24/2013 09:37:24 PM,04/24/2013 09:37:43 PM,04/24/2013 09:52:06 PM,04/24/2013 10:05:15 PM,04/24/2013 10:19:11 PM,Code 2 Transport,04/24/2013 10:41:53 PM,BRYANT ST/2ND ST,SF,94107,B03,8,2152,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7830778523618, -122.393618077491)",131140374-AM10 +122510242,T10,12083044,Structure Fire,09/07/2012,09/07/2012,09/07/2012 03:37:02 PM,09/07/2012 03:37:03 PM,09/07/2012 03:37:22 PM,09/07/2012 03:40:00 PM,09/07/2012 03:41:44 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/07/2012 03:50:38 PM,1400 Block of SCOTT ST,SF,94115,B04,5,413,3,3,3,true,Alarm,1,TRUCK,3,4,5,Western Addition,"(37.7831990201184, -122.437672374097)",122510242-T10 +131170211,E01,13039378,Medical Incident,04/27/2013,04/27/2013,04/27/2013 02:53:19 PM,04/27/2013 02:54:53 PM,04/27/2013 02:56:01 PM,04/27/2013 02:57:26 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/27/2013 02:58:24 PM,500 Block of STEVENSON ST,SF,94103,B03,1,2248,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7808489821495, -122.410772584803)",131170211-E01 +123150025,E16,12104702,Medical Incident,11/10/2012,11/09/2012,11/10/2012 01:33:57 AM,11/10/2012 01:35:27 AM,11/10/2012 01:36:17 AM,11/10/2012 01:38:23 AM,11/10/2012 01:40:16 AM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/10/2012 01:50:55 AM,2300 Block of VALLEJO ST,SF,94123,B04,16,3551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7950666971892, -122.435926166434)",123150025-E16 +131540392,E34,13052342,Medical Incident,06/03/2013,06/03/2013,06/03/2013 09:50:04 PM,06/03/2013 09:52:50 PM,06/03/2013 09:54:54 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 09:55:41 PM,600 Block of 35TH AVE,SF,94121,B07,34,7251,2,2,2,false,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7767418414704, -122.495311729801)",131540392-E34 +160630081,AM18,16024916,Medical Incident,03/03/2016,03/02/2016,03/03/2016 12:36:04 AM,03/03/2016 12:37:01 AM,03/03/2016 12:38:32 AM,03/03/2016 12:39:17 AM,03/03/2016 01:03:04 AM,03/03/2016 01:11:54 AM,03/03/2016 01:22:30 AM,Code 2 Transport,03/03/2016 01:57:08 AM,0 Block of RAUSCH ST,San Francisco,94103,B03,1,2314,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7764436831324, -122.409774801363)",160630081-AM18 +123380230,KM07,12112730,Medical Incident,12/03/2012,12/03/2012,12/03/2012 01:57:56 PM,12/03/2012 01:59:57 PM,12/03/2012 02:01:10 PM,12/03/2012 02:01:43 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 02:05:38 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,South of Market,"(37.7768521020734, -122.410711239368)",123380230-KM07 +131000224,E14,13033634,Medical Incident,04/10/2013,04/10/2013,04/10/2013 01:49:17 PM,04/10/2013 01:49:49 PM,04/10/2013 01:50:01 PM,04/10/2013 01:52:58 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/10/2013 01:58:48 PM,300 Block of CLEMENT ST,SF,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7830686073978, -122.462818636024)",131000224-E14 +123630306,AM10,12121580,Medical Incident,12/28/2012,12/28/2012,12/28/2012 07:52:01 PM,12/28/2012 07:52:49 PM,12/28/2012 07:53:54 PM,12/28/2012 07:53:55 PM,12/28/2012 07:59:12 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Against Medical Advice,12/28/2012 08:20:04 PM,5TH ST/MISSION ST,SF,94103,B03,1,2246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",123630306-AM10 +122030032,B01,12067334,Alarms,07/21/2012,07/20/2012,07/21/2012 02:08:47 AM,07/21/2012 02:10:17 AM,07/21/2012 02:10:42 AM,07/21/2012 02:12:45 AM,07/21/2012 02:14:18 AM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 02:24:53 AM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.7917657997993, -122.407489250227)",122030032-B01 +123180215,AM04,12105787,Medical Incident,11/13/2012,11/13/2012,11/13/2012 01:54:53 PM,11/13/2012 01:57:35 PM,11/13/2012 01:59:03 PM,11/13/2012 02:00:09 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,04/25/2016 01:55:49 PM,600 Block of 46TH AVE,SF,94121,B07,34,7276,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7766726235142, -122.506990057361)",123180215-AM04 +113040097,E51,11100861,Traffic Collision,10/31/2011,10/31/2011,10/31/2011 08:54:25 AM,10/31/2011 08:55:37 AM,10/31/2011 08:55:56 AM,10/31/2011 08:58:19 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 09:03:33 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",113040097-E51 +160020769,63,16000655,Medical Incident,01/02/2016,01/02/2016,01/02/2016 08:38:41 AM,01/02/2016 08:40:42 AM,01/02/2016 08:40:53 AM,01/02/2016 08:41:05 AM,01/02/2016 08:55:42 AM,01/02/2016 09:16:41 AM,01/02/2016 09:26:39 AM,Code 2 Transport,01/02/2016 09:54:01 AM,3400 Block of MARKET ST,San Francisco,94114,B05,24,5271,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7569301468399, -122.44269078808)",160020769-63 +132200289,T08,13074403,Alarms,08/08/2013,08/08/2013,08/08/2013 06:43:40 PM,08/08/2013 06:44:48 PM,08/08/2013 06:44:58 PM,08/08/2013 06:46:30 PM,08/08/2013 06:48:21 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 07:12:51 PM,100 Block of BERRY ST,SF,94107,B03,8,2171,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7767092171499, -122.392287121307)",132200289-T08 +160822183,AM16,16032600,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:36:17 PM,03/22/2016 02:36:44 PM,03/22/2016 02:37:09 PM,03/22/2016 02:37:52 PM,03/22/2016 02:39:43 PM,03/22/2016 02:56:10 PM,03/22/2016 03:22:48 PM,Code 2 Transport,03/22/2016 03:51:45 PM,0 Block of WASHBURN ST,San Francisco,94103,B02,36,2336,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",160822183-AM16 +112680260,B10,11088647,Traffic Collision,09/25/2011,09/25/2011,09/25/2011 04:22:37 PM,09/25/2011 04:26:16 PM,09/25/2011 04:28:33 PM,09/25/2011 04:29:55 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 04:32:05 PM,100 Block of SAN BRUNO AVE,SF,94103,B10,42,6337,3,3,3,false,,1,CHIEF,5,2,10,Mission,"(37.7690702954409, -122.405814382975)",112680260-B10 +131700051,E01,13057627,Medical Incident,06/19/2013,06/18/2013,06/19/2013 06:46:25 AM,06/19/2013 06:46:54 AM,06/19/2013 06:47:25 AM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/19/2013 06:48:53 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",131700051-E01 +131600220,E33,13054386,Medical Incident,06/09/2013,06/09/2013,06/09/2013 03:17:21 PM,06/09/2013 03:18:08 PM,06/09/2013 03:18:31 PM,06/09/2013 03:20:55 PM,06/09/2013 03:24:52 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 03:33:44 PM,300 Block of ROME ST,SF,94112,B09,33,8344,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7160634247508, -122.448008831975)",131600220-E33 +160331499,53,16012967,Medical Incident,02/02/2016,02/02/2016,02/02/2016 12:09:51 PM,02/02/2016 12:09:51 PM,02/02/2016 12:10:04 PM,02/02/2016 12:10:23 PM,02/02/2016 12:19:53 PM,02/02/2016 12:49:12 PM,02/02/2016 01:21:50 PM,Code 2 Transport,02/02/2016 03:03:25 PM,400 Block of THE EMBARCADERO,San Francisco,94111,B03,35,926,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",160331499-53 +160851095,KM09,16033698,Medical Incident,03/25/2016,03/25/2016,03/25/2016 09:31:59 AM,03/25/2016 09:32:53 AM,03/25/2016 09:33:37 AM,03/25/2016 09:35:26 AM,03/25/2016 09:43:06 AM,03/25/2016 10:09:51 AM,03/25/2016 10:35:19 AM,Code 2 Transport,03/25/2016 10:56:36 AM,600 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7112,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.778667674124, -122.458753852199)",160851095-KM09 +111450024,E03,11048052,Structure Fire,05/25/2011,05/24/2011,05/25/2011 03:02:10 AM,05/25/2011 03:02:10 AM,05/25/2011 03:02:18 AM,05/25/2011 03:03:18 AM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/25/2011 03:04:17 AM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,true,,1,ENGINE,4,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",111450024-E03 +160151097,77,16005914,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:54:39 AM,01/15/2016 09:56:48 AM,01/15/2016 09:57:10 AM,01/15/2016 10:01:03 AM,01/15/2016 10:13:56 AM,01/15/2016 10:25:40 AM,01/15/2016 10:43:52 AM,Code 2 Transport,01/15/2016 11:12:51 AM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7658582826035, -122.419816092644)",160151097-77 +122900368,85,12096135,Medical Incident,10/16/2012,10/16/2012,10/16/2012 08:37:42 PM,10/16/2012 08:40:05 PM,10/16/2012 08:40:39 PM,10/16/2012 08:41:14 PM,04/25/2016 01:56:16 PM,10/16/2012 09:08:43 PM,10/16/2012 09:20:59 PM,Code 2 Transport,10/16/2012 09:32:57 PM,1000 Block of POTRERO AVE,SF,94110,B10,37,2552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7553586640566, -122.406682612344)",122900368-85 +103110131,E17,10099691,Medical Incident,11/07/2010,11/07/2010,11/07/2010 09:31:12 AM,11/07/2010 09:31:37 AM,11/07/2010 09:32:00 AM,11/07/2010 09:32:33 AM,11/07/2010 09:35:49 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 09:52:09 AM,1700 Block of QUESADA AVE,SF,94124,B10,17,6514,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7337337198014, -122.392373013913)",103110131-E17 +140170265,RC3,14005897,Structure Fire,01/17/2014,01/17/2014,01/17/2014 04:51:44 PM,01/17/2014 04:52:23 PM,01/17/2014 05:02:49 PM,01/17/2014 05:03:13 PM,01/17/2014 05:21:31 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 05:22:58 PM,1200 Block of DOLORES ST,SF,94110,B06,11,5536,,3,3,true,Fire,1,RESCUE CAPTAIN,11,6,8,Mission,"(37.7498423670065, -122.424811056864)",140170265-RC3 +160900042,AM22,16035534,Medical Incident,03/30/2016,03/29/2016,03/30/2016 12:16:59 AM,03/30/2016 12:20:01 AM,03/30/2016 12:20:13 AM,03/30/2016 12:20:46 AM,03/30/2016 12:25:09 AM,03/30/2016 12:45:32 AM,03/30/2016 01:16:09 AM,Code 2 Transport,03/30/2016 01:55:32 AM,0 Block of OCTAVIA ST,San Francisco,94102,B02,36,3311,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7724905924387, -122.423895801258)",160900042-AM22 +160850616,55,16033661,Medical Incident,03/25/2016,03/24/2016,03/25/2016 07:13:17 AM,03/25/2016 07:13:17 AM,03/25/2016 07:13:34 AM,03/25/2016 07:13:41 AM,03/25/2016 07:23:19 AM,03/25/2016 07:47:43 AM,03/25/2016 08:00:13 AM,Code 2 Transport,03/25/2016 08:36:39 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160850616-55 +133360245,E03,13113939,Medical Incident,12/02/2013,12/02/2013,12/02/2013 04:02:50 PM,12/02/2013 04:02:51 PM,12/02/2013 04:03:16 PM,12/02/2013 04:03:50 PM,12/02/2013 04:06:24 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Fire,12/02/2013 04:14:45 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",133360245-E03 +121810029,E01,12060136,Medical Incident,06/29/2012,06/28/2012,06/29/2012 02:09:18 AM,06/29/2012 02:10:21 AM,06/29/2012 02:11:15 AM,06/29/2012 02:12:54 AM,06/29/2012 02:16:44 AM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/29/2012 02:21:05 AM,MARKET ST/GRANT AV,SF,94103,B01,1,1241,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,6,Financial District/South Beach,"(37.7867305655456, -122.4045833182)",121810029-E01 +131080334,RS1,13036440,Structure Fire,04/18/2013,04/18/2013,04/18/2013 09:51:08 PM,04/18/2013 09:52:32 PM,04/18/2013 09:52:46 PM,04/18/2013 09:54:30 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Other,04/18/2013 10:13:46 PM,1500 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,false,Alarm,1,RESCUE SQUAD,8,5,5,Haight Ashbury,"(37.7698484993497, -122.447745343044)",131080334-RS1 +102250148,D2,10070826,Structure Fire,08/13/2010,08/13/2010,08/13/2010 12:48:55 PM,08/13/2010 12:49:18 PM,08/13/2010 12:49:31 PM,08/13/2010 12:50:00 PM,08/13/2010 12:56:56 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 01:05:58 PM,300 Block of 21ST AVE,SF,94121,B07,14,7172,3,3,3,false,,1,CHIEF,6,7,1,Outer Richmond,"(37.781249414803, -122.480451228822)",102250148-D2 +160790448,78,16031297,Medical Incident,03/19/2016,03/18/2016,03/19/2016 03:35:19 AM,03/19/2016 03:38:24 AM,03/19/2016 03:40:55 AM,03/19/2016 03:41:06 AM,03/19/2016 04:06:05 AM,03/19/2016 04:43:28 AM,03/19/2016 04:50:37 AM,Code 2 Transport,03/19/2016 05:49:51 AM,VALENCIA ST/DUBOCE AV,San Francisco,94103,B02,36,5126,B,B,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7698676980277, -122.422364819149)",160790448-78 +122220303,RS2,12073690,Medical Incident,08/09/2012,08/09/2012,08/09/2012 06:46:34 PM,08/09/2012 06:46:56 PM,08/09/2012 06:47:19 PM,08/09/2012 06:48:19 PM,08/09/2012 06:50:29 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,Other,08/09/2012 06:57:10 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",122220303-RS2 +131250172,T08,13042231,Structure Fire,05/05/2013,05/05/2013,05/05/2013 01:43:07 PM,05/05/2013 01:43:08 PM,05/05/2013 01:43:13 PM,05/05/2013 01:44:22 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 01:45:42 PM,6TH ST/BRANNAN ST,SF,94103,B03,8,2256,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7748087750185, -122.400981567592)",131250172-T08 +111580012,E12,11052098,Medical Incident,06/07/2011,06/06/2011,06/07/2011 12:33:25 AM,06/07/2011 12:33:56 AM,06/07/2011 12:34:09 AM,06/07/2011 12:35:53 AM,06/07/2011 12:37:09 AM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 12:41:32 AM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,3,3,3,true,,1,ENGINE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",111580012-E12 +121420298,E02,12047338,Structure Fire,05/21/2012,05/21/2012,05/21/2012 07:26:46 PM,05/21/2012 07:26:46 PM,05/21/2012 07:26:57 PM,05/21/2012 07:27:03 PM,05/21/2012 07:28:02 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Fire,05/21/2012 07:29:56 PM,BATTERY ST/BROADWAY,SF,94111,B01,13,1155,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7985800532877, -122.401051292992)",121420298-E02 +102290229,E05,10072094,Medical Incident,08/17/2010,08/17/2010,08/17/2010 03:20:20 PM,08/17/2010 03:20:41 PM,08/17/2010 03:21:19 PM,08/17/2010 03:21:45 PM,08/17/2010 03:24:28 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 03:38:31 PM,GOLDEN GATE AV/LAGUNA ST,SF,94102,B02,5,3411,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7801930305107, -122.427016757755)",102290229-E05 +160651434,AM08,16025906,Medical Incident,03/05/2016,03/05/2016,03/05/2016 11:59:42 AM,03/05/2016 11:59:42 AM,03/05/2016 12:00:51 PM,03/05/2016 12:01:43 PM,03/05/2016 12:15:13 PM,03/05/2016 12:15:16 PM,03/05/2016 12:36:41 PM,Code 2 Transport,03/05/2016 12:56:06 PM,1600 Block of VALENCIA ST,San Francisco,94110,B06,11,5611,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7459784515022, -122.420143715406)",160651434-AM08 +160543069,KM02,16021713,Medical Incident,02/23/2016,02/23/2016,02/23/2016 05:56:07 PM,02/23/2016 05:56:07 PM,02/23/2016 06:06:46 PM,02/23/2016 06:08:04 PM,02/23/2016 06:11:21 PM,02/23/2016 06:33:25 PM,02/23/2016 06:57:47 PM,Code 2 Transport,02/23/2016 07:08:05 PM,JUDAH ST/46TH AV,San Francisco,94122,B08,23,7655,2,3,3,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7604244274632, -122.505928109422)",160543069-KM02 +132970033,E18,13100755,Medical Incident,10/24/2013,10/23/2013,10/24/2013 02:42:16 AM,10/24/2013 02:42:40 AM,10/24/2013 02:43:23 AM,10/24/2013 02:45:18 AM,10/24/2013 02:48:43 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 02:56:10 AM,22ND AV/TARAVAL ST,SF,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7429086384369, -122.478904792573)",132970033-E18 +110310067,E43,11010080,Medical Incident,01/31/2011,01/30/2011,01/31/2011 07:45:58 AM,01/31/2011 07:47:18 AM,01/31/2011 07:47:49 AM,01/31/2011 07:49:18 AM,01/31/2011 07:53:09 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/31/2011 08:07:50 AM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",110310067-E43 +122920182,94,12096739,Medical Incident,10/18/2012,10/18/2012,10/18/2012 12:06:01 PM,10/18/2012 12:06:28 PM,10/18/2012 12:06:50 PM,10/18/2012 12:07:04 PM,10/18/2012 12:11:46 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Patient Declined Transport,10/18/2012 12:49:34 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122920182-94 +112240096,RS1,11073910,Traffic Collision,08/12/2011,08/12/2011,08/12/2011 09:12:46 AM,08/12/2011 09:13:18 AM,08/12/2011 09:13:26 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,04/25/2016 02:03:13 PM,MISSION ST/NEW MONTGOMERY ST,SF,94105,B03,1,2145,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",112240096-RS1 +122650086,E05,12087471,Medical Incident,09/21/2012,09/21/2012,09/21/2012 09:22:05 AM,09/21/2012 09:22:38 AM,09/21/2012 09:22:58 AM,09/21/2012 09:24:14 AM,09/21/2012 09:26:07 AM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 09:41:21 AM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",122650086-E05 +130470011,D3,13015855,Structure Fire,02/16/2013,02/15/2013,02/16/2013 12:25:19 AM,02/16/2013 12:25:59 AM,02/16/2013 12:26:20 AM,02/16/2013 12:28:15 AM,02/16/2013 12:39:05 AM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/16/2013 03:17:30 AM,1200 Block of MARINER DR,TI,94130,B03,48,2931,3,3,3,false,Fire,2,CHIEF,10,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",130470011-D3 +122600030,T06,12085804,Medical Incident,09/16/2012,09/15/2012,09/16/2012 01:47:32 AM,09/16/2012 01:48:29 AM,09/16/2012 01:49:19 AM,09/16/2012 01:50:32 AM,09/16/2012 01:54:02 AM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 01:54:46 AM,VALENCIA ST/DUBOCE AV,SF,94103,B02,36,5126,3,2,2,false,Non Life-threatening,1,TRUCK,2,2,9,Mission,"(37.7698676980277, -122.422364819149)",122600030-T06 +160222543,AM16,16008839,Medical Incident,01/22/2016,01/22/2016,01/22/2016 04:29:56 PM,01/22/2016 04:30:55 PM,01/22/2016 04:31:20 PM,01/22/2016 04:32:32 PM,01/22/2016 04:36:37 PM,01/22/2016 05:09:00 PM,01/22/2016 05:16:32 PM,Code 2 Transport,01/22/2016 05:55:18 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",160222543-AM16 +122640032,E13,12087068,Alarms,09/20/2012,09/19/2012,09/20/2012 02:25:55 AM,09/20/2012 02:27:21 AM,09/20/2012 02:27:28 AM,09/20/2012 02:29:01 AM,09/20/2012 02:31:44 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 02:41:21 AM,0 Block of BEALE ST,SF,94105,B03,13,2125,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7917404337271, -122.396647503187)",122640032-E13 +132510046,E33,13084691,Medical Incident,09/08/2013,09/07/2013,09/08/2013 02:25:53 AM,09/08/2013 02:27:31 AM,09/08/2013 02:29:18 AM,09/08/2013 02:31:31 AM,09/08/2013 02:33:47 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 03:33:03 AM,0 Block of SEARS ST,SF,94112,B09,33,8354,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7101653378223, -122.453160472507)",132510046-E33 +123280329,75,12109225,Medical Incident,11/23/2012,11/23/2012,11/23/2012 09:38:29 PM,11/23/2012 09:39:37 PM,11/23/2012 09:40:09 PM,11/23/2012 09:40:14 PM,11/23/2012 09:47:00 PM,11/23/2012 10:11:25 PM,11/23/2012 10:27:15 PM,Code 2 Transport,11/23/2012 11:03:20 PM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",123280329-75 +131410159,55,13047752,Medical Incident,05/21/2013,05/21/2013,05/21/2013 11:17:53 AM,05/21/2013 11:20:32 AM,05/21/2013 11:20:50 AM,05/21/2013 11:21:18 AM,05/21/2013 11:23:45 AM,05/21/2013 11:46:14 AM,05/21/2013 12:00:41 PM,Code 2 Transport,05/21/2013 12:45:21 PM,0 Block of SYCAMORE ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7627443612578, -122.419834318318)",131410159-55 +112530399,82,11083644,Medical Incident,09/10/2011,09/10/2011,09/10/2011 10:09:27 PM,09/10/2011 10:12:42 PM,09/10/2011 10:12:55 PM,09/10/2011 10:13:50 PM,09/10/2011 10:16:34 PM,09/10/2011 10:29:29 PM,09/10/2011 10:53:45 PM,Code 2 Transport,09/10/2011 11:11:38 PM,VALENCIA ST/CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,false,,1,MEDIC,2,6,9,Mission,"(37.7481252844229, -122.420278831044)",112530399-82 +112350395,89,11077727,Medical Incident,08/23/2011,08/23/2011,08/23/2011 09:45:43 PM,08/23/2011 09:47:14 PM,08/23/2011 09:47:55 PM,08/23/2011 09:54:47 PM,08/23/2011 10:04:22 PM,08/23/2011 10:25:39 PM,08/23/2011 10:39:58 PM,Code 2 Transport,08/23/2011 11:03:59 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,true,,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",112350395-89 +132250249,E34,13075995,Structure Fire,08/13/2013,08/13/2013,08/13/2013 02:37:02 PM,08/13/2013 02:37:02 PM,08/13/2013 02:37:13 PM,04/25/2016 01:51:19 PM,08/13/2013 02:38:18 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 02:41:45 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",132250249-E34 +121840045,55,12061177,Medical Incident,07/02/2012,07/01/2012,07/02/2012 04:49:41 AM,07/02/2012 04:50:47 AM,07/02/2012 04:53:05 AM,04/25/2016 01:57:55 PM,07/02/2012 05:12:52 AM,07/02/2012 05:31:24 AM,07/02/2012 05:47:45 AM,Code 2 Transport,07/02/2012 06:02:10 AM,100 Block of SANTOS ST,SF,94134,B09,43,6244,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",121840045-55 +121220114,E02,12040438,Medical Incident,05/01/2012,05/01/2012,05/01/2012 10:16:47 AM,05/01/2012 10:18:09 AM,05/01/2012 10:19:54 AM,05/01/2012 10:20:25 AM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,Other,05/01/2012 10:26:29 AM,300 Block of KEARNY ST,SF,94104,B01,13,1243,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7912340846194, -122.40405694935)",121220114-E02 +131060146,T11,13035598,Structure Fire,04/16/2013,04/16/2013,04/16/2013 11:17:27 AM,04/16/2013 11:17:27 AM,04/16/2013 11:17:47 AM,04/16/2013 11:18:01 AM,04/16/2013 11:21:24 AM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/16/2013 11:22:04 AM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.7528524062967, -122.408188967839)",131060146-T11 +111770287,E05,11058450,Structure Fire,06/26/2011,06/26/2011,06/26/2011 04:38:20 PM,06/26/2011 04:38:20 PM,06/26/2011 04:39:30 PM,06/26/2011 04:40:57 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,06/26/2011 04:43:08 PM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",111770287-E05 +160440347,AM22,16017562,Traffic Collision,02/13/2016,02/12/2016,02/13/2016 02:22:40 AM,02/13/2016 02:26:22 AM,02/13/2016 02:27:21 AM,02/13/2016 02:28:39 AM,02/13/2016 02:36:36 AM,02/13/2016 02:55:07 AM,02/13/2016 03:11:41 AM,Code 2 Transport,02/13/2016 04:38:12 AM,200 Block of KING ST,San Francisco,94107,B03,4,2436,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160440347-AM22 +160033208,79,16001384,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:11:03 PM,01/03/2016 10:13:08 PM,01/03/2016 10:14:29 PM,01/03/2016 10:16:45 PM,01/03/2016 10:25:07 PM,01/03/2016 10:41:13 PM,01/03/2016 10:57:23 PM,Code 2 Transport,01/03/2016 11:31:03 PM,400 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8063948128853, -122.414598058157)",160033208-79 +160152656,77,16006069,Medical Incident,01/15/2016,01/15/2016,01/15/2016 04:36:21 PM,01/15/2016 04:37:40 PM,01/15/2016 04:37:50 PM,01/15/2016 04:38:07 PM,01/15/2016 05:04:46 PM,01/15/2016 05:08:45 PM,01/15/2016 05:52:24 PM,Code 2 Transport,01/15/2016 06:19:46 PM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",160152656-77 +160050992,KM02,16001921,Medical Incident,01/05/2016,01/05/2016,01/05/2016 09:45:39 AM,01/05/2016 09:46:33 AM,01/05/2016 09:47:17 AM,01/05/2016 09:48:34 AM,01/05/2016 09:52:08 AM,01/05/2016 10:15:52 AM,01/05/2016 10:32:55 AM,Code 2 Transport,01/05/2016 10:55:01 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777263414712, -122.409605982336)",160050992-KM02 +123430050,E36,12114511,Medical Incident,12/08/2012,12/07/2012,12/08/2012 03:25:20 AM,12/08/2012 03:26:07 AM,12/08/2012 03:26:18 AM,12/08/2012 03:30:11 AM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/08/2012 03:30:23 AM,11TH ST/MARKET ST,SF,94103,B02,36,3211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7755581612992, -122.41865858352)",123430050-E36 +103220134,E21,10103161,Medical Incident,11/18/2010,11/18/2010,11/18/2010 11:11:27 AM,11/18/2010 11:11:48 AM,11/18/2010 11:12:05 AM,11/18/2010 11:14:42 AM,11/18/2010 11:17:30 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/18/2010 11:18:59 AM,1600 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,false,,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.7752450450943, -122.443780098911)",103220134-E21 +121230070,E08,12040736,Medical Incident,05/02/2012,05/02/2012,05/02/2012 08:35:58 AM,05/02/2012 08:36:42 AM,05/02/2012 08:37:08 AM,05/02/2012 08:39:00 AM,05/02/2012 08:41:53 AM,04/25/2016 01:58:53 PM,04/25/2016 01:58:53 PM,Other,05/02/2012 08:49:56 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",121230070-E08 +113110065,E01,11103251,Alarms,11/07/2011,11/06/2011,11/07/2011 07:12:14 AM,11/07/2011 07:13:17 AM,11/07/2011 07:13:34 AM,11/07/2011 07:14:43 AM,11/07/2011 07:15:53 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 07:19:51 AM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",113110065-E01 +160300004,85,16011612,Medical Incident,01/30/2016,01/29/2016,01/30/2016 12:01:14 AM,01/30/2016 12:01:41 AM,01/30/2016 12:02:13 AM,01/30/2016 12:02:23 AM,01/30/2016 12:07:03 AM,01/30/2016 12:19:48 AM,01/30/2016 12:22:58 AM,Code 3 Transport,01/30/2016 01:13:58 AM,1000 Block of CAPP ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7499017090743, -122.417193854748)",160300004-85 +102760377,B03,10087905,Structure Fire,10/03/2010,10/03/2010,10/03/2010 10:12:00 PM,10/03/2010 10:12:50 PM,10/03/2010 10:13:13 PM,10/03/2010 10:14:13 PM,10/03/2010 10:14:48 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/03/2010 10:20:29 PM,500 Block of 4TH ST,SF,94107,B03,8,2217,3,3,3,false,,1,CHIEF,1,3,6,South of Market,"(37.7793874256322, -122.397749284931)",102760377-B03 +130550322,B06,13018689,Structure Fire,02/24/2013,02/24/2013,02/24/2013 09:09:39 PM,02/24/2013 09:10:23 PM,02/24/2013 09:10:34 PM,02/24/2013 09:12:07 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Other,02/24/2013 09:16:12 PM,0 Block of ARAGO ST,SF,94112,B09,15,8223,3,3,3,false,Alarm,1,CHIEF,3,9,11,Outer Mission,"(37.7274170733857, -122.443122455556)",130550322-B06 +102860262,77,10091190,Medical Incident,10/13/2010,10/13/2010,10/13/2010 02:38:32 PM,10/13/2010 02:39:53 PM,10/13/2010 02:41:32 PM,10/13/2010 02:45:16 PM,10/13/2010 02:55:48 PM,10/13/2010 03:12:30 PM,10/13/2010 03:16:26 PM,Code 2 Transport,10/13/2010 03:46:45 PM,SACRAMENTO ST/FILLMORE ST,SF,94115,B04,38,3544,3,2,2,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.7898369713314, -122.43402709034)",102860262-77 +122890271,E13,12095689,Structure Fire,10/15/2012,10/15/2012,10/15/2012 04:13:03 PM,10/15/2012 04:13:04 PM,10/15/2012 04:13:11 PM,10/15/2012 04:14:39 PM,10/15/2012 04:15:23 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 04:16:00 PM,KEARNY ST/WASHINGTON ST,SF,94108,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7953266906824, -122.404957209767)",122890271-E13 +112400180,KM01,11079198,Medical Incident,08/28/2011,08/28/2011,08/28/2011 12:39:30 PM,08/28/2011 12:41:43 PM,08/28/2011 12:42:08 PM,08/28/2011 12:43:00 PM,08/28/2011 12:49:02 PM,08/28/2011 01:10:52 PM,08/28/2011 01:30:48 PM,Code 2 Transport,08/28/2011 01:56:53 PM,300 Block of TEHAMA ST,SF,94103,B03,1,2214,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",112400180-KM01 +112350372,E36,11077707,Traffic Collision,08/23/2011,08/23/2011,08/23/2011 08:57:49 PM,08/23/2011 08:57:49 PM,08/23/2011 08:58:05 PM,08/23/2011 08:59:35 PM,08/23/2011 09:00:47 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 09:41:55 PM,FRANKLIN ST/MCALLISTER ST,SF,94102,B02,36,3215,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7798901049166, -122.42189157233)",112350372-E36 +160341836,86,16013401,Medical Incident,02/03/2016,02/03/2016,02/03/2016 01:33:05 PM,02/03/2016 01:35:07 PM,02/03/2016 01:35:43 PM,02/03/2016 01:35:58 PM,02/03/2016 01:42:28 PM,02/03/2016 01:57:46 PM,02/03/2016 02:08:07 PM,Code 2 Transport,02/03/2016 02:55:13 PM,700 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.732924646566, -122.416428558162)",160341836-86 +112480117,E21,11081732,Medical Incident,09/05/2011,09/05/2011,09/05/2011 09:18:08 AM,09/05/2011 09:19:35 AM,09/05/2011 09:19:46 AM,09/05/2011 09:20:19 AM,09/05/2011 09:24:37 AM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/05/2011 09:24:55 AM,0 Block of ROSSI AVE,SF,94118,B07,21,4557,3,3,3,false,,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.779215348773, -122.45632948558)",112480117-E21 +123370295,AM16,12112257,Medical Incident,12/02/2012,12/02/2012,12/02/2012 09:40:06 AM,12/02/2012 09:41:43 AM,12/02/2012 09:45:15 AM,12/02/2012 09:45:45 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 09:47:30 AM,1500 Block of 39TH AVE,SF,94122,B08,23,7625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7579582456154, -122.498158577742)",123370295-AM16 +140480041,KM10,14016224,Medical Incident,02/17/2014,02/16/2014,02/17/2014 04:03:29 AM,02/17/2014 04:06:14 AM,02/17/2014 04:06:30 AM,02/17/2014 04:06:57 AM,02/17/2014 04:13:06 AM,02/17/2014 04:15:11 AM,02/17/2014 04:42:29 AM,Code 2 Transport,02/17/2014 05:13:14 AM,3300 Block of 24TH ST,SF,94110,B06,11,5525,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522767133494, -122.418736723254)",140480041-KM10 +160353791,AM22,16014016,Medical Incident,02/04/2016,02/04/2016,02/04/2016 09:51:15 PM,02/04/2016 09:52:11 PM,02/04/2016 09:52:18 PM,02/04/2016 09:53:23 PM,02/04/2016 09:59:04 PM,02/04/2016 10:25:26 PM,02/04/2016 10:25:34 PM,Code 2 Transport,02/04/2016 10:54:58 PM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",160353791-AM22 +133400183,RS2,13115230,Structure Fire,12/06/2013,12/06/2013,12/06/2013 12:22:39 PM,12/06/2013 12:26:12 PM,12/06/2013 12:28:06 PM,12/06/2013 12:30:28 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:31:13 PM,100 Block of COLE ST,SF,94117,B05,21,4535,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,5,Lone Mountain/USF,"(37.7737734460472, -122.451136840346)",133400183-RS2 +102510311,T16,10079395,Alarms,09/08/2010,09/08/2010,09/08/2010 05:42:08 PM,09/08/2010 05:43:56 PM,09/08/2010 05:44:06 PM,09/08/2010 05:45:26 PM,09/08/2010 05:47:24 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 05:49:24 PM,0 Block of AVILA ST,SF,94123,B04,16,3661,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.8007824295551, -122.440477443994)",102510311-T16 +121210067,77,12040090,Medical Incident,04/30/2012,04/29/2012,04/30/2012 06:46:02 AM,04/30/2012 06:46:28 AM,04/30/2012 06:48:23 AM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 06:49:44 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",121210067-77 +113300157,AM02,11109418,Medical Incident,11/26/2011,11/26/2011,11/26/2011 03:08:18 PM,11/26/2011 03:09:43 PM,11/26/2011 03:09:57 PM,11/26/2011 03:10:39 PM,11/26/2011 03:12:52 PM,11/26/2011 03:27:20 PM,11/26/2011 03:44:00 PM,Code 2 Transport,11/26/2011 04:12:49 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",113300157-AM02 +160011833,53,16000318,Medical Incident,01/01/2016,01/01/2016,01/01/2016 12:00:38 PM,01/01/2016 12:03:09 PM,01/01/2016 12:06:29 PM,01/01/2016 12:06:44 PM,01/01/2016 12:15:12 PM,01/01/2016 12:39:40 PM,01/01/2016 12:56:28 PM,Code 2 Transport,01/01/2016 01:47:02 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160011833-53 +120350033,55,12011496,Structure Fire,02/04/2012,02/03/2012,02/04/2012 01:53:58 AM,02/04/2012 01:55:02 AM,02/04/2012 01:55:15 AM,02/04/2012 01:55:44 AM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/04/2012 02:02:03 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Fire,1,MEDIC,8,2,6,Mission,"(37.7740948566882, -122.420001436964)",120350033-55 +102540234,75,10080331,Medical Incident,09/11/2010,09/11/2010,09/11/2010 02:55:50 PM,09/11/2010 02:57:29 PM,09/11/2010 02:58:21 PM,09/11/2010 02:59:10 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 03:04:34 PM,100 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7729000896445, -122.424646169194)",102540234-75 +122230045,B10,12073818,Outside Fire,08/10/2012,08/09/2012,08/10/2012 03:55:37 AM,08/10/2012 03:59:44 AM,08/10/2012 03:59:57 AM,08/10/2012 04:20:07 AM,08/10/2012 04:25:11 AM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 05:17:41 AM,CARROLL AV/INGALLS ST,SF,94124,B10,17,6615,3,3,3,false,Fire,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7228514425421, -122.389619541476)",122230045-B10 +120250048,71,12008291,Medical Incident,01/25/2012,01/24/2012,01/25/2012 05:04:24 AM,01/25/2012 05:05:45 AM,01/25/2012 05:05:54 AM,04/25/2016 02:00:27 PM,01/25/2012 05:12:18 AM,01/25/2012 05:26:04 AM,01/25/2012 05:33:15 AM,Code 2 Transport,01/25/2012 06:05:28 AM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.748178766022, -122.4214039484)",120250048-71 +160331315,55,16012946,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:19:20 AM,02/02/2016 11:19:20 AM,02/02/2016 11:19:49 AM,02/02/2016 11:20:25 AM,02/02/2016 11:31:48 AM,02/02/2016 11:44:50 AM,02/02/2016 12:00:04 PM,Code 2 Transport,02/02/2016 12:40:42 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160331315-55 +160401844,59,16016031,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:08:02 PM,02/09/2016 01:08:02 PM,02/09/2016 01:08:33 PM,02/09/2016 01:08:54 PM,02/09/2016 01:18:00 PM,02/09/2016 01:34:28 PM,02/09/2016 01:48:37 PM,Code 2 Transport,02/09/2016 02:12:54 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160401844-59 +111310265,AM08,11043359,Medical Incident,05/11/2011,05/11/2011,05/11/2011 04:56:07 PM,05/11/2011 04:58:12 PM,05/11/2011 04:58:42 PM,05/11/2011 04:59:49 PM,05/11/2011 05:04:30 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,No Merit,05/11/2011 05:07:48 PM,2700 Block of SUTTER ST,SF,94115,B05,10,4366,3,3,3,false,,1,PRIVATE,3,5,5,Presidio Heights,"(37.784473419921, -122.445528413067)",111310265-AM08 +121830296,T07,12061069,Structure Fire,07/01/2012,07/01/2012,07/01/2012 07:30:52 PM,07/01/2012 07:31:19 PM,07/01/2012 07:31:51 PM,07/01/2012 07:33:35 PM,07/01/2012 07:38:34 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 07:42:38 PM,4000 Block of 17TH ST,SF,94114,B05,6,5253,3,3,3,false,Fire,1,TRUCK,9,5,8,Castro/Upper Market,"(37.7624364423334, -122.436895079866)",121830296-T07 +110980094,64,11032430,Structure Fire,04/08/2011,04/08/2011,04/08/2011 08:29:22 AM,04/08/2011 08:31:16 AM,04/08/2011 08:31:41 AM,04/08/2011 08:34:05 AM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Other,04/08/2011 08:36:06 AM,HARKNESS AV/RUTLAND ST,SF,94134,B10,44,6315,3,3,3,true,,1,MEDIC,3,10,10,Visitacion Valley,"(37.7179452414737, -122.405021990261)",110980094-64 +160292124,55,16011480,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:51:25 PM,01/29/2016 02:52:05 PM,01/29/2016 02:53:41 PM,01/29/2016 02:53:49 PM,01/29/2016 03:19:20 PM,01/29/2016 03:49:56 PM,01/29/2016 04:16:28 PM,Code 2 Transport,01/29/2016 05:07:17 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160292124-55 +123240246,E03,12107778,Medical Incident,11/19/2012,11/19/2012,11/19/2012 02:41:56 PM,11/19/2012 02:43:42 PM,11/19/2012 02:44:41 PM,11/19/2012 02:45:43 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,04/25/2016 01:55:43 PM,GEARY BL/FILLMORE ST,SF,94115,B04,5,3541,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",123240246-E03 +160541123,65,16021519,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:09:24 AM,02/23/2016 10:10:47 AM,02/23/2016 10:11:12 AM,02/23/2016 10:11:48 AM,02/23/2016 10:27:44 AM,02/23/2016 10:47:51 AM,02/23/2016 11:02:42 AM,Code 2 Transport,02/23/2016 11:54:50 AM,1600 Block of 30TH AVE,San Francisco,94122,B08,18,7514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7565148633826, -122.488520596486)",160541123-65 +110570326,T01,11018881,Structure Fire,02/26/2011,02/26/2011,02/26/2011 08:17:26 PM,02/26/2011 08:17:59 PM,02/26/2011 08:18:06 PM,04/25/2016 02:05:53 PM,02/26/2011 08:20:37 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,Other,02/26/2011 08:26:49 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.779489776176, -122.407376438306)",110570326-T01 +130670277,T03,13022400,Structure Fire,03/08/2013,03/08/2013,03/08/2013 04:32:37 PM,03/08/2013 04:32:37 PM,03/08/2013 04:32:42 PM,03/08/2013 04:33:59 PM,03/08/2013 04:36:11 PM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,Other,03/08/2013 04:36:40 PM,OFARRELL ST/TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,Alarm,1,TRUCK,1,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",130670277-T03 +133160153,KM06,13107404,Medical Incident,11/12/2013,11/12/2013,11/12/2013 12:24:43 PM,11/12/2013 12:27:10 PM,11/12/2013 12:27:38 PM,11/12/2013 12:28:35 PM,11/12/2013 12:33:01 PM,11/12/2013 12:44:54 PM,11/12/2013 12:58:50 PM,Code 2 Transport,11/12/2013 01:29:05 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",133160153-KM06 +102770211,E07,10088095,Medical Incident,10/04/2010,10/04/2010,10/04/2010 03:35:08 PM,10/04/2010 03:38:13 PM,10/04/2010 03:40:20 PM,10/04/2010 03:41:16 PM,10/04/2010 03:43:36 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/04/2010 03:54:54 PM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,1,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",102770211-E07 +110900109,E11,11029703,Medical Incident,03/31/2011,03/31/2011,03/31/2011 10:11:42 AM,03/31/2011 10:12:21 AM,03/31/2011 10:12:46 AM,03/31/2011 10:13:00 AM,03/31/2011 10:15:39 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Other,03/31/2011 10:29:47 AM,4500 Block of 25TH ST,SF,94114,B06,24,5542,3,2,2,true,,1,ENGINE,1,6,8,Noe Valley,"(37.749278296877, -122.439919169806)",110900109-E11 +160410072,79,16016263,Medical Incident,02/10/2016,02/09/2016,02/10/2016 12:32:31 AM,02/10/2016 12:32:31 AM,02/10/2016 12:32:43 AM,02/10/2016 12:33:12 AM,02/10/2016 12:40:14 AM,02/10/2016 12:49:26 AM,02/10/2016 01:06:58 AM,Code 2 Transport,02/10/2016 01:37:54 AM,WAWONA ST/GREAT HY,San Francisco,94116,B08,23,7733,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7360956877509, -122.506193981617)",160410072-79 +160351487,88,16013800,Medical Incident,02/04/2016,02/04/2016,02/04/2016 11:33:09 AM,02/04/2016 11:34:28 AM,02/04/2016 11:34:50 AM,02/04/2016 11:40:10 AM,02/04/2016 11:45:12 AM,02/04/2016 12:04:22 PM,02/04/2016 12:14:18 PM,Code 2 Transport,02/04/2016 01:00:59 PM,2800 Block of CLAY ST,San Francisco,94115,B04,38,4124,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7900311303711, -122.439981570034)",160351487-88 +110720080,E08,11023636,Medical Incident,03/13/2011,03/12/2011,03/13/2011 05:38:51 AM,03/13/2011 05:41:16 AM,03/13/2011 05:41:55 AM,03/13/2011 05:43:58 AM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/13/2011 05:48:48 AM,800 Block of HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7799507434806, -122.400778586916)",110720080-E08 +111300297,E01,11043064,Medical Incident,05/10/2011,05/10/2011,05/10/2011 06:14:21 PM,05/10/2011 06:15:29 PM,05/10/2011 06:15:52 PM,05/10/2011 06:16:23 PM,05/10/2011 06:18:58 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 06:36:19 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",111300297-E01 +111840012,E01,11060628,Structure Fire,07/03/2011,07/02/2011,07/03/2011 12:44:31 AM,07/03/2011 12:45:39 AM,07/03/2011 12:45:56 AM,07/03/2011 12:46:42 AM,07/03/2011 12:49:27 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:55:30 AM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,4,2,6,Tenderloin,"(37.7832504150919, -122.414216002993)",111840012-E01 +160910225,52,16035941,Medical Incident,03/31/2016,03/30/2016,03/31/2016 02:14:02 AM,03/31/2016 02:14:02 AM,03/31/2016 02:14:12 AM,03/31/2016 02:14:20 AM,03/31/2016 02:16:37 AM,03/31/2016 02:39:53 AM,03/31/2016 02:59:27 AM,Code 2 Transport,03/31/2016 03:13:41 AM,600 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7776344362675, -122.458540186459)",160910225-52 +140150389,E17,14005308,Medical Incident,01/15/2014,01/15/2014,01/15/2014 10:12:01 PM,01/15/2014 10:12:59 PM,01/15/2014 10:14:04 PM,01/15/2014 10:15:40 PM,01/15/2014 10:16:56 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 10:17:26 PM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",140150389-E17 +130750226,92,13025068,Medical Incident,03/16/2013,03/16/2013,03/16/2013 03:47:56 PM,03/16/2013 03:47:57 PM,03/16/2013 03:48:28 PM,03/16/2013 03:48:56 PM,03/16/2013 04:04:24 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 04:16:43 PM,100 Block of EVERSON ST,SF,94131,B06,26,8117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7387288505192, -122.432719348311)",130750226-92 +122890227,96,12095653,Medical Incident,10/15/2012,10/15/2012,10/15/2012 02:25:22 PM,10/15/2012 02:25:33 PM,10/15/2012 02:25:43 PM,10/15/2012 02:28:12 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Patient Declined Transport,10/15/2012 02:29:56 PM,0 Block of ADAIR ST,SF,94103,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7656644174365, -122.418082720012)",122890227-96 +131360321,89,13045980,Medical Incident,05/16/2013,05/16/2013,05/16/2013 04:14:42 PM,05/16/2013 04:15:26 PM,05/16/2013 04:16:01 PM,05/16/2013 04:16:25 PM,05/16/2013 04:28:52 PM,05/16/2013 04:49:04 PM,05/16/2013 05:10:17 PM,Code 2 Transport,05/16/2013 05:49:31 PM,900 Block of MEADE AVE,SF,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7179825670538, -122.397504351849)",131360321-89 +111170320,E12,11038738,Medical Incident,04/27/2011,04/27/2011,04/27/2011 08:11:48 PM,04/27/2011 08:14:02 PM,04/27/2011 08:14:29 PM,04/27/2011 08:15:39 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 08:23:26 PM,HAIGHT ST/SHRADER ST,SF,94117,B05,12,4545,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7693786636844, -122.451865726136)",111170320-E12 +130480083,93,13016300,Medical Incident,02/17/2013,02/16/2013,02/17/2013 05:37:41 AM,02/17/2013 05:39:10 AM,02/17/2013 05:40:03 AM,02/17/2013 05:40:44 AM,02/17/2013 05:49:13 AM,02/17/2013 06:02:11 AM,02/17/2013 06:20:40 AM,Code 2 Transport,02/17/2013 06:43:02 AM,200 Block of 13TH ST,SF,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",130480083-93 +112210382,77,11073181,Medical Incident,08/09/2011,08/09/2011,08/09/2011 11:31:00 PM,08/09/2011 11:38:47 PM,08/09/2011 11:39:10 PM,08/09/2011 11:39:56 PM,08/09/2011 11:40:00 PM,08/10/2011 12:04:36 AM,08/10/2011 12:14:16 AM,Code 2 Transport,08/10/2011 12:57:24 AM,24TH ST/SHOTWELL ST,SF,94110,B06,7,544,1,1,2,true,,1,MEDIC,1,6,9,Mission,"(37.752439647175, -122.415172290461)",112210382-77 +102940321,E01,10093875,Medical Incident,10/21/2010,10/21/2010,10/21/2010 08:30:25 PM,10/21/2010 08:31:15 PM,10/21/2010 08:32:29 PM,10/21/2010 08:33:35 PM,10/21/2010 08:36:08 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/21/2010 08:42:44 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",102940321-E01 +110330320,E01,11010931,Medical Incident,02/02/2011,02/02/2011,02/02/2011 06:31:17 PM,02/02/2011 06:32:04 PM,02/02/2011 06:32:34 PM,02/02/2011 06:34:49 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 06:41:10 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",110330320-E01 +160482150,63,16019372,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 02:02:32 PM,02/17/2016 02:02:32 PM,02/17/2016 02:04:18 PM,02/17/2016 02:04:33 PM,02/17/2016 02:06:37 PM,02/17/2016 02:35:56 PM,02/17/2016 02:44:13 PM,Code 2 Transport,02/17/2016 03:29:10 PM,KIRKHAM ST/18TH AV,San Francisco,94122,B08,22,7423,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7598794347313, -122.475796561788)",160482150-63 +160590724,AM02,16023419,Medical Incident,02/28/2016,02/27/2016,02/28/2016 07:26:27 AM,02/28/2016 07:27:28 AM,02/28/2016 07:28:05 AM,02/28/2016 07:28:48 AM,02/28/2016 07:32:20 AM,02/28/2016 07:46:02 AM,02/28/2016 08:12:53 AM,Code 2 Transport,02/28/2016 08:32:52 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",160590724-AM02 +160802577,53,16031889,Medical Incident,03/20/2016,03/20/2016,03/20/2016 05:14:19 PM,03/20/2016 05:14:57 PM,03/20/2016 05:15:42 PM,03/20/2016 05:17:13 PM,03/20/2016 05:21:35 PM,03/20/2016 05:43:25 PM,03/20/2016 05:57:54 PM,Code 2 Transport,03/20/2016 06:17:50 PM,4600 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7847469190077, -122.467233170078)",160802577-53 +112900138,E29,11096174,Medical Incident,10/17/2011,10/17/2011,10/17/2011 11:05:31 AM,10/17/2011 11:06:56 AM,10/17/2011 11:07:42 AM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 11:09:34 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,ENGINE,4,3,6,South of Market,"(37.775420706711, -122.403404791479)",112900138-E29 +110330389,T14,11010995,Structure Fire,02/02/2011,02/02/2011,02/02/2011 10:00:26 PM,02/02/2011 10:00:26 PM,02/02/2011 10:00:42 PM,02/02/2011 10:02:15 PM,02/02/2011 10:04:44 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 10:28:51 PM,600 Block of 32ND AVE,SF,94121,B07,14,724,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",110330389-T14 +110590192,89,11019391,Medical Incident,02/28/2011,02/28/2011,02/28/2011 02:16:58 PM,02/28/2011 02:17:32 PM,02/28/2011 02:17:55 PM,02/28/2011 02:18:21 PM,02/28/2011 02:23:40 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Against Medical Advice,02/28/2011 03:24:11 PM,400 Block of 26TH AVE,SF,94121,B07,14,7221,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7810031903924, -122.485945544565)",110590192-89 +102920369,81,10093274,Medical Incident,10/19/2010,10/19/2010,10/19/2010 10:03:34 PM,10/19/2010 10:05:20 PM,10/19/2010 10:05:33 PM,10/19/2010 10:06:04 PM,10/19/2010 10:12:49 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,No Merit,10/19/2010 10:18:46 PM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7290589753437, -122.385447178388)",102920369-81 +160214007,75,16008581,Medical Incident,01/21/2016,01/21/2016,01/21/2016 10:27:39 PM,01/21/2016 10:29:06 PM,01/21/2016 10:29:52 PM,01/21/2016 10:30:16 PM,01/21/2016 10:37:19 PM,01/21/2016 10:47:02 PM,01/21/2016 11:02:32 PM,Code 2 Transport,01/21/2016 11:37:03 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160214007-75 +123300262,87,12109787,Medical Incident,11/25/2012,11/25/2012,11/25/2012 05:11:45 PM,11/25/2012 05:12:07 PM,11/25/2012 05:12:33 PM,11/25/2012 05:13:32 PM,11/25/2012 05:20:20 PM,11/25/2012 05:31:32 PM,11/25/2012 05:43:32 PM,Code 2 Transport,11/25/2012 06:02:19 PM,3300 Block of FILLMORE ST,SF,94123,B04,16,3554,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8003405635687, -122.436077390303)",123300262-87 +160320248,AM20,16012422,Medical Incident,02/01/2016,01/31/2016,02/01/2016 02:25:25 AM,02/01/2016 02:26:55 AM,02/01/2016 02:27:19 AM,02/01/2016 02:31:36 AM,02/01/2016 02:31:36 AM,02/01/2016 03:01:08 AM,02/01/2016 03:05:29 AM,Code 2 Transport,02/01/2016 03:34:15 AM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784689282473, -122.414615262229)",160320248-AM20 +123460194,E11,12115709,Administrative,12/11/2012,12/11/2012,12/11/2012 12:31:46 PM,12/11/2012 12:31:48 PM,12/11/2012 12:32:40 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 12:33:10 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",123460194-E11 +132340310,E03,13079105,Medical Incident,08/22/2013,08/22/2013,08/22/2013 07:11:39 PM,08/22/2013 07:12:52 PM,08/22/2013 07:14:26 PM,08/22/2013 07:15:40 PM,08/22/2013 07:18:31 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,08/22/2013 07:28:56 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",132340310-E03 +160753003,58,16029823,Traffic Collision,03/15/2016,03/15/2016,03/15/2016 05:42:44 PM,03/15/2016 05:45:03 PM,03/15/2016 06:15:53 PM,03/15/2016 06:18:05 PM,03/15/2016 06:49:28 PM,03/15/2016 06:49:30 PM,03/15/2016 07:03:42 PM,Code 2 Transport,03/15/2016 07:37:48 PM,LINCOLN WY/6TH AV,San Francisco,94122,B08,22,7325,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7660567219946, -122.463233168799)",160753003-58 +111120270,T15,11037071,Structure Fire,04/22/2011,04/22/2011,04/22/2011 04:33:31 PM,04/22/2011 04:33:31 PM,04/22/2011 04:33:41 PM,04/22/2011 04:34:32 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 04:36:43 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",111120270-T15 +112350159,T18,11077528,Structure Fire,08/23/2011,08/23/2011,08/23/2011 11:24:42 AM,08/23/2011 11:24:42 AM,08/23/2011 11:24:57 AM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 11:27:31 AM,1500 Block of 43RD AVE,SF,94122,B08,23,765,3,3,3,false,,1,TRUCK,3,8,4,Sunset/Parkside,"(37.757770435301, -122.502447012656)",112350159-T18 +160880999,63,16034876,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:15:14 AM,03/28/2016 09:16:40 AM,03/28/2016 09:16:47 AM,03/28/2016 09:16:56 AM,03/28/2016 09:24:58 AM,03/28/2016 09:35:59 AM,03/28/2016 09:58:04 AM,Code 2 Transport,03/28/2016 10:11:29 AM,1600 Block of LINCOLN WAY,San Francisco,94122,B08,22,7367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,4,Inner Sunset,"(37.7654145010698, -122.475644924369)",160880999-63 +122150285,94,12071449,Medical Incident,08/02/2012,08/02/2012,08/02/2012 07:00:26 PM,08/02/2012 07:01:04 PM,08/02/2012 07:01:26 PM,08/02/2012 07:01:36 PM,08/02/2012 07:03:32 PM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Patient Declined Transport,08/02/2012 07:28:09 PM,0 Block of BRIGHTON AVE,SF,94112,B09,33,8465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7191361836996, -122.455184001897)",122150285-94 +131990083,E43,13067379,Medical Incident,07/18/2013,07/18/2013,07/18/2013 09:11:03 AM,07/18/2013 09:13:23 AM,07/18/2013 09:13:49 AM,04/25/2016 01:51:45 PM,07/18/2013 09:17:29 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 09:28:49 AM,200 Block of BLYTHDALE AVE,SF,94134,B09,43,6243,3,3,3,false,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",131990083-E43 +130070324,88,13002495,Medical Incident,01/07/2013,01/07/2013,01/07/2013 06:52:39 PM,01/07/2013 06:53:20 PM,01/07/2013 06:53:55 PM,01/07/2013 06:54:11 PM,01/07/2013 06:59:08 PM,01/07/2013 07:06:57 PM,01/07/2013 07:12:15 PM,Code 2 Transport,01/07/2013 07:38:55 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130070324-88 +112990092,E29,11099121,Medical Incident,10/26/2011,10/26/2011,10/26/2011 09:03:16 AM,10/26/2011 09:05:18 AM,10/26/2011 09:05:41 AM,10/26/2011 09:07:29 AM,10/26/2011 09:08:13 AM,10/26/2011 09:28:40 AM,10/26/2011 09:28:48 AM,Other,10/26/2011 09:35:51 AM,UTAH ST/16TH ST,SF,94103,B02,29,2421,3,3,3,true,,1,ENGINE,2,2,10,Mission,"(37.7658422720667, -122.406552825622)",112990092-E29 +122250011,E36,12074473,Medical Incident,08/12/2012,08/11/2012,08/12/2012 01:00:20 AM,08/12/2012 01:00:24 AM,08/12/2012 01:01:34 AM,08/12/2012 01:04:21 AM,08/12/2012 01:06:13 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 01:08:30 AM,1100 Block of MARKET ST,SF,94103,B02,1,2317,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",122250011-E36 +160652986,60,16026059,Medical Incident,03/05/2016,03/05/2016,03/05/2016 07:32:49 PM,03/05/2016 07:35:38 PM,03/05/2016 07:35:53 PM,03/05/2016 07:36:14 PM,03/05/2016 07:41:02 PM,03/05/2016 07:55:16 PM,03/05/2016 08:10:31 PM,Code 2 Transport,03/05/2016 08:47:15 PM,JESSIE ST/5TH ST,San Francisco,94103,B03,1,2213,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831577478943, -122.407015679867)",160652986-60 +112040244,E40,11067441,Medical Incident,07/23/2011,07/23/2011,07/23/2011 03:53:26 PM,07/23/2011 03:53:58 PM,07/23/2011 03:54:21 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 04:05:24 PM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",112040244-E40 +160042842,KM02,16001707,Medical Incident,01/04/2016,01/04/2016,01/04/2016 05:49:08 PM,01/04/2016 05:51:23 PM,01/04/2016 05:51:40 PM,01/04/2016 05:52:10 PM,01/04/2016 06:04:29 PM,01/04/2016 06:24:09 PM,01/04/2016 06:46:59 PM,Code 2 Transport,01/04/2016 07:16:42 PM,1800 Block of POST ST,San Francisco,94115,B04,5,3513,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.785207581828, -122.432213785968)",160042842-KM02 +111970180,E17,11065002,Medical Incident,07/16/2011,07/16/2011,07/16/2011 01:11:08 PM,07/16/2011 01:12:22 PM,07/16/2011 01:12:32 PM,07/16/2011 01:14:34 PM,07/16/2011 01:16:28 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 01:26:23 PM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",111970180-E17 +133590190,72,13122057,Medical Incident,12/25/2013,12/25/2013,12/25/2013 02:10:47 PM,12/25/2013 02:11:29 PM,12/25/2013 02:11:52 PM,04/25/2016 01:49:04 PM,12/25/2013 02:12:20 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Code 2 Transport,12/25/2013 02:45:52 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",133590190-72 +122230396,KM07,12074121,Medical Incident,08/10/2012,08/10/2012,08/10/2012 11:34:07 PM,08/10/2012 11:36:09 PM,08/10/2012 11:36:53 PM,08/10/2012 11:37:01 PM,08/10/2012 11:43:28 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/10/2012 11:48:27 PM,0 Block of OTSEGO AVE,SF,94112,B09,15,8275,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7265627328959, -122.439143412308)",122230396-KM07 +160412471,89,16016520,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:48:29 PM,02/10/2016 03:50:50 PM,02/10/2016 03:51:13 PM,02/10/2016 03:52:38 PM,02/10/2016 03:55:43 PM,02/10/2016 04:23:32 PM,02/10/2016 04:35:29 PM,Code 2 Transport,02/10/2016 05:51:14 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160412471-89 +160780626,AM02,16030917,Medical Incident,03/18/2016,03/17/2016,03/18/2016 06:57:20 AM,03/18/2016 06:57:20 AM,03/18/2016 06:57:41 AM,03/18/2016 06:58:10 AM,03/18/2016 07:10:42 AM,03/18/2016 07:32:23 AM,03/18/2016 07:42:34 AM,Code 2 Transport,03/18/2016 08:03:37 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160780626-AM02 +160040628,55,16001489,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:29:27 AM,01/04/2016 07:30:45 AM,01/04/2016 07:31:13 AM,01/04/2016 07:31:36 AM,01/04/2016 07:58:38 AM,01/04/2016 07:58:40 AM,01/04/2016 08:12:23 AM,Code 2 Transport,01/04/2016 08:52:12 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160040628-55 +132440196,E39,13082359,Alarms,09/01/2013,09/01/2013,09/01/2013 02:28:32 PM,09/01/2013 02:29:52 PM,09/01/2013 02:30:05 PM,09/01/2013 02:31:23 PM,09/01/2013 02:34:36 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 02:40:52 PM,200 Block of SAN BENITO WAY,SF,94127,B09,39,8551,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7324436221566, -122.466984419345)",132440196-E39 +160650603,62,16025837,Medical Incident,03/05/2016,03/04/2016,03/05/2016 06:10:06 AM,03/05/2016 06:11:16 AM,03/05/2016 06:11:56 AM,03/05/2016 06:12:15 AM,03/05/2016 06:15:31 AM,03/05/2016 06:40:18 AM,03/05/2016 06:53:49 AM,Code 2 Transport,03/05/2016 07:20:57 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160650603-62 +160151529,73,16005969,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:51:10 AM,01/15/2016 11:52:04 AM,01/15/2016 11:52:37 AM,01/15/2016 11:53:01 AM,01/15/2016 11:56:02 AM,01/15/2016 12:23:53 PM,01/15/2016 12:35:42 PM,Code 2 Transport,01/15/2016 01:41:59 PM,200 Block of CLAREMONT BLVD,San Francisco,94127,B08,39,8611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.741131115176, -122.464658512247)",160151529-73 +140860212,B01,14028971,Structure Fire,03/27/2014,03/27/2014,03/27/2014 03:21:30 PM,03/27/2014 03:22:41 PM,03/27/2014 03:22:48 PM,03/27/2014 03:24:19 PM,03/27/2014 03:27:26 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 03:52:27 PM,300 Block of CLAY ST,SAN FRANCISCO,94111,B01,13,1161,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7950340354224, -122.399728412504)",140860212-B01 +160481402,75,16019307,Medical Incident,02/17/2016,02/17/2016,02/17/2016 11:06:23 AM,02/17/2016 11:08:32 AM,02/17/2016 11:09:30 AM,02/17/2016 11:09:38 AM,02/17/2016 11:17:33 AM,02/17/2016 11:40:53 AM,02/17/2016 11:59:57 AM,Code 2 Transport,02/17/2016 12:58:08 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160481402-75 +121420213,KM11,12047261,Traffic Collision,05/21/2012,05/21/2012,05/21/2012 02:23:38 PM,05/21/2012 02:25:41 PM,05/21/2012 02:25:57 PM,05/21/2012 02:27:45 PM,05/21/2012 02:49:16 PM,05/21/2012 02:49:23 PM,05/21/2012 03:03:10 PM,Code 2 Transport,05/21/2012 03:29:27 PM,VAN NESS AV/POST ST,SF,94109,B04,3,3161,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",121420213-KM11 +120120286,E02,12004191,Medical Incident,01/12/2012,01/12/2012,01/12/2012 06:36:57 PM,01/12/2012 06:38:08 PM,01/12/2012 06:38:25 PM,01/12/2012 06:39:24 PM,01/12/2012 06:41:43 PM,04/25/2016 02:00:39 PM,04/25/2016 02:00:39 PM,Other,01/12/2012 06:46:06 PM,POWELL ST/FILBERT ST,SF,94133,B01,28,1351,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.801169751007, -122.41101851673)",120120286-E02 +160712133,78,16028278,Medical Incident,03/11/2016,03/11/2016,03/11/2016 02:59:26 PM,03/11/2016 02:59:46 PM,03/11/2016 03:00:04 PM,03/11/2016 03:00:34 PM,03/11/2016 03:26:12 PM,03/11/2016 03:39:46 PM,03/11/2016 04:10:38 PM,Code 2 Transport,03/11/2016 04:38:45 PM,100 Block of ALBATROSS CT,San Francisco,94124,B10,17,6665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7283776507, -122.3722060123)",160712133-78 +132070056,93,13069970,Medical Incident,07/26/2013,07/25/2013,07/26/2013 05:46:09 AM,07/26/2013 05:47:26 AM,07/26/2013 05:49:19 AM,04/25/2016 01:51:37 PM,07/26/2013 06:09:04 AM,07/26/2013 06:21:28 AM,07/26/2013 06:33:22 AM,Code 2 Transport,07/26/2013 07:07:26 AM,3700 Block of FILLMORE ST,SF,94123,B04,16,3556,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8049371632981, -122.437001553834)",132070056-93 +160191710,KM04,16007635,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:47:19 PM,01/19/2016 12:50:31 PM,01/19/2016 12:50:44 PM,01/19/2016 12:51:14 PM,01/19/2016 01:01:07 PM,01/19/2016 01:11:59 PM,01/19/2016 01:33:56 PM,Code 2 Transport,01/19/2016 02:11:28 PM,200 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5444,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7587745198783, -122.429130636306)",160191710-KM04 +120650296,KM12,12021582,Medical Incident,03/05/2012,03/05/2012,03/05/2012 05:27:39 PM,03/05/2012 05:28:47 PM,03/05/2012 05:30:26 PM,03/05/2012 06:17:40 PM,03/05/2012 06:25:30 PM,03/05/2012 06:37:59 PM,03/05/2012 06:49:46 PM,Code 2 Transport,03/05/2012 07:10:11 PM,400 Block of ARGUELLO BLVD,SF,94118,B07,31,7113,2,2,2,false,Non Life-threatening,1,PRIVATE,3,7,2,Presidio Heights,"(37.7822260108075, -122.458859437192)",120650296-KM12 +131660208,66,13056405,Medical Incident,06/15/2013,06/15/2013,06/15/2013 03:05:48 PM,06/15/2013 03:06:30 PM,06/15/2013 03:06:52 PM,06/15/2013 03:07:10 PM,06/15/2013 03:10:07 PM,06/15/2013 03:27:30 PM,06/15/2013 03:32:23 PM,Code 2 Transport,06/15/2013 04:07:48 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",131660208-66 +131610224,65,13054719,Medical Incident,06/10/2013,06/10/2013,06/10/2013 02:14:25 PM,06/10/2013 02:15:21 PM,06/10/2013 02:18:22 PM,04/25/2016 01:52:21 PM,06/10/2013 02:26:51 PM,06/10/2013 02:40:04 PM,06/10/2013 03:10:03 PM,Code 2 Transport,06/10/2013 03:31:21 PM,1700 Block of NEWCOMB AVE,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7368641209131, -122.392545432607)",131610224-65 +102740352,E03,10087148,Alarms,10/01/2010,10/01/2010,10/01/2010 08:42:31 PM,10/01/2010 08:44:24 PM,10/01/2010 08:44:53 PM,10/01/2010 08:45:52 PM,10/01/2010 08:47:47 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 08:53:53 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",102740352-E03 +113220051,89,11106853,Medical Incident,11/18/2011,11/17/2011,11/18/2011 04:45:48 AM,11/18/2011 04:55:56 AM,11/18/2011 04:58:35 AM,11/18/2011 05:13:28 AM,11/18/2011 05:18:55 AM,11/18/2011 05:37:04 AM,11/18/2011 06:06:32 AM,Code 2 Transport,11/18/2011 06:41:21 AM,POTRERO AV/22ND ST,SF,94110,B10,7,2553,1,1,2,true,,1,MEDIC,2,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",113220051-89 +133200188,RS1,13108730,Medical Incident,11/16/2013,11/16/2013,11/16/2013 01:29:13 PM,11/16/2013 01:30:04 PM,11/16/2013 01:33:17 PM,04/25/2016 01:49:44 PM,11/16/2013 01:35:35 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 01:41:21 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",133200188-RS1 +113530332,E01,11117327,Alarms,12/19/2011,12/19/2011,12/19/2011 08:25:00 PM,12/19/2011 08:25:43 PM,12/19/2011 08:25:58 PM,04/25/2016 02:01:04 PM,12/19/2011 08:29:20 PM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 08:41:09 PM,0 Block of STOCKTON ST,SF,94108,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7860371623519, -122.406212878217)",113530332-E01 +133480210,T01,13118133,Medical Incident,12/14/2013,12/14/2013,12/14/2013 01:40:13 PM,12/14/2013 01:46:35 PM,12/14/2013 01:46:54 PM,12/14/2013 01:48:38 PM,12/14/2013 01:57:32 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 01:59:20 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,TRUCK,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",133480210-T01 +160840483,65,16033253,Medical Incident,03/24/2016,03/23/2016,03/24/2016 06:24:04 AM,03/24/2016 06:24:04 AM,03/24/2016 06:25:06 AM,03/24/2016 06:25:15 AM,03/24/2016 06:30:22 AM,03/24/2016 07:13:54 AM,03/24/2016 07:14:01 AM,Code 2 Transport,03/24/2016 07:15:57 AM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160840483-65 +131730368,66,13058875,Medical Incident,06/22/2013,06/22/2013,06/22/2013 10:56:16 PM,06/22/2013 10:58:23 PM,06/22/2013 10:58:52 PM,06/22/2013 10:59:15 PM,06/22/2013 11:09:32 PM,06/22/2013 11:19:50 PM,06/22/2013 11:33:58 PM,Code 2 Transport,06/22/2013 11:54:14 PM,MISSION ST/FOOTE AV,SF,94112,B09,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7126222176645, -122.444743290966)",131730368-66 +133160346,93,13107572,Medical Incident,11/12/2013,11/12/2013,11/12/2013 11:18:01 PM,11/12/2013 11:19:41 PM,11/12/2013 11:20:33 PM,11/12/2013 11:20:54 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/12/2013 11:27:59 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",133160346-93 +132740254,RS1,13093167,Traffic Collision,10/01/2013,10/01/2013,10/01/2013 04:45:30 PM,10/01/2013 04:52:03 PM,10/01/2013 04:52:58 PM,10/01/2013 04:54:43 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 04:55:31 PM,TURK ST/TAYLOR ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",132740254-RS1 +160720860,KM09,16028515,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:33:46 AM,03/12/2016 08:35:34 AM,03/12/2016 08:35:52 AM,03/12/2016 08:36:23 AM,03/12/2016 08:38:03 AM,03/12/2016 08:58:46 AM,03/12/2016 09:12:39 AM,Code 2 Transport,03/12/2016 10:02:47 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160720860-KM09 +123230297,T01,12107516,Alarms,11/18/2012,11/18/2012,11/18/2012 08:33:16 PM,11/18/2012 08:34:22 PM,11/18/2012 08:34:30 PM,11/18/2012 08:36:32 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/18/2012 08:48:16 PM,0 Block of KEARNY ST,SF,94108,B01,1,1241,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7877942875414, -122.403529728368)",123230297-T01 +111100339,75,11036435,Medical Incident,04/20/2011,04/20/2011,04/20/2011 07:05:09 PM,04/20/2011 07:06:05 PM,04/20/2011 07:07:00 PM,04/20/2011 07:07:10 PM,04/20/2011 07:08:22 PM,04/20/2011 07:25:21 PM,04/20/2011 07:29:56 PM,Code 2 Transport,04/20/2011 08:04:31 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",111100339-75 +160670552,75,16026632,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:30:12 AM,03/07/2016 08:30:49 AM,03/07/2016 08:37:53 AM,03/07/2016 08:45:50 AM,03/07/2016 09:06:33 AM,03/07/2016 09:18:22 AM,03/07/2016 09:18:22 AM,Code 2 Transport,03/07/2016 10:09:12 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160670552-75 +160790545,65,16031313,Medical Incident,03/19/2016,03/18/2016,03/19/2016 05:17:07 AM,03/19/2016 05:17:35 AM,03/19/2016 05:18:09 AM,03/19/2016 05:18:16 AM,03/19/2016 05:23:17 AM,03/19/2016 05:31:43 AM,03/19/2016 05:39:03 AM,Code 2 Transport,03/19/2016 06:16:24 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160790545-65 +132960164,E07,13100586,Medical Incident,10/23/2013,10/23/2013,10/23/2013 01:06:55 PM,10/23/2013 01:07:35 PM,10/23/2013 01:08:27 PM,10/23/2013 01:09:22 PM,10/23/2013 01:10:52 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,No Merit,10/23/2013 01:13:40 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",132960164-E07 +160750292,AM20,16029569,Medical Incident,03/15/2016,03/14/2016,03/15/2016 03:36:39 AM,03/15/2016 03:40:02 AM,03/15/2016 03:40:19 AM,03/15/2016 03:40:50 AM,03/15/2016 03:48:05 AM,03/15/2016 03:56:45 AM,03/15/2016 04:21:32 AM,Code 2 Transport,03/15/2016 05:02:12 AM,0 Block of TAYLOR ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",160750292-AM20 +160854115,88,16034006,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:53:30 PM,03/25/2016 10:54:35 PM,03/25/2016 10:59:22 PM,03/25/2016 10:59:31 PM,03/25/2016 11:10:42 PM,03/25/2016 11:13:02 PM,03/25/2016 11:36:10 PM,Code 2 Transport,03/25/2016 11:51:41 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",160854115-88 +112330049,93,11076828,Medical Incident,08/21/2011,08/20/2011,08/21/2011 02:18:41 AM,08/21/2011 02:19:25 AM,08/21/2011 02:19:46 AM,08/21/2011 02:20:20 AM,08/21/2011 02:25:50 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,No Merit,08/21/2011 02:43:39 AM,800 Block of MISSION ST,SF,94103,B03,1,2213,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7842037411779, -122.404517022534)",112330049-93 +133200032,E36,13108598,Structure Fire,11/16/2013,11/15/2013,11/16/2013 03:29:39 AM,11/16/2013 03:29:39 AM,11/16/2013 03:29:46 AM,11/16/2013 03:31:41 AM,11/16/2013 03:34:19 AM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 03:39:44 AM,100 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",133200032-E36 +132960064,B06,13100504,Alarms,10/23/2013,10/23/2013,10/23/2013 08:12:48 AM,10/23/2013 08:14:34 AM,10/23/2013 08:15:04 AM,10/23/2013 08:16:48 AM,10/23/2013 08:19:44 AM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/23/2013 08:23:28 AM,3800 Block of 22ND ST,SF,94114,B06,24,5466,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7546156128988, -122.433291053117)",132960064-B06 +132010270,KM04,13068229,Medical Incident,07/20/2013,07/20/2013,07/20/2013 05:56:40 PM,07/20/2013 05:57:53 PM,07/20/2013 05:58:07 PM,07/20/2013 06:00:50 PM,07/20/2013 06:06:22 PM,07/20/2013 06:21:15 PM,07/20/2013 06:36:27 PM,Code 2 Transport,07/20/2013 07:13:34 PM,900 Block of EDDY ST,SF,94102,B02,5,3262,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",132010270-KM04 +111130010,T09,11037197,Structure Fire,04/23/2011,04/22/2011,04/23/2011 12:50:11 AM,04/23/2011 12:50:11 AM,04/23/2011 12:50:21 AM,04/23/2011 12:52:05 AM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/23/2011 12:53:43 AM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,false,,1,TRUCK,2,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",111130010-T09 +140770145,AM06,14026025,Medical Incident,03/18/2014,03/18/2014,03/18/2014 11:45:06 AM,03/18/2014 11:45:45 AM,03/18/2014 11:46:06 AM,03/18/2014 11:49:06 AM,03/18/2014 11:51:35 AM,03/18/2014 12:07:33 PM,03/18/2014 12:21:41 PM,Code 2 Transport,03/18/2014 12:49:48 PM,DOLORES ST/29TH ST,SAN FRANCISCO,94110,B06,11,5576,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.74383821721, -122.424384864393)",140770145-AM06 +122440344,87,12080812,Structure Fire,08/31/2012,08/31/2012,08/31/2012 09:46:24 PM,08/31/2012 09:47:42 PM,08/31/2012 09:47:50 PM,04/25/2016 01:56:58 PM,08/31/2012 09:59:32 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,08/31/2012 10:09:10 PM,300 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,Fire,1,MEDIC,4,1,3,Tenderloin,"(37.7873084363522, -122.409061356434)",122440344-87 +160801108,53,16031753,Medical Incident,03/20/2016,03/20/2016,03/20/2016 09:46:10 AM,03/20/2016 09:47:03 AM,03/20/2016 09:47:33 AM,03/20/2016 09:47:48 AM,03/20/2016 09:52:47 AM,03/20/2016 10:09:57 AM,03/20/2016 10:29:43 AM,Code 2 Transport,03/20/2016 10:44:11 AM,1400 Block of JACKSON ST,San Francisco,94109,B01,41,1633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7945147745264, -122.418943712595)",160801108-53 +160901471,74,16035684,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:12:58 AM,03/30/2016 11:12:58 AM,03/30/2016 11:13:18 AM,03/30/2016 11:13:29 AM,03/30/2016 11:22:17 AM,03/30/2016 11:34:32 AM,03/30/2016 11:43:16 AM,Code 2 Transport,03/30/2016 12:20:13 PM,EDDY ST/POLK ST,San Francisco,94109,B02,3,3115,2,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",160901471-74 +140860275,55,14029029,Medical Incident,03/27/2014,03/27/2014,03/27/2014 06:36:55 PM,03/27/2014 06:40:33 PM,03/27/2014 06:43:04 PM,03/27/2014 06:43:08 PM,03/27/2014 06:45:04 PM,03/27/2014 07:04:50 PM,03/27/2014 07:22:58 PM,Code 2 Transport,03/27/2014 07:41:48 PM,1100 Block of PHELPS ST,SAN FRANCISCO,94124,B10,25,6455,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7382501983449, -122.392622585703)",140860275-55 +140930390,92,14031447,Medical Incident,04/03/2014,04/03/2014,04/03/2014 11:24:22 PM,04/03/2014 11:27:19 PM,04/03/2014 11:27:43 PM,04/03/2014 11:30:12 PM,04/03/2014 11:31:28 PM,04/03/2014 11:50:54 PM,04/03/2014 11:55:29 PM,Code 2 Transport,04/04/2014 12:27:04 AM,SUTTER ST/VAN NESS AV,SAN FRANCISCO,94109,B04,3,3156,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",140930390-92 +111500100,E11,11049636,Medical Incident,05/30/2011,05/30/2011,05/30/2011 09:29:06 AM,05/30/2011 09:30:12 AM,05/30/2011 09:30:27 AM,05/30/2011 09:32:22 AM,05/30/2011 09:33:30 AM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 09:53:55 AM,0 Block of 28TH ST,SF,94110,B06,11,5577,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7455620349301, -122.423383986336)",111500100-E11 +122760223,E01,12091148,Medical Incident,10/02/2012,10/02/2012,10/02/2012 01:07:39 PM,10/02/2012 01:09:38 PM,10/02/2012 01:10:02 PM,10/02/2012 01:11:34 PM,10/02/2012 01:15:16 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,No Merit,10/02/2012 01:17:47 PM,MASON ST/EDDY ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",122760223-E01 +103650050,66,10116972,Traffic Collision,12/31/2010,12/30/2010,12/31/2010 03:20:48 AM,12/31/2010 03:21:44 AM,12/31/2010 03:22:02 AM,12/31/2010 03:22:19 AM,12/31/2010 03:23:08 AM,12/31/2010 03:47:11 AM,12/31/2010 04:02:28 AM,Code 2 Transport,12/31/2010 05:02:21 AM,MARKET ST/5TH ST,SF,94103,B03,1,1364,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",103650050-66 +112870077,T11,11095061,Medical Incident,10/14/2011,10/13/2011,10/14/2011 05:43:21 AM,10/14/2011 05:45:56 AM,10/14/2011 05:46:15 AM,10/14/2011 05:47:30 AM,10/14/2011 05:52:17 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 05:53:05 AM,VALENCIA ST/MISSION ST,SF,94110,B06,11,5624,3,2,2,false,,1,TRUCK,2,6,9,Bernal Heights,"(37.7453890212933, -122.420019126223)",112870077-T11 +111810253,E36,11059781,Traffic Collision,06/30/2011,06/30/2011,06/30/2011 03:48:41 PM,06/30/2011 03:48:41 PM,06/30/2011 03:49:02 PM,06/30/2011 03:49:55 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 03:58:24 PM,SOUTH VAN NESS AV/12TH ST,SF,94103,B02,36,5116,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",111810253-E36 +160400422,KM03,16015893,Medical Incident,02/09/2016,02/08/2016,02/09/2016 05:53:31 AM,02/09/2016 05:54:10 AM,02/09/2016 05:55:43 AM,02/09/2016 05:56:22 AM,02/09/2016 06:05:01 AM,02/09/2016 06:10:36 AM,02/09/2016 06:45:52 AM,Code 2 Transport,02/09/2016 06:45:56 AM,200 Block of REY ST,San Francisco,94134,B09,44,6252,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7097220017383, -122.412881344927)",160400422-KM03 +133640206,E03,13123613,Alarms,12/30/2013,12/30/2013,12/30/2013 01:49:08 PM,12/30/2013 01:50:21 PM,12/30/2013 01:50:32 PM,04/25/2016 01:48:59 PM,12/30/2013 01:51:23 PM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,Other,12/30/2013 02:03:26 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",133640206-E03 +111550196,E38,11051233,Medical Incident,06/04/2011,06/04/2011,06/04/2011 12:35:51 PM,06/04/2011 12:36:42 PM,06/04/2011 12:37:04 PM,06/04/2011 12:38:03 PM,06/04/2011 12:40:06 PM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,Other,06/04/2011 12:52:31 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",111550196-E38 +160633235,58,16025212,Traffic Collision,03/03/2016,03/03/2016,03/03/2016 07:12:11 PM,03/03/2016 07:12:11 PM,03/03/2016 07:15:53 PM,03/03/2016 07:16:02 PM,03/03/2016 07:28:01 PM,03/03/2016 07:39:55 PM,03/03/2016 07:48:37 PM,Code 2 Transport,03/03/2016 08:20:21 PM,300 Block of BAY SHORE BLVD,San Francisco,94110,B10,42,6374,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",160633235-58 +131410091,AM06,13047703,Medical Incident,05/21/2013,05/21/2013,05/21/2013 08:55:54 AM,05/21/2013 08:57:59 AM,05/21/2013 08:58:56 AM,05/21/2013 08:59:30 AM,05/21/2013 09:06:59 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,No Merit,05/21/2013 09:10:38 AM,3000 Block of HARRISON ST,SF,94110,B06,9,5622,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7491884934163, -122.411638550839)",131410091-AM06 +122660378,E13,12088052,Medical Incident,09/22/2012,09/22/2012,09/22/2012 11:29:19 PM,09/22/2012 11:29:41 PM,09/22/2012 11:32:46 PM,09/22/2012 11:39:06 PM,09/22/2012 11:43:44 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/22/2012 11:43:47 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,1,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.7980134745487, -122.405065483077)",122660378-E13 +113510059,T02,11116373,Structure Fire,12/17/2011,12/16/2011,12/17/2011 02:59:50 AM,12/17/2011 03:03:04 AM,12/17/2011 03:03:15 AM,12/17/2011 03:05:00 AM,12/17/2011 03:07:58 AM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/17/2011 03:09:23 AM,1000 Block of LEAVENWORTH ST,SF,94109,B01,41,1541,3,3,3,true,,1,TRUCK,8,1,3,Nob Hill,"(37.7907389447179, -122.415586290189)",113510059-T02 +121020064,E33,12033724,Medical Incident,04/11/2012,04/10/2012,04/11/2012 06:46:05 AM,04/11/2012 06:48:39 AM,04/11/2012 06:49:08 AM,04/11/2012 06:52:28 AM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 06:54:34 AM,1100 Block of GENEVA AVE,SF,94112,B09,43,6174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.714843547449, -122.437337139152)",121020064-E33 +131220455,T12,13041248,Alarms,05/02/2013,05/02/2013,05/02/2013 09:57:11 PM,05/02/2013 09:57:12 PM,05/02/2013 09:57:30 PM,05/02/2013 09:58:55 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 10:37:10 PM,1700 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,false,Alarm,1,TRUCK,3,5,5,Haight Ashbury,"(37.769506585734, -122.451298930077)",131220455-T12 +110290237,T03,11009590,Medical Incident,01/29/2011,01/29/2011,01/29/2011 04:00:30 PM,01/29/2011 04:01:04 PM,01/29/2011 04:01:30 PM,01/29/2011 04:02:40 PM,01/29/2011 04:04:59 PM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Other,01/29/2011 04:05:15 PM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",110290237-T03 +140380211,E07,14012843,Medical Incident,02/07/2014,02/07/2014,02/07/2014 01:34:47 PM,02/07/2014 01:35:28 PM,02/07/2014 01:38:22 PM,02/07/2014 01:38:22 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 01:38:47 PM,23RD ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7539677697092, -122.416413490249)",140380211-E07 +120220317,B03,12007613,Alarms,01/22/2012,01/22/2012,01/22/2012 10:08:51 PM,01/22/2012 10:12:09 PM,01/22/2012 10:12:32 PM,01/22/2012 10:14:21 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/22/2012 10:22:08 PM,200 Block of CALIFORNIA AVE,TI,94130,B03,48,2931,3,3,3,false,Alarm,1,CHIEF,3,None,6,Treasure Island,"(37.8185164804515, -122.369756931422)",120220317-B03 +112410250,T16,11079577,Alarms,08/29/2011,08/29/2011,08/29/2011 04:57:11 PM,08/29/2011 04:57:43 PM,08/29/2011 04:59:01 PM,08/29/2011 05:00:23 PM,08/29/2011 05:04:44 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 05:07:38 PM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,false,,1,TRUCK,2,7,2,Presidio,"(37.8012720767056, -122.453377012346)",112410250-T16 +132750361,E03,13093577,Medical Incident,10/02/2013,10/02/2013,10/02/2013 10:59:38 PM,10/02/2013 11:00:30 PM,10/02/2013 11:01:39 PM,10/02/2013 11:03:17 PM,10/02/2013 11:04:47 PM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,Other,10/02/2013 11:20:05 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",132750361-E03 +122350103,E08,12077804,Outside Fire,08/22/2012,08/22/2012,08/22/2012 09:43:47 AM,08/22/2012 09:44:17 AM,08/22/2012 09:44:37 AM,08/22/2012 09:45:04 AM,08/22/2012 09:51:06 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Fire,08/22/2012 09:55:48 AM,3RD ST/FOLSOM ST,SF,94107,B03,1,2176,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7837849329145, -122.398930333419)",122350103-E08 +140720264,T16,14024379,Water Rescue,03/13/2014,03/13/2014,03/13/2014 03:36:02 PM,03/13/2014 03:37:31 PM,03/13/2014 03:38:54 PM,03/13/2014 03:41:16 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Fire,03/13/2014 03:43:27 PM,900 Block of MARINE DR,,94129,B99,51,4628,3,E,3,false,Fire,1,TRUCK,11,7,2,Presidio,"(37.8089767888005, -122.47460956271)",140720264-T16 +121150277,B02,12038227,Alarms,04/24/2012,04/24/2012,04/24/2012 06:13:24 PM,04/24/2012 06:14:26 PM,04/24/2012 06:15:43 PM,04/24/2012 06:17:01 PM,04/24/2012 06:19:54 PM,04/25/2016 01:59:01 PM,04/25/2016 01:59:01 PM,Fire,04/24/2012 06:22:57 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",121150277-B02 +121350369,T05,12045052,Structure Fire,05/14/2012,05/14/2012,05/14/2012 10:56:37 PM,05/14/2012 10:56:37 PM,05/14/2012 10:56:44 PM,05/14/2012 10:57:48 PM,05/14/2012 10:59:21 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 10:59:28 PM,FILLMORE ST/GEARY BL,SF,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",121350369-T05 +140960333,88,14032444,Medical Incident,04/06/2014,04/06/2014,04/06/2014 07:59:16 PM,04/06/2014 08:03:51 PM,04/06/2014 08:05:57 PM,04/06/2014 08:06:02 PM,04/06/2014 08:19:15 PM,04/06/2014 08:42:53 PM,04/06/2014 08:53:54 PM,Code 2 Transport,04/06/2014 09:14:03 PM,200 Block of GOLDEN GATE AVE,SAN FRANCISCO,94102,B02,1,1546,,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",140960333-88 +160662924,71,16026512,Medical Incident,03/06/2016,03/06/2016,03/06/2016 08:18:00 PM,03/06/2016 08:19:49 PM,03/06/2016 08:20:03 PM,03/06/2016 08:20:09 PM,03/06/2016 08:33:43 PM,03/06/2016 08:41:05 PM,03/06/2016 08:52:03 PM,Code 2 Transport,03/06/2016 09:22:56 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160662924-71 +122060301,79,12068590,Medical Incident,07/24/2012,07/24/2012,07/24/2012 06:40:18 PM,07/24/2012 06:40:18 PM,07/24/2012 06:40:37 PM,07/24/2012 06:40:50 PM,07/24/2012 06:45:56 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Other,07/24/2012 06:58:28 PM,1900 Block of 42ND AVE,SF,94116,B08,23,7646,3,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7503526146939, -122.500991545432)",122060301-79 +131540015,T07,13052015,Alarms,06/03/2013,06/02/2013,06/03/2013 12:54:30 AM,06/03/2013 12:55:32 AM,06/03/2013 12:56:09 AM,06/03/2013 12:57:36 AM,06/03/2013 12:59:59 AM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/03/2013 01:03:13 AM,2300 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7594297986956, -122.419198310755)",131540015-T07 +120400159,96,12013317,Traffic Collision,02/09/2012,02/09/2012,02/09/2012 12:40:32 PM,02/09/2012 12:40:32 PM,02/09/2012 12:41:53 PM,04/25/2016 02:00:13 PM,02/09/2012 12:45:59 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 12:53:15 PM,15TH ST/SAN BRUNO AV,SF,94103,B02,29,2352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7672000632781, -122.4057076678)",120400159-96 +120330223,78,12010944,Medical Incident,02/02/2012,02/02/2012,02/02/2012 02:44:43 PM,02/02/2012 02:46:16 PM,02/02/2012 02:47:21 PM,04/25/2016 02:00:20 PM,02/02/2012 02:54:29 PM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/02/2012 02:57:08 PM,GRANT AV/SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",120330223-78 +111930056,67,11063621,Medical Incident,07/12/2011,07/11/2011,07/12/2011 06:57:17 AM,07/12/2011 07:00:01 AM,07/12/2011 07:00:59 AM,07/12/2011 07:03:52 AM,07/12/2011 07:12:29 AM,07/12/2011 07:29:55 AM,07/12/2011 08:12:15 AM,Code 2 Transport,07/12/2011 08:49:43 AM,1400 Block of SHAFTER AVE,SF,94124,B10,17,6571,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294048495731, -122.387959857967)",111930056-67 +112240354,E38,11074134,Structure Fire,08/12/2011,08/12/2011,08/12/2011 08:45:22 PM,08/12/2011 08:47:40 PM,08/12/2011 08:47:57 PM,08/12/2011 08:49:24 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 08:52:06 PM,600 Block of LARCH ST,SF,94115,B02,5,3426,3,3,3,false,,1,ENGINE,8,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",112240354-E38 +160063271,55,16002566,Medical Incident,01/06/2016,01/06/2016,01/06/2016 07:43:59 PM,01/06/2016 07:44:18 PM,01/06/2016 07:45:02 PM,01/06/2016 07:46:05 PM,01/06/2016 07:50:50 PM,01/06/2016 08:18:55 PM,01/06/2016 08:28:08 PM,Code 2 Transport,01/06/2016 09:23:56 PM,1200 Block of EDDY ST,San Francisco,94115,B02,5,3366,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7818979587644, -122.428207532186)",160063271-55 +120760102,E22,12025157,Medical Incident,03/16/2012,03/16/2012,03/16/2012 10:31:24 AM,03/16/2012 10:33:38 AM,03/16/2012 10:34:42 AM,03/16/2012 10:35:56 AM,03/16/2012 10:42:21 AM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Other,03/16/2012 10:51:14 AM,IRVING ST/9TH AV,SF,94122,B08,22,7333,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",120760102-E22 +133050136,E33,13103591,Electrical Hazard,11/01/2013,11/01/2013,11/01/2013 09:11:39 AM,11/01/2013 09:12:46 AM,11/01/2013 09:12:57 AM,11/01/2013 09:14:22 AM,11/01/2013 09:17:46 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 09:21:28 AM,1000 Block of PLYMOUTH AVE,SF,94112,B09,33,8465,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209393879121, -122.456206636241)",133050136-E33 +133640186,KM01,13123599,Medical Incident,12/30/2013,12/30/2013,12/30/2013 12:47:01 PM,12/30/2013 12:49:46 PM,12/30/2013 12:50:34 PM,12/30/2013 12:51:00 PM,12/30/2013 01:05:13 PM,12/30/2013 01:20:18 PM,12/30/2013 01:43:21 PM,Code 2 Transport,12/30/2013 02:23:51 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",133640186-KM01 +132560053,89,13086434,Medical Incident,09/13/2013,09/12/2013,09/13/2013 05:14:46 AM,09/13/2013 05:16:59 AM,09/13/2013 05:17:23 AM,09/13/2013 05:18:17 AM,09/13/2013 05:26:23 AM,09/13/2013 05:30:51 AM,09/13/2013 05:38:40 AM,Code 2 Transport,09/13/2013 05:58:49 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132560053-89 +160053903,58,16002211,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:53:57 PM,01/05/2016 11:56:02 PM,01/05/2016 11:56:40 PM,01/05/2016 11:57:10 PM,01/06/2016 12:01:46 AM,01/06/2016 12:25:19 AM,01/06/2016 12:37:57 AM,Code 2 Transport,01/06/2016 01:10:06 AM,2800 Block of FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.751708669465, -122.413936942101)",160053903-58 +130960094,E38,13032112,Structure Fire,04/06/2013,04/05/2013,04/06/2013 07:17:57 AM,04/06/2013 07:18:54 AM,04/06/2013 07:19:08 AM,04/06/2013 07:20:02 AM,04/06/2013 07:22:55 AM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 07:23:50 AM,LARKIN ST/MYRTLE ST,SF,94109,B04,3,1642,3,3,3,false,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7856417088638, -122.417996270411)",130960094-E38 +120140233,T07,12004818,Structure Fire,01/14/2012,01/14/2012,01/14/2012 05:23:09 PM,01/14/2012 05:23:09 PM,01/14/2012 05:23:45 PM,01/14/2012 05:25:24 PM,04/25/2016 02:00:38 PM,04/25/2016 02:00:38 PM,04/25/2016 02:00:38 PM,Other,01/14/2012 05:27:51 PM,16TH ST/FOLSOM ST,SF,94103,B02,7,5237,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7653146395623, -122.415308388717)",120140233-T07 +160352727,62,16013905,Medical Incident,02/04/2016,02/04/2016,02/04/2016 04:55:26 PM,02/04/2016 04:55:53 PM,02/04/2016 04:56:38 PM,02/04/2016 04:56:45 PM,02/04/2016 05:02:29 PM,02/04/2016 05:41:07 PM,02/04/2016 06:08:56 PM,Code 2 Transport,02/04/2016 06:44:34 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160352727-62 +120730010,92,12024085,Medical Incident,03/13/2012,03/12/2012,03/13/2012 12:59:20 AM,03/13/2012 01:01:37 AM,03/13/2012 01:01:57 AM,03/13/2012 01:02:20 AM,03/13/2012 01:16:47 AM,03/13/2012 01:26:03 AM,03/13/2012 01:33:18 AM,Code 2 Transport,03/13/2012 01:59:49 AM,900 Block of HOWARD ST,SF,94103,B03,1,2245,1,1,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7811500329072, -122.405277197305)",120730010-92 +113350041,D2,11110786,Structure Fire,12/01/2011,11/30/2011,12/01/2011 04:30:16 AM,12/01/2011 04:30:51 AM,12/01/2011 04:31:01 AM,12/01/2011 04:33:27 AM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,12/01/2011 04:35:42 AM,3300 Block of 24TH ST,SF,94110,B06,11,5525,3,3,3,false,,2,CHIEF,33,6,9,Mission,"(37.752210060329, -122.41982607432)",113350041-D2 +120620073,AP,12020290,Other,03/02/2012,03/02/2012,03/02/2012 08:01:15 AM,03/02/2012 08:01:15 AM,03/02/2012 08:01:15 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Fire,03/02/2012 08:01:41 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120620073-AP +160201815,60,16008005,Traffic Collision,01/20/2016,01/20/2016,01/20/2016 12:57:17 PM,01/20/2016 12:57:17 PM,01/20/2016 12:57:44 PM,01/20/2016 12:58:13 PM,01/20/2016 01:07:08 PM,01/20/2016 01:25:55 PM,01/20/2016 01:39:13 PM,Other,01/20/2016 02:46:54 PM,POLK ST/OFARRELL ST,San Francisco,94109,B02,3,3115,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",160201815-60 +122610097,KM01,12086163,Medical Incident,09/17/2012,09/17/2012,09/17/2012 09:33:07 AM,09/17/2012 09:35:14 AM,09/17/2012 09:37:56 AM,09/17/2012 09:39:26 AM,09/17/2012 09:44:24 AM,09/17/2012 09:58:06 AM,09/17/2012 10:11:39 AM,Code 2 Transport,09/17/2012 10:40:33 AM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7683208883339, -122.4243245293)",122610097-KM01 +111030079,95,11034053,Traffic Collision,04/13/2011,04/13/2011,04/13/2011 08:53:34 AM,04/13/2011 08:53:34 AM,04/13/2011 08:53:34 AM,04/13/2011 08:57:27 AM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/13/2011 08:59:24 AM,3900 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,true,,1,MEDIC,4,7,1,Inner Richmond,"(37.7812602215298, -122.461609339534)",111030079-95 +123230055,77,12107306,Medical Incident,11/18/2012,11/17/2012,11/18/2012 04:08:27 AM,11/18/2012 04:11:26 AM,11/18/2012 04:11:42 AM,11/18/2012 04:12:35 AM,11/18/2012 04:20:16 AM,11/18/2012 04:36:24 AM,11/18/2012 04:56:32 AM,Code 3 Transport,11/18/2012 05:29:14 AM,400 Block of 43RD AVE,SF,94121,B07,34,7265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7804126251317, -122.504177712633)",123230055-77 +113210341,E18,11106749,Medical Incident,11/17/2011,11/17/2011,11/17/2011 07:54:58 PM,11/17/2011 07:59:11 PM,11/17/2011 07:59:39 PM,11/17/2011 08:00:35 PM,11/17/2011 08:02:52 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/17/2011 08:17:40 PM,1600 Block of 26TH AVE,SF,94122,B08,18,7454,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7567038230665, -122.484238383037)",113210341-E18 +113190285,E38,11106020,Alarms,11/15/2011,11/15/2011,11/15/2011 04:33:16 PM,11/15/2011 04:35:38 PM,11/15/2011 04:35:55 PM,11/15/2011 04:36:58 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 04:41:50 PM,1100 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,false,,1,ENGINE,3,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",113190285-E38 +160920643,53,16036352,Medical Incident,04/01/2016,03/31/2016,04/01/2016 07:37:15 AM,04/01/2016 07:39:36 AM,04/01/2016 07:40:18 AM,04/01/2016 07:40:33 AM,04/01/2016 07:56:53 AM,04/01/2016 08:23:08 AM,04/01/2016 08:56:32 AM,Code 2 Transport,04/01/2016 09:24:44 AM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821103331421, -122.403196436662)",160920643-53 +122080093,E38,12069088,Medical Incident,07/26/2012,07/26/2012,07/26/2012 10:14:52 AM,07/26/2012 10:16:22 AM,07/26/2012 10:16:36 AM,07/26/2012 10:17:09 AM,07/26/2012 10:22:12 AM,04/25/2016 01:57:32 PM,04/25/2016 01:57:32 PM,Other,07/26/2012 10:23:04 AM,2000 Block of BUSH ST,SF,94115,B04,38,3512,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7872816258293, -122.430979800676)",122080093-E38 +140110098,E36,14003774,Medical Incident,01/11/2014,01/11/2014,01/11/2014 09:01:54 AM,01/11/2014 09:03:25 AM,01/11/2014 09:03:42 AM,01/11/2014 09:04:42 AM,01/11/2014 09:06:14 AM,04/25/2016 01:48:46 PM,04/25/2016 01:48:46 PM,Other,01/11/2014 09:12:19 AM,1600 Block of MARKET ST,SF,94103,B02,36,5115,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",140110098-E36 +160300104,AM16,16011622,Medical Incident,01/30/2016,01/29/2016,01/30/2016 12:33:33 AM,01/30/2016 12:33:33 AM,01/30/2016 12:34:09 AM,01/30/2016 12:35:00 AM,01/30/2016 12:42:34 AM,01/30/2016 12:55:50 AM,01/30/2016 01:03:56 AM,Code 2 Transport,01/30/2016 01:16:03 AM,0 Block of DAWSON PL,San Francisco,94108,B01,41,1414,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7933575585872, -122.410908188415)",160300104-AM16 +123640109,89,12121732,Structure Fire,12/29/2012,12/29/2012,12/29/2012 09:37:47 AM,12/29/2012 09:38:31 AM,12/29/2012 09:38:52 AM,12/29/2012 09:39:12 AM,12/29/2012 09:43:39 AM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/29/2012 03:58:01 PM,3200 Block of 23RD ST,SF,94110,B06,7,5511,3,3,3,true,Fire,3,MEDIC,6,6,9,Mission,"(37.7539896835859, -122.416964922852)",123640109-89 +122390125,AM16,12079087,Medical Incident,08/26/2012,08/26/2012,08/26/2012 10:50:02 AM,08/26/2012 10:53:05 AM,08/26/2012 10:53:46 AM,08/26/2012 10:55:32 AM,08/26/2012 11:09:15 AM,08/26/2012 11:09:25 AM,08/26/2012 11:26:39 AM,Code 2 Transport,08/26/2012 12:16:20 PM,4000 Block of 19TH ST,SF,94114,B06,6,5437,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7593350322467, -122.433185899608)",122390125-AM16 +160410630,67,16016343,Medical Incident,02/10/2016,02/09/2016,02/10/2016 07:32:03 AM,02/10/2016 07:33:08 AM,02/10/2016 07:33:29 AM,02/10/2016 07:33:42 AM,02/10/2016 07:38:54 AM,02/10/2016 07:56:33 AM,02/10/2016 08:03:48 AM,Code 2 Transport,02/10/2016 08:30:50 AM,MARKET ST/6TH ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160410630-67 +160313434,52,16012343,Medical Incident,01/31/2016,01/31/2016,01/31/2016 08:50:41 PM,01/31/2016 08:53:43 PM,01/31/2016 08:54:17 PM,01/31/2016 08:54:26 PM,01/31/2016 09:00:40 PM,01/31/2016 09:12:40 PM,01/31/2016 09:15:22 PM,Code 3 Transport,01/31/2016 10:00:58 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7867794977083, -122.450948438002)",160313434-52 +112730376,E11,11090409,Medical Incident,09/30/2011,09/30/2011,09/30/2011 09:27:37 PM,09/30/2011 09:28:39 PM,09/30/2011 09:29:01 PM,09/30/2011 09:29:56 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 09:30:04 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,3,6,9,Mission,"(37.749836317622, -122.418280538883)",112730376-E11 +103640147,B08,10116733,Structure Fire,12/30/2010,12/30/2010,12/30/2010 10:59:07 AM,12/30/2010 10:59:38 AM,12/30/2010 10:59:59 AM,12/30/2010 11:01:15 AM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Fire,12/30/2010 11:08:09 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,,1,CHIEF,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",103640147-B08 +110880315,E03,11029163,Structure Fire,03/29/2011,03/29/2011,03/29/2011 06:43:24 PM,03/29/2011 06:44:03 PM,03/29/2011 06:44:19 PM,03/29/2011 06:44:35 PM,03/29/2011 06:46:05 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 06:58:22 PM,700 Block of JONES ST,SF,94109,B01,3,1463,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7882867855712, -122.413408832931)",110880315-E03 +140110106,E36,14003778,Structure Fire,01/11/2014,01/11/2014,01/11/2014 09:35:29 AM,01/11/2014 09:36:03 AM,01/11/2014 09:36:52 AM,01/11/2014 09:37:28 AM,01/11/2014 09:39:24 AM,04/25/2016 01:48:46 PM,04/25/2016 01:48:46 PM,Other,01/11/2014 09:57:19 AM,400 Block of HAIGHT ST,SF,94117,B02,6,3524,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7722662896588, -122.429628963227)",140110106-E36 +112840344,E06,11094149,Medical Incident,10/11/2011,10/11/2011,10/11/2011 08:00:57 PM,10/11/2011 08:01:23 PM,10/11/2011 08:03:39 PM,10/11/2011 08:04:45 PM,10/11/2011 08:06:29 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,No Merit,10/11/2011 08:14:00 PM,VALENCIA ST/DUBOCE AV,SF,94103,B02,36,5126,3,2,2,true,,1,ENGINE,1,2,9,Mission,"(37.7698676980277, -122.422364819149)",112840344-E06 +132570406,T01,13087101,Alarms,09/14/2013,09/14/2013,09/14/2013 11:03:05 PM,09/14/2013 11:04:19 PM,09/14/2013 11:04:31 PM,09/14/2013 11:06:59 PM,09/14/2013 11:08:04 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 11:16:27 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7854659679151, -122.405582629186)",132570406-T01 +160692545,82,16027545,Medical Incident,03/09/2016,03/09/2016,03/09/2016 04:17:20 PM,03/09/2016 04:18:00 PM,03/09/2016 04:18:25 PM,03/09/2016 04:18:40 PM,03/09/2016 04:26:03 PM,03/09/2016 04:48:04 PM,03/09/2016 05:03:38 PM,Code 2 Transport,03/09/2016 05:44:23 PM,0 Block of TOPEKA AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7345854632984, -122.40017736431)",160692545-82 +160883554,60,16035112,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:33:26 PM,03/28/2016 08:33:49 PM,03/28/2016 08:34:14 PM,03/28/2016 08:34:33 PM,03/28/2016 08:43:31 PM,03/28/2016 09:11:44 PM,03/28/2016 09:44:34 PM,Code 2 Transport,03/28/2016 10:48:52 PM,200 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8853,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",160883554-60 +112000321,T05,11066068,Medical Incident,07/19/2011,07/19/2011,07/19/2011 07:54:21 PM,07/19/2011 07:55:05 PM,07/19/2011 07:56:28 PM,07/19/2011 07:58:00 PM,07/19/2011 07:59:43 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/19/2011 08:13:04 PM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,2,2,false,,1,TRUCK,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",112000321-T05 +120800348,E06,12026708,Alarms,03/20/2012,03/20/2012,03/20/2012 09:59:39 PM,03/20/2012 10:00:12 PM,03/20/2012 10:01:00 PM,03/20/2012 10:02:20 PM,03/20/2012 10:04:17 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/20/2012 10:08:58 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",120800348-E06 +131140259,T11,13038496,Administrative,04/24/2013,04/24/2013,04/24/2013 03:43:25 PM,04/24/2013 03:43:27 PM,04/24/2013 03:44:00 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 03:44:20 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,false,,1,TRUCK,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",131140259-T11 +113050144,T19,11101237,Alarms,11/01/2011,11/01/2011,11/01/2011 10:03:49 AM,11/01/2011 10:04:51 AM,11/01/2011 10:05:08 AM,11/01/2011 10:05:40 AM,11/01/2011 10:09:18 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 10:17:28 AM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,,1,TRUCK,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",113050144-T19 +160903035,60,16035826,Medical Incident,03/30/2016,03/30/2016,03/30/2016 05:41:11 PM,03/30/2016 05:41:11 PM,03/30/2016 05:43:25 PM,03/30/2016 05:43:39 PM,03/30/2016 05:52:54 PM,03/30/2016 06:07:49 PM,03/30/2016 06:34:10 PM,Code 2 Transport,03/30/2016 06:51:56 PM,300 Block of BRAZIL AVE,San Francisco,94112,B09,43,6127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7233114402099, -122.432068293948)",160903035-60 +81340320,B01,8041112,Alarms,05/13/2008,05/13/2008,05/13/2008 07:38:29 PM,05/13/2008 07:39:39 PM,05/13/2008 07:39:43 PM,05/13/2008 07:41:14 PM,05/13/2008 07:41:16 PM,04/25/2016 03:34:14 PM,04/25/2016 03:34:14 PM,Other,05/13/2008 07:43:46 PM,1300 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,,1,CHIEF,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",081340320-B01 +113030402,E10,11100742,Alarms,10/30/2011,10/30/2011,10/30/2011 09:11:11 PM,10/30/2011 09:12:27 PM,10/30/2011 09:12:43 PM,10/30/2011 09:14:08 PM,10/30/2011 09:16:19 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/30/2011 09:22:43 PM,2700 Block of PACIFIC AVE,SF,94115,B04,10,4163,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7926709376612, -122.440510330529)",113030402-E10 +111250241,59,11041411,Medical Incident,05/05/2011,05/05/2011,05/05/2011 03:13:13 PM,05/05/2011 03:14:28 PM,05/05/2011 03:24:24 PM,05/05/2011 03:24:30 PM,04/25/2016 02:04:46 PM,05/05/2011 03:34:58 PM,05/05/2011 03:50:22 PM,Code 2 Transport,05/05/2011 04:17:29 PM,BRYANT ST/DORE ST,SF,94103,B03,29,2333,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7708202419377, -122.409134369165)",111250241-59 +102850059,E14,10090656,Medical Incident,10/12/2010,10/11/2010,10/12/2010 06:15:43 AM,10/12/2010 06:18:10 AM,10/12/2010 06:19:02 AM,10/12/2010 06:20:49 AM,10/12/2010 06:26:11 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 07:27:16 AM,1500 Block of PERSHING DR,PR,94129,B99,51,4617,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.7928087460135, -122.477653715778)",102850059-E14 +160523366,88,16020989,Medical Incident,02/21/2016,02/21/2016,02/21/2016 09:36:09 PM,02/21/2016 09:36:09 PM,02/21/2016 09:36:46 PM,02/21/2016 09:36:55 PM,02/21/2016 09:46:57 PM,02/21/2016 10:05:19 PM,02/21/2016 10:19:59 PM,Code 2 Transport,02/21/2016 11:00:06 PM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",160523366-88 +110590301,E02,11019479,Medical Incident,02/28/2011,02/28/2011,02/28/2011 06:49:23 PM,02/28/2011 06:50:47 PM,02/28/2011 06:50:58 PM,02/28/2011 06:52:25 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,02/28/2011 06:56:30 PM,BEACH ST/JONES ST,SF,94133,B01,28,1521,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8070725139897, -122.417260632444)",110590301-E02 +102650283,E01,10083970,Alarms,09/22/2010,09/22/2010,09/22/2010 07:19:59 PM,09/22/2010 07:21:08 PM,09/22/2010 07:21:19 PM,09/22/2010 07:24:04 PM,09/22/2010 07:24:27 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 07:27:49 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",102650283-E01 +132490348,E39,13084169,Medical Incident,09/06/2013,09/06/2013,09/06/2013 08:32:43 PM,09/06/2013 08:34:59 PM,09/06/2013 08:35:50 PM,09/06/2013 08:37:57 PM,09/06/2013 08:40:41 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/06/2013 09:02:42 PM,200 Block of CRESTA VISTA DR,SF,94127,B09,39,8256,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.735631914703, -122.454282422725)",132490348-E39 +131520177,KM14,13051494,Medical Incident,06/01/2013,06/01/2013,06/01/2013 01:43:06 PM,06/01/2013 01:43:19 PM,06/01/2013 01:44:12 PM,06/01/2013 01:44:49 PM,06/01/2013 01:56:04 PM,06/01/2013 02:07:46 PM,06/01/2013 02:12:30 PM,Code 2 Transport,06/01/2013 02:43:26 PM,1700 Block of WALLER ST,SF,94117,B05,12,4552,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7683921771592, -122.452524251316)",131520177-KM14 +103580049,E11,10114806,Alarms,12/24/2010,12/23/2010,12/24/2010 03:53:10 AM,12/24/2010 03:56:07 AM,12/24/2010 03:56:14 AM,12/24/2010 03:57:31 AM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 03:58:09 AM,100 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,true,,1,ENGINE,3,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",103580049-E11 +111100033,E10,11036197,Medical Incident,04/20/2011,04/19/2011,04/20/2011 02:53:58 AM,04/20/2011 02:56:27 AM,04/20/2011 02:56:43 AM,04/20/2011 02:58:37 AM,04/20/2011 03:01:59 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 03:09:28 AM,1700 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,true,,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.7750328323783, -122.445449213896)",111100033-E10 +123610169,E25,12120793,Alarms,12/26/2012,12/26/2012,12/26/2012 12:26:53 PM,12/26/2012 12:28:33 PM,12/26/2012 12:29:16 PM,12/26/2012 12:30:21 PM,12/26/2012 12:33:21 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 01:06:41 PM,1000 Block of 23RD ST,SF,94107,B10,25,2573,3,3,3,false,Alarm,1,ENGINE,2,10,10,Potrero Hill,"(37.7551872566983, -122.390450030914)",123610169-E25 +110470401,T01,11015714,Alarms,02/16/2011,02/16/2011,02/16/2011 11:30:32 PM,02/16/2011 11:32:20 PM,02/16/2011 11:32:33 PM,02/16/2011 11:34:19 PM,02/16/2011 11:37:51 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 11:38:58 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,TRUCK,2,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",110470401-T01 +160643982,89,16025719,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:33:33 PM,03/04/2016 10:33:33 PM,03/04/2016 10:34:13 PM,03/04/2016 10:34:39 PM,03/04/2016 10:36:30 PM,03/04/2016 11:09:17 PM,03/04/2016 11:27:54 PM,Code 2 Transport,03/05/2016 12:38:57 AM,FULTON ST/SHRADER ST,San Francisco,94118,B05,21,4542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7749707534359, -122.453003329775)",160643982-89 +113480290,E06,11115547,Medical Incident,12/14/2011,12/14/2011,12/14/2011 05:05:28 PM,12/14/2011 05:07:40 PM,12/14/2011 05:08:54 PM,12/14/2011 05:09:56 PM,12/14/2011 05:12:13 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 05:56:08 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,2,2,true,,1,ENGINE,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",113480290-E06 +93550291,E03,9107640,Other,12/21/2009,12/21/2009,12/21/2009 04:45:33 PM,12/21/2009 04:45:47 PM,12/21/2009 04:46:04 PM,12/21/2009 04:47:10 PM,12/21/2009 04:50:50 PM,04/25/2016 03:25:27 PM,04/25/2016 03:25:27 PM,Other,12/21/2009 04:58:56 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",093550291-E03 +160910455,AM24,16035966,Medical Incident,03/31/2016,03/30/2016,03/31/2016 05:55:04 AM,03/31/2016 05:56:24 AM,03/31/2016 06:02:19 AM,03/31/2016 06:02:19 AM,03/31/2016 06:11:21 AM,03/31/2016 06:22:04 AM,03/31/2016 06:44:13 AM,Code 2 Transport,03/31/2016 07:26:24 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160910455-AM24 +112750312,KM14,11091136,Medical Incident,10/02/2011,10/02/2011,10/02/2011 06:57:51 PM,10/02/2011 07:00:00 PM,10/02/2011 07:28:34 PM,10/02/2011 07:29:55 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,04/25/2016 02:02:21 PM,0 Block of HARBOR RD,SF,94124,B10,17,6633,1,1,2,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",112750312-KM14 +160383699,78,16015416,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:03:52 PM,02/07/2016 11:06:16 PM,02/07/2016 11:06:31 PM,02/07/2016 11:06:45 PM,02/07/2016 11:09:52 PM,02/07/2016 11:43:45 PM,02/07/2016 11:49:43 PM,Code 2 Transport,02/08/2016 12:26:17 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",160383699-78 +132940320,B08,13100103,Structure Fire,10/21/2013,10/21/2013,10/21/2013 06:32:33 PM,10/21/2013 06:32:33 PM,10/21/2013 06:32:59 PM,10/21/2013 06:34:21 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,No Merit,10/21/2013 06:46:46 PM,2200 Block of QUINTARA ST,SF,94116,B08,18,7532,3,3,3,false,Alarm,1,CHIEF,6,8,4,Sunset/Parkside,"(37.7479994720724, -122.489468779986)",132940320-B08 +140470070,E36,14015916,Alarms,02/16/2014,02/15/2014,02/16/2014 04:46:16 AM,02/16/2014 04:46:22 AM,02/16/2014 04:46:30 AM,02/16/2014 04:48:48 AM,02/16/2014 04:51:57 AM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 05:00:23 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7741251002903, -122.418810211803)",140470070-E36 +160322439,66,16012653,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:14:10 PM,02/01/2016 04:16:30 PM,02/01/2016 04:17:14 PM,02/01/2016 04:17:24 PM,02/01/2016 04:26:09 PM,02/01/2016 05:03:10 PM,02/01/2016 05:03:11 PM,Code 2 Transport,02/01/2016 05:57:12 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160322439-66 +103620140,E48,10116072,Administrative,12/28/2010,12/28/2010,12/28/2010 11:27:56 AM,12/28/2010 11:27:58 AM,12/28/2010 11:28:21 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Fire,12/28/2010 11:32:34 AM,800 Block of AVENUE D,TI,94130,B03,48,2931,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",103620140-E48 +120240050,E25,12008003,Medical Incident,01/24/2012,01/23/2012,01/24/2012 07:10:12 AM,01/24/2012 07:10:12 AM,01/24/2012 07:10:36 AM,01/24/2012 07:11:46 AM,01/24/2012 07:14:04 AM,04/25/2016 02:00:28 PM,04/25/2016 02:00:28 PM,Other,01/24/2012 07:15:57 AM,EVANS AV/PHELPS ST,SF,94124,B10,25,6457,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7429806182434, -122.388455028839)",120240050-E25 +160503979,61,16020294,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:30:37 PM,02/19/2016 11:31:54 PM,02/19/2016 11:32:03 PM,02/19/2016 11:32:20 PM,02/19/2016 11:36:24 PM,02/19/2016 11:49:25 PM,02/20/2016 12:03:28 AM,Code 2 Transport,02/20/2016 12:36:13 AM,10TH AV/JUDAH ST,San Francisco,94122,B08,22,7345,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7621279806862, -122.467253140185)",160503979-61 +140690245,B02,14023336,Traffic Collision,03/10/2014,03/10/2014,03/10/2014 04:06:39 PM,03/10/2014 04:08:31 PM,03/10/2014 04:09:29 PM,03/10/2014 04:10:43 PM,03/10/2014 04:14:15 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Patient Declined Transport,03/10/2014 04:33:28 PM,GOUGH ST/OAK ST,SAN FRANCISCO,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,CHIEF,4,2,5,Hayes Valley,"(37.7750206954016, -122.42259804367)",140690245-B02 +160860339,78,16034056,Medical Incident,03/26/2016,03/25/2016,03/26/2016 02:36:15 AM,03/26/2016 02:39:42 AM,03/26/2016 02:59:25 AM,03/26/2016 02:59:38 AM,03/26/2016 03:06:30 AM,03/26/2016 03:26:17 AM,03/26/2016 03:36:38 AM,Code 2 Transport,03/26/2016 04:11:45 AM,0 Block of THE EMBARCADERO,San Francisco,94105,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7930284747689, -122.39192878449)",160860339-78 +111180033,84,11038812,Medical Incident,04/28/2011,04/27/2011,04/28/2011 02:52:17 AM,04/28/2011 02:53:42 AM,04/28/2011 02:53:57 AM,04/28/2011 02:54:50 AM,04/28/2011 02:55:37 AM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,No Merit,04/28/2011 03:10:55 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",111180033-84 +140070040,KM07,14002376,Other,01/07/2014,01/06/2014,01/07/2014 03:47:57 AM,01/07/2014 03:50:00 AM,01/07/2014 03:52:40 AM,01/07/2014 03:53:29 AM,01/07/2014 03:57:00 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/07/2014 03:59:20 AM,3000 Block of OCTAVIA ST,SF,94123,B04,16,3336,3,3,3,false,Alarm,1,PRIVATE,3,4,2,Marina,"(37.8002420038498, -122.429312201047)",140070040-KM07 +131040290,77,13035014,Medical Incident,04/14/2013,04/14/2013,04/14/2013 05:41:24 PM,04/14/2013 05:42:42 PM,04/14/2013 05:44:06 PM,04/14/2013 05:44:18 PM,04/14/2013 05:58:44 PM,04/14/2013 06:06:06 PM,04/14/2013 06:20:45 PM,Code 2 Transport,04/14/2013 06:40:36 PM,800 Block of PERU AVE,SF,94134,B09,43,6153,2,2,2,false,Non Life-threatening,1,MEDIC,2,9,9,Excelsior,"(37.7245583608557, -122.423012102367)",131040290-77 +112890186,E07,11095877,Medical Incident,10/16/2011,10/16/2011,10/16/2011 01:06:28 PM,10/16/2011 01:07:30 PM,10/16/2011 01:07:47 PM,10/16/2011 01:08:51 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 01:13:37 PM,SYCAMORE ST/VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7625788323188, -122.421662478293)",112890186-E07 +122680006,KM12,12088384,Medical Incident,09/24/2012,09/23/2012,09/24/2012 12:12:09 AM,09/24/2012 12:14:47 AM,09/24/2012 12:16:34 AM,09/24/2012 12:17:12 AM,09/24/2012 12:25:06 AM,09/24/2012 12:41:26 AM,09/24/2012 12:59:55 AM,Code 2 Transport,09/24/2012 01:40:56 AM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8046368314261, -122.414251200714)",122680006-KM12 +103650007,E36,10116932,Structure Fire,12/31/2010,12/30/2010,12/31/2010 12:29:33 AM,12/31/2010 12:29:33 AM,12/31/2010 12:29:40 AM,12/31/2010 12:30:47 AM,12/31/2010 12:31:56 AM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/31/2010 12:32:28 AM,0 Block of VAN NESS AVE,SF,94102,B02,36,3211,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7752607728259, -122.419431229777)",103650007-E36 +140480323,E05,14016477,Alarms,02/17/2014,02/17/2014,02/17/2014 09:54:29 PM,02/17/2014 09:55:28 PM,02/17/2014 09:55:50 PM,02/17/2014 09:57:09 PM,02/17/2014 09:57:35 PM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,Fire,02/17/2014 10:04:58 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",140480323-E05 +160370664,AM20,16014561,Medical Incident,02/06/2016,02/05/2016,02/06/2016 04:06:53 AM,02/06/2016 04:07:49 AM,02/06/2016 04:08:05 AM,02/06/2016 04:09:29 AM,02/06/2016 04:17:06 AM,02/06/2016 04:29:04 AM,02/06/2016 04:40:58 AM,Code 2 Transport,02/06/2016 05:18:29 AM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",160370664-AM20 +123390025,E05,12112935,Medical Incident,12/04/2012,12/03/2012,12/04/2012 02:33:52 AM,12/04/2012 02:34:12 AM,12/04/2012 02:34:24 AM,12/04/2012 02:36:02 AM,12/04/2012 02:38:04 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 02:46:08 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",123390025-E05 +122220160,KM10,12073563,Medical Incident,08/09/2012,08/09/2012,08/09/2012 11:58:01 AM,08/09/2012 11:59:24 AM,08/09/2012 11:59:54 AM,08/09/2012 12:00:23 PM,08/09/2012 12:05:09 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,Patient Declined Transport,08/09/2012 12:20:14 PM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",122220160-KM10 +160470360,78,16018783,Medical Incident,02/16/2016,02/15/2016,02/16/2016 04:49:16 AM,02/16/2016 04:50:26 AM,02/16/2016 04:50:59 AM,02/16/2016 04:51:07 AM,02/16/2016 04:57:04 AM,02/16/2016 05:10:33 AM,02/16/2016 05:14:47 AM,Code 3 Transport,02/16/2016 05:37:43 AM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696796386185, -122.449942040795)",160470360-78 +111450159,E22,11048158,Medical Incident,05/25/2011,05/25/2011,05/25/2011 01:02:04 PM,05/25/2011 01:02:42 PM,05/25/2011 01:03:20 PM,05/25/2011 01:04:29 PM,05/25/2011 01:05:44 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,05/25/2011 01:14:12 PM,1200 Block of 11TH AVE,SF,94122,B08,22,7345,3,3,3,false,,1,ENGINE,1,7,5,Inner Sunset,"(37.7648895505759, -122.468447974406)",111450159-E22 +123100185,E03,12103121,Structure Fire,11/05/2012,11/05/2012,11/05/2012 12:45:36 PM,11/05/2012 12:45:36 PM,11/05/2012 12:45:48 PM,11/05/2012 12:47:08 PM,11/05/2012 12:49:35 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Fire,11/05/2012 12:50:28 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",123100185-E03 +160101380,KM01,16004024,Medical Incident,01/10/2016,01/10/2016,01/10/2016 12:00:27 PM,01/10/2016 12:01:55 PM,01/10/2016 12:02:30 PM,01/10/2016 12:03:05 PM,01/10/2016 12:16:40 PM,01/10/2016 12:40:17 PM,01/10/2016 01:13:36 PM,Code 3 Transport,01/10/2016 02:20:03 PM,1100 Block of OCEAN AV,San Francisco,94112,B09,15,8472,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7238590119332, -122.455615862027)",160101380-KM01 +120540024,93,12017703,Explosion,02/23/2012,02/22/2012,02/23/2012 02:37:05 AM,02/23/2012 02:37:34 AM,02/23/2012 02:38:02 AM,02/23/2012 02:39:00 AM,02/23/2012 02:41:41 AM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 02:46:52 AM,TURK ST/MASON ST,SF,94103,B03,1,1365,3,3,3,true,Fire,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",120540024-93 +140760100,82,14025645,Medical Incident,03/17/2014,03/17/2014,03/17/2014 09:15:03 AM,03/17/2014 09:16:53 AM,03/17/2014 09:17:30 AM,03/17/2014 09:18:16 AM,03/17/2014 09:34:43 AM,03/17/2014 09:35:11 AM,03/17/2014 09:51:46 AM,Code 2 Transport,03/17/2014 10:03:16 AM,300 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",140760100-82 +160310680,62,16012089,Medical Incident,01/31/2016,01/30/2016,01/31/2016 06:40:07 AM,01/31/2016 06:41:16 AM,01/31/2016 06:42:02 AM,01/31/2016 06:42:14 AM,01/31/2016 06:47:07 AM,01/31/2016 07:13:07 AM,01/31/2016 07:22:42 AM,Code 2 Transport,01/31/2016 08:04:26 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160310680-62 +130330084,93,13011195,Medical Incident,02/02/2013,02/01/2013,02/02/2013 05:49:34 AM,02/02/2013 05:51:35 AM,02/02/2013 06:02:32 AM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,04/25/2016 01:54:30 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130330084-93 +160750146,AM24,16029549,Medical Incident,03/15/2016,03/14/2016,03/15/2016 01:37:24 AM,03/15/2016 01:37:24 AM,03/15/2016 01:38:08 AM,03/15/2016 01:38:50 AM,03/15/2016 01:50:01 AM,03/15/2016 02:01:46 AM,03/15/2016 02:12:10 AM,Code 2 Transport,03/15/2016 02:50:40 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160750146-AM24 +140190002,E01,14006381,Medical Incident,01/19/2014,01/18/2014,01/19/2014 12:03:38 AM,01/19/2014 12:05:17 AM,01/19/2014 12:06:52 AM,01/19/2014 12:08:47 AM,01/19/2014 12:10:42 AM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/19/2014 12:14:17 AM,1000 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",140190002-E01 +110240209,E39,11007887,Medical Incident,01/24/2011,01/24/2011,01/24/2011 12:56:09 PM,01/24/2011 12:57:16 PM,01/24/2011 12:57:34 PM,01/24/2011 12:58:21 PM,01/24/2011 01:01:43 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/24/2011 01:27:18 PM,2200 Block of 16TH AVE,SF,94116,B08,40,7375,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",110240209-E39 +102950107,96,10094019,Medical Incident,10/22/2010,10/22/2010,10/22/2010 09:00:01 AM,10/22/2010 09:01:43 AM,10/22/2010 09:02:30 AM,10/22/2010 09:02:39 AM,10/22/2010 09:08:09 AM,10/22/2010 09:29:05 AM,10/22/2010 09:39:04 AM,Code 2 Transport,10/22/2010 10:02:13 AM,MISSION ST/ITALY AV,SF,94112,B09,43,6125,3,3,3,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7184672268884, -122.439500375084)",102950107-96 +160412805,86,16016560,Medical Incident,02/10/2016,02/10/2016,02/10/2016 05:09:17 PM,02/10/2016 05:14:03 PM,02/10/2016 05:14:49 PM,02/10/2016 05:15:25 PM,02/10/2016 05:19:13 PM,02/10/2016 05:33:09 PM,02/10/2016 05:44:13 PM,Code 2 Transport,02/10/2016 06:38:39 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160412805-86 +112290222,T17,11075702,Structure Fire,08/17/2011,08/17/2011,08/17/2011 03:31:04 PM,08/17/2011 03:31:05 PM,08/17/2011 03:31:11 PM,08/17/2011 03:32:23 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 03:34:49 PM,SAN BRUNO AV/DWIGHT ST,SF,94134,B10,44,6326,3,3,3,false,,1,TRUCK,2,10,9,Portola,"(37.7240356145385, -122.402108391158)",112290222-T17 +113350278,E19,11110986,Medical Incident,12/01/2011,12/01/2011,12/01/2011 06:11:49 PM,12/01/2011 06:12:41 PM,12/01/2011 06:13:02 PM,12/01/2011 06:13:31 PM,12/01/2011 06:16:37 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/01/2011 06:28:33 PM,2900 Block of 25TH AVE,SF,94132,B08,19,8734,3,3,3,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7334328921172, -122.480992659737)",113350278-E19 +112200231,T16,11072733,Structure Fire,08/08/2011,08/08/2011,08/08/2011 04:00:34 PM,08/08/2011 04:00:34 PM,08/08/2011 04:00:39 PM,08/08/2011 04:02:09 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 04:04:37 PM,FRANKLIN ST/UNION ST,SF,94123,B04,16,3233,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.7983435358641, -122.42562550508)",112200231-T16 +160432837,62,16017405,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:43:39 PM,02/12/2016 05:44:31 PM,02/12/2016 05:45:16 PM,02/12/2016 05:47:01 PM,02/12/2016 05:53:16 PM,02/12/2016 06:08:34 PM,02/12/2016 06:39:01 PM,Code 2 Transport,02/12/2016 07:06:27 PM,0 Block of WOODWARD ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7690757517644, -122.420788636046)",160432837-62 +160093050,58,16003761,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:22:18 PM,01/09/2016 07:23:58 PM,01/09/2016 07:24:29 PM,01/09/2016 07:24:37 PM,01/09/2016 07:34:58 PM,01/09/2016 07:47:28 PM,01/09/2016 08:03:03 PM,Code 2 Transport,01/09/2016 08:49:09 PM,100 Block of SADOWA ST,San Francisco,94112,B09,33,8371,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7123626229046, -122.457530975594)",160093050-58 +103550167,E29,10113945,Medical Incident,12/21/2010,12/21/2010,12/21/2010 12:40:34 PM,12/21/2010 12:41:35 PM,12/21/2010 12:43:03 PM,12/21/2010 12:45:55 PM,12/21/2010 12:49:26 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 12:51:36 PM,1200 Block of MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7764301693751, -122.414360138779)",103550167-E29 +160602352,KM11,16023971,Medical Incident,02/29/2016,02/29/2016,02/29/2016 04:01:23 PM,02/29/2016 04:04:45 PM,02/29/2016 04:06:30 PM,02/29/2016 04:09:41 PM,02/29/2016 04:09:41 PM,02/29/2016 04:19:10 PM,02/29/2016 04:29:05 PM,Code 2 Transport,02/29/2016 04:50:18 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160602352-KM11 +160503517,KM03,16020258,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:03:29 PM,02/19/2016 09:03:29 PM,02/19/2016 09:04:06 PM,02/19/2016 09:04:53 PM,02/19/2016 09:07:48 PM,02/19/2016 09:27:25 PM,02/19/2016 09:37:02 PM,Code 2 Transport,02/19/2016 10:11:42 PM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160503517-KM03 +130940236,54,13031500,Medical Incident,04/04/2013,04/04/2013,04/04/2013 03:22:18 PM,04/04/2013 03:22:51 PM,04/04/2013 03:23:27 PM,04/04/2013 03:23:51 PM,04/04/2013 03:33:56 PM,04/04/2013 03:41:04 PM,04/04/2013 04:10:34 PM,Code 2 Transport,04/04/2013 04:33:46 PM,100 Block of BUCKINGHAM WAY,SF,94132,B08,19,8852,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",130940236-54 +140580154,B02,14019537,Alarms,02/27/2014,02/27/2014,02/27/2014 11:44:30 AM,02/27/2014 11:46:16 AM,02/27/2014 11:47:32 AM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,04/25/2016 01:48:00 PM,1800 Block of STEINER ST,SF,94115,B04,38,3621,3,3,3,false,Alarm,1,CHIEF,4,4,5,Pacific Heights,"(37.786352040698, -122.434943373804)",140580154-B02 +133520020,81,13119433,Medical Incident,12/18/2013,12/17/2013,12/18/2013 01:57:50 AM,12/18/2013 01:58:35 AM,12/18/2013 01:59:25 AM,12/18/2013 01:59:43 AM,12/18/2013 02:04:06 AM,12/18/2013 02:19:27 AM,12/18/2013 02:36:46 AM,Code 2 Transport,12/18/2013 03:45:55 AM,700 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",133520020-81 +131410160,AM16,13047753,Medical Incident,05/21/2013,05/21/2013,05/21/2013 11:20:45 AM,05/21/2013 11:22:23 AM,05/21/2013 11:22:37 AM,05/21/2013 11:23:43 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,No Merit,05/21/2013 11:30:03 AM,24TH ST/SHOTWELL ST,SF,94110,B06,7,544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Mission,"(37.752439647175, -122.415172290461)",131410160-AM16 +113000023,E14,11099382,Medical Incident,10/27/2011,10/26/2011,10/27/2011 02:31:50 AM,10/27/2011 02:32:27 AM,10/27/2011 02:33:05 AM,04/25/2016 02:01:57 PM,10/27/2011 02:36:40 AM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 02:58:28 AM,600 Block of 24TH AVE,SF,94121,B07,14,7176,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7772794957607, -122.483526844416)",113000023-E14 +102860249,T01,10091177,Alarms,10/13/2010,10/13/2010,10/13/2010 02:15:55 PM,10/13/2010 02:16:27 PM,10/13/2010 02:16:32 PM,10/13/2010 02:17:55 PM,10/13/2010 02:20:51 PM,04/25/2016 02:08:07 PM,10/13/2010 02:24:52 PM,Other,10/13/2010 02:26:32 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",102860249-T01 +122690259,E19,12088914,Medical Incident,09/25/2012,09/25/2012,09/25/2012 06:30:51 PM,09/25/2012 06:31:34 PM,09/25/2012 06:31:54 PM,09/25/2012 06:32:24 PM,09/25/2012 06:34:39 PM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,09/25/2012 06:54:04 PM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",122690259-E19 +122420118,KM11,12079993,Medical Incident,08/29/2012,08/29/2012,08/29/2012 10:07:35 AM,08/29/2012 10:10:16 AM,08/29/2012 10:10:42 AM,08/29/2012 10:11:14 AM,08/29/2012 10:17:27 AM,08/29/2012 10:53:11 AM,04/25/2016 01:57:01 PM,Code 3 Transport,08/29/2012 12:01:20 PM,900 Block of HYDE ST,SF,94109,B04,3,1561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",122420118-KM11 +131650169,T13,13056037,Traffic Collision,06/14/2013,06/14/2013,06/14/2013 12:19:26 PM,06/14/2013 12:19:56 PM,06/14/2013 12:20:10 PM,06/14/2013 12:21:27 PM,06/14/2013 12:22:53 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 12:25:47 PM,MONTGOMERY ST/CLAY ST,SF,94111,B01,13,1233,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,1,3,Chinatown,"(37.7946662813797, -122.403139296426)",131650169-T13 +160832463,77,16033011,Medical Incident,03/23/2016,03/23/2016,03/23/2016 03:15:42 PM,03/23/2016 03:15:42 PM,03/23/2016 03:16:10 PM,03/23/2016 03:16:14 PM,03/23/2016 03:20:12 PM,03/23/2016 03:31:16 PM,03/23/2016 03:43:13 PM,Code 2 Transport,03/23/2016 04:22:34 PM,ANNIE ST/STEVENSON ST,San Francisco,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.787617863969, -122.402289884758)",160832463-77 +130860136,E16,13028648,Medical Incident,03/27/2013,03/27/2013,03/27/2013 10:39:14 AM,03/27/2013 10:39:14 AM,03/27/2013 10:39:14 AM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/27/2013 10:55:27 AM,STEINER ST/CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.8006087447128, -122.437889454636)",130860136-E16 +131040197,B01,13034930,Vehicle Fire,04/14/2013,04/14/2013,04/14/2013 12:35:02 PM,04/14/2013 12:35:25 PM,04/14/2013 12:35:41 PM,04/14/2013 12:36:52 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 12:42:19 PM,800 Block of MISSION ST,SF,94103,B03,1,2213,3,3,3,false,Fire,1,CHIEF,10,3,6,South of Market,"(37.7835100715421, -122.405395493939)",131040197-B01 +140700050,B02,14023506,Alarms,03/11/2014,03/10/2014,03/11/2014 05:24:41 AM,03/11/2014 05:27:17 AM,03/11/2014 05:28:54 AM,03/11/2014 05:30:46 AM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Fire,03/11/2014 05:53:03 AM,1400 Block of MARKET ST,SAN FRANCISCO,94103,B02,36,2338,3,3,3,true,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7759986613945, -122.418004260708)",140700050-B02 +132780138,KM14,13094456,Medical Incident,10/05/2013,10/05/2013,10/05/2013 10:35:26 AM,10/05/2013 10:36:34 AM,10/05/2013 10:36:56 AM,10/05/2013 10:38:31 AM,10/05/2013 10:48:11 AM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Patient Declined Transport,10/05/2013 11:43:07 AM,600 Block of MASON ST,PR,94108,B99,51,4613,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",132780138-KM14 +122880099,77,12095213,Medical Incident,10/14/2012,10/14/2012,10/14/2012 08:27:26 AM,10/14/2012 08:28:43 AM,10/14/2012 08:29:16 AM,10/14/2012 08:29:44 AM,10/14/2012 08:34:42 AM,10/14/2012 08:56:05 AM,10/14/2012 09:07:34 AM,Code 2 Transport,10/14/2012 09:52:27 AM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",122880099-77 +160500192,88,16019937,Medical Incident,02/19/2016,02/18/2016,02/19/2016 01:53:01 AM,02/19/2016 01:53:01 AM,02/19/2016 01:53:17 AM,02/19/2016 01:53:30 AM,02/19/2016 01:58:16 AM,02/19/2016 02:04:49 AM,02/19/2016 02:16:57 AM,Code 2 Transport,02/19/2016 03:03:11 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160500192-88 +121520240,E17,12050389,Structure Fire,05/31/2012,05/31/2012,05/31/2012 04:17:17 PM,05/31/2012 04:17:38 PM,05/31/2012 04:18:02 PM,05/31/2012 04:19:29 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 04:23:28 PM,3800 Block of 3RD ST,SF,94124,B10,25,6457,3,3,3,true,Fire,1,ENGINE,9,10,10,Bayview Hunters Point,"(37.7422681434531, -122.387936728644)",121520240-E17 +130580059,E01,13019355,Medical Incident,02/27/2013,02/26/2013,02/27/2013 07:36:05 AM,02/27/2013 07:37:18 AM,02/27/2013 07:38:34 AM,02/27/2013 07:39:45 AM,02/27/2013 07:44:23 AM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/27/2013 07:51:29 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",130580059-E01 +132410357,B03,13081448,Alarms,08/29/2013,08/29/2013,08/29/2013 10:30:31 PM,08/29/2013 10:32:38 PM,08/29/2013 10:32:49 PM,08/29/2013 10:33:07 PM,08/29/2013 10:35:34 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Fire,08/29/2013 10:45:30 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,false,Alarm,1,CHIEF,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",132410357-B03 +130720066,85,13023916,Medical Incident,03/13/2013,03/12/2013,03/13/2013 06:58:13 AM,03/13/2013 06:59:44 AM,03/13/2013 07:00:13 AM,03/13/2013 07:00:40 AM,03/13/2013 07:08:01 AM,03/13/2013 07:21:36 AM,03/13/2013 07:47:40 AM,Code 2 Transport,03/13/2013 08:11:50 AM,1700 Block of VALLEJO ST,SF,94123,B04,38,3232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.7964310133306, -122.426082264366)",130720066-85 +140150178,65,14005125,Medical Incident,01/15/2014,01/15/2014,01/15/2014 12:21:38 PM,01/15/2014 12:23:03 PM,01/15/2014 12:23:12 PM,01/15/2014 12:23:27 PM,04/25/2016 01:48:43 PM,01/15/2014 12:43:56 PM,01/15/2014 01:12:27 PM,Code 2 Transport,01/15/2014 01:40:47 PM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",140150178-65 +122940064,E05,12097407,Alarms,10/20/2012,10/19/2012,10/20/2012 03:27:13 AM,10/20/2012 03:28:36 AM,10/20/2012 03:28:43 AM,10/20/2012 03:30:12 AM,10/20/2012 03:31:38 AM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 03:34:53 AM,1300 Block of BUCHANAN ST,SF,94115,B02,5,3431,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7820811831699, -122.429017793799)",122940064-E05 +160560848,55,16022290,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:42:15 AM,02/25/2016 08:43:32 AM,02/25/2016 08:43:57 AM,02/25/2016 08:44:05 AM,02/25/2016 08:53:02 AM,02/25/2016 09:12:44 AM,02/25/2016 09:33:38 AM,Code 2 Transport,02/25/2016 10:03:29 AM,GREAT HY/RIVERA ST,San Francisco,94116,B08,23,7727,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7453914361112, -122.507442625713)",160560848-55 +160501371,KM04,16020053,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:25:09 AM,02/19/2016 11:27:51 AM,02/19/2016 11:30:11 AM,02/19/2016 11:30:11 AM,02/19/2016 11:38:58 AM,02/19/2016 11:49:13 AM,02/19/2016 12:05:04 PM,Code 2 Transport,02/19/2016 12:22:12 PM,700 Block of LYON ST,San Francisco,94115,B05,21,4345,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7776354817134, -122.443345648308)",160501371-KM04 +132030253,E33,13068831,Medical Incident,07/22/2013,07/22/2013,07/22/2013 05:03:02 PM,07/22/2013 05:03:51 PM,07/22/2013 05:04:34 PM,07/22/2013 05:06:26 PM,07/22/2013 05:08:29 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,Other,07/22/2013 05:20:45 PM,LAWRENCE AV/MISSION ST,SF,94112,B09,33,6212,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7094127425805, -122.450883665039)",132030253-E33 +102320211,KM04,10073031,Medical Incident,08/20/2010,08/20/2010,08/20/2010 02:37:24 PM,08/20/2010 02:37:39 PM,08/20/2010 02:38:03 PM,08/20/2010 02:38:43 PM,08/20/2010 02:41:11 PM,08/20/2010 03:02:13 PM,08/20/2010 03:13:15 PM,Code 2 Transport,08/20/2010 03:26:45 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",102320211-KM04 +133280195,T01,13111472,Elevator / Escalator Rescue,11/24/2013,11/24/2013,11/24/2013 01:57:39 PM,11/24/2013 01:58:47 PM,11/24/2013 01:59:00 PM,11/24/2013 02:00:27 PM,11/24/2013 02:02:46 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,No Merit,11/24/2013 02:06:23 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",133280195-T01 +132530317,B02,13085599,Structure Fire,09/10/2013,09/10/2013,09/10/2013 06:54:59 PM,09/10/2013 06:55:23 PM,09/10/2013 06:55:36 PM,09/10/2013 06:56:39 PM,09/10/2013 07:00:13 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 07:04:11 PM,1800 Block of PAGE ST,SF,94117,B05,12,4533,3,3,3,false,Alarm,1,CHIEF,5,5,5,Haight Ashbury,"(37.7703617831201, -122.451220569192)",132530317-B02 +160342703,KM05,16013510,Medical Incident,02/03/2016,02/03/2016,02/03/2016 05:43:27 PM,02/03/2016 05:43:27 PM,02/03/2016 05:45:13 PM,02/03/2016 05:46:21 PM,02/03/2016 06:02:36 PM,02/03/2016 06:45:45 PM,02/03/2016 07:09:23 PM,Code 2 Transport,02/03/2016 07:46:12 PM,200 Block of LELAND AVE,San Francisco,94134,B10,44,6255,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7126284936114, -122.407863164797)",160342703-KM05 +110790087,T01,11025952,Structure Fire,03/20/2011,03/19/2011,03/20/2011 03:58:04 AM,03/20/2011 03:58:04 AM,03/20/2011 03:58:09 AM,03/20/2011 03:59:39 AM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,Other,03/20/2011 04:02:33 AM,900 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",110790087-T01 +160033323,AM16,16001402,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:54:52 PM,01/03/2016 10:55:11 PM,01/03/2016 10:55:35 PM,01/03/2016 10:56:08 PM,01/03/2016 10:59:33 PM,01/03/2016 11:10:14 PM,01/03/2016 11:30:02 PM,Code 2 Transport,01/03/2016 11:59:17 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160033323-AM16 +120440121,60,12014648,Medical Incident,02/13/2012,02/13/2012,02/13/2012 10:22:11 AM,02/13/2012 10:22:36 AM,02/13/2012 10:22:50 AM,02/13/2012 10:25:43 AM,02/13/2012 10:26:54 AM,02/13/2012 10:42:08 AM,02/13/2012 10:48:32 AM,Code 2 Transport,02/13/2012 11:18:44 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",120440121-60 +131130279,83,13038178,Medical Incident,04/23/2013,04/23/2013,04/23/2013 04:58:23 PM,04/23/2013 04:59:27 PM,04/23/2013 05:02:04 PM,04/23/2013 05:02:31 PM,04/23/2013 05:14:12 PM,04/23/2013 06:03:30 PM,04/23/2013 06:03:39 PM,Code 2 Transport,04/23/2013 06:06:40 PM,400 Block of 43RD AVE,SF,94121,B07,34,7265,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7804189692132, -122.504039536203)",131130279-83 +160391131,56,16015552,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:00:27 AM,02/08/2016 10:03:00 AM,02/08/2016 10:03:45 AM,02/08/2016 10:04:06 AM,02/08/2016 10:18:55 AM,02/08/2016 10:37:32 AM,02/08/2016 10:58:33 AM,Code 2 Transport,02/08/2016 11:37:39 AM,400 Block of GONZALEZ DR,San Francisco,94132,B08,19,8481,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7160190677931, -122.477975897762)",160391131-56 +102360165,91,10074298,Medical Incident,08/24/2010,08/24/2010,08/24/2010 12:00:06 PM,08/24/2010 12:00:49 PM,08/24/2010 12:01:10 PM,08/24/2010 12:01:55 PM,08/24/2010 12:07:32 PM,08/24/2010 12:04:05 PM,08/24/2010 12:23:55 PM,Code 2 Transport,08/24/2010 01:04:13 PM,24TH ST/VALENCIA ST,SF,94110,B06,11,5512,3,3,3,true,,1,MEDIC,4,6,9,Mission,"(37.7521036457482, -122.420664802284)",102360165-91 +140890288,E31,14030066,Medical Incident,03/30/2014,03/30/2014,03/30/2014 06:30:06 PM,03/30/2014 06:31:23 PM,03/30/2014 06:32:39 PM,03/30/2014 06:35:08 PM,03/30/2014 06:38:14 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Code 2 Transport,03/30/2014 06:52:06 PM,700 Block of 4TH AVE,SAN FRANCISCO,94118,B07,31,7121,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7746781793453, -122.461745676123)",140890288-E31 +120730082,E13,12024150,Medical Incident,03/13/2012,03/13/2012,03/13/2012 08:08:34 AM,03/13/2012 08:09:15 AM,03/13/2012 08:09:53 AM,03/13/2012 08:13:25 AM,03/13/2012 08:16:44 AM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,Other,03/13/2012 08:52:03 AM,300 Block of LOMBARD ST,SF,94133,B01,28,1264,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.803432762656, -122.407708273853)",120730082-E13 +121940155,66,12064530,Medical Incident,07/12/2012,07/12/2012,07/12/2012 11:17:16 AM,07/12/2012 11:17:46 AM,07/12/2012 11:18:15 AM,07/12/2012 11:18:51 AM,07/12/2012 11:23:55 AM,07/12/2012 11:43:25 AM,07/12/2012 12:27:08 PM,Code 2 Transport,07/12/2012 12:59:31 PM,2100 Block of 26TH AVE,SF,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7473846969477, -122.483447784559)",121940155-66 +121380090,E02,12045790,Medical Incident,05/17/2012,05/17/2012,05/17/2012 08:26:38 AM,05/17/2012 08:27:58 AM,05/17/2012 08:28:25 AM,05/17/2012 08:29:43 AM,05/17/2012 08:30:53 AM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/17/2012 08:47:54 AM,1500 Block of TAYLOR ST,SF,94133,B01,2,1442,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7967890094983, -122.4134381883)",121380090-E02 +120010658,E13,12000571,Alarms,01/01/2012,01/01/2012,01/01/2012 11:24:40 PM,01/01/2012 11:26:51 PM,01/01/2012 11:27:53 PM,01/01/2012 11:29:17 PM,01/01/2012 11:33:29 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 11:38:37 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",120010658-E13 +140170328,82,14005949,Medical Incident,01/17/2014,01/17/2014,01/17/2014 08:02:45 PM,01/17/2014 08:04:05 PM,01/17/2014 08:04:28 PM,01/17/2014 08:04:52 PM,01/17/2014 08:06:33 PM,01/17/2014 08:21:20 PM,01/17/2014 08:28:57 PM,Code 2 Transport,01/17/2014 08:59:06 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",140170328-82 +160062016,79,16002433,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:02:42 PM,01/06/2016 02:04:21 PM,01/06/2016 02:05:54 PM,01/06/2016 02:06:00 PM,01/06/2016 02:08:48 PM,01/06/2016 02:27:48 PM,01/06/2016 02:31:23 PM,Code 2 Transport,01/06/2016 02:59:36 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160062016-79 +102580248,T13,10081539,Administrative,09/15/2010,09/15/2010,09/15/2010 03:11:13 PM,09/15/2010 03:12:09 PM,09/15/2010 03:12:28 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,Other,09/15/2010 03:13:00 PM,500 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,false,,1,TRUCK,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",102580248-T13 +112080158,E15,11068669,Medical Incident,07/27/2011,07/27/2011,07/27/2011 12:16:06 PM,07/27/2011 12:17:12 PM,07/27/2011 12:17:30 PM,04/25/2016 02:03:28 PM,07/27/2011 12:18:28 PM,07/27/2011 12:39:40 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 12:53:51 PM,100 Block of DELANO AVE,SF,94112,B09,15,8276,E,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7258307699304, -122.440937734179)",112080158-E15 +121710296,AM06,12056845,Medical Incident,06/19/2012,06/19/2012,06/19/2012 05:13:09 PM,06/19/2012 05:13:24 PM,06/19/2012 05:13:40 PM,06/19/2012 05:14:05 PM,06/19/2012 05:18:08 PM,06/19/2012 05:42:30 PM,06/19/2012 05:58:29 PM,Code 2 Transport,06/19/2012 06:54:45 PM,7TH ST/NATOMA ST,SF,94103,B03,1,2314,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7784162815142, -122.409938240258)",121710296-AM06 +112750152,RS1,11090977,Medical Incident,10/02/2011,10/02/2011,10/02/2011 11:01:57 AM,10/02/2011 11:02:03 AM,10/02/2011 11:03:11 AM,10/02/2011 11:03:51 AM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,Other,10/02/2011 11:04:13 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,RESCUE SQUAD,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",112750152-RS1 +123130048,T13,12104032,Structure Fire,11/08/2012,11/07/2012,11/08/2012 04:32:56 AM,11/08/2012 04:33:55 AM,11/08/2012 04:34:31 AM,11/08/2012 04:36:04 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/08/2012 04:41:44 AM,0 Block of PERRY ST,SF,94107,B03,8,2175,3,3,3,false,Alarm,1,TRUCK,11,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",123130048-T13 +121660312,E41,12055162,Alarms,06/14/2012,06/14/2012,06/14/2012 06:49:26 PM,06/14/2012 06:49:27 PM,06/14/2012 06:49:54 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 06:53:18 PM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",121660312-E41 +113550185,E07,11117874,Medical Incident,12/21/2011,12/21/2011,12/21/2011 01:15:40 PM,12/21/2011 01:17:00 PM,12/21/2011 01:25:41 PM,12/21/2011 01:26:00 PM,12/21/2011 01:30:52 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 01:42:01 PM,3000 Block of 26TH ST,SF,94110,B06,9,5615,1,1,2,true,,1,ENGINE,1,6,9,Mission,"(37.7495721300101, -122.410215105411)",113550185-E07 +110690275,E13,11022769,Medical Incident,03/10/2011,03/10/2011,03/10/2011 04:31:32 PM,03/10/2011 04:32:24 PM,03/10/2011 04:33:20 PM,03/10/2011 04:34:31 PM,03/10/2011 04:36:32 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 05:08:39 PM,1100 Block of GRANT AVE,SF,94133,B01,2,1311,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7976543484414, -122.406912053867)",110690275-E13 +160834065,AM18,16033167,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:08:57 PM,03/23/2016 10:12:00 PM,03/23/2016 10:12:20 PM,03/23/2016 10:12:55 PM,03/23/2016 10:16:05 PM,03/23/2016 10:26:51 PM,03/23/2016 10:39:33 PM,Code 2 Transport,03/23/2016 11:11:39 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",160834065-AM18 +110890158,B04,11029369,Alarms,03/30/2011,03/30/2011,03/30/2011 11:58:45 AM,03/30/2011 11:59:47 AM,03/30/2011 12:00:10 PM,03/30/2011 12:01:54 PM,03/30/2011 12:07:24 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 12:20:47 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7852173616307, -122.417069611395)",110890158-B04 +132150072,E07,13072510,Medical Incident,08/03/2013,08/02/2013,08/03/2013 04:42:53 AM,08/03/2013 04:43:57 AM,08/03/2013 04:44:29 AM,08/03/2013 04:46:23 AM,08/03/2013 04:48:14 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/03/2013 04:57:21 AM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",132150072-E07 +131660140,E37,13056349,Medical Incident,06/15/2013,06/15/2013,06/15/2013 11:35:45 AM,06/15/2013 11:38:13 AM,06/15/2013 11:38:44 AM,06/15/2013 11:39:39 AM,06/15/2013 11:44:22 AM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Other,06/15/2013 11:52:44 AM,24TH ST/POTRERO AV,SF,94110,B10,37,2554,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",131660140-E37 +111240152,E11,11040940,Medical Incident,05/04/2011,05/04/2011,05/04/2011 11:43:12 AM,05/04/2011 11:45:08 AM,05/04/2011 11:45:30 AM,05/04/2011 11:46:09 AM,05/04/2011 11:47:46 AM,04/25/2016 02:04:47 PM,04/25/2016 02:04:47 PM,Other,05/04/2011 11:52:20 AM,3300 Block of 24TH ST,SF,94110,B06,11,5525,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.752133163479, -122.419282140041)",111240152-E11 +140690167,KM04,14023268,Medical Incident,03/10/2014,03/10/2014,03/10/2014 12:19:27 PM,03/10/2014 12:21:45 PM,03/10/2014 12:22:26 PM,03/10/2014 12:23:16 PM,03/10/2014 12:34:50 PM,03/10/2014 12:54:58 PM,03/10/2014 01:23:48 PM,Code 2 Transport,03/10/2014 02:03:38 PM,0 Block of SAN FELIPE AVE,SAN FRANCISCO,94127,B09,15,8547,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7314054215002, -122.46237385873)",140690167-KM04 +160282192,56,16011129,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:38:01 PM,01/28/2016 02:39:15 PM,01/28/2016 02:39:36 PM,01/28/2016 02:39:59 PM,01/28/2016 02:43:49 PM,01/28/2016 03:09:32 PM,01/28/2016 03:14:23 PM,Code 2 Transport,01/28/2016 03:35:47 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160282192-56 +130080238,B06,13002785,Alarms,01/08/2013,01/08/2013,01/08/2013 02:23:28 PM,01/08/2013 02:24:38 PM,01/08/2013 02:27:31 PM,01/08/2013 02:28:43 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,Other,01/08/2013 02:32:56 PM,3400 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,false,Alarm,1,CHIEF,2,6,8,Mission,"(37.7552079402492, -122.423474114301)",130080238-B06 +102310261,E24,10072764,Structure Fire,08/19/2010,08/19/2010,08/19/2010 04:45:32 PM,08/19/2010 04:46:39 PM,08/19/2010 04:46:48 PM,08/19/2010 04:47:52 PM,08/19/2010 04:50:11 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 04:51:30 PM,100 Block of EUREKA ST,SF,94114,B05,6,5415,3,3,3,true,,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7598883274919, -122.438257853143)",102310261-E24 +130880244,E33,13029420,Medical Incident,03/29/2013,03/29/2013,03/29/2013 02:17:51 PM,03/29/2013 02:17:54 PM,03/29/2013 02:18:11 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 02:19:02 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",130880244-E33 +113420277,58,11113468,Medical Incident,12/08/2011,12/08/2011,12/08/2011 04:53:23 PM,12/08/2011 04:55:09 PM,12/08/2011 04:55:20 PM,12/08/2011 05:00:46 PM,12/08/2011 05:20:47 PM,12/08/2011 05:52:52 PM,12/08/2011 06:16:56 PM,Code 2 Transport,12/08/2011 06:31:05 PM,900 Block of KEARNY ST,SF,94133,B01,13,1246,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",113420277-58 +111100360,E03,11036457,Medical Incident,04/20/2011,04/20/2011,04/20/2011 07:49:20 PM,04/20/2011 07:50:55 PM,04/20/2011 08:03:37 PM,04/20/2011 08:03:59 PM,04/20/2011 08:12:56 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/20/2011 08:27:45 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,1,1,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",111100360-E03 +111000281,B07,11033309,Structure Fire,04/10/2011,04/10/2011,04/10/2011 06:47:39 PM,04/10/2011 06:48:30 PM,04/10/2011 06:48:41 PM,04/10/2011 06:49:43 PM,04/10/2011 06:53:05 PM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 08:02:07 PM,500 Block of 14TH AVE,SF,94118,B07,31,7154,3,3,3,false,,1,CHIEF,4,7,1,Outer Richmond,"(37.7777707230268, -122.47270915749)",111000281-B07 +122620228,68,12086558,Medical Incident,09/18/2012,09/18/2012,09/18/2012 03:45:11 PM,09/18/2012 03:46:40 PM,09/18/2012 03:48:19 PM,09/18/2012 03:48:30 PM,09/18/2012 03:56:55 PM,09/18/2012 04:10:03 PM,09/18/2012 04:39:43 PM,Code 2 Transport,09/18/2012 05:00:43 PM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",122620228-68 +123540277,E01,12118522,Alarms,12/19/2012,12/19/2012,12/19/2012 04:44:12 PM,12/19/2012 04:45:48 PM,12/19/2012 04:46:03 PM,12/19/2012 04:46:10 PM,12/19/2012 04:48:36 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 04:53:41 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",123540277-E01 +122880052,T14,12095169,Structure Fire,10/14/2012,10/13/2012,10/14/2012 03:22:21 AM,10/14/2012 03:22:21 AM,10/14/2012 03:22:31 AM,10/14/2012 03:24:34 AM,10/14/2012 03:26:32 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 03:33:46 AM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",122880052-T14 +123530236,E06,12118139,Alarms,12/18/2012,12/18/2012,12/18/2012 03:03:32 PM,12/18/2012 03:04:47 PM,12/18/2012 03:05:37 PM,12/18/2012 03:07:04 PM,12/18/2012 03:09:42 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,No Merit,12/18/2012 03:14:01 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",123530236-E06 +140800213,96,14027061,Medical Incident,03/21/2014,03/21/2014,03/21/2014 02:20:46 PM,03/21/2014 02:20:49 PM,03/21/2014 02:21:22 PM,03/21/2014 02:21:35 PM,03/21/2014 02:22:25 PM,03/21/2014 03:09:37 PM,03/21/2014 03:35:44 PM,Code 2 Transport,03/21/2014 04:09:26 PM,2300 Block of 24TH AVE,,94116,B08,40,7461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",140800213-96 +140370058,81,14012402,Medical Incident,02/06/2014,02/05/2014,02/06/2014 06:05:00 AM,02/06/2014 06:06:41 AM,02/06/2014 06:21:09 AM,02/06/2014 06:21:09 AM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 06:21:51 AM,300 Block of MISSISSIPPI ST,SF,94107,B10,37,2474,,1,2,true,Non Life-threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7620522738586, -122.394603551997)",140370058-81 +121310185,E05,12043572,Medical Incident,05/10/2012,05/10/2012,05/10/2012 01:04:38 PM,05/10/2012 01:07:37 PM,05/10/2012 01:08:41 PM,05/10/2012 01:11:36 PM,05/10/2012 01:12:33 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 01:13:11 PM,100 Block of TURK ST,SF,94102,B03,1,1456,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",121310185-E05 +122660210,87,12087901,Medical Incident,09/22/2012,09/22/2012,09/22/2012 03:26:47 PM,09/22/2012 03:27:21 PM,09/22/2012 03:27:43 PM,09/22/2012 03:27:48 PM,09/22/2012 03:31:29 PM,09/22/2012 03:54:33 PM,09/22/2012 04:15:38 PM,Code 2 Transport,09/22/2012 04:27:36 PM,100 Block of HENRY ST,SF,94114,B05,6,5212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7665401994282, -122.434434754895)",122660210-87 +130210047,RS1,13007144,Structure Fire,01/21/2013,01/20/2013,01/21/2013 02:53:23 AM,01/21/2013 02:53:56 AM,01/21/2013 02:54:16 AM,01/21/2013 02:55:53 AM,01/21/2013 03:00:26 AM,04/25/2016 01:54:42 PM,04/25/2016 01:54:42 PM,Other,01/21/2013 03:13:27 AM,2200 Block of LARKIN ST,SF,94109,B01,41,1631,3,3,3,false,Fire,1,RESCUE SQUAD,6,1,3,Russian Hill,"(37.7983718644437, -122.420498877705)",130210047-RS1 +120530068,E21,12017410,Medical Incident,02/22/2012,02/22/2012,02/22/2012 08:14:29 AM,02/22/2012 08:16:04 AM,02/22/2012 08:16:37 AM,02/22/2012 08:17:22 AM,02/22/2012 08:21:55 AM,04/25/2016 02:00:01 PM,04/25/2016 02:00:01 PM,Other,02/22/2012 08:39:30 AM,2300 Block of TURK BLVD,SF,94118,B05,21,4564,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7786159124271, -122.447529663824)",120530068-E21 +80940252,T03,8028867,Alarms,04/03/2008,04/03/2008,04/03/2008 01:46:51 PM,04/03/2008 01:48:43 PM,04/03/2008 01:48:53 PM,04/03/2008 01:50:58 PM,04/03/2008 01:52:57 PM,04/25/2016 03:34:50 PM,04/25/2016 03:34:50 PM,Other,04/03/2008 02:02:10 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",080940252-T03 +130480016,E16,13016235,Traffic Collision,02/17/2013,02/16/2013,02/17/2013 12:52:12 AM,02/17/2013 12:52:12 AM,02/17/2013 12:52:22 AM,02/17/2013 12:54:06 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 12:54:17 AM,LOMBARD ST/PIERCE ST,SF,94123,B04,16,3656,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.7994253119327, -122.439336652409)",130480016-E16 +160440084,AM22,16017533,Medical Incident,02/13/2016,02/12/2016,02/13/2016 12:31:09 AM,02/13/2016 12:32:22 AM,02/13/2016 12:32:52 AM,02/13/2016 12:34:57 AM,02/13/2016 12:35:59 AM,02/13/2016 12:54:48 AM,02/13/2016 01:24:00 AM,Code 2 Transport,02/13/2016 01:46:51 AM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7967201327164, -122.411735185833)",160440084-AM22 +111150051,E24,11037844,Medical Incident,04/25/2011,04/24/2011,04/25/2011 05:36:43 AM,04/25/2011 05:37:16 AM,04/25/2011 05:37:26 AM,04/25/2011 05:39:05 AM,04/25/2011 05:40:10 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 06:02:06 AM,4300 Block of 23RD ST,SF,94114,B06,24,5516,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7525087246982, -122.439695354706)",111150051-E24 +160121538,84,16004753,Medical Incident,01/12/2016,01/12/2016,01/12/2016 11:59:59 AM,01/12/2016 12:00:59 PM,01/12/2016 12:01:51 PM,01/12/2016 12:02:04 PM,01/12/2016 12:07:03 PM,01/12/2016 12:28:57 PM,01/12/2016 12:41:37 PM,Code 2 Transport,01/12/2016 01:14:55 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",160121538-84 +160630185,62,16024927,Medical Incident,03/03/2016,03/02/2016,03/03/2016 01:45:16 AM,03/03/2016 01:47:42 AM,03/03/2016 01:48:02 AM,03/03/2016 01:48:11 AM,03/03/2016 01:56:19 AM,03/03/2016 02:26:17 AM,03/03/2016 02:44:10 AM,Code 2 Transport,03/03/2016 03:27:44 AM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160630185-62 +103150008,95,10100851,Medical Incident,11/11/2010,11/10/2010,11/11/2010 12:47:01 AM,11/11/2010 12:47:27 AM,11/11/2010 12:47:38 AM,11/11/2010 12:48:00 AM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,No Merit,11/11/2010 01:02:06 AM,700 Block of FOERSTER ST,SF,94127,B09,15,8247,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7350921935101, -122.448959925357)",103150008-95 +113610118,E03,11119896,Outside Fire,12/27/2011,12/27/2011,12/27/2011 10:26:22 AM,12/27/2011 10:26:36 AM,12/27/2011 10:26:53 AM,12/27/2011 10:28:16 AM,12/27/2011 10:29:57 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Fire,12/27/2011 10:33:05 AM,EDDY ST/HYDE ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",113610118-E03 +112480331,T01,11081926,Citizen Assist / Service Call,09/05/2011,09/05/2011,09/05/2011 08:10:00 PM,09/05/2011 08:13:11 PM,09/05/2011 08:13:58 PM,09/05/2011 08:15:24 PM,09/05/2011 08:18:59 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Fire,09/05/2011 08:25:17 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,TRUCK,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",112480331-T01 +110330362,T03,11010971,Structure Fire,02/02/2011,02/02/2011,02/02/2011 08:18:28 PM,02/02/2011 08:18:29 PM,02/02/2011 08:19:07 PM,04/25/2016 02:06:17 PM,02/02/2011 08:20:25 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 08:22:09 PM,VAN NESS AV/EDDY ST,SF,94109,B02,3,3163,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",110330362-T03 +160172891,76,16006969,Medical Incident,01/17/2016,01/17/2016,01/17/2016 07:27:59 PM,01/17/2016 07:29:21 PM,01/17/2016 07:29:39 PM,01/17/2016 07:30:19 PM,01/17/2016 07:43:31 PM,01/17/2016 07:55:40 PM,01/17/2016 08:14:02 PM,Code 2 Transport,01/17/2016 08:45:37 PM,300 Block of RAYMOND AVE,San Francisco,94134,B09,44,6264,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.714134744642, -122.410232764113)",160172891-76 +160570386,AM22,16022612,Medical Incident,02/26/2016,02/25/2016,02/26/2016 04:37:44 AM,02/26/2016 04:39:41 AM,02/26/2016 04:39:50 AM,02/26/2016 04:40:52 AM,02/26/2016 04:46:47 AM,02/26/2016 05:10:48 AM,02/26/2016 05:23:24 AM,Code 2 Transport,02/26/2016 06:06:26 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160570386-AM22 +132040254,96,13069154,Medical Incident,07/23/2013,07/23/2013,07/23/2013 04:01:05 PM,07/23/2013 04:03:16 PM,07/23/2013 04:05:15 PM,07/23/2013 04:05:59 PM,07/23/2013 04:08:51 PM,07/23/2013 04:28:19 PM,07/23/2013 04:51:22 PM,Code 2 Transport,07/23/2013 05:29:34 PM,700 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7236,2,3,3,true,Non Life-threatening,1,MEDIC,1,7,2,Seacliff,"(37.786082146577, -122.491340887551)",132040254-96 +160651168,61,16025891,Medical Incident,03/05/2016,03/05/2016,03/05/2016 10:26:31 AM,03/05/2016 10:26:31 AM,03/05/2016 10:27:19 AM,03/05/2016 10:27:30 AM,03/05/2016 10:32:21 AM,03/05/2016 10:51:45 AM,03/05/2016 11:02:59 AM,Code 2 Transport,03/05/2016 11:45:31 AM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",160651168-61 +133510049,E01,13119081,Alarms,12/17/2013,12/16/2013,12/17/2013 04:13:50 AM,12/17/2013 04:13:50 AM,12/17/2013 04:13:59 AM,12/17/2013 04:15:30 AM,12/17/2013 04:18:38 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 04:21:51 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",133510049-E01 +102990175,E10,10095452,Medical Incident,10/26/2010,10/26/2010,10/26/2010 11:55:32 AM,10/26/2010 11:56:11 AM,10/26/2010 11:56:48 AM,10/26/2010 11:58:00 AM,10/26/2010 11:59:25 AM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 12:11:21 PM,1700 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,true,,1,ENGINE,1,5,2,Pacific Heights,"(37.7857001632116, -122.440081147256)",102990175-E10 +160903577,86,16035870,Traffic Collision,03/30/2016,03/30/2016,03/30/2016 08:21:20 PM,03/30/2016 08:21:20 PM,03/30/2016 08:22:29 PM,03/30/2016 08:23:05 PM,03/30/2016 08:28:13 PM,03/30/2016 08:38:50 PM,03/30/2016 08:49:35 PM,Code 2 Transport,03/30/2016 09:22:01 PM,MARIPOSA ST/3RD ST,San Francisco,94107,B03,4,2671,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,10,Potrero Hill,"(37.7643218361157, -122.388851284628)",160903577-86 +121600012,67,12052780,Medical Incident,06/08/2012,06/07/2012,06/08/2012 12:49:45 AM,06/08/2012 12:51:25 AM,06/08/2012 12:51:51 AM,06/08/2012 12:51:58 AM,06/08/2012 12:59:11 AM,06/08/2012 01:13:08 AM,06/08/2012 01:24:55 AM,Code 2 Transport,06/08/2012 01:54:27 AM,900 Block of DOUGLASS ST,SF,94114,B06,24,5542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.749051492923, -122.438214092414)",121600012-67 +123480347,T05,12116497,Alarms,12/13/2012,12/13/2012,12/13/2012 08:42:12 PM,12/13/2012 08:43:23 PM,12/13/2012 08:43:56 PM,12/13/2012 08:44:59 PM,12/13/2012 08:49:02 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/13/2012 08:51:39 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",123480347-T05 +160492737,KM12,16019807,Medical Incident,02/18/2016,02/18/2016,02/18/2016 04:56:49 PM,02/18/2016 04:59:56 PM,02/18/2016 05:09:20 PM,02/18/2016 05:10:01 PM,02/18/2016 05:22:44 PM,02/18/2016 05:43:36 PM,02/18/2016 06:00:07 PM,Code 2 Transport,02/18/2016 06:32:18 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7755801285655, -122.413994780042)",160492737-KM12 +160373352,67,16014867,Medical Incident,02/06/2016,02/06/2016,02/06/2016 07:20:02 PM,02/06/2016 07:24:22 PM,02/06/2016 07:24:58 PM,02/06/2016 07:25:05 PM,02/06/2016 07:26:34 PM,02/06/2016 07:31:20 PM,02/06/2016 07:44:53 PM,Code 2 Transport,02/06/2016 08:08:57 PM,GENEVA AV/LONDON ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7160388198833, -122.440255134634)",160373352-67 +110460314,E18,11015343,Medical Incident,02/15/2011,02/15/2011,02/15/2011 08:23:21 PM,02/15/2011 08:24:09 PM,02/15/2011 08:24:22 PM,02/15/2011 08:26:23 PM,02/15/2011 08:29:57 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 08:47:02 PM,2800 Block of 36TH AVE,SF,94116,B08,19,7614,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7344354868423, -122.493307158478)",110460314-E18 +160173125,58,16006995,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:54:24 PM,01/17/2016 08:55:45 PM,01/17/2016 08:55:58 PM,01/17/2016 08:56:13 PM,01/17/2016 09:02:47 PM,01/17/2016 09:15:12 PM,01/17/2016 09:23:24 PM,Code 2 Transport,01/17/2016 10:11:32 PM,300 Block of 11TH ST,San Francisco,94103,B02,36,5112,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7712080387402, -122.413302363173)",160173125-58 +103080313,AM06,10098794,Medical Incident,11/04/2010,11/04/2010,11/04/2010 05:47:21 PM,11/04/2010 05:47:55 PM,11/04/2010 05:48:14 PM,11/04/2010 05:51:18 PM,11/04/2010 05:54:13 PM,11/04/2010 06:18:50 PM,11/04/2010 06:28:21 PM,Other,11/04/2010 07:04:42 PM,300 Block of WILDE AVE,SF,94134,B10,44,6316,E,E,3,false,,1,PRIVATE,2,10,10,Visitacion Valley,"(37.7167969475652, -122.403664399201)",103080313-AM06 +140500224,RS1,14017011,High Angle Rescue,02/19/2014,02/19/2014,02/19/2014 03:43:47 PM,02/19/2014 03:46:37 PM,02/19/2014 03:47:25 PM,02/19/2014 03:49:38 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Fire,02/19/2014 03:57:02 PM,CALL BOX: PALACE OF LEGION OF HONOR,SF,94121,B07,34,7235,3,3,3,false,Fire,1,RESCUE SQUAD,7,7,1,Lincoln Park,"(37.7849108847772, -122.499514565485)",140500224-RS1 +160320135,63,16012404,Medical Incident,02/01/2016,01/31/2016,02/01/2016 01:10:12 AM,02/01/2016 01:11:31 AM,02/01/2016 01:11:57 AM,02/01/2016 01:12:34 AM,02/01/2016 01:17:59 AM,02/01/2016 01:34:12 AM,02/01/2016 01:53:58 AM,Code 2 Transport,02/01/2016 02:24:09 AM,2600 Block of ALEMANY BLVD,San Francisco,94112,B09,33,8345,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7141702563787, -122.44803524465)",160320135-63 +111010156,92,11033496,Medical Incident,04/11/2011,04/11/2011,04/11/2011 11:42:09 AM,04/11/2011 11:42:33 AM,04/11/2011 11:43:38 AM,04/11/2011 11:44:23 AM,04/11/2011 11:49:55 AM,04/11/2011 12:08:51 PM,04/11/2011 12:19:01 PM,Code 2 Transport,04/11/2011 12:54:30 PM,1500 Block of HUDSON AVE,SF,94124,B10,25,6467,3,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.739469087841, -122.387376146293)",111010156-92 +132980238,E32,13101245,Medical Incident,10/25/2013,10/25/2013,10/25/2013 02:58:20 PM,10/25/2013 03:00:08 PM,10/25/2013 03:00:56 PM,10/25/2013 03:02:05 PM,10/25/2013 03:07:12 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 03:07:16 PM,1300 Block of GUERRERO ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7495652201329, -122.422767132358)",132980238-E32 +160240436,AM24,16009417,Medical Incident,01/24/2016,01/23/2016,01/24/2016 03:05:58 AM,01/24/2016 03:06:57 AM,01/24/2016 03:07:09 AM,01/24/2016 03:08:03 AM,01/24/2016 03:12:44 AM,01/24/2016 03:20:14 AM,01/24/2016 03:40:43 AM,Code 2 Transport,01/24/2016 04:01:50 AM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7120147231606, -122.445301042197)",160240436-AM24 +160020865,81,16000666,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:14:12 AM,01/02/2016 09:16:35 AM,01/02/2016 09:16:46 AM,01/02/2016 09:16:54 AM,01/02/2016 09:21:05 AM,01/02/2016 09:38:10 AM,01/02/2016 09:59:23 AM,Code 2 Transport,01/02/2016 10:17:21 AM,1900 Block of 18TH AV,San Francisco,94116,B08,40,7421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.751487490041, -122.475280555989)",160020865-81 +123000138,E21,12099400,Traffic Collision,10/26/2012,10/26/2012,10/26/2012 10:59:34 AM,10/26/2012 11:00:14 AM,10/26/2012 11:00:25 AM,10/26/2012 11:01:37 AM,10/26/2012 11:03:13 AM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,Other,10/26/2012 11:09:55 AM,PAGE ST/DIVISADERO ST,SF,94117,B05,21,4144,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",123000138-E21 +130020204,E01,13000655,Medical Incident,01/02/2013,01/02/2013,01/02/2013 01:13:31 PM,01/02/2013 01:13:54 PM,01/02/2013 01:14:46 PM,01/02/2013 01:15:02 PM,01/02/2013 01:16:59 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 01:24:12 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824540249462, -122.417170993889)",130020204-E01 +121400361,85,12046658,Medical Incident,05/19/2012,05/19/2012,05/19/2012 09:49:45 PM,05/19/2012 09:50:16 PM,05/19/2012 09:50:39 PM,05/19/2012 09:50:46 PM,05/19/2012 09:56:33 PM,05/19/2012 10:15:06 PM,05/19/2012 10:27:54 PM,Code 2 Transport,05/19/2012 11:01:32 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",121400361-85 +111260314,68,11041800,Medical Incident,05/06/2011,05/06/2011,05/06/2011 05:20:57 PM,05/06/2011 05:21:44 PM,05/06/2011 05:23:00 PM,05/06/2011 05:23:21 PM,05/06/2011 05:33:44 PM,05/06/2011 05:41:22 PM,05/06/2011 06:00:57 PM,Code 2 Transport,05/06/2011 05:29:48 PM,600 Block of 5TH ST,SF,94107,B03,8,2236,3,2,2,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7755979963185, -122.39763695321)",111260314-68 +112920167,E36,11096875,Medical Incident,10/19/2011,10/19/2011,10/19/2011 12:11:16 PM,10/19/2011 12:13:08 PM,10/19/2011 12:13:49 PM,10/19/2011 12:14:33 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/19/2011 12:15:39 PM,FULTON ST/HYDE ST,SF,94102,B02,36,1552,3,2,2,false,,1,ENGINE,2,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",112920167-E36 +122710278,RC1,12089521,Medical Incident,09/27/2012,09/27/2012,09/27/2012 07:35:22 PM,09/27/2012 07:36:59 PM,09/27/2012 07:37:31 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/27/2012 07:53:51 PM,600 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7948751336497, -122.403112031242)",122710278-RC1 +110010472,RA48,11000404,Traffic Collision,01/01/2011,01/01/2011,01/01/2011 05:38:13 PM,01/01/2011 05:39:03 PM,01/01/2011 05:42:28 PM,01/01/2011 05:45:53 PM,04/25/2016 02:06:48 PM,01/01/2011 06:12:35 PM,01/01/2011 06:59:50 PM,Code 2 Transport,01/01/2011 07:22:50 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,,1,MEDIC,6,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",110010472-RA48 +103180063,E01,10101833,Medical Incident,11/14/2010,11/13/2010,11/14/2010 03:33:35 AM,11/14/2010 03:35:32 AM,11/14/2010 03:36:06 AM,11/14/2010 03:38:36 AM,11/14/2010 03:40:49 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 03:43:47 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7786769584105, -122.408601057595)",103180063-E01 +160103060,KM01,16004167,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:02:25 PM,01/10/2016 08:03:40 PM,01/10/2016 08:03:50 PM,01/10/2016 08:04:26 PM,01/10/2016 08:07:34 PM,01/10/2016 08:33:53 PM,01/10/2016 08:53:25 PM,Code 3 Transport,01/10/2016 09:30:50 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160103060-KM01 +111160028,E01,11038156,Structure Fire,04/26/2011,04/25/2011,04/26/2011 02:18:16 AM,04/26/2011 02:18:16 AM,04/26/2011 02:18:24 AM,04/26/2011 02:19:45 AM,04/26/2011 02:21:49 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/26/2011 02:22:17 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",111160028-E01 +130990113,89,13033192,Medical Incident,04/09/2013,04/09/2013,04/09/2013 09:49:18 AM,04/09/2013 09:49:36 AM,04/09/2013 09:50:27 AM,04/09/2013 09:50:38 AM,04/09/2013 09:53:14 AM,04/09/2013 10:08:56 AM,04/09/2013 10:30:14 AM,Code 2 Transport,04/09/2013 10:54:54 AM,2100 Block of 24TH AVE,SF,94116,B08,40,7444,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7474792137801, -122.481306264779)",130990113-89 +140440418,B09,14015152,Structure Fire,02/13/2014,02/13/2014,02/13/2014 10:39:34 PM,02/13/2014 10:39:55 PM,02/13/2014 10:40:15 PM,02/13/2014 10:41:20 PM,02/13/2014 10:46:32 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 01:19:36 AM,300 Block of JOOST AVE,SF,94131,B09,26,8216,,3,3,false,Fire,1,CHIEF,5,9,7,West of Twin Peaks,"(37.7322969505718, -122.443170322846)",140440418-B09 +132440206,85,13082367,Medical Incident,09/01/2013,09/01/2013,09/01/2013 03:04:26 PM,09/01/2013 03:05:15 PM,09/01/2013 03:05:49 PM,09/01/2013 03:06:04 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 03:09:53 PM,0 Block of 7TH ST,SF,94103,B02,1,2315,E,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",132440206-85 +160240235,63,16009401,Medical Incident,01/24/2016,01/23/2016,01/24/2016 01:22:46 AM,01/24/2016 01:25:13 AM,01/24/2016 01:25:36 AM,01/24/2016 01:25:57 AM,01/24/2016 01:32:52 AM,01/24/2016 02:00:35 AM,01/24/2016 02:00:38 AM,Code 2 Transport,01/24/2016 02:40:35 AM,700 Block of 33RD AVE,San Francisco,94121,B07,14,7244,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7749808628388, -122.49290444364)",160240235-63 +122260145,T13,12074888,Structure Fire,08/13/2012,08/13/2012,08/13/2012 10:47:05 AM,08/13/2012 10:47:05 AM,08/13/2012 10:47:22 AM,08/13/2012 10:48:28 AM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 10:51:12 AM,KEARNY ST/PACIFIC AV,SF,94133,B01,13,1246,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7970898479827, -122.405318332195)",122260145-T13 +160583286,79,16023275,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:01:59 PM,02/27/2016 08:04:25 PM,02/27/2016 08:05:16 PM,02/27/2016 08:05:22 PM,02/27/2016 08:23:56 PM,02/27/2016 08:50:43 PM,02/27/2016 09:14:28 PM,Code 2 Transport,02/27/2016 09:58:22 PM,700 Block of LONDON ST,San Francisco,94112,B09,43,6125,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7175106231913, -122.439146338541)",160583286-79 +121700022,E21,12056290,Medical Incident,06/18/2012,06/17/2012,06/18/2012 02:40:47 AM,06/18/2012 02:41:31 AM,06/18/2012 02:41:45 AM,06/18/2012 02:43:44 AM,06/18/2012 02:46:16 AM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/18/2012 02:48:50 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",121700022-E21 +123530066,E29,12118012,Traffic Collision,12/18/2012,12/17/2012,12/18/2012 07:32:56 AM,12/18/2012 07:33:24 AM,12/18/2012 07:33:38 AM,04/25/2016 01:55:15 PM,12/18/2012 07:37:44 AM,12/18/2012 07:50:42 AM,04/25/2016 01:55:15 PM,Other,12/18/2012 08:08:08 AM,FOLSOM ST/8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",123530066-E29 +160870382,53,16034443,Medical Incident,03/27/2016,03/26/2016,03/27/2016 02:24:05 AM,03/27/2016 02:24:42 AM,03/27/2016 02:25:17 AM,03/27/2016 02:25:25 AM,03/27/2016 02:29:19 AM,03/27/2016 02:37:13 AM,03/27/2016 03:04:46 AM,Code 2 Transport,03/27/2016 03:29:37 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160870382-53 +160800646,74,16031708,Medical Incident,03/20/2016,03/19/2016,03/20/2016 05:33:51 AM,03/20/2016 05:34:31 AM,03/20/2016 05:35:17 AM,03/20/2016 05:35:42 AM,03/20/2016 05:51:51 AM,03/20/2016 05:51:56 AM,03/20/2016 06:13:53 AM,Code 2 Transport,03/20/2016 06:49:30 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160800646-74 +131650138,E33,13056012,Outside Fire,06/14/2013,06/14/2013,06/14/2013 10:36:07 AM,06/14/2013 10:41:52 AM,06/14/2013 10:42:19 AM,06/14/2013 10:43:39 AM,06/14/2013 10:46:17 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 10:46:52 AM,FARRAGUT AV/ALEMANY BL,SF,94112,B09,33,8353,3,3,3,true,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.712055692394, -122.451954774014)",131650138-E33 +160313327,KM03,16012329,Medical Incident,01/31/2016,01/31/2016,01/31/2016 08:15:02 PM,01/31/2016 08:19:21 PM,01/31/2016 08:20:11 PM,01/31/2016 08:20:37 PM,01/31/2016 08:29:12 PM,01/31/2016 08:35:32 PM,01/31/2016 08:48:25 PM,Code 2 Transport,01/31/2016 09:39:04 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160313327-KM03 +160380045,57,16015013,Medical Incident,02/07/2016,02/06/2016,02/07/2016 12:13:14 AM,02/07/2016 12:13:34 AM,02/07/2016 12:14:33 AM,02/07/2016 12:14:40 AM,02/07/2016 12:23:00 AM,02/07/2016 12:39:18 AM,02/07/2016 12:45:12 AM,Code 2 Transport,02/07/2016 01:54:23 AM,1100 Block of SACRAMENTO ST,San Francisco,94108,B01,41,1414,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.792652645298, -122.412300829421)",160380045-57 +131060041,KM15,13035517,Medical Incident,04/16/2013,04/15/2013,04/16/2013 04:33:47 AM,04/16/2013 04:35:43 AM,04/16/2013 04:36:01 AM,04/16/2013 04:37:39 AM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/16/2013 04:37:59 AM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,North Beach,"(37.804809171271, -122.406795529826)",131060041-KM15 +133480328,78,13118234,Medical Incident,12/14/2013,12/14/2013,12/14/2013 06:48:41 PM,12/14/2013 06:50:26 PM,12/14/2013 06:51:40 PM,12/14/2013 06:51:47 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Patient Declined Transport,12/14/2013 06:56:55 PM,1700 Block of POLK ST,SF,94109,B04,41,3124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7928292738954, -122.421073088422)",133480328-78 +123130203,E08,12104152,Medical Incident,11/08/2012,11/08/2012,11/08/2012 01:05:30 PM,11/08/2012 01:06:28 PM,11/08/2012 01:07:01 PM,11/08/2012 01:10:09 PM,11/08/2012 01:12:53 PM,11/08/2012 01:30:29 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 02:01:09 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123130203-E08 +130400235,KM12,13013710,Medical Incident,02/09/2013,02/09/2013,02/09/2013 03:26:56 PM,02/09/2013 03:29:02 PM,02/09/2013 03:29:13 PM,02/09/2013 03:30:02 PM,02/09/2013 03:34:35 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 03:41:03 PM,1100 Block of SHOTWELL ST,SF,94110,B06,7,5614,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7500332610602, -122.415006766747)",130400235-KM12 +160441480,KM06,16017677,Medical Incident,02/13/2016,02/13/2016,02/13/2016 12:09:41 PM,02/13/2016 12:12:00 PM,02/13/2016 12:14:18 PM,02/13/2016 12:17:54 PM,02/13/2016 12:24:10 PM,02/13/2016 12:40:48 PM,02/13/2016 12:51:04 PM,Code 2 Transport,02/13/2016 01:21:09 PM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",160441480-KM06 +160291921,KM09,16011460,Medical Incident,01/29/2016,01/29/2016,01/29/2016 01:55:35 PM,01/29/2016 01:57:07 PM,01/29/2016 01:58:30 PM,01/29/2016 01:59:12 PM,01/29/2016 02:14:48 PM,01/29/2016 02:37:28 PM,01/29/2016 03:16:13 PM,Code 2 Transport,01/29/2016 03:50:28 PM,900 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160291921-KM09 +160882199,59,16034997,Medical Incident,03/28/2016,03/28/2016,03/28/2016 02:45:11 PM,03/28/2016 02:45:11 PM,03/28/2016 02:45:35 PM,03/28/2016 02:45:59 PM,03/28/2016 02:54:10 PM,03/28/2016 03:18:26 PM,03/28/2016 03:30:32 PM,Code 2 Transport,03/28/2016 04:10:19 PM,1100 Block of OCEAN AVE,San Francisco,94112,B09,15,8472,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7238590120011, -122.455615861538)",160882199-59 +112240065,E10,11073886,Medical Incident,08/12/2011,08/11/2011,08/12/2011 06:29:58 AM,08/12/2011 06:30:57 AM,08/12/2011 06:31:09 AM,08/12/2011 06:33:01 AM,08/12/2011 06:35:36 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,08/12/2011 06:46:47 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,2,2,2,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",112240065-E10 +130400126,E13,13013611,Medical Incident,02/09/2013,02/09/2013,02/09/2013 09:42:04 AM,02/09/2013 09:43:41 AM,02/09/2013 09:44:08 AM,02/09/2013 09:44:31 AM,02/09/2013 09:47:58 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 10:08:24 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",130400126-E13 +130820334,85,13027583,Medical Incident,03/23/2013,03/23/2013,03/23/2013 09:55:58 PM,03/23/2013 09:56:05 PM,03/23/2013 09:56:24 PM,03/23/2013 09:57:24 PM,03/23/2013 10:02:47 PM,03/23/2013 10:14:09 PM,03/23/2013 10:22:22 PM,Code 2 Transport,03/23/2013 10:44:54 PM,300 Block of GEARY ST,SF,94102,B01,3,1411,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7871999750116, -122.409039390561)",130820334-85 +122860201,E36,12094617,Medical Incident,10/12/2012,10/12/2012,10/12/2012 03:12:12 PM,10/12/2012 03:12:30 PM,10/12/2012 03:12:40 PM,10/12/2012 03:13:36 PM,10/12/2012 03:16:05 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 03:22:40 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",122860201-E36 +113490075,T08,11115729,Traffic Collision,12/15/2011,12/15/2011,12/15/2011 09:07:02 AM,12/15/2011 09:08:11 AM,12/15/2011 09:08:32 AM,12/15/2011 09:09:34 AM,12/15/2011 09:11:16 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/15/2011 10:20:53 AM,3RD ST/KING ST,SF,94107,B03,8,2154,3,3,3,false,,1,TRUCK,2,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",113490075-T08 +140030263,RC3,14001105,Medical Incident,01/03/2014,01/03/2014,01/03/2014 01:59:25 PM,01/03/2014 02:02:04 PM,01/03/2014 02:23:08 PM,01/03/2014 02:23:28 PM,01/03/2014 02:32:55 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,Other,01/03/2014 02:51:22 PM,0 Block of LEO ST,SF,94112,B09,43,6121,,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7226612439004, -122.437128783144)",140030263-RC3 +113240145,KM11,11107581,Structure Fire,11/20/2011,11/20/2011,11/20/2011 11:15:45 AM,11/20/2011 11:16:39 AM,11/20/2011 11:18:04 AM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 11:19:34 AM,0 Block of AGUA WAY,SF,94127,B09,39,8651,3,3,3,false,,1,PRIVATE,11,9,7,West of Twin Peaks,"(37.742207178028, -122.451868140233)",113240145-KM11 +140980031,79,14032922,Medical Incident,04/08/2014,04/07/2014,04/08/2014 02:13:41 AM,04/08/2014 02:14:43 AM,04/08/2014 02:15:09 AM,04/08/2014 02:17:47 AM,04/25/2016 01:47:20 PM,04/08/2014 02:36:36 AM,04/08/2014 02:45:29 AM,Code 2 Transport,04/08/2014 03:20:46 AM,0 Block of REUEL CT,SAN FRANCISCO,94124,B10,25,652,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",140980031-79 +130750172,E03,13025022,Medical Incident,03/16/2013,03/16/2013,03/16/2013 01:22:34 PM,03/16/2013 01:22:56 PM,03/16/2013 01:23:05 PM,03/16/2013 01:23:53 PM,03/16/2013 01:25:23 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 01:30:12 PM,900 Block of POLK ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",130750172-E03 +160532012,83,16021247,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:42:15 PM,02/22/2016 02:46:18 PM,02/22/2016 02:47:21 PM,02/22/2016 02:47:56 PM,02/22/2016 03:27:02 PM,02/22/2016 03:44:17 PM,02/22/2016 04:04:07 PM,Code 2 Transport,02/22/2016 04:48:05 PM,900 Block of RUTLAND ST,San Francisco,94134,B09,44,6256,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7106642055694, -122.408348294705)",160532012-83 +160123409,86,16004934,Medical Incident,01/12/2016,01/12/2016,01/12/2016 08:22:19 PM,01/12/2016 08:22:19 PM,01/12/2016 08:22:40 PM,01/12/2016 08:22:56 PM,01/12/2016 08:43:08 PM,01/12/2016 09:09:46 PM,01/12/2016 09:16:33 PM,Code 2 Transport,01/12/2016 10:24:36 PM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",160123409-86 +160441452,65,16017674,Traffic Collision,02/13/2016,02/13/2016,02/13/2016 12:02:29 PM,02/13/2016 12:03:57 PM,02/13/2016 12:25:47 PM,02/13/2016 12:25:47 PM,02/13/2016 12:31:19 PM,02/13/2016 12:52:16 PM,02/13/2016 01:29:23 PM,Code 2 Transport,02/13/2016 02:42:00 PM,JOHN F KENNEDY DR/GREAT HY,San Francisco,94122,B07,34,7311,2,2,2,true,Non Life-threatening,1,MEDIC,4,7,1,Golden Gate Park,"(37.7704356758824, -122.510925945877)",160441452-65 +133300003,E01,13111918,Medical Incident,11/26/2013,11/25/2013,11/26/2013 12:10:32 AM,11/26/2013 12:10:50 AM,11/26/2013 12:12:00 AM,11/26/2013 12:14:00 AM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Other,11/26/2013 12:15:09 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",133300003-E01 +140450189,81,14015318,Medical Incident,02/14/2014,02/14/2014,02/14/2014 01:31:21 PM,02/14/2014 01:32:21 PM,02/14/2014 01:33:05 PM,02/14/2014 01:35:58 PM,02/14/2014 01:39:02 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Patient Declined Transport,02/14/2014 02:10:47 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",140450189-81 +112580237,KM05,11085086,Medical Incident,09/15/2011,09/15/2011,09/15/2011 03:19:54 PM,09/15/2011 03:22:07 PM,09/15/2011 03:22:27 PM,09/15/2011 03:23:03 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 03:27:11 PM,16TH ST/BRYANT ST,SF,94110,B02,29,5241,3,3,3,false,,1,PRIVATE,2,2,10,Mission,"(37.7656058395036, -122.410486689194)",112580237-KM05 +160740343,70,16029201,Medical Incident,03/14/2016,03/13/2016,03/14/2016 05:07:02 AM,03/14/2016 05:08:46 AM,03/14/2016 05:09:03 AM,03/14/2016 05:09:15 AM,03/14/2016 05:20:59 AM,03/14/2016 05:30:44 AM,03/14/2016 05:52:38 AM,Code 2 Transport,03/14/2016 06:13:38 AM,300 Block of BRENTWOOD AVE,San Francisco,94127,B09,39,8541,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7325430394649, -122.461133345081)",160740343-70 +160711086,89,16028171,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:10:57 AM,03/11/2016 10:11:52 AM,03/11/2016 10:12:56 AM,03/11/2016 10:13:26 AM,03/11/2016 10:18:23 AM,03/11/2016 10:39:33 AM,03/11/2016 10:46:43 AM,Code 2 Transport,03/11/2016 11:30:54 AM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",160711086-89 +140900330,E08,14030427,Outside Fire,03/31/2014,03/31/2014,03/31/2014 09:30:41 PM,03/31/2014 09:30:41 PM,03/31/2014 09:31:31 PM,03/31/2014 09:32:58 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,Fire,03/31/2014 09:38:52 PM,700 Block of THE EMBARCADERO,,94111,B03,8,942,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.8023783666633, -122.400706378791)",140900330-E08 +160351679,59,16013818,Medical Incident,02/04/2016,02/04/2016,02/04/2016 12:21:10 PM,02/04/2016 12:23:29 PM,02/04/2016 12:25:34 PM,02/04/2016 12:25:47 PM,02/04/2016 01:28:59 PM,02/04/2016 01:29:03 PM,02/04/2016 01:29:03 PM,Code 2 Transport,02/04/2016 02:12:53 PM,600 Block of 32ND AVE,San Francisco,94121,B07,14,724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",160351679-59 +110310031,81,11010048,Medical Incident,01/31/2011,01/30/2011,01/31/2011 02:59:44 AM,01/31/2011 03:01:07 AM,01/31/2011 03:02:12 AM,01/31/2011 03:02:27 AM,01/31/2011 03:14:41 AM,01/31/2011 03:40:07 AM,01/31/2011 04:02:10 AM,Code 2 Transport,01/31/2011 04:36:03 AM,200 Block of SANTA ANA AVE,SF,94127,B09,39,8552,2,2,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7324668923825, -122.467880983272)",110310031-81 +112930042,D2,11097094,Structure Fire,10/20/2011,10/19/2011,10/20/2011 05:26:12 AM,10/20/2011 05:27:48 AM,10/20/2011 05:28:18 AM,10/20/2011 05:29:52 AM,10/20/2011 05:34:12 AM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 05:37:40 AM,GOLDEN GATE AV/FILLMORE ST,SF,94115,B05,5,3516,3,3,3,false,,1,CHIEF,8,5,5,Western Addition,"(37.7795641471317, -122.431951803212)",112930042-D2 +131780347,E08,13060576,Structure Fire,06/27/2013,06/27/2013,06/27/2013 07:54:18 PM,06/27/2013 07:55:47 PM,06/27/2013 07:56:03 PM,06/27/2013 07:57:26 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Other,06/27/2013 08:03:10 PM,600 Block of 19TH ST,SF,94107,B10,37,2471,3,3,3,true,Alarm,1,ENGINE,9,10,10,Potrero Hill,"(37.7617933173608, -122.389151124155)",131780347-E08 +111710119,T01,11056327,Structure Fire,06/20/2011,06/20/2011,06/20/2011 10:21:54 AM,06/20/2011 10:21:55 AM,06/20/2011 10:22:15 AM,06/20/2011 10:23:18 AM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,Fire,06/20/2011 10:25:40 AM,10TH ST/HOWARD ST,SF,94103,B02,36,2342,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7740433259374, -122.414367692219)",111710119-T01 +160743452,60,16029459,Medical Incident,03/14/2016,03/14/2016,03/14/2016 07:44:56 PM,03/14/2016 07:46:49 PM,03/14/2016 07:48:15 PM,03/14/2016 07:49:40 PM,03/14/2016 08:01:29 PM,03/14/2016 08:39:35 PM,03/14/2016 08:52:21 PM,Code 2 Transport,03/14/2016 09:27:46 PM,0 Block of FLORENTINE AVE,San Francisco,94112,B09,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7126176750656, -122.443700918136)",160743452-60 +121930040,B04,12064141,Alarms,07/11/2012,07/10/2012,07/11/2012 04:00:06 AM,07/11/2012 04:01:14 AM,07/11/2012 04:01:24 AM,07/11/2012 04:03:31 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 04:07:08 AM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",121930040-B04 +131230041,84,13041307,Medical Incident,05/03/2013,05/02/2013,05/03/2013 03:24:45 AM,05/03/2013 03:25:10 AM,05/03/2013 03:25:46 AM,05/03/2013 03:26:15 AM,05/03/2013 03:31:13 AM,05/03/2013 03:39:57 AM,05/03/2013 03:59:14 AM,Code 2 Transport,05/03/2013 04:27:12 AM,1300 Block of 46TH AVE,SF,94122,B08,23,7721,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7613577781783, -122.505924512458)",131230041-84 +160400195,54,16015865,Medical Incident,02/09/2016,02/08/2016,02/09/2016 02:11:41 AM,02/09/2016 02:15:10 AM,02/09/2016 02:15:53 AM,02/09/2016 02:16:43 AM,02/09/2016 02:21:34 AM,02/09/2016 02:41:59 AM,02/09/2016 02:46:35 AM,Code 3 Transport,02/09/2016 03:25:29 AM,400 Block of SCOTT ST,San Francisco,94117,B05,21,4141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7738199257134, -122.43577759366)",160400195-54 +102980361,AP,10095299,Other,10/25/2010,10/25/2010,10/25/2010 09:16:53 PM,10/25/2010 09:16:53 PM,10/25/2010 09:16:53 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Fire,10/25/2010 09:17:19 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102980361-AP +102930006,E03,10093300,Medical Incident,10/20/2010,10/19/2010,10/20/2010 12:28:07 AM,10/20/2010 12:28:41 AM,10/20/2010 12:29:19 AM,10/20/2010 12:30:59 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 12:32:51 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",102930006-E03 +140340304,77,14011607,Medical Incident,02/03/2014,02/03/2014,02/03/2014 07:34:02 PM,02/03/2014 07:35:37 PM,02/03/2014 07:36:25 PM,02/03/2014 07:37:31 PM,04/25/2016 01:48:23 PM,02/03/2014 07:59:31 PM,02/03/2014 08:26:50 PM,Code 2 Transport,02/03/2014 08:46:31 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",140340304-77 +140750167,KM03,14025377,Medical Incident,03/16/2014,03/16/2014,03/16/2014 11:08:05 AM,03/16/2014 11:08:56 AM,03/16/2014 11:11:07 AM,03/16/2014 11:12:01 AM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,No Merit,03/16/2014 11:22:27 AM,POTRERO AV/24TH ST,SAN FRANCISCO,94110,B10,37,2554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,10,9,Mission,"(37.7530040313925, -122.406336240587)",140750167-KM03 +123400357,D3,12113560,Structure Fire,12/05/2012,12/05/2012,12/05/2012 07:55:14 PM,12/05/2012 07:56:33 PM,12/05/2012 07:57:26 PM,12/05/2012 07:58:39 PM,12/05/2012 08:02:33 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/05/2012 08:04:53 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,Alarm,1,CHIEF,10,3,6,South of Market,"(37.7823404680537, -122.40377191669)",123400357-D3 +102970334,B04,10094883,Alarms,10/24/2010,10/24/2010,10/24/2010 03:58:51 PM,10/24/2010 04:01:18 PM,10/24/2010 04:01:29 PM,10/24/2010 04:03:02 PM,10/24/2010 04:05:28 PM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Fire,10/24/2010 04:11:26 PM,1600 Block of CLAY ST,SF,94109,B04,41,1634,3,3,3,false,,1,CHIEF,2,4,3,Nob Hill,"(37.792433934443, -122.420216385348)",102970334-B04 +160602942,55,16024029,Medical Incident,02/29/2016,02/29/2016,02/29/2016 06:36:04 PM,02/29/2016 06:36:25 PM,02/29/2016 06:37:20 PM,02/29/2016 06:37:51 PM,02/29/2016 06:43:12 PM,02/29/2016 07:03:06 PM,02/29/2016 07:12:58 PM,Code 3 Transport,02/29/2016 08:16:44 PM,2200 Block of 24TH ST,San Francisco,94107,B10,37,2556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7533195885646, -122.401957150636)",160602942-55 +160483604,79,16019505,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:21:42 PM,02/17/2016 08:22:22 PM,02/17/2016 08:23:00 PM,02/17/2016 08:23:09 PM,02/17/2016 08:27:21 PM,02/17/2016 08:45:20 PM,02/17/2016 08:52:25 PM,Code 2 Transport,02/17/2016 09:13:38 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160483604-79 +130780165,E17,13026008,Alarms,03/19/2013,03/19/2013,03/19/2013 11:01:12 AM,03/19/2013 11:02:07 AM,03/19/2013 11:02:21 AM,03/19/2013 11:03:30 AM,03/19/2013 11:05:40 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 11:12:31 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",130780165-E17 +132060348,88,13069876,Medical Incident,07/25/2013,07/25/2013,07/25/2013 08:56:34 PM,07/25/2013 08:59:16 PM,07/25/2013 08:59:53 PM,07/25/2013 09:00:06 PM,07/25/2013 09:07:16 PM,07/25/2013 09:14:43 PM,07/25/2013 09:22:04 PM,Code 2 Transport,07/25/2013 09:44:45 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",132060348-88 +122850339,E02,12094405,Medical Incident,10/11/2012,10/11/2012,10/11/2012 08:14:34 PM,10/11/2012 08:16:40 PM,10/11/2012 08:18:10 PM,10/11/2012 08:19:36 PM,10/11/2012 08:20:27 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 08:31:55 PM,1100 Block of POWELL ST,SF,94108,B01,2,1354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7951852932116, -122.409741814728)",122850339-E02 +160772286,53,16030632,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:30:48 PM,03/17/2016 02:33:08 PM,03/17/2016 02:33:39 PM,03/17/2016 02:33:54 PM,03/17/2016 02:37:06 PM,03/17/2016 02:57:36 PM,03/17/2016 03:07:16 PM,Code 2 Transport,03/17/2016 03:42:05 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7904732830605, -122.406742211994)",160772286-53 +131700139,T10,13057685,Structure Fire,06/19/2013,06/19/2013,06/19/2013 11:31:18 AM,06/19/2013 11:31:52 AM,06/19/2013 11:32:33 AM,06/19/2013 11:33:13 AM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/19/2013 11:33:18 AM,400 Block of ARGUELLO BLVD,SF,94118,B07,10,7114,3,3,3,true,Alarm,1,TRUCK,10,7,2,Presidio Heights,"(37.7835107824698, -122.458952383537)",131700139-T10 +140410211,E03,14013943,Alarms,02/10/2014,02/10/2014,02/10/2014 01:03:38 PM,02/10/2014 01:04:53 PM,02/10/2014 01:05:02 PM,02/10/2014 01:06:18 PM,02/10/2014 01:10:48 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 01:15:23 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",140410211-E03 +160892990,AM12,16035440,Medical Incident,03/29/2016,03/29/2016,03/29/2016 06:00:14 PM,03/29/2016 06:02:33 PM,03/29/2016 06:03:39 PM,03/29/2016 06:04:27 PM,03/29/2016 06:11:00 PM,03/29/2016 06:31:12 PM,03/29/2016 06:41:25 PM,Code 2 Transport,03/29/2016 07:19:04 PM,1700 Block of FULTON ST,San Francisco,94117,B05,21,4463,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",160892990-AM12 +120620309,72,12020500,Medical Incident,03/02/2012,03/02/2012,03/02/2012 07:09:12 PM,03/02/2012 07:10:22 PM,03/02/2012 07:11:16 PM,03/02/2012 07:11:23 PM,03/02/2012 07:17:37 PM,03/02/2012 07:31:25 PM,03/02/2012 08:07:39 PM,Code 2 Transport,03/02/2012 08:11:15 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7807144867659, -122.408483722327)",120620309-72 +132680146,89,13090947,Medical Incident,09/25/2013,09/25/2013,09/25/2013 11:08:15 AM,09/25/2013 11:11:38 AM,09/25/2013 11:23:28 AM,04/25/2016 01:50:36 PM,09/25/2013 11:35:36 AM,09/25/2013 12:09:31 PM,09/25/2013 12:27:46 PM,Code 2 Transport,09/25/2013 01:08:05 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",132680146-89 +122850272,67,12094341,Medical Incident,10/11/2012,10/11/2012,10/11/2012 05:04:17 PM,10/11/2012 05:05:27 PM,10/11/2012 05:05:53 PM,10/11/2012 05:07:04 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 05:07:56 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",122850272-67 +112620361,E19,11086604,Medical Incident,09/19/2011,09/19/2011,09/19/2011 07:18:03 PM,09/19/2011 07:20:01 PM,09/19/2011 07:22:32 PM,09/19/2011 07:23:27 PM,09/19/2011 07:26:24 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Patient Declined Transport,09/19/2011 07:44:40 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,1,1,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",112620361-E19 +102370393,57,10074892,Medical Incident,08/25/2010,08/25/2010,08/25/2010 09:22:23 PM,08/25/2010 09:22:33 PM,08/25/2010 09:23:22 PM,08/25/2010 09:30:50 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 09:41:13 PM,WEST PORTAL AV/SLOAT BL,SF,94132,B08,39,8555,3,3,3,true,,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7347068117722, -122.471569339996)",102370393-57 +113120032,89,11103526,Medical Incident,11/08/2011,11/07/2011,11/08/2011 03:58:08 AM,11/08/2011 03:59:08 AM,11/08/2011 04:00:11 AM,11/08/2011 04:20:21 AM,11/08/2011 04:27:07 AM,11/08/2011 04:42:43 AM,11/08/2011 04:56:10 AM,Code 2 Transport,11/08/2011 05:30:38 AM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,1,2,true,,1,MEDIC,2,2,6,Mission,"(37.7732180675925, -122.421522300696)",113120032-89 +130170176,RC1,13005770,Medical Incident,01/17/2013,01/17/2013,01/17/2013 12:26:31 PM,01/17/2013 12:28:26 PM,01/17/2013 12:28:35 PM,01/17/2013 12:29:22 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 12:33:40 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,E,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130170176-RC1 +130940205,E21,13031473,Medical Incident,04/04/2013,04/04/2013,04/04/2013 01:58:26 PM,04/04/2013 01:59:25 PM,04/04/2013 01:59:38 PM,04/04/2013 02:00:53 PM,04/04/2013 02:03:36 PM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/04/2013 02:06:51 PM,300 Block of LAGUNA ST,SF,94102,B02,36,3414,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7743568541999, -122.425909733176)",130940205-E21 +111660371,68,11054956,Medical Incident,06/15/2011,06/15/2011,06/15/2011 10:45:43 PM,06/15/2011 10:47:23 PM,06/15/2011 10:47:54 PM,06/15/2011 10:48:36 PM,06/15/2011 10:52:27 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Against Medical Advice,06/15/2011 11:30:38 PM,5200 Block of 3RD ST,SF,94124,B10,17,6536,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7297002538198, -122.392619682108)",111660371-68 +103240264,T01,10103901,Alarms,11/20/2010,11/20/2010,11/20/2010 05:57:54 PM,11/20/2010 05:58:43 PM,11/20/2010 06:01:01 PM,04/25/2016 02:07:30 PM,11/20/2010 06:04:38 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,11/20/2010 06:10:16 PM,200 Block of POST ST,SF,94108,B01,1,1316,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7886509906461, -122.406006971458)",103240264-T01 +133210336,E26,13109190,Medical Incident,11/17/2013,11/17/2013,11/17/2013 11:22:23 PM,11/17/2013 11:25:43 PM,11/17/2013 11:26:16 PM,11/17/2013 11:26:53 PM,11/17/2013 11:30:26 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 11:50:02 PM,1700 Block of DIAMOND ST,SF,94131,B06,26,5557,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7435786028451, -122.435650218165)",133210336-E26 +122500158,87,12082643,Medical Incident,09/06/2012,09/06/2012,09/06/2012 12:32:03 PM,09/06/2012 12:34:05 PM,09/06/2012 12:34:26 PM,09/06/2012 12:34:42 PM,09/06/2012 12:43:55 PM,09/06/2012 01:00:23 PM,09/06/2012 01:34:33 PM,Code 2 Transport,09/06/2012 02:05:07 PM,0 Block of RALSTON ST,SF,94132,B09,33,8417,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7136025433012, -122.468796217874)",122500158-87 +160163069,78,16006556,Medical Incident,01/16/2016,01/16/2016,01/16/2016 07:13:32 PM,01/16/2016 07:15:20 PM,01/16/2016 07:16:24 PM,01/16/2016 07:16:34 PM,01/16/2016 07:29:33 PM,01/16/2016 07:45:46 PM,01/16/2016 07:59:39 PM,Code 2 Transport,01/16/2016 08:41:00 PM,0 Block of DANIEL BURNHAM CT,San Francisco,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7869107185707, -122.422525749968)",160163069-78 +110530335,65,11017647,Medical Incident,02/22/2011,02/22/2011,02/22/2011 08:43:13 PM,02/22/2011 08:43:13 PM,02/22/2011 08:43:43 PM,02/22/2011 08:43:59 PM,02/22/2011 08:49:52 PM,02/22/2011 09:07:46 PM,02/22/2011 09:13:53 PM,Code 2 Transport,02/22/2011 09:43:53 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",110530335-65 +133240198,E09,13110033,Structure Fire,11/20/2013,11/20/2013,11/20/2013 12:05:45 PM,11/20/2013 12:05:46 PM,11/20/2013 12:06:09 PM,11/20/2013 12:08:40 PM,11/20/2013 12:10:43 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 12:35:13 PM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,562,3,3,3,true,Alarm,1,ENGINE,2,6,9,Bernal Heights,"(37.748166431151, -122.412573078107)",133240198-E09 +121330275,B02,12044345,Medical Incident,05/12/2012,05/12/2012,05/12/2012 06:42:18 PM,05/12/2012 06:42:53 PM,05/12/2012 06:43:32 PM,05/12/2012 06:44:39 PM,05/12/2012 06:46:40 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Patient Declined Transport,05/12/2012 06:53:18 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,E,E,3,false,Non Life-threatening,1,CHIEF,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",121330275-B02 +113180168,E08,11105632,Alarms,11/14/2011,11/14/2011,11/14/2011 01:02:30 PM,11/14/2011 01:04:28 PM,11/14/2011 01:04:47 PM,11/14/2011 01:06:11 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/14/2011 01:06:54 PM,600 Block of FOLSOM ST,SF,94107,B03,1,2147,3,3,3,true,,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7850654631195, -122.397209533545)",113180168-E08 +120180203,58,12006050,Medical Incident,01/18/2012,01/18/2012,01/18/2012 02:50:01 PM,01/18/2012 02:50:46 PM,01/18/2012 02:51:04 PM,01/18/2012 02:51:37 PM,01/18/2012 02:57:46 PM,01/18/2012 03:11:18 PM,01/18/2012 03:18:06 PM,Code 2 Transport,01/18/2012 03:40:00 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",120180203-58 +103050016,T06,10097346,Medical Incident,11/01/2010,10/31/2010,11/01/2010 12:35:56 AM,11/01/2010 12:36:58 AM,11/01/2010 12:38:24 AM,11/01/2010 12:40:12 AM,11/01/2010 12:41:36 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 01:00:43 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,false,,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7635007029742, -122.434209629009)",103050016-T06 +110590275,E17,11019457,Medical Incident,02/28/2011,02/28/2011,02/28/2011 05:41:51 PM,02/28/2011 05:43:13 PM,02/28/2011 05:43:45 PM,02/28/2011 05:45:11 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,02/28/2011 05:51:53 PM,1300 Block of GILMAN AVE,SF,94124,B10,17,6614,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7218924918155, -122.394708775431)",110590275-E17 +132750019,67,13093269,Medical Incident,10/02/2013,10/01/2013,10/02/2013 01:54:31 AM,10/02/2013 01:55:07 AM,10/02/2013 01:55:20 AM,10/02/2013 01:55:36 AM,10/02/2013 01:58:33 AM,10/02/2013 02:16:54 AM,10/02/2013 02:24:02 AM,Code 2 Transport,10/02/2013 02:54:47 AM,800 Block of CLEMENT ST,SF,94118,B07,31,7141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7827217564864, -122.468162633745)",132750019-67 +160341687,65,16013378,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:45:29 PM,02/03/2016 12:50:51 PM,02/03/2016 12:51:38 PM,02/03/2016 12:51:44 PM,02/03/2016 01:06:10 PM,02/03/2016 01:36:34 PM,02/03/2016 01:52:22 PM,Code 2 Transport,02/03/2016 02:34:58 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160341687-65 +120250060,89,12008300,Medical Incident,01/25/2012,01/24/2012,01/25/2012 06:51:00 AM,01/25/2012 06:51:42 AM,01/25/2012 06:52:02 AM,01/25/2012 06:52:37 AM,01/25/2012 06:54:09 AM,01/25/2012 07:01:53 AM,01/25/2012 07:12:53 AM,Code 2 Transport,01/25/2012 07:26:34 AM,0 Block of 7TH ST,SF,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7802039058686, -122.412272455406)",120250060-89 +110210020,92,11006818,Medical Incident,01/21/2011,01/20/2011,01/21/2011 01:37:18 AM,01/21/2011 01:37:18 AM,01/21/2011 01:37:18 AM,01/21/2011 01:38:42 AM,01/21/2011 01:40:47 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/21/2011 01:43:01 AM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",110210020-92 +112660231,KM11,11087920,Medical Incident,09/23/2011,09/23/2011,09/23/2011 02:34:15 PM,09/23/2011 02:35:38 PM,09/23/2011 02:36:11 PM,09/23/2011 02:36:50 PM,09/23/2011 02:41:45 PM,09/23/2011 03:03:15 PM,09/23/2011 03:32:18 PM,Code 2 Transport,09/23/2011 03:58:31 PM,5TH ST/TEHAMA ST,SF,94103,B03,1,2245,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7810765960775, -122.404403682244)",112660231-KM11 +133650172,66,13123931,Medical Incident,12/31/2013,12/31/2013,12/31/2013 12:32:26 PM,12/31/2013 12:32:26 PM,12/31/2013 12:33:16 PM,12/31/2013 12:33:49 PM,12/31/2013 12:39:53 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Other,12/31/2013 12:41:04 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",133650172-66 +160800103,81,16031645,Medical Incident,03/20/2016,03/19/2016,03/20/2016 12:27:18 AM,03/20/2016 12:29:33 AM,03/20/2016 12:30:24 AM,03/20/2016 12:30:33 AM,03/20/2016 12:44:37 AM,03/20/2016 12:44:40 AM,03/20/2016 12:51:33 AM,Code 3 Transport,03/20/2016 02:06:11 AM,5000 Block of MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7174988976749, -122.440357992837)",160800103-81 +121770073,E01,12058802,Medical Incident,06/25/2012,06/24/2012,06/25/2012 07:20:14 AM,06/25/2012 07:20:46 AM,06/25/2012 07:20:59 AM,06/25/2012 07:22:36 AM,06/25/2012 07:25:44 AM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/25/2012 07:31:07 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",121770073-E01 +111120019,E08,11036862,Water Rescue,04/22/2011,04/21/2011,04/22/2011 01:08:56 AM,04/22/2011 01:09:09 AM,04/22/2011 01:10:14 AM,04/22/2011 01:11:54 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 01:14:08 AM,2800 Block of HYDE ST,SF,94109,B03,28,1616,3,3,3,true,,1,ENGINE,4,1,2,Russian Hill,"(37.8071154533997, -122.420720018434)",111120019-E08 +160882014,63,16034979,Medical Incident,03/28/2016,03/28/2016,03/28/2016 01:53:20 PM,03/28/2016 01:55:44 PM,03/28/2016 02:14:41 PM,03/28/2016 02:14:53 PM,03/28/2016 02:21:44 PM,03/28/2016 02:37:45 PM,03/28/2016 03:07:41 PM,Code 2 Transport,03/28/2016 03:50:35 PM,500 Block of RAMSELL ST,San Francisco,94132,B09,15,8435,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7206727205303, -122.466335197673)",160882014-63 +133200153,KM10,13108701,Medical Incident,11/16/2013,11/16/2013,11/16/2013 12:08:31 PM,11/16/2013 12:08:31 PM,11/16/2013 12:09:40 PM,04/25/2016 01:49:44 PM,11/16/2013 12:13:17 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 12:16:41 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",133200153-KM10 +160591374,AM06,16023492,Medical Incident,02/28/2016,02/28/2016,02/28/2016 11:42:36 AM,02/28/2016 11:45:21 AM,02/28/2016 11:45:31 AM,02/28/2016 11:46:19 AM,02/28/2016 11:51:18 AM,02/28/2016 11:59:19 AM,02/28/2016 12:26:04 PM,Code 2 Transport,02/28/2016 01:00:49 PM,400 Block of 23RD AV,San Francisco,94121,B07,14,7176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7792293082321, -122.482453152636)",160591374-AM06 +132800247,KM09,13095339,Medical Incident,10/07/2013,10/07/2013,10/07/2013 03:35:57 PM,10/07/2013 03:37:41 PM,10/07/2013 03:39:55 PM,04/25/2016 01:50:22 PM,10/07/2013 03:42:24 PM,10/07/2013 03:54:50 PM,10/07/2013 04:17:17 PM,Code 2 Transport,10/07/2013 04:34:57 PM,TURK ST/TAYLOR ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",132800247-KM09 +131020201,94,13034292,Medical Incident,04/12/2013,04/12/2013,04/12/2013 02:27:08 PM,04/12/2013 02:29:48 PM,04/12/2013 02:30:19 PM,04/12/2013 02:31:53 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/25/2016 01:53:21 PM,100 Block of LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.782320193191, -122.41402801662)",131020201-94 +131400293,T02,13047493,Structure Fire,05/20/2013,05/20/2013,05/20/2013 03:36:12 PM,05/20/2013 03:36:13 PM,05/20/2013 03:36:47 PM,05/20/2013 03:38:14 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,Other,05/20/2013 03:40:04 PM,COLUMBUS AV/UNION ST,SF,94133,B01,28,1334,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",131400293-T02 +110020134,RS2,11000620,High Angle Rescue,01/02/2011,01/02/2011,01/02/2011 11:01:22 AM,01/02/2011 11:02:21 AM,01/02/2011 11:03:00 AM,01/02/2011 11:03:58 AM,01/02/2011 11:17:34 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 12:42:21 PM,0 Block of ARMORY DR,SF,94132,B08,19,8716,3,3,3,false,,1,RESCUE SQUAD,7,8,7,Lakeshore,"(37.729313973933, -122.502539454339)",110020134-RS2 +160292004,87,16011470,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:14:29 PM,01/29/2016 02:14:50 PM,01/29/2016 02:15:21 PM,01/29/2016 02:15:39 PM,01/29/2016 02:25:20 PM,01/29/2016 02:40:07 PM,01/29/2016 02:59:25 PM,Code 3 Transport,01/29/2016 03:50:01 PM,0 Block of LATONA ST,San Francisco,94124,B10,17,6514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7315986139951, -122.392491129929)",160292004-87 +132980084,E29,13101121,Structure Fire,10/25/2013,10/25/2013,10/25/2013 08:12:06 AM,10/25/2013 08:12:36 AM,10/25/2013 08:12:57 AM,10/25/2013 08:14:53 AM,10/25/2013 08:17:19 AM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 10:11:11 AM,3300 Block of 17TH ST,SF,94110,B02,7,5247,3,3,3,true,Fire,2,ENGINE,6,2,9,Mission,"(37.7634571930206, -122.419977853021)",132980084-E29 +102870303,T11,10091602,Odor (Strange / Unknown),10/14/2010,10/14/2010,10/14/2010 05:08:41 PM,10/14/2010 05:10:05 PM,10/14/2010 05:11:27 PM,10/14/2010 05:14:15 PM,10/14/2010 05:15:16 PM,04/25/2016 02:08:06 PM,04/25/2016 02:08:06 PM,Other,10/14/2010 05:28:10 PM,200 Block of DAY ST,SF,94131,B06,11,5563,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7427760488742, -122.427694653316)",102870303-T11 +132870362,E39,13097787,Medical Incident,10/14/2013,10/14/2013,10/14/2013 09:02:34 PM,10/14/2013 09:04:15 PM,10/14/2013 09:05:17 PM,10/14/2013 09:07:13 PM,10/14/2013 09:09:49 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,10/14/2013 09:31:03 PM,200 Block of CASTENADA AVE,SF,94116,B08,39,8627,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7472879832332, -122.46265523969)",132870362-E39 +110050076,E43,11001560,Other,01/05/2011,01/04/2011,01/05/2011 07:53:18 AM,01/05/2011 07:58:30 AM,01/05/2011 08:00:30 AM,01/05/2011 08:01:50 AM,01/05/2011 08:06:01 AM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 08:26:08 AM,300 Block of OXFORD ST,SF,94134,B09,43,6152,3,3,3,true,,1,ENGINE,1,9,9,Excelsior,"(37.7255844163016, -122.419071172889)",110050076-E43 +103130184,E07,10100344,Medical Incident,11/09/2010,11/09/2010,11/09/2010 12:01:38 PM,11/09/2010 12:02:21 PM,11/09/2010 12:03:03 PM,11/09/2010 12:03:47 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/09/2010 12:04:02 PM,2100 Block of FOLSOM ST,SF,94110,B02,7,5424,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7628937069404, -122.415145830574)",103130184-E07 +160311536,58,16012150,Medical Incident,01/31/2016,01/31/2016,01/31/2016 12:14:08 PM,01/31/2016 12:15:45 PM,01/31/2016 12:17:04 PM,01/31/2016 12:19:43 PM,01/31/2016 12:23:26 PM,01/31/2016 12:44:34 PM,01/31/2016 12:59:48 PM,Code 2 Transport,01/31/2016 01:34:00 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7716028339242, -122.445694365285)",160311536-58 +160093806,78,16003850,Medical Incident,01/09/2016,01/09/2016,01/09/2016 11:53:22 PM,01/09/2016 11:53:56 PM,01/09/2016 11:55:29 PM,01/09/2016 11:55:35 PM,01/09/2016 11:59:37 PM,01/10/2016 12:22:21 AM,01/10/2016 12:35:18 AM,Code 2 Transport,01/10/2016 01:38:54 AM,24TH ST/SAN JOSE AV,San Francisco,94110,B06,11,5524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7520468115771, -122.4215951516)",160093806-78 +160582264,60,16023169,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:25:37 PM,02/27/2016 03:26:43 PM,02/27/2016 03:28:26 PM,02/27/2016 03:28:39 PM,02/27/2016 03:35:34 PM,02/27/2016 03:50:29 PM,02/27/2016 04:13:32 PM,Code 2 Transport,02/27/2016 04:44:29 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160582264-60 +102920286,T05,10093204,Alarms,10/19/2010,10/19/2010,10/19/2010 05:53:49 PM,10/19/2010 05:54:50 PM,10/19/2010 05:56:24 PM,10/19/2010 05:58:38 PM,10/19/2010 05:59:23 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/19/2010 06:19:43 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",102920286-T05 +130080423,89,13002952,Medical Incident,01/08/2013,01/08/2013,01/08/2013 11:10:46 PM,01/08/2013 11:12:00 PM,01/08/2013 11:12:11 PM,01/08/2013 11:12:26 PM,01/08/2013 11:15:10 PM,01/08/2013 11:22:21 PM,01/08/2013 11:28:19 PM,Other,01/08/2013 11:49:21 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",130080423-89 +132050184,E05,13069418,Traffic Collision,07/24/2013,07/24/2013,07/24/2013 01:42:58 PM,07/24/2013 01:42:58 PM,07/24/2013 01:43:18 PM,07/24/2013 01:43:54 PM,07/24/2013 01:46:37 PM,04/25/2016 01:51:39 PM,04/25/2016 01:51:39 PM,Other,07/24/2013 02:06:07 PM,TURK ST/DIVISADERO ST,SF,94115,B05,5,4152,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7796596291972, -122.438740182302)",132050184-E05 +121300003,E33,12043109,Medical Incident,05/09/2012,05/08/2012,05/09/2012 12:29:55 AM,05/09/2012 12:32:07 AM,05/09/2012 12:32:18 AM,05/09/2012 12:34:25 AM,05/09/2012 12:36:45 AM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Other,05/09/2012 12:45:32 AM,0 Block of LIEBIG ST,SF,94112,B09,33,8357,3,1,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7089888345409, -122.456754288707)",121300003-E33 +133500339,E44,13118944,Alarms,12/16/2013,12/16/2013,12/16/2013 06:02:26 PM,12/16/2013 06:03:37 PM,12/16/2013 06:04:41 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,04/25/2016 01:49:14 PM,500 Block of WAYLAND ST,SF,94134,B10,42,6332,3,3,3,true,Alarm,1,ENGINE,3,10,9,Portola,"(37.7252188298206, -122.40752769964)",133500339-E44 +130730381,79,13024514,Medical Incident,03/14/2013,03/14/2013,03/14/2013 11:33:06 PM,03/14/2013 11:33:56 PM,03/14/2013 11:34:39 PM,03/14/2013 11:35:37 PM,03/14/2013 11:36:49 PM,03/14/2013 11:50:28 PM,03/15/2013 12:00:11 AM,Code 2 Transport,03/15/2013 12:31:13 AM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",130730381-79 +120640233,85,12021181,Medical Incident,03/04/2012,03/04/2012,03/04/2012 03:04:26 PM,03/04/2012 03:05:17 PM,03/04/2012 03:06:25 PM,03/04/2012 03:07:04 PM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Other,03/04/2012 03:12:19 PM,800 Block of LA PLAYA,SF,94121,B07,34,7311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7723244294895, -122.510034921211)",120640233-85 +160352575,AM16,16013892,Medical Incident,02/04/2016,02/04/2016,02/04/2016 04:17:40 PM,02/04/2016 04:18:33 PM,02/04/2016 04:19:24 PM,02/04/2016 04:21:23 PM,02/04/2016 04:29:27 PM,02/04/2016 04:42:26 PM,02/04/2016 05:13:30 PM,Code 2 Transport,02/04/2016 05:28:19 PM,300 Block of 10TH ST,San Francisco,94103,B03,36,2343,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7724036771499, -122.412409765245)",160352575-AM16 +160053470,KM07,16002168,Medical Incident,01/05/2016,01/05/2016,01/05/2016 09:06:57 PM,01/05/2016 09:07:17 PM,01/05/2016 09:07:40 PM,01/05/2016 09:08:26 PM,01/05/2016 09:15:45 PM,01/05/2016 09:34:14 PM,01/05/2016 09:48:20 PM,Code 2 Transport,01/05/2016 10:28:56 PM,2100 Block of STOCKTON ST,San Francisco,94133,B01,28,1341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8055542731117, -122.410285576775)",160053470-KM07 +121360354,E03,12045354,Structure Fire,05/15/2012,05/15/2012,05/15/2012 11:13:26 PM,05/15/2012 11:14:22 PM,05/15/2012 11:14:35 PM,04/25/2016 01:58:40 PM,05/15/2012 11:17:18 PM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,Fire,05/15/2012 11:31:06 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Fire,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",121360354-E03 +160142279,76,16005625,Medical Incident,01/14/2016,01/14/2016,01/14/2016 03:14:54 PM,01/14/2016 03:16:46 PM,01/14/2016 03:16:58 PM,01/14/2016 03:17:05 PM,01/14/2016 03:24:12 PM,01/14/2016 03:38:34 PM,01/14/2016 04:02:38 PM,Code 2 Transport,01/14/2016 04:31:05 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160142279-76 +113040269,T15,11100986,Structure Fire,10/31/2011,10/31/2011,10/31/2011 03:56:34 PM,10/31/2011 03:56:34 PM,10/31/2011 03:57:18 PM,10/31/2011 03:58:48 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 04:00:27 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",113040269-T15 +131830225,T08,13062388,Alarms,07/02/2013,07/02/2013,07/02/2013 03:04:14 PM,07/02/2013 03:05:21 PM,07/02/2013 03:05:47 PM,07/02/2013 03:06:19 PM,07/02/2013 03:09:30 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 03:17:37 PM,1600 Block of 3RD ST,SF,94158,B03,29,2434,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7683474110857, -122.389401336294)",131830225-T08 +102290137,E36,10072018,Medical Incident,08/17/2010,08/17/2010,08/17/2010 11:22:50 AM,08/17/2010 11:25:17 AM,08/17/2010 11:25:43 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 11:26:24 AM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,ENGINE,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",102290137-E36 +111390146,AM12,11046172,Medical Incident,05/19/2011,05/19/2011,05/19/2011 11:17:43 AM,05/19/2011 11:20:57 AM,05/19/2011 11:21:10 AM,05/19/2011 11:21:52 AM,05/19/2011 11:26:16 AM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Against Medical Advice,05/19/2011 12:06:36 PM,4700 Block of 19TH ST,SF,94114,B05,24,5271,3,3,3,false,,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.758856824394, -122.443469820107)",111390146-AM12 +140700144,86,14023574,Traffic Collision,03/11/2014,03/11/2014,03/11/2014 11:13:57 AM,03/11/2014 11:13:57 AM,03/11/2014 11:14:46 AM,03/11/2014 11:14:56 AM,03/11/2014 11:16:26 AM,03/11/2014 11:29:11 AM,03/11/2014 11:42:00 AM,Code 2 Transport,03/11/2014 12:10:38 PM,SUTTER ST/POLK ST,SAN FRANCISCO,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",140700144-86 +160753303,65,16029856,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:07:09 PM,03/15/2016 07:07:09 PM,03/15/2016 07:08:27 PM,03/15/2016 07:08:37 PM,03/15/2016 07:12:49 PM,03/15/2016 07:39:32 PM,03/15/2016 07:54:45 PM,Code 2 Transport,03/15/2016 08:59:09 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",160753303-65 +112250227,E26,11074362,Structure Fire,08/13/2011,08/13/2011,08/13/2011 02:11:46 PM,08/13/2011 02:12:45 PM,08/13/2011 02:13:00 PM,08/13/2011 02:13:18 PM,08/13/2011 02:19:47 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 02:27:10 PM,400 Block of DOUGLASS ST,SF,94114,B06,24,5463,3,3,3,true,,1,ENGINE,8,6,8,Castro/Upper Market,"(37.7562662400666, -122.438837972763)",112250227-E26 +160192729,83,16007731,Medical Incident,01/19/2016,01/19/2016,01/19/2016 05:15:31 PM,01/19/2016 05:16:57 PM,01/19/2016 05:17:28 PM,01/19/2016 05:17:36 PM,01/19/2016 05:29:04 PM,01/19/2016 05:42:34 PM,01/19/2016 06:35:52 PM,Code 2 Transport,01/19/2016 07:21:37 PM,1200 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7214606647015, -122.392279417619)",160192729-83 +112960390,T05,11098366,Alarms,10/23/2011,10/23/2011,10/23/2011 11:53:04 PM,10/23/2011 11:54:38 PM,10/23/2011 11:55:54 PM,10/23/2011 11:56:24 PM,10/23/2011 11:59:45 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 12:06:15 AM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",112960390-T05 +102520123,E10,10079574,Medical Incident,09/09/2010,09/09/2010,09/09/2010 10:42:57 AM,09/09/2010 10:43:20 AM,09/09/2010 10:43:34 AM,09/09/2010 10:44:00 AM,09/09/2010 10:44:44 AM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Patient Declined Transport,09/09/2010 11:06:30 AM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,2,2,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",102520123-E10 +112150195,T15,11070985,Structure Fire,08/03/2011,08/03/2011,08/03/2011 01:42:20 PM,08/03/2011 01:42:20 PM,08/03/2011 01:42:49 PM,08/03/2011 01:44:44 PM,08/03/2011 01:46:30 PM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Other,08/03/2011 01:55:36 PM,SAN JOSE AV/NIAGARA AV,SF,94112,B09,15,8312,3,3,3,false,,1,TRUCK,3,9,11,Outer Mission,"(37.7194811206803, -122.447562061428)",112150195-T15 +123200303,T03,12106482,Structure Fire,11/15/2012,11/15/2012,11/15/2012 07:06:26 PM,11/15/2012 07:06:26 PM,11/15/2012 07:08:27 PM,11/15/2012 07:09:41 PM,11/15/2012 07:11:18 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 07:11:50 PM,FRANKLIN ST/SUTTER ST,SF,94109,B04,3,3223,3,3,3,false,Alarm,1,TRUCK,2,4,2,Western Addition,"(37.7873391634884, -122.423403594343)",123200303-T03 +160841963,KM06,16033391,Medical Incident,03/24/2016,03/24/2016,03/24/2016 01:03:26 PM,03/24/2016 01:05:20 PM,03/24/2016 01:08:30 PM,03/24/2016 01:08:58 PM,03/24/2016 01:17:49 PM,03/24/2016 01:38:05 PM,03/24/2016 01:57:29 PM,Code 2 Transport,03/24/2016 02:37:17 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160841963-KM06 +160302119,KM12,16011810,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:03:57 PM,01/30/2016 02:05:24 PM,01/30/2016 02:05:36 PM,01/30/2016 02:06:11 PM,01/30/2016 02:10:34 PM,01/30/2016 02:30:26 PM,01/30/2016 02:44:13 PM,Code 2 Transport,01/30/2016 03:17:46 PM,200 Block of MADRID ST,San Francisco,94112,B09,43,6133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7254752089817, -122.429807319916)",160302119-KM12 +140890182,B08,14029967,Other,03/30/2014,03/30/2014,03/30/2014 01:29:36 PM,03/30/2014 01:29:42 PM,03/30/2014 01:29:52 PM,03/30/2014 01:29:52 PM,03/30/2014 01:30:47 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,Fire,03/30/2014 01:41:15 PM,17TH AV/QUINTARA ST,SAN FRANCISCO,94116,B08,40,7374,3,3,3,false,Alarm,1,CHIEF,1,8,7,West of Twin Peaks,"(37.7487395044809, -122.473945691268)",140890182-B08 +160881987,77,16034977,Medical Incident,03/28/2016,03/28/2016,03/28/2016 01:47:24 PM,03/28/2016 01:47:46 PM,03/28/2016 01:48:02 PM,03/28/2016 01:48:32 PM,03/28/2016 01:51:52 PM,03/28/2016 02:09:46 PM,03/28/2016 02:24:20 PM,Code 2 Transport,03/28/2016 03:31:11 PM,2100 Block of 36TH AVE,San Francisco,94116,B08,18,7556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7469112222263, -122.494162943216)",160881987-77 +160100134,79,16003864,Medical Incident,01/10/2016,01/09/2016,01/10/2016 12:54:24 AM,01/10/2016 12:55:48 AM,01/10/2016 12:56:08 AM,01/10/2016 12:57:20 AM,01/10/2016 01:04:31 AM,01/10/2016 01:22:11 AM,01/10/2016 01:28:42 AM,Code 2 Transport,01/10/2016 02:08:55 AM,500 Block of SHRADER ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7698369750785, -122.452028786535)",160100134-79 +130310041,T01,13010452,Structure Fire,01/31/2013,01/30/2013,01/31/2013 03:28:32 AM,01/31/2013 03:28:32 AM,01/31/2013 03:28:38 AM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 03:31:43 AM,3RD ST/MISSION ST,SF,94103,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",130310041-T01 +122170064,67,12071932,Medical Incident,08/04/2012,08/03/2012,08/04/2012 06:40:57 AM,08/04/2012 06:41:25 AM,08/04/2012 06:41:45 AM,08/04/2012 06:42:11 AM,08/04/2012 06:44:41 AM,08/04/2012 06:57:25 AM,08/04/2012 07:02:13 AM,Code 2 Transport,08/04/2012 07:28:41 AM,1000 Block of TURK ST,SF,94102,B02,5,3367,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",122170064-67 +122220219,AM16,12073617,Medical Incident,08/09/2012,08/09/2012,08/09/2012 02:36:07 PM,08/09/2012 02:38:03 PM,08/09/2012 02:38:30 PM,08/09/2012 02:39:25 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,Other,08/09/2012 02:42:52 PM,BALBOA ST/28TH AV,SF,94121,B07,14,7225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7761552340808, -122.487669439804)",122220219-AM16 +110390127,57,11012881,Medical Incident,02/08/2011,02/08/2011,02/08/2011 10:51:19 AM,02/08/2011 10:51:50 AM,02/08/2011 10:52:09 AM,02/08/2011 10:52:46 AM,02/08/2011 10:59:44 AM,02/08/2011 11:16:17 AM,02/08/2011 11:29:15 AM,Code 2 Transport,02/08/2011 11:49:42 AM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7097220017383, -122.412881344927)",110390127-57 +112770252,E01,11091749,Medical Incident,10/04/2011,10/04/2011,10/04/2011 02:57:12 PM,10/04/2011 02:58:58 PM,10/04/2011 02:59:21 PM,10/04/2011 02:59:34 PM,10/04/2011 02:59:36 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 03:08:29 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",112770252-E01 +131590168,68,13054008,Medical Incident,06/08/2013,06/08/2013,06/08/2013 12:11:06 PM,06/08/2013 12:12:35 PM,06/08/2013 12:14:09 PM,06/08/2013 12:14:32 PM,06/08/2013 12:32:34 PM,06/08/2013 12:52:03 PM,06/08/2013 01:01:18 PM,Code 2 Transport,06/08/2013 01:44:05 PM,1900 Block of VALLEJO ST,SF,94123,B04,38,3334,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7960124394066, -122.429371287324)",131590168-68 +110480067,96,11015781,Traffic Collision,02/17/2011,02/17/2011,02/17/2011 08:17:54 AM,02/17/2011 08:17:54 AM,02/17/2011 08:18:12 AM,02/17/2011 08:18:19 AM,02/17/2011 08:23:00 AM,02/17/2011 08:50:12 AM,02/17/2011 09:23:23 AM,Code 2 Transport,02/17/2011 09:50:55 AM,JORDAN AV/EUCLID AV,SF,94118,B07,10,4441,3,3,3,true,,1,MEDIC,2,7,2,Presidio Heights,"(37.7839289117597, -122.456813219953)",110480067-96 +112790048,86,11092241,Medical Incident,10/06/2011,10/05/2011,10/06/2011 05:00:45 AM,10/06/2011 05:01:35 AM,10/06/2011 05:02:03 AM,04/25/2016 02:02:18 PM,10/06/2011 05:10:00 AM,10/06/2011 05:28:33 AM,10/06/2011 05:42:07 AM,Code 2 Transport,10/06/2011 06:27:07 AM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,true,,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",112790048-86 +160830707,75,16032856,Medical Incident,03/23/2016,03/22/2016,03/23/2016 07:57:55 AM,03/23/2016 08:00:24 AM,03/23/2016 08:00:52 AM,03/23/2016 08:01:04 AM,03/23/2016 08:15:06 AM,03/23/2016 08:19:11 AM,03/23/2016 08:38:04 AM,Code 2 Transport,03/23/2016 09:29:11 AM,900 Block of BRYANT ST,San Francisco,94103,B03,8,2311,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7740297538027, -122.404968319078)",160830707-75 +110580133,KM12,11019047,Medical Incident,02/27/2011,02/27/2011,02/27/2011 09:57:35 AM,02/27/2011 09:58:30 AM,02/27/2011 10:00:16 AM,02/27/2011 10:01:25 AM,02/27/2011 10:11:43 AM,02/27/2011 10:20:30 AM,02/27/2011 10:27:33 AM,Code 2 Transport,02/27/2011 10:46:46 AM,2100 Block of POST ST,SF,94115,B04,10,4131,1,1,2,false,,1,PRIVATE,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",110580133-KM12 +132330263,83,13078733,Medical Incident,08/21/2013,08/21/2013,08/21/2013 04:43:58 PM,08/21/2013 04:46:28 PM,08/21/2013 04:47:46 PM,08/21/2013 04:47:58 PM,08/21/2013 04:58:53 PM,08/21/2013 05:03:49 PM,08/21/2013 05:23:27 PM,Code 3 Transport,08/21/2013 06:03:45 PM,3100 Block of 16TH ST,SF,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649429344541, -122.422375182461)",132330263-83 +112280352,RS1,11075508,Structure Fire,08/16/2011,08/16/2011,08/16/2011 09:47:36 PM,08/16/2011 09:48:34 PM,08/16/2011 09:48:48 PM,08/16/2011 09:50:15 PM,08/16/2011 09:55:39 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Other,08/16/2011 09:58:21 PM,0 Block of FALLON PL,SF,94133,B01,2,1442,3,3,3,false,,1,RESCUE SQUAD,6,1,3,Nob Hill,"(37.7977464099697, -122.413400804085)",112280352-RS1 +160473019,87,16019049,Medical Incident,02/16/2016,02/16/2016,02/16/2016 06:12:05 PM,02/16/2016 06:14:24 PM,02/16/2016 06:16:40 PM,02/16/2016 06:16:47 PM,02/16/2016 06:26:10 PM,02/16/2016 06:52:43 PM,02/16/2016 07:19:54 PM,Code 2 Transport,02/16/2016 08:03:55 PM,0 Block of SAN BENITO WAY,San Francisco,94127,B08,39,8563,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7360115927989, -122.467293908388)",160473019-87 +130260050,E02,13008873,Medical Incident,01/26/2013,01/25/2013,01/26/2013 03:28:07 AM,01/26/2013 03:29:03 AM,01/26/2013 03:29:58 AM,01/26/2013 03:31:33 AM,01/26/2013 03:33:32 AM,01/26/2013 03:53:12 AM,04/25/2016 01:54:37 PM,Other,01/26/2013 04:00:46 AM,900 Block of POWELL ST,SF,94108,B01,2,1355,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.793420180327, -122.409388683)",130260050-E02 +123100134,RC2,12103076,Medical Incident,11/05/2012,11/05/2012,11/05/2012 10:24:19 AM,11/05/2012 10:25:12 AM,11/05/2012 10:25:35 AM,11/05/2012 10:28:47 AM,11/05/2012 10:37:28 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 10:39:49 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",123100134-RC2 +112930116,E38,11097149,Medical Incident,10/20/2011,10/20/2011,10/20/2011 10:48:44 AM,10/20/2011 10:48:47 AM,10/20/2011 10:49:10 AM,10/20/2011 10:50:46 AM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 10:52:12 AM,1700 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,false,,1,ENGINE,3,4,2,Pacific Heights,"(37.7906121709132, -122.424136550151)",112930116-E38 +121260172,E32,12041866,Medical Incident,05/05/2012,05/05/2012,05/05/2012 10:52:53 AM,05/05/2012 10:53:12 AM,05/05/2012 10:53:35 AM,05/05/2012 10:55:01 AM,05/05/2012 10:55:26 AM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 10:55:29 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",121260172-E32 +123180009,RC3,12105629,Medical Incident,11/13/2012,11/12/2012,11/13/2012 01:03:17 AM,11/13/2012 01:03:17 AM,11/13/2012 01:03:17 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 01:44:50 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",123180009-RC3 +112190195,E29,11072421,Medical Incident,08/07/2011,08/07/2011,08/07/2011 02:31:06 PM,08/07/2011 02:31:58 PM,08/07/2011 02:32:29 PM,08/07/2011 02:33:45 PM,08/07/2011 02:36:08 PM,04/25/2016 02:03:17 PM,04/25/2016 02:03:17 PM,Other,08/07/2011 02:41:34 PM,WISCONSIN ST/17TH ST,SF,94107,B03,29,2425,3,3,3,true,,1,ENGINE,1,3,10,Mission Bay,"(37.7649560944704, -122.399662289083)",112190195-E29 +121820364,85,12060764,Medical Incident,06/30/2012,06/30/2012,06/30/2012 09:54:02 PM,06/30/2012 09:54:43 PM,06/30/2012 09:56:03 PM,06/30/2012 09:56:15 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,06/30/2012 10:04:26 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",121820364-85 +131500352,E02,13050965,Alarms,05/30/2013,05/30/2013,05/30/2013 11:37:16 PM,05/30/2013 11:38:21 PM,05/30/2013 11:38:32 PM,05/30/2013 11:38:53 PM,05/30/2013 11:40:28 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/30/2013 11:44:27 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7968082637513, -122.408035995184)",131500352-E02 +121970337,64,12065651,Medical Incident,07/15/2012,07/15/2012,07/15/2012 11:01:20 PM,07/15/2012 11:04:18 PM,07/15/2012 11:05:04 PM,07/15/2012 11:05:32 PM,07/15/2012 11:11:08 PM,07/15/2012 11:28:51 PM,07/15/2012 11:33:47 PM,Code 2 Transport,07/15/2012 11:44:46 PM,3100 Block of 24TH ST,SF,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7524609846175, -122.415724213925)",121970337-64 +111890346,89,11062626,Medical Incident,07/08/2011,07/08/2011,07/08/2011 07:54:31 PM,07/08/2011 07:56:28 PM,07/08/2011 07:56:40 PM,07/08/2011 07:56:50 PM,07/08/2011 08:01:38 PM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Patient Declined Transport,07/08/2011 08:25:48 PM,0 Block of YERBA BUENA LN,SF,94103,B03,1,2212,3,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7857639967999, -122.404208166751)",111890346-89 +140140201,E03,14004809,Medical Incident,01/14/2014,01/14/2014,01/14/2014 01:52:31 PM,01/14/2014 01:54:21 PM,01/14/2014 01:55:51 PM,01/14/2014 01:55:51 PM,01/14/2014 01:57:54 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/14/2014 02:10:29 PM,100 Block of TURK ST,SF,94102,B03,1,1456,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",140140201-E03 +110980438,94,11032711,Medical Incident,04/08/2011,04/08/2011,04/08/2011 11:49:31 PM,04/08/2011 11:52:30 PM,04/08/2011 11:54:39 PM,04/08/2011 11:55:12 PM,04/09/2011 12:10:27 AM,04/09/2011 12:22:19 AM,04/09/2011 12:44:40 AM,Code 2 Transport,04/09/2011 12:55:14 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110980438-94 +111390235,66,11046252,Medical Incident,05/19/2011,05/19/2011,05/19/2011 03:08:25 PM,05/19/2011 03:13:04 PM,05/19/2011 03:13:44 PM,05/19/2011 03:14:43 PM,05/19/2011 03:24:28 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Unable to Locate,05/19/2011 03:24:40 PM,EVANS AV/MIDDLE POINT RD,SF,94124,B10,25,6553,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7376802948169, -122.379109648458)",111390235-66 +160361201,55,16014179,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:41:48 AM,02/05/2016 09:42:03 AM,02/05/2016 09:42:33 AM,02/05/2016 09:42:44 AM,02/05/2016 09:47:16 AM,02/05/2016 10:05:20 AM,02/05/2016 10:36:09 AM,Code 2 Transport,02/05/2016 11:13:29 AM,700 Block of 27TH AVE,San Francisco,94121,B07,14,7223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.775274399629, -122.486466775057)",160361201-55 +140140276,RC3,14004873,Medical Incident,01/14/2014,01/14/2014,01/14/2014 04:52:14 PM,01/14/2014 04:54:46 PM,01/14/2014 04:54:55 PM,01/14/2014 04:56:35 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/14/2014 05:01:08 PM,2400 Block of ULLOA ST,SF,94116,B08,40,7466,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7409311233243, -122.482529770845)",140140276-RC3 +110200137,T12,11006557,Structure Fire,01/20/2011,01/20/2011,01/20/2011 10:23:31 AM,01/20/2011 10:23:42 AM,01/20/2011 10:25:20 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 10:26:57 AM,3900 Block of SACRAMENTO ST,SF,94118,B07,10,444,3,3,3,true,,1,TRUCK,3,7,2,Presidio Heights,"(37.7868299907171, -122.458076168664)",110200137-T12 +120230255,KM15,12007854,Medical Incident,01/23/2012,01/23/2012,01/23/2012 04:17:34 PM,01/23/2012 04:19:36 PM,01/23/2012 04:19:45 PM,01/23/2012 04:21:50 PM,01/23/2012 04:26:38 PM,01/23/2012 04:42:09 PM,01/23/2012 04:49:52 PM,Code 2 Transport,01/23/2012 05:18:46 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7828124037537, -122.432679112133)",120230255-KM15 +113210357,E07,11106763,Structure Fire,11/17/2011,11/17/2011,11/17/2011 08:33:11 PM,11/17/2011 08:33:12 PM,11/17/2011 08:33:33 PM,11/17/2011 08:34:46 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/17/2011 08:37:07 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",113210357-E07 +122420171,89,12080033,Medical Incident,08/29/2012,08/29/2012,08/29/2012 12:16:16 PM,08/29/2012 12:17:26 PM,08/29/2012 12:18:22 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,08/29/2012 12:45:21 PM,08/29/2012 01:02:24 PM,Code 2 Transport,08/29/2012 01:59:10 PM,1100 Block of MASON ST,SF,94108,B01,2,1415,3,B,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7938598134126, -122.411160699762)",122420171-89 +122750056,77,12090634,Medical Incident,10/01/2012,09/30/2012,10/01/2012 05:44:46 AM,10/01/2012 05:46:32 AM,10/01/2012 05:47:06 AM,10/01/2012 05:47:53 AM,10/01/2012 06:02:35 AM,10/01/2012 06:14:40 AM,10/01/2012 06:39:05 AM,Code 2 Transport,10/01/2012 07:13:07 AM,300 Block of MAIN ST,SF,94105,B03,35,2117,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",122750056-77 +160322430,85,16012652,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:10:38 PM,02/01/2016 04:13:33 PM,02/01/2016 04:28:00 PM,02/01/2016 04:28:01 PM,02/01/2016 04:36:34 PM,02/01/2016 04:52:35 PM,02/01/2016 05:19:22 PM,Code 2 Transport,02/01/2016 05:34:21 PM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",160322430-85 +122090166,T03,12069430,Medical Incident,07/27/2012,07/27/2012,07/27/2012 01:11:53 PM,07/27/2012 01:12:42 PM,07/27/2012 01:14:04 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 01:15:05 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,3,2,2,false,Non Life-threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",122090166-T03 +160531323,82,16021171,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:26:12 AM,02/22/2016 11:30:56 AM,02/22/2016 11:31:26 AM,02/22/2016 11:31:44 AM,02/22/2016 11:40:47 AM,02/22/2016 12:09:18 PM,02/22/2016 12:19:49 PM,Code 2 Transport,02/22/2016 12:55:59 PM,200 Block of DIVISION ST,San Francisco,94103,B02,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.769397940727, -122.406548951581)",160531323-82 +140100338,54,14003622,Medical Incident,01/10/2014,01/10/2014,01/10/2014 06:44:27 PM,01/10/2014 06:46:28 PM,01/10/2014 06:52:02 PM,01/10/2014 06:52:25 PM,01/10/2014 07:22:24 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Gone on Arrival,01/10/2014 07:24:32 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",140100338-54 +131710039,T17,13057939,Citizen Assist / Service Call,06/20/2013,06/19/2013,06/20/2013 04:14:03 AM,06/20/2013 04:17:06 AM,06/20/2013 04:17:22 AM,06/20/2013 04:20:01 AM,06/20/2013 04:22:59 AM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Fire,06/20/2013 04:33:10 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,2,2,2,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",131710039-T17 +120990314,81,12032929,Confined Space / Structure Collapse,04/08/2012,04/08/2012,04/08/2012 09:20:19 PM,04/08/2012 09:21:12 PM,04/08/2012 09:22:30 PM,04/08/2012 09:23:23 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 09:23:27 PM,FREMONT ST/HOWARD ST,SF,94105,B03,35,2124,3,3,3,true,Fire,1,MEDIC,8,3,6,Financial District/South Beach,"(37.7892346992583, -122.395150932922)",120990314-81 +133220266,B04,13109414,Alarms,11/18/2013,11/18/2013,11/18/2013 06:27:52 PM,11/18/2013 06:30:05 PM,11/18/2013 06:30:20 PM,11/18/2013 06:31:02 PM,11/18/2013 06:37:01 PM,04/25/2016 01:49:42 PM,04/25/2016 01:49:42 PM,Other,11/18/2013 06:43:17 PM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",133220266-B04 +102260157,AM06,10071128,Medical Incident,08/14/2010,08/14/2010,08/14/2010 12:40:09 PM,08/14/2010 12:41:01 PM,08/14/2010 12:41:16 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 12:42:01 PM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,false,,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",102260157-AM06 +120520158,E01,12017154,Medical Incident,02/21/2012,02/21/2012,02/21/2012 11:45:12 AM,02/21/2012 11:46:36 AM,02/21/2012 11:46:52 AM,04/25/2016 02:00:02 PM,02/21/2012 11:47:06 AM,04/25/2016 02:00:02 PM,04/25/2016 02:00:02 PM,No Merit,02/21/2012 12:00:13 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",120520158-E01 +160840441,81,16033246,Medical Incident,03/24/2016,03/23/2016,03/24/2016 05:41:02 AM,03/24/2016 05:41:02 AM,03/24/2016 05:41:11 AM,03/24/2016 05:42:37 AM,03/24/2016 05:50:59 AM,03/24/2016 06:05:01 AM,03/24/2016 06:28:59 AM,Code 2 Transport,03/24/2016 07:27:19 AM,ARMSTRONG AV/KEITH ST,San Francisco,94124,B10,17,6652,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7262224224488, -122.392235495709)",160840441-81 +131210062,E15,13040551,Structure Fire,05/01/2013,04/30/2013,05/01/2013 04:03:51 AM,05/01/2013 04:07:07 AM,05/01/2013 04:07:36 AM,05/01/2013 04:09:01 AM,05/01/2013 04:13:23 AM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,05/01/2013 04:15:40 AM,400 Block of WINSTON DR,SF,94132,B08,19,8854,3,3,3,true,Alarm,1,ENGINE,7,8,7,Lakeshore,"(37.7276780963446, -122.481160230776)",131210062-E15 +113140190,E11,11104335,Alarms,11/10/2011,11/10/2011,11/10/2011 01:33:47 PM,11/10/2011 01:34:26 PM,11/10/2011 01:34:56 PM,11/10/2011 01:36:26 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 01:38:00 PM,1500 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,ENGINE,3,6,8,Mission,"(37.7485117389211, -122.420385246318)",113140190-E11 +140220364,RC1,14007677,Medical Incident,01/22/2014,01/22/2014,01/22/2014 09:07:12 PM,01/22/2014 09:08:30 PM,01/22/2014 09:20:26 PM,01/22/2014 09:20:26 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/22/2014 09:23:36 PM,800 Block of HYDE ST,SF,94109,B04,3,1557,,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,4,3,Nob Hill,"(37.7886527895166, -122.416853689502)",140220364-RC1 +160851507,54,16033741,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:31:25 AM,03/25/2016 11:32:56 AM,03/25/2016 11:33:36 AM,03/25/2016 11:33:45 AM,03/25/2016 11:42:08 AM,03/25/2016 11:53:09 AM,03/25/2016 12:05:37 PM,Code 2 Transport,03/25/2016 12:47:29 PM,1500 Block of JACKSON ST,San Francisco,94109,B01,41,1633,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7941946454164, -122.420567599988)",160851507-54 +140200154,E38,14006834,Medical Incident,01/20/2014,01/20/2014,01/20/2014 11:50:38 AM,01/20/2014 11:52:13 AM,01/20/2014 11:52:17 AM,01/20/2014 11:53:45 AM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/20/2014 11:54:04 AM,1100 Block of TURK ST,SF,94115,B02,5,3426,,3,3,false,Non Life-threatening,1,ENGINE,4,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",140200154-E38 +111370364,RC2,11045728,Alarms,05/17/2011,05/17/2011,05/17/2011 11:07:32 PM,05/17/2011 11:10:59 PM,05/17/2011 11:11:15 PM,05/17/2011 11:16:18 PM,05/17/2011 11:20:46 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/17/2011 11:32:18 PM,1200 Block of 3RD AVE,SF,94122,B05,12,7324,3,3,3,true,,1,RESCUE CAPTAIN,5,5,5,Inner Sunset,"(37.7647908455357, -122.459851190861)",111370364-RC2 +160774347,KM07,16030828,Medical Incident,03/17/2016,03/17/2016,03/17/2016 11:10:43 PM,03/17/2016 11:11:42 PM,03/17/2016 11:12:55 PM,03/17/2016 11:13:33 PM,03/17/2016 11:31:06 PM,03/17/2016 11:31:13 PM,03/17/2016 11:46:25 PM,Code 2 Transport,03/18/2016 12:11:47 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160774347-KM07 +112360080,B10,11077820,Alarms,08/24/2011,08/24/2011,08/24/2011 08:40:46 AM,08/24/2011 08:41:47 AM,08/24/2011 08:42:18 AM,08/24/2011 08:43:42 AM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 08:49:25 AM,100 Block of KISKA RD,SF,94124,B10,17,6625,3,3,3,false,,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7300498963351, -122.376015807467)",112360080-B10 +133190087,E03,13108317,Medical Incident,11/15/2013,11/15/2013,11/15/2013 08:27:23 AM,11/15/2013 08:29:49 AM,11/15/2013 08:30:11 AM,11/15/2013 08:31:18 AM,11/15/2013 08:35:26 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 08:39:18 AM,200 Block of JONES ST,SF,94102,B03,1,1456,2,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",133190087-E03 +112600371,86,11085911,Medical Incident,09/17/2011,09/17/2011,09/17/2011 07:38:05 PM,09/17/2011 07:38:57 PM,09/17/2011 07:39:27 PM,09/17/2011 07:41:24 PM,09/17/2011 07:42:46 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 07:52:17 PM,CONNECTICUT ST/25TH ST,SF,94107,B10,37,2615,3,E,3,true,,1,MEDIC,1,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",112600371-86 +112630381,54,11086992,Medical Incident,09/20/2011,09/20/2011,09/20/2011 07:59:40 PM,09/20/2011 08:00:15 PM,09/20/2011 08:02:38 PM,09/20/2011 08:07:46 PM,09/20/2011 08:12:55 PM,09/20/2011 08:27:58 PM,09/20/2011 08:48:10 PM,Code 2 Transport,09/20/2011 09:33:23 PM,500 Block of RANDOLPH ST,SF,94132,B09,33,8416,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7143246443256, -122.46754589794)",112630381-54 +160633363,75,16025228,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:42:05 PM,03/03/2016 07:43:32 PM,03/03/2016 07:47:02 PM,03/03/2016 07:47:19 PM,03/03/2016 08:10:44 PM,03/03/2016 08:12:24 PM,03/03/2016 08:35:50 PM,Code 2 Transport,03/03/2016 09:23:02 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",160633363-75 +140560154,T17,14018864,Alarms,02/25/2014,02/25/2014,02/25/2014 10:49:33 AM,02/25/2014 10:51:10 AM,02/25/2014 10:51:23 AM,02/25/2014 10:53:08 AM,02/25/2014 10:58:18 AM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,Fire,02/25/2014 11:09:34 AM,200 Block of RAYMOND AVE,SF,94134,B09,44,6264,3,3,3,true,Alarm,1,TRUCK,1,9,10,Visitacion Valley,"(37.7134600141273, -122.408147269548)",140560154-T17 +92780063,B01,9083149,HazMat,10/05/2009,10/04/2009,10/05/2009 07:53:10 AM,10/05/2009 07:55:15 AM,10/05/2009 07:56:03 AM,10/05/2009 07:58:23 AM,10/05/2009 07:59:35 AM,04/25/2016 03:26:41 PM,04/25/2016 03:26:41 PM,Other,10/05/2009 08:24:32 AM,800 Block of BROADWAY,SF,94133,B01,2,1353,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7973761566581, -122.411122316679)",092780063-B01 +122470112,E03,12081653,Structure Fire,09/03/2012,09/03/2012,09/03/2012 11:03:37 AM,09/03/2012 11:06:52 AM,09/03/2012 11:07:25 AM,09/03/2012 11:08:05 AM,09/03/2012 11:12:02 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 11:13:06 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,true,Fire,1,ENGINE,6,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",122470112-E03 +123660171,E01,12122433,Medical Incident,12/31/2012,12/31/2012,12/31/2012 12:52:22 PM,12/31/2012 12:53:18 PM,12/31/2012 12:54:03 PM,12/31/2012 12:54:52 PM,12/31/2012 12:57:03 PM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,12/31/2012 12:58:06 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",123660171-E01 +102460316,71,10077850,Medical Incident,09/03/2010,09/03/2010,09/03/2010 06:32:12 PM,09/03/2010 06:32:29 PM,09/03/2010 06:41:34 PM,09/03/2010 06:42:06 PM,09/03/2010 06:55:40 PM,09/03/2010 07:16:48 PM,09/03/2010 07:39:49 PM,Code 2 Transport,09/03/2010 08:13:50 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",102460316-71 +160112400,81,16004470,Medical Incident,01/11/2016,01/11/2016,01/11/2016 04:23:13 PM,01/11/2016 04:23:13 PM,01/11/2016 04:23:43 PM,01/11/2016 04:23:50 PM,01/11/2016 04:46:12 PM,01/11/2016 04:55:42 PM,01/11/2016 05:23:23 PM,Code 2 Transport,01/11/2016 05:59:30 PM,BAY ST/TAYLOR ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054171711156, -122.415241486546)",160112400-81 +113340021,94,11110486,Medical Incident,11/30/2011,11/29/2011,11/30/2011 01:35:29 AM,11/30/2011 01:37:08 AM,11/30/2011 01:38:25 AM,11/30/2011 01:38:35 AM,11/30/2011 01:57:32 AM,11/30/2011 02:13:11 AM,11/30/2011 02:34:12 AM,Code 2 Transport,11/30/2011 02:54:19 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,2,2,2,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",113340021-94 +123140051,79,12104380,Medical Incident,11/09/2012,11/08/2012,11/09/2012 02:53:01 AM,11/09/2012 02:54:09 AM,11/09/2012 02:54:58 AM,11/09/2012 02:55:05 AM,11/09/2012 02:58:03 AM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Fire,11/09/2012 03:19:45 AM,TAYLOR ST/UNION ST,SF,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7998242757284, -122.414119718304)",123140051-79 +160202262,77,16008055,Medical Incident,01/20/2016,01/20/2016,01/20/2016 02:53:15 PM,01/20/2016 02:55:21 PM,01/20/2016 02:57:58 PM,01/20/2016 02:58:10 PM,01/20/2016 03:10:39 PM,01/20/2016 03:34:49 PM,01/20/2016 03:34:50 PM,Code 3 Transport,01/20/2016 04:45:42 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160202262-77 +120510086,E13,12016790,Medical Incident,02/20/2012,02/20/2012,02/20/2012 08:16:21 AM,02/20/2012 08:17:02 AM,02/20/2012 08:17:14 AM,02/20/2012 08:18:12 AM,02/20/2012 08:19:24 AM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 08:31:10 AM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,1,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",120510086-E13 +123050484,79,12101444,Medical Incident,10/31/2012,10/31/2012,10/31/2012 09:34:01 PM,10/31/2012 09:35:47 PM,10/31/2012 09:36:40 PM,10/31/2012 09:36:56 PM,10/31/2012 09:40:14 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 09:45:48 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123050484-79 +111920070,94,11063303,Medical Incident,07/11/2011,07/11/2011,07/11/2011 08:06:10 AM,07/11/2011 08:07:48 AM,07/11/2011 08:08:12 AM,07/11/2011 08:08:56 AM,07/11/2011 08:26:49 AM,07/11/2011 08:39:17 AM,07/11/2011 09:04:12 AM,Code 2 Transport,07/11/2011 09:25:24 AM,100 Block of MASON ST,SF,94102,B03,1,1366,1,1,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",111920070-94 +133130188,E03,13106371,Medical Incident,11/09/2013,11/09/2013,11/09/2013 11:49:42 AM,11/09/2013 11:50:16 AM,11/09/2013 11:50:26 AM,11/09/2013 11:50:40 AM,11/09/2013 11:54:04 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 12:05:25 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",133130188-E03 +122150359,E36,12071516,Structure Fire,08/02/2012,08/02/2012,08/02/2012 11:52:01 PM,08/02/2012 11:52:02 PM,08/02/2012 11:52:14 PM,04/25/2016 01:57:25 PM,08/02/2012 11:52:42 PM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Other,08/02/2012 11:53:26 PM,FRANKLIN ST/FELL ST,SF,94102,B02,36,3213,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7761587640112, -122.421148424067)",122150359-E36 +111500082,E05,11049622,Medical Incident,05/30/2011,05/30/2011,05/30/2011 08:15:03 AM,05/30/2011 08:15:37 AM,05/30/2011 08:16:02 AM,05/30/2011 08:16:48 AM,05/30/2011 08:18:45 AM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 08:33:10 AM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7789870702557, -122.436051970399)",111500082-E05 +130150378,E18,13005270,Alarms,01/15/2013,01/15/2013,01/15/2013 09:36:28 PM,01/15/2013 09:36:28 PM,01/15/2013 09:37:14 PM,01/15/2013 09:38:09 PM,01/15/2013 09:40:53 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Other,01/15/2013 09:57:48 PM,39TH AV/ORTEGA ST,SF,94116,B08,18,7623,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7514263278688, -122.497770413464)",130150378-E18 +130710213,KM02,13023716,Medical Incident,03/12/2013,03/12/2013,03/12/2013 02:21:32 PM,03/12/2013 02:23:19 PM,03/12/2013 02:23:35 PM,03/12/2013 02:24:14 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 02:25:37 PM,1900 Block of LOMBARD ST,SF,94123,B04,16,3461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Marina,"(37.8002723548355, -122.433605968659)",130710213-KM02 +160373542,79,16014900,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:14:56 PM,02/06/2016 08:14:56 PM,02/06/2016 08:19:27 PM,02/06/2016 08:19:36 PM,02/06/2016 08:44:31 PM,02/06/2016 09:06:10 PM,02/06/2016 09:23:43 PM,Code 2 Transport,02/06/2016 09:49:15 PM,1700 Block of LA SALLE AVE,San Francisco,94124,B10,25,6467,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7380275003224, -122.391497205515)",160373542-79 +110580315,78,11019205,Medical Incident,02/27/2011,02/27/2011,02/27/2011 08:28:39 PM,02/27/2011 08:29:42 PM,02/27/2011 08:35:47 PM,02/27/2011 08:35:54 PM,02/27/2011 08:48:50 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Patient Declined Transport,02/27/2011 09:12:45 PM,200 Block of THRIFT ST,SF,94112,B09,33,8415,2,2,2,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7173776032909, -122.461431734706)",110580315-78 +122580307,E22,12085394,Medical Incident,09/14/2012,09/14/2012,09/14/2012 07:50:26 PM,09/14/2012 07:50:57 PM,09/14/2012 07:51:18 PM,09/14/2012 07:52:03 PM,09/14/2012 07:55:11 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/14/2012 07:59:32 PM,1800 Block of 9TH AVE,SF,94122,B08,22,7336,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7537831979209, -122.465528559203)",122580307-E22 +112680081,AM16,11088491,Medical Incident,09/25/2011,09/24/2011,09/25/2011 06:32:29 AM,09/25/2011 06:34:12 AM,09/25/2011 06:35:08 AM,09/25/2011 06:35:44 AM,09/25/2011 06:44:31 AM,09/25/2011 07:01:26 AM,09/25/2011 07:05:48 AM,Code 2 Transport,09/25/2011 07:52:25 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",112680081-AM16 +160353229,KM05,16013965,Medical Incident,02/04/2016,02/04/2016,02/04/2016 07:06:32 PM,02/04/2016 07:08:36 PM,02/04/2016 07:09:50 PM,02/04/2016 07:10:36 PM,02/04/2016 07:16:55 PM,02/04/2016 07:34:04 PM,02/04/2016 07:42:17 PM,Code 2 Transport,02/04/2016 07:55:21 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160353229-KM05 +120400119,E03,12013280,Medical Incident,02/09/2012,02/09/2012,02/09/2012 10:48:52 AM,02/09/2012 10:49:36 AM,02/09/2012 10:49:45 AM,02/09/2012 10:50:00 AM,02/09/2012 10:52:43 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 10:59:31 AM,LARKIN ST/MARKET ST,SF,94103,B02,1,2317,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",120400119-E03 +160252864,73,16010035,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:43:49 PM,01/25/2016 05:43:49 PM,01/25/2016 05:45:52 PM,01/25/2016 05:48:10 PM,01/25/2016 05:51:33 PM,01/25/2016 05:56:54 PM,01/25/2016 06:12:49 PM,Code 2 Transport,01/25/2016 07:02:08 PM,300 Block of POST ST,San Francisco,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7884505799048, -122.407597246833)",160252864-73 +110590082,T06,11019311,Alarms,02/28/2011,02/28/2011,02/28/2011 09:23:02 AM,02/28/2011 09:24:20 AM,02/28/2011 09:25:07 AM,02/28/2011 09:26:19 AM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Other,02/28/2011 09:32:12 AM,1000 Block of PAGE ST,SF,94117,B05,21,4144,3,3,3,false,,1,TRUCK,3,5,5,Haight Ashbury,"(37.7720428462416, -122.438055986147)",110590082-T06 +121430164,E41,12047518,Medical Incident,05/22/2012,05/22/2012,05/22/2012 12:07:19 PM,05/22/2012 12:09:18 PM,05/22/2012 12:09:42 PM,05/22/2012 12:11:16 PM,05/22/2012 12:13:04 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 12:24:58 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",121430164-E41 +160233149,61,16009294,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:31:29 PM,01/23/2016 07:34:19 PM,01/23/2016 07:34:41 PM,01/23/2016 07:37:58 PM,01/23/2016 07:51:10 PM,01/23/2016 08:16:09 PM,01/23/2016 08:15:23 PM,Code 3 Transport,01/23/2016 09:04:43 PM,300 Block of SUTTER ST,San Francisco,94108,B01,1,1324,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7895868780225, -122.406188769255)",160233149-61 +160911781,KM01,16036074,Medical Incident,03/31/2016,03/31/2016,03/31/2016 01:16:23 PM,03/31/2016 01:17:35 PM,03/31/2016 01:17:48 PM,03/31/2016 01:18:24 PM,03/31/2016 01:21:49 PM,03/31/2016 01:45:34 PM,03/31/2016 02:05:52 PM,Code 3 Transport,03/31/2016 02:16:54 PM,100 Block of BERTITA ST,San Francisco,94112,B09,15,8331,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7187468512865, -122.440406418549)",160911781-KM01 +160492996,KM01,16019828,Medical Incident,02/18/2016,02/18/2016,02/18/2016 05:59:57 PM,02/18/2016 05:59:57 PM,02/18/2016 06:00:14 PM,02/18/2016 06:00:35 PM,02/18/2016 06:19:05 PM,02/18/2016 06:37:26 PM,02/18/2016 06:49:14 PM,Code 2 Transport,02/18/2016 07:40:54 PM,0 Block of STOCKTON ST,San Francisco,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7860199001268, -122.406349577387)",160492996-KM01 +160723225,AM24,16028778,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:05:32 PM,03/12/2016 09:06:37 PM,03/12/2016 09:07:26 PM,03/12/2016 09:08:10 PM,03/12/2016 09:34:55 PM,03/12/2016 09:34:56 PM,03/12/2016 09:56:16 PM,Code 2 Transport,03/12/2016 10:27:41 PM,MARKET ST/FRONT ST,San Francisco,94105,B01,13,1136,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7917160576835, -122.398264448196)",160723225-AM24 +122820058,E36,12093246,Medical Incident,10/08/2012,10/07/2012,10/08/2012 06:47:50 AM,10/08/2012 06:48:53 AM,10/08/2012 06:49:02 AM,10/08/2012 06:51:48 AM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/08/2012 06:56:02 AM,7TH ST/STEVENSON ST,SF,94103,B02,36,2316,3,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7800058680664, -122.411933410089)",122820058-E36 +112950260,T17,11097910,Structure Fire,10/22/2011,10/22/2011,10/22/2011 05:31:57 PM,10/22/2011 05:31:57 PM,10/22/2011 05:32:23 PM,10/22/2011 05:33:17 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 05:36:08 PM,HUDSON AV/ARDATH CT,SF,94124,B10,17,6624,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",112950260-T17 +103460041,67,10110829,Medical Incident,12/12/2010,12/11/2010,12/12/2010 02:18:45 AM,12/12/2010 02:19:32 AM,12/12/2010 02:19:57 AM,12/12/2010 02:20:18 AM,12/12/2010 02:29:56 AM,12/12/2010 02:30:24 AM,12/12/2010 02:42:50 AM,Code 3 Transport,12/12/2010 03:13:48 AM,MISSION ST/SANTA ROSA AV,SF,94112,B09,43,6116,3,3,3,true,,1,MEDIC,5,9,11,Outer Mission,"(37.7257617913569, -122.433982357283)",103460041-67 +123430223,93,12114647,Medical Incident,12/08/2012,12/08/2012,12/08/2012 02:17:04 PM,12/08/2012 02:17:59 PM,12/08/2012 02:18:44 PM,12/08/2012 02:19:07 PM,12/08/2012 02:24:23 PM,12/08/2012 02:45:57 PM,12/08/2012 03:04:01 PM,Code 2 Transport,12/08/2012 03:44:05 PM,0 Block of MATTHEW CT,SF,94124,B10,17,6641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7312962281442, -122.380133847121)",123430223-93 +113380108,RC1,11111948,Structure Fire,12/04/2011,12/04/2011,12/04/2011 08:01:13 AM,12/04/2011 08:02:33 AM,12/04/2011 08:02:48 AM,12/04/2011 08:10:56 AM,12/04/2011 08:14:30 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/04/2011 08:45:01 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,RESCUE CAPTAIN,10,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",113380108-RC1 +160440340,85,16017559,Medical Incident,02/13/2016,02/12/2016,02/13/2016 02:24:36 AM,02/13/2016 02:24:36 AM,02/13/2016 02:32:05 AM,02/13/2016 02:32:26 AM,02/13/2016 02:42:57 AM,02/13/2016 02:56:50 AM,02/13/2016 03:03:28 AM,Code 2 Transport,02/13/2016 03:28:34 AM,DIVISADERO ST/POST ST,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7843186737916, -122.439684677541)",160440340-85 +123400392,E32,12113590,Medical Incident,12/05/2012,12/05/2012,12/05/2012 09:49:49 PM,12/05/2012 09:50:35 PM,12/05/2012 09:50:45 PM,12/05/2012 09:53:24 PM,12/05/2012 09:58:41 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/05/2012 10:16:26 PM,2500 Block of SAN JOSE AVE,SF,94112,B09,33,8325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7174592203046, -122.449239609655)",123400392-E32 +160631179,AM02,16025014,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:07:10 AM,03/03/2016 10:07:47 AM,03/03/2016 10:08:26 AM,03/03/2016 10:09:04 AM,03/03/2016 10:15:25 AM,03/03/2016 10:25:27 AM,03/03/2016 10:43:48 AM,Code 2 Transport,03/03/2016 11:14:11 AM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",160631179-AM02 +122930345,85,12097275,Medical Incident,10/19/2012,10/19/2012,10/19/2012 06:51:37 PM,10/19/2012 06:53:27 PM,10/19/2012 06:54:26 PM,10/19/2012 06:54:33 PM,10/19/2012 07:05:59 PM,10/19/2012 07:18:18 PM,10/19/2012 07:38:04 PM,Code 2 Transport,10/19/2012 08:00:58 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",122930345-85 +131180090,E51,13039624,Water Rescue,04/28/2013,04/28/2013,04/28/2013 08:33:37 AM,04/28/2013 08:35:30 AM,04/28/2013 08:37:09 AM,04/28/2013 08:38:30 AM,04/28/2013 08:42:52 AM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/28/2013 08:58:37 AM,900 Block of MARINE DR,PR,94129,B99,51,4628,3,3,3,true,Fire,1,ENGINE,3,7,2,Presidio,"(37.8089767888005, -122.47460956271)",131180090-E51 +121020073,E15,12033732,Medical Incident,04/11/2012,04/10/2012,04/11/2012 07:48:04 AM,04/11/2012 07:48:50 AM,04/11/2012 07:49:06 AM,04/11/2012 07:50:14 AM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 07:53:18 AM,700 Block of VICTORIA ST,SF,94127,B09,15,8443,3,1,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7241304877603, -122.464177585076)",121020073-E15 +121340224,E26,12044648,Structure Fire,05/13/2012,05/13/2012,05/13/2012 04:23:11 PM,05/13/2012 04:23:11 PM,05/13/2012 04:23:32 PM,05/13/2012 04:25:22 PM,05/13/2012 04:27:06 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 04:27:47 PM,CHENERY ST/MIZPAH ST,SF,94131,B06,26,8175,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7356694504066, -122.438821243656)",121340224-E26 +132000282,E07,13067871,Medical Incident,07/19/2013,07/19/2013,07/19/2013 04:51:47 PM,07/19/2013 04:54:01 PM,07/19/2013 04:55:56 PM,07/19/2013 04:57:08 PM,07/19/2013 05:00:43 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 05:10:34 PM,0 Block of LIBERTY ST,SF,94110,B06,7,5456,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7575809773167, -122.422275311384)",132000282-E07 +160443619,64,16017881,Medical Incident,02/13/2016,02/13/2016,02/13/2016 09:53:13 PM,02/13/2016 09:53:13 PM,02/13/2016 09:53:13 PM,02/13/2016 09:53:13 PM,02/13/2016 09:53:13 PM,02/13/2016 10:03:19 PM,02/13/2016 10:08:10 PM,Code 2 Transport,02/13/2016 10:35:02 PM,900 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7897784507453, -122.415533858364)",160443619-64 +121470084,B01,12048725,Alarms,05/26/2012,05/26/2012,05/26/2012 09:13:03 AM,05/26/2012 09:14:36 AM,05/26/2012 09:14:46 AM,05/26/2012 09:15:44 AM,05/26/2012 09:20:30 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Fire,05/26/2012 09:24:52 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",121470084-B01 +160362118,55,16014274,Traffic Collision,02/05/2016,02/05/2016,02/05/2016 01:41:50 PM,02/05/2016 01:41:50 PM,02/05/2016 01:42:23 PM,02/05/2016 01:42:39 PM,02/05/2016 01:46:39 PM,02/05/2016 02:07:54 PM,02/05/2016 02:30:21 PM,Code 2 Transport,02/05/2016 03:12:02 PM,11TH AV/MORAGA ST,San Francisco,94122,B08,22,7343,3,A,2,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.756486205733, -122.467931638181)",160362118-55 +160521610,KM04,16020810,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:47:37 PM,02/21/2016 12:47:37 PM,02/21/2016 12:47:52 PM,02/21/2016 12:49:02 PM,02/21/2016 12:54:03 PM,02/21/2016 12:59:03 PM,02/21/2016 01:22:21 PM,Code 2 Transport,02/21/2016 02:07:04 PM,GOLDEN GATE AV/WEBSTER ST,San Francisco,94115,B04,5,3516,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7797827933333, -122.430233236395)",160521610-KM04 +160201618,70,16007988,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:01:26 PM,01/20/2016 12:01:26 PM,01/20/2016 12:01:45 PM,01/20/2016 12:01:54 PM,01/20/2016 12:06:20 PM,01/20/2016 12:20:51 PM,01/20/2016 12:31:06 PM,Code 2 Transport,01/20/2016 12:46:25 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160201618-70 +132520312,55,13085299,Medical Incident,09/09/2013,09/09/2013,09/09/2013 07:49:21 PM,09/09/2013 07:51:33 PM,09/09/2013 08:14:12 PM,09/09/2013 08:14:23 PM,09/09/2013 08:22:20 PM,09/09/2013 08:38:51 PM,09/09/2013 08:47:10 PM,Code 2 Transport,09/09/2013 09:14:46 PM,1900 Block of IRVING ST,SF,94122,B08,22,7424,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7635459300897, -122.478732502612)",132520312-55 +122710248,E41,12089497,Medical Incident,09/27/2012,09/27/2012,09/27/2012 05:39:35 PM,09/27/2012 05:40:03 PM,09/27/2012 05:41:35 PM,09/27/2012 05:42:54 PM,09/27/2012 05:45:22 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/27/2012 05:46:17 PM,LARKIN ST/FILBERT ST,SF,94109,B01,41,1626,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.7999024355319, -122.420882637336)",122710248-E41 +102890351,T16,10092320,Alarms,10/16/2010,10/16/2010,10/16/2010 09:14:27 PM,10/16/2010 09:16:23 PM,10/16/2010 09:16:49 PM,10/16/2010 09:18:14 PM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/16/2010 09:36:15 PM,2300 Block of LOMBARD ST,SF,94123,B04,16,4115,3,3,3,false,,1,TRUCK,3,4,2,Marina,"(37.7994372928279, -122.440182465352)",102890351-T16 +120910371,E18,12030298,Medical Incident,03/31/2012,03/31/2012,03/31/2012 11:13:16 PM,03/31/2012 11:13:58 PM,03/31/2012 11:14:12 PM,03/31/2012 11:15:37 PM,03/31/2012 11:17:59 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,Other,03/31/2012 11:45:00 PM,1500 Block of 31ST AVE,SF,94122,B08,18,7535,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7583357019527, -122.489587661906)",120910371-E18 +132840333,93,13096751,Medical Incident,10/11/2013,10/11/2013,10/11/2013 08:57:54 PM,10/11/2013 08:58:42 PM,10/11/2013 09:05:06 PM,04/25/2016 01:50:18 PM,10/11/2013 09:16:27 PM,10/11/2013 09:36:03 PM,10/11/2013 10:15:01 PM,Code 2 Transport,10/11/2013 10:39:44 PM,FILLMORE ST/EDDY ST,SF,94115,B05,5,3536,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7814283698384, -122.432328983123)",132840333-93 +160430448,AM24,16017165,Medical Incident,02/12/2016,02/11/2016,02/12/2016 06:04:20 AM,02/12/2016 06:04:42 AM,02/12/2016 06:09:44 AM,02/12/2016 06:09:59 AM,02/12/2016 06:14:13 AM,02/12/2016 06:33:06 AM,02/12/2016 06:57:28 AM,Code 2 Transport,02/12/2016 07:27:19 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160430448-AM24 +160630678,78,16024969,Medical Incident,03/03/2016,03/02/2016,03/03/2016 07:40:37 AM,03/03/2016 07:42:51 AM,03/03/2016 07:43:12 AM,03/03/2016 07:43:23 AM,03/03/2016 07:59:09 AM,03/03/2016 08:10:29 AM,03/03/2016 08:26:28 AM,Code 2 Transport,03/03/2016 09:08:39 AM,MISSION ST/11TH ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160630678-78 +123600043,E38,12120399,Citizen Assist / Service Call,12/25/2012,12/24/2012,12/25/2012 05:29:34 AM,12/25/2012 05:31:21 AM,12/25/2012 05:31:31 AM,12/25/2012 05:33:11 AM,12/25/2012 05:35:33 AM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Fire,12/25/2012 06:02:17 AM,2100 Block of WASHINGTON ST,SF,94109,B04,38,3331,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7923752292486, -122.428636628697)",123600043-E38 +112070324,67,11068506,Medical Incident,07/26/2011,07/26/2011,07/26/2011 09:33:44 PM,07/26/2011 09:34:26 PM,07/26/2011 09:34:41 PM,07/26/2011 09:34:49 PM,07/26/2011 09:37:49 PM,07/26/2011 09:49:44 PM,07/26/2011 09:52:46 PM,Code 2 Transport,07/26/2011 10:21:31 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",112070324-67 +102860130,KM04,10091076,Medical Incident,10/13/2010,10/13/2010,10/13/2010 10:18:27 AM,10/13/2010 10:20:22 AM,10/13/2010 10:21:04 AM,10/13/2010 10:21:46 AM,10/13/2010 10:30:03 AM,10/13/2010 10:49:03 AM,10/13/2010 11:12:22 AM,Code 2 Transport,10/13/2010 11:42:54 AM,GREAT HY/LINCOLN WY,SF,94122,B08,23,7722,1,1,2,false,,1,PRIVATE,1,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",102860130-KM04 +131630141,E03,13055338,Medical Incident,06/12/2013,06/12/2013,06/12/2013 10:33:23 AM,06/12/2013 10:34:24 AM,06/12/2013 10:35:57 AM,04/25/2016 01:52:20 PM,06/12/2013 10:39:36 AM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/12/2013 10:42:39 AM,CEDAR ST/POLK ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",131630141-E03 +120660191,58,12021832,Medical Incident,03/06/2012,03/06/2012,03/06/2012 12:31:40 PM,03/06/2012 12:32:27 PM,03/06/2012 12:32:43 PM,04/25/2016 01:59:48 PM,03/06/2012 12:34:57 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,No Merit,03/06/2012 12:50:08 PM,3200 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,None,None,None,"(37.7475912199361, -122.387182780653)",120660191-58 +122030238,86,12067511,Medical Incident,07/21/2012,07/21/2012,07/21/2012 03:34:43 PM,07/21/2012 03:35:13 PM,07/21/2012 03:37:48 PM,07/21/2012 03:37:58 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,04/25/2016 01:57:37 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",122030238-86 +120370008,E31,12012207,Medical Incident,02/06/2012,02/05/2012,02/06/2012 12:17:49 AM,02/06/2012 12:19:44 AM,02/06/2012 12:22:38 AM,02/06/2012 12:23:55 AM,02/06/2012 12:26:22 AM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/06/2012 12:30:26 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",120370008-E31 +160433530,52,16017473,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:11:26 PM,02/12/2016 09:11:26 PM,02/12/2016 09:11:26 PM,02/12/2016 09:11:26 PM,02/12/2016 09:11:26 PM,02/12/2016 09:36:50 PM,02/12/2016 09:56:58 PM,Code 2 Transport,02/12/2016 10:35:37 PM,9TH ST/HOWARD ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",160433530-52 +103240057,94,10103725,Medical Incident,11/20/2010,11/19/2010,11/20/2010 06:09:02 AM,11/20/2010 06:09:41 AM,11/20/2010 06:09:55 AM,11/20/2010 06:12:30 AM,11/20/2010 06:15:01 AM,11/20/2010 06:19:41 AM,11/20/2010 06:34:57 AM,Code 2 Transport,11/20/2010 06:59:54 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",103240057-94 +160131199,60,16005141,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:11:39 AM,01/13/2016 10:17:15 AM,01/13/2016 10:17:44 AM,01/13/2016 10:19:21 AM,01/13/2016 10:22:34 AM,01/13/2016 10:57:10 AM,01/13/2016 11:11:33 AM,Code 2 Transport,01/13/2016 11:40:24 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",160131199-60 +121940428,E02,12064754,Medical Incident,07/12/2012,07/12/2012,07/12/2012 11:26:53 PM,07/12/2012 11:27:08 PM,07/12/2012 11:27:32 PM,07/12/2012 11:29:32 PM,07/12/2012 11:30:37 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/13/2012 12:28:57 AM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",121940428-E02 +160151957,88,16006003,Medical Incident,01/15/2016,01/15/2016,01/15/2016 01:29:52 PM,01/15/2016 01:32:18 PM,01/15/2016 01:33:13 PM,01/15/2016 01:33:32 PM,01/15/2016 01:38:44 PM,01/15/2016 01:57:30 PM,01/15/2016 02:08:48 PM,Code 2 Transport,01/15/2016 03:13:48 PM,1100 Block of POST ST,San Francisco,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.786777482512, -122.420759970574)",160151957-88 +103570126,E05,10114527,Alarms,12/23/2010,12/23/2010,12/23/2010 10:29:40 AM,12/23/2010 10:31:42 AM,12/23/2010 10:35:30 AM,12/23/2010 10:36:31 AM,12/23/2010 10:40:01 AM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/23/2010 10:49:16 AM,800 Block of DIVISADERO ST,SF,94117,B05,21,4151,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7773095022254, -122.438391268776)",103570126-E05 +132730292,55,13092858,Medical Incident,09/30/2013,09/30/2013,09/30/2013 05:11:45 PM,09/30/2013 05:15:04 PM,09/30/2013 05:15:16 PM,09/30/2013 05:15:27 PM,09/30/2013 05:22:39 PM,09/30/2013 05:46:10 PM,09/30/2013 05:51:41 PM,Code 2 Transport,09/30/2013 06:25:10 PM,1700 Block of VAN NESS AVE,SF,94109,B04,41,3154,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",132730292-55 +111120316,B04,11037112,Structure Fire,04/22/2011,04/22/2011,04/22/2011 06:38:31 PM,04/22/2011 06:40:34 PM,04/22/2011 06:40:47 PM,04/22/2011 06:42:39 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 07:10:18 PM,3300 Block of CALIFORNIA ST,SF,94118,B04,10,4421,3,3,3,false,,1,CHIEF,8,5,2,Presidio Heights,"(37.7868893006416, -122.449282363366)",111120316-B04 +120750304,AP,12025014,Other,03/15/2012,03/15/2012,03/15/2012 07:26:53 PM,03/15/2012 07:26:53 PM,03/15/2012 07:26:53 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Fire,03/15/2012 07:27:32 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120750304-AP +130300396,D2,13010404,Structure Fire,01/30/2013,01/30/2013,01/30/2013 10:32:28 PM,01/30/2013 10:33:24 PM,01/30/2013 10:33:54 PM,04/25/2016 01:54:32 PM,01/30/2013 10:40:33 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/30/2013 10:41:19 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Alarm,1,CHIEF,9,2,6,Mission,"(37.7740948566882, -122.420001436964)",130300396-D2 +131020155,E21,13034248,Medical Incident,04/12/2013,04/12/2013,04/12/2013 12:13:10 PM,04/12/2013 12:13:33 PM,04/12/2013 12:13:44 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/12/2013 12:15:02 PM,0 Block of MUSEUM WAY,SF,94114,B05,6,5175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,5,8,Castro/Upper Market,"(37.7645174149932, -122.440219513694)",131020155-E21 +160742114,66,16029367,Medical Incident,03/14/2016,03/14/2016,03/14/2016 02:14:25 PM,03/14/2016 02:15:03 PM,03/14/2016 02:16:37 PM,03/14/2016 02:16:37 PM,03/14/2016 02:23:50 PM,03/14/2016 02:43:32 PM,03/14/2016 02:50:19 PM,Code 2 Transport,03/14/2016 03:39:49 PM,OCEAN AV/MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7239094042292, -122.435385085808)",160742114-66 +103000009,RS2,10095634,Structure Fire,10/27/2010,10/26/2010,10/27/2010 12:24:33 AM,10/27/2010 12:28:58 AM,10/27/2010 12:29:34 AM,10/27/2010 12:30:40 AM,10/27/2010 12:33:27 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 12:36:55 AM,200 Block of 14TH ST,SF,94103,B02,36,5215,3,3,3,false,,1,RESCUE SQUAD,2,2,9,Mission,"(37.7682847825555, -122.418885184858)",103000009-RS2 +103320054,71,10106173,Medical Incident,11/28/2010,11/27/2010,11/28/2010 04:21:41 AM,11/28/2010 04:22:52 AM,11/28/2010 04:23:05 AM,11/28/2010 04:23:37 AM,11/28/2010 04:25:26 AM,11/28/2010 04:52:40 AM,11/28/2010 05:06:51 AM,Code 2 Transport,11/28/2010 05:30:43 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",103320054-71 +110820272,T01,11027011,Alarms,03/23/2011,03/23/2011,03/23/2011 03:49:13 PM,03/23/2011 03:49:48 PM,03/23/2011 03:49:54 PM,03/23/2011 03:50:59 PM,03/23/2011 03:54:42 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 04:00:31 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7764354063246, -122.415064887666)",110820272-T01 +112930166,79,11097186,Medical Incident,10/20/2011,10/20/2011,10/20/2011 12:46:51 PM,10/20/2011 12:49:46 PM,10/20/2011 12:49:54 PM,10/20/2011 12:50:24 PM,10/20/2011 12:54:33 PM,10/20/2011 01:19:37 PM,10/20/2011 01:38:20 PM,Code 2 Transport,10/20/2011 02:08:27 PM,100 Block of STOCKTON ST,SF,94108,B01,1,1323,E,E,3,false,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7871003167622, -122.406426031165)",112930166-79 +123560334,E25,12119282,Gas Leak (Natural and LP Gases),12/21/2012,12/21/2012,12/21/2012 08:12:05 PM,12/21/2012 08:14:13 PM,12/21/2012 08:15:23 PM,12/21/2012 08:16:49 PM,12/21/2012 08:19:38 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 08:43:00 PM,0 Block of REUEL CT,SF,94124,B10,25,652,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",123560334-E25 +110020301,E14,11000774,Administrative,01/02/2011,01/02/2011,01/02/2011 08:08:52 PM,01/02/2011 08:08:54 PM,01/02/2011 08:09:07 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/02/2011 08:09:49 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",110020301-E14 +103340033,89,10106760,Medical Incident,11/30/2010,11/29/2010,11/30/2010 04:34:24 AM,11/30/2010 04:35:58 AM,11/30/2010 04:36:18 AM,11/30/2010 04:37:21 AM,11/30/2010 04:41:46 AM,11/30/2010 05:11:12 AM,11/30/2010 05:22:13 AM,Code 2 Transport,11/30/2010 05:50:18 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7777263414712, -122.409605982336)",103340033-89 +121340088,88,12044523,Medical Incident,05/13/2012,05/13/2012,05/13/2012 09:29:13 AM,05/13/2012 09:30:24 AM,05/13/2012 09:31:07 AM,05/13/2012 09:31:40 AM,05/13/2012 09:34:32 AM,05/13/2012 09:54:32 AM,05/13/2012 10:18:12 AM,Code 2 Transport,05/13/2012 10:48:31 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121340088-88 +121280156,T16,12042564,Alarms,05/07/2012,05/07/2012,05/07/2012 11:15:16 AM,05/07/2012 11:17:00 AM,05/07/2012 11:17:08 AM,05/07/2012 11:18:05 AM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 11:23:03 AM,1400 Block of BATTERY CAULFIELD RD,PR,94129,B99,51,4622,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.7918040090412, -122.475148791115)",121280156-T16 +110360154,82,11011806,Medical Incident,02/05/2011,02/05/2011,02/05/2011 11:22:14 AM,02/05/2011 11:22:59 AM,02/05/2011 11:23:21 AM,02/05/2011 11:25:36 AM,02/05/2011 11:27:00 AM,02/05/2011 11:42:59 AM,02/05/2011 11:51:01 AM,Code 2 Transport,02/05/2011 12:20:42 PM,100 Block of TERRA VISTA AVE,SF,94115,B04,10,4264,3,3,3,true,,1,MEDIC,1,5,2,Lone Mountain/USF,"(37.7812874242456, -122.444289968362)",110360154-82 +160302388,AM04,16011841,Medical Incident,01/30/2016,01/30/2016,01/30/2016 03:11:07 PM,01/30/2016 03:14:19 PM,01/30/2016 03:15:11 PM,01/30/2016 03:15:49 PM,01/30/2016 03:27:50 PM,01/30/2016 03:45:47 PM,01/30/2016 04:28:59 PM,Code 2 Transport,01/30/2016 04:49:36 PM,0 Block of STRATFORD DR,San Francisco,94132,B09,19,8727,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7238017236034, -122.473465365097)",160302388-AM04 +110500182,83,11016541,Medical Incident,02/19/2011,02/19/2011,02/19/2011 12:57:37 PM,02/19/2011 12:57:59 PM,02/19/2011 12:58:11 PM,02/19/2011 12:59:03 PM,02/19/2011 01:01:44 PM,02/19/2011 01:10:27 PM,02/19/2011 01:23:17 PM,Code 2 Transport,02/19/2011 01:54:12 PM,1000 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",110500182-83 +132470236,E01,13083372,Medical Incident,09/04/2013,09/04/2013,09/04/2013 02:55:16 PM,09/04/2013 02:59:44 PM,09/04/2013 03:03:27 PM,09/04/2013 03:03:31 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 03:17:22 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,2,2,true,Non Life-threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",132470236-E01 +111150147,RS1,11037915,Medical Incident,04/25/2011,04/25/2011,04/25/2011 10:59:56 AM,04/25/2011 11:01:03 AM,04/25/2011 11:01:24 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 11:08:14 AM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2157,3,3,3,false,,1,RESCUE SQUAD,5,3,6,Financial District/South Beach,"(37.7877559180409, -122.400975353818)",111150147-RS1 +111180191,E02,11038928,Medical Incident,04/28/2011,04/28/2011,04/28/2011 01:24:58 PM,04/28/2011 01:26:24 PM,04/28/2011 01:27:37 PM,04/28/2011 01:29:29 PM,04/28/2011 01:30:45 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 01:34:08 PM,200 Block of BROADWAY,SF,94111,B01,13,1155,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7985591075904, -122.401650967109)",111180191-E02 +130690268,E07,13023116,Medical Incident,03/10/2013,03/10/2013,03/10/2013 07:38:16 PM,03/10/2013 07:38:37 PM,03/10/2013 07:38:57 PM,03/10/2013 07:39:47 PM,03/10/2013 07:42:02 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 07:49:44 PM,2300 Block of BRYANT ST,SF,94110,B06,7,5474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7567981607842, -122.409455250729)",130690268-E07 +160293634,75,16011581,Traffic Collision,01/29/2016,01/29/2016,01/29/2016 10:07:15 PM,01/29/2016 10:07:15 PM,01/29/2016 10:07:44 PM,01/29/2016 10:08:10 PM,01/29/2016 10:20:10 PM,01/29/2016 11:16:18 PM,01/29/2016 11:37:22 PM,Code 2 Transport,01/30/2016 12:18:46 AM,HOWARD ST/2ND ST,San Francisco,94105,B03,1,2146,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7867789486792, -122.398256963317)",160293634-75 +160892187,KM09,16035364,Medical Incident,03/29/2016,03/29/2016,03/29/2016 02:15:41 PM,03/29/2016 02:18:39 PM,03/29/2016 02:19:02 PM,03/29/2016 02:20:32 PM,03/29/2016 02:31:09 PM,03/29/2016 02:52:16 PM,03/29/2016 03:35:41 PM,Code 2 Transport,03/29/2016 04:20:59 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160892187-KM09 +121370304,60,12045612,Medical Incident,05/16/2012,05/16/2012,05/16/2012 05:00:50 PM,05/16/2012 05:01:51 PM,05/16/2012 05:02:05 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,04/25/2016 01:58:39 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7642910155103, -122.418689416733)",121370304-60 +160440413,70,16017574,Medical Incident,02/13/2016,02/12/2016,02/13/2016 03:05:07 AM,02/13/2016 03:05:07 AM,02/13/2016 03:06:31 AM,02/13/2016 03:06:38 AM,02/13/2016 03:11:46 AM,02/13/2016 03:21:33 AM,02/13/2016 03:27:23 AM,Code 2 Transport,02/13/2016 03:55:51 AM,STOCKTON ST/POST ST,San Francisco,94108,B01,1,1323,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7884994798068, -122.406771145217)",160440413-70 +160182984,58,16007367,Medical Incident,01/18/2016,01/18/2016,01/18/2016 08:00:08 PM,01/18/2016 08:02:48 PM,01/18/2016 08:03:02 PM,01/18/2016 08:03:13 PM,01/18/2016 08:11:07 PM,01/18/2016 08:25:31 PM,01/18/2016 08:30:43 PM,Code 2 Transport,01/18/2016 09:25:23 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160182984-58 +160903209,AM16,16035837,Medical Incident,03/30/2016,03/30/2016,03/30/2016 06:22:28 PM,03/30/2016 06:23:13 PM,03/30/2016 06:23:26 PM,03/30/2016 06:23:56 PM,03/30/2016 06:27:48 PM,03/30/2016 06:49:24 PM,03/30/2016 07:06:11 PM,Code 2 Transport,03/30/2016 07:27:47 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",160903209-AM16 +160620299,AM24,16024557,Medical Incident,03/02/2016,03/01/2016,03/02/2016 03:54:13 AM,03/02/2016 03:57:09 AM,03/02/2016 03:59:29 AM,03/02/2016 03:59:33 AM,03/02/2016 04:06:34 AM,03/02/2016 04:14:17 AM,03/02/2016 04:35:38 AM,Code 2 Transport,03/02/2016 04:58:28 AM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160620299-AM24 +132350365,77,13079458,Medical Incident,08/23/2013,08/23/2013,08/23/2013 09:48:57 PM,08/23/2013 09:49:55 PM,08/23/2013 09:50:24 PM,08/23/2013 09:50:30 PM,08/23/2013 09:54:37 PM,08/23/2013 10:07:03 PM,08/23/2013 10:20:56 PM,Code 2 Transport,08/23/2013 10:33:01 PM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",132350365-77 +160823452,83,16032721,Medical Incident,03/22/2016,03/22/2016,03/22/2016 07:40:51 PM,03/22/2016 07:46:11 PM,03/22/2016 07:47:04 PM,03/22/2016 07:47:17 PM,03/22/2016 07:51:35 PM,03/22/2016 08:05:24 PM,03/22/2016 08:26:59 PM,Code 2 Transport,03/22/2016 08:55:33 PM,1100 Block of MONTEREY BLVD,San Francisco,94127,B09,15,8547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7302033611066, -122.461140592975)",160823452-83 +121870144,54,12062274,Medical Incident,07/05/2012,07/05/2012,07/05/2012 10:28:12 AM,07/05/2012 10:29:59 AM,07/05/2012 10:30:20 AM,07/05/2012 10:30:26 AM,07/05/2012 10:34:06 AM,07/05/2012 10:47:53 AM,07/05/2012 11:10:51 AM,Code 2 Transport,07/05/2012 11:28:47 AM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",121870144-54 +122270213,B07,12075280,Structure Fire,08/14/2012,08/14/2012,08/14/2012 04:14:38 PM,08/14/2012 04:15:49 PM,08/14/2012 04:16:29 PM,08/14/2012 04:17:38 PM,08/14/2012 04:23:28 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/14/2012 04:46:17 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,Fire,1,CHIEF,5,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",122270213-B07 +132890144,E09,13098263,Citizen Assist / Service Call,10/16/2013,10/16/2013,10/16/2013 11:07:36 AM,10/16/2013 11:10:07 AM,10/16/2013 11:10:15 AM,10/16/2013 11:11:04 AM,10/16/2013 11:14:50 AM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 11:25:47 AM,1500 Block of OWENS ST,SF,94158,B03,29,2414,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7688607878339, -122.395396036624)",132890144-E09 +133320232,77,13112731,,11/28/2013,11/28/2013,11/28/2013 06:40:00 PM,11/28/2013 06:43:00 PM,11/28/2013 06:46:00 PM,11/28/2013 06:47:00 PM,11/28/2013 06:52:00 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,SFPD,11/28/2013 06:57:00 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",133320232-77 +110420073,E36,11013827,Medical Incident,02/11/2011,02/10/2011,02/11/2011 06:58:41 AM,02/11/2011 07:00:43 AM,02/11/2011 07:02:24 AM,02/11/2011 07:03:52 AM,02/11/2011 07:06:06 AM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 07:12:16 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110420073-E36 +112670183,87,11088226,Traffic Collision,09/24/2011,09/24/2011,09/24/2011 01:03:27 PM,09/24/2011 01:04:22 PM,09/24/2011 01:05:07 PM,09/24/2011 01:14:33 PM,09/24/2011 01:21:07 PM,09/24/2011 01:33:29 PM,09/24/2011 01:57:21 PM,Other,09/24/2011 02:30:30 PM,100 Block of VALENCIA ST,SF,94103,B02,36,5126,3,3,3,true,,1,MEDIC,3,2,8,Mission,"(37.7707273342452, -122.422514586133)",112670183-87 +111390217,KM02,11046235,Medical Incident,05/19/2011,05/19/2011,05/19/2011 02:33:16 PM,05/19/2011 02:36:12 PM,05/19/2011 02:36:44 PM,05/19/2011 02:37:52 PM,05/19/2011 02:43:05 PM,05/19/2011 02:58:29 PM,05/19/2011 03:13:00 PM,Code 2 Transport,05/19/2011 03:30:28 PM,VAN NESS AV/POST ST,SF,94109,B04,3,3161,1,1,2,false,,1,PRIVATE,2,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",111390217-KM02 +113560111,E16,11118136,Alarms,12/22/2011,12/22/2011,12/22/2011 09:29:02 AM,12/22/2011 09:30:50 AM,12/22/2011 09:31:00 AM,12/22/2011 09:32:06 AM,12/22/2011 09:34:45 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/22/2011 09:41:38 AM,2600 Block of DIVISADERO ST,SF,94115,B04,16,4164,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7939198042244, -122.441548284941)",113560111-E16 +160713332,60,16028377,Traffic Collision,03/11/2016,03/11/2016,03/11/2016 08:59:54 PM,03/11/2016 09:00:56 PM,03/11/2016 09:02:18 PM,03/11/2016 09:02:28 PM,03/11/2016 09:07:14 PM,03/11/2016 09:32:29 PM,03/11/2016 09:51:08 PM,Code 2 Transport,03/11/2016 10:25:18 PM,1100 Block of MARKET ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7807642254398, -122.412320907436)",160713332-60 +110740102,AM04,11024290,Medical Incident,03/15/2011,03/15/2011,03/15/2011 09:30:26 AM,03/15/2011 09:31:01 AM,03/15/2011 09:34:02 AM,03/15/2011 09:34:18 AM,03/15/2011 09:53:28 AM,03/15/2011 10:17:04 AM,03/15/2011 10:23:38 AM,Code 2 Transport,03/15/2011 10:53:15 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",110740102-AM04 +123500013,E01,12116891,Medical Incident,12/15/2012,12/14/2012,12/15/2012 01:11:24 AM,12/15/2012 01:11:49 AM,12/15/2012 01:12:50 AM,12/15/2012 01:14:35 AM,12/15/2012 01:15:29 AM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 01:26:25 AM,100 Block of MINNA ST,SF,94105,B03,1,2157,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7864591765358, -122.400780917444)",123500013-E01 +160010543,78,16000109,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:04:08 AM,01/01/2016 02:04:08 AM,01/01/2016 02:20:51 AM,01/01/2016 02:20:55 AM,01/01/2016 02:37:30 AM,01/01/2016 02:37:32 AM,01/01/2016 02:51:56 AM,Code 2 Transport,01/01/2016 03:27:49 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160010543-78 +160262390,56,16010352,Medical Incident,01/26/2016,01/26/2016,01/26/2016 03:24:39 PM,01/26/2016 03:26:00 PM,01/26/2016 03:27:21 PM,01/26/2016 03:28:23 PM,01/26/2016 03:31:19 PM,01/26/2016 03:49:33 PM,01/26/2016 04:09:14 PM,Code 2 Transport,01/26/2016 05:08:31 PM,0 Block of PANORAMA DR,San Francisco,94131,B08,20,5355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.746813546528, -122.45066943199)",160262390-56 +121520354,B01,12050488,Alarms,05/31/2012,05/31/2012,05/31/2012 11:36:03 PM,05/31/2012 11:37:00 PM,05/31/2012 11:37:14 PM,05/31/2012 11:39:57 PM,05/31/2012 11:42:47 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,05/31/2012 11:45:14 PM,200 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",121520354-B01 +160880367,KM07,16034812,Medical Incident,03/28/2016,03/27/2016,03/28/2016 04:22:20 AM,03/28/2016 04:25:05 AM,03/28/2016 04:27:16 AM,03/28/2016 04:27:16 AM,03/28/2016 04:38:11 AM,03/28/2016 04:53:10 AM,03/28/2016 05:06:00 AM,Code 2 Transport,03/28/2016 05:30:26 AM,MCALLISTER ST/STANYAN ST,San Francisco,94118,B07,21,4556,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7756849881498, -122.454846631094)",160880367-KM07 +112430022,E36,11080007,Medical Incident,08/31/2011,08/30/2011,08/31/2011 02:16:45 AM,08/31/2011 02:18:33 AM,08/31/2011 02:18:47 AM,08/31/2011 02:20:43 AM,08/31/2011 02:22:14 AM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Other,08/31/2011 02:30:57 AM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",112430022-E36 +160340694,AM02,16013270,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:06:05 AM,02/03/2016 08:06:53 AM,02/03/2016 08:07:13 AM,02/03/2016 08:11:35 AM,02/03/2016 08:15:03 AM,02/03/2016 08:33:00 AM,02/03/2016 08:42:57 AM,Code 3 Transport,02/03/2016 09:22:36 AM,2700 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",160340694-AM02 +130960301,KM09,13032282,Medical Incident,04/06/2013,04/06/2013,04/06/2013 06:26:17 PM,04/06/2013 06:26:40 PM,04/06/2013 06:27:36 PM,04/06/2013 06:28:37 PM,04/06/2013 06:30:59 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 06:32:48 PM,CYRIL MAGNIN ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",130960301-KM09 +103390138,86,10108485,Medical Incident,12/05/2010,12/05/2010,12/05/2010 10:21:48 AM,12/05/2010 10:23:58 AM,12/05/2010 10:24:58 AM,12/05/2010 10:25:23 AM,12/05/2010 10:38:12 AM,12/05/2010 11:06:56 AM,12/05/2010 11:19:08 AM,Code 2 Transport,12/05/2010 11:50:56 AM,600 Block of 29TH AVE,SF,94121,B07,14,7225,B,B,2,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7770361623385, -122.488877269241)",103390138-86 +123470082,93,12115934,Medical Incident,12/12/2012,12/12/2012,12/12/2012 08:11:41 AM,12/12/2012 08:11:52 AM,12/12/2012 08:12:06 AM,12/12/2012 08:13:17 AM,12/12/2012 08:20:04 AM,12/12/2012 08:33:28 AM,12/12/2012 08:41:00 AM,Code 2 Transport,12/12/2012 08:57:55 AM,19TH ST/FOLSOM ST,SF,94110,B06,7,5432,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7604988732472, -122.414841891781)",123470082-93 +132390230,E06,13080654,Medical Incident,08/27/2013,08/27/2013,08/27/2013 02:49:50 PM,08/27/2013 02:49:56 PM,08/27/2013 02:50:09 PM,08/27/2013 02:51:23 PM,08/27/2013 02:52:42 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/27/2013 03:03:01 PM,DUBOCE AV/NOE ST,SF,94114,B05,6,5131,3,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Haight Ashbury,"(37.7691783700971, -122.433572207997)",132390230-E06 +123360419,79,12111935,Medical Incident,12/01/2012,12/01/2012,12/01/2012 09:55:01 PM,12/01/2012 09:55:08 PM,12/01/2012 09:56:32 PM,12/01/2012 09:56:52 PM,12/01/2012 10:04:45 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,No Merit,12/01/2012 10:08:37 PM,EDDY ST/DIVISADERO ST,SF,94115,B05,5,4133,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7805884858227, -122.43892675401)",123360419-79 +160452924,60,16018253,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:33:47 PM,02/14/2016 07:36:10 PM,02/14/2016 07:40:53 PM,02/14/2016 07:45:38 PM,02/14/2016 07:56:36 PM,02/14/2016 08:47:47 PM,02/14/2016 08:59:19 PM,Code 3 Transport,02/14/2016 10:26:15 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160452924-60 +122330181,85,12077280,Medical Incident,08/20/2012,08/20/2012,08/20/2012 12:34:14 PM,08/20/2012 12:35:52 PM,08/20/2012 12:36:27 PM,08/20/2012 12:36:58 PM,08/20/2012 12:42:27 PM,08/20/2012 12:55:50 PM,08/20/2012 01:15:43 PM,Code 2 Transport,08/20/2012 01:29:22 PM,1300 Block of JONES ST,SF,94109,B01,41,1466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",122330181-85 +160913212,83,16036218,Medical Incident,03/31/2016,03/31/2016,03/31/2016 07:28:28 PM,03/31/2016 07:29:57 PM,03/31/2016 07:30:22 PM,03/31/2016 07:30:55 PM,03/31/2016 07:40:10 PM,03/31/2016 08:03:33 PM,03/31/2016 08:14:36 PM,Code 2 Transport,03/31/2016 08:45:55 PM,2300 Block of BUSH ST,San Francisco,94115,B04,38,3621,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7867600220292, -122.435937155417)",160913212-83 +131650141,E43,13056014,Medical Incident,06/14/2013,06/14/2013,06/14/2013 10:52:31 AM,06/14/2013 10:53:37 AM,06/14/2013 10:54:05 AM,06/14/2013 10:54:39 AM,06/14/2013 10:57:50 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 11:06:37 AM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",131650141-E43 +132020249,T07,13068533,Alarms,07/21/2013,07/21/2013,07/21/2013 05:46:48 PM,07/21/2013 05:48:31 PM,07/21/2013 05:49:30 PM,07/21/2013 05:51:25 PM,07/21/2013 05:52:35 PM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 05:54:01 PM,700 Block of SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7564291001834, -122.415618719176)",132020249-T07 +132440273,E13,13082427,Medical Incident,09/01/2013,09/01/2013,09/01/2013 05:42:19 PM,09/01/2013 05:42:52 PM,09/01/2013 05:43:03 PM,09/01/2013 05:43:48 PM,09/01/2013 05:46:40 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 05:50:08 PM,300 Block of KEARNY ST,SF,94104,B01,13,1243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912340846194, -122.40405694935)",132440273-E13 +113360492,T05,11111494,Structure Fire,12/02/2011,12/02/2011,12/02/2011 11:32:32 PM,12/02/2011 11:32:32 PM,12/02/2011 11:32:39 PM,12/02/2011 11:33:20 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 11:35:11 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,false,,1,TRUCK,2,2,5,Hayes Valley,"(37.7745179417306, -122.420877749983)",113360492-T05 +102310122,T01,10072653,Alarms,08/19/2010,08/19/2010,08/19/2010 10:29:56 AM,08/19/2010 10:30:51 AM,08/19/2010 10:31:05 AM,08/19/2010 10:31:23 AM,08/19/2010 10:34:30 AM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/19/2010 10:36:17 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,TRUCK,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",102310122-T01 +103050444,RC1,10097712,Medical Incident,11/01/2010,11/01/2010,11/01/2010 10:52:41 PM,11/01/2010 10:53:39 PM,11/01/2010 10:53:55 PM,11/01/2010 10:55:47 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/01/2010 11:01:51 PM,1100 Block of ELLIS ST,SF,94109,B02,5,3322,3,E,3,false,,1,RESCUE CAPTAIN,3,2,5,Western Addition,"(37.7831387146973, -122.425928739913)",103050444-RC1 +102360338,RS1,10074440,Structure Fire,08/24/2010,08/24/2010,08/24/2010 04:51:00 PM,08/24/2010 04:53:09 PM,08/24/2010 04:53:35 PM,08/24/2010 04:55:15 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/24/2010 04:58:54 PM,200 Block of VAN NESS AVE,SF,94102,B02,36,3166,3,3,3,true,,1,RESCUE SQUAD,8,2,6,Tenderloin,"(37.7775400880886, -122.419594770553)",102360338-RS1 +160040582,89,16001485,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:08:19 AM,01/04/2016 07:09:53 AM,01/04/2016 07:11:54 AM,01/04/2016 07:12:16 AM,01/04/2016 07:37:12 AM,01/04/2016 07:46:32 AM,01/04/2016 07:52:27 AM,Code 2 Transport,01/04/2016 08:31:24 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160040582-89 +160442603,62,16017787,Medical Incident,02/13/2016,02/13/2016,02/13/2016 05:22:32 PM,02/13/2016 05:25:34 PM,02/13/2016 05:26:05 PM,02/13/2016 05:26:13 PM,02/13/2016 05:36:23 PM,02/13/2016 06:11:12 PM,02/13/2016 06:48:47 PM,Code 2 Transport,02/13/2016 07:04:43 PM,2900 Block of ALEMANY BLVD,San Francisco,94112,B09,33,8353,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7116951666869, -122.45260734958)",160442603-62 +103470335,96,10111393,Medical Incident,12/13/2010,12/13/2010,12/13/2010 07:47:35 PM,12/13/2010 07:48:06 PM,12/13/2010 07:48:25 PM,12/13/2010 07:49:06 PM,12/13/2010 07:52:53 PM,12/13/2010 08:07:59 PM,12/13/2010 08:20:01 PM,Code 2 Transport,12/13/2010 08:45:48 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",103470335-96 +133340312,E01,13113361,Medical Incident,11/30/2013,11/30/2013,11/30/2013 08:23:00 PM,11/30/2013 08:23:50 PM,11/30/2013 08:24:03 PM,11/30/2013 08:25:03 PM,11/30/2013 08:27:23 PM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,11/30/2013 08:28:33 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",133340312-E01 +122390098,81,12079064,Medical Incident,08/26/2012,08/26/2012,08/26/2012 09:03:59 AM,08/26/2012 09:04:46 AM,08/26/2012 09:05:14 AM,08/26/2012 09:06:03 AM,08/26/2012 09:10:29 AM,08/26/2012 09:27:35 AM,08/26/2012 10:22:33 AM,Code 2 Transport,08/26/2012 10:22:55 AM,0 Block of SHRADER ST,SF,94117,B05,21,4542,E,2,2,true,Potentially Life-Threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",122390098-81 +102670410,E01,10084709,Alarms,09/24/2010,09/24/2010,09/24/2010 10:58:58 PM,09/24/2010 10:58:58 PM,09/24/2010 10:59:14 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Other,04/25/2016 02:08:26 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",102670410-E01 +131220009,T06,13040867,Citizen Assist / Service Call,05/02/2013,05/01/2013,05/02/2013 12:15:40 AM,05/02/2013 12:18:11 AM,05/02/2013 12:18:22 AM,05/02/2013 12:20:42 AM,05/02/2013 12:24:46 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Fire,05/02/2013 12:59:29 AM,4100 Block of 17TH ST,SF,94114,B05,6,5254,3,3,3,false,Alarm,1,TRUCK,1,5,8,Castro/Upper Market,"(37.762377512038, -122.437885503892)",131220009-T06 +130780078,E10,13025943,Alarms,03/19/2013,03/18/2013,03/19/2013 07:03:32 AM,03/19/2013 07:05:19 AM,03/19/2013 07:05:32 AM,03/19/2013 07:07:07 AM,03/19/2013 07:09:43 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 07:15:07 AM,1700 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,true,Alarm,1,ENGINE,2,5,2,Pacific Heights,"(37.7857001632116, -122.440081147256)",130780078-E10 +122200259,94,12073038,Medical Incident,08/07/2012,08/07/2012,08/07/2012 06:31:15 PM,08/07/2012 06:31:40 PM,08/07/2012 06:32:36 PM,08/07/2012 06:32:46 PM,08/07/2012 06:39:05 PM,04/25/2016 01:57:20 PM,04/25/2016 01:57:20 PM,Other,08/07/2012 06:40:26 PM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",122200259-94 +160542707,53,16021685,Medical Incident,02/23/2016,02/23/2016,02/23/2016 04:37:03 PM,02/23/2016 04:38:25 PM,02/23/2016 04:39:11 PM,02/23/2016 04:39:24 PM,02/23/2016 04:45:39 PM,02/23/2016 05:13:12 PM,02/23/2016 05:38:09 PM,Code 2 Transport,02/23/2016 06:15:16 PM,500 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",160542707-53 +160900157,65,16035546,Medical Incident,03/30/2016,03/29/2016,03/30/2016 01:26:18 AM,03/30/2016 01:26:18 AM,03/30/2016 01:26:39 AM,03/30/2016 01:26:48 AM,03/30/2016 01:34:47 AM,03/30/2016 01:47:03 AM,03/30/2016 02:11:02 AM,Code 2 Transport,03/30/2016 02:31:49 AM,500 Block of WASHINGTON ST,San Francisco,94111,B01,13,1211,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7956190455503, -122.403039422993)",160900157-65 +160291373,57,16011414,Medical Incident,01/29/2016,01/29/2016,01/29/2016 11:25:04 AM,01/29/2016 11:25:35 AM,01/29/2016 11:26:50 AM,01/29/2016 11:26:55 AM,01/29/2016 11:47:37 AM,01/29/2016 12:03:33 PM,01/29/2016 12:22:52 PM,Code 2 Transport,01/29/2016 01:06:13 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",160291373-57 +160033220,AM24,16001387,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:16:09 PM,01/03/2016 10:19:22 PM,01/03/2016 10:20:09 PM,01/03/2016 10:20:48 PM,01/03/2016 10:29:55 PM,01/03/2016 10:46:23 PM,01/03/2016 10:55:22 PM,Code 2 Transport,01/03/2016 11:23:40 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160033220-AM24 +160910087,KM07,16035926,Medical Incident,03/31/2016,03/30/2016,03/31/2016 12:40:35 AM,03/31/2016 12:42:24 AM,03/31/2016 12:43:33 AM,03/31/2016 12:43:55 AM,03/31/2016 12:48:51 AM,03/31/2016 01:13:36 AM,03/31/2016 01:40:04 AM,Code 2 Transport,03/31/2016 02:00:44 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160910087-KM07 +130980368,E31,13033003,Citizen Assist / Service Call,04/08/2013,04/08/2013,04/08/2013 06:02:42 PM,04/08/2013 06:03:53 PM,04/08/2013 06:04:03 PM,04/08/2013 06:05:31 PM,04/08/2013 06:06:29 PM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Fire,04/08/2013 06:10:16 PM,BALBOA ST/6TH AV,SF,94118,B07,31,7123,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7772347790254, -122.464010600266)",130980368-E31 +120870020,E07,12028736,Medical Incident,03/27/2012,03/26/2012,03/27/2012 03:14:17 AM,03/27/2012 03:15:30 AM,03/27/2012 03:16:26 AM,03/27/2012 03:17:58 AM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 03:18:52 AM,23RD ST/MISSION ST,SF,94110,B06,7,5511,3,2,2,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7538365885417, -122.418593946321)",120870020-E07 +112160311,63,11071446,Medical Incident,08/04/2011,08/04/2011,08/04/2011 06:07:27 PM,08/04/2011 06:08:30 PM,08/04/2011 06:08:39 PM,08/04/2011 06:08:59 PM,08/04/2011 06:11:32 PM,08/04/2011 06:26:02 PM,08/04/2011 06:39:12 PM,Code 2 Transport,08/04/2011 07:05:24 PM,0 Block of SENECA AVE,SF,94112,B09,15,8331,3,3,3,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7180164771834, -122.440448190039)",112160311-63 +123160086,E03,12105086,Medical Incident,11/11/2012,11/11/2012,11/11/2012 08:19:10 AM,11/11/2012 08:20:22 AM,11/11/2012 08:20:39 AM,11/11/2012 08:21:53 AM,11/11/2012 08:23:37 AM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/11/2012 08:31:37 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",123160086-E03 +112560360,96,11084580,Structure Fire,09/13/2011,09/13/2011,09/13/2011 10:34:29 PM,09/13/2011 10:35:33 PM,09/13/2011 10:35:46 PM,09/13/2011 10:36:19 PM,09/13/2011 10:41:49 PM,09/13/2011 11:04:17 PM,09/13/2011 11:10:09 PM,Code 2 Transport,09/13/2011 11:34:06 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,true,,1,MEDIC,7,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",112560360-96 +130700335,E16,13023467,Medical Incident,03/11/2013,03/11/2013,03/11/2013 06:15:33 PM,03/11/2013 06:17:29 PM,03/11/2013 06:18:26 PM,03/11/2013 06:19:59 PM,03/11/2013 06:22:04 PM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,Other,03/11/2013 06:45:11 PM,3200 Block of PIERCE ST,SF,94123,B04,16,3661,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7999225654371, -122.439366592122)",130700335-E16 +122860134,KM10,12094566,Medical Incident,10/12/2012,10/12/2012,10/12/2012 11:40:30 AM,10/12/2012 11:42:01 AM,10/12/2012 11:42:48 AM,10/12/2012 11:45:51 AM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 11:46:38 AM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",122860134-KM10 +122480061,E10,12081893,Medical Incident,09/04/2012,09/03/2012,09/04/2012 05:39:48 AM,09/04/2012 05:40:31 AM,09/04/2012 05:40:53 AM,09/04/2012 05:42:51 AM,09/04/2012 05:45:18 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/04/2012 05:54:30 AM,2900 Block of PINE ST,SF,94115,B05,10,4263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7866401451507, -122.444395104281)",122480061-E10 +160570235,KM03,16022600,Medical Incident,02/26/2016,02/25/2016,02/26/2016 02:09:41 AM,02/26/2016 02:09:41 AM,02/26/2016 02:09:55 AM,02/26/2016 02:11:10 AM,02/26/2016 02:17:37 AM,02/26/2016 02:37:17 AM,02/26/2016 02:51:28 AM,Code 2 Transport,02/26/2016 03:26:28 AM,POLK ST/FERN ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",160570235-KM03 +121700262,B10,12056492,Structure Fire,06/18/2012,06/18/2012,06/18/2012 04:37:58 PM,06/18/2012 04:38:44 PM,06/18/2012 04:39:07 PM,06/18/2012 04:40:50 PM,06/18/2012 04:44:09 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/18/2012 05:15:24 PM,DARTMOUTH ST/DWIGHT ST,SF,94134,B09,42,6321,3,3,3,false,Fire,1,CHIEF,4,9,9,Portola,"(37.7219734345459, -122.410000551295)",121700262-B10 +120340320,E38,12011378,Medical Incident,02/03/2012,02/03/2012,02/03/2012 07:22:50 PM,02/03/2012 07:24:15 PM,02/03/2012 07:24:30 PM,02/03/2012 07:25:30 PM,02/03/2012 07:27:00 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/03/2012 07:40:22 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",120340320-E38 +102710367,T14,10086147,Alarms,09/28/2010,09/28/2010,09/28/2010 07:38:25 PM,09/28/2010 07:40:13 PM,09/28/2010 07:40:37 PM,09/28/2010 07:42:03 PM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Other,09/28/2010 07:47:02 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,,1,TRUCK,3,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",102710367-T14 +131840127,58,13062644,Medical Incident,07/03/2013,07/03/2013,07/03/2013 10:50:50 AM,07/03/2013 10:52:56 AM,07/03/2013 10:53:32 AM,07/03/2013 10:55:46 AM,07/03/2013 11:00:12 AM,07/03/2013 11:09:48 AM,07/03/2013 11:22:11 AM,Code 2 Transport,07/03/2013 11:37:36 AM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",131840127-58 +131210092,84,13040578,Medical Incident,05/01/2013,04/30/2013,05/01/2013 07:57:47 AM,05/01/2013 07:59:19 AM,05/01/2013 07:59:41 AM,05/01/2013 08:00:24 AM,05/01/2013 08:07:15 AM,05/01/2013 08:17:23 AM,05/01/2013 08:49:35 AM,Code 2 Transport,05/01/2013 09:07:01 AM,WAYLAND ST/GOETTINGEN ST,SF,94134,B10,42,6334,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7256577115788, -122.406071234822)",131210092-84 +160743584,89,16029474,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:29:00 PM,03/14/2016 08:29:00 PM,03/14/2016 08:29:13 PM,03/14/2016 08:29:23 PM,03/14/2016 08:45:20 PM,03/14/2016 09:01:46 PM,03/14/2016 09:15:38 PM,Code 2 Transport,03/14/2016 09:57:02 PM,700 Block of LAKE MERCED BLVD,San Francisco,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.725763939763, -122.484189366799)",160743584-89 +120780301,KM11,12025972,Medical Incident,03/18/2012,03/18/2012,03/18/2012 05:41:09 PM,03/18/2012 05:41:38 PM,03/18/2012 05:41:50 PM,03/18/2012 05:42:21 PM,03/18/2012 05:48:31 PM,03/18/2012 06:15:02 PM,03/18/2012 06:15:07 PM,Code 2 Transport,03/18/2012 06:39:31 PM,MASON ST/JEFFERSON ST,SF,94133,B01,28,1344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8084210588577, -122.414164435002)",120780301-KM11 +131860311,94,13063543,Medical Incident,07/05/2013,07/05/2013,07/05/2013 05:49:45 PM,07/05/2013 05:52:22 PM,07/05/2013 05:58:42 PM,07/05/2013 05:58:46 PM,07/05/2013 06:12:43 PM,07/05/2013 06:41:34 PM,07/05/2013 06:48:05 PM,Code 2 Transport,07/05/2013 07:08:17 PM,1500 Block of BROADWAY,SF,94109,B04,41,3152,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",131860311-94 +121380287,E01,12045935,Medical Incident,05/17/2012,05/17/2012,05/17/2012 05:21:42 PM,05/17/2012 05:22:03 PM,05/17/2012 05:22:58 PM,05/17/2012 05:27:55 PM,05/17/2012 05:31:17 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/17/2012 05:49:32 PM,HAWTHORNE ST/HARRISON ST,SF,94107,B03,8,2151,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7834407522825, -122.396262402533)",121380287-E01 +160340908,75,16013296,Medical Incident,02/03/2016,02/03/2016,02/03/2016 09:20:33 AM,02/03/2016 09:20:33 AM,02/03/2016 09:20:49 AM,02/03/2016 09:20:56 AM,02/03/2016 09:27:18 AM,02/03/2016 09:42:52 AM,02/03/2016 10:08:59 AM,Code 2 Transport,02/03/2016 10:41:46 AM,POST ST/STOCKTON ST,San Francisco,94108,B01,1,1316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7884994798068, -122.406771145217)",160340908-75 +111450117,96,11048122,Medical Incident,05/25/2011,05/25/2011,05/25/2011 11:02:52 AM,05/25/2011 11:04:48 AM,05/25/2011 11:05:35 AM,05/25/2011 11:05:42 AM,04/25/2016 02:04:27 PM,05/25/2011 11:33:04 AM,05/25/2011 11:45:48 AM,Code 2 Transport,05/25/2011 12:29:23 PM,0 Block of ESPANOLA ST,SF,94124,B10,17,6641,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",111450117-96 +120670219,E08,12022233,Industrial Accidents,03/07/2012,03/07/2012,03/07/2012 01:04:58 PM,03/07/2012 01:05:32 PM,03/07/2012 01:06:50 PM,03/07/2012 01:08:24 PM,03/07/2012 01:10:53 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,03/07/2012 01:51:32 PM,600 Block of 16TH ST,SF,94158,B03,8,2364,3,3,3,true,Fire,1,ENGINE,1,3,6,Potrero Hill,"(37.7666921828262, -122.391724348278)",120670219-E08 +160530115,AM18,16021034,Medical Incident,02/22/2016,02/21/2016,02/22/2016 01:17:47 AM,02/22/2016 01:18:53 AM,02/22/2016 01:19:21 AM,02/22/2016 01:19:50 AM,02/22/2016 01:25:29 AM,02/22/2016 01:46:44 AM,02/22/2016 02:36:18 AM,Code 2 Transport,02/22/2016 02:36:20 AM,3600 Block of 21ST ST,San Francisco,94114,B06,11,5461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7564818532329, -122.429008644145)",160530115-AM18 +131230311,81,13041546,Medical Incident,05/03/2013,05/03/2013,05/03/2013 03:50:35 PM,05/03/2013 03:52:10 PM,05/03/2013 03:52:33 PM,05/03/2013 03:55:06 PM,05/03/2013 03:58:33 PM,05/03/2013 04:03:55 PM,05/03/2013 04:19:20 PM,Code 2 Transport,05/03/2013 04:55:31 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",131230311-81 +132660040,KM07,13090128,Medical Incident,09/23/2013,09/22/2013,09/23/2013 03:43:16 AM,09/23/2013 03:45:37 AM,09/23/2013 03:46:03 AM,09/23/2013 03:46:49 AM,09/23/2013 03:53:39 AM,09/23/2013 04:10:48 AM,09/23/2013 04:15:37 AM,Code 2 Transport,09/23/2013 04:57:55 AM,3000 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7525767678894, -122.413806459846)",132660040-KM07 +133430155,B01,13116290,Alarms,12/09/2013,12/09/2013,12/09/2013 11:02:41 AM,12/09/2013 11:02:42 AM,12/09/2013 11:03:03 AM,12/09/2013 11:03:36 AM,12/09/2013 11:08:21 AM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/09/2013 11:10:23 AM,600 Block of SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",133430155-B01 +121820160,T01,12060583,Medical Incident,06/30/2012,06/30/2012,06/30/2012 11:40:35 AM,06/30/2012 11:41:45 AM,06/30/2012 11:42:10 AM,06/30/2012 11:42:51 AM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,06/30/2012 11:47:42 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,3,6,South of Market,"(37.7822305756448, -122.410292026777)",121820160-T01 +122650111,93,12087491,Medical Incident,09/21/2012,09/21/2012,09/21/2012 10:35:25 AM,09/21/2012 10:37:17 AM,09/21/2012 10:39:51 AM,09/21/2012 10:40:36 AM,09/21/2012 10:49:01 AM,09/21/2012 11:04:28 AM,09/21/2012 11:25:04 AM,Code 2 Transport,09/21/2012 11:50:06 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",122650111-93 +121640347,75,12054532,Medical Incident,06/12/2012,06/12/2012,06/12/2012 08:34:03 PM,06/12/2012 08:37:08 PM,06/12/2012 08:37:52 PM,06/12/2012 08:38:38 PM,06/12/2012 08:39:41 PM,06/12/2012 08:58:55 PM,06/12/2012 09:02:52 PM,Code 2 Transport,06/12/2012 09:27:05 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",121640347-75 +130600244,68,13020172,Traffic Collision,03/01/2013,03/01/2013,03/01/2013 03:41:25 PM,03/01/2013 03:45:06 PM,03/01/2013 03:45:49 PM,03/01/2013 03:47:27 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 03:54:12 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,6,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",130600244-68 +160470266,75,16018772,Medical Incident,02/16/2016,02/15/2016,02/16/2016 03:10:35 AM,02/16/2016 03:10:35 AM,02/16/2016 03:10:44 AM,02/16/2016 03:11:02 AM,02/16/2016 03:22:47 AM,02/16/2016 03:54:44 AM,02/16/2016 04:08:04 AM,Code 2 Transport,02/16/2016 04:24:30 AM,0 Block of DORADO TER,San Francisco,94112,B09,15,8531,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7265374147017, -122.460652208639)",160470266-75 +160141652,74,16005557,Traffic Collision,01/14/2016,01/14/2016,01/14/2016 12:22:31 PM,01/14/2016 12:23:19 PM,01/14/2016 12:24:52 PM,01/14/2016 12:25:03 PM,01/14/2016 12:27:30 PM,01/14/2016 12:45:41 PM,01/14/2016 12:57:43 PM,Code 2 Transport,01/14/2016 01:43:39 PM,DIVISION ST/FLORIDA ST,San Francisco,94103,B02,29,5221,2,A,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7686927821621, -122.411758829475)",160141652-74 +140380121,T09,14012769,"Extrication / Entrapped (Machinery, Vehicle)",02/07/2014,02/07/2014,02/07/2014 10:16:09 AM,02/07/2014 10:16:44 AM,02/07/2014 10:19:57 AM,02/07/2014 10:22:04 AM,02/07/2014 10:24:10 AM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 10:54:54 AM,1500 Block of CORTLAND AVE,SF,94110,B10,32,5725,,3,3,false,Fire,1,TRUCK,3,10,9,Bernal Heights,"(37.7397539705219, -122.409182991807)",140380121-T09 +160012463,KM09,16000377,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:21:37 PM,01/01/2016 03:21:50 PM,01/01/2016 03:22:24 PM,01/01/2016 03:23:25 PM,01/01/2016 03:31:03 PM,01/01/2016 03:45:02 PM,01/01/2016 04:22:32 PM,Code 2 Transport,01/01/2016 04:36:20 PM,CLAY ST/DRUMM ST,San Francisco,94111,B01,13,1133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",160012463-KM09 +160263971,AM22,16010506,Traffic Collision,01/26/2016,01/26/2016,01/26/2016 11:38:51 PM,01/26/2016 11:38:51 PM,01/26/2016 11:39:50 PM,01/26/2016 11:40:29 PM,01/26/2016 11:46:39 PM,01/27/2016 12:24:48 AM,01/27/2016 01:06:52 AM,Code 2 Transport,01/27/2016 01:29:50 AM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",160263971-AM22 +112070089,E39,11068305,Medical Incident,07/26/2011,07/26/2011,07/26/2011 08:34:52 AM,07/26/2011 08:36:18 AM,07/26/2011 08:36:29 AM,07/26/2011 08:37:36 AM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 08:42:34 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",112070089-E39 +133370177,E01,13114214,Medical Incident,12/03/2013,12/03/2013,12/03/2013 12:03:34 PM,12/03/2013 12:04:43 PM,12/03/2013 12:05:36 PM,12/03/2013 12:05:57 PM,12/03/2013 12:07:25 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 12:24:18 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815063666429, -122.407932868203)",133370177-E01 +123000309,AM10,12099551,Medical Incident,10/26/2012,10/26/2012,10/26/2012 07:45:13 PM,10/26/2012 07:48:57 PM,10/26/2012 07:51:04 PM,04/25/2016 01:56:06 PM,10/26/2012 08:03:44 PM,10/26/2012 08:21:25 PM,10/26/2012 08:32:16 PM,Code 2 Transport,10/26/2012 07:52:46 PM,3600 Block of MISSION ST,SF,94110,B06,32,5631,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Bernal Heights,"(37.7381275371551, -122.424063544101)",123000309-AM10 +103360044,95,10107383,Medical Incident,12/02/2010,12/01/2010,12/02/2010 05:08:34 AM,12/02/2010 05:11:03 AM,12/02/2010 05:12:12 AM,12/02/2010 05:12:34 AM,12/02/2010 05:27:08 AM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,No Merit,12/02/2010 05:31:58 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",103360044-95 +121780129,E03,12059207,Medical Incident,06/26/2012,06/26/2012,06/26/2012 10:47:34 AM,06/26/2012 10:48:58 AM,06/26/2012 10:49:23 AM,06/26/2012 10:50:39 AM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 10:51:27 AM,1400 Block of PINE ST,SF,94109,B04,3,3122,E,E,3,true,Potentially Life-Threatening,1,ENGINE,4,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",121780129-E03 +110320282,AM14,11010576,Medical Incident,02/01/2011,02/01/2011,02/01/2011 05:48:09 PM,02/01/2011 05:49:28 PM,02/01/2011 05:49:56 PM,02/01/2011 05:50:29 PM,02/01/2011 05:54:18 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/01/2011 05:58:52 PM,500 Block of ALABAMA ST,SF,94110,B02,7,5244,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7622752702451, -122.412180783552)",110320282-AM14 +102540081,E12,10080212,Odor (Strange / Unknown),09/11/2010,09/10/2010,09/11/2010 06:54:59 AM,09/11/2010 06:56:14 AM,09/11/2010 06:56:54 AM,09/11/2010 06:59:44 AM,09/11/2010 07:02:11 AM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Fire,09/11/2010 07:05:23 AM,"CALL BOX: 500 BUENA VISTA WEST AV,SF",SF,94117,B05,12,5142,3,3,3,true,,1,ENGINE,1,5,8,Haight Ashbury,"(37.7659949367554, -122.442564264503)",102540081-E12 +112600044,E22,11085632,Medical Incident,09/17/2011,09/16/2011,09/17/2011 02:44:57 AM,09/17/2011 02:46:27 AM,09/17/2011 02:46:58 AM,09/17/2011 02:48:29 AM,09/17/2011 02:50:20 AM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 02:54:46 AM,1500 Block of JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7616843815068, -122.478602895308)",112600044-E22 +160361351,KM02,16014194,Medical Incident,02/05/2016,02/05/2016,02/05/2016 10:21:16 AM,02/05/2016 10:23:23 AM,02/05/2016 10:23:53 AM,02/05/2016 10:24:32 AM,02/05/2016 10:28:49 AM,02/05/2016 11:09:21 AM,02/05/2016 11:31:54 AM,Code 2 Transport,02/05/2016 11:42:20 AM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160361351-KM02 +160722610,68,16028697,Traffic Collision,03/12/2016,03/12/2016,03/12/2016 05:56:42 PM,03/12/2016 05:59:44 PM,03/12/2016 06:00:21 PM,03/12/2016 06:00:29 PM,03/12/2016 06:11:36 PM,03/12/2016 06:29:15 PM,03/12/2016 06:58:13 PM,Code 2 Transport,03/12/2016 07:30:35 PM,GREENWICH ST/VAN NESS AV,San Francisco,94109,B01,16,3132,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Russian Hill,"(37.8004150271931, -122.424358668723)",160722610-68 +123390225,T03,12113091,Medical Incident,12/04/2012,12/04/2012,12/04/2012 02:16:10 PM,12/04/2012 02:18:25 PM,12/04/2012 02:20:57 PM,12/04/2012 02:21:18 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 02:29:50 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,2,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",123390225-T03 +160112603,88,16004486,Medical Incident,01/11/2016,01/11/2016,01/11/2016 05:14:39 PM,01/11/2016 05:17:23 PM,01/11/2016 05:18:08 PM,01/11/2016 05:24:37 PM,01/11/2016 05:28:15 PM,01/11/2016 05:43:04 PM,01/11/2016 06:17:28 PM,Code 2 Transport,01/11/2016 07:11:19 PM,100 Block of PRAGUE ST,San Francisco,94112,B09,43,6163,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7197467558887, -122.426666990708)",160112603-88 +121220065,E33,12040403,Medical Incident,05/01/2012,05/01/2012,05/01/2012 08:03:44 AM,05/01/2012 08:04:25 AM,05/01/2012 08:04:49 AM,04/25/2016 01:58:54 PM,05/01/2012 08:08:44 AM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,Other,05/01/2012 08:06:04 AM,200 Block of LOBOS ST,SF,94112,B09,33,8415,3,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7149510870481, -122.460827575743)",121220065-E33 +160791193,62,16031365,Medical Incident,03/19/2016,03/19/2016,03/19/2016 10:07:27 AM,03/19/2016 10:08:15 AM,03/19/2016 10:08:51 AM,03/19/2016 10:09:00 AM,03/19/2016 10:12:20 AM,03/19/2016 10:29:18 AM,03/19/2016 10:31:07 AM,Code 3 Transport,03/19/2016 11:23:11 AM,1800 Block of WEBSTER ST,San Francisco,94115,B04,38,3512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7874727820298, -122.431793233847)",160791193-62 +130290236,T03,13009956,Alarms,01/29/2013,01/29/2013,01/29/2013 02:01:36 PM,01/29/2013 02:03:01 PM,01/29/2013 02:03:07 PM,01/29/2013 02:04:30 PM,01/29/2013 02:06:51 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/29/2013 02:14:06 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",130290236-T03 +160153309,62,16006126,Medical Incident,01/15/2016,01/15/2016,01/15/2016 07:18:02 PM,01/15/2016 07:18:56 PM,01/15/2016 07:19:22 PM,01/15/2016 07:19:29 PM,01/15/2016 07:24:04 PM,01/15/2016 07:36:56 PM,01/15/2016 07:53:42 PM,Code 2 Transport,01/15/2016 08:27:32 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160153309-62 +103420015,94,10109330,Medical Incident,12/08/2010,12/07/2010,12/08/2010 12:49:25 AM,12/08/2010 12:51:15 AM,12/08/2010 12:51:55 AM,12/08/2010 12:51:59 AM,12/08/2010 12:58:08 AM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,No Merit,12/08/2010 01:09:59 AM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",103420015-94 +111470128,59,11048737,Medical Incident,05/27/2011,05/27/2011,05/27/2011 10:11:05 AM,05/27/2011 10:12:17 AM,05/27/2011 10:12:27 AM,05/27/2011 10:12:37 AM,05/27/2011 10:20:00 AM,05/27/2011 10:34:57 AM,04/25/2016 02:04:26 PM,Code 2 Transport,05/27/2011 11:08:56 AM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",111470128-59 +133620236,B02,13123043,Alarms,12/28/2013,12/28/2013,12/28/2013 04:09:09 PM,12/28/2013 04:10:41 PM,12/28/2013 04:11:02 PM,12/28/2013 04:11:45 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 04:15:12 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",133620236-B02 +120020156,E24,12000715,Other,01/02/2012,01/02/2012,01/02/2012 01:05:53 PM,01/02/2012 01:07:34 PM,01/02/2012 01:07:44 PM,01/02/2012 01:08:44 PM,01/02/2012 01:12:05 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Fire,01/02/2012 01:24:23 PM,3800 Block of 22ND ST,SF,94114,B06,24,5466,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7546156128988, -122.433291053117)",120020156-E24 +111930288,E21,11063806,Traffic Collision,07/12/2011,07/12/2011,07/12/2011 06:17:09 PM,07/12/2011 06:17:09 PM,07/12/2011 06:18:13 PM,07/12/2011 06:19:56 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,Other,07/12/2011 06:22:00 PM,STEINER ST/TURK ST,SF,94115,B05,5,3535,3,3,3,false,,1,ENGINE,8,5,5,Western Addition,"(37.7802866938723, -122.433784545919)",111930288-E21 +121390136,T03,12046122,Alarms,05/18/2012,05/18/2012,05/18/2012 10:51:40 AM,05/18/2012 10:53:18 AM,05/18/2012 10:53:32 AM,05/18/2012 10:53:40 AM,05/18/2012 10:56:21 AM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/18/2012 10:57:56 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Alarm,1,TRUCK,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",121390136-T03 +130580375,B01,13019611,Alarms,02/27/2013,02/27/2013,02/27/2013 08:53:52 PM,02/27/2013 08:55:54 PM,02/27/2013 08:56:09 PM,02/27/2013 08:57:17 PM,02/27/2013 08:59:18 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Fire,02/27/2013 09:09:54 PM,400 Block of UNION ST,SF,94133,B01,28,1252,3,3,3,false,Alarm,1,CHIEF,2,1,3,North Beach,"(37.8007416735915, -122.407203616527)",130580375-B01 +103430079,87,10109762,Medical Incident,12/09/2010,12/08/2010,12/09/2010 07:06:31 AM,12/09/2010 07:07:50 AM,12/09/2010 07:08:16 AM,12/09/2010 07:08:40 AM,12/09/2010 07:17:55 AM,12/09/2010 07:35:11 AM,12/09/2010 07:55:35 AM,Code 2 Transport,12/09/2010 08:24:32 AM,800 Block of 32ND AVE,SF,94121,B07,14,7242,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7731638886859, -122.491686815577)",103430079-87 +160830011,62,16032798,Medical Incident,03/23/2016,03/22/2016,03/23/2016 12:06:12 AM,03/23/2016 12:06:12 AM,03/23/2016 12:07:30 AM,03/23/2016 12:07:43 AM,03/23/2016 12:15:24 AM,03/23/2016 12:28:09 AM,03/23/2016 12:39:18 AM,Code 2 Transport,03/23/2016 01:06:30 AM,SAN BRUNO AV/ARLETA AV,San Francisco,94134,B10,44,6265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",160830011-62 +102280007,99,10071640,Medical Incident,08/16/2010,08/15/2010,08/16/2010 12:39:22 AM,08/16/2010 12:40:10 AM,08/16/2010 12:40:29 AM,08/16/2010 12:40:52 AM,08/16/2010 12:46:22 AM,08/16/2010 01:04:45 AM,08/16/2010 01:09:59 AM,Code 2 Transport,08/16/2010 01:25:18 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,1,2,true,,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",102280007-99 +110180255,E01,11006007,Medical Incident,01/18/2011,01/18/2011,01/18/2011 06:10:16 PM,01/18/2011 06:12:47 PM,01/18/2011 06:29:00 PM,01/18/2011 06:30:52 PM,01/18/2011 06:37:30 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 06:42:51 PM,MAIN ST/FOLSOM ST,SF,94105,B03,35,2117,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7893692677435, -122.391858291445)",110180255-E01 +103490238,78,10111967,Medical Incident,12/15/2010,12/15/2010,12/15/2010 03:54:15 PM,12/15/2010 03:55:46 PM,12/15/2010 03:55:59 PM,12/15/2010 03:56:25 PM,12/15/2010 04:03:17 PM,04/25/2016 02:07:06 PM,12/15/2010 04:18:22 PM,Patient Declined Transport,12/15/2010 04:43:57 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",103490238-78 +133310027,77,13112241,Medical Incident,11/27/2013,11/26/2013,11/27/2013 02:06:58 AM,11/27/2013 02:07:45 AM,11/27/2013 02:08:08 AM,11/27/2013 02:08:46 AM,11/27/2013 02:13:47 AM,11/27/2013 02:32:06 AM,11/27/2013 02:41:46 AM,Code 2 Transport,11/27/2013 03:14:25 AM,600 Block of 3RD AVE,SF,94118,B07,31,7121,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7764454675873, -122.46079763531)",133310027-77 +160862146,64,16034215,Medical Incident,03/26/2016,03/26/2016,03/26/2016 02:57:26 PM,03/26/2016 02:58:43 PM,03/26/2016 02:59:01 PM,03/26/2016 02:59:10 PM,03/26/2016 03:08:40 PM,03/26/2016 03:34:15 PM,03/26/2016 03:55:03 PM,Code 2 Transport,03/26/2016 04:45:55 PM,MARKET ST/BUCHANAN ST,San Francisco,94114,B02,36,3416,2,3,3,false,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7696025973262, -122.426309439286)",160862146-64 +130440221,KM10,13014947,Medical Incident,02/13/2013,02/13/2013,02/13/2013 01:22:47 PM,02/13/2013 01:23:25 PM,02/13/2013 01:23:56 PM,02/13/2013 01:24:35 PM,02/13/2013 01:30:58 PM,02/13/2013 01:46:15 PM,02/13/2013 02:21:07 PM,Code 2 Transport,02/13/2013 03:13:37 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",130440221-KM10 +110240152,68,11007842,Medical Incident,01/24/2011,01/24/2011,01/24/2011 10:46:38 AM,01/24/2011 10:47:18 AM,01/24/2011 10:48:01 AM,01/24/2011 10:48:34 AM,01/24/2011 10:54:34 AM,01/24/2011 11:11:45 AM,01/24/2011 11:24:51 AM,Code 2 Transport,01/24/2011 12:00:44 PM,700 Block of CASTRO ST,SF,94114,B06,24,5462,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.75648579729, -122.434652830938)",110240152-68 +123610021,E07,12120666,Medical Incident,12/26/2012,12/25/2012,12/26/2012 01:53:24 AM,12/26/2012 01:53:51 AM,12/26/2012 01:54:22 AM,12/26/2012 01:56:45 AM,12/26/2012 01:58:48 AM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Other,12/26/2012 02:07:05 AM,3100 Block of 24TH ST,SF,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7523514545194, -122.415713588521)",123610021-E07 +132140173,66,13072252,Medical Incident,08/02/2013,08/02/2013,08/02/2013 12:53:23 PM,08/02/2013 12:54:49 PM,08/02/2013 12:55:08 PM,08/02/2013 12:55:24 PM,08/02/2013 01:04:23 PM,08/02/2013 01:24:47 PM,08/02/2013 01:31:33 PM,Code 2 Transport,08/02/2013 01:57:23 PM,300 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",132140173-66 +111070127,E01,11035348,Medical Incident,04/17/2011,04/17/2011,04/17/2011 10:35:06 AM,04/17/2011 10:36:46 AM,04/17/2011 10:37:02 AM,04/17/2011 10:38:16 AM,04/17/2011 10:42:12 AM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 10:43:03 AM,1100 Block of MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7785895740312, -122.411626152299)",111070127-E01 +122300150,B03,12076189,Alarms,08/17/2012,08/17/2012,08/17/2012 10:24:54 AM,08/17/2012 10:25:57 AM,08/17/2012 10:26:16 AM,08/17/2012 10:26:28 AM,08/17/2012 10:29:25 AM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 10:31:06 AM,700 Block of YORK ST,SF,94110,B02,7,5426,3,3,3,false,Alarm,1,CHIEF,1,6,10,Mission,"(37.7598905104052, -122.409037245905)",122300150-B03 +160601257,AM12,16023861,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:50:34 AM,02/29/2016 10:52:25 AM,02/29/2016 10:52:55 AM,02/29/2016 10:53:41 AM,02/29/2016 10:58:01 AM,02/29/2016 11:08:17 AM,02/29/2016 11:30:31 AM,Code 2 Transport,02/29/2016 12:03:44 PM,500 Block of 7TH ST,San Francisco,94103,B03,8,2311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7736273110009, -122.404025808132)",160601257-AM12 +160502233,73,16020139,Medical Incident,02/19/2016,02/19/2016,02/19/2016 03:03:25 PM,02/19/2016 03:13:40 PM,02/19/2016 03:14:07 PM,02/19/2016 03:19:43 PM,02/19/2016 03:27:51 PM,02/19/2016 03:46:05 PM,02/19/2016 03:57:07 PM,Code 2 Transport,02/19/2016 04:32:22 PM,1900 Block of IRVING ST,San Francisco,94122,B08,22,7424,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7635459300897, -122.478732502612)",160502233-73 +160173031,65,16006985,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:21:02 PM,01/17/2016 08:21:58 PM,01/17/2016 08:22:28 PM,01/17/2016 08:22:34 PM,01/17/2016 08:25:46 PM,01/17/2016 08:40:28 PM,01/17/2016 08:46:09 PM,Code 2 Transport,01/17/2016 09:26:20 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160173031-65 +120690363,88,12023051,Medical Incident,03/09/2012,03/09/2012,03/09/2012 09:10:24 PM,03/09/2012 09:11:51 PM,03/09/2012 09:13:04 PM,03/09/2012 09:13:12 PM,03/09/2012 09:22:40 PM,03/09/2012 09:43:16 PM,03/09/2012 09:58:50 PM,Code 3 Transport,03/09/2012 10:24:04 PM,600 Block of PACIFIC AVE,SF,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",120690363-88 +123620221,66,12121191,Medical Incident,12/27/2012,12/27/2012,12/27/2012 03:27:00 PM,12/27/2012 03:28:31 PM,12/27/2012 03:30:12 PM,12/27/2012 03:31:22 PM,12/27/2012 03:53:46 PM,12/27/2012 04:13:35 PM,12/27/2012 04:32:48 PM,Code 2 Transport,12/27/2012 04:59:12 PM,1600 Block of GROVE ST,SF,94117,B05,21,4361,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7751365744228, -122.443758210399)",123620221-66 +112640224,FB1,11087210,Structure Fire,09/21/2011,09/21/2011,09/21/2011 01:55:28 PM,09/21/2011 01:56:17 PM,09/21/2011 01:56:32 PM,09/21/2011 02:42:22 PM,09/21/2011 02:51:14 PM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/21/2011 03:32:18 PM,TULARE ST/INDIANA ST,SF,94124,B10,25,2635,3,3,3,false,,1,SUPPORT,5,None,10,None,"(37.7476067377254, -122.390174876659)",112640224-FB1 +140330095,E29,14011132,Medical Incident,02/02/2014,02/02/2014,02/02/2014 08:55:33 AM,02/02/2014 08:56:11 AM,02/02/2014 08:56:30 AM,02/02/2014 08:57:54 AM,02/02/2014 09:02:29 AM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/02/2014 09:05:51 AM,1200 Block of HARRISON ST,SF,94103,B03,29,2333,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7732598036539, -122.40905086984)",140330095-E29 +133450471,E13,13117239,Medical Incident,12/11/2013,12/11/2013,12/11/2013 11:49:27 PM,12/11/2013 11:50:20 PM,12/11/2013 11:50:56 PM,12/11/2013 11:52:22 PM,12/11/2013 11:55:24 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,Other,12/12/2013 12:15:24 AM,1500 Block of TAYLOR ST,SF,94133,B01,2,1442,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7963115278702, -122.413342007712)",133450471-E13 +160030868,67,16001106,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:41:56 AM,01/03/2016 08:42:30 AM,01/03/2016 08:42:47 AM,01/03/2016 08:43:15 AM,01/03/2016 08:46:09 AM,01/03/2016 09:03:13 AM,01/03/2016 09:18:58 AM,Code 2 Transport,01/03/2016 09:49:24 AM,3200 Block of 21ST ST,San Francisco,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7570135247226, -122.420179949433)",160030868-67 +132470377,93,13083507,Medical Incident,09/04/2013,09/04/2013,09/04/2013 09:53:58 PM,09/04/2013 09:55:02 PM,09/04/2013 09:56:42 PM,04/25/2016 01:50:57 PM,09/04/2013 09:56:44 PM,04/25/2016 01:50:57 PM,04/25/2016 01:50:57 PM,Other,04/25/2016 01:50:57 PM,900 Block of MARKET ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",132470377-93 +102840051,77,10090311,Medical Incident,10/11/2010,10/10/2010,10/11/2010 06:05:56 AM,10/11/2010 06:07:44 AM,10/11/2010 06:08:46 AM,10/11/2010 06:09:27 AM,10/11/2010 06:23:05 AM,10/11/2010 06:39:57 AM,10/11/2010 06:52:26 AM,Code 2 Transport,10/11/2010 07:12:08 AM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,1,1,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",102840051-77 +131400064,55,13047322,Medical Incident,05/20/2013,05/19/2013,05/20/2013 06:31:02 AM,05/20/2013 06:31:42 AM,05/20/2013 06:51:40 AM,04/25/2016 01:52:42 PM,05/20/2013 07:11:39 AM,05/20/2013 07:15:10 AM,05/20/2013 07:41:45 AM,Code 2 Transport,05/20/2013 08:17:25 AM,1900 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,2,3,3,false,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",131400064-55 +131650324,E05,13056165,Medical Incident,06/14/2013,06/14/2013,06/14/2013 07:04:04 PM,06/14/2013 07:04:10 PM,06/14/2013 07:07:27 PM,06/14/2013 07:08:24 PM,06/14/2013 07:19:16 PM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,No Merit,06/14/2013 07:23:29 PM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",131650324-E05 +133560228,E17,13121055,Medical Incident,12/22/2013,12/22/2013,12/22/2013 01:53:30 PM,12/22/2013 01:55:12 PM,12/22/2013 01:55:58 PM,04/25/2016 01:49:07 PM,12/22/2013 01:58:42 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 02:30:14 PM,1300 Block of QUESADA AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7295945473081, -122.384963446158)",133560228-E17 +160490134,KM07,16019568,Medical Incident,02/18/2016,02/17/2016,02/18/2016 01:10:07 AM,02/18/2016 01:19:04 AM,02/18/2016 01:20:33 AM,02/18/2016 01:21:19 AM,02/18/2016 01:24:44 AM,02/18/2016 01:41:04 AM,02/18/2016 01:46:40 AM,Code 2 Transport,02/18/2016 02:16:05 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,E,E,3,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160490134-KM07 +133650206,55,13123962,Medical Incident,12/31/2013,12/31/2013,12/31/2013 02:22:39 PM,12/31/2013 02:23:21 PM,12/31/2013 02:23:44 PM,12/31/2013 02:23:56 PM,12/31/2013 02:32:22 PM,12/31/2013 02:49:25 PM,04/25/2016 01:48:58 PM,Patient Declined Transport,12/31/2013 02:52:34 PM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",133650206-55 +160850528,65,16033657,Medical Incident,03/25/2016,03/24/2016,03/25/2016 06:13:46 AM,03/25/2016 06:15:33 AM,03/25/2016 06:16:15 AM,03/25/2016 06:16:34 AM,03/25/2016 06:26:48 AM,03/25/2016 06:45:21 AM,03/25/2016 07:09:12 AM,Code 2 Transport,03/25/2016 07:47:18 AM,0 Block of REUEL CT,San Francisco,94124,B10,25,652,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7366455889749, -122.382883893412)",160850528-65 +160320827,52,16012490,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:55:31 AM,02/01/2016 08:57:01 AM,02/01/2016 08:57:57 AM,02/01/2016 08:58:32 AM,02/01/2016 09:06:57 AM,02/01/2016 09:46:01 AM,02/01/2016 09:46:07 AM,Code 2 Transport,02/01/2016 10:14:03 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160320827-52 +112950196,E07,11097848,Medical Incident,10/22/2011,10/22/2011,10/22/2011 02:40:41 PM,10/22/2011 02:41:14 PM,10/22/2011 02:41:22 PM,10/22/2011 02:41:39 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 02:47:34 PM,VALENCIA ST/21ST ST,SF,94110,B06,7,5456,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7569020093743, -122.421117541576)",112950196-E07 +102280249,E15,10071832,Medical Incident,08/16/2010,08/16/2010,08/16/2010 05:30:01 PM,08/16/2010 05:30:35 PM,08/16/2010 05:30:58 PM,08/16/2010 05:31:40 PM,08/16/2010 05:33:39 PM,08/16/2010 05:43:14 PM,08/16/2010 06:01:34 PM,Other,08/16/2010 06:15:53 PM,1300 Block of CAYUGA AVE,SF,94112,B09,15,8332,3,E,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7186636303732, -122.443891015758)",102280249-E15 +133210002,55,13108888,Medical Incident,11/17/2013,11/16/2013,11/17/2013 12:01:32 AM,11/17/2013 12:03:14 AM,11/17/2013 12:03:33 AM,11/17/2013 12:03:44 AM,11/17/2013 12:08:39 AM,11/17/2013 12:37:49 AM,11/17/2013 12:48:34 AM,Code 2 Transport,11/17/2013 01:15:05 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",133210002-55 +130800056,KM07,13026646,Traffic Collision,03/21/2013,03/20/2013,03/21/2013 06:17:01 AM,03/21/2013 06:18:32 AM,03/21/2013 06:19:11 AM,03/21/2013 06:19:52 AM,03/21/2013 06:22:26 AM,03/21/2013 06:44:11 AM,03/21/2013 06:51:33 AM,Code 3 Transport,03/21/2013 07:04:45 AM,VAN NESS AV/GOLDEN GATE AV,SF,94102,B02,36,3164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",130800056-KM07 +160102308,74,16004100,Medical Incident,01/10/2016,01/10/2016,01/10/2016 04:14:15 PM,01/10/2016 04:16:03 PM,01/10/2016 04:16:46 PM,01/10/2016 04:21:09 PM,01/10/2016 04:21:36 PM,01/10/2016 04:43:18 PM,01/10/2016 04:55:47 PM,Code 2 Transport,01/10/2016 05:37:28 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160102308-74 +130070226,E15,13002404,Structure Fire,01/07/2013,01/07/2013,01/07/2013 02:19:19 PM,01/07/2013 02:19:19 PM,01/07/2013 02:19:25 PM,01/07/2013 02:20:07 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 02:21:53 PM,GENEVA AV/TARA ST,SF,94112,B09,15,8313,3,3,3,true,Alarm,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7213968692205, -122.448410646975)",130070226-E15 +132980181,E32,13101196,Medical Incident,10/25/2013,10/25/2013,10/25/2013 12:51:07 PM,10/25/2013 12:51:43 PM,10/25/2013 12:52:13 PM,10/25/2013 12:53:38 PM,10/25/2013 12:57:16 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 01:12:52 PM,100 Block of NEY ST,SF,94112,B09,32,5635,2,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7300237012749, -122.427201731646)",132980181-E32 +160770122,53,16030414,Medical Incident,03/17/2016,03/16/2016,03/17/2016 12:46:24 AM,03/17/2016 12:48:27 AM,03/17/2016 12:49:37 AM,03/17/2016 12:50:00 AM,03/17/2016 01:18:35 AM,03/17/2016 01:18:40 AM,03/17/2016 01:27:12 AM,Code 2 Transport,03/17/2016 02:13:07 AM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8062966202775, -122.416265019979)",160770122-53 +103000160,E02,10095749,Medical Incident,10/27/2010,10/27/2010,10/27/2010 12:02:26 PM,10/27/2010 12:07:06 PM,10/27/2010 12:07:20 PM,10/27/2010 12:08:47 PM,10/27/2010 12:11:38 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 12:25:33 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",103000160-E02 +133100029,E08,13105267,Medical Incident,11/06/2013,11/05/2013,11/06/2013 04:47:53 AM,11/06/2013 04:48:49 AM,11/06/2013 04:49:14 AM,11/06/2013 04:50:34 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,04/25/2016 01:49:54 PM,3RD ST/BRYANT ST,SF,94107,B03,8,2174,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7813212571676, -122.395843500166)",133100029-E08 +130250052,67,13008526,Medical Incident,01/25/2013,01/24/2013,01/25/2013 04:46:42 AM,01/25/2013 04:47:01 AM,01/25/2013 04:47:44 AM,01/25/2013 04:47:51 AM,01/25/2013 04:51:33 AM,01/25/2013 04:54:48 AM,01/25/2013 05:03:05 AM,Code 2 Transport,01/25/2013 05:28:04 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",130250052-67 +112570257,57,11084805,Traffic Collision,09/14/2011,09/14/2011,09/14/2011 06:03:15 PM,09/14/2011 06:03:44 PM,09/14/2011 06:05:03 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/14/2011 06:10:33 PM,BROADWAY/COLUMBUS AV,SF,94133,B01,2,1311,3,3,3,true,,1,MEDIC,6,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",112570257-57 +140050259,RC1,14001871,Medical Incident,01/05/2014,01/05/2014,01/05/2014 04:55:54 PM,01/05/2014 04:56:46 PM,01/05/2014 04:57:33 PM,01/05/2014 04:57:41 PM,01/05/2014 05:02:56 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 05:04:40 PM,300 Block of HARRISON ST,SF,94105,B03,35,2123,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.7870714019354, -122.391567493465)",140050259-RC1 +113150146,E16,11104663,Medical Incident,11/11/2011,11/11/2011,11/11/2011 12:20:35 PM,11/11/2011 12:22:12 PM,11/11/2011 12:22:25 PM,11/11/2011 12:23:20 PM,11/11/2011 12:25:01 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/11/2011 12:34:10 PM,2600 Block of SCOTT ST,SF,94123,B04,16,4122,1,1,2,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7941143466773, -122.440017653781)",113150146-E16 +123370298,57,12112259,Medical Incident,12/02/2012,12/02/2012,12/02/2012 09:43:28 AM,12/02/2012 09:45:38 AM,12/02/2012 09:48:28 AM,04/25/2016 01:55:31 PM,12/02/2012 10:02:56 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Patient Declined Transport,12/02/2012 10:38:52 AM,3800 Block of LAWTON ST,SF,94122,B08,23,7661,1,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7567090400897, -122.50405502108)",123370298-57 +160401424,61,16015993,Medical Incident,02/09/2016,02/09/2016,02/09/2016 11:16:16 AM,02/09/2016 11:16:45 AM,02/09/2016 11:17:18 AM,02/09/2016 11:17:26 AM,02/09/2016 11:23:39 AM,02/09/2016 11:31:52 AM,02/09/2016 11:38:17 AM,Code 2 Transport,02/09/2016 12:12:43 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160401424-61 +160313489,61,16012350,Medical Incident,01/31/2016,01/31/2016,01/31/2016 09:08:49 PM,01/31/2016 09:10:44 PM,01/31/2016 09:11:04 PM,01/31/2016 09:11:15 PM,01/31/2016 09:22:58 PM,01/31/2016 09:43:54 PM,01/31/2016 09:56:03 PM,Code 2 Transport,01/31/2016 10:27:42 PM,1700 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160313489-61 +140030087,B01,14000961,Alarms,01/03/2014,01/02/2014,01/03/2014 06:39:49 AM,01/03/2014 06:40:58 AM,01/03/2014 06:41:10 AM,01/03/2014 06:43:38 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/03/2014 06:56:56 AM,100 Block of ELLIS ST,SF,94102,B03,1,1366,,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",140030087-B01 +112150386,T01,11071156,Alarms,08/03/2011,08/03/2011,08/03/2011 10:28:05 PM,08/03/2011 10:28:05 PM,08/03/2011 10:28:14 PM,08/03/2011 10:29:17 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/03/2011 10:30:59 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7792116845421, -122.4109365738)",112150386-T01 +102350129,E10,10073904,Alarms,08/23/2010,08/23/2010,08/23/2010 10:49:11 AM,08/23/2010 10:51:06 AM,08/23/2010 10:51:17 AM,08/23/2010 10:54:06 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 11:15:35 AM,1900 Block of DIVISADERO ST,SF,94115,B04,10,4156,3,3,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.787575889921, -122.440459817613)",102350129-E10 +133170326,E08,13107855,Medical Incident,11/13/2013,11/13/2013,11/13/2013 07:25:31 PM,11/13/2013 07:27:25 PM,11/13/2013 07:31:30 PM,11/13/2013 07:33:21 PM,11/13/2013 07:46:12 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,No Merit,11/13/2013 07:52:20 PM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",133170326-E08 +113380102,B07,11111942,Structure Fire,12/04/2011,12/03/2011,12/04/2011 07:09:29 AM,12/04/2011 07:09:29 AM,12/04/2011 07:10:04 AM,12/04/2011 07:10:48 AM,12/04/2011 07:13:34 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/04/2011 07:19:22 AM,200 Block of 12TH AVE,SF,94118,B07,31,718,3,3,3,false,,1,CHIEF,1,7,1,Inner Richmond,"(37.7835852895624, -122.470982832694)",113380102-B07 +111280029,54,11042223,Medical Incident,05/08/2011,05/07/2011,05/08/2011 01:58:38 AM,05/08/2011 01:59:02 AM,05/08/2011 01:59:24 AM,05/08/2011 01:59:47 AM,05/08/2011 02:03:32 AM,05/08/2011 02:19:17 AM,05/08/2011 02:45:22 AM,Code 2 Transport,05/08/2011 03:04:29 AM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",111280029-54 +160050775,AM08,16001896,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:37:11 AM,01/05/2016 08:39:10 AM,01/05/2016 08:39:43 AM,01/05/2016 08:41:33 AM,01/05/2016 08:56:12 AM,01/05/2016 09:29:25 AM,01/05/2016 09:29:33 AM,Code 2 Transport,01/05/2016 10:02:38 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160050775-AM08 +140200331,75,14006990,Medical Incident,01/20/2014,01/20/2014,01/20/2014 08:30:10 PM,01/20/2014 08:31:23 PM,01/20/2014 08:32:00 PM,01/20/2014 08:32:35 PM,01/20/2014 08:36:55 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,No Merit,01/20/2014 08:46:25 PM,1500 Block of OAKDALE AVE,SF,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340217594171, -122.389453670256)",140200331-75 +140170376,B09,14005997,Alarms,01/17/2014,01/17/2014,01/17/2014 10:58:53 PM,01/17/2014 11:00:10 PM,01/17/2014 11:00:22 PM,01/17/2014 11:02:12 PM,01/17/2014 11:08:38 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Fire,01/17/2014 11:11:40 PM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,Alarm,1,CHIEF,3,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",140170376-B09 +121890323,E42,12063091,Medical Incident,07/07/2012,07/07/2012,07/07/2012 08:27:29 PM,07/07/2012 08:27:47 PM,07/07/2012 08:28:09 PM,07/07/2012 08:29:16 PM,07/07/2012 08:31:36 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/07/2012 08:37:27 PM,PHELPS ST/VESTA ST,SF,94124,B10,42,6452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7302919295175, -122.399866976854)",121890323-E42 +113440175,E18,11114120,Medical Incident,12/10/2011,12/10/2011,12/10/2011 01:26:49 PM,12/10/2011 01:27:12 PM,12/10/2011 01:27:30 PM,12/10/2011 01:28:08 PM,12/10/2011 01:31:55 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 01:46:11 PM,2500 Block of 41ST AVE,SF,94116,B08,18,7637,3,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392114618851, -122.499135486789)",113440175-E18 +160462004,79,16018544,Medical Incident,02/15/2016,02/15/2016,02/15/2016 02:21:24 PM,02/15/2016 02:21:58 PM,02/15/2016 02:22:12 PM,02/15/2016 02:22:27 PM,02/15/2016 02:31:23 PM,02/15/2016 02:45:02 PM,02/15/2016 02:51:12 PM,Code 2 Transport,02/15/2016 03:16:34 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",160462004-79 +160310553,AM20,16012073,Medical Incident,01/31/2016,01/30/2016,01/31/2016 04:25:14 AM,01/31/2016 04:26:51 AM,01/31/2016 04:28:37 AM,01/31/2016 04:31:09 AM,01/31/2016 04:34:51 AM,01/31/2016 04:53:22 AM,01/31/2016 05:04:25 AM,Code 2 Transport,01/31/2016 05:23:10 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160310553-AM20 +123100388,82,12103312,Medical Incident,11/05/2012,11/05/2012,11/05/2012 11:09:31 PM,11/05/2012 11:10:09 PM,11/05/2012 11:10:13 PM,11/05/2012 11:10:51 PM,11/05/2012 11:15:28 PM,11/05/2012 11:35:24 PM,11/05/2012 11:50:44 PM,Code 2 Transport,11/06/2012 12:24:11 AM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",123100388-82 +160172502,75,16006920,Medical Incident,01/17/2016,01/17/2016,01/17/2016 05:26:00 PM,01/17/2016 05:27:39 PM,01/17/2016 05:27:47 PM,01/17/2016 05:27:58 PM,01/17/2016 05:32:43 PM,01/17/2016 05:44:27 PM,01/17/2016 06:07:33 PM,Code 2 Transport,01/17/2016 06:42:25 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7753428666813, -122.403307133032)",160172502-75 +131390194,E17,13047010,Medical Incident,05/19/2013,05/19/2013,05/19/2013 11:44:11 AM,05/19/2013 11:45:52 AM,05/19/2013 11:46:12 AM,05/19/2013 11:48:06 AM,05/19/2013 11:49:36 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 12:08:45 PM,1300 Block of THOMAS AVE,SF,94124,B10,17,6547,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",131390194-E17 +122000113,94,12066411,Medical Incident,07/18/2012,07/18/2012,07/18/2012 09:44:16 AM,07/18/2012 09:46:17 AM,07/18/2012 09:46:37 AM,07/18/2012 09:47:49 AM,07/18/2012 09:58:50 AM,07/18/2012 10:28:29 AM,07/18/2012 10:36:15 AM,Code 2 Transport,07/18/2012 11:26:55 AM,1800 Block of BUSH ST,SF,94109,B04,38,3363,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",122000113-94 +160732794,AM16,16029111,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:01:30 PM,03/13/2016 09:02:03 PM,03/13/2016 09:03:08 PM,03/13/2016 09:03:58 PM,03/13/2016 09:09:30 PM,03/13/2016 09:16:35 PM,03/13/2016 09:31:26 PM,Code 2 Transport,03/13/2016 10:08:18 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160732794-AM16 +102810423,E40,10089521,Medical Incident,10/08/2010,10/08/2010,10/08/2010 11:29:43 PM,10/08/2010 11:38:28 PM,10/08/2010 11:38:53 PM,10/08/2010 11:41:12 PM,10/08/2010 11:42:56 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/08/2010 11:44:37 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",102810423-E40 +160190607,65,16007503,Traffic Collision,01/19/2016,01/18/2016,01/19/2016 07:28:19 AM,01/19/2016 07:28:40 AM,01/19/2016 07:29:25 AM,01/19/2016 07:30:01 AM,01/19/2016 07:37:28 AM,01/19/2016 07:42:47 AM,01/19/2016 08:07:05 AM,Code 2 Transport,01/19/2016 08:43:31 AM,ELLIS ST/GOUGH ST,San Francisco,94109,B02,3,3221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7833998584821, -122.424294812845)",160190607-65 +110910040,E01,11030025,Medical Incident,04/01/2011,03/31/2011,04/01/2011 02:14:43 AM,04/01/2011 02:14:43 AM,04/01/2011 02:15:34 AM,04/01/2011 02:16:14 AM,04/01/2011 02:18:02 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 02:23:50 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",110910040-E01 +122310068,AP,12076506,Other,08/18/2012,08/17/2012,08/18/2012 07:16:25 AM,08/18/2012 07:16:26 AM,08/18/2012 07:16:26 AM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Fire,08/18/2012 07:16:43 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122310068-AP +102790352,RC1,10088857,Medical Incident,10/06/2010,10/06/2010,10/06/2010 11:50:42 PM,10/06/2010 11:52:54 PM,10/06/2010 11:53:29 PM,10/07/2010 12:19:29 AM,10/07/2010 12:22:38 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/07/2010 01:05:37 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,2,2,2,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",102790352-RC1 +120210262,E34,12007188,Electrical Hazard,01/21/2012,01/21/2012,01/21/2012 03:21:47 PM,01/21/2012 03:23:47 PM,01/21/2012 03:24:32 PM,01/21/2012 03:24:40 PM,01/21/2012 03:27:19 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 03:35:36 PM,48TH AV/BALBOA ST,SF,94121,B07,34,7312,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7751768203632, -122.509091953419)",120210262-E34 +112800312,74,11092783,Medical Incident,10/07/2011,10/07/2011,10/07/2011 07:17:59 PM,10/07/2011 07:19:44 PM,10/07/2011 07:20:29 PM,10/07/2011 07:21:08 PM,10/07/2011 07:28:38 PM,10/07/2011 07:35:31 PM,10/07/2011 08:00:08 PM,Code 2 Transport,10/07/2011 08:02:19 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",112800312-74 +160540290,89,16021444,Medical Incident,02/23/2016,02/22/2016,02/23/2016 04:06:56 AM,02/23/2016 04:06:56 AM,02/23/2016 04:08:42 AM,02/23/2016 04:09:12 AM,02/23/2016 04:16:09 AM,02/23/2016 04:34:40 AM,02/23/2016 04:46:04 AM,Code 2 Transport,02/23/2016 05:29:59 AM,4500 Block of 3RD ST,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7368113615571, -122.390133702873)",160540290-89 +160841097,53,16033309,Traffic Collision,03/24/2016,03/24/2016,03/24/2016 09:34:16 AM,03/24/2016 09:34:30 AM,03/24/2016 09:34:44 AM,03/24/2016 09:35:00 AM,03/24/2016 09:43:27 AM,03/24/2016 09:54:01 AM,03/24/2016 10:03:40 AM,Code 3 Transport,03/24/2016 11:13:35 AM,MISSION ST/BEALE ST,San Francisco,94105,B03,35,2116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7911528075814, -122.395813422768)",160841097-53 +160853188,79,16033908,Medical Incident,03/25/2016,03/25/2016,03/25/2016 06:55:25 PM,03/25/2016 06:57:07 PM,03/25/2016 06:59:04 PM,03/25/2016 06:59:15 PM,03/25/2016 07:06:49 PM,03/25/2016 07:33:20 PM,03/25/2016 07:54:26 PM,Code 2 Transport,03/25/2016 08:37:17 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7191183784719, -122.48048461062)",160853188-79 +123030137,77,12100468,Medical Incident,10/29/2012,10/28/2012,10/29/2012 02:42:08 AM,10/29/2012 02:44:03 AM,10/29/2012 03:00:12 AM,10/29/2012 03:00:39 AM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,04/25/2016 01:56:04 PM,1300 Block of MARKET ST,SF,94102,B02,36,2338,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",123030137-77 +160452170,50,16018182,Medical Incident,02/14/2016,02/14/2016,02/14/2016 03:41:24 PM,02/14/2016 03:42:05 PM,02/14/2016 03:42:13 PM,02/14/2016 03:42:20 PM,02/14/2016 03:50:24 PM,02/14/2016 04:18:22 PM,02/14/2016 04:36:43 PM,Code 2 Transport,02/14/2016 05:16:43 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",160452170-50 +110880143,T10,11029015,Structure Fire,03/29/2011,03/29/2011,03/29/2011 10:54:50 AM,03/29/2011 10:54:51 AM,03/29/2011 10:55:04 AM,03/29/2011 10:56:41 AM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 11:01:59 AM,2700 Block of CALIFORNIA ST,SF,94115,B04,38,412,3,3,3,false,,1,TRUCK,3,4,2,Pacific Heights,"(37.7881185452243, -122.439595812264)",110880143-T10 +103530050,54,10113204,Medical Incident,12/19/2010,12/18/2010,12/19/2010 01:44:19 AM,12/19/2010 01:49:41 AM,12/19/2010 01:51:33 AM,12/19/2010 01:52:06 AM,12/19/2010 02:03:26 AM,12/19/2010 02:10:20 AM,12/19/2010 02:30:24 AM,Code 2 Transport,12/19/2010 02:51:22 AM,800 Block of HOWARD ST,SF,94103,B03,1,2214,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",103530050-54 +140190055,E12,14006429,Medical Incident,01/19/2014,01/18/2014,01/19/2014 02:46:53 AM,01/19/2014 02:47:25 AM,01/19/2014 02:47:32 AM,01/19/2014 02:50:04 AM,01/19/2014 02:52:22 AM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/19/2014 03:09:41 AM,300 Block of CORBETT AVE,SF,94114,B05,24,5265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7599260499038, -122.445043500566)",140190055-E12 +120090037,RC3,12002987,Structure Fire,01/09/2012,01/08/2012,01/09/2012 02:32:13 AM,01/09/2012 02:33:33 AM,01/09/2012 02:34:27 AM,01/09/2012 02:44:15 AM,01/09/2012 02:57:56 AM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/09/2012 03:02:10 AM,700 Block of JERROLD AVE,SF,94124,B10,17,6713,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,10,10,Bayview Hunters Point,"(37.7296708213986, -122.373440500902)",120090037-RC3 +160910325,87,16035949,Medical Incident,03/31/2016,03/30/2016,03/31/2016 03:51:15 AM,03/31/2016 03:51:15 AM,03/31/2016 03:52:34 AM,03/31/2016 03:52:42 AM,03/31/2016 04:06:15 AM,03/31/2016 04:22:11 AM,03/31/2016 04:41:28 AM,Code 2 Transport,03/31/2016 05:05:42 AM,0 Block of ATHENS ST,San Francisco,94112,B09,43,6146,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7272929954166, -122.424276475396)",160910325-87 +131580448,82,13053848,Medical Incident,06/07/2013,06/07/2013,06/07/2013 11:31:59 PM,06/07/2013 11:32:00 PM,06/07/2013 11:32:21 PM,06/07/2013 11:32:26 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/07/2013 11:41:16 PM,FULTON ST/46TH AV,SF,94122,B07,34,7272,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7715424783159, -122.506685313329)",131580448-82 +160472426,KM11,16018993,Medical Incident,02/16/2016,02/16/2016,02/16/2016 03:41:34 PM,02/16/2016 03:41:34 PM,02/16/2016 04:13:21 PM,02/16/2016 04:16:03 PM,02/16/2016 04:30:06 PM,02/16/2016 05:07:13 PM,02/16/2016 05:22:50 PM,Code 2 Transport,02/16/2016 05:51:16 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160472426-KM11 +103650279,AM08,10117175,Medical Incident,12/31/2010,12/31/2010,12/31/2010 07:16:47 PM,12/31/2010 07:17:22 PM,12/31/2010 07:18:24 PM,12/31/2010 07:21:45 PM,12/31/2010 07:21:46 PM,12/31/2010 07:36:19 PM,12/31/2010 07:42:47 PM,Code 2 Transport,12/31/2010 08:22:06 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",103650279-AM08 +122640415,E41,12087385,Medical Incident,09/20/2012,09/20/2012,09/20/2012 10:42:56 PM,09/20/2012 10:44:55 PM,09/20/2012 10:45:30 PM,09/20/2012 10:47:08 PM,09/20/2012 10:49:50 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/20/2012 10:53:24 PM,POLK ST/CALIFORNIA ST,SF,94109,B04,41,1635,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7905782582579, -122.420687383115)",122640415-E41 +160803780,78,16031987,Medical Incident,03/20/2016,03/20/2016,03/20/2016 11:38:10 PM,03/20/2016 11:39:46 PM,03/20/2016 11:42:13 PM,03/20/2016 11:42:20 PM,03/20/2016 11:52:57 PM,03/21/2016 12:02:27 AM,03/21/2016 12:17:12 AM,Code 2 Transport,03/21/2016 12:52:15 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160803780-78 +132700396,E08,13091882,Medical Incident,09/27/2013,09/27/2013,09/27/2013 09:47:48 PM,09/27/2013 09:48:14 PM,09/27/2013 09:49:40 PM,04/25/2016 01:50:33 PM,09/27/2013 09:51:53 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/27/2013 09:59:06 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132700396-E08 +131120355,E01,13037844,Alarms,04/22/2013,04/22/2013,04/22/2013 06:25:19 PM,04/22/2013 06:26:24 PM,04/22/2013 06:26:35 PM,04/22/2013 06:28:43 PM,04/22/2013 06:30:33 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/22/2013 06:39:11 PM,0 Block of MINT PLZ,SF,94103,B03,1,2246,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7826425026927, -122.407832679288)",131120355-E01 +102870118,E39,10091454,Traffic Collision,10/14/2010,10/14/2010,10/14/2010 09:41:28 AM,10/14/2010 09:41:29 AM,10/14/2010 09:42:08 AM,10/14/2010 09:44:52 AM,10/14/2010 09:45:21 AM,04/25/2016 02:08:06 PM,04/25/2016 02:08:06 PM,Other,10/14/2010 09:58:18 AM,VICENTE ST/20TH AV,SF,94116,B08,40,7435,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392773424099, -122.476485968583)",102870118-E39 +140930274,RC2,14031345,Water Rescue,04/03/2014,04/03/2014,04/03/2014 04:36:49 PM,04/03/2014 04:40:05 PM,04/03/2014 04:41:08 PM,04/03/2014 04:41:49 PM,04/03/2014 05:07:31 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,No Merit,04/03/2014 05:11:25 PM,1000 Block of GREAT HWY,,94122,B07,34,7316,3,E,3,true,Fire,1,RESCUE CAPTAIN,14,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",140930274-RC2 +160550597,53,16021907,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:26:45 AM,02/24/2016 07:28:07 AM,02/24/2016 07:28:39 AM,02/24/2016 07:29:18 AM,02/24/2016 07:41:43 AM,02/24/2016 07:54:16 AM,02/24/2016 08:00:41 AM,Code 2 Transport,02/24/2016 08:47:37 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160550597-53 +160473260,76,16019078,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:24:00 PM,02/16/2016 07:26:55 PM,02/16/2016 07:28:04 PM,02/16/2016 07:28:13 PM,02/16/2016 07:37:34 PM,02/16/2016 07:51:31 PM,02/16/2016 08:09:13 PM,Code 2 Transport,02/16/2016 08:36:24 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160473260-76 +112210337,B01,11073142,Alarms,08/09/2011,08/09/2011,08/09/2011 09:20:40 PM,08/09/2011 09:23:04 PM,08/09/2011 09:23:27 PM,08/09/2011 09:25:10 PM,08/09/2011 09:31:46 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 09:32:23 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,false,,1,CHIEF,2,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",112210337-B01 +140490001,AM22,14016507,Medical Incident,02/18/2014,02/17/2014,02/18/2014 12:10:32 AM,02/18/2014 12:11:45 AM,02/18/2014 12:12:58 AM,02/18/2014 12:13:38 AM,02/18/2014 12:19:53 AM,02/18/2014 12:34:24 AM,02/18/2014 12:42:43 AM,Code 2 Transport,02/18/2014 12:59:54 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",140490001-AM22 +122340235,E03,12077647,Medical Incident,08/21/2012,08/21/2012,08/21/2012 05:56:11 PM,08/21/2012 05:56:11 PM,08/21/2012 05:56:11 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Patient Declined Transport,08/21/2012 06:17:25 PM,POST ST/VAN NESS AV,SF,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",122340235-E03 +160083447,63,16003394,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:04:50 PM,01/08/2016 08:05:04 PM,01/08/2016 08:05:10 PM,01/08/2016 08:06:32 PM,01/08/2016 08:10:34 PM,01/08/2016 08:26:04 PM,01/08/2016 08:46:48 PM,Code 2 Transport,01/08/2016 09:15:31 PM,1900 Block of JUDAH ST,San Francisco,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.761386009258, -122.482883769686)",160083447-63 +112860388,E05,11094909,Medical Incident,10/13/2011,10/13/2011,10/13/2011 07:36:44 PM,10/13/2011 07:36:55 PM,10/13/2011 07:37:53 PM,04/25/2016 02:02:11 PM,10/13/2011 07:40:20 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 07:47:04 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",112860388-E05 +110620176,E36,11020364,Medical Incident,03/03/2011,03/03/2011,03/03/2011 12:45:24 PM,03/03/2011 12:45:50 PM,03/03/2011 12:46:53 PM,03/03/2011 12:47:57 PM,03/03/2011 12:49:29 PM,04/25/2016 02:05:49 PM,04/25/2016 02:05:49 PM,Patient Declined Transport,03/03/2011 12:52:36 PM,HAIGHT ST/BUCHANAN ST,SF,94102,B02,36,3422,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7725249164932, -122.427158446599)",110620176-E36 +113500400,79,11116298,Traffic Collision,12/16/2011,12/16/2011,12/16/2011 10:46:11 PM,12/16/2011 10:48:44 PM,12/16/2011 10:49:35 PM,12/16/2011 10:50:23 PM,12/16/2011 10:54:49 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 10:55:44 PM,MISSION ST/SOUTH VAN NESS AV,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",113500400-79 +111810115,KM12,11059674,Medical Incident,06/30/2011,06/30/2011,06/30/2011 10:21:28 AM,06/30/2011 10:23:07 AM,06/30/2011 10:23:43 AM,06/30/2011 10:23:53 AM,06/30/2011 10:27:39 AM,06/30/2011 10:38:49 AM,06/30/2011 10:47:27 AM,Code 2 Transport,06/30/2011 11:08:02 AM,0 Block of HARTFORD ST,SF,94114,B05,6,5417,3,3,3,false,,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7617571079788, -122.433914011349)",111810115-KM12 +132090258,E07,13070753,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:26:59 PM,07/28/2013 04:28:53 PM,07/28/2013 04:29:23 PM,07/28/2013 04:30:33 PM,07/28/2013 04:32:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 04:35:03 PM,1700 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7694700718007, -122.415525556609)",132090258-E07 +160443987,AM16,16017916,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:36:28 PM,02/13/2016 11:36:28 PM,02/13/2016 11:36:56 PM,02/13/2016 11:37:59 PM,02/13/2016 11:41:54 PM,02/13/2016 11:49:49 PM,02/14/2016 12:12:31 AM,Code 2 Transport,02/14/2016 12:53:30 AM,200 Block of PARQUE DR,San Francisco,94134,B09,43,6245,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.709998706156, -122.422592099161)",160443987-AM16 +160310011,88,16012005,Medical Incident,01/31/2016,01/30/2016,01/31/2016 12:00:25 AM,01/31/2016 12:02:16 AM,01/31/2016 12:03:39 AM,01/31/2016 12:03:52 AM,01/31/2016 12:20:02 AM,01/31/2016 12:36:38 AM,01/31/2016 12:55:13 AM,Code 2 Transport,01/31/2016 01:20:51 AM,48TH AV/ORTEGA ST,San Francisco,94116,B08,23,7725,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.751003286283, -122.507416228519)",160310011-88 +123200337,E28,12106514,Structure Fire,11/15/2012,11/15/2012,11/15/2012 09:31:20 PM,11/15/2012 09:32:05 PM,11/15/2012 09:33:01 PM,11/15/2012 09:33:41 PM,11/15/2012 09:37:12 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 10:08:55 PM,500 Block of GRANT AVE,SF,94108,B01,13,1314,3,3,3,true,Fire,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7921056209358, -122.405937157736)",123200337-E28 +103470086,E38,10111202,Medical Incident,12/13/2010,12/13/2010,12/13/2010 08:51:14 AM,12/13/2010 08:52:50 AM,12/13/2010 08:53:23 AM,12/13/2010 08:53:55 AM,12/13/2010 08:56:20 AM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 09:19:31 AM,2000 Block of FRANKLIN ST,SF,94109,B04,38,3226,3,2,2,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7932922930477, -122.424537680646)",103470086-E38 +133400414,92,13115441,Traffic Collision,12/06/2013,12/06/2013,12/06/2013 10:47:50 PM,12/06/2013 10:50:20 PM,12/06/2013 10:50:40 PM,12/06/2013 10:52:49 PM,04/25/2016 01:49:24 PM,12/06/2013 11:22:29 PM,12/06/2013 11:46:12 PM,Code 3 Transport,12/07/2013 12:32:50 AM,MARKET ST/JONES ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",133400414-92 +160093072,76,16003767,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:33:31 PM,01/09/2016 07:33:31 PM,01/09/2016 07:34:13 PM,01/09/2016 07:34:26 PM,01/09/2016 07:39:39 PM,01/09/2016 07:45:09 PM,01/09/2016 07:50:28 PM,Code 2 Transport,01/09/2016 08:25:28 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7904732830605, -122.406742211994)",160093072-76 +160131034,77,16005119,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:33:42 AM,01/13/2016 09:34:29 AM,01/13/2016 09:34:58 AM,01/13/2016 09:35:10 AM,01/13/2016 09:39:46 AM,01/13/2016 10:00:51 AM,01/13/2016 10:05:43 AM,Code 2 Transport,01/13/2016 10:40:03 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160131034-77 +160521204,63,16020766,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:43:30 AM,02/21/2016 10:45:37 AM,02/21/2016 10:46:42 AM,02/21/2016 10:46:52 AM,02/21/2016 10:56:45 AM,02/21/2016 11:11:53 AM,02/21/2016 11:31:43 AM,Code 2 Transport,02/21/2016 12:17:24 PM,0 Block of JACK LONDON AL,San Francisco,94107,B03,8,2173,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7811397491266, -122.393304249377)",160521204-63 +102950149,B02,10094052,Structure Fire,10/22/2010,10/22/2010,10/22/2010 10:43:14 AM,10/22/2010 10:43:44 AM,10/22/2010 10:43:59 AM,10/22/2010 10:45:09 AM,10/22/2010 10:48:22 AM,04/25/2016 02:07:59 PM,04/25/2016 02:07:59 PM,Other,10/22/2010 11:15:16 AM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,false,,1,CHIEF,4,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",102950149-B02 +122280303,86,12075655,Medical Incident,08/15/2012,08/15/2012,08/15/2012 06:20:29 PM,08/15/2012 06:22:30 PM,08/15/2012 06:22:44 PM,08/15/2012 06:24:03 PM,08/15/2012 06:35:44 PM,08/15/2012 06:55:49 PM,08/15/2012 07:05:28 PM,Code 2 Transport,08/15/2012 07:31:36 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",122280303-86 +132560323,RS2,13086666,Traffic Collision,09/13/2013,09/13/2013,09/13/2013 06:45:33 PM,09/13/2013 06:48:10 PM,09/13/2013 06:48:36 PM,09/13/2013 06:50:17 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 06:52:04 PM,100 Block of BAY SHORE BLVD,SF,94124,B10,9,6375,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,10,9,Bernal Heights,"(37.7467888174976, -122.404164633041)",132560323-RS2 +103580203,T05,10114944,Alarms,12/24/2010,12/24/2010,12/24/2010 03:30:49 PM,12/24/2010 03:31:52 PM,12/24/2010 03:32:03 PM,12/24/2010 03:33:28 PM,12/24/2010 03:35:11 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 03:40:05 PM,400 Block of GROVE ST,SF,94102,B02,36,3315,3,3,3,false,,1,TRUCK,2,2,5,Hayes Valley,"(37.7776543498914, -122.423976044858)",103580203-T05 +111800196,E09,11059441,Medical Incident,06/29/2011,06/29/2011,06/29/2011 03:04:41 PM,06/29/2011 03:06:52 PM,06/29/2011 03:09:09 PM,06/29/2011 03:42:08 PM,06/29/2011 03:46:32 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/29/2011 03:55:32 PM,2800 Block of 24TH ST,SF,94110,B06,9,5531,1,1,2,true,,1,ENGINE,2,6,9,Mission,"(37.7527692279339, -122.408654193478)",111800196-E09 +111020337,RC1,11033957,Medical Incident,04/12/2011,04/12/2011,04/12/2011 08:29:36 PM,04/12/2011 08:32:33 PM,04/12/2011 08:33:46 PM,04/25/2016 02:05:08 PM,04/12/2011 08:35:49 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/12/2011 08:44:51 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",111020337-RC1 +111710023,RC1,11056251,Medical Incident,06/20/2011,06/19/2011,06/20/2011 02:11:11 AM,06/20/2011 02:11:40 AM,06/20/2011 02:11:56 AM,06/20/2011 02:14:24 AM,06/20/2011 02:17:53 AM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,Other,06/20/2011 02:29:16 AM,4TH ST/TOWNSEND ST,SF,94107,B03,8,2224,E,E,3,true,,1,RESCUE CAPTAIN,4,3,6,South of Market,"(37.7770893320016, -122.394981482757)",111710023-RC1 +140770348,E18,14026212,Medical Incident,03/18/2014,03/18/2014,03/18/2014 09:00:11 PM,03/18/2014 09:01:44 PM,03/18/2014 09:02:20 PM,03/18/2014 09:03:41 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Code 2 Transport,03/18/2014 09:06:02 PM,1300 Block of 46TH AVE,SAN FRANCISCO,94122,B08,23,7721,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7613577781783, -122.505924512458)",140770348-E18 +110050296,E44,11001731,Structure Fire,01/05/2011,01/05/2011,01/05/2011 04:41:42 PM,01/05/2011 04:41:42 PM,01/05/2011 04:41:57 PM,01/05/2011 04:43:19 PM,01/05/2011 04:45:38 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/05/2011 04:46:02 PM,PAUL AV/EXETER ST,SF,94124,B10,44,6323,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7230361592834, -122.398348115685)",110050296-E44 +132640254,77,13089563,Medical Incident,09/21/2013,09/21/2013,09/21/2013 02:22:55 PM,09/21/2013 02:24:17 PM,09/21/2013 02:24:45 PM,09/21/2013 02:25:24 PM,09/21/2013 02:51:09 PM,09/21/2013 02:58:54 PM,09/21/2013 03:12:54 PM,Code 2 Transport,09/21/2013 03:46:08 PM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",132640254-77 +120990196,KM05,12032824,Medical Incident,04/08/2012,04/08/2012,04/08/2012 03:35:55 PM,04/08/2012 03:36:40 PM,04/08/2012 03:38:33 PM,04/25/2016 01:59:16 PM,04/08/2012 03:39:13 PM,04/08/2012 03:46:01 PM,04/08/2012 03:53:47 PM,Code 2 Transport,04/08/2012 04:12:24 PM,0 Block of WASHBURN ST,SF,94103,B02,36,2336,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",120990196-KM05 +160653505,AM14,16026148,Medical Incident,03/05/2016,03/05/2016,03/05/2016 09:51:27 PM,03/05/2016 09:51:27 PM,03/05/2016 09:51:43 PM,03/05/2016 09:52:05 PM,03/05/2016 10:09:42 PM,03/05/2016 10:24:44 PM,03/05/2016 10:46:35 PM,Code 2 Transport,03/05/2016 11:06:32 PM,4500 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7623161422083, -122.506598485831)",160653505-AM14 +103570177,87,10114568,Medical Incident,12/23/2010,12/23/2010,12/23/2010 12:55:32 PM,12/23/2010 12:56:44 PM,12/23/2010 12:57:23 PM,12/23/2010 12:58:06 PM,12/23/2010 01:05:13 PM,12/23/2010 01:20:09 PM,12/23/2010 01:41:46 PM,Code 2 Transport,12/23/2010 02:10:29 PM,4600 Block of MISSION ST,SF,94112,B09,43,6117,2,2,2,true,,1,MEDIC,2,9,11,Excelsior,"(37.7242679564906, -122.435032247159)",103570177-87 +160640118,76,16025322,Medical Incident,03/04/2016,03/03/2016,03/04/2016 01:06:48 AM,03/04/2016 01:06:48 AM,03/04/2016 01:07:02 AM,03/04/2016 01:08:19 AM,03/04/2016 01:11:52 AM,03/04/2016 01:17:46 AM,03/04/2016 01:22:58 AM,Code 3 Transport,03/04/2016 02:19:25 AM,10TH ST/MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7752720593077, -122.415908181241)",160640118-76 +160263399,61,16010452,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:05:10 PM,01/26/2016 08:06:56 PM,01/26/2016 08:08:25 PM,01/26/2016 08:08:36 PM,01/26/2016 08:14:28 PM,01/26/2016 08:24:46 PM,01/26/2016 08:43:13 PM,Code 2 Transport,01/26/2016 09:20:08 PM,2000 Block of LANE ST,San Francisco,94124,B10,17,6536,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7294407358981, -122.392077468459)",160263399-61 +130380253,E16,13013045,Structure Fire,02/07/2013,02/07/2013,02/07/2013 04:19:24 PM,02/07/2013 04:20:04 PM,02/07/2013 04:20:10 PM,02/07/2013 04:21:36 PM,02/07/2013 04:23:11 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/07/2013 04:28:38 PM,2900 Block of BAKER ST,SF,94123,B04,16,4313,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.798166545923, -122.445811307844)",130380253-E16 +140520038,66,14017498,Medical Incident,02/21/2014,02/20/2014,02/21/2014 04:18:00 AM,02/21/2014 04:19:02 AM,02/21/2014 04:19:12 AM,02/21/2014 04:19:21 AM,02/21/2014 04:21:16 AM,02/21/2014 04:45:54 AM,02/21/2014 04:49:20 AM,Code 3 Transport,02/21/2014 05:09:58 AM,800 Block of FRANKLIN ST,SF,94102,B02,36,3216,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7819947126055, -122.422254006576)",140520038-66 +121380199,E02,12045860,Alarms,05/17/2012,05/17/2012,05/17/2012 01:34:20 PM,05/17/2012 01:34:44 PM,05/17/2012 01:35:10 PM,05/17/2012 01:36:28 PM,05/17/2012 01:38:06 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Fire,05/17/2012 01:42:02 PM,1100 Block of MASON ST,SF,94108,B01,2,1415,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7942845562863, -122.411386186498)",121380199-E02 +133460397,E31,13117579,Medical Incident,12/12/2013,12/12/2013,12/12/2013 11:05:37 PM,12/12/2013 11:07:15 PM,12/12/2013 11:07:22 PM,12/12/2013 11:08:49 PM,12/12/2013 11:11:01 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 11:28:41 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",133460397-E31 +103030362,T03,10096945,Medical Incident,10/30/2010,10/30/2010,10/30/2010 11:08:25 PM,10/30/2010 11:08:55 PM,10/30/2010 11:09:13 PM,10/30/2010 11:10:21 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/30/2010 11:12:05 PM,ELLIS ST/VAN NESS AV,SF,94109,B04,3,3162,3,3,3,true,,1,TRUCK,3,2,5,Western Addition,"(37.7838241173643, -122.421008360007)",103030362-T03 +140760165,B02,14025696,Alarms,03/17/2014,03/17/2014,03/17/2014 12:09:00 PM,03/17/2014 12:11:18 PM,03/17/2014 12:11:30 PM,03/17/2014 12:13:10 PM,03/17/2014 12:19:12 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Fire,03/17/2014 12:22:50 PM,1100 Block of HOWARD ST,SAN FRANCISCO,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7777263414712, -122.409605982336)",140760165-B02 +120570097,E07,12018736,Medical Incident,02/26/2012,02/25/2012,02/26/2012 07:28:37 AM,02/26/2012 07:29:05 AM,02/26/2012 07:29:25 AM,02/26/2012 07:30:44 AM,02/26/2012 07:33:01 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 07:36:18 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",120570097-E07 +160101808,87,16004054,Medical Incident,01/10/2016,01/10/2016,01/10/2016 02:00:08 PM,01/10/2016 02:01:47 PM,01/10/2016 02:02:17 PM,01/10/2016 02:02:37 PM,01/10/2016 02:06:11 PM,01/10/2016 02:36:38 PM,01/10/2016 02:54:14 PM,Code 2 Transport,01/10/2016 03:13:16 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",160101808-87 +160530536,79,16021084,Traffic Collision,02/22/2016,02/21/2016,02/22/2016 07:22:54 AM,02/22/2016 07:24:17 AM,02/22/2016 07:25:43 AM,02/22/2016 07:26:04 AM,02/22/2016 07:30:14 AM,02/22/2016 08:00:06 AM,02/22/2016 08:22:47 AM,Code 2 Transport,02/22/2016 08:53:24 AM,STEINER ST/PINE ST,San Francisco,94115,B04,38,3621,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7877411638542, -122.435293133001)",160530536-79 +112450112,E01,11080714,Medical Incident,09/02/2011,09/02/2011,09/02/2011 09:34:49 AM,09/02/2011 09:37:04 AM,09/02/2011 09:38:52 AM,09/02/2011 09:39:06 AM,09/02/2011 09:41:15 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 10:07:42 AM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,2,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",112450112-E01 +131740351,79,13059206,Medical Incident,06/23/2013,06/23/2013,06/23/2013 10:00:29 PM,06/23/2013 10:01:49 PM,06/23/2013 10:02:43 PM,06/23/2013 10:05:06 PM,06/23/2013 10:20:38 PM,06/23/2013 11:03:51 PM,06/23/2013 11:15:21 PM,Code 2 Transport,06/23/2013 11:58:13 PM,500 Block of OAK ST,SF,94102,B02,5,3523,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7743391857975, -122.428373303516)",131740351-79 +113540042,E44,11117425,Medical Incident,12/20/2011,12/19/2011,12/20/2011 03:44:36 AM,12/20/2011 03:45:41 AM,12/20/2011 03:45:50 AM,12/20/2011 03:47:42 AM,12/20/2011 03:50:02 AM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/20/2011 03:57:48 AM,2200 Block of BAY SHORE BLVD,SF,94134,B10,44,6255,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121240018381, -122.40295368671)",113540042-E44 +160764149,89,16030386,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:49:02 PM,03/16/2016 10:52:05 PM,03/16/2016 10:52:28 PM,03/16/2016 10:52:45 PM,03/16/2016 10:57:59 PM,03/16/2016 11:15:45 PM,03/16/2016 11:20:41 PM,Code 2 Transport,03/16/2016 11:53:47 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784481757201, -122.417688009568)",160764149-89 +131900314,E19,13064826,Medical Incident,07/09/2013,07/09/2013,07/09/2013 07:19:35 PM,07/09/2013 07:20:41 PM,07/09/2013 07:20:54 PM,07/09/2013 07:21:42 PM,07/09/2013 07:26:31 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/09/2013 07:35:46 PM,400 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",131900314-E19 +120950129,58,12031425,Medical Incident,04/04/2012,04/04/2012,04/04/2012 11:15:17 AM,04/04/2012 11:16:41 AM,04/04/2012 11:18:31 AM,04/25/2016 01:59:20 PM,04/04/2012 11:19:04 AM,04/04/2012 11:54:14 AM,04/04/2012 12:22:35 PM,Code 2 Transport,04/04/2012 12:48:56 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",120950129-58 +123440020,E19,12114845,Medical Incident,12/09/2012,12/08/2012,12/09/2012 12:53:14 AM,12/09/2012 12:53:51 AM,12/09/2012 12:54:03 AM,12/09/2012 12:56:06 AM,12/09/2012 12:58:13 AM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/09/2012 01:11:37 AM,LAKE MERCED BL/FONT BL,SF,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7239997279789, -122.485075175889)",123440020-E19 +131880256,E21,13064162,Alarms,07/07/2013,07/07/2013,07/07/2013 05:00:19 PM,07/07/2013 05:02:17 PM,07/07/2013 05:02:35 PM,07/07/2013 05:03:51 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 05:04:22 PM,1800 Block of OAK ST,SF,94117,B05,21,4524,3,3,3,false,Alarm,1,ENGINE,4,5,5,Haight Ashbury,"(37.7715102072393, -122.449768153946)",131880256-E21 +160452967,55,16018258,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:45:44 PM,02/14/2016 07:46:45 PM,02/14/2016 07:47:27 PM,02/14/2016 07:47:48 PM,02/14/2016 07:52:24 PM,02/14/2016 08:11:32 PM,02/14/2016 08:23:05 PM,Code 2 Transport,02/14/2016 08:53:19 PM,300 Block of 19TH AVE,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7813479155622, -122.478305098374)",160452967-55 +130730256,E19,13024405,Medical Incident,03/14/2013,03/14/2013,03/14/2013 04:46:14 PM,03/14/2013 04:46:52 PM,03/14/2013 04:47:05 PM,03/14/2013 04:47:41 PM,03/14/2013 04:52:40 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 05:04:22 PM,400 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",130730256-E19 +160221925,57,16008793,Medical Incident,01/22/2016,01/22/2016,01/22/2016 01:47:45 PM,01/22/2016 01:47:52 PM,01/22/2016 01:48:05 PM,01/22/2016 01:48:24 PM,01/22/2016 01:53:30 PM,01/22/2016 02:12:17 PM,01/22/2016 03:05:33 PM,Code 3 Transport,01/22/2016 03:34:01 PM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",160221925-57 +103150237,T05,10101041,Gas Leak (Natural and LP Gases),11/11/2010,11/11/2010,11/11/2010 04:29:34 PM,11/11/2010 04:30:19 PM,11/11/2010 04:30:29 PM,11/11/2010 04:32:23 PM,11/11/2010 04:35:18 PM,04/25/2016 02:07:38 PM,04/25/2016 02:07:38 PM,Other,11/11/2010 04:41:23 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,false,,1,TRUCK,3,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",103150237-T05 +160263580,AM12,16010468,Medical Incident,01/26/2016,01/26/2016,01/26/2016 09:11:50 PM,01/26/2016 09:14:53 PM,01/26/2016 09:15:15 PM,01/26/2016 09:16:15 PM,01/26/2016 09:20:05 PM,01/26/2016 09:44:16 PM,01/26/2016 10:19:38 PM,Code 2 Transport,01/26/2016 10:45:11 PM,0 Block of ROEMER WAY,San Francisco,94112,B09,33,6214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7090296042376, -122.446571654745)",160263580-AM12 +102280042,E34,10071672,Outside Fire,08/16/2010,08/15/2010,08/16/2010 04:01:11 AM,08/16/2010 04:02:52 AM,08/16/2010 04:03:08 AM,08/16/2010 04:04:47 AM,08/16/2010 04:08:12 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/16/2010 04:10:33 AM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,,1,ENGINE,1,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",102280042-E34 +160442811,AM16,16017804,Medical Incident,02/13/2016,02/13/2016,02/13/2016 06:18:37 PM,02/13/2016 06:18:37 PM,02/13/2016 06:19:35 PM,02/13/2016 06:20:05 PM,02/13/2016 06:22:38 PM,02/13/2016 06:39:57 PM,02/13/2016 07:10:34 PM,Code 2 Transport,02/13/2016 07:35:53 PM,200 Block of CLINTON PARK,San Francisco,94103,B02,6,5127,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7689937420774, -122.425634217928)",160442811-AM16 +113480317,B10,11115571,Explosion,12/14/2011,12/14/2011,12/14/2011 06:53:19 PM,12/14/2011 06:54:14 PM,12/14/2011 06:55:02 PM,12/14/2011 06:55:44 PM,12/14/2011 07:01:06 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 07:09:08 PM,1600 Block of YOSEMITE AVE,SF,94124,B10,17,6546,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7273371737416, -122.392411239852)",113480317-B10 +132910321,T01,13099129,Administrative,10/18/2013,10/18/2013,10/18/2013 06:42:52 PM,10/18/2013 06:42:54 PM,10/18/2013 06:43:20 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Fire,10/18/2013 06:43:45 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2244,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7798137203933, -122.403860419019)",132910321-T01 +102250314,KM15,10070976,Medical Incident,08/13/2010,08/13/2010,08/13/2010 10:43:32 PM,08/13/2010 10:44:02 PM,08/13/2010 10:44:16 PM,08/13/2010 10:46:56 PM,08/13/2010 10:51:20 PM,08/13/2010 11:00:37 PM,08/13/2010 11:13:09 PM,Code 3 Transport,08/13/2010 11:43:26 PM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,E,E,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8084350175869, -122.410774214375)",102250314-KM15 +121390240,65,12046212,Medical Incident,05/18/2012,05/18/2012,05/18/2012 04:29:51 PM,05/18/2012 04:31:50 PM,05/18/2012 04:32:41 PM,05/18/2012 04:32:50 PM,05/18/2012 04:40:56 PM,05/18/2012 04:59:09 PM,05/18/2012 05:03:35 PM,Code 3 Transport,05/18/2012 05:41:50 PM,3000 Block of 26TH ST,SF,94110,B06,9,5615,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7495721300101, -122.410215105411)",121390240-65 +122330260,RC1,12077348,Medical Incident,08/20/2012,08/20/2012,08/20/2012 04:08:59 PM,08/20/2012 04:10:00 PM,08/20/2012 04:15:13 PM,08/20/2012 04:44:03 PM,08/20/2012 04:48:20 PM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Other,08/20/2012 05:03:40 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",122330260-RC1 +112890158,E43,11095854,Medical Incident,10/16/2011,10/16/2011,10/16/2011 11:13:53 AM,10/16/2011 11:13:53 AM,10/16/2011 11:14:29 AM,10/16/2011 11:15:31 AM,10/16/2011 11:18:24 AM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 11:28:55 AM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",112890158-E43 +102270284,RC1,10071544,Medical Incident,08/15/2010,08/15/2010,08/15/2010 07:05:59 PM,08/15/2010 07:06:31 PM,08/15/2010 07:06:44 PM,08/15/2010 07:12:13 PM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,Other,08/15/2010 07:14:53 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,true,,1,RESCUE CAPTAIN,4,1,3,North Beach,"(37.8082633159603, -122.414972542075)",102270284-RC1 +113600277,E13,11119739,Alarms,12/26/2011,12/26/2011,12/26/2011 07:35:46 PM,12/26/2011 07:36:59 PM,12/26/2011 07:37:18 PM,12/26/2011 07:38:22 PM,12/26/2011 07:40:16 PM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 07:48:59 PM,300 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.7982414067113, -122.403286579807)",113600277-E13 +121490204,E03,12049473,Medical Incident,05/28/2012,05/28/2012,05/28/2012 04:20:30 PM,05/28/2012 04:21:51 PM,05/28/2012 04:22:03 PM,05/28/2012 04:23:12 PM,05/28/2012 04:31:47 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 04:40:26 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",121490204-E03 +123440197,E40,12114999,Medical Incident,12/09/2012,12/09/2012,12/09/2012 01:05:46 PM,12/09/2012 01:06:45 PM,12/09/2012 01:07:54 PM,12/09/2012 01:08:58 PM,12/09/2012 01:17:03 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Patient Declined Transport,12/09/2012 01:37:00 PM,0 Block of SYLVAN DR,SF,94132,B08,19,8741,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.733238512412, -122.485391204577)",123440197-E40 +92730275,B04,9081541,Alarms,09/30/2009,09/30/2009,09/30/2009 05:14:57 PM,09/30/2009 05:17:10 PM,09/30/2009 05:17:24 PM,09/30/2009 05:18:37 PM,09/30/2009 05:20:37 PM,04/25/2016 03:26:45 PM,04/25/2016 03:26:45 PM,Other,09/30/2009 05:25:24 PM,1400 Block of POLK ST,SF,94109,B04,3,3122,3,3,3,false,,1,CHIEF,1,4,3,Nob Hill,"(37.790090632912, -122.420658749212)",092730275-B04 +103130399,E23,10100529,Medical Incident,11/09/2010,11/09/2010,11/09/2010 11:53:13 PM,11/09/2010 11:54:29 PM,11/09/2010 11:55:47 PM,11/09/2010 11:56:43 PM,11/09/2010 11:59:35 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/10/2010 12:09:22 AM,1500 Block of GREAT HWY,SF,94122,B08,23,7724,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7574877093047, -122.508938004244)",103130399-E23 +102900008,E06,10092364,Medical Incident,10/17/2010,10/16/2010,10/17/2010 12:28:26 AM,10/17/2010 12:28:37 AM,10/17/2010 12:29:21 AM,10/17/2010 12:31:01 AM,10/17/2010 12:32:54 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 12:45:31 AM,CASTRO ST/DUBOCE AV,SF,94117,B05,6,5133,3,3,3,true,,1,ENGINE,1,5,8,Haight Ashbury,"(37.7690584547768, -122.435794213255)",102900008-E06 +133250036,KM07,13110263,Medical Incident,11/21/2013,11/20/2013,11/21/2013 03:30:34 AM,11/21/2013 03:32:13 AM,11/21/2013 03:32:29 AM,11/21/2013 03:33:02 AM,11/21/2013 03:34:07 AM,11/21/2013 03:48:38 AM,11/21/2013 04:01:13 AM,Code 2 Transport,11/21/2013 04:40:01 AM,EDDY ST/MASON ST,SF,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",133250036-KM07 +112830097,E16,11093603,Medical Incident,10/10/2011,10/10/2011,10/10/2011 09:28:14 AM,10/10/2011 09:29:38 AM,10/10/2011 09:30:18 AM,10/10/2011 09:31:23 AM,10/10/2011 09:34:08 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,No Merit,10/10/2011 09:40:30 AM,1700 Block of GREENWICH ST,SF,94123,B04,16,3336,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7999469340089, -122.428478709476)",112830097-E16 +113210395,59,11106799,Medical Incident,11/17/2011,11/17/2011,11/17/2011 11:23:16 PM,11/17/2011 11:26:02 PM,11/17/2011 11:26:55 PM,11/17/2011 11:27:45 PM,11/17/2011 11:40:38 PM,11/18/2011 12:02:48 AM,11/18/2011 12:26:30 AM,Code 2 Transport,11/18/2011 12:34:29 AM,200 Block of SPEAR ST,SF,94105,B03,35,2114,1,1,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7907290972823, -122.391698710083)",113210395-59 +132830268,E33,13096370,Electrical Hazard,10/10/2013,10/10/2013,10/10/2013 04:48:43 PM,10/10/2013 04:50:05 PM,10/10/2013 04:50:45 PM,10/10/2013 04:52:34 PM,10/10/2013 04:55:51 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Fire,10/10/2013 04:58:56 PM,BRIGHTON AV/GRAFTON AV,SF,94112,B09,33,8465,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7200357422854, -122.455118450698)",132830268-E33 +120700054,T01,12023155,Alarms,03/10/2012,03/09/2012,03/10/2012 04:45:26 AM,03/10/2012 04:46:34 AM,03/10/2012 04:46:43 AM,03/10/2012 04:49:06 AM,03/10/2012 04:50:38 AM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/10/2012 04:58:23 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",120700054-T01 +160512982,AM16,16020589,Medical Incident,02/20/2016,02/20/2016,02/20/2016 08:25:28 PM,02/20/2016 08:25:28 PM,02/20/2016 08:25:54 PM,02/20/2016 08:26:24 PM,02/20/2016 08:35:37 PM,02/20/2016 08:58:42 PM,02/20/2016 09:28:40 PM,Code 2 Transport,02/20/2016 09:54:54 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7132160470202, -122.460797253978)",160512982-AM16 +120840137,KM04,12027868,Medical Incident,03/24/2012,03/24/2012,03/24/2012 10:14:47 AM,03/24/2012 10:16:49 AM,03/24/2012 10:17:22 AM,03/24/2012 10:18:50 AM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Other,03/24/2012 10:20:05 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,false,Non Life-threatening,1,PRIVATE,4,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",120840137-KM04 +102820108,KM04,10089624,Medical Incident,10/09/2010,10/09/2010,10/09/2010 08:32:46 AM,10/09/2010 08:33:27 AM,10/09/2010 08:33:44 AM,10/09/2010 08:35:19 AM,10/09/2010 08:37:36 AM,10/09/2010 08:53:35 AM,10/09/2010 09:08:44 AM,Code 2 Transport,10/09/2010 09:32:43 AM,2700 Block of OCTAVIA ST,SF,94123,B04,16,3335,3,3,3,false,,1,PRIVATE,2,4,2,Marina,"(37.7974672577341, -122.428751342054)",102820108-KM04 +120490028,E16,12016092,Medical Incident,02/18/2012,02/17/2012,02/18/2012 02:12:35 AM,02/18/2012 02:13:12 AM,02/18/2012 02:13:36 AM,02/18/2012 02:15:33 AM,02/18/2012 02:18:25 AM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/18/2012 02:30:49 AM,2000 Block of LOMBARD ST,SF,94123,B04,16,3461,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8000637304803, -122.435248996986)",120490028-E16 +120240033,E05,12007990,Medical Incident,01/24/2012,01/23/2012,01/24/2012 04:20:53 AM,01/24/2012 04:22:53 AM,01/24/2012 04:23:11 AM,01/24/2012 04:25:23 AM,01/24/2012 04:26:26 AM,04/25/2016 02:00:28 PM,04/25/2016 02:00:28 PM,Other,01/24/2012 04:40:42 AM,1500 Block of TURK ST,SF,94115,B05,5,3643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Western Addition,"(37.7802364001974, -122.434615507632)",120240033-E05 +160542134,AM04,16021634,Medical Incident,02/23/2016,02/23/2016,02/23/2016 02:19:15 PM,02/23/2016 02:22:03 PM,02/23/2016 02:23:27 PM,02/23/2016 02:24:27 PM,02/23/2016 02:31:50 PM,02/23/2016 02:51:49 PM,02/23/2016 03:08:41 PM,Code 2 Transport,02/23/2016 03:35:01 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160542134-AM04 +160493014,AM12,16019830,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:01:18 PM,02/18/2016 06:04:55 PM,02/18/2016 06:05:05 PM,02/18/2016 06:05:35 PM,02/18/2016 06:29:16 PM,02/18/2016 06:54:00 PM,02/18/2016 07:17:00 PM,Code 2 Transport,02/18/2016 07:34:27 PM,3600 Block of ORTEGA ST,San Francisco,94116,B08,23,7646,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7511602293042, -122.502592654356)",160493014-AM12 +160550762,50,16021919,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:24:13 AM,02/24/2016 08:25:07 AM,02/24/2016 08:26:12 AM,02/24/2016 08:26:12 AM,02/24/2016 08:37:02 AM,02/24/2016 08:54:38 AM,02/24/2016 09:17:20 AM,Code 2 Transport,02/24/2016 09:55:53 AM,1200 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6614,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7214606647015, -122.392279417619)",160550762-50 +133180360,T13,13108227,Alarms,11/14/2013,11/14/2013,11/14/2013 11:04:31 PM,11/14/2013 11:05:43 PM,11/14/2013 11:05:55 PM,11/14/2013 11:07:55 PM,11/14/2013 11:09:43 PM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/14/2013 11:14:21 PM,600 Block of CALIFORNIA ST,SF,94108,B01,13,1314,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",133180360-T13 +102940121,60,10093704,Medical Incident,10/21/2010,10/21/2010,10/21/2010 11:00:22 AM,10/21/2010 11:01:23 AM,10/21/2010 11:01:44 AM,10/21/2010 11:01:57 AM,10/21/2010 11:04:10 AM,10/21/2010 11:29:13 AM,10/21/2010 11:49:36 AM,Code 2 Transport,10/21/2010 12:18:18 PM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,true,,1,MEDIC,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",102940121-60 +102820252,T05,10089737,Citizen Assist / Service Call,10/09/2010,10/09/2010,10/09/2010 02:45:07 PM,10/09/2010 02:45:07 PM,10/09/2010 02:45:16 PM,10/09/2010 02:46:51 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 02:55:23 PM,1600 Block of TURK ST,SF,94115,B05,5,3643,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.780026750015, -122.436259177468)",102820252-T05 +131360274,T09,13045937,Administrative,05/16/2013,05/16/2013,05/16/2013 02:44:48 PM,05/16/2013 02:44:54 PM,05/16/2013 02:45:03 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 02:45:25 PM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",131360274-T09 +131700272,T01,13057799,Structure Fire,06/19/2013,06/19/2013,06/19/2013 04:49:54 PM,06/19/2013 04:49:55 PM,06/19/2013 04:50:02 PM,06/19/2013 04:51:52 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/19/2013 04:53:35 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131700272-T01 +132460045,93,13082894,Medical Incident,09/03/2013,09/02/2013,09/03/2013 05:33:24 AM,09/03/2013 05:36:21 AM,09/03/2013 05:36:29 AM,09/03/2013 05:36:59 AM,09/03/2013 05:43:27 AM,09/03/2013 06:02:59 AM,09/03/2013 06:11:31 AM,Code 3 Transport,09/03/2013 06:47:09 AM,700 Block of BROADWAY,SF,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7976146082072, -122.409164766852)",132460045-93 +112950304,KM12,11097948,Medical Incident,10/22/2011,10/22/2011,10/22/2011 06:58:46 PM,10/22/2011 06:59:19 PM,10/22/2011 06:59:58 PM,10/22/2011 07:01:24 PM,10/22/2011 07:08:22 PM,10/22/2011 07:30:12 PM,10/22/2011 07:50:56 PM,Code 2 Transport,10/22/2011 08:20:34 PM,BEACH ST/POWELL ST,SF,94133,B01,28,1344,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.807690493217, -122.412329558798)",112950304-KM12 +111100086,B03,11036239,Alarms,04/20/2011,04/20/2011,04/20/2011 08:03:52 AM,04/20/2011 08:04:36 AM,04/20/2011 08:04:46 AM,04/20/2011 08:05:50 AM,04/20/2011 08:12:44 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 08:12:48 AM,1500 Block of 6TH AVE,SF,94122,B03,29,2265,3,3,3,false,,1,CHIEF,3,8,7,Inner Sunset,"(37.7600909808627, -122.462885984723)",111100086-B03 +112320345,E41,11076737,Medical Incident,08/20/2011,08/20/2011,08/20/2011 09:01:22 PM,08/20/2011 09:02:18 PM,08/20/2011 09:02:45 PM,08/20/2011 09:04:49 PM,08/20/2011 09:06:09 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/20/2011 09:13:20 PM,1000 Block of HYDE ST,SF,94109,B04,41,1562,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7905178178349, -122.417229719258)",112320345-E41 +121030225,E03,12034148,Alarms,04/12/2012,04/12/2012,04/12/2012 02:26:04 PM,04/12/2012 02:28:34 PM,04/12/2012 02:29:07 PM,04/12/2012 02:29:34 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 02:33:43 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",121030225-E03 +92620339,B04,9078183,Alarms,09/19/2009,09/19/2009,09/19/2009 09:34:13 PM,09/19/2009 09:35:15 PM,09/19/2009 09:35:27 PM,09/19/2009 09:36:21 PM,04/25/2016 03:26:55 PM,04/25/2016 03:26:55 PM,04/25/2016 03:26:55 PM,Other,09/19/2009 09:38:18 PM,1900 Block of LOMBARD ST,SF,94123,B04,16,3461,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.8002723548355, -122.433605968659)",092620339-B04 +122060278,KM12,12068569,Traffic Collision,07/24/2012,07/24/2012,07/24/2012 05:22:58 PM,07/24/2012 05:23:01 PM,07/24/2012 05:24:25 PM,07/24/2012 05:25:34 PM,07/24/2012 05:33:52 PM,07/24/2012 05:45:25 PM,07/24/2012 06:09:32 PM,Code 2 Transport,07/24/2012 06:46:24 PM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",122060278-KM12 +130650086,T06,13021684,Medical Incident,03/06/2013,03/06/2013,03/06/2013 08:51:14 AM,03/06/2013 08:52:13 AM,03/06/2013 08:53:31 AM,03/06/2013 08:55:28 AM,03/06/2013 09:01:13 AM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,Other,03/06/2013 09:14:14 AM,300 Block of PARNASSUS AVE,SF,94117,B05,12,5155,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,5,5,Inner Sunset,"(37.7640840126749, -122.45593384681)",130650086-T06 +122230348,T14,12074077,Traffic Collision,08/10/2012,08/10/2012,08/10/2012 08:26:20 PM,08/10/2012 08:28:03 PM,08/10/2012 08:28:37 PM,08/10/2012 08:30:01 PM,08/10/2012 08:31:27 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 08:56:00 PM,26TH AV/CLEMENT ST,SF,94121,B07,14,7221,3,3,3,true,Potentially Life-Threatening,1,TRUCK,2,7,1,Outer Richmond,"(37.7819746195638, -122.485945326699)",122230348-T14 +120410040,85,12013538,Medical Incident,02/10/2012,02/09/2012,02/10/2012 03:41:06 AM,02/10/2012 03:42:12 AM,02/10/2012 03:42:26 AM,02/10/2012 03:42:58 AM,02/10/2012 03:49:46 AM,02/10/2012 04:05:16 AM,02/10/2012 04:17:39 AM,Code 2 Transport,02/10/2012 04:50:19 AM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",120410040-85 +112440085,T13,11080373,Structure Fire,09/01/2011,09/01/2011,09/01/2011 09:07:40 AM,09/01/2011 09:07:40 AM,09/01/2011 09:07:48 AM,09/01/2011 09:08:47 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 09:12:01 AM,BEALE ST/FOLSOM ST,SF,94105,B03,35,2122,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7886866619654, -122.392722833778)",112440085-T13 +123590247,79,12120247,Medical Incident,12/24/2012,12/24/2012,12/24/2012 05:02:11 PM,12/24/2012 05:04:51 PM,12/24/2012 05:05:08 PM,12/24/2012 05:05:32 PM,12/24/2012 05:09:57 PM,12/24/2012 05:20:40 PM,12/24/2012 05:26:15 PM,Code 2 Transport,12/24/2012 05:45:23 PM,900 Block of OFARRELL ST,SF,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848026049584, -122.420359587803)",123590247-79 +140810114,T02,14027307,Alarms,03/22/2014,03/22/2014,03/22/2014 09:44:11 AM,03/22/2014 09:45:44 AM,03/22/2014 09:48:14 AM,03/22/2014 09:48:47 AM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Fire,03/22/2014 09:51:12 AM,600 Block of STOCKTON ST,SAN FRANCISCO,94108,B01,2,1325,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",140810114-T02 +160282737,66,16011170,Medical Incident,01/28/2016,01/28/2016,01/28/2016 04:48:01 PM,01/28/2016 04:48:01 PM,01/28/2016 04:50:17 PM,01/28/2016 04:50:17 PM,01/28/2016 04:57:31 PM,01/28/2016 05:07:57 PM,01/28/2016 05:45:53 PM,Code 2 Transport,01/28/2016 06:41:49 PM,5200 Block of 3RD ST,San Francisco,94124,B10,17,6536,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7297002538198, -122.392619682108)",160282737-66 +160211679,KM11,16008369,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:28:54 PM,01/21/2016 12:29:56 PM,01/21/2016 12:30:15 PM,01/21/2016 12:31:01 PM,01/21/2016 12:36:34 PM,01/21/2016 12:42:05 PM,01/21/2016 01:01:50 PM,Code 2 Transport,01/21/2016 01:21:16 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160211679-KM11 +112280231,RC1,11075399,Medical Incident,08/16/2011,08/16/2011,08/16/2011 03:58:18 PM,08/16/2011 03:59:43 PM,08/16/2011 04:00:29 PM,08/16/2011 04:01:34 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Other,08/16/2011 04:05:23 PM,SACRAMENTO ST/VAN NESS AV,SF,94109,B04,41,3154,3,E,3,true,,1,RESCUE CAPTAIN,4,4,3,Nob Hill,"(37.7912888912559, -122.422514944187)",112280231-RC1 +132140337,E12,13072395,Citizen Assist / Service Call,08/02/2013,08/02/2013,08/02/2013 08:48:40 PM,08/02/2013 08:51:06 PM,08/02/2013 08:52:19 PM,04/25/2016 01:51:30 PM,08/02/2013 08:55:00 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 08:59:56 PM,900 Block of ASHBURY ST,SF,94117,B05,12,5164,3,3,3,true,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.7646916029501, -122.445790251499)",132140337-E12 +131050414,T06,13035469,Gas Leak (Natural and LP Gases),04/15/2013,04/15/2013,04/15/2013 11:05:54 PM,04/15/2013 11:08:22 PM,04/15/2013 11:08:38 PM,04/15/2013 11:10:29 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/15/2013 11:21:54 PM,100 Block of HERMANN ST,SF,94102,B02,6,3417,3,3,3,false,Alarm,1,TRUCK,3,2,5,Hayes Valley,"(37.7706102102676, -122.427614378047)",131050414-T06 +160812240,54,16032231,Traffic Collision,03/21/2016,03/21/2016,03/21/2016 03:00:25 PM,03/21/2016 03:02:54 PM,03/21/2016 03:24:42 PM,03/21/2016 03:28:35 PM,03/21/2016 03:35:19 PM,03/21/2016 03:58:53 PM,03/21/2016 04:26:14 PM,Code 2 Transport,03/21/2016 05:11:36 PM,GEARY BL/PARKER AV,San Francisco,94118,B07,10,4453,2,2,2,true,Non Life-threatening,1,MEDIC,5,7,1,Lone Mountain/USF,"(37.7815988218365, -122.45417599296)",160812240-54 +120540263,83,12017886,Medical Incident,02/23/2012,02/23/2012,02/23/2012 04:15:17 PM,02/23/2012 04:17:01 PM,02/23/2012 04:17:10 PM,02/23/2012 04:18:18 PM,02/23/2012 04:28:10 PM,02/23/2012 04:30:35 PM,02/23/2012 04:47:51 PM,Code 2 Transport,02/23/2012 05:16:03 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",120540263-83 +160751496,61,16029690,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:46:45 AM,03/15/2016 11:47:07 AM,03/15/2016 11:47:27 AM,03/15/2016 11:47:34 AM,03/15/2016 11:55:27 AM,03/15/2016 12:09:59 PM,03/15/2016 12:29:17 PM,Code 2 Transport,03/15/2016 12:42:39 PM,FRANCISCO ST/KEARNY ST,San Francisco,94133,B01,28,1223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054944688801, -122.406956635638)",160751496-61 +130130025,E11,13004286,Citizen Assist / Service Call,01/13/2013,01/12/2013,01/13/2013 12:57:31 AM,01/13/2013 01:00:25 AM,01/13/2013 01:32:23 AM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/13/2013 01:33:45 AM,200 Block of CHENERY ST,SF,94131,B06,32,8113,3,3,3,true,Alarm,1,ENGINE,2,6,8,Glen Park,"(37.737804983757, -122.426907272853)",130130025-E11 +110530351,54,11017662,Medical Incident,02/22/2011,02/22/2011,02/22/2011 09:27:40 PM,02/22/2011 09:28:50 PM,02/22/2011 09:29:08 PM,02/22/2011 09:29:27 PM,02/22/2011 09:38:16 PM,02/22/2011 09:51:31 PM,02/22/2011 10:03:23 PM,Code 2 Transport,02/22/2011 10:32:12 PM,WOODWARD ST/DUBOCE AV,SF,94103,B02,36,5215,3,1,2,true,,1,MEDIC,1,2,9,Mission,"(37.7699175515884, -122.420938647329)",110530351-54 +123090019,94,12102594,Medical Incident,11/04/2012,11/03/2012,11/04/2012 12:40:35 AM,11/04/2012 12:42:09 AM,11/04/2012 12:42:52 AM,11/04/2012 12:42:57 AM,11/04/2012 01:03:19 AM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,Patient Declined Transport,11/04/2012 01:06:41 AM,CLEMENT ST/6TH AV,SF,94118,B07,31,7125,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7829399330612, -122.464425023808)",123090019-94 +132170158,RC1,13073280,Medical Incident,08/05/2013,08/05/2013,08/05/2013 12:27:17 PM,08/05/2013 12:28:45 PM,08/05/2013 12:30:21 PM,08/05/2013 12:31:30 PM,08/05/2013 12:33:14 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 12:41:25 PM,300 Block of MARKET ST,SF,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Financial District/South Beach,"(37.7919873998129, -122.397733553251)",132170158-RC1 +120110080,KM15,12003731,Medical Incident,01/11/2012,01/11/2012,01/11/2012 09:18:23 AM,01/11/2012 09:19:07 AM,01/11/2012 09:19:23 AM,01/11/2012 09:19:58 AM,01/11/2012 09:22:07 AM,01/11/2012 09:38:14 AM,01/11/2012 09:44:54 AM,Code 2 Transport,01/11/2012 10:00:46 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",120110080-KM15 +120500162,AP,12016511,Other,02/19/2012,02/19/2012,02/19/2012 12:31:12 PM,02/19/2012 12:31:13 PM,02/19/2012 12:31:13 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Fire,02/19/2012 12:31:26 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120500162-AP +131200229,KM01,13040415,Medical Incident,04/30/2013,04/30/2013,04/30/2013 05:33:50 PM,04/30/2013 05:36:29 PM,04/30/2013 05:36:36 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,04/25/2016 01:53:02 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",131200229-KM01 +110470138,E32,11015496,Medical Incident,02/16/2011,02/16/2011,02/16/2011 10:12:24 AM,02/16/2011 10:12:30 AM,02/16/2011 10:14:23 AM,02/16/2011 10:14:46 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 10:17:54 AM,400 Block of HOLLADAY AVE,SF,94110,B06,9,5675,3,3,3,true,,1,ENGINE,4,10,9,Bernal Heights,"(37.7429361272144, -122.407245750769)",110470138-E32 +131730108,KM11,13058641,Medical Incident,06/22/2013,06/22/2013,06/22/2013 10:08:09 AM,06/22/2013 10:12:43 AM,06/22/2013 10:13:30 AM,04/25/2016 01:52:10 PM,06/22/2013 10:22:58 AM,06/22/2013 10:38:16 AM,06/22/2013 10:51:31 AM,Code 2 Transport,06/22/2013 11:41:17 AM,2700 Block of PINE ST,SF,94115,B04,10,4156,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7869521630601, -122.441071822801)",131730108-KM11 +110290196,T19,11009552,Structure Fire,01/29/2011,01/29/2011,01/29/2011 01:15:08 PM,01/29/2011 01:17:07 PM,01/29/2011 01:17:29 PM,01/29/2011 01:18:53 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/29/2011 01:25:30 PM,300 Block of MAGELLAN AVE,SF,94116,B08,39,8624,3,3,3,false,,1,TRUCK,11,8,7,West of Twin Peaks,"(37.7460496773153, -122.462270591717)",110290196-T19 +111400051,E03,11046434,Medical Incident,05/20/2011,05/19/2011,05/20/2011 05:38:04 AM,05/20/2011 05:38:37 AM,05/20/2011 05:38:46 AM,05/20/2011 05:40:59 AM,05/20/2011 05:42:28 AM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,Other,05/20/2011 05:43:00 AM,HEMLOCK ST/VAN NESS AV,SF,94109,B04,3,3161,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7870872505884, -122.421559716806)",111400051-E03 +160653629,AM20,16026164,Medical Incident,03/05/2016,03/05/2016,03/05/2016 10:24:40 PM,03/05/2016 10:25:04 PM,03/05/2016 10:28:34 PM,03/05/2016 10:29:00 PM,03/05/2016 10:40:49 PM,03/05/2016 11:14:19 PM,03/05/2016 11:30:23 PM,Code 2 Transport,03/06/2016 12:03:50 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160653629-AM20 +111220228,92,11040349,Medical Incident,05/02/2011,05/02/2011,05/02/2011 01:54:01 PM,05/02/2011 01:54:57 PM,05/02/2011 01:55:19 PM,05/02/2011 01:55:32 PM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,04/25/2016 02:04:49 PM,2100 Block of 24TH AVE,SF,94116,B08,40,7444,3,3,3,true,,1,MEDIC,4,8,4,Sunset/Parkside,"(37.7474792137801, -122.481306264779)",111220228-92 +160242703,75,16009625,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:58:30 PM,01/24/2016 05:59:40 PM,01/24/2016 06:00:22 PM,01/24/2016 06:00:36 PM,01/24/2016 06:11:37 PM,01/24/2016 06:34:42 PM,01/24/2016 06:50:07 PM,Code 2 Transport,01/24/2016 07:16:48 PM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",160242703-75 +121840037,T03,12061169,Medical Incident,07/02/2012,07/01/2012,07/02/2012 03:41:30 AM,07/02/2012 03:42:01 AM,07/02/2012 03:42:40 AM,07/02/2012 03:43:00 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,04/25/2016 01:57:55 PM,JONES ST/OFARRELL ST,SF,94102,B01,1,1452,E,A,2,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",121840037-T03 +123390035,E01,12112945,Medical Incident,12/04/2012,12/03/2012,12/04/2012 03:51:12 AM,12/04/2012 03:52:35 AM,12/04/2012 03:52:48 AM,12/04/2012 03:54:14 AM,12/04/2012 03:59:15 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 04:09:54 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",123390035-E01 +132980351,88,13101345,Medical Incident,10/25/2013,10/25/2013,10/25/2013 07:35:45 PM,10/25/2013 07:36:29 PM,10/25/2013 07:37:14 PM,10/25/2013 07:37:21 PM,10/25/2013 07:41:46 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,04/25/2016 01:50:05 PM,0 Block of BANBURY DR,SF,94132,B09,19,8752,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7199771878959, -122.473992866196)",132980351-88 +140210355,T10,14007342,Citizen Assist / Service Call,01/21/2014,01/21/2014,01/21/2014 10:00:51 PM,01/21/2014 10:01:30 PM,01/21/2014 10:01:44 PM,01/21/2014 10:03:46 PM,01/21/2014 10:06:25 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Fire,01/21/2014 10:38:02 PM,0 Block of LOYOLA TER,SF,94117,B05,21,4522,3,3,3,false,Alarm,1,TRUCK,1,5,1,Lone Mountain/USF,"(37.7758865411674, -122.448858643661)",140210355-T10 +132670008,67,13090493,Medical Incident,09/24/2013,09/23/2013,09/24/2013 12:57:11 AM,09/24/2013 12:58:48 AM,09/24/2013 12:59:48 AM,09/24/2013 12:59:55 AM,09/24/2013 01:07:35 AM,09/24/2013 01:16:18 AM,09/24/2013 01:26:26 AM,Code 2 Transport,09/24/2013 01:48:57 AM,1800 Block of 41ST AVE,SF,94122,B08,18,7633,2,2,2,false,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7522704551355, -122.499910588414)",132670008-67 +130530295,AM06,13018001,Medical Incident,02/22/2013,02/22/2013,02/22/2013 05:43:45 PM,02/22/2013 05:45:52 PM,02/22/2013 05:46:06 PM,02/22/2013 05:46:47 PM,02/22/2013 05:52:18 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Fire,02/22/2013 06:07:30 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",130530295-AM06 +160391788,AM12,16015620,Medical Incident,02/08/2016,02/08/2016,02/08/2016 01:10:04 PM,02/08/2016 01:12:17 PM,02/08/2016 01:12:33 PM,02/08/2016 01:13:12 PM,02/08/2016 01:17:00 PM,02/08/2016 01:39:26 PM,02/08/2016 01:54:56 PM,Code 2 Transport,02/08/2016 02:28:15 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160391788-AM12 +160581764,74,16023119,Medical Incident,02/27/2016,02/27/2016,02/27/2016 01:04:41 PM,02/27/2016 01:04:41 PM,02/27/2016 01:05:50 PM,02/27/2016 01:06:44 PM,02/27/2016 01:11:03 PM,02/27/2016 01:34:15 PM,02/27/2016 01:34:33 PM,Code 2 Transport,02/27/2016 02:12:21 PM,HAIGHT ST/STANYAN ST,San Francisco,94117,B05,12,4545,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",160581764-74 +131550054,E32,13052426,Medical Incident,06/04/2013,06/03/2013,06/04/2013 05:33:45 AM,06/04/2013 05:34:35 AM,06/04/2013 05:35:11 AM,04/25/2016 01:52:28 PM,06/04/2013 05:40:10 AM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/04/2013 05:55:30 AM,"CALL BOX: ELLSWORTH ST/ALEMANY SB BL,SF",SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7322713620509, -122.418897144818)",131550054-E32 +123460251,E01,12115762,Medical Incident,12/11/2012,12/11/2012,12/11/2012 03:27:15 PM,12/11/2012 03:28:36 PM,12/11/2012 03:33:24 PM,12/11/2012 03:34:44 PM,12/11/2012 03:42:08 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 03:46:34 PM,MARKET ST/3RD ST,SF,94103,B01,1,1241,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",123460251-E01 +160180883,KM05,16007169,Medical Incident,01/18/2016,01/18/2016,01/18/2016 09:21:44 AM,01/18/2016 09:24:03 AM,01/18/2016 09:24:54 AM,01/18/2016 09:25:18 AM,01/18/2016 09:35:24 AM,01/18/2016 10:03:10 AM,01/18/2016 10:23:53 AM,Code 2 Transport,01/18/2016 11:16:50 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160180883-KM05 +103430133,77,10109803,Structure Fire,12/09/2010,12/09/2010,12/09/2010 09:26:04 AM,12/09/2010 09:26:26 AM,12/09/2010 09:27:18 AM,12/09/2010 09:27:51 AM,12/09/2010 09:36:11 AM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/09/2010 09:43:09 AM,0 Block of ARLETA AVE,SF,94134,B10,44,6267,3,3,3,true,,1,MEDIC,4,9,10,Visitacion Valley,"(37.7127854702451, -122.403578734833)",103430133-77 +121140229,KM02,12037878,Medical Incident,04/23/2012,04/23/2012,04/23/2012 03:23:42 PM,04/23/2012 03:24:24 PM,04/23/2012 03:24:47 PM,04/23/2012 03:29:23 PM,04/23/2012 03:35:55 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,No Merit,04/23/2012 04:17:53 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",121140229-KM02 +102350091,E12,10073874,Medical Incident,08/23/2010,08/23/2010,08/23/2010 09:25:17 AM,08/23/2010 09:27:07 AM,08/23/2010 09:27:57 AM,08/23/2010 09:28:51 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 09:29:44 AM,PARNASSUS AV/HILL POINT AV,SF,94131,B05,12,5155,3,3,3,true,,1,ENGINE,2,5,5,Inner Sunset,"(37.7640700707945, -122.455781063298)",102350091-E12 +160301331,89,16011741,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:23:49 AM,01/30/2016 10:25:02 AM,01/30/2016 10:25:27 AM,01/30/2016 10:26:25 AM,01/30/2016 10:35:01 AM,01/30/2016 10:49:06 AM,01/30/2016 11:13:03 AM,Code 2 Transport,01/30/2016 11:51:58 AM,1600 Block of WALLACE AVE,San Francisco,94124,B10,17,6546,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7280277124346, -122.391963404098)",160301331-89 +160322373,AM16,16012641,Medical Incident,02/01/2016,02/01/2016,02/01/2016 03:55:23 PM,02/01/2016 03:55:55 PM,02/01/2016 03:56:18 PM,02/01/2016 03:57:00 PM,02/01/2016 04:04:46 PM,02/01/2016 04:08:58 PM,02/01/2016 04:38:42 PM,Code 2 Transport,02/01/2016 05:22:29 PM,CALL BOX:,San Francisco,94107,B03,1,2147,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7854851439259, -122.396731785481)",160322373-AM16 +160193218,61,16007775,Medical Incident,01/19/2016,01/19/2016,01/19/2016 07:36:22 PM,01/19/2016 07:36:58 PM,01/19/2016 07:37:39 PM,01/19/2016 07:37:59 PM,01/19/2016 07:39:46 PM,01/19/2016 07:56:01 PM,01/19/2016 08:11:22 PM,Code 2 Transport,01/19/2016 09:06:24 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160193218-61 +160092432,KM13,16003713,Medical Incident,01/09/2016,01/09/2016,01/09/2016 04:35:05 PM,01/09/2016 04:36:31 PM,01/09/2016 04:36:45 PM,01/09/2016 04:37:08 PM,01/09/2016 04:54:10 PM,01/09/2016 05:04:52 PM,01/09/2016 05:27:50 PM,Code 2 Transport,01/09/2016 05:49:19 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",160092432-KM13 +121960329,AM10,12065319,Medical Incident,07/14/2012,07/14/2012,07/14/2012 08:47:30 PM,07/14/2012 08:48:42 PM,07/14/2012 08:49:35 PM,07/14/2012 08:50:38 PM,07/14/2012 08:56:13 PM,07/14/2012 09:04:14 PM,07/14/2012 09:22:55 PM,Code 2 Transport,07/14/2012 09:54:28 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",121960329-AM10 +112100189,96,11069340,Medical Incident,07/29/2011,07/29/2011,07/29/2011 02:54:26 PM,07/29/2011 02:55:27 PM,07/29/2011 02:55:39 PM,04/25/2016 02:03:26 PM,07/29/2011 02:57:23 PM,07/29/2011 03:10:07 PM,07/29/2011 03:25:52 PM,Code 2 Transport,07/29/2011 03:45:28 PM,1300 Block of MARKET ST,SF,94103,B02,36,3111,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7769455318934, -122.416807079177)",112100189-96 +140030178,66,14001031,Medical Incident,01/03/2014,01/03/2014,01/03/2014 11:16:05 AM,01/03/2014 11:16:22 AM,01/03/2014 11:17:24 AM,01/03/2014 11:18:12 AM,01/03/2014 11:36:27 AM,01/03/2014 11:36:33 AM,01/03/2014 11:47:19 AM,Code 2 Transport,01/03/2014 12:01:57 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",140030178-66 +160771703,84,16030559,Medical Incident,03/17/2016,03/17/2016,03/17/2016 12:17:41 PM,03/17/2016 12:17:41 PM,03/17/2016 12:19:06 PM,03/17/2016 12:19:14 PM,03/17/2016 12:29:04 PM,03/17/2016 12:34:25 PM,03/17/2016 12:51:48 PM,Code 2 Transport,03/17/2016 01:24:47 PM,100 Block of TIFFANY AV,San Francisco,94110,B06,11,5611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Bernal Heights,"(37.7452607746027, -122.42122878628)",160771703-84 +132190395,77,13074130,Medical Incident,08/07/2013,08/07/2013,08/07/2013 10:18:56 PM,08/07/2013 10:20:42 PM,08/07/2013 10:27:07 PM,08/07/2013 10:27:35 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,Other,08/07/2013 10:33:13 PM,500 Block of NATOMA ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,4,3,6,South of Market,"(37.7796886144323, -122.408201798882)",132190395-77 +160550489,55,16021895,Medical Incident,02/24/2016,02/23/2016,02/24/2016 06:38:24 AM,02/24/2016 06:40:33 AM,02/24/2016 06:41:04 AM,02/24/2016 06:41:10 AM,02/24/2016 06:51:19 AM,02/24/2016 07:13:45 AM,02/24/2016 07:28:58 AM,Code 2 Transport,02/24/2016 08:02:44 AM,HOWARD ST/10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7740433259374, -122.414367692219)",160550489-55 +131700362,77,13057880,Medical Incident,06/19/2013,06/19/2013,06/19/2013 10:13:28 PM,06/19/2013 10:14:22 PM,06/19/2013 10:14:37 PM,06/19/2013 10:14:50 PM,06/19/2013 10:19:08 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Patient Declined Transport,06/19/2013 10:53:40 PM,1700 Block of LA SALLE AVE,SF,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7381169167757, -122.391416846144)",131700362-77 +160653583,55,16026157,Medical Incident,03/05/2016,03/05/2016,03/05/2016 10:13:48 PM,03/05/2016 10:13:48 PM,03/05/2016 10:14:26 PM,03/05/2016 10:14:37 PM,03/05/2016 10:22:50 PM,03/05/2016 10:44:28 PM,03/05/2016 10:52:06 PM,Code 2 Transport,03/05/2016 11:22:05 PM,236-242 POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7869021819973, -122.408064958219)",160653583-55 +110010180,E22,11000136,Medical Incident,01/01/2011,12/31/2010,01/01/2011 02:37:59 AM,01/01/2011 02:43:44 AM,01/01/2011 02:56:22 AM,01/01/2011 02:59:19 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 03:04:56 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7854258563204, -122.399870165149)",110010180-E22 +123080235,E01,12102440,Medical Incident,11/03/2012,11/03/2012,11/03/2012 04:45:42 PM,11/03/2012 04:47:01 PM,11/03/2012 04:47:20 PM,11/03/2012 04:47:39 PM,11/03/2012 04:50:26 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,Unable to Locate,11/03/2012 04:52:46 PM,SHIPLEY ST/FALMOUTH ST,SF,94107,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.779005028578, -122.403883328277)",123080235-E01 +160451132,74,16018065,Medical Incident,02/14/2016,02/14/2016,02/14/2016 10:09:54 AM,02/14/2016 10:12:19 AM,02/14/2016 10:13:56 AM,02/14/2016 10:14:03 AM,02/14/2016 10:21:20 AM,02/14/2016 10:35:54 AM,02/14/2016 10:50:08 AM,Code 2 Transport,02/14/2016 11:10:59 AM,BRYANT ST/9TH ST,San Francisco,94103,B03,29,2324,2,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7712907918294, -122.408531083232)",160451132-74 +140710373,T16,14024125,Alarms,03/12/2014,03/12/2014,03/12/2014 08:20:49 PM,03/12/2014 08:23:13 PM,03/12/2014 08:23:22 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Fire,03/12/2014 08:29:03 PM,1000 Block of GIRARD RD,PRESIDIO,94129,B99,51,4612,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.8013251294544, -122.453498244358)",140710373-T16 +110150032,E36,11004867,Medical Incident,01/15/2011,01/14/2011,01/15/2011 02:40:26 AM,01/15/2011 02:41:36 AM,01/15/2011 02:41:46 AM,01/15/2011 02:43:44 AM,01/15/2011 02:45:35 AM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 02:50:31 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,2,2,true,,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",110150032-E36 +160231640,AM12,16009143,Medical Incident,01/23/2016,01/23/2016,01/23/2016 12:46:10 PM,01/23/2016 12:47:03 PM,01/23/2016 12:47:21 PM,01/23/2016 12:48:25 PM,01/23/2016 12:55:49 PM,01/23/2016 01:08:41 PM,01/23/2016 01:19:42 PM,Code 2 Transport,01/23/2016 01:45:34 PM,3400 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4422,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7878174923795, -122.449468699163)",160231640-AM12 +130610279,86,13020535,Traffic Collision,03/02/2013,03/02/2013,03/02/2013 05:08:38 PM,03/02/2013 05:09:38 PM,03/02/2013 05:09:47 PM,03/02/2013 05:10:39 PM,03/02/2013 05:20:06 PM,03/02/2013 05:43:34 PM,03/02/2013 05:53:22 PM,Code 3 Transport,03/02/2013 06:56:19 PM,0 Block of MOFFITT ST,SF,94131,B06,26,8111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7371435128093, -122.432773119399)",130610279-86 +102370014,67,10074590,Medical Incident,08/25/2010,08/24/2010,08/25/2010 01:37:45 AM,08/25/2010 01:39:15 AM,08/25/2010 01:39:35 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,08/25/2010 02:09:35 AM,Code 2 Transport,08/25/2010 02:27:09 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",102370014-67 +123030312,AM04,12100606,Medical Incident,10/29/2012,10/29/2012,10/29/2012 02:25:14 PM,10/29/2012 02:27:44 PM,10/29/2012 02:28:00 PM,10/29/2012 02:28:31 PM,10/29/2012 02:32:26 PM,10/29/2012 02:35:17 PM,10/29/2012 02:58:40 PM,Code 2 Transport,10/29/2012 03:28:28 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7813340573864, -122.399027495005)",123030312-AM04 +103230190,56,10103477,Medical Incident,11/19/2010,11/19/2010,11/19/2010 01:13:30 PM,11/19/2010 01:14:00 PM,11/19/2010 01:14:30 PM,11/19/2010 01:14:51 PM,11/19/2010 01:22:48 PM,11/19/2010 01:32:06 PM,11/19/2010 01:43:05 PM,Code 3 Transport,11/19/2010 02:28:24 PM,0 Block of MIDDLEFIELD DR,SF,94132,B08,19,8741,3,3,3,true,,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7331999479192, -122.48626920863)",103230190-56 +160810253,82,16032029,Medical Incident,03/21/2016,03/20/2016,03/21/2016 02:56:12 AM,03/21/2016 02:58:25 AM,03/21/2016 03:00:23 AM,03/21/2016 03:01:09 AM,03/21/2016 03:07:17 AM,03/21/2016 03:34:07 AM,03/21/2016 03:49:42 AM,Code 2 Transport,03/21/2016 04:34:43 AM,200 Block of PUTNAM ST,San Francisco,94110,B10,32,5746,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",160810253-82 +133280261,E38,13111535,Traffic Collision,11/24/2013,11/24/2013,11/24/2013 05:45:55 PM,11/24/2013 05:45:55 PM,11/24/2013 05:46:10 PM,11/24/2013 05:46:51 PM,11/24/2013 05:49:56 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 06:07:01 PM,BUSH ST/FRANKLIN ST,SF,94109,B04,38,3224,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7882797328681, -122.423594074468)",133280261-E38 +130830034,RC1,13027640,Medical Incident,03/24/2013,03/23/2013,03/24/2013 02:12:44 AM,03/24/2013 02:13:08 AM,03/24/2013 02:13:37 AM,03/24/2013 02:15:49 AM,03/24/2013 02:21:55 AM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/24/2013 02:32:02 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",130830034-RC1 +112230384,61,11073820,Medical Incident,08/11/2011,08/11/2011,08/11/2011 11:19:35 PM,08/11/2011 11:21:54 PM,08/11/2011 11:22:58 PM,08/11/2011 11:24:18 PM,08/11/2011 11:33:19 PM,08/11/2011 11:51:47 PM,08/12/2011 12:14:24 AM,Code 2 Transport,08/12/2011 12:28:51 AM,5TH ST/MISSION ST,SF,94103,B03,1,2246,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",112230384-61 +130240011,87,13008153,Medical Incident,01/24/2013,01/23/2013,01/24/2013 12:47:17 AM,01/24/2013 12:49:55 AM,01/24/2013 12:51:02 AM,01/24/2013 12:51:43 AM,01/24/2013 01:11:41 AM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Gone on Arrival,01/24/2013 01:17:13 AM,0 Block of CRESCIO CT,SF,94112,B09,33,6214,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7096536255367, -122.447597719879)",130240011-87 +140780385,E01,14026557,Medical Incident,03/19/2014,03/19/2014,03/19/2014 11:38:25 PM,03/19/2014 11:39:58 PM,03/19/2014 11:41:06 PM,03/19/2014 11:42:34 PM,03/19/2014 11:45:08 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Code 2 Transport,03/19/2014 11:55:10 PM,400 Block of JESSIE ST,SAN FRANCISCO,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820442091855, -122.408519525275)",140780385-E01 +160351888,79,16013830,Medical Incident,02/04/2016,02/04/2016,02/04/2016 01:22:51 PM,02/04/2016 01:22:51 PM,02/04/2016 01:23:01 PM,02/04/2016 01:23:06 PM,02/04/2016 01:31:40 PM,02/04/2016 01:48:26 PM,02/04/2016 01:57:33 PM,Code 2 Transport,02/04/2016 02:17:57 PM,HAYES ST/BUCHANAN ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7762536677457, -122.427913715931)",160351888-79 +132700213,B09,13091711,Structure Fire,09/27/2013,09/27/2013,09/27/2013 01:00:08 PM,09/27/2013 01:00:08 PM,09/27/2013 01:00:49 PM,09/27/2013 01:02:17 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Fire,09/27/2013 01:15:36 PM,400 Block of BURROWS ST,SF,94134,B10,42,633,3,3,3,false,Alarm,1,CHIEF,3,10,9,Portola,"(37.7278769871167, -122.407535487433)",132700213-B09 +160880218,56,16034799,Medical Incident,03/28/2016,03/27/2016,03/28/2016 02:01:52 AM,03/28/2016 02:06:24 AM,03/28/2016 02:06:59 AM,03/28/2016 02:07:06 AM,03/28/2016 02:11:14 AM,03/28/2016 02:32:36 AM,03/28/2016 02:37:32 AM,Code 2 Transport,03/28/2016 03:06:12 AM,800 Block of TURK ST,San Francisco,94102,B02,3,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.781585403105, -122.423090188841)",160880218-56 +160493843,58,16019906,Medical Incident,02/18/2016,02/18/2016,02/18/2016 10:32:36 PM,02/18/2016 10:33:28 PM,02/18/2016 10:33:41 PM,02/18/2016 10:34:00 PM,02/18/2016 10:57:37 PM,02/18/2016 10:57:38 PM,02/18/2016 11:15:05 PM,Code 2 Transport,02/18/2016 11:57:47 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160493843-58 +130010118,AM30,13000079,Medical Incident,01/01/2013,12/31/2012,01/01/2013 01:52:36 AM,01/01/2013 01:53:13 AM,01/01/2013 01:57:08 AM,01/01/2013 01:57:26 AM,01/01/2013 02:01:54 AM,01/01/2013 02:19:19 AM,01/01/2013 03:06:45 AM,Code 2 Transport,01/01/2013 03:06:46 AM,3RD ST/KIRKWOOD AV,SF,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7379553967402, -122.389587380179)",130010118-AM30 +160722096,KM13,16028643,Medical Incident,03/12/2016,03/12/2016,03/12/2016 03:26:48 PM,03/12/2016 03:29:42 PM,03/12/2016 03:29:58 PM,03/12/2016 03:30:41 PM,03/12/2016 04:02:42 PM,03/12/2016 04:11:36 PM,03/12/2016 04:42:02 PM,Code 2 Transport,03/12/2016 05:24:56 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160722096-KM13 +133460089,88,13117320,Traffic Collision,12/12/2013,12/12/2013,12/12/2013 07:57:09 AM,12/12/2013 08:01:08 AM,12/12/2013 08:02:28 AM,12/12/2013 08:02:52 AM,12/12/2013 08:12:15 AM,12/12/2013 08:29:45 AM,12/12/2013 08:44:12 AM,Code 2 Transport,12/12/2013 09:03:49 AM,POST ST/SCOTT ST,SF,94115,B04,10,4131,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Japantown,"(37.7845309189576, -122.438019671354)",133460089-88 +160881381,KM08,16034910,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:04:58 AM,03/28/2016 11:08:38 AM,03/28/2016 11:11:26 AM,03/28/2016 11:17:16 AM,03/28/2016 11:20:49 AM,03/28/2016 11:43:08 AM,03/28/2016 12:02:45 PM,Code 2 Transport,03/28/2016 12:35:51 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160881381-KM08 +110470259,E05,11015588,Alarms,02/16/2011,02/16/2011,02/16/2011 03:37:26 PM,02/16/2011 03:38:25 PM,02/16/2011 03:39:16 PM,02/16/2011 03:40:14 PM,02/16/2011 03:41:48 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 03:45:01 PM,700 Block of GOUGH ST,SF,94102,B02,5,3263,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7801513070588, -122.423567816511)",110470259-E05 +103000064,D3,10095683,Structure Fire,10/27/2010,10/26/2010,10/27/2010 07:24:16 AM,10/27/2010 07:24:54 AM,10/27/2010 07:25:11 AM,10/27/2010 07:28:04 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 07:34:15 AM,1200 Block of INGALLS ST,SF,94124,B10,17,6572,3,3,3,false,,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7305663224371, -122.381859307677)",103000064-D3 +160214216,AM14,16008599,Medical Incident,01/21/2016,01/21/2016,01/21/2016 11:39:30 PM,01/21/2016 11:40:17 PM,01/21/2016 11:40:36 PM,01/21/2016 11:41:18 PM,01/21/2016 11:43:38 PM,01/21/2016 11:54:03 PM,01/21/2016 11:56:51 PM,Code 2 Transport,01/22/2016 12:12:28 AM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160214216-AM14 +103330163,E07,10106562,Medical Incident,11/29/2010,11/29/2010,11/29/2010 01:08:36 PM,11/29/2010 01:10:38 PM,11/29/2010 01:10:50 PM,11/29/2010 01:11:43 PM,11/29/2010 01:13:38 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Other,11/29/2010 01:31:40 PM,400 Block of ALABAMA ST,SF,94110,B02,7,5244,E,E,3,true,,1,ENGINE,1,2,9,Mission,"(37.7635587241335, -122.412164346445)",103330163-E07 +140470055,E38,14015903,Structure Fire,02/16/2014,02/15/2014,02/16/2014 02:50:54 AM,02/16/2014 02:50:54 AM,02/16/2014 02:52:30 AM,02/16/2014 02:54:33 AM,02/16/2014 02:55:53 AM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 02:56:02 AM,FILLMORE ST/PINE ST,SF,94115,B04,38,3543,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7879502707315, -122.433647123974)",140470055-E38 +132820378,79,13096125,Medical Incident,10/09/2013,10/09/2013,10/09/2013 08:55:28 PM,10/09/2013 08:56:38 PM,10/09/2013 08:59:16 PM,10/09/2013 08:59:22 PM,10/09/2013 09:05:39 PM,10/09/2013 09:24:57 PM,10/09/2013 09:43:08 PM,Code 2 Transport,10/09/2013 10:10:59 PM,1000 Block of POTRERO AVE,SF,94110,B10,37,2552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Potrero Hill,"(37.7553586640566, -122.406682612344)",132820378-79 +111970099,88,11064945,Medical Incident,07/16/2011,07/16/2011,07/16/2011 08:49:47 AM,07/16/2011 08:50:12 AM,07/16/2011 08:51:18 AM,07/16/2011 08:52:12 AM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 09:06:34 AM,600 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7232,3,2,2,true,,1,MEDIC,3,7,2,Seacliff,"(37.7862422734629, -122.490358509112)",111970099-88 +160871437,KM12,16034550,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:30:01 AM,03/27/2016 11:31:26 AM,03/27/2016 11:33:59 AM,03/27/2016 11:35:04 AM,03/27/2016 11:41:34 AM,03/27/2016 11:58:34 AM,03/27/2016 12:21:00 PM,Code 2 Transport,03/27/2016 12:53:51 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160871437-KM12 +160241429,AM02,16009504,Medical Incident,01/24/2016,01/24/2016,01/24/2016 11:48:35 AM,01/24/2016 11:51:14 AM,01/24/2016 11:52:06 AM,01/24/2016 11:52:38 AM,01/24/2016 12:00:37 PM,01/24/2016 12:20:57 PM,01/24/2016 12:53:36 PM,Code 2 Transport,01/24/2016 01:34:59 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7189310883363, -122.439270564268)",160241429-AM02 +111760305,RC1,11058116,Other,06/25/2011,06/25/2011,06/25/2011 06:13:49 PM,06/25/2011 06:13:52 PM,06/25/2011 06:14:04 PM,04/25/2016 02:03:59 PM,06/25/2011 06:18:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 06:42:51 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,RESCUE CAPTAIN,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",111760305-RC1 +123190347,B06,12106206,Alarms,11/14/2012,11/14/2012,11/14/2012 09:12:31 PM,11/14/2012 09:14:13 PM,11/14/2012 09:14:21 PM,11/14/2012 09:15:29 PM,11/14/2012 09:18:16 PM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Other,11/14/2012 09:19:52 PM,800 Block of CHURCH ST,SF,94114,B06,11,5444,3,3,3,false,Alarm,1,CHIEF,2,6,8,Castro/Upper Market,"(37.7568889074607, -122.427999581411)",123190347-B06 +160652498,KM09,16026006,Medical Incident,03/05/2016,03/05/2016,03/05/2016 05:13:10 PM,03/05/2016 05:14:20 PM,03/05/2016 05:14:49 PM,03/05/2016 05:15:22 PM,03/05/2016 05:21:02 PM,03/05/2016 05:46:00 PM,03/05/2016 06:20:25 PM,Code 2 Transport,03/05/2016 06:43:00 PM,1800 Block of 35TH AVE,San Francisco,94122,B08,18,7561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7525523796805, -122.493484218573)",160652498-KM09 +113200007,55,11106140,Medical Incident,11/16/2011,11/15/2011,11/16/2011 12:17:25 AM,11/16/2011 12:19:03 AM,11/16/2011 12:19:17 AM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 12:43:01 AM,FRONT ST/CALIFORNIA ST,SF,94111,B01,13,1134,2,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7933590991491, -122.398781648433)",113200007-55 +133300257,86,13112124,Medical Incident,11/26/2013,11/26/2013,11/26/2013 04:41:07 PM,11/26/2013 04:43:39 PM,11/26/2013 04:45:00 PM,11/26/2013 04:45:14 PM,11/26/2013 05:03:30 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,Other,11/26/2013 05:06:26 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",133300257-86 +123330111,E13,12110605,Alarms,11/28/2012,11/28/2012,11/28/2012 09:21:21 AM,11/28/2012 09:22:17 AM,11/28/2012 09:22:43 AM,04/25/2016 01:55:36 PM,11/28/2012 09:24:19 AM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/28/2012 09:28:52 AM,100 Block of PINE ST,SF,94111,B01,13,1136,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.792387312641, -122.399186604536)",123330111-E13 +103100317,T16,10099506,Alarms,11/06/2010,11/06/2010,11/06/2010 07:57:10 PM,11/06/2010 07:57:10 PM,11/06/2010 07:57:48 PM,11/06/2010 07:59:31 PM,11/06/2010 08:05:05 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 08:10:08 PM,0 Block of MONTCLAIR TER,SF,94109,B01,28,1613,3,3,3,false,,1,TRUCK,3,1,2,Russian Hill,"(37.8024597269615, -122.418874787518)",103100317-T16 +112030142,77,11066984,Medical Incident,07/22/2011,07/22/2011,07/22/2011 10:25:48 AM,07/22/2011 10:28:13 AM,07/22/2011 10:28:38 AM,07/22/2011 10:28:54 AM,07/22/2011 10:39:09 AM,07/22/2011 10:46:52 AM,07/22/2011 11:24:14 AM,Code 2 Transport,07/22/2011 11:31:31 AM,2300 Block of 24TH AVE,SF,94116,B08,40,7461,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",112030142-77 +112800381,T14,11092848,Alarms,10/07/2011,10/07/2011,10/07/2011 11:41:06 PM,10/07/2011 11:42:04 PM,10/07/2011 11:43:05 PM,10/07/2011 11:44:38 PM,10/07/2011 11:47:25 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 11:59:52 PM,400 Block of 38TH AVE,SF,94121,B07,34,7255,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.779808370504, -122.498758567597)",112800381-T14 +160231302,AM12,16009112,Medical Incident,01/23/2016,01/23/2016,01/23/2016 11:04:17 AM,01/23/2016 11:04:40 AM,01/23/2016 11:05:42 AM,01/23/2016 11:07:28 AM,01/23/2016 11:11:39 AM,01/23/2016 11:42:13 AM,01/23/2016 11:54:51 AM,Code 2 Transport,01/23/2016 12:23:13 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160231302-AM12 +160871667,AM02,16034568,Medical Incident,03/27/2016,03/27/2016,03/27/2016 12:32:41 PM,03/27/2016 12:32:41 PM,03/27/2016 12:33:27 PM,03/27/2016 12:33:31 PM,03/27/2016 12:56:31 PM,03/27/2016 12:56:32 PM,03/27/2016 01:14:33 PM,Code 2 Transport,03/27/2016 01:30:57 PM,0 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7814037950794, -122.413702650883)",160871667-AM02 +160373023,AM10,16014824,Medical Incident,02/06/2016,02/06/2016,02/06/2016 05:59:08 PM,02/06/2016 06:00:04 PM,02/06/2016 06:03:42 PM,02/06/2016 06:04:27 PM,02/06/2016 06:10:19 PM,02/06/2016 06:30:43 PM,02/06/2016 06:48:38 PM,Code 2 Transport,02/06/2016 07:26:24 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160373023-AM10 +123420281,E11,12114226,Administrative,12/07/2012,12/07/2012,12/07/2012 02:23:46 PM,12/07/2012 02:23:48 PM,12/07/2012 02:23:51 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 02:24:28 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",123420281-E11 +112840283,RS1,11094096,Medical Incident,10/11/2011,10/11/2011,10/11/2011 04:27:32 PM,10/11/2011 04:29:39 PM,10/11/2011 04:30:05 PM,10/11/2011 04:32:47 PM,10/11/2011 04:33:21 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 04:37:59 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",112840283-RS1 +131390147,E07,13046973,Medical Incident,05/19/2013,05/19/2013,05/19/2013 09:54:53 AM,05/19/2013 09:55:53 AM,05/19/2013 09:56:14 AM,05/19/2013 09:57:21 AM,05/19/2013 09:59:20 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 10:00:46 AM,800 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7595697859376, -122.416880161863)",131390147-E07 +123140071,E36,12104398,Medical Incident,11/09/2012,11/08/2012,11/09/2012 06:52:42 AM,11/09/2012 06:53:32 AM,11/09/2012 06:53:59 AM,11/09/2012 06:55:12 AM,11/09/2012 07:06:06 AM,11/09/2012 07:06:22 AM,04/25/2016 01:55:53 PM,Other,11/09/2012 07:21:34 AM,14TH ST/HARRISON ST,SF,94103,B02,36,5112,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7686712258347, -122.413396248713)",123140071-E36 +110270095,E08,11008815,Traffic Collision,01/27/2011,01/27/2011,01/27/2011 08:56:56 AM,01/27/2011 08:57:47 AM,01/27/2011 08:59:10 AM,01/27/2011 09:00:46 AM,01/27/2011 09:04:32 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/27/2011 09:16:00 AM,FOLSOM ST/1ST ST,SF,94105,B03,35,2137,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7872982139437, -122.394481274637)",110270095-E08 +121360263,60,12045269,Medical Incident,05/15/2012,05/15/2012,05/15/2012 05:13:03 PM,05/15/2012 05:13:37 PM,05/15/2012 05:13:59 PM,05/15/2012 05:14:17 PM,05/15/2012 05:38:23 PM,05/15/2012 05:38:25 PM,05/15/2012 06:06:01 PM,Code 2 Transport,05/15/2012 06:43:16 PM,200 Block of 25TH AVE,SF,94121,B07,14,7214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7848109228763, -122.485148529498)",121360263-60 +121600098,78,12052855,Medical Incident,06/08/2012,06/08/2012,06/08/2012 09:09:33 AM,06/08/2012 09:10:46 AM,06/08/2012 09:10:55 AM,06/08/2012 09:13:20 AM,06/08/2012 09:16:22 AM,06/08/2012 09:45:01 AM,06/08/2012 10:00:54 AM,Code 2 Transport,06/08/2012 10:23:07 AM,2200 Block of 46TH AVE,SF,94116,B08,23,7664,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7445764654926, -122.504750126329)",121600098-78 +120410386,83,12013843,Medical Incident,02/10/2012,02/10/2012,02/10/2012 10:29:12 PM,02/10/2012 10:29:42 PM,02/10/2012 10:30:07 PM,02/10/2012 10:30:23 PM,02/10/2012 10:37:11 PM,02/10/2012 10:50:32 PM,02/10/2012 11:01:45 PM,Code 2 Transport,02/10/2012 11:41:59 PM,1900 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",120410386-83 +123000147,88,12099409,Medical Incident,10/26/2012,10/26/2012,10/26/2012 11:19:04 AM,10/26/2012 11:20:12 AM,10/26/2012 11:20:51 AM,10/26/2012 11:21:18 AM,10/26/2012 11:27:40 AM,10/26/2012 11:43:08 AM,10/26/2012 11:58:56 AM,Code 2 Transport,10/26/2012 12:19:46 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7785992634984, -122.408503211368)",123000147-88 +131640142,T09,13055686,Medical Incident,06/13/2013,06/13/2013,06/13/2013 10:29:44 AM,06/13/2013 10:30:37 AM,06/13/2013 10:31:10 AM,06/13/2013 10:32:18 AM,06/13/2013 10:37:28 AM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/13/2013 10:58:29 AM,100 Block of MIDDLE POINT RD,SF,94124,B10,25,6556,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7348616704412, -122.379348557253)",131640142-T09 +120010095,E28,12000075,Medical Incident,01/01/2012,12/31/2011,01/01/2012 01:09:39 AM,01/01/2012 01:11:55 AM,01/01/2012 01:13:05 AM,01/01/2012 01:14:19 AM,01/01/2012 01:16:42 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 01:21:53 AM,BEACH ST/LEAVENWORTH ST,SF,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8068630302043, -122.418908044287)",120010095-E28 +123030403,54,12100691,Medical Incident,10/29/2012,10/29/2012,10/29/2012 08:34:12 PM,10/29/2012 08:36:16 PM,10/29/2012 08:37:09 PM,10/29/2012 08:37:16 PM,10/29/2012 08:42:49 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Against Medical Advice,10/29/2012 09:26:38 PM,100 Block of 4TH ST,SF,94103,B03,1,2214,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",123030403-54 +160331307,AM08,16012945,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:16:32 AM,02/02/2016 11:18:06 AM,02/02/2016 11:24:32 AM,02/02/2016 11:25:02 AM,02/02/2016 11:47:49 AM,02/02/2016 11:56:16 AM,02/02/2016 12:27:29 PM,Code 2 Transport,02/02/2016 12:55:40 PM,500 Block of 9TH ST,San Francisco,94103,B03,29,2331,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",160331307-AM08 +160652787,KM11,16026040,Medical Incident,03/05/2016,03/05/2016,03/05/2016 06:34:42 PM,03/05/2016 06:38:18 PM,03/05/2016 06:39:38 PM,03/05/2016 06:40:28 PM,03/05/2016 06:54:48 PM,03/05/2016 07:12:13 PM,03/05/2016 07:16:58 PM,Code 2 Transport,03/05/2016 07:41:09 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160652787-KM11 +120150296,E12,12005204,Medical Incident,01/15/2012,01/15/2012,01/15/2012 08:26:53 PM,01/15/2012 08:26:53 PM,01/15/2012 08:26:53 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Patient Declined Transport,01/15/2012 08:47:17 PM,1700 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7693981235751, -122.451276976837)",120150296-E12 +160132799,65,16005263,Medical Incident,01/13/2016,01/13/2016,01/13/2016 04:28:12 PM,01/13/2016 04:29:24 PM,01/13/2016 04:30:14 PM,01/13/2016 04:30:22 PM,01/13/2016 04:35:32 PM,01/13/2016 04:59:23 PM,01/13/2016 05:02:21 PM,Code 2 Transport,01/13/2016 05:36:15 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160132799-65 +140390219,AM16,14013215,Medical Incident,02/08/2014,02/08/2014,02/08/2014 02:39:29 PM,02/08/2014 02:40:44 PM,02/08/2014 02:40:58 PM,02/08/2014 02:41:41 PM,02/08/2014 02:44:40 PM,02/08/2014 03:10:08 PM,02/08/2014 03:31:40 PM,Code 2 Transport,02/08/2014 03:56:02 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",140390219-AM16 +111450187,95,11048183,Medical Incident,05/25/2011,05/25/2011,05/25/2011 02:28:42 PM,05/25/2011 02:29:25 PM,05/25/2011 02:30:22 PM,05/25/2011 02:31:00 PM,05/25/2011 02:49:13 PM,05/25/2011 03:12:43 PM,05/25/2011 04:05:46 PM,Code 2 Transport,05/25/2011 04:05:48 PM,300 Block of CALIFORNIA ST,SF,94104,B01,13,1162,3,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",111450187-95 +103620378,E02,10116288,Medical Incident,12/28/2010,12/28/2010,12/28/2010 11:19:42 PM,12/28/2010 11:21:49 PM,12/28/2010 11:22:48 PM,12/28/2010 11:24:32 PM,12/28/2010 11:26:35 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 11:41:58 PM,0 Block of ADELE CT,SF,94133,B01,2,1354,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7958887320605, -122.409522803015)",103620378-E02 +123470135,KM02,12115972,Medical Incident,12/12/2012,12/12/2012,12/12/2012 10:15:05 AM,12/12/2012 10:15:34 AM,12/12/2012 10:15:53 AM,12/12/2012 10:16:47 AM,12/12/2012 10:24:46 AM,12/12/2012 10:42:03 AM,12/12/2012 11:16:06 AM,Code 2 Transport,12/12/2012 11:49:35 AM,2100 Block of 14TH AVE,SF,94116,B08,40,7362,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7479476518118, -122.470498816)",123470135-KM02 +112500218,B04,11082491,Structure Fire,09/07/2011,09/07/2011,09/07/2011 02:27:12 PM,09/07/2011 02:27:52 PM,09/07/2011 02:28:19 PM,09/07/2011 02:29:50 PM,09/07/2011 02:32:37 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 02:48:15 PM,2500 Block of VAN NESS AVE,SF,94123,B04,16,3146,3,3,3,false,,1,CHIEF,4,4,2,Marina,"(37.7989967483908, -122.424247224738)",112500218-B04 +130040380,KM07,13001518,Medical Incident,01/04/2013,01/04/2013,01/04/2013 08:28:04 PM,01/04/2013 08:28:38 PM,01/04/2013 08:28:57 PM,01/04/2013 08:29:31 PM,01/04/2013 08:40:52 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,No Merit,01/04/2013 08:51:09 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",130040380-KM07 +111810045,54,11059627,Medical Incident,06/30/2011,06/29/2011,06/30/2011 04:39:25 AM,06/30/2011 04:40:25 AM,06/30/2011 04:41:23 AM,06/30/2011 04:43:45 AM,06/30/2011 05:03:15 AM,06/30/2011 05:12:45 AM,06/30/2011 05:21:37 AM,Other,06/30/2011 05:44:01 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",111810045-54 +132790035,E41,13094760,Medical Incident,10/06/2013,10/05/2013,10/06/2013 01:33:13 AM,10/06/2013 01:35:17 AM,10/06/2013 01:35:40 AM,10/06/2013 01:37:06 AM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/06/2013 01:37:36 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,2,2,2,false,Non Life-threatening,1,ENGINE,3,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",132790035-E41 +113570323,RC3,11118704,Medical Incident,12/23/2011,12/23/2011,12/23/2011 03:42:26 PM,12/23/2011 03:43:22 PM,12/23/2011 03:43:47 PM,12/23/2011 03:45:26 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 03:54:18 PM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,E,3,true,,1,RESCUE CAPTAIN,3,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",113570323-RC3 +123480375,87,12116523,Medical Incident,12/13/2012,12/13/2012,12/13/2012 09:54:23 PM,12/13/2012 09:55:26 PM,12/13/2012 09:55:44 PM,12/13/2012 09:57:32 PM,12/13/2012 10:03:20 PM,12/13/2012 10:13:09 PM,12/13/2012 10:29:57 PM,Code 2 Transport,12/13/2012 10:50:24 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",123480375-87 +111560325,D2,11051686,Structure Fire,06/05/2011,06/05/2011,06/05/2011 06:34:26 PM,06/05/2011 06:35:04 PM,06/05/2011 06:35:29 PM,06/05/2011 06:36:30 PM,06/05/2011 06:41:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/05/2011 06:45:19 PM,700 Block of PINE ST,SF,94108,B01,2,1325,3,3,3,false,,1,CHIEF,6,1,3,Nob Hill,"(37.7911972507673, -122.40768078831)",111560325-D2 +113380328,AM06,11112139,Medical Incident,12/04/2011,12/04/2011,12/04/2011 06:54:24 PM,12/04/2011 06:54:55 PM,12/04/2011 06:55:31 PM,12/04/2011 06:56:04 PM,12/04/2011 07:03:01 PM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/04/2011 07:10:17 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,false,,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",113380328-AM06 +132200279,E36,13074393,Alarms,08/08/2013,08/08/2013,08/08/2013 05:52:10 PM,08/08/2013 05:52:13 PM,08/08/2013 05:52:55 PM,08/08/2013 05:53:35 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 05:54:44 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Alarm,1,ENGINE,4,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132200279-E36 +123610240,E37,12120853,Medical Incident,12/26/2012,12/26/2012,12/26/2012 02:30:26 PM,12/26/2012 02:31:45 PM,12/26/2012 02:34:22 PM,12/26/2012 02:36:08 PM,12/26/2012 02:37:41 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,No Merit,12/26/2012 02:55:20 PM,900 Block of CONNECTICUT ST,SF,94107,B10,37,2615,1,1,2,true,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",123610240-E37 +140970295,E29,14032751,Alarms,04/07/2014,04/07/2014,04/07/2014 04:04:37 PM,04/07/2014 04:06:22 PM,04/07/2014 04:06:47 PM,04/07/2014 04:07:49 PM,04/07/2014 04:10:15 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Fire,04/07/2014 04:14:00 PM,1600 Block of OWENS ST,SAN FRANCISCO,94158,B03,29,2414,3,3,3,false,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7679924471876, -122.394391507395)",140970295-E29 +160450236,71,16017951,Medical Incident,02/14/2016,02/13/2016,02/14/2016 01:21:32 AM,02/14/2016 01:23:35 AM,02/14/2016 01:25:48 AM,02/14/2016 01:25:54 AM,02/14/2016 01:34:13 AM,02/14/2016 01:45:13 AM,02/14/2016 01:50:28 AM,Code 2 Transport,02/14/2016 02:14:15 AM,1300 Block of LINCOLN WAY,San Francisco,94122,B08,22,7346,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7655630900802, -122.472354633709)",160450236-71 +160611871,77,16024333,Medical Incident,03/01/2016,03/01/2016,03/01/2016 02:13:04 PM,03/01/2016 02:15:56 PM,03/01/2016 02:16:34 PM,03/01/2016 02:16:53 PM,03/01/2016 02:20:51 PM,03/01/2016 02:42:02 PM,03/01/2016 02:45:48 PM,Code 2 Transport,03/01/2016 03:40:53 PM,600 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.778667674124, -122.458753852199)",160611871-77 +160122334,66,16004820,Medical Incident,01/12/2016,01/12/2016,01/12/2016 03:29:36 PM,01/12/2016 03:31:31 PM,01/12/2016 03:32:41 PM,01/12/2016 03:32:52 PM,01/12/2016 03:48:48 PM,01/12/2016 04:00:33 PM,01/12/2016 04:20:17 PM,Code 2 Transport,01/12/2016 05:17:24 PM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",160122334-66 +131100243,E34,13037064,Medical Incident,04/20/2013,04/20/2013,04/20/2013 03:27:13 PM,04/20/2013 03:28:19 PM,04/20/2013 03:28:33 PM,04/20/2013 03:29:54 PM,04/20/2013 03:34:15 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/20/2013 03:43:39 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",131100243-E34 +110100271,T19,11003384,Structure Fire,01/10/2011,01/10/2011,01/10/2011 03:35:31 PM,01/10/2011 03:38:09 PM,01/10/2011 03:38:41 PM,01/10/2011 03:40:16 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/10/2011 03:55:15 PM,37TH AV/TARAVAL ST,SF,94116,B08,18,7612,3,3,3,false,,1,TRUCK,6,8,4,Sunset/Parkside,"(37.7422007960742, -122.494979490259)",110100271-T19 +130190193,SR1,13006514,Water Rescue,01/19/2013,01/19/2013,01/19/2013 12:16:17 PM,01/19/2013 12:17:46 PM,01/19/2013 12:18:42 PM,01/19/2013 12:20:33 PM,01/19/2013 12:42:58 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 02:34:42 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Fire,1,SUPPORT,9,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",130190193-SR1 +132990396,88,13101777,Medical Incident,10/26/2013,10/26/2013,10/26/2013 11:29:37 PM,10/26/2013 11:31:56 PM,10/26/2013 11:33:14 PM,10/26/2013 11:33:23 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/26/2013 11:42:22 PM,100 Block of APPLETON AVE,SF,94110,B06,32,5646,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",132990396-88 +160401594,KM08,16016008,Medical Incident,02/09/2016,02/09/2016,02/09/2016 11:57:16 AM,02/09/2016 11:59:05 AM,02/09/2016 12:00:08 PM,02/09/2016 12:01:47 PM,02/09/2016 12:05:09 PM,02/09/2016 12:25:41 PM,02/09/2016 12:34:54 PM,Code 2 Transport,02/09/2016 01:07:36 PM,1600 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7824381101014, -122.476844131371)",160401594-KM08 +113550259,99,11117932,Medical Incident,12/21/2011,12/21/2011,12/21/2011 04:15:31 PM,12/21/2011 04:16:24 PM,12/21/2011 04:16:56 PM,12/21/2011 04:17:33 PM,12/21/2011 04:28:32 PM,12/21/2011 04:59:39 PM,12/21/2011 05:00:37 PM,Other,12/21/2011 05:43:09 PM,400 Block of BEALE ST,SF,94105,B03,35,2123,3,E,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",113550259-99 +131360023,E36,13045741,Structure Fire,05/16/2013,05/15/2013,05/16/2013 01:47:51 AM,05/16/2013 01:49:37 AM,05/16/2013 01:50:39 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,04/25/2016 01:52:47 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131360023-E36 +160563296,78,16022519,Structure Fire,02/25/2016,02/25/2016,02/25/2016 06:50:20 PM,02/25/2016 06:50:54 PM,02/25/2016 06:51:13 PM,02/25/2016 06:51:22 PM,02/25/2016 07:13:20 PM,02/25/2016 07:25:08 PM,02/25/2016 07:45:32 PM,Code 3 Transport,02/25/2016 09:23:01 PM,0 Block of ROBINSON DR,San Francisco,94112,B09,43,6236,3,3,3,true,Alarm,1,MEDIC,4,9,11,Excelsior,"(37.7092465786182, -122.42932313421)",160563296-78 +140870120,T06,14029225,Alarms,03/28/2014,03/28/2014,03/28/2014 09:52:05 AM,03/28/2014 09:53:28 AM,03/28/2014 09:53:41 AM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Fire,04/25/2016 01:47:31 PM,1800 Block of 15TH ST,SAN FRANCISCO,94103,B02,6,5227,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.766322531621, -122.424723870424)",140870120-T06 +160792150,KM09,16031438,Medical Incident,03/19/2016,03/19/2016,03/19/2016 02:30:17 PM,03/19/2016 02:32:31 PM,03/19/2016 02:33:01 PM,03/19/2016 02:33:40 PM,03/19/2016 02:39:40 PM,03/19/2016 02:58:19 PM,03/19/2016 03:13:45 PM,Code 2 Transport,03/19/2016 04:05:42 PM,VAN NESS AV/NORTH POINT ST,San Francisco,94109,B04,28,3143,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",160792150-KM09 +113160251,E01,11105071,Alarms,11/12/2011,11/12/2011,11/12/2011 06:38:16 PM,11/12/2011 06:39:03 PM,11/12/2011 06:39:12 PM,11/12/2011 06:40:37 PM,11/12/2011 06:42:12 PM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Other,11/12/2011 06:47:21 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",113160251-E01 +121710244,T08,12056801,Other,06/19/2012,06/19/2012,06/19/2012 03:14:53 PM,06/19/2012 03:14:53 PM,06/19/2012 03:14:53 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,No Merit,06/19/2012 03:22:17 PM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,false,Alarm,1,TRUCK,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",121710244-T08 +112330157,T11,11076916,Structure Fire,08/21/2011,08/21/2011,08/21/2011 11:18:02 AM,08/21/2011 11:18:02 AM,08/21/2011 11:18:50 AM,08/21/2011 11:19:22 AM,08/21/2011 11:22:00 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 11:22:33 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",112330157-T11 +120590059,KM01,12019336,Medical Incident,02/28/2012,02/27/2012,02/28/2012 07:58:42 AM,02/28/2012 07:59:00 AM,02/28/2012 07:59:21 AM,02/28/2012 07:59:57 AM,02/28/2012 08:14:07 AM,02/28/2012 08:31:04 AM,02/28/2012 08:49:56 AM,Code 2 Transport,02/28/2012 09:20:44 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815063666429, -122.407932868203)",120590059-KM01 +160051644,71,16001993,Medical Incident,01/05/2016,01/05/2016,01/05/2016 12:39:08 PM,01/05/2016 12:39:51 PM,01/05/2016 12:40:07 PM,01/05/2016 12:40:17 PM,01/05/2016 12:41:49 PM,01/05/2016 01:03:30 PM,01/05/2016 01:21:18 PM,Code 2 Transport,01/05/2016 02:06:05 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",160051644-71 +132700020,E22,13091560,Structure Fire,09/27/2013,09/26/2013,09/27/2013 01:31:00 AM,09/27/2013 01:31:27 AM,09/27/2013 01:32:12 AM,09/27/2013 01:34:04 AM,09/27/2013 01:37:22 AM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/27/2013 07:42:05 AM,1900 Block of 18TH AVE,SF,94116,B08,40,7421,3,3,3,true,Fire,2,ENGINE,3,8,7,Inner Sunset,"(37.751493548452, -122.47514241265)",132700020-E22 +111490031,E13,11049274,Outside Fire,05/29/2011,05/28/2011,05/29/2011 02:34:07 AM,05/29/2011 02:34:10 AM,05/29/2011 02:34:15 AM,05/29/2011 02:36:19 AM,05/29/2011 02:38:46 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Fire,05/29/2011 02:43:20 AM,MAIN ST/MISSION ST,SF,94105,B03,35,2116,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",111490031-E13 +131110261,93,13037467,Medical Incident,04/21/2013,04/21/2013,04/21/2013 06:33:07 PM,04/21/2013 06:33:25 PM,04/21/2013 06:34:29 PM,04/21/2013 06:34:58 PM,04/21/2013 06:42:58 PM,04/21/2013 06:56:18 PM,04/21/2013 07:12:22 PM,Code 2 Transport,04/21/2013 07:35:43 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",131110261-93 +131700328,E41,13057849,Medical Incident,06/19/2013,06/19/2013,06/19/2013 07:47:45 PM,06/19/2013 07:48:39 PM,06/19/2013 07:48:57 PM,06/19/2013 07:49:33 PM,06/19/2013 07:51:34 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/19/2013 07:59:18 PM,900 Block of MASON ST,SF,94108,B01,41,1414,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",131700328-E41 +121780087,KM12,12059171,Medical Incident,06/26/2012,06/26/2012,06/26/2012 09:06:18 AM,06/26/2012 09:07:57 AM,06/26/2012 09:08:39 AM,06/26/2012 09:11:42 AM,06/26/2012 09:20:03 AM,06/26/2012 09:31:36 AM,06/26/2012 09:45:52 AM,Code 2 Transport,06/26/2012 10:12:17 AM,800 Block of 33RD AVE,SF,94121,B07,14,7243,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7731148603785, -122.492763022617)",121780087-KM12 +133620033,E07,13122869,Smoke Investigation (Outside),12/28/2013,12/27/2013,12/28/2013 02:35:38 AM,12/28/2013 02:37:45 AM,12/28/2013 02:38:15 AM,12/28/2013 02:39:49 AM,12/28/2013 02:42:41 AM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Fire,12/28/2013 02:58:24 AM,100 Block of ALBION ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7636452868367, -122.422667774315)",133620033-E07 +131810065,E03,13061514,Medical Incident,06/30/2013,06/29/2013,06/30/2013 02:52:40 AM,06/30/2013 02:52:41 AM,06/30/2013 02:55:54 AM,06/30/2013 02:56:29 AM,06/30/2013 02:57:21 AM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,Other,06/30/2013 03:02:22 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7852173616307, -122.417069611395)",131810065-E03 +111980347,T16,11065467,Alarms,07/17/2011,07/17/2011,07/17/2011 10:16:18 PM,07/17/2011 10:17:41 PM,07/17/2011 10:17:54 PM,07/17/2011 10:19:07 PM,07/17/2011 10:21:59 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 10:25:43 PM,1100 Block of GORGAS AVE,PR,94129,B99,51,4633,3,3,3,false,,1,TRUCK,1,7,2,Presidio,"(37.8009430044811, -122.44884309342)",111980347-T16 +111210256,T03,11039997,Elevator / Escalator Rescue,05/01/2011,05/01/2011,05/01/2011 03:17:45 PM,05/01/2011 03:18:04 PM,05/01/2011 03:18:46 PM,05/01/2011 03:20:05 PM,05/01/2011 03:21:22 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 03:44:21 PM,0 Block of DANIEL BURNHAM CT,SF,94109,B04,3,3161,3,3,3,false,,1,TRUCK,1,4,2,Western Addition,"(37.7869107185707, -122.422525749968)",111210256-T03 +160080532,AM24,16003105,Medical Incident,01/08/2016,01/07/2016,01/08/2016 06:36:14 AM,01/08/2016 06:36:42 AM,01/08/2016 06:37:10 AM,01/08/2016 06:37:44 AM,01/08/2016 06:39:24 AM,01/08/2016 06:50:40 AM,01/08/2016 07:23:55 AM,Code 2 Transport,01/08/2016 07:47:28 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160080532-AM24 +110210251,E41,11007007,Medical Incident,01/21/2011,01/21/2011,01/21/2011 04:14:36 PM,01/21/2011 04:15:01 PM,01/21/2011 04:15:24 PM,01/21/2011 04:16:24 PM,01/21/2011 04:18:51 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/21/2011 04:24:31 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",110210251-E41 +132060083,E07,13069670,Medical Incident,07/25/2013,07/25/2013,07/25/2013 09:34:50 AM,07/25/2013 09:35:37 AM,07/25/2013 09:36:36 AM,04/25/2016 01:51:38 PM,07/25/2013 09:36:58 AM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Other,07/25/2013 09:44:47 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",132060083-E07 +160121129,54,16004726,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:04:32 AM,01/12/2016 10:06:35 AM,01/12/2016 10:09:46 AM,01/12/2016 10:09:46 AM,01/12/2016 10:19:08 AM,01/12/2016 10:34:19 AM,01/12/2016 11:00:42 AM,Code 2 Transport,01/12/2016 11:29:37 AM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",160121129-54 +132290332,66,13077421,Medical Incident,08/17/2013,08/17/2013,08/17/2013 07:00:15 PM,08/17/2013 07:00:59 PM,08/17/2013 07:02:43 PM,08/17/2013 07:02:56 PM,08/17/2013 07:08:34 PM,08/17/2013 07:17:22 PM,08/17/2013 07:30:53 PM,Code 2 Transport,08/17/2013 07:54:01 PM,CLEMENTINA ST/3RD ST,SF,94105,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842136382775, -122.399459825894)",132290332-66 +121570321,AM04,12052070,Medical Incident,06/05/2012,06/05/2012,06/05/2012 08:18:55 PM,06/05/2012 08:20:45 PM,06/05/2012 08:21:01 PM,06/05/2012 08:22:14 PM,06/05/2012 08:26:22 PM,06/05/2012 08:43:52 PM,06/05/2012 09:01:38 PM,Code 2 Transport,06/05/2012 09:56:15 PM,200 Block of DORLAND ST,SF,94114,B02,6,5421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7620293658927, -122.429546492088)",121570321-AM04 +132970339,B02,13101008,Structure Fire,10/24/2013,10/24/2013,10/24/2013 08:19:39 PM,10/24/2013 08:20:41 PM,10/24/2013 08:21:12 PM,10/24/2013 08:22:09 PM,10/24/2013 08:23:21 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/24/2013 08:30:50 PM,200 Block of 14TH ST,SF,94103,B02,36,5215,3,3,3,false,Alarm,1,CHIEF,1,2,9,Mission,"(37.7683277432997, -122.418173796435)",132970339-B02 +110490103,55,11016119,Medical Incident,02/18/2011,02/18/2011,02/18/2011 08:47:30 AM,02/18/2011 08:49:19 AM,02/18/2011 08:50:42 AM,02/18/2011 08:50:49 AM,04/25/2016 02:06:02 PM,02/18/2011 09:27:32 AM,02/18/2011 09:52:44 AM,Code 2 Transport,02/18/2011 10:18:51 AM,600 Block of MYRA WAY,SF,94127,B09,39,8662,1,1,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7397130494481, -122.450551251496)",110490103-55 +140710143,T10,14023930,Medical Incident,03/12/2014,03/12/2014,03/12/2014 10:13:09 AM,03/12/2014 10:14:03 AM,03/12/2014 10:14:28 AM,03/12/2014 10:16:29 AM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Code 2 Transport,03/12/2014 10:18:02 AM,SCOTT ST/SUTTER ST,SAN FRANCISCO,94115,B04,10,4126,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,5,2,Pacific Heights,"(37.7854593411031, -122.438206381427)",140710143-T10 +120670394,T19,12022385,Alarms,03/07/2012,03/07/2012,03/07/2012 08:52:05 PM,03/07/2012 08:52:47 PM,03/07/2012 08:52:54 PM,03/07/2012 08:53:37 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,03/07/2012 09:13:41 PM,800 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",120670394-T19 +122600148,E07,12085913,Medical Incident,09/16/2012,09/16/2012,09/16/2012 11:37:42 AM,09/16/2012 11:39:31 AM,09/16/2012 11:39:43 AM,09/16/2012 11:40:37 AM,09/16/2012 11:43:46 AM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 12:29:38 PM,2900 Block of 23RD ST,SF,94110,B06,7,5476,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7543133191277, -122.41158898537)",122600148-E07 +113290027,54,11109031,Medical Incident,11/25/2011,11/24/2011,11/25/2011 02:22:45 AM,11/25/2011 02:23:22 AM,11/25/2011 02:23:47 AM,11/25/2011 02:24:06 AM,11/25/2011 02:32:05 AM,11/25/2011 02:51:17 AM,11/25/2011 03:06:34 AM,Code 2 Transport,11/25/2011 03:28:42 AM,2000 Block of POLK ST,SF,94109,B04,41,3125,1,1,2,true,,1,MEDIC,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",113290027-54 +112670146,B03,11088191,Traffic Collision,09/24/2011,09/24/2011,09/24/2011 10:38:03 AM,09/24/2011 10:39:51 AM,09/24/2011 10:40:47 AM,09/24/2011 10:44:18 AM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 10:52:41 AM,0 Block of FREMONT ST,SF,94105,B03,35,2116,2,2,2,false,,1,CHIEF,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",112670146-B03 +160713154,88,16028353,Traffic Collision,03/11/2016,03/11/2016,03/11/2016 07:47:34 PM,03/11/2016 07:49:58 PM,03/11/2016 07:51:24 PM,03/11/2016 07:51:39 PM,03/11/2016 07:56:37 PM,03/11/2016 08:18:24 PM,03/11/2016 08:27:18 PM,Code 2 Transport,03/11/2016 10:05:30 PM,SAN JOSE AV/GENEVA AV,San Francisco,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",160713154-88 +102920248,E02,10093168,Alarms,10/19/2010,10/19/2010,10/19/2010 04:05:24 PM,10/19/2010 04:06:06 PM,10/19/2010 04:06:47 PM,10/19/2010 04:08:31 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/19/2010 04:18:55 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,ENGINE,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",102920248-E02 +110220181,E32,11007266,Structure Fire,01/22/2011,01/22/2011,01/22/2011 02:17:23 PM,01/22/2011 02:17:24 PM,01/22/2011 02:17:37 PM,01/22/2011 02:18:34 PM,01/22/2011 02:21:07 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/22/2011 02:21:20 PM,MISSION ST/29TH ST,SF,94110,B06,32,5625,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7440376332296, -122.420893660653)",110220181-E32 +140490076,94,14016568,Medical Incident,02/18/2014,02/18/2014,02/18/2014 08:39:17 AM,02/18/2014 08:41:21 AM,02/18/2014 08:41:34 AM,02/18/2014 08:41:49 AM,02/18/2014 08:45:54 AM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,No Merit,02/18/2014 08:56:57 AM,2100 Block of 28TH AVE,SF,94116,B08,18,7472,3,3,3,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7472899670765, -122.485593214472)",140490076-94 +160330838,KM08,16012890,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:49:00 AM,02/02/2016 08:50:03 AM,02/02/2016 08:50:42 AM,02/02/2016 08:51:15 AM,02/02/2016 09:01:51 AM,02/02/2016 09:30:19 AM,02/02/2016 09:48:53 AM,Code 2 Transport,02/02/2016 10:29:00 AM,3100 Block of KIRKHAM ST,San Francisco,94122,B08,18,7563,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7591185483692, -122.49428108423)",160330838-KM08 +130160382,T01,13005621,Structure Fire,01/16/2013,01/16/2013,01/16/2013 11:37:04 PM,01/16/2013 11:37:50 PM,01/16/2013 11:38:03 PM,01/16/2013 11:40:00 PM,01/16/2013 11:43:02 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/16/2013 11:44:38 PM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,false,Alarm,1,TRUCK,10,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",130160382-T01 +160861567,54,16034158,Traffic Collision,03/26/2016,03/26/2016,03/26/2016 12:16:35 PM,03/26/2016 12:16:35 PM,03/26/2016 12:19:34 PM,03/26/2016 12:20:10 PM,03/26/2016 12:27:17 PM,03/26/2016 01:20:50 PM,03/26/2016 01:35:33 PM,Code 2 Transport,03/26/2016 02:01:14 PM,38TH AV/CABRILLO ST,San Francisco,94121,B07,34,7254,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7737998564226, -122.498249666295)",160861567-54 +140100393,RS2,14003670,Structure Fire,01/10/2014,01/10/2014,01/10/2014 10:15:08 PM,01/10/2014 10:17:54 PM,01/10/2014 10:18:19 PM,01/10/2014 10:20:14 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/10/2014 10:27:17 PM,1700 Block of KIRKHAM ST,SF,94122,B08,22,7447,3,3,3,false,Alarm,1,RESCUE SQUAD,9,8,4,Sunset/Parkside,"(37.759659005959, -122.479536686399)",140100393-RS2 +160212341,73,16008441,Medical Incident,01/21/2016,01/21/2016,01/21/2016 03:12:40 PM,01/21/2016 03:13:43 PM,01/21/2016 03:15:36 PM,01/21/2016 03:16:08 PM,01/21/2016 03:23:08 PM,01/21/2016 03:28:40 PM,01/21/2016 03:46:18 PM,Code 2 Transport,01/21/2016 04:08:26 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160212341-73 +111630286,T11,11053917,Alarms,06/12/2011,06/12/2011,06/12/2011 07:57:50 PM,06/12/2011 07:59:00 PM,06/12/2011 07:59:18 PM,06/12/2011 08:00:46 PM,06/12/2011 08:03:37 PM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/12/2011 08:07:52 PM,0 Block of ARLINGTON ST,SF,94131,B06,32,8112,3,3,3,false,,1,TRUCK,2,6,8,Glen Park,"(37.7394484132871, -122.424741266112)",111630286-T11 +160071368,67,16002801,Medical Incident,01/07/2016,01/07/2016,01/07/2016 11:13:56 AM,01/07/2016 11:15:06 AM,01/07/2016 11:16:22 AM,01/07/2016 11:16:54 AM,01/07/2016 11:35:51 AM,01/07/2016 11:53:43 AM,01/07/2016 12:09:43 PM,Code 2 Transport,01/07/2016 12:34:34 PM,1300 Block of 47TH AV,San Francisco,94122,B08,23,7721,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7613042680955, -122.507133779937)",160071368-67 +160642426,85,16025562,Medical Incident,03/04/2016,03/04/2016,03/04/2016 03:22:26 PM,03/04/2016 03:24:22 PM,03/04/2016 03:24:27 PM,03/04/2016 03:24:43 PM,03/04/2016 03:31:13 PM,03/04/2016 03:43:33 PM,03/04/2016 03:54:26 PM,Code 2 Transport,03/04/2016 04:25:17 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",160642426-85 +160370728,59,16014569,Medical Incident,02/06/2016,02/05/2016,02/06/2016 04:54:00 AM,02/06/2016 04:54:00 AM,02/06/2016 04:54:25 AM,02/06/2016 04:55:14 AM,02/06/2016 05:00:40 AM,02/06/2016 05:25:40 AM,02/06/2016 05:33:03 AM,Code 2 Transport,02/06/2016 05:59:48 AM,1700 Block of NORTH POINT ST,San Francisco,94123,B04,16,3455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8037670734664, -122.436041411071)",160370728-59 +131200073,FB1,13040287,Outside Fire,04/30/2013,04/30/2013,04/30/2013 09:40:00 AM,04/30/2013 09:40:00 AM,04/30/2013 09:40:24 AM,04/30/2013 09:41:59 AM,04/25/2016 01:53:03 PM,04/25/2016 01:53:03 PM,04/25/2016 01:53:03 PM,Other,04/30/2013 09:48:00 AM,400 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,954,3,3,3,false,Alarm,1,SUPPORT,5,3,6,Mission Bay,"(37.7717396202959, -122.386663865791)",131200073-FB1 +102810285,RC3,10089395,Medical Incident,10/08/2010,10/08/2010,10/08/2010 04:05:08 PM,10/08/2010 04:06:08 PM,10/08/2010 04:06:27 PM,10/08/2010 04:07:37 PM,10/08/2010 04:12:01 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/08/2010 04:25:05 PM,3000 Block of 24TH ST,SF,94110,B06,7,5527,3,2,2,true,,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7526417555714, -122.412733985804)",102810285-RC3 +140750345,T07,14025530,Structure Fire,03/16/2014,03/16/2014,03/16/2014 09:43:41 PM,03/16/2014 09:45:02 PM,03/16/2014 09:45:51 PM,03/16/2014 09:46:33 PM,03/16/2014 09:48:41 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Fire,03/16/2014 10:50:36 PM,CAPP ST/19TH ST,SAN FRANCISCO,94110,B06,7,5433,3,3,3,false,Alarm,1,TRUCK,4,6,9,Mission,"(37.7603010632565, -122.41811811905)",140750345-T07 +121830035,82,12060842,Medical Incident,07/01/2012,06/30/2012,07/01/2012 02:05:29 AM,07/01/2012 02:07:09 AM,07/01/2012 02:07:31 AM,07/01/2012 02:07:45 AM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,07/01/2012 02:16:39 AM,1700 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7721238465063, -122.422914601569)",121830035-82 +103410172,E01,10109111,Medical Incident,12/07/2010,12/07/2010,12/07/2010 12:29:13 PM,12/07/2010 12:30:18 PM,12/07/2010 12:30:48 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Other,12/07/2010 12:35:32 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,1,2,false,,1,ENGINE,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",103410172-E01 +112690161,E29,11088889,Structure Fire,09/26/2011,09/26/2011,09/26/2011 12:19:19 PM,09/26/2011 12:19:19 PM,09/26/2011 12:19:32 PM,09/26/2011 12:20:57 PM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,04/25/2016 02:02:28 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112690161-E29 +122780259,B01,12091972,Structure Fire,10/04/2012,10/04/2012,10/04/2012 04:00:48 PM,10/04/2012 04:03:17 PM,10/04/2012 04:04:01 PM,10/04/2012 04:04:04 PM,10/04/2012 04:10:51 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/04/2012 04:15:51 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,5,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",122780259-B01 +111230054,KM15,11040523,Medical Incident,05/03/2011,05/02/2011,05/03/2011 05:06:25 AM,05/03/2011 05:06:32 AM,05/03/2011 05:07:38 AM,05/03/2011 05:08:25 AM,05/03/2011 05:12:18 AM,05/03/2011 05:23:26 AM,05/03/2011 05:35:06 AM,Code 2 Transport,05/03/2011 06:20:19 AM,POST ST/POWELL ST,SF,94108,B01,1,1362,3,3,3,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7882931920047, -122.408401551902)",111230054-KM15 +132780040,58,13094376,Medical Incident,10/05/2013,10/04/2013,10/05/2013 02:27:21 AM,10/05/2013 02:27:48 AM,10/05/2013 02:28:30 AM,10/05/2013 02:36:11 AM,10/05/2013 02:45:29 AM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,No Merit,10/05/2013 02:52:36 AM,0 Block of MOSS ST,SF,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7778360253922, -122.408013948834)",132780040-58 +160031510,79,16001180,Medical Incident,01/03/2016,01/03/2016,01/03/2016 12:59:47 PM,01/03/2016 01:01:40 PM,01/03/2016 01:04:36 PM,01/03/2016 01:05:00 PM,01/03/2016 01:12:30 PM,01/03/2016 01:46:09 PM,01/03/2016 02:11:03 PM,Code 2 Transport,01/03/2016 02:50:25 PM,3200 Block of CABRILLO ST,San Francisco,94121,B07,34,7252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7739653853206, -122.493431531881)",160031510-79 +133480205,86,13118129,Structure Fire,12/14/2013,12/14/2013,12/14/2013 01:26:32 PM,12/14/2013 01:27:30 PM,12/14/2013 01:31:50 PM,12/14/2013 01:31:55 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 01:38:05 PM,1000 Block of LE CONTE AVE,SF,94124,B10,44,6575,3,3,3,true,Alarm,1,MEDIC,10,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",133480205-86 +130440356,E43,13015063,Electrical Hazard,02/13/2013,02/13/2013,02/13/2013 08:39:31 PM,02/13/2013 08:40:45 PM,02/13/2013 08:45:59 PM,04/25/2016 01:54:19 PM,02/13/2013 08:48:44 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,Fire,02/13/2013 08:53:14 PM,300 Block of VIENNA ST,SF,94112,B09,43,6155,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7228366904256, -122.428721117908)",130440356-E43 +140890188,KM09,14029974,Medical Incident,03/30/2014,03/30/2014,03/30/2014 01:50:03 PM,03/30/2014 01:55:02 PM,03/30/2014 01:56:04 PM,03/30/2014 01:56:39 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,Unable to Locate,03/30/2014 02:02:52 PM,2000 Block of KEARNY ST,,94133,B01,28,939,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8069201392161, -122.407170160416)",140890188-KM09 +112710176,E26,11089523,Medical Incident,09/28/2011,09/28/2011,09/28/2011 12:15:53 PM,09/28/2011 12:17:46 PM,09/28/2011 12:19:47 PM,04/25/2016 02:02:26 PM,09/28/2011 12:21:24 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Patient Declined Transport,09/28/2011 12:36:30 PM,200 Block of JOOST AVE,SF,94131,B09,26,8214,2,2,2,true,,1,ENGINE,1,9,8,West of Twin Peaks,"(37.7324173850139, -122.440887834174)",112710176-E26 +120010192,E41,12000157,Structure Fire,01/01/2012,12/31/2011,01/01/2012 02:24:20 AM,01/01/2012 02:24:20 AM,01/01/2012 02:24:25 AM,01/01/2012 02:24:39 AM,01/01/2012 02:24:42 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 02:25:22 AM,POLK ST/PACIFIC AV,SF,94109,B04,41,3125,3,3,3,true,Alarm,1,ENGINE,1,4,3,Russian Hill,"(37.795027345481, -122.421582756606)",120010192-E41 +103590196,AM16,10115245,Medical Incident,12/25/2010,12/25/2010,12/25/2010 02:23:29 PM,12/25/2010 02:23:51 PM,12/25/2010 02:24:18 PM,12/25/2010 02:25:01 PM,12/25/2010 02:28:03 PM,12/25/2010 02:41:32 PM,12/25/2010 02:47:38 PM,Code 2 Transport,12/25/2010 03:32:27 PM,ELLIS ST/HYDE ST,SF,94109,B02,3,1555,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",103590196-AM16 +111160325,RS1,11038393,Structure Fire,04/26/2011,04/26/2011,04/26/2011 06:22:21 PM,04/26/2011 06:22:35 PM,04/26/2011 06:23:05 PM,04/26/2011 06:24:18 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 06:26:38 PM,2100 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,false,,1,RESCUE SQUAD,9,4,2,Marina,"(37.7996220349881, -122.436847071591)",111160325-RS1 +160623338,88,16024811,Medical Incident,03/02/2016,03/02/2016,03/02/2016 06:27:55 PM,03/02/2016 06:29:02 PM,03/02/2016 06:29:25 PM,03/02/2016 06:29:32 PM,03/02/2016 06:35:30 PM,03/02/2016 06:44:26 PM,03/02/2016 07:00:28 PM,Code 2 Transport,03/02/2016 07:31:04 PM,0 Block of BELDEN ST,San Francisco,94104,B01,13,1235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7912793098409, -122.403701987134)",160623338-88 +121900231,96,12063348,Medical Incident,07/08/2012,07/08/2012,07/08/2012 04:52:32 PM,07/08/2012 04:53:35 PM,07/08/2012 04:57:27 PM,07/08/2012 04:58:53 PM,07/08/2012 05:14:27 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Against Medical Advice,07/08/2012 05:31:11 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121900231-96 +160501045,64,16020024,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:57:43 AM,02/19/2016 10:01:03 AM,02/19/2016 10:01:21 AM,02/19/2016 10:01:37 AM,02/19/2016 10:15:18 AM,02/19/2016 11:03:33 AM,02/19/2016 11:37:23 AM,Code 2 Transport,02/19/2016 12:13:52 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7683208883339, -122.4243245293)",160501045-64 +160760470,KM07,16030009,Medical Incident,03/16/2016,03/15/2016,03/16/2016 06:07:08 AM,03/16/2016 06:08:24 AM,03/16/2016 06:09:47 AM,03/16/2016 06:11:06 AM,03/16/2016 06:15:33 AM,03/16/2016 06:24:35 AM,03/16/2016 06:40:45 AM,Code 2 Transport,03/16/2016 06:56:21 AM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",160760470-KM07 +160852813,KM04,16033880,Medical Incident,03/25/2016,03/25/2016,03/25/2016 05:16:43 PM,03/25/2016 05:17:44 PM,03/25/2016 05:17:59 PM,03/25/2016 05:18:51 PM,03/25/2016 05:40:18 PM,03/25/2016 06:41:11 PM,03/25/2016 07:06:41 PM,Code 2 Transport,03/25/2016 07:40:38 PM,200 Block of 18TH AVE,San Francisco,94121,B07,31,7162,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.783294686314, -122.477372735277)",160852813-KM04 +110790290,E44,11026132,Structure Fire,03/20/2011,03/20/2011,03/20/2011 05:40:04 PM,03/20/2011 05:40:55 PM,03/20/2011 05:41:24 PM,03/20/2011 05:42:32 PM,03/20/2011 05:45:51 PM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,Other,03/20/2011 05:51:32 PM,100 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7126910626884, -122.415580395245)",110790290-E44 +140630248,E19,14021326,Alarms,03/04/2014,03/04/2014,03/04/2014 03:04:21 PM,03/04/2014 03:05:33 PM,03/04/2014 03:05:49 PM,03/04/2014 03:07:38 PM,03/04/2014 03:12:32 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 03:28:49 PM,0 Block of ZOO RD,SF,94132,B08,19,8716,3,3,3,false,Alarm,1,ENGINE,3,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",140630248-E19 +103230064,77,10103387,Medical Incident,11/19/2010,11/19/2010,11/19/2010 08:10:02 AM,11/19/2010 08:11:11 AM,11/19/2010 08:11:38 AM,11/19/2010 08:13:11 AM,11/19/2010 08:19:37 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Against Medical Advice,11/19/2010 09:06:15 AM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",103230064-77 +133260269,E29,13110788,Medical Incident,11/22/2013,11/22/2013,11/22/2013 04:38:53 PM,11/22/2013 04:39:09 PM,11/22/2013 04:40:01 PM,11/22/2013 04:41:41 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 04:48:06 PM,14TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,8,Mission,"(37.7681396851482, -122.422199175206)",133260269-E29 +112530360,E44,11083608,Medical Incident,09/10/2011,09/10/2011,09/10/2011 08:08:25 PM,09/10/2011 08:08:51 PM,09/10/2011 08:09:17 PM,09/10/2011 08:09:59 PM,09/10/2011 08:14:11 PM,09/10/2011 08:26:11 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 08:40:01 PM,2100 Block of GENEVA AVE,SF,94134,B09,43,6246,E,E,3,true,,1,ENGINE,2,9,10,Visitacion Valley,"(37.7085351675634, -122.420460511784)",112530360-E44 +132180157,78,13073592,Medical Incident,08/06/2013,08/06/2013,08/06/2013 12:05:32 PM,08/06/2013 12:07:50 PM,08/06/2013 12:08:20 PM,08/06/2013 12:12:28 PM,08/06/2013 12:21:10 PM,08/06/2013 12:57:13 PM,08/06/2013 01:08:07 PM,Code 2 Transport,08/06/2013 01:55:02 PM,300 Block of LAGUNA ST,SF,94102,B02,36,3414,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7743568541999, -122.425909733176)",132180157-78 +160352633,82,16013898,Medical Incident,02/04/2016,02/04/2016,02/04/2016 04:17:48 PM,02/04/2016 04:30:20 PM,02/04/2016 04:33:47 PM,02/04/2016 04:33:55 PM,02/04/2016 04:45:22 PM,02/04/2016 05:05:30 PM,02/04/2016 05:16:08 PM,Code 2 Transport,02/04/2016 05:49:33 PM,200 Block of 21ST AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",160352633-82 +130860285,E41,13028772,Medical Incident,03/27/2013,03/27/2013,03/27/2013 05:36:05 PM,03/27/2013 05:37:30 PM,03/27/2013 05:38:21 PM,03/27/2013 05:39:32 PM,03/27/2013 05:40:35 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/27/2013 05:53:34 PM,HYDE ST/CALIFORNIA ST,SF,94109,B01,41,1541,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",130860285-E41 +111110099,E14,11036591,Citizen Assist / Service Call,04/21/2011,04/21/2011,04/21/2011 09:19:18 AM,04/21/2011 09:22:28 AM,04/21/2011 09:23:23 AM,04/21/2011 09:24:54 AM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Fire,04/21/2011 09:25:37 AM,33RD AV/CLEMENT ST,SF,94121,B07,14,7237,3,3,3,true,,1,ENGINE,1,7,1,Lincoln Park,"(37.7816272387154, -122.493446343947)",111110099-E14 +110310229,KM12,11010193,Medical Incident,01/31/2011,01/31/2011,01/31/2011 02:04:04 PM,01/31/2011 02:06:37 PM,01/31/2011 02:08:50 PM,01/31/2011 02:09:50 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,04/25/2016 02:06:19 PM,PARKER AV/GOLDEN GATE AV,SF,94117,B05,21,4542,3,3,3,false,,1,PRIVATE,3,5,1,Lone Mountain/USF,"(37.7768534237239, -122.453188326702)",110310229-KM12 +160813200,AM12,16032318,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:48:57 PM,03/21/2016 06:49:25 PM,03/21/2016 06:50:18 PM,03/21/2016 06:50:56 PM,03/21/2016 06:59:50 PM,03/21/2016 07:18:53 PM,03/21/2016 07:45:42 PM,Code 2 Transport,03/21/2016 08:07:40 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160813200-AM12 +103390017,E03,10108384,Medical Incident,12/05/2010,12/04/2010,12/05/2010 12:47:37 AM,12/05/2010 12:48:05 AM,12/05/2010 12:48:14 AM,12/05/2010 12:49:50 AM,12/05/2010 12:52:01 AM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Other,12/05/2010 12:54:21 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",103390017-E03 +120240215,77,12008128,Medical Incident,01/24/2012,01/24/2012,01/24/2012 03:23:14 PM,01/24/2012 03:23:40 PM,01/24/2012 03:23:51 PM,01/24/2012 03:24:05 PM,01/24/2012 03:26:37 PM,01/24/2012 03:42:46 PM,01/24/2012 03:58:50 PM,Code 2 Transport,01/24/2012 04:29:44 PM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7247694508388, -122.460748189713)",120240215-77 +160660277,52,16026238,Medical Incident,03/06/2016,03/05/2016,03/06/2016 02:08:28 AM,03/06/2016 02:10:12 AM,03/06/2016 02:12:53 AM,03/06/2016 02:13:01 AM,03/06/2016 02:18:15 AM,03/06/2016 02:43:40 AM,03/06/2016 02:47:53 AM,Code 2 Transport,03/06/2016 03:24:33 AM,600 Block of 11TH AV,San Francisco,94118,B07,31,7143,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7760609691108, -122.469224857308)",160660277-52 +160031692,52,16001197,Medical Incident,01/03/2016,01/03/2016,01/03/2016 02:04:52 PM,01/03/2016 02:05:11 PM,01/03/2016 02:05:45 PM,01/03/2016 02:05:53 PM,01/03/2016 02:12:39 PM,01/03/2016 02:26:52 PM,01/03/2016 02:51:32 PM,Code 2 Transport,01/03/2016 03:21:12 PM,300 Block of MAIN ST,San Francisco,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",160031692-52 +130570165,KM12,13019158,Medical Incident,02/26/2013,02/26/2013,02/26/2013 01:00:24 PM,02/26/2013 01:02:00 PM,02/26/2013 01:02:41 PM,02/26/2013 01:03:13 PM,02/26/2013 01:07:59 PM,02/26/2013 01:28:00 PM,02/26/2013 01:44:55 PM,Code 2 Transport,02/26/2013 02:17:59 PM,0 Block of 20TH AVE,SF,94121,B07,31,7163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,2,Seacliff,"(37.7863922258048, -122.479746073139)",130570165-KM12 +160582979,AM08,16023239,Medical Incident,02/27/2016,02/27/2016,02/27/2016 06:33:10 PM,02/27/2016 06:33:24 PM,02/27/2016 06:33:56 PM,02/27/2016 06:34:54 PM,02/27/2016 06:54:03 PM,02/27/2016 07:04:57 PM,02/27/2016 07:14:10 PM,Code 3 Transport,02/27/2016 07:33:28 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",160582979-AM08 +102700058,E01,10085559,Medical Incident,09/27/2010,09/26/2010,09/27/2010 06:31:38 AM,09/27/2010 06:32:36 AM,09/27/2010 06:32:57 AM,09/27/2010 06:35:36 AM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,Other,09/27/2010 06:38:45 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",102700058-E01 +113590025,AM18,11119229,Medical Incident,12/25/2011,12/24/2011,12/25/2011 01:30:37 AM,12/25/2011 01:31:24 AM,12/25/2011 01:32:09 AM,12/25/2011 01:32:16 AM,12/25/2011 01:36:04 AM,12/25/2011 01:41:15 AM,12/25/2011 01:51:03 AM,Code 2 Transport,12/25/2011 02:16:37 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",113590025-AM18 +111160145,E11,11038245,Medical Incident,04/26/2011,04/26/2011,04/26/2011 11:02:16 AM,04/26/2011 11:12:04 AM,04/26/2011 11:12:45 AM,04/26/2011 11:13:23 AM,04/26/2011 11:15:33 AM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 11:17:47 AM,24TH ST/VALENCIA ST,SF,94110,B06,11,5512,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7521036457482, -122.420664802284)",111160145-E11 +130240002,66,13008144,Medical Incident,01/23/2013,01/23/2013,01/23/2013 11:59:48 PM,01/24/2013 12:02:33 AM,01/24/2013 12:02:50 AM,01/24/2013 12:02:57 AM,01/24/2013 12:08:29 AM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Other,01/24/2013 12:14:56 AM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",130240002-66 +160090392,AM20,16003520,Medical Incident,01/09/2016,01/08/2016,01/09/2016 03:25:53 AM,01/09/2016 03:27:10 AM,01/09/2016 03:27:18 AM,01/09/2016 03:27:56 AM,01/09/2016 03:33:00 AM,01/09/2016 03:45:50 AM,01/09/2016 04:19:58 AM,Code 2 Transport,01/09/2016 04:42:30 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160090392-AM20 +160772516,KM10,16030660,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:23:52 PM,03/17/2016 03:26:45 PM,03/17/2016 03:26:56 PM,03/17/2016 03:27:32 PM,03/17/2016 03:38:26 PM,03/17/2016 03:57:39 PM,03/17/2016 04:22:07 PM,Code 2 Transport,03/17/2016 05:12:44 PM,500 Block of HEARST AV,San Francisco,94112,B09,15,8235,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7306307296233, -122.450000285515)",160772516-KM10 +130350092,B04,13011916,Alarms,02/04/2013,02/03/2013,02/04/2013 07:40:07 AM,02/04/2013 07:41:31 AM,02/04/2013 07:41:43 AM,02/04/2013 07:42:51 AM,02/04/2013 07:45:52 AM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,Fire,02/04/2013 07:47:06 AM,2100 Block of UNION ST,SF,94123,B04,16,3552,3,3,3,false,Alarm,1,CHIEF,2,4,2,Marina,"(37.7972477502835, -122.434679239758)",130350092-B04 +113050061,E01,11101172,Medical Incident,11/01/2011,10/31/2011,11/01/2011 04:02:43 AM,11/01/2011 04:03:05 AM,11/01/2011 04:03:50 AM,11/01/2011 04:05:54 AM,11/01/2011 04:07:34 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 04:35:39 AM,6TH ST/TEHAMA ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7793146738209, -122.406628200775)",113050061-E01 +102480224,E28,10078403,Structure Fire,09/05/2010,09/05/2010,09/05/2010 03:44:11 PM,09/05/2010 03:45:48 PM,09/05/2010 03:46:05 PM,09/05/2010 03:47:03 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 04:01:29 PM,300 Block of CLAY ST,SF,94111,B01,13,1161,3,3,3,false,,1,ENGINE,10,1,3,Financial District/South Beach,"(37.7950325941141, -122.399739729147)",102480224-E28 +121940053,B07,12064448,Alarms,07/12/2012,07/11/2012,07/12/2012 04:37:54 AM,07/12/2012 04:39:32 AM,07/12/2012 04:39:50 AM,07/12/2012 04:42:01 AM,07/12/2012 04:44:25 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Fire,07/12/2012 04:48:06 AM,200 Block of 21ST AVE,SF,94121,B07,14,7173,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",121940053-B07 +110870095,86,11028651,Explosion,03/28/2011,03/28/2011,03/28/2011 09:28:32 AM,03/28/2011 09:29:13 AM,03/28/2011 09:29:22 AM,03/28/2011 09:29:46 AM,04/25/2016 02:05:24 PM,04/25/2016 02:05:24 PM,04/25/2016 02:05:24 PM,Other,03/28/2011 09:31:13 AM,POST ST/GRANT AV,SF,94108,B01,1,1316,3,3,3,true,,1,MEDIC,11,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",110870095-86 +110570272,60,11018827,Medical Incident,02/26/2011,02/26/2011,02/26/2011 05:40:06 PM,02/26/2011 05:40:41 PM,02/26/2011 05:41:01 PM,02/26/2011 05:41:22 PM,02/26/2011 05:46:28 PM,02/26/2011 05:54:49 PM,02/26/2011 05:57:02 PM,Code 3 Transport,02/26/2011 06:31:17 PM,CONNECTICUT ST/25TH ST,SF,94107,B10,37,2615,E,E,3,true,,1,MEDIC,4,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",110570272-60 +122450279,E22,12081082,Traffic Collision,09/01/2012,09/01/2012,09/01/2012 05:38:44 PM,09/01/2012 05:39:39 PM,09/01/2012 05:39:57 PM,09/01/2012 05:41:07 PM,09/01/2012 05:42:53 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,09/01/2012 05:58:03 PM,11TH AV/KIRKHAM ST,SF,94122,B08,22,7344,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7602176509862, -122.46819078685)",122450279-E22 +113590283,72,11119462,Medical Incident,12/25/2011,12/25/2011,12/25/2011 09:18:23 PM,12/25/2011 09:18:43 PM,12/25/2011 09:19:08 PM,12/25/2011 09:26:43 PM,12/25/2011 09:29:15 PM,12/25/2011 09:41:04 PM,12/25/2011 09:42:43 PM,Code 2 Transport,12/25/2011 09:58:59 PM,0 Block of NOE ST,SF,94114,B05,6,5212,2,2,2,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7683241294499, -122.433421238099)",113590283-72 +140410120,E51,14013869,Alarms,02/10/2014,02/10/2014,02/10/2014 09:52:14 AM,02/10/2014 09:54:08 AM,02/10/2014 09:56:52 AM,02/10/2014 09:59:18 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 10:02:44 AM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Alarm,1,ENGINE,4,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",140410120-E51 +131090213,E36,13036656,Medical Incident,04/19/2013,04/19/2013,04/19/2013 01:23:39 PM,04/19/2013 01:25:13 PM,04/19/2013 01:29:14 PM,04/19/2013 01:31:05 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Other,04/19/2013 01:32:44 PM,3600 Block of 16TH ST,SF,94114,B05,6,5233,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,5,8,Castro/Upper Market,"(37.7641154746137, -122.434189123043)",131090213-E36 +111130169,93,11037330,Medical Incident,04/23/2011,04/23/2011,04/23/2011 12:41:01 PM,04/23/2011 12:42:00 PM,04/23/2011 12:42:20 PM,04/25/2016 02:04:58 PM,04/23/2011 12:45:45 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Patient Declined Transport,04/23/2011 01:25:18 PM,2300 Block of LOMBARD ST,SF,94123,B04,16,4115,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.7994372928279, -122.440182465352)",111130169-93 +113570486,B04,11118857,Structure Fire,12/23/2011,12/23/2011,12/23/2011 11:54:24 PM,12/23/2011 11:55:46 PM,12/23/2011 11:55:55 PM,12/24/2011 12:00:27 AM,12/24/2011 12:04:50 AM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 12:04:56 AM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,false,,1,CHIEF,7,4,6,Tenderloin,"(37.7856114039588, -122.414829445627)",113570486-B04 +112090260,AM12,11069066,Medical Incident,07/28/2011,07/28/2011,07/28/2011 04:28:09 PM,07/28/2011 04:28:56 PM,07/28/2011 04:29:31 PM,07/28/2011 04:30:48 PM,07/28/2011 04:38:26 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Against Medical Advice,07/28/2011 05:37:36 PM,300 Block of MARKET ST,SF,94105,B03,13,2125,3,3,3,false,,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7919873998129, -122.397733553251)",112090260-AM12 +160692775,AM08,16027560,Medical Incident,03/09/2016,03/09/2016,03/09/2016 05:10:47 PM,03/09/2016 05:11:04 PM,03/09/2016 05:11:20 PM,03/09/2016 05:12:34 PM,03/09/2016 05:15:24 PM,03/09/2016 05:28:44 PM,03/09/2016 05:37:02 PM,Code 2 Transport,03/09/2016 06:21:07 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160692775-AM08 +130520129,KM01,13017531,Medical Incident,02/21/2013,02/21/2013,02/21/2013 10:21:26 AM,02/21/2013 10:22:42 AM,02/21/2013 10:26:15 AM,02/21/2013 10:27:10 AM,02/21/2013 10:36:16 AM,02/21/2013 10:48:17 AM,02/21/2013 10:56:41 AM,Code 2 Transport,02/21/2013 11:20:09 AM,800 Block of TURK ST,SF,94102,B02,36,3216,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",130520129-KM01 +63460088,T03,6097552,Alarms,12/12/2006,12/11/2006,12/12/2006 07:30:51 AM,12/12/2006 07:38:07 AM,12/12/2006 07:38:14 AM,12/12/2006 07:40:11 AM,04/25/2016 03:41:38 PM,04/25/2016 03:41:38 PM,04/25/2016 03:41:38 PM,Other,12/12/2006 07:49:13 AM,700 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,,1,TRUCK,3,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",063460088-T03 +131840020,AM18,13062555,Medical Incident,07/03/2013,07/02/2013,07/03/2013 01:50:48 AM,07/03/2013 01:52:45 AM,07/03/2013 01:53:00 AM,07/03/2013 01:54:14 AM,07/03/2013 01:57:54 AM,07/03/2013 02:06:30 AM,07/03/2013 02:21:20 AM,Code 3 Transport,07/03/2013 02:56:48 AM,400 Block of VELASCO AVE,SF,94134,B09,44,6251,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7090623014139, -122.416409292758)",131840020-AM18 +140510202,E33,14017284,Medical Incident,02/20/2014,02/20/2014,02/20/2014 12:35:37 PM,02/20/2014 12:36:14 PM,02/20/2014 12:36:29 PM,02/20/2014 12:38:19 PM,02/20/2014 12:39:24 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Medical Examiner,02/20/2014 12:42:20 PM,0 Block of SADOWA ST,SF,94112,B09,33,8371,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7122702602925, -122.455354635173)",140510202-E33 +110670116,E12,11022007,Medical Incident,03/08/2011,03/08/2011,03/08/2011 10:44:50 AM,03/08/2011 10:45:32 AM,03/08/2011 10:45:49 AM,03/08/2011 10:46:03 AM,03/08/2011 10:49:23 AM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 11:04:29 AM,0 Block of FREDERICK ST,SF,94117,B05,12,5143,3,3,3,true,,1,ENGINE,1,5,8,Haight Ashbury,"(37.7674266288047, -122.444287744052)",110670116-E12 +102820267,E05,10089753,Medical Incident,10/09/2010,10/09/2010,10/09/2010 03:26:25 PM,10/09/2010 03:26:46 PM,10/09/2010 03:29:06 PM,10/09/2010 03:31:35 PM,10/09/2010 03:35:41 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 03:45:12 PM,200 Block of MARINA BLVD,SF,94123,B04,16,3561,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8064044780344, -122.43650488639)",102820267-E05 +160521241,75,16020767,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:57:16 AM,02/21/2016 10:59:24 AM,02/21/2016 10:59:47 AM,02/21/2016 11:00:03 AM,02/21/2016 11:06:29 AM,02/21/2016 11:24:58 AM,02/21/2016 11:29:18 AM,Code 2 Transport,02/21/2016 12:00:38 PM,SUTTER ST/GOUGH ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Western Addition,"(37.7871304332186, -122.425046954972)",160521241-75 +160440687,AM02,16017598,Medical Incident,02/13/2016,02/12/2016,02/13/2016 07:05:26 AM,02/13/2016 07:05:26 AM,02/13/2016 07:05:49 AM,02/13/2016 07:06:44 AM,02/13/2016 07:12:03 AM,02/13/2016 07:18:26 AM,02/13/2016 07:33:03 AM,Code 2 Transport,02/13/2016 08:11:50 AM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7856114039588, -122.414829445627)",160440687-AM02 +111560210,62,11051590,Medical Incident,06/05/2011,06/05/2011,06/05/2011 12:41:32 PM,06/05/2011 12:42:41 PM,06/05/2011 12:42:53 PM,06/05/2011 12:43:26 PM,06/05/2011 12:49:07 PM,06/05/2011 01:18:41 PM,06/05/2011 01:31:37 PM,Code 2 Transport,06/05/2011 02:05:11 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",111560210-62 +133540256,81,13120317,Medical Incident,12/20/2013,12/20/2013,12/20/2013 02:24:25 PM,12/20/2013 02:24:25 PM,12/20/2013 02:27:59 PM,12/20/2013 02:28:04 PM,12/20/2013 02:46:12 PM,12/20/2013 02:57:53 PM,12/20/2013 03:13:34 PM,Code 2 Transport,12/20/2013 03:46:24 PM,THE EMBARCADERO NO/WASHINGTON ST,SF,94111,B01,13,903,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7966828949467, -122.395405269908)",133540256-81 +132370085,T08,13079870,Vehicle Fire,08/25/2013,08/24/2013,08/25/2013 07:15:25 AM,08/25/2013 07:17:26 AM,08/25/2013 07:17:34 AM,08/25/2013 07:19:44 AM,08/25/2013 07:22:06 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/25/2013 07:22:17 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,false,Fire,1,TRUCK,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",132370085-T08 +132450016,81,13082540,Medical Incident,09/02/2013,09/01/2013,09/02/2013 12:35:52 AM,09/02/2013 12:39:05 AM,09/02/2013 12:39:59 AM,09/02/2013 12:40:05 AM,09/02/2013 12:45:47 AM,09/02/2013 01:00:55 AM,09/02/2013 01:26:20 AM,Code 2 Transport,09/02/2013 01:37:50 AM,100 Block of WELSH ST,SF,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7787943737671, -122.397872227159)",132450016-81 +111880212,65,11062179,Medical Incident,07/07/2011,07/07/2011,07/07/2011 02:55:30 PM,07/07/2011 02:57:03 PM,07/07/2011 02:57:13 PM,07/07/2011 02:57:22 PM,07/07/2011 03:03:57 PM,07/07/2011 03:28:46 PM,07/07/2011 03:40:13 PM,Code 2 Transport,07/07/2011 04:17:00 PM,1200 Block of 37TH AVE,SF,94122,B08,23,7565,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7642859512589, -122.496594492168)",111880212-65 +160572772,68,16022850,Medical Incident,02/26/2016,02/26/2016,02/26/2016 05:31:09 PM,02/26/2016 05:33:07 PM,02/26/2016 05:33:20 PM,02/26/2016 05:33:26 PM,02/26/2016 05:42:12 PM,02/26/2016 06:08:29 PM,02/26/2016 06:31:23 PM,Code 2 Transport,02/26/2016 06:57:58 PM,1600 Block of 10TH AVE,San Francisco,94122,B08,22,7335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7574688628424, -122.466858392243)",160572772-68 +160490160,85,16019574,Medical Incident,02/18/2016,02/17/2016,02/18/2016 01:42:07 AM,02/18/2016 01:43:30 AM,02/18/2016 01:44:22 AM,02/18/2016 01:44:31 AM,02/18/2016 01:59:38 AM,02/18/2016 02:15:00 AM,02/18/2016 02:19:17 AM,Code 2 Transport,02/18/2016 03:06:18 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160490160-85 +160193038,AM20,16007757,Medical Incident,01/19/2016,01/19/2016,01/19/2016 06:44:43 PM,01/19/2016 06:46:16 PM,01/19/2016 06:46:32 PM,01/19/2016 06:47:24 PM,01/19/2016 06:54:38 PM,01/19/2016 07:01:42 PM,01/19/2016 07:10:55 PM,Code 2 Transport,01/19/2016 07:33:19 PM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7732598036539, -122.40905086984)",160193038-AM20 +112490064,AM16,11082033,Medical Incident,09/06/2011,09/05/2011,09/06/2011 07:58:30 AM,09/06/2011 07:59:52 AM,09/06/2011 08:00:12 AM,09/06/2011 08:01:17 AM,09/06/2011 08:05:29 AM,09/06/2011 08:21:19 AM,09/06/2011 08:42:05 AM,Code 2 Transport,09/06/2011 09:38:23 AM,100 Block of EDINBURGH ST,SF,94112,B09,43,6132,3,3,3,false,,1,PRIVATE,2,9,11,Excelsior,"(37.7267074867197, -122.427951449209)",112490064-AM16 +132010256,T13,13068218,Structure Fire,07/20/2013,07/20/2013,07/20/2013 05:09:42 PM,07/20/2013 05:09:43 PM,07/20/2013 05:10:46 PM,07/20/2013 05:11:49 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 05:14:32 PM,200 Block of MARKET ST,SF,94105,B03,13,2818,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7926791171072, -122.396853499969)",132010256-T13 +120050078,60,12001648,Medical Incident,01/05/2012,01/04/2012,01/05/2012 07:44:44 AM,01/05/2012 07:45:51 AM,01/05/2012 07:46:05 AM,01/05/2012 07:46:35 AM,01/05/2012 07:50:37 AM,01/05/2012 07:58:31 AM,04/25/2016 02:00:47 PM,Code 2 Transport,01/05/2012 08:31:21 AM,100 Block of GROVE ST,SF,94102,B02,36,3165,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7783289000176, -122.419047896211)",120050078-60 +120510188,T03,12016877,Structure Fire,02/20/2012,02/20/2012,02/20/2012 02:44:08 PM,02/20/2012 02:44:56 PM,02/20/2012 02:45:06 PM,02/20/2012 02:46:16 PM,02/20/2012 03:06:26 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 03:06:35 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,false,Fire,1,TRUCK,3,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",120510188-T03 +112600363,E42,11085903,Medical Incident,09/17/2011,09/17/2011,09/17/2011 07:25:02 PM,09/17/2011 07:26:08 PM,09/17/2011 07:26:32 PM,09/17/2011 07:28:00 PM,09/17/2011 07:35:34 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 07:28:49 PM,BAYSHORE BL/CORTLAND AV,SF,94124,B10,42,6374,3,1,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",112600363-E42 +160720260,65,16028447,Medical Incident,03/12/2016,03/11/2016,03/12/2016 01:51:03 AM,03/12/2016 01:51:03 AM,03/12/2016 01:51:30 AM,03/12/2016 01:51:44 AM,03/12/2016 01:53:43 AM,03/12/2016 02:11:52 AM,03/12/2016 02:34:08 AM,Code 2 Transport,03/12/2016 03:24:23 AM,CALIFORNIA ST/HYDE ST,San Francisco,94109,B01,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160720260-65 +132490381,E44,13084197,Medical Incident,09/06/2013,09/06/2013,09/06/2013 10:08:24 PM,09/06/2013 10:11:10 PM,09/06/2013 10:11:41 PM,09/06/2013 10:12:30 PM,09/06/2013 10:15:44 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/06/2013 10:28:38 PM,200 Block of RAYMOND AVE,SF,94134,B09,44,6264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.713564106848, -122.408103072889)",132490381-E44 +103060358,72,10098044,Medical Incident,11/02/2010,11/02/2010,11/02/2010 06:15:08 PM,11/02/2010 06:17:21 PM,11/02/2010 06:18:35 PM,11/02/2010 06:18:44 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,04/25/2016 02:07:47 PM,300 Block of 7TH ST,SF,94103,B03,1,2313,2,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7765647940442, -122.407516832678)",103060358-72 +113330252,T16,11110366,Citizen Assist / Service Call,11/29/2011,11/29/2011,11/29/2011 04:44:35 PM,11/29/2011 04:46:18 PM,11/29/2011 04:47:50 PM,11/29/2011 04:48:55 PM,11/29/2011 04:53:51 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 05:14:07 PM,2700 Block of WEBSTER ST,SF,94123,B04,16,3463,3,3,3,false,,1,TRUCK,1,4,2,Marina,"(37.7959096353585, -122.433495143526)",113330252-T16 +160500391,64,16019959,Medical Incident,02/19/2016,02/18/2016,02/19/2016 04:58:30 AM,02/19/2016 04:59:45 AM,02/19/2016 04:59:51 AM,02/19/2016 05:00:03 AM,02/19/2016 05:04:10 AM,02/19/2016 05:24:21 AM,02/19/2016 05:35:13 AM,Code 2 Transport,02/19/2016 05:56:58 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160500391-64 +160861849,74,16034180,Medical Incident,03/26/2016,03/26/2016,03/26/2016 01:37:56 PM,03/26/2016 01:39:46 PM,03/26/2016 01:40:05 PM,03/26/2016 01:40:34 PM,03/26/2016 01:44:56 PM,03/26/2016 01:57:33 PM,03/26/2016 02:21:31 PM,Code 2 Transport,03/26/2016 02:56:14 PM,800 Block of HOLLOWAY AVE,San Francisco,94112,B09,15,8434,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7218844530147, -122.461754163971)",160861849-74 +111890258,KM10,11062543,Medical Incident,07/08/2011,07/08/2011,07/08/2011 03:29:36 PM,07/08/2011 03:33:02 PM,07/08/2011 03:34:41 PM,07/08/2011 03:35:23 PM,07/08/2011 03:40:12 PM,07/08/2011 04:05:09 PM,07/08/2011 04:09:31 PM,Code 2 Transport,07/08/2011 04:22:54 PM,100 Block of WOOD ST,SF,94118,B05,10,4455,3,3,3,false,,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7815380607869, -122.448850915441)",111890258-KM10 +160690434,AM04,16027338,Medical Incident,03/09/2016,03/08/2016,03/09/2016 05:55:13 AM,03/09/2016 05:55:13 AM,03/09/2016 05:55:44 AM,03/09/2016 05:56:21 AM,03/09/2016 06:02:54 AM,03/09/2016 06:13:15 AM,03/09/2016 06:22:07 AM,Code 2 Transport,03/09/2016 06:51:49 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160690434-AM04 +160331335,83,16012949,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:24:51 AM,02/02/2016 11:26:07 AM,02/02/2016 11:26:52 AM,02/02/2016 11:27:16 AM,02/02/2016 11:38:57 AM,02/02/2016 11:52:28 AM,02/02/2016 12:11:18 PM,Code 2 Transport,02/02/2016 12:41:19 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160331335-83 +133230390,E15,13109813,Medical Incident,11/19/2013,11/19/2013,11/19/2013 09:17:16 PM,11/19/2013 09:20:10 PM,11/19/2013 09:24:03 PM,11/19/2013 09:25:18 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 09:26:09 PM,300 Block of URBANO DR,SF,94127,B09,19,8445,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,9,7,West of Twin Peaks,"(37.7246686004233, -122.470006077481)",133230390-E15 +160361712,AM10,16014234,Medical Incident,02/05/2016,02/05/2016,02/05/2016 11:57:39 AM,02/05/2016 11:58:27 AM,02/05/2016 11:58:52 AM,02/05/2016 11:59:30 AM,02/05/2016 12:01:48 PM,02/05/2016 12:15:12 PM,02/05/2016 12:44:06 PM,Code 2 Transport,02/05/2016 01:18:36 PM,1300 Block of CHESTNUT ST,San Francisco,94123,B04,16,3235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8021221938701, -122.425543360244)",160361712-AM10 +160650902,77,16025866,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:44:35 AM,03/05/2016 08:46:54 AM,03/05/2016 08:47:49 AM,03/05/2016 08:48:01 AM,03/05/2016 08:55:56 AM,03/05/2016 09:17:34 AM,03/05/2016 09:24:23 AM,Code 2 Transport,03/05/2016 09:52:58 AM,0 Block of ANDERSON ST,San Francisco,94110,B06,32,5717,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7418855713382, -122.415112722044)",160650902-77 +103620051,T01,10116007,Structure Fire,12/28/2010,12/27/2010,12/28/2010 04:36:00 AM,12/28/2010 04:37:21 AM,12/28/2010 04:42:29 AM,12/28/2010 04:49:50 AM,12/28/2010 04:54:02 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 05:15:25 AM,0 Block of PERRY ST,SF,94107,B03,8,2175,3,3,3,false,,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",103620051-T01 +160713783,65,16028414,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:27:51 PM,03/11/2016 11:30:04 PM,03/11/2016 11:30:16 PM,03/11/2016 11:30:32 PM,03/11/2016 11:39:55 PM,03/12/2016 12:03:36 AM,03/12/2016 12:28:58 AM,Code 2 Transport,03/12/2016 01:17:30 AM,1000 Block of FRANCISCO ST,San Francisco,94109,B01,28,1624,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8035711866539, -122.422453107864)",160713783-65 +110640035,E19,11020953,Medical Incident,03/05/2011,03/04/2011,03/05/2011 01:34:08 AM,03/05/2011 01:35:52 AM,03/05/2011 01:38:44 AM,03/05/2011 01:40:08 AM,03/05/2011 01:42:33 AM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,No Merit,03/05/2011 01:43:31 AM,200 Block of MIDDLEFIELD DR,SF,94132,B08,19,8743,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7303132169002, -122.486205438256)",110640035-E19 +112600016,E05,11085607,Medical Incident,09/17/2011,09/16/2011,09/17/2011 01:04:45 AM,09/17/2011 01:05:58 AM,09/17/2011 01:09:37 AM,09/17/2011 01:10:46 AM,09/17/2011 01:13:28 AM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 01:21:39 AM,700 Block of MCALLISTER ST,SF,94102,B02,5,3316,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.779520032299, -122.425195823386)",112600016-E05 +110590217,E16,11019411,Vehicle Fire,02/28/2011,02/28/2011,02/28/2011 03:00:29 PM,02/28/2011 03:00:46 PM,02/28/2011 03:01:12 PM,02/28/2011 03:02:34 PM,02/28/2011 03:03:47 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Fire,02/28/2011 03:12:03 PM,LOMBARD ST/STEINER ST,SF,94123,B04,16,3566,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7996339299842, -122.437694703173)",110590217-E16 +120690294,E36,12022986,Medical Incident,03/09/2012,03/09/2012,03/09/2012 06:23:49 PM,03/09/2012 06:24:34 PM,03/09/2012 06:24:48 PM,03/09/2012 06:25:17 PM,03/09/2012 06:28:16 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:34:07 PM,100 Block of GOUGH ST,SF,94102,B02,36,3266,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7743091709053, -122.422522963231)",120690294-E36 +130720315,E21,13024106,Medical Incident,03/13/2013,03/13/2013,03/13/2013 05:56:48 PM,03/13/2013 05:58:03 PM,03/13/2013 05:58:18 PM,03/13/2013 05:59:04 PM,03/13/2013 06:00:52 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 06:10:25 PM,HAYES ST/MASONIC AV,SF,94117,B05,21,4464,3,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7739353716878, -122.446091726028)",130720315-E21 +120540327,E09,12017945,Medical Incident,02/23/2012,02/23/2012,02/23/2012 07:01:14 PM,02/23/2012 07:03:23 PM,02/23/2012 07:03:34 PM,02/23/2012 07:04:31 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 07:06:22 PM,0 Block of BALMY ST,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7517963632308, -122.412457038391)",120540327-E09 +113140399,E06,11104515,Medical Incident,11/10/2011,11/10/2011,11/10/2011 11:04:48 PM,11/10/2011 11:04:48 PM,11/10/2011 11:05:19 PM,11/10/2011 11:06:27 PM,11/10/2011 11:08:02 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 11:11:36 PM,CHURCH ST/16TH ST,SF,94114,B02,6,5234,3,3,3,true,,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7645076140541, -122.428665130308)",113140399-E06 +122380274,E01,12078921,Medical Incident,08/25/2012,08/25/2012,08/25/2012 07:27:48 PM,08/25/2012 07:27:52 PM,08/25/2012 07:28:09 PM,08/25/2012 07:29:25 PM,08/25/2012 07:31:37 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 07:31:59 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,E,E,3,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",122380274-E01 +102460254,T15,10077787,Structure Fire,09/03/2010,09/03/2010,09/03/2010 03:23:38 PM,09/03/2010 03:23:38 PM,09/03/2010 03:23:48 PM,09/03/2010 03:26:32 PM,09/03/2010 03:26:35 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/03/2010 03:26:38 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,TRUCK,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",102460254-T15 +120990346,68,12032958,Medical Incident,04/08/2012,04/08/2012,04/08/2012 10:40:00 PM,04/08/2012 10:40:43 PM,04/08/2012 10:41:59 PM,04/08/2012 10:42:37 PM,04/08/2012 10:55:01 PM,04/08/2012 11:07:04 PM,04/08/2012 11:16:35 PM,Other,04/08/2012 11:55:48 PM,500 Block of DOLORES ST,SF,94110,B06,7,5435,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7606376831681, -122.425843696986)",120990346-68 +102690054,T05,10085202,Other,09/26/2010,09/25/2010,09/26/2010 02:20:57 AM,09/26/2010 02:21:25 AM,09/26/2010 02:22:52 AM,09/26/2010 02:24:31 AM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,04/25/2016 02:08:24 PM,600 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",102690054-T05 +160351379,KM11,16013789,Medical Incident,02/04/2016,02/04/2016,02/04/2016 11:06:14 AM,02/04/2016 11:06:14 AM,02/04/2016 11:08:28 AM,02/04/2016 11:08:28 AM,02/04/2016 11:27:18 AM,02/04/2016 11:43:34 AM,02/04/2016 12:03:52 PM,Code 2 Transport,02/04/2016 12:33:36 PM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7267615481333, -122.389011582143)",160351379-KM11 +131240026,E03,13041684,Medical Incident,05/04/2013,05/03/2013,05/04/2013 01:28:40 AM,05/04/2013 01:29:15 AM,05/04/2013 01:30:44 AM,05/04/2013 01:32:00 AM,05/04/2013 01:33:46 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/04/2013 01:37:08 AM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",131240026-E03 +132150126,KM06,13072558,Medical Incident,08/03/2013,08/03/2013,08/03/2013 09:40:48 AM,08/03/2013 09:41:29 AM,08/03/2013 09:41:48 AM,08/03/2013 09:44:46 AM,08/03/2013 09:45:55 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/03/2013 09:47:12 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",132150126-KM06 +121340056,B06,12044495,Medical Incident,05/13/2012,05/12/2012,05/13/2012 04:32:11 AM,05/13/2012 04:33:28 AM,05/13/2012 04:33:58 AM,05/13/2012 04:36:10 AM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 04:39:14 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,E,E,3,false,Potentially Life-Threatening,1,CHIEF,4,6,9,Mission,"(37.7563633001161, -122.416712100806)",121340056-B06 +121590153,E33,12052582,Medical Incident,06/07/2012,06/07/2012,06/07/2012 01:02:37 PM,06/07/2012 01:03:50 PM,06/07/2012 01:06:09 PM,06/07/2012 01:07:12 PM,06/07/2012 01:10:59 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/07/2012 01:31:10 PM,0 Block of BRUMISS TER,SF,94112,B09,33,6213,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7083774785138, -122.452043321077)",121590153-E33 +110020002,67,11000513,Medical Incident,01/02/2011,01/01/2011,01/02/2011 12:06:20 AM,01/02/2011 12:08:20 AM,01/02/2011 12:08:39 AM,01/02/2011 12:10:23 AM,01/02/2011 12:16:52 AM,01/02/2011 12:50:55 AM,01/02/2011 01:04:16 AM,Code 2 Transport,01/02/2011 01:50:11 AM,100 Block of STEINER ST,SF,94117,B05,6,5131,3,3,3,true,,1,MEDIC,2,5,8,Haight Ashbury,"(37.77025923404, -122.431832299927)",110020002-67 +131800436,88,13061426,Medical Incident,06/29/2013,06/29/2013,06/29/2013 10:47:13 PM,06/29/2013 10:49:31 PM,06/29/2013 10:54:12 PM,06/29/2013 10:54:18 PM,06/29/2013 11:02:38 PM,06/29/2013 11:11:31 PM,06/29/2013 11:23:21 PM,Code 2 Transport,06/29/2013 11:45:09 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",131800436-88 +131210201,E07,13040660,Alarms,05/01/2013,05/01/2013,05/01/2013 12:40:11 PM,05/01/2013 12:41:46 PM,05/01/2013 12:42:35 PM,05/01/2013 12:43:57 PM,05/01/2013 12:48:41 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Fire,05/01/2013 12:54:59 PM,200 Block of RHODE ISLAND ST,SF,94103,B02,29,2353,3,3,3,true,Alarm,1,ENGINE,3,2,10,Mission Bay,"(37.7667279994694, -122.402676976435)",131210201-E07 +140240367,67,14008331,Medical Incident,01/24/2014,01/24/2014,01/24/2014 07:30:23 PM,01/24/2014 07:30:56 PM,01/24/2014 07:31:09 PM,01/24/2014 07:36:30 PM,01/24/2014 07:37:24 PM,01/24/2014 08:01:23 PM,01/24/2014 08:17:54 PM,Code 2 Transport,01/24/2014 08:48:31 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",140240367-67 +110730150,E38,11023984,Alarms,03/14/2011,03/14/2011,03/14/2011 11:20:49 AM,03/14/2011 11:22:11 AM,03/14/2011 11:22:24 AM,03/14/2011 11:23:15 AM,03/14/2011 11:24:52 AM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 11:29:37 AM,2300 Block of FILLMORE ST,SF,94115,B04,38,3545,3,3,3,false,,1,ENGINE,2,4,2,Pacific Heights,"(37.7911600802075, -122.434223473202)",110730150-E38 +132980357,RS2,13101351,Structure Fire,10/25/2013,10/25/2013,10/25/2013 08:02:55 PM,10/25/2013 08:03:55 PM,10/25/2013 08:04:15 PM,10/25/2013 08:06:23 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 08:15:58 PM,0 Block of GELLERT DR,SF,94132,B08,19,8814,3,3,3,false,Alarm,1,RESCUE SQUAD,10,8,7,Sunset/Parkside,"(37.7325140251407, -122.493237980377)",132980357-RS2 +131150114,E08,13038727,Outside Fire,04/25/2013,04/25/2013,04/25/2013 11:13:14 AM,04/25/2013 11:15:14 AM,04/25/2013 11:15:40 AM,04/25/2013 11:17:01 AM,04/25/2013 11:22:53 AM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Fire,04/25/2013 11:26:46 AM,100 Block of 4TH ST,SF,94103,B03,1,2214,3,3,3,true,Fire,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",131150114-E08 +122650024,E01,12087418,Medical Incident,09/21/2012,09/20/2012,09/21/2012 02:20:25 AM,09/21/2012 02:22:43 AM,09/21/2012 02:23:20 AM,09/21/2012 02:26:25 AM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 02:26:58 AM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",122650024-E01 +140840353,T07,14028463,Alarms,03/25/2014,03/25/2014,03/25/2014 10:58:04 PM,03/25/2014 10:59:28 PM,03/25/2014 10:59:55 PM,03/25/2014 11:01:36 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Fire,03/25/2014 11:14:34 PM,1500 Block of BRYANT ST,SAN FRANCISCO,94103,B02,29,5222,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.767536533024, -122.410739256407)",140840353-T07 +132270094,RC1,13076549,Medical Incident,08/15/2013,08/15/2013,08/15/2013 09:27:22 AM,08/15/2013 09:27:52 AM,08/15/2013 09:28:20 AM,08/15/2013 09:30:00 AM,08/15/2013 09:31:32 AM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,Medical Examiner,08/15/2013 10:23:56 AM,400 Block of EDDY ST,SF,94109,B02,3,1545,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",132270094-RC1 +160600452,52,16023765,Medical Incident,02/29/2016,02/28/2016,02/29/2016 06:24:04 AM,02/29/2016 06:26:38 AM,02/29/2016 06:26:50 AM,02/29/2016 06:27:00 AM,02/29/2016 06:35:09 AM,02/29/2016 07:04:14 AM,02/29/2016 07:18:28 AM,Code 2 Transport,02/29/2016 08:05:50 AM,500 Block of MORSE ST,San Francisco,94112,B09,43,6221,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7119776996093, -122.442856862827)",160600452-52 +120090018,E33,12002968,Alarms,01/09/2012,01/08/2012,01/09/2012 12:53:01 AM,01/09/2012 12:54:01 AM,01/09/2012 12:54:57 AM,01/09/2012 12:55:13 AM,01/09/2012 12:56:44 AM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/09/2012 01:06:54 AM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,true,Alarm,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",120090018-E33 +160463394,75,16018665,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:15:54 PM,02/15/2016 08:17:49 PM,02/15/2016 08:18:14 PM,02/15/2016 08:18:33 PM,02/15/2016 08:33:48 PM,02/15/2016 08:49:59 PM,02/15/2016 08:58:08 PM,Code 2 Transport,02/15/2016 09:29:20 PM,TURK ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160463394-75 +111850149,94,11061119,Medical Incident,07/04/2011,07/04/2011,07/04/2011 12:11:48 PM,07/04/2011 12:12:29 PM,07/04/2011 12:13:07 PM,04/25/2016 02:03:50 PM,07/04/2011 12:22:47 PM,07/04/2011 12:32:43 PM,07/04/2011 12:51:25 PM,Code 2 Transport,07/04/2011 01:13:41 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",111850149-94 +132000395,T11,13067983,Medical Incident,07/19/2013,07/19/2013,07/19/2013 10:39:04 PM,07/19/2013 10:41:43 PM,07/19/2013 10:42:12 PM,07/19/2013 10:44:16 PM,07/19/2013 10:46:36 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/19/2013 10:51:06 PM,600 Block of SAN JOSE AVE,SF,94110,B06,11,5577,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",132000395-T11 +133210319,E06,13109173,Structure Fire,11/17/2013,11/17/2013,11/17/2013 09:49:53 PM,11/17/2013 09:50:49 PM,11/17/2013 09:51:06 PM,11/17/2013 09:52:17 PM,11/17/2013 09:54:34 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 09:58:27 PM,100 Block of FRANKLIN ST,SF,94102,B02,36,3213,3,3,3,true,Alarm,1,ENGINE,4,2,5,Hayes Valley,"(37.7759358319818, -122.421032543678)",133210319-E06 +160793862,77,16031584,Medical Incident,03/19/2016,03/19/2016,03/19/2016 09:22:28 PM,03/19/2016 09:23:35 PM,03/19/2016 09:24:37 PM,03/19/2016 09:25:42 PM,03/19/2016 09:30:50 PM,03/19/2016 09:40:44 PM,03/19/2016 09:53:09 PM,Code 2 Transport,03/19/2016 10:28:58 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160793862-77 +110880168,E20,11029036,Medical Incident,03/29/2011,03/29/2011,03/29/2011 12:06:00 PM,03/29/2011 12:06:48 PM,03/29/2011 12:06:58 PM,03/29/2011 12:07:40 PM,03/29/2011 12:09:56 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 12:48:50 PM,1600 Block of 7TH AVE,SF,94122,B08,20,7329,3,1,2,true,,1,ENGINE,1,8,7,Inner Sunset,"(37.7576481057506, -122.463788674586)",110880168-E20 +140270255,E31,14009264,Medical Incident,01/27/2014,01/27/2014,01/27/2014 04:38:12 PM,01/27/2014 04:39:42 PM,01/27/2014 04:41:30 PM,01/27/2014 04:42:55 PM,01/27/2014 04:45:59 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/27/2014 04:58:43 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7709582807252, -122.468300968199)",140270255-E31 +110050289,94,11001724,Medical Incident,01/05/2011,01/05/2011,01/05/2011 04:15:07 PM,01/05/2011 04:15:36 PM,01/05/2011 04:15:59 PM,01/05/2011 04:16:03 PM,01/05/2011 04:26:19 PM,01/05/2011 04:39:44 PM,01/05/2011 04:45:46 PM,Code 2 Transport,01/05/2011 05:11:14 PM,400 Block of 7TH ST,SF,94103,B03,8,231,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",110050289-94 +160190858,61,16007530,Traffic Collision,01/19/2016,01/19/2016,01/19/2016 08:46:17 AM,01/19/2016 08:46:17 AM,01/19/2016 08:46:36 AM,01/19/2016 08:49:43 AM,01/19/2016 08:49:43 AM,01/19/2016 09:08:52 AM,01/19/2016 09:12:19 AM,Code 3 Transport,01/19/2016 09:50:39 AM,BRYANT ST/8TH ST,San Francisco,94103,B03,29,2324,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.772526268193, -122.406968289725)",160190858-61 +123170005,E01,12105348,Medical Incident,11/12/2012,11/11/2012,11/12/2012 12:21:01 AM,11/12/2012 12:21:40 AM,11/12/2012 12:21:55 AM,11/12/2012 12:22:59 AM,11/12/2012 12:24:44 AM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,Other,11/12/2012 12:29:34 AM,4TH ST/MISSION ST,SF,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",123170005-E01 +160660684,62,16026301,Medical Incident,03/06/2016,03/05/2016,03/06/2016 07:37:51 AM,03/06/2016 07:40:41 AM,03/06/2016 07:40:56 AM,03/06/2016 07:44:48 AM,03/06/2016 07:44:48 AM,03/06/2016 08:02:48 AM,03/06/2016 08:56:07 AM,Code 2 Transport,03/06/2016 09:04:15 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160660684-62 +112670039,75,11088098,Traffic Collision,09/24/2011,09/23/2011,09/24/2011 01:56:10 AM,09/24/2011 01:56:10 AM,09/24/2011 01:57:15 AM,09/24/2011 01:57:31 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/24/2011 02:05:22 AM,FILLMORE ST/LOMBARD ST,SF,94123,B04,16,3566,3,3,3,true,,1,MEDIC,3,4,2,Marina,"(37.7998429502723, -122.436046173981)",112670039-75 +160271862,59,16010678,Medical Incident,01/27/2016,01/27/2016,01/27/2016 01:14:30 PM,01/27/2016 01:16:01 PM,01/27/2016 01:16:16 PM,01/27/2016 01:16:25 PM,01/27/2016 01:18:47 PM,01/27/2016 01:37:08 PM,01/27/2016 01:38:33 PM,Code 3 Transport,01/27/2016 02:16:04 PM,0 Block of BYRON CT,San Francisco,94112,B09,33,6215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7094763193761, -122.444390891577)",160271862-59 +113030096,87,11100483,Medical Incident,10/30/2011,10/29/2011,10/30/2011 02:46:39 AM,10/30/2011 02:48:13 AM,10/30/2011 02:48:59 AM,10/30/2011 02:49:11 AM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 02:51:21 AM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,,1,MEDIC,3,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",113030096-87 +131120182,E03,13037691,Medical Incident,04/22/2013,04/22/2013,04/22/2013 12:08:02 PM,04/22/2013 12:09:12 PM,04/22/2013 12:09:47 PM,04/22/2013 12:11:29 PM,04/22/2013 12:13:57 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,No Merit,04/22/2013 12:15:24 PM,LARKIN ST/GOLDEN GATE AV,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",131120182-E03 +131680181,96,13057039,Administrative,06/17/2013,06/17/2013,06/17/2013 01:42:20 PM,06/17/2013 01:42:23 PM,06/17/2013 01:45:01 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/17/2013 01:45:31 PM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,3,3,false,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",131680181-96 +140980292,E05,14033107,Medical Incident,04/08/2014,04/08/2014,04/08/2014 02:50:16 PM,04/08/2014 02:51:42 PM,04/08/2014 02:53:07 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Code 2 Transport,04/08/2014 02:54:09 PM,MCALLISTER ST/VAN NESS AV,SAN FRANCISCO,94102,B02,36,3164,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",140980292-E05 +133610226,94,13122709,Medical Incident,12/27/2013,12/27/2013,12/27/2013 04:26:33 PM,12/27/2013 04:26:49 PM,12/27/2013 04:27:04 PM,12/27/2013 04:27:25 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 04:30:55 PM,100 Block of COUNTRY CLUB DR,SF,94132,B08,19,8826,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.730788409194, -122.496687609617)",133610226-94 +113440289,E02,11114217,Medical Incident,12/10/2011,12/10/2011,12/10/2011 07:16:36 PM,12/10/2011 07:17:11 PM,12/10/2011 07:17:55 PM,04/25/2016 02:01:13 PM,12/10/2011 07:21:53 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 07:30:17 PM,2200 Block of POLK ST,SF,94109,B04,41,3126,3,2,2,true,,1,ENGINE,2,4,3,Russian Hill,"(37.7975891062057, -122.422170244578)",113440289-E02 +160882487,89,16035024,Medical Incident,03/28/2016,03/28/2016,03/28/2016 04:00:16 PM,03/28/2016 04:02:36 PM,03/28/2016 04:03:07 PM,03/28/2016 04:03:07 PM,03/28/2016 04:13:46 PM,03/28/2016 04:38:31 PM,03/28/2016 05:09:15 PM,Code 2 Transport,03/28/2016 05:44:45 PM,900 Block of ROLPH ST,San Francisco,94112,B09,43,6172,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7111937466802, -122.428652632405)",160882487-89 +120970380,E07,12032299,Vehicle Fire,04/06/2012,04/06/2012,04/06/2012 09:52:44 PM,04/06/2012 09:53:18 PM,04/06/2012 09:53:30 PM,04/06/2012 09:54:45 PM,04/06/2012 09:57:03 PM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 10:22:03 PM,HARRISON ST/23RD ST,SF,94110,B06,7,5477,3,3,3,true,Fire,1,ENGINE,2,6,9,Mission,"(37.7542303329372, -122.412047267054)",120970380-E07 +111720356,E29,11056884,Structure Fire,06/21/2011,06/21/2011,06/21/2011 08:59:24 PM,06/21/2011 09:01:58 PM,06/21/2011 09:02:25 PM,06/21/2011 09:03:30 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/21/2011 09:09:05 PM,500 Block of DE HARO ST,SF,94107,B10,37,2511,3,3,3,true,,1,ENGINE,10,3,10,Potrero Hill,"(37.7629325311181, -122.401317216579)",111720356-E29 +160043530,AM16,16001781,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:51:58 PM,01/04/2016 09:55:11 PM,01/04/2016 09:55:37 PM,01/04/2016 09:56:17 PM,01/04/2016 10:07:01 PM,01/04/2016 10:30:43 PM,01/04/2016 10:56:05 PM,Code 2 Transport,01/04/2016 11:42:01 PM,200 Block of SUTTER ST,San Francisco,94108,B01,13,1242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7897614265442, -122.404814371149)",160043530-AM16 +122200239,B01,12073020,Structure Fire,08/07/2012,08/07/2012,08/07/2012 05:30:26 PM,08/07/2012 05:31:03 PM,08/07/2012 05:31:27 PM,08/07/2012 05:32:46 PM,08/07/2012 05:34:14 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Fire,08/07/2012 06:20:21 PM,MONTGOMERY ST/BROADWAY,SF,94133,B01,13,1231,3,3,3,false,Fire,1,CHIEF,2,1,3,North Beach,"(37.7982229704871, -122.403863019987)",122200239-B01 +123030405,55,12100693,Medical Incident,10/29/2012,10/29/2012,10/29/2012 08:38:52 PM,10/29/2012 08:40:23 PM,10/29/2012 08:40:34 PM,10/29/2012 08:40:46 PM,10/29/2012 08:49:55 PM,10/29/2012 09:02:28 PM,10/29/2012 09:10:39 PM,Code 2 Transport,10/29/2012 09:27:48 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",123030405-55 +160900090,55,16035539,Medical Incident,03/30/2016,03/29/2016,03/30/2016 12:42:19 AM,03/30/2016 12:42:19 AM,03/30/2016 12:43:00 AM,03/30/2016 12:43:14 AM,03/30/2016 12:52:41 AM,03/30/2016 01:18:44 AM,03/30/2016 01:25:55 AM,Code 2 Transport,03/30/2016 01:49:56 AM,100 Block of JASPER PL,San Francisco,94133,B01,28,1265,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8009999767411, -122.408523696851)",160900090-55 +160060171,82,16002231,Medical Incident,01/06/2016,01/05/2016,01/06/2016 01:52:24 AM,01/06/2016 01:53:24 AM,01/06/2016 01:53:42 AM,01/06/2016 01:54:17 AM,01/06/2016 02:10:29 AM,01/06/2016 02:10:34 AM,01/06/2016 02:18:37 AM,Code 2 Transport,01/06/2016 03:13:29 AM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7331435009212, -122.380990356551)",160060171-82 +160920232,88,16036296,Medical Incident,04/01/2016,03/31/2016,04/01/2016 02:32:05 AM,04/01/2016 02:35:50 AM,04/01/2016 02:37:03 AM,04/01/2016 02:37:21 AM,04/01/2016 02:44:44 AM,04/01/2016 02:51:33 AM,04/01/2016 02:59:23 AM,Code 2 Transport,04/01/2016 03:12:16 AM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160920232-88 +160742692,61,16029407,Medical Incident,03/14/2016,03/14/2016,03/14/2016 04:33:23 PM,03/14/2016 04:35:06 PM,03/14/2016 04:37:26 PM,03/14/2016 04:37:36 PM,03/14/2016 04:41:28 PM,03/14/2016 04:57:54 PM,03/14/2016 05:03:34 PM,Code 2 Transport,03/14/2016 05:32:30 PM,900 Block of POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",160742692-61 +121200276,KM02,12039915,Medical Incident,04/29/2012,04/29/2012,04/29/2012 05:13:45 PM,04/29/2012 05:14:53 PM,04/29/2012 05:15:29 PM,04/29/2012 05:16:16 PM,04/29/2012 05:21:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 05:43:26 PM,2000 Block of VALLEJO ST,SF,94123,B04,38,3442,3,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.7958030542042, -122.431016298283)",121200276-KM02 +160741068,79,16029264,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:49:39 AM,03/14/2016 09:49:39 AM,03/14/2016 09:49:59 AM,03/14/2016 09:50:07 AM,03/14/2016 10:22:36 AM,03/14/2016 10:22:37 AM,03/14/2016 10:35:47 AM,Code 2 Transport,03/14/2016 11:08:20 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7786674439132, -122.411723778126)",160741068-79 +111170333,E41,11038751,Medical Incident,04/27/2011,04/27/2011,04/27/2011 09:10:12 PM,04/27/2011 09:10:40 PM,04/27/2011 09:11:54 PM,04/27/2011 09:12:51 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 09:14:55 PM,900 Block of MASON ST,PR,94108,B01,51,4613,3,3,3,false,,1,ENGINE,4,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",111170333-E41 +121320124,B07,12043867,Alarms,05/11/2012,05/11/2012,05/11/2012 09:37:49 AM,05/11/2012 09:38:11 AM,05/11/2012 09:38:25 AM,05/11/2012 09:39:46 AM,05/11/2012 09:44:46 AM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 09:49:04 AM,0 Block of COLE ST,SF,94117,B05,21,4535,3,3,3,false,Alarm,1,CHIEF,2,5,1,Lone Mountain/USF,"(37.7747029048182, -122.4513287335)",121320124-B07 +160041009,56,16001529,Outside Fire,01/04/2016,01/04/2016,01/04/2016 09:29:58 AM,01/04/2016 09:31:11 AM,01/04/2016 09:31:41 AM,01/04/2016 09:32:01 AM,01/04/2016 09:36:45 AM,01/04/2016 09:50:37 AM,01/04/2016 09:59:42 AM,Code 2 Transport,01/04/2016 10:31:04 AM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,true,Fire,1,MEDIC,4,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",160041009-56 +160671194,KM13,16026710,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:33:42 AM,03/07/2016 11:33:42 AM,03/07/2016 11:33:42 AM,03/07/2016 11:33:42 AM,03/07/2016 11:33:42 AM,03/07/2016 11:34:35 AM,03/07/2016 11:54:30 AM,Code 2 Transport,03/07/2016 12:32:50 PM,200 Block of MARKET ST,San Francisco,94111,B99,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160671194-KM13 +140120108,82,14004083,Medical Incident,01/12/2014,01/12/2014,01/12/2014 09:45:03 AM,01/12/2014 09:46:31 AM,01/12/2014 09:46:49 AM,01/12/2014 09:47:06 AM,01/12/2014 09:51:52 AM,01/12/2014 10:01:02 AM,01/12/2014 10:41:53 AM,Code 2 Transport,01/12/2014 11:09:25 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",140120108-82 +122710041,B02,12089325,Alarms,09/27/2012,09/26/2012,09/27/2012 05:30:24 AM,09/27/2012 05:32:35 AM,09/27/2012 05:33:21 AM,09/27/2012 05:35:15 AM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Fire,09/27/2012 05:38:07 AM,700 Block of OAK ST,SF,94117,B05,21,3632,3,3,3,false,Alarm,1,CHIEF,3,5,5,Hayes Valley,"(37.7738139678266, -122.431635829966)",122710041-B02 +133340055,82,13113137,Medical Incident,11/30/2013,11/29/2013,11/30/2013 05:13:18 AM,11/30/2013 05:13:53 AM,11/30/2013 05:14:17 AM,11/30/2013 05:14:38 AM,11/30/2013 05:22:47 AM,11/30/2013 05:43:54 AM,11/30/2013 06:10:40 AM,Code 2 Transport,11/30/2013 06:27:25 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",133340055-82 +112800012,54,11092530,Medical Incident,10/07/2011,10/06/2011,10/07/2011 12:32:12 AM,10/07/2011 12:32:45 AM,10/07/2011 12:33:01 AM,10/07/2011 12:33:14 AM,10/07/2011 12:38:39 AM,10/07/2011 01:14:38 AM,10/07/2011 01:34:50 AM,Code 2 Transport,10/07/2011 01:59:26 AM,900 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",112800012-54 +110420316,E41,11014018,Medical Incident,02/11/2011,02/11/2011,02/11/2011 06:23:33 PM,02/11/2011 06:25:04 PM,02/11/2011 06:25:36 PM,02/11/2011 06:27:10 PM,02/11/2011 06:29:02 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 06:33:35 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",110420316-E41 +111270108,RC3,11041981,Medical Incident,05/07/2011,05/07/2011,05/07/2011 10:26:24 AM,05/07/2011 10:26:46 AM,05/07/2011 10:27:26 AM,04/25/2016 02:04:44 PM,05/07/2011 10:42:25 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/07/2011 10:50:28 AM,2600 Block of MISSION ST,SF,94110,B06,7,5472,3,2,2,true,,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7546409372119, -122.418601779487)",111270108-RC3 +111300368,E01,11043120,Alarms,05/10/2011,05/10/2011,05/10/2011 09:56:48 PM,05/10/2011 09:57:58 PM,05/10/2011 09:59:08 PM,05/10/2011 10:00:29 PM,05/10/2011 10:02:34 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 10:16:16 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",111300368-E01 +120680153,B02,12022546,Alarms,03/08/2012,03/08/2012,03/08/2012 12:26:01 PM,03/08/2012 12:27:07 PM,03/08/2012 12:27:14 PM,03/08/2012 12:27:35 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/08/2012 12:28:15 PM,400 Block of ASHBURY ST,SF,94117,B05,21,4513,3,3,3,false,Alarm,1,CHIEF,2,5,5,Haight Ashbury,"(37.7713975294669, -122.447285890088)",120680153-B02 +122550345,B03,12084425,Other,09/11/2012,09/11/2012,09/11/2012 07:46:17 PM,09/11/2012 07:50:03 PM,09/11/2012 07:50:16 PM,09/11/2012 07:51:37 PM,09/11/2012 07:54:56 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 08:27:43 PM,300 Block of 20TH ST,SF,94107,B10,25,970,3,3,3,false,Alarm,1,CHIEF,2,3,10,Potrero Hill,"(37.7606927106062, -122.386101233024)",122550345-B03 +120380318,83,12012803,Medical Incident,02/07/2012,02/07/2012,02/07/2012 08:04:33 PM,02/07/2012 08:06:28 PM,02/07/2012 08:07:13 PM,02/07/2012 08:07:22 PM,02/07/2012 08:10:08 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Against Medical Advice,02/07/2012 08:52:34 PM,1200 Block of VAN NESS AVE,SF,94109,B04,3,3161,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7868516471087, -122.421441956086)",120380318-83 +112550277,T03,11084195,Structure Fire,09/12/2011,09/12/2011,09/12/2011 05:30:46 PM,09/12/2011 05:30:47 PM,09/12/2011 05:30:57 PM,09/12/2011 05:32:43 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Other,09/12/2011 05:34:08 PM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",112550277-T03 +160691789,84,16027478,Medical Incident,03/09/2016,03/09/2016,03/09/2016 01:05:40 PM,03/09/2016 01:05:40 PM,03/09/2016 01:06:16 PM,03/09/2016 01:07:19 PM,03/09/2016 01:10:41 PM,03/09/2016 01:34:03 PM,03/09/2016 01:56:37 PM,Code 2 Transport,03/09/2016 02:43:11 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",160691789-84 +160453676,55,16018338,Medical Incident,02/14/2016,02/14/2016,02/14/2016 11:54:52 PM,02/14/2016 11:57:34 PM,02/14/2016 11:57:48 PM,02/14/2016 11:58:01 PM,02/15/2016 12:13:40 AM,02/15/2016 12:15:59 AM,02/15/2016 12:26:21 AM,Code 2 Transport,02/15/2016 01:03:13 AM,1500 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160453676-55 +111360145,T03,11045249,Medical Incident,05/16/2011,05/16/2011,05/16/2011 11:25:43 AM,05/16/2011 11:26:28 AM,05/16/2011 11:26:48 AM,05/16/2011 11:27:19 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 11:33:31 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",111360145-T03 +123370208,E40,12112179,Electrical Hazard,12/02/2012,12/02/2012,12/02/2012 08:06:19 AM,12/02/2012 08:09:20 AM,12/02/2012 08:10:29 AM,04/25/2016 01:55:31 PM,12/02/2012 08:13:47 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 08:18:21 AM,18TH AV/RIVERA ST,SF,94116,B08,40,7375,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7468268198997, -122.474887301003)",123370208-E40 +131040087,E02,13034848,Medical Incident,04/14/2013,04/13/2013,04/14/2013 04:27:46 AM,04/14/2013 04:29:57 AM,04/14/2013 04:31:05 AM,04/14/2013 04:33:27 AM,04/14/2013 04:35:01 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 04:49:13 AM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",131040087-E02 +160531379,87,16021177,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:47:43 AM,02/22/2016 11:48:13 AM,02/22/2016 11:48:25 AM,02/22/2016 11:48:52 AM,02/22/2016 11:51:39 AM,02/22/2016 12:21:08 PM,02/22/2016 12:40:18 PM,Code 2 Transport,02/22/2016 01:02:57 PM,0 Block of 0TH ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7763471604576, -122.417159710491)",160531379-87 +160812931,KM05,16032297,Medical Incident,03/21/2016,03/21/2016,03/21/2016 05:42:33 PM,03/21/2016 05:44:20 PM,03/21/2016 05:51:35 PM,03/21/2016 05:55:15 PM,03/21/2016 06:04:30 PM,03/21/2016 06:36:45 PM,03/21/2016 07:04:36 PM,Code 2 Transport,03/21/2016 07:41:46 PM,1000 Block of LAKE ST,San Francisco,94118,B07,31,7137,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7863573634329, -122.470575117759)",160812931-KM05 +140630199,52,14021284,Medical Incident,03/04/2014,03/04/2014,03/04/2014 01:07:30 PM,03/04/2014 01:07:55 PM,03/04/2014 01:08:20 PM,03/04/2014 01:08:46 PM,03/04/2014 01:11:26 PM,03/04/2014 01:46:27 PM,03/04/2014 02:52:49 PM,Code 2 Transport,03/04/2014 03:10:07 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",140630199-52 +140990055,E16,14033331,Citizen Assist / Service Call,04/09/2014,04/08/2014,04/09/2014 05:33:35 AM,04/09/2014 05:34:49 AM,04/09/2014 05:34:56 AM,04/25/2016 01:47:19 PM,04/09/2014 05:39:17 AM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Fire,04/09/2014 05:49:58 AM,BRODERICK ST/FILBERT ST,SAN FRANCISCO,94123,B04,16,4224,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7969685894227, -122.443949954563)",140990055-E16 +130690184,E01,13023043,Alarms,03/10/2013,03/10/2013,03/10/2013 02:21:47 PM,03/10/2013 02:23:41 PM,03/10/2013 02:23:56 PM,03/10/2013 02:24:54 PM,03/10/2013 02:26:54 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Fire,03/10/2013 02:46:08 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7764944808779, -122.411359138357)",130690184-E01 +121700375,RS1,12056597,Medical Incident,06/18/2012,06/18/2012,06/18/2012 11:24:33 PM,06/18/2012 11:26:52 PM,06/18/2012 11:27:16 PM,06/18/2012 11:28:41 PM,06/18/2012 11:31:35 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/18/2012 11:33:13 PM,JESSIE ST/6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7813981325639, -122.409245443953)",121700375-RS1 +160301849,KM02,16011794,Medical Incident,01/30/2016,01/30/2016,01/30/2016 12:48:45 PM,01/30/2016 12:49:38 PM,01/30/2016 12:49:54 PM,01/30/2016 12:50:35 PM,01/30/2016 01:04:40 PM,01/30/2016 01:19:59 PM,01/30/2016 01:37:03 PM,Code 3 Transport,01/30/2016 02:33:07 PM,1100 Block of MASON CT,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8284029538431, -122.377606374892)",160301849-KM02 +160870854,89,16034498,Medical Incident,03/27/2016,03/26/2016,03/27/2016 07:50:46 AM,03/27/2016 07:50:46 AM,03/27/2016 07:50:46 AM,03/27/2016 07:50:46 AM,03/27/2016 07:50:46 AM,03/27/2016 08:13:59 AM,03/27/2016 08:20:22 AM,Code 2 Transport,03/27/2016 08:54:08 AM,MISSION ST/24TH ST,San Francisco,94110,B99,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160870854-89 +133030399,T03,13103110,Alarms,10/30/2013,10/30/2013,10/30/2013 11:36:27 PM,10/30/2013 11:39:09 PM,10/30/2013 11:39:20 PM,10/30/2013 11:41:09 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 11:44:34 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",133030399-T03 +160741942,KM06,16029352,Medical Incident,03/14/2016,03/14/2016,03/14/2016 01:30:30 PM,03/14/2016 01:30:30 PM,03/14/2016 01:30:54 PM,03/14/2016 01:32:12 PM,03/14/2016 01:51:37 PM,03/14/2016 01:59:09 PM,03/14/2016 02:53:51 PM,Code 2 Transport,03/14/2016 03:34:36 PM,THE EMBARCADERO NOR/WASHINGTON ST,San Francisco,94111,B01,28,901,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7965582462412, -122.396189037335)",160741942-KM06 +123580093,85,12119776,Medical Incident,12/23/2012,12/23/2012,12/23/2012 09:57:32 AM,12/23/2012 09:59:41 AM,12/23/2012 10:00:23 AM,12/23/2012 10:00:36 AM,12/23/2012 10:16:44 AM,12/23/2012 10:40:49 AM,12/23/2012 10:57:29 AM,Code 2 Transport,12/23/2012 11:26:17 AM,1300 Block of 5TH AVE,SF,94122,B08,12,7326,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7632907518666, -122.462034637217)",123580093-85 +160510520,71,16020366,Medical Incident,02/20/2016,02/19/2016,02/20/2016 05:46:43 AM,02/20/2016 05:48:55 AM,02/20/2016 05:49:12 AM,02/20/2016 05:49:26 AM,02/20/2016 05:57:09 AM,02/20/2016 06:17:48 AM,02/20/2016 06:28:58 AM,Code 2 Transport,02/20/2016 07:09:50 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160510520-71 +160120284,AM22,16004629,Medical Incident,01/12/2016,01/11/2016,01/12/2016 03:17:33 AM,01/12/2016 03:19:22 AM,01/12/2016 03:19:36 AM,01/12/2016 03:20:09 AM,01/12/2016 03:25:05 AM,01/12/2016 03:41:28 AM,01/12/2016 04:10:30 AM,Code 2 Transport,01/12/2016 04:19:38 AM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",160120284-AM22 +130860309,89,13028791,Medical Incident,03/27/2013,03/27/2013,03/27/2013 06:54:17 PM,03/27/2013 06:57:27 PM,03/27/2013 06:58:07 PM,03/27/2013 06:59:10 PM,03/27/2013 07:05:22 PM,03/27/2013 07:16:28 PM,03/27/2013 07:29:34 PM,Code 2 Transport,03/27/2013 07:48:46 PM,100 Block of MAXWELL CT,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7669025720969, -122.423141850936)",130860309-89 +122060045,KM07,12068376,Medical Incident,07/24/2012,07/23/2012,07/24/2012 04:57:19 AM,07/24/2012 04:59:10 AM,07/24/2012 04:59:35 AM,07/24/2012 05:01:25 AM,07/24/2012 05:09:23 AM,07/24/2012 05:28:44 AM,07/24/2012 05:45:48 AM,Code 2 Transport,07/24/2012 06:27:49 AM,600 Block of 35TH AVE,SF,94121,B07,34,7251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7767481742655, -122.495173559418)",122060045-KM07 +160821866,93,16032568,Medical Incident,03/22/2016,03/22/2016,03/22/2016 01:12:33 PM,03/22/2016 01:15:18 PM,03/22/2016 01:32:44 PM,03/22/2016 01:32:51 PM,03/22/2016 01:52:44 PM,03/22/2016 02:13:26 PM,03/22/2016 02:24:43 PM,Code 2 Transport,03/22/2016 03:10:16 PM,900 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.787277154617, -122.416825199786)",160821866-93 +130860379,KM15,13028862,Medical Incident,03/27/2013,03/27/2013,03/27/2013 11:49:30 PM,03/27/2013 11:50:09 PM,03/27/2013 11:54:43 PM,03/27/2013 11:55:08 PM,03/28/2013 12:08:29 AM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,No Merit,03/28/2013 12:18:39 AM,POLK ST/HAYES ST,SF,94102,B02,36,1646,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7775117101895, -122.41804317004)",130860379-KM15 +130520336,E36,13017712,Medical Incident,02/21/2013,02/21/2013,02/21/2013 08:25:01 PM,02/21/2013 08:26:10 PM,02/21/2013 08:26:27 PM,02/21/2013 08:27:41 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,02/21/2013 08:29:22 PM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.774023964837, -122.411841983792)",130520336-E36 +112680325,96,11088709,Medical Incident,09/25/2011,09/25/2011,09/25/2011 07:31:01 PM,09/25/2011 07:31:21 PM,09/25/2011 07:31:36 PM,09/25/2011 07:32:17 PM,09/25/2011 07:36:21 PM,09/25/2011 08:02:03 PM,09/25/2011 08:14:21 PM,Code 2 Transport,09/25/2011 08:47:25 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",112680325-96 +122880058,B03,12095175,Alarms,10/14/2012,10/13/2012,10/14/2012 03:57:51 AM,10/14/2012 03:59:42 AM,10/14/2012 03:59:57 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 04:01:09 AM,500 Block of 15TH ST,SF,94103,B02,29,2352,3,3,3,false,Alarm,1,CHIEF,2,2,10,Mission,"(37.7672258966731, -122.406197525908)",122880058-B03 +160150555,82,16005866,Medical Incident,01/15/2016,01/14/2016,01/15/2016 06:52:52 AM,01/15/2016 06:53:11 AM,01/15/2016 06:53:21 AM,01/15/2016 06:53:49 AM,01/15/2016 07:05:33 AM,01/15/2016 07:20:13 AM,01/15/2016 07:23:52 AM,Code 2 Transport,01/15/2016 08:20:56 AM,1700 Block of LOMBARD ST,San Francisco,94123,B04,16,3352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8006899587765, -122.430316559527)",160150555-82 +132520022,82,13085044,Medical Incident,09/09/2013,09/08/2013,09/09/2013 01:59:42 AM,09/09/2013 02:01:15 AM,09/09/2013 02:03:01 AM,09/09/2013 02:03:06 AM,09/09/2013 02:11:03 AM,09/09/2013 02:27:33 AM,09/09/2013 02:40:41 AM,Code 2 Transport,09/09/2013 03:17:23 AM,1500 Block of INDIANA ST,SF,94107,B10,25,2635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7507499478953, -122.390567258683)",132520022-82 +130390047,94,13013193,Medical Incident,02/08/2013,02/07/2013,02/08/2013 03:58:21 AM,02/08/2013 04:00:41 AM,02/08/2013 04:00:56 AM,02/08/2013 04:01:40 AM,02/08/2013 04:05:23 AM,02/08/2013 04:23:17 AM,02/08/2013 04:45:46 AM,Code 2 Transport,02/08/2013 05:02:34 AM,3100 Block of RIVERA ST,SF,94116,B08,18,7635,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7456606490039, -122.500057662264)",130390047-94 +131570142,E03,13053195,Medical Incident,06/06/2013,06/06/2013,06/06/2013 10:26:27 AM,06/06/2013 10:27:22 AM,06/06/2013 10:30:41 AM,06/06/2013 10:31:59 AM,06/06/2013 10:34:13 AM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/06/2013 10:41:40 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",131570142-E03 +132050399,E14,13069599,Electrical Hazard,07/24/2013,07/24/2013,07/24/2013 11:36:46 PM,07/24/2013 11:40:13 PM,07/24/2013 11:40:32 PM,07/24/2013 11:42:04 PM,07/24/2013 11:45:06 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Unable to Locate,07/24/2013 11:49:51 PM,21ST AV/LAKE ST,SF,94121,B07,14,7173,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7859339632576, -122.480860098828)",132050399-E14 +120610062,E06,12019951,Medical Incident,03/01/2012,02/29/2012,03/01/2012 06:37:22 AM,03/01/2012 06:43:35 AM,03/01/2012 06:43:44 AM,03/01/2012 06:45:22 AM,03/01/2012 06:49:00 AM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,Other,03/01/2012 06:50:52 AM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,1,2,true,Non Life-threatening,1,ENGINE,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",120610062-E06 +121760316,RC1,12058619,Medical Incident,06/24/2012,06/24/2012,06/24/2012 06:17:30 PM,06/24/2012 06:19:12 PM,06/24/2012 06:19:38 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 06:27:53 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",121760316-RC1 +121110006,E01,12036578,Medical Incident,04/20/2012,04/19/2012,04/20/2012 12:34:19 AM,04/20/2012 12:35:34 AM,04/20/2012 12:35:45 AM,04/20/2012 12:37:52 AM,04/20/2012 12:40:25 AM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 12:50:24 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",121110006-E01 +121660227,55,12055093,Medical Incident,06/14/2012,06/14/2012,06/14/2012 02:26:26 PM,06/14/2012 02:28:21 PM,06/14/2012 02:28:46 PM,06/14/2012 02:29:04 PM,06/14/2012 02:33:09 PM,06/14/2012 02:58:57 PM,06/14/2012 03:11:53 PM,Code 2 Transport,06/14/2012 03:50:42 PM,STEVENSON ST/7TH ST,SF,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",121660227-55 +112050200,KM04,11067753,Structure Fire,07/24/2011,07/24/2011,07/24/2011 02:12:57 PM,07/24/2011 02:14:17 PM,07/24/2011 02:14:48 PM,07/24/2011 02:15:48 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/24/2011 02:16:36 PM,1000 Block of STOCKTON ST,SF,94108,B01,2,1331,3,3,3,false,,1,PRIVATE,11,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",112050200-KM04 +122100346,E23,12069909,Medical Incident,07/28/2012,07/28/2012,07/28/2012 10:28:56 PM,07/28/2012 10:29:15 PM,07/28/2012 10:29:45 PM,07/28/2012 10:31:32 PM,07/28/2012 10:33:46 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 10:39:08 PM,1900 Block of 47TH AVE,SF,94116,B08,23,7715,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7501226485047, -122.506214055721)",122100346-E23 +110720330,E01,11023848,Medical Incident,03/13/2011,03/13/2011,03/13/2011 09:46:03 PM,03/13/2011 09:47:13 PM,03/13/2011 09:47:26 PM,03/13/2011 09:48:33 PM,03/13/2011 10:02:51 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/13/2011 10:06:55 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",110720330-E01 +160530880,89,16021122,Medical Incident,02/22/2016,02/22/2016,02/22/2016 09:15:17 AM,02/22/2016 09:17:23 AM,02/22/2016 09:17:58 AM,02/22/2016 09:19:04 AM,02/22/2016 09:28:46 AM,02/22/2016 09:43:17 AM,02/22/2016 09:55:47 AM,Code 2 Transport,02/22/2016 10:47:28 AM,500 Block of CHURCH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Castro/Upper Market,"(37.7624845773087, -122.428538964654)",160530880-89 +111000146,79,11033185,Medical Incident,04/10/2011,04/10/2011,04/10/2011 11:14:57 AM,04/10/2011 11:17:43 AM,04/10/2011 11:17:52 AM,04/10/2011 11:18:17 AM,04/10/2011 11:27:04 AM,04/10/2011 11:40:31 AM,04/10/2011 12:02:12 PM,Code 2 Transport,04/10/2011 12:28:24 PM,0 Block of ALHAMBRA ST,SF,94123,B04,16,3565,1,1,2,true,,1,MEDIC,1,4,2,Marina,"(37.8027914749945, -122.437661901776)",111000146-79 +132790429,E01,13095111,Medical Incident,10/06/2013,10/06/2013,10/06/2013 09:42:10 PM,10/06/2013 09:42:56 PM,10/06/2013 09:43:39 PM,10/06/2013 09:43:45 PM,10/06/2013 09:45:47 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/06/2013 09:53:31 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7862985138478, -122.408477809664)",132790429-E01 +121470323,E09,12048924,Medical Incident,05/26/2012,05/26/2012,05/26/2012 10:09:35 PM,05/26/2012 10:10:15 PM,05/26/2012 10:10:41 PM,05/26/2012 10:11:39 PM,05/26/2012 10:13:21 PM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/26/2012 10:28:42 PM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",121470323-E09 +160913340,75,16036228,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:06:00 PM,03/31/2016 08:06:00 PM,03/31/2016 08:06:05 PM,03/31/2016 08:06:13 PM,03/31/2016 08:08:43 PM,03/31/2016 08:27:46 PM,03/31/2016 08:42:49 PM,Code 2 Transport,03/31/2016 09:01:14 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.769082767924, -122.413353472663)",160913340-75 +160882309,56,16035009,Medical Incident,03/28/2016,03/28/2016,03/28/2016 03:12:49 PM,03/28/2016 03:14:28 PM,03/28/2016 03:14:39 PM,03/28/2016 03:15:39 PM,03/28/2016 03:24:21 PM,03/28/2016 03:35:15 PM,03/28/2016 03:45:10 PM,Code 2 Transport,03/28/2016 04:26:45 PM,1900 Block of 32ND AVE,San Francisco,94116,B08,18,7533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7508238719258, -122.490273641262)",160882309-56 +160121550,82,16004756,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:05:09 PM,01/12/2016 12:06:22 PM,01/12/2016 12:06:55 PM,01/12/2016 12:07:43 PM,01/12/2016 12:12:56 PM,01/12/2016 12:30:17 PM,01/12/2016 12:45:02 PM,Code 2 Transport,01/12/2016 01:10:53 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160121550-82 +111480202,65,11049102,Medical Incident,05/28/2011,05/28/2011,05/28/2011 03:44:49 PM,05/28/2011 03:45:17 PM,05/28/2011 03:46:39 PM,05/28/2011 03:46:52 PM,05/28/2011 03:53:04 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Against Medical Advice,05/28/2011 04:35:29 PM,2300 Block of 19TH AVE,SF,94116,B08,40,7416,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7439803947416, -122.475835562635)",111480202-65 +131830141,B04,13062327,Alarms,07/02/2013,07/02/2013,07/02/2013 11:25:03 AM,07/02/2013 11:26:41 AM,07/02/2013 11:27:01 AM,07/02/2013 11:27:50 AM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 11:29:44 AM,200 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.7737235017153, -122.424812687358)",131830141-B04 +160870030,52,16034409,Traffic Collision,03/27/2016,03/26/2016,03/27/2016 12:08:24 AM,03/27/2016 12:08:24 AM,03/27/2016 12:08:45 AM,03/27/2016 12:08:55 AM,03/27/2016 12:13:50 AM,03/27/2016 12:37:57 AM,03/27/2016 12:52:37 AM,Code 2 Transport,03/27/2016 01:45:20 AM,LAGUNA ST/LOMBARD ST,San Francisco,94123,B04,16,3352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.8004692165623, -122.431115291336)",160870030-52 +130990044,68,13033139,Medical Incident,04/09/2013,04/08/2013,04/09/2013 05:09:43 AM,04/09/2013 05:11:29 AM,04/09/2013 05:12:09 AM,04/09/2013 05:12:18 AM,04/09/2013 05:18:33 AM,04/09/2013 05:47:25 AM,04/09/2013 05:50:16 AM,Code 2 Transport,04/09/2013 06:29:23 AM,400 Block of LEAVENWORTH ST,SF,94109,B04,3,1544,1,1,2,false,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",130990044-68 +132180074,E28,13073529,Alarms,08/06/2013,08/06/2013,08/06/2013 08:15:38 AM,08/06/2013 08:16:46 AM,08/06/2013 08:17:02 AM,08/06/2013 08:18:57 AM,08/06/2013 08:19:55 AM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 08:27:45 AM,400 Block of FRANCISCO ST,SF,94133,B01,28,131,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8048443206433, -122.412608500536)",132180074-E28 +160361701,82,16014232,Medical Incident,02/05/2016,02/05/2016,02/05/2016 11:55:41 AM,02/05/2016 11:55:41 AM,02/05/2016 11:56:07 AM,02/05/2016 11:56:15 AM,02/05/2016 12:05:36 PM,02/05/2016 12:21:54 PM,02/05/2016 12:35:34 PM,Code 2 Transport,02/05/2016 01:28:14 PM,0 Block of DR CARLTON B GOODLETT PL,San Francisco,94102,B02,36,381,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",160361701-82 +112510406,RS2,11082934,Medical Incident,09/08/2011,09/08/2011,09/08/2011 09:47:26 PM,09/08/2011 09:50:26 PM,09/08/2011 09:50:45 PM,09/08/2011 09:51:37 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 09:51:43 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,RESCUE SQUAD,3,6,9,Mission,"(37.7525060662321, -122.414086032423)",112510406-RS2 +132420103,KM01,13081565,Medical Incident,08/30/2013,08/30/2013,08/30/2013 08:48:17 AM,08/30/2013 08:48:36 AM,08/30/2013 08:48:47 AM,08/30/2013 08:49:33 AM,08/30/2013 08:56:19 AM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/30/2013 08:58:09 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",132420103-KM01 +131650362,E22,13056195,Gas Leak (Natural and LP Gases),06/14/2013,06/14/2013,06/14/2013 08:51:29 PM,06/14/2013 08:55:52 PM,06/14/2013 08:55:59 PM,06/14/2013 08:57:22 PM,06/14/2013 08:58:32 PM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Other,06/14/2013 09:11:58 PM,1400 Block of 18TH AVE,SF,94122,B08,22,7371,3,3,3,false,Alarm,1,ENGINE,1,8,7,Inner Sunset,"(37.7608162669498, -122.475791240665)",131650362-E22 +140630252,KM12,14021328,Traffic Collision,03/04/2014,03/04/2014,03/04/2014 03:22:58 PM,03/04/2014 03:24:05 PM,03/04/2014 03:24:22 PM,03/04/2014 03:24:51 PM,03/04/2014 03:26:25 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Gone on Arrival,03/04/2014 03:28:37 PM,FOLSOM ST/3RD ST,SF,94107,B03,1,2176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7837849329145, -122.398930333419)",140630252-KM12 +140900252,E05,14030358,Other,03/31/2014,03/31/2014,03/31/2014 04:55:35 PM,03/31/2014 04:56:01 PM,03/31/2014 04:56:24 PM,03/31/2014 04:57:25 PM,03/31/2014 04:58:38 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Other,03/31/2014 05:04:56 PM,1400 Block of WEBSTER ST,SAN FRANCISCO,94115,B04,5,3514,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",140900252-E05 +160920275,75,16036302,Medical Incident,04/01/2016,03/31/2016,04/01/2016 02:56:47 AM,04/01/2016 02:57:41 AM,04/01/2016 02:57:54 AM,04/01/2016 02:58:03 AM,04/01/2016 03:06:44 AM,04/01/2016 03:31:10 AM,04/01/2016 04:04:14 AM,Code 2 Transport,04/01/2016 04:12:59 AM,200 Block of SAGAMORE ST,San Francisco,94112,B09,33,8375,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7114349669499, -122.460534777512)",160920275-75 +102520295,E09,10079718,Medical Incident,09/09/2010,09/09/2010,09/09/2010 07:43:43 PM,09/09/2010 07:45:52 PM,09/09/2010 07:47:38 PM,09/09/2010 07:48:23 PM,09/09/2010 07:53:21 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Patient Declined Transport,09/09/2010 08:04:13 PM,100 Block of APOLLO ST,SF,94124,B10,42,6447,1,1,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7308870599254, -122.398877821813)",102520295-E09 +160223936,65,16008984,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:26:04 PM,01/22/2016 11:26:38 PM,01/22/2016 11:27:25 PM,01/22/2016 11:27:43 PM,01/22/2016 11:32:17 PM,01/22/2016 11:48:36 PM,01/22/2016 11:50:13 PM,Code 3 Transport,01/23/2016 12:33:04 AM,600 Block of BUSH ST,San Francisco,94108,B01,2,1361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",160223936-65 +133540451,E17,13120494,Medical Incident,12/20/2013,12/20/2013,12/20/2013 11:03:21 PM,12/20/2013 11:04:08 PM,12/20/2013 11:12:32 PM,04/25/2016 01:49:09 PM,12/20/2013 11:13:17 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Other,12/20/2013 11:21:37 PM,3RD ST/THOMAS AV,SF,94124,B10,17,6514,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7308551830157, -122.392072955368)",133540451-E17 +160562254,89,16022424,Medical Incident,02/25/2016,02/25/2016,02/25/2016 02:27:11 PM,02/25/2016 02:29:04 PM,02/25/2016 02:32:03 PM,02/25/2016 02:32:20 PM,02/25/2016 03:02:18 PM,02/25/2016 03:02:24 PM,02/25/2016 03:12:27 PM,Code 2 Transport,02/25/2016 03:53:14 PM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",160562254-89 +102580235,E09,10081529,Medical Incident,09/15/2010,09/15/2010,09/15/2010 02:46:27 PM,09/15/2010 02:47:03 PM,09/15/2010 02:47:17 PM,09/15/2010 02:48:25 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,Other,09/15/2010 03:09:00 PM,1000 Block of OAKDALE AVE,SF,94124,B10,17,6647,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7288155676841, -122.380327013416)",102580235-E09 +111920306,B08,11063477,Alarms,07/11/2011,07/11/2011,07/11/2011 05:45:38 PM,07/11/2011 05:46:37 PM,07/11/2011 05:47:08 PM,07/11/2011 05:48:22 PM,07/11/2011 05:52:47 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 06:02:09 PM,1500 Block of 34TH AVE,SF,94122,B08,18,7563,3,3,3,false,,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7581876986896, -122.492940498177)",111920306-B08 +122730296,86,12090139,Medical Incident,09/29/2012,09/29/2012,09/29/2012 06:55:05 PM,09/29/2012 06:57:12 PM,09/29/2012 06:57:51 PM,09/29/2012 06:58:01 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/29/2012 07:02:06 PM,OAK ST/DIVISADERO ST,SF,94117,B05,21,4141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.773133492205, -122.437422938764)",122730296-86 +121060161,55,12035113,Medical Incident,04/15/2012,04/15/2012,04/15/2012 12:24:39 PM,04/15/2012 12:25:22 PM,04/15/2012 12:25:37 PM,04/15/2012 12:25:47 PM,04/15/2012 12:29:25 PM,04/15/2012 12:53:10 PM,04/15/2012 01:26:54 PM,Code 2 Transport,04/15/2012 01:46:38 PM,700 Block of 23RD AVE,SF,94121,B07,14,7177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7735976795866, -122.482185448619)",121060161-55 +122910370,85,12096513,Medical Incident,10/17/2012,10/17/2012,10/17/2012 07:22:39 PM,10/17/2012 07:24:41 PM,10/17/2012 07:24:53 PM,10/17/2012 07:25:05 PM,10/17/2012 07:36:03 PM,10/17/2012 07:54:00 PM,10/17/2012 08:01:18 PM,Code 2 Transport,10/17/2012 08:31:01 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",122910370-85 +111410300,E08,11046963,Structure Fire,05/21/2011,05/21/2011,05/21/2011 07:41:50 PM,05/21/2011 07:41:50 PM,05/21/2011 07:42:18 PM,05/21/2011 07:42:30 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,Other,05/21/2011 07:45:34 PM,4TH ST/MISSION ST,SF,94103,B03,1,2213,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",111410300-E08 +131080014,81,13036170,Medical Incident,04/18/2013,04/17/2013,04/18/2013 01:23:25 AM,04/18/2013 01:25:09 AM,04/18/2013 01:26:47 AM,04/18/2013 01:29:13 AM,04/18/2013 01:36:43 AM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,No Merit,04/18/2013 01:41:16 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131080014-81 +140930274,T14,14031345,Water Rescue,04/03/2014,04/03/2014,04/03/2014 04:36:49 PM,04/03/2014 04:40:05 PM,04/03/2014 04:41:08 PM,04/03/2014 04:42:59 PM,04/03/2014 04:48:07 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,No Merit,04/03/2014 05:26:24 PM,1000 Block of GREAT HWY,,94122,B07,34,7316,3,E,3,false,Fire,1,TRUCK,3,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",140930274-T14 +110560360,E41,11018595,Medical Incident,02/25/2011,02/25/2011,02/25/2011 11:29:47 PM,02/25/2011 11:30:56 PM,02/25/2011 11:31:10 PM,02/25/2011 11:32:00 PM,02/25/2011 11:34:09 PM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/25/2011 11:46:15 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",110560360-E41 +120650085,KM04,12021411,Medical Incident,03/05/2012,03/05/2012,03/05/2012 08:03:34 AM,03/05/2012 08:04:28 AM,03/05/2012 08:06:08 AM,03/05/2012 08:06:48 AM,03/05/2012 08:11:41 AM,03/05/2012 08:21:59 AM,03/05/2012 08:37:03 AM,Code 2 Transport,03/05/2012 09:09:32 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",120650085-KM04 +121630223,E23,12054069,Structure Fire,06/11/2012,06/11/2012,06/11/2012 02:25:55 PM,06/11/2012 02:25:56 PM,06/11/2012 02:26:07 PM,06/11/2012 02:27:05 PM,06/11/2012 02:30:44 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Fire,06/11/2012 02:31:04 PM,GREAT HY/TARAVAL ST,SF,94116,B08,23,7731,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7416730182637, -122.506865451052)",121630223-E23 +103390362,E05,10108677,Medical Incident,12/05/2010,12/05/2010,12/05/2010 10:52:27 PM,12/05/2010 10:53:43 PM,12/05/2010 10:54:25 PM,12/05/2010 10:55:52 PM,12/05/2010 10:58:06 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 11:03:39 PM,2000 Block of SUTTER ST,SF,94115,B04,38,3542,3,3,3,true,,1,ENGINE,2,4,5,Japantown,"(37.7859265850289, -122.434083678259)",103390362-E05 +160230490,AM24,16009038,Medical Incident,01/23/2016,01/22/2016,01/23/2016 03:28:12 AM,01/23/2016 03:30:15 AM,01/23/2016 03:30:49 AM,01/23/2016 03:31:23 AM,01/23/2016 03:36:43 AM,01/23/2016 03:52:19 AM,01/23/2016 04:04:01 AM,Code 2 Transport,01/23/2016 04:50:21 AM,100 Block of SAN BRUNO AVE,San Francisco,94103,B02,29,2352,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7678326335682, -122.405836615175)",160230490-AM24 +160863719,55,16034374,Medical Incident,03/26/2016,03/26/2016,03/26/2016 10:07:13 PM,03/26/2016 10:07:13 PM,03/26/2016 10:07:23 PM,03/26/2016 10:07:40 PM,03/26/2016 10:09:46 PM,03/26/2016 10:18:59 PM,03/26/2016 10:24:00 PM,Code 3 Transport,03/26/2016 11:11:44 PM,3400 Block of 20TH ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7586764833002, -122.417413347097)",160863719-55 +111380348,E15,11046024,Medical Incident,05/18/2011,05/18/2011,05/18/2011 08:52:54 PM,05/18/2011 08:53:14 PM,05/18/2011 08:54:02 PM,05/18/2011 08:56:14 PM,05/18/2011 08:57:27 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 10:03:15 PM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",111380348-E15 +133460288,75,13117475,Medical Incident,12/12/2013,12/12/2013,12/12/2013 04:42:03 PM,12/12/2013 04:43:27 PM,12/12/2013 04:43:52 PM,12/12/2013 04:44:12 PM,12/12/2013 04:51:57 PM,12/12/2013 05:02:39 PM,12/12/2013 05:28:05 PM,Code 2 Transport,12/12/2013 05:58:49 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",133460288-75 +110120287,65,11004066,Medical Incident,01/12/2011,01/12/2011,01/12/2011 05:41:19 PM,01/12/2011 05:41:58 PM,01/12/2011 05:45:08 PM,01/12/2011 05:46:29 PM,01/12/2011 06:04:58 PM,01/12/2011 06:12:23 PM,01/12/2011 06:21:43 PM,Code 2 Transport,01/12/2011 06:45:42 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110120287-65 +160751722,KM09,16029714,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:46:12 PM,03/15/2016 12:47:49 PM,03/15/2016 12:48:47 PM,03/15/2016 12:49:48 PM,03/15/2016 01:00:59 PM,03/15/2016 01:19:06 PM,03/15/2016 01:39:57 PM,Code 2 Transport,03/15/2016 02:50:53 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160751722-KM09 +160421507,KM13,16016840,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:40:45 AM,02/11/2016 11:43:07 AM,02/11/2016 11:43:17 AM,02/11/2016 11:43:47 AM,02/11/2016 11:51:51 AM,02/11/2016 12:07:02 PM,02/11/2016 12:25:17 PM,Code 2 Transport,02/11/2016 01:14:38 PM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7530339738059, -122.418588598473)",160421507-KM13 +121890247,B08,12063020,Alarms,07/07/2012,07/07/2012,07/07/2012 04:20:06 PM,07/07/2012 04:21:34 PM,07/07/2012 04:22:17 PM,04/25/2016 01:57:49 PM,07/07/2012 04:26:58 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/07/2012 04:33:44 PM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",121890247-B08 +132210050,E05,13074528,Other,08/09/2013,08/09/2013,08/09/2013 08:03:55 AM,08/09/2013 08:04:34 AM,08/09/2013 08:15:32 AM,04/25/2016 01:51:23 PM,08/09/2013 08:15:37 AM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 08:18:14 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,true,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",132210050-E05 +130060245,RC2,13002123,Medical Incident,01/06/2013,01/06/2013,01/06/2013 05:28:42 PM,01/06/2013 05:30:09 PM,01/06/2013 05:31:45 PM,04/25/2016 01:54:56 PM,01/06/2013 05:33:31 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 05:43:40 PM,800 Block of BALBOA ST,SF,94118,B07,31,7134,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7770086004375, -122.467752533055)",130060245-RC2 +132530202,AM24,13085495,Medical Incident,09/10/2013,09/10/2013,09/10/2013 01:06:22 PM,09/10/2013 01:08:04 PM,09/10/2013 01:08:50 PM,09/10/2013 01:09:34 PM,09/10/2013 01:18:37 PM,09/10/2013 01:33:34 PM,09/10/2013 01:51:07 PM,Code 2 Transport,09/10/2013 02:25:20 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132530202-AM24 +160780273,61,16030872,Medical Incident,03/18/2016,03/17/2016,03/18/2016 02:18:24 AM,03/18/2016 02:20:07 AM,03/18/2016 02:20:52 AM,03/18/2016 02:21:23 AM,03/18/2016 02:24:29 AM,03/18/2016 02:27:48 AM,03/18/2016 02:42:57 AM,Code 2 Transport,03/18/2016 03:18:52 AM,FOLSOM ST/3RD ST,San Francisco,94107,B03,1,2176,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7837849329145, -122.398930333419)",160780273-61 +130300130,57,13010180,Medical Incident,01/30/2013,01/30/2013,01/30/2013 10:09:43 AM,01/30/2013 10:11:18 AM,01/30/2013 10:11:30 AM,01/30/2013 10:13:23 AM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/30/2013 10:14:00 AM,900 Block of EDINBURGH ST,SF,94112,B09,43,6174,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",130300130-57 +160523130,KM03,16020962,Medical Incident,02/21/2016,02/21/2016,02/21/2016 08:12:54 PM,02/21/2016 08:13:51 PM,02/21/2016 08:14:08 PM,02/21/2016 08:15:22 PM,02/21/2016 08:19:59 PM,02/21/2016 08:40:18 PM,02/21/2016 08:47:55 PM,Code 2 Transport,02/21/2016 09:14:06 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160523130-KM03 +123150150,E01,12104804,Structure Fire,11/10/2012,11/10/2012,11/10/2012 11:43:03 AM,11/10/2012 11:43:03 AM,11/10/2012 11:43:27 AM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/10/2012 11:48:21 AM,3RD ST/MISSION ST,SF,94103,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",123150150-E01 +123420020,E43,12114000,Structure Fire,12/07/2012,12/06/2012,12/07/2012 01:50:30 AM,12/07/2012 01:50:30 AM,12/07/2012 01:50:39 AM,12/07/2012 01:52:06 AM,12/07/2012 01:55:59 AM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 01:56:45 AM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",123420020-E43 +160113665,61,16004587,Medical Incident,01/11/2016,01/11/2016,01/11/2016 11:05:09 PM,01/11/2016 11:05:22 PM,01/11/2016 11:05:46 PM,01/11/2016 11:05:53 PM,01/11/2016 11:11:23 PM,01/11/2016 11:22:56 PM,01/11/2016 11:31:32 PM,Code 2 Transport,01/12/2016 12:06:33 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160113665-61 +132220375,KM15,13075127,Medical Incident,08/10/2013,08/10/2013,08/10/2013 09:55:07 PM,08/10/2013 09:55:43 PM,08/10/2013 09:56:21 PM,08/10/2013 09:57:03 PM,08/10/2013 10:06:36 PM,08/10/2013 10:20:15 PM,08/10/2013 10:45:30 PM,Code 2 Transport,08/10/2013 10:58:30 PM,1300 Block of THE EMBARCADERO,SF,94111,B01,28,929,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8060708761545, -122.404376747731)",132220375-KM15 +110400290,95,11013322,Traffic Collision,02/09/2011,02/09/2011,02/09/2011 04:57:39 PM,02/09/2011 04:58:08 PM,02/09/2011 04:58:31 PM,02/09/2011 04:58:58 PM,02/09/2011 05:02:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 05:04:34 PM,MCALLISTER ST/VAN NESS AV,SF,94102,B02,36,3164,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",110400290-95 +160531902,53,16021231,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:17:27 PM,02/22/2016 02:18:28 PM,02/22/2016 02:18:58 PM,02/22/2016 02:19:07 PM,02/22/2016 02:24:03 PM,02/22/2016 02:38:44 PM,02/22/2016 02:54:39 PM,Code 2 Transport,02/22/2016 03:33:58 PM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",160531902-53 +111740009,B04,11057251,Structure Fire,06/23/2011,06/22/2011,06/23/2011 12:25:12 AM,06/23/2011 12:25:12 AM,06/23/2011 12:25:46 AM,06/23/2011 12:28:46 AM,06/23/2011 12:29:28 AM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,06/23/2011 12:29:42 AM,HYDE ST/PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,CHIEF,2,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",111740009-B04 +121050075,E36,12034678,Structure Fire,04/14/2012,04/13/2012,04/14/2012 05:28:15 AM,04/14/2012 05:28:15 AM,04/14/2012 05:28:22 AM,04/14/2012 05:31:39 AM,04/14/2012 05:31:58 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 05:32:03 AM,LAGUNA ST/HAYES ST,SF,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7764643062528, -122.426263344902)",121050075-E36 +160713521,AM18,16028401,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:57:39 PM,03/11/2016 09:59:42 PM,03/11/2016 10:00:37 PM,03/11/2016 10:01:06 PM,03/11/2016 10:15:40 PM,03/11/2016 10:37:42 PM,03/11/2016 10:44:47 PM,Code 2 Transport,03/11/2016 11:12:14 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160713521-AM18 +121130232,RS1,12037559,Medical Incident,04/22/2012,04/22/2012,04/22/2012 04:35:55 PM,04/22/2012 04:37:04 PM,04/22/2012 04:37:36 PM,04/22/2012 04:38:48 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 04:40:12 PM,1100 Block of MARKET ST,SF,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,Tenderloin,"(37.7807642254398, -122.412320907436)",121130232-RS1 +123110347,99,12103619,Medical Incident,11/06/2012,11/06/2012,11/06/2012 07:25:05 PM,11/06/2012 07:27:56 PM,11/06/2012 07:31:47 PM,11/06/2012 07:32:15 PM,11/06/2012 07:41:01 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/06/2012 08:01:24 PM,3300 Block of MISSION ST,SF,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7423115712902, -122.422087802012)",123110347-99 +120340350,T03,12011406,Structure Fire,02/03/2012,02/03/2012,02/03/2012 08:42:53 PM,02/03/2012 08:42:53 PM,02/03/2012 08:43:10 PM,02/03/2012 08:44:17 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/03/2012 08:44:56 PM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",120340350-T03 +112670322,T02,11088346,Elevator / Escalator Rescue,09/24/2011,09/24/2011,09/24/2011 07:23:10 PM,09/24/2011 07:24:05 PM,09/24/2011 07:24:17 PM,09/24/2011 07:25:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 07:26:36 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,,1,TRUCK,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",112670322-T02 +110150081,93,11004911,Medical Incident,01/15/2011,01/14/2011,01/15/2011 06:28:57 AM,01/15/2011 06:32:16 AM,01/15/2011 06:34:55 AM,01/15/2011 06:35:49 AM,01/15/2011 06:42:49 AM,01/15/2011 06:54:57 AM,01/15/2011 06:56:17 AM,Code 2 Transport,01/15/2011 07:07:02 AM,1100 Block of BUSH ST,SF,94109,B01,41,1542,2,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7892692454633, -122.416205378022)",110150081-93 +131240036,85,13041692,Medical Incident,05/04/2013,05/03/2013,05/04/2013 02:08:45 AM,05/04/2013 02:09:52 AM,05/04/2013 02:10:37 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/04/2013 02:11:18 AM,RINGOLD ST/9TH ST,SF,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7733326250439, -122.411071361858)",131240036-85 +112540229,55,11083865,Medical Incident,09/11/2011,09/11/2011,09/11/2011 04:37:38 PM,09/11/2011 04:38:23 PM,09/11/2011 04:38:40 PM,09/11/2011 04:38:56 PM,09/11/2011 04:42:55 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Patient Declined Transport,09/11/2011 05:17:02 PM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,E,E,3,true,,1,MEDIC,2,10,9,Portola,"(37.7246523794049, -122.402288649686)",112540229-55 +112260256,78,11074736,Medical Incident,08/14/2011,08/14/2011,08/14/2011 05:22:45 PM,08/14/2011 05:23:00 PM,08/14/2011 05:23:11 PM,08/14/2011 05:23:56 PM,08/14/2011 05:30:40 PM,08/14/2011 05:51:01 PM,08/14/2011 06:11:31 PM,Code 2 Transport,08/14/2011 06:37:38 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",112260256-78 +132380258,E32,13080352,Medical Incident,08/26/2013,08/26/2013,08/26/2013 03:58:40 PM,08/26/2013 04:01:04 PM,08/26/2013 04:01:20 PM,08/26/2013 04:01:36 PM,08/26/2013 04:06:28 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 04:16:17 PM,200 Block of SILVER AVE,SF,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7294754378112, -122.432892177428)",132380258-E32 +160374047,70,16014970,Traffic Collision,02/06/2016,02/06/2016,02/06/2016 10:33:32 PM,02/06/2016 10:33:32 PM,02/06/2016 10:34:04 PM,02/06/2016 10:34:20 PM,02/06/2016 10:39:34 PM,02/06/2016 10:57:05 PM,02/06/2016 11:11:58 PM,Code 2 Transport,02/06/2016 11:41:02 PM,7TH ST/MISSION ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160374047-70 +160313471,91,16012346,Medical Incident,01/31/2016,01/31/2016,01/31/2016 09:05:29 PM,01/31/2016 09:05:29 PM,01/31/2016 09:05:45 PM,01/31/2016 09:06:13 PM,01/31/2016 09:09:44 PM,01/31/2016 09:34:36 PM,01/31/2016 09:44:13 PM,Code 2 Transport,01/31/2016 10:19:26 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160313471-91 +132080029,85,13070279,Traffic Collision,07/27/2013,07/26/2013,07/27/2013 01:23:45 AM,07/27/2013 01:24:21 AM,07/27/2013 01:24:41 AM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/27/2013 01:26:10 AM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,9,3,6,South of Market,"(37.7785051047871, -122.405615267864)",132080029-85 +160813211,68,16032319,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:52:14 PM,03/21/2016 06:53:09 PM,03/21/2016 06:53:20 PM,03/21/2016 06:53:26 PM,03/21/2016 07:09:40 PM,03/21/2016 07:26:53 PM,03/21/2016 08:02:17 PM,Code 2 Transport,03/21/2016 08:26:31 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160813211-68 +160641410,67,16025465,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:52:07 AM,03/04/2016 10:53:24 AM,03/04/2016 10:55:38 AM,03/04/2016 10:56:22 AM,03/04/2016 11:01:08 AM,03/04/2016 12:07:16 PM,03/04/2016 12:30:28 PM,Code 2 Transport,03/04/2016 01:08:30 PM,500 Block of BRIGHT ST,San Francisco,94132,B09,33,8433,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7207874848111, -122.463640249627)",160641410-67 +160590206,AM20,16023351,Medical Incident,02/28/2016,02/27/2016,02/28/2016 01:17:56 AM,02/28/2016 01:19:43 AM,02/28/2016 01:19:59 AM,02/28/2016 01:20:35 AM,02/28/2016 01:25:09 AM,02/28/2016 01:45:50 AM,02/28/2016 01:55:30 AM,Code 2 Transport,02/28/2016 02:09:34 AM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",160590206-AM20 +112450321,E07,11080877,Medical Incident,09/02/2011,09/02/2011,09/02/2011 06:56:37 PM,09/02/2011 06:57:09 PM,09/02/2011 06:57:25 PM,09/02/2011 06:58:25 PM,09/02/2011 07:00:14 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 07:07:22 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",112450321-E07 +120520229,57,12017214,Medical Incident,02/21/2012,02/21/2012,02/21/2012 02:58:45 PM,02/21/2012 02:59:13 PM,02/21/2012 02:59:57 PM,02/21/2012 03:01:54 PM,02/21/2012 03:06:11 PM,02/21/2012 03:15:29 PM,02/21/2012 03:35:50 PM,Code 2 Transport,02/21/2012 04:00:21 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",120520229-57 +160501790,67,16020098,Medical Incident,02/19/2016,02/19/2016,02/19/2016 01:22:42 PM,02/19/2016 01:23:07 PM,02/19/2016 01:24:05 PM,02/19/2016 01:24:10 PM,02/19/2016 01:29:55 PM,02/19/2016 01:45:36 PM,02/19/2016 02:03:58 PM,Code 2 Transport,02/19/2016 02:43:10 PM,6TH AV/CLEMENT ST,San Francisco,94118,B07,31,7125,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7829399330612, -122.464425023808)",160501790-67 +140650401,68,14022145,Medical Incident,03/06/2014,03/06/2014,03/06/2014 11:05:12 PM,03/06/2014 11:05:56 PM,03/06/2014 11:07:18 PM,03/06/2014 11:07:34 PM,03/06/2014 11:12:18 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Patient Declined Transport,03/06/2014 11:26:06 PM,100 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",140650401-68 +140530265,B01,14018019,Outside Fire,02/22/2014,02/22/2014,02/22/2014 05:22:21 PM,02/22/2014 05:22:21 PM,02/22/2014 05:24:22 PM,02/22/2014 05:25:55 PM,04/25/2016 01:48:04 PM,04/25/2016 01:48:04 PM,04/25/2016 01:48:04 PM,Fire,02/22/2014 05:29:51 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,Alarm,1,CHIEF,5,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",140530265-B01 +123010085,E03,12099711,Alarms,10/27/2012,10/26/2012,10/27/2012 06:33:54 AM,10/27/2012 06:35:17 AM,10/27/2012 06:35:43 AM,10/27/2012 06:37:16 AM,10/27/2012 06:38:32 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 06:44:41 AM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",123010085-E03 +103200331,RC3,10102682,Medical Incident,11/16/2010,11/16/2010,11/16/2010 06:49:33 PM,11/16/2010 06:51:20 PM,11/16/2010 06:55:40 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 07:06:28 PM,LARKIN ST/GEARY ST,SF,94109,B04,3,1556,1,3,3,true,,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",103200331-RC3 +160392385,KM05,16015692,Medical Incident,02/08/2016,02/08/2016,02/08/2016 03:51:01 PM,02/08/2016 03:51:44 PM,02/08/2016 03:52:06 PM,02/08/2016 03:52:57 PM,02/08/2016 03:58:29 PM,02/08/2016 04:16:19 PM,02/08/2016 04:36:25 PM,Code 2 Transport,02/08/2016 05:25:53 PM,800 Block of MADRID ST,San Francisco,94112,B09,43,6174,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7164521904203, -122.436629330563)",160392385-KM05 +103450405,E44,10110777,Medical Incident,12/11/2010,12/11/2010,12/11/2010 10:44:04 PM,12/11/2010 10:45:04 PM,12/11/2010 10:45:18 PM,12/11/2010 10:46:36 PM,12/11/2010 10:49:57 PM,12/11/2010 11:20:46 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 11:29:11 PM,0 Block of GOULD ST,SF,94124,B10,44,6323,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7220246314295, -122.398063263582)",103450405-E44 +122130311,67,12070805,Medical Incident,07/31/2012,07/31/2012,07/31/2012 06:38:53 PM,07/31/2012 06:42:09 PM,07/31/2012 06:42:32 PM,07/31/2012 06:43:21 PM,04/25/2016 01:57:27 PM,07/31/2012 07:15:33 PM,07/31/2012 07:23:20 PM,Code 2 Transport,07/31/2012 07:45:27 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",122130311-67 +133450277,54,13117068,Medical Incident,12/11/2013,12/11/2013,12/11/2013 02:51:44 PM,12/11/2013 02:53:21 PM,12/11/2013 02:53:34 PM,12/11/2013 02:55:20 PM,12/11/2013 03:24:55 PM,12/11/2013 03:25:39 PM,12/11/2013 03:47:00 PM,Code 2 Transport,12/11/2013 04:13:38 PM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7483773808375, -122.412579951922)",133450277-54 +131130362,RS2,13038256,Structure Fire,04/23/2013,04/23/2013,04/23/2013 09:25:13 PM,04/23/2013 09:25:42 PM,04/23/2013 09:25:50 PM,04/23/2013 09:27:27 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 09:30:10 PM,600 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,false,Alarm,1,RESCUE SQUAD,9,6,9,Bernal Heights,"(37.7389128649709, -122.4155498834)",131130362-RS2 +160420460,79,16016744,Medical Incident,02/11/2016,02/10/2016,02/11/2016 06:22:11 AM,02/11/2016 06:22:49 AM,02/11/2016 06:23:22 AM,02/11/2016 06:23:31 AM,02/11/2016 06:29:09 AM,02/11/2016 06:41:26 AM,02/11/2016 06:50:12 AM,Code 2 Transport,02/11/2016 07:04:27 AM,1200 Block of 22ND AVE,San Francisco,94122,B08,22,7425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7643662403902, -122.480333890078)",160420460-79 +102820407,T07,10089882,Other,10/09/2010,10/09/2010,10/09/2010 10:09:30 PM,10/09/2010 10:10:33 PM,10/09/2010 10:11:17 PM,10/09/2010 10:12:43 PM,10/09/2010 10:15:20 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 10:22:15 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,TRUCK,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",102820407-T07 +133080231,E35,13104749,Medical Incident,11/04/2013,11/04/2013,11/04/2013 02:22:58 PM,11/04/2013 02:27:06 PM,11/04/2013 02:27:17 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/04/2013 02:29:27 PM,100 Block of MONTGOMERY ST,SF,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7904950228094, -122.402353336974)",133080231-E35 +123220282,T03,12107132,Structure Fire,11/17/2012,11/17/2012,11/17/2012 04:44:33 PM,11/17/2012 04:44:33 PM,11/17/2012 04:44:49 PM,11/17/2012 04:46:21 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 04:46:43 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",123220282-T03 +160230366,75,16009028,Medical Incident,01/23/2016,01/22/2016,01/23/2016 02:22:37 AM,01/23/2016 02:24:53 AM,01/23/2016 02:25:28 AM,01/23/2016 02:25:39 AM,01/23/2016 02:32:24 AM,01/23/2016 03:01:01 AM,01/23/2016 03:26:48 AM,Code 2 Transport,01/23/2016 04:27:25 AM,500 Block of DELANCEY ST,San Francisco,94107,B03,8,2134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7846117680538, -122.391012478783)",160230366-75 +102630298,T13,10083306,Structure Fire,09/20/2010,09/20/2010,09/20/2010 06:00:16 PM,09/20/2010 06:02:07 PM,09/20/2010 06:02:34 PM,09/20/2010 06:03:30 PM,09/20/2010 06:07:07 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 06:13:03 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,false,,1,TRUCK,4,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",102630298-T13 +130390124,T15,13013252,Medical Incident,02/08/2013,02/08/2013,02/08/2013 09:58:49 AM,02/08/2013 09:59:09 AM,02/08/2013 09:59:32 AM,02/08/2013 10:00:20 AM,02/08/2013 10:03:25 AM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Other,02/08/2013 10:16:42 AM,1200 Block of PLYMOUTH AVE,SF,94112,B09,15,8474,E,E,3,false,Potentially Life-Threatening,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7246916380621, -122.456361161182)",130390124-T15 +111990301,KM04,11065742,Medical Incident,07/18/2011,07/18/2011,07/18/2011 07:27:31 PM,07/18/2011 07:28:51 PM,07/18/2011 07:29:14 PM,07/18/2011 07:29:52 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,No Merit,07/18/2011 07:34:59 PM,COLE ST/HAIGHT ST,SF,94117,B05,12,4545,3,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",111990301-KM04 +160652271,66,16025984,Medical Incident,03/05/2016,03/05/2016,03/05/2016 04:04:19 PM,03/05/2016 04:05:53 PM,03/05/2016 04:06:16 PM,03/05/2016 04:06:36 PM,03/05/2016 04:19:54 PM,03/05/2016 04:40:20 PM,03/05/2016 04:55:33 PM,Code 2 Transport,03/05/2016 05:32:58 PM,800 Block of BRODERICK ST,San Francisco,94115,B05,21,4242,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",160652271-66 +111840159,E01,11060757,Structure Fire,07/03/2011,07/03/2011,07/03/2011 12:03:28 PM,07/03/2011 12:05:45 PM,07/03/2011 12:06:21 PM,07/03/2011 12:07:54 PM,07/03/2011 12:10:30 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:19:06 PM,300 Block of CHANNEL ST,SF,94107,B03,8,960,3,3,3,true,,1,ENGINE,4,3,10,Mission Bay,"(37.7690011760023, -122.399858835933)",111840159-E01 +121530072,T05,12050554,Citizen Assist / Service Call,06/01/2012,06/01/2012,06/01/2012 08:12:06 AM,06/01/2012 08:13:10 AM,06/01/2012 08:13:27 AM,06/01/2012 08:14:57 AM,06/01/2012 08:17:44 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Fire,06/01/2012 08:24:14 AM,EDDY ST/GOUGH ST,SF,94109,B02,5,3262,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7824770505897, -122.424108201912)",121530072-T05 +131690309,E02,13057476,Structure Fire,06/18/2013,06/18/2013,06/18/2013 05:14:54 PM,06/18/2013 05:14:54 PM,06/18/2013 05:18:24 PM,06/18/2013 05:18:41 PM,06/18/2013 05:23:24 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 06:42:28 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Fire,2,ENGINE,7,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",131690309-E02 +122620308,B08,12086629,Structure Fire,09/18/2012,09/18/2012,09/18/2012 07:16:24 PM,09/18/2012 07:18:10 PM,09/18/2012 07:18:30 PM,09/18/2012 07:19:26 PM,09/18/2012 07:23:49 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 07:45:43 PM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,3,3,false,Fire,1,CHIEF,3,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",122620308-B08 +121270108,66,12042205,Medical Incident,05/06/2012,05/06/2012,05/06/2012 09:23:15 AM,05/06/2012 09:23:47 AM,05/06/2012 09:23:56 AM,05/06/2012 09:24:08 AM,05/06/2012 09:29:28 AM,05/06/2012 09:37:52 AM,05/06/2012 09:44:34 AM,Code 2 Transport,05/06/2012 10:01:32 AM,3800 Block of FOLSOM ST,SF,94110,B06,32,5726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7386445603595, -122.413268253803)",121270108-66 +110210008,89,11006809,Medical Incident,01/21/2011,01/20/2011,01/21/2011 12:47:33 AM,01/21/2011 12:49:48 AM,01/21/2011 12:50:07 AM,01/21/2011 12:50:15 AM,01/21/2011 12:55:00 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,No Merit,01/21/2011 01:00:18 AM,400 Block of HAIGHT ST,SF,94117,B02,6,3524,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",110210008-89 +160493149,77,16019838,Traffic Collision,02/18/2016,02/18/2016,02/18/2016 06:38:03 PM,02/18/2016 06:39:03 PM,02/18/2016 06:39:14 PM,02/18/2016 06:40:37 PM,02/18/2016 06:44:30 PM,02/18/2016 07:08:09 PM,02/18/2016 07:12:21 PM,Code 2 Transport,02/18/2016 07:38:59 PM,HOWARD ST/5TH ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160493149-77 +102450046,T19,10077219,Alarms,09/02/2010,09/01/2010,09/02/2010 02:55:23 AM,09/02/2010 02:56:55 AM,09/02/2010 02:57:31 AM,09/02/2010 03:00:54 AM,09/02/2010 03:03:20 AM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Other,09/02/2010 03:14:05 AM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,,1,TRUCK,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",102450046-T19 +160672039,59,16026801,Medical Incident,03/07/2016,03/07/2016,03/07/2016 03:21:05 PM,03/07/2016 03:21:29 PM,03/07/2016 03:21:51 PM,03/07/2016 03:22:00 PM,03/07/2016 03:27:25 PM,03/07/2016 03:32:59 PM,03/07/2016 03:56:12 PM,Code 2 Transport,03/07/2016 04:38:34 PM,1100 Block of HAMPSHIRE ST,San Francisco,94110,B06,9,5531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Mission,"(37.7537107532788, -122.407300903266)",160672039-59 +131040001,E38,13034767,Citizen Assist / Service Call,04/14/2013,04/13/2013,04/14/2013 12:01:12 AM,04/14/2013 12:02:38 AM,04/14/2013 12:02:58 AM,04/25/2016 01:53:19 PM,04/14/2013 12:05:06 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 12:18:25 AM,2300 Block of WEBSTER ST,SF,94115,B04,38,3465,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7922310760136, -122.432896903267)",131040001-E38 +140320191,AM06,14010844,Medical Incident,02/01/2014,02/01/2014,02/01/2014 01:38:52 PM,02/01/2014 01:39:38 PM,02/01/2014 01:40:00 PM,02/01/2014 01:40:44 PM,02/01/2014 01:47:50 PM,02/01/2014 01:53:56 PM,02/01/2014 02:38:04 PM,Code 2 Transport,02/01/2014 03:10:57 PM,200 Block of HAMILTON ST,SF,94134,B10,42,6342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7279029896841, -122.410205044034)",140320191-AM06 +112560355,E14,11084575,Medical Incident,09/13/2011,09/13/2011,09/13/2011 10:08:16 PM,09/13/2011 10:09:35 PM,09/13/2011 10:09:49 PM,09/13/2011 10:11:27 PM,09/13/2011 10:12:55 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/13/2011 10:28:10 PM,2300 Block of CLEMENT ST,SF,94121,B07,14,7175,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7821058946206, -122.48434315117)",112560355-E14 +131680234,E03,13057089,Medical Incident,06/17/2013,06/17/2013,06/17/2013 04:24:46 PM,06/17/2013 04:25:11 PM,06/17/2013 04:25:39 PM,06/17/2013 04:27:40 PM,06/17/2013 04:31:44 PM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,No Merit,06/17/2013 04:35:55 PM,LEAVENWORTH ST/MCALLISTER ST,SF,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",131680234-E03 +110370104,96,11012137,Medical Incident,02/06/2011,02/05/2011,02/06/2011 07:59:00 AM,02/06/2011 07:59:45 AM,02/06/2011 07:59:54 AM,02/06/2011 08:00:01 AM,02/06/2011 08:01:58 AM,02/06/2011 08:17:20 AM,02/06/2011 08:23:32 AM,Code 2 Transport,02/06/2011 08:35:16 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",110370104-96 +133510371,RS1,13119345,Structure Fire,12/17/2013,12/17/2013,12/17/2013 07:08:31 PM,12/17/2013 07:09:58 PM,12/17/2013 07:10:05 PM,12/17/2013 07:11:06 PM,12/17/2013 07:14:28 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/17/2013 07:17:53 PM,400 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,false,Alarm,1,RESCUE SQUAD,4,3,6,Financial District/South Beach,"(37.7858304240068, -122.392540509434)",133510371-RS1 +113490017,E17,11115674,Outside Fire,12/15/2011,12/14/2011,12/15/2011 01:58:58 AM,12/15/2011 02:01:54 AM,12/15/2011 02:02:56 AM,12/15/2011 02:05:35 AM,12/15/2011 02:06:58 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/15/2011 02:10:15 AM,SHAFTER AV/GRIFFITH ST,SF,94124,B10,17,6647,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.725736373629, -122.38137737673)",113490017-E17 +131840291,88,13062783,Medical Incident,07/03/2013,07/03/2013,07/03/2013 05:15:06 PM,07/03/2013 05:16:13 PM,07/03/2013 05:18:04 PM,07/03/2013 05:18:14 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/03/2013 05:24:01 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Non Life-threatening,1,MEDIC,3,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",131840291-88 +110120338,E15,11004114,Medical Incident,01/12/2011,01/12/2011,01/12/2011 07:47:00 PM,01/12/2011 07:48:58 PM,01/12/2011 07:50:02 PM,01/12/2011 07:51:20 PM,01/12/2011 07:54:39 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Other,01/12/2011 07:59:13 PM,600 Block of EDINBURGH ST,SF,94112,B09,43,6137,3,3,3,true,,1,ENGINE,2,9,11,Excelsior,"(37.7189310862658, -122.433829193551)",110120338-E15 +133620223,93,13123030,Medical Incident,12/28/2013,12/28/2013,12/28/2013 03:10:06 PM,12/28/2013 03:12:46 PM,12/28/2013 03:14:10 PM,12/28/2013 03:16:38 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 03:17:34 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",133620223-93 +160763017,KM11,16030265,Medical Incident,03/16/2016,03/16/2016,03/16/2016 05:31:07 PM,03/16/2016 05:32:29 PM,03/16/2016 05:33:19 PM,03/16/2016 05:33:46 PM,03/16/2016 05:47:45 PM,03/16/2016 05:52:07 PM,03/16/2016 06:01:25 PM,Code 2 Transport,03/16/2016 06:15:10 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.7980228452184, -122.405863212632)",160763017-KM11 +120010012,FB1,12000007,Outside Fire,01/01/2012,12/31/2011,01/01/2012 12:10:49 AM,01/01/2012 12:12:04 AM,01/01/2012 12:12:35 AM,04/25/2016 02:00:52 PM,01/01/2012 12:34:58 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,01/01/2012 02:12:56 AM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,3,3,3,true,Fire,1,SUPPORT,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",120010012-FB1 +102350266,B08,10074013,Water Rescue,08/23/2010,08/23/2010,08/23/2010 03:35:54 PM,08/23/2010 03:37:04 PM,08/23/2010 03:37:32 PM,08/23/2010 03:38:47 PM,08/23/2010 03:44:12 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 03:54:27 PM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,3,3,3,false,,1,CHIEF,4,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",102350266-B08 +160402978,52,16016153,Medical Incident,02/09/2016,02/09/2016,02/09/2016 05:54:59 PM,02/09/2016 05:54:59 PM,02/09/2016 05:55:58 PM,02/09/2016 05:56:04 PM,02/09/2016 06:04:18 PM,02/09/2016 06:19:35 PM,02/09/2016 06:31:25 PM,Code 2 Transport,02/09/2016 06:54:08 PM,SUTTER ST/FILLMORE ST,San Francisco,94115,B04,38,3542,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7860854281172, -122.43327157966)",160402978-52 +120650164,55,12021464,Medical Incident,03/05/2012,03/05/2012,03/05/2012 11:46:14 AM,03/05/2012 11:47:29 AM,03/05/2012 11:47:37 AM,03/05/2012 11:49:50 AM,03/05/2012 11:58:27 AM,03/05/2012 12:08:15 PM,03/05/2012 12:27:22 PM,Code 2 Transport,03/05/2012 12:51:08 PM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",120650164-55 +111890361,E36,11062641,Medical Incident,07/08/2011,07/08/2011,07/08/2011 08:52:11 PM,07/08/2011 08:53:02 PM,07/08/2011 08:53:28 PM,07/08/2011 08:54:57 PM,07/08/2011 08:55:57 PM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Other,07/08/2011 09:16:53 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,E,E,3,true,,1,ENGINE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",111890361-E36 +103410132,E13,10109082,Medical Incident,12/07/2010,12/07/2010,12/07/2010 10:49:45 AM,12/07/2010 10:51:46 AM,12/07/2010 10:53:04 AM,12/07/2010 10:53:52 AM,12/07/2010 10:54:36 AM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Other,12/07/2010 11:13:07 AM,600 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.79618119485, -122.401696308834)",103410132-E13 +123300205,T07,12109740,Alarms,11/25/2012,11/25/2012,11/25/2012 02:31:03 PM,11/25/2012 02:31:03 PM,11/25/2012 02:31:17 PM,11/25/2012 02:32:03 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 02:34:05 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",123300205-T07 +160500931,75,16020011,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:16:38 AM,02/19/2016 09:17:54 AM,02/19/2016 09:18:46 AM,02/19/2016 09:19:32 AM,02/19/2016 09:21:41 AM,02/19/2016 09:39:50 AM,02/19/2016 09:55:37 AM,Code 2 Transport,02/19/2016 10:30:42 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160500931-75 +160762378,57,16030194,Medical Incident,03/16/2016,03/16/2016,03/16/2016 03:18:06 PM,03/16/2016 03:20:16 PM,03/16/2016 03:21:35 PM,03/16/2016 03:22:17 PM,03/16/2016 03:32:20 PM,03/16/2016 03:39:51 PM,03/16/2016 03:52:22 PM,Code 2 Transport,03/16/2016 04:48:36 PM,MARKET ST/OCTAVIA ST,San Francisco,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",160762378-57 +112960084,82,11098112,Medical Incident,10/23/2011,10/22/2011,10/23/2011 04:50:46 AM,10/23/2011 04:50:46 AM,10/23/2011 04:50:46 AM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Patient Declined Transport,10/23/2011 05:00:49 AM,LARKIN ST/GOLDEN GATE AV,SF,94102,B02,3,1644,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",112960084-82 +132540036,E13,13085684,Alarms,09/11/2013,09/10/2013,09/11/2013 03:17:17 AM,09/11/2013 03:19:08 AM,09/11/2013 03:19:19 AM,09/11/2013 03:21:21 AM,09/11/2013 03:22:43 AM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/11/2013 03:33:10 AM,800 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.795777854883, -122.404981817889)",132540036-E13 +140590342,T02,14020032,Alarms,02/28/2014,02/28/2014,02/28/2014 07:41:43 PM,02/28/2014 07:43:04 PM,02/28/2014 07:43:09 PM,02/28/2014 07:52:58 PM,02/28/2014 07:57:24 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Fire,02/28/2014 08:00:57 PM,1200 Block of TAYLOR ST,SF,94108,B01,41,1444,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.7938676881599, -122.41298846914)",140590342-T02 +112340303,E06,11077348,Vehicle Fire,08/22/2011,08/22/2011,08/22/2011 07:38:23 PM,08/22/2011 07:38:58 PM,08/22/2011 07:39:08 PM,08/22/2011 07:40:22 PM,08/22/2011 07:41:10 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Fire,08/22/2011 07:56:37 PM,NOE ST/DUBOCE AV,SF,94114,B05,6,5131,3,3,3,true,,1,ENGINE,1,5,8,Haight Ashbury,"(37.7691783700971, -122.433572207997)",112340303-E06 +131180197,KM09,13039704,Medical Incident,04/28/2013,04/28/2013,04/28/2013 02:00:22 PM,04/28/2013 02:01:02 PM,04/28/2013 02:01:41 PM,04/28/2013 02:02:25 PM,04/28/2013 02:05:47 PM,04/25/2016 01:53:04 PM,04/28/2013 02:36:21 PM,Code 2 Transport,04/28/2013 03:00:12 PM,0 Block of HOFF ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7641819463712, -122.420575720933)",131180197-KM09 +111490154,RC1,11049376,Medical Incident,05/29/2011,05/29/2011,05/29/2011 01:57:07 PM,05/29/2011 01:58:01 PM,05/29/2011 01:58:48 PM,05/29/2011 02:00:02 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 02:03:13 PM,FOLSOM ST/4TH ST,SF,94107,B03,1,2215,E,E,3,true,,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7820242662358, -122.401159719509)",111490154-RC1 +160713792,AM22,16028417,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:34:23 PM,03/11/2016 11:34:23 PM,03/11/2016 11:36:18 PM,03/11/2016 11:36:46 PM,03/11/2016 11:45:12 PM,03/11/2016 11:51:18 PM,03/12/2016 12:04:26 AM,Code 2 Transport,03/12/2016 12:41:45 AM,300 Block of MARKET ST,San Francisco,94105,B03,13,2125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7919873998129, -122.397733553251)",160713792-AM22 +133330285,E03,13113053,Alarms,11/29/2013,11/29/2013,11/29/2013 09:03:50 PM,11/29/2013 09:03:51 PM,11/29/2013 09:04:01 PM,11/29/2013 09:04:46 PM,11/29/2013 09:06:33 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/29/2013 09:07:20 PM,400 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.787297919885, -122.409833940233)",133330285-E03 +120680219,KM05,12022603,Medical Incident,03/08/2012,03/08/2012,03/08/2012 03:21:01 PM,03/08/2012 03:22:00 PM,03/08/2012 03:22:33 PM,03/08/2012 03:23:17 PM,03/08/2012 03:28:46 PM,03/08/2012 03:46:10 PM,03/08/2012 04:00:49 PM,Code 2 Transport,03/08/2012 04:10:13 PM,100 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",120680219-KM05 +131260131,T07,13042512,Medical Incident,05/06/2013,05/06/2013,05/06/2013 09:52:48 AM,05/06/2013 09:54:28 AM,05/06/2013 09:54:51 AM,05/06/2013 09:56:33 AM,05/06/2013 10:00:33 AM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,Other,05/06/2013 10:12:04 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",131260131-T07 +160233039,64,16009283,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:04:28 PM,01/23/2016 07:06:41 PM,01/23/2016 07:06:55 PM,01/23/2016 07:07:15 PM,01/23/2016 07:16:39 PM,01/23/2016 07:38:19 PM,01/23/2016 07:58:58 PM,Code 2 Transport,01/23/2016 08:53:18 PM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160233039-64 +120400142,E07,12013299,Structure Fire,02/09/2012,02/09/2012,02/09/2012 11:53:57 AM,02/09/2012 11:53:57 AM,02/09/2012 11:54:04 AM,02/09/2012 11:55:26 AM,02/09/2012 11:57:27 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 11:57:49 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",120400142-E07 +131230428,KM07,13041655,Medical Incident,05/03/2013,05/03/2013,05/03/2013 11:19:57 PM,05/03/2013 11:22:23 PM,05/03/2013 11:30:54 PM,05/03/2013 11:31:33 PM,05/03/2013 11:39:04 PM,05/03/2013 11:58:16 PM,05/04/2013 12:09:52 AM,Code 2 Transport,05/04/2013 12:29:24 AM,1400 Block of STOCKTON ST,SF,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7987939625895, -122.408928385229)",131230428-KM07 +160230814,52,16009079,Medical Incident,01/23/2016,01/22/2016,01/23/2016 07:49:11 AM,01/23/2016 07:49:11 AM,01/23/2016 07:49:33 AM,01/23/2016 07:49:59 AM,01/23/2016 07:57:57 AM,01/23/2016 08:13:19 AM,01/23/2016 08:18:27 AM,Code 2 Transport,01/23/2016 08:48:46 AM,1100 Block of 9TH AVE,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",160230814-52 +120050282,E03,12001822,Medical Incident,01/05/2012,01/05/2012,01/05/2012 05:43:34 PM,01/05/2012 05:44:47 PM,01/05/2012 05:45:01 PM,01/05/2012 05:46:31 PM,01/05/2012 05:48:26 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 06:02:13 PM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",120050282-E03 +111410142,55,11046825,Medical Incident,05/21/2011,05/21/2011,05/21/2011 11:03:57 AM,05/21/2011 11:06:59 AM,05/21/2011 11:07:50 AM,05/21/2011 11:07:59 AM,05/21/2011 11:13:46 AM,05/21/2011 11:24:10 AM,05/21/2011 11:42:14 AM,Code 2 Transport,05/21/2011 11:58:44 AM,SUMNER ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7766898320397, -122.411014418168)",111410142-55 +102320209,E19,10073029,Alarms,08/20/2010,08/20/2010,08/20/2010 02:23:44 PM,08/20/2010 02:24:57 PM,08/20/2010 02:25:13 PM,04/25/2016 02:09:00 PM,08/20/2010 02:29:05 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 03:03:18 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",102320209-E19 +111570135,B08,11051872,Structure Fire,06/06/2011,06/06/2011,06/06/2011 10:25:25 AM,06/06/2011 10:25:26 AM,06/06/2011 10:25:59 AM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 10:27:19 AM,1700 Block of IRVING ST,SF,94122,B08,22,742,3,3,3,false,,1,CHIEF,4,8,4,Inner Sunset,"(37.7635292893748, -122.476610415663)",111570135-B08 +132820263,53,13096024,Medical Incident,10/09/2013,10/09/2013,10/09/2013 04:07:30 PM,10/09/2013 04:08:08 PM,10/09/2013 04:08:32 PM,10/09/2013 04:08:51 PM,10/09/2013 04:12:36 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/09/2013 05:57:37 PM,BRAZIL AV/MISSION ST,SF,94112,B09,43,6117,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.724682555301, -122.434798413615)",132820263-53 +131350126,65,13045508,Medical Incident,05/15/2013,05/15/2013,05/15/2013 11:03:59 AM,05/15/2013 11:05:55 AM,05/15/2013 11:06:04 AM,05/15/2013 11:06:14 AM,05/15/2013 11:08:53 AM,05/15/2013 11:30:03 AM,05/15/2013 11:49:32 AM,Code 2 Transport,05/15/2013 12:26:30 PM,HAMPSHIRE ST/25TH ST,SF,94110,B10,9,2624,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7513102329158, -122.407139008213)",131350126-65 +110330360,E01,11010968,Medical Incident,02/02/2011,02/02/2011,02/02/2011 08:03:33 PM,02/02/2011 08:04:18 PM,02/02/2011 08:06:06 PM,02/02/2011 08:08:58 PM,02/02/2011 08:10:37 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 08:19:04 PM,400 Block of POST ST,SF,94102,B01,1,1362,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",110330360-E01 +123110126,T19,12103433,Alarms,11/06/2012,11/06/2012,11/06/2012 10:01:41 AM,11/06/2012 10:02:32 AM,11/06/2012 10:02:52 AM,11/06/2012 10:03:22 AM,11/06/2012 10:07:04 AM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/06/2012 10:11:16 AM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,TRUCK,1,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",123110126-T19 +113330131,E03,11110270,Medical Incident,11/29/2011,11/29/2011,11/29/2011 10:39:10 AM,11/29/2011 10:40:19 AM,11/29/2011 10:40:45 AM,11/29/2011 10:43:01 AM,11/29/2011 10:46:14 AM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 10:46:23 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,1,2,true,,1,ENGINE,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",113330131-E03 +122450374,57,12081171,Medical Incident,09/01/2012,09/01/2012,09/01/2012 11:01:32 PM,09/01/2012 11:01:46 PM,09/01/2012 11:02:20 PM,09/01/2012 11:02:24 PM,09/01/2012 11:07:45 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,04/25/2016 01:56:57 PM,0 Block of SAN CARLOS ST,SF,94110,B10,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7622234541197, -122.420240257606)",122450374-57 +160300333,55,16011644,Medical Incident,01/30/2016,01/29/2016,01/30/2016 02:16:51 AM,01/30/2016 02:19:09 AM,01/30/2016 02:19:35 AM,01/30/2016 02:19:46 AM,01/30/2016 02:35:46 AM,01/30/2016 02:46:35 AM,01/30/2016 03:00:03 AM,Code 2 Transport,01/30/2016 03:21:39 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160300333-55 +120100235,T03,12003518,Medical Incident,01/10/2012,01/10/2012,01/10/2012 03:13:06 PM,01/10/2012 03:14:41 PM,01/10/2012 03:15:26 PM,01/10/2012 03:16:00 PM,01/10/2012 03:17:27 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,No Merit,01/10/2012 03:18:45 PM,POLK ST/BUSH ST,SF,94109,B04,3,1636,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",120100235-T03 +120480160,83,12015890,Medical Incident,02/17/2012,02/17/2012,02/17/2012 12:05:01 PM,02/17/2012 12:07:21 PM,02/17/2012 12:09:11 PM,04/25/2016 02:00:06 PM,02/17/2012 12:32:08 PM,02/17/2012 12:49:07 PM,02/17/2012 01:12:51 PM,Code 2 Transport,02/17/2012 01:40:11 PM,100 Block of 9TH ST,SF,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",120480160-83 +131380087,86,13046548,Medical Incident,05/18/2013,05/17/2013,05/18/2013 07:32:53 AM,05/18/2013 07:34:21 AM,05/18/2013 07:39:12 AM,05/18/2013 07:39:46 AM,05/18/2013 07:39:18 AM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,Patient Declined Transport,05/18/2013 08:05:48 AM,100 Block of 10TH AVE,SF,94118,B07,31,7137,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7855549005489, -122.468838120123)",131380087-86 +103060193,85,10097906,Medical Incident,11/02/2010,11/02/2010,11/02/2010 10:40:50 AM,11/02/2010 10:42:36 AM,11/02/2010 10:43:11 AM,11/02/2010 10:43:39 AM,11/02/2010 10:47:26 AM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 10:48:14 AM,NATOMA ST/RUSS ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7792937004634, -122.408808995203)",103060193-85 +160071220,79,16002781,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:27:56 AM,01/07/2016 10:38:09 AM,01/07/2016 10:38:23 AM,01/07/2016 10:38:33 AM,01/07/2016 10:40:15 AM,01/07/2016 10:56:51 AM,01/07/2016 11:11:28 AM,Code 2 Transport,01/07/2016 11:29:01 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160071220-79 +140510132,AM02,14017223,Medical Incident,02/20/2014,02/20/2014,02/20/2014 10:10:34 AM,02/20/2014 10:12:36 AM,02/20/2014 11:08:49 AM,02/20/2014 11:08:49 AM,02/20/2014 11:08:49 AM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Fire,02/20/2014 11:17:44 AM,2200 Block of JACKSON ST,SF,94115,B04,38,3465,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7927300345621, -122.432079396379)",140510132-AM02 +110270390,E25,11009057,Structure Fire,01/27/2011,01/27/2011,01/27/2011 09:51:23 PM,01/27/2011 09:52:25 PM,01/27/2011 09:53:00 PM,01/27/2011 09:54:15 PM,01/27/2011 10:09:01 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 10:24:22 PM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,ENGINE,6,10,10,Bayview Hunters Point,"(37.737593919819, -122.389860953099)",110270390-E25 +131440201,78,13048842,Medical Incident,05/24/2013,05/24/2013,05/24/2013 01:50:28 PM,05/24/2013 01:50:57 PM,05/24/2013 01:51:13 PM,04/25/2016 01:52:38 PM,05/24/2013 01:55:12 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Patient Declined Transport,05/24/2013 02:38:08 PM,MARKET ST/DOLORES ST,SF,94103,B02,6,5127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7690423904807, -122.426858289929)",131440201-78 +123640161,D2,12121783,Structure Fire,12/29/2012,12/29/2012,12/29/2012 12:16:39 PM,12/29/2012 12:18:06 PM,12/29/2012 12:18:49 PM,12/29/2012 12:19:11 PM,12/29/2012 12:21:36 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/29/2012 12:23:01 PM,5TH ST/MISSION ST,SF,94103,B03,1,2246,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7827316349865, -122.406479403956)",123640161-D2 +121140259,55,12037904,Medical Incident,04/23/2012,04/23/2012,04/23/2012 04:59:05 PM,04/23/2012 05:01:11 PM,04/23/2012 05:04:14 PM,04/23/2012 05:06:03 PM,04/23/2012 05:08:31 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 05:11:05 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",121140259-55 +102930134,RS1,10093407,Medical Incident,10/20/2010,10/20/2010,10/20/2010 10:47:32 AM,10/20/2010 10:48:21 AM,10/20/2010 10:49:35 AM,10/20/2010 10:51:52 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 10:52:03 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,,1,RESCUE SQUAD,3,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",102930134-RS1 +131340117,88,13045146,Medical Incident,05/14/2013,05/14/2013,05/14/2013 09:53:50 AM,05/14/2013 09:55:44 AM,05/14/2013 09:56:38 AM,05/14/2013 09:57:03 AM,05/14/2013 10:03:32 AM,05/14/2013 10:29:42 AM,05/14/2013 10:44:55 AM,Code 2 Transport,05/14/2013 11:11:52 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",131340117-88 +133200250,B02,13108782,Alarms,11/16/2013,11/16/2013,11/16/2013 04:36:23 PM,11/16/2013 04:38:55 PM,11/16/2013 04:39:06 PM,11/16/2013 04:39:51 PM,11/16/2013 04:43:07 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 05:19:26 PM,0 Block of GOUGH ST,SF,94102,B02,36,3311,3,3,3,false,Alarm,1,CHIEF,1,2,5,Hayes Valley,"(37.7733930766341, -122.422202193489)",133200250-B02 +112160148,KM10,11071306,Medical Incident,08/04/2011,08/04/2011,08/04/2011 10:16:08 AM,08/04/2011 10:16:42 AM,08/04/2011 10:16:48 AM,08/04/2011 10:19:34 AM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 10:23:57 AM,HEMLOCK ST/POLK ST,SF,94109,B04,3,1641,3,3,3,false,,1,PRIVATE,2,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",112160148-KM10 +122940159,87,12097484,Medical Incident,10/20/2012,10/20/2012,10/20/2012 11:25:10 AM,10/20/2012 11:25:46 AM,10/20/2012 11:25:56 AM,10/20/2012 11:27:24 AM,10/20/2012 11:48:48 AM,10/20/2012 11:50:01 AM,10/20/2012 12:01:06 PM,Code 2 Transport,10/20/2012 12:23:13 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",122940159-87 +103640271,81,10116838,Medical Incident,12/30/2010,12/30/2010,12/30/2010 04:30:40 PM,12/30/2010 04:34:36 PM,12/30/2010 04:35:13 PM,12/30/2010 04:35:22 PM,12/30/2010 04:36:42 PM,12/30/2010 05:04:38 PM,12/30/2010 05:14:26 PM,Other,12/30/2010 06:12:49 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8058923703038, -122.431246520303)",103640271-81 +160282091,66,16011117,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:16:02 PM,01/28/2016 02:16:38 PM,01/28/2016 02:17:02 PM,01/28/2016 02:17:12 PM,01/28/2016 02:23:34 PM,01/28/2016 02:57:58 PM,01/28/2016 03:03:42 PM,Code 2 Transport,01/28/2016 03:59:32 PM,200 Block of HARVARD ST,San Francisco,94134,B09,43,6152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7265286668672, -122.420553597797)",160282091-66 +110810260,E07,11026716,Structure Fire,03/22/2011,03/22/2011,03/22/2011 05:23:51 PM,03/22/2011 05:23:52 PM,03/22/2011 05:24:03 PM,03/22/2011 05:24:36 PM,03/22/2011 05:26:33 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Fire,03/22/2011 05:26:54 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",110810260-E07 +160913325,87,16036225,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:00:47 PM,03/31/2016 08:01:27 PM,03/31/2016 08:01:34 PM,03/31/2016 08:04:56 PM,03/31/2016 08:13:15 PM,03/31/2016 08:31:17 PM,03/31/2016 09:02:17 PM,Code 2 Transport,03/31/2016 09:33:22 PM,0 Block of COMMER CT,San Francisco,94124,B10,17,6622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7325365939267, -122.385005626506)",160913325-87 +160540422,65,16021466,Medical Incident,02/23/2016,02/22/2016,02/23/2016 06:33:48 AM,02/23/2016 06:33:48 AM,02/23/2016 06:34:04 AM,02/23/2016 06:34:10 AM,02/23/2016 06:57:23 AM,02/23/2016 07:10:45 AM,02/23/2016 07:19:59 AM,Code 2 Transport,02/23/2016 07:59:53 AM,LARKIN ST/GROVE ST,San Francisco,94102,B02,13,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160540422-65 +133370347,67,13114367,Medical Incident,12/03/2013,12/03/2013,12/03/2013 09:49:20 PM,12/03/2013 09:49:52 PM,12/03/2013 09:52:22 PM,12/03/2013 09:53:37 PM,12/03/2013 09:54:51 PM,12/03/2013 10:03:30 PM,12/03/2013 10:14:18 PM,Code 2 Transport,12/03/2013 10:43:17 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",133370347-67 +160080635,82,16003115,Medical Incident,01/08/2016,01/07/2016,01/08/2016 07:22:11 AM,01/08/2016 07:23:54 AM,01/08/2016 07:25:02 AM,01/08/2016 07:25:09 AM,01/08/2016 07:38:09 AM,01/08/2016 07:51:53 AM,01/08/2016 08:04:45 AM,Code 3 Transport,01/08/2016 09:03:18 AM,200 Block of THRIFT ST,San Francisco,94112,B09,33,8415,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7174874499717, -122.46143337515)",160080635-82 +110280042,87,11009116,Medical Incident,01/28/2011,01/27/2011,01/28/2011 05:58:17 AM,01/28/2011 06:01:04 AM,01/28/2011 06:02:36 AM,01/28/2011 06:03:21 AM,01/28/2011 06:14:25 AM,01/28/2011 06:33:22 AM,01/28/2011 06:50:58 AM,Code 2 Transport,01/28/2011 07:37:51 AM,2300 Block of 24TH AVE,SF,94116,B08,40,7461,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",110280042-87 +102870306,E01,10091605,Medical Incident,10/14/2010,10/14/2010,10/14/2010 05:21:03 PM,10/14/2010 05:21:39 PM,10/14/2010 05:22:22 PM,04/25/2016 02:08:06 PM,10/14/2010 05:24:08 PM,04/25/2016 02:08:06 PM,04/25/2016 02:08:06 PM,Other,10/14/2010 05:28:26 PM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",102870306-E01 +160860075,AM18,16034030,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:26:43 AM,03/26/2016 12:27:58 AM,03/26/2016 12:28:14 AM,03/26/2016 12:28:54 AM,03/26/2016 12:30:38 AM,03/26/2016 12:34:46 AM,03/26/2016 12:43:19 AM,Code 2 Transport,03/26/2016 01:20:15 AM,19TH ST/MISSION ST,San Francisco,94110,B06,7,5433,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",160860075-AM18 +121410031,E03,12046715,Medical Incident,05/20/2012,05/19/2012,05/20/2012 02:10:50 AM,05/20/2012 02:13:41 AM,05/20/2012 02:14:02 AM,05/20/2012 02:16:18 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 02:25:25 AM,500 Block of MASON ST,SF,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7885578121115, -122.410081316773)",121410031-E03 +160683885,AM16,16027291,Medical Incident,03/08/2016,03/08/2016,03/08/2016 11:47:55 PM,03/08/2016 11:49:49 PM,03/08/2016 11:50:27 PM,03/08/2016 11:50:58 PM,03/08/2016 11:58:33 PM,03/09/2016 12:08:53 AM,03/09/2016 12:28:44 AM,Code 2 Transport,03/09/2016 12:59:39 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160683885-AM16 +110300134,KM01,11009809,Medical Incident,01/30/2011,01/30/2011,01/30/2011 09:28:08 AM,01/30/2011 09:30:25 AM,01/30/2011 09:30:44 AM,01/30/2011 09:31:26 AM,01/30/2011 09:34:36 AM,01/30/2011 09:43:54 AM,01/30/2011 09:50:58 AM,Code 2 Transport,01/30/2011 10:25:05 AM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,PRIVATE,2,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",110300134-KM01 +131170323,KM07,13039483,Medical Incident,04/27/2013,04/27/2013,04/27/2013 08:08:09 PM,04/27/2013 08:08:51 PM,04/27/2013 08:10:41 PM,04/27/2013 08:11:10 PM,04/27/2013 08:17:54 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/27/2013 08:19:06 PM,1700 Block of POLK ST,SF,94109,B04,41,3124,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7928118444511, -122.421209766636)",131170323-KM07 +123060378,E08,12101826,Structure Fire,11/01/2012,11/01/2012,11/01/2012 10:12:34 PM,11/01/2012 10:12:34 PM,11/01/2012 10:15:57 PM,11/01/2012 10:16:56 PM,11/01/2012 10:19:25 PM,04/25/2016 01:56:00 PM,04/25/2016 01:56:00 PM,Other,11/01/2012 10:19:28 PM,6TH ST/HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",123060378-E08 +112590047,86,11085285,Medical Incident,09/16/2011,09/15/2011,09/16/2011 04:43:44 AM,09/16/2011 04:44:37 AM,09/16/2011 04:44:48 AM,09/16/2011 04:46:02 AM,09/16/2011 04:51:08 AM,09/16/2011 04:52:41 AM,09/16/2011 05:09:12 AM,Code 2 Transport,09/16/2011 05:30:43 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",112590047-86 +160493574,76,16019884,Medical Incident,02/18/2016,02/18/2016,02/18/2016 09:04:36 PM,02/18/2016 09:07:36 PM,02/18/2016 09:07:55 PM,02/18/2016 09:08:06 PM,02/18/2016 09:14:41 PM,02/18/2016 09:26:32 PM,02/18/2016 09:33:19 PM,Code 2 Transport,02/18/2016 09:53:24 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160493574-76 +131050403,T05,13035459,Alarms,04/15/2013,04/15/2013,04/15/2013 10:26:05 PM,04/15/2013 10:27:23 PM,04/15/2013 10:27:40 PM,04/15/2013 10:28:44 PM,04/15/2013 10:31:59 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/15/2013 10:33:57 PM,1600 Block of HAYES ST,SF,94117,B05,21,4351,3,3,3,false,Alarm,1,TRUCK,2,5,5,Lone Mountain/USF,"(37.7741999233828, -122.443568815049)",131050403-T05 +130380308,T12,13013097,Structure Fire,02/07/2013,02/07/2013,02/07/2013 07:50:17 PM,02/07/2013 07:52:46 PM,02/07/2013 07:53:03 PM,02/07/2013 07:55:20 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Other,02/07/2013 07:58:23 PM,14TH ST/BUENA VISTA TR,SF,94117,B05,21,5135,3,3,3,false,Alarm,1,TRUCK,8,5,8,Castro/Upper Market,"(37.7671585552677, -122.438199543644)",130380308-T12 +160641399,61,16025462,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:48:51 AM,03/04/2016 10:50:02 AM,03/04/2016 10:50:18 AM,03/04/2016 10:50:36 AM,03/04/2016 11:04:45 AM,03/04/2016 11:20:57 AM,03/04/2016 11:31:13 AM,Code 2 Transport,03/04/2016 12:15:14 PM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",160641399-61 +132100044,E36,13070903,Alarms,07/29/2013,07/28/2013,07/29/2013 02:31:49 AM,07/29/2013 02:33:15 AM,07/29/2013 02:33:30 AM,07/29/2013 02:35:46 AM,07/29/2013 02:38:02 AM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/29/2013 02:44:18 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7739392650435, -122.412947871011)",132100044-E36 +133010168,E11,13102271,Medical Incident,10/28/2013,10/28/2013,10/28/2013 11:14:52 AM,10/28/2013 11:16:27 AM,10/28/2013 11:17:09 AM,10/28/2013 11:17:40 AM,10/28/2013 11:19:40 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 11:31:01 AM,24TH ST/LILAC ST,SF,94110,B06,11,5525,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7522713668808, -122.41787692136)",133010168-E11 +121560217,89,12051669,Medical Incident,06/04/2012,06/04/2012,06/04/2012 02:25:56 PM,06/04/2012 02:27:22 PM,06/04/2012 02:27:35 PM,06/04/2012 02:28:04 PM,06/04/2012 02:42:27 PM,06/04/2012 02:46:50 PM,06/04/2012 02:50:30 PM,Code 2 Transport,06/04/2012 03:22:16 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",121560217-89 +160093563,71,16003832,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:24:20 PM,01/09/2016 10:25:18 PM,01/09/2016 10:25:51 PM,01/09/2016 10:25:57 PM,01/09/2016 10:33:47 PM,01/09/2016 10:43:59 PM,01/09/2016 10:53:33 PM,Code 2 Transport,01/09/2016 11:42:00 PM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7720141510333, -122.419088601412)",160093563-71 +133430278,79,13116398,Medical Incident,12/09/2013,12/09/2013,12/09/2013 04:48:31 PM,12/09/2013 04:48:35 PM,12/09/2013 04:54:23 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/09/2013 04:59:25 PM,2000 Block of SUNNYDALE AVE,SF,94134,B09,43,624,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",133430278-79 +110770381,AM10,11025512,Medical Incident,03/18/2011,03/18/2011,03/18/2011 11:05:43 PM,03/18/2011 11:08:55 PM,03/18/2011 11:09:10 PM,03/18/2011 11:10:17 PM,03/18/2011 11:13:52 PM,03/18/2011 11:35:10 PM,03/18/2011 11:41:38 PM,Code 2 Transport,03/19/2011 12:10:25 AM,300 Block of JONES ST,SF,94102,B03,3,1461,2,2,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",110770381-AM10 +110740381,79,11024505,Traffic Collision,03/15/2011,03/15/2011,03/15/2011 09:08:08 PM,03/15/2011 09:08:40 PM,03/15/2011 09:08:52 PM,03/15/2011 09:10:34 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Other,03/15/2011 09:16:03 PM,GREENWICH ST/FRANKLIN ST,SF,94123,B04,16,3234,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.8002062474722, -122.426001248596)",110740381-79 +160831817,81,16032943,Medical Incident,03/23/2016,03/23/2016,03/23/2016 12:36:21 PM,03/23/2016 12:38:12 PM,03/23/2016 12:39:27 PM,03/23/2016 12:40:08 PM,03/23/2016 12:53:39 PM,03/23/2016 01:24:28 PM,03/23/2016 01:28:44 PM,Code 2 Transport,03/23/2016 02:13:59 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160831817-81 +113490052,E44,11115707,Medical Incident,12/15/2011,12/14/2011,12/15/2011 06:51:42 AM,12/15/2011 06:53:42 AM,12/15/2011 06:54:03 AM,12/15/2011 06:55:28 AM,12/15/2011 06:58:34 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/15/2011 07:08:50 AM,200 Block of RAYMOND AVE,SF,94134,B09,44,6264,3,3,3,true,,1,ENGINE,2,9,10,Visitacion Valley,"(37.713564106848, -122.408103072889)",113490052-E44 +122620045,E26,12086401,Medical Incident,09/18/2012,09/17/2012,09/18/2012 06:30:08 AM,09/18/2012 06:30:54 AM,09/18/2012 06:31:15 AM,09/18/2012 06:32:53 AM,09/18/2012 06:36:26 AM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 06:48:04 AM,0 Block of CAMEO WAY,SF,94131,B06,26,8167,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7449677773765, -122.443033718594)",122620045-E26 +140370311,E21,14012624,Administrative,02/06/2014,02/06/2014,02/06/2014 07:12:35 PM,02/06/2014 07:12:37 PM,02/06/2014 07:12:55 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 07:16:21 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",140370311-E21 +103310115,82,10105912,Medical Incident,11/27/2010,11/27/2010,11/27/2010 09:46:56 AM,11/27/2010 09:49:24 AM,11/27/2010 09:49:33 AM,11/27/2010 09:50:32 AM,11/27/2010 09:53:08 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Against Medical Advice,11/27/2010 10:42:53 AM,1300 Block of BAY ST,SF,94123,B04,16,3342,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8035682435218, -122.42921167398)",103310115-82 +120690168,93,12022878,Medical Incident,03/09/2012,03/09/2012,03/09/2012 12:30:39 PM,03/09/2012 12:32:06 PM,03/09/2012 12:32:33 PM,03/09/2012 12:33:20 PM,04/25/2016 01:59:45 PM,03/09/2012 12:51:28 PM,03/09/2012 01:05:53 PM,Code 2 Transport,03/09/2012 01:32:29 PM,0 Block of DIVISION ST,SF,94103,B03,29,2326,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7698442258534, -122.403713555238)",120690168-93 +121940135,B03,12064514,Alarms,07/12/2012,07/12/2012,07/12/2012 10:24:41 AM,07/12/2012 10:25:44 AM,07/12/2012 10:25:58 AM,07/12/2012 10:26:11 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Fire,07/12/2012 10:31:47 AM,200 Block of HARRISON ST,SF,94105,B03,35,2123,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",121940135-B03 +132660251,KM06,13090300,Medical Incident,09/23/2013,09/23/2013,09/23/2013 02:46:52 PM,09/23/2013 02:47:47 PM,09/23/2013 02:48:42 PM,09/23/2013 02:49:47 PM,09/23/2013 02:55:36 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Patient Declined Transport,09/23/2013 04:02:45 PM,JEFFERSON ST/JONES ST,SF,94133,B01,28,945,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8080133240409, -122.417445939002)",132660251-KM06 +120940243,E21,12031204,Alarms,04/03/2012,04/03/2012,04/03/2012 04:40:36 PM,04/03/2012 04:42:39 PM,04/03/2012 04:43:04 PM,04/03/2012 04:43:45 PM,04/03/2012 04:46:56 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 04:52:30 PM,0 Block of PIERCE ST,SF,94117,B05,6,3635,3,3,3,false,Alarm,1,ENGINE,2,5,8,Haight Ashbury,"(37.7702879508133, -122.433383131974)",120940243-E21 +130910095,E05,13030368,Medical Incident,04/01/2013,04/01/2013,04/01/2013 08:44:28 AM,04/01/2013 08:46:25 AM,04/01/2013 08:54:44 AM,04/01/2013 08:55:29 AM,04/01/2013 08:58:04 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 09:02:19 AM,1300 Block of PIERCE ST,SF,94115,B05,5,3647,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",130910095-E05 +160052180,62,16002043,Medical Incident,01/05/2016,01/05/2016,01/05/2016 03:12:21 PM,01/05/2016 03:12:21 PM,01/05/2016 03:13:46 PM,01/05/2016 03:14:29 PM,01/05/2016 03:25:06 PM,01/05/2016 04:18:02 PM,01/05/2016 04:46:46 PM,Code 2 Transport,01/05/2016 05:05:28 PM,2100 Block of QUESADA AVE,San Francisco,94124,B10,42,6431,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7380740515754, -122.399915418902)",160052180-62 +160042603,56,16001688,Medical Incident,01/04/2016,01/04/2016,01/04/2016 04:43:45 PM,01/04/2016 04:44:43 PM,01/04/2016 04:46:46 PM,01/04/2016 04:47:14 PM,01/04/2016 04:53:07 PM,01/04/2016 05:05:01 PM,01/04/2016 05:11:01 PM,Code 2 Transport,01/04/2016 05:34:05 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160042603-56 +110440351,KM15,11014773,Medical Incident,02/13/2011,02/13/2011,02/13/2011 10:55:00 PM,02/13/2011 11:00:27 PM,02/13/2011 11:01:08 PM,02/13/2011 11:04:25 PM,02/13/2011 11:05:36 PM,02/13/2011 11:32:23 PM,02/13/2011 11:46:24 PM,Code 2 Transport,02/14/2011 12:23:13 AM,2200 Block of 32ND AVE,SF,94116,B08,18,7545,3,3,3,false,,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7452376223933, -122.489745479005)",110440351-KM15 +122830266,T16,12093720,Structure Fire,10/09/2012,10/09/2012,10/09/2012 05:28:16 PM,10/09/2012 05:28:16 PM,10/09/2012 05:29:12 PM,10/09/2012 05:30:16 PM,10/09/2012 05:31:53 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 05:32:03 PM,WEBSTER ST/LOMBARD ST,SF,94123,B04,16,3461,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8000515477468, -122.434404699853)",122830266-T16 +160811919,87,16032192,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:40:35 PM,03/21/2016 01:41:16 PM,03/21/2016 01:41:45 PM,03/21/2016 01:41:56 PM,03/21/2016 01:46:50 PM,03/21/2016 02:10:42 PM,03/21/2016 02:31:55 PM,Code 2 Transport,03/21/2016 02:47:53 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7700546614555, -122.446128431298)",160811919-87 +102950195,KM02,10094093,Medical Incident,10/22/2010,10/22/2010,10/22/2010 12:32:53 PM,10/22/2010 12:33:08 PM,10/22/2010 12:33:48 PM,04/25/2016 02:07:59 PM,10/22/2010 12:39:13 PM,10/22/2010 12:53:47 PM,10/22/2010 01:13:47 PM,Code 2 Transport,10/22/2010 01:35:44 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",102950195-KM02 +130730121,54,13024297,Medical Incident,03/14/2013,03/14/2013,03/14/2013 10:02:37 AM,03/14/2013 10:03:06 AM,03/14/2013 10:03:41 AM,03/14/2013 10:03:59 AM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Medical Examiner,03/14/2013 10:12:55 AM,400 Block of BRIGHT ST,SF,94132,B09,33,8414,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7189103889724, -122.463482098745)",130730121-54 +140450155,T08,14015291,Vehicle Fire,02/14/2014,02/14/2014,02/14/2014 12:02:53 PM,02/14/2014 12:04:14 PM,02/14/2014 12:04:21 PM,02/14/2014 12:05:28 PM,02/14/2014 12:10:10 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 12:20:45 PM,17TH ST/TEXAS ST,SF,94107,B03,29,2431,3,3,3,false,Fire,1,TRUCK,2,3,10,Potrero Hill,"(37.7651886328119, -122.395806777829)",140450155-T08 +132850271,E08,13097023,Medical Incident,10/12/2013,10/12/2013,10/12/2013 05:51:44 PM,10/12/2013 05:52:46 PM,10/12/2013 05:53:34 PM,10/12/2013 05:55:11 PM,10/12/2013 05:57:07 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/12/2013 06:03:13 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132850271-E08 +130890248,T02,13029814,Water Rescue,03/30/2013,03/30/2013,03/30/2013 04:59:28 PM,03/30/2013 05:01:09 PM,03/30/2013 05:03:06 PM,03/30/2013 05:04:40 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 05:14:00 PM,CALL BOX: PIER 43,SF,94133,B01,28,943,3,E,3,false,Fire,1,TRUCK,11,1,3,North Beach,"(37.8086727647211, -122.412586999257)",130890248-T02 +132410068,E42,13081197,Traffic Collision,08/29/2013,08/28/2013,08/29/2013 07:53:27 AM,08/29/2013 07:53:51 AM,08/29/2013 07:55:07 AM,08/29/2013 07:56:44 AM,08/29/2013 07:59:05 AM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,Other,08/29/2013 08:13:25 AM,SILVER AV/QUESADA AV,SF,94124,B10,42,6445,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7368637455841, -122.397665695063)",132410068-E42 +102350214,RC1,10073970,Medical Incident,08/23/2010,08/23/2010,08/23/2010 01:53:53 PM,08/23/2010 01:54:37 PM,08/23/2010 01:54:51 PM,08/23/2010 01:57:15 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 02:01:43 PM,200 Block of 11TH ST,SF,94103,B02,36,5114,3,E,3,true,,1,RESCUE CAPTAIN,3,2,6,Mission,"(37.7719723687579, -122.414258651144)",102350214-RC1 +112500187,RS1,11082466,Medical Incident,09/07/2011,09/07/2011,09/07/2011 01:28:03 PM,09/07/2011 01:28:39 PM,09/07/2011 01:29:06 PM,09/07/2011 01:30:20 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 01:30:40 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,RESCUE SQUAD,3,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",112500187-RS1 +113570299,E23,11118684,Traffic Collision,12/23/2011,12/23/2011,12/23/2011 02:57:24 PM,12/23/2011 02:57:25 PM,12/23/2011 02:59:22 PM,12/23/2011 03:05:49 PM,12/23/2011 03:08:08 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 03:21:08 PM,SUNSET BL/KIRKHAM ST,SF,94122,B08,18,7563,3,3,3,false,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7590044983228, -122.495617223674)",113570299-E23 +132410237,92,13081335,Medical Incident,08/29/2013,08/29/2013,08/29/2013 03:46:35 PM,08/29/2013 03:49:15 PM,08/29/2013 03:49:39 PM,08/29/2013 03:50:15 PM,08/29/2013 04:15:33 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Patient Declined Transport,08/29/2013 05:04:09 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132410237-92 +140850232,E17,14028669,Alarms,03/26/2014,03/26/2014,03/26/2014 02:43:57 PM,03/26/2014 02:44:05 PM,03/26/2014 02:44:14 PM,03/26/2014 02:45:48 PM,03/26/2014 02:48:02 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Fire,03/26/2014 02:55:21 PM,1500 Block of NEWCOMB AV,SAN FRANCISCO,94124,B10,17,6515,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7346630758042, -122.388898246024)",140850232-E17 +122950180,66,12097848,Medical Incident,10/21/2012,10/21/2012,10/21/2012 01:36:58 PM,10/21/2012 01:38:13 PM,10/21/2012 01:38:21 PM,10/21/2012 01:38:37 PM,10/21/2012 01:42:52 PM,10/21/2012 01:52:57 PM,10/21/2012 02:03:23 PM,Code 2 Transport,10/21/2012 02:35:53 PM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7650413541786, -122.420746190588)",122950180-66 +111250082,E03,11041283,Medical Incident,05/05/2011,05/05/2011,05/05/2011 08:36:58 AM,05/05/2011 08:38:16 AM,05/05/2011 08:39:37 AM,05/05/2011 08:39:54 AM,05/05/2011 08:42:07 AM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 08:45:40 AM,200 Block of HYDE ST,SF,94102,B02,3,1554,E,E,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",111250082-E03 +160500050,52,16019927,Medical Incident,02/19/2016,02/18/2016,02/19/2016 12:23:41 AM,02/19/2016 12:25:52 AM,02/19/2016 12:29:00 AM,02/19/2016 12:29:29 AM,02/19/2016 12:39:00 AM,02/19/2016 12:58:47 AM,02/19/2016 01:16:27 AM,Code 2 Transport,02/19/2016 02:09:27 AM,100 Block of BRUSSELS ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7301350537196, -122.406759694209)",160500050-52 +160732633,71,16029086,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:51:45 PM,03/13/2016 07:53:27 PM,03/13/2016 07:53:35 PM,03/13/2016 07:53:40 PM,03/13/2016 08:09:24 PM,03/13/2016 08:21:54 PM,03/13/2016 08:42:48 PM,Code 2 Transport,03/13/2016 09:28:52 PM,700 Block of GROVE ST,San Francisco,94102,B02,5,3424,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7770920707523, -122.429212775945)",160732633-71 +111510226,KM11,11050032,Medical Incident,05/31/2011,05/31/2011,05/31/2011 04:03:42 PM,05/31/2011 04:05:02 PM,05/31/2011 04:05:34 PM,05/31/2011 04:05:42 PM,05/31/2011 04:07:26 PM,05/31/2011 04:23:29 PM,05/31/2011 04:42:24 PM,Code 2 Transport,05/31/2011 05:07:40 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",111510226-KM11 +123560241,E12,12119194,Medical Incident,12/21/2012,12/21/2012,12/21/2012 03:09:00 PM,12/21/2012 03:10:34 PM,12/21/2012 03:12:08 PM,12/21/2012 03:12:54 PM,12/21/2012 03:15:16 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 03:27:06 PM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",123560241-E12 +160722677,77,16028708,Traffic Collision,03/12/2016,03/12/2016,03/12/2016 06:18:22 PM,03/12/2016 06:18:22 PM,03/12/2016 06:19:52 PM,03/12/2016 06:20:12 PM,03/12/2016 06:29:17 PM,03/12/2016 06:41:07 PM,03/12/2016 07:00:23 PM,Code 2 Transport,03/12/2016 07:30:32 PM,22ND ST/HARRISON ST,San Francisco,94110,B03,8,2151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,6,9,Mission,"(37.7558325113453, -122.412197892408)",160722677-77 +121200277,T10,12039916,Citizen Assist / Service Call,04/29/2012,04/29/2012,04/29/2012 05:12:46 PM,04/29/2012 05:15:08 PM,04/29/2012 05:16:16 PM,04/29/2012 05:17:14 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 05:18:42 PM,1600 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,true,Alarm,1,TRUCK,1,5,5,Japantown,"(37.7847687027421, -122.439893519511)",121200277-T10 +121490305,E03,12049568,Medical Incident,05/28/2012,05/28/2012,05/28/2012 10:09:28 PM,05/28/2012 10:12:49 PM,05/28/2012 10:14:48 PM,05/28/2012 10:15:46 PM,05/28/2012 10:18:26 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 10:57:49 PM,1800 Block of PINE ST,SF,94109,B04,38,3325,2,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",121490305-E03 +160520555,AM20,16020696,Medical Incident,02/21/2016,02/20/2016,02/21/2016 04:09:05 AM,02/21/2016 04:16:33 AM,02/21/2016 04:17:37 AM,02/21/2016 04:18:42 AM,02/21/2016 04:28:56 AM,02/21/2016 04:54:32 AM,02/21/2016 05:04:48 AM,Code 2 Transport,02/21/2016 05:30:32 AM,PAUL AV/GOULD ST,San Francisco,94124,B10,44,6323,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7228742778896, -122.39766813553)",160520555-AM20 +132280017,T03,13076812,Structure Fire,08/16/2013,08/15/2013,08/16/2013 01:17:13 AM,08/16/2013 01:23:54 AM,08/16/2013 01:24:04 AM,08/16/2013 01:25:36 AM,08/16/2013 01:27:35 AM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Other,08/16/2013 01:33:53 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",132280017-T03 +133190368,E42,13108541,Medical Incident,11/15/2013,11/15/2013,11/15/2013 09:59:57 PM,11/15/2013 10:02:54 PM,11/15/2013 10:03:04 PM,11/15/2013 10:04:34 PM,11/15/2013 10:06:34 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/15/2013 10:14:54 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",133190368-E42 +111060093,73,11035006,Medical Incident,04/16/2011,04/16/2011,04/16/2011 08:14:16 AM,04/16/2011 08:15:08 AM,04/16/2011 08:15:19 AM,04/16/2011 08:15:34 AM,04/16/2011 08:19:58 AM,04/16/2011 08:37:52 AM,04/16/2011 08:54:15 AM,Code 2 Transport,04/16/2011 09:17:01 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",111060093-73 +121720371,RS1,12057281,Medical Incident,06/20/2012,06/20/2012,06/20/2012 10:58:09 PM,06/20/2012 10:59:32 PM,06/20/2012 11:00:20 PM,06/20/2012 11:00:36 PM,06/20/2012 11:03:20 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 11:12:51 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,3,3,false,Non Life-threatening,1,RESCUE SQUAD,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",121720371-RS1 +131740016,93,13058897,Medical Incident,06/23/2013,06/22/2013,06/23/2013 01:04:52 AM,06/23/2013 01:05:16 AM,06/23/2013 01:06:01 AM,06/23/2013 01:06:24 AM,06/23/2013 01:10:42 AM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Against Medical Advice,06/23/2013 01:40:30 AM,1800 Block of WALLER ST,SF,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",131740016-93 +110470146,E03,11015501,Medical Incident,02/16/2011,02/16/2011,02/16/2011 10:24:14 AM,02/16/2011 10:27:12 AM,02/16/2011 10:28:12 AM,02/16/2011 10:28:54 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 10:29:16 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,true,,1,ENGINE,4,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",110470146-E03 +102390381,64,10075548,Medical Incident,08/27/2010,08/27/2010,08/27/2010 11:15:29 PM,08/27/2010 11:16:12 PM,08/27/2010 11:16:56 PM,08/27/2010 11:17:37 PM,08/27/2010 11:22:33 PM,08/27/2010 11:42:22 PM,08/27/2010 11:58:18 PM,Code 2 Transport,08/28/2010 12:18:57 AM,1400 Block of SHAFTER AVE,SF,94124,B10,17,6571,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294942313003, -122.387879447239)",102390381-64 +160192234,86,16007689,Medical Incident,01/19/2016,01/19/2016,01/19/2016 03:06:45 PM,01/19/2016 03:06:45 PM,01/19/2016 03:07:14 PM,01/19/2016 03:07:25 PM,01/19/2016 03:22:12 PM,01/19/2016 03:36:17 PM,01/19/2016 03:48:23 PM,Code 2 Transport,01/19/2016 04:27:57 PM,0 Block of OTTAWA AVE,San Francisco,94112,B09,33,8345,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7149003593012, -122.445241796834)",160192234-86 +160900794,67,16035629,Medical Incident,03/30/2016,03/30/2016,03/30/2016 08:23:35 AM,03/30/2016 08:24:58 AM,03/30/2016 08:25:39 AM,03/30/2016 08:25:48 AM,03/30/2016 08:36:08 AM,03/30/2016 09:05:13 AM,03/30/2016 09:34:48 AM,Code 3 Transport,03/30/2016 10:46:55 AM,2400 Block of POST ST,San Francisco,94115,B05,10,4235,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7840561914976, -122.442179800386)",160900794-67 +133050334,T13,13103748,Citizen Assist / Service Call,11/01/2013,11/01/2013,11/01/2013 04:28:13 PM,11/01/2013 04:29:28 PM,11/01/2013 04:29:52 PM,11/01/2013 04:31:11 PM,11/01/2013 04:35:03 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/01/2013 04:38:51 PM,KEARNY ST/POST ST,SF,94104,B01,13,1236,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7888944287124, -122.403660676968)",133050334-T13 +132590052,T19,13087507,Citizen Assist / Service Call,09/16/2013,09/15/2013,09/16/2013 07:07:36 AM,09/16/2013 07:08:50 AM,09/16/2013 07:09:27 AM,09/16/2013 07:11:31 AM,09/16/2013 07:14:51 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/16/2013 07:18:04 AM,100 Block of MIDDLEFIELD DR,SF,94132,B08,19,8742,3,3,3,false,Alarm,1,TRUCK,1,8,7,Sunset/Parkside,"(37.731561624535, -122.4861577036)",132590052-T19 +132830160,E19,13096280,Structure Fire,10/10/2013,10/10/2013,10/10/2013 11:37:45 AM,10/10/2013 11:37:45 AM,10/10/2013 11:38:00 AM,10/10/2013 11:39:37 AM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/10/2013 11:39:46 AM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",132830160-E19 +112320045,E10,11076477,Medical Incident,08/20/2011,08/19/2011,08/20/2011 04:23:11 AM,08/20/2011 04:24:48 AM,08/20/2011 04:25:53 AM,08/20/2011 04:27:39 AM,08/20/2011 04:31:24 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 04:34:56 AM,2500 Block of PIERCE ST,SF,94115,B04,38,3653,3,3,3,true,,1,ENGINE,2,4,2,Pacific Heights,"(37.7933971056586, -122.438047227042)",112320045-E10 +112680198,T12,11088589,Structure Fire,09/25/2011,09/25/2011,09/25/2011 01:01:43 PM,09/25/2011 01:01:43 PM,09/25/2011 01:01:48 PM,09/25/2011 01:02:32 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 01:04:56 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,false,,1,TRUCK,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",112680198-T12 +160151523,KM08,16005968,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:49:21 AM,01/15/2016 11:49:33 AM,01/15/2016 11:50:02 AM,01/15/2016 11:50:43 AM,01/15/2016 11:54:33 AM,01/15/2016 12:09:25 PM,01/15/2016 12:22:46 PM,Code 2 Transport,01/15/2016 01:09:25 PM,1100 Block of POWELL ST,San Francisco,94108,B01,2,1354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7951679550596, -122.409878515576)",160151523-KM08 +130410279,77,13014112,Medical Incident,02/10/2013,02/10/2013,02/10/2013 06:53:12 PM,02/10/2013 06:56:22 PM,02/10/2013 06:56:55 PM,02/10/2013 06:59:36 PM,02/10/2013 07:07:56 PM,02/10/2013 07:24:56 PM,02/10/2013 07:35:11 PM,Code 2 Transport,02/10/2013 07:51:54 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,1,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",130410279-77 +111330206,E43,11044085,Medical Incident,05/13/2011,05/13/2011,05/13/2011 02:53:51 PM,05/13/2011 02:55:51 PM,05/13/2011 02:56:18 PM,05/13/2011 02:58:37 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 03:05:31 PM,900 Block of GENEVA AVE,SF,94112,B09,43,6175,3,3,3,true,,1,ENGINE,3,9,11,Excelsior,"(37.7159411510558, -122.439784371506)",111330206-E43 +132990315,E07,13101705,Medical Incident,10/26/2013,10/26/2013,10/26/2013 06:53:56 PM,10/26/2013 06:55:20 PM,10/26/2013 06:55:55 PM,10/26/2013 06:56:45 PM,10/26/2013 07:00:36 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/26/2013 07:13:27 PM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7526019706042, -122.411426024108)",132990315-E07 +112640024,E01,11087067,Alarms,09/21/2011,09/20/2011,09/21/2011 01:48:35 AM,09/21/2011 01:50:09 AM,09/21/2011 01:50:37 AM,09/21/2011 01:52:10 AM,09/21/2011 01:55:12 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/21/2011 02:03:24 AM,1100 Block of MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7785895740312, -122.411626152299)",112640024-E01 +111750171,E07,11057670,Medical Incident,06/24/2011,06/24/2011,06/24/2011 12:11:47 PM,06/24/2011 12:13:28 PM,06/24/2011 12:14:57 PM,06/24/2011 12:16:28 PM,06/24/2011 12:19:57 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Other,06/24/2011 12:29:13 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",111750171-E07 +123150007,AM22,12104686,Medical Incident,11/10/2012,11/09/2012,11/10/2012 12:26:11 AM,11/10/2012 12:26:37 AM,11/10/2012 12:27:48 AM,11/10/2012 12:29:02 AM,11/10/2012 12:33:26 AM,11/10/2012 12:45:02 AM,11/10/2012 01:07:12 AM,Code 2 Transport,11/10/2012 01:35:41 AM,MONTGOMERY ST/SUTTER ST,SF,94104,B01,13,1164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7900390948551, -122.40218964437)",123150007-AM22 +132590265,E01,13087677,Medical Incident,09/16/2013,09/16/2013,09/16/2013 03:24:29 PM,09/16/2013 03:26:03 PM,09/16/2013 03:27:55 PM,09/16/2013 03:29:27 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Other,09/16/2013 03:31:44 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,E,3,true,Potentially Life-Threatening,1,ENGINE,5,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",132590265-E01 +160161875,63,16006436,Medical Incident,01/16/2016,01/16/2016,01/16/2016 01:50:30 PM,01/16/2016 01:51:44 PM,01/16/2016 01:53:51 PM,01/16/2016 01:54:02 PM,01/16/2016 02:01:24 PM,01/16/2016 02:11:26 PM,01/16/2016 02:17:13 PM,Code 3 Transport,01/16/2016 02:22:18 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160161875-63 +133500272,65,13118882,Medical Incident,12/16/2013,12/16/2013,12/16/2013 03:02:52 PM,12/16/2013 03:04:03 PM,12/16/2013 03:15:24 PM,04/25/2016 01:49:14 PM,12/16/2013 03:15:39 PM,12/16/2013 03:26:34 PM,12/16/2013 03:34:48 PM,Code 2 Transport,12/16/2013 03:48:36 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",133500272-65 +111640082,E01,11054051,Medical Incident,06/13/2011,06/12/2011,06/13/2011 07:54:41 AM,06/13/2011 07:55:29 AM,06/13/2011 07:55:53 AM,06/13/2011 07:58:12 AM,06/13/2011 08:00:28 AM,06/13/2011 08:16:54 AM,04/25/2016 02:04:11 PM,Other,06/13/2011 08:38:08 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,3,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",111640082-E01 +112140018,75,11070488,Medical Incident,08/02/2011,08/01/2011,08/02/2011 01:10:30 AM,08/02/2011 01:10:48 AM,08/02/2011 01:11:04 AM,08/02/2011 01:11:09 AM,08/02/2011 01:16:04 AM,08/02/2011 01:31:16 AM,08/02/2011 01:38:56 AM,Code 3 Transport,08/02/2011 02:04:56 AM,4200 Block of JUDAH ST,SF,94122,B08,23,7723,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7602986009431, -122.507529535954)",112140018-75 +120660093,T16,12021755,Alarms,03/06/2012,03/06/2012,03/06/2012 09:03:27 AM,03/06/2012 09:04:36 AM,03/06/2012 09:05:17 AM,03/06/2012 09:07:23 AM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/06/2012 09:16:36 AM,1700 Block of NORTH POINT ST,SF,94123,B04,16,3455,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.8036586225471, -122.436019366977)",120660093-T16 +160652260,55,16025982,Medical Incident,03/05/2016,03/05/2016,03/05/2016 04:02:18 PM,03/05/2016 04:03:04 PM,03/05/2016 04:03:52 PM,03/05/2016 04:04:10 PM,03/05/2016 04:18:21 PM,03/05/2016 05:05:30 PM,03/05/2016 05:15:23 PM,Code 2 Transport,03/05/2016 05:55:03 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160652260-55 +160301268,52,16011732,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:05:55 AM,01/30/2016 10:07:43 AM,01/30/2016 10:08:03 AM,01/30/2016 10:08:15 AM,01/30/2016 10:16:36 AM,01/30/2016 10:32:45 AM,01/30/2016 11:08:28 AM,Code 2 Transport,01/30/2016 11:35:14 AM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160301268-52 +140690212,E03,14023307,Medical Incident,03/10/2014,03/10/2014,03/10/2014 02:42:51 PM,03/10/2014 02:44:57 PM,03/10/2014 02:45:37 PM,03/10/2014 02:46:46 PM,03/10/2014 02:49:02 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Code 2 Transport,03/10/2014 03:10:53 PM,300 Block of LEAVENWORTH ST,SAN FRANCISCO,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",140690212-E03 +120340179,E05,12011259,Alarms,02/03/2012,02/03/2012,02/03/2012 12:24:40 PM,02/03/2012 12:24:40 PM,02/03/2012 12:25:18 PM,02/03/2012 12:26:16 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/03/2012 12:26:31 PM,600 Block of LARKIN ST,SF,94109,B02,3,1643,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",120340179-E05 +121150183,RC2,12038145,Medical Incident,04/24/2012,04/24/2012,04/24/2012 01:27:29 PM,04/24/2012 01:28:36 PM,04/24/2012 01:30:33 PM,04/24/2012 01:36:02 PM,04/24/2012 01:37:25 PM,04/25/2016 01:59:01 PM,04/25/2016 01:59:01 PM,Other,04/24/2012 01:47:03 PM,5000 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7804797722842, -122.47339937646)",121150183-RC2 +110020207,AM06,11000683,Medical Incident,01/02/2011,01/02/2011,01/02/2011 02:32:54 PM,01/02/2011 02:35:40 PM,01/02/2011 02:36:21 PM,01/02/2011 02:38:50 PM,01/02/2011 02:42:35 PM,01/02/2011 02:46:43 PM,01/02/2011 03:07:21 PM,Code 2 Transport,01/02/2011 03:43:42 PM,5400 Block of 3RD ST,SF,94124,B10,17,6536,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7280754569094, -122.392931662742)",110020207-AM06 +130390355,E36,13013453,Structure Fire,02/08/2013,02/08/2013,02/08/2013 08:53:40 PM,02/08/2013 08:54:26 PM,02/08/2013 08:54:38 PM,02/08/2013 08:55:46 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/08/2013 09:00:22 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Alarm,1,ENGINE,7,3,6,South of Market,"(37.7803475492385, -122.406487967809)",130390355-E36 +121980245,E38,12065860,Structure Fire,07/16/2012,07/16/2012,07/16/2012 05:06:53 PM,07/16/2012 05:08:50 PM,07/16/2012 05:09:09 PM,07/16/2012 05:10:21 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 05:14:18 PM,1600 Block of LOMBARD ST,SF,94123,B04,16,3244,3,3,3,true,Fire,1,ENGINE,9,4,2,Marina,"(37.800665922599, -122.428624511812)",121980245-E38 +102850231,T02,10090774,Alarms,10/12/2010,10/12/2010,10/12/2010 12:45:15 PM,10/12/2010 12:46:21 PM,10/12/2010 12:46:35 PM,10/12/2010 12:48:04 PM,10/12/2010 12:53:33 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 12:57:36 PM,300 Block of SPEAR ST,SF,94105,B03,35,2113,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7894924999912, -122.390150869347)",102850231-T02 +122760136,E09,12091074,Medical Incident,10/02/2012,10/02/2012,10/02/2012 10:11:06 AM,10/02/2012 10:11:43 AM,10/02/2012 10:11:52 AM,10/02/2012 10:14:03 AM,10/02/2012 10:16:43 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 10:20:09 AM,24TH ST/BRYANT ST,SF,94110,B06,9,5532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7527955849274, -122.409129910252)",122760136-E09 +130450218,E03,13015278,Traffic Collision,02/14/2013,02/14/2013,02/14/2013 01:48:32 PM,02/14/2013 01:48:55 PM,02/14/2013 01:49:22 PM,02/14/2013 01:49:45 PM,02/14/2013 01:51:34 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 01:53:07 PM,1600 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7905281969646, -122.421519114092)",130450218-E03 +160513151,58,16020610,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:14:55 PM,02/20/2016 09:17:11 PM,02/20/2016 09:18:32 PM,02/20/2016 09:19:34 PM,02/20/2016 09:34:25 PM,02/20/2016 09:44:33 PM,02/20/2016 10:03:00 PM,Code 2 Transport,02/20/2016 10:32:51 PM,FONT BL/ARBALLO DR,San Francisco,94132,B08,19,8681,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7217846884207, -122.482305620613)",160513151-58 +111070306,E25,11035506,Alarms,04/17/2011,04/17/2011,04/17/2011 08:55:13 PM,04/17/2011 08:56:01 PM,04/17/2011 08:56:12 PM,04/17/2011 08:56:43 PM,04/17/2011 08:58:52 PM,04/25/2016 02:05:03 PM,04/25/2016 02:05:03 PM,Other,04/17/2011 09:06:17 PM,300 Block of NEWHALL ST,SF,94124,B10,25,6457,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7425496105821, -122.3854005001)",111070306-E25 +110390046,T03,11012827,Medical Incident,02/08/2011,02/07/2011,02/08/2011 04:25:49 AM,02/08/2011 04:26:56 AM,02/08/2011 04:27:09 AM,02/08/2011 04:29:35 AM,02/08/2011 04:31:00 AM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 04:35:20 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,2,2,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",110390046-T03 +160781018,AM02,16030950,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:09:38 AM,03/18/2016 09:10:49 AM,03/18/2016 09:12:05 AM,03/18/2016 09:12:45 AM,03/18/2016 09:19:56 AM,03/18/2016 09:31:02 AM,03/18/2016 09:43:54 AM,Code 2 Transport,03/18/2016 10:25:35 AM,MASONIC AV/EUCLID AV,San Francisco,94118,B05,10,4411,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7850836353893, -122.447620106945)",160781018-AM02 +103520195,E15,10112978,Medical Incident,12/18/2010,12/18/2010,12/18/2010 01:10:36 PM,12/18/2010 01:11:15 PM,12/18/2010 01:11:21 PM,04/25/2016 02:07:03 PM,12/18/2010 01:20:45 PM,12/18/2010 01:33:08 PM,04/25/2016 02:07:03 PM,Other,12/18/2010 02:01:12 PM,100 Block of OTSEGO AVE,SF,94112,B09,15,8275,3,3,3,true,,1,ENGINE,3,9,11,Outer Mission,"(37.7253605704115, -122.44007723688)",103520195-E15 +131010044,E06,13033846,Medical Incident,04/11/2013,04/10/2013,04/11/2013 05:23:13 AM,04/11/2013 05:24:40 AM,04/11/2013 05:24:56 AM,04/11/2013 05:27:50 AM,04/11/2013 05:29:59 AM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,No Merit,04/11/2013 05:39:12 AM,2400 Block of MARKET ST,SF,94114,B05,6,5259,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",131010044-E06 +120610044,KM10,12019935,Medical Incident,03/01/2012,02/29/2012,03/01/2012 04:12:24 AM,03/01/2012 04:16:47 AM,03/01/2012 04:17:09 AM,03/01/2012 04:18:27 AM,03/01/2012 04:35:11 AM,03/01/2012 04:45:05 AM,03/01/2012 05:10:41 AM,Code 2 Transport,03/01/2012 05:44:51 AM,800 Block of INNES AVE,SF,94124,B10,25,6632,1,1,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7322910475588, -122.376157905497)",120610044-KM10 +110060103,55,11001912,Medical Incident,01/06/2011,01/06/2011,01/06/2011 09:05:04 AM,01/06/2011 09:08:08 AM,01/06/2011 09:08:25 AM,01/06/2011 09:08:41 AM,01/06/2011 09:12:39 AM,01/06/2011 09:40:54 AM,01/06/2011 09:52:56 AM,Code 2 Transport,01/06/2011 10:12:57 AM,1400 Block of LEAVENWORTH ST,SF,94109,B01,41,1535,3,3,3,true,,1,MEDIC,2,1,3,Russian Hill,"(37.7943258846738, -122.416450548399)",110060103-55 +111190028,E07,11039125,Medical Incident,04/29/2011,04/28/2011,04/29/2011 02:53:19 AM,04/29/2011 02:55:33 AM,04/29/2011 02:56:52 AM,04/29/2011 02:58:19 AM,04/29/2011 02:59:45 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 03:03:59 AM,3300 Block of 20TH ST,SF,94110,B06,7,5447,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7588083436412, -122.415229420851)",111190028-E07 +131630148,CD1,13055344,Other,06/12/2013,06/12/2013,06/12/2013 11:02:29 AM,06/12/2013 11:04:02 AM,06/12/2013 11:48:18 AM,04/25/2016 01:52:20 PM,06/12/2013 11:44:22 AM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/12/2013 02:04:47 PM,MARKET ST/6TH ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,CHIEF,17,3,6,South of Market,"(37.7822305756448, -122.410292026777)",131630148-CD1 +132850357,B02,13097105,Structure Fire,10/12/2013,10/12/2013,10/12/2013 11:04:30 PM,10/12/2013 11:05:27 PM,10/12/2013 11:05:50 PM,10/12/2013 11:07:03 PM,10/12/2013 11:08:46 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/12/2013 11:31:24 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7760099210785, -122.412889415461)",132850357-B02 +102980329,E07,10095269,Medical Incident,10/25/2010,10/25/2010,10/25/2010 07:25:37 PM,10/25/2010 07:26:59 PM,10/25/2010 07:27:38 PM,10/25/2010 07:28:56 PM,10/25/2010 07:32:34 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/25/2010 07:35:25 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,527,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7677413424145, -122.415468956066)",102980329-E07 +103230352,E17,10103614,Medical Incident,11/19/2010,11/19/2010,11/19/2010 08:35:11 PM,11/19/2010 08:35:51 PM,11/19/2010 08:36:21 PM,11/19/2010 08:37:12 PM,11/19/2010 08:49:47 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Other,11/19/2010 08:49:51 PM,1500 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7292122545104, -122.390956947476)",103230352-E17 +140040066,85,14001351,Medical Incident,01/04/2014,01/03/2014,01/04/2014 07:19:13 AM,01/04/2014 07:20:06 AM,01/04/2014 07:20:19 AM,01/04/2014 07:20:28 AM,01/04/2014 07:28:53 AM,01/04/2014 07:54:14 AM,01/04/2014 07:56:38 AM,Code 2 Transport,01/04/2014 08:31:20 AM,SAN BRUNO AV/22ND ST,SF,94110,B10,37,2551,3,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7569521955647, -122.404732268579)",140040066-85 +103200165,AM04,10102542,Medical Incident,11/16/2010,11/16/2010,11/16/2010 11:15:22 AM,11/16/2010 11:17:20 AM,11/16/2010 11:21:37 AM,11/16/2010 11:22:16 AM,11/16/2010 11:32:13 AM,11/16/2010 11:44:58 AM,11/16/2010 11:51:10 AM,Code 2 Transport,11/16/2010 12:04:18 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,1,1,2,false,,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",103200165-AM04 +160241958,82,16009547,Medical Incident,01/24/2016,01/24/2016,01/24/2016 02:30:12 PM,01/24/2016 02:32:55 PM,01/24/2016 02:33:13 PM,01/24/2016 02:33:53 PM,01/24/2016 02:57:37 PM,01/24/2016 03:03:05 PM,01/24/2016 03:14:23 PM,Code 2 Transport,01/24/2016 03:50:42 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",160241958-82 +160854076,60,16034001,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:38:57 PM,03/25/2016 10:41:30 PM,03/25/2016 10:42:43 PM,03/25/2016 10:42:51 PM,03/25/2016 10:57:17 PM,03/25/2016 11:13:48 PM,03/25/2016 11:41:06 PM,Code 2 Transport,03/25/2016 11:59:31 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160854076-60 +103020231,B10,10096527,Structure Fire,10/29/2010,10/29/2010,10/29/2010 04:31:49 PM,10/29/2010 04:32:40 PM,10/29/2010 04:32:58 PM,10/29/2010 04:34:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/29/2010 04:40:18 PM,200 Block of CHATTANOOGA ST,SF,94114,B06,11,5513,3,3,3,false,,1,CHIEF,6,6,8,Noe Valley,"(37.7525614549641, -122.426474367018)",103020231-B10 +132220054,AM18,13074858,Medical Incident,08/10/2013,08/09/2013,08/10/2013 03:41:12 AM,08/10/2013 03:42:34 AM,08/10/2013 03:42:56 AM,08/10/2013 03:43:24 AM,08/10/2013 03:50:36 AM,08/10/2013 03:53:49 AM,08/10/2013 04:04:42 AM,Code 2 Transport,08/10/2013 04:16:39 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",132220054-AM18 +121470006,RC1,12048653,Medical Incident,05/26/2012,05/25/2012,05/26/2012 12:36:16 AM,05/26/2012 12:37:32 AM,05/26/2012 12:37:57 AM,05/26/2012 12:39:19 AM,05/26/2012 12:42:39 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/26/2012 12:56:31 AM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",121470006-RC1 +160560999,KM04,16022309,Medical Incident,02/25/2016,02/25/2016,02/25/2016 09:29:33 AM,02/25/2016 09:30:07 AM,02/25/2016 09:30:40 AM,02/25/2016 09:31:04 AM,02/25/2016 09:46:41 AM,02/25/2016 10:02:51 AM,02/25/2016 10:36:07 AM,Code 2 Transport,02/25/2016 11:01:22 AM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160560999-KM04 +160680306,59,16026985,Medical Incident,03/08/2016,03/07/2016,03/08/2016 04:19:23 AM,03/08/2016 04:20:57 AM,03/08/2016 04:24:18 AM,03/08/2016 04:24:31 AM,03/08/2016 04:49:08 AM,03/08/2016 04:49:17 AM,03/08/2016 05:01:29 AM,Code 2 Transport,03/08/2016 05:47:46 AM,2500 Block of LOMBARD ST,San Francisco,94123,B04,16,4223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7987928005482, -122.443462866558)",160680306-59 +110110209,RC3,11003695,Traffic Collision,01/11/2011,01/11/2011,01/11/2011 02:50:31 PM,01/11/2011 02:52:41 PM,01/11/2011 02:53:27 PM,01/11/2011 02:55:18 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/11/2011 02:55:57 PM,200 Block of GENEVA AVE,SF,94112,B09,15,8313,3,3,3,true,,1,RESCUE CAPTAIN,2,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",110110209-RC3 +160852675,88,16033865,Medical Incident,03/25/2016,03/25/2016,03/25/2016 04:42:43 PM,03/25/2016 04:44:00 PM,03/25/2016 04:44:21 PM,03/25/2016 04:45:25 PM,03/25/2016 04:58:08 PM,03/25/2016 04:58:09 PM,03/25/2016 05:07:03 PM,Code 2 Transport,03/25/2016 05:29:48 PM,1300 Block of OAKDALE AVE,San Francisco,94124,B10,17,653,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.732342352455, -122.386280381355)",160852675-88 +120620218,B01,12020413,Alarms,03/02/2012,03/02/2012,03/02/2012 02:11:07 PM,03/02/2012 02:12:45 PM,03/02/2012 02:13:00 PM,03/02/2012 02:13:14 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/02/2012 02:18:02 PM,200 Block of MARKET ST,SF,94105,B03,13,2818,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7926791171072, -122.396853499969)",120620218-B01 +160610250,64,16024163,Medical Incident,03/01/2016,02/29/2016,03/01/2016 02:57:52 AM,03/01/2016 03:02:46 AM,03/01/2016 03:03:11 AM,03/01/2016 03:04:42 AM,03/01/2016 03:09:15 AM,03/01/2016 03:20:34 AM,03/01/2016 03:48:02 AM,Code 2 Transport,03/01/2016 04:50:45 AM,0 Block of WOODWARD ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7690757517644, -122.420788636046)",160610250-64 +102610055,KM15,10082395,Medical Incident,09/18/2010,09/17/2010,09/18/2010 02:58:44 AM,09/18/2010 02:59:59 AM,09/18/2010 03:00:23 AM,09/18/2010 03:01:29 AM,09/18/2010 03:05:43 AM,09/18/2010 03:16:08 AM,09/18/2010 03:22:42 AM,Other,09/18/2010 03:45:15 AM,500 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,false,,1,PRIVATE,2,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",102610055-KM15 +140880285,T02,14029741,Alarms,03/29/2014,03/29/2014,03/29/2014 06:50:51 PM,03/29/2014 06:52:30 PM,03/29/2014 06:52:51 PM,03/29/2014 06:54:45 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,Fire,03/29/2014 06:55:00 PM,1100 Block of FILBERT ST,SAN FRANCISCO,94109,B01,28,1532,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8002916170822, -122.418420789983)",140880285-T02 +121480267,KM04,12049187,Medical Incident,05/27/2012,05/27/2012,05/27/2012 05:34:42 PM,05/27/2012 05:35:19 PM,05/27/2012 05:35:54 PM,05/27/2012 05:36:56 PM,05/27/2012 05:39:13 PM,05/27/2012 05:45:20 PM,05/27/2012 06:02:12 PM,Code 3 Transport,05/27/2012 06:22:38 PM,DIVISADERO ST/GREEN ST,SF,94123,B04,16,4225,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7953206146714, -122.441902242617)",121480267-KM04 +103340220,E19,10106902,Medical Incident,11/30/2010,11/30/2010,11/30/2010 02:38:08 PM,11/30/2010 02:38:37 PM,11/30/2010 02:38:56 PM,11/30/2010 02:40:42 PM,11/30/2010 02:43:02 PM,04/25/2016 02:07:21 PM,11/30/2010 03:21:31 PM,Other,11/30/2010 03:32:08 PM,100 Block of CRESPI DR,SF,94132,B08,19,8426,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7188273542437, -122.476730070107)",103340220-E19 +121770167,AM06,12058869,Medical Incident,06/25/2012,06/25/2012,06/25/2012 12:07:20 PM,06/25/2012 12:08:38 PM,06/25/2012 12:08:51 PM,06/25/2012 12:09:22 PM,04/25/2016 01:58:02 PM,06/25/2012 12:25:04 PM,06/25/2012 12:41:37 PM,Code 2 Transport,06/25/2012 01:18:15 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",121770167-AM06 +122050098,AM02,12068102,Medical Incident,07/23/2012,07/23/2012,07/23/2012 09:14:25 AM,07/23/2012 09:16:57 AM,07/23/2012 09:17:33 AM,07/23/2012 09:18:19 AM,07/23/2012 09:27:43 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,No Merit,07/23/2012 09:27:49 AM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7562319946436, -122.418893283075)",122050098-AM02 +102620267,E01,10082957,Medical Incident,09/19/2010,09/19/2010,09/19/2010 05:13:52 PM,09/19/2010 05:16:35 PM,09/19/2010 05:16:56 PM,09/19/2010 05:18:19 PM,09/19/2010 05:21:52 PM,04/25/2016 02:08:31 PM,04/25/2016 02:08:31 PM,Other,09/19/2010 05:23:55 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7768521020734, -122.410711239368)",102620267-E01 +140220186,T12,14007513,Structure Fire,01/22/2014,01/22/2014,01/22/2014 01:21:04 PM,01/22/2014 01:21:05 PM,01/22/2014 01:21:14 PM,01/22/2014 01:22:08 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/22/2014 01:24:49 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,false,Alarm,1,TRUCK,2,8,5,Inner Sunset,"(37.7632029010129, -122.464037930237)",140220186-T12 +120620023,99,12020245,Medical Incident,03/02/2012,03/01/2012,03/02/2012 02:09:11 AM,03/02/2012 02:09:40 AM,03/02/2012 02:12:53 AM,03/02/2012 02:13:11 AM,03/02/2012 02:25:53 AM,03/02/2012 02:40:34 AM,03/02/2012 02:51:48 AM,Code 2 Transport,03/02/2012 03:25:20 AM,BROADWAY/BARTOL ST,SF,94133,B01,13,1231,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7982680694557, -122.403519546545)",120620023-99 +130400270,E13,13013740,Medical Incident,02/09/2013,02/09/2013,02/09/2013 04:55:29 PM,02/09/2013 04:56:02 PM,02/09/2013 04:56:11 PM,02/09/2013 04:58:17 PM,02/09/2013 04:59:52 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 05:07:29 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",130400270-E13 +160532762,83,16021329,Medical Incident,02/22/2016,02/22/2016,02/22/2016 05:59:55 PM,02/22/2016 06:04:12 PM,02/22/2016 06:04:20 PM,02/22/2016 06:04:25 PM,02/22/2016 06:16:13 PM,02/22/2016 06:29:18 PM,02/22/2016 07:01:30 PM,Code 2 Transport,02/22/2016 09:06:46 PM,3000 Block of HARRISON ST,San Francisco,94110,B06,9,5622,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7491884934163, -122.411638550839)",160532762-83 +160280954,AM02,16011017,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:22:45 AM,01/28/2016 09:26:16 AM,01/28/2016 09:26:59 AM,01/28/2016 09:28:04 AM,01/28/2016 09:34:16 AM,01/28/2016 09:50:55 AM,01/28/2016 10:06:47 AM,Code 3 Transport,01/28/2016 10:43:37 AM,100 Block of CLEARFIELD DR,San Francisco,94132,B08,19,8816,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Sunset/Parkside,"(37.7301504530726, -122.491254292437)",160280954-AM02 +130870168,E32,13028999,Medical Incident,03/28/2013,03/28/2013,03/28/2013 12:17:29 PM,03/28/2013 12:18:19 PM,03/28/2013 12:18:41 PM,03/28/2013 12:19:30 PM,03/28/2013 12:21:52 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 12:38:07 PM,400 Block of NEVADA ST,SF,94110,B10,32,5736,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7363710737067, -122.411602118744)",130870168-E32 +160131016,57,16005117,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:25:04 AM,01/13/2016 09:27:56 AM,01/13/2016 09:29:15 AM,01/13/2016 09:29:59 AM,01/13/2016 09:44:16 AM,01/13/2016 09:55:09 AM,01/13/2016 10:14:59 AM,Code 2 Transport,01/13/2016 10:55:13 AM,400 Block of LAKEVIEW AVE,San Francisco,94112,B09,33,8323,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7180076683643, -122.453703341526)",160131016-57 +133130208,E13,13106391,Outside Fire,11/09/2013,11/09/2013,11/09/2013 12:53:01 PM,11/09/2013 12:53:35 PM,11/09/2013 12:53:59 PM,11/09/2013 12:55:46 PM,11/09/2013 12:56:58 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 01:01:34 PM,WASHINGTON ST/KEARNY ST,SF,94108,B01,13,1245,3,3,3,true,Fire,1,ENGINE,1,1,3,Chinatown,"(37.7953266906824, -122.404957209767)",133130208-E13 +102990219,67,10095485,Medical Incident,10/26/2010,10/26/2010,10/26/2010 01:56:28 PM,10/26/2010 01:57:37 PM,10/26/2010 01:58:07 PM,04/25/2016 02:07:55 PM,10/26/2010 02:10:23 PM,10/26/2010 02:19:43 PM,10/26/2010 02:33:06 PM,Code 2 Transport,10/26/2010 02:58:33 PM,1400 Block of HARRISON ST,SF,94103,B02,36,5112,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7711432135825, -122.411927732518)",102990219-67 +160740874,64,16029243,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:56:06 AM,03/14/2016 08:56:06 AM,03/14/2016 08:56:35 AM,03/14/2016 08:56:42 AM,03/14/2016 08:59:34 AM,03/14/2016 09:20:14 AM,03/14/2016 09:45:38 AM,Code 2 Transport,03/14/2016 10:14:22 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160740874-64 +122250027,54,12074488,Structure Fire,08/12/2012,08/11/2012,08/12/2012 02:10:19 AM,08/12/2012 02:11:07 AM,08/12/2012 02:11:36 AM,08/12/2012 02:13:03 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 02:21:09 AM,2000 Block of MCALLISTER ST,SF,94118,B05,21,4462,3,3,3,true,Fire,1,MEDIC,8,5,5,Lone Mountain/USF,"(37.7769038844357, -122.445824245144)",122250027-54 +122280257,79,12075614,Medical Incident,08/15/2012,08/15/2012,08/15/2012 04:09:07 PM,08/15/2012 04:09:35 PM,08/15/2012 04:10:46 PM,08/15/2012 04:10:59 PM,08/15/2012 04:26:53 PM,08/15/2012 04:46:12 PM,08/15/2012 05:05:18 PM,Code 2 Transport,08/15/2012 05:27:35 PM,1500 Block of NEWCOMB AV,SF,94124,B10,17,6515,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7346630758042, -122.388898246024)",122280257-79 +123150209,RC3,12104850,Medical Incident,11/10/2012,11/10/2012,11/10/2012 01:55:02 PM,11/10/2012 01:55:02 PM,11/10/2012 01:55:02 PM,04/25/2016 01:55:51 PM,11/10/2012 01:58:03 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 02:11:39 PM,0 Block of JONES ST,SF,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",123150209-RC3 +160243444,KM03,16009707,Medical Incident,01/24/2016,01/24/2016,01/24/2016 10:16:27 PM,01/24/2016 10:17:35 PM,01/24/2016 10:17:46 PM,01/24/2016 10:18:25 PM,01/24/2016 10:32:02 PM,01/24/2016 10:35:09 PM,01/24/2016 10:40:41 PM,Code 2 Transport,01/24/2016 11:38:05 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160243444-KM03 +110600154,E43,11019670,Medical Incident,03/01/2011,03/01/2011,03/01/2011 12:21:37 PM,03/01/2011 12:21:53 PM,03/01/2011 12:22:25 PM,03/01/2011 12:24:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 12:44:38 PM,300 Block of MOSCOW ST,SF,94112,B09,43,6155,3,2,2,false,,1,ENGINE,2,9,11,Excelsior,"(37.7220697351307, -122.427115807241)",110600154-E43 +111810340,T19,11059861,Alarms,06/30/2011,06/30/2011,06/30/2011 07:54:29 PM,06/30/2011 07:55:24 PM,06/30/2011 07:55:31 PM,06/30/2011 07:56:28 PM,06/30/2011 08:00:43 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 08:08:13 PM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,,1,TRUCK,3,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",111810340-T19 +133090180,E07,13105056,Medical Incident,11/05/2013,11/05/2013,11/05/2013 12:21:57 PM,11/05/2013 12:22:11 PM,11/05/2013 12:23:09 PM,11/05/2013 12:23:24 PM,11/05/2013 12:25:21 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 12:29:43 PM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",133090180-E07 +130120250,59,13004146,Traffic Collision,01/12/2013,01/12/2013,01/12/2013 05:03:30 PM,01/12/2013 05:04:39 PM,01/12/2013 05:04:46 PM,01/12/2013 05:08:32 PM,01/12/2013 05:09:36 PM,01/12/2013 05:17:06 PM,01/12/2013 05:25:25 PM,Code 3 Transport,01/12/2013 06:10:03 PM,MISSION ST/BRAZIL AV,SF,94112,B09,43,6117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.724682555301, -122.434798413615)",130120250-59 +112220257,T18,11073389,Structure Fire,08/10/2011,08/10/2011,08/10/2011 04:44:07 PM,08/10/2011 04:44:07 PM,08/10/2011 04:44:25 PM,08/10/2011 04:45:23 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 04:47:30 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",112220257-T18 +113240057,77,11107505,Medical Incident,11/20/2011,11/19/2011,11/20/2011 03:09:23 AM,11/20/2011 03:10:27 AM,11/20/2011 03:10:43 AM,11/20/2011 03:11:08 AM,11/20/2011 03:14:30 AM,11/20/2011 03:27:54 AM,11/20/2011 03:39:59 AM,Code 2 Transport,11/20/2011 04:09:09 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",113240057-77 +103230373,E08,10103633,Medical Incident,11/19/2010,11/19/2010,11/19/2010 09:39:29 PM,11/19/2010 09:39:44 PM,11/19/2010 09:40:26 PM,11/19/2010 09:41:45 PM,11/19/2010 09:45:15 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Other,11/19/2010 09:46:03 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",103230373-E08 +160393606,60,16015802,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:45:17 PM,02/08/2016 09:45:52 PM,02/08/2016 09:46:08 PM,02/08/2016 09:46:22 PM,02/08/2016 09:49:19 PM,02/08/2016 10:01:12 PM,02/08/2016 10:08:37 PM,Code 2 Transport,02/08/2016 11:07:12 PM,1000 Block of STANYAN ST,San Francisco,94117,B05,12,5153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7649673884697, -122.452732198466)",160393606-60 +160210505,89,16008258,Medical Incident,01/21/2016,01/20/2016,01/21/2016 06:25:29 AM,01/21/2016 06:28:04 AM,01/21/2016 06:28:16 AM,01/21/2016 06:28:29 AM,01/21/2016 06:35:33 AM,01/21/2016 06:43:40 AM,01/21/2016 07:05:28 AM,Code 2 Transport,01/21/2016 07:35:04 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160210505-89 +140270290,KM14,14009295,Medical Incident,01/27/2014,01/27/2014,01/27/2014 06:16:13 PM,01/27/2014 06:16:44 PM,01/27/2014 06:19:04 PM,01/27/2014 06:20:23 PM,01/27/2014 06:30:09 PM,01/27/2014 06:42:14 PM,01/27/2014 06:51:34 PM,Code 2 Transport,01/27/2014 07:07:11 PM,1900 Block of UNION ST,SF,94123,B04,16,3443,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7976099463654, -122.431831857814)",140270290-KM14 +140730240,T01,14024689,Medical Incident,03/14/2014,03/14/2014,03/14/2014 02:56:26 PM,03/14/2014 02:57:50 PM,03/14/2014 02:58:46 PM,03/14/2014 03:00:19 PM,03/14/2014 03:06:29 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,No Merit,03/14/2014 03:08:28 PM,100 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2252,3,2,2,false,Potentially Life-Threatening,1,TRUCK,1,3,6,South of Market,"(37.7799892619986, -122.407376463936)",140730240-T01 +103270150,E22,10104738,Medical Incident,11/23/2010,11/23/2010,11/23/2010 11:57:21 AM,11/23/2010 11:57:56 AM,11/23/2010 11:58:21 AM,11/23/2010 11:59:22 AM,11/23/2010 12:00:58 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 12:12:40 PM,JUDAH ST/FUNSTON AV,SF,94122,B08,22,7347,3,2,2,true,,1,ENGINE,1,8,5,Inner Sunset,"(37.7619869932459, -122.470464921512)",103270150-E22 +102690059,RA48,10085206,Medical Incident,09/26/2010,09/25/2010,09/26/2010 02:28:48 AM,09/26/2010 02:29:26 AM,09/26/2010 02:29:45 AM,04/25/2016 02:08:24 PM,09/26/2010 02:46:15 AM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,09/26/2010 02:56:44 AM,1200 Block of EXPOSITION DR,TI,94130,B03,48,2931,3,2,2,false,,1,MEDIC,3,None,6,Treasure Island,"(37.829470112515, -122.371782476258)",102690059-RA48 +121010254,T13,12033540,Alarms,04/10/2012,04/10/2012,04/10/2012 04:30:19 PM,04/10/2012 04:31:26 PM,04/10/2012 04:31:34 PM,04/10/2012 04:32:33 PM,04/10/2012 04:37:54 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 04:37:58 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8083718015584, -122.414994322457)",121010254-T13 +131000346,T08,13033742,Alarms,04/10/2013,04/10/2013,04/10/2013 07:56:45 PM,04/10/2013 07:56:45 PM,04/10/2013 07:58:24 PM,04/25/2016 01:53:22 PM,04/10/2013 08:01:05 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/10/2013 08:01:22 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,TRUCK,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131000346-T08 +160203123,76,16008115,Medical Incident,01/20/2016,01/20/2016,01/20/2016 06:33:48 PM,01/20/2016 06:34:44 PM,01/20/2016 06:35:05 PM,01/20/2016 06:35:12 PM,01/20/2016 06:39:31 PM,01/20/2016 06:48:18 PM,01/20/2016 06:56:52 PM,Code 2 Transport,01/20/2016 07:44:41 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160203123-76 +123220050,T15,12106923,Structure Fire,11/17/2012,11/16/2012,11/17/2012 02:39:43 AM,11/17/2012 02:39:44 AM,11/17/2012 02:39:54 AM,11/17/2012 02:43:34 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/17/2012 02:45:05 AM,GENEVA AV/TARA ST,SF,94112,B09,15,8313,3,3,3,false,Alarm,1,TRUCK,2,9,11,Oceanview/Merced/Ingleside,"(37.7213968692205, -122.448410646975)",123220050-T15 +112900257,RS1,11096263,Medical Incident,10/17/2011,10/17/2011,10/17/2011 03:05:00 PM,10/17/2011 03:06:11 PM,10/17/2011 03:07:33 PM,10/17/2011 03:08:38 PM,10/17/2011 03:10:43 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 03:14:30 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7791285379843, -122.408030111231)",112900257-RS1 +113210292,E42,11106710,Medical Incident,11/17/2011,11/17/2011,11/17/2011 05:12:05 PM,11/17/2011 05:12:27 PM,11/17/2011 05:13:21 PM,11/17/2011 05:14:56 PM,11/17/2011 05:17:17 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/17/2011 05:33:21 PM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",113210292-E42 +131290182,AM06,13043598,Water Rescue,05/09/2013,05/09/2013,05/09/2013 01:00:40 PM,05/09/2013 01:02:54 PM,05/09/2013 01:03:58 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,Other,05/09/2013 01:05:43 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,Fire,1,PRIVATE,16,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",131290182-AM06 +140040255,92,14001515,Medical Incident,01/04/2014,01/04/2014,01/04/2014 04:34:46 PM,01/04/2014 04:36:56 PM,01/04/2014 04:37:44 PM,01/04/2014 04:38:12 PM,01/04/2014 04:49:00 PM,01/04/2014 05:09:38 PM,01/04/2014 05:28:31 PM,Code 2 Transport,01/04/2014 05:57:42 PM,100 Block of HALE ST,SF,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7323441875657, -122.408123114783)",140040255-92 +160653084,75,16026076,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:10:22 PM,03/05/2016 08:12:28 PM,03/05/2016 08:12:43 PM,03/05/2016 08:12:58 PM,03/05/2016 08:32:07 PM,03/05/2016 08:55:26 PM,03/05/2016 09:21:47 PM,Code 2 Transport,03/05/2016 09:55:55 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160653084-75 +102740099,91,10086949,Medical Incident,10/01/2010,10/01/2010,10/01/2010 10:19:42 AM,10/01/2010 10:20:49 AM,10/01/2010 10:21:11 AM,10/01/2010 10:22:11 AM,10/01/2010 10:33:15 AM,10/01/2010 10:45:11 AM,10/01/2010 10:58:49 AM,Code 2 Transport,10/01/2010 11:26:34 AM,8TH ST/HARRISON ST,SF,94103,B03,29,2333,E,E,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7737596997868, -122.408516330795)",102740099-91 +140120183,E01,14004153,Traffic Collision,01/12/2014,01/12/2014,01/12/2014 02:19:50 PM,01/12/2014 02:21:42 PM,01/12/2014 02:22:34 PM,01/12/2014 02:23:22 PM,01/12/2014 02:32:14 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 02:42:09 PM,100 Block of 7TH ST,SF,94103,B03,8,2312,,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7790372933741, -122.41062000696)",140120183-E01 +103310173,54,10105954,Traffic Collision,11/27/2010,11/27/2010,11/27/2010 01:07:26 PM,11/27/2010 01:07:55 PM,11/27/2010 01:09:13 PM,11/27/2010 01:09:48 PM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 01:17:43 PM,GEARY BL/16TH AV,SF,94118,B07,31,7153,2,2,2,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.780528533552, -122.47508357879)",103310173-54 +160582306,AM02,16023172,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:33:54 PM,02/27/2016 03:36:34 PM,02/27/2016 03:37:08 PM,02/27/2016 03:38:42 PM,02/27/2016 03:47:12 PM,02/27/2016 03:59:51 PM,02/27/2016 04:47:27 PM,Code 2 Transport,02/27/2016 04:47:33 PM,200 Block of LAUSSAT ST,San Francisco,94117,B05,6,3526,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Hayes Valley,"(37.771589403569, -122.431187366209)",160582306-AM02 +121170108,KM01,12038711,Medical Incident,04/26/2012,04/26/2012,04/26/2012 10:07:58 AM,04/26/2012 10:08:45 AM,04/26/2012 10:09:02 AM,04/26/2012 10:09:49 AM,04/26/2012 10:17:21 AM,04/26/2012 10:39:31 AM,04/26/2012 10:58:48 AM,Code 2 Transport,04/26/2012 11:34:35 AM,800 Block of ULLOA ST,SF,94127,B08,39,8611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7407687115215, -122.465419969863)",121170108-KM01 +160522667,KM02,16020912,Medical Incident,02/21/2016,02/21/2016,02/21/2016 05:58:43 PM,02/21/2016 05:58:43 PM,02/21/2016 05:59:41 PM,02/21/2016 06:00:24 PM,02/21/2016 06:25:38 PM,02/21/2016 06:25:39 PM,02/21/2016 06:38:39 PM,Code 2 Transport,02/21/2016 07:05:52 PM,3500 Block of WEBSTER ST,San Francisco,94123,B04,16,3455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.803343953924, -122.43500251397)",160522667-KM02 +160543474,60,16021751,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:29:06 PM,02/23/2016 07:32:33 PM,02/23/2016 07:36:00 PM,02/23/2016 07:39:19 PM,02/23/2016 07:44:14 PM,02/23/2016 08:03:09 PM,02/23/2016 08:12:49 PM,Code 2 Transport,02/23/2016 09:38:25 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160543474-60 +140450205,T05,14015331,Alarms,02/14/2014,02/14/2014,02/14/2014 02:13:39 PM,02/14/2014 02:16:15 PM,02/14/2014 02:16:24 PM,02/14/2014 02:17:35 PM,02/14/2014 02:19:14 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 02:24:05 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",140450205-T05 +112930171,74,11097191,Medical Incident,10/20/2011,10/20/2011,10/20/2011 01:01:28 PM,10/20/2011 01:01:49 PM,10/20/2011 01:02:27 PM,10/20/2011 01:02:43 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 01:03:51 PM,GEARY BL/27TH AV,SF,94121,B07,14,7222,3,3,3,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7799935399655, -122.486878047232)",112930171-74 +132440283,KM10,13082437,Medical Incident,09/01/2013,09/01/2013,09/01/2013 06:01:12 PM,09/01/2013 06:02:33 PM,09/01/2013 06:03:05 PM,09/01/2013 06:03:12 PM,09/01/2013 06:10:07 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,No Merit,09/01/2013 06:12:08 PM,OFARRELL ST/CYRIL MAGNIN ST,SF,94102,B03,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",132440283-KM10 +130620148,E10,13020742,Medical Incident,03/03/2013,03/03/2013,03/03/2013 10:33:33 AM,03/03/2013 10:34:14 AM,03/03/2013 10:35:16 AM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 10:35:31 AM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Mission,"(37.7732180675925, -122.421522300696)",130620148-E10 +110180087,E41,11005868,Alarms,01/18/2011,01/18/2011,01/18/2011 09:27:52 AM,01/18/2011 09:28:50 AM,01/18/2011 09:32:51 AM,01/18/2011 09:33:52 AM,01/18/2011 09:38:14 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 09:38:51 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,ENGINE,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",110180087-E41 +140710372,T09,14024124,Structure Fire,03/12/2014,03/12/2014,03/12/2014 08:17:10 PM,03/12/2014 08:17:14 PM,03/12/2014 08:18:01 PM,03/12/2014 08:20:23 PM,03/12/2014 08:22:58 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Fire,03/12/2014 08:31:01 PM,1500 Block of NEWCOMB AV,SAN FRANCISCO,94124,B10,17,6515,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7346630758042, -122.388898246024)",140710372-T09 +102570247,RC1,10081245,Medical Incident,09/14/2010,09/14/2010,09/14/2010 03:38:47 PM,09/14/2010 03:40:20 PM,09/14/2010 03:40:27 PM,04/25/2016 02:08:36 PM,09/14/2010 03:41:25 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Other,09/14/2010 03:43:53 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,RESCUE CAPTAIN,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",102570247-RC1 +160423159,88,16016988,Medical Incident,02/11/2016,02/11/2016,02/11/2016 06:47:30 PM,02/11/2016 06:50:18 PM,02/11/2016 06:51:31 PM,02/11/2016 06:51:42 PM,02/11/2016 06:58:38 PM,02/11/2016 07:09:09 PM,02/11/2016 07:16:27 PM,Code 2 Transport,02/11/2016 07:45:14 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160423159-88 +160840363,78,16033234,Medical Incident,03/24/2016,03/23/2016,03/24/2016 04:29:18 AM,03/24/2016 04:31:01 AM,03/24/2016 04:31:11 AM,03/24/2016 04:31:34 AM,03/24/2016 04:41:40 AM,03/24/2016 04:42:00 AM,03/24/2016 04:42:01 AM,Code 2 Transport,03/24/2016 05:48:54 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160840363-78 +131390278,E28,13047076,Medical Incident,05/19/2013,05/19/2013,05/19/2013 02:31:07 PM,05/19/2013 02:32:15 PM,05/19/2013 02:32:48 PM,05/19/2013 02:34:46 PM,05/19/2013 02:36:12 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 02:44:28 PM,BEACH ST/POWELL ST,SF,94133,B01,28,1344,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.807690493217, -122.412329558798)",131390278-E28 +160870779,AM02,16034486,Medical Incident,03/27/2016,03/26/2016,03/27/2016 07:11:38 AM,03/27/2016 07:11:38 AM,03/27/2016 07:12:06 AM,03/27/2016 07:12:41 AM,03/27/2016 07:17:51 AM,03/27/2016 07:34:55 AM,03/27/2016 07:45:09 AM,Code 2 Transport,03/27/2016 08:12:31 AM,14TH ST/DOLORES ST,San Francisco,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7678690199682, -122.426693184728)",160870779-AM02 +103310192,E36,10105970,Structure Fire,11/27/2010,11/27/2010,11/27/2010 02:16:52 PM,11/27/2010 02:16:52 PM,11/27/2010 02:17:01 PM,11/27/2010 02:17:53 PM,11/27/2010 02:19:45 PM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 02:20:26 PM,0 Block of DUBOCE AVE,SF,94103,B02,36,5124,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7698769653623, -122.420425746328)",103310192-E36 +160744207,62,16029530,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:45:58 PM,03/14/2016 11:45:58 PM,03/14/2016 11:46:27 PM,03/14/2016 11:46:37 PM,03/14/2016 11:52:32 PM,03/15/2016 12:24:33 AM,03/15/2016 12:47:12 AM,Code 2 Transport,03/15/2016 01:19:48 AM,0 Block of 3RD ST,San Francisco,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",160744207-62 +112820205,E02,11093352,Medical Incident,10/09/2011,10/09/2011,10/09/2011 02:07:20 PM,10/09/2011 02:09:50 PM,10/09/2011 02:11:08 PM,10/09/2011 02:13:14 PM,10/09/2011 02:18:14 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 02:18:44 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",112820205-E02 +123020199,E31,12100172,Medical Incident,10/28/2012,10/28/2012,10/28/2012 12:41:59 PM,10/28/2012 12:42:36 PM,10/28/2012 12:42:54 PM,10/28/2012 12:44:48 PM,10/28/2012 12:46:20 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 12:51:00 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",123020199-E31 +112990330,AM10,11099304,Medical Incident,10/26/2011,10/26/2011,10/26/2011 08:25:58 PM,10/26/2011 08:27:01 PM,10/26/2011 08:27:49 PM,10/26/2011 08:28:32 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/26/2011 08:34:56 PM,600 Block of DARTMOUTH ST,SF,94134,B09,42,6321,3,3,3,false,,1,PRIVATE,2,9,9,Portola,"(37.7225558788797, -122.410315976861)",112990330-AM10 +120920337,E09,12030590,Medical Incident,04/01/2012,04/01/2012,04/01/2012 07:02:58 PM,04/01/2012 07:04:25 PM,04/01/2012 07:05:23 PM,04/01/2012 07:07:51 PM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,Other,04/01/2012 07:21:45 PM,3800 Block of 3RD ST,SF,94124,B10,25,6457,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7423233883706, -122.388190201397)",120920337-E09 +132700236,84,13091731,Medical Incident,09/27/2013,09/27/2013,09/27/2013 01:45:40 PM,09/27/2013 01:46:04 PM,09/27/2013 01:47:27 PM,09/27/2013 01:47:37 PM,09/27/2013 02:08:07 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/27/2013 02:11:34 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",132700236-84 +131420061,88,13048043,Medical Incident,05/22/2013,05/21/2013,05/22/2013 06:17:52 AM,05/22/2013 06:17:53 AM,05/22/2013 06:18:01 AM,05/22/2013 06:18:12 AM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,Other,05/22/2013 06:25:18 AM,900 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",131420061-88 +160441164,KM06,16017639,Medical Incident,02/13/2016,02/13/2016,02/13/2016 10:35:36 AM,02/13/2016 10:36:54 AM,02/13/2016 10:38:38 AM,02/13/2016 10:40:57 AM,02/13/2016 10:43:11 AM,02/13/2016 11:08:29 AM,02/13/2016 11:15:26 AM,Code 2 Transport,02/13/2016 12:01:30 PM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",160441164-KM06 +112980039,AM16,11098757,Medical Incident,10/25/2011,10/24/2011,10/25/2011 05:50:57 AM,10/25/2011 05:53:41 AM,10/25/2011 05:54:02 AM,10/25/2011 05:54:51 AM,10/25/2011 05:57:55 AM,10/25/2011 06:08:54 AM,10/25/2011 06:25:38 AM,Code 2 Transport,10/25/2011 06:59:40 AM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",112980039-AM16 +160611344,AM10,16024281,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:45:16 AM,03/01/2016 11:45:45 AM,03/01/2016 11:48:31 AM,03/01/2016 11:48:55 AM,03/01/2016 12:18:26 PM,03/01/2016 12:22:47 PM,03/01/2016 12:38:20 PM,Code 2 Transport,03/01/2016 01:04:39 PM,3RD ST/CARGO WY,San Francisco,94124,B10,25,6437,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7461571286485, -122.387174219434)",160611344-AM10 +102260317,AM04,10071266,Medical Incident,08/14/2010,08/14/2010,08/14/2010 08:57:32 PM,08/14/2010 08:58:55 PM,08/14/2010 08:59:09 PM,08/14/2010 08:59:46 PM,08/14/2010 09:06:25 PM,08/14/2010 09:09:15 PM,08/14/2010 09:31:51 PM,Code 2 Transport,08/14/2010 10:09:39 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,,1,PRIVATE,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",102260317-AM04 +160202452,57,16008064,Medical Incident,01/20/2016,01/20/2016,01/20/2016 03:41:54 PM,01/20/2016 03:42:22 PM,01/20/2016 03:42:48 PM,01/20/2016 03:43:02 PM,01/20/2016 04:07:29 PM,01/20/2016 04:07:46 PM,01/20/2016 04:15:23 PM,Code 2 Transport,01/20/2016 04:48:57 PM,STOCKTON ST/BROADWAY,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",160202452-57 +112330292,T05,11077040,Traffic Collision,08/21/2011,08/21/2011,08/21/2011 06:04:39 PM,08/21/2011 06:04:39 PM,08/21/2011 06:04:39 PM,04/25/2016 02:03:03 PM,08/21/2011 06:04:47 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/21/2011 06:12:45 PM,GOLDEN GATE AV/WEBSTER ST,SF,94115,B05,5,3516,2,2,2,false,,1,TRUCK,1,2,5,Western Addition,"(37.7797827933333, -122.430233236395)",112330292-T05 +121000159,AM12,12033112,Medical Incident,04/09/2012,04/09/2012,04/09/2012 11:40:33 AM,04/09/2012 11:43:47 AM,04/09/2012 11:43:58 AM,04/09/2012 11:45:45 AM,04/09/2012 11:48:12 AM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,No Merit,04/09/2012 11:49:53 AM,2100 Block of BRYANT ST,SF,94110,B06,7,5451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7598271415261, -122.41001124046)",121000159-AM12 +160381273,KM05,16015156,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:15:41 AM,02/07/2016 10:15:41 AM,02/07/2016 10:16:24 AM,02/07/2016 10:17:43 AM,02/07/2016 10:24:31 AM,02/07/2016 10:49:04 AM,02/07/2016 11:05:48 AM,Code 2 Transport,02/07/2016 11:59:06 AM,FELL ST/WEBSTER ST,San Francisco,94102,B02,36,3423,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7751111786563, -122.429365861907)",160381273-KM05 +111570074,54,11051827,Medical Incident,06/06/2011,06/05/2011,06/06/2011 07:21:12 AM,06/06/2011 07:22:17 AM,06/06/2011 07:22:34 AM,06/06/2011 07:22:53 AM,06/06/2011 07:27:58 AM,06/06/2011 07:44:10 AM,06/06/2011 07:59:49 AM,Code 3 Transport,06/06/2011 08:30:10 AM,2600 Block of 16TH AVE,SF,94116,B08,40,7411,3,E,3,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7385289745359, -122.472223895624)",111570074-54 +102540394,E41,10080470,Medical Incident,09/11/2010,09/11/2010,09/11/2010 11:11:42 PM,09/11/2010 11:13:26 PM,09/11/2010 11:13:48 PM,09/11/2010 11:14:46 PM,09/11/2010 11:15:30 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 11:22:45 PM,JACKSON ST/LEAVENWORTH ST,SF,94109,B01,41,1535,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.794777285991, -122.416472748434)",102540394-E41 +130080176,E10,13002731,Medical Incident,01/08/2013,01/08/2013,01/08/2013 12:05:37 PM,01/08/2013 12:06:37 PM,01/08/2013 12:06:50 PM,01/08/2013 12:06:59 PM,01/08/2013 12:09:47 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,No Merit,01/08/2013 12:14:05 PM,GEARY BL/DIVISADERO ST,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7833084876653, -122.439480381269)",130080176-E10 +112050096,RS1,11067670,Traffic Collision,07/24/2011,07/24/2011,07/24/2011 09:07:14 AM,07/24/2011 09:07:46 AM,07/24/2011 09:07:56 AM,07/24/2011 09:09:32 AM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/24/2011 09:11:35 AM,GRANT AV/POST ST,SF,94108,B01,1,1316,3,3,3,false,,1,RESCUE SQUAD,3,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",112050096-RS1 +111980203,85,11065342,Medical Incident,07/17/2011,07/17/2011,07/17/2011 02:35:31 PM,07/17/2011 02:37:38 PM,07/17/2011 02:37:57 PM,07/17/2011 02:38:07 PM,07/17/2011 02:43:15 PM,07/17/2011 03:05:26 PM,07/17/2011 03:46:41 PM,Code 2 Transport,07/17/2011 04:17:19 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",111980203-85 +110030230,AP,11001010,Other,01/03/2011,01/03/2011,01/03/2011 03:04:24 PM,01/03/2011 03:04:24 PM,01/03/2011 03:04:24 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Fire,01/03/2011 03:05:08 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110030230-AP +160543206,83,16021728,Medical Incident,02/23/2016,02/23/2016,02/23/2016 06:20:10 PM,02/23/2016 06:20:10 PM,02/23/2016 06:21:53 PM,02/23/2016 06:21:53 PM,02/23/2016 06:24:09 PM,02/23/2016 06:37:12 PM,02/23/2016 07:03:34 PM,Code 2 Transport,02/23/2016 07:30:27 PM,700 Block of MARKET ST,San Francisco,94108,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",160543206-83 +130400136,E22,13013622,Citizen Assist / Service Call,02/09/2013,02/09/2013,02/09/2013 10:34:06 AM,02/09/2013 10:35:13 AM,02/09/2013 10:35:55 AM,02/09/2013 10:36:21 AM,02/09/2013 10:39:00 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 11:21:46 AM,1300 Block of IRVING ST,SF,94122,B08,22,7366,3,3,3,false,Alarm,1,ENGINE,1,7,5,Inner Sunset,"(37.7638318338265, -122.472232573432)",130400136-E22 +160772653,75,16030674,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:57:02 PM,03/17/2016 03:58:23 PM,03/17/2016 04:09:43 PM,03/17/2016 04:09:51 PM,03/17/2016 04:21:34 PM,03/17/2016 04:26:58 PM,03/17/2016 04:58:46 PM,Code 2 Transport,03/17/2016 05:14:24 PM,800 Block of SILVER AVE,San Francisco,94134,B09,42,635,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7291408602856, -122.418934279861)",160772653-75 +160630852,67,16024985,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:39:06 AM,03/03/2016 08:40:48 AM,03/03/2016 08:41:03 AM,03/03/2016 08:43:06 AM,03/03/2016 08:59:02 AM,03/03/2016 09:15:57 AM,03/03/2016 09:27:52 AM,Code 2 Transport,03/03/2016 10:05:47 AM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160630852-67 +131040059,T01,13034821,Structure Fire,04/14/2013,04/13/2013,04/14/2013 02:30:25 AM,04/14/2013 02:31:38 AM,04/14/2013 02:31:54 AM,04/25/2016 01:53:19 PM,04/14/2013 02:37:45 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 03:18:48 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,false,Fire,1,TRUCK,6,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",131040059-T01 +160200327,AM18,16007861,Medical Incident,01/20/2016,01/19/2016,01/20/2016 03:53:17 AM,01/20/2016 03:54:40 AM,01/20/2016 04:00:28 AM,01/20/2016 04:01:15 AM,01/20/2016 04:14:17 AM,01/20/2016 04:36:20 AM,01/20/2016 05:01:28 AM,Code 3 Transport,01/20/2016 05:17:45 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160200327-AM18 +111690177,AM06,11055698,Medical Incident,06/18/2011,06/18/2011,06/18/2011 01:01:47 PM,06/18/2011 01:02:27 PM,06/18/2011 01:02:49 PM,06/18/2011 01:03:58 PM,06/18/2011 01:09:01 PM,06/18/2011 01:16:24 PM,04/25/2016 02:04:06 PM,Code 2 Transport,06/18/2011 01:57:05 PM,POST ST/SCOTT ST,SF,94115,B04,10,4131,3,3,3,false,,1,PRIVATE,2,5,5,Japantown,"(37.7845309189576, -122.438019671354)",111690177-AM06 +111440150,T05,11047829,Alarms,05/24/2011,05/24/2011,05/24/2011 12:21:12 PM,05/24/2011 12:23:15 PM,05/24/2011 12:23:23 PM,05/24/2011 12:24:33 PM,05/24/2011 12:26:33 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/24/2011 01:01:42 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,TRUCK,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",111440150-T05 +121000409,E32,12033333,Structure Fire,04/09/2012,04/09/2012,04/09/2012 11:21:09 PM,04/09/2012 11:21:34 PM,04/09/2012 11:21:55 PM,04/09/2012 11:27:14 PM,04/09/2012 11:31:47 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 11:23:35 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,true,Fire,1,ENGINE,12,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",121000409-E32 +160444015,61,16017923,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:43:55 PM,02/13/2016 11:44:51 PM,02/13/2016 11:45:37 PM,02/13/2016 11:46:02 PM,02/13/2016 11:55:00 PM,02/14/2016 12:13:53 AM,02/14/2016 12:42:19 AM,Code 2 Transport,02/14/2016 01:21:55 AM,500 Block of BARNEVELD AVE,San Francisco,94124,B10,9,6427,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.74044593571, -122.404296869791)",160444015-61 +160823939,75,16032764,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:22:06 PM,03/22/2016 10:22:41 PM,03/22/2016 10:23:25 PM,03/22/2016 10:23:34 PM,03/22/2016 10:26:29 PM,03/22/2016 10:43:01 PM,03/22/2016 11:05:02 PM,Code 2 Transport,03/22/2016 11:22:39 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160823939-75 +160793054,53,16031500,Medical Incident,03/19/2016,03/19/2016,03/19/2016 05:48:35 PM,03/19/2016 05:48:35 PM,03/19/2016 05:49:48 PM,03/19/2016 05:50:05 PM,03/19/2016 05:50:05 PM,03/19/2016 06:11:04 PM,03/19/2016 06:22:14 PM,Code 2 Transport,03/19/2016 07:00:37 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160793054-53 +160203573,63,16008171,Medical Incident,01/20/2016,01/20/2016,01/20/2016 08:54:13 PM,01/20/2016 08:55:57 PM,01/20/2016 08:56:28 PM,01/20/2016 08:56:37 PM,01/20/2016 09:05:56 PM,01/20/2016 09:22:44 PM,01/20/2016 09:28:37 PM,Code 3 Transport,01/20/2016 10:21:24 PM,1100 Block of KEARNY ST,San Francisco,94133,B01,2,1251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7988200425066, -122.405685117745)",160203573-63 +131780110,B10,13060368,Structure Fire,06/27/2013,06/27/2013,06/27/2013 10:02:15 AM,06/27/2013 10:03:18 AM,06/27/2013 10:03:41 AM,06/27/2013 10:03:59 AM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Other,06/27/2013 10:08:42 AM,300 Block of 1ST ST,SF,94105,B03,35,2137,3,3,3,false,Alarm,1,CHIEF,12,3,6,Financial District/South Beach,"(37.7870362281105, -122.394250143605)",131780110-B10 +123030437,KM07,12100724,Medical Incident,10/29/2012,10/29/2012,10/29/2012 11:10:03 PM,10/29/2012 11:10:03 PM,10/29/2012 11:10:44 PM,10/29/2012 11:13:27 PM,10/29/2012 11:15:20 PM,10/29/2012 11:28:42 PM,10/29/2012 11:34:14 PM,Code 2 Transport,10/30/2012 12:30:44 AM,2500 Block of BRYANT ST,SF,94110,B06,7,5474,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7536039830321, -122.409137616637)",123030437-KM07 +132150219,68,13072640,Medical Incident,08/03/2013,08/03/2013,08/03/2013 01:55:22 PM,08/03/2013 01:56:05 PM,08/03/2013 01:57:19 PM,08/03/2013 01:57:28 PM,08/03/2013 02:00:40 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 02:22:49 PM,900 Block of LARKIN ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7867935563984, -122.418293311982)",132150219-68 +140200007,E42,14006717,Medical Incident,01/20/2014,01/19/2014,01/20/2014 12:43:09 AM,01/20/2014 12:44:37 AM,01/20/2014 12:45:10 AM,01/20/2014 12:47:24 AM,01/20/2014 12:48:43 AM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/20/2014 01:28:10 AM,100 Block of GAVEN ST,SF,94134,B10,42,6366,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7333230255485, -122.408594688363)",140200007-E42 +160241670,67,16009524,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:04:55 PM,01/24/2016 01:07:40 PM,01/24/2016 01:08:14 PM,01/24/2016 01:08:43 PM,01/24/2016 01:14:55 PM,01/24/2016 01:17:20 PM,01/24/2016 01:36:42 PM,Code 2 Transport,01/24/2016 02:30:51 PM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7826425026927, -122.407832679288)",160241670-67 +120290160,T08,12009727,Medical Incident,01/29/2012,01/29/2012,01/29/2012 01:50:35 PM,01/29/2012 01:51:01 PM,01/29/2012 01:51:43 PM,01/29/2012 01:52:16 PM,01/29/2012 01:54:50 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 02:00:45 PM,BRANNAN ST/5TH ST,SF,94107,B03,8,2241,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,3,6,South of Market,"(37.7765683820103, -122.398755450545)",120290160-T08 +122260087,E01,12074846,Structure Fire,08/13/2012,08/13/2012,08/13/2012 08:29:58 AM,08/13/2012 08:29:58 AM,08/13/2012 08:30:06 AM,08/13/2012 08:30:58 AM,08/13/2012 08:33:07 AM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Fire,08/13/2012 08:33:31 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122260087-E01 +103440369,60,10110361,Medical Incident,12/10/2010,12/10/2010,12/10/2010 08:19:35 PM,12/10/2010 08:21:04 PM,12/10/2010 08:21:36 PM,12/10/2010 08:22:04 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 08:23:48 PM,100 Block of WESTGATE DR,SF,94127,B09,15,8533,E,2,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7292259664459, -122.465027266985)",103440369-60 +112990011,94,11099056,Medical Incident,10/26/2011,10/25/2011,10/26/2011 01:20:44 AM,10/26/2011 01:21:23 AM,10/26/2011 01:22:09 AM,10/26/2011 01:22:15 AM,10/26/2011 01:34:40 AM,10/26/2011 01:57:18 AM,10/26/2011 02:17:55 AM,Code 2 Transport,10/26/2011 02:44:25 AM,100 Block of DORADO TER,SF,94112,B09,15,8532,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7268689398462, -122.461992848735)",112990011-94 +121070254,71,12035512,Medical Incident,04/16/2012,04/16/2012,04/16/2012 04:03:54 PM,04/16/2012 04:06:44 PM,04/16/2012 04:06:53 PM,04/16/2012 04:07:25 PM,04/16/2012 04:08:28 PM,04/16/2012 04:40:38 PM,04/16/2012 04:50:35 PM,Code 2 Transport,04/16/2012 05:22:27 PM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",121070254-71 +131470058,89,13049779,Medical Incident,05/27/2013,05/26/2013,05/27/2013 04:57:34 AM,05/27/2013 04:58:41 AM,05/27/2013 04:58:50 AM,05/27/2013 04:59:18 AM,05/27/2013 05:03:40 AM,05/27/2013 05:28:58 AM,05/27/2013 05:43:47 AM,Code 2 Transport,05/27/2013 05:59:09 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,E,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",131470058-89 +120510062,E18,12016766,Medical Incident,02/20/2012,02/19/2012,02/20/2012 06:12:19 AM,02/20/2012 06:13:18 AM,02/20/2012 06:13:41 AM,02/20/2012 06:18:40 AM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 06:21:57 AM,1400 Block of 26TH AVE,SF,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7604386722606, -122.484361591093)",120510062-E18 +113570311,T13,11118692,Medical Incident,12/23/2011,12/23/2011,12/23/2011 03:14:33 PM,12/23/2011 03:15:48 PM,12/23/2011 03:16:42 PM,12/23/2011 03:16:59 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 03:17:23 PM,400 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,true,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7905619157295, -122.405159641603)",113570311-T13 +160271255,88,16010621,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:36:01 AM,01/27/2016 10:38:54 AM,01/27/2016 10:39:27 AM,01/27/2016 10:39:58 AM,01/27/2016 11:00:45 AM,01/27/2016 11:13:01 AM,01/27/2016 11:32:58 AM,Code 2 Transport,01/27/2016 12:07:45 PM,1200 Block of EXPOSITION DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.829470112515, -122.371782476258)",160271255-88 +130820316,55,13027567,Traffic Collision,03/23/2013,03/23/2013,03/23/2013 09:02:17 PM,03/23/2013 09:03:02 PM,03/23/2013 09:03:24 PM,03/23/2013 09:04:32 PM,03/23/2013 09:11:09 PM,03/23/2013 09:44:31 PM,03/23/2013 10:08:33 PM,Code 2 Transport,03/23/2013 10:38:56 PM,UNION ST/COLUMBUS AV,SF,94133,B01,28,1334,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",130820316-55 +160613751,77,16024510,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:26:31 PM,03/01/2016 11:26:53 PM,03/01/2016 11:27:04 PM,03/01/2016 11:27:36 PM,03/01/2016 11:32:43 PM,03/01/2016 11:38:19 PM,03/01/2016 11:49:48 PM,Code 3 Transport,03/02/2016 12:51:23 AM,200 Block of RANDOLPH ST,San Francisco,94132,B09,33,8416,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7143453518549, -122.464850904783)",160613751-77 +140760155,B09,14025686,Alarms,03/17/2014,03/17/2014,03/17/2014 11:34:42 AM,03/17/2014 11:35:41 AM,03/17/2014 11:35:51 AM,03/17/2014 11:40:32 AM,03/17/2014 11:44:02 AM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Fire,03/17/2014 11:55:12 AM,0 Block of OCEAN AVE,SAN FRANCISCO,94112,B09,43,6121,3,3,3,false,Alarm,1,CHIEF,2,9,11,Outer Mission,"(37.7237008924072, -122.436724757716)",140760155-B09 +122050339,E20,12068308,Medical Incident,07/23/2012,07/23/2012,07/23/2012 09:36:26 PM,07/23/2012 09:39:16 PM,07/23/2012 09:39:57 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/23/2012 09:41:53 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",122050339-E20 +131180212,T19,13039718,Traffic Collision,04/28/2013,04/28/2013,04/28/2013 02:33:34 PM,04/28/2013 02:34:03 PM,04/28/2013 02:34:28 PM,04/28/2013 02:35:31 PM,04/28/2013 02:38:09 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/28/2013 02:51:38 PM,19TH AV/SLOAT BL,SF,94132,B08,19,7413,3,3,3,true,Potentially Life-Threatening,1,TRUCK,2,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",131180212-T19 +130850264,KM01,13028442,Medical Incident,03/26/2013,03/26/2013,03/26/2013 04:27:31 PM,03/26/2013 04:28:24 PM,03/26/2013 04:29:29 PM,03/26/2013 04:30:55 PM,03/26/2013 04:37:23 PM,03/26/2013 05:02:36 PM,03/26/2013 05:32:51 PM,Code 2 Transport,03/26/2013 06:00:56 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",130850264-KM01 +160631204,KM03,16025015,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:15:32 AM,03/03/2016 10:15:42 AM,03/03/2016 10:16:02 AM,03/03/2016 10:16:45 AM,03/03/2016 10:28:21 AM,03/03/2016 10:46:13 AM,03/03/2016 10:57:50 AM,Code 2 Transport,03/03/2016 11:14:33 AM,2500 Block of 15TH ST,San Francisco,94114,B05,6,5174,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7660271182054, -122.437834993098)",160631204-KM03 +133540163,E07,13120245,Medical Incident,12/20/2013,12/20/2013,12/20/2013 10:56:05 AM,12/20/2013 10:56:37 AM,12/20/2013 10:57:29 AM,12/20/2013 10:57:52 AM,12/20/2013 11:06:50 AM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/20/2013 11:33:09 AM,0 Block of RONDEL PL,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7643441086394, -122.421111562712)",133540163-E07 +122970025,E13,12098369,Structure Fire,10/23/2012,10/22/2012,10/23/2012 01:47:22 AM,10/23/2012 01:47:22 AM,10/23/2012 01:47:31 AM,10/23/2012 01:49:39 AM,10/23/2012 01:51:21 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/23/2012 01:51:35 AM,GRANT AV/CALIFORNIA ST,SF,94108,B01,13,1314,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",122970025-E13 +122510154,T02,12082969,Medical Incident,09/07/2012,09/07/2012,09/07/2012 10:49:41 AM,09/07/2012 10:50:41 AM,09/07/2012 10:51:13 AM,09/07/2012 10:54:55 AM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,Other,09/07/2012 10:58:56 AM,0 Block of BONITA ST,SF,94109,B04,41,3126,3,3,3,true,Potentially Life-Threatening,1,TRUCK,2,4,3,Russian Hill,"(37.7973537252438, -122.422620569494)",122510154-T02 +160050688,KM08,16001882,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:08:57 AM,01/05/2016 08:09:21 AM,01/05/2016 08:10:10 AM,01/05/2016 08:12:29 AM,01/05/2016 08:15:33 AM,01/05/2016 08:34:21 AM,01/05/2016 08:40:43 AM,Code 3 Transport,01/05/2016 09:24:25 AM,1100 Block of CLEMENT ST,San Francisco,94118,B07,31,7141,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7825695021259, -122.471375941077)",160050688-KM08 +160442367,50,16017763,Medical Incident,02/13/2016,02/13/2016,02/13/2016 04:23:43 PM,02/13/2016 04:26:09 PM,02/13/2016 04:35:10 PM,02/13/2016 04:35:10 PM,02/13/2016 04:39:03 PM,02/13/2016 04:53:25 PM,02/13/2016 05:23:18 PM,Code 2 Transport,02/13/2016 05:58:55 PM,TURK ST/FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",160442367-50 +110820353,T13,11027080,Structure Fire,03/23/2011,03/23/2011,03/23/2011 08:36:38 PM,03/23/2011 08:37:40 PM,03/23/2011 08:38:02 PM,03/23/2011 08:40:05 PM,03/23/2011 08:41:21 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 08:47:59 PM,1000 Block of THE EMBARCADERO,SF,94111,B01,13,927,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",110820353-T13 +160372954,AM08,16014816,Medical Incident,02/06/2016,02/06/2016,02/06/2016 05:39:54 PM,02/06/2016 05:40:43 PM,02/06/2016 05:41:23 PM,02/06/2016 05:41:59 PM,02/06/2016 05:52:39 PM,02/06/2016 06:16:48 PM,02/06/2016 06:33:49 PM,Code 2 Transport,02/06/2016 07:00:05 PM,100 Block of FRANCISCO ST,San Francisco,94133,B01,28,1255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8054738067872, -122.407570127181)",160372954-AM08 +140770328,KM02,14026194,Medical Incident,03/18/2014,03/18/2014,03/18/2014 07:37:37 PM,03/18/2014 07:37:37 PM,03/18/2014 07:38:21 PM,03/18/2014 07:40:23 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Code 2 Transport,03/18/2014 07:43:22 PM,2000 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",140770328-KM02 +103580257,E11,10114993,Medical Incident,12/24/2010,12/24/2010,12/24/2010 06:21:33 PM,12/24/2010 06:23:28 PM,12/24/2010 06:23:55 PM,12/24/2010 06:24:36 PM,12/24/2010 06:27:05 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/24/2010 06:31:14 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",103580257-E11 +122020188,E28,12067113,Medical Incident,07/20/2012,07/20/2012,07/20/2012 01:05:45 PM,07/20/2012 01:06:22 PM,07/20/2012 01:06:34 PM,07/20/2012 01:07:28 PM,07/20/2012 01:09:05 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 01:22:37 PM,GREEN ST/KEARNY ST,SF,94133,B01,28,1252,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.7999008548131, -122.405834048408)",122020188-E28 +120300315,58,12010116,Medical Incident,01/30/2012,01/30/2012,01/30/2012 10:50:03 PM,01/30/2012 10:50:20 PM,01/30/2012 10:50:34 PM,01/30/2012 10:50:46 PM,01/30/2012 10:52:32 PM,01/30/2012 11:05:14 PM,01/30/2012 11:19:00 PM,Code 2 Transport,01/31/2012 12:03:46 AM,700 Block of TARAVAL ST,SF,94116,B08,40,7376,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7430652610147, -122.474084809201)",120300315-58 +110870215,57,11028745,Medical Incident,03/28/2011,03/28/2011,03/28/2011 02:07:31 PM,03/28/2011 02:08:34 PM,03/28/2011 02:08:41 PM,03/28/2011 02:18:21 PM,03/28/2011 02:23:22 PM,03/28/2011 02:40:45 PM,03/28/2011 02:50:39 PM,Code 2 Transport,03/28/2011 03:13:19 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,2,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",110870215-57 +131370284,E08,13046354,Medical Incident,05/17/2013,05/17/2013,05/17/2013 05:20:54 PM,05/17/2013 05:21:37 PM,05/17/2013 05:22:00 PM,05/17/2013 05:23:18 PM,05/17/2013 05:26:35 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/17/2013 05:45:57 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",131370284-E08 +110410347,AM18,11013702,Medical Incident,02/10/2011,02/10/2011,02/10/2011 07:19:24 PM,02/10/2011 07:19:24 PM,02/10/2011 07:19:24 PM,02/10/2011 07:20:36 PM,02/10/2011 07:25:46 PM,02/10/2011 07:31:19 PM,02/10/2011 07:41:28 PM,Code 2 Transport,02/10/2011 08:01:39 PM,CLAY ST/LEAVENWORTH ST,SF,94109,B01,41,1536,3,3,3,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.7930136072504, -122.416113018456)",110410347-AM18 +160363649,AM22,16014423,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:27:18 PM,02/05/2016 08:27:18 PM,02/05/2016 08:27:41 PM,02/05/2016 08:28:13 PM,02/05/2016 08:30:50 PM,02/05/2016 08:44:06 PM,02/05/2016 09:07:02 PM,Code 2 Transport,02/05/2016 09:35:15 PM,BAYSHORE BL/SAN BRUNO AV,San Francisco,94124,B10,9,6376,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Bernal Heights,"(37.7384578874293, -122.4070544854)",160363649-AM22 +130580095,78,13019384,Medical Incident,02/27/2013,02/27/2013,02/27/2013 09:44:19 AM,02/27/2013 09:44:58 AM,02/27/2013 09:45:10 AM,02/27/2013 09:47:11 AM,02/27/2013 09:46:56 AM,02/27/2013 10:07:47 AM,02/27/2013 10:14:41 AM,Code 3 Transport,02/27/2013 10:50:50 AM,1200 Block of ALEMANY BLVD,SF,94112,B09,32,8263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7301394309025, -122.432268894425)",130580095-78 +120750004,66,12024757,Medical Incident,03/15/2012,03/14/2012,03/15/2012 12:20:24 AM,03/15/2012 12:21:29 AM,03/15/2012 12:21:41 AM,03/15/2012 12:21:52 AM,03/15/2012 12:32:36 AM,03/15/2012 12:51:45 AM,03/15/2012 01:06:41 AM,Code 2 Transport,03/15/2012 01:30:54 AM,100 Block of 7TH ST,SF,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7786395920196, -122.410120840963)",120750004-66 +120930059,E24,12030708,Structure Fire,04/02/2012,04/01/2012,04/02/2012 07:13:43 AM,04/02/2012 07:14:44 AM,04/02/2012 07:15:00 AM,04/02/2012 07:16:53 AM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Other,04/02/2012 07:23:28 AM,24TH ST/GUERRERO ST,SF,94110,B06,11,5524,3,3,3,true,Fire,1,ENGINE,9,6,8,Mission,"(37.7519716270837, -122.422878832716)",120930059-E24 +131250306,E10,13042354,Medical Incident,05/05/2013,05/05/2013,05/05/2013 08:30:49 PM,05/05/2013 08:32:34 PM,05/05/2013 08:32:50 PM,05/05/2013 08:34:35 PM,05/05/2013 08:37:03 PM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,Other,05/05/2013 09:17:55 PM,400 Block of CLEMENT ST,SF,94118,B07,31,7127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.783019404592, -122.463891765702)",131250306-E10 +140840283,E35,14028397,Medical Incident,03/25/2014,03/25/2014,03/25/2014 06:47:26 PM,03/25/2014 06:49:24 PM,03/25/2014 06:50:01 PM,03/25/2014 06:51:29 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/25/2014 07:02:13 PM,200 Block of MARKET ST,,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",140840283-E35 +113480190,T13,11115458,Alarms,12/14/2011,12/14/2011,12/14/2011 12:24:45 PM,12/14/2011 12:25:41 PM,12/14/2011 12:25:58 PM,12/14/2011 12:27:30 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 12:31:41 PM,0 Block of SANSOME ST,SF,94104,B01,13,1164,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",113480190-T13 +120030068,E05,12000943,Electrical Hazard,01/03/2012,01/02/2012,01/03/2012 05:57:20 AM,01/03/2012 06:01:14 AM,01/03/2012 06:01:20 AM,01/03/2012 06:02:54 AM,01/03/2012 06:05:24 AM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Fire,01/03/2012 06:19:16 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7791068008612, -122.431789184532)",120030068-E05 +110100194,E32,11003322,Structure Fire,01/10/2011,01/10/2011,01/10/2011 01:13:41 PM,01/10/2011 01:13:41 PM,01/10/2011 01:14:06 PM,01/10/2011 01:14:56 PM,01/10/2011 01:17:55 PM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 01:43:48 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",110100194-E32 +160733054,AM16,16029134,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:24:10 PM,03/13/2016 10:26:40 PM,03/13/2016 10:27:39 PM,03/13/2016 10:28:11 PM,03/13/2016 10:40:26 PM,03/13/2016 10:54:58 PM,03/13/2016 11:05:19 PM,Code 2 Transport,03/13/2016 11:33:02 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160733054-AM16 +130440056,E02,13014842,Alarms,02/13/2013,02/12/2013,02/13/2013 05:27:38 AM,02/13/2013 05:28:30 AM,02/13/2013 05:28:38 AM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,Other,02/13/2013 05:29:16 AM,1100 Block of POWELL ST,SF,94108,B01,2,1354,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7951679550596, -122.409878515576)",130440056-E02 +160711809,AM02,16028241,Medical Incident,03/11/2016,03/11/2016,03/11/2016 01:26:44 PM,03/11/2016 01:28:26 PM,03/11/2016 01:32:53 PM,03/11/2016 01:37:12 PM,03/11/2016 01:48:18 PM,03/11/2016 01:58:08 PM,03/11/2016 02:16:15 PM,Code 2 Transport,03/11/2016 03:19:39 PM,VAN NESS AV/CHESTNUT ST,San Francisco,94109,B04,16,3144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Marina,"(37.8022809826088, -122.424731260608)",160711809-AM02 +103350254,65,10107242,Medical Incident,12/01/2010,12/01/2010,12/01/2010 05:16:00 PM,12/01/2010 05:17:28 PM,12/01/2010 05:17:56 PM,12/01/2010 05:18:09 PM,12/01/2010 05:34:59 PM,12/01/2010 05:35:01 PM,12/01/2010 06:05:47 PM,Code 2 Transport,12/01/2010 06:22:53 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,true,,1,MEDIC,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",103350254-65 +121260076,E03,12041782,Structure Fire,05/05/2012,05/04/2012,05/05/2012 05:17:16 AM,05/05/2012 05:17:16 AM,05/05/2012 05:17:23 AM,05/05/2012 05:18:49 AM,05/05/2012 05:19:41 AM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 05:20:10 AM,HYDE ST/SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7881778905715, -122.416827154311)",121260076-E03 +121700345,86,12056569,Medical Incident,06/18/2012,06/18/2012,06/18/2012 09:03:35 PM,06/18/2012 09:05:47 PM,06/18/2012 09:07:08 PM,06/18/2012 09:07:27 PM,06/18/2012 09:13:08 PM,06/18/2012 09:33:52 PM,06/18/2012 09:39:31 PM,Code 2 Transport,06/18/2012 10:00:59 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,1,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",121700345-86 +160421892,67,16016876,Medical Incident,02/11/2016,02/11/2016,02/11/2016 01:23:16 PM,02/11/2016 01:24:33 PM,02/11/2016 01:25:29 PM,02/11/2016 01:25:29 PM,02/11/2016 01:34:23 PM,02/11/2016 01:41:46 PM,02/11/2016 01:48:53 PM,Code 2 Transport,02/11/2016 02:34:39 PM,1500 Block of PAGE ST,San Francisco,94117,B05,21,4513,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7710924876971, -122.446340221566)",160421892-67 +123390101,T03,12112996,Medical Incident,12/04/2012,12/04/2012,12/04/2012 09:36:23 AM,12/04/2012 09:37:29 AM,12/04/2012 09:38:05 AM,12/04/2012 09:39:27 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 09:41:11 AM,HYDE ST/TURK ST,SF,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",123390101-T03 +132950280,E36,13100398,Medical Incident,10/22/2013,10/22/2013,10/22/2013 07:23:56 PM,10/22/2013 07:26:28 PM,10/22/2013 07:27:12 PM,10/22/2013 07:28:45 PM,10/22/2013 07:30:42 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/22/2013 07:39:07 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",132950280-E36 +130290177,B02,13009919,Alarms,01/29/2013,01/29/2013,01/29/2013 12:14:18 PM,01/29/2013 12:15:22 PM,01/29/2013 12:15:28 PM,01/29/2013 12:16:05 PM,01/29/2013 12:19:58 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/29/2013 12:38:17 PM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",130290177-B02 +103450247,E02,10110632,Medical Incident,12/11/2010,12/11/2010,12/11/2010 03:04:18 PM,12/11/2010 03:06:39 PM,12/11/2010 03:07:27 PM,12/11/2010 03:08:47 PM,12/11/2010 03:10:11 PM,12/11/2010 03:26:20 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 03:28:21 PM,1000 Block of STOCKTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",103450247-E02 +160060183,79,16002235,Medical Incident,01/06/2016,01/05/2016,01/06/2016 01:58:45 AM,01/06/2016 02:00:19 AM,01/06/2016 02:00:29 AM,01/06/2016 02:00:46 AM,01/06/2016 02:10:02 AM,01/06/2016 02:39:23 AM,01/06/2016 02:47:33 AM,Code 2 Transport,01/06/2016 03:22:08 AM,3600 Block of CABRILLO ST,San Francisco,94121,B07,34,7261,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7737694501394, -122.497712216449)",160060183-79 +160560634,53,16022272,Medical Incident,02/25/2016,02/24/2016,02/25/2016 07:33:48 AM,02/25/2016 07:34:57 AM,02/25/2016 07:37:37 AM,02/25/2016 07:37:45 AM,02/25/2016 07:50:30 AM,02/25/2016 08:09:54 AM,02/25/2016 08:40:22 AM,Code 2 Transport,02/25/2016 09:07:41 AM,1500 Block of 37TH AVE,San Francisco,94122,B08,18,7572,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7580458181971, -122.496156064465)",160560634-53 +112040309,T14,11067501,Alarms,07/23/2011,07/23/2011,07/23/2011 07:29:39 PM,07/23/2011 07:31:00 PM,07/23/2011 07:31:35 PM,07/23/2011 07:32:38 PM,07/23/2011 07:36:21 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 07:45:51 PM,400 Block of 38TH AVE,SF,94121,B07,34,7255,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.779808370504, -122.498758567597)",112040309-T14 +102400338,RS2,10075832,Structure Fire,08/28/2010,08/28/2010,08/28/2010 09:27:24 PM,08/28/2010 09:28:16 PM,08/28/2010 09:28:51 PM,08/28/2010 09:30:10 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/28/2010 09:35:51 PM,300 Block of HEAD ST,SF,94132,B09,33,8416,3,3,3,false,,1,RESCUE SQUAD,9,9,11,Oceanview/Merced/Ingleside,"(37.7136138852153, -122.464462764733)",102400338-RS2 +160662591,71,16026479,Medical Incident,03/06/2016,03/06/2016,03/06/2016 06:06:55 PM,03/06/2016 06:06:55 PM,03/06/2016 06:09:21 PM,03/06/2016 06:09:26 PM,03/06/2016 06:21:28 PM,03/06/2016 06:35:29 PM,03/06/2016 06:55:54 PM,Code 2 Transport,03/06/2016 07:35:52 PM,TURK ST/STEINER ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7802866938723, -122.433784545919)",160662591-71 +122240084,AM02,12074204,Medical Incident,08/11/2012,08/10/2012,08/11/2012 06:37:06 AM,08/11/2012 06:40:01 AM,08/11/2012 06:43:20 AM,08/11/2012 06:43:53 AM,08/11/2012 06:56:20 AM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Patient Declined Transport,08/11/2012 07:43:12 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",122240084-AM02 +102590048,E01,10081712,Medical Incident,09/16/2010,09/15/2010,09/16/2010 03:25:47 AM,09/16/2010 03:27:44 AM,09/16/2010 03:28:30 AM,09/16/2010 03:30:56 AM,09/16/2010 03:35:18 AM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 03:55:52 AM,900 Block of MARKET ST,SF,94102,B03,1,2247,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",102590048-E01 +160563824,58,16022549,Medical Incident,02/25/2016,02/25/2016,02/25/2016 09:41:32 PM,02/25/2016 09:43:13 PM,02/25/2016 09:43:32 PM,02/25/2016 09:43:42 PM,02/25/2016 09:54:00 PM,02/25/2016 10:04:18 PM,02/25/2016 10:20:26 PM,Code 2 Transport,02/25/2016 10:57:56 PM,1200 Block of TREAT AVE,San Francisco,94110,B06,7,5533,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7501648383073, -122.412831855469)",160563824-58 +160493101,KM11,16019835,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:22:51 PM,02/18/2016 06:26:26 PM,02/18/2016 06:28:01 PM,02/18/2016 06:28:41 PM,02/18/2016 06:38:29 PM,02/18/2016 06:52:30 PM,02/18/2016 06:56:52 PM,Code 2 Transport,02/18/2016 07:31:20 PM,100 Block of 29TH ST,San Francisco,94110,B06,11,5576,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7438354653162, -122.423521889173)",160493101-KM11 +131120038,KM15,13037574,Medical Incident,04/22/2013,04/21/2013,04/22/2013 04:18:40 AM,04/22/2013 04:20:09 AM,04/22/2013 04:20:55 AM,04/22/2013 04:21:31 AM,04/22/2013 04:30:25 AM,04/22/2013 04:41:49 AM,04/22/2013 05:13:14 AM,Code 2 Transport,04/22/2013 05:24:37 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",131120038-KM15 +160280952,KM04,16011016,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:25:29 AM,01/28/2016 09:26:14 AM,01/28/2016 09:26:20 AM,01/28/2016 09:28:07 AM,01/28/2016 09:35:36 AM,01/28/2016 09:51:53 AM,01/28/2016 10:15:29 AM,Code 2 Transport,01/28/2016 11:15:25 AM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio,"(37.8066581989584, -122.47471662098)",160280952-KM04 +133450370,88,13117147,Medical Incident,12/11/2013,12/11/2013,12/11/2013 06:38:41 PM,12/11/2013 06:41:22 PM,12/11/2013 06:42:04 PM,12/11/2013 06:42:34 PM,12/11/2013 06:46:14 PM,12/11/2013 07:06:42 PM,12/11/2013 07:21:43 PM,Code 2 Transport,12/11/2013 07:51:04 PM,800 Block of MISSION ST,SF,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7835100715421, -122.405395493939)",133450370-88 +110400259,RS1,11013300,Medical Incident,02/09/2011,02/09/2011,02/09/2011 03:29:13 PM,02/09/2011 03:29:38 PM,02/09/2011 03:29:52 PM,02/09/2011 03:30:18 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,04/25/2016 02:06:10 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,false,,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7751713046069, -122.410385772132)",110400259-RS1 +132280020,E10,13076815,Assist Police,08/16/2013,08/15/2013,08/16/2013 01:41:06 AM,08/16/2013 01:41:31 AM,08/16/2013 01:42:17 AM,08/16/2013 01:44:07 AM,08/16/2013 01:47:13 AM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Fire,08/16/2013 01:52:59 AM,GEARY BL/WOOD ST,SF,94118,B05,10,4455,3,3,3,true,Alarm,1,ENGINE,1,5,2,Presidio Heights,"(37.7823143742059, -122.449079404794)",132280020-E10 +160063337,63,16002576,Traffic Collision,01/06/2016,01/06/2016,01/06/2016 08:05:14 PM,01/06/2016 08:07:37 PM,01/06/2016 08:07:58 PM,01/06/2016 08:09:11 PM,01/06/2016 08:26:38 PM,01/06/2016 08:39:05 PM,01/06/2016 08:56:23 PM,Code 2 Transport,01/06/2016 09:21:03 PM,26TH ST/MISSION ST,San Francisco,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,6,9,Mission,"(37.7490412884368, -122.418135251703)",160063337-63 +131610006,E36,13054535,Medical Incident,06/10/2013,06/09/2013,06/10/2013 12:23:12 AM,06/10/2013 12:24:10 AM,06/10/2013 12:24:32 AM,06/10/2013 12:26:28 AM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/10/2013 12:29:18 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",131610006-E36 +133150011,E23,13106914,Medical Incident,11/11/2013,11/10/2013,11/11/2013 12:55:06 AM,11/11/2013 12:56:51 AM,11/11/2013 12:57:12 AM,11/11/2013 12:58:53 AM,11/11/2013 01:01:27 AM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/11/2013 01:10:22 AM,1600 Block of 48TH AVE,SF,94122,B08,23,7724,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7556706107482, -122.507670205519)",133150011-E23 +133170162,T10,13107717,Alarms,11/13/2013,11/13/2013,11/13/2013 11:51:54 AM,11/13/2013 11:54:13 AM,11/13/2013 11:54:17 AM,11/13/2013 11:55:47 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 12:06:00 PM,3100 Block of WASHINGTON ST,SF,94115,B04,10,4265,3,3,3,true,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7901683360744, -122.445106098836)",133170162-T10 +131690037,68,13057253,Medical Incident,06/18/2013,06/17/2013,06/18/2013 03:32:08 AM,06/18/2013 03:32:36 AM,06/18/2013 03:33:01 AM,06/18/2013 03:33:25 AM,06/18/2013 03:37:15 AM,06/18/2013 04:25:12 AM,06/18/2013 04:46:47 AM,Code 2 Transport,06/18/2013 05:31:01 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",131690037-68 +131760383,T03,13059879,Alarms,06/25/2013,06/25/2013,06/25/2013 08:37:23 PM,06/25/2013 08:38:15 PM,06/25/2013 08:38:25 PM,06/25/2013 08:39:30 PM,06/25/2013 08:41:52 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,06/25/2013 08:42:35 PM,0 Block of PETER YORKE WAY,SF,94109,B04,3,3256,3,3,3,false,Alarm,1,TRUCK,2,4,2,Western Addition,"(37.7859105596723, -122.4240241282)",131760383-T03 +160050362,89,16001851,Medical Incident,01/05/2016,01/04/2016,01/05/2016 04:37:57 AM,01/05/2016 04:42:02 AM,01/05/2016 04:42:31 AM,01/05/2016 04:48:25 AM,01/05/2016 04:49:36 AM,01/05/2016 05:06:34 AM,01/05/2016 05:15:47 AM,Code 2 Transport,01/05/2016 05:35:54 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160050362-89 +160881759,AM10,16034962,Medical Incident,03/28/2016,03/28/2016,03/28/2016 12:45:07 PM,03/28/2016 12:45:07 PM,03/28/2016 12:46:17 PM,03/28/2016 12:46:47 PM,03/28/2016 12:50:30 PM,03/28/2016 12:59:24 PM,03/28/2016 01:29:09 PM,Code 2 Transport,03/28/2016 01:45:02 PM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",160881759-AM10 +130350321,AP,13012096,Other,02/04/2013,02/04/2013,02/04/2013 04:55:41 PM,02/04/2013 04:55:41 PM,02/04/2013 04:55:41 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Fire,02/04/2013 04:55:59 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",130350321-AP +111770418,KM15,11058568,Medical Incident,06/26/2011,06/26/2011,06/26/2011 08:52:37 PM,06/26/2011 08:54:25 PM,06/26/2011 08:54:52 PM,06/26/2011 08:56:46 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Patient Declined Transport,06/26/2011 09:02:11 PM,0 Block of GOLDEN GATE AVE,SF,94102,B03,1,1454,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.782141624229, -122.411246661611)",111770418-KM15 +121570041,KM15,12051836,Medical Incident,06/05/2012,06/04/2012,06/05/2012 03:52:18 AM,06/05/2012 03:53:01 AM,06/05/2012 03:53:48 AM,06/05/2012 03:55:09 AM,06/05/2012 04:01:43 AM,06/05/2012 04:18:57 AM,06/05/2012 04:35:57 AM,Code 2 Transport,06/05/2012 04:59:08 AM,500 Block of LOMBARD ST,SF,94133,B01,28,1346,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8031454516904, -122.410037627418)",121570041-KM15 +121330224,T15,12044297,Alarms,05/12/2012,05/12/2012,05/12/2012 04:05:51 PM,05/12/2012 04:07:20 PM,05/12/2012 04:07:28 PM,05/12/2012 04:08:49 PM,05/12/2012 04:11:59 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 04:25:12 PM,100 Block of APTOS AVE,SF,94127,B09,15,853,3,3,3,false,Alarm,1,TRUCK,2,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",121330224-T15 +112600246,E36,11085797,Medical Incident,09/17/2011,09/17/2011,09/17/2011 02:41:54 PM,09/17/2011 02:44:22 PM,09/17/2011 02:44:32 PM,09/17/2011 02:44:48 PM,09/17/2011 02:46:12 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 03:03:26 PM,OCTAVIA ST/FELL ST,SF,94102,B02,36,3314,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7757539609909, -122.424324651558)",112600246-E36 +133400309,67,13115344,Medical Incident,12/06/2013,12/06/2013,12/06/2013 05:55:05 PM,12/06/2013 05:57:13 PM,12/06/2013 06:17:44 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 06:21:02 PM,24TH ST/CHURCH ST,SF,94114,B06,11,5523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",133400309-67 +140790173,AM08,14026708,Medical Incident,03/20/2014,03/20/2014,03/20/2014 12:29:27 PM,03/20/2014 12:30:48 PM,03/20/2014 12:32:01 PM,03/20/2014 12:32:42 PM,03/20/2014 12:40:10 PM,03/20/2014 01:03:01 PM,03/20/2014 01:17:06 PM,Code 2 Transport,03/20/2014 02:09:03 PM,1200 Block of LAGUNA ST,SAN FRANCISCO,94109,B02,5,3366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",140790173-AM08 +123500061,68,12116936,Medical Incident,12/15/2012,12/14/2012,12/15/2012 04:51:11 AM,12/15/2012 04:53:01 AM,12/15/2012 04:53:31 AM,12/15/2012 04:53:57 AM,12/15/2012 05:01:21 AM,12/15/2012 05:24:46 AM,12/15/2012 05:34:31 AM,Code 2 Transport,12/15/2012 06:01:36 AM,1700 Block of BUSH ST,SF,94109,B04,38,3255,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",123500061-68 +110280295,89,11009317,Medical Incident,01/28/2011,01/28/2011,01/28/2011 07:11:33 PM,01/28/2011 07:12:54 PM,01/28/2011 07:13:26 PM,01/28/2011 07:14:09 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/28/2011 07:14:29 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7803875013555, -122.407877117352)",110280295-89 +160642314,88,16025551,Medical Incident,03/04/2016,03/04/2016,03/04/2016 02:55:05 PM,03/04/2016 02:57:10 PM,03/04/2016 02:57:32 PM,03/04/2016 02:58:23 PM,03/04/2016 03:03:46 PM,03/04/2016 03:18:51 PM,03/04/2016 03:33:52 PM,Code 2 Transport,03/04/2016 04:08:22 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160642314-88 +131570186,T07,13053224,Alarms,06/06/2013,06/06/2013,06/06/2013 12:05:58 PM,06/06/2013 12:06:02 PM,06/06/2013 12:06:08 PM,06/06/2013 12:07:32 PM,06/06/2013 12:09:35 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/06/2013 12:10:47 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",131570186-T07 +160240142,55,16009392,Medical Incident,01/24/2016,01/23/2016,01/24/2016 12:46:27 AM,01/24/2016 12:48:59 AM,01/24/2016 12:49:54 AM,01/24/2016 12:50:13 AM,01/24/2016 01:00:37 AM,01/24/2016 01:04:40 AM,01/24/2016 01:27:08 AM,Code 2 Transport,01/24/2016 02:05:51 AM,200 Block of BAY SHORE BLVD,San Francisco,94110,B10,9,6376,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.744013662148, -122.404748375449)",160240142-55 +160571191,70,16022699,Medical Incident,02/26/2016,02/26/2016,02/26/2016 10:22:14 AM,02/26/2016 10:24:07 AM,02/26/2016 10:31:22 AM,02/26/2016 10:31:36 AM,02/26/2016 10:48:37 AM,02/26/2016 11:06:25 AM,02/26/2016 11:13:53 AM,Code 2 Transport,02/26/2016 12:00:17 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7658582826035, -122.419816092644)",160571191-70 +121370141,60,12045482,Medical Incident,05/16/2012,05/16/2012,05/16/2012 10:22:49 AM,05/16/2012 10:23:39 AM,05/16/2012 10:24:20 AM,05/16/2012 10:25:01 AM,05/16/2012 10:29:39 AM,05/16/2012 10:52:00 AM,05/16/2012 11:04:17 AM,Code 3 Transport,05/16/2012 11:43:13 AM,600 Block of PINE ST,SF,94108,B01,2,1325,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7913438783013, -122.406521512107)",121370141-60 +121820345,82,12060746,Medical Incident,06/30/2012,06/30/2012,06/30/2012 08:42:02 PM,06/30/2012 08:47:26 PM,06/30/2012 08:48:06 PM,06/30/2012 08:48:22 PM,06/30/2012 09:08:17 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Unable to Locate,06/30/2012 09:10:53 PM,5TH ST/MISSION ST,SF,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",121820345-82 +103490162,67,10111907,Medical Incident,12/15/2010,12/15/2010,12/15/2010 11:59:40 AM,12/15/2010 11:59:45 AM,12/15/2010 12:00:02 PM,12/15/2010 12:00:10 PM,12/15/2010 12:03:34 PM,12/15/2010 12:18:12 PM,12/15/2010 12:28:56 PM,Code 2 Transport,12/15/2010 12:56:18 PM,FOLSOM ST/15TH ST,SF,94103,B02,29,5217,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7669370561649, -122.415462127659)",103490162-67 +122950160,96,12097828,Medical Incident,10/21/2012,10/21/2012,10/21/2012 12:33:17 PM,10/21/2012 12:34:15 PM,10/21/2012 12:35:06 PM,10/21/2012 12:35:15 PM,10/21/2012 12:39:53 PM,10/21/2012 12:58:29 PM,10/21/2012 01:21:20 PM,Code 2 Transport,10/21/2012 01:47:43 PM,100 Block of SERRANO DR,SF,94132,B08,19,8426,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7200756028177, -122.478531532675)",122950160-96 +133390143,B04,13114850,Structure Fire,12/05/2013,12/05/2013,12/05/2013 10:29:41 AM,12/05/2013 10:30:50 AM,12/05/2013 10:33:13 AM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Fire,12/05/2013 10:38:31 AM,1500 Block of STOCKTON ST,SF,94133,B01,28,1334,3,3,3,false,Alarm,1,CHIEF,11,1,3,North Beach,"(37.799975359605, -122.40903359976)",133390143-B04 +130320180,57,13010921,Medical Incident,02/01/2013,02/01/2013,02/01/2013 01:27:33 PM,02/01/2013 01:28:38 PM,02/01/2013 01:28:51 PM,02/01/2013 01:29:21 PM,02/01/2013 01:55:59 PM,02/01/2013 02:11:36 PM,02/01/2013 02:43:27 PM,Code 2 Transport,02/01/2013 03:06:16 PM,0 Block of FAXON AVE,SF,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7170178724404, -122.46029636669)",130320180-57 +160763949,KM07,16030367,Medical Incident,03/16/2016,03/16/2016,03/16/2016 09:48:27 PM,03/16/2016 09:48:27 PM,03/16/2016 09:48:27 PM,03/16/2016 09:48:27 PM,03/16/2016 09:48:27 PM,03/16/2016 10:15:20 PM,03/16/2016 10:15:30 PM,Code 2 Transport,03/16/2016 11:14:36 PM,1900 Block of MARKET ST,San Francisco,94103,B99,6,5127,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7692634200467, -122.426480169588)",160763949-KM07 +110900132,92,11029720,Structure Fire,03/31/2011,03/31/2011,03/31/2011 11:20:21 AM,03/31/2011 11:21:42 AM,03/31/2011 11:21:50 AM,03/31/2011 11:22:18 AM,03/31/2011 11:28:54 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Other,03/31/2011 11:28:56 AM,600 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,,1,MEDIC,9,3,6,Financial District/South Beach,"(37.7871121680272, -122.400833489392)",110900132-92 +160421309,84,16016817,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:49:08 AM,02/11/2016 10:49:08 AM,02/11/2016 10:49:39 AM,02/11/2016 10:49:51 AM,02/11/2016 11:02:34 AM,02/11/2016 11:23:45 AM,02/11/2016 11:39:38 AM,Code 2 Transport,02/11/2016 12:13:35 PM,600 Block of KING ST,San Francisco,94107,B03,29,2275,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7705405549826, -122.401653062396)",160421309-84 +133250142,65,13110348,Medical Incident,11/21/2013,11/21/2013,11/21/2013 11:00:39 AM,11/21/2013 11:01:50 AM,11/21/2013 11:04:48 AM,04/25/2016 01:49:39 PM,11/21/2013 11:06:24 AM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Medical Examiner,11/21/2013 12:25:13 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",133250142-65 +121180101,68,12039024,Traffic Collision,04/27/2012,04/27/2012,04/27/2012 08:56:12 AM,04/27/2012 08:58:17 AM,04/27/2012 08:58:41 AM,04/27/2012 08:58:50 AM,04/27/2012 09:04:41 AM,04/27/2012 09:19:26 AM,04/27/2012 09:58:36 AM,Code 2 Transport,04/27/2012 10:19:02 AM,WASHINGTON ST/VAN NESS AV,SF,94109,B04,41,3154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7930500018548, -122.422871202871)",121180101-68 +120910158,KM04,12030102,Medical Incident,03/31/2012,03/31/2012,03/31/2012 12:33:00 PM,03/31/2012 12:33:28 PM,03/31/2012 12:33:52 PM,03/31/2012 12:34:27 PM,03/31/2012 12:39:33 PM,03/31/2012 12:57:08 PM,03/31/2012 01:02:34 PM,Code 2 Transport,03/31/2012 01:32:56 PM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",120910158-KM04 +110670219,E22,11022093,Medical Incident,03/08/2011,03/08/2011,03/08/2011 02:48:22 PM,03/08/2011 02:49:59 PM,03/08/2011 02:58:05 PM,03/08/2011 02:59:18 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 03:07:32 PM,LINCOLN WY/MARTIN LUTHER KING DR,SF,94122,B08,23,7722,2,2,2,true,,1,ENGINE,2,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",110670219-E22 +130190018,AM10,13006375,Medical Incident,01/19/2013,01/18/2013,01/19/2013 12:24:27 AM,01/19/2013 12:26:55 AM,01/19/2013 12:27:42 AM,01/19/2013 12:28:21 AM,01/19/2013 12:35:22 AM,04/25/2016 01:54:44 PM,04/25/2016 01:54:44 PM,Patient Declined Transport,01/19/2013 12:47:29 AM,FRANCISCO ST/TAYLOR ST,SF,94133,B01,28,1433,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.804480983042, -122.415052275362)",130190018-AM10 +133330020,55,13112821,Medical Incident,11/29/2013,11/28/2013,11/29/2013 01:49:53 AM,11/29/2013 01:52:37 AM,11/29/2013 01:53:05 AM,11/29/2013 01:54:16 AM,11/29/2013 01:58:52 AM,11/29/2013 02:16:16 AM,11/29/2013 02:41:49 AM,Code 2 Transport,11/29/2013 02:49:39 AM,DIVISION ST/BRYANT ST,SF,94103,B02,29,5222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7694111910912, -122.410931089145)",133330020-55 +160693966,89,16027683,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:33:39 PM,03/09/2016 11:35:05 PM,03/09/2016 11:35:35 PM,03/09/2016 11:35:48 PM,03/09/2016 11:39:37 PM,03/10/2016 12:14:31 AM,03/10/2016 12:23:53 AM,Code 2 Transport,03/10/2016 01:01:04 AM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160693966-89 +161012513,63,16040261,Medical Incident,04/10/2016,04/10/2016,04/10/2016 05:12:47 PM,04/10/2016 05:13:38 PM,04/10/2016 05:15:02 PM,04/10/2016 05:15:44 PM,04/10/2016 05:29:20 PM,04/10/2016 05:34:39 PM,04/10/2016 06:19:28 PM,Code 3 Transport,04/10/2016 06:54:03 PM,ANZA ST/17TH AV,San Francisco,94121,B07,31,7154,2,2,2,true,Non Life-threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.778553839927, -122.47602527714)",161012513-63 +122460263,E01,12081421,Medical Incident,09/02/2012,09/02/2012,09/02/2012 03:45:41 PM,09/02/2012 03:46:22 PM,09/02/2012 03:46:41 PM,09/02/2012 03:48:38 PM,09/02/2012 03:50:34 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 03:52:55 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",122460263-E01 +140580249,65,14019616,Medical Incident,02/27/2014,02/27/2014,02/27/2014 03:53:23 PM,02/27/2014 03:54:26 PM,02/27/2014 03:55:15 PM,02/27/2014 03:55:30 PM,02/27/2014 04:05:01 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Patient Declined Transport,02/27/2014 04:19:10 PM,400 Block of BALBOA ST,SF,94118,B07,31,7123,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7773135972539, -122.463479596584)",140580249-65 +103180139,B03,10101893,Alarms,11/14/2010,11/14/2010,11/14/2010 10:06:07 AM,11/14/2010 10:06:49 AM,11/14/2010 10:07:01 AM,11/14/2010 10:07:16 AM,11/14/2010 10:10:39 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 10:12:29 AM,600 Block of HARRISON ST,SF,94107,B03,8,2151,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7836226300515, -122.395934034616)",103180139-B03 +122630140,E03,12086827,Medical Incident,09/19/2012,09/19/2012,09/19/2012 11:31:05 AM,09/19/2012 11:31:37 AM,09/19/2012 11:31:46 AM,09/19/2012 11:34:06 AM,09/19/2012 11:35:09 AM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/19/2012 11:48:29 AM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122630140-E03 +122900187,E13,12095968,Medical Incident,10/16/2012,10/16/2012,10/16/2012 11:56:14 AM,10/16/2012 11:57:43 AM,10/16/2012 11:58:13 AM,10/16/2012 11:59:28 AM,10/16/2012 12:01:24 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,No Merit,10/16/2012 12:09:22 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",122900187-E13 +132200285,B01,13074399,Medical Incident,08/08/2013,08/08/2013,08/08/2013 06:31:31 PM,08/08/2013 06:32:02 PM,08/08/2013 06:35:18 PM,08/08/2013 06:36:46 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 06:37:24 PM,700 Block of JACKSON ST,SF,94133,B01,2,1312,E,3,3,false,Potentially Life-Threatening,1,CHIEF,5,1,3,Chinatown,"(37.7959728118622, -122.407508751222)",132200285-B01 +113080041,94,11102215,Medical Incident,11/04/2011,11/03/2011,11/04/2011 05:49:58 AM,11/04/2011 05:51:19 AM,11/04/2011 05:51:59 AM,11/04/2011 05:52:12 AM,11/04/2011 05:55:52 AM,11/04/2011 06:22:12 AM,11/04/2011 06:27:33 AM,Code 2 Transport,11/04/2011 06:46:34 AM,1000 Block of EDDY ST,SF,94109,B02,5,3262,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",113080041-94 +122240172,T14,12074267,Alarms,08/11/2012,08/11/2012,08/11/2012 12:16:40 PM,08/11/2012 12:17:49 PM,08/11/2012 12:17:54 PM,08/11/2012 12:19:25 PM,08/11/2012 12:22:27 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 12:23:02 PM,1100 Block of LAKE ST,SF,94118,B07,31,7137,3,3,3,false,Alarm,1,TRUCK,3,7,2,Inner Richmond,"(37.7864151879281, -122.47165433904)",122240172-T14 +160701722,70,16027858,Medical Incident,03/10/2016,03/10/2016,03/10/2016 01:03:59 PM,03/10/2016 01:03:59 PM,03/10/2016 01:06:45 PM,03/10/2016 01:08:02 PM,03/10/2016 01:20:14 PM,03/10/2016 01:34:21 PM,03/10/2016 02:01:38 PM,Code 2 Transport,03/10/2016 02:38:58 PM,OAKDALE AV/MENDELL ST,San Francisco,94124,B10,17,6534,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7345987087422, -122.390344550544)",160701722-70 +112470056,T03,11081353,Structure Fire,09/04/2011,09/03/2011,09/04/2011 03:01:26 AM,09/04/2011 03:01:29 AM,09/04/2011 03:01:48 AM,09/04/2011 03:02:59 AM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Other,09/04/2011 03:04:40 AM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,,1,TRUCK,2,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",112470056-T03 +160331842,54,16012998,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:50:17 PM,02/02/2016 01:51:35 PM,02/02/2016 01:52:07 PM,02/02/2016 01:52:44 PM,02/02/2016 01:55:27 PM,02/02/2016 02:14:06 PM,02/02/2016 02:19:57 PM,Code 2 Transport,02/02/2016 02:57:51 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160331842-54 +160401919,KM15,16016044,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:26:36 PM,02/09/2016 01:28:29 PM,02/09/2016 01:28:53 PM,02/09/2016 01:29:37 PM,02/09/2016 01:32:59 PM,02/09/2016 01:48:34 PM,02/09/2016 02:08:31 PM,Code 2 Transport,02/09/2016 02:40:49 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",160401919-KM15 +160863586,53,16034357,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:29:16 PM,03/26/2016 09:32:27 PM,03/26/2016 09:33:11 PM,03/26/2016 09:33:21 PM,03/26/2016 09:35:46 PM,03/26/2016 10:12:16 PM,03/26/2016 10:41:46 PM,Code 2 Transport,03/26/2016 11:08:49 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160863586-53 +133590304,E06,13122159,Structure Fire,12/25/2013,12/25/2013,12/25/2013 08:51:34 PM,12/25/2013 08:52:41 PM,12/25/2013 08:55:50 PM,12/25/2013 08:56:30 PM,12/25/2013 08:59:51 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/25/2013 09:55:03 PM,600 Block of BAKER ST,SF,94117,B05,21,4254,3,3,3,true,Fire,3,ENGINE,6,5,5,Western Addition,"(37.7769128700758, -122.441514932109)",133590304-E06 +121390149,E03,12046132,Medical Incident,05/18/2012,05/18/2012,05/18/2012 11:40:39 AM,05/18/2012 11:41:29 AM,05/18/2012 11:42:15 AM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/18/2012 11:53:15 AM,600 Block of MASON ST,SF,94108,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7894926602391, -122.41026951897)",121390149-E03 +160581777,61,16023122,Medical Incident,02/27/2016,02/27/2016,02/27/2016 01:09:26 PM,02/27/2016 01:09:26 PM,02/27/2016 01:10:12 PM,02/27/2016 01:10:39 PM,02/27/2016 01:27:45 PM,02/27/2016 01:31:16 PM,02/27/2016 01:49:03 PM,Code 2 Transport,02/27/2016 02:22:08 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",160581777-61 +160533479,84,16021384,Medical Incident,02/22/2016,02/22/2016,02/22/2016 10:07:26 PM,02/22/2016 10:08:35 PM,02/22/2016 10:09:20 PM,02/22/2016 10:09:31 PM,02/22/2016 10:13:03 PM,02/22/2016 10:27:38 PM,02/22/2016 10:50:03 PM,Code 2 Transport,02/22/2016 11:20:24 PM,TEHAMA ST/2ND ST,San Francisco,94105,B03,1,2146,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7863386154364, -122.39770448764)",160533479-84 +110510148,T11,11016855,Citizen Assist / Service Call,02/20/2011,02/20/2011,02/20/2011 09:52:21 AM,02/20/2011 09:57:08 AM,02/20/2011 09:57:15 AM,04/25/2016 02:05:59 PM,02/20/2011 09:58:20 AM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 10:05:01 AM,19TH ST/VALENCIA ST,SF,94110,B06,7,5434,3,3,3,false,,1,TRUCK,1,6,8,Mission,"(37.7601012942817, -122.42142521264)",110510148-T11 +112760081,E36,11091271,Medical Incident,10/03/2011,10/02/2011,10/03/2011 07:43:32 AM,10/03/2011 07:44:29 AM,10/03/2011 07:45:06 AM,10/03/2011 07:46:23 AM,10/03/2011 07:49:12 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,No Merit,10/03/2011 07:55:48 AM,700 Block of NATOMA ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",112760081-E36 +130070239,T06,13002415,Alarms,01/07/2013,01/07/2013,01/07/2013 02:56:18 PM,01/07/2013 02:57:19 PM,01/07/2013 02:57:30 PM,01/07/2013 02:58:46 PM,01/07/2013 03:00:04 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 03:09:48 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",130070239-T06 +140120163,84,14004134,Medical Incident,01/12/2014,01/12/2014,01/12/2014 01:26:07 PM,01/12/2014 01:26:51 PM,01/12/2014 01:27:00 PM,01/12/2014 01:27:14 PM,01/12/2014 01:30:13 PM,01/12/2014 01:57:30 PM,01/12/2014 02:18:42 PM,Code 2 Transport,01/12/2014 03:04:38 PM,1900 Block of POST ST,SF,94115,B04,5,3622,3,1,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7850500973338, -122.434328328397)",140120163-84 +140540015,E16,14018136,Medical Incident,02/23/2014,02/22/2014,02/23/2014 01:09:19 AM,02/23/2014 01:10:03 AM,02/23/2014 01:11:32 AM,02/23/2014 01:13:05 AM,02/23/2014 01:14:54 AM,04/25/2016 01:48:04 PM,04/25/2016 01:48:04 PM,No Merit,02/23/2014 01:19:42 AM,FILLMORE ST/LOMBARD ST,SF,94123,B04,16,3566,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.7998429502723, -122.436046173981)",140540015-E16 +160610701,55,16024215,Medical Incident,03/01/2016,03/01/2016,03/01/2016 08:17:47 AM,03/01/2016 08:17:47 AM,03/01/2016 08:18:15 AM,03/01/2016 08:19:35 AM,03/01/2016 08:25:29 AM,03/01/2016 08:46:06 AM,03/01/2016 08:46:07 AM,Code 2 Transport,03/01/2016 09:41:02 AM,FOLSOM ST/COLUMBIA SQUARE ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7778565371375, -122.406436335794)",160610701-55 +112510327,E05,11082868,Medical Incident,09/08/2011,09/08/2011,09/08/2011 06:28:18 PM,09/08/2011 06:29:08 PM,09/08/2011 06:29:30 PM,09/08/2011 06:30:47 PM,09/08/2011 06:34:23 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 06:46:34 PM,1800 Block of POST ST,SF,94115,B04,5,3513,3,3,3,true,,1,ENGINE,1,4,5,Japantown,"(37.7853160090058, -122.432236013697)",112510327-E05 +160112474,AM16,16004478,Medical Incident,01/11/2016,01/11/2016,01/11/2016 04:41:05 PM,01/11/2016 04:41:53 PM,01/11/2016 04:42:46 PM,01/11/2016 04:43:24 PM,01/11/2016 04:46:40 PM,01/11/2016 05:06:01 PM,01/11/2016 05:21:25 PM,Code 2 Transport,01/11/2016 05:44:21 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160112474-AM16 +133410233,87,13115661,Medical Incident,12/07/2013,12/07/2013,12/07/2013 02:53:42 PM,12/07/2013 02:57:17 PM,12/07/2013 02:58:44 PM,12/07/2013 02:58:55 PM,12/07/2013 03:02:49 PM,12/07/2013 03:23:46 PM,12/07/2013 03:47:55 PM,Code 2 Transport,12/07/2013 04:23:25 PM,600 Block of LARCH ST,SF,94115,B02,5,3426,B,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",133410233-87 +131470038,E07,13049760,Medical Incident,05/27/2013,05/26/2013,05/27/2013 03:24:38 AM,05/27/2013 03:26:35 AM,05/27/2013 03:26:56 AM,05/27/2013 03:28:19 AM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,Other,05/27/2013 03:31:45 AM,3100 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7524180928571, -122.414623849785)",131470038-E07 +103250170,AM04,10104174,Medical Incident,11/21/2010,11/21/2010,11/21/2010 12:39:52 PM,11/21/2010 12:42:13 PM,11/21/2010 12:43:10 PM,11/21/2010 12:43:46 PM,11/21/2010 12:55:18 PM,11/21/2010 01:08:46 PM,11/21/2010 01:36:53 PM,Code 2 Transport,11/21/2010 02:07:17 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,false,,1,PRIVATE,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",103250170-AM04 +140900244,B09,14030349,Structure Fire,03/31/2014,03/31/2014,03/31/2014 04:23:18 PM,03/31/2014 04:24:03 PM,03/31/2014 04:24:38 PM,03/31/2014 04:25:34 PM,03/31/2014 04:28:04 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Fire,03/31/2014 04:35:21 PM,400 Block of HEAD ST,SAN FRANCISCO,94132,B09,33,8414,3,3,3,false,Alarm,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7152105863899, -122.46434148233)",140900244-B09 +112270409,74,11075216,Medical Incident,08/15/2011,08/15/2011,08/15/2011 11:15:09 PM,08/15/2011 11:15:30 PM,08/15/2011 11:15:36 PM,08/15/2011 11:16:57 PM,08/15/2011 11:20:42 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Medical Examiner,08/16/2011 12:35:31 AM,0 Block of LAFAYETTE ST,SF,94103,B02,36,5116,E,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7730197753185, -122.417140617088)",112270409-74 +112980192,KM15,11098862,Medical Incident,10/25/2011,10/25/2011,10/25/2011 12:39:17 PM,10/25/2011 12:39:59 PM,10/25/2011 12:41:24 PM,10/25/2011 12:41:55 PM,10/25/2011 12:47:19 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,No Merit,10/25/2011 01:27:27 PM,400 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,2,2,2,false,,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7144912745705, -122.455997573047)",112980192-KM15 +160432171,89,16017343,Medical Incident,02/12/2016,02/12/2016,02/12/2016 03:01:34 PM,02/12/2016 03:01:34 PM,02/12/2016 03:01:34 PM,02/12/2016 03:01:34 PM,02/12/2016 03:01:34 PM,02/12/2016 03:20:02 PM,02/12/2016 03:28:34 PM,Code 2 Transport,02/12/2016 04:27:09 PM,MARKET ST/7TH ST,San Francisco,94103,B99,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160432171-89 +130300105,89,13010161,Medical Incident,01/30/2013,01/30/2013,01/30/2013 09:13:02 AM,01/30/2013 09:15:01 AM,01/30/2013 09:15:26 AM,01/30/2013 09:17:43 AM,01/30/2013 09:18:15 AM,01/30/2013 09:51:46 AM,01/30/2013 10:01:10 AM,Code 2 Transport,01/30/2013 10:50:37 AM,17TH ST/FOLSOM ST,SF,94110,B02,7,5424,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.763696767377, -122.415155085854)",130300105-89 +112870405,87,11095338,Medical Incident,10/14/2011,10/14/2011,10/14/2011 09:27:16 PM,10/14/2011 09:27:35 PM,10/14/2011 09:28:17 PM,10/14/2011 09:28:28 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Other,10/14/2011 09:37:17 PM,COLUMBUS AV/BROADWAY,SF,94133,B01,2,1311,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",112870405-87 +120330137,83,12010863,Medical Incident,02/02/2012,02/02/2012,02/02/2012 11:38:32 AM,02/02/2012 11:39:26 AM,02/02/2012 11:40:22 AM,02/02/2012 11:41:40 AM,02/02/2012 11:42:28 AM,02/02/2012 12:17:55 PM,02/02/2012 12:38:59 PM,Code 2 Transport,02/02/2012 01:18:07 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",120330137-83 +160273569,AM22,16010857,Medical Incident,01/27/2016,01/27/2016,01/27/2016 08:37:38 PM,01/27/2016 08:37:38 PM,01/27/2016 08:39:37 PM,01/27/2016 08:40:51 PM,01/27/2016 08:44:11 PM,01/27/2016 09:01:54 PM,01/27/2016 09:06:25 PM,Code 2 Transport,01/27/2016 09:41:10 PM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7888625118319, -122.41521024165)",160273569-AM22 +160561190,65,16022325,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:10:53 AM,02/25/2016 10:12:04 AM,02/25/2016 10:12:37 AM,02/25/2016 10:12:46 AM,02/25/2016 10:16:44 AM,02/25/2016 10:31:10 AM,02/25/2016 10:35:32 AM,Code 2 Transport,02/25/2016 11:14:35 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160561190-65 +160412428,55,16016517,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:41:09 PM,02/10/2016 03:41:54 PM,02/10/2016 03:42:09 PM,02/10/2016 03:42:54 PM,02/10/2016 03:51:22 PM,02/10/2016 04:11:04 PM,02/10/2016 04:31:27 PM,Code 2 Transport,02/10/2016 05:15:23 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160412428-55 +131040293,E01,13035017,Medical Incident,04/14/2013,04/14/2013,04/14/2013 05:46:30 PM,04/14/2013 05:47:53 PM,04/14/2013 05:48:15 PM,04/14/2013 05:49:17 PM,04/14/2013 05:51:41 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 05:56:57 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",131040293-E01 +122300097,54,12076145,Medical Incident,08/17/2012,08/17/2012,08/17/2012 08:04:29 AM,08/17/2012 08:05:15 AM,08/17/2012 08:05:37 AM,08/17/2012 08:05:55 AM,08/17/2012 08:14:59 AM,08/17/2012 08:36:44 AM,08/17/2012 08:42:49 AM,Code 2 Transport,08/17/2012 09:17:32 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122300097-54 +133080276,AP,13104790,Other,11/04/2013,11/04/2013,11/04/2013 04:39:55 PM,11/04/2013 04:39:55 PM,11/04/2013 04:39:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Fire,11/04/2013 04:40:08 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",133080276-AP +160642117,86,16025541,Medical Incident,03/04/2016,03/04/2016,03/04/2016 02:03:11 PM,03/04/2016 02:05:20 PM,03/04/2016 02:05:35 PM,03/04/2016 02:05:46 PM,03/04/2016 02:12:36 PM,03/04/2016 02:29:39 PM,03/04/2016 02:57:00 PM,Code 2 Transport,03/04/2016 03:28:12 PM,0 Block of LAWRENCE AV,San Francisco,94112,B09,33,8354,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7097830658636, -122.451443677544)",160642117-86 +122280064,RC1,12075458,Traffic Collision,08/15/2012,08/14/2012,08/15/2012 06:12:19 AM,08/15/2012 06:12:32 AM,08/15/2012 06:12:48 AM,08/15/2012 06:16:16 AM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/15/2012 06:18:52 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,1,6,Tenderloin,"(37.7859988323798, -122.411747371924)",122280064-RC1 +140460358,86,14015817,Medical Incident,02/15/2014,02/15/2014,02/15/2014 09:48:50 PM,02/15/2014 09:49:03 PM,02/15/2014 09:50:04 PM,02/15/2014 09:50:12 PM,02/15/2014 10:04:05 PM,02/15/2014 10:23:15 PM,02/15/2014 10:36:38 PM,Code 2 Transport,02/15/2014 10:54:53 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140460358-86 +160690502,75,16027348,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:39:41 AM,03/09/2016 06:41:36 AM,03/09/2016 06:42:19 AM,03/09/2016 06:43:19 AM,03/09/2016 06:46:25 AM,03/09/2016 06:48:23 AM,03/09/2016 07:08:58 AM,Code 2 Transport,03/09/2016 07:47:17 AM,2100 Block of POLK ST,San Francisco,94109,B04,41,3126,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7964312666627, -122.421796191236)",160690502-75 +132220387,55,13075137,Medical Incident,08/10/2013,08/10/2013,08/10/2013 10:50:36 PM,08/10/2013 10:50:40 PM,08/10/2013 10:51:01 PM,08/10/2013 10:51:10 PM,08/10/2013 11:01:43 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,No Merit,08/10/2013 11:06:43 PM,15TH ST/POTRERO AV,SF,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7670819828491, -122.407685033247)",132220387-55 +160033445,70,16001418,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:50:46 PM,01/03/2016 11:53:41 PM,01/03/2016 11:54:20 PM,01/03/2016 11:55:10 PM,01/03/2016 11:55:10 PM,01/04/2016 12:25:17 AM,01/04/2016 12:34:33 AM,Code 2 Transport,01/04/2016 01:27:41 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160033445-70 +121440055,85,12047730,Medical Incident,05/23/2012,05/22/2012,05/23/2012 07:08:48 AM,05/23/2012 07:10:51 AM,05/23/2012 07:11:21 AM,05/23/2012 07:11:48 AM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Other,04/25/2016 01:58:33 PM,300 Block of CASTENADA AVE,SF,94116,B08,39,8621,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7459543314229, -122.464661989257)",121440055-85 +111250063,88,11041270,Medical Incident,05/05/2011,05/04/2011,05/05/2011 07:31:28 AM,05/05/2011 07:32:33 AM,05/05/2011 07:32:56 AM,05/05/2011 07:33:10 AM,05/05/2011 07:51:33 AM,05/05/2011 08:07:04 AM,05/05/2011 08:25:41 AM,Code 2 Transport,05/05/2011 08:51:33 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",111250063-88 +123550249,B04,12118859,Alarms,12/20/2012,12/20/2012,12/20/2012 04:49:52 PM,12/20/2012 04:50:48 PM,12/20/2012 04:50:53 PM,12/20/2012 04:52:04 PM,12/20/2012 04:54:06 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 04:59:58 PM,1800 Block of POST ST,SF,94115,B04,5,3513,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.785207581828, -122.432213785968)",123550249-B04 +123100201,T10,12103135,Alarms,11/05/2012,11/05/2012,11/05/2012 01:12:31 PM,11/05/2012 01:14:36 PM,11/05/2012 01:14:54 PM,11/05/2012 01:16:54 PM,11/05/2012 01:18:53 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 01:31:23 PM,100 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,true,Alarm,1,TRUCK,2,7,2,Presidio Heights,"(37.7825976745462, -122.457758842214)",123100201-T10 +130150227,E10,13005144,Medical Incident,01/15/2013,01/15/2013,01/15/2013 02:43:34 PM,01/15/2013 02:44:14 PM,01/15/2013 02:48:52 PM,01/15/2013 02:49:59 PM,01/15/2013 02:54:34 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Other,01/15/2013 03:06:01 PM,0 Block of GALILEE LN,SF,94115,B04,5,3365,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7837879620082, -122.428154523133)",130150227-E10 +160732563,AM20,16029077,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:22:22 PM,03/13/2016 07:23:36 PM,03/13/2016 07:23:52 PM,03/13/2016 07:24:32 PM,03/13/2016 07:28:22 PM,03/13/2016 07:38:45 PM,03/13/2016 07:50:53 PM,Code 2 Transport,03/13/2016 08:25:21 PM,300 Block of OXFORD ST,San Francisco,94134,B09,43,6152,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7255844163016, -122.419071172889)",160732563-AM20 +112350067,E34,11077464,Medical Incident,08/23/2011,08/22/2011,08/23/2011 07:17:44 AM,08/23/2011 07:17:46 AM,08/23/2011 07:18:13 AM,08/23/2011 07:19:37 AM,08/23/2011 07:22:13 AM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Fire,08/23/2011 07:50:53 AM,800 Block of 47TH AVE,SF,94121,B07,34,7277,3,2,2,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7724233373066, -122.507888504201)",112350067-E34 +103150316,89,10101114,Medical Incident,11/11/2010,11/11/2010,11/11/2010 09:46:41 PM,11/11/2010 09:46:41 PM,11/11/2010 09:48:22 PM,11/11/2010 09:48:43 PM,11/11/2010 09:55:50 PM,04/25/2016 02:07:38 PM,04/25/2016 02:07:38 PM,Other,11/11/2010 09:59:36 PM,BUSH ST/SCOTT ST,SF,94115,B04,10,4126,2,2,2,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.78639167377, -122.438393883002)",103150316-89 +131000141,72,13033563,Medical Incident,04/10/2013,04/10/2013,04/10/2013 10:43:03 AM,04/10/2013 10:45:11 AM,04/10/2013 10:45:38 AM,04/10/2013 10:45:47 AM,04/10/2013 10:57:30 AM,04/10/2013 11:12:20 AM,04/10/2013 11:39:49 AM,Code 2 Transport,04/10/2013 12:21:45 PM,0 Block of MIRABEL AVE,SF,94110,B06,11,5657,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7464196657942, -122.416456065811)",131000141-72 +160271389,59,16010634,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:13:20 AM,01/27/2016 11:15:52 AM,01/27/2016 11:16:23 AM,01/27/2016 11:16:29 AM,01/27/2016 11:24:47 AM,01/27/2016 11:52:03 AM,01/27/2016 11:54:13 AM,Code 2 Transport,01/27/2016 01:13:49 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160271389-59 +110070244,89,11002374,Structure Fire,01/07/2011,01/07/2011,01/07/2011 03:39:42 PM,01/07/2011 03:40:34 PM,01/07/2011 03:41:10 PM,01/07/2011 03:41:59 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/07/2011 03:45:22 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,MEDIC,8,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",110070244-89 +110630089,84,11020621,Medical Incident,03/04/2011,03/04/2011,03/04/2011 08:39:11 AM,03/04/2011 08:40:40 AM,03/04/2011 08:40:49 AM,03/04/2011 08:57:00 AM,03/04/2011 09:07:44 AM,03/04/2011 09:35:52 AM,03/04/2011 09:57:03 AM,Code 2 Transport,03/04/2011 10:14:08 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",110630089-84 +160340999,87,16013308,Medical Incident,02/03/2016,02/03/2016,02/03/2016 09:44:52 AM,02/03/2016 09:45:55 AM,02/03/2016 09:46:15 AM,02/03/2016 09:46:39 AM,02/03/2016 09:57:32 AM,02/03/2016 10:17:04 AM,02/03/2016 11:11:50 AM,Code 2 Transport,02/03/2016 11:49:06 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160340999-87 +103190183,KM14,10102249,Medical Incident,11/15/2010,11/15/2010,11/15/2010 12:41:26 PM,11/15/2010 12:42:13 PM,11/15/2010 12:42:36 PM,11/15/2010 12:43:11 PM,11/15/2010 12:46:35 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,No Merit,11/15/2010 12:51:03 PM,TAYLOR ST/SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",103190183-KM14 +110190324,78,11006338,Medical Incident,01/19/2011,01/19/2011,01/19/2011 04:50:15 PM,01/19/2011 04:51:12 PM,01/19/2011 04:51:58 PM,01/19/2011 04:52:09 PM,01/19/2011 04:58:21 PM,01/19/2011 05:08:24 PM,01/19/2011 05:29:01 PM,Code 2 Transport,01/19/2011 06:12:55 PM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7697840925361, -122.449122960735)",110190324-78 +160182255,58,16007296,Medical Incident,01/18/2016,01/18/2016,01/18/2016 04:31:14 PM,01/18/2016 04:31:45 PM,01/18/2016 04:32:00 PM,01/18/2016 04:32:09 PM,01/18/2016 04:35:51 PM,01/18/2016 04:51:07 PM,01/18/2016 05:08:54 PM,Code 2 Transport,01/18/2016 05:57:38 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160182255-58 +160824028,KM03,16032779,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:50:47 PM,03/22/2016 10:51:35 PM,03/22/2016 10:51:44 PM,03/22/2016 10:52:35 PM,03/22/2016 10:57:20 PM,03/22/2016 11:06:46 PM,03/22/2016 11:21:33 PM,Code 2 Transport,03/22/2016 11:51:21 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160824028-KM03 +133320272,E40,13112764,Medical Incident,11/28/2013,11/28/2013,11/28/2013 08:55:40 PM,11/28/2013 08:56:27 PM,11/28/2013 08:56:52 PM,11/28/2013 08:57:44 PM,11/28/2013 08:59:00 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 09:09:43 PM,2200 Block of 17TH AVE,SF,94116,B08,40,7375,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.745945900279, -122.473681166537)",133320272-E40 +102520121,E40,10079572,Medical Incident,09/09/2010,09/09/2010,09/09/2010 10:35:34 AM,09/09/2010 10:36:27 AM,09/09/2010 10:37:32 AM,09/09/2010 10:37:47 AM,09/09/2010 10:40:29 AM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/09/2010 10:54:37 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8641,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",102520121-E40 +133030376,E03,13103091,Medical Incident,10/30/2013,10/30/2013,10/30/2013 10:04:32 PM,10/30/2013 10:07:30 PM,10/30/2013 10:08:31 PM,10/30/2013 10:10:03 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 10:10:15 PM,1500 Block of FILLMORE ST,SF,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,5,Western Addition,"(37.783815387293, -122.432878599409)",133030376-E03 +132650095,66,13089821,Structure Fire,09/22/2013,09/21/2013,09/22/2013 07:56:11 AM,09/22/2013 07:56:11 AM,09/22/2013 08:03:36 AM,09/22/2013 08:03:43 AM,09/22/2013 08:17:16 AM,09/22/2013 08:24:52 AM,09/22/2013 08:43:56 AM,Code 2 Transport,09/22/2013 09:06:41 AM,FULTON ST/LA PLAYA ST,SF,94121,B07,34,7311,3,3,3,true,Alarm,1,MEDIC,1,7,1,Outer Richmond,"(37.7713960328361, -122.509894748816)",132650095-66 +121880255,B02,12062694,Alarms,07/06/2012,07/06/2012,07/06/2012 03:44:01 PM,07/06/2012 03:44:39 PM,07/06/2012 03:44:56 PM,07/06/2012 03:47:17 PM,07/06/2012 03:48:04 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/06/2012 03:52:49 PM,0 Block of 8TH ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,1,2,6,South of Market,"(37.7778103407202, -122.413699499217)",121880255-B02 +160780149,63,16030860,Medical Incident,03/18/2016,03/17/2016,03/18/2016 01:05:08 AM,03/18/2016 01:05:08 AM,03/18/2016 01:07:10 AM,03/18/2016 01:07:20 AM,03/18/2016 01:12:21 AM,03/18/2016 01:55:04 AM,03/18/2016 02:04:48 AM,Code 2 Transport,03/18/2016 02:59:42 AM,VAN NESS AV/GROVE ST,San Francisco,94102,B02,36,3165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",160780149-63 +133110322,79,13105834,Medical Incident,11/07/2013,11/07/2013,11/07/2013 08:39:36 PM,11/07/2013 08:40:23 PM,11/07/2013 08:41:05 PM,11/07/2013 08:42:47 PM,11/07/2013 08:55:30 PM,11/07/2013 09:09:16 PM,11/07/2013 09:28:30 PM,Code 2 Transport,11/07/2013 09:52:36 PM,33RD AV/BALBOA ST,SF,94121,B07,14,7244,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7759105366414, -122.493044230736)",133110322-79 +160882858,AM16,16035051,Medical Incident,03/28/2016,03/28/2016,03/28/2016 05:27:11 PM,03/28/2016 05:27:11 PM,03/28/2016 05:27:46 PM,03/28/2016 05:28:16 PM,03/28/2016 05:39:59 PM,03/28/2016 05:56:51 PM,03/28/2016 06:18:42 PM,Code 2 Transport,03/28/2016 06:40:05 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160882858-AM16 +123480339,AM18,12116489,Water Rescue,12/13/2012,12/13/2012,12/13/2012 08:21:27 PM,12/13/2012 08:22:05 PM,12/13/2012 08:23:05 PM,12/13/2012 08:25:38 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/13/2012 08:25:51 PM,600 Block of THE EMBARCADERO,SF,94111,B01,13,909,A,A,2,false,Fire,1,PRIVATE,14,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",123480339-AM18 +122090342,E33,12069583,Structure Fire,07/27/2012,07/27/2012,07/27/2012 09:52:38 PM,07/27/2012 09:52:38 PM,07/27/2012 09:53:02 PM,07/27/2012 09:54:06 PM,07/27/2012 09:56:49 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 09:57:34 PM,HURON AV/WHIPPLE AV,SF,94112,B09,33,8347,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7121822446382, -122.449415756646)",122090342-E33 +160870722,89,16034481,Medical Incident,03/27/2016,03/26/2016,03/27/2016 06:43:34 AM,03/27/2016 06:45:23 AM,03/27/2016 06:46:00 AM,03/27/2016 06:46:15 AM,03/27/2016 07:00:12 AM,03/27/2016 07:07:43 AM,03/27/2016 07:24:41 AM,Code 2 Transport,03/27/2016 07:49:26 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160870722-89 +160250567,65,16009806,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:44:55 AM,01/25/2016 06:44:55 AM,01/25/2016 06:48:17 AM,01/25/2016 06:48:26 AM,01/25/2016 07:01:00 AM,01/25/2016 07:05:03 AM,01/25/2016 07:55:58 AM,Code 2 Transport,01/25/2016 08:35:09 AM,2000 Block of 46TH AV,San Francisco,94116,B08,23,7663,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7482979255797, -122.505150417113)",160250567-65 +122610281,E37,12086313,Medical Incident,09/17/2012,09/17/2012,09/17/2012 07:53:51 PM,09/17/2012 07:56:04 PM,09/17/2012 07:58:35 PM,09/17/2012 07:59:14 PM,09/17/2012 08:03:18 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,Unable to Locate,09/17/2012 08:08:35 PM,WISCONSIN ST/CONNECTICUT ST,SF,94107,B10,37,2565,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536847460271, -122.398593151785)",122610281-E37 +132670080,E13,13090558,Medical Incident,09/24/2013,09/24/2013,09/24/2013 09:08:08 AM,09/24/2013 09:09:11 AM,09/24/2013 09:09:33 AM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/24/2013 09:10:42 AM,0 Block of BEALE ST,SF,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7918179006358, -122.396549353378)",132670080-E13 +121710149,E10,12056722,Medical Incident,06/19/2012,06/19/2012,06/19/2012 10:57:36 AM,06/19/2012 10:58:49 AM,06/19/2012 11:00:45 AM,06/19/2012 11:02:26 AM,06/19/2012 11:06:42 AM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/19/2012 11:28:29 AM,1300 Block of BUSH ST,SF,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",121710149-E10 +132610254,T19,13088427,Structure Fire,09/18/2013,09/18/2013,09/18/2013 02:46:01 PM,09/18/2013 02:47:44 PM,09/18/2013 02:48:26 PM,09/18/2013 02:51:15 PM,09/18/2013 02:53:39 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 03:53:38 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,Fire,1,TRUCK,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",132610254-T19 +160360964,77,16014158,Traffic Collision,02/05/2016,02/05/2016,02/05/2016 08:39:29 AM,02/05/2016 08:39:53 AM,02/05/2016 08:40:34 AM,02/05/2016 08:40:32 AM,02/05/2016 08:44:27 AM,02/05/2016 09:04:50 AM,02/05/2016 09:25:00 AM,Code 2 Transport,02/05/2016 09:58:28 AM,5TH ST/MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160360964-77 +133590267,RS1,13122130,Traffic Collision,12/25/2013,12/25/2013,12/25/2013 06:34:32 PM,12/25/2013 06:35:17 PM,12/25/2013 06:35:35 PM,12/25/2013 06:36:59 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/25/2013 06:40:25 PM,DIVISADERO ST/OAK ST,SF,94117,B05,21,4141,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,7,5,5,Hayes Valley,"(37.773133492205, -122.437422938764)",133590267-RS1 +110610129,E41,11019957,Medical Incident,03/02/2011,03/02/2011,03/02/2011 09:48:56 AM,03/02/2011 09:49:18 AM,03/02/2011 09:49:38 AM,03/02/2011 09:50:34 AM,03/02/2011 09:52:25 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 10:01:19 AM,1400 Block of POLK ST,SF,94109,B04,3,3122,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7901080617264, -122.420522075876)",110610129-E41 +132650108,RS2,13089833,Structure Fire,09/22/2013,09/22/2013,09/22/2013 08:46:16 AM,09/22/2013 08:46:48 AM,09/22/2013 08:47:06 AM,09/22/2013 08:48:08 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/22/2013 08:51:51 AM,2200 Block of 34TH AVE,SF,94116,B08,18,7545,3,3,3,false,Alarm,1,RESCUE SQUAD,9,8,4,Sunset/Parkside,"(37.7451427563482, -122.491894723267)",132650108-RS2 +140820332,77,14027835,Medical Incident,03/23/2014,03/23/2014,03/23/2014 11:25:54 PM,03/23/2014 11:26:13 PM,03/23/2014 11:27:24 PM,03/23/2014 11:29:54 PM,03/23/2014 11:32:31 PM,03/23/2014 11:44:16 PM,03/23/2014 11:58:59 PM,Code 2 Transport,03/24/2014 12:30:37 AM,300 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",140820332-77 +113260096,79,11108185,Structure Fire,11/22/2011,11/22/2011,11/22/2011 09:02:18 AM,11/22/2011 09:03:48 AM,11/22/2011 09:03:56 AM,11/22/2011 09:04:24 AM,11/22/2011 09:10:19 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 09:15:53 AM,0 Block of SABIN PL,SF,94108,B01,13,1314,3,3,3,true,,1,MEDIC,8,1,3,Chinatown,"(37.7925872402584, -122.406836777622)",113260096-79 +102460223,78,10077760,Medical Incident,09/03/2010,09/03/2010,09/03/2010 01:56:48 PM,09/03/2010 01:56:49 PM,09/03/2010 01:56:49 PM,09/03/2010 01:57:24 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/03/2010 01:59:36 PM,12TH AV/IRVING ST,SF,94122,B08,22,7345,2,2,2,true,,1,MEDIC,1,8,5,Inner Sunset,"(37.7638959454809, -122.469521963382)",102460223-78 +160862515,91,16034244,Medical Incident,03/26/2016,03/26/2016,03/26/2016 04:32:45 PM,03/26/2016 04:33:23 PM,03/26/2016 04:34:25 PM,03/26/2016 04:35:02 PM,03/26/2016 04:55:21 PM,03/26/2016 05:04:24 PM,03/26/2016 05:14:48 PM,Code 2 Transport,03/26/2016 06:02:29 PM,PARK PRESIDIO BL/BALBOA ST,San Francisco,94118,B07,31,7145,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7768682293368, -122.472039541478)",160862515-91 +121190308,T06,12039587,Citizen Assist / Service Call,04/28/2012,04/28/2012,04/28/2012 07:24:00 PM,04/28/2012 07:25:59 PM,04/28/2012 07:26:12 PM,04/28/2012 07:27:20 PM,04/28/2012 07:29:18 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 07:52:05 PM,700 Block of 14TH ST,SF,94114,B02,6,5213,3,3,3,false,Alarm,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7676408778052, -122.429519876751)",121190308-T06 +111590126,T03,11052538,Medical Incident,06/08/2011,06/08/2011,06/08/2011 10:45:19 AM,06/08/2011 10:47:21 AM,06/08/2011 10:47:33 AM,06/08/2011 10:48:00 AM,06/08/2011 10:54:33 AM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/08/2011 10:59:38 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",111590126-T03 +102520013,E12,10079485,Administrative,09/09/2010,09/08/2010,09/09/2010 01:49:56 AM,09/09/2010 01:50:02 AM,09/09/2010 01:50:49 AM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/09/2010 01:52:00 AM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",102520013-E12 +112960226,E01,11098220,Medical Incident,10/23/2011,10/23/2011,10/23/2011 02:35:31 PM,10/23/2011 02:37:17 PM,10/23/2011 02:38:43 PM,10/23/2011 02:39:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 02:53:44 PM,700 Block of 2ND ST,SF,94107,B03,8,2154,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.78019523865, -122.390107968661)",112960226-E01 +132340223,KM01,13079027,Medical Incident,08/22/2013,08/22/2013,08/22/2013 03:00:49 PM,08/22/2013 03:02:43 PM,08/22/2013 03:04:11 PM,08/22/2013 03:04:43 PM,08/22/2013 03:15:12 PM,08/22/2013 03:23:35 PM,08/22/2013 03:32:53 PM,Code 2 Transport,08/22/2013 04:12:19 PM,CESAR CHAVEZ ST/MISSION ST,SF,94110,B06,11,5623,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7481656900206, -122.418221171762)",132340223-KM01 +132770342,E07,13094207,Alarms,10/04/2013,10/04/2013,10/04/2013 05:37:52 PM,10/04/2013 05:39:35 PM,10/04/2013 05:39:46 PM,10/04/2013 05:40:43 PM,10/04/2013 05:43:29 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 05:51:52 PM,800 Block of CAPP ST,SF,94110,B06,7,5511,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.753099980747, -122.417500851184)",132770342-E07 +160090594,79,16003545,Medical Incident,01/09/2016,01/08/2016,01/09/2016 06:30:33 AM,01/09/2016 06:33:10 AM,01/09/2016 06:33:53 AM,01/09/2016 06:34:10 AM,01/09/2016 06:40:13 AM,01/09/2016 07:08:48 AM,01/09/2016 07:55:42 AM,Code 2 Transport,01/09/2016 08:30:54 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160090594-79 +160860472,AM18,16034070,Medical Incident,03/26/2016,03/25/2016,03/26/2016 04:00:28 AM,03/26/2016 04:02:37 AM,03/26/2016 04:03:00 AM,03/26/2016 04:03:42 AM,03/26/2016 04:08:28 AM,03/26/2016 04:18:49 AM,03/26/2016 04:35:20 AM,Code 2 Transport,03/26/2016 05:02:18 AM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",160860472-AM18 +110880255,E32,11029105,Medical Incident,03/29/2011,03/29/2011,03/29/2011 03:50:12 PM,03/29/2011 03:50:57 PM,03/29/2011 03:51:24 PM,03/29/2011 03:52:10 PM,03/29/2011 03:53:54 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Patient Declined Transport,03/29/2011 03:57:02 PM,BONVIEW ST/EUGENIA AV,SF,94110,B06,32,5655,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7407886733558, -122.418347092332)",110880255-E32 +121180051,88,12038985,Medical Incident,04/27/2012,04/26/2012,04/27/2012 04:20:19 AM,04/27/2012 04:22:09 AM,04/27/2012 04:25:11 AM,04/27/2012 04:38:57 AM,04/25/2016 01:58:59 PM,04/27/2012 04:46:39 AM,04/27/2012 04:53:42 AM,Code 2 Transport,04/27/2012 05:36:57 AM,1700 Block of CARROLL AVE,SF,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7261517428574, -122.395553858878)",121180051-88 +160193897,75,16007826,Traffic Collision,01/19/2016,01/19/2016,01/19/2016 11:40:15 PM,01/19/2016 11:40:15 PM,01/19/2016 11:40:23 PM,01/19/2016 11:40:31 PM,01/19/2016 11:45:25 PM,01/20/2016 12:05:54 AM,01/20/2016 12:23:58 AM,Code 2 Transport,01/20/2016 01:04:38 AM,34TH AV/LINCOLN WY,San Francisco,94122,B08,23,7537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7647329133458, -122.493330782166)",160193897-75 +112200302,AM08,11072796,Medical Incident,08/08/2011,08/08/2011,08/08/2011 07:21:15 PM,08/08/2011 07:21:31 PM,08/08/2011 07:21:47 PM,08/08/2011 07:22:18 PM,08/08/2011 07:23:45 PM,08/08/2011 07:32:15 PM,08/08/2011 07:40:53 PM,Code 2 Transport,08/08/2011 08:14:15 PM,TURK ST/LAGUNA ST,SF,94102,B02,5,3411,3,3,3,false,,1,PRIVATE,2,2,5,Western Addition,"(37.7811171261872, -122.427202758133)",112200302-AM08 +160912180,AM10,16036117,Medical Incident,03/31/2016,03/31/2016,03/31/2016 03:06:13 PM,03/31/2016 03:08:35 PM,03/31/2016 03:08:58 PM,03/31/2016 03:09:17 PM,03/31/2016 03:20:33 PM,03/31/2016 03:34:14 PM,03/31/2016 03:54:26 PM,Code 2 Transport,03/31/2016 04:16:05 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",160912180-AM10 +120790388,E36,12026404,Medical Incident,03/19/2012,03/19/2012,03/19/2012 10:58:32 PM,03/19/2012 11:00:04 PM,03/19/2012 11:00:58 PM,03/19/2012 11:02:31 PM,03/19/2012 11:04:12 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/19/2012 11:04:39 PM,0 Block of WASHBURN ST,SF,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7752362231466, -122.414406294791)",120790388-E36 +120050150,B09,12001703,Alarms,01/05/2012,01/05/2012,01/05/2012 11:07:53 AM,01/05/2012 11:08:47 AM,01/05/2012 11:08:56 AM,01/05/2012 11:09:39 AM,01/05/2012 11:14:32 AM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 11:20:20 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",120050150-B09 +160030591,75,16001070,Medical Incident,01/03/2016,01/02/2016,01/03/2016 05:41:25 AM,01/03/2016 05:41:25 AM,01/03/2016 05:41:58 AM,01/03/2016 05:42:11 AM,01/03/2016 05:49:19 AM,01/03/2016 06:00:29 AM,01/03/2016 06:06:43 AM,Code 2 Transport,01/03/2016 06:56:20 AM,3000 Block of GOUGH ST,San Francisco,94123,B04,16,3244,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8013835163609, -122.42785521361)",160030591-75 +131040199,B07,13034933,Structure Fire,04/14/2013,04/14/2013,04/14/2013 12:42:47 PM,04/14/2013 12:43:30 PM,04/14/2013 12:43:39 PM,04/14/2013 12:45:47 PM,04/14/2013 12:48:27 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 12:56:25 PM,0 Block of CLIFFORD TER,SF,94117,B05,12,5165,3,3,3,false,Alarm,1,CHIEF,4,5,8,Castro/Upper Market,"(37.7639520345983, -122.443618523246)",131040199-B07 +131400256,E48,13047460,Alarms,05/20/2013,05/20/2013,05/20/2013 02:05:30 PM,05/20/2013 02:07:03 PM,05/20/2013 02:07:24 PM,05/20/2013 02:08:28 PM,05/20/2013 02:13:12 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,Other,05/20/2013 02:28:33 PM,400 Block of CALIFORNIA AVE,TI,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,2,None,6,Treasure Island,"(37.819133465858, -122.368294852041)",131400256-E48 +160073915,75,16003033,Medical Incident,01/07/2016,01/07/2016,01/07/2016 11:01:45 PM,01/07/2016 11:02:33 PM,01/07/2016 11:04:39 PM,01/07/2016 11:04:46 PM,01/07/2016 11:10:35 PM,01/07/2016 11:27:46 PM,01/07/2016 11:42:28 PM,Code 2 Transport,01/08/2016 12:41:48 AM,1000 Block of CHESTNUT ST,San Francisco,94109,B01,28,1613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8028649959918, -122.420650668279)",160073915-75 +110350279,84,11011564,Medical Incident,02/04/2011,02/04/2011,02/04/2011 04:57:00 PM,02/04/2011 04:58:00 PM,02/04/2011 04:58:28 PM,02/04/2011 04:58:49 PM,02/04/2011 05:10:07 PM,02/04/2011 05:31:07 PM,02/04/2011 05:48:45 PM,Code 2 Transport,02/04/2011 06:20:26 PM,2900 Block of 22ND AVE,SF,94132,B08,19,8732,3,2,2,true,,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7335645188552, -122.477843526592)",110350279-84 +103450153,55,10110553,Medical Incident,12/11/2010,12/11/2010,12/11/2010 10:22:49 AM,12/11/2010 10:23:17 AM,12/11/2010 10:23:38 AM,12/11/2010 10:25:57 AM,12/11/2010 10:27:49 AM,12/11/2010 10:37:04 AM,12/11/2010 10:42:53 AM,Code 3 Transport,12/11/2010 11:17:12 AM,200 Block of 7TH AVE,SF,94118,B07,31,7127,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7838686523601, -122.465631446076)",103450153-55 +120520092,KM15,12017102,Traffic Collision,02/21/2012,02/21/2012,02/21/2012 09:18:26 AM,02/21/2012 09:19:59 AM,02/21/2012 09:20:12 AM,02/21/2012 09:22:14 AM,02/21/2012 09:27:40 AM,02/21/2012 09:44:00 AM,02/21/2012 10:01:14 AM,Code 2 Transport,02/21/2012 10:34:01 AM,8TH ST/HARRISON ST,SF,94103,B03,29,2333,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7737596997868, -122.408516330795)",120520092-KM15 +111960080,AM06,11064623,Medical Incident,07/15/2011,07/15/2011,07/15/2011 09:22:32 AM,07/15/2011 09:23:08 AM,07/15/2011 09:23:21 AM,07/15/2011 09:23:58 AM,07/15/2011 09:28:36 AM,07/15/2011 09:40:38 AM,07/15/2011 10:06:15 AM,Code 2 Transport,07/15/2011 10:46:31 AM,4100 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7399568110921, -122.389027814103)",111960080-AM06 +160123881,52,16004988,Medical Incident,01/12/2016,01/12/2016,01/12/2016 11:22:16 PM,01/12/2016 11:22:16 PM,01/12/2016 11:22:34 PM,01/12/2016 11:22:41 PM,01/12/2016 11:29:32 PM,01/12/2016 11:44:39 PM,01/12/2016 11:47:42 PM,Code 2 Transport,01/13/2016 12:23:00 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160123881-52 +110500096,E01,11016478,Medical Incident,02/19/2011,02/19/2011,02/19/2011 08:11:05 AM,02/19/2011 08:12:01 AM,02/19/2011 08:16:05 AM,02/19/2011 08:17:30 AM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 08:17:57 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110500096-E01 +130710017,54,13023560,Medical Incident,03/12/2013,03/11/2013,03/12/2013 01:28:51 AM,03/12/2013 01:29:10 AM,03/12/2013 01:29:21 AM,03/12/2013 01:29:39 AM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 01:31:04 AM,BAYSHORE BL/ARLETA AV,SF,94134,B10,44,6271,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",130710017-54 +110220051,E01,11007163,Alarms,01/22/2011,01/21/2011,01/22/2011 04:06:44 AM,01/22/2011 04:08:19 AM,01/22/2011 04:08:52 AM,01/22/2011 04:10:49 AM,01/22/2011 04:12:00 AM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/22/2011 04:18:55 AM,500 Block of HOWARD ST,SF,94105,B03,35,2141,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",110220051-E01 +130740270,84,13024747,Medical Incident,03/15/2013,03/15/2013,03/15/2013 04:46:17 PM,03/15/2013 04:47:35 PM,03/15/2013 04:48:14 PM,03/15/2013 04:48:37 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 04:53:48 PM,SAN BRUNO AV/WOOLSEY ST,SF,94134,B10,42,6327,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7252351124965, -122.402600411333)",130740270-84 +122370230,RS2,12078554,Structure Fire,08/24/2012,08/24/2012,08/24/2012 04:00:12 PM,08/24/2012 04:00:29 PM,08/24/2012 04:00:49 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 04:02:21 PM,1300 Block of CASTRO ST,SF,94114,B06,11,5541,3,3,3,false,Fire,1,RESCUE SQUAD,11,6,8,Noe Valley,"(37.7508948687888, -122.434116965108)",122370230-RS2 +140490330,E43,14016780,Medical Incident,02/18/2014,02/18/2014,02/18/2014 07:34:57 PM,02/18/2014 07:37:21 PM,02/18/2014 07:37:56 PM,02/18/2014 07:39:48 PM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,No Merit,02/18/2014 07:43:51 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",140490330-E43 +160332485,63,16013069,Medical Incident,02/02/2016,02/02/2016,02/02/2016 04:49:06 PM,02/02/2016 04:50:52 PM,02/02/2016 04:51:26 PM,02/02/2016 04:52:07 PM,02/02/2016 05:22:25 PM,02/02/2016 05:23:09 PM,02/02/2016 05:28:53 PM,Code 2 Transport,02/02/2016 05:57:58 PM,100 Block of MUSEUM WAY,San Francisco,94114,B05,6,5175,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7646104814141, -122.44014599486)",160332485-63 +121630274,E33,12054114,Medical Incident,06/11/2012,06/11/2012,06/11/2012 04:36:32 PM,06/11/2012 04:38:16 PM,06/11/2012 04:39:31 PM,06/11/2012 04:39:48 PM,06/11/2012 04:44:46 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 04:58:00 PM,300 Block of CHESTER AVE,SF,94132,B09,33,8366,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7092876411084, -122.470335983228)",121630274-E33 +131960237,B07,13066576,Alarms,07/15/2013,07/15/2013,07/15/2013 04:49:52 PM,07/15/2013 04:49:53 PM,07/15/2013 04:50:59 PM,07/15/2013 04:51:50 PM,07/15/2013 05:04:08 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 05:05:12 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",131960237-B07 +120870143,E29,12028839,Citizen Assist / Service Call,03/27/2012,03/27/2012,03/27/2012 12:24:59 PM,03/27/2012 12:27:04 PM,03/27/2012 12:27:16 PM,03/27/2012 12:29:10 PM,03/27/2012 12:32:07 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 12:40:36 PM,800 Block of BRANNAN ST,SF,94103,B03,29,2325,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7722126507146, -122.404363751305)",120870143-E29 +122250008,E07,12074470,Traffic Collision,08/12/2012,08/11/2012,08/12/2012 12:40:15 AM,08/12/2012 12:40:15 AM,08/12/2012 12:40:47 AM,08/12/2012 12:42:11 AM,08/12/2012 12:43:40 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 01:02:53 AM,SOUTH VAN NESS AV/16TH ST,SF,94110,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7651831353816, -122.417486597301)",122250008-E07 +132790043,E34,13094768,Medical Incident,10/06/2013,10/05/2013,10/06/2013 01:48:52 AM,10/06/2013 01:49:19 AM,10/06/2013 01:50:37 AM,10/06/2013 01:52:19 AM,10/06/2013 01:55:28 AM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/06/2013 02:16:18 AM,4400 Block of CABRILLO ST,SF,94121,B07,34,7277,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7733768091246, -122.506280175439)",132790043-E34 +122060149,RS1,12068458,Water Rescue,07/24/2012,07/24/2012,07/24/2012 11:46:10 AM,07/24/2012 11:47:08 AM,07/24/2012 11:51:14 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 12:02:47 PM,EL CAMINO DEL MAR/32ND AV,SF,94121,B07,14,7234,3,3,3,false,Fire,1,RESCUE SQUAD,9,7,2,Seacliff,"(37.7865796540421, -122.493114868138)",122060149-RS1 +112030161,AM08,11066994,Medical Incident,07/22/2011,07/22/2011,07/22/2011 11:10:21 AM,07/22/2011 11:13:03 AM,07/22/2011 11:14:01 AM,07/22/2011 11:14:48 AM,07/22/2011 11:17:19 AM,07/22/2011 11:39:49 AM,07/22/2011 11:53:46 AM,Code 2 Transport,07/22/2011 12:36:38 PM,600 Block of GATES ST,SF,94110,B06,32,5747,3,3,3,false,,1,PRIVATE,1,6,9,Bernal Heights,"(37.7353422472195, -122.414192235461)",112030161-AM08 +160700869,70,16027761,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:07:23 AM,03/10/2016 09:08:52 AM,03/10/2016 09:09:30 AM,03/10/2016 09:09:40 AM,03/10/2016 09:21:38 AM,03/10/2016 09:56:56 AM,03/10/2016 10:19:07 AM,Code 2 Transport,03/10/2016 11:15:15 AM,100 Block of NEWMAN ST,San Francisco,94110,B06,32,5742,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7377912155611, -122.417274171057)",160700869-70 +131390190,AM06,13047006,Medical Incident,05/19/2013,05/19/2013,05/19/2013 11:28:12 AM,05/19/2013 11:28:35 AM,05/19/2013 11:28:53 AM,05/19/2013 11:29:43 AM,05/19/2013 11:32:15 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Patient Declined Transport,05/19/2013 12:30:05 PM,0 Block of LIBERTY ST,SF,94110,B06,7,5456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Mission,"(37.7575809773167, -122.422275311384)",131390190-AM06 +102530342,E32,10080075,Citizen Assist / Service Call,09/10/2010,09/10/2010,09/10/2010 07:59:46 PM,09/10/2010 08:01:50 PM,09/10/2010 08:02:38 PM,09/10/2010 08:03:27 PM,09/10/2010 08:05:09 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Fire,09/10/2010 08:06:00 PM,CRESCENT AV/MURRAY ST,SF,94110,B06,32,5644,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7350581299251, -122.420223758713)",102530342-E32 +112910144,B08,11096537,Alarms,10/18/2011,10/18/2011,10/18/2011 10:39:19 AM,10/18/2011 10:41:52 AM,10/18/2011 10:42:03 AM,10/18/2011 10:46:41 AM,10/18/2011 10:46:48 AM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/18/2011 10:49:26 AM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,3,3,3,false,,1,CHIEF,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",112910144-B08 +160150741,KM08,16005882,Medical Incident,01/15/2016,01/15/2016,01/15/2016 08:15:44 AM,01/15/2016 08:17:18 AM,01/15/2016 08:17:54 AM,01/15/2016 08:19:13 AM,01/15/2016 08:27:12 AM,01/15/2016 08:36:13 AM,01/15/2016 08:57:24 AM,Code 2 Transport,01/15/2016 09:19:49 AM,CHERRY ST/JACKSON ST,San Francisco,94118,B07,10,4442,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7895609147402, -122.45741204464)",160150741-KM08 +122300391,67,12076408,Medical Incident,08/17/2012,08/17/2012,08/17/2012 10:20:50 PM,08/17/2012 10:23:48 PM,08/17/2012 10:25:57 PM,08/17/2012 10:26:05 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 10:26:49 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",122300391-67 +140170305,B01,14005926,Structure Fire,01/17/2014,01/17/2014,01/17/2014 06:56:00 PM,01/17/2014 06:59:15 PM,01/17/2014 06:59:38 PM,01/17/2014 07:01:24 PM,01/17/2014 07:03:17 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 07:24:59 PM,900 Block of GREEN ST,SF,94133,B01,2,1441,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",140170305-B01 +111970359,E15,11065161,Medical Incident,07/16/2011,07/16/2011,07/16/2011 11:14:28 PM,07/16/2011 11:14:55 PM,07/16/2011 11:16:16 PM,07/16/2011 11:17:58 PM,07/16/2011 11:19:41 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 11:38:48 PM,1000 Block of CAPITOL AVE,SF,94112,B09,15,8464,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209306726237, -122.459270472767)",111970359-E15 +160812179,87,16032224,Medical Incident,03/21/2016,03/21/2016,03/21/2016 02:43:47 PM,03/21/2016 02:45:28 PM,03/21/2016 03:03:27 PM,03/21/2016 03:03:47 PM,03/21/2016 03:09:00 PM,03/21/2016 03:32:14 PM,03/21/2016 03:45:39 PM,Code 2 Transport,03/21/2016 04:10:19 PM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",160812179-87 +103090024,E41,10098914,Citizen Assist / Service Call,11/05/2010,11/04/2010,11/05/2010 01:33:59 AM,11/05/2010 01:35:49 AM,11/05/2010 01:36:06 AM,11/05/2010 01:37:55 AM,11/05/2010 01:41:14 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/05/2010 01:41:23 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,ENGINE,2,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",103090024-E41 +103270179,E01,10104763,Outside Fire,11/23/2010,11/23/2010,11/23/2010 01:09:39 PM,11/23/2010 01:10:47 PM,11/23/2010 01:10:59 PM,04/25/2016 02:07:28 PM,11/23/2010 01:13:48 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 01:15:42 PM,4TH ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",103270179-E01 +121610164,E11,12053285,Structure Fire,06/09/2012,06/09/2012,06/09/2012 12:18:30 PM,06/09/2012 12:18:31 PM,06/09/2012 12:18:40 PM,06/09/2012 12:19:07 PM,06/09/2012 12:21:02 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Fire,06/09/2012 12:21:28 PM,23RD ST/DOLORES ST,SF,94110,B06,11,5513,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7534315922902, -122.425302617555)",121610164-E11 +141000063,E29,14033668,Medical Incident,04/10/2014,04/09/2014,04/10/2014 06:33:18 AM,04/10/2014 06:33:51 AM,04/10/2014 06:35:33 AM,04/10/2014 06:35:50 AM,04/10/2014 06:38:47 AM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Code 2 Transport,04/10/2014 06:39:33 AM,400 Block of 7TH ST,SAN FRANCISCO,94103,B03,8,231,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",141000063-E29 +122780097,LR5,12091843,Administrative,10/04/2012,10/04/2012,10/04/2012 09:47:28 AM,10/04/2012 09:48:18 AM,10/04/2012 09:48:42 AM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,Other,10/04/2012 10:13:16 AM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,,1,SUPPORT,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",122780097-LR5 +132160007,94,13072836,Medical Incident,08/04/2013,08/03/2013,08/04/2013 12:23:23 AM,08/04/2013 12:23:23 AM,08/04/2013 12:26:25 AM,04/25/2016 01:51:29 PM,08/04/2013 12:29:09 AM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/04/2013 12:36:05 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",132160007-94 +140830140,88,14027957,Medical Incident,03/24/2014,03/24/2014,03/24/2014 11:50:43 AM,03/24/2014 11:51:45 AM,03/24/2014 11:52:15 AM,03/24/2014 11:54:03 AM,04/25/2016 01:47:35 PM,03/24/2014 12:14:28 PM,03/24/2014 12:27:43 PM,Code 2 Transport,03/24/2014 01:01:49 PM,0 Block of NORTHRIDGE RD,SAN FRANCISCO,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",140830140-88 +132840315,E01,13096735,Alarms,10/11/2013,10/11/2013,10/11/2013 08:21:10 PM,10/11/2013 08:23:22 PM,10/11/2013 08:23:29 PM,10/11/2013 08:24:48 PM,10/11/2013 08:26:16 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/11/2013 08:30:28 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7794880680759, -122.40694292477)",132840315-E01 +140020428,55,14000882,Medical Incident,01/02/2014,01/02/2014,01/02/2014 11:49:19 PM,01/02/2014 11:50:10 PM,01/02/2014 11:50:29 PM,01/02/2014 11:50:45 PM,01/02/2014 11:54:22 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/02/2014 11:59:26 PM,600 Block of POST ST,SF,94109,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7877566203397, -122.413055713332)",140020428-55 +102450409,81,10077497,Medical Incident,09/02/2010,09/02/2010,09/02/2010 06:46:10 PM,09/02/2010 06:46:57 PM,09/02/2010 06:49:15 PM,04/25/2016 02:08:46 PM,09/02/2010 07:05:44 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Patient Declined Transport,09/02/2010 07:33:05 PM,100 Block of NEWMAN ST,SF,94110,B06,32,5742,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.73768216294, -122.417290852491)",102450409-81 +140790177,E33,14026711,Medical Incident,03/20/2014,03/20/2014,03/20/2014 12:38:36 PM,03/20/2014 12:40:25 PM,03/20/2014 12:41:02 PM,03/20/2014 12:42:07 PM,03/20/2014 12:46:14 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Against Medical Advice,03/20/2014 01:08:57 PM,700 Block of MOSCOW ST,SAN FRANCISCO,94134,B09,43,6161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.715844082258, -122.431797985467)",140790177-E33 +132870209,B01,13097644,Alarms,10/14/2013,10/14/2013,10/14/2013 01:36:07 PM,10/14/2013 01:36:07 PM,10/14/2013 01:36:34 PM,10/14/2013 01:38:14 PM,10/14/2013 01:39:01 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 01:40:01 PM,800 Block of JACKSON ST,SF,94108,B01,2,136,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",132870209-B01 +130620377,B01,13020949,Alarms,03/03/2013,03/03/2013,03/03/2013 11:31:43 PM,03/03/2013 11:33:24 PM,03/03/2013 11:33:32 PM,03/03/2013 11:34:23 PM,03/03/2013 11:35:00 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 11:40:14 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",130620377-B01 +121970305,E32,12065621,Structure Fire,07/15/2012,07/15/2012,07/15/2012 08:50:00 PM,07/15/2012 08:51:02 PM,07/15/2012 08:51:17 PM,07/15/2012 08:52:44 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/15/2012 08:57:43 PM,0 Block of MONTEREY BLVD,SF,94131,B09,26,8261,3,3,3,true,Fire,1,ENGINE,9,9,7,West of Twin Peaks,"(37.7316991389715, -122.437042627497)",121970305-E32 +122030208,E15,12067487,Medical Incident,07/21/2012,07/21/2012,07/21/2012 01:53:38 PM,07/21/2012 01:54:12 PM,07/21/2012 01:54:48 PM,07/21/2012 01:56:05 PM,07/21/2012 01:57:24 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 02:06:05 PM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",122030208-E15 +121330367,T13,12044431,Structure Fire,05/12/2012,05/12/2012,05/12/2012 11:06:56 PM,05/12/2012 11:07:00 PM,05/12/2012 11:08:27 PM,05/12/2012 11:10:33 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 11:11:24 PM,MISSION ST/STEUART ST,SF,94105,B03,35,2131,3,3,3,false,Alarm,1,TRUCK,2,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",121330367-T13 +160880208,88,16034798,Medical Incident,03/28/2016,03/27/2016,03/28/2016 01:55:45 AM,03/28/2016 01:58:21 AM,03/28/2016 01:58:32 AM,03/28/2016 01:58:41 AM,03/28/2016 02:02:36 AM,03/28/2016 02:14:29 AM,03/28/2016 02:18:32 AM,Code 2 Transport,03/28/2016 02:43:47 AM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",160880208-88 +112450051,E08,11080665,Medical Incident,09/02/2011,09/01/2011,09/02/2011 06:17:50 AM,09/02/2011 06:20:03 AM,09/02/2011 06:20:13 AM,09/02/2011 06:22:34 AM,09/02/2011 06:25:36 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 06:30:04 AM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",112450051-E08 +110260146,78,11008551,Medical Incident,01/26/2011,01/26/2011,01/26/2011 11:27:09 AM,01/26/2011 11:27:56 AM,01/26/2011 11:28:06 AM,01/26/2011 11:28:57 AM,01/26/2011 11:34:14 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,No Merit,01/26/2011 11:45:11 AM,0 Block of WALLER ST,SF,94102,B02,36,3416,3,3,3,true,,1,MEDIC,2,2,8,Hayes Valley,"(37.7718426817985, -122.424513454999)",110260146-78 +160222181,AM14,16008811,Traffic Collision,01/22/2016,01/22/2016,01/22/2016 03:01:01 PM,01/22/2016 03:01:01 PM,01/22/2016 03:01:01 PM,01/22/2016 03:01:01 PM,01/22/2016 03:01:01 PM,01/22/2016 03:20:47 PM,01/22/2016 03:41:35 PM,Code 2 Transport,01/22/2016 04:13:24 PM,NEW MONTGOMERY ST/MARKET ST,San Francisco,94105,B03,1,2144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",160222181-AM14 +122910069,94,12096251,Medical Incident,10/17/2012,10/17/2012,10/17/2012 08:17:02 AM,10/17/2012 08:17:45 AM,10/17/2012 08:18:06 AM,10/17/2012 08:18:19 AM,10/17/2012 08:28:35 AM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Other,10/17/2012 08:29:08 AM,JOHN MUIR DR/LAKE MERCED BL,SF,,B08,19,8775,3,2,2,false,Potentially Life-Threatening,1,MEDIC,1,None,None,None,"(37.7080857299394, -122.485723865524)",122910069-94 +122310114,E18,12076542,Traffic Collision,08/18/2012,08/18/2012,08/18/2012 10:58:32 AM,08/18/2012 10:59:38 AM,08/18/2012 11:00:07 AM,08/18/2012 11:00:29 AM,08/18/2012 11:02:49 AM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 11:20:02 AM,SUNSET BL/YORBA ST,SF,94116,B08,18,7553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7350234144441, -122.494014875893)",122310114-E18 +130990304,RC3,13033342,Medical Incident,04/09/2013,04/09/2013,04/09/2013 05:18:40 PM,04/09/2013 05:19:11 PM,04/09/2013 05:19:27 PM,04/09/2013 05:19:38 PM,04/09/2013 05:25:58 PM,04/25/2016 01:53:24 PM,04/25/2016 01:53:24 PM,Other,04/09/2013 05:44:21 PM,700 Block of BRUSSELS ST,SF,94134,B10,44,6325,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,10,9,Portola,"(37.7229051925223, -122.403886645844)",130990304-RC3 +122440354,78,12080821,Structure Fire,08/31/2012,08/31/2012,08/31/2012 10:13:05 PM,08/31/2012 10:14:38 PM,08/31/2012 10:15:08 PM,08/31/2012 10:16:15 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,08/31/2012 10:21:42 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,Fire,1,MEDIC,9,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",122440354-78 +113500098,E51,11116047,Alarms,12/16/2011,12/16/2011,12/16/2011 09:41:21 AM,12/16/2011 09:41:49 AM,12/16/2011 09:41:56 AM,12/16/2011 09:43:40 AM,12/16/2011 09:50:45 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/16/2011 10:12:55 AM,900 Block of MARINE DR,PR,94129,B99,51,4628,3,3,3,true,,1,ENGINE,1,None,2,Presidio,"(37.8090855389614, -122.474589992359)",113500098-E51 +132150272,86,13072687,Medical Incident,08/03/2013,08/03/2013,08/03/2013 04:26:41 PM,08/03/2013 04:27:22 PM,08/03/2013 04:27:34 PM,08/03/2013 04:27:48 PM,08/03/2013 04:36:33 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 04:40:29 PM,0 Block of CAMERON WAY,SF,94124,B10,17,6573,3,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",132150272-86 +130690224,KM12,13023078,Medical Incident,03/10/2013,03/10/2013,03/10/2013 04:20:52 PM,03/10/2013 04:28:19 PM,03/10/2013 04:28:40 PM,03/10/2013 04:29:12 PM,03/10/2013 04:49:41 PM,03/10/2013 05:05:10 PM,03/10/2013 05:16:50 PM,Code 2 Transport,03/10/2013 05:41:42 PM,2200 Block of LEAVENWORTH ST,SF,94133,B01,28,1531,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Russian Hill,"(37.8014947900937, -122.417769534292)",130690224-KM12 +160233815,62,16009358,Medical Incident,01/23/2016,01/23/2016,01/23/2016 11:00:05 PM,01/23/2016 11:02:34 PM,01/23/2016 11:02:58 PM,01/23/2016 11:03:06 PM,01/23/2016 11:06:18 PM,01/23/2016 11:30:13 PM,01/23/2016 11:39:08 PM,Code 2 Transport,01/24/2016 12:38:20 AM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160233815-62 +103430120,E41,10109795,Alarms,12/09/2010,12/09/2010,12/09/2010 08:58:50 AM,12/09/2010 09:00:56 AM,12/09/2010 09:01:13 AM,12/09/2010 09:02:17 AM,12/09/2010 09:03:40 AM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/09/2010 09:09:54 AM,1600 Block of LEAVENWORTH ST,SF,94109,B01,41,1534,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7958064032456, -122.416610149911)",103430120-E41 +120440291,E01,12014795,Medical Incident,02/13/2012,02/13/2012,02/13/2012 08:29:24 PM,02/13/2012 08:33:58 PM,02/13/2012 08:34:28 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 08:36:10 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,4,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",120440291-E01 +112430162,E01,11080111,Medical Incident,08/31/2011,08/31/2011,08/31/2011 11:22:28 AM,08/31/2011 11:22:48 AM,08/31/2011 11:23:54 AM,08/31/2011 11:25:46 AM,08/31/2011 11:28:24 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,08/31/2011 11:43:38 AM,800 Block of HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112430162-E01 +160772973,66,16030708,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:06:48 PM,03/17/2016 05:06:48 PM,03/17/2016 05:07:06 PM,03/17/2016 05:07:57 PM,03/17/2016 05:21:53 PM,03/17/2016 05:40:34 PM,03/17/2016 06:04:55 PM,Code 2 Transport,03/17/2016 06:44:32 PM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",160772973-66 +160463361,53,16018664,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:05:27 PM,02/15/2016 08:07:11 PM,02/15/2016 08:07:40 PM,02/15/2016 08:07:53 PM,02/15/2016 08:12:19 PM,02/15/2016 08:33:14 PM,02/15/2016 08:58:34 PM,Code 2 Transport,02/15/2016 09:28:10 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160463361-53 +111340152,79,11044545,Medical Incident,05/14/2011,05/14/2011,05/14/2011 12:46:05 PM,05/14/2011 12:48:17 PM,05/14/2011 12:48:27 PM,04/25/2016 02:04:38 PM,05/14/2011 12:55:35 PM,05/14/2011 01:18:40 PM,05/14/2011 01:51:21 PM,Code 2 Transport,05/14/2011 02:15:57 PM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,1,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",111340152-79 +111220297,E10,11040409,Medical Incident,05/02/2011,05/02/2011,05/02/2011 06:19:35 PM,05/02/2011 06:21:48 PM,05/02/2011 06:22:41 PM,05/02/2011 06:23:39 PM,05/02/2011 06:26:46 PM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,05/02/2011 06:40:21 PM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,true,,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",111220297-E10 +120340043,E40,12011145,Traffic Collision,02/03/2012,02/02/2012,02/03/2012 04:41:33 AM,02/03/2012 04:42:44 AM,02/03/2012 04:43:31 AM,02/03/2012 04:44:42 AM,02/03/2012 04:46:10 AM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/03/2012 05:22:28 AM,2300 Block of 19TH AVE,SF,94116,B08,40,7416,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7439803947416, -122.475835562635)",120340043-E40 +133380292,54,13114643,Medical Incident,12/04/2013,12/04/2013,12/04/2013 06:29:44 PM,12/04/2013 06:29:45 PM,12/04/2013 06:30:49 PM,12/04/2013 06:31:05 PM,12/04/2013 06:47:40 PM,12/04/2013 07:02:06 PM,12/04/2013 07:25:45 PM,Code 2 Transport,12/04/2013 07:50:38 PM,VARENNES ST/UNION ST,SF,94133,B01,28,1252,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8007368354101, -122.406801051908)",133380292-54 +132370326,81,13080085,Medical Incident,08/25/2013,08/25/2013,08/25/2013 08:04:02 PM,08/25/2013 08:04:31 PM,08/25/2013 08:23:33 PM,08/25/2013 08:28:28 PM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Other,08/25/2013 08:28:52 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",132370326-81 +120180034,T08,12005905,Structure Fire,01/18/2012,01/17/2012,01/18/2012 04:01:21 AM,01/18/2012 04:01:22 AM,01/18/2012 04:01:29 AM,01/18/2012 04:02:42 AM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Other,01/18/2012 04:05:28 AM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7777990101501, -122.40029776053)",120180034-T08 +130500029,87,13016893,Medical Incident,02/19/2013,02/18/2013,02/19/2013 04:39:48 AM,02/19/2013 04:40:43 AM,02/19/2013 04:43:08 AM,04/25/2016 01:54:13 PM,02/19/2013 04:55:26 AM,02/19/2013 05:04:41 AM,02/19/2013 05:18:01 AM,Code 2 Transport,02/19/2013 05:30:22 AM,900 Block of SILVER AVE,SF,94134,B09,42,635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.728861421632, -122.416687260507)",130500029-87 +121340215,KM02,12044639,Medical Incident,05/13/2012,05/13/2012,05/13/2012 03:46:22 PM,05/13/2012 03:46:47 PM,05/13/2012 03:47:01 PM,05/13/2012 03:47:38 PM,05/13/2012 03:55:31 PM,05/13/2012 04:10:04 PM,05/13/2012 04:18:44 PM,Code 2 Transport,05/13/2012 04:52:01 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",121340215-KM02 +160870709,85,16034480,Medical Incident,03/27/2016,03/26/2016,03/27/2016 06:35:47 AM,03/27/2016 06:38:16 AM,03/27/2016 06:38:56 AM,03/27/2016 06:39:14 AM,03/27/2016 06:43:28 AM,03/27/2016 06:59:13 AM,03/27/2016 07:21:22 AM,Code 2 Transport,03/27/2016 08:17:23 AM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160870709-85 +110650356,79,11021609,Medical Incident,03/06/2011,03/06/2011,03/06/2011 09:23:38 PM,03/06/2011 09:25:41 PM,03/06/2011 09:26:01 PM,03/06/2011 09:26:16 PM,03/06/2011 09:30:52 PM,03/06/2011 09:44:32 PM,03/06/2011 10:02:56 PM,Code 3 Transport,03/06/2011 10:27:43 PM,1200 Block of JONES ST,SF,94108,B01,41,1465,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7930122510265, -122.414357638755)",110650356-79 +111110229,T03,11036692,Medical Incident,04/21/2011,04/21/2011,04/21/2011 02:52:14 PM,04/21/2011 02:52:50 PM,04/21/2011 02:53:07 PM,04/21/2011 02:54:21 PM,04/21/2011 02:58:42 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/21/2011 03:03:59 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",111110229-T03 +130770191,E31,13025717,Medical Incident,03/18/2013,03/18/2013,03/18/2013 12:52:34 PM,03/18/2013 12:54:05 PM,03/18/2013 12:54:37 PM,03/18/2013 12:56:18 PM,03/18/2013 01:00:37 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 02:35:44 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7694537012686, -122.469609049655)",130770191-E31 +132640174,E41,13089494,Other,09/21/2013,09/21/2013,09/21/2013 10:55:53 AM,09/21/2013 10:56:07 AM,09/21/2013 10:56:20 AM,09/21/2013 10:57:08 AM,09/21/2013 11:03:49 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Fire,09/21/2013 11:37:40 AM,1700 Block of HYDE ST,SF,94109,B01,41,1566,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.7968133507148, -122.418496319534)",132640174-E41 +160831406,57,16032916,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:00:07 AM,03/23/2016 11:00:07 AM,03/23/2016 11:00:56 AM,03/23/2016 11:01:09 AM,03/23/2016 11:18:44 AM,03/23/2016 11:33:31 AM,03/23/2016 11:42:58 AM,Code 2 Transport,03/23/2016 12:24:13 PM,COLUMBUS AV/FILBERT ST,San Francisco,94133,B01,28,1351,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.8011251306762, -122.411376271747)",160831406-57 +103650332,E31,10117226,Medical Incident,12/31/2010,12/31/2010,12/31/2010 09:30:30 PM,12/31/2010 09:31:12 PM,12/31/2010 09:31:31 PM,12/31/2010 09:32:06 PM,12/31/2010 09:34:02 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 09:49:18 PM,400 Block of 15TH AVE,SF,94118,B07,31,7154,3,2,2,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",103650332-E31 +112670306,E38,11088332,Smoke Investigation (Outside),09/24/2011,09/24/2011,09/24/2011 06:07:42 PM,09/24/2011 06:08:32 PM,09/24/2011 06:09:18 PM,09/24/2011 06:10:15 PM,09/24/2011 06:12:24 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,No Merit,09/24/2011 06:16:21 PM,1700 Block of PACIFIC AVE,SF,94109,B04,38,3231,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7946580988231, -122.424038521298)",112670306-E38 +110670337,B04,11022194,Alarms,03/08/2011,03/08/2011,03/08/2011 09:41:02 PM,03/08/2011 09:41:50 PM,03/08/2011 09:42:03 PM,03/08/2011 09:43:49 PM,03/08/2011 09:47:02 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/08/2011 09:51:42 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,CHIEF,3,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",110670337-B04 +160774008,KM07,16030798,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:27:51 PM,03/17/2016 09:27:51 PM,03/17/2016 09:28:45 PM,03/17/2016 09:30:23 PM,03/17/2016 09:31:56 PM,03/17/2016 09:49:55 PM,03/17/2016 10:14:46 PM,Code 2 Transport,03/17/2016 10:53:46 PM,2000 Block of VICENTE ST,San Francisco,94116,B08,18,7547,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7386791207414, -122.488817872407)",160774008-KM07 +160780578,62,16030914,Medical Incident,03/18/2016,03/17/2016,03/18/2016 06:15:00 AM,03/18/2016 06:16:59 AM,03/18/2016 06:17:13 AM,03/18/2016 06:17:37 AM,03/18/2016 06:19:46 AM,03/18/2016 06:43:31 AM,03/18/2016 06:53:02 AM,Code 2 Transport,03/18/2016 07:18:43 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160780578-62 +133340256,E02,13113307,Alarms,11/30/2013,11/30/2013,11/30/2013 05:01:51 PM,11/30/2013 05:03:17 PM,11/30/2013 05:03:23 PM,11/30/2013 05:05:10 PM,11/30/2013 05:06:01 PM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,11/30/2013 05:11:50 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",133340256-E02 +113270352,82,11108712,Medical Incident,11/23/2011,11/23/2011,11/23/2011 11:18:49 PM,11/23/2011 11:20:02 PM,11/23/2011 11:20:17 PM,11/23/2011 11:20:24 PM,11/23/2011 11:21:59 PM,11/23/2011 11:46:38 PM,11/23/2011 11:56:54 PM,Code 2 Transport,11/24/2011 12:27:20 AM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",113270352-82 +140730301,RS1,14024743,Structure Fire,03/14/2014,03/14/2014,03/14/2014 05:34:19 PM,03/14/2014 05:34:48 PM,03/14/2014 05:35:22 PM,03/14/2014 05:36:27 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Fire,03/14/2014 05:42:21 PM,JONES ST/JEFFERSON ST,SAN FRANCISCO,94133,B01,28,945,3,3,3,false,Fire,1,RESCUE SQUAD,13,1,3,North Beach,"(37.8080133240409, -122.417445939002)",140730301-RS1 +131590354,E06,13054172,Medical Incident,06/08/2013,06/08/2013,06/08/2013 10:18:36 PM,06/08/2013 10:19:27 PM,06/08/2013 10:19:47 PM,06/08/2013 10:22:05 PM,06/08/2013 10:23:48 PM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/08/2013 10:25:34 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",131590354-E06 +112820159,E23,11093313,Medical Incident,10/09/2011,10/09/2011,10/09/2011 12:04:32 PM,10/09/2011 12:04:32 PM,10/09/2011 12:04:32 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 12:26:52 PM,1200 Block of 44TH AVE,SF,94122,B08,23,7654,2,2,2,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7633235426802, -122.503913503953)",112820159-E23 +110570302,T03,11018856,Medical Incident,02/26/2011,02/26/2011,02/26/2011 07:12:27 PM,02/26/2011 07:14:38 PM,02/26/2011 07:14:59 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,Other,04/25/2016 02:05:53 PM,1000 Block of FRANKLIN ST,SF,94109,B02,3,3221,3,3,3,false,,1,TRUCK,2,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",110570302-T03 +140600390,RC3,14020442,Medical Incident,03/01/2014,03/01/2014,03/01/2014 09:30:31 PM,03/01/2014 09:30:54 PM,03/01/2014 09:32:17 PM,03/01/2014 09:33:35 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Patient Declined Transport,03/01/2014 09:36:57 PM,1000 Block of WISCONSIN ST,SF,94107,B10,37,2565,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Potrero Hill,"(37.7542876781547, -122.398580716544)",140600390-RC3 +160073527,78,16002996,Medical Incident,01/07/2016,01/07/2016,01/07/2016 08:48:32 PM,01/07/2016 08:49:47 PM,01/07/2016 08:50:05 PM,01/07/2016 08:50:46 PM,01/07/2016 08:57:17 PM,01/07/2016 09:25:25 PM,01/07/2016 09:31:53 PM,Code 2 Transport,01/07/2016 10:20:56 PM,MISSION ST/6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160073527-78 +130910324,E01,13030569,Medical Incident,04/01/2013,04/01/2013,04/01/2013 06:45:46 PM,04/01/2013 06:46:54 PM,04/01/2013 06:48:29 PM,04/01/2013 06:49:03 PM,04/01/2013 06:54:22 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,No Merit,04/01/2013 06:55:03 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",130910324-E01 +102320316,RC1,10073123,Medical Incident,08/20/2010,08/20/2010,08/20/2010 07:11:51 PM,08/20/2010 07:13:16 PM,08/20/2010 07:13:56 PM,04/25/2016 02:08:59 PM,08/20/2010 07:17:14 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/20/2010 07:46:07 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,true,,1,RESCUE CAPTAIN,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",102320316-RC1 +112570068,T05,11084653,Other,09/14/2011,09/14/2011,09/14/2011 08:26:13 AM,09/14/2011 08:26:29 AM,09/14/2011 08:26:36 AM,04/25/2016 02:02:41 PM,09/14/2011 08:29:03 AM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/14/2011 09:22:47 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",112570068-T05 +132660123,RS1,13090197,Medical Incident,09/23/2013,09/23/2013,09/23/2013 09:54:55 AM,09/23/2013 09:56:29 AM,09/23/2013 09:56:43 AM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/23/2013 09:57:40 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132660123-RS1 +120900109,E06,12029733,Medical Incident,03/30/2012,03/30/2012,03/30/2012 09:30:12 AM,03/30/2012 09:30:39 AM,03/30/2012 09:31:10 AM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,Other,03/30/2012 09:32:03 AM,300 Block of GOUGH ST,SF,94102,B02,36,3265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7761916214672, -122.422766863019)",120900109-E06 +131410380,67,13047944,Medical Incident,05/21/2013,05/21/2013,05/21/2013 09:12:52 PM,05/21/2013 09:13:50 PM,05/21/2013 09:14:29 PM,05/21/2013 09:14:45 PM,05/21/2013 09:16:19 PM,05/21/2013 09:34:30 PM,05/21/2013 09:49:54 PM,Code 2 Transport,05/21/2013 10:13:10 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7862985138478, -122.408477809664)",131410380-67 +113330312,85,11110419,Medical Incident,11/29/2011,11/29/2011,11/29/2011 08:29:58 PM,11/29/2011 08:30:05 PM,11/29/2011 08:30:36 PM,11/29/2011 08:34:31 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/29/2011 08:36:39 PM,700 Block of GRANT AVE,SF,94108,B01,13,1313,2,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7940392610273, -122.406331131515)",113330312-85 +160732049,65,16029034,Medical Incident,03/13/2016,03/13/2016,03/13/2016 04:45:53 PM,03/13/2016 04:47:10 PM,03/13/2016 04:47:49 PM,03/13/2016 04:47:55 PM,03/13/2016 04:58:25 PM,03/13/2016 05:17:35 PM,03/13/2016 05:24:28 PM,Code 2 Transport,03/13/2016 06:06:29 PM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",160732049-65 +131010345,89,13034084,Medical Incident,04/11/2013,04/11/2013,04/11/2013 08:38:54 PM,04/11/2013 08:39:48 PM,04/11/2013 08:40:22 PM,04/11/2013 08:41:06 PM,04/11/2013 09:03:09 PM,04/11/2013 09:26:39 PM,04/11/2013 09:47:31 PM,Code 2 Transport,04/11/2013 10:23:09 PM,1300 Block of JUNIPERO SERRA BLVD,SF,94132,B08,33,8773,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7140264592051, -122.471722049026)",131010345-89 +122600267,57,12086019,Medical Incident,09/16/2012,09/16/2012,09/16/2012 07:08:16 PM,09/16/2012 07:09:13 PM,09/16/2012 07:10:24 PM,09/16/2012 07:10:30 PM,09/16/2012 07:15:15 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,Patient Declined Transport,09/16/2012 07:46:20 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",122600267-57 +110360282,94,11011907,Medical Incident,02/05/2011,02/05/2011,02/05/2011 03:40:53 PM,02/05/2011 03:42:17 PM,02/05/2011 03:42:49 PM,04/25/2016 02:06:14 PM,02/05/2011 03:50:14 PM,02/05/2011 03:54:27 PM,02/05/2011 04:12:48 PM,Code 3 Transport,02/05/2011 04:39:51 PM,3100 Block of 16TH ST,SF,94103,B02,6,5235,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7648681454287, -122.423612806769)",110360282-94 +140830103,52,14027927,Medical Incident,03/24/2014,03/24/2014,03/24/2014 09:59:25 AM,03/24/2014 10:04:22 AM,03/24/2014 10:04:39 AM,03/24/2014 10:05:41 AM,03/24/2014 10:16:31 AM,03/24/2014 10:27:09 AM,03/24/2014 10:39:52 AM,Code 2 Transport,03/24/2014 11:07:43 AM,1300 Block of THOMAS AVE,SAN FRANCISCO,94124,B10,17,6547,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",140830103-52 +131980148,E01,13067115,Medical Incident,07/17/2013,07/17/2013,07/17/2013 12:25:10 PM,07/17/2013 12:26:27 PM,07/17/2013 12:26:48 PM,07/17/2013 12:27:30 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/17/2013 12:29:30 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",131980148-E01 +131100187,AM02,13037013,Medical Incident,04/20/2013,04/20/2013,04/20/2013 12:39:34 PM,04/20/2013 12:40:19 PM,04/20/2013 12:40:45 PM,04/20/2013 12:41:43 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/20/2013 12:46:23 PM,POLK ST/AUSTIN ST,SF,94109,B04,3,3122,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7891650930566, -122.420401246671)",131100187-AM02 +160123183,72,16004903,Medical Incident,01/12/2016,01/12/2016,01/12/2016 07:08:32 PM,01/12/2016 07:10:07 PM,01/12/2016 07:11:20 PM,01/12/2016 07:11:42 PM,01/12/2016 07:18:13 PM,01/12/2016 07:38:05 PM,01/12/2016 07:45:13 PM,Code 2 Transport,01/12/2016 08:22:32 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160123183-72 +130960082,77,13032101,Medical Incident,04/06/2013,04/05/2013,04/06/2013 06:10:17 AM,04/06/2013 06:10:54 AM,04/06/2013 06:12:56 AM,04/06/2013 06:12:56 AM,04/06/2013 06:17:49 AM,04/06/2013 06:27:45 AM,04/06/2013 06:38:35 AM,Code 2 Transport,04/06/2013 07:14:51 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130960082-77 +160712248,68,16028291,Medical Incident,03/11/2016,03/11/2016,03/11/2016 03:33:45 PM,03/11/2016 03:34:16 PM,03/11/2016 03:34:59 PM,03/11/2016 03:35:06 PM,03/11/2016 03:39:25 PM,03/11/2016 04:06:30 PM,03/11/2016 04:21:39 PM,Code 2 Transport,03/11/2016 05:00:40 PM,MAIN ST/MISSION ST,San Francisco,94105,B03,35,2116,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",160712248-68 +110900079,E01,11029680,Medical Incident,03/31/2011,03/31/2011,03/31/2011 08:42:58 AM,03/31/2011 08:44:07 AM,03/31/2011 08:44:40 AM,04/25/2016 02:05:21 PM,03/31/2011 08:49:26 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Patient Declined Transport,03/31/2011 09:19:19 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110900079-E01 +160350458,63,16013684,Medical Incident,02/04/2016,02/03/2016,02/04/2016 05:49:13 AM,02/04/2016 05:51:42 AM,02/04/2016 05:52:11 AM,02/04/2016 05:52:38 AM,02/04/2016 05:55:56 AM,02/04/2016 06:25:54 AM,02/04/2016 06:35:33 AM,Code 2 Transport,02/04/2016 07:13:34 AM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160350458-63 +110060233,65,11002007,Medical Incident,01/06/2011,01/06/2011,01/06/2011 02:35:50 PM,01/06/2011 02:36:17 PM,01/06/2011 02:36:35 PM,01/06/2011 02:37:08 PM,01/06/2011 02:39:56 PM,01/06/2011 02:56:59 PM,01/06/2011 03:20:10 PM,Code 2 Transport,01/06/2011 03:36:25 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",110060233-65 +131740314,88,13059171,Traffic Collision,06/23/2013,06/23/2013,06/23/2013 07:33:06 PM,06/23/2013 07:33:49 PM,06/23/2013 07:34:19 PM,06/23/2013 07:34:26 PM,06/23/2013 07:39:57 PM,06/23/2013 08:03:04 PM,06/23/2013 08:06:58 PM,Code 2 Transport,06/23/2013 08:30:40 PM,1400 Block of TAYLOR ST,SF,94133,B01,2,1443,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7956320137041, -122.413345327793)",131740314-88 +112280011,71,11075231,Medical Incident,08/16/2011,08/15/2011,08/16/2011 12:42:46 AM,08/16/2011 12:44:10 AM,08/16/2011 12:44:31 AM,08/16/2011 12:45:13 AM,08/16/2011 12:55:05 AM,08/16/2011 01:13:10 AM,08/16/2011 01:23:44 AM,Code 2 Transport,08/16/2011 01:54:40 AM,1700 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",112280011-71 +122370240,E29,12078562,Medical Incident,08/24/2012,08/24/2012,08/24/2012 04:31:08 PM,08/24/2012 04:32:18 PM,08/24/2012 04:32:30 PM,08/24/2012 04:33:42 PM,08/24/2012 04:37:21 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 04:50:20 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",122370240-E29 +131890300,E06,13064520,Odor (Strange / Unknown),07/08/2013,07/08/2013,07/08/2013 06:43:05 PM,07/08/2013 06:45:48 PM,07/08/2013 06:46:08 PM,07/08/2013 06:47:37 PM,07/08/2013 06:50:08 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/08/2013 06:55:03 PM,500 Block of SCOTT ST,SF,94117,B05,21,4136,3,3,3,true,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7747500421845, -122.435966327435)",131890300-E06 +160810381,AM20,16032052,Medical Incident,03/21/2016,03/20/2016,03/21/2016 04:55:55 AM,03/21/2016 04:59:57 AM,03/21/2016 05:01:32 AM,03/21/2016 05:02:20 AM,03/21/2016 05:05:53 AM,03/21/2016 05:08:38 AM,03/21/2016 05:32:35 AM,Code 2 Transport,03/21/2016 05:34:05 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",160810381-AM20 +110780340,58,11025801,Medical Incident,03/19/2011,03/19/2011,03/19/2011 09:26:21 PM,03/19/2011 09:27:22 PM,03/19/2011 09:28:02 PM,03/19/2011 09:28:56 PM,03/19/2011 09:45:20 PM,03/19/2011 10:07:04 PM,03/19/2011 10:24:27 PM,Code 2 Transport,03/19/2011 10:56:24 PM,1500 Block of POLK ST,SF,94109,B04,41,3123,3,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7910457707698, -122.420711946021)",110780340-58 +160213880,60,16008572,Medical Incident,01/21/2016,01/21/2016,01/21/2016 09:48:53 PM,01/21/2016 09:50:45 PM,01/21/2016 09:51:04 PM,01/21/2016 09:51:10 PM,01/21/2016 10:00:32 PM,01/21/2016 10:32:20 PM,01/21/2016 10:46:52 PM,Code 2 Transport,01/21/2016 11:24:57 PM,1400 Block of 19TH AV,San Francisco,94122,B08,22,7423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7607582384443, -122.477052170071)",160213880-60 +140630293,E36,14021366,Medical Incident,03/04/2014,03/04/2014,03/04/2014 04:57:26 PM,03/04/2014 04:59:18 PM,03/04/2014 04:59:49 PM,03/04/2014 05:03:23 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Code 2 Transport,03/04/2014 05:07:12 PM,0 Block of FELL ST,SF,94102,B02,36,3111,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7764405100838, -122.418481123408)",140630293-E36 +113280291,77,11108983,Medical Incident,11/24/2011,11/24/2011,11/24/2011 10:07:10 PM,11/24/2011 10:07:16 PM,11/24/2011 10:07:31 PM,11/24/2011 10:08:29 PM,11/24/2011 10:13:42 PM,11/24/2011 10:24:55 PM,11/24/2011 10:26:35 PM,Code 2 Transport,11/24/2011 11:00:12 PM,200 Block of DIVISADERO ST,SF,94117,B05,21,4144,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7717499829743, -122.437022956853)",113280291-77 +140770083,T08,14025986,Medical Incident,03/18/2014,03/18/2014,03/18/2014 08:53:49 AM,03/18/2014 08:55:39 AM,03/18/2014 08:56:08 AM,03/18/2014 08:57:47 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Code 3 Transport,03/18/2014 08:58:58 AM,500 Block of 5TH ST,SAN FRANCISCO,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",140770083-T08 +120110218,E11,12003837,Medical Incident,01/11/2012,01/11/2012,01/11/2012 03:44:44 PM,01/11/2012 03:45:31 PM,01/11/2012 03:46:00 PM,01/11/2012 03:47:07 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 03:50:16 PM,3800 Block of MISSION ST,SF,94110,B06,32,5632,3,1,2,true,Non Life-threatening,1,ENGINE,2,6,8,Bernal Heights,"(37.7357299122271, -122.424651160697)",120110218-E11 +140550186,E05,14018576,Medical Incident,02/24/2014,02/24/2014,02/24/2014 01:51:33 PM,02/24/2014 01:53:41 PM,02/24/2014 01:53:51 PM,02/24/2014 01:55:18 PM,02/24/2014 01:56:40 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Fire,02/24/2014 02:00:37 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",140550186-E05 +120600047,54,12019641,Medical Incident,02/29/2012,02/28/2012,02/29/2012 06:05:57 AM,02/29/2012 06:06:38 AM,02/29/2012 06:06:48 AM,02/29/2012 06:08:10 AM,02/29/2012 06:13:29 AM,02/29/2012 06:29:43 AM,02/29/2012 06:38:15 AM,Code 3 Transport,02/29/2012 07:10:37 AM,100 Block of COUNTRY CLUB DR,SF,94132,B08,19,8826,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.730788409194, -122.496687609617)",120600047-54 +123420211,E35,12114166,Administrative,12/07/2012,12/07/2012,12/07/2012 12:46:06 PM,12/07/2012 12:46:09 PM,12/07/2012 12:47:19 PM,12/07/2012 12:47:54 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 12:48:00 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",123420211-E35 +160502319,76,16020144,Medical Incident,02/19/2016,02/19/2016,02/19/2016 03:34:03 PM,02/19/2016 03:35:13 PM,02/19/2016 03:35:33 PM,02/19/2016 03:35:42 PM,02/19/2016 03:40:12 PM,02/19/2016 03:49:32 PM,02/19/2016 04:02:13 PM,Code 2 Transport,02/19/2016 04:20:35 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160502319-76 +132260033,T11,13076175,Elevator / Escalator Rescue,08/14/2013,08/13/2013,08/14/2013 03:34:09 AM,08/14/2013 03:35:53 AM,08/14/2013 03:36:50 AM,08/14/2013 03:38:44 AM,08/14/2013 03:44:11 AM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Fire,08/14/2013 03:55:48 AM,100 Block of PORTOLA DR,SF,94131,B06,24,5354,3,3,3,false,Alarm,1,TRUCK,1,6,8,Twin Peaks,"(37.7484965077695, -122.444276468858)",132260033-T11 +133330052,E01,13112849,Structure Fire,11/29/2013,11/28/2013,11/29/2013 05:01:53 AM,11/29/2013 05:02:34 AM,11/29/2013 05:02:59 AM,11/29/2013 05:05:01 AM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/29/2013 05:10:28 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,8,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",133330052-E01 +102640170,T02,10083537,Alarms,09/21/2010,09/21/2010,09/21/2010 12:44:00 PM,09/21/2010 12:45:55 PM,09/21/2010 12:46:06 PM,09/21/2010 12:47:50 PM,09/21/2010 12:49:57 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 01:03:30 PM,2200 Block of STOCKTON ST,SF,94133,B01,28,1341,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.8065039063876, -122.410335822065)",102640170-T02 +130060230,E19,13002112,Medical Incident,01/06/2013,01/06/2013,01/06/2013 04:52:47 PM,01/06/2013 04:53:37 PM,01/06/2013 04:53:58 PM,01/06/2013 04:55:37 PM,01/06/2013 04:57:08 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 05:07:10 PM,19TH AV/OCEAN AV,SF,94132,B08,19,7413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7324561388297, -122.474954620812)",130060230-E19 +130390332,94,13013432,Medical Incident,02/08/2013,02/08/2013,02/08/2013 07:06:42 PM,02/08/2013 07:07:37 PM,02/08/2013 07:12:00 PM,04/25/2016 01:54:23 PM,02/08/2013 07:19:59 PM,02/08/2013 07:37:33 PM,02/08/2013 07:44:42 PM,Code 2 Transport,02/08/2013 08:21:18 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760099210785, -122.412889415461)",130390332-94 +140640354,E36,14021794,Medical Incident,03/05/2014,03/05/2014,03/05/2014 09:47:11 PM,03/05/2014 09:47:16 PM,03/05/2014 09:48:03 PM,03/05/2014 09:49:23 PM,03/05/2014 09:54:05 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Code 3 Transport,03/05/2014 09:56:31 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",140640354-E36 +160912990,88,16036196,Medical Incident,03/31/2016,03/31/2016,03/31/2016 06:25:21 PM,03/31/2016 06:27:51 PM,03/31/2016 06:28:05 PM,03/31/2016 06:28:12 PM,03/31/2016 06:32:22 PM,03/31/2016 06:40:30 PM,03/31/2016 06:57:29 PM,Code 2 Transport,03/31/2016 07:31:28 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563716216308, -122.416574134534)",160912990-88 +131260364,RS1,13042720,Structure Fire,05/06/2013,05/06/2013,05/06/2013 07:46:03 PM,05/06/2013 07:47:12 PM,05/06/2013 07:47:26 PM,05/06/2013 07:48:18 PM,05/06/2013 07:53:08 PM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/06/2013 07:53:35 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,RESCUE SQUAD,9,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",131260364-RS1 +160821357,50,16032528,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:11:56 AM,03/22/2016 11:12:52 AM,03/22/2016 11:13:05 AM,03/22/2016 11:13:12 AM,03/22/2016 11:19:29 AM,03/22/2016 12:00:04 PM,03/22/2016 12:17:13 PM,Code 2 Transport,03/22/2016 01:12:07 PM,0 Block of MONTANA ST,San Francisco,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7166742986629, -122.455048913828)",160821357-50 +160013790,72,16000528,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:23:49 PM,01/01/2016 10:23:49 PM,01/01/2016 10:24:17 PM,01/01/2016 10:25:43 PM,01/01/2016 10:31:19 PM,01/01/2016 10:39:34 PM,01/01/2016 10:47:28 PM,Code 3 Transport,01/01/2016 11:28:08 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,A,E,3,true,Potentially Life-Threatening,1,MEDIC,5,6,9,Bernal Heights,"(37.7330187796563, -122.416499861858)",160013790-72 +133000249,E14,13102001,Traffic Collision,10/27/2013,10/27/2013,10/27/2013 03:57:07 PM,10/27/2013 03:58:38 PM,10/27/2013 04:00:11 PM,10/27/2013 04:01:01 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 04:04:41 PM,GEARY BL/11TH AV,SF,94118,B07,31,7141,3,3,3,true,Non Life-threatening,1,ENGINE,4,7,1,Inner Richmond,"(37.7807687380348, -122.469627030052)",133000249-E14 +130410237,E23,13014071,Administrative,02/10/2013,02/10/2013,02/10/2013 04:35:03 PM,02/10/2013 04:35:17 PM,02/10/2013 04:36:07 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Fire,02/10/2013 04:36:35 PM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",130410237-E23 +130790164,E06,13026380,Medical Incident,03/20/2013,03/20/2013,03/20/2013 12:47:09 PM,03/20/2013 12:49:20 PM,03/20/2013 12:49:30 PM,03/20/2013 12:50:25 PM,03/20/2013 12:56:16 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 01:04:39 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",130790164-E06 +160032980,60,16001357,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:44:43 PM,01/03/2016 08:45:50 PM,01/03/2016 08:46:02 PM,01/03/2016 08:46:14 PM,01/03/2016 08:54:40 PM,01/03/2016 09:50:13 PM,01/03/2016 09:20:52 PM,Code 2 Transport,01/03/2016 10:08:25 PM,100 Block of THORNTON AVE,San Francisco,94124,B10,17,6513,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7308811280003, -122.393441784119)",160032980-60 +160103469,KM07,16004202,Medical Incident,01/10/2016,01/10/2016,01/10/2016 10:33:22 PM,01/10/2016 10:33:22 PM,01/10/2016 10:33:36 PM,01/10/2016 10:34:12 PM,01/10/2016 10:37:02 PM,01/10/2016 10:44:00 PM,01/10/2016 11:09:44 PM,Code 2 Transport,01/10/2016 11:52:54 PM,POLK ST/POST ST,San Francisco,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",160103469-KM07 +130750180,82,13025030,Medical Incident,03/16/2013,03/16/2013,03/16/2013 01:38:18 PM,03/16/2013 01:39:13 PM,03/16/2013 01:42:29 PM,03/16/2013 01:42:46 PM,03/16/2013 01:58:26 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Unable to Locate,03/16/2013 02:00:14 PM,600 Block of POST ST,SF,94102,B01,3,1451,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7877770164282, -122.41201048788)",130750180-82 +103300274,T01,10105734,Medical Incident,11/26/2010,11/26/2010,11/26/2010 07:04:23 PM,11/26/2010 07:04:54 PM,11/26/2010 07:05:17 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 07:05:54 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,,1,TRUCK,4,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",103300274-T01 +121240041,88,12041048,Medical Incident,05/03/2012,05/02/2012,05/03/2012 03:33:13 AM,05/03/2012 03:35:26 AM,05/03/2012 03:36:28 AM,05/03/2012 03:36:34 AM,05/03/2012 03:46:19 AM,05/03/2012 03:58:44 AM,05/03/2012 04:06:34 AM,Code 2 Transport,05/03/2012 04:29:33 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121240041-88 +160380895,AM04,16015118,Medical Incident,02/07/2016,02/06/2016,02/07/2016 07:25:09 AM,02/07/2016 07:25:09 AM,02/07/2016 07:25:53 AM,02/07/2016 07:26:31 AM,02/07/2016 07:28:07 AM,02/07/2016 07:36:04 AM,02/07/2016 08:01:55 AM,Code 2 Transport,02/07/2016 08:26:30 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160380895-AM04 +133030304,84,13103024,Medical Incident,10/30/2013,10/30/2013,10/30/2013 06:00:44 PM,10/30/2013 06:02:09 PM,10/30/2013 06:02:22 PM,10/30/2013 06:02:36 PM,10/30/2013 06:07:27 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,No Merit,10/30/2013 06:28:21 PM,2200 Block of BRYANT ST,SF,94110,B06,7,5474,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7580152328846, -122.409672653063)",133030304-84 +112810181,E28,11093000,Medical Incident,10/08/2011,10/08/2011,10/08/2011 12:25:28 PM,10/08/2011 12:26:45 PM,10/08/2011 12:28:22 PM,10/08/2011 12:29:19 PM,10/08/2011 12:30:57 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Other,10/08/2011 12:33:41 PM,300 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8057759671113, -122.412787887195)",112810181-E28 +112590175,E07,11085385,Medical Incident,09/16/2011,09/16/2011,09/16/2011 11:57:29 AM,09/16/2011 11:58:15 AM,09/16/2011 11:59:12 AM,09/16/2011 12:00:00 PM,09/16/2011 12:02:03 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/16/2011 12:14:00 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",112590175-E07 +160554271,89,16022195,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:47:08 PM,02/24/2016 11:47:34 PM,02/24/2016 11:47:45 PM,02/24/2016 11:47:56 PM,02/24/2016 11:51:09 PM,02/24/2016 11:59:10 PM,02/25/2016 12:16:49 AM,Code 2 Transport,02/25/2016 12:51:32 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7291630976058, -122.382538001818)",160554271-89 +160642996,KM06,16025613,Medical Incident,03/04/2016,03/04/2016,03/04/2016 05:55:38 PM,03/04/2016 05:56:45 PM,03/04/2016 05:57:34 PM,03/04/2016 05:58:18 PM,03/04/2016 06:02:06 PM,03/04/2016 06:17:42 PM,03/04/2016 06:45:00 PM,Code 2 Transport,03/04/2016 07:03:59 PM,1200 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",160642996-KM06 +140120272,86,14004238,Medical Incident,01/12/2014,01/12/2014,01/12/2014 07:38:10 PM,01/12/2014 07:38:39 PM,01/12/2014 07:39:08 PM,01/12/2014 07:39:40 PM,01/12/2014 07:43:03 PM,01/12/2014 07:55:24 PM,01/12/2014 08:12:41 PM,Code 2 Transport,01/12/2014 08:28:49 PM,MARIPOSA ST/ARKANSAS ST,SF,94107,B03,29,2425,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.7637357276639, -122.398580416512)",140120272-86 +140230273,E03,14007941,Medical Incident,01/23/2014,01/23/2014,01/23/2014 06:37:58 PM,01/23/2014 06:38:42 PM,01/23/2014 06:39:34 PM,01/23/2014 06:40:52 PM,01/23/2014 06:42:14 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 06:55:09 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",140230273-E03 +121840081,88,12061206,Medical Incident,07/02/2012,07/02/2012,07/02/2012 09:11:34 AM,07/02/2012 09:12:38 AM,07/02/2012 09:12:48 AM,07/02/2012 09:13:09 AM,07/02/2012 09:16:48 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Patient Declined Transport,07/02/2012 09:31:30 AM,1400 Block of 24TH AVE,SF,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7605331235034, -122.482217550798)",121840081-88 +140400352,E22,14013719,Medical Incident,02/09/2014,02/09/2014,02/09/2014 08:00:38 PM,02/09/2014 08:01:18 PM,02/09/2014 08:02:03 PM,02/09/2014 08:03:03 PM,02/09/2014 08:04:11 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/09/2014 08:35:47 PM,1400 Block of LINCOLN WAY,SF,94122,B08,22,7367,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7655073554414, -122.473477522814)",140400352-E22 +160093206,60,16003786,Medical Incident,01/09/2016,01/09/2016,01/09/2016 08:17:24 PM,01/09/2016 08:19:20 PM,01/09/2016 08:19:33 PM,01/09/2016 08:19:44 PM,01/09/2016 08:31:47 PM,01/09/2016 09:12:51 PM,01/09/2016 09:18:38 PM,Code 2 Transport,01/09/2016 10:01:43 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160093206-60 +132690036,T03,13091233,Medical Incident,09/26/2013,09/25/2013,09/26/2013 02:28:03 AM,09/26/2013 02:28:04 AM,09/26/2013 02:28:18 AM,09/26/2013 02:30:20 AM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/26/2013 02:31:28 AM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,1,1,2,false,Non Life-threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",132690036-T03 +160360497,63,16014110,Medical Incident,02/05/2016,02/04/2016,02/05/2016 04:50:13 AM,02/05/2016 04:52:21 AM,02/05/2016 04:54:40 AM,02/05/2016 04:54:40 AM,02/05/2016 04:55:04 AM,02/05/2016 05:07:25 AM,02/05/2016 05:12:43 AM,Code 2 Transport,02/05/2016 05:55:15 AM,CESAR CHAVEZ ST/INDIANA ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7501183410943, -122.390433038827)",160360497-63 +122550392,81,12084463,Traffic Collision,09/11/2012,09/11/2012,09/11/2012 10:06:01 PM,09/11/2012 10:06:43 PM,09/11/2012 10:08:51 PM,09/11/2012 10:09:21 PM,09/11/2012 10:12:58 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Against Medical Advice,09/11/2012 10:20:08 PM,200 Block of OCEAN AVE,SF,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7232033054721, -122.442927356983)",122550392-81 +112870260,KM04,11095200,Traffic Collision,10/14/2011,10/14/2011,10/14/2011 02:31:26 PM,10/14/2011 02:32:42 PM,10/14/2011 02:33:25 PM,10/14/2011 02:36:15 PM,10/14/2011 02:40:55 PM,10/14/2011 02:54:03 PM,10/14/2011 03:25:17 PM,Code 2 Transport,10/14/2011 04:12:42 PM,LAKE ST/PARK PRESIDIO BL,SF,94118,B07,31,7152,3,3,3,false,,1,PRIVATE,5,7,1,Inner Richmond,"(37.7863148047473, -122.472625789135)",112870260-KM04 +110140146,E03,11004620,Medical Incident,01/14/2011,01/14/2011,01/14/2011 12:05:34 PM,01/14/2011 12:07:31 PM,01/14/2011 12:08:07 PM,01/14/2011 12:08:49 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 12:15:04 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110140146-E03 +133420364,E03,13116125,Medical Incident,12/08/2013,12/08/2013,12/08/2013 09:08:04 PM,12/08/2013 09:09:56 PM,12/08/2013 09:13:15 PM,04/25/2016 01:49:22 PM,12/08/2013 09:17:39 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Fire,12/08/2013 09:26:25 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",133420364-E03 +160151506,82,16005965,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:44:40 AM,01/15/2016 11:45:25 AM,01/15/2016 11:45:55 AM,01/15/2016 11:46:19 AM,01/15/2016 11:58:31 AM,01/15/2016 12:16:32 PM,01/15/2016 12:47:23 PM,Code 2 Transport,01/15/2016 01:39:00 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160151506-82 +160731025,AM08,16028939,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:33:08 AM,03/13/2016 11:34:04 AM,03/13/2016 11:34:26 AM,03/13/2016 11:35:00 AM,03/13/2016 11:41:30 AM,03/13/2016 12:01:17 PM,03/13/2016 12:21:06 PM,Code 2 Transport,03/13/2016 12:46:46 PM,SACRAMENTO ST/MONTGOMERY ST,San Francisco,94104,B01,13,1166,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7937798566723, -122.402957361388)",160731025-AM08 +160120971,62,16004701,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:27:39 AM,01/12/2016 09:29:34 AM,01/12/2016 09:31:10 AM,01/12/2016 09:31:17 AM,01/12/2016 09:39:45 AM,01/12/2016 09:54:41 AM,01/12/2016 10:24:13 AM,Code 2 Transport,01/12/2016 11:00:53 AM,200 Block of OAK PARK DR,San Francisco,94131,B08,20,5367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7546835865431, -122.45712997517)",160120971-62 +160480088,64,16019181,Medical Incident,02/17/2016,02/16/2016,02/17/2016 12:43:46 AM,02/17/2016 12:43:46 AM,02/17/2016 12:45:42 AM,02/17/2016 12:47:33 AM,02/17/2016 12:57:58 AM,02/17/2016 01:24:52 AM,02/17/2016 01:24:53 AM,Code 2 Transport,02/17/2016 02:03:31 AM,1500 Block of BRODERICK ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7845624883046, -122.441511182007)",160480088-64 +102790049,E01,10088602,Medical Incident,10/06/2010,10/05/2010,10/06/2010 06:51:30 AM,10/06/2010 06:52:29 AM,10/06/2010 06:52:45 AM,10/06/2010 06:54:46 AM,10/06/2010 06:57:35 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 07:07:44 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",102790049-E01 +160433342,89,16017452,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:10:57 PM,02/12/2016 08:10:57 PM,02/12/2016 08:11:27 PM,02/12/2016 08:11:42 PM,02/12/2016 08:22:05 PM,02/12/2016 08:35:11 PM,02/12/2016 08:43:23 PM,Code 2 Transport,02/12/2016 09:24:41 PM,WOODSIDE AV/IDORA AV,San Francisco,94131,B08,39,8645,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7461061692082, -122.454664096247)",160433342-89 +160112641,67,16004491,Medical Incident,01/11/2016,01/11/2016,01/11/2016 05:27:20 PM,01/11/2016 05:28:43 PM,01/11/2016 05:29:09 PM,01/11/2016 05:31:01 PM,01/11/2016 05:34:03 PM,01/11/2016 05:52:21 PM,01/11/2016 06:12:48 PM,Code 2 Transport,01/11/2016 06:34:09 PM,1500 Block of 33RD AV,San Francisco,94122,B08,18,7542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7582349331221, -122.491870947353)",160112641-67 +110640041,E41,11020959,Structure Fire,03/05/2011,03/04/2011,03/05/2011 02:09:14 AM,03/05/2011 02:09:57 AM,03/05/2011 02:10:20 AM,03/05/2011 02:11:28 AM,03/05/2011 02:13:25 AM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Other,03/05/2011 02:23:41 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",110640041-E41 +132470191,E43,13083335,Medical Incident,09/04/2013,09/04/2013,09/04/2013 12:55:46 PM,09/04/2013 12:57:06 PM,09/04/2013 12:57:22 PM,09/04/2013 12:57:40 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,04/25/2016 01:50:58 PM,200 Block of LOWELL ST,SF,94112,B09,33,6215,2,E,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7095150306277, -122.445417504906)",132470191-E43 +132150223,81,13072643,Medical Incident,08/03/2013,08/03/2013,08/03/2013 02:15:20 PM,08/03/2013 02:17:22 PM,08/03/2013 02:17:50 PM,08/03/2013 02:17:58 PM,08/03/2013 02:29:10 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Unable to Locate,08/03/2013 02:41:05 PM,100 Block of LARKIN ST,SF,94102,B02,36,1647,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",132150223-81 +123450039,KM15,12115215,Medical Incident,12/10/2012,12/09/2012,12/10/2012 02:52:36 AM,12/10/2012 02:55:11 AM,12/10/2012 02:56:59 AM,12/10/2012 02:59:38 AM,12/10/2012 03:06:06 AM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Patient Declined Transport,12/10/2012 04:48:15 AM,1100 Block of BURROWS ST,SF,94134,B09,42,6345,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7263897103659, -122.414778117583)",123450039-KM15 +103210357,55,10103025,Medical Incident,11/17/2010,11/17/2010,11/17/2010 09:38:39 PM,11/17/2010 09:40:44 PM,11/17/2010 09:41:47 PM,11/17/2010 10:09:37 PM,11/17/2010 10:28:54 PM,11/17/2010 10:32:47 PM,11/17/2010 10:39:24 PM,Code 2 Transport,11/17/2010 11:05:23 PM,ELLIS ST/POWELL ST,SF,94102,B03,1,1322,1,1,2,true,,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",103210357-55 +110300071,RC3,11009761,Medical Incident,01/30/2011,01/29/2011,01/30/2011 04:26:09 AM,01/30/2011 04:27:23 AM,01/30/2011 04:27:59 AM,01/30/2011 04:36:52 AM,01/30/2011 04:43:10 AM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Other,01/30/2011 04:50:07 AM,100 Block of UTAH ST,SF,94103,B02,29,2351,3,3,3,true,,1,RESCUE CAPTAIN,5,2,10,Mission,"(37.7677826861899, -122.406668803339)",110300071-RC3 +160053249,88,16002147,Traffic Collision,01/05/2016,01/05/2016,01/05/2016 07:51:56 PM,01/05/2016 07:51:56 PM,01/05/2016 07:52:01 PM,01/05/2016 07:52:10 PM,01/05/2016 07:58:09 PM,01/05/2016 08:12:30 PM,01/05/2016 08:34:12 PM,Code 2 Transport,01/05/2016 09:26:45 PM,200 Block of JACKSON ST,San Francisco,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7969058696574, -122.400105396177)",160053249-88 +132540019,55,13085670,Medical Incident,09/11/2013,09/10/2013,09/11/2013 01:17:35 AM,09/11/2013 01:17:35 AM,09/11/2013 01:20:09 AM,09/11/2013 01:20:20 AM,09/11/2013 01:23:53 AM,09/11/2013 01:48:27 AM,09/11/2013 02:01:39 AM,Code 2 Transport,09/11/2013 02:23:27 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",132540019-55 +103450051,94,10110470,Traffic Collision,12/11/2010,12/10/2010,12/11/2010 02:47:38 AM,12/11/2010 02:49:41 AM,12/11/2010 02:52:59 AM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 03:05:16 AM,100 Block of AVENUE C,SF,94130,B02,9,2626,2,3,3,true,,1,MEDIC,8,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",103450051-94 +130300401,E10,13010409,Medical Incident,01/30/2013,01/30/2013,01/30/2013 10:52:40 PM,01/30/2013 10:53:20 PM,01/30/2013 10:54:16 PM,01/30/2013 10:56:10 PM,01/30/2013 10:58:07 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/30/2013 11:14:17 PM,0 Block of EMERSON ST,SF,94118,B05,10,4455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7830736887057, -122.448251712623)",130300401-E10 +130790361,E20,13026556,Traffic Collision,03/20/2013,03/20/2013,03/20/2013 09:39:18 PM,03/20/2013 09:39:43 PM,03/20/2013 09:46:05 PM,03/20/2013 09:48:11 PM,03/20/2013 09:52:07 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 10:33:26 PM,VICENTE ST/WEST PORTAL AV,SF,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7397235005071, -122.466991014067)",130790361-E20 +103590213,E03,10115258,Medical Incident,12/25/2010,12/25/2010,12/25/2010 03:05:31 PM,12/25/2010 03:06:25 PM,12/25/2010 03:07:04 PM,12/25/2010 03:08:05 PM,12/25/2010 03:10:08 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 03:14:32 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",103590213-E03 +112350143,E16,11077517,Medical Incident,08/23/2011,08/23/2011,08/23/2011 10:59:15 AM,08/23/2011 10:59:36 AM,08/23/2011 10:59:59 AM,08/23/2011 11:00:27 AM,08/23/2011 11:05:25 AM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 11:21:10 AM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8081576930541, -122.412496867032)",112350143-E16 +123370128,KM15,12112104,Medical Incident,12/02/2012,12/01/2012,12/02/2012 04:33:09 AM,12/02/2012 04:35:29 AM,12/02/2012 04:36:22 AM,12/02/2012 04:38:53 AM,12/02/2012 04:54:53 AM,12/02/2012 05:10:42 AM,12/02/2012 05:43:18 AM,Code 2 Transport,12/02/2012 06:13:31 AM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",123370128-KM15 +160162859,KM04,16006534,Medical Incident,01/16/2016,01/16/2016,01/16/2016 06:16:59 PM,01/16/2016 06:18:28 PM,01/16/2016 06:18:48 PM,01/16/2016 06:21:11 PM,01/16/2016 06:23:23 PM,01/16/2016 06:50:47 PM,01/16/2016 07:01:17 PM,Code 2 Transport,01/16/2016 07:41:25 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,E,3,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160162859-KM04 +121340009,T01,12044451,Structure Fire,05/13/2012,05/12/2012,05/13/2012 12:25:49 AM,05/13/2012 12:25:50 AM,05/13/2012 12:26:37 AM,05/13/2012 12:28:31 AM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/13/2012 12:30:24 AM,600 Block of MARKET ST,SF,94105,B03,1,2158,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",121340009-T01 +160703664,57,16028039,Medical Incident,03/10/2016,03/10/2016,03/10/2016 10:15:46 PM,03/10/2016 10:17:38 PM,03/10/2016 10:18:01 PM,03/10/2016 10:18:08 PM,03/10/2016 10:24:34 PM,03/10/2016 10:50:33 PM,03/10/2016 11:06:16 PM,Code 2 Transport,03/10/2016 11:27:10 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160703664-57 +131630011,68,13055233,Medical Incident,06/12/2013,06/11/2013,06/12/2013 01:02:29 AM,06/12/2013 01:02:52 AM,06/12/2013 01:03:33 AM,06/12/2013 01:05:39 AM,06/12/2013 01:08:30 AM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,No Merit,06/12/2013 01:26:07 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Tenderloin,"(37.7865845259792, -122.419948853352)",131630011-68 +160062062,KM13,16002435,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:14:59 PM,01/06/2016 02:16:15 PM,01/06/2016 02:18:57 PM,01/06/2016 02:19:37 PM,01/06/2016 02:27:23 PM,01/06/2016 02:37:06 PM,01/06/2016 02:55:12 PM,Code 2 Transport,01/06/2016 03:38:12 PM,17TH ST/CHURCH ST,San Francisco,94114,B02,6,5251,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7628898668395, -122.428508749574)",160062062-KM13 +160803423,70,16031957,Medical Incident,03/20/2016,03/20/2016,03/20/2016 09:31:45 PM,03/20/2016 09:32:25 PM,03/20/2016 09:32:58 PM,03/20/2016 09:33:07 PM,03/20/2016 09:38:58 PM,03/20/2016 09:54:02 PM,03/20/2016 10:04:18 PM,Code 3 Transport,03/20/2016 10:52:40 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160803423-70 +110650215,54,11021480,Medical Incident,03/06/2011,03/06/2011,03/06/2011 01:47:11 PM,03/06/2011 01:47:30 PM,03/06/2011 01:47:44 PM,03/06/2011 01:49:01 PM,03/06/2011 01:52:02 PM,03/06/2011 02:05:08 PM,03/06/2011 02:19:08 PM,Code 2 Transport,03/06/2011 02:38:29 PM,FRANCISCO ST/RICHARDSON AV,SF,94123,B04,16,4325,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.8003858224919, -122.447130573329)",110650215-54 +121150029,66,12038025,Medical Incident,04/24/2012,04/23/2012,04/24/2012 03:45:48 AM,04/24/2012 03:48:29 AM,04/24/2012 03:50:16 AM,04/24/2012 03:50:31 AM,04/24/2012 04:07:40 AM,04/24/2012 04:15:43 AM,04/24/2012 04:31:04 AM,Code 2 Transport,04/24/2012 05:00:27 AM,2600 Block of 47TH AVE,SF,94116,B08,23,7733,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7366045798993, -122.50526050111)",121150029-66 +111960170,T14,11064687,Alarms,07/15/2011,07/15/2011,07/15/2011 01:15:35 PM,07/15/2011 01:17:01 PM,07/15/2011 01:17:06 PM,07/15/2011 01:17:54 PM,07/15/2011 01:21:06 PM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 01:27:37 PM,100 Block of 26TH AVE,SF,94121,B07,14,7217,3,3,3,false,,1,TRUCK,2,7,2,Seacliff,"(37.7866330014173, -122.486212276615)",111960170-T14 +131720210,78,13058409,Medical Incident,06/21/2013,06/21/2013,06/21/2013 03:36:37 PM,06/21/2013 03:39:32 PM,06/21/2013 03:40:29 PM,06/21/2013 03:40:45 PM,06/21/2013 03:57:07 PM,06/21/2013 03:46:50 PM,06/21/2013 04:33:44 PM,Code 2 Transport,06/21/2013 05:15:04 PM,500 Block of OAK PARK DR,SF,94131,B08,20,5375,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7559153243809, -122.46048236345)",131720210-78 +130740156,KM09,13024650,Medical Incident,03/15/2013,03/15/2013,03/15/2013 12:04:41 PM,03/15/2013 12:05:05 PM,03/15/2013 12:05:57 PM,03/15/2013 12:06:36 PM,03/15/2013 12:18:14 PM,03/15/2013 12:39:15 PM,03/15/2013 12:55:34 PM,Code 2 Transport,03/15/2013 01:25:44 PM,400 Block of 26TH AVE,SF,94121,B07,14,7221,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7810031903924, -122.485945544565)",130740156-KM09 +112520062,E01,11083013,Medical Incident,09/09/2011,09/08/2011,09/09/2011 07:17:04 AM,09/09/2011 07:19:10 AM,09/09/2011 07:19:19 AM,09/09/2011 07:19:59 AM,09/09/2011 07:20:03 AM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/09/2011 07:36:32 AM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112520062-E01 +120200232,E03,12006719,Alarms,01/20/2012,01/20/2012,01/20/2012 03:01:44 PM,01/20/2012 03:02:52 PM,01/20/2012 03:03:02 PM,01/20/2012 03:03:39 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 03:03:58 PM,1100 Block of ELLIS ST,SF,94109,B02,5,3322,3,3,3,true,Alarm,1,ENGINE,4,2,5,Western Addition,"(37.7831387146973, -122.425928739913)",120200232-E03 +140470293,E03,14016111,Medical Incident,02/16/2014,02/16/2014,02/16/2014 06:49:05 PM,02/16/2014 06:50:43 PM,02/16/2014 06:51:44 PM,02/16/2014 06:53:31 PM,02/16/2014 06:55:57 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 06:58:17 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",140470293-E03 +123530211,KM02,12118118,Medical Incident,12/18/2012,12/18/2012,12/18/2012 01:50:50 PM,12/18/2012 01:51:11 PM,12/18/2012 01:51:19 PM,12/18/2012 01:52:01 PM,12/18/2012 01:54:06 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Patient Declined Transport,12/18/2012 02:39:11 PM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",123530211-KM02 +160752966,66,16029816,Medical Incident,03/15/2016,03/15/2016,03/15/2016 05:36:32 PM,03/15/2016 05:38:55 PM,03/15/2016 05:40:46 PM,03/15/2016 05:40:57 PM,03/15/2016 06:02:12 PM,03/15/2016 06:42:48 PM,03/15/2016 07:09:46 PM,Code 2 Transport,03/15/2016 07:51:25 PM,"CALL BOX: ELLSWORTH ST/ALEMANY SB BL,SF",San Francisco,94110,B06,32,5645,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7322713620509, -122.418897144818)",160752966-66 +160620220,62,16024545,Medical Incident,03/02/2016,03/01/2016,03/02/2016 02:26:39 AM,03/02/2016 02:28:16 AM,03/02/2016 02:28:51 AM,03/02/2016 02:29:10 AM,03/02/2016 02:40:35 AM,03/02/2016 03:07:48 AM,03/02/2016 03:30:55 AM,Code 2 Transport,03/02/2016 03:56:50 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160620220-62 +160821514,77,16032535,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:50:29 AM,03/22/2016 11:53:35 AM,03/22/2016 11:54:13 AM,03/22/2016 11:56:59 AM,03/22/2016 12:03:55 PM,03/22/2016 12:26:03 PM,03/22/2016 12:47:07 PM,Code 2 Transport,03/22/2016 01:20:17 PM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7352738344938, -122.391413470729)",160821514-77 +132270172,RC3,13076598,Medical Incident,08/15/2013,08/15/2013,08/15/2013 12:33:28 PM,08/15/2013 12:35:33 PM,08/15/2013 12:36:09 PM,08/15/2013 12:36:18 PM,08/15/2013 12:40:47 PM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Other,08/15/2013 12:45:47 PM,0 Block of GROVE ST,SF,94102,B02,36,381,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",132270172-RC3 +160420128,85,16016697,Medical Incident,02/11/2016,02/10/2016,02/11/2016 01:07:31 AM,02/11/2016 01:09:02 AM,02/11/2016 01:09:33 AM,02/11/2016 01:09:44 AM,02/11/2016 01:14:03 AM,02/11/2016 01:50:23 AM,02/11/2016 01:55:23 AM,Code 2 Transport,02/11/2016 02:19:44 AM,700 Block of FULTON ST,San Francisco,94102,B05,5,3521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",160420128-85 +121570286,E03,12052037,Medical Incident,06/05/2012,06/05/2012,06/05/2012 05:44:56 PM,06/05/2012 05:45:23 PM,06/05/2012 05:45:46 PM,06/05/2012 05:46:00 PM,06/05/2012 05:48:35 PM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,Other,06/05/2012 06:01:21 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",121570286-E03 +133380298,67,13114649,Medical Incident,12/04/2013,12/04/2013,12/04/2013 06:46:28 PM,12/04/2013 06:48:37 PM,12/04/2013 06:49:15 PM,12/04/2013 06:49:29 PM,12/04/2013 06:58:44 PM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 07:05:49 PM,1300 Block of STEVENSON ST,SF,94103,B02,36,5126,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.770783953905, -122.421596103834)",133380298-67 +123560288,E07,12119237,Traffic Collision,12/21/2012,12/21/2012,12/21/2012 05:28:39 PM,12/21/2012 05:28:42 PM,12/21/2012 05:29:20 PM,12/21/2012 05:30:06 PM,12/21/2012 05:32:14 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 05:53:05 PM,24TH ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7523727894276, -122.416265511485)",123560288-E07 +133600207,83,13122372,Medical Incident,12/26/2013,12/26/2013,12/26/2013 02:41:34 PM,12/26/2013 02:42:54 PM,12/26/2013 02:43:17 PM,12/26/2013 02:43:29 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 02:44:18 PM,1900 Block of 17TH AVE,SF,94116,B08,40,7374,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7515410594631, -122.474071150903)",133600207-83 +111610242,AM12,11053241,Medical Incident,06/10/2011,06/10/2011,06/10/2011 05:05:51 PM,06/10/2011 05:06:46 PM,06/10/2011 05:07:47 PM,06/10/2011 05:08:17 PM,06/10/2011 05:25:39 PM,06/10/2011 05:31:23 PM,06/10/2011 05:57:04 PM,Code 2 Transport,06/10/2011 06:31:07 PM,200 Block of 4TH ST,SF,94103,B03,1,2214,3,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.782817231709, -122.402251213701)",111610242-AM12 +160153822,75,16006182,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:52:37 PM,01/15/2016 09:52:37 PM,01/15/2016 09:53:10 PM,01/15/2016 09:53:23 PM,01/15/2016 10:01:19 PM,01/15/2016 10:21:24 PM,01/15/2016 10:32:28 PM,Code 2 Transport,01/15/2016 10:11:06 PM,4000 Block of 19TH ST,San Francisco,94114,B06,6,5437,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7592679734781, -122.43429385414)",160153822-75 +120300172,85,12009986,Medical Incident,01/30/2012,01/30/2012,01/30/2012 01:20:51 PM,01/30/2012 01:22:31 PM,01/30/2012 01:22:42 PM,01/30/2012 01:23:03 PM,01/30/2012 01:25:58 PM,01/30/2012 01:47:42 PM,01/30/2012 02:04:52 PM,Code 2 Transport,01/30/2012 02:29:04 PM,CENTRAL AV/FELL ST,SF,94117,B05,21,4356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7732120673067, -122.444216182973)",120300172-85 +160500942,AM06,16020013,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:20:12 AM,02/19/2016 09:21:30 AM,02/19/2016 09:21:58 AM,02/19/2016 09:22:55 AM,02/19/2016 09:29:01 AM,02/19/2016 09:49:54 AM,02/19/2016 10:17:59 AM,Code 2 Transport,02/19/2016 10:40:22 AM,1000 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6613,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7191956969734, -122.388416108229)",160500942-AM06 +160330839,75,16012891,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:50:07 AM,02/02/2016 08:50:07 AM,02/02/2016 08:51:40 AM,02/02/2016 08:51:49 AM,02/02/2016 09:06:57 AM,02/02/2016 09:18:55 AM,02/02/2016 09:41:07 AM,Code 2 Transport,02/02/2016 10:06:50 AM,100 Block of BLK HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816524457472, -122.415083177799)",160330839-75 +130380274,93,13013065,Medical Incident,02/07/2013,02/07/2013,02/07/2013 05:56:32 PM,02/07/2013 05:57:19 PM,02/07/2013 05:57:29 PM,02/07/2013 05:57:41 PM,02/07/2013 06:09:30 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Against Medical Advice,02/07/2013 06:47:13 PM,1600 Block of LANE ST,SF,94124,B10,17,6535,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7319445303791, -122.389826221462)",130380274-93 +110980079,T06,11032417,Citizen Assist / Service Call,04/08/2011,04/07/2011,04/08/2011 07:04:08 AM,04/08/2011 07:05:34 AM,04/08/2011 07:05:49 AM,04/08/2011 07:08:36 AM,04/08/2011 07:14:50 AM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Fire,04/08/2011 07:22:02 AM,300 Block of DOLORES ST,SF,94110,B02,6,5251,3,3,3,false,,1,TRUCK,1,2,8,Mission,"(37.7635158382169, -122.426118705944)",110980079-T06 +130720359,RS2,13024145,Structure Fire,03/13/2013,03/13/2013,03/13/2013 08:17:55 PM,03/13/2013 08:19:50 PM,03/13/2013 08:25:36 PM,03/13/2013 08:26:42 PM,03/13/2013 08:28:22 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 08:42:04 PM,2700 Block of 21ST ST,SF,94110,B10,7,2553,3,3,3,false,Fire,1,RESCUE SQUAD,4,6,9,Mission,"(37.7576778102612, -122.409125012393)",130720359-RS2 +160900315,71,16035565,Medical Incident,03/30/2016,03/29/2016,03/30/2016 03:24:23 AM,03/30/2016 03:25:36 AM,03/30/2016 03:25:54 AM,03/30/2016 03:26:03 AM,03/30/2016 03:30:55 AM,03/30/2016 03:59:28 AM,03/30/2016 04:13:12 AM,Code 2 Transport,03/30/2016 04:28:32 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160900315-71 +111370296,E16,11045666,Medical Incident,05/17/2011,05/17/2011,05/17/2011 06:56:20 PM,05/17/2011 06:58:05 PM,05/17/2011 06:58:13 PM,05/17/2011 06:59:28 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 07:02:36 PM,300 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8057759671113, -122.412787887195)",111370296-E16 +140460136,KM11,14015621,Medical Incident,02/15/2014,02/15/2014,02/15/2014 10:25:17 AM,02/15/2014 10:27:29 AM,02/15/2014 10:29:17 AM,02/15/2014 10:29:48 AM,02/15/2014 10:43:37 AM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Patient Declined Transport,02/15/2014 11:16:59 AM,400 Block of OTSEGO AVE,SF,94112,B09,15,8277,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7221802524183, -122.441844228674)",140460136-KM11 +131430346,87,13048636,Medical Incident,05/23/2013,05/23/2013,05/23/2013 08:40:35 PM,05/23/2013 08:42:15 PM,05/23/2013 08:42:34 PM,05/23/2013 08:44:28 PM,05/23/2013 08:56:02 PM,05/23/2013 09:24:12 PM,05/23/2013 09:49:46 PM,Code 2 Transport,05/23/2013 10:12:07 PM,1000 Block of CHESTNUT ST,SF,94109,B01,28,1613,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8028649959918, -122.420650668279)",131430346-87 +160661166,67,16026352,Medical Incident,03/06/2016,03/06/2016,03/06/2016 11:12:46 AM,03/06/2016 11:12:46 AM,03/06/2016 11:13:01 AM,03/06/2016 11:13:34 AM,03/06/2016 11:14:04 AM,03/06/2016 11:39:38 AM,03/06/2016 11:59:12 AM,Code 3 Transport,03/06/2016 12:37:07 PM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7941136505366, -122.407046655058)",160661166-67 +133280124,RC2,13111417,Medical Incident,11/24/2013,11/24/2013,11/24/2013 10:00:52 AM,11/24/2013 10:01:18 AM,11/24/2013 10:04:53 AM,11/24/2013 10:05:56 AM,11/24/2013 10:09:30 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 10:27:56 AM,700 Block of 29TH AVE,SF,94121,B07,14,7225,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7751770865319, -122.488604397218)",133280124-RC2 +113380260,85,11112078,Medical Incident,12/04/2011,12/04/2011,12/04/2011 03:50:51 PM,12/04/2011 03:52:18 PM,12/04/2011 03:55:18 PM,04/25/2016 02:01:19 PM,12/04/2011 04:05:07 PM,12/04/2011 04:25:30 PM,12/04/2011 04:34:41 PM,Code 2 Transport,12/04/2011 05:23:44 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,2,2,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",113380260-85 +133570047,81,13121259,Medical Incident,12/23/2013,12/22/2013,12/23/2013 06:08:39 AM,12/23/2013 06:10:36 AM,12/23/2013 06:10:57 AM,12/23/2013 06:11:15 AM,12/23/2013 06:15:42 AM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,No Merit,12/23/2013 06:28:28 AM,900 Block of MISSOURI ST,SF,94107,B10,37,2566,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7552453099076, -122.39565974671)",133570047-81 +120780011,E29,12025717,Medical Incident,03/18/2012,03/17/2012,03/18/2012 12:25:21 AM,03/18/2012 12:26:08 AM,03/18/2012 12:26:17 AM,03/18/2012 12:27:15 AM,03/18/2012 12:29:50 AM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/18/2012 01:29:00 AM,400 Block of 9TH ST,SF,94103,B03,29,2333,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7721679781687, -122.409530896113)",120780011-E29 +130800217,E36,13026767,Medical Incident,03/21/2013,03/21/2013,03/21/2013 01:37:18 PM,03/21/2013 01:40:02 PM,03/21/2013 01:40:12 PM,03/21/2013 01:41:11 PM,03/21/2013 01:43:03 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 01:53:09 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",130800217-E36 +110390321,E19,11013051,Alarms,02/08/2011,02/08/2011,02/08/2011 09:04:37 PM,02/08/2011 09:06:18 PM,02/08/2011 09:06:55 PM,02/08/2011 09:08:10 PM,02/08/2011 09:10:50 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 09:36:09 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",110390321-E19 +160711249,83,16028189,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:51:36 AM,03/11/2016 10:53:17 AM,03/11/2016 10:53:31 AM,03/11/2016 10:54:46 AM,03/11/2016 11:03:12 AM,03/11/2016 11:30:52 AM,03/11/2016 11:51:36 AM,Code 3 Transport,03/11/2016 01:09:57 PM,2100 Block of 14TH AVE,San Francisco,94116,B08,40,7362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7479423660405, -122.470637003929)",160711249-83 +130910228,E18,13030481,Medical Incident,04/01/2013,04/01/2013,04/01/2013 02:48:46 PM,04/01/2013 02:49:46 PM,04/01/2013 02:55:40 PM,04/25/2016 01:53:32 PM,04/01/2013 02:55:31 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 03:12:10 PM,2500 Block of NORIEGA ST,SF,94122,B08,18,7543,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7535481791413, -122.490934052988)",130910228-E18 +102410047,87,10075913,Medical Incident,08/29/2010,08/28/2010,08/29/2010 03:22:13 AM,08/29/2010 03:22:55 AM,08/29/2010 03:24:09 AM,08/29/2010 03:31:18 AM,08/29/2010 03:36:50 AM,08/29/2010 03:52:46 AM,08/29/2010 04:12:49 AM,Code 2 Transport,08/29/2010 04:29:17 AM,200 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.766821331685, -122.428814858006)",102410047-87 +112440187,RS1,11080447,High Angle Rescue,09/01/2011,09/01/2011,09/01/2011 01:10:45 PM,09/01/2011 01:12:38 PM,09/01/2011 01:13:22 PM,09/01/2011 01:14:29 PM,09/01/2011 01:17:44 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 02:05:23 PM,200 Block of 3RD ST,SF,94105,B03,1,2177,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7846604121968, -122.39991472916)",112440187-RS1 +130970157,E41,13032512,Structure Fire,04/07/2013,04/07/2013,04/07/2013 11:26:12 AM,04/07/2013 11:26:30 AM,04/07/2013 11:26:45 AM,04/07/2013 11:28:01 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 11:33:52 AM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,11,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",130970157-E41 +113210327,E03,11106736,Alarms,11/17/2011,11/17/2011,11/17/2011 06:55:34 PM,11/17/2011 06:56:51 PM,11/17/2011 06:57:08 PM,11/17/2011 06:58:08 PM,11/17/2011 06:59:53 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/17/2011 07:05:18 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",113210327-E03 +113190287,E38,11106024,Medical Incident,11/15/2011,11/15/2011,11/15/2011 04:38:19 PM,11/15/2011 04:39:48 PM,11/15/2011 04:43:08 PM,11/15/2011 05:05:39 PM,11/15/2011 05:07:29 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 06:00:46 PM,1600 Block of VAN NESS AVE,SF,94109,B04,38,3155,1,1,2,false,,1,ENGINE,2,4,3,Nob Hill,"(37.7908533668522, -122.422251573509)",113190287-E38 +113060361,T03,11101797,Medical Incident,11/02/2011,11/02/2011,11/02/2011 08:25:57 PM,11/02/2011 08:26:53 PM,11/02/2011 08:27:07 PM,11/02/2011 08:28:28 PM,11/02/2011 08:29:57 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/02/2011 08:41:31 PM,1100 Block of GEARY BLVD,SF,94109,B04,3,3222,3,3,3,false,,1,TRUCK,1,4,5,Western Addition,"(37.7855297633293, -122.422199701995)",113060361-T03 +131210147,E02,13040615,Medical Incident,05/01/2013,05/01/2013,05/01/2013 10:42:41 AM,05/01/2013 10:43:36 AM,05/01/2013 10:44:02 AM,05/01/2013 10:47:14 AM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,05/01/2013 10:47:28 AM,2300 Block of CALIFORNIA ST,SF,94115,B04,38,3511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,2,Pacific Heights,"(37.7891171836076, -122.432618741613)",131210147-E02 +102530393,KM15,10080111,Medical Incident,09/10/2010,09/10/2010,09/10/2010 10:34:07 PM,09/10/2010 10:35:11 PM,09/10/2010 10:35:23 PM,09/10/2010 10:36:19 PM,04/25/2016 02:08:39 PM,09/10/2010 10:50:17 PM,09/10/2010 10:57:41 PM,Code 2 Transport,09/10/2010 11:20:03 PM,CYRIL MAGNIN ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",102530393-KM15 +133600362,77,13122515,Medical Incident,12/26/2013,12/26/2013,12/26/2013 11:50:29 PM,12/26/2013 11:51:27 PM,12/26/2013 11:52:18 PM,12/26/2013 11:52:53 PM,12/27/2013 12:07:26 AM,12/27/2013 12:26:09 AM,12/27/2013 12:31:20 AM,Code 2 Transport,12/27/2013 01:04:28 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",133600362-77 +133410065,85,13115518,Medical Incident,12/07/2013,12/06/2013,12/07/2013 04:26:26 AM,12/07/2013 04:26:47 AM,12/07/2013 04:27:09 AM,12/07/2013 04:27:24 AM,12/07/2013 04:34:18 AM,12/07/2013 05:01:12 AM,12/07/2013 05:13:33 AM,Code 2 Transport,12/07/2013 05:30:22 AM,700 Block of FRONT ST,SF,94111,B01,13,1143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7982854223177, -122.399713028387)",133410065-85 +112270144,T15,11074987,Structure Fire,08/15/2011,08/15/2011,08/15/2011 10:49:08 AM,08/15/2011 10:49:08 AM,08/15/2011 10:49:48 AM,08/15/2011 10:50:17 AM,08/15/2011 10:55:21 AM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 11:08:16 AM,300 Block of LA GRANDE AVE,SF,94112,B09,43,616,3,3,3,false,,1,TRUCK,3,9,11,McLaren Park,"(37.7197515959451, -122.425588438069)",112270144-T15 +132530376,E03,13085653,Medical Incident,09/10/2013,09/10/2013,09/10/2013 11:47:20 PM,09/10/2013 11:48:02 PM,09/10/2013 11:49:03 PM,09/10/2013 11:50:37 PM,09/10/2013 11:52:22 PM,09/11/2013 12:03:45 AM,09/11/2013 12:09:08 AM,Other,09/11/2013 12:09:13 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",132530376-E03 +140240335,83,14008302,Structure Fire,01/24/2014,01/24/2014,01/24/2014 05:50:18 PM,01/24/2014 05:52:04 PM,01/24/2014 05:52:44 PM,01/24/2014 05:52:56 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/24/2014 05:59:55 PM,300 Block of PACIFIC AVE,SF,94111,B01,13,1212,3,3,3,true,Alarm,1,MEDIC,10,1,3,Financial District/South Beach,"(37.7976337824624, -122.401462993538)",140240335-83 +140940353,67,14031747,Medical Incident,04/04/2014,04/04/2014,04/04/2014 09:19:26 PM,04/04/2014 09:22:21 PM,04/04/2014 09:23:28 PM,04/04/2014 09:24:04 PM,04/04/2014 09:40:12 PM,04/04/2014 09:50:38 PM,04/04/2014 10:04:34 PM,Code 2 Transport,04/04/2014 10:47:08 PM,1200 Block of 2ND AVE,SAN FRANCISCO,94122,B05,12,7324,,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7648320538136, -122.458916882122)",140940353-67 +160441983,63,16017720,Traffic Collision,02/13/2016,02/13/2016,02/13/2016 02:38:33 PM,02/13/2016 02:38:33 PM,02/13/2016 02:38:47 PM,02/13/2016 02:38:58 PM,02/13/2016 02:48:01 PM,02/13/2016 02:56:59 PM,02/13/2016 03:23:38 PM,Code 2 Transport,02/13/2016 03:55:53 PM,15TH ST/CASTRO ST,San Francisco,94114,B05,6,5232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,5,8,Castro/Upper Market,"(37.765727474373, -122.435471951538)",160441983-63 +160103677,71,16004226,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:48:40 PM,01/10/2016 11:51:16 PM,01/10/2016 11:51:40 PM,01/10/2016 11:51:47 PM,01/11/2016 12:08:25 AM,01/11/2016 12:41:58 AM,01/11/2016 12:41:58 AM,Code 2 Transport,01/11/2016 01:30:05 AM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160103677-71 +160153733,AM24,16006171,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:21:01 PM,01/15/2016 09:22:11 PM,01/15/2016 09:22:34 PM,01/15/2016 09:23:22 PM,01/15/2016 09:27:10 PM,01/15/2016 09:48:16 PM,01/15/2016 09:59:46 PM,Code 2 Transport,01/15/2016 10:40:24 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160153733-AM24 +111070197,83,11035408,Medical Incident,04/17/2011,04/17/2011,04/17/2011 01:56:23 PM,04/17/2011 01:57:36 PM,04/17/2011 01:58:14 PM,04/17/2011 01:58:20 PM,04/17/2011 02:03:25 PM,04/17/2011 02:17:22 PM,04/17/2011 02:23:21 PM,Code 3 Transport,04/17/2011 03:04:09 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",111070197-83 +122350036,B02,12077755,Alarms,08/22/2012,08/21/2012,08/22/2012 04:00:26 AM,08/22/2012 04:02:09 AM,08/22/2012 04:02:32 AM,08/22/2012 04:04:31 AM,08/22/2012 04:10:00 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Fire,08/22/2012 04:10:05 AM,100 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7708835966401, -122.443810948891)",122350036-B02 +131690298,E13,13057466,Traffic Collision,06/18/2013,06/18/2013,06/18/2013 04:50:15 PM,06/18/2013 04:50:47 PM,06/18/2013 04:50:57 PM,06/18/2013 04:51:59 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 04:54:10 PM,MARKET ST/3RD ST,SF,94103,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",131690298-E13 +110910174,E03,11030133,Medical Incident,04/01/2011,04/01/2011,04/01/2011 12:48:18 PM,04/01/2011 12:48:51 PM,04/01/2011 12:49:48 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 01:13:31 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",110910174-E03 +130580414,E01,13019647,Medical Incident,02/27/2013,02/27/2013,02/27/2013 11:12:15 PM,02/27/2013 11:12:51 PM,02/27/2013 11:13:11 PM,02/27/2013 11:14:36 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,04/25/2016 01:54:05 PM,0 Block of CHURCH ST,SF,94114,B03,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",130580414-E01 +140380268,E43,14012896,Alarms,02/07/2014,02/07/2014,02/07/2014 04:10:39 PM,02/07/2014 04:12:02 PM,02/07/2014 04:12:50 PM,02/07/2014 04:14:15 PM,02/07/2014 04:18:11 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 04:24:37 PM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,true,Alarm,1,ENGINE,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",140380268-E43 +160452900,KM11,16018251,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:27:33 PM,02/14/2016 07:28:31 PM,02/14/2016 07:29:01 PM,02/14/2016 07:29:23 PM,02/14/2016 07:33:01 PM,02/14/2016 07:53:56 PM,02/14/2016 08:16:31 PM,Code 2 Transport,02/14/2016 08:27:36 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160452900-KM11 +160332255,79,16013045,Medical Incident,02/02/2016,02/02/2016,02/02/2016 03:38:54 PM,02/02/2016 03:40:34 PM,02/02/2016 03:41:00 PM,02/02/2016 03:44:44 PM,02/02/2016 03:44:46 PM,02/02/2016 03:57:26 PM,02/02/2016 04:16:03 PM,Code 2 Transport,02/02/2016 04:29:21 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160332255-79 +131350128,E09,13045510,Administrative,05/15/2013,05/15/2013,05/15/2013 11:12:36 AM,05/15/2013 11:12:40 AM,05/15/2013 11:12:54 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 11:16:45 AM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",131350128-E09 +140930276,E01,14031349,Medical Incident,04/03/2014,04/03/2014,04/03/2014 04:39:52 PM,04/03/2014 04:41:48 PM,04/03/2014 04:51:23 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,Code 2 Transport,04/03/2014 04:54:37 PM,1000 Block of POLK ST,SAN FRANCISCO,94109,B04,3,3121,,2,2,true,Non Life-threatening,1,ENGINE,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140930276-E01 +160722916,70,16028730,Medical Incident,03/12/2016,03/12/2016,03/12/2016 07:16:53 PM,03/12/2016 07:19:06 PM,03/12/2016 07:19:23 PM,03/12/2016 07:19:30 PM,03/12/2016 07:23:59 PM,03/12/2016 07:41:57 PM,03/12/2016 08:00:23 PM,Code 2 Transport,03/12/2016 08:16:32 PM,VALENCIA ST/16TH ST,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160722916-70 +120380096,E13,12012618,Medical Incident,02/07/2012,02/07/2012,02/07/2012 08:55:24 AM,02/07/2012 08:55:53 AM,02/07/2012 08:56:12 AM,02/07/2012 09:00:23 AM,02/07/2012 09:04:46 AM,04/25/2016 02:00:15 PM,04/25/2016 02:00:15 PM,Other,02/07/2012 09:14:19 AM,100 Block of STEVENSON ST,SF,94105,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7873597322507, -122.402708289992)",120380096-E13 +160383065,54,16015358,Medical Incident,02/07/2016,02/07/2016,02/07/2016 07:35:14 PM,02/07/2016 07:36:18 PM,02/07/2016 07:36:33 PM,02/07/2016 07:36:43 PM,02/07/2016 07:42:53 PM,02/07/2016 08:02:59 PM,02/07/2016 08:11:55 PM,Code 3 Transport,02/07/2016 08:56:53 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160383065-54 +160350221,71,16013655,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:54:16 AM,02/04/2016 01:54:16 AM,02/04/2016 01:54:36 AM,02/04/2016 01:54:58 AM,02/04/2016 01:57:54 AM,02/04/2016 02:22:48 AM,02/04/2016 02:25:16 AM,Code 2 Transport,02/04/2016 03:14:10 AM,SUTTER ST/TAYLOR ST,San Francisco,94102,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",160350221-71 +123590129,E01,12120134,Alarms,12/24/2012,12/24/2012,12/24/2012 10:41:42 AM,12/24/2012 10:43:13 AM,12/24/2012 10:43:19 AM,12/24/2012 10:45:38 AM,12/24/2012 10:48:05 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 10:54:05 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7786769584105, -122.408601057595)",123590129-E01 +133220190,87,13109343,Medical Incident,11/18/2013,11/18/2013,11/18/2013 01:58:43 PM,11/18/2013 02:00:44 PM,11/18/2013 02:00:55 PM,11/18/2013 02:01:01 PM,11/18/2013 02:05:44 PM,11/18/2013 02:24:22 PM,11/18/2013 02:33:43 PM,Code 2 Transport,11/18/2013 03:05:09 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",133220190-87 +133350226,E22,13113611,Structure Fire,12/01/2013,12/01/2013,12/01/2013 03:31:13 PM,12/01/2013 03:32:09 PM,12/01/2013 03:32:28 PM,12/01/2013 03:33:29 PM,12/01/2013 03:37:01 PM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,12/01/2013 03:50:10 PM,1500 Block of 33RD AVE,SF,94122,B08,18,7542,3,3,3,true,Alarm,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7582410131545, -122.491732792443)",133350226-E22 +131690111,82,13057318,Medical Incident,06/18/2013,06/18/2013,06/18/2013 09:05:21 AM,06/18/2013 09:09:56 AM,06/18/2013 09:10:17 AM,06/18/2013 09:10:36 AM,06/18/2013 09:16:59 AM,06/18/2013 09:43:45 AM,06/18/2013 10:05:51 AM,Code 2 Transport,06/18/2013 10:28:46 AM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7830416107165, -122.415856533326)",131690111-82 +111920351,D2,11063519,Structure Fire,07/11/2011,07/11/2011,07/11/2011 07:55:21 PM,07/11/2011 07:56:01 PM,07/11/2011 07:56:24 PM,07/11/2011 07:57:05 PM,07/11/2011 07:59:40 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 08:00:43 PM,2700 Block of BUSH ST,SF,94115,B04,10,4234,3,3,3,false,,1,CHIEF,4,4,2,Pacific Heights,"(37.7859173973794, -122.442559256485)",111920351-D2 +160490961,AM02,16019665,Medical Incident,02/18/2016,02/18/2016,02/18/2016 09:33:51 AM,02/18/2016 09:33:51 AM,02/18/2016 09:34:00 AM,02/18/2016 09:34:51 AM,02/18/2016 09:40:51 AM,02/18/2016 09:50:45 AM,02/18/2016 10:10:55 AM,Code 2 Transport,02/18/2016 10:43:05 AM,2ND ST/MINNA ST,San Francisco,94105,B03,1,2145,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.787579277349, -122.399255051067)",160490961-AM02 +113210083,B04,11106554,Structure Fire,11/17/2011,11/17/2011,11/17/2011 08:38:36 AM,11/17/2011 08:39:30 AM,11/17/2011 08:40:07 AM,11/17/2011 08:41:39 AM,11/17/2011 08:47:36 AM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/17/2011 09:29:12 AM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,3,3,3,false,,1,CHIEF,6,1,3,North Beach,"(37.8046368314261, -122.414251200714)",113210083-B04 +131960093,B03,13066463,Structure Fire,07/15/2013,07/15/2013,07/15/2013 09:35:42 AM,07/15/2013 09:35:43 AM,07/15/2013 09:36:02 AM,07/15/2013 09:36:43 AM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 09:39:51 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131960093-B03 +110190184,95,11006228,Medical Incident,01/19/2011,01/19/2011,01/19/2011 10:49:10 AM,01/19/2011 10:51:54 AM,01/19/2011 10:52:26 AM,01/19/2011 10:52:46 AM,01/19/2011 11:01:46 AM,01/19/2011 11:23:15 AM,01/19/2011 11:32:21 AM,Code 2 Transport,01/19/2011 12:17:16 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,,1,MEDIC,1,10,9,Potrero Hill,"(37.7564927890408, -122.406789115471)",110190184-95 +110410366,AM18,11013719,Medical Incident,02/10/2011,02/10/2011,02/10/2011 08:49:48 PM,02/10/2011 08:50:00 PM,02/10/2011 08:50:40 PM,04/25/2016 02:06:09 PM,02/10/2011 08:58:37 PM,02/10/2011 09:10:02 PM,02/10/2011 09:13:36 PM,Code 2 Transport,02/10/2011 09:38:45 PM,0 Block of 7TH ST,SF,94103,B02,1,2316,2,2,2,false,,1,PRIVATE,1,2,6,South of Market,"(37.7802039058686, -122.412272455406)",110410366-AM18 +160624074,AM16,16024879,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:13:30 PM,03/02/2016 10:15:52 PM,03/02/2016 10:16:03 PM,03/02/2016 10:16:59 PM,03/02/2016 10:29:36 PM,03/02/2016 10:31:25 PM,03/02/2016 10:39:20 PM,Code 2 Transport,03/02/2016 11:09:29 PM,POST ST/LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",160624074-AM16 +160421744,59,16016863,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:41:48 PM,02/11/2016 12:42:44 PM,02/11/2016 12:42:53 PM,02/11/2016 12:43:04 PM,02/11/2016 12:46:18 PM,02/11/2016 01:10:13 PM,02/11/2016 01:29:43 PM,Code 2 Transport,02/11/2016 02:23:02 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160421744-59 +160161665,KM04,16006419,Medical Incident,01/16/2016,01/16/2016,01/16/2016 12:57:16 PM,01/16/2016 12:57:16 PM,01/16/2016 12:57:41 PM,01/16/2016 12:58:08 PM,01/16/2016 01:03:09 PM,01/16/2016 01:18:06 PM,01/16/2016 01:38:25 PM,Code 2 Transport,01/16/2016 02:25:27 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160161665-KM04 +122890351,E20,12095756,Medical Incident,10/15/2012,10/15/2012,10/15/2012 07:49:34 PM,10/15/2012 07:51:35 PM,10/15/2012 07:52:36 PM,10/15/2012 07:53:29 PM,10/15/2012 07:56:26 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 08:22:22 PM,0 Block of AQUAVISTA WAY,SF,94131,B08,20,5352,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7525357839203, -122.449215972381)",122890351-E20 +120870282,E05,12028969,Citizen Assist / Service Call,03/27/2012,03/27/2012,03/27/2012 07:09:19 PM,03/27/2012 07:11:57 PM,03/27/2012 07:13:23 PM,03/27/2012 07:14:31 PM,03/27/2012 07:18:11 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 07:20:45 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",120870282-E05 +121500005,RC3,12049593,Medical Incident,05/29/2012,05/28/2012,05/29/2012 12:13:26 AM,05/29/2012 12:14:09 AM,05/29/2012 12:14:34 AM,04/25/2016 01:58:28 PM,05/29/2012 12:20:04 AM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/29/2012 12:43:19 AM,3600 Block of MISSION ST,SF,94110,B06,32,5631,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,9,Bernal Heights,"(37.7381219974808, -122.423925390723)",121500005-RC3 +160450091,79,16017937,Medical Incident,02/14/2016,02/13/2016,02/14/2016 12:28:08 AM,02/14/2016 12:28:40 AM,02/14/2016 12:28:47 AM,02/14/2016 12:28:57 AM,02/14/2016 12:34:42 AM,02/14/2016 12:49:28 AM,02/14/2016 12:59:18 AM,Code 2 Transport,02/14/2016 01:49:48 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160450091-79 +113230218,KM05,11107322,Medical Incident,11/19/2011,11/19/2011,11/19/2011 02:12:44 PM,11/19/2011 02:13:08 PM,11/19/2011 02:13:23 PM,11/19/2011 02:13:55 PM,11/19/2011 02:17:55 PM,11/19/2011 02:28:58 PM,11/19/2011 02:56:56 PM,Code 2 Transport,11/19/2011 03:12:38 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",113230218-KM05 +160590903,83,16023435,Medical Incident,02/28/2016,02/28/2016,02/28/2016 08:58:36 AM,02/28/2016 09:01:06 AM,02/28/2016 09:01:58 AM,02/28/2016 09:02:10 AM,02/28/2016 09:08:59 AM,02/28/2016 09:15:40 AM,02/28/2016 09:41:38 AM,Code 2 Transport,02/28/2016 10:11:47 AM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",160590903-83 +160661036,88,16026340,Medical Incident,03/06/2016,03/06/2016,03/06/2016 10:19:55 AM,03/06/2016 10:20:38 AM,03/06/2016 10:21:00 AM,03/06/2016 10:21:06 AM,03/06/2016 10:23:12 AM,03/06/2016 10:38:28 AM,03/06/2016 10:40:48 AM,Code 3 Transport,03/06/2016 11:21:24 AM,700 Block of BUSH ST,San Francisco,94108,B01,2,1361,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",160661036-88 +123130170,57,12104125,Medical Incident,11/08/2012,11/08/2012,11/08/2012 11:37:07 AM,11/08/2012 11:38:57 AM,11/08/2012 11:39:09 AM,11/08/2012 11:39:24 AM,11/08/2012 11:50:36 AM,11/08/2012 12:03:52 PM,11/08/2012 12:13:19 PM,Code 2 Transport,11/08/2012 12:40:46 PM,MISSION ST/16TH ST,SF,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",123130170-57 +160133803,66,16005353,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:43:30 PM,01/13/2016 08:46:30 PM,01/13/2016 08:47:07 PM,01/13/2016 08:47:15 PM,01/13/2016 08:51:56 PM,01/13/2016 09:10:32 PM,01/13/2016 09:21:08 PM,Code 2 Transport,01/13/2016 10:28:25 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",160133803-66 +103180324,74,10102041,Medical Incident,11/14/2010,11/14/2010,11/14/2010 06:40:24 PM,11/14/2010 06:42:26 PM,11/14/2010 06:42:39 PM,11/14/2010 06:47:40 PM,11/14/2010 06:52:43 PM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Unable to Locate,11/14/2010 06:54:24 PM,HYDE ST/FULTON ST,SF,94102,B02,36,1552,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",103180324-74 +103580147,E15,10114891,Medical Incident,12/24/2010,12/24/2010,12/24/2010 12:45:53 PM,12/24/2010 12:46:27 PM,12/24/2010 12:46:47 PM,12/24/2010 12:48:17 PM,12/24/2010 12:48:41 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 12:49:10 PM,PLYMOUTH AV/OCEAN AV,SF,94112,B09,15,8474,3,2,2,true,,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",103580147-E15 +131460075,KM07,13049414,Medical Incident,05/26/2013,05/25/2013,05/26/2013 05:15:25 AM,05/26/2013 05:15:49 AM,05/26/2013 05:18:33 AM,05/26/2013 05:18:57 AM,05/26/2013 05:41:12 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Patient Declined Transport,05/26/2013 06:31:47 AM,COLUMBIA SQUARE ST/HARRISON ST,SF,94103,B03,8,2254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7766201701762, -122.404896153495)",131460075-KM07 +120230082,E14,12007711,Medical Incident,01/23/2012,01/22/2012,01/23/2012 07:41:09 AM,01/23/2012 07:41:58 AM,01/23/2012 07:42:13 AM,01/23/2012 07:43:47 AM,01/23/2012 07:46:29 AM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 08:04:48 AM,600 Block of 33RD AVE,SF,94121,B07,14,7244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7768393829407, -122.493175110923)",120230082-E14 +121930263,D2,12064309,Other,07/11/2012,07/11/2012,07/11/2012 04:44:35 PM,07/11/2012 04:45:09 PM,07/11/2012 04:46:09 PM,07/11/2012 05:02:54 PM,07/11/2012 05:15:22 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 05:39:27 PM,31ST AV/ORTEGA ST,SF,94116,B08,18,7533,3,3,3,false,Alarm,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7518068712257, -122.489193567556)",121930263-D2 +160530372,75,16021065,Medical Incident,02/22/2016,02/21/2016,02/22/2016 05:36:07 AM,02/22/2016 05:37:19 AM,02/22/2016 05:39:19 AM,02/22/2016 05:39:27 AM,02/22/2016 05:47:42 AM,02/22/2016 05:50:26 AM,02/22/2016 05:58:52 AM,Code 2 Transport,02/22/2016 06:58:05 AM,100 Block of 2ND ST,San Francisco,94105,B03,1,2145,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877542424451, -122.399575303785)",160530372-75 +102970093,E17,10094676,Medical Incident,10/24/2010,10/23/2010,10/24/2010 05:10:02 AM,10/24/2010 05:10:02 AM,10/24/2010 05:15:51 AM,10/24/2010 05:17:33 AM,10/24/2010 05:19:31 AM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 05:31:16 AM,1000 Block of OAKDALE AVE,SF,94124,B10,17,6647,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7288155676841, -122.380327013416)",102970093-E17 +121830353,E10,12061125,Medical Incident,07/01/2012,07/01/2012,07/01/2012 11:19:12 PM,07/01/2012 11:19:59 PM,07/01/2012 11:20:40 PM,07/01/2012 11:22:36 PM,07/01/2012 11:24:20 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 11:38:52 PM,1300 Block of LYON ST,SF,94115,B05,10,4342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7834029397974, -122.444654875848)",121830353-E10 +113360184,87,11111229,Medical Incident,12/02/2011,12/02/2011,12/02/2011 10:54:37 AM,12/02/2011 10:57:53 AM,12/02/2011 10:59:10 AM,12/02/2011 10:59:20 AM,12/02/2011 11:00:50 AM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,No Merit,12/02/2011 11:05:11 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",113360184-87 +122310210,T06,12076627,Structure Fire,08/18/2012,08/18/2012,08/18/2012 04:18:21 PM,08/18/2012 04:18:21 PM,08/18/2012 04:18:43 PM,08/18/2012 04:19:36 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Fire,08/18/2012 04:24:26 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",122310210-T06 +160371151,77,16014613,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:55:26 AM,02/06/2016 08:56:52 AM,02/06/2016 08:57:04 AM,02/06/2016 08:57:09 AM,02/06/2016 09:00:05 AM,02/06/2016 09:15:55 AM,02/06/2016 09:31:18 AM,Code 2 Transport,02/06/2016 10:06:07 AM,1200 Block of ATHENS ST,San Francisco,94112,B09,43,6225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7121319272309, -122.436684330465)",160371151-77 +160833875,60,16033153,Medical Incident,03/23/2016,03/23/2016,03/23/2016 09:12:58 PM,03/23/2016 09:13:10 PM,03/23/2016 09:13:26 PM,03/23/2016 09:13:54 PM,03/23/2016 09:16:35 PM,03/23/2016 09:35:15 PM,03/23/2016 10:08:11 PM,Code 2 Transport,03/23/2016 10:48:55 PM,500 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7834675310494, -122.416716373273)",160833875-60 +160671838,65,16026779,Traffic Collision,03/07/2016,03/07/2016,03/07/2016 02:22:59 PM,03/07/2016 02:23:53 PM,03/07/2016 02:49:54 PM,03/07/2016 02:49:54 PM,03/07/2016 03:05:29 PM,03/07/2016 03:11:51 PM,03/07/2016 03:18:55 PM,Code 2 Transport,03/07/2016 03:38:41 PM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,44,6542,2,2,2,true,Non Life-threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",160671838-65 +120290092,AM02,12009668,Medical Incident,01/29/2012,01/29/2012,01/29/2012 08:50:16 AM,01/29/2012 08:51:09 AM,01/29/2012 08:51:19 AM,01/29/2012 08:54:25 AM,01/29/2012 09:00:46 AM,01/29/2012 09:22:41 AM,01/29/2012 09:28:59 AM,Code 2 Transport,01/29/2012 10:05:26 AM,0 Block of MONTCALM ST,SF,94110,B06,9,5672,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7472040308887, -122.405898418864)",120290092-AM02 +103300233,72,10105697,Medical Incident,11/26/2010,11/26/2010,11/26/2010 04:15:31 PM,11/26/2010 04:17:08 PM,11/26/2010 04:17:18 PM,11/26/2010 04:17:36 PM,11/26/2010 04:22:33 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,No Merit,11/26/2010 04:33:24 PM,0 Block of JENNINGS CT,SF,94124,B10,44,6575,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7172199086433, -122.397031798755)",103300233-72 +140610265,T15,14020714,Alarms,03/02/2014,03/02/2014,03/02/2014 06:11:02 PM,03/02/2014 06:12:28 PM,03/02/2014 06:12:32 PM,03/02/2014 06:14:04 PM,03/02/2014 06:20:33 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,Fire,03/02/2014 06:40:00 PM,0 Block of INA CT,SF,94112,B09,43,6164,3,3,3,false,Alarm,1,TRUCK,1,9,11,Excelsior,"(37.7235405243946, -122.424766345074)",140610265-T15 +120610021,E33,12019916,Medical Incident,03/01/2012,02/29/2012,03/01/2012 01:36:58 AM,03/01/2012 01:38:24 AM,03/01/2012 01:46:52 AM,03/01/2012 01:48:28 AM,03/01/2012 01:52:22 AM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,Patient Declined Transport,03/01/2012 02:22:25 AM,100 Block of GOETHE ST,SF,94112,B09,33,8364,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7090126221049, -122.45976907124)",120610021-E33 +132700103,E05,13091629,Administrative,09/27/2013,09/27/2013,09/27/2013 08:43:42 AM,09/27/2013 08:43:49 AM,09/27/2013 08:44:23 AM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/27/2013 08:46:51 AM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",132700103-E05 +110730096,KM12,11023948,Medical Incident,03/14/2011,03/14/2011,03/14/2011 09:45:18 AM,03/14/2011 09:47:06 AM,03/14/2011 09:47:22 AM,03/14/2011 09:48:05 AM,03/14/2011 09:52:21 AM,03/14/2011 10:20:14 AM,03/14/2011 10:28:21 AM,Code 2 Transport,03/14/2011 10:56:24 AM,900 Block of GROVE ST,SF,94117,B05,5,3533,3,3,3,false,,1,PRIVATE,2,5,5,Hayes Valley,"(37.7766006699261, -122.432195491762)",110730096-KM12 +130950027,T19,13031675,Alarms,04/05/2013,04/04/2013,04/05/2013 02:19:06 AM,04/05/2013 02:20:23 AM,04/05/2013 02:21:04 AM,04/05/2013 02:22:55 AM,04/05/2013 02:25:40 AM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/05/2013 02:38:56 AM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,true,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",130950027-T19 +102930261,T15,10093504,Structure Fire,10/20/2010,10/20/2010,10/20/2010 04:27:27 PM,10/20/2010 04:27:27 PM,10/20/2010 04:28:42 PM,10/20/2010 04:30:02 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 04:32:35 PM,MISSION ST/EXCELSIOR AV,SF,94112,B09,43,6116,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7262362449736, -122.433623592293)",102930261-T15 +130290012,E14,13009797,Gas Leak (Natural and LP Gases),01/29/2013,01/28/2013,01/29/2013 12:56:45 AM,01/29/2013 12:58:02 AM,01/29/2013 12:58:49 AM,01/29/2013 01:01:05 AM,01/29/2013 01:03:34 AM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/29/2013 01:25:31 AM,500 Block of 33RD AVE,SF,94121,B07,14,7245,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7787341301215, -122.493163416337)",130290012-E14 +123230343,E03,12107558,Structure Fire,11/18/2012,11/18/2012,11/18/2012 11:35:41 PM,11/18/2012 11:35:41 PM,11/18/2012 11:35:57 PM,11/18/2012 11:37:00 PM,11/18/2012 11:37:56 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Fire,11/18/2012 11:38:51 PM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",123230343-E03 +140310329,E35,14010675,Alarms,01/31/2014,01/31/2014,01/31/2014 11:31:48 PM,01/31/2014 11:33:08 PM,01/31/2014 11:33:13 PM,01/31/2014 11:34:19 PM,01/31/2014 11:37:13 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,01/31/2014 11:50:26 PM,200 Block of MISSION ST,SF,94105,B03,35,2116,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7914585077096, -122.395328020417)",140310329-E35 +160382537,56,16015301,Medical Incident,02/07/2016,02/07/2016,02/07/2016 04:25:32 PM,02/07/2016 04:27:18 PM,02/07/2016 04:28:05 PM,02/07/2016 04:28:27 PM,02/07/2016 04:31:12 PM,02/07/2016 04:51:54 PM,02/07/2016 05:02:48 PM,Code 2 Transport,02/07/2016 05:46:46 PM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160382537-56 +113140234,KM14,11104370,Medical Incident,11/10/2011,11/10/2011,11/10/2011 03:09:51 PM,11/10/2011 03:10:49 PM,11/10/2011 03:11:01 PM,11/10/2011 03:19:26 PM,11/10/2011 03:24:53 PM,11/10/2011 03:34:49 PM,11/10/2011 03:53:51 PM,Code 2 Transport,11/10/2011 04:19:19 PM,600 Block of STEVENSON ST,SF,94103,B02,1,2316,3,3,3,false,,1,PRIVATE,2,2,6,South of Market,"(37.7795231711615, -122.412639291793)",113140234-KM14 +122760467,E28,12091375,Medical Incident,10/02/2012,10/02/2012,10/02/2012 11:55:31 PM,10/02/2012 11:58:29 PM,10/02/2012 11:59:23 PM,10/03/2012 12:00:56 AM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 12:02:48 AM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8084325058333, -122.410757587167)",122760467-E28 +110450011,T07,11014789,Structure Fire,02/14/2011,02/13/2011,02/14/2011 01:03:00 AM,02/14/2011 01:03:00 AM,02/14/2011 01:03:21 AM,02/14/2011 01:05:11 AM,02/14/2011 01:06:58 AM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 01:07:32 AM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",110450011-T07 +121730013,89,12057302,Medical Incident,06/21/2012,06/20/2012,06/21/2012 12:51:48 AM,06/21/2012 12:52:24 AM,06/21/2012 12:52:34 AM,06/21/2012 12:55:59 AM,06/21/2012 01:01:47 AM,06/21/2012 01:28:11 AM,06/21/2012 01:49:10 AM,Code 2 Transport,06/21/2012 02:08:12 AM,0 Block of MONETA WAY,SF,94112,B09,33,8347,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7129282254093, -122.449089456346)",121730013-89 +111110149,E21,11036628,Alarms,04/21/2011,04/21/2011,04/21/2011 11:26:57 AM,04/21/2011 11:28:00 AM,04/21/2011 11:28:05 AM,04/21/2011 11:28:25 AM,04/21/2011 11:31:20 AM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/21/2011 11:41:38 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,false,,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",111110149-E21 +112210376,72,11073176,Medical Incident,08/09/2011,08/09/2011,08/09/2011 11:11:31 PM,08/09/2011 11:12:23 PM,08/09/2011 11:12:33 PM,08/09/2011 11:12:52 PM,08/09/2011 11:20:15 PM,08/09/2011 11:31:45 PM,08/09/2011 11:42:50 PM,Code 2 Transport,08/09/2011 11:59:44 PM,0 Block of HOFFMAN AVE,SF,94114,B06,24,5373,3,3,3,true,,1,MEDIC,3,6,8,Noe Valley,"(37.7536986542799, -122.440960677385)",112210376-72 +121690214,E01,12056145,Alarms,06/17/2012,06/17/2012,06/17/2012 02:56:22 PM,06/17/2012 02:57:50 PM,06/17/2012 02:58:19 PM,06/17/2012 02:59:35 PM,06/17/2012 03:02:11 PM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/17/2012 03:05:53 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",121690214-E01 +123520333,67,12117869,Medical Incident,12/17/2012,12/17/2012,12/17/2012 06:53:26 PM,12/17/2012 06:53:50 PM,12/17/2012 06:54:31 PM,12/17/2012 06:54:54 PM,12/17/2012 07:00:17 PM,12/17/2012 07:21:22 PM,12/17/2012 07:49:55 PM,Code 2 Transport,12/17/2012 08:09:05 PM,GOUGH ST/LOMBARD ST,SF,94123,B04,16,3244,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8008867546254, -122.427825032719)",123520333-67 +113620157,RC1,11120227,Medical Incident,12/28/2011,12/28/2011,12/28/2011 12:05:12 PM,12/28/2011 12:07:00 PM,12/28/2011 12:07:23 PM,04/25/2016 02:00:55 PM,12/28/2011 12:11:33 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 12:19:12 PM,1400 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,true,,1,RESCUE CAPTAIN,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",113620157-RC1 +111230268,AM02,11040692,Medical Incident,05/03/2011,05/03/2011,05/03/2011 04:28:31 PM,05/03/2011 04:28:56 PM,05/03/2011 04:29:13 PM,05/03/2011 04:29:55 PM,05/03/2011 04:32:57 PM,05/03/2011 04:58:53 PM,05/03/2011 05:06:30 PM,Code 2 Transport,05/03/2011 05:51:07 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,E,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",111230268-AM02 +160251315,53,16009885,Medical Incident,01/25/2016,01/25/2016,01/25/2016 10:43:18 AM,01/25/2016 10:44:48 AM,01/25/2016 10:45:00 AM,01/25/2016 10:45:14 AM,01/25/2016 10:50:47 AM,01/25/2016 11:07:04 AM,01/25/2016 11:25:17 AM,Code 2 Transport,01/25/2016 12:20:18 PM,JENNINGS ST/FITZGERALD AV,San Francisco,94124,B10,17,6614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7220347181097, -122.393171960162)",160251315-53 +160223532,73,16008935,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:07:52 PM,01/22/2016 09:08:59 PM,01/22/2016 09:09:40 PM,01/22/2016 09:10:03 PM,01/22/2016 09:13:42 PM,01/22/2016 09:28:32 PM,01/22/2016 09:45:08 PM,Code 2 Transport,01/22/2016 10:19:57 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",160223532-73 +112710109,66,11089472,Medical Incident,09/28/2011,09/28/2011,09/28/2011 10:06:35 AM,09/28/2011 10:08:55 AM,09/28/2011 10:09:09 AM,09/28/2011 10:09:27 AM,09/28/2011 10:14:27 AM,09/28/2011 10:47:20 AM,09/28/2011 10:59:09 AM,Code 2 Transport,09/28/2011 11:38:06 AM,1200 Block of 24TH AVE,SF,94122,B08,22,7452,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7642708677758, -122.482479459641)",112710109-66 +131640042,KM07,13055609,Medical Incident,06/13/2013,06/12/2013,06/13/2013 05:05:49 AM,06/13/2013 05:08:54 AM,06/13/2013 05:09:38 AM,06/13/2013 05:10:28 AM,06/13/2013 05:32:01 AM,06/13/2013 05:40:06 AM,06/13/2013 05:54:41 AM,Code 2 Transport,06/13/2013 06:15:13 AM,0 Block of SEAL ROCK DR,SF,94121,B07,34,7275,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7807045000007, -122.507049889799)",131640042-KM07 +160350550,85,16013695,Medical Incident,02/04/2016,02/03/2016,02/04/2016 06:59:54 AM,02/04/2016 06:59:54 AM,02/04/2016 07:00:27 AM,02/04/2016 07:02:41 AM,02/04/2016 07:10:04 AM,02/04/2016 07:15:22 AM,02/04/2016 07:29:52 AM,Code 2 Transport,02/04/2016 08:01:37 AM,JACKSON ST/WEBSTER ST,San Francisco,94115,B04,38,3465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7926799136599, -122.432917576713)",160350550-85 +120800201,RS2,12026576,Traffic Collision,03/20/2012,03/20/2012,03/20/2012 02:28:09 PM,03/20/2012 02:29:27 PM,03/20/2012 02:29:55 PM,03/20/2012 02:31:04 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/20/2012 02:39:25 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120800201-RS2 +103190193,D3,10102258,Structure Fire,11/15/2010,11/15/2010,11/15/2010 12:57:32 PM,11/15/2010 12:59:35 PM,11/15/2010 12:59:45 PM,04/25/2016 02:07:35 PM,11/15/2010 01:01:11 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 01:05:40 PM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,3,3,false,,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",103190193-D3 +110640319,T17,11021191,Vehicle Fire,03/05/2011,03/05/2011,03/05/2011 05:51:52 PM,03/05/2011 05:53:51 PM,03/05/2011 05:54:28 PM,03/05/2011 05:55:25 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 06:01:00 PM,100 Block of BAY SHORE BLVD,SF,94124,B10,44,6271,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",110640319-T17 +160250329,78,16009777,Medical Incident,01/25/2016,01/24/2016,01/25/2016 03:32:22 AM,01/25/2016 03:33:47 AM,01/25/2016 03:35:44 AM,01/25/2016 03:36:26 AM,01/25/2016 03:43:48 AM,01/25/2016 03:53:00 AM,01/25/2016 04:15:04 AM,Code 2 Transport,01/25/2016 05:13:20 AM,3100 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7220016138662, -122.401341444894)",160250329-78 +121370041,94,12045401,Medical Incident,05/16/2012,05/15/2012,05/16/2012 03:55:08 AM,05/16/2012 03:57:08 AM,05/16/2012 03:57:24 AM,05/16/2012 03:57:35 AM,05/16/2012 04:00:16 AM,05/16/2012 04:17:51 AM,05/16/2012 04:34:00 AM,Code 2 Transport,05/16/2012 04:59:18 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",121370041-94 +160693053,77,16027592,Medical Incident,03/09/2016,03/09/2016,03/09/2016 06:22:43 PM,03/09/2016 06:23:26 PM,03/09/2016 06:24:11 PM,03/09/2016 06:24:37 PM,03/09/2016 06:27:45 PM,03/09/2016 06:46:48 PM,03/09/2016 06:50:47 PM,Code 3 Transport,03/09/2016 07:32:53 PM,200 Block of CASHMERE ST,San Francisco,94124,B10,17,6517,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7362537955292, -122.387097160369)",160693053-77 +160763600,79,16030328,Medical Incident,03/16/2016,03/16/2016,03/16/2016 07:58:20 PM,03/16/2016 07:59:33 PM,03/16/2016 07:59:54 PM,03/16/2016 08:00:15 PM,03/16/2016 08:07:16 PM,03/16/2016 08:27:24 PM,03/16/2016 08:45:29 PM,Code 2 Transport,03/16/2016 09:14:04 PM,800 Block of 24TH AVE,San Francisco,94121,B07,14,7177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7735549638776, -122.483117823335)",160763600-79 +160733148,KM07,16029141,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:05:11 PM,03/13/2016 11:07:21 PM,03/13/2016 11:07:35 PM,03/13/2016 11:08:15 PM,03/13/2016 11:10:50 PM,03/13/2016 11:23:40 PM,03/13/2016 11:36:33 PM,Code 2 Transport,03/13/2016 11:59:20 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160733148-KM07 +122240027,60,12074150,Medical Incident,08/11/2012,08/10/2012,08/11/2012 01:32:52 AM,08/11/2012 01:32:52 AM,08/11/2012 01:33:15 AM,08/11/2012 01:33:28 AM,08/11/2012 01:49:30 AM,08/11/2012 01:59:56 AM,08/11/2012 02:15:48 AM,Code 2 Transport,08/11/2012 02:39:59 AM,800 Block of 3RD ST,SF,94107,B03,8,2150,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",122240027-60 +121530173,E28,12050628,Medical Incident,06/01/2012,06/01/2012,06/01/2012 01:37:03 PM,06/01/2012 01:37:39 PM,06/01/2012 01:38:03 PM,06/01/2012 01:38:48 PM,06/01/2012 01:40:50 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 01:53:05 PM,500 Block of COLUMBUS AVE,SF,94133,B01,28,1334,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7998612792845, -122.409655977667)",121530173-E28 +121410046,87,12046729,Medical Incident,05/20/2012,05/19/2012,05/20/2012 02:59:22 AM,05/20/2012 02:59:58 AM,05/20/2012 03:00:40 AM,05/20/2012 03:00:49 AM,05/20/2012 03:01:43 AM,05/20/2012 03:17:04 AM,05/20/2012 03:25:07 AM,Code 3 Transport,05/20/2012 04:13:25 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815063666429, -122.407932868203)",121410046-87 +112370072,88,11078115,Medical Incident,08/25/2011,08/24/2011,08/25/2011 06:27:01 AM,08/25/2011 06:27:43 AM,08/25/2011 06:27:51 AM,08/25/2011 06:28:48 AM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 06:30:55 AM,1400 Block of VAN DYKE AVE,SF,94124,B10,17,6651,3,2,2,false,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7276164365297, -122.389570152393)",112370072-88 +102680377,B06,10085061,Vehicle Fire,09/25/2010,09/25/2010,09/25/2010 07:11:25 PM,09/25/2010 07:11:25 PM,09/25/2010 07:12:43 PM,09/25/2010 07:14:04 PM,09/25/2010 07:17:20 PM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 07:59:22 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,false,,1,CHIEF,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",102680377-B06 +140740010,AM22,14024873,Medical Incident,03/15/2014,03/14/2014,03/15/2014 12:21:38 AM,03/15/2014 12:23:23 AM,03/15/2014 12:25:09 AM,03/15/2014 12:25:33 AM,03/15/2014 12:31:49 AM,03/15/2014 12:53:26 AM,03/15/2014 01:20:45 AM,Code 2 Transport,03/15/2014 01:42:31 AM,500 Block of EXCELSIOR AVE,SAN FRANCISCO,94112,B09,43,6133,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7241960538133, -122.429208742878)",140740010-AM22 +160403505,AM14,16016210,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:48:29 PM,02/09/2016 08:48:59 PM,02/09/2016 08:49:18 PM,02/09/2016 08:49:58 PM,02/09/2016 08:53:09 PM,02/09/2016 09:15:11 PM,02/09/2016 09:31:17 PM,Code 2 Transport,02/09/2016 09:52:43 PM,300 Block of 4TH ST,San Francisco,94107,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7817672494717, -122.400935483663)",160403505-AM14 +131570266,E29,13053296,Water Rescue,06/06/2013,06/06/2013,06/06/2013 03:07:19 PM,06/06/2013 03:08:20 PM,06/06/2013 03:09:06 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/06/2013 03:11:08 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,true,Fire,1,ENGINE,14,1,3,North Beach,"(37.8069201392161, -122.407170160416)",131570266-E29 +160912262,87,16036124,Medical Incident,03/31/2016,03/31/2016,03/31/2016 03:28:30 PM,03/31/2016 03:30:11 PM,03/31/2016 03:31:26 PM,03/31/2016 03:31:39 PM,03/31/2016 03:34:04 PM,03/31/2016 03:52:23 PM,03/31/2016 04:14:44 PM,Code 2 Transport,03/31/2016 04:56:13 PM,900 Block of MASON ST,Presidio,94108,B99,51,4613,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",160912262-87 +160272942,65,16010794,Medical Incident,01/27/2016,01/27/2016,01/27/2016 05:37:52 PM,01/27/2016 05:38:54 PM,01/27/2016 05:39:09 PM,01/27/2016 05:39:17 PM,01/27/2016 05:45:00 PM,01/27/2016 06:10:05 PM,01/27/2016 06:14:48 PM,Code 2 Transport,01/27/2016 07:02:29 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160272942-65 +131960047,B10,13066430,Alarms,07/15/2013,07/14/2013,07/15/2013 05:42:18 AM,07/15/2013 05:43:50 AM,07/15/2013 05:44:06 AM,07/15/2013 05:46:53 AM,07/15/2013 05:52:33 AM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Fire,07/15/2013 06:06:14 AM,100 Block of JENNINGS ST,SF,94124,B10,25,996,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",131960047-B10 +131990270,68,13067534,Medical Incident,07/18/2013,07/18/2013,07/18/2013 05:04:49 PM,07/18/2013 05:05:54 PM,07/18/2013 05:06:25 PM,07/18/2013 05:10:53 PM,07/18/2013 05:12:39 PM,07/18/2013 05:20:28 PM,07/18/2013 05:36:09 PM,Code 2 Transport,07/18/2013 05:42:54 PM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",131990270-68 +130090146,E28,13003074,Medical Incident,01/09/2013,01/09/2013,01/09/2013 11:05:48 AM,01/09/2013 11:06:15 AM,01/09/2013 11:06:45 AM,01/09/2013 11:07:48 AM,01/09/2013 11:09:31 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 11:15:47 AM,500 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8062966202775, -122.416265019979)",130090146-E28 +160860025,76,16034024,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:07:34 AM,03/26/2016 12:08:50 AM,03/26/2016 12:09:07 AM,03/26/2016 12:09:15 AM,03/26/2016 12:11:15 AM,03/26/2016 12:25:43 AM,03/26/2016 12:30:53 AM,Code 3 Transport,03/26/2016 01:05:25 AM,1400 Block of JONES ST,San Francisco,94109,B01,41,1466,A,A,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7945402595974, -122.414804971391)",160860025-76 +123620144,RC2,12121122,Medical Incident,12/27/2012,12/27/2012,12/27/2012 11:57:04 AM,12/27/2012 11:58:36 AM,12/27/2012 11:58:45 AM,12/27/2012 12:01:22 PM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Other,12/27/2012 12:05:19 PM,900 Block of GENEVA AVE,SF,94112,B09,43,6175,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,9,11,Excelsior,"(37.7159411510558, -122.439784371506)",123620144-RC2 +132620423,B01,13088947,Alarms,09/19/2013,09/19/2013,09/19/2013 11:33:54 PM,09/19/2013 11:35:14 PM,09/19/2013 11:35:22 PM,09/19/2013 11:36:42 PM,09/19/2013 11:41:47 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Fire,09/19/2013 11:53:56 PM,100 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7900283997728, -122.40271197324)",132620423-B01 +113390378,AM18,11112532,Medical Incident,12/05/2011,12/05/2011,12/05/2011 10:55:16 PM,12/05/2011 10:55:46 PM,12/05/2011 10:56:13 PM,12/05/2011 10:56:49 PM,12/05/2011 11:02:14 PM,12/05/2011 11:10:27 PM,12/05/2011 11:21:45 PM,Code 2 Transport,12/05/2011 11:59:16 PM,200 Block of LOUISBURG ST,SF,94112,B09,15,8315,3,3,3,false,,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7198936943619, -122.450400205622)",113390378-AM18 +160063361,58,16002583,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:16:06 PM,01/06/2016 08:16:06 PM,01/06/2016 08:16:40 PM,01/06/2016 08:16:49 PM,01/06/2016 08:21:55 PM,01/06/2016 08:31:31 PM,01/06/2016 08:35:37 PM,Code 2 Transport,01/06/2016 09:11:16 PM,3200 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7447384333683, -122.420517921043)",160063361-58 +122600181,D2,12085942,Explosion,09/16/2012,09/16/2012,09/16/2012 01:37:27 PM,09/16/2012 01:38:34 PM,09/16/2012 01:39:34 PM,09/16/2012 01:40:13 PM,09/16/2012 01:43:38 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 02:45:00 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,Fire,1,CHIEF,6,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",122600181-D2 +120230231,E29,12007834,Structure Fire,01/23/2012,01/23/2012,01/23/2012 03:05:45 PM,01/23/2012 03:05:45 PM,01/23/2012 03:05:58 PM,01/23/2012 03:06:49 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 03:07:48 PM,9TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,Alarm,1,ENGINE,3,2,6,South of Market,"(37.7749917496069, -122.413161109659)",120230231-E29 +160351172,67,16013760,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:15:55 AM,02/04/2016 10:16:23 AM,02/04/2016 10:16:39 AM,02/04/2016 10:17:04 AM,02/04/2016 10:20:55 AM,02/04/2016 10:36:11 AM,02/04/2016 11:09:28 AM,Code 2 Transport,02/04/2016 11:23:06 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160351172-67 +103010372,E01,10096255,Medical Incident,10/28/2010,10/28/2010,10/28/2010 07:48:07 PM,10/28/2010 07:48:07 PM,10/28/2010 07:48:07 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/28/2010 07:56:53 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",103010372-E01 +160391513,KM04,16015593,Medical Incident,02/08/2016,02/08/2016,02/08/2016 11:59:15 AM,02/08/2016 12:01:42 PM,02/08/2016 12:02:07 PM,02/08/2016 12:03:03 PM,02/08/2016 12:06:49 PM,02/08/2016 12:25:02 PM,02/08/2016 12:33:57 PM,Code 2 Transport,02/08/2016 01:15:29 PM,LEAVENWORTH ST/GOLDEN GATE AV,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",160391513-KM04 +160660554,KM03,16026280,Medical Incident,03/06/2016,03/05/2016,03/06/2016 06:09:36 AM,03/06/2016 06:11:44 AM,03/06/2016 06:13:08 AM,03/06/2016 06:13:41 AM,03/06/2016 06:20:34 AM,03/06/2016 06:38:38 AM,03/06/2016 06:49:37 AM,Code 2 Transport,03/06/2016 07:22:28 AM,3900 Block of 17TH ST,San Francisco,94114,B05,6,5417,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.762462765244, -122.434659092708)",160660554-KM03 +160801237,KM11,16031765,Medical Incident,03/20/2016,03/20/2016,03/20/2016 10:35:53 AM,03/20/2016 10:36:29 AM,03/20/2016 10:36:53 AM,03/20/2016 10:38:38 AM,03/20/2016 10:40:35 AM,03/20/2016 11:00:15 AM,03/20/2016 11:09:44 AM,Code 2 Transport,03/20/2016 11:34:42 AM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160801237-KM11 +113500369,E29,11116270,Medical Incident,12/16/2011,12/16/2011,12/16/2011 09:23:46 PM,12/16/2011 09:26:45 PM,12/16/2011 09:27:28 PM,12/16/2011 09:28:58 PM,12/16/2011 09:32:21 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 09:40:03 PM,HARRISON ST/TREAT AV,SF,94110,B02,29,5217,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7654476102712, -122.413105244954)",113500369-E29 +160280071,55,16010927,Medical Incident,01/28/2016,01/27/2016,01/28/2016 12:35:09 AM,01/28/2016 12:36:07 AM,01/28/2016 12:36:18 AM,01/28/2016 12:37:29 AM,01/28/2016 12:44:35 AM,01/28/2016 01:07:51 AM,01/28/2016 01:14:08 AM,Code 2 Transport,01/28/2016 02:04:34 AM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7940643725355, -122.403868637833)",160280071-55 +110230085,AP,11007505,Other,01/23/2011,01/22/2011,01/23/2011 07:56:29 AM,01/23/2011 07:56:29 AM,01/23/2011 07:56:29 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Fire,01/23/2011 07:56:43 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110230085-AP +160132017,73,16005207,Medical Incident,01/13/2016,01/13/2016,01/13/2016 01:16:40 PM,01/13/2016 01:18:42 PM,01/13/2016 01:19:25 PM,01/13/2016 01:20:01 PM,01/13/2016 01:29:36 PM,01/13/2016 01:52:58 PM,01/13/2016 02:17:34 PM,Code 2 Transport,01/13/2016 03:08:37 PM,600 Block of ATHENS ST,San Francisco,94112,B09,43,6157,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7177815317428, -122.431424651776)",160132017-73 +112640165,B04,11087165,Alarms,09/21/2011,09/21/2011,09/21/2011 11:23:20 AM,09/21/2011 11:24:56 AM,09/21/2011 11:26:29 AM,09/21/2011 11:26:40 AM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/21/2011 11:57:05 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",112640165-B04 +140100184,E01,14003481,Medical Incident,01/10/2014,01/10/2014,01/10/2014 11:48:44 AM,01/10/2014 11:51:20 AM,01/10/2014 11:53:05 AM,01/10/2014 11:53:05 AM,01/10/2014 12:14:20 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/10/2014 12:14:23 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",140100184-E01 +122840337,92,12094092,Medical Incident,10/10/2012,10/10/2012,10/10/2012 10:28:56 PM,10/10/2012 10:28:56 PM,10/10/2012 10:29:39 PM,10/10/2012 10:31:08 PM,10/10/2012 10:34:01 PM,10/10/2012 10:48:01 PM,10/10/2012 11:07:35 PM,Code 2 Transport,10/10/2012 11:40:26 PM,1100 Block of GUERRERO ST,SF,94110,B06,11,5524,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7531815783041, -122.42287877305)",122840337-92 +140440153,E33,14014930,Medical Incident,02/13/2014,02/13/2014,02/13/2014 10:09:55 AM,02/13/2014 10:12:07 AM,02/13/2014 10:12:43 AM,02/13/2014 10:13:28 AM,02/13/2014 10:15:53 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 10:29:00 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",140440153-E33 +113640328,84,11121024,Medical Incident,12/30/2011,12/30/2011,12/30/2011 07:46:21 PM,12/30/2011 07:46:21 PM,12/30/2011 07:48:38 PM,12/30/2011 07:49:40 PM,12/30/2011 07:52:36 PM,04/25/2016 02:00:53 PM,12/30/2011 08:14:07 PM,Code 2 Transport,12/30/2011 08:58:06 PM,400 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7849036811274, -122.416234049056)",113640328-84 +110710341,67,11023485,Medical Incident,03/12/2011,03/12/2011,03/12/2011 07:13:44 PM,03/12/2011 07:14:35 PM,03/12/2011 07:14:53 PM,03/12/2011 07:15:20 PM,03/12/2011 07:19:10 PM,03/12/2011 07:35:16 PM,03/12/2011 08:01:36 PM,Code 2 Transport,03/12/2011 08:24:20 PM,300 Block of HOWARD ST,SF,94105,B03,35,2124,3,E,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.789619378253, -122.394762431104)",110710341-67 +122130062,54,12070609,Medical Incident,07/31/2012,07/30/2012,07/31/2012 06:13:39 AM,07/31/2012 06:14:20 AM,07/31/2012 06:15:30 AM,04/25/2016 01:57:28 PM,07/31/2012 06:22:23 AM,07/31/2012 06:28:06 AM,07/31/2012 06:35:12 AM,Code 3 Transport,07/31/2012 07:20:55 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Mission,"(37.7740948566882, -122.420001436964)",122130062-54 +120180287,AP,12006127,Other,01/18/2012,01/18/2012,01/18/2012 06:25:04 PM,01/18/2012 06:25:04 PM,01/18/2012 06:25:04 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Fire,01/18/2012 06:25:28 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120180287-AP +131460255,E36,13049570,Medical Incident,05/26/2013,05/26/2013,05/26/2013 02:49:57 PM,05/26/2013 02:50:41 PM,05/26/2013 02:51:16 PM,05/26/2013 02:53:28 PM,05/26/2013 02:55:55 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 02:58:13 PM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",131460255-E36 +140090168,81,14003117,Medical Incident,01/09/2014,01/09/2014,01/09/2014 11:21:59 AM,01/09/2014 11:24:35 AM,01/09/2014 11:24:58 AM,01/09/2014 11:25:56 AM,01/09/2014 11:38:27 AM,01/09/2014 12:22:44 PM,01/09/2014 12:29:41 PM,Code 2 Transport,01/09/2014 01:10:33 PM,2500 Block of SUTTER ST,SF,94115,B05,10,4262,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Japantown,"(37.7848770596387, -122.442348914658)",140090168-81 +120490088,RC1,12016147,Medical Incident,02/18/2012,02/18/2012,02/18/2012 08:56:44 AM,02/18/2012 08:57:15 AM,02/18/2012 08:57:35 AM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/18/2012 09:01:25 AM,CHESTNUT ST/FRANKLIN ST,SF,94123,B04,16,3235,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,2,Marina,"(37.8020718699266, -122.426377344364)",120490088-RC1 +112130268,58,11070357,Water Rescue,08/01/2011,08/01/2011,08/01/2011 04:52:00 PM,08/01/2011 04:54:28 PM,08/01/2011 04:56:15 PM,08/01/2011 04:56:39 PM,08/01/2011 05:07:58 PM,04/25/2016 02:03:23 PM,04/25/2016 02:03:23 PM,Other,08/01/2011 05:27:43 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,,1,MEDIC,5,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",112130268-58 +160741525,62,16029316,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:45:06 AM,03/14/2016 11:46:38 AM,03/14/2016 11:47:02 AM,03/14/2016 11:47:10 AM,03/14/2016 11:51:38 AM,03/14/2016 12:19:57 PM,03/14/2016 12:28:14 PM,Code 2 Transport,03/14/2016 01:02:35 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160741525-62 +140370251,E03,14012568,Medical Incident,02/06/2014,02/06/2014,02/06/2014 04:03:26 PM,02/06/2014 04:05:02 PM,02/06/2014 04:05:32 PM,02/06/2014 04:07:09 PM,02/06/2014 04:07:39 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 04:15:26 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140370251-E03 +131180059,E18,13039594,Structure Fire,04/28/2013,04/27/2013,04/28/2013 05:19:45 AM,04/28/2013 05:21:12 AM,04/28/2013 05:21:30 AM,04/28/2013 05:23:42 AM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/28/2013 05:31:24 AM,4200 Block of JUDAH ST,SF,94122,B08,23,7723,3,3,3,true,Alarm,1,ENGINE,5,8,4,Sunset/Parkside,"(37.7604082847224, -122.507537232671)",131180059-E18 +132520318,54,13085295,Medical Incident,09/09/2013,09/09/2013,09/09/2013 08:05:18 PM,09/09/2013 08:08:28 PM,09/09/2013 08:08:49 PM,09/09/2013 08:09:00 PM,09/09/2013 08:10:15 PM,09/09/2013 08:27:32 PM,09/09/2013 08:38:58 PM,Code 2 Transport,09/09/2013 09:10:44 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",132520318-54 +122230223,78,12073964,Medical Incident,08/10/2012,08/10/2012,08/10/2012 02:23:38 PM,08/10/2012 02:24:24 PM,08/10/2012 02:25:16 PM,08/10/2012 02:26:11 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 02:27:42 PM,SUTTER ST/KEARNY ST,SF,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7898293371562, -122.403841564352)",122230223-78 +130220321,AM08,13007706,Medical Incident,01/22/2013,01/22/2013,01/22/2013 06:33:42 PM,01/22/2013 06:35:29 PM,01/22/2013 06:36:14 PM,01/22/2013 06:37:02 PM,01/22/2013 06:43:09 PM,01/22/2013 06:54:11 PM,01/22/2013 07:05:28 PM,Code 2 Transport,01/22/2013 07:28:28 PM,EDDY ST/HYDE ST,SF,94102,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",130220321-AM08 +103020289,E01,10096581,Medical Incident,10/29/2010,10/29/2010,10/29/2010 08:21:52 PM,10/29/2010 08:22:09 PM,10/29/2010 08:22:39 PM,10/29/2010 08:23:58 PM,10/29/2010 08:26:03 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/29/2010 08:32:32 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",103020289-E01 +130760077,87,13025299,Medical Incident,03/17/2013,03/16/2013,03/17/2013 05:22:22 AM,03/17/2013 05:25:35 AM,03/17/2013 05:26:11 AM,03/17/2013 05:26:40 AM,03/17/2013 05:44:45 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,No Merit,03/17/2013 06:00:47 AM,0 Block of 5TH ST,SF,94103,B03,1,2247,1,1,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",130760077-87 +113570356,KM04,11118736,Medical Incident,12/23/2011,12/23/2011,12/23/2011 05:23:00 PM,12/23/2011 05:24:41 PM,12/23/2011 05:24:54 PM,12/23/2011 05:25:40 PM,12/23/2011 05:29:52 PM,12/23/2011 05:41:38 PM,12/23/2011 06:03:57 PM,Code 2 Transport,12/23/2011 06:33:58 PM,600 Block of 27TH AVE,SF,94121,B07,14,7222,3,3,3,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7771331089354, -122.486739386436)",113570356-KM04 +133320286,E36,13112778,Structure Fire,11/28/2013,11/28/2013,11/28/2013 09:48:08 PM,11/28/2013 09:48:08 PM,11/28/2013 09:48:18 PM,11/28/2013 09:49:06 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 09:52:13 PM,8TH ST/MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",133320286-E36 +113440117,E36,11114069,Medical Incident,12/10/2011,12/10/2011,12/10/2011 10:15:34 AM,12/10/2011 10:15:57 AM,12/10/2011 10:17:06 AM,12/10/2011 10:21:57 AM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 10:24:35 AM,0 Block of 7TH ST,SF,94103,B02,36,2316,2,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7802039058686, -122.412272455406)",113440117-E36 +160671866,AM12,16026783,Medical Incident,03/07/2016,03/07/2016,03/07/2016 02:29:23 PM,03/07/2016 02:30:49 PM,03/07/2016 02:31:50 PM,03/07/2016 02:32:44 PM,03/07/2016 02:55:16 PM,03/07/2016 03:00:15 PM,03/07/2016 03:10:43 PM,Code 3 Transport,03/07/2016 04:55:28 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,11,Excelsior,"(37.7205476379806, -122.437805967469)",160671866-AM12 +133350260,72,13113643,Medical Incident,12/01/2013,12/01/2013,12/01/2013 05:28:12 PM,12/01/2013 05:30:37 PM,12/01/2013 05:31:50 PM,12/01/2013 05:32:36 PM,12/01/2013 05:44:02 PM,12/01/2013 05:50:00 PM,12/01/2013 06:04:33 PM,Code 2 Transport,12/01/2013 06:32:05 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",133350260-72 +160412512,83,16016528,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:59:02 PM,02/10/2016 04:01:33 PM,02/10/2016 04:01:51 PM,02/10/2016 04:02:01 PM,02/10/2016 04:08:03 PM,02/10/2016 04:26:34 PM,02/10/2016 04:39:06 PM,Code 2 Transport,02/10/2016 05:49:47 PM,LAKE MERCED BL/SUNSET BL,San Francisco,94132,B08,19,8817,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.729596662788, -122.493469931749)",160412512-83 +110520197,E03,11017238,Structure Fire,02/21/2011,02/21/2011,02/21/2011 02:23:19 PM,02/21/2011 02:23:19 PM,02/21/2011 02:23:25 PM,02/21/2011 02:24:24 PM,02/21/2011 02:26:21 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 02:26:27 PM,OFARRELL ST/TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,2,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",110520197-E03 +102420242,81,10076366,Medical Incident,08/30/2010,08/30/2010,08/30/2010 03:13:12 PM,08/30/2010 03:15:29 PM,08/30/2010 03:15:55 PM,08/30/2010 03:18:06 PM,08/30/2010 03:22:42 PM,08/30/2010 04:06:50 PM,08/30/2010 04:10:30 PM,Code 2 Transport,08/30/2010 04:21:09 PM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,true,,1,MEDIC,3,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",102420242-81 +112180079,54,11071976,Medical Incident,08/06/2011,08/05/2011,08/06/2011 04:49:35 AM,08/06/2011 04:49:42 AM,08/06/2011 04:49:58 AM,08/06/2011 04:50:15 AM,08/06/2011 04:53:16 AM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Patient Declined Transport,08/06/2011 05:01:25 AM,8TH ST/HARRISON ST,SF,94103,B03,29,2333,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7737596997868, -122.408516330795)",112180079-54 +110510281,79,11016972,Medical Incident,02/20/2011,02/20/2011,02/20/2011 05:20:51 PM,02/20/2011 05:22:46 PM,02/20/2011 05:23:17 PM,02/20/2011 05:23:30 PM,04/25/2016 02:05:59 PM,02/20/2011 05:45:38 PM,02/20/2011 05:49:45 PM,Code 2 Transport,02/20/2011 06:21:48 PM,HAIGHT ST/FILLMORE ST,SF,94117,B05,6,3526,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7721082581802, -122.430433920263)",110510281-79 +112450371,E13,11080924,Structure Fire,09/02/2011,09/02/2011,09/02/2011 09:30:44 PM,09/02/2011 09:30:44 PM,09/02/2011 09:30:59 PM,09/02/2011 09:31:56 PM,09/02/2011 09:33:54 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 09:34:06 PM,FRONT ST/VALLEJO ST,SF,94111,B01,13,1144,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7996814125443, -122.400066079763)",112450371-E13 +160732887,76,16029121,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:35:44 PM,03/13/2016 09:35:44 PM,03/13/2016 09:37:05 PM,03/13/2016 09:37:12 PM,03/13/2016 09:46:09 PM,03/13/2016 10:12:31 PM,03/13/2016 10:17:23 PM,Code 2 Transport,03/13/2016 10:43:48 PM,300 Block of SAN BRUNO AVE,San Francisco,94103,B02,29,2421,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7652490907914, -122.405593355876)",160732887-76 +121350380,RC2,12045062,Traffic Collision,05/14/2012,05/14/2012,05/14/2012 11:36:55 PM,05/14/2012 11:36:55 PM,05/14/2012 11:37:31 PM,05/14/2012 11:38:32 PM,05/14/2012 11:43:31 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 11:51:43 PM,34TH AV/JUDAH ST,SF,94122,B08,23,7541,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.760992301265, -122.493068123319)",121350380-RC2 +111550256,E42,11051287,Medical Incident,06/04/2011,06/04/2011,06/04/2011 03:40:32 PM,06/04/2011 03:41:51 PM,06/04/2011 03:42:11 PM,06/04/2011 03:43:12 PM,06/04/2011 03:44:29 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/04/2011 03:56:53 PM,2500 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7294190904862, -122.404411917151)",111550256-E42 +131460052,E33,13049392,Outside Fire,05/26/2013,05/25/2013,05/26/2013 03:15:23 AM,05/26/2013 03:17:25 AM,05/26/2013 03:17:30 AM,05/26/2013 03:19:18 AM,05/26/2013 03:23:07 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 04:10:50 AM,VERNON ST/GARFIELD ST,SF,94132,B09,33,8432,3,3,3,true,Fire,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7196654061955, -122.468052099596)",131460052-E33 +111260389,RS1,11041870,Traffic Collision,05/06/2011,05/06/2011,05/06/2011 10:37:22 PM,05/06/2011 10:39:22 PM,05/06/2011 10:39:36 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 10:42:37 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",111260389-RS1 +131130362,88,13038256,Structure Fire,04/23/2013,04/23/2013,04/23/2013 09:25:13 PM,04/23/2013 09:25:42 PM,04/23/2013 09:25:50 PM,04/23/2013 09:26:01 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 09:30:32 PM,600 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,true,Alarm,1,MEDIC,8,6,9,Bernal Heights,"(37.7389128649709, -122.4155498834)",131130362-88 +160763745,RC3,16030353,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:46:04 PM,03/16/2016 08:47:12 PM,03/16/2016 09:22:18 PM,03/16/2016 09:23:54 PM,03/16/2016 09:34:05 PM,03/16/2016 09:50:35 PM,03/16/2016 09:55:16 PM,Code 3 Transport,03/16/2016 10:56:06 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160763745-RC3 +90160292,T02,9004840,Alarms,01/16/2009,01/16/2009,01/16/2009 06:12:10 PM,01/16/2009 06:13:27 PM,01/16/2009 06:13:46 PM,01/16/2009 06:15:59 PM,01/16/2009 06:16:49 PM,04/25/2016 03:30:32 PM,04/25/2016 03:30:32 PM,Fire,01/16/2009 06:23:30 PM,1000 Block of POWELL ST,SF,94108,B01,2,1355,3,3,3,false,,1,TRUCK,2,1,3,Nob Hill,"(37.7942855985686, -122.409699641182)",090160292-T02 +102620341,54,10083027,Medical Incident,09/19/2010,09/19/2010,09/19/2010 09:30:31 PM,09/19/2010 09:30:42 PM,09/19/2010 09:32:18 PM,09/19/2010 09:32:23 PM,09/19/2010 09:50:07 PM,09/19/2010 10:01:38 PM,09/19/2010 10:09:59 PM,Code 2 Transport,09/19/2010 10:40:58 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",102620341-54 +160240979,KM04,16009473,Medical Incident,01/24/2016,01/24/2016,01/24/2016 09:18:39 AM,01/24/2016 09:22:01 AM,01/24/2016 09:23:05 AM,01/24/2016 09:23:43 AM,01/24/2016 09:29:09 AM,01/24/2016 09:43:05 AM,01/24/2016 09:55:35 AM,Code 2 Transport,01/24/2016 10:30:43 AM,3200 Block of CALIFORNIA ST,San Francisco,94118,B04,10,4421,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7872098592651, -122.447641497264)",160240979-KM04 +160842657,68,16033455,Traffic Collision,03/24/2016,03/24/2016,03/24/2016 03:50:25 PM,03/24/2016 03:51:31 PM,03/24/2016 04:05:41 PM,03/24/2016 04:05:41 PM,03/24/2016 04:27:59 PM,03/24/2016 04:42:31 PM,03/24/2016 05:00:57 PM,Code 2 Transport,03/24/2016 05:43:37 PM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,3,3,3,true,Potentially Life-Threatening,1,MEDIC,8,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",160842657-68 +130450040,E38,13015140,Alarms,02/14/2013,02/13/2013,02/14/2013 05:46:34 AM,02/14/2013 05:47:35 AM,02/14/2013 05:47:44 AM,02/14/2013 05:49:12 AM,02/14/2013 05:51:01 AM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 06:04:42 AM,1700 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,3,3,false,Alarm,1,ENGINE,2,4,2,Western Addition,"(37.7902108323452, -122.423141017919)",130450040-E38 +130420104,T03,13014261,Alarms,02/11/2013,02/11/2013,02/11/2013 09:37:30 AM,02/11/2013 09:39:12 AM,02/11/2013 09:40:26 AM,04/25/2016 01:54:21 PM,02/11/2013 09:44:01 AM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,Other,02/11/2013 09:44:29 AM,400 Block of BRANNAN ST,SF,94107,B03,8,2223,3,3,3,true,Alarm,1,TRUCK,2,3,6,South of Market,"(37.778772691441, -122.395868429958)",130420104-T03 +122710196,57,12089453,Medical Incident,09/27/2012,09/27/2012,09/27/2012 03:30:16 PM,09/27/2012 03:31:44 PM,09/27/2012 03:31:51 PM,09/27/2012 03:33:25 PM,09/27/2012 03:40:12 PM,09/27/2012 03:50:04 PM,09/27/2012 04:14:08 PM,Code 2 Transport,09/27/2012 04:43:08 PM,MISSION ST/9TH ST,SF,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",122710196-57 +110490393,64,11016363,Medical Incident,02/18/2011,02/18/2011,02/18/2011 09:43:11 PM,02/18/2011 09:47:14 PM,02/18/2011 09:47:27 PM,02/18/2011 09:47:34 PM,02/18/2011 09:52:19 PM,02/18/2011 10:01:28 PM,02/18/2011 10:12:23 PM,Code 3 Transport,02/18/2011 10:44:23 PM,400 Block of ROLPH ST,SF,94112,B09,43,6226,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7122411987932, -122.433864119271)",110490393-64 +160731773,AM02,16029002,Other,03/13/2016,03/13/2016,03/13/2016 03:17:55 PM,03/13/2016 03:17:55 PM,03/13/2016 03:19:15 PM,03/13/2016 03:19:19 PM,03/13/2016 03:35:39 PM,03/13/2016 03:39:27 PM,03/13/2016 04:10:01 PM,Code 2 Transport,03/13/2016 04:21:24 PM,300 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8854,2,2,2,false,Alarm,1,PRIVATE,2,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",160731773-AM02 +160480559,85,16019238,Medical Incident,02/17/2016,02/16/2016,02/17/2016 07:01:54 AM,02/17/2016 07:01:54 AM,02/17/2016 07:02:13 AM,02/17/2016 07:02:20 AM,02/17/2016 07:06:33 AM,02/17/2016 07:31:53 AM,02/17/2016 07:48:17 AM,Code 2 Transport,02/17/2016 08:24:48 AM,1ST ST/MARKET ST,San Francisco,94105,B03,13,2143,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",160480559-85 +113550228,E13,11117907,Traffic Collision,12/21/2011,12/21/2011,12/21/2011 02:44:20 PM,12/21/2011 02:45:30 PM,12/21/2011 02:46:56 PM,12/21/2011 02:47:57 PM,12/21/2011 02:54:18 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 03:01:08 PM,SPEAR ST/MARKET ST,SF,94105,B01,13,1113,2,2,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",113550228-E13 +121260387,67,12042054,Medical Incident,05/05/2012,05/05/2012,05/05/2012 09:14:22 PM,05/05/2012 09:16:02 PM,05/05/2012 09:16:26 PM,05/05/2012 09:16:52 PM,05/05/2012 09:23:52 PM,05/05/2012 09:39:37 PM,05/05/2012 10:04:02 PM,Code 2 Transport,05/05/2012 10:20:50 PM,300 Block of MOSCOW ST,SF,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7220697351307, -122.427115807241)",121260387-67 +140110074,E07,14003758,Medical Incident,01/11/2014,01/10/2014,01/11/2014 07:05:24 AM,01/11/2014 07:06:28 AM,01/11/2014 07:07:22 AM,01/11/2014 07:09:25 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/11/2014 07:12:28 AM,22ND ST/POTRERO AV,SF,94110,B10,7,2553,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",140110074-E07 +160300444,75,16011659,Medical Incident,01/30/2016,01/29/2016,01/30/2016 03:14:26 AM,01/30/2016 03:15:59 AM,01/30/2016 03:16:13 AM,01/30/2016 03:16:28 AM,01/30/2016 03:21:31 AM,01/30/2016 03:28:54 AM,01/30/2016 03:43:27 AM,Code 3 Transport,01/30/2016 04:24:18 AM,0 Block of SCOTT ST,San Francisco,94117,B05,21,4142,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7702145062416, -122.435186512309)",160300444-75 +111780023,66,11058649,Medical Incident,06/27/2011,06/26/2011,06/27/2011 01:45:07 AM,06/27/2011 01:47:07 AM,06/27/2011 01:48:36 AM,06/27/2011 01:48:58 AM,06/27/2011 01:51:57 AM,06/27/2011 02:02:38 AM,06/27/2011 02:05:32 AM,Code 2 Transport,06/27/2011 02:19:57 AM,MARKET ST/CHURCH ST,SF,94114,B02,6,5213,1,1,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",111780023-66 +121510217,66,12050071,Medical Incident,05/30/2012,05/30/2012,05/30/2012 02:30:43 PM,05/30/2012 02:31:09 PM,05/30/2012 02:31:16 PM,05/30/2012 02:31:26 PM,05/30/2012 02:46:25 PM,05/30/2012 02:54:57 PM,05/30/2012 03:08:07 PM,Code 2 Transport,05/30/2012 03:34:12 PM,JEFFERSON ST/MASON ST,SF,94133,B01,28,1344,3,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8084210588577, -122.414164435002)",121510217-66 +110130103,93,11004251,Medical Incident,01/13/2011,01/13/2011,01/13/2011 09:09:43 AM,01/13/2011 09:10:51 AM,01/13/2011 09:11:00 AM,01/13/2011 09:11:13 AM,01/13/2011 09:23:34 AM,01/13/2011 09:40:00 AM,01/13/2011 10:16:39 AM,Code 2 Transport,01/13/2011 10:23:54 AM,800 Block of 47TH AVE,SF,94121,B07,34,7277,1,1,2,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7724297631777, -122.507750347312)",110130103-93 +132300047,E03,13077549,Medical Incident,08/18/2013,08/17/2013,08/18/2013 02:22:07 AM,08/18/2013 02:22:43 AM,08/18/2013 02:23:18 AM,08/18/2013 02:25:03 AM,08/18/2013 02:27:23 AM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Other,08/18/2013 02:54:24 AM,600 Block of LARKIN ST,SF,94109,B02,3,1643,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7840149232554, -122.417594247706)",132300047-E03 +113620070,93,11120156,Medical Incident,12/28/2011,12/27/2011,12/28/2011 07:50:58 AM,12/28/2011 07:51:27 AM,12/28/2011 07:51:54 AM,12/28/2011 07:52:19 AM,12/28/2011 07:58:51 AM,12/28/2011 08:18:24 AM,12/28/2011 08:32:45 AM,Code 2 Transport,12/28/2011 09:10:52 AM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7209580935201, -122.387166280374)",113620070-93 +160622268,57,16024735,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:29:27 PM,03/02/2016 02:31:02 PM,03/02/2016 02:31:18 PM,03/02/2016 02:34:26 PM,03/02/2016 02:38:27 PM,03/02/2016 02:54:02 PM,03/02/2016 03:03:19 PM,Code 2 Transport,03/02/2016 03:53:12 PM,2000 Block of SILVER AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360541412918, -122.399492021329)",160622268-57 +121890243,CR1,12063016,Water Rescue,07/07/2012,07/07/2012,07/07/2012 04:07:34 PM,07/07/2012 04:08:10 PM,07/07/2012 04:09:33 PM,07/07/2012 04:12:12 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/07/2012 04:15:30 PM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,3,3,3,false,Fire,1,SUPPORT,7,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",121890243-CR1 +111840278,E13,11060860,Citizen Assist / Service Call,07/03/2011,07/03/2011,07/03/2011 04:36:42 PM,07/03/2011 04:38:38 PM,07/03/2011 04:39:07 PM,07/03/2011 04:40:01 PM,07/03/2011 04:45:00 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 05:04:10 PM,800 Block of CLAY ST,SF,94108,B01,13,1313,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7941136505366, -122.407046655058)",111840278-E13 +160133493,68,16005324,Medical Incident,01/13/2016,01/13/2016,01/13/2016 07:05:31 PM,01/13/2016 07:07:27 PM,01/13/2016 07:07:59 PM,01/13/2016 07:08:19 PM,01/13/2016 07:15:53 PM,01/13/2016 07:33:26 PM,01/13/2016 07:40:03 PM,Code 2 Transport,01/13/2016 08:59:14 PM,1200 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7821262448866, -122.430552499168)",160133493-68 +121900054,77,12063194,Medical Incident,07/08/2012,07/07/2012,07/08/2012 04:05:52 AM,07/08/2012 04:08:41 AM,07/08/2012 04:10:19 AM,07/08/2012 04:10:26 AM,07/08/2012 04:19:02 AM,07/08/2012 04:23:53 AM,07/08/2012 04:33:27 AM,Code 2 Transport,07/08/2012 04:40:39 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",121900054-77 +131640243,E42,13055760,Structure Fire,06/13/2013,06/13/2013,06/13/2013 03:18:49 PM,06/13/2013 03:20:35 PM,06/13/2013 03:24:39 PM,06/13/2013 03:26:22 PM,06/13/2013 03:30:37 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/13/2013 03:50:37 PM,0 Block of OCEAN AVE,SF,94112,B09,43,6121,3,3,3,true,Fire,1,ENGINE,5,9,11,Outer Mission,"(37.7237008924072, -122.436724757716)",131640243-E42 +160860145,71,16034039,Medical Incident,03/26/2016,03/25/2016,03/26/2016 01:01:20 AM,03/26/2016 01:02:16 AM,03/26/2016 01:02:38 AM,03/26/2016 01:03:05 AM,03/26/2016 01:08:05 AM,03/26/2016 01:20:34 AM,03/26/2016 01:29:48 AM,Code 2 Transport,03/26/2016 02:02:49 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",160860145-71 +110630233,E15,11020743,Medical Incident,03/04/2011,03/04/2011,03/04/2011 02:09:39 PM,03/04/2011 02:11:24 PM,03/04/2011 02:11:32 PM,03/04/2011 02:12:34 PM,03/04/2011 02:14:18 PM,04/25/2016 02:05:48 PM,03/04/2011 02:15:31 PM,Other,03/04/2011 02:23:07 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",110630233-E15 +120010332,E26,12000285,Medical Incident,01/01/2012,01/01/2012,01/01/2012 08:11:21 AM,01/01/2012 08:13:01 AM,01/01/2012 08:13:41 AM,01/01/2012 08:15:56 AM,01/01/2012 08:19:04 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 08:59:21 AM,500 Block of VALLEY ST,SF,94131,B06,26,5565,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7441153984165, -122.434268338413)",120010332-E26 +140540334,89,14018423,Medical Incident,02/23/2014,02/23/2014,02/23/2014 11:48:05 PM,02/23/2014 11:49:30 PM,02/23/2014 11:50:03 PM,02/23/2014 11:50:20 PM,02/24/2014 12:00:16 AM,02/24/2014 12:25:18 AM,02/24/2014 12:30:25 AM,Code 2 Transport,02/24/2014 12:56:50 AM,4000 Block of 18TH ST,SF,94114,B05,6,5415,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7609766090845, -122.434457353955)",140540334-89 +112510247,B09,11082804,Alarms,09/08/2011,09/08/2011,09/08/2011 02:21:30 PM,09/08/2011 02:22:46 PM,09/08/2011 02:23:06 PM,09/08/2011 02:23:56 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 02:30:11 PM,500 Block of LANSDALE AVE,SF,94127,B09,39,8257,3,3,3,false,,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7360117950909, -122.456086256288)",112510247-B09 +132450275,RS2,13082751,Water Rescue,09/02/2013,09/02/2013,09/02/2013 05:12:10 PM,09/02/2013 05:12:44 PM,09/02/2013 05:13:54 PM,09/02/2013 05:14:21 PM,04/25/2016 01:50:59 PM,04/25/2016 01:50:59 PM,04/25/2016 01:50:59 PM,Other,09/02/2013 05:20:48 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,RESCUE SQUAD,12,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132450275-RS2 +120990163,T15,12032792,Structure Fire,04/08/2012,04/08/2012,04/08/2012 01:36:15 PM,04/08/2012 01:36:16 PM,04/08/2012 01:36:30 PM,04/08/2012 01:37:09 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 01:39:41 PM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,false,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",120990163-T15 +122100202,78,12069782,Medical Incident,07/28/2012,07/28/2012,07/28/2012 02:27:12 PM,07/28/2012 02:27:43 PM,07/28/2012 02:28:01 PM,07/28/2012 02:29:19 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,No Merit,07/28/2012 02:31:30 PM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",122100202-78 +133300268,E06,13112134,Alarms,11/26/2013,11/26/2013,11/26/2013 05:14:53 PM,11/26/2013 05:16:48 PM,11/26/2013 05:17:30 PM,11/26/2013 05:18:34 PM,11/26/2013 05:20:33 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,Other,11/26/2013 05:29:14 PM,1800 Block of MARKET ST,SF,94102,B02,36,3416,3,3,3,true,Alarm,1,ENGINE,1,2,8,Hayes Valley,"(37.771292378056, -122.424336949139)",133300268-E06 +160343374,KM03,16013588,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:58:10 PM,02/03/2016 08:59:18 PM,02/03/2016 09:00:20 PM,02/03/2016 09:00:48 PM,02/03/2016 09:03:48 PM,02/03/2016 09:07:38 PM,02/03/2016 09:18:35 PM,Code 2 Transport,02/03/2016 09:48:49 PM,1000 Block of CLEMENT ST,San Francisco,94118,B07,31,7141,3,3,3,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7827319876645, -122.470311998112)",160343374-KM03 +113330232,87,11110348,Medical Incident,11/29/2011,11/29/2011,11/29/2011 04:13:44 PM,11/29/2011 04:14:06 PM,11/29/2011 04:14:30 PM,04/25/2016 02:01:25 PM,11/29/2011 04:31:23 PM,11/29/2011 04:39:19 PM,11/29/2011 04:52:09 PM,Code 2 Transport,11/29/2011 05:16:56 PM,1000 Block of STOCKTON ST,SF,94108,B01,2,1331,3,2,2,true,,1,MEDIC,3,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",113330232-87 +140940357,E37,14031750,Alarms,04/04/2014,04/04/2014,04/04/2014 09:29:56 PM,04/04/2014 09:32:10 PM,04/04/2014 09:32:22 PM,04/04/2014 09:35:45 PM,04/04/2014 09:36:02 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Fire,04/04/2014 09:55:47 PM,2100 Block of 26TH ST,SAN FRANCISCO,94107,B10,37,2622,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7506048382754, -122.400710627784)",140940357-E37 +160250286,62,16009773,Medical Incident,01/25/2016,01/24/2016,01/25/2016 03:03:33 AM,01/25/2016 03:05:13 AM,01/25/2016 03:05:59 AM,01/25/2016 03:06:09 AM,01/25/2016 03:09:33 AM,01/25/2016 03:18:01 AM,01/25/2016 03:22:03 AM,Code 2 Transport,01/25/2016 04:00:49 AM,200 Block of MASONIC AVE,San Francisco,94118,B05,10,4461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,2,Lone Mountain/USF,"(37.7794015761116, -122.447084405267)",160250286-62 +132260341,B08,13076424,Alarms,08/14/2013,08/14/2013,08/14/2013 07:50:51 PM,08/14/2013 07:51:29 PM,08/14/2013 07:51:57 PM,08/14/2013 07:53:18 PM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,Other,08/14/2013 07:57:23 PM,1400 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,false,Alarm,1,CHIEF,3,5,5,Inner Sunset,"(37.7614340333644, -122.46176630545)",132260341-B08 +160090672,67,16003553,Medical Incident,01/09/2016,01/08/2016,01/09/2016 07:18:06 AM,01/09/2016 07:20:07 AM,01/09/2016 07:20:20 AM,01/09/2016 07:21:17 AM,01/09/2016 07:27:31 AM,01/09/2016 07:50:12 AM,01/09/2016 07:59:04 AM,Code 2 Transport,01/09/2016 09:03:02 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",160090672-67 +123480398,92,12116540,Medical Incident,12/13/2012,12/13/2012,12/13/2012 11:48:24 PM,12/13/2012 11:49:19 PM,12/13/2012 11:49:41 PM,12/13/2012 11:51:12 PM,12/13/2012 11:53:29 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Patient Declined Transport,12/14/2012 12:44:54 AM,900 Block of GREEN ST,SF,94133,B01,2,1441,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",123480398-92 +160020813,AM02,16000660,Medical Incident,01/02/2016,01/02/2016,01/02/2016 08:56:39 AM,01/02/2016 08:57:49 AM,01/02/2016 08:58:14 AM,01/02/2016 08:58:44 AM,01/02/2016 09:10:28 AM,01/02/2016 09:14:56 AM,01/02/2016 09:28:46 AM,Code 2 Transport,01/02/2016 10:02:51 AM,0 Block of CIELITO DR,San Francisco,94134,B09,43,6246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7096253280817, -122.422023475946)",160020813-AM02 +122290318,B02,12075991,Medical Incident,08/16/2012,08/16/2012,08/16/2012 06:52:46 PM,08/16/2012 06:53:57 PM,08/16/2012 06:54:31 PM,08/16/2012 06:55:49 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Other,08/16/2012 06:56:07 PM,100 Block of JONES ST,SF,94102,B03,1,1456,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",122290318-B02 +160651185,KM11,16025892,Medical Incident,03/05/2016,03/05/2016,03/05/2016 10:34:09 AM,03/05/2016 10:35:12 AM,03/05/2016 10:36:06 AM,03/05/2016 10:36:17 AM,03/05/2016 10:55:05 AM,03/05/2016 11:14:33 AM,03/05/2016 11:30:00 AM,Code 2 Transport,03/05/2016 12:05:51 PM,1800 Block of PALOU AVE,San Francisco,94124,B10,17,6471,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7368765170766, -122.396140592723)",160651185-KM11 +110550090,64,11018051,Medical Incident,02/24/2011,02/24/2011,02/24/2011 08:20:06 AM,02/24/2011 08:21:01 AM,02/24/2011 08:21:14 AM,02/24/2011 08:22:11 AM,02/24/2011 08:26:53 AM,02/24/2011 08:56:31 AM,02/24/2011 09:13:12 AM,Code 2 Transport,02/24/2011 09:44:28 AM,400 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7906704035857, -122.405181396784)",110550090-64 +131070394,E17,13036145,Medical Incident,04/17/2013,04/17/2013,04/17/2013 10:43:58 PM,04/17/2013 10:44:27 PM,04/17/2013 10:44:59 PM,04/17/2013 10:46:06 PM,04/17/2013 10:51:07 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/17/2013 10:55:08 PM,FITZGERALD AV/JENNINGS ST,SF,94124,B10,17,6614,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7220347181097, -122.393171960162)",131070394-E17 +160854322,63,16034022,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:53:34 PM,03/25/2016 11:55:31 PM,03/25/2016 11:55:54 PM,03/26/2016 12:00:50 AM,03/26/2016 12:05:04 AM,03/26/2016 12:30:25 AM,03/26/2016 12:43:17 AM,Code 2 Transport,03/26/2016 12:58:16 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160854322-63 +122420064,E38,12079956,Alarms,08/29/2012,08/28/2012,08/29/2012 07:16:54 AM,08/29/2012 07:18:03 AM,08/29/2012 07:18:15 AM,08/29/2012 07:19:42 AM,08/29/2012 07:22:04 AM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/29/2012 07:30:39 AM,2100 Block of PACIFIC AVE,SF,94115,B04,38,3441,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7938179536129, -122.430615255773)",122420064-E38 +121310288,83,12043665,Structure Fire,05/10/2012,05/10/2012,05/10/2012 05:43:00 PM,05/10/2012 05:44:07 PM,05/10/2012 05:44:30 PM,05/10/2012 05:44:43 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 05:51:03 PM,9TH AV/LINCOLN WY,SF,94122,B08,22,7333,3,3,3,true,Fire,1,MEDIC,10,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",121310288-83 +111000028,B07,11033081,Alarms,04/10/2011,04/09/2011,04/10/2011 01:33:26 AM,04/10/2011 01:34:49 AM,04/10/2011 01:35:05 AM,04/10/2011 01:37:00 AM,04/10/2011 01:38:42 AM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/10/2011 01:44:37 AM,500 Block of 6TH AVE,SF,94118,B07,31,7131,3,3,3,false,,1,CHIEF,1,7,1,Inner Richmond,"(37.7781659031536, -122.464008695862)",111000028-B07 +140880213,KM14,14029674,Other,03/29/2014,03/29/2014,03/29/2014 03:02:19 PM,03/29/2014 03:03:13 PM,03/29/2014 03:09:12 PM,03/29/2014 03:09:12 PM,03/29/2014 03:09:12 PM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,Other,03/29/2014 03:09:28 PM,300 Block of FULTON ST,SAN FRANCISCO,94102,B02,36,3264,3,3,3,false,Alarm,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140880213-KM14 +133580002,E07,13121548,Medical Incident,12/24/2013,12/23/2013,12/24/2013 12:07:46 AM,12/24/2013 12:07:54 AM,12/24/2013 12:09:00 AM,12/24/2013 12:10:54 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Patient Declined Transport,12/24/2013 12:30:01 AM,2500 Block of MISSION ST,SF,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7562403438982, -122.418755320213)",133580002-E07 +110160093,92,11005267,Medical Incident,01/16/2011,01/15/2011,01/16/2011 06:48:10 AM,01/16/2011 06:48:21 AM,01/16/2011 06:48:40 AM,01/16/2011 06:48:49 AM,01/16/2011 06:51:48 AM,01/16/2011 07:15:04 AM,01/16/2011 07:21:17 AM,Code 2 Transport,01/16/2011 07:39:57 AM,GREENWICH ST/GOUGH ST,SF,94123,B04,16,3336,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.7999972564381, -122.427645312428)",110160093-92 +160561508,KM04,16022350,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:27:02 AM,02/25/2016 11:27:02 AM,02/25/2016 11:27:02 AM,02/25/2016 11:27:02 AM,02/25/2016 11:27:02 AM,02/25/2016 12:01:58 PM,02/25/2016 12:36:24 PM,Code 2 Transport,02/25/2016 01:15:53 PM,CHARLES J BRENHAM ST/MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7809937815607, -122.413148050497)",160561508-KM04 +102570132,60,10081150,Medical Incident,09/14/2010,09/14/2010,09/14/2010 10:40:22 AM,09/14/2010 10:41:16 AM,09/14/2010 10:41:26 AM,09/14/2010 10:41:39 AM,09/14/2010 10:45:33 AM,09/14/2010 11:06:44 AM,09/14/2010 11:34:38 AM,Code 2 Transport,09/14/2010 12:02:41 PM,300 Block of HOWARD ST,SF,94105,B03,35,2124,E,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",102570132-60 +132090038,85,13070572,Other,07/28/2013,07/27/2013,07/28/2013 01:36:32 AM,07/28/2013 01:39:07 AM,07/28/2013 02:14:34 AM,07/28/2013 02:15:51 AM,07/28/2013 02:23:27 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/28/2013 02:27:45 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,9,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",132090038-85 +130120357,RC1,13004247,Structure Fire,01/12/2013,01/12/2013,01/12/2013 10:41:02 PM,01/12/2013 10:41:58 PM,01/12/2013 10:51:06 PM,01/12/2013 10:53:18 PM,01/12/2013 10:57:16 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/12/2013 11:08:38 PM,2400 Block of OCTAVIA ST,SF,94109,B04,38,3332,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,4,2,Pacific Heights,"(37.7946551961653, -122.428183423328)",130120357-RC1 +113190278,AM08,11106014,Medical Incident,11/15/2011,11/15/2011,11/15/2011 04:02:53 PM,11/15/2011 04:03:24 PM,11/15/2011 04:04:01 PM,11/15/2011 04:05:11 PM,11/15/2011 04:09:05 PM,11/15/2011 04:23:46 PM,11/15/2011 04:42:43 PM,Code 2 Transport,11/15/2011 05:28:01 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",113190278-AM08 +131450081,E01,13049111,Medical Incident,05/25/2013,05/24/2013,05/25/2013 07:57:52 AM,05/25/2013 07:58:52 AM,05/25/2013 07:59:12 AM,05/25/2013 07:59:55 AM,05/25/2013 08:03:49 AM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,Other,05/25/2013 08:07:29 AM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",131450081-E01 +102550287,KM15,10080733,Medical Incident,09/12/2010,09/12/2010,09/12/2010 10:20:46 PM,09/12/2010 10:21:00 PM,09/12/2010 10:22:21 PM,04/25/2016 02:08:37 PM,04/25/2016 02:08:37 PM,04/25/2016 02:08:37 PM,04/25/2016 02:08:37 PM,Other,04/25/2016 02:08:37 PM,2000 Block of POLK ST,SF,94109,B04,41,3125,2,2,2,false,,1,PRIVATE,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",102550287-KM15 +120940197,B08,12031162,Vehicle Fire,04/03/2012,04/03/2012,04/03/2012 02:29:33 PM,04/03/2012 02:32:32 PM,04/03/2012 02:32:43 PM,04/03/2012 02:36:58 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Fire,04/03/2012 02:40:58 PM,100 Block of FARRAGUT AVE,SF,94112,B09,33,8353,3,3,3,false,Fire,1,CHIEF,3,9,11,Outer Mission,"(37.7113842185025, -122.451205094979)",120940197-B08 +160292013,73,16011471,Other,01/29/2016,01/29/2016,01/29/2016 02:16:46 PM,01/29/2016 02:17:18 PM,01/29/2016 02:18:00 PM,01/29/2016 02:18:15 PM,01/29/2016 02:27:05 PM,01/29/2016 02:52:13 PM,01/29/2016 03:20:08 PM,Code 2 Transport,01/29/2016 04:33:08 PM,GREAT HY/SKYLINE BL,San Francisco,94132,B08,19,8713,3,3,3,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7252595509479, -122.503040635623)",160292013-73 +123250377,E31,12108243,Medical Incident,11/20/2012,11/20/2012,11/20/2012 08:27:23 PM,11/20/2012 08:28:11 PM,11/20/2012 08:28:23 PM,11/20/2012 08:29:27 PM,11/20/2012 08:31:27 PM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,Other,11/20/2012 08:42:00 PM,400 Block of 8TH AVE,SF,94118,B07,31,7135,3,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7799623898106, -122.466288408431)",123250377-E31 +130890139,E03,13029713,Structure Fire,03/30/2013,03/30/2013,03/30/2013 11:48:38 AM,03/30/2013 11:48:38 AM,03/30/2013 11:48:57 AM,03/30/2013 11:49:05 AM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 11:50:33 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",130890139-E03 +112150066,B04,11070887,Alarms,08/03/2011,08/02/2011,08/03/2011 07:42:28 AM,08/03/2011 07:44:13 AM,08/03/2011 07:44:34 AM,08/03/2011 07:45:43 AM,08/03/2011 07:50:34 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Fire,08/03/2011 07:59:07 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,CHIEF,2,4,3,Nob Hill,"(37.7899917286128, -122.418035034103)",112150066-B04 +111360066,E08,11045188,Medical Incident,05/16/2011,05/15/2011,05/16/2011 07:26:56 AM,05/16/2011 07:29:29 AM,05/16/2011 07:31:02 AM,05/16/2011 07:34:41 AM,05/16/2011 07:35:27 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 07:53:34 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111360066-E08 +131670237,AM02,13056738,Medical Incident,06/16/2013,06/16/2013,06/16/2013 03:35:21 PM,06/16/2013 03:36:40 PM,06/16/2013 03:37:23 PM,06/16/2013 03:37:54 PM,06/16/2013 03:40:36 PM,06/16/2013 03:52:41 PM,06/16/2013 04:10:19 PM,Code 2 Transport,06/16/2013 04:56:34 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",131670237-AM02 +130240312,E08,13008390,Medical Incident,01/24/2013,01/24/2013,01/24/2013 05:53:02 PM,01/24/2013 05:53:32 PM,01/24/2013 05:54:17 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 05:56:14 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7803475492385, -122.406487967809)",130240312-E08 +121930249,E09,12064294,Electrical Hazard,07/11/2012,07/11/2012,07/11/2012 03:54:26 PM,07/11/2012 03:56:06 PM,07/11/2012 03:56:16 PM,07/11/2012 03:56:37 PM,07/11/2012 04:00:19 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 04:01:37 PM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",121930249-E09 +121920086,E08,12063838,Alarms,07/10/2012,07/10/2012,07/10/2012 08:19:03 AM,07/10/2012 08:19:56 AM,07/10/2012 08:20:02 AM,07/10/2012 08:22:08 AM,07/10/2012 08:25:51 AM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 08:32:13 AM,600 Block of 2ND ST,SF,94107,B03,8,2153,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7811877689642, -122.391351449722)",121920086-E08 +130900108,B02,13030051,Structure Fire,03/31/2013,03/31/2013,03/31/2013 09:35:16 AM,03/31/2013 09:35:16 AM,03/31/2013 09:35:23 AM,03/31/2013 09:35:42 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 09:40:04 AM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",130900108-B02 +132740314,T10,13093222,Medical Incident,10/01/2013,10/01/2013,10/01/2013 08:38:17 PM,10/01/2013 08:39:07 PM,10/01/2013 08:39:45 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 08:41:51 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,2,2,false,Potentially Life-Threatening,1,TRUCK,2,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",132740314-T10 +133060118,B06,13103989,Structure Fire,11/02/2013,11/02/2013,11/02/2013 09:46:11 AM,11/02/2013 09:48:03 AM,11/02/2013 09:58:43 AM,11/02/2013 09:59:45 AM,11/02/2013 10:04:49 AM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/02/2013 11:02:48 AM,CLARENDON AV/LAGUNA HONDA BL,SF,94131,B08,20,8635,3,3,3,false,Fire,1,CHIEF,4,8,7,West of Twin Peaks,"(37.7515035610676, -122.461523603256)",133060118-B06 +121180148,RC2,12039056,Medical Incident,04/27/2012,04/27/2012,04/27/2012 10:18:06 AM,04/27/2012 10:19:06 AM,04/27/2012 10:20:13 AM,04/27/2012 10:22:11 AM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 10:25:38 AM,4300 Block of KIRKHAM ST,SF,94122,B08,23,7717,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7584344305601, -122.507398322699)",121180148-RC2 +132570297,B03,13087000,Alarms,09/14/2013,09/14/2013,09/14/2013 05:40:02 PM,09/14/2013 05:41:24 PM,09/14/2013 05:41:34 PM,09/14/2013 05:42:45 PM,09/14/2013 05:45:49 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 05:46:56 PM,0 Block of STEVENSON ST,SF,94105,B03,1,2144,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7893540721016, -122.400032359721)",132570297-B03 +131710064,77,13057958,Medical Incident,06/20/2013,06/19/2013,06/20/2013 07:22:57 AM,06/20/2013 07:24:15 AM,06/20/2013 07:32:36 AM,06/20/2013 07:33:00 AM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/20/2013 07:38:02 AM,GILMAN AV/JENNINGS ST,SF,94124,B10,17,6614,3,3,3,true,Non Life-threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7214084625386, -122.393736929535)",131710064-77 +102390021,E13,10075255,Medical Incident,08/27/2010,08/26/2010,08/27/2010 01:39:30 AM,08/27/2010 01:41:47 AM,08/27/2010 01:44:24 AM,08/27/2010 01:45:41 AM,08/27/2010 01:47:57 AM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/27/2010 01:51:09 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,1,1,2,true,,1,ENGINE,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",102390021-E13 +133420215,E17,13115992,Medical Incident,12/08/2013,12/08/2013,12/08/2013 01:12:12 PM,12/08/2013 01:13:32 PM,12/08/2013 01:14:25 PM,12/08/2013 01:15:52 PM,12/08/2013 01:17:28 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 01:32:48 PM,1400 Block of VAN DYKE AVE,SF,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7275267994511, -122.389650111212)",133420215-E17 +112850015,E21,11094240,Medical Incident,10/12/2011,10/11/2011,10/12/2011 02:00:25 AM,10/12/2011 02:00:57 AM,10/12/2011 02:01:29 AM,10/12/2011 02:02:56 AM,10/12/2011 02:04:23 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 02:15:51 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",112850015-E21 +160633690,AM16,16025270,Medical Incident,03/03/2016,03/03/2016,03/03/2016 09:48:45 PM,03/03/2016 09:50:01 PM,03/03/2016 09:51:20 PM,03/03/2016 09:52:14 PM,03/03/2016 09:55:57 PM,03/03/2016 10:01:03 PM,03/03/2016 10:17:34 PM,Code 2 Transport,03/03/2016 10:31:12 PM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",160633690-AM16 +112470331,64,11081573,Medical Incident,09/04/2011,09/04/2011,09/04/2011 07:14:46 PM,09/04/2011 07:15:32 PM,09/04/2011 07:15:44 PM,09/04/2011 07:15:53 PM,09/04/2011 07:18:52 PM,09/04/2011 07:37:54 PM,09/04/2011 07:45:20 PM,Code 2 Transport,09/04/2011 08:06:49 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,2,2,true,,1,MEDIC,1,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",112470331-64 +121530018,E39,12050503,Medical Incident,06/01/2012,05/31/2012,06/01/2012 12:44:29 AM,06/01/2012 12:46:52 AM,06/01/2012 12:47:06 AM,06/01/2012 12:48:30 AM,06/01/2012 12:50:51 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 12:56:38 AM,ULLOA ST/WEST PORTAL AV,SF,94127,B08,39,8611,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7408919760876, -122.465829021907)",121530018-E39 +111500216,74,11049733,Medical Incident,05/30/2011,05/30/2011,05/30/2011 04:06:28 PM,05/30/2011 04:09:09 PM,05/30/2011 04:10:21 PM,05/30/2011 04:13:25 PM,04/25/2016 02:04:23 PM,05/30/2011 04:34:22 PM,05/30/2011 04:37:54 PM,Code 2 Transport,05/30/2011 05:16:11 PM,1800 Block of BUSH ST,SF,94109,B04,38,3363,2,2,2,true,,1,MEDIC,2,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",111500216-74 +133320203,E12,13112706,Medical Incident,11/28/2013,11/28/2013,11/28/2013 05:09:12 PM,11/28/2013 05:10:54 PM,11/28/2013 05:11:48 PM,11/28/2013 05:12:31 PM,11/28/2013 05:15:45 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 05:20:21 PM,ASHBURY ST/OAK ST,SF,94117,B05,21,4513,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7718777415662, -122.447312420784)",133320203-E12 +120660142,T18,12021790,Medical Incident,03/06/2012,03/06/2012,03/06/2012 10:36:17 AM,03/06/2012 10:36:29 AM,03/06/2012 10:36:45 AM,03/06/2012 10:39:20 AM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/06/2012 10:42:06 AM,3100 Block of ORTEGA ST,SF,94116,B08,18,7623,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7513963730602, -122.497232247957)",120660142-T18 +111540105,89,11050819,Medical Incident,06/03/2011,06/03/2011,06/03/2011 09:42:10 AM,06/03/2011 09:43:46 AM,06/03/2011 09:45:20 AM,06/03/2011 09:45:40 AM,06/03/2011 09:59:47 AM,06/03/2011 10:13:28 AM,06/03/2011 10:21:28 AM,Code 2 Transport,06/03/2011 10:54:38 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,2,2,2,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",111540105-89 +160160297,55,16006266,Traffic Collision,01/16/2016,01/15/2016,01/16/2016 02:04:58 AM,01/16/2016 02:12:18 AM,01/16/2016 02:15:23 AM,01/16/2016 02:15:23 AM,01/16/2016 02:22:07 AM,01/16/2016 02:36:59 AM,01/16/2016 02:45:07 AM,Code 2 Transport,01/16/2016 03:20:49 AM,800 Block of 5TH ST,San Francisco,94158,B03,8,2235,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7743431649543, -122.395869905777)",160160297-55 +121250008,E36,12041362,Alarms,05/04/2012,05/03/2012,05/04/2012 12:25:35 AM,05/04/2012 12:27:11 AM,05/04/2012 12:27:22 AM,05/04/2012 12:29:43 AM,05/04/2012 12:31:40 AM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/04/2012 12:46:16 AM,300 Block of 11TH ST,SF,94103,B02,36,5112,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7712855259531, -122.413204267102)",121250008-E36 +160812824,59,16032289,Medical Incident,03/21/2016,03/21/2016,03/21/2016 05:17:35 PM,03/21/2016 05:21:18 PM,03/21/2016 05:24:23 PM,03/21/2016 05:24:37 PM,03/21/2016 05:38:17 PM,03/21/2016 05:48:29 PM,03/21/2016 06:06:22 PM,Code 2 Transport,03/21/2016 06:30:01 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160812824-59 +123480026,B03,12116219,Alarms,12/13/2012,12/12/2012,12/13/2012 01:41:32 AM,12/13/2012 01:43:10 AM,12/13/2012 01:43:53 AM,12/13/2012 01:46:13 AM,12/13/2012 01:49:48 AM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Other,12/13/2012 01:53:00 AM,1800 Block of BRYANT ST,SF,94110,B02,29,5242,3,3,3,false,Alarm,1,CHIEF,1,2,9,Mission,"(37.7636655981305, -122.41037293196)",123480026-B03 +123360335,E43,12111852,Medical Incident,12/01/2012,12/01/2012,12/01/2012 07:10:40 PM,12/01/2012 07:10:52 PM,12/01/2012 07:11:03 PM,04/25/2016 01:55:32 PM,12/01/2012 07:15:30 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 07:24:20 PM,SUNNYDALE AV/HAHN ST,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7119145572968, -122.416000281038)",123360335-E43 +160440037,KM07,16017529,Medical Incident,02/13/2016,02/12/2016,02/13/2016 12:11:04 AM,02/13/2016 12:14:06 AM,02/13/2016 12:16:13 AM,02/13/2016 12:17:28 AM,02/13/2016 12:25:21 AM,02/13/2016 12:52:57 AM,02/13/2016 12:53:41 AM,Code 2 Transport,02/13/2016 01:21:03 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160440037-KM07 +112500033,E03,11082353,Medical Incident,09/07/2011,09/06/2011,09/07/2011 03:32:48 AM,09/07/2011 03:34:08 AM,09/07/2011 03:34:50 AM,09/07/2011 03:36:32 AM,09/07/2011 03:38:52 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 03:46:26 AM,1100 Block of OFARRELL ST,SF,94109,B04,3,3261,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7845957801826, -122.42200470349)",112500033-E03 +122010324,AM22,12066921,Medical Incident,07/19/2012,07/19/2012,07/19/2012 09:44:19 PM,07/19/2012 09:44:57 PM,07/19/2012 09:45:08 PM,07/19/2012 09:45:49 PM,07/19/2012 09:54:29 PM,07/19/2012 10:12:11 PM,07/19/2012 10:16:28 PM,Code 3 Transport,07/19/2012 10:58:39 PM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",122010324-AM22 +160401894,52,16016038,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:18:51 PM,02/09/2016 01:21:12 PM,02/09/2016 01:21:27 PM,02/09/2016 01:21:36 PM,02/09/2016 01:28:45 PM,02/09/2016 01:47:27 PM,02/09/2016 02:06:33 PM,Code 2 Transport,02/09/2016 02:38:19 PM,400 Block of VALLEY ST,San Francisco,94131,B06,11,5561,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7441256693367, -122.43228210944)",160401894-52 +160211753,67,16008382,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:47:08 PM,01/21/2016 12:48:50 PM,01/21/2016 12:49:02 PM,01/21/2016 12:49:12 PM,01/21/2016 12:52:24 PM,01/21/2016 01:10:04 PM,01/21/2016 01:40:32 PM,Code 2 Transport,01/21/2016 01:55:25 PM,1700 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7694700718007, -122.415525556609)",160211753-67 +160881439,KM06,16034917,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:19:36 AM,03/28/2016 11:21:09 AM,03/28/2016 11:21:44 AM,03/28/2016 11:22:31 AM,03/28/2016 11:30:59 AM,03/28/2016 11:49:16 AM,03/28/2016 11:56:57 AM,Code 2 Transport,03/28/2016 12:31:30 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",160881439-KM06 +140440165,54,14014937,Citizen Assist / Service Call,02/13/2014,02/13/2014,02/13/2014 10:31:28 AM,02/13/2014 10:33:58 AM,02/13/2014 10:46:22 AM,02/13/2014 10:47:51 AM,02/13/2014 10:54:38 AM,02/13/2014 11:26:26 AM,02/13/2014 11:38:19 AM,Code 2 Transport,02/13/2014 12:21:30 PM,0 Block of NEPTUNE ST,SF,94124,B10,42,6474,,3,3,true,Alarm,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7306214923139, -122.397084856342)",140440165-54 +160263696,79,16010482,Medical Incident,01/26/2016,01/26/2016,01/26/2016 09:55:10 PM,01/26/2016 09:57:42 PM,01/26/2016 09:58:05 PM,01/26/2016 09:58:21 PM,01/26/2016 10:01:40 PM,01/26/2016 10:08:13 PM,01/26/2016 10:18:47 PM,Code 2 Transport,01/26/2016 10:36:26 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160263696-79 +110180344,AM14,11006083,Medical Incident,01/18/2011,01/18/2011,01/18/2011 11:31:07 PM,01/18/2011 11:33:14 PM,01/18/2011 11:35:32 PM,01/18/2011 11:36:03 PM,01/18/2011 11:38:11 PM,01/18/2011 11:53:21 PM,01/18/2011 11:57:48 PM,Code 2 Transport,01/19/2011 12:16:55 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,1,1,2,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",110180344-AM14 +130780074,T08,13025940,Gas Leak (Natural and LP Gases),03/19/2013,03/18/2013,03/19/2013 06:57:12 AM,03/19/2013 06:58:33 AM,03/19/2013 06:59:20 AM,03/19/2013 07:01:11 AM,03/19/2013 07:04:06 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 07:30:04 AM,500 Block of BRANNAN ST,SF,94107,B03,8,2241,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7774865325812, -122.397691886789)",130780074-T08 +103570131,E10,10114530,Medical Incident,12/23/2010,12/23/2010,12/23/2010 10:34:10 AM,12/23/2010 10:37:25 AM,12/23/2010 10:38:33 AM,12/23/2010 10:40:34 AM,12/23/2010 10:42:57 AM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/23/2010 10:51:33 AM,FULTON ST/CENTRAL AV,SF,94117,B05,21,4361,1,1,2,true,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7760165906807, -122.444779889144)",103570131-E10 +132860212,E36,13097291,Medical Incident,10/13/2013,10/13/2013,10/13/2013 01:28:22 PM,10/13/2013 01:29:27 PM,10/13/2013 01:30:13 PM,10/13/2013 01:31:57 PM,10/13/2013 01:33:03 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/13/2013 01:35:12 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132860212-E36 +160571534,70,16022734,Medical Incident,02/26/2016,02/26/2016,02/26/2016 12:00:57 PM,02/26/2016 12:00:57 PM,02/26/2016 12:01:44 PM,02/26/2016 12:01:56 PM,02/26/2016 12:09:52 PM,02/26/2016 12:23:19 PM,02/26/2016 12:35:03 PM,Code 2 Transport,02/26/2016 01:30:28 PM,10TH ST/MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7752720593077, -122.415908181241)",160571534-70 +140930207,88,14031287,Medical Incident,04/03/2014,04/03/2014,04/03/2014 01:40:08 PM,04/03/2014 01:42:35 PM,04/03/2014 01:44:07 PM,04/03/2014 01:44:20 PM,04/03/2014 01:48:20 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,Patient Declined Transport,04/03/2014 02:04:14 PM,MISSION ST/7TH ST,SAN FRANCISCO,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",140930207-88 +110430414,AM04,11014458,Medical Incident,02/12/2011,02/12/2011,02/12/2011 09:42:31 PM,02/12/2011 09:43:33 PM,02/12/2011 09:44:45 PM,04/25/2016 02:06:06 PM,02/12/2011 09:54:13 PM,02/12/2011 10:30:42 PM,02/12/2011 10:45:31 PM,Code 2 Transport,02/12/2011 11:16:47 PM,6200 Block of 3RD ST,SF,94124,B10,44,6544,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7221089752552, -122.395918665924)",110430414-AM04 +160521676,57,16020815,Medical Incident,02/21/2016,02/21/2016,02/21/2016 01:07:36 PM,02/21/2016 01:09:15 PM,02/21/2016 01:09:44 PM,02/21/2016 01:09:53 PM,02/21/2016 01:29:22 PM,02/21/2016 01:47:27 PM,02/21/2016 02:20:38 PM,Code 2 Transport,02/21/2016 02:54:46 PM,5000 Block of MISSION ST,San Francisco,94112,B09,43,6175,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7174156464153, -122.440178977937)",160521676-57 +110820303,T15,11027035,Structure Fire,03/23/2011,03/23/2011,03/23/2011 05:24:38 PM,03/23/2011 05:25:28 PM,03/23/2011 05:25:44 PM,03/23/2011 05:29:21 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 05:34:09 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,false,,1,TRUCK,10,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",110820303-T15 +160020347,57,16000600,Medical Incident,01/02/2016,01/01/2016,01/02/2016 02:52:18 AM,01/02/2016 02:52:18 AM,01/02/2016 02:52:54 AM,01/02/2016 02:53:00 AM,01/02/2016 03:02:43 AM,01/02/2016 03:40:11 AM,01/02/2016 03:47:32 AM,Code 2 Transport,01/02/2016 04:35:24 AM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160020347-57 +140790188,RA48,14026722,Medical Incident,03/20/2014,03/20/2014,03/20/2014 01:08:30 PM,03/20/2014 01:10:53 PM,03/20/2014 01:13:03 PM,03/20/2014 01:15:59 PM,03/20/2014 01:18:44 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Code 2 Transport,03/20/2014 01:41:54 PM,1400 Block of HALIBUT CT,TREASURE ISLAN,94130,B03,48,2931,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",140790188-RA48 +160351280,KM03,16013777,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:38:23 AM,02/04/2016 10:41:39 AM,02/04/2016 10:41:56 AM,02/04/2016 10:48:31 AM,02/04/2016 10:56:45 AM,02/04/2016 11:05:43 AM,02/04/2016 11:31:35 AM,Code 2 Transport,02/04/2016 12:12:20 PM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",160351280-KM03 +160510430,61,16020354,Medical Incident,02/20/2016,02/19/2016,02/20/2016 03:52:36 AM,02/20/2016 03:53:04 AM,02/20/2016 03:53:24 AM,02/20/2016 03:54:02 AM,02/20/2016 04:01:29 AM,02/20/2016 04:29:09 AM,02/20/2016 04:37:23 AM,Code 3 Transport,02/20/2016 06:11:19 AM,100 Block of PRAGUE ST,San Francisco,94112,B09,43,6163,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.719690286609, -122.42654836559)",160510430-61 +110150158,T05,11004974,Alarms,01/15/2011,01/15/2011,01/15/2011 12:07:54 PM,01/15/2011 12:08:42 PM,01/15/2011 12:08:52 PM,01/15/2011 12:10:04 PM,01/15/2011 12:13:44 PM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 12:14:56 PM,0 Block of ENCANTO AVE,SF,94115,B05,21,4344,3,3,3,false,,1,TRUCK,2,5,2,Lone Mountain/USF,"(37.7804797847922, -122.443651759898)",110150158-T05 +110340040,B09,11011061,Medical Incident,02/03/2011,02/02/2011,02/03/2011 04:00:26 AM,02/03/2011 04:00:42 AM,02/03/2011 04:01:04 AM,02/03/2011 04:04:08 AM,02/03/2011 04:07:55 AM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/03/2011 04:25:58 AM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,,1,CHIEF,2,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",110340040-B09 +132650103,E06,13089828,Structure Fire,09/22/2013,09/22/2013,09/22/2013 08:34:58 AM,09/22/2013 08:35:49 AM,09/22/2013 08:36:11 AM,09/22/2013 08:39:06 AM,09/22/2013 08:41:28 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/22/2013 08:42:38 AM,1000 Block of HAYES ST,SF,94117,B05,21,3631,3,3,3,true,Alarm,1,ENGINE,6,5,5,Hayes Valley,"(37.7754672344817, -122.433645632366)",132650103-E06 +160651942,KM12,16025958,Medical Incident,03/05/2016,03/05/2016,03/05/2016 02:22:13 PM,03/05/2016 02:29:09 PM,03/05/2016 02:29:31 PM,03/05/2016 02:31:17 PM,03/05/2016 02:41:48 PM,03/05/2016 03:02:46 PM,03/05/2016 03:20:52 PM,Code 2 Transport,03/05/2016 04:06:04 PM,2400 Block of 42ND AVE,San Francisco,94116,B08,18,7636,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7410305388714, -122.500197834017)",160651942-KM12 +113570033,E25,11118446,Administrative,12/23/2011,12/22/2011,12/23/2011 01:00:12 AM,12/23/2011 01:00:14 AM,12/23/2011 01:00:23 AM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Fire,12/23/2011 01:00:49 AM,3300 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,true,,1,ENGINE,1,None,None,None,"(37.7475912199361, -122.387182780653)",113570033-E25 +160180292,60,16007101,Medical Incident,01/18/2016,01/17/2016,01/18/2016 03:21:34 AM,01/18/2016 03:22:07 AM,01/18/2016 03:22:15 AM,01/18/2016 03:27:24 AM,01/18/2016 03:32:44 AM,01/18/2016 03:40:18 AM,01/18/2016 03:40:19 AM,Code 2 Transport,01/18/2016 04:17:29 AM,SAN JOSE AV/OCEAN AV,San Francisco,94112,B09,15,8311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7229665717171, -122.44474662479)",160180292-60 +130700341,54,13023473,Medical Incident,03/11/2013,03/11/2013,03/11/2013 06:26:29 PM,03/11/2013 06:27:13 PM,03/11/2013 06:27:33 PM,03/11/2013 06:27:40 PM,03/11/2013 06:39:05 PM,03/11/2013 06:51:12 PM,03/11/2013 06:58:20 PM,Code 2 Transport,03/11/2013 07:19:32 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",130700341-54 +130650153,E09,13021728,Medical Incident,03/06/2013,03/06/2013,03/06/2013 12:14:40 PM,03/06/2013 12:18:15 PM,03/06/2013 12:18:32 PM,03/06/2013 12:19:16 PM,03/06/2013 12:23:56 PM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,Other,03/06/2013 12:39:34 PM,IOWA ST/23RD ST,SF,94107,B10,25,2612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7551548898327, -122.391901127872)",130650153-E09 +121410035,E28,12046719,Medical Incident,05/20/2012,05/19/2012,05/20/2012 02:24:12 AM,05/20/2012 02:25:58 AM,05/20/2012 02:26:09 AM,05/20/2012 02:27:35 AM,05/20/2012 02:29:24 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 02:39:12 AM,500 Block of GREEN ST,SF,94133,B01,28,1266,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.7996867434054, -122.407945033235)",121410035-E28 +132480040,89,13083568,Citizen Assist / Service Call,09/05/2013,09/04/2013,09/05/2013 03:25:02 AM,09/05/2013 03:27:58 AM,09/05/2013 03:44:50 AM,09/05/2013 03:45:06 AM,09/05/2013 03:53:54 AM,09/05/2013 04:16:44 AM,09/05/2013 04:42:02 AM,Code 3 Transport,09/05/2013 05:00:44 AM,600 Block of HEAD ST,SF,94132,B09,33,8433,3,3,3,true,Alarm,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7188076273319, -122.464519500184)",132480040-89 +130800375,E03,13026911,Medical Incident,03/21/2013,03/21/2013,03/21/2013 08:56:38 PM,03/21/2013 08:58:55 PM,03/21/2013 08:59:07 PM,03/21/2013 09:00:40 PM,03/21/2013 09:01:22 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 09:06:11 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130800375-E03 +160110356,KM07,16004254,Medical Incident,01/11/2016,01/10/2016,01/11/2016 04:09:53 AM,01/11/2016 04:11:00 AM,01/11/2016 04:11:11 AM,01/11/2016 04:11:58 AM,01/11/2016 04:28:14 AM,01/11/2016 04:32:34 AM,01/11/2016 04:46:53 AM,Code 2 Transport,01/11/2016 05:10:37 AM,1200 Block of NORTHPOINT DR,Treasure Isla,94130,B03,48,2931,2,2,2,false,Non Life-threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8315620918813, -122.373330222073)",160110356-KM07 +160762475,79,16030210,Medical Incident,03/16/2016,03/16/2016,03/16/2016 03:39:35 PM,03/16/2016 03:43:16 PM,03/16/2016 03:43:54 PM,03/16/2016 03:44:27 PM,03/16/2016 03:59:07 PM,03/16/2016 03:59:09 PM,03/16/2016 04:08:52 PM,Code 2 Transport,03/16/2016 04:29:18 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160762475-79 +121410223,AM20,12046878,Medical Incident,05/20/2012,05/20/2012,05/20/2012 01:42:19 PM,05/20/2012 01:44:49 PM,05/20/2012 01:45:55 PM,04/25/2016 01:58:36 PM,05/20/2012 01:51:32 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,No Merit,05/20/2012 02:00:36 PM,MASONIC AV/FELL ST,SF,94117,B05,21,4356,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",121410223-AM20 +160602706,53,16024001,Medical Incident,02/29/2016,02/29/2016,02/29/2016 05:36:29 PM,02/29/2016 05:38:32 PM,02/29/2016 05:39:04 PM,02/29/2016 05:39:18 PM,02/29/2016 05:51:10 PM,02/29/2016 06:36:32 PM,02/29/2016 06:50:21 PM,Code 2 Transport,02/29/2016 07:31:15 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160602706-53 +140590317,E07,14020009,Medical Incident,02/28/2014,02/28/2014,02/28/2014 06:08:15 PM,02/28/2014 06:09:06 PM,02/28/2014 06:09:47 PM,02/28/2014 06:11:20 PM,02/28/2014 06:15:14 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Code 2 Transport,02/28/2014 06:51:06 PM,500 Block of 9TH ST,SF,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7707086968349, -122.407716820686)",140590317-E07 +160840219,55,16033222,Medical Incident,03/24/2016,03/23/2016,03/24/2016 02:14:04 AM,03/24/2016 02:14:04 AM,03/24/2016 02:14:36 AM,03/24/2016 02:15:33 AM,03/24/2016 02:19:36 AM,03/24/2016 02:31:52 AM,03/24/2016 02:41:04 AM,Code 2 Transport,03/24/2016 03:09:39 AM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",160840219-55 +160060691,62,16002304,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:10:51 AM,01/06/2016 08:11:17 AM,01/06/2016 08:12:04 AM,01/06/2016 08:12:19 AM,01/06/2016 08:17:24 AM,01/06/2016 08:39:08 AM,01/06/2016 08:48:52 AM,Code 2 Transport,01/06/2016 09:16:46 AM,SUTTER ST/POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",160060691-62 +131790281,E23,13060871,Electrical Hazard,06/28/2013,06/28/2013,06/28/2013 02:57:41 PM,06/28/2013 02:59:34 PM,06/28/2013 02:59:48 PM,06/28/2013 03:01:17 PM,06/28/2013 03:02:11 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,Other,06/28/2013 04:11:07 PM,4100 Block of IRVING ST,SF,94122,B08,23,7653,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7625057882895, -122.502311044372)",131790281-E23 +140440395,92,14015132,Medical Incident,02/13/2014,02/13/2014,02/13/2014 08:37:05 PM,02/13/2014 08:38:39 PM,02/13/2014 08:38:56 PM,02/13/2014 08:39:04 PM,02/13/2014 08:43:59 PM,02/13/2014 08:59:36 PM,02/13/2014 09:04:18 PM,Code 2 Transport,02/13/2014 09:38:34 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",140440395-92 +111610124,E32,11053129,Structure Fire,06/10/2011,06/10/2011,06/10/2011 10:57:57 AM,06/10/2011 10:57:57 AM,06/10/2011 10:58:11 AM,06/10/2011 10:58:22 AM,06/10/2011 10:59:48 AM,04/25/2016 02:04:13 PM,04/25/2016 02:04:13 PM,Fire,06/10/2011 11:00:50 AM,30TH ST/SAN JOSE AV,SF,94110,B06,32,5575,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7422945337206, -122.42328556238)",111610124-E32 +122910154,E08,12096314,Medical Incident,10/17/2012,10/17/2012,10/17/2012 10:51:08 AM,10/17/2012 10:52:40 AM,10/17/2012 10:54:05 AM,10/17/2012 10:58:33 AM,10/17/2012 10:58:55 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 11:02:04 AM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122910154-E08 +132770450,B10,13094304,Vehicle Fire,10/04/2013,10/04/2013,10/04/2013 09:41:19 PM,10/04/2013 09:42:31 PM,10/04/2013 09:51:17 PM,10/04/2013 09:52:51 PM,10/04/2013 09:56:24 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 10:41:21 PM,300 Block of RUTLEDGE ST,SF,94110,B06,9,5666,3,3,3,false,Fire,1,CHIEF,3,6,9,Bernal Heights,"(37.7449122245408, -122.409651107101)",132770450-B10 +121860249,T06,12062019,Structure Fire,07/04/2012,07/04/2012,07/04/2012 06:07:44 PM,07/04/2012 06:07:50 PM,07/04/2012 06:08:08 PM,07/04/2012 06:09:14 PM,07/04/2012 06:12:36 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 06:21:25 PM,0 Block of CAPP ST,SF,94103,B02,7,5225,3,3,3,false,Fire,1,TRUCK,6,2,9,Mission,"(37.7662170202259, -122.418615040829)",121860249-T06 +160480192,62,16019194,Medical Incident,02/17/2016,02/16/2016,02/17/2016 01:49:04 AM,02/17/2016 01:49:49 AM,02/17/2016 01:50:26 AM,02/17/2016 01:50:59 AM,02/17/2016 01:59:47 AM,02/17/2016 02:17:35 AM,02/17/2016 02:37:39 AM,Code 2 Transport,02/17/2016 03:25:29 AM,GEARY BL/MASONIC AV,San Francisco,94118,B05,10,4365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",160480192-62 +111110371,75,11036820,Medical Incident,04/21/2011,04/21/2011,04/21/2011 10:05:32 PM,04/21/2011 10:05:32 PM,04/21/2011 10:06:29 PM,04/21/2011 10:06:50 PM,04/21/2011 10:13:32 PM,04/21/2011 10:27:55 PM,04/21/2011 10:47:48 PM,Code 2 Transport,04/21/2011 11:27:50 PM,5700 Block of MISSION ST,SF,94112,B09,33,6212,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7098635927288, -122.449729173956)",111110371-75 +133390340,77,13115011,Medical Incident,12/05/2013,12/05/2013,12/05/2013 08:00:24 PM,12/05/2013 08:04:51 PM,12/05/2013 08:05:03 PM,12/05/2013 08:05:13 PM,12/05/2013 08:12:04 PM,12/05/2013 08:21:50 PM,12/05/2013 08:33:47 PM,Code 3 Transport,12/05/2013 09:11:13 PM,2600 Block of 44TH AVE,SF,94116,B08,18,7711,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7372136239486, -122.50208065448)",133390340-77 +160553483,57,16022129,Medical Incident,02/24/2016,02/24/2016,02/24/2016 07:22:49 PM,02/24/2016 07:23:49 PM,02/24/2016 07:23:56 PM,02/24/2016 07:24:44 PM,02/24/2016 07:47:49 PM,02/24/2016 07:47:58 PM,02/24/2016 08:09:40 PM,Code 3 Transport,02/24/2016 08:36:23 PM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",160553483-57 +132500253,94,13084452,Medical Incident,09/07/2013,09/07/2013,09/07/2013 02:36:49 PM,09/07/2013 02:37:14 PM,09/07/2013 02:38:00 PM,09/07/2013 02:38:42 PM,09/07/2013 02:47:57 PM,09/07/2013 03:16:47 PM,09/07/2013 03:30:15 PM,Code 2 Transport,09/07/2013 03:51:33 PM,300 Block of OFARRELL ST,SF,94102,B01,1,1452,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Tenderloin,"(37.7861537029873, -122.410515154623)",132500253-94 +131100026,92,13036877,Medical Incident,04/20/2013,04/19/2013,04/20/2013 01:36:54 AM,04/20/2013 01:39:04 AM,04/20/2013 01:39:10 AM,04/20/2013 01:41:06 AM,04/20/2013 01:42:52 AM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,No Merit,04/20/2013 01:50:25 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",131100026-92 +132090312,T05,13070801,Alarms,07/28/2013,07/28/2013,07/28/2013 07:22:18 PM,07/28/2013 07:26:32 PM,07/28/2013 07:26:57 PM,07/28/2013 07:27:59 PM,07/28/2013 07:29:44 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 07:37:33 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,3,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",132090312-T05 +160672006,AM02,16026796,Medical Incident,03/07/2016,03/07/2016,03/07/2016 03:09:38 PM,03/07/2016 03:10:58 PM,03/07/2016 03:13:32 PM,03/07/2016 03:14:01 PM,03/07/2016 03:44:10 PM,03/07/2016 03:44:42 PM,03/07/2016 03:48:29 PM,Code 2 Transport,03/07/2016 04:14:57 PM,1900 Block of GOLDEN GATE AVE,San Francisco,94115,B05,21,4345,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7781401614839, -122.442675250098)",160672006-AM02 +132790049,94,13094776,Medical Incident,10/06/2013,10/05/2013,10/06/2013 02:01:00 AM,10/06/2013 02:04:19 AM,10/06/2013 02:06:49 AM,10/06/2013 02:07:00 AM,10/06/2013 02:19:49 AM,10/06/2013 02:42:29 AM,10/06/2013 02:51:37 AM,Code 2 Transport,10/06/2013 03:20:00 AM,MARKET ST/7TH ST,SF,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",132790049-94 +160642086,57,16025538,Medical Incident,03/04/2016,03/04/2016,03/04/2016 01:52:36 PM,03/04/2016 01:53:21 PM,03/04/2016 01:53:49 PM,03/04/2016 01:54:04 PM,03/04/2016 02:04:33 PM,03/04/2016 02:04:39 PM,03/04/2016 02:20:47 PM,Code 2 Transport,03/04/2016 03:20:29 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160642086-57 +140660178,T17,14022297,Structure Fire,03/07/2014,03/07/2014,03/07/2014 11:50:05 AM,03/07/2014 11:50:35 AM,03/07/2014 11:51:11 AM,03/07/2014 11:52:37 AM,03/07/2014 11:54:08 AM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Fire,03/07/2014 12:12:38 PM,1200 Block of EGBERT AVE,SAN FRANCISCO,94124,B10,17,6615,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7210363669692, -122.389871475458)",140660178-T17 +110410302,99,11013669,Medical Incident,02/10/2011,02/10/2011,02/10/2011 05:10:14 PM,02/10/2011 05:11:37 PM,02/10/2011 05:12:20 PM,02/10/2011 05:12:31 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 05:16:25 PM,1100 Block of MARKET ST,SF,94103,B02,1,2317,E,3,3,true,,1,MEDIC,3,2,6,South of Market,"(37.7795310846627, -122.413542548681)",110410302-99 +102840276,D3,10090495,Structure Fire,10/11/2010,10/11/2010,10/11/2010 05:55:21 PM,10/11/2010 05:56:30 PM,10/11/2010 05:56:49 PM,10/11/2010 05:57:28 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Other,10/11/2010 06:01:56 PM,1600 Block of OAKDALE AVE,SF,94124,B10,17,6471,3,3,3,false,,1,CHIEF,7,10,10,Bayview Hunters Point,"(37.7351844916326, -122.391493955999)",102840276-D3 +132570094,81,13086842,Medical Incident,09/14/2013,09/13/2013,09/14/2013 07:55:33 AM,09/14/2013 07:56:44 AM,09/14/2013 07:57:00 AM,09/14/2013 07:57:14 AM,09/14/2013 08:04:54 AM,09/14/2013 08:24:55 AM,09/14/2013 08:32:12 AM,Code 2 Transport,09/14/2013 09:08:47 AM,800 Block of 34TH AVE,SF,94121,B07,34,7252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7730659199662, -122.493831266165)",132570094-81 +140020198,54,14000683,Medical Incident,01/02/2014,01/02/2014,01/02/2014 11:45:43 AM,01/02/2014 11:50:54 AM,01/02/2014 11:51:11 AM,01/02/2014 11:51:21 AM,01/02/2014 11:59:28 AM,01/02/2014 12:13:53 PM,01/02/2014 12:31:46 PM,Code 2 Transport,01/02/2014 01:16:23 PM,900 Block of SHOTWELL ST,SF,94110,B06,7,544,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7532406253685, -122.415177223195)",140020198-54 +131970034,82,13066709,Medical Incident,07/16/2013,07/15/2013,07/16/2013 04:43:14 AM,07/16/2013 04:45:52 AM,07/16/2013 04:46:12 AM,07/16/2013 04:46:22 AM,07/16/2013 04:49:47 AM,07/16/2013 04:58:36 AM,07/16/2013 05:05:37 AM,Code 2 Transport,07/16/2013 05:28:55 AM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",131970034-82 +112240320,E03,11074103,Medical Incident,08/12/2011,08/12/2011,08/12/2011 06:46:22 PM,08/12/2011 06:47:51 PM,08/12/2011 06:48:11 PM,08/12/2011 06:49:17 PM,08/12/2011 06:51:02 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 06:57:45 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,E,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7850785957039, -122.412895408589)",112240320-E03 +160480900,AM02,16019264,Medical Incident,02/17/2016,02/17/2016,02/17/2016 09:01:33 AM,02/17/2016 09:03:22 AM,02/17/2016 09:04:24 AM,02/17/2016 09:05:30 AM,02/17/2016 09:17:53 AM,02/17/2016 09:38:34 AM,02/17/2016 09:52:33 AM,Code 2 Transport,02/17/2016 10:30:00 AM,1100 Block of UNION ST,San Francisco,94109,B01,41,1611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,2,Russian Hill,"(37.7993058366445, -122.418648752342)",160480900-AM02 +130490263,55,13016776,Medical Incident,02/18/2013,02/18/2013,02/18/2013 04:32:08 PM,02/18/2013 04:33:20 PM,02/18/2013 04:33:44 PM,02/18/2013 04:36:24 PM,02/18/2013 04:42:16 PM,02/18/2013 05:09:18 PM,02/18/2013 05:39:01 PM,Code 2 Transport,02/18/2013 05:58:34 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",130490263-55 +130510361,66,13017408,Medical Incident,02/20/2013,02/20/2013,02/20/2013 10:45:19 PM,02/20/2013 10:45:23 PM,02/20/2013 10:46:01 PM,02/20/2013 10:46:24 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,04/25/2016 01:54:11 PM,800 Block of EXCELSIOR AVE,SF,94112,B09,43,6155,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7230598415427, -122.426825144519)",130510361-66 +160300608,62,16011679,Medical Incident,01/30/2016,01/29/2016,01/30/2016 05:36:55 AM,01/30/2016 05:36:55 AM,01/30/2016 05:38:54 AM,01/30/2016 05:39:01 AM,01/30/2016 05:50:27 AM,01/30/2016 06:12:28 AM,01/30/2016 06:33:08 AM,Code 2 Transport,01/30/2016 07:04:01 AM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",160300608-62 +160443245,AM14,16017841,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:16:00 PM,02/13/2016 08:16:00 PM,02/13/2016 08:30:38 PM,02/13/2016 08:30:49 PM,02/13/2016 08:42:00 PM,02/13/2016 08:51:28 PM,02/13/2016 09:02:18 PM,Code 2 Transport,02/13/2016 09:29:54 PM,MASON ST/ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",160443245-AM14 +121240067,85,12041071,Medical Incident,05/03/2012,05/02/2012,05/03/2012 06:40:34 AM,05/03/2012 06:41:35 AM,05/03/2012 06:42:00 AM,05/03/2012 06:42:33 AM,05/03/2012 06:43:44 AM,05/03/2012 07:00:16 AM,05/03/2012 07:11:31 AM,Code 3 Transport,05/03/2012 07:35:57 AM,600 Block of 19TH AVE,SF,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7756657233862, -122.477897621739)",121240067-85 +160590505,AM20,16023383,Medical Incident,02/28/2016,02/27/2016,02/28/2016 03:53:57 AM,02/28/2016 03:55:19 AM,02/28/2016 03:55:32 AM,02/28/2016 03:56:08 AM,02/28/2016 04:03:29 AM,02/28/2016 04:25:19 AM,02/28/2016 04:40:14 AM,Code 2 Transport,02/28/2016 05:05:55 AM,800 Block of 40TH AVE,San Francisco,94121,B07,34,7261,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7727661437105, -122.500391024515)",160590505-AM20 +131710166,AM08,13058038,Medical Incident,06/20/2013,06/20/2013,06/20/2013 12:00:21 PM,06/20/2013 12:04:29 PM,06/20/2013 12:04:55 PM,06/20/2013 12:06:06 PM,06/20/2013 12:10:26 PM,06/20/2013 12:29:43 PM,06/20/2013 12:49:53 PM,Code 2 Transport,06/20/2013 01:51:31 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",131710166-AM08 +160181572,71,16007226,Medical Incident,01/18/2016,01/18/2016,01/18/2016 01:01:28 PM,01/18/2016 01:02:04 PM,01/18/2016 01:03:08 PM,01/18/2016 01:08:15 PM,01/18/2016 01:15:35 PM,01/18/2016 01:29:43 PM,01/18/2016 01:48:13 PM,Code 2 Transport,01/18/2016 02:31:25 PM,CALL BOX:,Presidio,94129,B99,51,4617,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.7905658380644, -122.481242453801)",160181572-71 +130850210,E06,13028393,Medical Incident,03/26/2013,03/26/2013,03/26/2013 02:39:04 PM,03/26/2013 02:39:26 PM,03/26/2013 02:39:56 PM,03/26/2013 02:41:31 PM,03/26/2013 02:43:30 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 02:49:36 PM,CHURCH ST/DUBOCE AV,SF,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",130850210-E06 +160570084,63,16022587,Medical Incident,02/26/2016,02/25/2016,02/26/2016 12:37:07 AM,02/26/2016 12:39:09 AM,02/26/2016 12:39:20 AM,02/26/2016 12:40:08 AM,02/26/2016 12:44:12 AM,02/26/2016 01:16:45 AM,02/26/2016 01:24:34 AM,Code 2 Transport,02/26/2016 01:57:24 AM,300 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7670020286478, -122.422158110393)",160570084-63 +113210114,E22,11106577,Alarms,11/17/2011,11/17/2011,11/17/2011 09:52:23 AM,11/17/2011 09:53:05 AM,11/17/2011 09:53:18 AM,11/17/2011 09:53:53 AM,11/17/2011 09:56:22 AM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Fire,11/17/2011 09:58:32 AM,1700 Block of 20TH AVE,SF,94122,B08,40,7422,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7551297160673, -122.477545284221)",113210114-E22 +160592940,AM22,16023658,Medical Incident,02/28/2016,02/28/2016,02/28/2016 07:56:08 PM,02/28/2016 07:57:58 PM,02/28/2016 07:58:31 PM,02/28/2016 07:59:52 PM,02/28/2016 08:19:41 PM,02/28/2016 08:19:43 PM,02/28/2016 08:24:51 PM,Code 3 Transport,02/28/2016 09:04:07 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",160592940-AM22 +130470422,E02,13016206,Medical Incident,02/16/2013,02/16/2013,02/16/2013 10:50:15 PM,02/16/2013 10:50:35 PM,02/16/2013 11:09:03 PM,02/16/2013 11:10:06 PM,02/16/2013 11:13:19 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/16/2013 11:17:42 PM,GREEN ST/SANSOME ST,SF,94111,B01,13,1213,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8003071297428, -122.402604126567)",130470422-E02 +113000059,87,11099417,Traffic Collision,10/27/2011,10/26/2011,10/27/2011 07:57:46 AM,10/27/2011 07:58:23 AM,10/27/2011 07:58:31 AM,10/27/2011 07:59:22 AM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 08:01:12 AM,FOLSOM ST/21ST ST,SF,94110,B06,7,545,3,3,3,true,,1,MEDIC,4,6,9,Mission,"(37.7572976449633, -122.414541469066)",113000059-87 +160610196,61,16024156,Medical Incident,03/01/2016,02/29/2016,03/01/2016 02:06:28 AM,03/01/2016 02:07:59 AM,03/01/2016 02:08:36 AM,03/01/2016 02:09:37 AM,03/01/2016 02:21:52 AM,03/01/2016 02:50:05 AM,03/01/2016 03:07:08 AM,Code 2 Transport,03/01/2016 03:41:43 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160610196-61 +130270013,E06,13009158,Medical Incident,01/27/2013,01/26/2013,01/27/2013 12:32:54 AM,01/27/2013 12:34:00 AM,01/27/2013 12:34:53 AM,01/27/2013 12:35:31 AM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 12:38:32 AM,CALEDONIA ST/15TH ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7665705430089, -122.421531295291)",130270013-E06 +120210085,T13,12007029,Alarms,01/21/2012,01/20/2012,01/21/2012 04:40:48 AM,01/21/2012 04:41:29 AM,01/21/2012 04:42:25 AM,01/21/2012 04:44:22 AM,01/21/2012 04:47:33 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 05:14:13 AM,0 Block of FREMONT ST,SF,94105,B03,35,2126,3,3,3,true,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7911273215916, -122.397428020134)",120210085-T13 +113500271,E05,11116181,Medical Incident,12/16/2011,12/16/2011,12/16/2011 05:04:42 PM,12/16/2011 05:05:39 PM,12/16/2011 05:06:12 PM,12/16/2011 05:07:07 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 05:07:41 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,A,A,2,true,,1,ENGINE,5,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113500271-E05 +112870038,B01,11095023,Structure Fire,10/14/2011,10/13/2011,10/14/2011 02:34:44 AM,10/14/2011 02:35:45 AM,10/14/2011 02:35:52 AM,10/14/2011 02:38:30 AM,10/14/2011 02:38:55 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 02:54:50 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,,1,CHIEF,4,1,3,Chinatown,"(37.796699717573, -122.408014703843)",112870038-B01 +110620175,E18,11020363,Medical Incident,03/03/2011,03/03/2011,03/03/2011 12:44:41 PM,03/03/2011 12:45:47 PM,03/03/2011 12:46:01 PM,03/03/2011 12:47:08 PM,03/03/2011 12:49:22 PM,04/25/2016 02:05:49 PM,04/25/2016 02:05:49 PM,Other,03/03/2011 12:56:39 PM,2200 Block of 28TH AVE,SF,94116,B08,18,7521,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7454203725674, -122.485600832491)",110620175-E18 +132680424,E01,13091190,Medical Incident,09/25/2013,09/25/2013,09/25/2013 10:27:04 PM,09/25/2013 10:28:40 PM,09/25/2013 10:28:57 PM,09/25/2013 10:30:22 PM,09/25/2013 10:35:52 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 10:52:04 PM,200 Block of 10TH ST,SF,94103,B02,36,2342,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",132680424-E01 +160263225,52,16010431,Medical Incident,01/26/2016,01/26/2016,01/26/2016 07:09:10 PM,01/26/2016 07:10:16 PM,01/26/2016 07:11:36 PM,01/26/2016 07:11:44 PM,01/26/2016 07:17:33 PM,01/26/2016 07:37:35 PM,01/26/2016 07:46:24 PM,Code 3 Transport,01/26/2016 08:34:18 PM,400 Block of 33RD AVE,San Francisco,94121,B07,14,7245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7806543965679, -122.493444371673)",160263225-52 +160422959,53,16016968,Medical Incident,02/11/2016,02/11/2016,02/11/2016 05:54:12 PM,02/11/2016 05:55:49 PM,02/11/2016 05:56:06 PM,02/11/2016 05:56:11 PM,02/11/2016 06:08:54 PM,02/11/2016 06:23:05 PM,02/11/2016 06:34:42 PM,Code 2 Transport,02/11/2016 07:13:05 PM,0 Block of ASHBURY ST,San Francisco,94117,B05,21,4515,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7751245494261, -122.448041172346)",160422959-53 +123330303,RC1,12110765,Medical Incident,11/28/2012,11/28/2012,11/28/2012 08:06:50 PM,11/28/2012 08:08:20 PM,11/28/2012 08:08:26 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/28/2012 08:11:53 PM,INDUSTRIAL ST/BOUTWELL ST,SF,94124,B10,42,6381,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7383213630335, -122.405646738182)",123330303-RC1 +132840284,E07,13096708,Medical Incident,10/11/2013,10/11/2013,10/11/2013 06:45:59 PM,10/11/2013 06:55:37 PM,10/11/2013 06:55:53 PM,10/11/2013 06:57:16 PM,10/11/2013 06:58:09 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:18 PM,Other,10/11/2013 07:00:49 PM,19TH ST/CAPP ST,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7603010632565, -122.41811811905)",132840284-E07 +131680095,84,13056968,Medical Incident,06/17/2013,06/17/2013,06/17/2013 09:30:31 AM,06/17/2013 09:32:30 AM,06/17/2013 09:32:44 AM,06/17/2013 09:33:06 AM,06/17/2013 09:38:33 AM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Patient Declined Transport,06/17/2013 10:39:17 AM,BAYSHORE BL/CORTLAND AV,SF,94124,B10,42,6374,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",131680095-84 +113500279,E02,11116187,Medical Incident,12/16/2011,12/16/2011,12/16/2011 05:18:05 PM,12/16/2011 05:18:45 PM,12/16/2011 05:19:03 PM,12/16/2011 05:20:19 PM,12/16/2011 05:21:48 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 05:43:15 PM,1500 Block of POWELL ST,SF,94133,B01,2,1352,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7988290749187, -122.410618562757)",113500279-E02 +120720253,E01,12023969,Medical Incident,03/12/2012,03/12/2012,03/12/2012 04:04:19 PM,03/12/2012 04:06:03 PM,03/12/2012 04:06:29 PM,03/12/2012 04:08:32 PM,03/12/2012 04:10:08 PM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,Other,03/12/2012 04:20:37 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",120720253-E01 +113530102,E15,11117125,Medical Incident,12/19/2011,12/19/2011,12/19/2011 09:19:40 AM,12/19/2011 09:21:13 AM,12/19/2011 09:21:22 AM,04/25/2016 02:01:04 PM,12/19/2011 09:22:16 AM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 09:32:25 AM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",113530102-E15 +111950354,D3,11064522,Traffic Collision,07/14/2011,07/14/2011,07/14/2011 08:47:35 PM,07/14/2011 08:48:43 PM,07/14/2011 08:49:04 PM,07/14/2011 08:54:24 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 09:01:23 PM,1200 Block of CLAYTON ST,SF,94114,B05,12,5256,3,2,2,false,,1,CHIEF,12,5,8,Castro/Upper Market,"(37.761434303327, -122.446476747426)",111950354-D3 +111480144,RS1,11049051,Medical Incident,05/28/2011,05/28/2011,05/28/2011 12:26:10 PM,05/28/2011 12:26:36 PM,05/28/2011 12:27:21 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,04/25/2016 02:04:25 PM,900 Block of MISSION ST,SF,94103,B03,1,2246,3,3,3,false,,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7825001151131, -122.406870707064)",111480144-RS1 +121950018,E06,12064773,Medical Incident,07/13/2012,07/12/2012,07/13/2012 02:18:25 AM,07/13/2012 02:20:57 AM,07/13/2012 02:21:46 AM,07/13/2012 02:24:13 AM,07/13/2012 02:34:38 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/13/2012 02:34:41 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",121950018-E06 +160263167,85,16010427,Medical Incident,01/26/2016,01/26/2016,01/26/2016 06:51:00 PM,01/26/2016 06:52:33 PM,01/26/2016 06:52:54 PM,01/26/2016 06:53:07 PM,01/26/2016 07:17:02 PM,01/26/2016 07:42:17 PM,01/26/2016 08:07:53 PM,Code 2 Transport,01/26/2016 09:02:17 PM,300 Block of SANSOME ST,San Francisco,94104,B01,13,1166,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7937743739296, -122.401201213588)",160263167-85 +121020318,E44,12033935,Medical Incident,04/11/2012,04/11/2012,04/11/2012 08:54:22 PM,04/11/2012 08:54:59 PM,04/11/2012 08:55:19 PM,04/11/2012 08:56:12 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 09:03:31 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,A,A,2,true,Potentially Life-Threatening,1,ENGINE,4,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",121020318-E44 +160550686,65,16021911,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:58:16 AM,02/24/2016 08:01:52 AM,02/24/2016 08:02:42 AM,02/24/2016 08:02:57 AM,02/24/2016 08:24:24 AM,02/24/2016 08:38:10 AM,02/24/2016 08:57:58 AM,Code 2 Transport,02/24/2016 09:40:53 AM,1000 Block of 22ND ST,San Francisco,94107,B10,37,2535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7576843079875, -122.391648743155)",160550686-65 +130400285,T14,13013754,Water Rescue,02/09/2013,02/09/2013,02/09/2013 05:42:58 PM,02/09/2013 05:45:17 PM,02/09/2013 05:46:05 PM,02/09/2013 05:48:15 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/09/2013 05:59:33 PM,GREAT HY/JOHN F KENNEDY DR,SF,94122,B08,23,7722,3,3,3,false,,1,TRUCK,12,7,1,Golden Gate Park,"(37.7704356758824, -122.510925945877)",130400285-T14 +110440009,B07,11014489,Alarms,02/13/2011,02/12/2011,02/13/2011 12:14:33 AM,02/13/2011 12:16:23 AM,02/13/2011 12:16:34 AM,04/25/2016 02:06:06 PM,02/13/2011 12:20:00 AM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 12:31:50 AM,4100 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,false,,1,CHIEF,2,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",110440009-B07 +130930116,AM04,13031082,Medical Incident,04/03/2013,04/03/2013,04/03/2013 10:21:55 AM,04/03/2013 10:22:47 AM,04/03/2013 10:23:13 AM,04/03/2013 10:24:18 AM,04/03/2013 10:29:00 AM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Gone on Arrival,04/03/2013 10:39:31 AM,0 Block of CERVANTES BLVD,SF,94123,B04,16,3564,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8035432868953, -122.438381234335)",130930116-AM04 +130460395,83,13015783,Medical Incident,02/15/2013,02/15/2013,02/15/2013 07:46:15 PM,02/15/2013 07:47:23 PM,02/15/2013 08:00:52 PM,02/15/2013 08:01:05 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 08:06:41 PM,1300 Block of CLAY ST,SF,94109,B01,41,1536,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Nob Hill,"(37.793064148094, -122.415280565242)",130460395-83 +130240285,E10,13008368,Medical Incident,01/24/2013,01/24/2013,01/24/2013 04:17:25 PM,01/24/2013 04:18:59 PM,01/24/2013 04:19:44 PM,01/24/2013 04:20:59 PM,01/24/2013 04:22:41 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 04:31:23 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",130240285-E10 +160792778,88,16031479,Traffic Collision,03/19/2016,03/19/2016,03/19/2016 04:53:36 PM,03/19/2016 04:56:12 PM,03/19/2016 04:56:32 PM,03/19/2016 04:56:43 PM,03/19/2016 05:07:26 PM,03/19/2016 05:20:43 PM,03/19/2016 05:47:08 PM,Code 2 Transport,03/19/2016 06:08:39 PM,1200 Block of PORTOLA DR,San Francisco,94127,B08,39,8565,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7402445394559, -122.462410279305)",160792778-88 +160433274,71,16017446,Medical Incident,02/12/2016,02/12/2016,02/12/2016 07:49:58 PM,02/12/2016 07:49:58 PM,02/12/2016 07:50:06 PM,02/12/2016 07:50:11 PM,02/12/2016 08:00:50 PM,02/12/2016 08:10:09 PM,02/12/2016 08:15:43 PM,Code 2 Transport,02/12/2016 08:54:38 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696796386185, -122.449942040795)",160433274-71 +120360026,E10,12011864,Structure Fire,02/05/2012,02/04/2012,02/05/2012 01:20:20 AM,02/05/2012 01:21:25 AM,02/05/2012 01:22:38 AM,02/05/2012 01:24:34 AM,02/05/2012 01:26:27 AM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Other,02/05/2012 01:35:05 AM,2900 Block of SACRAMENTO ST,SF,94115,B04,10,4161,3,3,3,true,Fire,1,ENGINE,1,4,2,Pacific Heights,"(37.7888337817595, -122.441449440886)",120360026-E10 +160423414,71,16017018,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:16:55 PM,02/11/2016 08:17:34 PM,02/11/2016 08:17:50 PM,02/11/2016 08:18:32 PM,02/11/2016 08:23:39 PM,02/11/2016 08:36:07 PM,02/11/2016 08:51:28 PM,Code 2 Transport,02/11/2016 09:41:11 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160423414-71 +160021250,61,16000705,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:23:46 AM,01/02/2016 11:25:02 AM,01/02/2016 11:25:57 AM,01/02/2016 11:26:05 AM,01/02/2016 11:36:59 AM,01/02/2016 11:47:07 AM,01/02/2016 12:09:23 PM,Code 2 Transport,01/02/2016 01:06:40 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160021250-61 +112330091,KM04,11076868,Medical Incident,08/21/2011,08/21/2011,08/21/2011 08:28:06 AM,08/21/2011 08:30:09 AM,08/21/2011 08:30:27 AM,08/21/2011 08:31:30 AM,08/21/2011 08:35:45 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 08:46:25 AM,0 Block of CORNWALL ST,SF,94118,B07,10,7114,3,3,3,false,,1,PRIVATE,2,7,1,Inner Richmond,"(37.7850874105266, -122.459705682543)",112330091-KM04 +110770370,T08,11025501,Medical Incident,03/18/2011,03/18/2011,03/18/2011 10:11:51 PM,03/18/2011 10:12:15 PM,03/18/2011 10:13:24 PM,03/18/2011 10:14:59 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 10:17:35 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.775420706711, -122.403404791479)",110770370-T08 +131130115,E31,13038036,Alarms,04/23/2013,04/23/2013,04/23/2013 10:04:04 AM,04/23/2013 10:05:34 AM,04/23/2013 10:05:52 AM,04/23/2013 10:07:09 AM,04/23/2013 10:11:05 AM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 10:13:28 AM,0 Block of JORDAN AVE,SF,94118,B07,10,4441,3,3,3,true,Alarm,1,ENGINE,2,7,2,Presidio Heights,"(37.7849495594926, -122.456819205112)",131130115-E31 +160603805,AM16,16024129,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:16:43 PM,02/29/2016 11:18:23 PM,02/29/2016 11:19:25 PM,02/29/2016 11:19:55 PM,02/29/2016 11:23:14 PM,02/29/2016 11:38:42 PM,02/29/2016 11:51:59 PM,Code 2 Transport,03/01/2016 12:17:19 AM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160603805-AM16 +160532585,66,16021314,Medical Incident,02/22/2016,02/22/2016,02/22/2016 05:18:43 PM,02/22/2016 05:19:22 PM,02/22/2016 05:19:33 PM,02/22/2016 05:20:57 PM,02/22/2016 05:29:55 PM,02/22/2016 05:45:06 PM,02/22/2016 06:21:44 PM,Code 2 Transport,02/22/2016 07:48:47 PM,1200 Block of SHAFTER AVE,San Francisco,94124,B10,17,6634,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",160532585-66 +103050346,73,10097624,Medical Incident,11/01/2010,11/01/2010,11/01/2010 07:44:58 PM,11/01/2010 07:48:34 PM,11/01/2010 07:48:59 PM,11/01/2010 07:49:34 PM,11/01/2010 07:57:08 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Patient Declined Transport,11/01/2010 08:24:58 PM,200 Block of DOLORES ST,SF,94114,B02,6,5227,2,2,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",103050346-73 +113490165,E36,11115787,Medical Incident,12/15/2011,12/15/2011,12/15/2011 01:18:03 PM,12/15/2011 01:19:39 PM,12/15/2011 01:20:20 PM,12/15/2011 01:22:09 PM,12/15/2011 01:24:27 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/15/2011 01:31:14 PM,300 Block of VAN NESS AVE,SF,94102,B02,36,3165,2,2,2,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",113490165-E36 +160403367,86,16016194,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:05:18 PM,02/09/2016 08:07:08 PM,02/09/2016 08:07:55 PM,02/09/2016 08:08:05 PM,02/09/2016 08:14:34 PM,02/09/2016 08:31:42 PM,02/09/2016 09:03:17 PM,Code 2 Transport,02/09/2016 09:28:32 PM,0 Block of NEWTON ST,San Francisco,94112,B09,43,6232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7139749867897, -122.438812291753)",160403367-86 +132660043,85,13090131,Medical Incident,09/23/2013,09/22/2013,09/23/2013 04:04:49 AM,09/23/2013 04:06:15 AM,09/23/2013 04:06:28 AM,09/23/2013 04:06:54 AM,09/23/2013 04:15:42 AM,09/23/2013 04:22:19 AM,09/23/2013 04:33:25 AM,Code 2 Transport,09/23/2013 05:06:06 AM,1600 Block of CHURCH ST,SF,94131,B06,11,5563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7440943615702, -122.426777257654)",132660043-85 +140450134,AM02,14015272,Medical Incident,02/14/2014,02/14/2014,02/14/2014 11:09:20 AM,02/14/2014 11:10:25 AM,02/14/2014 11:10:29 AM,02/14/2014 11:11:20 AM,02/14/2014 11:17:28 AM,02/14/2014 11:48:07 AM,02/14/2014 12:25:23 PM,Code 2 Transport,02/14/2014 01:10:37 PM,300 Block of ORIZABA AVE,SF,94132,B09,33,8415,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7152511901206, -122.462680660662)",140450134-AM02 +132630240,KM14,13089153,Medical Incident,09/20/2013,09/20/2013,09/20/2013 02:07:01 PM,09/20/2013 02:07:31 PM,09/20/2013 02:07:55 PM,09/20/2013 02:08:25 PM,09/20/2013 02:13:18 PM,09/20/2013 02:50:03 PM,09/20/2013 02:50:26 PM,Code 2 Transport,09/20/2013 03:57:11 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",132630240-KM14 +112740351,T03,11090758,Alarms,10/01/2011,10/01/2011,10/01/2011 07:30:29 PM,10/01/2011 07:31:11 PM,10/01/2011 07:31:50 PM,10/01/2011 07:32:58 PM,10/01/2011 07:34:13 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Other,10/01/2011 07:45:13 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",112740351-T03 +130070304,E03,13002476,Alarms,01/07/2013,01/07/2013,01/07/2013 05:43:47 PM,01/07/2013 05:44:25 PM,01/07/2013 05:44:43 PM,01/07/2013 05:45:24 PM,01/07/2013 05:47:27 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 06:00:27 PM,1000 Block of ELLIS ST,SF,94109,B02,3,3221,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7834553146514, -122.423462201327)",130070304-E03 +122330290,E02,12077373,Medical Incident,08/20/2012,08/20/2012,08/20/2012 05:42:25 PM,08/20/2012 05:42:54 PM,08/20/2012 05:43:23 PM,08/20/2012 05:45:13 PM,08/20/2012 05:46:11 PM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Other,08/20/2012 06:04:56 PM,1200 Block of STOCKTON ST,SF,94133,B01,2,1332,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7970243062924, -122.408425970511)",122330290-E02 +111910026,E01,11062990,Alarms,07/10/2011,07/09/2011,07/10/2011 01:42:02 AM,07/10/2011 01:43:09 AM,07/10/2011 01:43:13 AM,07/10/2011 01:44:14 AM,07/10/2011 01:46:03 AM,04/25/2016 02:03:44 PM,04/25/2016 02:03:44 PM,Other,07/10/2011 02:51:25 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",111910026-E01 +160640826,AM06,16025407,Medical Incident,03/04/2016,03/04/2016,03/04/2016 08:17:23 AM,03/04/2016 08:20:11 AM,03/04/2016 08:20:59 AM,03/04/2016 08:21:43 AM,03/04/2016 08:31:26 AM,03/04/2016 08:39:41 AM,03/04/2016 08:54:59 AM,Code 2 Transport,03/04/2016 09:15:18 AM,1300 Block of LARKIN ST,San Francisco,94109,B04,41,1635,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7903176879432, -122.418871091352)",160640826-AM06 +160480665,62,16019248,Medical Incident,02/17/2016,02/16/2016,02/17/2016 07:48:21 AM,02/17/2016 07:48:57 AM,02/17/2016 07:49:50 AM,02/17/2016 07:50:21 AM,02/17/2016 07:53:46 AM,02/17/2016 08:03:02 AM,02/17/2016 08:28:39 AM,Code 2 Transport,02/17/2016 09:06:02 AM,OAK ST/BAKER ST,San Francisco,94117,B05,21,4245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7727128721219, -122.440735147381)",160480665-62 +160442136,82,16017733,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:21:47 PM,02/13/2016 03:23:47 PM,02/13/2016 03:24:16 PM,02/13/2016 03:24:27 PM,02/13/2016 03:27:16 PM,02/13/2016 03:46:21 PM,02/13/2016 04:11:08 PM,Code 2 Transport,02/13/2016 04:36:18 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160442136-82 +140020156,93,14000647,Medical Incident,01/02/2014,01/02/2014,01/02/2014 10:00:13 AM,01/02/2014 10:01:01 AM,01/02/2014 10:02:43 AM,01/02/2014 10:04:06 AM,01/02/2014 10:20:51 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Patient Declined Transport,01/02/2014 11:17:06 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",140020156-93 +122920428,T08,12096960,Structure Fire,10/18/2012,10/18/2012,10/18/2012 10:32:03 PM,10/18/2012 10:33:03 PM,10/18/2012 10:33:32 PM,10/18/2012 10:34:53 PM,10/18/2012 10:38:01 PM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/18/2012 10:47:57 PM,1100 Block of FOLSOM ST,SF,94103,B02,29,2322,3,3,3,false,Alarm,1,TRUCK,9,2,6,South of Market,"(37.7752603293476, -122.409820946894)",122920428-T08 +160060068,71,16002218,Medical Incident,01/06/2016,01/05/2016,01/06/2016 12:33:17 AM,01/06/2016 12:35:20 AM,01/06/2016 12:35:31 AM,01/06/2016 12:35:47 AM,01/06/2016 12:42:42 AM,01/06/2016 01:13:03 AM,01/06/2016 01:27:18 AM,Code 2 Transport,01/06/2016 02:17:27 AM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",160060068-71 +113470039,E22,11114999,Structure Fire,12/13/2011,12/12/2011,12/13/2011 04:16:55 AM,12/13/2011 04:16:56 AM,12/13/2011 04:17:09 AM,12/13/2011 04:18:44 AM,12/13/2011 04:20:46 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Fire,12/13/2011 04:21:02 AM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",113470039-E22 +103300184,E10,10105653,Alarms,11/26/2010,11/26/2010,11/26/2010 01:03:15 PM,11/26/2010 01:04:05 PM,11/26/2010 01:04:22 PM,11/26/2010 01:05:31 PM,11/26/2010 01:07:41 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 01:35:23 PM,2200 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,,1,ENGINE,1,5,5,Japantown,"(37.7843705673053, -122.438841200784)",103300184-E10 +112760322,81,11091470,Medical Incident,10/03/2011,10/03/2011,10/03/2011 06:22:33 PM,10/03/2011 06:23:39 PM,10/03/2011 06:23:54 PM,10/03/2011 06:24:04 PM,10/03/2011 06:25:10 PM,10/03/2011 06:45:38 PM,10/03/2011 06:54:04 PM,Code 2 Transport,10/03/2011 07:24:05 PM,500 Block of 10TH AVE,SF,94118,B07,31,7142,3,3,3,true,,1,MEDIC,1,7,1,Inner Richmond,"(37.7779650559216, -122.468428523772)",112760322-81 +132100293,KM04,13071116,Medical Incident,07/29/2013,07/29/2013,07/29/2013 04:54:43 PM,07/29/2013 04:55:47 PM,07/29/2013 04:55:59 PM,07/29/2013 04:56:48 PM,07/29/2013 05:28:55 PM,07/29/2013 05:41:41 PM,07/29/2013 06:07:16 PM,Code 2 Transport,07/29/2013 06:38:46 PM,0 Block of PERRY ST,SF,94107,B03,8,2175,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",132100293-KM04 +121220356,E05,12040639,Alarms,05/01/2012,05/01/2012,05/01/2012 09:12:17 PM,05/01/2012 09:13:25 PM,05/01/2012 09:13:31 PM,05/01/2012 09:15:12 PM,05/01/2012 09:17:37 PM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,Other,04/25/2016 01:58:54 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,Alarm,1,ENGINE,2,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",121220356-E05 +160480446,79,16019233,Medical Incident,02/17/2016,02/16/2016,02/17/2016 06:00:28 AM,02/17/2016 06:01:07 AM,02/17/2016 06:01:34 AM,02/17/2016 06:01:45 AM,02/17/2016 06:05:08 AM,02/17/2016 06:29:32 AM,02/17/2016 06:36:33 AM,Code 2 Transport,02/17/2016 07:07:28 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160480446-79 +132680431,E11,13091197,Medical Incident,09/25/2013,09/25/2013,09/25/2013 11:11:56 PM,09/25/2013 11:12:28 PM,09/25/2013 11:12:57 PM,09/25/2013 11:14:43 PM,09/25/2013 11:16:34 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 11:24:14 PM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7497020110556, -122.420499334167)",132680431-E11 +111430375,81,11047680,Medical Incident,05/23/2011,05/23/2011,05/23/2011 09:29:56 PM,05/23/2011 09:31:34 PM,05/23/2011 09:31:46 PM,05/23/2011 09:32:17 PM,05/23/2011 09:33:16 PM,05/23/2011 09:51:17 PM,05/23/2011 09:58:53 PM,Code 2 Transport,05/23/2011 10:24:26 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",111430375-81 +110380341,94,11012703,Medical Incident,02/07/2011,02/07/2011,02/07/2011 05:34:32 PM,02/07/2011 05:36:51 PM,02/07/2011 05:37:22 PM,02/07/2011 05:38:16 PM,02/07/2011 05:39:41 PM,02/07/2011 05:49:15 PM,02/07/2011 06:02:44 PM,Code 2 Transport,02/07/2011 06:25:46 PM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7622785491179, -122.419332516291)",110380341-94 +131450225,92,13049238,Medical Incident,05/25/2013,05/25/2013,05/25/2013 05:06:29 PM,05/25/2013 05:06:57 PM,05/25/2013 05:07:19 PM,05/25/2013 05:07:47 PM,05/25/2013 05:14:32 PM,05/25/2013 05:34:40 PM,05/25/2013 05:51:25 PM,Code 2 Transport,05/25/2013 06:23:16 PM,MISSION ST/YERBA BUENA LN,SF,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851218519914, -122.403501281439)",131450225-92 +121710125,KM10,12056706,Medical Incident,06/19/2012,06/19/2012,06/19/2012 10:08:57 AM,06/19/2012 10:10:27 AM,06/19/2012 10:10:44 AM,06/19/2012 10:11:31 AM,06/19/2012 10:21:40 AM,06/19/2012 10:38:35 AM,06/19/2012 10:53:22 AM,Code 2 Transport,06/19/2012 11:30:42 AM,0 Block of LUSK ST,SF,94107,B03,8,2224,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7783669136338, -122.394441653217)",121710125-KM10 +160391053,59,16015542,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:38:28 AM,02/08/2016 09:39:41 AM,02/08/2016 09:40:00 AM,02/08/2016 09:40:08 AM,02/08/2016 10:00:30 AM,02/08/2016 10:09:08 AM,02/08/2016 10:34:23 AM,Code 2 Transport,02/08/2016 11:09:28 AM,2300 Block of QUINTARA ST,San Francisco,94116,B08,18,7532,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7480617414206, -122.490549198808)",160391053-59 +122770020,AM10,12091391,Medical Incident,10/03/2012,10/02/2012,10/03/2012 02:00:31 AM,10/03/2012 02:03:20 AM,10/03/2012 02:03:31 AM,10/03/2012 02:04:11 AM,10/03/2012 02:09:45 AM,10/03/2012 02:13:30 AM,10/03/2012 02:24:57 AM,Code 2 Transport,10/03/2012 02:40:19 AM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,1,1,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",122770020-AM10 +160711741,74,16028235,Medical Incident,03/11/2016,03/11/2016,03/11/2016 01:08:24 PM,03/11/2016 01:08:36 PM,03/11/2016 01:08:57 PM,03/11/2016 01:09:27 PM,03/11/2016 01:16:52 PM,03/11/2016 01:34:24 PM,03/11/2016 01:42:39 PM,Code 2 Transport,03/11/2016 02:34:47 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160711741-74 +111030126,AM08,11034086,Medical Incident,04/13/2011,04/13/2011,04/13/2011 10:28:50 AM,04/13/2011 10:30:31 AM,04/13/2011 10:31:13 AM,04/13/2011 10:32:19 AM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/13/2011 10:36:08 AM,MONTGOMERY ST/JACKSON ST,SF,94111,B01,13,1232,3,3,3,false,,1,PRIVATE,3,1,3,Chinatown,"(37.7964174850191, -122.403496710989)",111030126-AM08 +102910047,E08,10092708,Medical Incident,10/18/2010,10/17/2010,10/18/2010 05:08:34 AM,10/18/2010 05:10:52 AM,10/18/2010 05:11:08 AM,10/18/2010 05:13:32 AM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/18/2010 05:21:57 AM,4TH ST/CHINA BASIN ST,SF,94158,B03,8,2231,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7718971758313, -122.391284249119)",102910047-E08 +160822741,KM04,16032658,Medical Incident,03/22/2016,03/22/2016,03/22/2016 04:45:07 PM,03/22/2016 04:48:12 PM,03/22/2016 04:49:01 PM,03/22/2016 04:49:27 PM,03/22/2016 05:05:51 PM,03/22/2016 05:47:16 PM,03/22/2016 06:05:26 PM,Code 2 Transport,03/22/2016 06:56:56 PM,2300 Block of 28TH AVE,San Francisco,94116,B08,40,7471,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7435624337993, -122.485331778015)",160822741-KM04 +160772258,AM14,16030630,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:24:04 PM,03/17/2016 02:24:56 PM,03/17/2016 02:25:41 PM,03/17/2016 02:26:42 PM,03/17/2016 02:57:55 PM,03/17/2016 02:57:57 PM,03/17/2016 03:27:48 PM,Code 2 Transport,03/17/2016 03:49:34 PM,200 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7914249452441, -122.402544180964)",160772258-AM14 +123210258,B09,12106746,Structure Fire,11/16/2012,11/16/2012,11/16/2012 04:24:09 PM,11/16/2012 04:25:03 PM,11/16/2012 04:25:34 PM,04/25/2016 01:55:46 PM,11/16/2012 04:34:41 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/16/2012 04:38:15 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,false,Alarm,1,CHIEF,8,8,7,Lakeshore,"(37.7122982509145, -122.473064099314)",123210258-B09 +160372324,AM06,16014744,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:51:29 PM,02/06/2016 02:52:16 PM,02/06/2016 02:52:27 PM,02/06/2016 02:52:56 PM,02/06/2016 02:59:26 PM,02/06/2016 03:23:33 PM,02/06/2016 03:37:47 PM,Code 2 Transport,02/06/2016 04:10:22 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160372324-AM06 +110170107,60,11005596,Medical Incident,01/17/2011,01/17/2011,01/17/2011 11:01:53 AM,01/17/2011 11:04:00 AM,01/17/2011 11:04:21 AM,01/17/2011 11:05:05 AM,01/17/2011 11:05:56 AM,01/17/2011 11:27:01 AM,01/17/2011 11:32:35 AM,Code 2 Transport,01/17/2011 11:54:06 AM,1500 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,1,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",110170107-60 +131120022,B02,13037560,Structure Fire,04/22/2013,04/21/2013,04/22/2013 02:15:47 AM,04/22/2013 02:16:09 AM,04/22/2013 02:16:31 AM,04/22/2013 02:18:26 AM,04/22/2013 02:23:00 AM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,No Merit,04/22/2013 02:28:38 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,CHIEF,9,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131120022-B02 +102380172,E06,10075056,Structure Fire,08/26/2010,08/26/2010,08/26/2010 11:26:07 AM,08/26/2010 11:27:31 AM,08/26/2010 11:27:53 AM,08/26/2010 11:28:04 AM,08/26/2010 11:31:40 AM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 11:41:00 AM,3700 Block of 18TH ST,SF,94114,B06,6,541,3,3,3,true,,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",102380172-E06 +112560232,E07,11084467,Citizen Assist / Service Call,09/13/2011,09/13/2011,09/13/2011 02:33:03 PM,09/13/2011 02:34:20 PM,09/13/2011 02:34:46 PM,09/13/2011 02:36:22 PM,09/13/2011 02:37:59 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Fire,09/13/2011 02:45:17 PM,MISSION ST/19TH ST,SF,94110,B06,7,5433,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",112560232-E07 +132730033,55,13092655,Medical Incident,09/30/2013,09/29/2013,09/30/2013 01:59:18 AM,09/30/2013 02:02:04 AM,09/30/2013 02:02:16 AM,09/30/2013 02:02:43 AM,09/30/2013 02:07:43 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/30/2013 02:11:55 AM,200 Block of CERVANTES BLVD,SF,94123,B04,16,3564,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8052760911775, -122.441593354951)",132730033-55 +133360052,AP,13113782,Other,12/02/2013,12/01/2013,12/02/2013 07:34:28 AM,12/02/2013 07:34:29 AM,12/02/2013 07:34:29 AM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Fire,12/02/2013 07:34:34 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",133360052-AP +121190057,KM04,12039377,Medical Incident,04/28/2012,04/27/2012,04/28/2012 03:38:32 AM,04/28/2012 03:39:12 AM,04/28/2012 03:40:32 AM,04/28/2012 03:40:56 AM,04/28/2012 03:53:04 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Patient Declined Transport,04/28/2012 04:38:36 AM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",121190057-KM04 +122670122,AM04,12088162,Medical Incident,09/23/2012,09/23/2012,09/23/2012 10:09:57 AM,09/23/2012 10:12:23 AM,09/23/2012 10:12:45 AM,09/23/2012 10:13:27 AM,09/23/2012 10:25:50 AM,09/23/2012 10:58:41 AM,09/23/2012 11:13:52 AM,Code 2 Transport,09/23/2012 11:42:44 AM,1700 Block of 32ND AVE,SF,94122,B08,18,7534,1,1,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7545630438483, -122.490398408661)",122670122-AM04 +160483618,AM20,16019507,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 08:25:41 PM,02/17/2016 08:25:41 PM,02/17/2016 08:26:29 PM,02/17/2016 08:27:39 PM,02/17/2016 08:51:22 PM,02/17/2016 09:11:47 PM,02/17/2016 09:25:17 PM,Code 2 Transport,02/17/2016 10:09:27 PM,ARCH ST/BROTHERHOOD WY,San Francisco,94132,B09,33,8412,2,3,3,false,Non Life-threatening,1,PRIVATE,3,9,7,Oceanview/Merced/Ingleside,"(37.7124218732149, -122.467072688577)",160483618-AM20 +160581041,AM08,16023060,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:17:10 AM,02/27/2016 09:18:28 AM,02/27/2016 09:19:25 AM,02/27/2016 09:20:24 AM,02/27/2016 09:31:39 AM,02/27/2016 09:46:24 AM,02/27/2016 10:09:08 AM,Code 2 Transport,02/27/2016 10:38:24 AM,1200 Block of MARINER DR,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8291421803507, -122.374351232053)",160581041-AM08 +102830256,E28,10090117,Medical Incident,10/10/2010,10/10/2010,10/10/2010 04:06:06 PM,10/10/2010 04:06:35 PM,10/10/2010 04:07:38 PM,10/10/2010 04:07:58 PM,10/10/2010 04:11:05 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 04:36:55 PM,KEARNY ST/LOMBARD ST,SF,94133,B01,28,1264,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8036320041271, -122.40658211424)",102830256-E28 +160082991,AM10,16003346,Medical Incident,01/08/2016,01/08/2016,01/08/2016 06:01:25 PM,01/08/2016 06:03:00 PM,01/08/2016 06:03:14 PM,01/08/2016 06:04:03 PM,01/08/2016 06:08:15 PM,01/08/2016 06:36:36 PM,01/08/2016 07:06:42 PM,Code 2 Transport,01/08/2016 07:34:41 PM,600 Block of 32ND AVE,San Francisco,94121,B07,14,724,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",160082991-AM10 +130910083,67,13030360,Medical Incident,04/01/2013,04/01/2013,04/01/2013 08:37:46 AM,04/01/2013 08:39:53 AM,04/01/2013 08:41:12 AM,04/01/2013 08:41:23 AM,04/01/2013 08:51:38 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 08:59:10 AM,0 Block of CAPP ST,SF,94103,B02,7,5225,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7662170202259, -122.418615040829)",130910083-67 +120690040,KM07,12022782,Medical Incident,03/09/2012,03/08/2012,03/09/2012 04:12:14 AM,03/09/2012 04:14:34 AM,03/09/2012 04:15:25 AM,03/09/2012 04:15:58 AM,03/09/2012 04:26:14 AM,03/09/2012 04:29:59 AM,03/09/2012 04:38:55 AM,Code 2 Transport,03/09/2012 05:10:24 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",120690040-KM07 +111050085,E41,11034697,Medical Incident,04/15/2011,04/15/2011,04/15/2011 09:42:47 AM,04/15/2011 09:43:39 AM,04/15/2011 09:43:49 AM,04/15/2011 09:45:02 AM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Patient Declined Transport,04/15/2011 09:47:30 AM,TAYLOR ST/PINE ST,SF,94108,B01,41,1413,3,E,3,false,,1,ENGINE,2,1,3,Nob Hill,"(37.7906727830021, -122.412266188172)",111050085-E41 +160420217,88,16016711,Medical Incident,02/11/2016,02/10/2016,02/11/2016 02:29:16 AM,02/11/2016 02:31:57 AM,02/11/2016 02:32:13 AM,02/11/2016 02:32:35 AM,02/11/2016 02:35:25 AM,02/11/2016 03:04:08 AM,02/11/2016 03:21:22 AM,Code 2 Transport,02/11/2016 03:46:00 AM,100 Block of 17TH AVE,San Francisco,94118,B07,31,7162,3,3,3,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7852029440362, -122.476436885446)",160420217-88 +160303067,88,16011902,Medical Incident,01/30/2016,01/30/2016,01/30/2016 06:36:30 PM,01/30/2016 06:37:50 PM,01/30/2016 06:38:58 PM,01/30/2016 06:39:04 PM,01/30/2016 06:43:10 PM,01/30/2016 07:06:43 PM,01/30/2016 07:34:48 PM,Code 2 Transport,01/30/2016 07:58:26 PM,FRONT ST/SACRAMENTO ST,San Francisco,94111,B01,13,1141,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",160303067-88 +160541219,84,16021530,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:31:59 AM,02/23/2016 10:34:10 AM,02/23/2016 10:34:43 AM,02/23/2016 10:35:10 AM,02/23/2016 10:50:53 AM,02/23/2016 11:07:51 AM,02/23/2016 11:20:03 AM,Code 2 Transport,02/23/2016 12:05:24 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160541219-84 +160710973,52,16028152,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:29:37 AM,03/11/2016 09:30:51 AM,03/11/2016 09:31:09 AM,03/11/2016 09:31:17 AM,03/11/2016 09:33:26 AM,03/11/2016 10:00:32 AM,03/11/2016 10:06:17 AM,Code 3 Transport,03/11/2016 10:52:20 AM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160710973-52 +112750255,63,11091068,Medical Incident,10/02/2011,10/02/2011,10/02/2011 04:34:38 PM,10/02/2011 04:35:00 PM,10/02/2011 04:38:52 PM,10/02/2011 04:41:12 PM,10/02/2011 04:47:30 PM,10/02/2011 04:51:38 PM,10/02/2011 05:02:03 PM,Code 2 Transport,10/02/2011 05:25:42 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7528524062967, -122.408188967839)",112750255-63 +122050102,B07,12068106,Alarms,07/23/2012,07/23/2012,07/23/2012 09:20:23 AM,07/23/2012 09:21:48 AM,07/23/2012 09:22:44 AM,07/23/2012 09:23:38 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Fire,07/23/2012 09:29:44 AM,2000 Block of LYON ST,SF,94115,B04,10,4335,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7896922052437, -122.445777560087)",122050102-B07 +112740351,B02,11090758,Alarms,10/01/2011,10/01/2011,10/01/2011 07:30:29 PM,10/01/2011 07:31:11 PM,10/01/2011 07:31:50 PM,10/01/2011 07:34:28 PM,10/01/2011 07:37:35 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Other,10/01/2011 07:45:13 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",112740351-B02 +160271349,77,16010633,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:05:16 AM,01/27/2016 11:07:01 AM,01/27/2016 11:08:50 AM,01/27/2016 11:08:58 AM,01/27/2016 11:13:02 AM,01/27/2016 11:19:15 AM,01/27/2016 11:35:23 AM,Code 2 Transport,01/27/2016 12:13:05 PM,13TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",160271349-77 +122640260,E36,12087247,Medical Incident,09/20/2012,09/20/2012,09/20/2012 03:49:47 PM,09/20/2012 03:52:16 PM,09/20/2012 03:53:51 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 03:57:07 PM,GROVE ST/VAN NESS AV,SF,94102,B02,36,3165,2,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",122640260-E36 +140190283,85,14006627,Traffic Collision,01/19/2014,01/19/2014,01/19/2014 07:08:04 PM,01/19/2014 07:09:02 PM,01/19/2014 07:09:24 PM,04/25/2016 01:48:38 PM,01/19/2014 07:09:34 PM,01/19/2014 07:17:56 PM,01/19/2014 07:33:13 PM,Code 3 Transport,01/19/2014 07:59:05 PM,HAYES ST/MASONIC AV,SF,94117,B05,21,4464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7739353716878, -122.446091726028)",140190283-85 +140750009,77,14025237,Traffic Collision,03/16/2014,03/15/2014,03/16/2014 12:10:44 AM,03/16/2014 12:12:46 AM,03/16/2014 12:16:33 AM,03/16/2014 12:16:33 AM,03/16/2014 12:19:35 AM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Against Medical Advice,03/16/2014 12:54:01 AM,37TH AV/FULTON ST,SAN FRANCISCO,94121,B07,34,7253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7719829461295, -122.497046820809)",140750009-77 +122700255,59,12089186,Other,09/26/2012,09/26/2012,09/26/2012 05:32:31 PM,09/26/2012 05:33:03 PM,09/26/2012 05:33:22 PM,09/26/2012 05:44:58 PM,09/26/2012 05:56:01 PM,09/26/2012 06:03:09 PM,09/26/2012 06:36:36 PM,Code 2 Transport,09/26/2012 07:19:26 PM,900 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Alarm,1,MEDIC,5,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",122700255-59 +131060158,83,13035609,Medical Incident,04/16/2013,04/16/2013,04/16/2013 11:50:36 AM,04/16/2013 11:51:54 AM,04/16/2013 11:52:46 AM,04/16/2013 11:52:56 AM,04/16/2013 12:02:30 PM,04/16/2013 12:32:33 PM,04/16/2013 12:45:52 PM,Code 2 Transport,04/16/2013 01:03:49 PM,1900 Block of LOMBARD ST,SF,94123,B04,16,3461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8002723548355, -122.433605968659)",131060158-83 +130430093,E35,13014560,Alarms,02/12/2013,02/12/2013,02/12/2013 09:25:18 AM,02/12/2013 09:26:23 AM,02/12/2013 09:26:47 AM,02/12/2013 09:27:58 AM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,02/12/2013 09:28:01 AM,600 Block of NELSON RISING LN,SF,94158,B03,8,2264,3,3,3,true,Alarm,1,ENGINE,4,3,6,Mission Bay,"(37.7695557600647, -122.391895275784)",130430093-E35 +140170287,E07,14005912,Medical Incident,01/17/2014,01/17/2014,01/17/2014 06:02:56 PM,01/17/2014 06:03:36 PM,01/17/2014 06:04:02 PM,01/17/2014 06:05:37 PM,01/17/2014 06:07:01 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 06:18:16 PM,600 Block of SHOTWELL ST,SF,94110,B06,7,5447,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7580354882045, -122.415633765082)",140170287-E07 +111290361,88,11042815,Medical Incident,05/09/2011,05/09/2011,05/09/2011 11:27:13 PM,05/09/2011 11:27:13 PM,05/09/2011 11:28:20 PM,05/09/2011 11:28:33 PM,05/09/2011 11:34:03 PM,05/09/2011 11:39:03 PM,05/09/2011 11:49:04 PM,Code 3 Transport,05/10/2011 12:24:43 AM,BAYSHORE BL/BLANKEN AV,SF,94134,B10,44,6271,E,E,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7122508633321, -122.401914747165)",111290361-88 +133440093,94,13116588,Medical Incident,12/10/2013,12/10/2013,12/10/2013 08:28:58 AM,12/10/2013 08:30:59 AM,12/10/2013 08:31:12 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 08:31:51 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",133440093-94 +160350109,AM20,16013638,Traffic Collision,02/04/2016,02/03/2016,02/04/2016 12:56:36 AM,02/04/2016 12:57:45 AM,02/04/2016 12:58:47 AM,02/04/2016 12:59:43 AM,02/04/2016 01:11:26 AM,02/04/2016 01:30:07 AM,02/04/2016 01:40:57 AM,Code 2 Transport,02/04/2016 02:10:18 AM,0 Block of FREMONT ST,San Francisco,94105,B03,48,2951,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",160350109-AM20 +140410417,B02,14014123,Alarms,02/10/2014,02/10/2014,02/10/2014 10:17:15 PM,02/10/2014 10:19:22 PM,02/10/2014 10:19:36 PM,02/10/2014 10:20:32 PM,02/10/2014 10:23:13 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 10:24:36 PM,500 Block of CASTRO ST,SF,94114,B06,6,5437,3,3,3,false,Alarm,1,CHIEF,2,6,8,Castro/Upper Market,"(37.7600930498172, -122.434858190165)",140410417-B02 +112710400,73,11089713,Medical Incident,09/28/2011,09/28/2011,09/28/2011 06:50:06 PM,09/28/2011 06:51:07 PM,09/28/2011 06:51:18 PM,04/25/2016 02:02:26 PM,09/28/2011 06:54:38 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 06:56:24 PM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,,1,MEDIC,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",112710400-73 +120280012,73,12009264,Structure Fire,01/28/2012,01/27/2012,01/28/2012 12:42:11 AM,01/28/2012 12:42:11 AM,01/28/2012 12:42:52 AM,01/28/2012 12:43:26 AM,01/28/2012 12:55:59 AM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Other,01/28/2012 01:12:03 AM,1100 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Fire,1,MEDIC,8,2,6,South of Market,"(37.7795310846627, -122.413542548681)",120280012-73 +111950318,T07,11064490,Structure Fire,07/14/2011,07/14/2011,07/14/2011 07:17:16 PM,07/14/2011 07:17:16 PM,07/14/2011 07:17:37 PM,07/14/2011 07:18:35 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 07:22:07 PM,25TH ST/HARRISON ST,SF,94110,B06,7,5533,3,3,3,false,,1,TRUCK,3,6,9,Mission,"(37.7510338955654, -122.411746226036)",111950318-T07 +140070045,E03,14002380,Medical Incident,01/07/2014,01/06/2014,01/07/2014 04:25:18 AM,01/07/2014 04:25:54 AM,01/07/2014 04:27:43 AM,01/07/2014 04:29:20 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/07/2014 04:43:50 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",140070045-E03 +123590144,E34,12120148,Traffic Collision,12/24/2012,12/24/2012,12/24/2012 11:29:54 AM,12/24/2012 11:30:58 AM,12/24/2012 11:31:10 AM,12/24/2012 11:32:16 AM,12/24/2012 11:36:51 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 11:36:59 AM,1600 Block of JOHN F KENNEDY DR,SF,94122,B07,34,7262,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Golden Gate Park,"(37.7688672343234, -122.498370035465)",123590144-E34 +160050058,52,16001815,Medical Incident,01/05/2016,01/04/2016,01/05/2016 12:33:49 AM,01/05/2016 12:33:49 AM,01/05/2016 12:34:29 AM,01/05/2016 12:34:36 AM,01/05/2016 12:38:43 AM,01/05/2016 12:49:57 AM,01/05/2016 12:53:33 AM,Code 2 Transport,01/05/2016 01:13:08 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",160050058-52 +111220012,D2,11040182,Structure Fire,05/02/2011,05/01/2011,05/02/2011 12:38:31 AM,05/02/2011 12:39:49 AM,05/02/2011 12:40:17 AM,05/02/2011 12:42:06 AM,05/02/2011 12:44:21 AM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/02/2011 12:51:07 AM,2500 Block of WASHINGTON ST,SF,94115,B04,38,3545,3,3,3,false,,1,CHIEF,4,4,2,Pacific Heights,"(37.791541565931, -122.435214356646)",111220012-D2 +160163278,91,16006574,Medical Incident,01/16/2016,01/16/2016,01/16/2016 08:18:10 PM,01/16/2016 08:18:10 PM,01/16/2016 08:18:32 PM,01/16/2016 08:19:02 PM,01/16/2016 08:19:59 PM,01/16/2016 08:29:20 PM,01/16/2016 08:39:13 PM,Code 2 Transport,01/16/2016 09:01:26 PM,1200 Block of NORIEGA ST,San Francisco,94122,B08,40,7431,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7541626087987, -122.47698218542)",160163278-91 +130930201,58,13031146,Medical Incident,04/03/2013,04/03/2013,04/03/2013 01:59:21 PM,04/03/2013 02:03:06 PM,04/03/2013 02:03:16 PM,04/03/2013 02:03:34 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Other,04/03/2013 02:09:27 PM,STEUART ST/MISSION ST,SF,94105,B03,35,2131,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",130930201-58 +111500287,E01,11049797,Medical Incident,05/30/2011,05/30/2011,05/30/2011 07:53:29 PM,05/30/2011 07:54:43 PM,05/30/2011 07:55:23 PM,05/30/2011 07:56:26 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 07:56:37 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",111500287-E01 +160813528,AM16,16032348,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:32:13 PM,03/21/2016 08:32:13 PM,03/21/2016 08:43:18 PM,03/21/2016 08:43:55 PM,03/21/2016 09:09:43 PM,03/21/2016 09:20:55 PM,03/21/2016 09:46:04 PM,Other,03/21/2016 10:18:30 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7716194932179, -122.445557574682)",160813528-AM16 +160900573,52,16035603,Medical Incident,03/30/2016,03/29/2016,03/30/2016 07:07:50 AM,03/30/2016 07:09:52 AM,03/30/2016 07:10:08 AM,03/30/2016 07:10:08 AM,03/30/2016 07:21:05 AM,03/30/2016 07:28:43 AM,03/30/2016 07:40:16 AM,Code 2 Transport,03/30/2016 08:03:00 AM,1900 Block of POST ST,San Francisco,94115,B04,5,3622,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7850500973338, -122.434328328397)",160900573-52 +160350990,65,16013737,Medical Incident,02/04/2016,02/04/2016,02/04/2016 09:29:56 AM,02/04/2016 09:29:56 AM,02/04/2016 09:29:56 AM,02/04/2016 09:29:56 AM,02/04/2016 09:29:56 AM,02/04/2016 10:17:29 AM,02/04/2016 10:31:03 AM,Code 2 Transport,02/04/2016 11:16:36 AM,200 Block of FOLSOM ST,San Francisco,94105,B02,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034905, -122.392339379947)",160350990-65 +122420347,E37,12080190,Medical Incident,08/29/2012,08/29/2012,08/29/2012 09:34:15 PM,08/29/2012 09:37:31 PM,08/29/2012 09:37:43 PM,08/29/2012 09:38:56 PM,08/29/2012 09:41:27 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/29/2012 09:43:20 PM,1000 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",122420347-E37 +113130059,96,11103900,Traffic Collision,11/09/2011,11/08/2011,11/09/2011 06:28:33 AM,11/09/2011 06:30:44 AM,11/09/2011 06:31:35 AM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,Other,11/09/2011 06:40:32 AM,MARIPOSA ST/INDIANA ST,SF,94107,B03,29,2436,3,3,3,true,,1,MEDIC,7,3,6,Potrero Hill,"(37.7641414045887, -122.391781010422)",113130059-96 +133140327,E24,13106888,Medical Incident,11/10/2013,11/10/2013,11/10/2013 10:23:50 PM,11/10/2013 10:28:40 PM,11/10/2013 10:30:50 PM,11/10/2013 10:33:59 PM,11/10/2013 10:38:00 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 10:50:02 PM,4400 Block of 17TH ST,SF,94114,B05,24,5265,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7618588353801, -122.444747469167)",133140327-E24 +131030050,RC3,13034481,Medical Incident,04/13/2013,04/12/2013,04/13/2013 03:11:24 AM,04/13/2013 03:13:20 AM,04/13/2013 03:14:07 AM,04/13/2013 03:17:33 AM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/13/2013 03:20:10 AM,TEHAMA ST/8TH ST,SF,94103,B02,29,2322,A,A,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,6,South of Market,"(37.7757938041855, -122.411069443844)",131030050-RC3 +131540096,E22,13052086,Structure Fire,06/03/2013,06/03/2013,06/03/2013 08:40:27 AM,06/03/2013 08:41:19 AM,06/03/2013 08:41:46 AM,06/03/2013 08:43:10 AM,06/03/2013 08:47:12 AM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/03/2013 08:56:15 AM,1800 Block of PAGE ST,SF,94117,B05,12,4533,3,3,3,false,Alarm,1,ENGINE,6,5,5,Haight Ashbury,"(37.7703617831201, -122.451220569192)",131540096-E22 +131610237,E19,13054730,Administrative,06/10/2013,06/10/2013,06/10/2013 02:38:11 PM,06/10/2013 02:38:13 PM,06/10/2013 02:39:01 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,Other,06/10/2013 02:39:35 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",131610237-E19 +130240373,B08,13008446,Alarms,01/24/2013,01/24/2013,01/24/2013 08:51:23 PM,01/24/2013 08:52:48 PM,01/24/2013 08:52:57 PM,01/24/2013 08:55:26 PM,01/24/2013 09:01:48 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Fire,01/24/2013 10:16:16 PM,0 Block of LA AVANZADA,SF,94131,B08,20,5365,3,3,3,false,Alarm,1,CHIEF,3,8,7,Twin Peaks,"(37.7559493215982, -122.452288235801)",130240373-B08 +103110259,E08,10099807,Medical Incident,11/07/2010,11/07/2010,11/07/2010 04:46:06 PM,11/07/2010 04:46:35 PM,11/07/2010 04:46:52 PM,11/07/2010 04:47:56 PM,11/07/2010 04:52:13 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 04:55:51 PM,1000 Block of FOLSOM ST,SF,94103,B03,1,2313,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7777816676305, -122.406629219771)",103110259-E08 +160693414,53,16027629,Medical Incident,03/09/2016,03/09/2016,03/09/2016 08:12:34 PM,03/09/2016 08:16:20 PM,03/09/2016 08:17:07 PM,03/09/2016 08:17:14 PM,03/09/2016 08:28:46 PM,03/09/2016 08:47:33 PM,03/09/2016 09:31:48 PM,Code 2 Transport,03/09/2016 09:50:15 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",160693414-53 +122640318,E02,12087295,Medical Incident,09/20/2012,09/20/2012,09/20/2012 06:18:03 PM,09/20/2012 06:19:14 PM,09/20/2012 06:19:46 PM,09/20/2012 06:21:58 PM,09/20/2012 06:23:49 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 06:42:20 PM,500 Block of COLUMBUS AVE,SF,94133,B01,28,1334,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.7999440400543, -122.409564939064)",122640318-E02 +120460045,55,12015192,Medical Incident,02/15/2012,02/14/2012,02/15/2012 06:35:51 AM,02/15/2012 06:36:34 AM,02/15/2012 06:38:15 AM,02/15/2012 06:39:06 AM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,04/25/2016 02:00:08 PM,400 Block of 21ST AVE,SF,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7793232485951, -122.480311461587)",120460045-55 +122980170,RA48,12098753,Medical Incident,10/24/2012,10/24/2012,10/24/2012 12:30:43 PM,10/24/2012 12:32:24 PM,10/24/2012 12:34:21 PM,10/24/2012 12:35:50 PM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/24/2012 01:09:33 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,2,2,2,false,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",122980170-RA48 +122460059,E02,12081238,Structure Fire,09/02/2012,09/01/2012,09/02/2012 03:31:48 AM,09/02/2012 03:31:48 AM,09/02/2012 03:31:59 AM,09/02/2012 03:34:27 AM,09/02/2012 03:36:46 AM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 03:36:59 AM,STOCKTON ST/SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7931783017695, -122.40772718761)",122460059-E02 +121520279,E03,12050419,Medical Incident,05/31/2012,05/31/2012,05/31/2012 05:55:55 PM,05/31/2012 05:57:06 PM,05/31/2012 05:57:33 PM,05/31/2012 05:58:41 PM,05/31/2012 06:00:55 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 06:04:33 PM,JONES ST/EDDY ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",121520279-E03 +160082200,63,16003279,Medical Incident,01/08/2016,01/08/2016,01/08/2016 02:49:43 PM,01/08/2016 02:49:43 PM,01/08/2016 02:50:35 PM,01/08/2016 02:50:49 PM,01/08/2016 03:01:35 PM,01/08/2016 03:17:09 PM,01/08/2016 03:30:28 PM,Code 2 Transport,01/08/2016 03:58:24 PM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160082200-63 +121160286,T14,12038533,Alarms,04/25/2012,04/25/2012,04/25/2012 06:10:28 PM,04/25/2012 06:11:33 PM,04/25/2012 06:11:40 PM,04/25/2012 06:14:07 PM,04/25/2012 06:15:51 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/25/2012 06:18:34 PM,100 Block of 22ND AVE,SF,94121,B07,14,7174,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.7849531015294, -122.481929275092)",121160286-T14 +160452093,67,16018174,Medical Incident,02/14/2016,02/14/2016,02/14/2016 03:20:42 PM,02/14/2016 03:20:42 PM,02/14/2016 03:21:06 PM,02/14/2016 03:24:59 PM,02/14/2016 03:34:13 PM,02/14/2016 03:43:19 PM,02/14/2016 03:53:13 PM,Code 2 Transport,02/14/2016 04:36:11 PM,3RD ST/STILLMAN ST,San Francisco,94107,B03,8,2174,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",160452093-67 +131610415,94,13054893,Medical Incident,06/10/2013,06/10/2013,06/10/2013 11:47:56 PM,06/10/2013 11:48:16 PM,06/10/2013 11:48:48 PM,06/10/2013 11:49:13 PM,06/11/2013 12:01:54 AM,06/11/2013 12:18:01 AM,06/11/2013 12:28:24 AM,Code 2 Transport,06/11/2013 12:50:12 AM,BARTLETT ST/25TH ST,SF,94110,B06,11,5535,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7505726090469, -122.419399682073)",131610415-94 +160023378,76,16000940,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:56:31 PM,01/02/2016 09:59:33 PM,01/02/2016 09:59:54 PM,01/02/2016 10:00:23 PM,01/02/2016 10:15:09 PM,01/02/2016 10:22:16 PM,01/02/2016 10:34:08 PM,Code 2 Transport,01/02/2016 11:09:06 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160023378-76 +120270323,94,12009181,Medical Incident,01/27/2012,01/27/2012,01/27/2012 06:55:59 PM,01/27/2012 06:57:08 PM,01/27/2012 06:57:24 PM,01/27/2012 06:57:55 PM,01/27/2012 07:07:53 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Medical Examiner,01/27/2012 07:34:15 PM,1400 Block of LA SALLE AVE,SF,94124,B10,17,6517,E,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7349050342849, -122.386304220968)",120270323-94 +102580367,74,10081648,Medical Incident,09/15/2010,09/15/2010,09/15/2010 09:55:51 PM,09/15/2010 09:56:22 PM,09/15/2010 09:56:39 PM,09/15/2010 09:56:54 PM,09/15/2010 09:59:24 PM,09/15/2010 10:10:02 PM,09/15/2010 10:14:40 PM,Code 2 Transport,09/15/2010 10:33:58 PM,19TH ST/FOLSOM ST,SF,94110,B06,7,5432,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7604988732472, -122.414841891781)",102580367-74 +160612591,AM16,16024401,Medical Incident,03/01/2016,03/01/2016,03/01/2016 05:26:16 PM,03/01/2016 05:28:33 PM,03/01/2016 05:31:42 PM,03/01/2016 05:32:24 PM,03/01/2016 05:44:17 PM,03/01/2016 06:03:59 PM,03/01/2016 06:11:42 PM,Code 2 Transport,03/01/2016 06:48:31 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160612591-AM16 +131360187,T12,13045867,Administrative,05/16/2013,05/16/2013,05/16/2013 12:02:19 PM,05/16/2013 12:02:24 PM,05/16/2013 12:02:45 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 12:03:12 PM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,false,,1,TRUCK,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",131360187-T12 +110880173,E07,11029041,Medical Incident,03/29/2011,03/29/2011,03/29/2011 12:22:53 PM,03/29/2011 12:24:22 PM,03/29/2011 12:25:46 PM,03/29/2011 12:26:44 PM,03/29/2011 12:28:25 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 12:43:26 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,2,2,2,true,,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",110880173-E07 +113490328,74,11115930,Medical Incident,12/15/2011,12/15/2011,12/15/2011 09:06:55 PM,12/15/2011 09:08:14 PM,12/15/2011 09:08:32 PM,12/15/2011 09:08:44 PM,12/15/2011 09:13:10 PM,12/15/2011 09:31:45 PM,12/15/2011 09:36:45 PM,Code 2 Transport,12/15/2011 10:10:43 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7562403438982, -122.418755320213)",113490328-74 +160723186,AM22,16028771,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:55:02 PM,03/12/2016 08:57:54 PM,03/12/2016 08:58:26 PM,03/12/2016 09:00:02 PM,03/12/2016 09:04:56 PM,03/12/2016 09:21:26 PM,03/12/2016 09:36:18 PM,Code 2 Transport,03/12/2016 10:25:18 PM,700 Block of GROVE ST,San Francisco,94102,B02,5,3424,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7770920707523, -122.429212775945)",160723186-AM22 +110800306,E01,11026460,Medical Incident,03/21/2011,03/21/2011,03/21/2011 06:29:45 PM,03/21/2011 06:30:38 PM,03/21/2011 06:30:57 PM,03/21/2011 06:32:34 PM,03/21/2011 06:34:51 PM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 06:37:04 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",110800306-E01 +111400206,89,11046557,Medical Incident,05/20/2011,05/20/2011,05/20/2011 03:19:52 PM,05/20/2011 03:21:28 PM,05/20/2011 03:21:45 PM,05/20/2011 03:21:58 PM,05/20/2011 03:32:27 PM,05/20/2011 03:51:25 PM,05/20/2011 04:00:51 PM,Code 2 Transport,05/20/2011 04:28:31 PM,4100 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",111400206-89 +131890245,E10,13064473,Medical Incident,07/08/2013,07/08/2013,07/08/2013 04:04:57 PM,07/08/2013 04:07:24 PM,07/08/2013 04:07:52 PM,07/08/2013 04:08:54 PM,07/08/2013 04:11:18 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/08/2013 04:26:12 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",131890245-E10 +160623946,79,16024871,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:25:09 PM,03/02/2016 09:27:47 PM,03/02/2016 09:28:03 PM,03/02/2016 09:28:10 PM,03/02/2016 09:37:36 PM,03/02/2016 09:56:25 PM,03/02/2016 10:07:51 PM,Code 2 Transport,03/02/2016 10:38:52 PM,1900 Block of SILVER AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735116126922, -122.401297041461)",160623946-79 +160831138,59,16032896,Medical Incident,03/23/2016,03/23/2016,03/23/2016 09:46:14 AM,03/23/2016 09:48:06 AM,03/23/2016 09:49:09 AM,03/23/2016 09:49:40 AM,03/23/2016 10:05:49 AM,03/23/2016 10:20:51 AM,03/23/2016 10:28:18 AM,Code 2 Transport,03/23/2016 11:02:22 AM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160831138-59 +121770167,E05,12058869,Medical Incident,06/25/2012,06/25/2012,06/25/2012 12:07:20 PM,06/25/2012 12:08:38 PM,06/25/2012 12:08:51 PM,06/25/2012 12:09:57 PM,06/25/2012 12:10:25 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/25/2012 12:22:36 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",121770167-E05 +111570347,99,11052049,Medical Incident,06/06/2011,06/06/2011,06/06/2011 08:21:40 PM,06/06/2011 08:22:01 PM,06/06/2011 08:22:18 PM,06/06/2011 08:22:28 PM,06/06/2011 08:28:05 PM,06/06/2011 08:40:53 PM,06/06/2011 08:52:34 PM,Code 2 Transport,06/06/2011 09:15:29 PM,DIAMOND ST/CHENERY ST,SF,94131,B06,26,8146,3,3,3,true,,1,MEDIC,2,6,8,Glen Park,"(37.7345078169797, -122.433879093161)",111570347-99 +122770243,E02,12091563,Medical Incident,10/03/2012,10/03/2012,10/03/2012 01:45:24 PM,10/03/2012 01:47:17 PM,10/03/2012 01:47:39 PM,04/25/2016 01:56:29 PM,10/03/2012 01:49:49 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 01:51:33 PM,OFARRELL ST/LEAVENWORTH ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",122770243-E02 +102310230,E17,10072741,Medical Incident,08/19/2010,08/19/2010,08/19/2010 02:55:38 PM,08/19/2010 02:55:38 PM,08/19/2010 02:58:42 PM,08/19/2010 03:00:06 PM,08/19/2010 03:03:13 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 03:07:25 PM,0 Block of CASHMERE ST,SF,94124,B10,25,652,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",102310230-E17 +122410093,E32,12079700,Alarms,08/28/2012,08/28/2012,08/28/2012 09:08:35 AM,08/28/2012 09:11:27 AM,08/28/2012 09:11:40 AM,08/28/2012 09:12:57 AM,08/28/2012 09:17:19 AM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/28/2012 09:50:35 AM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",122410093-E32 +110450258,57,11014985,Medical Incident,02/14/2011,02/14/2011,02/14/2011 04:29:00 PM,02/14/2011 04:29:40 PM,02/14/2011 04:29:54 PM,02/14/2011 04:30:28 PM,02/14/2011 04:39:47 PM,02/14/2011 05:10:38 PM,02/14/2011 05:29:52 PM,Code 2 Transport,02/14/2011 06:00:53 PM,1600 Block of 45TH AVE,SF,94122,B08,23,7661,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7558064157946, -122.504597713164)",110450258-57 +160642668,74,16025581,Medical Incident,03/04/2016,03/04/2016,03/04/2016 04:35:32 PM,03/04/2016 04:35:32 PM,03/04/2016 04:35:45 PM,03/04/2016 04:35:54 PM,03/04/2016 04:58:35 PM,03/04/2016 05:19:24 PM,03/04/2016 05:31:29 PM,Code 2 Transport,03/04/2016 06:02:48 PM,700 Block of 40TH AVE,San Francisco,94121,B07,34,7263,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7746325487031, -122.500519854955)",160642668-74 +132010301,E02,13068257,Traffic Collision,07/20/2013,07/20/2013,07/20/2013 07:36:48 PM,07/20/2013 07:37:09 PM,07/20/2013 07:37:32 PM,07/20/2013 07:38:24 PM,07/20/2013 07:41:46 PM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/20/2013 07:55:17 PM,KEARNY ST/BAY ST,SF,94133,B01,28,1255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8064278132785, -122.407146282779)",132010301-E02 +121480045,54,12048996,Medical Incident,05/27/2012,05/26/2012,05/27/2012 03:50:34 AM,05/27/2012 03:51:27 AM,05/27/2012 03:51:54 AM,05/27/2012 03:55:33 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/27/2012 04:00:23 AM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7980228452184, -122.405863212632)",121480045-54 +160753285,67,16029853,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:00:03 PM,03/15/2016 07:00:25 PM,03/15/2016 07:00:57 PM,03/15/2016 07:01:42 PM,03/15/2016 07:09:57 PM,03/15/2016 07:42:19 PM,03/15/2016 08:21:03 PM,Code 2 Transport,03/15/2016 09:07:52 PM,1000 Block of BOWDOIN ST,San Francisco,94134,B10,42,6331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7228471250917, -122.409201549394)",160753285-67 +160763453,61,16030311,Medical Incident,03/16/2016,03/16/2016,03/16/2016 07:16:59 PM,03/16/2016 07:20:12 PM,03/16/2016 07:21:05 PM,03/16/2016 07:21:17 PM,03/16/2016 07:32:26 PM,03/16/2016 07:38:39 PM,03/16/2016 07:48:55 PM,Code 2 Transport,03/16/2016 08:27:13 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160763453-61 +102320382,B06,10073184,Alarms,08/20/2010,08/20/2010,08/20/2010 11:45:05 PM,08/20/2010 11:47:15 PM,08/20/2010 11:47:21 PM,08/20/2010 11:49:19 PM,08/20/2010 11:53:31 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/20/2010 11:55:56 PM,600 Block of CASTRO ST,SF,94114,B06,6,5437,3,3,3,false,,1,CHIEF,3,6,8,Castro/Upper Market,"(37.7584836229663, -122.434844610505)",102320382-B06 +103180018,T03,10101791,Structure Fire,11/14/2010,11/13/2010,11/14/2010 12:48:10 AM,11/14/2010 12:48:48 AM,11/14/2010 12:49:25 AM,11/14/2010 12:51:01 AM,11/14/2010 12:53:27 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 01:00:47 AM,1900 Block of CLAY ST,SF,94109,B04,38,3253,3,3,3,false,,1,TRUCK,3,4,2,Pacific Heights,"(37.791806912128, -122.425149392221)",103180018-T03 +160370093,AM22,16014505,Medical Incident,02/06/2016,02/05/2016,02/06/2016 12:20:34 AM,02/06/2016 12:22:00 AM,02/06/2016 12:23:51 AM,02/06/2016 12:24:49 AM,02/06/2016 12:27:23 AM,02/06/2016 12:54:58 AM,02/06/2016 01:01:17 AM,Code 2 Transport,02/06/2016 01:23:59 AM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",160370093-AM22 +132740114,E16,13093041,Water Rescue,10/01/2013,10/01/2013,10/01/2013 10:08:29 AM,10/01/2013 10:11:04 AM,10/01/2013 10:14:56 AM,10/01/2013 10:17:29 AM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 10:49:47 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,A,A,2,true,Fire,1,ENGINE,11,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132740114-E16 +160322465,65,16012657,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:25:05 PM,02/01/2016 04:25:47 PM,02/01/2016 04:26:07 PM,02/01/2016 04:26:14 PM,02/01/2016 04:35:02 PM,02/01/2016 05:10:36 PM,02/01/2016 05:48:28 PM,Code 2 Transport,02/01/2016 06:19:53 PM,0 Block of GILROY ST,San Francisco,94124,B10,17,6642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7164686786024, -122.388893192749)",160322465-65 +132710063,E07,13091969,Structure Fire,09/28/2013,09/27/2013,09/28/2013 04:59:07 AM,09/28/2013 04:59:08 AM,09/28/2013 05:00:20 AM,09/28/2013 05:02:03 AM,09/28/2013 05:04:02 AM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/28/2013 05:04:24 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",132710063-E07 +132410272,58,13081368,Traffic Collision,08/29/2013,08/29/2013,08/29/2013 06:00:34 PM,08/29/2013 06:01:39 PM,08/29/2013 06:05:03 PM,08/29/2013 06:05:12 PM,08/29/2013 06:15:08 PM,08/29/2013 06:33:33 PM,08/29/2013 07:06:42 PM,Code 2 Transport,08/29/2013 07:29:16 PM,PARIS ST/PERSIA AV,SF,94112,B03,43,6126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7223816672522, -122.434406708467)",132410272-58 +123330277,T12,12110740,Structure Fire,11/28/2012,11/28/2012,11/28/2012 06:30:15 PM,11/28/2012 06:31:28 PM,11/28/2012 06:31:41 PM,11/28/2012 06:32:37 PM,11/28/2012 06:36:29 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/28/2012 06:50:34 PM,0 Block of PARNASSUS AVE,SF,94117,B05,12,5151,3,3,3,false,Alarm,1,TRUCK,2,5,5,Haight Ashbury,"(37.7651415543543, -122.448048775097)",123330277-T12 +132670018,66,13090502,Traffic Collision,09/24/2013,09/23/2013,09/24/2013 02:14:50 AM,09/24/2013 02:15:45 AM,09/24/2013 02:16:08 AM,09/24/2013 02:17:04 AM,09/24/2013 02:19:57 AM,09/24/2013 02:27:38 AM,09/24/2013 02:37:32 AM,Code 3 Transport,09/24/2013 03:31:21 AM,BROADWAY ST/LARKIN ST,SF,94109,B01,41,1632,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7960945686376, -122.420109525147)",132670018-66 +160661882,79,16026416,Medical Incident,03/06/2016,03/06/2016,03/06/2016 02:45:36 PM,03/06/2016 02:45:36 PM,03/06/2016 02:45:53 PM,03/06/2016 02:46:03 PM,03/06/2016 02:57:00 PM,03/06/2016 03:23:01 PM,03/06/2016 04:10:03 PM,Patient Declined Transport,03/06/2016 04:38:24 PM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,945,2,3,3,true,Non Life-threatening,1,MEDIC,1,None,3,North Beach,"(37.8081679785862, -122.416634717802)",160661882-79 +160421698,AM10,16016858,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:28:07 PM,02/11/2016 12:29:47 PM,02/11/2016 12:29:58 PM,02/11/2016 12:30:46 PM,02/11/2016 12:34:04 PM,02/11/2016 12:49:36 PM,02/11/2016 01:14:26 PM,Code 2 Transport,02/11/2016 01:29:12 PM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7562319946436, -122.418893283075)",160421698-AM10 +113060161,96,11101630,Medical Incident,11/02/2011,11/02/2011,11/02/2011 11:24:28 AM,11/02/2011 11:24:47 AM,11/02/2011 11:25:07 AM,11/02/2011 11:26:01 AM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 11:32:09 AM,0 Block of STONEYFORD AVE,SF,94112,B09,32,5681,3,3,3,true,,1,MEDIC,2,9,9,Excelsior,"(37.7302732778797, -122.420943095957)",113060161-96 +140880045,E17,14029523,Medical Incident,03/29/2014,03/28/2014,03/29/2014 02:41:15 AM,03/29/2014 02:41:51 AM,03/29/2014 02:42:25 AM,03/29/2014 02:44:31 AM,03/29/2014 02:46:41 AM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,Code 2 Transport,03/29/2014 03:08:33 AM,3RD ST/WILLIAMS AV,SAN FRANCISCO,94124,B10,17,6536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7292784549254, -122.392624534553)",140880045-E17 +132780049,B01,13094384,Vehicle Fire,10/05/2013,10/04/2013,10/05/2013 03:11:27 AM,10/05/2013 03:13:59 AM,10/05/2013 03:14:15 AM,10/05/2013 03:15:38 AM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Fire,10/05/2013 03:18:20 AM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,false,Fire,1,CHIEF,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",132780049-B01 +140340078,AM02,14011414,Medical Incident,02/03/2014,02/03/2014,02/03/2014 08:36:17 AM,02/03/2014 08:38:04 AM,02/03/2014 08:39:34 AM,02/03/2014 08:40:20 AM,02/03/2014 08:52:35 AM,02/03/2014 09:06:01 AM,02/03/2014 09:31:33 AM,Code 2 Transport,02/03/2014 10:06:15 AM,500 Block of COLLEGE AVE,SF,94112,B06,32,5642,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7325875769032, -122.423413236667)",140340078-AM02 +160272390,85,16010741,Medical Incident,01/27/2016,01/27/2016,01/27/2016 03:23:01 PM,01/27/2016 03:23:53 PM,01/27/2016 03:24:19 PM,01/27/2016 03:24:47 PM,01/27/2016 03:48:15 PM,01/27/2016 04:08:38 PM,01/27/2016 04:43:57 PM,Code 2 Transport,01/27/2016 05:16:59 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160272390-85 +112650361,86,11087645,Medical Incident,09/22/2011,09/22/2011,09/22/2011 06:57:23 PM,09/22/2011 06:57:57 PM,09/22/2011 07:06:31 PM,09/22/2011 07:07:10 PM,09/22/2011 07:12:07 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,No Merit,09/22/2011 07:29:07 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",112650361-86 +132230359,66,13075476,Medical Incident,08/11/2013,08/11/2013,08/11/2013 11:14:39 PM,08/11/2013 11:16:04 PM,08/11/2013 11:16:33 PM,08/11/2013 11:16:58 PM,08/11/2013 11:31:54 PM,08/11/2013 11:45:52 PM,08/12/2013 12:03:49 AM,Code 2 Transport,08/12/2013 12:30:18 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132230359-66 +160452521,71,16018219,Medical Incident,02/14/2016,02/14/2016,02/14/2016 05:25:40 PM,02/14/2016 05:28:43 PM,02/14/2016 05:29:16 PM,02/14/2016 05:29:23 PM,02/14/2016 05:37:39 PM,02/14/2016 05:50:50 PM,02/14/2016 06:08:39 PM,Code 2 Transport,02/14/2016 06:39:32 PM,0 Block of LANSING ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860674664176, -122.393858794105)",160452521-71 +130250351,92,13008764,Medical Incident,01/25/2013,01/25/2013,01/25/2013 07:41:08 PM,01/25/2013 07:42:24 PM,01/25/2013 07:42:42 PM,01/25/2013 07:44:58 PM,01/25/2013 07:53:42 PM,01/25/2013 08:08:14 PM,01/25/2013 08:29:51 PM,Code 2 Transport,01/25/2013 08:57:56 PM,100 Block of OTIS ST,SF,94103,B02,36,5125,E,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",130250351-92 +140930149,B01,14031242,Alarms,04/03/2014,04/03/2014,04/03/2014 11:22:16 AM,04/03/2014 11:23:19 AM,04/03/2014 11:23:42 AM,04/25/2016 01:47:25 PM,04/03/2014 11:25:04 AM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,Fire,04/03/2014 11:27:27 AM,1000 Block of VAN NESS AVE,SAN FRANCISCO,94109,B04,3,3162,3,3,3,false,Alarm,1,CHIEF,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",140930149-B01 +111210184,99,11039944,Medical Incident,05/01/2011,05/01/2011,05/01/2011 12:33:57 PM,05/01/2011 12:35:09 PM,05/01/2011 12:35:29 PM,05/01/2011 12:35:46 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 12:38:06 PM,9TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",111210184-99 +121840168,E13,12061280,Medical Incident,07/02/2012,07/02/2012,07/02/2012 01:03:46 PM,07/02/2012 01:08:34 PM,07/02/2012 01:08:55 PM,07/02/2012 01:09:42 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 01:12:01 PM,WASHINGTON ST/POWELL ST,SF,94108,B01,2,1355,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Chinatown,"(37.794736824503, -122.40972157871)",121840168-E13 +110690289,RS2,11022781,Structure Fire,03/10/2011,03/10/2011,03/10/2011 05:14:00 PM,03/10/2011 05:14:38 PM,03/10/2011 05:14:59 PM,03/10/2011 05:16:07 PM,03/10/2011 05:18:00 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 05:25:26 PM,500 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,true,,1,RESCUE SQUAD,1,2,8,Mission,"(37.7627513875316, -122.424036887526)",110690289-RS2 +123150321,E36,12104959,Medical Incident,11/10/2012,11/10/2012,11/10/2012 07:59:01 PM,11/10/2012 07:59:30 PM,11/10/2012 07:59:58 PM,11/10/2012 08:02:11 PM,11/10/2012 08:04:26 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 08:05:44 PM,100 Block of 9TH ST,SF,94103,B02,36,2336,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",123150321-E36 +132970024,E01,13100748,Medical Incident,10/24/2013,10/23/2013,10/24/2013 01:42:23 AM,10/24/2013 01:42:30 AM,10/24/2013 01:42:45 AM,10/24/2013 01:44:26 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 01:46:39 AM,JONES ST/GOLDEN GATE AV,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",132970024-E01 +160092502,52,16003719,Medical Incident,01/09/2016,01/09/2016,01/09/2016 04:52:40 PM,01/09/2016 04:56:05 PM,01/09/2016 04:56:36 PM,01/09/2016 04:56:44 PM,01/09/2016 05:12:47 PM,01/09/2016 05:38:08 PM,01/09/2016 05:50:13 PM,Code 2 Transport,01/09/2016 06:41:55 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160092502-52 +111900221,79,11062861,Medical Incident,07/09/2011,07/09/2011,07/09/2011 04:29:26 PM,07/09/2011 04:31:52 PM,07/09/2011 04:32:24 PM,07/09/2011 04:32:38 PM,07/09/2011 04:40:47 PM,07/09/2011 04:52:50 PM,07/09/2011 05:26:12 PM,Code 2 Transport,07/09/2011 05:42:35 PM,100 Block of DWIGHT ST,SF,94134,B10,44,6326,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7235967197123, -122.403565167095)",111900221-79 +110070024,62,11002195,Medical Incident,01/07/2011,01/06/2011,01/07/2011 03:02:36 AM,01/07/2011 03:03:43 AM,01/07/2011 03:05:17 AM,01/07/2011 03:05:31 AM,01/07/2011 03:10:48 AM,01/07/2011 03:27:25 AM,01/07/2011 03:34:53 AM,Code 2 Transport,01/07/2011 03:55:59 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110070024-62 +160101280,55,16004007,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:28:12 AM,01/10/2016 11:29:26 AM,01/10/2016 11:33:38 AM,01/10/2016 11:33:46 AM,01/10/2016 11:50:09 AM,01/10/2016 12:17:40 PM,01/10/2016 12:35:23 PM,Code 2 Transport,01/10/2016 01:18:50 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160101280-55 +120500249,KM05,12016588,Medical Incident,02/19/2012,02/19/2012,02/19/2012 05:44:37 PM,02/19/2012 05:46:45 PM,02/19/2012 05:48:48 PM,02/19/2012 05:49:22 PM,02/19/2012 05:56:31 PM,02/19/2012 05:58:20 PM,02/19/2012 06:10:30 PM,Code 2 Transport,02/19/2012 06:32:32 PM,300 Block of TOPEKA AVE,SF,94124,B10,42,6473,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7315669733056, -122.395295699157)",120500249-KM05 +132990054,KM15,13101479,Medical Incident,10/26/2013,10/25/2013,10/26/2013 03:28:51 AM,10/26/2013 03:29:16 AM,10/26/2013 03:30:21 AM,10/26/2013 03:32:38 AM,10/26/2013 03:38:53 AM,10/26/2013 03:51:27 AM,10/26/2013 04:25:57 AM,Code 3 Transport,10/26/2013 04:44:04 AM,REVERE AV/HAWES ST,SF,94124,B10,17,6634,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7274248732127, -122.382686989318)",132990054-KM15 +122640118,E20,12087133,Medical Incident,09/20/2012,09/20/2012,09/20/2012 10:07:36 AM,09/20/2012 10:08:59 AM,09/20/2012 10:09:21 AM,09/20/2012 10:09:34 AM,09/20/2012 10:14:44 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 10:29:27 AM,IDORA AV/LAGUNA HONDA BL,SF,94127,B08,39,8644,1,1,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7440575890483, -122.456525052768)",122640118-E20 +112450169,T09,11080754,Structure Fire,09/02/2011,09/02/2011,09/02/2011 11:56:07 AM,09/02/2011 11:56:07 AM,09/02/2011 11:56:12 AM,09/02/2011 11:57:23 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 11:58:39 AM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,false,,1,TRUCK,2,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",112450169-T09 +103510116,T07,10112536,Structure Fire,12/17/2010,12/17/2010,12/17/2010 09:34:34 AM,12/17/2010 09:34:34 AM,12/17/2010 09:34:46 AM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,Other,12/17/2010 09:37:52 AM,25TH ST/VALENCIA ST,SF,94110,B06,11,5535,3,3,3,false,,1,TRUCK,2,6,8,Mission,"(37.7505058278022, -122.420507005779)",103510116-T07 +160913085,52,16036208,Traffic Collision,03/31/2016,03/31/2016,03/31/2016 06:55:04 PM,03/31/2016 06:55:04 PM,03/31/2016 06:55:13 PM,03/31/2016 06:55:28 PM,03/31/2016 07:00:41 PM,03/31/2016 07:21:08 PM,03/31/2016 08:03:06 PM,Code 2 Transport,03/31/2016 08:29:32 PM,HILLWAY AV/PARNASSUS AV,San Francisco,94131,B05,12,7321,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,7,Inner Sunset,"(37.7638146894796, -122.456669911754)",160913085-52 +132590230,E08,13087647,Alarms,09/16/2013,09/16/2013,09/16/2013 02:09:14 PM,09/16/2013 02:09:19 PM,09/16/2013 02:09:41 PM,09/16/2013 02:11:14 PM,09/16/2013 02:13:19 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Other,09/16/2013 02:22:55 PM,600 Block of NELSON RISING LN,SF,94158,B03,8,2264,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7695557600647, -122.391895275784)",132590230-E08 +160412305,66,16016504,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:10:46 PM,02/10/2016 03:11:33 PM,02/10/2016 03:11:54 PM,02/10/2016 03:12:04 PM,02/10/2016 03:16:42 PM,02/10/2016 03:47:55 PM,02/10/2016 03:56:48 PM,Code 2 Transport,02/10/2016 05:01:14 PM,0 Block of GOLDEN GATE AVE,San Francisco,94102,B03,1,1454,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",160412305-66 +160580278,78,16022968,Medical Incident,02/27/2016,02/26/2016,02/27/2016 01:55:51 AM,02/27/2016 01:55:51 AM,02/27/2016 01:56:01 AM,02/27/2016 01:56:32 AM,02/27/2016 02:01:40 AM,02/27/2016 02:20:07 AM,02/27/2016 02:23:37 AM,Code 2 Transport,02/27/2016 02:55:03 AM,LARKIN ST/GREEN ST,San Francisco,94109,B01,41,1631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.7980334609272, -122.420501285679)",160580278-78 +121030053,KM04,12034011,Medical Incident,04/12/2012,04/11/2012,04/12/2012 04:42:29 AM,04/12/2012 04:44:20 AM,04/12/2012 04:44:27 AM,04/12/2012 04:45:55 AM,04/12/2012 04:51:17 AM,04/12/2012 04:59:28 AM,04/12/2012 05:13:57 AM,Code 2 Transport,04/12/2012 05:43:15 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121030053-KM04 +130310028,AM18,13010441,Medical Incident,01/31/2013,01/30/2013,01/31/2013 02:08:09 AM,01/31/2013 02:08:42 AM,01/31/2013 02:09:15 AM,01/31/2013 02:09:54 AM,01/31/2013 02:14:12 AM,01/31/2013 02:25:08 AM,01/31/2013 02:57:52 AM,Code 2 Transport,01/31/2013 02:59:59 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130310028-AM18 +160481989,56,16019353,Medical Incident,02/17/2016,02/17/2016,02/17/2016 01:24:09 PM,02/17/2016 01:24:55 PM,02/17/2016 01:25:12 PM,02/17/2016 01:26:20 PM,02/17/2016 01:33:50 PM,02/17/2016 01:57:37 PM,02/17/2016 02:28:22 PM,Code 2 Transport,02/17/2016 03:06:36 PM,1300 Block of THOMAS AVE,San Francisco,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",160481989-56 +160770468,73,16030449,Medical Incident,03/17/2016,03/16/2016,03/17/2016 06:16:00 AM,03/17/2016 06:18:45 AM,03/17/2016 06:18:53 AM,03/17/2016 06:19:16 AM,03/17/2016 06:28:25 AM,03/17/2016 06:43:31 AM,03/17/2016 06:46:08 AM,Code 2 Transport,03/17/2016 07:13:56 AM,400 Block of JESSIE ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7820442091855, -122.408519525275)",160770468-73 +121910326,E17,12063716,Medical Incident,07/09/2012,07/09/2012,07/09/2012 08:17:06 PM,07/09/2012 08:21:26 PM,07/09/2012 08:21:52 PM,07/09/2012 08:23:14 PM,07/09/2012 08:28:20 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 08:45:21 PM,200 Block of RAYMOND AVE,SF,94134,B09,44,6264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.713564106848, -122.408103072889)",121910326-E17 +121230299,75,12040929,Traffic Collision,05/02/2012,05/02/2012,05/02/2012 06:28:36 PM,05/02/2012 06:29:37 PM,05/02/2012 06:30:19 PM,05/02/2012 06:34:07 PM,05/02/2012 07:03:29 PM,05/02/2012 07:09:31 PM,05/02/2012 07:54:18 PM,Code 2 Transport,05/02/2012 08:20:08 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",121230299-75 +111820214,T16,11060097,Alarms,07/01/2011,07/01/2011,07/01/2011 01:24:10 PM,07/01/2011 01:25:41 PM,07/01/2011 01:25:55 PM,07/01/2011 01:27:27 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,Other,07/01/2011 01:30:52 PM,2200 Block of SCOTT ST,SF,94115,B04,38,4124,3,3,3,true,,1,TRUCK,3,4,2,Pacific Heights,"(37.7905184879495, -122.439291112504)",111820214-T16 +130510168,KM01,13017245,Medical Incident,02/20/2013,02/20/2013,02/20/2013 11:57:09 AM,02/20/2013 11:58:25 AM,02/20/2013 11:58:39 AM,02/20/2013 11:59:21 AM,02/20/2013 12:08:07 PM,02/20/2013 12:45:00 PM,02/20/2013 01:02:52 PM,Code 2 Transport,02/20/2013 01:52:56 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",130510168-KM01 +160170599,79,16006715,Medical Incident,01/17/2016,01/16/2016,01/17/2016 05:57:12 AM,01/17/2016 05:58:58 AM,01/17/2016 05:59:14 AM,01/17/2016 05:59:20 AM,01/17/2016 06:05:14 AM,01/17/2016 06:19:58 AM,01/17/2016 06:37:33 AM,Code 2 Transport,01/17/2016 07:04:25 AM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.795777854883, -122.404981817889)",160170599-79 +122890332,86,12095738,Medical Incident,10/15/2012,10/15/2012,10/15/2012 06:47:03 PM,10/15/2012 06:49:59 PM,10/15/2012 06:50:57 PM,10/15/2012 06:51:09 PM,10/15/2012 06:57:31 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 07:05:18 PM,MARKET ST/CHARLES J BRENHAM ST,SF,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",122890332-86 +120760192,E01,12025233,Medical Incident,03/16/2012,03/16/2012,03/16/2012 04:26:52 PM,03/16/2012 04:28:58 PM,03/16/2012 04:30:05 PM,03/16/2012 04:31:18 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Other,03/16/2012 04:34:05 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",120760192-E01 +160653295,60,16026121,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:53:26 PM,03/05/2016 08:56:05 PM,03/05/2016 08:59:32 PM,03/05/2016 08:59:43 PM,03/05/2016 09:08:35 PM,03/05/2016 09:27:17 PM,03/05/2016 10:05:29 PM,Code 2 Transport,03/05/2016 10:41:00 PM,2800 Block of PACIFIC AVE,San Francisco,94115,B04,10,4163,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7923726007497, -122.441980522291)",160653295-60 +160440309,63,16017555,Medical Incident,02/13/2016,02/12/2016,02/13/2016 02:06:21 AM,02/13/2016 02:06:36 AM,02/13/2016 02:06:48 AM,02/13/2016 02:07:21 AM,02/13/2016 02:10:26 AM,02/13/2016 02:20:44 AM,02/13/2016 02:33:29 AM,Code 2 Transport,02/13/2016 03:10:49 AM,600 Block of MARKET ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7884749146803, -122.402552957865)",160440309-63 +102460102,T01,10077671,Structure Fire,09/03/2010,09/03/2010,09/03/2010 08:45:24 AM,09/03/2010 08:46:19 AM,09/03/2010 08:46:33 AM,09/03/2010 08:48:20 AM,09/03/2010 08:52:45 AM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/03/2010 09:09:44 AM,600 Block of GREEN ST,SF,94133,B01,2,1352,3,3,3,false,,1,TRUCK,5,1,3,Chinatown,"(37.7994506999766, -122.409839232069)",102460102-T01 +123380164,B09,12112673,Alarms,12/03/2012,12/03/2012,12/03/2012 11:07:27 AM,12/03/2012 11:08:26 AM,12/03/2012 11:09:43 AM,12/03/2012 11:10:47 AM,12/03/2012 11:13:05 AM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Fire,12/03/2012 11:18:00 AM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,false,Alarm,1,CHIEF,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",123380164-B09 +132830017,T02,13096174,Alarms,10/10/2013,10/09/2013,10/10/2013 01:38:53 AM,10/10/2013 01:40:18 AM,10/10/2013 01:41:49 AM,10/10/2013 01:43:30 AM,10/10/2013 01:45:04 AM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/10/2013 01:47:42 AM,800 Block of VALLEJO ST,SF,94133,B01,2,1421,3,3,3,true,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7982147324047, -122.411265123486)",132830017-T02 +133250262,E03,13110445,Medical Incident,11/21/2013,11/21/2013,11/21/2013 04:17:31 PM,11/21/2013 04:19:08 PM,11/21/2013 04:19:24 PM,11/21/2013 04:19:38 PM,11/21/2013 04:23:18 PM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Other,11/21/2013 04:24:51 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",133250262-E03 +160511329,71,16020437,Medical Incident,02/20/2016,02/20/2016,02/20/2016 11:34:19 AM,02/20/2016 11:34:19 AM,02/20/2016 11:34:19 AM,02/20/2016 11:34:19 AM,02/20/2016 11:34:19 AM,02/20/2016 11:51:20 AM,02/20/2016 12:09:12 PM,Code 2 Transport,02/20/2016 12:53:08 PM,OCEAN AV/PLYMOUTH AV,San Francisco,94112,B09,5,8472,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",160511329-71 +102630115,T01,10083153,Other,09/20/2010,09/20/2010,09/20/2010 10:14:45 AM,09/20/2010 10:21:17 AM,09/20/2010 10:21:50 AM,09/20/2010 10:24:52 AM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 10:26:24 AM,3RD ST/MISSION ST,SF,94103,B03,1,2178,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",102630115-T01 +160031583,AM14,16001188,Medical Incident,01/03/2016,01/03/2016,01/03/2016 01:28:30 PM,01/03/2016 01:29:24 PM,01/03/2016 01:29:54 PM,01/03/2016 01:31:03 PM,01/03/2016 01:40:14 PM,01/03/2016 01:40:15 PM,01/03/2016 01:47:35 PM,Code 2 Transport,01/03/2016 02:11:34 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,9,Mission,"(37.7643732096664, -122.417478491468)",160031583-AM14 +111260336,RC3,11041819,Medical Incident,05/06/2011,05/06/2011,05/06/2011 07:20:26 PM,05/06/2011 07:21:40 PM,05/06/2011 07:21:50 PM,05/06/2011 07:22:41 PM,05/06/2011 07:25:46 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 07:41:32 PM,BARTLETT ST/22ND ST,SF,94110,B06,7,5456,E,E,3,true,,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7553657296757, -122.419857942792)",111260336-RC3 +160850965,75,16033684,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:52:49 AM,03/25/2016 08:54:54 AM,03/25/2016 08:55:23 AM,03/25/2016 08:55:34 AM,03/25/2016 09:03:44 AM,03/25/2016 09:21:51 AM,03/25/2016 10:11:34 AM,Code 2 Transport,03/25/2016 10:27:55 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160850965-75 +123500380,E02,12117219,Medical Incident,12/15/2012,12/15/2012,12/15/2012 11:01:31 PM,12/15/2012 11:04:04 PM,12/15/2012 11:04:17 PM,12/15/2012 11:05:43 PM,12/15/2012 11:08:22 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/15/2012 11:25:40 PM,800 Block of LOMBARD ST,SF,94133,B01,28,1435,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Russian Hill,"(37.8025702182431, -122.415513808402)",123500380-E02 +160170410,78,16006684,Medical Incident,01/17/2016,01/16/2016,01/17/2016 03:02:45 AM,01/17/2016 03:03:31 AM,01/17/2016 03:03:46 AM,01/17/2016 03:03:56 AM,01/17/2016 03:09:20 AM,01/17/2016 03:20:04 AM,01/17/2016 03:34:48 AM,Code 2 Transport,01/17/2016 04:16:14 AM,MAIN ST/HOWARD ST,San Francisco,94105,B03,35,2116,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160170410-78 +111020228,E22,11033859,Medical Incident,04/12/2011,04/12/2011,04/12/2011 02:42:46 PM,04/12/2011 02:44:01 PM,04/12/2011 02:44:14 PM,04/12/2011 02:44:52 PM,04/12/2011 02:47:14 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/12/2011 03:07:01 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,2,2,2,false,,1,ENGINE,1,8,5,Inner Sunset,"(37.7631968207196, -122.464176094005)",111020228-E22 +112450221,T10,11080790,Medical Incident,09/02/2011,09/02/2011,09/02/2011 02:09:15 PM,09/02/2011 02:10:26 PM,09/02/2011 02:11:03 PM,09/02/2011 02:12:00 PM,09/02/2011 02:14:40 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 02:18:09 PM,200 Block of COLLINS ST,SF,94118,B05,10,4454,3,3,3,false,,1,TRUCK,1,5,1,Lone Mountain/USF,"(37.7814256335022, -122.450023210107)",112450221-T10 +103000227,E01,10095802,Medical Incident,10/27/2010,10/27/2010,10/27/2010 03:25:09 PM,10/27/2010 03:25:30 PM,10/27/2010 03:26:13 PM,10/27/2010 03:26:54 PM,10/27/2010 03:29:09 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 03:36:34 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,2,2,true,,1,ENGINE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",103000227-E01 +130410098,E15,13013953,Medical Incident,02/10/2013,02/10/2013,02/10/2013 09:16:30 AM,02/10/2013 09:17:39 AM,02/10/2013 09:17:48 AM,02/10/2013 09:20:32 AM,02/10/2013 09:21:52 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 09:33:18 AM,100 Block of SANTA YSABEL AVE,SF,94112,B09,15,8266,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7278529411639, -122.439860786388)",130410098-E15 +131040108,E03,13034868,Traffic Collision,04/14/2013,04/13/2013,04/14/2013 07:25:00 AM,04/14/2013 07:25:01 AM,04/14/2013 07:26:41 AM,04/14/2013 07:28:19 AM,04/14/2013 07:31:49 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 07:28:37 AM,ELLIS ST/LARKIN ST,SF,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",131040108-E03 +140320127,E36,14010787,Medical Incident,02/01/2014,02/01/2014,02/01/2014 10:14:55 AM,02/01/2014 10:15:18 AM,02/01/2014 10:15:41 AM,02/01/2014 10:17:29 AM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 10:26:12 AM,ERIE ST/FOLSOM ST,SF,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7693620195485, -122.415611508879)",140320127-E36 +113140094,54,11104263,Medical Incident,11/10/2011,11/10/2011,11/10/2011 09:29:08 AM,11/10/2011 09:29:29 AM,11/10/2011 09:30:22 AM,11/10/2011 09:30:47 AM,11/10/2011 09:34:59 AM,11/10/2011 09:57:13 AM,11/10/2011 10:25:07 AM,Code 2 Transport,11/10/2011 10:53:18 AM,0 Block of GRAYSTONE TER,SF,94114,B05,24,5275,3,2,2,true,,1,MEDIC,2,5,8,Inner Sunset,"(37.7587166967555, -122.447547883752)",113140094-54 +112920079,B03,11096816,Alarms,10/19/2011,10/19/2011,10/19/2011 08:17:05 AM,10/19/2011 08:18:01 AM,10/19/2011 08:18:19 AM,10/19/2011 08:23:44 AM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/19/2011 08:25:00 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,,1,CHIEF,3,3,6,South of Market,"(37.7794880680759, -122.40694292477)",112920079-B03 +160772152,AM10,16030614,Medical Incident,03/17/2016,03/17/2016,03/17/2016 01:58:12 PM,03/17/2016 01:58:12 PM,03/17/2016 02:13:10 PM,03/17/2016 02:13:56 PM,03/17/2016 02:28:21 PM,03/17/2016 02:36:05 PM,03/17/2016 02:49:17 PM,Code 2 Transport,03/17/2016 03:32:08 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",160772152-AM10 +133210152,E01,13109017,Medical Incident,11/17/2013,11/17/2013,11/17/2013 11:38:17 AM,11/17/2013 11:38:46 AM,11/17/2013 11:39:31 AM,11/17/2013 11:40:26 AM,11/17/2013 11:42:59 AM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 11:47:14 AM,7TH ST/FOLSOM ST,SF,94103,B03,1,2313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7767461078644, -122.407842061292)",133210152-E01 +111290082,88,11042580,Medical Incident,05/09/2011,05/09/2011,05/09/2011 09:09:00 AM,05/09/2011 09:11:55 AM,05/09/2011 09:12:08 AM,05/09/2011 09:12:25 AM,05/09/2011 09:15:58 AM,05/09/2011 09:33:20 AM,05/09/2011 09:50:52 AM,Code 2 Transport,05/09/2011 10:25:01 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7642910155103, -122.418689416733)",111290082-88 +110470120,E42,11015485,Medical Incident,02/16/2011,02/16/2011,02/16/2011 09:48:33 AM,02/16/2011 09:51:15 AM,02/16/2011 09:51:46 AM,02/16/2011 09:52:50 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 09:55:15 AM,SAN BRUNO AV/ARLETA AV,SF,94134,B10,44,6267,3,3,3,true,,1,ENGINE,1,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",110470120-E42 +111370025,E07,11045460,Medical Incident,05/17/2011,05/16/2011,05/17/2011 02:14:32 AM,05/17/2011 02:14:59 AM,05/17/2011 02:15:20 AM,05/17/2011 02:16:56 AM,05/17/2011 02:19:10 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 02:36:41 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",111370025-E07 +110330237,E03,11010858,Medical Incident,02/02/2011,02/02/2011,02/02/2011 02:59:36 PM,02/02/2011 03:02:34 PM,02/02/2011 03:02:49 PM,02/02/2011 03:04:30 PM,02/02/2011 03:05:08 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 03:08:47 PM,HEMLOCK ST/LARKIN ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7874871163793, -122.41836486841)",110330237-E03 +140500080,58,14016902,Medical Incident,02/19/2014,02/19/2014,02/19/2014 08:57:43 AM,02/19/2014 08:59:16 AM,02/19/2014 09:00:02 AM,02/19/2014 09:00:09 AM,02/19/2014 09:12:20 AM,02/19/2014 09:33:03 AM,02/19/2014 09:48:25 AM,Code 2 Transport,02/19/2014 10:36:13 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",140500080-58 +110070357,81,11002472,Medical Incident,01/07/2011,01/07/2011,01/07/2011 07:59:11 PM,01/07/2011 08:01:01 PM,01/07/2011 08:01:15 PM,01/07/2011 08:01:31 PM,01/07/2011 08:05:48 PM,01/07/2011 08:24:30 PM,01/07/2011 08:40:41 PM,Code 2 Transport,01/07/2011 08:53:31 PM,CASTRO ST/25TH ST,SF,94114,B06,11,5541,3,3,3,true,,1,MEDIC,2,6,8,Noe Valley,"(37.749695809359, -122.433929087398)",110070357-81 +120110160,84,12003795,Medical Incident,01/11/2012,01/11/2012,01/11/2012 01:19:50 PM,01/11/2012 01:20:15 PM,01/11/2012 01:20:23 PM,01/11/2012 01:21:04 PM,01/11/2012 01:24:11 PM,01/11/2012 01:46:40 PM,04/25/2016 02:00:41 PM,Code 2 Transport,01/11/2012 02:28:31 PM,300 Block of 6TH AVE,SF,94118,B07,31,7127,3,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7819761234193, -122.464421175825)",120110160-84 +160610881,88,16024231,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:17:16 AM,03/01/2016 09:17:16 AM,03/01/2016 09:17:45 AM,03/01/2016 09:18:03 AM,03/01/2016 09:22:15 AM,03/01/2016 09:54:37 AM,03/01/2016 10:13:38 AM,Code 2 Transport,03/01/2016 10:42:20 AM,100 Block of BLK FELL ST,San Francisco,94102,B02,36,3213,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7768249826624, -122.419746672441)",160610881-88 +140560280,T02,14018967,Alarms,02/25/2014,02/25/2014,02/25/2014 05:12:51 PM,02/25/2014 05:14:26 PM,02/25/2014 05:14:34 PM,02/25/2014 05:15:57 PM,02/25/2014 05:17:57 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Fire,02/25/2014 05:19:58 PM,900 Block of GREEN ST,SF,94133,B01,2,1441,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",140560280-T02 +120590312,AM18,12019532,Medical Incident,02/28/2012,02/28/2012,02/28/2012 07:34:01 PM,02/28/2012 07:35:54 PM,02/28/2012 07:36:21 PM,02/28/2012 07:37:18 PM,02/28/2012 07:43:30 PM,02/28/2012 08:03:10 PM,02/28/2012 08:17:02 PM,Code 2 Transport,02/28/2012 08:44:09 PM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",120590312-AM18 +72110087,T16,7060635,Alarms,07/30/2007,07/30/2007,07/30/2007 09:09:00 AM,07/30/2007 09:11:12 AM,07/30/2007 09:12:41 AM,07/30/2007 09:14:39 AM,07/30/2007 09:18:22 AM,04/25/2016 03:38:22 PM,04/25/2016 03:38:22 PM,Other,07/30/2007 09:23:41 AM,1500 Block of BEACH ST,SF,94123,B04,16,3452,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.804803085309, -122.434546180671)",072110087-T16 +140040206,KM09,14001467,Medical Incident,01/04/2014,01/04/2014,01/04/2014 01:54:38 PM,01/04/2014 01:55:04 PM,01/04/2014 01:55:39 PM,01/04/2014 01:56:20 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,01/04/2014 01:58:55 PM,Medical Examiner,01/04/2014 02:59:19 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",140040206-KM09 +140320137,T18,14010796,Structure Fire,02/01/2014,02/01/2014,02/01/2014 10:39:18 AM,02/01/2014 10:39:57 AM,02/01/2014 10:40:03 AM,02/01/2014 10:41:56 AM,02/01/2014 10:52:47 AM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 12:39:00 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,Alarm,1,TRUCK,10,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",140320137-T18 +113000197,T07,11099519,Alarms,10/27/2011,10/27/2011,10/27/2011 01:48:41 PM,10/27/2011 01:49:30 PM,10/27/2011 01:49:47 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 01:56:15 PM,100 Block of FAIR OAKS ST,SF,94110,B06,11,5471,3,3,3,false,,1,TRUCK,3,6,8,Mission,"(37.7543085854054, -122.424144017402)",113000197-T07 +160913123,KM05,16036213,Medical Incident,03/31/2016,03/31/2016,03/31/2016 06:58:55 PM,03/31/2016 07:01:56 PM,03/31/2016 07:03:41 PM,03/31/2016 07:04:16 PM,03/31/2016 07:14:14 PM,03/31/2016 07:24:19 PM,03/31/2016 07:40:12 PM,Code 2 Transport,03/31/2016 07:59:23 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160913123-KM05 +120180222,58,12006067,Medical Incident,01/18/2012,01/18/2012,01/18/2012 03:37:22 PM,01/18/2012 03:37:47 PM,01/18/2012 03:40:39 PM,01/18/2012 03:40:54 PM,01/18/2012 03:45:19 PM,01/18/2012 04:08:10 PM,01/18/2012 04:28:09 PM,Code 2 Transport,01/18/2012 04:55:12 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",120180222-58 +123290171,T03,12109408,Structure Fire,11/24/2012,11/24/2012,11/24/2012 01:34:14 PM,11/24/2012 01:35:27 PM,11/24/2012 01:35:34 PM,11/24/2012 01:37:07 PM,11/24/2012 01:38:06 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 01:50:35 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",123290171-T03 +130540170,KM06,13018249,Medical Incident,02/23/2013,02/23/2013,02/23/2013 01:59:07 PM,02/23/2013 01:59:16 PM,02/23/2013 02:00:01 PM,02/23/2013 02:00:30 PM,02/23/2013 02:04:23 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Patient Declined Transport,02/23/2013 02:36:54 PM,1700 Block of HARRISON ST,SF,94103,B02,36,5112,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.769082767924, -122.413353472663)",130540170-KM06 +140610237,86,14020688,Medical Incident,03/02/2014,03/02/2014,03/02/2014 04:36:09 PM,03/02/2014 04:37:51 PM,03/02/2014 04:38:24 PM,03/02/2014 04:38:30 PM,03/02/2014 04:47:42 PM,03/02/2014 05:04:31 PM,03/02/2014 05:11:33 PM,Code 2 Transport,03/02/2014 06:03:02 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800389118973, -122.431977767761)",140610237-86 +121420247,E29,12047293,Water Rescue,05/21/2012,05/21/2012,05/21/2012 04:13:04 PM,05/21/2012 04:13:50 PM,05/21/2012 04:16:57 PM,05/21/2012 04:20:48 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/21/2012 04:22:44 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,17,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121420247-E29 +130790080,E34,13026319,Administrative,03/20/2013,03/20/2013,03/20/2013 08:46:10 AM,03/20/2013 08:46:16 AM,03/20/2013 08:46:40 AM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Fire,03/20/2013 08:47:02 AM,400 Block of 41ST AVE,SF,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",130790080-E34 +112220312,T11,11073435,Structure Fire,08/10/2011,08/10/2011,08/10/2011 07:32:15 PM,08/10/2011 07:32:15 PM,08/10/2011 07:32:27 PM,08/10/2011 07:32:51 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 07:35:32 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",112220312-T11 +160352500,58,16013887,Medical Incident,02/04/2016,02/04/2016,02/04/2016 03:46:41 PM,02/04/2016 03:55:32 PM,02/04/2016 03:56:32 PM,02/04/2016 03:59:10 PM,02/04/2016 04:05:15 PM,02/04/2016 04:13:57 PM,02/04/2016 04:32:24 PM,Code 2 Transport,02/04/2016 05:12:56 PM,0 Block of WOODWARD ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7690757517644, -122.420788636046)",160352500-58 +110480159,E16,11015850,Medical Incident,02/17/2011,02/17/2011,02/17/2011 11:37:31 AM,02/17/2011 11:39:36 AM,02/17/2011 11:39:58 AM,02/17/2011 11:40:50 AM,02/17/2011 11:42:40 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 12:06:27 PM,3700 Block of BUCHANAN ST,SF,94123,B04,16,3446,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8045420636578, -122.433697283061)",110480159-E16 +131500161,KM06,13050797,Medical Incident,05/30/2013,05/30/2013,05/30/2013 12:59:47 PM,05/30/2013 01:02:00 PM,05/30/2013 01:02:25 PM,05/30/2013 01:03:27 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/30/2013 01:11:05 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",131500161-KM06 +121800301,83,12060027,Medical Incident,06/28/2012,06/28/2012,06/28/2012 06:05:29 PM,06/28/2012 06:07:11 PM,06/28/2012 06:08:40 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,06/28/2012 06:30:12 PM,06/28/2012 06:47:21 PM,Code 2 Transport,06/28/2012 07:05:03 PM,STOCKTON ST/ELLIS ST,SF,94103,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",121800301-83 +121700337,54,12056560,Medical Incident,06/18/2012,06/18/2012,06/18/2012 08:39:25 PM,06/18/2012 08:42:23 PM,06/18/2012 08:43:02 PM,06/18/2012 08:43:14 PM,06/18/2012 08:48:19 PM,06/18/2012 09:05:40 PM,06/18/2012 09:21:27 PM,Code 2 Transport,06/18/2012 09:22:04 PM,2800 Block of 24TH ST,SF,94110,B06,7,5527,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7528220751267, -122.40960340614)",121700337-54 +123510202,RS2,12117406,Traffic Collision,12/16/2012,12/16/2012,12/16/2012 01:27:49 PM,12/16/2012 01:27:49 PM,12/16/2012 01:28:33 PM,12/16/2012 01:29:59 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/16/2012 01:31:11 PM,4200 Block of 25TH ST,SF,94114,B06,11,5541,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,6,8,Noe Valley,"(37.7496836911364, -122.43503865435)",123510202-RS2 +132390353,E03,13080766,Medical Incident,08/27/2013,08/27/2013,08/27/2013 09:04:15 PM,08/27/2013 09:04:53 PM,08/27/2013 09:05:43 PM,04/25/2016 01:51:05 PM,08/27/2013 09:07:07 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/27/2013 09:20:55 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",132390353-E03 +103500350,E02,10112392,Structure Fire,12/16/2010,12/16/2010,12/16/2010 08:29:18 PM,12/16/2010 08:30:27 PM,12/16/2010 08:30:55 PM,12/16/2010 08:32:09 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,04/25/2016 02:07:05 PM,900 Block of KEARNY ST,SF,94133,B01,13,1246,3,3,3,true,,1,ENGINE,7,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",103500350-E02 +122130176,KM01,12070694,Citizen Assist / Service Call,07/31/2012,07/31/2012,07/31/2012 12:45:19 PM,07/31/2012 12:46:03 PM,07/31/2012 12:49:30 PM,07/31/2012 02:17:22 PM,07/31/2012 02:24:22 PM,07/31/2012 02:43:23 PM,07/31/2012 02:50:15 PM,Code 2 Transport,07/31/2012 03:42:31 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,Alarm,1,PRIVATE,3,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",122130176-KM01 +121350322,E05,12045012,Medical Incident,05/14/2012,05/14/2012,05/14/2012 08:10:51 PM,05/14/2012 08:13:59 PM,05/14/2012 08:14:42 PM,05/14/2012 08:16:29 PM,05/14/2012 08:19:10 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 08:28:16 PM,1800 Block of POST ST,SF,94115,B04,5,3513,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Japantown,"(37.7853160090058, -122.432236013697)",121350322-E05 +160110361,60,16004255,Medical Incident,01/11/2016,01/10/2016,01/11/2016 04:12:30 AM,01/11/2016 04:13:17 AM,01/11/2016 04:13:57 AM,01/11/2016 04:14:12 AM,01/11/2016 04:21:52 AM,01/11/2016 04:51:30 AM,01/11/2016 05:09:52 AM,Code 2 Transport,01/11/2016 05:42:36 AM,3000 Block of FRANKLIN ST,San Francisco,94123,B04,16,3235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8025436783609, -122.426402927315)",160110361-60 +112110253,T01,11069696,Alarms,07/30/2011,07/30/2011,07/30/2011 04:43:13 PM,07/30/2011 04:44:35 PM,07/30/2011 04:45:24 PM,07/30/2011 04:47:02 PM,07/30/2011 04:50:49 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,Other,07/30/2011 04:59:44 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",112110253-T01 +113380028,95,11111871,Medical Incident,12/04/2011,12/03/2011,12/04/2011 01:44:21 AM,12/04/2011 01:46:57 AM,12/04/2011 01:47:07 AM,12/04/2011 01:47:17 AM,12/04/2011 01:49:51 AM,12/04/2011 02:07:45 AM,12/04/2011 02:36:48 AM,Code 2 Transport,12/04/2011 03:00:13 AM,1100 Block of MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",113380028-95 +111960140,E36,11064662,Structure Fire,07/15/2011,07/15/2011,07/15/2011 12:03:04 PM,07/15/2011 12:03:04 PM,07/15/2011 12:03:15 PM,07/15/2011 12:04:25 PM,07/15/2011 12:06:36 PM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 12:06:44 PM,10TH ST/MISSION ST,SF,94103,B02,36,2341,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7752720593077, -122.415908181241)",111960140-E36 +160471877,62,16018932,Medical Incident,02/16/2016,02/16/2016,02/16/2016 01:22:13 PM,02/16/2016 01:24:01 PM,02/16/2016 01:24:28 PM,02/16/2016 01:24:40 PM,02/16/2016 01:45:30 PM,02/16/2016 02:07:24 PM,02/16/2016 02:18:28 PM,Code 2 Transport,02/16/2016 02:47:55 PM,3300 Block of GEARY BLVD,San Francisco,94118,B07,10,4453,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.7815739713841, -122.45542879534)",160471877-62 +160084103,75,16003467,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:28:39 PM,01/08/2016 11:28:59 PM,01/08/2016 11:29:34 PM,01/08/2016 11:29:45 PM,01/08/2016 11:33:24 PM,01/08/2016 11:40:00 PM,01/08/2016 11:55:48 PM,Code 2 Transport,01/09/2016 12:23:33 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160084103-75 +102980178,T15,10095149,Citizen Assist / Service Call,10/25/2010,10/25/2010,10/25/2010 12:29:59 PM,10/25/2010 12:31:31 PM,10/25/2010 12:35:07 PM,10/25/2010 12:36:16 PM,10/25/2010 12:42:45 PM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Fire,10/25/2010 12:53:22 PM,DIAMOND ST/BOSWORTH ST,SF,94131,B09,26,8261,3,3,3,false,,1,TRUCK,1,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",102980178-T15 +160801035,71,16031747,Medical Incident,03/20/2016,03/20/2016,03/20/2016 09:18:34 AM,03/20/2016 09:20:39 AM,03/20/2016 09:21:22 AM,03/20/2016 09:21:28 AM,03/20/2016 09:31:06 AM,03/20/2016 09:57:49 AM,03/20/2016 10:01:53 AM,Code 2 Transport,03/20/2016 10:31:06 AM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",160801035-71 +160452840,88,16018246,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:08:56 PM,02/14/2016 07:09:48 PM,02/14/2016 07:10:08 PM,02/14/2016 07:10:18 PM,02/14/2016 07:23:34 PM,02/14/2016 07:38:23 PM,02/14/2016 08:11:50 PM,Code 2 Transport,02/14/2016 08:44:53 PM,500 Block of SKYLINE BLVD,San Francisco,94132,B08,19,8772,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7145772172019, -122.498098202551)",160452840-88 +103520338,58,10113105,Medical Incident,12/18/2010,12/18/2010,12/18/2010 08:04:03 PM,12/18/2010 08:05:41 PM,12/18/2010 08:07:12 PM,12/18/2010 08:07:29 PM,12/18/2010 08:12:41 PM,12/18/2010 08:46:19 PM,12/18/2010 09:11:35 PM,Code 2 Transport,12/18/2010 09:27:15 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",103520338-58 +160452962,78,16018257,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:44:47 PM,02/14/2016 07:45:22 PM,02/14/2016 07:46:02 PM,02/14/2016 07:48:59 PM,02/14/2016 07:50:48 PM,02/14/2016 08:00:57 PM,02/14/2016 08:18:53 PM,Code 2 Transport,02/14/2016 08:57:47 PM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",160452962-78 +160530606,75,16021093,Medical Incident,02/22/2016,02/21/2016,02/22/2016 07:53:07 AM,02/22/2016 07:55:23 AM,02/22/2016 07:59:39 AM,02/22/2016 07:59:45 AM,02/22/2016 08:13:57 AM,02/22/2016 08:29:48 AM,02/22/2016 09:05:33 AM,Code 2 Transport,02/22/2016 09:36:30 AM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160530606-75 +123130017,KM07,12104005,Medical Incident,11/08/2012,11/07/2012,11/08/2012 01:04:40 AM,11/08/2012 01:08:48 AM,11/08/2012 01:10:08 AM,11/08/2012 01:10:39 AM,11/08/2012 01:15:20 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Unable to Locate,11/08/2012 01:18:37 AM,WIESE ST/16TH ST,SF,94103,B02,7,5236,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7650021977852, -122.42048249298)",123130017-KM07 +132100349,77,13071168,Medical Incident,07/29/2013,07/29/2013,07/29/2013 08:05:57 PM,07/29/2013 08:06:23 PM,07/29/2013 08:06:35 PM,07/29/2013 08:07:02 PM,04/25/2016 01:51:34 PM,07/29/2013 08:24:11 PM,07/29/2013 08:31:30 PM,Code 2 Transport,07/29/2013 08:49:29 PM,300 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",132100349-77 +122720251,AM12,12089811,Traffic Collision,09/28/2012,09/28/2012,09/28/2012 06:50:41 PM,09/28/2012 06:52:24 PM,09/28/2012 06:54:16 PM,09/28/2012 06:54:59 PM,09/28/2012 07:07:38 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,No Merit,09/28/2012 07:14:25 PM,STEINER ST/GEARY BL,SF,94115,B04,5,3623,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",122720251-AM12 +160781092,53,16030957,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:26:31 AM,03/18/2016 09:28:45 AM,03/18/2016 09:29:12 AM,03/18/2016 09:29:26 AM,03/18/2016 09:29:26 AM,03/18/2016 09:58:12 AM,03/18/2016 10:14:53 AM,Code 2 Transport,03/18/2016 10:58:30 AM,1200 Block of REVERE AVE,San Francisco,94124,B10,17,6634,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7280000551487, -122.383581434035)",160781092-53 +113430104,T13,11113681,Outside Fire,12/09/2011,12/09/2011,12/09/2011 08:59:49 AM,12/09/2011 08:59:50 AM,12/09/2011 09:03:10 AM,12/09/2011 09:05:18 AM,12/09/2011 09:09:24 AM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/09/2011 09:10:02 AM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",113430104-T13 +160633364,52,16025229,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:42:34 PM,03/03/2016 07:44:13 PM,03/03/2016 07:54:49 PM,03/03/2016 07:54:55 PM,03/03/2016 08:02:47 PM,03/03/2016 08:17:29 PM,03/03/2016 08:49:59 PM,Code 2 Transport,03/03/2016 09:24:52 PM,500 Block of HAYES ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7765217026729, -122.425377541131)",160633364-52 +113410017,94,11112915,Other,12/07/2011,12/06/2011,12/07/2011 01:44:02 AM,12/07/2011 01:44:02 AM,12/07/2011 01:44:02 AM,04/25/2016 02:01:17 PM,12/07/2011 02:01:40 AM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/07/2011 05:10:48 AM,HOWARD ST/SPEAR ST,SF,94105,B03,35,2114,3,3,3,true,,1,MEDIC,4,3,6,Financial District/South Beach,"(37.7913109702069, -122.392524624579)",113410017-94 +111910090,89,11063049,Medical Incident,07/10/2011,07/10/2011,07/10/2011 09:39:20 AM,07/10/2011 09:40:30 AM,07/10/2011 09:40:43 AM,07/10/2011 09:41:10 AM,07/10/2011 09:47:31 AM,07/10/2011 10:16:05 AM,07/10/2011 10:51:35 AM,Code 2 Transport,07/10/2011 11:12:19 AM,200 Block of OLMSTEAD ST,SF,94134,B10,44,6325,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7222449068789, -122.404091211866)",111910090-89 +121320106,T09,12043851,Structure Fire,05/11/2012,05/11/2012,05/11/2012 08:55:37 AM,05/11/2012 08:55:38 AM,05/11/2012 08:56:01 AM,05/11/2012 08:56:20 AM,05/11/2012 08:58:18 AM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 09:03:54 AM,2700 Block of BRYANT ST,SF,94110,B06,9,553,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.750396573149, -122.408970541511)",121320106-T09 +123500252,T03,12117098,Medical Incident,12/15/2012,12/15/2012,12/15/2012 04:55:06 PM,12/15/2012 04:55:29 PM,12/15/2012 04:55:45 PM,12/15/2012 04:56:01 PM,12/15/2012 04:56:10 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 05:07:18 PM,1100 Block of POST ST,SF,94109,B04,3,3161,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,3,Nob Hill,"(37.786777482512, -122.420759970574)",123500252-T03 +160441125,85,16017634,Medical Incident,02/13/2016,02/13/2016,02/13/2016 10:16:51 AM,02/13/2016 10:21:13 AM,02/13/2016 10:21:39 AM,02/13/2016 10:21:52 AM,02/13/2016 10:26:47 AM,02/13/2016 10:53:25 AM,02/13/2016 11:04:43 AM,Code 2 Transport,02/13/2016 11:47:21 AM,0 Block of WASHBURN ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",160441125-85 +110370182,E10,11012199,Medical Incident,02/06/2011,02/06/2011,02/06/2011 10:49:51 AM,02/06/2011 10:50:31 AM,02/06/2011 10:50:44 AM,02/06/2011 10:51:36 AM,02/06/2011 10:54:20 AM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/06/2011 11:22:59 AM,DIVISADERO ST/GEARY BL,SF,94115,B05,10,4154,3,3,3,true,,1,ENGINE,1,5,5,Japantown,"(37.7833084876653, -122.439480381269)",110370182-E10 +112000107,E01,11065893,Medical Incident,07/19/2011,07/19/2011,07/19/2011 09:27:06 AM,07/19/2011 09:28:51 AM,07/19/2011 09:29:18 AM,04/25/2016 02:03:36 PM,07/19/2011 09:31:25 AM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Other,07/19/2011 09:42:12 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7768521020734, -122.410711239368)",112000107-E01 +122010137,RWC2,12066763,Water Rescue,07/19/2012,07/19/2012,07/19/2012 10:54:56 AM,07/19/2012 10:54:56 AM,07/19/2012 10:55:19 AM,07/19/2012 10:58:48 AM,07/19/2012 11:09:15 AM,04/25/2016 01:57:39 PM,04/25/2016 01:57:39 PM,Other,07/19/2012 12:32:09 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,SUPPORT,9,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122010137-RWC2 +123200333,E12,12106511,Medical Incident,11/15/2012,11/15/2012,11/15/2012 09:12:30 PM,11/15/2012 09:14:01 PM,11/15/2012 09:14:10 PM,11/15/2012 09:14:51 PM,11/15/2012 09:17:35 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 09:20:30 PM,1500 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7698484993497, -122.447745343044)",123200333-E12 +112730144,E51,11090215,Medical Incident,09/30/2011,09/30/2011,09/30/2011 11:54:53 AM,09/30/2011 11:57:14 AM,09/30/2011 11:57:26 AM,04/25/2016 02:02:24 PM,09/30/2011 11:58:45 AM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 12:13:46 PM,0 Block of KEYES AVE,PR,94129,B99,51,4626,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8007138815184, -122.455902073561)",112730144-E51 +160883484,KM09,16035106,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:10:08 PM,03/28/2016 08:10:08 PM,03/28/2016 08:10:42 PM,03/28/2016 08:11:51 PM,03/28/2016 08:27:06 PM,03/28/2016 08:48:03 PM,03/28/2016 09:03:28 PM,Code 2 Transport,03/28/2016 09:38:41 PM,800 Block of 3RD ST,San Francisco,94107,B03,8,2172,2,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",160883484-KM09 +132050013,94,13069289,Medical Incident,07/24/2013,07/23/2013,07/24/2013 12:56:46 AM,07/24/2013 12:57:43 AM,07/24/2013 01:00:01 AM,04/25/2016 01:51:39 PM,07/24/2013 01:04:16 AM,07/24/2013 01:16:13 AM,07/24/2013 01:28:36 AM,Code 3 Transport,07/24/2013 02:20:41 AM,2500 Block of LOMBARD ST,SF,94123,B04,16,4223,E,E,3,true,Non Life-threatening,1,MEDIC,3,4,2,Marina,"(37.7990014109723, -122.443503858027)",132050013-94 +160291133,75,16011392,Medical Incident,01/29/2016,01/29/2016,01/29/2016 10:10:28 AM,01/29/2016 10:12:38 AM,01/29/2016 10:13:28 AM,01/29/2016 10:13:40 AM,01/29/2016 10:23:32 AM,01/29/2016 10:37:13 AM,01/29/2016 10:52:38 AM,Code 2 Transport,01/29/2016 11:20:44 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",160291133-75 +132530211,T08,13085504,Structure Fire,09/10/2013,09/10/2013,09/10/2013 01:19:11 PM,09/10/2013 01:19:11 PM,09/10/2013 01:20:52 PM,09/10/2013 01:22:25 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 01:24:42 PM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7820242662358, -122.401159719509)",132530211-T08 +160852642,65,16033860,Medical Incident,03/25/2016,03/25/2016,03/25/2016 04:32:57 PM,03/25/2016 04:34:03 PM,03/25/2016 04:35:21 PM,03/25/2016 04:35:29 PM,03/25/2016 04:57:08 PM,03/25/2016 05:09:52 PM,03/25/2016 05:20:07 PM,Code 2 Transport,03/25/2016 06:01:48 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160852642-65 +120190094,E06,12006289,Medical Incident,01/19/2012,01/19/2012,01/19/2012 08:53:48 AM,01/19/2012 08:54:40 AM,01/19/2012 08:54:59 AM,01/19/2012 08:59:58 AM,01/19/2012 09:03:31 AM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 09:11:35 AM,4000 Block of 18TH ST,SF,94114,B05,6,5417,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7610427981277, -122.433353754785)",120190094-E06 +102620328,79,10083014,Medical Incident,09/19/2010,09/19/2010,09/19/2010 08:17:08 PM,09/19/2010 08:18:01 PM,09/19/2010 08:18:27 PM,09/19/2010 08:19:03 PM,09/19/2010 08:31:26 PM,09/19/2010 08:44:33 PM,09/19/2010 09:04:05 PM,Code 2 Transport,09/19/2010 09:34:08 PM,200 Block of HOLYOKE ST,SF,94134,B10,42,6342,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7281264834061, -122.409351194321)",102620328-79 +160203389,62,16008139,Medical Incident,01/20/2016,01/20/2016,01/20/2016 07:51:43 PM,01/20/2016 07:53:56 PM,01/20/2016 07:54:16 PM,01/20/2016 07:54:24 PM,01/20/2016 08:07:41 PM,01/20/2016 08:17:21 PM,01/20/2016 08:22:57 PM,Code 2 Transport,01/20/2016 08:58:09 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160203389-62 +140340213,T09,14011525,Alarms,02/03/2014,02/03/2014,02/03/2014 02:48:55 PM,02/03/2014 02:48:55 PM,02/03/2014 02:49:08 PM,02/03/2014 02:50:56 PM,02/03/2014 02:53:24 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 02:56:19 PM,1700 Block of ALABAMA ST,SF,94110,B06,9,5666,3,3,3,false,Alarm,1,TRUCK,3,6,9,Bernal Heights,"(37.7446175892234, -122.410483607107)",140340213-T09 +113610078,E25,11119868,Medical Incident,12/27/2011,12/27/2011,12/27/2011 08:56:16 AM,12/27/2011 08:57:58 AM,12/27/2011 08:58:09 AM,12/27/2011 08:58:41 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 09:10:58 AM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,3,3,false,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",113610078-E25 +130190304,E01,13006611,Alarms,01/19/2013,01/19/2013,01/19/2013 05:41:25 PM,01/19/2013 05:42:19 PM,01/19/2013 05:43:19 PM,04/25/2016 01:54:43 PM,01/19/2013 05:45:03 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 06:05:32 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",130190304-E01 +121780320,E29,12059372,Medical Incident,06/26/2012,06/26/2012,06/26/2012 07:28:47 PM,06/26/2012 07:29:40 PM,06/26/2012 07:29:50 PM,06/26/2012 07:29:58 PM,06/26/2012 07:31:22 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 07:48:00 PM,500 Block of 9TH ST,SF,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",121780320-E29 +140060077,77,14002043,Medical Incident,01/06/2014,01/05/2014,01/06/2014 07:31:00 AM,01/06/2014 07:33:05 AM,01/06/2014 07:33:29 AM,01/06/2014 07:33:48 AM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/06/2014 07:41:25 AM,MOSS ST/FOLSOM ST,SF,94103,B03,1,2313,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7771792983194, -122.407293680493)",140060077-77 +110950308,E25,11031653,Alarms,04/05/2011,04/05/2011,04/05/2011 08:46:32 PM,04/05/2011 08:48:07 PM,04/05/2011 08:48:19 PM,04/05/2011 08:49:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,Fire,04/05/2011 08:50:21 PM,600 Block of 16TH ST,SF,94158,B03,8,2364,3,3,3,false,,1,ENGINE,3,3,6,Mission Bay,"(37.7668017295742, -122.391734694389)",110950308-E25 +160651442,62,16025908,Medical Incident,03/05/2016,03/05/2016,03/05/2016 12:01:45 PM,03/05/2016 12:02:31 PM,03/05/2016 12:02:54 PM,03/05/2016 12:03:23 PM,03/05/2016 12:10:33 PM,03/05/2016 12:41:38 PM,03/05/2016 12:48:28 PM,Code 2 Transport,03/05/2016 01:42:39 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",160651442-62 +140430363,66,14014772,Medical Incident,02/12/2014,02/12/2014,02/12/2014 08:55:25 PM,02/12/2014 08:56:03 PM,02/12/2014 08:56:22 PM,02/12/2014 08:56:56 PM,02/12/2014 09:05:09 PM,02/12/2014 09:22:05 PM,02/12/2014 09:55:44 PM,Code 2 Transport,02/12/2014 10:32:00 PM,1600 Block of ALABAMA ST,SF,94110,B06,9,5666,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7466283742569, -122.410660879834)",140430363-66 +110730128,E07,11023965,Medical Incident,03/14/2011,03/14/2011,03/14/2011 10:36:55 AM,03/14/2011 10:38:31 AM,03/14/2011 10:38:44 AM,03/14/2011 10:39:32 AM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 10:41:57 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",110730128-E07 +160053700,64,16002197,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:39:13 PM,01/05/2016 10:40:08 PM,01/05/2016 10:40:47 PM,01/05/2016 10:40:54 PM,01/05/2016 10:45:00 PM,01/05/2016 10:59:26 PM,01/05/2016 11:26:38 PM,Code 2 Transport,01/06/2016 12:23:48 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5525,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7514438314246, -122.41829760412)",160053700-64 +140670326,79,14022803,Medical Incident,03/08/2014,03/08/2014,03/08/2014 08:41:30 PM,03/08/2014 08:43:22 PM,03/08/2014 08:48:46 PM,03/08/2014 08:48:55 PM,03/08/2014 08:49:35 PM,03/08/2014 09:10:35 PM,03/08/2014 09:35:49 PM,Code 2 Transport,03/08/2014 09:49:35 PM,300 Block of LEAVENWORTH ST,SAN FRANCISCO,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",140670326-79 +112170333,KM07,11071838,Medical Incident,08/05/2011,08/05/2011,08/05/2011 08:21:22 PM,08/05/2011 08:21:54 PM,08/05/2011 08:29:00 PM,08/05/2011 08:30:11 PM,08/05/2011 08:34:55 PM,08/05/2011 08:44:10 PM,04/25/2016 02:03:19 PM,Code 2 Transport,08/05/2011 09:15:27 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,2,2,2,false,,1,PRIVATE,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",112170333-KM07 +133140301,E02,13106862,Medical Incident,11/10/2013,11/10/2013,11/10/2013 09:03:40 PM,11/10/2013 09:05:02 PM,11/10/2013 09:05:49 PM,11/10/2013 09:07:13 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 09:07:44 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,2,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8069201392161, -122.407170160416)",133140301-E02 +110470048,E33,11015436,Electrical Hazard,02/16/2011,02/15/2011,02/16/2011 06:06:05 AM,02/16/2011 06:08:19 AM,02/16/2011 06:08:42 AM,02/16/2011 06:11:02 AM,02/16/2011 06:14:11 AM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/16/2011 06:17:26 AM,0 Block of GRANADA AVE,SF,94112,B09,33,8465,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7191321202701, -122.457082657075)",110470048-E33 +112970066,82,11098427,Medical Incident,10/24/2011,10/23/2011,10/24/2011 07:12:39 AM,10/24/2011 07:13:26 AM,10/24/2011 07:13:41 AM,10/24/2011 07:13:55 AM,10/24/2011 07:19:31 AM,10/24/2011 07:37:11 AM,10/24/2011 08:07:38 AM,Code 2 Transport,10/24/2011 08:41:35 AM,200 Block of CONCORD ST,SF,94112,B09,43,6231,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7100041242948, -122.441693918266)",112970066-82 +131340428,E26,13045406,Medical Incident,05/14/2013,05/14/2013,05/14/2013 11:22:49 PM,05/14/2013 11:25:15 PM,05/14/2013 11:25:26 PM,05/14/2013 11:26:57 PM,05/14/2013 11:29:32 PM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,Other,05/14/2013 11:52:47 PM,2200 Block of CASTRO ST,SF,94131,B06,26,5565,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7437098544014, -122.433288076855)",131340428-E26 +160021816,50,16000754,Medical Incident,01/02/2016,01/02/2016,01/02/2016 02:16:42 PM,01/02/2016 02:16:42 PM,01/02/2016 02:17:21 PM,01/02/2016 02:17:30 PM,01/02/2016 02:37:53 PM,01/02/2016 02:51:27 PM,01/02/2016 03:12:57 PM,Code 2 Transport,01/02/2016 03:57:33 PM,2700 Block of TAYLOR ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807736426869, -122.41577781939)",160021816-50 +112680220,E01,11088609,Medical Incident,09/25/2011,09/25/2011,09/25/2011 02:09:48 PM,09/25/2011 02:10:27 PM,09/25/2011 02:11:01 PM,04/25/2016 02:02:29 PM,09/25/2011 02:16:07 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 02:27:16 PM,100 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7789597633583, -122.410718060304)",112680220-E01 +113160283,81,11105101,Medical Incident,11/12/2011,11/12/2011,11/12/2011 08:06:23 PM,11/12/2011 08:07:18 PM,11/12/2011 08:07:35 PM,11/12/2011 08:07:55 PM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Other,11/12/2011 08:13:53 PM,700 Block of TREAT AVE,SF,94110,B06,7,5447,E,2,2,true,,1,MEDIC,2,6,9,Mission,"(37.7581667907315, -122.413454316828)",113160283-81 +160643088,77,16025624,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:19:42 PM,03/04/2016 06:22:14 PM,03/04/2016 06:23:12 PM,03/04/2016 06:23:25 PM,03/04/2016 07:00:15 PM,03/04/2016 07:00:19 PM,03/04/2016 07:13:23 PM,Code 2 Transport,03/04/2016 07:29:36 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",160643088-77 +102600250,E06,10082223,Medical Incident,09/17/2010,09/17/2010,09/17/2010 03:48:08 PM,09/17/2010 03:48:55 PM,09/17/2010 03:49:50 PM,09/17/2010 03:50:53 PM,09/17/2010 03:55:01 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Patient Declined Transport,09/17/2010 03:55:23 PM,CASTRO ST/18TH ST,SF,94114,B05,6,5416,3,3,3,true,,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",102600250-E06 +103480385,E01,10111755,Alarms,12/14/2010,12/14/2010,12/14/2010 09:25:38 PM,12/14/2010 09:26:36 PM,12/14/2010 09:26:50 PM,12/14/2010 09:27:46 PM,12/14/2010 09:28:20 PM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Other,12/14/2010 09:31:27 PM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",103480385-E01 +120730259,58,12024284,Traffic Collision,03/13/2012,03/13/2012,03/13/2012 04:06:15 PM,03/13/2012 04:07:53 PM,03/13/2012 04:08:12 PM,03/13/2012 04:10:20 PM,03/13/2012 04:15:39 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,04/25/2016 01:59:41 PM,ATHENS ST/RUSSIA AV,SF,94112,B09,43,6156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,9,11,Excelsior,"(37.7185302023032, -122.430778026674)",120730259-58 +112510072,E20,11082678,Medical Incident,09/08/2011,09/07/2011,09/08/2011 07:03:17 AM,09/08/2011 07:03:48 AM,09/08/2011 07:04:22 AM,09/08/2011 07:05:54 AM,09/08/2011 07:08:20 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Patient Declined Transport,09/08/2011 07:22:42 AM,400 Block of PANORAMA DR,SF,94131,B08,20,5351,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7518297623409, -122.45213565267)",112510072-E20 +123020316,E14,12100280,Medical Incident,10/28/2012,10/28/2012,10/28/2012 07:00:35 PM,10/28/2012 07:02:56 PM,10/28/2012 07:03:27 PM,10/28/2012 07:04:26 PM,10/28/2012 07:08:04 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 07:29:54 PM,100 Block of POINT LOBOS AVE,SF,94121,B07,34,7274,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7796978848355, -122.504603568593)",123020316-E14 +120480093,85,12015847,Medical Incident,02/17/2012,02/17/2012,02/17/2012 08:49:39 AM,02/17/2012 08:51:13 AM,02/17/2012 08:51:39 AM,02/17/2012 08:53:14 AM,02/17/2012 09:05:15 AM,02/17/2012 09:25:43 AM,02/17/2012 09:52:48 AM,Code 2 Transport,02/17/2012 10:14:30 AM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",120480093-85 +160470150,58,16018753,Medical Incident,02/16/2016,02/15/2016,02/16/2016 01:26:42 AM,02/16/2016 01:27:09 AM,02/16/2016 01:27:25 AM,02/16/2016 01:28:01 AM,02/16/2016 01:33:36 AM,02/16/2016 01:53:18 AM,02/16/2016 02:01:07 AM,Code 3 Transport,02/16/2016 02:29:36 AM,0 Block of MONETA WAY,San Francisco,94112,B09,33,8347,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7129282254093, -122.449089456346)",160470150-58 +130360047,KM07,13012259,Medical Incident,02/05/2013,02/04/2013,02/05/2013 06:12:19 AM,02/05/2013 06:15:55 AM,02/05/2013 06:16:08 AM,02/05/2013 06:16:45 AM,02/05/2013 06:31:29 AM,02/05/2013 06:31:44 AM,02/05/2013 06:39:14 AM,Other,02/05/2013 07:01:47 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",130360047-KM07 +160583445,KM03,16023289,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:50:06 PM,02/27/2016 08:51:46 PM,02/27/2016 08:53:06 PM,02/27/2016 08:53:31 PM,02/27/2016 09:00:57 PM,02/27/2016 09:18:27 PM,02/27/2016 09:44:39 PM,Code 2 Transport,02/27/2016 10:25:58 PM,600 Block of GREENWICH ST,San Francisco,94133,B01,28,1335,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.8022928848666, -122.410091524049)",160583445-KM03 +130900240,E06,13030168,Medical Incident,03/31/2013,03/31/2013,03/31/2013 04:54:07 PM,03/31/2013 04:54:31 PM,03/31/2013 04:55:08 PM,03/31/2013 04:56:37 PM,03/31/2013 04:58:17 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 05:08:58 PM,3900 Block of 17TH ST,SF,94114,B05,6,5253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.762462765244, -122.434659092708)",130900240-E06 +140680267,E03,14023089,Medical Incident,03/09/2014,03/09/2014,03/09/2014 07:46:09 PM,03/09/2014 07:48:11 PM,03/09/2014 07:48:44 PM,03/09/2014 07:49:39 PM,03/09/2014 07:50:48 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Code 2 Transport,03/09/2014 08:00:55 PM,900 Block of LARKIN ST,SAN FRANCISCO,94109,B04,3,1641,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7868103734135, -122.418156523953)",140680267-E03 +110920286,E21,11030626,Outside Fire,04/02/2011,04/02/2011,04/02/2011 06:44:36 PM,04/02/2011 06:44:36 PM,04/02/2011 06:44:49 PM,04/25/2016 02:05:18 PM,04/02/2011 06:46:58 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/02/2011 06:49:24 PM,1600 Block of MCALLISTER ST,SF,94117,B05,21,4151,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7776362211567, -122.439185459883)",110920286-E21 +103270026,E02,10104643,Medical Incident,11/23/2010,11/22/2010,11/23/2010 04:35:36 AM,11/23/2010 04:37:49 AM,11/23/2010 04:38:01 AM,11/23/2010 04:39:49 AM,11/23/2010 04:41:31 AM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 05:02:11 AM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",103270026-E02 +160290210,61,16011301,Medical Incident,01/29/2016,01/28/2016,01/29/2016 02:01:14 AM,01/29/2016 02:02:39 AM,01/29/2016 02:04:40 AM,01/29/2016 02:05:10 AM,01/29/2016 02:17:36 AM,01/29/2016 02:23:23 AM,01/29/2016 02:37:53 AM,Code 2 Transport,01/29/2016 03:28:29 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160290210-61 +132850332,RC3,13097082,Medical Incident,10/12/2013,10/12/2013,10/12/2013 09:12:06 PM,10/12/2013 09:12:56 PM,10/12/2013 09:16:28 PM,04/25/2016 01:50:17 PM,10/12/2013 09:18:09 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/12/2013 09:19:39 PM,900 Block of HAYES ST,SF,94117,B05,21,3631,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,5,5,Hayes Valley,"(37.7757844466813, -122.432025160558)",132850332-RC3 +130450275,E03,13015330,Medical Incident,02/14/2013,02/14/2013,02/14/2013 03:21:33 PM,02/14/2013 03:23:04 PM,02/14/2013 03:27:05 PM,04/25/2016 01:54:18 PM,02/14/2013 03:31:33 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 03:54:55 PM,500 Block of TAYLOR ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7874020700273, -122.411538882795)",130450275-E03 +160820504,85,16032470,Medical Incident,03/22/2016,03/21/2016,03/22/2016 06:58:30 AM,03/22/2016 07:02:02 AM,03/22/2016 07:03:29 AM,03/22/2016 07:03:39 AM,03/22/2016 07:17:07 AM,03/22/2016 07:25:34 AM,03/22/2016 07:35:48 AM,Code 2 Transport,03/22/2016 08:23:39 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160820504-85 +160802453,78,16031878,Medical Incident,03/20/2016,03/20/2016,03/20/2016 04:44:09 PM,03/20/2016 04:45:13 PM,03/20/2016 04:47:25 PM,03/20/2016 04:47:32 PM,03/20/2016 05:01:43 PM,03/20/2016 05:22:10 PM,03/20/2016 05:38:33 PM,Code 2 Transport,03/20/2016 06:06:07 PM,300 Block of 11TH AVE,San Francisco,94118,B07,31,7141,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7817385392724, -122.469629422744)",160802453-78 +131590010,T15,13053868,Alarms,06/08/2013,06/07/2013,06/08/2013 12:35:27 AM,06/08/2013 12:36:46 AM,06/08/2013 12:36:54 AM,06/08/2013 12:38:45 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 12:55:23 AM,300 Block of OCEAN AVE,SF,94112,B09,15,8311,3,3,3,false,Alarm,1,TRUCK,3,9,11,Outer Mission,"(37.7229186267011, -122.443999261773)",131590010-T15 +123520367,85,12117899,Medical Incident,12/17/2012,12/17/2012,12/17/2012 08:46:04 PM,12/17/2012 08:46:28 PM,12/17/2012 08:47:01 PM,12/17/2012 08:47:21 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/17/2012 08:49:59 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",123520367-85 +160382728,60,16015317,Medical Incident,02/07/2016,02/07/2016,02/07/2016 05:32:42 PM,02/07/2016 05:35:49 PM,02/07/2016 05:37:22 PM,02/07/2016 05:37:34 PM,02/07/2016 05:49:38 PM,02/07/2016 05:51:36 PM,02/07/2016 06:08:13 PM,Code 2 Transport,02/07/2016 06:22:52 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160382728-60 +122020320,E01,12067221,Medical Incident,07/20/2012,07/20/2012,07/20/2012 07:03:12 PM,07/20/2012 07:03:21 PM,07/20/2012 07:07:26 PM,07/20/2012 07:07:44 PM,07/20/2012 07:09:16 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/20/2012 07:20:55 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",122020320-E01 +120210086,T10,12007028,Medical Incident,01/21/2012,01/20/2012,01/21/2012 04:40:54 AM,01/21/2012 04:41:37 AM,01/21/2012 04:41:50 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 04:43:32 AM,2900 Block of PINE ST,SF,94115,B05,10,4263,3,2,2,false,Non Life-threatening,1,TRUCK,2,5,2,Presidio Heights,"(37.7866401451507, -122.444395104281)",120210086-T10 +122480206,B01,12082019,Alarms,09/04/2012,09/04/2012,09/04/2012 01:56:35 PM,09/04/2012 01:57:18 PM,09/04/2012 02:00:06 PM,09/04/2012 02:02:24 PM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Fire,09/04/2012 02:09:05 PM,800 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7932200130609, -122.406954395537)",122480206-B01 +130440105,67,13014874,Medical Incident,02/13/2013,02/13/2013,02/13/2013 08:57:02 AM,02/13/2013 08:59:35 AM,02/13/2013 09:01:10 AM,02/13/2013 09:01:24 AM,02/13/2013 09:08:07 AM,02/13/2013 09:18:54 AM,02/13/2013 10:02:42 AM,Code 2 Transport,02/13/2013 10:17:46 AM,1000 Block of SILLIMAN ST,SF,94134,B09,42,6354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7284760475333, -122.415429330835)",130440105-67 +133190376,T08,13108549,Outside Fire,11/15/2013,11/15/2013,11/15/2013 10:28:07 PM,11/15/2013 10:28:07 PM,11/15/2013 10:28:19 PM,11/15/2013 10:30:07 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/15/2013 10:34:11 PM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,8,966,3,3,3,false,Alarm,1,TRUCK,5,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",133190376-T08 +140640331,96,14021772,Traffic Collision,03/05/2014,03/05/2014,03/05/2014 08:45:30 PM,03/05/2014 08:46:14 PM,03/05/2014 08:47:40 PM,03/05/2014 08:47:58 PM,03/05/2014 08:50:54 PM,03/05/2014 09:08:02 PM,03/05/2014 09:25:39 PM,Code 2 Transport,03/05/2014 10:04:18 PM,MISSION ST/NEY ST,SF,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.729930589908, -122.430110920118)",140640331-96 +102430265,E29,10076696,Medical Incident,08/31/2010,08/31/2010,08/31/2010 03:22:23 PM,08/31/2010 03:23:03 PM,08/31/2010 03:24:12 PM,08/31/2010 03:24:50 PM,08/31/2010 03:26:13 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/31/2010 03:28:22 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,true,,1,ENGINE,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",102430265-E29 +130620291,E32,13020867,Medical Incident,03/03/2013,03/03/2013,03/03/2013 05:18:43 PM,03/03/2013 05:19:29 PM,03/03/2013 05:19:59 PM,03/03/2013 05:21:25 PM,03/03/2013 05:23:08 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 05:38:49 PM,3800 Block of MISSION ST,SF,94110,B06,32,5632,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.7357299122271, -122.424651160697)",130620291-E32 +102600037,54,10082046,Medical Incident,09/17/2010,09/16/2010,09/17/2010 02:35:17 AM,09/17/2010 02:36:10 AM,09/17/2010 02:36:51 AM,09/17/2010 02:37:10 AM,09/17/2010 02:42:00 AM,09/17/2010 02:58:51 AM,09/17/2010 02:58:52 AM,Code 2 Transport,09/17/2010 03:28:40 AM,3800 Block of 19TH ST,SF,94114,B06,6,5436,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7596793163644, -122.429316589446)",102600037-54 +130270174,T15,13009292,Alarms,01/27/2013,01/27/2013,01/27/2013 12:06:23 PM,01/27/2013 12:07:29 PM,01/27/2013 12:07:41 PM,01/27/2013 12:09:10 PM,01/27/2013 12:14:01 PM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 12:19:53 PM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",130270174-T15 +140440108,E12,14014901,Structure Fire,02/13/2014,02/13/2014,02/13/2014 08:51:08 AM,02/13/2014 08:51:09 AM,02/13/2014 08:51:13 AM,02/13/2014 08:52:44 AM,02/13/2014 08:53:34 AM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Fire,02/13/2014 08:54:27 AM,STANYAN ST/FREDERICK ST,SF,94117,B05,12,4551,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.766374073924, -122.452947033535)",140440108-E12 +122270253,83,12075318,Medical Incident,08/14/2012,08/14/2012,08/14/2012 06:13:10 PM,08/14/2012 06:14:00 PM,08/14/2012 06:14:40 PM,08/14/2012 06:14:49 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/14/2012 06:21:45 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",122270253-83 +112870430,T13,11095360,Medical Incident,10/14/2011,10/14/2011,10/14/2011 10:59:37 PM,10/14/2011 10:59:38 PM,10/14/2011 10:59:38 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Other,10/15/2011 12:51:32 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",112870430-T13 +111130173,E38,11037333,Medical Incident,04/23/2011,04/23/2011,04/23/2011 12:47:21 PM,04/23/2011 12:49:35 PM,04/23/2011 12:49:52 PM,04/23/2011 12:51:20 PM,04/23/2011 12:52:34 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,No Merit,04/23/2011 12:58:02 PM,2100 Block of SACRAMENTO ST,SF,94109,B04,38,3326,E,E,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.790617450871, -122.428280876807)",111130173-E38 +130300232,86,13010261,Medical Incident,01/30/2013,01/30/2013,01/30/2013 01:54:12 PM,01/30/2013 01:54:46 PM,01/30/2013 01:55:52 PM,01/30/2013 01:56:09 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,04/25/2016 01:54:33 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",130300232-86 +122090116,T03,12069391,Medical Incident,07/27/2012,07/27/2012,07/27/2012 10:46:53 AM,07/27/2012 10:47:57 AM,07/27/2012 10:48:33 AM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 10:52:43 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122090116-T03 +112820129,AM16,11093292,Medical Incident,10/09/2011,10/09/2011,10/09/2011 10:36:18 AM,10/09/2011 10:38:02 AM,10/09/2011 10:40:01 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 10:40:58 AM,17TH ST/SANCHEZ ST,SF,94114,B05,6,5252,3,3,3,false,,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7627526712607, -122.430726724513)",112820129-AM16 +132370231,B06,13079994,Structure Fire,08/25/2013,08/25/2013,08/25/2013 03:00:00 PM,08/25/2013 03:00:24 PM,08/25/2013 03:00:40 PM,08/25/2013 03:01:56 PM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Other,08/25/2013 03:07:37 PM,100 Block of APOLLO ST,SF,94124,B10,42,6447,3,3,3,false,Alarm,1,CHIEF,6,10,10,Bayview Hunters Point,"(37.7308870599254, -122.398877821813)",132370231-B06 +110990046,82,11032758,Medical Incident,04/09/2011,04/08/2011,04/09/2011 02:52:21 AM,04/09/2011 02:54:16 AM,04/09/2011 02:55:55 AM,04/25/2016 02:05:12 PM,04/25/2016 02:05:12 PM,04/09/2011 03:11:18 AM,04/09/2011 03:15:31 AM,Code 2 Transport,04/09/2011 03:45:29 AM,1600 Block of YORK ST,SF,94110,B06,9,5672,2,2,2,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7472126200736, -122.406528665244)",110990046-82 +112860227,E12,11094770,Alarms,10/13/2011,10/13/2011,10/13/2011 01:32:10 PM,10/13/2011 01:32:39 PM,10/13/2011 01:33:23 PM,04/25/2016 02:02:11 PM,10/13/2011 01:41:09 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 01:42:24 PM,0 Block of CARL ST,SF,94117,B05,12,5151,3,3,3,true,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7658818964425, -122.448879988308)",112860227-E12 +131660052,E36,13056285,Medical Incident,06/15/2013,06/14/2013,06/15/2013 04:30:35 AM,06/15/2013 04:31:10 AM,06/15/2013 04:31:46 AM,06/15/2013 04:33:38 AM,06/15/2013 04:36:18 AM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Other,06/15/2013 04:41:30 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7760099210785, -122.412889415461)",131660052-E36 +160773915,AM20,16030789,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:00:26 PM,03/17/2016 09:01:33 PM,03/17/2016 09:01:56 PM,03/17/2016 09:02:36 PM,03/17/2016 09:06:17 PM,03/17/2016 09:29:36 PM,03/17/2016 09:41:36 PM,Code 2 Transport,03/17/2016 10:09:43 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160773915-AM20 +122270129,KM12,12075214,Medical Incident,08/14/2012,08/14/2012,08/14/2012 11:49:25 AM,08/14/2012 11:50:43 AM,08/14/2012 11:50:55 AM,08/14/2012 11:51:36 AM,08/14/2012 11:55:05 AM,08/14/2012 12:04:12 PM,08/14/2012 12:11:43 PM,Code 2 Transport,08/14/2012 12:40:38 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",122270129-KM12 +160681086,87,16027066,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:00:33 AM,03/08/2016 10:01:48 AM,03/08/2016 10:04:37 AM,03/08/2016 10:04:37 AM,03/08/2016 10:04:42 AM,03/08/2016 10:26:38 AM,03/08/2016 10:47:09 AM,Code 2 Transport,03/08/2016 11:14:37 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160681086-87 +111600335,E41,11053011,Structure Fire,06/09/2011,06/09/2011,06/09/2011 10:35:39 PM,06/09/2011 10:36:39 PM,06/09/2011 10:37:01 PM,06/09/2011 10:50:12 PM,06/09/2011 10:53:21 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 11:17:27 PM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,,2,ENGINE,12,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",111600335-E41 +103620249,KM05,10116166,Medical Incident,12/28/2010,12/28/2010,12/28/2010 05:22:56 PM,12/28/2010 05:24:06 PM,12/28/2010 05:24:44 PM,12/28/2010 05:26:03 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 05:31:30 PM,SACRAMENTO ST/DRUMM ST,SF,94111,B01,13,1115,3,3,3,false,,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7945882147944, -122.396585912894)",103620249-KM05 +121320361,E10,12044077,Structure Fire,05/11/2012,05/11/2012,05/11/2012 09:58:15 PM,05/11/2012 10:01:17 PM,05/11/2012 10:01:38 PM,05/11/2012 10:02:58 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Fire,05/11/2012 10:10:12 PM,2700 Block of GREEN ST,SF,94123,B04,16,4225,3,3,3,true,Fire,1,ENGINE,9,4,2,Marina,"(37.7950571744208, -122.444409448853)",121320361-E10 +160162937,91,16006543,Medical Incident,01/16/2016,01/16/2016,01/16/2016 06:36:24 PM,01/16/2016 06:38:27 PM,01/16/2016 06:38:47 PM,01/16/2016 06:39:08 PM,01/16/2016 06:42:18 PM,01/16/2016 06:53:28 PM,01/16/2016 07:13:38 PM,Code 2 Transport,01/16/2016 07:34:31 PM,MARKET ST/DRUMM ST,San Francisco,94105,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",160162937-91 +111570210,B10,11051925,Alarms,06/06/2011,06/06/2011,06/06/2011 01:14:48 PM,06/06/2011 01:16:58 PM,06/06/2011 01:17:06 PM,06/06/2011 01:17:57 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 01:22:24 PM,1600 Block of SHAFTER AVE,SF,94124,B10,17,6514,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7312956368615, -122.391302286864)",111570210-B10 +160554001,AM16,16022173,Medical Incident,02/24/2016,02/24/2016,02/24/2016 10:05:28 PM,02/24/2016 10:07:03 PM,02/24/2016 10:07:35 PM,02/24/2016 10:08:09 PM,02/24/2016 10:19:18 PM,02/24/2016 10:31:38 PM,02/24/2016 10:53:57 PM,Code 2 Transport,02/24/2016 11:18:40 PM,800 Block of GIRARD ST,San Francisco,94134,B10,44,6325,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7219082742634, -122.402396191437)",160554001-AM16 +102250255,E13,10070917,Outside Fire,08/13/2010,08/13/2010,08/13/2010 07:16:02 PM,08/13/2010 07:16:41 PM,08/13/2010 07:16:45 PM,08/13/2010 07:17:37 PM,08/13/2010 07:19:25 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 07:21:37 PM,BUSH ST/BATTERY ST,SF,94111,B01,13,1163,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7913265326409, -122.399572031136)",102250255-E13 +132480319,E29,13083796,Medical Incident,09/05/2013,09/05/2013,09/05/2013 06:02:37 PM,09/05/2013 06:04:53 PM,09/05/2013 06:39:46 PM,09/05/2013 06:40:58 PM,09/05/2013 06:44:23 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/05/2013 06:54:27 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7572895904578, -122.406870402082)",132480319-E29 +103350325,RS1,10107304,Structure Fire,12/01/2010,12/01/2010,12/01/2010 08:42:32 PM,12/01/2010 08:43:01 PM,12/01/2010 08:43:18 PM,12/01/2010 08:44:28 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,12/01/2010 08:56:26 PM,Other,12/01/2010 08:56:31 PM,1100 Block of UNION ST,SF,94109,B01,41,1611,3,3,3,false,,1,RESCUE SQUAD,9,1,3,Russian Hill,"(37.7993049507541, -122.417794823506)",103350325-RS1 +123520045,89,12117639,Medical Incident,12/17/2012,12/16/2012,12/17/2012 05:06:15 AM,12/17/2012 05:07:27 AM,12/17/2012 05:07:53 AM,12/17/2012 05:08:04 AM,12/17/2012 05:12:33 AM,12/17/2012 05:18:34 AM,12/17/2012 05:42:10 AM,Code 2 Transport,12/17/2012 06:04:45 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",123520045-89 +113050055,E42,11101167,Medical Incident,11/01/2011,10/31/2011,11/01/2011 03:34:28 AM,11/01/2011 03:34:48 AM,11/01/2011 03:35:20 AM,11/01/2011 03:36:50 AM,11/01/2011 03:39:28 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 03:50:45 AM,900 Block of TOMPKINS AVE,SF,94110,B10,42,6373,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7369660777243, -122.41068255175)",113050055-E42 +160813982,AM20,16032396,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:51:15 PM,03/21/2016 10:53:23 PM,03/21/2016 10:54:55 PM,03/21/2016 10:55:48 PM,03/21/2016 11:08:24 PM,03/21/2016 11:31:27 PM,03/21/2016 11:39:14 PM,Code 2 Transport,03/22/2016 12:06:58 AM,200 Block of FLOOD AVE,San Francisco,94112,B09,15,8231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7299496082095, -122.445430218846)",160813982-AM20 +122240104,E01,12074217,Medical Incident,08/11/2012,08/11/2012,08/11/2012 08:41:50 AM,08/11/2012 08:44:57 AM,08/11/2012 08:46:22 AM,08/11/2012 08:51:34 AM,08/11/2012 08:52:39 AM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Unable to Locate,08/11/2012 08:56:09 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122240104-E01 +160800905,AM06,16031734,Medical Incident,03/20/2016,03/20/2016,03/20/2016 08:23:23 AM,03/20/2016 08:26:09 AM,03/20/2016 08:26:42 AM,03/20/2016 08:27:09 AM,03/20/2016 08:35:42 AM,03/20/2016 09:04:09 AM,03/20/2016 09:18:41 AM,Code 2 Transport,03/20/2016 09:44:47 AM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",160800905-AM06 +160482887,88,16019434,Medical Incident,02/17/2016,02/17/2016,02/17/2016 05:08:04 PM,02/17/2016 05:10:05 PM,02/17/2016 05:10:23 PM,02/17/2016 05:10:33 PM,02/17/2016 05:23:19 PM,02/17/2016 05:42:16 PM,02/17/2016 05:53:34 PM,Code 2 Transport,02/17/2016 06:08:12 PM,0 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",160482887-88 +112450228,87,11080796,Structure Fire,09/02/2011,09/02/2011,09/02/2011 02:32:27 PM,09/02/2011 02:33:04 PM,09/02/2011 02:33:48 PM,09/02/2011 02:34:16 PM,09/02/2011 02:35:56 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 02:42:46 PM,1500 Block of BRODERICK ST,SF,94115,B05,10,4235,3,3,3,true,,1,MEDIC,1,5,5,Japantown,"(37.7845624883046, -122.441511182007)",112450228-87 +110520247,T02,11017282,Structure Fire,02/21/2011,02/21/2011,02/21/2011 04:59:01 PM,02/21/2011 04:59:28 PM,02/21/2011 04:59:52 PM,02/21/2011 05:00:47 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 05:09:05 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,,1,TRUCK,7,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",110520247-T02 +140640176,E36,14021634,Medical Incident,03/05/2014,03/05/2014,03/05/2014 01:12:25 PM,03/05/2014 01:15:57 PM,03/05/2014 01:16:07 PM,03/05/2014 01:16:27 PM,03/05/2014 01:20:28 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Code 2 Transport,03/05/2014 01:27:22 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",140640176-E36 +121690339,E13,12056261,Medical Incident,06/17/2012,06/17/2012,06/17/2012 10:54:02 PM,06/17/2012 10:54:29 PM,06/17/2012 10:54:57 PM,06/17/2012 10:56:12 PM,06/17/2012 10:57:36 PM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/17/2012 11:16:20 PM,500 Block of BATTERY ST,SF,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7963352483576, -122.400515223296)",121690339-E13 +160872066,65,16034597,Medical Incident,03/27/2016,03/27/2016,03/27/2016 02:31:22 PM,03/27/2016 02:32:10 PM,03/27/2016 02:34:35 PM,03/27/2016 02:34:35 PM,03/27/2016 02:38:10 PM,03/27/2016 02:52:43 PM,03/27/2016 03:08:05 PM,Code 2 Transport,03/27/2016 03:28:08 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160872066-65 +130740194,KM04,13024682,Medical Incident,03/15/2013,03/15/2013,03/15/2013 01:24:29 PM,03/15/2013 01:26:03 PM,03/15/2013 01:26:14 PM,03/15/2013 01:28:21 PM,03/15/2013 01:37:33 PM,03/15/2013 01:47:48 PM,03/15/2013 02:08:24 PM,Code 2 Transport,03/15/2013 02:47:08 PM,0 Block of ALHAMBRA ST,SF,94123,B04,16,3565,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8028621250371, -122.437767918656)",130740194-KM04 +120970344,AM08,12032266,Medical Incident,04/06/2012,04/06/2012,04/06/2012 07:53:22 PM,04/06/2012 07:54:27 PM,04/06/2012 07:54:41 PM,04/06/2012 07:55:43 PM,04/06/2012 08:16:12 PM,04/06/2012 08:19:30 PM,04/06/2012 08:41:51 PM,Code 2 Transport,04/06/2012 09:09:12 PM,400 Block of SAWYER ST,SF,94134,B09,44,6263,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7124692034838, -122.414790344433)",120970344-AM08 +160131062,KM09,16005126,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:41:42 AM,01/13/2016 09:42:24 AM,01/13/2016 09:42:55 AM,01/13/2016 09:43:28 AM,01/13/2016 09:52:11 AM,01/13/2016 10:06:28 AM,01/13/2016 10:23:15 AM,Code 2 Transport,01/13/2016 11:05:10 AM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7658582826035, -122.419816092644)",160131062-KM09 +112400047,96,11079088,Medical Incident,08/28/2011,08/27/2011,08/28/2011 02:22:01 AM,08/28/2011 02:22:01 AM,08/28/2011 02:22:01 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 02:22:25 AM,1300 Block of SACRAMENTO ST,SF,94109,B01,41,1465,3,3,3,true,,1,MEDIC,4,1,3,Nob Hill,"(37.7921571768233, -122.415310401908)",112400047-96 +112620013,E38,11086328,Medical Incident,09/19/2011,09/18/2011,09/19/2011 01:01:45 AM,09/19/2011 01:02:37 AM,09/19/2011 01:03:07 AM,09/19/2011 01:05:02 AM,09/19/2011 01:06:36 AM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,09/19/2011 01:23:31 AM,2000 Block of SACRAMENTO ST,SF,94109,B04,38,3326,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7907164232714, -122.426614088537)",112620013-E38 +131590205,E09,13054041,Structure Fire,06/08/2013,06/08/2013,06/08/2013 01:54:42 PM,06/08/2013 01:54:42 PM,06/08/2013 01:54:49 PM,06/08/2013 01:55:36 PM,06/08/2013 01:57:34 PM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/08/2013 02:06:18 PM,25TH ST/HARRISON ST,SF,94110,B06,7,5533,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7510338955654, -122.411746226036)",131590205-E09 +130680366,AM18,13022836,Medical Incident,03/09/2013,03/09/2013,03/09/2013 09:00:50 PM,03/09/2013 09:03:37 PM,03/09/2013 09:03:55 PM,03/09/2013 09:04:31 PM,03/09/2013 09:10:02 PM,03/09/2013 09:40:58 PM,03/09/2013 09:46:58 PM,Code 3 Transport,03/09/2013 10:41:28 PM,0 Block of PANORAMA DR,SF,94131,B08,20,5355,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.746813546528, -122.45066943199)",130680366-AM18 +160382553,53,16015303,Medical Incident,02/07/2016,02/07/2016,02/07/2016 04:28:54 PM,02/07/2016 04:31:23 PM,02/07/2016 04:33:25 PM,02/07/2016 04:33:32 PM,02/07/2016 04:39:59 PM,02/07/2016 04:58:11 PM,02/07/2016 05:17:02 PM,Code 2 Transport,02/07/2016 05:58:42 PM,1700 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",160382553-53 +133530008,B10,13119774,Structure Fire,12/19/2013,12/18/2013,12/19/2013 12:31:28 AM,12/19/2013 12:31:28 AM,12/19/2013 12:32:11 AM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 12:35:02 AM,300 Block of HARBOR RD,SF,94124,B10,25,666,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7337140340786, -122.380588546877)",133530008-B10 +160790246,70,16031266,Medical Incident,03/19/2016,03/18/2016,03/19/2016 01:44:09 AM,03/19/2016 01:45:28 AM,03/19/2016 01:45:51 AM,03/19/2016 01:46:04 AM,03/19/2016 01:51:29 AM,03/19/2016 02:11:02 AM,03/19/2016 02:19:52 AM,Code 3 Transport,03/19/2016 03:05:14 AM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",160790246-70 +160083968,KM07,16003454,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:42:31 PM,01/08/2016 10:45:30 PM,01/08/2016 10:46:42 PM,01/08/2016 10:47:17 PM,01/08/2016 10:52:48 PM,01/08/2016 11:17:00 PM,01/08/2016 11:24:06 PM,Code 2 Transport,01/08/2016 11:52:24 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",160083968-KM07 +111970142,B02,11064969,Alarms,07/16/2011,07/16/2011,07/16/2011 11:08:37 AM,07/16/2011 11:09:50 AM,07/16/2011 11:10:06 AM,07/16/2011 11:12:25 AM,07/16/2011 11:13:20 AM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 11:18:00 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,,1,CHIEF,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",111970142-B02 +160703086,58,16027975,Medical Incident,03/10/2016,03/10/2016,03/10/2016 07:18:35 PM,03/10/2016 07:20:19 PM,03/10/2016 07:21:09 PM,03/10/2016 07:21:49 PM,03/10/2016 07:41:14 PM,03/10/2016 08:15:38 PM,03/10/2016 08:30:45 PM,Code 2 Transport,03/10/2016 09:14:54 PM,900 Block of BUCHANAN ST,San Francisco,94102,B02,5,3425,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7785925129338, -122.428315366472)",160703086-58 +131220174,84,13041007,Medical Incident,05/02/2013,05/02/2013,05/02/2013 10:49:25 AM,05/02/2013 10:51:09 AM,05/02/2013 10:51:36 AM,05/02/2013 10:51:55 AM,05/02/2013 10:56:13 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Patient Declined Transport,05/02/2013 11:51:29 AM,2600 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Portola,"(37.7282520210187, -122.403780725663)",131220174-84 +121050065,T06,12034670,Structure Fire,04/14/2012,04/13/2012,04/14/2012 04:02:37 AM,04/14/2012 04:05:42 AM,04/14/2012 04:06:03 AM,04/14/2012 04:07:57 AM,04/14/2012 04:09:32 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 04:11:56 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,false,Fire,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",121050065-T06 +131590143,RS2,13053985,Structure Fire,06/08/2013,06/08/2013,06/08/2013 10:31:03 AM,06/08/2013 10:36:12 AM,06/08/2013 10:36:21 AM,06/08/2013 10:36:31 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 10:41:01 AM,0 Block of GAVEN ST,SF,94134,B10,42,6366,3,3,3,false,Alarm,1,RESCUE SQUAD,9,10,9,Portola,"(37.7339114481423, -122.407055482769)",131590143-RS2 +103620311,79,10116226,Medical Incident,12/28/2010,12/28/2010,12/28/2010 08:17:52 PM,12/28/2010 08:19:08 PM,12/28/2010 08:20:42 PM,12/28/2010 08:20:50 PM,12/28/2010 08:32:41 PM,12/28/2010 08:45:18 PM,12/28/2010 09:01:16 PM,Code 2 Transport,12/28/2010 09:25:28 PM,2200 Block of BAY SHORE BLVD,SF,94134,B10,44,6255,2,2,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121240018381, -122.40295368671)",103620311-79 +140570362,D2,14019371,Explosion,02/26/2014,02/26/2014,02/26/2014 07:56:58 PM,02/26/2014 07:57:20 PM,02/26/2014 07:59:36 PM,02/26/2014 08:00:03 PM,02/26/2014 08:02:01 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/26/2014 08:21:58 PM,1500 Block of VALLEJO ST,SF,94109,B04,41,3126,3,3,3,false,Fire,1,CHIEF,1,4,3,Russian Hill,"(37.7968496393721, -122.422792063249)",140570362-D2 +122350183,B04,12077872,Alarms,08/22/2012,08/22/2012,08/22/2012 02:06:38 PM,08/22/2012 02:07:39 PM,08/22/2012 02:07:57 PM,08/22/2012 02:08:48 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Other,08/22/2012 02:12:51 PM,1100 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",122350183-B04 +160232566,77,16009233,Medical Incident,01/23/2016,01/23/2016,01/23/2016 05:07:40 PM,01/23/2016 05:09:45 PM,01/23/2016 05:11:10 PM,01/23/2016 05:11:50 PM,01/23/2016 05:15:38 PM,01/23/2016 05:29:31 PM,01/23/2016 05:39:55 PM,Code 2 Transport,01/23/2016 06:09:52 PM,400 Block of PARIS ST,San Francisco,94112,B09,43,6126,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7215760816833, -122.434936472806)",160232566-77 +160170184,87,16006655,Medical Incident,01/17/2016,01/16/2016,01/17/2016 01:23:14 AM,01/17/2016 01:23:49 AM,01/17/2016 01:24:22 AM,01/17/2016 01:24:31 AM,01/17/2016 01:33:37 AM,01/17/2016 01:43:26 AM,01/17/2016 02:10:16 AM,Code 2 Transport,01/17/2016 02:48:19 AM,1200 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7112938482152, -122.414007130842)",160170184-87 +123640239,92,12121852,Medical Incident,12/29/2012,12/29/2012,12/29/2012 04:29:44 PM,12/29/2012 04:33:02 PM,12/29/2012 04:37:00 PM,12/29/2012 04:37:07 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,04/25/2016 01:55:04 PM,200 Block of GEARY ST,SF,94102,B01,1,1323,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",123640239-92 +121260249,86,12041932,Medical Incident,05/05/2012,05/05/2012,05/05/2012 02:40:05 PM,05/05/2012 02:41:48 PM,05/05/2012 02:42:12 PM,05/05/2012 02:42:27 PM,05/05/2012 02:49:32 PM,05/05/2012 03:21:27 PM,05/05/2012 03:42:36 PM,Code 2 Transport,05/05/2012 04:08:22 PM,500 Block of NAPLES ST,SF,94112,B09,43,6137,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7200487736025, -122.431735873019)",121260249-86 +121230210,88,12040846,Medical Incident,05/02/2012,05/02/2012,05/02/2012 02:49:25 PM,05/02/2012 02:50:08 PM,05/02/2012 02:50:33 PM,05/02/2012 02:54:50 PM,05/02/2012 02:58:31 PM,05/02/2012 03:22:02 PM,05/02/2012 03:38:04 PM,Code 2 Transport,05/02/2012 04:09:13 PM,1700 Block of LARKIN ST,SF,94109,B01,41,1633,3,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7939019224457, -122.419734318747)",121230210-88 +131760186,E38,13059709,Medical Incident,06/25/2013,06/25/2013,06/25/2013 12:46:18 PM,06/25/2013 12:47:01 PM,06/25/2013 12:47:16 PM,06/25/2013 12:48:04 PM,06/25/2013 12:49:01 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,06/25/2013 12:56:37 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",131760186-E38 +103080416,E01,10098888,Structure Fire,11/04/2010,11/04/2010,11/04/2010 11:40:13 PM,11/04/2010 11:40:13 PM,11/04/2010 11:40:58 PM,11/04/2010 11:42:53 PM,11/04/2010 11:43:41 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 11:44:07 PM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7820242662358, -122.401159719509)",103080416-E01 +160683633,KM07,16027271,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:13:19 PM,03/08/2016 10:13:29 PM,03/08/2016 10:17:21 PM,03/08/2016 10:17:21 PM,03/08/2016 10:35:59 PM,03/08/2016 10:56:23 PM,03/08/2016 11:18:17 PM,Code 2 Transport,03/08/2016 11:37:49 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160683633-KM07 +160822889,KM08,16032674,Medical Incident,03/22/2016,03/22/2016,03/22/2016 05:20:18 PM,03/22/2016 05:23:08 PM,03/22/2016 05:24:05 PM,03/22/2016 05:27:19 PM,03/22/2016 05:30:50 PM,03/22/2016 05:43:17 PM,03/22/2016 05:47:52 PM,Code 2 Transport,03/22/2016 05:59:30 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160822889-KM08 +121330164,KM12,12044245,Medical Incident,05/12/2012,05/12/2012,05/12/2012 12:15:47 PM,05/12/2012 12:17:27 PM,05/12/2012 12:17:56 PM,05/12/2012 12:18:35 PM,05/12/2012 12:22:45 PM,04/25/2016 01:58:43 PM,05/12/2012 12:35:40 PM,Code 2 Transport,05/12/2012 12:58:56 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",121330164-KM12 +113380224,AM04,11112046,Medical Incident,12/04/2011,12/04/2011,12/04/2011 02:06:43 PM,12/04/2011 02:07:16 PM,12/04/2011 02:07:35 PM,12/04/2011 02:08:25 PM,12/04/2011 02:15:32 PM,12/04/2011 02:23:49 PM,12/04/2011 02:50:17 PM,Code 2 Transport,12/04/2011 03:38:29 PM,300 Block of ANDOVER ST,SF,94110,B06,32,5732,3,3,3,false,,1,PRIVATE,2,6,9,Bernal Heights,"(37.7386851552754, -122.41655547195)",113380224-AM04 +110880159,E36,11029028,Other,03/29/2011,03/29/2011,03/29/2011 11:30:50 AM,03/29/2011 11:30:59 AM,03/29/2011 11:31:36 AM,04/25/2016 02:05:23 PM,03/29/2011 11:31:47 AM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 02:39:34 PM,MCALLISTER ST/POLK ST,SF,94102,B02,3,3113,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",110880159-E36 +140940245,E06,14031646,Structure Fire,04/04/2014,04/04/2014,04/04/2014 03:58:16 PM,04/04/2014 03:58:17 PM,04/04/2014 03:58:26 PM,04/04/2014 03:59:49 PM,04/04/2014 04:01:56 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Fire,04/04/2014 04:02:12 PM,19TH ST/CASTRO ST,SAN FRANCISCO,94114,B06,6,5437,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7592891718036, -122.434853683247)",140940245-E06 +133080384,E39,13104890,Structure Fire,11/04/2013,11/04/2013,11/04/2013 09:28:29 PM,11/04/2013 09:28:48 PM,11/04/2013 09:29:24 PM,11/04/2013 09:31:17 PM,11/04/2013 09:33:13 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/04/2013 09:58:11 PM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",133080384-E39 +160603836,76,16024131,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:34:48 PM,02/29/2016 11:34:48 PM,02/29/2016 11:38:02 PM,02/29/2016 11:38:23 PM,02/29/2016 11:45:36 PM,02/29/2016 11:56:58 PM,03/01/2016 12:06:27 AM,Code 2 Transport,03/01/2016 12:49:40 AM,24TH ST/POTRERO AV,San Francisco,94110,B10,9,2562,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",160603836-76 +123340014,E06,12110826,Structure Fire,11/29/2012,11/28/2012,11/29/2012 12:49:27 AM,11/29/2012 12:49:28 AM,11/29/2012 12:49:33 AM,11/29/2012 12:50:12 AM,11/29/2012 12:52:39 AM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/29/2012 12:52:44 AM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",123340014-E06 +103010023,AP,10095980,Other,10/28/2010,10/27/2010,10/28/2010 01:30:38 AM,10/28/2010 01:30:38 AM,10/28/2010 01:30:38 AM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Fire,10/28/2010 01:31:24 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",103010023-AP +160401776,85,16016026,Medical Incident,02/09/2016,02/09/2016,02/09/2016 12:53:20 PM,02/09/2016 12:53:56 PM,02/09/2016 12:54:43 PM,02/09/2016 12:54:54 PM,02/09/2016 12:57:58 PM,02/09/2016 01:11:48 PM,02/09/2016 01:18:42 PM,Code 2 Transport,02/09/2016 01:56:02 PM,VALENCIA ST/MCCOPPIN ST,San Francisco,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.771595101522, -122.422526345115)",160401776-85 +110490365,89,11016333,Medical Incident,02/18/2011,02/18/2011,02/18/2011 08:03:26 PM,02/18/2011 08:04:56 PM,02/18/2011 08:05:04 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,04/25/2016 02:06:01 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",110490365-89 +113190259,B03,11105998,Alarms,11/15/2011,11/15/2011,11/15/2011 03:01:19 PM,11/15/2011 03:02:56 PM,11/15/2011 03:03:37 PM,11/15/2011 03:04:52 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 03:07:45 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",113190259-B03 +160782675,64,16031083,Medical Incident,03/18/2016,03/18/2016,03/18/2016 04:45:14 PM,03/18/2016 04:45:57 PM,03/18/2016 04:47:52 PM,03/18/2016 04:47:52 PM,03/18/2016 04:49:01 PM,03/18/2016 05:00:40 PM,03/18/2016 05:23:28 PM,Code 2 Transport,03/18/2016 05:38:27 PM,800 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7828439870217, -122.421651290681)",160782675-64 +131730252,KM12,13058765,Medical Incident,06/22/2013,06/22/2013,06/22/2013 04:46:06 PM,06/22/2013 04:46:59 PM,06/22/2013 04:47:27 PM,06/22/2013 04:48:16 PM,06/22/2013 04:51:14 PM,06/22/2013 05:11:56 PM,06/22/2013 05:22:23 PM,Code 2 Transport,06/22/2013 05:44:31 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",131730252-KM12 +121910023,85,12063457,Medical Incident,07/09/2012,07/08/2012,07/09/2012 02:41:33 AM,07/09/2012 02:43:07 AM,07/09/2012 02:43:43 AM,07/09/2012 02:44:25 AM,07/09/2012 02:55:55 AM,07/09/2012 03:14:05 AM,07/09/2012 03:22:31 AM,Code 2 Transport,07/09/2012 03:44:50 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",121910023-85 +133170349,E34,13107875,Medical Incident,11/13/2013,11/13/2013,11/13/2013 08:22:04 PM,11/13/2013 08:22:37 PM,11/13/2013 08:23:06 PM,11/13/2013 08:23:49 PM,11/13/2013 08:25:52 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,Other,11/13/2013 08:30:23 PM,700 Block of 43RD AVE,SF,94121,B07,34,7271,3,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7744910684756, -122.50360753222)",133170349-E34 +123240367,E03,12107886,Medical Incident,11/19/2012,11/19/2012,11/19/2012 08:34:07 PM,11/19/2012 08:36:24 PM,11/19/2012 08:37:00 PM,11/19/2012 08:38:09 PM,11/19/2012 08:40:29 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/19/2012 08:45:54 PM,GOLDEN GATE AV/LEAVENWORTH ST,SF,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",123240367-E03 +131230322,E08,13041557,Medical Incident,05/03/2013,05/03/2013,05/03/2013 04:23:20 PM,05/03/2013 04:23:46 PM,05/03/2013 04:25:21 PM,04/25/2016 01:52:59 PM,05/03/2013 04:25:40 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 04:33:06 PM,900 Block of BRYANT ST,SF,94103,B03,8,2311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7729736182707, -122.406500466067)",131230322-E08 +103310277,E05,10106045,Medical Incident,11/27/2010,11/27/2010,11/27/2010 07:31:46 PM,11/27/2010 07:34:21 PM,11/27/2010 07:35:07 PM,11/27/2010 07:36:00 PM,11/27/2010 07:38:18 PM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 07:53:45 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",103310277-E05 +110170006,RC1,11005503,Traffic Collision,01/17/2011,01/16/2011,01/17/2011 12:57:46 AM,01/17/2011 12:57:47 AM,01/17/2011 12:58:04 AM,04/25/2016 02:06:33 PM,01/17/2011 01:03:10 AM,04/25/2016 02:06:33 PM,04/25/2016 02:06:33 PM,Other,01/17/2011 01:12:24 AM,HOWARD ST/4TH ST,SF,94103,B03,1,2214,3,3,3,true,,1,RESCUE CAPTAIN,3,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",110170006-RC1 +160440267,61,16017548,Medical Incident,02/13/2016,02/12/2016,02/13/2016 01:48:30 AM,02/13/2016 01:48:30 AM,02/13/2016 01:50:10 AM,02/13/2016 01:50:32 AM,02/13/2016 02:03:08 AM,02/13/2016 02:16:21 AM,02/13/2016 02:29:34 AM,Code 2 Transport,02/13/2016 03:17:53 AM,2600 Block of SLOAT BLVD,San Francisco,94116,B08,18,7642,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7356121761396, -122.50259029658)",160440267-61 +131110137,E11,13037359,Medical Incident,04/21/2013,04/21/2013,04/21/2013 12:14:03 PM,04/21/2013 12:14:27 PM,04/21/2013 12:14:48 PM,04/21/2013 12:15:52 PM,04/21/2013 12:17:54 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 12:40:40 PM,900 Block of SANCHEZ ST,SF,94114,B06,11,5514,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7535618485533, -122.429777129809)",131110137-E11 +123470010,54,12115872,Medical Incident,12/12/2012,12/11/2012,12/12/2012 12:45:19 AM,12/12/2012 12:45:58 AM,12/12/2012 12:46:17 AM,12/12/2012 12:46:45 AM,12/12/2012 12:55:24 AM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Patient Declined Transport,12/12/2012 01:08:44 AM,2600 Block of CLEMENT ST,SF,94121,B07,14,7221,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7819538722816, -122.487556413238)",123470010-54 +121140197,E42,12037847,Medical Incident,04/23/2012,04/23/2012,04/23/2012 01:50:03 PM,04/23/2012 01:51:03 PM,04/23/2012 01:51:38 PM,04/23/2012 01:53:03 PM,04/23/2012 01:55:00 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 02:09:01 PM,400 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7394012528109, -122.406844256277)",121140197-E42 +121950233,87,12064949,Traffic Collision,07/13/2012,07/13/2012,07/13/2012 04:40:30 PM,07/13/2012 04:43:53 PM,07/13/2012 04:44:19 PM,07/13/2012 04:45:32 PM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/13/2012 04:52:55 PM,SAN BRUNO AV/HALE ST,SF,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7329632503873, -122.405909421399)",121950233-87 +132160083,88,13072905,Medical Incident,08/04/2013,08/04/2013,08/04/2013 08:14:45 AM,08/04/2013 08:15:06 AM,08/04/2013 08:16:55 AM,08/04/2013 08:18:26 AM,08/04/2013 08:24:59 AM,08/04/2013 08:48:18 AM,08/04/2013 09:13:00 AM,Code 2 Transport,08/04/2013 09:32:40 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",132160083-88 +132480317,E32,13083795,Other,09/05/2013,09/05/2013,09/05/2013 06:01:14 PM,09/05/2013 06:01:39 PM,09/05/2013 06:03:34 PM,09/05/2013 06:05:02 PM,09/05/2013 06:05:18 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Fire,09/05/2013 06:14:30 PM,100 Block of HIGHLAND AVE,SF,94110,B06,32,5646,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7372540256563, -122.422102908674)",132480317-E32 +160660762,AM02,16026313,Medical Incident,03/06/2016,03/06/2016,03/06/2016 08:22:28 AM,03/06/2016 08:22:28 AM,03/06/2016 08:23:14 AM,03/06/2016 08:24:14 AM,03/06/2016 09:17:42 AM,03/06/2016 09:18:09 AM,03/06/2016 09:30:08 AM,Code 2 Transport,03/06/2016 10:12:37 AM,6TH ST/STEVENSON ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,South of Market,"(37.7817543267261, -122.409693263148)",160660762-AM02 +103520034,E19,10112842,Medical Incident,12/18/2010,12/17/2010,12/18/2010 02:36:29 AM,12/18/2010 02:37:12 AM,12/18/2010 02:37:49 AM,12/18/2010 02:39:36 AM,12/18/2010 02:52:16 AM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,Other,12/18/2010 02:59:37 AM,500 Block of ARBALLO DR,SF,94132,B08,19,8583,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7169177956994, -122.483309155838)",103520034-E19 +111570275,AM08,11051981,Medical Incident,06/06/2011,06/06/2011,06/06/2011 04:39:02 PM,06/06/2011 04:39:33 PM,06/06/2011 04:39:45 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/06/2011 04:40:06 PM,600 Block of POST ST,SF,94102,B01,3,1451,E,E,3,false,,1,PRIVATE,4,1,3,Tenderloin,"(37.7877770164282, -122.41201048788)",111570275-AM08 +160803026,64,16031923,Medical Incident,03/20/2016,03/20/2016,03/20/2016 07:12:16 PM,03/20/2016 07:13:16 PM,03/20/2016 07:13:36 PM,03/20/2016 07:13:54 PM,03/20/2016 07:18:27 PM,03/20/2016 07:48:56 PM,03/20/2016 07:59:28 PM,Code 3 Transport,03/20/2016 09:19:35 PM,700 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7794115468887, -122.425174050161)",160803026-64 +121010297,78,12033579,Medical Incident,04/10/2012,04/10/2012,04/10/2012 06:17:51 PM,04/10/2012 06:19:42 PM,04/10/2012 06:19:54 PM,04/10/2012 06:26:01 PM,04/10/2012 06:26:03 PM,04/10/2012 06:39:15 PM,04/10/2012 06:50:37 PM,Code 2 Transport,04/10/2012 07:19:46 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",121010297-78 +130270260,T15,13009366,Structure Fire,01/27/2013,01/27/2013,01/27/2013 04:44:59 PM,01/27/2013 04:46:45 PM,01/27/2013 04:46:54 PM,01/27/2013 04:47:04 PM,01/27/2013 04:49:47 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/27/2013 06:48:33 PM,800 Block of BRAZIL AVE,SF,94112,B09,43,6163,3,3,3,false,Fire,1,TRUCK,1,9,11,Excelsior,"(37.7213991058059, -122.428074087707)",130270260-T15 +120110015,E07,12003676,Outside Fire,01/11/2012,01/10/2012,01/11/2012 02:03:44 AM,01/11/2012 02:04:53 AM,01/11/2012 02:05:01 AM,01/11/2012 02:07:00 AM,01/11/2012 02:08:58 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 02:10:53 AM,3300 Block of 18TH ST,SF,94110,B02,7,5423,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7618139428638, -122.418810045905)",120110015-E07 +130330005,E41,13011126,Traffic Collision,02/02/2013,02/01/2013,02/02/2013 12:20:54 AM,02/02/2013 12:21:13 AM,02/02/2013 12:21:27 AM,02/02/2013 12:22:29 AM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/02/2013 12:23:08 AM,LEAVENWORTH ST/ELLIS ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",130330005-E41 +120210377,AM18,12007291,Medical Incident,01/21/2012,01/21/2012,01/21/2012 08:40:16 PM,01/21/2012 08:40:51 PM,01/21/2012 08:41:18 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/21/2012 08:42:14 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",120210377-AM18 +160621231,85,16024644,Traffic Collision,03/02/2016,03/02/2016,03/02/2016 10:32:44 AM,03/02/2016 10:32:44 AM,03/02/2016 10:33:19 AM,03/02/2016 10:33:27 AM,03/02/2016 10:42:36 AM,03/02/2016 10:57:20 AM,03/02/2016 11:21:27 AM,Code 2 Transport,03/02/2016 11:57:48 AM,600 Block of 7TH AVE,San Francisco,94118,B07,31,7132,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7762499153191, -122.465079518655)",160621231-85 +112060040,E36,11067956,Medical Incident,07/25/2011,07/24/2011,07/25/2011 04:29:27 AM,07/25/2011 04:31:27 AM,07/25/2011 04:32:03 AM,07/25/2011 04:34:01 AM,07/25/2011 04:36:09 AM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/25/2011 04:41:09 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",112060040-E36 +160700240,KM03,16027711,Medical Incident,03/10/2016,03/09/2016,03/10/2016 02:39:10 AM,03/10/2016 02:43:16 AM,03/10/2016 02:45:10 AM,03/10/2016 02:47:13 AM,03/10/2016 02:51:08 AM,03/10/2016 03:15:30 AM,03/10/2016 03:23:53 AM,Fire,03/10/2016 04:13:32 AM,400 Block of STANYAN ST,San Francisco,94117,B07,21,4556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",160700240-KM03 +160770387,64,16030441,Medical Incident,03/17/2016,03/16/2016,03/17/2016 04:32:41 AM,03/17/2016 04:34:22 AM,03/17/2016 04:34:40 AM,03/17/2016 04:35:15 AM,03/17/2016 04:42:54 AM,03/17/2016 04:51:23 AM,03/17/2016 04:57:23 AM,Code 2 Transport,03/17/2016 05:29:13 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160770387-64 +121610130,E12,12053258,Structure Fire,06/09/2012,06/09/2012,06/09/2012 10:33:07 AM,06/09/2012 10:33:59 AM,06/09/2012 10:34:13 AM,04/25/2016 01:58:18 PM,06/09/2012 10:38:55 AM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,06/09/2012 12:18:10 PM,700 Block of 2ND AVE,SF,94118,B07,31,7121,3,3,3,true,Fire,1,ENGINE,7,7,1,Inner Richmond,"(37.7748698807934, -122.459468224351)",121610130-E12 +103210064,93,10102804,Medical Incident,11/17/2010,11/16/2010,11/17/2010 06:43:57 AM,11/17/2010 06:44:31 AM,11/17/2010 06:44:45 AM,11/17/2010 06:45:16 AM,04/25/2016 02:07:33 PM,04/25/2016 02:07:33 PM,04/25/2016 02:07:33 PM,Other,11/17/2010 06:45:30 AM,300 Block of BATTERY ST,SF,94111,B01,13,1161,3,3,3,true,,1,MEDIC,3,1,3,Chinatown,"(37.7947853577882, -122.400352669798)",103210064-93 +112000310,81,11066057,Structure Fire,07/19/2011,07/19/2011,07/19/2011 07:35:02 PM,07/19/2011 07:35:02 PM,07/19/2011 07:36:19 PM,07/19/2011 07:41:34 PM,07/19/2011 07:53:57 PM,07/19/2011 08:07:58 PM,07/19/2011 08:33:31 PM,Code 2 Transport,07/19/2011 09:01:24 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112000310-81 +160382154,KM05,16015256,Medical Incident,02/07/2016,02/07/2016,02/07/2016 02:32:22 PM,02/07/2016 02:33:29 PM,02/07/2016 02:34:20 PM,02/07/2016 02:34:47 PM,02/07/2016 02:47:32 PM,02/07/2016 03:17:26 PM,02/07/2016 03:34:21 PM,Code 2 Transport,02/07/2016 04:07:44 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160382154-KM05 +132430159,E43,13081967,Medical Incident,08/31/2013,08/31/2013,08/31/2013 10:44:37 AM,08/31/2013 10:46:22 AM,08/31/2013 10:51:10 AM,08/31/2013 10:53:51 AM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/31/2013 10:59:01 AM,0 Block of COTTER ST,SF,94112,B09,15,8264,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7277213848716, -122.433906686698)",132430159-E43 +110870250,KM04,11028772,Medical Incident,03/28/2011,03/28/2011,03/28/2011 03:17:57 PM,03/28/2011 03:18:13 PM,03/28/2011 03:18:41 PM,03/28/2011 03:19:14 PM,03/28/2011 03:21:47 PM,03/28/2011 03:30:01 PM,03/28/2011 03:34:40 PM,Code 2 Transport,03/28/2011 03:51:19 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110870250-KM04 +103110070,E07,10099634,Outside Fire,11/07/2010,11/06/2010,11/07/2010 02:02:35 AM,11/07/2010 02:03:31 AM,11/07/2010 02:03:41 AM,11/07/2010 02:05:09 AM,11/07/2010 02:07:24 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 02:14:30 AM,SOUTH VAN NESS AV/24TH ST,SF,94110,B06,7,5511,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7523727894276, -122.416265511485)",103110070-E07 +132590137,B02,13087576,Structure Fire,09/16/2013,09/16/2013,09/16/2013 10:56:27 AM,09/16/2013 10:56:27 AM,09/16/2013 10:57:34 AM,09/16/2013 10:57:44 AM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Fire,09/16/2013 11:02:48 AM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",132590137-B02 +160903347,82,16035852,Medical Incident,03/30/2016,03/30/2016,03/30/2016 07:03:36 PM,03/30/2016 07:05:49 PM,03/30/2016 07:05:58 PM,03/30/2016 07:06:26 PM,03/30/2016 07:17:14 PM,03/30/2016 07:26:31 PM,03/30/2016 07:50:05 PM,Code 2 Transport,03/30/2016 08:36:19 PM,1700 Block of EDDY ST,San Francisco,94115,B05,5,4133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7808513149724, -122.436427287945)",160903347-82 +133310106,87,13112305,Medical Incident,11/27/2013,11/27/2013,11/27/2013 09:50:22 AM,11/27/2013 09:51:37 AM,11/27/2013 09:52:08 AM,11/27/2013 09:52:14 AM,11/27/2013 09:55:33 AM,11/27/2013 10:06:32 AM,11/27/2013 10:12:06 AM,Code 2 Transport,11/27/2013 10:47:05 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",133310106-87 +160581008,75,16023056,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:07:10 AM,02/27/2016 09:07:10 AM,02/27/2016 09:08:24 AM,02/27/2016 09:08:48 AM,02/27/2016 09:13:38 AM,02/27/2016 09:25:49 AM,02/27/2016 09:28:58 AM,Code 2 Transport,02/27/2016 10:21:47 AM,POLK ST/POST ST,San Francisco,94109,B02,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",160581008-75 +110840227,E23,11027706,Alarms,03/25/2011,03/25/2011,03/25/2011 02:00:49 PM,03/25/2011 02:02:59 PM,03/25/2011 02:03:21 PM,03/25/2011 02:04:15 PM,03/25/2011 02:07:24 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 02:28:00 PM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7444820263748, -122.506894604858)",110840227-E23 +131210359,E01,13040805,Medical Incident,05/01/2013,05/01/2013,05/01/2013 08:15:55 PM,05/01/2013 08:16:15 PM,05/01/2013 08:17:31 PM,05/01/2013 08:18:56 PM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Other,05/01/2013 08:20:36 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",131210359-E01 +160110242,71,16004242,Medical Incident,01/11/2016,01/10/2016,01/11/2016 02:43:54 AM,01/11/2016 02:45:22 AM,01/11/2016 02:45:57 AM,01/11/2016 02:46:11 AM,01/11/2016 02:50:11 AM,01/11/2016 03:04:26 AM,01/11/2016 03:26:43 AM,Code 2 Transport,01/11/2016 03:53:32 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160110242-71 +123390004,T11,12112918,Structure Fire,12/04/2012,12/03/2012,12/04/2012 12:16:07 AM,12/04/2012 12:16:08 AM,12/04/2012 12:16:19 AM,12/04/2012 12:17:44 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 12:22:19 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",123390004-T11 +111460252,E36,11048540,Medical Incident,05/26/2011,05/26/2011,05/26/2011 05:24:49 PM,05/26/2011 05:25:47 PM,05/26/2011 05:26:54 PM,05/26/2011 05:29:01 PM,05/26/2011 05:29:37 PM,04/25/2016 02:04:26 PM,04/25/2016 02:04:26 PM,Other,05/26/2011 05:44:39 PM,1200 Block of MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",111460252-E36 +132750182,KM01,13093414,Medical Incident,10/02/2013,10/02/2013,10/02/2013 12:28:52 PM,10/02/2013 12:30:20 PM,10/02/2013 12:31:25 PM,10/02/2013 12:34:03 PM,10/02/2013 12:47:30 PM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,No Merit,10/02/2013 01:14:04 PM,0 Block of DORE ST,SF,94103,B02,36,2342,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",132750182-KM01 +122720121,AM12,12089693,Medical Incident,09/28/2012,09/28/2012,09/28/2012 11:05:08 AM,09/28/2012 11:06:53 AM,09/28/2012 11:07:06 AM,09/28/2012 11:07:34 AM,09/28/2012 11:14:58 AM,09/28/2012 11:44:06 AM,09/28/2012 12:02:55 PM,Code 2 Transport,09/28/2012 12:32:55 PM,RANKIN ST/PALOU AV,SF,94124,B10,42,6431,1,1,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7382147337371, -122.398378464786)",122720121-AM12 +112260339,81,11074810,Medical Incident,08/14/2011,08/14/2011,08/14/2011 09:07:12 PM,08/14/2011 09:09:52 PM,08/14/2011 09:09:58 PM,04/25/2016 02:03:10 PM,08/14/2011 09:17:33 PM,08/14/2011 09:31:22 PM,08/14/2011 09:39:06 PM,Code 3 Transport,08/14/2011 10:11:13 PM,600 Block of SPRUCE ST,SF,94118,B05,10,4374,3,3,3,true,,1,MEDIC,2,5,2,Presidio Heights,"(37.782894976739, -122.453342258883)",112260339-81 +120780274,E17,12025948,Medical Incident,03/18/2012,03/18/2012,03/18/2012 03:39:32 PM,03/18/2012 03:40:45 PM,03/18/2012 03:41:23 PM,03/18/2012 03:42:31 PM,03/18/2012 03:45:18 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/18/2012 03:57:02 PM,0 Block of LATONA ST,SF,94124,B10,17,6514,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316182572491, -122.392627218053)",120780274-E17 +131350029,88,13045440,Medical Incident,05/15/2013,05/14/2013,05/15/2013 05:37:44 AM,05/15/2013 05:39:23 AM,05/15/2013 05:39:37 AM,05/15/2013 05:39:49 AM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,Other,05/15/2013 05:43:02 AM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",131350029-88 +113620296,E07,11120352,Alarms,12/28/2011,12/28/2011,12/28/2011 06:05:17 PM,12/28/2011 06:07:40 PM,12/28/2011 06:08:02 PM,12/28/2011 06:09:19 PM,12/28/2011 06:11:38 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 06:28:35 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7642444942899, -122.419521866555)",113620296-E07 +140190353,E43,14006685,Medical Incident,01/19/2014,01/19/2014,01/19/2014 09:59:59 PM,01/19/2014 10:01:07 PM,01/19/2014 10:01:44 PM,01/19/2014 10:02:49 PM,01/19/2014 10:04:27 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/19/2014 10:15:00 PM,300 Block of BRAZIL AVE,SF,94112,B09,43,6127,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7233114402099, -122.432068293948)",140190353-E43 +160323285,78,16012737,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:10:58 PM,02/01/2016 08:10:58 PM,02/01/2016 08:10:58 PM,02/01/2016 08:10:58 PM,02/01/2016 08:10:58 PM,02/01/2016 08:20:31 PM,02/01/2016 08:29:13 PM,Code 2 Transport,02/01/2016 09:14:26 PM,1100 Block of MISSION ST,San Francisco,94103,B99,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160323285-78 +122610099,E01,12086165,Medical Incident,09/17/2012,09/17/2012,09/17/2012 09:42:11 AM,09/17/2012 09:42:44 AM,09/17/2012 09:43:43 AM,04/25/2016 01:56:44 PM,09/17/2012 09:46:28 AM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,Fire,09/17/2012 10:02:32 AM,GOLDEN GATE AV/TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",122610099-E01 +160160560,52,16006302,Medical Incident,01/16/2016,01/15/2016,01/16/2016 04:40:37 AM,01/16/2016 04:43:14 AM,01/16/2016 04:43:40 AM,01/16/2016 04:44:01 AM,01/16/2016 05:09:30 AM,01/16/2016 05:18:38 AM,01/16/2016 05:32:39 AM,Code 2 Transport,01/16/2016 06:02:15 AM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",160160560-52 +130460386,E21,13015774,Structure Fire,02/15/2013,02/15/2013,02/15/2013 07:17:49 PM,02/15/2013 07:18:44 PM,02/15/2013 07:18:59 PM,02/15/2013 07:19:46 PM,02/15/2013 07:22:42 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 07:37:49 PM,0 Block of LUPINE AVE,SF,94118,B05,10,4371,3,3,3,false,Alarm,1,ENGINE,3,5,2,Presidio Heights,"(37.784200403274, -122.449430414233)",130460386-E21 +121920309,E29,12064030,Medical Incident,07/10/2012,07/10/2012,07/10/2012 07:27:30 PM,07/10/2012 07:38:33 PM,07/10/2012 07:38:48 PM,07/10/2012 07:39:33 PM,07/10/2012 07:40:39 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 07:43:28 PM,400 Block of SAN BRUNO AVE,SF,94110,B02,29,2421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Potrero Hill,"(37.7639386424608, -122.405469974111)",121920309-E29 +112480175,72,11081781,Medical Incident,09/05/2011,09/05/2011,09/05/2011 12:20:23 PM,09/05/2011 12:21:16 PM,09/05/2011 12:21:37 PM,09/05/2011 12:21:41 PM,09/05/2011 12:23:23 PM,09/05/2011 12:36:17 PM,09/05/2011 12:44:48 PM,Code 2 Transport,09/05/2011 12:57:47 PM,600 Block of DUBOCE AVE,SF,94117,B05,6,5131,2,2,2,true,,1,MEDIC,1,5,8,Haight Ashbury,"(37.7692009093314, -122.434236954469)",112480175-72 +110170211,E01,11005687,Medical Incident,01/17/2011,01/17/2011,01/17/2011 04:50:36 PM,01/17/2011 04:50:58 PM,01/17/2011 04:51:34 PM,01/17/2011 04:52:53 PM,01/17/2011 04:55:26 PM,04/25/2016 02:06:33 PM,04/25/2016 02:06:33 PM,No Merit,01/17/2011 04:57:29 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",110170211-E01 +110880242,E51,11029093,Fuel Spill,03/29/2011,03/29/2011,03/29/2011 03:23:38 PM,03/29/2011 03:29:03 PM,03/29/2011 03:29:27 PM,03/29/2011 03:30:58 PM,03/29/2011 03:32:49 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Fire,03/29/2011 03:40:11 PM,1000 Block of TORNEY AVE,PR,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8000535374807, -122.452241149)",110880242-E51 +131020343,E21,13034418,Structure Fire,04/12/2013,04/12/2013,04/12/2013 10:22:14 PM,04/12/2013 10:24:02 PM,04/12/2013 10:24:18 PM,04/12/2013 10:26:01 PM,04/12/2013 10:28:05 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/12/2013 10:30:24 PM,0 Block of HENRY ST,SF,94114,B05,6,5212,3,3,3,true,Alarm,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7667838886869, -122.432228457227)",131020343-E21 +132200069,AM24,13074222,Medical Incident,08/08/2013,08/07/2013,08/08/2013 07:29:57 AM,08/08/2013 07:30:49 AM,08/08/2013 07:32:16 AM,08/08/2013 07:34:46 AM,08/08/2013 07:35:52 AM,08/08/2013 07:52:07 AM,08/08/2013 08:01:00 AM,Code 2 Transport,08/08/2013 08:34:32 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",132200069-AM24 +103390115,E19,10108470,Medical Incident,12/05/2010,12/05/2010,12/05/2010 09:18:47 AM,12/05/2010 09:20:42 AM,12/05/2010 09:21:01 AM,12/05/2010 09:21:22 AM,12/05/2010 09:22:45 AM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Other,12/05/2010 09:31:00 AM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",103390115-E19 +133190354,75,13108528,Medical Incident,11/15/2013,11/15/2013,11/15/2013 09:04:19 PM,11/15/2013 09:05:02 PM,11/15/2013 09:05:34 PM,11/15/2013 09:06:13 PM,11/15/2013 09:09:08 PM,11/15/2013 09:19:54 PM,11/15/2013 09:29:54 PM,Code 2 Transport,11/15/2013 09:52:58 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",133190354-75 +160490589,77,16019633,Medical Incident,02/18/2016,02/17/2016,02/18/2016 07:47:34 AM,02/18/2016 07:48:05 AM,02/18/2016 07:49:11 AM,02/18/2016 07:49:30 AM,02/18/2016 08:08:24 AM,02/18/2016 08:35:09 AM,02/18/2016 08:53:50 AM,Code 2 Transport,02/18/2016 09:21:11 AM,5500 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7273180308836, -122.393270734468)",160490589-77 +132610372,87,13088531,Traffic Collision,09/18/2013,09/18/2013,09/18/2013 07:40:18 PM,09/18/2013 07:42:18 PM,09/18/2013 07:42:34 PM,09/18/2013 07:42:56 PM,09/18/2013 07:47:00 PM,09/18/2013 08:19:24 PM,09/18/2013 08:31:55 PM,Code 2 Transport,09/18/2013 09:07:24 PM,WEST PORTAL AV/VICENTE ST,SF,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7397235005071, -122.466991014067)",132610372-87 +160632172,KM01,16025112,Medical Incident,03/03/2016,03/03/2016,03/03/2016 02:49:28 PM,03/03/2016 02:51:13 PM,03/03/2016 02:52:40 PM,03/03/2016 03:05:15 PM,03/03/2016 03:05:15 PM,03/03/2016 03:21:51 PM,03/03/2016 03:50:32 PM,Code 2 Transport,03/03/2016 04:28:29 PM,200 Block of 30TH ST,San Francisco,94131,B06,11,5574,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Glen Park,"(37.742133681941, -122.425018174758)",160632172-KM01 +140840292,E06,14028406,Medical Incident,03/25/2014,03/25/2014,03/25/2014 07:04:17 PM,03/25/2014 07:04:43 PM,03/25/2014 07:09:00 PM,03/25/2014 07:10:15 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/25/2014 07:13:18 PM,MISSION ST/18TH ST,SAN FRANCISCO,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7618358554116, -122.41935926846)",140840292-E06 +140590339,82,14020029,Medical Incident,02/28/2014,02/28/2014,02/28/2014 07:37:50 PM,02/28/2014 07:39:32 PM,02/28/2014 07:39:56 PM,02/28/2014 07:40:03 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Code 2 Transport,04/25/2016 01:47:58 PM,200 Block of FRONT ST,SF,94111,B01,13,1141,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7940552772543, -122.398993666371)",140590339-82 +123610212,B09,12120827,Structure Fire,12/26/2012,12/26/2012,12/26/2012 01:50:33 PM,12/26/2012 01:50:56 PM,12/26/2012 01:51:13 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 01:53:12 PM,1400 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,false,Alarm,1,CHIEF,11,10,10,Bayview Hunters Point,"(37.7287791192352, -122.388524913867)",123610212-B09 +103420109,KM05,10109412,Medical Incident,12/08/2010,12/08/2010,12/08/2010 08:33:01 AM,12/08/2010 08:33:46 AM,12/08/2010 08:34:01 AM,12/08/2010 08:34:36 AM,12/08/2010 08:38:03 AM,12/08/2010 08:47:54 AM,12/08/2010 09:06:43 AM,Code 2 Transport,12/08/2010 09:39:14 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",103420109-KM05 +102380226,55,10075102,Medical Incident,08/26/2010,08/26/2010,08/26/2010 02:10:10 PM,08/26/2010 02:11:26 PM,08/26/2010 02:11:38 PM,08/26/2010 02:11:51 PM,08/26/2010 02:19:00 PM,08/26/2010 02:26:29 PM,08/26/2010 02:35:12 PM,Code 2 Transport,08/26/2010 03:04:45 PM,400 Block of JEFFERSON ST,SF,94133,B01,28,1524,3,3,3,true,,1,MEDIC,3,1,2,Russian Hill,"(37.8077508336049, -122.419925741179)",102380226-55 +160902322,83,16035760,Medical Incident,03/30/2016,03/30/2016,03/30/2016 02:54:51 PM,03/30/2016 02:54:51 PM,03/30/2016 02:56:28 PM,03/30/2016 02:56:37 PM,03/30/2016 03:07:02 PM,03/30/2016 03:18:19 PM,03/30/2016 03:42:36 PM,Code 2 Transport,03/30/2016 03:59:19 PM,MISSION ST/OLIVER ST,San Francisco,94112,B99,33,6212,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7095433695086, -122.450498927736)",160902322-83 +121300036,B02,12043139,Gas Leak (Natural and LP Gases),05/09/2012,05/08/2012,05/09/2012 03:06:06 AM,05/09/2012 03:08:52 AM,05/09/2012 03:09:43 AM,05/09/2012 03:10:44 AM,05/09/2012 03:13:42 AM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Fire,05/09/2012 03:22:26 AM,0 Block of PEARL ST,SF,94103,B02,36,3416,3,3,3,false,Alarm,1,CHIEF,1,2,8,Mission,"(37.771019262163, -122.423870548901)",121300036-B02 +160341292,61,16013334,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:07:11 AM,02/03/2016 11:08:10 AM,02/03/2016 11:08:24 AM,02/03/2016 11:09:54 AM,02/03/2016 11:09:54 AM,02/03/2016 11:34:46 AM,02/03/2016 11:58:47 AM,Code 2 Transport,02/03/2016 12:37:48 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160341292-61 +160372465,KM04,16014761,Medical Incident,02/06/2016,02/06/2016,02/06/2016 03:32:30 PM,02/06/2016 03:34:13 PM,02/06/2016 03:34:39 PM,02/06/2016 03:35:12 PM,02/06/2016 03:48:34 PM,02/06/2016 04:11:47 PM,02/06/2016 04:57:38 PM,Code 2 Transport,02/06/2016 05:21:57 PM,100 Block of LOEHR ST,San Francisco,94134,B09,44,6263,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.71262387882, -122.413673241478)",160372465-KM04 +160851230,54,16033713,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:11:32 AM,03/25/2016 10:12:18 AM,03/25/2016 10:13:37 AM,03/25/2016 10:13:50 AM,03/25/2016 10:21:07 AM,03/25/2016 10:33:15 AM,03/25/2016 10:50:08 AM,Code 2 Transport,03/25/2016 11:18:33 AM,100 Block of BERRY ST,San Francisco,94158,B03,8,2171,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",160851230-54 +132830371,E08,13096463,Medical Incident,10/10/2013,10/10/2013,10/10/2013 11:41:17 PM,10/10/2013 11:43:11 PM,10/10/2013 11:43:23 PM,10/10/2013 11:44:33 PM,10/10/2013 11:46:51 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/10/2013 11:52:16 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",132830371-E08 +140460367,E03,14015825,Medical Incident,02/15/2014,02/15/2014,02/15/2014 10:06:52 PM,02/15/2014 10:08:05 PM,02/15/2014 10:09:59 PM,02/15/2014 10:10:34 PM,02/15/2014 10:13:26 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 10:17:41 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",140460367-E03 +132320119,B09,13078301,Alarms,08/20/2013,08/20/2013,08/20/2013 10:34:10 AM,08/20/2013 10:35:30 AM,08/20/2013 10:36:00 AM,08/20/2013 10:36:42 AM,08/20/2013 10:42:22 AM,04/25/2016 01:51:12 PM,04/25/2016 01:51:12 PM,Other,08/20/2013 10:45:00 AM,1200 Block of OCEAN AVE,SF,94112,B09,15,8472,3,3,3,false,Alarm,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7238590120011, -122.455615861538)",132320119-B09 +132200361,68,13074469,Medical Incident,08/08/2013,08/08/2013,08/08/2013 10:22:13 PM,08/08/2013 10:23:42 PM,08/08/2013 10:24:27 PM,08/08/2013 10:27:14 PM,08/08/2013 10:43:30 PM,08/08/2013 10:55:55 PM,08/08/2013 11:12:25 PM,Code 2 Transport,08/08/2013 11:36:31 PM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,2,2,2,false,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7209580935201, -122.387166280374)",132200361-68 +121360021,RC3,12045080,Medical Incident,05/15/2012,05/14/2012,05/15/2012 04:23:57 AM,05/15/2012 04:25:23 AM,05/15/2012 04:25:45 AM,05/15/2012 04:28:11 AM,05/15/2012 04:32:30 AM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/15/2012 04:44:59 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",121360021-RC3 +103250332,83,10104310,Medical Incident,11/21/2010,11/21/2010,11/21/2010 09:38:54 PM,11/21/2010 09:39:57 PM,11/21/2010 09:40:45 PM,11/21/2010 09:41:32 PM,11/21/2010 09:46:19 PM,11/21/2010 10:08:14 PM,11/21/2010 10:35:31 PM,Code 2 Transport,11/21/2010 11:09:12 PM,400 Block of 46TH AVE,SF,94121,B07,34,7274,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7795190686878, -122.507335897981)",103250332-83 +160890825,78,16035245,Medical Incident,03/29/2016,03/29/2016,03/29/2016 08:39:13 AM,03/29/2016 08:41:36 AM,03/29/2016 08:41:54 AM,03/29/2016 08:43:49 AM,03/29/2016 09:08:56 AM,03/29/2016 09:08:57 AM,03/29/2016 09:40:15 AM,Code 2 Transport,03/29/2016 10:10:18 AM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",160890825-78 +123540284,E36,12118529,Medical Incident,12/19/2012,12/19/2012,12/19/2012 04:51:58 PM,12/19/2012 04:54:08 PM,12/19/2012 04:54:54 PM,12/19/2012 04:56:31 PM,12/19/2012 04:58:08 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 05:02:25 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",123540284-E36 +111910069,94,11063031,Medical Incident,07/10/2011,07/09/2011,07/10/2011 06:39:21 AM,07/10/2011 06:43:10 AM,07/10/2011 06:43:28 AM,07/10/2011 06:43:43 AM,07/10/2011 06:48:06 AM,07/10/2011 07:12:07 AM,07/10/2011 07:29:07 AM,Code 2 Transport,07/10/2011 07:42:13 AM,1500 Block of GRANT AVE,SF,94133,B01,28,1265,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8012484334227, -122.407775929611)",111910069-94 +160550713,AM02,16021916,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:09:30 AM,02/24/2016 08:09:30 AM,02/24/2016 08:11:03 AM,02/24/2016 08:12:25 AM,02/24/2016 08:14:05 AM,02/24/2016 08:24:14 AM,02/24/2016 08:31:51 AM,Code 2 Transport,02/24/2016 09:03:27 AM,JACKSON ST/LARKIN ST,San Francisco,94109,B01,41,1633,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7943537791838, -122.419752719731)",160550713-AM02 +110580226,B04,11019119,Alarms,02/27/2011,02/27/2011,02/27/2011 03:13:57 PM,02/27/2011 03:14:53 PM,02/27/2011 03:16:08 PM,02/27/2011 03:17:09 PM,02/27/2011 03:21:07 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Other,02/27/2011 03:24:36 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,CHIEF,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",110580226-B04 +111250181,99,11041357,Citizen Assist / Service Call,05/05/2011,05/05/2011,05/05/2011 12:35:49 PM,05/05/2011 12:37:54 PM,05/05/2011 12:38:48 PM,05/05/2011 12:55:06 PM,05/05/2011 01:01:15 PM,05/05/2011 01:28:46 PM,05/05/2011 01:51:55 PM,Code 2 Transport,05/05/2011 02:30:55 PM,1800 Block of 25TH AVE,SF,94122,B08,18,7455,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7530220350499, -122.482903541099)",111250181-99 +160162256,77,16006474,Medical Incident,01/16/2016,01/16/2016,01/16/2016 03:38:35 PM,01/16/2016 03:38:35 PM,01/16/2016 03:38:50 PM,01/16/2016 03:38:59 PM,01/16/2016 04:03:41 PM,01/16/2016 04:24:57 PM,01/16/2016 04:37:53 PM,Code 2 Transport,01/16/2016 05:30:41 PM,14TH ST/BELCHER ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7676621207067, -122.430081455189)",160162256-77 +110470326,T16,11015650,Structure Fire,02/16/2011,02/16/2011,02/16/2011 07:44:46 PM,02/16/2011 07:45:55 PM,02/16/2011 07:46:09 PM,02/16/2011 07:48:04 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 07:52:47 PM,2100 Block of HYDE ST,SF,94109,B01,41,1612,3,3,3,false,,1,TRUCK,3,1,2,Russian Hill,"(37.8006069914306, -122.41926087104)",110470326-T16 +103270030,T09,10104646,Structure Fire,11/23/2010,11/22/2010,11/23/2010 05:09:44 AM,11/23/2010 05:09:44 AM,11/23/2010 05:10:02 AM,11/23/2010 05:11:15 AM,11/23/2010 05:13:17 AM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 05:13:50 AM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5622,3,3,3,true,,1,TRUCK,1,6,9,Mission,"(37.7483773808375, -122.412579951922)",103270030-T09 +102890355,E20,10092322,Medical Incident,10/16/2010,10/16/2010,10/16/2010 09:36:49 PM,10/16/2010 09:37:15 PM,10/16/2010 09:37:47 PM,10/16/2010 09:38:52 PM,10/16/2010 09:43:30 PM,04/25/2016 02:08:04 PM,10/16/2010 10:08:10 PM,Other,10/16/2010 10:34:48 PM,500 Block of NORIEGA ST,SF,94122,B08,22,7343,E,E,3,true,,1,ENGINE,3,8,7,Inner Sunset,"(37.7554074162371, -122.46943709962)",102890355-E20 +103460231,T01,10110990,Structure Fire,12/12/2010,12/12/2010,12/12/2010 02:23:22 PM,12/12/2010 02:23:22 PM,12/12/2010 02:23:51 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 02:25:09 PM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,3,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",103460231-T01 +132090057,AM22,13070587,Medical Incident,07/28/2013,07/27/2013,07/28/2013 03:01:06 AM,07/28/2013 03:02:17 AM,07/28/2013 03:02:57 AM,07/28/2013 03:03:28 AM,04/25/2016 01:51:36 PM,07/28/2013 03:24:50 AM,07/28/2013 03:36:20 AM,Code 2 Transport,07/28/2013 04:19:15 AM,2ND ST/HOWARD ST,SF,94105,B03,1,2146,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7867789486792, -122.398256963317)",132090057-AM22 +102450248,E19,10077368,Medical Incident,09/02/2010,09/02/2010,09/02/2010 01:10:43 PM,09/02/2010 01:11:11 PM,09/02/2010 01:11:41 PM,09/02/2010 01:12:31 PM,09/02/2010 01:15:32 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Other,09/02/2010 01:22:31 PM,1500 Block of SLOAT BLVD,SF,94132,B08,19,7552,3,3,3,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",102450248-E19 +140850181,T02,14028627,Elevator / Escalator Rescue,03/26/2014,03/26/2014,03/26/2014 01:02:57 PM,03/26/2014 01:06:26 PM,03/26/2014 01:06:35 PM,03/26/2014 01:07:49 PM,03/26/2014 01:11:22 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Fire,03/26/2014 01:29:42 PM,500 Block of MASON ST,SAN FRANCISCO,94102,B01,3,1412,3,3,3,false,Alarm,1,TRUCK,1,1,3,Nob Hill,"(37.7885578121115, -122.410081316773)",140850181-T02 +102330200,99,10073355,Medical Incident,08/21/2010,08/21/2010,08/21/2010 03:00:50 PM,08/21/2010 03:01:50 PM,08/21/2010 03:02:10 PM,08/21/2010 03:06:51 PM,08/21/2010 03:15:44 PM,08/21/2010 03:15:52 PM,08/21/2010 03:28:32 PM,Code 2 Transport,08/21/2010 03:38:41 PM,0 Block of CRESCENT AVE,SF,94110,B06,32,5632,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7353420629754, -122.423688144703)",102330200-99 +121210330,77,12040319,Medical Incident,04/30/2012,04/30/2012,04/30/2012 09:38:19 PM,04/30/2012 09:38:50 PM,04/30/2012 09:40:35 PM,04/30/2012 09:41:07 PM,04/30/2012 09:43:38 PM,04/30/2012 10:04:18 PM,04/30/2012 10:13:02 PM,Code 2 Transport,04/30/2012 11:04:09 PM,DUBOCE AV/MISSION ST,SF,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7701114489219, -122.420008323243)",121210330-77 +160602148,87,16023952,Medical Incident,02/29/2016,02/29/2016,02/29/2016 03:11:51 PM,02/29/2016 03:13:16 PM,02/29/2016 03:13:38 PM,02/29/2016 03:13:47 PM,02/29/2016 03:18:37 PM,02/29/2016 03:42:46 PM,02/29/2016 03:48:56 PM,Code 2 Transport,02/29/2016 04:52:11 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160602148-87 +112160016,E05,11071190,Alarms,08/04/2011,08/03/2011,08/04/2011 12:44:20 AM,08/04/2011 12:46:47 AM,08/04/2011 12:47:12 AM,08/04/2011 12:48:32 AM,08/04/2011 12:50:35 AM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 12:57:17 AM,600 Block of FILLMORE ST,SF,94117,B05,5,3532,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7753772324591, -122.431036737565)",112160016-E05 +160882110,AM02,16034986,Medical Incident,03/28/2016,03/28/2016,03/28/2016 02:19:32 PM,03/28/2016 02:21:07 PM,03/28/2016 02:24:51 PM,03/28/2016 02:25:17 PM,03/28/2016 02:34:37 PM,03/28/2016 03:02:24 PM,03/28/2016 03:13:50 PM,Code 2 Transport,03/28/2016 03:40:33 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160882110-AM02 +131690309,T01,13057476,Structure Fire,06/18/2013,06/18/2013,06/18/2013 05:14:54 PM,06/18/2013 05:14:54 PM,06/18/2013 05:21:02 PM,06/18/2013 05:21:50 PM,06/18/2013 05:23:41 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 06:52:08 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Fire,2,TRUCK,10,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",131690309-T01 +112510042,E23,11082653,Medical Incident,09/08/2011,09/07/2011,09/08/2011 03:38:15 AM,09/08/2011 03:39:54 AM,09/08/2011 03:40:02 AM,09/08/2011 03:41:08 AM,09/08/2011 03:43:24 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 04:14:44 AM,1200 Block of 40TH AVE,SF,94122,B08,23,7627,E,E,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7635126167767, -122.499624471473)",112510042-E23 +113190196,89,11105948,Medical Incident,11/15/2011,11/15/2011,11/15/2011 12:24:34 PM,11/15/2011 12:25:25 PM,11/15/2011 12:26:13 PM,11/15/2011 12:26:58 PM,11/15/2011 12:33:37 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Patient Declined Transport,11/15/2011 12:38:26 PM,1000 Block of WISCONSIN ST,SF,94107,B10,37,257,3,3,3,true,,1,MEDIC,3,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",113190196-89 +160373739,87,16014927,Medical Incident,02/06/2016,02/06/2016,02/06/2016 09:09:12 PM,02/06/2016 09:09:12 PM,02/06/2016 09:10:56 PM,02/06/2016 09:10:56 PM,02/06/2016 09:11:34 PM,02/06/2016 09:16:40 PM,02/06/2016 09:19:53 PM,Code 2 Transport,02/06/2016 09:28:02 PM,BUSH ST/POLK ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",160373739-87 +111200185,AM16,11039584,Medical Incident,04/30/2011,04/30/2011,04/30/2011 12:45:49 PM,04/30/2011 12:46:58 PM,04/30/2011 12:47:18 PM,04/30/2011 12:47:53 PM,04/30/2011 12:56:22 PM,04/30/2011 01:08:04 PM,04/30/2011 01:18:12 PM,Code 2 Transport,04/30/2011 02:03:22 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,,1,PRIVATE,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",111200185-AM16 +132120331,92,13071790,Medical Incident,07/31/2013,07/31/2013,07/31/2013 09:10:17 PM,07/31/2013 09:11:28 PM,07/31/2013 09:12:06 PM,07/31/2013 09:13:11 PM,07/31/2013 09:26:38 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Patient Declined Transport,07/31/2013 09:57:32 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",132120331-92 +111590330,T01,11052711,Medical Incident,06/08/2011,06/08/2011,06/08/2011 09:26:06 PM,06/08/2011 09:27:03 PM,06/08/2011 09:27:41 PM,06/08/2011 09:29:13 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/08/2011 09:29:34 PM,1300 Block of FOLSOM ST,SF,94103,B02,36,2343,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7730095075911, -122.41247584547)",111590330-T01 +140860222,83,14028980,Medical Incident,03/27/2014,03/27/2014,03/27/2014 03:53:31 PM,03/27/2014 03:55:42 PM,03/27/2014 03:57:11 PM,03/27/2014 04:01:00 PM,03/27/2014 04:19:20 PM,03/27/2014 04:25:11 PM,03/27/2014 04:48:18 PM,Code 2 Transport,03/27/2014 05:06:08 PM,100 Block of NORTHRIDGE RD,SAN FRANCISCO,94124,B10,17,6633,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7312838053833, -122.378204872935)",140860222-83 +121850354,87,12061769,Medical Incident,07/03/2012,07/03/2012,07/03/2012 09:10:59 PM,07/03/2012 09:16:26 PM,07/03/2012 09:16:55 PM,07/03/2012 09:47:20 PM,07/03/2012 09:56:50 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Unable to Locate,07/03/2012 09:59:46 PM,PAGE ST/OCTAVIA ST,SF,94102,B02,36,3313,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7738892381955, -122.42394706123)",121850354-87 +111490151,E02,11049374,Medical Incident,05/29/2011,05/29/2011,05/29/2011 01:50:06 PM,05/29/2011 01:50:48 PM,05/29/2011 01:51:03 PM,05/29/2011 01:55:44 PM,05/29/2011 01:58:22 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 02:07:48 PM,900 Block of GREENWICH ST,SF,94133,B01,28,1514,3,3,3,true,,1,ENGINE,1,1,3,Russian Hill,"(37.8016099872454, -122.415552444097)",111490151-E02 +132770188,84,13094080,Medical Incident,10/04/2013,10/04/2013,10/04/2013 12:18:23 PM,10/04/2013 12:19:29 PM,10/04/2013 12:19:44 PM,10/04/2013 12:20:02 PM,10/04/2013 12:25:09 PM,10/04/2013 12:47:34 PM,10/04/2013 01:29:51 PM,Code 2 Transport,10/04/2013 01:29:59 PM,0 Block of MONTECITO AVE,SF,94112,B09,15,8236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7309389561436, -122.453833154503)",132770188-84 +160231210,81,16009102,Medical Incident,01/23/2016,01/23/2016,01/23/2016 10:29:54 AM,01/23/2016 10:32:30 AM,01/23/2016 10:32:53 AM,01/23/2016 10:33:48 AM,01/23/2016 10:42:28 AM,01/23/2016 11:01:09 AM,01/23/2016 11:10:34 AM,Code 2 Transport,01/23/2016 11:52:29 AM,1600 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7359839996322, -122.390991750862)",160231210-81 +160083803,AM20,16003435,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:02:34 PM,01/08/2016 10:04:04 PM,01/08/2016 10:04:16 PM,01/08/2016 10:04:44 PM,01/08/2016 10:10:28 PM,01/08/2016 10:29:31 PM,01/08/2016 10:43:01 PM,Code 2 Transport,01/08/2016 11:19:43 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160083803-AM20 +103100028,B03,10099262,Alarms,11/06/2010,11/05/2010,11/06/2010 01:48:55 AM,11/06/2010 01:49:50 AM,11/06/2010 01:50:11 AM,11/06/2010 01:52:20 AM,11/06/2010 01:56:30 AM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Fire,11/06/2010 02:02:08 AM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.787352867216, -122.399071684966)",103100028-B03 +110020050,85,11000554,Medical Incident,01/02/2011,01/01/2011,01/02/2011 04:56:46 AM,01/02/2011 05:00:39 AM,01/02/2011 05:00:59 AM,01/02/2011 05:01:27 AM,01/02/2011 05:05:55 AM,01/02/2011 05:24:23 AM,01/02/2011 05:30:22 AM,Code 2 Transport,01/02/2011 05:43:57 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7571666434801, -122.416719595074)",110020050-85 +160251806,AM08,16009937,Medical Incident,01/25/2016,01/25/2016,01/25/2016 01:02:21 PM,01/25/2016 01:02:44 PM,01/25/2016 01:03:03 PM,01/25/2016 01:03:35 PM,01/25/2016 01:10:28 PM,01/25/2016 01:22:19 PM,01/25/2016 01:32:50 PM,Code 3 Transport,01/25/2016 02:34:41 PM,100 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7876931888724, -122.484718840648)",160251806-AM08 +160150293,65,16005825,Medical Incident,01/15/2016,01/14/2016,01/15/2016 02:42:08 AM,01/15/2016 02:43:00 AM,01/15/2016 02:43:26 AM,01/15/2016 02:43:41 AM,01/15/2016 02:50:33 AM,01/15/2016 03:00:45 AM,01/15/2016 03:12:28 AM,Code 2 Transport,01/15/2016 03:25:39 AM,100 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",160150293-65 +102850454,83,10090960,Medical Incident,10/12/2010,10/12/2010,10/12/2010 09:59:21 PM,10/12/2010 10:00:50 PM,10/12/2010 10:01:20 PM,10/12/2010 10:01:42 PM,10/12/2010 10:11:45 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 10:28:08 PM,2400 Block of CLAY ST,SF,94115,B04,38,3466,1,1,2,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.790897082336, -122.433177215492)",102850454-83 +120120285,AM14,12004194,Medical Incident,01/12/2012,01/12/2012,01/12/2012 06:36:08 PM,01/12/2012 06:37:42 PM,01/12/2012 06:39:27 PM,01/12/2012 06:40:06 PM,01/12/2012 06:49:03 PM,01/12/2012 06:54:14 PM,01/12/2012 07:04:37 PM,Code 2 Transport,01/12/2012 07:20:36 PM,0 Block of DORE ST,SF,94103,B02,36,2342,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",120120285-AM14 +112870296,T05,11095234,Alarms,10/14/2011,10/14/2011,10/14/2011 03:43:52 PM,10/14/2011 03:44:17 PM,10/14/2011 03:44:24 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 03:51:24 PM,700 Block of PRESIDIO AVE,SF,94115,B05,10,4366,3,3,3,false,,1,TRUCK,4,5,2,Presidio Heights,"(37.7849123605726, -122.446266007624)",112870296-T05 +110490114,92,11016127,Medical Incident,02/18/2011,02/18/2011,02/18/2011 09:07:40 AM,02/18/2011 09:08:57 AM,02/18/2011 09:09:38 AM,02/18/2011 09:09:50 AM,02/18/2011 09:16:20 AM,02/18/2011 09:48:57 AM,02/18/2011 10:04:35 AM,Code 2 Transport,02/18/2011 10:17:28 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",110490114-92 +130320037,FB1,13010799,Water Rescue,02/01/2013,01/31/2013,02/01/2013 04:05:47 AM,02/01/2013 04:05:48 AM,02/01/2013 04:07:50 AM,02/01/2013 04:10:22 AM,02/01/2013 04:24:20 AM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,02/01/2013 05:17:36 AM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,Fire,1,SUPPORT,7,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",130320037-FB1 +160683206,53,16027229,Traffic Collision,03/08/2016,03/08/2016,03/08/2016 07:35:39 PM,03/08/2016 07:35:39 PM,03/08/2016 07:38:46 PM,03/08/2016 07:39:17 PM,03/08/2016 07:44:21 PM,03/08/2016 07:51:30 PM,03/08/2016 08:25:20 PM,Code 2 Transport,03/08/2016 09:06:14 PM,GOUGH ST/EDDY ST,San Francisco,94109,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7824770505897, -122.424108201912)",160683206-53 +132920363,E11,13099534,Medical Incident,10/19/2013,10/19/2013,10/19/2013 10:40:02 PM,10/19/2013 10:40:22 PM,10/19/2013 10:40:40 PM,10/19/2013 10:41:54 PM,10/19/2013 10:43:35 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/19/2013 10:53:45 PM,3100 Block of MISSION ST,SF,94110,B06,11,5624,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7474955268543, -122.418732763058)",132920363-E11 +123370380,99,12112337,Medical Incident,12/02/2012,12/02/2012,12/02/2012 01:16:42 PM,12/02/2012 01:16:42 PM,12/02/2012 01:17:00 PM,12/02/2012 01:18:26 PM,12/02/2012 01:24:51 PM,12/02/2012 01:42:34 PM,12/02/2012 02:25:41 PM,Code 2 Transport,12/02/2012 02:46:48 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7951147632018, -122.40714468003)",123370380-99 +130880076,B02,13029284,Structure Fire,03/29/2013,03/29/2013,03/29/2013 08:01:41 AM,03/29/2013 08:01:41 AM,03/29/2013 08:02:31 AM,03/29/2013 08:04:20 AM,03/29/2013 08:07:06 AM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 08:07:51 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",130880076-B02 +112920358,E41,11097030,Structure Fire,10/19/2011,10/19/2011,10/19/2011 09:51:24 PM,10/19/2011 09:52:16 PM,10/19/2011 09:52:27 PM,10/19/2011 09:53:50 PM,10/19/2011 09:55:26 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/19/2011 10:06:25 PM,1900 Block of PACIFIC AVE,SF,94109,B04,38,3332,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.794238248299, -122.42732552674)",112920358-E41 +102720246,65,10086412,Medical Incident,09/29/2010,09/29/2010,09/29/2010 03:17:09 PM,09/29/2010 03:17:21 PM,09/29/2010 03:17:56 PM,09/29/2010 03:18:09 PM,09/29/2010 03:21:46 PM,09/29/2010 03:37:38 PM,09/29/2010 03:59:04 PM,Code 2 Transport,09/29/2010 04:26:19 PM,2700 Block of NORIEGA ST,SF,94122,B08,18,7543,3,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7534535540396, -122.493079366057)",102720246-65 +111340172,KM12,11044562,Medical Incident,05/14/2011,05/14/2011,05/14/2011 01:31:14 PM,05/14/2011 01:32:25 PM,05/14/2011 01:33:25 PM,05/14/2011 01:34:34 PM,05/14/2011 01:44:19 PM,05/14/2011 02:06:20 PM,05/14/2011 02:24:05 PM,Code 2 Transport,05/14/2011 02:57:29 PM,200 Block of CUMBERLAND ST,SF,94114,B06,11,5444,3,3,3,false,,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7587745198783, -122.429130636306)",111340172-KM12 +160062319,76,16002462,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:29:40 PM,01/06/2016 03:30:45 PM,01/06/2016 03:31:38 PM,01/06/2016 03:32:16 PM,01/06/2016 03:50:55 PM,01/06/2016 04:06:50 PM,01/06/2016 04:28:07 PM,Code 2 Transport,01/06/2016 05:02:59 PM,900 Block of BRUSSELS ST,San Francisco,94134,B10,44,6325,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Portola,"(37.7204898011258, -122.402743651531)",160062319-76 +110370194,89,11012212,Medical Incident,02/06/2011,02/06/2011,02/06/2011 11:35:41 AM,02/06/2011 11:37:55 AM,02/06/2011 11:38:43 AM,02/06/2011 11:39:02 AM,02/06/2011 11:48:08 AM,02/06/2011 12:06:53 PM,02/06/2011 12:28:51 PM,Code 2 Transport,02/06/2011 01:03:24 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",110370194-89 +122480088,AM16,12081917,Medical Incident,09/04/2012,09/04/2012,09/04/2012 08:39:04 AM,09/04/2012 08:40:10 AM,09/04/2012 08:40:54 AM,09/04/2012 08:41:33 AM,09/04/2012 08:44:21 AM,09/04/2012 09:09:30 AM,09/04/2012 09:18:59 AM,Code 2 Transport,09/04/2012 09:58:18 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",122480088-AM16 +160841663,71,16033357,Medical Incident,03/24/2016,03/24/2016,03/24/2016 11:50:58 AM,03/24/2016 11:52:49 AM,03/24/2016 11:53:03 AM,03/24/2016 11:53:17 AM,03/24/2016 11:55:41 AM,03/24/2016 12:45:00 PM,03/24/2016 12:51:20 PM,Code 2 Transport,03/24/2016 01:29:53 PM,1300 Block of GOUGH ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7857569605828, -122.424841094899)",160841663-71 +113620255,B01,11120314,Alarms,12/28/2011,12/28/2011,12/28/2011 03:41:51 PM,12/28/2011 03:42:14 PM,12/28/2011 03:44:59 PM,12/28/2011 03:47:45 PM,12/28/2011 03:49:27 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 03:59:48 PM,200 Block of FRANKLIN ST,FM,94102,B99,51,3344,3,3,3,false,,1,CHIEF,1,2,5,Hayes Valley,"(37.7768495726299, -122.421351246136)",113620255-B01 +140780331,93,14026507,Medical Incident,03/19/2014,03/19/2014,03/19/2014 07:49:16 PM,03/19/2014 07:50:09 PM,03/19/2014 07:50:51 PM,03/19/2014 07:51:06 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Fire,03/19/2014 07:59:58 PM,1300 Block of BOSWORTH ST,SAN FRANCISCO,94131,B09,26,8179,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7364473397419, -122.441834902263)",140780331-93 +121880387,E05,12062811,Structure Fire,07/06/2012,07/06/2012,07/06/2012 11:49:41 PM,07/06/2012 11:49:41 PM,07/06/2012 11:49:48 PM,07/06/2012 11:50:59 PM,07/06/2012 11:52:07 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Fire,07/06/2012 11:56:50 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",121880387-E05 +102610239,89,10082539,Medical Incident,09/18/2010,09/18/2010,09/18/2010 01:32:13 PM,09/18/2010 01:34:19 PM,09/18/2010 01:35:06 PM,09/18/2010 01:38:45 PM,09/18/2010 01:50:25 PM,09/18/2010 02:13:37 PM,09/18/2010 02:38:21 PM,Code 2 Transport,09/18/2010 03:21:47 PM,100 Block of ANDOVER ST,SF,94110,B06,32,5716,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7410406209685, -122.416424714159)",102610239-89 +160601279,84,16023864,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:58:43 AM,02/29/2016 10:58:43 AM,02/29/2016 11:00:39 AM,02/29/2016 11:00:52 AM,02/29/2016 11:03:50 AM,02/29/2016 11:30:56 AM,02/29/2016 11:38:44 AM,Code 2 Transport,02/29/2016 12:06:13 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7677331022924, -122.415606951318)",160601279-84 +133480301,E25,13118213,Structure Fire,12/14/2013,12/14/2013,12/14/2013 05:41:06 PM,12/14/2013 05:41:06 PM,12/14/2013 05:41:54 PM,12/14/2013 05:43:31 PM,12/14/2013 05:46:10 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 05:47:19 PM,HUDSON AV/CASHMERE ST,SF,94124,B10,25,652,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",133480301-E25 +133510361,83,13119337,Medical Incident,12/17/2013,12/17/2013,12/17/2013 06:37:44 PM,12/17/2013 06:39:06 PM,12/17/2013 06:40:20 PM,12/17/2013 06:40:29 PM,12/17/2013 06:45:21 PM,12/17/2013 06:53:39 PM,12/17/2013 07:05:20 PM,Code 2 Transport,12/17/2013 07:24:39 PM,2300 Block of FILLMORE ST,SF,94115,B04,38,3545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.791142743319, -122.434360166236)",133510361-83 +160150662,71,16005876,Medical Incident,01/15/2016,01/14/2016,01/15/2016 07:47:05 AM,01/15/2016 07:48:57 AM,01/15/2016 07:49:12 AM,01/15/2016 07:49:31 AM,01/15/2016 07:53:24 AM,01/15/2016 08:02:45 AM,01/15/2016 08:22:43 AM,Code 2 Transport,01/15/2016 08:33:38 AM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",160150662-71 +112360187,E19,11077891,Structure Fire,08/24/2011,08/24/2011,08/24/2011 01:39:41 PM,08/24/2011 01:39:42 PM,08/24/2011 01:39:54 PM,08/24/2011 01:41:43 PM,08/24/2011 01:42:56 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 01:50:32 PM,EUCALYPTUS DR/SYLVAN DR,SF,94132,B08,19,8743,3,3,3,true,,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",112360187-E19 +120890188,E01,12029466,Medical Incident,03/29/2012,03/29/2012,03/29/2012 01:47:43 PM,03/29/2012 01:49:24 PM,03/29/2012 01:49:32 PM,03/29/2012 01:50:52 PM,03/29/2012 01:51:17 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Other,03/29/2012 02:01:41 PM,900 Block of HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811500329072, -122.405277197305)",120890188-E01 +160883810,58,16035141,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:58:53 PM,03/28/2016 10:02:04 PM,03/28/2016 10:02:28 PM,03/28/2016 10:02:55 PM,03/28/2016 10:11:48 PM,03/28/2016 10:17:04 PM,03/28/2016 10:47:23 PM,Code 2 Transport,03/28/2016 11:05:54 PM,14TH ST/SOUTH VAN NESS AV,San Francisco,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7684052696119, -122.417802155227)",160883810-58 +121350243,E29,12044938,Traffic Collision,05/14/2012,05/14/2012,05/14/2012 03:31:44 PM,05/14/2012 03:34:23 PM,05/14/2012 03:34:54 PM,05/14/2012 03:35:38 PM,05/14/2012 03:37:42 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 03:51:44 PM,BRYANT ST/10TH ST,SF,94103,B02,29,2345,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7703485160634, -122.409735890482)",121350243-E29 +103100189,E21,10099393,Medical Incident,11/06/2010,11/06/2010,11/06/2010 01:16:51 PM,11/06/2010 01:17:50 PM,11/06/2010 01:18:48 PM,11/06/2010 01:21:57 PM,11/06/2010 01:23:15 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 01:38:33 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,2,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",103100189-E21 +160131037,85,16005121,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:34:22 AM,01/13/2016 09:34:49 AM,01/13/2016 09:37:15 AM,01/13/2016 09:37:22 AM,01/13/2016 09:44:16 AM,01/13/2016 09:58:56 AM,01/13/2016 10:32:25 AM,Code 2 Transport,01/13/2016 10:48:26 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160131037-85 +131840284,T07,13062778,Alarms,07/03/2013,07/03/2013,07/03/2013 05:07:24 PM,07/03/2013 05:08:14 PM,07/03/2013 05:09:31 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/03/2013 05:11:13 PM,300 Block of RHODE ISLAND ST,SF,94103,B03,29,2413,3,3,3,false,Alarm,1,TRUCK,3,2,10,Mission Bay,"(37.7654237351553, -122.402693174465)",131840284-T07 +111550105,99,11051158,Medical Incident,06/04/2011,06/03/2011,06/04/2011 07:36:12 AM,06/04/2011 07:39:32 AM,06/04/2011 07:39:40 AM,06/04/2011 07:40:48 AM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,Other,04/25/2016 02:04:19 PM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,3,3,3,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",111550105-99 +121840358,E41,12061449,Medical Incident,07/02/2012,07/02/2012,07/02/2012 10:41:14 PM,07/02/2012 10:41:14 PM,07/02/2012 10:42:40 PM,07/02/2012 10:47:07 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 10:50:13 PM,1500 Block of GREEN ST,SF,94123,B04,41,3151,1,2,2,false,Potentially Life-Threatening,1,ENGINE,3,4,2,Marina,"(37.7974582295509, -122.424604006222)",121840358-E41 +160671139,KM12,16026707,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:16:57 AM,03/07/2016 11:17:40 AM,03/07/2016 11:17:57 AM,03/07/2016 11:19:31 AM,03/07/2016 11:27:06 AM,03/07/2016 11:39:24 AM,03/07/2016 12:07:23 PM,Code 2 Transport,03/07/2016 12:35:54 PM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",160671139-KM12 +140750190,87,14025392,Medical Incident,03/16/2014,03/16/2014,03/16/2014 12:41:22 PM,03/16/2014 12:42:09 PM,03/16/2014 12:44:24 PM,03/16/2014 12:44:51 PM,03/16/2014 12:53:16 PM,03/16/2014 01:12:50 PM,03/16/2014 01:27:18 PM,Code 2 Transport,03/16/2014 01:56:42 PM,100 Block of ADDISON ST,SAN FRANCISCO,94131,B06,26,8122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7377457409223, -122.432498108885)",140750190-87 +113580203,RS1,11119039,Medical Incident,12/24/2011,12/24/2011,12/24/2011 01:50:50 PM,12/24/2011 01:51:03 PM,12/24/2011 01:51:26 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 01:52:49 PM,CYRIL MAGNIN ST/MARKET ST,SF,94103,B03,1,1366,3,3,3,false,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7839914857614, -122.408066547804)",113580203-RS1 +112300192,AM02,11075961,Medical Incident,08/18/2011,08/18/2011,08/18/2011 01:27:20 PM,08/18/2011 01:27:40 PM,08/18/2011 01:27:53 PM,08/18/2011 01:28:35 PM,08/18/2011 01:31:34 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,No Merit,08/18/2011 01:43:32 PM,1100 Block of SUTTER ST,SF,94109,B04,3,3121,3,3,3,false,,1,PRIVATE,2,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",112300192-AM02 +121890152,96,12062942,Medical Incident,07/07/2012,07/07/2012,07/07/2012 12:03:39 PM,07/07/2012 12:05:29 PM,07/07/2012 12:08:25 PM,07/07/2012 12:08:37 PM,07/07/2012 12:14:48 PM,07/07/2012 12:27:38 PM,07/07/2012 12:36:16 PM,Code 2 Transport,07/07/2012 01:02:01 PM,CYRIL MAGNIN ST/EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",121890152-96 +140340193,E01,14011507,Structure Fire,02/03/2014,02/03/2014,02/03/2014 01:52:36 PM,02/03/2014 01:52:36 PM,02/03/2014 01:54:49 PM,02/03/2014 01:54:49 PM,02/03/2014 01:54:53 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 01:55:23 PM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7772727011897, -122.404070256526)",140340193-E01 +103350115,64,10107126,Medical Incident,12/01/2010,12/01/2010,12/01/2010 10:23:44 AM,12/01/2010 10:24:29 AM,12/01/2010 10:24:56 AM,12/01/2010 10:25:20 AM,12/01/2010 10:41:59 AM,12/01/2010 11:05:16 AM,12/01/2010 11:36:50 AM,Code 2 Transport,12/01/2010 11:53:51 AM,100 Block of HIGHLAND AVE,SF,94110,B06,32,5646,2,1,2,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.7373636780892, -122.422094532922)",103350115-64 +113470071,72,11115029,Traffic Collision,12/13/2011,12/12/2011,12/13/2011 07:47:31 AM,12/13/2011 07:48:58 AM,12/13/2011 07:49:08 AM,12/13/2011 07:49:21 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/13/2011 07:52:35 AM,FULTON ST/FILLMORE ST,SF,94117,B05,5,3521,3,3,3,true,,1,MEDIC,3,5,5,Hayes Valley,"(37.777699925281, -122.431574643438)",113470071-72 +112940327,KM01,11097638,Medical Incident,10/21/2011,10/21/2011,10/21/2011 07:34:51 PM,10/21/2011 07:36:27 PM,10/21/2011 07:36:45 PM,10/21/2011 07:39:38 PM,10/21/2011 07:43:29 PM,10/21/2011 07:54:06 PM,10/21/2011 08:13:12 PM,Code 2 Transport,10/21/2011 08:23:49 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",112940327-KM01 +110840020,E22,11027525,Traffic Collision,03/25/2011,03/24/2011,03/25/2011 01:06:39 AM,03/25/2011 01:06:39 AM,03/25/2011 01:08:17 AM,03/25/2011 01:10:45 AM,03/25/2011 01:10:48 AM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,Other,03/25/2011 01:14:42 AM,GEARY BL/PARK PRESIDIO BL,SF,94118,B07,31,7146,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",110840020-E22 +113450019,94,11114317,Medical Incident,12/11/2011,12/10/2011,12/11/2011 12:41:43 AM,12/11/2011 12:43:50 AM,12/11/2011 12:46:13 AM,12/11/2011 12:46:18 AM,12/11/2011 12:47:55 AM,12/11/2011 01:08:03 AM,12/11/2011 01:23:00 AM,Code 2 Transport,12/11/2011 01:46:08 AM,300 Block of DOLORES ST,SF,94114,B02,6,5251,1,1,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7634973385648, -122.426428418645)",113450019-94 +120540232,AM02,12017861,Medical Incident,02/23/2012,02/23/2012,02/23/2012 03:19:48 PM,02/23/2012 03:20:51 PM,02/23/2012 03:22:32 PM,02/23/2012 03:23:42 PM,02/23/2012 03:28:22 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 03:35:59 PM,200 Block of JERSEY ST,SF,94114,B06,11,5537,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7507499563424, -122.430690505695)",120540232-AM02 +112080102,E01,11068627,Medical Incident,07/27/2011,07/27/2011,07/27/2011 09:42:31 AM,07/27/2011 09:43:21 AM,07/27/2011 09:44:53 AM,07/27/2011 09:46:55 AM,07/27/2011 09:50:07 AM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 09:57:42 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",112080102-E01 +160681195,62,16027077,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:26:49 AM,03/08/2016 10:27:11 AM,03/08/2016 10:27:34 AM,03/08/2016 10:27:49 AM,03/08/2016 10:30:45 AM,03/08/2016 10:49:10 AM,03/08/2016 11:01:35 AM,Code 2 Transport,03/08/2016 11:27:20 AM,400 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7864592940991, -122.411489016028)",160681195-62 +160180490,53,16007129,Medical Incident,01/18/2016,01/17/2016,01/18/2016 06:47:48 AM,01/18/2016 06:47:48 AM,01/18/2016 06:48:15 AM,01/18/2016 06:48:25 AM,01/18/2016 06:52:55 AM,01/18/2016 07:08:36 AM,01/18/2016 07:15:38 AM,Code 2 Transport,01/18/2016 08:07:07 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7810145579776, -122.413423114482)",160180490-53 +111120124,E08,11036957,Medical Incident,04/22/2011,04/22/2011,04/22/2011 09:42:15 AM,04/22/2011 09:43:21 AM,04/22/2011 09:48:47 AM,04/22/2011 09:49:12 AM,04/22/2011 09:51:13 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 10:16:43 AM,200 Block of KING ST,SF,94107,B03,8,2171,1,1,2,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",111120124-E08 +122350014,E06,12077736,Medical Incident,08/22/2012,08/21/2012,08/22/2012 01:02:04 AM,08/22/2012 01:03:10 AM,08/22/2012 01:03:42 AM,04/25/2016 01:57:07 PM,08/22/2012 01:06:00 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Other,08/22/2012 01:10:26 AM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",122350014-E06 +112580357,E01,11085195,Structure Fire,09/15/2011,09/15/2011,09/15/2011 08:27:36 PM,09/15/2011 08:27:37 PM,09/15/2011 08:28:01 PM,09/15/2011 08:29:25 PM,09/15/2011 08:31:29 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 08:31:51 PM,STOCKTON ST/SUTTER ST,SF,94108,B01,1,1324,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",112580357-E01 +123370367,B06,12112325,Structure Fire,12/02/2012,12/02/2012,12/02/2012 12:16:45 PM,12/02/2012 12:18:22 PM,12/02/2012 12:19:07 PM,12/02/2012 12:20:26 PM,12/02/2012 12:24:08 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 12:34:51 PM,0 Block of QUARTZ WAY,SF,94131,B06,26,8166,3,3,3,false,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7455624438295, -122.445851870392)",123370367-B06 +112230044,B04,11073542,Alarms,08/11/2011,08/10/2011,08/11/2011 04:44:28 AM,08/11/2011 04:46:00 AM,08/11/2011 04:46:18 AM,08/11/2011 04:48:54 AM,08/11/2011 04:53:01 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,08/11/2011 05:02:13 AM,1000 Block of DIVISADERO ST,SF,94115,B05,5,4152,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7791768244536, -122.438765898407)",112230044-B04 +131090121,B06,13036576,Alarms,04/19/2013,04/19/2013,04/19/2013 10:00:50 AM,04/19/2013 10:02:13 AM,04/19/2013 10:02:25 AM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Fire,04/19/2013 10:03:55 AM,1200 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,false,Alarm,1,CHIEF,1,6,9,Mission,"(37.7531662445821, -122.416408491437)",131090121-B06 +121740301,77,12057869,Medical Incident,06/22/2012,06/22/2012,06/22/2012 07:41:38 PM,06/22/2012 07:43:07 PM,06/22/2012 07:43:31 PM,06/22/2012 07:43:44 PM,06/22/2012 07:50:00 PM,06/22/2012 08:08:13 PM,06/22/2012 08:17:38 PM,Code 2 Transport,06/22/2012 08:47:32 PM,800 Block of 39TH AVE,SF,94121,B07,34,7261,1,3,3,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7728213096769, -122.499181872365)",121740301-77 +160870016,64,16034408,Medical Incident,03/27/2016,03/26/2016,03/27/2016 12:05:23 AM,03/27/2016 12:05:23 AM,03/27/2016 12:07:30 AM,03/27/2016 12:07:30 AM,03/27/2016 12:09:21 AM,03/27/2016 12:28:23 AM,03/27/2016 12:32:58 AM,Code 2 Transport,03/27/2016 02:07:38 AM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7436052440139, -122.421251086174)",160870016-64 +160301898,AM10,16011798,Medical Incident,01/30/2016,01/30/2016,01/30/2016 01:06:32 PM,01/30/2016 01:06:32 PM,01/30/2016 01:09:39 PM,01/30/2016 01:10:11 PM,01/30/2016 01:15:46 PM,01/30/2016 01:24:53 PM,01/30/2016 01:34:41 PM,Code 2 Transport,01/30/2016 02:05:57 PM,TURK ST/FILLMORE ST,San Francisco,94115,B04,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",160301898-AM10 +111190317,86,11039380,Medical Incident,04/29/2011,04/29/2011,04/29/2011 08:47:42 PM,04/29/2011 08:48:25 PM,04/29/2011 08:48:44 PM,04/29/2011 08:49:32 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 08:53:35 PM,ARLETA AV/BAYSHORE BL,SF,94134,B10,44,6271,3,3,3,true,,1,MEDIC,3,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",111190317-86 +103270069,T10,10104676,Medical Incident,11/23/2010,11/23/2010,11/23/2010 08:58:25 AM,11/23/2010 08:59:53 AM,11/23/2010 09:00:20 AM,11/23/2010 09:01:00 AM,11/23/2010 09:06:08 AM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,No Merit,11/23/2010 09:07:30 AM,1700 Block of MCALLISTER ST,SF,94117,B05,21,4254,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7774258159143, -122.440841432204)",103270069-T10 +160103563,AM14,16004214,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:02:47 PM,01/10/2016 11:04:59 PM,01/10/2016 11:05:15 PM,01/10/2016 11:06:00 PM,01/10/2016 11:27:10 PM,01/10/2016 11:27:16 PM,01/10/2016 11:46:02 PM,Code 2 Transport,01/11/2016 12:16:03 AM,100 Block of MAGELLAN AVE,San Francisco,94116,B08,39,8624,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7482288559836, -122.459901063915)",160103563-AM14 +102810294,KM11,10089404,Medical Incident,10/08/2010,10/08/2010,10/08/2010 04:33:44 PM,10/08/2010 04:34:24 PM,10/08/2010 04:34:57 PM,10/08/2010 04:35:23 PM,10/08/2010 04:42:24 PM,10/08/2010 04:48:55 PM,10/08/2010 05:03:27 PM,Code 2 Transport,10/08/2010 05:12:12 PM,100 Block of TOWNSEND ST,SF,94107,B03,8,2154,3,3,3,false,,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7797688910306, -122.391686434361)",102810294-KM11 +102880074,55,10091756,Medical Incident,10/15/2010,10/14/2010,10/15/2010 07:09:49 AM,10/15/2010 07:11:03 AM,10/15/2010 07:11:31 AM,10/15/2010 07:14:37 AM,10/15/2010 07:15:52 AM,10/15/2010 07:30:20 AM,04/25/2016 02:08:05 PM,Code 2 Transport,10/15/2010 08:13:00 AM,4300 Block of 17TH ST,SF,94114,B05,6,5254,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7621597999525, -122.441543331544)",102880074-55 +112470351,RC3,11081592,Medical Incident,09/04/2011,09/04/2011,09/04/2011 08:40:42 PM,09/04/2011 08:42:25 PM,09/04/2011 08:42:58 PM,09/04/2011 08:45:54 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 08:47:57 PM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,3,3,3,true,,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7191956969734, -122.388416108229)",112470351-RC3 +122830177,E08,12093643,Vehicle Fire,10/09/2012,10/09/2012,10/09/2012 01:09:39 PM,10/09/2012 01:09:53 PM,10/09/2012 01:10:08 PM,10/09/2012 01:11:15 PM,10/09/2012 01:12:49 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Fire,10/09/2012 01:14:06 PM,6TH ST/BRANNAN ST,SF,94103,B03,8,2256,3,3,3,true,Fire,1,ENGINE,2,3,6,Mission Bay,"(37.7748087750185, -122.400981567592)",122830177-E08 +120800030,54,12026437,Medical Incident,03/20/2012,03/19/2012,03/20/2012 03:29:56 AM,03/20/2012 03:30:38 AM,03/20/2012 03:34:10 AM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,03/20/2012 04:28:23 AM,03/20/2012 04:35:25 AM,Code 2 Transport,03/20/2012 05:00:47 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",120800030-54 +140170375,T06,14005996,Outside Fire,01/17/2014,01/17/2014,01/17/2014 10:51:40 PM,01/17/2014 10:52:41 PM,01/17/2014 10:55:36 PM,01/17/2014 10:57:12 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 10:57:47 PM,WEBSTER ST/LINDEN ST,SF,94102,B02,5,3522,,3,3,false,Fire,1,TRUCK,2,2,5,Hayes Valley,"(37.7755773752532, -122.429459887037)",140170375-T06 +110250438,E36,11008418,Medical Incident,01/25/2011,01/25/2011,01/25/2011 09:55:45 PM,01/25/2011 09:57:11 PM,01/25/2011 09:57:48 PM,01/25/2011 09:59:21 PM,01/25/2011 10:01:27 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 10:13:19 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",110250438-E36 +160650815,55,16025859,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:06:56 AM,03/05/2016 08:08:31 AM,03/05/2016 08:08:42 AM,03/05/2016 08:08:59 AM,03/05/2016 08:17:50 AM,03/05/2016 08:28:27 AM,03/05/2016 08:35:53 AM,Code 2 Transport,03/05/2016 09:14:01 AM,0 Block of MAIDEN LN,San Francisco,94108,B01,1,1241,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7882745438187, -122.404344705962)",160650815-55 +130530327,E39,13018033,Traffic Collision,02/22/2013,02/22/2013,02/22/2013 08:01:48 PM,02/22/2013 08:01:59 PM,02/22/2013 08:02:04 PM,02/22/2013 08:03:00 PM,02/22/2013 08:06:33 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Other,02/22/2013 08:28:05 PM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",130530327-E39 +121740151,E01,12057740,Medical Incident,06/22/2012,06/22/2012,06/22/2012 12:25:12 PM,06/22/2012 12:25:37 PM,06/22/2012 12:26:27 PM,06/22/2012 12:27:47 PM,06/22/2012 12:30:14 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/22/2012 12:34:32 PM,4TH ST/MISSION ST,SF,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",121740151-E01 +140380395,E13,14013014,Structure Fire,02/07/2014,02/07/2014,02/07/2014 11:27:05 PM,02/07/2014 11:28:30 PM,02/07/2014 11:29:07 PM,02/07/2014 11:31:43 PM,02/07/2014 11:42:17 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/07/2014 11:50:23 PM,100 Block of ALTA ST,SF,94133,B01,28,1225,,3,3,true,Alarm,1,ENGINE,11,1,3,North Beach,"(37.8015452607194, -122.404853635897)",140380395-E13 +132470138,B04,13083290,Alarms,09/04/2013,09/04/2013,09/04/2013 10:18:29 AM,09/04/2013 10:20:10 AM,09/04/2013 10:20:40 AM,09/04/2013 10:23:11 AM,09/04/2013 10:29:26 AM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 10:29:27 AM,2300 Block of WASHINGTON ST,SF,94115,B04,38,3436,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7919582939249, -122.431926690023)",132470138-B04 +123630050,T03,12121352,Structure Fire,12/28/2012,12/27/2012,12/28/2012 05:53:29 AM,12/28/2012 05:53:29 AM,12/28/2012 05:53:37 AM,12/28/2012 05:55:44 AM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Other,12/28/2012 05:56:40 AM,600 Block of LARKIN ST,SF,94109,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",123630050-T03 +140750325,E09,14025510,Medical Incident,03/16/2014,03/16/2014,03/16/2014 08:19:47 PM,03/16/2014 08:20:18 PM,03/16/2014 08:20:30 PM,03/16/2014 08:22:17 PM,03/16/2014 08:24:18 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Medical Examiner,03/16/2014 08:48:27 PM,1100 Block of YORK ST,SAN FRANCISCO,94110,B06,9,5531,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7536484606058, -122.408334854036)",140750325-E09 +102440147,91,10076946,Medical Incident,09/01/2010,09/01/2010,09/01/2010 10:44:42 AM,09/01/2010 10:44:56 AM,09/01/2010 10:45:35 AM,09/01/2010 10:48:36 AM,09/01/2010 11:02:06 AM,09/01/2010 11:26:36 AM,09/01/2010 11:38:37 AM,Code 2 Transport,09/01/2010 12:12:44 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",102440147-91 +113600063,E21,11119548,Medical Incident,12/26/2011,12/25/2011,12/26/2011 06:13:08 AM,12/26/2011 06:13:54 AM,12/26/2011 06:14:24 AM,12/26/2011 06:15:24 AM,12/26/2011 06:19:07 AM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 06:23:42 AM,900 Block of OAK ST,SF,94117,B05,21,4141,3,2,2,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7735018159169, -122.434940936471)",113600063-E21 +111340271,88,11044646,Medical Incident,05/14/2011,05/14/2011,05/14/2011 06:29:15 PM,05/14/2011 06:30:03 PM,05/14/2011 06:31:19 PM,05/14/2011 06:31:56 PM,05/14/2011 06:35:40 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,No Merit,05/14/2011 06:41:20 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,E,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7756454671917, -122.412432457912)",111340271-88 +160500688,85,16019997,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:02:57 AM,02/19/2016 08:04:37 AM,02/19/2016 08:04:46 AM,02/19/2016 08:06:42 AM,02/19/2016 08:13:26 AM,02/19/2016 08:39:28 AM,02/19/2016 08:55:44 AM,Code 3 Transport,02/19/2016 10:00:22 AM,900 Block of JAMESTOWN AVE,San Francisco,94124,B10,17,6642,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7182677028816, -122.393038835144)",160500688-85 +121860188,T09,12061965,Outside Fire,07/04/2012,07/04/2012,07/04/2012 03:02:34 PM,07/04/2012 03:04:22 PM,07/04/2012 03:04:34 PM,07/04/2012 03:05:53 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 03:15:42 PM,HUNTERS POINT BL/HAWES ST,SF,94124,B10,25,6632,3,3,3,false,Fire,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7336163455394, -122.376973856912)",121860188-T09 +131830057,T09,13062259,Alarms,07/02/2013,07/01/2013,07/02/2013 07:42:58 AM,07/02/2013 07:45:02 AM,07/02/2013 07:45:11 AM,07/02/2013 07:48:45 AM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 07:59:04 AM,900 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,false,Alarm,1,TRUCK,3,10,10,Potrero Hill,"(37.7552453099076, -122.39565974671)",131830057-T09 +160032652,KM05,16001307,Medical Incident,01/03/2016,01/03/2016,01/03/2016 06:47:00 PM,01/03/2016 06:47:00 PM,01/03/2016 06:58:41 PM,01/03/2016 06:59:07 PM,01/03/2016 07:18:18 PM,01/03/2016 07:22:43 PM,01/03/2016 07:35:37 PM,Code 2 Transport,01/03/2016 07:48:21 PM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160032652-KM05 +103060065,E02,10097797,Medical Incident,11/02/2010,11/01/2010,11/02/2010 01:31:53 AM,11/02/2010 01:33:59 AM,11/02/2010 01:35:43 AM,11/02/2010 01:37:18 AM,11/02/2010 01:38:41 AM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/02/2010 01:53:27 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7962885028016, -122.411294793811)",103060065-E02 +160522005,E10,16020848,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:46:52 PM,02/21/2016 02:48:37 PM,02/21/2016 02:49:01 PM,02/21/2016 02:49:41 PM,02/21/2016 02:53:21 PM,02/21/2016 03:13:29 PM,02/21/2016 03:13:30 PM,Code 2 Transport,02/21/2016 03:50:21 PM,BRODERICK ST/BROADWAY,San Francisco,94123,B04,10,4226,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7932242412519, -122.443192237139)",160522005-E10 +160772324,KM12,16030637,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:39:07 PM,03/17/2016 02:41:05 PM,03/17/2016 02:43:53 PM,03/17/2016 02:43:53 PM,03/17/2016 03:10:23 PM,03/17/2016 03:33:42 PM,03/17/2016 03:33:45 PM,Code 2 Transport,03/17/2016 04:10:13 PM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",160772324-KM12 +140820245,E35,14027752,Alarms,03/23/2014,03/23/2014,03/23/2014 05:50:13 PM,03/23/2014 05:51:36 PM,03/23/2014 05:52:20 PM,03/23/2014 05:53:14 PM,03/23/2014 05:56:47 PM,04/25/2016 01:47:35 PM,04/25/2016 01:47:35 PM,Fire,03/23/2014 06:09:31 PM,0 Block of TOWNSEND ST,SAN FRANCISCO,94107,B03,35,938,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",140820245-E35 +140200340,E43,14006998,Medical Incident,01/20/2014,01/20/2014,01/20/2014 09:09:19 PM,01/20/2014 09:10:46 PM,01/20/2014 09:10:57 PM,01/20/2014 09:12:24 PM,01/20/2014 09:13:30 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/20/2014 09:49:18 PM,500 Block of MUNICH ST,SF,94112,B09,43,6161,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7170496406965, -122.429629190911)",140200340-E43 +160553767,AM20,16022153,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:48:34 PM,02/24/2016 08:48:43 PM,02/24/2016 08:49:01 PM,02/24/2016 08:49:41 PM,02/24/2016 08:56:19 PM,02/24/2016 09:23:20 PM,02/24/2016 09:44:32 PM,Code 2 Transport,02/24/2016 10:31:48 PM,700 Block of HEAD ST,San Francisco,94132,B09,33,8433,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7206866121124, -122.464403388281)",160553767-AM20 +131690217,KM12,13057402,Odor (Strange / Unknown),06/18/2013,06/18/2013,06/18/2013 12:46:32 PM,06/18/2013 12:48:09 PM,06/18/2013 12:51:17 PM,06/18/2013 12:51:59 PM,06/18/2013 12:55:38 PM,06/18/2013 01:13:34 PM,06/18/2013 01:21:55 PM,Code 2 Transport,06/18/2013 01:43:39 PM,1300 Block of PIERCE ST,SF,94115,B05,5,3647,3,3,3,false,Alarm,1,PRIVATE,4,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",131690217-KM12 +160251440,71,16009897,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:16:42 AM,01/25/2016 11:19:12 AM,01/25/2016 11:19:22 AM,01/25/2016 11:28:34 AM,01/25/2016 11:28:57 AM,01/25/2016 12:05:43 PM,01/25/2016 12:05:44 PM,Code 2 Transport,01/25/2016 12:35:47 PM,1400 Block of SOMERSET ST,San Francisco,94134,B10,44,6265,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Visitacion Valley,"(37.7141565290694, -122.40229371753)",160251440-71 +130130091,89,13004347,Medical Incident,01/13/2013,01/12/2013,01/13/2013 04:30:32 AM,01/13/2013 04:31:27 AM,01/13/2013 04:33:58 AM,01/13/2013 04:34:26 AM,01/13/2013 04:38:44 AM,01/13/2013 04:57:59 AM,01/13/2013 05:16:38 AM,Code 2 Transport,01/13/2013 05:46:21 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",130130091-89 +102670221,84,10084534,Medical Incident,09/24/2010,09/24/2010,09/24/2010 03:00:28 PM,09/24/2010 03:01:12 PM,09/24/2010 03:06:00 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Other,09/24/2010 03:06:33 PM,200 Block of FREMONT ST,SF,94105,B03,35,2137,3,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7889437645084, -122.394688229661)",102670221-84 +131740300,E43,13059157,Medical Incident,06/23/2013,06/23/2013,06/23/2013 06:10:42 PM,06/23/2013 06:10:43 PM,06/23/2013 06:11:52 PM,06/23/2013 06:12:53 PM,06/23/2013 06:15:21 PM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Other,06/23/2013 06:24:05 PM,100 Block of DUBLIN ST,SF,94112,B09,43,6165,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7178073238376, -122.42704025216)",131740300-E43 +140410108,83,14013862,Medical Incident,02/10/2014,02/10/2014,02/10/2014 09:14:10 AM,02/10/2014 09:14:10 AM,02/10/2014 09:23:05 AM,02/10/2014 09:23:13 AM,02/10/2014 09:51:40 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Unable to Locate,02/10/2014 09:53:55 AM,900 Block of POLK ST,SF,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",140410108-83 +133340194,67,13113251,Medical Incident,11/30/2013,11/30/2013,11/30/2013 01:59:11 PM,11/30/2013 01:59:42 PM,11/30/2013 01:59:55 PM,11/30/2013 02:01:21 PM,11/30/2013 02:04:22 PM,11/30/2013 02:22:06 PM,11/30/2013 02:36:05 PM,Code 2 Transport,11/30/2013 03:09:50 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",133340194-67 +132660355,E14,13090396,Medical Incident,09/23/2013,09/23/2013,09/23/2013 07:18:01 PM,09/23/2013 07:25:33 PM,09/23/2013 07:26:04 PM,09/23/2013 07:27:23 PM,09/23/2013 07:28:36 PM,04/25/2016 01:50:37 PM,09/23/2013 08:07:19 PM,Other,09/23/2013 08:25:56 PM,600 Block of 25TH AVE,SF,94121,B07,14,7212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7772371431568, -122.484458855581)",132660355-E14 +112770285,E05,11091777,Medical Incident,10/04/2011,10/04/2011,10/04/2011 04:48:18 PM,10/04/2011 04:49:40 PM,10/04/2011 04:50:18 PM,10/04/2011 04:51:26 PM,10/04/2011 04:52:35 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 05:10:52 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",112770285-E05 +102760133,T03,10087690,Medical Incident,10/03/2010,10/03/2010,10/03/2010 10:07:55 AM,10/03/2010 10:09:56 AM,10/03/2010 10:10:10 AM,10/03/2010 10:12:36 AM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 10:14:27 AM,900 Block of FRANKLIN ST,SF,94109,B02,3,3221,3,3,3,false,,1,TRUCK,4,2,5,Western Addition,"(37.7833939650918, -122.422536931307)",102760133-T03 +160030208,79,16001006,Medical Incident,01/03/2016,01/02/2016,01/03/2016 01:15:36 AM,01/03/2016 01:18:14 AM,01/03/2016 01:19:26 AM,01/03/2016 01:19:35 AM,01/03/2016 01:27:26 AM,01/03/2016 01:48:23 AM,01/03/2016 01:59:23 AM,Code 2 Transport,01/03/2016 02:27:34 AM,400 Block of POST ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",160030208-79 +160631376,63,16025036,Medical Incident,03/03/2016,03/03/2016,03/03/2016 11:04:59 AM,03/03/2016 11:04:59 AM,03/03/2016 11:06:08 AM,03/03/2016 11:06:21 AM,03/03/2016 11:19:43 AM,03/03/2016 11:30:28 AM,03/03/2016 11:42:18 AM,Code 2 Transport,03/03/2016 12:10:54 PM,2000 Block of CHESTNUT ST,San Francisco,94123,B04,16,3554,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8008031731089, -122.436797742278)",160631376-63 +160313338,85,16012332,Medical Incident,01/31/2016,01/31/2016,01/31/2016 08:20:36 PM,01/31/2016 08:21:32 PM,01/31/2016 08:22:09 PM,01/31/2016 08:22:21 PM,01/31/2016 08:27:00 PM,01/31/2016 08:40:37 PM,01/31/2016 08:47:47 PM,Code 2 Transport,01/31/2016 09:16:59 PM,7TH ST/HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7779770860913, -122.409387007126)",160313338-85 +120050169,E38,12001720,Medical Incident,01/05/2012,01/05/2012,01/05/2012 12:28:12 PM,01/05/2012 12:29:01 PM,01/05/2012 12:29:19 PM,01/05/2012 12:29:49 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 12:30:43 PM,2000 Block of SACRAMENTO ST,SF,94109,B04,38,3326,3,2,2,false,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7907164232714, -122.426614088537)",120050169-E38 +111280139,89,11042318,Medical Incident,05/08/2011,05/08/2011,05/08/2011 11:44:02 AM,05/08/2011 11:44:56 AM,05/08/2011 11:45:31 AM,05/08/2011 11:45:37 AM,05/08/2011 11:50:00 AM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,Other,05/08/2011 11:52:21 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,E,E,3,true,,1,MEDIC,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",111280139-89 +123390030,AM18,12112940,Medical Incident,12/04/2012,12/03/2012,12/04/2012 03:01:19 AM,12/04/2012 03:01:39 AM,12/04/2012 03:03:17 AM,12/04/2012 03:04:22 AM,12/04/2012 03:16:44 AM,12/04/2012 03:25:56 AM,12/04/2012 03:43:19 AM,Code 2 Transport,12/04/2012 04:13:50 AM,CLAY ST/DRUMM ST,SF,94111,B01,13,1116,3,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",123390030-AM18 +132800209,RC2,13095308,Medical Incident,10/07/2013,10/07/2013,10/07/2013 01:39:41 PM,10/07/2013 01:40:24 PM,10/07/2013 01:40:38 PM,10/07/2013 01:41:39 PM,10/07/2013 01:46:38 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/07/2013 01:57:19 PM,0 Block of SEYMOUR ST,SF,94115,B05,5,4134,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,5,5,Western Addition,"(37.7792900134424, -122.437869182837)",132800209-RC2 +123600130,E01,12120467,Medical Incident,12/25/2012,12/25/2012,12/25/2012 12:07:39 PM,12/25/2012 12:09:45 PM,12/25/2012 12:10:06 PM,12/25/2012 12:10:43 PM,12/25/2012 12:13:37 PM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Other,12/25/2012 12:22:31 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7803099082814, -122.407975093043)",123600130-E01 +133600227,94,13122388,Medical Incident,12/26/2013,12/26/2013,12/26/2013 03:19:46 PM,12/26/2013 03:21:29 PM,12/26/2013 03:23:24 PM,12/26/2013 03:23:35 PM,12/26/2013 03:55:51 PM,12/26/2013 04:09:54 PM,12/26/2013 04:15:21 PM,Code 2 Transport,12/26/2013 04:58:19 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",133600227-94 +110110290,E16,11003768,Electrical Hazard,01/11/2011,01/11/2011,01/11/2011 07:48:12 PM,01/11/2011 07:51:12 PM,01/11/2011 07:51:43 PM,01/11/2011 07:52:41 PM,01/11/2011 07:54:41 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Fire,01/11/2011 08:02:05 PM,2400 Block of CHESTNUT ST,SF,94123,B04,16,4211,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7999259626699, -122.4436920031)",110110290-E16 +160520552,64,16020695,Medical Incident,02/21/2016,02/20/2016,02/21/2016 04:12:32 AM,02/21/2016 04:14:33 AM,02/21/2016 04:14:41 AM,02/21/2016 04:15:25 AM,02/21/2016 04:18:43 AM,02/21/2016 04:35:13 AM,02/21/2016 04:42:50 AM,Code 2 Transport,02/21/2016 05:20:04 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160520552-64 +140340033,84,14011374,Medical Incident,02/03/2014,02/02/2014,02/03/2014 03:58:42 AM,02/03/2014 03:59:59 AM,02/03/2014 04:00:51 AM,02/03/2014 04:01:08 AM,02/03/2014 04:09:46 AM,02/03/2014 04:16:23 AM,02/03/2014 04:27:55 AM,Code 2 Transport,02/03/2014 05:44:09 AM,400 Block of THE EMBARCADERO,SF,94111,B01,13,907,,E,3,false,Potentially Life-Threatening,1,MEDIC,5,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",140340033-84 +112160063,68,11071234,Medical Incident,08/04/2011,08/03/2011,08/04/2011 04:53:42 AM,08/04/2011 04:54:18 AM,08/04/2011 04:54:36 AM,04/25/2016 02:03:20 PM,08/04/2011 05:05:37 AM,08/04/2011 05:25:21 AM,08/04/2011 05:31:06 AM,Code 2 Transport,08/04/2011 06:14:04 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,true,,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",112160063-68 +113530056,65,11117086,Medical Incident,12/19/2011,12/18/2011,12/19/2011 04:25:50 AM,12/19/2011 04:26:10 AM,12/19/2011 04:26:23 AM,04/25/2016 02:01:05 PM,12/19/2011 04:44:42 AM,12/19/2011 04:56:30 AM,12/19/2011 05:08:35 AM,Code 2 Transport,12/19/2011 05:36:10 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113530056-65 +120270258,87,12009124,Medical Incident,01/27/2012,01/27/2012,01/27/2012 03:28:49 PM,01/27/2012 03:29:43 PM,01/27/2012 03:33:46 PM,01/27/2012 03:34:16 PM,01/27/2012 03:48:54 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Patient Declined Transport,01/27/2012 04:05:16 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",120270258-87 +122730378,85,12090213,Medical Incident,09/29/2012,09/29/2012,09/29/2012 11:20:34 PM,09/29/2012 11:21:33 PM,09/29/2012 11:22:07 PM,09/29/2012 11:22:28 PM,09/29/2012 11:39:08 PM,09/29/2012 11:45:39 PM,09/30/2012 12:08:09 AM,Code 2 Transport,09/30/2012 12:46:16 AM,VIENNA ST/AMAZON AV,SF,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.715065229941, -122.434491728352)",122730378-85 +110030331,E25,11001095,Outside Fire,01/03/2011,01/03/2011,01/03/2011 08:14:12 PM,01/03/2011 08:16:19 PM,01/03/2011 08:16:35 PM,01/03/2011 08:17:26 PM,01/03/2011 08:19:35 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/03/2011 08:21:35 PM,MENDELL ST/HUDSON AV,SF,94124,B10,25,6521,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7389830515892, -122.386398905378)",110030331-E25 +111140006,B04,11037519,Structure Fire,04/24/2011,04/23/2011,04/24/2011 12:20:52 AM,04/24/2011 12:21:56 AM,04/24/2011 12:22:09 AM,04/24/2011 12:24:40 AM,04/24/2011 12:25:12 AM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 12:48:33 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,,1,CHIEF,3,4,5,Japantown,"(37.7869733159879, -122.425845942974)",111140006-B04 +103600123,AM16,10115492,Medical Incident,12/26/2010,12/26/2010,12/26/2010 12:44:07 PM,12/26/2010 12:44:41 PM,12/26/2010 12:44:51 PM,12/26/2010 12:45:45 PM,12/26/2010 12:51:00 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Patient Declined Transport,12/26/2010 01:18:01 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,E,E,3,false,,1,PRIVATE,3,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",103600123-AM16 +140840196,E10,14028318,Traffic Collision,03/25/2014,03/25/2014,03/25/2014 01:58:13 PM,03/25/2014 01:58:13 PM,03/25/2014 01:59:25 PM,03/25/2014 02:00:39 PM,03/25/2014 02:05:07 PM,04/25/2016 01:47:34 PM,04/25/2016 01:47:34 PM,Code 2 Transport,03/25/2014 02:13:57 PM,CALIFORNIA ST/CHERRY ST,SAN FRANCISCO,94118,B07,10,4436,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7860000289549, -122.456685171426)",140840196-E10 +160010997,89,16000185,Medical Incident,01/01/2016,12/31/2015,01/01/2016 04:29:51 AM,01/01/2016 04:30:51 AM,01/01/2016 04:32:38 AM,01/01/2016 04:33:08 AM,01/01/2016 04:37:23 AM,01/01/2016 05:00:44 AM,01/01/2016 05:14:42 AM,Code 2 Transport,01/01/2016 05:28:23 AM,700 Block of GATES ST,San Francisco,94110,B06,32,5747,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7340443707548, -122.414310373999)",160010997-89 +111790312,E38,11059224,Medical Incident,06/28/2011,06/28/2011,06/28/2011 08:19:09 PM,06/28/2011 08:20:10 PM,06/28/2011 08:20:23 PM,06/28/2011 08:21:30 PM,06/28/2011 08:23:29 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/28/2011 08:34:11 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,2,2,false,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",111790312-E38 +160701348,77,16027820,Medical Incident,03/10/2016,03/10/2016,03/10/2016 11:21:30 AM,03/10/2016 11:23:17 AM,03/10/2016 11:23:53 AM,03/10/2016 11:24:06 AM,03/10/2016 11:33:07 AM,03/10/2016 11:50:10 AM,03/10/2016 12:05:08 PM,Code 2 Transport,03/10/2016 01:11:49 PM,100 Block of LELAND AVE,San Francisco,94134,B09,44,6256,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",160701348-77 +132330172,KM06,13078659,Medical Incident,08/21/2013,08/21/2013,08/21/2013 12:47:47 PM,08/21/2013 12:49:15 PM,08/21/2013 12:49:42 PM,08/21/2013 12:50:32 PM,08/21/2013 12:58:08 PM,08/21/2013 01:15:22 PM,08/21/2013 01:32:09 PM,Code 2 Transport,08/21/2013 02:01:55 PM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,3,3,3,false,Non Life-threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",132330172-KM06 +110710180,E07,11023352,Medical Incident,03/12/2011,03/12/2011,03/12/2011 11:33:37 AM,03/12/2011 11:34:15 AM,03/12/2011 11:34:28 AM,03/12/2011 11:35:26 AM,03/12/2011 11:37:08 AM,04/25/2016 02:05:40 PM,04/25/2016 02:05:40 PM,Other,03/12/2011 11:45:31 AM,MISSION ST/20TH ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",110710180-E07 +111730072,E38,11056985,Medical Incident,06/22/2011,06/21/2011,06/22/2011 07:15:12 AM,06/22/2011 07:15:43 AM,06/22/2011 07:16:24 AM,06/22/2011 07:19:02 AM,06/22/2011 07:19:42 AM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 07:42:40 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",111730072-E38 +112110206,E14,11069654,Medical Incident,07/30/2011,07/30/2011,07/30/2011 02:39:42 PM,07/30/2011 02:40:28 PM,07/30/2011 02:41:31 PM,07/30/2011 02:41:44 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,Other,04/25/2016 02:03:25 PM,600 Block of POINT LOBOS AVE,SF,94121,B07,34,7313,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7797358015778, -122.510476185261)",112110206-E14 +160891876,53,16035339,Medical Incident,03/29/2016,03/29/2016,03/29/2016 01:00:23 PM,03/29/2016 01:01:47 PM,03/29/2016 01:03:00 PM,03/29/2016 01:03:07 PM,03/29/2016 01:11:49 PM,03/29/2016 01:29:05 PM,03/29/2016 02:09:20 PM,Code 2 Transport,03/29/2016 02:39:31 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160891876-53 +130910311,66,13030557,Medical Incident,04/01/2013,04/01/2013,04/01/2013 06:10:10 PM,04/01/2013 06:11:18 PM,04/01/2013 06:11:43 PM,04/01/2013 06:13:44 PM,04/01/2013 06:15:36 PM,04/01/2013 10:19:06 PM,04/01/2013 10:38:08 PM,Code 2 Transport,04/01/2013 11:24:18 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Non Life-threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",130910311-66 +160203543,71,16008168,Traffic Collision,01/20/2016,01/20/2016,01/20/2016 08:45:29 PM,01/20/2016 08:45:29 PM,01/20/2016 08:45:29 PM,01/20/2016 08:45:29 PM,01/20/2016 08:45:29 PM,01/20/2016 08:58:02 PM,01/20/2016 08:58:54 PM,Code 2 Transport,01/20/2016 09:51:15 PM,VALENCIA ST/CESAR CHAVEZ ST,San Francisco,94110,B99,11,5612,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7481252844229, -122.420278831044)",160203543-71 +132680101,58,13090921,Medical Incident,09/25/2013,09/25/2013,09/25/2013 09:45:05 AM,09/25/2013 09:45:12 AM,09/25/2013 09:45:39 AM,09/25/2013 09:45:54 AM,09/25/2013 09:52:00 AM,09/25/2013 10:13:22 AM,09/25/2013 10:33:32 AM,Code 2 Transport,09/25/2013 10:48:27 AM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",132680101-58 +160311507,63,16012147,Medical Incident,01/31/2016,01/31/2016,01/31/2016 12:05:53 PM,01/31/2016 12:06:36 PM,01/31/2016 12:07:23 PM,01/31/2016 12:07:59 PM,01/31/2016 12:12:04 PM,01/31/2016 12:26:28 PM,01/31/2016 12:31:08 PM,Code 3 Transport,01/31/2016 01:28:43 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160311507-63 +130820359,RS2,13027605,Medical Incident,03/23/2013,03/23/2013,03/23/2013 11:34:20 PM,03/23/2013 11:34:59 PM,03/23/2013 11:35:27 PM,03/23/2013 11:37:12 PM,03/23/2013 11:38:49 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/23/2013 11:43:33 PM,3200 Block of 17TH ST,SF,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7635175983002, -122.419004027906)",130820359-RS2 +160272494,AM14,16010750,Medical Incident,01/27/2016,01/27/2016,01/27/2016 03:46:26 PM,01/27/2016 03:47:35 PM,01/27/2016 03:47:52 PM,01/27/2016 03:48:38 PM,01/27/2016 03:54:53 PM,01/27/2016 04:14:15 PM,01/27/2016 04:25:37 PM,Code 2 Transport,01/27/2016 04:47:10 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160272494-AM14 +111020260,B03,11033887,Water Rescue,04/12/2011,04/12/2011,04/12/2011 04:08:20 PM,04/12/2011 04:08:53 PM,04/12/2011 04:09:54 PM,04/12/2011 04:11:45 PM,04/12/2011 04:13:34 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/12/2011 05:13:18 PM,900 Block of 3RD ST,SF,94158,B03,8,946,3,3,3,false,,1,CHIEF,2,None,6,None,"(37.7765531472403, -122.390007762623)",111020260-B03 +103600016,B01,10115393,Medical Incident,12/26/2010,12/25/2010,12/26/2010 01:52:51 AM,12/26/2010 01:53:23 AM,12/26/2010 01:53:44 AM,12/26/2010 01:56:12 AM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 01:59:58 AM,0 Block of GEARY ST,SF,94108,B01,1,1241,3,3,3,false,,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",103600016-B01 +160713103,79,16028348,Medical Incident,03/11/2016,03/11/2016,03/11/2016 07:34:43 PM,03/11/2016 07:35:07 PM,03/11/2016 07:35:35 PM,03/11/2016 07:35:43 PM,03/11/2016 07:41:15 PM,03/11/2016 08:09:35 PM,03/11/2016 08:20:42 PM,Code 2 Transport,03/11/2016 08:55:51 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160713103-79 +132240203,T13,13075645,Alarms,08/12/2013,08/12/2013,08/12/2013 01:47:47 PM,08/12/2013 01:48:34 PM,08/12/2013 01:48:49 PM,08/12/2013 01:50:06 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,Other,08/12/2013 01:52:36 PM,400 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7901507738746, -122.397180897548)",132240203-T13 +103640088,RC1,10116689,Medical Incident,12/30/2010,12/29/2010,12/30/2010 07:52:16 AM,12/30/2010 07:52:38 AM,12/30/2010 07:52:47 AM,12/30/2010 07:54:48 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/30/2010 08:07:15 AM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,E,3,true,,1,RESCUE CAPTAIN,4,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",103640088-RC1 +160770336,89,16030436,Medical Incident,03/17/2016,03/16/2016,03/17/2016 03:43:45 AM,03/17/2016 03:43:45 AM,03/17/2016 03:45:03 AM,03/17/2016 03:45:18 AM,03/17/2016 03:57:30 AM,03/17/2016 04:25:06 AM,03/17/2016 04:35:25 AM,Code 2 Transport,03/17/2016 05:29:59 AM,25TH ST/3RD ST,San Francisco,94107,B10,25,2611,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7528356119566, -122.38775628178)",160770336-89 +120730365,E01,12024378,Medical Incident,03/13/2012,03/13/2012,03/13/2012 10:27:28 PM,03/13/2012 10:28:53 PM,03/13/2012 10:29:11 PM,03/13/2012 10:30:22 PM,03/13/2012 10:33:05 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 10:38:12 PM,400 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7810688918781, -122.407387172098)",120730365-E01 +113480218,94,11115485,Medical Incident,12/14/2011,12/14/2011,12/14/2011 01:37:02 PM,12/14/2011 01:38:46 PM,12/14/2011 01:43:10 PM,12/14/2011 01:43:23 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,04/25/2016 02:01:09 PM,2800 Block of MISSION ST,SF,94110,B06,11,5525,1,1,2,true,,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",113480218-94 +160461010,52,16018449,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:41:31 AM,02/15/2016 09:44:18 AM,02/15/2016 09:46:28 AM,02/15/2016 09:46:51 AM,02/15/2016 10:04:59 AM,02/15/2016 10:28:37 AM,02/15/2016 10:46:43 AM,Code 2 Transport,02/15/2016 11:32:15 AM,1100 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",160461010-52 +160783379,KM12,16031155,Medical Incident,03/18/2016,03/18/2016,03/18/2016 07:29:16 PM,03/18/2016 07:30:40 PM,03/18/2016 07:30:49 PM,03/18/2016 07:31:17 PM,03/18/2016 07:36:08 PM,03/18/2016 07:51:03 PM,03/18/2016 08:26:56 PM,Code 2 Transport,03/18/2016 09:03:35 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",160783379-KM12 +160442926,78,16017813,Medical Incident,02/13/2016,02/13/2016,02/13/2016 06:46:23 PM,02/13/2016 06:46:57 PM,02/13/2016 06:47:30 PM,02/13/2016 06:47:37 PM,02/13/2016 06:54:52 PM,02/13/2016 07:10:27 PM,02/13/2016 07:28:26 PM,Code 3 Transport,02/13/2016 08:37:14 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160442926-78 +160482594,56,16019408,Medical Incident,02/17/2016,02/17/2016,02/17/2016 03:54:03 PM,02/17/2016 03:55:43 PM,02/17/2016 03:56:21 PM,02/17/2016 03:57:04 PM,02/17/2016 04:03:49 PM,02/17/2016 04:20:46 PM,02/17/2016 04:29:02 PM,Code 2 Transport,02/17/2016 05:06:26 PM,7TH AV/IRVING ST,San Francisco,94122,B08,22,7332,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7641308708366, -122.46417202271)",160482594-56 +160872953,52,16034685,Medical Incident,03/27/2016,03/27/2016,03/27/2016 06:50:37 PM,03/27/2016 06:53:02 PM,03/27/2016 06:54:37 PM,03/27/2016 06:54:45 PM,03/27/2016 07:01:52 PM,03/27/2016 07:12:47 PM,03/27/2016 07:32:56 PM,Code 2 Transport,03/27/2016 08:10:46 PM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7796886144323, -122.408201798882)",160872953-52 +160630679,62,16024970,Medical Incident,03/03/2016,03/02/2016,03/03/2016 07:42:33 AM,03/03/2016 07:43:21 AM,03/03/2016 07:43:56 AM,03/03/2016 07:44:09 AM,03/03/2016 07:47:44 AM,03/03/2016 08:07:52 AM,03/03/2016 08:21:20 AM,Code 2 Transport,03/03/2016 08:44:03 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160630679-62 +111840197,68,11060788,Medical Incident,07/03/2011,07/03/2011,07/03/2011 01:39:27 PM,07/03/2011 01:41:09 PM,07/03/2011 01:42:00 PM,07/03/2011 01:42:18 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,04/25/2016 02:03:51 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,2,2,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",111840197-68 +111230258,E42,11040682,Structure Fire,05/03/2011,05/03/2011,05/03/2011 03:58:38 PM,05/03/2011 03:59:13 PM,05/03/2011 03:59:18 PM,04/25/2016 02:04:48 PM,05/03/2011 04:01:51 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 04:10:53 PM,0 Block of SCOTIA AVE,SF,94124,B10,42,6363,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7337135883349, -122.401319078602)",111230258-E42 +160893903,65,16035516,Medical Incident,03/29/2016,03/29/2016,03/29/2016 10:32:40 PM,03/29/2016 10:32:40 PM,03/29/2016 10:33:17 PM,03/29/2016 10:33:26 PM,03/29/2016 10:34:50 PM,03/29/2016 10:42:29 PM,03/29/2016 10:53:44 PM,Code 2 Transport,03/29/2016 11:54:01 PM,MARKET ST/11TH ST,San Francisco,94103,B02,36,3111,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",160893903-65 +160850831,67,16033675,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:21:01 AM,03/25/2016 08:21:01 AM,03/25/2016 08:21:21 AM,03/25/2016 08:21:44 AM,03/25/2016 08:33:22 AM,03/25/2016 08:48:01 AM,03/25/2016 09:04:47 AM,Code 2 Transport,03/25/2016 09:43:15 AM,1400 Block of VAN DYKE AV,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.727526799612, -122.389650110891)",160850831-67 +121340151,KM11,12044581,Medical Incident,05/13/2012,05/13/2012,05/13/2012 12:14:59 PM,05/13/2012 12:17:20 PM,05/13/2012 12:17:51 PM,05/13/2012 12:18:26 PM,05/13/2012 12:23:27 PM,05/13/2012 12:39:51 PM,05/13/2012 12:54:32 PM,Code 2 Transport,05/13/2012 01:25:47 PM,600 Block of 23RD AVE,SF,94121,B07,14,7177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7754703290477, -122.482182023429)",121340151-KM11 +122190347,RS1,12072794,Medical Incident,08/06/2012,08/06/2012,08/06/2012 09:10:11 PM,08/06/2012 09:11:35 PM,08/06/2012 09:11:44 PM,08/06/2012 09:12:17 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 09:13:25 PM,100 Block of MASON ST,SF,94102,B03,1,1366,E,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",122190347-RS1 +112760088,E10,11091275,Medical Incident,10/03/2011,10/03/2011,10/03/2011 08:03:29 AM,10/03/2011 08:05:01 AM,10/03/2011 08:05:41 AM,10/03/2011 08:07:19 AM,10/03/2011 08:10:28 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 08:24:29 AM,0 Block of 6TH AVE,SF,94118,B07,31,7126,3,3,3,true,,1,ENGINE,1,7,2,Inner Richmond,"(37.7875208493097, -122.464824318703)",112760088-E10 +131170292,D3,13039449,Structure Fire,04/27/2013,04/27/2013,04/27/2013 06:32:00 PM,04/27/2013 06:32:34 PM,04/27/2013 06:33:13 PM,04/27/2013 06:34:07 PM,04/27/2013 06:36:32 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/27/2013 06:44:55 PM,300 Block of DOLORES ST,SF,94114,B02,6,5251,3,3,3,false,Alarm,1,CHIEF,4,2,8,Castro/Upper Market,"(37.7634973385648, -122.426428418645)",131170292-D3 +131940266,E31,13066026,Structure Fire,07/13/2013,07/13/2013,07/13/2013 06:21:52 PM,07/13/2013 06:22:28 PM,07/13/2013 06:22:51 PM,07/13/2013 06:24:04 PM,07/13/2013 06:25:24 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 06:58:10 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Fire,1,ENGINE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",131940266-E31 +110240077,E06,11007795,Medical Incident,01/24/2011,01/23/2011,01/24/2011 07:55:48 AM,01/24/2011 07:58:29 AM,01/24/2011 07:58:41 AM,01/24/2011 08:00:07 AM,01/24/2011 08:02:25 AM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/24/2011 08:06:21 AM,100 Block of STATES ST,SF,94114,B05,6,5253,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",110240077-E06 +122260360,T19,12075071,Other,08/13/2012,08/13/2012,08/13/2012 08:47:00 PM,08/13/2012 08:47:15 PM,08/13/2012 08:47:37 PM,08/13/2012 08:49:03 PM,08/13/2012 08:54:40 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 09:12:57 PM,500 Block of JOHN MUIR DR,SF,94132,B08,19,8714,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",122260360-T19 +111890295,E43,11062579,Medical Incident,07/08/2011,07/08/2011,07/08/2011 05:31:12 PM,07/08/2011 05:31:59 PM,07/08/2011 05:32:09 PM,07/08/2011 05:34:39 PM,07/08/2011 05:36:18 PM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Other,07/08/2011 05:51:14 PM,1700 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",111890295-E43 +121950009,E28,12064765,Medical Incident,07/13/2012,07/12/2012,07/13/2012 01:05:14 AM,07/13/2012 01:05:52 AM,07/13/2012 01:06:40 AM,07/13/2012 01:08:24 AM,07/13/2012 01:12:10 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/13/2012 01:44:12 AM,3000 Block of POLK ST,SF,94109,B01,28,3134,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8048296798807, -122.423492217164)",121950009-E28 +131600234,AM02,13054399,Medical Incident,06/09/2013,06/09/2013,06/09/2013 04:09:29 PM,06/09/2013 04:12:49 PM,06/09/2013 04:13:05 PM,06/09/2013 04:13:43 PM,06/09/2013 04:21:40 PM,06/09/2013 04:52:19 PM,04/25/2016 01:52:22 PM,Code 2 Transport,06/09/2013 05:25:22 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",131600234-AM02 +140290142,E25,14009848,Electrical Hazard,01/29/2014,01/29/2014,01/29/2014 10:47:08 AM,01/29/2014 10:48:58 AM,01/29/2014 10:49:05 AM,01/29/2014 10:49:32 AM,01/29/2014 10:52:27 AM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/29/2014 10:55:56 AM,LA SALLE AV/NEWHALL ST,SF,94124,B10,25,6467,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7375417248864, -122.390521101725)",140290142-E25 +110060394,95,11002157,Medical Incident,01/06/2011,01/06/2011,01/06/2011 10:37:30 PM,01/06/2011 10:38:00 PM,01/06/2011 10:38:14 PM,01/06/2011 10:38:42 PM,01/06/2011 10:43:57 PM,01/06/2011 11:16:55 PM,01/06/2011 11:17:04 PM,Code 2 Transport,01/07/2011 12:07:50 AM,300 Block of JOOST AVE,SF,94131,B09,26,8216,2,2,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7322969505718, -122.443170322846)",110060394-95 +160373092,KM02,16014833,Medical Incident,02/06/2016,02/06/2016,02/06/2016 06:15:35 PM,02/06/2016 06:17:00 PM,02/06/2016 06:19:02 PM,02/06/2016 06:19:52 PM,02/06/2016 06:26:02 PM,02/06/2016 06:47:16 PM,02/06/2016 07:03:03 PM,Code 2 Transport,02/06/2016 07:35:46 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160373092-KM02 +111020312,84,11033935,Medical Incident,04/12/2011,04/12/2011,04/12/2011 06:48:02 PM,04/12/2011 06:48:38 PM,04/12/2011 06:53:57 PM,04/12/2011 06:57:44 PM,04/12/2011 07:12:23 PM,04/12/2011 07:25:18 PM,04/12/2011 07:28:46 PM,Code 2 Transport,04/12/2011 07:41:26 PM,1000 Block of MARKET ST,SF,94103,B03,1,1454,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",111020312-84 +160900494,89,16035593,Medical Incident,03/30/2016,03/29/2016,03/30/2016 06:02:36 AM,03/30/2016 06:09:30 AM,03/30/2016 06:09:47 AM,03/30/2016 06:10:09 AM,03/30/2016 06:16:08 AM,03/30/2016 06:56:21 AM,03/30/2016 07:12:54 AM,Code 2 Transport,03/30/2016 07:52:40 AM,0 Block of MONTANA ST,San Francisco,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7166742986629, -122.455048913828)",160900494-89 +121120052,E06,12037012,Medical Incident,04/21/2012,04/20/2012,04/21/2012 02:42:40 AM,04/21/2012 02:42:40 AM,04/21/2012 02:46:10 AM,04/21/2012 02:49:14 AM,04/21/2012 02:51:20 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Patient Declined Transport,04/21/2012 03:02:52 AM,100 Block of HARTFORD ST,SF,94114,B05,6,5417,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7601511990346, -122.433893032003)",121120052-E06 +140110053,RS2,14003738,Structure Fire,01/11/2014,01/10/2014,01/11/2014 03:38:56 AM,01/11/2014 03:41:42 AM,01/11/2014 03:42:19 AM,01/11/2014 03:44:22 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/11/2014 03:49:04 AM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,,3,3,false,Alarm,1,RESCUE SQUAD,7,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",140110053-RS2 +132150123,E07,13072555,Medical Incident,08/03/2013,08/03/2013,08/03/2013 09:32:13 AM,08/03/2013 09:35:18 AM,08/03/2013 09:35:52 AM,08/03/2013 09:36:32 AM,08/03/2013 09:43:36 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/03/2013 09:50:47 AM,3100 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7524180928571, -122.414623849785)",132150123-E07 +103310054,73,10105859,Medical Incident,11/27/2010,11/26/2010,11/27/2010 04:13:00 AM,11/27/2010 04:13:50 AM,11/27/2010 04:14:10 AM,11/27/2010 04:14:33 AM,11/27/2010 04:24:03 AM,11/27/2010 04:51:39 AM,11/27/2010 04:57:29 AM,Code 2 Transport,11/27/2010 05:27:16 AM,2100 Block of POST ST,SF,94115,B04,10,4131,1,1,2,true,,1,MEDIC,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",103310054-73 +160501369,KM11,16020052,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:25:13 AM,02/19/2016 11:27:19 AM,02/19/2016 11:27:38 AM,02/19/2016 11:29:32 AM,02/19/2016 11:37:02 AM,02/19/2016 11:57:28 AM,02/19/2016 12:07:56 PM,Code 2 Transport,02/19/2016 12:45:40 PM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,false,Non Life-threatening,1,PRIVATE,3,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",160501369-KM11 +110790378,93,11026214,Medical Incident,03/20/2011,03/20/2011,03/20/2011 10:39:14 PM,03/20/2011 10:44:23 PM,03/20/2011 10:45:03 PM,03/20/2011 10:45:25 PM,03/20/2011 10:52:47 PM,03/20/2011 11:14:19 PM,03/20/2011 11:19:04 PM,Code 2 Transport,03/20/2011 11:39:50 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,2,2,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",110790378-93 +111570301,AM06,11052006,Medical Incident,06/06/2011,06/06/2011,06/06/2011 05:37:13 PM,06/06/2011 05:38:57 PM,06/06/2011 05:39:44 PM,06/06/2011 05:40:38 PM,06/06/2011 05:51:26 PM,06/06/2011 06:04:33 PM,06/06/2011 06:22:42 PM,Code 2 Transport,06/06/2011 06:58:28 PM,300 Block of RIVERA ST,SF,94116,B08,40,736,3,3,3,false,,1,PRIVATE,3,8,7,West of Twin Peaks,"(37.7469789772547, -122.470222363445)",111570301-AM06 +160052328,74,16002058,Medical Incident,01/05/2016,01/05/2016,01/05/2016 03:43:46 PM,01/05/2016 03:50:09 PM,01/05/2016 03:51:22 PM,01/05/2016 03:51:30 PM,01/05/2016 03:57:20 PM,01/05/2016 04:04:26 PM,01/05/2016 04:11:37 PM,Code 2 Transport,01/05/2016 04:57:03 PM,1200 Block of EDDY ST,San Francisco,94115,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",160052328-74 +122180321,E28,12072437,Medical Incident,08/05/2012,08/05/2012,08/05/2012 07:28:44 PM,08/05/2012 07:29:44 PM,08/05/2012 07:29:57 PM,08/05/2012 07:30:15 PM,08/05/2012 07:34:30 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 07:52:03 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",122180321-E28 +122720285,AP,12089842,Other,09/28/2012,09/28/2012,09/28/2012 09:09:49 PM,09/28/2012 09:09:49 PM,09/28/2012 09:09:49 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Fire,09/28/2012 09:10:04 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122720285-AP +103630016,E14,10116316,Medical Incident,12/29/2010,12/28/2010,12/29/2010 01:28:03 AM,12/29/2010 01:29:28 AM,12/29/2010 01:29:43 AM,12/29/2010 01:30:44 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/29/2010 01:31:42 AM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,true,,1,ENGINE,3,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",103630016-E14 +160813528,71,16032348,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:32:13 PM,03/21/2016 08:32:13 PM,03/21/2016 08:33:09 PM,03/21/2016 08:33:15 PM,03/21/2016 08:48:53 PM,03/21/2016 08:59:14 PM,03/21/2016 09:21:18 PM,Other,03/21/2016 10:03:32 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7716194932179, -122.445557574682)",160813528-71 +120190257,B09,12006410,Alarms,01/19/2012,01/19/2012,01/19/2012 04:02:09 PM,01/19/2012 04:03:14 PM,01/19/2012 04:04:17 PM,01/19/2012 04:06:06 PM,01/19/2012 04:07:46 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Fire,01/19/2012 04:17:40 PM,8100 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",120190257-B09 +112830073,E13,11093582,Medical Incident,10/10/2011,10/10/2011,10/10/2011 08:28:23 AM,10/10/2011 08:28:31 AM,10/10/2011 08:28:47 AM,10/10/2011 08:30:12 AM,10/10/2011 08:31:57 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 08:43:32 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",112830073-E13 +132340342,E05,13079131,Medical Incident,08/22/2013,08/22/2013,08/22/2013 09:16:47 PM,08/22/2013 09:17:59 PM,08/22/2013 09:18:47 PM,04/25/2016 01:51:10 PM,08/22/2013 09:22:18 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,08/22/2013 09:36:35 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",132340342-E05 +132230291,E07,13075413,Medical Incident,08/11/2013,08/11/2013,08/11/2013 07:17:09 PM,08/11/2013 07:17:27 PM,08/11/2013 07:18:04 PM,08/11/2013 07:19:22 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 07:20:34 PM,24TH ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7523727894276, -122.416265511485)",132230291-E07 +122460396,54,12081540,Medical Incident,09/02/2012,09/02/2012,09/02/2012 11:00:20 PM,09/02/2012 11:01:55 PM,09/02/2012 11:02:08 PM,09/02/2012 11:02:48 PM,09/02/2012 11:23:09 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Patient Declined Transport,09/02/2012 11:52:57 PM,200 Block of HAHN ST,SF,94134,B09,43,6241,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7101932992299, -122.416700898623)",122460396-54 +160593092,52,16023683,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:04:27 PM,02/28/2016 09:04:27 PM,02/28/2016 09:04:44 PM,02/28/2016 09:04:57 PM,02/28/2016 09:20:44 PM,02/28/2016 09:33:24 PM,02/28/2016 09:52:08 PM,Code 2 Transport,02/28/2016 10:27:32 PM,30TH AV/JUDAH ST,San Francisco,94122,B08,23,7536,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.76118137899, -122.488779156297)",160593092-52 +122120356,E35,12070518,Medical Incident,07/30/2012,07/30/2012,07/30/2012 09:04:57 PM,07/30/2012 09:06:02 PM,07/30/2012 09:07:34 PM,07/30/2012 09:09:34 PM,07/30/2012 09:13:20 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 09:15:19 PM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,1,1,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",122120356-E35 +112110257,AM06,11069700,Medical Incident,07/30/2011,07/30/2011,07/30/2011 04:52:19 PM,07/30/2011 04:53:05 PM,07/30/2011 04:53:25 PM,07/30/2011 04:54:17 PM,07/30/2011 05:11:40 PM,07/30/2011 05:13:52 PM,07/30/2011 05:25:30 PM,Code 2 Transport,07/30/2011 06:10:42 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.7982249345487, -122.404282497745)",112110257-AM06 +130900051,E02,13029997,Medical Incident,03/31/2013,03/30/2013,03/31/2013 03:12:53 AM,03/31/2013 03:13:47 AM,03/31/2013 03:14:00 AM,03/31/2013 03:16:15 AM,03/31/2013 03:18:10 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 03:21:32 AM,800 Block of CALIFORNIA ST,SF,94108,B01,2,1356,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7922694289836, -122.407814772426)",130900051-E02 +133110024,E36,13105595,Alarms,11/07/2013,11/06/2013,11/07/2013 02:26:51 AM,11/07/2013 02:26:51 AM,11/07/2013 02:27:01 AM,11/07/2013 02:28:50 AM,11/07/2013 02:32:03 AM,04/25/2016 01:49:53 PM,04/25/2016 01:49:53 PM,Other,11/07/2013 02:37:53 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",133110024-E36 +133520397,KM15,13119744,Medical Incident,12/18/2013,12/18/2013,12/18/2013 10:18:24 PM,12/18/2013 10:18:42 PM,12/18/2013 10:19:02 PM,12/18/2013 10:19:42 PM,12/18/2013 10:23:41 PM,12/18/2013 10:48:51 PM,12/18/2013 11:00:21 PM,Code 2 Transport,12/18/2013 11:31:12 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",133520397-KM15 +120510268,58,12016951,Medical Incident,02/20/2012,02/20/2012,02/20/2012 06:56:14 PM,02/20/2012 06:58:18 PM,02/20/2012 06:58:33 PM,02/20/2012 06:59:51 PM,02/20/2012 07:05:06 PM,02/20/2012 07:18:58 PM,02/20/2012 07:26:00 PM,Code 2 Transport,02/20/2012 07:49:20 PM,1800 Block of 10TH AVE,SF,94122,B08,22,7342,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7537324796967, -122.466734271718)",120510268-58 +130600265,T03,13020190,Alarms,03/01/2013,03/01/2013,03/01/2013 04:33:32 PM,03/01/2013 04:35:14 PM,03/01/2013 04:35:30 PM,03/01/2013 04:35:50 PM,03/01/2013 04:37:47 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 04:44:03 PM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",130600265-T03 +102270026,E28,10071328,Medical Incident,08/15/2010,08/14/2010,08/15/2010 01:56:04 AM,08/15/2010 01:56:36 AM,08/15/2010 01:56:53 AM,08/15/2010 01:58:19 AM,08/15/2010 02:00:09 AM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,Unable to Locate,08/15/2010 02:06:27 AM,GRANT AV/GREEN ST,SF,94133,B01,28,1266,3,E,3,true,,1,ENGINE,2,1,3,North Beach,"(37.7997036751716, -122.407395244265)",102270026-E28 +160642321,61,16025552,Medical Incident,03/04/2016,03/04/2016,03/04/2016 02:59:07 PM,03/04/2016 02:59:07 PM,03/04/2016 02:59:33 PM,03/04/2016 02:59:42 PM,03/04/2016 03:09:09 PM,03/04/2016 03:21:19 PM,03/04/2016 03:32:40 PM,Code 2 Transport,03/04/2016 04:06:32 PM,JUDAH ST/28TH AV,San Francisco,94122,B08,18,7513,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7612756296454, -122.486639896833)",160642321-61 +160621653,56,16024684,Medical Incident,03/02/2016,03/02/2016,03/02/2016 12:09:47 PM,03/02/2016 12:10:27 PM,03/02/2016 12:11:05 PM,03/02/2016 12:11:28 PM,03/02/2016 12:19:06 PM,03/02/2016 12:29:22 PM,03/02/2016 12:38:03 PM,Code 2 Transport,03/02/2016 01:13:12 PM,0 Block of CAMBON DR,San Francisco,94132,B08,19,8428,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7183176082464, -122.474447191871)",160621653-56 +121200182,E05,12039826,Medical Incident,04/29/2012,04/29/2012,04/29/2012 11:44:23 AM,04/29/2012 11:45:09 AM,04/29/2012 11:46:18 AM,04/29/2012 11:47:20 AM,04/29/2012 11:48:59 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 11:56:35 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121200182-E05 +112710146,65,11089497,Medical Incident,09/28/2011,09/28/2011,09/28/2011 11:19:04 AM,09/28/2011 11:21:41 AM,09/28/2011 11:21:53 AM,09/28/2011 11:22:25 AM,09/28/2011 11:24:18 AM,09/28/2011 11:43:11 AM,09/28/2011 12:06:05 PM,Code 2 Transport,09/28/2011 12:25:36 PM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7576217212029, -122.418887293065)",112710146-65 +103480150,55,10111566,Medical Incident,12/14/2010,12/14/2010,12/14/2010 10:11:45 AM,12/14/2010 10:12:35 AM,12/14/2010 10:12:54 AM,12/14/2010 10:13:04 AM,12/14/2010 10:15:09 AM,12/14/2010 10:36:28 AM,12/14/2010 10:42:45 AM,Code 2 Transport,12/14/2010 11:17:55 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",103480150-55 +113130252,E01,11104062,Medical Incident,11/09/2011,11/09/2011,11/09/2011 04:10:29 PM,11/09/2011 04:11:57 PM,11/09/2011 04:12:08 PM,11/09/2011 04:13:16 PM,11/09/2011 04:15:14 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/09/2011 04:34:42 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",113130252-E01 +140370067,E34,14012409,Electrical Hazard,02/06/2014,02/05/2014,02/06/2014 06:39:58 AM,02/06/2014 06:40:57 AM,02/06/2014 06:41:06 AM,02/06/2014 06:42:15 AM,02/06/2014 06:44:44 AM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 07:19:14 AM,47TH AV/ANZA ST,SF,94121,B07,34,7276,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7770925958131, -122.508160549697)",140370067-E34 +120300159,74,12009974,Medical Incident,01/30/2012,01/30/2012,01/30/2012 12:34:08 PM,01/30/2012 12:34:58 PM,01/30/2012 12:35:35 PM,01/30/2012 12:35:42 PM,01/30/2012 12:41:35 PM,01/30/2012 12:51:13 PM,01/30/2012 01:13:08 PM,Code 2 Transport,01/30/2012 01:38:22 PM,BEACH ST/LARKIN ST,SF,94109,B01,28,1615,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8064363647501, -122.422196208979)",120300159-74 +121660109,67,12054998,Medical Incident,06/14/2012,06/14/2012,06/14/2012 09:28:59 AM,06/14/2012 09:29:41 AM,06/14/2012 09:29:52 AM,06/14/2012 09:31:02 AM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Other,04/25/2016 01:58:13 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",121660109-67 +123200258,RS1,12106438,Medical Incident,11/15/2012,11/15/2012,11/15/2012 04:31:32 PM,11/15/2012 04:32:12 PM,11/15/2012 04:32:38 PM,11/15/2012 04:33:47 PM,11/15/2012 04:37:53 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 04:39:07 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",123200258-RS1 +113620317,AM18,11120371,Medical Incident,12/28/2011,12/28/2011,12/28/2011 07:15:02 PM,12/28/2011 07:17:14 PM,12/28/2011 07:17:29 PM,12/28/2011 07:18:33 PM,12/28/2011 07:20:46 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,No Merit,12/28/2011 07:32:11 PM,0 Block of FELL ST,SF,94102,B02,36,3111,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7764405100838, -122.418481123408)",113620317-AM18 +111180310,79,11039037,Medical Incident,04/28/2011,04/28/2011,04/28/2011 07:20:10 PM,04/28/2011 07:22:01 PM,04/28/2011 07:23:20 PM,04/28/2011 07:23:46 PM,04/25/2016 02:04:53 PM,04/28/2011 07:37:09 PM,04/28/2011 07:59:16 PM,Code 2 Transport,04/28/2011 08:08:53 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",111180310-79 +112800111,81,11092616,Medical Incident,10/07/2011,10/07/2011,10/07/2011 09:05:35 AM,10/07/2011 09:06:09 AM,10/07/2011 09:06:22 AM,10/07/2011 09:06:34 AM,10/07/2011 09:36:07 AM,10/07/2011 09:45:25 AM,10/07/2011 09:51:11 AM,Code 2 Transport,10/07/2011 10:27:40 AM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,3,3,3,true,,1,MEDIC,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",112800111-81 +160393829,68,16015824,Medical Incident,02/08/2016,02/08/2016,02/08/2016 11:01:46 PM,02/08/2016 11:03:08 PM,02/08/2016 11:03:21 PM,02/08/2016 11:03:41 PM,02/08/2016 11:21:35 PM,02/08/2016 11:35:13 PM,02/08/2016 11:43:04 PM,Code 2 Transport,02/09/2016 12:22:32 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160393829-68 +120570155,E34,12018782,Medical Incident,02/26/2012,02/26/2012,02/26/2012 10:53:47 AM,02/26/2012 10:54:28 AM,02/26/2012 10:55:13 AM,02/26/2012 10:57:15 AM,02/26/2012 10:58:18 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 11:15:01 AM,500 Block of 38TH AVE,SF,94121,B07,34,7255,3,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.778489948235, -122.498662035969)",120570155-E34 +102310276,86,10072777,Medical Incident,08/19/2010,08/19/2010,08/19/2010 05:27:39 PM,08/19/2010 05:29:15 PM,08/19/2010 05:29:40 PM,08/19/2010 05:31:25 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 05:31:58 PM,1000 Block of GILMAN AVE,SF,94124,B10,17,6611,2,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7187222856771, -122.389118324965)",102310276-86 +103650328,60,10117221,Medical Incident,12/31/2010,12/31/2010,12/31/2010 09:22:52 PM,12/31/2010 09:23:13 PM,12/31/2010 09:23:45 PM,12/31/2010 09:24:08 PM,12/31/2010 09:28:41 PM,12/31/2010 09:53:14 PM,12/31/2010 10:46:48 PM,Code 2 Transport,12/31/2010 10:49:09 PM,36TH AV/SHORE VIEW AV,SF,94121,B07,34,7255,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7806333891649, -122.496598463217)",103650328-60 +112140168,83,11070615,Traffic Collision,08/02/2011,08/02/2011,08/02/2011 12:23:40 PM,08/02/2011 12:26:33 PM,08/02/2011 12:27:08 PM,08/02/2011 12:27:24 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 12:32:14 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,2,2,2,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",112140168-83 +160364069,KM07,16014475,Medical Incident,02/05/2016,02/05/2016,02/05/2016 10:25:15 PM,02/05/2016 10:27:39 PM,02/05/2016 10:28:33 PM,02/05/2016 10:28:54 PM,02/05/2016 10:38:50 PM,02/05/2016 10:55:33 PM,02/05/2016 11:10:16 PM,Code 2 Transport,02/05/2016 11:31:57 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160364069-KM07 +112290124,T10,11075624,Alarms,08/17/2011,08/17/2011,08/17/2011 10:41:56 AM,08/17/2011 10:43:22 AM,08/17/2011 10:43:29 AM,08/17/2011 10:43:55 AM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 10:53:41 AM,2400 Block of CALIFORNIA ST,SF,94115,B04,38,3616,3,3,3,false,,1,TRUCK,2,4,2,Pacific Heights,"(37.7887473804417, -122.434651659294)",112290124-T10 +160430191,AM24,16017113,Medical Incident,02/12/2016,02/11/2016,02/12/2016 01:37:43 AM,02/12/2016 01:39:52 AM,02/12/2016 01:40:01 AM,02/12/2016 01:40:36 AM,02/12/2016 01:43:09 AM,02/12/2016 01:52:58 AM,02/12/2016 02:19:39 AM,Code 2 Transport,02/12/2016 02:50:53 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160430191-AM24 +121420239,E42,12047284,Structure Fire,05/21/2012,05/21/2012,05/21/2012 03:37:50 PM,05/21/2012 03:38:28 PM,05/21/2012 03:38:40 PM,05/21/2012 03:40:56 PM,05/21/2012 03:41:58 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/21/2012 04:10:55 PM,0 Block of EDINBURGH ST,SF,94112,B09,32,6143,3,3,3,true,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7280089884911, -122.426803248719)",121420239-E42 +133240299,E03,13110122,Medical Incident,11/20/2013,11/20/2013,11/20/2013 04:24:37 PM,11/20/2013 04:25:17 PM,11/20/2013 04:25:30 PM,11/20/2013 04:26:45 PM,11/20/2013 04:28:43 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 04:37:30 PM,EDDY ST/VAN NESS AV,SF,94109,B02,3,3163,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",133240299-E03 +121550187,KM09,12051322,Medical Incident,06/03/2012,06/03/2012,06/03/2012 01:03:52 PM,06/03/2012 01:04:06 PM,06/03/2012 01:04:27 PM,06/03/2012 01:05:30 PM,06/03/2012 01:07:13 PM,06/03/2012 01:28:55 PM,06/03/2012 01:35:47 PM,Code 2 Transport,06/03/2012 02:01:49 PM,GOLDEN GATE AV/LARKIN ST,SF,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",121550187-KM09 +133530121,E01,13119866,Medical Incident,12/19/2013,12/19/2013,12/19/2013 10:17:49 AM,12/19/2013 10:20:20 AM,12/19/2013 10:20:51 AM,12/19/2013 10:21:12 AM,12/19/2013 10:23:42 AM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 10:30:24 AM,300 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",133530121-E01 +140360085,82,14012134,Medical Incident,02/05/2014,02/05/2014,02/05/2014 09:03:38 AM,02/05/2014 09:04:02 AM,02/05/2014 09:04:31 AM,02/05/2014 09:04:38 AM,02/05/2014 09:15:51 AM,02/05/2014 09:24:08 AM,02/05/2014 09:45:58 AM,Code 2 Transport,02/05/2014 10:21:44 AM,200 Block of RUTLEDGE ST,SF,94110,B06,9,5667,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7451204689112, -122.408776065109)",140360085-82 +121620058,B10,12053521,Outside Fire,06/10/2012,06/09/2012,06/10/2012 02:36:31 AM,06/10/2012 02:38:25 AM,06/10/2012 02:38:51 AM,06/10/2012 02:41:13 AM,06/10/2012 02:46:43 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 03:15:30 AM,1400 Block of HUDSON AVE,SF,94124,B10,25,6521,3,3,3,false,Fire,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7383338978754, -122.385135095076)",121620058-B10 +112820191,D3,11093338,Structure Fire,10/09/2011,10/09/2011,10/09/2011 01:32:18 PM,10/09/2011 01:33:40 PM,10/09/2011 01:33:54 PM,10/09/2011 01:34:44 PM,10/09/2011 01:41:10 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 01:49:08 PM,100 Block of MERCED AVE,SF,94127,B08,39,8617,3,3,3,false,,1,CHIEF,7,8,7,West of Twin Peaks,"(37.744049522508, -122.462108757816)",112820191-D3 +111870131,AM04,11061778,Medical Incident,07/06/2011,07/06/2011,07/06/2011 10:44:34 AM,07/06/2011 10:46:52 AM,07/06/2011 10:47:38 AM,07/06/2011 10:48:13 AM,07/06/2011 10:54:35 AM,07/06/2011 11:14:35 AM,07/06/2011 11:31:32 AM,Code 2 Transport,07/06/2011 12:21:22 PM,400 Block of SUTTER ST,SF,94108,B01,1,1324,1,1,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",111870131-AM04 +111550182,T17,11051221,Alarms,06/04/2011,06/04/2011,06/04/2011 11:54:55 AM,06/04/2011 11:55:42 AM,06/04/2011 11:56:21 AM,06/04/2011 11:59:06 AM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,Other,06/04/2011 11:59:54 AM,100 Block of KISKA RD,SF,94124,B10,17,6625,3,3,3,false,,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7300498963351, -122.376015807467)",111550182-T17 +121390087,E01,12046085,Medical Incident,05/18/2012,05/18/2012,05/18/2012 08:34:42 AM,05/18/2012 08:36:14 AM,05/18/2012 08:36:50 AM,05/18/2012 08:37:13 AM,05/18/2012 08:37:24 AM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/18/2012 09:09:12 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",121390087-E01 +110570371,79,11018923,Medical Incident,02/26/2011,02/26/2011,02/26/2011 11:27:04 PM,02/26/2011 11:29:24 PM,02/26/2011 11:29:42 PM,02/26/2011 11:30:27 PM,02/26/2011 11:37:47 PM,02/27/2011 12:00:43 AM,02/27/2011 12:32:11 AM,Code 2 Transport,02/27/2011 12:58:31 AM,200 Block of VELASCO AVE,SF,94134,B09,44,6251,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7085210381822, -122.414484707335)",110570371-79 +111420274,E13,11047262,Structure Fire,05/22/2011,05/22/2011,05/22/2011 04:58:49 PM,05/22/2011 04:59:51 PM,05/22/2011 05:00:58 PM,05/22/2011 05:02:39 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,Other,05/22/2011 05:12:24 PM,1300 Block of GRANT AVE,SF,94133,B01,28,1266,3,3,3,true,,1,ENGINE,9,1,3,North Beach,"(37.799231230896, -122.407369153529)",111420274-E13 +103310013,T03,10105820,Medical Incident,11/27/2010,11/26/2010,11/27/2010 12:43:40 AM,11/27/2010 12:44:42 AM,11/27/2010 12:45:08 AM,11/27/2010 12:46:33 AM,11/27/2010 12:50:00 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 12:52:59 AM,GEARY ST/LEAVENWORTH ST,SF,94109,B04,3,1543,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",103310013-T03 +121160280,E01,12038528,Medical Incident,04/25/2012,04/25/2012,04/25/2012 05:47:36 PM,04/25/2012 05:49:04 PM,04/25/2012 05:52:23 PM,04/25/2012 05:52:49 PM,04/25/2012 05:54:59 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Unable to Locate,04/25/2012 06:02:14 PM,2ND ST/HARRISON ST,SF,94105,B03,8,2151,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7843110117006, -122.395160623078)",121160280-E01 +160041113,61,16001539,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:02:00 AM,01/04/2016 10:03:21 AM,01/04/2016 10:03:35 AM,01/04/2016 10:03:43 AM,01/04/2016 10:11:59 AM,01/04/2016 10:25:20 AM,01/04/2016 10:37:37 AM,Code 2 Transport,01/04/2016 11:07:25 AM,1800 Block of OAKDALE AVE,San Francisco,94124,B10,42,6444,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7370657700508, -122.394565756376)",160041113-61 +132610400,E02,13088557,Medical Incident,09/18/2013,09/18/2013,09/18/2013 08:52:14 PM,09/18/2013 08:52:27 PM,09/18/2013 08:52:56 PM,09/18/2013 08:54:25 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 08:55:58 PM,400 Block of UNION ST,SF,94133,B01,28,1252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8007365278513, -122.406362541513)",132610400-E02 +110030148,E41,11000947,Medical Incident,01/03/2011,01/03/2011,01/03/2011 11:27:20 AM,01/03/2011 11:28:56 AM,01/03/2011 11:29:07 AM,01/03/2011 11:29:30 AM,01/03/2011 11:32:28 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 11:45:38 AM,1200 Block of GREEN ST,SF,94109,B01,41,1631,3,3,3,true,,1,ENGINE,1,1,3,Russian Hill,"(37.7982535635087, -122.419386977986)",110030148-E41 +102390022,85,10075254,Medical Incident,08/27/2010,08/26/2010,08/27/2010 01:40:28 AM,08/27/2010 01:42:23 AM,08/27/2010 01:43:05 AM,08/27/2010 01:43:31 AM,08/27/2010 01:48:09 AM,08/27/2010 02:04:09 AM,08/27/2010 02:13:09 AM,Code 2 Transport,08/27/2010 02:45:44 AM,BONIFACIO ST/LAPU LAPU ST,SF,94107,B03,1,2215,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7825959122596, -122.399349287523)",102390022-85 +112250295,81,11074422,Medical Incident,08/13/2011,08/13/2011,08/13/2011 06:05:46 PM,08/13/2011 06:06:27 PM,08/13/2011 06:06:58 PM,08/13/2011 06:07:40 PM,08/13/2011 06:10:47 PM,08/13/2011 06:28:36 PM,08/13/2011 06:37:13 PM,Code 2 Transport,08/13/2011 06:56:55 PM,100 Block of CLINTON PARK,SF,94103,B02,36,5126,3,1,2,true,,1,MEDIC,2,2,8,Mission,"(37.7692677111289, -122.423396856968)",112250295-81 +121270222,T08,12042307,Outside Fire,05/06/2012,05/06/2012,05/06/2012 03:33:05 PM,05/06/2012 03:33:06 PM,05/06/2012 03:34:31 PM,05/06/2012 03:37:06 PM,05/06/2012 03:40:40 PM,04/25/2016 01:58:49 PM,04/25/2016 01:58:49 PM,Other,05/06/2012 03:41:41 PM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,8,966,3,3,3,false,Alarm,1,TRUCK,2,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",121270222-T08 +110800358,73,11026508,Medical Incident,03/21/2011,03/21/2011,03/21/2011 09:51:15 PM,03/21/2011 09:53:53 PM,03/21/2011 09:54:10 PM,03/21/2011 09:54:24 PM,03/21/2011 10:00:30 PM,03/21/2011 10:21:00 PM,03/21/2011 10:52:52 PM,Code 2 Transport,03/21/2011 11:10:42 PM,200 Block of ALMA ST,SF,94117,B05,12,5162,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7629834619379, -122.451564578029)",110800358-73 +160151227,KM08,16005931,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:29:35 AM,01/15/2016 10:30:19 AM,01/15/2016 10:31:07 AM,01/15/2016 10:31:45 AM,01/15/2016 10:41:06 AM,01/15/2016 10:53:27 AM,01/15/2016 11:05:52 AM,Code 2 Transport,01/15/2016 11:45:13 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160151227-KM08 +111590002,E18,11052438,Medical Incident,06/08/2011,06/07/2011,06/08/2011 12:17:42 AM,06/08/2011 12:18:44 AM,06/08/2011 12:19:00 AM,06/08/2011 12:20:25 AM,06/08/2011 12:22:42 AM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/08/2011 12:44:39 AM,2200 Block of 35TH AVE,SF,94116,B08,18,7555,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7450895752933, -122.493101949525)",111590002-E18 +113550297,56,11117967,Medical Incident,12/21/2011,12/21/2011,12/21/2011 06:17:49 PM,12/21/2011 06:18:26 PM,12/21/2011 06:18:49 PM,12/21/2011 06:19:48 PM,12/21/2011 06:25:43 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 06:27:26 PM,ANDOVER ST/CORTLAND AV,SF,94110,B06,32,5732,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7390616989426, -122.416519601586)",113550297-56 +132090259,AM02,13070754,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:26:47 PM,07/28/2013 04:33:23 PM,07/28/2013 04:33:51 PM,07/28/2013 04:34:22 PM,07/28/2013 04:46:11 PM,07/28/2013 05:13:21 PM,07/28/2013 05:29:04 PM,Code 2 Transport,07/28/2013 05:36:17 PM,200 Block of 10TH ST,SF,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",132090259-AM02 +131230362,58,13041597,Traffic Collision,05/03/2013,05/03/2013,05/03/2013 06:33:10 PM,05/03/2013 06:38:30 PM,05/03/2013 06:38:49 PM,05/03/2013 06:39:19 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 06:39:50 PM,40TH AV/BALBOA ST,SF,94121,B07,34,7263,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7755691175874, -122.500515200856)",131230362-58 +110640105,T11,11021014,Assist Police,03/05/2011,03/04/2011,03/05/2011 07:51:37 AM,03/05/2011 07:52:11 AM,03/05/2011 07:52:29 AM,03/05/2011 07:53:14 AM,03/05/2011 07:57:10 AM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Fire,03/05/2011 08:05:19 AM,1600 Block of DOLORES ST,SF,94110,B06,11,5576,3,3,3,false,,1,TRUCK,1,6,8,Noe Valley,"(37.7426453576384, -122.424119996263)",110640105-T11 +123310004,93,12109878,Medical Incident,11/26/2012,11/25/2012,11/26/2012 12:04:33 AM,11/26/2012 12:06:02 AM,11/26/2012 12:07:15 AM,11/26/2012 12:07:51 AM,11/26/2012 12:18:30 AM,11/26/2012 12:24:36 AM,11/26/2012 12:36:48 AM,Code 2 Transport,11/26/2012 01:06:03 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",123310004-93 +110700070,92,11022938,Traffic Collision,03/11/2011,03/11/2011,03/11/2011 08:00:20 AM,03/11/2011 08:01:09 AM,03/11/2011 08:01:45 AM,03/11/2011 08:02:24 AM,03/11/2011 08:08:23 AM,03/11/2011 08:25:37 AM,03/11/2011 08:35:55 AM,Code 2 Transport,03/11/2011 09:08:00 AM,24TH ST/CHURCH ST,SF,94114,B06,11,5523,3,3,3,true,,1,MEDIC,2,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",110700070-92 +160760354,64,16029986,Medical Incident,03/16/2016,03/15/2016,03/16/2016 04:22:09 AM,03/16/2016 04:22:09 AM,03/16/2016 04:22:21 AM,03/16/2016 04:22:33 AM,03/16/2016 04:27:40 AM,03/16/2016 04:44:33 AM,03/16/2016 04:49:03 AM,Code 2 Transport,03/16/2016 05:47:40 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160760354-64 +160232541,52,16009231,Medical Incident,01/23/2016,01/23/2016,01/23/2016 05:01:50 PM,01/23/2016 05:03:35 PM,01/23/2016 05:03:51 PM,01/23/2016 05:04:03 PM,01/23/2016 05:05:18 PM,01/23/2016 05:20:40 PM,01/23/2016 05:21:40 PM,Code 3 Transport,01/23/2016 05:56:37 PM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160232541-52 +130710253,E05,13023749,Medical Incident,03/12/2013,03/12/2013,03/12/2013 04:20:04 PM,03/12/2013 04:20:43 PM,03/12/2013 04:21:03 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 04:22:19 PM,GEARY BL/VAN NESS AV,SF,94109,B04,3,3161,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",130710253-E05 +133060343,82,13104186,Medical Incident,11/02/2013,11/02/2013,11/02/2013 09:54:23 PM,11/02/2013 09:55:55 PM,11/02/2013 09:56:10 PM,11/02/2013 09:57:24 PM,11/02/2013 10:00:09 PM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,Fire,11/02/2013 10:04:47 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",133060343-82 +102760005,77,10087579,Medical Incident,10/03/2010,10/02/2010,10/03/2010 12:04:33 AM,10/03/2010 12:05:51 AM,10/03/2010 12:06:21 AM,04/25/2016 02:08:17 PM,10/03/2010 12:09:36 AM,10/03/2010 12:18:55 AM,10/03/2010 12:25:21 AM,Code 2 Transport,10/03/2010 12:52:00 AM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",102760005-77 +130840334,83,13028171,Medical Incident,03/25/2013,03/25/2013,03/25/2013 07:56:28 PM,03/25/2013 07:58:40 PM,03/25/2013 07:58:56 PM,03/25/2013 07:59:07 PM,03/25/2013 08:04:42 PM,03/25/2013 08:08:59 PM,03/25/2013 08:18:51 PM,Code 2 Transport,03/25/2013 08:35:16 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",130840334-83 +120130094,E36,12004370,Gas Leak (Natural and LP Gases),01/13/2012,01/13/2012,01/13/2012 09:35:22 AM,01/13/2012 09:38:08 AM,01/13/2012 09:38:55 AM,01/13/2012 09:40:21 AM,01/13/2012 09:44:17 AM,04/25/2016 02:00:39 PM,04/25/2016 02:00:39 PM,Other,01/13/2012 10:21:17 AM,1300 Block of NATOMA ST,SF,94103,B02,36,5215,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7675554709851, -122.418548327295)",120130094-E36 +121570142,E18,12051911,Structure Fire,06/05/2012,06/05/2012,06/05/2012 11:52:13 AM,06/05/2012 11:53:15 AM,06/05/2012 11:53:53 AM,06/05/2012 11:55:00 AM,06/05/2012 11:58:20 AM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,Other,06/05/2012 12:14:29 PM,1400 Block of 38TH AVE,SF,94122,B08,18,7521,3,3,3,true,Fire,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7598718838573, -122.497218491144)",121570142-E18 +160313936,71,16012394,Medical Incident,01/31/2016,01/31/2016,01/31/2016 11:51:13 PM,01/31/2016 11:53:20 PM,01/31/2016 11:53:42 PM,01/31/2016 11:53:51 PM,01/31/2016 11:58:05 PM,02/01/2016 12:22:37 AM,02/01/2016 12:39:32 AM,Code 2 Transport,02/01/2016 01:35:36 AM,500 Block of 43RD AVE,San Francisco,94121,B07,34,7267,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7782447239577, -122.504019711201)",160313936-71 +160303318,54,16011925,Medical Incident,01/30/2016,01/30/2016,01/30/2016 07:42:49 PM,01/30/2016 07:44:51 PM,01/30/2016 07:45:18 PM,01/30/2016 07:45:28 PM,01/30/2016 08:00:27 PM,01/30/2016 08:20:13 PM,01/30/2016 08:36:18 PM,Code 2 Transport,01/30/2016 09:17:32 PM,1300 Block of GOUGH ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7857569605828, -122.424841094899)",160303318-54 +123450207,KM12,12115342,Medical Incident,12/10/2012,12/10/2012,12/10/2012 12:10:51 PM,12/10/2012 12:11:49 PM,12/10/2012 12:12:00 PM,12/10/2012 12:13:27 PM,12/10/2012 12:24:59 PM,12/10/2012 12:52:02 PM,12/10/2012 12:55:57 PM,Code 3 Transport,12/10/2012 01:37:54 PM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",123450207-KM12 +123390258,E11,12113118,Administrative,12/04/2012,12/04/2012,12/04/2012 03:49:29 PM,12/04/2012 03:49:30 PM,12/04/2012 03:49:47 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 03:51:53 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",123390258-E11 +103050028,E05,10097356,Medical Incident,11/01/2010,10/31/2010,11/01/2010 12:54:26 AM,11/01/2010 12:56:10 AM,11/01/2010 12:56:20 AM,11/01/2010 12:57:29 AM,11/01/2010 01:01:47 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 01:04:59 AM,LARKIN ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",103050028-E05 +112100167,E13,11069322,Medical Incident,07/29/2011,07/29/2011,07/29/2011 01:33:14 PM,07/29/2011 01:35:26 PM,07/29/2011 01:36:02 PM,07/29/2011 01:38:31 PM,07/29/2011 01:41:07 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 01:55:08 PM,800 Block of STOCKTON ST,SF,94108,B01,2,1326,3,3,3,true,,1,ENGINE,3,1,3,Chinatown,"(37.7936107031068, -122.407883608419)",112100167-E13 +113510234,E12,11116514,Structure Fire,12/17/2011,12/17/2011,12/17/2011 01:35:35 PM,12/17/2011 01:36:01 PM,12/17/2011 01:36:22 PM,12/17/2011 01:37:47 PM,12/17/2011 01:40:08 PM,04/25/2016 02:01:06 PM,04/25/2016 02:01:06 PM,Other,12/17/2011 04:58:33 PM,300 Block of JUDAH ST,SF,94122,B08,22,7334,3,3,3,true,,1,ENGINE,2,8,5,Inner Sunset,"(37.7622532632059, -122.465651521109)",113510234-E12 +111820209,88,11060092,Medical Incident,07/01/2011,07/01/2011,07/01/2011 01:17:42 PM,07/01/2011 01:18:01 PM,07/01/2011 01:19:12 PM,07/01/2011 01:19:27 PM,07/01/2011 01:44:32 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,Patient Declined Transport,07/01/2011 01:57:25 PM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7772727011897, -122.404070256526)",111820209-88 +160713187,57,16028360,Medical Incident,03/11/2016,03/11/2016,03/11/2016 08:02:18 PM,03/11/2016 08:02:48 PM,03/11/2016 08:03:43 PM,03/11/2016 08:04:34 PM,03/11/2016 08:12:19 PM,03/11/2016 08:46:06 PM,03/11/2016 08:57:12 PM,Code 2 Transport,03/11/2016 09:43:23 PM,800 Block of BRODERICK ST,San Francisco,94115,B05,21,4242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",160713187-57 +110780101,E22,11025609,Medical Incident,03/19/2011,03/19/2011,03/19/2011 09:27:08 AM,03/19/2011 09:27:08 AM,03/19/2011 09:27:29 AM,03/19/2011 09:28:20 AM,03/19/2011 09:33:29 AM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 09:36:55 AM,9TH AV/KIRKHAM ST,SF,94122,B08,22,7331,3,E,3,false,,1,ENGINE,4,8,7,Inner Sunset,"(37.7603115605763, -122.466050387946)",110780101-E22 +132660212,E19,13090268,Medical Incident,09/23/2013,09/23/2013,09/23/2013 01:08:14 PM,09/23/2013 01:09:19 PM,09/23/2013 01:10:10 PM,09/23/2013 01:11:14 PM,09/23/2013 01:13:51 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/23/2013 01:30:10 PM,100 Block of DENSLOWE DR,SF,94132,B08,19,8751,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7221161345031, -122.474366093647)",132660212-E19 +131410157,E01,13047751,Alarms,05/21/2013,05/21/2013,05/21/2013 11:14:38 AM,05/21/2013 11:17:35 AM,05/21/2013 11:17:39 AM,05/21/2013 11:17:44 AM,05/21/2013 11:23:50 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 11:23:53 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131410157-E01 +132900087,78,13098552,Medical Incident,10/17/2013,10/17/2013,10/17/2013 08:56:11 AM,10/17/2013 08:56:42 AM,10/17/2013 08:56:50 AM,10/17/2013 08:58:15 AM,10/17/2013 09:00:29 AM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 09:55:50 AM,1600 Block of KIRKWOOD AVE,SF,94124,B10,25,6467,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7386523750626, -122.390934976028)",132900087-78 +122390274,77,12079224,Medical Incident,08/26/2012,08/26/2012,08/26/2012 07:18:30 PM,08/26/2012 07:20:20 PM,08/26/2012 07:21:35 PM,08/26/2012 07:26:14 PM,08/26/2012 07:36:27 PM,08/26/2012 07:47:44 PM,08/26/2012 08:00:07 PM,Code 2 Transport,08/26/2012 08:38:53 PM,200 Block of HYDE ST,SF,94102,B02,3,1554,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",122390274-77 +130090368,D3,13003265,Explosion,01/09/2013,01/09/2013,01/09/2013 10:57:20 PM,01/09/2013 10:59:45 PM,01/09/2013 11:00:45 PM,01/09/2013 11:01:09 PM,01/09/2013 11:10:06 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 11:14:35 PM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Fire,1,CHIEF,10,6,9,Mission,"(37.7576134671742, -122.419025267752)",130090368-D3 +103260030,E39,10104365,Medical Incident,11/22/2010,11/21/2010,11/22/2010 04:08:11 AM,11/22/2010 04:08:38 AM,11/22/2010 04:08:56 AM,11/22/2010 04:10:31 AM,11/22/2010 04:12:49 AM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/22/2010 04:13:26 AM,14TH AV/WEST PORTAL AV,SF,94127,B08,39,8562,3,2,2,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7379698827734, -122.469056677033)",103260030-E39 +120390009,84,12012854,Medical Incident,02/08/2012,02/07/2012,02/08/2012 12:29:00 AM,02/08/2012 12:30:50 AM,02/08/2012 12:31:14 AM,02/08/2012 12:31:28 AM,02/08/2012 12:35:57 AM,02/08/2012 12:53:16 AM,02/08/2012 01:11:18 AM,Code 2 Transport,02/08/2012 01:51:54 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",120390009-84 +160383073,75,16015359,Traffic Collision,02/07/2016,02/07/2016,02/07/2016 07:37:27 PM,02/07/2016 07:38:13 PM,02/07/2016 07:39:33 PM,02/07/2016 07:39:47 PM,02/07/2016 07:48:15 PM,02/07/2016 08:14:26 PM,02/07/2016 08:34:41 PM,Code 2 Transport,02/07/2016 09:03:12 PM,18TH AV/FULTON ST,San Francisco,94121,B07,31,7166,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7729128566624, -122.47669420588)",160383073-75 +160682861,AM08,16027201,Medical Incident,03/08/2016,03/08/2016,03/08/2016 05:50:34 PM,03/08/2016 05:52:44 PM,03/08/2016 05:52:59 PM,03/08/2016 05:53:41 PM,03/08/2016 05:59:50 PM,03/08/2016 06:05:00 PM,03/08/2016 06:25:43 PM,Code 2 Transport,03/08/2016 06:41:30 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160682861-AM08 +131620094,T05,13054973,Medical Incident,06/11/2013,06/11/2013,06/11/2013 09:12:25 AM,06/11/2013 09:13:08 AM,06/11/2013 09:13:37 AM,06/11/2013 09:15:01 AM,06/11/2013 09:18:10 AM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,Other,06/11/2013 09:23:39 AM,400 Block of LARKIN ST,SF,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",131620094-T05 +160780880,85,16030942,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:32:32 AM,03/18/2016 08:33:24 AM,03/18/2016 08:34:06 AM,03/18/2016 08:34:26 AM,03/18/2016 08:40:22 AM,03/18/2016 08:55:21 AM,03/18/2016 09:12:18 AM,Code 2 Transport,03/18/2016 09:41:39 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160780880-85 +102610334,72,10082629,Traffic Collision,09/18/2010,09/18/2010,09/18/2010 06:01:53 PM,09/18/2010 06:01:53 PM,09/18/2010 06:02:08 PM,09/18/2010 06:02:52 PM,09/18/2010 06:08:08 PM,09/18/2010 06:14:27 PM,09/18/2010 06:23:22 PM,Code 3 Transport,09/18/2010 06:57:27 PM,SAN BRUNO AV/MANSELL ST,SF,94134,B10,44,6277,3,3,3,false,,1,MEDIC,2,10,9,Portola,"(37.7215343997982, -122.401074132147)",102610334-72 +160163086,79,16006559,Medical Incident,01/16/2016,01/16/2016,01/16/2016 07:20:26 PM,01/16/2016 07:21:06 PM,01/16/2016 07:21:55 PM,01/16/2016 07:22:19 PM,01/16/2016 07:27:21 PM,01/16/2016 07:36:46 PM,01/16/2016 07:41:39 PM,Code 3 Transport,01/16/2016 08:37:56 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7684539072982, -122.431342864403)",160163086-79 +140050293,94,14001899,Citizen Assist / Service Call,01/05/2014,01/05/2014,01/05/2014 06:45:19 PM,01/05/2014 06:45:19 PM,01/05/2014 06:50:17 PM,01/05/2014 06:50:34 PM,01/05/2014 07:07:24 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 07:17:30 PM,2700 Block of GREEN ST,SF,94123,B04,16,4225,,3,3,true,Alarm,1,MEDIC,2,4,2,Marina,"(37.7950571744208, -122.444409448853)",140050293-94 +122470215,B02,12081748,Structure Fire,09/03/2012,09/03/2012,09/03/2012 05:37:47 PM,09/03/2012 05:39:42 PM,09/03/2012 05:40:15 PM,09/03/2012 05:41:26 PM,09/03/2012 05:43:02 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 05:50:05 PM,900 Block of EDDY ST,SF,94102,B02,5,3262,3,3,3,false,Fire,1,CHIEF,5,2,5,Western Addition,"(37.782522418285, -122.423274430962)",122470215-B02 +131990047,B02,13067348,Alarms,07/18/2013,07/17/2013,07/18/2013 06:02:25 AM,07/18/2013 06:04:25 AM,07/18/2013 06:04:34 AM,07/18/2013 06:07:52 AM,07/18/2013 06:08:17 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 06:16:20 AM,300 Block of GOUGH ST,SF,94102,B02,36,3265,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.776658453148, -122.422862121316)",131990047-B02 +160743645,70,16029483,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:53:15 PM,03/14/2016 08:54:06 PM,03/14/2016 08:54:22 PM,03/14/2016 08:55:12 PM,03/14/2016 08:59:46 PM,03/14/2016 09:13:00 PM,03/14/2016 09:19:56 PM,Code 2 Transport,03/14/2016 09:44:33 PM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",160743645-70 +131850361,88,13063198,Medical Incident,07/04/2013,07/04/2013,07/04/2013 09:42:27 PM,07/04/2013 09:46:00 PM,07/04/2013 10:08:31 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 10:21:51 PM,1200 Block of NORTHPOINT DR,TI,94130,B03,48,2931,E,E,3,true,Potentially Life-Threatening,1,MEDIC,7,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",131850361-88 +102460205,88,10077748,Medical Incident,09/03/2010,09/03/2010,09/03/2010 01:17:53 PM,09/03/2010 01:19:47 PM,09/03/2010 01:20:13 PM,04/25/2016 02:08:46 PM,09/03/2010 01:24:38 PM,09/03/2010 01:56:51 PM,09/03/2010 02:41:14 PM,Code 2 Transport,09/03/2010 03:12:51 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",102460205-88 +160673114,AM20,16026903,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:32:34 PM,03/07/2016 08:34:13 PM,03/07/2016 08:34:48 PM,03/07/2016 08:35:25 PM,03/07/2016 08:43:18 PM,03/07/2016 09:08:27 PM,03/07/2016 09:29:35 PM,Code 2 Transport,03/07/2016 10:12:34 PM,1200 Block of WAYLAND ST,San Francisco,94134,B09,42,6346,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7235232507011, -122.414469112024)",160673114-AM20 +133240378,E15,13110196,Electrical Hazard,11/20/2013,11/20/2013,11/20/2013 09:33:39 PM,11/20/2013 09:35:21 PM,11/20/2013 09:35:37 PM,11/20/2013 09:37:14 PM,11/20/2013 09:40:07 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 10:05:54 PM,0 Block of DORADO TER,SF,94112,B09,15,8531,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7254919034304, -122.460932353704)",133240378-E15 +160170900,87,16006755,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:10:10 AM,01/17/2016 09:10:10 AM,01/17/2016 09:10:10 AM,01/17/2016 09:10:10 AM,01/17/2016 09:10:10 AM,01/17/2016 09:36:52 AM,01/17/2016 10:01:27 AM,Code 2 Transport,01/17/2016 10:16:09 AM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160170900-87 +160411841,56,16016458,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:05:59 PM,02/10/2016 01:05:59 PM,02/10/2016 01:06:37 PM,02/10/2016 01:07:04 PM,02/10/2016 01:11:11 PM,02/10/2016 01:15:49 PM,02/10/2016 01:15:50 PM,Against Medical Advice,02/10/2016 01:47:27 PM,1300 Block of TURK ST,San Francisco,94115,B04,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",160411841-56 +103550010,56,10113814,Medical Incident,12/21/2010,12/20/2010,12/21/2010 12:42:36 AM,12/21/2010 12:42:51 AM,12/21/2010 12:43:37 AM,12/21/2010 12:43:46 AM,12/21/2010 12:48:40 AM,12/21/2010 01:05:58 AM,12/21/2010 01:12:54 AM,Code 2 Transport,12/21/2010 01:34:23 AM,0 Block of GOLDEN GATE AVE,SF,94102,B02,1,1454,2,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",103550010-56 +111980021,E29,11065190,Medical Incident,07/17/2011,07/16/2011,07/17/2011 01:16:06 AM,07/17/2011 01:17:55 AM,07/17/2011 01:18:49 AM,07/17/2011 01:20:33 AM,07/17/2011 01:23:53 AM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/17/2011 01:34:16 AM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,3,1,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",111980021-E29 +121740219,85,12057795,Medical Incident,06/22/2012,06/22/2012,06/22/2012 03:09:54 PM,06/22/2012 03:10:58 PM,06/22/2012 03:11:28 PM,06/22/2012 03:11:42 PM,06/22/2012 03:13:04 PM,06/22/2012 03:29:58 PM,06/22/2012 03:49:52 PM,Code 2 Transport,06/22/2012 04:15:11 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",121740219-85 +102640288,E02,10083640,Medical Incident,09/21/2010,09/21/2010,09/21/2010 06:06:04 PM,09/21/2010 06:08:09 PM,09/21/2010 06:08:44 PM,09/21/2010 06:09:27 PM,09/21/2010 06:12:11 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 06:15:42 PM,1100 Block of JONES ST,SF,94109,B01,41,1465,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7918709005093, -122.414268636834)",102640288-E02 +160540998,59,16021510,Medical Incident,02/23/2016,02/23/2016,02/23/2016 09:38:58 AM,02/23/2016 09:39:35 AM,02/23/2016 09:40:00 AM,02/23/2016 09:42:13 AM,02/23/2016 09:43:27 AM,02/23/2016 10:03:02 AM,02/23/2016 10:17:02 AM,Code 2 Transport,02/23/2016 11:05:01 AM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",160540998-59 +111980267,75,11065397,Medical Incident,07/17/2011,07/17/2011,07/17/2011 06:07:27 PM,07/17/2011 06:08:22 PM,07/17/2011 06:09:10 PM,07/17/2011 06:09:18 PM,07/17/2011 06:14:55 PM,07/17/2011 06:33:48 PM,07/17/2011 06:40:32 PM,Code 2 Transport,07/17/2011 07:01:49 PM,CLAY ST/POLK ST,SF,94109,B04,41,1634,3,3,3,true,,1,MEDIC,2,4,3,Russian Hill,"(37.7923832522829, -122.421052874002)",111980267-75 +102260178,E21,10071146,Medical Incident,08/14/2010,08/14/2010,08/14/2010 01:19:13 PM,08/14/2010 01:19:41 PM,08/14/2010 01:21:04 PM,08/14/2010 01:21:37 PM,08/14/2010 01:24:44 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 01:45:50 PM,100 Block of STANYAN BLVD,SF,94118,B07,21,4557,3,3,3,true,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7782053045566, -122.455385539111)",102260178-E21 +132890038,87,13098183,Medical Incident,10/16/2013,10/15/2013,10/16/2013 03:12:45 AM,10/16/2013 03:13:18 AM,10/16/2013 03:14:19 AM,10/16/2013 03:14:33 AM,10/16/2013 03:27:02 AM,10/16/2013 03:36:03 AM,10/16/2013 03:39:15 AM,Code 2 Transport,10/16/2013 04:19:41 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",132890038-87 +112130278,58,11070367,Medical Incident,08/01/2011,08/01/2011,08/01/2011 05:16:55 PM,08/01/2011 05:18:23 PM,08/01/2011 05:18:57 PM,08/01/2011 05:28:37 PM,08/01/2011 05:49:04 PM,08/01/2011 05:55:25 PM,08/01/2011 05:58:11 PM,Code 2 Transport,08/01/2011 06:17:29 PM,200 Block of ALMA ST,SF,94117,B05,12,5162,1,1,2,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7629834619379, -122.451564578029)",112130278-58 +131420086,KM06,13048064,Medical Incident,05/22/2013,05/21/2013,05/22/2013 07:53:34 AM,05/22/2013 07:54:49 AM,05/22/2013 08:22:37 AM,05/22/2013 08:23:12 AM,05/22/2013 08:31:12 AM,05/22/2013 08:42:18 AM,05/22/2013 08:57:43 AM,Code 2 Transport,05/22/2013 09:12:33 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",131420086-KM06 +160213373,79,16008517,Medical Incident,01/21/2016,01/21/2016,01/21/2016 07:00:52 PM,01/21/2016 07:03:05 PM,01/21/2016 07:03:40 PM,01/21/2016 07:04:48 PM,01/21/2016 07:16:12 PM,01/21/2016 07:28:44 PM,01/21/2016 07:42:33 PM,Code 2 Transport,01/21/2016 08:16:00 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160213373-79 +123400288,T12,12113500,Structure Fire,12/05/2012,12/05/2012,12/05/2012 04:02:02 PM,12/05/2012 04:02:29 PM,12/05/2012 04:02:56 PM,12/05/2012 04:04:28 PM,12/05/2012 04:05:42 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/05/2012 04:47:27 PM,0 Block of TWIN PEAKS BLVD,SF,94114,B05,12,5256,3,3,3,false,Fire,1,TRUCK,1,5,8,Inner Sunset,"(37.7597348090272, -122.447055013255)",123400288-T12 +160133296,AM16,16005307,Medical Incident,01/13/2016,01/13/2016,01/13/2016 06:16:46 PM,01/13/2016 06:18:52 PM,01/13/2016 06:20:58 PM,01/13/2016 06:21:27 PM,01/13/2016 06:25:20 PM,01/13/2016 06:39:52 PM,01/13/2016 06:59:44 PM,Code 2 Transport,01/13/2016 07:48:50 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7869413406164, -122.411939021128)",160133296-AM16 +140460292,T07,14015756,Other,02/15/2014,02/15/2014,02/15/2014 06:40:08 PM,02/15/2014 06:42:13 PM,02/15/2014 06:42:31 PM,02/15/2014 06:44:32 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 06:50:40 PM,600 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,false,Alarm,1,TRUCK,3,6,8,Mission,"(37.760758525583, -122.423838174213)",140460292-T07 +123630209,54,12121488,Structure Fire,12/28/2012,12/28/2012,12/28/2012 02:34:11 PM,12/28/2012 02:36:17 PM,12/28/2012 02:36:35 PM,12/28/2012 02:37:09 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 02:41:42 PM,400 Block of FLOOD AVE,SF,94112,B09,15,8234,3,3,3,true,Alarm,1,MEDIC,9,9,7,West of Twin Peaks,"(37.729932179401, -122.449995498867)",123630209-54 +140970320,E40,14032774,Traffic Collision,04/07/2014,04/07/2014,04/07/2014 04:48:14 PM,04/07/2014 04:50:38 PM,04/07/2014 04:50:52 PM,04/07/2014 04:52:21 PM,04/07/2014 04:53:55 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Code 2 Transport,04/07/2014 05:10:46 PM,19TH AV/SANTIAGO ST,SAN FRANCISCO,94116,B08,40,7416,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7449187187769, -122.475773242641)",140970320-E40 +110120228,61,11004017,Medical Incident,01/12/2011,01/12/2011,01/12/2011 02:54:13 PM,01/12/2011 02:55:10 PM,01/12/2011 02:55:34 PM,01/12/2011 02:55:44 PM,01/12/2011 03:02:00 PM,01/12/2011 03:19:15 PM,01/12/2011 03:30:13 PM,Code 2 Transport,01/12/2011 04:02:31 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7813340573864, -122.399027495005)",110120228-61 +160833675,86,16033125,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:06:16 PM,03/23/2016 08:07:21 PM,03/23/2016 08:07:38 PM,03/23/2016 08:07:50 PM,03/23/2016 08:18:58 PM,03/23/2016 08:38:10 PM,03/23/2016 09:02:31 PM,Code 2 Transport,03/23/2016 09:35:12 PM,400 Block of BRAZIL AVE,San Francisco,94112,B09,43,6141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7229286889914, -122.431268819082)",160833675-86 +121510008,E01,12049896,Alarms,05/30/2012,05/29/2012,05/30/2012 12:40:13 AM,05/30/2012 12:40:54 AM,05/30/2012 12:41:12 AM,05/30/2012 12:42:19 AM,05/30/2012 12:43:23 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/30/2012 12:52:30 AM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",121510008-E01 +160833858,78,16033151,Medical Incident,03/23/2016,03/23/2016,03/23/2016 09:03:16 PM,03/23/2016 09:07:47 PM,03/23/2016 09:08:17 PM,03/23/2016 09:08:25 PM,03/23/2016 09:14:56 PM,03/23/2016 09:39:30 PM,03/23/2016 09:57:09 PM,Code 2 Transport,03/23/2016 10:38:46 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160833858-78 +121860170,B03,12061952,Alarms,07/04/2012,07/04/2012,07/04/2012 02:17:29 PM,07/04/2012 02:18:20 PM,07/04/2012 02:18:34 PM,04/25/2016 01:57:52 PM,07/04/2012 02:22:30 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Fire,07/04/2012 02:25:42 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",121860170-B03 +121850201,66,12061634,Medical Incident,07/03/2012,07/03/2012,07/03/2012 01:40:10 PM,07/03/2012 01:40:13 PM,07/03/2012 01:40:21 PM,07/03/2012 01:40:39 PM,07/03/2012 01:43:47 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Medical Examiner,07/03/2012 02:03:36 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",121850201-66 +110410300,73,11013668,Medical Incident,02/10/2011,02/10/2011,02/10/2011 05:00:04 PM,02/10/2011 05:02:07 PM,02/10/2011 05:04:02 PM,02/10/2011 05:05:12 PM,02/10/2011 05:16:00 PM,02/10/2011 05:19:21 PM,04/25/2016 02:06:09 PM,Code 2 Transport,02/10/2011 06:31:33 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",110410300-73 +160383538,87,16015401,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:08:04 PM,02/07/2016 10:08:04 PM,02/07/2016 10:17:11 PM,02/07/2016 10:17:11 PM,02/07/2016 10:17:11 PM,02/07/2016 10:22:32 PM,02/07/2016 10:28:26 PM,Code 2 Transport,02/07/2016 10:53:21 PM,300 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7861537033569, -122.410515154107)",160383538-87 +120430212,E43,12014425,Medical Incident,02/12/2012,02/12/2012,02/12/2012 02:36:49 PM,02/12/2012 02:38:32 PM,02/12/2012 02:38:44 PM,02/12/2012 02:39:58 PM,02/12/2012 02:42:16 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/12/2012 02:46:52 PM,EDINBURGH ST/EXCELSIOR AV,SF,94112,B09,43,6133,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7243433379843, -122.429652125576)",120430212-E43 +131760316,B01,13059818,Alarms,06/25/2013,06/25/2013,06/25/2013 05:53:02 PM,06/25/2013 05:55:01 PM,06/25/2013 05:55:07 PM,06/25/2013 05:56:31 PM,06/25/2013 06:02:17 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,06/25/2013 06:05:06 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131760316-B01 +133410279,KM04,13115703,Medical Incident,12/07/2013,12/07/2013,12/07/2013 05:13:09 PM,12/07/2013 05:13:20 PM,12/07/2013 05:15:00 PM,12/07/2013 05:15:44 PM,12/07/2013 05:25:25 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/07/2013 06:00:00 PM,43RD AV/CLEMENT ST,SF,94121,B07,34,7265,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7811265093853, -122.504160424863)",133410279-KM04 +120830332,59,12027688,Traffic Collision,03/23/2012,03/23/2012,03/23/2012 07:53:30 PM,03/23/2012 07:54:29 PM,03/23/2012 07:54:56 PM,03/23/2012 08:00:19 PM,03/23/2012 08:11:59 PM,03/23/2012 08:19:44 PM,03/23/2012 08:37:36 PM,Code 2 Transport,03/23/2012 08:58:27 PM,ALEMANY BL/FARRAGUT AV,SF,94112,B09,33,8353,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.712055692394, -122.451954774014)",120830332-59 +113000026,54,11099385,Medical Incident,10/27/2011,10/26/2011,10/27/2011 02:42:36 AM,10/27/2011 02:43:32 AM,10/27/2011 02:43:46 AM,10/27/2011 02:43:57 AM,10/27/2011 02:47:45 AM,10/27/2011 02:54:54 AM,10/27/2011 03:00:20 AM,Code 2 Transport,10/27/2011 03:24:20 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",113000026-54 +160772418,AM02,16030649,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:04:56 PM,03/17/2016 03:05:20 PM,03/17/2016 03:10:43 PM,03/17/2016 03:11:02 PM,03/17/2016 03:21:50 PM,03/17/2016 03:39:55 PM,03/17/2016 03:50:12 PM,Code 2 Transport,03/17/2016 04:16:07 PM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160772418-AM02 +123510372,82,12117569,Medical Incident,12/16/2012,12/16/2012,12/16/2012 10:17:51 PM,12/16/2012 10:19:19 PM,12/16/2012 10:20:05 PM,12/16/2012 10:21:05 PM,12/16/2012 10:24:28 PM,12/16/2012 10:37:31 PM,12/16/2012 10:43:45 PM,Code 2 Transport,12/16/2012 11:18:03 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",123510372-82 +160200608,56,16007905,Medical Incident,01/20/2016,01/19/2016,01/20/2016 07:17:15 AM,01/20/2016 07:18:16 AM,01/20/2016 07:18:23 AM,01/20/2016 07:18:29 AM,01/20/2016 07:35:15 AM,01/20/2016 07:51:26 AM,01/20/2016 08:26:43 AM,Code 2 Transport,01/20/2016 08:44:37 AM,600 Block of HAMILTON ST,San Francisco,94134,B10,42,6331,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.72306950252, -122.408347140801)",160200608-56 +113140035,E03,11104215,Structure Fire,11/10/2011,11/09/2011,11/10/2011 04:50:33 AM,11/10/2011 04:50:33 AM,11/10/2011 04:50:43 AM,04/25/2016 02:01:43 PM,11/10/2011 04:54:36 AM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 04:55:16 AM,OFARRELL ST/TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,1,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",113140035-E03 +103300210,T17,10105677,Structure Fire,11/26/2010,11/26/2010,11/26/2010 02:38:24 PM,11/26/2010 02:38:24 PM,11/26/2010 02:39:21 PM,11/26/2010 02:40:32 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 02:42:56 PM,HUDSON AV/CASHMERE ST,SF,94124,B10,25,652,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",103300210-T17 +110130087,KM11,11004236,Medical Incident,01/13/2011,01/13/2011,01/13/2011 08:06:17 AM,01/13/2011 08:08:18 AM,01/13/2011 08:09:43 AM,01/13/2011 08:13:07 AM,01/13/2011 08:22:32 AM,01/13/2011 08:30:10 AM,01/13/2011 08:40:08 AM,Code 2 Transport,01/13/2011 09:00:40 AM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,1,1,2,false,,1,PRIVATE,2,6,9,Mission,"(37.7619675295768, -122.417178937573)",110130087-KM11 +160392786,56,16015728,Medical Incident,02/08/2016,02/08/2016,02/08/2016 05:43:36 PM,02/08/2016 05:44:01 PM,02/08/2016 05:45:37 PM,02/08/2016 05:45:59 PM,02/08/2016 05:57:05 PM,02/08/2016 06:14:25 PM,02/08/2016 06:30:52 PM,Code 3 Transport,02/08/2016 07:13:44 PM,4600 Block of CABRILLO ST,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7733883647832, -122.508427023107)",160392786-56 +132040236,KM12,13069138,Medical Incident,07/23/2013,07/23/2013,07/23/2013 03:06:29 PM,07/23/2013 03:09:33 PM,07/23/2013 03:10:22 PM,07/23/2013 03:12:01 PM,07/23/2013 03:23:06 PM,07/23/2013 03:52:55 PM,07/23/2013 04:02:21 PM,Code 2 Transport,07/23/2013 04:30:49 PM,1700 Block of EDDY ST,SF,94115,B05,5,4133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7808513149724, -122.436427287945)",132040236-KM12 +131270255,RS2,13042985,Medical Incident,05/07/2013,05/07/2013,05/07/2013 03:52:21 PM,05/07/2013 03:53:13 PM,05/07/2013 03:54:35 PM,05/07/2013 03:56:15 PM,05/07/2013 03:59:47 PM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/07/2013 04:01:48 PM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,9,Mission,"(37.7650413541786, -122.420746190588)",131270255-RS2 +160591237,AM10,16023473,Medical Incident,02/28/2016,02/28/2016,02/28/2016 10:57:08 AM,02/28/2016 11:00:14 AM,02/28/2016 11:00:32 AM,02/28/2016 11:00:59 AM,02/28/2016 11:06:43 AM,02/28/2016 11:30:30 AM,02/28/2016 11:35:39 AM,Code 2 Transport,02/28/2016 11:51:14 AM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",160591237-AM10 +123130154,88,12104111,Medical Incident,11/08/2012,11/08/2012,11/08/2012 11:03:59 AM,11/08/2012 11:06:31 AM,11/08/2012 11:06:40 AM,11/08/2012 11:07:28 AM,11/08/2012 11:07:30 AM,11/08/2012 11:30:29 AM,11/08/2012 11:54:06 AM,Code 2 Transport,11/08/2012 12:17:14 PM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",123130154-88 +160671415,KM13,16026740,Medical Incident,03/07/2016,03/07/2016,03/07/2016 12:29:53 PM,03/07/2016 12:30:06 PM,03/07/2016 12:34:57 PM,03/07/2016 12:35:53 PM,03/07/2016 12:46:40 PM,03/07/2016 01:13:19 PM,03/07/2016 01:34:22 PM,Code 2 Transport,03/07/2016 02:22:29 PM,3900 Block of SACRAMENTO ST,San Francisco,94118,B07,10,4441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,2,Presidio Heights,"(37.7868299907171, -122.458076168664)",160671415-KM13 +160311560,79,16012152,Medical Incident,01/31/2016,01/31/2016,01/31/2016 12:19:20 PM,01/31/2016 12:20:59 PM,01/31/2016 12:21:12 PM,01/31/2016 12:21:23 PM,01/31/2016 12:24:17 PM,01/31/2016 12:38:33 PM,01/31/2016 12:43:58 PM,Code 2 Transport,01/31/2016 01:10:20 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160311560-79 +160122618,61,16004845,Medical Incident,01/12/2016,01/12/2016,01/12/2016 04:38:05 PM,01/12/2016 04:39:23 PM,01/12/2016 04:40:56 PM,01/12/2016 04:41:04 PM,01/12/2016 04:43:42 PM,01/12/2016 04:52:03 PM,01/12/2016 04:58:57 PM,Code 2 Transport,01/12/2016 05:12:58 PM,OAK ST/CLAYTON ST,San Francisco,94117,B05,21,4524,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7716687396462, -122.448957993016)",160122618-61 +160782059,53,16031034,Medical Incident,03/18/2016,03/18/2016,03/18/2016 01:54:39 PM,03/18/2016 01:55:31 PM,03/18/2016 01:55:56 PM,03/18/2016 01:56:09 PM,03/18/2016 02:05:53 PM,03/18/2016 02:34:37 PM,03/18/2016 02:44:07 PM,Code 2 Transport,03/18/2016 03:24:20 PM,1500 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,4134,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7789870702557, -122.436051970399)",160782059-53 +121980053,E06,12065708,Medical Incident,07/16/2012,07/15/2012,07/16/2012 06:43:04 AM,07/16/2012 06:44:37 AM,07/16/2012 06:44:59 AM,07/16/2012 06:47:00 AM,07/16/2012 06:50:25 AM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 06:52:07 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",121980053-E06 +113260054,T17,11108155,Odor (Strange / Unknown),11/22/2011,11/21/2011,11/22/2011 06:36:29 AM,11/22/2011 06:38:14 AM,11/22/2011 06:38:55 AM,11/22/2011 06:41:05 AM,11/22/2011 06:41:59 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 06:44:46 AM,1200 Block of QUESADA AVE,SF,94124,B10,17,6634,3,3,3,true,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.728626266314, -122.383019514156)",113260054-T17 +123410311,T05,12113879,Alarms,12/06/2012,12/06/2012,12/06/2012 05:09:40 PM,12/06/2012 05:11:32 PM,12/06/2012 05:11:39 PM,12/06/2012 05:12:51 PM,12/06/2012 05:15:42 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/06/2012 05:23:18 PM,800 Block of HAYES ST,SF,94117,B02,5,3522,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",123410311-T05 +132510051,RC1,13084695,Medical Incident,09/08/2013,09/07/2013,09/08/2013 02:36:19 AM,09/08/2013 02:36:50 AM,09/08/2013 02:37:03 AM,09/08/2013 02:40:14 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 02:44:09 AM,1500 Block of OAKDALE AVE,SF,94124,B10,17,6534,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7340217594171, -122.389453670256)",132510051-RC1 +120580123,59,12019063,Medical Incident,02/27/2012,02/27/2012,02/27/2012 10:15:58 AM,02/27/2012 10:17:35 AM,02/27/2012 10:18:19 AM,02/27/2012 10:18:47 AM,02/27/2012 10:28:55 AM,02/27/2012 10:49:19 AM,02/27/2012 11:04:42 AM,Code 2 Transport,02/27/2012 11:34:10 AM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7848984736106, -122.389669866427)",120580123-59 +103200362,E29,10102708,Citizen Assist / Service Call,11/16/2010,11/16/2010,11/16/2010 08:26:33 PM,11/16/2010 08:26:37 PM,11/16/2010 08:26:55 PM,11/16/2010 08:27:18 PM,11/16/2010 08:28:07 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Fire,11/16/2010 08:30:38 PM,UTAH ST/16TH ST,SF,94103,B02,29,2421,3,3,3,true,,1,ENGINE,1,2,10,Mission,"(37.7658422720667, -122.406552825622)",103200362-E29 +131850013,E10,13062907,Medical Incident,07/04/2013,07/03/2013,07/04/2013 12:34:21 AM,07/04/2013 12:34:52 AM,07/04/2013 12:35:13 AM,07/04/2013 12:36:00 AM,07/04/2013 12:39:37 AM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/04/2013 01:02:39 AM,2800 Block of BROADWAY,SF,94115,B04,10,4226,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7930651453295, -122.444006750024)",131850013-E10 +122450041,82,12080877,Medical Incident,09/01/2012,08/31/2012,09/01/2012 02:22:15 AM,09/01/2012 02:22:37 AM,09/01/2012 02:22:48 AM,09/01/2012 02:23:51 AM,04/25/2016 01:56:58 PM,09/01/2012 02:40:55 AM,09/01/2012 02:53:01 AM,Code 2 Transport,09/01/2012 03:24:42 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",122450041-82 +131240207,KM07,13041828,Other,05/04/2013,05/04/2013,05/04/2013 01:15:49 PM,05/04/2013 01:17:36 PM,05/04/2013 01:39:58 PM,05/04/2013 01:41:13 PM,05/04/2013 02:03:45 PM,05/04/2013 02:19:55 PM,05/04/2013 02:41:35 PM,Code 2 Transport,05/04/2013 03:14:32 PM,0 Block of SEAL ROCK DR,SF,94121,B07,34,7275,3,3,3,false,Alarm,1,PRIVATE,2,7,1,Lincoln Park,"(37.780814166463, -122.507057948553)",131240207-KM07 +111940072,E20,11063962,Medical Incident,07/13/2011,07/12/2011,07/13/2011 07:55:06 AM,07/13/2011 07:56:25 AM,07/13/2011 07:57:20 AM,07/13/2011 07:58:59 AM,07/13/2011 08:01:21 AM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 08:02:22 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,,1,ENGINE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",111940072-E20 +131930318,E22,13065773,Medical Incident,07/12/2013,07/12/2013,07/12/2013 08:57:51 PM,07/12/2013 08:58:38 PM,07/12/2013 08:59:22 PM,07/12/2013 08:59:59 PM,07/12/2013 09:02:12 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 09:11:52 PM,1500 Block of 21ST AVE,SF,94122,B08,22,7427,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7588019575256, -122.479009018922)",131930318-E22 +160172527,AM16,16006924,Medical Incident,01/17/2016,01/17/2016,01/17/2016 05:31:29 PM,01/17/2016 05:33:40 PM,01/17/2016 05:35:04 PM,01/17/2016 05:41:40 PM,01/17/2016 05:41:40 PM,01/17/2016 05:58:36 PM,01/17/2016 06:11:19 PM,Code 2 Transport,01/17/2016 06:25:42 PM,23RD ST/VALENCIA ST,San Francisco,94110,B06,11,5512,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Mission,"(37.7537030945495, -122.420812137045)",160172527-AM16 +160180853,KM04,16007165,Medical Incident,01/18/2016,01/18/2016,01/18/2016 09:12:39 AM,01/18/2016 09:15:22 AM,01/18/2016 09:16:28 AM,01/18/2016 09:17:08 AM,01/18/2016 09:46:22 AM,01/18/2016 09:46:39 AM,01/18/2016 10:05:54 AM,Code 2 Transport,01/18/2016 10:39:53 AM,600 Block of MASON ST,Presidio,94108,B99,51,4614,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",160180853-KM04 +111000344,E15,11033368,Medical Incident,04/10/2011,04/10/2011,04/10/2011 11:13:48 PM,04/10/2011 11:14:50 PM,04/10/2011 11:15:06 PM,04/10/2011 11:16:53 PM,04/10/2011 11:19:04 PM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 11:33:26 PM,100 Block of NORTHWOOD DR,SF,94112,B09,15,8514,3,2,2,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7300073588477, -122.459018359791)",111000344-E15 +123330313,E31,12110774,Alarms,11/28/2012,11/28/2012,11/28/2012 08:56:48 PM,11/28/2012 08:57:28 PM,11/28/2012 08:57:34 PM,11/28/2012 08:58:34 PM,11/28/2012 08:59:56 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/28/2012 09:06:23 PM,4000 Block of FULTON ST,SF,94118,B07,31,7156,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7730416077459, -122.475086257619)",123330313-E31 +132030252,92,13068830,Medical Incident,07/22/2013,07/22/2013,07/22/2013 05:02:42 PM,07/22/2013 05:03:26 PM,07/22/2013 05:04:00 PM,07/22/2013 05:06:32 PM,07/22/2013 05:20:54 PM,07/22/2013 05:29:13 PM,07/22/2013 05:31:36 PM,Code 2 Transport,07/22/2013 05:54:23 PM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",132030252-92 +112780173,E21,11092018,Medical Incident,10/05/2011,10/05/2011,10/05/2011 12:09:52 PM,10/05/2011 12:10:22 PM,10/05/2011 12:10:48 PM,10/05/2011 12:11:19 PM,10/05/2011 12:14:08 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 12:33:20 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,2,2,false,,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",112780173-E21 +133000319,93,13102068,Medical Incident,10/27/2013,10/27/2013,10/27/2013 07:53:36 PM,10/27/2013 07:55:42 PM,10/27/2013 07:56:20 PM,10/27/2013 07:56:48 PM,10/27/2013 08:01:36 PM,10/27/2013 08:19:33 PM,10/27/2013 08:40:48 PM,Code 3 Transport,10/27/2013 09:20:57 PM,1700 Block of MCKINNON AVE,SF,94124,B10,25,6455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7374788316121, -122.391986352639)",133000319-93 +123580272,B03,12119944,Alarms,12/23/2012,12/23/2012,12/23/2012 06:40:13 PM,12/23/2012 06:42:27 PM,12/23/2012 06:42:44 PM,12/23/2012 06:43:47 PM,12/23/2012 06:47:45 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 06:54:28 PM,0 Block of 2ND ST,SF,94105,B03,1,2144,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7886675869095, -122.400529034534)",123580272-B03 +160712391,71,16028302,Medical Incident,03/11/2016,03/11/2016,03/11/2016 04:11:41 PM,03/11/2016 04:13:17 PM,03/11/2016 04:13:48 PM,03/11/2016 04:13:59 PM,03/11/2016 04:21:09 PM,03/11/2016 04:30:48 PM,03/11/2016 04:51:39 PM,Code 2 Transport,03/11/2016 05:18:37 PM,2100 Block of RIVERA ST,San Francisco,94116,B08,18,7545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7462434805122, -122.489346446358)",160712391-71 +133650107,E39,13123884,Structure Fire,12/31/2013,12/31/2013,12/31/2013 09:21:00 AM,12/31/2013 09:22:26 AM,12/31/2013 09:26:09 AM,12/31/2013 09:27:51 AM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Other,12/31/2013 09:32:11 AM,1300 Block of NORIEGA ST,SF,94122,B08,40,7431,3,3,3,true,Fire,1,ENGINE,12,8,4,Sunset/Parkside,"(37.7541143987434, -122.478078270474)",133650107-E39 +130690265,87,13023113,Medical Incident,03/10/2013,03/10/2013,03/10/2013 07:16:51 PM,03/10/2013 07:17:30 PM,03/10/2013 07:17:44 PM,03/10/2013 07:17:56 PM,03/10/2013 07:21:20 PM,03/10/2013 07:47:53 PM,03/10/2013 08:24:06 PM,Code 2 Transport,03/10/2013 08:26:33 PM,1500 Block of MCKINNON AVE,SF,94124,B10,17,6534,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7353846949513, -122.388260839509)",130690265-87 +120770308,KM14,12025616,Medical Incident,03/17/2012,03/17/2012,03/17/2012 07:26:38 PM,03/17/2012 07:28:48 PM,03/17/2012 07:30:22 PM,03/17/2012 07:31:48 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/17/2012 07:39:28 PM,100 Block of EL VERANO WAY,SF,94127,B09,15,8547,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7306626236043, -122.46146141525)",120770308-KM14 +140260338,T19,14009051,Alarms,01/26/2014,01/26/2014,01/26/2014 11:35:17 PM,01/26/2014 11:36:49 PM,01/26/2014 11:37:14 PM,01/26/2014 11:39:54 PM,01/26/2014 11:40:34 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/26/2014 11:51:39 PM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",140260338-T19 +110390188,T17,11012935,Medical Incident,02/08/2011,02/08/2011,02/08/2011 12:59:06 PM,02/08/2011 01:00:24 PM,02/08/2011 01:00:55 PM,02/08/2011 01:01:45 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 01:02:10 PM,0 Block of ESPANOLA ST,SF,94124,B10,17,6641,3,3,3,false,,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",110390188-T17 +160021688,AM06,16000745,Medical Incident,01/02/2016,01/02/2016,01/02/2016 01:30:05 PM,01/02/2016 01:32:59 PM,01/02/2016 01:33:24 PM,01/02/2016 01:34:06 PM,01/02/2016 01:41:25 PM,01/02/2016 01:58:39 PM,01/02/2016 02:24:25 PM,Code 2 Transport,01/02/2016 03:12:09 PM,100 Block of MONTGOMERY ST,Presidio,94104,B99,51,4626,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7905126810084, -122.402216710445)",160021688-AM06 +130230414,E31,13008134,Citizen Assist / Service Call,01/23/2013,01/23/2013,01/23/2013 11:13:20 PM,01/23/2013 11:14:25 PM,01/23/2013 11:15:05 PM,01/23/2013 11:17:37 PM,01/23/2013 11:18:49 PM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Fire,01/23/2013 11:27:06 PM,700 Block of 9TH AVE,SF,94118,B07,31,7133,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7742838362114, -122.467088086382)",130230414-E31 +140220358,77,14007672,Medical Incident,01/22/2014,01/22/2014,01/22/2014 08:55:09 PM,01/22/2014 08:57:33 PM,01/22/2014 09:01:19 PM,01/22/2014 09:01:19 PM,04/25/2016 01:48:35 PM,01/22/2014 09:07:51 PM,01/22/2014 09:14:52 PM,Code 3 Transport,01/22/2014 09:36:33 PM,SAN BRUNO AV/BACON ST,SF,94134,B10,42,6451,,E,3,true,Potentially Life-Threatening,1,MEDIC,5,10,9,Portola,"(37.7276341272753, -122.403592890818)",140220358-77 +160732531,AM08,16029071,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:12:34 PM,03/13/2016 07:14:20 PM,03/13/2016 07:15:07 PM,03/13/2016 07:15:40 PM,03/13/2016 07:30:20 PM,03/13/2016 07:37:10 PM,03/13/2016 07:48:03 PM,Code 2 Transport,03/13/2016 08:18:28 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160732531-AM08 +111810074,T15,11059652,Traffic Collision,06/30/2011,06/30/2011,06/30/2011 08:50:22 AM,06/30/2011 08:50:53 AM,06/30/2011 08:51:13 AM,06/30/2011 08:56:03 AM,06/30/2011 09:00:30 AM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 09:35:18 AM,2900 Block of DIAMOND ST,SF,94131,B09,26,8269,3,3,3,false,,1,TRUCK,4,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",111810074-T15 +123590344,E01,12120339,Structure Fire,12/24/2012,12/24/2012,12/24/2012 10:29:39 PM,12/24/2012 10:32:53 PM,12/24/2012 10:33:12 PM,04/25/2016 01:55:09 PM,12/24/2012 10:37:52 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 10:38:58 PM,100 Block of 3RD ST,SF,94103,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",123590344-E01 +160591064,AM04,16023460,Medical Incident,02/28/2016,02/28/2016,02/28/2016 10:04:20 AM,02/28/2016 10:05:08 AM,02/28/2016 10:05:47 AM,02/28/2016 10:06:37 AM,02/28/2016 10:12:52 AM,02/28/2016 10:31:05 AM,02/28/2016 10:43:14 AM,Code 2 Transport,02/28/2016 11:05:11 AM,ALABAMA ST/24TH ST,San Francisco,94110,B06,7,5527,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7526848900219, -122.410962662832)",160591064-AM04 +111600143,RC2,11052860,Medical Incident,06/09/2011,06/09/2011,06/09/2011 12:59:21 PM,06/09/2011 01:01:25 PM,06/09/2011 01:02:18 PM,06/09/2011 01:03:56 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 01:09:45 PM,1600 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",111600143-RC2 +160453559,53,16018327,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 10:51:19 PM,02/14/2016 10:54:53 PM,02/14/2016 10:55:11 PM,02/14/2016 10:55:36 PM,02/14/2016 11:07:01 PM,02/14/2016 11:16:05 PM,02/14/2016 11:35:35 PM,Code 2 Transport,02/15/2016 12:18:24 AM,MONTGOMERY ST/CALIFORNIA ST,San Francisco,94104,B01,13,1234,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928512206877, -122.40276676965)",160453559-53 +132700082,82,13091612,Medical Incident,09/27/2013,09/26/2013,09/27/2013 07:15:07 AM,09/27/2013 07:16:59 AM,09/27/2013 07:23:29 AM,09/27/2013 07:23:43 AM,09/27/2013 07:27:31 AM,09/27/2013 07:34:30 AM,09/27/2013 07:45:50 AM,Code 2 Transport,09/27/2013 08:19:21 AM,100 Block of BARNEVELD AVE,SF,94124,B10,9,6412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7450485716234, -122.402839684407)",132700082-82 +160644071,76,16025724,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:50:19 PM,03/04/2016 10:53:45 PM,03/04/2016 10:54:16 PM,03/04/2016 10:54:24 PM,03/04/2016 10:58:55 PM,03/04/2016 11:14:38 PM,03/04/2016 11:30:22 PM,Code 2 Transport,03/04/2016 11:45:47 PM,1200 Block of WASHINGTON ST,San Francisco,94108,B01,41,1466,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7941609889234, -122.413818267559)",160644071-76 +111050356,E07,11034922,Structure Fire,04/15/2011,04/15/2011,04/15/2011 11:11:04 PM,04/15/2011 11:12:38 PM,04/15/2011 11:12:46 PM,04/25/2016 02:05:05 PM,04/15/2011 11:13:47 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 11:24:19 PM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",111050356-E07 +132730050,T06,13092672,Structure Fire,09/30/2013,09/29/2013,09/30/2013 03:19:12 AM,09/30/2013 03:20:59 AM,09/30/2013 03:21:16 AM,09/30/2013 03:23:11 AM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 03:27:46 AM,500 Block of DIVISADERO ST,SF,94117,B05,21,4145,3,3,3,false,Alarm,1,TRUCK,7,5,5,Hayes Valley,"(37.7745415617003, -122.437589912285)",132730050-T06 +140060093,E40,14002057,Citizen Assist / Service Call,01/06/2014,01/06/2014,01/06/2014 08:10:20 AM,01/06/2014 08:11:50 AM,01/06/2014 08:12:17 AM,01/06/2014 08:14:18 AM,01/06/2014 08:16:49 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 08:25:57 AM,1100 Block of TARAVAL ST,SF,94116,B08,40,7416,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.742986949819, -122.478374336558)",140060093-E40 +123610151,89,12120778,Medical Incident,12/26/2012,12/26/2012,12/26/2012 11:51:13 AM,12/26/2012 11:53:13 AM,12/26/2012 11:53:45 AM,12/26/2012 11:53:52 AM,12/26/2012 12:04:31 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Unable to Locate,12/26/2012 12:08:26 PM,JUDAH ST/GREAT HY,SF,94122,B08,23,7723,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7602716873667, -122.509381620507)",123610151-89 +160722203,KM02,16028655,Medical Incident,03/12/2016,03/12/2016,03/12/2016 04:02:26 PM,03/12/2016 04:03:37 PM,03/12/2016 04:03:59 PM,03/12/2016 04:05:53 PM,03/12/2016 04:12:53 PM,03/12/2016 04:28:25 PM,03/12/2016 04:56:57 PM,Code 3 Transport,03/12/2016 05:47:23 PM,0 Block of CARR ST,San Francisco,94124,B10,44,6323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7217620449242, -122.396882396806)",160722203-KM02 +160732606,AM10,16029082,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:40:28 PM,03/13/2016 07:40:43 PM,03/13/2016 07:41:33 PM,03/13/2016 07:42:08 PM,03/13/2016 07:53:57 PM,03/13/2016 07:54:05 PM,03/13/2016 08:31:25 PM,Code 2 Transport,03/13/2016 08:41:19 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160732606-AM10 +112360302,RS2,11077988,Traffic Collision,08/24/2011,08/24/2011,08/24/2011 07:28:14 PM,08/24/2011 07:28:29 PM,08/24/2011 07:28:50 PM,08/24/2011 07:37:03 PM,08/24/2011 07:41:41 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 07:57:37 PM,BACON ST/BAYSHORE BL,SF,94124,B10,42,6451,3,3,3,false,,1,RESCUE SQUAD,7,10,10,Portola,"(37.7281019732216, -122.402209197225)",112360302-RS2 +160130304,71,16005037,Medical Incident,01/13/2016,01/12/2016,01/13/2016 03:42:55 AM,01/13/2016 03:42:55 AM,01/13/2016 03:42:55 AM,01/13/2016 03:42:55 AM,01/13/2016 03:42:55 AM,01/13/2016 04:00:27 AM,01/13/2016 04:01:07 AM,Code 2 Transport,01/13/2016 05:19:59 AM,HYDE ST/BUSH ST,San Francisco,94109,B99,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7891101748937, -122.417016879226)",160130304-71 +123030284,E31,12100584,Medical Incident,10/29/2012,10/29/2012,10/29/2012 01:10:31 PM,10/29/2012 01:12:28 PM,10/29/2012 01:12:50 PM,10/29/2012 01:14:18 PM,10/29/2012 01:16:53 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Patient Declined Transport,10/29/2012 01:27:49 PM,BALBOA ST/19TH AV,SF,94121,B07,31,7157,1,1,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7765952440368, -122.478033276675)",123030284-E31 +103040307,B01,10097231,Alarms,10/31/2010,10/31/2010,10/31/2010 05:21:59 PM,10/31/2010 05:23:02 PM,10/31/2010 05:24:02 PM,10/31/2010 05:24:42 PM,10/31/2010 05:26:16 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 05:27:34 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,CHIEF,2,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",103040307-B01 +110430093,E36,11014192,Outside Fire,02/12/2011,02/11/2011,02/12/2011 05:28:56 AM,02/12/2011 05:30:44 AM,02/12/2011 05:30:52 AM,02/12/2011 05:32:52 AM,02/12/2011 05:34:12 AM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 06:16:46 AM,0 Block of GOUGH ST,SF,94102,B02,36,3311,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7733777975899, -122.422339243333)",110430093-E36 +140580146,96,14019530,Medical Incident,02/27/2014,02/27/2014,02/27/2014 11:33:11 AM,02/27/2014 11:34:01 AM,02/27/2014 11:34:19 AM,02/27/2014 11:34:31 AM,02/27/2014 11:38:47 AM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Patient Declined Transport,02/27/2014 12:02:41 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",140580146-96 +160621743,60,16024691,Medical Incident,03/02/2016,03/02/2016,03/02/2016 12:29:09 PM,03/02/2016 12:30:44 PM,03/02/2016 12:31:09 PM,03/02/2016 12:31:22 PM,03/02/2016 12:36:28 PM,03/02/2016 12:53:23 PM,03/02/2016 12:59:44 PM,Code 2 Transport,03/02/2016 02:09:38 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160621743-60 +130040192,E44,13001353,Alarms,01/04/2013,01/04/2013,01/04/2013 12:07:26 PM,01/04/2013 12:08:56 PM,01/04/2013 12:09:03 PM,01/04/2013 12:09:37 PM,01/04/2013 12:12:24 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 12:15:43 PM,400 Block of TUNNEL AVE,SF,94134,B10,44,6271,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7091116111849, -122.401261222882)",130040192-E44 +160660177,68,16026223,Medical Incident,03/06/2016,03/05/2016,03/06/2016 01:13:22 AM,03/06/2016 01:13:22 AM,03/06/2016 01:15:26 AM,03/06/2016 01:15:26 AM,03/06/2016 01:22:41 AM,03/06/2016 01:29:20 AM,03/06/2016 01:38:57 AM,Code 2 Transport,03/06/2016 02:27:37 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160660177-68 +103410239,78,10109164,Medical Incident,12/07/2010,12/07/2010,12/07/2010 02:58:28 PM,12/07/2010 03:00:54 PM,12/07/2010 03:11:38 PM,12/07/2010 03:12:00 PM,12/07/2010 03:24:24 PM,12/07/2010 03:37:24 PM,12/07/2010 03:49:35 PM,Code 2 Transport,12/07/2010 04:18:21 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,1,1,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",103410239-78 +103120273,E14,10100119,Medical Incident,11/08/2010,11/08/2010,11/08/2010 05:46:48 PM,11/08/2010 05:48:00 PM,11/08/2010 05:48:13 PM,11/08/2010 05:49:03 PM,11/08/2010 05:50:59 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 06:10:22 PM,200 Block of 25TH AVE,SF,94121,B07,14,7214,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7848109228763, -122.485148529498)",103120273-E14 +110480031,E03,11015750,Medical Incident,02/17/2011,02/16/2011,02/17/2011 04:04:12 AM,02/17/2011 04:05:43 AM,02/17/2011 04:06:00 AM,02/17/2011 04:07:18 AM,02/17/2011 04:10:05 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/17/2011 04:21:35 AM,JONES ST/OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",110480031-E03 +121120049,E08,12037009,Medical Incident,04/21/2012,04/20/2012,04/21/2012 02:32:18 AM,04/21/2012 02:34:15 AM,04/21/2012 02:36:02 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 02:38:06 AM,MINNA ST/6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7805353840251, -122.40816079453)",121120049-E08 +112600383,E07,11085923,Structure Fire,09/17/2011,09/17/2011,09/17/2011 08:09:31 PM,09/17/2011 08:09:31 PM,09/17/2011 08:09:39 PM,09/17/2011 08:10:28 PM,09/17/2011 08:11:47 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 08:12:22 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",112600383-E07 +130280410,E02,13009787,Medical Incident,01/28/2013,01/28/2013,01/28/2013 11:36:40 PM,01/28/2013 11:37:28 PM,01/28/2013 11:38:12 PM,01/28/2013 11:39:40 PM,01/28/2013 11:42:21 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/28/2013 11:57:09 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",130280410-E02 +103590183,56,10115233,Medical Incident,12/25/2010,12/25/2010,12/25/2010 01:43:14 PM,12/25/2010 01:44:05 PM,12/25/2010 01:44:32 PM,12/25/2010 01:44:45 PM,12/25/2010 01:48:11 PM,12/25/2010 01:58:02 PM,12/25/2010 02:10:28 PM,Code 2 Transport,12/25/2010 02:29:45 PM,100 Block of 5TH ST,SF,94103,B03,1,2246,3,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7820718462058, -122.405747870527)",103590183-56 +132210056,E23,13074533,Medical Incident,08/09/2013,08/09/2013,08/09/2013 08:34:00 AM,08/09/2013 08:35:14 AM,08/09/2013 08:35:34 AM,08/09/2013 08:37:09 AM,08/09/2013 08:40:34 AM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 08:51:49 AM,2400 Block of 47TH AVE,SF,94116,B08,23,7712,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7407846485821, -122.505694431009)",132210056-E23 +112760285,T01,11091434,Alarms,10/03/2011,10/03/2011,10/03/2011 04:35:26 PM,10/03/2011 04:36:00 PM,10/03/2011 04:36:07 PM,10/03/2011 04:37:40 PM,10/03/2011 04:42:12 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 04:45:45 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",112760285-T01 +123310050,E08,12109924,Traffic Collision,11/26/2012,11/25/2012,11/26/2012 05:06:19 AM,11/26/2012 05:08:24 AM,11/26/2012 05:08:43 AM,11/26/2012 05:11:16 AM,11/26/2012 05:12:23 AM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/26/2012 05:14:07 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",123310050-E08 +121900070,T03,12063210,Structure Fire,07/08/2012,07/07/2012,07/08/2012 06:22:56 AM,07/08/2012 06:22:57 AM,07/08/2012 06:23:15 AM,07/08/2012 06:25:00 AM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/08/2012 06:25:55 AM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",121900070-T03 +160543538,78,16021759,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:50:22 PM,02/23/2016 07:51:21 PM,02/23/2016 07:51:44 PM,02/23/2016 07:52:08 PM,02/23/2016 07:55:40 PM,02/23/2016 08:10:43 PM,02/23/2016 08:22:13 PM,Code 2 Transport,02/23/2016 08:57:17 PM,300 Block of MASON ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7869126924267, -122.409756223507)",160543538-78 +133020008,E08,13102480,Medical Incident,10/29/2013,10/28/2013,10/29/2013 12:34:17 AM,10/29/2013 12:36:13 AM,10/29/2013 12:36:40 AM,10/29/2013 12:38:51 AM,10/29/2013 12:41:40 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/29/2013 12:48:02 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",133020008-E08 +160341548,52,16013361,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:11:10 PM,02/03/2016 12:12:25 PM,02/03/2016 12:12:49 PM,02/03/2016 12:13:08 PM,02/03/2016 12:19:03 PM,02/03/2016 12:37:24 PM,02/03/2016 01:06:13 PM,Code 2 Transport,02/03/2016 01:37:06 PM,100 Block of MARSTON AV,San Francisco,94112,B09,15,8226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7274039986614, -122.447230933222)",160341548-52 +122300012,E17,12076071,Medical Incident,08/17/2012,08/16/2012,08/17/2012 12:48:49 AM,08/17/2012 12:49:31 AM,08/17/2012 12:49:46 AM,08/17/2012 12:51:29 AM,08/17/2012 12:52:29 AM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Other,08/17/2012 01:00:38 AM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7290589753437, -122.385447178388)",122300012-E17 +131540238,E36,13052198,Other,06/03/2013,06/03/2013,06/03/2013 02:17:23 PM,06/03/2013 02:18:32 PM,06/03/2013 02:41:32 PM,06/03/2013 02:42:33 PM,06/03/2013 02:48:53 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 03:01:29 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,ENGINE,5,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",131540238-E36 +160380319,AM20,16015043,Medical Incident,02/07/2016,02/06/2016,02/07/2016 01:49:28 AM,02/07/2016 01:50:20 AM,02/07/2016 01:50:39 AM,02/07/2016 01:51:46 AM,02/07/2016 01:52:41 AM,02/07/2016 02:05:20 AM,02/07/2016 02:22:23 AM,Code 2 Transport,02/07/2016 03:01:16 AM,HARRISON ST/8TH ST,San Francisco,94103,B03,8,2312,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7737596997868, -122.408516330795)",160380319-AM20 +121940186,77,12064558,Medical Incident,07/12/2012,07/12/2012,07/12/2012 12:42:47 PM,07/12/2012 12:43:18 PM,07/12/2012 12:44:48 PM,07/12/2012 12:45:11 PM,07/12/2012 01:02:04 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,No Merit,07/12/2012 01:05:17 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7756454671917, -122.412432457912)",121940186-77 +113230213,E01,11107317,Medical Incident,11/19/2011,11/19/2011,11/19/2011 01:57:16 PM,11/19/2011 02:00:14 PM,11/19/2011 02:00:59 PM,11/19/2011 02:02:31 PM,04/25/2016 02:01:34 PM,04/25/2016 02:01:34 PM,04/25/2016 02:01:34 PM,Other,11/19/2011 02:04:31 PM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,1,1,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",113230213-E01 +102630324,E10,10083332,Medical Incident,09/20/2010,09/20/2010,09/20/2010 07:01:36 PM,09/20/2010 07:03:05 PM,09/20/2010 07:10:46 PM,09/20/2010 07:11:59 PM,09/20/2010 07:12:59 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Patient Declined Transport,09/20/2010 07:30:13 PM,3200 Block of CALIFORNIA ST,SF,94118,B04,10,4421,1,1,2,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7872098592651, -122.447641497264)",102630324-E10 +160442122,62,16017731,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:19:19 PM,02/13/2016 03:21:07 PM,02/13/2016 03:21:30 PM,02/13/2016 03:21:53 PM,02/13/2016 03:26:50 PM,02/13/2016 03:42:29 PM,02/13/2016 03:48:45 PM,Code 2 Transport,02/13/2016 04:01:59 PM,700 Block of MINNA ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7763745624994, -122.413346206384)",160442122-62 +113440377,E38,11114302,Medical Incident,12/10/2011,12/10/2011,12/10/2011 11:44:54 PM,12/10/2011 11:45:15 PM,12/10/2011 11:46:10 PM,12/10/2011 11:47:40 PM,12/10/2011 11:49:32 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/11/2011 12:01:36 AM,24TH ST/VALENCIA ST,SF,94110,B06,11,5512,2,2,2,false,,1,ENGINE,1,6,9,Mission,"(37.7521036457482, -122.420664802284)",113440377-E38 +160550584,62,16021906,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:22:19 AM,02/24/2016 07:23:15 AM,02/24/2016 07:23:25 AM,02/24/2016 07:24:57 AM,02/24/2016 07:28:20 AM,02/24/2016 07:57:02 AM,02/24/2016 07:57:03 AM,Code 2 Transport,02/24/2016 08:50:07 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160550584-62 +160222156,67,16008810,Medical Incident,01/22/2016,01/22/2016,01/22/2016 02:54:08 PM,01/22/2016 02:54:53 PM,01/22/2016 02:56:02 PM,01/22/2016 02:56:08 PM,01/22/2016 02:59:51 PM,01/22/2016 03:33:58 PM,01/22/2016 03:52:09 PM,Code 2 Transport,01/22/2016 04:35:46 PM,100 Block of LIPPARD AVE,San Francisco,94131,B09,26,817,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,8,West of Twin Peaks,"(37.7331188960885, -122.436006242451)",160222156-67 +103410237,58,10109160,Medical Incident,12/07/2010,12/07/2010,12/07/2010 02:54:55 PM,12/07/2010 02:56:19 PM,12/07/2010 02:57:20 PM,12/07/2010 02:58:02 PM,12/07/2010 03:03:14 PM,12/07/2010 03:12:44 PM,12/07/2010 03:49:24 PM,Code 3 Transport,12/07/2010 03:58:52 PM,400 Block of MADRID ST,SF,94112,B09,43,6134,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7224213233244, -122.432278814602)",103410237-58 +120210221,T19,12007149,Alarms,01/21/2012,01/21/2012,01/21/2012 01:23:38 PM,01/21/2012 01:24:21 PM,01/21/2012 01:24:28 PM,01/21/2012 01:26:27 PM,01/21/2012 01:28:57 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 01:42:41 PM,800 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",120210221-T19 +160452017,75,16018164,Medical Incident,02/14/2016,02/14/2016,02/14/2016 02:57:34 PM,02/14/2016 02:57:34 PM,02/14/2016 02:57:56 PM,02/14/2016 02:58:02 PM,02/14/2016 03:11:35 PM,02/14/2016 03:21:03 PM,02/14/2016 03:36:38 PM,Code 2 Transport,02/14/2016 04:30:22 PM,3RD ST/STILLMAN ST,San Francisco,94107,B03,8,2174,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",160452017-75 +123410173,RC3,12113765,Medical Incident,12/06/2012,12/06/2012,12/06/2012 11:17:05 AM,12/06/2012 11:19:21 AM,12/06/2012 11:20:25 AM,12/06/2012 11:21:07 AM,12/06/2012 11:25:31 AM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/06/2012 11:27:34 AM,1200 Block of FITZGERALD AVE,SF,94124,B10,17,6614,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7215500486273, -122.392199018387)",123410173-RC3 +160372082,KM11,16014720,Medical Incident,02/06/2016,02/06/2016,02/06/2016 01:38:59 PM,02/06/2016 01:39:48 PM,02/06/2016 01:41:14 PM,02/06/2016 01:42:32 PM,02/06/2016 01:48:56 PM,02/06/2016 01:51:44 PM,02/06/2016 02:21:04 PM,Code 2 Transport,02/06/2016 02:57:08 PM,MINNA ST/8TH ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7770264198259, -122.412616668185)",160372082-KM11 +102360072,55,10074232,Medical Incident,08/24/2010,08/23/2010,08/24/2010 07:03:32 AM,08/24/2010 07:05:17 AM,08/24/2010 07:05:44 AM,08/24/2010 07:05:57 AM,08/24/2010 07:18:38 AM,08/24/2010 07:46:46 AM,08/24/2010 08:11:04 AM,Code 2 Transport,08/24/2010 08:24:11 AM,2400 Block of 27TH AVE,SF,94116,B08,40,7466,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7417361563602, -122.484267013972)",102360072-55 +160470547,82,16018807,Medical Incident,02/16/2016,02/15/2016,02/16/2016 07:09:32 AM,02/16/2016 07:11:07 AM,02/16/2016 07:13:24 AM,02/16/2016 07:13:31 AM,02/16/2016 07:29:26 AM,02/16/2016 07:35:51 AM,02/16/2016 08:05:17 AM,Code 2 Transport,02/16/2016 08:35:46 AM,500 Block of PARIS ST,San Francisco,94112,B09,43,6126,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7200761435393, -122.436229894749)",160470547-82 +160463397,KM07,16018666,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:17:03 PM,02/15/2016 08:18:18 PM,02/15/2016 08:18:57 PM,02/15/2016 08:19:47 PM,02/15/2016 08:30:55 PM,02/15/2016 08:43:53 PM,02/15/2016 09:10:29 PM,Code 2 Transport,02/15/2016 09:11:27 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160463397-KM07 +121660286,E05,12055139,Medical Incident,06/14/2012,06/14/2012,06/14/2012 05:09:11 PM,06/14/2012 05:09:53 PM,06/14/2012 05:10:25 PM,06/14/2012 05:11:49 PM,06/14/2012 05:13:30 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 05:20:37 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121660286-E05 +160480166,KM03,16019190,Medical Incident,02/17/2016,02/16/2016,02/17/2016 01:29:30 AM,02/17/2016 01:29:30 AM,02/17/2016 01:30:07 AM,02/17/2016 01:30:31 AM,02/17/2016 01:39:28 AM,02/17/2016 01:46:49 AM,02/17/2016 01:52:12 AM,Code 2 Transport,02/17/2016 02:15:39 AM,OFARRELL ST/POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",160480166-KM03 +132510123,77,13084760,Medical Incident,09/08/2013,09/08/2013,09/08/2013 09:09:03 AM,09/08/2013 09:11:17 AM,09/08/2013 09:11:43 AM,09/08/2013 09:12:06 AM,09/08/2013 09:20:40 AM,04/25/2016 01:50:53 PM,04/25/2016 01:50:53 PM,No Merit,09/08/2013 09:24:39 AM,0 Block of ROSEMARY CT,SF,94116,B08,40,7462,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7378472975177, -122.4815063028)",132510123-77 +140610296,E21,14020745,Structure Fire,03/02/2014,03/02/2014,03/02/2014 08:09:24 PM,03/02/2014 08:09:56 PM,03/02/2014 08:10:23 PM,03/02/2014 08:12:20 PM,03/02/2014 08:12:21 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,Fire,03/02/2014 08:28:01 PM,1200 Block of FELL ST,SF,94117,B05,21,4145,3,3,3,false,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7740086037985, -122.438454791224)",140610296-E21 +160543350,81,16021741,Medical Incident,02/23/2016,02/23/2016,02/23/2016 06:53:31 PM,02/23/2016 06:53:47 PM,02/23/2016 06:54:00 PM,02/23/2016 06:54:06 PM,02/23/2016 07:00:16 PM,02/23/2016 07:26:38 PM,02/23/2016 07:49:14 PM,Code 2 Transport,02/23/2016 08:26:56 PM,1500 Block of 46TH AVE,San Francisco,94122,B08,23,7717,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7576232357796, -122.505800237994)",160543350-81 +102750202,T09,10087376,Structure Fire,10/02/2010,10/02/2010,10/02/2010 01:54:39 PM,10/02/2010 01:55:15 PM,10/02/2010 01:55:26 PM,10/02/2010 01:56:34 PM,10/02/2010 02:06:45 PM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 02:10:25 PM,1400 Block of QUESADA AVE,SF,94124,B10,17,6571,3,3,3,false,,1,TRUCK,10,10,10,Bayview Hunters Point,"(37.7306545900477, -122.386831266157)",102750202-T09 +132660185,E19,13090244,Medical Incident,09/23/2013,09/23/2013,09/23/2013 12:14:33 PM,09/23/2013 12:15:20 PM,09/23/2013 12:15:36 PM,09/23/2013 12:17:35 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/23/2013 12:22:13 PM,200 Block of SKYLINE BLVD,SF,94132,B08,19,8713,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.730009641642, -122.500476623156)",132660185-E19 +160530251,70,16021050,Medical Incident,02/22/2016,02/21/2016,02/22/2016 03:18:05 AM,02/22/2016 03:21:20 AM,02/22/2016 03:24:08 AM,02/22/2016 03:24:27 AM,02/22/2016 03:26:49 AM,02/22/2016 03:39:13 AM,02/22/2016 03:42:47 AM,Code 2 Transport,02/22/2016 04:34:48 AM,POLK ST/PINE ST,San Francisco,94109,B04,3,3122,3,3,3,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",160530251-70 +102400008,E36,10075561,Medical Incident,08/28/2010,08/27/2010,08/28/2010 12:16:59 AM,08/28/2010 12:19:47 AM,08/28/2010 12:21:25 AM,08/28/2010 12:23:15 AM,08/28/2010 12:24:49 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Patient Declined Transport,08/28/2010 12:29:02 AM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,false,,1,ENGINE,1,2,6,Mission,"(37.7737629752818, -122.417960394107)",102400008-E36 +112400275,T16,11079280,Alarms,08/28/2011,08/28/2011,08/28/2011 06:19:37 PM,08/28/2011 06:21:45 PM,08/28/2011 06:21:54 PM,08/28/2011 06:23:11 PM,08/28/2011 06:25:35 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 06:34:30 PM,2100 Block of NORTH POINT ST,SF,94123,B04,16,4113,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.802825490356, -122.442572769774)",112400275-T16 +140880004,68,14029486,Medical Incident,03/29/2014,03/28/2014,03/29/2014 12:07:36 AM,03/29/2014 12:08:33 AM,03/29/2014 12:08:43 AM,03/29/2014 12:09:13 AM,03/29/2014 12:17:17 AM,03/29/2014 12:44:08 AM,03/29/2014 01:03:03 AM,Code 2 Transport,03/29/2014 01:31:28 AM,0 Block of THOMAS MORE WAY,SAN FRANCISCO,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",140880004-68 +160410910,65,16016370,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:02:36 AM,02/10/2016 09:04:09 AM,02/10/2016 09:04:38 AM,02/10/2016 09:04:45 AM,02/10/2016 09:16:30 AM,02/10/2016 09:29:25 AM,02/10/2016 09:40:52 AM,Code 2 Transport,02/10/2016 10:38:50 AM,FULTON ST/OCTAVIA ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7785379278328, -122.424998168099)",160410910-65 +160641901,83,16025519,Medical Incident,03/04/2016,03/04/2016,03/04/2016 01:12:02 PM,03/04/2016 01:12:02 PM,03/04/2016 01:12:31 PM,03/04/2016 01:15:14 PM,03/04/2016 01:34:11 PM,03/04/2016 01:49:01 PM,03/04/2016 02:16:27 PM,Code 2 Transport,03/04/2016 02:53:34 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8083718015584, -122.414994322457)",160641901-83 +121210164,E07,12040170,Medical Incident,04/30/2012,04/30/2012,04/30/2012 12:41:30 PM,04/30/2012 12:42:16 PM,04/30/2012 12:42:48 PM,04/30/2012 12:44:08 PM,04/30/2012 12:44:24 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 12:45:54 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",121210164-E07 +133090377,E28,13105221,Medical Incident,11/05/2013,11/05/2013,11/05/2013 09:46:12 PM,11/05/2013 09:47:44 PM,11/05/2013 09:48:01 PM,11/05/2013 09:49:12 PM,11/05/2013 09:51:16 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 09:55:21 PM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",133090377-E28 +131540405,E12,13052356,Medical Incident,06/03/2013,06/03/2013,06/03/2013 10:39:26 PM,06/03/2013 10:40:48 PM,06/03/2013 10:42:30 PM,06/03/2013 10:44:33 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 10:46:19 PM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,2,2,2,true,Non Life-threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7692177178614, -122.452690310191)",131540405-E12 +132230052,55,13075207,Medical Incident,08/11/2013,08/10/2013,08/11/2013 02:28:20 AM,08/11/2013 02:29:36 AM,08/11/2013 02:31:10 AM,08/11/2013 02:33:38 AM,08/11/2013 02:33:39 AM,08/11/2013 02:38:27 AM,08/11/2013 02:47:59 AM,Code 2 Transport,08/11/2013 03:19:32 AM,2300 Block of 16TH ST,SF,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",132230052-55 +160160227,78,16006251,Traffic Collision,01/16/2016,01/15/2016,01/16/2016 01:38:25 AM,01/16/2016 01:38:25 AM,01/16/2016 01:39:17 AM,01/16/2016 01:39:43 AM,01/16/2016 01:49:18 AM,01/16/2016 02:09:12 AM,01/16/2016 02:15:58 AM,Code 3 Transport,01/16/2016 03:25:19 AM,1000 Block of MARKET ST,San Francisco,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",160160227-78 +113080272,E13,11102383,Alarms,11/04/2011,11/04/2011,11/04/2011 04:04:21 PM,11/04/2011 04:06:14 PM,11/04/2011 04:06:27 PM,11/04/2011 04:07:12 PM,11/04/2011 04:09:42 PM,04/25/2016 02:01:48 PM,04/25/2016 02:01:48 PM,Other,11/04/2011 04:16:29 PM,300 Block of KEARNY ST,SF,94108,B01,13,1243,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",113080272-E13 +160032652,71,16001307,Medical Incident,01/03/2016,01/03/2016,01/03/2016 06:47:00 PM,01/03/2016 06:47:00 PM,01/03/2016 06:47:26 PM,01/03/2016 06:47:33 PM,01/03/2016 06:56:17 PM,01/03/2016 07:27:41 PM,01/03/2016 07:43:38 PM,Code 2 Transport,01/03/2016 08:09:26 PM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160032652-71 +121760023,T10,12058358,Structure Fire,06/24/2012,06/23/2012,06/24/2012 12:53:34 AM,06/24/2012 12:53:34 AM,06/24/2012 12:54:48 AM,06/24/2012 12:55:12 AM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/24/2012 12:56:14 AM,DIVISADERO ST/BEACH ST,SF,94123,B04,16,4213,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.8037049357975, -122.443602518357)",121760023-T10 +160420610,71,16016757,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:41:09 AM,02/11/2016 07:42:40 AM,02/11/2016 07:43:02 AM,02/11/2016 07:43:09 AM,02/11/2016 07:51:54 AM,02/11/2016 08:15:19 AM,02/11/2016 08:56:22 AM,Code 2 Transport,02/11/2016 09:45:39 AM,0 Block of ESPANOLA ST,San Francisco,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7310696411386, -122.379978569038)",160420610-71 +122270022,94,12075126,Medical Incident,08/14/2012,08/13/2012,08/14/2012 02:25:01 AM,08/14/2012 02:25:40 AM,08/14/2012 02:26:23 AM,08/14/2012 02:26:33 AM,08/14/2012 02:37:51 AM,08/14/2012 02:57:24 AM,08/14/2012 03:04:40 AM,Code 2 Transport,08/14/2012 03:32:00 AM,0 Block of GOLDEN GATE AVE,SF,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",122270022-94 +112770048,E13,11091590,Alarms,10/04/2011,10/03/2011,10/04/2011 06:15:15 AM,10/04/2011 06:16:17 AM,10/04/2011 06:16:27 AM,10/04/2011 06:18:15 AM,10/04/2011 06:19:17 AM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 06:23:11 AM,500 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7939891170028, -122.403070438719)",112770048-E13 +160492272,64,16019778,Medical Incident,02/18/2016,02/18/2016,02/18/2016 03:02:25 PM,02/18/2016 03:02:53 PM,02/18/2016 03:03:14 PM,02/18/2016 03:03:31 PM,02/18/2016 03:12:05 PM,02/18/2016 03:40:36 PM,02/18/2016 04:24:47 PM,Code 2 Transport,02/18/2016 04:29:28 PM,800 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",160492272-64 +132620268,E06,13088813,Medical Incident,09/19/2013,09/19/2013,09/19/2013 04:05:51 PM,09/19/2013 04:06:47 PM,09/19/2013 04:07:12 PM,09/19/2013 04:08:31 PM,09/19/2013 04:11:19 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 04:16:50 PM,100 Block of DIAMOND ST,SF,94114,B05,6,5415,3,2,2,true,Non Life-threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7599536346651, -122.437183555035)",132620268-E06 +112580329,E01,11085168,Alarms,09/15/2011,09/15/2011,09/15/2011 07:02:54 PM,09/15/2011 07:03:50 PM,09/15/2011 07:04:24 PM,09/15/2011 07:05:27 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 07:25:16 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7870299623416, -122.398474239149)",112580329-E01 +121250323,B07,12041631,Water Rescue,05/04/2012,05/04/2012,05/04/2012 07:36:32 PM,05/04/2012 07:37:42 PM,05/04/2012 07:38:54 PM,05/04/2012 07:40:52 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 07:49:41 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,CHIEF,7,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121250323-B07 +132390014,E31,13080502,Medical Incident,08/27/2013,08/26/2013,08/27/2013 01:49:51 AM,08/27/2013 01:53:07 AM,08/27/2013 01:53:34 AM,08/27/2013 01:55:10 AM,08/27/2013 02:12:11 AM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 02:27:14 AM,400 Block of ARGUELLO BLVD,SF,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7822260108075, -122.458859437192)",132390014-E31 +103340355,78,10107019,Medical Incident,11/30/2010,11/30/2010,11/30/2010 10:24:10 PM,11/30/2010 10:25:13 PM,11/30/2010 10:25:23 PM,11/30/2010 10:26:38 PM,11/30/2010 10:32:36 PM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Patient Declined Transport,11/30/2010 11:23:42 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",103340355-78 +110210176,E01,11006939,Medical Incident,01/21/2011,01/21/2011,01/21/2011 12:55:22 PM,01/21/2011 12:56:24 PM,01/21/2011 12:56:58 PM,04/25/2016 02:06:29 PM,01/21/2011 12:59:08 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/21/2011 01:03:53 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",110210176-E01 +140370106,78,14012441,Medical Incident,02/06/2014,02/06/2014,02/06/2014 09:09:44 AM,02/06/2014 09:10:52 AM,02/06/2014 09:11:01 AM,02/06/2014 09:11:19 AM,02/06/2014 09:16:08 AM,02/06/2014 09:25:38 AM,02/06/2014 09:34:20 AM,Fire,02/06/2014 09:59:15 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",140370106-78 +131910043,T13,13064928,Alarms,07/10/2013,07/09/2013,07/10/2013 06:20:58 AM,07/10/2013 06:22:15 AM,07/10/2013 06:22:23 AM,07/10/2013 06:24:18 AM,07/10/2013 06:28:13 AM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/10/2013 06:42:25 AM,300 Block of HOWARD ST,SF,94105,B03,35,2124,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",131910043-T13 +160011742,89,16000307,Medical Incident,01/01/2016,01/01/2016,01/01/2016 11:23:36 AM,01/01/2016 11:23:36 AM,01/01/2016 11:23:59 AM,01/01/2016 11:24:13 AM,01/01/2016 11:46:21 AM,01/01/2016 11:46:22 AM,01/01/2016 11:51:18 AM,Code 2 Transport,01/01/2016 12:22:44 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160011742-89 +123300165,E36,12109705,Medical Incident,11/25/2012,11/25/2012,11/25/2012 12:57:12 PM,11/25/2012 12:58:50 PM,11/25/2012 12:59:00 PM,11/25/2012 01:00:01 PM,11/25/2012 01:05:37 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,No Merit,11/25/2012 01:17:34 PM,HYDE ST/GROVE ST,SF,94103,B02,36,1552,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",123300165-E36 +130240396,E13,13008468,Medical Incident,01/24/2013,01/24/2013,01/24/2013 10:40:34 PM,01/24/2013 10:42:51 PM,01/24/2013 10:43:05 PM,01/24/2013 10:44:11 PM,01/24/2013 10:46:30 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 11:07:16 PM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",130240396-E13 +140180274,67,14006255,Medical Incident,01/18/2014,01/18/2014,01/18/2014 04:29:44 PM,01/18/2014 04:31:37 PM,01/18/2014 04:32:42 PM,01/18/2014 04:36:17 PM,01/18/2014 04:42:09 PM,01/18/2014 05:07:32 PM,01/18/2014 05:18:14 PM,Code 2 Transport,01/18/2014 06:01:43 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",140180274-67 +123020205,E10,12100178,Medical Incident,10/28/2012,10/28/2012,10/28/2012 12:54:31 PM,10/28/2012 12:54:31 PM,10/28/2012 12:54:44 PM,10/28/2012 12:57:35 PM,10/28/2012 01:01:28 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 01:19:31 PM,MASONIC AV/FELL ST,SF,94117,B05,21,4356,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",123020205-E10 +160912954,86,16036192,Medical Incident,03/31/2016,03/31/2016,03/31/2016 06:17:53 PM,03/31/2016 06:19:01 PM,03/31/2016 06:19:27 PM,03/31/2016 06:19:48 PM,03/31/2016 06:28:47 PM,03/31/2016 06:42:33 PM,03/31/2016 06:49:26 PM,Code 2 Transport,03/31/2016 08:29:06 PM,1800 Block of WALLER ST,San Francisco,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",160912954-86 +123140080,54,12104406,Medical Incident,11/09/2012,11/08/2012,11/09/2012 07:28:13 AM,11/09/2012 07:29:59 AM,11/09/2012 07:30:37 AM,11/09/2012 07:33:11 AM,11/09/2012 07:36:27 AM,11/09/2012 07:57:33 AM,11/09/2012 08:02:27 AM,Code 3 Transport,11/09/2012 08:37:15 AM,500 Block of GROVE ST,SF,94102,B02,36,3315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7774408255184, -122.425619373234)",123140080-54 +160473951,53,16019155,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:42:46 PM,02/16/2016 10:43:37 PM,02/16/2016 10:44:06 PM,02/16/2016 10:44:32 PM,02/16/2016 10:49:20 PM,02/16/2016 11:10:46 PM,02/16/2016 11:32:33 PM,Code 2 Transport,02/17/2016 12:07:15 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160473951-53 +110220193,62,11007273,Medical Incident,01/22/2011,01/22/2011,01/22/2011 02:38:21 PM,01/22/2011 02:40:22 PM,01/22/2011 02:42:34 PM,01/22/2011 02:43:03 PM,01/22/2011 02:49:48 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Patient Declined Transport,01/22/2011 03:10:56 PM,0 Block of GEARY ST,SF,94108,B01,1,1241,1,1,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",110220193-62 +103130397,E31,10100527,Medical Incident,11/09/2010,11/09/2010,11/09/2010 11:51:11 PM,11/09/2010 11:52:07 PM,11/09/2010 11:52:49 PM,11/09/2010 11:54:02 PM,11/09/2010 11:57:29 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/10/2010 12:03:28 AM,700 Block of 6TH AVE,SF,94118,B07,31,7132,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7744996655263, -122.463743282418)",103130397-E31 +130020286,E01,13000722,Medical Incident,01/02/2013,01/02/2013,01/02/2013 04:52:23 PM,01/02/2013 04:52:24 PM,01/02/2013 04:52:24 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,No Merit,01/02/2013 04:52:31 PM,700 Block of FOLSOM ST,SF,94103,B03,1,2176,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7832536611671, -122.399701172169)",130020286-E01 +160842589,KM06,16033447,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:35:58 PM,03/24/2016 03:37:04 PM,03/24/2016 03:37:53 PM,03/24/2016 03:38:33 PM,03/24/2016 03:43:59 PM,03/24/2016 04:07:56 PM,03/24/2016 04:21:27 PM,Code 2 Transport,03/24/2016 04:57:40 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160842589-KM06 +160021458,62,16000724,Medical Incident,01/02/2016,01/02/2016,01/02/2016 12:32:18 PM,01/02/2016 12:32:53 PM,01/02/2016 12:33:04 PM,01/02/2016 12:33:18 PM,01/02/2016 12:37:43 PM,01/02/2016 01:03:37 PM,01/02/2016 01:28:52 PM,Code 2 Transport,01/02/2016 02:16:04 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",160021458-62 +111240183,T01,11040968,Medical Incident,05/04/2011,05/04/2011,05/04/2011 12:42:48 PM,05/04/2011 12:43:52 PM,05/04/2011 12:44:57 PM,05/04/2011 12:45:52 PM,05/04/2011 12:49:22 PM,04/25/2016 02:04:47 PM,04/25/2016 02:04:47 PM,Other,05/04/2011 12:50:05 PM,8TH ST/CLEMENTINA ST,SF,94103,B02,36,2335,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7754283507959, -122.410610729327)",111240183-T01 +111480029,E17,11048958,Medical Incident,05/28/2011,05/27/2011,05/28/2011 02:40:59 AM,05/28/2011 02:42:03 AM,05/28/2011 02:42:14 AM,05/28/2011 02:43:35 AM,05/28/2011 02:46:38 AM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,05/28/2011 02:54:02 AM,2500 Block of GRIFFITH ST,SF,94124,B10,17,6573,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7191884467237, -122.386431507122)",111480029-E17 +160140601,AM02,16005475,Medical Incident,01/14/2016,01/13/2016,01/14/2016 07:25:09 AM,01/14/2016 07:27:01 AM,01/14/2016 07:30:16 AM,01/14/2016 07:30:57 AM,01/14/2016 07:43:34 AM,01/14/2016 08:02:13 AM,01/14/2016 08:16:16 AM,Code 2 Transport,01/14/2016 08:48:09 AM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8038770970726, -122.404157077302)",160140601-AM02 +140790182,KM14,14026716,Medical Incident,03/20/2014,03/20/2014,03/20/2014 12:58:44 PM,03/20/2014 12:59:42 PM,03/20/2014 01:00:01 PM,03/20/2014 01:03:15 PM,03/20/2014 01:07:25 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Patient Declined Transport,03/20/2014 01:37:48 PM,600 Block of FULTON ST,SAN FRANCISCO,94102,B02,5,3412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",140790182-KM14 +120210293,T03,12007217,Medical Incident,01/21/2012,01/21/2012,01/21/2012 04:38:47 PM,01/21/2012 04:39:59 PM,01/21/2012 04:40:11 PM,01/21/2012 04:40:18 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/21/2012 04:41:59 PM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",120210293-T03 +122140006,55,12070864,Medical Incident,08/01/2012,07/31/2012,08/01/2012 12:28:58 AM,08/01/2012 12:28:58 AM,08/01/2012 12:29:07 AM,08/01/2012 12:29:29 AM,08/01/2012 12:31:50 AM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Patient Declined Transport,08/01/2012 12:53:05 AM,GEARY ST/HYDE ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7863102173267, -122.416449125138)",122140006-55 +160581133,78,16023066,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:46:57 AM,02/27/2016 09:47:23 AM,02/27/2016 09:48:08 AM,02/27/2016 09:49:35 AM,02/27/2016 09:55:20 AM,02/27/2016 10:19:33 AM,02/27/2016 10:22:54 AM,Code 3 Transport,02/27/2016 10:54:34 AM,300 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7668035178194, -122.440704687809)",160581133-78 +113520061,E29,11116753,Medical Incident,12/18/2011,12/17/2011,12/18/2011 03:13:56 AM,12/18/2011 03:14:09 AM,12/18/2011 03:16:01 AM,12/18/2011 03:17:50 AM,12/18/2011 03:20:36 AM,04/25/2016 02:01:06 PM,04/25/2016 02:01:06 PM,Other,12/18/2011 03:28:40 AM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",113520061-E29 +133240042,88,13109899,Medical Incident,11/20/2013,11/19/2013,11/20/2013 04:18:21 AM,11/20/2013 04:19:35 AM,11/20/2013 04:20:05 AM,11/20/2013 04:20:43 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,04/25/2016 01:49:40 PM,6200 Block of 3RD ST,SF,94124,B10,44,6544,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.721313139839, -122.395989596412)",133240042-88 +122110176,RC2,12070082,Medical Incident,07/29/2012,07/29/2012,07/29/2012 02:37:01 PM,07/29/2012 02:37:09 PM,07/29/2012 02:37:24 PM,07/29/2012 02:43:43 PM,07/29/2012 02:50:13 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 03:04:41 PM,3200 Block of SCOTT ST,SF,94123,B04,16,4115,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.7997100670423, -122.441009137303)",122110176-RC2 +112520404,E20,11083276,Smoke Investigation (Outside),09/09/2011,09/09/2011,09/09/2011 09:08:18 PM,09/09/2011 09:09:26 PM,09/09/2011 09:09:46 PM,09/09/2011 09:15:31 PM,09/09/2011 09:35:45 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Fire,09/09/2011 09:36:44 PM,100 Block of CHAVES AVE,SF,94127,B09,39,8673,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7415464377967, -122.454184714999)",112520404-E20 +160480079,59,16019180,Medical Incident,02/17/2016,02/16/2016,02/17/2016 12:38:26 AM,02/17/2016 12:40:22 AM,02/17/2016 12:40:40 AM,02/17/2016 12:40:54 AM,02/17/2016 12:40:54 AM,02/17/2016 12:54:48 AM,02/17/2016 01:18:52 AM,Code 2 Transport,02/17/2016 01:57:16 AM,2300 Block of 28TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7435563330327, -122.485469903643)",160480079-59 +112030038,78,11066899,Medical Incident,07/22/2011,07/21/2011,07/22/2011 02:21:24 AM,07/22/2011 02:22:14 AM,07/22/2011 02:22:52 AM,07/22/2011 02:23:24 AM,07/22/2011 02:31:45 AM,07/22/2011 02:55:13 AM,07/22/2011 03:08:21 AM,Code 2 Transport,07/22/2011 03:45:04 AM,500 Block of CAPP ST,SF,94110,B06,7,5446,3,2,2,true,,1,MEDIC,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",112030038-78 +120660347,T07,12021971,Medical Incident,03/06/2012,03/06/2012,03/06/2012 06:45:26 PM,03/06/2012 06:46:27 PM,03/06/2012 06:48:06 PM,03/06/2012 06:49:24 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 06:50:06 PM,MISSION ST/19TH ST,SF,94110,B06,7,5433,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,6,9,Mission,"(37.7602353559327, -122.419206043807)",120660347-T07 +130300311,B02,13010329,Medical Incident,01/30/2013,01/30/2013,01/30/2013 05:05:35 PM,01/30/2013 05:08:24 PM,01/30/2013 05:11:03 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/30/2013 05:11:12 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,E,3,false,Non Life-threatening,1,CHIEF,5,2,9,Mission,"(37.7650513381945, -122.419668973861)",130300311-B02 +160360828,52,16014146,Medical Incident,02/05/2016,02/04/2016,02/05/2016 07:52:54 AM,02/05/2016 07:53:35 AM,02/05/2016 07:53:53 AM,02/05/2016 07:54:08 AM,02/05/2016 08:04:33 AM,02/05/2016 08:24:25 AM,02/05/2016 08:31:06 AM,Code 2 Transport,02/05/2016 08:56:14 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160360828-52 +113420297,E41,11113486,Medical Incident,12/08/2011,12/08/2011,12/08/2011 05:43:51 PM,12/08/2011 05:44:19 PM,12/08/2011 05:45:58 PM,12/08/2011 05:46:46 PM,12/08/2011 05:50:05 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/08/2011 05:56:16 PM,1200 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,,1,ENGINE,1,4,3,Nob Hill,"(37.78798096196, -122.420231590619)",113420297-E41 +113320354,E02,11110125,Structure Fire,11/28/2011,11/28/2011,11/28/2011 07:40:17 PM,11/28/2011 07:41:11 PM,11/28/2011 07:41:42 PM,11/28/2011 07:56:20 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/28/2011 08:24:11 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,13,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",113320354-E02 +123290077,E33,12109329,Medical Incident,11/24/2012,11/23/2012,11/24/2012 06:43:16 AM,11/24/2012 06:43:46 AM,11/24/2012 06:43:59 AM,11/24/2012 06:46:29 AM,11/24/2012 06:47:23 AM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 06:59:53 AM,ALEMANY BL/SICKLES AV,SF,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7106966624975, -122.455157828365)",123290077-E33 +160391790,78,16015621,Medical Incident,02/08/2016,02/08/2016,02/08/2016 01:09:16 PM,02/08/2016 01:12:27 PM,02/08/2016 01:13:22 PM,02/08/2016 01:13:31 PM,02/08/2016 01:25:10 PM,02/08/2016 02:04:05 PM,02/08/2016 02:38:38 PM,Code 2 Transport,02/08/2016 03:00:08 PM,3200 Block of CALIFORNIA ST,San Francisco,94118,B04,10,4421,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Presidio Heights,"(37.7872098592651, -122.447641497264)",160391790-78 +130800197,RC3,13026753,Medical Incident,03/21/2013,03/21/2013,03/21/2013 12:56:43 PM,03/21/2013 12:57:46 PM,03/21/2013 12:59:06 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,04/25/2016 01:53:43 PM,23RD ST/SHOTWELL ST,SF,94110,B06,7,5511,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,4,6,9,Mission,"(37.7540335346403, -122.415320140499)",130800197-RC3 +102510065,E09,10079197,Traffic Collision,09/08/2010,09/07/2010,09/08/2010 07:23:42 AM,09/08/2010 07:24:54 AM,09/08/2010 07:25:29 AM,09/08/2010 07:27:32 AM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 07:30:14 AM,100 Block of VERMONT ST,SF,94103,B02,29,2422,2,2,2,true,,1,ENGINE,2,2,10,Mission Bay,"(37.76789826103, -122.404743414302)",102510065-E09 +160032386,KM04,16001277,Medical Incident,01/03/2016,01/03/2016,01/03/2016 05:31:22 PM,01/03/2016 05:31:22 PM,01/03/2016 05:31:39 PM,01/03/2016 05:33:35 PM,01/03/2016 05:39:23 PM,01/03/2016 06:02:54 PM,01/03/2016 06:18:16 PM,Code 2 Transport,01/03/2016 07:01:35 PM,4TH ST/TOWNSEND ST,San Francisco,94107,B03,8,2224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7770893320016, -122.394981482757)",160032386-KM04 +131190127,84,13039993,Medical Incident,04/29/2013,04/29/2013,04/29/2013 09:25:33 AM,04/29/2013 09:26:27 AM,04/29/2013 09:40:38 AM,04/29/2013 09:40:45 AM,04/29/2013 09:51:28 AM,04/29/2013 10:06:50 AM,04/29/2013 10:24:00 AM,Code 2 Transport,04/29/2013 10:45:07 AM,600 Block of FOLSOM ST,SF,94107,B03,1,2147,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7850654631195, -122.397209533545)",131190127-84 +160133536,AM20,16005332,Medical Incident,01/13/2016,01/13/2016,01/13/2016 07:17:37 PM,01/13/2016 07:18:48 PM,01/13/2016 07:19:19 PM,01/13/2016 07:20:10 PM,01/13/2016 07:29:43 PM,01/13/2016 07:56:07 PM,01/13/2016 08:10:37 PM,Code 2 Transport,01/13/2016 08:36:49 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160133536-AM20 +111330589,E13,11044417,Medical Incident,05/13/2011,05/13/2011,05/13/2011 11:18:46 PM,05/13/2011 11:20:01 PM,05/13/2011 11:20:38 PM,05/13/2011 11:22:23 PM,05/13/2011 11:23:42 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,Other,05/13/2011 11:26:14 PM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",111330589-E13 +103480409,AM12,10111777,Medical Incident,12/14/2010,12/14/2010,12/14/2010 10:52:57 PM,12/14/2010 10:54:25 PM,12/14/2010 10:54:38 PM,12/14/2010 10:57:10 PM,12/14/2010 10:57:58 PM,12/14/2010 11:28:17 PM,12/14/2010 11:48:52 PM,Code 2 Transport,12/15/2010 12:42:53 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,PRIVATE,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",103480409-AM12 +112380375,E13,11078718,Medical Incident,08/26/2011,08/26/2011,08/26/2011 11:15:53 PM,08/26/2011 11:17:41 PM,08/26/2011 11:18:19 PM,08/26/2011 11:18:52 PM,08/26/2011 11:20:09 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 11:35:54 PM,100 Block of JACKSON ST,SF,94111,B01,13,1132,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",112380375-E13 +113580123,85,11118966,Medical Incident,12/24/2011,12/24/2011,12/24/2011 10:01:31 AM,12/24/2011 10:02:05 AM,12/24/2011 10:02:21 AM,12/24/2011 10:06:43 AM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 10:07:18 AM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2157,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7877559180409, -122.400975353818)",113580123-85 +110640095,82,11021007,Medical Incident,03/05/2011,03/04/2011,03/05/2011 07:32:33 AM,03/05/2011 07:33:07 AM,03/05/2011 07:33:51 AM,04/25/2016 02:05:47 PM,03/05/2011 07:45:00 AM,03/05/2011 08:02:06 AM,03/05/2011 08:17:13 AM,Code 2 Transport,03/05/2011 08:43:05 AM,100 Block of 8TH AVE,SF,94118,B07,31,7126,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7856386364347, -122.466831479708)",110640095-82 +132400257,E03,13081022,Alarms,08/28/2013,08/28/2013,08/28/2013 04:40:34 PM,08/28/2013 04:41:57 PM,08/28/2013 04:42:07 PM,08/28/2013 04:42:27 PM,08/28/2013 04:44:14 PM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,Other,08/28/2013 04:55:07 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",132400257-E03 +123250310,E07,12108198,Medical Incident,11/20/2012,11/20/2012,11/20/2012 05:52:15 PM,11/20/2012 05:54:28 PM,11/20/2012 06:08:00 PM,11/20/2012 06:09:28 PM,11/20/2012 06:10:57 PM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,Other,11/20/2012 06:27:38 PM,1900 Block of FOLSOM ST,SF,94103,B02,7,5237,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7661217279623, -122.415454252915)",123250310-E07 +111380308,E01,11045987,Medical Incident,05/18/2011,05/18/2011,05/18/2011 07:33:24 PM,05/18/2011 07:34:51 PM,05/18/2011 07:35:09 PM,05/18/2011 07:36:13 PM,05/18/2011 07:39:10 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 07:42:02 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",111380308-E01 +112820368,E24,11093493,Medical Incident,10/09/2011,10/09/2011,10/09/2011 10:14:07 PM,10/09/2011 10:15:14 PM,10/09/2011 10:15:47 PM,10/09/2011 10:16:58 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 10:21:18 PM,200 Block of COLLINGWOOD ST,SF,94114,B06,24,5442,3,3,3,true,,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7584188377809, -122.43595133914)",112820368-E24 +122040292,B04,12067907,Alarms,07/22/2012,07/22/2012,07/22/2012 05:00:23 PM,07/22/2012 05:01:19 PM,07/22/2012 05:01:27 PM,07/22/2012 05:01:59 PM,07/22/2012 05:04:46 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/22/2012 05:08:11 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",122040292-B04 +133510360,E11,13119336,Structure Fire,12/17/2013,12/17/2013,12/17/2013 06:38:55 PM,12/17/2013 06:38:55 PM,12/17/2013 06:39:18 PM,12/17/2013 06:40:29 PM,12/17/2013 06:42:22 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/17/2013 06:42:32 PM,24TH ST/GUERRERO ST,SF,94110,B06,11,5524,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7519716270837, -122.422878832716)",133510360-E11 +131600269,E36,13054432,Medical Incident,06/09/2013,06/09/2013,06/09/2013 06:07:10 PM,06/09/2013 06:07:56 PM,06/09/2013 06:08:05 PM,06/09/2013 06:08:26 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 06:15:03 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",131600269-E36 +120200154,E41,12006659,Gas Leak (Natural and LP Gases),01/20/2012,01/20/2012,01/20/2012 12:08:40 PM,01/20/2012 12:08:40 PM,01/20/2012 12:08:40 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Fire,01/20/2012 12:19:06 PM,1200 Block of WASHINGTON ST,SF,94108,B01,41,1466,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7941609889234, -122.413818267559)",120200154-E41 +160150636,73,16005873,Medical Incident,01/15/2016,01/14/2016,01/15/2016 07:38:55 AM,01/15/2016 07:39:50 AM,01/15/2016 07:39:59 AM,01/15/2016 07:40:25 AM,01/15/2016 07:46:06 AM,01/15/2016 08:08:47 AM,01/15/2016 08:19:19 AM,Code 2 Transport,01/15/2016 09:12:44 AM,400 Block of ORIZABA AVE,San Francisco,94132,B09,33,8415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7169955762334, -122.462698182843)",160150636-73 +122670296,83,12088319,Medical Incident,09/23/2012,09/23/2012,09/23/2012 07:05:50 PM,09/23/2012 07:11:28 PM,09/23/2012 07:12:15 PM,09/23/2012 07:12:46 PM,09/23/2012 07:30:51 PM,09/23/2012 07:48:35 PM,09/23/2012 07:58:39 PM,Code 2 Transport,09/23/2012 08:18:24 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",122670296-83 +160590054,KM03,16023338,Medical Incident,02/28/2016,02/27/2016,02/28/2016 12:18:47 AM,02/28/2016 12:21:11 AM,02/28/2016 12:21:29 AM,02/28/2016 12:21:54 AM,02/28/2016 12:27:51 AM,02/28/2016 12:41:42 AM,02/28/2016 01:00:52 AM,Code 2 Transport,02/28/2016 01:57:18 AM,1400 Block of 34TH AVE,San Francisco,94122,B08,23,7541,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.76005455178, -122.493071573034)",160590054-KM03 +160251796,AM14,16009935,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:58:40 PM,01/25/2016 12:59:17 PM,01/25/2016 12:59:28 PM,01/25/2016 01:00:42 PM,01/25/2016 01:02:42 PM,01/25/2016 01:19:21 PM,01/25/2016 01:37:14 PM,Code 2 Transport,01/25/2016 03:09:45 PM,300 Block of BEALE ST,San Francisco,94105,B03,35,2122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7881096580859, -122.391902165287)",160251796-AM14 +121080091,E21,12035691,Structure Fire,04/17/2012,04/17/2012,04/17/2012 09:36:49 AM,04/17/2012 09:37:27 AM,04/17/2012 09:37:41 AM,04/17/2012 09:38:54 AM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,Other,04/17/2012 09:53:23 AM,2800 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,true,Fire,1,ENGINE,10,4,2,Pacific Heights,"(37.7879071323042, -122.441263904457)",121080091-E21 +160223560,68,16008939,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:15:33 PM,01/22/2016 09:17:50 PM,01/22/2016 09:18:28 PM,01/22/2016 09:18:35 PM,01/22/2016 09:30:20 PM,01/22/2016 09:44:26 PM,01/22/2016 09:53:43 PM,Code 2 Transport,01/22/2016 10:46:17 PM,200 Block of 7TH ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7773228349255, -122.408663553867)",160223560-68 +160493508,52,16019875,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:34:55 PM,02/18/2016 08:36:02 PM,02/18/2016 08:36:46 PM,02/18/2016 08:36:56 PM,02/18/2016 08:39:23 PM,02/18/2016 08:54:22 PM,02/18/2016 09:09:29 PM,Code 2 Transport,02/18/2016 09:46:27 PM,500 Block of VALENCIA ST,San Francisco,94103,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",160493508-52 +132020072,E13,13068377,Alarms,07/21/2013,07/21/2013,07/21/2013 08:17:17 AM,07/21/2013 08:27:13 AM,07/21/2013 08:30:39 AM,07/21/2013 08:31:49 AM,07/21/2013 09:23:07 AM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 12:05:04 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,2,2,2,true,Alarm,1,ENGINE,16,1,3,Financial District/South Beach,"(37.7891367799941, -122.40363527458)",132020072-E13 +130720254,E42,13024052,Medical Incident,03/13/2013,03/13/2013,03/13/2013 03:10:05 PM,03/13/2013 03:11:21 PM,03/13/2013 03:11:36 PM,03/13/2013 03:13:02 PM,03/13/2013 03:15:44 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 03:37:14 PM,200 Block of TOPEKA AVE,SF,94124,B10,42,6473,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7322677229752, -122.396274531139)",130720254-E42 +160043780,88,16001799,Medical Incident,01/04/2016,01/04/2016,01/04/2016 11:23:42 PM,01/04/2016 11:24:32 PM,01/04/2016 11:24:47 PM,01/04/2016 11:24:58 PM,01/04/2016 11:29:15 PM,01/04/2016 11:57:34 PM,01/05/2016 12:09:22 AM,Code 2 Transport,01/05/2016 12:50:39 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160043780-88 +122150060,85,12071259,Medical Incident,08/02/2012,08/01/2012,08/02/2012 06:56:52 AM,08/02/2012 06:57:16 AM,08/02/2012 06:57:51 AM,08/02/2012 06:58:06 AM,08/02/2012 07:04:11 AM,08/02/2012 07:24:10 AM,08/02/2012 07:34:12 AM,Code 3 Transport,08/02/2012 08:06:04 AM,0 Block of MINERVA ST,SF,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7158849109873, -122.454797121611)",122150060-85 +102570146,B01,10081161,Traffic Collision,09/14/2010,09/14/2010,09/14/2010 11:32:50 AM,09/14/2010 11:33:48 AM,09/14/2010 11:33:57 AM,09/14/2010 11:35:09 AM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Other,09/14/2010 11:36:55 AM,DAVIS ST/SACRAMENTO ST,SF,94111,B01,13,1134,3,3,3,false,,1,CHIEF,5,1,3,Financial District/South Beach,"(37.7944340060268, -122.397796258543)",102570146-B01 +130280320,E39,13009714,Alarms,01/28/2013,01/28/2013,01/28/2013 06:23:56 PM,01/28/2013 06:25:29 PM,01/28/2013 06:25:41 PM,01/28/2013 06:27:02 PM,01/28/2013 06:30:24 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/28/2013 06:35:41 PM,1600 Block of MONTEREY BLVD,SF,94127,B09,39,8551,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7329687601567, -122.46632329381)",130280320-E39 +160223411,64,16008921,Medical Incident,01/22/2016,01/22/2016,01/22/2016 08:20:21 PM,01/22/2016 08:21:28 PM,01/22/2016 08:21:52 PM,01/22/2016 08:22:27 PM,01/22/2016 08:28:09 PM,01/22/2016 08:47:25 PM,01/22/2016 08:58:28 PM,Code 2 Transport,01/22/2016 09:28:01 PM,2700 Block of HYDE ST,San Francisco,94109,B01,28,1615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8061802322282, -122.420532847486)",160223411-64 +122090252,T09,12069505,Structure Fire,07/27/2012,07/27/2012,07/27/2012 04:52:18 PM,07/27/2012 04:52:18 PM,07/27/2012 04:52:26 PM,07/27/2012 04:53:50 PM,07/27/2012 04:54:20 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 04:54:42 PM,24TH ST/UTAH ST,SF,94110,B10,9,2562,3,3,3,false,Alarm,1,TRUCK,1,10,10,Mission,"(37.7530638329046, -122.405331103731)",122090252-T09 +130490150,T06,13016679,Structure Fire,02/18/2013,02/18/2013,02/18/2013 11:18:52 AM,02/18/2013 11:18:58 AM,02/18/2013 11:19:24 AM,02/18/2013 11:20:06 AM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/18/2013 11:28:00 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7741251002903, -122.418810211803)",130490150-T06 +133480398,AM22,13118298,Medical Incident,12/14/2013,12/14/2013,12/14/2013 10:08:14 PM,12/14/2013 10:09:28 PM,12/14/2013 10:10:05 PM,12/14/2013 10:10:34 PM,12/14/2013 10:20:50 PM,12/14/2013 10:26:42 PM,12/14/2013 10:40:26 PM,Code 2 Transport,12/14/2013 11:03:08 PM,300 Block of SOUTH VAN NESS AVE,SF,94103,B02,7,5225,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7676095145665, -122.417654819973)",133480398-AM22 +113510246,77,11116525,Medical Incident,12/17/2011,12/17/2011,12/17/2011 02:20:25 PM,12/17/2011 02:22:21 PM,12/17/2011 02:22:42 PM,12/17/2011 02:23:01 PM,12/17/2011 02:29:08 PM,12/17/2011 02:40:04 PM,12/17/2011 03:00:46 PM,Code 2 Transport,12/17/2011 03:38:28 PM,LARKIN ST/GOLDEN GATE AV,SF,94102,B02,3,1644,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",113510246-77 +112600379,T10,11085919,Structure Fire,09/17/2011,09/17/2011,09/17/2011 08:00:04 PM,09/17/2011 08:00:04 PM,09/17/2011 08:00:28 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,04/25/2016 02:02:37 PM,1800 Block of HAYES ST,SF,94117,B05,21,446,3,3,3,false,,1,TRUCK,2,5,5,Lone Mountain/USF,"(37.7738883106104, -122.446900770021)",112600379-T10 +123450190,KM09,12115327,Medical Incident,12/10/2012,12/10/2012,12/10/2012 11:31:33 AM,12/10/2012 11:34:32 AM,12/10/2012 11:36:21 AM,12/10/2012 11:37:48 AM,12/10/2012 11:42:08 AM,12/10/2012 12:02:57 PM,12/10/2012 12:11:18 PM,Code 2 Transport,12/10/2012 12:38:18 PM,1600 Block of GEARY BLVD,SF,94115,B04,5,3432,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.7848985640348, -122.429613639902)",123450190-KM09 +130070364,E42,13002528,Structure Fire,01/07/2013,01/07/2013,01/07/2013 08:40:29 PM,01/07/2013 08:41:42 PM,01/07/2013 08:41:57 PM,01/07/2013 08:43:07 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 08:55:55 PM,3100 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,Alarm,1,ENGINE,4,10,9,Portola,"(37.7220016138662, -122.401341444894)",130070364-E42 +102990331,92,10095581,Medical Incident,10/26/2010,10/26/2010,10/26/2010 07:51:57 PM,10/26/2010 07:53:01 PM,10/26/2010 07:53:13 PM,04/25/2016 02:07:54 PM,10/26/2010 08:03:51 PM,10/26/2010 08:13:38 PM,10/26/2010 08:27:55 PM,Code 2 Transport,10/26/2010 08:57:50 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102990331-92 +110960273,B03,11031916,Structure Fire,04/06/2011,04/06/2011,04/06/2011 05:14:28 PM,04/06/2011 05:17:30 PM,04/06/2011 05:17:45 PM,04/06/2011 05:17:54 PM,04/06/2011 05:21:15 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/06/2011 05:34:42 PM,MARKET ST/CYRIL MAGNIN ST,SF,94103,B03,1,1366,3,3,3,false,,1,CHIEF,6,3,6,South of Market,"(37.7839914857614, -122.408066547804)",110960273-B03 +160080441,61,16003094,Medical Incident,01/08/2016,01/07/2016,01/08/2016 05:17:24 AM,01/08/2016 05:19:20 AM,01/08/2016 05:19:54 AM,01/08/2016 05:20:11 AM,01/08/2016 05:37:43 AM,01/08/2016 05:50:54 AM,01/08/2016 05:54:27 AM,Code 2 Transport,01/08/2016 06:27:35 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160080441-61 +160610551,AM02,16024199,Medical Incident,03/01/2016,02/29/2016,03/01/2016 07:20:54 AM,03/01/2016 07:24:21 AM,03/01/2016 07:24:52 AM,03/01/2016 07:25:29 AM,03/01/2016 07:39:10 AM,03/01/2016 08:04:27 AM,03/01/2016 08:20:52 AM,Code 2 Transport,03/01/2016 08:53:01 AM,0 Block of ENCANTO AVE,San Francisco,94115,B05,21,4344,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,2,Lone Mountain/USF,"(37.7804956564763, -122.443514803631)",160610551-AM02 +130850336,E43,13028505,Medical Incident,03/26/2013,03/26/2013,03/26/2013 08:34:08 PM,03/26/2013 08:34:28 PM,03/26/2013 08:35:02 PM,03/26/2013 08:36:28 PM,03/26/2013 08:37:49 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 08:49:42 PM,100 Block of DUBLIN ST,SF,94112,B09,43,6165,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7178073238376, -122.42704025216)",130850336-E43 +132550264,E35,13086248,Administrative,09/12/2013,09/12/2013,09/12/2013 04:01:11 PM,09/12/2013 04:01:15 PM,09/12/2013 04:02:00 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 04:02:28 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",132550264-E35 +160122281,AM16,16004817,Medical Incident,01/12/2016,01/12/2016,01/12/2016 03:18:53 PM,01/12/2016 03:20:20 PM,01/12/2016 03:20:31 PM,01/12/2016 03:21:37 PM,01/12/2016 03:25:16 PM,01/12/2016 03:40:25 PM,01/12/2016 04:08:20 PM,Code 2 Transport,01/12/2016 04:21:30 PM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160122281-AM16 +160393777,KM07,16015821,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:45:22 PM,02/08/2016 10:45:22 PM,02/08/2016 10:47:01 PM,02/08/2016 10:47:35 PM,02/08/2016 10:55:41 PM,02/08/2016 11:17:41 PM,02/08/2016 11:29:22 PM,Code 2 Transport,02/09/2016 12:20:24 AM,VALENCIA ST/19TH ST,San Francisco,94110,B06,7,5434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Mission,"(37.7601012942817, -122.42142521264)",160393777-KM07 +160321681,87,16012579,Medical Incident,02/01/2016,02/01/2016,02/01/2016 12:55:03 PM,02/01/2016 12:56:32 PM,02/01/2016 12:57:12 PM,02/01/2016 12:57:24 PM,02/01/2016 01:05:33 PM,02/01/2016 01:18:31 PM,02/01/2016 01:30:06 PM,Code 2 Transport,02/01/2016 02:14:34 PM,600 Block of ASHBURY ST,San Francisco,94117,B05,12,4512,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695322663147, -122.446907671607)",160321681-87 +160511055,KM05,16020410,Medical Incident,02/20/2016,02/20/2016,02/20/2016 10:08:44 AM,02/20/2016 10:09:06 AM,02/20/2016 10:09:34 AM,02/20/2016 10:10:36 AM,02/20/2016 10:14:48 AM,02/20/2016 10:25:45 AM,02/20/2016 10:35:47 AM,Code 2 Transport,02/20/2016 11:18:54 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160511055-KM05 +131540023,93,13052021,Medical Incident,06/03/2013,06/02/2013,06/03/2013 01:50:05 AM,06/03/2013 01:52:30 AM,06/03/2013 01:52:40 AM,06/03/2013 01:53:15 AM,06/03/2013 01:57:51 AM,06/03/2013 02:16:38 AM,06/03/2013 02:27:37 AM,Code 2 Transport,06/03/2013 02:51:46 AM,200 Block of WAWONA ST,SF,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.739219088526, -122.468780182081)",131540023-93 +160480393,53,16019226,Medical Incident,02/17/2016,02/16/2016,02/17/2016 05:07:47 AM,02/17/2016 05:09:09 AM,02/17/2016 05:09:47 AM,02/17/2016 05:09:57 AM,02/17/2016 05:15:41 AM,02/17/2016 05:29:36 AM,02/17/2016 05:35:17 AM,Code 2 Transport,02/17/2016 06:21:26 AM,0 Block of FRONT ST,San Francisco,94111,B01,13,1136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7920192720524, -122.39857867407)",160480393-53 +160590474,64,16023374,Medical Incident,02/28/2016,02/27/2016,02/28/2016 03:35:43 AM,02/28/2016 03:35:52 AM,02/28/2016 03:36:52 AM,02/28/2016 03:37:22 AM,02/28/2016 04:12:41 AM,02/28/2016 04:16:54 AM,02/28/2016 04:31:08 AM,Code 3 Transport,02/28/2016 05:45:55 AM,2600 Block of 24TH AVE,San Francisco,94116,B08,40,7462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,8,4,Sunset/Parkside,"(37.7381569778051, -122.480651762674)",160590474-64 +120400160,T10,12013316,Alarms,02/09/2012,02/09/2012,02/09/2012 12:39:17 PM,02/09/2012 12:40:40 PM,02/09/2012 12:40:54 PM,02/09/2012 12:42:08 PM,02/09/2012 12:45:58 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 12:47:47 PM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",120400160-T10 +160830735,71,16032858,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:08:54 AM,03/23/2016 08:09:56 AM,03/23/2016 08:11:26 AM,03/23/2016 08:11:51 AM,03/23/2016 08:23:00 AM,03/23/2016 08:39:35 AM,03/23/2016 08:51:59 AM,Code 2 Transport,03/23/2016 09:23:21 AM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",160830735-71 +110290104,D3,11009483,Structure Fire,01/29/2011,01/29/2011,01/29/2011 08:34:23 AM,01/29/2011 08:34:57 AM,01/29/2011 08:35:06 AM,01/29/2011 08:35:23 AM,01/29/2011 08:38:57 AM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/29/2011 09:04:45 AM,3400 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,false,,1,CHIEF,4,6,9,Bernal Heights,"(37.741419043576, -122.422665047787)",110290104-D3 +140540235,E43,14018332,Medical Incident,02/23/2014,02/23/2014,02/23/2014 06:10:01 PM,02/23/2014 06:12:50 PM,02/23/2014 06:13:33 PM,02/23/2014 06:15:42 PM,02/23/2014 06:18:55 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Code 3 Transport,02/23/2014 06:27:38 PM,300 Block of WINDING WAY,SF,94112,B09,43,6217,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7093340295931, -122.437772842165)",140540235-E43 +121550198,KM10,12051332,Medical Incident,06/03/2012,06/03/2012,06/03/2012 01:38:09 PM,06/03/2012 01:39:57 PM,06/03/2012 01:40:17 PM,06/03/2012 01:40:56 PM,06/03/2012 01:47:34 PM,06/03/2012 02:00:55 PM,06/03/2012 02:21:42 PM,Code 2 Transport,06/03/2012 02:43:52 PM,2100 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7998548796266, -122.436893822331)",121550198-KM10 +110830444,E36,11027505,Medical Incident,03/24/2011,03/24/2011,03/24/2011 11:47:15 PM,03/24/2011 11:47:47 PM,03/24/2011 11:48:08 PM,03/24/2011 11:49:28 PM,03/24/2011 11:56:57 PM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,Other,03/24/2011 11:57:15 PM,VAN NESS AV/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7751470741622, -122.419255607214)",110830444-E36 +131780259,B07,13060497,Alarms,06/27/2013,06/27/2013,06/27/2013 03:45:12 PM,06/27/2013 03:46:26 PM,06/27/2013 03:46:52 PM,06/27/2013 03:47:57 PM,06/27/2013 03:51:44 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Other,06/27/2013 03:55:32 PM,0 Block of PRESIDIO TER,SF,94118,B07,10,4444,3,3,3,false,Alarm,1,CHIEF,3,7,2,Inner Richmond,"(37.7881859123819, -122.461502002981)",131780259-B07 +160432514,55,16017369,Medical Incident,02/12/2016,02/12/2016,02/12/2016 04:23:42 PM,02/12/2016 04:23:42 PM,02/12/2016 04:23:58 PM,02/12/2016 04:24:10 PM,02/12/2016 04:34:28 PM,02/12/2016 04:51:07 PM,02/12/2016 04:56:27 PM,Code 2 Transport,02/12/2016 05:29:22 PM,DUBOCE AV/MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",160432514-55 +111280357,T03,11042507,Structure Fire,05/08/2011,05/08/2011,05/08/2011 11:48:22 PM,05/08/2011 11:48:22 PM,05/08/2011 11:48:32 PM,05/08/2011 11:50:20 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,Other,05/08/2011 11:51:13 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,false,,1,TRUCK,2,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",111280357-T03 +110980231,62,11032530,Medical Incident,04/08/2011,04/08/2011,04/08/2011 01:48:24 PM,04/08/2011 01:49:17 PM,04/08/2011 01:49:28 PM,04/25/2016 02:05:12 PM,04/08/2011 01:58:19 PM,04/08/2011 02:13:26 PM,04/08/2011 02:22:08 PM,Code 2 Transport,04/08/2011 02:01:27 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110980231-62 +160851994,63,16033801,Medical Incident,03/25/2016,03/25/2016,03/25/2016 01:48:30 PM,03/25/2016 01:48:30 PM,03/25/2016 01:48:48 PM,03/25/2016 01:50:48 PM,03/25/2016 01:56:28 PM,03/25/2016 02:13:17 PM,03/25/2016 02:28:23 PM,Code 2 Transport,03/25/2016 03:02:47 PM,MARKET ST/POWELL ST,San Francisco,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160851994-63 +122320241,E11,12076996,Medical Incident,08/19/2012,08/19/2012,08/19/2012 03:40:12 PM,08/19/2012 03:42:38 PM,08/19/2012 03:43:17 PM,08/19/2012 03:44:37 PM,08/19/2012 03:46:39 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 03:46:52 PM,3200 Block of 24TH ST,SF,94110,B06,11,5525,3,3,3,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7523000618659, -122.416540231015)",122320241-E11 +122990126,T12,12099045,Alarms,10/25/2012,10/25/2012,10/25/2012 10:17:08 AM,10/25/2012 10:18:42 AM,10/25/2012 10:18:50 AM,10/25/2012 10:20:54 AM,10/25/2012 10:22:44 AM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/25/2012 10:23:28 AM,1700 Block of WALLER ST,SF,94117,B05,12,4552,3,3,3,false,Alarm,1,TRUCK,2,5,5,Haight Ashbury,"(37.7682837349171, -122.452502140464)",122990126-T12 +131770382,E06,13060254,Medical Incident,06/26/2013,06/26/2013,06/26/2013 10:23:21 PM,06/26/2013 10:23:58 PM,06/26/2013 10:24:10 PM,06/26/2013 10:24:45 PM,06/26/2013 10:26:55 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Other,06/26/2013 10:30:41 PM,0 Block of ROSA PARKS LN,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7673544131267, -122.423185137118)",131770382-E06 +113640013,E36,11120755,Medical Incident,12/30/2011,12/29/2011,12/30/2011 12:26:08 AM,12/30/2011 12:26:47 AM,12/30/2011 12:27:18 AM,12/30/2011 12:28:51 AM,12/30/2011 12:30:29 AM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/30/2011 12:38:00 AM,0 Block of GROVE ST,SF,94102,B02,36,381,E,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",113640013-E36 +123200309,89,12106489,Medical Incident,11/15/2012,11/15/2012,11/15/2012 07:34:00 PM,11/15/2012 07:34:43 PM,11/15/2012 07:36:32 PM,11/15/2012 07:36:39 PM,11/15/2012 07:47:21 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 08:09:02 PM,1100 Block of MISSION ST,SF,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7785895740312, -122.411626152299)",123200309-89 +131280052,84,13043171,Medical Incident,05/08/2013,05/07/2013,05/08/2013 04:53:17 AM,05/08/2013 04:55:29 AM,05/08/2013 05:12:36 AM,05/08/2013 05:12:40 AM,05/08/2013 05:21:49 AM,05/08/2013 05:40:15 AM,05/08/2013 06:00:40 AM,Code 2 Transport,05/08/2013 06:29:48 AM,HAYES ST/GOUGH ST,SF,94102,B02,36,3265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7768835259362, -122.422978150089)",131280052-84 +160433086,58,16017430,Medical Incident,02/12/2016,02/12/2016,02/12/2016 06:51:31 PM,02/12/2016 06:52:05 PM,02/12/2016 06:52:26 PM,02/12/2016 06:52:42 PM,02/12/2016 07:04:59 PM,02/12/2016 07:05:00 PM,02/12/2016 07:07:27 PM,Code 2 Transport,02/12/2016 07:46:15 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",160433086-58 +103600136,60,10115504,Medical Incident,12/26/2010,12/26/2010,12/26/2010 01:35:01 PM,12/26/2010 01:35:01 PM,12/26/2010 01:36:04 PM,12/26/2010 01:36:38 PM,12/26/2010 01:56:18 PM,12/26/2010 02:05:58 PM,04/25/2016 02:06:55 PM,Code 2 Transport,12/26/2010 02:29:21 PM,0 Block of GEORGE CT,SF,94124,B10,17,6572,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7309025092294, -122.382609703047)",103600136-60 +120030280,B10,12001117,Other,01/03/2012,01/03/2012,01/03/2012 04:40:26 PM,01/03/2012 04:41:02 PM,01/03/2012 04:41:11 PM,04/25/2016 02:00:48 PM,01/03/2012 04:44:59 PM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,Other,01/03/2012 04:59:44 PM,900 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,3,3,false,Alarm,1,CHIEF,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",120030280-B10 +131230170,KM11,13041421,Medical Incident,05/03/2013,05/03/2013,05/03/2013 11:05:35 AM,05/03/2013 11:06:12 AM,05/03/2013 11:06:28 AM,05/03/2013 11:07:23 AM,05/03/2013 11:19:36 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,No Merit,05/03/2013 11:29:07 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",131230170-KM11 +131320013,87,13044448,Medical Incident,05/12/2013,05/11/2013,05/12/2013 12:42:33 AM,05/12/2013 12:44:18 AM,05/12/2013 12:46:37 AM,05/12/2013 12:46:51 AM,05/12/2013 01:04:24 AM,05/12/2013 01:20:04 AM,05/12/2013 02:02:00 AM,Code 2 Transport,05/12/2013 02:28:38 AM,2800 Block of LEAVENWORTH ST,SF,94109,B01,28,1524,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8073249129151, -122.419065516897)",131320013-87 +112260005,E41,11074522,Medical Incident,08/14/2011,08/13/2011,08/14/2011 12:04:25 AM,08/14/2011 12:08:52 AM,08/14/2011 12:09:03 AM,08/14/2011 12:10:21 AM,08/14/2011 12:11:51 AM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/14/2011 12:27:38 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,ENGINE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",112260005-E41 +160450536,AM24,16017986,Medical Incident,02/14/2016,02/13/2016,02/14/2016 03:29:47 AM,02/14/2016 03:29:47 AM,02/14/2016 03:30:27 AM,02/14/2016 03:30:52 AM,02/14/2016 03:41:20 AM,02/14/2016 03:47:36 AM,02/14/2016 04:00:52 AM,Code 2 Transport,02/14/2016 04:24:22 AM,300 Block of GRANT AVE,San Francisco,94108,B01,13,1315,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7903312930658, -122.405480762269)",160450536-AM24 +132480229,T17,13083717,Structure Fire,09/05/2013,09/05/2013,09/05/2013 02:18:45 PM,09/05/2013 02:19:36 PM,09/05/2013 02:19:50 PM,09/05/2013 02:20:41 PM,09/05/2013 02:23:22 PM,04/25/2016 01:50:57 PM,04/25/2016 01:50:57 PM,Other,09/05/2013 03:18:21 PM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,3,3,3,false,Fire,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7362394819721, -122.393112998589)",132480229-T17 +111540028,E03,11050751,Outside Fire,06/03/2011,06/02/2011,06/03/2011 02:20:13 AM,06/03/2011 02:21:10 AM,06/03/2011 02:21:23 AM,06/03/2011 02:22:57 AM,06/03/2011 02:25:33 AM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Fire,06/03/2011 02:29:27 AM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",111540028-E03 +160161900,KM02,16006438,Medical Incident,01/16/2016,01/16/2016,01/16/2016 01:58:30 PM,01/16/2016 01:58:30 PM,01/16/2016 01:59:54 PM,01/16/2016 02:00:19 PM,01/16/2016 02:08:48 PM,01/16/2016 02:29:12 PM,01/16/2016 02:51:19 PM,Code 2 Transport,01/16/2016 03:17:03 PM,14TH ST/SANCHEZ ST,San Francisco,94114,B05,6,5213,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7675952427988, -122.431191120963)",160161900-KM02 +130980317,AM08,13032960,Medical Incident,04/08/2013,04/08/2013,04/08/2013 03:59:28 PM,04/08/2013 04:00:25 PM,04/08/2013 04:01:05 PM,04/08/2013 04:01:25 PM,04/08/2013 04:05:11 PM,04/08/2013 04:17:55 PM,04/08/2013 04:35:48 PM,Code 2 Transport,04/08/2013 05:24:36 PM,200 Block of 3RD ST,SF,94105,B03,1,2177,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7846604121968, -122.39991472916)",130980317-AM08 +110050122,E21,11001592,Medical Incident,01/05/2011,01/05/2011,01/05/2011 09:50:08 AM,01/05/2011 09:51:18 AM,01/05/2011 09:52:14 AM,01/05/2011 09:52:57 AM,01/05/2011 09:53:30 AM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 10:13:58 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",110050122-E21 +160481600,62,16019320,Medical Incident,02/17/2016,02/17/2016,02/17/2016 11:51:15 AM,02/17/2016 11:51:15 AM,02/17/2016 11:51:55 AM,02/17/2016 11:52:42 AM,02/17/2016 12:04:29 PM,02/17/2016 12:14:22 PM,02/17/2016 12:36:27 PM,Code 2 Transport,02/17/2016 01:17:44 PM,400 Block of HAYES ST,San Francisco,94102,B02,36,3265,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7767313126338, -122.423734940751)",160481600-62 +141000095,AM26,14033693,Medical Incident,04/10/2014,04/10/2014,04/10/2014 09:06:41 AM,04/10/2014 09:08:15 AM,04/10/2014 09:10:54 AM,04/10/2014 09:11:23 AM,04/10/2014 09:19:28 AM,04/10/2014 09:32:37 AM,04/10/2014 09:37:56 AM,Code 2 Transport,04/10/2014 10:28:15 AM,500 Block of OFARRELL ST,SAN FRANCISCO,94102,B04,3,1544,,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",141000095-AM26 +120410028,79,12013528,Medical Incident,02/10/2012,02/09/2012,02/10/2012 02:06:47 AM,02/10/2012 02:07:54 AM,02/10/2012 02:08:14 AM,02/10/2012 02:09:05 AM,02/10/2012 02:13:25 AM,02/10/2012 02:31:08 AM,02/10/2012 02:39:44 AM,Code 2 Transport,02/10/2012 03:43:53 AM,600 Block of FULTON ST,SF,94102,B02,5,3412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7781781708138, -122.428256337547)",120410028-79 +123390102,E05,12112997,Medical Incident,12/04/2012,12/04/2012,12/04/2012 09:36:43 AM,12/04/2012 09:37:47 AM,12/04/2012 09:38:46 AM,04/25/2016 01:55:29 PM,12/04/2012 09:41:26 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,04/25/2016 01:55:29 PM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",123390102-E05 +103630107,E44,10116388,Medical Incident,12/29/2010,12/29/2010,12/29/2010 10:07:00 AM,12/29/2010 10:09:11 AM,12/29/2010 10:09:26 AM,12/29/2010 10:09:36 AM,12/29/2010 10:13:12 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/29/2010 10:25:26 AM,0 Block of HERITAGE LN,SF,94134,B09,44,6252,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7098510364224, -122.412232276093)",103630107-E44 +113130315,E05,11104119,Medical Incident,11/09/2011,11/09/2011,11/09/2011 06:42:37 PM,11/09/2011 06:43:15 PM,11/09/2011 06:43:33 PM,11/09/2011 06:44:33 PM,11/09/2011 06:46:21 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/09/2011 06:59:29 PM,1800 Block of ELLIS ST,SF,94115,B05,5,3644,3,2,2,true,,1,ENGINE,1,5,5,Western Addition,"(37.7817795068861, -122.436618848831)",113130315-E05 +122650145,E15,12087521,Medical Incident,09/21/2012,09/21/2012,09/21/2012 12:51:43 PM,09/21/2012 12:53:16 PM,09/21/2012 12:53:26 PM,09/21/2012 12:55:07 PM,09/21/2012 12:56:09 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 01:10:48 PM,200 Block of LOUISBURG ST,SF,94112,B09,15,8315,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7199432625965, -122.450523622192)",122650145-E15 +133080180,KM04,13104710,Medical Incident,11/04/2013,11/04/2013,11/04/2013 12:04:46 PM,11/04/2013 12:04:47 PM,11/04/2013 12:05:18 PM,11/04/2013 12:05:53 PM,11/04/2013 12:10:05 PM,11/04/2013 12:26:19 PM,11/04/2013 12:37:22 PM,Code 2 Transport,11/04/2013 01:15:10 PM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",133080180-KM04 +132980357,E40,13101351,Structure Fire,10/25/2013,10/25/2013,10/25/2013 08:02:55 PM,10/25/2013 08:03:55 PM,10/25/2013 08:04:15 PM,10/25/2013 08:05:25 PM,10/25/2013 08:10:15 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 08:24:04 PM,0 Block of GELLERT DR,SF,94132,B08,19,8814,3,3,3,true,Alarm,1,ENGINE,6,8,7,Sunset/Parkside,"(37.7325140251407, -122.493237980377)",132980357-E40 +112140227,E11,11070662,Medical Incident,08/02/2011,08/02/2011,08/02/2011 03:15:07 PM,08/02/2011 03:15:33 PM,08/02/2011 03:15:44 PM,08/02/2011 03:16:51 PM,08/02/2011 03:18:22 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 03:24:11 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,2,2,true,,1,ENGINE,1,6,9,Mission,"(37.7498446220826, -122.418142583283)",112140227-E11 +111720223,KM04,11056763,Medical Incident,06/21/2011,06/21/2011,06/21/2011 02:14:55 PM,06/21/2011 02:15:22 PM,06/21/2011 02:15:37 PM,06/21/2011 02:18:55 PM,06/21/2011 02:24:51 PM,06/21/2011 02:36:49 PM,04/25/2016 02:04:03 PM,Code 2 Transport,06/21/2011 03:23:39 PM,CYRIL MAGNIN ST/MARKET ST,SF,94103,B03,1,1366,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",111720223-KM04 +112250076,E15,11074252,Aircraft Emergency,08/13/2011,08/12/2011,08/13/2011 06:40:33 AM,08/13/2011 06:40:40 AM,08/13/2011 06:41:48 AM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/13/2011 06:45:46 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,true,,1,ENGINE,2,None,None,None,"(37.6168823239251, -122.384094238098)",112250076-E15 +123310388,E43,12110192,Medical Incident,11/26/2012,11/26/2012,11/26/2012 10:13:38 PM,11/26/2012 10:13:44 PM,11/26/2012 10:14:03 PM,11/26/2012 10:15:18 PM,11/26/2012 10:17:46 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 10:26:08 PM,400 Block of EXCELSIOR AVE,SF,94112,B09,43,6133,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7244871327142, -122.430088195319)",123310388-E43 +140970186,E07,14032668,Medical Incident,04/07/2014,04/07/2014,04/07/2014 11:30:09 AM,04/07/2014 11:32:28 AM,04/07/2014 11:33:22 AM,04/07/2014 11:34:10 AM,04/07/2014 11:36:23 AM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,Unable to Locate,04/07/2014 11:37:49 AM,16TH ST/MISSION ST,SAN FRANCISCO,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",140970186-E07 +160380844,AM24,16015114,Medical Incident,02/07/2016,02/06/2016,02/07/2016 06:50:16 AM,02/07/2016 06:51:06 AM,02/07/2016 06:51:15 AM,02/07/2016 06:51:43 AM,02/07/2016 06:55:06 AM,02/07/2016 07:07:07 AM,02/07/2016 07:26:50 AM,Code 2 Transport,02/07/2016 07:58:17 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160380844-AM24 +110770179,RS2,11025336,Medical Incident,03/18/2011,03/18/2011,03/18/2011 11:55:57 AM,03/18/2011 11:56:32 AM,03/18/2011 11:57:00 AM,03/18/2011 11:58:25 AM,03/18/2011 11:59:55 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 12:10:06 PM,16TH ST/FLORIDA ST,SF,94110,B02,29,5241,3,3,3,false,,1,RESCUE SQUAD,1,2,9,Mission,"(37.7655476063154, -122.411455264765)",110770179-RS2 +112210104,T03,11072940,Alarms,08/09/2011,08/09/2011,08/09/2011 10:20:53 AM,08/09/2011 10:21:49 AM,08/09/2011 10:22:00 AM,08/09/2011 10:23:06 AM,08/09/2011 10:27:08 AM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 10:33:34 AM,1700 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,3,3,false,,1,TRUCK,1,4,2,Pacific Heights,"(37.7903193034194, -122.4231629068)",112210104-T03 +121660279,RC2,12055135,Water Rescue,06/14/2012,06/14/2012,06/14/2012 04:49:51 PM,06/14/2012 04:51:43 PM,06/14/2012 04:52:58 PM,06/14/2012 04:53:44 PM,06/14/2012 05:12:46 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 05:14:40 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Fire,1,RESCUE CAPTAIN,4,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",121660279-RC2 +111690123,86,11055657,Medical Incident,06/18/2011,06/18/2011,06/18/2011 09:51:54 AM,06/18/2011 09:51:54 AM,06/18/2011 09:52:38 AM,06/18/2011 09:54:01 AM,06/18/2011 09:57:09 AM,06/18/2011 10:06:48 AM,06/18/2011 10:10:18 AM,Code 2 Transport,06/18/2011 10:42:11 AM,600 Block of IRVING ST,SF,94122,B08,22,7332,3,3,3,true,,1,MEDIC,2,8,5,Inner Sunset,"(37.7640524831749, -122.464704638953)",111690123-86 +112350289,73,11077634,Medical Incident,08/23/2011,08/23/2011,08/23/2011 04:59:28 PM,08/23/2011 05:00:04 PM,08/23/2011 05:00:24 PM,08/23/2011 05:01:07 PM,08/23/2011 05:03:35 PM,08/23/2011 05:32:32 PM,08/23/2011 06:10:06 PM,Code 2 Transport,08/23/2011 06:41:11 PM,0 Block of OCEAN AVE,SF,94112,B09,43,6121,3,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7235851025068, -122.437887650131)",112350289-73 +160920348,AM18,16036306,Medical Incident,04/01/2016,03/31/2016,04/01/2016 04:01:11 AM,04/01/2016 04:01:17 AM,04/01/2016 04:01:49 AM,04/01/2016 04:03:21 AM,04/01/2016 04:31:31 AM,04/01/2016 04:35:16 AM,04/01/2016 04:43:34 AM,Code 2 Transport,04/01/2016 05:18:17 AM,200 Block of GALEWOOD CIR,San Francisco,94131,B08,20,5341,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7524679814204, -122.456992921405)",160920348-AM18 +160400170,78,16015858,Medical Incident,02/09/2016,02/08/2016,02/09/2016 01:58:04 AM,02/09/2016 01:58:59 AM,02/09/2016 02:11:56 AM,02/09/2016 02:12:12 AM,02/09/2016 02:18:58 AM,02/09/2016 02:38:48 AM,02/09/2016 03:08:37 AM,Code 3 Transport,02/09/2016 03:55:32 AM,EVANS AV/3RD ST,San Francisco,94124,B10,25,6457,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",160400170-78 +160360203,52,16014076,Medical Incident,02/05/2016,02/04/2016,02/05/2016 01:18:36 AM,02/05/2016 01:21:29 AM,02/05/2016 01:22:07 AM,02/05/2016 01:22:16 AM,02/05/2016 01:29:40 AM,02/05/2016 01:48:54 AM,02/05/2016 02:08:32 AM,Code 2 Transport,02/05/2016 03:07:28 AM,3000 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.723359097822, -122.401902489608)",160360203-52 +133600319,B02,13122475,Alarms,12/26/2013,12/26/2013,12/26/2013 08:43:34 PM,12/26/2013 08:44:32 PM,12/26/2013 08:45:00 PM,12/26/2013 08:46:46 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 08:50:34 PM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",133600319-B02 +113260311,KM14,11108335,Medical Incident,11/22/2011,11/22/2011,11/22/2011 06:14:12 PM,11/22/2011 06:14:32 PM,11/22/2011 06:14:42 PM,11/22/2011 06:15:22 PM,11/22/2011 06:19:47 PM,11/22/2011 06:28:44 PM,11/22/2011 06:37:53 PM,Code 2 Transport,11/22/2011 07:27:34 PM,400 Block of 29TH AVE,SF,94121,B07,14,7226,3,2,2,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7808610214772, -122.489016145519)",113260311-KM14 +121400301,E01,12046610,Medical Incident,05/19/2012,05/19/2012,05/19/2012 07:41:31 PM,05/19/2012 07:43:46 PM,05/19/2012 07:59:13 PM,05/19/2012 08:00:08 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Unable to Locate,05/19/2012 08:15:15 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",121400301-E01 +160010113,KM08,16000017,Medical Incident,01/01/2016,12/31/2015,01/01/2016 12:23:39 AM,01/01/2016 12:25:56 AM,01/01/2016 12:36:37 AM,01/01/2016 12:38:02 AM,01/01/2016 12:42:01 AM,01/01/2016 12:53:45 AM,01/01/2016 01:18:32 AM,Code 2 Transport,01/01/2016 01:20:28 AM,MARKET ST/DRUMM ST,San Francisco,94105,B99,13,1113,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",160010113-KM08 +160300389,85,16011653,Medical Incident,01/30/2016,01/29/2016,01/30/2016 02:42:57 AM,01/30/2016 02:43:36 AM,01/30/2016 02:44:00 AM,01/30/2016 02:44:17 AM,01/30/2016 02:48:05 AM,01/30/2016 02:59:47 AM,01/30/2016 03:06:17 AM,Code 2 Transport,01/30/2016 03:38:49 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160300389-85 +160320232,53,16012420,Medical Incident,02/01/2016,01/31/2016,02/01/2016 02:13:50 AM,02/01/2016 02:13:50 AM,02/01/2016 02:14:40 AM,02/01/2016 02:14:43 AM,02/01/2016 02:27:07 AM,02/01/2016 02:38:11 AM,02/01/2016 02:43:21 AM,Code 2 Transport,02/01/2016 03:23:02 AM,EDDY ST/HYDE ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",160320232-53 +110360277,E01,11011904,Traffic Collision,02/05/2011,02/05/2011,02/05/2011 03:28:31 PM,02/05/2011 03:28:32 PM,02/05/2011 03:29:37 PM,02/05/2011 03:30:01 PM,02/05/2011 03:32:52 PM,04/25/2016 02:06:14 PM,04/25/2016 02:06:14 PM,Other,02/05/2011 03:55:42 PM,STOCKTON ST/OFARRELL ST,SF,94108,B01,1,1321,2,2,2,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7866153472398, -122.406398878903)",110360277-E01 +130980310,E06,13032954,Medical Incident,04/08/2013,04/08/2013,04/08/2013 03:44:56 PM,04/08/2013 03:45:27 PM,04/08/2013 03:45:40 PM,04/08/2013 03:47:24 PM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Other,04/08/2013 03:49:37 PM,100 Block of JULIAN AVE,SF,94103,B02,6,5226,3,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7657922226195, -122.420909958943)",130980310-E06 +160722484,50,16028679,Medical Incident,03/12/2016,03/12/2016,03/12/2016 05:27:59 PM,03/12/2016 05:27:59 PM,03/12/2016 05:28:24 PM,03/12/2016 05:28:51 PM,03/12/2016 05:35:40 PM,03/12/2016 06:07:58 PM,03/12/2016 06:09:53 PM,Code 2 Transport,03/12/2016 06:40:24 PM,POLK ST/BUSH ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",160722484-50 +160211447,75,16008346,Medical Incident,01/21/2016,01/21/2016,01/21/2016 11:29:26 AM,01/21/2016 11:29:26 AM,01/21/2016 11:29:42 AM,01/21/2016 11:29:52 AM,01/21/2016 11:33:00 AM,01/21/2016 11:49:30 AM,01/21/2016 11:53:27 AM,Code 2 Transport,01/21/2016 12:48:42 PM,MCALLISTER ST/FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",160211447-75 +102560202,B02,10080909,Structure Fire,09/13/2010,09/13/2010,09/13/2010 01:49:20 PM,09/13/2010 01:50:25 PM,09/13/2010 01:50:47 PM,09/13/2010 01:52:15 PM,09/13/2010 01:54:31 PM,04/25/2016 02:08:37 PM,04/25/2016 02:08:37 PM,Other,09/13/2010 02:04:49 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,,1,CHIEF,4,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",102560202-B02 +121320036,94,12043787,Medical Incident,05/11/2012,05/10/2012,05/11/2012 03:11:05 AM,05/11/2012 03:11:05 AM,05/11/2012 03:13:37 AM,05/11/2012 03:14:03 AM,05/11/2012 03:21:10 AM,05/11/2012 03:41:06 AM,05/11/2012 04:06:40 AM,Code 2 Transport,05/11/2012 04:38:36 AM,400 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7144901597507, -122.456135851109)",121320036-94 +102350282,E07,10074027,Citizen Assist / Service Call,08/23/2010,08/23/2010,08/23/2010 04:08:13 PM,08/23/2010 04:08:28 PM,08/23/2010 04:08:44 PM,08/23/2010 04:09:46 PM,08/23/2010 04:12:11 PM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/23/2010 04:14:01 PM,26TH ST/TREAT AV,SF,94110,B06,7,5614,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7493698247737, -122.412687194015)",102350282-E07 +131600065,81,13054255,Medical Incident,06/09/2013,06/08/2013,06/09/2013 06:47:17 AM,06/09/2013 06:48:11 AM,06/09/2013 06:48:54 AM,06/09/2013 06:49:08 AM,06/09/2013 06:57:27 AM,06/09/2013 07:09:52 AM,06/09/2013 07:13:29 AM,Code 2 Transport,06/09/2013 07:44:10 AM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",131600065-81 +112510014,57,11082629,Medical Incident,09/08/2011,09/07/2011,09/08/2011 12:56:18 AM,09/08/2011 12:56:18 AM,09/08/2011 12:56:18 AM,09/08/2011 12:57:06 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 12:57:33 AM,LARKIN ST/EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,MEDIC,3,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",112510014-57 +132140265,T18,13072331,Alarms,08/02/2013,08/02/2013,08/02/2013 04:29:18 PM,08/02/2013 04:30:43 PM,08/02/2013 04:30:56 PM,08/02/2013 04:31:42 PM,08/02/2013 04:35:50 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 04:42:16 PM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",132140265-T18 +110840324,AM18,11027786,Medical Incident,03/25/2011,03/25/2011,03/25/2011 06:43:34 PM,03/25/2011 06:44:00 PM,03/25/2011 06:44:14 PM,03/25/2011 06:47:31 PM,03/25/2011 06:48:43 PM,03/25/2011 06:56:50 PM,03/25/2011 07:07:32 PM,Code 3 Transport,03/25/2011 08:04:24 PM,600 Block of VICENTE ST,SF,94116,B08,40,7411,3,3,3,false,,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7393401076829, -122.473824610967)",110840324-AM18 +160091724,86,16003656,Medical Incident,01/09/2016,01/09/2016,01/09/2016 01:14:24 PM,01/09/2016 01:17:42 PM,01/09/2016 01:18:27 PM,01/09/2016 01:18:34 PM,01/09/2016 01:32:47 PM,01/09/2016 01:55:06 PM,01/09/2016 02:06:17 PM,Code 2 Transport,01/09/2016 02:41:39 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.748178766022, -122.4214039484)",160091724-86 +110250097,84,11008152,Medical Incident,01/25/2011,01/25/2011,01/25/2011 08:16:29 AM,01/25/2011 08:17:17 AM,01/25/2011 08:17:38 AM,01/25/2011 08:17:56 AM,01/25/2011 08:21:47 AM,01/25/2011 09:03:25 AM,01/25/2011 09:24:51 AM,Code 2 Transport,01/25/2011 09:53:15 AM,700 Block of COLE ST,SF,94117,B05,12,5144,3,2,2,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7671882889192, -122.4503083982)",110250097-84 +160403682,KM07,16016228,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:52:57 PM,02/09/2016 09:55:35 PM,02/09/2016 09:55:44 PM,02/09/2016 09:56:12 PM,02/09/2016 10:05:28 PM,02/09/2016 10:18:00 PM,02/09/2016 10:23:32 PM,Code 2 Transport,02/09/2016 10:59:07 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",160403682-KM07 +160081064,63,16003155,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:27:54 AM,01/08/2016 09:32:55 AM,01/08/2016 09:33:30 AM,01/08/2016 09:33:38 AM,01/08/2016 09:55:47 AM,01/08/2016 10:05:56 AM,01/08/2016 10:32:18 AM,Code 2 Transport,01/08/2016 10:53:36 AM,1900 Block of POLK ST,San Francisco,94109,B04,41,3125,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7945943539551, -122.421425211776)",160081064-63 +160210541,64,16008259,Medical Incident,01/21/2016,01/20/2016,01/21/2016 06:49:59 AM,01/21/2016 06:49:59 AM,01/21/2016 06:50:16 AM,01/21/2016 06:50:25 AM,01/21/2016 06:55:48 AM,01/21/2016 07:13:06 AM,01/21/2016 07:19:03 AM,Code 2 Transport,01/21/2016 07:53:35 AM,100 Block of HANCOCK ST,San Francisco,94114,B06,6,5436,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7602356713797, -122.431601160803)",160210541-64 +160010226,SJ111,16000039,Medical Incident,01/01/2016,12/31/2015,01/01/2016 12:49:22 AM,01/01/2016 12:49:22 AM,01/01/2016 12:49:35 AM,01/01/2016 12:50:27 AM,01/01/2016 12:54:30 AM,01/01/2016 01:05:27 AM,01/01/2016 01:15:03 AM,Code 2 Transport,01/01/2016 01:55:16 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",160010226-SJ111 +131270001,E32,13042779,Medical Incident,05/07/2013,05/06/2013,05/07/2013 12:00:55 AM,05/07/2013 12:01:24 AM,05/07/2013 12:02:22 AM,04/25/2016 01:52:55 PM,05/07/2013 12:09:21 AM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/07/2013 12:03:34 AM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",131270001-E32 +121020267,E05,12033888,Medical Incident,04/11/2012,04/11/2012,04/11/2012 05:57:37 PM,04/11/2012 05:59:31 PM,04/11/2012 06:00:56 PM,04/25/2016 01:59:13 PM,04/11/2012 06:03:55 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 06:16:55 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",121020267-E05 +130330330,E19,13011415,Traffic Collision,02/02/2013,02/02/2013,02/02/2013 09:04:51 PM,02/02/2013 09:05:37 PM,02/02/2013 09:05:49 PM,02/02/2013 09:06:59 PM,02/02/2013 09:09:25 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/02/2013 09:32:39 PM,19TH AV/JUNIPERO SERRA BL,SF,94132,B08,19,8427,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Lakeshore,"(37.71717386983, -122.472572451935)",130330330-E19 +111800316,E25,11059547,Medical Incident,06/29/2011,06/29/2011,06/29/2011 08:53:53 PM,06/29/2011 08:54:40 PM,06/29/2011 08:55:04 PM,06/29/2011 08:56:28 PM,06/29/2011 08:58:13 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/29/2011 09:07:19 PM,600 Block of MENDELL ST,SF,94124,B10,25,6521,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7392640592313, -122.386060486785)",111800316-E25 +130850147,E05,13028345,Medical Incident,03/26/2013,03/26/2013,03/26/2013 11:04:05 AM,03/26/2013 11:10:44 AM,03/26/2013 11:11:21 AM,03/26/2013 11:12:09 AM,03/26/2013 11:14:56 AM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 11:36:34 AM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",130850147-E05 +103140053,E02,10100577,Medical Incident,11/10/2010,11/09/2010,11/10/2010 06:35:20 AM,11/10/2010 06:37:23 AM,11/10/2010 06:37:38 AM,11/10/2010 06:39:25 AM,11/10/2010 06:41:57 AM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/10/2010 06:53:45 AM,800 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7932824231879, -122.407341354171)",103140053-E02 +160660702,79,16026303,Medical Incident,03/06/2016,03/05/2016,03/06/2016 07:48:15 AM,03/06/2016 07:50:46 AM,03/06/2016 07:51:09 AM,03/06/2016 07:51:18 AM,03/06/2016 07:58:01 AM,03/06/2016 08:40:40 AM,03/06/2016 09:08:23 AM,Code 2 Transport,03/06/2016 10:07:43 AM,500 Block of CARTER ST,San Francisco,94134,B09,43,6245,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",160660702-79 +111810307,E16,11059832,Medical Incident,06/30/2011,06/30/2011,06/30/2011 06:15:50 PM,06/30/2011 06:16:37 PM,06/30/2011 06:17:13 PM,06/30/2011 06:18:53 PM,06/30/2011 06:19:28 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 06:37:06 PM,3300 Block of FILLMORE ST,SF,94123,B04,16,3554,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8003405635687, -122.436077390303)",111810307-E16 +160430951,KM05,16017215,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:23:19 AM,02/12/2016 09:24:36 AM,02/12/2016 09:24:57 AM,02/12/2016 09:25:21 AM,02/12/2016 09:30:31 AM,02/12/2016 09:51:00 AM,02/12/2016 10:19:13 AM,Code 2 Transport,02/12/2016 10:35:34 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160430951-KM05 +122780290,E10,12091999,Medical Incident,10/04/2012,10/04/2012,10/04/2012 05:51:33 PM,10/04/2012 05:52:57 PM,10/04/2012 05:53:29 PM,10/04/2012 05:54:53 PM,10/04/2012 05:56:26 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/04/2012 06:08:59 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",122780290-E10 +130870210,82,13029036,Medical Incident,03/28/2013,03/28/2013,03/28/2013 02:27:18 PM,03/28/2013 02:29:47 PM,03/28/2013 02:30:00 PM,03/28/2013 02:30:09 PM,03/28/2013 02:51:35 PM,03/28/2013 03:11:50 PM,03/28/2013 03:23:23 PM,Code 2 Transport,03/28/2013 03:37:04 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",130870210-82 +160430475,79,16017169,Medical Incident,02/12/2016,02/11/2016,02/12/2016 06:26:11 AM,02/12/2016 06:26:57 AM,02/12/2016 06:27:15 AM,02/12/2016 06:27:25 AM,02/12/2016 06:35:39 AM,02/12/2016 06:48:30 AM,02/12/2016 07:09:28 AM,Code 2 Transport,02/12/2016 07:31:36 AM,700 Block of WASHINGTON ST,San Francisco,94108,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.795117116509, -122.406249619336)",160430475-79 +122750420,KM04,12090943,Medical Incident,10/01/2012,10/01/2012,10/01/2012 10:10:24 PM,10/01/2012 10:11:13 PM,10/01/2012 10:11:44 PM,10/01/2012 10:12:35 PM,10/01/2012 10:18:41 PM,10/01/2012 10:27:28 PM,10/01/2012 10:39:46 PM,Code 2 Transport,10/01/2012 11:13:24 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",122750420-KM04 +132350189,66,13079312,Medical Incident,08/23/2013,08/23/2013,08/23/2013 12:45:21 PM,08/23/2013 12:46:32 PM,08/23/2013 12:46:46 PM,08/23/2013 12:47:46 PM,08/23/2013 12:53:17 PM,08/23/2013 01:11:40 PM,08/23/2013 01:21:21 PM,Code 2 Transport,08/23/2013 02:20:27 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",132350189-66 +120820320,E32,12027340,Medical Incident,03/22/2012,03/22/2012,03/22/2012 07:17:30 PM,03/22/2012 07:20:20 PM,03/22/2012 07:20:39 PM,03/22/2012 07:22:03 PM,03/22/2012 07:34:40 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/22/2012 07:44:48 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",120820320-E32 +160780696,52,16030927,Medical Incident,03/18/2016,03/17/2016,03/18/2016 07:31:59 AM,03/18/2016 07:33:13 AM,03/18/2016 07:33:48 AM,03/18/2016 07:33:58 AM,03/18/2016 07:40:34 AM,03/18/2016 08:04:24 AM,03/18/2016 08:28:27 AM,Code 2 Transport,03/18/2016 09:20:14 AM,500 Block of MARKET ST,San Francisco,94105,B03,13,2143,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",160780696-52 +160662134,61,16026436,Medical Incident,03/06/2016,03/06/2016,03/06/2016 03:57:14 PM,03/06/2016 03:58:05 PM,03/06/2016 03:59:01 PM,03/06/2016 03:59:10 PM,03/06/2016 04:03:03 PM,03/06/2016 04:13:45 PM,03/06/2016 04:33:59 PM,Code 2 Transport,03/06/2016 05:03:39 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160662134-61 +160661690,65,16026402,Medical Incident,03/06/2016,03/06/2016,03/06/2016 01:48:24 PM,03/06/2016 01:50:13 PM,03/06/2016 01:51:20 PM,03/06/2016 01:52:02 PM,03/06/2016 01:59:25 PM,03/06/2016 02:25:00 PM,03/06/2016 03:03:36 PM,Code 2 Transport,03/06/2016 03:28:25 PM,300 Block of MANGELS AVE,San Francisco,94127,B09,15,8242,3,3,3,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7331372687276, -122.445461089298)",160661690-65 +110890107,E36,11029328,Medical Incident,03/30/2011,03/30/2011,03/30/2011 09:43:52 AM,03/30/2011 09:45:15 AM,03/30/2011 09:45:44 AM,03/30/2011 09:47:37 AM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 09:56:45 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",110890107-E36 +160252926,54,16010042,Medical Incident,01/25/2016,01/25/2016,01/25/2016 06:06:10 PM,01/25/2016 06:07:50 PM,01/25/2016 06:08:26 PM,01/25/2016 06:08:37 PM,01/25/2016 06:14:04 PM,01/25/2016 06:38:15 PM,01/25/2016 06:55:15 PM,Code 2 Transport,01/25/2016 07:29:21 PM,2200 Block of JUDAH ST,San Francisco,94122,B08,18,7513,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7612443851836, -122.486100308846)",160252926-54 +132940078,66,13099916,Medical Incident,10/21/2013,10/21/2013,10/21/2013 08:18:15 AM,10/21/2013 08:19:14 AM,10/21/2013 08:19:58 AM,10/21/2013 08:22:19 AM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 08:28:22 AM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",132940078-66 +160363889,85,16014456,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:38:58 PM,02/05/2016 09:38:58 PM,02/05/2016 09:39:29 PM,02/05/2016 09:39:41 PM,02/05/2016 09:44:20 PM,02/05/2016 09:54:55 PM,02/05/2016 09:57:52 PM,Code 2 Transport,02/05/2016 10:47:06 PM,DIVISADERO ST/HAYES ST,San Francisco,94117,B05,21,4145,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7749919470007, -122.437798745964)",160363889-85 +103360014,B08,10107357,Alarms,12/02/2010,12/01/2010,12/02/2010 12:56:26 AM,12/02/2010 12:57:17 AM,12/02/2010 12:57:25 AM,12/02/2010 12:59:36 AM,12/02/2010 01:04:53 AM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/02/2010 01:06:53 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",103360014-B08 +130360038,E22,13012251,Structure Fire,02/05/2013,02/04/2013,02/05/2013 04:08:03 AM,02/05/2013 04:08:03 AM,02/05/2013 04:08:19 AM,02/05/2013 04:09:20 AM,02/05/2013 04:11:41 AM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Fire,02/05/2013 04:12:30 AM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",130360038-E22 +131930278,E02,13065735,Structure Fire,07/12/2013,07/12/2013,07/12/2013 06:33:42 PM,07/12/2013 06:35:23 PM,07/12/2013 06:36:25 PM,07/12/2013 06:37:35 PM,07/12/2013 06:38:51 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 06:43:37 PM,500 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",131930278-E02 +113400396,KM01,11112872,Medical Incident,12/06/2011,12/06/2011,12/06/2011 09:52:33 PM,12/06/2011 09:52:55 PM,12/06/2011 09:53:32 PM,12/06/2011 09:54:22 PM,12/06/2011 09:59:21 PM,12/06/2011 10:14:26 PM,12/06/2011 10:23:27 PM,Code 2 Transport,12/06/2011 11:05:46 PM,100 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7708835966401, -122.443810948891)",113400396-KM01 +160763578,66,16030323,Medical Incident,03/16/2016,03/16/2016,03/16/2016 07:52:25 PM,03/16/2016 07:52:42 PM,03/16/2016 07:53:15 PM,03/16/2016 07:57:08 PM,03/16/2016 08:01:23 PM,03/16/2016 08:09:56 PM,03/16/2016 08:49:04 PM,Code 2 Transport,03/16/2016 09:15:26 PM,2200 Block of JERROLD AVE,San Francisco,94124,B10,9,6411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",160763578-66 +111780391,E21,11058947,Medical Incident,06/27/2011,06/27/2011,06/27/2011 11:10:49 PM,06/27/2011 11:12:09 PM,06/27/2011 11:12:35 PM,06/27/2011 11:14:15 PM,06/27/2011 11:16:31 PM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Other,06/27/2011 11:17:45 PM,1600 Block of FULTON ST,SF,94117,B05,21,4346,3,3,3,false,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7760670800915, -122.443945228823)",111780391-E21 +121720089,E01,12057033,Medical Incident,06/20/2012,06/20/2012,06/20/2012 08:51:16 AM,06/20/2012 08:52:48 AM,06/20/2012 08:53:09 AM,06/20/2012 08:55:43 AM,06/20/2012 09:01:43 AM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,Other,06/20/2012 09:13:25 AM,STOCKTON ST/OFARRELL ST,SF,94108,B01,1,1321,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7866153472398, -122.406398878903)",121720089-E01 +160461662,KM08,16018510,Medical Incident,02/15/2016,02/15/2016,02/15/2016 12:59:45 PM,02/15/2016 01:02:56 PM,02/15/2016 01:04:03 PM,02/15/2016 01:04:33 PM,02/15/2016 01:14:36 PM,02/15/2016 01:38:37 PM,02/15/2016 02:07:39 PM,Code 2 Transport,02/15/2016 02:15:30 PM,1300 Block of 20TH AVE,San Francisco,94122,B08,22,7424,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7625809452391, -122.478195483155)",160461662-KM08 +102540339,RA48,10080423,Medical Incident,09/11/2010,09/11/2010,09/11/2010 08:15:59 PM,09/11/2010 08:17:56 PM,09/11/2010 08:18:15 PM,09/11/2010 08:20:14 PM,09/11/2010 08:21:51 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 08:48:40 PM,1200 Block of NORTHPOINT DR,TI,94130,B03,48,2931,3,3,3,false,,1,MEDIC,2,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",102540339-RA48 +131810414,75,13061774,Traffic Collision,06/30/2013,06/30/2013,06/30/2013 07:57:40 PM,06/30/2013 07:58:54 PM,06/30/2013 08:04:54 PM,06/30/2013 08:05:05 PM,06/30/2013 08:16:22 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,06/30/2013 08:16:48 PM,MAYFAIR DR/IRIS AV,SF,94118,B05,10,4374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,6,5,2,Presidio Heights,"(37.7858717035436, -122.452069954299)",131810414-75 +113440288,66,11114216,Medical Incident,12/10/2011,12/10/2011,12/10/2011 07:13:46 PM,12/10/2011 07:15:13 PM,12/10/2011 07:15:54 PM,12/10/2011 07:16:05 PM,12/10/2011 07:26:33 PM,12/10/2011 07:36:47 PM,12/10/2011 08:08:06 PM,Code 2 Transport,12/10/2011 08:47:56 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",113440288-66 +140510260,E17,14017328,Medical Incident,02/20/2014,02/20/2014,02/20/2014 03:00:09 PM,02/20/2014 03:01:44 PM,02/20/2014 03:03:02 PM,02/20/2014 03:04:54 PM,02/20/2014 03:07:20 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Code 2 Transport,02/20/2014 03:19:58 PM,2400 Block of KEITH ST,SF,94124,B10,17,6546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",140510260-E17 +160202931,57,16008098,Medical Incident,01/20/2016,01/20/2016,01/20/2016 05:37:10 PM,01/20/2016 05:38:41 PM,01/20/2016 05:38:58 PM,01/20/2016 05:39:04 PM,01/20/2016 06:08:15 PM,01/20/2016 06:08:17 PM,01/20/2016 06:12:04 PM,Code 2 Transport,01/20/2016 06:40:11 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160202931-57 +133140140,E07,13106717,Medical Incident,11/10/2013,11/10/2013,11/10/2013 10:56:04 AM,11/10/2013 10:57:07 AM,11/10/2013 10:57:55 AM,11/10/2013 10:58:18 AM,11/10/2013 11:01:17 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/10/2013 11:07:43 AM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7677331022924, -122.415606951318)",133140140-E07 +133230238,KM04,13109681,Medical Incident,11/19/2013,11/19/2013,11/19/2013 02:05:28 PM,11/19/2013 02:08:19 PM,11/19/2013 02:15:19 PM,11/19/2013 02:16:18 PM,11/19/2013 02:33:52 PM,11/19/2013 02:50:11 PM,11/19/2013 03:02:26 PM,Code 2 Transport,11/19/2013 03:31:06 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",133230238-KM04 +103030052,T01,10096693,Structure Fire,10/30/2010,10/29/2010,10/30/2010 02:49:06 AM,10/30/2010 02:49:06 AM,10/30/2010 02:49:21 AM,10/30/2010 02:51:24 AM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 02:53:38 AM,8TH ST/MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",103030052-T01 +111380286,T01,11045966,Alarms,05/18/2011,05/18/2011,05/18/2011 06:06:39 PM,05/18/2011 06:07:44 PM,05/18/2011 06:08:12 PM,05/18/2011 06:10:41 PM,05/18/2011 06:12:07 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 06:15:23 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7829835080746, -122.406698577014)",111380286-T01 +160892702,KM13,16035411,Medical Incident,03/29/2016,03/29/2016,03/29/2016 04:45:57 PM,03/29/2016 04:48:02 PM,03/29/2016 04:48:29 PM,03/29/2016 04:49:13 PM,03/29/2016 05:01:10 PM,03/29/2016 05:16:02 PM,03/29/2016 05:28:41 PM,Code 2 Transport,03/29/2016 05:53:04 PM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",160892702-KM13 +132220370,T03,13075122,Structure Fire,08/10/2013,08/10/2013,08/10/2013 09:36:31 PM,08/10/2013 09:36:32 PM,08/10/2013 09:36:42 PM,08/10/2013 09:37:39 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,Other,08/10/2013 09:41:00 PM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",132220370-T03 +160352407,AM08,16013875,Medical Incident,02/04/2016,02/04/2016,02/04/2016 03:31:17 PM,02/04/2016 03:32:06 PM,02/04/2016 03:32:26 PM,02/04/2016 03:33:04 PM,02/04/2016 03:38:36 PM,02/04/2016 03:52:04 PM,02/04/2016 04:09:17 PM,Code 2 Transport,02/04/2016 04:44:51 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160352407-AM08 +110030086,E17,11000900,Medical Incident,01/03/2011,01/03/2011,01/03/2011 09:19:13 AM,01/03/2011 09:20:10 AM,01/03/2011 09:20:22 AM,01/03/2011 09:22:48 AM,01/03/2011 09:24:41 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 09:36:05 AM,0 Block of MATTHEW CT,SF,94124,B10,17,6641,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7312962281442, -122.380133847121)",110030086-E17 +160383576,62,16015407,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:19:04 PM,02/07/2016 10:21:34 PM,02/07/2016 10:21:52 PM,02/07/2016 10:22:42 PM,02/07/2016 10:42:15 PM,02/07/2016 10:53:01 PM,02/07/2016 11:00:14 PM,Code 2 Transport,02/07/2016 11:34:58 PM,400 Block of SILVER AVE,San Francisco,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7284848824705, -122.428435902127)",160383576-62 +131190089,E03,13039963,Medical Incident,04/29/2013,04/28/2013,04/29/2013 07:20:05 AM,04/29/2013 07:21:50 AM,04/29/2013 07:22:54 AM,04/29/2013 07:24:50 AM,04/29/2013 07:31:44 AM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/29/2013 07:39:34 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",131190089-E03 +111060189,E01,11035084,Medical Incident,04/16/2011,04/16/2011,04/16/2011 02:00:21 PM,04/16/2011 02:01:21 PM,04/16/2011 02:01:56 PM,04/16/2011 02:03:54 PM,04/16/2011 02:06:58 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/16/2011 02:07:37 PM,SUTTER ST/JONES ST,SF,94109,B01,3,1463,3,3,3,true,,1,ENGINE,3,1,3,Nob Hill,"(37.7885982027896, -122.413541442382)",111060189-E01 +110850397,AM10,11028220,Medical Incident,03/26/2011,03/26/2011,03/26/2011 11:58:06 PM,03/26/2011 11:59:31 PM,03/27/2011 12:00:24 AM,03/27/2011 12:00:53 AM,03/27/2011 12:13:06 AM,03/27/2011 12:28:04 AM,03/27/2011 12:46:33 AM,Code 2 Transport,03/27/2011 01:11:14 AM,5700 Block of MISSION ST,SF,94112,B09,33,6212,1,1,2,false,,1,PRIVATE,1,9,11,Outer Mission,"(37.7098635927288, -122.449729173956)",110850397-AM10 +133230416,E18,13109834,Medical Incident,11/19/2013,11/19/2013,11/19/2013 10:26:17 PM,11/19/2013 10:29:11 PM,11/19/2013 10:30:12 PM,11/19/2013 10:31:11 PM,11/19/2013 10:35:18 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 10:40:36 PM,1300 Block of 37TH AVE,SF,94122,B08,23,7571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7617778269302, -122.496418264934)",133230416-E18 +160863829,KM07,16034383,Medical Incident,03/26/2016,03/26/2016,03/26/2016 10:41:21 PM,03/26/2016 10:42:06 PM,03/26/2016 10:43:01 PM,03/26/2016 10:44:17 PM,03/26/2016 10:59:01 PM,03/26/2016 11:08:17 PM,03/26/2016 11:28:00 PM,Code 2 Transport,03/26/2016 11:52:00 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",160863829-KM07 +130210097,E21,13007190,Medical Incident,01/21/2013,01/21/2013,01/21/2013 09:03:05 AM,01/21/2013 09:04:20 AM,01/21/2013 09:04:43 AM,01/21/2013 09:06:35 AM,01/21/2013 09:10:08 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/21/2013 09:30:02 AM,2200 Block of TURK BLVD,SF,94115,B05,21,4363,3,2,2,true,Non Life-threatening,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7788473226523, -122.445701681014)",130210097-E21 +121620280,E13,12053711,Structure Fire,06/10/2012,06/10/2012,06/10/2012 04:23:52 PM,06/10/2012 04:23:52 PM,06/10/2012 04:24:07 PM,04/25/2016 01:58:16 PM,06/10/2012 04:25:04 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 04:25:21 PM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7895620432155, -122.402161869829)",121620280-E13 +111950335,E10,11064505,Structure Fire,07/14/2011,07/14/2011,07/14/2011 07:55:16 PM,07/14/2011 07:55:17 PM,07/14/2011 07:56:00 PM,07/14/2011 07:57:11 PM,07/14/2011 07:59:57 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Fire,07/14/2011 08:11:21 PM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",111950335-E10 +120540199,E08,12017839,Medical Incident,02/23/2012,02/23/2012,02/23/2012 02:03:14 PM,02/23/2012 02:04:40 PM,02/23/2012 02:10:29 PM,02/23/2012 02:11:38 PM,02/23/2012 02:13:48 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 02:14:58 PM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7732232142847, -122.402889298062)",120540199-E08 +160721456,KM12,16028577,Medical Incident,03/12/2016,03/12/2016,03/12/2016 12:13:30 PM,03/12/2016 12:14:13 PM,03/12/2016 12:15:01 PM,03/12/2016 12:16:07 PM,03/12/2016 12:18:27 PM,03/12/2016 12:41:16 PM,03/12/2016 01:05:11 PM,Code 2 Transport,03/12/2016 01:37:37 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160721456-KM12 +111670184,E36,11055131,Medical Incident,06/16/2011,06/16/2011,06/16/2011 03:34:11 PM,06/16/2011 03:35:02 PM,06/16/2011 03:35:17 PM,06/16/2011 03:36:48 PM,06/16/2011 03:37:56 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/16/2011 03:44:03 PM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",111670184-E36 +130810211,72,13027135,Structure Fire,03/22/2013,03/22/2013,03/22/2013 02:28:14 PM,03/22/2013 02:29:09 PM,03/22/2013 02:30:37 PM,03/22/2013 02:30:43 PM,03/22/2013 02:39:55 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 02:49:43 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,true,Fire,1,MEDIC,12,4,2,Marina,"(37.8006947037442, -122.436775838314)",130810211-72 +103200039,T03,10102454,Alarms,11/16/2010,11/15/2010,11/16/2010 03:03:16 AM,11/16/2010 03:05:09 AM,11/16/2010 03:05:53 AM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 03:07:40 AM,0 Block of CYRIL MAGNIN ST,SF,94102,B03,1,1366,3,3,3,false,,1,TRUCK,4,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",103200039-T03 +123030381,E08,12100670,Medical Incident,10/29/2012,10/29/2012,10/29/2012 06:55:06 PM,10/29/2012 06:57:24 PM,10/29/2012 06:57:32 PM,10/29/2012 06:58:48 PM,10/29/2012 07:01:42 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 07:24:04 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",123030381-E08 +130080084,E03,13002659,Citizen Assist / Service Call,01/08/2013,01/08/2013,01/08/2013 08:04:40 AM,01/08/2013 08:04:40 AM,01/08/2013 08:04:40 AM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Fire,01/08/2013 08:14:22 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",130080084-E03 +122600107,T17,12085875,Structure Fire,09/16/2012,09/16/2012,09/16/2012 09:29:58 AM,09/16/2012 09:29:58 AM,09/16/2012 09:30:10 AM,09/16/2012 09:31:27 AM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 09:34:45 AM,BLANKEN AV/NUEVA AV,SF,94134,B10,44,6273,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7111993962148, -122.397343720513)",122600107-T17 +160573905,55,16022932,Medical Incident,02/26/2016,02/26/2016,02/26/2016 11:39:47 PM,02/26/2016 11:41:34 PM,02/26/2016 11:42:06 PM,02/26/2016 11:42:24 PM,02/26/2016 11:51:44 PM,02/27/2016 12:13:04 AM,02/27/2016 12:16:28 AM,Code 2 Transport,02/27/2016 12:45:54 AM,4200 Block of 24TH ST,San Francisco,94114,B06,24,5521,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7511432503724, -122.437391428378)",160573905-55 +160540774,55,16021493,Medical Incident,02/23/2016,02/23/2016,02/23/2016 08:39:51 AM,02/23/2016 08:40:40 AM,02/23/2016 08:41:01 AM,02/23/2016 08:41:12 AM,02/23/2016 08:58:22 AM,02/23/2016 09:13:12 AM,02/23/2016 09:23:48 AM,Code 2 Transport,02/23/2016 10:00:02 AM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",160540774-55 +131830282,96,13062437,Medical Incident,07/02/2013,07/02/2013,07/02/2013 05:40:18 PM,07/02/2013 05:42:30 PM,07/02/2013 05:42:47 PM,07/02/2013 05:43:15 PM,07/02/2013 05:52:12 PM,07/02/2013 06:09:52 PM,07/02/2013 06:17:57 PM,Code 2 Transport,07/02/2013 06:55:12 PM,3400 Block of CALIFORNIA ST,SF,94118,B07,10,4431,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",131830282-96 +160250108,60,16009748,Medical Incident,01/25/2016,01/24/2016,01/25/2016 12:52:55 AM,01/25/2016 12:55:15 AM,01/25/2016 12:55:37 AM,01/25/2016 12:55:52 AM,01/25/2016 01:01:11 AM,01/25/2016 01:30:18 AM,01/25/2016 01:45:30 AM,Code 2 Transport,01/25/2016 02:30:22 AM,200 Block of STONECREST DR,San Francisco,94132,B08,19,8725,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7257458502025, -122.474261031081)",160250108-60 +160771995,56,16030602,Medical Incident,03/17/2016,03/17/2016,03/17/2016 01:19:24 PM,03/17/2016 01:23:07 PM,03/17/2016 01:48:59 PM,03/17/2016 01:49:01 PM,03/17/2016 02:03:45 PM,03/17/2016 02:12:04 PM,03/17/2016 02:33:33 PM,Code 2 Transport,03/17/2016 03:11:19 PM,600 Block of EDDY ST,San Francisco,94102,B02,3,1643,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",160771995-56 +120690415,RS1,12023096,Medical Incident,03/09/2012,03/09/2012,03/09/2012 11:32:13 PM,03/09/2012 11:34:44 PM,03/09/2012 11:35:35 PM,03/09/2012 11:36:48 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 11:37:19 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120690415-RS1 +112670250,T15,11088280,Citizen Assist / Service Call,09/24/2011,09/24/2011,09/24/2011 03:58:29 PM,09/24/2011 04:00:39 PM,09/24/2011 04:00:55 PM,09/24/2011 04:03:03 PM,09/24/2011 04:09:14 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Fire,09/24/2011 04:18:24 PM,400 Block of ROLPH ST,SF,94112,B09,43,6226,3,3,3,false,,1,TRUCK,1,9,11,Excelsior,"(37.7122411987932, -122.433864119271)",112670250-T15 +160071248,71,16002787,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:41:43 AM,01/07/2016 10:43:14 AM,01/07/2016 10:45:00 AM,01/07/2016 10:47:55 AM,01/07/2016 10:50:48 AM,01/07/2016 11:03:54 AM,01/07/2016 11:24:30 AM,Code 2 Transport,01/07/2016 11:49:07 AM,900 Block of POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",160071248-71 +121650032,E14,12054604,Medical Incident,06/13/2012,06/12/2012,06/13/2012 03:31:54 AM,06/13/2012 03:32:49 AM,06/13/2012 03:32:59 AM,06/13/2012 03:34:25 AM,06/13/2012 03:37:44 AM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/13/2012 03:50:57 AM,3100 Block of CABRILLO ST,SF,94121,B07,14,7242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7741241104031, -122.49236726249)",121650032-E14 +160442387,61,16017765,Medical Incident,02/13/2016,02/13/2016,02/13/2016 04:32:16 PM,02/13/2016 04:33:45 PM,02/13/2016 05:18:40 PM,02/13/2016 05:18:43 PM,02/13/2016 05:31:52 PM,02/13/2016 05:52:11 PM,02/13/2016 06:03:20 PM,Code 2 Transport,02/13/2016 06:32:49 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",160442387-61 +160862682,53,16034260,Medical Incident,03/26/2016,03/26/2016,03/26/2016 05:13:51 PM,03/26/2016 05:16:29 PM,03/26/2016 05:18:00 PM,03/26/2016 05:18:08 PM,03/26/2016 05:22:53 PM,03/26/2016 05:53:25 PM,03/26/2016 06:24:12 PM,Code 2 Transport,03/26/2016 06:48:38 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160862682-53 +103460300,E14,10111050,Water Rescue,12/12/2010,12/12/2010,12/12/2010 06:00:25 PM,12/12/2010 06:02:11 PM,12/12/2010 06:02:57 PM,12/12/2010 06:04:08 PM,12/12/2010 06:13:04 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 06:33:34 PM,GREAT HY/TARAVAL ST,SF,94116,B08,23,7731,3,3,3,true,,1,ENGINE,9,8,4,Sunset/Parkside,"(37.7416730182637, -122.506865451052)",103460300-E14 +122960341,T05,12098290,Medical Incident,10/22/2012,10/22/2012,10/22/2012 08:41:08 PM,10/22/2012 08:41:50 PM,10/22/2012 08:42:01 PM,10/22/2012 08:43:04 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 08:43:10 PM,2000 Block of POST ST,SF,94115,B04,5,3622,3,3,3,true,Potentially Life-Threatening,1,TRUCK,3,4,5,Japantown,"(37.7848942765225, -122.435560105122)",122960341-T05 +132930273,T01,13099795,Structure Fire,10/20/2013,10/20/2013,10/20/2013 07:07:14 PM,10/20/2013 07:07:14 PM,10/20/2013 07:07:34 PM,10/20/2013 07:09:22 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/20/2013 07:12:05 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",132930273-T01 +113610046,T13,11119841,HazMat,12/27/2011,12/26/2011,12/27/2011 05:58:00 AM,12/27/2011 06:09:16 AM,12/27/2011 06:13:25 AM,12/27/2011 06:15:31 AM,12/27/2011 06:19:00 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 07:18:07 AM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7927299343809, -122.40328650281)",113610046-T13 +112850348,E19,11094518,Medical Incident,10/12/2011,10/12/2011,10/12/2011 06:56:34 PM,10/12/2011 06:57:41 PM,10/12/2011 06:57:50 PM,10/12/2011 06:59:09 PM,10/12/2011 07:04:08 PM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 07:22:50 PM,500 Block of JOHN MUIR DR,SF,94132,B08,19,8714,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",112850348-E19 +160780483,85,16030902,Medical Incident,03/18/2016,03/17/2016,03/18/2016 04:37:38 AM,03/18/2016 04:38:34 AM,03/18/2016 04:41:09 AM,03/18/2016 04:41:20 AM,03/18/2016 04:57:39 AM,03/18/2016 05:07:24 AM,03/18/2016 05:20:47 AM,Code 2 Transport,03/18/2016 05:35:38 AM,100 Block of QUINTARA ST,San Francisco,94116,B08,40,7341,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7489965172611, -122.466853065424)",160780483-85 +131710105,E08,13057988,Medical Incident,06/20/2013,06/20/2013,06/20/2013 09:19:01 AM,06/20/2013 09:21:03 AM,06/20/2013 09:22:17 AM,06/20/2013 09:23:58 AM,06/20/2013 09:30:43 AM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/20/2013 09:47:20 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",131710105-E08 +160521995,55,16020847,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:43:58 PM,02/21/2016 02:45:36 PM,02/21/2016 02:45:53 PM,02/21/2016 02:46:07 PM,02/21/2016 03:01:04 PM,02/21/2016 04:02:07 PM,02/21/2016 04:02:12 PM,Code 2 Transport,02/21/2016 04:34:46 PM,0 Block of MARSTON AVE,San Francisco,94112,B09,15,8226,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7274123424876, -122.44593049272)",160521995-55 +113610020,B01,11119816,Alarms,12/27/2011,12/26/2011,12/27/2011 02:37:05 AM,12/27/2011 02:38:07 AM,12/27/2011 02:38:17 AM,12/27/2011 02:40:38 AM,12/27/2011 02:42:44 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 02:54:29 AM,900 Block of GRANT AVE,SF,94108,B01,2,1312,3,3,3,false,,1,CHIEF,3,1,3,Chinatown,"(37.7955759617339, -122.406632308192)",113610020-B01 +140940329,E07,14031725,Medical Incident,04/04/2014,04/04/2014,04/04/2014 07:47:32 PM,04/04/2014 07:47:57 PM,04/04/2014 07:50:42 PM,04/04/2014 07:50:42 PM,04/04/2014 07:51:56 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Code 2 Transport,04/04/2014 08:20:35 PM,2200 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5423,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7610314429831, -122.419351642615)",140940329-E07 +121760195,AM04,12058505,Medical Incident,06/24/2012,06/24/2012,06/24/2012 12:17:05 PM,06/24/2012 12:18:33 PM,06/24/2012 12:19:02 PM,06/24/2012 12:29:45 PM,06/24/2012 12:50:02 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Patient Declined Transport,06/24/2012 01:14:30 PM,SACRAMENTO ST/DRUMM ST,SF,94111,B01,13,1115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7945882147944, -122.396585912894)",121760195-AM04 +103260162,KM05,10104466,Traffic Collision,11/22/2010,11/22/2010,11/22/2010 12:52:29 PM,11/22/2010 12:52:37 PM,11/22/2010 12:53:20 PM,11/22/2010 12:53:59 PM,11/22/2010 12:58:26 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Patient Declined Transport,11/22/2010 01:09:31 PM,19TH AV/WAWONA ST,SF,94132,B08,40,7414,2,2,2,false,,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7374547435254, -122.475288554879)",103260162-KM05 +120090301,E28,12003203,Structure Fire,01/09/2012,01/09/2012,01/09/2012 04:29:43 PM,01/09/2012 04:31:01 PM,01/09/2012 04:31:42 PM,01/09/2012 04:32:36 PM,01/09/2012 04:34:25 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/09/2012 05:30:22 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Fire,1,ENGINE,2,1,3,North Beach,"(37.8069201392161, -122.407170160416)",120090301-E28 +110930140,RS2,11030834,Structure Fire,04/03/2011,04/03/2011,04/03/2011 10:46:32 AM,04/03/2011 10:46:50 AM,04/03/2011 10:47:11 AM,04/03/2011 10:47:48 AM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 10:53:19 AM,100 Block of COLE ST,SF,94117,B05,21,4535,3,3,3,false,,1,RESCUE SQUAD,8,5,5,Lone Mountain/USF,"(37.7737909326807, -122.451000209321)",110930140-RS2 +113270188,B09,11108566,Alarms,11/23/2011,11/23/2011,11/23/2011 01:40:50 PM,11/23/2011 01:41:41 PM,11/23/2011 01:42:15 PM,11/23/2011 01:44:00 PM,11/23/2011 01:47:26 PM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 01:49:47 PM,1800 Block of GENEVA AVE,SF,94134,B09,43,6245,3,3,3,false,,1,CHIEF,2,9,11,Excelsior,"(37.7095604503815, -122.424095747426)",113270188-B09 +121020184,KM05,12033820,Medical Incident,04/11/2012,04/11/2012,04/11/2012 01:25:29 PM,04/11/2012 01:26:54 PM,04/11/2012 01:27:30 PM,04/11/2012 01:28:01 PM,04/11/2012 01:36:01 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Patient Declined Transport,04/11/2012 01:57:11 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",121020184-KM05 +112150336,86,11071109,,08/03/2011,08/03/2011,08/03/2011 07:34:00 PM,08/03/2011 07:35:00 PM,08/03/2011 07:35:00 PM,08/03/2011 07:54:00 PM,08/03/2011 07:56:00 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,SFPD,08/03/2011 08:07:00 PM,300 Block of BEALE ST,SF,94105,B03,35,2122,3,3,3,true,,1,MEDIC,4,3,6,Financial District/South Beach,"(37.7880321954757, -122.392000314933)",112150336-86 +110690200,RC1,11022708,Medical Incident,03/10/2011,03/10/2011,03/10/2011 01:41:13 PM,03/10/2011 01:41:56 PM,03/10/2011 01:42:13 PM,03/10/2011 01:44:02 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 01:46:47 PM,100 Block of 4TH ST,SF,94103,B03,1,2213,3,2,2,true,,1,RESCUE CAPTAIN,3,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",110690200-RC1 +122060204,E15,12068502,Medical Incident,07/24/2012,07/24/2012,07/24/2012 01:50:11 PM,07/24/2012 01:50:42 PM,07/24/2012 01:51:18 PM,07/24/2012 01:52:10 PM,07/24/2012 01:55:40 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 02:11:17 PM,200 Block of CORDOVA ST,SF,94112,B09,43,6225,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.711260086576, -122.435342741202)",122060204-E15 +132090135,AP,13070645,Other,07/28/2013,07/28/2013,07/28/2013 10:21:49 AM,07/28/2013 10:21:49 AM,07/28/2013 10:21:49 AM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Fire,07/28/2013 10:22:39 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",132090135-AP +160151126,AM06,16005921,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:05:33 AM,01/15/2016 10:06:04 AM,01/15/2016 10:06:52 AM,01/15/2016 10:07:22 AM,01/15/2016 10:19:36 AM,01/15/2016 10:35:06 AM,01/15/2016 10:48:19 AM,Code 2 Transport,01/15/2016 11:25:52 AM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160151126-AM06 +160102347,89,16004105,Medical Incident,01/10/2016,01/10/2016,01/10/2016 04:27:27 PM,01/10/2016 04:28:52 PM,01/10/2016 04:29:51 PM,01/10/2016 04:32:02 PM,01/10/2016 04:45:29 PM,01/10/2016 04:56:58 PM,01/10/2016 05:13:06 PM,Code 2 Transport,01/10/2016 05:31:32 PM,100 Block of 2ND ST,San Francisco,94105,B03,1,2146,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7874298723673, -122.398972966106)",160102347-89 +160190532,89,16007494,Medical Incident,01/19/2016,01/18/2016,01/19/2016 06:44:11 AM,01/19/2016 06:46:46 AM,01/19/2016 06:47:02 AM,01/19/2016 06:48:00 AM,01/19/2016 06:54:00 AM,01/19/2016 07:04:38 AM,01/19/2016 07:24:14 AM,Code 2 Transport,01/19/2016 07:45:39 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160190532-89 +132310362,E11,13078152,Structure Fire,08/19/2013,08/19/2013,08/19/2013 07:39:39 PM,08/19/2013 07:39:40 PM,08/19/2013 07:40:06 PM,08/19/2013 07:41:29 PM,08/19/2013 07:44:07 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 07:51:56 PM,800 Block of SHOTWELL ST,SF,94110,B06,7,544,3,3,3,true,Alarm,1,ENGINE,2,6,9,Mission,"(37.7548379824748, -122.415327726268)",132310362-E11 +121540163,KM01,12050960,Medical Incident,06/02/2012,06/02/2012,06/02/2012 12:12:04 PM,06/02/2012 12:13:06 PM,06/02/2012 12:13:22 PM,06/02/2012 12:14:02 PM,06/02/2012 12:18:05 PM,06/02/2012 12:38:41 PM,06/02/2012 12:45:22 PM,Code 3 Transport,06/02/2012 01:57:51 PM,2200 Block of 20TH AVE,SF,94116,B08,40,7433,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7457979821826, -122.477028812348)",121540163-KM01 +160501301,71,16020046,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:10:24 AM,02/19/2016 11:10:24 AM,02/19/2016 11:11:23 AM,02/19/2016 11:12:03 AM,02/19/2016 11:15:58 AM,02/19/2016 11:35:57 AM,02/19/2016 11:58:13 AM,Code 2 Transport,02/19/2016 12:48:18 PM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",160501301-71 +160483508,88,16019496,Medical Incident,02/17/2016,02/17/2016,02/17/2016 07:48:26 PM,02/17/2016 07:48:50 PM,02/17/2016 07:50:44 PM,02/17/2016 07:50:44 PM,02/17/2016 08:05:07 PM,02/17/2016 08:10:35 PM,02/17/2016 08:23:19 PM,Code 2 Transport,02/17/2016 09:05:27 PM,GOUGH ST/UNION ST,San Francisco,94123,B04,38,3246,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7981345815713, -122.427268975305)",160483508-88 +133260270,B06,13110790,Confined Space / Structure Collapse,11/22/2013,11/22/2013,11/22/2013 04:41:58 PM,11/22/2013 04:43:25 PM,11/22/2013 04:43:37 PM,11/22/2013 04:44:38 PM,11/22/2013 04:48:14 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 04:49:14 PM,RICHLAND AV/MIGUEL ST,SF,94110,B06,26,8133,3,3,3,false,Fire,1,CHIEF,5,6,8,Glen Park,"(37.7365283839787, -122.426990743386)",133260270-B06 +103130236,81,10100386,Medical Incident,11/09/2010,11/09/2010,11/09/2010 02:29:27 PM,11/09/2010 02:31:34 PM,11/09/2010 02:31:59 PM,11/09/2010 02:32:05 PM,11/09/2010 02:35:31 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/09/2010 02:52:43 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",103130236-81 +111200398,E08,11039777,Structure Fire,04/30/2011,04/30/2011,04/30/2011 11:31:45 PM,04/30/2011 11:33:40 PM,04/30/2011 11:34:15 PM,04/30/2011 11:36:03 PM,04/30/2011 11:44:32 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 11:46:30 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,8,3,6,South of Market,"(37.7791674218963, -122.406346425632)",111200398-E08 +132660300,79,13090346,Medical Incident,09/23/2013,09/23/2013,09/23/2013 04:57:42 PM,09/23/2013 04:57:58 PM,09/23/2013 05:00:50 PM,09/23/2013 05:01:00 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,04/25/2016 01:50:37 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132660300-79 +160433253,AM22,16017442,Medical Incident,02/12/2016,02/12/2016,02/12/2016 07:41:40 PM,02/12/2016 07:43:34 PM,02/12/2016 07:43:47 PM,02/12/2016 07:44:49 PM,02/12/2016 07:48:46 PM,02/12/2016 08:11:34 PM,02/12/2016 08:11:38 PM,Code 2 Transport,02/12/2016 08:35:04 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160433253-AM22 +160040473,KM03,16001472,Medical Incident,01/04/2016,01/03/2016,01/04/2016 05:55:13 AM,01/04/2016 05:57:20 AM,01/04/2016 05:58:19 AM,01/04/2016 05:58:52 AM,01/04/2016 06:07:21 AM,01/04/2016 06:16:43 AM,01/04/2016 06:23:56 AM,Code 2 Transport,01/04/2016 06:51:43 AM,2800 Block of JONES ST,San Francisco,94133,B01,28,1521,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8075513993457, -122.417284885705)",160040473-KM03 +140830039,KM03,14027876,Medical Incident,03/24/2014,03/23/2014,03/24/2014 04:49:21 AM,03/24/2014 04:50:35 AM,03/24/2014 04:52:42 AM,03/24/2014 04:53:17 AM,03/24/2014 04:58:20 AM,03/24/2014 05:16:17 AM,03/24/2014 05:35:15 AM,Code 2 Transport,03/24/2014 06:01:55 AM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",140830039-KM03 +120650004,E29,12021336,Alarms,03/05/2012,03/04/2012,03/05/2012 12:11:55 AM,03/05/2012 12:12:58 AM,03/05/2012 12:13:04 AM,03/05/2012 12:14:38 AM,03/05/2012 12:15:47 AM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Fire,03/05/2012 12:24:51 AM,300 Block of DE HARO ST,SF,94103,B03,29,2413,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission Bay,"(37.7654817940477, -122.401728756227)",120650004-E29 +123160201,RB1,12105176,Water Rescue,11/11/2012,11/11/2012,11/11/2012 01:54:01 PM,11/11/2012 01:54:57 PM,11/11/2012 01:55:37 PM,11/11/2012 01:59:06 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/11/2012 02:51:57 PM,600 Block of INNES AVE,SF,94124,B10,25,6663,3,3,3,false,Fire,1,SUPPORT,8,10,10,Bayview Hunters Point,"(37.7293845339796, -122.371035028973)",123160201-RB1 +160522196,87,16020863,Medical Incident,02/21/2016,02/21/2016,02/21/2016 03:48:50 PM,02/21/2016 03:49:28 PM,02/21/2016 03:49:58 PM,02/21/2016 03:50:08 PM,02/21/2016 03:54:56 PM,02/21/2016 04:16:23 PM,02/21/2016 04:31:21 PM,Code 2 Transport,02/21/2016 05:10:38 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160522196-87 +140860192,T02,14028956,Structure Fire,03/27/2014,03/27/2014,03/27/2014 02:08:58 PM,03/27/2014 02:08:58 PM,03/27/2014 02:09:08 PM,03/27/2014 02:11:25 PM,03/27/2014 02:11:43 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 02:12:01 PM,GRANT AV/JACKSON ST,SAN FRANCISCO,94133,B01,2,1312,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",140860192-T02 +133010159,E01,13102265,Alarms,10/28/2013,10/28/2013,10/28/2013 11:08:48 AM,10/28/2013 11:09:29 AM,10/28/2013 11:10:01 AM,10/28/2013 11:11:20 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 11:13:54 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",133010159-E01 +121190208,T11,12039499,Structure Fire,04/28/2012,04/28/2012,04/28/2012 02:08:13 PM,04/28/2012 02:08:14 PM,04/28/2012 02:08:28 PM,04/28/2012 02:10:37 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 02:11:31 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",121190208-T11 +131280075,AM02,13043189,Medical Incident,05/08/2013,05/07/2013,05/08/2013 06:51:47 AM,05/08/2013 06:55:29 AM,05/08/2013 06:56:10 AM,05/08/2013 06:57:03 AM,05/08/2013 07:06:13 AM,05/08/2013 07:20:49 AM,05/08/2013 07:45:31 AM,Code 2 Transport,05/08/2013 08:12:23 AM,MONTGOMERY ST/JACKSON ST,SF,94111,B01,13,1232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7964174850191, -122.403496710989)",131280075-AM02 +103620109,T07,10116047,Structure Fire,12/28/2010,12/28/2010,12/28/2010 10:02:06 AM,12/28/2010 10:03:55 AM,12/28/2010 10:06:24 AM,12/28/2010 10:09:34 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 10:12:54 AM,400 Block of SANCHEZ ST,SF,94114,B05,6,5252,3,3,3,false,,1,TRUCK,8,5,8,Castro/Upper Market,"(37.7615507739315, -122.430680858737)",103620109-T07 +122740147,T06,12090355,Structure Fire,09/30/2012,09/30/2012,09/30/2012 11:38:49 AM,09/30/2012 11:39:02 AM,09/30/2012 11:39:12 AM,09/30/2012 11:40:42 AM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,Other,09/30/2012 11:42:08 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7741251002903, -122.418810211803)",122740147-T06 +140230348,T11,14008003,Other,01/23/2014,01/23/2014,01/23/2014 10:49:55 PM,01/23/2014 10:52:02 PM,01/23/2014 10:52:19 PM,01/23/2014 10:54:35 PM,01/23/2014 11:03:59 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 11:07:41 PM,4000 Block of 26TH ST,SF,94131,B06,11,5546,3,3,3,true,Alarm,1,TRUCK,2,6,8,Noe Valley,"(37.7482411052181, -122.430446357448)",140230348-T11 +160880830,82,16034857,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:22:17 AM,03/28/2016 08:24:43 AM,03/28/2016 08:25:08 AM,03/28/2016 08:25:40 AM,03/28/2016 08:43:01 AM,03/28/2016 08:55:35 AM,03/28/2016 09:44:29 AM,Code 2 Transport,03/28/2016 10:04:39 AM,200 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7914426036611, -122.40240755277)",160880830-82 +121120059,B04,12037018,Alarms,04/21/2012,04/20/2012,04/21/2012 03:05:15 AM,04/21/2012 03:06:40 AM,04/21/2012 03:06:47 AM,04/21/2012 03:08:14 AM,04/21/2012 03:12:41 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 03:19:26 AM,2000 Block of LOMBARD ST,SF,94123,B04,16,3461,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.7998309235227, -122.435201947883)",121120059-B04 +140790316,E13,14026829,Structure Fire,03/20/2014,03/20/2014,03/20/2014 06:41:22 PM,03/20/2014 06:41:22 PM,03/20/2014 06:41:38 PM,03/20/2014 06:42:27 PM,03/20/2014 06:44:31 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Fire,03/20/2014 06:44:52 PM,GRANT AV/CALIFORNIA ST,SAN FRANCISCO,94108,B01,13,1314,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",140790316-E13 +140600425,96,14020475,Medical Incident,03/01/2014,03/01/2014,03/01/2014 11:54:34 PM,03/01/2014 11:54:49 PM,03/01/2014 11:56:21 PM,03/01/2014 11:56:35 PM,03/02/2014 12:05:16 AM,03/02/2014 12:28:48 AM,03/02/2014 12:49:23 AM,Code 2 Transport,03/02/2014 01:16:37 AM,MISSION ST/WASHBURN ST,SF,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7758897020189, -122.415127954003)",140600425-96 +122030129,54,12067419,Medical Incident,07/21/2012,07/21/2012,07/21/2012 10:13:12 AM,07/21/2012 10:14:04 AM,07/21/2012 10:14:20 AM,07/21/2012 10:14:24 AM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,04/25/2016 01:57:37 PM,16TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",122030129-54 +121820148,E17,12060572,Medical Incident,06/30/2012,06/30/2012,06/30/2012 11:15:07 AM,06/30/2012 11:17:29 AM,06/30/2012 11:18:11 AM,06/30/2012 11:19:59 AM,06/30/2012 11:23:06 AM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,06/30/2012 11:40:26 AM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",121820148-E17 +102240334,E18,10070677,Structure Fire,08/12/2010,08/12/2010,08/12/2010 09:39:19 PM,08/12/2010 09:39:19 PM,08/12/2010 09:39:41 PM,08/12/2010 09:40:27 PM,08/12/2010 09:42:48 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Fire,08/12/2010 09:43:29 PM,27TH AV/ORTEGA ST,SF,94116,B08,18,7473,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7519981922137, -122.48491484956)",102240334-E18 +122180223,E01,12072344,Structure Fire,08/05/2012,08/05/2012,08/05/2012 02:50:17 PM,08/05/2012 02:50:17 PM,08/05/2012 02:50:27 PM,08/05/2012 02:51:15 PM,08/05/2012 02:54:15 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 02:54:28 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122180223-E01 +140660306,KM10,14022401,Medical Incident,03/07/2014,03/07/2014,03/07/2014 05:15:44 PM,03/07/2014 05:15:51 PM,03/07/2014 05:23:47 PM,03/07/2014 05:25:13 PM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Code 2 Transport,03/07/2014 05:26:02 PM,CYRIL MAGNIN ST/EDDY ST,SAN FRANCISCO,94102,B03,1,1453,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",140660306-KM10 +122120352,E36,12070514,Medical Incident,07/30/2012,07/30/2012,07/30/2012 08:53:48 PM,07/30/2012 08:55:58 PM,07/30/2012 08:56:14 PM,07/30/2012 08:58:19 PM,07/30/2012 09:00:09 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 09:01:38 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",122120352-E36 +131900265,87,13064780,Medical Incident,07/09/2013,07/09/2013,07/09/2013 04:00:17 PM,07/09/2013 04:02:02 PM,07/09/2013 04:02:18 PM,07/09/2013 04:02:38 PM,07/09/2013 04:09:59 PM,07/09/2013 04:45:21 PM,07/09/2013 04:57:06 PM,Code 2 Transport,07/09/2013 05:39:42 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",131900265-87 +160362195,AM02,16014280,Medical Incident,02/05/2016,02/05/2016,02/05/2016 02:02:24 PM,02/05/2016 02:04:11 PM,02/05/2016 02:04:57 PM,02/05/2016 02:05:27 PM,02/05/2016 02:11:07 PM,02/05/2016 02:46:20 PM,02/05/2016 02:46:22 PM,Code 2 Transport,02/05/2016 03:12:17 PM,1000 Block of EDDY ST,San Francisco,94109,B02,5,3262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",160362195-AM02 +121010368,E09,12033643,Traffic Collision,04/10/2012,04/10/2012,04/10/2012 09:33:12 PM,04/10/2012 09:35:21 PM,04/10/2012 09:35:41 PM,04/10/2012 09:47:20 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 10:06:02 PM,0 Block of 5TH ST,SF,94103,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,South of Market,"(37.7831860531538, -122.407149119811)",121010368-E09 +121200153,E03,12039802,Medical Incident,04/29/2012,04/29/2012,04/29/2012 10:20:44 AM,04/29/2012 10:22:47 AM,04/29/2012 10:22:57 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 10:28:53 AM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",121200153-E03 +113320159,E51,11109948,Medical Incident,11/28/2011,11/28/2011,11/28/2011 11:37:54 AM,11/28/2011 11:39:21 AM,11/28/2011 11:39:36 AM,11/28/2011 11:40:33 AM,11/28/2011 11:41:23 AM,04/25/2016 02:01:26 PM,04/25/2016 02:01:26 PM,Other,11/28/2011 11:53:55 AM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",113320159-E51 +160241459,81,16009507,Medical Incident,01/24/2016,01/24/2016,01/24/2016 12:00:39 PM,01/24/2016 12:00:39 PM,01/24/2016 12:00:39 PM,01/24/2016 12:00:39 PM,01/24/2016 12:00:39 PM,01/24/2016 12:09:23 PM,01/24/2016 12:11:47 PM,Code 2 Transport,01/24/2016 01:03:22 PM,CALIFORNIA ST/HYDE ST,San Francisco,94109,B99,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160241459-81 +123050482,T14,12101443,Structure Fire,10/31/2012,10/31/2012,10/31/2012 09:33:16 PM,10/31/2012 09:34:27 PM,10/31/2012 09:34:59 PM,10/31/2012 09:36:28 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 09:39:33 PM,4700 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,false,Alarm,1,TRUCK,9,7,1,Inner Richmond,"(37.7806274376634, -122.470163577078)",123050482-T14 +160333375,93,16013163,Medical Incident,02/02/2016,02/02/2016,02/02/2016 09:37:46 PM,02/02/2016 09:38:51 PM,02/02/2016 09:39:08 PM,02/02/2016 09:39:47 PM,02/02/2016 09:42:30 PM,02/02/2016 10:00:10 PM,02/02/2016 10:07:58 PM,Code 2 Transport,02/02/2016 10:35:41 PM,100 Block of LINDA ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7594094951426, -122.422887066133)",160333375-93 +160071518,55,16002818,Medical Incident,01/07/2016,01/07/2016,01/07/2016 11:52:46 AM,01/07/2016 11:54:29 AM,01/07/2016 11:54:59 AM,01/07/2016 11:55:13 AM,01/07/2016 12:00:49 PM,01/07/2016 12:29:15 PM,01/07/2016 12:47:42 PM,Code 2 Transport,01/07/2016 01:31:58 PM,3500 Block of FULTON ST,San Francisco,94118,B07,31,7144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7732879538728, -122.469631432178)",160071518-55 +102720109,E17,10086307,Medical Incident,09/29/2010,09/29/2010,09/29/2010 09:12:58 AM,09/29/2010 09:15:38 AM,09/29/2010 09:16:04 AM,09/29/2010 09:16:58 AM,09/29/2010 09:18:42 AM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Unable to Locate,09/29/2010 09:23:43 AM,0 Block of ROSIE LEE LN,SF,94124,B10,17,6643,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7320281293955, -122.380006545606)",102720109-E17 +123570092,E03,12119434,Structure Fire,12/22/2012,12/22/2012,12/22/2012 08:22:45 AM,12/22/2012 08:22:45 AM,12/22/2012 08:23:07 AM,12/22/2012 08:24:00 AM,12/22/2012 08:26:53 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 08:27:00 AM,JONES ST/TURK ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",123570092-E03 +102420290,88,10076408,Medical Incident,08/30/2010,08/30/2010,08/30/2010 05:46:00 PM,08/30/2010 05:46:56 PM,08/30/2010 05:47:12 PM,08/30/2010 05:47:19 PM,08/30/2010 06:14:41 PM,08/30/2010 06:16:14 PM,08/30/2010 06:28:29 PM,Code 2 Transport,08/30/2010 07:03:02 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",102420290-88 +113030036,E43,11100430,Medical Incident,10/30/2011,10/29/2011,10/30/2011 01:01:13 AM,10/30/2011 01:01:38 AM,10/30/2011 01:07:19 AM,10/30/2011 01:09:13 AM,10/30/2011 01:11:10 AM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 01:22:36 AM,300 Block of EDINBURGH ST,SF,94112,B09,43,6133,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7235920979291, -122.430301878327)",113030036-E43 +130950358,E21,13031962,Structure Fire,04/05/2013,04/05/2013,04/05/2013 08:15:02 PM,04/05/2013 08:15:02 PM,04/05/2013 08:15:08 PM,04/05/2013 08:16:08 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,Other,04/05/2013 08:18:47 PM,400 Block of MASONIC AVE,SF,94118,B05,21,4462,3,3,3,true,Alarm,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7772140317398, -122.446684854006)",130950358-E21 +160572302,71,16022812,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:25:35 PM,02/26/2016 03:26:42 PM,02/26/2016 03:27:52 PM,02/26/2016 03:28:08 PM,02/26/2016 03:50:32 PM,02/26/2016 03:56:33 PM,02/26/2016 04:23:33 PM,Code 2 Transport,02/26/2016 04:34:22 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7842371111665, -122.440760813886)",160572302-71 +102970241,E05,10094811,Alarms,10/24/2010,10/24/2010,10/24/2010 12:47:58 PM,10/24/2010 12:49:51 PM,10/24/2010 12:50:02 PM,10/24/2010 12:51:12 PM,10/24/2010 12:51:49 PM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 01:16:17 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",102970241-E05 +160230693,65,16009067,Medical Incident,01/23/2016,01/22/2016,01/23/2016 06:27:17 AM,01/23/2016 06:28:29 AM,01/23/2016 06:28:48 AM,01/23/2016 06:28:56 AM,01/23/2016 06:33:16 AM,01/23/2016 07:02:40 AM,01/23/2016 07:21:09 AM,Code 2 Transport,01/23/2016 08:09:32 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160230693-65 +132890152,KM09,13098271,Medical Incident,10/16/2013,10/16/2013,10/16/2013 11:41:40 AM,10/16/2013 11:44:28 AM,10/16/2013 11:46:26 AM,10/16/2013 11:50:56 AM,10/16/2013 12:03:06 PM,10/16/2013 12:22:30 PM,10/16/2013 12:22:38 PM,Code 2 Transport,10/16/2013 12:46:37 PM,2600 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,1,1,2,false,Non Life-threatening,1,PRIVATE,1,10,9,Portola,"(37.7282520210187, -122.403780725663)",132890152-KM09 +160490366,77,16019609,Medical Incident,02/18/2016,02/17/2016,02/18/2016 05:51:36 AM,02/18/2016 05:53:55 AM,02/18/2016 05:54:28 AM,02/18/2016 05:54:55 AM,02/18/2016 06:03:57 AM,02/18/2016 06:19:48 AM,02/18/2016 06:29:18 AM,Code 2 Transport,02/18/2016 06:55:21 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",160490366-77 +131850445,E01,13063273,Watercraft in Distress,07/04/2013,07/04/2013,07/04/2013 11:54:03 PM,07/04/2013 11:57:21 PM,07/05/2013 12:01:49 AM,07/05/2013 12:04:36 AM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/05/2013 12:06:26 AM,100 Block of CARGO WAY,SF,94124,B10,25,994,3,3,3,true,Fire,1,ENGINE,16,10,10,Bayview Hunters Point,"(37.7420919993497, -122.379931669849)",131850445-E01 +140500048,E07,14016877,Medical Incident,02/19/2014,02/18/2014,02/19/2014 06:51:54 AM,02/19/2014 06:53:50 AM,02/19/2014 06:55:43 AM,02/19/2014 06:56:35 AM,02/19/2014 07:00:08 AM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,No Merit,02/19/2014 07:04:16 AM,17TH ST/MISSION ST,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7634292740134, -122.419512736792)",140500048-E07 +160391531,KM05,16015595,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:03:47 PM,02/08/2016 12:05:22 PM,02/08/2016 12:07:08 PM,02/08/2016 12:07:42 PM,02/08/2016 12:19:20 PM,02/08/2016 12:23:22 PM,02/08/2016 12:41:00 PM,Code 2 Transport,02/08/2016 01:27:48 PM,600 Block of LOMBARD ST,San Francisco,94133,B01,28,1346,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8028765476121, -122.412200636927)",160391531-KM05 +112870278,RC1,11095217,Medical Incident,10/14/2011,10/14/2011,10/14/2011 03:06:48 PM,10/14/2011 03:07:20 PM,10/14/2011 03:08:02 PM,10/14/2011 03:08:33 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 03:12:40 PM,600 Block of POST ST,SF,94102,B01,3,1451,E,2,2,true,,1,RESCUE CAPTAIN,3,1,3,Tenderloin,"(37.7877243194386, -122.412426603479)",112870278-RC1 +160680511,82,16027005,Medical Incident,03/08/2016,03/07/2016,03/08/2016 07:16:05 AM,03/08/2016 07:17:42 AM,03/08/2016 07:18:35 AM,03/08/2016 07:21:58 AM,03/08/2016 07:45:18 AM,03/08/2016 07:47:27 AM,03/08/2016 08:02:12 AM,Code 3 Transport,03/08/2016 08:19:03 AM,0 Block of SANTA FE AVE,San Francisco,94124,B10,42,6363,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340839384311, -122.400850244004)",160680511-82 +120450236,KM02,12015011,Medical Incident,02/14/2012,02/14/2012,02/14/2012 03:29:13 PM,02/14/2012 03:30:20 PM,02/14/2012 03:31:00 PM,02/14/2012 03:31:50 PM,02/14/2012 03:57:18 PM,02/14/2012 04:12:01 PM,02/14/2012 04:48:43 PM,Code 2 Transport,02/14/2012 05:24:21 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",120450236-KM02 +112180202,D3,11072073,Structure Fire,08/06/2011,08/06/2011,08/06/2011 12:36:25 PM,08/06/2011 12:38:29 PM,08/06/2011 12:38:53 PM,08/06/2011 12:39:48 PM,08/06/2011 12:41:19 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/06/2011 12:47:34 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,3,3,3,false,,1,CHIEF,3,6,8,Mission,"(37.7580957160416, -122.421301773834)",112180202-D3 +110720230,96,11023757,Traffic Collision,03/13/2011,03/13/2011,03/13/2011 02:10:12 PM,03/13/2011 02:11:25 PM,03/13/2011 02:12:17 PM,03/13/2011 02:12:32 PM,03/13/2011 02:17:30 PM,03/13/2011 02:52:51 PM,03/13/2011 03:11:11 PM,Other,03/13/2011 04:01:36 PM,19TH AV/SANTIAGO ST,SF,94116,B08,40,7416,3,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7449187187769, -122.475773242641)",110720230-96 +121120071,88,12037030,Medical Incident,04/21/2012,04/20/2012,04/21/2012 03:45:02 AM,04/21/2012 03:47:12 AM,04/21/2012 03:47:22 AM,04/21/2012 03:47:33 AM,04/21/2012 04:00:49 AM,04/21/2012 04:04:56 AM,04/21/2012 04:06:55 AM,Code 2 Transport,04/21/2012 03:54:06 AM,0 Block of 7TH ST,SF,94103,B02,1,2315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",121120071-88 +130010496,KM02,13000410,Medical Incident,01/01/2013,01/01/2013,01/01/2013 06:57:16 PM,01/01/2013 06:57:16 PM,01/01/2013 06:57:45 PM,01/01/2013 06:58:51 PM,01/01/2013 07:05:53 PM,01/01/2013 07:16:23 PM,01/01/2013 07:22:22 PM,Code 2 Transport,01/01/2013 07:44:14 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",130010496-KM02 +160900233,AM24,16035552,Medical Incident,03/30/2016,03/29/2016,03/30/2016 02:26:22 AM,03/30/2016 02:27:17 AM,03/30/2016 02:27:40 AM,03/30/2016 02:28:32 AM,03/30/2016 02:37:15 AM,03/30/2016 02:56:58 AM,03/30/2016 03:06:11 AM,Code 2 Transport,03/30/2016 03:34:49 AM,0 Block of EMERSON ST,San Francisco,94118,B05,10,4455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7830736887057, -122.448251712623)",160900233-AM24 +160563655,71,16022538,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:51:25 PM,02/25/2016 08:51:25 PM,02/25/2016 08:51:32 PM,02/25/2016 08:51:43 PM,02/25/2016 08:55:17 PM,02/25/2016 09:08:39 PM,02/25/2016 09:36:08 PM,Code 2 Transport,02/25/2016 10:05:31 PM,1300 Block of 9TH AVE,San Francisco,94122,B08,22,7334,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.763102976167, -122.466314668643)",160563655-71 +112850215,T15,11094401,Structure Fire,10/12/2011,10/12/2011,10/12/2011 01:04:18 PM,10/12/2011 01:04:18 PM,10/12/2011 01:04:31 PM,10/12/2011 01:05:43 PM,10/12/2011 01:08:21 PM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 01:08:58 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,TRUCK,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",112850215-T15 +110540200,B02,11017828,Alarms,02/23/2011,02/23/2011,02/23/2011 01:24:28 PM,02/23/2011 01:25:29 PM,02/23/2011 01:25:57 PM,02/23/2011 01:26:35 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,Other,02/23/2011 01:44:53 PM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,CHIEF,3,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",110540200-B02 +112080202,E08,11068704,Outside Fire,07/27/2011,07/27/2011,07/27/2011 02:05:22 PM,07/27/2011 02:05:23 PM,07/27/2011 02:05:38 PM,07/27/2011 02:06:47 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 02:11:01 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,true,,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",112080202-E08 +111200368,B04,11039748,Alarms,04/30/2011,04/30/2011,04/30/2011 09:39:25 PM,04/30/2011 09:41:19 PM,04/30/2011 09:41:45 PM,04/30/2011 09:43:24 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 09:50:08 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,3,3,3,false,,1,CHIEF,2,4,2,Marina,"(37.8058923703038, -122.431246520303)",111200368-B04 +102960363,E08,10094589,Structure Fire,10/23/2010,10/23/2010,10/23/2010 11:32:22 PM,10/23/2010 11:32:22 PM,10/23/2010 11:32:30 PM,10/23/2010 11:33:38 PM,10/23/2010 11:36:08 PM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/23/2010 11:36:13 PM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7820242662358, -122.401159719509)",102960363-E08 +103490381,B01,10112093,Alarms,12/15/2010,12/15/2010,12/15/2010 11:43:57 PM,12/15/2010 11:44:50 PM,12/15/2010 11:46:20 PM,12/15/2010 11:47:48 PM,12/15/2010 11:50:03 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Fire,12/15/2010 11:58:09 PM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,B,B,2,false,,1,CHIEF,1,1,3,North Beach,"(37.8061515935611, -122.418537074676)",103490381-B01 +113400225,E02,11112725,Traffic Collision,12/06/2011,12/06/2011,12/06/2011 01:54:56 PM,12/06/2011 01:56:45 PM,12/06/2011 01:57:02 PM,12/06/2011 01:58:32 PM,12/06/2011 02:00:20 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/06/2011 02:01:07 PM,POLK ST/VALLEJO ST,SF,94109,B04,41,3126,3,3,3,true,,1,ENGINE,2,4,3,Russian Hill,"(37.7968997476834, -122.42196091068)",113400225-E02 +120440146,88,12014671,Medical Incident,02/13/2012,02/13/2012,02/13/2012 11:52:25 AM,02/13/2012 11:53:36 AM,02/13/2012 11:53:47 AM,02/13/2012 11:54:01 AM,02/13/2012 12:05:14 PM,02/13/2012 12:35:19 PM,02/13/2012 12:41:12 PM,Code 2 Transport,02/13/2012 01:28:31 PM,1300 Block of PIERCE ST,SF,94115,B05,5,3647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",120440146-88 +160822009,75,16032588,Medical Incident,03/22/2016,03/22/2016,03/22/2016 01:47:01 PM,03/22/2016 01:48:31 PM,03/22/2016 01:49:18 PM,03/22/2016 01:49:37 PM,03/22/2016 02:09:58 PM,03/22/2016 02:18:20 PM,03/22/2016 02:30:34 PM,Code 2 Transport,03/22/2016 03:06:26 PM,1300 Block of MASON ST,San Francisco,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7960620679909, -122.411743045233)",160822009-75 +160803080,60,16031928,Medical Incident,03/20/2016,03/20/2016,03/20/2016 07:25:16 PM,03/20/2016 07:26:55 PM,03/20/2016 07:27:36 PM,03/20/2016 07:27:44 PM,03/20/2016 07:51:09 PM,03/20/2016 07:51:16 PM,03/20/2016 07:59:46 PM,Code 2 Transport,03/20/2016 08:43:40 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160803080-60 +130580163,77,13019432,Medical Incident,02/27/2013,02/27/2013,02/27/2013 11:43:53 AM,02/27/2013 11:46:34 AM,02/27/2013 11:48:12 AM,02/27/2013 11:49:04 AM,02/27/2013 12:00:55 PM,02/27/2013 12:18:51 PM,02/27/2013 12:33:15 PM,Code 2 Transport,02/27/2013 01:03:10 PM,400 Block of MARKET ST,SF,94105,B03,13,2143,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7912932514009, -122.398614610411)",130580163-77 +111180173,T13,11038915,Medical Incident,04/28/2011,04/28/2011,04/28/2011 12:54:00 PM,04/28/2011 12:54:20 PM,04/28/2011 12:54:43 PM,04/28/2011 12:55:34 PM,04/28/2011 12:58:11 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 01:12:21 PM,500 Block of BATTERY ST,SF,94111,B01,13,1156,3,3,3,false,,1,TRUCK,1,1,3,Chinatown,"(37.7963165979031, -122.40065165037)",111180173-T13 +112890125,KM15,11095827,Medical Incident,10/16/2011,10/16/2011,10/16/2011 09:45:26 AM,10/16/2011 09:46:11 AM,10/16/2011 09:46:29 AM,10/16/2011 09:47:48 AM,10/16/2011 09:55:17 AM,10/16/2011 10:07:41 AM,10/16/2011 10:15:45 AM,Code 2 Transport,10/16/2011 10:33:46 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",112890125-KM15 +112210090,E03,11072932,Medical Incident,08/09/2011,08/09/2011,08/09/2011 09:41:01 AM,08/09/2011 09:42:25 AM,08/09/2011 09:43:22 AM,08/09/2011 09:44:44 AM,08/09/2011 09:48:25 AM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 09:53:26 AM,1800 Block of BUSH ST,SF,94109,B04,38,3363,3,3,3,true,,1,ENGINE,2,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",112210090-E03 +111500063,78,11049603,Medical Incident,05/30/2011,05/29/2011,05/30/2011 05:39:40 AM,05/30/2011 05:40:29 AM,05/30/2011 05:40:45 AM,05/30/2011 05:41:40 AM,05/30/2011 05:44:50 AM,05/30/2011 06:22:49 AM,05/30/2011 06:39:24 AM,Code 2 Transport,05/30/2011 07:08:31 AM,3000 Block of PIERCE ST,SF,94123,B04,16,3656,2,2,2,true,,1,MEDIC,1,4,2,Marina,"(37.7980766457002, -122.438993733646)",111500063-78 +110150182,KM01,11004994,Medical Incident,01/15/2011,01/15/2011,01/15/2011 01:00:24 PM,01/15/2011 01:01:38 PM,01/15/2011 01:02:39 PM,01/15/2011 01:04:13 PM,01/15/2011 01:08:29 PM,01/15/2011 01:33:24 PM,01/15/2011 01:40:59 PM,Code 2 Transport,01/15/2011 02:10:46 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,2,2,2,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",110150182-KM01 +160240008,89,16009376,Medical Incident,01/24/2016,01/23/2016,01/24/2016 12:01:54 AM,01/24/2016 12:01:54 AM,01/24/2016 12:02:56 AM,01/24/2016 12:04:24 AM,01/24/2016 12:17:29 AM,01/24/2016 12:27:27 AM,01/24/2016 12:32:52 AM,Code 2 Transport,01/24/2016 01:09:59 AM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160240008-89 +112420077,AM02,11079746,Medical Incident,08/30/2011,08/30/2011,08/30/2011 08:37:07 AM,08/30/2011 08:37:37 AM,08/30/2011 08:38:05 AM,08/30/2011 08:38:40 AM,08/30/2011 08:47:04 AM,08/30/2011 08:55:41 AM,08/30/2011 09:25:40 AM,Code 2 Transport,08/30/2011 10:06:57 AM,300 Block of SAN FERNANDO WAY,SF,94127,B09,39,8554,3,3,3,false,,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7310473926289, -122.469631711708)",112420077-AM02 +160500935,53,16020012,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:16:27 AM,02/19/2016 09:19:13 AM,02/19/2016 09:19:37 AM,02/19/2016 09:20:01 AM,02/19/2016 09:33:37 AM,02/19/2016 10:02:10 AM,02/19/2016 10:16:03 AM,Code 2 Transport,02/19/2016 10:52:35 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160500935-53 +131380043,E18,13046507,Medical Incident,05/18/2013,05/17/2013,05/18/2013 02:19:35 AM,05/18/2013 02:21:58 AM,05/18/2013 02:22:39 AM,05/18/2013 02:25:33 AM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/18/2013 02:29:15 AM,2600 Block of 25TH AVE,SF,94116,B08,40,7462,3,3,3,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7384141711124, -122.481745348212)",131380043-E18 +112290271,E12,11075742,Alarms,08/17/2011,08/17/2011,08/17/2011 06:38:47 PM,08/17/2011 06:39:11 PM,08/17/2011 06:39:23 PM,08/17/2011 06:40:55 PM,08/17/2011 06:42:33 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 06:51:50 PM,1400 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.7614340333644, -122.46176630545)",112290271-E12 +103230033,B02,10103361,Structure Fire,11/19/2010,11/18/2010,11/19/2010 03:53:15 AM,11/19/2010 03:54:37 AM,11/19/2010 03:54:53 AM,11/19/2010 03:56:32 AM,11/19/2010 03:59:16 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/19/2010 04:08:43 AM,400 Block of BAKER ST,SF,94117,B05,21,4253,3,3,3,false,,1,CHIEF,4,5,5,Hayes Valley,"(37.7750447950502, -122.441136915225)",103230033-B02 +103390360,E17,10108675,Medical Incident,12/05/2010,12/05/2010,12/05/2010 10:46:03 PM,12/05/2010 10:46:03 PM,12/05/2010 10:46:19 PM,12/05/2010 10:47:23 PM,12/05/2010 10:49:34 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 11:08:25 PM,JENNINGS ST/FITZGERALD AV,SF,94124,B10,17,6614,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7220347181097, -122.393171960162)",103390360-E17 +122530133,E12,12083612,Medical Incident,09/09/2012,09/09/2012,09/09/2012 09:45:30 AM,09/09/2012 09:46:04 AM,09/09/2012 09:46:21 AM,09/09/2012 09:47:18 AM,09/09/2012 09:49:09 AM,09/09/2012 10:19:55 AM,09/09/2012 10:22:36 AM,Other,09/09/2012 10:34:57 AM,700 Block of ASHBURY ST,SF,94117,B05,12,5143,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7681560288269, -122.44648875825)",122530133-E12 +160573560,AM16,16022912,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:36:14 PM,02/26/2016 09:38:31 PM,02/26/2016 09:39:08 PM,02/26/2016 09:39:59 PM,02/26/2016 09:53:11 PM,02/26/2016 10:17:37 PM,02/26/2016 10:37:11 PM,Code 2 Transport,02/26/2016 11:00:58 PM,200 Block of THE EMBARCADERO,San Francisco,94111,B01,13,901,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",160573560-AM16 +123530343,E43,12118237,Medical Incident,12/18/2012,12/18/2012,12/18/2012 08:33:50 PM,12/18/2012 08:34:02 PM,12/18/2012 08:34:10 PM,12/18/2012 08:35:14 PM,12/18/2012 08:36:31 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/18/2012 08:55:51 PM,700 Block of EDINBURGH ST,SF,94112,B09,43,6135,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7173197736494, -122.434883626306)",123530343-E43 +130830308,79,13027882,Medical Incident,03/24/2013,03/24/2013,03/24/2013 09:39:34 PM,03/24/2013 09:42:30 PM,03/24/2013 09:46:15 PM,03/24/2013 09:48:01 PM,03/24/2013 09:55:13 PM,03/24/2013 10:11:26 PM,03/24/2013 10:21:07 PM,Code 2 Transport,03/24/2013 10:54:07 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",130830308-79 +111370093,E10,11045513,Alarms,05/17/2011,05/17/2011,05/17/2011 09:20:48 AM,05/17/2011 09:23:29 AM,05/17/2011 09:23:39 AM,05/17/2011 09:24:27 AM,05/17/2011 09:27:47 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Fire,05/17/2011 09:42:17 AM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7814695250492, -122.457208629229)",111370093-E10 +113130275,59,11104083,Medical Incident,11/09/2011,11/09/2011,11/09/2011 05:06:42 PM,11/09/2011 05:07:17 PM,11/09/2011 05:07:28 PM,11/09/2011 05:07:39 PM,11/09/2011 05:07:44 PM,11/09/2011 05:21:57 PM,11/09/2011 05:34:08 PM,Code 2 Transport,11/09/2011 06:05:57 PM,3RD ST/OAKDALE AV,SF,94124,B10,17,6515,E,E,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",113130275-59 +160770477,88,16030450,Medical Incident,03/17/2016,03/16/2016,03/17/2016 06:24:07 AM,03/17/2016 06:25:41 AM,03/17/2016 06:26:00 AM,03/17/2016 06:26:32 AM,03/17/2016 06:31:06 AM,03/17/2016 06:49:13 AM,03/17/2016 06:53:43 AM,Code 2 Transport,03/17/2016 07:34:35 AM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160770477-88 +160834265,KM03,16033188,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:17:16 PM,03/23/2016 11:19:06 PM,03/23/2016 11:19:36 PM,03/23/2016 11:23:05 PM,03/23/2016 11:27:07 PM,03/23/2016 11:32:38 PM,03/23/2016 11:52:40 PM,Code 2 Transport,03/24/2016 12:08:12 AM,TREAT AV/15TH ST,San Francisco,94103,B02,7,5245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7667509342148, -122.412829955565)",160834265-KM03 +123430363,T08,12114780,Administrative,12/08/2012,12/08/2012,12/08/2012 09:17:39 PM,12/08/2012 09:18:01 PM,12/08/2012 09:18:06 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Fire,12/08/2012 09:18:35 PM,0 Block of BLUXOME ST,SF,94107,B03,8,2223,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",123430363-T08 +133500412,B03,13119007,Alarms,12/16/2013,12/16/2013,12/16/2013 09:55:21 PM,12/16/2013 09:55:24 PM,12/16/2013 09:56:10 PM,12/16/2013 09:58:13 PM,12/16/2013 10:00:54 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/16/2013 10:04:48 PM,0 Block of OFARRELL ST,SF,94108,B01,1,1321,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.786735734759, -122.405883301385)",133500412-B03 +140630393,84,14021463,Medical Incident,03/04/2014,03/04/2014,03/04/2014 10:07:51 PM,03/04/2014 10:10:50 PM,03/04/2014 10:18:24 PM,03/04/2014 10:18:44 PM,03/04/2014 10:35:26 PM,03/04/2014 10:47:26 PM,03/04/2014 11:11:19 PM,Code 2 Transport,03/04/2014 11:17:40 PM,0 Block of SANTOS ST,SF,94134,B09,43,6244,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7113302525058, -122.418817616056)",140630393-84 +160320212,71,16012416,Medical Incident,02/01/2016,01/31/2016,02/01/2016 01:57:24 AM,02/01/2016 01:58:30 AM,02/01/2016 02:00:01 AM,02/01/2016 02:00:41 AM,02/01/2016 02:05:04 AM,02/01/2016 02:12:45 AM,02/01/2016 02:15:03 AM,Code 2 Transport,02/01/2016 03:01:37 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160320212-71 +140250173,89,14008561,Medical Incident,01/25/2014,01/25/2014,01/25/2014 01:15:34 PM,01/25/2014 01:17:13 PM,01/25/2014 01:20:02 PM,01/25/2014 01:20:10 PM,01/25/2014 01:41:32 PM,01/25/2014 02:00:04 PM,01/25/2014 02:14:27 PM,Code 2 Transport,01/25/2014 02:52:42 PM,1000 Block of LE CONTE AVE,SF,94124,B10,44,6575,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",140250173-89 +160810025,AM16,16031995,Medical Incident,03/21/2016,03/20/2016,03/21/2016 12:10:00 AM,03/21/2016 12:12:12 AM,03/21/2016 12:14:32 AM,03/21/2016 12:15:36 AM,03/21/2016 12:22:13 AM,03/21/2016 12:27:21 AM,03/21/2016 12:55:30 AM,Code 2 Transport,03/21/2016 01:17:14 AM,100 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",160810025-AM16 +140870097,88,14029208,Medical Incident,03/28/2014,03/28/2014,03/28/2014 09:02:46 AM,03/28/2014 09:06:33 AM,03/28/2014 09:07:12 AM,03/28/2014 09:07:37 AM,03/28/2014 09:25:38 AM,03/28/2014 09:40:37 AM,03/28/2014 09:49:39 AM,Code 2 Transport,03/28/2014 10:22:44 AM,400 Block of POST ST,SAN FRANCISCO,94102,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",140870097-88 +110020187,T06,11000664,Alarms,01/02/2011,01/02/2011,01/02/2011 01:26:48 PM,01/02/2011 01:28:01 PM,01/02/2011 01:28:12 PM,01/02/2011 01:29:39 PM,01/02/2011 01:30:37 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 01:35:46 PM,700 Block of 14TH ST,SF,94114,B02,6,5213,3,3,3,false,,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7676408778052, -122.429519876751)",110020187-T06 +102720026,66,10086237,Medical Incident,09/29/2010,09/28/2010,09/29/2010 01:46:31 AM,09/29/2010 01:47:21 AM,09/29/2010 01:47:53 AM,09/29/2010 01:48:27 AM,09/29/2010 01:55:03 AM,09/29/2010 02:06:33 AM,09/29/2010 02:13:21 AM,Code 2 Transport,09/29/2010 02:45:28 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,1,2,true,,1,MEDIC,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",102720026-66 +160402570,89,16016119,Medical Incident,02/09/2016,02/09/2016,02/09/2016 04:14:23 PM,02/09/2016 04:14:23 PM,02/09/2016 04:19:48 PM,02/09/2016 04:20:08 PM,02/09/2016 04:33:08 PM,02/09/2016 04:42:13 PM,02/09/2016 04:57:28 PM,Code 2 Transport,02/09/2016 05:30:15 PM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",160402570-89 +160644235,61,16025741,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:33:52 PM,03/04/2016 11:37:22 PM,03/04/2016 11:37:57 PM,03/04/2016 11:38:17 PM,03/04/2016 11:55:23 PM,03/05/2016 12:07:00 AM,03/05/2016 12:23:34 AM,Code 2 Transport,03/05/2016 12:59:48 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",160644235-61 +132710040,81,13091947,Medical Incident,09/28/2013,09/27/2013,09/28/2013 02:42:46 AM,09/28/2013 02:43:09 AM,09/28/2013 02:53:02 AM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,04/25/2016 01:50:33 PM,1800 Block of WALLER ST,SF,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",132710040-81 +111950077,E48,11064290,Traffic Collision,07/14/2011,07/14/2011,07/14/2011 09:05:33 AM,07/14/2011 09:08:48 AM,07/14/2011 09:09:50 AM,07/14/2011 09:11:39 AM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 09:12:21 AM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,2,2,2,true,,1,ENGINE,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",111950077-E48 +112440040,B03,11080332,Alarms,09/01/2011,08/31/2011,09/01/2011 03:42:33 AM,09/01/2011 03:44:04 AM,09/01/2011 03:44:11 AM,04/25/2016 02:02:54 PM,09/01/2011 03:50:38 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 03:47:27 AM,300 Block of HOWARD ST,SF,94105,B03,35,2124,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",112440040-B03 +140920198,77,14030922,Medical Incident,04/02/2014,04/02/2014,04/02/2014 12:54:04 PM,04/02/2014 12:55:28 PM,04/02/2014 12:55:42 PM,04/02/2014 12:56:14 PM,04/02/2014 01:01:07 PM,04/02/2014 01:14:15 PM,04/02/2014 01:21:06 PM,Code 2 Transport,04/02/2014 01:46:52 PM,500 Block of ELLIS ST,SAN FRANCISCO,94109,B02,3,1555,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",140920198-77 +130650265,AM18,13021823,Medical Incident,03/06/2013,03/06/2013,03/06/2013 06:50:42 PM,03/06/2013 06:50:56 PM,03/06/2013 06:51:17 PM,03/06/2013 06:52:17 PM,03/06/2013 06:56:20 PM,03/06/2013 07:04:50 PM,03/06/2013 07:14:17 PM,Code 2 Transport,03/06/2013 07:31:27 PM,CLAYTON ST/HAIGHT ST,SF,94117,B05,12,4525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",130650265-AM18 +160422360,82,16016929,Medical Incident,02/11/2016,02/11/2016,02/11/2016 03:23:26 PM,02/11/2016 03:23:34 PM,02/11/2016 03:24:04 PM,02/11/2016 03:24:52 PM,02/11/2016 03:31:08 PM,02/11/2016 03:48:05 PM,02/11/2016 03:57:28 PM,Code 2 Transport,02/11/2016 04:33:41 PM,LYON ST/OAK ST,San Francisco,94117,B05,21,4352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.7725043151661, -122.442377976273)",160422360-82 +103330270,72,10106654,Structure Fire,11/29/2010,11/29/2010,11/29/2010 05:58:27 PM,11/29/2010 05:59:32 PM,11/29/2010 06:00:01 PM,11/29/2010 06:00:24 PM,11/29/2010 06:08:03 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Other,11/29/2010 06:20:11 PM,2400 Block of 18TH AVE,SF,94116,B08,40,7376,3,3,3,true,,1,MEDIC,6,8,7,West of Twin Peaks,"(37.7421684750396, -122.474489961715)",103330270-72 +110500398,E08,11016708,Medical Incident,02/19/2011,02/19/2011,02/19/2011 10:58:20 PM,02/19/2011 10:59:51 PM,02/19/2011 11:00:26 PM,02/19/2011 11:01:49 PM,02/19/2011 11:03:46 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 11:04:59 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",110500398-E08 +160900933,85,16035638,Medical Incident,03/30/2016,03/30/2016,03/30/2016 09:01:22 AM,03/30/2016 09:02:30 AM,03/30/2016 09:04:26 AM,03/30/2016 09:04:44 AM,03/30/2016 09:10:55 AM,03/30/2016 09:12:36 AM,03/30/2016 09:28:50 AM,Code 2 Transport,03/30/2016 10:14:03 AM,100 Block of KISKA RD,San Francisco,94124,B10,17,6625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",160900933-85 +122950087,AM16,12097763,Medical Incident,10/21/2012,10/20/2012,10/21/2012 07:43:26 AM,10/21/2012 07:44:33 AM,10/21/2012 07:45:07 AM,10/21/2012 07:45:51 AM,10/21/2012 07:47:32 AM,10/21/2012 07:54:17 AM,10/21/2012 08:25:47 AM,Code 2 Transport,10/21/2012 08:30:00 AM,VALENCIA ST/DUBOCE AV,SF,94103,B02,36,5126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7698676980277, -122.422364819149)",122950087-AM16 +160543001,86,16021709,Medical Incident,02/23/2016,02/23/2016,02/23/2016 05:39:00 PM,02/23/2016 05:41:18 PM,02/23/2016 05:42:15 PM,02/23/2016 05:42:23 PM,02/23/2016 06:06:18 PM,02/23/2016 06:30:47 PM,02/23/2016 07:03:26 PM,Code 2 Transport,02/23/2016 07:15:25 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160543001-86 +131530179,E16,13051830,Structure Fire,06/02/2013,06/02/2013,06/02/2013 01:19:35 PM,06/02/2013 01:20:27 PM,06/02/2013 01:20:48 PM,06/02/2013 01:21:24 PM,06/02/2013 01:25:37 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 01:31:54 PM,2400 Block of HYDE ST,SF,94109,B01,28,1614,3,3,3,true,Alarm,1,ENGINE,7,1,2,Russian Hill,"(37.8040538571982, -122.420097105595)",131530179-E16 +112490204,T18,11082142,Alarms,09/06/2011,09/06/2011,09/06/2011 01:47:48 PM,09/06/2011 01:49:03 PM,09/06/2011 01:49:23 PM,09/06/2011 01:50:59 PM,09/06/2011 01:53:25 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 02:19:50 PM,1800 Block of 30TH AVE,SF,94122,B08,18,7515,3,3,3,false,,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7527846529683, -122.488272720267)",112490204-T18 +160823627,KM07,16032738,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:37:40 PM,03/22/2016 08:39:41 PM,03/22/2016 08:39:57 PM,03/22/2016 08:41:17 PM,03/22/2016 08:51:42 PM,03/22/2016 09:07:18 PM,03/22/2016 09:29:50 PM,Code 2 Transport,03/22/2016 10:01:50 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160823627-KM07 +132610180,B01,13088364,Alarms,09/18/2013,09/18/2013,09/18/2013 11:45:26 AM,09/18/2013 11:45:30 AM,09/18/2013 11:46:42 AM,09/18/2013 11:48:19 AM,09/18/2013 11:50:59 AM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 11:59:43 AM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,Alarm,1,CHIEF,1,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",132610180-B01 +113270018,E03,11108433,Medical Incident,11/23/2011,11/22/2011,11/23/2011 01:34:58 AM,11/23/2011 01:35:30 AM,11/23/2011 01:35:44 AM,11/23/2011 01:37:46 AM,11/23/2011 01:40:56 AM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 01:54:37 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",113270018-E03 +140990080,E03,14033348,Medical Incident,04/09/2014,04/08/2014,04/09/2014 07:40:44 AM,04/09/2014 07:43:05 AM,04/09/2014 07:43:35 AM,04/09/2014 07:43:44 AM,04/09/2014 07:45:15 AM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Code 2 Transport,04/09/2014 07:56:33 AM,CEDAR ST/POLK ST,SAN FRANCISCO,94109,B04,3,1641,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",140990080-E03 +160601119,60,16023839,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:13:04 AM,02/29/2016 10:13:34 AM,02/29/2016 10:13:44 AM,02/29/2016 10:13:57 AM,02/29/2016 10:19:07 AM,02/29/2016 10:35:22 AM,02/29/2016 10:49:24 AM,Code 2 Transport,02/29/2016 11:27:06 AM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160601119-60 +160382527,66,16015300,Medical Incident,02/07/2016,02/07/2016,02/07/2016 04:22:32 PM,02/07/2016 04:23:32 PM,02/07/2016 04:25:04 PM,02/07/2016 04:25:11 PM,02/07/2016 04:33:51 PM,02/07/2016 04:52:03 PM,02/07/2016 05:13:08 PM,Code 2 Transport,02/07/2016 06:05:25 PM,0 Block of RIDGEWOOD AVE,San Francisco,94112,B09,15,8236,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7302535712103, -122.453470578976)",160382527-66 +103510305,T19,10112699,Citizen Assist / Service Call,12/17/2010,12/17/2010,12/17/2010 06:07:33 PM,12/17/2010 06:09:47 PM,12/17/2010 06:09:55 PM,12/17/2010 06:12:28 PM,12/17/2010 06:16:52 PM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,Other,12/17/2010 06:44:44 PM,100 Block of FOREST VIEW DR,SF,94132,B08,19,8736,3,3,3,false,,1,TRUCK,1,8,7,Sunset/Parkside,"(37.7317142572882, -122.483658970173)",103510305-T19 +130470281,E05,13016078,Medical Incident,02/16/2013,02/16/2013,02/16/2013 03:31:06 PM,02/16/2013 03:33:22 PM,02/16/2013 03:33:39 PM,02/16/2013 03:34:00 PM,02/16/2013 03:52:04 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/16/2013 04:08:59 PM,300 Block of VAN NESS AVE,SF,94102,B02,36,3165,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",130470281-E05 +102490223,E03,10078733,Structure Fire,09/06/2010,09/06/2010,09/06/2010 04:29:59 PM,09/06/2010 04:30:28 PM,09/06/2010 04:30:39 PM,09/06/2010 04:31:17 PM,09/06/2010 04:33:16 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Other,09/06/2010 05:59:17 PM,0 Block of CLEARY CT,SF,94109,B04,3,3323,3,3,3,true,,1,ENGINE,2,4,5,Western Addition,"(37.7841466012998, -122.426445754167)",102490223-E03 +120090228,E06,12003143,Medical Incident,01/09/2012,01/09/2012,01/09/2012 01:46:33 PM,01/09/2012 01:48:06 PM,01/09/2012 01:48:32 PM,01/09/2012 01:49:52 PM,01/09/2012 01:52:32 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/09/2012 02:00:39 PM,100 Block of OTIS ST,SF,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",120090228-E06 +122180109,66,12072249,Traffic Collision,08/05/2012,08/05/2012,08/05/2012 08:34:30 AM,08/05/2012 08:35:23 AM,08/05/2012 08:35:42 AM,08/05/2012 08:36:32 AM,08/05/2012 08:40:13 AM,08/05/2012 08:57:16 AM,08/05/2012 09:08:59 AM,Other,08/05/2012 10:07:02 AM,MISSION ST/ALLISON ST,SF,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7146606201137, -122.442564962687)",122180109-66 +132470014,94,13083195,Medical Incident,09/04/2013,09/03/2013,09/04/2013 01:08:14 AM,09/04/2013 01:11:03 AM,09/04/2013 01:11:13 AM,09/04/2013 01:11:23 AM,09/04/2013 01:16:40 AM,09/04/2013 01:33:18 AM,09/04/2013 01:37:20 AM,Code 2 Transport,09/04/2013 01:56:26 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",132470014-94 +131390099,E13,13046935,Medical Incident,05/19/2013,05/18/2013,05/19/2013 07:13:14 AM,05/19/2013 07:13:33 AM,05/19/2013 07:18:09 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 07:18:56 AM,MISSION ST/SPEAR ST,SF,94105,B03,35,2111,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7925372164019, -122.394059624933)",131390099-E13 +122980176,RC3,12098759,Medical Incident,10/24/2012,10/24/2012,10/24/2012 12:49:17 PM,10/24/2012 12:50:28 PM,10/24/2012 12:50:44 PM,04/25/2016 01:56:08 PM,10/24/2012 12:53:55 PM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/24/2012 01:13:04 PM,HARRISON ST/11TH ST,SF,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,2,6,Mission,"(37.7706298531325, -122.41247993514)",122980176-RC3 +122020381,KM07,12067279,Medical Incident,07/20/2012,07/20/2012,07/20/2012 09:59:54 PM,07/20/2012 10:03:01 PM,07/20/2012 10:06:37 PM,07/20/2012 10:08:26 PM,07/20/2012 10:19:46 PM,07/20/2012 10:33:56 PM,07/20/2012 10:57:52 PM,Code 2 Transport,07/20/2012 11:19:25 PM,400 Block of SAWYER ST,SF,94134,B09,44,6263,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7124692034838, -122.414790344433)",122020381-KM07 +110940055,RC1,11031104,Structure Fire,04/04/2011,04/03/2011,04/04/2011 06:05:59 AM,04/04/2011 06:07:01 AM,04/04/2011 06:07:16 AM,04/04/2011 06:26:15 AM,04/25/2016 02:05:17 PM,04/04/2011 06:35:35 AM,04/25/2016 02:05:17 PM,Other,04/04/2011 07:03:50 AM,700 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,,1,RESCUE CAPTAIN,11,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",110940055-RC1 +110280046,E36,11009119,Structure Fire,01/28/2011,01/27/2011,01/28/2011 06:24:20 AM,01/28/2011 06:24:20 AM,01/28/2011 06:24:58 AM,01/28/2011 06:26:42 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 06:29:34 AM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",110280046-E36 +160892537,76,16035395,Medical Incident,03/29/2016,03/29/2016,03/29/2016 04:00:37 PM,03/29/2016 04:02:12 PM,03/29/2016 04:02:41 PM,03/29/2016 04:02:48 PM,03/29/2016 04:12:12 PM,03/29/2016 04:35:15 PM,03/29/2016 05:15:44 PM,Code 2 Transport,03/29/2016 05:51:53 PM,700 Block of JERROLD AVE,San Francisco,94124,B10,17,6713,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7296708213986, -122.373440500902)",160892537-76 +160382139,71,16015253,Medical Incident,02/07/2016,02/07/2016,02/07/2016 02:27:44 PM,02/07/2016 02:29:09 PM,02/07/2016 02:29:40 PM,02/07/2016 02:30:04 PM,02/07/2016 02:45:01 PM,02/07/2016 02:55:51 PM,02/07/2016 03:34:57 PM,Code 2 Transport,02/07/2016 04:16:34 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160382139-71 +160692136,64,16027509,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:32:06 PM,03/09/2016 02:33:26 PM,03/09/2016 02:33:58 PM,03/09/2016 02:34:05 PM,03/09/2016 03:00:54 PM,03/09/2016 03:00:58 PM,03/09/2016 03:30:58 PM,Code 2 Transport,03/09/2016 04:19:24 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160692136-64 +102760167,E01,10087714,Structure Fire,10/03/2010,10/03/2010,10/03/2010 11:38:07 AM,10/03/2010 11:38:07 AM,10/03/2010 11:38:35 AM,10/03/2010 11:39:01 AM,10/03/2010 11:40:57 AM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 11:41:11 AM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7779770860913, -122.409387007126)",102760167-E01 +130240201,E06,13008300,Medical Incident,01/24/2013,01/24/2013,01/24/2013 12:15:30 PM,01/24/2013 12:17:34 PM,01/24/2013 12:18:10 PM,04/25/2016 01:54:38 PM,01/24/2013 12:21:27 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 12:28:42 PM,0 Block of CHURCH ST,SF,94114,B02,6,3525,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",130240201-E06 +123050494,E01,12101455,Medical Incident,10/31/2012,10/31/2012,10/31/2012 09:59:26 PM,10/31/2012 09:59:26 PM,10/31/2012 09:59:26 PM,10/31/2012 09:59:49 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 10:03:27 PM,MASON ST/TURK ST,SF,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",123050494-E01 +160442142,67,16017734,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:23:45 PM,02/13/2016 03:25:07 PM,02/13/2016 03:27:45 PM,02/13/2016 03:27:45 PM,02/13/2016 03:32:36 PM,02/13/2016 03:47:05 PM,02/13/2016 03:57:32 PM,Code 2 Transport,02/13/2016 04:36:35 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",160442142-67 +120260253,RC2,12008778,Medical Incident,01/26/2012,01/26/2012,01/26/2012 04:40:27 PM,01/26/2012 04:41:33 PM,01/26/2012 04:41:54 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,Other,01/26/2012 04:49:30 PM,3600 Block of CALIFORNIA ST,SF,94118,B07,10,4436,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",120260253-RC2 +103600232,55,10115590,Medical Incident,12/26/2010,12/26/2010,12/26/2010 06:58:37 PM,12/26/2010 06:59:51 PM,12/26/2010 06:59:57 PM,12/26/2010 07:00:18 PM,12/26/2010 07:05:31 PM,12/26/2010 07:15:33 PM,12/26/2010 07:32:03 PM,Code 2 Transport,12/26/2010 07:52:43 PM,100 Block of DRUMM ST,SF,94111,B01,13,1115,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",103600232-55 +160430821,KM06,16017202,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:46:11 AM,02/12/2016 08:47:48 AM,02/12/2016 08:48:06 AM,02/12/2016 08:48:25 AM,02/12/2016 09:05:13 AM,02/12/2016 09:19:31 AM,02/12/2016 09:31:15 AM,Code 2 Transport,02/12/2016 09:52:09 AM,0 Block of CORNWALL ST,San Francisco,94118,B07,10,7114,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7849777439165, -122.459697621782)",160430821-KM06 +122950102,T02,12097778,Alarms,10/21/2012,10/21/2012,10/21/2012 09:20:54 AM,10/21/2012 09:20:55 AM,10/21/2012 09:21:01 AM,10/21/2012 09:21:58 AM,10/21/2012 09:25:20 AM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,Other,10/21/2012 09:29:08 AM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",122950102-T02 +160490338,AM02,16019604,Traffic Collision,02/18/2016,02/17/2016,02/18/2016 05:20:47 AM,02/18/2016 05:22:57 AM,02/18/2016 05:23:42 AM,02/18/2016 05:24:19 AM,02/18/2016 05:28:33 AM,02/18/2016 05:43:05 AM,02/18/2016 05:54:34 AM,Code 2 Transport,02/18/2016 06:15:13 AM,FRANKLIN ST/GOLDEN GATE AV,San Francisco,94102,B02,36,3215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7808210471753, -122.422086793996)",160490338-AM02 +111730045,E31,11056963,Alarms,06/22/2011,06/21/2011,06/22/2011 03:36:52 AM,06/22/2011 03:37:09 AM,06/22/2011 03:37:16 AM,06/22/2011 03:37:39 AM,06/22/2011 03:38:48 AM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 03:39:02 AM,FUNSTON AV/BALBOA ST,SF,94118,B07,31,7145,3,3,3,false,,1,ENGINE,1,7,1,Inner Richmond,"(37.7768925553459, -122.471505993296)",111730045-E31 +160852798,AM10,16033877,Medical Incident,03/25/2016,03/25/2016,03/25/2016 05:12:56 PM,03/25/2016 05:12:56 PM,03/25/2016 05:13:14 PM,03/25/2016 05:13:53 PM,03/25/2016 05:19:01 PM,03/25/2016 05:36:35 PM,03/25/2016 05:50:07 PM,Code 2 Transport,03/25/2016 06:10:24 PM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7576217212029, -122.418887293065)",160852798-AM10 +160840481,AM24,16033252,Medical Incident,03/24/2016,03/23/2016,03/24/2016 06:21:38 AM,03/24/2016 06:23:14 AM,03/24/2016 06:23:48 AM,03/24/2016 06:24:49 AM,03/24/2016 06:35:47 AM,03/24/2016 07:20:25 AM,03/24/2016 07:47:40 AM,Code 2 Transport,03/24/2016 08:37:15 AM,1400 Block of EDDY ST,San Francisco,94115,B05,5,3515,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7814827356164, -122.431458216164)",160840481-AM24 +160331110,KM02,16012912,Medical Incident,02/02/2016,02/02/2016,02/02/2016 10:08:55 AM,02/02/2016 10:09:04 AM,02/02/2016 10:09:36 AM,02/02/2016 10:10:22 AM,02/02/2016 10:17:06 AM,02/02/2016 10:31:12 AM,02/02/2016 10:41:27 AM,Code 2 Transport,02/02/2016 11:39:58 AM,200 Block of 2ND ST,San Francisco,94105,B03,1,2146,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7865975380738, -122.397931681706)",160331110-KM02 +133000254,T19,13102004,Medical Incident,10/27/2013,10/27/2013,10/27/2013 04:08:46 PM,10/27/2013 04:09:25 PM,10/27/2013 04:10:12 PM,10/27/2013 04:11:35 PM,10/27/2013 04:15:50 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 04:23:53 PM,2600 Block of 18TH AVE,SF,94116,B08,40,7411,E,E,3,false,Non Life-threatening,1,TRUCK,3,8,7,West of Twin Peaks,"(37.7384208110093, -122.474367707285)",133000254-T19 +112440256,E36,11080509,Traffic Collision,09/01/2011,09/01/2011,09/01/2011 04:27:00 PM,09/01/2011 04:29:30 PM,09/01/2011 04:30:14 PM,09/01/2011 04:31:24 PM,09/01/2011 04:34:08 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 04:40:28 PM,DUBOCE AV/MISSION ST,SF,94103,B02,36,5124,2,2,2,true,,1,ENGINE,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",112440256-E36 +130130047,E31,13004306,Medical Incident,01/13/2013,01/12/2013,01/13/2013 02:04:23 AM,01/13/2013 02:05:11 AM,01/13/2013 02:06:06 AM,01/13/2013 02:08:04 AM,01/13/2013 02:09:44 AM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/13/2013 02:12:28 AM,3RD AV/GEARY BL,SF,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.78116026165, -122.461062828563)",130130047-E31 +132000207,E03,13067807,Alarms,07/19/2013,07/19/2013,07/19/2013 01:44:51 PM,07/19/2013 01:46:10 PM,07/19/2013 01:46:40 PM,04/25/2016 01:51:44 PM,07/19/2013 01:48:21 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 02:16:34 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",132000207-E03 +103590174,T11,10115224,Alarms,12/25/2010,12/25/2010,12/25/2010 01:27:07 PM,12/25/2010 01:28:07 PM,12/25/2010 01:28:13 PM,12/25/2010 01:31:56 PM,12/25/2010 01:34:03 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 01:35:17 PM,200 Block of RED ROCK WAY,SF,94131,B06,26,8167,3,3,3,false,,1,TRUCK,3,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",103590174-T11 +133360376,RS1,13114057,Structure Fire,12/02/2013,12/02/2013,12/02/2013 10:40:56 PM,12/02/2013 10:41:38 PM,12/02/2013 10:41:56 PM,12/02/2013 10:43:32 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/02/2013 10:48:53 PM,1900 Block of GROVE ST,SF,94117,B05,21,4515,3,3,3,false,Alarm,1,RESCUE SQUAD,11,5,5,Lone Mountain/USF,"(37.7746178646924, -122.448708472769)",133360376-RS1 +140290218,77,14009909,Medical Incident,01/29/2014,01/29/2014,01/29/2014 02:15:49 PM,01/29/2014 02:16:44 PM,01/29/2014 02:17:11 PM,01/29/2014 02:17:32 PM,01/29/2014 02:20:47 PM,01/29/2014 02:34:05 PM,01/29/2014 02:57:58 PM,Code 2 Transport,01/29/2014 03:32:02 PM,2100 Block of WEBSTER ST,SF,94115,B04,38,3466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7904907937316, -122.432404755801)",140290218-77 +112530410,B06,11083655,Structure Fire,09/10/2011,09/10/2011,09/10/2011 10:55:40 PM,09/10/2011 10:55:40 PM,09/10/2011 10:55:56 PM,09/10/2011 10:58:33 PM,09/10/2011 11:01:07 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 11:16:37 PM,3300 Block of 23RD ST,SF,94110,B06,11,552,3,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.7536816295495, -122.420253564524)",112530410-B06 +160212444,82,16008448,Medical Incident,01/21/2016,01/21/2016,01/21/2016 03:33:47 PM,01/21/2016 03:35:06 PM,01/21/2016 03:35:21 PM,01/21/2016 03:35:43 PM,01/21/2016 03:44:03 PM,01/21/2016 03:55:19 PM,01/21/2016 04:05:14 PM,Code 2 Transport,01/21/2016 04:32:27 PM,100 Block of GRANT AVE,San Francisco,94108,B01,1,1316,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7879895530952, -122.405154804884)",160212444-82 +160620340,89,16024559,Medical Incident,03/02/2016,03/01/2016,03/02/2016 04:44:47 AM,03/02/2016 04:46:48 AM,03/02/2016 04:47:11 AM,03/02/2016 04:47:19 AM,03/02/2016 04:51:09 AM,03/02/2016 05:18:13 AM,03/02/2016 05:23:58 AM,Code 2 Transport,03/02/2016 05:41:30 AM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160620340-89 +132630141,RS1,13089072,Structure Fire,09/20/2013,09/20/2013,09/20/2013 10:05:21 AM,09/20/2013 10:07:33 AM,09/20/2013 10:09:06 AM,09/20/2013 10:12:10 AM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 10:14:37 AM,3600 Block of LYON ST,SF,94123,B04,16,4323,3,3,3,false,Fire,1,RESCUE SQUAD,12,4,2,Marina,"(37.8046076925873, -122.448191230185)",132630141-RS1 +132970318,75,13100988,Medical Incident,10/24/2013,10/24/2013,10/24/2013 07:10:24 PM,10/24/2013 07:14:20 PM,10/24/2013 07:16:41 PM,10/24/2013 07:17:05 PM,10/24/2013 07:30:55 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/24/2013 07:36:09 PM,700 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",132970318-75 +160250057,76,16009739,Medical Incident,01/25/2016,01/24/2016,01/25/2016 12:27:05 AM,01/25/2016 12:28:43 AM,01/25/2016 12:29:11 AM,01/25/2016 12:29:18 AM,01/25/2016 12:37:16 AM,01/25/2016 12:54:39 AM,01/25/2016 01:05:23 AM,Code 2 Transport,01/25/2016 01:42:13 AM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160250057-76 +103030318,95,10096904,Medical Incident,10/30/2010,10/30/2010,10/30/2010 09:02:22 PM,10/30/2010 09:03:21 PM,10/30/2010 09:04:36 PM,10/30/2010 09:04:42 PM,10/30/2010 09:09:48 PM,10/30/2010 09:16:19 PM,10/30/2010 09:29:53 PM,Code 2 Transport,10/30/2010 09:58:32 PM,100 Block of FILLMORE ST,SF,94117,B02,6,3525,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7704847870776, -122.430052169451)",103030318-95 +160691531,KM04,16027451,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:54:36 AM,03/09/2016 11:56:53 AM,03/09/2016 11:57:06 AM,03/09/2016 11:57:56 AM,03/09/2016 12:03:36 PM,03/09/2016 12:36:40 PM,03/09/2016 01:04:44 PM,Code 2 Transport,03/09/2016 01:47:27 PM,0 Block of ACTON ST,San Francisco,94112,B09,33,6213,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7084890025884, -122.452569346731)",160691531-KM04 +110780223,T03,11025702,Structure Fire,03/19/2011,03/19/2011,03/19/2011 04:05:10 PM,03/19/2011 04:05:48 PM,03/19/2011 04:06:17 PM,03/19/2011 04:06:45 PM,03/19/2011 04:09:49 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 04:15:20 PM,1800 Block of OCTAVIA ST,SF,94109,B04,38,3325,3,3,3,false,,1,TRUCK,5,4,2,Pacific Heights,"(37.789273905949, -122.427091769146)",110780223-T03 +120830202,T16,12027578,Structure Fire,03/23/2012,03/23/2012,03/23/2012 01:51:22 PM,03/23/2012 01:51:22 PM,03/23/2012 01:51:31 PM,03/23/2012 01:52:08 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 01:53:55 PM,POLK ST/CHESTNUT ST,SF,94109,B01,16,3133,3,3,3,false,Alarm,1,TRUCK,2,1,2,Russian Hill,"(37.8024897363832, -122.423087806458)",120830202-T16 +103080148,RS1,10098657,Medical Incident,11/04/2010,11/04/2010,11/04/2010 10:40:26 AM,11/04/2010 10:42:19 AM,11/04/2010 10:43:16 AM,11/04/2010 10:43:43 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 10:43:59 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,5,3,6,South of Market,"(37.7811458612596, -122.409026046516)",103080148-RS1 +112490219,77,11082153,Medical Incident,09/06/2011,09/06/2011,09/06/2011 02:08:20 PM,09/06/2011 02:10:46 PM,09/06/2011 02:11:06 PM,09/06/2011 02:11:32 PM,09/06/2011 02:15:59 PM,09/06/2011 02:38:52 PM,09/06/2011 03:09:46 PM,Code 2 Transport,09/06/2011 03:33:56 PM,400 Block of MARKET ST,SF,94105,B03,13,2143,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7912932514009, -122.398614610411)",112490219-77 +160613539,68,16024499,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:05:51 PM,03/01/2016 10:07:41 PM,03/01/2016 10:08:00 PM,03/01/2016 10:08:31 PM,03/01/2016 10:24:27 PM,03/01/2016 10:31:22 PM,03/01/2016 10:58:04 PM,Code 2 Transport,03/01/2016 11:34:09 PM,1400 Block of HALIBUT CT,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8248190426844, -122.375030442219)",160613539-68 +110090279,62,11003079,Structure Fire,01/09/2011,01/09/2011,01/09/2011 06:34:15 PM,01/09/2011 06:35:01 PM,01/09/2011 06:35:06 PM,01/09/2011 06:35:37 PM,01/09/2011 06:40:20 PM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/09/2011 06:52:32 PM,1900 Block of PACIFIC AVE,SF,94109,B04,38,3332,3,3,3,true,,1,MEDIC,7,4,2,Pacific Heights,"(37.794238248299, -122.42732552674)",110090279-62 +113190038,88,11105838,Medical Incident,11/15/2011,11/14/2011,11/15/2011 05:39:22 AM,11/15/2011 05:41:24 AM,11/15/2011 05:41:45 AM,11/15/2011 05:41:56 AM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 05:46:24 AM,100 Block of MAXWELL CT,SF,94103,B02,6,5214,3,3,3,true,,1,MEDIC,3,2,8,Mission,"(37.7669025720969, -122.423141850936)",113190038-88 +113080308,65,11102416,Medical Incident,11/04/2011,11/04/2011,11/04/2011 05:32:46 PM,11/04/2011 05:34:00 PM,11/04/2011 05:34:32 PM,11/04/2011 05:35:01 PM,11/04/2011 05:42:49 PM,11/04/2011 06:03:10 PM,11/04/2011 06:22:54 PM,Code 2 Transport,11/04/2011 06:58:51 PM,2400 Block of POST ST,SF,94115,B05,10,4235,3,3,3,true,,1,MEDIC,2,5,5,Japantown,"(37.7840561914976, -122.442179800386)",113080308-65 +112470324,64,11081566,Medical Incident,09/04/2011,09/04/2011,09/04/2011 07:04:19 PM,09/04/2011 07:05:09 PM,09/04/2011 07:05:37 PM,09/04/2011 07:05:54 PM,09/04/2011 07:11:45 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 07:12:55 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",112470324-64 +160560735,61,16022281,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:11:26 AM,02/25/2016 08:13:09 AM,02/25/2016 08:14:35 AM,02/25/2016 08:15:12 AM,02/25/2016 08:29:17 AM,02/25/2016 08:39:10 AM,02/25/2016 08:57:53 AM,Code 2 Transport,02/25/2016 09:19:56 AM,1200 Block of MARINER DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",160560735-61 +132300259,T01,13077720,Structure Fire,08/18/2013,08/18/2013,08/18/2013 04:17:57 PM,08/18/2013 04:17:58 PM,08/18/2013 04:19:19 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,Other,08/18/2013 04:19:53 PM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",132300259-T01 +112040228,RS1,11067427,Medical Incident,07/23/2011,07/23/2011,07/23/2011 03:18:28 PM,07/23/2011 03:19:06 PM,07/23/2011 03:19:41 PM,07/23/2011 03:20:48 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 03:22:07 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",112040228-RS1 +132280177,E08,13076943,Medical Incident,08/16/2013,08/16/2013,08/16/2013 11:45:20 AM,08/16/2013 11:46:29 AM,08/16/2013 11:47:40 AM,08/16/2013 11:49:13 AM,08/16/2013 11:50:37 AM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,No Merit,08/16/2013 11:52:56 AM,KING ST/4TH ST,SF,94107,B03,8,2236,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",132280177-E08 +113480156,E01,11115431,Medical Incident,12/14/2011,12/14/2011,12/14/2011 10:52:28 AM,12/14/2011 10:53:21 AM,12/14/2011 10:53:57 AM,12/14/2011 10:54:09 AM,12/14/2011 10:56:26 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 11:02:06 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",113480156-E01 +140060338,89,14002253,Medical Incident,01/06/2014,01/06/2014,01/06/2014 06:43:59 PM,01/06/2014 06:46:23 PM,01/06/2014 06:48:54 PM,01/06/2014 06:49:14 PM,01/06/2014 07:01:07 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Medical Examiner,01/06/2014 07:31:26 PM,1200 Block of MISSION ST,SF,94103,B02,36,2336,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",140060338-89 +160211904,AM14,16008392,Medical Incident,01/21/2016,01/21/2016,01/21/2016 01:21:45 PM,01/21/2016 01:21:45 PM,01/21/2016 01:22:36 PM,01/21/2016 01:23:39 PM,01/21/2016 01:43:53 PM,01/21/2016 01:43:55 PM,01/21/2016 02:00:07 PM,Code 2 Transport,01/21/2016 02:32:48 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7742496611166, -122.414204535023)",160211904-AM14 +103420213,E01,10109487,Structure Fire,12/08/2010,12/08/2010,12/08/2010 01:02:58 PM,12/08/2010 01:03:31 PM,12/08/2010 01:03:55 PM,12/08/2010 01:05:34 PM,12/08/2010 01:06:41 PM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/08/2010 01:11:23 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7854364798696, -122.41533612902)",103420213-E01 +132510355,E07,13084960,Medical Incident,09/08/2013,09/08/2013,09/08/2013 07:14:58 PM,09/08/2013 07:16:27 PM,09/08/2013 07:19:42 PM,04/25/2016 01:50:53 PM,09/08/2013 07:20:30 PM,04/25/2016 01:50:53 PM,04/25/2016 01:50:53 PM,Other,09/08/2013 07:35:32 PM,500 Block of CAPP ST,SF,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7578954435745, -122.417957286582)",132510355-E07 +120750111,KM10,12024849,Medical Incident,03/15/2012,03/15/2012,03/15/2012 09:24:25 AM,03/15/2012 09:26:22 AM,03/15/2012 09:26:31 AM,03/15/2012 09:27:26 AM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 09:32:26 AM,IRVING ST/9TH AV,SF,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",120750111-KM10 +160844006,AM18,16033559,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:31:53 PM,03/24/2016 09:31:53 PM,03/24/2016 09:32:25 PM,03/24/2016 09:33:17 PM,03/24/2016 09:40:47 PM,03/24/2016 10:07:11 PM,03/24/2016 10:34:38 PM,Code 2 Transport,03/24/2016 11:29:13 PM,300 Block of FAXON AVE,San Francisco,94112,B09,15,8463,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209277240745, -122.460290446387)",160844006-AM18 +110780300,E02,11025766,Gas Leak (Natural and LP Gases),03/19/2011,03/19/2011,03/19/2011 07:31:25 PM,03/19/2011 07:33:18 PM,03/19/2011 07:33:43 PM,03/19/2011 07:35:20 PM,03/19/2011 07:44:26 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Fire,03/19/2011 07:44:51 PM,WASHINGTON ST/MASON ST,SF,94108,B01,2,1415,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7945266519311, -122.41136404552)",110780300-E02 +160430654,73,16017188,Traffic Collision,02/12/2016,02/11/2016,02/12/2016 07:54:40 AM,02/12/2016 07:56:40 AM,02/12/2016 07:57:42 AM,02/12/2016 07:57:59 AM,02/12/2016 08:02:04 AM,02/12/2016 08:06:30 AM,02/12/2016 08:20:38 AM,Code 3 Transport,02/12/2016 09:06:30 AM,GENEVA AV/ATHENS ST,San Francisco,94112,B09,43,6173,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7134759484794, -122.434541126439)",160430654-73 +111960086,RC1,11064625,Medical Incident,07/15/2011,07/15/2011,07/15/2011 09:40:30 AM,07/15/2011 09:41:07 AM,07/15/2011 09:41:17 AM,07/15/2011 09:42:35 AM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 09:48:02 AM,3200 Block of BAKER ST,SF,94123,B04,16,4315,3,3,3,true,,1,RESCUE CAPTAIN,4,4,2,Marina,"(37.8009437239624, -122.446507731772)",111960086-RC1 +103580098,E02,10114849,Medical Incident,12/24/2010,12/24/2010,12/24/2010 09:16:56 AM,12/24/2010 09:17:34 AM,12/24/2010 09:17:50 AM,12/24/2010 09:19:03 AM,12/24/2010 09:22:11 AM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 09:39:32 AM,900 Block of GRANT AVE,SF,94108,B01,2,1312,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7955759617339, -122.406632308192)",103580098-E02 +132850023,E06,13096812,Medical Incident,10/12/2013,10/11/2013,10/12/2013 01:07:02 AM,10/12/2013 01:07:49 AM,10/12/2013 01:08:19 AM,10/12/2013 01:10:09 AM,10/12/2013 01:10:34 AM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/12/2013 01:23:21 AM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7684539072982, -122.431342864403)",132850023-E06 +132140148,E34,13072232,Structure Fire,08/02/2013,08/02/2013,08/02/2013 11:46:11 AM,08/02/2013 11:46:35 AM,08/02/2013 11:48:55 AM,08/02/2013 11:50:13 AM,08/02/2013 11:53:27 AM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/02/2013 11:54:03 AM,800 Block of 28TH AVE,SF,94121,B10,14,7223,3,3,3,true,Alarm,1,ENGINE,4,7,1,Outer Richmond,"(37.7733597463577, -122.48739702419)",132140148-E34 +160453057,63,16018276,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:16:32 PM,02/14/2016 08:16:32 PM,02/14/2016 08:23:52 PM,02/14/2016 08:24:03 PM,02/14/2016 08:36:06 PM,02/14/2016 08:47:33 PM,02/14/2016 09:09:44 PM,Code 2 Transport,02/14/2016 09:35:08 PM,LAGUNA HONDA BL/DEWEY BL,San Francisco,94116,B08,39,8624,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7472863214132, -122.459174374558)",160453057-63 +111230080,E33,11040545,Medical Incident,05/03/2011,05/02/2011,05/03/2011 06:52:39 AM,05/03/2011 06:53:24 AM,05/03/2011 06:55:24 AM,05/03/2011 07:05:00 AM,05/03/2011 07:06:25 AM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Fire,05/03/2011 07:15:03 AM,300 Block of CAPITOL AVE,SF,94112,B09,33,8374,2,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7136131352586, -122.459099047791)",111230080-E33 +122610220,KM10,12086260,Medical Incident,09/17/2012,09/17/2012,09/17/2012 04:42:33 PM,09/17/2012 04:44:00 PM,09/17/2012 04:44:12 PM,09/17/2012 04:44:43 PM,09/17/2012 04:48:15 PM,09/17/2012 05:00:49 PM,09/17/2012 05:07:54 PM,Code 2 Transport,09/17/2012 05:31:00 PM,24TH ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,3,3,3,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7523727894276, -122.416265511485)",122610220-KM10 +120800319,57,12026683,Traffic Collision,03/20/2012,03/20/2012,03/20/2012 08:29:55 PM,03/20/2012 08:31:10 PM,03/20/2012 08:31:32 PM,04/25/2016 01:59:34 PM,03/20/2012 08:33:46 PM,03/20/2012 08:59:36 PM,03/20/2012 09:10:26 PM,Code 2 Transport,03/20/2012 09:40:30 PM,MARKET ST/TAYLOR ST,SF,94102,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",120800319-57 +112980152,E44,11098830,Medical Incident,10/25/2011,10/25/2011,10/25/2011 10:56:24 AM,10/25/2011 10:57:52 AM,10/25/2011 10:58:02 AM,10/25/2011 10:58:20 AM,10/25/2011 11:02:09 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 11:15:03 AM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7106489931744, -122.41246880128)",112980152-E44 +132420323,58,13081743,Medical Incident,08/30/2013,08/30/2013,08/30/2013 05:37:20 PM,08/30/2013 05:40:19 PM,08/30/2013 05:40:37 PM,08/30/2013 05:41:26 PM,08/30/2013 05:47:38 PM,08/30/2013 06:15:39 PM,08/30/2013 06:38:52 PM,Code 2 Transport,08/30/2013 07:05:11 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7442928064892, -122.439091578977)",132420323-58 +132780284,T02,13094585,Alarms,10/05/2013,10/05/2013,10/05/2013 05:11:27 PM,10/05/2013 05:11:44 PM,10/05/2013 05:11:59 PM,10/05/2013 05:13:55 PM,10/05/2013 05:16:34 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Other,10/05/2013 05:21:37 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",132780284-T02 +102950402,E29,10094271,Medical Incident,10/22/2010,10/22/2010,10/22/2010 11:38:53 PM,10/22/2010 11:40:15 PM,10/22/2010 11:40:26 PM,10/22/2010 11:41:51 PM,10/22/2010 11:45:15 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/22/2010 11:52:47 PM,600 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,948,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7680422578711, -122.386146958131)",102950402-E29 +102480030,E21,10078234,Medical Incident,09/05/2010,09/04/2010,09/05/2010 01:58:03 AM,09/05/2010 02:01:15 AM,09/05/2010 02:01:32 AM,09/05/2010 02:02:31 AM,09/05/2010 02:05:40 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 02:09:05 AM,1100 Block of MASONIC AVE,SF,94117,B05,21,4466,3,3,3,false,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7706848433161, -122.445371829452)",102480030-E21 +120150261,E18,12005170,Traffic Collision,01/15/2012,01/15/2012,01/15/2012 06:34:56 PM,01/15/2012 06:35:28 PM,01/15/2012 06:35:59 PM,01/15/2012 06:37:08 PM,01/15/2012 06:40:18 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 06:42:22 PM,41ST AV/KIRKHAM ST,SF,94122,B08,23,7631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7587939684534, -122.500436025202)",120150261-E18 +131830142,KM11,13062328,Medical Incident,07/02/2013,07/02/2013,07/02/2013 11:25:57 AM,07/02/2013 11:27:30 AM,07/02/2013 11:27:44 AM,07/02/2013 11:28:39 AM,07/02/2013 11:45:19 AM,07/02/2013 12:03:15 PM,07/02/2013 12:29:46 PM,Code 2 Transport,07/02/2013 12:46:12 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",131830142-KM11 +110020097,E20,11000595,Structure Fire,01/02/2011,01/02/2011,01/02/2011 09:07:13 AM,01/02/2011 09:08:29 AM,01/02/2011 09:09:12 AM,01/02/2011 09:09:53 AM,01/02/2011 09:13:34 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 10:52:02 AM,300 Block of MARIETTA DR,SF,94127,B09,39,8654,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7393518542994, -122.444849892886)",110020097-E20 +123410221,E31,12113805,Other,12/06/2012,12/06/2012,12/06/2012 01:19:58 PM,12/06/2012 01:21:07 PM,12/06/2012 01:21:24 PM,12/06/2012 01:22:56 PM,12/06/2012 01:25:33 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/06/2012 02:08:37 PM,0 Block of 18TH AVE,SF,94121,B07,31,7163,3,3,3,true,Alarm,1,ENGINE,1,7,2,Seacliff,"(37.7864413627117, -122.477600959016)",123410221-E31 +120560197,RS1,12018500,Structure Fire,02/25/2012,02/25/2012,02/25/2012 02:44:40 PM,02/25/2012 02:44:59 PM,02/25/2012 02:45:23 PM,02/25/2012 02:46:54 PM,02/25/2012 02:49:33 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 02:51:56 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Fire,1,RESCUE SQUAD,5,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",120560197-RS1 +131100129,81,13036963,Medical Incident,04/20/2013,04/20/2013,04/20/2013 10:30:51 AM,04/20/2013 10:31:59 AM,04/20/2013 10:32:06 AM,04/20/2013 10:32:18 AM,04/20/2013 10:34:42 AM,04/20/2013 10:48:32 AM,04/20/2013 10:54:07 AM,Code 3 Transport,04/20/2013 11:42:33 AM,3RD ST/PALOU AV,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",131100129-81 +120450049,E15,12014874,Medical Incident,02/14/2012,02/13/2012,02/14/2012 06:10:44 AM,02/14/2012 06:11:45 AM,02/14/2012 06:12:19 AM,02/14/2012 06:13:55 AM,02/14/2012 06:16:43 AM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/14/2012 06:38:23 AM,0 Block of BANNOCK ST,SF,94112,B09,15,8332,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7187230468178, -122.442430562594)",120450049-E15 +122900185,B04,12095966,Structure Fire,10/16/2012,10/16/2012,10/16/2012 11:52:26 AM,10/16/2012 11:54:05 AM,10/16/2012 11:54:33 AM,10/16/2012 11:56:38 AM,10/16/2012 12:00:54 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Other,10/16/2012 12:05:52 PM,0 Block of LAGUNA ST,SF,94102,B02,36,3416,3,3,3,false,Alarm,1,CHIEF,8,2,8,Hayes Valley,"(37.7713406311126, -122.42516067223)",122900185-B04 +121090225,E40,12036082,Administrative,04/18/2012,04/18/2012,04/18/2012 03:14:20 PM,04/18/2012 03:14:24 PM,04/18/2012 03:14:39 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/18/2012 03:15:06 PM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",121090225-E40 +132490160,87,13084004,Medical Incident,09/06/2013,09/06/2013,09/06/2013 11:56:30 AM,09/06/2013 11:57:52 AM,09/06/2013 11:58:32 AM,09/06/2013 11:59:16 AM,09/06/2013 12:08:14 PM,09/06/2013 12:26:05 PM,09/06/2013 12:34:16 PM,Code 2 Transport,09/06/2013 01:11:05 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",132490160-87 +132110039,AM22,13071254,Medical Incident,07/30/2013,07/29/2013,07/30/2013 04:37:46 AM,07/30/2013 04:39:07 AM,07/30/2013 04:40:55 AM,07/30/2013 04:41:48 AM,07/30/2013 04:51:40 AM,07/30/2013 05:03:21 AM,07/30/2013 05:13:52 AM,Code 2 Transport,07/30/2013 05:36:59 AM,500 Block of EDNA ST,SF,94112,B09,15,8231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7311244024886, -122.446506780022)",132110039-AM22 +110940294,B06,11031303,Structure Fire,04/04/2011,04/04/2011,04/04/2011 05:44:55 PM,04/04/2011 05:45:54 PM,04/04/2011 05:46:11 PM,04/04/2011 05:47:01 PM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,Other,04/04/2011 05:51:58 PM,0 Block of DUKES CT,SF,94124,B10,17,6517,3,3,3,false,,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.736996286224, -122.3867841243)",110940294-B06 +121540019,RC3,12050845,Medical Incident,06/02/2012,06/01/2012,06/02/2012 01:05:53 AM,06/02/2012 01:07:08 AM,06/02/2012 01:07:22 AM,06/02/2012 01:07:30 AM,06/02/2012 01:13:29 AM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 01:16:12 AM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",121540019-RC3 +113490345,AM18,11115946,Medical Incident,12/15/2011,12/15/2011,12/15/2011 10:10:46 PM,12/15/2011 10:12:07 PM,12/15/2011 10:13:36 PM,12/15/2011 10:14:12 PM,12/15/2011 10:17:03 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Unable to Locate,12/15/2011 10:20:44 PM,FRANKLIN ST/GEARY BL,SF,94109,B04,3,3222,3,3,3,false,,1,PRIVATE,2,4,5,Western Addition,"(37.7854822436864, -122.423027555652)",113490345-AM18 +131900058,E01,13064637,Medical Incident,07/09/2013,07/08/2013,07/09/2013 07:18:22 AM,07/09/2013 07:20:01 AM,07/09/2013 07:20:28 AM,07/09/2013 07:20:51 AM,07/09/2013 07:23:53 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 07:31:30 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131900058-E01 +131570187,AM20,13053225,Medical Incident,06/06/2013,06/06/2013,06/06/2013 12:07:14 PM,06/06/2013 12:08:16 PM,06/06/2013 12:08:36 PM,06/06/2013 12:09:13 PM,06/06/2013 12:15:41 PM,06/06/2013 12:43:03 PM,06/06/2013 01:01:35 PM,Code 2 Transport,06/06/2013 01:30:08 PM,3200 Block of 23RD ST,SF,94110,B06,7,5511,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7538801435979, -122.416954468807)",131570187-AM20 +130750315,79,13025148,Medical Incident,03/16/2013,03/16/2013,03/16/2013 08:07:10 PM,03/16/2013 08:08:24 PM,03/16/2013 08:15:47 PM,03/16/2013 08:18:13 PM,03/16/2013 08:20:25 PM,03/16/2013 08:36:40 PM,03/16/2013 09:07:05 PM,Code 2 Transport,03/16/2013 09:31:03 PM,0 Block of SAINT FRANCIS PL,SF,94107,B03,1,2176,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7831676638716, -122.397825495268)",130750315-79 +133390249,53,13114934,Medical Incident,12/05/2013,12/05/2013,12/05/2013 03:08:27 PM,12/05/2013 03:11:01 PM,12/05/2013 03:14:50 PM,12/05/2013 03:15:21 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 03:29:11 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",133390249-53 +160291105,KM09,16011386,Medical Incident,01/29/2016,01/29/2016,01/29/2016 10:05:09 AM,01/29/2016 10:06:58 AM,01/29/2016 10:07:27 AM,01/29/2016 10:08:05 AM,01/29/2016 10:17:19 AM,01/29/2016 10:37:31 AM,01/29/2016 10:48:30 AM,Code 2 Transport,01/29/2016 11:27:43 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160291105-KM09 +140080075,88,14002731,Medical Incident,01/08/2014,01/07/2014,01/08/2014 07:33:49 AM,01/08/2014 07:35:45 AM,01/08/2014 07:36:19 AM,01/08/2014 07:36:32 AM,01/08/2014 07:52:54 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Unable to Locate,01/08/2014 07:55:08 AM,SHOTWELL ST/16TH ST,SF,94110,B02,7,5237,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7652494943866, -122.416387524486)",140080075-88 +160663232,KM03,16026540,Medical Incident,03/06/2016,03/06/2016,03/06/2016 10:48:55 PM,03/06/2016 10:49:20 PM,03/06/2016 10:49:40 PM,03/06/2016 10:50:13 PM,03/06/2016 10:53:57 PM,03/06/2016 11:19:16 PM,03/06/2016 11:28:35 PM,Code 2 Transport,03/07/2016 12:04:11 AM,TURK ST/VAN NESS AV,San Francisco,94102,B02,3,3114,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7819607659915, -122.420638249893)",160663232-KM03 +132890376,KM14,13098469,Medical Incident,10/16/2013,10/16/2013,10/16/2013 10:44:03 PM,10/16/2013 10:45:58 PM,10/16/2013 10:46:15 PM,10/16/2013 10:46:58 PM,10/16/2013 11:06:08 PM,10/16/2013 11:07:06 PM,10/16/2013 11:19:06 PM,Code 2 Transport,10/16/2013 11:41:48 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",132890376-KM14 +131280190,AM08,13043270,Medical Incident,05/08/2013,05/08/2013,05/08/2013 12:19:24 PM,05/08/2013 12:20:13 PM,05/08/2013 12:20:46 PM,05/08/2013 12:21:32 PM,05/08/2013 12:24:19 PM,05/08/2013 12:39:41 PM,05/08/2013 12:50:14 PM,Code 2 Transport,05/08/2013 01:25:25 PM,1500 Block of VALENCIA ST,SF,94110,B06,11,5611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7473464894373, -122.420273560089)",131280190-AM08 +133500207,68,13118836,Medical Incident,12/16/2013,12/16/2013,12/16/2013 12:30:54 PM,12/16/2013 12:32:53 PM,12/16/2013 12:34:12 PM,12/16/2013 12:36:25 PM,12/16/2013 12:39:28 PM,12/16/2013 01:05:04 PM,12/16/2013 01:33:05 PM,Code 2 Transport,12/16/2013 02:15:11 PM,700 Block of 35TH AVE,SF,94121,B07,34,7252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7748832270511, -122.495037870754)",133500207-68 +160292918,KM02,16011534,Medical Incident,01/29/2016,01/29/2016,01/29/2016 06:43:01 PM,01/29/2016 06:45:02 PM,01/29/2016 06:45:43 PM,01/29/2016 06:46:42 PM,01/29/2016 06:58:57 PM,01/29/2016 07:20:23 PM,01/29/2016 07:48:23 PM,Code 2 Transport,01/29/2016 08:26:30 PM,1500 Block of GREEN ST,San Francisco,94123,B04,16,3233,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7975667094658, -122.4246258292)",160292918-KM02 +103440080,74,10110131,Medical Incident,12/10/2010,12/09/2010,12/10/2010 07:00:39 AM,12/10/2010 07:01:46 AM,12/10/2010 07:03:41 AM,12/10/2010 07:03:55 AM,12/10/2010 07:08:29 AM,12/10/2010 07:34:05 AM,12/10/2010 07:54:15 AM,Code 2 Transport,12/10/2010 08:10:35 AM,0 Block of GALILEE LN,SF,94115,B04,5,3365,3,3,3,true,,1,MEDIC,1,2,5,Western Addition,"(37.7837879620082, -122.428154523133)",103440080-74 +160200106,AM16,16007838,Medical Incident,01/20/2016,01/19/2016,01/20/2016 12:50:13 AM,01/20/2016 12:50:48 AM,01/20/2016 12:51:08 AM,01/20/2016 12:51:51 AM,01/20/2016 12:55:45 AM,01/20/2016 01:18:30 AM,01/20/2016 01:32:39 AM,Code 3 Transport,01/20/2016 01:54:51 AM,500 Block of 28TH ST,San Francisco,94131,B06,26,5557,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7448696049938, -122.434578161654)",160200106-AM16 +160710320,78,16028078,Medical Incident,03/11/2016,03/10/2016,03/11/2016 03:20:58 AM,03/11/2016 03:21:55 AM,03/11/2016 03:22:48 AM,03/11/2016 03:26:21 AM,03/11/2016 03:30:03 AM,03/11/2016 03:38:31 AM,03/11/2016 03:54:33 AM,Code 2 Transport,03/11/2016 04:45:19 AM,PAGE ST/DIVISADERO ST,San Francisco,94117,B05,21,4144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",160710320-78 +120330012,55,12010756,Medical Incident,02/02/2012,02/01/2012,02/02/2012 12:50:28 AM,02/02/2012 12:51:52 AM,02/02/2012 12:53:25 AM,02/02/2012 12:53:43 AM,02/02/2012 12:59:46 AM,02/02/2012 01:24:07 AM,02/02/2012 01:28:16 AM,Other,02/02/2012 02:06:28 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",120330012-55 +160171300,55,16006812,Medical Incident,01/17/2016,01/17/2016,01/17/2016 11:26:18 AM,01/17/2016 11:27:25 AM,01/17/2016 11:28:13 AM,01/17/2016 11:29:05 AM,01/17/2016 11:35:34 AM,01/17/2016 11:57:52 AM,01/17/2016 12:11:53 PM,Code 2 Transport,01/17/2016 01:23:26 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160171300-55 +103470302,RC1,10111362,Medical Incident,12/13/2010,12/13/2010,12/13/2010 05:16:35 PM,12/13/2010 05:16:56 PM,12/13/2010 05:17:28 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 05:23:19 PM,MARKET ST/2ND ST,SF,94105,B01,13,1236,3,3,3,false,,1,RESCUE CAPTAIN,3,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",103470302-RC1 +160623678,55,16024848,Medical Incident,03/02/2016,03/02/2016,03/02/2016 08:03:24 PM,03/02/2016 08:05:08 PM,03/02/2016 08:05:42 PM,03/02/2016 08:06:04 PM,03/02/2016 08:10:10 PM,03/02/2016 08:36:28 PM,03/02/2016 08:54:42 PM,Code 2 Transport,03/02/2016 09:53:52 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160623678-55 +111000162,B01,11033199,Alarms,04/10/2011,04/10/2011,04/10/2011 12:38:05 PM,04/10/2011 12:38:42 PM,04/10/2011 12:38:51 PM,04/10/2011 12:39:56 PM,04/10/2011 12:42:24 PM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 12:52:41 PM,300 Block of KEARNY ST,SF,94108,B01,13,1243,3,3,3,false,,1,CHIEF,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",111000162-B01 +113420357,T18,11113544,Structure Fire,12/08/2011,12/08/2011,12/08/2011 08:48:45 PM,12/08/2011 08:50:02 PM,12/08/2011 08:50:16 PM,12/08/2011 08:51:13 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/08/2011 08:55:31 PM,800 Block of LINCOLN WAY,SF,94122,B08,22,7333,3,3,3,false,,1,TRUCK,9,7,5,Inner Sunset,"(37.7657995781914, -122.466969885427)",113420357-T18 +133390123,E32,13114837,Outside Fire,12/05/2013,12/05/2013,12/05/2013 09:51:40 AM,12/05/2013 09:55:50 AM,12/05/2013 09:56:20 AM,12/05/2013 09:56:47 AM,12/05/2013 10:02:55 AM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Fire,12/05/2013 10:07:07 AM,100 Block of ALEMANY BLVD,SF,94110,B10,32,5746,3,3,3,true,Fire,1,ENGINE,1,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",133390123-E32 +103450055,RC3,10110473,Medical Incident,12/11/2010,12/10/2010,12/11/2010 03:01:02 AM,12/11/2010 03:03:42 AM,12/11/2010 03:05:50 AM,04/25/2016 02:07:10 PM,12/11/2010 03:23:49 AM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 04:00:12 AM,CESAR CHAVEZ ST/VALENCIA ST,SF,94110,B06,11,555,1,1,2,true,,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7481252844229, -122.420278831044)",103450055-RC3 +122600325,81,12086073,Traffic Collision,09/16/2012,09/16/2012,09/16/2012 10:41:35 PM,09/16/2012 10:45:05 PM,09/16/2012 10:47:02 PM,09/16/2012 10:47:30 PM,09/16/2012 10:51:27 PM,09/16/2012 10:56:51 PM,09/16/2012 11:09:13 PM,Code 2 Transport,09/16/2012 11:17:08 PM,16TH ST/VERMONT ST,SF,94103,B02,29,2422,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,10,Mission,"(37.7659581887586, -122.404623338223)",122600325-81 +140950100,AM04,14031876,Medical Incident,04/05/2014,04/05/2014,04/05/2014 08:03:46 AM,04/05/2014 08:04:08 AM,04/05/2014 08:07:42 AM,04/05/2014 08:07:42 AM,04/05/2014 08:12:32 AM,04/05/2014 08:31:32 AM,04/05/2014 08:49:03 AM,Code 2 Transport,04/05/2014 09:14:18 AM,GEARY ST/STOCKTON ST,SAN FRANCISCO,94108,B01,1,1323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7875680237553, -122.40658988461)",140950100-AM04 +111260389,E03,11041870,Traffic Collision,05/06/2011,05/06/2011,05/06/2011 10:37:22 PM,05/06/2011 10:39:22 PM,05/06/2011 10:39:36 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 10:41:15 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,ENGINE,6,2,6,South of Market,"(37.7804785121736, -122.412512257219)",111260389-E03 +111900019,55,11062694,Medical Incident,07/09/2011,07/08/2011,07/09/2011 01:18:43 AM,07/09/2011 01:19:55 AM,07/09/2011 01:20:04 AM,07/09/2011 01:20:29 AM,07/09/2011 01:23:47 AM,07/09/2011 01:30:44 AM,07/09/2011 01:57:09 AM,Code 2 Transport,07/09/2011 02:26:26 AM,5TH ST/MISSION ST,SF,94103,B03,1,2246,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",111900019-55 +160290638,61,16011344,Medical Incident,01/29/2016,01/28/2016,01/29/2016 07:48:54 AM,01/29/2016 07:49:14 AM,01/29/2016 07:49:41 AM,01/29/2016 07:49:49 AM,01/29/2016 07:56:19 AM,01/29/2016 08:15:30 AM,01/29/2016 08:36:49 AM,Other,01/29/2016 09:12:59 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160290638-61 +160690238,78,16027309,Medical Incident,03/09/2016,03/08/2016,03/09/2016 02:30:05 AM,03/09/2016 02:31:50 AM,03/09/2016 02:31:58 AM,03/09/2016 02:32:21 AM,03/09/2016 02:35:55 AM,03/09/2016 02:54:33 AM,03/09/2016 02:57:58 AM,Code 2 Transport,03/09/2016 03:48:38 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160690238-78 +160851770,71,16033774,Medical Incident,03/25/2016,03/25/2016,03/25/2016 12:48:25 PM,03/25/2016 12:49:21 PM,03/25/2016 12:53:24 PM,03/25/2016 12:53:47 PM,03/25/2016 12:58:15 PM,03/25/2016 01:35:41 PM,03/25/2016 01:40:55 PM,Code 2 Transport,03/25/2016 02:11:46 PM,500 Block of ASHBURY ST,San Francisco,94117,B05,21,4513,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7704623534305, -122.44709656531)",160851770-71 +110680024,E06,11022245,Medical Incident,03/09/2011,03/08/2011,03/09/2011 01:46:08 AM,03/09/2011 01:47:14 AM,03/09/2011 01:49:41 AM,03/09/2011 01:50:38 AM,03/09/2011 01:52:07 AM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/09/2011 01:58:38 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",110680024-E06 +160230542,60,16009045,Medical Incident,01/23/2016,01/22/2016,01/23/2016 04:11:43 AM,01/23/2016 04:13:12 AM,01/23/2016 04:13:40 AM,01/23/2016 04:13:49 AM,01/23/2016 04:19:03 AM,01/23/2016 04:46:46 AM,01/23/2016 04:54:28 AM,Code 2 Transport,01/23/2016 05:31:19 AM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",160230542-60 +160201830,AM08,16008008,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:59:27 PM,01/20/2016 01:00:42 PM,01/20/2016 01:03:14 PM,01/20/2016 01:03:55 PM,01/20/2016 01:13:14 PM,01/20/2016 01:30:42 PM,01/20/2016 01:37:24 PM,Code 2 Transport,01/20/2016 02:00:33 PM,DIVISADERO ST/HAYES ST,San Francisco,94117,B05,21,4145,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7749919470007, -122.437798745964)",160201830-AM08 +120820306,E05,12027326,Medical Incident,03/22/2012,03/22/2012,03/22/2012 06:26:27 PM,03/22/2012 06:27:53 PM,03/22/2012 06:28:12 PM,03/22/2012 06:29:31 PM,03/22/2012 06:30:31 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/22/2012 06:47:18 PM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7794051372088, -122.432762898818)",120820306-E05 +140980454,94,14033260,Medical Incident,04/08/2014,04/08/2014,04/08/2014 09:56:17 PM,04/08/2014 09:57:33 PM,04/08/2014 09:57:44 PM,04/08/2014 09:57:51 PM,04/08/2014 10:00:57 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Patient Declined Transport,04/08/2014 10:53:21 PM,0 Block of GOLDEN GATE AVE,SAN FRANCISCO,94102,B03,1,1454,3,3,3,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",140980454-94 +112950305,E03,11097949,Structure Fire,10/22/2011,10/22/2011,10/22/2011 07:02:14 PM,10/22/2011 07:02:14 PM,10/22/2011 07:03:05 PM,10/22/2011 07:04:04 PM,10/22/2011 07:05:34 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 07:06:30 PM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",112950305-E03 +123320282,86,12110442,Structure Fire,11/27/2012,11/27/2012,11/27/2012 06:39:05 PM,11/27/2012 06:40:46 PM,11/27/2012 06:41:12 PM,11/27/2012 06:41:35 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/27/2012 06:50:05 PM,500 Block of MARKET ST,SF,94104,B03,13,1164,3,3,3,true,Alarm,1,MEDIC,9,1,3,Financial District/South Beach,"(37.7905865694353, -122.399877480803)",123320282-86 +160443345,53,16017852,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:34:35 PM,02/13/2016 08:38:47 PM,02/13/2016 08:51:04 PM,02/13/2016 08:51:16 PM,02/13/2016 09:08:18 PM,02/13/2016 09:54:05 PM,02/13/2016 10:11:02 PM,Code 2 Transport,02/13/2016 10:35:33 PM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160443345-53 +102260061,E03,10071050,Medical Incident,08/14/2010,08/13/2010,08/14/2010 04:06:41 AM,08/14/2010 04:10:59 AM,08/14/2010 04:11:10 AM,08/14/2010 04:12:46 AM,08/14/2010 04:15:45 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 04:18:10 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",102260061-E03 +133250227,83,13110415,Medical Incident,11/21/2013,11/21/2013,11/21/2013 03:07:01 PM,11/21/2013 03:07:55 PM,11/21/2013 03:09:34 PM,11/21/2013 03:12:04 PM,11/21/2013 03:15:06 PM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Unable to Locate,11/21/2013 03:17:18 PM,10TH ST/HOWARD ST,SF,94103,B02,36,2342,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7740433259374, -122.414367692219)",133250227-83 +111550307,RC2,11051330,Medical Incident,06/04/2011,06/04/2011,06/04/2011 06:13:58 PM,06/04/2011 06:16:15 PM,06/04/2011 06:16:59 PM,06/04/2011 06:17:50 PM,06/04/2011 06:20:39 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/04/2011 06:28:17 PM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,true,,1,RESCUE CAPTAIN,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",111550307-RC2 +120710230,88,12023654,Medical Incident,03/11/2012,03/11/2012,03/11/2012 03:31:49 PM,03/11/2012 03:33:10 PM,03/11/2012 03:33:17 PM,03/11/2012 03:33:24 PM,03/11/2012 03:41:19 PM,03/11/2012 03:45:33 PM,03/11/2012 04:19:53 PM,Code 2 Transport,03/11/2012 04:52:21 PM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",120710230-88 +160813151,KM11,16032310,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:34:49 PM,03/21/2016 06:35:42 PM,03/21/2016 06:35:47 PM,03/21/2016 06:36:59 PM,03/21/2016 06:40:44 PM,03/21/2016 06:52:32 PM,03/21/2016 07:08:12 PM,Code 2 Transport,03/21/2016 07:40:30 PM,GEARY ST/LEAVENWORTH ST,San Francisco,94109,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",160813151-KM11 +130340179,E06,13011607,Fuel Spill,02/03/2013,02/03/2013,02/03/2013 01:23:38 PM,02/03/2013 01:25:55 PM,02/03/2013 01:26:04 PM,02/03/2013 01:27:00 PM,02/03/2013 01:28:17 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 01:45:09 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,Alarm,1,ENGINE,1,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",130340179-E06 +103190178,67,10102244,Traffic Collision,11/15/2010,11/15/2010,11/15/2010 12:18:21 PM,11/15/2010 12:18:48 PM,11/15/2010 12:19:02 PM,11/15/2010 12:19:06 PM,11/15/2010 12:23:54 PM,11/15/2010 12:38:04 PM,11/15/2010 01:03:28 PM,Code 2 Transport,11/15/2010 01:52:50 PM,PARK PRESIDIO BL/GEARY BL,SF,94118,B07,31,7146,3,3,3,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",103190178-67 +160081454,KM08,16003199,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:27:05 AM,01/08/2016 11:27:05 AM,01/08/2016 11:27:19 AM,01/08/2016 11:28:19 AM,01/08/2016 11:31:24 AM,01/08/2016 11:54:14 AM,01/08/2016 12:06:18 PM,Code 2 Transport,01/08/2016 12:46:54 PM,500 Block of MASON ST,San Francisco,94102,B01,3,1412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7885578121115, -122.410081316773)",160081454-KM08 +140870155,AM16,14029251,Medical Incident,03/28/2014,03/28/2014,03/28/2014 11:17:13 AM,03/28/2014 11:19:27 AM,03/28/2014 11:19:38 AM,03/28/2014 11:20:26 AM,03/28/2014 11:23:41 AM,03/28/2014 11:45:52 AM,03/28/2014 11:59:37 AM,Code 2 Transport,03/28/2014 12:52:08 PM,1300 Block of 33RD AVE,SAN FRANCISCO,94122,B08,23,7541,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7619730968336, -122.491993364367)",140870155-AM16 +140320171,E22,14010827,Medical Incident,02/01/2014,02/01/2014,02/01/2014 12:54:35 PM,02/01/2014 12:55:22 PM,02/01/2014 12:56:37 PM,02/01/2014 12:57:13 PM,02/01/2014 12:59:21 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 01:23:46 PM,1300 Block of 21ST AVE,SF,94122,B08,22,7426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7625397133355, -122.479132257193)",140320171-E22 +130940276,58,13031535,Medical Incident,04/04/2013,04/04/2013,04/04/2013 05:16:28 PM,04/04/2013 05:17:12 PM,04/04/2013 05:17:28 PM,04/04/2013 05:17:34 PM,04/04/2013 05:19:16 PM,04/04/2013 05:40:48 PM,04/04/2013 05:47:32 PM,Code 3 Transport,04/04/2013 06:36:58 PM,1800 Block of 15TH AVE,SF,94122,B08,40,7363,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7533907167932, -122.472130727218)",130940276-58 +112100199,E01,11069348,Medical Incident,07/29/2011,07/29/2011,07/29/2011 03:38:50 PM,07/29/2011 03:40:13 PM,07/29/2011 03:40:23 PM,07/29/2011 03:41:25 PM,07/29/2011 03:44:28 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 03:44:42 PM,5TH ST/MISSION ST,SF,94103,B03,1,2246,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",112100199-E01 +160821655,57,16032551,Medical Incident,03/22/2016,03/22/2016,03/22/2016 12:19:43 PM,03/22/2016 12:20:55 PM,03/22/2016 12:22:06 PM,03/22/2016 12:22:14 PM,03/22/2016 12:31:07 PM,03/22/2016 12:50:38 PM,03/22/2016 01:02:23 PM,Code 2 Transport,03/22/2016 01:52:04 PM,1500 Block of 37TH AVE,San Francisco,94122,B08,18,7572,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7580458181971, -122.496156064465)",160821655-57 +121780049,E16,12059142,Medical Incident,06/26/2012,06/25/2012,06/26/2012 06:14:58 AM,06/26/2012 06:15:39 AM,06/26/2012 06:16:37 AM,06/26/2012 06:18:54 AM,06/26/2012 06:22:31 AM,04/25/2016 01:58:01 PM,04/25/2016 01:58:01 PM,Other,06/26/2012 06:36:29 AM,0 Block of PRADO ST,SF,94123,B04,16,4112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8046583061667, -122.440840639593)",121780049-E16 +120450175,T02,12014960,Elevator / Escalator Rescue,02/14/2012,02/14/2012,02/14/2012 12:28:20 PM,02/14/2012 12:30:01 PM,02/14/2012 12:31:13 PM,02/14/2012 12:32:33 PM,02/14/2012 12:34:16 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,No Merit,02/14/2012 01:05:46 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",120450175-T02 +123350079,T07,12111228,Citizen Assist / Service Call,11/30/2012,11/29/2012,11/30/2012 04:28:38 AM,11/30/2012 04:28:38 AM,11/30/2012 04:29:27 AM,11/30/2012 05:00:02 AM,11/30/2012 05:09:25 AM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/30/2012 06:55:10 AM,400 Block of HILL ST,SF,94114,B06,11,5461,3,3,3,false,Alarm,1,TRUCK,4,6,8,Noe Valley,"(37.7555441402201, -122.43115116258)",123350079-T07 +160811306,88,16032139,Medical Incident,03/21/2016,03/21/2016,03/21/2016 11:02:07 AM,03/21/2016 11:03:29 AM,03/21/2016 11:05:14 AM,03/21/2016 11:05:46 AM,03/21/2016 11:15:39 AM,03/21/2016 11:29:27 AM,03/21/2016 11:42:47 AM,Code 2 Transport,03/21/2016 12:16:09 PM,MISSION ST/11TH ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160811306-88 +133580343,81,13121858,Medical Incident,12/24/2013,12/24/2013,12/24/2013 09:45:15 PM,12/24/2013 09:45:32 PM,12/24/2013 09:45:46 PM,12/24/2013 09:46:28 PM,12/24/2013 09:57:23 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/24/2013 09:59:10 PM,1600 Block of BEACH ST,SF,94123,B04,16,3556,E,2,2,true,Non Life-threatening,1,MEDIC,3,4,2,Marina,"(37.804585259169, -122.436256553361)",133580343-81 +122300309,B01,12076329,Alarms,08/17/2012,08/17/2012,08/17/2012 05:08:01 PM,08/17/2012 05:09:08 PM,08/17/2012 05:09:36 PM,08/17/2012 05:11:18 PM,08/17/2012 05:15:15 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 05:16:17 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",122300309-B01 +122380286,E03,12078931,Medical Incident,08/25/2012,08/25/2012,08/25/2012 08:20:39 PM,08/25/2012 08:22:24 PM,08/25/2012 08:22:59 PM,08/25/2012 08:24:06 PM,08/25/2012 08:25:57 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 08:26:15 PM,GOLDEN GATE AV/HYDE ST,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",122380286-E03 +121460039,FB1,12048348,Water Rescue,05/25/2012,05/24/2012,05/25/2012 05:46:02 AM,05/25/2012 05:48:14 AM,05/25/2012 05:49:41 AM,05/25/2012 05:52:42 AM,05/25/2012 06:20:55 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Other,05/25/2012 06:47:24 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,SUPPORT,10,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121460039-FB1 +160423918,64,16017079,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:03:37 PM,02/11/2016 11:03:37 PM,02/11/2016 11:08:13 PM,02/11/2016 11:08:21 PM,02/11/2016 11:13:38 PM,02/11/2016 11:48:43 PM,02/12/2016 12:04:13 AM,Code 2 Transport,02/12/2016 12:43:13 AM,500 Block of 26TH AVE,San Francisco,94121,B07,14,7213,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",160423918-64 +112550007,66,11083988,Medical Incident,09/12/2011,09/11/2011,09/12/2011 12:54:13 AM,09/12/2011 12:54:28 AM,09/12/2011 12:56:18 AM,09/12/2011 12:56:38 AM,09/12/2011 01:06:17 AM,09/12/2011 01:29:03 AM,09/12/2011 01:35:56 AM,Code 2 Transport,09/12/2011 02:09:42 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,2,2,true,,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",112550007-66 +130030323,E31,13001129,Structure Fire,01/03/2013,01/03/2013,01/03/2013 07:08:55 PM,01/03/2013 07:10:32 PM,01/03/2013 07:10:46 PM,01/03/2013 07:12:20 PM,01/03/2013 07:13:33 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 07:19:25 PM,200 Block of 9TH AVE,SF,94118,B07,31,7136,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7837385900597, -122.467627586947)",130030323-E31 +132400332,KM15,13081089,Medical Incident,08/28/2013,08/28/2013,08/28/2013 08:43:34 PM,08/28/2013 08:45:40 PM,08/28/2013 08:46:13 PM,08/28/2013 08:46:46 PM,08/28/2013 08:53:58 PM,08/28/2013 09:02:10 PM,08/28/2013 09:13:38 PM,Code 2 Transport,08/28/2013 09:37:56 PM,21ST ST/YORK ST,SF,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7576511179526, -122.408651271725)",132400332-KM15 +102950399,96,10094268,Medical Incident,10/22/2010,10/22/2010,10/22/2010 11:21:03 PM,10/22/2010 11:22:21 PM,10/22/2010 11:23:01 PM,10/22/2010 11:23:09 PM,10/22/2010 11:27:11 PM,10/22/2010 11:38:24 PM,10/22/2010 11:44:03 PM,Code 2 Transport,10/23/2010 12:13:36 AM,0 Block of SYCAMORE ST,SF,94110,B02,7,5423,3,1,2,true,,1,MEDIC,1,2,9,Mission,"(37.7627443612578, -122.419834318318)",102950399-96 +132780080,AM16,13094412,Medical Incident,10/05/2013,10/04/2013,10/05/2013 06:48:46 AM,10/05/2013 06:49:07 AM,10/05/2013 06:51:29 AM,10/05/2013 06:51:49 AM,10/05/2013 06:59:04 AM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,No Merit,10/05/2013 07:14:45 AM,VAN DYKE AV/JENNINGS ST,SF,94124,B10,17,6651,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7270441476435, -122.388672813188)",132780080-AM16 +160141587,63,16005554,Medical Incident,01/14/2016,01/14/2016,01/14/2016 12:05:58 PM,01/14/2016 12:07:12 PM,01/14/2016 12:09:07 PM,01/14/2016 12:09:18 PM,01/14/2016 12:18:59 PM,01/14/2016 12:23:07 PM,01/14/2016 12:42:53 PM,Code 2 Transport,01/14/2016 01:14:38 PM,3600 Block of 22ND ST,San Francisco,94114,B06,11,5467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7548096282044, -122.428287435263)",160141587-63 +111430356,79,11047665,Medical Incident,05/23/2011,05/23/2011,05/23/2011 08:22:50 PM,05/23/2011 08:23:46 PM,05/23/2011 08:24:06 PM,05/23/2011 08:25:15 PM,05/23/2011 08:33:18 PM,05/23/2011 09:01:43 PM,05/23/2011 09:01:49 PM,Code 2 Transport,05/23/2011 09:49:55 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",111430356-79 +160250423,79,16009788,Medical Incident,01/25/2016,01/24/2016,01/25/2016 05:07:39 AM,01/25/2016 05:11:46 AM,01/25/2016 05:12:07 AM,01/25/2016 05:12:14 AM,01/25/2016 05:23:39 AM,01/25/2016 05:32:16 AM,01/25/2016 05:45:22 AM,Code 2 Transport,01/25/2016 06:08:08 AM,DUBOCE AV/VALENCIA ST,San Francisco,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7698676980277, -122.422364819149)",160250423-79 +121510110,54,12049980,Medical Incident,05/30/2012,05/30/2012,05/30/2012 10:32:17 AM,05/30/2012 10:33:06 AM,05/30/2012 10:33:23 AM,05/30/2012 10:33:33 AM,05/30/2012 10:35:14 AM,05/30/2012 10:43:22 AM,05/30/2012 10:56:45 AM,Code 2 Transport,05/30/2012 11:22:16 AM,1800 Block of MARKET ST,SF,94103,B02,36,3416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7715743266843, -122.42361379771)",121510110-54 +130190275,E51,13006583,Alarms,01/19/2013,01/19/2013,01/19/2013 04:16:52 PM,01/19/2013 04:18:02 PM,01/19/2013 04:18:16 PM,01/19/2013 04:20:25 PM,01/19/2013 04:22:00 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 04:27:40 PM,0 Block of MESA ST,PR,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.7976439600299, -122.457662375039)",130190275-E51 +120810350,E13,12027030,Alarms,03/21/2012,03/21/2012,03/21/2012 08:37:40 PM,03/21/2012 08:39:09 PM,03/21/2012 08:39:19 PM,03/21/2012 08:40:07 PM,03/21/2012 08:43:05 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Fire,03/21/2012 09:08:20 PM,100 Block of MISSION ST,SF,94105,B03,35,2116,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7921507122354, -122.394451120982)",120810350-E13 +110450359,59,11015078,Medical Incident,02/14/2011,02/14/2011,02/14/2011 09:22:00 PM,02/14/2011 09:23:43 PM,02/14/2011 09:24:05 PM,02/14/2011 09:24:51 PM,02/14/2011 09:28:24 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 09:40:47 PM,1100 Block of COLUMBUS AVE,SF,94133,B01,28,1434,3,3,3,true,,1,MEDIC,2,1,3,Russian Hill,"(37.8050697823361, -122.416976744235)",110450359-59 +111060253,82,11035144,Medical Incident,04/16/2011,04/16/2011,04/16/2011 05:43:30 PM,04/16/2011 05:43:45 PM,04/16/2011 05:43:59 PM,04/16/2011 05:44:51 PM,04/16/2011 05:46:40 PM,04/16/2011 06:00:44 PM,04/16/2011 06:10:27 PM,Code 2 Transport,04/16/2011 06:32:21 PM,500 Block of 4TH AVE,SF,94118,B07,31,7117,3,3,3,true,,1,MEDIC,1,7,1,Inner Richmond,"(37.7782561065947, -122.46200439038)",111060253-82 +123370144,99,12112123,Medical Incident,12/02/2012,12/01/2012,12/02/2012 05:32:30 AM,12/02/2012 05:32:48 AM,12/02/2012 05:52:12 AM,12/02/2012 06:26:56 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 06:36:15 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",123370144-99 +102960322,E02,10094553,Alarms,10/23/2010,10/23/2010,10/23/2010 09:22:13 PM,10/23/2010 09:24:48 PM,10/23/2010 09:26:14 PM,10/23/2010 09:26:36 PM,10/23/2010 09:27:51 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 09:42:10 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7965221139071, -122.410303225414)",102960322-E02 +123340299,E15,12111068,Traffic Collision,11/29/2012,11/29/2012,11/29/2012 06:48:01 PM,11/29/2012 06:48:01 PM,11/29/2012 06:48:13 PM,11/29/2012 06:49:10 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/29/2012 06:49:52 PM,200 Block of FARALLONES ST,SF,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,9,11,Oceanview/Merced/Ingleside,"(37.7139875097179, -122.460811423157)",123340299-E15 +140760049,E11,14025603,Medical Incident,03/17/2014,03/16/2014,03/17/2014 05:16:00 AM,03/17/2014 05:18:12 AM,03/17/2014 05:18:28 AM,03/17/2014 05:20:28 AM,03/17/2014 05:23:19 AM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Other,03/17/2014 05:37:20 AM,400 Block of ELIZABETH ST,SAN FRANCISCO,94114,B06,11,5514,2,2,2,false,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7523486311873, -122.430844394586)",140760049-E11 +111730260,RC1,11057137,Medical Incident,06/22/2011,06/22/2011,06/22/2011 05:16:39 PM,06/22/2011 05:19:15 PM,06/22/2011 05:20:19 PM,06/22/2011 05:21:05 PM,06/22/2011 05:22:00 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 05:45:59 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,,1,RESCUE CAPTAIN,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",111730260-RC1 +123290099,T15,12109349,Assist Police,11/24/2012,11/24/2012,11/24/2012 08:26:36 AM,11/24/2012 08:26:54 AM,11/24/2012 08:27:28 AM,11/24/2012 08:28:27 AM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Fire,11/24/2012 08:47:35 AM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,Alarm,1,TRUCK,1,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",123290099-T15 +131950096,E01,13066180,Medical Incident,07/14/2013,07/14/2013,07/14/2013 09:07:08 AM,07/14/2013 09:07:44 AM,07/14/2013 09:07:57 AM,07/14/2013 09:09:05 AM,07/14/2013 09:11:48 AM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Other,07/14/2013 09:20:44 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131950096-E01 +120060330,E01,12002204,Outside Fire,01/06/2012,01/06/2012,01/06/2012 08:03:53 PM,01/06/2012 08:06:01 PM,01/06/2012 08:06:25 PM,01/06/2012 08:06:38 PM,01/06/2012 08:08:11 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,Fire,01/06/2012 08:08:39 PM,5TH ST/HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",120060330-E01 +160412759,88,16016555,Medical Incident,02/10/2016,02/10/2016,02/10/2016 05:03:13 PM,02/10/2016 05:04:11 PM,02/10/2016 05:05:54 PM,02/10/2016 05:06:10 PM,02/10/2016 05:12:17 PM,02/10/2016 05:32:56 PM,02/10/2016 05:44:17 PM,Code 2 Transport,02/10/2016 06:18:09 PM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",160412759-88 +131790438,54,13061017,Medical Incident,06/28/2013,06/28/2013,06/28/2013 10:26:11 PM,06/28/2013 10:26:11 PM,06/28/2013 10:26:42 PM,06/28/2013 10:27:28 PM,06/28/2013 10:39:30 PM,06/28/2013 10:49:50 PM,06/28/2013 10:59:13 PM,Code 2 Transport,06/28/2013 11:34:17 PM,3300 Block of STEINER ST,SF,94123,B04,16,3566,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.800112737433, -122.437860447523)",131790438-54 +160084146,AM20,16003470,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:41:45 PM,01/08/2016 11:42:47 PM,01/08/2016 11:43:02 PM,01/08/2016 11:43:45 PM,01/08/2016 11:47:15 PM,01/09/2016 12:15:57 AM,01/09/2016 12:41:53 AM,Other,01/09/2016 01:16:25 AM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160084146-AM20 +131490012,T15,13050376,Traffic Collision,05/29/2013,05/28/2013,05/29/2013 01:08:53 AM,05/29/2013 01:08:59 AM,05/29/2013 01:09:53 AM,05/29/2013 01:11:26 AM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/29/2013 01:15:15 AM,PORTOLA DR/OSHAUGHNESSY BL,SF,94131,B08,39,8661,3,3,3,false,Potentially Life-Threatening,1,TRUCK,5,8,7,Twin Peaks,"(37.7455342374832, -122.451623985914)",131490012-T15 +113030262,58,11100619,Medical Incident,10/30/2011,10/30/2011,10/30/2011 02:13:35 PM,10/30/2011 02:14:32 PM,10/30/2011 02:14:54 PM,10/30/2011 02:16:04 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,04/25/2016 02:01:54 PM,0 Block of MARSILY ST,SF,94112,B06,32,8134,3,3,3,true,,1,MEDIC,3,6,8,Outer Mission,"(37.7340767315361, -122.42784270538)",113030262-58 +123100259,E22,12103186,Medical Incident,11/05/2012,11/05/2012,11/05/2012 04:13:10 PM,11/05/2012 04:15:38 PM,11/05/2012 04:16:03 PM,11/05/2012 04:17:19 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 04:18:23 PM,300 Block of 25TH AVE,SF,94121,B07,14,7214,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7829570675264, -122.484873511385)",123100259-E22 +132140371,E42,13072428,Medical Incident,08/02/2013,08/02/2013,08/02/2013 10:51:20 PM,08/02/2013 10:54:23 PM,08/02/2013 10:55:27 PM,04/25/2016 01:51:30 PM,08/02/2013 11:00:36 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 11:03:14 PM,300 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",132140371-E42 +130890320,E01,13029881,Medical Incident,03/30/2013,03/30/2013,03/30/2013 08:00:06 PM,03/30/2013 08:01:58 PM,03/30/2013 08:02:15 PM,03/30/2013 08:03:42 PM,03/30/2013 08:06:12 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 08:35:43 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",130890320-E01 +103110123,E38,10099683,Alarms,11/07/2010,11/07/2010,11/07/2010 08:05:43 AM,11/07/2010 08:06:29 AM,11/07/2010 08:06:42 AM,11/07/2010 08:07:21 AM,11/07/2010 08:10:32 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 08:24:34 AM,1300 Block of GOUGH ST,SF,94109,B04,3,3256,3,3,3,false,,1,ENGINE,1,4,2,Western Addition,"(37.7857740861424, -122.424704369163)",103110123-E38 +121330305,T15,12044375,Structure Fire,05/12/2012,05/12/2012,05/12/2012 08:15:27 PM,05/12/2012 08:16:59 PM,05/12/2012 08:17:15 PM,05/12/2012 08:18:41 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 08:22:14 PM,100 Block of RICHLAND AVE,SF,94110,B06,32,5632,3,3,3,false,Fire,1,TRUCK,9,6,9,Bernal Heights,"(37.736063156695, -122.423797717702)",121330305-T15 +131570426,E22,13053446,Medical Incident,06/06/2013,06/06/2013,06/06/2013 11:18:50 PM,06/06/2013 11:20:15 PM,06/06/2013 11:20:48 PM,06/06/2013 11:22:17 PM,06/06/2013 11:24:34 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/06/2013 11:29:55 PM,LAWTON ST/17TH AV,SF,94122,B08,22,7372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7580609284646, -122.474593730317)",131570426-E22 +122180237,59,12072358,Medical Incident,08/05/2012,08/05/2012,08/05/2012 03:17:16 PM,08/05/2012 03:19:58 PM,08/05/2012 03:21:16 PM,08/05/2012 03:21:32 PM,08/05/2012 03:25:05 PM,08/05/2012 03:47:44 PM,08/05/2012 03:54:35 PM,Code 2 Transport,08/05/2012 04:30:29 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7854670505017, -122.415977627827)",122180237-59 +132830270,RC3,13096372,Medical Incident,10/10/2013,10/10/2013,10/10/2013 04:52:52 PM,10/10/2013 04:53:52 PM,10/10/2013 04:54:08 PM,10/10/2013 04:55:43 PM,10/10/2013 04:57:55 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/10/2013 05:55:36 PM,3400 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5624,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7482453835824, -122.418694905088)",132830270-RC3 +111260398,E03,11041879,Medical Incident,05/06/2011,05/06/2011,05/06/2011 11:13:01 PM,05/06/2011 11:14:55 PM,05/06/2011 11:17:30 PM,05/06/2011 11:21:06 PM,05/06/2011 11:30:21 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 11:37:39 PM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",111260398-E03 +160473376,AM20,16019096,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:59:55 PM,02/16/2016 07:59:55 PM,02/16/2016 08:03:24 PM,02/16/2016 08:03:58 PM,02/16/2016 08:13:36 PM,02/16/2016 08:13:38 PM,02/16/2016 08:17:50 PM,Code 3 Transport,02/16/2016 08:46:20 PM,1300 Block of 17TH ST,San Francisco,94107,B03,29,2425,3,3,3,false,Non Life-threatening,1,PRIVATE,5,3,10,Potrero Hill,"(37.765046584262, -122.397248896045)",160473376-AM20 +160031315,KM11,16001158,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:47:14 AM,01/03/2016 11:48:07 AM,01/03/2016 11:48:25 AM,01/03/2016 11:48:58 AM,01/03/2016 11:52:45 AM,01/03/2016 12:09:29 PM,01/03/2016 12:15:03 PM,Code 2 Transport,01/03/2016 12:35:04 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160031315-KM11 +140850126,AM02,14028581,Medical Incident,03/26/2014,03/26/2014,03/26/2014 10:40:02 AM,03/26/2014 10:41:11 AM,03/26/2014 10:42:31 AM,03/26/2014 10:42:31 AM,03/26/2014 10:54:21 AM,03/26/2014 10:59:45 AM,03/26/2014 11:17:11 AM,Code 2 Transport,03/26/2014 12:07:57 PM,1500 Block of HAYES ST,SAN FRANCISCO,94117,B05,21,4351,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7744089216996, -122.441921717893)",140850126-AM02 +120960144,E02,12031756,Medical Incident,04/05/2012,04/05/2012,04/05/2012 11:57:43 AM,04/05/2012 12:00:30 PM,04/05/2012 12:00:55 PM,04/05/2012 12:01:10 PM,04/05/2012 12:04:12 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Other,04/05/2012 12:18:52 PM,900 Block of GRANT AVE,SF,94108,B01,2,1312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7955932512084, -122.406495596732)",120960144-E02 +160641617,KM04,16025487,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:51:36 AM,03/04/2016 11:53:49 AM,03/04/2016 11:55:47 AM,03/04/2016 11:56:36 AM,03/04/2016 12:09:16 PM,03/04/2016 12:32:36 PM,03/04/2016 01:02:04 PM,Code 2 Transport,03/04/2016 01:47:22 PM,2500 Block of 47TH AVE,San Francisco,94116,B08,23,7712,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.738934697003, -122.505425150748)",160641617-KM04 +102850447,T09,10090954,Structure Fire,10/12/2010,10/12/2010,10/12/2010 09:45:30 PM,10/12/2010 09:45:30 PM,10/12/2010 09:46:48 PM,10/12/2010 09:47:57 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 09:50:37 PM,0 Block of OGDEN AV,SF,94110,B10,42,6373,3,3,3,false,,1,TRUCK,2,10,9,Bernal Heights,"(37.7357223682795, -122.409678079531)",102850447-T09 +133440352,T05,13116800,Electrical Hazard,12/10/2013,12/10/2013,12/10/2013 07:24:55 PM,12/10/2013 07:26:24 PM,12/10/2013 07:26:54 PM,12/10/2013 07:27:49 PM,12/10/2013 07:30:35 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 07:37:47 PM,2100 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,false,Alarm,1,TRUCK,6,5,5,Western Addition,"(37.783357968274, -122.438601387081)",133440352-T05 +160690446,62,16027340,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:07:06 AM,03/09/2016 06:09:14 AM,03/09/2016 06:10:29 AM,03/09/2016 06:10:29 AM,03/09/2016 06:15:28 AM,03/09/2016 06:27:02 AM,03/09/2016 06:32:43 AM,Code 2 Transport,03/09/2016 07:04:23 AM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160690446-62 +160510147,63,16020310,Medical Incident,02/20/2016,02/19/2016,02/20/2016 01:00:31 AM,02/20/2016 01:01:39 AM,02/20/2016 01:02:14 AM,02/20/2016 01:02:29 AM,02/20/2016 01:20:44 AM,02/20/2016 01:20:45 AM,02/20/2016 01:36:13 AM,Code 2 Transport,02/20/2016 02:07:30 AM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",160510147-63 +140430038,T09,14014495,Traffic Collision,02/12/2014,02/11/2014,02/12/2014 04:02:15 AM,02/12/2014 04:02:15 AM,02/12/2014 04:02:47 AM,02/12/2014 04:05:25 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/12/2014 04:08:36 AM,SAN BRUNO AV/GAVEN ST,SF,94134,B10,42,6366,3,3,3,true,Potentially Life-Threatening,1,TRUCK,5,10,9,Portola,"(37.7340177516286, -122.406515383742)",140430038-T09 +103630208,68,10116467,Medical Incident,12/29/2010,12/29/2010,12/29/2010 03:30:18 PM,12/29/2010 03:30:55 PM,12/29/2010 03:31:12 PM,12/29/2010 03:32:01 PM,12/29/2010 03:33:44 PM,12/29/2010 03:45:05 PM,12/29/2010 03:47:34 PM,Code 2 Transport,12/29/2010 04:08:49 PM,ELLIS ST/HYDE ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",103630208-68 +113200241,E19,11106321,Medical Incident,11/16/2011,11/16/2011,11/16/2011 02:28:03 PM,11/16/2011 02:29:05 PM,11/16/2011 02:29:52 PM,11/16/2011 02:30:35 PM,11/16/2011 02:35:13 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 03:04:22 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,E,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",113200241-E19 +160193291,AM20,16007782,Medical Incident,01/19/2016,01/19/2016,01/19/2016 07:59:48 PM,01/19/2016 07:59:48 PM,01/19/2016 08:00:13 PM,01/19/2016 08:01:00 PM,01/19/2016 08:09:42 PM,01/19/2016 08:25:00 PM,01/19/2016 08:30:44 PM,Code 2 Transport,01/19/2016 09:01:00 PM,900 Block of BUSH ST,San Francisco,94109,B01,41,1446,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",160193291-AM20 +111630224,E21,11053860,Medical Incident,06/12/2011,06/12/2011,06/12/2011 04:54:58 PM,06/12/2011 04:56:19 PM,06/12/2011 04:57:05 PM,06/12/2011 04:58:04 PM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/12/2011 04:59:09 PM,HAIGHT ST/MASONIC AV,SF,94117,B05,21,4466,3,3,3,false,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",111630224-E21 +160601090,AM08,16023837,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:01:51 AM,02/29/2016 10:02:28 AM,02/29/2016 10:02:54 AM,02/29/2016 10:03:31 AM,02/29/2016 10:07:04 AM,02/29/2016 10:26:29 AM,02/29/2016 10:32:45 AM,Code 2 Transport,02/29/2016 10:59:13 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160601090-AM08 +160070188,52,16002670,Medical Incident,01/07/2016,01/06/2016,01/07/2016 01:56:01 AM,01/07/2016 01:56:01 AM,01/07/2016 01:56:17 AM,01/07/2016 01:56:25 AM,01/07/2016 02:03:15 AM,01/07/2016 02:18:23 AM,01/07/2016 02:28:42 AM,Code 2 Transport,01/07/2016 03:27:30 AM,200 Block of CHATTANOOGA ST,San Francisco,94114,B06,11,5513,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7525693952457, -122.426336372717)",160070188-52 +140070081,E07,14002411,Medical Incident,01/07/2014,01/06/2014,01/07/2014 07:55:54 AM,01/07/2014 07:57:28 AM,01/07/2014 07:58:08 AM,01/07/2014 08:00:02 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 08:03:13 AM,500 Block of VERMONT ST,SF,94107,B10,29,2512,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,10,Potrero Hill,"(37.7627433423105, -122.404384264447)",140070081-E07 +102680284,71,10084979,Medical Incident,09/25/2010,09/25/2010,09/25/2010 03:32:37 PM,09/25/2010 03:33:20 PM,09/25/2010 03:34:34 PM,09/25/2010 03:41:12 PM,09/25/2010 03:46:51 PM,09/25/2010 04:16:58 PM,09/25/2010 04:27:13 PM,Code 2 Transport,09/25/2010 04:55:48 PM,100 Block of JASPER PL,SF,94133,B01,28,1265,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8010178849645, -122.408387102079)",102680284-71 +111580108,E03,11052177,Medical Incident,06/07/2011,06/07/2011,06/07/2011 10:28:40 AM,06/07/2011 10:29:19 AM,06/07/2011 10:29:46 AM,06/07/2011 10:32:28 AM,06/07/2011 10:34:38 AM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 10:43:51 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",111580108-E03 +113090211,E09,11102712,Medical Incident,11/05/2011,11/05/2011,11/05/2011 03:21:22 PM,11/05/2011 03:21:55 PM,11/05/2011 03:22:08 PM,11/05/2011 03:24:08 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,Other,11/05/2011 03:46:55 PM,26TH ST/YORK ST,SF,94110,B06,9,5532,3,2,2,true,,1,ENGINE,2,6,9,Mission,"(37.7496572265458, -122.407884355924)",113090211-E09 +121610116,T12,12053249,Medical Incident,06/09/2012,06/09/2012,06/09/2012 10:09:10 AM,06/09/2012 10:09:10 AM,06/09/2012 10:09:10 AM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,06/09/2012 10:22:58 AM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,2,2,2,true,Non Life-threatening,1,TRUCK,2,7,1,Golden Gate Park,"(37.7694537012686, -122.469609049655)",121610116-T12 +160260927,73,16010229,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:53:24 AM,01/26/2016 08:54:49 AM,01/26/2016 08:54:57 AM,01/26/2016 08:55:17 AM,01/26/2016 09:02:19 AM,01/26/2016 09:22:09 AM,01/26/2016 09:29:13 AM,Code 2 Transport,01/26/2016 10:27:23 AM,200 Block of POTRERO AVE,San Francisco,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7664376828612, -122.407540732549)",160260927-73 +140740201,E48,14025028,Medical Incident,03/15/2014,03/15/2014,03/15/2014 01:43:38 PM,03/15/2014 01:45:17 PM,03/15/2014 01:45:40 PM,03/15/2014 01:47:00 PM,03/15/2014 01:50:54 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Code 2 Transport,03/15/2014 02:24:27 PM,1300 Block of GATEVIEW AVE,TREASURE ISLAN,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",140740201-E48 +120880191,T10,12029191,Alarms,03/28/2012,03/28/2012,03/28/2012 02:27:19 PM,03/28/2012 02:29:44 PM,03/28/2012 02:29:54 PM,03/28/2012 02:31:14 PM,03/28/2012 02:33:58 PM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 02:42:47 PM,100 Block of 3RD AVE,SF,94118,B07,31,7115,3,3,3,false,Alarm,1,TRUCK,2,7,2,Inner Richmond,"(37.786106452065, -122.461488844398)",120880191-T10 +160323903,62,16012792,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:34:15 PM,02/01/2016 11:34:54 PM,02/01/2016 11:35:22 PM,02/01/2016 11:35:34 PM,02/01/2016 11:38:01 PM,02/01/2016 11:45:30 PM,02/01/2016 11:50:58 PM,Code 3 Transport,02/02/2016 12:48:11 AM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160323903-62 +160731001,87,16028938,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:26:09 AM,03/13/2016 11:26:09 AM,03/13/2016 11:26:09 AM,03/13/2016 11:26:09 AM,03/13/2016 11:26:09 AM,03/13/2016 12:00:13 PM,03/13/2016 12:08:26 PM,Code 2 Transport,03/13/2016 12:41:15 PM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",160731001-87 +140090039,82,14003026,Medical Incident,01/09/2014,01/08/2014,01/09/2014 02:53:09 AM,01/09/2014 02:55:15 AM,01/09/2014 02:56:00 AM,01/09/2014 02:56:32 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/09/2014 04:59:55 AM,200 Block of LAKE MERCED HILL ST,SF,94132,B08,19,8777,,2,2,false,Non Life-threatening,1,MEDIC,3,8,7,Lakeshore,"(37.7129923229789, -122.483521842134)",140090039-82 +132880175,E29,13097965,Structure Fire,10/15/2013,10/15/2013,10/15/2013 11:25:59 AM,10/15/2013 11:26:57 AM,10/15/2013 11:27:42 AM,10/15/2013 11:27:56 AM,10/15/2013 11:32:34 AM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,10/15/2013 11:42:55 AM,1900 Block of 18TH ST,SF,94107,B02,37,2455,3,3,3,true,Alarm,1,ENGINE,4,10,10,Potrero Hill,"(37.7622049152778, -122.401820320601)",132880175-E29 +160311052,60,16012110,Other,01/31/2016,01/31/2016,01/31/2016 09:52:14 AM,01/31/2016 09:52:14 AM,01/31/2016 09:54:45 AM,01/31/2016 09:54:58 AM,01/31/2016 10:00:14 AM,01/31/2016 10:31:15 AM,01/31/2016 10:37:43 AM,Code 2 Transport,01/31/2016 11:10:25 AM,GOUGH ST/OAK ST,San Francisco,94102,B02,36,3266,2,2,2,true,Alarm,1,MEDIC,2,2,5,Hayes Valley,"(37.7750206954016, -122.42259804367)",160311052-60 +160320400,62,16012443,Medical Incident,02/01/2016,01/31/2016,02/01/2016 05:06:18 AM,02/01/2016 05:07:34 AM,02/01/2016 05:08:18 AM,02/01/2016 05:08:28 AM,02/01/2016 05:16:33 AM,02/01/2016 05:30:14 AM,02/01/2016 05:49:23 AM,Code 2 Transport,02/01/2016 06:29:40 AM,BATTERY ST/CALIFORNIA ST,San Francisco,94111,B01,13,1162,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",160320400-62 +160693689,AM16,16027665,Medical Incident,03/09/2016,03/09/2016,03/09/2016 09:50:27 PM,03/09/2016 09:51:15 PM,03/09/2016 09:51:35 PM,03/09/2016 09:52:49 PM,03/09/2016 09:57:29 PM,03/09/2016 10:11:41 PM,03/09/2016 10:21:42 PM,Code 3 Transport,03/09/2016 11:17:11 PM,2000 Block of LARKIN ST,San Francisco,94109,B01,41,1632,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,4,3,Russian Hill,"(37.7965929265297, -122.420281529401)",160693689-AM16 +111210369,99,11040104,Medical Incident,05/01/2011,05/01/2011,05/01/2011 08:10:00 PM,05/01/2011 08:10:50 PM,05/01/2011 08:11:07 PM,04/25/2016 02:04:50 PM,05/01/2011 08:22:13 PM,05/01/2011 08:28:40 PM,05/01/2011 08:35:33 PM,Code 3 Transport,05/01/2011 09:12:28 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,MEDIC,3,3,6,South of Market,"(37.7839914857614, -122.408066547804)",111210369-99 +160232939,85,16009275,Medical Incident,01/23/2016,01/23/2016,01/23/2016 06:35:52 PM,01/23/2016 06:35:52 PM,01/23/2016 06:39:31 PM,01/23/2016 06:39:49 PM,01/23/2016 07:02:17 PM,01/23/2016 07:24:29 PM,01/23/2016 07:50:22 PM,Code 2 Transport,01/23/2016 08:14:29 PM,200 Block of FARALLONES ST,San Francisco,94112,B09,33,8374,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7139875097179, -122.460811423157)",160232939-85 +140120169,77,14004141,Medical Incident,01/12/2014,01/12/2014,01/12/2014 01:47:44 PM,01/12/2014 01:49:35 PM,01/12/2014 01:49:52 PM,01/12/2014 01:50:18 PM,01/12/2014 01:55:52 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 01:59:01 PM,26TH ST/YORK ST,SF,94110,B06,9,5532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7496572265458, -122.407884355924)",140120169-77 +160170501,89,16006698,Medical Incident,01/17/2016,01/16/2016,01/17/2016 04:23:58 AM,01/17/2016 04:27:21 AM,01/17/2016 04:27:28 AM,01/17/2016 04:27:42 AM,01/17/2016 04:32:09 AM,01/17/2016 04:37:56 AM,01/17/2016 04:49:03 AM,Code 2 Transport,01/17/2016 05:46:58 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160170501-89 +132410327,E08,13081422,Structure Fire,08/29/2013,08/29/2013,08/29/2013 08:55:02 PM,08/29/2013 08:57:00 PM,08/29/2013 08:57:48 PM,08/29/2013 08:58:42 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/29/2013 09:16:04 PM,1200 Block of EXPOSITION DR,TI,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,6,None,6,Treasure Island,"(37.829470112515, -122.371782476258)",132410327-E08 +160183310,85,16007404,Medical Incident,01/18/2016,01/18/2016,01/18/2016 09:58:22 PM,01/18/2016 10:00:15 PM,01/18/2016 10:00:50 PM,01/18/2016 10:01:09 PM,01/18/2016 10:12:30 PM,01/18/2016 10:25:40 PM,01/18/2016 10:42:14 PM,Code 2 Transport,01/18/2016 11:12:06 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160183310-85 +160820205,89,16032432,Medical Incident,03/22/2016,03/21/2016,03/22/2016 02:06:02 AM,03/22/2016 02:07:16 AM,03/22/2016 02:07:42 AM,03/22/2016 02:07:58 AM,03/22/2016 02:10:53 AM,03/22/2016 02:20:02 AM,03/22/2016 02:25:18 AM,Code 2 Transport,03/22/2016 02:51:19 AM,500 Block of 7TH AV,San Francisco,94118,B07,31,7131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7781106106818, -122.465208632211)",160820205-89 +102870234,93,10091541,Medical Incident,10/14/2010,10/14/2010,10/14/2010 02:06:39 PM,10/14/2010 02:07:56 PM,10/14/2010 02:11:06 PM,10/14/2010 02:11:29 PM,04/25/2016 02:08:06 PM,10/14/2010 02:30:18 PM,10/14/2010 02:48:30 PM,Code 2 Transport,10/14/2010 03:06:19 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,2,2,2,true,,1,MEDIC,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",102870234-93 +110390187,E07,11012934,Structure Fire,02/08/2011,02/08/2011,02/08/2011 12:59:08 PM,02/08/2011 12:59:09 PM,02/08/2011 12:59:19 PM,02/08/2011 01:00:02 PM,02/08/2011 01:01:43 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 01:02:37 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",110390187-E07 +122670053,AM18,12088109,Medical Incident,09/23/2012,09/22/2012,09/23/2012 03:03:09 AM,09/23/2012 03:03:33 AM,09/23/2012 03:04:01 AM,09/23/2012 03:04:45 AM,09/23/2012 03:11:56 AM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Patient Declined Transport,09/23/2012 04:15:44 AM,1500 Block of 23RD AVE,SF,94122,B08,22,7447,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7587076180029, -122.481151284784)",122670053-AM18 +160522005,75,16020848,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:46:52 PM,02/21/2016 02:48:37 PM,02/21/2016 02:49:01 PM,02/21/2016 02:49:11 PM,02/21/2016 02:57:41 PM,02/21/2016 03:08:23 PM,02/21/2016 03:28:12 PM,Code 2 Transport,02/21/2016 04:00:10 PM,BRODERICK ST/BROADWAY,San Francisco,94123,B04,10,4226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7932242412519, -122.443192237139)",160522005-75 +112330096,E15,11076871,Medical Incident,08/21/2011,08/21/2011,08/21/2011 08:39:50 AM,08/21/2011 08:41:00 AM,08/21/2011 08:41:25 AM,08/21/2011 08:43:02 AM,08/21/2011 08:43:38 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 08:56:41 AM,100 Block of HAROLD AVE,SF,94112,B09,15,8466,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209475450544, -122.453027122282)",112330096-E15 +131310232,KM14,13044264,Medical Incident,05/11/2013,05/11/2013,05/11/2013 01:55:49 PM,05/11/2013 02:01:04 PM,05/11/2013 02:01:32 PM,05/11/2013 02:02:07 PM,05/11/2013 02:03:45 PM,05/11/2013 02:24:50 PM,05/11/2013 02:29:42 PM,Code 2 Transport,05/11/2013 03:13:00 PM,600 Block of COLE ST,SF,94117,B05,12,4532,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.769068075766, -122.450547663909)",131310232-KM14 +160120380,KM03,16004643,Medical Incident,01/12/2016,01/11/2016,01/12/2016 04:53:29 AM,01/12/2016 04:54:12 AM,01/12/2016 04:54:23 AM,01/12/2016 04:56:43 AM,01/12/2016 05:00:44 AM,01/12/2016 05:21:09 AM,01/12/2016 05:56:57 AM,Code 2 Transport,01/12/2016 06:41:13 AM,1200 Block of ARGUELLO BL,San Francisco,94122,B05,12,7321,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7650790746821, -122.457806243838)",160120380-KM03 +140040176,E12,14001438,Medical Incident,01/04/2014,01/04/2014,01/04/2014 12:28:53 PM,01/04/2014 12:29:15 PM,01/04/2014 12:29:33 PM,01/04/2014 12:30:14 PM,01/04/2014 12:31:20 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,Other,01/04/2014 12:41:41 PM,CARL ST/COLE ST,SF,94117,B05,12,5144,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7658000298196, -122.449958130403)",140040176-E12 +131650237,67,13056092,Medical Incident,06/14/2013,06/14/2013,06/14/2013 02:56:02 PM,06/14/2013 02:56:38 PM,06/14/2013 02:59:19 PM,06/14/2013 02:59:30 PM,06/14/2013 03:15:43 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Patient Declined Transport,06/14/2013 03:40:53 PM,0 Block of TURK ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131650237-67 +121810023,RC1,12060131,Medical Incident,06/29/2012,06/28/2012,06/29/2012 01:31:47 AM,06/29/2012 01:31:47 AM,06/29/2012 01:32:00 AM,06/29/2012 01:33:09 AM,06/29/2012 01:39:28 AM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/29/2012 01:58:41 AM,MARKET ST/DRUMM ST,SF,94105,B01,13,1113,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",121810023-RC1 +111600026,E01,11052768,Medical Incident,06/09/2011,06/08/2011,06/09/2011 02:13:18 AM,06/09/2011 02:13:46 AM,06/09/2011 02:14:25 AM,06/09/2011 02:16:28 AM,06/09/2011 02:18:26 AM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 02:26:33 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",111600026-E01 +131000376,75,13033772,Medical Incident,04/10/2013,04/10/2013,04/10/2013 09:15:15 PM,04/10/2013 09:15:36 PM,04/10/2013 09:16:30 PM,04/10/2013 09:16:53 PM,04/10/2013 09:22:05 PM,04/10/2013 09:36:00 PM,04/10/2013 10:01:58 PM,Code 2 Transport,04/10/2013 10:27:41 PM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",131000376-75 +120130233,83,12004492,Medical Incident,01/13/2012,01/13/2012,01/13/2012 04:42:13 PM,01/13/2012 04:43:24 PM,01/13/2012 04:51:00 PM,01/13/2012 04:51:27 PM,01/13/2012 05:02:51 PM,01/13/2012 05:24:17 PM,01/13/2012 05:49:35 PM,Code 2 Transport,01/13/2012 06:16:50 PM,1500 Block of CAYUGA AVE,SF,94112,B09,15,8335,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7165945100308, -122.446327405536)",120130233-83 +132670177,B02,13090630,Alarms,09/24/2013,09/24/2013,09/24/2013 12:38:52 PM,09/24/2013 12:39:58 PM,09/24/2013 12:40:32 PM,09/24/2013 12:42:50 PM,09/24/2013 12:44:34 PM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Other,09/24/2013 12:54:07 PM,600 Block of VAN NESS AVE,SF,94102,B02,36,3164,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.78147394156, -122.42068958116)",132670177-B02 +133550140,86,13120624,Medical Incident,12/21/2013,12/21/2013,12/21/2013 10:06:10 AM,12/21/2013 10:06:33 AM,12/21/2013 10:06:58 AM,12/21/2013 10:07:12 AM,12/21/2013 10:11:53 AM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Other,12/21/2013 10:12:25 AM,100 Block of 12TH ST,SF,94103,B02,36,5116,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7720804329053, -122.417575406744)",133550140-86 +140310247,T11,14010603,Structure Fire,01/31/2014,01/31/2014,01/31/2014 06:04:27 PM,01/31/2014 06:05:22 PM,01/31/2014 06:16:13 PM,01/31/2014 06:17:05 PM,01/31/2014 06:23:35 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,01/31/2014 08:32:49 PM,1300 Block of SHAFTER AVE,SF,94124,B10,17,6653,,3,3,false,Fire,2,TRUCK,17,10,10,Bayview Hunters Point,"(37.7283446395843, -122.386091726339)",140310247-T11 +132870289,B01,13097718,Structure Fire,10/14/2013,10/14/2013,10/14/2013 05:05:54 PM,10/14/2013 05:07:04 PM,10/14/2013 05:08:59 PM,10/14/2013 05:10:01 PM,10/14/2013 05:12:13 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 05:37:50 PM,700 Block of TAYLOR ST,SF,94108,B01,41,1446,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.7892825039082, -122.411912440084)",132870289-B01 +112260011,59,11074527,Medical Incident,08/14/2011,08/13/2011,08/14/2011 12:30:27 AM,08/14/2011 12:31:56 AM,08/14/2011 12:33:09 AM,08/14/2011 12:33:16 AM,08/14/2011 12:43:40 AM,08/14/2011 12:56:35 AM,08/14/2011 01:07:46 AM,Code 2 Transport,08/14/2011 01:37:15 AM,2ND ST/BRYANT ST,SF,94107,B03,8,2152,3,2,2,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7830778523618, -122.393618077491)",112260011-59 +130120270,B01,13004165,Alarms,01/12/2013,01/12/2013,01/12/2013 05:47:58 PM,01/12/2013 05:49:00 PM,01/12/2013 05:50:18 PM,01/12/2013 05:51:53 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/12/2013 05:54:04 PM,300 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,false,Alarm,1,CHIEF,2,1,3,Tenderloin,"(37.7864394524764, -122.409660751795)",130120270-B01 +160790726,71,16031329,Structure Fire,03/19/2016,03/18/2016,03/19/2016 07:08:27 AM,03/19/2016 07:08:27 AM,03/19/2016 07:12:52 AM,03/19/2016 07:12:59 AM,03/19/2016 07:14:29 AM,03/19/2016 07:34:58 AM,03/19/2016 08:11:17 AM,Code 2 Transport,03/19/2016 08:34:20 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",160790726-71 +160560305,71,16022236,Medical Incident,02/25/2016,02/24/2016,02/25/2016 03:37:06 AM,02/25/2016 03:39:11 AM,02/25/2016 03:39:25 AM,02/25/2016 03:39:32 AM,02/25/2016 03:49:07 AM,02/25/2016 03:56:33 AM,02/25/2016 04:03:33 AM,Code 2 Transport,02/25/2016 05:14:39 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160560305-71 +132320044,KM15,13078251,Medical Incident,08/20/2013,08/19/2013,08/20/2013 05:42:27 AM,08/20/2013 05:42:48 AM,08/20/2013 05:43:50 AM,08/20/2013 05:44:44 AM,08/20/2013 05:56:44 AM,08/20/2013 06:08:03 AM,08/20/2013 06:33:37 AM,Code 2 Transport,08/20/2013 06:50:40 AM,15TH ST/CHURCH ST,SF,94114,B02,6,5227,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7661300154558, -122.428819146831)",132320044-KM15 +103360214,AM06,10107508,Traffic Collision,12/02/2010,12/02/2010,12/02/2010 02:05:11 PM,12/02/2010 02:06:04 PM,12/02/2010 02:06:57 PM,12/02/2010 02:11:42 PM,12/02/2010 02:14:34 PM,12/02/2010 02:30:23 PM,12/02/2010 02:56:19 PM,Code 2 Transport,12/02/2010 03:29:10 PM,25TH AV/MARTIN LUTHER KING DR,SF,94122,B08,22,7452,3,3,3,false,,1,PRIVATE,6,7,1,Golden Gate Park,"(37.76677018548, -122.482371855409)",103360214-AM06 +140440036,67,14014838,Medical Incident,02/13/2014,02/12/2014,02/13/2014 03:14:10 AM,02/13/2014 03:15:59 AM,02/13/2014 03:16:26 AM,02/13/2014 03:17:12 AM,02/13/2014 03:24:47 AM,02/13/2014 03:41:21 AM,02/13/2014 03:57:01 AM,Code 2 Transport,02/13/2014 04:38:14 AM,0 Block of WHEAT ST,SF,94124,B10,44,6323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7230559060941, -122.400293769252)",140440036-67 +131690333,T15,13057498,Other,06/18/2013,06/18/2013,06/18/2013 06:06:39 PM,06/18/2013 06:07:44 PM,06/18/2013 06:08:12 PM,06/18/2013 06:09:36 PM,06/18/2013 06:13:56 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 06:25:14 PM,0 Block of GREENWOOD AVE,SF,94112,B09,15,8521,2,2,2,false,Alarm,1,TRUCK,1,9,7,West of Twin Peaks,"(37.728729309645, -122.454389262605)",131690333-T15 +113040276,E01,11100991,Structure Fire,10/31/2011,10/31/2011,10/31/2011 04:22:37 PM,10/31/2011 04:22:38 PM,10/31/2011 04:22:54 PM,10/31/2011 04:24:08 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 04:26:28 PM,400 Block of PINE ST,SF,94104,B01,13,1832,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7918712067867, -122.403230910204)",113040276-E01 +110520167,74,11017214,Medical Incident,02/21/2011,02/21/2011,02/21/2011 01:01:43 PM,02/21/2011 01:02:28 PM,02/21/2011 01:03:38 PM,02/21/2011 01:05:33 PM,02/21/2011 01:14:28 PM,02/21/2011 01:44:45 PM,02/21/2011 02:02:05 PM,Code 2 Transport,02/21/2011 02:28:20 PM,MASON ST/PACIFIC AV,SF,94133,B01,2,1416,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7962907638042, -122.411718940358)",110520167-74 +123200014,B02,12106248,Alarms,11/15/2012,11/14/2012,11/15/2012 02:02:33 AM,11/15/2012 02:04:11 AM,11/15/2012 02:04:15 AM,11/15/2012 02:05:56 AM,11/15/2012 02:09:21 AM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Fire,11/15/2012 02:11:50 AM,3300 Block of 17TH ST,SF,94103,B02,7,5247,3,3,3,false,Alarm,1,CHIEF,1,2,9,Mission,"(37.763392442414, -122.421087244049)",123200014-B02 +133280119,E03,13111412,Medical Incident,11/24/2013,11/24/2013,11/24/2013 09:40:51 AM,11/24/2013 09:40:57 AM,11/24/2013 09:41:09 AM,11/24/2013 09:42:17 AM,11/24/2013 09:45:11 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 09:51:33 AM,PINE ST/OCTAVIA ST,SF,94109,B04,38,3325,3,3,3,true,Non Life-threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7887868948983, -122.427059673264)",133280119-E03 +121670035,E07,12055275,Medical Incident,06/15/2012,06/14/2012,06/15/2012 04:34:09 AM,06/15/2012 04:34:40 AM,06/15/2012 04:35:16 AM,06/15/2012 04:36:45 AM,06/15/2012 04:38:29 AM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/15/2012 04:50:09 AM,1200 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7531662445821, -122.416408491437)",121670035-E07 +160240324,53,16009409,Medical Incident,01/24/2016,01/23/2016,01/24/2016 02:05:32 AM,01/24/2016 02:05:42 AM,01/24/2016 02:06:52 AM,01/24/2016 02:07:04 AM,01/24/2016 02:12:58 AM,01/24/2016 02:31:23 AM,01/24/2016 02:50:57 AM,Code 2 Transport,01/24/2016 03:28:15 AM,BUCHANAN ST/UNION ST,San Francisco,94123,B04,16,3443,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7975069484154, -122.432204290819)",160240324-53 +160790949,AM08,16031350,Medical Incident,03/19/2016,03/19/2016,03/19/2016 08:46:00 AM,03/19/2016 08:48:16 AM,03/19/2016 08:49:15 AM,03/19/2016 08:51:23 AM,03/19/2016 08:56:40 AM,03/19/2016 09:10:05 AM,03/19/2016 09:31:08 AM,Code 2 Transport,03/19/2016 09:52:24 AM,200 Block of BLK LOOMIS ST,San Francisco,94124,B10,9,6377,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7406551031849, -122.405235331357)",160790949-AM08 +140460381,RC3,14015839,Medical Incident,02/15/2014,02/15/2014,02/15/2014 10:53:42 PM,02/15/2014 10:54:05 PM,02/15/2014 10:59:52 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 11:02:16 PM,1800 Block of FELTON ST,SF,94134,B09,43,6153,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,9,9,Excelsior,"(37.7253187899942, -122.422855621147)",140460381-RC3 +121970151,E03,12065486,Alarms,07/15/2012,07/15/2012,07/15/2012 11:24:47 AM,07/15/2012 11:27:06 AM,07/15/2012 11:27:13 AM,07/15/2012 11:27:21 AM,07/15/2012 11:29:34 AM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/15/2012 11:48:38 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",121970151-E03 +102530295,84,10080031,Medical Incident,09/10/2010,09/10/2010,09/10/2010 05:00:11 PM,09/10/2010 05:00:44 PM,09/10/2010 05:01:20 PM,09/10/2010 05:01:56 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 05:09:02 PM,100 Block of CRESCENT AVE,SF,94110,B06,32,5644,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7351603117505, -122.421167943113)",102530295-84 +160140391,88,16005438,Medical Incident,01/14/2016,01/13/2016,01/14/2016 05:08:57 AM,01/14/2016 05:10:39 AM,01/14/2016 05:10:50 AM,01/14/2016 05:10:57 AM,01/14/2016 05:21:37 AM,01/14/2016 05:30:31 AM,01/14/2016 05:38:32 AM,Code 2 Transport,01/14/2016 05:59:49 AM,1200 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7504662478532, -122.396271587329)",160140391-88 +112840365,99,11094170,Medical Incident,10/11/2011,10/11/2011,10/11/2011 08:45:31 PM,10/11/2011 08:49:56 PM,10/11/2011 08:51:31 PM,10/11/2011 08:51:49 PM,10/11/2011 08:57:55 PM,10/11/2011 09:16:22 PM,10/11/2011 09:34:22 PM,Code 2 Transport,10/11/2011 09:55:56 PM,1700 Block of LA SALLE AVE,SF,94124,B10,25,6467,3,3,3,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7381169167757, -122.391416846144)",112840365-99 +131200186,E33,13040376,Medical Incident,04/30/2013,04/30/2013,04/30/2013 02:54:56 PM,04/30/2013 02:57:04 PM,04/30/2013 02:58:33 PM,04/30/2013 02:59:51 PM,04/30/2013 03:04:26 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,04/30/2013 03:23:37 PM,300 Block of ELLINGTON AVE,SF,94112,B09,33,8346,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7124278313923, -122.44655558742)",131200186-E33 +112080327,AM10,11068814,Medical Incident,07/27/2011,07/27/2011,07/27/2011 08:34:37 PM,07/27/2011 08:37:01 PM,07/27/2011 08:40:10 PM,07/27/2011 08:40:53 PM,07/27/2011 08:50:05 PM,07/27/2011 09:05:24 PM,07/27/2011 09:22:49 PM,Code 2 Transport,07/27/2011 09:59:58 PM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,1,1,2,false,,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",112080327-AM10 +120250189,E03,12008397,Alarms,01/25/2012,01/25/2012,01/25/2012 12:41:02 PM,01/25/2012 12:42:13 PM,01/25/2012 12:42:47 PM,01/25/2012 12:44:45 PM,01/25/2012 12:47:52 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 12:51:54 PM,1500 Block of CLAY ST,SF,94109,B04,41,1634,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7926970176404, -122.418156901165)",120250189-E03 +160060799,81,16002314,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:44:10 AM,01/06/2016 08:44:10 AM,01/06/2016 08:44:44 AM,01/06/2016 08:44:52 AM,01/06/2016 08:50:36 AM,01/06/2016 09:11:21 AM,01/06/2016 09:47:32 AM,Code 2 Transport,01/06/2016 10:30:41 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160060799-81 +132270154,84,13076583,Medical Incident,08/15/2013,08/15/2013,08/15/2013 11:47:12 AM,08/15/2013 11:48:59 AM,08/15/2013 11:50:29 AM,08/15/2013 11:50:36 AM,08/15/2013 11:57:46 AM,08/15/2013 12:11:04 PM,08/15/2013 12:39:37 PM,Code 2 Transport,08/15/2013 01:14:07 PM,100 Block of BERRY ST,SF,94158,B03,8,2171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",132270154-84 +123000133,RC2,12099395,Medical Incident,10/26/2012,10/26/2012,10/26/2012 10:47:56 AM,10/26/2012 10:50:50 AM,10/26/2012 10:51:17 AM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,Other,10/26/2012 10:59:37 AM,600 Block of 45TH AVE,SF,94121,B07,34,7273,1,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7762535401496, -122.506022206848)",123000133-RC2 +160061566,78,16002380,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:01:51 PM,01/06/2016 12:03:20 PM,01/06/2016 12:04:17 PM,01/06/2016 12:04:46 PM,01/06/2016 12:08:51 PM,01/06/2016 12:31:27 PM,01/06/2016 12:43:45 PM,Code 2 Transport,01/06/2016 01:28:12 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160061566-78 +131080281,B09,13036390,Structure Fire,04/18/2013,04/18/2013,04/18/2013 05:44:50 PM,04/18/2013 05:45:53 PM,04/18/2013 05:46:12 PM,04/18/2013 05:46:55 PM,04/18/2013 05:50:35 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/18/2013 06:09:17 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",131080281-B09 +110040248,E07,11001348,Medical Incident,01/04/2011,01/04/2011,01/04/2011 03:49:48 PM,01/04/2011 03:49:49 PM,01/04/2011 03:49:57 PM,01/04/2011 03:51:24 PM,01/04/2011 03:52:54 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/04/2011 04:05:09 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",110040248-E07 +103610223,E02,10115837,Medical Incident,12/27/2010,12/27/2010,12/27/2010 03:13:10 PM,12/27/2010 03:14:19 PM,12/27/2010 03:15:17 PM,12/27/2010 03:18:41 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,12/27/2010 03:20:58 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8069201392161, -122.407170160416)",103610223-E02 +160301841,AM06,16011793,Medical Incident,01/30/2016,01/30/2016,01/30/2016 12:41:30 PM,01/30/2016 12:45:54 PM,01/30/2016 12:46:17 PM,01/30/2016 12:46:54 PM,01/30/2016 12:55:38 PM,01/30/2016 01:20:50 PM,01/30/2016 01:46:06 PM,Code 2 Transport,01/30/2016 02:17:07 PM,600 Block of VISITACION AVE,San Francisco,94134,B09,44,6256,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7107682684881, -122.405720151199)",160301841-AM06 +132290261,67,13077362,Medical Incident,08/17/2013,08/17/2013,08/17/2013 03:52:11 PM,08/17/2013 03:53:59 PM,08/17/2013 03:55:24 PM,08/17/2013 03:55:41 PM,08/17/2013 04:02:04 PM,08/17/2013 04:21:35 PM,08/17/2013 04:29:15 PM,Code 2 Transport,08/17/2013 05:02:13 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",132290261-67 +133600210,E01,13122373,Medical Incident,12/26/2013,12/26/2013,12/26/2013 02:41:09 PM,12/26/2013 02:43:16 PM,12/26/2013 02:44:02 PM,12/26/2013 02:44:31 PM,12/26/2013 02:50:16 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 02:53:43 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",133600210-E01 +131530281,KM10,13051923,Medical Incident,06/02/2013,06/02/2013,06/02/2013 06:55:57 PM,06/02/2013 06:56:21 PM,06/02/2013 06:56:30 PM,06/02/2013 06:57:35 PM,06/02/2013 07:10:41 PM,06/02/2013 07:19:02 PM,06/02/2013 07:51:04 PM,Code 2 Transport,06/02/2013 08:31:42 PM,700 Block of MISSION ST,SF,94103,B03,1,2178,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",131530281-KM10 +160202473,76,16008067,Medical Incident,01/20/2016,01/20/2016,01/20/2016 03:47:32 PM,01/20/2016 03:48:32 PM,01/20/2016 03:49:11 PM,01/20/2016 03:49:17 PM,01/20/2016 03:50:38 PM,01/20/2016 04:01:06 PM,01/20/2016 04:07:17 PM,Code 2 Transport,01/20/2016 04:43:36 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160202473-76 +113430191,AM08,11113749,Medical Incident,12/09/2011,12/09/2011,12/09/2011 12:12:24 PM,12/09/2011 12:18:00 PM,12/09/2011 12:18:34 PM,12/09/2011 12:19:05 PM,12/09/2011 12:25:42 PM,12/09/2011 12:44:25 PM,12/09/2011 12:51:24 PM,Code 2 Transport,12/09/2011 01:25:43 PM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,false,,1,PRIVATE,3,4,2,Pacific Heights,"(37.7915320518223, -122.424182651752)",113430191-AM08 +131940226,E09,13065989,Vehicle Fire,07/13/2013,07/13/2013,07/13/2013 03:52:07 PM,07/13/2013 03:54:16 PM,07/13/2013 03:54:37 PM,07/13/2013 03:56:30 PM,07/13/2013 04:00:43 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Fire,07/13/2013 04:10:28 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,Fire,1,ENGINE,2,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",131940226-E09 +160041410,61,16001573,Medical Incident,01/04/2016,01/04/2016,01/04/2016 11:34:27 AM,01/04/2016 11:36:28 AM,01/04/2016 11:36:36 AM,01/04/2016 11:36:51 AM,01/04/2016 11:46:41 AM,01/04/2016 12:08:16 PM,01/04/2016 12:21:08 PM,Code 2 Transport,01/04/2016 01:08:50 PM,1400 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.7943258846738, -122.416450548399)",160041410-61 +160882735,62,16035040,Medical Incident,03/28/2016,03/28/2016,03/28/2016 04:59:14 PM,03/28/2016 04:59:51 PM,03/28/2016 05:00:04 PM,03/28/2016 05:00:15 PM,03/28/2016 05:04:44 PM,03/28/2016 05:23:04 PM,03/28/2016 05:39:38 PM,Code 2 Transport,03/28/2016 06:03:05 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160882735-62 +122840213,E12,12093982,Citizen Assist / Service Call,10/10/2012,10/10/2012,10/10/2012 03:41:11 PM,10/10/2012 03:42:24 PM,10/10/2012 03:42:31 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Unable to Locate,10/10/2012 03:55:43 PM,7TH AV/JUDAH ST,SF,94122,B08,12,7326,3,3,3,true,Alarm,1,ENGINE,1,8,5,Inner Sunset,"(37.7622688507499, -122.464042003168)",122840213-E12 +160470672,79,16018820,Traffic Collision,02/16/2016,02/15/2016,02/16/2016 07:55:44 AM,02/16/2016 07:55:44 AM,02/16/2016 07:56:38 AM,02/16/2016 07:56:45 AM,02/16/2016 08:01:35 AM,02/16/2016 08:13:51 AM,02/16/2016 08:32:39 AM,Code 2 Transport,02/16/2016 08:53:47 AM,2ND ST/FOLSOM ST,San Francisco,94107,B03,1,2147,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",160470672-79 +160020397,85,16000610,Medical Incident,01/02/2016,01/01/2016,01/02/2016 03:38:30 AM,01/02/2016 03:38:30 AM,01/02/2016 03:38:59 AM,01/02/2016 03:39:09 AM,01/02/2016 03:51:29 AM,01/02/2016 04:09:59 AM,01/02/2016 04:18:12 AM,Code 2 Transport,01/02/2016 04:42:06 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160020397-85 +140250165,54,14008553,Medical Incident,01/25/2014,01/25/2014,01/25/2014 12:32:00 PM,01/25/2014 12:33:18 PM,01/25/2014 12:33:29 PM,01/25/2014 12:35:46 PM,01/25/2014 12:35:48 PM,01/25/2014 12:50:36 PM,01/25/2014 12:54:37 PM,Code 2 Transport,01/25/2014 01:24:22 PM,800 Block of HYDE ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7886527895166, -122.416853689502)",140250165-54 +130700164,E03,13023315,Alarms,03/11/2013,03/11/2013,03/11/2013 11:25:44 AM,03/11/2013 11:25:44 AM,03/11/2013 11:26:18 AM,03/11/2013 11:26:31 AM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,Other,03/11/2013 11:27:36 AM,OFARRELL ST/TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,2,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",130700164-E03 +130920266,AM02,13030869,Medical Incident,04/02/2013,04/02/2013,04/02/2013 04:40:43 PM,04/02/2013 04:42:06 PM,04/02/2013 04:42:28 PM,04/02/2013 04:43:06 PM,04/02/2013 04:44:57 PM,04/02/2013 04:53:50 PM,04/02/2013 05:14:05 PM,Code 2 Transport,04/02/2013 05:33:58 PM,MISSION ST/LASKIE ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7767076869648, -122.41410689559)",130920266-AM02 +120420220,E19,12014063,Medical Incident,02/11/2012,02/11/2012,02/11/2012 02:04:16 PM,02/11/2012 02:06:31 PM,02/11/2012 02:08:25 PM,02/11/2012 02:09:24 PM,02/11/2012 02:11:04 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 02:25:08 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,1,1,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",120420220-E19 +113460270,T07,11114863,Administrative,12/12/2011,12/12/2011,12/12/2011 04:39:22 PM,12/12/2011 04:39:24 PM,12/12/2011 04:39:55 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 04:40:17 PM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,true,,1,TRUCK,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",113460270-T07 +130030347,E08,13001153,Medical Incident,01/03/2013,01/03/2013,01/03/2013 08:05:43 PM,01/03/2013 08:06:51 PM,01/03/2013 08:07:15 PM,01/03/2013 08:08:44 PM,01/03/2013 08:10:17 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 08:21:31 PM,600 Block of 5TH ST,SF,94107,B03,8,2236,1,1,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7762935385036, -122.398313400287)",130030347-E08 +160492425,AM10,16019785,Medical Incident,02/18/2016,02/18/2016,02/18/2016 03:44:53 PM,02/18/2016 03:44:53 PM,02/18/2016 03:45:18 PM,02/18/2016 03:45:43 PM,02/18/2016 03:48:48 PM,02/18/2016 03:59:22 PM,02/18/2016 04:17:34 PM,Code 2 Transport,02/18/2016 04:39:24 PM,100 Block of PARNASSUS AVE,San Francisco,94117,B05,12,5153,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7647201806273, -122.450480413582)",160492425-AM10 +112200301,E34,11072795,Traffic Collision,08/08/2011,08/08/2011,08/08/2011 07:19:58 PM,08/08/2011 07:20:49 PM,08/08/2011 07:21:01 PM,04/25/2016 02:03:16 PM,08/08/2011 07:22:01 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 07:22:43 PM,36TH AV/FULTON ST,SF,94121,B07,34,7253,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7720320135861, -122.495972014737)",112200301-E34 +111210367,B09,11040102,Alarms,05/01/2011,05/01/2011,05/01/2011 08:02:48 PM,05/01/2011 08:03:42 PM,05/01/2011 08:03:47 PM,05/01/2011 08:04:29 PM,05/01/2011 08:08:10 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 08:14:11 PM,0 Block of APTOS AVE,SF,94127,B09,15,8535,3,3,3,false,,1,CHIEF,3,9,7,West of Twin Peaks,"(37.7311895009745, -122.466176536195)",111210367-B09 +113580376,75,11119200,Structure Fire,12/24/2011,12/24/2011,12/24/2011 10:53:12 PM,12/24/2011 10:54:47 PM,12/24/2011 10:55:03 PM,12/24/2011 10:56:00 PM,12/24/2011 10:57:22 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,Other,12/24/2011 11:12:29 PM,700 Block of TAYLOR ST,SF,94109,B01,41,1446,3,3,3,true,,1,MEDIC,4,1,3,Nob Hill,"(37.7892649467456, -122.412049085376)",113580376-75 +140550096,72,14018507,Medical Incident,02/24/2014,02/24/2014,02/24/2014 09:36:27 AM,02/24/2014 09:37:02 AM,02/24/2014 09:37:19 AM,02/24/2014 09:37:56 AM,02/24/2014 09:43:30 AM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Patient Declined Transport,02/24/2014 10:15:32 AM,1400 Block of NEWCOMB AVE,SF,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",140550096-72 +132600061,AM22,13087866,Medical Incident,09/17/2013,09/16/2013,09/17/2013 03:56:14 AM,09/17/2013 03:57:30 AM,09/17/2013 03:57:51 AM,09/17/2013 03:58:28 AM,09/17/2013 04:01:31 AM,09/17/2013 04:17:09 AM,09/17/2013 04:39:54 AM,Code 3 Transport,09/17/2013 05:01:40 AM,0 Block of GRANADA AVE,SF,94112,B09,33,8465,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7191321202701, -122.457082657075)",132600061-AM22 +123240368,E05,12107887,Medical Incident,11/19/2012,11/19/2012,11/19/2012 08:36:48 PM,11/19/2012 08:37:23 PM,11/19/2012 08:38:04 PM,11/19/2012 08:39:28 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/19/2012 08:41:59 PM,400 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7849211326639, -122.416097390622)",123240368-E05 +160650580,AM22,16025831,Medical Incident,03/05/2016,03/04/2016,03/05/2016 05:48:31 AM,03/05/2016 05:50:08 AM,03/05/2016 05:51:37 AM,03/05/2016 05:52:20 AM,03/05/2016 05:58:50 AM,03/05/2016 06:25:35 AM,03/05/2016 06:34:40 AM,Code 2 Transport,03/05/2016 07:11:54 AM,2000 Block of FRANKLIN ST,San Francisco,94109,B04,38,3226,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7932922930477, -122.424537680646)",160650580-AM22 +140380320,E13,14012944,Medical Incident,02/07/2014,02/07/2014,02/07/2014 07:17:40 PM,02/07/2014 07:19:35 PM,02/07/2014 07:39:26 PM,02/07/2014 07:41:15 PM,02/07/2014 07:42:57 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 07:55:27 PM,700 Block of GRANT AVE,SF,94108,B01,13,1313,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7935970643774, -122.406243333463)",140380320-E13 +120100149,T02,12003448,Structure Fire,01/10/2012,01/10/2012,01/10/2012 11:32:01 AM,01/10/2012 11:33:06 AM,01/10/2012 11:33:23 AM,01/10/2012 11:35:24 AM,01/10/2012 11:35:35 AM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/10/2012 11:44:35 AM,1600 Block of JONES ST,SF,94109,B01,41,1511,3,3,3,false,Fire,1,TRUCK,3,1,3,Nob Hill,"(37.7960882125241, -122.415118210717)",120100149-T02 +132050181,65,13069416,Medical Incident,07/24/2013,07/24/2013,07/24/2013 01:30:33 PM,07/24/2013 01:32:19 PM,07/24/2013 01:33:30 PM,07/24/2013 01:34:52 PM,07/24/2013 01:37:54 PM,07/24/2013 02:08:03 PM,07/24/2013 02:15:14 PM,Code 2 Transport,07/24/2013 02:43:34 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",132050181-65 +131740113,81,13058989,Medical Incident,06/23/2013,06/23/2013,06/23/2013 08:34:42 AM,06/23/2013 08:36:06 AM,06/23/2013 08:37:22 AM,06/23/2013 08:38:00 AM,06/23/2013 08:48:00 AM,06/23/2013 09:10:41 AM,06/23/2013 09:18:20 AM,Code 2 Transport,06/23/2013 09:58:17 AM,1000 Block of SHOTWELL ST,SF,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7516425997951, -122.41502434397)",131740113-81 +103400317,E13,10108942,Alarms,12/06/2010,12/06/2010,12/06/2010 07:17:23 PM,12/06/2010 07:20:06 PM,12/06/2010 07:20:31 PM,12/06/2010 07:22:02 PM,12/06/2010 07:22:31 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Fire,12/06/2010 07:52:47 PM,300 Block of CLAY ST,SF,94111,B01,13,1161,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7950340354224, -122.399728412504)",103400317-E13 +133620095,B07,13122921,Medical Incident,12/28/2013,12/28/2013,12/28/2013 09:15:36 AM,12/28/2013 09:15:42 AM,12/28/2013 09:20:24 AM,12/28/2013 09:21:25 AM,12/28/2013 09:29:04 AM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 10:27:28 AM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,E,E,3,false,Potentially Life-Threatening,1,CHIEF,6,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",133620095-B07 +110540004,84,11017685,Medical Incident,02/23/2011,02/22/2011,02/23/2011 12:14:47 AM,02/23/2011 12:16:33 AM,02/23/2011 12:16:52 AM,02/23/2011 12:17:05 AM,02/23/2011 12:23:27 AM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Patient Declined Transport,02/23/2011 01:26:43 AM,500 Block of CIRCULAR AVE,SF,94112,B09,15,8222,1,3,3,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7279081274921, -122.444828658149)",110540004-84 +112740091,71,11090535,Medical Incident,10/01/2011,09/30/2011,10/01/2011 06:07:56 AM,10/01/2011 06:10:00 AM,10/01/2011 06:10:33 AM,04/25/2016 02:02:23 PM,10/01/2011 06:21:42 AM,10/01/2011 06:34:18 AM,10/01/2011 06:39:32 AM,Code 2 Transport,10/01/2011 06:15:59 AM,3RD ST/MARIN ST,SF,94124,B10,25,2641,E,E,3,true,,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7490047598095, -122.387456311596)",112740091-71 +132680341,65,13091124,Medical Incident,09/25/2013,09/25/2013,09/25/2013 06:32:47 PM,09/25/2013 06:36:14 PM,09/25/2013 06:56:46 PM,09/25/2013 07:09:00 PM,09/25/2013 07:16:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Unable to Locate,09/25/2013 07:20:07 PM,3300 Block of 19TH ST,SF,94110,B06,7,5433,2,2,2,false,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7603229790338, -122.418667330218)",132680341-65 +160430003,AM16,16017094,Medical Incident,02/12/2016,02/11/2016,02/12/2016 12:01:14 AM,02/12/2016 12:03:01 AM,02/12/2016 12:03:36 AM,02/12/2016 12:03:59 AM,02/12/2016 12:11:04 AM,02/12/2016 12:27:26 AM,02/12/2016 12:35:33 AM,Code 2 Transport,02/12/2016 01:10:45 AM,16TH ST/MARKET ST,San Francisco,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",160430003-AM16 +111520157,RC3,11050277,Medical Incident,06/01/2011,06/01/2011,06/01/2011 12:38:11 PM,06/01/2011 12:39:36 PM,06/01/2011 12:39:47 PM,04/25/2016 02:04:21 PM,06/01/2011 12:42:31 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/01/2011 12:46:58 PM,700 Block of ANDERSON ST,SF,94110,B06,32,5743,3,3,3,true,,1,RESCUE CAPTAIN,1,6,9,Bernal Heights,"(37.7340529990627, -122.415549507157)",111520157-RC3 +131470176,E42,13049881,Medical Incident,05/27/2013,05/27/2013,05/27/2013 02:21:55 PM,05/27/2013 02:23:31 PM,05/27/2013 02:23:56 PM,05/27/2013 02:25:09 PM,05/27/2013 02:26:18 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,Other,05/27/2013 02:35:48 PM,2600 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7282171063336, -122.403911865205)",131470176-E42 +122770013,T10,12091385,Structure Fire,10/03/2012,10/02/2012,10/03/2012 01:10:51 AM,10/03/2012 01:11:40 AM,10/03/2012 01:12:01 AM,10/03/2012 01:13:54 AM,10/03/2012 01:19:02 AM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 01:20:16 AM,2500 Block of CHESTNUT ST,SF,94123,B04,16,4314,3,3,3,false,Alarm,1,TRUCK,6,4,2,Marina,"(37.7996189614584, -122.445229713515)",122770013-T10 +160320475,62,16012456,Medical Incident,02/01/2016,01/31/2016,02/01/2016 06:31:03 AM,02/01/2016 06:33:38 AM,02/01/2016 06:34:29 AM,02/01/2016 06:34:42 AM,02/01/2016 06:47:32 AM,02/01/2016 06:58:55 AM,02/01/2016 07:15:23 AM,Code 2 Transport,02/01/2016 07:53:28 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160320475-62 +160400552,55,16015901,Medical Incident,02/09/2016,02/08/2016,02/09/2016 07:19:02 AM,02/09/2016 07:19:28 AM,02/09/2016 07:19:57 AM,02/09/2016 07:20:31 AM,02/09/2016 07:37:27 AM,02/09/2016 08:43:09 AM,02/09/2016 08:22:28 AM,Code 2 Transport,02/09/2016 08:58:34 AM,2700 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7270507466082, -122.403281820851)",160400552-55 +110820404,AM20,11027127,Medical Incident,03/23/2011,03/23/2011,03/23/2011 11:57:43 PM,03/23/2011 11:58:50 PM,03/23/2011 11:59:11 PM,03/23/2011 11:59:49 PM,03/24/2011 12:04:05 AM,03/24/2011 12:39:00 AM,03/24/2011 12:47:32 AM,Code 3 Transport,03/24/2011 01:53:11 AM,0 Block of PERRY ST,SF,94107,B03,8,2175,3,2,2,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",110820404-AM20 +160541461,KM13,16021555,Traffic Collision,02/23/2016,02/23/2016,02/23/2016 11:35:42 AM,02/23/2016 11:35:42 AM,02/23/2016 11:41:59 AM,02/23/2016 11:42:51 AM,02/23/2016 11:57:30 AM,02/23/2016 12:21:28 PM,02/23/2016 12:41:10 PM,Code 2 Transport,02/23/2016 01:28:18 PM,OAK ST/BUCHANAN ST,San Francisco,94102,B02,36,3414,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7743884678082, -122.427546415857)",160541461-KM13 +122810342,81,12093128,Medical Incident,10/07/2012,10/07/2012,10/07/2012 08:08:54 PM,10/07/2012 08:09:53 PM,10/07/2012 08:10:05 PM,10/07/2012 08:10:35 PM,10/07/2012 08:16:30 PM,10/07/2012 08:35:42 PM,10/07/2012 09:22:49 PM,Code 3 Transport,10/07/2012 09:50:22 PM,0 Block of WHITTIER ST,SF,94112,B09,33,6214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7092579223953, -122.447850030971)",122810342-81 +130400103,RC1,13013597,Medical Incident,02/09/2013,02/09/2013,02/09/2013 08:14:20 AM,02/09/2013 08:15:49 AM,02/09/2013 08:31:51 AM,02/09/2013 08:31:56 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 08:37:36 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,1,1,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",130400103-RC1 +112100214,E01,11069360,Medical Incident,07/29/2011,07/29/2011,07/29/2011 04:52:18 PM,07/29/2011 04:53:13 PM,07/29/2011 04:53:48 PM,07/29/2011 04:54:03 PM,07/29/2011 04:57:51 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 05:05:53 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",112100214-E01 +120330060,E08,12010801,Medical Incident,02/02/2012,02/01/2012,02/02/2012 07:11:20 AM,02/02/2012 07:13:48 AM,02/02/2012 07:14:28 AM,02/02/2012 07:16:17 AM,02/02/2012 07:19:18 AM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/02/2012 07:32:56 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",120330060-E08 +120450281,T11,12015049,Other,02/14/2012,02/14/2012,02/14/2012 05:36:19 PM,02/14/2012 05:36:58 PM,02/14/2012 05:37:11 PM,02/14/2012 05:38:15 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 05:45:36 PM,0 Block of MIRABEL AVE,SF,94110,B06,11,5657,3,3,3,false,Alarm,1,TRUCK,1,6,9,Bernal Heights,"(37.7464196657942, -122.416456065811)",120450281-T11 +160472445,68,16018995,Medical Incident,02/16/2016,02/16/2016,02/16/2016 03:45:33 PM,02/16/2016 03:46:21 PM,02/16/2016 03:48:00 PM,02/16/2016 03:48:06 PM,02/16/2016 03:50:35 PM,02/16/2016 04:07:50 PM,02/16/2016 04:16:18 PM,Code 2 Transport,02/16/2016 04:59:38 PM,0 Block of GEARY ST,San Francisco,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",160472445-68 +130290321,E32,13010026,Traffic Collision,01/29/2013,01/29/2013,01/29/2013 07:29:22 PM,01/29/2013 07:29:57 PM,01/29/2013 07:30:21 PM,01/29/2013 07:32:38 PM,01/29/2013 07:35:13 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/29/2013 08:19:02 PM,0 Block of CAYUGA AVE,SF,94112,B09,32,8136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,8,Outer Mission,"(37.7315204759574, -122.429336724752)",130290321-E32 +103490297,T03,10112018,Alarms,12/15/2010,12/15/2010,12/15/2010 06:51:30 PM,12/15/2010 06:53:36 PM,12/15/2010 06:54:10 PM,12/15/2010 06:54:24 PM,12/15/2010 06:57:02 PM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Other,12/15/2010 07:00:25 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,false,,1,TRUCK,3,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",103490297-T03 +103040092,E10,10097048,Medical Incident,10/31/2010,10/30/2010,10/31/2010 03:27:39 AM,10/31/2010 03:32:28 AM,10/31/2010 03:32:40 AM,10/31/2010 03:34:30 AM,10/31/2010 03:37:06 AM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Medical Examiner,10/31/2010 04:26:15 AM,2200 Block of DIVISADERO ST,SF,94115,B04,10,4162,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7903051652143, -122.440963312466)",103040092-E10 +102930037,93,10093328,Structure Fire,10/20/2010,10/19/2010,10/20/2010 05:10:10 AM,10/20/2010 05:11:31 AM,10/20/2010 05:12:18 AM,10/20/2010 05:12:45 AM,10/20/2010 05:17:39 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 05:20:32 AM,EDDY ST/JONES ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,4,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",102930037-93 +160092242,85,16003698,Medical Incident,01/09/2016,01/09/2016,01/09/2016 03:45:47 PM,01/09/2016 03:45:47 PM,01/09/2016 03:45:55 PM,01/09/2016 03:46:19 PM,01/09/2016 03:58:20 PM,01/09/2016 04:24:25 PM,01/09/2016 04:31:42 PM,Code 2 Transport,01/09/2016 05:28:59 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,2,3,3,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",160092242-85 +113360047,68,11111114,Medical Incident,12/02/2011,12/01/2011,12/02/2011 03:51:35 AM,12/02/2011 03:53:32 AM,12/02/2011 03:54:02 AM,12/02/2011 03:56:56 AM,12/02/2011 04:00:07 AM,12/02/2011 04:18:51 AM,04/25/2016 02:01:22 PM,Code 2 Transport,12/02/2011 04:26:28 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",113360047-68 +121640287,E01,12054484,Medical Incident,06/12/2012,06/12/2012,06/12/2012 05:54:23 PM,06/12/2012 05:54:57 PM,06/12/2012 05:55:49 PM,06/12/2012 05:56:51 PM,06/12/2012 05:59:19 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 06:14:15 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121640287-E01 +140450009,E19,14015175,Water Rescue,02/14/2014,02/13/2014,02/14/2014 12:41:48 AM,02/14/2014 12:45:41 AM,02/14/2014 12:46:18 AM,02/14/2014 12:47:51 AM,02/14/2014 12:51:28 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 02:59:12 AM,SKYLINE BL/GREAT HY,SF,94132,B08,19,8713,,E,3,true,Fire,1,ENGINE,1,8,7,Lakeshore,"(37.7252595509479, -122.503040635623)",140450009-E19 +103120332,68,10100168,Structure Fire,11/08/2010,11/08/2010,11/08/2010 09:32:52 PM,11/08/2010 09:34:37 PM,11/08/2010 09:34:56 PM,04/25/2016 02:07:41 PM,11/08/2010 09:40:18 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 09:44:33 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,MEDIC,9,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",103120332-68 +160881463,88,16034921,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:24:29 AM,03/28/2016 11:27:58 AM,03/28/2016 11:28:08 AM,03/28/2016 11:28:36 AM,03/28/2016 11:33:47 AM,03/28/2016 11:51:19 AM,03/28/2016 12:09:53 PM,Code 2 Transport,03/28/2016 12:35:03 PM,600 Block of 6TH AVE,San Francisco,94118,B07,31,7123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7763050234828, -122.463873976155)",160881463-88 +160921142,54,16036384,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:14:12 AM,04/01/2016 10:14:12 AM,04/01/2016 10:15:23 AM,04/01/2016 10:16:01 AM,04/01/2016 10:29:14 AM,04/01/2016 10:39:31 AM,04/01/2016 10:59:20 AM,Code 2 Transport,04/01/2016 11:44:45 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,3,3,true,Potentially Life-Threatening,1,MEDIC,4,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160921142-54 +120660288,T16,12021913,Medical Incident,03/06/2012,03/06/2012,03/06/2012 04:24:52 PM,03/06/2012 04:26:12 PM,03/06/2012 04:26:32 PM,03/06/2012 04:26:52 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 04:27:57 PM,2000 Block of UNION ST,SF,94123,B04,16,3443,3,3,3,false,Potentially Life-Threatening,1,TRUCK,5,4,2,Marina,"(37.7974567249549, -122.433036469991)",120660288-T16 +140650036,78,14021852,Medical Incident,03/06/2014,03/05/2014,03/06/2014 03:45:30 AM,03/06/2014 03:48:23 AM,03/06/2014 03:49:13 AM,03/06/2014 03:49:44 AM,03/06/2014 04:00:20 AM,03/06/2014 04:12:10 AM,03/06/2014 04:31:10 AM,Code 2 Transport,03/06/2014 05:27:33 AM,MISSION ST/EXCELSIOR AV,SAN FRANCISCO,94112,B09,43,6116,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7262362449736, -122.433623592293)",140650036-78 +103550237,RC1,10114002,Medical Incident,12/21/2010,12/21/2010,12/21/2010 04:09:44 PM,12/21/2010 04:11:58 PM,12/21/2010 04:12:17 PM,12/21/2010 04:13:12 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 04:19:34 PM,200 Block of BUSH ST,SF,94104,B01,13,1235,E,E,3,true,,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7910179625716, -122.401556724229)",103550237-RC1 +111790061,AM16,11059009,Medical Incident,06/28/2011,06/27/2011,06/28/2011 07:38:04 AM,06/28/2011 07:40:20 AM,06/28/2011 07:40:53 AM,06/28/2011 07:41:39 AM,06/28/2011 07:43:09 AM,06/28/2011 07:50:51 AM,06/28/2011 08:06:05 AM,Code 2 Transport,06/28/2011 08:46:41 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",111790061-AM16 +133240149,E06,13109991,Medical Incident,11/20/2013,11/20/2013,11/20/2013 10:28:09 AM,11/20/2013 10:29:43 AM,11/20/2013 10:32:03 AM,11/20/2013 10:34:13 AM,11/20/2013 10:38:12 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Fire,11/20/2013 10:45:45 AM,100 Block of ALPINE TER,SF,94117,B05,6,5134,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7681326738343, -122.437454372806)",133240149-E06 +121870270,D3,12062364,Structure Fire,07/05/2012,07/05/2012,07/05/2012 03:36:41 PM,07/05/2012 03:38:58 PM,07/05/2012 03:39:20 PM,07/05/2012 03:41:49 PM,07/05/2012 03:47:41 PM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/05/2012 04:11:22 PM,0 Block of RED ROCK WAY,SF,94131,B06,26,8167,3,3,3,false,Fire,1,CHIEF,8,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",121870270-D3 +121000280,KM04,12033215,Medical Incident,04/09/2012,04/09/2012,04/09/2012 03:55:55 PM,04/09/2012 03:57:14 PM,04/09/2012 03:59:24 PM,04/09/2012 04:00:28 PM,04/09/2012 04:05:09 PM,04/09/2012 04:23:09 PM,04/09/2012 04:32:27 PM,Code 2 Transport,04/09/2012 05:04:51 PM,1300 Block of HOWARD ST,SF,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7742496611166, -122.414204535023)",121000280-KM04 +160881936,52,16034973,Medical Incident,03/28/2016,03/28/2016,03/28/2016 01:32:53 PM,03/28/2016 01:33:37 PM,03/28/2016 01:36:27 PM,03/28/2016 01:36:43 PM,03/28/2016 01:40:10 PM,03/28/2016 01:58:29 PM,03/28/2016 02:26:07 PM,Code 3 Transport,03/28/2016 02:32:09 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",160881936-52 +133080092,81,13104643,Medical Incident,11/04/2013,11/04/2013,11/04/2013 08:25:36 AM,11/04/2013 08:27:15 AM,11/04/2013 08:30:18 AM,11/04/2013 08:30:25 AM,11/04/2013 08:48:41 AM,11/04/2013 08:57:51 AM,11/04/2013 09:21:23 AM,Code 2 Transport,11/04/2013 09:44:45 AM,400 Block of LONDON ST,SF,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7219582737449, -122.435737208827)",133080092-81 +123220342,E10,12107186,Medical Incident,11/17/2012,11/17/2012,11/17/2012 07:59:06 PM,11/17/2012 07:59:24 PM,11/17/2012 07:59:35 PM,11/17/2012 08:01:12 PM,11/17/2012 08:05:09 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 08:28:51 PM,2100 Block of BAKER ST,SF,94115,B04,10,4265,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7907758773739, -122.444320991453)",123220342-E10 +120890067,T14,12029379,Alarms,03/29/2012,03/29/2012,03/29/2012 08:17:35 AM,03/29/2012 08:17:40 AM,03/29/2012 08:17:46 AM,03/29/2012 08:19:29 AM,03/29/2012 08:22:41 AM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Other,03/29/2012 08:29:05 AM,700 Block of 20TH AVE,SF,94121,B07,31,7166,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.7737509765237, -122.478835238462)",120890067-T14 +130520329,B04,13017706,Structure Fire,02/21/2013,02/21/2013,02/21/2013 07:40:42 PM,02/21/2013 07:41:47 PM,02/21/2013 07:42:08 PM,02/21/2013 07:43:29 PM,02/21/2013 07:46:42 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,02/21/2013 07:58:33 PM,1800 Block of TURK ST,SF,94115,B05,5,4152,3,3,3,false,Alarm,1,CHIEF,2,5,5,Western Addition,"(37.7796033022954, -122.439579939229)",130520329-B04 +120950180,71,12031470,Medical Incident,04/04/2012,04/04/2012,04/04/2012 02:13:36 PM,04/04/2012 02:13:51 PM,04/04/2012 02:14:40 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 02:16:29 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",120950180-71 +160521023,AM08,16020748,Medical Incident,02/21/2016,02/21/2016,02/21/2016 09:36:50 AM,02/21/2016 09:37:19 AM,02/21/2016 09:38:49 AM,02/21/2016 09:39:22 AM,02/21/2016 09:48:44 AM,02/21/2016 09:58:15 AM,02/21/2016 10:15:13 AM,Code 2 Transport,02/21/2016 10:41:18 AM,MISSION ST/25TH ST,San Francisco,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7506396511688, -122.418287870978)",160521023-AM08 +121110191,E51,12036723,Medical Incident,04/20/2012,04/20/2012,04/20/2012 12:24:55 PM,04/20/2012 12:25:58 PM,04/20/2012 12:26:18 PM,04/20/2012 12:26:44 PM,04/20/2012 12:31:43 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 12:41:48 PM,LAGUNA ST/MARINA BL,SF,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8051995453814, -122.432090718256)",121110191-E51 +132850172,83,13096933,Medical Incident,10/12/2013,10/12/2013,10/12/2013 12:28:08 PM,10/12/2013 12:30:02 PM,10/12/2013 12:30:32 PM,10/12/2013 12:30:40 PM,10/12/2013 12:34:00 PM,10/12/2013 12:53:28 PM,10/12/2013 01:13:49 PM,Code 2 Transport,10/12/2013 01:35:33 PM,100 Block of HAHN ST,SF,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7127277704943, -122.415710728503)",132850172-83 +113340127,E42,11110562,Medical Incident,11/30/2011,11/30/2011,11/30/2011 11:27:07 AM,11/30/2011 11:27:52 AM,11/30/2011 11:28:08 AM,11/30/2011 11:29:27 AM,11/30/2011 11:31:31 AM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/30/2011 11:36:44 AM,300 Block of TOPEKA AVE,SF,94124,B10,42,6473,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7315055399966, -122.39541036642)",113340127-E42 +122350299,87,12077975,Medical Incident,08/22/2012,08/22/2012,08/22/2012 07:31:25 PM,08/22/2012 07:33:08 PM,08/22/2012 07:35:50 PM,08/22/2012 07:50:39 PM,04/25/2016 01:57:06 PM,08/22/2012 08:11:07 PM,08/22/2012 09:01:37 PM,Code 2 Transport,08/22/2012 09:09:15 PM,MARY ST/MINNA ST,SF,94103,B03,1,2246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7816802649177, -122.406711167532)",122350299-87 +133180267,E01,13108145,Medical Incident,11/14/2013,11/14/2013,11/14/2013 04:26:36 PM,11/14/2013 04:28:28 PM,11/14/2013 04:30:28 PM,04/25/2016 01:49:46 PM,11/14/2013 04:32:54 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,Other,11/14/2013 04:42:10 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",133180267-E01 +160233721,85,16009353,Medical Incident,01/23/2016,01/23/2016,01/23/2016 10:37:16 PM,01/23/2016 10:37:16 PM,01/23/2016 10:38:03 PM,01/23/2016 10:38:16 PM,01/23/2016 10:45:16 PM,01/23/2016 10:59:14 PM,01/23/2016 11:18:57 PM,Code 2 Transport,01/24/2016 12:05:38 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160233721-85 +123380249,E48,12112743,Medical Incident,12/03/2012,12/03/2012,12/03/2012 02:33:01 PM,12/03/2012 02:33:45 PM,12/03/2012 02:34:05 PM,12/03/2012 02:35:12 PM,12/03/2012 02:37:08 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 03:02:22 PM,1400 Block of STURGEON ST,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,None,6,Treasure Island,"(37.8263703736705, -122.375421941102)",123380249-E48 +123380136,E41,12112650,Administrative,12/03/2012,12/03/2012,12/03/2012 10:06:30 AM,12/03/2012 10:06:36 AM,12/03/2012 10:06:40 AM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Fire,12/03/2012 10:07:46 AM,1300 Block of LEAVENWORTH ST,SF,94109,B01,41,1536,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",123380136-E41 +160741715,AM02,16029334,Medical Incident,03/14/2016,03/14/2016,03/14/2016 12:41:43 PM,03/14/2016 12:44:41 PM,03/14/2016 12:45:41 PM,03/14/2016 12:46:23 PM,03/14/2016 12:54:58 PM,03/14/2016 01:18:31 PM,03/14/2016 01:34:27 PM,Code 2 Transport,03/14/2016 02:14:19 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160741715-AM02 +120760046,E36,12025115,Structure Fire,03/16/2012,03/15/2012,03/16/2012 07:24:50 AM,03/16/2012 07:24:50 AM,03/16/2012 07:24:57 AM,03/16/2012 07:26:50 AM,03/16/2012 07:30:25 AM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Other,03/16/2012 07:56:43 AM,0 Block of DUBOCE AVE,SF,94103,B02,36,5124,3,3,3,false,Alarm,1,ENGINE,1,2,9,Mission,"(37.7698769653623, -122.420425746328)",120760046-E36 +131610007,68,13054536,Medical Incident,06/10/2013,06/09/2013,06/10/2013 12:25:38 AM,06/10/2013 12:26:39 AM,06/10/2013 12:26:47 AM,06/10/2013 12:27:10 AM,06/10/2013 12:37:56 AM,06/10/2013 12:50:03 AM,06/10/2013 01:01:28 AM,Code 2 Transport,06/10/2013 01:29:21 AM,MOUNT VERNON AV/ELLINGTON AV,SF,94112,B09,43,6176,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7150420552704, -122.443255963332)",131610007-68 +130780192,E01,13026028,Administrative,03/19/2013,03/19/2013,03/19/2013 12:04:07 PM,03/19/2013 12:04:10 PM,03/19/2013 12:04:30 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 12:04:54 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",130780192-E01 +112950394,E28,11098033,Medical Incident,10/22/2011,10/22/2011,10/22/2011 11:26:11 PM,10/22/2011 11:26:57 PM,10/22/2011 11:28:24 PM,10/22/2011 11:29:39 PM,10/22/2011 11:31:24 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/22/2011 11:41:03 PM,1000 Block of COLUMBUS AVE,SF,94133,B01,28,1434,3,3,3,true,,1,ENGINE,1,1,3,Russian Hill,"(37.8036980388406, -122.41520685226)",112950394-E28 +122130004,B01,12070554,Alarms,07/31/2012,07/30/2012,07/31/2012 12:12:47 AM,07/31/2012 12:15:28 AM,07/31/2012 12:15:38 AM,07/31/2012 12:17:56 AM,07/31/2012 12:21:02 AM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Fire,07/31/2012 12:21:29 AM,1400 Block of PACIFIC AVE,SF,94109,B01,41,1565,3,3,3,false,Alarm,1,CHIEF,3,1,3,Russian Hill,"(37.7954660831968, -122.418715545845)",122130004-B01 +140050135,E03,14001760,Medical Incident,01/05/2014,01/05/2014,01/05/2014 10:21:12 AM,01/05/2014 10:21:13 AM,01/05/2014 10:21:51 AM,01/05/2014 10:22:49 AM,01/05/2014 10:25:05 AM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,No Merit,01/05/2014 10:29:33 AM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",140050135-E03 +131550060,81,13052431,Medical Incident,06/04/2013,06/03/2013,06/04/2013 06:16:58 AM,06/04/2013 06:18:50 AM,06/04/2013 06:21:37 AM,06/04/2013 06:21:42 AM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/04/2013 06:30:35 AM,400 Block of TURK ST,SF,94102,B02,3,1554,E,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",131550060-81 +120300284,AM10,12010087,Medical Incident,01/30/2012,01/30/2012,01/30/2012 08:28:28 PM,01/30/2012 08:31:35 PM,01/30/2012 08:32:47 PM,01/30/2012 08:33:29 PM,01/30/2012 08:40:32 PM,01/30/2012 08:42:47 PM,01/30/2012 08:47:27 PM,Code 2 Transport,01/30/2012 09:13:28 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",120300284-AM10 +160093096,AM22,16003771,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:38:36 PM,01/09/2016 07:39:56 PM,01/09/2016 07:41:04 PM,01/09/2016 07:41:52 PM,01/09/2016 08:04:37 PM,01/09/2016 08:04:44 PM,01/09/2016 08:15:07 PM,Code 2 Transport,01/09/2016 08:58:30 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160093096-AM22 +122790008,E13,12092083,Alarms,10/05/2012,10/04/2012,10/05/2012 12:32:18 AM,10/05/2012 12:33:34 AM,10/05/2012 12:33:56 AM,10/05/2012 12:35:38 AM,10/05/2012 12:38:15 AM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/05/2012 12:51:42 AM,300 Block of GRANT AVE,SF,94108,B01,13,1315,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7903312930658, -122.405480762269)",122790008-E13 +130870312,T02,13029129,Structure Fire,03/28/2013,03/28/2013,03/28/2013 06:56:44 PM,03/28/2013 06:56:44 PM,03/28/2013 06:57:37 PM,03/28/2013 06:58:29 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 07:01:13 PM,POWELL ST/POST ST,SF,94108,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7882931920047, -122.408401551902)",130870312-T02 +130320063,E44,13010823,Medical Incident,02/01/2013,01/31/2013,02/01/2013 07:38:13 AM,02/01/2013 07:39:44 AM,02/01/2013 07:40:02 AM,02/01/2013 07:40:52 AM,02/01/2013 07:45:08 AM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,02/01/2013 07:52:12 AM,300 Block of LELAND AVE,SF,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7132669181456, -122.409797388672)",130320063-E44 +130570244,E24,13019224,Medical Incident,02/26/2013,02/26/2013,02/26/2013 04:46:04 PM,02/26/2013 04:46:04 PM,02/26/2013 04:46:18 PM,02/26/2013 04:50:13 PM,02/26/2013 04:50:25 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 05:04:40 PM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",130570244-E24 +140050243,AR1,14001858,Structure Fire,01/05/2014,01/05/2014,01/05/2014 04:23:35 PM,01/05/2014 04:24:36 PM,01/05/2014 04:38:31 PM,01/05/2014 04:38:50 PM,01/05/2014 04:49:25 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 06:22:49 PM,0 Block of TURK ST,SF,94102,B03,1,1365,,3,3,false,Alarm,1,INVESTIGATION,9,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",140050243-AR1 +140400327,88,14013699,Medical Incident,02/09/2014,02/09/2014,02/09/2014 06:47:54 PM,02/09/2014 06:49:54 PM,02/09/2014 07:06:54 PM,02/09/2014 07:07:44 PM,02/09/2014 07:24:15 PM,02/09/2014 07:40:42 PM,02/09/2014 07:59:40 PM,Code 2 Transport,02/09/2014 08:19:53 PM,300 Block of 17TH AVE,SF,94121,B07,31,7161,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7814378040814, -122.476306962783)",140400327-88 +111040309,E33,11034581,Administrative,04/14/2011,04/14/2011,04/14/2011 08:12:11 PM,04/14/2011 08:12:16 PM,04/14/2011 08:12:36 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/14/2011 08:13:23 PM,0 Block of CAPITOL AVE,SF,94112,B09,33,8374,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.710896081508, -122.458931105722)",111040309-E33 +133140031,B02,13106628,Alarms,11/10/2013,11/09/2013,11/10/2013 02:08:01 AM,11/10/2013 02:09:58 AM,11/10/2013 02:10:38 AM,04/25/2016 01:49:50 PM,11/10/2013 02:10:59 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Fire,11/10/2013 02:20:15 AM,1300 Block of FULTON ST,SF,94117,B05,21,4243,3,3,3,false,Alarm,1,CHIEF,1,5,5,Hayes Valley,"(37.7766957145874, -122.438999700924)",133140031-B02 +112460041,B03,11080997,Medical Incident,09/03/2011,09/02/2011,09/03/2011 02:26:57 AM,09/03/2011 02:27:28 AM,09/03/2011 02:27:52 AM,09/03/2011 02:28:51 AM,09/03/2011 02:31:10 AM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/03/2011 02:39:14 AM,1000 Block of HARRISON ST,SF,94103,B03,8,2254,E,E,3,false,,1,CHIEF,1,3,6,South of Market,"(37.7770983962506, -122.404388964595)",112460041-B03 +121170357,E21,12038932,Administrative,04/26/2012,04/26/2012,04/26/2012 11:11:42 PM,04/26/2012 11:12:00 PM,04/26/2012 11:12:11 PM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,Other,04/26/2012 11:12:39 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",121170357-E21 +160152936,KM11,16006089,Medical Incident,01/15/2016,01/15/2016,01/15/2016 05:37:07 PM,01/15/2016 05:41:25 PM,01/15/2016 05:41:46 PM,01/15/2016 05:42:37 PM,01/15/2016 05:46:12 PM,01/15/2016 06:13:10 PM,01/15/2016 06:21:46 PM,Code 2 Transport,01/15/2016 06:56:50 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160152936-KM11 +113080216,KM11,11102337,Medical Incident,11/04/2011,11/04/2011,11/04/2011 01:43:57 PM,11/04/2011 01:44:18 PM,11/04/2011 01:45:15 PM,11/04/2011 01:45:57 PM,11/04/2011 01:59:38 PM,11/04/2011 02:03:18 PM,11/04/2011 02:33:47 PM,Code 2 Transport,11/04/2011 03:03:16 PM,100 Block of HARKNESS AVE,SF,94134,B10,44,6317,3,2,2,false,,1,PRIVATE,2,10,10,Visitacion Valley,"(37.7176973826684, -122.401132258156)",113080216-KM11 +160580849,65,16023042,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:07:48 AM,02/27/2016 08:09:24 AM,02/27/2016 08:10:08 AM,02/27/2016 08:10:15 AM,02/27/2016 08:20:18 AM,02/27/2016 08:30:13 AM,02/27/2016 08:48:07 AM,Code 2 Transport,02/27/2016 09:29:23 AM,ANNIE ST/MISSION ST,San Francisco,94105,B03,1,2145,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7868517146448, -122.401261502084)",160580849-65 +120880061,KM10,12029090,Medical Incident,03/28/2012,03/27/2012,03/28/2012 07:20:25 AM,03/28/2012 07:21:19 AM,03/28/2012 07:21:27 AM,03/28/2012 07:22:04 AM,03/28/2012 07:25:41 AM,03/28/2012 07:37:16 AM,03/28/2012 07:42:48 AM,Code 2 Transport,03/28/2012 08:06:58 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",120880061-KM10 +103430009,94,10109700,Medical Incident,12/09/2010,12/08/2010,12/09/2010 12:28:02 AM,12/09/2010 12:32:14 AM,12/09/2010 12:32:33 AM,12/09/2010 12:32:41 AM,12/09/2010 12:37:04 AM,12/09/2010 12:56:12 AM,12/09/2010 01:07:05 AM,Code 2 Transport,12/09/2010 01:32:41 AM,800 Block of 33RD AVE,SF,94121,B07,14,7243,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7731148603785, -122.492763022617)",103430009-94 +160600041,70,16023716,Medical Incident,02/29/2016,02/28/2016,02/29/2016 12:14:29 AM,02/29/2016 12:18:54 AM,02/29/2016 12:19:30 AM,02/29/2016 12:19:53 AM,02/29/2016 12:27:48 AM,02/29/2016 12:35:05 AM,02/29/2016 12:49:17 AM,Code 2 Transport,02/29/2016 01:33:50 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",160600041-70 +132580247,KM02,13087333,Medical Incident,09/15/2013,09/15/2013,09/15/2013 04:02:07 PM,09/15/2013 04:03:49 PM,09/15/2013 04:04:13 PM,09/15/2013 04:04:53 PM,09/15/2013 04:11:57 PM,09/15/2013 04:28:58 PM,09/15/2013 04:54:22 PM,Code 2 Transport,09/15/2013 05:23:44 PM,600 Block of POINT LOBOS AVE,SF,94121,B07,34,7313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7798433146326, -122.510504603354)",132580247-KM02 +132640378,54,13089678,Medical Incident,09/21/2013,09/21/2013,09/21/2013 08:29:28 PM,09/21/2013 08:30:39 PM,09/21/2013 08:31:30 PM,09/21/2013 08:31:42 PM,09/21/2013 08:37:41 PM,09/21/2013 09:03:22 PM,09/21/2013 09:35:23 PM,Other,09/21/2013 10:03:17 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",132640378-54 +140970221,72,14032698,Medical Incident,04/07/2014,04/07/2014,04/07/2014 01:16:19 PM,04/07/2014 01:16:57 PM,04/07/2014 01:17:11 PM,04/07/2014 01:17:22 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,Other,04/07/2014 01:19:18 PM,100 Block of CAPP ST,SAN FRANCISCO,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",140970221-72 +160600179,55,16023734,Medical Incident,02/29/2016,02/28/2016,02/29/2016 01:45:14 AM,02/29/2016 01:48:55 AM,02/29/2016 01:49:04 AM,02/29/2016 01:49:20 AM,02/29/2016 01:54:24 AM,02/29/2016 02:01:27 AM,02/29/2016 02:14:53 AM,Code 2 Transport,02/29/2016 02:41:00 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160600179-55 +103010134,KM15,10096065,Medical Incident,10/28/2010,10/28/2010,10/28/2010 09:31:06 AM,10/28/2010 09:33:12 AM,10/28/2010 09:33:48 AM,10/28/2010 09:34:35 AM,10/28/2010 09:39:08 AM,10/28/2010 09:52:19 AM,10/28/2010 10:15:06 AM,Code 2 Transport,10/28/2010 10:36:52 AM,2000 Block of 45TH AVE,SF,94116,B08,23,7663,3,3,3,false,,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7483516879009, -122.50393869562)",103010134-KM15 +132040271,B04,13069169,Alarms,07/23/2013,07/23/2013,07/23/2013 04:58:33 PM,07/23/2013 04:59:29 PM,07/23/2013 04:59:41 PM,07/23/2013 05:00:29 PM,07/23/2013 05:03:55 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Fire,07/23/2013 05:05:48 PM,2600 Block of BROADWAY,SF,94115,B04,16,4122,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.793435951268, -122.441087562851)",132040271-B04 +102290340,89,10072195,Traffic Collision,08/17/2010,08/17/2010,08/17/2010 08:43:13 PM,08/17/2010 08:44:44 PM,08/17/2010 08:48:37 PM,08/17/2010 08:49:09 PM,08/17/2010 08:51:32 PM,08/17/2010 09:19:56 PM,08/17/2010 09:27:16 PM,Code 2 Transport,08/17/2010 09:55:06 PM,GOUGH ST/EDDY ST,SF,94109,B02,5,3262,2,2,2,true,,1,MEDIC,1,2,5,Western Addition,"(37.7824770505897, -122.424108201912)",102290340-89 +122350232,AM04,12077913,Medical Incident,08/22/2012,08/22/2012,08/22/2012 04:24:21 PM,08/22/2012 04:25:08 PM,08/22/2012 04:26:01 PM,08/22/2012 04:26:51 PM,08/22/2012 04:31:52 PM,08/22/2012 04:45:47 PM,08/22/2012 05:35:17 PM,Code 2 Transport,08/22/2012 05:55:47 PM,300 Block of MORAGA AVE,PR,94129,B99,51,4626,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio,"(37.7986237777426, -122.460634690165)",122350232-AM04 +121250299,T05,12041609,Vehicle Fire,05/04/2012,05/04/2012,05/04/2012 06:28:57 PM,05/04/2012 06:30:10 PM,05/04/2012 06:30:27 PM,05/04/2012 06:31:26 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 06:33:11 PM,OAK ST/LAGUNA ST,SF,94102,B02,36,3414,3,3,3,false,Fire,1,TRUCK,2,2,5,Hayes Valley,"(37.7745987844772, -122.425888499442)",121250299-T05 +160472461,79,16018996,Medical Incident,02/16/2016,02/16/2016,02/16/2016 03:50:18 PM,02/16/2016 03:50:45 PM,02/16/2016 03:50:55 PM,02/16/2016 03:51:03 PM,02/16/2016 03:59:50 PM,02/16/2016 04:07:43 PM,02/16/2016 04:31:12 PM,Code 2 Transport,02/16/2016 04:40:07 PM,1600 Block of 48TH AVE,San Francisco,94122,B08,23,7724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7556644793089, -122.507808351695)",160472461-79 +113250153,KM05,11107898,Medical Incident,11/21/2011,11/21/2011,11/21/2011 11:40:22 AM,11/21/2011 11:43:39 AM,11/21/2011 11:44:06 AM,11/21/2011 11:44:46 AM,11/21/2011 11:57:23 AM,11/21/2011 12:02:02 PM,11/21/2011 12:12:31 PM,Code 2 Transport,11/21/2011 12:34:10 PM,1200 Block of 19TH AVE,SF,94122,B08,22,7424,3,3,3,false,,1,PRIVATE,2,7,4,Inner Sunset,"(37.7645085780924, -122.477112517357)",113250153-KM05 +160120990,81,16004706,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:32:19 AM,01/12/2016 09:35:14 AM,01/12/2016 09:36:44 AM,01/12/2016 09:36:50 AM,01/12/2016 09:47:38 AM,01/12/2016 10:13:07 AM,01/12/2016 10:34:57 AM,Code 2 Transport,01/12/2016 11:35:14 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160120990-81 +132020146,E38,13068439,Alarms,07/21/2013,07/21/2013,07/21/2013 12:42:01 PM,07/21/2013 12:43:36 PM,07/21/2013 12:45:13 PM,07/21/2013 12:55:49 PM,07/21/2013 01:11:35 PM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 05:34:57 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,3,3,3,false,Alarm,1,ENGINE,15,1,3,Financial District/South Beach,"(37.7891367799941, -122.40363527458)",132020146-E38 +160041101,65,16001538,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:57:15 AM,01/04/2016 09:59:19 AM,01/04/2016 09:59:34 AM,01/04/2016 09:59:44 AM,01/04/2016 10:14:26 AM,01/04/2016 10:37:03 AM,01/04/2016 10:57:13 AM,Code 2 Transport,01/04/2016 11:32:35 AM,600 Block of MARKET ST,San Francisco,94104,B03,1,2211,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",160041101-65 +160330275,AM22,16012830,Medical Incident,02/02/2016,02/01/2016,02/02/2016 03:06:20 AM,02/02/2016 03:07:17 AM,02/02/2016 03:07:30 AM,02/02/2016 03:08:15 AM,02/02/2016 03:20:48 AM,02/02/2016 03:29:48 AM,02/02/2016 04:04:54 AM,Code 2 Transport,02/02/2016 04:15:44 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160330275-AM22 +132590381,89,13087780,Medical Incident,09/16/2013,09/16/2013,09/16/2013 09:42:05 PM,09/16/2013 09:42:33 PM,09/16/2013 09:42:42 PM,09/16/2013 09:42:55 PM,09/16/2013 09:51:15 PM,09/16/2013 10:00:44 PM,09/16/2013 10:11:32 PM,Code 2 Transport,09/16/2013 10:43:28 PM,1700 Block of QUINT ST,SF,94124,B10,42,6445,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7350748815594, -122.398827357293)",132590381-89 +120020072,92,12000645,Medical Incident,01/02/2012,01/01/2012,01/02/2012 07:24:59 AM,01/02/2012 07:25:56 AM,01/02/2012 07:26:05 AM,01/02/2012 07:27:02 AM,01/02/2012 07:31:54 AM,01/02/2012 07:49:21 AM,01/02/2012 08:09:58 AM,Code 2 Transport,01/02/2012 08:42:46 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7819536537257, -122.410041631816)",120020072-92 +123400395,E18,12113592,Alarms,12/05/2012,12/05/2012,12/05/2012 09:59:52 PM,12/05/2012 10:00:38 PM,12/05/2012 10:01:09 PM,12/05/2012 10:03:21 PM,12/05/2012 10:08:11 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/05/2012 10:14:23 PM,0 Block of ZOO RD,SF,94132,B08,19,8716,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",123400395-E18 +103600145,E21,10115512,Medical Incident,12/26/2010,12/26/2010,12/26/2010 01:53:23 PM,12/26/2010 01:56:23 PM,12/26/2010 01:57:45 PM,12/26/2010 01:58:23 PM,12/26/2010 01:58:26 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 02:14:04 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",103600145-E21 +140650041,T10,14021856,Alarms,03/06/2014,03/05/2014,03/06/2014 05:19:04 AM,03/06/2014 05:21:06 AM,03/06/2014 05:21:31 AM,03/06/2014 05:23:37 AM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Fire,03/06/2014 05:39:34 AM,2300 Block of POST ST,SAN FRANCISCO,94115,B05,10,4235,3,3,3,false,Alarm,1,TRUCK,3,5,5,Japantown,"(37.784128648418, -122.440738860354)",140650041-T10 +111190149,T07,11039223,Alarms,04/29/2011,04/29/2011,04/29/2011 12:29:11 PM,04/29/2011 12:30:14 PM,04/29/2011 12:31:27 PM,04/29/2011 12:34:15 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 12:41:13 PM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,3,3,false,,1,TRUCK,3,2,6,Mission,"(37.7720650956074, -122.416549895826)",111190149-T07 +112910358,75,11096712,Medical Incident,10/18/2011,10/18/2011,10/18/2011 09:15:01 PM,10/18/2011 09:17:05 PM,10/18/2011 09:17:11 PM,10/18/2011 09:17:36 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/18/2011 09:47:02 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,3,3,3,true,,1,MEDIC,2,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",112910358-75 +111790117,58,11059055,Medical Incident,06/28/2011,06/28/2011,06/28/2011 10:37:10 AM,06/28/2011 10:38:19 AM,06/28/2011 10:40:44 AM,06/28/2011 10:41:25 AM,06/28/2011 10:47:53 AM,06/28/2011 11:15:25 AM,06/28/2011 11:36:52 AM,Code 2 Transport,06/28/2011 12:05:01 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.781960649289, -122.402224095303)",111790117-58 +132540405,94,13085999,Medical Incident,09/11/2013,09/11/2013,09/11/2013 09:31:22 PM,09/11/2013 09:33:24 PM,09/11/2013 09:33:32 PM,09/11/2013 09:33:41 PM,09/11/2013 09:38:08 PM,09/11/2013 10:00:59 PM,09/11/2013 10:11:41 PM,Code 2 Transport,09/11/2013 10:31:31 PM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8054635492679, -122.41441222701)",132540405-94 +122690094,66,12088784,Medical Incident,09/25/2012,09/25/2012,09/25/2012 10:26:57 AM,09/25/2012 10:28:32 AM,09/25/2012 10:30:31 AM,09/25/2012 10:30:46 AM,09/25/2012 10:42:31 AM,09/25/2012 10:47:49 AM,09/25/2012 11:02:24 AM,Code 2 Transport,09/25/2012 11:29:00 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",122690094-66 +160250553,85,16009801,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:37:01 AM,01/25/2016 06:37:58 AM,01/25/2016 06:38:08 AM,01/25/2016 06:38:16 AM,01/25/2016 06:59:49 AM,01/25/2016 07:03:13 AM,01/25/2016 07:15:08 AM,Code 2 Transport,01/25/2016 07:54:56 AM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",160250553-85 +103570059,55,10114469,Medical Incident,12/23/2010,12/22/2010,12/23/2010 06:25:18 AM,12/23/2010 06:26:13 AM,12/23/2010 06:26:25 AM,12/23/2010 06:26:37 AM,12/23/2010 06:38:22 AM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Patient Declined Transport,12/23/2010 07:08:07 AM,1300 Block of 32ND AVE,SF,94122,B08,23,7536,3,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7620143804393, -122.491057300284)",103570059-55 +132460347,66,13083140,Medical Incident,09/03/2013,09/03/2013,09/03/2013 07:55:03 PM,09/03/2013 07:55:34 PM,09/03/2013 07:55:52 PM,09/03/2013 07:56:07 PM,09/03/2013 08:01:10 PM,09/03/2013 08:22:55 PM,09/03/2013 08:45:10 PM,Code 2 Transport,09/03/2013 09:16:18 PM,600 Block of DAVIS ST,SF,94111,B01,13,1131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7979952301231, -122.398446080847)",132460347-66 +160623284,67,16024808,Medical Incident,03/02/2016,03/02/2016,03/02/2016 06:15:06 PM,03/02/2016 06:15:06 PM,03/02/2016 06:16:38 PM,03/02/2016 06:16:38 PM,03/02/2016 06:17:27 PM,03/02/2016 06:29:17 PM,03/02/2016 07:01:01 PM,Code 2 Transport,03/02/2016 07:01:22 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160623284-67 +160131518,KM09,16005171,Medical Incident,01/13/2016,01/13/2016,01/13/2016 11:26:55 AM,01/13/2016 11:28:30 AM,01/13/2016 11:29:45 AM,01/13/2016 11:30:11 AM,01/13/2016 11:50:06 AM,01/13/2016 12:20:09 PM,01/13/2016 12:41:10 PM,Code 2 Transport,01/13/2016 01:18:15 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",160131518-KM09 +111760182,E37,11058012,Alarms,06/25/2011,06/25/2011,06/25/2011 01:08:29 PM,06/25/2011 01:10:29 PM,06/25/2011 01:11:19 PM,06/25/2011 01:13:13 PM,06/25/2011 01:14:17 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 01:16:58 PM,900 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",111760182-E37 +160600499,AM04,16023770,Medical Incident,02/29/2016,02/28/2016,02/29/2016 06:52:47 AM,02/29/2016 06:54:39 AM,02/29/2016 06:56:43 AM,02/29/2016 06:57:11 AM,02/29/2016 06:59:53 AM,02/29/2016 07:07:27 AM,02/29/2016 08:02:42 AM,Code 2 Transport,02/29/2016 08:02:57 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160600499-AM04 +102310047,E21,10072599,Medical Incident,08/19/2010,08/18/2010,08/19/2010 07:23:01 AM,08/19/2010 07:24:06 AM,08/19/2010 07:24:17 AM,08/19/2010 07:25:24 AM,08/19/2010 07:25:54 AM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/19/2010 07:56:02 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,E,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",102310047-E21 +132590305,E05,13087712,Other,09/16/2013,09/16/2013,09/16/2013 05:07:42 PM,09/16/2013 05:10:32 PM,09/16/2013 05:12:23 PM,09/16/2013 05:13:17 PM,09/16/2013 05:16:23 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Other,09/16/2013 05:26:26 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",132590305-E05 +123470326,D2,12116131,Structure Fire,12/12/2012,12/12/2012,12/12/2012 07:13:53 PM,12/12/2012 07:15:09 PM,12/12/2012 07:15:29 PM,12/12/2012 07:17:15 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Other,12/12/2012 07:24:50 PM,1500 Block of PERSHING DR,PR,94129,B99,51,4617,3,3,3,false,Alarm,1,CHIEF,9,7,2,Presidio,"(37.7928087460135, -122.477653715778)",123470326-D2 +160083910,82,16003448,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:26:59 PM,01/08/2016 10:30:29 PM,01/08/2016 10:30:51 PM,01/08/2016 10:31:01 PM,01/08/2016 10:42:37 PM,01/08/2016 10:54:49 PM,01/08/2016 11:06:18 PM,Code 2 Transport,01/08/2016 11:36:08 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7980228452184, -122.405863212632)",160083910-82 +160011403,65,16000251,Medical Incident,01/01/2016,01/01/2016,01/01/2016 08:53:57 AM,01/01/2016 08:54:43 AM,01/01/2016 08:56:34 AM,01/01/2016 08:56:47 AM,01/01/2016 09:04:35 AM,01/01/2016 09:25:53 AM,01/01/2016 09:46:12 AM,Code 3 Transport,01/01/2016 10:33:03 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",160011403-65 +121370294,87,12045603,Medical Incident,05/16/2012,05/16/2012,05/16/2012 04:38:26 PM,05/16/2012 04:40:18 PM,05/16/2012 04:40:32 PM,05/16/2012 04:40:55 PM,05/16/2012 04:48:13 PM,05/16/2012 05:02:07 PM,05/16/2012 05:18:59 PM,Code 2 Transport,05/16/2012 05:58:09 PM,1300 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7632907518666, -122.462034637217)",121370294-87 +112080025,E13,11068562,Alarms,07/27/2011,07/26/2011,07/27/2011 01:58:58 AM,07/27/2011 02:00:35 AM,07/27/2011 02:00:42 AM,07/27/2011 02:02:14 AM,07/27/2011 02:04:05 AM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 02:20:50 AM,200 Block of CALIFORNIA ST,SF,94111,B01,13,1162,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7933383335289, -122.399381167233)",112080025-E13 +160373994,AM16,16014962,Medical Incident,02/06/2016,02/06/2016,02/06/2016 10:16:09 PM,02/06/2016 10:17:55 PM,02/06/2016 10:18:24 PM,02/06/2016 10:18:52 PM,02/06/2016 10:21:47 PM,02/06/2016 10:35:12 PM,02/06/2016 10:37:11 PM,Code 2 Transport,02/06/2016 11:05:40 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",160373994-AM16 +122420050,T08,12079945,Alarms,08/29/2012,08/28/2012,08/29/2012 05:54:44 AM,08/29/2012 05:56:27 AM,08/29/2012 05:56:35 AM,08/29/2012 05:59:07 AM,08/29/2012 06:04:30 AM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/29/2012 06:18:21 AM,500 Block of 18TH ST,SF,94107,B03,29,2466,3,3,3,false,Alarm,1,TRUCK,3,3,10,Potrero Hill,"(37.7631325072007, -122.388271828178)",122420050-T08 +113440094,KM11,11114051,Medical Incident,12/10/2011,12/10/2011,12/10/2011 08:33:35 AM,12/10/2011 08:38:09 AM,12/10/2011 08:39:41 AM,12/10/2011 08:51:42 AM,12/10/2011 08:54:02 AM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Patient Declined Transport,12/10/2011 09:21:54 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,2,2,2,false,,1,PRIVATE,4,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",113440094-KM11 +112110353,82,11069792,Medical Incident,07/30/2011,07/30/2011,07/30/2011 11:06:20 PM,07/30/2011 11:08:06 PM,07/30/2011 11:10:02 PM,07/30/2011 11:14:05 PM,07/30/2011 11:23:22 PM,07/30/2011 11:38:40 PM,07/30/2011 11:54:58 PM,Code 2 Transport,07/31/2011 12:10:53 AM,300 Block of SCHWERIN ST,SF,94134,B09,44,6252,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7089307928645, -122.412165670748)",112110353-82 +140520072,55,14017530,Medical Incident,02/21/2014,02/20/2014,02/21/2014 07:57:31 AM,02/21/2014 07:58:36 AM,02/21/2014 08:00:09 AM,02/21/2014 08:00:17 AM,02/21/2014 08:04:59 AM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Against Medical Advice,02/21/2014 08:38:10 AM,500 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",140520072-55 +160261710,54,16010296,Medical Incident,01/26/2016,01/26/2016,01/26/2016 12:19:43 PM,01/26/2016 12:22:06 PM,01/26/2016 12:22:46 PM,01/26/2016 12:24:13 PM,01/26/2016 12:28:42 PM,01/26/2016 12:48:48 PM,01/26/2016 01:15:52 PM,Code 2 Transport,01/26/2016 02:37:04 PM,300 Block of GRANADA AVE,San Francisco,94112,B09,15,8474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7246905524598, -122.457340768264)",160261710-54 +121300303,66,12043368,Medical Incident,05/09/2012,05/09/2012,05/09/2012 07:37:11 PM,05/09/2012 07:38:46 PM,05/09/2012 07:39:53 PM,04/25/2016 01:58:46 PM,05/09/2012 07:54:32 PM,05/09/2012 08:10:59 PM,05/09/2012 08:14:35 PM,Code 3 Transport,05/09/2012 08:45:45 PM,1500 Block of 9TH AVE,SF,94122,B08,22,7335,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7593811185693, -122.465916106738)",121300303-66 +123470236,E05,12116050,Medical Incident,12/12/2012,12/12/2012,12/12/2012 02:27:54 PM,12/12/2012 02:28:47 PM,12/12/2012 02:30:06 PM,12/12/2012 02:30:17 PM,12/12/2012 02:38:08 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/12/2012 02:41:15 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",123470236-E05 +110390283,T03,11013016,Structure Fire,02/08/2011,02/08/2011,02/08/2011 06:55:31 PM,02/08/2011 06:56:18 PM,02/08/2011 06:56:47 PM,02/08/2011 06:57:20 PM,02/08/2011 06:59:45 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 07:40:54 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",110390283-T03 +130300027,AM18,13010098,Medical Incident,01/30/2013,01/29/2013,01/30/2013 03:05:26 AM,01/30/2013 03:05:58 AM,01/30/2013 03:06:36 AM,01/30/2013 03:07:04 AM,01/30/2013 03:11:53 AM,01/30/2013 03:39:23 AM,01/30/2013 03:47:04 AM,Code 2 Transport,01/30/2013 04:19:28 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",130300027-AM18 +133030278,AM06,13103005,Medical Incident,10/30/2013,10/30/2013,10/30/2013 05:11:32 PM,10/30/2013 05:13:13 PM,10/30/2013 05:13:26 PM,10/30/2013 05:14:33 PM,10/30/2013 05:19:10 PM,10/30/2013 05:45:12 PM,10/30/2013 05:53:37 PM,Code 2 Transport,10/30/2013 06:38:20 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",133030278-AM06 +160193056,58,16007759,Medical Incident,01/19/2016,01/19/2016,01/19/2016 06:52:40 PM,01/19/2016 06:54:15 PM,01/19/2016 06:56:24 PM,01/19/2016 06:56:42 PM,01/19/2016 07:04:12 PM,01/19/2016 07:11:35 PM,01/19/2016 07:17:18 PM,Code 2 Transport,01/19/2016 07:49:21 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160193056-58 +103060356,KM12,10098041,Medical Incident,11/02/2010,11/02/2010,11/02/2010 06:13:26 PM,11/02/2010 06:13:48 PM,11/02/2010 06:14:17 PM,11/02/2010 06:15:02 PM,11/02/2010 06:21:13 PM,11/02/2010 06:34:21 PM,11/02/2010 06:49:20 PM,Code 3 Transport,11/02/2010 07:04:24 PM,200 Block of GARCES DR,SF,94132,B08,19,8483,3,3,3,false,,1,PRIVATE,2,8,7,Lakeshore,"(37.7155492963432, -122.480858470106)",103060356-KM12 +110940105,89,11031140,Medical Incident,04/04/2011,04/04/2011,04/04/2011 09:48:35 AM,04/04/2011 09:50:13 AM,04/04/2011 09:50:22 AM,04/04/2011 09:51:21 AM,04/04/2011 09:55:17 AM,04/04/2011 10:08:09 AM,04/04/2011 10:23:27 AM,Code 2 Transport,04/04/2011 11:04:40 AM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,1,2,true,,1,MEDIC,2,2,6,Mission,"(37.772123277472, -122.416667284185)",110940105-89 +160320014,72,16012397,Medical Incident,02/01/2016,01/31/2016,02/01/2016 12:05:42 AM,02/01/2016 12:06:04 AM,02/01/2016 12:06:37 AM,02/01/2016 12:08:22 AM,02/01/2016 12:10:38 AM,02/01/2016 12:21:07 AM,02/01/2016 12:31:17 AM,Code 2 Transport,02/01/2016 01:16:56 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160320014-72 +160453253,71,16018299,Medical Incident,02/14/2016,02/14/2016,02/14/2016 09:23:43 PM,02/14/2016 09:24:52 PM,02/14/2016 09:25:09 PM,02/14/2016 09:25:14 PM,02/14/2016 09:31:11 PM,02/14/2016 09:49:06 PM,02/14/2016 10:15:14 PM,Code 2 Transport,02/14/2016 10:40:20 PM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7600451698328, -122.423265598657)",160453253-71 +102420150,AP,10076290,Other,08/30/2010,08/30/2010,08/30/2010 11:16:23 AM,08/30/2010 11:16:24 AM,08/30/2010 11:16:24 AM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Fire,08/30/2010 11:16:42 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102420150-AP +160191691,KM05,16007633,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:43:20 PM,01/19/2016 12:44:56 PM,01/19/2016 12:45:15 PM,01/19/2016 12:47:07 PM,01/19/2016 12:54:51 PM,01/19/2016 01:12:08 PM,01/19/2016 01:29:47 PM,Code 2 Transport,01/19/2016 02:02:18 PM,1500 Block of OFARRELL ST,San Francisco,94115,B04,5,3514,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7834972119133, -122.430603323889)",160191691-KM05 +160131847,59,16005196,Medical Incident,01/13/2016,01/13/2016,01/13/2016 12:42:31 PM,01/13/2016 12:44:41 PM,01/13/2016 12:45:45 PM,01/13/2016 12:45:55 PM,01/13/2016 12:49:04 PM,01/13/2016 01:12:07 PM,01/13/2016 01:14:39 PM,Code 2 Transport,01/13/2016 02:07:18 PM,1700 Block of FRANKLIN ST,San Francisco,94109,B04,38,3225,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7906296028558, -122.423999876648)",160131847-59 +110060116,RS2,11001922,Medical Incident,01/06/2011,01/06/2011,01/06/2011 09:28:40 AM,01/06/2011 09:28:40 AM,01/06/2011 09:28:49 AM,01/06/2011 09:30:20 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 09:32:01 AM,3600 Block of 20TH ST,SF,94110,B06,7,5445,3,3,3,false,,1,RESCUE SQUAD,2,6,8,Mission,"(37.7584863037287, -122.422385383463)",110060116-RS2 +132060032,KM07,13069630,Medical Incident,07/25/2013,07/24/2013,07/25/2013 05:24:15 AM,07/25/2013 05:25:58 AM,07/25/2013 05:26:19 AM,07/25/2013 05:26:55 AM,07/25/2013 05:38:06 AM,07/25/2013 05:46:59 AM,07/25/2013 06:00:02 AM,Code 2 Transport,07/25/2013 06:32:19 AM,1300 Block of UNDERWOOD AVE,SF,94124,B10,17,6653,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7271809770545, -122.387135707387)",132060032-KM07 +113390033,E05,11112239,Medical Incident,12/05/2011,12/04/2011,12/05/2011 04:33:40 AM,12/05/2011 04:34:01 AM,12/05/2011 04:34:52 AM,12/05/2011 04:36:44 AM,12/05/2011 04:38:04 AM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/05/2011 04:52:54 AM,1100 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",113390033-E05 +132740230,79,13093145,Medical Incident,10/01/2013,10/01/2013,10/01/2013 03:42:47 PM,10/01/2013 03:43:48 PM,10/01/2013 03:44:36 PM,10/01/2013 03:48:18 PM,10/01/2013 04:03:58 PM,10/01/2013 04:04:17 PM,10/01/2013 04:29:12 PM,Code 2 Transport,10/01/2013 04:58:24 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",132740230-79 +130750360,E22,13025187,Outside Fire,03/16/2013,03/16/2013,03/16/2013 09:55:21 PM,03/16/2013 09:56:27 PM,03/16/2013 09:57:15 PM,03/16/2013 09:57:52 PM,03/16/2013 10:02:07 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 10:02:30 PM,25TH AV/LINCOLN WY,SF,94122,B08,22,7452,3,3,3,false,Fire,1,ENGINE,1,8,1,Golden Gate Park,"(37.7651601782916, -122.48368543575)",130750360-E22 +111030137,D2,11034094,HazMat,04/13/2011,04/13/2011,04/13/2011 10:51:39 AM,04/13/2011 10:53:58 AM,04/13/2011 10:55:03 AM,04/13/2011 10:55:22 AM,04/13/2011 11:01:52 AM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/13/2011 11:03:39 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,false,,1,CHIEF,7,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",111030137-D2 +160372328,58,16014745,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:52:54 PM,02/06/2016 02:53:35 PM,02/06/2016 02:53:58 PM,02/06/2016 02:54:20 PM,02/06/2016 03:07:44 PM,02/06/2016 03:07:47 PM,02/06/2016 03:09:34 PM,Code 2 Transport,02/06/2016 03:56:58 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160372328-58 +160460324,KM07,16018373,Medical Incident,02/15/2016,02/14/2016,02/15/2016 02:55:04 AM,02/15/2016 02:56:41 AM,02/15/2016 02:56:54 AM,02/15/2016 02:57:28 AM,02/15/2016 03:03:52 AM,02/15/2016 03:17:44 AM,02/15/2016 03:26:50 AM,Code 2 Transport,02/15/2016 03:55:44 AM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160460324-KM07 +131200247,AM18,13040430,Medical Incident,04/30/2013,04/30/2013,04/30/2013 06:13:12 PM,04/30/2013 06:18:16 PM,04/30/2013 06:19:48 PM,04/30/2013 06:23:15 PM,04/30/2013 06:36:25 PM,04/30/2013 07:04:32 PM,04/30/2013 07:04:38 PM,Code 2 Transport,04/30/2013 07:39:30 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",131200247-AM18 +131770004,94,13059934,Medical Incident,06/26/2013,06/25/2013,06/26/2013 12:19:29 AM,06/26/2013 12:20:23 AM,06/26/2013 12:21:03 AM,06/26/2013 12:21:26 AM,06/26/2013 12:23:55 AM,06/26/2013 12:38:48 AM,06/26/2013 12:52:29 AM,Code 2 Transport,06/26/2013 01:12:52 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",131770004-94 +131720324,54,13058512,Medical Incident,06/21/2013,06/21/2013,06/21/2013 08:43:28 PM,06/21/2013 08:45:31 PM,06/21/2013 08:59:29 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/21/2013 08:59:35 PM,1600 Block of HAYES ST,SF,94117,B05,21,4351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,5,5,Lone Mountain/USF,"(37.7743083992665, -122.443590663405)",131720324-54 +160051430,61,16001965,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:39:12 AM,01/05/2016 11:39:58 AM,01/05/2016 11:40:04 AM,01/05/2016 11:40:11 AM,01/05/2016 11:45:27 AM,01/05/2016 12:04:16 PM,01/05/2016 12:20:34 PM,Code 2 Transport,01/05/2016 01:05:41 PM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",160051430-61 +102290266,79,10072128,Medical Incident,08/17/2010,08/17/2010,08/17/2010 05:23:08 PM,08/17/2010 05:25:34 PM,08/17/2010 05:27:07 PM,08/17/2010 05:27:15 PM,08/17/2010 05:29:28 PM,08/17/2010 05:40:47 PM,08/17/2010 05:46:28 PM,Code 2 Transport,08/17/2010 05:57:25 PM,GOUGH ST/MCALLISTER ST,SF,94102,B02,5,3316,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7796735861193, -122.423541306846)",102290266-79 +160600718,62,16023796,Medical Incident,02/29/2016,02/29/2016,02/29/2016 08:16:35 AM,02/29/2016 08:18:08 AM,02/29/2016 08:19:10 AM,02/29/2016 08:19:58 AM,02/29/2016 08:30:31 AM,02/29/2016 08:58:00 AM,02/29/2016 09:09:07 AM,Code 3 Transport,02/29/2016 09:33:25 AM,1000 Block of GRIFFITH ST,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7286187865041, -122.378914700059)",160600718-62 +102640321,E13,10083672,Medical Incident,09/21/2010,09/21/2010,09/21/2010 07:22:35 PM,09/21/2010 07:24:05 PM,09/21/2010 07:27:05 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:41:59 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,,1,ENGINE,4,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",102640321-E13 +160823426,AM10,16032717,Medical Incident,03/22/2016,03/22/2016,03/22/2016 07:37:19 PM,03/22/2016 07:38:19 PM,03/22/2016 07:38:34 PM,03/22/2016 07:39:21 PM,03/22/2016 07:43:59 PM,03/22/2016 08:01:57 PM,03/22/2016 08:15:35 PM,Code 2 Transport,03/22/2016 08:53:35 PM,1500 Block of GRANT AVE,San Francisco,94133,B01,28,1265,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8012484334227, -122.407775929611)",160823426-AM10 +133000202,T16,13101962,Medical Incident,10/27/2013,10/27/2013,10/27/2013 12:34:34 PM,10/27/2013 12:34:47 PM,10/27/2013 12:34:57 PM,10/27/2013 12:35:14 PM,10/27/2013 12:36:43 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 12:54:40 PM,CAPRA WY/MALLORCA WY,SF,94123,B04,16,3662,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,4,2,Marina,"(37.8028908454146, -122.438618493884)",133000202-T16 +131930080,T07,13065567,Alarms,07/12/2013,07/12/2013,07/12/2013 09:11:10 AM,07/12/2013 09:12:16 AM,07/12/2013 09:12:34 AM,07/12/2013 09:13:05 AM,07/12/2013 09:16:19 AM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 09:20:31 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",131930080-T07 +121140097,AM02,12037778,Medical Incident,04/23/2012,04/23/2012,04/23/2012 09:13:13 AM,04/23/2012 09:15:07 AM,04/23/2012 09:16:16 AM,04/23/2012 09:17:23 AM,04/23/2012 09:27:25 AM,04/23/2012 09:48:24 AM,04/23/2012 10:10:39 AM,Code 2 Transport,04/23/2012 10:47:21 AM,0 Block of ENCLINE CT,SF,94127,B09,39,8655,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7417408917771, -122.447444505272)",121140097-AM02 +112980308,AP,11098955,Other,10/25/2011,10/25/2011,10/25/2011 06:11:09 PM,10/25/2011 06:11:10 PM,10/25/2011 06:11:10 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Fire,10/25/2011 06:11:35 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",112980308-AP +133120341,E33,13106164,Structure Fire,11/08/2013,11/08/2013,11/08/2013 07:52:49 PM,11/08/2013 07:52:50 PM,11/08/2013 07:53:55 PM,11/08/2013 07:55:05 PM,11/08/2013 07:56:52 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 07:57:03 PM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",133120341-E33 +111730325,AM10,11057201,Medical Incident,06/22/2011,06/22/2011,06/22/2011 08:40:35 PM,06/22/2011 08:41:13 PM,06/22/2011 08:41:28 PM,06/22/2011 08:42:10 PM,06/22/2011 08:46:13 PM,06/22/2011 08:58:39 PM,06/22/2011 09:10:50 PM,Code 2 Transport,06/22/2011 09:39:40 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",111730325-AM10 +140630057,77,14021183,Medical Incident,03/04/2014,03/03/2014,03/04/2014 06:12:37 AM,03/04/2014 06:14:04 AM,03/04/2014 06:22:32 AM,03/04/2014 06:22:32 AM,03/04/2014 06:29:36 AM,03/04/2014 06:34:57 AM,03/04/2014 06:45:37 AM,Code 3 Transport,03/04/2014 07:22:15 AM,500 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7834675310494, -122.416716373273)",140630057-77 +160550057,70,16021829,Medical Incident,02/24/2016,02/23/2016,02/24/2016 12:29:02 AM,02/24/2016 12:30:27 AM,02/24/2016 12:30:36 AM,02/24/2016 12:30:44 AM,02/24/2016 12:41:26 AM,02/24/2016 01:06:39 AM,02/24/2016 01:18:33 AM,Code 2 Transport,02/24/2016 02:05:02 AM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160550057-70 +160702375,KM13,16027918,Medical Incident,03/10/2016,03/10/2016,03/10/2016 04:07:31 PM,03/10/2016 04:07:45 PM,03/10/2016 04:08:41 PM,03/10/2016 04:09:16 PM,03/10/2016 04:14:15 PM,03/10/2016 04:38:45 PM,03/10/2016 05:10:31 PM,Code 2 Transport,03/10/2016 05:44:00 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",160702375-KM13 +133090165,T15,13105045,Alarms,11/05/2013,11/05/2013,11/05/2013 11:39:24 AM,11/05/2013 11:40:50 AM,11/05/2013 11:41:05 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 11:43:48 AM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,Alarm,1,TRUCK,4,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",133090165-T15 +160210456,71,16008251,Medical Incident,01/21/2016,01/20/2016,01/21/2016 05:21:01 AM,01/21/2016 05:21:45 AM,01/21/2016 05:22:37 AM,01/21/2016 05:22:58 AM,01/21/2016 05:31:02 AM,01/21/2016 05:39:36 AM,01/21/2016 05:47:34 AM,Code 2 Transport,01/21/2016 06:14:10 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160210456-71 +160350211,64,16013653,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:44:02 AM,02/04/2016 01:45:53 AM,02/04/2016 01:50:55 AM,02/04/2016 01:51:10 AM,02/04/2016 02:00:14 AM,02/04/2016 02:28:57 AM,02/04/2016 02:45:01 AM,Code 2 Transport,02/04/2016 03:53:30 AM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",160350211-64 +123540380,E09,12118620,Medical Incident,12/19/2012,12/19/2012,12/19/2012 09:24:36 PM,12/19/2012 09:25:12 PM,12/19/2012 09:25:55 PM,12/19/2012 09:27:20 PM,12/19/2012 09:29:45 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/19/2012 09:31:47 PM,1200 Block of YORK ST,SF,94110,B06,9,5531,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7520587497197, -122.408043927259)",123540380-E09 +123200262,E03,12106442,Alarms,11/15/2012,11/15/2012,11/15/2012 04:38:28 PM,11/15/2012 04:40:39 PM,11/15/2012 04:40:46 PM,11/15/2012 04:42:07 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 04:43:10 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,4,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",123200262-E03 +160901483,56,16035685,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:15:08 AM,03/30/2016 11:15:08 AM,03/30/2016 11:40:22 AM,03/30/2016 11:41:04 AM,03/30/2016 11:49:09 AM,03/30/2016 11:59:24 AM,03/30/2016 12:17:30 PM,Code 2 Transport,03/30/2016 01:20:55 PM,EDDY ST/POLK ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",160901483-56 +120190238,T05,12006392,Alarms,01/19/2012,01/19/2012,01/19/2012 03:06:17 PM,01/19/2012 03:06:41 PM,01/19/2012 03:07:07 PM,01/19/2012 03:09:28 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 03:11:21 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",120190238-T05 +120390161,B08,12012971,Structure Fire,02/08/2012,02/08/2012,02/08/2012 12:15:49 PM,02/08/2012 12:16:47 PM,02/08/2012 12:17:12 PM,02/08/2012 12:18:38 PM,02/08/2012 12:25:09 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Other,02/08/2012 12:27:11 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,false,Fire,1,CHIEF,8,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",120390161-B08 +133230247,E10,13109687,Medical Incident,11/19/2013,11/19/2013,11/19/2013 02:27:53 PM,11/19/2013 02:28:45 PM,11/19/2013 02:29:45 PM,11/19/2013 02:31:30 PM,11/19/2013 02:41:26 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Patient Declined Transport,11/19/2013 02:45:41 PM,3400 Block of CALIFORNIA ST,SF,94118,B07,10,4431,2,2,2,true,Non Life-threatening,1,ENGINE,2,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",133230247-E10 +113620205,E36,11120270,Medical Incident,12/28/2011,12/28/2011,12/28/2011 01:46:58 PM,12/28/2011 01:47:24 PM,12/28/2011 01:47:30 PM,12/28/2011 01:49:20 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 01:50:51 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",113620205-E36 +133110268,E08,13105784,Medical Incident,11/07/2013,11/07/2013,11/07/2013 05:11:40 PM,11/07/2013 05:13:25 PM,11/07/2013 05:13:57 PM,11/07/2013 05:16:02 PM,11/07/2013 05:17:36 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/07/2013 05:36:57 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",133110268-E08 +160552115,50,16022037,Medical Incident,02/24/2016,02/24/2016,02/24/2016 02:10:57 PM,02/24/2016 02:11:48 PM,02/24/2016 02:12:00 PM,02/24/2016 02:12:26 PM,02/24/2016 02:13:41 PM,02/24/2016 02:26:34 PM,02/24/2016 02:58:36 PM,Code 2 Transport,02/24/2016 03:29:06 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160552115-50 +120160034,T14,12005281,Alarms,01/16/2012,01/15/2012,01/16/2012 04:01:47 AM,01/16/2012 04:03:19 AM,01/16/2012 04:04:30 AM,01/16/2012 04:07:46 AM,01/16/2012 04:11:39 AM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/16/2012 04:11:43 AM,700 Block of 31ST AVE,SF,94121,B07,14,7242,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7750727521737, -122.490888168522)",120160034-T14 +130350216,E26,13012003,Medical Incident,02/04/2013,02/04/2013,02/04/2013 12:58:53 PM,02/04/2013 01:00:38 PM,02/04/2013 01:03:05 PM,02/04/2013 01:04:02 PM,02/04/2013 01:07:37 PM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,Other,02/04/2013 01:15:10 PM,200 Block of AMBER DR,SF,94131,B06,26,8164,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7442850026971, -122.444610369759)",130350216-E26 +120940243,T06,12031204,Alarms,04/03/2012,04/03/2012,04/03/2012 04:40:36 PM,04/03/2012 04:42:39 PM,04/03/2012 04:43:04 PM,04/03/2012 04:44:14 PM,04/03/2012 04:46:47 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 04:52:30 PM,0 Block of PIERCE ST,SF,94117,B05,6,3635,3,3,3,false,Alarm,1,TRUCK,1,5,8,Haight Ashbury,"(37.7702879508133, -122.433383131974)",120940243-T06 +103600201,E02,10115559,Structure Fire,12/26/2010,12/26/2010,12/26/2010 04:42:44 PM,12/26/2010 04:42:44 PM,12/26/2010 04:42:56 PM,12/26/2010 04:44:51 PM,12/26/2010 04:45:21 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 04:46:15 PM,STOCKTON ST/WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",103600201-E02 +122630323,88,12086987,Medical Incident,09/19/2012,09/19/2012,09/19/2012 08:14:32 PM,09/19/2012 08:14:32 PM,09/19/2012 08:16:38 PM,09/19/2012 08:16:43 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,04/25/2016 01:56:42 PM,1800 Block of 21ST AVE,SF,94122,B08,40,7431,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7532107927328, -122.478619949457)",122630323-88 +133000261,E33,13102012,Medical Incident,10/27/2013,10/27/2013,10/27/2013 04:25:12 PM,10/27/2013 04:26:45 PM,10/27/2013 04:27:08 PM,10/27/2013 04:28:32 PM,10/27/2013 04:32:40 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 04:40:19 PM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7191183780763, -122.480484610594)",133000261-E33 +120880325,E42,12029307,Medical Incident,03/28/2012,03/28/2012,03/28/2012 11:00:27 PM,03/28/2012 11:00:41 PM,03/28/2012 11:00:55 PM,03/28/2012 11:02:20 PM,03/28/2012 11:03:20 PM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 11:14:40 PM,BAYSHORE BL/SILVER AV,SF,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7329487834835, -122.404657098442)",120880325-E42 +160900058,85,16035537,Medical Incident,03/30/2016,03/29/2016,03/30/2016 12:29:03 AM,03/30/2016 12:29:03 AM,03/30/2016 12:29:42 AM,03/30/2016 12:29:51 AM,03/30/2016 12:31:25 AM,03/30/2016 12:44:01 AM,03/30/2016 12:50:31 AM,Code 2 Transport,03/30/2016 01:18:03 AM,BUSH ST/STEINER ST,San Francisco,94115,B04,38,3621,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7868105416223, -122.435105769551)",160900058-85 +103290272,T07,10105453,Alarms,11/25/2010,11/25/2010,11/25/2010 08:03:53 PM,11/25/2010 08:04:41 PM,11/25/2010 08:05:01 PM,11/25/2010 08:06:32 PM,11/25/2010 08:08:10 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/25/2010 08:13:15 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,TRUCK,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",103290272-T07 +112490265,E44,11082189,Structure Fire,09/06/2011,09/06/2011,09/06/2011 04:01:04 PM,09/06/2011 04:01:04 PM,09/06/2011 04:02:57 PM,09/06/2011 04:04:07 PM,09/06/2011 04:06:22 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Fire,09/06/2011 04:06:58 PM,PAUL AV/EXETER ST,SF,94124,B10,44,6323,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7230361592834, -122.398348115685)",112490265-E44 +113600060,55,11119545,Medical Incident,12/26/2011,12/25/2011,12/26/2011 05:26:58 AM,12/26/2011 05:31:59 AM,12/26/2011 05:32:54 AM,12/26/2011 05:35:34 AM,12/26/2011 05:38:21 AM,12/26/2011 06:15:14 AM,12/26/2011 06:26:44 AM,Code 2 Transport,12/26/2011 06:47:06 AM,1200 Block of TARAVAL ST,SF,94116,B08,40,7461,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",113600060-55 +120510125,E39,12016820,Medical Incident,02/20/2012,02/20/2012,02/20/2012 10:47:01 AM,02/20/2012 10:47:44 AM,02/20/2012 10:48:03 AM,02/20/2012 10:49:23 AM,02/20/2012 10:52:35 AM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 11:03:32 AM,0 Block of MARIETTA DR,SF,94127,B09,39,8653,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.74161827663, -122.448658031568)",120510125-E39 +110280129,T03,11009175,Structure Fire,01/28/2011,01/28/2011,01/28/2011 11:17:13 AM,01/28/2011 11:18:22 AM,01/28/2011 11:18:51 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 11:23:33 AM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,false,,1,TRUCK,12,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",110280129-T03 +160231159,53,16009098,Medical Incident,01/23/2016,01/23/2016,01/23/2016 10:09:45 AM,01/23/2016 10:10:43 AM,01/23/2016 10:11:08 AM,01/23/2016 10:11:21 AM,01/23/2016 10:16:33 AM,01/23/2016 10:29:24 AM,01/23/2016 10:49:21 AM,Code 2 Transport,01/23/2016 11:26:15 AM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",160231159-53 +102740073,E37,10086930,Medical Incident,10/01/2010,10/01/2010,10/01/2010 08:29:54 AM,10/01/2010 08:31:14 AM,10/01/2010 08:31:31 AM,10/01/2010 08:32:06 AM,10/01/2010 08:33:18 AM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 08:45:53 AM,1700 Block of 20TH ST,SF,94107,B10,37,2521,3,3,3,false,,1,ENGINE,1,10,10,Potrero Hill,"(37.7598249684422, -122.398693333701)",102740073-E37 +81910363,E03,8059003,Alarms,07/09/2008,07/09/2008,07/09/2008 08:28:24 PM,07/09/2008 08:29:27 PM,07/09/2008 08:29:58 PM,07/09/2008 08:31:23 PM,07/09/2008 08:33:47 PM,04/25/2016 03:33:21 PM,04/25/2016 03:33:21 PM,Other,07/09/2008 08:47:34 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",081910363-E03 +122230037,66,12073810,Medical Incident,08/10/2012,08/09/2012,08/10/2012 03:24:02 AM,08/10/2012 03:26:09 AM,08/10/2012 03:26:31 AM,08/10/2012 03:26:44 AM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 03:41:26 AM,400 Block of POWELL ST,SF,94102,B01,1,1362,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",122230037-66 +112950323,67,11097965,Medical Incident,10/22/2011,10/22/2011,10/22/2011 07:42:46 PM,10/22/2011 07:44:25 PM,10/22/2011 07:44:54 PM,10/22/2011 07:45:01 PM,10/22/2011 07:54:41 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/22/2011 07:56:42 PM,700 Block of LARKIN ST,SF,94109,B04,3,1642,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7844637837491, -122.417824560275)",112950323-67 +131090104,AM16,13036560,Medical Incident,04/19/2013,04/19/2013,04/19/2013 09:03:06 AM,04/19/2013 09:04:09 AM,04/19/2013 09:04:35 AM,04/19/2013 09:05:47 AM,04/19/2013 09:09:39 AM,04/19/2013 09:37:24 AM,04/19/2013 10:00:28 AM,Code 2 Transport,04/19/2013 10:50:25 AM,200 Block of FOERSTER ST,SF,94112,B09,15,823,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7302865471422, -122.448788546393)",131090104-AM16 +132810343,E01,13095740,Medical Incident,10/08/2013,10/08/2013,10/08/2013 07:40:48 PM,10/08/2013 07:40:54 PM,10/08/2013 07:41:48 PM,10/08/2013 07:42:32 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/08/2013 07:44:21 PM,1100 Block of MISSION ST,SF,94103,B02,1,2315,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7785895740312, -122.411626152299)",132810343-E01 +110390057,E01,11012835,Medical Incident,02/08/2011,02/07/2011,02/08/2011 05:38:21 AM,02/08/2011 05:40:11 AM,02/08/2011 05:40:27 AM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Fire,02/08/2011 05:53:06 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",110390057-E01 +110810215,E06,11026679,Medical Incident,03/22/2011,03/22/2011,03/22/2011 03:16:41 PM,03/22/2011 03:18:13 PM,03/22/2011 03:18:37 PM,03/22/2011 03:19:48 PM,03/22/2011 03:23:19 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 03:24:04 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,3,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",110810215-E06 +120010104,E09,12000081,Outside Fire,01/01/2012,12/31/2011,01/01/2012 01:15:38 AM,01/01/2012 01:16:25 AM,01/01/2012 01:19:12 AM,01/01/2012 01:21:19 AM,01/01/2012 01:24:56 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 01:25:23 AM,SOUTH VAN NES AV/CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7482121503815, -122.41586279408)",120010104-E09 +111490022,RC3,11049265,Medical Incident,05/29/2011,05/28/2011,05/29/2011 01:26:18 AM,05/29/2011 01:27:48 AM,05/29/2011 01:28:10 AM,05/29/2011 01:29:25 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 01:29:36 AM,16TH ST/VALENCIA ST,SF,94103,B02,6,5226,E,E,3,true,,1,RESCUE CAPTAIN,3,2,8,Mission,"(37.7649173790256, -122.421886447232)",111490022-RC3 +120300196,AM08,12010010,Medical Incident,01/30/2012,01/30/2012,01/30/2012 02:42:10 PM,01/30/2012 02:44:12 PM,01/30/2012 02:46:46 PM,01/30/2012 02:47:20 PM,01/30/2012 02:54:13 PM,01/30/2012 03:05:53 PM,01/30/2012 03:30:38 PM,Code 2 Transport,01/30/2012 03:59:55 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",120300196-AM08 +133160027,E15,13107307,Structure Fire,11/12/2013,11/11/2013,11/12/2013 03:57:24 AM,11/12/2013 03:57:24 AM,11/12/2013 03:57:35 AM,11/12/2013 03:59:02 AM,11/12/2013 03:59:04 AM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Fire,11/12/2013 04:01:13 AM,OCEAN AV/ASHTON AV,SF,94112,B09,15,8456,3,3,3,true,Alarm,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7252657076417, -122.462212503643)",133160027-E15 +160303945,60,16011983,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:40:07 PM,01/30/2016 10:41:35 PM,01/30/2016 10:42:16 PM,01/30/2016 10:42:41 PM,01/30/2016 10:45:44 PM,01/30/2016 11:00:18 PM,01/30/2016 11:19:53 PM,Code 2 Transport,01/30/2016 11:48:59 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",160303945-60 +130420213,E05,13014346,Alarms,02/11/2013,02/11/2013,02/11/2013 02:38:03 PM,02/11/2013 02:39:19 PM,02/11/2013 02:39:35 PM,02/11/2013 02:41:13 PM,02/11/2013 02:43:15 PM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,Other,02/11/2013 02:49:34 PM,1600 Block of GEARY BLVD,SF,94115,B04,5,3432,3,3,3,true,Alarm,1,ENGINE,2,4,5,Japantown,"(37.7848985640348, -122.429613639902)",130420213-E05 +160673172,52,16026911,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:55:25 PM,03/07/2016 08:56:08 PM,03/07/2016 08:56:22 PM,03/07/2016 08:56:52 PM,03/07/2016 09:02:40 PM,03/07/2016 09:20:25 PM,03/07/2016 09:51:46 PM,Code 2 Transport,03/07/2016 10:24:26 PM,600 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7865705542086, -122.413973061638)",160673172-52 +112220248,E03,11073381,Medical Incident,08/10/2011,08/10/2011,08/10/2011 04:10:58 PM,08/10/2011 04:11:37 PM,08/10/2011 04:14:04 PM,08/10/2011 04:14:43 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 04:18:24 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",112220248-E03 +131490078,KM09,13050434,Medical Incident,05/29/2013,05/29/2013,05/29/2013 08:31:13 AM,05/29/2013 08:32:57 AM,05/29/2013 08:33:54 AM,05/29/2013 08:34:58 AM,05/29/2013 08:45:22 AM,05/29/2013 08:53:54 AM,05/29/2013 08:58:23 AM,Code 2 Transport,05/29/2013 09:27:36 AM,EDDY ST/LARKIN ST,SF,94109,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",131490078-KM09 +103030075,E16,10096710,Medical Incident,10/30/2010,10/29/2010,10/30/2010 04:54:19 AM,10/30/2010 04:54:34 AM,10/30/2010 04:54:47 AM,10/30/2010 04:56:17 AM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 04:57:51 AM,900 Block of CHESTNUT ST,SF,94109,B01,28,1613,3,3,3,true,,1,ENGINE,4,1,2,Russian Hill,"(37.8031326741336, -122.418611626628)",103030075-E16 +123130346,B02,12104271,Alarms,11/08/2012,11/08/2012,11/08/2012 07:19:23 PM,11/08/2012 07:21:53 PM,11/08/2012 07:22:22 PM,11/08/2012 07:22:43 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 07:26:54 PM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",123130346-B02 +160502555,KM09,16020169,Medical Incident,02/19/2016,02/19/2016,02/19/2016 04:40:31 PM,02/19/2016 04:41:18 PM,02/19/2016 04:42:57 PM,02/19/2016 04:43:27 PM,02/19/2016 04:50:53 PM,02/19/2016 05:07:45 PM,02/19/2016 05:23:08 PM,Code 2 Transport,02/19/2016 05:57:03 PM,4300 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7125,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Inner Richmond,"(37.7851164846517, -122.464048583692)",160502555-KM09 +122940305,B04,12097616,Structure Fire,10/20/2012,10/20/2012,10/20/2012 07:40:44 PM,10/20/2012 07:41:44 PM,10/20/2012 07:44:17 PM,10/20/2012 07:45:47 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 07:53:57 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,7,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",122940305-B04 +160102138,KM04,16004088,Medical Incident,01/10/2016,01/10/2016,01/10/2016 03:24:39 PM,01/10/2016 03:28:52 PM,01/10/2016 03:29:07 PM,01/10/2016 03:29:58 PM,01/10/2016 03:36:59 PM,01/10/2016 03:56:14 PM,01/10/2016 04:52:08 PM,Code 2 Transport,01/10/2016 04:58:10 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",160102138-KM04 +120630368,E01,12020908,Medical Incident,03/03/2012,03/03/2012,03/03/2012 08:40:45 PM,03/03/2012 08:41:23 PM,03/03/2012 08:41:39 PM,03/03/2012 08:41:56 PM,03/03/2012 08:43:35 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/03/2012 08:48:54 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",120630368-E01 +120550330,E15,12018288,Traffic Collision,02/24/2012,02/24/2012,02/24/2012 09:08:44 PM,02/24/2012 09:09:45 PM,02/24/2012 09:10:06 PM,02/24/2012 09:11:05 PM,02/24/2012 09:13:40 PM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 10:36:26 PM,200 Block of GENEVA AVE,SF,94112,B09,26,8261,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",120550330-E15 +133540288,KM01,13120345,Medical Incident,12/20/2013,12/20/2013,12/20/2013 03:39:57 PM,12/20/2013 03:40:30 PM,12/20/2013 03:40:46 PM,12/20/2013 03:42:47 PM,12/20/2013 03:53:39 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Patient Declined Transport,12/20/2013 04:24:55 PM,300 Block of HARRISON ST,SF,94105,B03,35,2123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7870714019354, -122.391567493465)",133540288-KM01 +112160307,D3,11071440,Structure Fire,08/04/2011,08/04/2011,08/04/2011 05:51:21 PM,08/04/2011 05:52:41 PM,08/04/2011 05:53:07 PM,04/25/2016 02:03:20 PM,08/04/2011 05:56:47 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 05:58:44 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,false,,1,CHIEF,3,2,9,Mission,"(37.7677331022924, -122.415606951318)",112160307-D3 +130900100,KM04,13030043,Medical Incident,03/31/2013,03/31/2013,03/31/2013 08:51:29 AM,03/31/2013 08:52:09 AM,03/31/2013 08:52:25 AM,03/31/2013 08:53:19 AM,03/31/2013 08:55:56 AM,03/31/2013 09:06:49 AM,03/31/2013 09:16:09 AM,Code 2 Transport,03/31/2013 09:44:21 AM,SHOTWELL ST/23RD ST,SF,94110,B06,7,5511,3,3,3,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7540335346403, -122.415320140499)",130900100-KM04 +121080035,T02,12035653,Structure Fire,04/17/2012,04/16/2012,04/17/2012 05:34:25 AM,04/17/2012 05:36:16 AM,04/17/2012 05:36:39 AM,04/17/2012 05:38:02 AM,04/17/2012 05:39:05 AM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,Other,04/17/2012 06:07:42 AM,800 Block of JACKSON ST,SF,94108,B01,2,1354,3,3,3,false,Fire,1,TRUCK,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",121080035-T02 +111660101,E17,11054722,Medical Incident,06/15/2011,06/15/2011,06/15/2011 09:46:42 AM,06/15/2011 09:49:12 AM,06/15/2011 09:49:44 AM,06/15/2011 09:51:39 AM,06/15/2011 09:53:22 AM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/15/2011 10:00:45 AM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",111660101-E17 +160921079,88,16036379,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:53:43 AM,04/01/2016 09:56:00 AM,04/01/2016 09:56:24 AM,04/01/2016 09:56:49 AM,04/01/2016 10:03:12 AM,04/01/2016 10:19:29 AM,04/01/2016 10:29:13 AM,Code 3 Transport,04/01/2016 10:58:39 AM,1400 Block of HAMPSHIRE ST,San Francisco,94110,B06,9,5616,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7493153346241, -122.406755512994)",160921079-88 +120320083,KM12,12010496,Medical Incident,02/01/2012,02/01/2012,02/01/2012 09:26:39 AM,02/01/2012 09:27:11 AM,02/01/2012 09:27:34 AM,02/01/2012 09:28:06 AM,02/01/2012 09:33:40 AM,02/01/2012 09:55:15 AM,02/01/2012 10:02:47 AM,Code 2 Transport,02/01/2012 10:41:48 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",120320083-KM12 +140830114,E02,14027934,Structure Fire,03/24/2014,03/24/2014,03/24/2014 10:42:11 AM,03/24/2014 10:42:11 AM,03/24/2014 10:42:18 AM,03/24/2014 10:42:30 AM,03/24/2014 10:46:25 AM,04/25/2016 01:47:35 PM,04/25/2016 01:47:35 PM,Fire,03/24/2014 10:47:21 AM,STOCKTON ST/MARKET ST,SAN FRANCISCO,94103,B03,1,1322,3,3,3,true,Alarm,1,ENGINE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",140830114-E02 +110620315,AM12,11020481,Medical Incident,03/03/2011,03/03/2011,03/03/2011 07:20:36 PM,03/03/2011 07:21:38 PM,03/03/2011 07:21:57 PM,03/03/2011 07:22:40 PM,03/03/2011 07:24:57 PM,03/03/2011 07:42:42 PM,03/03/2011 08:26:46 PM,Code 2 Transport,03/03/2011 08:26:47 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",110620315-AM12 +111190210,E28,11039275,Other,04/29/2011,04/29/2011,04/29/2011 03:10:25 PM,04/29/2011 03:11:26 PM,04/29/2011 03:11:34 PM,04/29/2011 03:12:46 PM,04/29/2011 03:15:24 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 03:24:24 PM,BAY ST/HYDE ST,SF,94109,B01,28,1614,3,3,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8047903067381, -122.420178127211)",111190210-E28 +160580613,60,16023018,Medical Incident,02/27/2016,02/26/2016,02/27/2016 05:52:42 AM,02/27/2016 05:53:01 AM,02/27/2016 05:53:14 AM,02/27/2016 05:53:27 AM,02/27/2016 05:59:16 AM,02/27/2016 06:26:39 AM,02/27/2016 06:34:25 AM,Code 2 Transport,02/27/2016 07:15:21 AM,300 Block of BRIGHT ST,San Francisco,94132,B09,33,8414,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7170320586442, -122.463600622981)",160580613-60 +160391622,87,16015607,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:26:29 PM,02/08/2016 12:27:40 PM,02/08/2016 12:27:59 PM,02/08/2016 12:28:09 PM,02/08/2016 12:42:56 PM,02/08/2016 01:04:51 PM,02/08/2016 01:17:15 PM,Code 2 Transport,02/08/2016 01:58:28 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160391622-87 +110430124,54,11014221,Medical Incident,02/12/2011,02/12/2011,02/12/2011 09:02:09 AM,02/12/2011 09:04:16 AM,02/12/2011 09:04:31 AM,02/12/2011 09:16:25 AM,02/12/2011 09:25:32 AM,02/12/2011 10:04:06 AM,02/12/2011 10:18:23 AM,Code 2 Transport,02/12/2011 09:16:28 AM,1000 Block of FILBERT ST,SF,94133,B01,28,1532,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8003669599542, -122.416935841335)",110430124-54 +120790040,E22,12026120,Medical Incident,03/19/2012,03/18/2012,03/19/2012 05:39:24 AM,03/19/2012 05:41:19 AM,03/19/2012 05:41:37 AM,03/19/2012 05:44:00 AM,03/19/2012 05:51:09 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 06:03:40 AM,1300 Block of 28TH AVE,SF,94122,B08,22,7511,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7622093018809, -122.48663607976)",120790040-E22 +140390171,E13,14013172,Alarms,02/08/2014,02/08/2014,02/08/2014 11:59:11 AM,02/08/2014 12:00:04 PM,02/08/2014 12:00:10 PM,02/08/2014 12:00:59 PM,02/08/2014 12:03:28 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/08/2014 12:16:28 PM,700 Block of THE EMBARCADERO,SF,94111,B01,13,915,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",140390171-E13 +110310280,E06,11010237,Medical Incident,01/31/2011,01/31/2011,01/31/2011 04:52:40 PM,01/31/2011 04:54:27 PM,01/31/2011 04:56:22 PM,01/31/2011 04:57:33 PM,01/31/2011 04:58:51 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,01/31/2011 05:12:54 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",110310280-E06 +160871609,52,16034562,Medical Incident,03/27/2016,03/27/2016,03/27/2016 12:12:35 PM,03/27/2016 12:14:39 PM,03/27/2016 12:15:30 PM,03/27/2016 12:15:41 PM,03/27/2016 12:21:52 PM,03/27/2016 12:36:37 PM,03/27/2016 01:12:50 PM,Code 2 Transport,03/27/2016 01:38:00 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387148047, -122.40232147586)",160871609-52 +160022405,KM08,16000817,Medical Incident,01/02/2016,01/02/2016,01/02/2016 05:05:31 PM,01/02/2016 05:06:01 PM,01/02/2016 05:06:18 PM,01/02/2016 05:06:58 PM,01/02/2016 05:21:50 PM,01/02/2016 05:21:52 PM,01/02/2016 05:32:08 PM,Code 2 Transport,01/02/2016 05:50:29 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160022405-KM08 +160482942,67,16019437,Medical Incident,02/17/2016,02/17/2016,02/17/2016 05:21:28 PM,02/17/2016 05:22:43 PM,02/17/2016 05:23:06 PM,02/17/2016 05:23:29 PM,02/17/2016 05:28:46 PM,02/17/2016 05:43:42 PM,02/17/2016 06:14:31 PM,Code 2 Transport,02/17/2016 06:57:20 PM,600 Block of 32ND AVE,San Francisco,94121,B07,14,724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",160482942-67 +122510243,KM11,12083045,Medical Incident,09/07/2012,09/07/2012,09/07/2012 03:38:16 PM,09/07/2012 03:39:49 PM,09/07/2012 03:40:49 PM,09/07/2012 03:41:26 PM,09/07/2012 03:57:44 PM,09/07/2012 04:09:16 PM,09/07/2012 04:15:22 PM,Code 2 Transport,09/07/2012 04:42:32 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",122510243-KM11 +102260060,66,10071049,Medical Incident,08/14/2010,08/13/2010,08/14/2010 03:50:59 AM,08/14/2010 03:51:36 AM,08/14/2010 03:51:58 AM,08/14/2010 03:52:19 AM,04/25/2016 02:09:05 PM,08/14/2010 04:26:13 AM,08/14/2010 04:31:04 AM,Code 2 Transport,08/14/2010 05:00:43 AM,1200 Block of CONNECTICUT ST,SF,94107,B10,37,2615,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7504662478532, -122.396271587329)",102260060-66 +113380264,AM16,11112080,Medical Incident,12/04/2011,12/04/2011,12/04/2011 04:03:45 PM,12/04/2011 04:04:22 PM,12/04/2011 04:04:54 PM,04/25/2016 02:01:19 PM,12/04/2011 04:16:30 PM,12/04/2011 05:14:45 PM,12/04/2011 05:14:50 PM,Code 2 Transport,12/04/2011 06:17:56 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,false,,1,PRIVATE,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",113380264-AM16 +160761067,73,16030067,Medical Incident,03/16/2016,03/16/2016,03/16/2016 09:44:46 AM,03/16/2016 09:48:44 AM,03/16/2016 10:05:37 AM,03/16/2016 10:05:48 AM,03/16/2016 10:12:54 AM,03/16/2016 10:30:55 AM,03/16/2016 10:43:18 AM,Code 2 Transport,03/16/2016 11:19:49 AM,2400 Block of 16TH ST,San Francisco,94103,B02,29,5241,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7656314935844, -122.410976201723)",160761067-73 +111770216,T03,11058398,Medical Incident,06/26/2011,06/26/2011,06/26/2011 02:14:43 PM,06/26/2011 02:15:56 PM,06/26/2011 02:16:12 PM,06/26/2011 02:17:14 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,06/26/2011 02:18:04 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,,1,TRUCK,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",111770216-T03 +122920022,87,12096608,Medical Incident,10/18/2012,10/17/2012,10/18/2012 01:53:33 AM,10/18/2012 01:53:52 AM,10/18/2012 01:54:21 AM,10/18/2012 01:54:31 AM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 01:56:27 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7807920802753, -122.408385745499)",122920022-87 +160551700,AM02,16021998,Medical Incident,02/24/2016,02/24/2016,02/24/2016 12:28:53 PM,02/24/2016 12:30:41 PM,02/24/2016 12:30:57 PM,02/24/2016 12:31:32 PM,02/24/2016 12:38:56 PM,02/24/2016 12:46:26 PM,02/24/2016 12:55:22 PM,Code 2 Transport,02/24/2016 01:30:38 PM,100 Block of JOHN F KENNEDY DR,San Francisco,94122,B07,31,7111,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7711332354432, -122.457507583541)",160551700-AM02 +113460337,B01,11114919,Alarms,12/12/2011,12/12/2011,12/12/2011 08:31:54 PM,12/12/2011 08:33:16 PM,12/12/2011 08:33:38 PM,12/12/2011 08:35:02 PM,12/12/2011 08:37:25 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 09:21:44 PM,0 Block of MILES ST,SF,94108,B01,2,1356,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7923023746985, -122.408839372481)",113460337-B01 +133520243,E40,13119608,Vehicle Fire,12/18/2013,12/18/2013,12/18/2013 01:24:53 PM,12/18/2013 01:27:11 PM,12/18/2013 01:27:32 PM,04/25/2016 01:49:12 PM,12/18/2013 01:28:37 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Fire,12/18/2013 01:38:43 PM,19TH AV/RIVERA ST,SF,94116,B08,40,7433,3,3,3,false,Fire,1,ENGINE,1,8,4,West of Twin Peaks,"(37.7467820382349, -122.475902020366)",133520243-E40 +103560133,AM06,10114221,Traffic Collision,12/22/2010,12/22/2010,12/22/2010 10:56:07 AM,12/22/2010 10:57:58 AM,12/22/2010 11:02:28 AM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,Other,04/25/2016 02:06:59 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",103560133-AM06 +111560196,E23,11051582,Structure Fire,06/05/2011,06/05/2011,06/05/2011 12:20:07 PM,06/05/2011 12:20:07 PM,06/05/2011 12:20:40 PM,06/05/2011 12:21:57 PM,06/05/2011 12:26:11 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Fire,06/05/2011 12:27:08 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",111560196-E23 +112330121,82,11076889,Medical Incident,08/21/2011,08/21/2011,08/21/2011 10:06:16 AM,08/21/2011 10:06:46 AM,08/21/2011 10:06:56 AM,08/21/2011 10:07:47 AM,08/21/2011 10:11:35 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,No Merit,08/21/2011 10:22:31 AM,STEVENSON ST/7TH ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7800058680664, -122.411933410089)",112330121-82 +121550063,E43,12051216,Medical Incident,06/03/2012,06/02/2012,06/03/2012 03:50:12 AM,06/03/2012 03:50:13 AM,06/03/2012 03:50:13 AM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 04:08:18 AM,900 Block of NAPLES ST,SF,94112,B09,43,6136,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Excelsior,"(37.714767275004, -122.435700868993)",121550063-E43 +160720917,79,16028523,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:02:20 AM,03/12/2016 09:03:17 AM,03/12/2016 09:03:27 AM,03/12/2016 09:03:44 AM,03/12/2016 09:10:12 AM,03/12/2016 09:32:24 AM,03/12/2016 09:46:53 AM,Code 2 Transport,03/12/2016 10:29:05 AM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160720917-79 +112720043,B04,11089834,Structure Fire,09/29/2011,09/28/2011,09/29/2011 05:31:42 AM,09/29/2011 05:33:38 AM,09/29/2011 05:33:48 AM,09/29/2011 05:39:53 AM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,Other,09/29/2011 05:40:59 AM,VAN NESS AV/GOLDEN GATE AV,SF,94102,B02,36,3164,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",112720043-B04 +130570202,E10,13019185,Alarms,02/26/2013,02/26/2013,02/26/2013 02:19:14 PM,02/26/2013 02:20:16 PM,02/26/2013 02:20:26 PM,02/26/2013 02:21:40 PM,02/26/2013 02:23:11 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 02:49:33 PM,2600 Block of GEARY BLVD,SF,94115,B05,10,4365,3,3,3,true,Alarm,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7822483679158, -122.446592481498)",130570202-E10 +140620341,E17,14021084,Medical Incident,03/03/2014,03/03/2014,03/03/2014 08:12:37 PM,03/03/2014 08:14:07 PM,03/03/2014 08:14:57 PM,03/03/2014 08:16:35 PM,03/03/2014 08:20:06 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Code 2 Transport,03/03/2014 08:50:25 PM,3RD ST/OAKDALE AV,SF,94124,B10,17,6515,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",140620341-E17 +160202851,KM08,16008092,Medical Incident,01/20/2016,01/20/2016,01/20/2016 05:13:11 PM,01/20/2016 05:13:11 PM,01/20/2016 05:13:44 PM,01/20/2016 05:15:12 PM,01/20/2016 05:19:57 PM,01/20/2016 05:42:49 PM,01/20/2016 05:59:41 PM,Code 2 Transport,01/20/2016 06:15:14 PM,100 Block of PHELAN AVE,San Francisco,94112,B09,15,8233,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7256924480483, -122.452427961322)",160202851-KM08 +122910052,E36,12096239,Structure Fire,10/17/2012,10/16/2012,10/17/2012 06:14:57 AM,10/17/2012 06:16:04 AM,10/17/2012 06:16:35 AM,10/17/2012 06:18:17 AM,10/17/2012 06:20:17 AM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Other,10/17/2012 06:57:07 AM,100 Block of JULIAN AVE,SF,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,5,2,9,Mission,"(37.7657922226195, -122.420909958943)",122910052-E36 +131750066,E03,13059284,Medical Incident,06/24/2013,06/23/2013,06/24/2013 07:44:39 AM,06/24/2013 07:45:09 AM,06/24/2013 07:45:29 AM,06/24/2013 07:46:47 AM,06/24/2013 07:49:03 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 08:27:39 AM,ELLIS ST/LARKIN ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",131750066-E03 +113240239,E01,11107667,Medical Incident,11/20/2011,11/20/2011,11/20/2011 04:31:52 PM,11/20/2011 04:34:47 PM,11/20/2011 04:35:18 PM,11/20/2011 04:36:07 PM,11/20/2011 04:41:56 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 04:47:02 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",113240239-E01 +123210247,E10,12106736,Medical Incident,11/16/2012,11/16/2012,11/16/2012 04:01:49 PM,11/16/2012 04:02:54 PM,11/16/2012 04:03:15 PM,11/16/2012 04:04:24 PM,11/16/2012 04:07:13 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/16/2012 04:20:26 PM,2800 Block of WASHINGTON ST,SF,94115,B04,10,4162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7909180945745, -122.440158054843)",123210247-E10 +131830069,85,13062271,Medical Incident,07/02/2013,07/02/2013,07/02/2013 08:16:44 AM,07/02/2013 08:18:48 AM,07/02/2013 08:20:40 AM,07/02/2013 08:20:47 AM,07/02/2013 08:24:47 AM,07/02/2013 08:51:48 AM,07/02/2013 08:59:17 AM,Code 2 Transport,07/02/2013 09:26:38 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",131830069-85 +120970150,E08,12032090,Medical Incident,04/06/2012,04/06/2012,04/06/2012 11:39:40 AM,04/06/2012 11:40:15 AM,04/06/2012 11:40:28 AM,04/06/2012 11:40:49 AM,04/06/2012 11:43:20 AM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 11:51:48 AM,400 Block of TOWNSEND ST,SF,94107,B03,8,2236,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7744917897257, -122.398368544424)",120970150-E08 +160830346,93,16032832,Medical Incident,03/23/2016,03/22/2016,03/23/2016 04:14:18 AM,03/23/2016 04:14:18 AM,03/23/2016 04:14:59 AM,03/23/2016 04:16:09 AM,03/23/2016 04:32:08 AM,03/23/2016 04:50:45 AM,03/23/2016 05:00:07 AM,Code 2 Transport,03/23/2016 05:59:55 AM,2200 Block of 17TH ST,San Francisco,94103,B02,29,2421,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7646315810414, -122.405951536611)",160830346-93 +113410198,E32,11113052,Medical Incident,12/07/2011,12/07/2011,12/07/2011 12:18:07 PM,12/07/2011 12:18:41 PM,12/07/2011 12:20:07 PM,12/07/2011 12:21:00 PM,12/07/2011 12:31:08 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/07/2011 12:45:02 PM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,,1,ENGINE,2,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",113410198-E32 +160902244,55,16035753,Medical Incident,03/30/2016,03/30/2016,03/30/2016 02:35:09 PM,03/30/2016 02:35:43 PM,03/30/2016 02:35:56 PM,03/30/2016 02:36:05 PM,03/30/2016 02:40:29 PM,03/30/2016 03:02:53 PM,03/30/2016 03:22:16 PM,Code 2 Transport,03/30/2016 03:51:17 PM,1100 Block of BURROWS ST,San Francisco,94134,B09,42,6345,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7263897099962, -122.41477811799)",160902244-55 +122120253,KM01,12070423,Medical Incident,07/30/2012,07/30/2012,07/30/2012 03:47:26 PM,07/30/2012 03:48:58 PM,07/30/2012 03:49:47 PM,07/30/2012 03:49:55 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 03:59:27 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",122120253-KM01 +111180168,57,11038910,Medical Incident,04/28/2011,04/28/2011,04/28/2011 12:43:19 PM,04/28/2011 12:46:08 PM,04/28/2011 12:46:23 PM,04/28/2011 12:47:07 PM,04/28/2011 01:01:50 PM,04/28/2011 01:06:47 PM,04/28/2011 01:27:46 PM,Code 2 Transport,04/28/2011 01:54:36 PM,0 Block of HUDSON AVE,SF,94124,B10,17,6626,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7324208265708, -122.379091692307)",111180168-57 +160043114,55,16001735,Traffic Collision,01/04/2016,01/04/2016,01/04/2016 07:21:43 PM,01/04/2016 07:21:43 PM,01/04/2016 07:21:59 PM,01/04/2016 07:22:45 PM,01/04/2016 07:29:18 PM,01/04/2016 07:39:11 PM,01/04/2016 07:52:33 PM,Code 2 Transport,01/04/2016 08:24:27 PM,GRAFTON AV/JULES AV,San Francisco,94112,B09,15,8464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7200179940664, -122.46123396929)",160043114-55 +103150238,68,10101042,Medical Incident,11/11/2010,11/11/2010,11/11/2010 04:29:47 PM,11/11/2010 04:30:35 PM,11/11/2010 04:31:01 PM,11/11/2010 04:31:26 PM,11/11/2010 04:37:38 PM,11/11/2010 04:56:00 PM,11/11/2010 05:15:52 PM,Code 2 Transport,11/11/2010 05:34:08 PM,200 Block of CAMERON WAY,SF,94124,B10,17,6613,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.720440433346, -122.388366313776)",103150238-68 +120780343,72,12026010,Medical Incident,03/18/2012,03/18/2012,03/18/2012 07:19:06 PM,03/18/2012 07:19:20 PM,03/18/2012 07:20:07 PM,03/18/2012 07:20:19 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,04/25/2016 01:59:36 PM,400 Block of CONGO ST,SF,94131,B09,26,8216,E,1,2,true,Non Life-threatening,1,MEDIC,2,9,8,West of Twin Peaks,"(37.732729716582, -122.441960992477)",120780343-72 +160562645,67,16022463,Medical Incident,02/25/2016,02/25/2016,02/25/2016 04:09:06 PM,02/25/2016 04:11:35 PM,02/25/2016 04:13:30 PM,02/25/2016 04:13:39 PM,02/25/2016 04:22:09 PM,02/25/2016 04:48:20 PM,02/25/2016 05:00:22 PM,Code 2 Transport,02/25/2016 05:26:00 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160562645-67 +121750170,E03,12058093,Medical Incident,06/23/2012,06/23/2012,06/23/2012 12:13:16 PM,06/23/2012 12:14:21 PM,06/23/2012 12:14:43 PM,06/23/2012 12:16:41 PM,06/23/2012 12:17:12 PM,04/25/2016 01:58:04 PM,04/25/2016 01:58:04 PM,Other,06/23/2012 12:19:43 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121750170-E03 +130680310,T01,13022785,Medical Incident,03/09/2013,03/09/2013,03/09/2013 06:02:09 PM,03/09/2013 06:02:09 PM,03/09/2013 06:02:51 PM,03/09/2013 06:04:14 PM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,Other,03/09/2013 06:17:11 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,South of Market,"(37.7762305177878, -122.414711004673)",130680310-T01 +113040344,E05,11101050,Medical Incident,10/31/2011,10/31/2011,10/31/2011 07:52:30 PM,10/31/2011 07:53:27 PM,10/31/2011 07:53:57 PM,10/31/2011 07:55:28 PM,10/31/2011 07:59:45 PM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,10/31/2011 08:11:54 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",113040344-E05 +122170258,E36,12072094,Medical Incident,08/04/2012,08/04/2012,08/04/2012 07:35:13 PM,08/04/2012 07:38:02 PM,08/04/2012 07:38:27 PM,08/04/2012 07:40:18 PM,08/04/2012 07:42:09 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/04/2012 07:48:49 PM,1600 Block of MARKET ST,SF,94102,B02,36,3212,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.773955543025, -122.420958448413)",122170258-E36 +160854097,71,16034003,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:47:04 PM,03/25/2016 10:48:17 PM,03/25/2016 10:53:28 PM,03/25/2016 10:53:33 PM,03/25/2016 11:04:44 PM,03/25/2016 11:06:45 PM,03/25/2016 11:33:34 PM,Code 2 Transport,03/25/2016 11:58:37 PM,DIVISADERO ST/MCALLISTER ST,San Francisco,94115,B05,21,4151,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.777794188731, -122.438365500073)",160854097-71 +112860473,84,11094983,Medical Incident,10/13/2011,10/13/2011,10/13/2011 11:20:27 PM,10/13/2011 11:21:27 PM,10/13/2011 11:21:52 PM,10/13/2011 11:22:08 PM,10/13/2011 11:26:52 PM,10/13/2011 11:55:57 PM,10/14/2011 12:14:16 AM,Code 2 Transport,10/14/2011 12:41:03 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",112860473-84 +122470219,E05,12081751,Medical Incident,09/03/2012,09/03/2012,09/03/2012 06:05:22 PM,09/03/2012 06:06:07 PM,09/03/2012 06:06:19 PM,09/03/2012 06:07:13 PM,09/03/2012 06:08:24 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 06:16:01 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",122470219-E05 +111790304,E43,11059216,Medical Incident,06/28/2011,06/28/2011,06/28/2011 07:37:45 PM,06/28/2011 07:38:09 PM,06/28/2011 07:38:23 PM,06/28/2011 07:39:28 PM,06/28/2011 07:41:38 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/28/2011 07:44:42 PM,200 Block of PARQUE DR,SF,94134,B09,43,6245,E,E,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7099618824886, -122.422461821952)",111790304-E43 +160622470,AM16,16024752,Medical Incident,03/02/2016,03/02/2016,03/02/2016 03:17:04 PM,03/02/2016 03:20:05 PM,03/02/2016 03:20:18 PM,03/02/2016 03:20:41 PM,03/02/2016 03:32:10 PM,03/02/2016 03:42:06 PM,03/02/2016 03:51:46 PM,Code 2 Transport,03/02/2016 04:07:56 PM,1000 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",160622470-AM16 +121930208,KM14,12064266,Medical Incident,07/11/2012,07/11/2012,07/11/2012 01:48:38 PM,07/11/2012 01:49:20 PM,07/11/2012 01:51:46 PM,07/11/2012 01:52:19 PM,07/11/2012 01:59:00 PM,07/11/2012 02:15:30 PM,07/11/2012 02:25:26 PM,Code 3 Transport,07/11/2012 03:03:02 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",121930208-KM14 +132370072,E36,13079857,Medical Incident,08/25/2013,08/24/2013,08/25/2013 05:17:30 AM,08/25/2013 05:18:32 AM,08/25/2013 05:19:21 AM,08/25/2013 05:22:17 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/25/2013 05:22:38 AM,100 Block of FELL ST,SF,94102,B02,36,3213,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7762095925877, -122.420316347942)",132370072-E36 +132070227,86,13070115,Medical Incident,07/26/2013,07/26/2013,07/26/2013 03:23:29 PM,07/26/2013 03:27:01 PM,07/26/2013 03:29:53 PM,04/25/2016 01:51:37 PM,07/26/2013 03:31:24 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Medical Examiner,07/26/2013 04:30:54 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,E,E,3,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",132070227-86 +160130061,79,16005005,Medical Incident,01/13/2016,01/12/2016,01/13/2016 12:32:14 AM,01/13/2016 12:33:28 AM,01/13/2016 12:33:35 AM,01/13/2016 12:34:04 AM,01/13/2016 12:35:36 AM,01/13/2016 12:45:14 AM,01/13/2016 12:53:23 AM,Code 2 Transport,01/13/2016 01:17:13 AM,18TH ST/GUERRERO ST,San Francisco,94110,B02,7,5422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7615656740721, -122.42380067092)",160130061-79 +103000223,E44,10095800,Other,10/27/2010,10/27/2010,10/27/2010 03:20:21 PM,10/27/2010 03:20:21 PM,10/27/2010 03:20:21 PM,04/25/2016 02:07:54 PM,10/27/2010 03:25:32 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 10:43:08 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",103000223-E44 +113030357,E36,11100702,Medical Incident,10/30/2011,10/30/2011,10/30/2011 06:53:31 PM,10/30/2011 06:54:22 PM,10/30/2011 06:54:34 PM,10/30/2011 06:55:50 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/30/2011 07:05:34 PM,MARKET ST/VAN NESS AV,SF,94103,B02,36,3211,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7751470741622, -122.419255607214)",113030357-E36 +111530143,T12,11050558,Medical Incident,06/02/2011,06/02/2011,06/02/2011 12:13:53 PM,06/02/2011 12:16:10 PM,06/02/2011 12:17:44 PM,06/02/2011 12:18:31 PM,06/02/2011 12:20:03 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/02/2011 12:33:59 PM,400 Block of PARNASSUS AVE,SF,94122,B05,12,5155,3,3,3,false,,1,TRUCK,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",111530143-T12 +133510171,E08,13119176,Medical Incident,12/17/2013,12/17/2013,12/17/2013 11:22:41 AM,12/17/2013 11:24:23 AM,12/17/2013 11:25:03 AM,12/17/2013 11:26:15 AM,12/17/2013 11:28:44 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 11:39:32 AM,800 Block of 22ND ST,SF,94107,B03,8,2155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7577999936324, -122.38972393411)",133510171-E08 +111050223,E03,11034801,Medical Incident,04/15/2011,04/15/2011,04/15/2011 03:39:50 PM,04/15/2011 03:40:37 PM,04/15/2011 03:40:47 PM,04/15/2011 03:42:04 PM,04/15/2011 03:44:19 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 03:52:52 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",111050223-E03 +122900097,E03,12095901,Medical Incident,10/16/2012,10/16/2012,10/16/2012 08:30:30 AM,10/16/2012 08:33:17 AM,10/16/2012 08:33:38 AM,10/16/2012 08:36:47 AM,10/16/2012 08:39:15 AM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/16/2012 08:50:11 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",122900097-E03 +160512605,KM04,16020551,Traffic Collision,02/20/2016,02/20/2016,02/20/2016 06:18:56 PM,02/20/2016 06:19:14 PM,02/20/2016 06:20:04 PM,02/20/2016 06:20:36 PM,02/20/2016 06:24:58 PM,02/20/2016 06:32:58 PM,02/20/2016 06:40:38 PM,Code 3 Transport,02/20/2016 07:30:16 PM,MISSION ST/30TH ST,San Francisco,94110,B06,32,5625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",160512605-KM04 +130440331,CO2,13015039,Explosion,02/13/2013,02/13/2013,02/13/2013 06:36:24 PM,02/13/2013 06:37:05 PM,02/13/2013 06:44:28 PM,02/13/2013 06:45:25 PM,02/13/2013 06:51:14 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,Other,02/13/2013 07:37:59 PM,SPEAR ST/MISSION ST,SF,94105,B03,35,2111,3,3,3,false,Fire,1,SUPPORT,5,3,6,Financial District/South Beach,"(37.7925372164019, -122.394059624933)",130440331-CO2 +160691388,53,16027442,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:22:41 AM,03/09/2016 11:23:14 AM,03/09/2016 11:24:47 AM,03/09/2016 11:25:13 AM,03/09/2016 11:31:23 AM,03/09/2016 11:57:59 AM,03/09/2016 12:07:44 PM,Code 2 Transport,03/09/2016 01:04:19 PM,400 Block of FILLMORE ST,San Francisco,94117,B05,6,3531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.773514924854, -122.430658639831)",160691388-53 +140090204,D2,14003151,Structure Fire,01/09/2014,01/09/2014,01/09/2014 12:55:51 PM,01/09/2014 12:56:22 PM,01/09/2014 12:56:52 PM,01/09/2014 12:59:20 PM,01/09/2014 01:09:39 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 02:16:44 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,,3,3,false,Alarm,1,CHIEF,9,2,6,Mission,"(37.7740948566882, -122.420001436964)",140090204-D2 +160391711,62,16015615,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:50:43 PM,02/08/2016 12:51:06 PM,02/08/2016 12:51:20 PM,02/08/2016 12:51:48 PM,02/08/2016 12:55:25 PM,02/08/2016 01:14:17 PM,02/08/2016 01:20:18 PM,Code 3 Transport,02/08/2016 02:28:33 PM,1100 Block of PAGE ST,San Francisco,94117,B05,21,4251,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7718305398142, -122.43971161435)",160391711-62 +120550370,E17,12018327,Medical Incident,02/24/2012,02/24/2012,02/24/2012 11:25:42 PM,02/24/2012 11:26:06 PM,02/24/2012 11:26:36 PM,02/24/2012 11:27:55 PM,02/24/2012 11:31:26 PM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 11:52:30 PM,KIRKWOOD AV/EARL ST,SF,94124,B10,17,6713,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7286385385109, -122.373157916576)",120550370-E17 +121430190,94,12047541,Structure Fire,05/22/2012,05/22/2012,05/22/2012 01:06:16 PM,05/22/2012 01:06:39 PM,05/22/2012 01:07:41 PM,05/22/2012 01:09:58 PM,05/22/2012 01:20:37 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 03:20:07 PM,2300 Block of 3RD ST,SF,94107,B10,25,2533,3,3,3,true,Fire,2,MEDIC,10,10,10,Potrero Hill,"(37.7592069260893, -122.388577089603)",121430190-94 +140610261,E01,14020711,Medical Incident,03/02/2014,03/02/2014,03/02/2014 05:54:36 PM,03/02/2014 05:55:55 PM,03/02/2014 05:59:00 PM,03/02/2014 05:59:00 PM,03/02/2014 06:03:07 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,No Merit,03/02/2014 06:07:02 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",140610261-E01 +122310225,E48,12076641,Medical Incident,08/18/2012,08/18/2012,08/18/2012 05:06:00 PM,08/18/2012 05:06:23 PM,08/18/2012 05:06:54 PM,08/18/2012 05:08:31 PM,08/18/2012 05:11:04 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 05:32:36 PM,1200 Block of MARINER DR,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",122310225-E48 +160101648,89,16004045,Medical Incident,01/10/2016,01/10/2016,01/10/2016 01:09:53 PM,01/10/2016 01:16:01 PM,01/10/2016 01:16:59 PM,01/10/2016 01:19:38 PM,01/10/2016 01:26:32 PM,01/10/2016 01:36:53 PM,01/10/2016 02:05:19 PM,Code 2 Transport,01/10/2016 02:51:55 PM,3200 Block of 25TH ST,San Francisco,94110,B06,11,5534,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7507333784902, -122.415819362041)",160101648-89 +160592349,57,16023597,Medical Incident,02/28/2016,02/28/2016,02/28/2016 05:02:16 PM,02/28/2016 05:02:53 PM,02/28/2016 05:03:36 PM,02/28/2016 05:03:49 PM,02/28/2016 05:05:00 PM,02/28/2016 05:26:02 PM,02/28/2016 05:32:38 PM,Code 2 Transport,02/28/2016 06:16:43 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160592349-57 +132490407,E03,13084223,Alarms,09/06/2013,09/06/2013,09/06/2013 11:29:12 PM,09/06/2013 11:31:27 PM,09/06/2013 11:32:03 PM,09/06/2013 11:32:53 PM,09/06/2013 11:39:38 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/06/2013 11:46:25 PM,500 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7860096412795, -122.416458282406)",132490407-E03 +140230299,84,14007961,Medical Incident,01/23/2014,01/23/2014,01/23/2014 08:04:37 PM,01/23/2014 08:05:26 PM,01/23/2014 08:05:43 PM,01/23/2014 08:05:53 PM,01/23/2014 08:11:04 PM,01/23/2014 08:30:40 PM,01/23/2014 08:41:37 PM,Code 3 Transport,01/23/2014 09:04:46 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,,3,3,false,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140230299-84 +131660147,RC1,13056356,Structure Fire,06/15/2013,06/15/2013,06/15/2013 12:03:27 PM,06/15/2013 12:03:30 PM,06/15/2013 12:11:12 PM,06/15/2013 12:11:17 PM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Other,06/15/2013 12:17:33 PM,2800 Block of LAGUNA ST,SF,94123,B04,16,3354,3,3,3,true,Fire,1,RESCUE CAPTAIN,14,4,2,Marina,"(37.7972584259781, -122.430396417051)",131660147-RC1 +130480110,55,13016324,Medical Incident,02/17/2013,02/17/2013,02/17/2013 08:30:26 AM,02/17/2013 08:33:47 AM,02/17/2013 08:33:59 AM,02/17/2013 08:34:21 AM,02/17/2013 08:44:01 AM,02/17/2013 08:50:36 AM,02/17/2013 09:15:29 AM,Code 2 Transport,02/17/2013 09:45:15 AM,100 Block of THRIFT ST,SF,94112,B09,33,8465,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7174111105122, -122.45758260608)",130480110-55 +123590029,T10,12120045,Alarms,12/24/2012,12/23/2012,12/24/2012 02:22:54 AM,12/24/2012 02:22:54 AM,12/24/2012 02:23:13 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,04/25/2016 01:55:09 PM,45TH AV/GEARY BL,SF,94121,B07,34,7274,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.7791109530291, -122.506164795541)",123590029-T10 +120680376,77,12022743,Medical Incident,03/08/2012,03/08/2012,03/08/2012 11:40:09 PM,03/08/2012 11:42:59 PM,03/08/2012 11:44:31 PM,03/08/2012 11:44:48 PM,03/08/2012 11:56:43 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Against Medical Advice,03/09/2012 12:23:47 AM,1200 Block of 17TH ST,SF,94107,B03,29,2431,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,10,Potrero Hill,"(37.7651047966858, -122.396283594618)",120680376-77 +160840535,88,16033258,Medical Incident,03/24/2016,03/23/2016,03/24/2016 06:58:24 AM,03/24/2016 06:59:25 AM,03/24/2016 06:59:33 AM,03/24/2016 06:59:39 AM,03/24/2016 07:04:30 AM,03/24/2016 07:21:04 AM,03/24/2016 07:29:02 AM,Code 2 Transport,03/24/2016 08:11:51 AM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7968082637513, -122.408035995184)",160840535-88 +103080104,E37,10098626,Medical Incident,11/04/2010,11/04/2010,11/04/2010 09:13:58 AM,11/04/2010 09:14:27 AM,11/04/2010 09:14:53 AM,11/04/2010 09:15:11 AM,11/04/2010 09:17:20 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 09:27:05 AM,500 Block of CONNECTICUT ST,SF,94107,B10,37,2566,3,3,3,false,,1,ENGINE,1,10,10,Potrero Hill,"(37.7586882172106, -122.397195060892)",103080104-E37 +102420252,E01,10076376,Medical Incident,08/30/2010,08/30/2010,08/30/2010 04:08:52 PM,08/30/2010 04:09:06 PM,08/30/2010 04:09:32 PM,08/30/2010 04:11:08 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/30/2010 04:21:11 PM,MARKET ST/7TH ST,SF,94103,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",102420252-E01 +122530299,T03,12083757,Structure Fire,09/09/2012,09/09/2012,09/09/2012 07:15:50 PM,09/09/2012 07:16:48 PM,09/09/2012 07:17:05 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,Other,09/09/2012 07:23:51 PM,1600 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,Fire,1,TRUCK,10,4,5,Japantown,"(37.78676442656, -122.427490271072)",122530299-T03 +121960333,E41,12065322,Medical Incident,07/14/2012,07/14/2012,07/14/2012 09:13:34 PM,07/14/2012 09:15:01 PM,07/14/2012 09:15:42 PM,07/14/2012 09:16:28 PM,07/14/2012 09:17:56 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/14/2012 09:21:56 PM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7896888465146, -122.412913104115)",121960333-E41 +110020156,T13,11000642,Alarms,01/02/2011,01/02/2011,01/02/2011 12:07:37 PM,01/02/2011 12:08:41 PM,01/02/2011 12:08:53 PM,01/02/2011 12:10:41 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 12:19:15 PM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,false,,1,TRUCK,3,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",110020156-T13 +132390341,T12,13080756,Structure Fire,08/27/2013,08/27/2013,08/27/2013 08:10:51 PM,08/27/2013 08:10:52 PM,08/27/2013 08:11:37 PM,08/27/2013 08:12:16 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,No Merit,08/27/2013 08:16:14 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,Alarm,1,TRUCK,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",132390341-T12 +110770176,T12,11025332,Administrative,03/18/2011,03/18/2011,03/18/2011 11:51:16 AM,03/18/2011 11:51:35 AM,03/18/2011 11:51:52 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 11:52:21 AM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,false,,1,TRUCK,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",110770176-T12 +160282984,79,16011188,Medical Incident,01/28/2016,01/28/2016,01/28/2016 05:39:00 PM,01/28/2016 05:40:40 PM,01/28/2016 05:40:56 PM,01/28/2016 05:41:06 PM,01/28/2016 05:49:56 PM,01/28/2016 06:14:47 PM,01/28/2016 06:45:02 PM,Code 2 Transport,01/28/2016 07:18:54 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160282984-79 +120070054,85,12002309,Medical Incident,01/07/2012,01/06/2012,01/07/2012 03:43:30 AM,01/07/2012 03:44:22 AM,01/07/2012 03:44:48 AM,01/07/2012 03:46:53 AM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,Other,01/07/2012 03:48:19 AM,3900 Block of 24TH ST,SF,94114,B06,11,5522,3,2,2,true,Non Life-threatening,1,MEDIC,3,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",120070054-85 +121450377,B01,12048303,Alarms,05/24/2012,05/24/2012,05/24/2012 10:50:40 PM,05/24/2012 10:52:34 PM,05/24/2012 10:52:40 PM,05/24/2012 10:54:14 PM,05/24/2012 10:58:03 PM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Fire,05/24/2012 11:10:14 PM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,3,3,false,Alarm,1,CHIEF,3,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",121450377-B01 +160662882,58,16026504,Medical Incident,03/06/2016,03/06/2016,03/06/2016 08:02:23 PM,03/06/2016 08:02:23 PM,03/06/2016 08:02:48 PM,03/06/2016 08:03:04 PM,03/06/2016 08:14:39 PM,03/06/2016 08:19:06 PM,03/06/2016 08:32:02 PM,Code 2 Transport,03/06/2016 09:08:50 PM,400 Block of 41ST AVE,San Francisco,94121,B07,34,7264,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",160662882-58 +113040310,KM11,11101021,Medical Incident,10/31/2011,10/31/2011,10/31/2011 06:01:41 PM,10/31/2011 06:03:31 PM,10/31/2011 06:04:15 PM,10/31/2011 06:04:59 PM,10/31/2011 06:14:49 PM,10/31/2011 06:38:38 PM,10/31/2011 06:48:41 PM,Code 2 Transport,10/31/2011 07:04:56 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,2,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",113040310-KM11 +131040048,88,13034811,Medical Incident,04/14/2013,04/13/2013,04/14/2013 01:54:16 AM,04/14/2013 01:54:34 AM,04/14/2013 01:59:24 AM,04/14/2013 01:59:50 AM,04/14/2013 02:06:39 AM,04/14/2013 02:14:29 AM,04/14/2013 02:32:30 AM,Code 2 Transport,04/14/2013 02:48:23 AM,1100 Block of FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7752603293476, -122.409820946894)",131040048-88 +160151399,57,16005954,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:16:44 AM,01/15/2016 11:16:44 AM,01/15/2016 11:17:17 AM,01/15/2016 11:17:26 AM,01/15/2016 11:31:56 AM,01/15/2016 11:32:39 AM,01/15/2016 11:51:58 AM,Code 3 Transport,01/15/2016 12:20:03 PM,2000 Block of POLK ST,San Francisco,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",160151399-57 +133640356,94,13123752,Medical Incident,12/30/2013,12/30/2013,12/30/2013 09:31:22 PM,12/30/2013 09:31:47 PM,12/30/2013 09:33:38 PM,12/30/2013 09:34:54 PM,04/25/2016 01:48:59 PM,12/30/2013 09:50:12 PM,12/30/2013 10:14:19 PM,Code 2 Transport,12/30/2013 10:52:35 PM,1800 Block of WALLER ST,SF,94122,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",133640356-94 +160460326,78,16018374,Medical Incident,02/15/2016,02/14/2016,02/15/2016 02:52:57 AM,02/15/2016 02:58:13 AM,02/15/2016 03:06:14 AM,02/15/2016 03:11:15 AM,02/15/2016 03:20:06 AM,02/15/2016 03:42:16 AM,02/15/2016 03:52:48 AM,Code 2 Transport,02/15/2016 04:28:23 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160460326-78 +123540295,E11,12118540,Medical Incident,12/19/2012,12/19/2012,12/19/2012 05:38:50 PM,12/19/2012 05:39:27 PM,12/19/2012 05:40:11 PM,12/19/2012 05:41:11 PM,12/19/2012 05:43:45 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 05:55:51 PM,1000 Block of CASTRO ST,SF,94114,B06,24,5515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7532862863105, -122.434347185392)",123540295-E11 +140390314,E03,14013303,Medical Incident,02/08/2014,02/08/2014,02/08/2014 07:33:49 PM,02/08/2014 07:35:43 PM,02/08/2014 07:36:45 PM,02/08/2014 07:37:47 PM,02/08/2014 07:41:50 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/08/2014 07:50:05 PM,200 Block of JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",140390314-E03 +130430172,KM04,13014622,Medical Incident,02/12/2013,02/12/2013,02/12/2013 12:58:23 PM,02/12/2013 01:00:07 PM,02/12/2013 01:00:36 PM,02/12/2013 01:01:50 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,02/12/2013 01:04:18 PM,GOUGH ST/HAYES ST,SF,94102,B02,36,3265,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7768835259362, -122.422978150089)",130430172-KM04 +110870237,T01,11028763,Alarms,03/28/2011,03/28/2011,03/28/2011 02:45:06 PM,03/28/2011 02:45:06 PM,03/28/2011 02:47:51 PM,03/28/2011 02:49:06 PM,03/28/2011 02:51:26 PM,04/25/2016 02:05:24 PM,04/25/2016 02:05:24 PM,Other,03/28/2011 02:51:54 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,,1,TRUCK,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",110870237-T01 +131930314,E40,13065769,Structure Fire,07/12/2013,07/12/2013,07/12/2013 08:40:13 PM,07/12/2013 08:41:04 PM,07/12/2013 08:41:18 PM,07/12/2013 08:43:19 PM,07/12/2013 08:43:54 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 08:51:45 PM,900 Block of RIVERA ST,SF,94116,B08,40,7433,3,3,3,false,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7467024373676, -122.476459114973)",131930314-E40 +120310316,T06,12010385,Medical Incident,01/31/2012,01/31/2012,01/31/2012 08:09:35 PM,01/31/2012 08:09:36 PM,01/31/2012 08:09:42 PM,01/31/2012 08:11:08 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,01/31/2012 08:12:43 PM,100 Block of DUBOCE AVE,SF,94103,B02,36,5126,3,3,3,false,Non Life-threatening,1,TRUCK,3,2,8,Mission,"(37.7698990326822, -122.422760608099)",120310316-T06 +123310068,87,12109938,Medical Incident,11/26/2012,11/25/2012,11/26/2012 06:49:41 AM,11/26/2012 06:50:07 AM,11/26/2012 06:53:36 AM,11/26/2012 06:54:18 AM,11/26/2012 07:07:14 AM,11/26/2012 07:25:05 AM,11/26/2012 07:28:38 AM,Code 2 Transport,11/26/2012 07:59:23 AM,CASTRO ST/14TH ST,SF,94114,B05,6,5133,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7673279605818, -122.435624140662)",123310068-87 +110050002,E01,11001496,Medical Incident,01/05/2011,01/04/2011,01/05/2011 12:00:25 AM,01/05/2011 12:02:51 AM,01/05/2011 12:03:44 AM,01/05/2011 12:06:13 AM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 12:08:42 AM,0 Block of CAMPTON PL,SF,94108,B01,1,1316,2,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7890244222967, -122.406081237999)",110050002-E01 +160293897,89,16011608,Medical Incident,01/29/2016,01/29/2016,01/29/2016 11:24:57 PM,01/29/2016 11:27:07 PM,01/29/2016 11:27:42 PM,01/29/2016 11:27:58 PM,01/29/2016 11:32:35 PM,01/29/2016 11:48:30 PM,01/29/2016 11:57:22 PM,Code 2 Transport,01/30/2016 12:27:18 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160293897-89 +160203962,70,16008202,Medical Incident,01/20/2016,01/20/2016,01/20/2016 11:06:34 PM,01/20/2016 11:08:58 PM,01/20/2016 11:09:11 PM,01/20/2016 11:09:49 PM,01/20/2016 11:12:07 PM,01/20/2016 11:22:54 PM,01/20/2016 11:29:03 PM,Code 2 Transport,01/21/2016 12:02:37 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160203962-70 +160462904,53,16018614,Medical Incident,02/15/2016,02/15/2016,02/15/2016 06:02:09 PM,02/15/2016 06:02:31 PM,02/15/2016 06:03:22 PM,02/15/2016 06:04:30 PM,02/15/2016 06:09:08 PM,02/15/2016 06:25:38 PM,02/15/2016 06:51:08 PM,Code 2 Transport,02/15/2016 07:11:42 PM,500 Block of MARKET ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7898275380016, -122.400837514889)",160462904-53 +112120050,T15,11069845,Alarms,07/31/2011,07/30/2011,07/31/2011 02:55:04 AM,07/31/2011 02:55:08 AM,07/31/2011 02:55:16 AM,07/31/2011 02:57:49 AM,07/31/2011 03:01:39 AM,04/25/2016 02:03:24 PM,04/25/2016 02:03:24 PM,Other,07/31/2011 03:11:32 AM,400 Block of ATHENS ST,SF,94112,B09,43,615,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7208342283008, -122.428956362457)",112120050-T15 +110350246,73,11011537,Medical Incident,02/04/2011,02/04/2011,02/04/2011 03:18:55 PM,02/04/2011 03:19:58 PM,02/04/2011 03:20:26 PM,02/04/2011 03:20:36 PM,02/04/2011 03:23:12 PM,02/04/2011 03:43:15 PM,02/04/2011 04:02:16 PM,Code 2 Transport,02/04/2011 04:05:24 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",110350246-73 +102840099,E06,10090350,Traffic Collision,10/11/2010,10/11/2010,10/11/2010 09:08:16 AM,10/11/2010 09:10:13 AM,10/11/2010 09:15:13 AM,10/11/2010 09:16:17 AM,10/11/2010 09:17:47 AM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Patient Declined Transport,10/11/2010 09:54:22 AM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,2,2,2,true,,1,ENGINE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",102840099-E06 +111590170,T03,11052574,Medical Incident,06/08/2011,06/08/2011,06/08/2011 12:51:16 PM,06/08/2011 12:52:24 PM,06/08/2011 12:52:38 PM,06/08/2011 12:54:50 PM,06/08/2011 12:56:28 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/08/2011 01:05:31 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,2,2,false,,1,TRUCK,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",111590170-T03 +123510137,E31,12117350,Medical Incident,12/16/2012,12/16/2012,12/16/2012 10:22:41 AM,12/16/2012 10:23:15 AM,12/16/2012 10:24:22 AM,12/16/2012 10:24:53 AM,12/16/2012 10:26:34 AM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/16/2012 10:33:33 AM,15TH AV/BALBOA ST,SF,94118,B07,31,7145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7767927203433, -122.473698120609)",123510137-E31 +120580207,B04,12019139,Administrative,02/27/2012,02/27/2012,02/27/2012 02:22:27 PM,02/27/2012 02:22:29 PM,02/27/2012 02:22:48 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/27/2012 02:23:24 PM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,false,,1,CHIEF,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",120580207-B04 +140140097,B01,14004731,Alarms,01/14/2014,01/14/2014,01/14/2014 09:17:08 AM,01/14/2014 09:18:26 AM,01/14/2014 09:18:32 AM,01/14/2014 09:19:36 AM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Fire,01/14/2014 09:23:33 AM,2600 Block of JONES ST,SF,94133,B01,28,1521,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8056853345021, -122.416914137852)",140140097-B01 +160012294,KM01,16000363,Medical Incident,01/01/2016,01/01/2016,01/01/2016 02:30:44 PM,01/01/2016 02:30:44 PM,01/01/2016 02:32:42 PM,01/01/2016 02:34:41 PM,01/01/2016 02:52:37 PM,01/01/2016 02:57:38 PM,01/01/2016 03:27:59 PM,Code 2 Transport,01/01/2016 03:40:18 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160012294-KM01 +123490100,E13,12116627,Outside Fire,12/14/2012,12/14/2012,12/14/2012 08:50:35 AM,12/14/2012 08:52:39 AM,12/14/2012 08:52:51 AM,12/14/2012 08:53:55 AM,12/14/2012 08:55:36 AM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Fire,12/14/2012 09:00:49 AM,1ST ST/MARKET ST,SF,94105,B03,13,2143,3,3,3,true,Fire,1,ENGINE,1,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",123490100-E13 +120960112,KM01,12031730,Medical Incident,04/05/2012,04/05/2012,04/05/2012 10:24:11 AM,04/05/2012 10:25:09 AM,04/05/2012 10:25:43 AM,04/05/2012 10:27:08 AM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Other,04/05/2012 10:29:24 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",120960112-KM01 +130410030,55,13013890,Other,02/10/2013,02/09/2013,02/10/2013 01:42:31 AM,02/10/2013 01:42:31 AM,02/10/2013 01:43:33 AM,02/10/2013 01:43:50 AM,02/10/2013 01:49:03 AM,02/10/2013 02:08:52 AM,02/10/2013 02:18:43 AM,Code 2 Transport,02/10/2013 03:01:32 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,Alarm,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",130410030-55 +110270390,64,11009057,Structure Fire,01/27/2011,01/27/2011,01/27/2011 09:51:23 PM,01/27/2011 09:52:25 PM,01/27/2011 09:53:00 PM,01/27/2011 09:54:57 PM,01/27/2011 09:57:52 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 09:58:59 PM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,MEDIC,5,10,10,Bayview Hunters Point,"(37.737593919819, -122.389860953099)",110270390-64 +110800369,87,11026518,Medical Incident,03/21/2011,03/21/2011,03/21/2011 10:49:50 PM,03/21/2011 10:50:21 PM,03/21/2011 10:50:40 PM,03/21/2011 10:51:20 PM,03/21/2011 10:54:47 PM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Patient Declined Transport,03/21/2011 11:21:40 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110800369-87 +160451601,67,16018111,Medical Incident,02/14/2016,02/14/2016,02/14/2016 12:40:41 PM,02/14/2016 12:41:14 PM,02/14/2016 12:42:23 PM,02/14/2016 12:42:48 PM,02/14/2016 12:45:36 PM,02/14/2016 01:00:30 PM,02/14/2016 01:16:44 PM,Code 2 Transport,02/14/2016 01:48:27 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",160451601-67 +131100004,RC1,13036855,Medical Incident,04/20/2013,04/19/2013,04/20/2013 12:04:51 AM,04/20/2013 12:06:47 AM,04/20/2013 12:06:58 AM,04/20/2013 12:09:31 AM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/20/2013 12:10:19 AM,COLUMBUS AV/VALLEJO ST,SF,94133,B01,2,1333,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7986968604086, -122.407869497502)",131100004-RC1 +122080242,E12,12069208,Traffic Collision,07/26/2012,07/26/2012,07/26/2012 05:10:13 PM,07/26/2012 05:11:35 PM,07/26/2012 05:12:09 PM,07/26/2012 05:12:57 PM,07/26/2012 05:24:15 PM,04/25/2016 01:57:32 PM,07/26/2012 05:44:02 PM,Other,07/26/2012 06:15:48 PM,CLAYTON ST/ASHBURY ST,SF,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7627222355861, -122.446994343129)",122080242-E12 +160571628,64,16022742,Medical Incident,02/26/2016,02/26/2016,02/26/2016 12:27:18 PM,02/26/2016 12:29:12 PM,02/26/2016 12:29:24 PM,02/26/2016 12:29:36 PM,02/26/2016 12:36:50 PM,02/26/2016 12:44:56 PM,02/26/2016 12:59:28 PM,Code 2 Transport,02/26/2016 01:31:58 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160571628-64 +133110355,82,13105865,Medical Incident,11/07/2013,11/07/2013,11/07/2013 10:57:54 PM,11/07/2013 10:59:51 PM,11/07/2013 11:00:05 PM,11/07/2013 11:00:11 PM,11/07/2013 11:04:17 PM,11/07/2013 11:23:05 PM,11/07/2013 11:45:20 PM,Code 2 Transport,11/08/2013 12:35:08 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",133110355-82 +111350076,T10,11044809,Alarms,05/15/2011,05/14/2011,05/15/2011 05:58:16 AM,05/15/2011 05:59:37 AM,05/15/2011 06:00:02 AM,05/15/2011 06:02:37 AM,05/15/2011 06:04:12 AM,04/25/2016 02:04:37 PM,04/25/2016 02:04:37 PM,Other,05/15/2011 06:16:25 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,false,,1,TRUCK,1,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",111350076-T10 +160350175,55,16013645,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:21:36 AM,02/04/2016 01:23:24 AM,02/04/2016 01:23:49 AM,02/04/2016 01:24:26 AM,02/04/2016 01:41:04 AM,02/04/2016 01:41:05 AM,02/04/2016 01:54:32 AM,Code 2 Transport,02/04/2016 02:35:35 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160350175-55 +122070342,88,12068968,Medical Incident,07/25/2012,07/25/2012,07/25/2012 08:51:31 PM,07/25/2012 08:53:17 PM,07/25/2012 08:54:17 PM,07/25/2012 08:54:24 PM,07/25/2012 09:05:05 PM,04/25/2016 01:57:32 PM,04/25/2016 01:57:32 PM,Patient Declined Transport,07/25/2012 09:32:43 PM,700 Block of EDDY ST,SF,94109,B02,3,3163,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",122070342-88 +140440375,E20,14015112,Outside Fire,02/13/2014,02/13/2014,02/13/2014 07:19:31 PM,02/13/2014 07:24:35 PM,02/13/2014 07:26:48 PM,02/13/2014 07:31:28 PM,02/13/2014 07:33:52 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,No Merit,02/13/2014 07:41:30 PM,0 Block of LA AVANZADA,SF,94131,B08,20,5365,3,3,3,true,Fire,1,ENGINE,1,8,7,Twin Peaks,"(37.7559493215982, -122.452288235801)",140440375-E20 +120600165,B04,12019736,Alarms,02/29/2012,02/29/2012,02/29/2012 12:40:40 PM,02/29/2012 12:42:09 PM,02/29/2012 12:42:24 PM,02/29/2012 12:43:49 PM,02/29/2012 12:46:28 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Fire,02/29/2012 12:52:45 PM,1700 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,false,Alarm,1,CHIEF,3,5,2,Pacific Heights,"(37.7857001632116, -122.440081147256)",120600165-B04 +111870219,E42,11061849,Administrative,07/06/2011,07/06/2011,07/06/2011 02:02:51 PM,07/06/2011 02:05:46 PM,07/06/2011 02:07:26 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 02:07:58 PM,2400 Block of SAN BRUNO AVE,SF,94134,B10,42,6362,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7318198889718, -122.405412091734)",111870219-E42 +160450456,62,16017973,Medical Incident,02/14/2016,02/13/2016,02/14/2016 02:43:39 AM,02/14/2016 02:45:01 AM,02/14/2016 02:47:12 AM,02/14/2016 02:47:21 AM,02/14/2016 03:04:17 AM,02/14/2016 03:26:42 AM,02/14/2016 03:45:00 AM,Code 2 Transport,02/14/2016 04:00:10 AM,DRUMM ST/MARKET ST,San Francisco,94105,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",160450456-62 +160870344,85,16034437,Medical Incident,03/27/2016,03/26/2016,03/27/2016 02:06:18 AM,03/27/2016 02:08:07 AM,03/27/2016 02:08:30 AM,03/27/2016 02:08:44 AM,03/27/2016 02:12:40 AM,03/27/2016 02:24:40 AM,03/27/2016 02:32:13 AM,Code 2 Transport,03/27/2016 03:01:55 AM,1500 Block of FOLSOM ST,San Francisco,94103,B02,36,5121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7715982798716, -122.414224026965)",160870344-85 +131300178,58,13043906,Medical Incident,05/10/2013,05/10/2013,05/10/2013 01:34:18 PM,05/10/2013 01:34:58 PM,05/10/2013 01:35:29 PM,05/10/2013 01:35:36 PM,05/10/2013 01:37:47 PM,05/10/2013 01:49:33 PM,05/10/2013 02:00:21 PM,Code 2 Transport,05/10/2013 02:34:26 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",131300178-58 +120310154,B09,12010257,Structure Fire,01/31/2012,01/31/2012,01/31/2012 11:45:38 AM,01/31/2012 11:47:11 AM,01/31/2012 11:47:35 AM,01/31/2012 11:48:16 AM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/31/2012 11:55:07 AM,2100 Block of 33RD AVE,SF,94116,B08,18,7545,3,3,3,false,Fire,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7470473149304, -122.491085954607)",120310154-B09 +140960115,E05,14032255,Medical Incident,04/06/2014,04/06/2014,04/06/2014 08:37:11 AM,04/06/2014 08:37:52 AM,04/06/2014 08:38:19 AM,04/06/2014 08:39:16 AM,04/06/2014 08:40:34 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Fire,04/06/2014 08:52:30 AM,1200 Block of TURK ST,SAN FRANCISCO,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",140960115-E05 +121790105,82,12059544,Medical Incident,06/27/2012,06/27/2012,06/27/2012 09:00:04 AM,06/27/2012 09:00:04 AM,06/27/2012 09:00:15 AM,06/27/2012 09:00:46 AM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,No Merit,06/27/2012 09:04:07 AM,UNIVERSITY ST/WOOLSEY ST,SF,94134,B09,42,6344,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,9,McLaren Park,"(37.7226584556741, -122.412468270392)",121790105-82 +102760344,T08,10087873,Medical Incident,10/03/2010,10/03/2010,10/03/2010 08:19:36 PM,10/03/2010 08:20:59 PM,10/03/2010 08:23:27 PM,10/03/2010 08:24:38 PM,10/03/2010 08:26:33 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/03/2010 08:31:08 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",102760344-T08 +160670864,57,16026667,Medical Incident,03/07/2016,03/07/2016,03/07/2016 09:54:07 AM,03/07/2016 09:54:31 AM,03/07/2016 09:54:58 AM,03/07/2016 09:56:54 AM,03/07/2016 09:58:41 AM,03/07/2016 10:06:28 AM,03/07/2016 10:06:28 AM,Code 2 Transport,03/07/2016 10:40:20 AM,16TH ST/SHOTWELL ST,San Francisco,94110,B02,7,5237,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7652494943866, -122.416387524486)",160670864-57 +140440097,94,14014891,Medical Incident,02/13/2014,02/13/2014,02/13/2014 08:29:28 AM,02/13/2014 08:30:36 AM,02/13/2014 08:31:07 AM,02/13/2014 08:31:23 AM,02/13/2014 08:36:09 AM,02/13/2014 08:54:08 AM,02/13/2014 09:15:52 AM,Code 2 Transport,02/13/2014 09:59:15 AM,0 Block of MORNINGSIDE DR,SF,94132,B08,19,8814,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7331813512189, -122.492299907368)",140440097-94 +130410038,E03,13013898,Medical Incident,02/10/2013,02/09/2013,02/10/2013 02:09:32 AM,02/10/2013 02:09:47 AM,02/10/2013 02:11:10 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 02:11:36 AM,POWELL ST/ELLIS ST,SF,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",130410038-E03 +122350046,AM16,12077765,Medical Incident,08/22/2012,08/21/2012,08/22/2012 05:56:47 AM,08/22/2012 05:57:36 AM,08/22/2012 05:58:19 AM,08/22/2012 05:59:15 AM,08/22/2012 06:08:18 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Medical Examiner,08/22/2012 07:17:33 AM,700 Block of 22ND AVE,SF,94121,B07,14,7177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7736529566581, -122.480976726995)",122350046-AM16 +121350357,89,12045040,Medical Incident,05/14/2012,05/14/2012,05/14/2012 10:00:55 PM,05/14/2012 10:02:56 PM,05/14/2012 10:05:56 PM,05/14/2012 10:07:31 PM,05/14/2012 10:18:12 PM,05/14/2012 10:41:02 PM,05/14/2012 10:45:31 PM,Code 2 Transport,05/14/2012 11:16:05 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",121350357-89 +103080054,E02,10098586,Electrical Hazard,11/04/2010,11/03/2010,11/04/2010 05:04:11 AM,11/04/2010 05:10:20 AM,11/04/2010 05:10:41 AM,11/04/2010 05:12:40 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 05:24:11 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",103080054-E02 +160691106,57,16027411,Medical Incident,03/09/2016,03/09/2016,03/09/2016 10:05:39 AM,03/09/2016 10:09:54 AM,03/09/2016 10:14:23 AM,03/09/2016 10:14:29 AM,03/09/2016 10:29:39 AM,03/09/2016 10:35:23 AM,03/09/2016 10:59:13 AM,Code 2 Transport,03/09/2016 11:43:19 AM,1900 Block of LOMBARD ST,San Francisco,94123,B04,16,3461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8002723548355, -122.433605968659)",160691106-57 +130510111,KM06,13017207,Medical Incident,02/20/2013,02/20/2013,02/20/2013 09:59:41 AM,02/20/2013 10:00:56 AM,02/20/2013 10:02:16 AM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Other,04/25/2016 01:54:12 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",130510111-KM06 +160551368,85,16021959,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:07:32 AM,02/24/2016 11:09:50 AM,02/24/2016 11:10:45 AM,02/24/2016 11:11:25 AM,02/24/2016 11:18:03 AM,02/24/2016 11:36:28 AM,02/24/2016 11:43:47 AM,Code 2 Transport,02/24/2016 12:24:56 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7632442446227, -122.419425525666)",160551368-85 +113050018,E06,11101132,Medical Incident,11/01/2011,10/31/2011,11/01/2011 01:15:20 AM,11/01/2011 01:15:34 AM,11/01/2011 01:15:58 AM,11/01/2011 01:17:37 AM,11/01/2011 01:19:31 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 01:20:41 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,,1,ENGINE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",113050018-E06 +130740213,E39,13024695,Other,03/15/2013,03/15/2013,03/15/2013 01:56:44 PM,03/15/2013 01:57:28 PM,03/15/2013 01:57:36 PM,03/15/2013 01:59:18 PM,03/15/2013 02:01:29 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Fire,03/15/2013 02:04:47 PM,TARAVAL ST/LENOX WY,SF,94127,B08,39,8617,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7436586273809, -122.464736797618)",130740213-E39 +131630321,75,13055494,Medical Incident,06/12/2013,06/12/2013,06/12/2013 06:12:40 PM,06/12/2013 06:13:48 PM,06/12/2013 06:14:40 PM,06/12/2013 06:14:53 PM,06/12/2013 06:25:24 PM,06/12/2013 06:43:47 PM,06/12/2013 06:56:40 PM,Code 3 Transport,06/12/2013 07:51:48 PM,300 Block of MOLIMO DR,SF,94127,B09,39,8664,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7372019706313, -122.451879408593)",131630321-75 +102480076,E36,10078275,Structure Fire,09/05/2010,09/04/2010,09/05/2010 06:47:05 AM,09/05/2010 06:48:10 AM,09/05/2010 06:48:26 AM,09/05/2010 06:50:08 AM,09/05/2010 06:51:44 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 06:55:51 AM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,ENGINE,4,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",102480076-E36 +110280031,E43,11009105,Medical Incident,01/28/2011,01/27/2011,01/28/2011 04:03:57 AM,01/28/2011 04:04:46 AM,01/28/2011 04:05:09 AM,01/28/2011 04:06:38 AM,01/28/2011 04:10:16 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 04:19:09 AM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",110280031-E43 +121790201,E32,12059620,Medical Incident,06/27/2012,06/27/2012,06/27/2012 01:12:58 PM,06/27/2012 01:14:02 PM,06/27/2012 01:14:37 PM,06/27/2012 01:15:44 PM,06/27/2012 01:20:56 PM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/27/2012 01:42:00 PM,900 Block of PERALTA AVE,SF,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7372532773995, -122.409169345865)",121790201-E32 +120180061,76,12005930,Medical Incident,01/18/2012,01/17/2012,01/18/2012 07:34:28 AM,01/18/2012 07:35:45 AM,01/18/2012 07:36:33 AM,01/18/2012 07:37:11 AM,01/18/2012 07:43:42 AM,01/18/2012 08:05:28 AM,01/18/2012 08:21:23 AM,Code 2 Transport,01/18/2012 08:54:52 AM,2700 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7882270245748, -122.439617640821)",120180061-76 +110740014,E38,11024218,Medical Incident,03/15/2011,03/14/2011,03/15/2011 01:00:28 AM,03/15/2011 01:01:28 AM,03/15/2011 01:01:45 AM,03/15/2011 01:03:03 AM,03/15/2011 01:04:58 AM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/15/2011 01:13:30 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",110740014-E38 +160553652,50,16022139,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:07:46 PM,02/24/2016 08:08:29 PM,02/24/2016 08:09:01 PM,02/24/2016 08:09:11 PM,02/24/2016 08:14:24 PM,02/24/2016 08:31:26 PM,02/24/2016 08:34:39 PM,Code 2 Transport,02/24/2016 09:26:32 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160553652-50 +140340035,B02,14011376,Structure Fire,02/03/2014,02/02/2014,02/03/2014 04:03:47 AM,02/03/2014 04:04:50 AM,02/03/2014 04:05:37 AM,02/03/2014 04:07:07 AM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 04:07:48 AM,900 Block of KEARNY ST,SF,94133,B01,13,1246,,3,3,false,Alarm,1,CHIEF,12,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",140340035-B02 +121300156,60,12043237,Medical Incident,05/09/2012,05/09/2012,05/09/2012 11:54:13 AM,05/09/2012 11:56:25 AM,05/09/2012 11:56:31 AM,05/09/2012 12:03:03 PM,05/09/2012 12:03:06 PM,05/09/2012 12:17:30 PM,05/09/2012 12:48:12 PM,Code 2 Transport,05/09/2012 01:03:25 PM,2600 Block of 40TH AVE,SF,94116,B08,18,7637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7373954262715, -122.497932145338)",121300156-60 +121670140,85,12055358,Medical Incident,06/15/2012,06/15/2012,06/15/2012 11:58:08 AM,06/15/2012 12:00:58 PM,06/15/2012 12:01:40 PM,06/15/2012 12:02:26 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/15/2012 12:07:43 PM,100 Block of HARRIET ST,SF,94103,B03,1,2253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7775031290282, -122.405324803022)",121670140-85 +130780402,T06,13026219,Structure Fire,03/19/2013,03/19/2013,03/19/2013 09:41:21 PM,03/19/2013 09:42:06 PM,03/19/2013 09:42:22 PM,03/19/2013 09:43:31 PM,03/19/2013 09:46:56 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 10:25:34 PM,700 Block of FULTON ST,SF,94102,B05,5,3521,3,3,3,false,Alarm,1,TRUCK,8,2,5,Western Addition,"(37.7781781708138, -122.428256337547)",130780402-T06 +110760017,95,11024859,Medical Incident,03/17/2011,03/16/2011,03/17/2011 01:12:53 AM,03/17/2011 01:13:24 AM,03/17/2011 01:14:50 AM,03/17/2011 01:14:58 AM,03/17/2011 01:17:22 AM,03/17/2011 01:41:45 AM,03/17/2011 02:08:53 AM,Other,03/17/2011 02:13:40 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",110760017-95 +90230233,B04,9006931,Alarms,01/23/2009,01/23/2009,01/23/2009 02:10:38 PM,01/23/2009 02:12:45 PM,01/23/2009 02:12:54 PM,01/23/2009 02:15:01 PM,04/25/2016 03:30:26 PM,04/25/2016 03:30:26 PM,04/25/2016 03:30:26 PM,Other,01/23/2009 02:21:05 PM,3100 Block of LAGUNA ST,SF,94123,B04,16,3352,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.8000153923728, -122.431093553081)",090230233-B04 +112970425,E03,11098717,Medical Incident,10/24/2011,10/24/2011,10/24/2011 11:45:48 PM,10/24/2011 11:46:28 PM,10/24/2011 11:46:43 PM,10/24/2011 11:48:34 PM,10/24/2011 11:49:41 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/24/2011 11:55:27 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",112970425-E03 +112020158,T05,11066617,Alarms,07/21/2011,07/21/2011,07/21/2011 10:52:53 AM,07/21/2011 10:54:19 AM,07/21/2011 10:54:27 AM,07/21/2011 10:56:05 AM,07/21/2011 10:59:21 AM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/21/2011 11:00:05 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",112020158-T05 +110610136,B02,11019961,Traffic Collision,03/02/2011,03/02/2011,03/02/2011 10:09:35 AM,03/02/2011 10:10:39 AM,03/02/2011 10:11:30 AM,03/02/2011 10:14:22 AM,03/02/2011 10:18:06 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 10:44:29 AM,CHURCH ST/17TH ST,SF,94114,B02,6,5251,2,3,3,false,,1,CHIEF,3,2,8,Castro/Upper Market,"(37.7628898668395, -122.428508749574)",110610136-B02 +132640146,AM02,13089477,Medical Incident,09/21/2013,09/21/2013,09/21/2013 09:54:01 AM,09/21/2013 09:54:01 AM,09/21/2013 09:54:29 AM,09/21/2013 09:55:09 AM,09/21/2013 09:59:33 AM,09/21/2013 10:04:44 AM,09/21/2013 10:34:26 AM,Code 2 Transport,09/21/2013 11:08:56 AM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",132640146-AM02 +102810014,T19,10089177,Traffic Collision,10/08/2010,10/07/2010,10/08/2010 01:16:42 AM,10/08/2010 01:17:27 AM,10/08/2010 01:19:03 AM,10/08/2010 01:27:27 AM,10/08/2010 01:32:19 AM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,Other,10/08/2010 01:55:38 AM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,2,3,3,false,,1,TRUCK,3,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",102810014-T19 +112840027,E09,11093882,Structure Fire,10/11/2011,10/10/2011,10/11/2011 02:53:10 AM,10/11/2011 02:53:11 AM,10/11/2011 02:53:53 AM,10/11/2011 02:55:23 AM,10/11/2011 02:56:12 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/11/2011 02:57:54 AM,OAKDALE AV/BARNEVELD AV,SF,94124,B10,9,6377,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.742036221716, -122.403451320675)",112840027-E09 +131970052,E37,13066726,Medical Incident,07/16/2013,07/15/2013,07/16/2013 06:33:44 AM,07/16/2013 06:36:21 AM,07/16/2013 06:36:47 AM,07/16/2013 06:38:45 AM,07/16/2013 06:40:28 AM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/16/2013 07:00:09 AM,900 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",131970052-E37 +160411635,KM08,16016438,Medical Incident,02/10/2016,02/10/2016,02/10/2016 12:11:41 PM,02/10/2016 12:12:48 PM,02/10/2016 12:14:22 PM,02/10/2016 12:17:59 PM,02/10/2016 12:17:59 PM,02/10/2016 12:51:59 PM,02/10/2016 01:11:50 PM,Code 2 Transport,02/10/2016 01:41:38 PM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",160411635-KM08 +103390062,RS1,10108425,Structure Fire,12/05/2010,12/04/2010,12/05/2010 03:58:07 AM,12/05/2010 03:59:03 AM,12/05/2010 03:59:20 AM,12/05/2010 04:00:52 AM,12/05/2010 04:07:42 AM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Other,12/05/2010 04:47:10 AM,2000 Block of GOLDEN GATE AVE,SF,94115,B05,21,4345,3,3,3,false,,1,RESCUE SQUAD,9,5,5,Lone Mountain/USF,"(37.7780421419704, -122.444341928002)",103390062-RS1 +133020248,E20,13102672,Gas Leak (Natural and LP Gases),10/29/2013,10/29/2013,10/29/2013 03:06:40 PM,10/29/2013 03:08:32 PM,10/29/2013 03:08:49 PM,10/29/2013 03:09:53 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,04/25/2016 01:50:01 PM,0 Block of KNOLLVIEW WAY,SF,94131,B08,20,5361,3,3,3,true,Alarm,1,ENGINE,2,8,7,Twin Peaks,"(37.7500309334752, -122.451132948475)",133020248-E20 +132070192,RC3,13070084,Medical Incident,07/26/2013,07/26/2013,07/26/2013 01:43:00 PM,07/26/2013 01:43:58 PM,07/26/2013 01:45:25 PM,04/25/2016 01:51:37 PM,07/26/2013 01:49:15 PM,07/26/2013 02:00:57 PM,07/26/2013 02:05:51 PM,Other,07/26/2013 02:38:19 PM,1100 Block of PALOU AVE,SF,94124,B10,17,6647,A,A,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,10,10,Bayview Hunters Point,"(37.7291630976058, -122.382538001818)",132070192-RC3 +131640153,72,13055696,Medical Incident,06/13/2013,06/13/2013,06/13/2013 11:04:18 AM,06/13/2013 11:05:00 AM,06/13/2013 11:05:11 AM,06/13/2013 11:05:37 AM,06/13/2013 11:24:45 AM,06/13/2013 11:38:26 AM,06/13/2013 11:48:23 AM,Code 2 Transport,06/13/2013 12:34:05 PM,700 Block of HOWARD ST,SF,94103,B03,1,2214,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7841058563108, -122.401539484586)",131640153-72 +160113184,60,16004545,Medical Incident,01/11/2016,01/11/2016,01/11/2016 08:16:48 PM,01/11/2016 08:18:36 PM,01/11/2016 08:19:09 PM,01/11/2016 08:19:18 PM,01/11/2016 08:22:58 PM,01/11/2016 08:42:36 PM,01/11/2016 08:47:03 PM,Code 2 Transport,01/11/2016 09:14:30 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160113184-60 +110140102,E38,11004586,Medical Incident,01/14/2011,01/14/2011,01/14/2011 10:14:11 AM,01/14/2011 10:15:07 AM,01/14/2011 10:15:25 AM,01/14/2011 10:15:43 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 10:18:12 AM,2100 Block of SUTTER ST,SF,94115,B04,38,3646,3,3,3,false,,1,ENGINE,2,4,5,Japantown,"(37.7857177627023, -122.435726535083)",110140102-E38 +112890200,55,11095889,Medical Incident,10/16/2011,10/16/2011,10/16/2011 01:51:50 PM,10/16/2011 01:52:07 PM,10/16/2011 01:53:09 PM,10/16/2011 01:55:27 PM,10/16/2011 02:03:14 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Patient Declined Transport,10/16/2011 02:29:41 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",112890200-55 +121050194,KM11,12034771,Medical Incident,04/14/2012,04/14/2012,04/14/2012 12:56:23 PM,04/14/2012 12:56:41 PM,04/14/2012 12:56:54 PM,04/14/2012 12:57:24 PM,04/14/2012 01:24:27 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Against Medical Advice,04/14/2012 01:49:53 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",121050194-KM11 +120380025,B01,12012554,Alarms,02/07/2012,02/06/2012,02/07/2012 01:43:38 AM,02/07/2012 01:45:17 AM,02/07/2012 01:45:26 AM,02/07/2012 01:47:07 AM,02/07/2012 01:48:48 AM,04/25/2016 02:00:15 PM,04/25/2016 02:00:15 PM,Fire,02/07/2012 01:54:04 AM,400 Block of PACIFIC AVE,SF,94133,B01,13,1212,3,3,3,false,Alarm,1,CHIEF,1,1,3,North Beach,"(37.7974015545937, -122.403291978554)",120380025-B01 +102420060,B01,10076229,Alarms,08/30/2010,08/30/2010,08/30/2010 07:59:21 AM,08/30/2010 08:00:16 AM,08/30/2010 08:00:27 AM,08/30/2010 08:01:27 AM,08/30/2010 08:04:47 AM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Fire,08/30/2010 08:09:41 AM,0 Block of KEARNY ST,SF,94104,B01,1,1241,3,3,3,false,,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7886683138088, -122.403551710381)",102420060-B01 +160153088,76,16006102,Medical Incident,01/15/2016,01/15/2016,01/15/2016 06:15:54 PM,01/15/2016 06:17:01 PM,01/15/2016 06:17:43 PM,01/15/2016 06:17:52 PM,01/15/2016 06:21:37 PM,01/15/2016 06:43:36 PM,01/15/2016 06:58:02 PM,Code 2 Transport,01/15/2016 07:35:25 PM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7975061057448, -122.409143124942)",160153088-76 +122160177,78,12071669,Medical Incident,08/03/2012,08/03/2012,08/03/2012 12:25:14 PM,08/03/2012 12:26:54 PM,08/03/2012 12:27:33 PM,08/03/2012 12:27:58 PM,08/03/2012 12:34:40 PM,08/03/2012 12:52:41 PM,08/03/2012 01:28:45 PM,Code 2 Transport,08/03/2012 01:51:28 PM,200 Block of SADOWA ST,SF,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7123395683606, -122.460798752041)",122160177-78 +102500158,T11,10078977,Structure Fire,09/07/2010,09/07/2010,09/07/2010 01:00:37 PM,09/07/2010 01:00:58 PM,09/07/2010 01:01:11 PM,09/07/2010 01:04:12 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 01:13:17 PM,3100 Block of 22ND ST,SF,94110,B06,7,5472,3,3,3,false,,1,TRUCK,8,6,9,Mission,"(37.755524488206, -122.418208517373)",102500158-T11 +160872707,71,16034661,Medical Incident,03/27/2016,03/27/2016,03/27/2016 05:36:00 PM,03/27/2016 05:36:00 PM,03/27/2016 05:45:10 PM,03/27/2016 05:45:16 PM,03/27/2016 05:59:25 PM,03/27/2016 06:07:14 PM,03/27/2016 06:35:05 PM,Code 2 Transport,03/27/2016 07:08:46 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160872707-71 +160620326,82,16024558,Medical Incident,03/02/2016,03/01/2016,03/02/2016 04:28:57 AM,03/02/2016 04:28:57 AM,03/02/2016 04:30:23 AM,03/02/2016 04:30:23 AM,03/02/2016 04:33:22 AM,03/02/2016 04:45:05 AM,03/02/2016 05:02:17 AM,Code 2 Transport,03/02/2016 05:45:31 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160620326-82 +103040323,E02,10097242,Structure Fire,10/31/2010,10/31/2010,10/31/2010 06:15:16 PM,10/31/2010 06:15:49 PM,10/31/2010 06:16:54 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 06:42:15 PM,1900 Block of POWELL ST,SF,94133,B01,28,1346,3,3,3,true,,1,ENGINE,10,1,3,North Beach,"(37.8025758890573, -122.411227184973)",103040323-E02 +121400157,67,12046475,Medical Incident,05/19/2012,05/19/2012,05/19/2012 12:01:04 PM,05/19/2012 12:01:27 PM,05/19/2012 12:01:51 PM,05/19/2012 12:02:42 PM,05/19/2012 12:05:50 PM,05/19/2012 12:19:34 PM,05/19/2012 12:22:37 PM,Code 2 Transport,05/19/2012 01:02:55 PM,900 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",121400157-67 +120720150,E11,12023885,Medical Incident,03/12/2012,03/12/2012,03/12/2012 11:19:02 AM,03/12/2012 11:21:28 AM,03/12/2012 11:22:38 AM,03/12/2012 11:23:41 AM,03/12/2012 11:25:19 AM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/12/2012 11:33:21 AM,3300 Block of 26TH ST,SF,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7490361654123, -122.417303028119)",120720150-E11 +113040304,KM07,11101015,Traffic Collision,10/31/2011,10/31/2011,10/31/2011 05:40:03 PM,10/31/2011 05:40:03 PM,10/31/2011 05:40:27 PM,10/31/2011 05:41:01 PM,10/31/2011 05:47:58 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Against Medical Advice,10/31/2011 06:12:51 PM,2300 Block of 44TH AVE,SF,94116,B08,18,7644,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7428027049025, -122.502473625162)",113040304-KM07 +110300230,84,11009889,Medical Incident,01/30/2011,01/30/2011,01/30/2011 02:49:19 PM,01/30/2011 02:49:36 PM,01/30/2011 02:50:26 PM,01/30/2011 02:52:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/30/2011 02:57:11 PM,RUSSIA AV/MOSCOW ST,SF,94112,B09,43,6156,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7181475597429, -122.429978026376)",110300230-84 +140020033,E40,14000544,Structure Fire,01/02/2014,01/01/2014,01/02/2014 02:02:31 AM,01/02/2014 02:03:07 AM,01/02/2014 02:03:25 AM,01/02/2014 02:06:40 AM,01/02/2014 02:07:59 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/02/2014 02:16:46 AM,19TH AV/QUINTARA ST,SF,94116,B08,40,7417,,3,3,false,Fire,1,ENGINE,2,8,4,West of Twin Peaks,"(37.748647508509, -122.476033097726)",140020033-E40 +160462247,AM08,16018560,Medical Incident,02/15/2016,02/15/2016,02/15/2016 03:24:34 PM,02/15/2016 03:26:27 PM,02/15/2016 03:26:50 PM,02/15/2016 03:27:19 PM,02/15/2016 03:37:39 PM,02/15/2016 04:01:42 PM,02/15/2016 04:18:56 PM,Code 2 Transport,02/15/2016 05:09:02 PM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160462247-AM08 +121950129,E17,12064859,Medical Incident,07/13/2012,07/13/2012,07/13/2012 10:56:45 AM,07/13/2012 10:56:45 AM,07/13/2012 10:56:45 AM,07/13/2012 10:58:08 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/13/2012 10:59:32 AM,NEWCOMB AV/3RD ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",121950129-E17 +113460065,D2,11114700,Structure Fire,12/12/2011,12/11/2011,12/12/2011 06:07:16 AM,12/12/2011 06:07:53 AM,12/12/2011 06:08:16 AM,12/12/2011 06:10:27 AM,12/12/2011 06:15:20 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 06:26:45 AM,2600 Block of BAKER ST,SF,94123,B04,16,4312,3,3,3,false,,1,CHIEF,6,4,2,Marina,"(37.7953709247119, -122.445248651792)",113460065-D2 +130400358,79,13013824,Medical Incident,02/09/2013,02/09/2013,02/09/2013 08:57:07 PM,02/09/2013 08:59:30 PM,02/09/2013 09:15:58 PM,04/25/2016 01:54:22 PM,02/09/2013 09:20:34 PM,02/09/2013 09:31:46 PM,02/09/2013 09:54:32 PM,Code 2 Transport,02/09/2013 10:25:18 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",130400358-79 +160123786,AM24,16004983,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:45:54 PM,01/12/2016 10:47:44 PM,01/12/2016 11:25:47 PM,01/12/2016 11:26:21 PM,01/12/2016 11:29:46 PM,01/12/2016 11:47:07 PM,01/12/2016 11:52:15 PM,Code 3 Transport,01/13/2016 12:36:47 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160123786-AM24 +160661645,82,16026396,Medical Incident,03/06/2016,03/06/2016,03/06/2016 01:36:39 PM,03/06/2016 01:39:10 PM,03/06/2016 01:40:10 PM,03/06/2016 01:41:06 PM,03/06/2016 01:48:35 PM,03/06/2016 02:04:43 PM,03/06/2016 02:42:21 PM,Code 2 Transport,03/06/2016 03:10:04 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160661645-82 +102600188,E01,10082174,Medical Incident,09/17/2010,09/17/2010,09/17/2010 01:26:50 PM,09/17/2010 01:27:06 PM,09/17/2010 01:27:23 PM,09/17/2010 01:28:46 PM,09/17/2010 01:31:43 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 01:36:14 PM,6TH ST/HOWARD ST,SF,94103,B03,1,2252,E,E,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",102600188-E01 +160260499,75,16010202,Medical Incident,01/26/2016,01/25/2016,01/26/2016 05:45:12 AM,01/26/2016 05:47:01 AM,01/26/2016 05:47:20 AM,01/26/2016 05:53:19 AM,01/26/2016 05:59:05 AM,01/26/2016 06:32:57 AM,01/26/2016 06:45:57 AM,Code 2 Transport,01/26/2016 07:40:34 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",160260499-75 +111120019,E16,11036862,Water Rescue,04/22/2011,04/21/2011,04/22/2011 01:08:56 AM,04/22/2011 01:09:09 AM,04/22/2011 01:10:14 AM,04/22/2011 01:13:22 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 01:14:07 AM,2800 Block of HYDE ST,SF,94109,B03,28,1616,3,3,3,true,,1,ENGINE,7,1,2,Russian Hill,"(37.8071154533997, -122.420720018434)",111120019-E16 +160084161,72,16003474,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:44:07 PM,01/08/2016 11:45:16 PM,01/08/2016 11:45:59 PM,01/08/2016 11:46:17 PM,01/09/2016 12:04:23 AM,01/09/2016 12:27:50 AM,01/09/2016 12:44:37 AM,Code 2 Transport,01/09/2016 01:59:37 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160084161-72 +140760116,72,14025658,Medical Incident,03/17/2014,03/17/2014,03/17/2014 09:49:08 AM,03/17/2014 09:49:29 AM,03/17/2014 09:50:11 AM,03/17/2014 09:50:45 AM,03/17/2014 09:54:36 AM,03/17/2014 10:05:30 AM,03/17/2014 10:19:36 AM,Code 2 Transport,03/17/2014 10:39:25 AM,3RD ST/INNES AV,SAN FRANCISCO,94124,B10,25,6467,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7395334481561, -122.38903096939)",140760116-72 +102690268,E40,10085377,Traffic Collision,09/26/2010,09/26/2010,09/26/2010 04:08:30 PM,09/26/2010 04:08:30 PM,09/26/2010 04:08:59 PM,09/26/2010 04:10:03 PM,09/26/2010 04:12:32 PM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,09/26/2010 04:23:29 PM,19TH AV/VICENTE ST,SF,94116,B08,40,7415,3,3,3,false,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.739325432683, -122.475409073617)",102690268-E40 +111960164,B06,11064682,Alarms,07/15/2011,07/15/2011,07/15/2011 12:58:11 PM,07/15/2011 12:59:33 PM,07/15/2011 01:00:40 PM,07/15/2011 01:01:49 PM,07/15/2011 01:04:23 PM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 01:12:07 PM,500 Block of HILL ST,SF,94114,B06,24,5466,3,3,3,false,,1,CHIEF,2,6,8,Noe Valley,"(37.7554105525414, -122.433367007382)",111960164-B06 +160640145,57,16025326,Medical Incident,03/04/2016,03/03/2016,03/04/2016 01:21:53 AM,03/04/2016 01:22:55 AM,03/04/2016 01:23:05 AM,03/04/2016 01:23:26 AM,03/04/2016 01:29:22 AM,03/04/2016 01:33:22 AM,03/04/2016 01:39:58 AM,Code 2 Transport,03/04/2016 01:58:51 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160640145-57 +132770440,E22,13094296,Traffic Collision,10/04/2013,10/04/2013,10/04/2013 09:12:48 PM,10/04/2013 09:14:15 PM,10/04/2013 09:14:40 PM,10/04/2013 09:15:40 PM,10/04/2013 09:18:51 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 09:20:58 PM,20TH AV/LINCOLN WY,SF,94122,B08,22,7425,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,1,Golden Gate Park,"(37.7653991358311, -122.478324821151)",132770440-E22 +133120377,AM04,13106196,Medical Incident,11/08/2013,11/08/2013,11/08/2013 09:50:28 PM,11/08/2013 09:52:55 PM,11/08/2013 09:53:50 PM,11/08/2013 09:54:31 PM,11/08/2013 09:57:22 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 10:03:38 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",133120377-AM04 +121840132,T03,12061250,Medical Incident,07/02/2012,07/02/2012,07/02/2012 11:34:16 AM,07/02/2012 11:34:27 AM,07/02/2012 11:34:52 AM,07/02/2012 11:36:42 AM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 11:36:44 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",121840132-T03 +133620301,RC2,13123105,Medical Incident,12/28/2013,12/28/2013,12/28/2013 07:49:26 PM,12/28/2013 07:50:53 PM,12/28/2013 07:52:20 PM,04/25/2016 01:49:01 PM,12/28/2013 07:53:41 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 08:10:24 PM,1100 Block of CABRILLO ST,SF,94118,B07,31,7143,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7751069099178, -122.470839441788)",133620301-RC2 +160150684,AM24,16005879,Medical Incident,01/15/2016,01/14/2016,01/15/2016 07:56:45 AM,01/15/2016 07:58:25 AM,01/15/2016 07:58:53 AM,01/15/2016 08:11:19 AM,01/15/2016 08:11:19 AM,01/15/2016 08:14:43 AM,01/15/2016 08:31:32 AM,Code 2 Transport,01/15/2016 08:50:22 AM,800 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5433,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7595697859376, -122.416880161863)",160150684-AM24 +160263738,60,16010487,Medical Incident,01/26/2016,01/26/2016,01/26/2016 10:08:57 PM,01/26/2016 10:08:57 PM,01/26/2016 10:09:14 PM,01/26/2016 10:09:24 PM,01/26/2016 10:15:16 PM,01/26/2016 10:33:22 PM,01/26/2016 10:42:38 PM,Code 2 Transport,01/26/2016 11:07:13 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7206322139604, -122.437984003995)",160263738-60 +132450228,72,13082712,Medical Incident,09/02/2013,09/02/2013,09/02/2013 03:07:26 PM,09/02/2013 03:08:05 PM,09/02/2013 03:09:18 PM,09/02/2013 03:09:47 PM,09/02/2013 03:21:40 PM,09/02/2013 03:32:59 PM,09/02/2013 03:55:43 PM,Code 2 Transport,09/02/2013 04:38:46 PM,2200 Block of 19TH AVE,SF,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",132450228-72 +160540484,53,16021473,Medical Incident,02/23/2016,02/22/2016,02/23/2016 07:00:57 AM,02/23/2016 07:04:05 AM,02/23/2016 07:04:23 AM,02/23/2016 07:04:45 AM,02/23/2016 07:15:44 AM,02/23/2016 07:43:33 AM,02/23/2016 07:54:32 AM,Code 3 Transport,02/23/2016 08:48:16 AM,1700 Block of PACIFIC AVE,San Francisco,94109,B04,38,3231,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7947665561905, -122.424060519207)",160540484-53 +133570255,E18,13121430,Alarms,12/23/2013,12/23/2013,12/23/2013 04:57:27 PM,12/23/2013 04:58:42 PM,12/23/2013 05:00:14 PM,12/23/2013 05:00:57 PM,12/23/2013 05:04:27 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 05:50:19 PM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,3,3,3,true,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",133570255-E18 +120170263,AM14,12005771,Medical Incident,01/17/2012,01/17/2012,01/17/2012 05:30:11 PM,01/17/2012 05:30:48 PM,01/17/2012 05:31:34 PM,01/17/2012 05:32:43 PM,01/17/2012 05:39:44 PM,01/17/2012 06:02:19 PM,01/17/2012 06:22:06 PM,Code 2 Transport,01/17/2012 06:54:09 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",120170263-AM14 +103300045,RS2,10105539,Structure Fire,11/26/2010,11/25/2010,11/26/2010 04:28:28 AM,11/26/2010 04:29:22 AM,11/26/2010 04:29:47 AM,11/26/2010 04:31:02 AM,11/26/2010 04:32:49 AM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 04:35:44 AM,22ND ST/POTRERO AV,SF,94110,B10,7,2553,3,3,3,false,,1,RESCUE SQUAD,4,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",103300045-RS2 +123140339,E38,12104626,Medical Incident,11/09/2012,11/09/2012,11/09/2012 07:37:22 PM,11/09/2012 07:39:00 PM,11/09/2012 07:39:37 PM,04/25/2016 01:55:52 PM,11/09/2012 07:42:24 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 08:18:05 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7883179320882, -122.43119056038)",123140339-E38 +110780155,E19,11025647,Administrative,03/19/2011,03/19/2011,03/19/2011 12:28:24 PM,03/19/2011 12:28:27 PM,03/19/2011 12:28:36 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 12:29:22 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",110780155-E19 +121610151,AM06,12053274,Medical Incident,06/09/2012,06/09/2012,06/09/2012 11:34:54 AM,06/09/2012 11:36:33 AM,06/09/2012 11:37:40 AM,06/09/2012 11:38:22 AM,06/09/2012 11:39:36 AM,06/09/2012 11:54:43 AM,06/09/2012 12:10:13 PM,Code 2 Transport,06/09/2012 12:56:06 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",121610151-AM06 +111800173,AM04,11059421,Medical Incident,06/29/2011,06/29/2011,06/29/2011 01:57:02 PM,06/29/2011 01:59:19 PM,06/29/2011 01:59:37 PM,06/29/2011 02:00:52 PM,06/29/2011 02:14:40 PM,06/29/2011 02:22:55 PM,06/29/2011 02:32:43 PM,Code 2 Transport,06/29/2011 03:15:41 PM,1200 Block of LA SALLE AVE,SF,94124,B10,17,668,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",111800173-AM04 +103230031,KM15,10103360,Traffic Collision,11/19/2010,11/18/2010,11/19/2010 03:21:05 AM,11/19/2010 03:22:28 AM,11/19/2010 03:22:54 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,04/25/2016 02:07:32 PM,2500 Block of FILBERT ST,SF,94123,B04,16,4116,3,3,3,false,,1,PRIVATE,4,4,2,Marina,"(37.7972331586419, -122.441433723722)",103230031-KM15 +132870063,T03,13097518,Alarms,10/14/2013,10/13/2013,10/14/2013 06:05:43 AM,10/14/2013 06:08:20 AM,10/14/2013 06:08:34 AM,10/14/2013 06:10:13 AM,10/14/2013 06:12:25 AM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 06:16:41 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,3,3,true,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",132870063-T03 +140690331,67,14023414,Traffic Collision,03/10/2014,03/10/2014,03/10/2014 08:07:30 PM,03/10/2014 08:09:33 PM,03/10/2014 08:09:52 PM,03/10/2014 08:10:18 PM,03/10/2014 08:14:37 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Patient Declined Transport,03/10/2014 08:17:33 PM,9TH ST/HARRISON ST,SAN FRANCISCO,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7725264425971, -122.410076850083)",140690331-67 +160482264,KM05,16019383,Medical Incident,02/17/2016,02/17/2016,02/17/2016 02:25:26 PM,02/17/2016 02:27:53 PM,02/17/2016 02:28:39 PM,02/17/2016 02:29:03 PM,02/17/2016 02:42:20 PM,02/17/2016 03:00:28 PM,02/17/2016 03:05:45 PM,Code 2 Transport,02/17/2016 03:49:42 PM,1300 Block of LARKIN ST,San Francisco,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",160482264-KM05 +110420182,KM12,11013905,Medical Incident,02/11/2011,02/11/2011,02/11/2011 11:57:00 AM,02/11/2011 11:58:29 AM,02/11/2011 11:58:56 AM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 12:02:16 PM,OAK ST/FRANKLIN ST,SF,94102,B02,36,3266,3,3,3,false,,1,PRIVATE,2,2,5,Hayes Valley,"(37.775232334473, -122.420959921668)",110420182-KM12 +122100198,E19,12069778,Traffic Collision,07/28/2012,07/28/2012,07/28/2012 02:14:17 PM,07/28/2012 02:15:00 PM,07/28/2012 02:15:30 PM,07/28/2012 02:16:46 PM,07/28/2012 02:19:17 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 02:47:53 PM,OCEAN AV/JUNIPERO SERRA BL,SF,94127,B08,19,8452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7312055048522, -122.472160323543)",122100198-E19 +120750144,T08,12024876,Alarms,03/15/2012,03/15/2012,03/15/2012 11:11:54 AM,03/15/2012 11:13:53 AM,03/15/2012 11:14:03 AM,03/15/2012 11:16:25 AM,03/15/2012 11:17:56 AM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 11:32:54 AM,100 Block of BERRY ST,SF,94107,B03,8,2171,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7767092171499, -122.392287121307)",120750144-T08 +110410322,T07,11013679,Structure Fire,02/10/2011,02/10/2011,02/10/2011 06:15:03 PM,02/10/2011 06:15:03 PM,02/10/2011 06:15:27 PM,02/10/2011 06:17:30 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 06:18:04 PM,22ND ST/FOLSOM ST,SF,94110,B06,7,5473,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7556994645677, -122.414387602502)",110410322-T07 +103320175,E36,10106280,Medical Incident,11/28/2010,11/28/2010,11/28/2010 01:50:47 PM,11/28/2010 01:52:18 PM,11/28/2010 01:52:36 PM,11/28/2010 01:54:00 PM,11/28/2010 01:54:43 PM,04/25/2016 02:07:23 PM,04/25/2016 02:07:23 PM,Other,11/28/2010 01:57:56 PM,FRANKLIN ST/FELL ST,SF,94102,B02,36,3213,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7761587640112, -122.421148424067)",103320175-E36 +160841117,57,16033310,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:38:18 AM,03/24/2016 09:38:18 AM,03/24/2016 09:38:35 AM,03/24/2016 09:39:19 AM,03/24/2016 09:49:49 AM,03/24/2016 10:09:01 AM,03/24/2016 10:37:30 AM,Code 2 Transport,03/24/2016 11:12:17 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160841117-57 +160632441,57,16025139,Medical Incident,03/03/2016,03/03/2016,03/03/2016 03:57:02 PM,03/03/2016 03:58:20 PM,03/03/2016 03:58:34 PM,03/03/2016 03:59:01 PM,03/03/2016 04:22:43 PM,03/03/2016 04:22:46 PM,03/03/2016 04:38:18 PM,Code 2 Transport,03/03/2016 05:05:38 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160632441-57 +120180167,E06,12006022,Structure Fire,01/18/2012,01/18/2012,01/18/2012 12:56:54 PM,01/18/2012 12:58:06 PM,01/18/2012 12:59:02 PM,01/18/2012 12:59:58 PM,01/18/2012 01:01:40 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Other,01/18/2012 01:12:51 PM,500 Block of VALENCIA ST,SF,94103,B02,7,5247,3,3,3,true,Fire,1,ENGINE,3,2,9,Mission,"(37.7641127383912, -122.421739995141)",120180167-E06 +130710340,T03,13023827,Medical Incident,03/12/2013,03/12/2013,03/12/2013 08:33:25 PM,03/12/2013 08:33:48 PM,03/12/2013 08:34:14 PM,03/12/2013 08:35:15 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 08:35:33 PM,900 Block of LARKIN ST,SF,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,6,Tenderloin,"(37.7863419196668, -122.418065082006)",130710340-T03 +110880362,AM18,11029208,Medical Incident,03/29/2011,03/29/2011,03/29/2011 09:06:03 PM,03/29/2011 09:07:20 PM,03/29/2011 09:07:56 PM,03/29/2011 09:08:10 PM,03/29/2011 09:21:43 PM,03/29/2011 09:27:58 PM,03/29/2011 09:39:17 PM,Code 3 Transport,03/29/2011 10:47:31 PM,HOWARD ST/3RD ST,SF,94105,B03,1,2177,3,3,3,false,,1,PRIVATE,3,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",110880362-AM18 +121040019,KM07,12034325,Medical Incident,04/13/2012,04/12/2012,04/13/2012 02:38:08 AM,04/13/2012 02:39:52 AM,04/13/2012 02:41:50 AM,04/13/2012 02:42:32 AM,04/13/2012 02:49:25 AM,04/13/2012 02:53:16 AM,04/13/2012 03:14:37 AM,Other,04/13/2012 03:27:59 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",121040019-KM07 +130170157,E05,13005751,Medical Incident,01/17/2013,01/17/2013,01/17/2013 11:37:55 AM,01/17/2013 11:40:08 AM,01/17/2013 11:40:27 AM,01/17/2013 11:41:16 AM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 11:42:54 AM,1600 Block of SCOTT ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Japantown,"(37.7849864733147, -122.438181369407)",130170157-E05 +132780413,B06,13094705,Structure Fire,10/05/2013,10/05/2013,10/05/2013 10:53:53 PM,10/05/2013 10:54:48 PM,10/05/2013 10:55:17 PM,04/25/2016 01:50:24 PM,10/05/2013 11:00:00 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 11:02:34 PM,3000 Block of MARKET ST,SF,94114,B05,24,5413,3,3,3,false,Alarm,1,CHIEF,3,5,8,Castro/Upper Market,"(37.7609714706558, -122.442343287264)",132780413-B06 +122910106,KM02,12096284,Medical Incident,10/17/2012,10/17/2012,10/17/2012 09:31:18 AM,10/17/2012 09:32:23 AM,10/17/2012 09:32:39 AM,04/25/2016 01:56:15 PM,10/17/2012 09:36:24 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 09:37:41 AM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",122910106-KM02 +102770152,E01,10088048,Medical Incident,10/04/2010,10/04/2010,10/04/2010 12:55:51 PM,10/04/2010 12:57:54 PM,10/04/2010 12:58:07 PM,04/25/2016 02:08:16 PM,10/04/2010 01:01:28 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/04/2010 01:04:32 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7869524495987, -122.398572324987)",102770152-E01 +131130160,T06,13038072,Medical Incident,04/23/2013,04/23/2013,04/23/2013 12:09:16 PM,04/23/2013 12:11:23 PM,04/23/2013 12:13:40 PM,04/23/2013 12:14:03 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 12:19:32 PM,300 Block of ROOSEVELT WAY,SF,94114,B05,6,5175,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,5,8,Castro/Upper Market,"(37.7649962448676, -122.442980543264)",131130160-T06 +160850626,AM24,16033662,Medical Incident,03/25/2016,03/24/2016,03/25/2016 07:18:27 AM,03/25/2016 07:18:27 AM,03/25/2016 07:22:52 AM,03/25/2016 07:23:34 AM,03/25/2016 07:32:04 AM,03/25/2016 07:44:12 AM,03/25/2016 07:58:16 AM,Code 2 Transport,03/25/2016 08:23:10 AM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160850626-AM24 +133640049,84,13123489,Medical Incident,12/30/2013,12/29/2013,12/30/2013 04:11:29 AM,12/30/2013 04:12:47 AM,12/30/2013 04:20:09 AM,12/30/2013 04:20:22 AM,12/30/2013 04:28:03 AM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/30/2013 04:40:32 AM,600 Block of JACKSON ST,SF,94133,B01,2,1312,2,2,2,false,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7961541141813, -122.406054327479)",133640049-84 +130700101,54,13023268,Medical Incident,03/11/2013,03/11/2013,03/11/2013 09:28:19 AM,03/11/2013 09:29:04 AM,03/11/2013 09:29:24 AM,03/11/2013 09:31:43 AM,03/11/2013 09:35:12 AM,03/11/2013 09:55:47 AM,03/11/2013 10:11:03 AM,Code 2 Transport,03/11/2013 11:04:56 AM,400 Block of MCALLISTER ST,SF,94102,B02,3,3112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",130700101-54 +110640329,E07,11021195,Medical Incident,03/05/2011,03/05/2011,03/05/2011 06:09:23 PM,03/05/2011 06:09:53 PM,03/05/2011 06:11:04 PM,03/05/2011 06:11:45 PM,03/05/2011 06:14:36 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 06:25:06 PM,TREAT AV/25TH ST,SF,94110,B06,7,5533,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.750968088623, -122.412838555624)",110640329-E07 +140120332,E22,14004297,Medical Incident,01/12/2014,01/12/2014,01/12/2014 11:10:03 PM,01/12/2014 11:11:40 PM,01/12/2014 11:12:04 PM,01/12/2014 11:13:52 PM,01/12/2014 11:16:23 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 11:26:57 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",140120332-E22 +132760187,RC3,13093738,Medical Incident,10/03/2013,10/03/2013,10/03/2013 01:49:56 PM,10/03/2013 01:50:35 PM,10/03/2013 01:51:58 PM,10/03/2013 01:54:51 PM,10/03/2013 02:03:10 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Medical Examiner,10/03/2013 02:27:52 PM,400 Block of GONZALEZ DR,SF,94132,B08,19,8481,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,7,Lakeshore,"(37.7162110914239, -122.47657722537)",132760187-RC3 +102860240,74,10091170,Medical Incident,10/13/2010,10/13/2010,10/13/2010 01:52:19 PM,10/13/2010 01:52:22 PM,10/13/2010 01:54:11 PM,10/13/2010 01:58:24 PM,10/13/2010 02:10:09 PM,10/13/2010 02:38:52 PM,10/13/2010 02:59:39 PM,Code 2 Transport,10/13/2010 03:30:30 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",102860240-74 +112330359,RC3,11077101,Medical Incident,08/21/2011,08/21/2011,08/21/2011 10:00:00 PM,08/21/2011 10:01:04 PM,08/21/2011 10:01:25 PM,08/21/2011 10:04:52 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/21/2011 10:10:14 PM,200 Block of MAYNARD ST,SF,94112,B09,32,5683,3,E,3,true,,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7295080178827, -122.424915560486)",112330359-RC3 +130310389,85,13010749,Medical Incident,01/31/2013,01/31/2013,01/31/2013 10:09:40 PM,01/31/2013 10:11:13 PM,01/31/2013 10:11:24 PM,01/31/2013 10:12:30 PM,01/31/2013 10:16:59 PM,01/31/2013 10:32:23 PM,01/31/2013 10:39:59 PM,Code 2 Transport,01/31/2013 11:04:34 PM,HALLECK ST/FRONT ST,SF,94111,B01,13,1141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7938436808993, -122.398880419272)",130310389-85 +122970323,E43,12098611,Structure Fire,10/23/2012,10/23/2012,10/23/2012 11:00:09 PM,10/23/2012 11:01:09 PM,10/23/2012 11:02:06 PM,10/23/2012 11:03:17 PM,10/23/2012 11:04:53 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/24/2012 12:09:41 AM,700 Block of BRAZIL AVE,SF,94112,B09,43,6141,3,3,3,false,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7218773777782, -122.428805087546)",122970323-E43 +130900335,75,13030255,Medical Incident,03/31/2013,03/31/2013,03/31/2013 09:57:23 PM,03/31/2013 09:57:46 PM,03/31/2013 09:58:30 PM,03/31/2013 09:58:51 PM,03/31/2013 10:04:15 PM,03/31/2013 10:28:05 PM,03/31/2013 10:35:19 PM,Code 2 Transport,03/31/2013 11:04:20 PM,300 Block of BUCHANAN ST,SF,94102,B02,36,3422,E,3,3,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7727724965726, -122.42714120155)",130900335-75 +112660253,D3,11087937,Structure Fire,09/23/2011,09/23/2011,09/23/2011 03:42:17 PM,09/23/2011 03:42:52 PM,09/23/2011 03:43:16 PM,09/23/2011 03:44:15 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 03:47:52 PM,1400 Block of NOE ST,SF,94131,B06,11,5561,3,3,3,false,,1,CHIEF,6,6,8,Noe Valley,"(37.746224292878, -122.431437413776)",112660253-D3 +131210071,E14,13040560,Medical Incident,05/01/2013,04/30/2013,05/01/2013 05:32:22 AM,05/01/2013 05:33:13 AM,05/01/2013 05:33:36 AM,05/01/2013 05:35:12 AM,05/01/2013 05:38:20 AM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,05/01/2013 05:43:27 AM,600 Block of 33RD AVE,SF,94121,B07,14,7244,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7768451560253, -122.493036901379)",131210071-E14 +133430358,T15,13116466,Structure Fire,12/09/2013,12/09/2013,12/09/2013 08:31:44 PM,12/09/2013 08:33:54 PM,12/09/2013 08:47:46 PM,12/09/2013 08:48:57 PM,12/09/2013 08:56:27 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 02:00:13 AM,400 Block of TUNNEL AVE,SF,94134,B10,44,6271,3,3,3,false,Fire,2,TRUCK,16,10,10,Bayview Hunters Point,"(37.7091116111849, -122.401261222882)",133430358-T15 +103410291,E40,10109198,Medical Incident,12/07/2010,12/07/2010,12/07/2010 05:19:26 PM,12/07/2010 05:20:17 PM,12/07/2010 05:21:10 PM,12/07/2010 05:22:11 PM,12/07/2010 05:24:53 PM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,Other,12/07/2010 05:41:04 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,2,2,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",103410291-E40 +102970420,E44,10094960,Medical Incident,10/24/2010,10/24/2010,10/24/2010 08:28:55 PM,10/24/2010 08:31:10 PM,10/24/2010 08:31:24 PM,10/24/2010 08:32:20 PM,10/24/2010 08:35:28 PM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Other,10/24/2010 08:52:43 PM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.712002001307, -122.407607975966)",102970420-E44 +160572231,AM08,16022807,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:09:17 PM,02/26/2016 03:10:32 PM,02/26/2016 03:20:51 PM,02/26/2016 03:21:09 PM,02/26/2016 03:37:12 PM,02/26/2016 03:44:11 PM,02/26/2016 04:23:36 PM,Code 2 Transport,02/26/2016 04:52:37 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",160572231-AM08 +102750266,RC3,10087433,Medical Incident,10/02/2010,10/02/2010,10/02/2010 05:10:00 PM,10/02/2010 05:11:07 PM,10/02/2010 05:11:25 PM,10/02/2010 05:12:10 PM,10/02/2010 05:20:29 PM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 05:32:30 PM,700 Block of COLBY ST,SF,94134,B09,42,6321,3,3,3,true,,1,RESCUE CAPTAIN,2,9,9,Portola,"(37.7208522281711, -122.41069801237)",102750266-RC3 +160743695,66,16029490,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:11:20 PM,03/14/2016 09:12:41 PM,03/14/2016 09:17:12 PM,03/14/2016 09:17:23 PM,03/14/2016 09:50:32 PM,03/14/2016 09:51:05 PM,03/14/2016 09:51:43 PM,Code 2 Transport,03/14/2016 10:29:15 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,2,2,2,false,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.784128648418, -122.440738860354)",160743695-66 +160591017,85,16023452,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:47:03 AM,02/28/2016 09:48:20 AM,02/28/2016 09:48:32 AM,02/28/2016 09:48:51 AM,02/28/2016 09:55:51 AM,02/28/2016 10:20:51 AM,02/28/2016 10:33:42 AM,Code 2 Transport,02/28/2016 11:11:08 AM,0 Block of STANLEY ST,San Francisco,94132,B09,33,8375,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7125743442401, -122.463030494503)",160591017-85 +160910691,64,16035987,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:08:25 AM,03/31/2016 08:09:25 AM,03/31/2016 08:09:38 AM,03/31/2016 08:09:47 AM,03/31/2016 08:18:43 AM,03/31/2016 08:34:00 AM,03/31/2016 08:51:12 AM,Code 2 Transport,03/31/2016 09:24:04 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160910691-64 +123200260,E06,12106440,Medical Incident,11/15/2012,11/15/2012,11/15/2012 04:35:02 PM,11/15/2012 04:36:17 PM,11/15/2012 04:36:28 PM,11/15/2012 04:37:13 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 04:39:53 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Non Life-threatening,1,ENGINE,3,2,8,Mission,"(37.7621357066004, -122.421689426887)",123200260-E06 +130280285,AM04,13009685,Medical Incident,01/28/2013,01/28/2013,01/28/2013 04:28:16 PM,01/28/2013 04:29:37 PM,01/28/2013 04:30:13 PM,01/28/2013 04:30:35 PM,01/28/2013 04:40:19 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Patient Declined Transport,01/28/2013 05:19:59 PM,0 Block of DEVONSHIRE WAY,SF,94131,B08,20,5375,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7548014466049, -122.460926386356)",130280285-AM04 +103640006,KM15,10116615,Medical Incident,12/30/2010,12/29/2010,12/30/2010 12:44:13 AM,12/30/2010 12:44:43 AM,12/30/2010 12:45:15 AM,12/30/2010 12:48:23 AM,12/30/2010 12:50:30 AM,12/30/2010 01:06:07 AM,12/30/2010 01:11:20 AM,Code 2 Transport,12/30/2010 01:27:52 AM,300 Block of TURK ST,SF,94102,B02,3,1554,3,2,2,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",103640006-KM15 +120610374,54,12020218,Medical Incident,03/01/2012,03/01/2012,03/01/2012 11:13:17 PM,03/01/2012 11:14:06 PM,03/01/2012 11:14:44 PM,03/01/2012 11:14:51 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/01/2012 11:15:30 PM,300 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",120610374-54 +112350306,RC2,11077649,Medical Incident,08/23/2011,08/23/2011,08/23/2011 05:41:42 PM,08/23/2011 05:42:43 PM,08/23/2011 05:43:24 PM,04/25/2016 02:03:02 PM,08/23/2011 05:52:20 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 05:52:22 PM,3200 Block of BALBOA ST,SF,94121,B07,14,7244,3,1,2,true,,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7758315059397, -122.493570130284)",112350306-RC2 +160160323,64,16006272,Medical Incident,01/16/2016,01/15/2016,01/16/2016 02:31:13 AM,01/16/2016 02:31:13 AM,01/16/2016 02:35:20 AM,01/16/2016 02:35:28 AM,01/16/2016 02:52:49 AM,01/16/2016 03:41:51 AM,01/16/2016 03:41:51 AM,Code 2 Transport,01/16/2016 04:14:14 AM,600 Block of GREENWICH ST,San Francisco,94133,B01,28,1335,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8022928848666, -122.410091524049)",160160323-64 +120840346,81,12028043,Medical Incident,03/24/2012,03/24/2012,03/24/2012 09:00:07 PM,03/24/2012 09:01:20 PM,03/24/2012 09:01:40 PM,03/24/2012 09:01:50 PM,03/24/2012 09:10:42 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/24/2012 09:12:16 PM,100 Block of COLUMBUS AVE,SF,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7969454448277, -122.405446187756)",120840346-81 +123220046,99,12106919,Medical Incident,11/17/2012,11/16/2012,11/17/2012 02:16:19 AM,11/17/2012 02:17:02 AM,11/17/2012 02:17:14 AM,11/17/2012 02:17:40 AM,11/17/2012 02:23:36 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,No Merit,11/17/2012 02:49:19 AM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",123220046-99 +111940258,T13,11064114,Explosion,07/13/2011,07/13/2011,07/13/2011 05:10:28 PM,07/13/2011 05:11:50 PM,07/13/2011 05:13:48 PM,07/13/2011 05:14:58 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 06:00:50 PM,THE EMBARCADERO/WASHINGTON ST,SF,94111,B01,13,903,3,3,3,false,,1,TRUCK,4,1,3,Financial District/South Beach,"(37.7966828949467, -122.395405269908)",111940258-T13 +120250013,E36,12008258,Structure Fire,01/25/2012,01/24/2012,01/25/2012 12:50:25 AM,01/25/2012 12:50:25 AM,01/25/2012 12:50:34 AM,01/25/2012 12:52:14 AM,01/25/2012 12:53:39 AM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 12:53:41 AM,0 Block of HAIGHT ST,SF,94102,B02,36,3311,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7730976142378, -122.42211684621)",120250013-E36 +132920274,B03,13099448,Alarms,10/19/2013,10/19/2013,10/19/2013 05:24:28 PM,10/19/2013 05:25:34 PM,10/19/2013 05:26:06 PM,10/19/2013 05:26:26 PM,10/19/2013 05:28:42 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 05:34:18 PM,100 Block of 4TH ST,SF,94103,B03,1,2213,3,3,3,false,Alarm,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",132920274-B03 +131800290,T15,13061295,Structure Fire,06/29/2013,06/29/2013,06/29/2013 04:17:48 PM,06/29/2013 04:17:48 PM,06/29/2013 04:17:56 PM,06/29/2013 04:19:12 PM,06/29/2013 04:21:03 PM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/29/2013 04:30:53 PM,200 Block of ONEIDA AVE,SF,94112,B09,15,828,3,3,3,false,Alarm,1,TRUCK,2,9,11,Outer Mission,"(37.7218642111521, -122.442994070235)",131800290-T15 +160832567,KM01,16033019,Medical Incident,03/23/2016,03/23/2016,03/23/2016 03:36:57 PM,03/23/2016 03:41:14 PM,03/23/2016 03:42:32 PM,03/23/2016 03:42:52 PM,03/23/2016 04:00:36 PM,03/23/2016 04:09:16 PM,03/23/2016 04:35:27 PM,Code 2 Transport,03/23/2016 04:58:43 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160832567-KM01 +102730168,E26,10086668,Explosion,09/30/2010,09/30/2010,09/30/2010 12:01:45 PM,09/30/2010 12:04:11 PM,09/30/2010 12:04:54 PM,09/30/2010 12:05:58 PM,09/30/2010 12:08:05 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Other,09/30/2010 12:17:22 PM,5300 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",102730168-E26 +122140327,B02,12071141,Alarms,08/01/2012,08/01/2012,08/01/2012 07:40:44 PM,08/01/2012 07:43:23 PM,08/01/2012 07:43:42 PM,08/01/2012 07:44:46 PM,08/01/2012 07:46:03 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/01/2012 07:52:46 PM,400 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",122140327-B02 +160362656,KM08,16014332,Medical Incident,02/05/2016,02/05/2016,02/05/2016 03:53:55 PM,02/05/2016 03:53:55 PM,02/05/2016 04:03:13 PM,02/05/2016 04:03:43 PM,02/05/2016 04:16:34 PM,02/05/2016 04:33:41 PM,02/05/2016 05:12:04 PM,Code 2 Transport,02/05/2016 06:42:40 PM,SACRAMENTO ST/FRONT ST,San Francisco,94111,B99,13,1141,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",160362656-KM08 +132430085,E18,13081912,Medical Incident,08/31/2013,08/30/2013,08/31/2013 05:41:20 AM,08/31/2013 05:42:01 AM,08/31/2013 05:42:20 AM,08/31/2013 05:44:07 AM,08/31/2013 05:48:36 AM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/31/2013 06:00:09 AM,2300 Block of 26TH AVE,SF,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7436566730271, -122.483188286669)",132430085-E18 +140880056,82,14029534,Medical Incident,03/29/2014,03/28/2014,03/29/2014 03:24:39 AM,03/29/2014 03:25:06 AM,03/29/2014 03:25:46 AM,03/29/2014 03:26:04 AM,03/29/2014 03:30:26 AM,03/29/2014 03:40:38 AM,03/29/2014 03:46:49 AM,Code 3 Transport,03/29/2014 05:00:01 AM,700 Block of 9TH AVE,SAN FRANCISCO,94118,B07,31,7133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7742900963357, -122.466949914852)",140880056-82 +131840019,B02,13062553,Structure Fire,07/03/2013,07/02/2013,07/03/2013 01:51:12 AM,07/03/2013 01:51:12 AM,07/03/2013 01:51:29 AM,07/03/2013 01:53:24 AM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Fire,07/03/2013 01:56:50 AM,FRANKLIN ST/MCALLISTER ST,SF,94102,B02,36,3215,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7798901049166, -122.42189157233)",131840019-B02 +110220128,E44,11007223,Medical Incident,01/22/2011,01/22/2011,01/22/2011 11:12:25 AM,01/22/2011 11:13:41 AM,01/22/2011 11:13:53 AM,01/22/2011 11:14:52 AM,01/22/2011 11:17:40 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/22/2011 11:33:47 AM,0 Block of RAYMOND AVE,SF,94134,B10,44,6255,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.712247130223, -122.404227071159)",110220128-E44 +160762718,58,16030237,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:30:51 PM,03/16/2016 04:31:42 PM,03/16/2016 04:32:02 PM,03/16/2016 04:34:28 PM,03/16/2016 04:36:28 PM,03/16/2016 04:57:42 PM,03/16/2016 05:04:28 PM,Code 2 Transport,03/16/2016 05:43:47 PM,1200 Block of 15TH ST,San Francisco,94103,B02,29,5217,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7668153988578, -122.412689745025)",160762718-58 +112400260,E03,11079266,Medical Incident,08/28/2011,08/28/2011,08/28/2011 05:27:08 PM,08/28/2011 05:27:35 PM,08/28/2011 05:27:44 PM,08/28/2011 05:29:02 PM,08/28/2011 05:29:50 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 05:40:37 PM,1300 Block of POLK ST,SF,94109,B04,3,3122,3,2,2,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",112400260-E03 +122400215,59,12079466,Medical Incident,08/27/2012,08/27/2012,08/27/2012 02:14:35 PM,08/27/2012 02:16:16 PM,08/27/2012 02:34:28 PM,08/27/2012 02:35:09 PM,08/27/2012 02:46:26 PM,08/27/2012 03:01:45 PM,08/27/2012 03:11:40 PM,Code 2 Transport,08/27/2012 03:30:33 PM,500 Block of GATES ST,SF,94110,B06,32,5737,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7365134852854, -122.414087632815)",122400215-59 +132620328,E31,13088868,Alarms,09/19/2013,09/19/2013,09/19/2013 07:28:17 PM,09/19/2013 07:31:17 PM,09/19/2013 07:31:25 PM,09/19/2013 07:32:48 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 08:02:06 PM,700 Block of 6TH AVE,SF,94118,B07,31,7132,3,3,3,false,Alarm,1,ENGINE,3,7,1,Inner Richmond,"(37.7744933641566, -122.463881451148)",132620328-E31 +130390342,83,13013442,Medical Incident,02/08/2013,02/08/2013,02/08/2013 07:35:40 PM,02/08/2013 07:37:13 PM,02/08/2013 07:37:45 PM,02/08/2013 07:37:59 PM,02/08/2013 07:48:29 PM,02/08/2013 08:07:42 PM,02/08/2013 08:17:52 PM,Code 2 Transport,02/08/2013 08:37:04 PM,FILLMORE ST/CHESTNUT ST,SF,94123,B04,16,3554,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.800814143599, -122.436273910168)",130390342-83 +102460046,94,10077622,Medical Incident,09/03/2010,09/02/2010,09/03/2010 02:48:26 AM,09/03/2010 02:50:33 AM,09/03/2010 02:51:08 AM,09/03/2010 02:51:16 AM,09/03/2010 02:53:31 AM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,No Merit,09/03/2010 02:55:40 AM,MASONIC AV/TURK BL,SF,94118,B05,10,4461,3,3,3,true,,1,MEDIC,1,5,2,Lone Mountain/USF,"(37.7786223076413, -122.447039805009)",102460046-94 +110540149,T15,11017789,Administrative,02/23/2011,02/23/2011,02/23/2011 11:16:07 AM,02/23/2011 11:16:11 AM,02/23/2011 11:17:05 AM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,Other,02/23/2011 11:17:42 AM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,3,3,3,false,,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",110540149-T15 +160363804,63,16014443,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:14:17 PM,02/05/2016 09:14:17 PM,02/05/2016 09:22:05 PM,02/05/2016 09:22:05 PM,02/05/2016 09:38:07 PM,02/05/2016 09:41:22 PM,02/05/2016 10:11:43 PM,Code 2 Transport,02/05/2016 10:31:14 PM,0 Block of THE EMBARCADERO,San Francisco,94105,B99,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7930284747689, -122.39192878449)",160363804-63 +160772047,65,16030607,Medical Incident,03/17/2016,03/17/2016,03/17/2016 01:32:47 PM,03/17/2016 01:34:01 PM,03/17/2016 02:20:20 PM,03/17/2016 02:20:29 PM,03/17/2016 02:31:48 PM,03/17/2016 02:37:41 PM,03/17/2016 02:55:12 PM,Code 2 Transport,03/17/2016 03:29:39 PM,LINCOLN WY/MARTIN LUTHER KING DR,San Francisco,94122,B08,23,7722,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",160772047-65 +160473744,AM20,16019137,Medical Incident,02/16/2016,02/16/2016,02/16/2016 09:37:55 PM,02/16/2016 09:39:14 PM,02/16/2016 10:09:13 PM,02/16/2016 10:10:07 PM,02/16/2016 10:17:23 PM,02/16/2016 10:30:35 PM,02/16/2016 11:08:12 PM,Code 2 Transport,02/16/2016 11:08:24 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160473744-AM20 +160763668,89,16030338,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:22:36 PM,03/16/2016 08:22:36 PM,03/16/2016 08:23:01 PM,03/16/2016 08:23:24 PM,03/16/2016 08:26:55 PM,03/16/2016 08:44:18 PM,03/16/2016 08:51:56 PM,Code 2 Transport,03/16/2016 09:08:48 PM,0 Block of HOFF ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7641898782543, -122.420437704275)",160763668-89 +103070242,T08,10098284,Structure Fire,11/03/2010,11/03/2010,11/03/2010 12:35:55 PM,11/03/2010 12:35:55 PM,11/03/2010 12:36:53 PM,11/03/2010 12:37:18 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Other,11/03/2010 12:38:51 PM,4TH ST/BRYANT ST,SF,94107,B03,8,2217,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7795669099357, -122.398059940086)",103070242-T08 +160313041,53,16012299,Medical Incident,01/31/2016,01/31/2016,01/31/2016 06:41:06 PM,01/31/2016 06:42:19 PM,01/31/2016 06:45:58 PM,01/31/2016 06:46:10 PM,01/31/2016 06:56:35 PM,01/31/2016 07:15:56 PM,01/31/2016 07:26:02 PM,Code 2 Transport,01/31/2016 08:19:37 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160313041-53 +132190197,B03,13073958,Alarms,08/07/2013,08/07/2013,08/07/2013 01:14:07 PM,08/07/2013 01:15:31 PM,08/07/2013 01:15:42 PM,08/07/2013 01:17:06 PM,08/07/2013 01:19:58 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,Other,08/07/2013 01:28:34 PM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.784851966461, -122.389795266719)",132190197-B03 +133380084,B01,13114468,Alarms,12/04/2013,12/04/2013,12/04/2013 09:06:08 AM,12/04/2013 09:07:20 AM,12/04/2013 09:07:36 AM,12/04/2013 09:08:59 AM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 09:13:58 AM,100 Block of PINE ST,SF,94111,B01,13,1136,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.792387312641, -122.399186604536)",133380084-B01 +112900194,KM04,11096222,Traffic Collision,10/17/2011,10/17/2011,10/17/2011 01:31:24 PM,10/17/2011 01:31:27 PM,10/17/2011 01:32:02 PM,10/17/2011 01:32:38 PM,10/17/2011 01:48:30 PM,10/17/2011 01:57:08 PM,10/17/2011 02:06:50 PM,Code 2 Transport,10/17/2011 02:43:30 PM,16TH ST/VERMONT ST,SF,94103,B02,29,2421,3,3,3,false,,1,PRIVATE,2,2,10,Mission,"(37.7659581887586, -122.404623338223)",112900194-KM04 +110680392,65,11022477,Traffic Collision,03/09/2011,03/09/2011,03/09/2011 07:04:48 PM,03/09/2011 07:04:52 PM,03/09/2011 07:05:07 PM,03/09/2011 07:05:22 PM,03/09/2011 07:14:24 PM,03/09/2011 07:26:20 PM,03/09/2011 07:40:13 PM,Code 2 Transport,03/09/2011 08:05:40 PM,MANSELL ST/GIRARD ST,SF,94134,B10,44,6277,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7212774521739, -122.402056471876)",110680392-65 +140730280,85,14024723,Medical Incident,03/14/2014,03/14/2014,03/14/2014 04:42:55 PM,03/14/2014 04:43:17 PM,03/14/2014 04:43:53 PM,03/14/2014 04:44:52 PM,03/14/2014 04:53:51 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Patient Declined Transport,03/14/2014 05:35:39 PM,0 Block of MINERVA ST,SAN FRANCISCO,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7156899151892, -122.454796659779)",140730280-85 +160433477,AM18,16017469,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:55:49 PM,02/12/2016 08:55:49 PM,02/12/2016 08:56:13 PM,02/12/2016 08:56:54 PM,02/12/2016 09:10:23 PM,02/12/2016 09:18:57 PM,02/12/2016 09:36:03 PM,Code 2 Transport,02/12/2016 10:16:37 PM,13TH ST/HARRISON ST,San Francisco,94103,B05,36,5112,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7695020049208, -122.413385239835)",160433477-AM18 +111030317,E36,11034249,Medical Incident,04/13/2011,04/13/2011,04/13/2011 07:11:54 PM,04/13/2011 07:12:25 PM,04/13/2011 07:12:52 PM,04/13/2011 07:14:15 PM,04/13/2011 07:16:15 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/13/2011 07:27:59 PM,1800 Block of MARKET ST,SF,94102,B02,36,3416,3,2,2,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7718686531861, -122.423577776472)",111030317-E36 +111430114,E12,11047475,Medical Incident,05/23/2011,05/23/2011,05/23/2011 09:52:11 AM,05/23/2011 09:53:53 AM,05/23/2011 09:54:05 AM,05/23/2011 09:54:50 AM,05/23/2011 09:58:33 AM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/23/2011 10:05:05 AM,600 Block of CLAYTON ST,SF,94117,B05,12,4525,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7693399647388, -122.448415933543)",111430114-E12 +121820325,E01,12060728,Outside Fire,06/30/2012,06/30/2012,06/30/2012 07:48:14 PM,06/30/2012 07:49:02 PM,06/30/2012 07:49:57 PM,06/30/2012 07:51:06 PM,06/30/2012 07:52:58 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Fire,06/30/2012 07:55:22 PM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,true,Fire,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",121820325-E01 +112020410,93,11066829,Medical Incident,07/21/2011,07/21/2011,07/21/2011 09:30:20 PM,07/21/2011 09:31:41 PM,07/21/2011 09:32:10 PM,07/21/2011 09:32:23 PM,07/21/2011 09:34:06 PM,07/21/2011 09:51:14 PM,07/21/2011 09:55:04 PM,Code 3 Transport,07/21/2011 10:31:43 PM,0 Block of 7TH AVE,SF,94118,B07,31,7126,3,3,3,true,,1,MEDIC,1,7,2,Inner Richmond,"(37.7874460327418, -122.465750262786)",112020410-93 +122460378,87,12081524,Medical Incident,09/02/2012,09/02/2012,09/02/2012 09:49:44 PM,09/02/2012 09:49:59 PM,09/02/2012 09:50:16 PM,09/02/2012 09:50:21 PM,04/25/2016 01:56:57 PM,09/02/2012 10:04:34 PM,09/02/2012 10:14:44 PM,Code 2 Transport,09/02/2012 10:43:31 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",122460378-87 +120830072,T09,12027478,Structure Fire,03/23/2012,03/23/2012,03/23/2012 08:05:27 AM,03/23/2012 08:05:27 AM,03/23/2012 08:05:47 AM,03/23/2012 08:06:19 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 08:10:49 AM,2700 Block of BRYANT ST,SF,94110,B06,9,553,3,3,3,false,Alarm,1,TRUCK,3,6,9,Mission,"(37.750396573149, -122.408970541511)",120830072-T09 +103530100,T13,10113252,Alarms,12/19/2010,12/18/2010,12/19/2010 04:34:16 AM,12/19/2010 04:38:28 AM,12/19/2010 04:38:41 AM,12/19/2010 04:40:38 AM,12/19/2010 04:44:04 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/19/2010 04:49:03 AM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.793872317337, -122.405454714295)",103530100-T13 +121320223,AM12,12043946,Structure Fire,05/11/2012,05/11/2012,05/11/2012 02:08:20 PM,05/11/2012 02:09:07 PM,05/11/2012 02:09:19 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 02:14:50 PM,400 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,false,Fire,1,PRIVATE,12,3,6,Financial District/South Beach,"(37.7858304240068, -122.392540509434)",121320223-AM12 +110880153,KM04,11029023,Medical Incident,03/29/2011,03/29/2011,03/29/2011 11:20:29 AM,03/29/2011 11:20:50 AM,03/29/2011 11:21:15 AM,03/29/2011 11:21:44 AM,03/29/2011 11:25:18 AM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Patient Declined Transport,03/29/2011 11:28:59 AM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,,1,PRIVATE,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",110880153-KM04 +132990275,54,13101667,Medical Incident,10/26/2013,10/26/2013,10/26/2013 04:40:45 PM,10/26/2013 04:42:39 PM,10/26/2013 04:42:57 PM,10/26/2013 04:46:18 PM,10/26/2013 04:52:12 PM,10/26/2013 04:54:10 PM,10/26/2013 05:16:03 PM,Code 2 Transport,10/26/2013 05:29:58 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",132990275-54 +160762688,52,16030234,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:25:39 PM,03/16/2016 04:27:19 PM,03/16/2016 04:30:25 PM,03/16/2016 04:30:31 PM,03/16/2016 04:52:14 PM,03/16/2016 05:01:00 PM,03/16/2016 05:30:08 PM,Code 2 Transport,03/16/2016 06:04:06 PM,2500 Block of 3RD ST,San Francisco,94107,B10,25,2533,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7566800066504, -122.387999428154)",160762688-52 +160912166,71,16036115,Medical Incident,03/31/2016,03/31/2016,03/31/2016 03:03:22 PM,03/31/2016 03:03:22 PM,03/31/2016 03:04:14 PM,03/31/2016 03:05:42 PM,03/31/2016 03:11:25 PM,03/31/2016 03:23:01 PM,03/31/2016 03:43:07 PM,Code 2 Transport,03/31/2016 04:07:13 PM,1400 Block of OAKDALE AV,San Francisco,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7329556345708, -122.387590806567)",160912166-71 +160822108,KM09,16032596,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:13:38 PM,03/22/2016 02:16:02 PM,03/22/2016 02:16:13 PM,03/22/2016 02:16:49 PM,03/22/2016 02:25:46 PM,03/22/2016 02:45:08 PM,03/22/2016 03:15:41 PM,Code 2 Transport,03/22/2016 03:46:07 PM,1500 Block of VISITACION AV,San Francisco,94134,B09,44,6263,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7130646230493, -122.413927298654)",160822108-KM09 +102240318,E01,10070662,Medical Incident,08/12/2010,08/12/2010,08/12/2010 08:14:03 PM,08/12/2010 08:16:11 PM,08/12/2010 08:16:22 PM,08/12/2010 08:17:12 PM,08/12/2010 08:18:42 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/12/2010 08:29:03 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",102240318-E01 +103640233,D2,10116805,Smoke Investigation (Outside),12/30/2010,12/30/2010,12/30/2010 02:54:17 PM,12/30/2010 02:55:09 PM,12/30/2010 02:55:39 PM,12/30/2010 02:59:09 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/30/2010 03:01:36 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,false,,1,CHIEF,7,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",103640233-D2 +160233353,71,16009314,Medical Incident,01/23/2016,01/23/2016,01/23/2016 08:37:10 PM,01/23/2016 08:37:10 PM,01/23/2016 08:37:42 PM,01/23/2016 08:37:47 PM,01/23/2016 08:56:05 PM,01/23/2016 09:17:32 PM,01/23/2016 09:33:23 PM,Code 2 Transport,01/23/2016 09:45:05 PM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",160233353-71 +110940245,E13,11031257,Medical Incident,04/04/2011,04/04/2011,04/04/2011 03:46:20 PM,04/04/2011 03:47:05 PM,04/04/2011 03:47:51 PM,04/04/2011 03:48:52 PM,04/04/2011 03:50:27 PM,04/04/2011 04:06:08 PM,04/25/2016 02:05:16 PM,Other,04/04/2011 04:22:04 PM,800 Block of MONTGOMERY ST,SF,94133,B01,13,1232,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7969934198176, -122.40354422656)",110940245-E13 +131290255,T09,13043659,Other,05/09/2013,05/09/2013,05/09/2013 04:31:25 PM,05/09/2013 04:32:04 PM,05/09/2013 04:32:26 PM,05/09/2013 04:34:15 PM,05/09/2013 04:37:31 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,Other,05/09/2013 04:49:30 PM,700 Block of PENNSYLVANIA AVE,SF,94107,B10,37,2536,3,3,3,false,Alarm,1,TRUCK,3,10,10,Potrero Hill,"(37.7563691529514, -122.393072356473)",131290255-T09 +110590343,E36,11019517,Structure Fire,02/28/2011,02/28/2011,02/28/2011 08:47:46 PM,02/28/2011 08:47:46 PM,02/28/2011 08:48:04 PM,02/28/2011 08:49:07 PM,02/28/2011 08:50:53 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,02/28/2011 08:51:33 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",110590343-E36 +160473550,55,16019116,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:40:27 PM,02/16/2016 08:42:00 PM,02/16/2016 08:42:46 PM,02/16/2016 08:43:38 PM,02/16/2016 08:56:40 PM,02/16/2016 09:01:49 PM,02/16/2016 09:10:38 PM,Code 2 Transport,02/16/2016 09:51:23 PM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7792067028319, -122.402159463556)",160473550-55 +140890024,85,14029836,Medical Incident,03/30/2014,03/29/2014,03/30/2014 01:27:44 AM,03/30/2014 01:28:46 AM,03/30/2014 01:28:56 AM,03/30/2014 01:29:24 AM,03/30/2014 01:41:05 AM,03/30/2014 01:44:42 AM,04/25/2016 01:47:29 PM,Code 2 Transport,03/30/2014 02:17:28 AM,500 Block of JACKSON ST,SAN FRANCISCO,94133,B03,13,1232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7964140386351, -122.403965295719)",140890024-85 +160021144,52,16000698,Medical Incident,01/02/2016,01/02/2016,01/02/2016 10:52:18 AM,01/02/2016 10:53:05 AM,01/02/2016 10:53:26 AM,01/02/2016 10:53:39 AM,01/02/2016 10:57:32 AM,01/02/2016 11:18:56 AM,01/02/2016 11:35:52 AM,Code 2 Transport,01/02/2016 12:29:01 PM,400 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",160021144-52 +112000302,E09,11066048,Medical Incident,07/19/2011,07/19/2011,07/19/2011 07:05:19 PM,07/19/2011 07:06:04 PM,07/19/2011 07:07:08 PM,07/19/2011 07:09:15 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/19/2011 07:10:47 PM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",112000302-E09 +112710212,75,11089554,Structure Fire,09/28/2011,09/28/2011,09/28/2011 01:07:13 PM,09/28/2011 01:07:43 PM,09/28/2011 01:07:59 PM,09/28/2011 01:09:05 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 01:14:21 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,8,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",112710212-75 +140940348,T03,14031743,Medical Incident,04/04/2014,04/04/2014,04/04/2014 09:01:27 PM,04/04/2014 09:02:47 PM,04/04/2014 09:03:15 PM,04/04/2014 09:04:47 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Code 2 Transport,04/04/2014 09:05:18 PM,1300 Block of PINE ST,SAN FRANCISCO,94109,B04,41,1562,,3,3,false,Potentially Life-Threatening,1,TRUCK,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",140940348-T03 +160461995,71,16018543,Medical Incident,02/15/2016,02/15/2016,02/15/2016 02:17:44 PM,02/15/2016 02:20:34 PM,02/15/2016 02:21:19 PM,02/15/2016 02:21:28 PM,02/15/2016 02:27:55 PM,02/15/2016 02:51:06 PM,02/15/2016 03:00:43 PM,Code 2 Transport,02/15/2016 04:26:04 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160461995-71 +160280379,62,16010958,Medical Incident,01/28/2016,01/27/2016,01/28/2016 05:00:07 AM,01/28/2016 05:03:52 AM,01/28/2016 05:07:30 AM,01/28/2016 05:07:30 AM,01/28/2016 05:18:57 AM,01/28/2016 05:38:04 AM,01/28/2016 05:51:38 AM,Code 2 Transport,01/28/2016 06:40:11 AM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160280379-62 +110470283,73,11015610,Medical Incident,02/16/2011,02/16/2011,02/16/2011 05:10:18 PM,02/16/2011 05:11:18 PM,02/16/2011 05:11:33 PM,02/16/2011 05:11:38 PM,02/16/2011 05:19:06 PM,02/16/2011 05:32:52 PM,02/16/2011 05:51:08 PM,Code 2 Transport,02/16/2011 06:04:43 PM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,true,,1,MEDIC,3,1,3,North Beach,"(37.8070220097095, -122.418095295202)",110470283-73 +130620166,93,13020755,Medical Incident,03/03/2013,03/03/2013,03/03/2013 11:19:34 AM,03/03/2013 11:20:58 AM,03/03/2013 11:21:55 AM,03/03/2013 11:22:18 AM,03/03/2013 11:27:25 AM,03/03/2013 11:39:37 AM,03/03/2013 12:04:34 PM,Code 2 Transport,03/03/2013 12:30:01 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",130620166-93 +110200359,64,11006747,Medical Incident,01/20/2011,01/20/2011,01/20/2011 08:05:01 PM,01/20/2011 08:05:53 PM,01/20/2011 08:06:58 PM,04/25/2016 02:06:30 PM,01/20/2011 08:07:11 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Patient Declined Transport,01/20/2011 08:41:35 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",110200359-64 +113060143,54,11101613,Medical Incident,11/02/2011,11/02/2011,11/02/2011 10:39:38 AM,11/02/2011 10:40:18 AM,11/02/2011 10:41:54 AM,11/02/2011 10:44:29 AM,11/02/2011 10:51:07 AM,11/02/2011 11:19:05 AM,11/02/2011 11:39:44 AM,Code 2 Transport,11/02/2011 12:14:47 PM,600 Block of ALABAMA ST,SF,94110,B02,7,5426,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7610105720239, -122.411919466827)",113060143-54 +131980142,78,13067109,Medical Incident,07/17/2013,07/17/2013,07/17/2013 12:05:08 PM,07/17/2013 12:05:58 PM,07/17/2013 12:07:08 PM,07/17/2013 12:07:19 PM,07/17/2013 12:11:50 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Against Medical Advice,07/17/2013 12:45:31 PM,900 Block of FILLMORE ST,SF,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",131980142-78 +160873106,85,16034713,Medical Incident,03/27/2016,03/27/2016,03/27/2016 07:44:20 PM,03/27/2016 07:45:22 PM,03/27/2016 07:46:21 PM,03/27/2016 07:46:31 PM,03/27/2016 07:59:59 PM,03/27/2016 08:25:16 PM,03/27/2016 08:45:31 PM,Code 2 Transport,03/27/2016 09:17:36 PM,1200 Block of CAYUGA AVE,San Francisco,94112,B09,15,8332,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7194539615998, -122.442784699149)",160873106-85 +140920136,KM02,14030868,Medical Incident,04/02/2014,04/02/2014,04/02/2014 11:02:31 AM,04/02/2014 11:04:23 AM,04/02/2014 11:04:54 AM,04/02/2014 11:05:24 AM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,No Merit,04/02/2014 11:12:09 AM,800 Block of VAN NESS AVE,SAN FRANCISCO,94109,B02,3,3163,3,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7831362095396, -122.420713503363)",140920136-KM02 +113010186,KM05,11099840,Medical Incident,10/28/2011,10/28/2011,10/28/2011 12:39:27 PM,10/28/2011 12:41:53 PM,10/28/2011 12:43:41 PM,10/28/2011 12:45:34 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 12:52:27 PM,0 Block of CAMEO WAY,SF,94131,B06,26,8167,3,3,3,false,,1,PRIVATE,2,6,8,Noe Valley,"(37.7451004204518, -122.44437393249)",113010186-KM05 +110390220,T18,11012958,Structure Fire,02/08/2011,02/08/2011,02/08/2011 02:18:39 PM,02/08/2011 02:19:26 PM,02/08/2011 02:20:07 PM,02/08/2011 02:21:55 PM,02/08/2011 02:29:07 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 02:46:17 PM,600 Block of JOHN MUIR DR,SF,94132,B08,19,8714,3,3,3,false,,1,TRUCK,4,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",110390220-T18 +160762933,76,16030255,Medical Incident,03/16/2016,03/16/2016,03/16/2016 05:14:48 PM,03/16/2016 05:16:19 PM,03/16/2016 05:16:48 PM,03/16/2016 05:17:33 PM,03/16/2016 05:27:26 PM,03/16/2016 05:46:15 PM,03/16/2016 06:03:11 PM,Code 2 Transport,03/16/2016 06:56:46 PM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",160762933-76 +133200266,E13,13108798,Medical Incident,11/16/2013,11/16/2013,11/16/2013 05:28:46 PM,11/16/2013 05:31:33 PM,11/16/2013 05:32:18 PM,11/16/2013 05:32:58 PM,11/16/2013 05:36:31 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 05:54:21 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",133200266-E13 +130870331,55,13029147,Structure Fire,03/28/2013,03/28/2013,03/28/2013 07:47:54 PM,03/28/2013 07:50:52 PM,03/28/2013 07:51:40 PM,03/28/2013 07:51:56 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,04/25/2016 01:53:36 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,Alarm,1,MEDIC,5,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",130870331-55 +122030076,67,12067376,Medical Incident,07/21/2012,07/20/2012,07/21/2012 06:23:07 AM,07/21/2012 06:24:05 AM,07/21/2012 06:24:31 AM,04/25/2016 01:57:37 PM,07/21/2012 06:33:48 AM,07/21/2012 06:50:53 AM,07/21/2012 06:58:37 AM,Code 3 Transport,07/21/2012 07:43:13 AM,300 Block of JULES AVE,SF,94112,B09,15,8457,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7242985678955, -122.461322675836)",122030076-67 +122790352,E05,12092375,Medical Incident,10/05/2012,10/05/2012,10/05/2012 08:32:25 PM,10/05/2012 08:33:12 PM,10/05/2012 08:33:24 PM,10/05/2012 08:34:01 PM,10/05/2012 08:35:59 PM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,Other,10/05/2012 08:46:56 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",122790352-E05 +160691585,63,16027457,Medical Incident,03/09/2016,03/09/2016,03/09/2016 12:10:28 PM,03/09/2016 12:12:30 PM,03/09/2016 12:12:42 PM,03/09/2016 12:12:49 PM,03/09/2016 12:25:52 PM,03/09/2016 12:34:28 PM,03/09/2016 01:15:13 PM,Patient Declined Transport,03/09/2016 01:26:49 PM,900 Block of HOWARD ST,San Francisco,94103,B02,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.78026973391, -122.406390271833)",160691585-63 +160501820,AM10,16020102,Medical Incident,02/19/2016,02/19/2016,02/19/2016 01:25:36 PM,02/19/2016 01:28:44 PM,02/19/2016 01:30:19 PM,02/19/2016 01:31:15 PM,02/19/2016 01:37:56 PM,02/19/2016 01:57:44 PM,02/19/2016 02:20:17 PM,Code 2 Transport,02/19/2016 02:38:47 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160501820-AM10 +160070185,71,16002668,Medical Incident,01/07/2016,01/06/2016,01/07/2016 01:52:13 AM,01/07/2016 01:52:49 AM,01/07/2016 01:53:06 AM,01/07/2016 01:53:37 AM,01/07/2016 02:02:08 AM,01/07/2016 02:27:13 AM,01/07/2016 02:35:57 AM,Code 2 Transport,01/07/2016 03:05:30 AM,2000 Block of 9TH AV,San Francisco,94116,B08,40,7337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7506578941331, -122.465459894563)",160070185-71 +131510178,E21,13051120,Administrative,05/31/2013,05/31/2013,05/31/2013 12:49:34 PM,05/31/2013 12:49:36 PM,05/31/2013 12:51:28 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 12:51:52 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",131510178-E21 +160832580,73,16033020,Medical Incident,03/23/2016,03/23/2016,03/23/2016 03:43:40 PM,03/23/2016 03:45:20 PM,03/23/2016 03:45:52 PM,03/23/2016 03:46:20 PM,03/23/2016 03:54:14 PM,03/23/2016 04:10:16 PM,03/23/2016 04:19:03 PM,Code 2 Transport,03/23/2016 04:56:22 PM,100 Block of BAYSHORE BL,San Francisco,94124,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7442404125332, -122.404295624531)",160832580-73 +160700389,79,16027721,Medical Incident,03/10/2016,03/09/2016,03/10/2016 05:29:13 AM,03/10/2016 05:29:51 AM,03/10/2016 05:30:11 AM,03/10/2016 05:30:21 AM,03/10/2016 05:33:06 AM,03/10/2016 05:42:42 AM,03/10/2016 05:52:13 AM,Code 2 Transport,03/10/2016 06:18:16 AM,3RD ST/NEWCOMB AV,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",160700389-79 +140140078,RC2,14004715,Medical Incident,01/14/2014,01/14/2014,01/14/2014 08:06:36 AM,01/14/2014 08:07:37 AM,01/14/2014 08:09:33 AM,01/14/2014 08:11:13 AM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/14/2014 08:14:13 AM,1600 Block of DIVISADERO ST,SF,94115,B04,10,4131,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,5,5,Japantown,"(37.7847979838284, -122.439663867351)",140140078-RC2 +140810303,T03,14027468,Medical Incident,03/22/2014,03/22/2014,03/22/2014 07:24:36 PM,03/22/2014 07:26:14 PM,03/22/2014 07:26:55 PM,03/22/2014 07:28:12 PM,03/22/2014 07:32:15 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,No Merit,03/22/2014 07:33:21 PM,500 Block of JONES ST,SAN FRANCISCO,94102,B01,3,1462,2,2,2,false,Non Life-threatening,1,TRUCK,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",140810303-T03 +120910312,RS1,12030244,Medical Incident,03/31/2012,03/31/2012,03/31/2012 08:17:34 PM,03/31/2012 08:17:34 PM,03/31/2012 08:17:34 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,No Merit,03/31/2012 08:19:20 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",120910312-RS1 +110990262,E37,11032947,Traffic Collision,04/09/2011,04/09/2011,04/09/2011 04:50:39 PM,04/09/2011 04:52:47 PM,04/09/2011 04:55:01 PM,04/09/2011 04:56:01 PM,04/09/2011 05:02:11 PM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/09/2011 05:10:13 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,,1,ENGINE,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",110990262-E37 +123010172,T10,12099781,Alarms,10/27/2012,10/27/2012,10/27/2012 12:15:43 PM,10/27/2012 12:15:52 PM,10/27/2012 12:16:04 PM,10/27/2012 12:17:32 PM,10/27/2012 12:20:20 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:24:16 PM,100 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,false,Alarm,1,TRUCK,2,7,2,Presidio Heights,"(37.7825976745462, -122.457758842214)",123010172-T10 +130530015,D2,13017778,Structure Fire,02/22/2013,02/21/2013,02/22/2013 01:46:08 AM,02/22/2013 01:46:55 AM,02/22/2013 01:47:27 AM,02/22/2013 01:50:05 AM,02/22/2013 01:50:59 AM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Other,02/22/2013 01:54:28 AM,1000 Block of FRANKLIN ST,SF,94109,B02,3,3221,3,3,3,false,Alarm,1,CHIEF,6,2,5,Western Addition,"(37.7843237549349, -122.422723433199)",130530015-D2 +122030185,E03,12067468,Structure Fire,07/21/2012,07/21/2012,07/21/2012 01:06:30 PM,07/21/2012 01:06:31 PM,07/21/2012 01:07:24 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 01:11:02 PM,10TH ST/MISSION ST,SF,94103,B02,36,2341,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7752720593077, -122.415908181241)",122030185-E03 +110470152,E18,11015505,Medical Incident,02/16/2011,02/16/2011,02/16/2011 10:33:00 AM,02/16/2011 10:35:29 AM,02/16/2011 10:35:49 AM,02/16/2011 10:36:07 AM,02/16/2011 10:39:56 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 10:48:11 AM,1500 Block of 20TH AVE,SF,94122,B08,22,7423,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7588490098905, -122.47794097509)",110470152-E18 +132170030,E32,13073183,Medical Incident,08/05/2013,08/04/2013,08/05/2013 02:17:11 AM,08/05/2013 02:20:17 AM,08/05/2013 02:20:46 AM,08/05/2013 02:22:03 AM,08/05/2013 02:25:13 AM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/05/2013 02:36:20 AM,1300 Block of VALENCIA ST,SF,94110,B06,11,5535,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7513090308287, -122.420516937429)",132170030-E32 +103350187,96,10107185,Structure Fire,12/01/2010,12/01/2010,12/01/2010 01:28:28 PM,12/01/2010 01:30:34 PM,12/01/2010 01:31:31 PM,12/01/2010 01:31:42 PM,12/01/2010 01:33:33 PM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Other,12/01/2010 01:37:57 PM,2100 Block of CABRILLO ST,SF,94121,B07,14,7177,3,3,3,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7746137705422, -122.481652291086)",103350187-96 +102820229,88,10089716,Medical Incident,10/09/2010,10/09/2010,10/09/2010 01:48:32 PM,10/09/2010 01:49:31 PM,10/09/2010 01:49:55 PM,10/09/2010 01:50:17 PM,10/09/2010 01:53:38 PM,10/09/2010 02:10:46 PM,10/09/2010 02:22:08 PM,Code 2 Transport,10/09/2010 02:32:59 PM,3RD ST/MISSION ROCK ST,SF,94158,B03,8,2162,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7729307948812, -122.389716741449)",102820229-88 +160374302,70,16015004,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:48:29 PM,02/06/2016 11:49:35 PM,02/06/2016 11:50:37 PM,02/06/2016 11:50:51 PM,02/06/2016 11:59:31 PM,02/07/2016 12:16:46 AM,02/07/2016 12:35:37 AM,Code 2 Transport,02/07/2016 01:01:28 AM,PENNSYLVANIA AV/CESAR CHAVEZ ST,San Francisco,94124,B10,25,2635,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7500215081488, -122.392381993965)",160374302-70 +131070008,E01,13035822,Medical Incident,04/17/2013,04/16/2013,04/17/2013 01:08:55 AM,04/17/2013 01:10:21 AM,04/17/2013 01:10:37 AM,04/17/2013 01:12:50 AM,04/17/2013 01:16:17 AM,04/25/2016 01:53:16 PM,04/25/2016 01:53:16 PM,Other,04/17/2013 01:22:10 AM,900 Block of MARKET ST,SF,94102,B03,1,2247,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",131070008-E01 +121800257,E16,12059983,Medical Incident,06/28/2012,06/28/2012,06/28/2012 04:00:42 PM,06/28/2012 04:01:09 PM,06/28/2012 04:01:26 PM,06/28/2012 04:02:30 PM,06/28/2012 04:03:42 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/28/2012 04:06:29 PM,LOMBARD ST/PIERCE ST,SF,94123,B04,16,3656,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.7994253119327, -122.439336652409)",121800257-E16 +130820327,E05,13027577,Medical Incident,03/23/2013,03/23/2013,03/23/2013 09:35:52 PM,03/23/2013 09:37:05 PM,03/23/2013 09:37:20 PM,03/23/2013 09:38:42 PM,03/23/2013 09:40:44 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/23/2013 09:51:04 PM,900 Block of FILLMORE ST,SF,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",130820327-E05 +140250191,T02,14008577,Alarms,01/25/2014,01/25/2014,01/25/2014 02:16:08 PM,01/25/2014 02:17:03 PM,01/25/2014 02:17:19 PM,01/25/2014 02:18:25 PM,01/25/2014 02:21:13 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/25/2014 02:28:46 PM,2600 Block of JONES ST,SF,94133,B01,28,1521,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8056853345021, -122.416914137852)",140250191-T02 +160012489,81,16000382,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:28:33 PM,01/01/2016 03:28:53 PM,01/01/2016 03:29:49 PM,01/01/2016 03:30:10 PM,01/01/2016 03:36:33 PM,01/01/2016 03:52:28 PM,01/01/2016 04:12:57 PM,Code 2 Transport,01/01/2016 04:58:18 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160012489-81 +160481638,67,16019323,Medical Incident,02/17/2016,02/17/2016,02/17/2016 11:59:25 AM,02/17/2016 12:00:34 PM,02/17/2016 12:01:16 PM,02/17/2016 12:01:31 PM,02/17/2016 12:06:53 PM,02/17/2016 12:18:18 PM,02/17/2016 12:41:03 PM,Code 3 Transport,02/17/2016 01:37:18 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160481638-67 +132170309,T03,13073407,Elevator / Escalator Rescue,08/05/2013,08/05/2013,08/05/2013 07:31:46 PM,08/05/2013 07:33:23 PM,08/05/2013 07:44:04 PM,04/25/2016 01:51:27 PM,08/05/2013 07:36:45 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 07:42:05 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",132170309-T03 +130410082,67,13013938,Structure Fire,02/10/2013,02/09/2013,02/10/2013 07:22:43 AM,02/10/2013 07:23:27 AM,02/10/2013 07:23:46 AM,02/10/2013 07:24:09 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 07:33:32 AM,PINE ST/LYON ST,SF,94115,B05,10,4263,3,3,3,true,Alarm,1,MEDIC,9,5,2,Presidio Heights,"(37.7864809020092, -122.44520849167)",130410082-67 +160692284,67,16027523,Medical Incident,03/09/2016,03/09/2016,03/09/2016 03:10:15 PM,03/09/2016 03:11:47 PM,03/09/2016 03:12:16 PM,03/09/2016 03:12:22 PM,03/09/2016 03:17:11 PM,03/09/2016 03:35:13 PM,03/09/2016 03:40:03 PM,Code 2 Transport,03/09/2016 04:18:31 PM,1300 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7795136005399, -122.432784844959)",160692284-67 +120300122,B10,12009939,Alarms,01/30/2012,01/30/2012,01/30/2012 10:49:42 AM,01/30/2012 10:50:38 AM,01/30/2012 10:50:55 AM,01/30/2012 10:51:27 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/30/2012 10:55:48 AM,1100 Block of GILMAN AVE,SF,94124,B10,17,6613,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7197791000327, -122.390985214053)",120300122-B10 +160840973,63,16033294,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:03:51 AM,03/24/2016 09:05:43 AM,03/24/2016 09:06:09 AM,03/24/2016 09:06:26 AM,03/24/2016 09:11:45 AM,03/24/2016 09:26:53 AM,03/24/2016 09:45:59 AM,Code 2 Transport,03/24/2016 10:05:35 AM,2700 Block of 20TH ST,San Francisco,94110,B06,7,5451,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7592211417293, -122.408416599356)",160840973-63 +160832381,81,16033005,Medical Incident,03/23/2016,03/23/2016,03/23/2016 02:52:54 PM,03/23/2016 02:54:26 PM,03/23/2016 02:54:49 PM,03/23/2016 02:55:26 PM,03/23/2016 03:03:35 PM,03/23/2016 03:14:54 PM,03/23/2016 03:42:47 PM,Code 2 Transport,03/23/2016 04:05:27 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B99,51,4616,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160832381-81 +113470196,E07,11115113,Medical Incident,12/13/2011,12/13/2011,12/13/2011 12:09:18 PM,12/13/2011 12:11:16 PM,12/13/2011 12:11:28 PM,12/13/2011 12:12:13 PM,12/13/2011 12:13:15 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,Other,12/13/2011 12:21:59 PM,2800 Block of 22ND ST,SF,94110,B06,7,5474,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7559148150977, -122.411740426812)",113470196-E07 +130450360,E42,13015399,Medical Incident,02/14/2013,02/14/2013,02/14/2013 07:21:43 PM,02/14/2013 07:22:29 PM,02/14/2013 07:22:35 PM,04/25/2016 01:54:18 PM,02/14/2013 07:25:51 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 07:44:53 PM,2100 Block of QUESADA AVE,SF,94124,B10,42,6431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7380740515754, -122.399915418902)",130450360-E42 +112720268,71,11090008,Medical Incident,09/29/2011,09/29/2011,09/29/2011 05:23:57 PM,09/29/2011 05:26:07 PM,09/29/2011 05:26:36 PM,09/29/2011 05:26:43 PM,09/29/2011 05:43:41 PM,09/29/2011 05:56:57 PM,09/29/2011 06:07:23 PM,Code 2 Transport,09/29/2011 06:35:24 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",112720268-71 +131280075,E13,13043189,Medical Incident,05/08/2013,05/07/2013,05/08/2013 06:51:47 AM,05/08/2013 06:55:29 AM,05/08/2013 06:56:10 AM,05/08/2013 06:57:31 AM,05/08/2013 07:11:03 AM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 07:13:14 AM,MONTGOMERY ST/JACKSON ST,SF,94111,B01,13,1232,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Chinatown,"(37.7964174850191, -122.403496710989)",131280075-E13 +112320142,RS1,11076559,Water Rescue,08/20/2011,08/20/2011,08/20/2011 11:29:06 AM,08/20/2011 11:29:51 AM,08/20/2011 11:30:37 AM,08/20/2011 11:32:09 AM,08/20/2011 11:45:47 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 12:05:50 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,,1,RESCUE SQUAD,6,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",112320142-RS1 +102740039,95,10086902,Medical Incident,10/01/2010,09/30/2010,10/01/2010 06:19:52 AM,10/01/2010 06:21:56 AM,10/01/2010 06:22:34 AM,10/01/2010 06:24:31 AM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 06:27:12 AM,2200 Block of 29TH AVE,SF,94116,B08,18,7521,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7453793393915, -122.486530653618)",102740039-95 +131360431,E01,13046084,Medical Incident,05/16/2013,05/16/2013,05/16/2013 10:07:23 PM,05/16/2013 10:08:47 PM,05/16/2013 10:09:35 PM,05/16/2013 10:10:33 PM,05/16/2013 10:13:14 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 10:20:43 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",131360431-E01 +160380813,84,16015111,Medical Incident,02/07/2016,02/06/2016,02/07/2016 06:28:48 AM,02/07/2016 06:29:45 AM,02/07/2016 06:29:51 AM,02/07/2016 06:30:01 AM,02/07/2016 06:33:43 AM,02/07/2016 06:38:39 AM,02/07/2016 07:03:05 AM,Code 2 Transport,02/07/2016 07:43:05 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",160380813-84 +113380306,E33,11112117,Medical Incident,12/04/2011,12/04/2011,12/04/2011 05:30:50 PM,12/04/2011 05:33:31 PM,12/04/2011 05:33:58 PM,12/04/2011 05:35:50 PM,12/04/2011 05:38:33 PM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/04/2011 06:01:15 PM,600 Block of HURON AVE,SF,94112,B09,33,8347,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7128899249347, -122.448417920722)",113380306-E33 +113110348,T05,11103481,Structure Fire,11/07/2011,11/07/2011,11/07/2011 09:40:09 PM,11/07/2011 09:40:09 PM,11/07/2011 09:41:25 PM,11/07/2011 09:42:59 PM,11/07/2011 09:45:34 PM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,Other,11/07/2011 09:51:59 PM,2300 Block of BUCHANAN ST,SF,94115,B04,38,343,3,3,3,false,,1,TRUCK,2,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",113110348-T05 +160811875,KM04,16032186,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:28:03 PM,03/21/2016 01:28:03 PM,03/21/2016 01:28:22 PM,03/21/2016 01:30:05 PM,03/21/2016 01:36:03 PM,03/21/2016 01:50:26 PM,03/21/2016 02:04:00 PM,Code 2 Transport,03/21/2016 02:40:24 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7819536537257, -122.410041631816)",160811875-KM04 +133050427,54,13103826,Medical Incident,11/01/2013,11/01/2013,11/01/2013 08:41:11 PM,11/01/2013 08:44:23 PM,11/01/2013 08:47:40 PM,11/01/2013 08:48:03 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/01/2013 08:58:48 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",133050427-54 +120140042,AM18,12004646,Medical Incident,01/14/2012,01/13/2012,01/14/2012 02:33:18 AM,01/14/2012 02:34:04 AM,01/14/2012 02:34:43 AM,01/14/2012 02:35:20 AM,01/14/2012 02:38:59 AM,01/14/2012 02:57:43 AM,01/14/2012 03:06:27 AM,Code 2 Transport,01/14/2012 03:44:45 AM,2400 Block of MISSION ST,SF,94110,B06,7,5446,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7576217212029, -122.418887293065)",120140042-AM18 +160491284,61,16019697,Traffic Collision,02/18/2016,02/18/2016,02/18/2016 11:00:43 AM,02/18/2016 11:01:06 AM,02/18/2016 11:01:52 AM,02/18/2016 11:02:22 AM,02/18/2016 11:06:42 AM,02/18/2016 11:19:39 AM,02/18/2016 11:28:32 AM,Code 2 Transport,02/18/2016 12:09:48 PM,BROADWAY/BATTERY ST,San Francisco,94111,B01,13,1155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7985800532877, -122.401051292992)",160491284-61 +130690162,83,13023027,Medical Incident,03/10/2013,03/10/2013,03/10/2013 12:47:56 PM,03/10/2013 12:49:23 PM,03/10/2013 12:49:40 PM,03/10/2013 12:50:51 PM,03/10/2013 01:00:51 PM,03/10/2013 01:18:00 PM,03/10/2013 01:45:02 PM,Code 2 Transport,03/10/2013 02:07:49 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",130690162-83 +130190380,E07,13006679,Citizen Assist / Service Call,01/19/2013,01/19/2013,01/19/2013 09:54:52 PM,01/19/2013 09:54:52 PM,01/19/2013 09:54:52 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,No Merit,01/19/2013 10:00:07 PM,2100 Block of FOLSOM ST,SF,94110,B02,7,5424,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7629022227561, -122.415007871815)",130190380-E07 +113340214,KM10,11110627,Medical Incident,11/30/2011,11/30/2011,11/30/2011 03:04:40 PM,11/30/2011 03:06:05 PM,11/30/2011 03:06:23 PM,11/30/2011 03:09:22 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,11/30/2011 03:15:23 PM,600 Block of SAN JOSE AVE,SF,94110,B06,11,5577,3,3,3,false,,1,PRIVATE,2,6,8,Bernal Heights,"(37.7459390289798, -122.421805189275)",113340214-KM10 +160083461,82,16003399,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:11:35 PM,01/08/2016 08:11:35 PM,01/08/2016 08:13:04 PM,01/08/2016 08:13:28 PM,01/08/2016 08:24:57 PM,01/08/2016 08:52:35 PM,01/08/2016 09:00:38 PM,Code 2 Transport,01/08/2016 09:54:58 PM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",160083461-82 +120790002,E11,12026083,Medical Incident,03/19/2012,03/18/2012,03/19/2012 12:01:07 AM,03/19/2012 12:02:24 AM,03/19/2012 12:03:08 AM,03/19/2012 12:04:09 AM,03/19/2012 12:06:25 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 12:21:00 AM,3700 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7478492013456, -122.423619315765)",120790002-E11 +122410301,AM10,12079861,Medical Incident,08/28/2012,08/28/2012,08/28/2012 08:17:11 PM,08/28/2012 08:17:11 PM,08/28/2012 08:17:36 PM,08/28/2012 08:18:30 PM,08/28/2012 08:22:23 PM,08/28/2012 08:38:36 PM,08/28/2012 08:45:25 PM,Code 2 Transport,08/28/2012 09:11:46 PM,1700 Block of GOLDEN GATE AVE,SF,94115,B05,21,4242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Western Addition,"(37.778563562888, -122.439371787013)",122410301-AM10 +103290249,RC1,10105436,Alarms,11/25/2010,11/25/2010,11/25/2010 06:44:14 PM,11/25/2010 06:45:32 PM,11/25/2010 06:46:16 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,04/25/2016 02:07:26 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7815374331217, -122.409518341416)",103290249-RC1 +120660342,83,12021966,Medical Incident,03/06/2012,03/06/2012,03/06/2012 06:30:26 PM,03/06/2012 06:32:05 PM,03/06/2012 06:33:18 PM,03/06/2012 06:36:59 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 06:40:17 PM,GENEVA AV/SAN JOSE AV,SF,94112,B09,15,8311,1,3,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",120660342-83 +140070215,T06,14002510,Citizen Assist / Service Call,01/07/2014,01/07/2014,01/07/2014 01:44:12 PM,01/07/2014 01:44:12 PM,01/07/2014 01:45:11 PM,01/07/2014 01:46:27 PM,01/07/2014 01:50:59 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 01:51:28 PM,3700 Block of 22ND ST,SF,94114,B06,24,5466,3,3,3,false,Alarm,1,TRUCK,1,6,8,Noe Valley,"(37.7546396842742, -122.431064347786)",140070215-T06 +110860068,E01,11028279,Medical Incident,03/27/2011,03/26/2011,03/27/2011 03:19:28 AM,03/27/2011 03:20:23 AM,03/27/2011 03:20:49 AM,03/27/2011 03:23:08 AM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,Other,03/27/2011 03:26:54 AM,MARKET ST/3RD ST,SF,94103,B01,1,1241,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",110860068-E01 +160763690,53,16030340,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:30:38 PM,03/16/2016 08:30:38 PM,03/16/2016 08:30:58 PM,03/16/2016 08:37:46 PM,03/16/2016 08:59:41 PM,03/16/2016 08:59:43 PM,03/16/2016 09:27:39 PM,Code 2 Transport,03/16/2016 09:55:53 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.780721312022, -122.415737767164)",160763690-53 +130720251,KM04,13024049,Medical Incident,03/13/2013,03/13/2013,03/13/2013 02:58:45 PM,03/13/2013 03:00:09 PM,03/13/2013 03:01:29 PM,03/13/2013 03:02:02 PM,03/13/2013 03:04:31 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,No Merit,03/13/2013 03:07:15 PM,SUTTER ST/POLK ST,SF,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",130720251-KM04 +160824117,58,16032788,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:24:24 PM,03/22/2016 11:25:39 PM,03/22/2016 11:25:52 PM,03/22/2016 11:27:49 PM,03/22/2016 11:49:46 PM,03/22/2016 11:49:48 PM,03/22/2016 11:58:17 PM,Code 2 Transport,03/23/2016 12:42:27 AM,300 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",160824117-58 +160100395,AM20,16003901,Medical Incident,01/10/2016,01/09/2016,01/10/2016 02:56:46 AM,01/10/2016 02:59:08 AM,01/10/2016 02:59:34 AM,01/10/2016 03:00:12 AM,01/10/2016 03:06:46 AM,01/10/2016 03:16:42 AM,01/10/2016 03:27:18 AM,Code 2 Transport,01/10/2016 04:04:42 AM,1000 Block of FOLSOM ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.778254811523, -122.405834032593)",160100395-AM20 +160921049,55,16036378,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:43:24 AM,04/01/2016 09:45:54 AM,04/01/2016 09:46:22 AM,04/01/2016 09:46:30 AM,04/01/2016 09:52:00 AM,04/01/2016 10:13:13 AM,04/01/2016 10:54:38 AM,Code 2 Transport,04/01/2016 11:09:59 AM,0 Block of MEGAN DR,San Francisco,94134,B10,44,6271,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7139716122376, -122.39845777297)",160921049-55 +120440178,E03,12014696,Medical Incident,02/13/2012,02/13/2012,02/13/2012 01:19:47 PM,02/13/2012 01:22:39 PM,02/13/2012 01:22:52 PM,04/25/2016 02:00:09 PM,02/13/2012 01:25:59 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 01:41:25 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",120440178-E03 +140020017,T13,14000529,Alarms,01/02/2014,01/01/2014,01/02/2014 12:55:54 AM,01/02/2014 12:57:35 AM,01/02/2014 12:57:40 AM,01/02/2014 01:00:13 AM,01/02/2014 01:01:23 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/02/2014 01:30:02 AM,200 Block of SANSOME ST,SF,94104,B01,13,1165,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7925930872395, -122.400961378591)",140020017-T13 +131320300,66,13044694,Medical Incident,05/12/2013,05/12/2013,05/12/2013 10:51:04 PM,05/12/2013 10:52:54 PM,05/12/2013 10:53:55 PM,05/12/2013 10:54:04 PM,05/12/2013 11:00:27 PM,05/12/2013 11:17:01 PM,05/12/2013 11:33:50 PM,Code 2 Transport,05/13/2013 12:06:48 AM,700 Block of BUSH ST,SF,94108,B01,2,1361,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",131320300-66 +121210284,B04,12040275,Alarms,04/30/2012,04/30/2012,04/30/2012 07:13:54 PM,04/30/2012 07:14:44 PM,04/30/2012 07:14:58 PM,04/30/2012 07:16:03 PM,04/30/2012 07:19:46 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 07:34:53 PM,2600 Block of GEARY BLVD,SF,94115,B05,10,4365,3,3,3,false,Alarm,1,CHIEF,3,5,2,Lone Mountain/USF,"(37.7822483679158, -122.446592481498)",121210284-B04 +160523596,AM14,16021014,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:47:12 PM,02/21/2016 10:50:15 PM,02/21/2016 10:50:30 PM,02/21/2016 10:51:15 PM,02/21/2016 10:54:19 PM,02/21/2016 11:12:48 PM,02/21/2016 11:30:52 PM,Code 2 Transport,02/21/2016 11:51:33 PM,100 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7600276030747, -122.435966427502)",160523596-AM14 +102450337,E51,10077436,Administrative,09/02/2010,09/02/2010,09/02/2010 04:27:28 PM,09/02/2010 04:27:38 PM,09/02/2010 04:28:53 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/02/2010 04:29:21 PM,200 Block of LINCOLN BLVD,PR,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8016003147368, -122.456408426343)",102450337-E51 +110700295,E28,11023110,Medical Incident,03/11/2011,03/11/2011,03/11/2011 05:36:12 PM,03/11/2011 05:38:16 PM,03/11/2011 05:40:31 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/11/2011 05:43:50 PM,400 Block of UNION ST,SF,94133,B01,28,1252,1,1,2,false,,1,ENGINE,2,1,3,North Beach,"(37.8008450193266, -122.406384274278)",110700295-E28 +123160021,88,12105026,Medical Incident,11/11/2012,11/10/2012,11/11/2012 01:12:58 AM,11/11/2012 01:14:48 AM,11/11/2012 01:15:59 AM,11/11/2012 01:16:09 AM,11/11/2012 01:23:00 AM,11/11/2012 01:41:42 AM,11/11/2012 01:51:57 AM,Code 2 Transport,11/11/2012 02:11:39 AM,1000 Block of POST ST,SF,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",123160021-88 +140440393,KM15,14015131,Medical Incident,02/13/2014,02/13/2014,02/13/2014 08:24:32 PM,02/13/2014 08:25:22 PM,02/13/2014 08:25:42 PM,02/13/2014 08:27:03 PM,02/13/2014 08:32:00 PM,02/13/2014 08:53:11 PM,04/25/2016 01:48:13 PM,Code 2 Transport,02/13/2014 09:36:00 PM,600 Block of FUNSTON AVE,SF,94118,B07,31,7145,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7759631712363, -122.471370431266)",140440393-KM15 +160262126,63,16010332,Medical Incident,01/26/2016,01/26/2016,01/26/2016 02:13:12 PM,01/26/2016 02:15:14 PM,01/26/2016 02:16:00 PM,01/26/2016 02:17:01 PM,01/26/2016 02:23:02 PM,01/26/2016 02:35:40 PM,01/26/2016 02:37:58 PM,Code 2 Transport,01/26/2016 03:15:50 PM,0 Block of CHURCH ST,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",160262126-63 +103060129,E02,10097858,Medical Incident,11/02/2010,11/01/2010,11/02/2010 06:56:03 AM,11/02/2010 06:56:50 AM,11/02/2010 06:57:17 AM,11/02/2010 07:00:47 AM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/02/2010 07:04:00 AM,800 Block of LEAVENWORTH ST,SF,94109,B01,41,1542,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",103060129-E02 +130630132,RA48,13021044,Medical Incident,03/04/2013,03/04/2013,03/04/2013 10:03:00 AM,03/04/2013 10:05:02 AM,03/04/2013 10:05:27 AM,03/04/2013 10:06:05 AM,03/04/2013 10:07:28 AM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 10:39:27 AM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,2,2,2,false,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",130630132-RA48 +131600239,E01,13054404,Medical Incident,06/09/2013,06/09/2013,06/09/2013 04:37:34 PM,06/09/2013 04:37:34 PM,06/09/2013 04:38:23 PM,06/09/2013 04:39:23 PM,06/09/2013 04:40:29 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 04:56:53 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7824182864419, -122.403869611535)",131600239-E01 +132040147,RS1,13069063,Medical Incident,07/23/2013,07/23/2013,07/23/2013 11:26:15 AM,07/23/2013 11:27:22 AM,07/23/2013 11:27:36 AM,07/23/2013 11:28:46 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 11:30:26 AM,MARKET ST/4TH ST,SF,94103,B03,1,1322,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",132040147-RS1 +120570129,E10,12018763,Alarms,02/26/2012,02/26/2012,02/26/2012 10:01:26 AM,02/26/2012 10:02:38 AM,02/26/2012 10:02:54 AM,02/26/2012 10:04:57 AM,02/26/2012 10:06:28 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 10:26:07 AM,3100 Block of WASHINGTON ST,SF,94115,B04,10,4265,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7901683360744, -122.445106098836)",120570129-E10 +123430336,92,12114755,Medical Incident,12/08/2012,12/08/2012,12/08/2012 07:44:55 PM,12/08/2012 07:45:25 PM,12/08/2012 07:45:38 PM,12/08/2012 07:46:31 PM,12/08/2012 07:50:00 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 09:28:01 PM,3600 Block of WASHINGTON ST,SF,94118,B07,10,4433,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7891489677203, -122.453112381719)",123430336-92 +123430356,78,12114774,Medical Incident,12/08/2012,12/08/2012,12/08/2012 09:02:29 PM,12/08/2012 09:05:22 PM,12/08/2012 09:05:27 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,12/08/2012 09:14:44 PM,12/08/2012 09:32:46 PM,Code 2 Transport,12/08/2012 09:55:49 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",123430356-78 +123450412,E03,12115520,Medical Incident,12/10/2012,12/10/2012,12/10/2012 09:26:03 PM,12/10/2012 09:26:37 PM,12/10/2012 09:26:53 PM,12/10/2012 09:33:49 PM,12/10/2012 09:35:52 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 09:41:29 PM,400 Block of TURK ST,SF,94102,B02,3,1554,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",123450412-E03 +122110202,E44,12070105,Medical Incident,07/29/2012,07/29/2012,07/29/2012 03:36:42 PM,07/29/2012 03:38:29 PM,07/29/2012 03:38:38 PM,07/29/2012 03:39:47 PM,07/29/2012 03:44:27 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 04:19:54 PM,100 Block of LOEHR ST,SF,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.71262387882, -122.413673241478)",122110202-E44 +110310155,RWC1,11010139,Water Rescue,01/31/2011,01/31/2011,01/31/2011 10:47:57 AM,01/31/2011 10:49:42 AM,01/31/2011 10:51:08 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/31/2011 11:00:21 AM,1600 Block of BATTERY CHAMBERLIN RD,PR,94129,B07,51,4630,3,3,3,false,,1,SUPPORT,10,7,2,Presidio,"(37.7915253713789, -122.483480228628)",110310155-RWC1 +133170344,89,13107871,Medical Incident,11/13/2013,11/13/2013,11/13/2013 08:05:07 PM,11/13/2013 08:09:12 PM,11/13/2013 08:12:30 PM,11/13/2013 08:12:35 PM,11/13/2013 08:41:48 PM,11/13/2013 09:04:25 PM,11/13/2013 09:25:04 PM,Code 2 Transport,11/13/2013 10:00:59 PM,400 Block of SERRANO DR,SF,94132,B08,19,8581,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",133170344-89 +160063288,91,16002569,Medical Incident,01/06/2016,01/06/2016,01/06/2016 07:48:36 PM,01/06/2016 07:49:49 PM,01/06/2016 07:50:07 PM,01/06/2016 07:51:06 PM,01/06/2016 08:12:25 PM,01/06/2016 08:12:31 PM,01/06/2016 08:24:17 PM,Code 2 Transport,01/06/2016 09:06:09 PM,500 Block of MISSION ST,San Francisco,94105,B03,1,2145,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890403116514, -122.398391248059)",160063288-91 +160431658,79,16017289,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:37:14 PM,02/12/2016 12:38:55 PM,02/12/2016 12:39:28 PM,02/12/2016 12:39:40 PM,02/12/2016 12:53:14 PM,02/12/2016 01:09:26 PM,02/12/2016 01:29:18 PM,Code 2 Transport,02/12/2016 02:01:24 PM,0 Block of SPEAR ST,San Francisco,94105,B03,13,2115,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",160431658-79 +160680991,77,16027058,Medical Incident,03/08/2016,03/08/2016,03/08/2016 09:33:59 AM,03/08/2016 09:35:42 AM,03/08/2016 09:35:58 AM,03/08/2016 09:36:17 AM,03/08/2016 09:48:57 AM,03/08/2016 10:03:53 AM,03/08/2016 10:13:13 AM,Code 2 Transport,03/08/2016 10:51:48 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.736603270893, -122.39065556089)",160680991-77 +120590344,72,12019563,Medical Incident,02/28/2012,02/28/2012,02/28/2012 09:09:41 PM,02/28/2012 09:10:53 PM,02/28/2012 09:11:29 PM,02/28/2012 09:11:40 PM,02/28/2012 09:18:11 PM,02/28/2012 09:27:16 PM,02/28/2012 09:40:22 PM,Code 2 Transport,02/28/2012 10:07:54 PM,9TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",120590344-72 +120520236,E16,12017219,Structure Fire,02/21/2012,02/21/2012,02/21/2012 03:17:29 PM,02/21/2012 03:18:12 PM,02/21/2012 03:18:32 PM,02/21/2012 03:20:10 PM,02/21/2012 03:21:04 PM,04/25/2016 02:00:02 PM,04/25/2016 02:00:02 PM,Other,02/21/2012 03:25:38 PM,2900 Block of PIERCE ST,SF,94123,B04,16,3655,3,3,3,true,Fire,1,ENGINE,1,4,2,Marina,"(37.7971277939768, -122.438942016524)",120520236-E16 +133210144,KM02,13109009,Medical Incident,11/17/2013,11/17/2013,11/17/2013 11:17:01 AM,11/17/2013 11:18:27 AM,11/17/2013 11:18:36 AM,11/17/2013 11:19:23 AM,11/17/2013 11:26:20 AM,11/17/2013 11:42:07 AM,11/17/2013 11:59:45 AM,Code 2 Transport,11/17/2013 12:28:43 PM,500 Block of 4TH ST,SF,94107,B03,8,2217,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7789803526172, -122.397251222589)",133210144-KM02 +160590598,KM03,16023395,Medical Incident,02/28/2016,02/27/2016,02/28/2016 05:47:17 AM,02/28/2016 05:47:51 AM,02/28/2016 05:48:51 AM,02/28/2016 05:49:27 AM,02/28/2016 05:52:58 AM,02/28/2016 06:27:52 AM,02/28/2016 06:52:36 AM,Code 3 Transport,02/28/2016 06:53:10 AM,1600 Block of GREENWICH ST,San Francisco,94123,B04,16,3234,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.8002105050498, -122.426405370482)",160590598-KM03 +131430384,79,13048672,Medical Incident,05/23/2013,05/23/2013,05/23/2013 11:49:27 PM,05/23/2013 11:51:55 PM,05/23/2013 11:52:09 PM,05/23/2013 11:52:38 PM,05/24/2013 12:01:24 AM,05/24/2013 12:15:59 AM,05/24/2013 12:36:22 AM,Code 2 Transport,05/24/2013 01:04:57 AM,1700 Block of GREAT HWY,SF,94122,B08,23,7725,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7537667335741, -122.508487039053)",131430384-79 +111110110,T11,11036600,Citizen Assist / Service Call,04/21/2011,04/21/2011,04/21/2011 09:33:18 AM,04/21/2011 09:35:59 AM,04/21/2011 09:36:08 AM,04/21/2011 09:37:36 AM,04/21/2011 09:42:46 AM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Fire,04/21/2011 09:49:13 AM,500 Block of 29TH ST,SF,94131,B06,26,5565,3,3,3,false,,1,TRUCK,1,6,8,Noe Valley,"(37.7433086065189, -122.432204663379)",111110110-T11 +160492910,83,16019819,Medical Incident,02/18/2016,02/18/2016,02/18/2016 05:41:41 PM,02/18/2016 05:42:13 PM,02/18/2016 05:42:36 PM,02/18/2016 05:43:34 PM,02/18/2016 05:47:51 PM,02/18/2016 06:15:01 PM,02/18/2016 06:37:22 PM,Code 2 Transport,02/18/2016 06:56:33 PM,FOLSOM ST/23RD ST,San Francisco,94110,B06,7,5473,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7540988828495, -122.414233510441)",160492910-83 +160282743,56,16011171,Medical Incident,01/28/2016,01/28/2016,01/28/2016 04:49:53 PM,01/28/2016 04:49:53 PM,01/28/2016 04:50:22 PM,01/28/2016 04:50:58 PM,01/28/2016 04:58:15 PM,01/28/2016 05:07:58 PM,01/28/2016 05:07:59 PM,Code 2 Transport,01/28/2016 06:36:15 PM,STOCKTON ST/OFARRELL ST,San Francisco,94108,B03,1,1322,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7866153472398, -122.406398878903)",160282743-56 +102290256,E29,10072121,Gas Leak (Natural and LP Gases),08/17/2010,08/17/2010,08/17/2010 05:06:43 PM,08/17/2010 05:08:49 PM,08/17/2010 05:12:40 PM,08/17/2010 05:13:33 PM,08/17/2010 05:15:53 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 05:18:48 PM,500 Block of INDIANA ST,SF,94107,B03,29,2436,3,3,3,true,,1,ENGINE,1,3,10,Potrero Hill,"(37.7628635743307, -122.391728300741)",102290256-E29 +160160507,KM07,16006295,Medical Incident,01/16/2016,01/15/2016,01/16/2016 04:03:54 AM,01/16/2016 04:15:22 AM,01/16/2016 04:16:09 AM,01/16/2016 04:16:44 AM,01/16/2016 04:23:09 AM,01/16/2016 04:37:20 AM,01/16/2016 04:49:13 AM,Code 2 Transport,01/16/2016 05:25:16 AM,0 Block of RUSSIA AVE,San Francisco,94112,B09,43,6126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7214392698455, -122.436731381634)",160160507-KM07 +131120114,T13,13037631,Alarms,04/22/2013,04/22/2013,04/22/2013 09:37:11 AM,04/22/2013 09:41:30 AM,04/22/2013 09:41:51 AM,04/22/2013 09:43:39 AM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Other,04/22/2013 09:45:18 AM,600 Block of MARKET ST,SF,94104,B01,1,1241,B,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",131120114-T13 +103440409,B02,10110399,Medical Incident,12/10/2010,12/10/2010,12/10/2010 09:58:01 PM,12/10/2010 09:59:12 PM,12/10/2010 09:59:52 PM,12/10/2010 10:00:17 PM,12/10/2010 10:06:14 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 10:09:23 PM,200 Block of JONES ST,SF,94102,B03,1,1456,E,E,3,false,,1,CHIEF,2,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",103440409-B02 +140060376,E36,14002289,Medical Incident,01/06/2014,01/06/2014,01/06/2014 08:43:25 PM,01/06/2014 08:44:17 PM,01/06/2014 08:44:54 PM,01/06/2014 08:46:18 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 08:48:35 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140060376-E36 +160172019,85,16006882,Medical Incident,01/17/2016,01/17/2016,01/17/2016 02:53:58 PM,01/17/2016 02:56:32 PM,01/17/2016 03:03:33 PM,01/17/2016 03:03:42 PM,01/17/2016 03:15:15 PM,01/17/2016 03:35:38 PM,01/17/2016 03:39:22 PM,Code 3 Transport,01/17/2016 05:04:39 PM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",160172019-85 +160793879,AM22,16031588,Medical Incident,03/19/2016,03/19/2016,03/19/2016 09:25:19 PM,03/19/2016 09:28:42 PM,03/19/2016 09:29:48 PM,03/19/2016 09:33:11 PM,03/19/2016 09:38:23 PM,03/19/2016 09:48:21 PM,03/19/2016 10:18:48 PM,Code 2 Transport,03/19/2016 10:35:24 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",160793879-AM22 +121210184,E37,12040185,Alarms,04/30/2012,04/30/2012,04/30/2012 01:44:43 PM,04/30/2012 01:46:44 PM,04/30/2012 01:47:33 PM,04/30/2012 01:48:50 PM,04/30/2012 01:50:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 02:01:27 PM,600 Block of TEXAS ST,SF,94107,B10,37,2541,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7582036208434, -122.395067693235)",121210184-E37 +131490155,KM04,13050491,Medical Incident,05/29/2013,05/29/2013,05/29/2013 11:57:19 AM,05/29/2013 11:58:48 AM,05/29/2013 11:59:42 AM,05/29/2013 12:00:30 PM,05/29/2013 12:13:12 PM,04/25/2016 01:52:33 PM,04/25/2016 01:52:33 PM,Other,05/29/2013 12:13:27 PM,MARKET ST/7TH ST,SF,94103,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",131490155-KM04 +160881065,56,16034883,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:37:09 AM,03/28/2016 09:38:02 AM,03/28/2016 09:38:19 AM,03/28/2016 09:38:29 AM,03/28/2016 09:46:35 AM,03/28/2016 09:58:03 AM,03/28/2016 10:22:55 AM,Code 2 Transport,03/28/2016 10:53:35 AM,100 Block of THRIFT ST,San Francisco,94112,B09,33,8465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7174111105122, -122.45758260608)",160881065-56 +111070062,E03,11035296,Alarms,04/17/2011,04/16/2011,04/17/2011 05:18:05 AM,04/17/2011 05:19:10 AM,04/17/2011 05:19:16 AM,04/17/2011 05:20:46 AM,04/17/2011 05:23:10 AM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 05:27:40 AM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7867689878846, -122.416612241888)",111070062-E03 +120170346,83,12005849,Medical Incident,01/17/2012,01/17/2012,01/17/2012 09:58:49 PM,01/17/2012 10:01:56 PM,01/17/2012 10:02:08 PM,01/17/2012 10:02:20 PM,01/17/2012 10:22:17 PM,01/17/2012 10:32:28 PM,04/25/2016 02:00:35 PM,No Merit,01/17/2012 11:00:24 PM,600 Block of FRANCISCO ST,SF,94133,B01,28,1434,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8044727215137, -122.415562636307)",120170346-83 +160021244,74,16000704,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:21:46 AM,01/02/2016 11:23:48 AM,01/02/2016 11:24:42 AM,01/02/2016 11:25:05 AM,01/02/2016 11:28:54 AM,01/02/2016 11:45:49 AM,01/02/2016 11:52:08 AM,Code 2 Transport,01/02/2016 12:23:05 PM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",160021244-74 +132430370,T13,13082152,Outside Fire,08/31/2013,08/31/2013,08/31/2013 09:52:46 PM,08/31/2013 09:52:47 PM,08/31/2013 09:53:09 PM,08/31/2013 09:54:22 PM,04/25/2016 01:51:01 PM,04/25/2016 01:51:01 PM,04/25/2016 01:51:01 PM,Other,08/31/2013 09:57:28 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",132430370-T13 +111300081,67,11042892,Traffic Collision,05/10/2011,05/10/2011,05/10/2011 08:34:19 AM,05/10/2011 08:39:53 AM,05/10/2011 08:40:49 AM,05/10/2011 08:45:26 AM,04/25/2016 02:04:42 PM,05/10/2011 09:28:15 AM,05/10/2011 10:00:28 AM,Other,05/10/2011 11:28:17 AM,MARTIN LUTHER KING DR/25TH AV,SF,94122,B08,22,7452,2,2,2,true,,1,MEDIC,5,7,1,Golden Gate Park,"(37.76677018548, -122.482371855409)",111300081-67 +160250646,55,16009813,Medical Incident,01/25/2016,01/24/2016,01/25/2016 07:26:17 AM,01/25/2016 07:29:11 AM,01/25/2016 07:33:11 AM,01/25/2016 07:33:18 AM,01/25/2016 07:48:07 AM,01/25/2016 08:16:59 AM,01/25/2016 08:36:48 AM,Code 2 Transport,01/25/2016 09:22:16 AM,300 Block of WINFIELD ST,San Francisco,94110,B06,32,5654,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7406338647579, -122.419932449492)",160250646-55 +121860008,87,12061815,Medical Incident,07/04/2012,07/03/2012,07/04/2012 12:22:10 AM,07/04/2012 12:22:21 AM,07/04/2012 12:22:59 AM,07/04/2012 12:23:06 AM,07/04/2012 12:39:00 AM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,No Merit,07/04/2012 12:44:02 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",121860008-87 +130140182,KM02,13004772,Medical Incident,01/14/2013,01/14/2013,01/14/2013 12:01:49 PM,01/14/2013 12:02:36 PM,01/14/2013 12:03:24 PM,01/14/2013 12:04:05 PM,01/14/2013 12:07:32 PM,01/14/2013 12:26:49 PM,01/14/2013 12:31:10 PM,Code 2 Transport,01/14/2013 01:01:04 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",130140182-KM02 +120040126,95,12001352,Medical Incident,01/04/2012,01/04/2012,01/04/2012 10:32:46 AM,01/04/2012 10:33:35 AM,01/04/2012 10:33:54 AM,04/25/2016 02:00:47 PM,01/04/2012 10:35:44 AM,01/04/2012 10:45:36 AM,01/04/2012 10:59:16 AM,Code 2 Transport,01/04/2012 11:22:48 AM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7619675295768, -122.417178937573)",120040126-95 +102970194,B02,10094764,Alarms,10/24/2010,10/24/2010,10/24/2010 10:53:44 AM,10/24/2010 10:55:41 AM,10/24/2010 10:56:36 AM,10/24/2010 10:57:39 AM,10/24/2010 11:05:16 AM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 11:07:03 AM,2600 Block of FRANKLIN ST,SF,94123,B04,16,3233,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.7988009211892, -122.425787869807)",102970194-B02 +130530190,E03,13017913,Medical Incident,02/22/2013,02/22/2013,02/22/2013 01:01:38 PM,02/22/2013 01:02:27 PM,02/22/2013 01:04:19 PM,04/25/2016 01:54:10 PM,02/22/2013 01:04:56 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Patient Declined Transport,02/22/2013 01:17:37 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",130530190-E03 +122570266,RC3,12085029,Medical Incident,09/13/2012,09/13/2012,09/13/2012 06:04:18 PM,09/13/2012 06:04:58 PM,09/13/2012 06:05:31 PM,09/13/2012 06:06:30 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/13/2012 06:08:46 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",122570266-RC3 +133420399,E31,13116154,Structure Fire,12/08/2013,12/08/2013,12/08/2013 10:57:11 PM,12/08/2013 10:57:12 PM,12/08/2013 10:57:28 PM,12/08/2013 10:58:42 PM,12/08/2013 10:59:43 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/08/2013 11:00:01 PM,9TH AV/BALBOA ST,SF,94118,B07,31,7134,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7770878590645, -122.467220402796)",133420399-E31 +121150320,E28,12038267,Alarms,04/24/2012,04/24/2012,04/24/2012 09:26:05 PM,04/24/2012 09:28:59 PM,04/24/2012 09:29:24 PM,04/24/2012 09:29:56 PM,04/24/2012 09:32:25 PM,04/25/2016 01:59:01 PM,04/25/2016 01:59:01 PM,Other,04/24/2012 09:46:39 PM,2100 Block of TAYLOR ST,SF,94133,B01,28,1435,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.8021635809782, -122.414518425213)",121150320-E28 +102350179,T05,10073943,Alarms,08/23/2010,08/23/2010,08/23/2010 12:49:34 PM,08/23/2010 12:51:07 PM,08/23/2010 12:51:17 PM,08/23/2010 12:55:50 PM,08/23/2010 12:55:52 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 01:00:15 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",102350179-T05 +120300214,E41,12010022,Citizen Assist / Service Call,01/30/2012,01/30/2012,01/30/2012 03:22:00 PM,01/30/2012 03:24:43 PM,01/30/2012 03:24:51 PM,01/30/2012 03:25:39 PM,01/30/2012 03:27:22 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Fire,01/30/2012 03:41:04 PM,0 Block of FLORENCE ST,SF,94133,B01,41,1512,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.79744733744, -122.414804526986)",120300214-E41 +140680120,B10,14022954,Structure Fire,03/09/2014,03/09/2014,03/09/2014 10:50:39 AM,03/09/2014 10:51:44 AM,03/09/2014 10:54:13 AM,03/09/2014 10:54:13 AM,03/09/2014 10:55:06 AM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Fire,03/09/2014 11:43:21 AM,2700 Block of 24TH ST,SAN FRANCISCO,94110,B06,9,5531,3,3,3,false,Fire,1,CHIEF,5,6,9,Mission,"(37.7529342790976, -122.407745321325)",140680120-B10 +140630288,E28,14021361,Alarms,03/04/2014,03/04/2014,03/04/2014 04:41:35 PM,03/04/2014 04:43:10 PM,03/04/2014 04:43:14 PM,03/04/2014 04:44:10 PM,03/04/2014 04:46:09 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 04:54:46 PM,1000 Block of UNION ST,SF,94133,B01,28,1513,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.7995166094732, -122.416115614367)",140630288-E28 +111630248,E36,11053882,Medical Incident,06/12/2011,06/12/2011,06/12/2011 06:15:13 PM,06/12/2011 06:16:09 PM,06/12/2011 06:17:41 PM,06/12/2011 06:18:07 PM,06/12/2011 06:18:56 PM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,No Merit,06/12/2011 06:35:16 PM,1600 Block of MARKET ST,SF,94102,B02,36,3311,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7734563328786, -122.421591110968)",111630248-E36 +123400345,58,12113551,Traffic Collision,12/05/2012,12/05/2012,12/05/2012 07:07:12 PM,12/05/2012 07:08:49 PM,12/05/2012 07:09:04 PM,12/05/2012 07:09:12 PM,12/05/2012 07:11:55 PM,12/05/2012 07:27:56 PM,12/05/2012 07:56:28 PM,Code 2 Transport,12/05/2012 08:16:15 PM,LEAVENWORTH ST/ELLIS ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",123400345-58 +160760431,AM02,16030004,Medical Incident,03/16/2016,03/15/2016,03/16/2016 05:33:23 AM,03/16/2016 05:35:11 AM,03/16/2016 05:37:21 AM,03/16/2016 05:38:49 AM,03/16/2016 05:44:13 AM,03/16/2016 06:10:43 AM,03/16/2016 06:20:04 AM,Code 3 Transport,03/16/2016 07:33:06 AM,1500 Block of INNES AVE,San Francisco,94124,B10,25,6532,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7388457005863, -122.387938322138)",160760431-AM02 +121970344,T11,12065658,Structure Fire,07/15/2012,07/15/2012,07/15/2012 11:34:43 PM,07/15/2012 11:35:30 PM,07/15/2012 11:36:04 PM,07/15/2012 11:38:19 PM,07/15/2012 11:42:27 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 12:16:31 AM,200 Block of NEY ST,SF,94112,B09,32,5682,3,3,3,false,Fire,1,TRUCK,3,9,11,Excelsior,"(37.7301647306275, -122.424431106443)",121970344-T11 +160133071,68,16005286,Medical Incident,01/13/2016,01/13/2016,01/13/2016 05:25:39 PM,01/13/2016 05:27:05 PM,01/13/2016 05:27:34 PM,01/13/2016 05:27:52 PM,01/13/2016 05:36:39 PM,01/13/2016 06:01:39 PM,01/13/2016 06:17:33 PM,Code 2 Transport,01/13/2016 06:49:32 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160133071-68 +130520013,75,13017438,Medical Incident,02/21/2013,02/20/2013,02/21/2013 12:48:36 AM,02/21/2013 12:52:47 AM,02/21/2013 12:53:06 AM,02/21/2013 12:53:16 AM,02/21/2013 01:02:24 AM,02/21/2013 01:04:29 AM,02/21/2013 01:10:55 AM,Other,02/21/2013 01:28:23 AM,1ST ST/MARKET ST,SF,94105,B03,13,2143,1,1,2,true,Non Life-threatening,1,MEDIC,2,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",130520013-75 +140600270,E28,14020333,Medical Incident,03/01/2014,03/01/2014,03/01/2014 05:02:58 PM,03/01/2014 05:04:10 PM,03/01/2014 05:04:49 PM,03/01/2014 05:05:32 PM,03/01/2014 05:07:01 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Code 2 Transport,03/01/2014 05:31:09 PM,600 Block of UNION ST,SF,94133,B01,28,1334,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8003260482415, -122.40968720575)",140600270-E28 +160280359,85,16010955,Medical Incident,01/28/2016,01/27/2016,01/28/2016 04:37:34 AM,01/28/2016 04:41:11 AM,01/28/2016 04:41:41 AM,01/28/2016 04:41:53 AM,01/28/2016 04:47:14 AM,01/28/2016 05:07:43 AM,01/28/2016 05:10:33 AM,Code 2 Transport,01/28/2016 05:28:19 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",160280359-85 +113200259,E32,11106335,Medical Incident,11/16/2011,11/16/2011,11/16/2011 03:27:51 PM,11/16/2011 03:29:22 PM,11/16/2011 03:29:36 PM,11/16/2011 03:30:32 PM,11/16/2011 03:33:01 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 03:50:26 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",113200259-E32 +110490087,E36,11016108,Medical Incident,02/18/2011,02/18/2011,02/18/2011 08:08:50 AM,02/18/2011 08:09:16 AM,02/18/2011 08:09:54 AM,02/18/2011 08:11:20 AM,02/18/2011 08:13:06 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/18/2011 08:38:23 AM,9TH ST/MARKET ST,SF,94103,B02,1,2317,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",110490087-E36 +132060182,67,13069743,Medical Incident,07/25/2013,07/25/2013,07/25/2013 01:57:47 PM,07/25/2013 01:59:49 PM,07/25/2013 02:01:05 PM,07/25/2013 02:01:35 PM,04/25/2016 01:51:38 PM,07/25/2013 02:15:44 PM,07/25/2013 02:24:24 PM,Code 2 Transport,07/25/2013 02:51:33 PM,1200 Block of 19TH AVE,SF,94122,B08,22,7424,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,4,Inner Sunset,"(37.7645085780924, -122.477112517357)",132060182-67 +160462663,AM12,16018597,Medical Incident,02/15/2016,02/15/2016,02/15/2016 05:07:12 PM,02/15/2016 05:07:52 PM,02/15/2016 05:08:54 PM,02/15/2016 05:10:10 PM,02/15/2016 05:11:41 PM,02/15/2016 05:32:21 PM,02/15/2016 05:37:50 PM,Code 2 Transport,02/15/2016 06:20:59 PM,600 Block of 6TH AVE,San Francisco,94118,B07,31,7123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7763050234828, -122.463873976155)",160462663-AM12 +140920209,T17,14030931,Medical Incident,04/02/2014,04/02/2014,04/02/2014 01:13:00 PM,04/02/2014 01:14:03 PM,04/02/2014 01:15:48 PM,04/02/2014 01:15:48 PM,04/02/2014 01:17:46 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,No Merit,04/02/2014 01:18:16 PM,1400 Block of NEWCOMB AVE,SAN FRANCISCO,94124,B10,17,6516,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",140920209-T17 +133640097,AM16,13123528,Medical Incident,12/30/2013,12/30/2013,12/30/2013 08:21:17 AM,12/30/2013 08:23:20 AM,12/30/2013 08:25:58 AM,12/30/2013 08:26:31 AM,12/30/2013 08:40:00 AM,12/30/2013 09:07:50 AM,12/30/2013 09:24:36 AM,Code 2 Transport,12/30/2013 09:57:40 AM,0 Block of SKYVIEW WAY,SF,94131,B08,20,5352,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7493307598868, -122.450432551712)",133640097-AM16 +102900042,T09,10092397,Structure Fire,10/17/2010,10/16/2010,10/17/2010 02:42:30 AM,10/17/2010 02:42:31 AM,10/17/2010 02:42:42 AM,10/17/2010 02:44:16 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 02:47:10 AM,HUNTERS POINT BL/EVANS AV,SF,94124,B10,25,6555,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.736712152386, -122.377404251731)",102900042-T09 +132930072,E21,13099628,Medical Incident,10/20/2013,10/19/2013,10/20/2013 07:01:47 AM,10/20/2013 07:03:38 AM,10/20/2013 07:05:13 AM,10/20/2013 07:07:29 AM,10/20/2013 07:09:31 AM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/20/2013 07:17:55 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",132930072-E21 +131040223,E21,13034954,Medical Incident,04/14/2013,04/14/2013,04/14/2013 01:53:55 PM,04/14/2013 01:55:02 PM,04/14/2013 01:55:21 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/25/2016 01:53:19 PM,8TH AV/JOHN F KENNEDY DR,SF,94122,B07,31,7111,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7726085222072, -122.465824685868)",131040223-E21 +131180308,T14,13039807,Structure Fire,04/28/2013,04/28/2013,04/28/2013 07:04:57 PM,04/28/2013 07:06:41 PM,04/28/2013 07:07:06 PM,04/28/2013 07:09:19 PM,04/28/2013 07:12:16 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/28/2013 07:18:45 PM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,false,Alarm,1,TRUCK,4,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",131180308-T14 +120230228,T03,12007831,Alarms,01/23/2012,01/23/2012,01/23/2012 03:00:13 PM,01/23/2012 03:02:26 PM,01/23/2012 03:02:37 PM,01/23/2012 03:04:26 PM,01/23/2012 03:05:38 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 03:08:51 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",120230228-T03 +160251612,56,16009914,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:02:46 PM,01/25/2016 12:06:16 PM,01/25/2016 12:06:29 PM,01/25/2016 12:06:56 PM,01/25/2016 12:16:05 PM,01/25/2016 12:26:37 PM,01/25/2016 12:47:33 PM,Code 2 Transport,01/25/2016 01:28:43 PM,0 Block of DIAZ AVE,San Francisco,94132,B08,19,8424,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7181624969759, -122.476290287585)",160251612-56 +131480254,E36,13050226,Medical Incident,05/28/2013,05/28/2013,05/28/2013 02:51:44 PM,05/28/2013 02:52:27 PM,05/28/2013 02:52:51 PM,05/28/2013 02:53:10 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/28/2013 02:53:50 PM,MARKET ST/7TH ST,SF,94103,B03,1,1455,2,2,2,false,Non Life-threatening,1,ENGINE,3,2,6,South of Market,"(37.7804785121736, -122.412512257219)",131480254-E36 +160622630,AM16,16024765,Medical Incident,03/02/2016,03/02/2016,03/02/2016 03:57:29 PM,03/02/2016 03:57:29 PM,03/02/2016 04:17:08 PM,03/02/2016 04:18:00 PM,03/02/2016 04:28:05 PM,03/02/2016 04:35:30 PM,03/02/2016 05:00:57 PM,Code 2 Transport,03/02/2016 05:18:12 PM,MARKET ST/15TH ST,San Francisco,94114,B02,6,5213,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,8,Castro/Upper Market,"(37.7660137310169, -122.430824395878)",160622630-AM16 +122420352,E22,12080195,Structure Fire,08/29/2012,08/29/2012,08/29/2012 10:12:05 PM,08/29/2012 10:13:28 PM,08/29/2012 10:13:36 PM,08/29/2012 10:16:37 PM,08/29/2012 10:20:52 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/29/2012 10:21:45 PM,400 Block of 24TH AVE,SF,94121,B07,14,7175,3,3,3,false,Fire,1,ENGINE,6,7,1,Outer Richmond,"(37.7811066581474, -122.483801924911)",122420352-E22 +130780033,E33,13025906,Odor (Strange / Unknown),03/19/2013,03/18/2013,03/19/2013 03:01:31 AM,03/19/2013 03:03:50 AM,03/19/2013 03:04:10 AM,03/19/2013 03:06:34 AM,03/19/2013 03:09:11 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 03:11:58 AM,CAPITOL AV/THRIFT ST,SF,94112,B09,33,8373,3,3,3,true,Alarm,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7174547388771, -122.459072288803)",130780033-E33 +132380392,E13,13080475,Medical Incident,08/26/2013,08/26/2013,08/26/2013 10:06:11 PM,08/26/2013 10:08:15 PM,08/26/2013 10:08:43 PM,08/26/2013 10:10:33 PM,08/26/2013 10:12:14 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 10:29:47 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",132380392-E13 +110960287,E05,11031926,Structure Fire,04/06/2011,04/06/2011,04/06/2011 06:06:25 PM,04/06/2011 06:07:06 PM,04/06/2011 06:07:39 PM,04/06/2011 06:08:48 PM,04/06/2011 06:10:30 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/06/2011 06:17:26 PM,1200 Block of STEINER ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,3,5,5,Western Addition,"(37.7807440381763, -122.433947180627)",110960287-E05 +160323859,88,16012790,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:13:49 PM,02/01/2016 11:16:38 PM,02/01/2016 11:16:50 PM,02/01/2016 11:17:03 PM,02/01/2016 11:24:38 PM,02/01/2016 11:32:31 PM,02/01/2016 11:46:42 PM,Code 2 Transport,02/02/2016 12:16:14 AM,400 Block of 39TH AVE,San Francisco,94121,B07,34,7256,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7803684793126, -122.499731430722)",160323859-88 +130500138,93,13016971,Medical Incident,02/19/2013,02/19/2013,02/19/2013 01:11:18 PM,02/19/2013 01:11:47 PM,02/19/2013 01:12:01 PM,02/19/2013 01:12:12 PM,02/19/2013 01:14:09 PM,02/19/2013 02:09:23 PM,02/19/2013 02:09:57 PM,Code 2 Transport,02/19/2013 02:14:01 PM,1500 Block of GREENWICH ST,SF,94123,B04,16,3234,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8002564054218, -122.425169010729)",130500138-93 +160310551,72,16012072,Medical Incident,01/31/2016,01/30/2016,01/31/2016 04:25:30 AM,01/31/2016 04:25:30 AM,01/31/2016 04:26:15 AM,01/31/2016 04:28:11 AM,01/31/2016 04:30:27 AM,01/31/2016 05:05:40 AM,01/31/2016 05:09:28 AM,Code 2 Transport,01/31/2016 05:54:35 AM,GEARY BL/SCOTT ST,San Francisco,94115,B04,5,3645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7837176369493, -122.437847942301)",160310551-72 +102570045,81,10081093,Medical Incident,09/14/2010,09/13/2010,09/14/2010 06:46:17 AM,09/14/2010 06:49:56 AM,09/14/2010 06:50:57 AM,04/25/2016 02:08:36 PM,09/14/2010 06:53:15 AM,09/14/2010 07:46:44 AM,09/14/2010 07:46:58 AM,Code 2 Transport,09/14/2010 07:47:08 AM,1500 Block of BROADWAY,SF,94109,B04,41,3152,3,3,3,true,,1,MEDIC,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",102570045-81 +122210171,KM04,12073257,Medical Incident,08/08/2012,08/08/2012,08/08/2012 12:17:24 PM,08/08/2012 12:18:27 PM,08/08/2012 12:18:38 PM,08/08/2012 12:19:25 PM,08/08/2012 12:20:56 PM,08/08/2012 12:27:49 PM,08/08/2012 12:33:50 PM,Code 2 Transport,08/08/2012 12:56:13 PM,1300 Block of POLK ST,SF,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7893840503369, -122.420515681408)",122210171-KM04 +131240403,E03,13042007,Medical Incident,05/04/2013,05/04/2013,05/04/2013 08:39:29 PM,05/04/2013 08:41:24 PM,05/04/2013 08:42:12 PM,05/04/2013 08:43:09 PM,05/04/2013 08:49:25 PM,04/25/2016 01:52:58 PM,04/25/2016 01:52:58 PM,Other,05/04/2013 08:50:52 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",131240403-E03 +120820209,AM06,12027242,Traffic Collision,03/22/2012,03/22/2012,03/22/2012 02:25:32 PM,03/22/2012 02:26:59 PM,03/22/2012 02:29:34 PM,03/22/2012 02:30:21 PM,03/22/2012 02:34:22 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,No Merit,03/22/2012 02:38:47 PM,9TH ST/DIVISION ST,SF,94103,B03,29,2331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7694625463697, -122.406213364615)",120820209-AM06 +110370340,E05,11012340,Medical Incident,02/06/2011,02/06/2011,02/06/2011 06:32:18 PM,02/06/2011 06:34:25 PM,02/06/2011 06:35:38 PM,02/06/2011 06:45:11 PM,02/06/2011 06:48:02 PM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/06/2011 07:03:47 PM,1700 Block of EDDY ST,SF,94115,B05,5,4133,2,2,2,true,,1,ENGINE,2,5,5,Western Addition,"(37.7809598043894, -122.436449035039)",110370340-E05 +123440205,94,12115005,Medical Incident,12/09/2012,12/09/2012,12/09/2012 01:21:29 PM,12/09/2012 01:23:05 PM,12/09/2012 01:23:42 PM,12/09/2012 01:23:51 PM,12/09/2012 01:44:48 PM,12/09/2012 02:07:28 PM,12/09/2012 02:24:44 PM,Code 2 Transport,12/09/2012 02:51:30 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123440205-94 +122100281,T13,12069848,Alarms,07/28/2012,07/28/2012,07/28/2012 06:44:04 PM,07/28/2012 06:45:50 PM,07/28/2012 06:46:25 PM,07/28/2012 06:50:12 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 06:58:10 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",122100281-T13 +122930096,T16,12097066,Alarms,10/19/2012,10/18/2012,10/19/2012 07:45:50 AM,10/19/2012 07:47:13 AM,10/19/2012 07:47:19 AM,10/19/2012 07:49:02 AM,10/19/2012 07:53:12 AM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 08:00:23 AM,2100 Block of BROADWAY,SF,94123,B04,38,3464,3,3,3,false,Alarm,1,TRUCK,2,4,2,Pacific Heights,"(37.7946334153717, -122.432465079407)",122930096-T16 +121460355,79,12048619,Medical Incident,05/25/2012,05/25/2012,05/25/2012 10:32:51 PM,05/25/2012 10:35:18 PM,05/25/2012 10:37:16 PM,04/25/2016 01:58:31 PM,05/25/2012 10:41:56 PM,05/25/2012 10:52:10 PM,05/25/2012 10:59:27 PM,Code 2 Transport,05/25/2012 11:13:01 PM,100 Block of FELL ST,SF,94102,B02,36,3213,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7762095925877, -122.420316347942)",121460355-79 +111630030,E03,11053691,Structure Fire,06/12/2011,06/11/2011,06/12/2011 01:35:52 AM,06/12/2011 01:35:52 AM,06/12/2011 01:37:59 AM,06/12/2011 01:40:16 AM,06/12/2011 01:41:40 AM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Fire,06/12/2011 01:44:14 AM,900 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",111630030-E03 +130210049,E01,13007146,Medical Incident,01/21/2013,01/20/2013,01/21/2013 03:00:04 AM,01/21/2013 03:00:32 AM,01/21/2013 03:02:46 AM,01/21/2013 03:04:09 AM,01/21/2013 03:08:08 AM,04/25/2016 01:54:42 PM,04/25/2016 01:54:42 PM,Other,01/21/2013 03:19:19 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",130210049-E01 +120460122,AM06,12015250,Alarms,02/15/2012,02/15/2012,02/15/2012 10:47:33 AM,02/15/2012 10:48:26 AM,02/15/2012 10:49:11 AM,02/15/2012 10:53:48 AM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 10:58:30 AM,4000 Block of MISSION ST,SF,94112,B06,32,5633,3,3,3,false,Alarm,1,PRIVATE,4,9,8,Outer Mission,"(37.7322426255479, -122.4279021087)",120460122-AM06 +160880587,85,16034834,Medical Incident,03/28/2016,03/27/2016,03/28/2016 07:08:42 AM,03/28/2016 07:08:42 AM,03/28/2016 07:10:25 AM,03/28/2016 07:10:45 AM,03/28/2016 07:22:47 AM,03/28/2016 07:24:25 AM,03/28/2016 07:52:18 AM,Code 2 Transport,03/28/2016 08:31:30 AM,POLK ST/MCALLISTER ST,San Francisco,94102,B02,3,3113,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",160880587-85 +112880287,T15,11095629,Structure Fire,10/15/2011,10/15/2011,10/15/2011 06:19:00 PM,10/15/2011 06:19:00 PM,10/15/2011 06:19:11 PM,10/15/2011 06:20:20 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/15/2011 06:21:53 PM,PARIS ST/RUSSIA AV,SF,94112,B09,43,6126,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7208271455735, -122.435584713371)",112880287-T15 +110870015,89,11028578,Medical Incident,03/28/2011,03/27/2011,03/28/2011 01:00:48 AM,03/28/2011 01:02:31 AM,03/28/2011 01:03:48 AM,03/28/2011 01:04:19 AM,03/28/2011 01:15:48 AM,03/28/2011 01:23:28 AM,03/28/2011 02:01:16 AM,Code 2 Transport,03/28/2011 02:27:57 AM,NEW MONTGOMERY ST/MISSION ST,SF,94105,B01,1,2145,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",110870015-89 +121900215,KM12,12063335,Medical Incident,07/08/2012,07/08/2012,07/08/2012 03:39:21 PM,07/08/2012 03:41:56 PM,07/08/2012 03:47:04 PM,07/08/2012 03:49:27 PM,07/08/2012 04:01:13 PM,07/08/2012 04:20:41 PM,07/08/2012 04:32:33 PM,Code 2 Transport,07/08/2012 04:59:47 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",121900215-KM12 +160851815,86,16033779,Medical Incident,03/25/2016,03/25/2016,03/25/2016 12:59:13 PM,03/25/2016 01:01:51 PM,03/25/2016 01:26:18 PM,03/25/2016 01:27:27 PM,03/25/2016 01:55:11 PM,03/25/2016 01:55:13 PM,03/25/2016 02:16:59 PM,Code 2 Transport,03/25/2016 02:45:35 PM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",160851815-86 +112870439,59,11095369,Medical Incident,10/14/2011,10/14/2011,10/14/2011 11:29:02 PM,10/14/2011 11:29:37 PM,10/14/2011 11:30:01 PM,10/14/2011 11:30:19 PM,10/14/2011 11:39:26 PM,10/15/2011 12:08:44 AM,10/15/2011 12:22:09 AM,Code 2 Transport,10/15/2011 01:00:58 AM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7345707092334, -122.391831743022)",112870439-59 +102430291,83,10076718,Medical Incident,08/31/2010,08/31/2010,08/31/2010 04:24:07 PM,08/31/2010 04:24:50 PM,08/31/2010 04:25:21 PM,08/31/2010 04:26:26 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,04/25/2016 02:08:48 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,E,3,true,,1,MEDIC,4,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",102430291-83 +160223426,65,16008922,Medical Incident,01/22/2016,01/22/2016,01/22/2016 08:23:24 PM,01/22/2016 08:25:17 PM,01/22/2016 08:25:40 PM,01/22/2016 08:25:50 PM,01/22/2016 08:33:26 PM,01/22/2016 08:53:19 PM,01/22/2016 09:28:28 PM,Code 2 Transport,01/22/2016 09:50:53 PM,3100 Block of 24TH ST,San Francisco,94110,B06,7,5526,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7524180928571, -122.414623849785)",160223426-65 +131960332,E16,13066665,Medical Incident,07/15/2013,07/15/2013,07/15/2013 10:38:08 PM,07/15/2013 10:38:55 PM,07/15/2013 10:39:16 PM,07/15/2013 10:41:02 PM,07/15/2013 10:42:22 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 10:57:49 PM,3300 Block of SCOTT ST,SF,94123,B04,16,4114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.800666721108, -122.441204489098)",131960332-E16 +132550152,AM16,13086158,Medical Incident,09/12/2013,09/12/2013,09/12/2013 11:28:39 AM,09/12/2013 11:29:36 AM,09/12/2013 11:29:53 AM,09/12/2013 11:30:51 AM,09/12/2013 11:35:36 AM,09/12/2013 11:55:52 AM,09/12/2013 12:12:42 PM,Code 2 Transport,09/12/2013 01:01:37 PM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,3,2,2,false,Non Life-threatening,1,PRIVATE,3,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",132550152-AM16 +132160306,B03,13073100,Alarms,08/04/2013,08/04/2013,08/04/2013 08:12:47 PM,08/04/2013 08:14:34 PM,08/04/2013 08:14:53 PM,08/04/2013 08:16:15 PM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/04/2013 08:23:13 PM,600 Block of COMMERCIAL ST,SF,94111,B01,13,1233,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",132160306-B03 +160463773,KM03,16018717,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:10:54 PM,02/15/2016 10:13:02 PM,02/15/2016 10:13:43 PM,02/15/2016 10:14:10 PM,02/15/2016 10:24:42 PM,02/15/2016 10:38:27 PM,02/15/2016 10:51:19 PM,Code 2 Transport,02/15/2016 11:35:20 PM,1000 Block of NOE ST,San Francisco,94114,B06,11,5522,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",160463773-KM03 +160480240,85,16019200,Medical Incident,02/17/2016,02/16/2016,02/17/2016 02:36:18 AM,02/17/2016 02:36:18 AM,02/17/2016 02:36:44 AM,02/17/2016 02:37:18 AM,02/17/2016 02:40:53 AM,02/17/2016 02:51:35 AM,02/17/2016 03:01:07 AM,Code 3 Transport,02/17/2016 03:54:10 AM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",160480240-85 +130530315,72,13018021,Medical Incident,02/22/2013,02/22/2013,02/22/2013 06:49:02 PM,02/22/2013 06:49:47 PM,02/22/2013 06:50:09 PM,02/22/2013 06:50:21 PM,02/22/2013 06:58:05 PM,02/22/2013 07:13:02 PM,02/22/2013 07:46:43 PM,Code 3 Transport,02/22/2013 08:09:57 PM,300 Block of RUSSIA AVE,SF,94112,B09,43,6126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7203009310959, -122.434349394708)",130530315-72 +160880373,89,16034813,Medical Incident,03/28/2016,03/27/2016,03/28/2016 04:32:14 AM,03/28/2016 04:32:59 AM,03/28/2016 04:33:19 AM,03/28/2016 04:33:40 AM,03/28/2016 04:42:40 AM,03/28/2016 04:58:33 AM,03/28/2016 05:12:38 AM,Code 2 Transport,03/28/2016 05:36:04 AM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160880373-89 +160710245,65,16028070,Medical Incident,03/11/2016,03/10/2016,03/11/2016 02:17:03 AM,03/11/2016 02:17:38 AM,03/11/2016 02:18:29 AM,03/11/2016 02:18:36 AM,03/11/2016 02:26:29 AM,03/11/2016 02:26:30 AM,03/11/2016 02:42:23 AM,Code 2 Transport,03/11/2016 03:28:40 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160710245-65 diff --git a/java/kafka-avro/src/main/resources/com/whylogs/examples/lending_club_1000.csv b/java/kafka-avro/src/main/resources/com/whylogs/examples/lending_club_1000.csv new file mode 100644 index 0000000..aadea52 --- /dev/null +++ b/java/kafka-avro/src/main/resources/com/whylogs/examples/lending_club_1000.csv @@ -0,0 +1,1001 @@ +id,member_id,loan_amnt,funded_amnt,funded_amnt_inv,term,int_rate,installment,grade,sub_grade,emp_title,emp_length,home_ownership,annual_inc,verification_status,issue_d,loan_status,pymnt_plan,url,desc,purpose,title,zip_code,addr_state,dti,delinq_2yrs,earliest_cr_line,fico_range_low,fico_range_high,inq_last_6mths,mths_since_last_delinq,mths_since_last_record,open_acc,pub_rec,revol_bal,revol_util,total_acc,initial_list_status,out_prncp,out_prncp_inv,total_pymnt,total_pymnt_inv,total_rec_prncp,total_rec_int,total_rec_late_fee,recoveries,collection_recovery_fee,last_pymnt_d,last_pymnt_amnt,next_pymnt_d,last_credit_pull_d,last_fico_range_high,last_fico_range_low,collections_12_mths_ex_med,mths_since_last_major_derog,policy_code,application_type,annual_inc_joint,dti_joint,verification_status_joint,acc_now_delinq,tot_coll_amt,tot_cur_bal,open_acc_6m,open_act_il,open_il_12m,open_il_24m,mths_since_rcnt_il,total_bal_il,il_util,open_rv_12m,open_rv_24m,max_bal_bc,all_util,total_rev_hi_lim,inq_fi,total_cu_tl,inq_last_12m,acc_open_past_24mths,avg_cur_bal,bc_open_to_buy,bc_util,chargeoff_within_12_mths,delinq_amnt,mo_sin_old_il_acct,mo_sin_old_rev_tl_op,mo_sin_rcnt_rev_tl_op,mo_sin_rcnt_tl,mort_acc,mths_since_recent_bc,mths_since_recent_bc_dlq,mths_since_recent_inq,mths_since_recent_revol_delinq,num_accts_ever_120_pd,num_actv_bc_tl,num_actv_rev_tl,num_bc_sats,num_bc_tl,num_il_tl,num_op_rev_tl,num_rev_accts,num_rev_tl_bal_gt_0,num_sats,num_tl_120dpd_2m,num_tl_30dpd,num_tl_90g_dpd_24m,num_tl_op_past_12m,pct_tl_nvr_dlq,percent_bc_gt_75,pub_rec_bankruptcies,tax_liens,tot_hi_cred_lim,total_bal_ex_mort,total_bc_limit,total_il_high_credit_limit,revol_bal_joint,sec_app_fico_range_low,sec_app_fico_range_high,sec_app_earliest_cr_line,sec_app_inq_last_6mths,sec_app_mort_acc,sec_app_open_acc,sec_app_revol_util,sec_app_open_act_il,sec_app_num_rev_accts,sec_app_chargeoff_within_12_mths,sec_app_collections_12_mths_ex_med,sec_app_mths_since_last_major_derog,hardship_flag,hardship_type,hardship_reason,hardship_status,deferral_term,hardship_amount,hardship_start_date,hardship_end_date,payment_plan_start_date,hardship_length,hardship_dpd,hardship_loan_status,orig_projected_additional_accrued_interest,hardship_payoff_balance_amount,hardship_last_payment_amount,disbursement_method,debt_settlement_flag,debt_settlement_flag_date,settlement_status,settlement_date,settlement_amount,settlement_percentage,settlement_term +90671227,,4800.0,4800.0,4800.0, 36 months,13.49,162.87,C,C2,RN,< 1 year,RENT,41000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671227,,other,Other,658xx,MO,27.26,0.0,Jan-2011,675.0,679.0,0.0,24.0,,7.0,0.0,1924.0,52.0,12.0,w,0.0,0.0,797.78,797.78,219.04,103.1,0.0,475.64,85.6152,Dec-2016,162.87,,Jun-2017,499.0,0.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,32350.0,0.0,3.0,2.0,3.0,8.0,30426.0,82.0,0.0,1.0,1024.0,79.0,3700.0,3.0,1.0,2.0,4.0,5392.0,1313.0,47.5,0.0,0.0,58.0,68.0,14.0,8.0,0.0,31.0,,10.0,24.0,0.0,2.0,3.0,2.0,2.0,8.0,4.0,4.0,3.0,7.0,0.0,0.0,0.0,2.0,91.7,0.0,0.0,0.0,40876.0,32350.0,2500.0,37176.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90060135,,21600.0,21600.0,21600.0, 60 months,9.49,453.54,B,B2,Client Solutions Manager,2 years,RENT,72500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90060135,,debt_consolidation,Debt consolidation,904xx,CA,17.35,0.0,Jan-1997,705.0,709.0,0.0,37.0,,29.0,0.0,12024.0,29.5,39.0,w,0.0,0.0,25400.793917712203,25400.79,21600.0,3800.79,0.0,0.0,0.0,Jan-2019,13633.04,,Jan-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,274174.0,2.0,25.0,1.0,2.0,2.0,262150.0,113.0,2.0,2.0,5784.0,101.0,40700.0,0.0,1.0,0.0,4.0,9454.0,28676.0,29.5,0.0,0.0,236.0,146.0,5.0,2.0,0.0,5.0,37.0,,37.0,0.0,3.0,3.0,4.0,5.0,33.0,4.0,6.0,3.0,29.0,0.0,0.0,0.0,3.0,91.4,50.0,0.0,0.0,272565.0,274174.0,40700.0,231865.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501423,,24200.0,24200.0,24200.0, 36 months,9.49,775.09,B,B2,Associate Professor ,10+ years,RENT,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501423,,debt_consolidation,Debt consolidation,374xx,TN,14.71,0.0,Apr-1992,755.0,759.0,0.0,,,8.0,0.0,18213.0,40.7,20.0,w,0.0,0.0,25809.688873296,25809.69,24200.0,1609.69,0.0,0.0,0.0,Jul-2017,19621.73,,Jul-2017,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,28496.0,0.0,1.0,0.0,1.0,21.0,10283.0,59.0,0.0,0.0,18007.0,46.0,44800.0,0.0,3.0,0.0,1.0,4071.0,19087.0,48.8,0.0,0.0,163.0,293.0,28.0,21.0,0.0,28.0,,,,0.0,2.0,2.0,4.0,11.0,5.0,7.0,15.0,2.0,8.0,0.0,0.0,0.0,0.0,100.0,25.0,0.0,0.0,62184.0,28496.0,37300.0,17384.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186302,,3600.0,3600.0,3600.0, 36 months,11.49,118.7,B,B5,lpn,4 years,OWN,33000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186302,,debt_consolidation,Debt consolidation,707xx,LA,7.09,1.0,Mar-2006,660.0,664.0,1.0,23.0,,11.0,0.0,5413.0,58.8,14.0,w,799.83,799.83,3440.0,3440.0,2800.17,639.83,0.0,0.0,0.0,Mar-2019,118.7,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,173509.0,1.0,2.0,0.0,0.0,73.0,2263.0,44.0,1.0,3.0,1164.0,53.0,9200.0,2.0,0.0,3.0,4.0,19279.0,1325.0,47.0,0.0,0.0,126.0,90.0,1.0,1.0,1.0,51.0,,1.0,23.0,0.0,2.0,6.0,2.0,2.0,4.0,8.0,9.0,6.0,11.0,0.0,0.0,0.0,1.0,84.6,50.0,0.0,0.0,184278.0,7676.0,2500.0,5178.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90805192,,8000.0,8000.0,8000.0, 36 months,10.49,259.99,B,B3,Asst. Winemaker/ SE Sales ,7 years,RENT,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90805192,,credit_card,Credit card refinancing,971xx,OR,11.78,0.0,Jun-2000,670.0,674.0,0.0,,,7.0,0.0,8246.0,74.3,10.0,w,0.0,0.0,8003.04,8003.04,8000.0,3.04,0.0,0.0,0.0,Oct-2016,8007.7,,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,20353.0,0.0,1.0,0.0,0.0,29.0,12107.0,69.0,1.0,2.0,3231.0,71.0,11100.0,1.0,0.0,1.0,2.0,2908.0,505.0,93.9,0.0,0.0,29.0,195.0,7.0,7.0,0.0,7.0,,8.0,,0.0,4.0,5.0,4.0,7.0,1.0,6.0,9.0,5.0,7.0,0.0,0.0,0.0,1.0,90.0,100.0,0.0,0.0,28702.0,20353.0,8300.0,17602.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90905114,,4800.0,4800.0,4800.0, 36 months,10.99,157.13,B,B4,Administration Assistant ,3 years,RENT,38000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90905114,,debt_consolidation,Debt consolidation,945xx,CA,8.29,0.0,Apr-1986,680.0,684.0,1.0,73.0,28.0,16.0,1.0,8036.0,16.8,27.0,w,0.0,0.0,5115.5415042622,5115.54,4800.0,315.54,0.0,0.0,0.0,May-2017,4175.69,,Mar-2019,704.0,700.0,0.0,73.0,1.0,Individual,,,,0.0,315.0,8036.0,3.0,0.0,0.0,0.0,86.0,0.0,,4.0,6.0,2151.0,17.0,47700.0,1.0,1.0,4.0,6.0,618.0,27564.0,14.7,0.0,0.0,86.0,365.0,1.0,1.0,0.0,1.0,73.0,0.0,73.0,2.0,4.0,6.0,6.0,13.0,1.0,16.0,26.0,6.0,16.0,0.0,0.0,0.0,4.0,88.0,0.0,1.0,0.0,47700.0,8036.0,32300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521599,,5000.0,5000.0,5000.0, 36 months,13.99,170.87,C,C3,Vice President Finance,10+ years,MORTGAGE,241000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521599,,other,Other,078xx,NJ,30.84,0.0,Feb-1982,680.0,684.0,0.0,52.0,,12.0,0.0,249986.0,92.0,42.0,w,0.0,0.0,5676.1550630712,5676.16,5000.0,676.16,0.0,0.0,0.0,Nov-2017,3605.22,,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,616985.0,1.0,2.0,0.0,3.0,13.0,21174.0,81.0,1.0,2.0,17168.0,88.0,286900.0,2.0,0.0,3.0,6.0,51415.0,1564.0,95.6,0.0,0.0,137.0,415.0,0.0,0.0,3.0,0.0,52.0,10.0,52.0,1.0,6.0,7.0,6.0,19.0,11.0,8.0,27.0,7.0,12.0,0.0,0.0,0.0,2.0,79.5,83.3,0.0,0.0,670575.0,312774.0,35500.0,26000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491526,,14000.0,14000.0,14000.0, 60 months,14.49,329.33,C,C4,Office Mgr,10+ years,RENT,83000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491526,,debt_consolidation,Debt consolidation,146xx,NY,27.91,0.0,Mar-2004,690.0,694.0,1.0,34.0,,13.0,0.0,6295.0,21.4,18.0,w,8478.94,8478.94,9616.47,9616.47,5521.06,4062.47,32.94,0.0,0.0,Mar-2019,329.33,Apr-2019,Mar-2019,514.0,510.0,0.0,34.0,1.0,Individual,,,,0.0,0.0,145074.0,4.0,8.0,4.0,5.0,3.0,138779.0,109.0,2.0,3.0,3993.0,88.0,29400.0,0.0,0.0,3.0,8.0,11160.0,23105.0,21.4,0.0,0.0,150.0,104.0,3.0,3.0,0.0,3.0,,5.0,,1.0,5.0,5.0,5.0,5.0,12.0,5.0,6.0,5.0,13.0,0.0,0.0,0.0,6.0,83.3,0.0,0.0,0.0,154331.0,145074.0,29400.0,124931.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191902,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Accounting Rep,6 years,RENT,32000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191902,,debt_consolidation,Debt consolidation,347xx,FL,17.55,1.0,Apr-2001,660.0,664.0,0.0,19.0,,9.0,0.0,3941.0,25.1,16.0,w,0.0,0.0,1370.21,1370.21,915.49,454.72,0.0,0.0,0.0,Mar-2017,275.33,,Feb-2019,569.0,565.0,0.0,19.0,1.0,Individual,,,,0.0,708.0,14123.0,1.0,1.0,1.0,1.0,11.0,10182.0,81.0,3.0,5.0,1523.0,50.0,15700.0,0.0,0.0,2.0,6.0,1765.0,9398.0,27.7,0.0,0.0,11.0,185.0,3.0,3.0,2.0,3.0,,11.0,,2.0,4.0,5.0,4.0,7.0,1.0,8.0,13.0,5.0,9.0,0.0,0.0,1.0,4.0,93.3,0.0,0.0,0.0,28227.0,14123.0,13000.0,12527.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90238258,,9000.0,9000.0,9000.0, 36 months,7.59,280.33,A,A3,Machine operator ,3 years,MORTGAGE,40000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90238258,,other,Other,370xx,TN,21.63,0.0,Nov-1990,765.0,769.0,0.0,,,10.0,0.0,8963.0,17.5,21.0,f,0.0,0.0,9502.1917516829,9502.19,9000.0,502.19,0.0,0.0,0.0,Aug-2017,6983.02,,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,0.0,127951.0,1.0,1.0,0.0,1.0,19.0,9497.0,53.0,1.0,1.0,8590.0,27.0,51200.0,0.0,1.0,0.0,2.0,15994.0,36610.0,19.0,0.0,0.0,103.0,310.0,3.0,3.0,2.0,3.0,,,,0.0,1.0,3.0,4.0,9.0,3.0,8.0,16.0,3.0,10.0,0.0,0.0,0.0,1.0,95.2,0.0,0.0,0.0,189561.0,18460.0,45200.0,18000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90129116,,14850.0,14850.0,14850.0, 36 months,13.99,507.47,C,C3,,5 years,ANY,45000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90129116,,credit_card,Credit card refinancing,112xx,NY,30.25,0.0,Jun-2006,685.0,689.0,0.0,49.0,53.0,33.0,1.0,18732.0,26.6,46.0,w,2821.66,2821.66,15195.25,15195.25,12028.34,3166.91,0.0,0.0,0.0,Mar-2019,507.47,Apr-2019,Mar-2019,544.0,540.0,0.0,49.0,1.0,Individual,,,,0.0,0.0,47832.0,2.0,5.0,1.0,3.0,5.0,29100.0,89.0,8.0,22.0,3199.0,46.0,70500.0,1.0,4.0,1.0,25.0,1449.0,22661.0,34.1,0.0,0.0,107.0,123.0,4.0,4.0,0.0,10.0,,9.0,,0.0,9.0,18.0,9.0,10.0,14.0,28.0,32.0,18.0,33.0,0.0,0.0,0.0,9.0,89.1,11.1,0.0,0.0,103036.0,47832.0,34400.0,32536.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89874829,,36000.0,36000.0,36000.0, 60 months,15.59,867.63,C,C5,Principal,10+ years,OWN,150000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89874829,,debt_consolidation,Debt consolidation,128xx,NY,17.03,2.0,Sep-1994,710.0,714.0,1.0,22.0,,8.0,0.0,818.0,37.2,28.0,w,22023.65,22023.65,25083.32,25083.32,13976.35,11106.97,0.0,0.0,0.0,Mar-2019,867.63,Apr-2019,Mar-2019,704.0,700.0,0.0,22.0,1.0,Individual,,,,0.0,0.0,24355.0,3.0,3.0,2.0,2.0,1.0,23537.0,53.0,1.0,1.0,818.0,52.0,2200.0,2.0,2.0,14.0,3.0,4059.0,1182.0,40.9,0.0,0.0,264.0,264.0,1.0,1.0,4.0,1.0,22.0,2.0,22.0,3.0,1.0,1.0,3.0,11.0,8.0,5.0,16.0,1.0,8.0,0.0,0.0,1.0,3.0,84.0,0.0,0.0,0.0,46516.0,24355.0,2000.0,44316.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90661432,,4000.0,4000.0,4000.0, 36 months,7.59,124.6,A,A3,Clinical Practive Specialist,10+ years,MORTGAGE,78000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661432,,debt_consolidation,Debt consolidation,065xx,CT,11.29,0.0,May-1984,745.0,749.0,0.0,30.0,,26.0,0.0,9607.0,15.3,39.0,w,850.17,850.17,3611.71,3611.71,3149.83,461.88,0.0,0.0,0.0,Mar-2019,124.6,Apr-2019,Mar-2019,799.0,795.0,0.0,45.0,1.0,Individual,,,,0.0,0.0,364297.0,0.0,3.0,1.0,2.0,12.0,11487.0,42.0,1.0,3.0,5936.0,24.0,62700.0,0.0,0.0,2.0,6.0,18215.0,42539.0,13.9,0.0,0.0,165.0,388.0,10.0,10.0,5.0,10.0,31.0,11.0,30.0,1.0,2.0,6.0,7.0,8.0,3.0,19.0,28.0,6.0,26.0,0.0,0.0,0.0,3.0,87.2,0.0,0.0,0.0,440329.0,21119.0,49400.0,27256.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724303,,3000.0,3000.0,3000.0, 36 months,13.99,102.52,C,C3,Field Technician,9 years,RENT,53000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724303,,credit_card,Credit card refinancing,928xx,CA,22.53,0.0,Aug-2003,665.0,669.0,1.0,75.0,,5.0,0.0,13862.0,49.9,17.0,w,685.24,685.24,2970.75,2970.75,2314.76,655.99,0.0,0.0,0.0,Mar-2019,102.52,Apr-2019,Mar-2019,724.0,720.0,0.0,75.0,1.0,Individual,,,,0.0,0.0,31199.0,0.0,1.0,0.0,1.0,23.0,17337.0,72.0,0.0,1.0,8935.0,60.0,27800.0,1.0,0.0,1.0,2.0,6240.0,0.0,100.4,0.0,0.0,157.0,131.0,19.0,19.0,1.0,29.0,,0.0,,1.0,2.0,2.0,2.0,5.0,4.0,4.0,12.0,2.0,5.0,0.0,0.0,0.0,0.0,94.1,100.0,0.0,0.0,51800.0,31199.0,13800.0,24000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90291399,,21500.0,21500.0,21500.0, 36 months,12.79,722.25,C,C1,,,OWN,43000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90291399,,house,Home buying,757xx,TX,21.69,0.0,Dec-1979,710.0,714.0,0.0,54.0,,12.0,0.0,16583.0,50.9,37.0,w,4846.8,4846.8,20929.97,20929.97,16653.2,4276.77,0.0,0.0,0.0,Mar-2019,722.25,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,24051.0,0.0,1.0,0.0,0.0,63.0,7468.0,69.0,0.0,0.0,6429.0,55.0,32600.0,0.0,0.0,0.0,0.0,2672.0,1598.0,87.1,0.0,0.0,135.0,441.0,33.0,33.0,4.0,203.0,,,,0.0,2.0,5.0,2.0,10.0,4.0,11.0,29.0,5.0,12.0,0.0,0.0,0.0,0.0,97.3,100.0,0.0,0.0,43400.0,24051.0,12400.0,10800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671516,,17375.0,17375.0,17375.0, 36 months,10.49,564.65,B,B3,Service technician,9 years,MORTGAGE,64000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671516,,debt_consolidation,Debt consolidation,913xx,CA,15.23,0.0,Oct-2006,715.0,719.0,0.0,,,12.0,0.0,10560.0,34.9,15.0,w,0.0,0.0,19658.5347217042,19658.53,17375.0,2283.53,0.0,0.0,0.0,May-2018,9484.71,,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,422985.0,0.0,1.0,0.0,1.0,22.0,7820.0,49.0,0.0,3.0,5835.0,40.0,30300.0,2.0,0.0,2.0,5.0,38453.0,12515.0,45.6,0.0,0.0,66.0,119.0,17.0,8.0,1.0,17.0,,9.0,,0.0,3.0,5.0,5.0,5.0,3.0,10.0,11.0,5.0,12.0,0.0,0.0,0.0,1.0,100.0,40.0,0.0,0.0,454800.0,18380.0,23000.0,16000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90219136,,10000.0,10000.0,10000.0, 36 months,8.99,317.96,B,B1,Surface maintenance repairer,10+ years,OWN,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90219136,,home_improvement,Home improvement,377xx,TN,28.5,0.0,Sep-2006,675.0,679.0,0.0,33.0,,9.0,0.0,4652.0,19.1,24.0,w,2060.02,2060.02,9345.8,9345.8,7939.98,1405.82,0.0,0.0,0.0,Mar-2019,317.96,Apr-2019,Mar-2019,769.0,765.0,0.0,67.0,1.0,Individual,,,,0.0,3532.0,70557.0,1.0,3.0,3.0,6.0,2.0,65905.0,95.0,1.0,2.0,4478.0,64.0,24300.0,0.0,6.0,2.0,9.0,7840.0,3822.0,54.0,0.0,0.0,96.0,120.0,12.0,2.0,0.0,33.0,,10.0,,1.0,1.0,2.0,2.0,7.0,11.0,6.0,12.0,2.0,9.0,0.0,0.0,0.0,5.0,91.7,0.0,0.0,0.0,95787.0,70557.0,8300.0,71487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90825164,,25000.0,25000.0,25000.0, 36 months,11.49,824.29,B,B5,Teacher ,7 years,MORTGAGE,94000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90825164,,credit_card,Credit card refinancing,729xx,AR,6.97,0.0,Sep-1996,685.0,689.0,2.0,,,24.0,0.0,30744.0,38.7,46.0,w,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,,Jul-2017,574.0,570.0,0.0,,1.0,Individual,,,,0.0,0.0,252222.0,1.0,6.0,1.0,1.0,10.0,103637.0,87.0,4.0,9.0,12555.0,58.0,79500.0,2.0,0.0,10.0,10.0,10509.0,39670.0,42.8,0.0,0.0,240.0,59.0,3.0,3.0,1.0,3.0,,0.0,,0.0,10.0,12.0,13.0,16.0,22.0,17.0,23.0,12.0,24.0,0.0,0.0,0.0,5.0,100.0,7.7,0.0,0.0,306153.0,134381.0,69300.0,104016.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90116186,,24000.0,24000.0,24000.0, 36 months,14.49,825.99,C,C4,General Manager ,9 years,MORTGAGE,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90116186,,debt_consolidation,Debt consolidation,851xx,AZ,34.18,0.0,Jan-2008,690.0,694.0,1.0,,,12.0,0.0,18318.0,56.9,18.0,f,5512.33,5512.33,23934.39,23934.39,18487.67,5446.72,0.0,0.0,0.0,Mar-2019,825.99,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,191198.0,1.0,2.0,0.0,0.0,39.0,6006.0,19.0,1.0,2.0,3525.0,56.0,32200.0,3.0,8.0,3.0,2.0,15933.0,6621.0,58.1,0.0,0.0,103.0,104.0,5.0,5.0,1.0,20.0,,0.0,,0.0,5.0,7.0,5.0,5.0,8.0,8.0,8.0,7.0,12.0,0.0,0.0,0.0,1.0,100.0,60.0,0.0,0.0,248349.0,52024.0,15800.0,31735.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641282,,4000.0,4000.0,4000.0, 36 months,14.49,137.67,C,C4,Underwriter,6 years,MORTGAGE,89000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641282,,debt_consolidation,Debt consolidation,800xx,CO,14.48,1.0,Sep-2002,660.0,664.0,1.0,15.0,,11.0,0.0,17135.0,60.5,23.0,w,0.0,0.0,4087.0713269304997,4087.07,4000.0,87.07,0.0,0.0,0.0,Dec-2016,336.99,,Feb-2018,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,25927.0,2.0,3.0,1.0,3.0,12.0,8792.0,36.0,3.0,4.0,4373.0,49.0,28300.0,0.0,0.0,1.0,7.0,2357.0,6186.0,69.2,0.0,0.0,116.0,119.0,3.0,3.0,2.0,3.0,,1.0,,0.0,5.0,7.0,5.0,8.0,10.0,8.0,11.0,7.0,11.0,0.0,0.0,0.0,4.0,90.9,60.0,0.0,0.0,52468.0,25927.0,20100.0,24168.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90082567,,16000.0,16000.0,16000.0, 36 months,15.59,559.28,C,C5,Senior HR Administrator,9 years,MORTGAGE,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90082567,,home_improvement,Home improvement,086xx,NJ,9.27,0.0,Jul-1980,745.0,749.0,2.0,60.0,,13.0,0.0,3486.0,11.5,24.0,w,0.0,0.0,17749.704129588703,17749.7,16000.0,1749.7,0.0,0.0,0.0,Jul-2017,13289.32,,Feb-2018,684.0,680.0,0.0,60.0,1.0,Individual,,,,0.0,218.0,194988.0,4.0,2.0,2.0,3.0,6.0,10246.0,69.0,6.0,7.0,1312.0,30.0,30200.0,4.0,0.0,9.0,10.0,14999.0,23567.0,6.5,0.0,0.0,167.0,434.0,1.0,1.0,1.0,5.0,,3.0,,0.0,3.0,8.0,5.0,8.0,7.0,10.0,16.0,8.0,13.0,0.0,0.0,0.0,8.0,95.7,0.0,0.0,0.0,265207.0,13732.0,25200.0,14952.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414903,,30000.0,30000.0,30000.0, 60 months,15.59,723.03,C,C5,Maintenance Supervisor,8 years,RENT,42000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414903,,home_improvement,Home improvement,210xx,MD,11.51,0.0,Sep-1999,725.0,729.0,0.0,,,6.0,0.0,18734.0,49.2,9.0,w,0.0,0.0,31840.36198209,31840.36,30000.0,1840.36,0.0,0.0,0.0,Aug-2017,92.07,,Mar-2019,774.0,770.0,0.0,,1.0,Joint App,97560.0,5.26,Not Verified,0.0,0.0,18734.0,0.0,0.0,0.0,0.0,,0.0,,1.0,1.0,9960.0,49.0,38100.0,1.0,0.0,2.0,1.0,3122.0,10411.0,64.2,0.0,0.0,,204.0,9.0,9.0,0.0,26.0,,1.0,,0.0,2.0,3.0,3.0,4.0,0.0,6.0,9.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,38100.0,18734.0,29100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561497,,10000.0,10000.0,10000.0, 60 months,17.99,253.88,D,D2,Pastor,3 years,MORTGAGE,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561497,,debt_consolidation,Debt consolidation,150xx,PA,32.55,0.0,Nov-1998,670.0,674.0,0.0,38.0,,31.0,0.0,14367.0,54.0,37.0,w,6257.92,6257.92,7352.53,7352.53,3742.08,3610.45,0.0,0.0,0.0,Mar-2019,253.88,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,190894.0,2.0,19.0,0.0,5.0,13.0,122797.0,93.0,4.0,10.0,4633.0,87.0,26600.0,2.0,1.0,0.0,15.0,6158.0,12233.0,54.0,0.0,0.0,144.0,111.0,0.0,0.0,2.0,0.0,38.0,13.0,38.0,0.0,7.0,7.0,11.0,11.0,24.0,11.0,11.0,7.0,31.0,0.0,0.0,0.0,4.0,97.3,36.4,0.0,0.0,219574.0,137164.0,26600.0,131568.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90965190,,24000.0,24000.0,24000.0, 60 months,13.99,558.32,C,C3,Environmental Inspector,2 years,MORTGAGE,120960.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90965190,,credit_card,Credit card refinancing,712xx,LA,16.54,0.0,Mar-2006,685.0,689.0,1.0,,,11.0,0.0,19065.0,62.9,15.0,w,14455.16,14455.16,16172.63,16172.63,9544.84,6627.79,0.0,0.0,0.0,Mar-2019,558.32,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,237458.0,0.0,2.0,0.0,1.0,16.0,61406.0,92.0,2.0,5.0,7747.0,78.0,30300.0,3.0,1.0,2.0,7.0,21587.0,6008.0,71.1,0.0,0.0,126.0,50.0,7.0,7.0,1.0,20.0,,1.0,,0.0,3.0,5.0,4.0,4.0,5.0,8.0,9.0,5.0,11.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,281670.0,80471.0,20800.0,85620.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90241045,,18000.0,18000.0,18000.0, 36 months,15.59,629.19,C,C5,Property Manager,4 years,RENT,91000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90241045,,debt_consolidation,Debt consolidation,951xx,CA,16.46,0.0,Oct-2005,695.0,699.0,3.0,63.0,,14.0,0.0,6705.0,48.9,28.0,w,0.0,0.0,19573.495346655,19573.5,18000.0,1573.5,0.0,0.0,0.0,May-2017,15751.59,,Oct-2017,724.0,720.0,0.0,63.0,1.0,Individual,,,,0.0,443.0,62152.0,0.0,7.0,2.0,2.0,8.0,55447.0,66.0,1.0,3.0,4375.0,60.0,13700.0,0.0,1.0,3.0,5.0,4439.0,702.0,87.5,0.0,0.0,109.0,131.0,10.0,8.0,0.0,32.0,,1.0,,1.0,2.0,4.0,2.0,6.0,14.0,7.0,14.0,4.0,14.0,0.0,0.0,0.0,3.0,96.4,50.0,0.0,0.0,81063.0,62152.0,5600.0,67363.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89798569,,13850.0,13850.0,13850.0, 36 months,15.59,484.13,C,C5,Vice President of Sales and Marketing,3 years,RENT,120000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89798569,,debt_consolidation,Debt consolidation,762xx,TX,4.75,0.0,Jan-2007,660.0,664.0,0.0,,66.0,5.0,1.0,2881.0,68.6,8.0,w,0.0,0.0,5933.31,5933.31,2884.43,1538.71,0.0,1510.17,271.8306,Jul-2017,484.13,,Jan-2018,594.0,590.0,0.0,,1.0,Individual,,,,0.0,0.0,8862.0,0.0,1.0,0.0,1.0,21.0,5981.0,59.0,1.0,3.0,1823.0,62.0,4200.0,0.0,0.0,2.0,4.0,1772.0,1224.0,68.6,0.0,0.0,21.0,101.0,11.0,11.0,1.0,11.0,,1.0,,0.0,3.0,4.0,3.0,5.0,1.0,4.0,6.0,4.0,5.0,0.0,0.0,0.0,1.0,100.0,33.3,1.0,0.0,14347.0,8862.0,3900.0,10147.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89024775,,8850.0,8850.0,8850.0, 36 months,24.49,349.5,E,E3,Survey CAD Technician,2 years,RENT,35360.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89024775,,credit_card,Credit card refinancing,787xx,TX,27.9,0.0,Nov-2008,670.0,674.0,2.0,,,19.0,0.0,17438.0,50.3,23.0,f,0.0,0.0,2163.22,2163.22,1066.44,1096.78,0.0,0.0,0.0,Apr-2017,349.5,,Sep-2017,524.0,520.0,0.0,,1.0,Individual,,,,0.0,0.0,85921.0,1.0,13.0,0.0,3.0,13.0,68483.0,96.0,1.0,2.0,8094.0,81.0,34700.0,1.0,0.0,3.0,5.0,4522.0,3041.0,79.2,0.0,0.0,93.0,67.0,4.0,4.0,0.0,35.0,,0.0,,0.0,2.0,3.0,2.0,3.0,15.0,6.0,8.0,3.0,19.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,105913.0,85921.0,14600.0,71213.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90208929,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,Nursing assistant,7 years,RENT,43000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90208929,,debt_consolidation,Debt consolidation,117xx,NY,20.57,1.0,Sep-2005,695.0,699.0,0.0,13.0,91.0,7.0,1.0,2141.0,24.6,17.0,w,0.0,0.0,5886.261968676899,5886.26,5000.0,871.26,15.0,0.0,0.0,Jan-2019,188.33,,Jan-2019,524.0,520.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,55358.0,2.0,4.0,2.0,4.0,3.0,53217.0,79.0,0.0,2.0,2139.0,62.0,8700.0,2.0,1.0,5.0,6.0,7908.0,4859.0,30.6,0.0,0.0,132.0,119.0,16.0,3.0,0.0,16.0,13.0,5.0,13.0,2.0,2.0,2.0,2.0,2.0,13.0,3.0,4.0,2.0,7.0,0.0,0.0,1.0,2.0,93.3,0.0,1.0,0.0,67324.0,55358.0,7000.0,58624.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90308903,,25000.0,25000.0,25000.0, 36 months,6.99,771.82,A,A2,Consultant,2 years,MORTGAGE,154000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90308903,,debt_consolidation,Debt consolidation,922xx,CA,14.49,0.0,Feb-1973,745.0,749.0,0.0,46.0,,14.0,0.0,18089.0,20.0,35.0,w,0.0,0.0,26738.6261100846,26738.63,25000.0,1738.63,0.0,0.0,0.0,Dec-2017,16714.68,,Dec-2017,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,623011.0,2.0,2.0,1.0,1.0,1.0,62758.0,100.0,0.0,2.0,4154.0,40.0,90400.0,2.0,0.0,2.0,4.0,47924.0,58836.0,10.9,0.0,0.0,141.0,523.0,13.0,1.0,6.0,13.0,,8.0,,0.0,4.0,7.0,5.0,10.0,9.0,9.0,19.0,7.0,14.0,0.0,0.0,0.0,2.0,97.1,0.0,0.0,0.0,735662.0,80847.0,66000.0,78862.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90531507,,5000.0,5000.0,5000.0, 36 months,10.49,162.49,B,B3,Purchase ,5 years,RENT,34000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90531507,,debt_consolidation,Debt consolidation,927xx,CA,30.11,0.0,Dec-2003,660.0,664.0,0.0,40.0,,11.0,0.0,4743.0,70.8,26.0,w,1098.63,1098.63,4729.69,4729.69,3901.37,828.32,0.0,0.0,0.0,Mar-2019,162.49,Apr-2019,Mar-2019,679.0,675.0,0.0,40.0,1.0,Individual,,,,0.0,115.0,23846.0,0.0,4.0,0.0,0.0,29.0,19103.0,67.0,1.0,2.0,2751.0,68.0,6700.0,0.0,4.0,1.0,2.0,2168.0,49.0,98.3,0.0,0.0,142.0,153.0,9.0,9.0,0.0,15.0,43.0,9.0,41.0,1.0,1.0,6.0,1.0,5.0,12.0,7.0,14.0,6.0,11.0,0.0,0.0,0.0,1.0,79.2,100.0,0.0,0.0,35303.0,23846.0,2800.0,28603.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90298264,,25000.0,25000.0,25000.0, 36 months,7.59,778.69,A,A3,President,10+ years,MORTGAGE,135600.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90298264,,home_improvement,Home improvement,852xx,AZ,9.85,0.0,Jun-1982,780.0,784.0,0.0,,,16.0,0.0,28137.0,25.2,28.0,f,5315.47,5315.47,22571.47,22571.47,19684.53,2886.94,0.0,0.0,0.0,Mar-2019,778.69,Apr-2019,Mar-2019,804.0,800.0,0.0,,1.0,Individual,,,,0.0,0.0,433979.0,1.0,0.0,0.0,0.0,38.0,6533.0,30.0,0.0,0.0,12719.0,27.0,111600.0,0.0,0.0,1.0,1.0,28932.0,50821.0,33.8,0.0,0.0,134.0,411.0,53.0,4.0,5.0,61.0,,5.0,,0.0,4.0,6.0,6.0,7.0,4.0,13.0,18.0,6.0,16.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,540042.0,38634.0,76800.0,22167.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90955271,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,general clerk,1 year,RENT,13307.52,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90955271,,debt_consolidation,Debt consolidation,704xx,LA,34.42,2.0,Nov-1990,665.0,669.0,0.0,20.0,,9.0,0.0,3386.0,15.1,23.0,w,0.0,0.0,5689.783054628299,5689.78,5000.0,689.78,0.0,0.0,0.0,Jan-2018,3315.11,,Mar-2019,699.0,695.0,0.0,20.0,1.0,Individual,,,,0.0,172.0,3386.0,0.0,0.0,0.0,0.0,33.0,0.0,,0.0,1.0,2686.0,15.0,22400.0,1.0,3.0,0.0,1.0,423.0,13122.0,20.0,0.0,0.0,263.0,310.0,14.0,14.0,0.0,14.0,20.0,22.0,20.0,3.0,3.0,5.0,4.0,6.0,9.0,9.0,14.0,5.0,9.0,0.0,0.0,2.0,0.0,90.9,0.0,0.0,0.0,22400.0,3386.0,16400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90905223,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,Associate,1 year,RENT,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90905223,,debt_consolidation,Debt consolidation,802xx,CO,15.33,0.0,Sep-2009,685.0,689.0,0.0,,,24.0,0.0,11060.0,54.0,27.0,w,0.0,0.0,14774.133340847,14774.13,12000.0,2774.13,0.0,0.0,0.0,Mar-2019,3184.96,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,175962.0,0.0,14.0,0.0,2.0,13.0,164902.0,100.0,0.0,1.0,6163.0,95.0,20500.0,0.0,0.0,1.0,3.0,7651.0,2419.0,74.5,0.0,0.0,84.0,72.0,24.0,13.0,0.0,44.0,,10.0,,0.0,2.0,7.0,2.0,2.0,16.0,10.0,11.0,7.0,24.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,185402.0,175962.0,9500.0,164902.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90945257,,6500.0,6500.0,6500.0, 36 months,10.49,211.24,B,B3,RN,< 1 year,RENT,104000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90945257,,debt_consolidation,Debt consolidation,980xx,WA,9.73,2.0,Dec-1993,675.0,679.0,1.0,13.0,,7.0,0.0,5524.0,61.4,20.0,f,0.0,0.0,7104.9028412899,7104.9,6500.0,604.9,0.0,0.0,0.0,Oct-2017,4785.05,,Oct-2018,714.0,710.0,0.0,13.0,1.0,Individual,,,,0.0,0.0,212620.0,2.0,1.0,0.0,0.0,64.0,14117.0,,3.0,4.0,3138.0,61.0,9000.0,0.0,2.0,2.0,4.0,30374.0,141.0,96.7,0.0,0.0,168.0,273.0,2.0,2.0,3.0,23.0,13.0,3.0,13.0,3.0,2.0,4.0,2.0,5.0,7.0,5.0,10.0,4.0,7.0,0.0,0.0,2.0,3.0,89.5,100.0,0.0,0.0,245034.0,19641.0,4300.0,39274.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551505,,11200.0,11200.0,11200.0, 60 months,21.49,306.1,D,D5,Business manager ,< 1 year,MORTGAGE,49920.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551505,,debt_consolidation,Debt consolidation,368xx,AL,15.41,0.0,Feb-2004,685.0,689.0,0.0,,,14.0,0.0,7554.0,46.1,18.0,w,0.0,0.0,15240.9903997277,15240.99,11200.0,4040.99,0.0,0.0,0.0,Aug-2018,8826.26,,Feb-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,101.0,283175.0,1.0,6.0,1.0,2.0,10.0,33390.0,105.0,0.0,4.0,3051.0,85.0,16400.0,1.0,0.0,3.0,7.0,20227.0,4754.0,52.5,0.0,0.0,61.0,151.0,16.0,4.0,1.0,46.0,,6.0,,0.0,3.0,7.0,3.0,4.0,6.0,7.0,11.0,7.0,14.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,291708.0,40944.0,10000.0,31899.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90895119,,15000.0,15000.0,15000.0, 36 months,8.99,476.93,B,B1,Practice Manager,< 1 year,MORTGAGE,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90895119,,credit_card,Credit card refinancing,853xx,AZ,16.99,0.0,Jan-2004,725.0,729.0,1.0,,,8.0,0.0,14917.0,40.0,33.0,w,0.0,0.0,15915.395336924199,15915.4,15000.0,915.4,0.0,0.0,0.0,Jul-2017,11107.45,,Aug-2017,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,42265.0,2.0,2.0,1.0,2.0,1.0,27348.0,87.0,3.0,4.0,11527.0,62.0,37300.0,1.0,0.0,3.0,6.0,5283.0,12783.0,53.9,0.0,0.0,124.0,152.0,1.0,1.0,3.0,17.0,,1.0,,0.0,3.0,3.0,3.0,11.0,6.0,6.0,24.0,3.0,8.0,0.0,0.0,0.0,4.0,100.0,33.3,0.0,0.0,68773.0,42265.0,27700.0,31473.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88869843,,10000.0,10000.0,10000.0, 36 months,15.59,349.55,C,C5,Epidemiologist,3 years,RENT,91670.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88869843,,other,Other,303xx,GA,12.12,0.0,May-2004,680.0,684.0,1.0,,106.0,10.0,1.0,26302.0,60.6,26.0,w,0.0,0.0,10920.5226050595,10920.52,10000.0,920.52,0.0,0.0,0.0,Jul-2017,5476.78,,Jun-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,40608.0,1.0,1.0,4.0,5.0,3.0,14306.0,95.0,0.0,2.0,7593.0,70.0,43400.0,0.0,1.0,2.0,7.0,4512.0,16261.0,42.7,0.0,0.0,123.0,148.0,15.0,3.0,0.0,15.0,,0.0,,0.0,4.0,5.0,7.0,8.0,15.0,9.0,11.0,5.0,10.0,0.0,0.0,0.0,4.0,100.0,0.0,1.0,0.0,58400.0,40608.0,28400.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721282,,3000.0,3000.0,3000.0, 36 months,13.49,101.8,C,C2,manager,1 year,RENT,56000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721282,,debt_consolidation,Debt consolidation,773xx,TX,21.63,0.0,Oct-1995,660.0,664.0,2.0,41.0,64.0,12.0,1.0,9825.0,40.0,22.0,w,681.26,681.26,2946.58,2946.58,2318.74,627.84,0.0,0.0,0.0,Mar-2019,101.8,Apr-2019,Mar-2019,659.0,655.0,0.0,76.0,1.0,Individual,,,,0.0,0.0,39987.0,5.0,1.0,1.0,2.0,2.0,30162.0,99.0,5.0,7.0,2464.0,76.0,24600.0,8.0,3.0,7.0,10.0,3332.0,12761.0,43.0,0.0,0.0,121.0,251.0,4.0,2.0,0.0,4.0,41.0,4.0,41.0,1.0,8.0,9.0,8.0,11.0,6.0,10.0,14.0,9.0,12.0,0.0,0.0,0.0,7.0,90.5,0.0,0.0,1.0,55229.0,39987.0,22100.0,30629.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89987975,,2725.0,2725.0,2725.0, 36 months,13.99,93.13,C,C3,Pipefitter,< 1 year,OWN,52000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89987975,,debt_consolidation,Debt consolidation,380xx,TN,16.2,0.0,Nov-2012,660.0,664.0,0.0,,,7.0,0.0,3316.0,69.1,11.0,w,0.0,0.0,3013.8173608746,3013.82,2725.0,288.82,0.0,0.0,0.0,Aug-2017,2177.77,,Aug-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,11112.0,1.0,3.0,2.0,3.0,5.0,7796.0,68.0,2.0,6.0,2840.0,68.0,4800.0,1.0,0.0,1.0,9.0,1587.0,736.0,80.6,0.0,0.0,46.0,16.0,11.0,5.0,0.0,11.0,,11.0,,0.0,2.0,4.0,2.0,2.0,5.0,4.0,6.0,4.0,7.0,0.0,0.0,0.0,4.0,100.0,50.0,0.0,0.0,16313.0,11112.0,3800.0,11513.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90775189,,12000.0,12000.0,12000.0, 36 months,6.99,370.48,A,A2,Safety Supervisor,8 years,MORTGAGE,85000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90775189,,debt_consolidation,Debt consolidation,628xx,IL,12.64,0.0,Jun-1998,760.0,764.0,0.0,,,7.0,0.0,13669.0,46.0,21.0,w,2533.6,2533.6,10739.26,10739.26,9466.4,1272.86,0.0,0.0,0.0,Mar-2019,370.48,Apr-2019,Feb-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,113997.0,0.0,1.0,0.0,0.0,49.0,9094.0,28.0,0.0,1.0,7491.0,37.0,29700.0,0.0,2.0,6.0,1.0,19000.0,16031.0,46.0,0.0,0.0,132.0,142.0,13.0,13.0,7.0,13.0,,0.0,,0.0,4.0,4.0,4.0,5.0,7.0,5.0,7.0,4.0,7.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,202805.0,22763.0,29700.0,32000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90835189,,6000.0,6000.0,6000.0, 36 months,16.99,213.89,D,D1,Specialist ,10+ years,OWN,48000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90835189,,medical,Medical expenses,765xx,TX,27.35,0.0,Mar-1998,720.0,724.0,2.0,,,26.0,0.0,4759.0,6.6,47.0,f,0.0,0.0,4932.48,4932.48,3476.69,1455.79,0.0,0.0,0.0,Sep-2018,213.89,,Mar-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,773.0,169291.0,8.0,3.0,2.0,2.0,6.0,30404.0,79.0,13.0,17.0,3006.0,32.0,72000.0,1.0,0.0,3.0,21.0,6511.0,34010.0,10.7,0.0,0.0,192.0,222.0,1.0,1.0,2.0,1.0,,1.0,,0.0,3.0,5.0,12.0,13.0,15.0,22.0,30.0,5.0,26.0,0.0,0.0,0.0,15.0,100.0,0.0,0.0,0.0,247453.0,35163.0,38100.0,38374.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724549,,6000.0,6000.0,6000.0, 36 months,6.99,185.24,A,A2,COORDINATOR,10+ years,MORTGAGE,52000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724549,,car,Car financing,750xx,TX,11.22,0.0,Jul-1984,815.0,819.0,0.0,,,7.0,0.0,144.0,0.4,23.0,f,0.0,0.0,6559.1523140532,6559.15,6000.0,559.15,0.0,0.0,0.0,Feb-2019,433.03,,Feb-2019,839.0,835.0,0.0,,1.0,Individual,,,,0.0,0.0,99479.0,1.0,2.0,1.0,1.0,7.0,21405.0,64.0,0.0,0.0,144.0,32.0,34300.0,1.0,0.0,2.0,2.0,14211.0,34156.0,0.4,0.0,0.0,224.0,386.0,57.0,5.0,3.0,57.0,,6.0,,0.0,1.0,1.0,4.0,11.0,7.0,4.0,13.0,1.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,148602.0,21549.0,34300.0,33702.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89938602,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Teacher,,OWN,92000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89938602,,debt_consolidation,Debt consolidation,622xx,IL,19.59,0.0,Dec-1995,745.0,749.0,1.0,33.0,,12.0,0.0,10823.0,20.8,29.0,w,21902.71,21902.71,25733.84,25733.84,13097.29,12636.55,0.0,0.0,0.0,Mar-2019,888.58,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,77503.0,1.0,2.0,0.0,0.0,25.0,37784.0,55.0,2.0,3.0,1961.0,26.0,52100.0,0.0,0.0,5.0,3.0,6459.0,13535.0,24.0,0.0,0.0,149.0,242.0,6.0,6.0,3.0,9.0,,0.0,33.0,0.0,4.0,8.0,4.0,6.0,13.0,9.0,13.0,8.0,12.0,0.0,0.0,0.0,2.0,89.7,0.0,0.0,0.0,173484.0,48607.0,17800.0,61434.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90075726,,16800.0,16800.0,16800.0, 36 months,22.39,645.0,E,E1,Store manager,2 years,RENT,45000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90075726,,credit_card,Credit card refinancing,700xx,LA,34.05,0.0,Jul-2005,685.0,689.0,1.0,44.0,,20.0,0.0,10580.0,26.6,34.0,f,0.0,0.0,15459.1,15459.1,9922.6,5536.5,0.0,0.0,0.0,Oct-2018,645.0,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,211.0,64925.0,3.0,4.0,4.0,7.0,8.0,54345.0,92.0,7.0,10.0,3071.0,66.0,39700.0,1.0,6.0,3.0,17.0,3417.0,17653.0,20.1,0.0,0.0,109.0,134.0,2.0,2.0,0.0,2.0,44.0,2.0,44.0,0.0,5.0,9.0,8.0,11.0,11.0,16.0,23.0,9.0,20.0,0.0,0.0,0.0,11.0,91.2,0.0,0.0,0.0,98782.0,64925.0,22100.0,59082.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90331322,,5000.0,5000.0,5000.0, 36 months,10.99,163.67,B,B4,Executive assistant ,3 years,RENT,80000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90331322,,debt_consolidation,Debt consolidation,926xx,CA,11.49,0.0,Jan-2008,705.0,709.0,0.0,35.0,,12.0,0.0,9874.0,20.4,18.0,w,0.0,0.0,5182.348668523499,5182.35,5000.0,182.35,0.0,0.0,0.0,Mar-2017,123.09,,Mar-2017,729.0,725.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,35436.0,1.0,1.0,2.0,3.0,5.0,25562.0,95.0,2.0,4.0,3550.0,47.0,48400.0,0.0,2.0,4.0,7.0,3221.0,23711.0,26.1,0.0,0.0,97.0,104.0,7.0,5.0,0.0,7.0,,6.0,,1.0,5.0,9.0,6.0,7.0,5.0,11.0,13.0,9.0,12.0,0.0,0.0,0.0,4.0,94.4,20.0,0.0,0.0,75400.0,35436.0,32100.0,27000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90955140,,20000.0,20000.0,20000.0, 36 months,12.79,671.86,C,C1,Law enforcement,10+ years,RENT,90108.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90955140,,credit_card,Credit card refinancing,950xx,CA,28.65,0.0,Mar-1999,675.0,679.0,1.0,62.0,64.0,9.0,1.0,9517.0,32.4,31.0,w,0.0,0.0,22382.609368572997,22382.61,20000.0,2382.61,0.0,0.0,0.0,Nov-2017,14355.82,,Jan-2019,699.0,695.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,92814.0,2.0,3.0,2.0,4.0,7.0,83297.0,88.0,3.0,3.0,4316.0,65.0,29400.0,6.0,4.0,7.0,7.0,10313.0,7083.0,57.3,0.0,0.0,167.0,210.0,3.0,3.0,1.0,4.0,73.0,3.0,73.0,4.0,4.0,4.0,4.0,11.0,13.0,6.0,17.0,4.0,9.0,0.0,0.0,0.0,5.0,87.1,25.0,1.0,0.0,125730.0,92814.0,16600.0,96330.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521746,,15850.0,15850.0,15850.0, 60 months,26.99,483.9,F,F3,Rescue Specialist,1 year,RENT,42700.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521746,,debt_consolidation,Debt consolidation,973xx,OR,34.32,0.0,Feb-2002,690.0,694.0,0.0,81.0,115.0,9.0,1.0,15606.0,54.4,15.0,w,10721.75,10721.75,14091.56,14091.56,5128.25,8963.31,0.0,0.0,0.0,Mar-2019,483.9,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,100.0,52384.0,0.0,2.0,1.0,2.0,9.0,36778.0,88.0,1.0,1.0,4698.0,74.0,28700.0,1.0,8.0,1.0,3.0,6548.0,1558.0,78.9,0.0,0.0,175.0,73.0,10.0,9.0,0.0,49.0,,9.0,,0.0,2.0,4.0,2.0,2.0,7.0,7.0,8.0,4.0,9.0,0.0,0.0,0.0,2.0,93.3,50.0,1.0,0.0,70435.0,52384.0,7400.0,41735.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89779458,,10000.0,10000.0,9975.0, 36 months,8.59,316.1,A,A5,Customer Service,10+ years,MORTGAGE,35000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89779458,,debt_consolidation,Debt consolidation,562xx,MN,24.35,0.0,Jul-1996,735.0,739.0,0.0,,,10.0,0.0,15560.0,50.2,14.0,f,2150.39,2145.01,9162.13,9139.22,7849.61,1312.52,0.0,0.0,0.0,Mar-2019,316.1,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,16531.0,0.0,1.0,0.0,0.0,35.0,971.0,10.0,0.0,0.0,5367.0,40.0,31000.0,0.0,0.0,0.0,0.0,1653.0,15440.0,50.2,0.0,0.0,35.0,149.0,66.0,35.0,2.0,66.0,,,,0.0,8.0,8.0,9.0,10.0,1.0,9.0,11.0,8.0,10.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,40950.0,16531.0,31000.0,9950.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89874882,,4200.0,4200.0,4200.0, 36 months,13.99,143.53,C,C3,Administrative Assistant,10+ years,OWN,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89874882,,vacation,Vacation,107xx,NY,14.98,0.0,Aug-1987,660.0,664.0,0.0,43.0,29.0,13.0,1.0,6326.0,58.6,66.0,w,969.23,969.23,4164.18,4164.18,3230.77,933.41,0.0,0.0,0.0,Mar-2019,143.53,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,152774.0,4.0,5.0,1.0,3.0,3.0,96061.0,112.0,6.0,7.0,2731.0,102.0,10800.0,0.0,9.0,2.0,10.0,11752.0,2705.0,67.8,0.0,0.0,181.0,349.0,3.0,3.0,5.0,3.0,,3.0,,0.0,4.0,6.0,4.0,8.0,38.0,7.0,23.0,6.0,13.0,0.0,0.0,0.0,7.0,98.2,50.0,1.0,0.0,159048.0,102387.0,8400.0,90248.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90511887,,12000.0,12000.0,11975.0, 36 months,5.32,361.38,A,A1,Outpatient Therapist,1 year,RENT,54350.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90511887,,credit_card,Credit card refinancing,395xx,MS,6.27,0.0,Nov-2001,690.0,694.0,0.0,37.0,,12.0,0.0,10216.0,50.8,18.0,f,0.0,0.0,12593.8281530134,12567.59,12000.0,593.83,0.0,0.0,0.0,Oct-2017,8597.38,,Mar-2019,779.0,775.0,0.0,37.0,1.0,Individual,,,,0.0,0.0,101993.0,0.0,1.0,0.0,0.0,37.0,91777.0,,0.0,2.0,2556.0,51.0,20100.0,2.0,0.0,0.0,2.0,8499.0,3068.0,72.8,0.0,0.0,178.0,167.0,17.0,17.0,0.0,17.0,,23.0,,2.0,6.0,8.0,7.0,7.0,5.0,11.0,13.0,8.0,12.0,0.0,0.0,0.0,0.0,88.9,42.9,0.0,0.0,98121.0,101993.0,11300.0,78021.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89848947,,25000.0,25000.0,25000.0, 60 months,15.59,602.52,C,C5,RN,10+ years,MORTGAGE,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89848947,,debt_consolidation,Debt consolidation,132xx,NY,16.82,1.0,Oct-1998,715.0,719.0,1.0,16.0,,11.0,0.0,7866.0,39.7,27.0,w,15294.24,15294.24,17581.34,17581.34,9705.76,7875.58,0.0,0.0,0.0,Mar-2019,602.52,Apr-2019,Mar-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,96890.0,0.0,2.0,0.0,1.0,16.0,9061.0,44.0,0.0,0.0,1616.0,42.0,19800.0,2.0,0.0,4.0,1.0,8808.0,3234.0,60.6,0.0,0.0,147.0,143.0,26.0,16.0,2.0,26.0,16.0,0.0,16.0,0.0,4.0,6.0,4.0,10.0,6.0,8.0,19.0,6.0,11.0,0.0,0.0,0.0,0.0,92.3,50.0,0.0,0.0,143548.0,16927.0,8200.0,20650.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90415992,,6000.0,6000.0,6000.0, 36 months,13.99,205.04,C,C3,Substation specialist ,10+ years,RENT,73000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415992,,debt_consolidation,Debt consolidation,364xx,AL,30.66,0.0,Apr-2005,720.0,724.0,0.0,,,9.0,0.0,5823.0,77.6,14.0,w,0.0,0.0,6204.7915282744,6204.79,6000.0,204.79,0.0,0.0,0.0,Jan-2017,5799.37,,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,76330.0,0.0,4.0,1.0,3.0,11.0,70507.0,45.0,0.0,2.0,2298.0,55.0,7500.0,0.0,7.0,0.0,5.0,8481.0,518.0,91.4,0.0,0.0,137.0,86.0,17.0,11.0,0.0,18.0,,17.0,,0.0,3.0,4.0,3.0,3.0,7.0,5.0,7.0,4.0,9.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,104653.0,76330.0,6000.0,97153.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90343498,,40000.0,40000.0,40000.0, 60 months,13.49,920.19,C,C2,Purchasing Manager,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90343498,,debt_consolidation,Debt consolidation,983xx,WA,12.2,0.0,Dec-1984,685.0,689.0,0.0,39.0,,5.0,0.0,38816.0,74.4,18.0,w,23973.2,23973.2,26733.99,26733.99,16026.8,10707.19,0.0,0.0,0.0,Mar-2019,920.19,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,192100.0,0.0,0.0,0.0,0.0,67.0,0.0,,0.0,0.0,13851.0,74.0,52200.0,1.0,1.0,0.0,1.0,38420.0,12664.0,73.2,0.0,0.0,126.0,381.0,58.0,14.0,4.0,109.0,,13.0,,0.0,3.0,4.0,3.0,9.0,2.0,4.0,12.0,4.0,5.0,0.0,0.0,0.0,0.0,94.4,66.7,0.0,0.0,207450.0,38816.0,47200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90885131,,14400.0,14400.0,14400.0, 60 months,26.49,435.33,F,F2,Sr. Software QA Analyst,10+ years,RENT,51194.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90885131,,debt_consolidation,Debt consolidation,122xx,NY,21.85,0.0,May-1999,660.0,664.0,0.0,44.0,70.0,14.0,1.0,9289.0,60.7,18.0,w,0.0,0.0,22244.8413972944,22244.84,14400.0,7844.84,0.0,0.0,0.0,Feb-2019,10416.76,,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,31267.0,0.0,2.0,1.0,2.0,10.0,21978.0,108.0,0.0,3.0,1825.0,88.0,15300.0,0.0,2.0,0.0,5.0,2405.0,2429.0,72.4,0.0,0.0,208.0,158.0,22.0,10.0,0.0,22.0,,15.0,,0.0,8.0,10.0,8.0,9.0,6.0,11.0,12.0,10.0,14.0,0.0,0.0,0.0,1.0,94.4,62.5,0.0,1.0,35571.0,31267.0,8800.0,20271.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427489,,35000.0,35000.0,35000.0, 60 months,26.49,1058.1,F,F2,Legal Assistant,4 years,RENT,79000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427489,,debt_consolidation,Debt consolidation,925xx,CO,34.41,0.0,Oct-1991,720.0,724.0,3.0,56.0,,16.0,0.0,3079.0,8.4,38.0,w,0.0,0.0,17132.97,17132.97,3869.88,8698.55,0.0,4564.54,410.8086,Oct-2017,1058.1,,Apr-2018,599.0,595.0,0.0,56.0,1.0,Joint App,143000.0,35.77,Not Verified,0.0,0.0,127647.0,3.0,8.0,2.0,3.0,2.0,124568.0,111.0,1.0,2.0,3079.0,76.0,36600.0,7.0,4.0,4.0,5.0,7978.0,12421.0,19.9,0.0,0.0,152.0,299.0,4.0,2.0,2.0,4.0,56.0,1.0,56.0,5.0,1.0,1.0,4.0,9.0,20.0,8.0,16.0,1.0,16.0,0.0,0.0,0.0,3.0,88.6,0.0,0.0,0.0,161605.0,127647.0,15500.0,125005.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90087024,,21000.0,21000.0,21000.0, 60 months,13.99,488.53,C,C3,IT Systems Administrator,< 1 year,MORTGAGE,80000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90087024,,credit_card,Credit card refinancing,212xx,MD,16.54,0.0,Dec-1992,675.0,679.0,1.0,,,11.0,0.0,45522.0,79.4,17.0,w,0.0,0.0,25931.1905271215,25931.19,21000.0,4931.19,0.0,0.0,0.0,Sep-2018,15159.05,,Feb-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,159288.0,0.0,0.0,0.0,1.0,14.0,0.0,,0.0,1.0,13539.0,79.0,57300.0,4.0,1.0,5.0,2.0,15929.0,8179.0,84.2,0.0,0.0,108.0,285.0,13.0,13.0,2.0,13.0,,1.0,,0.0,7.0,8.0,9.0,11.0,2.0,10.0,12.0,8.0,11.0,0.0,0.0,0.0,0.0,100.0,75.0,0.0,0.0,178900.0,45522.0,51700.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90321592,,7200.0,7200.0,7200.0, 36 months,9.49,230.61,B,B2,,,OWN,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90321592,,debt_consolidation,Debt consolidation,045xx,ME,26.72,0.0,Apr-1970,735.0,739.0,0.0,,,6.0,0.0,30874.0,49.1,12.0,f,0.0,0.0,5069.62,5069.62,4155.38,914.24,0.0,0.0,0.0,Aug-2018,230.61,,Oct-2018,609.0,605.0,0.0,,1.0,Individual,,,,0.0,0.0,33048.0,0.0,1.0,0.0,0.0,30.0,2174.0,17.0,1.0,1.0,13827.0,44.0,62900.0,0.0,0.0,1.0,1.0,5508.0,17131.0,63.6,0.0,0.0,162.0,557.0,10.0,10.0,1.0,95.0,,10.0,,0.0,3.0,5.0,3.0,5.0,4.0,5.0,7.0,5.0,6.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,75947.0,33048.0,47100.0,13047.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90332117,,30000.0,30000.0,30000.0, 60 months,8.99,622.61,B,B1,Sergeant ,10+ years,MORTGAGE,125000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90332117,,debt_consolidation,Debt consolidation,109xx,NY,9.66,0.0,Jan-1996,700.0,704.0,1.0,45.0,,11.0,0.0,21132.0,82.9,20.0,w,17166.2,17166.2,18018.23,18018.23,12833.8,5184.43,0.0,0.0,0.0,Mar-2019,622.61,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,758.0,421446.0,1.0,4.0,1.0,2.0,1.0,115137.0,86.0,0.0,1.0,8203.0,86.0,25500.0,0.0,1.0,2.0,3.0,42145.0,1790.0,91.3,0.0,0.0,159.0,248.0,14.0,1.0,2.0,58.0,,1.0,45.0,0.0,3.0,4.0,3.0,5.0,6.0,6.0,12.0,4.0,11.0,0.0,0.0,0.0,1.0,95.0,100.0,0.0,0.0,471541.0,136269.0,20500.0,126041.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89969262,,15000.0,15000.0,15000.0, 36 months,7.59,467.22,A,A3,Field Service Engineer,5 years,RENT,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89969262,,credit_card,Credit card refinancing,750xx,TX,26.34,0.0,Dec-1994,760.0,764.0,0.0,,,26.0,0.0,26679.0,29.7,43.0,f,0.0,0.0,16045.3372089858,16045.34,15000.0,1045.34,0.0,0.0,0.0,Nov-2017,10445.02,,Oct-2018,829.0,825.0,0.0,,1.0,Individual,,,,0.0,0.0,119534.0,1.0,15.0,0.0,2.0,22.0,92855.0,79.0,1.0,1.0,16751.0,58.0,89900.0,1.0,0.0,1.0,3.0,4781.0,55634.0,31.2,0.0,0.0,123.0,261.0,5.0,5.0,0.0,5.0,,11.0,,0.0,2.0,3.0,7.0,11.0,28.0,11.0,15.0,3.0,26.0,0.0,0.0,0.0,1.0,100.0,14.3,0.0,0.0,208022.0,119534.0,80900.0,118122.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501479,,12000.0,12000.0,12000.0, 36 months,17.99,433.77,D,D2,Parts & Service Manager,10+ years,MORTGAGE,42000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501479,,debt_consolidation,Debt consolidation,433xx,OH,27.77,0.0,Oct-2000,660.0,664.0,0.0,39.0,47.0,8.0,1.0,5027.0,32.4,32.0,w,0.0,0.0,14420.9284397144,14420.93,12000.0,2420.93,0.0,0.0,0.0,Jan-2018,8288.18,,Dec-2018,709.0,705.0,0.0,39.0,1.0,Individual,,,,0.0,1878.0,44053.0,0.0,2.0,0.0,3.0,16.0,13704.0,72.0,0.0,4.0,2475.0,54.0,15500.0,3.0,0.0,1.0,7.0,5507.0,1273.0,79.8,0.0,0.0,126.0,152.0,13.0,13.0,4.0,13.0,,9.0,,2.0,3.0,3.0,3.0,9.0,12.0,5.0,16.0,3.0,8.0,0.0,0.0,0.0,0.0,93.8,66.7,0.0,0.0,82230.0,18731.0,6300.0,18922.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90235226,,3325.0,3325.0,3325.0, 36 months,15.59,116.23,C,C5,EVS,2 years,RENT,65000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90235226,,debt_consolidation,Credit card refinancing,945xx,CA,3.01,0.0,Jan-2004,690.0,694.0,0.0,38.0,,11.0,0.0,3229.0,20.7,17.0,w,0.0,0.0,828.9,828.9,297.87,164.17,0.0,366.86,66.0348,Feb-2017,116.23,,Aug-2017,499.0,0.0,0.0,38.0,1.0,Individual,,,,0.0,0.0,27629.0,2.0,1.0,0.0,0.0,98.0,24400.0,119.0,6.0,7.0,1781.0,77.0,15600.0,0.0,0.0,1.0,7.0,2512.0,4721.0,29.5,0.0,0.0,152.0,26.0,0.0,0.0,0.0,0.0,,11.0,,1.0,3.0,6.0,4.0,5.0,5.0,10.0,12.0,6.0,11.0,0.0,0.0,0.0,6.0,100.0,25.0,0.0,0.0,36062.0,27629.0,6700.0,20462.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90723443,,2400.0,2400.0,2400.0, 36 months,10.99,78.57,B,B4,Field Marketing Specialist,1 year,RENT,44000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90723443,,credit_card,Credit card refinancing,142xx,NY,9.15,0.0,Feb-2012,710.0,714.0,1.0,,,5.0,0.0,3923.0,28.8,5.0,w,0.0,0.0,2627.3894194563,2627.39,2400.0,227.39,0.0,0.0,0.0,Apr-2018,328.17,,Apr-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,23013.0,1.0,1.0,0.0,0.0,55.0,19090.0,127.0,3.0,4.0,3678.0,81.0,13600.0,0.0,0.0,2.0,4.0,4603.0,7322.0,33.4,0.0,0.0,55.0,19.0,4.0,4.0,0.0,9.0,,4.0,,0.0,1.0,2.0,2.0,2.0,1.0,4.0,4.0,2.0,5.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,28600.0,23013.0,11000.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90017722,,12000.0,12000.0,12000.0, 60 months,22.39,334.1,E,E1,Lab tech,2 years,MORTGAGE,30000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90017722,,debt_consolidation,Debt consolidation,370xx,TN,23.05,0.0,Aug-2003,715.0,719.0,1.0,73.0,,14.0,0.0,11436.0,40.3,26.0,w,0.0,0.0,8211.43,8211.43,3120.4,4828.29,16.71,246.03,44.2854,Feb-2019,246.03,,Mar-2019,534.0,530.0,0.0,,1.0,Individual,,,,0.0,0.0,144817.0,3.0,1.0,0.0,0.0,37.0,8289.0,56.0,4.0,4.0,5340.0,46.0,28400.0,0.0,0.0,1.0,4.0,11140.0,5360.0,55.3,0.0,0.0,157.0,152.0,0.0,0.0,4.0,5.0,75.0,5.0,75.0,0.0,3.0,9.0,4.0,5.0,7.0,12.0,15.0,9.0,14.0,0.0,0.0,0.0,4.0,92.3,33.3,0.0,0.0,178302.0,19725.0,12000.0,14902.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,ACTIVE,Dec-2018,4227.0,45.0,18.0 +90501369,,3525.0,3525.0,3525.0, 36 months,17.99,127.42,D,D2,Machinist,4 years,RENT,68000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501369,,small_business,Business,822xx,WY,5.31,0.0,May-1997,660.0,664.0,2.0,34.0,5.0,4.0,2.0,194.0,6.7,20.0,w,840.75,840.75,3686.37,3686.37,2684.25,1002.12,0.0,0.0,0.0,Mar-2019,127.42,Apr-2019,Mar-2019,674.0,670.0,0.0,34.0,1.0,Individual,,,,0.0,1738.0,63827.0,0.0,2.0,1.0,2.0,8.0,4105.0,45.0,0.0,0.0,0.0,36.0,2900.0,0.0,0.0,4.0,2.0,15957.0,,,0.0,0.0,132.0,69.0,44.0,8.0,0.0,,34.0,2.0,34.0,2.0,0.0,1.0,0.0,1.0,15.0,1.0,3.0,1.0,4.0,0.0,0.0,0.0,1.0,90.0,,0.0,0.0,71559.0,63827.0,0.0,9131.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90765227,,17600.0,17600.0,17600.0, 60 months,13.99,409.43,C,C3,Global Payment Compliance DIrector,10+ years,OWN,101000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90765227,,debt_consolidation,Debt consolidation,281xx,NC,12.67,2.0,Jun-1990,660.0,664.0,0.0,4.0,0.0,17.0,1.0,13937.0,34.8,33.0,w,10600.61,10600.61,11859.79,11859.79,6999.39,4860.4,0.0,0.0,0.0,Mar-2019,409.43,Apr-2019,Mar-2019,714.0,710.0,0.0,11.0,1.0,Individual,,,,0.0,52.0,164362.0,0.0,4.0,0.0,1.0,16.0,17384.0,45.0,0.0,0.0,6365.0,40.0,40100.0,0.0,1.0,1.0,1.0,9668.0,12885.0,38.3,1.0,0.0,170.0,315.0,39.0,16.0,4.0,39.0,,12.0,4.0,1.0,3.0,6.0,5.0,10.0,8.0,12.0,21.0,6.0,17.0,0.0,0.0,1.0,0.0,90.9,20.0,0.0,0.0,244258.0,31321.0,20900.0,38306.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90755203,,9800.0,9800.0,9800.0, 36 months,12.79,329.22,C,C1,Benefits Analyst ,2 years,RENT,55000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90755203,,debt_consolidation,Debt consolidation,279xx,NC,12.85,0.0,Aug-2004,670.0,674.0,0.0,78.0,,20.0,0.0,3601.0,94.8,24.0,w,0.0,0.0,11512.0330153128,11512.03,9800.0,1712.03,0.0,0.0,0.0,Aug-2018,4605.37,,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,467.0,78136.0,0.0,18.0,0.0,3.0,15.0,74535.0,98.0,0.0,0.0,2107.0,97.0,3800.0,0.0,0.0,2.0,3.0,3907.0,199.0,94.8,0.0,0.0,145.0,97.0,33.0,15.0,0.0,33.0,,3.0,,2.0,2.0,2.0,2.0,2.0,21.0,2.0,3.0,2.0,20.0,0.0,0.0,0.0,0.0,79.2,100.0,0.0,0.0,80262.0,78136.0,3800.0,76462.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89987563,,20000.0,20000.0,20000.0, 60 months,25.29,590.44,E,E5,Assistant District Attorney,10+ years,MORTGAGE,64000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89987563,,debt_consolidation,Debt consolidation,747xx,OK,26.1,0.0,Aug-2000,695.0,699.0,0.0,47.0,,12.0,0.0,23023.0,90.6,24.0,w,0.0,0.0,30649.345277612003,30649.35,20000.0,10649.35,0.0,0.0,0.0,Mar-2019,14145.13,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,145228.0,1.0,5.0,0.0,2.0,19.0,44598.0,61.0,1.0,1.0,8711.0,69.0,25400.0,0.0,1.0,0.0,3.0,13203.0,877.0,96.3,0.0,0.0,193.0,136.0,2.0,2.0,3.0,2.0,,19.0,,0.0,4.0,4.0,4.0,7.0,9.0,6.0,11.0,4.0,12.0,0.0,0.0,0.0,1.0,95.8,100.0,0.0,0.0,189243.0,67621.0,23900.0,73093.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90395079,,9700.0,9700.0,9700.0, 36 months,23.99,380.51,E,E2,Outside service ,< 1 year,MORTGAGE,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90395079,,medical,Medical expenses,454xx,OH,32.13,0.0,Jun-2008,690.0,694.0,1.0,,,13.0,0.0,15850.0,44.3,16.0,f,0.0,0.0,12497.9029655277,12497.9,9700.0,2797.9,0.0,0.0,0.0,Apr-2018,2823.16,,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,59.0,184821.0,2.0,1.0,0.0,1.0,21.0,37087.0,,5.0,6.0,4563.0,44.0,35800.0,0.0,0.0,2.0,8.0,15402.0,18460.0,37.6,0.0,0.0,89.0,99.0,5.0,5.0,1.0,6.0,,5.0,,0.0,4.0,5.0,8.0,9.0,3.0,11.0,12.0,5.0,13.0,0.0,0.0,0.0,5.0,100.0,37.5,0.0,0.0,221125.0,52937.0,29600.0,49825.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90237876,,18500.0,18500.0,18475.0, 36 months,6.99,571.15,A,A2,auditor,10+ years,MORTGAGE,137000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90237876,,debt_consolidation,Debt consolidation,287xx,NC,12.23,0.0,Jun-1999,765.0,769.0,1.0,,,19.0,0.0,11950.0,10.8,47.0,f,0.0,0.0,19204.225327168202,19178.27,18500.0,704.23,0.0,0.0,0.0,Apr-2017,16301.78,,Mar-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,383533.0,3.0,2.0,0.0,1.0,24.0,23401.0,50.0,4.0,8.0,5035.0,22.0,110900.0,1.0,0.0,3.0,9.0,20186.0,88250.0,11.9,0.0,0.0,150.0,207.0,4.0,4.0,4.0,4.0,,1.0,,0.0,7.0,7.0,13.0,24.0,6.0,16.0,36.0,7.0,19.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,529983.0,35351.0,100200.0,46733.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90007737,,19450.0,19450.0,19450.0, 36 months,13.49,659.95,C,C2,Mail Carrier,10+ years,MORTGAGE,38900.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90007737,,debt_consolidation,Debt consolidation,792xx,TX,22.71,2.0,Dec-1993,705.0,709.0,0.0,17.0,,9.0,0.0,5212.0,47.0,20.0,w,4418.62,4418.62,19123.97,19123.97,15031.38,4092.59,0.0,0.0,0.0,Mar-2019,659.95,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,315.0,17898.0,0.0,1.0,0.0,0.0,49.0,12686.0,43.0,0.0,0.0,1919.0,44.0,11100.0,0.0,0.0,0.0,0.0,2237.0,1553.0,68.9,0.0,0.0,179.0,273.0,27.0,27.0,0.0,68.0,17.0,14.0,17.0,0.0,3.0,5.0,4.0,4.0,8.0,8.0,12.0,5.0,9.0,0.0,0.0,0.0,0.0,85.0,50.0,0.0,0.0,40448.0,17898.0,5000.0,29348.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90092506,,15000.0,15000.0,15000.0, 60 months,18.99,389.03,D,D3,Analyst,1 year,MORTGAGE,125000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90092506,,debt_consolidation,Debt consolidation,278xx,NC,18.38,0.0,Jan-1998,675.0,679.0,1.0,27.0,,10.0,0.0,9194.0,68.1,34.0,w,0.0,0.0,17191.666308865602,17191.67,15000.0,2191.67,0.0,0.0,0.0,Jul-2017,13695.25,,May-2018,629.0,625.0,0.0,31.0,1.0,Individual,,,,0.0,0.0,359832.0,5.0,3.0,1.0,4.0,3.0,123180.0,80.0,3.0,4.0,6164.0,78.0,13500.0,4.0,3.0,4.0,9.0,35983.0,4306.0,68.1,0.0,0.0,126.0,224.0,1.0,1.0,6.0,1.0,,5.0,,0.0,2.0,2.0,5.0,7.0,13.0,5.0,15.0,2.0,10.0,0.0,0.0,0.0,5.0,97.1,40.0,0.0,0.0,358766.0,132374.0,13500.0,117389.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90120774,,26250.0,26250.0,26250.0, 36 months,12.79,881.82,C,C1,Legal Assistant,2 years,MORTGAGE,10000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90120774,,debt_consolidation,Debt consolidation,809xx,CO,81.15,0.0,Dec-1999,695.0,699.0,0.0,,,14.0,0.0,22538.0,85.4,15.0,w,0.0,0.0,30462.902752782004,30462.9,26250.0,4212.9,0.0,0.0,0.0,Apr-2018,15388.03,,Mar-2019,669.0,665.0,0.0,,1.0,Joint App,75000.0,16.75,Not Verified,0.0,0.0,159551.0,0.0,0.0,0.0,0.0,,0.0,,0.0,2.0,2490.0,85.0,26400.0,0.0,0.0,0.0,2.0,11397.0,1289.0,91.0,0.0,0.0,,201.0,21.0,21.0,2.0,21.0,,,,0.0,7.0,13.0,7.0,7.0,0.0,13.0,13.0,13.0,14.0,0.0,0.0,0.0,0.0,100.0,85.7,0.0,0.0,175876.0,22538.0,14300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89776623,,35000.0,35000.0,35000.0, 36 months,10.99,1145.69,B,B4,Oil and Gas Landman,10+ years,RENT,150000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89776623,,credit_card,Credit card refinancing,756xx,TX,10.21,0.0,Nov-2004,700.0,704.0,0.0,,,17.0,0.0,39127.0,45.4,38.0,w,7733.9,7733.9,33203.64,33203.64,27266.1,5937.54,0.0,0.0,0.0,Mar-2019,1145.69,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,39474.0,1.0,1.0,0.0,0.0,44.0,347.0,6.0,1.0,5.0,9202.0,43.0,86200.0,0.0,0.0,1.0,5.0,2322.0,7339.0,82.0,0.0,0.0,142.0,119.0,5.0,5.0,0.0,24.0,,3.0,,0.0,6.0,10.0,7.0,11.0,14.0,16.0,24.0,10.0,17.0,0.0,0.0,0.0,1.0,100.0,71.4,0.0,0.0,92293.0,39474.0,40800.0,6093.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90825177,,21000.0,21000.0,21000.0, 36 months,9.49,672.6,B,B2,RN,3 years,MORTGAGE,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90825177,,home_improvement,Home improvement,043xx,ME,17.28,0.0,Oct-2003,770.0,774.0,2.0,,,25.0,0.0,3033.0,7.1,62.0,w,4562.49,4562.49,19571.83,19571.83,16437.51,3134.32,0.0,0.0,0.0,Mar-2019,672.6,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,58728.0,4.0,7.0,3.0,4.0,3.0,55695.0,93.0,3.0,7.0,2275.0,57.0,42800.0,0.0,16.0,4.0,11.0,2447.0,21432.0,11.1,0.0,0.0,124.0,155.0,6.0,3.0,0.0,8.0,,3.0,,0.0,2.0,6.0,6.0,11.0,30.0,18.0,32.0,6.0,25.0,0.0,0.0,0.0,6.0,100.0,0.0,0.0,0.0,102700.0,58728.0,24100.0,59900.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90965177,,25000.0,25000.0,25000.0, 36 months,18.99,916.28,D,D3,owner,10+ years,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90965177,,debt_consolidation,Debt consolidation,330xx,FL,26.31,2.0,Mar-1994,715.0,719.0,0.0,15.0,,9.0,0.0,12105.0,36.8,13.0,w,0.0,0.0,31074.103419962998,31074.1,25000.0,6074.1,0.0,0.0,0.0,Jul-2018,7774.88,,Jul-2018,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,31181.0,0.0,2.0,1.0,2.0,8.0,19076.0,69.0,1.0,1.0,7950.0,51.0,32900.0,3.0,0.0,1.0,3.0,3898.0,20795.0,36.8,0.0,0.0,141.0,270.0,12.0,8.0,1.0,12.0,15.0,4.0,15.0,0.0,5.0,5.0,6.0,7.0,3.0,7.0,9.0,5.0,9.0,0.0,0.0,0.0,2.0,81.8,0.0,0.0,0.0,60764.0,31181.0,32900.0,27864.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067943,,14000.0,14000.0,14000.0, 60 months,23.99,402.68,E,E2,Carpenter,1 year,MORTGAGE,46000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067943,,home_improvement,Home improvement,030xx,NH,3.13,0.0,Jun-2012,670.0,674.0,0.0,,,7.0,0.0,7809.0,43.6,9.0,w,0.0,0.0,2819.59,2819.59,122.8,1205.3,20.13,1471.36,264.8448,May-2017,464.21,,Jul-2017,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,112424.0,3.0,0.0,1.0,1.0,7.0,0.0,,2.0,3.0,3242.0,44.0,17900.0,1.0,0.0,3.0,5.0,16061.0,4091.0,65.6,0.0,0.0,50.0,51.0,6.0,3.0,1.0,6.0,,6.0,,0.0,3.0,3.0,5.0,5.0,2.0,6.0,6.0,3.0,7.0,0.0,0.0,0.0,4.0,100.0,60.0,0.0,0.0,122660.0,7809.0,11900.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90398487,,10000.0,10000.0,10000.0, 36 months,10.49,324.98,B,B3,Merchandising Manager,< 1 year,RENT,92500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90398487,,credit_card,Credit card refinancing,372xx,TN,18.28,1.0,Apr-2001,700.0,704.0,0.0,11.0,,5.0,0.0,9960.0,89.7,23.0,f,2197.25,2197.25,9418.59,9418.59,7802.75,1615.84,0.0,0.0,0.0,Mar-2019,324.98,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,103639.0,0.0,2.0,0.0,0.0,43.0,93679.0,48.0,1.0,3.0,5960.0,58.0,11100.0,0.0,0.0,2.0,3.0,20728.0,67.0,99.3,0.0,0.0,156.0,185.0,10.0,10.0,1.0,10.0,,10.0,11.0,0.0,2.0,3.0,2.0,5.0,15.0,3.0,7.0,3.0,5.0,0.0,0.0,0.0,1.0,95.7,100.0,0.0,0.0,136511.0,103639.0,9500.0,125411.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90765268,,18000.0,18000.0,18000.0, 36 months,19.99,668.86,D,D4,Director of New Store Development,3 years,OWN,85000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90765268,,debt_consolidation,Debt consolidation,400xx,KY,21.7,0.0,Oct-1997,675.0,679.0,1.0,50.0,,12.0,0.0,38596.0,68.0,23.0,f,0.0,0.0,6803.52,6803.52,2712.69,1949.34,0.0,2141.49,385.4682,May-2017,668.86,,Nov-2017,549.0,545.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,39336.0,1.0,1.0,0.0,0.0,37.0,740.0,5.0,2.0,2.0,9783.0,54.0,56800.0,0.0,0.0,2.0,2.0,3278.0,12909.0,74.6,0.0,0.0,153.0,227.0,6.0,6.0,2.0,6.0,,1.0,,1.0,7.0,9.0,8.0,9.0,2.0,11.0,19.0,9.0,12.0,0.0,0.0,0.0,2.0,95.7,87.5,0.0,0.0,72400.0,39336.0,50900.0,15600.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90304398,,10000.0,10000.0,10000.0, 60 months,10.99,217.38,B,B4,Investigator,2 years,MORTGAGE,86000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90304398,,other,Other,706xx,LA,23.77,0.0,Jun-2001,715.0,719.0,0.0,54.0,,11.0,0.0,13686.0,79.6,22.0,w,5843.19,5843.19,6297.91,6297.91,4156.81,2141.1,0.0,0.0,0.0,Mar-2019,217.38,Apr-2019,Mar-2019,739.0,735.0,0.0,54.0,1.0,Individual,,,,0.0,51.0,156884.0,1.0,5.0,1.0,3.0,2.0,49192.0,62.0,0.0,0.0,3025.0,65.0,17200.0,1.0,0.0,1.0,3.0,14262.0,791.0,84.8,0.0,0.0,118.0,183.0,29.0,2.0,2.0,123.0,54.0,1.0,54.0,1.0,2.0,5.0,2.0,4.0,12.0,5.0,8.0,5.0,11.0,0.0,0.0,0.0,1.0,90.9,100.0,0.0,0.0,194179.0,62878.0,5200.0,79754.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90288154,,8000.0,8000.0,8000.0, 36 months,10.99,261.88,B,B4,analyst,5 years,MORTGAGE,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90288154,,home_improvement,Home improvement,100xx,NY,1.39,0.0,Aug-2003,740.0,744.0,0.0,,,6.0,0.0,2733.0,24.8,11.0,w,0.0,0.0,8616.890600405899,8616.89,8000.0,616.89,0.0,0.0,0.0,Sep-2017,0.73,,Sep-2017,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,101911.0,0.0,0.0,0.0,0.0,,0.0,,1.0,6.0,2725.0,25.0,11000.0,2.0,2.0,7.0,6.0,16985.0,8267.0,24.8,0.0,0.0,,149.0,12.0,12.0,3.0,12.0,,6.0,,0.0,2.0,2.0,5.0,7.0,0.0,5.0,8.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,20.0,0.0,0.0,110841.0,2733.0,11000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90875256,,10000.0,10000.0,10000.0, 60 months,17.99,253.88,D,D2,Sr. Policy Specialist,9 years,OWN,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90875256,,debt_consolidation,Debt consolidation,641xx,MO,18.58,0.0,Sep-2003,670.0,674.0,0.0,38.0,,7.0,0.0,30743.0,87.1,9.0,f,6258.62,6258.62,7360.26,7360.26,3741.38,3618.88,0.0,0.0,0.0,Mar-2019,253.88,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,97592.0,0.0,0.0,0.0,0.0,130.0,0.0,,0.0,1.0,16977.0,87.0,35300.0,0.0,0.0,2.0,1.0,13942.0,3771.0,88.8,0.0,0.0,130.0,156.0,14.0,14.0,1.0,14.0,,2.0,,0.0,5.0,6.0,5.0,5.0,1.0,6.0,7.0,6.0,7.0,0.0,0.0,0.0,0.0,88.9,80.0,0.0,0.0,129524.0,30743.0,33800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90745295,,10000.0,10000.0,10000.0, 36 months,19.99,371.59,D,D4,Recruiter,2 years,MORTGAGE,90000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90745295,,debt_consolidation,Debt consolidation,605xx,IL,20.94,1.0,Nov-1995,670.0,674.0,0.0,16.0,,13.0,0.0,15127.0,51.3,25.0,w,2435.9,2435.9,10765.0,10765.0,7564.1,3200.9,0.0,0.0,0.0,Mar-2019,371.59,Apr-2019,Mar-2019,654.0,650.0,0.0,41.0,1.0,Individual,,,,0.0,8060.0,306299.0,3.0,5.0,1.0,2.0,6.0,98009.0,84.0,3.0,4.0,4092.0,71.0,27800.0,5.0,3.0,7.0,7.0,23561.0,11347.0,40.4,0.0,0.0,162.0,250.0,3.0,3.0,4.0,7.0,16.0,4.0,16.0,1.0,4.0,5.0,5.0,5.0,12.0,7.0,9.0,5.0,13.0,0.0,0.0,0.0,5.0,95.2,20.0,0.0,0.0,326851.0,113136.0,21700.0,104966.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491228,,4500.0,4500.0,4500.0, 36 months,11.49,148.38,B,B5,Phone Banker,1 year,RENT,30200.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491228,,credit_card,Credit card refinancing,553xx,MN,13.31,0.0,Jan-2012,675.0,679.0,0.0,,,7.0,0.0,5309.0,74.8,7.0,w,0.0,0.0,5105.048377328,5105.05,4500.0,605.05,0.0,0.0,0.0,Mar-2018,2733.84,,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,19632.0,1.0,2.0,0.0,0.0,48.0,14323.0,92.0,1.0,2.0,4502.0,87.0,7100.0,0.0,0.0,0.0,2.0,3272.0,98.0,98.2,0.0,0.0,52.0,56.0,6.0,6.0,0.0,20.0,,,,0.0,2.0,3.0,2.0,2.0,2.0,5.0,5.0,3.0,7.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,22600.0,19632.0,5300.0,15500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90250652,,3050.0,3050.0,3050.0, 36 months,13.99,104.23,C,C3,Gardner,10+ years,MORTGAGE,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90250652,,home_improvement,Home improvement,903xx,CA,20.34,0.0,Aug-2001,660.0,664.0,1.0,,66.0,18.0,1.0,15412.0,50.9,30.0,w,696.98,696.98,3020.3,3020.3,2353.02,667.28,0.0,0.0,0.0,Mar-2019,104.23,Apr-2019,Mar-2019,619.0,615.0,0.0,,1.0,Individual,,,,0.0,0.0,15412.0,1.0,0.0,0.0,0.0,,0.0,,5.0,8.0,2543.0,51.0,30300.0,0.0,0.0,2.0,8.0,907.0,3064.0,81.1,0.0,0.0,,181.0,1.0,1.0,0.0,25.0,,1.0,,0.0,9.0,14.0,9.0,18.0,0.0,18.0,30.0,14.0,18.0,0.0,0.0,0.0,5.0,100.0,66.7,1.0,0.0,30300.0,15412.0,16200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90209104,,35000.0,35000.0,35000.0, 60 months,14.49,823.31,C,C4,realtor,10+ years,OWN,150000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90209104,,major_purchase,Major purchase,600xx,IL,12.77,0.0,Oct-2001,670.0,674.0,0.0,29.0,46.0,4.0,1.0,17337.0,96.9,8.0,w,0.0,0.0,8506.78,8506.78,2080.02,2831.66,41.17,3553.93,639.7074,May-2017,864.48,,May-2017,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,33515.0,0.0,1.0,0.0,0.0,46.0,16178.0,53.0,0.0,0.0,492.0,70.0,17900.0,0.0,5.0,0.0,0.0,8379.0,133.0,85.2,0.0,0.0,46.0,179.0,47.0,46.0,0.0,113.0,,,29.0,0.0,2.0,3.0,2.0,3.0,1.0,3.0,7.0,3.0,4.0,0.0,0.0,0.0,0.0,83.3,50.0,0.0,1.0,48249.0,33515.0,900.0,30349.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90144280,,15000.0,15000.0,15000.0, 36 months,12.79,503.9,C,C1,manufacturing associate,10+ years,RENT,48000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90144280,,credit_card,Credit card refinancing,448xx,OH,18.23,0.0,Sep-2005,670.0,674.0,1.0,51.0,,10.0,0.0,14355.0,50.7,19.0,w,0.0,0.0,17314.7781197579,17314.78,15000.0,2314.78,0.0,0.0,0.0,Apr-2018,8420.8,,Apr-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,16320.0,1.0,1.0,0.0,0.0,29.0,1965.0,22.0,4.0,9.0,3373.0,44.0,28300.0,0.0,0.0,4.0,9.0,1632.0,127.0,96.4,0.0,0.0,132.0,131.0,4.0,4.0,0.0,19.0,51.0,4.0,51.0,0.0,1.0,9.0,1.0,7.0,4.0,9.0,15.0,9.0,10.0,0.0,0.0,0.0,4.0,78.9,100.0,0.0,0.0,37141.0,16320.0,3500.0,8841.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694797,,12000.0,12000.0,12000.0, 36 months,9.49,384.34,B,B2,Web Technology App Lead,4 years,MORTGAGE,87000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694797,,debt_consolidation,Debt consolidation,440xx,OH,21.35,0.0,Oct-2004,750.0,754.0,0.0,30.0,,11.0,0.0,7091.0,40.5,34.0,w,0.0,0.0,13382.1630238428,13382.16,12000.0,1382.16,0.0,0.0,0.0,Apr-2018,6854.71,,Apr-2018,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,234637.0,0.0,5.0,1.0,2.0,11.0,54208.0,63.0,0.0,1.0,7046.0,59.0,17499.0,1.0,0.0,4.0,3.0,23464.0,8053.0,46.7,0.0,0.0,143.0,129.0,24.0,11.0,1.0,63.0,30.0,11.0,30.0,0.0,1.0,2.0,2.0,5.0,17.0,4.0,15.0,2.0,11.0,0.0,0.0,0.0,1.0,97.1,0.0,0.0,0.0,288814.0,61299.0,15099.0,86111.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681391,,2300.0,2300.0,2300.0, 36 months,8.99,73.13,B,B1,warehouse worker,10+ years,RENT,28000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681391,,other,Other,240xx,VA,20.96,0.0,Jul-2006,710.0,714.0,0.0,,65.0,6.0,1.0,1526.0,23.1,14.0,w,0.0,0.0,2492.9349141092002,2492.93,2300.0,192.93,0.0,0.0,0.0,Nov-2017,1618.24,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,13092.0,1.0,2.0,1.0,2.0,2.0,11566.0,65.0,0.0,1.0,626.0,54.0,6600.0,0.0,1.0,0.0,3.0,2182.0,4174.0,13.0,0.0,0.0,122.0,51.0,22.0,2.0,0.0,34.0,,22.0,,0.0,1.0,2.0,3.0,3.0,10.0,4.0,4.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,0.0,1.0,0.0,24298.0,13092.0,4800.0,17698.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90722234,,2000.0,2000.0,2000.0, 36 months,10.49,65.0,B,B3,,,RENT,9061.2,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90722234,,debt_consolidation,Debt consolidation,161xx,PA,20.53,0.0,Feb-2007,665.0,669.0,0.0,,,3.0,0.0,1571.0,33.4,11.0,w,0.0,0.0,2314.8615036752,2314.86,2000.0,314.86,0.0,0.0,0.0,Jan-2019,626.03,,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,283.0,3453.0,0.0,1.0,1.0,1.0,11.0,1882.0,78.0,0.0,1.0,751.0,49.0,4700.0,0.0,0.0,0.0,2.0,1151.0,349.0,68.3,0.0,0.0,115.0,109.0,22.0,11.0,0.0,109.0,,22.0,,0.0,1.0,2.0,1.0,3.0,6.0,2.0,5.0,2.0,3.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,7100.0,3453.0,1100.0,2400.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90945261,,6000.0,6000.0,6000.0, 36 months,12.79,201.56,C,C1,Satellite TV Installer Tech,2 years,RENT,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90945261,,debt_consolidation,Debt consolidation,718xx,AR,22.21,0.0,Oct-2006,685.0,689.0,2.0,34.0,,11.0,0.0,5968.0,22.6,20.0,w,0.0,0.0,2212.9,2212.9,1597.01,615.89,0.0,0.0,0.0,Sep-2017,201.56,,Mar-2019,499.0,0.0,0.0,34.0,1.0,Individual,,,,0.0,0.0,36235.0,1.0,3.0,0.0,1.0,21.0,30267.0,83.0,3.0,4.0,1728.0,58.0,26400.0,0.0,10.0,7.0,5.0,3294.0,6474.0,34.6,0.0,0.0,119.0,101.0,5.0,5.0,0.0,5.0,,0.0,34.0,1.0,5.0,7.0,6.0,6.0,11.0,8.0,9.0,7.0,11.0,0.0,0.0,0.0,3.0,95.0,0.0,0.0,0.0,62745.0,36235.0,9900.0,36345.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90785199,,3000.0,3000.0,3000.0, 36 months,10.99,98.21,B,B4,Signal Design Engineer,10+ years,RENT,87000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90785199,,other,Other,640xx,MO,5.5,0.0,Oct-2000,680.0,684.0,1.0,49.0,,3.0,0.0,988.0,30.9,17.0,w,662.64,662.64,2846.26,2846.26,2337.36,508.9,0.0,0.0,0.0,Mar-2019,98.21,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,379.0,16725.0,0.0,1.0,0.0,1.0,13.0,15737.0,86.0,0.0,2.0,0.0,77.0,3200.0,1.0,1.0,3.0,3.0,5575.0,,,0.0,0.0,175.0,191.0,17.0,13.0,1.0,,,0.0,,0.0,0.0,1.0,0.0,4.0,10.0,2.0,6.0,1.0,3.0,0.0,0.0,0.0,0.0,94.1,,0.0,0.0,21602.0,16725.0,0.0,18402.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90785116,,16000.0,16000.0,16000.0, 60 months,15.59,385.62,C,C5,Special Claims Representative,4 years,RENT,73000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90785116,,debt_consolidation,Debt consolidation,193xx,PA,15.75,0.0,Mar-2004,685.0,689.0,0.0,,,11.0,0.0,18335.0,50.0,14.0,w,9797.6,9797.6,11250.94,11250.94,6202.4,5048.54,0.0,0.0,0.0,Mar-2019,385.62,Apr-2019,Mar-2019,629.0,625.0,0.0,,1.0,Individual,,,,0.0,92.0,40397.0,0.0,3.0,1.0,1.0,12.0,22062.0,83.0,2.0,9.0,8083.0,68.0,30000.0,0.0,1.0,1.0,10.0,3672.0,5126.0,72.3,0.0,0.0,150.0,22.0,11.0,11.0,0.0,13.0,,11.0,,0.0,4.0,6.0,4.0,4.0,5.0,8.0,9.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,56736.0,40397.0,22900.0,26736.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561653,,2800.0,2800.0,2800.0, 36 months,14.49,96.37,C,C4,Financial Analyst,2 years,MORTGAGE,61000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561653,,home_improvement,Home improvement,331xx,FL,12.9,0.0,Oct-2010,715.0,719.0,0.0,,,6.0,0.0,8437.0,31.4,6.0,w,0.0,0.0,3261.2542421278004,3261.25,2800.0,461.25,0.0,0.0,0.0,Feb-2018,1817.95,,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,34320.0,1.0,1.0,1.0,1.0,10.0,23562.0,89.0,1.0,3.0,5323.0,61.0,26900.0,2.0,0.0,2.0,5.0,5720.0,17871.0,31.5,0.0,0.0,10.0,71.0,5.0,5.0,0.0,16.0,,10.0,,0.0,2.0,3.0,3.0,3.0,1.0,4.0,4.0,3.0,6.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,55996.0,34320.0,26100.0,26354.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90087594,,6000.0,6000.0,6000.0, 36 months,11.49,197.83,B,B5,Night Manger ,3 years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90087594,,debt_consolidation,Debt consolidation,700xx,LA,12.1,0.0,Sep-1998,670.0,674.0,0.0,,,12.0,0.0,4593.0,62.9,15.0,f,1333.16,1333.16,5733.24,5733.24,4666.84,1066.4,0.0,0.0,0.0,Mar-2019,197.83,Apr-2019,Mar-2019,579.0,575.0,0.0,,1.0,Individual,,,,0.0,0.0,209409.0,3.0,5.0,0.0,0.0,27.0,29500.0,92.0,2.0,3.0,1253.0,86.0,7300.0,3.0,0.0,3.0,4.0,17451.0,727.0,73.1,0.0,0.0,216.0,30.0,2.0,2.0,1.0,25.0,,0.0,,0.0,2.0,5.0,2.0,2.0,8.0,6.0,6.0,5.0,12.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,215277.0,34093.0,2700.0,32142.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90122055,,6000.0,6000.0,6000.0, 36 months,12.79,201.56,C,C1,overnight stocker,10+ years,OWN,25000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90122055,,other,Other,725xx,AR,23.76,0.0,Nov-2005,725.0,729.0,0.0,,,7.0,0.0,12425.0,90.0,13.0,w,1354.93,1354.93,5859.97,5859.97,4645.07,1214.9,0.0,0.0,0.0,Mar-2019,201.56,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,12543.0,0.0,1.0,0.0,0.0,25.0,118.0,4.0,1.0,2.0,1963.0,74.0,13800.0,0.0,0.0,1.0,2.0,1792.0,244.0,94.9,0.0,0.0,123.0,130.0,12.0,12.0,0.0,12.0,,10.0,,0.0,3.0,5.0,3.0,3.0,6.0,6.0,7.0,5.0,7.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,16880.0,12543.0,4800.0,3080.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90945178,,6000.0,6000.0,6000.0, 36 months,10.49,194.99,B,B3,Er registration clerk,10+ years,OWN,44000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90945178,,credit_card,Credit card refinancing,449xx,OH,15.22,0.0,Mar-1998,675.0,679.0,0.0,42.0,76.0,9.0,2.0,6465.0,53.4,21.0,w,0.0,0.0,6559.4066516273,6559.41,6000.0,559.41,0.0,0.0,0.0,Oct-2017,4418.02,,Oct-2018,779.0,775.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,23932.0,2.0,1.0,0.0,2.0,13.0,17467.0,89.0,2.0,7.0,1499.0,76.0,12100.0,6.0,2.0,6.0,9.0,2659.0,862.0,79.5,0.0,0.0,135.0,222.0,1.0,1.0,2.0,15.0,,0.0,69.0,4.0,3.0,5.0,3.0,4.0,4.0,8.0,15.0,5.0,9.0,0.0,0.0,0.0,2.0,81.0,66.7,1.0,0.0,31669.0,23932.0,4200.0,19569.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90885232,,13650.0,13650.0,13650.0, 60 months,9.49,286.61,B,B2,Master Plumber,2 years,OWN,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90885232,,credit_card,Credit card refinancing,594xx,MT,5.23,0.0,Mar-2011,700.0,704.0,0.0,,75.0,9.0,1.0,5861.0,22.2,15.0,w,7477.09,7477.09,8593.7,8593.7,6172.91,2420.79,0.0,0.0,0.0,Mar-2019,286.61,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,110200.0,2.0,0.0,0.0,1.0,22.0,0.0,,1.0,2.0,2407.0,22.0,26400.0,3.0,7.0,4.0,4.0,12244.0,9160.0,36.8,0.0,0.0,62.0,66.0,4.0,4.0,1.0,4.0,,7.0,,0.0,4.0,6.0,4.0,4.0,4.0,8.0,10.0,7.0,9.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,1.0,131400.0,5861.0,14500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90251497,,7850.0,7850.0,7850.0, 36 months,21.49,297.73,D,D5,Project Specialist 2,10+ years,OWN,43000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90251497,,debt_consolidation,Debt consolidation,242xx,VA,32.69,0.0,May-1996,670.0,674.0,1.0,31.0,,9.0,0.0,11233.0,83.2,40.0,w,1942.4,1942.4,8657.58,8657.58,5907.6,2749.98,0.0,0.0,0.0,Mar-2019,297.73,Apr-2019,Mar-2019,659.0,655.0,0.0,31.0,1.0,Individual,,,,0.0,243.0,87299.0,2.0,3.0,2.0,5.0,4.0,18922.0,88.0,0.0,0.0,7796.0,86.0,13500.0,1.0,15.0,1.0,5.0,9700.0,1369.0,88.4,0.0,0.0,151.0,244.0,49.0,4.0,2.0,49.0,36.0,1.0,31.0,1.0,3.0,5.0,3.0,7.0,24.0,5.0,14.0,5.0,9.0,0.0,0.0,0.0,2.0,82.5,66.7,0.0,0.0,115055.0,30155.0,11800.0,21555.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521566,,6000.0,6000.0,6000.0, 36 months,9.49,192.17,B,B2,Administrative Office Associate I,10+ years,MORTGAGE,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521566,,credit_card,Credit card refinancing,234xx,VA,12.48,0.0,Aug-2011,700.0,704.0,0.0,,,8.0,0.0,3062.0,25.3,10.0,w,0.0,0.0,6755.7204245231005,6755.72,6000.0,755.72,0.0,0.0,0.0,Jun-2018,3087.09,,Oct-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,135901.0,1.0,1.0,1.0,2.0,9.0,17468.0,89.0,1.0,2.0,811.0,65.0,12100.0,1.0,1.0,2.0,5.0,16988.0,5719.0,18.3,0.0,0.0,14.0,53.0,12.0,5.0,2.0,19.0,,6.0,,0.0,2.0,5.0,3.0,3.0,2.0,6.0,6.0,5.0,8.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,147661.0,20530.0,7000.0,19561.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89999424,,25000.0,25000.0,25000.0, 36 months,8.59,790.24,A,A5,Director of Sales,10+ years,MORTGAGE,300000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89999424,,debt_consolidation,Debt consolidation,900xx,CA,2.15,0.0,Apr-2003,680.0,684.0,0.0,30.0,,11.0,0.0,19541.0,53.5,21.0,w,0.0,0.0,27057.5321446938,27057.53,25000.0,2057.53,0.0,0.0,0.0,Nov-2017,16879.86,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,475057.0,0.0,0.0,0.0,1.0,23.0,0.0,,0.0,1.0,7645.0,54.0,36500.0,1.0,2.0,2.0,3.0,43187.0,11239.0,58.5,0.0,0.0,161.0,152.0,22.0,8.0,2.0,84.0,30.0,12.0,30.0,0.0,6.0,8.0,6.0,8.0,5.0,10.0,14.0,8.0,11.0,0.0,0.0,0.0,1.0,95.0,50.0,0.0,0.0,496500.0,19541.0,27100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89938294,,16000.0,16000.0,16000.0, 36 months,13.49,542.89,C,C2,NC Programming,10+ years,MORTGAGE,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89938294,,credit_card,Credit card refinancing,167xx,PA,25.29,0.0,Nov-2000,680.0,684.0,0.0,,,14.0,0.0,17388.0,39.8,29.0,w,0.0,0.0,17985.2205411132,17985.22,16000.0,1985.22,0.0,0.0,0.0,Oct-2017,12025.42,,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,143761.0,2.0,2.0,2.0,3.0,3.0,32733.0,86.0,1.0,3.0,5015.0,61.0,43700.0,1.0,8.0,4.0,7.0,10269.0,18524.0,48.0,0.0,0.0,190.0,137.0,1.0,1.0,2.0,1.0,,2.0,,0.0,7.0,8.0,8.0,9.0,14.0,11.0,13.0,8.0,14.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,183754.0,50121.0,35600.0,38054.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90775188,,18000.0,18000.0,18000.0, 36 months,12.79,604.68,C,C1,CPI supervisor ,10+ years,MORTGAGE,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90775188,,debt_consolidation,Debt consolidation,322xx,FL,19.56,7.0,Oct-2000,665.0,669.0,0.0,19.0,,14.0,0.0,9330.0,93.3,35.0,w,0.0,0.0,10641.11,10641.11,6675.83,2389.97,0.0,1575.31,283.5558,Jan-2018,613.07,,Jul-2018,524.0,520.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,48876.0,2.0,9.0,0.0,0.0,44.0,39546.0,74.0,2.0,2.0,4190.0,77.0,10000.0,0.0,0.0,7.0,2.0,3491.0,356.0,94.3,0.0,0.0,191.0,190.0,0.0,0.0,0.0,27.0,,2.0,,7.0,2.0,5.0,2.0,4.0,27.0,5.0,8.0,5.0,14.0,0.0,0.0,0.0,2.0,37.1,100.0,0.0,0.0,63604.0,48876.0,6200.0,53604.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88989707,,17500.0,17500.0,17500.0, 60 months,14.49,411.66,C,C4,EMS Adminstrator,10+ years,MORTGAGE,126000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88989707,,credit_card,Credit card refinancing,761xx,TX,22.97,1.0,May-1985,675.0,679.0,1.0,9.0,,14.0,0.0,39848.0,86.4,34.0,w,10592.08,10592.08,11924.05,11924.05,6907.92,5016.13,0.0,0.0,0.0,Mar-2019,411.66,Apr-2019,Mar-2019,684.0,680.0,0.0,84.0,1.0,Individual,,,,0.0,0.0,215830.0,1.0,2.0,0.0,1.0,23.0,12474.0,32.0,0.0,1.0,7172.0,63.0,49900.0,1.0,6.0,4.0,3.0,15416.0,651.0,95.6,0.0,0.0,149.0,376.0,17.0,3.0,5.0,43.0,,5.0,9.0,1.0,3.0,10.0,3.0,7.0,8.0,10.0,18.0,10.0,14.0,0.0,0.0,0.0,1.0,87.9,100.0,0.0,0.0,258789.0,66691.0,14700.0,39297.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403620,,5000.0,5000.0,5000.0, 36 months,13.99,170.87,C,C3,Legal Assistant,4 years,RENT,48568.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403620,,debt_consolidation,Debt consolidation,333xx,FL,11.32,0.0,Apr-2002,665.0,669.0,1.0,,56.0,3.0,1.0,3185.0,74.1,10.0,w,0.0,0.0,5892.194865175999,5892.19,5000.0,892.19,0.0,0.0,0.0,May-2018,2820.42,,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,2544.0,16336.0,0.0,1.0,0.0,1.0,21.0,13151.0,58.0,0.0,2.0,1866.0,61.0,4300.0,1.0,0.0,1.0,3.0,5445.0,1115.0,74.1,0.0,0.0,123.0,173.0,14.0,14.0,1.0,14.0,,4.0,,0.0,2.0,2.0,2.0,4.0,5.0,2.0,4.0,2.0,3.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,26974.0,16336.0,4300.0,22674.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90218808,,25750.0,25750.0,25750.0, 36 months,11.49,849.01,B,B5,Vice President of Contract Services,10+ years,RENT,131300.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90218808,,credit_card,Credit card refinancing,080xx,NJ,16.57,0.0,Jul-1996,660.0,664.0,2.0,37.0,,12.0,0.0,19524.0,43.9,34.0,w,0.0,0.0,18370.47,18370.47,11754.93,3550.94,0.0,3064.6,551.628,Apr-2018,849.01,,Mar-2019,524.0,520.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,48979.0,1.0,3.0,1.0,4.0,11.0,29455.0,82.0,2.0,10.0,4297.0,61.0,44500.0,1.0,2.0,8.0,14.0,4082.0,4361.0,69.5,0.0,0.0,127.0,242.0,3.0,3.0,1.0,20.0,43.0,0.0,43.0,2.0,3.0,7.0,3.0,8.0,12.0,9.0,21.0,7.0,12.0,0.0,0.0,0.0,3.0,87.5,33.3,0.0,0.0,80600.0,48979.0,14300.0,36100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Nov-2018,ACTIVE,Oct-2018,7355.0,50.0,12.0 +90327780,,20000.0,20000.0,20000.0, 36 months,10.99,654.68,B,B4,Salesperson ,2 years,RENT,55000.0,Source Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90327780,,debt_consolidation,Debt consolidation,066xx,CT,10.04,0.0,Feb-2005,720.0,724.0,1.0,,,13.0,0.0,6823.0,18.1,23.0,w,5632.92,5632.92,17664.15,17664.15,14367.08,3297.07,0.0,0.0,0.0,Jan-2019,654.68,Apr-2019,Mar-2019,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,20929.0,3.0,1.0,1.0,1.0,6.0,13697.0,97.0,2.0,5.0,3332.0,39.0,37800.0,2.0,0.0,7.0,7.0,1610.0,20077.0,25.4,0.0,0.0,139.0,114.0,2.0,2.0,0.0,2.0,,6.0,,0.0,3.0,3.0,6.0,8.0,6.0,10.0,14.0,3.0,13.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,54291.0,20929.0,26900.0,14167.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90074445,,12000.0,12000.0,12000.0, 60 months,12.79,271.75,C,C1,ADRC Supervisor,10+ years,MORTGAGE,74500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90074445,,debt_consolidation,Debt consolidation,315xx,GA,13.37,0.0,Jul-1996,660.0,664.0,0.0,,44.0,6.0,1.0,6081.0,25.7,26.0,f,0.0,0.0,13518.9413357545,13518.94,12000.0,1518.94,0.0,0.0,0.0,Oct-2017,10538.22,,Oct-2018,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,32798.0,0.0,1.0,0.0,1.0,14.0,26717.0,,0.0,1.0,3043.0,26.0,23700.0,3.0,3.0,3.0,2.0,8200.0,17619.0,25.7,0.0,0.0,125.0,242.0,15.0,14.0,0.0,15.0,,3.0,,0.0,2.0,2.0,3.0,11.0,11.0,5.0,15.0,2.0,5.0,0.0,0.0,0.0,0.0,100.0,33.3,1.0,0.0,59351.0,32798.0,23700.0,35651.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90855262,,35000.0,35000.0,35000.0, 36 months,9.49,1120.99,B,B2,SR. Regional Mngr,10+ years,MORTGAGE,147000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90855262,,credit_card,Credit card refinancing,662xx,KS,13.14,0.0,Mar-2003,675.0,679.0,1.0,,24.0,20.0,2.0,37823.0,45.2,34.0,w,0.0,0.0,38422.439675544505,38422.44,35000.0,3422.44,0.0,0.0,0.0,Jan-2018,89.18,,Jan-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,383472.0,1.0,2.0,0.0,2.0,15.0,38351.0,84.0,1.0,3.0,14470.0,59.0,83700.0,0.0,1.0,1.0,5.0,21304.0,28926.0,56.2,0.0,0.0,162.0,149.0,4.0,4.0,2.0,4.0,,4.0,,0.0,7.0,9.0,10.0,13.0,6.0,17.0,26.0,9.0,20.0,0.0,0.0,0.0,1.0,100.0,44.4,0.0,2.0,456933.0,76174.0,66100.0,45483.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414463,,12100.0,12100.0,12100.0, 36 months,8.59,382.48,A,A5,Driver,10+ years,RENT,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414463,,credit_card,Credit card refinancing,106xx,NY,26.82,1.0,Jun-2000,715.0,719.0,0.0,23.0,,9.0,0.0,44523.0,46.3,18.0,w,2602.0,2602.0,11083.95,11083.95,9498.0,1585.95,0.0,0.0,0.0,Mar-2019,382.48,Apr-2019,Mar-2019,714.0,710.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,372533.0,0.0,1.0,0.0,0.0,26.0,6306.0,31.0,0.0,0.0,33496.0,39.0,57800.0,0.0,0.0,0.0,0.0,41393.0,5901.0,61.5,0.0,0.0,138.0,195.0,43.0,26.0,2.0,104.0,,,,1.0,2.0,3.0,4.0,4.0,6.0,7.0,10.0,4.0,9.0,0.0,0.0,1.0,0.0,94.4,50.0,0.0,0.0,494812.0,50829.0,48000.0,20640.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90196630,,35000.0,35000.0,35000.0, 60 months,22.39,974.44,E,E1,Board Operator,10+ years,MORTGAGE,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90196630,,debt_consolidation,Debt consolidation,775xx,TX,24.24,0.0,May-2006,700.0,704.0,1.0,46.0,,10.0,0.0,6062.0,41.2,40.0,w,0.0,0.0,35261.22,35261.22,35000.0,261.22,0.0,0.0,0.0,Oct-2016,35304.76,,Sep-2016,704.0,700.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,209952.0,1.0,5.0,0.0,6.0,14.0,63888.0,71.0,2.0,3.0,5874.0,67.0,14700.0,3.0,12.0,1.0,10.0,20995.0,326.0,94.7,0.0,0.0,123.0,124.0,4.0,4.0,4.0,4.0,,2.0,59.0,1.0,1.0,2.0,1.0,2.0,30.0,4.0,6.0,2.0,10.0,0.0,0.0,0.0,3.0,95.0,100.0,0.0,0.0,253954.0,69950.0,6200.0,90254.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88861755,,30000.0,30000.0,30000.0, 60 months,23.99,862.87,E,E2,Executive Assistant,4 years,OWN,90000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88861755,,credit_card,Credit card refinancing,117xx,NY,28.99,1.0,Feb-1993,685.0,689.0,0.0,15.0,,28.0,0.0,49570.0,62.6,36.0,w,19799.64,19799.64,25070.35,25070.35,10200.36,14869.99,0.0,0.0,0.0,Mar-2019,862.87,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,62477.0,0.0,3.0,1.0,2.0,12.0,12907.0,48.0,0.0,1.0,8676.0,59.0,79200.0,0.0,0.0,0.0,3.0,2403.0,16285.0,73.0,0.0,0.0,25.0,197.0,17.0,12.0,2.0,17.0,,13.0,15.0,0.0,11.0,17.0,13.0,15.0,4.0,24.0,29.0,17.0,28.0,0.0,0.0,0.0,1.0,97.2,61.5,0.0,0.0,106160.0,62477.0,60300.0,26960.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90138672,,11200.0,11200.0,11200.0, 60 months,10.49,240.68,B,B3,Office Manager,10+ years,OWN,47360.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90138672,,credit_card,Credit card refinancing,487xx,MI,25.24,1.0,Apr-1983,710.0,714.0,1.0,11.0,,33.0,0.0,16518.0,18.2,61.0,w,6510.62,6510.62,6973.19,6973.19,4689.38,2283.81,0.0,0.0,0.0,Mar-2019,240.68,Apr-2019,Mar-2019,689.0,685.0,0.0,80.0,1.0,Individual,,,,0.0,0.0,39242.0,5.0,1.0,0.0,3.0,13.0,22724.0,86.0,6.0,17.0,1796.0,34.0,90800.0,3.0,4.0,5.0,20.0,1353.0,51373.0,9.1,0.0,0.0,209.0,401.0,1.0,1.0,0.0,2.0,57.0,2.0,11.0,1.0,9.0,12.0,14.0,23.0,9.0,32.0,52.0,12.0,33.0,0.0,0.0,0.0,6.0,93.4,0.0,0.0,0.0,117163.0,39242.0,56500.0,26363.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90775181,,15000.0,15000.0,15000.0, 36 months,16.99,534.72,D,D1,Dealer,1 year,RENT,46000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90775181,,debt_consolidation,Debt consolidation,891xx,NV,20.35,4.0,Oct-2001,665.0,669.0,0.0,11.0,,12.0,0.0,7574.0,47.3,14.0,f,0.0,0.0,15801.081132626101,15801.08,15000.0,801.08,0.0,0.0,0.0,Jan-2017,14745.8,,Mar-2019,694.0,690.0,0.0,11.0,1.0,Individual,,,,0.0,0.0,35491.0,2.0,1.0,1.0,1.0,6.0,27917.0,96.0,2.0,4.0,4018.0,79.0,16000.0,2.0,0.0,4.0,5.0,3226.0,5026.0,60.1,0.0,0.0,143.0,179.0,0.0,0.0,0.0,0.0,11.0,6.0,11.0,1.0,4.0,4.0,6.0,6.0,3.0,11.0,11.0,4.0,12.0,0.0,0.0,1.0,3.0,64.3,33.3,0.0,0.0,45212.0,35491.0,12600.0,29212.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694011,,15000.0,15000.0,15000.0, 60 months,17.99,380.82,D,D2,Teacher,6 years,RENT,48000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694011,,credit_card,Credit card refinancing,713xx,LA,23.97,0.0,Nov-2004,670.0,674.0,1.0,57.0,,6.0,0.0,14630.0,82.2,21.0,w,9386.88,9386.88,11028.79,11028.79,5613.12,5415.67,0.0,0.0,0.0,Mar-2019,380.82,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,53234.0,1.0,2.0,0.0,1.0,23.0,38604.0,78.0,2.0,2.0,6753.0,79.0,17800.0,0.0,1.0,1.0,3.0,8872.0,3170.0,82.2,0.0,0.0,142.0,62.0,5.0,5.0,0.0,5.0,,5.0,,0.0,4.0,4.0,4.0,5.0,15.0,4.0,6.0,4.0,6.0,0.0,0.0,0.0,2.0,95.2,75.0,0.0,0.0,67333.0,53234.0,17800.0,49533.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197408,,35000.0,35000.0,35000.0, 60 months,21.49,956.55,D,D5,Feeder Driver,10+ years,OWN,125000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197408,,debt_consolidation,Debt consolidation,922xx,CA,13.97,0.0,Jun-2005,685.0,689.0,0.0,,,12.0,0.0,18006.0,52.3,22.0,w,22603.66,22603.66,27698.16,27698.16,12396.34,15301.82,0.0,0.0,0.0,Mar-2019,956.55,Apr-2019,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,74119.0,0.0,2.0,1.0,2.0,11.0,56113.0,87.0,2.0,3.0,10295.0,75.0,34400.0,0.0,1.0,8.0,6.0,6177.0,7386.0,62.3,0.0,0.0,127.0,135.0,10.0,10.0,3.0,10.0,,4.0,,0.0,2.0,4.0,4.0,5.0,6.0,10.0,13.0,4.0,12.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,98776.0,74119.0,19600.0,64376.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191876,,3000.0,3000.0,3000.0, 36 months,13.99,102.52,C,C3,Smoothtop tech,10+ years,RENT,42000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191876,,credit_card,Credit card refinancing,370xx,TN,25.63,0.0,Jul-2005,670.0,674.0,0.0,,61.0,29.0,1.0,5014.0,10.0,85.0,w,0.0,0.0,3321.5294100688,3321.53,3000.0,321.53,0.0,0.0,0.0,Aug-2017,2401.18,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,160.0,33411.0,1.0,2.0,2.0,4.0,9.0,28397.0,91.0,2.0,9.0,3770.0,41.0,49900.0,2.0,1.0,7.0,13.0,1336.0,6934.0,37.0,0.0,0.0,112.0,134.0,6.0,6.0,1.0,6.0,,8.0,,0.0,2.0,7.0,7.0,28.0,9.0,27.0,75.0,7.0,28.0,0.0,0.0,0.0,4.0,100.0,16.7,1.0,0.0,81295.0,33411.0,11000.0,31395.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271949,,10000.0,10000.0,10000.0, 36 months,9.49,320.29,B,B2,Psychiatric Technician ,10+ years,RENT,65000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271949,,debt_consolidation,Debt consolidation,924xx,CA,19.33,0.0,Apr-2000,700.0,704.0,1.0,76.0,,7.0,0.0,7345.0,70.0,12.0,w,0.0,0.0,2779.0,2779.0,1225.26,370.92,0.0,1182.82,212.9076,Mar-2017,320.29,,Sep-2017,644.0,640.0,0.0,76.0,1.0,Individual,,,,0.0,0.0,48506.0,0.0,1.0,0.0,1.0,16.0,41161.0,,0.0,4.0,3427.0,70.0,10500.0,2.0,1.0,3.0,5.0,6929.0,2355.0,75.7,0.0,0.0,197.0,81.0,13.0,13.0,0.0,13.0,,1.0,76.0,1.0,5.0,5.0,5.0,5.0,5.0,6.0,7.0,5.0,7.0,0.0,0.0,0.0,0.0,100.0,60.0,0.0,0.0,60195.0,48506.0,9700.0,49695.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90119204,,3000.0,3000.0,3000.0, 36 months,13.99,102.52,C,C3,Massage Therapist,< 1 year,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90119204,,credit_card,Credit card refinancing,850xx,AZ,21.6,1.0,Mar-1999,675.0,679.0,1.0,11.0,,9.0,0.0,4689.0,50.4,22.0,w,0.0,0.0,3549.8520497575,3549.85,3000.0,549.85,0.0,0.0,0.0,Jun-2018,1604.3,,Jul-2018,689.0,685.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,33646.0,2.0,3.0,0.0,1.0,13.0,28957.0,91.0,2.0,2.0,1758.0,82.0,9300.0,0.0,2.0,2.0,3.0,3738.0,379.0,90.0,0.0,0.0,103.0,210.0,4.0,4.0,2.0,4.0,,0.0,11.0,2.0,2.0,4.0,2.0,2.0,9.0,6.0,11.0,4.0,9.0,0.0,0.0,0.0,2.0,72.7,100.0,0.0,0.0,41072.0,33646.0,3800.0,31772.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90150597,,2400.0,2400.0,2400.0, 36 months,8.59,75.87,A,A5,Senior Account Manager,10+ years,MORTGAGE,97000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90150597,,small_business,Business,129xx,NY,14.91,0.0,Sep-1982,725.0,729.0,1.0,45.0,,12.0,0.0,41751.0,76.2,21.0,w,515.9,515.9,2199.08,2199.08,1884.1,314.98,0.0,0.0,0.0,Mar-2019,75.87,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,165691.0,1.0,4.0,3.0,3.0,1.0,24202.0,91.0,0.0,0.0,32286.0,81.0,54800.0,0.0,0.0,1.0,3.0,15063.0,4921.0,89.3,0.0,0.0,160.0,408.0,80.0,1.0,4.0,80.0,,1.0,,0.0,3.0,4.0,3.0,4.0,8.0,6.0,9.0,4.0,12.0,0.0,0.0,0.0,3.0,95.2,66.7,0.0,0.0,207349.0,65953.0,46200.0,26549.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88884678,,30000.0,30000.0,30000.0, 36 months,13.49,1017.92,C,C2,Finance Manager,4 years,MORTGAGE,145000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88884678,,debt_consolidation,Debt consolidation,346xx,FL,19.08,1.0,Mar-1996,670.0,674.0,1.0,18.0,59.0,13.0,1.0,27767.0,46.4,35.0,w,6815.28,6815.28,29539.42,29539.42,23184.72,6354.7,0.0,0.0,0.0,Mar-2019,1017.92,Apr-2019,Mar-2019,704.0,700.0,0.0,18.0,1.0,Individual,,,,0.0,0.0,419721.0,3.0,3.0,4.0,6.0,5.0,65257.0,91.0,4.0,6.0,15142.0,71.0,59800.0,1.0,6.0,5.0,13.0,32286.0,23209.0,49.2,0.0,0.0,187.0,246.0,2.0,2.0,5.0,6.0,67.0,5.0,18.0,6.0,3.0,5.0,5.0,9.0,10.0,9.0,20.0,6.0,13.0,0.0,0.0,1.0,8.0,82.9,0.0,0.0,0.0,465951.0,93024.0,45700.0,71459.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90257018,,15000.0,15000.0,15000.0, 36 months,10.49,487.47,B,B3,Food Service Director,10+ years,OWN,65000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90257018,,credit_card,Credit card refinancing,323xx,FL,22.45,0.0,Feb-1991,700.0,704.0,1.0,,,6.0,0.0,12951.0,94.5,16.0,w,3306.75,3306.75,14163.04,14163.04,11693.25,2469.79,0.0,0.0,0.0,Mar-2019,487.47,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,136.0,42709.0,2.0,3.0,1.0,5.0,5.0,29758.0,77.0,1.0,3.0,10689.0,81.0,13700.0,1.0,8.0,2.0,8.0,7118.0,311.0,97.2,0.0,0.0,170.0,307.0,6.0,5.0,0.0,15.0,,3.0,,0.0,1.0,3.0,1.0,1.0,12.0,3.0,4.0,3.0,6.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,52470.0,42709.0,11000.0,38770.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90039614,,6000.0,6000.0,6000.0, 36 months,11.49,197.83,B,B5,supervisor ,10+ years,OWN,55000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90039614,,vacation,Vacation,078xx,NJ,26.38,0.0,Sep-2000,680.0,684.0,0.0,33.0,28.0,14.0,1.0,5377.0,22.7,34.0,w,1333.16,1333.16,5727.49,5727.49,4666.84,1060.65,0.0,0.0,0.0,Mar-2019,197.83,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,60284.0,2.0,2.0,2.0,3.0,8.0,54907.0,92.0,5.0,10.0,1757.0,72.0,23700.0,5.0,5.0,19.0,13.0,4637.0,11990.0,26.0,0.0,0.0,160.0,192.0,2.0,2.0,2.0,4.0,,0.0,,0.0,5.0,8.0,5.0,11.0,8.0,12.0,24.0,8.0,14.0,0.0,0.0,0.0,7.0,96.2,0.0,1.0,0.0,83375.0,60284.0,16200.0,59675.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90106217,,10400.0,10400.0,10400.0, 60 months,9.49,218.37,B,B2,Hospital Liaison,< 1 year,MORTGAGE,82400.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90106217,,credit_card,Credit card refinancing,060xx,CT,25.91,0.0,Nov-1987,690.0,694.0,0.0,26.0,,19.0,0.0,23873.0,50.5,47.0,w,5982.58,5982.58,6350.62,6350.62,4417.42,1933.2,0.0,0.0,0.0,Mar-2019,218.37,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,220601.0,0.0,4.0,0.0,1.0,21.0,17518.0,53.0,3.0,6.0,8641.0,52.0,47300.0,1.0,2.0,1.0,7.0,12256.0,14042.0,54.3,0.0,0.0,121.0,346.0,8.0,8.0,4.0,8.0,,10.0,26.0,0.0,5.0,10.0,7.0,17.0,10.0,14.0,33.0,10.0,19.0,0.0,0.0,0.0,3.0,97.8,71.4,0.0,0.0,273645.0,41391.0,30700.0,33020.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90945202,,10000.0,10000.0,10000.0, 60 months,9.49,209.97,B,B2,Quality manager,10+ years,MORTGAGE,55800.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90945202,,debt_consolidation,Debt consolidation,782xx,TX,17.85,0.0,Nov-2001,690.0,694.0,0.0,63.0,,8.0,0.0,10654.0,45.3,30.0,w,0.0,0.0,11411.167064946201,11411.17,10000.0,1411.17,0.0,0.0,0.0,Jun-2018,7395.38,,Nov-2018,744.0,740.0,0.0,,1.0,Individual,,,,0.0,218.0,142702.0,0.0,1.0,0.0,1.0,13.0,36056.0,,0.0,1.0,4903.0,45.0,23500.0,2.0,3.0,0.0,2.0,17838.0,97.0,98.1,0.0,0.0,148.0,178.0,13.0,13.0,2.0,69.0,,13.0,63.0,0.0,1.0,4.0,1.0,2.0,18.0,6.0,10.0,5.0,8.0,0.0,0.0,0.0,0.0,96.7,100.0,0.0,0.0,174170.0,46710.0,5000.0,40137.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89865352,,30000.0,30000.0,30000.0, 60 months,9.49,629.91,B,B2,Engineering Manager,4 years,MORTGAGE,144000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89865352,,debt_consolidation,Debt consolidation,934xx,CA,4.75,0.0,Jun-1992,690.0,694.0,1.0,74.0,,5.0,0.0,21072.0,41.7,15.0,w,0.0,0.0,32489.4331376636,32489.43,30000.0,2489.43,0.0,0.0,0.0,Sep-2017,26229.87,,Sep-2017,729.0,725.0,0.0,75.0,1.0,Individual,,,,0.0,0.0,780565.0,0.0,0.0,0.0,0.0,38.0,0.0,,0.0,0.0,21072.0,42.0,50500.0,1.0,0.0,1.0,0.0,195141.0,29428.0,41.7,0.0,0.0,38.0,291.0,57.0,38.0,3.0,99.0,,0.0,,1.0,1.0,1.0,4.0,7.0,1.0,4.0,10.0,1.0,5.0,0.0,0.0,0.0,0.0,93.3,33.3,0.0,0.0,810500.0,21072.0,50500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621828,,1600.0,1600.0,1600.0, 36 months,13.49,54.29,C,C2,Service Porter,< 1 year,RENT,19200.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621828,,debt_consolidation,Debt consolidation,245xx,VA,20.75,0.0,Oct-2010,755.0,759.0,0.0,,,8.0,0.0,756.0,15.8,8.0,w,0.0,0.0,465.95,465.95,230.29,61.98,0.0,173.68,31.2624,Feb-2017,50.6,,May-2017,539.0,535.0,0.0,,1.0,Individual,,,,0.0,0.0,13326.0,1.0,5.0,0.0,0.0,25.0,12570.0,74.0,1.0,2.0,661.0,61.0,4800.0,0.0,0.0,0.0,2.0,1666.0,1339.0,33.0,0.0,0.0,71.0,33.0,3.0,3.0,0.0,3.0,,15.0,,0.0,1.0,2.0,1.0,1.0,5.0,3.0,3.0,2.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,21695.0,13326.0,2000.0,16895.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90109954,,22000.0,22000.0,22000.0, 60 months,10.49,472.76,B,B3,VP of Operations,4 years,MORTGAGE,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90109954,,debt_consolidation,Debt consolidation,232xx,VA,10.52,0.0,May-1998,695.0,699.0,0.0,,,7.0,0.0,21219.0,72.2,19.0,f,0.0,0.0,25611.919825980698,25611.92,22000.0,3611.92,0.0,0.0,0.0,Jul-2018,16079.8,,Jul-2018,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,204617.0,0.0,0.0,0.0,0.0,27.0,0.0,,0.0,0.0,10343.0,72.0,29400.0,0.0,0.0,0.0,1.0,34103.0,1521.0,92.8,0.0,0.0,124.0,220.0,31.0,19.0,4.0,61.0,,21.0,,0.0,3.0,5.0,3.0,4.0,5.0,6.0,10.0,5.0,7.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,217400.0,21219.0,21000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90250955,,17025.0,17025.0,17025.0, 36 months,18.99,623.99,D,D3,Stylists ,7 years,MORTGAGE,62000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90250955,,debt_consolidation,Debt consolidation,331xx,FL,33.58,0.0,Oct-2002,710.0,714.0,1.0,30.0,,9.0,0.0,81826.0,84.2,20.0,f,0.0,0.0,12461.84,12461.84,8265.88,4195.96,0.0,0.0,0.0,Jun-2018,623.99,,Feb-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,301433.0,0.0,1.0,0.0,0.0,26.0,4205.0,26.0,0.0,1.0,4852.0,56.0,82600.0,1.0,0.0,2.0,1.0,37679.0,148.0,97.0,0.0,0.0,156.0,167.0,17.0,17.0,1.0,32.0,,2.0,,0.0,1.0,6.0,1.0,4.0,5.0,6.0,13.0,6.0,9.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,387500.0,86031.0,5000.0,16200.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Oct-2018,BROKEN,Sep-2018,5069.0,55.01,18.0 +90795163,,13275.0,13275.0,13275.0, 36 months,22.39,509.67,E,E1,Auto Tech,10+ years,MORTGAGE,78000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90795163,,debt_consolidation,Debt consolidation,333xx,FL,20.51,1.0,Jul-2000,660.0,664.0,2.0,13.0,,9.0,0.0,7539.0,82.8,17.0,w,6927.59,6927.59,11358.35,11358.35,6347.41,4959.98,50.96,0.0,0.0,Dec-2018,509.67,Apr-2019,Mar-2019,629.0,625.0,0.0,29.0,1.0,Individual,,,,0.0,0.0,362840.0,1.0,1.0,3.0,5.0,7.0,17037.0,79.0,1.0,2.0,2154.0,80.0,9100.0,4.0,0.0,5.0,7.0,40316.0,1515.0,82.2,0.0,0.0,194.0,129.0,4.0,4.0,3.0,22.0,41.0,0.0,41.0,2.0,4.0,5.0,5.0,6.0,7.0,6.0,7.0,5.0,9.0,0.0,0.0,0.0,4.0,80.0,80.0,0.0,0.0,377395.0,24576.0,8500.0,21600.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,NATURAL_DISASTER,COMPLETED,3.0,194.59,Oct-2017,Dec-2017,Oct-2017,3.0,26.0,Late (16-30 days),583.77,10797.54,331.15,Cash,N,,,,,, +90415679,,14400.0,14400.0,14400.0, 60 months,14.49,338.74,C,C4,HR Generalist,9 years,RENT,42951.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415679,,debt_consolidation,Debt consolidation,937xx,CA,32.13,0.0,Jun-2003,725.0,729.0,0.0,,,11.0,0.0,11639.0,40.3,21.0,w,8238.59,8238.59,10218.52,10218.52,6161.41,4057.11,0.0,0.0,0.0,Mar-2019,338.74,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,41235.0,1.0,3.0,0.0,2.0,13.0,29596.0,72.0,1.0,2.0,7532.0,59.0,28900.0,1.0,2.0,0.0,4.0,3749.0,8221.0,58.5,0.0,0.0,159.0,156.0,6.0,6.0,0.0,22.0,,15.0,,0.0,2.0,3.0,3.0,4.0,9.0,8.0,12.0,3.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,69797.0,41235.0,19800.0,40897.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89917143,,20000.0,20000.0,20000.0, 36 months,8.99,635.91,B,B1,ENGINEER,10+ years,RENT,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89917143,,debt_consolidation,Debt consolidation,483xx,MI,5.38,0.0,May-2012,740.0,744.0,0.0,,,15.0,0.0,8787.0,15.3,19.0,w,0.0,0.0,22165.5795737684,22165.58,20000.0,2165.58,0.0,0.0,0.0,Apr-2018,11365.1,,Apr-2018,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,8787.0,0.0,0.0,0.0,0.0,,0.0,,2.0,8.0,4021.0,15.0,57400.0,0.0,2.0,1.0,8.0,586.0,40601.0,17.1,0.0,0.0,,52.0,9.0,9.0,0.0,9.0,,12.0,,0.0,6.0,8.0,9.0,12.0,0.0,15.0,19.0,8.0,15.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,57400.0,8787.0,49000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88077680,,32000.0,32000.0,32000.0, 60 months,10.99,695.6,B,B4,President,2 years,RENT,250000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88077680,,debt_consolidation,Debt consolidation,112xx,NY,11.68,1.0,Dec-1997,680.0,684.0,0.0,3.0,,12.0,0.0,30953.0,51.7,30.0,w,0.0,0.0,15979.26,15979.26,10252.1,5727.16,0.0,0.0,0.0,Sep-2018,695.6,,Mar-2019,609.0,605.0,0.0,36.0,1.0,Individual,,,,0.0,0.0,69777.0,0.0,3.0,1.0,3.0,8.0,35532.0,65.0,0.0,0.0,18352.0,52.0,59900.0,0.0,0.0,1.0,3.0,6978.0,28411.0,46.3,0.0,0.0,148.0,225.0,70.0,8.0,0.0,105.0,3.0,10.0,3.0,1.0,4.0,5.0,6.0,13.0,8.0,8.0,21.0,5.0,12.0,0.0,0.0,0.0,1.0,93.3,0.0,0.0,0.0,133533.0,69777.0,52900.0,54890.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Jan-2019,ACTIVE,Jan-2019,10110.0,45.0,18.0 +90403943,,7200.0,7200.0,7200.0, 36 months,15.59,251.68,C,C5,Communications Specialist,10+ years,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403943,,debt_consolidation,Debt consolidation,120xx,NY,32.08,0.0,Jan-1998,680.0,684.0,1.0,,,13.0,0.0,39631.0,92.8,34.0,w,1673.48,1673.48,7292.48,7292.48,5526.52,1765.96,0.0,0.0,0.0,Mar-2019,251.68,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,300775.0,1.0,3.0,0.0,2.0,18.0,39121.0,60.0,2.0,3.0,13339.0,73.0,42700.0,0.0,1.0,2.0,5.0,23137.0,0.0,100.1,0.0,0.0,161.0,224.0,0.0,0.0,3.0,17.0,,5.0,,0.0,7.0,9.0,7.0,9.0,14.0,9.0,17.0,9.0,13.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,369357.0,78752.0,37600.0,65657.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541646,,5600.0,5600.0,5600.0, 36 months,17.99,202.43,D,D2,LMF operator ,6 years,MORTGAGE,90000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541646,,other,Other,365xx,AL,23.16,1.0,May-2002,675.0,679.0,1.0,9.0,,12.0,0.0,15214.0,53.0,37.0,w,0.0,0.0,6413.5048083465,6413.5,5600.0,813.5,0.0,0.0,0.0,Aug-2017,4597.23,,Aug-2017,679.0,675.0,1.0,9.0,1.0,Individual,,,,0.0,0.0,212197.0,3.0,4.0,4.0,4.0,3.0,86363.0,85.0,1.0,2.0,6856.0,75.0,28700.0,4.0,4.0,5.0,7.0,21220.0,12892.0,53.1,0.0,0.0,172.0,148.0,2.0,2.0,1.0,2.0,57.0,1.0,57.0,1.0,3.0,4.0,4.0,10.0,19.0,7.0,16.0,4.0,12.0,0.0,0.0,1.0,5.0,94.6,50.0,0.0,0.0,252837.0,101577.0,27500.0,111313.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405205,,15000.0,15000.0,15000.0, 60 months,13.99,348.95,C,C3,Officer,< 1 year,OWN,85000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405205,,debt_consolidation,Debt consolidation,070xx,NJ,15.42,0.0,Mar-2002,695.0,699.0,1.0,73.0,,27.0,0.0,13891.0,78.0,32.0,w,7355.63,7355.63,11613.06,11613.06,7644.37,3968.69,0.0,0.0,0.0,Mar-2019,400.0,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,477463.0,0.0,21.0,0.0,6.0,14.0,95019.0,112.0,0.0,0.0,8452.0,105.0,17800.0,1.0,0.0,1.0,7.0,17684.0,3909.0,78.0,0.0,0.0,174.0,168.0,146.0,11.0,1.0,146.0,,0.0,,0.0,4.0,4.0,4.0,4.0,26.0,4.0,4.0,4.0,27.0,0.0,0.0,0.0,1.0,96.8,50.0,0.0,0.0,473351.0,111727.0,17800.0,85181.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121850,,6500.0,6500.0,6500.0, 36 months,13.49,220.55,C,C2,driver,10+ years,OWN,85000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121850,,home_improvement,Home improvement,346xx,FL,14.44,1.0,Sep-2001,660.0,664.0,0.0,13.0,75.0,9.0,1.0,2252.0,10.0,32.0,w,1476.62,1476.62,6391.08,6391.08,5023.38,1367.7,0.0,0.0,0.0,Mar-2019,220.55,Apr-2019,Mar-2019,789.0,785.0,0.0,13.0,1.0,Individual,,,,0.0,0.0,42990.0,0.0,2.0,1.0,1.0,7.0,40738.0,85.0,0.0,1.0,765.0,61.0,22500.0,1.0,1.0,0.0,2.0,4777.0,18420.0,9.7,0.0,0.0,160.0,180.0,21.0,7.0,3.0,21.0,,20.0,,1.0,5.0,6.0,5.0,12.0,7.0,7.0,21.0,6.0,9.0,0.0,0.0,1.0,1.0,96.9,0.0,1.0,0.0,70725.0,42990.0,20400.0,48225.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724432,,3200.0,3200.0,3200.0, 36 months,10.49,104.0,B,B3,teacher,10+ years,MORTGAGE,75000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724432,,medical,Medical expenses,430xx,OH,8.05,0.0,Oct-2004,710.0,714.0,0.0,,,7.0,0.0,11111.0,72.1,23.0,w,0.0,0.0,3233.60251348,3233.6,3200.0,33.6,0.0,0.0,0.0,Feb-2017,23.46,,Feb-2017,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,354601.0,0.0,2.0,0.0,0.0,53.0,47329.0,129.0,1.0,2.0,11111.0,112.0,15400.0,0.0,0.0,0.0,3.0,50657.0,1589.0,87.5,0.0,0.0,143.0,116.0,10.0,10.0,4.0,10.0,,22.0,,0.0,1.0,1.0,3.0,7.0,11.0,4.0,8.0,1.0,7.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,356787.0,58440.0,12700.0,36737.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186105,,25900.0,25900.0,25900.0, 36 months,17.99,936.22,D,D2,,,RENT,60000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186105,,house,Home buying,346xx,FL,22.44,4.0,Apr-1988,705.0,709.0,1.0,11.0,,7.0,0.0,7521.0,32.8,21.0,w,0.0,0.0,22585.76,22585.76,15687.75,6898.01,0.0,0.0,0.0,Oct-2018,936.22,,Mar-2019,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,195667.0,0.0,2.0,0.0,0.0,30.0,5853.0,18.0,0.0,0.0,5940.0,24.0,22900.0,0.0,0.0,3.0,0.0,27952.0,14379.0,34.3,0.0,0.0,121.0,341.0,28.0,28.0,7.0,38.0,22.0,0.0,19.0,0.0,2.0,2.0,3.0,5.0,6.0,4.0,8.0,2.0,7.0,0.0,0.0,0.0,0.0,81.0,66.7,0.0,0.0,254473.0,13374.0,21900.0,33000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721406,,7000.0,7000.0,7000.0, 36 months,15.59,244.69,C,C5,Sergeant,10+ years,OWN,120000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721406,,debt_consolidation,Debt consolidation,117xx,NY,5.15,1.0,May-2006,670.0,674.0,0.0,23.0,,9.0,0.0,5112.0,40.9,13.0,f,0.0,0.0,7709.4695668519,7709.47,7000.0,709.47,0.0,0.0,0.0,Jun-2017,5984.52,,Mar-2019,669.0,665.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,248280.0,3.0,1.0,1.0,1.0,5.0,20919.0,97.0,4.0,4.0,3404.0,77.0,12500.0,0.0,0.0,3.0,5.0,27587.0,6488.0,44.1,0.0,0.0,5.0,124.0,2.0,2.0,2.0,2.0,25.0,5.0,25.0,0.0,5.0,5.0,5.0,5.0,1.0,7.0,10.0,5.0,9.0,0.0,0.0,1.0,5.0,69.2,0.0,0.0,0.0,274552.0,26031.0,11600.0,21490.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721425,,1000.0,1000.0,1000.0, 36 months,15.59,34.96,C,C5,dietary supervisor,4 years,MORTGAGE,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721425,,major_purchase,Major purchase,756xx,TX,10.29,0.0,Jun-2006,695.0,699.0,1.0,,,19.0,0.0,3465.0,26.9,41.0,w,232.27,232.27,1012.97,1012.97,767.73,245.24,0.0,0.0,0.0,Mar-2019,34.96,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,1246.0,4627.0,3.0,1.0,1.0,1.0,6.0,1162.0,89.0,3.0,15.0,711.0,33.0,12900.0,0.0,0.0,2.0,16.0,244.0,1183.0,69.7,0.0,0.0,123.0,110.0,2.0,2.0,0.0,2.0,,2.0,,0.0,6.0,11.0,6.0,6.0,23.0,18.0,18.0,11.0,19.0,0.0,0.0,0.0,4.0,100.0,83.3,0.0,0.0,14200.0,4627.0,3900.0,1300.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89777458,,20000.0,20000.0,20000.0, 60 months,25.29,590.44,E,E5,,,MORTGAGE,62000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89777458,,debt_consolidation,Debt consolidation,983xx,WA,24.33,0.0,May-2007,670.0,674.0,1.0,,,7.0,0.0,7447.0,60.5,19.0,f,0.0,0.0,4898.66,4898.66,697.42,1636.24,0.0,2565.0,461.7,Feb-2017,590.44,,Aug-2017,604.0,600.0,0.0,,1.0,Individual,,,,0.0,1922.0,42525.0,2.0,3.0,1.0,3.0,3.0,35078.0,85.0,1.0,2.0,1927.0,79.0,12300.0,3.0,7.0,5.0,5.0,6075.0,2295.0,46.6,0.0,0.0,112.0,43.0,3.0,3.0,0.0,3.0,,0.0,,0.0,2.0,4.0,2.0,2.0,14.0,4.0,4.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,53636.0,42525.0,4300.0,41336.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90835193,,15000.0,15000.0,15000.0, 60 months,24.99,440.19,E,E4,BM2,8 years,MORTGAGE,45672.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90835193,,debt_consolidation,Debt consolidation,235xx,VA,30.19,0.0,May-2007,685.0,689.0,0.0,24.0,,9.0,0.0,11285.0,69.7,24.0,w,0.0,0.0,10586.11,10586.11,3105.24,5772.75,22.01,1686.11,303.4998,Jul-2018,440.19,,Dec-2018,569.0,565.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,31378.0,1.0,5.0,1.0,2.0,1.0,20093.0,63.0,0.0,1.0,4179.0,65.0,16200.0,0.0,3.0,0.0,3.0,3486.0,2379.0,64.5,0.0,0.0,112.0,111.0,13.0,1.0,0.0,13.0,41.0,,41.0,3.0,2.0,3.0,2.0,2.0,19.0,4.0,5.0,3.0,9.0,0.0,0.0,0.0,1.0,83.3,0.0,0.0,0.0,48011.0,31378.0,6700.0,31811.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90242199,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,,,MORTGAGE,42000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90242199,,debt_consolidation,Debt consolidation,185xx,PA,23.89,0.0,Mar-2007,705.0,709.0,0.0,,,16.0,0.0,11356.0,40.1,27.0,w,2755.99,2755.99,11971.62,11971.62,9244.01,2727.61,0.0,0.0,0.0,Mar-2019,413.0,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,170531.0,2.0,4.0,1.0,2.0,3.0,55607.0,52.0,4.0,5.0,7616.0,44.0,28300.0,2.0,4.0,3.0,8.0,11369.0,9717.0,52.4,0.0,0.0,114.0,64.0,7.0,3.0,1.0,7.0,,7.0,,0.0,4.0,6.0,6.0,8.0,11.0,11.0,15.0,6.0,16.0,0.0,0.0,0.0,6.0,100.0,50.0,0.0,0.0,195027.0,66963.0,20400.0,62647.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724360,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,Executive Administrative Assistant,2 years,RENT,43000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724360,,debt_consolidation,Debt consolidation,010xx,MA,20.82,0.0,Nov-1998,725.0,729.0,0.0,,,6.0,0.0,15750.0,56.7,17.0,w,2765.21,2765.21,12007.93,12007.93,9234.79,2773.14,0.0,0.0,0.0,Mar-2019,413.0,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,30240.0,0.0,1.0,0.0,0.0,32.0,14490.0,64.0,0.0,1.0,8880.0,60.0,27800.0,0.0,0.0,0.0,1.0,6048.0,7050.0,69.1,0.0,0.0,149.0,204.0,21.0,21.0,1.0,21.0,,,,0.0,3.0,3.0,4.0,7.0,4.0,5.0,12.0,3.0,6.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,50356.0,30240.0,22800.0,22556.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90177755,,3000.0,3000.0,3000.0, 36 months,10.49,97.5,B,B3,On site foreman,10+ years,MORTGAGE,50000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90177755,,home_improvement,Home improvement,062xx,CT,12.55,0.0,Jul-2008,685.0,689.0,0.0,,,8.0,0.0,5707.0,28.0,9.0,w,658.98,658.98,2825.75,2825.75,2341.02,484.73,0.0,0.0,0.0,Mar-2019,97.5,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,930.0,139687.0,0.0,1.0,0.0,1.0,15.0,13122.0,84.0,0.0,2.0,3508.0,52.0,20400.0,2.0,0.0,1.0,3.0,17461.0,1924.0,67.9,0.0,0.0,96.0,98.0,13.0,13.0,2.0,50.0,,2.0,,0.0,2.0,3.0,2.0,2.0,2.0,5.0,5.0,3.0,8.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,177796.0,18829.0,6000.0,15712.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90955196,,28000.0,28000.0,28000.0, 60 months,22.39,779.56,E,E1,Fire Engineer,10+ years,MORTGAGE,87000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90955196,,debt_consolidation,Debt consolidation,762xx,TX,21.13,1.0,Jul-2001,695.0,699.0,0.0,23.0,,7.0,0.0,10782.0,70.0,11.0,f,0.0,0.0,35742.7676648638,35742.77,28000.0,7703.79,38.980000042600004,0.0,0.0,Feb-2018,24863.76,,Jan-2018,699.0,695.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,370140.0,0.0,3.0,0.0,1.0,24.0,44043.0,49.0,0.0,2.0,7098.0,52.0,15400.0,0.0,1.0,1.0,3.0,52877.0,302.0,95.9,0.0,0.0,182.0,61.0,24.0,24.0,2.0,24.0,23.0,7.0,23.0,0.0,1.0,2.0,2.0,2.0,5.0,3.0,4.0,2.0,7.0,0.0,0.0,1.0,0.0,90.9,50.0,0.0,0.0,445434.0,54825.0,7400.0,89284.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90965118,,35000.0,35000.0,35000.0, 36 months,12.79,1175.76,C,C1,Analyst,1 year,RENT,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90965118,,credit_card,Credit card refinancing,917xx,CA,15.74,0.0,Sep-2003,700.0,704.0,0.0,,,14.0,0.0,13715.0,70.0,22.0,f,0.0,0.0,36986.4656155795,36986.47,35000.0,1986.47,0.0,0.0,0.0,May-2017,4956.78,,Sep-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,63779.0,1.0,9.0,0.0,0.0,63.0,50064.0,45.0,1.0,1.0,5233.0,56.0,19600.0,0.0,0.0,0.0,1.0,4556.0,5885.0,70.0,0.0,0.0,156.0,130.0,5.0,5.0,0.0,5.0,,,,0.0,4.0,4.0,5.0,11.0,9.0,5.0,13.0,4.0,14.0,0.0,0.0,0.0,1.0,100.0,60.0,0.0,0.0,84258.0,63779.0,19600.0,64658.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90875214,,15000.0,15000.0,15000.0, 36 months,8.99,476.93,B,B1,Controls Engineer,3 years,MORTGAGE,87000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90875214,,credit_card,Credit card refinancing,481xx,MI,16.42,1.0,Jul-2001,730.0,734.0,0.0,7.0,,9.0,0.0,17108.0,28.3,21.0,f,0.0,0.0,15472.827250767099,15472.83,15000.0,472.83,0.0,0.0,0.0,Feb-2017,14049.53,,Feb-2017,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,188213.0,0.0,2.0,1.0,2.0,10.0,28379.0,76.0,0.0,1.0,9820.0,47.0,60400.0,1.0,0.0,4.0,3.0,20913.0,34992.0,32.8,0.0,0.0,180.0,182.0,22.0,10.0,1.0,28.0,,3.0,7.0,0.0,3.0,3.0,4.0,4.0,14.0,6.0,6.0,3.0,9.0,0.0,0.0,0.0,1.0,95.2,0.0,0.0,0.0,246910.0,45487.0,52100.0,37265.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90331467,,11650.0,11650.0,11650.0, 60 months,22.39,324.35,E,E1,,,OWN,30000.0,Verified,Oct-2016,Late (16-30 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90331467,,debt_consolidation,Debt consolidation,117xx,NY,16.88,1.0,May-1991,735.0,739.0,0.0,13.0,,7.0,0.0,1441.0,22.9,11.0,f,7779.52,7779.52,9170.47,9170.47,3870.48,5283.77,16.22,0.0,0.0,Mar-2019,340.57,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,93.0,9593.0,0.0,2.0,0.0,0.0,34.0,8152.0,43.0,2.0,2.0,724.0,38.0,6300.0,0.0,0.0,0.0,2.0,1370.0,1106.0,44.7,0.0,0.0,53.0,304.0,7.0,7.0,0.0,8.0,,,,0.0,2.0,4.0,2.0,2.0,2.0,5.0,9.0,4.0,7.0,0.0,0.0,0.0,2.0,90.9,0.0,0.0,0.0,25448.0,9593.0,2000.0,19148.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681938,,16800.0,16800.0,16800.0, 36 months,8.99,534.16,B,B1,VP of Sales,7 years,RENT,125000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681938,,major_purchase,Major purchase,970xx,OR,16.55,0.0,May-1998,665.0,669.0,0.0,,85.0,13.0,1.0,5398.0,23.3,31.0,w,0.0,0.0,10796.71,10796.71,7719.54,1858.49,26.71,1191.97,214.5546,Jun-2018,545.0,,Oct-2018,579.0,575.0,0.0,,1.0,Individual,,,,0.0,0.0,77913.0,1.0,4.0,1.0,3.0,4.0,72515.0,83.0,0.0,0.0,2626.0,70.0,23200.0,2.0,1.0,3.0,3.0,7083.0,17602.0,23.5,0.0,0.0,136.0,220.0,42.0,4.0,1.0,42.0,,0.0,,1.0,5.0,5.0,7.0,10.0,14.0,9.0,16.0,5.0,13.0,0.0,0.0,0.0,1.0,96.7,0.0,1.0,0.0,110842.0,77913.0,23000.0,87642.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90082493,,13000.0,13000.0,13000.0, 60 months,21.49,355.29,D,D5,Manager,10+ years,MORTGAGE,138000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90082493,,home_improvement,Home improvement,933xx,CA,11.69,0.0,May-2006,665.0,669.0,1.0,,,17.0,0.0,27041.0,53.4,46.0,w,0.0,0.0,14457.1542193125,14457.15,13000.0,1457.15,0.0,0.0,0.0,Apr-2017,12696.22,,Oct-2017,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,308734.0,1.0,5.0,0.0,1.0,13.0,64005.0,86.0,4.0,7.0,11664.0,73.0,50600.0,2.0,0.0,5.0,9.0,18161.0,11023.0,68.3,0.0,0.0,124.0,124.0,6.0,6.0,3.0,6.0,,0.0,,0.0,4.0,7.0,6.0,17.0,20.0,11.0,23.0,7.0,17.0,0.0,0.0,0.0,5.0,100.0,33.3,0.0,0.0,347922.0,91046.0,34800.0,74808.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121162,,6600.0,6600.0,6600.0, 36 months,11.49,217.62,B,B5,Teacher ,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121162,,credit_card,Credit card refinancing,928xx,CA,19.88,0.0,Feb-1973,765.0,769.0,1.0,,,17.0,0.0,6451.0,14.3,37.0,w,0.0,0.0,7191.730637025699,7191.73,6600.0,591.73,0.0,0.0,0.0,Aug-2017,5222.62,,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,326421.0,3.0,3.0,3.0,3.0,1.0,32085.0,75.0,1.0,1.0,148.0,44.0,45200.0,1.0,6.0,1.0,5.0,20401.0,20052.0,0.7,0.0,0.0,154.0,523.0,6.0,1.0,3.0,87.0,,3.0,,0.0,1.0,3.0,5.0,8.0,10.0,13.0,24.0,3.0,17.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,381931.0,38536.0,20200.0,42731.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89023949,,12000.0,12000.0,12000.0, 36 months,13.99,410.08,C,C3,Teacher,3 years,RENT,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89023949,,small_business,Business,109xx,NY,9.36,0.0,Mar-2011,740.0,744.0,1.0,33.0,,6.0,0.0,9619.0,14.8,8.0,f,2740.97,2740.97,11882.99,11882.99,9259.03,2623.96,0.0,0.0,0.0,Mar-2019,410.08,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,23028.0,2.0,1.0,0.0,0.0,25.0,13409.0,71.0,2.0,2.0,3088.0,27.0,65100.0,0.0,0.0,1.0,2.0,4606.0,55481.0,14.8,0.0,0.0,25.0,66.0,2.0,2.0,0.0,2.0,33.0,4.0,33.0,0.0,4.0,4.0,4.0,5.0,1.0,5.0,7.0,4.0,6.0,0.0,0.0,0.0,2.0,87.5,0.0,0.0,0.0,83955.0,23028.0,65100.0,18855.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501794,,9000.0,9000.0,9000.0, 36 months,17.99,325.33,D,D2,License Coordinator ,1 year,RENT,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501794,,debt_consolidation,Debt consolidation,070xx,NJ,15.58,1.0,Sep-2004,660.0,664.0,0.0,7.0,,13.0,0.0,14785.0,77.4,20.0,w,2176.94,2176.94,9463.86,9463.86,6823.06,2608.26,32.54,0.0,0.0,Mar-2019,325.33,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,65203.0,1.0,7.0,2.0,2.0,2.0,50418.0,99.0,2.0,2.0,9313.0,93.0,19100.0,0.0,0.0,5.0,4.0,5434.0,815.0,94.6,0.0,0.0,144.0,142.0,12.0,2.0,0.0,12.0,,2.0,,0.0,2.0,3.0,3.0,3.0,14.0,6.0,6.0,3.0,13.0,0.0,0.0,0.0,4.0,95.0,100.0,0.0,0.0,70187.0,65203.0,15000.0,51087.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90511897,,30000.0,30000.0,30000.0, 60 months,21.49,819.9,D,D5,Staff Mechanical Engineer,3 years,RENT,112000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90511897,,debt_consolidation,Debt consolidation,750xx,TX,23.79,0.0,Sep-1994,685.0,689.0,0.0,32.0,,15.0,0.0,17952.0,53.3,33.0,w,0.0,0.0,24629.28,24629.28,4814.79,7447.89,0.0,12366.6,2225.988,Jan-2018,819.9,,Sep-2018,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,104979.0,2.0,4.0,1.0,3.0,5.0,87027.0,71.0,3.0,5.0,6175.0,66.0,33700.0,1.0,2.0,1.0,8.0,6999.0,8950.0,64.8,0.0,0.0,264.0,162.0,1.0,1.0,0.0,1.0,,12.0,,1.0,3.0,5.0,6.0,9.0,14.0,11.0,19.0,5.0,15.0,0.0,0.0,0.0,4.0,80.6,50.0,0.0,0.0,153241.0,104979.0,25400.0,119541.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Sep-2018,COMPLETE,Jul-2018,12366.6,45.0,24.0 +90320155,,20000.0,20000.0,20000.0, 36 months,14.49,688.33,C,C4,Lead Transportation Security Officer,10+ years,MORTGAGE,48543.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320155,,debt_consolidation,Debt consolidation,481xx,MI,22.4,1.0,Oct-2000,710.0,714.0,0.0,6.0,78.0,11.0,1.0,10326.0,48.7,25.0,w,0.0,0.0,23360.845689037596,23360.85,20000.0,3360.85,0.0,0.0,0.0,Mar-2018,12363.67,,Mar-2018,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,133511.0,2.0,2.0,0.0,1.0,22.0,8281.0,32.0,2.0,4.0,7510.0,40.0,21200.0,0.0,0.0,2.0,6.0,13351.0,6194.0,61.5,0.0,0.0,167.0,191.0,4.0,4.0,2.0,4.0,,7.0,6.0,0.0,3.0,5.0,4.0,9.0,5.0,8.0,18.0,5.0,11.0,0.0,0.0,0.0,3.0,96.0,50.0,0.0,0.0,162758.0,18607.0,16100.0,25867.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501583,,10000.0,10000.0,10000.0, 36 months,10.99,327.34,B,B4,Patient Care Technician,8 years,MORTGAGE,32000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501583,,debt_consolidation,Debt consolidation,761xx,TX,21.94,0.0,Apr-1995,715.0,719.0,0.0,,,9.0,0.0,14768.0,48.6,20.0,w,2209.69,2209.69,9486.75,9486.75,7790.31,1696.44,0.0,0.0,0.0,Mar-2019,327.34,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,68718.0,1.0,1.0,1.0,1.0,5.0,4167.0,93.0,0.0,0.0,5661.0,54.0,30400.0,0.0,0.0,0.0,1.0,7635.0,10729.0,52.7,0.0,0.0,171.0,257.0,46.0,5.0,2.0,46.0,,,,0.0,5.0,6.0,5.0,5.0,5.0,7.0,13.0,6.0,9.0,0.0,0.0,0.0,1.0,100.0,60.0,0.0,0.0,92688.0,18935.0,22700.0,4506.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90481399,,35000.0,35000.0,35000.0, 60 months,26.99,1068.53,F,F3,Regional Sales Manager,9 years,MORTGAGE,275000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90481399,,debt_consolidation,Debt consolidation,302xx,GA,11.04,3.0,Aug-2006,675.0,679.0,0.0,11.0,,22.0,0.0,22384.0,70.6,47.0,w,0.0,0.0,48326.936726284104,48326.94,35000.0,13326.94,0.0,0.0,0.0,Apr-2018,30472.28,,Apr-2018,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,501851.0,5.0,8.0,3.0,4.0,1.0,110309.0,81.0,3.0,5.0,9284.0,73.0,31700.0,5.0,0.0,7.0,10.0,25093.0,4980.0,76.3,0.0,0.0,121.0,82.0,2.0,1.0,1.0,2.0,11.0,3.0,11.0,0.0,2.0,4.0,5.0,7.0,21.0,12.0,24.0,4.0,22.0,0.0,0.0,0.0,7.0,95.7,40.0,0.0,0.0,526402.0,132766.0,21000.0,120026.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90805155,,8000.0,8000.0,8000.0, 36 months,9.49,256.23,B,B2,Tech clerk ,2 years,RENT,45000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90805155,,debt_consolidation,Debt consolidation,895xx,NV,22.56,0.0,Mar-1998,690.0,694.0,0.0,43.0,85.0,8.0,1.0,4837.0,40.0,14.0,w,0.0,0.0,9083.8392491028,9083.84,8000.0,1083.84,0.0,0.0,0.0,Mar-2019,1513.62,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,27456.0,1.0,2.0,0.0,0.0,30.0,22619.0,45.0,1.0,2.0,1952.0,43.0,12100.0,0.0,0.0,0.0,2.0,3922.0,48.0,97.6,0.0,0.0,222.0,190.0,6.0,6.0,0.0,30.0,,,43.0,0.0,1.0,4.0,1.0,3.0,4.0,6.0,10.0,4.0,7.0,0.0,0.0,0.0,1.0,85.7,100.0,1.0,0.0,61037.0,27456.0,2000.0,48937.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541755,,10000.0,10000.0,10000.0, 36 months,13.99,341.73,C,C3,Lab technical ,7 years,RENT,44000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541755,,debt_consolidation,Debt consolidation,923xx,CA,7.36,0.0,Oct-2006,675.0,679.0,0.0,,,9.0,0.0,8502.0,50.0,11.0,f,0.0,0.0,11441.914169964499,11441.91,10000.0,1441.91,0.0,0.0,0.0,Dec-2017,7007.19,,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,1031.0,8502.0,0.0,0.0,0.0,0.0,,0.0,,3.0,4.0,3917.0,50.0,17000.0,0.0,0.0,1.0,4.0,945.0,5489.0,59.3,0.0,0.0,,119.0,7.0,7.0,0.0,7.0,,12.0,,0.0,3.0,5.0,6.0,7.0,0.0,9.0,11.0,5.0,9.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,17000.0,8502.0,13500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621883,,5000.0,5000.0,5000.0, 36 months,17.99,180.74,D,D2,Letter Carrier ,4 years,RENT,50000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621883,,other,Other,481xx,MI,14.91,0.0,Dec-2006,660.0,664.0,0.0,,,5.0,0.0,5634.0,62.6,6.0,f,1192.86,1192.86,5240.8,5240.8,3807.14,1433.66,0.0,0.0,0.0,Mar-2019,180.74,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,22993.0,2.0,2.0,0.0,2.0,16.0,17359.0,68.0,2.0,3.0,0.0,67.0,9000.0,3.0,2.0,0.0,5.0,4599.0,,,0.0,0.0,117.0,19.0,4.0,4.0,0.0,,,16.0,,0.0,0.0,3.0,0.0,0.0,3.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,2.0,100.0,,0.0,0.0,34509.0,22993.0,0.0,25509.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681629,,6250.0,6250.0,6250.0, 36 months,10.99,204.59,B,B4,production assistant,2 years,MORTGAGE,94000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681629,,other,Other,781xx,TX,16.53,0.0,Oct-2005,705.0,709.0,0.0,,,9.0,0.0,9324.0,69.1,20.0,w,0.0,0.0,4611.77,4611.77,3573.17,953.27,15.0,70.33,12.6594,Jan-2019,50.0,,Mar-2019,579.0,575.0,0.0,,1.0,Individual,,,,0.0,0.0,220700.0,1.0,6.0,1.0,1.0,6.0,51089.0,46.0,0.0,1.0,4457.0,53.0,13500.0,2.0,3.0,3.0,3.0,24522.0,43.0,99.0,0.0,0.0,131.0,74.0,16.0,6.0,1.0,74.0,,3.0,,0.0,1.0,2.0,1.0,1.0,17.0,2.0,2.0,2.0,9.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,248435.0,60413.0,4500.0,71060.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Nov-2018,ACTIVE,Nov-2018,1244.0,44.98,18.0 +90721269,,6000.0,6000.0,6000.0, 36 months,16.99,213.89,D,D1,EXECUTIVE ASSISTANT TO MANAGING PARTNER,10+ years,MORTGAGE,67874.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721269,,other,Other,334xx,FL,28.62,2.0,Apr-2006,680.0,684.0,3.0,18.0,,16.0,0.0,5615.0,54.0,27.0,f,0.0,0.0,2194.08,2194.08,941.83,549.74,0.0,702.51,126.4518,May-2017,213.89,,Nov-2017,574.0,570.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,78851.0,4.0,11.0,3.0,5.0,5.0,73236.0,104.0,3.0,4.0,2879.0,95.0,10400.0,1.0,11.0,4.0,9.0,4928.0,129.0,96.1,0.0,0.0,125.0,96.0,1.0,1.0,0.0,23.0,18.0,1.0,18.0,0.0,2.0,4.0,2.0,3.0,20.0,5.0,7.0,4.0,16.0,0.0,0.0,0.0,6.0,88.5,100.0,0.0,0.0,106552.0,78851.0,3300.0,96152.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721228,,39675.0,39675.0,39675.0, 60 months,12.79,898.47,C,C1,Anesthesiologist,10+ years,MORTGAGE,165840.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721228,,other,Other,336xx,FL,6.38,0.0,Feb-1989,770.0,774.0,2.0,,,19.0,0.0,20002.0,13.9,46.0,w,0.0,0.0,40180.76,40180.76,39675.0,505.76,0.0,0.0,0.0,Nov-2016,40237.14,,Nov-2016,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,87659.0,1.0,1.0,0.0,1.0,17.0,7757.0,56.0,2.0,7.0,10623.0,19.0,144000.0,1.0,1.0,4.0,8.0,5156.0,101758.0,16.2,0.0,0.0,67.0,323.0,3.0,3.0,2.0,3.0,,2.0,,0.0,8.0,9.0,11.0,29.0,4.0,14.0,35.0,9.0,19.0,0.0,0.0,0.0,2.0,100.0,9.1,0.0,0.0,299703.0,33511.0,121500.0,13962.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671183,,15500.0,15500.0,15500.0, 60 months,13.99,360.58,C,C3,Production,4 years,MORTGAGE,45000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671183,,home_improvement,Home improvement,458xx,OH,21.68,0.0,Jul-2008,670.0,674.0,0.0,,,5.0,0.0,2340.0,66.9,7.0,w,0.0,0.0,18342.313977234,18342.31,15500.0,2842.31,0.0,0.0,0.0,Mar-2018,12585.08,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,141.0,188708.0,0.0,2.0,0.0,2.0,13.0,30390.0,78.0,0.0,1.0,719.0,77.0,3500.0,2.0,0.0,1.0,3.0,37742.0,281.0,71.9,0.0,0.0,47.0,98.0,17.0,13.0,2.0,98.0,,10.0,,0.0,1.0,2.0,1.0,1.0,3.0,2.0,2.0,2.0,5.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,204869.0,32730.0,1000.0,38868.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89039139,,4500.0,4500.0,4500.0, 36 months,9.49,144.13,B,B2,Cook,6 years,MORTGAGE,39000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89039139,,other,Other,920xx,CA,11.82,0.0,Dec-2004,695.0,699.0,0.0,,,7.0,0.0,10493.0,49.0,15.0,w,977.63,977.63,4177.4,4177.4,3522.37,655.03,0.0,0.0,0.0,Mar-2019,144.13,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,166228.0,0.0,1.0,0.0,1.0,21.0,2073.0,52.0,0.0,1.0,3636.0,50.0,21400.0,2.0,0.0,1.0,3.0,27705.0,10907.0,49.0,0.0,0.0,21.0,98.0,24.0,7.0,3.0,29.0,,10.0,,0.0,4.0,4.0,4.0,7.0,1.0,5.0,10.0,4.0,7.0,0.0,0.0,0.0,1.0,100.0,25.0,0.0,0.0,182600.0,12566.0,21400.0,4000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724171,,6000.0,6000.0,6000.0, 36 months,16.99,213.89,D,D1,Inside sales,4 years,MORTGAGE,45000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724171,,debt_consolidation,Debt consolidation,601xx,IL,12.93,0.0,Jan-2011,690.0,694.0,0.0,,,14.0,0.0,15480.0,40.0,22.0,w,0.0,0.0,6663.1110293169995,6663.11,6000.0,663.11,0.0,0.0,0.0,Jun-2017,5171.54,,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,150644.0,1.0,1.0,1.0,3.0,11.0,4405.0,79.0,1.0,2.0,3924.0,45.0,38700.0,1.0,1.0,2.0,8.0,11588.0,16620.0,48.2,0.0,0.0,19.0,68.0,5.0,5.0,3.0,5.0,,11.0,,0.0,6.0,6.0,9.0,11.0,3.0,12.0,16.0,6.0,14.0,0.0,0.0,0.0,4.0,100.0,22.2,0.0,0.0,176770.0,19885.0,32100.0,5570.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671872,,8500.0,8500.0,8500.0, 36 months,8.99,270.26,B,B1,Configuration Controller,5 years,RENT,52530.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671872,,debt_consolidation,Debt consolidation,809xx,CO,23.58,0.0,Jul-2004,705.0,709.0,0.0,,,12.0,0.0,10270.0,20.5,24.0,w,0.0,0.0,9539.834380571,9539.83,8500.0,1039.83,0.0,0.0,0.0,Feb-2019,249.14,,Feb-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,160.0,28387.0,1.0,1.0,1.0,1.0,11.0,18117.0,78.0,1.0,1.0,6882.0,39.0,50200.0,0.0,7.0,0.0,2.0,2581.0,17033.0,29.9,0.0,0.0,132.0,146.0,3.0,3.0,0.0,3.0,,,,0.0,2.0,4.0,4.0,5.0,6.0,11.0,17.0,4.0,12.0,0.0,0.0,0.0,2.0,100.0,25.0,0.0,0.0,73300.0,28387.0,24300.0,23100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90006663,,20000.0,20000.0,20000.0, 36 months,9.49,640.57,B,B2,Operations Manager,5 years,MORTGAGE,100000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90006663,,debt_consolidation,Debt consolidation,088xx,NJ,29.51,0.0,Jun-2002,675.0,679.0,0.0,28.0,,37.0,0.0,31378.0,42.2,64.0,w,0.0,0.0,21731.8982741306,21731.9,20000.0,1731.9,0.0,0.0,0.0,Oct-2017,14696.17,,Apr-2018,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,332537.0,4.0,8.0,0.0,0.0,29.0,45436.0,73.0,4.0,5.0,6105.0,56.0,74300.0,0.0,0.0,4.0,6.0,9501.0,16432.0,59.6,0.0,0.0,157.0,171.0,1.0,1.0,4.0,1.0,,1.0,,0.0,12.0,21.0,13.0,19.0,21.0,28.0,39.0,21.0,37.0,0.0,0.0,0.0,5.0,95.2,7.7,0.0,0.0,393194.0,76814.0,40700.0,62433.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90735149,,16325.0,16325.0,16325.0, 36 months,10.49,530.53,B,B3,Supervisor,10+ years,MORTGAGE,42000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90735149,,debt_consolidation,Debt consolidation,700xx,LA,27.71,0.0,Sep-2001,725.0,729.0,0.0,,,26.0,0.0,16134.0,26.9,47.0,f,3587.0,3587.0,15375.86,15375.86,12738.0,2637.86,0.0,0.0,0.0,Mar-2019,530.53,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,200.0,104185.0,1.0,1.0,0.0,0.0,38.0,11860.0,45.0,3.0,4.0,7094.0,32.0,60000.0,0.0,0.0,1.0,4.0,4167.0,25351.0,34.3,0.0,0.0,151.0,180.0,2.0,2.0,1.0,2.0,,7.0,,0.0,4.0,8.0,11.0,19.0,4.0,24.0,41.0,8.0,26.0,0.0,0.0,0.0,3.0,100.0,9.1,0.0,0.0,188307.0,27994.0,38600.0,26612.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621877,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,science teacher,4 years,RENT,40700.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621877,,debt_consolidation,Debt consolidation,833xx,ID,26.91,0.0,Jun-1998,670.0,674.0,0.0,71.0,71.0,13.0,1.0,7425.0,75.0,25.0,w,2755.99,2755.99,11952.85,11952.85,9244.01,2708.84,0.0,0.0,0.0,Mar-2019,413.0,Apr-2019,Mar-2019,769.0,765.0,0.0,71.0,1.0,Individual,,,,0.0,0.0,28547.0,1.0,7.0,1.0,1.0,9.0,21122.0,85.0,1.0,2.0,5441.0,82.0,9900.0,1.0,0.0,2.0,3.0,2196.0,74.0,98.8,0.0,0.0,76.0,219.0,2.0,2.0,1.0,2.0,71.0,7.0,71.0,1.0,2.0,4.0,2.0,4.0,14.0,6.0,10.0,4.0,13.0,0.0,0.0,0.0,2.0,91.7,100.0,1.0,0.0,34808.0,28547.0,6000.0,24908.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451606,,1500.0,1500.0,1500.0, 36 months,11.49,49.46,B,B5,Teacher,4 years,MORTGAGE,81000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451606,,credit_card,Credit card refinancing,926xx,CA,26.41,0.0,Oct-1984,670.0,674.0,0.0,54.0,,8.0,0.0,23505.0,93.3,29.0,w,0.0,0.0,1624.9057867518,1624.91,1500.0,124.91,0.0,0.0,0.0,Jul-2017,1230.19,,Jul-2017,734.0,730.0,0.0,54.0,1.0,Individual,,,,0.0,0.0,643920.0,0.0,0.0,0.0,0.0,101.0,0.0,,1.0,2.0,5021.0,93.0,25200.0,1.0,3.0,2.0,3.0,80490.0,2.0,100.0,0.0,0.0,138.0,383.0,8.0,8.0,8.0,16.0,,5.0,59.0,3.0,2.0,5.0,2.0,7.0,2.0,5.0,18.0,5.0,8.0,0.0,0.0,0.0,1.0,86.2,100.0,0.0,0.0,667468.0,61666.0,10000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90745204,,12000.0,12000.0,12000.0, 36 months,8.99,381.55,B,B1,,,MORTGAGE,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90745204,,home_improvement,Home improvement,983xx,WA,29.13,0.0,Oct-1978,675.0,679.0,1.0,64.0,,10.0,0.0,17340.0,57.6,34.0,w,0.0,0.0,13161.3609814094,13161.36,12000.0,1161.36,0.0,0.0,0.0,Feb-2018,7471.07,,Jun-2018,664.0,660.0,0.0,69.0,1.0,Individual,,,,0.0,2413.0,293509.0,2.0,3.0,2.0,6.0,6.0,56501.0,77.0,0.0,1.0,8065.0,65.0,30100.0,2.0,2.0,4.0,8.0,29351.0,6152.0,69.4,0.0,0.0,137.0,455.0,15.0,2.0,6.0,15.0,69.0,6.0,69.0,3.0,4.0,5.0,4.0,9.0,16.0,6.0,12.0,5.0,10.0,0.0,0.0,0.0,3.0,88.2,25.0,0.0,0.0,313250.0,73841.0,20100.0,63150.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611418,,20000.0,20000.0,20000.0, 36 months,16.99,712.96,D,D1,Rn,10+ years,MORTGAGE,82000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611418,,debt_consolidation,Debt consolidation,810xx,CO,19.1,1.0,Oct-2003,670.0,674.0,3.0,17.0,,9.0,0.0,4963.0,55.8,24.0,f,0.0,0.0,21776.6724482664,21776.67,20000.0,1776.67,0.0,0.0,0.0,Apr-2017,18098.42,,Jul-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,57877.0,1.0,3.0,2.0,2.0,3.0,52914.0,75.0,0.0,1.0,2300.0,70.0,8900.0,3.0,5.0,4.0,3.0,6431.0,1591.0,69.4,0.0,0.0,144.0,124.0,19.0,3.0,2.0,19.0,,0.0,17.0,0.0,2.0,3.0,3.0,3.0,12.0,6.0,10.0,3.0,9.0,0.0,0.0,0.0,2.0,82.6,33.3,0.0,0.0,73258.0,57877.0,5200.0,64358.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270206,,30000.0,30000.0,30000.0, 36 months,11.49,989.14,B,B5,Contact Center Manager ,9 years,RENT,92000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270206,,debt_consolidation,Debt consolidation,907xx,CA,11.85,0.0,Feb-2005,705.0,709.0,0.0,57.0,,8.0,0.0,3627.0,12.3,10.0,w,6666.13,6666.13,28780.81,28780.81,23333.87,5446.94,0.0,0.0,0.0,Mar-2019,989.14,Apr-2019,Mar-2019,779.0,775.0,0.0,57.0,1.0,Individual,,,,0.0,0.0,13974.0,2.0,2.0,0.0,1.0,20.0,10347.0,37.0,2.0,5.0,833.0,24.0,29500.0,0.0,3.0,0.0,6.0,1747.0,24134.0,5.4,0.0,0.0,139.0,52.0,2.0,2.0,0.0,2.0,,20.0,,1.0,4.0,6.0,4.0,4.0,3.0,6.0,7.0,6.0,8.0,0.0,0.0,0.0,2.0,90.0,0.0,0.0,0.0,57155.0,13974.0,25500.0,27655.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90134762,,27600.0,27600.0,27600.0, 36 months,17.99,997.67,D,D2,Parts Manager,10+ years,OWN,75000.0,Not Verified,Oct-2016,In Grace Period,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90134762,,credit_card,Credit card refinancing,144xx,NY,18.8,1.0,Oct-1981,715.0,719.0,3.0,7.0,,18.0,0.0,23771.0,42.9,24.0,w,7471.65,7471.65,28010.03,28010.03,20128.35,7881.68,0.0,0.0,0.0,Feb-2019,997.67,Apr-2019,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,180270.0,2.0,6.0,0.0,0.0,25.0,49494.0,67.0,2.0,5.0,6513.0,57.0,55400.0,2.0,0.0,5.0,5.0,10015.0,8581.0,61.0,0.0,0.0,160.0,419.0,3.0,3.0,3.0,87.0,,0.0,,0.0,3.0,8.0,3.0,4.0,8.0,10.0,13.0,8.0,18.0,0.0,0.0,0.0,2.0,95.8,33.3,0.0,0.0,260634.0,73265.0,22000.0,74366.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90721246,,5000.0,5000.0,5000.0, 36 months,8.99,158.98,B,B1,Teacher,3 years,OWN,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90721246,,small_business,Business,300xx,GA,15.28,2.0,Mar-2005,665.0,669.0,5.0,3.0,,19.0,0.0,8702.0,21.0,52.0,w,1080.07,1080.07,4604.18,4604.18,3919.93,684.25,0.0,0.0,0.0,Mar-2019,158.98,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,375353.0,2.0,7.0,1.0,1.0,9.0,139651.0,98.0,3.0,3.0,3435.0,60.0,41500.0,2.0,0.0,14.0,5.0,20853.0,18640.0,18.6,0.0,0.0,138.0,120.0,6.0,1.0,6.0,7.0,,0.0,3.0,0.0,2.0,5.0,5.0,10.0,26.0,11.0,20.0,5.0,19.0,0.0,0.0,0.0,5.0,88.2,0.0,0.0,0.0,391440.0,148353.0,22900.0,122940.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818958,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,Merchandiser supervisor,2 years,RENT,48000.0,Not Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818958,,debt_consolidation,Debt consolidation,211xx,MD,28.03,1.0,Sep-2011,705.0,709.0,0.0,16.0,,7.0,0.0,11214.0,61.6,12.0,f,5287.64,5287.64,12894.17,12894.17,9712.36,3181.81,0.0,0.0,0.0,Nov-2018,516.25,Apr-2019,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,53545.0,1.0,3.0,1.0,2.0,12.0,42331.0,60.0,1.0,1.0,485.0,61.0,18200.0,0.0,6.0,2.0,3.0,7649.0,515.0,48.5,0.0,0.0,48.0,60.0,4.0,4.0,0.0,4.0,,4.0,16.0,0.0,1.0,4.0,1.0,1.0,5.0,4.0,7.0,4.0,7.0,0.0,0.0,0.0,2.0,91.7,0.0,0.0,0.0,70519.0,53545.0,1000.0,52319.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Feb-2019,ACTIVE,Feb-2019,2477.0,45.0,18.0 +90246608,,4000.0,4000.0,4000.0, 36 months,13.49,135.73,C,C2,Customer Service ,< 1 year,RENT,42000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90246608,,debt_consolidation,Debt consolidation,900xx,CA,29.6,0.0,Aug-2008,670.0,674.0,0.0,,,18.0,0.0,19459.0,79.8,19.0,w,0.0,0.0,4605.489143611,4605.49,4000.0,605.49,0.0,0.0,0.0,Feb-2018,2572.54,,Mar-2019,539.0,535.0,0.0,,1.0,Individual,,,,0.0,0.0,40972.0,0.0,9.0,0.0,1.0,14.0,21513.0,78.0,2.0,3.0,4491.0,79.0,24400.0,0.0,0.0,1.0,4.0,2276.0,1864.0,87.1,0.0,0.0,97.0,92.0,12.0,12.0,0.0,12.0,,12.0,,0.0,5.0,9.0,5.0,5.0,10.0,9.0,9.0,9.0,18.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,52050.0,40972.0,14500.0,27650.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221705,,12000.0,12000.0,12000.0, 60 months,13.99,279.16,C,C3,NDT SPECIALIST,9 years,MORTGAGE,58000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221705,,debt_consolidation,Debt consolidation,612xx,IL,20.98,0.0,Feb-2000,665.0,669.0,0.0,,32.0,11.0,1.0,11513.0,67.7,31.0,w,7227.58,7227.58,8086.31,8086.31,4772.42,3313.89,0.0,0.0,0.0,Mar-2019,279.16,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,125158.0,1.0,2.0,0.0,1.0,15.0,36001.0,77.0,2.0,4.0,8259.0,73.0,17000.0,0.0,4.0,1.0,5.0,17880.0,3487.0,76.8,0.0,0.0,160.0,199.0,2.0,2.0,2.0,2.0,,11.0,,0.0,3.0,3.0,3.0,11.0,8.0,8.0,21.0,3.0,8.0,0.0,0.0,0.0,2.0,100.0,66.7,1.0,0.0,167014.0,47514.0,15000.0,60339.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501806,,9600.0,9600.0,9600.0, 36 months,12.79,322.5,C,C1,Office Clerk,10+ years,RENT,30000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501806,,debt_consolidation,Debt consolidation,331xx,FL,29.96,0.0,Mar-2003,740.0,744.0,1.0,,,15.0,0.0,10411.0,24.4,18.0,f,2163.91,2163.91,9358.66,9358.66,7436.09,1922.57,0.0,0.0,0.0,Mar-2019,322.5,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,90.0,16833.0,2.0,1.0,0.0,1.0,17.0,6422.0,53.0,2.0,5.0,3032.0,31.0,42600.0,0.0,0.0,1.0,6.0,1122.0,17654.0,27.9,0.0,0.0,17.0,162.0,0.0,0.0,0.0,14.0,,0.0,,0.0,4.0,10.0,6.0,6.0,1.0,14.0,17.0,10.0,15.0,0.0,0.0,0.0,2.0,100.0,16.7,0.0,0.0,54768.0,16833.0,24500.0,12168.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89969037,,40000.0,40000.0,40000.0, 36 months,5.32,1204.6,A,A1,Manager,1 year,OWN,200000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89969037,,credit_card,Credit card refinancing,448xx,OH,11.86,0.0,May-1991,725.0,729.0,2.0,,,23.0,0.0,87851.0,51.2,75.0,w,8284.31,8284.31,34903.84,34903.84,31715.69,3188.15,0.0,0.0,0.0,Mar-2019,1204.6,Apr-2019,Mar-2019,809.0,805.0,0.0,,1.0,Individual,,,,0.0,0.0,436649.0,2.0,2.0,1.0,2.0,9.0,11803.0,75.0,2.0,2.0,23143.0,54.0,150000.0,1.0,2.0,3.0,4.0,18985.0,33169.0,59.1,0.0,0.0,121.0,304.0,2.0,2.0,15.0,3.0,,2.0,,0.0,4.0,7.0,8.0,17.0,32.0,14.0,28.0,7.0,23.0,0.0,0.0,0.0,3.0,100.0,25.0,0.0,0.0,584648.0,99654.0,81000.0,15724.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90696318,,5500.0,5500.0,5500.0, 36 months,12.79,184.77,C,C1,Warehouse Associate,4 years,RENT,33000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90696318,,debt_consolidation,Debt consolidation,462xx,IN,13.05,0.0,Jan-2006,670.0,674.0,1.0,71.0,36.0,4.0,1.0,3736.0,37.4,7.0,w,0.0,0.0,6483.0149918463,6483.01,5500.0,983.01,0.0,0.0,0.0,Aug-2018,2597.38,,Mar-2019,679.0,675.0,0.0,71.0,1.0,Individual,,,,0.0,489.0,8341.0,0.0,1.0,0.0,1.0,14.0,4605.0,71.0,0.0,2.0,3139.0,51.0,10000.0,1.0,0.0,1.0,3.0,2085.0,6264.0,37.4,0.0,0.0,104.0,128.0,15.0,14.0,0.0,15.0,,3.0,,1.0,3.0,3.0,3.0,5.0,2.0,3.0,5.0,3.0,4.0,0.0,0.0,0.0,0.0,85.7,0.0,1.0,0.0,16484.0,8341.0,10000.0,6484.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90381818,,6000.0,6000.0,6000.0, 36 months,13.99,205.04,C,C3,prep food,6 years,RENT,50000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90381818,,credit_card,Credit card refinancing,113xx,NY,18.07,0.0,Feb-2011,700.0,704.0,0.0,,,9.0,0.0,9058.0,46.0,17.0,w,0.0,0.0,1000.98,1000.98,271.75,133.67,0.0,595.56,107.2008,Dec-2016,205.04,,Jun-2017,504.0,500.0,0.0,,1.0,Individual,,,,0.0,0.0,20535.0,0.0,1.0,1.0,1.0,7.0,11477.0,77.0,2.0,4.0,5198.0,59.0,19700.0,0.0,0.0,1.0,5.0,2282.0,5490.0,57.1,0.0,0.0,28.0,67.0,11.0,7.0,0.0,11.0,,12.0,,0.0,3.0,6.0,3.0,11.0,2.0,7.0,15.0,6.0,9.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,34700.0,20535.0,12800.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +86104834,,8400.0,8400.0,8400.0, 36 months,11.49,276.96,B,B5,MANAGER,1 year,OWN,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=86104834,,credit_card,Credit card refinancing,017xx,MA,15.61,0.0,Oct-1982,660.0,664.0,2.0,24.0,20.0,14.0,3.0,10486.0,66.8,24.0,w,1866.49,1866.49,8018.44,8018.44,6533.51,1484.93,0.0,0.0,0.0,Mar-2019,276.96,Apr-2019,Mar-2019,714.0,710.0,0.0,41.0,1.0,Individual,,,,0.0,160.0,13736.0,2.0,1.0,0.0,0.0,64.0,2865.0,14.0,3.0,3.0,2237.0,37.0,15700.0,0.0,0.0,4.0,3.0,981.0,981.0,87.4,0.0,0.0,147.0,407.0,3.0,3.0,0.0,29.0,24.0,0.0,24.0,2.0,6.0,10.0,6.0,9.0,4.0,12.0,19.0,10.0,14.0,0.0,0.0,0.0,3.0,81.8,83.3,0.0,2.0,36786.0,13736.0,7800.0,20080.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671551,,30000.0,30000.0,30000.0, 36 months,17.99,1084.43,D,D2,Internet Sale Manager,2 years,MORTGAGE,120000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671551,,debt_consolidation,Debt consolidation,774xx,TX,11.15,0.0,Aug-2005,710.0,714.0,1.0,,,10.0,0.0,4703.0,16.6,17.0,w,0.0,0.0,4153.28,4153.28,634.68,419.77,0.0,3098.83,557.7894,Nov-2016,1084.43,,Jun-2017,574.0,570.0,0.0,,1.0,Individual,,,,0.0,0.0,30506.0,2.0,2.0,1.0,2.0,8.0,25803.0,78.0,3.0,4.0,2656.0,50.0,28400.0,3.0,0.0,4.0,6.0,3051.0,14097.0,25.0,0.0,0.0,16.0,133.0,2.0,2.0,0.0,3.0,,3.0,,0.0,4.0,4.0,5.0,9.0,2.0,8.0,15.0,4.0,10.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,61326.0,30506.0,18800.0,32926.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90915116,,7500.0,7500.0,7500.0, 36 months,11.49,247.29,B,B5,Banquet Manager ,10+ years,MORTGAGE,35000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90915116,,medical,Medical expenses,601xx,IL,21.6,2.0,Dec-2002,700.0,704.0,0.0,2.0,,7.0,0.0,7877.0,45.5,25.0,w,1667.02,1667.02,7166.62,7166.62,5832.98,1333.64,0.0,0.0,0.0,Mar-2019,247.29,Apr-2019,Mar-2019,639.0,635.0,0.0,,1.0,Individual,,,,0.0,0.0,118337.0,0.0,1.0,0.0,1.0,22.0,13038.0,74.0,0.0,1.0,4908.0,60.0,17300.0,0.0,0.0,0.0,2.0,16905.0,8481.0,46.7,0.0,0.0,130.0,165.0,21.0,21.0,3.0,21.0,,22.0,2.0,0.0,3.0,4.0,3.0,11.0,5.0,5.0,17.0,4.0,7.0,0.0,0.0,0.0,0.0,92.0,0.0,0.0,0.0,146192.0,20915.0,15900.0,17742.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551415,,7600.0,7600.0,7600.0, 36 months,11.49,250.59,B,B5,Management consultant II,< 1 year,RENT,105000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551415,,debt_consolidation,Debt consolidation,208xx,MD,14.45,0.0,Nov-1995,660.0,664.0,0.0,,74.0,17.0,1.0,16098.0,47.9,31.0,w,1688.48,1688.48,7286.47,7286.47,5911.52,1374.95,0.0,0.0,0.0,Mar-2019,250.59,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,32627.0,2.0,2.0,1.0,2.0,8.0,16529.0,79.0,2.0,3.0,7440.0,60.0,33600.0,0.0,0.0,0.0,5.0,2175.0,3285.0,76.9,0.0,0.0,153.0,250.0,4.0,4.0,1.0,4.0,,,,0.0,3.0,10.0,4.0,10.0,5.0,14.0,24.0,10.0,15.0,0.0,0.0,0.0,3.0,100.0,50.0,1.0,0.0,54600.0,32627.0,14200.0,21000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695244,,40000.0,40000.0,40000.0, 36 months,9.49,1281.14,B,B2,Police Sergeant ,8 years,MORTGAGE,180000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695244,,credit_card,Credit card refinancing,060xx,CT,17.01,0.0,Sep-1988,685.0,689.0,1.0,43.0,62.0,17.0,1.0,53085.0,84.1,34.0,w,0.0,0.0,44725.8394465427,44725.84,40000.0,4725.84,0.0,0.0,0.0,May-2018,21686.41,,May-2018,689.0,685.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,423937.0,0.0,3.0,0.0,2.0,19.0,39089.0,59.0,2.0,7.0,6307.0,71.0,63100.0,1.0,5.0,3.0,9.0,26496.0,7086.0,78.7,0.0,0.0,150.0,336.0,12.0,12.0,3.0,12.0,43.0,4.0,43.0,1.0,7.0,10.0,9.0,13.0,10.0,13.0,21.0,10.0,17.0,0.0,0.0,0.0,2.0,90.9,62.5,0.0,1.0,497221.0,92174.0,33200.0,66121.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90723112,,5000.0,5000.0,5000.0, 36 months,6.99,154.37,A,A2,coo,10+ years,MORTGAGE,78000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90723112,,credit_card,Credit card refinancing,325xx,FL,22.18,1.0,Jan-2002,725.0,729.0,0.0,3.0,,9.0,0.0,3311.0,17.2,20.0,w,0.0,0.0,5495.8387454044005,5495.84,5000.0,495.84,0.0,0.0,0.0,Oct-2018,1947.27,,Oct-2018,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,191357.0,0.0,3.0,0.0,2.0,15.0,27194.0,59.0,0.0,0.0,2314.0,47.0,19200.0,0.0,1.0,0.0,2.0,21262.0,12586.0,15.5,0.0,0.0,136.0,176.0,106.0,15.0,2.0,133.0,,,3.0,0.0,1.0,3.0,3.0,3.0,9.0,5.0,9.0,3.0,9.0,0.0,0.0,0.0,0.0,95.0,0.0,0.0,0.0,226288.0,30505.0,14900.0,46088.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695639,,35000.0,35000.0,35000.0, 36 months,8.99,1112.83,B,B1,Consultant,< 1 year,RENT,176800.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695639,,debt_consolidation,Debt consolidation,553xx,MN,2.47,0.0,Oct-1994,710.0,714.0,1.0,,94.0,6.0,1.0,6818.0,50.9,28.0,w,0.0,0.0,9740.64,9740.64,4080.88,1465.79,55.64,4138.33,744.8994,Apr-2017,1168.47,,Sep-2017,589.0,585.0,0.0,,1.0,Individual,,,,0.0,0.0,319705.0,0.0,1.0,0.0,0.0,42.0,9727.0,43.0,1.0,3.0,4335.0,46.0,13400.0,3.0,2.0,4.0,3.0,53284.0,65.0,98.5,0.0,0.0,188.0,263.0,7.0,7.0,3.0,20.0,,0.0,,0.0,1.0,3.0,1.0,7.0,11.0,4.0,14.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,100.0,1.0,0.0,368955.0,16545.0,4400.0,22912.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90408170,,18000.0,18000.0,18000.0, 36 months,14.49,619.49,C,C4,DevOps Engineer,< 1 year,RENT,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90408170,,debt_consolidation,Debt consolidation,805xx,CO,10.67,0.0,Jan-2010,660.0,664.0,0.0,,,9.0,0.0,17553.0,81.6,21.0,f,0.0,0.0,21865.3171739578,21865.32,18000.0,3865.32,0.0,0.0,0.0,Oct-2018,7537.36,,Oct-2018,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,23402.0,0.0,1.0,1.0,3.0,12.0,5849.0,73.0,1.0,4.0,4843.0,79.0,21500.0,0.0,0.0,1.0,7.0,2600.0,1692.0,89.6,0.0,0.0,72.0,80.0,9.0,9.0,0.0,17.0,,7.0,,0.0,5.0,6.0,5.0,8.0,10.0,8.0,11.0,6.0,9.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,29500.0,23402.0,16200.0,8000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571171,,7200.0,7200.0,7200.0, 36 months,10.99,235.69,B,B4,receptionist,< 1 year,MORTGAGE,12000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571171,,home_improvement,Home improvement,085xx,NJ,65.4,0.0,Jul-1991,685.0,689.0,0.0,,83.0,6.0,1.0,11937.0,97.8,10.0,w,1590.8,1590.8,6830.61,6830.61,5609.2,1221.41,0.0,0.0,0.0,Mar-2019,235.69,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Joint App,109000.0,11.97,Not Verified,0.0,0.0,70965.0,0.0,2.0,2.0,2.0,11.0,9827.0,88.0,0.0,1.0,8162.0,93.0,12200.0,0.0,0.0,0.0,3.0,11828.0,263.0,97.8,0.0,0.0,138.0,302.0,14.0,11.0,1.0,14.0,,13.0,,0.0,3.0,3.0,3.0,4.0,3.0,3.0,6.0,3.0,6.0,0.0,0.0,0.0,2.0,100.0,100.0,1.0,0.0,271725.0,21764.0,12200.0,11150.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471680,,20000.0,20000.0,20000.0, 36 months,9.49,640.57,B,B2,procurement analyst,10+ years,MORTGAGE,72000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471680,,credit_card,Credit card refinancing,110xx,NY,11.07,3.0,Oct-1989,660.0,664.0,0.0,22.0,,17.0,0.0,16731.0,48.8,32.0,w,4346.99,4346.99,18591.08,18591.08,15653.01,2938.07,0.0,0.0,0.0,Mar-2019,640.57,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,1052.0,208250.0,1.0,0.0,0.0,0.0,,0.0,,4.0,5.0,6269.0,49.0,34300.0,2.0,0.0,2.0,6.0,13883.0,10698.0,53.9,0.0,0.0,,323.0,4.0,4.0,2.0,4.0,22.0,7.0,22.0,0.0,4.0,10.0,8.0,14.0,0.0,16.0,30.0,10.0,17.0,0.0,0.0,0.0,4.0,62.5,42.9,0.0,0.0,233300.0,16731.0,23200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591807,,7200.0,7200.0,7200.0, 36 months,11.49,237.4,B,B5,Property manager,10+ years,MORTGAGE,51000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591807,,debt_consolidation,Debt consolidation,952xx,CA,13.22,1.0,Dec-1988,700.0,704.0,0.0,21.0,63.0,14.0,1.0,5537.0,21.3,25.0,w,0.0,0.0,8476.6697040734,8476.67,7200.0,1276.67,0.0,0.0,0.0,Feb-2019,2069.23,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,9171.0,0.0,1.0,0.0,0.0,27.0,3634.0,46.0,1.0,7.0,1527.0,27.0,26000.0,0.0,10.0,5.0,7.0,655.0,5245.0,25.1,0.0,0.0,333.0,333.0,7.0,7.0,0.0,7.0,,3.0,21.0,0.0,3.0,8.0,3.0,3.0,9.0,13.0,16.0,8.0,14.0,0.0,0.0,0.0,1.0,96.0,0.0,1.0,0.0,33953.0,9171.0,7000.0,7953.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89998166,,8000.0,8000.0,8000.0, 36 months,10.49,259.99,B,B3,Outside Sales Representative,2 years,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89998166,,debt_consolidation,Debt consolidation,300xx,GA,23.06,0.0,Mar-1984,730.0,734.0,0.0,,,7.0,0.0,24000.0,99.2,18.0,w,0.0,0.0,8273.4733115286,8273.47,8000.0,273.47,0.0,0.0,0.0,Feb-2017,7498.16,,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,143624.0,0.0,2.0,0.0,2.0,13.0,19800.0,56.0,0.0,0.0,17839.0,75.0,24200.0,1.0,0.0,0.0,3.0,20518.0,200.0,99.2,0.0,0.0,139.0,188.0,25.0,13.0,6.0,25.0,,18.0,,0.0,2.0,2.0,2.0,4.0,6.0,2.0,5.0,2.0,7.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,179179.0,51893.0,24200.0,35665.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671775,,12000.0,12000.0,12000.0, 36 months,6.99,370.48,A,A2,Staff Accountant,2 years,RENT,55000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671775,,credit_card,Credit card refinancing,816xx,CO,13.88,0.0,Oct-2006,750.0,754.0,0.0,,,7.0,0.0,11085.0,32.0,12.0,w,2177.89,2177.89,11080.2,11080.2,9822.11,1258.09,0.0,0.0,0.0,Mar-2019,370.48,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,17674.0,0.0,1.0,0.0,0.0,29.0,6589.0,43.0,2.0,3.0,8259.0,35.0,34600.0,0.0,1.0,0.0,3.0,2525.0,14308.0,40.4,0.0,0.0,29.0,119.0,11.0,11.0,0.0,11.0,,,,0.0,3.0,4.0,4.0,7.0,1.0,6.0,11.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,25.0,0.0,0.0,49857.0,17674.0,24000.0,15257.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581629,,18000.0,18000.0,18000.0, 36 months,14.49,619.49,C,C4,Rate/Financial Analyst I,3 years,MORTGAGE,67752.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581629,,debt_consolidation,Debt consolidation,800xx,CO,20.81,0.0,Nov-2000,675.0,679.0,2.0,56.0,,22.0,0.0,36558.0,55.7,41.0,w,0.0,0.0,19563.282904376,19563.28,18000.0,1563.28,0.0,0.0,0.0,Jun-2017,15263.07,,May-2018,714.0,710.0,0.0,56.0,1.0,Individual,,,,0.0,0.0,140553.0,2.0,4.0,1.0,1.0,4.0,103995.0,114.0,2.0,9.0,7480.0,67.0,65600.0,1.0,0.0,6.0,10.0,6389.0,13588.0,69.1,0.0,0.0,134.0,132.0,4.0,4.0,2.0,4.0,,0.0,,1.0,10.0,15.0,10.0,12.0,16.0,18.0,23.0,15.0,22.0,0.0,0.0,0.0,3.0,94.9,30.0,0.0,0.0,154790.0,140553.0,44000.0,89190.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681696,,12000.0,12000.0,12000.0, 60 months,14.49,282.28,C,C4,Facilities manager,10+ years,OWN,122000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681696,,credit_card,Credit card refinancing,014xx,MA,7.46,0.0,Aug-2002,670.0,674.0,2.0,,52.0,5.0,3.0,5304.0,45.3,21.0,f,0.0,0.0,13628.9085752992,13628.91,12000.0,1628.91,0.0,0.0,0.0,Oct-2017,9933.49,,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,23969.0,0.0,2.0,2.0,2.0,7.0,18665.0,83.0,0.0,2.0,4733.0,70.0,11700.0,1.0,1.0,5.0,4.0,4794.0,4467.0,51.4,0.0,0.0,94.0,169.0,22.0,7.0,2.0,22.0,,0.0,,0.0,1.0,2.0,2.0,14.0,3.0,3.0,16.0,2.0,5.0,0.0,0.0,0.0,2.0,100.0,0.0,3.0,0.0,34312.0,23969.0,9200.0,22612.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581679,,5000.0,5000.0,5000.0, 36 months,16.99,178.24,D,D1,,,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581679,,other,Other,532xx,WI,4.41,0.0,May-1999,720.0,724.0,2.0,,,5.0,0.0,106819.0,25.3,10.0,f,0.0,0.0,6227.3768624715,6227.38,5000.0,1227.38,0.0,0.0,0.0,Oct-2018,2132.58,,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,107080.0,1.0,0.0,0.0,0.0,106.0,0.0,,2.0,2.0,5364.0,26.0,126500.0,0.0,1.0,3.0,3.0,21416.0,19798.0,25.3,0.0,0.0,158.0,208.0,1.0,1.0,0.0,1.0,,0.0,,0.0,2.0,3.0,3.0,3.0,5.0,4.0,4.0,3.0,5.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,126761.0,107080.0,26500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90294161,,36000.0,36000.0,36000.0, 36 months,11.49,1186.97,B,B5,C.O.O.,4 years,RENT,350000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90294161,,other,Other,852xx,AZ,7.63,1.0,Apr-1987,685.0,689.0,0.0,4.0,,5.0,0.0,43162.0,63.7,9.0,w,7999.29,7999.29,34399.15,34399.15,28000.71,6398.44,0.0,0.0,0.0,Mar-2019,1186.97,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,59649.0,0.0,2.0,0.0,0.0,51.0,16487.0,,0.0,1.0,24506.0,64.0,57300.0,0.0,0.0,0.0,1.0,11930.0,14138.0,63.7,0.0,0.0,121.0,353.0,13.0,13.0,1.0,13.0,,,,0.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,0.0,77.8,33.3,0.0,0.0,134571.0,59649.0,57300.0,77271.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89794656,,22500.0,22500.0,22500.0, 36 months,16.99,802.08,D,D1,RFP Team Lead,< 1 year,MORTGAGE,85000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89794656,,home_improvement,Debt consolidation,441xx,OH,27.84,0.0,Aug-2002,675.0,679.0,1.0,58.0,87.0,32.0,1.0,28344.0,69.1,46.0,w,0.0,0.0,25283.3493538164,25283.35,22500.0,2783.35,0.0,0.0,0.0,Jul-2017,18245.16,,Mar-2019,684.0,680.0,0.0,58.0,1.0,Individual,,,,0.0,0.0,292420.0,0.0,14.0,0.0,3.0,15.0,86300.0,90.0,3.0,10.0,7936.0,84.0,41000.0,1.0,0.0,2.0,13.0,9138.0,731.0,96.1,0.0,0.0,169.0,153.0,11.0,11.0,2.0,12.0,,6.0,,1.0,6.0,15.0,6.0,10.0,23.0,17.0,21.0,15.0,32.0,0.0,0.0,0.0,3.0,97.8,100.0,1.0,0.0,328877.0,114644.0,18600.0,95919.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88848117,,35000.0,35000.0,35000.0, 60 months,9.49,734.9,B,B2,president,10+ years,MORTGAGE,260000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88848117,,debt_consolidation,Debt consolidation,223xx,VA,13.55,0.0,Mar-2006,715.0,719.0,0.0,,78.0,11.0,2.0,23255.0,46.5,24.0,w,20140.55,20140.55,21293.65,21293.65,14859.45,6434.2,0.0,0.0,0.0,Mar-2019,734.9,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,536290.0,0.0,5.0,1.0,3.0,8.0,69664.0,66.0,0.0,0.0,13773.0,59.0,50000.0,0.0,0.0,0.0,4.0,48754.0,26745.0,46.5,0.0,0.0,109.0,126.0,26.0,8.0,3.0,26.0,,,,0.0,4.0,4.0,4.0,7.0,12.0,4.0,9.0,4.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,2.0,667118.0,92919.0,50000.0,118318.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186220,,27600.0,27600.0,27600.0, 36 months,10.99,903.46,B,B4,Public Relations Specialist,10+ years,MORTGAGE,97000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186220,,debt_consolidation,Debt consolidation,921xx,CA,27.61,0.0,Jul-1995,670.0,674.0,2.0,,60.0,14.0,1.0,16077.0,55.1,32.0,w,0.0,0.0,19256.21,19256.21,12500.63,2420.58,0.0,4335.0,780.3,Sep-2017,903.46,,Mar-2019,639.0,635.0,0.0,,1.0,Individual,,,,0.0,0.0,105090.0,2.0,10.0,1.0,2.0,2.0,89013.0,73.0,1.0,1.0,8384.0,70.0,29200.0,1.0,2.0,4.0,3.0,7506.0,3030.0,82.7,0.0,0.0,135.0,254.0,2.0,2.0,1.0,36.0,,1.0,,0.0,2.0,3.0,2.0,8.0,11.0,4.0,20.0,3.0,14.0,0.0,0.0,0.0,2.0,100.0,100.0,1.0,0.0,150406.0,105090.0,17500.0,121206.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Feb-2018,ACTIVE,Feb-2018,7127.0,45.01,18.0 +90694713,,35000.0,35000.0,35000.0, 36 months,18.99,1282.79,D,D3,Federal Officer,10+ years,RENT,105000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694713,,debt_consolidation,Debt consolidation,603xx,IL,16.21,0.0,Dec-2006,690.0,694.0,0.0,,,13.0,0.0,32103.0,87.2,25.0,w,11083.6,11083.6,34694.37,34694.37,23916.4,10777.97,0.0,0.0,0.0,Mar-2019,1282.79,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,190994.0,0.0,1.0,0.0,0.0,31.0,14899.0,49.0,2.0,4.0,4904.0,70.0,36800.0,0.0,0.0,2.0,4.0,15916.0,591.0,94.6,0.0,0.0,106.0,117.0,7.0,7.0,1.0,13.0,,0.0,,0.0,5.0,10.0,5.0,7.0,7.0,10.0,15.0,10.0,13.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,234795.0,47002.0,10900.0,30254.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89937086,,30000.0,30000.0,30000.0, 36 months,8.99,953.86,B,B1,Ticket agent,3 years,MORTGAGE,100000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89937086,,debt_consolidation,Debt consolidation,025xx,AK,14.5,0.0,Jan-1989,685.0,689.0,0.0,65.0,73.0,12.0,1.0,13276.0,39.6,16.0,w,0.0,0.0,31429.3626424638,31429.36,30000.0,1429.36,0.0,0.0,0.0,Apr-2017,26675.04,,Mar-2019,739.0,735.0,0.0,65.0,1.0,Individual,,,,0.0,0.0,158083.0,2.0,2.0,0.0,2.0,13.0,33086.0,72.0,2.0,4.0,9188.0,57.0,33500.0,1.0,2.0,1.0,6.0,13174.0,6624.0,66.7,0.0,0.0,147.0,332.0,0.0,0.0,1.0,16.0,,12.0,,1.0,5.0,5.0,5.0,5.0,4.0,8.0,10.0,5.0,12.0,0.0,0.0,0.0,2.0,87.5,20.0,0.0,0.0,232084.0,46861.0,19900.0,46129.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191049,,3050.0,3050.0,3050.0, 36 months,14.49,104.97,C,C4,Management Analyst,10+ years,MORTGAGE,110000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191049,,major_purchase,Major purchase,200xx,DC,5.86,0.0,May-2004,665.0,669.0,0.0,35.0,,11.0,0.0,17776.0,62.6,21.0,w,0.0,0.0,3675.7317791114,3675.73,3050.0,625.73,0.0,0.0,0.0,Sep-2018,1363.12,,Mar-2019,714.0,710.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,19615.0,2.0,1.0,1.0,1.0,9.0,1839.0,86.0,2.0,5.0,7891.0,64.0,28400.0,0.0,1.0,2.0,7.0,1783.0,1324.0,93.1,0.0,0.0,112.0,148.0,2.0,2.0,1.0,2.0,35.0,4.0,35.0,0.0,6.0,6.0,6.0,11.0,4.0,10.0,16.0,6.0,11.0,0.0,0.0,0.0,3.0,95.2,83.3,0.0,0.0,30550.0,19615.0,19100.0,2150.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221239,,15000.0,15000.0,15000.0, 60 months,9.49,314.96,B,B2,Admin Analyst,10+ years,OWN,95500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221239,,debt_consolidation,Debt consolidation,305xx,GA,26.63,0.0,Apr-1982,705.0,709.0,0.0,48.0,,36.0,0.0,55130.0,45.4,56.0,w,8628.63,8628.63,9157.56,9157.56,6371.37,2786.19,0.0,0.0,0.0,Mar-2019,314.96,Apr-2019,Mar-2019,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,180258.0,2.0,4.0,1.0,1.0,3.0,61182.0,76.0,2.0,4.0,11138.0,51.0,121417.0,1.0,5.0,0.0,6.0,5462.0,32544.0,59.2,0.0,0.0,123.0,413.0,3.0,3.0,3.0,3.0,,23.0,,0.0,13.0,21.0,14.0,20.0,12.0,31.0,41.0,21.0,36.0,0.0,0.0,0.0,3.0,96.4,28.6,0.0,0.0,264142.0,116312.0,79800.0,67725.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694883,,5000.0,5000.0,5000.0, 36 months,8.59,158.05,A,A5,CRO,10+ years,OWN,130000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694883,,major_purchase,Major purchase,302xx,GA,14.02,1.0,Nov-1993,720.0,724.0,0.0,19.0,37.0,11.0,1.0,14997.0,37.4,20.0,w,1075.2,1075.2,4581.06,4581.06,3924.8,656.26,0.0,0.0,0.0,Mar-2019,158.05,Apr-2019,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,298704.0,2.0,3.0,2.0,2.0,1.0,37683.0,87.0,0.0,2.0,6588.0,63.0,40100.0,0.0,12.0,0.0,5.0,27155.0,5437.0,60.9,0.0,0.0,140.0,274.0,24.0,1.0,1.0,24.0,19.0,,19.0,0.0,3.0,6.0,3.0,4.0,10.0,7.0,9.0,6.0,11.0,0.0,0.0,0.0,2.0,90.0,0.0,0.0,1.0,338623.0,52680.0,13900.0,43148.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90309474,,20000.0,20000.0,20000.0, 36 months,8.99,635.91,B,B1,EVP,8 years,RENT,102000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90309474,,credit_card,Credit card refinancing,750xx,TX,14.31,0.0,Apr-2006,665.0,669.0,0.0,54.0,,21.0,0.0,29008.0,50.4,36.0,w,0.0,0.0,22453.06,22453.06,20000.0,2453.06,0.0,0.0,0.0,Jul-2018,9679.93,,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,34016.0,1.0,1.0,0.0,1.0,22.0,5008.0,76.0,4.0,8.0,2759.0,53.0,57500.0,0.0,0.0,2.0,9.0,1620.0,20704.0,49.1,0.0,0.0,80.0,125.0,6.0,6.0,0.0,6.0,54.0,8.0,54.0,0.0,15.0,19.0,15.0,22.0,6.0,20.0,30.0,19.0,21.0,0.0,0.0,0.0,4.0,97.2,6.7,0.0,0.0,64100.0,34016.0,40700.0,6600.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89904727,,24000.0,24000.0,24000.0, 60 months,12.79,543.5,C,C1,Sr. Executive IT Recruiter,2 years,MORTGAGE,114000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89904727,,debt_consolidation,Debt consolidation,064xx,CT,25.13,0.0,Sep-1987,705.0,709.0,1.0,64.0,59.0,24.0,1.0,22686.0,48.6,41.0,w,0.0,0.0,10309.45,10309.45,6022.49,4286.96,0.0,0.0,0.0,May-2018,543.5,,Dec-2018,524.0,520.0,0.0,,1.0,Individual,,,,0.0,0.0,331117.0,1.0,10.0,3.0,8.0,4.0,90268.0,84.0,1.0,2.0,3349.0,74.0,46700.0,2.0,9.0,1.0,10.0,13797.0,5300.0,66.5,0.0,0.0,119.0,348.0,9.0,4.0,3.0,25.0,64.0,5.0,64.0,0.0,5.0,13.0,5.0,7.0,16.0,13.0,22.0,13.0,24.0,0.0,0.0,0.0,4.0,97.6,40.0,0.0,0.0,417648.0,112954.0,15800.0,106948.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89908987,,7000.0,7000.0,7000.0, 36 months,12.79,235.16,C,C1,Correctional Officer,5 years,MORTGAGE,84000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89908987,,vacation,Vacation,957xx,CA,1.16,0.0,Nov-1992,665.0,669.0,3.0,47.0,50.0,7.0,1.0,4267.0,14.3,40.0,w,0.0,0.0,7280.8089123525,7280.81,7000.0,280.81,0.0,0.0,0.0,Jan-2017,6815.46,,Feb-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,4267.0,1.0,0.0,2.0,4.0,7.0,0.0,,1.0,6.0,2626.0,14.0,29900.0,1.0,3.0,6.0,10.0,610.0,13233.0,24.4,0.0,0.0,140.0,286.0,1.0,1.0,2.0,18.0,,0.0,,0.0,3.0,3.0,3.0,15.0,12.0,7.0,26.0,3.0,7.0,0.0,0.0,0.0,3.0,96.9,0.0,1.0,0.0,29900.0,4267.0,17500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692802,,11200.0,11200.0,11200.0, 36 months,10.49,363.98,B,B3,Warehouse Manager,7 years,MORTGAGE,65000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692802,,debt_consolidation,Debt consolidation,972xx,OR,10.76,0.0,Dec-2004,715.0,719.0,2.0,37.0,,12.0,0.0,7721.0,18.8,17.0,w,2056.68,2056.68,10876.95,10876.95,9143.32,1733.63,0.0,0.0,0.0,Mar-2019,363.98,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Joint App,107000.0,8.85,Not Verified,0.0,0.0,36717.0,2.0,1.0,1.0,1.0,3.0,28996.0,98.0,1.0,5.0,3373.0,52.0,41100.0,0.0,2.0,3.0,6.0,3338.0,13169.0,28.8,0.0,0.0,141.0,122.0,3.0,3.0,0.0,15.0,,3.0,,0.0,2.0,4.0,5.0,5.0,5.0,11.0,12.0,4.0,12.0,0.0,0.0,0.0,2.0,94.1,0.0,0.0,0.0,70689.0,36717.0,18500.0,29589.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90382341,,15000.0,15000.0,15000.0, 36 months,11.49,494.57,B,B5,owner,10+ years,MORTGAGE,145000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90382341,,home_improvement,Home improvement,275xx,NC,16.99,0.0,Jan-2001,710.0,714.0,3.0,45.0,66.0,13.0,2.0,11880.0,36.4,31.0,w,0.0,0.0,17034.321151108998,17034.32,15000.0,2034.32,0.0,0.0,0.0,Mar-2018,9130.78,,Jul-2018,694.0,690.0,0.0,78.0,1.0,Individual,,,,0.0,0.0,96005.0,5.0,4.0,1.0,3.0,3.0,80809.0,83.0,4.0,10.0,6243.0,66.0,32600.0,7.0,1.0,8.0,15.0,7385.0,11570.0,47.4,0.0,0.0,123.0,188.0,3.0,2.0,3.0,4.0,77.0,1.0,45.0,1.0,4.0,5.0,5.0,10.0,10.0,8.0,17.0,5.0,13.0,0.0,0.0,0.0,6.0,96.3,20.0,0.0,2.0,125410.0,96005.0,22000.0,89494.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90151774,,7200.0,7200.0,7200.0, 36 months,13.99,246.05,C,C3,Accounts Receivable Associate,< 1 year,RENT,55000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90151774,,debt_consolidation,Debt consolidation,300xx,GA,21.27,1.0,Apr-2000,660.0,664.0,0.0,4.0,,20.0,0.0,4688.0,34.5,26.0,w,1644.52,1644.52,7149.43,7149.43,5555.48,1593.95,0.0,0.0,0.0,Mar-2019,246.05,Apr-2019,Mar-2019,699.0,695.0,0.0,4.0,1.0,Individual,,,,0.0,1928.0,73218.0,0.0,14.0,0.0,2.0,24.0,68530.0,109.0,2.0,4.0,2380.0,96.0,13600.0,1.0,1.0,3.0,6.0,3661.0,6843.0,35.4,0.0,0.0,197.0,65.0,9.0,9.0,0.0,9.0,,0.0,,0.0,4.0,6.0,4.0,4.0,20.0,6.0,6.0,6.0,20.0,0.0,0.0,1.0,2.0,92.0,0.0,0.0,0.0,76556.0,73218.0,10600.0,62956.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695823,,7000.0,7000.0,7000.0, 36 months,13.49,237.52,C,C2,loan officer,3 years,OWN,175000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695823,,debt_consolidation,Debt consolidation,917xx,CA,5.54,0.0,Jan-2004,700.0,704.0,1.0,27.0,46.0,9.0,1.0,2320.0,27.0,13.0,w,0.0,0.0,7322.2797501793,7322.28,7000.0,322.28,0.0,0.0,0.0,Mar-2017,3377.45,,Mar-2017,729.0,725.0,0.0,48.0,1.0,Individual,,,,0.0,0.0,28546.0,1.0,2.0,2.0,3.0,7.0,26226.0,89.0,5.0,7.0,2285.0,75.0,8600.0,4.0,0.0,4.0,10.0,3172.0,4680.0,33.1,0.0,0.0,152.0,22.0,6.0,6.0,0.0,6.0,,4.0,,1.0,2.0,2.0,5.0,5.0,5.0,7.0,7.0,2.0,9.0,0.0,0.0,0.0,7.0,100.0,0.0,0.0,1.0,38228.0,28546.0,7000.0,29628.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611115,,16000.0,16000.0,16000.0, 36 months,6.99,493.97,A,A2,Violation Removal Specialist,4 years,MORTGAGE,115000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611115,,home_improvement,Home improvement,115xx,NY,9.73,1.0,Mar-1991,720.0,724.0,1.0,13.0,,9.0,0.0,25036.0,55.0,22.0,w,3378.24,3378.24,14318.92,14318.92,12621.76,1697.16,0.0,0.0,0.0,Mar-2019,493.97,Apr-2019,Mar-2019,724.0,720.0,0.0,39.0,1.0,Individual,,,,0.0,0.0,333616.0,1.0,1.0,0.0,0.0,46.0,6565.0,26.0,1.0,2.0,12128.0,45.0,45500.0,0.0,3.0,1.0,3.0,47659.0,16487.0,54.8,0.0,0.0,166.0,305.0,2.0,2.0,1.0,2.0,13.0,2.0,13.0,1.0,3.0,5.0,3.0,7.0,6.0,7.0,13.0,5.0,8.0,0.0,0.0,0.0,1.0,90.9,33.3,0.0,0.0,379500.0,31601.0,36500.0,25000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631543,,10000.0,10000.0,10000.0, 60 months,17.99,253.88,D,D2,Maintenance Supervisor,10+ years,MORTGAGE,38000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631543,,debt_consolidation,Debt consolidation,657xx,MO,19.87,0.0,Dec-2005,660.0,664.0,1.0,,30.0,8.0,1.0,5310.0,60.3,62.0,f,7314.09,7314.09,5929.66,5929.66,2685.91,3228.75,15.0,0.0,0.0,Dec-2018,109.66,Apr-2019,Mar-2019,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,16904.0,2.0,3.0,7.0,11.0,3.0,11594.0,86.0,0.0,3.0,2449.0,76.0,8800.0,6.0,1.0,5.0,14.0,2113.0,1613.0,74.4,0.0,0.0,129.0,111.0,17.0,3.0,0.0,26.0,,0.0,,0.0,2.0,3.0,2.0,3.0,53.0,5.0,9.0,3.0,8.0,0.0,0.0,0.0,7.0,100.0,50.0,1.0,0.0,22311.0,16904.0,6300.0,13511.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,INCOME_CURTAILMENT,COMPLETED,3.0,109.66,Oct-2018,Dec-2018,Oct-2018,3.0,17.0,Late (16-30 days),328.98,7500.88,193.1,Cash,N,,,,,, +90693549,,35000.0,35000.0,35000.0, 60 months,13.49,805.17,C,C2,special education teacher,10+ years,MORTGAGE,68840.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693549,,debt_consolidation,Debt consolidation,149xx,NY,15.1,0.0,Jan-1996,760.0,764.0,2.0,,,20.0,0.0,17892.0,18.9,54.0,w,20976.43,20976.43,23387.78,23387.78,14023.57,9364.21,0.0,0.0,0.0,Mar-2019,805.17,Apr-2019,Mar-2019,799.0,795.0,0.0,,1.0,Joint App,143840.0,27.57,Not Verified,0.0,0.0,110241.0,1.0,1.0,0.0,1.0,23.0,7436.0,24.0,3.0,5.0,2797.0,20.0,94800.0,1.0,6.0,3.0,6.0,5802.0,66263.0,16.4,0.0,0.0,248.0,237.0,5.0,5.0,1.0,13.0,,3.0,,0.0,7.0,11.0,10.0,19.0,10.0,18.0,42.0,11.0,20.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,220160.0,25328.0,79300.0,30776.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230865,,40000.0,40000.0,40000.0, 60 months,13.99,930.53,C,C3,Branch Manager,10+ years,RENT,135000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230865,,debt_consolidation,Debt consolidation,907xx,CA,12.36,0.0,May-1987,685.0,689.0,2.0,50.0,,9.0,0.0,49160.0,78.9,17.0,w,0.0,0.0,45947.3371489293,45947.34,40000.0,5947.34,0.0,0.0,0.0,Nov-2017,34780.99,,Dec-2018,699.0,695.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,61350.0,0.0,1.0,0.0,1.0,18.0,12190.0,75.0,0.0,0.0,9930.0,78.0,62300.0,1.0,4.0,2.0,1.0,6817.0,5370.0,64.9,0.0,0.0,119.0,352.0,103.0,18.0,1.0,103.0,,0.0,50.0,3.0,1.0,3.0,4.0,4.0,3.0,8.0,13.0,3.0,9.0,0.0,0.0,0.0,0.0,82.4,25.0,0.0,0.0,78600.0,61350.0,15300.0,16300.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695897,,5000.0,5000.0,5000.0, 36 months,10.99,163.67,B,B4,Smg,4 years,MORTGAGE,92000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695897,,vacation,Vacation,070xx,NJ,10.37,1.0,Jul-2002,660.0,664.0,2.0,1.0,,13.0,0.0,9169.0,32.5,31.0,w,0.0,0.0,5009.4,5009.4,5000.0,9.4,0.0,0.0,0.0,Oct-2016,5012.45,,Sep-2016,664.0,660.0,0.0,1.0,1.0,Individual,,,,1.0,0.0,458370.0,0.0,1.0,0.0,0.0,44.0,8825.0,32.0,1.0,4.0,2638.0,32.0,28200.0,1.0,0.0,3.0,4.0,35259.0,14554.0,37.3,0.0,65000.0,130.0,170.0,8.0,8.0,3.0,8.0,,1.0,24.0,2.0,7.0,8.0,7.0,16.0,2.0,10.0,25.0,8.0,12.0,1.0,0.0,1.0,1.0,90.3,0.0,0.0,0.0,532463.0,17994.0,23200.0,27863.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88819393,,40000.0,40000.0,40000.0, 36 months,14.49,1376.65,C,C4,Operations Lead,< 1 year,MORTGAGE,90000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88819393,,home_improvement,Home improvement,950xx,CA,15.32,0.0,Feb-2009,700.0,704.0,0.0,,,9.0,0.0,37418.0,78.8,17.0,w,0.0,0.0,42923.3179803194,42923.32,40000.0,2923.32,0.0,0.0,0.0,Apr-2017,36072.27,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,467324.0,0.0,1.0,0.0,0.0,30.0,10657.0,57.0,0.0,10.0,10271.0,73.0,47500.0,0.0,0.0,0.0,10.0,51925.0,10082.0,78.8,0.0,0.0,45.0,91.0,18.0,18.0,3.0,18.0,,18.0,,0.0,7.0,7.0,7.0,12.0,2.0,7.0,12.0,7.0,9.0,0.0,0.0,0.0,0.0,100.0,85.7,0.0,0.0,522080.0,48075.0,47500.0,18580.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404084,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Upkeep,10+ years,MORTGAGE,110000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404084,,debt_consolidation,Debt consolidation,630xx,MO,7.15,0.0,May-2002,670.0,674.0,0.0,75.0,,4.0,0.0,0.0,,11.0,w,23871.26,23871.26,24221.72,24221.72,11128.74,12959.69,133.29,0.0,0.0,Mar-2019,933.01,Apr-2019,Mar-2019,749.0,745.0,0.0,79.0,1.0,Joint App,138000.0,12.35,Not Verified,0.0,0.0,95783.0,0.0,2.0,0.0,0.0,32.0,30903.0,64.0,0.0,0.0,0.0,64.0,0.0,0.0,1.0,1.0,0.0,31928.0,,,0.0,0.0,172.0,82.0,52.0,32.0,4.0,,,2.0,,1.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,90.9,,0.0,0.0,124470.0,30903.0,0.0,48314.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89078807,,14025.0,14025.0,14025.0, 60 months,26.99,428.18,F,F3,Quality Control,3 years,MORTGAGE,39000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89078807,,debt_consolidation,Debt consolidation,310xx,GA,20.03,0.0,Mar-2007,675.0,679.0,0.0,,6.0,8.0,1.0,10209.0,71.4,20.0,f,9483.65,9483.65,12364.65,12364.65,4541.35,7823.3,0.0,0.0,0.0,Mar-2019,428.18,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,26394.0,0.0,2.0,1.0,3.0,12.0,16185.0,79.0,1.0,2.0,5122.0,76.0,14300.0,5.0,0.0,2.0,5.0,3299.0,1163.0,88.4,0.0,0.0,114.0,107.0,7.0,7.0,0.0,7.0,,3.0,,0.0,2.0,3.0,3.0,3.0,11.0,6.0,9.0,3.0,8.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,1.0,34848.0,26394.0,10000.0,20548.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90290489,,17000.0,17000.0,17000.0, 60 months,26.99,519.0,F,F3,Business developmental manager,3 years,MORTGAGE,80000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90290489,,debt_consolidation,Debt consolidation,350xx,AL,16.76,1.0,May-2007,675.0,679.0,2.0,6.0,,19.0,0.0,13123.0,40.9,24.0,w,11495.57,11495.57,15025.51,15025.51,5504.43,9521.08,0.0,0.0,0.0,Mar-2019,519.0,Apr-2019,Mar-2019,574.0,570.0,0.0,,1.0,Individual,,,,0.0,0.0,235499.0,1.0,2.0,2.0,2.0,6.0,48747.0,90.0,2.0,9.0,5033.0,52.0,32100.0,1.0,2.0,4.0,12.0,15700.0,14710.0,36.0,0.0,0.0,110.0,112.0,10.0,6.0,1.0,11.0,,1.0,6.0,0.0,3.0,5.0,11.0,11.0,6.0,16.0,17.0,5.0,19.0,0.0,0.0,0.0,4.0,95.8,14.3,0.0,0.0,261524.0,61870.0,23000.0,51976.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631182,,30000.0,30000.0,30000.0, 60 months,17.99,761.64,D,D2,Service Mechanic,10+ years,RENT,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631182,,debt_consolidation,Debt consolidation,923xx,CA,15.36,0.0,May-2002,670.0,674.0,0.0,,83.0,6.0,1.0,3418.0,35.2,11.0,w,20193.39,20193.39,20879.56,20879.56,9806.61,11072.95,0.0,0.0,0.0,Mar-2019,761.64,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,45524.0,0.0,3.0,0.0,3.0,13.0,42106.0,79.0,0.0,0.0,3418.0,72.0,9700.0,0.0,1.0,1.0,3.0,7587.0,3082.0,52.6,0.0,0.0,122.0,172.0,30.0,13.0,0.0,46.0,,11.0,,0.0,1.0,1.0,1.0,2.0,6.0,3.0,5.0,1.0,6.0,0.0,0.0,0.0,0.0,100.0,0.0,1.0,0.0,63103.0,45524.0,6500.0,53403.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,EXCESSIVE_OBLIGATIONS,COMPLETED,3.0,316.39,Dec-2018,Mar-2019,Dec-2018,3.0,19.0,In Grace Period,949.17,20861.66,605.88,Cash,N,,,,,, +90461710,,15000.0,15000.0,15000.0, 36 months,15.59,524.33,C,C5,Shipping Supervisor ,2 years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461710,,debt_consolidation,Debt consolidation,450xx,OH,17.5,0.0,Sep-2005,670.0,674.0,1.0,,77.0,15.0,1.0,14439.0,45.8,22.0,w,3486.54,3486.54,15192.58,15192.58,11513.46,3679.12,0.0,0.0,0.0,Mar-2019,524.33,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,122.0,118406.0,2.0,1.0,0.0,1.0,16.0,21219.0,82.0,4.0,7.0,3930.0,62.0,31500.0,3.0,1.0,4.0,10.0,7894.0,14903.0,49.1,0.0,0.0,121.0,132.0,4.0,4.0,4.0,5.0,,0.0,,0.0,10.0,11.0,10.0,11.0,4.0,13.0,14.0,11.0,15.0,0.0,0.0,0.0,5.0,100.0,0.0,1.0,0.0,140970.0,35658.0,29300.0,25788.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641239,,7850.0,7850.0,7850.0, 36 months,13.49,266.36,C,C2,hosstes/cashier,10+ years,MORTGAGE,27000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641239,,credit_card,Credit card refinancing,891xx,NV,26.22,0.0,Feb-2001,670.0,674.0,2.0,,73.0,9.0,1.0,9173.0,42.7,22.0,w,1783.19,1783.19,7718.56,7718.56,6066.81,1651.75,0.0,0.0,0.0,Mar-2019,266.36,Apr-2019,Mar-2019,609.0,605.0,0.0,,1.0,Individual,,,,0.0,0.0,131315.0,1.0,1.0,1.0,1.0,9.0,2848.0,81.0,3.0,4.0,3491.0,48.0,21500.0,3.0,1.0,4.0,7.0,14591.0,8762.0,49.1,0.0,0.0,128.0,187.0,6.0,6.0,4.0,6.0,,5.0,,0.0,5.0,7.0,5.0,11.0,3.0,7.0,15.0,7.0,9.0,0.0,0.0,0.0,4.0,100.0,20.0,1.0,0.0,147735.0,12021.0,17200.0,3500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571715,,12000.0,12000.0,12000.0, 36 months,8.99,381.55,B,B1,Senior Nuclear Medicine Technologist,10+ years,MORTGAGE,94000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571715,,credit_card,Credit card refinancing,633xx,MO,12.24,0.0,May-1984,705.0,709.0,2.0,,,14.0,0.0,10413.0,36.2,20.0,w,2592.23,2592.23,11058.96,11058.96,9407.77,1651.19,0.0,0.0,0.0,Mar-2019,381.55,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,288514.0,1.0,6.0,2.0,2.0,10.0,119103.0,101.0,1.0,4.0,3568.0,88.0,28800.0,1.0,0.0,7.0,7.0,20608.0,5675.0,54.6,0.0,0.0,117.0,388.0,5.0,5.0,4.0,5.0,,0.0,,0.0,3.0,5.0,3.0,3.0,8.0,7.0,8.0,5.0,14.0,0.0,0.0,0.0,4.0,100.0,66.7,0.0,0.0,309358.0,129516.0,12500.0,118377.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581463,,2000.0,2000.0,2000.0, 36 months,7.59,62.3,A,A3,Clerk,10+ years,MORTGAGE,45000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581463,,home_improvement,Home improvement,620xx,IL,5.36,1.0,Oct-1992,700.0,704.0,1.0,3.0,,6.0,0.0,28433.0,85.6,31.0,w,389.24,389.24,1835.86,1835.86,1610.76,225.1,0.0,0.0,0.0,Mar-2019,62.3,Apr-2019,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,124925.0,0.0,0.0,0.0,0.0,147.0,0.0,,1.0,1.0,0.0,86.0,33200.0,0.0,5.0,1.0,2.0,20821.0,,,0.0,0.0,167.0,287.0,9.0,9.0,3.0,,3.0,5.0,3.0,0.0,0.0,3.0,0.0,11.0,4.0,5.0,24.0,3.0,6.0,0.0,0.0,0.0,1.0,87.1,,0.0,0.0,139550.0,28433.0,0.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541567,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,Business Consultant,3 years,MORTGAGE,95000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541567,,debt_consolidation,Debt consolidation,554xx,MN,28.02,0.0,Sep-2000,735.0,739.0,0.0,,,12.0,0.0,53959.0,70.6,24.0,w,0.0,0.0,42666.5551245279,42666.56,35000.0,7666.56,0.0,0.0,0.0,Apr-2018,28356.86,,May-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,239527.0,0.0,2.0,0.0,1.0,21.0,32180.0,57.0,1.0,2.0,19812.0,65.0,76400.0,0.0,0.0,0.0,3.0,19961.0,17016.0,75.3,0.0,0.0,165.0,192.0,12.0,12.0,1.0,12.0,,,,0.0,4.0,5.0,6.0,7.0,9.0,9.0,14.0,5.0,12.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,300486.0,86139.0,69000.0,56447.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90150894,,23350.0,23350.0,23350.0, 60 months,24.49,678.39,E,E3,Taxi and Lodging chief,10+ years,RENT,73000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90150894,,debt_consolidation,Debt consolidation,306xx,GA,21.42,0.0,Jun-2004,660.0,664.0,0.0,35.0,,14.0,0.0,6671.0,64.1,32.0,w,15487.03,15487.03,19816.26,19816.26,7862.97,11953.29,0.0,0.0,0.0,Mar-2019,678.39,Apr-2019,Mar-2019,609.0,605.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,36725.0,1.0,3.0,1.0,4.0,11.0,30054.0,78.0,2.0,6.0,1791.0,75.0,10400.0,0.0,2.0,1.0,10.0,2623.0,1533.0,76.4,1.0,0.0,142.0,147.0,2.0,2.0,0.0,2.0,35.0,10.0,35.0,2.0,6.0,9.0,7.0,13.0,11.0,11.0,21.0,9.0,14.0,0.0,0.0,0.0,3.0,90.6,42.9,0.0,0.0,48866.0,36725.0,6500.0,38466.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405595,,36000.0,36000.0,36000.0, 60 months,14.49,846.84,C,C4,Senior Technical Writer,10+ years,MORTGAGE,55000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405595,,medical,Medical expenses,630xx,MO,57.41,0.0,Jul-1999,750.0,754.0,1.0,,,25.0,0.0,24932.0,30.9,64.0,w,21616.92,21616.92,24679.38,24679.38,14383.08,10296.3,0.0,0.0,0.0,Mar-2019,846.84,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Joint App,135000.0,23.39,Not Verified,0.0,0.0,259059.0,2.0,4.0,2.0,3.0,0.0,169960.0,69.0,0.0,5.0,7189.0,48.0,80600.0,2.0,4.0,2.0,8.0,11263.0,26978.0,45.7,0.0,0.0,163.0,206.0,13.0,0.0,2.0,20.0,,0.0,,0.0,6.0,8.0,8.0,16.0,24.0,19.0,38.0,8.0,25.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,331685.0,194892.0,49700.0,176674.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90152350,,8500.0,8500.0,8500.0, 36 months,16.99,303.01,D,D1,Bartender,1 year,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90152350,,debt_consolidation,Debt consolidation,532xx,WI,27.05,0.0,Apr-2009,695.0,699.0,3.0,,,7.0,0.0,8520.0,44.6,11.0,w,0.0,0.0,9820.7575575668,9820.76,8500.0,1320.76,0.0,0.0,0.0,Oct-2017,6495.67,,Oct-2017,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,16198.0,0.0,1.0,0.0,1.0,18.0,7678.0,53.0,0.0,2.0,2841.0,48.0,19100.0,4.0,0.0,3.0,4.0,2314.0,6940.0,52.1,0.0,0.0,89.0,65.0,13.0,13.0,0.0,13.0,,0.0,,0.0,4.0,5.0,4.0,4.0,3.0,6.0,6.0,5.0,7.0,0.0,0.0,0.0,0.0,100.0,25.0,0.0,0.0,33587.0,16198.0,14500.0,14487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90275881,,21000.0,21000.0,21000.0, 36 months,7.99,657.97,A,A4,Owner Vice President,10+ years,MORTGAGE,189000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90275881,,debt_consolidation,Debt consolidation,245xx,VA,21.66,0.0,Sep-1991,730.0,734.0,1.0,,,29.0,0.0,155991.0,42.0,46.0,w,4485.41,4485.41,19071.81,19071.81,16514.59,2557.22,0.0,0.0,0.0,Mar-2019,657.97,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,503705.0,1.0,2.0,0.0,0.0,31.0,22203.0,48.0,1.0,2.0,21025.0,43.0,292200.0,0.0,2.0,1.0,2.0,17369.0,96335.0,46.2,0.0,0.0,120.0,300.0,5.0,5.0,6.0,5.0,,5.0,,0.0,16.0,22.0,17.0,21.0,8.0,26.0,32.0,22.0,29.0,0.0,0.0,0.0,1.0,100.0,5.9,0.0,0.0,734684.0,178194.0,179100.0,46046.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591418,,8000.0,8000.0,8000.0, 36 months,12.79,268.75,C,C1,Manager,2 years,MORTGAGE,109000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591418,,debt_consolidation,Debt consolidation,951xx,CA,14.0,1.0,Aug-2006,695.0,699.0,2.0,20.0,,12.0,0.0,79295.0,56.2,27.0,w,0.0,0.0,8751.016780259,8751.02,8000.0,751.02,0.0,0.0,0.0,Jul-2017,6569.76,,Mar-2019,749.0,745.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,701777.0,4.0,1.0,0.0,0.0,36.0,1142.0,6.0,3.0,3.0,4950.0,34.0,91800.0,4.0,1.0,7.0,4.0,70178.0,5245.0,70.0,0.0,0.0,121.0,121.0,2.0,2.0,1.0,2.0,20.0,0.0,20.0,0.0,4.0,5.0,5.0,10.0,8.0,10.0,18.0,5.0,12.0,0.0,0.0,0.0,4.0,96.2,40.0,0.0,0.0,735300.0,80437.0,17500.0,18000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90242018,,8000.0,8000.0,8000.0, 36 months,22.39,307.15,E,E1,Paralegal,8 years,RENT,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90242018,,debt_consolidation,Debt consolidation,331xx,FL,22.41,0.0,Oct-1998,665.0,669.0,0.0,35.0,,8.0,0.0,10234.0,81.9,22.0,w,0.0,0.0,8889.841005881999,8889.84,8000.0,889.84,0.0,0.0,0.0,May-2017,4699.43,,Mar-2019,674.0,670.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,35134.0,1.0,2.0,2.0,2.0,8.0,24900.0,86.0,1.0,4.0,5811.0,85.0,12500.0,2.0,2.0,4.0,6.0,4392.0,295.0,96.9,0.0,0.0,132.0,215.0,4.0,4.0,0.0,4.0,,8.0,38.0,2.0,3.0,5.0,3.0,8.0,6.0,6.0,16.0,5.0,8.0,0.0,0.0,0.0,3.0,86.4,100.0,0.0,0.0,41432.0,35134.0,9500.0,28932.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451497,,17600.0,17600.0,17600.0, 36 months,18.99,645.06,D,D3,Clinic Assistant Manager,9 years,MORTGAGE,36748.8,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451497,,debt_consolidation,Debt consolidation,973xx,OR,33.9,1.0,Aug-2011,680.0,684.0,0.0,9.0,,6.0,0.0,5706.0,52.8,11.0,w,0.0,0.0,20417.3643110579,20417.36,17600.0,2817.36,0.0,0.0,0.0,Aug-2017,14041.04,,Mar-2019,574.0,570.0,0.0,,1.0,Joint App,72537.6,20.07,Not Verified,0.0,0.0,173602.0,0.0,2.0,1.0,3.0,12.0,29667.0,79.0,1.0,1.0,4595.0,73.0,10800.0,2.0,2.0,1.0,4.0,28934.0,0.0,102.1,0.0,0.0,20.0,61.0,9.0,9.0,1.0,61.0,,9.0,9.0,0.0,1.0,3.0,1.0,3.0,3.0,3.0,7.0,3.0,6.0,0.0,0.0,0.0,2.0,90.9,100.0,0.0,0.0,200509.0,35373.0,4500.0,37669.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90141995,,28000.0,28000.0,28000.0, 60 months,24.49,813.49,E,E3,Lead Security,10+ years,MORTGAGE,52000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90141995,,debt_consolidation,Debt consolidation,850xx,AZ,15.7,1.0,Jan-1984,660.0,664.0,0.0,4.0,,8.0,0.0,6486.0,63.6,15.0,w,0.0,0.0,16510.3,16510.3,4526.1,8658.54,0.0,3325.66,598.6188,Feb-2018,813.49,,Aug-2018,524.0,520.0,0.0,4.0,1.0,Joint App,84000.0,18.68,Not Verified,0.0,1807.0,115263.0,1.0,2.0,2.0,3.0,8.0,13333.0,88.0,3.0,4.0,1234.0,78.0,10200.0,0.0,2.0,2.0,7.0,14408.0,232.0,90.3,0.0,0.0,392.0,117.0,2.0,2.0,2.0,8.0,,7.0,54.0,2.0,2.0,4.0,2.0,2.0,8.0,4.0,5.0,4.0,8.0,0.0,0.0,1.0,5.0,86.7,100.0,0.0,0.0,226261.0,19819.0,2400.0,15135.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90481753,,2500.0,2500.0,2500.0, 36 months,6.99,77.19,A,A2,MRI Technologist,10+ years,MORTGAGE,57000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90481753,,car,Car financing,180xx,PA,6.46,0.0,May-1999,750.0,754.0,0.0,,,5.0,0.0,13038.0,46.1,20.0,w,527.62,527.62,2237.54,2237.54,1972.38,265.16,0.0,0.0,0.0,Mar-2019,77.19,Apr-2019,Mar-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,77518.0,1.0,1.0,1.0,1.0,4.0,3786.0,98.0,0.0,0.0,9276.0,52.0,28300.0,0.0,1.0,0.0,1.0,15504.0,13762.0,48.6,0.0,0.0,182.0,208.0,25.0,4.0,4.0,201.0,,,,0.0,2.0,2.0,2.0,4.0,5.0,3.0,11.0,2.0,5.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,103536.0,16824.0,26800.0,3849.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541204,,9800.0,9800.0,9800.0, 36 months,17.99,354.25,D,D2,Chief Parks Mechanic,10+ years,MORTGAGE,49000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541204,,debt_consolidation,Debt consolidation,750xx,TX,31.5,1.0,May-2009,660.0,664.0,0.0,12.0,118.0,7.0,1.0,13832.0,78.6,9.0,w,0.0,0.0,12486.252535326,12486.25,9800.0,2686.25,0.0,0.0,0.0,Nov-2018,3954.87,,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,24117.0,1.0,3.0,2.0,4.0,3.0,10285.0,35.0,0.0,2.0,3199.0,51.0,17600.0,2.0,0.0,4.0,6.0,3445.0,860.0,89.9,0.0,0.0,88.0,39.0,22.0,3.0,0.0,22.0,,12.0,,0.0,3.0,4.0,3.0,3.0,5.0,4.0,4.0,4.0,7.0,0.0,0.0,0.0,2.0,88.9,100.0,1.0,0.0,47238.0,24117.0,8500.0,29638.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611755,,10000.0,10000.0,10000.0, 36 months,10.99,327.34,B,B4,Project Manager,4 years,MORTGAGE,82000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611755,,debt_consolidation,Debt consolidation,587xx,ND,10.55,0.0,Aug-2003,660.0,664.0,0.0,,77.0,9.0,1.0,7159.0,63.4,25.0,w,0.0,0.0,11684.361685156002,11684.36,10000.0,1684.36,0.0,0.0,0.0,Dec-2018,3461.18,,Jan-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,189.0,150395.0,2.0,4.0,2.0,4.0,1.0,28698.0,95.0,2.0,2.0,5580.0,87.0,11300.0,0.0,2.0,0.0,7.0,16711.0,341.0,95.5,0.0,0.0,134.0,157.0,6.0,1.0,1.0,7.0,,17.0,,0.0,2.0,2.0,2.0,7.0,11.0,4.0,13.0,2.0,9.0,0.0,0.0,0.0,4.0,100.0,100.0,1.0,0.0,158213.0,35857.0,7500.0,30069.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392976,,8000.0,8000.0,8000.0, 36 months,8.99,254.37,B,B1,CEO,4 years,MORTGAGE,345000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392976,,home_improvement,Home improvement,981xx,WA,12.57,0.0,Feb-1986,685.0,689.0,0.0,24.0,,18.0,0.0,131005.0,65.1,34.0,w,1728.04,1728.04,7372.73,7372.73,6271.96,1100.77,0.0,0.0,0.0,Mar-2019,254.37,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,230.0,560555.0,0.0,1.0,0.0,0.0,26.0,7530.0,35.0,0.0,1.0,14677.0,57.0,161500.0,0.0,3.0,0.0,1.0,32974.0,20705.0,69.5,0.0,0.0,256.0,367.0,13.0,13.0,2.0,13.0,,13.0,,0.0,6.0,9.0,8.0,15.0,5.0,14.0,25.0,9.0,18.0,0.0,0.0,0.0,0.0,97.1,42.9,0.0,0.0,640395.0,187784.0,67800.0,21613.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90312575,,7000.0,7000.0,7000.0, 36 months,13.99,239.21,C,C3,Market manger,8 years,OWN,39000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90312575,,debt_consolidation,Debt consolidation,313xx,GA,30.68,0.0,Mar-2006,675.0,679.0,0.0,,2.0,12.0,3.0,8781.0,52.6,15.0,w,0.0,0.0,3821.92,3821.92,2754.57,1067.35,0.0,0.0,0.0,Feb-2018,239.21,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,36437.0,1.0,2.0,0.0,1.0,13.0,27656.0,74.0,4.0,6.0,5185.0,68.0,16700.0,1.0,0.0,2.0,7.0,3312.0,477.0,94.4,0.0,0.0,126.0,67.0,4.0,4.0,0.0,20.0,,7.0,,0.0,3.0,5.0,3.0,4.0,4.0,10.0,11.0,5.0,12.0,0.0,0.0,0.0,4.0,100.0,100.0,0.0,3.0,53872.0,36437.0,8500.0,37172.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621593,,16000.0,16000.0,16000.0, 36 months,18.99,586.42,D,D3,Auditor,10+ years,RENT,65000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621593,,debt_consolidation,Debt consolidation,481xx,MI,26.92,1.0,Feb-1996,695.0,699.0,1.0,9.0,94.0,14.0,1.0,6896.0,64.4,57.0,f,0.0,0.0,18152.7093094402,18152.71,16000.0,2152.71,0.0,0.0,0.0,Jul-2017,13478.23,,Mar-2019,649.0,645.0,0.0,9.0,1.0,Individual,,,,0.0,0.0,203962.0,2.0,9.0,1.0,1.0,1.0,197066.0,93.0,1.0,3.0,4248.0,89.0,10700.0,0.0,5.0,2.0,4.0,14569.0,1423.0,76.3,0.0,0.0,247.0,74.0,5.0,1.0,1.0,22.0,,5.0,,1.0,2.0,5.0,2.0,5.0,42.0,5.0,14.0,5.0,14.0,0.0,0.0,1.0,2.0,100.0,50.0,1.0,0.0,191344.0,203962.0,6000.0,180644.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693915,,8000.0,8000.0,8000.0, 36 months,7.99,250.66,A,A4,Maintenance Tech,3 years,RENT,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693915,,credit_card,Credit card refinancing,532xx,WI,3.22,0.0,Jun-2011,760.0,764.0,0.0,,,3.0,0.0,6663.0,27.2,4.0,w,0.0,0.0,8711.9528501275,8711.95,8000.0,711.95,0.0,0.0,0.0,Feb-2018,4955.6,,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,6756.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,5277.0,28.0,24500.0,0.0,0.0,0.0,0.0,2252.0,17837.0,27.2,0.0,0.0,,63.0,40.0,40.0,0.0,40.0,,,,0.0,2.0,2.0,2.0,2.0,0.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,24593.0,6756.0,24500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90101488,,8000.0,8000.0,8000.0, 36 months,16.99,285.19,D,D1,Catering Associate ,3 years,OWN,35000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90101488,,debt_consolidation,Debt consolidation,103xx,NY,28.98,1.0,May-1995,660.0,664.0,1.0,6.0,,23.0,0.0,4922.0,24.7,30.0,w,0.0,0.0,9485.3072374311,9485.31,8000.0,1485.31,0.0,0.0,0.0,Jan-2018,5500.2,,May-2018,659.0,655.0,0.0,6.0,1.0,Individual,,,,0.0,0.0,52113.0,1.0,12.0,0.0,0.0,47.0,47191.0,88.0,2.0,3.0,3288.0,71.0,19900.0,0.0,0.0,4.0,3.0,2606.0,3870.0,55.0,1.0,0.0,115.0,256.0,2.0,2.0,0.0,2.0,44.0,0.0,6.0,1.0,2.0,4.0,3.0,5.0,14.0,11.0,16.0,4.0,23.0,0.0,0.0,1.0,2.0,90.0,0.0,0.0,0.0,73779.0,52113.0,8600.0,53879.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90601759,,13025.0,13025.0,13025.0, 36 months,16.99,464.32,D,D1,PTP Resolution Specialist,< 1 year,MORTGAGE,51000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90601759,,debt_consolidation,Debt consolidation,553xx,MN,17.74,0.0,May-2005,665.0,669.0,1.0,74.0,110.0,14.0,1.0,6593.0,43.1,21.0,f,0.0,0.0,16325.5728436154,16325.57,13025.0,3277.35,23.2200000507,0.0,0.0,Oct-2018,5635.28,,Oct-2018,609.0,605.0,0.0,74.0,1.0,Individual,,,,0.0,0.0,140004.0,0.0,1.0,1.0,1.0,7.0,13210.0,88.0,1.0,4.0,3000.0,65.0,15300.0,0.0,3.0,1.0,5.0,10000.0,1920.0,71.8,0.0,0.0,124.0,136.0,8.0,7.0,1.0,21.0,,0.0,74.0,2.0,4.0,8.0,4.0,7.0,4.0,12.0,16.0,8.0,14.0,0.0,0.0,0.0,2.0,85.7,25.0,0.0,1.0,177484.0,19803.0,6800.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90170179,,15000.0,15000.0,15000.0, 36 months,11.49,494.57,B,B5,Owner/Operator,1 year,MORTGAGE,127000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90170179,,debt_consolidation,Debt consolidation,986xx,WA,10.95,0.0,Jul-2005,675.0,679.0,0.0,26.0,69.0,26.0,1.0,15036.0,34.6,52.0,w,0.0,0.0,9719.43,9719.43,2903.47,1100.96,0.0,5715.0,1028.7,Jun-2017,494.57,,Feb-2019,589.0,585.0,0.0,26.0,1.0,Individual,,,,0.0,0.0,189312.0,4.0,1.0,1.0,2.0,8.0,18057.0,86.0,8.0,16.0,5978.0,51.0,43500.0,1.0,2.0,4.0,18.0,7572.0,16631.0,46.7,0.0,0.0,134.0,103.0,2.0,2.0,5.0,2.0,,1.0,,2.0,7.0,11.0,8.0,10.0,19.0,24.0,27.0,11.0,26.0,0.0,0.0,0.0,9.0,94.2,0.0,0.0,1.0,266372.0,33093.0,31200.0,21000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,COMPLETE,Dec-2017,5715.0,45.0,12.0 +90621625,,14000.0,14000.0,14000.0, 36 months,11.49,461.6,B,B5,Computer Scientist,3 years,MORTGAGE,85000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621625,,credit_card,Credit card refinancing,327xx,FL,21.28,0.0,Feb-2000,700.0,704.0,0.0,,,19.0,0.0,59497.0,91.1,40.0,w,0.0,0.0,15890.3302443803,15890.33,14000.0,1890.33,0.0,0.0,0.0,Apr-2018,2.54,,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,546893.0,3.0,10.0,3.0,10.0,2.0,164810.0,85.0,3.0,3.0,21420.0,88.0,65300.0,0.0,7.0,1.0,13.0,28784.0,1684.0,95.1,0.0,0.0,145.0,199.0,8.0,2.0,3.0,8.0,,8.0,,0.0,2.0,4.0,3.0,5.0,28.0,7.0,9.0,4.0,19.0,0.0,0.0,0.0,6.0,100.0,66.7,0.0,0.0,590606.0,224307.0,34200.0,180473.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471682,,10000.0,10000.0,10000.0, 36 months,7.99,313.32,A,A4,respiratory therapist,10+ years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471682,,debt_consolidation,Debt consolidation,014xx,MA,16.02,1.0,Nov-1992,705.0,709.0,0.0,23.0,,11.0,0.0,6850.0,52.3,38.0,w,2135.87,2135.87,9088.93,9088.93,7864.13,1224.8,0.0,0.0,0.0,Mar-2019,313.32,Apr-2019,Mar-2019,709.0,705.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,34083.0,0.0,3.0,0.0,2.0,13.0,27233.0,55.0,1.0,2.0,4000.0,54.0,13100.0,2.0,4.0,2.0,4.0,3408.0,4447.0,58.0,0.0,0.0,142.0,286.0,10.0,10.0,6.0,10.0,23.0,2.0,23.0,9.0,3.0,5.0,3.0,15.0,6.0,8.0,25.0,5.0,11.0,0.0,0.0,1.0,1.0,76.3,33.3,0.0,0.0,62725.0,34083.0,10600.0,49625.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90125594,,9700.0,9700.0,9700.0, 36 months,9.49,310.68,B,B2,Behavior Analyst,2 years,RENT,65000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90125594,,credit_card,Credit card refinancing,959xx,CA,19.98,0.0,Jun-2003,675.0,679.0,1.0,40.0,54.0,26.0,1.0,821.0,3.3,59.0,w,0.0,0.0,10490.022555507,10490.02,9700.0,790.02,0.0,0.0,0.0,Oct-2017,7077.65,,Mar-2019,684.0,680.0,0.0,40.0,1.0,Individual,,,,0.0,73.0,97892.0,1.0,11.0,0.0,2.0,17.0,97071.0,95.0,1.0,2.0,173.0,65.0,24600.0,4.0,1.0,1.0,4.0,4079.0,20673.0,1.1,0.0,0.0,157.0,159.0,1.0,1.0,0.0,1.0,,3.0,,1.0,3.0,5.0,9.0,14.0,35.0,15.0,24.0,5.0,26.0,0.0,0.0,0.0,1.0,94.3,0.0,1.0,0.0,119035.0,97892.0,20900.0,94435.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280856,,35000.0,35000.0,35000.0, 60 months,26.99,1068.53,F,F3,Registered Nurse,6 years,RENT,98169.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280856,,major_purchase,Major purchase,372xx,TN,2.61,0.0,Apr-2008,745.0,749.0,2.0,,,15.0,0.0,24277.0,14.7,26.0,w,0.0,0.0,11221.12,11221.12,1781.82,4576.88,53.43,4808.99,865.6182,Apr-2017,1068.53,,Oct-2017,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,24277.0,3.0,0.0,0.0,0.0,32.0,0.0,,5.0,8.0,7000.0,15.0,165400.0,0.0,0.0,2.0,8.0,1734.0,107135.0,9.3,0.0,0.0,77.0,101.0,0.0,0.0,0.0,0.0,,0.0,,0.0,3.0,5.0,10.0,15.0,2.0,15.0,24.0,5.0,15.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,0.0,165400.0,24277.0,118100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491695,,10000.0,10000.0,10000.0, 36 months,9.49,320.29,B,B2,maintenance ,3 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491695,,debt_consolidation,Debt consolidation,724xx,AR,30.51,0.0,Aug-1994,705.0,709.0,1.0,32.0,,13.0,0.0,7452.0,41.6,36.0,w,0.0,0.0,11386.331336802199,11386.33,10000.0,1386.33,0.0,0.0,0.0,Nov-2018,3704.64,,Mar-2019,744.0,740.0,1.0,44.0,1.0,Individual,,,,0.0,280.0,111571.0,0.0,8.0,0.0,3.0,13.0,45558.0,73.0,0.0,3.0,6943.0,66.0,17900.0,2.0,1.0,2.0,7.0,8582.0,6557.0,51.4,0.0,0.0,160.0,265.0,17.0,8.0,4.0,17.0,45.0,1.0,44.0,0.0,1.0,2.0,2.0,4.0,21.0,4.0,11.0,2.0,13.0,0.0,0.0,0.0,1.0,72.2,50.0,0.0,0.0,139038.0,53010.0,13500.0,62038.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90696191,,24000.0,24000.0,24000.0, 60 months,18.99,622.45,D,D3,Financial Representative,10+ years,RENT,120000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90696191,,debt_consolidation,Debt consolidation,927xx,CA,15.66,2.0,Apr-2003,670.0,674.0,0.0,11.0,84.0,6.0,2.0,710.0,39.4,11.0,w,15179.93,15179.93,18172.45,18172.45,8820.07,9352.38,0.0,0.0,0.0,Mar-2019,622.45,Apr-2019,Mar-2019,634.0,630.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,62431.0,1.0,4.0,1.0,3.0,2.0,61721.0,98.0,0.0,0.0,656.0,96.0,1800.0,1.0,2.0,2.0,3.0,10405.0,1090.0,39.4,0.0,0.0,161.0,125.0,52.0,2.0,0.0,52.0,25.0,2.0,25.0,3.0,2.0,2.0,2.0,3.0,8.0,2.0,3.0,2.0,6.0,0.0,0.0,0.0,1.0,54.5,0.0,1.0,1.0,64824.0,62431.0,1800.0,63024.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271358,,12000.0,12000.0,12000.0, 36 months,9.49,384.34,B,B2,VDC Coordinator,2 years,MORTGAGE,85000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271358,,debt_consolidation,Debt consolidation,301xx,GA,26.29,2.0,Nov-2010,670.0,674.0,0.0,7.0,,18.0,0.0,10758.0,70.8,21.0,w,0.0,0.0,12359.463520521002,12359.46,12000.0,359.46,0.0,0.0,0.0,Feb-2017,87.77,,Sep-2017,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,315540.0,0.0,12.0,1.0,2.0,12.0,81597.0,71.0,0.0,1.0,3812.0,71.0,15200.0,1.0,0.0,1.0,4.0,17530.0,2066.0,81.6,0.0,0.0,70.0,61.0,22.0,12.0,1.0,37.0,,12.0,,0.0,3.0,4.0,4.0,4.0,14.0,5.0,6.0,4.0,18.0,0.0,0.0,0.0,1.0,90.5,75.0,0.0,0.0,352382.0,92355.0,11200.0,106439.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90308296,,38500.0,38500.0,38500.0, 36 months,10.99,1260.26,B,B4,Teacher,10+ years,MORTGAGE,65000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90308296,,debt_consolidation,Debt consolidation,760xx,TX,27.47,1.0,Jan-2002,700.0,704.0,0.0,7.0,,11.0,0.0,32306.0,59.9,22.0,w,8507.26,8507.26,36524.03,36524.03,29992.74,6531.29,0.0,0.0,0.0,Mar-2019,1260.26,Apr-2019,Mar-2019,744.0,740.0,0.0,,1.0,Joint App,110000.0,17.41,Not Verified,0.0,0.0,205699.0,1.0,2.0,0.0,1.0,14.0,31711.0,86.0,1.0,1.0,20290.0,67.0,53900.0,2.0,0.0,0.0,2.0,18700.0,14652.0,66.9,0.0,0.0,170.0,176.0,1.0,1.0,3.0,26.0,,14.0,7.0,0.0,3.0,6.0,4.0,5.0,7.0,8.0,12.0,6.0,11.0,0.0,0.0,0.0,1.0,90.9,50.0,0.0,0.0,261514.0,64017.0,44300.0,58001.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551712,,7000.0,7000.0,7000.0, 36 months,5.32,210.81,A,A1,Teacher/professor,10+ years,MORTGAGE,91000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551712,,home_improvement,Home improvement,066xx,CT,15.13,0.0,Oct-2003,700.0,704.0,1.0,55.0,,8.0,0.0,480.0,3.1,45.0,w,0.0,0.0,7282.8247561688,7282.82,7000.0,282.82,0.0,0.0,0.0,Nov-2017,1755.17,,Mar-2019,779.0,775.0,0.0,55.0,1.0,Individual,,,,0.0,0.0,224709.0,1.0,3.0,3.0,5.0,11.0,45571.0,86.0,1.0,2.0,480.0,70.0,15600.0,3.0,0.0,6.0,7.0,32101.0,15120.0,3.1,0.0,0.0,94.0,155.0,2.0,2.0,3.0,2.0,55.0,0.0,55.0,1.0,1.0,1.0,2.0,9.0,23.0,3.0,18.0,1.0,7.0,0.0,0.0,0.0,4.0,95.5,0.0,0.0,0.0,257408.0,52986.0,15600.0,53173.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90166941,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Flight Attendant ,5 years,RENT,55000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90166941,,credit_card,Credit card refinancing,105xx,NY,29.53,0.0,Apr-2013,720.0,724.0,0.0,,,9.0,0.0,16477.0,35.7,10.0,w,4597.59,4597.59,19856.39,19856.39,15402.41,4453.98,0.0,0.0,0.0,Mar-2019,683.46,Apr-2019,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,30989.0,2.0,1.0,0.0,1.0,21.0,14393.0,44.0,3.0,4.0,6596.0,39.0,46200.0,2.0,0.0,0.0,5.0,3443.0,22838.0,36.4,0.0,0.0,21.0,41.0,6.0,6.0,0.0,6.0,,13.0,,0.0,5.0,7.0,5.0,6.0,1.0,7.0,8.0,7.0,9.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,80443.0,30989.0,35900.0,32385.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571609,,5000.0,5000.0,5000.0, 36 months,7.59,155.74,A,A3,Management,10+ years,MORTGAGE,65000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571609,,small_business,Business,541xx,WI,24.83,1.0,Nov-2004,685.0,689.0,0.0,4.0,,13.0,0.0,14516.0,57.6,44.0,w,0.0,0.0,5506.3562823874,5506.36,5000.0,506.36,0.0,0.0,0.0,Feb-2019,712.76,,Feb-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,168749.0,1.0,2.0,1.0,4.0,10.0,16067.0,47.0,1.0,5.0,4803.0,51.0,25200.0,2.0,1.0,2.0,10.0,12981.0,10084.0,59.0,0.0,0.0,127.0,142.0,7.0,3.0,6.0,7.0,,4.0,4.0,0.0,6.0,6.0,8.0,8.0,27.0,9.0,10.0,6.0,13.0,0.0,0.0,0.0,3.0,95.5,37.5,0.0,0.0,198001.0,30583.0,24600.0,34421.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90098289,,4800.0,4800.0,4800.0, 36 months,15.59,167.79,C,C5,Child Care Provider,2 years,RENT,16320.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90098289,,debt_consolidation,Debt consolidation,327xx,FL,29.12,0.0,Dec-2000,660.0,664.0,1.0,25.0,54.0,7.0,1.0,2238.0,21.7,32.0,w,1115.54,1115.54,4861.75,4861.75,3684.46,1177.29,0.0,0.0,0.0,Mar-2019,167.79,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,4497.0,3.0,1.0,0.0,1.0,20.0,2259.0,65.0,5.0,9.0,663.0,33.0,10300.0,1.0,0.0,3.0,10.0,642.0,697.0,53.5,0.0,0.0,189.0,145.0,2.0,2.0,0.0,2.0,,5.0,25.0,0.0,2.0,4.0,2.0,4.0,14.0,6.0,18.0,4.0,7.0,0.0,0.0,0.0,5.0,96.6,50.0,1.0,0.0,13785.0,4497.0,1500.0,3485.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571803,,8000.0,8000.0,8000.0, 36 months,16.99,285.19,D,D1,Power Scheduler,10+ years,RENT,126000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571803,,debt_consolidation,Debt consolidation,770xx,TX,24.36,0.0,Jan-2006,665.0,669.0,3.0,42.0,,25.0,0.0,9940.0,40.6,78.0,f,0.0,0.0,2024.4,2024.4,707.44,430.77,5.0,881.19,158.6142,Apr-2017,5.0,,Aug-2017,549.0,545.0,0.0,,1.0,Individual,,,,0.0,100.0,97261.0,4.0,6.0,11.0,20.0,4.0,87321.0,80.0,1.0,8.0,2070.0,61.0,25300.0,5.0,12.0,15.0,28.0,4421.0,7788.0,35.1,0.0,0.0,128.0,113.0,9.0,4.0,0.0,9.0,,0.0,,0.0,6.0,9.0,8.0,12.0,53.0,19.0,25.0,9.0,25.0,0.0,0.0,0.0,12.0,97.4,0.0,0.0,0.0,120553.0,97261.0,11600.0,95253.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121551,,24000.0,24000.0,24000.0, 36 months,13.99,820.15,C,C3,Contract Manager,1 year,MORTGAGE,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121551,,debt_consolidation,Debt consolidation,330xx,FL,22.01,0.0,Jan-1994,665.0,669.0,0.0,57.0,45.0,11.0,1.0,7895.0,31.3,24.0,w,0.0,0.0,27195.317785926803,27195.32,24000.0,3195.32,0.0,0.0,0.0,Nov-2017,17372.17,,Mar-2019,684.0,680.0,0.0,75.0,1.0,Individual,,,,0.0,0.0,45337.0,0.0,5.0,2.0,5.0,8.0,37442.0,57.0,1.0,3.0,3166.0,50.0,25200.0,2.0,0.0,5.0,8.0,4122.0,17305.0,31.3,0.0,0.0,128.0,272.0,10.0,8.0,3.0,10.0,75.0,2.0,75.0,1.0,5.0,5.0,6.0,11.0,10.0,6.0,11.0,5.0,11.0,0.0,0.0,0.0,3.0,90.5,33.3,1.0,0.0,91107.0,45337.0,25200.0,65907.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90029229,,20000.0,20000.0,20000.0, 36 months,21.49,758.55,D,D5,Owner,< 1 year,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90029229,,small_business,Business,928xx,CA,7.0,0.0,Feb-2011,710.0,714.0,0.0,42.0,,10.0,0.0,6768.0,31.5,11.0,w,0.0,0.0,26050.790469144904,26050.79,20000.0,6050.79,0.0,0.0,0.0,Aug-2018,10145.12,,Aug-2018,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,11858.0,0.0,2.0,0.0,0.0,46.0,5090.0,75.0,3.0,5.0,4066.0,42.0,21500.0,0.0,0.0,1.0,5.0,1186.0,5104.0,50.4,0.0,0.0,60.0,67.0,10.0,10.0,0.0,10.0,,8.0,42.0,0.0,2.0,3.0,4.0,4.0,2.0,8.0,9.0,3.0,10.0,0.0,0.0,0.0,3.0,90.9,25.0,0.0,0.0,28250.0,11858.0,10300.0,6750.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611698,,12800.0,12800.0,12800.0, 36 months,21.49,485.47,D,D5,Sr Payroll Consultant,1 year,RENT,61214.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611698,,other,Other,730xx,OK,15.82,0.0,Sep-2004,670.0,674.0,1.0,41.0,,7.0,0.0,5592.0,50.4,22.0,w,0.0,0.0,16345.5411368104,16345.54,12800.0,3545.54,0.0,0.0,0.0,May-2018,7622.36,,Mar-2019,664.0,660.0,1.0,,1.0,Individual,,,,0.0,793.0,57279.0,1.0,3.0,2.0,4.0,3.0,51687.0,97.0,0.0,0.0,3769.0,79.0,11100.0,2.0,1.0,1.0,4.0,8183.0,108.0,98.1,0.0,0.0,144.0,144.0,66.0,3.0,0.0,66.0,,3.0,41.0,0.0,2.0,2.0,2.0,2.0,16.0,4.0,6.0,2.0,7.0,0.0,0.0,0.0,2.0,95.5,100.0,0.0,0.0,64480.0,57279.0,5700.0,53380.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414073,,18000.0,18000.0,18000.0, 60 months,24.99,528.22,E,E4,Medical Assistant,10+ years,RENT,46848.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414073,,debt_consolidation,Debt consolidation,941xx,CA,24.41,0.0,Jun-2004,670.0,674.0,0.0,,,6.0,0.0,8699.0,85.3,23.0,w,0.0,0.0,21728.7720569624,21728.77,18000.0,3728.77,0.0,0.0,0.0,Aug-2017,16925.45,,Aug-2017,679.0,675.0,0.0,,1.0,Joint App,95808.0,20.65,Not Verified,0.0,0.0,45193.0,2.0,2.0,3.0,4.0,2.0,36494.0,98.0,1.0,2.0,2711.0,90.0,10200.0,0.0,4.0,0.0,6.0,7532.0,0.0,100.4,0.0,0.0,147.0,48.0,2.0,2.0,0.0,47.0,,,,0.0,1.0,4.0,1.0,1.0,18.0,4.0,5.0,4.0,6.0,0.0,0.0,0.0,4.0,100.0,100.0,0.0,0.0,58228.0,45193.0,2700.0,48028.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90291131,,7800.0,7800.0,7800.0, 36 months,19.99,289.84,D,D4,apprentice ,1 year,RENT,36000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90291131,,debt_consolidation,Debt consolidation,531xx,WI,27.47,1.0,Jul-2009,715.0,719.0,0.0,14.0,,8.0,0.0,1548.0,15.6,11.0,f,0.0,0.0,4049.1,4049.1,2497.99,1551.11,0.0,0.0,0.0,Dec-2017,289.84,,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,23820.0,3.0,4.0,2.0,2.0,6.0,22183.0,79.0,0.0,0.0,516.0,63.0,9900.0,0.0,1.0,2.0,3.0,2978.0,2784.0,15.6,0.0,0.0,83.0,86.0,31.0,3.0,0.0,31.0,,6.0,,0.0,1.0,2.0,1.0,1.0,5.0,3.0,5.0,2.0,8.0,0.0,0.0,0.0,3.0,90.9,0.0,0.0,0.0,38062.0,23820.0,3300.0,28073.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90208190,,5000.0,5000.0,5000.0, 36 months,17.99,180.74,D,D2,Registered Nurse Supervisor,< 1 year,RENT,64000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90208190,,other,Other,427xx,KY,8.94,2.0,Mar-2007,670.0,674.0,0.0,23.0,,22.0,0.0,1002.0,43.6,38.0,w,1192.47,1192.47,5236.46,5236.46,3807.53,1428.93,0.0,0.0,0.0,Mar-2019,180.74,Apr-2019,Mar-2019,699.0,695.0,0.0,23.0,1.0,Individual,,,,0.0,95.0,70666.0,0.0,17.0,2.0,8.0,12.0,69664.0,96.0,2.0,3.0,623.0,94.0,2300.0,0.0,1.0,2.0,11.0,3212.0,498.0,66.8,1.0,0.0,108.0,114.0,8.0,8.0,0.0,8.0,23.0,8.0,23.0,5.0,2.0,2.0,2.0,10.0,23.0,5.0,14.0,2.0,22.0,0.0,0.0,2.0,4.0,84.2,50.0,0.0,0.0,75274.0,70666.0,1500.0,72974.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90211620,,35000.0,35000.0,35000.0, 36 months,9.49,1120.99,B,B2,Managing Partner,7 years,MORTGAGE,360000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90211620,,debt_consolidation,Debt consolidation,891xx,NV,8.96,0.0,Aug-1996,700.0,704.0,0.0,,,11.0,0.0,50539.0,85.8,27.0,w,7604.47,7604.47,32490.26,32490.26,27395.53,5094.73,0.0,0.0,0.0,Mar-2019,1120.99,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,289636.0,0.0,4.0,0.0,0.0,25.0,82964.0,68.0,0.0,0.0,22521.0,76.0,58887.0,1.0,0.0,6.0,0.0,32182.0,3643.0,89.2,0.0,0.0,240.0,178.0,51.0,25.0,2.0,51.0,,6.0,,0.0,2.0,3.0,5.0,8.0,15.0,6.0,9.0,4.0,11.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,315456.0,133503.0,33887.0,97569.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591806,,30000.0,30000.0,30000.0, 60 months,17.99,761.64,D,D2,Project Manager ,10+ years,MORTGAGE,225000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591806,,debt_consolidation,Debt consolidation,117xx,NY,13.94,0.0,Sep-2001,675.0,679.0,0.0,24.0,,12.0,0.0,57934.0,83.1,21.0,w,18775.84,18775.84,22223.79,22223.79,11224.16,10999.63,0.0,0.0,0.0,Mar-2019,761.64,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,665434.0,2.0,3.0,0.0,0.0,30.0,11053.0,21.0,1.0,2.0,19352.0,56.0,69700.0,0.0,0.0,6.0,3.0,55453.0,1959.0,96.6,0.0,0.0,180.0,137.0,5.0,5.0,2.0,5.0,,6.0,,0.0,6.0,8.0,6.0,6.0,8.0,8.0,11.0,8.0,12.0,0.0,0.0,0.0,2.0,95.0,83.3,0.0,0.0,722759.0,68987.0,56800.0,53059.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591746,,35000.0,35000.0,35000.0, 36 months,12.79,1175.76,C,C1,Integrated Marketing,2 years,RENT,140000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591746,,major_purchase,Major purchase,941xx,CA,17.62,2.0,Jun-1986,690.0,694.0,0.0,8.0,,13.0,0.0,27640.0,92.1,21.0,w,7901.39,7901.39,34197.4,34197.4,27098.61,7040.0,58.79,0.0,0.0,Mar-2019,1175.76,Apr-2019,Mar-2019,704.0,700.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,162725.0,0.0,9.0,0.0,0.0,33.0,135085.0,91.0,1.0,1.0,26069.0,91.0,30000.0,0.0,0.0,0.0,1.0,14793.0,2360.0,92.1,0.0,0.0,157.0,363.0,11.0,11.0,0.0,11.0,8.0,,8.0,1.0,2.0,2.0,3.0,5.0,14.0,3.0,7.0,2.0,13.0,0.0,0.0,1.0,1.0,85.7,100.0,0.0,0.0,169340.0,162725.0,30000.0,139340.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681772,,25000.0,25000.0,25000.0, 36 months,9.49,800.71,B,B2,Vice President,10+ years,MORTGAGE,158000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681772,,debt_consolidation,Debt consolidation,371xx,TN,29.34,1.0,Sep-1984,660.0,664.0,2.0,23.0,,12.0,0.0,11770.0,58.0,28.0,w,0.0,0.0,28115.012633846,28115.01,25000.0,3115.01,0.0,0.0,0.0,Jul-2018,12113.99,,Mar-2019,719.0,715.0,1.0,48.0,1.0,Individual,,,,0.0,237.0,567227.0,1.0,5.0,1.0,3.0,4.0,158454.0,84.0,0.0,2.0,3078.0,79.0,20300.0,1.0,0.0,2.0,7.0,47269.0,0.0,100.0,0.0,0.0,151.0,384.0,13.0,4.0,3.0,71.0,23.0,3.0,23.0,1.0,2.0,5.0,2.0,9.0,8.0,5.0,16.0,5.0,12.0,0.0,0.0,0.0,1.0,85.7,50.0,0.0,0.0,664502.0,179233.0,3300.0,238030.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631731,,6000.0,6000.0,6000.0, 36 months,8.99,190.78,B,B1,Systems Analyst,10+ years,MORTGAGE,84000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631731,,other,Other,181xx,PA,19.81,0.0,Mar-1999,790.0,794.0,0.0,,,7.0,0.0,9676.0,37.1,19.0,w,0.0,0.0,6677.254487869201,6677.25,6000.0,677.25,0.0,0.0,0.0,Jun-2018,210.61,,Mar-2019,774.0,770.0,0.0,,1.0,Individual,,,,0.0,0.0,246333.0,0.0,2.0,2.0,2.0,7.0,45212.0,88.0,1.0,1.0,9037.0,71.0,26100.0,0.0,2.0,2.0,3.0,35190.0,9424.0,50.7,0.0,0.0,56.0,210.0,12.0,7.0,1.0,101.0,,10.0,,0.0,2.0,2.0,2.0,4.0,5.0,4.0,13.0,2.0,7.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,317361.0,54888.0,19100.0,51341.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681702,,35000.0,35000.0,35000.0, 36 months,15.59,1223.43,C,C5,Director - Sales Support & Acct Mgmt,10+ years,OWN,145000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681702,,credit_card,Credit card refinancing,553xx,MN,16.74,0.0,Feb-1989,675.0,679.0,0.0,72.0,,9.0,0.0,41131.0,75.5,22.0,w,0.0,0.0,39296.620999588,39296.62,35000.0,4296.62,0.0,0.0,0.0,Aug-2017,28361.53,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,78131.0,1.0,1.0,2.0,4.0,2.0,37000.0,,0.0,0.0,33820.0,76.0,54500.0,0.0,0.0,0.0,4.0,8681.0,3572.0,92.0,0.0,0.0,163.0,331.0,41.0,2.0,2.0,41.0,,,,0.0,4.0,6.0,5.0,6.0,11.0,8.0,9.0,6.0,9.0,0.0,0.0,0.0,2.0,95.5,60.0,0.0,0.0,91500.0,78131.0,44600.0,37000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90461630,,3500.0,3500.0,3500.0, 36 months,14.49,120.46,C,C4,,,MORTGAGE,33600.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461630,,credit_card,Credit card refinancing,802xx,CO,14.29,0.0,Jan-1983,670.0,674.0,0.0,,77.0,6.0,1.0,3178.0,64.9,12.0,w,803.77,803.77,3486.3,3486.3,2696.23,790.07,0.0,0.0,0.0,Mar-2019,120.46,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,90264.0,0.0,2.0,1.0,2.0,10.0,10287.0,84.0,1.0,1.0,3020.0,78.0,4900.0,0.0,2.0,0.0,4.0,15044.0,480.0,86.3,0.0,0.0,43.0,404.0,8.0,8.0,1.0,8.0,,,,0.0,1.0,2.0,2.0,2.0,4.0,3.0,7.0,2.0,6.0,0.0,0.0,0.0,3.0,100.0,50.0,1.0,0.0,95000.0,13465.0,3500.0,12325.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90078141,,20000.0,20000.0,20000.0, 60 months,13.49,460.1,C,C2,Comptroller,10+ years,MORTGAGE,88000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90078141,,small_business,Business,750xx,TX,17.18,1.0,Feb-2002,685.0,689.0,0.0,9.0,,12.0,0.0,76732.0,58.2,26.0,w,0.0,0.0,8391.43,8391.43,3258.79,2707.52,92.04,2333.08,209.9772,Nov-2017,943.21,,May-2018,534.0,530.0,0.0,,1.0,Individual,,,,0.0,0.0,224527.0,0.0,1.0,0.0,0.0,27.0,11908.0,54.0,0.0,1.0,10259.0,57.0,95600.0,0.0,1.0,2.0,1.0,18711.0,13822.0,61.2,0.0,0.0,159.0,175.0,21.0,21.0,3.0,21.0,9.0,1.0,9.0,0.0,6.0,8.0,8.0,10.0,9.0,10.0,14.0,8.0,12.0,0.0,0.0,0.0,0.0,96.0,37.5,0.0,0.0,317842.0,88640.0,35600.0,22242.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89799084,,6000.0,6000.0,6000.0, 36 months,19.99,222.96,D,D4,Flight attendant ,2 years,RENT,68000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89799084,,moving,Moving and relocation,553xx,MN,11.44,1.0,Jan-2003,660.0,664.0,0.0,9.0,,9.0,0.0,4373.0,29.2,11.0,f,0.0,0.0,4452.54,4452.54,2889.43,1563.11,0.0,0.0,0.0,Jun-2018,222.96,,Mar-2019,529.0,525.0,0.0,9.0,1.0,Individual,,,,0.0,211.0,23051.0,0.0,1.0,1.0,1.0,12.0,18678.0,85.0,1.0,1.0,1649.0,62.0,15000.0,3.0,0.0,3.0,2.0,2561.0,9677.0,30.4,0.0,0.0,134.0,164.0,11.0,11.0,0.0,11.0,,0.0,,1.0,5.0,6.0,5.0,5.0,3.0,8.0,8.0,6.0,9.0,0.0,0.0,1.0,2.0,90.9,40.0,0.0,0.0,37056.0,23051.0,13900.0,22056.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90384094,,5000.0,5000.0,5000.0, 36 months,14.49,172.09,C,C4,Owner,9 years,RENT,70000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90384094,,debt_consolidation,Debt consolidation,773xx,TX,16.54,1.0,Apr-1989,685.0,689.0,1.0,22.0,45.0,12.0,1.0,4652.0,26.9,19.0,w,0.0,0.0,2548.5,2548.5,1432.79,628.27,0.0,487.44,43.8696,Oct-2017,172.09,,Apr-2018,614.0,610.0,1.0,61.0,1.0,Individual,,,,0.0,125.0,63821.0,2.0,2.0,0.0,2.0,14.0,23332.0,83.0,5.0,5.0,1172.0,62.0,17300.0,5.0,0.0,3.0,7.0,5318.0,5654.0,27.5,0.0,0.0,169.0,329.0,5.0,5.0,2.0,6.0,,0.0,,1.0,4.0,8.0,4.0,4.0,6.0,9.0,11.0,8.0,12.0,0.0,0.0,0.0,5.0,89.5,0.0,0.0,1.0,111937.0,27984.0,7800.0,28237.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90416024,,8000.0,8000.0,8000.0, 36 months,5.32,240.92,A,A1,,,OWN,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90416024,,medical,Medical expenses,315xx,GA,14.63,0.0,Feb-1968,800.0,804.0,0.0,,,13.0,0.0,19364.0,10.9,23.0,w,0.0,0.0,8515.6972512803,8515.7,8000.0,515.7,0.0,0.0,0.0,Jun-2018,3740.58,,Jul-2018,829.0,825.0,0.0,,1.0,Individual,,,,0.0,0.0,48647.0,1.0,1.0,1.0,1.0,4.0,29283.0,91.0,0.0,1.0,11020.0,23.0,177000.0,0.0,0.0,1.0,2.0,4054.0,139836.0,12.2,0.0,0.0,4.0,583.0,13.0,4.0,0.0,186.0,,4.0,,0.0,3.0,3.0,8.0,10.0,1.0,12.0,22.0,3.0,13.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,209118.0,48647.0,159200.0,32118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693021,,32000.0,32000.0,32000.0, 60 months,17.99,812.42,D,D2,Team Lead,2 years,MORTGAGE,33000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693021,,debt_consolidation,Debt consolidation,461xx,IN,32.4,0.0,Nov-2006,665.0,669.0,0.0,77.0,,11.0,0.0,16452.0,62.8,18.0,w,0.0,0.0,18653.68,18653.68,9056.58,9597.1,0.0,0.0,0.0,Sep-2018,812.42,,Mar-2019,539.0,535.0,0.0,,1.0,Joint App,109000.0,22.29,Not Verified,0.0,0.0,138201.0,2.0,1.0,1.0,1.0,6.0,27710.0,95.0,2.0,3.0,10679.0,80.0,26200.0,0.0,0.0,1.0,4.0,12564.0,3357.0,80.7,0.0,0.0,118.0,108.0,4.0,4.0,1.0,17.0,77.0,6.0,77.0,0.0,3.0,6.0,3.0,6.0,4.0,9.0,13.0,6.0,11.0,0.0,0.0,0.0,3.0,94.4,66.7,0.0,0.0,158332.0,44162.0,17400.0,29309.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Jan-2019,ACTIVE,Jan-2019,10962.0,45.0,18.0 +90396082,,2100.0,2100.0,2100.0, 36 months,12.79,70.55,C,C1,,,RENT,13825.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90396082,,credit_card,Credit card refinancing,431xx,OH,34.98,0.0,Mar-1981,665.0,669.0,1.0,,68.0,9.0,1.0,2498.0,29.0,23.0,w,473.25,473.25,2045.95,2045.95,1626.75,419.2,0.0,0.0,0.0,Mar-2019,70.55,Apr-2019,Mar-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,15786.0,1.0,1.0,1.0,1.0,7.0,13288.0,94.0,3.0,4.0,2236.0,69.0,8600.0,1.0,0.0,6.0,5.0,1973.0,1648.0,58.8,0.0,0.0,7.0,426.0,6.0,6.0,0.0,33.0,,6.0,,0.0,2.0,5.0,2.0,10.0,1.0,8.0,22.0,5.0,9.0,0.0,0.0,0.0,4.0,100.0,50.0,1.0,0.0,22763.0,15786.0,4000.0,14163.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692587,,16000.0,16000.0,16000.0, 36 months,8.59,505.75,A,A5,Sales,4 years,RENT,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692587,,credit_card,Credit card refinancing,605xx,IL,15.53,0.0,Jun-2006,710.0,714.0,1.0,,,11.0,0.0,14454.0,51.1,34.0,w,0.0,0.0,16772.378644251203,16772.38,16000.0,772.38,0.0,0.0,0.0,May-2017,13745.52,,Oct-2018,804.0,800.0,0.0,,1.0,Individual,,,,0.0,0.0,79682.0,0.0,7.0,1.0,1.0,7.0,65228.0,103.0,0.0,0.0,9346.0,87.0,28300.0,2.0,1.0,5.0,1.0,7244.0,13546.0,51.6,0.0,0.0,123.0,111.0,25.0,7.0,0.0,25.0,,4.0,,0.0,2.0,2.0,3.0,8.0,24.0,4.0,10.0,2.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,91748.0,79682.0,28000.0,63448.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197368,,11700.0,11700.0,11700.0, 36 months,12.79,393.04,C,C1,driver ,10+ years,MORTGAGE,59400.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197368,,debt_consolidation,Debt consolidation,781xx,TX,34.95,0.0,Jul-1999,660.0,664.0,1.0,,39.0,10.0,2.0,5969.0,84.1,25.0,w,2637.51,2637.51,11389.85,11389.85,9062.49,2327.36,0.0,0.0,0.0,Mar-2019,393.04,Apr-2019,Mar-2019,619.0,615.0,0.0,,1.0,Individual,,,,0.0,0.0,59578.0,1.0,5.0,1.0,7.0,5.0,53609.0,81.0,0.0,0.0,1950.0,81.0,7100.0,4.0,1.0,1.0,7.0,5958.0,773.0,85.1,0.0,0.0,206.0,70.0,29.0,5.0,0.0,29.0,,5.0,,0.0,3.0,5.0,3.0,4.0,19.0,5.0,6.0,5.0,10.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,73688.0,59578.0,5200.0,66588.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90696069,,8000.0,8000.0,8000.0, 36 months,18.99,293.21,D,D3,Cashier,< 1 year,RENT,30000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90696069,,debt_consolidation,Debt consolidation,945xx,CA,26.08,0.0,Aug-2004,690.0,694.0,0.0,,,14.0,0.0,16414.0,58.8,18.0,w,0.0,0.0,1316.89,1316.89,335.86,242.12,0.0,738.91,133.0038,Dec-2016,293.21,,Jul-2017,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,23622.0,1.0,1.0,0.0,0.0,44.0,7208.0,50.0,2.0,2.0,4856.0,56.0,27900.0,0.0,0.0,0.0,2.0,1687.0,9059.0,62.3,0.0,0.0,68.0,145.0,4.0,4.0,0.0,4.0,,,,0.0,7.0,9.0,10.0,13.0,2.0,13.0,16.0,9.0,14.0,0.0,0.0,0.0,2.0,100.0,40.0,0.0,0.0,42300.0,23622.0,24000.0,14400.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692530,,8000.0,8000.0,8000.0, 36 months,16.99,285.19,D,D1,Transplant Coordinator,10+ years,RENT,67000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692530,,debt_consolidation,Debt consolidation,021xx,MA,31.11,0.0,Jun-2003,715.0,719.0,0.0,,,17.0,0.0,37006.0,54.3,39.0,w,1887.57,1887.57,8262.96,8262.96,6112.43,2150.53,0.0,0.0,0.0,Mar-2019,285.19,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,287274.0,1.0,3.0,1.0,1.0,12.0,24764.0,58.0,3.0,4.0,14067.0,56.0,68200.0,0.0,0.0,0.0,5.0,16898.0,29992.0,44.9,0.0,0.0,159.0,144.0,2.0,2.0,2.0,2.0,,22.0,,0.0,6.0,8.0,10.0,16.0,11.0,13.0,26.0,8.0,17.0,0.0,0.0,0.0,4.0,100.0,20.0,0.0,0.0,351597.0,61770.0,54400.0,42483.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90162188,,9000.0,9000.0,9000.0, 36 months,6.99,277.86,A,A2,owner,10+ years,RENT,65000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90162188,,debt_consolidation,Debt consolidation,112xx,NY,7.32,0.0,Jun-1990,755.0,759.0,0.0,,,12.0,0.0,15636.0,20.0,13.0,w,1900.71,1900.71,8054.44,8054.44,7099.29,955.15,0.0,0.0,0.0,Mar-2019,277.86,Apr-2019,Mar-2019,809.0,805.0,0.0,,1.0,Individual,,,,0.0,0.0,15854.0,0.0,0.0,0.0,0.0,,0.0,,2.0,3.0,9074.0,20.0,78300.0,0.0,0.0,1.0,3.0,1321.0,60524.0,20.2,0.0,0.0,,315.0,8.0,8.0,0.0,12.0,,8.0,,0.0,6.0,7.0,10.0,11.0,0.0,11.0,12.0,7.0,12.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,79873.0,15854.0,75800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695920,,14400.0,14400.0,14400.0, 60 months,12.79,326.1,C,C1,Technical Engineer I,7 years,MORTGAGE,50476.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695920,,debt_consolidation,Debt consolidation,294xx,SC,24.68,0.0,Jan-1999,695.0,699.0,0.0,,60.0,6.0,2.0,4106.0,91.2,14.0,f,0.0,0.0,18057.6242972586,18057.62,14400.0,3657.62,0.0,0.0,0.0,Mar-2019,8911.47,,Mar-2019,719.0,715.0,0.0,,1.0,Joint App,108358.0,13.67,Not Verified,0.0,0.0,315578.0,1.0,3.0,0.0,2.0,22.0,38860.0,73.0,0.0,1.0,3681.0,74.0,4500.0,0.0,0.0,0.0,4.0,52596.0,394.0,91.2,0.0,0.0,212.0,109.0,21.0,4.0,3.0,21.0,,22.0,,0.0,2.0,2.0,2.0,2.0,9.0,2.0,2.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,2.0,332387.0,42966.0,4500.0,53487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90416068,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Mail carrier,10+ years,RENT,60000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90416068,,debt_consolidation,Debt consolidation,150xx,PA,18.64,0.0,Dec-1996,660.0,664.0,1.0,74.0,57.0,15.0,1.0,8120.0,63.4,21.0,f,0.0,0.0,6864.21,6864.21,4097.83,1952.89,0.0,813.49,146.4282,Mar-2018,356.48,,Oct-2018,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,30310.0,3.0,2.0,0.0,1.0,13.0,22190.0,73.0,6.0,8.0,2844.0,70.0,12800.0,2.0,0.0,4.0,9.0,2165.0,960.0,88.1,0.0,0.0,136.0,237.0,0.0,0.0,0.0,0.0,,0.0,,0.0,6.0,9.0,7.0,8.0,5.0,13.0,16.0,9.0,15.0,0.0,0.0,0.0,6.0,95.2,85.7,0.0,0.0,43163.0,30310.0,8100.0,30363.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90182263,,3000.0,3000.0,3000.0, 36 months,13.49,101.8,C,C2,Driver,3 years,OWN,33000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90182263,,other,Other,142xx,NY,19.2,0.0,Nov-2003,680.0,684.0,1.0,70.0,,13.0,0.0,15038.0,47.0,26.0,w,0.0,0.0,2277.35,2277.35,1688.41,553.94,15.0,20.0,3.6,Jan-2019,20.0,,Mar-2019,569.0,565.0,1.0,,1.0,Individual,,,,0.0,395.0,19890.0,1.0,1.0,1.0,1.0,6.0,4852.0,87.0,0.0,3.0,7833.0,53.0,32000.0,0.0,1.0,1.0,4.0,1658.0,12772.0,52.9,0.0,0.0,101.0,154.0,19.0,6.0,0.0,24.0,70.0,6.0,70.0,0.0,4.0,5.0,5.0,7.0,2.0,12.0,24.0,5.0,13.0,0.0,0.0,0.0,1.0,95.8,20.0,0.0,0.0,37550.0,19890.0,27100.0,5550.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,ACTIVE,Dec-2018,624.0,45.04,8.0 +90661640,,30000.0,30000.0,29975.0, 36 months,13.99,1025.19,C,C3,Clinical Pharmacist,7 years,OWN,120000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661640,,debt_consolidation,Debt consolidation,300xx,GA,30.8,1.0,Jul-1993,695.0,699.0,0.0,15.0,45.0,16.0,1.0,33715.0,56.6,49.0,f,6852.77,6847.06,29823.77,29798.92,23147.23,6676.54,0.0,0.0,0.0,Mar-2019,1025.19,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,75839.0,2.0,3.0,0.0,1.0,15.0,19604.0,44.0,2.0,4.0,12506.0,60.0,59600.0,2.0,0.0,0.0,5.0,4740.0,9956.0,76.7,0.0,0.0,105.0,216.0,2.0,2.0,0.0,4.0,,14.0,,0.0,7.0,9.0,8.0,16.0,10.0,12.0,38.0,9.0,16.0,0.0,0.0,0.0,2.0,97.9,75.0,0.0,1.0,127392.0,75839.0,42700.0,44961.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88963512,,7125.0,7125.0,7125.0, 36 months,16.99,254.0,D,D1,Administrative Assistant,3 years,RENT,21000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88963512,,debt_consolidation,Debt consolidation,111xx,NY,18.17,0.0,Aug-2001,700.0,704.0,1.0,31.0,,20.0,0.0,9192.0,18.1,23.0,w,591.43,591.43,8159.27,8159.27,6533.57,1625.7,0.0,0.0,0.0,Mar-2019,254.0,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,11006.0,1.0,1.0,0.0,0.0,69.0,1814.0,104.0,3.0,6.0,3895.0,21.0,50700.0,0.0,0.0,2.0,6.0,550.0,31113.0,22.4,0.0,0.0,69.0,181.0,1.0,1.0,0.0,1.0,31.0,6.0,31.0,1.0,8.0,9.0,12.0,14.0,1.0,19.0,22.0,9.0,20.0,0.0,0.0,0.0,3.0,87.0,16.7,0.0,0.0,52450.0,11006.0,40100.0,1750.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621829,,10000.0,10000.0,10000.0, 36 months,11.49,329.72,B,B5,,,OWN,120000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621829,,credit_card,Credit card refinancing,064xx,CT,9.48,0.0,Apr-2002,675.0,679.0,0.0,,39.0,7.0,2.0,6234.0,34.4,26.0,w,2221.82,2221.82,9555.5,9555.5,7778.18,1777.32,0.0,0.0,0.0,Mar-2019,329.72,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,30708.0,0.0,2.0,1.0,1.0,10.0,24474.0,72.0,0.0,2.0,5392.0,59.0,18100.0,0.0,1.0,0.0,3.0,4387.0,7542.0,44.5,0.0,0.0,139.0,173.0,18.0,10.0,2.0,21.0,,21.0,,0.0,2.0,3.0,2.0,7.0,6.0,4.0,15.0,3.0,7.0,0.0,0.0,0.0,1.0,100.0,0.0,2.0,0.0,52144.0,30708.0,13600.0,34044.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90136806,,11000.0,11000.0,11000.0, 36 months,6.99,339.6,A,A2,Sr IT Analyst,8 years,MORTGAGE,80000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90136806,,credit_card,Credit card refinancing,761xx,TX,18.72,0.0,Nov-1988,750.0,754.0,0.0,32.0,,17.0,0.0,16486.0,24.9,32.0,w,2322.68,2322.68,9844.13,9844.13,8677.32,1166.81,0.0,0.0,0.0,Mar-2019,339.6,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,109162.0,0.0,6.0,0.0,1.0,23.0,27951.0,45.0,1.0,3.0,8486.0,35.0,66300.0,0.0,2.0,0.0,5.0,6421.0,19199.0,43.5,0.0,0.0,121.0,334.0,7.0,7.0,4.0,7.0,32.0,,32.0,0.0,2.0,4.0,3.0,7.0,11.0,9.0,17.0,4.0,17.0,0.0,0.0,0.0,2.0,93.8,33.3,0.0,0.0,222081.0,44437.0,34000.0,61916.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90439613,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Merchandising Manager,1 year,MORTGAGE,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90439613,,credit_card,Credit card refinancing,535xx,WI,52.46,0.0,Sep-1996,700.0,704.0,1.0,,,9.0,0.0,46068.0,77.8,14.0,w,0.0,0.0,46397.9010640997,46397.9,35000.0,11397.9,0.0,0.0,0.0,Nov-2018,25106.96,,Nov-2018,709.0,705.0,0.0,,1.0,Joint App,131500.0,22.98,Not Verified,0.0,0.0,333446.0,1.0,2.0,1.0,2.0,3.0,22660.0,60.0,0.0,0.0,18346.0,71.0,59200.0,1.0,2.0,5.0,3.0,37050.0,13132.0,77.8,0.0,0.0,114.0,240.0,64.0,3.0,1.0,64.0,,2.0,,0.0,5.0,5.0,6.0,7.0,6.0,6.0,7.0,5.0,9.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,0.0,364942.0,68728.0,59200.0,37599.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90320950,,36000.0,36000.0,36000.0, 60 months,15.59,867.63,C,C5,Nurse Practitioner,2 years,RENT,125000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320950,,credit_card,Credit card refinancing,581xx,ND,27.48,0.0,May-2000,690.0,694.0,0.0,,,24.0,0.0,33727.0,70.3,57.0,w,0.0,0.0,19924.31,19924.31,10640.63,9283.68,0.0,0.0,0.0,Sep-2018,867.63,,Mar-2019,609.0,605.0,0.0,,1.0,Individual,,,,0.0,0.0,133690.0,1.0,13.0,1.0,2.0,5.0,99963.0,71.0,4.0,8.0,9259.0,71.0,48000.0,2.0,0.0,5.0,10.0,5570.0,3856.0,89.1,0.0,0.0,184.0,196.0,9.0,5.0,1.0,9.0,,5.0,,0.0,6.0,8.0,7.0,14.0,22.0,11.0,34.0,8.0,24.0,0.0,0.0,0.0,5.0,100.0,71.4,0.0,0.0,188520.0,133690.0,35400.0,140520.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90481654,,8000.0,8000.0,8000.0, 36 months,9.49,256.23,B,B2,Registered Veterinary Technician,10+ years,RENT,36000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90481654,,other,Other,926xx,CA,14.2,0.0,Mar-1997,815.0,819.0,0.0,,,6.0,0.0,2509.0,11.4,12.0,w,1738.04,1738.04,7433.53,7433.53,6261.96,1171.57,0.0,0.0,0.0,Mar-2019,256.23,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,16928.0,0.0,1.0,0.0,0.0,28.0,14419.0,64.0,0.0,2.0,2356.0,38.0,22000.0,0.0,0.0,0.0,2.0,2821.0,11867.0,17.0,0.0,0.0,111.0,234.0,20.0,20.0,0.0,21.0,,,,0.0,2.0,3.0,2.0,4.0,3.0,5.0,9.0,3.0,6.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,44565.0,16928.0,14300.0,22565.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501567,,20000.0,20000.0,20000.0, 60 months,17.99,507.76,D,D2,Cloud Operations Manager,1 year,RENT,120000.0,Source Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501567,,house,Home buying,088xx,NJ,16.89,0.0,Feb-2000,680.0,684.0,0.0,59.0,,18.0,0.0,20389.0,64.7,27.0,f,13142.57,13142.57,13739.5,13739.5,6857.43,6882.07,0.0,0.0,0.0,Jan-2019,507.76,Apr-2019,Mar-2019,604.0,600.0,0.0,,1.0,Individual,,,,0.0,311.0,97436.0,2.0,10.0,2.0,3.0,6.0,77047.0,98.0,0.0,1.0,6759.0,86.0,31500.0,0.0,0.0,0.0,4.0,5413.0,748.0,94.7,0.0,0.0,199.0,181.0,15.0,6.0,0.0,66.0,,13.0,,0.0,4.0,5.0,4.0,6.0,15.0,8.0,12.0,6.0,18.0,0.0,0.0,0.0,2.0,96.2,100.0,0.0,0.0,123588.0,97436.0,14100.0,92088.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88974517,,20000.0,20000.0,20000.0, 60 months,17.99,507.76,D,D2,Journeyman electrician,10+ years,RENT,52000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88974517,,credit_card,Credit card refinancing,908xx,CA,23.58,1.0,Mar-1996,660.0,664.0,1.0,22.0,,11.0,0.0,31145.0,89.8,19.0,f,12515.83,12515.83,14745.17,14745.17,7484.17,7261.0,0.0,0.0,0.0,Mar-2019,507.76,Apr-2019,Mar-2019,699.0,695.0,1.0,,1.0,Individual,,,,0.0,11780.0,32389.0,1.0,3.0,0.0,0.0,132.0,1244.0,8.0,1.0,1.0,16287.0,65.0,34700.0,0.0,0.0,1.0,1.0,2944.0,1290.0,95.8,0.0,0.0,153.0,246.0,5.0,5.0,0.0,119.0,22.0,5.0,22.0,0.0,4.0,6.0,5.0,10.0,4.0,8.0,15.0,6.0,11.0,0.0,0.0,0.0,1.0,84.2,60.0,0.0,0.0,49936.0,32389.0,30600.0,15236.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641703,,15000.0,15000.0,15000.0, 36 months,11.49,494.57,B,B5,Senior Accountant,1 year,OWN,70000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641703,,debt_consolidation,Debt consolidation,958xx,CA,27.04,0.0,Aug-2004,705.0,709.0,2.0,24.0,,19.0,0.0,7904.0,43.2,30.0,w,0.0,0.0,17428.1702927953,17428.17,15000.0,2428.17,0.0,0.0,0.0,Sep-2018,6537.83,,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,41884.0,2.0,3.0,0.0,1.0,20.0,33980.0,49.0,3.0,5.0,3073.0,47.0,18300.0,0.0,1.0,2.0,6.0,2618.0,2762.0,67.9,0.0,0.0,43.0,145.0,1.0,1.0,0.0,57.0,,1.0,,0.0,5.0,9.0,5.0,8.0,3.0,16.0,27.0,9.0,19.0,0.0,0.0,0.0,3.0,96.7,40.0,0.0,0.0,88418.0,41884.0,8600.0,70118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89904629,,20000.0,20000.0,20000.0, 60 months,21.49,546.6,D,D5,Sr. Test Technician,4 years,MORTGAGE,71000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89904629,,debt_consolidation,Debt consolidation,925xx,CA,8.28,0.0,Oct-2004,660.0,664.0,2.0,,,7.0,0.0,13068.0,37.8,24.0,f,0.0,0.0,11418.91,11418.91,4751.28,6667.63,0.0,0.0,0.0,Jul-2018,546.6,,Mar-2019,599.0,595.0,1.0,,1.0,Individual,,,,0.0,3061.0,457445.0,1.0,2.0,3.0,5.0,3.0,70046.0,82.0,0.0,3.0,177.0,45.0,34600.0,4.0,1.0,8.0,8.0,65349.0,749.0,25.1,0.0,0.0,143.0,26.0,18.0,3.0,1.0,18.0,,2.0,,0.0,2.0,3.0,2.0,2.0,18.0,4.0,4.0,3.0,7.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,548910.0,83114.0,1000.0,71263.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2019,BROKEN,Jan-2019,7489.0,45.0,24.0 +90438598,,12000.0,12000.0,12000.0, 60 months,19.99,317.86,D,D4,Superintendent ,2 years,MORTGAGE,120000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90438598,,major_purchase,Major purchase,117xx,NY,10.2,0.0,Aug-2006,670.0,674.0,1.0,45.0,,11.0,0.0,13242.0,70.4,29.0,w,0.0,0.0,15622.4488638196,15622.45,12000.0,3622.45,0.0,0.0,0.0,Jan-2019,5291.46,,Mar-2019,719.0,715.0,0.0,45.0,1.0,Joint App,175000.0,12.33,Not Verified,0.0,50.0,55902.0,0.0,2.0,0.0,2.0,15.0,42660.0,88.0,2.0,4.0,3717.0,83.0,18800.0,3.0,0.0,6.0,6.0,5082.0,2945.0,77.2,0.0,0.0,121.0,97.0,9.0,9.0,0.0,9.0,,2.0,,8.0,6.0,9.0,6.0,7.0,18.0,9.0,11.0,9.0,11.0,0.0,0.0,0.0,2.0,69.2,50.0,0.0,0.0,67386.0,55902.0,12900.0,48586.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90329276,,6025.0,6025.0,6025.0, 36 months,17.99,217.79,D,D2,Server,< 1 year,RENT,25000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90329276,,other,Other,011xx,MA,18.29,0.0,Jan-2013,715.0,719.0,1.0,,,2.0,0.0,4072.0,86.6,3.0,w,1436.98,1436.98,6309.89,6309.89,4588.02,1721.87,0.0,0.0,0.0,Mar-2019,217.79,Apr-2019,Mar-2019,654.0,650.0,1.0,,1.0,Individual,,,,0.0,80.0,17370.0,0.0,1.0,1.0,1.0,11.0,13298.0,87.0,0.0,0.0,4072.0,87.0,4700.0,1.0,1.0,2.0,1.0,8685.0,628.0,86.6,0.0,0.0,11.0,44.0,29.0,11.0,0.0,29.0,,0.0,,0.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,20049.0,17370.0,4700.0,15349.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90278253,,8000.0,8000.0,8000.0, 36 months,19.99,297.27,D,D4,OWNER,3 years,RENT,50000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90278253,,other,Other,381xx,TN,12.07,0.0,Apr-2012,695.0,699.0,0.0,32.0,,15.0,0.0,4577.0,23.8,22.0,w,0.0,0.0,7125.6,7125.6,4754.61,2370.99,0.0,0.0,0.0,Oct-2018,297.27,,Mar-2019,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,14926.0,0.0,1.0,0.0,2.0,13.0,10349.0,85.0,4.0,6.0,1531.0,48.0,19200.0,0.0,0.0,5.0,8.0,995.0,1469.0,51.0,0.0,0.0,48.0,53.0,7.0,7.0,0.0,7.0,32.0,7.0,32.0,0.0,1.0,7.0,2.0,3.0,5.0,14.0,17.0,7.0,15.0,0.0,0.0,0.0,4.0,95.5,50.0,0.0,0.0,31389.0,14926.0,3000.0,12189.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90511140,,24000.0,24000.0,24000.0, 60 months,21.49,655.92,D,D5,Inside Sales manger going to manager,< 1 year,MORTGAGE,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90511140,,small_business,Business,276xx,NC,22.77,0.0,Apr-1990,660.0,664.0,1.0,28.0,,18.0,0.0,16023.0,54.9,41.0,f,0.0,0.0,27910.2115986696,27910.21,24000.0,3910.21,0.0,0.0,0.0,Jul-2017,22533.91,,Nov-2017,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,202083.0,2.0,3.0,0.0,1.0,15.0,46628.0,67.0,3.0,8.0,1016.0,62.0,29200.0,0.0,3.0,3.0,11.0,12630.0,0.0,100.8,0.0,0.0,317.0,105.0,6.0,6.0,4.0,25.0,,6.0,,0.0,2.0,11.0,2.0,5.0,11.0,14.0,26.0,11.0,18.0,0.0,0.0,0.0,5.0,97.6,100.0,0.0,0.0,249148.0,62651.0,1700.0,79048.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407958,,15000.0,15000.0,15000.0, 60 months,17.99,380.82,D,D2,Section laborer,8 years,RENT,52000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407958,,debt_consolidation,Debt consolidation,585xx,ND,22.22,0.0,Oct-2001,680.0,684.0,0.0,42.0,80.0,8.0,1.0,12361.0,38.7,11.0,w,9390.71,9390.71,11081.26,11081.26,5609.29,5471.97,0.0,0.0,0.0,Mar-2019,380.82,Apr-2019,Mar-2019,564.0,560.0,0.0,42.0,1.0,Individual,,,,0.0,462.0,39218.0,2.0,2.0,1.0,2.0,6.0,26857.0,83.0,1.0,5.0,4318.0,61.0,31900.0,0.0,1.0,1.0,7.0,4902.0,5501.0,64.7,0.0,0.0,24.0,179.0,6.0,6.0,1.0,6.0,,1.0,,1.0,5.0,6.0,5.0,6.0,2.0,6.0,7.0,6.0,8.0,0.0,0.0,0.0,2.0,90.9,60.0,0.0,1.0,64430.0,39218.0,15600.0,32530.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90174350,,13750.0,13750.0,13750.0, 36 months,11.49,453.36,B,B5,Table games Supervisor/dealer,2 years,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90174350,,debt_consolidation,Debt consolidation,891xx,NV,16.87,0.0,May-2004,715.0,719.0,1.0,76.0,66.0,8.0,2.0,4115.0,16.1,18.0,w,0.0,0.0,14414.7845233466,14414.78,13750.0,664.78,0.0,0.0,0.0,Mar-2017,12610.12,,Apr-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,21023.0,1.0,2.0,0.0,3.0,14.0,16908.0,71.0,3.0,4.0,3992.0,42.0,25600.0,3.0,0.0,2.0,7.0,2628.0,21485.0,16.1,0.0,0.0,125.0,148.0,6.0,6.0,1.0,6.0,,1.0,,0.0,2.0,2.0,6.0,7.0,9.0,6.0,8.0,2.0,8.0,0.0,0.0,0.0,3.0,94.4,0.0,0.0,2.0,49558.0,21023.0,25600.0,23958.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90461678,,1600.0,1600.0,1600.0, 36 months,9.49,51.25,B,B2,Route Sales,10+ years,RENT,53500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461678,,other,Other,240xx,VA,7.92,0.0,Aug-2002,785.0,789.0,0.0,,,6.0,0.0,383.0,2.4,17.0,w,0.0,0.0,1682.2501000179998,1682.25,1600.0,82.25,0.0,0.0,0.0,Apr-2017,1424.03,,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,17776.0,1.0,1.0,1.0,3.0,3.0,17393.0,97.0,0.0,1.0,314.0,52.0,16200.0,0.0,5.0,0.0,4.0,2963.0,10817.0,3.4,0.0,0.0,169.0,137.0,23.0,3.0,0.0,110.0,,23.0,,0.0,2.0,2.0,2.0,6.0,7.0,5.0,10.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,34113.0,17776.0,11200.0,17913.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681283,,20200.0,20200.0,20200.0, 60 months,29.96,653.05,G,G4,coater ,1 year,RENT,55000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681283,,debt_consolidation,Debt consolidation,932xx,CA,34.61,0.0,Nov-2005,735.0,739.0,1.0,,,22.0,0.0,6203.0,15.5,33.0,w,0.0,0.0,3271.5,3271.5,301.16,971.32,0.0,1999.02,359.8236,Dec-2016,653.05,,Dec-2018,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,51429.0,3.0,4.0,3.0,4.0,2.0,45226.0,69.0,2.0,5.0,1932.0,49.0,40200.0,1.0,2.0,6.0,9.0,2338.0,4673.0,45.0,0.0,0.0,130.0,112.0,4.0,2.0,0.0,41.0,,0.0,,0.0,5.0,11.0,5.0,6.0,12.0,18.0,21.0,11.0,22.0,0.0,0.0,0.0,5.0,100.0,20.0,0.0,0.0,105721.0,51429.0,8500.0,65521.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451601,,15000.0,15000.0,15000.0, 36 months,16.99,534.72,D,D1,Paramedic ,2 years,MORTGAGE,120000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451601,,debt_consolidation,Debt consolidation,031xx,NH,15.3,3.0,Jul-1992,670.0,674.0,3.0,15.0,,16.0,0.0,9750.0,46.0,27.0,f,3539.6,3539.6,15577.67,15577.67,11460.4,4117.27,0.0,0.0,0.0,Mar-2019,534.72,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,398221.0,6.0,8.0,9.0,9.0,1.0,77941.0,95.0,4.0,4.0,6597.0,78.0,21200.0,1.0,2.0,8.0,13.0,26548.0,11450.0,46.0,0.0,0.0,38.0,290.0,2.0,1.0,3.0,2.0,15.0,0.0,15.0,0.0,2.0,2.0,6.0,9.0,13.0,7.0,11.0,2.0,16.0,0.0,0.0,0.0,13.0,88.5,16.7,0.0,0.0,391164.0,87691.0,21200.0,79881.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90511813,,12000.0,12000.0,12000.0, 60 months,21.49,327.96,D,D5,managefr,10+ years,RENT,33000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90511813,,debt_consolidation,Debt consolidation,190xx,PA,3.09,2.0,Jun-2006,685.0,689.0,0.0,11.0,,6.0,0.0,1603.0,14.3,13.0,w,0.0,0.0,2488.46,2488.46,345.29,710.22,0.0,1432.95,257.931,Jan-2017,327.96,,Jul-2017,559.0,555.0,0.0,19.0,1.0,Individual,,,,0.0,0.0,1603.0,1.0,0.0,0.0,1.0,20.0,0.0,,3.0,3.0,1005.0,14.0,11200.0,1.0,0.0,3.0,4.0,321.0,8097.0,16.5,0.0,0.0,123.0,55.0,6.0,6.0,0.0,34.0,,2.0,11.0,1.0,3.0,3.0,3.0,3.0,5.0,6.0,8.0,3.0,6.0,0.0,0.0,1.0,3.0,76.9,0.0,0.0,0.0,11200.0,1603.0,9700.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90210791,,25000.0,25000.0,25000.0, 36 months,8.99,794.88,B,B1,Vice President ,10+ years,OWN,400000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90210791,,debt_consolidation,Debt consolidation,440xx,OH,7.52,0.0,Sep-1995,675.0,679.0,0.0,35.0,,8.0,0.0,23250.0,90.1,15.0,w,0.0,0.0,28427.724790766802,28427.72,25000.0,3427.72,0.0,0.0,0.0,Feb-2019,6978.45,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,102.0,532044.0,0.0,2.0,0.0,0.0,26.0,43736.0,,0.0,0.0,14740.0,90.0,25800.0,0.0,1.0,0.0,0.0,76006.0,2550.0,90.1,0.0,0.0,147.0,117.0,52.0,26.0,2.0,52.0,35.0,15.0,35.0,0.0,4.0,4.0,4.0,5.0,6.0,4.0,5.0,4.0,8.0,0.0,0.0,0.0,0.0,93.3,50.0,0.0,0.0,626293.0,66986.0,25800.0,99493.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90137061,,7000.0,7000.0,7000.0, 36 months,10.49,227.49,B,B3,Business sales,10+ years,MORTGAGE,60000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90137061,,credit_card,Credit card refinancing,032xx,NH,33.76,3.0,Dec-1998,660.0,664.0,0.0,4.0,,12.0,0.0,38707.0,71.7,33.0,w,0.0,0.0,7016.32,7016.32,7000.0,16.32,0.0,0.0,0.0,Oct-2016,7020.4,,Mar-2017,644.0,640.0,0.0,,1.0,Joint App,130000.0,21.6,Not Verified,0.0,0.0,271562.0,0.0,3.0,0.0,3.0,17.0,39061.0,89.0,0.0,0.0,15217.0,79.0,54000.0,2.0,4.0,2.0,3.0,22630.0,7285.0,83.1,0.0,0.0,213.0,191.0,32.0,17.0,6.0,73.0,4.0,0.0,4.0,0.0,4.0,6.0,4.0,9.0,8.0,8.0,19.0,6.0,12.0,0.0,0.0,0.0,0.0,90.9,50.0,0.0,0.0,308647.0,77768.0,43000.0,43947.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631678,,5000.0,5000.0,5000.0, 36 months,9.49,160.15,B,B2,firefighter,5 years,OWN,56000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631678,,credit_card,Credit card refinancing,473xx,IN,21.6,0.0,Dec-2004,670.0,674.0,2.0,31.0,,10.0,0.0,8528.0,46.3,49.0,w,0.0,0.0,5343.8205789263,5343.82,5000.0,328.82,15.0,0.0,0.0,Jul-2017,3915.51,,Feb-2019,674.0,670.0,0.0,36.0,1.0,Individual,,,,0.0,1099.0,57861.0,1.0,2.0,1.0,1.0,12.0,49333.0,87.0,2.0,7.0,4241.0,77.0,18400.0,4.0,8.0,3.0,8.0,6429.0,1694.0,80.5,0.0,0.0,133.0,141.0,0.0,0.0,0.0,27.0,31.0,0.0,31.0,8.0,2.0,3.0,2.0,5.0,29.0,8.0,20.0,3.0,10.0,0.0,0.0,0.0,3.0,73.5,100.0,0.0,0.0,75242.0,57861.0,8700.0,56842.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90302309,,15000.0,15000.0,15000.0, 36 months,10.49,487.47,B,B3,Account Executive,< 1 year,RENT,96000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90302309,,debt_consolidation,Debt consolidation,802xx,CO,18.33,0.0,Jul-2000,670.0,674.0,4.0,56.0,43.0,6.0,1.0,11745.0,56.7,21.0,w,0.0,0.0,17332.5810547242,17332.58,15000.0,2332.58,0.0,0.0,0.0,Dec-2018,5154.57,,Dec-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,66815.0,2.0,2.0,2.0,3.0,6.0,55070.0,95.0,1.0,3.0,8522.0,68.0,20700.0,6.0,0.0,16.0,6.0,11136.0,7742.0,56.3,0.0,0.0,128.0,194.0,6.0,6.0,0.0,14.0,,2.0,,0.0,2.0,3.0,3.0,11.0,7.0,4.0,14.0,3.0,6.0,0.0,0.0,0.0,3.0,93.8,33.3,1.0,0.0,80332.0,66815.0,17700.0,59632.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89917409,,40000.0,40000.0,40000.0, 36 months,11.49,1318.86,B,B5,CFO,10+ years,MORTGAGE,300000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89917409,,debt_consolidation,Debt consolidation,852xx,AZ,12.49,0.0,Apr-1988,715.0,719.0,0.0,47.0,,9.0,0.0,23988.0,73.6,29.0,w,8887.95,8887.95,38221.41,38221.41,31112.05,7109.36,0.0,0.0,0.0,Mar-2019,1318.86,Apr-2019,Mar-2019,744.0,740.0,0.0,47.0,1.0,Individual,,,,0.0,0.0,707295.0,1.0,3.0,1.0,2.0,4.0,68527.0,81.0,0.0,1.0,17384.0,68.0,32600.0,0.0,0.0,2.0,5.0,88412.0,8612.0,73.6,0.0,0.0,143.0,341.0,14.0,4.0,9.0,14.0,,0.0,,2.0,3.0,3.0,4.0,6.0,9.0,4.0,8.0,3.0,9.0,0.0,0.0,0.0,2.0,92.9,33.3,0.0,0.0,771279.0,93509.0,32600.0,111580.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90301792,,12000.0,12000.0,12000.0, 60 months,10.99,260.85,B,B4,Sales Manager,5 years,RENT,108000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90301792,,home_improvement,Home improvement,926xx,CA,8.29,0.0,Oct-2002,680.0,684.0,0.0,,71.0,5.0,1.0,763.0,5.5,16.0,w,0.0,0.0,13891.713931118798,13891.71,12000.0,1891.71,0.0,0.0,0.0,Dec-2018,5377.79,,Dec-2018,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,27733.0,0.0,2.0,0.0,2.0,14.0,26970.0,66.0,0.0,0.0,360.0,51.0,14000.0,0.0,2.0,1.0,2.0,5547.0,13237.0,5.5,0.0,0.0,152.0,167.0,27.0,14.0,0.0,27.0,,1.0,,0.0,3.0,3.0,3.0,6.0,7.0,3.0,9.0,3.0,5.0,0.0,0.0,0.0,0.0,100.0,0.0,1.0,0.0,54867.0,27733.0,14000.0,40867.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693932,,20000.0,20000.0,20000.0, 36 months,8.59,632.19,A,A5,officer,8 years,RENT,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693932,,debt_consolidation,Debt consolidation,615xx,IL,32.81,0.0,Nov-2002,725.0,729.0,0.0,,,10.0,0.0,19079.0,39.7,25.0,w,4301.1,4301.1,18323.97,18323.97,15698.9,2625.07,0.0,0.0,0.0,Mar-2019,632.19,Apr-2019,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,75798.0,0.0,4.0,1.0,2.0,7.0,56719.0,72.0,0.0,1.0,4975.0,60.0,48100.0,0.0,0.0,0.0,3.0,7580.0,23521.0,44.8,0.0,0.0,98.0,166.0,14.0,7.0,0.0,14.0,,14.0,,0.0,5.0,5.0,5.0,9.0,13.0,6.0,12.0,5.0,10.0,0.0,0.0,0.0,1.0,100.0,20.0,0.0,0.0,127368.0,75798.0,42600.0,79268.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90141720,,24000.0,24000.0,24000.0, 60 months,16.99,596.34,D,D1,Heavy Equipment Operator,2 years,RENT,54000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90141720,,credit_card,Credit card refinancing,922xx,CA,33.0,0.0,Oct-1997,680.0,684.0,0.0,,68.0,19.0,3.0,15553.0,20.1,34.0,f,0.0,0.0,4248.98,4248.98,516.71,709.95,0.0,3022.32,544.0176,Dec-2016,596.34,,May-2018,659.0,655.0,1.0,,1.0,Individual,,,,0.0,2064.0,56094.0,1.0,2.0,1.0,2.0,12.0,40541.0,27.0,4.0,7.0,12522.0,22.0,77300.0,0.0,3.0,3.0,9.0,2952.0,23547.0,34.8,0.0,0.0,150.0,227.0,4.0,4.0,2.0,4.0,,10.0,,0.0,2.0,3.0,7.0,9.0,8.0,17.0,24.0,3.0,19.0,0.0,0.0,0.0,5.0,100.0,14.3,0.0,3.0,144350.0,56094.0,36100.0,67050.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88828962,,20000.0,20000.0,20000.0, 60 months,15.59,482.02,C,C5,Vice President,4 years,MORTGAGE,160000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88828962,,credit_card,Credit card refinancing,973xx,OR,10.69,0.0,Aug-1998,660.0,664.0,0.0,24.0,73.0,17.0,1.0,10985.0,23.4,40.0,w,12237.01,12237.01,14055.53,14055.53,7762.99,6292.54,0.0,0.0,0.0,Mar-2019,482.02,Apr-2019,Mar-2019,659.0,655.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,145343.0,3.0,1.0,1.0,1.0,6.0,134358.0,,4.0,8.0,4523.0,23.0,46900.0,1.0,7.0,3.0,9.0,8550.0,12116.0,47.5,0.0,0.0,174.0,217.0,3.0,3.0,0.0,3.0,,3.0,,4.0,10.0,11.0,13.0,21.0,12.0,16.0,27.0,11.0,17.0,0.0,0.0,0.0,5.0,84.8,23.1,1.0,0.0,158264.0,145343.0,23100.0,111364.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90300615,,35000.0,35000.0,34725.0, 36 months,14.49,1204.57,C,C4,VP operations,10+ years,OWN,390000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300615,,debt_consolidation,Debt consolidation,193xx,PA,17.98,1.0,Nov-1995,690.0,694.0,5.0,11.0,,26.0,0.0,137380.0,63.4,52.0,f,8089.61,8026.04,35230.56,34953.75,26910.39,8139.48,180.69,0.0,0.0,Mar-2019,1204.57,Apr-2019,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,574757.0,2.0,4.0,1.0,3.0,3.0,56033.0,91.0,1.0,1.0,37749.0,73.0,177300.0,2.0,3.0,7.0,4.0,22990.0,37382.0,63.3,0.0,0.0,141.0,250.0,2.0,2.0,2.0,29.0,,0.0,,0.0,10.0,11.0,15.0,24.0,12.0,18.0,34.0,11.0,26.0,0.0,0.0,0.0,2.0,98.0,33.3,0.0,0.0,707038.0,234184.0,170100.0,61643.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693852,,8000.0,8000.0,8000.0, 36 months,10.49,259.99,B,B3,Firefighter,10+ years,RENT,80000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693852,,debt_consolidation,Debt consolidation,450xx,OH,16.13,0.0,Jun-1997,685.0,689.0,2.0,,47.0,14.0,1.0,3300.0,21.7,54.0,w,0.0,0.0,9136.703420623,9136.7,8000.0,1136.7,0.0,0.0,0.0,Aug-2018,3681.57,,Dec-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,41353.0,2.0,3.0,1.0,3.0,6.0,38053.0,74.0,1.0,4.0,2784.0,62.0,15200.0,0.0,9.0,3.0,7.0,4135.0,7700.0,30.0,0.0,0.0,163.0,231.0,2.0,2.0,3.0,16.0,,0.0,,0.0,2.0,2.0,5.0,18.0,13.0,11.0,36.0,2.0,12.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,0.0,66836.0,41353.0,11000.0,51636.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90107443,,22225.0,22225.0,22225.0, 36 months,14.49,764.9,C,C4,Finance Manager,10+ years,RENT,60000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90107443,,credit_card,Credit card refinancing,271xx,NC,13.54,0.0,Jan-2002,665.0,669.0,1.0,,,4.0,0.0,3202.0,53.4,7.0,w,0.0,0.0,23918.6567708545,23918.66,22225.0,1693.66,0.0,0.0,0.0,Apr-2017,20112.05,,Aug-2018,664.0,660.0,0.0,,1.0,Individual,,,,0.0,308.0,19093.0,2.0,1.0,1.0,1.0,4.0,15891.0,99.0,3.0,3.0,1784.0,87.0,6000.0,0.0,0.0,2.0,4.0,4773.0,1428.0,66.0,0.0,0.0,176.0,12.0,6.0,4.0,0.0,6.0,,5.0,,0.0,2.0,3.0,2.0,2.0,4.0,3.0,3.0,3.0,4.0,0.0,0.0,0.0,4.0,100.0,50.0,0.0,0.0,22000.0,19093.0,4200.0,16000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249426,,16000.0,16000.0,16000.0, 60 months,18.99,414.97,D,D3,Electrician,5 years,MORTGAGE,42000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249426,,credit_card,Credit card refinancing,040xx,ME,22.97,0.0,Nov-2006,675.0,679.0,3.0,,,7.0,0.0,51433.0,72.3,10.0,f,0.0,0.0,21003.471339058,21003.47,16000.0,5003.47,0.0,0.0,0.0,Aug-2018,12229.43,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,59793.0,1.0,1.0,0.0,0.0,56.0,8360.0,30.0,1.0,3.0,2539.0,40.0,53600.0,3.0,1.0,15.0,3.0,8542.0,1823.0,71.1,0.0,0.0,118.0,112.0,6.0,6.0,0.0,38.0,,0.0,,0.0,2.0,6.0,2.0,3.0,2.0,6.0,8.0,6.0,7.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,81128.0,59793.0,6300.0,27528.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111181,,18000.0,18000.0,17750.0, 60 months,25.69,535.63,F,F1,Registered Nurse,10+ years,MORTGAGE,90000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111181,,other,Other,325xx,FL,29.51,0.0,Jul-1999,685.0,689.0,2.0,41.0,95.0,19.0,1.0,14474.0,59.3,28.0,f,0.0,0.0,26557.4911475392,26188.64,18000.0,8557.49,0.0,0.0,0.0,Nov-2018,13728.06,,Mar-2019,684.0,680.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,106895.0,2.0,4.0,0.0,4.0,17.0,49423.0,61.0,3.0,8.0,4466.0,60.0,24400.0,1.0,3.0,6.0,12.0,5939.0,1609.0,89.6,0.0,0.0,148.0,206.0,1.0,1.0,2.0,14.0,41.0,1.0,41.0,1.0,6.0,8.0,7.0,8.0,8.0,14.0,18.0,8.0,19.0,0.0,0.0,0.0,3.0,92.9,100.0,1.0,0.0,206031.0,63897.0,15500.0,81631.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90100781,,3500.0,3500.0,3500.0, 36 months,12.79,117.58,C,C1,lamp room attendant,< 1 year,RENT,22000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90100781,,house,Home buying,153xx,PA,20.51,0.0,Nov-1997,660.0,664.0,0.0,52.0,,8.0,0.0,1735.0,11.1,20.0,w,788.87,788.87,3407.33,3407.33,2711.13,696.2,0.0,0.0,0.0,Mar-2019,117.5781028782,Apr-2019,Mar-2019,669.0,665.0,1.0,68.0,1.0,Individual,,,,0.0,373.0,18040.0,2.0,1.0,1.0,1.0,5.0,16305.0,95.0,5.0,5.0,884.0,55.0,15700.0,0.0,0.0,1.0,6.0,2255.0,11390.0,10.3,0.0,0.0,92.0,226.0,5.0,5.0,0.0,10.0,52.0,10.0,52.0,1.0,2.0,4.0,4.0,11.0,5.0,7.0,15.0,4.0,8.0,0.0,0.0,0.0,6.0,85.0,0.0,0.0,0.0,32876.0,18040.0,12700.0,17176.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90329345,,15000.0,15000.0,15000.0, 60 months,17.99,380.82,D,D2,production,9 years,MORTGAGE,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90329345,,debt_consolidation,Debt consolidation,469xx,IN,22.4,0.0,Sep-1993,685.0,689.0,1.0,48.0,71.0,11.0,1.0,10134.0,70.4,27.0,f,9386.88,9386.88,11006.3,11006.3,5613.12,5393.18,0.0,0.0,0.0,Mar-2019,380.82,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Joint App,78000.0,22.48,Not Verified,0.0,0.0,100942.0,1.0,3.0,1.0,3.0,6.0,15396.0,61.0,0.0,1.0,2652.0,65.0,14400.0,1.0,14.0,2.0,5.0,9177.0,3443.0,73.5,0.0,0.0,276.0,52.0,19.0,6.0,3.0,19.0,,6.0,,0.0,5.0,7.0,5.0,5.0,16.0,7.0,8.0,7.0,11.0,0.0,0.0,0.0,2.0,92.6,60.0,1.0,0.0,118103.0,25530.0,13000.0,25085.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693906,,14000.0,14000.0,14000.0, 60 months,27.79,434.13,F,F5,sales representative,< 1 year,RENT,44000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693906,,debt_consolidation,Debt consolidation,927xx,CA,8.76,0.0,Feb-2007,670.0,674.0,3.0,,,20.0,0.0,14683.0,55.6,29.0,f,0.0,0.0,15259.747061588501,15259.75,14000.0,1259.75,0.0,0.0,0.0,Feb-2017,13978.97,,Oct-2017,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,52140.0,4.0,10.0,4.0,7.0,2.0,37457.0,100.0,2.0,2.0,2145.0,82.0,26400.0,1.0,7.0,5.0,9.0,2744.0,10052.0,30.2,0.0,0.0,106.0,115.0,4.0,2.0,0.0,6.0,,0.0,,0.0,4.0,6.0,8.0,11.0,14.0,10.0,15.0,6.0,20.0,0.0,0.0,0.0,6.0,100.0,14.3,0.0,0.0,63857.0,52140.0,14400.0,37457.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471760,,17500.0,17500.0,17500.0, 36 months,16.99,623.84,D,D1,president,7 years,OWN,97500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471760,,credit_card,Credit card refinancing,441xx,OH,4.05,0.0,Feb-2013,735.0,739.0,3.0,26.0,,8.0,0.0,1740.0,9.8,9.0,w,4162.83,4162.83,18143.63,18143.63,13337.17,4712.89,93.57,0.0,0.0,Mar-2019,623.84,Apr-2019,Mar-2019,559.0,555.0,0.0,26.0,1.0,Individual,,,,0.0,0.0,7589.0,1.0,1.0,0.0,1.0,13.0,5849.0,64.0,2.0,3.0,1010.0,28.0,17800.0,0.0,0.0,5.0,4.0,949.0,14590.0,6.5,0.0,0.0,13.0,36.0,0.0,0.0,0.0,8.0,,0.0,,1.0,1.0,2.0,6.0,6.0,1.0,7.0,7.0,2.0,8.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,26955.0,7589.0,15600.0,9155.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186743,,2000.0,2000.0,2000.0, 36 months,9.49,64.06,B,B2,Manager,10+ years,MORTGAGE,54000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186743,,home_improvement,Home improvement,480xx,MI,13.78,0.0,Jul-2002,725.0,729.0,0.0,43.0,,18.0,0.0,3968.0,26.5,48.0,w,0.0,0.0,2097.503678576,2097.5,2000.0,97.5,0.0,0.0,0.0,Apr-2017,1778.25,,Jan-2019,709.0,705.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,221242.0,1.0,13.0,1.0,3.0,6.0,73525.0,72.0,0.0,1.0,3957.0,67.0,15000.0,1.0,0.0,0.0,5.0,12291.0,11032.0,26.5,0.0,0.0,156.0,170.0,22.0,6.0,5.0,22.0,43.0,15.0,43.0,5.0,2.0,2.0,4.0,12.0,27.0,4.0,16.0,2.0,18.0,0.0,0.0,0.0,1.0,79.5,0.0,0.0,0.0,263887.0,77493.0,15000.0,101604.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521451,,5000.0,5000.0,5000.0, 36 months,17.99,180.74,D,D2,Technician ,3 years,RENT,52000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521451,,other,Other,587xx,ND,19.78,0.0,Jul-2009,660.0,664.0,0.0,53.0,,6.0,0.0,2253.0,75.1,10.0,w,1192.47,1192.47,5236.46,5236.46,3807.53,1428.93,0.0,0.0,0.0,Mar-2019,180.74,Apr-2019,Mar-2019,759.0,755.0,0.0,53.0,1.0,Individual,,,,0.0,0.0,28867.0,1.0,3.0,1.0,2.0,2.0,26614.0,70.0,0.0,1.0,389.0,71.0,3000.0,1.0,2.0,0.0,3.0,4811.0,111.0,77.8,0.0,0.0,71.0,86.0,16.0,2.0,0.0,37.0,,14.0,,0.0,1.0,3.0,1.0,1.0,6.0,3.0,4.0,3.0,6.0,0.0,0.0,0.0,1.0,90.0,100.0,0.0,0.0,40842.0,28867.0,500.0,37842.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591726,,20000.0,20000.0,20000.0, 36 months,9.49,640.57,B,B2,Senior Support Engineer,10+ years,MORTGAGE,100868.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591726,,debt_consolidation,Debt consolidation,086xx,NJ,9.04,1.0,Apr-2000,695.0,699.0,0.0,17.0,75.0,7.0,1.0,18682.0,93.9,16.0,w,4345.27,4345.27,18550.17,18550.17,15654.73,2895.44,0.0,0.0,0.0,Mar-2019,640.57,Apr-2019,Aug-2017,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,354483.0,1.0,1.0,0.0,0.0,78.0,5238.0,30.0,1.0,2.0,9695.0,64.0,19900.0,0.0,0.0,2.0,2.0,50640.0,943.0,95.0,0.0,0.0,141.0,197.0,4.0,4.0,3.0,20.0,17.0,4.0,17.0,0.0,3.0,4.0,3.0,5.0,4.0,4.0,9.0,4.0,7.0,0.0,0.0,0.0,1.0,93.3,100.0,0.0,1.0,412434.0,23920.0,19000.0,17534.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88225736,,6000.0,6000.0,6000.0, 36 months,9.49,192.17,B,B2,,,MORTGAGE,44000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88225736,,credit_card,Credit card refinancing,160xx,PA,14.32,0.0,Jul-2008,680.0,684.0,1.0,38.0,76.0,6.0,2.0,4365.0,61.5,9.0,w,0.0,0.0,6793.1731642358,6793.17,6000.0,793.17,0.0,0.0,0.0,Sep-2018,2568.59,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,6734.0,1.0,1.0,0.0,0.0,30.0,2369.0,19.0,1.0,2.0,1473.0,35.0,7100.0,0.0,0.0,1.0,2.0,1122.0,2383.0,64.4,0.0,0.0,97.0,98.0,6.0,6.0,0.0,20.0,,6.0,,0.0,4.0,5.0,4.0,6.0,2.0,5.0,7.0,5.0,6.0,0.0,0.0,0.0,1.0,88.9,0.0,1.0,1.0,19285.0,6734.0,6700.0,12185.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695079,,8000.0,8000.0,8000.0, 36 months,10.49,259.99,B,B3,Store Manager ,7 years,MORTGAGE,82000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695079,,debt_consolidation,Debt consolidation,027xx,MA,9.88,0.0,Nov-1997,680.0,684.0,1.0,,82.0,10.0,1.0,8176.0,35.1,19.0,w,0.0,0.0,8575.1360650446,8575.14,8000.0,575.14,0.0,0.0,0.0,Aug-2017,2760.82,,Jan-2019,774.0,770.0,0.0,,1.0,Individual,,,,0.0,0.0,271343.0,1.0,1.0,0.0,1.0,19.0,6781.0,44.0,5.0,5.0,3766.0,39.0,23300.0,2.0,0.0,2.0,7.0,27134.0,12052.0,39.7,0.0,0.0,139.0,226.0,5.0,5.0,2.0,10.0,,5.0,,0.0,4.0,5.0,4.0,5.0,3.0,8.0,14.0,5.0,10.0,0.0,0.0,0.0,5.0,100.0,0.0,1.0,0.0,302233.0,14957.0,20000.0,15258.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90318442,,33875.0,33875.0,33875.0, 60 months,16.99,841.7,D,D1,Nurse Practitioner,< 1 year,RENT,77000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90318442,,debt_consolidation,Debt consolidation,372xx,TN,29.72,0.0,Sep-2005,670.0,674.0,0.0,27.0,,23.0,0.0,13760.0,29.9,32.0,w,0.0,0.0,15178.04,15178.04,5119.57,5906.38,84.18,4067.91,366.1119,Feb-2018,200.0,,May-2018,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,158701.0,0.0,12.0,0.0,6.0,15.0,144941.0,93.0,0.0,1.0,8444.0,86.0,26800.0,5.0,0.0,4.0,7.0,6900.0,9843.0,23.2,0.0,0.0,132.0,121.0,20.0,15.0,0.0,35.0,27.0,0.0,27.0,0.0,4.0,6.0,6.0,6.0,19.0,11.0,13.0,6.0,23.0,0.0,0.0,0.0,0.0,93.5,66.7,0.0,0.0,182964.0,158701.0,21100.0,156164.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631527,,35000.0,35000.0,35000.0, 36 months,13.99,1196.05,C,C3,Senior Maintence Inspector,10+ years,MORTGAGE,130000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631527,,debt_consolidation,Debt consolidation,601xx,IL,11.03,0.0,Jul-1995,665.0,669.0,2.0,25.0,,12.0,0.0,32641.0,70.0,31.0,w,7995.07,7995.07,34658.25,34658.25,27004.93,7653.32,0.0,0.0,0.0,Mar-2019,1196.05,Apr-2019,Mar-2019,704.0,700.0,1.0,,1.0,Individual,,,,0.0,1155.0,270368.0,3.0,1.0,2.0,2.0,1.0,10188.0,100.0,1.0,1.0,7229.0,76.0,46600.0,3.0,10.0,5.0,3.0,24579.0,6471.0,67.3,0.0,0.0,136.0,254.0,2.0,1.0,3.0,2.0,,1.0,25.0,0.0,4.0,9.0,4.0,6.0,8.0,10.0,19.0,9.0,12.0,0.0,0.0,0.0,3.0,96.8,50.0,0.0,0.0,317758.0,42829.0,19800.0,10158.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89067971,,10000.0,10000.0,10000.0, 36 months,10.99,327.34,B,B4,Instrument Technician,10+ years,RENT,57000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89067971,,debt_consolidation,Debt consolidation,104xx,NY,17.89,0.0,Jun-2002,695.0,699.0,1.0,37.0,,10.0,0.0,6665.0,35.5,24.0,w,0.0,0.0,7850.05,7850.05,6296.1,1553.95,0.0,0.0,0.0,Oct-2018,327.34,,Mar-2019,589.0,585.0,0.0,37.0,1.0,Individual,,,,0.0,0.0,41296.0,1.0,4.0,2.0,2.0,2.0,34631.0,88.0,2.0,3.0,3307.0,71.0,18800.0,0.0,3.0,1.0,5.0,4588.0,8193.0,28.8,0.0,0.0,171.0,120.0,11.0,2.0,0.0,12.0,37.0,4.0,37.0,2.0,1.0,3.0,3.0,8.0,12.0,6.0,12.0,3.0,10.0,0.0,0.0,0.0,4.0,77.3,33.3,0.0,0.0,58328.0,41296.0,11500.0,39528.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90724126,,8400.0,8400.0,8400.0, 36 months,16.99,299.45,D,D1,Caser operator,10+ years,OWN,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90724126,,debt_consolidation,Debt consolidation,141xx,NY,12.94,2.0,Oct-1997,690.0,694.0,0.0,15.0,,10.0,0.0,1458.0,22.1,21.0,w,1983.18,1983.18,8676.12,8676.12,6416.82,2259.3,0.0,0.0,0.0,Mar-2019,299.45,Apr-2019,Mar-2019,599.0,595.0,0.0,15.0,1.0,Individual,,,,0.0,0.0,20220.0,2.0,5.0,0.0,0.0,47.0,18762.0,54.0,4.0,5.0,511.0,49.0,6600.0,0.0,1.0,1.0,5.0,2022.0,789.0,39.3,0.0,0.0,227.0,59.0,0.0,0.0,3.0,0.0,,9.0,,3.0,1.0,2.0,2.0,2.0,12.0,5.0,6.0,2.0,10.0,0.0,0.0,2.0,4.0,81.0,0.0,0.0,0.0,41071.0,20220.0,1300.0,34471.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90706139,,16575.0,16575.0,16575.0, 36 months,17.99,599.15,D,D2,,,MORTGAGE,57399.72,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90706139,,debt_consolidation,Debt consolidation,350xx,AL,30.06,0.0,Jan-1998,715.0,719.0,0.0,,,7.0,0.0,12535.0,74.6,39.0,f,0.0,0.0,8842.09,8842.09,4572.86,2600.37,0.0,1668.86,300.3948000015,Oct-2017,599.15,,Aug-2018,569.0,565.0,0.0,,1.0,Individual,,,,0.0,0.0,257485.0,0.0,3.0,1.0,2.0,8.0,150186.0,81.0,1.0,2.0,9407.0,79.0,16800.0,1.0,5.0,2.0,4.0,36784.0,1000.0,92.2,0.0,0.0,130.0,224.0,9.0,8.0,2.0,14.0,,7.0,,0.0,2.0,3.0,2.0,4.0,30.0,3.0,7.0,3.0,7.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,272889.0,162721.0,12800.0,146089.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571325,,5000.0,5000.0,5000.0, 36 months,9.49,160.15,B,B2,,,RENT,18636.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571325,,credit_card,Credit card refinancing,836xx,ID,11.27,0.0,Jun-1983,695.0,699.0,0.0,,51.0,6.0,2.0,4864.0,31.2,10.0,w,1086.07,1086.07,4641.71,4641.71,3913.93,727.78,0.0,0.0,0.0,Mar-2019,160.15,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,346.0,4864.0,0.0,0.0,0.0,0.0,59.0,0.0,,2.0,3.0,1466.0,31.0,15600.0,0.0,1.0,1.0,3.0,811.0,3605.0,50.6,0.0,0.0,59.0,399.0,9.0,9.0,0.0,13.0,,9.0,,0.0,3.0,5.0,3.0,4.0,1.0,6.0,9.0,5.0,6.0,0.0,0.0,0.0,2.0,100.0,33.3,1.0,1.0,15600.0,4864.0,7300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90706289,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,Sergeant ,10+ years,RENT,100000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90706289,,debt_consolidation,Debt consolidation,330xx,FL,29.44,0.0,Sep-1995,675.0,679.0,0.0,,68.0,21.0,1.0,26232.0,54.0,59.0,w,0.0,0.0,18869.99,18869.99,9318.68,9551.31,0.0,0.0,0.0,Oct-2018,843.53,,Mar-2019,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,129056.0,0.0,3.0,0.0,2.0,14.0,102824.0,70.0,3.0,9.0,6381.0,59.0,48600.0,1.0,2.0,4.0,11.0,6146.0,7335.0,64.0,0.0,0.0,120.0,252.0,10.0,10.0,3.0,11.0,,7.0,,0.0,7.0,15.0,7.0,9.0,30.0,18.0,25.0,15.0,21.0,0.0,0.0,0.0,3.0,100.0,14.3,1.0,0.0,168068.0,129056.0,20400.0,119468.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,NATURAL_DISASTER,COMPLETED,3.0,395.39,Sep-2017,Dec-2017,Oct-2017,3.0,0.0,Current,1186.17,30737.14,0.08,Cash,N,,,,,, +90242190,,5000.0,5000.0,5000.0, 36 months,17.99,180.74,D,D2,Meat dept,2 years,MORTGAGE,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90242190,,debt_consolidation,Debt consolidation,983xx,WA,26.49,4.0,Nov-2004,660.0,664.0,3.0,6.0,104.0,19.0,1.0,6114.0,52.3,35.0,w,0.0,0.0,6343.8720336821,6343.87,5000.0,1343.87,0.0,0.0,0.0,Nov-2018,2011.11,,Nov-2018,614.0,610.0,0.0,46.0,1.0,Individual,,,,0.0,1229.0,158550.0,3.0,1.0,0.0,0.0,33.0,10210.0,69.0,4.0,6.0,1323.0,61.0,11700.0,0.0,6.0,4.0,6.0,8808.0,3558.0,58.6,0.0,0.0,134.0,142.0,2.0,2.0,4.0,2.0,9.0,3.0,6.0,2.0,9.0,13.0,9.0,13.0,7.0,17.0,24.0,13.0,19.0,0.0,0.0,0.0,4.0,74.3,55.6,1.0,0.0,239072.0,16324.0,8600.0,14872.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197688,,6000.0,6000.0,6000.0, 36 months,9.49,192.17,B,B2,,,RENT,32360.16,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197688,,credit_card,Credit card refinancing,354xx,AL,23.0,0.0,Oct-1974,660.0,664.0,1.0,,29.0,6.0,1.0,4136.0,47.0,20.0,w,0.0,0.0,6419.9227718797,6419.92,6000.0,419.92,0.0,0.0,0.0,Aug-2017,4693.55,,Jan-2018,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,34880.0,2.0,1.0,1.0,1.0,6.0,30744.0,96.0,1.0,4.0,2445.0,91.0,6100.0,2.0,1.0,5.0,5.0,6976.0,64.0,99.5,0.0,0.0,172.0,503.0,3.0,3.0,0.0,17.0,,3.0,,0.0,2.0,2.0,2.0,7.0,9.0,5.0,11.0,2.0,5.0,0.0,0.0,0.0,2.0,100.0,100.0,1.0,0.0,38172.0,34880.0,4200.0,32072.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89898200,,10000.0,10000.0,10000.0, 36 months,9.49,320.29,B,B2,Project Manager,10+ years,OWN,100000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89898200,,credit_card,Credit card refinancing,705xx,LA,16.82,0.0,Mar-1989,670.0,674.0,0.0,31.0,,20.0,0.0,15585.0,47.4,24.0,w,2173.42,2173.42,9283.14,9283.14,7826.58,1456.56,0.0,0.0,0.0,Mar-2019,320.29,Apr-2019,Mar-2019,619.0,615.0,0.0,,1.0,Individual,,,,0.0,533.0,27231.0,2.0,2.0,0.0,1.0,18.0,11646.0,31.0,4.0,6.0,2454.0,38.0,32900.0,0.0,0.0,0.0,7.0,1433.0,16620.0,40.9,0.0,0.0,56.0,330.0,4.0,4.0,0.0,4.0,32.0,14.0,31.0,0.0,14.0,16.0,15.0,16.0,4.0,18.0,20.0,16.0,20.0,0.0,0.0,0.0,4.0,87.5,7.1,0.0,0.0,70901.0,27231.0,28100.0,38001.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571683,,13500.0,13500.0,13500.0, 36 months,8.99,429.24,B,B1,Marketing Program Lead,3 years,MORTGAGE,130000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571683,,credit_card,Credit card refinancing,483xx,MI,12.18,0.0,Jul-2001,720.0,724.0,2.0,,,15.0,0.0,26428.0,31.8,41.0,w,0.0,0.0,14279.4879176999,14279.49,13500.0,779.49,0.0,0.0,0.0,Jun-2017,11281.55,,Jun-2017,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,66201.0,2.0,3.0,2.0,2.0,4.0,39773.0,77.0,2.0,5.0,7719.0,49.0,83100.0,4.0,8.0,5.0,8.0,4729.0,27609.0,39.3,0.0,0.0,169.0,182.0,1.0,1.0,3.0,1.0,,1.0,,0.0,3.0,5.0,5.0,16.0,13.0,12.0,25.0,5.0,15.0,0.0,0.0,0.0,5.0,100.0,40.0,0.0,0.0,134704.0,66201.0,45500.0,51604.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414847,,15000.0,15000.0,15000.0, 36 months,6.99,463.09,A,A2,CEO,2 years,OWN,75000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414847,,debt_consolidation,Debt consolidation,008xx,IN,6.96,0.0,Sep-1983,740.0,744.0,0.0,33.0,,19.0,0.0,13917.0,16.0,30.0,w,3167.32,3167.32,13423.79,13423.79,11832.68,1591.11,0.0,0.0,0.0,Mar-2019,463.09,Apr-2019,Mar-2019,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,13917.0,0.0,0.0,0.0,0.0,95.0,0.0,,1.0,2.0,2939.0,16.0,87000.0,1.0,0.0,3.0,2.0,994.0,65787.0,14.7,0.0,0.0,101.0,396.0,8.0,8.0,1.0,8.0,,8.0,33.0,0.0,8.0,10.0,14.0,18.0,2.0,19.0,27.0,10.0,19.0,0.0,0.0,0.0,1.0,96.7,10.0,0.0,0.0,87000.0,13917.0,77100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571698,,4800.0,4800.0,4800.0, 36 months,13.49,162.87,C,C2,Respiratory therapist,< 1 year,RENT,36000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571698,,vacation,Vacation,919xx,CA,16.4,0.0,Sep-2002,660.0,664.0,3.0,68.0,26.0,5.0,1.0,5771.0,38.5,24.0,w,0.0,0.0,5725.309845761601,5725.31,4800.0,925.31,0.0,0.0,0.0,Oct-2018,1982.9,,Mar-2019,704.0,700.0,0.0,68.0,1.0,Individual,,,,0.0,0.0,13574.0,0.0,2.0,0.0,1.0,15.0,7803.0,71.0,0.0,3.0,4000.0,52.0,15000.0,1.0,0.0,3.0,4.0,2715.0,723.0,85.2,0.0,0.0,151.0,168.0,15.0,15.0,2.0,15.0,,0.0,,4.0,2.0,3.0,2.0,4.0,12.0,3.0,10.0,3.0,5.0,0.0,0.0,0.0,0.0,82.6,50.0,1.0,0.0,26017.0,13574.0,4900.0,11017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611626,,4000.0,4000.0,4000.0, 36 months,14.49,137.67,C,C4,Station Agent ,4 years,RENT,56000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611626,,other,Other,112xx,NY,26.25,2.0,Sep-2006,670.0,674.0,1.0,20.0,76.0,9.0,1.0,11082.0,59.9,16.0,w,0.0,0.0,4738.51500679,4738.52,4000.0,738.52,0.0,0.0,0.0,Mar-2019,133.98,,Feb-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,38959.0,1.0,4.0,1.0,3.0,9.0,27877.0,84.0,1.0,5.0,3148.0,75.0,18500.0,1.0,3.0,1.0,8.0,4329.0,3911.0,64.1,0.0,0.0,120.0,70.0,5.0,5.0,0.0,5.0,20.0,5.0,20.0,0.0,4.0,5.0,4.0,6.0,9.0,5.0,7.0,5.0,9.0,0.0,0.0,0.0,2.0,87.5,50.0,1.0,0.0,51639.0,38959.0,10900.0,33139.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591820,,10000.0,10000.0,10000.0, 36 months,8.99,317.96,B,B1,Credit Analyst,7 years,MORTGAGE,46920.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591820,,credit_card,Credit card refinancing,720xx,AR,18.77,0.0,Apr-2002,715.0,719.0,1.0,,,19.0,0.0,12731.0,43.2,37.0,w,2160.13,2160.13,9215.85,9215.85,7839.87,1375.98,0.0,0.0,0.0,Mar-2019,317.96,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,131884.0,1.0,4.0,0.0,1.0,19.0,13622.0,52.0,2.0,3.0,3479.0,48.0,29500.0,0.0,0.0,1.0,4.0,7758.0,5253.0,66.3,0.0,0.0,173.0,134.0,5.0,5.0,3.0,22.0,,5.0,,0.0,5.0,7.0,6.0,11.0,10.0,14.0,24.0,7.0,19.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,168988.0,26353.0,15600.0,25988.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692960,,8000.0,8000.0,8000.0, 36 months,10.99,261.88,B,B4,Budget Analyst,10+ years,MORTGAGE,134000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692960,,debt_consolidation,Debt consolidation,206xx,MD,32.12,2.0,Sep-1993,670.0,674.0,1.0,4.0,78.0,29.0,1.0,10508.0,33.5,46.0,w,1768.6,1768.6,7618.94,7618.94,6231.4,1387.54,0.0,0.0,0.0,Mar-2019,261.88,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,602.0,396005.0,2.0,5.0,1.0,5.0,1.0,130125.0,70.0,3.0,10.0,2826.0,58.0,31400.0,9.0,0.0,2.0,15.0,13655.0,9242.0,39.2,0.0,0.0,124.0,276.0,1.0,1.0,1.0,1.0,4.0,3.0,4.0,0.0,8.0,15.0,9.0,11.0,12.0,23.0,33.0,15.0,29.0,0.0,0.0,0.0,4.0,78.3,11.1,0.0,0.0,499897.0,140633.0,15200.0,170997.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90284637,,5600.0,5600.0,5600.0, 36 months,18.99,205.25,D,D3,General Manager,10+ years,RENT,180000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90284637,,debt_consolidation,Debt consolidation,305xx,GA,9.28,0.0,Mar-1991,670.0,674.0,2.0,,75.0,12.0,2.0,15236.0,43.2,25.0,w,0.0,0.0,1165.94,1165.94,355.46,254.38,0.0,556.1,100.098,Jan-2017,205.25,,Jul-2017,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,46385.0,4.0,2.0,0.0,1.0,23.0,31149.0,64.0,4.0,4.0,4069.0,55.0,35300.0,3.0,0.0,2.0,5.0,4217.0,18468.0,35.9,0.0,0.0,184.0,306.0,2.0,2.0,4.0,2.0,,0.0,,0.0,5.0,7.0,8.0,9.0,8.0,10.0,13.0,7.0,12.0,0.0,0.0,0.0,4.0,100.0,71.4,1.0,1.0,84154.0,46385.0,28800.0,48854.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90131333,,6025.0,6025.0,6025.0, 36 months,8.99,191.57,B,B1,cold food cook,10+ years,RENT,40000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90131333,,other,Other,017xx,MA,29.55,1.0,May-2005,675.0,679.0,1.0,21.0,,19.0,0.0,16129.0,35.8,22.0,w,1301.51,1301.51,5552.52,5552.52,4723.49,829.03,0.0,0.0,0.0,Mar-2019,191.57,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,876.0,22200.0,1.0,1.0,0.0,0.0,55.0,6071.0,31.0,2.0,2.0,3061.0,34.0,45000.0,0.0,0.0,1.0,2.0,1168.0,11191.0,47.5,0.0,0.0,55.0,136.0,2.0,2.0,0.0,29.0,,2.0,28.0,0.0,7.0,18.0,7.0,7.0,1.0,18.0,20.0,18.0,19.0,0.0,0.0,0.0,2.0,90.9,28.6,0.0,0.0,64525.0,22200.0,21300.0,19525.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280637,,14000.0,14000.0,14000.0, 36 months,8.99,445.14,B,B1,Assistant Manager,4 years,RENT,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280637,,debt_consolidation,Debt consolidation,604xx,IL,17.4,0.0,May-2006,720.0,724.0,0.0,,,6.0,0.0,16218.0,66.2,7.0,w,3024.32,3024.32,12902.07,12902.07,10975.68,1926.39,0.0,0.0,0.0,Mar-2019,445.14,Apr-2019,Mar-2019,829.0,825.0,0.0,,1.0,Individual,,,,0.0,0.0,28483.0,0.0,1.0,0.0,0.0,34.0,12265.0,60.0,0.0,0.0,8106.0,63.0,24500.0,0.0,0.0,0.0,0.0,4747.0,7686.0,66.6,0.0,0.0,34.0,124.0,70.0,34.0,0.0,70.0,,,,0.0,4.0,5.0,4.0,5.0,1.0,5.0,6.0,5.0,6.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,45099.0,28483.0,23000.0,20599.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441696,,2500.0,2500.0,2500.0, 36 months,12.79,83.99,C,C1,Manager,2 years,OWN,31200.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441696,,other,Other,456xx,OH,20.38,0.0,Apr-2012,700.0,704.0,1.0,,68.0,7.0,2.0,907.0,6.9,8.0,w,0.0,0.0,2948.2287561133003,2948.23,2500.0,448.23,0.0,0.0,0.0,Sep-2018,1102.23,,Dec-2018,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,23766.0,0.0,2.0,1.0,3.0,8.0,22859.0,88.0,1.0,1.0,576.0,61.0,13200.0,1.0,0.0,4.0,4.0,3395.0,2524.0,18.6,0.0,0.0,24.0,53.0,11.0,8.0,0.0,43.0,,3.0,,0.0,1.0,2.0,2.0,2.0,3.0,5.0,5.0,2.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,1.0,39295.0,23766.0,3100.0,26095.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90312343,,12000.0,12000.0,12000.0, 36 months,8.99,381.55,B,B1,Produce Coordinator ,10+ years,MORTGAGE,82000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90312343,,debt_consolidation,Debt consolidation,925xx,CA,13.99,1.0,May-2004,675.0,679.0,1.0,17.0,79.0,11.0,1.0,9063.0,37.1,25.0,w,0.0,0.0,13284.957462531298,13284.96,12000.0,1284.96,0.0,0.0,0.0,Apr-2018,6804.6,,Jan-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,221146.0,0.0,2.0,0.0,1.0,14.0,16420.0,52.0,2.0,2.0,3367.0,46.0,24400.0,4.0,2.0,5.0,5.0,20104.0,3271.0,68.2,0.0,0.0,148.0,115.0,9.0,9.0,4.0,9.0,,2.0,,0.0,4.0,6.0,4.0,8.0,5.0,8.0,16.0,6.0,11.0,0.0,0.0,0.0,4.0,95.7,50.0,1.0,0.0,254487.0,25483.0,10300.0,31454.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90439399,,25600.0,25600.0,25600.0, 36 months,19.99,951.26,D,D4,E6,10+ years,RENT,87000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90439399,,debt_consolidation,Debt consolidation,968xx,HI,16.77,1.0,Jun-2006,660.0,664.0,1.0,1.0,,13.0,0.0,33012.0,43.3,28.0,w,0.0,0.0,28917.9738097026,28917.97,25600.0,3317.97,0.0,0.0,0.0,Jun-2017,22287.58,,Dec-2018,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,35436.0,0.0,1.0,0.0,0.0,26.0,2424.0,8.0,1.0,4.0,12581.0,33.0,76300.0,0.0,9.0,3.0,4.0,2726.0,12721.0,55.0,1.0,0.0,123.0,118.0,8.0,8.0,2.0,8.0,,0.0,,0.0,2.0,6.0,5.0,8.0,10.0,12.0,16.0,6.0,13.0,0.0,0.0,0.0,1.0,96.4,40.0,0.0,0.0,106218.0,35436.0,28300.0,29918.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90696208,,18000.0,18000.0,18000.0, 36 months,9.49,576.51,B,B2,President,2 years,MORTGAGE,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90696208,,home_improvement,Home improvement,610xx,IL,24.68,0.0,Oct-1989,665.0,669.0,2.0,69.0,77.0,10.0,2.0,11417.0,49.9,22.0,w,0.0,0.0,20048.955880462,20048.96,18000.0,2048.96,0.0,0.0,0.0,Apr-2018,10257.78,,Mar-2019,724.0,720.0,0.0,69.0,1.0,Individual,,,,0.0,0.0,36789.0,0.0,3.0,2.0,2.0,10.0,25372.0,77.0,2.0,2.0,9999.0,66.0,22900.0,2.0,2.0,8.0,4.0,3679.0,9683.0,51.8,0.0,0.0,139.0,323.0,7.0,7.0,6.0,7.0,,6.0,,1.0,3.0,4.0,5.0,6.0,7.0,7.0,9.0,4.0,10.0,0.0,0.0,0.0,4.0,94.7,20.0,2.0,0.0,55675.0,36789.0,20100.0,32775.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695304,,35000.0,35000.0,35000.0, 36 months,17.99,1265.16,D,D2,Pharmacist ,< 1 year,MORTGAGE,145000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695304,,major_purchase,Major purchase,630xx,MO,25.38,0.0,Sep-2004,740.0,744.0,4.0,,71.0,27.0,1.0,8716.0,13.1,57.0,f,0.0,0.0,13440.7,13440.7,3814.94,2440.9,0.0,7184.86,1293.2748000127,Mar-2017,1265.16,,Sep-2017,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,367721.0,4.0,3.0,2.0,3.0,9.0,140314.0,86.0,5.0,15.0,2768.0,50.0,66400.0,6.0,0.0,10.0,20.0,14143.0,36665.0,18.3,0.0,0.0,132.0,144.0,0.0,0.0,2.0,0.0,,0.0,,0.0,6.0,9.0,12.0,20.0,9.0,23.0,46.0,9.0,27.0,0.0,0.0,0.0,7.0,100.0,0.0,1.0,0.0,467032.0,149030.0,44900.0,176477.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90160432,,9800.0,9800.0,9800.0, 36 months,8.99,311.6,B,B1,GIS Analyst,4 years,RENT,56000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90160432,,credit_card,Credit card refinancing,585xx,ND,17.87,0.0,Jun-2001,665.0,669.0,2.0,43.0,,11.0,0.0,11352.0,57.6,15.0,w,2116.96,2116.96,9031.51,9031.51,7683.04,1348.47,0.0,0.0,0.0,Mar-2019,311.6,Apr-2019,Mar-2019,669.0,665.0,0.0,45.0,1.0,Individual,,,,0.0,0.0,33426.0,1.0,1.0,0.0,1.0,15.0,22074.0,84.0,2.0,6.0,2668.0,72.0,19700.0,6.0,0.0,7.0,7.0,3039.0,4882.0,62.7,0.0,0.0,72.0,56.0,3.0,3.0,0.0,15.0,,2.0,47.0,2.0,6.0,9.0,6.0,6.0,4.0,9.0,10.0,9.0,11.0,0.0,0.0,0.0,2.0,66.7,16.7,0.0,0.0,46140.0,33426.0,13100.0,26440.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90187200,,3600.0,3600.0,3600.0, 36 months,7.59,112.14,A,A3,,,RENT,22260.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90187200,,medical,Medical expenses,951xx,CA,14.89,0.0,May-1976,730.0,734.0,0.0,,72.0,16.0,1.0,8957.0,14.9,27.0,w,0.0,0.0,3745.1996964458003,3745.2,3600.0,145.2,0.0,0.0,0.0,Sep-2017,149.6,,Feb-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,8957.0,3.0,0.0,0.0,1.0,13.0,0.0,,5.0,5.0,2851.0,15.0,60200.0,0.0,2.0,0.0,6.0,560.0,46272.0,15.9,0.0,0.0,128.0,484.0,4.0,4.0,0.0,4.0,,,,0.0,7.0,9.0,11.0,17.0,3.0,16.0,24.0,9.0,16.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,1.0,60200.0,8957.0,55000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581716,,3000.0,3000.0,3000.0, 36 months,7.59,93.45,A,A3,Clean Room,< 1 year,MORTGAGE,80000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581716,,credit_card,Credit card refinancing,469xx,IN,15.86,0.0,Jun-1997,740.0,744.0,3.0,41.0,1.0,17.0,1.0,5290.0,13.0,62.0,w,0.0,0.0,3331.1513730171,3331.15,3000.0,331.15,0.0,0.0,0.0,Dec-2018,996.16,,Nov-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,509754.0,3.0,4.0,3.0,4.0,1.0,45611.0,85.0,0.0,3.0,4336.0,54.0,40600.0,3.0,18.0,6.0,11.0,31860.0,17998.0,19.7,0.0,0.0,161.0,231.0,15.0,1.0,10.0,15.0,,1.0,41.0,0.0,2.0,4.0,5.0,12.0,25.0,11.0,27.0,4.0,17.0,0.0,0.0,0.0,5.0,95.2,20.0,0.0,1.0,555874.0,50901.0,22400.0,53594.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561744,,30000.0,30000.0,30000.0, 36 months,16.99,1069.44,D,D1,Mailhandler,10+ years,RENT,72000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561744,,credit_card,Credit card refinancing,117xx,NY,13.74,0.0,Jun-2000,660.0,664.0,0.0,,,10.0,0.0,26700.0,60.4,25.0,f,0.0,0.0,32289.653039482204,32289.65,30000.0,2289.65,0.0,0.0,0.0,Apr-2017,1970.77,,Jan-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,32151.0,0.0,1.0,1.0,2.0,12.0,5451.0,64.0,1.0,3.0,6782.0,61.0,44200.0,0.0,4.0,0.0,5.0,3215.0,14315.0,63.9,0.0,0.0,172.0,195.0,11.0,11.0,0.0,11.0,,13.0,,0.0,7.0,8.0,7.0,10.0,7.0,9.0,17.0,8.0,10.0,0.0,0.0,0.0,2.0,100.0,28.6,0.0,0.0,52732.0,32151.0,39700.0,8532.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541756,,35000.0,35000.0,35000.0, 60 months,8.99,726.38,B,B1,Network Engineer,8 years,MORTGAGE,185000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541756,,debt_consolidation,Debt consolidation,301xx,GA,11.92,0.0,Apr-1995,715.0,719.0,0.0,,,14.0,0.0,35363.0,40.2,20.0,f,0.0,0.0,39421.830007364704,39421.83,35000.0,4421.83,0.0,0.0,0.0,May-2018,26331.13,,May-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,355669.0,2.0,2.0,1.0,2.0,9.0,56937.0,100.0,2.0,4.0,10166.0,53.0,87900.0,0.0,0.0,1.0,8.0,25405.0,47899.0,42.2,0.0,0.0,257.0,213.0,6.0,6.0,2.0,6.0,,11.0,,0.0,7.0,8.0,10.0,10.0,7.0,11.0,11.0,8.0,14.0,0.0,0.0,0.0,3.0,100.0,10.0,0.0,0.0,424542.0,92300.0,82900.0,65892.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90225384,,4000.0,4000.0,4000.0, 36 months,8.99,127.19,B,B1,Owner,4 years,OWN,15000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90225384,,credit_card,Credit card refinancing,163xx,PA,29.92,0.0,Nov-1998,720.0,724.0,2.0,,87.0,11.0,1.0,10197.0,23.0,20.0,w,863.86,863.86,3686.51,3686.51,3136.14,550.37,0.0,0.0,0.0,Mar-2019,127.19,Apr-2019,Sep-2017,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,14728.0,1.0,1.0,0.0,1.0,22.0,4531.0,56.0,1.0,1.0,1667.0,28.0,44300.0,1.0,0.0,2.0,2.0,1473.0,10631.0,20.7,0.0,0.0,169.0,115.0,1.0,1.0,1.0,1.0,,1.0,,0.0,2.0,5.0,2.0,4.0,3.0,10.0,16.0,5.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,1.0,0.0,52399.0,14728.0,13400.0,8099.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581558,,35000.0,35000.0,34950.0, 36 months,14.49,1204.57,C,C4,Senior Confidential Specialist,10+ years,MORTGAGE,161000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581558,,debt_consolidation,Debt consolidation,220xx,VA,16.43,0.0,Feb-1980,665.0,669.0,1.0,31.0,,17.0,0.0,171391.0,78.4,38.0,f,8096.21,8084.65,35121.89,35071.72,26903.79,8022.41,195.69,0.0,0.0,Mar-2019,1204.57,Apr-2019,Mar-2019,679.0,675.0,0.0,31.0,1.0,Individual,,,,0.0,0.0,595158.0,1.0,1.0,0.0,2.0,13.0,26603.0,89.0,2.0,5.0,5366.0,82.0,198000.0,2.0,4.0,8.0,8.0,35009.0,4473.0,82.4,0.0,0.0,96.0,439.0,3.0,3.0,6.0,3.0,,3.0,,1.0,9.0,14.0,10.0,15.0,6.0,15.0,24.0,14.0,17.0,0.0,0.0,0.0,3.0,97.3,70.0,0.0,0.0,637400.0,197994.0,25400.0,30000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521565,,12000.0,12000.0,12000.0, 36 months,9.49,384.34,B,B2,Business Development Manager,2 years,MORTGAGE,150000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521565,,debt_consolidation,Debt consolidation,483xx,MI,25.3,0.0,Dec-1978,700.0,704.0,1.0,38.0,,26.0,0.0,72120.0,38.6,44.0,w,2608.17,2608.17,11139.53,11139.53,9391.83,1747.7,0.0,0.0,0.0,Mar-2019,384.34,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,576.0,277465.0,3.0,8.0,3.0,7.0,1.0,94852.0,91.0,2.0,2.0,7315.0,66.0,126500.0,0.0,3.0,3.0,9.0,10672.0,36105.0,42.3,0.0,0.0,150.0,453.0,1.0,1.0,1.0,11.0,38.0,5.0,38.0,0.0,7.0,14.0,7.0,11.0,18.0,16.0,24.0,14.0,26.0,0.0,0.0,0.0,5.0,95.5,42.9,0.0,0.0,394159.0,167221.0,62600.0,104827.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621785,,23350.0,23350.0,23350.0, 36 months,16.99,832.38,D,D1,Transportation Supervisor,10+ years,RENT,90000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621785,,debt_consolidation,Debt consolidation,956xx,CA,20.27,0.0,Sep-2000,675.0,679.0,2.0,50.0,,10.0,0.0,19478.0,75.5,24.0,w,0.0,0.0,18367.45,18367.45,12846.2,5521.25,0.0,0.0,0.0,Aug-2018,832.38,,Dec-2018,499.0,0.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,49333.0,0.0,2.0,0.0,1.0,14.0,29855.0,73.0,0.0,4.0,3243.0,74.0,25800.0,2.0,1.0,3.0,5.0,4933.0,71.0,98.5,0.0,0.0,110.0,192.0,14.0,14.0,3.0,117.0,,0.0,,1.0,2.0,7.0,2.0,4.0,11.0,8.0,10.0,7.0,10.0,0.0,0.0,0.0,0.0,91.7,100.0,0.0,0.0,66797.0,49333.0,4700.0,40997.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90440267,,11725.0,11725.0,11725.0, 36 months,9.49,375.54,B,B2,Cabinet assembler,10+ years,MORTGAGE,25000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90440267,,credit_card,Credit card refinancing,656xx,MO,19.64,0.0,Dec-2005,710.0,714.0,0.0,,,6.0,0.0,9287.0,72.6,13.0,w,2547.23,2547.23,10884.48,10884.48,9177.77,1706.71,0.0,0.0,0.0,Mar-2019,375.54,Apr-2019,Mar-2019,774.0,770.0,0.0,,1.0,Joint App,39000.0,19.72,Not Verified,0.0,0.0,72821.0,0.0,1.0,0.0,1.0,24.0,2252.0,38.0,0.0,0.0,3719.0,61.0,12800.0,0.0,0.0,0.0,1.0,12137.0,3513.0,72.6,0.0,0.0,87.0,122.0,60.0,24.0,2.0,60.0,,,,0.0,3.0,3.0,4.0,5.0,4.0,4.0,7.0,3.0,6.0,0.0,0.0,0.0,0.0,100.0,75.0,0.0,0.0,87552.0,11539.0,12800.0,6002.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88763817,,10000.0,10000.0,10000.0, 36 months,7.99,313.32,A,A4,Owner,3 years,RENT,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88763817,,credit_card,Credit card refinancing,784xx,TX,15.68,1.0,Jan-1988,680.0,684.0,0.0,23.0,,5.0,0.0,7766.0,65.3,39.0,w,0.0,0.0,11143.0981665754,11143.1,10000.0,1143.1,0.0,0.0,0.0,Nov-2018,3627.86,,Mar-2019,684.0,680.0,0.0,39.0,1.0,Individual,,,,0.0,0.0,32330.0,0.0,1.0,2.0,4.0,12.0,24564.0,,1.0,2.0,2990.0,65.0,11900.0,2.0,2.0,2.0,6.0,6466.0,1562.0,81.4,0.0,0.0,344.0,198.0,12.0,12.0,2.0,12.0,23.0,12.0,23.0,1.0,3.0,4.0,3.0,5.0,30.0,4.0,7.0,4.0,5.0,0.0,0.0,0.0,3.0,84.6,66.7,0.0,0.0,49972.0,32330.0,8400.0,38072.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671748,,18000.0,18000.0,18000.0, 36 months,7.99,563.98,A,A4,,,MORTGAGE,76500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671748,,debt_consolidation,Debt consolidation,042xx,ME,14.92,0.0,May-1982,780.0,784.0,2.0,,,11.0,0.0,162098.0,20.5,17.0,w,3844.45,3844.45,16347.43,16347.43,14155.55,2191.88,0.0,0.0,0.0,Mar-2019,563.98,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,162098.0,4.0,0.0,0.0,0.0,123.0,0.0,,5.0,5.0,6312.0,21.0,209100.0,2.0,0.0,4.0,5.0,14736.0,37323.0,19.9,0.0,0.0,123.0,412.0,2.0,2.0,2.0,4.0,,2.0,,0.0,5.0,8.0,6.0,8.0,1.0,11.0,14.0,8.0,11.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,0.0,209100.0,162098.0,46600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641606,,40000.0,40000.0,40000.0, 36 months,7.59,1245.91,A,A3,Branch Chief,10+ years,MORTGAGE,129000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641606,,home_improvement,Home improvement,871xx,NM,7.03,0.0,Jan-1998,805.0,809.0,0.0,,,9.0,0.0,8991.0,21.3,14.0,w,0.0,0.0,42076.1822589734,42076.18,40000.0,2076.18,0.0,0.0,0.0,Jul-2017,32125.77,,Jul-2018,824.0,820.0,0.0,,1.0,Individual,,,,0.0,0.0,305799.0,0.0,2.0,0.0,0.0,46.0,5792.0,11.0,0.0,1.0,5519.0,16.0,42300.0,0.0,2.0,0.0,1.0,33978.0,33309.0,21.3,0.0,0.0,157.0,224.0,20.0,20.0,4.0,20.0,,,,0.0,3.0,3.0,4.0,4.0,4.0,4.0,6.0,3.0,9.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,495200.0,14783.0,42300.0,51100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621550,,20000.0,20000.0,20000.0, 60 months,9.49,419.94,B,B2,stocker/picker,10+ years,MORTGAGE,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621550,,debt_consolidation,Debt consolidation,442xx,OH,11.56,1.0,Nov-2004,725.0,729.0,0.0,13.0,,17.0,0.0,18391.0,26.2,29.0,w,11505.05,11505.05,12167.72,12167.72,8494.95,3672.77,0.0,0.0,0.0,Mar-2019,419.94,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,107172.0,0.0,0.0,0.0,0.0,38.0,0.0,,0.0,2.0,3706.0,26.0,70300.0,0.0,1.0,0.0,2.0,6698.0,40819.0,30.6,0.0,0.0,136.0,142.0,18.0,18.0,1.0,26.0,13.0,,13.0,0.0,11.0,14.0,11.0,15.0,2.0,16.0,25.0,14.0,17.0,0.0,0.0,0.0,0.0,93.1,0.0,0.0,0.0,177500.0,18391.0,58800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681487,,4800.0,4800.0,4800.0, 36 months,8.99,152.62,B,B1,Poker Cashier,3 years,MORTGAGE,35000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681487,,debt_consolidation,Debt consolidation,945xx,CA,13.12,0.0,Aug-2000,660.0,664.0,0.0,67.0,,7.0,0.0,15260.0,63.0,16.0,w,0.0,0.0,5086.2452806399,5086.25,4800.0,286.25,0.0,0.0,0.0,Jul-2018,286.25,,Mar-2019,679.0,675.0,0.0,90.0,1.0,Individual,,,,0.0,1142.0,15260.0,0.0,0.0,0.0,0.0,68.0,0.0,,1.0,1.0,7066.0,63.0,20600.0,0.0,1.0,0.0,1.0,2180.0,2011.0,78.3,0.0,0.0,146.0,193.0,7.0,7.0,2.0,36.0,67.0,,67.0,1.0,4.0,7.0,4.0,6.0,2.0,7.0,12.0,7.0,7.0,0.0,0.0,0.0,1.0,86.7,75.0,0.0,0.0,20600.0,15260.0,14400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90256191,,14700.0,14700.0,14700.0, 36 months,21.49,557.53,D,D5,Custodial,2 years,OWN,35000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90256191,,credit_card,Credit card refinancing,482xx,MI,31.76,0.0,May-2007,675.0,679.0,0.0,,,8.0,0.0,13586.0,56.6,17.0,w,0.0,0.0,7720.35,7720.35,3543.05,2572.23,0.0,1605.07,288.9126,Sep-2017,557.53,,Mar-2018,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,17467.0,1.0,1.0,0.0,1.0,16.0,3881.0,43.0,3.0,6.0,5748.0,53.0,24000.0,0.0,1.0,1.0,7.0,2183.0,5999.0,66.7,0.0,0.0,16.0,112.0,5.0,5.0,0.0,5.0,,10.0,,0.0,5.0,6.0,5.0,12.0,1.0,7.0,16.0,6.0,8.0,0.0,0.0,0.0,3.0,100.0,40.0,0.0,0.0,33000.0,17467.0,18000.0,9000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90239923,,9600.0,9600.0,9600.0, 36 months,13.49,325.74,C,C2,Job Coach aide,< 1 year,RENT,30000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90239923,,credit_card,Credit card refinancing,959xx,CA,31.68,0.0,Dec-2005,700.0,704.0,0.0,40.0,,12.0,0.0,3965.0,37.4,16.0,w,0.0,0.0,4900.26,4900.26,2781.66,1167.73,0.0,950.87,171.1566,Oct-2017,325.74,,Apr-2018,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,42248.0,2.0,2.0,1.0,2.0,6.0,38283.0,85.0,5.0,7.0,1764.0,76.0,10600.0,8.0,2.0,15.0,9.0,3521.0,414.0,82.0,0.0,0.0,101.0,34.0,1.0,1.0,0.0,7.0,,2.0,,0.0,2.0,4.0,2.0,2.0,6.0,9.0,9.0,4.0,12.0,0.0,0.0,0.0,6.0,100.0,50.0,0.0,0.0,55622.0,42248.0,2300.0,45022.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90388337,,40000.0,40000.0,40000.0, 60 months,13.49,920.19,C,C2,Human Resources,9 years,MORTGAGE,112517.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90388337,,debt_consolidation,Debt consolidation,200xx,DC,3.7,0.0,Aug-2005,795.0,799.0,0.0,,,17.0,0.0,5020.0,3.9,30.0,w,23973.21,23973.21,26655.53,26655.53,16026.79,10628.74,0.0,0.0,0.0,Mar-2019,920.19,Apr-2019,Mar-2019,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,401855.0,0.0,1.0,0.0,0.0,133.0,27837.0,80.0,2.0,2.0,2757.0,20.0,129500.0,0.0,0.0,2.0,3.0,23639.0,118080.0,4.1,0.0,0.0,133.0,100.0,9.0,9.0,4.0,9.0,,10.0,,0.0,3.0,3.0,12.0,16.0,2.0,15.0,22.0,3.0,17.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,539334.0,32857.0,123100.0,34834.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90461599,,8400.0,8400.0,8400.0, 36 months,6.99,259.33,A,A2,Secretary,10+ years,OWN,62000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461599,,credit_card,Credit card refinancing,932xx,CA,14.71,0.0,Feb-1984,680.0,684.0,0.0,40.0,,10.0,0.0,6853.0,41.5,36.0,w,0.0,0.0,9266.4802945577,9266.48,8400.0,866.48,0.0,0.0,0.0,Jan-2019,2527.16,,Mar-2019,724.0,720.0,0.0,49.0,1.0,Individual,,,,0.0,25987.0,163166.0,0.0,1.0,0.0,0.0,35.0,19825.0,,0.0,2.0,2728.0,42.0,16500.0,0.0,1.0,0.0,2.0,23309.0,6464.0,43.8,0.0,0.0,173.0,391.0,23.0,23.0,5.0,23.0,49.0,16.0,49.0,3.0,3.0,4.0,3.0,11.0,5.0,8.0,25.0,4.0,10.0,0.0,0.0,0.0,0.0,88.9,66.7,0.0,0.0,203813.0,26678.0,11500.0,36243.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191113,,1500.0,1500.0,1500.0, 36 months,12.79,50.39,C,C1,Busniess Support,1 year,OWN,26000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191113,,debt_consolidation,Debt consolidation,752xx,TX,13.25,0.0,Sep-2004,665.0,669.0,1.0,,,8.0,0.0,367.0,18.4,10.0,w,338.13,338.13,1460.24,1460.24,1161.87,298.37,0.0,0.0,0.0,Mar-2019,50.39,Apr-2019,Mar-2019,629.0,625.0,2.0,,1.0,Individual,,,,0.0,10219.0,62865.0,1.0,5.0,0.0,0.0,26.0,62498.0,107.0,1.0,1.0,367.0,104.0,2000.0,0.0,0.0,2.0,1.0,8981.0,133.0,73.4,0.0,0.0,144.0,112.0,2.0,2.0,0.0,2.0,,2.0,,0.0,1.0,1.0,1.0,1.0,6.0,3.0,4.0,1.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,60558.0,62865.0,500.0,58558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611311,,35000.0,35000.0,35000.0, 36 months,19.99,1300.55,D,D4,E-7,10+ years,RENT,105640.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611311,,debt_consolidation,Debt consolidation,963xx,FL,20.99,0.0,Apr-2006,680.0,684.0,1.0,35.0,,8.0,0.0,24021.0,64.1,22.0,w,8526.2,8526.2,37677.08,37677.08,26473.8,11203.28,0.0,0.0,0.0,Mar-2019,1300.55,Apr-2019,Mar-2019,659.0,655.0,0.0,35.0,1.0,Individual,,,,0.0,92.0,47377.0,1.0,2.0,0.0,1.0,16.0,23356.0,54.0,3.0,3.0,891.0,59.0,37500.0,0.0,3.0,1.0,4.0,5922.0,109.0,89.1,0.0,0.0,125.0,50.0,3.0,3.0,0.0,42.0,35.0,3.0,35.0,1.0,1.0,6.0,1.0,2.0,15.0,6.0,7.0,6.0,8.0,0.0,0.0,0.0,3.0,95.5,100.0,0.0,0.0,80963.0,47377.0,1000.0,43463.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581199,,14000.0,14000.0,14000.0, 36 months,16.99,499.07,D,D1,Senior CAD Designer,10+ years,OWN,68000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581199,,moving,Moving and relocation,805xx,CO,17.72,0.0,Jul-2005,665.0,669.0,0.0,,,11.0,0.0,16539.0,71.6,27.0,f,3303.69,3303.69,14459.82,14459.82,10696.31,3763.51,0.0,0.0,0.0,Mar-2019,499.07,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,34521.0,3.0,2.0,1.0,2.0,5.0,17982.0,56.0,2.0,4.0,4027.0,62.0,23100.0,0.0,2.0,0.0,6.0,3836.0,2167.0,81.9,0.0,0.0,77.0,134.0,1.0,1.0,0.0,1.0,,,,0.0,3.0,6.0,5.0,8.0,11.0,9.0,16.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,66.7,0.0,0.0,55289.0,34521.0,12000.0,32189.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90281106,,5000.0,5000.0,5000.0, 36 months,8.59,158.05,A,A5,,,OWN,40000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90281106,,credit_card,Credit card refinancing,857xx,AZ,15.36,0.0,Nov-2006,700.0,704.0,1.0,,,4.0,0.0,5753.0,63.9,17.0,w,0.0,0.0,1719.86,1719.86,1394.02,325.84,0.0,0.0,0.0,Aug-2017,158.05,,Aug-2017,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,15419.0,1.0,1.0,1.0,1.0,3.0,9666.0,92.0,0.0,2.0,4718.0,79.0,9000.0,0.0,1.0,2.0,4.0,3855.0,282.0,94.4,0.0,0.0,3.0,115.0,13.0,3.0,3.0,18.0,,3.0,,0.0,1.0,3.0,1.0,9.0,1.0,3.0,13.0,3.0,4.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,19533.0,15419.0,5000.0,10533.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90081916,,5400.0,5400.0,5400.0, 36 months,7.99,169.2,A,A4,Firefighter,10+ years,MORTGAGE,78500.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90081916,,home_improvement,Home improvement,616xx,IL,5.26,1.0,Dec-1992,690.0,694.0,0.0,12.0,,8.0,0.0,5100.0,30.4,17.0,w,0.0,0.0,5852.7657693124,5852.77,5400.0,452.77,0.0,0.0,0.0,Jan-2018,3486.37,,Jan-2018,684.0,680.0,0.0,50.0,1.0,Individual,,,,0.0,1132.0,119629.0,0.0,2.0,0.0,0.0,26.0,6770.0,44.0,0.0,2.0,1724.0,37.0,16800.0,0.0,0.0,1.0,2.0,14954.0,7680.0,29.5,0.0,0.0,127.0,285.0,14.0,14.0,2.0,22.0,12.0,7.0,12.0,1.0,2.0,4.0,2.0,2.0,9.0,5.0,6.0,4.0,8.0,0.0,0.0,0.0,0.0,76.5,0.0,0.0,0.0,146205.0,11870.0,10900.0,15405.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90135483,,8200.0,8200.0,8200.0, 36 months,13.49,278.23,C,C2,Fabrication Specialist,< 1 year,MORTGAGE,50000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90135483,,car,Car financing,152xx,PA,22.61,0.0,Feb-2004,660.0,664.0,1.0,,81.0,12.0,1.0,10697.0,57.8,19.0,w,0.0,0.0,8717.81,8717.81,8200.0,517.81,0.0,0.0,0.0,Apr-2017,7332.81,,Jun-2017,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,39268.0,1.0,5.0,0.0,1.0,18.0,28571.0,60.0,1.0,1.0,3635.0,60.0,18500.0,0.0,0.0,1.0,2.0,3570.0,5003.0,65.7,0.0,0.0,131.0,140.0,3.0,3.0,2.0,44.0,,3.0,,0.0,3.0,4.0,4.0,6.0,7.0,7.0,10.0,4.0,12.0,0.0,0.0,0.0,1.0,100.0,75.0,1.0,0.0,65899.0,39268.0,14600.0,47399.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90073718,,12000.0,12000.0,12000.0, 36 months,25.29,478.97,E,E5,manager,5 years,RENT,72000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90073718,,other,Other,112xx,NY,10.1,0.0,Feb-2012,680.0,684.0,1.0,,,19.0,0.0,34915.0,27.6,23.0,w,0.0,0.0,8778.49,8778.49,4249.13,3397.53,0.0,1131.83,101.8647,Feb-2018,478.97,,Aug-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,34915.0,0.0,0.0,0.0,0.0,33.0,0.0,,4.0,7.0,11315.0,28.0,126500.0,1.0,0.0,2.0,7.0,1838.0,85587.0,29.0,0.0,0.0,33.0,55.0,7.0,7.0,0.0,7.0,,0.0,,0.0,12.0,13.0,18.0,19.0,1.0,19.0,20.0,13.0,19.0,0.0,0.0,0.0,4.0,100.0,16.7,0.0,0.0,126500.0,34915.0,120500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90096019,,15000.0,15000.0,15000.0, 36 months,17.99,542.22,D,D2,Truck driver,2 years,RENT,62000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90096019,,debt_consolidation,Debt consolidation,233xx,VA,3.99,0.0,Sep-2011,665.0,669.0,1.0,,,6.0,0.0,4277.0,44.6,7.0,w,3592.78,3592.78,15709.39,15709.39,11407.22,4302.17,0.0,0.0,0.0,Mar-2019,542.22,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,530.0,8276.0,0.0,2.0,0.0,0.0,36.0,3999.0,85.0,2.0,3.0,2332.0,58.0,9600.0,3.0,0.0,4.0,3.0,1379.0,3460.0,51.3,0.0,0.0,60.0,25.0,8.0,8.0,0.0,8.0,,2.0,,0.0,3.0,4.0,3.0,3.0,3.0,4.0,4.0,4.0,6.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,14331.0,8276.0,7100.0,4731.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90601565,,25000.0,25000.0,25000.0, 60 months,8.99,518.84,B,B1,Electrical Engineer,8 years,RENT,120000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90601565,,debt_consolidation,Debt consolidation,773xx,TX,8.39,0.0,Oct-2004,795.0,799.0,1.0,,,12.0,0.0,4700.0,12.6,26.0,w,0.0,0.0,26708.064681077798,26708.06,25000.0,1708.06,0.0,0.0,0.0,Jul-2017,22569.83,,Dec-2018,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,34856.0,1.0,6.0,0.0,0.0,31.0,30156.0,58.0,1.0,2.0,2416.0,39.0,37400.0,0.0,0.0,3.0,2.0,2905.0,31600.0,12.9,0.0,0.0,143.0,130.0,1.0,1.0,1.0,1.0,,2.0,,0.0,3.0,3.0,4.0,6.0,15.0,6.0,10.0,3.0,12.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,89879.0,34856.0,36300.0,52479.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90661574,,19200.0,19200.0,19200.0, 36 months,8.99,610.47,B,B1,Information Assurance Manager,7 years,MORTGAGE,150000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661574,,debt_consolidation,Debt consolidation,226xx,VA,13.48,0.0,Oct-1995,670.0,674.0,1.0,44.0,63.0,13.0,4.0,17015.0,90.5,34.0,w,0.0,0.0,20956.4329851164,20956.43,19200.0,1756.43,0.0,0.0,0.0,Dec-2017,13029.91,,Mar-2019,734.0,730.0,0.0,44.0,1.0,Individual,,,,0.0,0.0,410009.0,0.0,3.0,2.0,4.0,7.0,33100.0,84.0,0.0,1.0,8949.0,86.0,18800.0,3.0,4.0,3.0,5.0,31539.0,297.0,98.0,0.0,0.0,223.0,251.0,21.0,7.0,4.0,115.0,81.0,4.0,81.0,2.0,2.0,5.0,2.0,5.0,16.0,6.0,12.0,5.0,13.0,0.0,0.0,0.0,2.0,88.2,100.0,0.0,1.0,464342.0,53517.0,14700.0,39568.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693742,,8750.0,8750.0,8750.0, 36 months,8.99,278.21,B,B1,Payroll Manager,< 1 year,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693742,,debt_consolidation,Debt consolidation,221xx,VA,18.19,0.0,Aug-1994,720.0,724.0,0.0,,,19.0,0.0,25543.0,41.5,39.0,w,1890.28,1890.28,8066.41,8066.41,6859.72,1206.69,0.0,0.0,0.0,Mar-2019,280.9,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,68946.0,2.0,3.0,0.0,1.0,13.0,43403.0,75.0,2.0,9.0,5603.0,58.0,61500.0,1.0,1.0,0.0,10.0,3629.0,14362.0,59.0,0.0,0.0,154.0,265.0,1.0,1.0,2.0,1.0,,13.0,,0.0,6.0,8.0,8.0,13.0,10.0,16.0,27.0,8.0,19.0,0.0,0.0,0.0,2.0,100.0,62.5,0.0,0.0,119322.0,68946.0,35000.0,57822.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90438251,,20000.0,20000.0,20000.0, 36 months,9.49,640.57,B,B2,Controller,2 years,RENT,75000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90438251,,other,Other,800xx,CO,22.64,0.0,Oct-2003,675.0,679.0,0.0,,53.0,20.0,1.0,20007.0,55.6,33.0,w,4345.27,4345.27,18565.99,18565.99,15654.73,2911.26,0.0,0.0,0.0,Mar-2019,640.57,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,996.0,74940.0,2.0,7.0,1.0,1.0,5.0,54933.0,110.0,3.0,7.0,5319.0,91.0,176400.0,0.0,0.0,3.0,8.0,3747.0,149572.0,52.5,0.0,0.0,130.0,155.0,1.0,1.0,0.0,13.0,,5.0,,0.0,4.0,9.0,5.0,8.0,13.0,13.0,20.0,9.0,20.0,0.0,0.0,0.0,4.0,100.0,40.0,1.0,0.0,226438.0,74940.0,160300.0,50038.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521491,,4800.0,4800.0,4800.0, 36 months,10.99,157.13,B,B4,Sales assistant,3 years,RENT,52000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521491,,debt_consolidation,Debt consolidation,233xx,VA,23.98,0.0,Mar-2000,675.0,679.0,0.0,63.0,36.0,13.0,1.0,3223.0,20.8,39.0,w,0.0,0.0,5076.4230994365,5076.42,4800.0,276.42,0.0,0.0,0.0,Apr-2017,4293.7,,Dec-2017,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,49717.0,1.0,7.0,1.0,1.0,0.0,46494.0,36.0,2.0,2.0,1612.0,30.0,15500.0,0.0,1.0,2.0,3.0,4520.0,10401.0,20.0,0.0,0.0,180.0,198.0,10.0,0.0,0.0,12.0,,10.0,,0.0,2.0,3.0,2.0,12.0,12.0,6.0,27.0,3.0,13.0,0.0,0.0,0.0,3.0,97.2,0.0,1.0,0.0,77813.0,49717.0,13000.0,62313.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451413,,32000.0,32000.0,32000.0, 60 months,13.99,744.42,C,C3,Supervisor/Clinical Psychologist,1 year,MORTGAGE,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451413,,credit_card,Credit card refinancing,923xx,CA,26.79,2.0,Dec-2003,675.0,679.0,1.0,14.0,64.0,16.0,3.0,16334.0,39.3,29.0,w,19273.77,19273.77,21563.31,21563.31,12726.23,8837.08,0.0,0.0,0.0,Mar-2019,744.42,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,993209.0,3.0,5.0,2.0,5.0,4.0,976875.0,57.0,2.0,5.0,9639.0,48.0,41600.0,2.0,2.0,4.0,10.0,62076.0,15366.0,51.5,0.0,0.0,123.0,153.0,5.0,4.0,0.0,6.0,14.0,4.0,14.0,0.0,5.0,5.0,8.0,8.0,18.0,11.0,11.0,5.0,15.0,0.0,0.0,0.0,4.0,89.7,25.0,0.0,3.0,956199.0,993209.0,31700.0,914599.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90413417,,17000.0,17000.0,17000.0, 60 months,8.99,352.81,B,B1,Registered nurse,2 years,MORTGAGE,67000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413417,,debt_consolidation,Debt consolidation,853xx,AZ,28.03,0.0,Jun-2008,690.0,694.0,0.0,,,8.0,0.0,10148.0,86.0,12.0,w,9727.59,9727.59,10223.0,10223.0,7272.41,2950.59,0.0,0.0,0.0,Mar-2019,352.81,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Joint App,152000.0,13.35,Not Verified,0.0,0.0,433494.0,2.0,3.0,1.0,2.0,4.0,71860.0,98.0,0.0,1.0,5610.0,92.0,11800.0,0.0,4.0,2.0,4.0,61928.0,1652.0,86.0,0.0,0.0,44.0,99.0,19.0,4.0,1.0,19.0,,8.0,,0.0,3.0,3.0,3.0,5.0,5.0,4.0,6.0,3.0,8.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,0.0,454953.0,82008.0,11800.0,90202.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171603,,35000.0,35000.0,35000.0, 36 months,11.49,1154.0,B,B5,Construction management ,10+ years,OWN,100000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171603,,debt_consolidation,Debt consolidation,600xx,IL,18.91,1.0,Jan-2003,665.0,669.0,0.0,20.0,,20.0,0.0,32977.0,60.1,46.0,w,0.0,0.0,16134.03,16134.03,9451.49,3220.17,0.0,3462.37,623.2266,Sep-2017,1154.0,,Mar-2018,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,208689.0,0.0,2.0,0.0,1.0,15.0,21337.0,48.0,1.0,3.0,9552.0,55.0,54900.0,0.0,1.0,0.0,4.0,10984.0,9625.0,74.8,0.0,0.0,147.0,164.0,11.0,11.0,4.0,20.0,,15.0,,0.0,9.0,14.0,10.0,20.0,8.0,17.0,33.0,14.0,20.0,0.0,0.0,0.0,1.0,97.8,40.0,0.0,0.0,267610.0,54314.0,38200.0,44569.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693648,,12500.0,12500.0,12500.0, 36 months,8.99,397.44,B,B1,Administrative Officer 2,10+ years,MORTGAGE,80000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693648,,debt_consolidation,Debt consolidation,430xx,OH,23.31,0.0,Mar-1998,805.0,809.0,0.0,,,12.0,0.0,9458.0,16.9,32.0,w,0.0,0.0,13442.3115729842,13442.31,12500.0,942.31,0.0,0.0,0.0,Sep-2017,9436.7,,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,0.0,218649.0,0.0,4.0,2.0,2.0,8.0,72716.0,80.0,1.0,2.0,6591.0,56.0,55800.0,2.0,3.0,1.0,4.0,18221.0,39244.0,17.9,0.0,0.0,125.0,222.0,9.0,8.0,6.0,9.0,,11.0,,0.0,2.0,3.0,5.0,10.0,13.0,7.0,13.0,3.0,12.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,296315.0,82174.0,47800.0,90601.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427712,,10500.0,10500.0,10500.0, 36 months,13.49,356.27,C,C2,Taxi Driver,4 years,RENT,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427712,,home_improvement,Home improvement,328xx,FL,20.76,0.0,Jul-2007,665.0,669.0,0.0,25.0,99.0,14.0,1.0,19044.0,49.5,27.0,w,2385.42,2385.42,10323.96,10323.96,8114.58,2209.38,0.0,0.0,0.0,Mar-2019,356.27,Apr-2019,Mar-2019,674.0,670.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,22662.0,2.0,2.0,2.0,4.0,4.0,3618.0,29.0,2.0,2.0,5332.0,44.0,38500.0,0.0,0.0,0.0,6.0,1619.0,16404.0,50.7,0.0,0.0,105.0,110.0,5.0,4.0,1.0,5.0,,,,1.0,9.0,11.0,9.0,11.0,10.0,12.0,16.0,11.0,14.0,0.0,0.0,0.0,4.0,96.3,22.2,0.0,1.0,51073.0,22662.0,33300.0,12573.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695598,,20000.0,20000.0,20000.0, 60 months,24.49,581.07,E,E3,Mortgage Loan Originator,1 year,MORTGAGE,82502.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695598,,debt_consolidation,Debt consolidation,294xx,SC,7.71,0.0,Feb-2005,680.0,684.0,1.0,,93.0,9.0,1.0,5117.0,53.3,14.0,f,13251.23,13251.23,16864.29,16864.29,6748.77,10115.52,0.0,0.0,0.0,Mar-2019,581.07,Apr-2019,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,13450.0,3.0,1.0,1.0,1.0,9.0,8333.0,86.0,3.0,5.0,1252.0,70.0,9600.0,1.0,3.0,2.0,6.0,1494.0,2427.0,63.2,0.0,0.0,127.0,139.0,0.0,0.0,0.0,21.0,,4.0,,0.0,5.0,8.0,5.0,6.0,4.0,8.0,10.0,8.0,9.0,0.0,0.0,0.0,4.0,100.0,20.0,1.0,0.0,19257.0,13450.0,6600.0,9657.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90095819,,35200.0,35200.0,35200.0, 36 months,17.99,1272.39,D,D2,Production Operator ,10+ years,RENT,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90095819,,credit_card,Credit card refinancing,622xx,IL,27.19,0.0,Jan-2006,750.0,754.0,0.0,,,13.0,0.0,19933.0,24.5,23.0,w,0.0,0.0,36360.632652153196,36360.63,35200.0,1160.63,0.0,0.0,0.0,Dec-2016,35123.42,,Apr-2017,809.0,805.0,0.0,,1.0,Individual,,,,0.0,0.0,66292.0,0.0,4.0,1.0,1.0,10.0,46359.0,59.0,4.0,4.0,7499.0,42.0,81400.0,0.0,11.0,1.0,5.0,5099.0,52858.0,24.1,0.0,0.0,116.0,128.0,8.0,8.0,0.0,12.0,,12.0,,0.0,4.0,5.0,7.0,7.0,9.0,9.0,14.0,5.0,13.0,0.0,0.0,0.0,5.0,100.0,14.3,0.0,0.0,159450.0,66292.0,69600.0,78050.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541479,,2500.0,2500.0,2500.0, 36 months,13.99,85.44,C,C3,Presentation Team Member,9 years,RENT,22000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541479,,other,Other,750xx,TX,26.02,0.0,Sep-2005,665.0,669.0,0.0,,,7.0,0.0,2585.0,48.8,13.0,w,0.0,0.0,2984.3508760094,2984.35,2500.0,484.35,0.0,0.0,0.0,Aug-2018,1183.75,,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,369.0,12665.0,0.0,1.0,0.0,1.0,18.0,10080.0,67.0,1.0,5.0,468.0,62.0,5300.0,2.0,0.0,1.0,6.0,1809.0,275.0,75.0,0.0,0.0,132.0,34.0,9.0,9.0,0.0,17.0,,3.0,,0.0,2.0,5.0,2.0,2.0,7.0,6.0,6.0,5.0,7.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,20420.0,12665.0,1100.0,15120.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621599,,7275.0,7275.0,7275.0, 36 months,17.99,262.98,D,D2,,,OWN,22753.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621599,,debt_consolidation,Debt consolidation,433xx,OH,29.59,0.0,Jan-1998,665.0,669.0,1.0,,4.0,15.0,8.0,4447.0,25.9,19.0,w,0.0,0.0,7521.8367538754,7521.84,7275.0,246.84,0.0,0.0,0.0,Dec-2016,7266.13,,Mar-2019,549.0,545.0,1.0,,1.0,Individual,,,,0.0,2348.0,22463.0,0.0,1.0,0.0,1.0,16.0,4405.0,70.0,2.0,5.0,995.0,38.0,17200.0,2.0,0.0,5.0,6.0,1728.0,10524.0,21.5,0.0,0.0,41.0,224.0,7.0,7.0,1.0,15.0,,4.0,,0.0,7.0,11.0,7.0,10.0,2.0,13.0,16.0,11.0,15.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,7.0,42942.0,8852.0,13400.0,6300.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88957928,,5000.0,5000.0,5000.0, 36 months,8.99,158.98,B,B1,,,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88957928,,credit_card,Credit card refinancing,554xx,MN,10.15,0.0,Jul-1995,665.0,669.0,0.0,32.0,70.0,13.0,3.0,7149.0,51.8,36.0,w,0.0,0.0,5263.0391292976,5263.04,5000.0,263.04,0.0,0.0,0.0,May-2017,4311.66,,Mar-2019,694.0,690.0,1.0,48.0,1.0,Individual,,,,0.0,1122.0,76587.0,1.0,1.0,0.0,1.0,14.0,2498.0,58.0,3.0,5.0,3794.0,53.0,13800.0,1.0,0.0,1.0,7.0,6962.0,3059.0,68.5,0.0,0.0,152.0,254.0,1.0,1.0,1.0,16.0,32.0,10.0,32.0,9.0,3.0,6.0,4.0,10.0,14.0,11.0,20.0,6.0,13.0,0.0,0.0,0.0,4.0,69.4,66.7,0.0,2.0,88098.0,9647.0,9700.0,4298.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551649,,15000.0,15000.0,15000.0, 36 months,8.59,474.14,A,A5,,,OWN,33000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551649,,credit_card,Credit card refinancing,462xx,IN,30.91,0.0,Dec-1989,780.0,784.0,0.0,27.0,,11.0,0.0,12850.0,15.3,20.0,w,3225.91,3225.91,13742.9,13742.9,11774.09,1968.81,0.0,0.0,0.0,Mar-2019,474.14,Apr-2019,Mar-2019,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,28575.0,0.0,1.0,0.0,0.0,36.0,15725.0,62.0,0.0,1.0,3835.0,26.0,83800.0,0.0,4.0,0.0,1.0,2598.0,62923.0,14.5,0.0,0.0,177.0,321.0,15.0,15.0,2.0,47.0,,,,0.0,6.0,9.0,7.0,9.0,3.0,10.0,14.0,9.0,11.0,0.0,0.0,0.0,0.0,95.0,0.0,0.0,0.0,109117.0,28575.0,73600.0,25317.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501608,,7000.0,7000.0,7000.0, 36 months,11.49,230.8,B,B5,Waiter,9 years,RENT,44000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501608,,debt_consolidation,Debt consolidation,104xx,NY,11.62,0.0,Sep-2010,685.0,689.0,0.0,,,6.0,0.0,4508.0,82.0,7.0,w,1555.41,1555.41,6682.03,6682.03,5444.59,1237.44,0.0,0.0,0.0,Mar-2019,230.8,Apr-2019,Mar-2019,639.0,635.0,0.0,,1.0,Individual,,,,0.0,0.0,7892.0,0.0,1.0,0.0,1.0,15.0,3384.0,71.0,0.0,0.0,1529.0,77.0,5500.0,0.0,0.0,0.0,1.0,1315.0,222.0,94.8,0.0,0.0,15.0,72.0,33.0,15.0,0.0,33.0,,14.0,,0.0,4.0,5.0,4.0,5.0,1.0,5.0,6.0,5.0,6.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,10300.0,7892.0,4300.0,4800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90179895,,11050.0,11050.0,11050.0, 36 months,18.99,405.0,D,D3,Assistant Branch Manager,2 years,RENT,60000.0,Source Verified,Oct-2016,In Grace Period,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90179895,,house,Home buying,212xx,MD,24.26,0.0,Aug-1999,675.0,679.0,0.0,,69.0,7.0,2.0,10926.0,93.4,10.0,f,3042.83,3042.83,11405.57,11405.57,8007.17,3378.15,20.25,0.0,0.0,Mar-2019,425.25,Apr-2019,Mar-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,93583.0,1.0,2.0,0.0,0.0,65.0,82657.0,23.0,2.0,3.0,4537.0,47.0,11700.0,0.0,0.0,0.0,3.0,15597.0,105.0,98.7,0.0,0.0,157.0,205.0,1.0,1.0,0.0,23.0,,23.0,,0.0,2.0,4.0,3.0,5.0,3.0,5.0,7.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,1.0,114944.0,93583.0,8100.0,103244.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693813,,9000.0,9000.0,9000.0, 36 months,8.99,286.16,B,B1,Office Manager,2 years,RENT,55000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693813,,credit_card,Credit card refinancing,606xx,IL,9.71,0.0,Sep-2009,735.0,739.0,1.0,,,21.0,0.0,7961.0,27.9,36.0,w,1462.05,1462.05,8699.14,8699.14,7537.95,1161.19,0.0,0.0,0.0,Mar-2019,286.16,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,59672.0,0.0,17.0,0.0,2.0,19.0,51711.0,100.0,0.0,1.0,5439.0,74.0,28500.0,0.0,0.0,1.0,3.0,2842.0,18739.0,29.8,0.0,0.0,84.0,47.0,15.0,15.0,0.0,15.0,,3.0,,0.0,2.0,2.0,3.0,3.0,31.0,4.0,4.0,2.0,21.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,80160.0,59672.0,26700.0,51660.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90094115,,9000.0,9000.0,9000.0, 36 months,8.99,286.16,B,B1,Portfolio Manager,10+ years,OWN,230000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90094115,,credit_card,Credit card refinancing,774xx,TX,24.23,0.0,Apr-1975,705.0,709.0,1.0,,,13.0,0.0,170977.0,77.0,28.0,w,1944.25,1944.25,8294.14,8294.14,7055.75,1238.39,0.0,0.0,0.0,Mar-2019,286.16,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,300843.0,0.0,1.0,1.0,1.0,9.0,12245.0,79.0,1.0,1.0,42382.0,77.0,196100.0,1.0,2.0,1.0,2.0,23142.0,8308.0,91.2,0.0,0.0,149.0,497.0,12.0,9.0,2.0,44.0,,1.0,,0.0,5.0,6.0,6.0,13.0,5.0,10.0,19.0,6.0,13.0,0.0,0.0,0.0,2.0,100.0,83.3,0.0,0.0,437921.0,194165.0,130100.0,15454.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521458,,7925.0,7925.0,7925.0, 36 months,21.49,300.58,D,D5,Senior merchandise manager,1 year,MORTGAGE,58000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521458,,credit_card,Credit card refinancing,065xx,CT,26.45,0.0,Dec-1995,670.0,674.0,3.0,61.0,46.0,21.0,2.0,15785.0,30.2,37.0,w,0.0,0.0,9812.3842583338,9812.38,7925.0,1887.38,0.0,0.0,0.0,Jan-2018,5613.72,,Mar-2019,804.0,800.0,0.0,61.0,1.0,Individual,,,,0.0,939.0,35939.0,2.0,2.0,0.0,2.0,18.0,20154.0,62.0,7.0,15.0,3517.0,42.0,52300.0,2.0,0.0,6.0,17.0,1711.0,27947.0,35.9,0.0,0.0,151.0,249.0,5.0,5.0,1.0,6.0,61.0,1.0,61.0,9.0,11.0,12.0,15.0,22.0,4.0,19.0,32.0,12.0,21.0,0.0,0.0,0.0,7.0,73.0,13.3,0.0,0.0,84755.0,35939.0,43600.0,32455.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90225127,,12000.0,12000.0,12000.0, 60 months,27.79,372.12,F,F5,Apprentice Carpenter,3 years,MORTGAGE,56000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90225127,,major_purchase,Major purchase,551xx,MN,6.77,2.0,Jun-2007,680.0,684.0,0.0,19.0,,5.0,0.0,0.0,0.0,12.0,w,0.0,0.0,5293.09,5293.09,1285.55,3161.36,0.0,846.18,152.3124,Oct-2017,372.12,,Jul-2018,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,15687.0,0.0,3.0,0.0,2.0,14.0,15687.0,84.0,0.0,1.0,0.0,79.0,1200.0,4.0,0.0,6.0,3.0,3137.0,1200.0,0.0,0.0,0.0,36.0,111.0,16.0,14.0,0.0,16.0,19.0,3.0,19.0,0.0,0.0,0.0,2.0,3.0,4.0,2.0,8.0,0.0,5.0,0.0,0.0,0.0,0.0,66.7,0.0,0.0,0.0,19793.0,15687.0,1200.0,18593.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561448,,15000.0,15000.0,15000.0, 36 months,9.49,480.43,B,B2,Quality Analyst,10+ years,RENT,46000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561448,,debt_consolidation,Debt consolidation,342xx,FL,24.16,0.0,Aug-2002,705.0,709.0,0.0,54.0,99.0,14.0,1.0,5524.0,23.5,33.0,w,0.0,0.0,17220.848477216798,17220.85,15000.0,2220.85,0.0,0.0,0.0,Mar-2019,3746.14,,Mar-2019,689.0,685.0,0.0,54.0,1.0,Individual,,,,0.0,1069.0,28886.0,2.0,4.0,1.0,3.0,3.0,23362.0,61.0,1.0,6.0,2441.0,47.0,23500.0,0.0,1.0,1.0,9.0,2063.0,8870.0,30.7,0.0,0.0,169.0,75.0,3.0,3.0,0.0,3.0,,7.0,,3.0,3.0,6.0,5.0,7.0,17.0,10.0,15.0,6.0,14.0,0.0,0.0,0.0,2.0,78.1,20.0,1.0,0.0,61574.0,28886.0,12800.0,38074.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90251897,,3800.0,3800.0,3800.0, 36 months,7.99,119.07,A,A4,Service Specialist,3 years,MORTGAGE,56000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90251897,,home_improvement,Home improvement,282xx,NC,14.17,0.0,May-2005,730.0,734.0,1.0,74.0,99.0,15.0,1.0,4225.0,24.7,26.0,w,0.0,0.0,3934.0298957767,3934.03,3800.0,134.03,0.0,0.0,0.0,Mar-2017,3459.44,,May-2017,744.0,740.0,0.0,74.0,1.0,Individual,,,,0.0,238.0,180579.0,1.0,2.0,1.0,2.0,12.0,20226.0,64.0,0.0,2.0,2774.0,50.0,17100.0,0.0,4.0,3.0,5.0,16416.0,10394.0,26.3,0.0,0.0,131.0,136.0,22.0,4.0,1.0,25.0,,5.0,,1.0,4.0,7.0,4.0,7.0,7.0,12.0,18.0,7.0,15.0,0.0,0.0,0.0,2.0,96.2,0.0,1.0,0.0,205555.0,24451.0,14100.0,31705.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121402,,6500.0,6500.0,6500.0, 36 months,14.49,223.71,C,C4,driver,3 years,RENT,32500.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121402,,debt_consolidation,Debt consolidation,554xx,MN,9.86,0.0,Sep-2003,690.0,694.0,0.0,70.0,,6.0,0.0,2162.0,45.0,8.0,f,1493.73,1493.73,6495.9,6495.9,5006.27,1489.63,0.0,0.0,0.0,Mar-2019,223.71,Apr-2019,Mar-2019,539.0,535.0,1.0,70.0,1.0,Individual,,,,0.0,0.0,6339.0,1.0,1.0,0.0,1.0,20.0,4177.0,77.0,1.0,3.0,774.0,62.0,4800.0,2.0,0.0,1.0,4.0,1057.0,1880.0,44.7,0.0,0.0,20.0,46.0,1.0,1.0,0.0,1.0,,7.0,,1.0,2.0,4.0,2.0,3.0,1.0,5.0,6.0,4.0,6.0,0.0,0.0,0.0,1.0,85.7,50.0,0.0,0.0,10262.0,6339.0,3400.0,5462.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171956,,11000.0,11000.0,11000.0, 36 months,9.49,352.32,B,B2,sales,8 years,MORTGAGE,71000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171956,,debt_consolidation,Debt consolidation,975xx,OR,9.33,1.0,Feb-1989,675.0,679.0,0.0,9.0,,14.0,0.0,8376.0,31.0,18.0,w,0.0,0.0,12359.3519073802,12359.35,11000.0,1359.35,0.0,0.0,0.0,Jun-2018,5353.55,,Oct-2018,629.0,625.0,0.0,,1.0,Individual,,,,0.0,0.0,10520.0,0.0,1.0,0.0,0.0,30.0,2054.0,26.0,0.0,0.0,2018.0,29.0,27000.0,0.0,0.0,0.0,0.0,751.0,17024.0,33.0,0.0,0.0,66.0,331.0,26.0,26.0,0.0,27.0,,24.0,9.0,0.0,6.0,6.0,10.0,10.0,4.0,12.0,13.0,6.0,14.0,0.0,0.0,0.0,0.0,94.4,50.0,0.0,0.0,35723.0,10520.0,25400.0,8000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90068202,,20000.0,20000.0,20000.0, 36 months,15.59,699.1,C,C5,Owner,1 year,RENT,74000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90068202,,debt_consolidation,Debt consolidation,773xx,TX,20.19,0.0,Mar-1988,660.0,664.0,1.0,63.0,70.0,13.0,1.0,13428.0,52.2,38.0,f,4648.95,4648.95,20256.58,20256.58,15351.05,4905.53,0.0,0.0,0.0,Mar-2019,699.1,Apr-2019,Mar-2019,729.0,725.0,0.0,63.0,1.0,Individual,,,,0.0,850.0,86540.0,3.0,3.0,0.0,2.0,13.0,73112.0,93.0,4.0,7.0,5138.0,59.0,25700.0,0.0,0.0,1.0,9.0,6657.0,9854.0,56.6,0.0,0.0,165.0,342.0,3.0,3.0,2.0,3.0,,5.0,63.0,3.0,7.0,9.0,7.0,16.0,12.0,10.0,24.0,9.0,13.0,0.0,0.0,0.0,4.0,91.2,0.0,0.0,0.0,112586.0,86540.0,22700.0,86886.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693799,,5000.0,5000.0,5000.0, 36 months,7.59,155.74,A,A3,Sr. Executive Assistant,8 years,RENT,145000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693799,,major_purchase,Major purchase,945xx,CA,8.1,0.0,Jan-2002,775.0,779.0,0.0,,,18.0,0.0,17485.0,26.6,24.0,w,1063.03,1063.03,4514.35,4514.35,3936.97,577.38,0.0,0.0,0.0,Mar-2019,155.74,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,30489.0,0.0,1.0,0.0,1.0,23.0,13004.0,54.0,2.0,2.0,7577.0,34.0,65800.0,1.0,0.0,2.0,3.0,1694.0,33923.0,29.0,0.0,0.0,34.0,176.0,7.0,7.0,0.0,7.0,,0.0,,0.0,6.0,11.0,8.0,11.0,2.0,17.0,22.0,11.0,18.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,89693.0,30489.0,47800.0,23893.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90393767,,1000.0,1000.0,1000.0, 36 months,17.99,36.15,D,D2,water truck driver,2 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90393767,,other,Other,809xx,CO,24.29,1.0,Sep-1983,660.0,664.0,4.0,12.0,62.0,20.0,1.0,7126.0,45.4,65.0,w,0.0,0.0,1176.4677615614999,1176.47,1000.0,176.47,0.0,0.0,0.0,Nov-2017,743.67,,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,73797.0,2.0,3.0,1.0,1.0,7.0,66671.0,88.0,4.0,14.0,2969.0,80.0,15700.0,4.0,4.0,15.0,15.0,4100.0,1701.0,78.2,0.0,0.0,172.0,313.0,1.0,1.0,1.0,9.0,12.0,1.0,12.0,0.0,4.0,6.0,4.0,17.0,17.0,17.0,46.0,6.0,19.0,0.0,0.0,0.0,5.0,96.1,50.0,1.0,0.0,91896.0,73797.0,7800.0,76196.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693224,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Team Leader,5 years,MORTGAGE,33280.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693224,,debt_consolidation,Debt consolidation,480xx,MI,23.26,0.0,Aug-2009,690.0,694.0,0.0,,,8.0,0.0,7289.0,49.6,9.0,w,0.0,0.0,5053.85,5053.85,2509.73,1481.02,0.0,1063.1,191.358,Sep-2017,361.48,,Mar-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,81583.0,0.0,1.0,0.0,1.0,14.0,8152.0,68.0,0.0,0.0,3564.0,58.0,14700.0,0.0,0.0,0.0,1.0,10198.0,0.0,101.7,0.0,0.0,14.0,85.0,29.0,14.0,1.0,29.0,,,,0.0,3.0,5.0,3.0,4.0,1.0,6.0,7.0,5.0,8.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,97395.0,15441.0,4600.0,12000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90408983,,7400.0,7400.0,7400.0, 36 months,18.99,271.22,D,D3,Bus monitor,3 years,RENT,20600.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90408983,,debt_consolidation,Debt consolidation,112xx,NY,33.29,0.0,May-2007,710.0,714.0,0.0,48.0,,14.0,0.0,7174.0,35.3,23.0,w,0.0,0.0,3008.44,3008.44,1302.52,859.43,0.0,846.49,152.3682,Jun-2017,271.22,,Dec-2017,539.0,535.0,0.0,48.0,1.0,Individual,,,,0.0,0.0,19437.0,0.0,3.0,1.0,1.0,11.0,12263.0,98.0,0.0,6.0,3895.0,59.0,20300.0,0.0,0.0,0.0,7.0,1495.0,660.0,89.8,0.0,0.0,106.0,112.0,13.0,11.0,0.0,13.0,,24.0,48.0,1.0,2.0,4.0,3.0,4.0,6.0,11.0,17.0,5.0,14.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,32800.0,19437.0,6500.0,12500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89828620,,11850.0,11850.0,11850.0, 36 months,16.99,422.43,D,D1,Office Manager,1 year,RENT,50000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89828620,,debt_consolidation,Debt consolidation,212xx,MD,32.36,0.0,Jul-2006,660.0,664.0,0.0,,,17.0,0.0,18032.0,87.5,28.0,w,0.0,0.0,5493.67,5493.67,2715.06,1498.05,0.0,1280.56,230.5008,Aug-2017,422.43,,Aug-2018,564.0,560.0,0.0,,1.0,Individual,,,,0.0,0.0,77453.0,0.0,6.0,2.0,4.0,9.0,59421.0,75.0,1.0,1.0,7499.0,78.0,20600.0,0.0,0.0,1.0,5.0,4556.0,27.0,99.8,0.0,0.0,111.0,122.0,11.0,9.0,0.0,11.0,,11.0,,0.0,8.0,11.0,8.0,8.0,17.0,11.0,11.0,11.0,17.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,99809.0,77453.0,15900.0,79209.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692756,,19000.0,19000.0,19000.0, 60 months,14.49,446.94,C,C4,Project Coordinator III,10+ years,RENT,102000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692756,,debt_consolidation,Debt consolidation,220xx,VA,21.53,0.0,Jul-2000,665.0,669.0,0.0,,,21.0,0.0,16707.0,32.6,31.0,f,0.0,0.0,5894.33,5894.33,3040.4,2853.93,0.0,0.0,0.0,Nov-2017,446.94,,Jul-2018,589.0,585.0,0.0,,1.0,Individual,,,,0.0,341.0,70684.0,2.0,2.0,1.0,2.0,9.0,53977.0,74.0,5.0,8.0,6314.0,44.0,51300.0,1.0,0.0,0.0,10.0,3366.0,16714.0,46.8,0.0,0.0,81.0,194.0,1.0,1.0,0.0,4.0,,17.0,,0.0,6.0,8.0,9.0,10.0,6.0,19.0,25.0,8.0,21.0,0.0,0.0,0.0,6.0,100.0,33.3,0.0,0.0,113858.0,70684.0,31400.0,62558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90087304,,5600.0,5600.0,5600.0, 36 months,16.99,199.63,D,D1,Sous chef ,2 years,RENT,36000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90087304,,car,Car financing,891xx,NV,12.17,1.0,Apr-2007,685.0,689.0,2.0,18.0,,9.0,0.0,6307.0,90.1,12.0,w,1321.41,1321.41,5783.98,5783.98,4278.59,1505.39,0.0,0.0,0.0,Mar-2019,199.63,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,30545.0,0.0,8.0,0.0,0.0,47.0,24238.0,90.0,0.0,0.0,6307.0,90.0,7000.0,1.0,0.0,2.0,0.0,3394.0,693.0,90.1,0.0,0.0,113.0,101.0,30.0,30.0,0.0,30.0,49.0,0.0,49.0,0.0,1.0,1.0,1.0,2.0,10.0,1.0,2.0,1.0,9.0,0.0,0.0,0.0,0.0,83.3,100.0,0.0,0.0,33891.0,30545.0,7000.0,26891.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410163,,12000.0,12000.0,12000.0, 60 months,22.39,334.1,E,E1,Office Manager,3 years,MORTGAGE,35000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410163,,credit_card,Credit card refinancing,339xx,FL,17.97,0.0,Aug-2011,665.0,669.0,0.0,,,7.0,0.0,3810.0,60.5,10.0,w,0.0,0.0,2734.16,2734.16,453.3,979.1,0.0,1301.76,234.3168,Feb-2017,334.1,,Aug-2017,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,119651.0,3.0,2.0,1.0,1.0,2.0,5431.0,45.0,2.0,4.0,2469.0,50.0,6300.0,2.0,0.0,0.0,7.0,17093.0,719.0,83.3,0.0,0.0,61.0,45.0,0.0,0.0,2.0,13.0,,13.0,,0.0,2.0,4.0,2.0,2.0,3.0,4.0,5.0,4.0,7.0,0.0,0.0,0.0,5.0,100.0,50.0,0.0,0.0,131335.0,9241.0,4300.0,12118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90248766,,10000.0,10000.0,10000.0, 36 months,10.49,324.98,B,B3,Forklift Driver. ,10+ years,RENT,47000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90248766,,debt_consolidation,Debt consolidation,953xx,CA,23.51,0.0,Sep-1997,670.0,674.0,0.0,,65.0,10.0,1.0,13749.0,45.7,19.0,w,0.0,0.0,4013.91,4013.91,2214.38,741.48,0.0,1058.05,190.449,Jul-2017,324.98,,Jan-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,26398.0,0.0,2.0,0.0,0.0,31.0,12649.0,43.0,1.0,3.0,7427.0,44.0,30100.0,0.0,1.0,0.0,3.0,2640.0,10073.0,42.4,0.0,0.0,56.0,228.0,8.0,8.0,1.0,26.0,,21.0,,0.0,1.0,3.0,3.0,7.0,2.0,8.0,16.0,3.0,10.0,0.0,0.0,0.0,1.0,100.0,33.3,1.0,0.0,59730.0,26398.0,17500.0,29630.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405762,,19750.0,19750.0,19750.0, 60 months,24.99,579.58,E,E4,Coding & Compliance Specialist,1 year,RENT,52000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405762,,debt_consolidation,Debt consolidation,042xx,ME,25.56,0.0,Jul-2000,665.0,669.0,1.0,24.0,60.0,20.0,1.0,16165.0,53.7,32.0,w,13139.98,13139.98,16780.4,16780.4,6610.02,10170.38,0.0,0.0,0.0,Mar-2019,579.58,Apr-2019,Mar-2019,624.0,620.0,0.0,24.0,1.0,Individual,,,,0.0,71.0,31680.0,5.0,3.0,1.0,2.0,6.0,15515.0,62.0,5.0,7.0,4384.0,58.0,30100.0,0.0,6.0,1.0,9.0,1584.0,1022.0,92.2,0.0,0.0,161.0,194.0,0.0,0.0,0.0,4.0,24.0,6.0,24.0,2.0,7.0,13.0,7.0,11.0,9.0,17.0,23.0,13.0,20.0,0.0,0.0,0.0,6.0,87.5,100.0,0.0,0.0,55080.0,31680.0,13100.0,24980.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541551,,24000.0,24000.0,24000.0, 60 months,18.99,622.45,D,D3,Corrections officer ,5 years,RENT,75000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541551,,other,Other,125xx,NY,24.75,2.0,Feb-1999,660.0,664.0,0.0,16.0,81.0,5.0,1.0,1897.0,17.7,10.0,w,15158.47,15158.47,18030.66,18030.66,8841.53,9189.13,0.0,0.0,0.0,Mar-2019,622.45,Apr-2019,Mar-2019,709.0,705.0,0.0,77.0,1.0,Individual,,,,0.0,0.0,25304.0,0.0,2.0,1.0,1.0,9.0,23407.0,59.0,0.0,0.0,1897.0,50.0,10700.0,0.0,1.0,1.0,1.0,6326.0,1903.0,49.9,0.0,0.0,159.0,211.0,37.0,9.0,0.0,43.0,16.0,3.0,16.0,1.0,1.0,1.0,1.0,1.0,5.0,3.0,5.0,1.0,5.0,0.0,0.0,0.0,1.0,50.0,0.0,0.0,1.0,50599.0,25304.0,3800.0,39899.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90149043,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Materials Manager,10+ years,RENT,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90149043,,other,Other,461xx,IN,13.23,0.0,Sep-1987,665.0,669.0,2.0,32.0,,9.0,0.0,12120.0,84.8,26.0,w,0.0,0.0,12908.425345560901,12908.43,10000.0,2908.43,0.0,0.0,0.0,Mar-2019,2756.02,,Mar-2019,554.0,550.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,49828.0,1.0,4.0,1.0,2.0,5.0,37708.0,81.0,0.0,2.0,4432.0,82.0,14300.0,1.0,3.0,3.0,4.0,5536.0,8.0,99.9,0.0,0.0,348.0,56.0,20.0,5.0,0.0,20.0,,0.0,,0.0,3.0,5.0,3.0,4.0,20.0,5.0,6.0,5.0,9.0,0.0,0.0,0.0,1.0,88.5,100.0,0.0,0.0,60876.0,49828.0,10200.0,46576.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90298610,,10000.0,10000.0,10000.0, 60 months,24.99,293.46,E,E4,Rn care manager,10+ years,MORTGAGE,62000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90298610,,debt_consolidation,Debt consolidation,354xx,AL,34.3,2.0,Oct-1988,675.0,679.0,2.0,9.0,101.0,13.0,1.0,6466.0,39.4,35.0,w,0.0,0.0,6150.74,6150.74,1716.97,3257.97,0.0,1175.8,211.644,Mar-2018,293.46,,Sep-2018,524.0,520.0,0.0,11.0,1.0,Individual,,,,0.0,0.0,67157.0,2.0,5.0,2.0,6.0,9.0,60691.0,86.0,2.0,3.0,1985.0,77.0,16400.0,4.0,6.0,3.0,9.0,5166.0,15.0,99.3,0.0,0.0,111.0,335.0,3.0,3.0,3.0,3.0,11.0,3.0,9.0,1.0,1.0,5.0,1.0,2.0,13.0,8.0,19.0,5.0,13.0,0.0,0.0,1.0,4.0,94.3,100.0,1.0,0.0,86737.0,67157.0,2000.0,70337.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471487,,5000.0,5000.0,5000.0, 36 months,8.59,158.05,A,A5,Teacher ,6 years,MORTGAGE,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471487,,credit_card,Credit card refinancing,405xx,KY,18.72,0.0,Apr-2006,700.0,704.0,1.0,,,8.0,0.0,35517.0,87.7,19.0,w,1075.2,1075.2,4595.37,4595.37,3924.8,670.57,0.0,0.0,0.0,Mar-2019,158.05,Apr-2019,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,0.0,171805.0,0.0,1.0,0.0,0.0,51.0,9287.0,38.0,1.0,2.0,4428.0,69.0,40500.0,0.0,5.0,4.0,3.0,21476.0,4272.0,50.9,0.0,0.0,84.0,125.0,8.0,8.0,2.0,23.0,,0.0,,0.0,1.0,4.0,3.0,4.0,9.0,6.0,8.0,4.0,8.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,193020.0,44804.0,8700.0,24520.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90068577,,7000.0,7000.0,7000.0, 36 months,9.49,224.2,B,B2,Chef,1 year,MORTGAGE,41600.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90068577,,debt_consolidation,Debt consolidation,922xx,CA,3.4,3.0,May-1996,660.0,664.0,0.0,4.0,,2.0,0.0,1849.0,74.0,22.0,w,1520.83,1520.83,6498.11,6498.11,5479.17,1018.94,0.0,0.0,0.0,Mar-2019,224.2,Apr-2019,Mar-2019,739.0,735.0,0.0,4.0,1.0,Individual,,,,0.0,0.0,126809.0,0.0,0.0,0.0,0.0,86.0,0.0,,1.0,1.0,1849.0,74.0,2500.0,0.0,1.0,1.0,1.0,63405.0,651.0,74.0,0.0,0.0,133.0,244.0,8.0,8.0,2.0,8.0,22.0,8.0,22.0,5.0,1.0,1.0,1.0,9.0,3.0,1.0,15.0,1.0,2.0,0.0,0.0,2.0,1.0,71.4,0.0,0.0,0.0,160500.0,1849.0,2500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631581,,35000.0,35000.0,35000.0, 60 months,14.49,823.31,C,C4,Clinical Program Consultant,< 1 year,MORTGAGE,95000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631581,,credit_card,Credit card refinancing,805xx,CO,25.33,0.0,Apr-2000,665.0,669.0,1.0,57.0,45.0,16.0,1.0,32322.0,70.0,27.0,w,0.0,0.0,41875.8403986216,41875.84,35000.0,6875.84,0.0,0.0,0.0,Apr-2018,27907.75,,Apr-2018,704.0,700.0,0.0,57.0,1.0,Individual,,,,0.0,0.0,330827.0,2.0,3.0,0.0,1.0,21.0,56646.0,71.0,2.0,2.0,10677.0,71.0,46200.0,0.0,1.0,1.0,4.0,23631.0,11793.0,72.6,0.0,0.0,138.0,197.0,6.0,6.0,5.0,6.0,57.0,6.0,57.0,3.0,8.0,9.0,8.0,12.0,6.0,12.0,16.0,9.0,16.0,0.0,0.0,0.0,2.0,81.5,75.0,0.0,0.0,377355.0,88968.0,43000.0,83555.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90440153,,10000.0,10000.0,10000.0, 36 months,7.59,311.48,A,A3,PRESIDENT,10+ years,MORTGAGE,100000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90440153,,debt_consolidation,Debt consolidation,606xx,IL,12.16,1.0,Jul-1977,695.0,699.0,0.0,3.0,,14.0,0.0,10823.0,23.1,35.0,w,2126.06,2126.06,9028.7,9028.7,7873.94,1154.76,0.0,0.0,0.0,Mar-2019,311.48,Apr-2019,Mar-2019,774.0,770.0,0.0,67.0,1.0,Individual,,,,0.0,0.0,187792.0,0.0,1.0,0.0,1.0,21.0,17670.0,57.0,3.0,5.0,5465.0,36.0,46900.0,4.0,0.0,4.0,6.0,14446.0,33077.0,24.7,0.0,0.0,120.0,197.0,8.0,8.0,6.0,8.0,3.0,8.0,3.0,1.0,6.0,6.0,9.0,14.0,8.0,11.0,20.0,6.0,14.0,0.0,0.0,0.0,3.0,91.4,0.0,0.0,0.0,255923.0,28493.0,43900.0,30897.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121024,,20000.0,20000.0,20000.0, 60 months,25.29,590.44,E,E5,Supervisor,8 years,MORTGAGE,74000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121024,,debt_consolidation,Debt consolidation,688xx,NE,27.28,2.0,Mar-1997,670.0,674.0,2.0,6.0,82.0,15.0,1.0,6981.0,32.6,22.0,w,14934.61,14934.61,15468.88,15468.88,5065.39,10403.49,0.0,0.0,0.0,Mar-2019,1182.0,Apr-2019,Mar-2019,579.0,575.0,0.0,60.0,1.0,Individual,,,,0.0,1440.0,146740.0,2.0,4.0,1.0,3.0,9.0,53920.0,75.0,3.0,7.0,3366.0,66.0,21400.0,5.0,0.0,8.0,10.0,9783.0,4615.0,58.8,0.0,0.0,176.0,234.0,6.0,6.0,1.0,12.0,,0.0,60.0,1.0,3.0,5.0,4.0,6.0,8.0,10.0,13.0,5.0,15.0,0.0,0.0,0.0,4.0,86.4,50.0,0.0,1.0,181758.0,60901.0,11200.0,71507.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90299040,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Operations Supervisor,10+ years,MORTGAGE,105000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90299040,,debt_consolidation,Debt consolidation,814xx,CO,14.38,0.0,Apr-2005,705.0,709.0,0.0,,,11.0,0.0,33071.0,37.5,18.0,w,0.0,0.0,44976.8845016614,44976.88,40000.0,4976.88,0.0,0.0,0.0,Jan-2018,32966.35,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,283249.0,0.0,1.0,0.0,0.0,30.0,12017.0,60.0,1.0,1.0,7878.0,42.0,88200.0,1.0,1.0,4.0,1.0,25750.0,51645.0,34.0,0.0,0.0,112.0,108.0,9.0,9.0,5.0,9.0,,4.0,,0.0,5.0,6.0,8.0,8.0,3.0,9.0,10.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,373590.0,45088.0,78300.0,20000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571587,,7000.0,7000.0,7000.0, 36 months,8.99,222.57,B,B1,Administrative Asst.,10+ years,MORTGAGE,33254.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571587,,debt_consolidation,Debt consolidation,890xx,NV,28.87,0.0,Jul-2005,750.0,754.0,1.0,24.0,,14.0,0.0,6595.0,25.0,22.0,w,0.0,0.0,7386.9045071938,7386.9,7000.0,386.9,0.0,0.0,0.0,Jun-2017,5512.91,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,56245.0,2.0,1.0,0.0,0.0,26.0,22101.0,71.0,3.0,3.0,4948.0,50.0,26400.0,0.0,0.0,2.0,3.0,4327.0,8497.0,43.4,0.0,0.0,118.0,134.0,6.0,6.0,2.0,6.0,,6.0,,0.0,6.0,7.0,6.0,7.0,2.0,12.0,18.0,7.0,14.0,0.0,0.0,0.0,3.0,90.9,16.7,0.0,0.0,109645.0,28696.0,15000.0,31228.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695776,,3800.0,3800.0,3800.0, 36 months,7.99,119.07,A,A4,Maintenance Supervisor,3 years,MORTGAGE,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695776,,debt_consolidation,Debt consolidation,601xx,IL,5.01,1.0,May-2000,730.0,734.0,0.0,18.0,,7.0,0.0,1335.0,9.6,8.0,w,0.0,0.0,4109.8183397382,4109.82,3800.0,309.82,0.0,0.0,0.0,Feb-2019,24.67,,Feb-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,222.0,135531.0,0.0,1.0,0.0,1.0,13.0,4393.0,63.0,1.0,2.0,1181.0,27.0,13900.0,0.0,0.0,0.0,3.0,19362.0,12565.0,9.6,0.0,0.0,196.0,178.0,10.0,10.0,1.0,10.0,,,,1.0,3.0,3.0,5.0,5.0,2.0,5.0,5.0,3.0,7.0,0.0,0.0,0.0,1.0,87.5,0.0,0.0,0.0,259158.0,5728.0,13900.0,6975.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89799042,,20800.0,20800.0,20800.0, 60 months,26.99,635.02,F,F3,ICU nurse,2 years,RENT,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89799042,,car,Car financing,722xx,AR,25.28,0.0,Jan-1988,695.0,699.0,1.0,,,8.0,0.0,9952.0,59.6,9.0,w,13244.95,13244.95,18853.2,18853.2,7555.05,11298.15,0.0,0.0,0.0,Mar-2019,635.02,Apr-2019,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,52046.0,1.0,3.0,3.0,3.0,3.0,42094.0,88.0,0.0,0.0,9590.0,81.0,16700.0,2.0,0.0,10.0,3.0,6506.0,5548.0,64.2,0.0,0.0,12.0,344.0,27.0,3.0,0.0,27.0,,3.0,,0.0,2.0,2.0,3.0,4.0,3.0,5.0,6.0,2.0,8.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,64295.0,52046.0,15500.0,47595.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89867567,,35000.0,35000.0,35000.0, 60 months,28.88,1108.41,G,G2,Owner,5 years,MORTGAGE,100000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89867567,,small_business,Business,015xx,MA,10.81,1.0,Dec-2007,670.0,674.0,2.0,22.0,,11.0,0.0,76716.0,42.2,19.0,w,24021.0,24021.0,32087.73,32087.73,10979.0,21108.73,0.0,0.0,0.0,Mar-2019,1108.41,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,447590.0,1.0,1.0,1.0,2.0,7.0,12393.0,83.0,2.0,3.0,11235.0,54.0,161100.0,2.0,2.0,13.0,6.0,49732.0,18620.0,44.1,0.0,0.0,27.0,105.0,2.0,2.0,2.0,29.0,,1.0,,0.0,3.0,5.0,5.0,5.0,3.0,9.0,14.0,5.0,11.0,0.0,0.0,0.0,3.0,94.7,25.0,0.0,0.0,536212.0,89109.0,33300.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404913,,25825.0,25825.0,25825.0, 60 months,26.99,788.43,F,F3,,,MORTGAGE,56168.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404913,,debt_consolidation,Debt consolidation,190xx,PA,30.77,0.0,Sep-1990,705.0,709.0,1.0,,,14.0,0.0,32225.0,82.2,23.0,w,0.0,0.0,33637.7465825732,33637.75,25825.0,7812.75,0.0,0.0,0.0,Dec-2017,23426.88,,Dec-2017,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,178825.0,0.0,1.0,0.0,1.0,23.0,4105.0,21.0,2.0,3.0,14324.0,59.0,39200.0,4.0,0.0,2.0,4.0,14902.0,5397.0,84.8,0.0,0.0,48.0,312.0,8.0,8.0,2.0,8.0,,1.0,,0.0,6.0,8.0,9.0,13.0,3.0,11.0,17.0,8.0,14.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,221233.0,38168.0,35400.0,20015.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90210460,,6400.0,6400.0,6400.0, 36 months,16.99,228.15,D,D1,driver,1 year,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90210460,,debt_consolidation,Debt consolidation,895xx,NV,6.76,1.0,Aug-2005,660.0,664.0,0.0,2.0,76.0,8.0,1.0,3722.0,14.7,12.0,f,0.0,0.0,8010.806873917801,8010.81,6400.0,1610.81,0.0,0.0,0.0,Nov-2018,2541.25,,Nov-2018,689.0,685.0,0.0,,1.0,Individual,,,,0.0,215.0,3722.0,1.0,0.0,0.0,0.0,36.0,0.0,,3.0,3.0,1992.0,15.0,25300.0,0.0,0.0,0.0,3.0,465.0,12355.0,19.8,0.0,0.0,133.0,53.0,3.0,3.0,0.0,3.0,,,2.0,0.0,4.0,7.0,5.0,5.0,2.0,8.0,10.0,7.0,8.0,0.0,0.0,0.0,3.0,91.7,0.0,1.0,0.0,25300.0,3722.0,15400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90501519,,8000.0,8000.0,8000.0, 36 months,5.32,240.92,A,A1,,,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90501519,,credit_card,Credit card refinancing,863xx,AZ,21.12,0.0,Dec-1979,730.0,734.0,0.0,50.0,,15.0,0.0,12318.0,25.5,32.0,w,0.0,0.0,8642.3464140494,8642.35,8000.0,642.35,0.0,0.0,0.0,Feb-2019,2133.39,,Sep-2017,739.0,735.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,13513.0,0.0,1.0,0.0,0.0,36.0,1195.0,6.0,3.0,5.0,6282.0,20.0,48400.0,0.0,1.0,1.0,5.0,965.0,18366.0,34.6,0.0,0.0,134.0,441.0,7.0,7.0,3.0,7.0,,9.0,,1.0,4.0,7.0,7.0,11.0,5.0,14.0,24.0,7.0,15.0,0.0,0.0,0.0,3.0,96.9,14.3,0.0,0.0,67225.0,13513.0,28100.0,18825.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90581281,,21600.0,21600.0,21600.0, 36 months,12.79,725.61,C,C1,Sales,10+ years,OWN,110000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90581281,,credit_card,Credit card refinancing,622xx,IL,14.66,0.0,Jul-1992,695.0,699.0,0.0,40.0,82.0,11.0,1.0,32569.0,81.8,24.0,f,0.0,0.0,25070.813304811098,25070.81,21600.0,3470.81,0.0,0.0,0.0,May-2018,12025.18,,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,267369.0,1.0,2.0,1.0,1.0,8.0,37281.0,69.0,1.0,3.0,5968.0,74.0,39800.0,2.0,4.0,5.0,7.0,24306.0,2444.0,89.5,0.0,0.0,125.0,290.0,5.0,5.0,3.0,15.0,62.0,0.0,40.0,0.0,5.0,7.0,5.0,8.0,6.0,8.0,15.0,7.0,11.0,0.0,0.0,0.0,2.0,82.6,80.0,0.0,0.0,306236.0,69850.0,23200.0,54436.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571568,,4400.0,4400.0,4400.0, 36 months,17.99,159.05,D,D2,Executive Assistant,10+ years,RENT,74000.0,Verified,Oct-2016,In Grace Period,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571568,,credit_card,Credit card refinancing,200xx,DC,17.15,0.0,Jan-2003,675.0,679.0,4.0,40.0,73.0,21.0,1.0,4653.0,17.2,61.0,w,1200.51,1200.51,4481.98,4481.98,3199.49,1282.49,0.0,0.0,0.0,Mar-2019,159.05,Apr-2019,Mar-2019,674.0,670.0,0.0,40.0,1.0,Individual,,,,0.0,0.0,28176.0,7.0,2.0,2.0,4.0,4.0,23523.0,92.0,12.0,21.0,1374.0,54.0,27000.0,0.0,12.0,12.0,25.0,1342.0,6948.0,17.3,0.0,0.0,131.0,164.0,1.0,1.0,0.0,3.0,,0.0,,2.0,2.0,7.0,6.0,22.0,10.0,18.0,49.0,7.0,21.0,0.0,0.0,0.0,14.0,100.0,0.0,1.0,0.0,52647.0,28176.0,8400.0,25647.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521257,,3350.0,3350.0,3350.0, 36 months,18.99,122.79,D,D3,Chef,5 years,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521257,,other,Other,911xx,CA,18.99,1.0,May-1995,665.0,669.0,1.0,9.0,64.0,8.0,1.0,1144.0,11.4,25.0,f,0.0,0.0,3645.408976491,3645.41,3350.0,295.41,0.0,0.0,0.0,Apr-2017,2666.62,,Jan-2019,629.0,625.0,0.0,54.0,1.0,Individual,,,,0.0,0.0,46691.0,1.0,6.0,0.0,0.0,42.0,45547.0,72.0,1.0,1.0,1144.0,64.0,10000.0,0.0,0.0,1.0,1.0,6670.0,8856.0,11.4,0.0,0.0,167.0,256.0,2.0,2.0,0.0,2.0,70.0,2.0,70.0,0.0,1.0,1.0,1.0,7.0,12.0,2.0,13.0,1.0,7.0,0.0,0.0,0.0,1.0,87.0,0.0,1.0,0.0,73050.0,46691.0,10000.0,63050.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407317,,8000.0,8000.0,8000.0, 36 months,8.99,254.37,B,B1,DISPATCHER,10+ years,MORTGAGE,52000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407317,,credit_card,Credit card refinancing,405xx,KY,17.66,0.0,Aug-2004,670.0,674.0,2.0,48.0,89.0,9.0,1.0,9270.0,79.2,17.0,w,1728.04,1728.04,7372.73,7372.73,6271.96,1100.77,0.0,0.0,0.0,Mar-2019,254.37,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,168418.0,1.0,1.0,0.0,1.0,24.0,22350.0,69.0,0.0,1.0,4924.0,72.0,11700.0,0.0,3.0,4.0,3.0,24060.0,191.0,97.4,0.0,0.0,145.0,86.0,16.0,5.0,3.0,57.0,,1.0,48.0,0.0,2.0,5.0,2.0,4.0,5.0,6.0,8.0,5.0,9.0,0.0,0.0,0.0,1.0,93.8,100.0,1.0,0.0,181370.0,31620.0,7300.0,32206.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671156,,15000.0,15000.0,15000.0, 60 months,24.99,440.19,E,E4,Registered Nurse,< 1 year,RENT,56000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671156,,debt_consolidation,Debt consolidation,441xx,OH,20.51,0.0,Feb-2005,660.0,664.0,1.0,32.0,109.0,16.0,1.0,11197.0,48.7,36.0,w,0.0,0.0,6266.79,6266.79,2051.76,4215.03,0.0,0.0,0.0,Dec-2017,440.19,,Jul-2018,544.0,540.0,0.0,32.0,1.0,Individual,,,,0.0,141.0,88996.0,4.0,5.0,2.0,5.0,4.0,77799.0,85.0,3.0,7.0,2947.0,70.0,23000.0,1.0,0.0,3.0,12.0,5562.0,106.0,98.1,0.0,0.0,121.0,139.0,5.0,4.0,0.0,8.0,43.0,6.0,42.0,2.0,3.0,10.0,3.0,4.0,21.0,11.0,15.0,10.0,16.0,0.0,0.0,0.0,5.0,88.9,100.0,1.0,0.0,104240.0,88996.0,5500.0,81240.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280947,,4500.0,4500.0,4500.0, 36 months,13.49,152.69,C,C2,Admin Assistant,10+ years,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280947,,other,Other,481xx,MI,18.82,0.0,Oct-1986,675.0,679.0,2.0,,75.0,8.0,1.0,1252.0,12.8,23.0,w,1022.22,1022.22,4438.13,4438.13,3477.78,960.35,0.0,0.0,0.0,Mar-2019,152.69,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,17656.0,3.0,2.0,0.0,1.0,14.0,16404.0,44.0,3.0,4.0,733.0,38.0,9800.0,3.0,4.0,2.0,5.0,2522.0,67.0,91.6,0.0,0.0,129.0,359.0,1.0,1.0,0.0,56.0,,0.0,,0.0,1.0,4.0,1.0,7.0,8.0,6.0,14.0,4.0,8.0,0.0,0.0,0.0,3.0,100.0,100.0,1.0,0.0,46900.0,17656.0,800.0,37100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671547,,12000.0,12000.0,12000.0, 36 months,5.32,361.38,A,A1,Legal Assistant,6 years,OWN,52000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671547,,debt_consolidation,Debt consolidation,751xx,TX,9.23,0.0,Mar-1992,770.0,774.0,0.0,,,12.0,0.0,19803.0,34.8,16.0,w,0.0,0.0,12811.930591434399,12811.93,12000.0,811.93,0.0,0.0,0.0,Jun-2018,5949.26,,Jul-2018,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,183264.0,0.0,0.0,0.0,0.0,69.0,0.0,,1.0,1.0,7980.0,35.0,59000.0,0.0,0.0,0.0,1.0,16660.0,36497.0,37.8,0.0,0.0,102.0,294.0,8.0,8.0,1.0,8.0,,,,0.0,6.0,6.0,8.0,8.0,2.0,11.0,13.0,6.0,12.0,0.0,0.0,0.0,1.0,100.0,25.0,0.0,0.0,281400.0,19803.0,56300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230752,,30000.0,30000.0,30000.0, 60 months,19.99,794.65,D,D4,Registered Nurse,10+ years,RENT,88898.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230752,,medical,Medical expenses,113xx,NY,8.3,2.0,Nov-2005,670.0,674.0,1.0,12.0,72.0,9.0,1.0,2371.0,19.1,20.0,w,0.0,0.0,39826.509439624,39826.51,30000.0,9826.51,0.0,0.0,0.0,Aug-2018,23158.92,,Mar-2019,674.0,670.0,0.0,12.0,1.0,Individual,,,,0.0,0.0,32653.0,0.0,1.0,0.0,1.0,13.0,30282.0,88.0,0.0,4.0,1009.0,70.0,12400.0,7.0,2.0,1.0,5.0,4665.0,7371.0,16.2,0.0,0.0,119.0,130.0,16.0,13.0,0.0,18.0,,4.0,12.0,1.0,2.0,4.0,2.0,6.0,3.0,8.0,17.0,4.0,9.0,0.0,0.0,1.0,0.0,85.0,0.0,1.0,0.0,46781.0,32653.0,8800.0,34381.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451504,,18000.0,18000.0,18000.0, 36 months,13.99,615.11,C,C3,Contractor Support,2 years,MORTGAGE,30000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451504,,debt_consolidation,Debt consolidation,840xx,UT,56.16,2.0,Feb-2000,675.0,679.0,0.0,8.0,,16.0,0.0,23983.0,71.4,48.0,w,0.0,0.0,10838.77,10838.77,7560.35,3216.9,61.52,0.0,0.0,Jul-2018,121.71,,Mar-2019,524.0,520.0,0.0,42.0,1.0,Joint App,125000.0,25.1,Not Verified,0.0,0.0,164274.0,0.0,3.0,0.0,1.0,16.0,49291.0,89.0,1.0,6.0,3586.0,83.0,33600.0,1.0,11.0,1.0,7.0,12636.0,5084.0,59.3,0.0,0.0,161.0,199.0,12.0,12.0,2.0,12.0,42.0,12.0,13.0,1.0,3.0,8.0,3.0,7.0,21.0,11.0,22.0,8.0,16.0,0.0,0.0,0.0,1.0,79.2,66.7,0.0,0.0,183809.0,74274.0,12500.0,55209.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,INCOME_CURTAILMENT,COMPLETED,3.0,121.71,Apr-2018,Jul-2018,May-2018,3.0,20.0,Late (16-30 days),365.13,10673.25,165.32,Cash,N,,,,,, +90197470,,8500.0,8500.0,8500.0, 36 months,13.99,290.47,C,C3,Bartender,9 years,RENT,25000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197470,,debt_consolidation,Debt consolidation,782xx,TX,29.33,0.0,Jun-2004,680.0,684.0,2.0,,,24.0,0.0,10036.0,28.4,46.0,w,0.0,0.0,4041.88,4041.88,2232.22,956.34,0.0,853.32,153.5976,Sep-2017,290.47,,Mar-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,10036.0,3.0,0.0,0.0,0.0,39.0,0.0,,3.0,9.0,1433.0,28.0,35300.0,1.0,0.0,2.0,9.0,436.0,12246.0,33.4,0.0,0.0,147.0,125.0,1.0,1.0,0.0,1.0,,1.0,,0.0,10.0,17.0,11.0,12.0,18.0,24.0,28.0,17.0,24.0,0.0,0.0,0.0,3.0,100.0,9.1,0.0,0.0,35300.0,10036.0,18400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521478,,18000.0,18000.0,18000.0, 60 months,22.39,501.14,E,E1,Customer Service,< 1 year,OWN,49000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521478,,debt_consolidation,Debt consolidation,481xx,MI,16.9,0.0,Sep-2007,670.0,674.0,1.0,,94.0,9.0,1.0,20499.0,65.9,18.0,w,0.0,0.0,24480.3735154525,24480.37,18000.0,6480.37,0.0,0.0,0.0,Jul-2018,14513.55,,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,21036.0,1.0,1.0,0.0,0.0,33.0,537.0,31.0,1.0,4.0,7023.0,64.0,31100.0,0.0,0.0,1.0,4.0,2337.0,4505.0,63.7,0.0,0.0,108.0,98.0,3.0,3.0,0.0,42.0,,0.0,,0.0,2.0,8.0,2.0,4.0,5.0,8.0,13.0,8.0,9.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,1.0,32820.0,21036.0,12400.0,1720.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90066831,,25000.0,25000.0,25000.0, 36 months,16.99,891.2,D,D1,loader,5 years,MORTGAGE,78000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90066831,,debt_consolidation,Debt consolidation,641xx,MO,31.48,0.0,Jan-2005,685.0,689.0,0.0,62.0,,17.0,0.0,13119.0,46.9,33.0,w,5899.33,5899.33,25821.2,25821.2,19100.67,6720.53,0.0,0.0,0.0,Mar-2019,891.2,Apr-2019,Mar-2019,649.0,645.0,0.0,62.0,1.0,Joint App,100000.0,31.25,Not Verified,0.0,147.0,177284.0,1.0,4.0,1.0,4.0,7.0,65721.0,70.0,1.0,2.0,7174.0,62.0,28000.0,2.0,2.0,2.0,7.0,10428.0,5132.0,70.5,0.0,0.0,104.0,140.0,4.0,4.0,3.0,4.0,,7.0,,1.0,4.0,8.0,6.0,7.0,13.0,12.0,16.0,8.0,17.0,0.0,0.0,0.0,2.0,97.0,50.0,0.0,0.0,220568.0,78840.0,17400.0,91093.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89919003,,8000.0,8000.0,8000.0, 36 months,5.32,240.92,A,A1,ENERGY CONSULTANT,6 years,MORTGAGE,83000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89919003,,home_improvement,Home improvement,600xx,IL,18.63,0.0,Apr-1968,750.0,754.0,1.0,34.0,,10.0,0.0,3414.0,14.3,25.0,w,0.0,0.0,8477.146477915501,8477.15,8000.0,477.15,0.0,0.0,0.0,Mar-2018,4624.79,,Mar-2019,809.0,805.0,0.0,,1.0,Individual,,,,0.0,0.0,234471.0,1.0,2.0,0.0,2.0,13.0,53442.0,79.0,1.0,2.0,1807.0,44.0,23800.0,1.0,0.0,1.0,4.0,26052.0,13453.0,14.3,0.0,0.0,169.0,581.0,5.0,5.0,4.0,5.0,,1.0,,0.0,2.0,4.0,3.0,6.0,8.0,7.0,13.0,4.0,10.0,0.0,0.0,0.0,1.0,96.0,0.0,0.0,0.0,279609.0,56856.0,15700.0,63757.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695781,,15000.0,15000.0,15000.0, 36 months,19.99,557.38,D,D4,accounting,2 years,RENT,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695781,,debt_consolidation,Debt consolidation,857xx,AZ,34.66,0.0,Dec-2002,675.0,679.0,0.0,49.0,,7.0,0.0,7961.0,36.9,16.0,w,0.0,0.0,16751.2079822157,16751.21,15000.0,1751.21,0.0,0.0,0.0,Oct-2017,2586.72,,Nov-2017,649.0,645.0,0.0,50.0,1.0,Individual,,,,0.0,0.0,47264.0,1.0,2.0,1.0,2.0,3.0,39303.0,97.0,1.0,4.0,5003.0,62.0,21600.0,0.0,2.0,2.0,6.0,6752.0,997.0,83.4,0.0,0.0,98.0,165.0,11.0,3.0,0.0,17.0,49.0,7.0,49.0,3.0,1.0,4.0,1.0,5.0,5.0,5.0,11.0,4.0,7.0,0.0,0.0,0.0,2.0,75.0,100.0,0.0,0.0,78487.0,47264.0,6000.0,56887.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067222,,8000.0,8000.0,8000.0, 36 months,18.99,293.21,D,D3,general mngr,10+ years,RENT,70000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067222,,debt_consolidation,Debt consolidation,038xx,NH,23.66,1.0,Feb-2005,660.0,664.0,3.0,4.0,104.0,10.0,3.0,5304.0,53.0,21.0,w,1665.69,1665.69,8728.78,8728.78,6334.31,2394.47,0.0,0.0,0.0,Mar-2019,293.21,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,52120.0,1.0,2.0,1.0,3.0,5.0,46816.0,77.0,2.0,2.0,1521.0,60.0,10000.0,0.0,4.0,6.0,5.0,5791.0,1577.0,66.4,0.0,0.0,139.0,80.0,12.0,5.0,0.0,12.0,,1.0,,0.0,4.0,5.0,4.0,5.0,12.0,8.0,9.0,5.0,10.0,0.0,0.0,0.0,3.0,90.5,25.0,3.0,0.0,59643.0,52120.0,4700.0,49643.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90161024,,10000.0,10000.0,10000.0, 36 months,5.32,301.15,A,A1,Supervisor,10+ years,MORTGAGE,78000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90161024,,credit_card,Credit card refinancing,531xx,WI,12.14,0.0,Jan-1997,805.0,809.0,0.0,,,16.0,0.0,9628.0,9.5,27.0,w,0.0,0.0,10231.3972723913,10231.4,10000.0,231.4,0.0,0.0,0.0,Oct-2017,217.11,,Mar-2019,844.0,840.0,0.0,,1.0,Individual,,,,0.0,0.0,183559.0,1.0,1.0,0.0,0.0,27.0,24633.0,,1.0,2.0,9302.0,10.0,101800.0,0.0,1.0,0.0,2.0,14120.0,76872.0,11.1,0.0,0.0,126.0,236.0,1.0,1.0,2.0,1.0,,,,0.0,3.0,3.0,6.0,9.0,6.0,14.0,19.0,3.0,16.0,0.0,0.0,0.0,1.0,100.0,16.7,0.0,0.0,310357.0,34261.0,86500.0,36057.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90073206,,11200.0,11200.0,11200.0, 60 months,13.49,257.66,C,C2,framer,< 1 year,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90073206,,debt_consolidation,Debt consolidation,917xx,CA,15.69,0.0,Dec-1991,750.0,754.0,0.0,,,12.0,0.0,8931.0,18.6,19.0,f,0.0,0.0,13439.3729183245,13439.37,11200.0,2239.37,0.0,0.0,0.0,Jun-2018,8552.22,,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,16876.0,0.0,2.0,1.0,2.0,11.0,7945.0,80.0,0.0,1.0,1861.0,29.0,47900.0,0.0,0.0,0.0,3.0,1406.0,33658.0,17.7,0.0,0.0,297.0,121.0,20.0,11.0,0.0,20.0,,,,0.0,7.0,8.0,8.0,11.0,3.0,10.0,16.0,8.0,12.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,57900.0,16876.0,40900.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88763812,,12000.0,12000.0,12000.0, 60 months,13.99,279.16,C,C3,Administrative Assistant,10+ years,MORTGAGE,30000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88763812,,debt_consolidation,Debt consolidation,489xx,MI,29.76,1.0,Jun-1995,670.0,674.0,0.0,7.0,,6.0,0.0,6937.0,86.7,9.0,w,7227.58,7227.58,8086.31,8086.31,4772.42,3313.89,0.0,0.0,0.0,Mar-2019,279.16,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,80768.0,0.0,2.0,0.0,0.0,54.0,7833.0,24.0,1.0,1.0,4193.0,36.0,8000.0,0.0,2.0,2.0,1.0,13461.0,481.0,92.0,0.0,0.0,255.0,84.0,12.0,12.0,2.0,12.0,,12.0,7.0,0.0,2.0,3.0,2.0,2.0,4.0,3.0,3.0,3.0,6.0,0.0,0.0,0.0,1.0,88.9,100.0,0.0,0.0,112836.0,14770.0,6000.0,33159.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89859181,,35000.0,35000.0,35000.0, 36 months,7.59,1090.17,A,A3,Advisor,10+ years,MORTGAGE,350000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89859181,,credit_card,Credit card refinancing,752xx,TX,7.83,1.0,Oct-1994,700.0,704.0,0.0,12.0,,9.0,0.0,11031.0,71.6,22.0,w,7441.53,7441.53,31600.17,31600.17,27558.47,4041.7,0.0,0.0,0.0,Mar-2019,1090.17,Apr-2019,Mar-2019,714.0,710.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,53993.0,0.0,2.0,0.0,1.0,24.0,42962.0,52.0,1.0,1.0,6692.0,55.0,15400.0,0.0,0.0,3.0,2.0,6749.0,2669.0,80.5,0.0,0.0,132.0,263.0,7.0,7.0,5.0,102.0,12.0,1.0,12.0,1.0,2.0,2.0,4.0,5.0,10.0,6.0,7.0,2.0,9.0,0.0,0.0,0.0,1.0,89.5,66.7,0.0,0.0,98770.0,53993.0,13700.0,83370.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90177103,,24000.0,24000.0,24000.0, 60 months,8.99,498.09,B,B1,Commercial Truck Driver,< 1 year,MORTGAGE,55000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90177103,,debt_consolidation,Debt consolidation,728xx,AR,24.11,0.0,Mar-2004,705.0,709.0,1.0,,,18.0,0.0,24968.0,39.5,33.0,w,13734.27,13734.27,14498.54,14498.54,10265.73,4232.81,0.0,0.0,0.0,Mar-2019,498.09,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,147481.0,2.0,1.0,0.0,0.0,30.0,11758.0,60.0,3.0,3.0,6820.0,44.0,63200.0,0.0,2.0,1.0,5.0,8193.0,24010.0,32.0,0.0,0.0,150.0,106.0,5.0,5.0,5.0,5.0,,5.0,,0.0,6.0,8.0,10.0,13.0,7.0,16.0,21.0,8.0,18.0,0.0,0.0,0.0,3.0,100.0,10.0,0.0,0.0,197939.0,36726.0,35300.0,19747.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90461223,,10000.0,10000.0,10000.0, 60 months,21.49,273.3,D,D5,Crew Supervisor,10+ years,MORTGAGE,42000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90461223,,debt_consolidation,Debt consolidation,401xx,KY,27.6,0.0,Jan-1987,660.0,664.0,0.0,41.0,73.0,9.0,1.0,45845.0,88.3,22.0,w,6459.46,6459.46,7913.76,7913.76,3540.54,4373.22,0.0,0.0,0.0,Mar-2019,273.3,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,55315.0,0.0,2.0,1.0,5.0,9.0,9470.0,65.0,0.0,1.0,2892.0,73.0,52600.0,1.0,4.0,2.0,6.0,6914.0,293.0,95.8,0.0,0.0,105.0,356.0,14.0,9.0,1.0,14.0,41.0,9.0,41.0,0.0,3.0,4.0,3.0,5.0,11.0,6.0,10.0,4.0,8.0,0.0,0.0,0.0,1.0,90.5,100.0,1.0,0.0,67244.0,55315.0,7000.0,14644.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551350,,10000.0,10000.0,10000.0, 36 months,9.49,320.29,B,B2,Front Desk Auxillary,4 years,RENT,42500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551350,,debt_consolidation,Debt consolidation,604xx,IL,23.71,0.0,Feb-1996,695.0,699.0,0.0,26.0,,10.0,0.0,6753.0,37.7,31.0,w,2172.47,2172.47,9283.14,9283.14,7827.53,1455.61,0.0,0.0,0.0,Mar-2019,320.29,Apr-2019,Mar-2019,749.0,745.0,0.0,70.0,1.0,Individual,,,,0.0,0.0,23570.0,1.0,2.0,2.0,2.0,11.0,16817.0,74.0,1.0,3.0,4300.0,58.0,19400.0,1.0,0.0,2.0,5.0,2357.0,11392.0,33.6,0.0,0.0,147.0,247.0,2.0,2.0,5.0,2.0,27.0,11.0,26.0,2.0,4.0,5.0,7.0,12.0,8.0,8.0,18.0,5.0,10.0,0.0,0.0,0.0,3.0,75.9,0.0,0.0,0.0,41998.0,23570.0,16400.0,22598.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90099666,,8000.0,8000.0,8000.0, 36 months,10.99,261.88,B,B4,Finance,,MORTGAGE,100314.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90099666,,debt_consolidation,Debt consolidation,489xx,MI,23.38,0.0,Jun-1994,665.0,669.0,1.0,,71.0,12.0,2.0,20068.0,86.5,24.0,w,0.0,0.0,5102.34,5102.34,3452.46,1030.39,0.0,619.49,111.5082,Mar-2018,261.88,,Mar-2019,579.0,575.0,0.0,,1.0,Individual,,,,0.0,0.0,162429.0,1.0,4.0,2.0,3.0,4.0,42965.0,74.0,0.0,0.0,6884.0,78.0,23200.0,3.0,8.0,3.0,3.0,14766.0,237.0,97.5,0.0,0.0,136.0,267.0,36.0,4.0,2.0,36.0,,4.0,,0.0,3.0,6.0,3.0,3.0,15.0,7.0,7.0,6.0,12.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,2.0,190557.0,63033.0,9300.0,57906.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631337,,18000.0,18000.0,18000.0, 60 months,26.49,544.17,F,F2,regional manager,6 years,MORTGAGE,110000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631337,,debt_consolidation,Debt consolidation,923xx,CA,15.1,0.0,Sep-2003,665.0,669.0,1.0,,,36.0,0.0,18651.0,35.9,45.0,w,0.0,0.0,5722.07,5722.07,1552.71,2285.82,0.0,1883.54,339.0372,Apr-2017,544.17,,Oct-2017,539.0,535.0,0.0,,1.0,Individual,,,,0.0,1062.0,44080.0,5.0,5.0,0.0,0.0,30.0,25429.0,68.0,6.0,15.0,1467.0,49.0,52000.0,11.0,0.0,17.0,15.0,1259.0,3669.0,49.0,0.0,0.0,156.0,126.0,0.0,0.0,0.0,0.0,,2.0,,0.0,4.0,16.0,7.0,7.0,7.0,31.0,38.0,17.0,36.0,0.0,0.0,0.0,6.0,100.0,57.1,0.0,0.0,89681.0,44080.0,7200.0,37681.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121445,,29650.0,29650.0,29650.0, 36 months,17.99,1071.77,D,D2,,,MORTGAGE,84000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121445,,debt_consolidation,Debt consolidation,104xx,NY,25.53,0.0,Apr-1999,675.0,679.0,2.0,68.0,,9.0,0.0,21841.0,88.1,44.0,w,0.0,0.0,10846.47,10846.47,4593.35,2746.05,0.0,3507.07,631.2726,Apr-2017,1071.77,,Oct-2017,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,443560.0,1.0,2.0,0.0,2.0,16.0,28415.0,67.0,2.0,8.0,10333.0,80.0,24800.0,2.0,2.0,4.0,11.0,49284.0,2959.0,88.1,0.0,0.0,137.0,209.0,3.0,3.0,2.0,3.0,,2.0,,0.0,5.0,5.0,5.0,19.0,12.0,5.0,28.0,5.0,9.0,0.0,0.0,0.0,2.0,97.7,80.0,0.0,0.0,481848.0,53941.0,24800.0,54303.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88725689,,25000.0,25000.0,25000.0, 60 months,10.99,543.44,B,B4,Supervisor Firefighter,10+ years,OWN,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88725689,,debt_consolidation,Debt consolidation,923xx,CA,20.41,1.0,Aug-1993,710.0,714.0,1.0,22.0,,12.0,0.0,25580.0,43.8,32.0,w,14608.31,14608.31,15744.5,15744.5,10391.69,5352.81,0.0,0.0,0.0,Mar-2019,543.44,Apr-2019,Mar-2019,764.0,760.0,0.0,22.0,1.0,Individual,,,,0.0,0.0,298508.0,0.0,3.0,0.0,2.0,13.0,56126.0,80.0,0.0,2.0,8552.0,56.0,58400.0,0.0,7.0,1.0,4.0,27137.0,21907.0,46.4,0.0,0.0,145.0,277.0,17.0,13.0,4.0,17.0,,5.0,,1.0,4.0,7.0,4.0,7.0,11.0,8.0,17.0,7.0,12.0,0.0,0.0,1.0,0.0,96.9,25.0,0.0,0.0,365751.0,81706.0,40900.0,68151.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90205531,,33600.0,33600.0,33600.0, 36 months,5.32,1011.86,A,A1,Vice Provost,5 years,MORTGAGE,308000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90205531,,home_improvement,Home improvement,941xx,CA,4.24,0.0,Mar-1999,795.0,799.0,0.0,,,4.0,0.0,9088.0,19.0,8.0,w,6958.94,6958.94,29334.01,29334.01,26641.06,2692.95,0.0,0.0,0.0,Mar-2019,1011.86,Apr-2019,Mar-2019,814.0,810.0,0.0,,1.0,Individual,,,,0.0,0.0,878107.0,0.0,1.0,0.0,0.0,36.0,944.0,3.0,0.0,0.0,4602.0,13.0,47900.0,0.0,0.0,0.0,0.0,219527.0,38812.0,19.0,0.0,0.0,125.0,210.0,86.0,36.0,2.0,189.0,,,,0.0,2.0,2.0,2.0,2.0,3.0,2.0,3.0,2.0,4.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,1012900.0,10032.0,47900.0,30000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90311988,,6000.0,6000.0,6000.0, 36 months,19.99,222.96,D,D4,Lvn,3 years,MORTGAGE,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90311988,,debt_consolidation,Debt consolidation,754xx,TX,17.01,1.0,Feb-2006,665.0,669.0,2.0,6.0,,15.0,0.0,3859.0,72.8,17.0,f,0.0,0.0,6949.752064021,6949.75,6000.0,949.75,0.0,0.0,0.0,Aug-2017,4919.79,,Jul-2018,649.0,645.0,0.0,6.0,1.0,Individual,,,,0.0,1363.0,108366.0,3.0,8.0,0.0,1.0,19.0,31669.0,97.0,4.0,5.0,1704.0,94.0,5300.0,0.0,0.0,4.0,7.0,7224.0,775.0,78.5,0.0,0.0,95.0,17.0,4.0,4.0,1.0,4.0,,1.0,,1.0,4.0,5.0,4.0,4.0,10.0,5.0,5.0,5.0,15.0,0.0,0.0,1.0,5.0,93.8,25.0,0.0,0.0,111765.0,37505.0,3600.0,32811.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551272,,6000.0,6000.0,6000.0, 36 months,16.99,213.89,D,D1,CLinician II,6 years,RENT,42000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551272,,moving,Moving and relocation,341xx,FL,29.66,0.0,Aug-2002,680.0,684.0,0.0,,,15.0,0.0,17453.0,46.7,28.0,w,1415.76,1415.76,6224.62,6224.62,4584.24,1640.38,0.0,0.0,0.0,Mar-2019,213.89,Apr-2019,Mar-2019,589.0,585.0,0.0,,1.0,Individual,,,,0.0,0.0,143864.0,0.0,2.0,1.0,1.0,9.0,126411.0,92.0,2.0,9.0,4013.0,67.0,37400.0,1.0,0.0,1.0,10.0,9591.0,9437.0,59.1,0.0,0.0,164.0,169.0,11.0,9.0,1.0,11.0,,7.0,,0.0,10.0,13.0,10.0,12.0,12.0,13.0,15.0,13.0,15.0,0.0,0.0,0.0,3.0,100.0,40.0,0.0,0.0,153002.0,143864.0,23100.0,115602.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405710,,29900.0,29900.0,29900.0, 36 months,18.99,1095.87,D,D3,Smog technician,1 year,MORTGAGE,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405710,,debt_consolidation,Debt consolidation,923xx,CA,15.01,0.0,Mar-2005,710.0,714.0,3.0,69.0,68.0,6.0,1.0,2589.0,55.1,14.0,f,0.0,0.0,37504.4622750895,37504.46,29900.0,7604.46,0.0,0.0,0.0,Jun-2018,16714.47,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,148718.0,0.0,3.0,1.0,3.0,10.0,18054.0,72.0,0.0,0.0,2009.0,69.0,4700.0,2.0,1.0,3.0,3.0,24786.0,291.0,87.3,0.0,0.0,138.0,135.0,58.0,10.0,4.0,61.0,,0.0,,0.0,1.0,2.0,1.0,1.0,6.0,2.0,4.0,2.0,6.0,0.0,0.0,0.0,1.0,92.9,100.0,1.0,0.0,162310.0,20643.0,2300.0,25056.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694374,,6075.0,6075.0,6075.0, 36 months,18.99,222.66,D,D3,House Officer,10+ years,RENT,60000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694374,,debt_consolidation,Debt consolidation,112xx,NY,12.44,0.0,Feb-1999,660.0,664.0,0.0,,47.0,6.0,3.0,2863.0,71.6,10.0,f,2089.22,2089.22,5827.75,5827.75,3985.78,1796.97,45.0,0.0,0.0,Jan-2019,237.66,Apr-2019,Mar-2019,539.0,535.0,0.0,,1.0,Individual,,,,0.0,0.0,34540.0,3.0,1.0,1.0,1.0,3.0,31677.0,98.0,3.0,4.0,970.0,95.0,4000.0,0.0,0.0,5.0,5.0,6908.0,637.0,81.8,0.0,0.0,3.0,169.0,5.0,3.0,0.0,5.0,,3.0,,0.0,3.0,3.0,3.0,7.0,1.0,4.0,8.0,3.0,6.0,0.0,0.0,0.0,4.0,100.0,66.7,0.0,3.0,36340.0,34540.0,3500.0,32340.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90401984,,10800.0,10800.0,10800.0, 36 months,18.99,395.84,D,D3,,,RENT,30000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90401984,,debt_consolidation,Debt consolidation,952xx,CA,14.2,0.0,Jul-2007,705.0,709.0,1.0,,,5.0,0.0,1903.0,21.4,10.0,f,0.0,0.0,435.72,435.72,224.93,210.79,0.0,0.0,0.0,Nov-2016,447.11,,Dec-2018,624.0,620.0,0.0,,1.0,Joint App,50000.0,12.67,Not Verified,0.0,0.0,8001.0,2.0,1.0,1.0,1.0,1.0,6098.0,102.0,1.0,2.0,1060.0,54.0,8900.0,1.0,0.0,2.0,3.0,1600.0,6363.0,19.5,0.0,0.0,1.0,110.0,3.0,1.0,0.0,3.0,,2.0,,0.0,3.0,4.0,3.0,7.0,1.0,4.0,9.0,4.0,5.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,14900.0,8001.0,7900.0,6000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90398081,,20000.0,20000.0,20000.0, 60 months,17.99,507.76,D,D2,Correctional Deputy,5 years,MORTGAGE,65000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90398081,,debt_consolidation,Debt consolidation,959xx,CA,22.53,4.0,Jul-2008,660.0,664.0,0.0,13.0,,8.0,0.0,3416.0,69.7,12.0,f,0.0,0.0,22353.2235700273,22353.22,20000.0,2353.22,0.0,0.0,0.0,Jun-2017,18809.1,,Jul-2018,684.0,680.0,0.0,20.0,1.0,Individual,,,,0.0,0.0,32427.0,1.0,4.0,1.0,1.0,5.0,29011.0,56.0,0.0,0.0,1671.0,57.0,4900.0,2.0,2.0,3.0,1.0,4053.0,1484.0,69.7,0.0,0.0,98.0,74.0,36.0,5.0,0.0,36.0,19.0,12.0,19.0,1.0,4.0,4.0,4.0,6.0,6.0,4.0,6.0,4.0,8.0,0.0,0.0,1.0,1.0,72.7,50.0,0.0,0.0,56576.0,32427.0,4900.0,51676.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90481462,,10000.0,10000.0,10000.0, 36 months,14.49,344.17,C,C4,Clinical coordinator ,10+ years,RENT,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90481462,,debt_consolidation,Debt consolidation,907xx,CA,27.04,0.0,Apr-2003,660.0,664.0,0.0,80.0,69.0,12.0,1.0,10856.0,71.4,20.0,f,2296.55,2296.55,9972.88,9972.88,7703.45,2269.43,0.0,0.0,0.0,Mar-2019,344.17,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,34346.0,0.0,2.0,1.0,2.0,11.0,23490.0,75.0,0.0,1.0,3428.0,74.0,15200.0,2.0,0.0,1.0,3.0,3122.0,233.0,97.1,0.0,0.0,161.0,151.0,24.0,11.0,0.0,24.0,,7.0,,0.0,4.0,8.0,4.0,8.0,4.0,10.0,16.0,8.0,12.0,0.0,0.0,0.0,1.0,93.8,100.0,1.0,0.0,46687.0,34346.0,8100.0,31487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541284,,27225.0,27225.0,27200.0, 36 months,18.99,997.83,D,D3,Registered Nurse,10+ years,MORTGAGE,67500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541284,,debt_consolidation,Debt consolidation,613xx,IL,31.31,0.0,Jun-2000,690.0,694.0,0.0,36.0,,30.0,0.0,32850.0,56.0,49.0,f,0.0,0.0,30531.4748666563,30503.44,27225.0,3306.47,0.0,0.0,0.0,Jun-2017,23474.86,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,294290.0,2.0,12.0,3.0,7.0,4.0,77342.0,76.0,0.0,5.0,5739.0,69.0,58700.0,0.0,1.0,2.0,13.0,9810.0,11332.0,69.9,0.0,0.0,133.0,195.0,13.0,3.0,5.0,16.0,,4.0,36.0,0.0,7.0,11.0,10.0,10.0,18.0,17.0,26.0,11.0,30.0,0.0,0.0,0.0,4.0,95.9,50.0,0.0,0.0,345103.0,110192.0,37600.0,101404.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591455,,36000.0,36000.0,36000.0, 60 months,10.49,773.61,B,B3,Director Road Operations,10+ years,MORTGAGE,185000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591455,,credit_card,Credit card refinancing,956xx,CA,13.34,0.0,Feb-2001,715.0,719.0,0.0,,,23.0,0.0,51620.0,50.7,42.0,w,0.0,0.0,38798.8303324052,38798.83,36000.0,2798.83,0.0,0.0,0.0,Jul-2017,32662.4,,Jul-2017,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,429421.0,0.0,7.0,0.0,0.0,25.0,49837.0,73.0,1.0,1.0,14053.0,58.0,101900.0,0.0,3.0,2.0,2.0,18670.0,36786.0,55.2,0.0,0.0,151.0,187.0,10.0,10.0,1.0,10.0,,10.0,,0.0,6.0,9.0,8.0,10.0,21.0,14.0,19.0,9.0,23.0,0.0,0.0,0.0,1.0,100.0,37.5,0.0,0.0,576516.0,104160.0,82200.0,75913.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671322,,35000.0,35000.0,35000.0, 36 months,8.99,1112.83,B,B1,Assistant Controller,5 years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671322,,debt_consolidation,Debt consolidation,604xx,IL,12.14,2.0,Sep-1995,685.0,689.0,0.0,0.0,,14.0,0.0,35087.0,31.0,44.0,w,7561.44,7561.44,32254.59,32254.59,27438.56,4816.03,0.0,0.0,0.0,Mar-2019,1112.83,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,1.0,0.0,190166.0,0.0,1.0,0.0,2.0,19.0,15626.0,72.0,2.0,2.0,19142.0,38.0,113300.0,0.0,2.0,2.0,4.0,13583.0,61852.0,34.9,0.0,71.0,252.0,220.0,7.0,7.0,3.0,7.0,25.0,7.0,0.0,0.0,6.0,8.0,8.0,19.0,10.0,12.0,31.0,8.0,13.0,0.0,1.0,0.0,2.0,90.9,12.5,0.0,0.0,294504.0,50713.0,95000.0,21598.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392970,,10000.0,10000.0,9975.0, 36 months,17.99,361.48,D,D2,Stockroom ,10+ years,OWN,20000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392970,,debt_consolidation,Debt consolidation,705xx,LA,24.25,1.0,Jul-1991,660.0,664.0,0.0,4.0,,3.0,0.0,11996.0,56.3,5.0,f,2384.94,2378.97,10491.0,10464.77,7615.06,2857.87,18.07,0.0,0.0,Mar-2019,379.55,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,11996.0,0.0,0.0,0.0,0.0,78.0,0.0,,0.0,0.0,11326.0,56.0,21300.0,0.0,0.0,0.0,0.0,3999.0,8578.0,57.1,0.0,0.0,138.0,302.0,120.0,78.0,0.0,120.0,,,4.0,0.0,2.0,3.0,2.0,2.0,2.0,3.0,3.0,3.0,3.0,0.0,0.0,0.0,0.0,80.0,50.0,0.0,0.0,21300.0,11996.0,20000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90087974,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,Personal lines associate ,< 1 year,RENT,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90087974,,debt_consolidation,Debt consolidation,178xx,PA,14.76,1.0,Jul-2010,690.0,694.0,2.0,21.0,,21.0,0.0,2533.0,23.2,27.0,f,1127.01,1127.01,4894.22,4894.22,3872.99,1021.23,0.0,0.0,0.0,Mar-2019,167.97,Apr-2019,Mar-2019,569.0,565.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,57534.0,1.0,16.0,1.0,2.0,5.0,55001.0,101.0,1.0,3.0,2437.0,88.0,10900.0,2.0,1.0,4.0,5.0,2877.0,7463.0,24.6,0.0,0.0,68.0,74.0,9.0,5.0,0.0,9.0,,0.0,21.0,1.0,1.0,2.0,3.0,4.0,19.0,5.0,8.0,2.0,21.0,0.0,0.0,1.0,2.0,96.3,0.0,0.0,0.0,65332.0,57534.0,9900.0,54432.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90318045,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Truck driver,1 year,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90318045,,debt_consolidation,Debt consolidation,737xx,OK,11.83,0.0,Jul-2011,680.0,684.0,0.0,60.0,,9.0,0.0,4958.0,29.7,14.0,f,1827.21,1827.21,7959.39,7959.39,6172.79,1786.6,0.0,0.0,0.0,Mar-2019,273.39,Apr-2019,Mar-2019,769.0,765.0,0.0,60.0,1.0,Individual,,,,0.0,0.0,11017.0,0.0,2.0,0.0,2.0,13.0,6059.0,66.0,0.0,4.0,2473.0,43.0,16700.0,3.0,0.0,8.0,6.0,1224.0,10216.0,31.9,0.0,0.0,31.0,55.0,15.0,13.0,0.0,18.0,,0.0,,1.0,5.0,6.0,6.0,7.0,4.0,7.0,8.0,6.0,9.0,0.0,0.0,0.0,0.0,92.9,0.0,0.0,0.0,25844.0,11017.0,15000.0,9144.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90290771,,5100.0,5100.0,5100.0, 36 months,19.99,189.51,D,D4,Laundry/Houseperson/Housekeeping,< 1 year,RENT,15000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90290771,,debt_consolidation,Debt consolidation,691xx,NE,18.88,0.0,Oct-2006,665.0,669.0,0.0,24.0,,16.0,0.0,4673.0,99.4,29.0,f,1242.34,1242.34,5490.13,5490.13,3857.66,1632.47,0.0,0.0,0.0,Mar-2019,189.51,Apr-2019,Mar-2019,674.0,670.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,45191.0,0.0,13.0,0.0,0.0,49.0,40518.0,108.0,0.0,0.0,3081.0,107.0,4700.0,0.0,1.0,0.0,0.0,2824.0,0.0,102.2,0.0,0.0,108.0,119.0,38.0,38.0,0.0,38.0,24.0,,24.0,0.0,2.0,3.0,2.0,10.0,18.0,3.0,11.0,3.0,16.0,0.0,0.0,0.0,0.0,89.3,100.0,0.0,0.0,42086.0,45191.0,4000.0,37386.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694192,,6025.0,6025.0,6025.0, 36 months,16.99,214.78,D,D1,,,RENT,30000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694192,,debt_consolidation,Debt consolidation,021xx,MA,27.64,0.0,Sep-1982,665.0,669.0,0.0,30.0,,5.0,0.0,10126.0,85.8,8.0,w,1227.06,1227.06,6406.43,6406.43,4797.94,1608.49,0.0,0.0,0.0,Mar-2019,214.78,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,19086.0,0.0,2.0,1.0,2.0,8.0,8960.0,81.0,0.0,0.0,7690.0,84.0,11800.0,1.0,0.0,1.0,2.0,3817.0,322.0,96.6,0.0,0.0,170.0,408.0,39.0,8.0,0.0,39.0,,8.0,30.0,2.0,2.0,3.0,2.0,3.0,3.0,3.0,5.0,3.0,5.0,0.0,0.0,0.0,1.0,62.5,100.0,0.0,0.0,22825.0,19086.0,9400.0,11025.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90379972,,40000.0,40000.0,40000.0, 60 months,24.99,1173.82,E,E4,Machinist ,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90379972,,home_improvement,Home improvement,141xx,NY,29.67,0.0,Sep-2007,740.0,744.0,0.0,70.0,,15.0,0.0,2005.0,10.7,21.0,f,0.0,0.0,59571.6645501679,59571.66,40000.0,19571.66,0.0,0.0,0.0,Feb-2019,158.81,,Feb-2019,704.0,700.0,0.0,70.0,1.0,Joint App,90000.0,32.47,Not Verified,0.0,0.0,154047.0,1.0,4.0,1.0,4.0,11.0,52842.0,64.0,0.0,5.0,300.0,54.0,18700.0,3.0,0.0,1.0,10.0,10270.0,8506.0,4.4,0.0,0.0,86.0,88.0,18.0,3.0,3.0,18.0,,5.0,,1.0,3.0,4.0,6.0,6.0,9.0,9.0,9.0,4.0,15.0,0.0,0.0,0.0,2.0,95.2,0.0,0.0,0.0,199990.0,54847.0,8900.0,82090.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121658,,7750.0,7750.0,7750.0, 36 months,15.59,270.91,C,C5,Surgical Tech,1 year,MORTGAGE,72000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121658,,debt_consolidation,Debt consolidation,916xx,CA,11.61,0.0,Mar-2000,680.0,684.0,5.0,57.0,,11.0,0.0,6131.0,61.3,24.0,f,0.0,0.0,8631.201252987901,8631.2,7750.0,881.2,0.0,0.0,0.0,Aug-2017,5399.72,,Aug-2018,534.0,530.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,480118.0,5.0,2.0,1.0,1.0,2.0,79724.0,100.0,4.0,7.0,2803.0,90.0,10000.0,3.0,0.0,9.0,8.0,43647.0,2148.0,71.4,0.0,0.0,131.0,198.0,2.0,2.0,1.0,4.0,68.0,2.0,68.0,5.0,4.0,7.0,4.0,12.0,7.0,8.0,16.0,7.0,11.0,0.0,0.0,0.0,5.0,75.0,50.0,0.0,0.0,514650.0,85855.0,7500.0,75050.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90541228,,20625.0,20625.0,20625.0, 60 months,18.99,534.92,D,D3,Staff Assistant ,10+ years,RENT,43000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90541228,,debt_consolidation,Debt consolidation,277xx,NC,18.84,0.0,Mar-1998,715.0,719.0,0.0,,,17.0,0.0,20036.0,38.3,22.0,f,13025.75,13025.75,15490.92,15490.92,7599.25,7891.67,0.0,0.0,0.0,Mar-2019,534.92,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,20036.0,2.0,0.0,0.0,0.0,,0.0,,2.0,7.0,7209.0,38.0,52300.0,0.0,0.0,0.0,7.0,1252.0,14999.0,52.5,0.0,0.0,,222.0,2.0,2.0,0.0,2.0,,15.0,,0.0,6.0,13.0,7.0,11.0,0.0,17.0,22.0,13.0,17.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,52300.0,20036.0,31600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90077018,,7000.0,7000.0,7000.0, 36 months,13.49,237.52,C,C2,Service Manager ,10+ years,MORTGAGE,70000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90077018,,debt_consolidation,Debt consolidation,620xx,IL,30.1,1.0,Mar-2002,670.0,674.0,1.0,12.0,,10.0,0.0,18361.0,90.4,32.0,f,0.0,0.0,8067.5483196088,8067.55,7000.0,1067.55,0.0,0.0,0.0,Feb-2018,4510.0,,Aug-2018,684.0,680.0,0.0,65.0,1.0,Individual,,,,0.0,19757.0,69986.0,0.0,2.0,1.0,1.0,11.0,16051.0,49.0,0.0,1.0,14513.0,65.0,20300.0,1.0,0.0,1.0,2.0,6999.0,1647.0,91.4,0.0,0.0,139.0,174.0,13.0,11.0,3.0,13.0,12.0,4.0,12.0,3.0,4.0,5.0,6.0,17.0,6.0,7.0,23.0,5.0,10.0,0.0,0.0,0.0,1.0,81.3,66.7,0.0,0.0,92103.0,34412.0,19100.0,32803.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693505,,35000.0,35000.0,35000.0, 60 months,8.99,726.38,B,B1,Director,10+ years,MORTGAGE,225000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693505,,home_improvement,Home improvement,405xx,KY,25.31,0.0,Dec-1996,725.0,729.0,0.0,73.0,,8.0,0.0,63361.0,60.3,20.0,w,20031.58,20031.58,21047.54,21047.54,14968.42,6079.12,0.0,0.0,0.0,Mar-2019,726.38,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,629827.0,0.0,4.0,2.0,2.0,8.0,208870.0,69.0,0.0,0.0,39344.0,64.0,80800.0,0.0,2.0,2.0,3.0,78728.0,4639.0,89.0,0.0,0.0,155.0,237.0,32.0,8.0,3.0,148.0,,8.0,,0.0,2.0,2.0,2.0,3.0,11.0,3.0,6.0,2.0,8.0,0.0,0.0,0.0,2.0,95.0,100.0,0.0,0.0,719651.0,272231.0,68000.0,273851.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88995307,,18000.0,18000.0,18000.0, 60 months,13.49,414.09,C,C2,Project Manager,2 years,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88995307,,debt_consolidation,Debt consolidation,023xx,MA,10.29,0.0,Aug-2004,665.0,669.0,0.0,,,6.0,0.0,7756.0,81.6,10.0,f,10787.79,10787.79,11995.12,11995.12,7212.21,4782.91,0.0,0.0,0.0,Mar-2019,414.09,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,285239.0,0.0,2.0,0.0,0.0,33.0,24007.0,55.0,0.0,1.0,4257.0,60.0,9500.0,0.0,1.0,0.0,1.0,47540.0,1744.0,81.6,0.0,0.0,132.0,34.0,22.0,22.0,2.0,22.0,,,,1.0,3.0,3.0,3.0,3.0,5.0,3.0,3.0,3.0,6.0,0.0,0.0,0.0,0.0,90.0,66.7,0.0,0.0,308236.0,31763.0,9500.0,43736.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90264848,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Senior Maintenance Director,9 years,MORTGAGE,52000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90264848,,debt_consolidation,Debt consolidation,559xx,MN,14.33,1.0,May-2004,665.0,669.0,1.0,6.0,,8.0,0.0,8067.0,60.2,11.0,w,0.0,0.0,11838.9786138276,11838.98,10000.0,1838.98,0.0,0.0,0.0,Oct-2018,4119.7,,Mar-2019,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,142477.0,0.0,1.0,0.0,1.0,23.0,14918.0,80.0,1.0,3.0,2437.0,72.0,13400.0,1.0,0.0,2.0,4.0,17810.0,4242.0,64.4,0.0,0.0,82.0,65.0,10.0,10.0,2.0,19.0,,0.0,,0.0,4.0,5.0,4.0,5.0,3.0,5.0,6.0,5.0,8.0,0.0,0.0,0.0,1.0,81.8,25.0,0.0,0.0,180149.0,22985.0,11900.0,18749.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90332001,,12225.0,12225.0,12225.0, 36 months,19.99,454.27,D,D4,,,MORTGAGE,36000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90332001,,debt_consolidation,Debt consolidation,710xx,LA,8.2,0.0,Jun-2010,695.0,699.0,0.0,,,3.0,0.0,8265.0,97.2,6.0,f,2977.84,2977.84,13160.25,13160.25,9247.16,3913.09,0.0,0.0,0.0,Mar-2019,454.27,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,25.0,181955.0,0.0,0.0,0.0,0.0,38.0,0.0,,0.0,0.0,7929.0,97.0,8500.0,0.0,1.0,0.0,1.0,60652.0,235.0,97.2,0.0,0.0,75.0,66.0,31.0,14.0,1.0,31.0,,16.0,,0.0,2.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,3.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,185500.0,8265.0,8500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90681407,,10000.0,10000.0,10000.0, 36 months,15.59,349.55,C,C5,Executive Secretary,10+ years,RENT,58000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90681407,,credit_card,Credit card refinancing,956xx,CA,18.83,0.0,Jan-2007,660.0,664.0,0.0,,91.0,5.0,1.0,7267.0,76.5,7.0,f,2324.47,2324.47,10128.29,10128.29,7675.53,2452.76,0.0,0.0,0.0,Mar-2019,349.55,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,35103.0,1.0,2.0,2.0,3.0,6.0,27836.0,87.0,0.0,2.0,3935.0,84.0,9500.0,1.0,0.0,0.0,5.0,7021.0,2233.0,76.5,0.0,0.0,17.0,116.0,13.0,6.0,0.0,13.0,,17.0,,0.0,3.0,3.0,3.0,3.0,3.0,3.0,4.0,3.0,5.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,1.0,41625.0,35103.0,9500.0,32125.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90194989,,9600.0,9600.0,9600.0, 36 months,14.49,330.4,C,C4,Bus Attendance,8 years,RENT,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90194989,,home_improvement,Home improvement,207xx,MD,9.16,1.0,Apr-1994,660.0,664.0,1.0,23.0,,9.0,0.0,3704.0,51.4,22.0,f,0.0,0.0,11571.3599672276,11571.36,9600.0,1971.36,0.0,0.0,0.0,Sep-2018,4310.29,,Sep-2018,634.0,630.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,241123.0,2.0,2.0,0.0,0.0,71.0,34966.0,165.0,2.0,4.0,1262.0,136.0,7200.0,0.0,0.0,2.0,4.0,26791.0,1035.0,63.0,0.0,0.0,131.0,269.0,0.0,0.0,3.0,1.0,74.0,1.0,74.0,5.0,2.0,4.0,3.0,7.0,6.0,6.0,13.0,4.0,9.0,0.0,0.0,1.0,2.0,63.6,66.7,0.0,0.0,265049.0,38670.0,2800.0,21228.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90119439,,19775.0,19775.0,19750.0, 36 months,14.49,680.58,C,C4,Agent,2 years,MORTGAGE,43000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90119439,,debt_consolidation,Debt consolidation,279xx,NC,7.59,0.0,Aug-1972,660.0,664.0,3.0,61.0,61.0,7.0,1.0,4410.0,56.5,20.0,f,0.0,0.0,22628.1551787765,22599.55,19775.0,2853.16,0.0,0.0,0.0,Nov-2017,14397.53,,Jan-2019,589.0,585.0,0.0,61.0,1.0,Individual,,,,0.0,0.0,267128.0,2.0,1.0,2.0,3.0,8.0,2718.0,89.0,1.0,4.0,3898.0,66.0,7800.0,2.0,0.0,7.0,8.0,44521.0,2688.0,59.3,0.0,0.0,116.0,529.0,6.0,1.0,2.0,20.0,61.0,0.0,61.0,3.0,2.0,3.0,2.0,7.0,6.0,5.0,12.0,3.0,7.0,0.0,0.0,0.0,4.0,89.5,0.0,1.0,0.0,270867.0,7128.0,6600.0,3067.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90409958,,3200.0,3200.0,3200.0, 36 months,8.59,101.15,A,A5,,,MORTGAGE,30000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90409958,,medical,Medical expenses,206xx,MD,32.0,0.0,Apr-2002,735.0,739.0,0.0,,,8.0,0.0,8070.0,39.2,15.0,w,688.19,688.19,2931.82,2931.82,2511.81,420.01,0.0,0.0,0.0,Mar-2019,101.15,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,75609.0,0.0,2.0,0.0,1.0,23.0,17029.0,52.0,0.0,0.0,3540.0,47.0,20600.0,0.0,0.0,0.0,1.0,9451.0,5773.0,54.2,0.0,0.0,173.0,156.0,82.0,23.0,1.0,118.0,,,,0.0,3.0,5.0,3.0,3.0,6.0,5.0,8.0,5.0,8.0,0.0,0.0,0.0,0.0,100.0,0.0,0.0,0.0,107579.0,25099.0,12600.0,32579.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90651473,,14700.0,14700.0,14700.0, 36 months,13.49,498.78,C,C2,PCT,10+ years,MORTGAGE,35000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90651473,,home_improvement,Home improvement,631xx,MO,10.05,2.0,Apr-2004,680.0,684.0,0.0,13.0,,4.0,0.0,2143.0,29.8,9.0,f,3339.51,3339.51,14453.6,14453.6,11360.49,3093.11,0.0,0.0,0.0,Mar-2019,498.78,Apr-2019,Mar-2019,729.0,725.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,3781.0,1.0,1.0,0.0,0.0,30.0,1638.0,26.0,1.0,1.0,1070.0,28.0,7200.0,0.0,0.0,0.0,1.0,945.0,4554.0,26.5,0.0,0.0,149.0,130.0,5.0,5.0,0.0,5.0,,,24.0,0.0,2.0,3.0,2.0,3.0,4.0,3.0,5.0,3.0,4.0,0.0,0.0,0.0,1.0,66.7,0.0,0.0,0.0,13425.0,3781.0,6200.0,6225.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90551462,,24000.0,24000.0,24000.0, 60 months,19.99,635.72,D,D4,"Associate Director, Network Contracting",5 years,OWN,104873.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90551462,,debt_consolidation,Debt consolidation,234xx,VA,15.46,0.0,Jun-1997,670.0,674.0,1.0,66.0,,16.0,0.0,23067.0,52.1,27.0,f,15295.29,15295.29,18409.23,18409.23,8704.71,9704.52,0.0,0.0,0.0,Mar-2019,635.72,Apr-2019,Mar-2019,719.0,715.0,0.0,66.0,1.0,Individual,,,,0.0,0.0,351102.0,3.0,3.0,0.0,1.0,21.0,30749.0,63.0,1.0,2.0,9951.0,55.0,44300.0,2.0,0.0,4.0,5.0,21944.0,4998.0,79.5,0.0,0.0,155.0,231.0,1.0,1.0,3.0,26.0,,1.0,,1.0,4.0,9.0,4.0,5.0,6.0,12.0,18.0,9.0,16.0,0.0,0.0,0.0,3.0,96.3,50.0,0.0,0.0,400463.0,53816.0,24400.0,58877.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229096,,23000.0,23000.0,23000.0, 36 months,16.99,819.9,D,D1,Respiratory therapist,1 year,MORTGAGE,105000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229096,,debt_consolidation,Debt consolidation,925xx,CA,9.61,0.0,Jul-2004,675.0,679.0,1.0,30.0,,6.0,0.0,18862.0,79.9,19.0,f,0.0,0.0,24574.141427015402,24574.14,23000.0,1574.14,0.0,0.0,0.0,Mar-2017,21316.25,,Mar-2017,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,388633.0,2.0,1.0,1.0,1.0,4.0,18708.0,98.0,0.0,2.0,2649.0,88.0,23600.0,3.0,4.0,3.0,5.0,64772.0,251.0,91.3,0.0,0.0,146.0,123.0,15.0,1.0,5.0,105.0,30.0,3.0,30.0,0.0,1.0,4.0,1.0,2.0,5.0,4.0,9.0,4.0,6.0,0.0,0.0,0.0,2.0,94.7,100.0,0.0,0.0,395806.0,37570.0,2900.0,19072.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90621506,,20800.0,20800.0,20800.0, 36 months,21.49,788.89,D,D5,Contract Specialist,1 year,RENT,94000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90621506,,debt_consolidation,Debt consolidation,206xx,MD,13.52,0.0,Feb-1989,680.0,684.0,3.0,25.0,25.0,25.0,1.0,22361.0,39.9,51.0,w,0.0,0.0,24472.8024761648,24472.8,20800.0,3672.8,0.0,0.0,0.0,Sep-2017,16397.62,,Feb-2019,614.0,610.0,0.0,65.0,1.0,Individual,,,,0.0,938.0,87467.0,4.0,1.0,0.0,0.0,34.0,65106.0,,6.0,6.0,5204.0,40.0,56000.0,2.0,3.0,7.0,6.0,4604.0,18601.0,34.7,0.0,0.0,191.0,331.0,1.0,1.0,0.0,1.0,72.0,0.0,25.0,2.0,6.0,10.0,7.0,14.0,9.0,22.0,42.0,10.0,25.0,0.0,0.0,0.0,6.0,87.0,28.6,0.0,0.0,110176.0,87467.0,28500.0,54176.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694318,,16500.0,16500.0,16500.0, 36 months,12.79,554.29,C,C1,Assistant Director,9 years,MORTGAGE,58650.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694318,,debt_consolidation,Debt consolidation,890xx,NV,30.33,0.0,Mar-1996,665.0,669.0,0.0,,101.0,13.0,1.0,15454.0,83.1,19.0,f,3719.47,3719.47,16062.69,16062.69,12780.53,3282.16,0.0,0.0,0.0,Mar-2019,554.29,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,32082.0,1.0,2.0,0.0,0.0,32.0,16628.0,40.0,1.0,2.0,6466.0,53.0,18600.0,0.0,0.0,0.0,2.0,2917.0,106.0,99.0,0.0,0.0,42.0,246.0,1.0,1.0,0.0,48.0,,,,0.0,3.0,9.0,3.0,5.0,2.0,11.0,17.0,9.0,13.0,0.0,0.0,0.0,1.0,100.0,100.0,1.0,0.0,60415.0,32082.0,10600.0,41815.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693354,,6400.0,6400.0,6400.0, 36 months,23.99,251.06,E,E2,maintenance Engineer,2 years,OWN,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693354,,small_business,Business,761xx,TX,18.96,0.0,Jun-2004,715.0,719.0,0.0,32.0,,11.0,0.0,3036.0,37.5,37.0,w,0.0,0.0,8632.08249072,8632.08,6400.0,2232.08,0.0,0.0,0.0,Sep-2018,3117.29,,Mar-2019,659.0,655.0,0.0,44.0,1.0,Individual,,,,0.0,0.0,152952.0,0.0,3.0,1.0,2.0,8.0,26874.0,89.0,0.0,3.0,1888.0,78.0,8100.0,10.0,3.0,15.0,5.0,13905.0,4464.0,40.5,1.0,0.0,135.0,141.0,17.0,8.0,3.0,17.0,43.0,0.0,43.0,7.0,3.0,3.0,4.0,11.0,11.0,6.0,21.0,3.0,11.0,0.0,0.0,0.0,1.0,81.8,0.0,0.0,0.0,201716.0,29910.0,7500.0,30116.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90631502,,2400.0,2400.0,2400.0, 36 months,5.32,72.28,A,A1,,,MORTGAGE,73000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90631502,,home_improvement,Home improvement,726xx,AR,17.69,0.0,Mar-2003,740.0,744.0,1.0,69.0,,15.0,0.0,2443.0,4.5,42.0,w,0.0,0.0,2400.71,2400.71,2400.0,0.71,0.0,0.0,0.0,Oct-2016,2401.42,,Mar-2019,624.0,620.0,0.0,69.0,1.0,Individual,,,,0.0,0.0,218777.0,2.0,2.0,1.0,1.0,1.0,9643.0,22.0,0.0,3.0,2336.0,12.0,53900.0,0.0,4.0,3.0,5.0,16829.0,50457.0,4.6,0.0,0.0,162.0,134.0,15.0,1.0,5.0,15.0,69.0,1.0,69.0,0.0,2.0,2.0,9.0,21.0,11.0,12.0,26.0,2.0,15.0,0.0,0.0,0.0,2.0,95.2,0.0,0.0,0.0,306794.0,12086.0,52900.0,44944.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441274,,12000.0,12000.0,12000.0, 36 months,13.99,410.08,C,C3,Administrative assistant ,1 year,RENT,47000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441274,,credit_card,Credit card refinancing,581xx,MT,31.79,0.0,Feb-2002,700.0,704.0,0.0,42.0,80.0,13.0,1.0,18348.0,63.3,28.0,f,0.0,0.0,13982.1149682455,13982.11,12000.0,1982.11,0.0,0.0,0.0,Mar-2018,7430.16,,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,43223.0,0.0,2.0,0.0,3.0,15.0,24875.0,79.0,0.0,2.0,14547.0,71.0,29000.0,1.0,2.0,2.0,5.0,3929.0,7109.0,70.3,0.0,0.0,166.0,175.0,21.0,15.0,1.0,35.0,42.0,10.0,42.0,0.0,4.0,6.0,5.0,5.0,7.0,11.0,20.0,6.0,13.0,0.0,0.0,0.0,0.0,96.4,20.0,0.0,0.0,60653.0,43223.0,23900.0,31653.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591214,,9975.0,9975.0,9975.0, 36 months,18.99,365.6,D,D3,Equipment operator,10+ years,RENT,60000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591214,,debt_consolidation,Debt consolidation,940xx,CA,15.8,0.0,Nov-2005,665.0,669.0,0.0,25.0,91.0,10.0,1.0,4517.0,46.6,16.0,w,0.0,0.0,11656.6713148249,11656.67,9975.0,1681.67,0.0,0.0,0.0,Oct-2017,7645.59,,Oct-2017,679.0,675.0,0.0,25.0,1.0,Individual,,,,0.0,846.0,23394.0,2.0,2.0,2.0,2.0,11.0,18877.0,87.0,3.0,3.0,1554.0,74.0,9700.0,0.0,1.0,2.0,5.0,2599.0,1594.0,68.7,0.0,0.0,122.0,130.0,5.0,5.0,1.0,5.0,25.0,11.0,25.0,1.0,3.0,5.0,3.0,5.0,3.0,8.0,12.0,5.0,10.0,0.0,0.0,0.0,5.0,87.5,33.3,1.0,0.0,31478.0,23394.0,5100.0,21778.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90661478,,32000.0,32000.0,32000.0, 60 months,21.49,874.56,D,D5,"RN, Med-Surg Manager",< 1 year,MORTGAGE,130000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661478,,debt_consolidation,Debt consolidation,959xx,CA,13.99,0.0,Aug-2005,670.0,674.0,0.0,,70.0,33.0,1.0,25034.0,35.1,42.0,w,0.0,0.0,20208.09,20208.09,6752.43,9826.01,0.0,3629.65,326.6685,May-2018,874.56,,Nov-2018,554.0,550.0,1.0,,1.0,Individual,,,,0.0,150.0,276189.0,4.0,5.0,1.0,5.0,3.0,74110.0,94.0,5.0,19.0,5509.0,60.0,71300.0,1.0,2.0,7.0,25.0,8631.0,26036.0,37.7,0.0,0.0,115.0,133.0,3.0,3.0,2.0,3.0,,5.0,,0.0,7.0,10.0,13.0,15.0,11.0,27.0,29.0,10.0,33.0,0.0,0.0,0.0,6.0,100.0,16.7,1.0,0.0,344285.0,99144.0,41800.0,91262.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90591257,,25000.0,25000.0,25000.0, 60 months,13.49,575.12,C,C2,HR Benefit Leader,< 1 year,MORTGAGE,85000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90591257,,debt_consolidation,Debt consolidation,630xx,MO,14.16,0.0,Oct-1992,665.0,669.0,0.0,,,8.0,0.0,24514.0,58.6,21.0,f,0.0,0.0,29068.101209747798,29068.1,25000.0,4068.1,0.0,0.0,0.0,Feb-2018,20460.04,,Feb-2018,764.0,760.0,0.0,,1.0,Individual,,,,0.0,146.0,40524.0,0.0,1.0,0.0,1.0,17.0,16010.0,76.0,0.0,1.0,10509.0,65.0,41800.0,1.0,2.0,0.0,2.0,5789.0,16053.0,47.7,0.0,0.0,150.0,287.0,24.0,17.0,1.0,62.0,,14.0,,0.0,2.0,4.0,4.0,7.0,8.0,7.0,12.0,4.0,8.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,62800.0,40524.0,30700.0,21000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561309,,27600.0,27600.0,27600.0, 60 months,24.99,809.94,E,E4,City Letter Carrier,10+ years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561309,,other,Other,481xx,MI,10.01,0.0,Sep-1993,660.0,664.0,0.0,,51.0,5.0,2.0,2077.0,5.7,13.0,w,18362.89,18362.89,23449.94,23449.94,9237.11,14212.83,0.0,0.0,0.0,Mar-2019,809.94,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,14030.0,0.0,1.0,1.0,1.0,10.0,11953.0,70.0,0.0,1.0,1183.0,26.0,36500.0,2.0,0.0,7.0,2.0,2806.0,26523.0,7.3,0.0,0.0,135.0,276.0,13.0,10.0,0.0,13.0,,2.0,,0.0,2.0,2.0,3.0,6.0,5.0,4.0,8.0,2.0,5.0,0.0,0.0,0.0,1.0,100.0,0.0,2.0,0.0,53660.0,14030.0,28600.0,17160.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90071483,,11000.0,11000.0,11000.0, 36 months,16.99,392.13,D,D1,Administrative Coordinator,2 years,OWN,22000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90071483,,debt_consolidation,Debt consolidation,705xx,LA,32.68,0.0,Sep-2005,680.0,684.0,0.0,,,5.0,0.0,7553.0,55.5,19.0,f,2595.63,2595.63,11361.39,11361.39,8404.37,2957.02,0.0,0.0,0.0,Mar-2019,392.13,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,600.0,10440.0,0.0,1.0,0.0,0.0,40.0,2887.0,17.0,1.0,3.0,4708.0,34.0,13600.0,0.0,0.0,0.0,3.0,2088.0,1114.0,85.9,0.0,0.0,132.0,116.0,10.0,10.0,0.0,18.0,,13.0,,0.0,2.0,4.0,2.0,4.0,10.0,4.0,9.0,4.0,5.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,30985.0,10440.0,7900.0,17385.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90217433,,35000.0,35000.0,35000.0, 36 months,14.49,1204.57,C,C4,Financial Advisor,8 years,MORTGAGE,306000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90217433,,credit_card,Credit card refinancing,917xx,CA,25.27,2.0,Jul-1990,705.0,709.0,1.0,19.0,,10.0,0.0,45893.0,66.6,22.0,f,8038.78,8038.78,34904.35,34904.35,26961.22,7943.13,0.0,0.0,0.0,Mar-2019,1204.57,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,141104.0,0.0,5.0,1.0,1.0,12.0,52013.0,38.0,0.0,0.0,20386.0,48.0,68900.0,1.0,0.0,1.0,1.0,14110.0,23007.0,66.6,0.0,0.0,176.0,314.0,117.0,12.0,2.0,199.0,19.0,4.0,19.0,0.0,4.0,4.0,4.0,5.0,9.0,4.0,10.0,4.0,10.0,0.0,0.0,0.0,1.0,86.4,50.0,0.0,0.0,254616.0,141104.0,68900.0,136549.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90204297,,14700.0,14700.0,14700.0, 60 months,18.99,381.25,D,D3,Head cashier,10+ years,MORTGAGE,35000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90204297,,debt_consolidation,Debt consolidation,855xx,AZ,17.76,0.0,Aug-1999,675.0,679.0,0.0,28.0,12.0,6.0,1.0,18078.0,66.0,11.0,f,0.0,0.0,9227.54,9227.54,4298.09,4929.45,0.0,0.0,0.0,Oct-2018,381.25,,Mar-2019,509.0,505.0,0.0,,1.0,Individual,,,,0.0,108.0,118592.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,10702.0,66.0,27400.0,0.0,0.0,0.0,0.0,19765.0,8522.0,67.6,0.0,0.0,,205.0,66.0,66.0,3.0,122.0,,,41.0,0.0,4.0,5.0,4.0,7.0,0.0,5.0,8.0,5.0,6.0,0.0,0.0,0.0,0.0,81.8,75.0,0.0,0.0,141191.0,18078.0,26300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90182232,,28000.0,28000.0,28000.0, 36 months,15.59,978.74,C,C5,Regional HR Manager,10+ years,MORTGAGE,150000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90182232,,debt_consolidation,Debt consolidation,549xx,WI,15.16,0.0,Sep-2001,665.0,669.0,1.0,,,18.0,0.0,52819.0,61.4,36.0,f,0.0,0.0,33091.8258398599,33091.83,28000.0,5091.83,0.0,0.0,0.0,Mar-2018,17456.24,,Mar-2019,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,85266.0,1.0,1.0,0.0,2.0,14.0,32447.0,,2.0,6.0,14065.0,61.0,86000.0,4.0,0.0,2.0,8.0,5016.0,11061.0,75.5,0.0,0.0,166.0,180.0,2.0,2.0,2.0,12.0,,2.0,,0.0,7.0,14.0,7.0,9.0,10.0,17.0,24.0,14.0,18.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,126803.0,85266.0,45200.0,40803.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403347,,32400.0,32400.0,32150.0, 60 months,26.49,979.5,F,F2,General Manager,3 years,RENT,85000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403347,,debt_consolidation,Debt consolidation,773xx,TX,23.8,0.0,Jun-1998,660.0,664.0,2.0,47.0,,14.0,0.0,21079.0,59.5,31.0,f,0.0,0.0,44345.6287862979,44003.46,32400.0,11945.63,0.0,0.0,0.0,Apr-2018,27694.13,,Mar-2019,709.0,705.0,0.0,,1.0,Joint App,141000.0,15.57,Not Verified,0.0,0.0,63925.0,2.0,3.0,0.0,2.0,16.0,42846.0,73.0,3.0,3.0,4079.0,68.0,35400.0,2.0,1.0,2.0,5.0,4566.0,728.0,94.8,0.0,0.0,154.0,219.0,2.0,2.0,1.0,2.0,,3.0,47.0,0.0,5.0,10.0,5.0,7.0,11.0,11.0,19.0,10.0,14.0,0.0,0.0,0.0,3.0,90.3,100.0,0.0,0.0,94277.0,63925.0,14100.0,58877.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90159459,,18000.0,18000.0,18000.0, 36 months,21.49,682.69,D,D5,Corrections Officer,4 years,MORTGAGE,60000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90159459,,debt_consolidation,Debt consolidation,809xx,CO,27.14,0.0,Sep-2009,680.0,684.0,1.0,70.0,,22.0,0.0,6317.0,29.0,42.0,f,0.0,0.0,5664.72,5664.72,1867.4,1524.56,0.0,2272.76,409.0968,Mar-2017,682.69,,Sep-2017,534.0,530.0,0.0,70.0,1.0,Individual,,,,0.0,280.0,131395.0,3.0,3.0,1.0,5.0,5.0,125078.0,84.0,4.0,10.0,456.0,60.0,21800.0,0.0,4.0,3.0,15.0,6257.0,5544.0,7.6,0.0,0.0,79.0,72.0,1.0,1.0,0.0,1.0,,2.0,,1.0,1.0,4.0,8.0,9.0,21.0,19.0,20.0,4.0,22.0,0.0,0.0,0.0,5.0,97.6,0.0,0.0,0.0,157376.0,131395.0,6000.0,135576.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90251436,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Patient Register ,10+ years,OWN,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90251436,,debt_consolidation,Debt consolidation,277xx,NC,25.59,2.0,Jun-2003,720.0,724.0,1.0,15.0,,21.0,0.0,1541.0,6.3,32.0,f,0.0,0.0,10182.95,10182.95,10000.0,182.95,0.0,0.0,0.0,Nov-2016,10192.39,,Mar-2019,659.0,655.0,0.0,74.0,1.0,Individual,,,,0.0,0.0,26353.0,4.0,3.0,3.0,3.0,1.0,24812.0,90.0,3.0,10.0,625.0,51.0,24300.0,4.0,5.0,1.0,13.0,1255.0,14697.0,5.2,0.0,0.0,159.0,107.0,1.0,1.0,0.0,14.0,,2.0,15.0,1.0,2.0,5.0,4.0,4.0,10.0,18.0,22.0,5.0,21.0,0.0,0.0,0.0,6.0,75.0,0.0,0.0,0.0,51900.0,26353.0,15500.0,27600.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695153,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,School Bus Driver,10+ years,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695153,,debt_consolidation,Debt consolidation,440xx,OH,13.23,0.0,Oct-1998,670.0,674.0,0.0,,73.0,6.0,1.0,11731.0,45.3,25.0,f,0.0,0.0,18096.5455211844,18096.55,15000.0,3096.55,0.0,0.0,0.0,Sep-2018,6705.0,,Sep-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,14264.0,0.0,1.0,1.0,2.0,9.0,2533.0,63.0,1.0,2.0,8084.0,48.0,25900.0,1.0,5.0,1.0,4.0,2377.0,4179.0,73.7,0.0,0.0,168.0,195.0,10.0,9.0,1.0,22.0,,9.0,,0.0,3.0,4.0,3.0,7.0,13.0,5.0,10.0,4.0,6.0,0.0,0.0,0.0,2.0,100.0,66.7,1.0,0.0,29900.0,14264.0,15900.0,4000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90601460,,12800.0,12800.0,12800.0, 36 months,11.49,422.04,B,B5,,,OWN,42200.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90601460,,debt_consolidation,Debt consolidation,640xx,MO,30.43,0.0,Jul-1985,710.0,714.0,1.0,,74.0,10.0,2.0,18294.0,47.4,29.0,w,0.0,0.0,2511.81,2511.81,1840.45,671.36,0.0,0.0,0.0,Apr-2017,422.04,,Jun-2017,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,42927.0,3.0,2.0,0.0,0.0,35.0,24633.0,58.0,3.0,3.0,12437.0,53.0,38600.0,0.0,0.0,1.0,3.0,4770.0,13381.0,57.0,0.0,0.0,137.0,374.0,2.0,2.0,2.0,4.0,,2.0,,0.0,3.0,4.0,4.0,9.0,5.0,8.0,22.0,4.0,10.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,2.0,80753.0,42927.0,31100.0,42153.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90601271,,11200.0,11200.0,11200.0, 36 months,10.99,366.63,B,B4,Team Lead,1 year,RENT,60000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90601271,,debt_consolidation,Debt consolidation,841xx,UT,17.21,0.0,Dec-2010,695.0,699.0,2.0,,,11.0,0.0,17008.0,41.3,17.0,w,0.0,0.0,12039.991451978898,12039.99,11200.0,839.99,0.0,0.0,0.0,Jun-2017,9143.84,,Nov-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,52024.0,2.0,2.0,1.0,1.0,11.0,35016.0,97.0,2.0,4.0,8165.0,67.0,41200.0,1.0,9.0,3.0,5.0,4729.0,15883.0,48.3,0.0,0.0,64.0,69.0,0.0,0.0,0.0,5.0,,4.0,,0.0,3.0,7.0,3.0,3.0,8.0,9.0,9.0,7.0,11.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,77450.0,52024.0,30700.0,36250.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90692473,,5000.0,5000.0,5000.0, 36 months,13.99,170.87,C,C3,ADMIN OFFICE SUPPORT ASST,10+ years,MORTGAGE,47500.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90692473,,debt_consolidation,Debt consolidation,630xx,MO,16.09,1.0,Apr-1990,660.0,664.0,2.0,12.0,87.0,21.0,1.0,4508.0,40.3,26.0,w,0.0,0.0,3916.59,3916.59,2661.06,927.47,0.0,328.06,59.0508,Jul-2018,170.87,,Jan-2019,594.0,590.0,0.0,12.0,1.0,Individual,,,,0.0,2291.0,8509.0,3.0,3.0,2.0,4.0,1.0,4001.0,78.0,4.0,15.0,1317.0,52.0,11200.0,3.0,3.0,5.0,19.0,425.0,2083.0,55.7,1.0,0.0,34.0,317.0,0.0,0.0,0.0,12.0,46.0,1.0,46.0,3.0,5.0,10.0,5.0,6.0,6.0,18.0,20.0,10.0,21.0,0.0,0.0,1.0,6.0,88.5,0.0,1.0,0.0,16332.0,8509.0,4700.0,5132.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90531328,,6400.0,6400.0,6400.0, 36 months,21.49,242.74,D,D5,Reserve Counsler,10+ years,RENT,50500.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90531328,,other,Other,967xx,HI,10.6,3.0,Mar-2005,670.0,674.0,1.0,9.0,,3.0,0.0,792.0,31.7,17.0,w,0.0,0.0,6907.6012074198,6907.6,6400.0,492.6,15.0,0.0,0.0,Feb-2017,6672.5,,Dec-2017,624.0,620.0,0.0,9.0,1.0,Individual,,,,0.0,0.0,16183.0,0.0,2.0,0.0,2.0,13.0,15391.0,79.0,0.0,1.0,792.0,74.0,2500.0,2.0,4.0,2.0,3.0,5394.0,1708.0,31.7,0.0,0.0,120.0,138.0,21.0,13.0,1.0,21.0,12.0,0.0,12.0,2.0,1.0,1.0,1.0,2.0,11.0,1.0,5.0,1.0,3.0,0.0,0.0,1.0,0.0,71.4,0.0,0.0,0.0,21918.0,16183.0,2500.0,19418.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90695390,,5875.0,5875.0,5875.0, 36 months,10.99,192.32,B,B4,install tech,2 years,RENT,45000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90695390,,debt_consolidation,Debt consolidation,992xx,WA,6.11,0.0,Oct-2004,670.0,674.0,0.0,,37.0,5.0,1.0,2315.0,52.6,12.0,w,1297.93,1297.93,5573.69,5573.69,4577.07,996.62,0.0,0.0,0.0,Mar-2019,192.32,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,745.0,6379.0,1.0,1.0,0.0,1.0,22.0,4064.0,61.0,1.0,3.0,981.0,58.0,4400.0,0.0,1.0,0.0,4.0,1276.0,2085.0,52.6,0.0,0.0,143.0,138.0,5.0,5.0,0.0,5.0,,13.0,,0.0,3.0,3.0,4.0,6.0,2.0,4.0,10.0,3.0,5.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,1.0,11045.0,6379.0,4400.0,6645.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90471411,,7500.0,7500.0,7500.0, 36 months,16.99,267.36,D,D1,Estimator / Buyer,10+ years,MORTGAGE,64000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90471411,,debt_consolidation,Debt consolidation,014xx,MA,17.94,0.0,Jun-2004,660.0,664.0,3.0,43.0,44.0,13.0,1.0,7213.0,26.5,31.0,f,1769.8,1769.8,7746.36,7746.36,5730.2,2016.16,0.0,0.0,0.0,Mar-2019,267.36,Apr-2019,Mar-2019,669.0,665.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,178409.0,5.0,2.0,2.0,2.0,6.0,32386.0,94.0,3.0,6.0,784.0,64.0,27200.0,5.0,4.0,7.0,9.0,13724.0,13067.0,11.1,0.0,0.0,147.0,145.0,1.0,1.0,5.0,1.0,43.0,1.0,43.0,0.0,4.0,9.0,4.0,10.0,8.0,10.0,18.0,9.0,13.0,0.0,0.0,0.0,6.0,96.3,0.0,1.0,0.0,201537.0,39599.0,14700.0,34333.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90661382,,20000.0,20000.0,20000.0, 60 months,9.49,419.94,B,B2,Field Coordinartor,10+ years,MORTGAGE,130000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90661382,,debt_consolidation,Debt consolidation,826xx,WY,9.43,0.0,Jul-1994,715.0,719.0,0.0,,,8.0,0.0,24809.0,67.6,20.0,w,11505.06,11505.06,12230.98,12230.98,8494.94,3736.04,0.0,0.0,0.0,Mar-2019,419.94,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,254219.0,0.0,1.0,0.0,0.0,29.0,10757.0,48.0,1.0,2.0,12632.0,60.0,36700.0,0.0,0.0,2.0,3.0,31777.0,991.0,95.1,0.0,0.0,232.0,266.0,9.0,9.0,1.0,22.0,,9.0,,0.0,2.0,4.0,2.0,6.0,6.0,6.0,13.0,4.0,8.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,280468.0,35566.0,20100.0,22418.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441372,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,FInancial Crimes Specalist 2,1 year,RENT,32000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441372,,debt_consolidation,Debt consolidation,282xx,NC,27.49,1.0,Jan-2009,670.0,674.0,0.0,8.0,,19.0,0.0,6722.0,56.5,30.0,f,0.0,0.0,12442.844841228702,12442.84,10000.0,2442.84,0.0,0.0,0.0,Sep-2018,4609.72,,Oct-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,61318.0,0.0,14.0,0.0,0.0,25.0,54596.0,95.0,0.0,1.0,2757.0,88.0,11900.0,1.0,0.0,2.0,1.0,3227.0,2296.0,74.2,0.0,0.0,92.0,69.0,14.0,14.0,0.0,14.0,,3.0,,0.0,4.0,5.0,4.0,4.0,25.0,5.0,5.0,5.0,19.0,0.0,0.0,0.0,0.0,96.4,25.0,0.0,0.0,69363.0,61318.0,8900.0,57463.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491429,,35000.0,35000.0,35000.0, 60 months,8.99,726.38,B,B1,Principal,3 years,MORTGAGE,200000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491429,,home_improvement,Home improvement,774xx,TX,11.67,0.0,Dec-1975,700.0,704.0,0.0,46.0,,6.0,0.0,9727.0,41.4,26.0,w,20027.18,20027.18,21130.39,21130.39,14972.82,6157.57,0.0,0.0,0.0,Mar-2019,726.38,Apr-2019,Mar-2019,774.0,770.0,0.0,59.0,1.0,Individual,,,,0.0,0.0,477098.0,1.0,1.0,1.0,1.0,4.0,52817.0,,0.0,1.0,8434.0,52.0,23500.0,1.0,0.0,1.0,4.0,79516.0,13773.0,41.4,0.0,0.0,173.0,489.0,24.0,4.0,3.0,24.0,74.0,4.0,74.0,4.0,3.0,3.0,3.0,5.0,15.0,3.0,7.0,3.0,6.0,0.0,0.0,0.0,1.0,65.4,0.0,0.0,0.0,500273.0,67728.0,23500.0,54589.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90491453,,35000.0,35000.0,35000.0, 60 months,8.59,719.6,A,A5,Director,1 year,MORTGAGE,235000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90491453,,debt_consolidation,Debt consolidation,460xx,IN,5.6,0.0,Jun-1998,705.0,709.0,0.0,44.0,76.0,10.0,1.0,31439.0,52.9,32.0,w,19942.03,19942.03,20866.9,20866.9,15057.97,5808.93,0.0,0.0,0.0,Mar-2019,719.6,Apr-2019,Mar-2019,699.0,695.0,0.0,64.0,1.0,Individual,,,,0.0,0.0,380281.0,0.0,2.0,1.0,1.0,11.0,123077.0,,0.0,1.0,15699.0,53.0,59400.0,2.0,10.0,0.0,3.0,38028.0,15466.0,66.4,0.0,0.0,149.0,126.0,18.0,11.0,5.0,18.0,44.0,16.0,44.0,1.0,2.0,3.0,3.0,6.0,16.0,6.0,10.0,3.0,10.0,0.0,0.0,0.0,1.0,83.9,66.7,0.0,1.0,426373.0,161804.0,46000.0,115942.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641305,,6450.0,6450.0,6450.0, 36 months,18.99,236.4,D,D3,911 Telecommunicator / Dispatcher,2 years,RENT,52000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641305,,debt_consolidation,Debt consolidation,087xx,NJ,14.65,0.0,Feb-2004,660.0,664.0,0.0,24.0,44.0,6.0,1.0,2484.0,65.4,13.0,f,1555.21,1555.21,6874.31,6874.31,4894.79,1979.52,0.0,0.0,0.0,Mar-2019,236.4,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,27885.0,1.0,1.0,1.0,2.0,3.0,25401.0,97.0,3.0,3.0,1020.0,93.0,3800.0,2.0,0.0,3.0,5.0,4648.0,446.0,82.8,0.0,0.0,121.0,151.0,7.0,3.0,1.0,9.0,24.0,3.0,24.0,0.0,3.0,5.0,3.0,7.0,3.0,5.0,9.0,5.0,6.0,0.0,0.0,0.0,4.0,84.6,100.0,0.0,0.0,30067.0,27885.0,2600.0,26267.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427759,,15000.0,15000.0,15000.0, 60 months,25.69,446.36,F,F1,Security Officer,4 years,MORTGAGE,68000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427759,,home_improvement,Home improvement,339xx,FL,15.43,0.0,Nov-2000,670.0,674.0,0.0,57.0,,15.0,0.0,9658.0,42.4,22.0,f,10037.34,10037.34,12923.03,12923.03,4962.66,7960.37,0.0,0.0,0.0,Mar-2019,446.36,Apr-2019,Mar-2019,584.0,580.0,0.0,57.0,1.0,Individual,,,,0.0,0.0,138834.0,0.0,2.0,1.0,3.0,11.0,19394.0,83.0,3.0,5.0,2221.0,63.0,22800.0,2.0,0.0,4.0,8.0,9917.0,450.0,90.2,0.0,0.0,20.0,190.0,8.0,8.0,2.0,46.0,57.0,0.0,57.0,2.0,3.0,8.0,3.0,7.0,3.0,12.0,17.0,8.0,15.0,0.0,0.0,0.0,4.0,90.9,100.0,0.0,0.0,161757.0,29052.0,4600.0,23357.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90242005,,24000.0,24000.0,24000.0, 60 months,17.99,609.32,D,D2,Tax Accountant ,10+ years,MORTGAGE,55537.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90242005,,debt_consolidation,Debt consolidation,727xx,AR,16.98,2.0,Sep-2001,685.0,689.0,0.0,21.0,,21.0,0.0,17554.0,74.7,41.0,f,0.0,0.0,29697.2448403227,29697.24,24000.0,5697.24,0.0,0.0,0.0,Mar-2018,19972.11,,Aug-2018,724.0,720.0,0.0,,1.0,Individual,,,,0.0,328.0,198996.0,0.0,13.0,0.0,0.0,37.0,45019.0,103.0,2.0,2.0,7298.0,93.0,23500.0,0.0,0.0,0.0,2.0,9476.0,1698.0,89.6,0.0,0.0,180.0,177.0,10.0,10.0,4.0,119.0,,13.0,,1.0,4.0,6.0,4.0,4.0,26.0,7.0,11.0,6.0,21.0,0.0,0.0,0.0,2.0,85.0,50.0,0.0,0.0,211326.0,62573.0,16400.0,43599.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90205391,,35000.0,35000.0,35000.0, 36 months,17.99,1265.16,D,D2,Consultant. Architect continuous improve,< 1 year,RENT,115000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90205391,,credit_card,Credit card refinancing,488xx,MI,25.07,0.0,Jan-1993,680.0,684.0,0.0,32.0,,6.0,0.0,37923.0,90.5,19.0,f,0.0,0.0,36321.4851792897,36321.49,35000.0,1321.49,0.0,0.0,0.0,Dec-2016,35091.31,,Mar-2019,829.0,825.0,0.0,32.0,1.0,Individual,,,,0.0,0.0,146073.0,0.0,3.0,1.0,1.0,11.0,108150.0,59.0,1.0,1.0,13912.0,75.0,41900.0,0.0,1.0,1.0,2.0,24346.0,3977.0,90.5,0.0,0.0,145.0,284.0,11.0,11.0,1.0,11.0,,11.0,,4.0,3.0,3.0,3.0,4.0,13.0,3.0,5.0,3.0,6.0,0.0,0.0,0.0,2.0,78.9,100.0,0.0,0.0,190173.0,146073.0,41900.0,148273.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90611254,,30000.0,30000.0,30000.0, 36 months,13.99,1025.19,C,C3,Sr. Sales Engineer,10+ years,RENT,135000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90611254,,debt_consolidation,Debt consolidation,117xx,NY,10.22,0.0,Feb-2001,690.0,694.0,0.0,24.0,,15.0,0.0,41392.0,51.0,31.0,f,0.0,0.0,13355.41,13355.41,9332.18,3971.97,51.26,0.0,0.0,Nov-2017,5177.21,,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,47203.0,3.0,2.0,1.0,2.0,6.0,5811.0,35.0,4.0,4.0,11545.0,48.0,90800.0,1.0,1.0,2.0,6.0,3372.0,48590.0,48.7,0.0,0.0,157.0,187.0,0.0,0.0,0.0,0.0,24.0,8.0,24.0,0.0,7.0,9.0,9.0,13.0,8.0,13.0,23.0,9.0,15.0,0.0,0.0,0.0,5.0,86.7,33.3,0.0,0.0,107225.0,47203.0,85900.0,16425.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90561214,,6000.0,6000.0,6000.0, 36 months,8.99,190.78,B,B1,Nurse Mgr,1 year,MORTGAGE,70000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90561214,,home_improvement,Home improvement,641xx,MO,14.81,1.0,Jul-2003,670.0,674.0,0.0,21.0,,12.0,0.0,11890.0,38.9,34.0,w,1295.95,1295.95,5529.62,5529.62,4704.05,825.57,0.0,0.0,0.0,Mar-2019,190.78,Apr-2019,Mar-2019,704.0,700.0,1.0,,1.0,Individual,,,,0.0,169.0,182755.0,1.0,2.0,1.0,2.0,4.0,67952.0,72.0,1.0,1.0,4420.0,48.0,30600.0,0.0,1.0,0.0,3.0,15230.0,6082.0,58.6,0.0,0.0,149.0,158.0,9.0,4.0,2.0,9.0,21.0,15.0,21.0,0.0,5.0,7.0,5.0,8.0,20.0,9.0,12.0,7.0,12.0,0.0,0.0,0.0,2.0,94.1,20.0,0.0,0.0,216703.0,79842.0,14700.0,71286.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90671232,,7500.0,7500.0,7500.0, 36 months,15.59,262.17,C,C5,Flight Attendant,10+ years,RENT,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90671232,,debt_consolidation,Debt consolidation,956xx,CA,17.33,1.0,Jun-1991,660.0,664.0,0.0,11.0,,15.0,0.0,6821.0,24.2,22.0,f,0.0,0.0,8590.474092390601,8590.47,7500.0,1090.47,0.0,0.0,0.0,Oct-2017,5682.05,,Mar-2019,589.0,585.0,1.0,11.0,1.0,Individual,,,,0.0,0.0,31443.0,3.0,2.0,1.0,1.0,6.0,24622.0,77.0,3.0,9.0,1520.0,52.0,28200.0,0.0,3.0,0.0,10.0,2096.0,13416.0,19.7,0.0,0.0,216.0,303.0,1.0,1.0,0.0,4.0,,15.0,72.0,2.0,3.0,10.0,4.0,4.0,5.0,13.0,16.0,10.0,15.0,0.0,0.0,1.0,4.0,81.8,75.0,0.0,0.0,60101.0,31443.0,16700.0,31901.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90693347,,32000.0,32000.0,32000.0, 60 months,8.99,664.12,B,B1,Registered Nurse,4 years,MORTGAGE,120000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90693347,,medical,Medical expenses,922xx,CA,7.33,0.0,Feb-1995,740.0,744.0,0.0,69.0,,13.0,0.0,39063.0,44.0,31.0,f,0.0,0.0,35114.6274626996,35114.63,32000.0,3114.63,0.0,0.0,0.0,Dec-2017,26521.03,,Dec-2017,784.0,780.0,0.0,69.0,1.0,Joint App,160000.0,7.83,Not Verified,0.0,0.0,574779.0,1.0,2.0,0.0,0.0,38.0,23382.0,93.0,2.0,5.0,6050.0,55.0,88800.0,0.0,0.0,1.0,7.0,44214.0,48686.0,11.2,0.0,0.0,47.0,259.0,2.0,2.0,7.0,2.0,,11.0,72.0,2.0,2.0,3.0,7.0,12.0,2.0,9.0,22.0,3.0,13.0,0.0,0.0,0.0,4.0,93.5,0.0,0.0,0.0,641855.0,62445.0,54800.0,25196.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641281,,35000.0,35000.0,35000.0, 36 months,13.49,1187.57,C,C2,RN,10+ years,MORTGAGE,110000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641281,,debt_consolidation,Debt consolidation,984xx,WA,31.74,1.0,Apr-1992,660.0,664.0,1.0,0.0,,21.0,0.0,41053.0,51.2,37.0,f,0.0,0.0,41047.2601077117,41047.26,35000.0,6047.26,0.0,0.0,0.0,May-2018,19697.23,,Jul-2018,779.0,775.0,0.0,,1.0,Individual,,,,1.0,0.0,488992.0,1.0,7.0,1.0,2.0,1.0,140524.0,68.0,0.0,2.0,10132.0,59.0,80200.0,2.0,6.0,1.0,4.0,24450.0,10316.0,76.0,0.0,98.0,131.0,293.0,19.0,1.0,1.0,22.0,,1.0,0.0,0.0,6.0,10.0,6.0,9.0,13.0,13.0,23.0,10.0,20.0,0.0,0.0,0.0,1.0,94.6,66.7,0.0,0.0,611727.0,181577.0,43000.0,180490.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90641359,,6000.0,6000.0,6000.0, 36 months,15.59,209.73,C,C5,Sales,10+ years,RENT,40000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90641359,,debt_consolidation,Debt consolidation,276xx,NC,9.06,0.0,Sep-1999,660.0,664.0,2.0,55.0,38.0,8.0,2.0,8190.0,52.8,10.0,f,0.0,0.0,7039.4630626616,7039.46,6000.0,1039.46,0.0,0.0,0.0,Feb-2018,3898.71,,Mar-2019,654.0,650.0,0.0,55.0,1.0,Individual,,,,0.0,0.0,8190.0,2.0,0.0,0.0,0.0,,0.0,,3.0,8.0,4118.0,53.0,15500.0,0.0,0.0,2.0,8.0,1024.0,452.0,94.2,0.0,0.0,,29.0,2.0,2.0,1.0,2.0,,1.0,,1.0,3.0,6.0,3.0,4.0,0.0,8.0,9.0,6.0,8.0,0.0,0.0,0.0,3.0,90.0,100.0,2.0,0.0,15500.0,8190.0,7800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441310,,20000.0,20000.0,20000.0, 36 months,16.99,712.96,D,D1,driver,3 years,RENT,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441310,,debt_consolidation,Debt consolidation,076xx,NJ,6.45,1.0,Mar-2007,660.0,664.0,1.0,7.0,,10.0,0.0,4336.0,18.8,14.0,f,0.0,0.0,23888.393059734502,23888.39,20000.0,3888.39,0.0,0.0,0.0,May-2018,6873.99,,May-2018,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,10717.0,0.0,2.0,0.0,1.0,18.0,6381.0,64.0,2.0,2.0,2577.0,32.0,23100.0,0.0,1.0,1.0,3.0,1191.0,16564.0,20.7,0.0,0.0,108.0,114.0,10.0,10.0,0.0,10.0,7.0,0.0,7.0,0.0,3.0,3.0,6.0,7.0,5.0,8.0,9.0,3.0,10.0,0.0,0.0,0.0,2.0,85.7,0.0,0.0,0.0,33100.0,10717.0,20900.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90279094,,5000.0,5000.0,5000.0, 36 months,15.59,174.78,C,C5,,,MORTGAGE,55235.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90279094,,debt_consolidation,Debt consolidation,080xx,NJ,30.28,0.0,Sep-1997,660.0,664.0,4.0,26.0,,17.0,0.0,6799.0,42.8,52.0,f,0.0,0.0,5893.3018763873,5893.3,5000.0,893.3,0.0,0.0,0.0,Feb-2018,3260.78,,Mar-2019,644.0,640.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,44266.0,5.0,1.0,0.0,0.0,26.0,25243.0,,8.0,12.0,1331.0,43.0,15900.0,1.0,0.0,7.0,12.0,2604.0,4793.0,49.0,0.0,0.0,161.0,228.0,1.0,1.0,2.0,1.0,26.0,1.0,26.0,1.0,6.0,13.0,8.0,21.0,5.0,15.0,45.0,13.0,17.0,0.0,0.0,0.0,8.0,94.1,25.0,0.0,0.0,160871.0,32042.0,9400.0,36366.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521239,,25000.0,25000.0,25000.0, 36 months,13.99,854.32,C,C3,Estimator,10+ years,OWN,125000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521239,,debt_consolidation,Debt consolidation,917xx,CA,19.62,0.0,Oct-2003,695.0,699.0,5.0,70.0,,17.0,0.0,11605.0,29.8,25.0,f,0.0,0.0,11887.69,11887.69,6565.31,2812.78,0.0,2509.6,451.728,Sep-2017,854.32,,Mar-2018,579.0,575.0,0.0,70.0,1.0,Individual,,,,0.0,0.0,93296.0,5.0,4.0,3.0,5.0,2.0,81691.0,91.0,4.0,7.0,3045.0,63.0,38900.0,11.0,1.0,21.0,12.0,5488.0,13204.0,44.3,0.0,0.0,126.0,155.0,3.0,2.0,0.0,4.0,,3.0,,1.0,8.0,10.0,9.0,11.0,7.0,13.0,18.0,10.0,17.0,0.0,0.0,0.0,7.0,100.0,22.2,0.0,0.0,127356.0,93296.0,23700.0,88456.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694239,,22550.0,22550.0,22550.0, 36 months,15.59,788.24,C,C5,,,OWN,58077.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694239,,debt_consolidation,Debt consolidation,103xx,NY,15.4,0.0,May-1999,750.0,754.0,0.0,,,2.0,0.0,10903.0,99.1,18.0,f,5241.52,5241.52,22839.43,22839.43,17308.48,5530.95,0.0,0.0,0.0,Mar-2019,788.24,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,32047.0,0.0,1.0,0.0,0.0,28.0,21144.0,62.0,0.0,0.0,10903.0,71.0,11000.0,1.0,0.0,0.0,0.0,16024.0,97.0,99.1,0.0,0.0,150.0,208.0,56.0,28.0,0.0,71.0,,15.0,,0.0,1.0,1.0,1.0,5.0,10.0,1.0,8.0,1.0,2.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,44918.0,32047.0,11000.0,33918.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90170197,,24600.0,24600.0,24600.0, 36 months,13.49,834.69,C,C2,owner,4 years,RENT,75000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90170197,,home_improvement,Home improvement,275xx,NC,8.86,2.0,Jun-2011,665.0,669.0,1.0,11.0,,12.0,0.0,5583.0,23.4,14.0,f,5588.68,5588.68,24187.57,24187.57,19011.32,5176.25,0.0,0.0,0.0,Mar-2019,834.69,Apr-2019,Mar-2019,554.0,550.0,1.0,,1.0,Individual,,,,0.0,344.0,9466.0,3.0,1.0,0.0,0.0,45.0,3883.0,27.0,3.0,3.0,2920.0,25.0,23900.0,1.0,0.0,1.0,3.0,789.0,15617.0,22.7,0.0,0.0,49.0,63.0,1.0,1.0,0.0,1.0,,3.0,21.0,0.0,7.0,8.0,9.0,9.0,2.0,11.0,12.0,8.0,12.0,0.0,0.0,0.0,3.0,85.7,0.0,0.0,0.0,38137.0,9466.0,20200.0,14237.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90148527,,18000.0,18000.0,17725.0, 36 months,13.49,610.75,C,C2,Rest Area Attendant,8 years,OWN,43500.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90148527,,credit_card,Credit card refinancing,718xx,AR,33.68,0.0,Oct-1993,665.0,669.0,0.0,34.0,95.0,12.0,1.0,14072.0,67.3,30.0,f,4089.23,4026.76,17698.26,17427.87,13910.77,3787.49,0.0,0.0,0.0,Mar-2019,610.75,Apr-2019,Mar-2019,639.0,635.0,0.0,,1.0,Individual,,,,0.0,302.0,23774.0,0.0,3.0,2.0,3.0,9.0,9702.0,56.0,0.0,5.0,4287.0,62.0,20900.0,0.0,3.0,0.0,8.0,1981.0,386.0,94.0,0.0,0.0,275.0,85.0,13.0,9.0,0.0,51.0,34.0,20.0,34.0,0.0,2.0,8.0,2.0,3.0,19.0,9.0,11.0,8.0,12.0,0.0,0.0,0.0,2.0,90.0,100.0,1.0,0.0,38208.0,23774.0,6400.0,17308.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90694186,,30000.0,30000.0,30000.0, 36 months,16.99,1069.44,D,D1,Senior Consultant,10+ years,MORTGAGE,150000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90694186,,debt_consolidation,Debt consolidation,215xx,MD,27.81,0.0,Dec-2001,685.0,689.0,2.0,55.0,,17.0,0.0,49399.0,91.5,45.0,f,7117.39,7117.39,31155.34,31155.34,22882.61,8272.73,0.0,0.0,0.0,Mar-2019,1069.44,Apr-2019,Mar-2019,689.0,685.0,0.0,55.0,1.0,Individual,,,,0.0,0.0,299039.0,2.0,10.0,2.0,6.0,0.0,118989.0,75.0,1.0,2.0,24754.0,81.0,54000.0,0.0,7.0,4.0,8.0,17591.0,1064.0,97.8,0.0,0.0,135.0,177.0,1.0,0.0,1.0,36.0,55.0,1.0,55.0,0.0,3.0,5.0,3.0,11.0,29.0,5.0,14.0,5.0,17.0,0.0,0.0,0.0,3.0,91.1,100.0,0.0,0.0,377569.0,177597.0,47500.0,160762.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90381419,,12000.0,12000.0,12000.0, 36 months,15.59,419.46,C,C5,,,MORTGAGE,36000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90381419,,debt_consolidation,Debt consolidation,707xx,LA,25.0,0.0,May-2002,675.0,679.0,0.0,,64.0,6.0,1.0,3043.0,35.0,19.0,f,0.0,0.0,14676.8003176281,14676.8,12000.0,2676.8,0.0,0.0,0.0,Sep-2018,5459.07,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,30452.0,1.0,2.0,1.0,2.0,3.0,27409.0,79.0,0.0,0.0,1603.0,70.0,8700.0,0.0,2.0,0.0,2.0,5075.0,4558.0,28.8,0.0,0.0,86.0,172.0,30.0,3.0,0.0,30.0,,,,0.0,2.0,3.0,2.0,9.0,7.0,4.0,12.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,50.0,1.0,0.0,43480.0,30452.0,6400.0,34780.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90154296,,28000.0,28000.0,28000.0, 36 months,9.49,896.8,B,B2,Electrician,10+ years,MORTGAGE,135000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90154296,,debt_consolidation,Debt consolidation,088xx,NJ,14.99,0.0,Apr-2001,670.0,674.0,0.0,,,11.0,0.0,17980.0,30.9,22.0,w,0.0,0.0,31552.0480968712,31552.05,28000.0,3552.05,0.0,0.0,0.0,Jul-2018,13537.56,,Jul-2018,634.0,630.0,0.0,,1.0,Individual,,,,0.0,872.0,315860.0,2.0,2.0,1.0,2.0,2.0,50000.0,90.0,3.0,5.0,4935.0,60.0,58100.0,2.0,0.0,3.0,7.0,28715.0,37226.0,31.2,0.0,0.0,134.0,185.0,3.0,2.0,2.0,3.0,,2.0,,0.0,5.0,6.0,7.0,10.0,7.0,8.0,13.0,6.0,11.0,0.0,0.0,0.0,4.0,100.0,28.6,0.0,0.0,407800.0,67980.0,54100.0,55500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90331777,,9600.0,9600.0,9600.0, 36 months,12.79,322.5,C,C1,Recruiting Manager,4 years,RENT,60000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90331777,,small_business,Business,300xx,GA,31.2,0.0,Dec-1999,705.0,709.0,1.0,,,8.0,0.0,34904.0,90.0,14.0,f,0.0,0.0,4543.08,4543.08,3304.83,1238.25,0.0,0.0,0.0,Dec-2017,357.4,,Jul-2018,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,46858.0,0.0,2.0,0.0,1.0,16.0,11954.0,40.0,0.0,0.0,13212.0,68.0,38800.0,1.0,0.0,2.0,1.0,5857.0,143.0,99.5,0.0,0.0,101.0,201.0,45.0,16.0,0.0,45.0,,1.0,,0.0,3.0,5.0,4.0,9.0,3.0,6.0,11.0,5.0,8.0,0.0,0.0,0.0,0.0,100.0,75.0,0.0,0.0,68772.0,46858.0,29100.0,29972.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90440234,,33600.0,33600.0,33550.0, 36 months,14.49,1156.39,C,C4,Estimator,4 years,RENT,65000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90440234,,credit_card,Credit card refinancing,605xx,IL,14.09,0.0,May-2013,665.0,669.0,1.0,,,8.0,0.0,15503.0,62.8,10.0,f,0.0,0.0,38247.5007225452,38190.58,33600.0,4647.5,0.0,0.0,0.0,Nov-2017,24397.87,,Mar-2019,724.0,720.0,0.0,,1.0,Joint App,141000.0,9.75,Not Verified,0.0,66.0,35598.0,1.0,1.0,0.0,1.0,17.0,20095.0,82.0,2.0,5.0,6467.0,73.0,24700.0,2.0,0.0,1.0,6.0,4450.0,8223.0,60.5,0.0,0.0,17.0,40.0,6.0,6.0,0.0,12.0,,0.0,,0.0,4.0,5.0,5.0,7.0,1.0,7.0,9.0,5.0,8.0,0.0,0.0,0.0,2.0,100.0,40.0,0.0,0.0,49112.0,35598.0,20800.0,24412.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90181406,,21125.0,21125.0,21125.0, 60 months,18.99,547.88,D,D3,Custodian,10+ years,RENT,55000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90181406,,credit_card,Credit card refinancing,078xx,NJ,21.86,0.0,Sep-2003,695.0,699.0,1.0,,94.0,7.0,1.0,8800.0,62.4,13.0,f,0.0,0.0,7521.03,7521.03,2048.47,2826.73,0.0,2645.83,476.2494000012,Jul-2017,547.88,,Jan-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,25270.0,1.0,2.0,1.0,1.0,4.0,16470.0,67.0,1.0,3.0,4421.0,65.0,14100.0,0.0,0.0,2.0,4.0,4212.0,2536.0,74.4,0.0,0.0,155.0,156.0,11.0,4.0,0.0,19.0,,1.0,,0.0,2.0,4.0,2.0,3.0,6.0,5.0,7.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,50.0,1.0,0.0,38753.0,25270.0,9900.0,24653.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90415945,,28800.0,28800.0,28800.0, 36 months,18.99,1055.55,D,D3,Eligibility Clerk,10+ years,RENT,60000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415945,,debt_consolidation,Debt consolidation,112xx,NY,28.96,0.0,May-1998,705.0,709.0,1.0,,,12.0,0.0,36264.0,56.4,24.0,f,0.0,0.0,3926.0,3926.0,599.79,425.38,0.0,2900.83,522.1494,Nov-2016,1055.55,,Dec-2016,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,61035.0,1.0,1.0,1.0,1.0,2.0,24771.0,99.0,0.0,0.0,13604.0,68.0,64300.0,1.0,0.0,1.0,1.0,6104.0,23336.0,60.8,0.0,0.0,2.0,220.0,46.0,2.0,0.0,60.0,,2.0,,0.0,5.0,5.0,7.0,12.0,1.0,11.0,23.0,5.0,12.0,0.0,0.0,0.0,1.0,100.0,16.7,0.0,0.0,89300.0,61035.0,59600.0,25000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90131031,,18000.0,18000.0,18000.0, 60 months,12.79,407.63,C,C1,Mechanic,10+ years,RENT,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90131031,,debt_consolidation,Debt consolidation,916xx,CA,17.26,0.0,Apr-2004,725.0,729.0,0.0,31.0,,16.0,0.0,12771.0,29.1,35.0,f,10712.52,10712.52,11808.48,11808.48,7287.48,4521.0,0.0,0.0,0.0,Mar-2019,407.63,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,100.0,17592.0,1.0,1.0,0.0,0.0,37.0,4821.0,27.0,2.0,4.0,3691.0,29.0,43900.0,0.0,1.0,0.0,4.0,1100.0,26629.0,32.1,0.0,0.0,131.0,149.0,2.0,2.0,0.0,2.0,31.0,,31.0,0.0,7.0,8.0,13.0,21.0,5.0,15.0,30.0,8.0,16.0,0.0,0.0,0.0,2.0,97.1,15.4,0.0,0.0,61489.0,17592.0,39200.0,17589.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404062,,6000.0,6000.0,6000.0, 36 months,18.99,219.91,D,D3,,,MORTGAGE,70000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404062,,home_improvement,Home improvement,551xx,MN,10.66,0.0,Oct-2002,670.0,674.0,1.0,75.0,76.0,16.0,1.0,7652.0,44.0,25.0,f,1446.2,1446.2,6371.06,6371.06,4553.8,1817.26,0.0,0.0,0.0,Mar-2019,219.91,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,199535.0,4.0,2.0,2.0,4.0,5.0,15479.0,93.0,2.0,5.0,3210.0,68.0,17400.0,0.0,1.0,4.0,12.0,12471.0,4248.0,64.3,0.0,0.0,23.0,167.0,1.0,1.0,3.0,13.0,75.0,5.0,75.0,0.0,5.0,5.0,6.0,9.0,4.0,13.0,18.0,5.0,16.0,0.0,0.0,0.0,7.0,95.8,16.7,1.0,0.0,211261.0,23131.0,11900.0,16737.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90292228,,31500.0,31500.0,31500.0, 36 months,14.49,1084.11,C,C4,Officer,6 years,RENT,97200.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90292228,,debt_consolidation,Debt consolidation,917xx,CA,24.33,0.0,Jun-2006,710.0,714.0,0.0,,,9.0,0.0,15015.0,55.0,26.0,f,7235.01,7235.01,31565.97,31565.97,24264.99,7300.98,0.0,0.0,0.0,Mar-2019,1084.11,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,52405.0,1.0,4.0,3.0,5.0,3.0,37390.0,70.0,0.0,1.0,9917.0,63.0,27300.0,2.0,0.0,2.0,6.0,5823.0,1206.0,89.3,0.0,0.0,123.0,102.0,15.0,3.0,0.0,31.0,,1.0,,0.0,2.0,3.0,2.0,3.0,17.0,5.0,9.0,3.0,9.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,96117.0,52405.0,11300.0,68817.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111729,,12000.0,12000.0,12000.0, 36 months,13.49,407.17,C,C2,Network Engineer,4 years,RENT,125000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111729,,credit_card,Credit card refinancing,895xx,NV,26.49,0.0,Jul-1990,690.0,694.0,0.0,51.0,,11.0,0.0,22596.0,84.3,20.0,f,0.0,0.0,14515.080745095,14515.08,12000.0,2515.08,0.0,0.0,0.0,Jan-2019,3910.12,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,93916.0,0.0,5.0,2.0,3.0,10.0,71320.0,75.0,0.0,1.0,6874.0,77.0,26800.0,2.0,0.0,2.0,4.0,8538.0,318.0,98.2,0.0,0.0,146.0,314.0,19.0,10.0,1.0,19.0,,9.0,,0.0,3.0,5.0,3.0,6.0,9.0,6.0,10.0,5.0,11.0,0.0,0.0,0.0,2.0,95.0,100.0,0.0,0.0,121378.0,93916.0,17500.0,94578.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90139598,,25500.0,25500.0,25500.0, 36 months,15.59,891.36,C,C5,,,OWN,113400.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90139598,,debt_consolidation,Debt consolidation,754xx,TX,23.8,3.0,Jul-1990,680.0,684.0,0.0,7.0,,12.0,0.0,15330.0,60.4,23.0,f,5927.15,5927.15,25827.35,25827.35,19572.85,6254.5,0.0,0.0,0.0,Mar-2019,891.36,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Joint App,113400.0,32.56,Not Verified,0.0,0.0,185031.0,0.0,3.0,0.0,1.0,20.0,52116.0,68.0,0.0,1.0,5248.0,67.0,22500.0,1.0,1.0,1.0,2.0,16821.0,3522.0,58.2,0.0,0.0,149.0,314.0,21.0,20.0,5.0,113.0,15.0,12.0,15.0,0.0,3.0,6.0,3.0,8.0,5.0,7.0,13.0,6.0,12.0,0.0,0.0,0.0,0.0,77.3,66.7,0.0,0.0,333958.0,67446.0,12900.0,104158.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171980,,15650.0,15650.0,15650.0, 60 months,26.99,477.79,F,F3,SECURITY GUARD ,8 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171980,,credit_card,Credit card refinancing,894xx,NV,29.91,1.0,Apr-1999,675.0,679.0,1.0,7.0,,14.0,0.0,27686.0,51.0,30.0,f,0.0,0.0,8510.53,8510.53,832.53,1123.0,0.0,6555.0,1179.9000000288002,Feb-2017,100.0,,Nov-2018,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,270910.0,2.0,2.0,4.0,6.0,6.0,32799.0,87.0,2.0,5.0,9631.0,66.0,54300.0,8.0,10.0,15.0,15.0,19351.0,12169.0,44.2,0.0,0.0,182.0,209.0,10.0,2.0,5.0,10.0,,1.0,7.0,0.0,1.0,3.0,5.0,6.0,12.0,11.0,13.0,3.0,14.0,0.0,0.0,0.0,7.0,96.7,20.0,0.0,0.0,302960.0,60485.0,21800.0,37530.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Nov-2018,COMPLETE,Sep-2017,6555.0,40.0,14.0 +90231201,,28000.0,28000.0,28000.0, 60 months,21.49,765.24,D,D5,Superintendent,8 years,MORTGAGE,69000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90231201,,debt_consolidation,Debt consolidation,230xx,VA,21.51,0.0,Jul-2004,695.0,699.0,0.0,,,12.0,0.0,13953.0,55.6,18.0,f,0.0,0.0,11183.17,11183.17,2861.14,4757.83,0.0,3564.2,641.5559999763,Aug-2017,765.24,,Feb-2018,539.0,535.0,0.0,,1.0,Joint App,108000.0,19.47,Not Verified,0.0,63.0,277499.0,0.0,3.0,0.0,1.0,14.0,26296.0,74.0,2.0,3.0,3798.0,66.0,25100.0,1.0,4.0,4.0,5.0,23125.0,493.0,94.9,0.0,0.0,146.0,130.0,9.0,9.0,3.0,9.0,,10.0,,0.0,4.0,7.0,4.0,4.0,7.0,8.0,8.0,7.0,12.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,300853.0,40249.0,9700.0,35678.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427663,,15000.0,15000.0,15000.0, 60 months,17.99,380.82,D,D2,Manager,10+ years,RENT,110000.0,Source Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427663,,debt_consolidation,Debt consolidation,917xx,CA,34.44,0.0,Oct-1998,665.0,669.0,0.0,30.0,,18.0,0.0,32587.0,77.0,46.0,f,9861.65,9861.65,10286.19,10286.19,5138.35,5128.8,19.04,0.0,0.0,Jan-2019,380.82,Apr-2019,Mar-2019,674.0,670.0,0.0,30.0,1.0,Individual,,,,0.0,0.0,223648.0,4.0,3.0,2.0,5.0,4.0,191061.0,,4.0,4.0,6199.0,77.0,42300.0,4.0,8.0,4.0,9.0,12425.0,982.0,92.3,0.0,0.0,126.0,215.0,1.0,1.0,0.0,8.0,30.0,6.0,30.0,0.0,5.0,11.0,5.0,10.0,22.0,15.0,24.0,11.0,18.0,0.0,0.0,0.0,6.0,97.8,80.0,0.0,0.0,245919.0,223648.0,12700.0,203619.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89907669,,12000.0,12000.0,12000.0, 36 months,12.79,403.12,C,C1,G. Manager,3 years,RENT,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89907669,,credit_card,Credit card refinancing,770xx,TX,20.9,0.0,Apr-2003,685.0,689.0,1.0,,,21.0,0.0,16220.0,48.2,29.0,f,2705.07,2705.07,11681.95,11681.95,9294.93,2387.02,0.0,0.0,0.0,Mar-2019,403.12,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,41820.0,3.0,2.0,1.0,3.0,4.0,25460.0,92.0,3.0,10.0,3786.0,67.0,71000.0,0.0,4.0,3.0,14.0,2091.0,48574.0,54.6,0.0,0.0,123.0,161.0,4.0,4.0,0.0,4.0,,6.0,,0.0,9.0,11.0,9.0,11.0,7.0,18.0,21.0,11.0,21.0,0.0,0.0,0.0,5.0,100.0,33.3,0.0,0.0,99718.0,41820.0,62000.0,27678.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90451180,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Information Specialist,10+ years,RENT,60000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90451180,,debt_consolidation,Debt consolidation,982xx,WA,30.16,0.0,Dec-2006,660.0,664.0,0.0,,90.0,15.0,1.0,27344.0,63.3,22.0,f,0.0,0.0,3094.94,3094.94,1491.75,704.45,0.0,898.74,161.7732,Jun-2017,275.33,,Dec-2017,514.0,510.0,0.0,,1.0,Individual,,,,0.0,0.0,63303.0,3.0,2.0,1.0,1.0,10.0,35959.0,78.0,3.0,5.0,4985.0,71.0,43200.0,0.0,3.0,5.0,6.0,4220.0,5397.0,70.0,0.0,0.0,76.0,117.0,2.0,2.0,0.0,2.0,,10.0,,0.0,5.0,12.0,5.0,6.0,6.0,13.0,16.0,12.0,15.0,0.0,0.0,0.0,4.0,100.0,60.0,1.0,0.0,89128.0,63303.0,18000.0,45928.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240895,,30000.0,30000.0,30000.0, 60 months,15.59,723.03,C,C5,Director of admin and finance,4 years,MORTGAGE,86000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240895,,debt_consolidation,Debt consolidation,281xx,NC,26.34,2.0,Jul-1996,670.0,674.0,0.0,14.0,,17.0,0.0,20787.0,75.9,34.0,f,18352.86,18352.86,20941.89,20941.89,11647.14,9294.75,0.0,0.0,0.0,Mar-2019,723.03,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,154182.0,2.0,3.0,2.0,2.0,4.0,53964.0,96.0,1.0,1.0,5923.0,89.0,27400.0,1.0,0.0,1.0,3.0,9636.0,938.0,93.9,0.0,0.0,122.0,242.0,8.0,4.0,2.0,8.0,22.0,7.0,22.0,0.0,5.0,10.0,5.0,6.0,16.0,13.0,16.0,10.0,17.0,0.0,0.0,0.0,3.0,94.1,80.0,0.0,0.0,167206.0,74751.0,15500.0,56260.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90292156,,15000.0,15000.0,15000.0, 60 months,10.99,326.07,B,B4,Store Manager,10+ years,MORTGAGE,65000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90292156,,debt_consolidation,Debt consolidation,293xx,SC,19.93,0.0,Oct-2004,690.0,694.0,0.0,,53.0,20.0,1.0,17451.0,34.1,32.0,f,0.0,0.0,15706.536185377,15706.54,15000.0,706.54,0.0,0.0,0.0,Mar-2017,14425.16,,Aug-2018,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,97328.0,0.0,1.0,0.0,1.0,19.0,29365.0,,1.0,8.0,3746.0,34.0,51200.0,2.0,0.0,0.0,10.0,4866.0,25085.0,39.1,0.0,0.0,119.0,143.0,9.0,9.0,1.0,13.0,,13.0,,0.0,10.0,12.0,14.0,19.0,6.0,18.0,25.0,12.0,20.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,1.0,142619.0,46816.0,41200.0,36419.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88836890,,40000.0,40000.0,40000.0, 60 months,14.49,940.93,C,C4,Corporate Controller,6 years,RENT,200000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88836890,,debt_consolidation,Debt consolidation,330xx,FL,10.76,0.0,May-2000,680.0,684.0,0.0,,63.0,11.0,1.0,16391.0,45.4,26.0,f,24210.71,24210.71,27254.77,27254.77,15789.29,11465.48,0.0,0.0,0.0,Mar-2019,940.93,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,67211.0,1.0,5.0,2.0,2.0,4.0,50820.0,80.0,1.0,2.0,9241.0,68.0,36100.0,1.0,1.0,1.0,4.0,6721.0,13761.0,50.3,0.0,0.0,143.0,196.0,7.0,4.0,1.0,7.0,,4.0,,0.0,2.0,3.0,3.0,9.0,12.0,6.0,13.0,3.0,10.0,0.0,0.0,0.0,3.0,100.0,0.0,1.0,0.0,99309.0,67211.0,27700.0,63209.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271793,,30000.0,30000.0,30000.0, 36 months,13.49,1017.92,C,C2,Project Manager,< 1 year,RENT,115000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271793,,credit_card,Credit card refinancing,967xx,HI,22.25,0.0,Sep-2010,715.0,719.0,0.0,,,14.0,0.0,23744.0,43.1,23.0,w,6815.28,6815.28,29497.2,29497.2,23184.72,6312.48,0.0,0.0,0.0,Mar-2019,1017.92,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,47980.0,1.0,2.0,0.0,1.0,14.0,24236.0,41.0,3.0,5.0,10307.0,42.0,55100.0,1.0,0.0,1.0,6.0,3427.0,27856.0,46.0,0.0,0.0,60.0,72.0,1.0,1.0,0.0,1.0,,7.0,,0.0,5.0,5.0,9.0,11.0,3.0,12.0,20.0,5.0,14.0,0.0,0.0,0.0,3.0,100.0,11.1,0.0,0.0,114216.0,47980.0,51600.0,59116.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90413922,,25000.0,25000.0,25000.0, 60 months,12.79,566.15,C,C1,Operations Manager,4 years,MORTGAGE,100000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413922,,home_improvement,Home improvement,531xx,WI,15.29,0.0,Dec-2004,725.0,729.0,1.0,59.0,,17.0,0.0,6872.0,6.8,33.0,f,14878.59,14878.59,16400.59,16400.59,10121.41,6279.18,0.0,0.0,0.0,Mar-2019,566.15,Apr-2019,Mar-2019,704.0,700.0,0.0,59.0,1.0,Joint App,150000.0,12.16,Not Verified,0.0,0.0,309800.0,1.0,2.0,2.0,2.0,2.0,37083.0,94.0,0.0,4.0,2918.0,31.0,101500.0,2.0,3.0,7.0,8.0,18224.0,62159.0,7.6,0.0,0.0,117.0,141.0,14.0,2.0,2.0,24.0,59.0,2.0,59.0,1.0,3.0,6.0,8.0,14.0,5.0,13.0,23.0,6.0,17.0,0.0,0.0,0.0,2.0,97.0,0.0,0.0,0.0,411677.0,44113.0,67300.0,39269.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90320243,,8000.0,8000.0,8000.0, 36 months,21.49,303.42,D,D5,Hha ,6 years,RENT,35000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320243,,credit_card,Credit card refinancing,112xx,NY,25.21,1.0,Jun-2011,680.0,684.0,1.0,17.0,,10.0,0.0,4964.0,41.7,11.0,f,0.0,0.0,10786.8375677653,10786.84,8000.0,2786.84,0.0,0.0,0.0,Mar-2019,2300.63,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,20974.0,3.0,2.0,2.0,3.0,3.0,16010.0,89.0,2.0,4.0,697.0,70.0,11900.0,1.0,1.0,2.0,7.0,2097.0,3972.0,27.8,0.0,0.0,18.0,63.0,1.0,1.0,0.0,1.0,,6.0,17.0,0.0,3.0,7.0,3.0,3.0,3.0,8.0,8.0,7.0,10.0,0.0,0.0,0.0,4.0,90.9,33.3,0.0,0.0,29905.0,20974.0,5500.0,18005.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90078227,,29900.0,29900.0,29900.0, 36 months,17.99,1080.81,D,D2,office manager,3 years,OWN,65000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90078227,,debt_consolidation,Debt consolidation,221xx,VA,21.16,0.0,Aug-1985,670.0,674.0,2.0,,58.0,22.0,1.0,18169.0,65.4,32.0,f,7131.51,7131.51,31343.49,31343.49,22768.49,8575.0,0.0,0.0,0.0,Mar-2019,1080.81,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,49309.0,4.0,1.0,1.0,1.0,4.0,31140.0,97.0,4.0,6.0,9612.0,82.0,27800.0,1.0,0.0,5.0,7.0,3082.0,2198.0,87.2,0.0,0.0,48.0,373.0,2.0,2.0,0.0,6.0,,1.0,,0.0,4.0,11.0,5.0,10.0,2.0,21.0,30.0,11.0,21.0,0.0,0.0,0.0,5.0,100.0,60.0,1.0,0.0,60084.0,49309.0,17200.0,32284.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427586,,7000.0,7000.0,7000.0, 36 months,16.99,249.54,D,D1,Production specialist,10+ years,RENT,45000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427586,,debt_consolidation,Debt consolidation,852xx,AZ,18.21,1.0,Jan-1992,665.0,669.0,0.0,7.0,,10.0,0.0,7905.0,54.9,21.0,f,0.0,0.0,8419.2345654474,8419.23,7000.0,1419.23,0.0,0.0,0.0,Aug-2018,154.01,,Mar-2019,724.0,720.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,21700.0,1.0,2.0,2.0,2.0,7.0,13795.0,86.0,2.0,4.0,1207.0,71.0,14400.0,0.0,0.0,1.0,6.0,2170.0,2250.0,61.2,0.0,0.0,296.0,34.0,2.0,2.0,0.0,2.0,,12.0,7.0,2.0,4.0,7.0,4.0,4.0,12.0,8.0,9.0,7.0,10.0,0.0,0.0,0.0,4.0,85.7,75.0,0.0,0.0,30468.0,21700.0,5800.0,16068.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90571114,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Director Business Development ,< 1 year,RENT,180000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90571114,,debt_consolidation,Debt consolidation,902xx,CA,21.04,0.0,Jan-2002,665.0,669.0,0.0,,87.0,11.0,3.0,68394.0,95.5,16.0,f,0.0,0.0,10996.470055795,10996.47,10000.0,996.47,0.0,0.0,0.0,May-2017,8837.58,,Mar-2019,594.0,590.0,0.0,,1.0,Individual,,,,0.0,0.0,112210.0,0.0,2.0,0.0,1.0,24.0,43816.0,66.0,0.0,3.0,14336.0,82.0,71600.0,0.0,2.0,0.0,4.0,10201.0,2031.0,95.8,0.0,0.0,176.0,150.0,18.0,18.0,0.0,18.0,,20.0,,0.0,7.0,8.0,7.0,7.0,7.0,9.0,9.0,8.0,11.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,3.0,137639.0,112210.0,48600.0,66039.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90114693,,6500.0,6500.0,6500.0, 36 months,11.49,214.32,B,B5,,,RENT,40000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90114693,,debt_consolidation,Debt consolidation,112xx,NY,9.6,0.0,Nov-2002,660.0,664.0,0.0,,70.0,13.0,1.0,5375.0,23.8,18.0,w,1444.12,1444.12,6211.13,6211.13,5055.88,1155.25,0.0,0.0,0.0,Mar-2019,214.32,Apr-2019,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,5375.0,1.0,0.0,0.0,0.0,,0.0,,3.0,8.0,1420.0,24.0,22600.0,0.0,0.0,1.0,8.0,413.0,9312.0,27.3,0.0,0.0,,166.0,6.0,6.0,0.0,6.0,,10.0,,0.0,5.0,12.0,6.0,7.0,0.0,13.0,18.0,12.0,13.0,0.0,0.0,0.0,3.0,100.0,0.0,1.0,0.0,22600.0,5375.0,12800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521136,,28000.0,28000.0,28000.0, 36 months,15.59,978.74,C,C5,TABLE GAMES,10+ years,OWN,83000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521136,,car,Car financing,480xx,MI,19.32,0.0,Dec-1999,670.0,674.0,1.0,35.0,,9.0,0.0,15654.0,82.0,33.0,f,6554.77,6554.77,28380.73,28380.73,21445.23,6935.5,0.0,0.0,0.0,Mar-2019,978.74,Apr-2019,Dec-2018,599.0,595.0,0.0,35.0,1.0,Individual,,,,0.0,0.0,246649.0,1.0,1.0,0.0,0.0,39.0,24773.0,,3.0,4.0,5591.0,82.0,19100.0,1.0,0.0,2.0,4.0,27405.0,397.0,97.1,0.0,0.0,201.0,136.0,2.0,2.0,3.0,11.0,60.0,2.0,60.0,4.0,4.0,7.0,4.0,11.0,12.0,7.0,18.0,7.0,9.0,0.0,0.0,0.0,3.0,81.3,100.0,0.0,0.0,273953.0,40427.0,13900.0,43953.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90100511,,32625.0,32625.0,32625.0, 36 months,17.99,1179.31,D,D2,sales,8 years,RENT,68000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90100511,,debt_consolidation,Debt consolidation,953xx,CA,27.93,0.0,May-2004,700.0,704.0,1.0,31.0,109.0,7.0,1.0,15059.0,47.1,25.0,f,0.0,0.0,20788.99,20788.99,11513.44,6339.24,0.0,2936.31,528.535800026,Jan-2018,1179.31,,Jul-2018,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,42757.0,1.0,2.0,0.0,1.0,14.0,27698.0,60.0,1.0,1.0,3048.0,55.0,32000.0,0.0,2.0,1.0,2.0,6108.0,16677.0,31.4,0.0,0.0,148.0,119.0,2.0,2.0,1.0,2.0,36.0,1.0,31.0,0.0,4.0,5.0,4.0,11.0,9.0,5.0,15.0,5.0,7.0,0.0,0.0,0.0,1.0,80.0,25.0,1.0,0.0,78156.0,42757.0,24300.0,46156.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90412571,,4500.0,4500.0,4500.0, 36 months,18.99,164.93,D,D3,,,OWN,13308.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90412571,,debt_consolidation,Debt consolidation,992xx,WA,19.03,0.0,May-1997,670.0,674.0,0.0,,66.0,9.0,1.0,7508.0,29.2,19.0,w,0.0,0.0,2943.25,2943.25,1934.17,1009.08,0.0,0.0,0.0,Mar-2018,164.93,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,19861.0,0.0,1.0,0.0,0.0,108.0,12353.0,58.0,0.0,4.0,3480.0,42.0,25700.0,0.0,3.0,0.0,4.0,2207.0,7204.0,44.2,0.0,0.0,123.0,232.0,14.0,14.0,1.0,14.0,,19.0,,0.0,3.0,6.0,4.0,6.0,4.0,8.0,13.0,6.0,9.0,0.0,0.0,0.0,0.0,100.0,25.0,1.0,0.0,47081.0,19861.0,12900.0,21381.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067546,,36000.0,36000.0,35950.0, 36 months,13.99,1230.22,C,C3,Lead Technical Account Specialist,10+ years,MORTGAGE,103000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067546,,debt_consolidation,Debt consolidation,274xx,NC,20.81,1.0,Aug-1997,690.0,694.0,0.0,12.0,,20.0,0.0,48263.0,74.0,36.0,f,0.0,0.0,43515.5180144388,43455.08,36000.0,7515.52,0.0,0.0,0.0,Dec-2018,12788.0,,Dec-2018,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,269377.0,1.0,4.0,0.0,1.0,22.0,41736.0,58.0,1.0,3.0,9063.0,66.0,65200.0,2.0,0.0,0.0,4.0,14178.0,8728.0,83.0,0.0,0.0,229.0,199.0,2.0,2.0,1.0,2.0,,22.0,12.0,0.0,7.0,9.0,8.0,9.0,15.0,15.0,20.0,9.0,20.0,0.0,0.0,0.0,1.0,97.1,62.5,0.0,0.0,334538.0,89999.0,51200.0,71681.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90131367,,21000.0,21000.0,20950.0, 60 months,11.49,461.74,B,B5,Office Administrator,10+ years,MORTGAGE,47000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90131367,,debt_consolidation,Debt consolidation,631xx,MO,17.77,0.0,Jul-2000,760.0,764.0,1.0,,,6.0,0.0,2954.0,40.5,26.0,f,0.0,0.0,24016.999804195497,23959.82,21000.0,3017.0,0.0,0.0,0.0,Feb-2018,17104.3,,Jun-2018,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,183684.0,1.0,2.0,1.0,2.0,3.0,19729.0,52.0,0.0,0.0,2679.0,50.0,7300.0,4.0,1.0,7.0,3.0,30614.0,321.0,89.3,0.0,0.0,191.0,194.0,70.0,3.0,6.0,80.0,,1.0,,0.0,1.0,2.0,1.0,3.0,12.0,3.0,8.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,210918.0,22683.0,3000.0,37680.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90162230,,10000.0,10000.0,10000.0, 36 months,13.49,339.31,C,C2,Registered Nurse,< 1 year,RENT,62000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90162230,,major_purchase,Major purchase,335xx,FL,6.12,1.0,May-2001,675.0,679.0,0.0,12.0,,8.0,0.0,8614.0,59.8,12.0,f,0.0,0.0,11896.3730875381,11896.37,10000.0,1896.37,0.0,0.0,0.0,Sep-2018,4439.04,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,13145.0,0.0,2.0,0.0,1.0,23.0,4531.0,74.0,2.0,4.0,5698.0,64.0,14400.0,2.0,0.0,3.0,5.0,1878.0,498.0,93.8,0.0,0.0,130.0,184.0,8.0,8.0,0.0,8.0,,11.0,,0.0,2.0,4.0,3.0,3.0,5.0,6.0,7.0,4.0,8.0,0.0,0.0,0.0,2.0,91.7,100.0,0.0,0.0,20565.0,13145.0,8000.0,6165.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90521151,,13000.0,13000.0,13000.0, 60 months,8.99,269.8,B,B1,route driver,9 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90521151,,debt_consolidation,Debt consolidation,563xx,MN,5.54,0.0,Sep-1999,755.0,759.0,1.0,78.0,,8.0,0.0,3312.0,11.0,22.0,f,0.0,0.0,13785.1082133895,13785.11,13000.0,785.11,0.0,0.0,0.0,Jun-2017,11903.0,,Mar-2019,799.0,795.0,0.0,,1.0,Individual,,,,0.0,0.0,118558.0,1.0,1.0,0.0,0.0,35.0,452.0,9.0,1.0,2.0,2590.0,11.0,30200.0,0.0,0.0,1.0,2.0,14820.0,20949.0,11.2,0.0,0.0,204.0,138.0,1.0,1.0,1.0,53.0,,1.0,78.0,0.0,2.0,3.0,4.0,8.0,7.0,6.0,14.0,3.0,8.0,0.0,0.0,0.0,1.0,95.5,0.0,0.0,0.0,163800.0,3764.0,23600.0,4800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414630,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Assistant Branch Manager,7 years,RENT,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414630,,debt_consolidation,Debt consolidation,114xx,NY,14.07,1.0,Apr-2000,665.0,669.0,1.0,7.0,,13.0,0.0,8891.0,46.1,28.0,f,0.0,0.0,11382.6098600735,11382.61,10000.0,1382.61,0.0,0.0,0.0,May-2018,2842.98,,Jan-2019,704.0,700.0,0.0,46.0,1.0,Individual,,,,0.0,613.0,17562.0,1.0,1.0,1.0,1.0,7.0,8671.0,81.0,2.0,3.0,3308.0,58.0,19300.0,1.0,0.0,4.0,4.0,1464.0,7174.0,54.9,0.0,0.0,7.0,197.0,4.0,4.0,0.0,4.0,68.0,4.0,7.0,2.0,6.0,8.0,8.0,13.0,1.0,12.0,26.0,8.0,13.0,0.0,0.0,0.0,3.0,81.5,12.5,0.0,0.0,30064.0,17562.0,15900.0,10764.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90412931,,22500.0,22500.0,22500.0, 36 months,16.99,802.08,D,D1,Engineering Tech,3 years,MORTGAGE,45000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90412931,,home_improvement,Home improvement,853xx,AZ,2.45,0.0,Sep-2007,725.0,729.0,0.0,38.0,,5.0,0.0,1060.0,11.5,8.0,f,0.0,0.0,28225.816155661098,28225.82,22500.0,5725.82,0.0,0.0,0.0,Oct-2018,9650.56,,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,184550.0,2.0,2.0,0.0,0.0,72.0,5066.0,85.0,1.0,1.0,1060.0,40.0,9200.0,2.0,0.0,2.0,2.0,36910.0,4640.0,18.6,0.0,0.0,108.0,107.0,5.0,5.0,1.0,107.0,38.0,5.0,38.0,0.0,1.0,1.0,1.0,1.0,5.0,2.0,2.0,1.0,5.0,0.0,0.0,0.0,2.0,85.7,0.0,0.0,0.0,194463.0,6126.0,5700.0,5990.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90415753,,10000.0,10000.0,10000.0, 36 months,13.49,339.31,C,C2,Supervisor,10+ years,MORTGAGE,90000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415753,,credit_card,Credit card refinancing,802xx,CO,14.84,0.0,Apr-1995,665.0,669.0,0.0,53.0,64.0,10.0,1.0,15428.0,73.8,18.0,f,2271.65,2271.65,9832.5,9832.5,7728.35,2104.15,0.0,0.0,0.0,Mar-2019,339.31,Apr-2019,Mar-2019,639.0,635.0,0.0,57.0,1.0,Individual,,,,0.0,0.0,36198.0,3.0,3.0,3.0,3.0,3.0,20770.0,92.0,1.0,2.0,7219.0,83.0,20900.0,2.0,1.0,3.0,5.0,3620.0,1482.0,90.8,0.0,0.0,257.0,206.0,3.0,3.0,0.0,3.0,62.0,4.0,53.0,1.0,5.0,7.0,5.0,8.0,5.0,7.0,11.0,7.0,10.0,0.0,0.0,0.0,4.0,83.3,60.0,0.0,0.0,43507.0,36198.0,16100.0,22607.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90278515,,29900.0,29900.0,29850.0, 36 months,17.99,1080.81,D,D2,Manager,10+ years,RENT,65000.0,Verified,Oct-2016,Late (16-30 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90278515,,debt_consolidation,Debt consolidation,440xx,OH,16.32,1.0,Nov-1989,685.0,689.0,0.0,23.0,,7.0,0.0,11333.0,44.6,16.0,f,8091.02,8077.49,30232.8,30182.24,21808.98,8423.82,0.0,0.0,0.0,Feb-2019,1080.81,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,24134.0,0.0,1.0,0.0,1.0,14.0,12801.0,80.0,0.0,0.0,3552.0,58.0,25400.0,1.0,0.0,0.0,1.0,3448.0,13467.0,45.7,0.0,0.0,124.0,322.0,97.0,14.0,0.0,157.0,23.0,14.0,23.0,0.0,5.0,5.0,5.0,10.0,4.0,6.0,12.0,5.0,7.0,0.0,0.0,0.0,0.0,87.5,80.0,0.0,0.0,41386.0,24134.0,24800.0,15986.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90180619,,15000.0,15000.0,15000.0, 36 months,16.99,534.72,D,D1,Project manager,< 1 year,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90180619,,debt_consolidation,Debt consolidation,207xx,MD,19.15,2.0,Aug-2007,675.0,679.0,0.0,23.0,,7.0,0.0,9893.0,45.6,11.0,f,3539.6,3539.6,15492.72,15492.72,11460.4,4032.32,0.0,0.0,0.0,Mar-2019,534.72,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,29111.0,0.0,1.0,0.0,0.0,28.0,19218.0,67.0,1.0,1.0,5914.0,58.0,21700.0,0.0,0.0,1.0,1.0,4159.0,6821.0,58.7,0.0,0.0,28.0,109.0,9.0,9.0,0.0,9.0,,7.0,23.0,0.0,3.0,4.0,3.0,5.0,1.0,6.0,10.0,4.0,7.0,0.0,0.0,0.0,1.0,72.7,33.3,0.0,0.0,50506.0,29111.0,16500.0,28806.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130194,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,,,OWN,26000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130194,,home_improvement,Home improvement,765xx,TX,30.56,0.0,Nov-1998,670.0,674.0,1.0,26.0,64.0,16.0,1.0,3946.0,16.4,36.0,f,0.0,0.0,5664.4881353231,5664.49,5000.0,664.49,0.0,0.0,0.0,Jan-2018,3316.46,,Mar-2019,679.0,675.0,0.0,26.0,1.0,Individual,,,,0.0,0.0,22717.0,4.0,1.0,1.0,2.0,8.0,18771.0,89.0,8.0,12.0,1077.0,50.0,24000.0,1.0,0.0,3.0,14.0,1514.0,10065.0,22.0,0.0,0.0,128.0,202.0,1.0,1.0,1.0,6.0,,5.0,26.0,1.0,5.0,9.0,6.0,11.0,10.0,15.0,25.0,9.0,16.0,0.0,0.0,0.0,9.0,97.0,0.0,1.0,0.0,45118.0,22717.0,12900.0,21118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88896392,,9000.0,9000.0,9000.0, 36 months,15.59,314.6,C,C5,RN,2 years,RENT,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88896392,,debt_consolidation,Debt consolidation,897xx,NV,26.2,0.0,Jan-2010,680.0,684.0,2.0,,,17.0,0.0,17641.0,39.0,18.0,f,0.0,0.0,11173.0353124495,11173.04,9000.0,2173.04,0.0,0.0,0.0,Mar-2019,1772.04,,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,71873.0,3.0,5.0,0.0,1.0,14.0,54232.0,83.0,5.0,6.0,8023.0,55.0,45200.0,7.0,0.0,7.0,7.0,4228.0,17378.0,39.0,0.0,0.0,68.0,80.0,1.0,1.0,0.0,1.0,,2.0,,0.0,3.0,7.0,6.0,6.0,6.0,12.0,12.0,7.0,17.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,0.0,109623.0,71873.0,28500.0,64423.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271438,,15175.0,15175.0,15175.0, 60 months,17.99,385.27,D,D2,correctional officer,10+ years,MORTGAGE,98600.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271438,,debt_consolidation,Debt consolidation,995xx,AK,20.86,0.0,Aug-2006,705.0,709.0,2.0,,,13.0,0.0,10304.0,48.6,23.0,w,0.0,0.0,16694.2974029536,16694.3,15175.0,1519.3,0.0,0.0,0.0,Apr-2017,14783.12,,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,309143.0,1.0,3.0,3.0,6.0,4.0,69893.0,93.0,0.0,4.0,5463.0,70.0,21200.0,6.0,14.0,3.0,11.0,25762.0,137.0,97.6,0.0,0.0,121.0,116.0,13.0,4.0,1.0,13.0,,2.0,,0.0,1.0,5.0,1.0,2.0,12.0,9.0,10.0,5.0,13.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,336538.0,80197.0,5600.0,80196.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90441191,,20000.0,20000.0,20000.0, 36 months,14.49,688.33,C,C4,Owner,8 years,RENT,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90441191,,debt_consolidation,Debt consolidation,061xx,CT,14.39,0.0,Dec-1998,695.0,699.0,1.0,,,5.0,0.0,31350.0,83.6,21.0,f,0.0,0.0,21700.4220547207,21700.42,20000.0,1700.42,0.0,0.0,0.0,May-2017,17586.54,,May-2017,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,36688.0,0.0,0.0,0.0,0.0,125.0,0.0,,0.0,1.0,20941.0,82.0,37500.0,0.0,0.0,1.0,1.0,7338.0,2227.0,93.0,0.0,0.0,125.0,213.0,19.0,19.0,3.0,19.0,,6.0,,0.0,3.0,4.0,3.0,7.0,1.0,4.0,15.0,4.0,5.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,44879.0,36688.0,32000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90170498,,5000.0,5000.0,5000.0, 36 months,13.49,169.66,C,C2,Referral coordinator ,10+ years,MORTGAGE,35500.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90170498,,medical,Medical expenses,629xx,IL,29.85,1.0,Mar-1996,660.0,664.0,0.0,11.0,117.0,6.0,1.0,17153.0,90.3,29.0,f,1135.65,1135.65,4916.39,4916.39,3864.35,1052.04,0.0,0.0,0.0,Mar-2019,169.66,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,98888.0,1.0,1.0,1.0,1.0,5.0,27304.0,96.0,1.0,3.0,7423.0,94.0,19000.0,4.0,3.0,6.0,4.0,19778.0,77.0,99.0,0.0,0.0,116.0,246.0,8.0,5.0,1.0,23.0,,5.0,,0.0,1.0,3.0,1.0,7.0,13.0,4.0,15.0,3.0,6.0,0.0,0.0,0.0,2.0,89.7,100.0,1.0,0.0,126709.0,44457.0,7500.0,28509.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90222118,,16200.0,16200.0,16200.0, 60 months,12.79,366.87,C,C1,Tax senior,2 years,RENT,52000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90222118,,credit_card,Credit card refinancing,146xx,NY,19.9,0.0,May-2008,715.0,719.0,0.0,29.0,,8.0,0.0,14680.0,53.4,13.0,f,9641.17,9641.17,10691.03,10691.03,6558.83,4132.2,0.0,0.0,0.0,Mar-2019,366.87,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,39039.0,0.0,2.0,0.0,0.0,26.0,24359.0,76.0,1.0,1.0,12034.0,66.0,27500.0,0.0,0.0,0.0,1.0,4880.0,10320.0,58.7,0.0,0.0,43.0,100.0,8.0,8.0,0.0,8.0,29.0,,29.0,0.0,2.0,2.0,4.0,9.0,2.0,6.0,11.0,2.0,8.0,0.0,0.0,0.0,1.0,92.3,25.0,0.0,0.0,59624.0,39039.0,25000.0,32124.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410106,,18000.0,18000.0,18000.0, 36 months,17.99,650.66,D,D2,Special education teacher,1 year,MORTGAGE,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410106,,debt_consolidation,Debt consolidation,025xx,MA,19.16,0.0,Oct-2005,665.0,669.0,2.0,,,16.0,0.0,6373.0,45.5,20.0,f,0.0,0.0,20549.4038941139,20549.4,18000.0,2549.4,0.0,0.0,0.0,Aug-2017,14711.45,,Aug-2017,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,81467.0,1.0,6.0,1.0,2.0,12.0,75094.0,113.0,2.0,6.0,1803.0,101.0,14000.0,2.0,0.0,3.0,8.0,5092.0,4931.0,52.6,0.0,0.0,102.0,131.0,6.0,6.0,0.0,6.0,,0.0,,0.0,5.0,9.0,5.0,6.0,9.0,10.0,11.0,9.0,16.0,0.0,0.0,0.0,3.0,100.0,20.0,0.0,0.0,80450.0,81467.0,10400.0,66450.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90427258,,35000.0,35000.0,34750.0, 60 months,25.69,1041.51,F,F1,production operator,10+ years,MORTGAGE,85000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90427258,,debt_consolidation,Debt consolidation,760xx,TX,27.7,1.0,Jun-2004,685.0,689.0,2.0,21.0,,11.0,0.0,4134.0,29.7,26.0,f,0.0,0.0,40249.4998654484,39962.0,35000.0,5249.5,0.0,0.0,0.0,May-2017,34025.42,,Oct-2018,539.0,535.0,0.0,,1.0,Joint App,111600.0,21.88,Not Verified,0.0,0.0,250403.0,4.0,3.0,3.0,7.0,7.0,91259.0,100.0,4.0,5.0,2786.0,68.0,13900.0,6.0,2.0,6.0,13.0,22764.0,7366.0,35.9,0.0,0.0,147.0,140.0,1.0,1.0,2.0,2.0,,1.0,,0.0,4.0,4.0,6.0,8.0,14.0,7.0,10.0,4.0,11.0,0.0,0.0,0.0,8.0,92.3,33.3,0.0,0.0,277020.0,95393.0,11500.0,107120.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90301545,,25000.0,25000.0,25000.0, 36 months,16.99,891.2,D,D1,Service tech,5 years,RENT,105000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90301545,,debt_consolidation,Debt consolidation,770xx,TX,7.33,6.0,Oct-1999,680.0,684.0,0.0,23.0,,12.0,0.0,12561.0,35.1,17.0,f,5899.33,5899.33,25986.38,25986.38,19100.67,6885.71,0.0,0.0,0.0,Mar-2019,891.2,Apr-2019,Mar-2019,679.0,675.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,36079.0,2.0,6.0,0.0,0.0,90.0,23518.0,115.0,3.0,3.0,10071.0,64.0,35800.0,0.0,0.0,0.0,3.0,3007.0,15239.0,45.2,0.0,0.0,203.0,91.0,0.0,0.0,0.0,3.0,77.0,14.0,77.0,7.0,4.0,4.0,4.0,5.0,7.0,6.0,10.0,4.0,12.0,0.0,0.0,6.0,3.0,76.9,25.0,0.0,0.0,56253.0,36079.0,27800.0,20453.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90149378,,7500.0,7500.0,7500.0, 36 months,13.49,254.48,C,C2,Project Manager ,3 years,OWN,92500.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90149378,,home_improvement,Home improvement,071xx,NJ,13.06,2.0,Nov-2000,665.0,669.0,0.0,17.0,,10.0,0.0,12756.0,78.7,14.0,f,0.0,0.0,2030.22,2030.22,1416.12,614.1,0.0,0.0,0.0,Jun-2017,254.48,,Feb-2019,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,28978.0,0.0,2.0,1.0,2.0,10.0,16222.0,59.0,1.0,2.0,5503.0,66.0,16200.0,2.0,3.0,2.0,4.0,3622.0,2766.0,81.2,0.0,0.0,33.0,190.0,12.0,10.0,0.0,24.0,17.0,3.0,17.0,0.0,5.0,6.0,7.0,9.0,3.0,8.0,11.0,6.0,10.0,0.0,0.0,0.0,2.0,78.6,40.0,0.0,0.0,43792.0,28978.0,14700.0,27592.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90112071,,3000.0,3000.0,3000.0, 36 months,13.99,102.52,C,C3,,5 years,OWN,74000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90112071,,home_improvement,Home improvement,190xx,PA,2.4,0.0,Jun-2012,715.0,719.0,3.0,,,5.0,0.0,1380.0,11.1,6.0,f,685.24,685.24,2970.75,2970.75,2314.76,655.99,0.0,0.0,0.0,Mar-2019,102.52,Apr-2019,Mar-2019,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,274011.0,3.0,0.0,0.0,0.0,51.0,0.0,,2.0,4.0,247.0,11.0,12400.0,2.0,0.0,5.0,5.0,54802.0,8903.0,3.2,0.0,0.0,51.0,14.0,3.0,3.0,1.0,3.0,,0.0,,0.0,2.0,3.0,3.0,3.0,1.0,4.0,4.0,3.0,5.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,287229.0,1380.0,9200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90252180,,5000.0,5000.0,5000.0, 36 months,12.79,167.97,C,C1,Office Manager,10+ years,RENT,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90252180,,debt_consolidation,Debt consolidation,062xx,CT,18.84,1.0,Mar-2001,665.0,669.0,3.0,18.0,87.0,10.0,1.0,6060.0,58.3,18.0,f,1127.0,1127.0,4888.41,4888.41,3873.0,1015.41,0.0,0.0,0.0,Mar-2019,167.97,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,868.0,30767.0,3.0,1.0,2.0,2.0,2.0,24707.0,100.0,2.0,4.0,2138.0,88.0,10400.0,3.0,1.0,9.0,6.0,3077.0,314.0,92.7,0.0,0.0,123.0,186.0,5.0,2.0,0.0,23.0,36.0,2.0,18.0,0.0,2.0,8.0,2.0,6.0,5.0,9.0,13.0,8.0,10.0,0.0,0.0,0.0,4.0,88.9,100.0,1.0,0.0,35107.0,30767.0,4300.0,24707.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89834185,,25000.0,25000.0,25000.0, 36 months,15.59,873.88,C,C5,Sr. Buyer ,3 years,RENT,77000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89834185,,credit_card,Credit card refinancing,024xx,MA,16.44,0.0,Jun-2006,680.0,684.0,0.0,,,8.0,0.0,31740.0,96.2,16.0,f,0.0,0.0,29556.603838518902,29556.6,25000.0,4556.6,0.0,0.0,0.0,Mar-2018,15509.56,,Mar-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,37690.0,1.0,5.0,0.0,0.0,74.0,5950.0,35.0,1.0,2.0,24836.0,75.0,33000.0,0.0,1.0,0.0,2.0,4711.0,1260.0,96.2,0.0,0.0,123.0,96.0,4.0,4.0,0.0,4.0,,,,0.0,3.0,3.0,3.0,3.0,13.0,3.0,3.0,3.0,8.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,50172.0,37690.0,33000.0,17172.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90412122,,11500.0,11500.0,11500.0, 36 months,18.99,421.49,D,D3,,,RENT,28752.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90412122,,debt_consolidation,Debt consolidation,234xx,VA,19.7,0.0,Jun-1997,705.0,709.0,0.0,68.0,,10.0,0.0,6855.0,49.7,18.0,f,2772.03,2772.03,12211.08,12211.08,8727.97,3483.11,0.0,0.0,0.0,Mar-2019,421.49,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,20646.0,0.0,1.0,0.0,1.0,14.0,13791.0,84.0,0.0,0.0,4488.0,69.0,13800.0,0.0,1.0,0.0,1.0,2294.0,4145.0,62.3,0.0,0.0,92.0,231.0,34.0,14.0,0.0,45.0,,,68.0,0.0,5.0,5.0,6.0,10.0,2.0,9.0,15.0,5.0,10.0,0.0,0.0,0.0,0.0,94.4,16.7,0.0,0.0,30157.0,20646.0,11000.0,16357.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90210347,,14000.0,14000.0,14000.0, 60 months,18.99,363.1,D,D3,IT Support Analyst,2 years,MORTGAGE,80000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90210347,,debt_consolidation,Debt consolidation,328xx,FL,22.65,1.0,Oct-2004,675.0,679.0,0.0,18.0,,37.0,0.0,17867.0,33.1,57.0,f,8841.62,8841.62,10515.13,10515.13,5158.38,5356.75,0.0,0.0,0.0,Mar-2019,363.1,Apr-2019,Mar-2019,639.0,635.0,0.0,18.0,1.0,Individual,,,,0.0,0.0,242359.0,2.0,19.0,0.0,1.0,24.0,109953.0,89.0,3.0,5.0,5630.0,72.0,53900.0,0.0,1.0,0.0,6.0,6925.0,21286.0,45.3,0.0,0.0,142.0,143.0,0.0,0.0,4.0,4.0,,,,3.0,8.0,9.0,13.0,16.0,22.0,17.0,31.0,9.0,37.0,0.0,0.0,1.0,3.0,94.7,16.7,0.0,0.0,351812.0,127820.0,38900.0,123512.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221688,,7200.0,7200.0,7200.0, 36 months,15.59,251.68,C,C5,Customer Service Representative,1 year,RENT,32000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221688,,credit_card,Credit card refinancing,554xx,MN,27.16,0.0,Jan-2003,665.0,669.0,1.0,,64.0,14.0,2.0,8587.0,62.7,29.0,f,0.0,0.0,1841.01,1841.01,644.99,355.49,0.0,840.53,151.2954,Feb-2017,251.68,,Aug-2017,564.0,560.0,0.0,,1.0,Individual,,,,0.0,0.0,51421.0,0.0,8.0,0.0,4.0,14.0,42834.0,108.0,4.0,7.0,4693.0,96.0,13700.0,0.0,5.0,2.0,11.0,3673.0,175.0,97.2,0.0,0.0,164.0,67.0,7.0,7.0,0.0,19.0,,2.0,,0.0,2.0,5.0,2.0,5.0,18.0,6.0,11.0,5.0,14.0,0.0,0.0,0.0,4.0,100.0,100.0,2.0,0.0,53423.0,51421.0,6300.0,39723.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414499,,18400.0,18400.0,18400.0, 36 months,16.99,655.92,D,D1,Owner,6 years,MORTGAGE,40000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414499,,debt_consolidation,Debt consolidation,728xx,AR,15.39,0.0,May-2006,710.0,714.0,1.0,,,10.0,0.0,14720.0,37.2,15.0,f,0.0,0.0,20774.8215229666,20774.82,18400.0,2374.82,0.0,0.0,0.0,Aug-2017,14888.91,,Jun-2018,714.0,710.0,0.0,,1.0,Individual,,,,0.0,3121.0,45184.0,0.0,1.0,1.0,1.0,8.0,5314.0,87.0,1.0,1.0,6136.0,44.0,39600.0,0.0,1.0,4.0,2.0,4518.0,17965.0,34.4,0.0,0.0,87.0,117.0,12.0,8.0,2.0,12.0,,1.0,,0.0,3.0,5.0,6.0,7.0,2.0,8.0,11.0,5.0,10.0,0.0,0.0,0.0,2.0,100.0,16.7,0.0,0.0,77762.0,20034.0,27400.0,6129.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90172039,,7000.0,7000.0,7000.0, 36 months,16.99,249.54,D,D1,Lab Assoc,10+ years,OWN,46000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90172039,,vacation,Vacation,150xx,PA,27.34,0.0,Jul-2004,690.0,694.0,1.0,42.0,,14.0,0.0,42536.0,12.2,28.0,f,1652.91,1652.91,7230.05,7230.05,5347.09,1882.96,0.0,0.0,0.0,Mar-2019,249.54,Apr-2019,Mar-2019,529.0,525.0,0.0,44.0,1.0,Individual,,,,0.0,0.0,116763.0,9.0,2.0,4.0,4.0,2.0,24144.0,80.0,11.0,13.0,2074.0,52.0,61300.0,1.0,2.0,6.0,18.0,8340.0,16294.0,13.8,0.0,0.0,146.0,75.0,0.0,0.0,1.0,4.0,59.0,2.0,59.0,4.0,5.0,6.0,7.0,9.0,12.0,11.0,15.0,6.0,14.0,0.0,0.0,0.0,15.0,82.1,0.0,0.0,0.0,142546.0,66680.0,18900.0,30246.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90124427,,18000.0,18000.0,18000.0, 36 months,13.49,610.75,C,C2,district manager,10+ years,MORTGAGE,135000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90124427,,major_purchase,Major purchase,029xx,RI,29.99,0.0,Dec-2003,690.0,694.0,1.0,,,17.0,0.0,49453.0,59.9,31.0,f,0.0,0.0,19287.319152495802,19287.32,18000.0,1287.32,0.0,0.0,0.0,May-2017,157.31,,Dec-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,393691.0,2.0,5.0,1.0,3.0,2.0,84145.0,53.0,2.0,2.0,14557.0,57.0,82500.0,3.0,3.0,2.0,5.0,24606.0,31322.0,60.3,0.0,0.0,121.0,153.0,6.0,2.0,4.0,6.0,,2.0,,0.0,8.0,9.0,8.0,11.0,11.0,10.0,16.0,9.0,17.0,0.0,0.0,0.0,3.0,100.0,25.0,0.0,0.0,516535.0,133598.0,78900.0,115085.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89968547,,16000.0,16000.0,16000.0, 36 months,16.99,570.37,D,D1,Systems Analyst,7 years,MORTGAGE,81000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89968547,,debt_consolidation,Debt consolidation,460xx,IN,26.25,0.0,May-1996,680.0,684.0,2.0,26.0,25.0,17.0,2.0,8300.0,32.0,55.0,f,0.0,0.0,19996.1245427923,19996.12,16000.0,3996.12,0.0,0.0,0.0,Oct-2018,19.1,,Mar-2019,644.0,640.0,0.0,32.0,1.0,Individual,,,,0.0,0.0,186253.0,5.0,5.0,4.0,6.0,2.0,46206.0,84.0,2.0,5.0,3823.0,68.0,25900.0,4.0,5.0,6.0,11.0,10956.0,9682.0,36.7,0.0,0.0,212.0,244.0,2.0,2.0,3.0,2.0,,2.0,,7.0,4.0,8.0,6.0,10.0,30.0,11.0,22.0,8.0,17.0,0.0,0.0,0.0,6.0,83.3,16.7,0.0,2.0,219199.0,54506.0,15300.0,54801.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90276664,,18000.0,18000.0,18000.0, 60 months,8.99,373.57,B,B1,Corrections Officer,10+ years,MORTGAGE,106000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90276664,,home_improvement,Home improvement,564xx,MN,9.26,0.0,Sep-2001,730.0,734.0,0.0,,,9.0,0.0,5056.0,42.1,16.0,f,0.0,0.0,10731.34,10731.34,2214.0,1139.14,0.0,7378.2,1328.076,Jul-2017,373.57,,Aug-2018,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,143360.0,2.0,3.0,1.0,2.0,3.0,23767.0,75.0,1.0,1.0,4335.0,66.0,12000.0,1.0,1.0,0.0,4.0,15929.0,5560.0,46.5,0.0,0.0,135.0,180.0,2.0,2.0,1.0,2.0,,13.0,,0.0,3.0,4.0,3.0,6.0,7.0,5.0,8.0,4.0,9.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,161165.0,28823.0,10400.0,31921.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2018,COMPLETE,Feb-2018,7378.2,45.0,1.0 +90191920,,20000.0,20000.0,20000.0, 36 months,12.79,671.86,C,C1,System Administrato,2 years,RENT,80000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191920,,debt_consolidation,Debt consolidation,799xx,TX,16.26,0.0,Oct-2000,660.0,664.0,0.0,38.0,,6.0,0.0,14490.0,52.5,20.0,f,0.0,0.0,21115.1276951798,21115.13,20000.0,1115.13,0.0,0.0,0.0,Mar-2017,18441.9,,Jul-2018,699.0,695.0,0.0,38.0,1.0,Individual,,,,0.0,0.0,66929.0,0.0,1.0,1.0,1.0,7.0,52439.0,,2.0,3.0,4848.0,53.0,27600.0,0.0,2.0,0.0,4.0,11155.0,5391.0,58.8,0.0,0.0,127.0,191.0,7.0,7.0,0.0,27.0,,22.0,,1.0,2.0,3.0,3.0,4.0,8.0,5.0,11.0,3.0,6.0,0.0,0.0,0.0,3.0,90.0,33.3,0.0,0.0,82371.0,66929.0,13100.0,54771.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90122081,,7000.0,7000.0,7000.0, 36 months,13.99,239.21,C,C3,,,MORTGAGE,30000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90122081,,credit_card,Credit card refinancing,112xx,NY,11.76,0.0,Jan-1991,665.0,669.0,2.0,70.0,64.0,9.0,1.0,5924.0,31.1,26.0,f,0.0,0.0,8348.7498460761,8348.75,7000.0,1333.75,15.0000000857,0.0,0.0,Aug-2018,3115.78,,Jan-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,5924.0,3.0,0.0,0.0,0.0,135.0,0.0,,5.0,6.0,2687.0,31.0,16100.0,0.0,0.0,4.0,6.0,658.0,3602.0,48.8,0.0,0.0,135.0,307.0,1.0,1.0,0.0,5.0,,1.0,70.0,0.0,4.0,8.0,4.0,13.0,1.0,9.0,24.0,8.0,9.0,0.0,0.0,0.0,5.0,95.5,75.0,1.0,0.0,16100.0,5924.0,8300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90078040,,15000.0,15000.0,15000.0, 60 months,13.99,348.95,C,C3,Administrative Assistant,10+ years,MORTGAGE,64000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90078040,,debt_consolidation,Debt consolidation,453xx,OH,34.7,0.0,Apr-2003,690.0,694.0,3.0,25.0,,15.0,0.0,10663.0,43.9,35.0,f,0.0,0.0,17678.3501661063,17678.35,15000.0,2678.35,0.0,0.0,0.0,Mar-2018,12124.3,,Feb-2019,739.0,735.0,0.0,98.0,1.0,Individual,,,,0.0,0.0,190399.0,1.0,9.0,1.0,2.0,6.0,100743.0,97.0,2.0,2.0,4125.0,82.0,24300.0,9.0,2.0,15.0,4.0,12693.0,12020.0,37.7,0.0,0.0,145.0,161.0,7.0,6.0,4.0,7.0,98.0,1.0,98.0,1.0,3.0,4.0,4.0,9.0,18.0,5.0,13.0,4.0,15.0,0.0,0.0,0.0,3.0,85.3,0.0,0.0,0.0,217901.0,111406.0,19300.0,108333.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90177899,,11050.0,11050.0,11050.0, 36 months,17.99,399.43,D,D2,personal trainer,5 years,OWN,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90177899,,other,Other,451xx,OH,4.11,1.0,Aug-2007,670.0,674.0,0.0,22.0,,7.0,0.0,4116.0,22.7,13.0,f,2395.34,2395.34,11772.43,11772.43,8654.66,3117.77,0.0,0.0,0.0,Mar-2019,399.43,Apr-2019,Mar-2019,764.0,760.0,0.0,58.0,1.0,Individual,,,,0.0,19970.0,123768.0,0.0,0.0,0.0,0.0,98.0,0.0,,0.0,0.0,3691.0,23.0,18100.0,0.0,0.0,1.0,0.0,17681.0,3809.0,49.2,0.0,0.0,101.0,109.0,25.0,25.0,1.0,28.0,58.0,3.0,22.0,1.0,1.0,2.0,2.0,5.0,2.0,6.0,10.0,2.0,7.0,0.0,0.0,0.0,0.0,83.3,50.0,0.0,0.0,157500.0,4116.0,7500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197017,,19475.0,19475.0,19425.0, 60 months,24.49,565.81,E,E3,SECURITY,10+ years,RENT,46402.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197017,,home_improvement,Home improvement,783xx,TX,25.63,0.0,Jul-2006,660.0,664.0,0.0,58.0,,8.0,0.0,3896.0,41.9,45.0,f,0.0,0.0,13552.94,13518.14,5138.6,8414.34,0.0,0.0,0.0,Oct-2018,565.81,,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,40716.0,1.0,3.0,5.0,13.0,5.0,36820.0,92.0,0.0,3.0,1911.0,83.0,9300.0,3.0,8.0,5.0,16.0,5090.0,3889.0,32.9,0.0,0.0,122.0,45.0,16.0,5.0,0.0,20.0,,3.0,,0.0,1.0,4.0,2.0,2.0,39.0,5.0,6.0,4.0,8.0,0.0,0.0,0.0,5.0,97.8,0.0,0.0,0.0,49130.0,40716.0,5800.0,39830.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90215360,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Corporate Marketing Manager,2 years,RENT,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90215360,,debt_consolidation,Debt consolidation,333xx,FL,11.13,0.0,Jan-2004,660.0,664.0,0.0,66.0,,15.0,0.0,30460.0,73.4,32.0,f,0.0,0.0,23249.837410045697,23249.84,20000.0,3249.84,0.0,0.0,0.0,Feb-2018,12935.76,,Mar-2019,684.0,680.0,0.0,66.0,1.0,Individual,,,,0.0,0.0,30460.0,0.0,0.0,0.0,1.0,24.0,0.0,,0.0,3.0,8985.0,73.0,41500.0,0.0,0.0,0.0,4.0,2176.0,8823.0,77.1,0.0,0.0,148.0,152.0,16.0,16.0,0.0,18.0,,,,1.0,9.0,11.0,12.0,17.0,8.0,15.0,23.0,11.0,15.0,0.0,0.0,0.0,0.0,96.8,58.3,0.0,0.0,41500.0,30460.0,38600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90292068,,7500.0,7500.0,7500.0, 36 months,13.99,256.3,C,C3,Retail Sales Associate,2 years,RENT,45000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90292068,,credit_card,Credit card refinancing,922xx,CA,13.49,0.0,Feb-2012,690.0,694.0,0.0,,,10.0,0.0,9567.0,30.9,17.0,f,0.0,0.0,2557.17,2557.17,1780.03,777.14,0.0,0.0,0.0,Aug-2017,256.3,,May-2018,499.0,0.0,1.0,,1.0,Individual,,,,0.0,54.0,31145.0,3.0,1.0,1.0,1.0,4.0,21578.0,97.0,4.0,6.0,2431.0,58.0,31000.0,0.0,0.0,1.0,7.0,3115.0,15930.0,23.8,0.0,0.0,4.0,55.0,3.0,3.0,0.0,3.0,,4.0,,0.0,3.0,4.0,4.0,5.0,1.0,9.0,16.0,4.0,10.0,0.0,0.0,0.0,5.0,100.0,25.0,0.0,0.0,53331.0,31145.0,20900.0,22331.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90152214,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,plant manager,2 years,MORTGAGE,135000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90152214,,debt_consolidation,Debt consolidation,328xx,FL,25.86,0.0,Aug-2001,670.0,674.0,1.0,,,18.0,0.0,30221.0,80.6,39.0,f,4568.51,4568.51,19804.8,19804.8,15431.49,4373.31,0.0,0.0,0.0,Mar-2019,683.46,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,570804.0,4.0,5.0,2.0,3.0,2.0,34978.0,55.0,3.0,3.0,7348.0,63.0,37500.0,0.0,4.0,1.0,7.0,33577.0,2763.0,90.6,0.0,0.0,153.0,181.0,1.0,1.0,5.0,6.0,,2.0,,0.0,6.0,9.0,6.0,8.0,15.0,10.0,18.0,9.0,18.0,0.0,0.0,0.0,5.0,100.0,83.3,0.0,0.0,628574.0,68305.0,29300.0,64205.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89063139,,35000.0,35000.0,35000.0, 36 months,17.99,1265.16,D,D2,Managing Director,10+ years,MORTGAGE,500000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89063139,,credit_card,Credit card refinancing,606xx,IL,9.33,0.0,Aug-1995,680.0,684.0,4.0,,,15.0,0.0,311486.0,77.9,24.0,f,0.0,0.0,43533.8204049345,43533.82,35000.0,8533.82,0.0,0.0,0.0,Jul-2018,18265.6,,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,1277368.0,2.0,3.0,0.0,0.0,34.0,49074.0,55.0,2.0,4.0,15681.0,69.0,346800.0,1.0,6.0,4.0,5.0,85158.0,24628.0,65.7,0.0,0.0,151.0,253.0,4.0,4.0,5.0,4.0,,0.0,,0.0,6.0,10.0,7.0,7.0,4.0,11.0,14.0,10.0,15.0,0.0,0.0,0.0,2.0,100.0,71.4,0.0,0.0,1377471.0,360560.0,71800.0,88671.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191767,,18000.0,18000.0,17975.0, 60 months,13.99,418.74,C,C3,Pharmacist,2 years,MORTGAGE,95000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191767,,debt_consolidation,Debt consolidation,730xx,OK,16.01,5.0,Apr-1995,660.0,664.0,0.0,6.0,17.0,7.0,1.0,7501.0,91.5,15.0,f,10841.37,10826.31,12169.18,12152.28,7158.63,5010.55,0.0,0.0,0.0,Mar-2019,418.74,Apr-2019,Mar-2019,679.0,675.0,0.0,17.0,1.0,Individual,,,,0.0,150.0,170225.0,0.0,4.0,3.0,3.0,7.0,48563.0,89.0,0.0,0.0,5496.0,89.0,8200.0,4.0,0.0,10.0,3.0,24318.0,699.0,91.5,0.0,0.0,135.0,172.0,96.0,7.0,1.0,96.0,6.0,10.0,6.0,2.0,2.0,2.0,2.0,4.0,6.0,2.0,7.0,2.0,7.0,0.0,0.0,2.0,3.0,53.3,100.0,0.0,1.0,204642.0,56064.0,8200.0,54558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90180936,,25000.0,25000.0,25000.0, 36 months,12.79,839.83,C,C1,sheetmetal,7 years,OWN,64000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90180936,,credit_card,Credit card refinancing,560xx,MN,11.51,0.0,May-2006,680.0,684.0,0.0,,103.0,5.0,1.0,7334.0,66.1,7.0,f,0.0,0.0,7540.71,7540.71,5385.91,2154.8,0.0,0.0,0.0,Jul-2017,839.83,,Feb-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,17918.0,0.0,1.0,0.0,0.0,25.0,10584.0,53.0,0.0,0.0,7334.0,58.0,11100.0,0.0,0.0,0.0,0.0,4480.0,3766.0,66.1,0.0,0.0,124.0,95.0,50.0,25.0,0.0,72.0,,,,0.0,1.0,1.0,3.0,3.0,2.0,4.0,5.0,1.0,5.0,0.0,0.0,0.0,0.0,100.0,33.3,1.0,0.0,31100.0,17918.0,11100.0,20000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197636,,35000.0,35000.0,35000.0, 60 months,18.99,907.73,D,D3,PRINCIPAL DATABASE ADMIN,1 year,MORTGAGE,128000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197636,,debt_consolidation,Debt consolidation,750xx,TX,25.0,0.0,Nov-1999,720.0,724.0,0.0,34.0,,8.0,0.0,20672.0,72.5,35.0,w,22142.82,22142.82,26287.25,26287.25,12857.18,13430.07,0.0,0.0,0.0,Mar-2019,907.73,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,476601.0,1.0,3.0,1.0,2.0,9.0,66376.0,53.0,1.0,3.0,11291.0,61.0,28500.0,2.0,1.0,2.0,6.0,68086.0,7828.0,72.5,0.0,0.0,102.0,202.0,5.0,5.0,2.0,5.0,34.0,2.0,34.0,0.0,3.0,3.0,4.0,16.0,5.0,4.0,26.0,3.0,8.0,0.0,0.0,0.0,2.0,97.1,33.3,0.0,0.0,519079.0,87048.0,28500.0,90579.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90182234,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Senior Accountant,4 years,MORTGAGE,73000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90182234,,credit_card,Credit card refinancing,370xx,TN,24.03,1.0,Dec-2003,690.0,694.0,0.0,5.0,,16.0,0.0,13937.0,57.6,31.0,f,2254.34,2254.34,9734.86,9734.86,7745.66,1989.2,0.0,0.0,0.0,Mar-2019,335.93,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,210030.0,0.0,6.0,0.0,2.0,23.0,18484.0,42.0,0.0,0.0,5900.0,48.0,24200.0,0.0,2.0,1.0,2.0,13127.0,3749.0,76.1,0.0,0.0,132.0,153.0,37.0,23.0,4.0,58.0,,2.0,,0.0,5.0,7.0,5.0,6.0,16.0,9.0,11.0,7.0,16.0,0.0,0.0,0.0,0.0,96.8,40.0,0.0,0.0,263026.0,32421.0,15700.0,44033.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90161622,,6500.0,6500.0,6500.0, 36 months,12.79,218.36,C,C1,Therapy Services Aide,10+ years,RENT,43000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90161622,,debt_consolidation,Debt consolidation,535xx,WI,17.53,1.0,Oct-2004,695.0,699.0,1.0,10.0,,8.0,0.0,7329.0,39.2,16.0,f,1465.13,1465.13,6327.82,6327.82,5034.87,1292.95,0.0,0.0,0.0,Mar-2019,218.36,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,17530.0,1.0,2.0,0.0,0.0,28.0,10201.0,43.0,2.0,4.0,3957.0,41.0,18700.0,0.0,2.0,1.0,4.0,2191.0,9667.0,35.6,0.0,0.0,143.0,133.0,3.0,3.0,0.0,3.0,72.0,3.0,10.0,0.0,3.0,6.0,3.0,5.0,4.0,6.0,12.0,6.0,8.0,0.0,0.0,0.0,2.0,75.0,33.3,0.0,0.0,42717.0,17530.0,15000.0,24017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89977645,,32000.0,32000.0,32000.0, 60 months,21.49,874.56,D,D5,I.T. Specialist,5 years,RENT,77000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89977645,,debt_consolidation,Debt consolidation,474xx,IN,18.38,0.0,Oct-2007,710.0,714.0,0.0,,47.0,16.0,2.0,9417.0,32.4,21.0,f,0.0,0.0,38358.4834711079,38358.48,32000.0,6358.48,0.0,0.0,0.0,Sep-2017,29651.08,,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,40768.0,0.0,3.0,1.0,3.0,9.0,31351.0,77.0,1.0,3.0,4831.0,58.0,29100.0,2.0,2.0,3.0,6.0,2718.0,12986.0,37.3,0.0,0.0,76.0,107.0,12.0,9.0,0.0,12.0,,0.0,,0.0,5.0,9.0,7.0,8.0,4.0,13.0,17.0,9.0,16.0,0.0,0.0,0.0,2.0,100.0,14.3,1.0,1.0,69813.0,40768.0,20700.0,40713.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90413786,,5000.0,5000.0,5000.0, 36 months,16.99,178.24,D,D1,Teacher ,6 years,RENT,85000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413786,,other,Other,112xx,NY,3.37,1.0,Jul-2009,665.0,669.0,1.0,23.0,,9.0,0.0,8109.0,40.7,11.0,f,1179.87,1179.87,5164.24,5164.24,3820.13,1344.11,0.0,0.0,0.0,Mar-2019,178.24,Apr-2019,Mar-2019,724.0,720.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,14609.0,2.0,1.0,0.0,0.0,66.0,6474.0,89.0,3.0,5.0,2672.0,54.0,19900.0,0.0,0.0,1.0,6.0,1623.0,11791.0,40.7,0.0,0.0,66.0,86.0,3.0,3.0,0.0,3.0,,3.0,,1.0,7.0,7.0,7.0,7.0,1.0,7.0,9.0,7.0,9.0,0.0,0.0,1.0,4.0,81.8,0.0,0.0,0.0,27221.0,14609.0,19900.0,7295.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90398856,,35000.0,35000.0,35000.0, 60 months,16.99,869.66,D,D1,Senior Manager,10+ years,OWN,250000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90398856,,home_improvement,Home improvement,786xx,TX,8.58,1.0,Jun-2005,730.0,734.0,1.0,17.0,,9.0,0.0,7500.0,25.0,27.0,f,21698.89,21698.89,25137.55,25137.55,13301.11,11836.44,0.0,0.0,0.0,Mar-2019,869.66,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,27490.0,0.0,3.0,1.0,4.0,11.0,19990.0,53.0,0.0,2.0,4541.0,41.0,30000.0,1.0,0.0,4.0,6.0,3054.0,19051.0,28.1,0.0,0.0,111.0,135.0,13.0,11.0,0.0,13.0,61.0,0.0,61.0,0.0,2.0,4.0,3.0,10.0,9.0,6.0,18.0,4.0,9.0,0.0,0.0,0.0,1.0,92.0,0.0,0.0,0.0,67950.0,27490.0,26500.0,37950.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280510,,20000.0,20000.0,19975.0, 36 months,19.99,743.17,D,D4,AAA Director,10+ years,MORTGAGE,72000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280510,,debt_consolidation,Debt consolidation,287xx,NC,33.95,0.0,Jun-1992,660.0,664.0,1.0,,,15.0,0.0,22489.0,74.5,35.0,f,0.0,0.0,20828.9291289677,20802.89,20000.0,828.93,0.0,0.0,0.0,Dec-2016,20107.97,,Feb-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,39170.0,0.0,2.0,0.0,4.0,13.0,16681.0,51.0,0.0,0.0,4452.0,62.0,30200.0,1.0,0.0,1.0,4.0,3264.0,4422.0,79.1,0.0,0.0,64.0,291.0,40.0,13.0,0.0,49.0,,4.0,,0.0,6.0,9.0,6.0,18.0,8.0,13.0,27.0,9.0,14.0,0.0,0.0,0.0,0.0,100.0,85.7,0.0,0.0,62778.0,39170.0,21200.0,32578.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90160497,,15600.0,15600.0,15600.0, 36 months,12.79,524.05,C,C1,Admin Asst,10+ years,RENT,45000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90160497,,credit_card,Credit card refinancing,751xx,TX,30.73,0.0,Oct-2003,660.0,664.0,1.0,30.0,,12.0,0.0,14794.0,55.2,24.0,f,0.0,0.0,5010.37,5010.37,3360.77,1344.6,0.0,305.0,54.9000000788,Jul-2017,524.05,,Mar-2019,589.0,585.0,0.0,,1.0,Individual,,,,0.0,0.0,19535.0,2.0,1.0,0.0,0.0,63.0,4741.0,14.0,3.0,8.0,4960.0,32.0,26800.0,1.0,1.0,1.0,8.0,1628.0,3230.0,76.8,0.0,0.0,109.0,155.0,4.0,4.0,0.0,4.0,52.0,4.0,52.0,0.0,5.0,9.0,5.0,13.0,4.0,11.0,20.0,9.0,12.0,0.0,0.0,0.0,3.0,83.3,80.0,0.0,0.0,61684.0,19535.0,13900.0,34884.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2018,ACTIVE,Feb-2018,5812.96,45.0,24.0 +90111587,,14000.0,14000.0,14000.0, 60 months,13.99,325.69,C,C3,Headend/Video Tech,10+ years,MORTGAGE,83500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111587,,debt_consolidation,Debt consolidation,206xx,MD,20.37,2.0,Jan-1995,685.0,689.0,1.0,22.0,,10.0,0.0,14498.0,66.5,24.0,f,8432.06,8432.06,9417.81,9417.81,5567.94,3849.87,0.0,0.0,0.0,Mar-2019,325.69,Apr-2019,Mar-2019,744.0,740.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,211223.0,1.0,1.0,0.0,2.0,15.0,12870.0,77.0,1.0,5.0,10233.0,71.0,21800.0,0.0,1.0,1.0,7.0,21122.0,0.0,100.2,0.0,0.0,133.0,260.0,5.0,5.0,2.0,18.0,,5.0,22.0,2.0,2.0,5.0,2.0,6.0,5.0,8.0,17.0,5.0,10.0,0.0,0.0,0.0,1.0,70.8,100.0,0.0,0.0,320968.0,27368.0,10700.0,16788.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89958357,,19225.0,19225.0,19225.0, 36 months,13.49,652.32,C,C2,Manager,4 years,MORTGAGE,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89958357,,debt_consolidation,Debt consolidation,234xx,VA,24.68,0.0,Nov-1992,685.0,689.0,0.0,75.0,,9.0,0.0,23559.0,74.6,18.0,f,4367.36,4367.36,18938.89,18938.89,14857.64,4081.25,0.0,0.0,0.0,Mar-2019,652.32,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,217807.0,2.0,1.0,0.0,0.0,31.0,2179.0,17.0,2.0,5.0,9474.0,58.0,31600.0,0.0,0.0,3.0,5.0,24201.0,1302.0,90.8,0.0,0.0,117.0,286.0,5.0,5.0,5.0,5.0,,1.0,,0.0,3.0,6.0,3.0,4.0,2.0,7.0,11.0,6.0,9.0,0.0,0.0,0.0,2.0,94.4,100.0,0.0,0.0,244924.0,25738.0,14200.0,13074.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90196723,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,superintendent,10+ years,MORTGAGE,135000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90196723,,debt_consolidation,Debt consolidation,959xx,CA,10.52,2.0,May-2003,675.0,679.0,0.0,4.0,,10.0,0.0,11484.0,70.9,31.0,w,0.0,0.0,36244.5050782775,36244.51,35000.0,1244.51,0.0,0.0,0.0,Dec-2016,35431.29,,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,521498.0,0.0,3.0,0.0,2.0,13.0,59286.0,92.0,0.0,2.0,1735.0,88.0,16200.0,0.0,9.0,4.0,6.0,65187.0,3707.0,40.2,0.0,0.0,97.0,160.0,16.0,13.0,7.0,60.0,4.0,6.0,4.0,0.0,2.0,3.0,2.0,4.0,10.0,5.0,14.0,3.0,10.0,0.0,0.0,0.0,0.0,93.5,0.0,0.0,0.0,546407.0,70770.0,6200.0,64457.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90302239,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,Manager,2 years,MORTGAGE,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90302239,,debt_consolidation,Debt consolidation,925xx,CA,4.83,0.0,Dec-2000,675.0,679.0,0.0,,73.0,10.0,1.0,17054.0,72.9,26.0,f,0.0,0.0,16154.9138980325,16154.91,15000.0,1154.91,0.0,0.0,0.0,Jul-2017,1486.99,,Mar-2018,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,258230.0,1.0,2.0,0.0,0.0,29.0,9754.0,90.0,6.0,8.0,9945.0,78.0,23400.0,1.0,0.0,4.0,9.0,28692.0,4923.0,77.0,0.0,0.0,147.0,189.0,1.0,1.0,1.0,1.0,,1.0,,0.0,5.0,6.0,5.0,10.0,8.0,7.0,17.0,6.0,10.0,0.0,0.0,0.0,6.0,100.0,60.0,1.0,0.0,269909.0,26808.0,21400.0,10856.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89824506,,36000.0,36000.0,36000.0, 60 months,21.49,983.88,D,D5,Federal Officer ,9 years,MORTGAGE,100000.0,Source Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=89824506,,debt_consolidation,Debt consolidation,640xx,MO,27.82,0.0,Mar-2000,690.0,694.0,3.0,77.0,,30.0,0.0,31632.0,52.9,49.0,f,25406.37,25406.37,24784.73,24784.73,10593.63,14191.1,0.0,0.0,0.0,Nov-2018,983.88,Apr-2019,Mar-2019,564.0,560.0,0.0,,1.0,Individual,,,,0.0,0.0,283322.0,2.0,13.0,2.0,2.0,4.0,190916.0,101.0,0.0,0.0,8177.0,84.0,59800.0,3.0,3.0,11.0,2.0,9770.0,3403.0,86.5,0.0,0.0,135.0,198.0,32.0,4.0,3.0,95.0,,1.0,,0.0,4.0,9.0,6.0,9.0,26.0,15.0,20.0,9.0,30.0,0.0,0.0,0.0,2.0,95.9,66.7,0.0,0.0,329943.0,222548.0,25200.0,195701.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90331654,,35000.0,35000.0,35000.0, 36 months,21.49,1327.45,D,D5,Supply Sergeant,10+ years,RENT,80976.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90331654,,debt_consolidation,Debt consolidation,030xx,NH,28.59,0.0,Dec-2010,715.0,719.0,0.0,,,10.0,0.0,14727.0,57.3,14.0,f,0.0,0.0,9423.62,9423.62,4396.71,3776.91,0.0,1250.0,224.9999998595,Apr-2017,1327.45,,Mar-2019,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,62799.0,2.0,4.0,1.0,3.0,1.0,48072.0,74.0,3.0,4.0,805.0,69.0,25700.0,0.0,6.0,0.0,7.0,6280.0,395.0,67.1,0.0,0.0,69.0,54.0,3.0,1.0,0.0,24.0,,,,0.0,1.0,4.0,1.0,1.0,8.0,6.0,6.0,4.0,10.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,90844.0,62799.0,1200.0,65144.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Sep-2018,ACTIVE,Sep-2018,15032.28,44.99,24.0 +90131767,,7000.0,7000.0,7000.0, 36 months,12.79,235.16,C,C1,Senior Accountant,8 years,MORTGAGE,85700.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90131767,,debt_consolidation,Debt consolidation,820xx,WY,15.15,0.0,Dec-1991,665.0,669.0,1.0,28.0,10.0,17.0,1.0,26441.0,70.9,30.0,f,0.0,0.0,8010.4144299773,8010.41,7000.0,1010.41,0.0,0.0,0.0,Mar-2018,34.44,,Mar-2018,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,260905.0,1.0,1.0,0.0,0.0,46.0,3858.0,25.0,2.0,3.0,3929.0,57.0,37300.0,2.0,0.0,5.0,4.0,17394.0,956.0,89.3,0.0,0.0,88.0,297.0,5.0,5.0,1.0,15.0,,1.0,,1.0,3.0,9.0,4.0,13.0,4.0,15.0,25.0,9.0,17.0,0.0,0.0,0.0,2.0,76.7,75.0,0.0,1.0,288775.0,30299.0,8900.0,15455.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171801,,35000.0,35000.0,34750.0, 60 months,25.69,1041.51,F,F1,Creative Services Director,9 years,RENT,85000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171801,,debt_consolidation,Debt consolidation,029xx,RI,27.77,0.0,Oct-1993,675.0,679.0,0.0,41.0,,6.0,0.0,34723.0,88.8,12.0,f,0.0,0.0,23956.86,23785.74,7636.39,14185.37,52.08,2083.02,374.943600021,Jul-2018,1041.51,,Oct-2017,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,59317.0,1.0,2.0,0.0,1.0,23.0,24594.0,50.0,1.0,1.0,17076.0,67.0,39100.0,0.0,0.0,0.0,2.0,9886.0,4377.0,88.8,0.0,0.0,275.0,174.0,2.0,2.0,0.0,2.0,41.0,,41.0,0.0,4.0,4.0,4.0,5.0,7.0,4.0,5.0,4.0,6.0,0.0,0.0,0.0,1.0,90.9,100.0,0.0,0.0,88026.0,59317.0,39100.0,48926.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191303,,27600.0,27600.0,27550.0, 36 months,16.99,983.88,D,D1,Digital Support Specialist,10+ years,RENT,60000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191303,,debt_consolidation,Debt consolidation,906xx,CA,31.1,0.0,Sep-2000,660.0,664.0,2.0,91.0,66.0,7.0,2.0,1151.0,6.3,27.0,f,0.0,0.0,29760.552458898903,29706.64,27600.0,2160.55,0.0,0.0,0.0,Mar-2017,25851.08,,Mar-2019,724.0,720.0,0.0,91.0,1.0,Individual,,,,0.0,0.0,19196.0,1.0,1.0,2.0,3.0,1.0,18045.0,100.0,1.0,3.0,1151.0,53.0,18200.0,1.0,0.0,3.0,6.0,2742.0,15449.0,6.9,0.0,0.0,145.0,192.0,12.0,1.0,1.0,12.0,91.0,3.0,91.0,1.0,1.0,1.0,4.0,13.0,7.0,6.0,19.0,1.0,7.0,0.0,0.0,0.0,3.0,95.7,0.0,2.0,0.0,36200.0,19196.0,16600.0,18000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221765,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Design Engineer,10+ years,MORTGAGE,93000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221765,,home_improvement,Debt consolidation,532xx,WI,12.05,1.0,Jun-1998,675.0,679.0,3.0,18.0,69.0,7.0,1.0,9587.0,82.6,14.0,f,2254.34,2254.34,9734.86,9734.86,7745.66,1989.2,0.0,0.0,0.0,Mar-2019,335.93,Apr-2019,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,204638.0,1.0,2.0,1.0,2.0,5.0,24869.0,83.0,0.0,1.0,4764.0,83.0,11600.0,4.0,2.0,5.0,4.0,29234.0,2013.0,82.6,0.0,0.0,79.0,219.0,21.0,5.0,2.0,21.0,18.0,2.0,18.0,0.0,3.0,3.0,4.0,4.0,6.0,4.0,5.0,3.0,7.0,0.0,0.0,0.0,2.0,92.9,50.0,0.0,0.0,218016.0,34456.0,11600.0,30084.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90312349,,20000.0,20000.0,20000.0, 60 months,12.79,452.92,C,C1,IT Manager,1 year,RENT,115000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90312349,,debt_consolidation,Debt consolidation,986xx,WA,18.28,0.0,Sep-2005,690.0,694.0,0.0,,,11.0,0.0,27151.0,92.0,54.0,f,11906.16,11906.16,13120.47,13120.47,8093.84,5026.63,0.0,0.0,0.0,Mar-2019,452.92,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,161664.0,0.0,4.0,1.0,1.0,8.0,134513.0,76.0,0.0,2.0,7683.0,82.0,29500.0,0.0,8.0,2.0,3.0,14697.0,1052.0,94.3,0.0,0.0,132.0,126.0,14.0,8.0,1.0,14.0,,8.0,,0.0,4.0,6.0,4.0,6.0,43.0,7.0,9.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,75.0,0.0,0.0,173784.0,161664.0,18500.0,144284.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403585,,6000.0,6000.0,6000.0, 36 months,15.59,209.73,C,C5,Shift Supervisor ,4 years,RENT,20000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403585,,credit_card,Credit card refinancing,329xx,FL,11.64,0.0,May-2012,685.0,689.0,0.0,,,4.0,0.0,9323.0,82.5,4.0,f,1396.95,1396.95,6076.97,6076.97,4603.05,1473.92,0.0,0.0,0.0,Mar-2019,209.73,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,9323.0,0.0,0.0,0.0,0.0,,0.0,,2.0,2.0,3296.0,83.0,11300.0,0.0,0.0,0.0,2.0,2331.0,1031.0,90.0,0.0,0.0,,52.0,7.0,7.0,0.0,7.0,,,,0.0,3.0,4.0,3.0,3.0,0.0,4.0,4.0,4.0,4.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,11300.0,9323.0,10300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90141646,,12800.0,12800.0,12800.0, 36 months,14.49,440.53,C,C4,Public Relations Manager,6 years,RENT,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90141646,,other,Other,908xx,CA,21.84,19.0,May-2000,665.0,669.0,0.0,7.0,,19.0,0.0,7110.0,82.7,31.0,f,2942.87,2942.87,12779.24,12779.24,9857.13,2922.11,0.0,0.0,0.0,Mar-2019,440.53,Apr-2019,Mar-2019,719.0,715.0,0.0,14.0,1.0,Individual,,,,0.0,0.0,106417.0,1.0,12.0,1.0,1.0,3.0,99307.0,86.0,0.0,1.0,3154.0,86.0,8600.0,0.0,0.0,0.0,2.0,5912.0,200.0,96.7,0.0,0.0,121.0,196.0,23.0,3.0,0.0,23.0,,23.0,18.0,0.0,2.0,4.0,2.0,3.0,22.0,7.0,9.0,4.0,19.0,0.0,0.0,16.0,1.0,36.7,100.0,0.0,0.0,116530.0,106417.0,6000.0,107930.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90195919,,14400.0,14400.0,14400.0, 60 months,21.49,393.55,D,D5,Laborer,10+ years,OWN,36000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90195919,,debt_consolidation,Debt consolidation,179xx,PA,33.0,0.0,Jun-2006,670.0,674.0,1.0,,,9.0,0.0,9371.0,84.4,18.0,f,9299.87,9299.87,11369.97,11369.97,5100.13,6269.84,0.0,0.0,0.0,Mar-2019,393.55,Apr-2019,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,29019.0,2.0,3.0,2.0,2.0,3.0,19648.0,68.0,1.0,1.0,3023.0,73.0,11100.0,1.0,0.0,3.0,3.0,3224.0,729.0,92.8,0.0,0.0,100.0,123.0,3.0,3.0,0.0,52.0,,3.0,,0.0,5.0,5.0,5.0,5.0,12.0,6.0,6.0,5.0,9.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,40036.0,29019.0,10100.0,28936.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90156180,,12000.0,12000.0,12000.0, 60 months,12.79,271.75,C,C1,Machinist,4 years,RENT,42500.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90156180,,car,Car financing,054xx,VT,18.5,0.0,Jul-2004,695.0,699.0,0.0,,,11.0,0.0,14397.0,51.1,31.0,f,7141.79,7141.79,7872.22,7872.22,4858.21,3014.01,0.0,0.0,0.0,Mar-2019,271.75,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,22882.0,1.0,2.0,0.0,1.0,15.0,8485.0,57.0,2.0,5.0,5317.0,53.0,28200.0,0.0,1.0,0.0,6.0,2080.0,11803.0,55.0,0.0,0.0,135.0,146.0,4.0,4.0,2.0,4.0,,16.0,,0.0,3.0,3.0,7.0,14.0,8.0,9.0,21.0,3.0,11.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,43126.0,22882.0,26200.0,14926.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90413899,,16800.0,16800.0,16800.0, 60 months,10.49,361.02,B,B3,Registered Nurse,10+ years,MORTGAGE,92000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413899,,home_improvement,Home improvement,773xx,TX,3.21,1.0,Oct-2001,695.0,699.0,0.0,18.0,,10.0,0.0,9675.0,36.2,27.0,f,0.0,0.0,7234.9,7234.9,4405.6,2611.25,18.05,200.0,35.99999997,Oct-2018,200.0,,Mar-2019,509.0,505.0,0.0,35.0,1.0,Individual,,,,0.0,1127.0,268109.0,2.0,1.0,0.0,0.0,49.0,122110.0,,2.0,2.0,3378.0,36.0,26700.0,1.0,0.0,1.0,3.0,26811.0,11609.0,35.5,0.0,0.0,179.0,144.0,3.0,3.0,4.0,54.0,55.0,11.0,18.0,1.0,3.0,5.0,3.0,7.0,9.0,8.0,14.0,5.0,10.0,0.0,0.0,0.0,3.0,77.8,0.0,0.0,0.0,221013.0,131785.0,18000.0,53013.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Aug-2018,ACTIVE,Aug-2018,6369.0,50.0,18.0 +90319662,,24000.0,24000.0,24000.0, 36 months,14.49,825.99,C,C4,CEO,< 1 year,OWN,50000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90319662,,credit_card,Credit card refinancing,018xx,MA,16.35,0.0,Aug-2007,710.0,714.0,1.0,,,6.0,0.0,13274.0,54.0,24.0,f,0.0,0.0,8740.58,8740.58,5662.83,2577.75,0.0,500.0,90.0,Aug-2017,825.99,,Mar-2019,559.0,555.0,0.0,,1.0,Individual,,,,0.0,0.0,82738.0,0.0,1.0,0.0,0.0,26.0,69464.0,,2.0,3.0,6415.0,54.0,17700.0,0.0,4.0,2.0,3.0,13790.0,0.0,,0.0,0.0,108.0,109.0,4.0,4.0,0.0,4.0,,1.0,,0.0,1.0,3.0,1.0,6.0,13.0,5.0,11.0,3.0,6.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,78036.0,82738.0,5000.0,60336.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,BROKEN,Jun-2018,7800.0,40.03,24.0 +89937804,,15000.0,15000.0,15000.0, 36 months,15.59,524.33,C,C5,Machine Operator,10+ years,MORTGAGE,40000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89937804,,debt_consolidation,Debt consolidation,463xx,IN,14.91,0.0,May-2005,660.0,664.0,1.0,,,9.0,0.0,13162.0,70.4,15.0,w,0.0,0.0,8900.62,8900.62,6222.43,2678.19,0.0,0.0,0.0,Mar-2018,524.33,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,149387.0,0.0,1.0,0.0,1.0,15.0,4020.0,67.0,2.0,4.0,4905.0,70.0,18700.0,2.0,1.0,4.0,6.0,16599.0,2628.0,77.3,0.0,0.0,101.0,136.0,9.0,9.0,1.0,10.0,,1.0,,0.0,3.0,5.0,4.0,6.0,5.0,7.0,9.0,5.0,9.0,0.0,0.0,0.0,3.0,100.0,75.0,0.0,0.0,158500.0,17182.0,11600.0,6000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392859,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,waitress,4 years,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392859,,debt_consolidation,Debt consolidation,030xx,NH,19.25,0.0,Dec-2010,685.0,689.0,3.0,32.0,,12.0,0.0,7902.0,27.2,20.0,f,0.0,0.0,8972.7230746392,8972.72,8000.0,957.72,15.0,0.0,0.0,Sep-2017,5960.86,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,3007.0,74960.0,2.0,2.0,0.0,1.0,24.0,67058.0,33.0,2.0,4.0,1517.0,29.0,29000.0,1.0,0.0,4.0,5.0,6815.0,15998.0,33.1,0.0,0.0,63.0,69.0,0.0,0.0,0.0,0.0,32.0,0.0,32.0,0.0,8.0,8.0,8.0,8.0,3.0,10.0,17.0,8.0,12.0,0.0,0.0,0.0,2.0,90.0,0.0,0.0,0.0,99297.0,74960.0,23900.0,70297.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130583,,15400.0,15400.0,15400.0, 36 months,14.49,530.01,C,C4,CMA,2 years,RENT,35000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130583,,debt_consolidation,Debt consolidation,775xx,TX,22.36,0.0,Aug-2003,685.0,689.0,4.0,43.0,,11.0,0.0,16034.0,51.6,31.0,f,0.0,0.0,17925.6053616488,17925.61,15400.0,2525.61,0.0,0.0,0.0,Feb-2018,9987.86,,Mar-2019,709.0,705.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,24611.0,2.0,1.0,0.0,0.0,31.0,8577.0,52.0,3.0,5.0,7771.0,52.0,31100.0,2.0,0.0,7.0,5.0,2461.0,5149.0,73.3,0.0,0.0,116.0,157.0,2.0,2.0,1.0,10.0,48.0,2.0,48.0,3.0,5.0,7.0,5.0,10.0,6.0,10.0,24.0,7.0,11.0,0.0,0.0,0.0,3.0,90.3,60.0,0.0,0.0,47461.0,24611.0,19300.0,16361.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90098837,,20000.0,20000.0,20000.0, 60 months,16.99,496.95,D,D1,Senior Accountant,< 1 year,MORTGAGE,70000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90098837,,credit_card,Credit card refinancing,451xx,OH,19.06,0.0,Apr-2004,685.0,689.0,1.0,73.0,,15.0,0.0,9880.0,28.2,36.0,f,0.0,0.0,20562.9000000001,20562.9,20000.0,562.9,0.0,0.0,0.0,Dec-2016,20084.83,,Mar-2019,779.0,775.0,0.0,73.0,1.0,Individual,,,,0.0,150.0,242670.0,1.0,2.0,0.0,2.0,18.0,38844.0,78.0,3.0,6.0,2730.0,58.0,35000.0,3.0,1.0,6.0,8.0,16178.0,11002.0,37.5,0.0,0.0,140.0,149.0,2.0,2.0,4.0,12.0,,2.0,76.0,1.0,4.0,8.0,5.0,11.0,7.0,12.0,25.0,8.0,14.0,0.0,0.0,0.0,3.0,91.7,20.0,0.0,0.0,285581.0,48724.0,17600.0,49561.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90412802,,17000.0,17000.0,17000.0, 36 months,14.49,585.08,C,C4,Administrative Assistant ,4 years,MORTGAGE,58006.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90412802,,debt_consolidation,Debt consolidation,021xx,MA,27.0,0.0,Mar-1998,665.0,669.0,0.0,37.0,,14.0,0.0,16549.0,74.2,31.0,f,0.0,0.0,18399.5011441349,18399.5,17000.0,1399.5,0.0,0.0,0.0,May-2017,14902.7,,Sep-2018,689.0,685.0,0.0,37.0,1.0,Individual,,,,0.0,1381.0,360672.0,1.0,9.0,1.0,1.0,6.0,51616.0,93.0,0.0,1.0,10136.0,88.0,22300.0,0.0,2.0,0.0,2.0,25762.0,1962.0,89.1,0.0,0.0,149.0,222.0,15.0,6.0,3.0,15.0,,14.0,,2.0,3.0,4.0,3.0,6.0,17.0,4.0,11.0,4.0,14.0,0.0,0.0,0.0,1.0,96.7,66.7,0.0,0.0,385627.0,68165.0,18000.0,55327.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90330906,,24000.0,24000.0,24000.0, 60 months,10.49,515.74,B,B3,Senior Pricing Manager,< 1 year,MORTGAGE,92000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90330906,,credit_card,Credit card refinancing,631xx,MO,12.34,0.0,Apr-1999,695.0,699.0,0.0,,,10.0,0.0,21169.0,46.5,22.0,f,13951.42,13951.42,15019.83,15019.83,10048.58,4971.25,0.0,0.0,0.0,Mar-2019,515.74,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,440.0,202143.0,0.0,3.0,0.0,0.0,45.0,10617.0,37.0,2.0,2.0,11276.0,43.0,45500.0,0.0,0.0,3.0,3.0,20214.0,20008.0,49.3,0.0,0.0,142.0,209.0,10.0,10.0,4.0,10.0,,10.0,,0.0,3.0,4.0,4.0,4.0,9.0,6.0,9.0,4.0,10.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,247624.0,31786.0,39500.0,29124.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407600,,30000.0,30000.0,30000.0, 36 months,17.99,1084.43,D,D2,Sales,10+ years,RENT,725000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407600,,debt_consolidation,Debt consolidation,606xx,IL,6.31,0.0,Mar-1989,675.0,679.0,1.0,,,17.0,0.0,178379.0,63.0,29.0,f,0.0,0.0,31046.588688763197,31046.59,30000.0,1046.59,0.0,0.0,0.0,Dec-2016,29992.14,,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,201817.0,0.0,0.0,0.0,1.0,21.0,0.0,,1.0,2.0,37423.0,68.0,244400.0,0.0,4.0,3.0,3.0,11872.0,34378.0,71.2,0.0,0.0,136.0,330.0,7.0,7.0,0.0,24.0,,0.0,,0.0,9.0,13.0,11.0,15.0,6.0,16.0,22.0,13.0,17.0,0.0,0.0,0.0,1.0,100.0,63.6,0.0,0.0,267838.0,201817.0,181200.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90220886,,10050.0,10050.0,10050.0, 36 months,17.99,363.29,D,D2,maintenance,5 years,RENT,28000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90220886,,debt_consolidation,Debt consolidation,920xx,CA,19.2,0.0,Nov-2006,660.0,664.0,1.0,,,9.0,0.0,4398.0,37.9,13.0,w,0.0,0.0,8237.69,8237.69,5202.56,2416.49,0.0,618.64,111.3552,Jul-2018,363.29,,Mar-2019,509.0,505.0,0.0,,1.0,Individual,,,,0.0,1343.0,10503.0,1.0,1.0,1.0,2.0,1.0,6105.0,101.0,1.0,6.0,1437.0,59.0,11600.0,1.0,0.0,1.0,8.0,1167.0,1502.0,74.5,0.0,0.0,54.0,118.0,11.0,1.0,0.0,11.0,,1.0,,0.0,5.0,5.0,5.0,6.0,4.0,8.0,9.0,5.0,9.0,0.0,0.0,0.0,2.0,100.0,80.0,0.0,0.0,17675.0,10503.0,5900.0,6075.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,ACTIVE,Dec-2018,2615.0,50.01,12.0 +90413568,,30000.0,30000.0,29750.0, 36 months,15.59,1048.65,C,C5,Security Analyst,4 years,OWN,95000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90413568,,debt_consolidation,Debt consolidation,201xx,VA,11.38,1.0,Apr-2007,680.0,684.0,1.0,22.0,,9.0,0.0,33372.0,74.0,14.0,f,6973.42,6915.3,30506.12,30251.9,23026.58,7479.54,0.0,0.0,0.0,Mar-2019,1048.65,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,396970.0,0.0,2.0,0.0,1.0,24.0,1139.0,35.0,2.0,3.0,12534.0,71.0,45100.0,1.0,0.0,4.0,5.0,44108.0,10074.0,75.4,0.0,0.0,69.0,113.0,11.0,11.0,1.0,11.0,22.0,0.0,22.0,0.0,4.0,6.0,4.0,7.0,4.0,6.0,9.0,6.0,9.0,0.0,0.0,0.0,3.0,92.9,75.0,0.0,0.0,416000.0,34511.0,41000.0,3250.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407990,,5000.0,5000.0,5000.0, 36 months,18.99,183.26,D,D3,Assembler,10+ years,MORTGAGE,36000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407990,,home_improvement,Home improvement,276xx,NC,18.53,4.0,Oct-1999,685.0,689.0,4.0,3.0,,7.0,0.0,979.0,14.8,10.0,f,0.0,0.0,5104.492363187,5104.49,5000.0,104.49,0.0,0.0,0.0,Jun-2017,126.95,,May-2018,559.0,555.0,0.0,,1.0,Individual,,,,0.0,81.0,143366.0,1.0,1.0,0.0,1.0,20.0,19987.0,86.0,1.0,1.0,497.0,70.0,6600.0,2.0,0.0,4.0,2.0,20481.0,2204.0,21.3,0.0,0.0,130.0,110.0,1.0,1.0,2.0,28.0,13.0,1.0,7.0,0.0,2.0,3.0,2.0,2.0,3.0,5.0,5.0,3.0,7.0,0.0,0.0,0.0,1.0,55.6,0.0,0.0,0.0,159553.0,20966.0,2800.0,23344.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90415558,,15000.0,15000.0,15000.0, 60 months,13.99,348.95,C,C3,AVP Commercial Relationship Manager,10+ years,MORTGAGE,54000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90415558,,credit_card,Credit card refinancing,245xx,VA,18.56,0.0,Jun-1998,670.0,674.0,0.0,33.0,,9.0,0.0,11994.0,93.0,23.0,f,9038.81,9038.81,10125.34,10125.34,5961.19,4146.7,17.45,0.0,0.0,Mar-2019,348.95,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,172029.0,0.0,1.0,0.0,1.0,20.0,10699.0,71.0,0.0,0.0,4941.0,81.0,12900.0,0.0,5.0,0.0,2.0,24576.0,60.0,99.4,0.0,0.0,128.0,219.0,29.0,14.0,4.0,29.0,,15.0,33.0,0.0,3.0,5.0,4.0,6.0,9.0,7.0,10.0,5.0,9.0,0.0,0.0,0.0,0.0,95.7,100.0,0.0,0.0,180216.0,22693.0,10100.0,15098.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90384636,,6100.0,6100.0,6100.0, 36 months,16.99,217.46,D,D1,Caregiver,5 years,RENT,18000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90384636,,credit_card,Credit card refinancing,606xx,IL,20.27,0.0,Dec-2006,660.0,664.0,1.0,,91.0,6.0,1.0,6333.0,71.2,11.0,w,1439.18,1439.18,6343.76,6343.76,4660.82,1682.94,0.0,0.0,0.0,Mar-2019,217.46,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,6333.0,0.0,0.0,0.0,0.0,,0.0,,0.0,3.0,1150.0,71.0,8900.0,0.0,0.0,2.0,3.0,1267.0,850.0,57.5,0.0,0.0,,117.0,17.0,17.0,0.0,17.0,,0.0,,0.0,1.0,5.0,1.0,2.0,0.0,6.0,11.0,5.0,6.0,0.0,0.0,0.0,0.0,100.0,0.0,1.0,0.0,8900.0,6333.0,2000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90191293,,13725.0,13725.0,13725.0, 60 months,27.79,425.61,F,F5,,,OWN,42960.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90191293,,debt_consolidation,Debt consolidation,973xx,OR,34.19,0.0,Mar-2005,675.0,679.0,1.0,,59.0,8.0,3.0,6753.0,38.8,15.0,f,0.0,0.0,15511.333089695801,15511.33,13725.0,1786.33,0.0,0.0,0.0,Mar-2017,13830.08,,Oct-2018,689.0,685.0,0.0,,1.0,Individual,,,,0.0,414.0,98989.0,1.0,1.0,0.0,3.0,13.0,92236.0,,2.0,3.0,5012.0,39.0,17400.0,1.0,2.0,2.0,6.0,12374.0,6288.0,44.4,0.0,0.0,114.0,138.0,0.0,0.0,0.0,0.0,,5.0,,0.0,1.0,2.0,3.0,4.0,5.0,7.0,10.0,2.0,8.0,0.0,0.0,0.0,2.0,100.0,33.3,1.0,2.0,115309.0,98989.0,11300.0,97909.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90141480,,28000.0,28000.0,28000.0, 36 months,12.79,940.61,C,C1,"Accountant, CPA",1 year,MORTGAGE,62000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90141480,,debt_consolidation,Debt consolidation,700xx,LA,7.34,1.0,Feb-2009,715.0,719.0,2.0,18.0,,18.0,0.0,6634.0,13.3,31.0,f,0.0,0.0,31972.032878667902,31972.03,28000.0,3972.03,0.0,0.0,0.0,Aug-2018,6239.12,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,779.0,174712.0,1.0,3.0,0.0,0.0,72.0,8494.0,64.0,1.0,3.0,3354.0,24.0,49700.0,1.0,0.0,2.0,3.0,11647.0,31646.0,9.6,0.0,0.0,91.0,70.0,6.0,6.0,1.0,6.0,18.0,1.0,18.0,0.0,1.0,2.0,7.0,9.0,7.0,14.0,22.0,2.0,18.0,0.0,0.0,0.0,1.0,96.8,0.0,0.0,0.0,229295.0,15128.0,35000.0,13345.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407180,,20000.0,20000.0,20000.0, 36 months,18.99,733.02,D,D3,Supervisor,10+ years,OWN,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407180,,debt_consolidation,Debt consolidation,727xx,AR,24.11,0.0,Oct-2001,690.0,694.0,3.0,,,13.0,0.0,17287.0,44.7,41.0,f,0.0,0.0,21823.8019282749,21823.8,20000.0,1823.8,0.0,0.0,0.0,May-2017,6098.15,,Dec-2018,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,191571.0,4.0,2.0,1.0,2.0,11.0,38488.0,80.0,4.0,9.0,4792.0,55.0,32800.0,1.0,1.0,5.0,13.0,17416.0,2375.0,67.9,0.0,0.0,155.0,179.0,1.0,1.0,2.0,1.0,,0.0,,0.0,2.0,5.0,4.0,10.0,8.0,10.0,31.0,5.0,13.0,0.0,0.0,0.0,6.0,97.5,33.3,0.0,0.0,216356.0,55775.0,7400.0,47300.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90188492,,12000.0,12000.0,12000.0, 60 months,24.49,348.64,E,E3,Shipping/Warehouse,4 years,MORTGAGE,50000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90188492,,debt_consolidation,Debt consolidation,983xx,WA,34.42,0.0,Jun-2003,705.0,709.0,1.0,,,6.0,0.0,7140.0,62.6,11.0,w,7950.83,7950.83,10102.39,10102.39,4049.17,6053.22,0.0,0.0,0.0,Mar-2019,348.64,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,182541.0,1.0,1.0,1.0,1.0,11.0,175401.0,,1.0,2.0,4155.0,63.0,11400.0,0.0,0.0,2.0,3.0,30424.0,486.0,91.2,0.0,0.0,143.0,159.0,2.0,2.0,0.0,2.0,,2.0,,0.0,2.0,4.0,2.0,5.0,3.0,5.0,8.0,4.0,6.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,189463.0,182541.0,5500.0,178063.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230013,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Sales,1 year,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230013,,debt_consolidation,Debt consolidation,191xx,PA,0.6,1.0,Jul-1968,680.0,684.0,1.0,14.0,37.0,9.0,3.0,684.0,2.8,30.0,f,0.0,0.0,11036.5999623101,11036.6,10000.0,1036.6,0.0,0.0,0.0,Sep-2017,684.41,,Nov-2017,709.0,705.0,1.0,,1.0,Individual,,,,0.0,1050.0,684.0,1.0,0.0,0.0,0.0,37.0,0.0,,1.0,3.0,684.0,3.0,24400.0,0.0,0.0,1.0,3.0,98.0,16716.0,3.9,0.0,0.0,37.0,578.0,4.0,4.0,0.0,4.0,,4.0,14.0,0.0,1.0,1.0,3.0,7.0,1.0,9.0,29.0,1.0,9.0,0.0,0.0,0.0,1.0,96.7,0.0,0.0,2.0,24400.0,684.0,17400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270943,,5000.0,5000.0,5000.0, 36 months,15.59,174.78,C,C5,Nurse ,10+ years,MORTGAGE,67000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270943,,other,Other,319xx,GA,19.68,0.0,Sep-1994,695.0,699.0,3.0,47.0,64.0,17.0,1.0,5658.0,39.3,26.0,f,1163.07,1163.07,5064.29,5064.29,3836.93,1227.36,0.0,0.0,0.0,Mar-2019,174.78,Apr-2019,Mar-2019,674.0,670.0,0.0,50.0,1.0,Individual,,,,0.0,138.0,249994.0,5.0,13.0,7.0,8.0,2.0,87385.0,103.0,1.0,1.0,2808.0,89.0,14400.0,0.0,1.0,4.0,10.0,14706.0,5022.0,39.5,0.0,0.0,158.0,264.0,5.0,2.0,1.0,5.0,47.0,4.0,47.0,1.0,2.0,3.0,2.0,2.0,21.0,3.0,4.0,3.0,17.0,0.0,0.0,0.0,9.0,92.3,50.0,0.0,1.0,262353.0,93043.0,8300.0,89621.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230621,,30000.0,30000.0,30000.0, 36 months,13.49,1017.92,C,C2,tech,6 years,MORTGAGE,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230621,,credit_card,Credit card refinancing,843xx,UT,25.1,1.0,Mar-1999,685.0,689.0,0.0,18.0,,13.0,0.0,37756.0,79.7,32.0,f,0.0,0.0,31758.9279183792,31758.93,30000.0,1758.93,0.0,0.0,0.0,Mar-2017,27795.55,,Dec-2017,729.0,725.0,0.0,61.0,1.0,Individual,,,,0.0,0.0,167881.0,0.0,1.0,0.0,0.0,36.0,2044.0,7.0,0.0,1.0,12518.0,51.0,47400.0,0.0,6.0,0.0,1.0,13990.0,6188.0,84.0,0.0,0.0,136.0,210.0,24.0,24.0,4.0,24.0,,,61.0,1.0,6.0,8.0,7.0,12.0,7.0,11.0,21.0,8.0,13.0,0.0,0.0,0.0,0.0,96.8,57.1,0.0,0.0,227400.0,39800.0,38700.0,30000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221125,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,HIM Clerk,4 years,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221125,,debt_consolidation,Debt consolidation,480xx,MI,32.84,0.0,Mar-2003,670.0,674.0,2.0,,41.0,21.0,1.0,8294.0,16.1,28.0,f,0.0,0.0,12657.7077064222,12657.71,10000.0,2657.71,0.0,0.0,0.0,Sep-2018,4655.18,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,1415.0,49651.0,1.0,10.0,0.0,0.0,26.0,41357.0,102.0,2.0,3.0,5055.0,54.0,51400.0,0.0,0.0,3.0,3.0,2364.0,30258.0,20.8,0.0,0.0,85.0,162.0,6.0,6.0,0.0,6.0,,3.0,,0.0,5.0,7.0,6.0,9.0,14.0,11.0,14.0,7.0,21.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,0.0,92050.0,49651.0,38200.0,40650.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89868382,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Preferred account opening SR. rep,3 years,RENT,56000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89868382,,debt_consolidation,Debt consolidation,322xx,FL,20.36,0.0,Sep-2001,670.0,674.0,0.0,,83.0,12.0,1.0,5533.0,46.5,22.0,f,0.0,0.0,10654.1683742774,10654.17,10000.0,654.17,0.0,0.0,0.0,Feb-2017,9579.72,,Mar-2017,659.0,655.0,0.0,,1.0,Individual,,,,0.0,1805.0,23725.0,3.0,3.0,0.0,2.0,14.0,18192.0,53.0,4.0,8.0,2026.0,51.0,11900.0,0.0,2.0,1.0,10.0,1977.0,2889.0,64.8,0.0,0.0,140.0,180.0,3.0,3.0,0.0,4.0,,8.0,,0.0,4.0,5.0,4.0,7.0,5.0,9.0,17.0,5.0,12.0,0.0,0.0,0.0,4.0,100.0,50.0,1.0,0.0,46386.0,23725.0,8200.0,34486.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90158512,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,,,RENT,40641.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90158512,,car,Car financing,337xx,FL,23.83,0.0,May-1995,670.0,674.0,0.0,,44.0,7.0,1.0,1873.0,11.6,22.0,f,0.0,0.0,14436.3596134386,14436.36,12000.0,2436.36,0.0,0.0,0.0,Sep-2018,5360.02,,Nov-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,28447.0,1.0,3.0,2.0,3.0,5.0,26574.0,78.0,0.0,3.0,24.0,57.0,16200.0,1.0,1.0,2.0,6.0,4064.0,4376.0,0.5,0.0,0.0,138.0,256.0,15.0,5.0,4.0,15.0,,5.0,,0.0,1.0,2.0,1.0,5.0,7.0,4.0,11.0,2.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,1.0,0.0,50303.0,28447.0,4400.0,34103.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90414131,,9225.0,9225.0,9225.0, 36 months,15.59,322.46,C,C5,Office Partner,3 years,RENT,33280.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90414131,,debt_consolidation,Debt consolidation,146xx,NY,29.28,0.0,Oct-2005,685.0,689.0,0.0,,,21.0,0.0,15775.0,58.9,35.0,f,2147.04,2147.04,9376.55,9376.55,7077.96,2298.59,0.0,0.0,0.0,Mar-2019,322.46,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,51455.0,0.0,9.0,0.0,1.0,13.0,35680.0,93.0,0.0,0.0,3949.0,79.0,26800.0,0.0,2.0,0.0,1.0,2859.0,2114.0,84.3,0.0,0.0,131.0,126.0,25.0,13.0,0.0,25.0,,,,0.0,4.0,7.0,6.0,6.0,20.0,12.0,15.0,7.0,21.0,0.0,0.0,0.0,0.0,100.0,75.0,0.0,0.0,65122.0,51455.0,13500.0,38322.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90241808,,19600.0,19600.0,19600.0, 36 months,18.99,718.36,D,D3,Registered Nurse,4 years,RENT,45000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90241808,,debt_consolidation,Debt consolidation,647xx,MO,28.08,1.0,Dec-2006,660.0,664.0,0.0,11.0,,22.0,0.0,14368.0,46.5,33.0,f,4724.7,4724.7,20811.76,20811.76,14875.3,5936.46,0.0,0.0,0.0,Mar-2019,718.36,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,78940.0,3.0,11.0,0.0,0.0,27.0,64572.0,107.0,5.0,6.0,5715.0,79.0,30900.0,2.0,3.0,2.0,6.0,3759.0,12091.0,50.6,0.0,0.0,115.0,117.0,1.0,1.0,0.0,1.0,,3.0,,0.0,4.0,6.0,9.0,10.0,19.0,11.0,14.0,6.0,22.0,0.0,0.0,0.0,5.0,87.9,25.0,0.0,0.0,101498.0,78940.0,24500.0,70598.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89907135,,25000.0,25000.0,24750.0, 36 months,13.49,848.27,C,C2,Warrant Officer ,10+ years,RENT,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89907135,,other,Other,735xx,OK,34.51,0.0,Sep-1999,665.0,669.0,1.0,35.0,,11.0,0.0,24093.0,54.8,36.0,f,0.0,0.0,29407.4036903261,29113.33,25000.0,4407.4,0.0,0.0,0.0,May-2018,14044.87,,Mar-2019,659.0,655.0,0.0,54.0,1.0,Individual,,,,0.0,423.0,62477.0,2.0,2.0,1.0,4.0,8.0,38384.0,85.0,4.0,6.0,11405.0,66.0,44000.0,1.0,1.0,4.0,10.0,5680.0,14627.0,59.5,0.0,0.0,204.0,126.0,3.0,3.0,0.0,8.0,,3.0,35.0,3.0,3.0,4.0,6.0,6.0,24.0,9.0,10.0,4.0,11.0,0.0,0.0,0.0,5.0,86.1,33.3,0.0,0.0,104403.0,62477.0,36100.0,60403.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90066229,,35000.0,35000.0,35000.0, 36 months,13.49,1187.57,C,C2,Paralegal,10+ years,RENT,85000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90066229,,debt_consolidation,Debt consolidation,913xx,CA,14.23,0.0,Jun-2004,665.0,669.0,1.0,31.0,,9.0,0.0,9216.0,88.6,23.0,f,7951.27,7951.27,34413.3,34413.3,27048.73,7364.57,0.0,0.0,0.0,Mar-2019,1187.57,Apr-2019,Mar-2019,674.0,670.0,0.0,31.0,1.0,Individual,,,,0.0,0.0,50521.0,0.0,3.0,3.0,4.0,7.0,41305.0,91.0,0.0,0.0,3421.0,91.0,10400.0,3.0,0.0,5.0,4.0,6315.0,973.0,87.8,0.0,0.0,107.0,147.0,26.0,7.0,5.0,26.0,,0.0,,3.0,4.0,5.0,4.0,7.0,7.0,6.0,11.0,5.0,9.0,0.0,0.0,0.0,3.0,82.6,100.0,0.0,0.0,55772.0,50521.0,8000.0,45372.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90211317,,7000.0,7000.0,7000.0, 36 months,14.49,240.92,C,C4,Service Representative IV,4 years,RENT,46728.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90211317,,other,Other,920xx,CA,21.73,3.0,Jun-2009,670.0,674.0,1.0,3.0,,6.0,0.0,1010.0,16.0,21.0,f,0.0,0.0,8333.606090110101,8333.61,7000.0,1333.61,0.0,0.0,0.0,Jun-2018,3961.37,,Oct-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,23910.0,0.0,2.0,0.0,0.0,30.0,22900.0,55.0,0.0,1.0,1010.0,50.0,6300.0,1.0,0.0,1.0,1.0,3985.0,1790.0,36.1,0.0,0.0,70.0,87.0,18.0,18.0,0.0,49.0,,3.0,8.0,0.0,1.0,1.0,2.0,7.0,5.0,4.0,16.0,1.0,6.0,0.0,0.0,0.0,0.0,85.0,50.0,0.0,0.0,48050.0,23910.0,2800.0,41750.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90083043,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Customer service Representative ,< 1 year,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90083043,,debt_consolidation,Debt consolidation,763xx,TX,21.57,2.0,Mar-2003,675.0,679.0,1.0,16.0,,10.0,0.0,3892.0,37.1,21.0,f,0.0,0.0,9433.8648934433,9433.86,8000.0,1433.86,0.0,0.0,0.0,Jun-2018,4245.67,,Mar-2019,749.0,745.0,0.0,16.0,1.0,Individual,,,,0.0,0.0,59579.0,2.0,2.0,0.0,0.0,27.0,55687.0,101.0,2.0,4.0,2486.0,91.0,10500.0,0.0,1.0,2.0,4.0,5958.0,4797.0,40.0,0.0,0.0,162.0,131.0,2.0,2.0,0.0,6.0,,6.0,,3.0,2.0,5.0,3.0,4.0,11.0,8.0,9.0,5.0,10.0,0.0,0.0,2.0,2.0,78.9,33.3,0.0,0.0,65401.0,59579.0,8000.0,54901.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90219218,,15425.0,15425.0,15425.0, 36 months,27.49,633.8,F,F4,,,OWN,38604.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90219218,,debt_consolidation,Debt consolidation,980xx,WA,28.75,0.0,Sep-1995,690.0,694.0,1.0,,,8.0,0.0,30895.0,79.0,13.0,f,0.0,0.0,5997.22,5997.22,2431.88,2614.96,0.0,950.38,171.06839997790001,Jun-2017,633.8,,Mar-2019,534.0,530.0,0.0,,1.0,Individual,,,,0.0,0.0,40494.0,3.0,1.0,1.0,1.0,5.0,9599.0,96.0,2.0,4.0,9406.0,83.0,39100.0,2.0,0.0,1.0,5.0,5062.0,5350.0,75.0,0.0,0.0,177.0,252.0,2.0,2.0,0.0,3.0,,5.0,,0.0,4.0,5.0,4.0,4.0,3.0,7.0,10.0,5.0,8.0,0.0,0.0,0.0,3.0,100.0,25.0,0.0,0.0,49100.0,40494.0,21400.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111482,,7475.0,7475.0,7475.0, 36 months,14.49,257.27,C,C4,,,RENT,22000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111482,,debt_consolidation,Debt consolidation,331xx,FL,14.18,0.0,Aug-2003,665.0,669.0,1.0,,67.0,10.0,1.0,12982.0,47.4,33.0,f,0.0,0.0,7845.1739021557,7845.17,7475.0,370.17,0.0,0.0,0.0,Feb-2017,7079.38,,Aug-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,12982.0,2.0,0.0,0.0,1.0,23.0,0.0,,3.0,4.0,9800.0,47.0,27400.0,2.0,0.0,6.0,5.0,1442.0,9418.0,58.0,0.0,0.0,157.0,155.0,2.0,2.0,0.0,6.0,,1.0,,0.0,2.0,2.0,6.0,20.0,2.0,10.0,31.0,2.0,10.0,0.0,0.0,0.0,3.0,100.0,40.0,1.0,0.0,27400.0,12982.0,22400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121553,,28800.0,28800.0,28800.0, 60 months,13.99,669.98,C,C3,Owner/CEO,7 years,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121553,,debt_consolidation,Debt consolidation,850xx,AZ,13.01,0.0,Jul-2004,695.0,699.0,2.0,,,11.0,0.0,39117.0,70.1,17.0,f,17349.52,17349.52,19407.04,19407.04,11450.48,7956.56,0.0,0.0,0.0,Mar-2019,669.98,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,270653.0,2.0,0.0,0.0,0.0,146.0,0.0,,2.0,2.0,8444.0,69.0,55800.0,0.0,0.0,2.0,2.0,24605.0,13125.0,71.7,0.0,0.0,146.0,138.0,1.0,1.0,3.0,32.0,,1.0,,0.0,5.0,7.0,7.0,10.0,1.0,9.0,12.0,7.0,11.0,0.0,0.0,0.0,2.0,100.0,57.1,0.0,0.0,316586.0,40452.0,46300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90100674,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Front desk,2 years,OWN,40000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90100674,,debt_consolidation,Debt consolidation,281xx,NC,26.59,0.0,Jan-1998,660.0,664.0,1.0,35.0,35.0,26.0,1.0,11100.0,48.9,39.0,f,0.0,0.0,3611.99,3611.99,2291.18,1320.81,0.0,0.0,0.0,Aug-2017,356.48,,Sep-2018,539.0,535.0,0.0,35.0,1.0,Individual,,,,0.0,1144.0,123831.0,3.0,1.0,0.0,0.0,28.0,12725.0,68.0,7.0,15.0,2362.0,58.0,22700.0,1.0,1.0,3.0,16.0,4763.0,3363.0,67.3,0.0,0.0,142.0,224.0,4.0,4.0,3.0,10.0,35.0,4.0,35.0,2.0,7.0,15.0,9.0,12.0,3.0,24.0,33.0,15.0,26.0,0.0,0.0,0.0,8.0,92.3,33.3,0.0,0.0,142543.0,23825.0,10300.0,18733.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111718,,19950.0,19950.0,19950.0, 36 months,15.59,697.36,C,C5,STAFF ASSISTANT,8 years,OWN,63000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111718,,debt_consolidation,Debt consolidation,021xx,MA,18.4,0.0,Jul-2004,685.0,689.0,0.0,,,13.0,0.0,29272.0,57.6,25.0,f,4637.31,4637.31,20246.88,20246.88,15312.69,4934.19,0.0,0.0,0.0,Mar-2019,699.65,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,384528.0,1.0,1.0,0.0,1.0,22.0,4751.0,56.0,2.0,4.0,9047.0,57.0,50800.0,0.0,0.0,2.0,6.0,29579.0,15492.0,61.6,0.0,0.0,97.0,146.0,8.0,5.0,3.0,8.0,,6.0,,0.0,8.0,10.0,9.0,13.0,5.0,11.0,17.0,10.0,13.0,0.0,0.0,0.0,3.0,100.0,33.3,0.0,0.0,411285.0,34023.0,40300.0,8485.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90301557,,30000.0,30000.0,30000.0, 60 months,17.99,761.64,D,D2,Program Manager IT,1 year,MORTGAGE,125000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90301557,,debt_consolidation,Debt consolidation,913xx,CA,9.23,0.0,Apr-2006,670.0,674.0,0.0,,47.0,5.0,2.0,9019.0,63.5,6.0,f,0.0,0.0,36159.350713883796,36159.35,30000.0,6159.35,0.0,0.0,0.0,Jan-2018,25571.35,,Mar-2018,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,29185.0,0.0,2.0,1.0,2.0,8.0,20166.0,81.0,0.0,0.0,6252.0,75.0,14200.0,0.0,1.0,2.0,2.0,5837.0,5181.0,63.5,0.0,0.0,125.0,41.0,28.0,8.0,0.0,28.0,,3.0,,0.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,1.0,100.0,33.3,1.0,1.0,39200.0,29185.0,14200.0,25000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90101442,,35000.0,35000.0,35000.0, 60 months,19.99,927.1,D,D4,Director,10+ years,MORTGAGE,186000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90101442,,debt_consolidation,Debt consolidation,917xx,CA,24.95,0.0,Apr-2000,720.0,724.0,2.0,59.0,,20.0,0.0,33238.0,41.3,39.0,f,0.0,0.0,13588.79,13588.79,3710.3,5521.83,0.0,4356.66,784.1988,Aug-2017,927.1,,Feb-2018,629.0,625.0,0.0,68.0,1.0,Individual,,,,0.0,0.0,791861.0,3.0,6.0,2.0,4.0,5.0,148140.0,87.0,3.0,5.0,9682.0,66.0,80500.0,1.0,0.0,4.0,11.0,39593.0,27586.0,51.1,0.0,0.0,145.0,197.0,4.0,4.0,6.0,4.0,,0.0,,2.0,6.0,8.0,7.0,9.0,10.0,13.0,23.0,8.0,20.0,0.0,0.0,0.0,5.0,94.7,42.9,0.0,0.0,868737.0,181378.0,56400.0,162930.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90219907,,11200.0,11200.0,11200.0, 60 months,15.59,269.93,C,C5,Teacher,3 years,MORTGAGE,41000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90219907,,home_improvement,Home improvement,852xx,AZ,17.74,0.0,Aug-2010,685.0,689.0,0.0,,,16.0,0.0,11223.0,46.4,17.0,f,6851.78,6851.78,7818.27,7818.27,4348.22,3470.05,0.0,0.0,0.0,Mar-2019,269.93,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,332622.0,1.0,7.0,1.0,2.0,8.0,49610.0,95.0,1.0,3.0,2240.0,80.0,24200.0,3.0,0.0,2.0,7.0,20789.0,2939.0,67.7,0.0,0.0,73.0,58.0,11.0,6.0,2.0,11.0,,6.0,,0.0,4.0,6.0,4.0,4.0,7.0,8.0,8.0,6.0,16.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,349709.0,60833.0,9100.0,51990.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410406,,15575.0,15575.0,15575.0, 36 months,18.99,570.84,D,D3,,,MORTGAGE,52300.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410406,,debt_consolidation,Debt consolidation,820xx,WY,32.79,0.0,Feb-1994,725.0,729.0,0.0,,,12.0,0.0,42516.0,65.6,30.0,f,0.0,0.0,19804.4665234697,19804.47,15575.0,4229.47,0.0,0.0,0.0,Sep-2018,7262.42,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,283125.0,0.0,1.0,0.0,1.0,22.0,12377.0,70.0,0.0,0.0,12631.0,67.0,64800.0,0.0,4.0,0.0,2.0,25739.0,15955.0,70.5,0.0,0.0,151.0,271.0,36.0,19.0,5.0,40.0,,20.0,,0.0,6.0,9.0,6.0,13.0,8.0,10.0,17.0,9.0,12.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,317162.0,54893.0,54000.0,17593.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90077274,,35000.0,35000.0,35000.0, 36 months,15.59,1223.43,C,C5,Acquisition Program Manager,6 years,MORTGAGE,113000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90077274,,debt_consolidation,Debt consolidation,361xx,AL,20.63,0.0,May-1993,690.0,694.0,0.0,,,8.0,0.0,19415.0,76.1,24.0,f,0.0,0.0,41836.2802121918,41836.28,35000.0,6836.28,0.0,0.0,0.0,May-2018,20919.84,,Oct-2018,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,363427.0,2.0,3.0,4.0,6.0,2.0,78333.0,92.0,1.0,3.0,13173.0,85.0,25500.0,6.0,3.0,7.0,10.0,51918.0,6085.0,76.1,0.0,0.0,81.0,280.0,9.0,2.0,2.0,9.0,,3.0,,0.0,2.0,2.0,3.0,3.0,16.0,4.0,6.0,2.0,8.0,0.0,0.0,0.0,6.0,100.0,66.7,0.0,0.0,374650.0,97748.0,25500.0,81650.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88999750,,15000.0,15000.0,15000.0, 60 months,13.99,348.95,C,C3,Enterprise Risk and CyberSecurity Mgr. ,1 year,OWN,240000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88999750,,debt_consolidation,Debt consolidation,113xx,NY,11.81,0.0,Jun-1988,715.0,719.0,2.0,,,14.0,0.0,47163.0,31.6,28.0,f,9034.47,9034.47,10119.14,10119.14,5965.53,4153.61,0.0,0.0,0.0,Mar-2019,348.95,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,222437.0,3.0,5.0,0.0,3.0,15.0,174584.0,90.0,3.0,5.0,15131.0,47.0,149400.0,0.0,0.0,2.0,8.0,15888.0,102237.0,31.6,0.0,0.0,170.0,339.0,0.0,0.0,0.0,0.0,,0.0,,0.0,6.0,6.0,8.0,11.0,16.0,8.0,11.0,6.0,14.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,352245.0,222437.0,149400.0,201922.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90409567,,22000.0,22000.0,22000.0, 36 months,16.99,784.26,D,D1,INSURANCE BROKER,10+ years,RENT,62000.0,Not Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90409567,,debt_consolidation,Debt consolidation,900xx,CA,23.61,0.0,Mar-1998,685.0,689.0,0.0,42.0,,6.0,0.0,17629.0,67.0,18.0,f,9574.63,9574.63,18816.08,18816.08,12425.37,6390.71,0.0,0.0,0.0,Feb-2019,784.26,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,38654.0,4.0,1.0,1.0,1.0,4.0,21025.0,96.0,3.0,5.0,5968.0,80.0,26300.0,1.0,0.0,2.0,6.0,6442.0,3396.0,71.2,0.0,0.0,129.0,222.0,2.0,2.0,0.0,16.0,,4.0,42.0,0.0,2.0,4.0,2.0,4.0,8.0,5.0,10.0,4.0,6.0,0.0,0.0,0.0,4.0,94.4,50.0,0.0,0.0,48197.0,38654.0,11800.0,21897.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,EXCESSIVE_OBLIGATIONS,COMPLETED,3.0,224.76,Nov-2017,Feb-2018,Dec-2017,3.0,12.0,In Grace Period,674.28,16193.18,336.94,Cash,N,,,,,, +90266004,,28000.0,28000.0,28000.0, 36 months,16.99,998.14,D,D1,Senior Marketing Manager,3 years,MORTGAGE,130000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90266004,,car,Car financing,280xx,NC,15.77,0.0,Jan-1994,665.0,669.0,0.0,,,13.0,0.0,36743.0,81.3,21.0,f,0.0,0.0,34355.7545889014,34355.75,28000.0,6355.75,0.0,0.0,0.0,Jun-2018,15219.31,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,603484.0,2.0,1.0,0.0,0.0,29.0,20915.0,62.0,1.0,2.0,8575.0,74.0,45200.0,0.0,0.0,1.0,4.0,46422.0,8177.0,81.1,0.0,0.0,141.0,272.0,1.0,1.0,3.0,14.0,,6.0,,0.0,7.0,8.0,7.0,10.0,3.0,9.0,14.0,8.0,12.0,0.0,0.0,0.0,2.0,100.0,87.5,0.0,0.0,632942.0,61435.0,43200.0,33971.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88897816,,16000.0,16000.0,16000.0, 60 months,19.99,423.82,D,D4,manager,4 years,MORTGAGE,100000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88897816,,other,Other,330xx,FL,24.6,0.0,Dec-2001,705.0,709.0,1.0,,,22.0,0.0,17593.0,37.2,33.0,f,10196.62,10196.62,12273.01,12273.01,5803.38,6469.63,0.0,0.0,0.0,Mar-2019,423.82,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,314172.0,0.0,4.0,1.0,4.0,10.0,66447.0,82.0,1.0,4.0,5246.0,66.0,47300.0,1.0,1.0,2.0,8.0,16535.0,7169.0,61.7,0.0,0.0,152.0,177.0,8.0,8.0,4.0,25.0,,2.0,,0.0,6.0,8.0,7.0,7.0,10.0,17.0,19.0,8.0,22.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,377655.0,84040.0,18700.0,80755.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90238481,,10000.0,10000.0,10000.0, 60 months,18.99,259.36,D,D3,,,RENT,30000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90238481,,credit_card,Credit card refinancing,900xx,CA,19.04,0.0,Jul-2002,670.0,674.0,1.0,,,7.0,0.0,9572.0,44.3,12.0,f,0.0,0.0,6134.93,6134.93,2086.73,2571.2,0.0,1477.0,265.86,Apr-2018,259.36,,Mar-2019,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,17133.0,1.0,0.0,1.0,1.0,9.0,7561.0,95.0,1.0,4.0,3861.0,58.0,21600.0,0.0,0.0,1.0,5.0,2448.0,10953.0,46.3,0.0,0.0,170.0,53.0,4.0,4.0,0.0,4.0,,2.0,,0.0,5.0,6.0,5.0,5.0,6.0,6.0,6.0,6.0,7.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,29600.0,17133.0,20400.0,8000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Nov-2018,ACTIVE,Oct-2018,3421.76,40.0,8.0 +90408167,,24000.0,24000.0,24000.0, 36 months,16.99,855.55,D,D1,Owner,9 years,MORTGAGE,62000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90408167,,debt_consolidation,Debt consolidation,064xx,CT,9.45,3.0,May-1995,660.0,664.0,0.0,8.0,,8.0,0.0,14330.0,66.0,20.0,f,5663.43,5663.43,24788.3,24788.3,18336.57,6451.73,0.0,0.0,0.0,Mar-2019,855.55,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,123083.0,0.0,0.0,0.0,0.0,84.0,0.0,,0.0,1.0,4283.0,66.0,21700.0,0.0,1.0,1.0,1.0,15385.0,4030.0,70.1,0.0,0.0,123.0,256.0,23.0,23.0,4.0,27.0,19.0,2.0,19.0,0.0,3.0,5.0,5.0,11.0,2.0,7.0,14.0,5.0,8.0,0.0,0.0,0.0,0.0,75.0,60.0,0.0,0.0,151700.0,14330.0,13500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90409501,,12000.0,12000.0,12000.0, 36 months,13.49,407.17,C,C2,Production Mgr,10+ years,MORTGAGE,85000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90409501,,debt_consolidation,Debt consolidation,580xx,ND,13.43,0.0,May-2001,675.0,679.0,0.0,87.0,54.0,16.0,1.0,20902.0,60.6,25.0,f,0.0,0.0,13504.530262679,13504.53,12000.0,1504.53,0.0,0.0,0.0,Nov-2017,364.53,,Mar-2019,704.0,700.0,0.0,87.0,1.0,Individual,,,,0.0,6196.0,102220.0,1.0,1.0,0.0,0.0,112.0,341.0,3.0,5.0,9.0,4972.0,45.0,34500.0,0.0,0.0,3.0,10.0,6389.0,8257.0,63.3,0.0,0.0,124.0,184.0,2.0,2.0,2.0,2.0,,11.0,87.0,1.0,6.0,12.0,8.0,11.0,2.0,14.0,21.0,12.0,16.0,0.0,0.0,0.0,5.0,92.0,50.0,0.0,0.0,132749.0,21243.0,22500.0,12627.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90181772,,16500.0,16500.0,16250.0, 36 months,14.49,567.87,C,C4,Mortgage Support Assistant,< 1 year,RENT,38000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90181772,,debt_consolidation,Debt consolidation,285xx,NC,29.44,0.0,Aug-2008,690.0,694.0,2.0,,,16.0,0.0,17149.0,49.6,24.0,f,3589.67,3535.28,16654.95,16402.6,12910.33,3744.62,0.0,0.0,0.0,Mar-2019,767.87,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,47846.0,1.0,6.0,0.0,0.0,39.0,30697.0,74.0,2.0,3.0,5679.0,63.0,35200.0,0.0,2.0,2.0,3.0,2990.0,5542.0,74.6,0.0,0.0,97.0,87.0,2.0,2.0,0.0,12.0,,0.0,,0.0,4.0,6.0,4.0,4.0,12.0,10.0,12.0,6.0,16.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,76688.0,47846.0,21800.0,41488.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90241151,,20000.0,20000.0,20000.0, 36 months,8.59,632.19,A,A5,Maintanence,,MORTGAGE,100000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90241151,,credit_card,Credit card refinancing,140xx,NY,17.7,0.0,Nov-1980,730.0,734.0,1.0,,,8.0,0.0,25848.0,51.7,26.0,w,0.0,0.0,21679.6896696774,21679.69,20000.0,1679.69,0.0,0.0,0.0,Dec-2017,13470.76,,Dec-2017,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,125824.0,1.0,2.0,0.0,0.0,26.0,99976.0,84.0,1.0,1.0,11380.0,60.0,50000.0,1.0,4.0,1.0,1.0,17975.0,20650.0,47.1,0.0,0.0,168.0,430.0,1.0,1.0,1.0,1.0,,1.0,,0.0,2.0,3.0,3.0,7.0,10.0,6.0,15.0,3.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,158625.0,125824.0,39000.0,108625.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90139407,,10000.0,10000.0,9750.0, 36 months,15.59,349.55,C,C5,Advertising Manager,10+ years,MORTGAGE,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90139407,,credit_card,Credit card refinancing,342xx,FL,19.49,0.0,Nov-2001,690.0,694.0,3.0,30.0,,18.0,0.0,44948.0,53.3,29.0,f,0.0,0.0,11421.9045165047,11136.36,10000.0,1421.9,0.0,0.0,0.0,Oct-2017,7585.51,,Nov-2017,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,255743.0,4.0,3.0,1.0,3.0,2.0,21013.0,75.0,3.0,4.0,29342.0,59.0,84300.0,0.0,1.0,4.0,8.0,15984.0,27224.0,57.8,0.0,0.0,64.0,178.0,5.0,2.0,2.0,5.0,30.0,3.0,30.0,0.0,3.0,6.0,6.0,11.0,4.0,14.0,23.0,6.0,18.0,0.0,0.0,0.0,5.0,89.7,16.7,0.0,0.0,306725.0,65961.0,64500.0,27925.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90109317,,7000.0,7000.0,7000.0, 36 months,18.99,256.56,D,D3,Fabricator/Installer,10+ years,MORTGAGE,31900.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90109317,,debt_consolidation,Debt consolidation,871xx,NM,33.03,1.0,Mar-2001,690.0,694.0,3.0,7.0,88.0,18.0,1.0,7171.0,28.5,28.0,f,1692.32,1692.32,7432.86,7432.86,5307.68,2125.18,0.0,0.0,0.0,Mar-2019,256.56,Apr-2019,Mar-2019,619.0,615.0,0.0,,1.0,Individual,,,,0.0,0.0,103135.0,5.0,3.0,0.0,1.0,17.0,12738.0,40.0,6.0,8.0,2335.0,35.0,25200.0,0.0,3.0,3.0,9.0,5730.0,1940.0,75.1,0.0,0.0,132.0,186.0,1.0,1.0,1.0,4.0,,1.0,,0.0,5.0,10.0,5.0,5.0,7.0,14.0,20.0,10.0,18.0,0.0,0.0,0.0,6.0,96.4,80.0,1.0,0.0,169315.0,19909.0,7800.0,32192.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90320895,,23275.0,23275.0,23275.0, 36 months,13.99,795.38,C,C3,Director,10+ years,RENT,161200.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320895,,credit_card,Credit card refinancing,327xx,FL,16.22,1.0,Nov-1999,665.0,669.0,0.0,7.0,,9.0,0.0,27074.0,71.2,21.0,f,0.0,0.0,27030.4037068229,27030.4,23275.0,3755.4,0.0,0.0,0.0,Mar-2018,14322.41,,Mar-2018,724.0,720.0,0.0,33.0,1.0,Individual,,,,0.0,0.0,80329.0,0.0,2.0,0.0,1.0,18.0,45056.0,74.0,0.0,1.0,14740.0,65.0,38000.0,0.0,0.0,0.0,2.0,10041.0,8426.0,76.3,0.0,0.0,161.0,185.0,15.0,15.0,2.0,15.0,,,7.0,1.0,4.0,4.0,4.0,8.0,5.0,6.0,13.0,4.0,8.0,0.0,0.0,0.0,0.0,85.7,25.0,0.0,0.0,124065.0,80329.0,35500.0,60766.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271373,,15000.0,15000.0,15000.0, 36 months,16.99,534.72,D,D1,Project Superintendent ,6 years,MORTGAGE,46500.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271373,,debt_consolidation,Debt consolidation,765xx,TX,13.45,0.0,May-2013,670.0,674.0,0.0,,,5.0,0.0,6602.0,79.5,5.0,f,0.0,0.0,18726.8232833609,18726.82,15000.0,3726.82,0.0,0.0,0.0,Oct-2018,6442.42,,Oct-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,98884.0,1.0,1.0,0.0,1.0,14.0,14673.0,85.0,2.0,2.0,4232.0,83.0,8300.0,1.0,0.0,1.0,4.0,19777.0,268.0,94.0,0.0,0.0,14.0,40.0,1.0,1.0,1.0,40.0,,7.0,,0.0,1.0,3.0,1.0,1.0,1.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,105419.0,21275.0,4500.0,17238.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90280518,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Server,3 years,RENT,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90280518,,debt_consolidation,Debt consolidation,926xx,CA,34.95,0.0,Jul-2011,695.0,699.0,1.0,,,8.0,0.0,12381.0,79.9,10.0,f,0.0,0.0,8833.7648656852,8833.76,8000.0,833.76,0.0,0.0,0.0,Jul-2017,6618.67,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,28099.0,0.0,2.0,0.0,1.0,15.0,15718.0,45.0,1.0,1.0,3391.0,56.0,15500.0,0.0,0.0,2.0,2.0,3512.0,2066.0,76.5,0.0,0.0,56.0,62.0,10.0,10.0,0.0,45.0,,2.0,,0.0,3.0,5.0,3.0,4.0,3.0,6.0,7.0,5.0,8.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,50598.0,28099.0,8800.0,35098.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90399198,,15000.0,15000.0,15000.0, 36 months,12.79,503.9,C,C1,Sales manager,10+ years,OWN,70000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90399198,,debt_consolidation,Debt consolidation,916xx,CA,22.15,0.0,Jun-2004,715.0,719.0,0.0,,100.0,15.0,1.0,6307.0,20.3,30.0,w,0.0,0.0,16032.1012769177,16032.1,15000.0,1032.1,0.0,0.0,0.0,Apr-2017,13457.17,,Oct-2017,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,35925.0,1.0,3.0,2.0,3.0,3.0,29618.0,75.0,0.0,3.0,1442.0,51.0,31000.0,1.0,3.0,1.0,6.0,2395.0,19349.0,9.6,0.0,0.0,147.0,95.0,13.0,3.0,0.0,13.0,,3.0,,0.0,3.0,4.0,9.0,16.0,10.0,12.0,20.0,4.0,15.0,0.0,0.0,0.0,2.0,100.0,11.1,1.0,0.0,70415.0,35925.0,21400.0,39415.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90383177,,12000.0,12000.0,12000.0, 60 months,21.49,327.96,D,D5,Paralegal,5 years,RENT,65000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90383177,,debt_consolidation,Debt consolidation,871xx,NM,9.16,0.0,Nov-1997,675.0,679.0,1.0,44.0,35.0,4.0,2.0,6123.0,70.4,11.0,f,7548.1,7548.1,9716.96,9716.96,4451.9,5265.06,0.0,0.0,0.0,Mar-2019,327.96,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,280.0,24040.0,1.0,1.0,0.0,1.0,16.0,17917.0,84.0,1.0,2.0,4674.0,80.0,8700.0,2.0,1.0,1.0,3.0,6010.0,1377.0,81.6,0.0,0.0,134.0,226.0,3.0,3.0,1.0,3.0,,3.0,,0.0,2.0,2.0,2.0,3.0,3.0,3.0,7.0,2.0,4.0,0.0,0.0,0.0,1.0,81.8,50.0,0.0,2.0,30170.0,24040.0,7500.0,21470.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90311146,,15000.0,15000.0,15000.0, 36 months,12.79,503.9,C,C1,Field Service Tech,10+ years,RENT,86000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90311146,,debt_consolidation,Debt consolidation,207xx,MD,8.0,0.0,Jul-2000,665.0,669.0,2.0,,52.0,11.0,1.0,14598.0,32.6,29.0,f,0.0,0.0,16305.419942081899,16305.42,15000.0,1305.42,0.0,0.0,0.0,Jul-2017,12284.88,,Jul-2017,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,21484.0,3.0,1.0,0.0,1.0,19.0,6886.0,70.0,4.0,5.0,2893.0,39.0,44800.0,2.0,4.0,5.0,6.0,2148.0,16478.0,29.3,0.0,0.0,194.0,150.0,4.0,4.0,4.0,5.0,,5.0,,0.0,4.0,7.0,4.0,8.0,7.0,10.0,18.0,7.0,11.0,0.0,0.0,0.0,4.0,100.0,0.0,1.0,0.0,54668.0,21484.0,23300.0,9868.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067297,,32400.0,32400.0,32400.0, 60 months,14.49,762.15,C,C4,Principal Programmer,< 1 year,MORTGAGE,145000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067297,,credit_card,Credit card refinancing,021xx,MA,14.8,0.0,Mar-1992,730.0,734.0,0.0,,,8.0,0.0,203075.0,82.0,19.0,f,0.0,0.0,38394.8264156956,38394.83,32400.0,5994.83,0.0,0.0,0.0,Feb-2018,26911.75,,Mar-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,451147.0,1.0,2.0,1.0,2.0,1.0,39737.0,101.0,1.0,2.0,16208.0,86.0,219600.0,0.0,0.0,0.0,4.0,56393.0,7568.0,78.1,0.0,0.0,110.0,294.0,12.0,1.0,2.0,20.0,,13.0,,0.0,2.0,4.0,3.0,9.0,5.0,5.0,12.0,4.0,8.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,0.0,492537.0,242812.0,34600.0,45937.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410698,,8000.0,8000.0,8000.0, 36 months,17.99,289.18,D,D2,associate,9 years,RENT,83000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410698,,debt_consolidation,Debt consolidation,208xx,MD,31.84,0.0,Sep-2003,665.0,669.0,1.0,,,18.0,0.0,30428.0,79.4,35.0,f,1908.09,1908.09,8378.22,8378.22,6091.91,2286.31,0.0,0.0,0.0,Mar-2019,289.18,Apr-2019,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,81689.0,1.0,7.0,1.0,5.0,9.0,51261.0,73.0,1.0,2.0,9031.0,75.0,38300.0,0.0,6.0,2.0,7.0,4805.0,240.0,99.0,0.0,0.0,130.0,156.0,1.0,1.0,0.0,43.0,,1.0,,0.0,4.0,9.0,4.0,6.0,18.0,11.0,17.0,9.0,18.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,108576.0,81689.0,24100.0,70276.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90121588,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Marketing Coordinator,3 years,RENT,45000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90121588,,debt_consolidation,Debt consolidation,330xx,FL,30.33,1.0,Jul-2011,665.0,669.0,0.0,11.0,,13.0,0.0,12007.0,56.9,15.0,f,0.0,0.0,11769.745143326101,11769.75,10000.0,1769.75,0.0,0.0,0.0,Dec-2017,7083.19,,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,39078.0,2.0,2.0,0.0,0.0,25.0,25798.0,71.0,2.0,8.0,4462.0,66.0,21100.0,1.0,0.0,3.0,8.0,3006.0,211.0,96.5,0.0,0.0,25.0,62.0,2.0,2.0,0.0,4.0,,0.0,,0.0,3.0,8.0,3.0,3.0,2.0,10.0,12.0,9.0,13.0,0.0,0.0,0.0,2.0,93.3,100.0,0.0,0.0,59535.0,39078.0,6000.0,36487.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90041121,,16700.0,16700.0,16700.0, 36 months,14.49,574.75,C,C4,,,MORTGAGE,38000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90041121,,debt_consolidation,Debt consolidation,809xx,CO,27.48,3.0,Oct-1995,690.0,694.0,1.0,17.0,,28.0,0.0,32803.0,39.5,47.0,f,0.0,0.0,18192.2424290482,18192.24,16700.0,1492.24,0.0,0.0,0.0,Jun-2017,13182.43,,Feb-2019,704.0,700.0,0.0,64.0,1.0,Individual,,,,0.0,0.0,98715.0,4.0,1.0,1.0,1.0,5.0,9904.0,97.0,3.0,4.0,8685.0,46.0,83000.0,0.0,1.0,1.0,5.0,3656.0,35671.0,45.3,0.0,0.0,37.0,251.0,3.0,3.0,5.0,3.0,17.0,3.0,17.0,4.0,8.0,12.0,14.0,23.0,2.0,26.0,40.0,12.0,28.0,0.0,0.0,0.0,4.0,85.1,35.7,0.0,0.0,163200.0,42707.0,65200.0,10200.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90301398,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,warehouse manager,2 years,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90301398,,major_purchase,Major purchase,560xx,MN,17.96,0.0,Sep-2003,685.0,689.0,1.0,29.0,,9.0,0.0,2364.0,16.3,18.0,f,0.0,0.0,15948.825430667099,15948.83,15000.0,948.83,0.0,0.0,0.0,Mar-2017,13895.91,,Mar-2019,669.0,665.0,0.0,29.0,1.0,Individual,,,,0.0,0.0,23276.0,2.0,1.0,0.0,2.0,15.0,20912.0,83.0,2.0,5.0,2364.0,59.0,14500.0,3.0,1.0,1.0,7.0,2910.0,4736.0,33.3,0.0,0.0,156.0,115.0,0.0,0.0,0.0,5.0,37.0,1.0,37.0,1.0,1.0,1.0,4.0,5.0,9.0,8.0,9.0,1.0,9.0,0.0,0.0,0.0,2.0,66.7,25.0,0.0,0.0,39566.0,23276.0,7100.0,25066.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405075,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,Media Director,3 years,RENT,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405075,,debt_consolidation,Debt consolidation,303xx,GA,18.36,0.0,Oct-1998,660.0,664.0,0.0,,69.0,9.0,1.0,10524.0,79.7,20.0,f,0.0,0.0,10207.98,10207.98,10000.0,207.98,0.0,0.0,0.0,Nov-2016,10215.09,,Feb-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,25769.0,0.0,3.0,2.0,3.0,9.0,15245.0,55.0,2.0,2.0,5281.0,63.0,13200.0,0.0,1.0,3.0,5.0,2863.0,252.0,97.5,0.0,0.0,119.0,215.0,7.0,7.0,0.0,7.0,,9.0,,0.0,3.0,5.0,3.0,7.0,7.0,6.0,13.0,5.0,9.0,0.0,0.0,0.0,4.0,100.0,100.0,1.0,0.0,41032.0,25769.0,9900.0,27832.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90140389,,18000.0,18000.0,17750.0, 36 months,14.49,619.49,C,C4,Property Manager,5 years,OWN,87000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140389,,other,Other,070xx,NJ,13.97,0.0,May-2008,670.0,674.0,1.0,31.0,,13.0,0.0,9960.0,60.7,16.0,f,0.0,0.0,19023.1117064807,18758.9,18000.0,1023.11,0.0,0.0,0.0,Mar-2017,16559.64,,Feb-2019,664.0,660.0,0.0,31.0,1.0,Individual,,,,0.0,0.0,44729.0,1.0,5.0,0.0,2.0,14.0,34769.0,82.0,1.0,2.0,3197.0,76.0,16400.0,2.0,0.0,1.0,4.0,3441.0,1358.0,84.2,0.0,0.0,56.0,100.0,4.0,4.0,0.0,4.0,,5.0,,0.0,5.0,7.0,5.0,6.0,5.0,8.0,11.0,7.0,13.0,0.0,0.0,0.0,1.0,78.6,80.0,0.0,0.0,58958.0,44729.0,8600.0,42558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90294323,,12000.0,12000.0,12000.0, 36 months,14.49,413.0,C,C4,Registered Nurse,< 1 year,MORTGAGE,58000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90294323,,other,Other,549xx,WI,17.9,0.0,Sep-2009,675.0,679.0,0.0,,,16.0,0.0,6964.0,27.4,25.0,f,0.0,0.0,12125.5800000504,12125.58,12000.0,125.58,0.0,0.0,0.0,Nov-2016,12135.24,,Sep-2016,679.0,675.0,0.0,,1.0,Individual,,,,0.0,299.0,86371.0,2.0,5.0,1.0,2.0,11.0,79407.0,96.0,2.0,3.0,4625.0,67.0,25400.0,1.0,8.0,0.0,6.0,5758.0,8337.0,43.7,0.0,0.0,84.0,51.0,3.0,3.0,0.0,3.0,,23.0,,0.0,2.0,4.0,4.0,5.0,10.0,10.0,14.0,4.0,16.0,0.0,0.0,0.0,4.0,100.0,25.0,0.0,0.0,103268.0,86371.0,14800.0,77868.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240822,,7000.0,7000.0,7000.0, 36 months,16.99,249.54,D,D1,CSR,3 years,RENT,32000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240822,,other,Other,974xx,OR,24.61,0.0,Mar-2004,680.0,684.0,0.0,26.0,,5.0,0.0,3380.0,99.4,15.0,f,1679.32,1679.32,7252.68,7252.68,5320.68,1932.0,0.0,0.0,0.0,Mar-2019,249.54,Apr-2019,Mar-2019,594.0,590.0,0.0,36.0,1.0,Individual,,,,0.0,0.0,15141.0,0.0,1.0,0.0,0.0,55.0,11761.0,60.0,0.0,1.0,2377.0,65.0,3400.0,0.0,5.0,1.0,1.0,5047.0,23.0,99.0,0.0,0.0,126.0,150.0,21.0,21.0,0.0,21.0,50.0,3.0,26.0,3.0,1.0,2.0,1.0,3.0,4.0,4.0,11.0,2.0,5.0,0.0,0.0,0.0,0.0,66.7,100.0,0.0,0.0,23142.0,15141.0,2400.0,19742.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90309401,,10000.0,10000.0,10000.0, 36 months,17.99,361.48,D,D2,Scheduling Supervisor,7 years,RENT,65000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90309401,,debt_consolidation,Debt consolidation,300xx,GA,21.92,0.0,Jul-2005,675.0,679.0,3.0,,,13.0,0.0,8682.0,56.4,22.0,f,2386.67,2386.67,10472.93,10472.93,7613.33,2859.6,0.0,0.0,0.0,Mar-2019,361.48,Apr-2019,Mar-2019,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,29815.0,6.0,3.0,1.0,2.0,6.0,21133.0,70.0,5.0,9.0,2237.0,66.0,15400.0,0.0,0.0,3.0,11.0,2293.0,5264.0,57.9,0.0,0.0,133.0,134.0,3.0,3.0,0.0,3.0,,3.0,,0.0,7.0,9.0,7.0,10.0,9.0,10.0,13.0,9.0,13.0,0.0,0.0,0.0,6.0,100.0,28.6,0.0,0.0,45512.0,29815.0,12500.0,30112.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189903,,14000.0,14000.0,14000.0, 60 months,17.99,355.44,D,D2,Student Re;porting Facilator,10+ years,MORTGAGE,57000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189903,,home_improvement,Home improvement,301xx,GA,28.21,3.0,Mar-2001,670.0,674.0,1.0,19.0,35.0,10.0,5.0,11437.0,68.5,16.0,f,8760.8,8760.8,10272.78,10272.78,5239.2,5033.58,0.0,0.0,0.0,Mar-2019,355.44,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,200977.0,0.0,3.0,1.0,2.0,10.0,36292.0,79.0,0.0,2.0,4956.0,76.0,16700.0,3.0,2.0,2.0,4.0,20098.0,2633.0,78.1,0.0,0.0,157.0,186.0,22.0,10.0,1.0,24.0,20.0,0.0,19.0,0.0,4.0,6.0,4.0,5.0,7.0,6.0,8.0,6.0,10.0,0.0,0.0,0.0,1.0,75.0,75.0,0.0,5.0,219083.0,47729.0,12000.0,45836.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90251373,,24000.0,24000.0,24000.0, 60 months,18.99,622.45,D,D3,Bartender,10+ years,RENT,64000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90251373,,debt_consolidation,Debt consolidation,956xx,CA,19.37,0.0,Aug-1991,710.0,714.0,0.0,,,10.0,0.0,18652.0,67.6,12.0,f,0.0,0.0,27829.368264330296,27829.37,24000.0,3829.37,0.0,0.0,0.0,Aug-2017,22252.64,,Aug-2017,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,36194.0,1.0,1.0,0.0,0.0,37.0,17542.0,56.0,1.0,3.0,4859.0,62.0,27600.0,0.0,0.0,0.0,3.0,3619.0,8282.0,64.0,0.0,0.0,37.0,301.0,2.0,2.0,0.0,2.0,,15.0,,0.0,6.0,9.0,6.0,6.0,1.0,9.0,11.0,9.0,10.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,58737.0,36194.0,23000.0,31137.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90067702,,25850.0,25850.0,25850.0, 36 months,18.99,947.43,D,D3,haba manager,10+ years,OWN,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067702,,house,Home buying,600xx,IL,31.29,0.0,Feb-2005,720.0,724.0,0.0,,93.0,15.0,1.0,13389.0,28.1,21.0,f,0.0,0.0,32162.9224452473,32162.92,25850.0,6312.92,0.0,0.0,0.0,May-2018,15136.45,,May-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,180.0,31340.0,1.0,3.0,0.0,1.0,19.0,17951.0,40.0,2.0,4.0,6807.0,34.0,47600.0,1.0,0.0,1.0,5.0,2089.0,22691.0,28.0,0.0,0.0,139.0,74.0,5.0,5.0,0.0,5.0,,1.0,,0.0,6.0,7.0,6.0,6.0,8.0,12.0,13.0,7.0,15.0,0.0,0.0,0.0,2.0,100.0,16.7,1.0,0.0,92546.0,31340.0,31500.0,44946.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111085,,8000.0,8000.0,8000.0, 36 months,13.49,271.45,C,C2,Senior Accountant,< 1 year,MORTGAGE,70000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111085,,moving,Moving and relocation,064xx,CT,7.39,0.0,Dec-2004,680.0,684.0,1.0,31.0,,8.0,0.0,17499.0,64.8,11.0,f,1817.25,1817.25,7866.05,7866.05,6182.75,1683.3,0.0,0.0,0.0,Mar-2019,271.45,Apr-2019,Mar-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,149357.0,0.0,2.0,0.0,0.0,78.0,5905.0,33.0,1.0,3.0,8680.0,52.0,27000.0,0.0,0.0,2.0,3.0,18670.0,2501.0,87.5,0.0,0.0,130.0,141.0,10.0,10.0,3.0,10.0,34.0,0.0,34.0,0.0,4.0,4.0,4.0,4.0,3.0,5.0,5.0,4.0,8.0,0.0,0.0,0.0,1.0,81.8,75.0,0.0,0.0,183457.0,23404.0,20000.0,17857.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90151317,,25000.0,25000.0,25000.0, 36 months,14.49,860.41,C,C4,,,RENT,71000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90151317,,debt_consolidation,Debt consolidation,334xx,FL,21.28,0.0,Jul-1986,720.0,724.0,1.0,,,11.0,0.0,30110.0,39.1,33.0,f,5741.89,5741.89,24931.77,24931.77,19258.11,5673.66,0.0,0.0,0.0,Mar-2019,860.41,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,60509.0,1.0,1.0,0.0,2.0,18.0,30399.0,,1.0,1.0,14344.0,39.0,77100.0,0.0,0.0,1.0,3.0,5501.0,42690.0,41.4,0.0,0.0,181.0,362.0,0.0,0.0,1.0,0.0,,0.0,,0.0,6.0,6.0,8.0,14.0,5.0,10.0,26.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,25.0,0.0,0.0,115129.0,60509.0,72800.0,38029.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90118255,,35000.0,35000.0,34750.0, 36 months,15.59,1223.43,C,C5,Program Manager,4 years,RENT,95000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90118255,,credit_card,Credit card refinancing,941xx,CA,15.68,0.0,Nov-2001,700.0,704.0,0.0,,,7.0,0.0,37605.0,76.9,17.0,f,0.0,0.0,40428.2397176136,40139.47,35000.0,5428.24,0.0,0.0,0.0,Dec-2017,24553.96,,Feb-2019,754.0,750.0,0.0,,1.0,Individual,,,,0.0,0.0,63407.0,0.0,2.0,0.0,1.0,16.0,25802.0,65.0,1.0,3.0,15443.0,72.0,48900.0,0.0,2.0,0.0,4.0,9058.0,11295.0,76.9,0.0,0.0,152.0,178.0,9.0,9.0,0.0,9.0,,,,0.0,5.0,5.0,5.0,9.0,7.0,5.0,10.0,5.0,7.0,0.0,0.0,0.0,1.0,100.0,80.0,0.0,0.0,88432.0,63407.0,48900.0,39532.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90139416,,29900.0,29900.0,29900.0, 36 months,13.99,1021.77,C,C3,Area Trainer,9 years,RENT,140000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90139416,,debt_consolidation,Debt consolidation,980xx,WA,25.55,0.0,Jan-1997,680.0,684.0,0.0,72.0,3.0,13.0,1.0,18752.0,34.7,19.0,f,0.0,0.0,21518.27,21518.27,15911.09,5607.18,0.0,0.0,0.0,Jul-2018,1021.77,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,120179.0,2.0,4.0,2.0,5.0,3.0,101427.0,47.0,1.0,6.0,11543.0,40.0,54100.0,0.0,1.0,1.0,11.0,9245.0,33447.0,35.2,0.0,0.0,236.0,66.0,1.0,1.0,0.0,1.0,,8.0,,0.0,5.0,6.0,8.0,8.0,10.0,9.0,9.0,6.0,13.0,0.0,0.0,0.0,3.0,94.7,0.0,0.0,1.0,158755.0,120179.0,51600.0,104655.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90151297,,16925.0,16925.0,16900.0, 36 months,17.99,611.8,D,D2,Accounts Payable Coordinator,5 years,OWN,61000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90151297,,debt_consolidation,Debt consolidation,328xx,FL,22.71,1.0,May-1991,690.0,694.0,2.0,21.0,,9.0,0.0,29116.0,27.0,24.0,f,0.0,0.0,9946.88,9932.19,6420.56,3351.32,0.0,175.0,31.499999937800002,Feb-2018,611.8,,Mar-2019,664.0,660.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,43498.0,3.0,1.0,1.0,1.0,6.0,14382.0,90.0,3.0,4.0,18104.0,35.0,107700.0,1.0,0.0,3.0,5.0,4833.0,75992.0,27.6,0.0,0.0,6.0,304.0,2.0,2.0,2.0,2.0,48.0,1.0,48.0,7.0,4.0,5.0,6.0,14.0,1.0,8.0,20.0,5.0,9.0,0.0,0.0,1.0,4.0,70.8,0.0,0.0,0.0,123700.0,43498.0,104900.0,16000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Sep-2018,ACTIVE,Aug-2018,5095.09,45.0,24.0 +90140842,,13000.0,13000.0,13000.0, 36 months,14.49,447.41,C,C4,Teacher,< 1 year,OWN,40900.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140842,,credit_card,Credit card refinancing,678xx,KS,29.52,0.0,Jul-2009,715.0,719.0,3.0,,,14.0,0.0,7010.0,42.5,30.0,f,0.0,0.0,14764.0816826034,14764.08,13000.0,1764.08,0.0,0.0,0.0,Dec-2017,5319.61,,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,86379.0,2.0,10.0,1.0,3.0,2.0,79369.0,91.0,1.0,2.0,6167.0,83.0,16500.0,0.0,1.0,8.0,5.0,6170.0,1433.0,81.1,0.0,0.0,86.0,48.0,1.0,1.0,0.0,29.0,,0.0,,0.0,1.0,2.0,1.0,1.0,24.0,4.0,6.0,2.0,14.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,103891.0,86379.0,7600.0,87391.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90181578,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Sr Business Analyst,< 1 year,RENT,77000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90181578,,home_improvement,Home improvement,554xx,MN,9.34,1.0,Sep-2003,665.0,669.0,1.0,21.0,,6.0,0.0,3568.0,10.3,29.0,f,1838.94,1838.94,7981.35,7981.35,6161.06,1820.29,0.0,0.0,0.0,Mar-2019,275.33,Apr-2019,Mar-2019,704.0,700.0,0.0,21.0,1.0,Individual,,,,0.0,0.0,57587.0,2.0,2.0,2.0,3.0,2.0,54019.0,100.0,1.0,2.0,2083.0,36.0,34500.0,1.0,9.0,13.0,6.0,9598.0,30932.0,10.3,0.0,0.0,116.0,156.0,8.0,2.0,1.0,8.0,63.0,0.0,63.0,10.0,2.0,2.0,4.0,8.0,16.0,4.0,12.0,2.0,6.0,0.0,0.0,1.0,4.0,66.7,0.0,0.0,0.0,90989.0,57587.0,34500.0,56489.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90190651,,15000.0,15000.0,15000.0, 36 months,15.59,524.33,C,C5,PROCESS TECHNICIAN,< 1 year,RENT,45000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90190651,,medical,Medical expenses,950xx,CA,30.59,2.0,Nov-2003,670.0,674.0,0.0,21.0,70.0,14.0,1.0,5864.0,27.9,27.0,f,0.0,0.0,7851.96,7851.96,5413.85,2438.11,0.0,0.0,0.0,Jan-2018,524.33,,Mar-2019,579.0,575.0,0.0,70.0,1.0,Individual,,,,0.0,0.0,44339.0,0.0,3.0,1.0,2.0,11.0,38475.0,84.0,5.0,5.0,1967.0,66.0,21000.0,5.0,7.0,10.0,7.0,3411.0,2533.0,43.7,0.0,0.0,118.0,154.0,8.0,8.0,0.0,28.0,21.0,1.0,21.0,1.0,1.0,6.0,2.0,4.0,7.0,11.0,20.0,6.0,14.0,0.0,0.0,0.0,6.0,85.7,50.0,1.0,0.0,67096.0,44339.0,4500.0,46096.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90405695,,6200.0,6200.0,6200.0, 36 months,14.49,213.38,C,C4,Building Official,1 year,RENT,61000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90405695,,debt_consolidation,Debt consolidation,750xx,TX,14.66,3.0,Oct-2004,670.0,674.0,1.0,2.0,,8.0,0.0,6027.0,67.0,14.0,f,0.0,0.0,7475.761565011,7475.76,6200.0,1275.76,0.0,0.0,0.0,Aug-2018,2969.83,,Sep-2018,699.0,695.0,0.0,2.0,1.0,Individual,,,,1.0,0.0,20662.0,0.0,1.0,0.0,0.0,29.0,13630.0,43.0,1.0,2.0,1884.0,49.0,9000.0,0.0,4.0,2.0,3.0,2583.0,1844.0,62.4,0.0,1002.0,44.0,81.0,10.0,7.0,2.0,10.0,,0.0,,3.0,2.0,5.0,2.0,5.0,2.0,5.0,8.0,5.0,7.0,1.0,0.0,2.0,2.0,64.3,50.0,0.0,0.0,41797.0,20662.0,4900.0,31792.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404729,,25000.0,25000.0,24975.0, 36 months,16.99,891.2,D,D1,Office manager,10+ years,RENT,54000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404729,,debt_consolidation,Debt consolidation,903xx,CA,22.09,0.0,May-1996,690.0,694.0,0.0,41.0,,14.0,0.0,16955.0,53.0,24.0,f,0.0,0.0,21101.46,21080.36,14485.98,6282.19,44.56,288.73,51.9714,Feb-2019,288.73,,Mar-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,40965.0,1.0,1.0,1.0,1.0,4.0,24010.0,95.0,0.0,0.0,4932.0,72.0,32000.0,0.0,0.0,1.0,1.0,2926.0,9337.0,55.5,0.0,0.0,127.0,244.0,36.0,4.0,0.0,41.0,,4.0,41.0,0.0,5.0,11.0,6.0,10.0,4.0,13.0,20.0,11.0,14.0,0.0,0.0,0.0,1.0,95.8,50.0,0.0,0.0,57297.0,40965.0,21000.0,25297.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,ACTIVE,Dec-2018,4952.0,45.0,18.0 +90320378,,35000.0,35000.0,34725.0, 60 months,27.79,1085.33,F,F5,Sales,4 years,MORTGAGE,130000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90320378,,debt_consolidation,Debt consolidation,782xx,TX,34.03,0.0,Mar-1996,685.0,689.0,3.0,,,25.0,0.0,22336.0,39.5,54.0,f,0.0,0.0,10799.26,10714.41,3052.67,7746.59,0.0,0.0,0.0,Aug-2017,1085.33,,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,417587.0,3.0,7.0,1.0,5.0,4.0,176684.0,53.0,2.0,4.0,2515.0,46.0,56500.0,7.0,12.0,8.0,9.0,16703.0,13763.0,34.5,0.0,0.0,246.0,63.0,2.0,2.0,1.0,2.0,,1.0,,0.0,5.0,11.0,9.0,15.0,23.0,17.0,30.0,11.0,25.0,0.0,0.0,0.0,3.0,100.0,11.1,0.0,0.0,497866.0,199020.0,21000.0,214649.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90410252,,11725.0,11725.0,11725.0, 36 months,13.49,397.84,C,C2,VENDING ROUTE DRIVER,10+ years,MORTGAGE,31200.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90410252,,debt_consolidation,Debt consolidation,245xx,VA,17.12,0.0,Jul-1986,660.0,664.0,1.0,,,9.0,0.0,13485.0,89.3,12.0,f,2663.54,2663.54,11528.57,11528.57,9061.46,2467.11,0.0,0.0,0.0,Mar-2019,397.84,Apr-2019,Mar-2019,559.0,555.0,0.0,,1.0,Individual,,,,0.0,2008.0,106197.0,1.0,0.0,0.0,0.0,,0.0,,1.0,3.0,1897.0,89.0,15100.0,0.0,0.0,1.0,3.0,11800.0,355.0,94.0,0.0,0.0,,362.0,5.0,5.0,3.0,13.0,,5.0,,0.0,5.0,6.0,5.0,6.0,0.0,7.0,9.0,6.0,9.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,133902.0,13485.0,5900.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240868,,12000.0,12000.0,12000.0, 36 months,13.49,407.17,C,C2,Designer,3 years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240868,,debt_consolidation,Debt consolidation,481xx,MI,18.32,3.0,Jun-2003,660.0,664.0,0.0,14.0,71.0,22.0,5.0,11810.0,62.5,30.0,f,2699.68,2699.68,11826.11,11826.11,9300.32,2525.79,0.0,0.0,0.0,Mar-2019,407.17,Apr-2019,Mar-2019,659.0,655.0,0.0,20.0,1.0,Individual,,,,0.0,150.0,62273.0,1.0,6.0,1.0,1.0,10.0,50463.0,128.0,2.0,4.0,2080.0,107.0,18900.0,0.0,0.0,0.0,5.0,3114.0,3108.0,74.3,0.0,0.0,121.0,159.0,3.0,3.0,0.0,19.0,14.0,21.0,14.0,1.0,8.0,10.0,8.0,10.0,9.0,16.0,21.0,10.0,22.0,0.0,0.0,1.0,3.0,89.3,75.0,1.0,4.0,58323.0,62273.0,12100.0,39423.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90386210,,35000.0,35000.0,35000.0, 60 months,21.49,956.55,D,D5,Vice President,10+ years,MORTGAGE,130000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90386210,,debt_consolidation,Debt consolidation,657xx,MO,11.78,2.0,Aug-1986,665.0,669.0,0.0,13.0,,17.0,0.0,8846.0,89.4,54.0,f,22611.58,22611.58,27635.48,27635.48,12388.42,15247.06,0.0,0.0,0.0,Mar-2019,956.55,Apr-2019,Mar-2019,689.0,685.0,0.0,44.0,1.0,Joint App,160000.0,11.93,Not Verified,0.0,0.0,154266.0,1.0,6.0,0.0,4.0,13.0,44619.0,70.0,1.0,6.0,968.0,73.0,9900.0,2.0,0.0,0.0,10.0,9642.0,73.0,97.2,0.0,0.0,185.0,361.0,2.0,2.0,2.0,14.0,38.0,14.0,13.0,0.0,4.0,9.0,5.0,16.0,26.0,10.0,26.0,9.0,17.0,0.0,0.0,0.0,1.0,72.2,100.0,0.0,0.0,203721.0,53465.0,2600.0,63676.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90160890,,25000.0,25000.0,24950.0, 36 months,13.49,848.27,C,C2,Controller,9 years,MORTGAGE,345000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90160890,,debt_consolidation,Debt consolidation,085xx,NJ,17.15,0.0,Dec-2005,660.0,664.0,1.0,,115.0,24.0,1.0,376435.0,63.4,38.0,f,0.0,0.0,27910.340028485098,27854.52,25000.0,2910.34,0.0,0.0,0.0,Oct-2017,1199.11,,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,1064850.0,1.0,4.0,2.0,3.0,5.0,73700.0,79.0,0.0,4.0,24315.0,71.0,440500.0,2.0,1.0,2.0,9.0,44369.0,20429.0,73.5,0.0,0.0,121.0,129.0,14.0,5.0,4.0,14.0,,5.0,,0.0,10.0,13.0,14.0,21.0,6.0,19.0,28.0,13.0,24.0,0.0,0.0,0.0,2.0,100.0,57.1,1.0,0.0,1159280.0,450135.0,77200.0,93280.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90294629,,6725.0,6725.0,6725.0, 36 months,21.49,255.06,D,D5,Produce manager,10+ years,MORTGAGE,34000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90294629,,debt_consolidation,Debt consolidation,723xx,AR,33.36,0.0,Apr-1992,660.0,664.0,1.0,,15.0,7.0,1.0,1087.0,23.6,61.0,f,0.0,0.0,4756.72,4756.72,2293.29,1648.43,15.0,800.0,143.99999994479998,Jun-2018,50.0,,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,4444.0,38477.0,1.0,2.0,2.0,3.0,6.0,37390.0,93.0,3.0,3.0,963.0,86.0,4600.0,14.0,18.0,28.0,6.0,6413.0,2113.0,34.0,0.0,0.0,121.0,154.0,7.0,6.0,1.0,7.0,,0.0,,0.0,2.0,2.0,3.0,19.0,27.0,5.0,33.0,2.0,6.0,0.0,0.0,0.0,5.0,100.0,0.0,1.0,0.0,44839.0,38477.0,3200.0,40239.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,May-2018,ACTIVE,May-2018,2577.0,54.99,18.0 +90147900,,9600.0,9600.0,9600.0, 36 months,21.49,364.11,D,D5,Cuatomer Serice Manager,7 years,RENT,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90147900,,other,Other,303xx,GA,2.52,0.0,Sep-1996,665.0,669.0,0.0,90.0,,6.0,0.0,2960.0,95.5,13.0,f,0.0,0.0,10582.2157795598,10582.22,9600.0,982.22,0.0,0.0,0.0,Apr-2017,8773.13,,Apr-2017,704.0,700.0,0.0,90.0,1.0,Individual,,,,0.0,0.0,12460.0,2.0,2.0,2.0,2.0,5.0,9500.0,100.0,0.0,0.0,2858.0,99.0,3100.0,0.0,0.0,0.0,2.0,3115.0,140.0,95.5,0.0,0.0,5.0,240.0,28.0,5.0,0.0,28.0,,,90.0,1.0,2.0,2.0,3.0,5.0,2.0,4.0,11.0,2.0,6.0,0.0,0.0,0.0,2.0,92.3,50.0,0.0,0.0,12600.0,12460.0,3100.0,9500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90400846,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Sr. Programmer Analyst,10+ years,MORTGAGE,51425.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90400846,,major_purchase,Major purchase,440xx,OH,13.19,0.0,Sep-1995,670.0,674.0,0.0,65.0,71.0,8.0,1.0,4184.0,41.8,14.0,f,0.0,0.0,9284.5833272572,9284.58,8000.0,1284.58,0.0,0.0,0.0,Feb-2018,5161.07,,Feb-2018,679.0,675.0,0.0,74.0,1.0,Individual,,,,0.0,109.0,90966.0,3.0,2.0,1.0,2.0,10.0,18765.0,86.0,3.0,4.0,2140.0,72.0,10000.0,1.0,0.0,0.0,6.0,11371.0,2836.0,51.9,0.0,0.0,104.0,252.0,0.0,0.0,2.0,0.0,,13.0,,1.0,2.0,3.0,3.0,3.0,4.0,5.0,7.0,3.0,8.0,0.0,0.0,0.0,4.0,85.7,0.0,0.0,0.0,109148.0,22949.0,5900.0,21942.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221258,,32000.0,32000.0,32000.0, 60 months,14.49,752.74,C,C4,tacher,10+ years,MORTGAGE,87000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221258,,debt_consolidation,Debt consolidation,751xx,TX,34.39,0.0,May-2000,690.0,694.0,0.0,,,12.0,0.0,21380.0,45.9,32.0,w,19368.7,19368.7,21826.02,21826.02,12631.3,9194.72,0.0,0.0,0.0,Mar-2019,752.74,Apr-2019,Mar-2019,734.0,730.0,1.0,,1.0,Individual,,,,0.0,423.0,148263.0,1.0,4.0,1.0,2.0,3.0,39518.0,55.0,0.0,0.0,7622.0,53.0,46600.0,0.0,2.0,1.0,2.0,12355.0,5450.0,70.2,0.0,0.0,196.0,155.0,56.0,3.0,3.0,106.0,,3.0,,0.0,2.0,4.0,2.0,4.0,19.0,6.0,9.0,4.0,12.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,220950.0,66249.0,18300.0,71949.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90092595,,15000.0,15000.0,15000.0, 60 months,18.99,389.03,D,D3,Account Manager ,10+ years,RENT,70210.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90092595,,debt_consolidation,Debt consolidation,721xx,AR,13.78,0.0,Sep-2000,695.0,699.0,2.0,31.0,,14.0,0.0,8668.0,30.4,22.0,f,0.0,0.0,19690.0617855017,19690.06,15000.0,4690.06,0.0,0.0,0.0,Aug-2018,11823.97,,Feb-2019,649.0,645.0,0.0,44.0,1.0,Individual,,,,0.0,389.0,41070.0,2.0,4.0,2.0,2.0,6.0,32402.0,94.0,1.0,8.0,3059.0,65.0,28500.0,3.0,1.0,6.0,11.0,2934.0,12045.0,33.5,0.0,0.0,192.0,87.0,4.0,4.0,1.0,4.0,,1.0,44.0,6.0,5.0,7.0,5.0,5.0,10.0,9.0,10.0,7.0,14.0,0.0,0.0,0.0,3.0,59.1,0.0,0.0,0.0,63367.0,41070.0,18100.0,34439.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90181443,,20000.0,20000.0,20000.0, 36 months,14.49,688.33,C,C4,Department Management,10+ years,RENT,42000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90181443,,credit_card,Credit card refinancing,453xx,OH,19.69,0.0,Dec-2000,685.0,689.0,0.0,,,9.0,0.0,22030.0,93.3,12.0,f,0.0,0.0,11707.65,11707.65,8376.13,3331.52,0.0,0.0,0.0,Mar-2018,688.33,,Jul-2018,594.0,590.0,0.0,,1.0,Individual,,,,0.0,0.0,22030.0,0.0,0.0,0.0,0.0,37.0,0.0,,0.0,0.0,7416.0,93.0,23600.0,0.0,0.0,0.0,0.0,2448.0,541.0,96.9,0.0,0.0,152.0,189.0,29.0,29.0,0.0,29.0,,20.0,,0.0,7.0,9.0,7.0,7.0,2.0,9.0,10.0,9.0,9.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,23600.0,22030.0,17400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90220535,,7975.0,7975.0,7975.0, 36 months,13.49,270.6,C,C2,Service Rep III,5 years,OWN,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90220535,,credit_card,Credit card refinancing,115xx,NY,4.94,1.0,Oct-1989,665.0,669.0,1.0,16.0,,8.0,0.0,8613.0,22.7,31.0,f,0.0,0.0,9522.6267875725,9522.63,7975.0,1547.63,0.0,0.0,0.0,Sep-2018,3575.41,,Feb-2019,694.0,690.0,0.0,28.0,1.0,Individual,,,,0.0,0.0,26975.0,0.0,2.0,0.0,2.0,19.0,18362.0,105.0,0.0,2.0,4366.0,49.0,37900.0,1.0,0.0,5.0,5.0,3372.0,26044.0,20.8,0.0,0.0,323.0,189.0,16.0,15.0,2.0,16.0,,3.0,28.0,3.0,2.0,3.0,3.0,8.0,13.0,6.0,14.0,3.0,8.0,0.0,0.0,0.0,0.0,76.7,33.3,0.0,0.0,55396.0,26975.0,32900.0,17496.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90311542,,23000.0,23000.0,23000.0, 36 months,16.99,819.9,D,D1,Budget Analyst ,1 year,MORTGAGE,86000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90311542,,debt_consolidation,Debt consolidation,207xx,MD,32.13,0.0,Dec-2000,695.0,699.0,0.0,33.0,,44.0,0.0,16492.0,42.9,66.0,f,0.0,0.0,15595.94,15595.94,10677.98,4892.96,0.0,25.0,4.4999999883,May-2018,819.9,,Mar-2019,609.0,605.0,0.0,33.0,1.0,Individual,,,,0.0,0.0,509324.0,5.0,22.0,3.0,6.0,1.0,209485.0,115.0,4.0,7.0,4381.0,102.0,38400.0,2.0,7.0,5.0,13.0,12127.0,436.0,93.9,0.0,0.0,131.0,189.0,0.0,0.0,3.0,0.0,,2.0,,2.0,5.0,14.0,5.0,6.0,32.0,21.0,31.0,14.0,44.0,0.0,0.0,0.0,7.0,97.0,60.0,0.0,0.0,610765.0,225977.0,7200.0,182665.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2019,ACTIVE,Feb-2019,5973.33,45.0,24.0 +90067294,,16000.0,16000.0,16000.0, 60 months,17.99,406.21,D,D2,Supervisor,10+ years,MORTGAGE,67000.0,Source Verified,Oct-2016,Late (16-30 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90067294,,credit_card,Credit card refinancing,707xx,LA,15.74,0.0,Apr-2003,670.0,674.0,1.0,31.0,,8.0,0.0,4616.0,30.4,13.0,f,10267.36,10267.36,11357.89,11357.89,5732.64,5625.25,0.0,0.0,0.0,Feb-2019,406.21,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,2196.0,33436.0,1.0,1.0,0.0,0.0,25.0,28820.0,,1.0,1.0,1800.0,30.0,15200.0,0.0,1.0,4.0,1.0,4180.0,9210.0,28.6,0.0,0.0,138.0,161.0,1.0,1.0,0.0,1.0,77.0,1.0,31.0,0.0,4.0,6.0,5.0,6.0,4.0,7.0,9.0,6.0,8.0,0.0,0.0,0.0,1.0,53.8,40.0,0.0,0.0,54541.0,33436.0,12900.0,39341.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90291289,,25000.0,25000.0,25000.0, 60 months,19.99,662.21,D,D4,Border patrol agent ,10+ years,MORTGAGE,90000.0,Verified,Oct-2016,Late (31-120 days),y,https://lendingclub.com/browse/loanDetail.action?loan_id=90291289,,debt_consolidation,Debt consolidation,785xx,TX,22.71,1.0,May-2006,665.0,669.0,2.0,20.0,,9.0,0.0,17427.0,78.5,23.0,f,17087.59,17087.59,17730.55,17730.55,7912.41,9818.14,0.0,0.0,0.0,Mar-2019,284.66,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,293568.0,2.0,3.0,1.0,2.0,12.0,60750.0,79.0,1.0,1.0,7395.0,79.0,22200.0,3.0,0.0,7.0,4.0,32619.0,3806.0,80.7,0.0,0.0,119.0,124.0,3.0,3.0,3.0,3.0,20.0,0.0,20.0,0.0,3.0,4.0,4.0,7.0,9.0,5.0,11.0,4.0,9.0,0.0,0.0,0.0,3.0,95.7,75.0,0.0,0.0,310919.0,78177.0,19700.0,72704.0,,,,,,,,,,,,,,Y,INTEREST ONLY-3 MONTHS DEFERRAL,INCOME_CURTAILMENT,ACTIVE,3.0,284.66,Jan-2019,Apr-2019,Feb-2019,3.0,11.0,In Grace Period,853.98,17479.29,509.74,Cash,N,,,,,, +90076680,,30000.0,30000.0,29950.0, 36 months,16.99,1069.44,D,D1,Loan Officer,4 years,MORTGAGE,146000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90076680,,credit_card,Credit card refinancing,326xx,FL,30.73,0.0,Feb-1990,705.0,709.0,1.0,,,23.0,0.0,45948.0,72.4,56.0,f,0.0,0.0,35803.5068993171,35743.83,30000.0,5803.51,0.0,0.0,0.0,Feb-2018,19618.2,,Feb-2018,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,490689.0,1.0,13.0,4.0,7.0,7.0,197315.0,74.0,1.0,3.0,12196.0,73.0,63500.0,2.0,13.0,3.0,10.0,21334.0,10395.0,80.9,0.0,0.0,144.0,319.0,4.0,4.0,6.0,4.0,,0.0,,0.0,6.0,7.0,6.0,18.0,21.0,8.0,29.0,7.0,23.0,0.0,0.0,0.0,5.0,100.0,83.3,0.0,0.0,605242.0,243263.0,54500.0,257260.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90231007,,27200.0,27200.0,27175.0, 60 months,8.99,564.5,B,B1,Electrical Project Manager,4 years,MORTGAGE,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90231007,,debt_consolidation,Debt consolidation,630xx,MO,21.33,0.0,Aug-1999,735.0,739.0,1.0,,,11.0,0.0,18960.0,37.0,28.0,f,0.0,0.0,31970.5149738625,31941.13,27200.0,4770.51,0.0,0.0,0.0,Mar-2019,16198.47,,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,207657.0,1.0,2.0,2.0,3.0,1.0,48335.0,100.0,0.0,1.0,9575.0,49.0,51200.0,2.0,2.0,1.0,6.0,18878.0,31240.0,37.8,0.0,0.0,192.0,205.0,21.0,1.0,4.0,21.0,,3.0,,0.0,2.0,2.0,7.0,12.0,10.0,8.0,14.0,2.0,11.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,248758.0,67295.0,50200.0,53058.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90111260,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Registered Nurse,< 1 year,MORTGAGE,68000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90111260,,home_improvement,Home improvement,762xx,TX,12.27,0.0,Nov-2001,660.0,664.0,3.0,,77.0,11.0,1.0,22018.0,62.4,45.0,f,1827.2,1827.2,7968.72,7968.72,6172.8,1795.92,0.0,0.0,0.0,Mar-2019,273.39,Apr-2019,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,389956.0,3.0,1.0,0.0,1.0,14.0,29702.0,98.0,2.0,3.0,5508.0,79.0,35300.0,3.0,2.0,5.0,5.0,35451.0,4902.0,75.2,0.0,0.0,178.0,177.0,3.0,3.0,2.0,4.0,,4.0,,0.0,3.0,6.0,4.0,4.0,34.0,9.0,9.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,75.0,0.0,0.0,404862.0,51720.0,19800.0,30346.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90238787,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Shop Floorman,10+ years,RENT,117000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90238787,,debt_consolidation,Debt consolidation,590xx,MT,21.66,1.0,Nov-2003,680.0,684.0,1.0,15.0,99.0,7.0,2.0,7662.0,51.4,39.0,f,21342.48,21342.48,26357.31,26357.31,13657.52,12699.79,0.0,0.0,0.0,Mar-2019,888.58,Apr-2019,Mar-2019,694.0,690.0,0.0,56.0,1.0,Individual,,,,0.0,66.0,87119.0,1.0,4.0,2.0,6.0,6.0,79457.0,88.0,0.0,1.0,0.0,78.0,14900.0,3.0,4.0,10.0,7.0,12446.0,,,0.0,0.0,154.0,138.0,21.0,6.0,3.0,,15.0,0.0,15.0,2.0,0.0,3.0,0.0,4.0,27.0,3.0,9.0,3.0,7.0,0.0,0.0,0.0,2.0,86.8,,0.0,2.0,104759.0,87119.0,0.0,89859.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90224953,,18000.0,18000.0,18000.0, 60 months,13.49,414.09,C,C2,Team Leader,3 years,MORTGAGE,55000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90224953,,debt_consolidation,Debt consolidation,088xx,NJ,14.9,0.0,Jan-1998,695.0,699.0,0.0,,,8.0,0.0,19368.0,82.4,25.0,f,0.0,0.0,4127.41,4127.41,2227.79,1899.62,0.0,0.0,0.0,Aug-2017,414.09,,Jul-2018,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,23238.0,1.0,1.0,0.0,0.0,27.0,3707.0,34.0,3.0,3.0,5296.0,64.0,23500.0,0.0,0.0,2.0,3.0,2905.0,4132.0,82.4,0.0,0.0,166.0,224.0,4.0,4.0,1.0,4.0,,11.0,,0.0,6.0,6.0,6.0,17.0,6.0,6.0,17.0,6.0,8.0,0.0,0.0,0.0,3.0,100.0,83.3,0.0,0.0,36218.0,23238.0,23500.0,10800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130792,,10000.0,10000.0,10000.0, 36 months,12.79,335.93,C,C1,driver,2 years,MORTGAGE,185000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130792,,home_improvement,Home improvement,751xx,TX,2.45,0.0,Oct-2008,680.0,684.0,2.0,35.0,,6.0,0.0,5260.0,68.3,17.0,f,2254.34,2254.34,9734.86,9734.86,7745.66,1989.2,0.0,0.0,0.0,Mar-2019,335.93,Apr-2019,Mar-2019,644.0,640.0,0.0,46.0,1.0,Individual,,,,0.0,0.0,159289.0,0.0,1.0,0.0,0.0,27.0,619.0,13.0,1.0,2.0,4418.0,46.0,7700.0,2.0,3.0,5.0,2.0,26548.0,2440.0,68.3,0.0,0.0,89.0,95.0,7.0,7.0,1.0,7.0,35.0,0.0,35.0,3.0,3.0,3.0,4.0,7.0,7.0,4.0,8.0,3.0,6.0,0.0,0.0,0.0,1.0,76.5,25.0,0.0,0.0,184501.0,5879.0,7700.0,4971.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90156995,,28000.0,28000.0,28000.0, 60 months,19.99,741.68,D,D4,Owner,10+ years,MORTGAGE,225000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90156995,,debt_consolidation,Debt consolidation,982xx,WA,12.76,0.0,Nov-1999,695.0,699.0,2.0,38.0,91.0,29.0,1.0,34570.0,45.4,34.0,f,0.0,0.0,11835.78,11835.78,4999.35,6836.43,0.0,0.0,0.0,Feb-2018,741.68,,Mar-2019,544.0,540.0,0.0,,1.0,Individual,,,,0.0,0.0,455012.0,8.0,4.0,3.0,4.0,3.0,81399.0,88.0,5.0,7.0,8625.0,63.0,76100.0,11.0,0.0,10.0,13.0,15690.0,31187.0,41.2,0.0,0.0,132.0,202.0,4.0,3.0,2.0,6.0,38.0,4.0,38.0,0.0,8.0,11.0,17.0,19.0,5.0,23.0,27.0,11.0,29.0,0.0,0.0,0.0,10.0,97.1,23.5,0.0,1.0,508927.0,115969.0,53000.0,90678.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90406010,,12500.0,12500.0,12500.0, 60 months,10.99,271.72,B,B4,,,OWN,25000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90406010,,debt_consolidation,Debt consolidation,030xx,NH,13.35,1.0,Jun-1986,735.0,739.0,0.0,15.0,,8.0,0.0,14393.0,22.5,12.0,f,7304.15,7304.15,7872.25,7872.25,5195.85,2676.4,0.0,0.0,0.0,Mar-2019,271.72,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,14393.0,0.0,0.0,0.0,0.0,,0.0,,0.0,0.0,7102.0,23.0,64000.0,0.0,0.0,0.0,0.0,1799.0,41607.0,25.7,0.0,0.0,,363.0,34.0,34.0,0.0,42.0,15.0,,15.0,0.0,3.0,3.0,6.0,8.0,0.0,8.0,12.0,3.0,8.0,0.0,0.0,0.0,0.0,91.7,0.0,0.0,0.0,64000.0,14393.0,56000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90271232,,35000.0,35000.0,34975.0, 36 months,18.99,1282.79,D,D3,Administrative assistant ,7 years,RENT,76000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90271232,,debt_consolidation,Debt consolidation,113xx,NY,18.56,0.0,Oct-1997,675.0,679.0,0.0,,,4.0,0.0,17610.0,88.1,19.0,f,0.0,0.0,14073.77,14063.72,8683.59,5390.18,0.0,0.0,0.0,Sep-2017,1282.79,,Feb-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,46384.0,1.0,0.0,0.0,0.0,51.0,0.0,,1.0,2.0,10673.0,88.0,20000.0,0.0,0.0,0.0,2.0,11596.0,2390.0,88.1,0.0,0.0,227.0,166.0,3.0,3.0,0.0,3.0,,17.0,,0.0,3.0,3.0,3.0,4.0,6.0,3.0,12.0,3.0,4.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,0.0,60746.0,46384.0,20000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90171102,,7500.0,7500.0,7500.0, 36 months,12.79,251.95,C,C1,Office Manager ,5 years,MORTGAGE,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90171102,,debt_consolidation,Debt consolidation,724xx,AR,31.34,0.0,Aug-2003,660.0,664.0,3.0,,48.0,11.0,1.0,6113.0,71.1,34.0,f,0.0,0.0,8829.3877262882,8829.39,7500.0,1329.39,0.0,0.0,0.0,Aug-2018,3543.77,,Aug-2018,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,204996.0,2.0,5.0,2.0,4.0,2.0,75096.0,81.0,1.0,2.0,2635.0,80.0,8600.0,3.0,0.0,7.0,7.0,18636.0,732.0,85.4,0.0,0.0,157.0,108.0,3.0,2.0,2.0,17.0,,3.0,,0.0,2.0,4.0,2.0,7.0,17.0,4.0,15.0,4.0,11.0,0.0,0.0,0.0,3.0,100.0,100.0,1.0,0.0,239867.0,81209.0,5000.0,93180.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189908,,12000.0,12000.0,12000.0, 36 months,13.49,407.17,C,C2,Teacter,10+ years,MORTGAGE,78000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189908,,debt_consolidation,Debt consolidation,440xx,OH,19.94,0.0,Nov-1993,665.0,669.0,2.0,,75.0,12.0,1.0,15279.0,74.2,25.0,f,0.0,0.0,14077.409313055701,14077.41,12000.0,2077.41,0.0,0.0,0.0,Jun-2018,6350.17,,Jul-2018,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,247550.0,1.0,4.0,0.0,2.0,18.0,45875.0,69.0,3.0,4.0,1982.0,70.0,20600.0,2.0,0.0,4.0,8.0,22505.0,51.0,98.8,0.0,0.0,169.0,274.0,6.0,6.0,5.0,10.0,,6.0,,0.0,3.0,5.0,3.0,7.0,7.0,7.0,13.0,5.0,12.0,0.0,0.0,0.0,3.0,100.0,100.0,1.0,0.0,277910.0,61154.0,4400.0,66885.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90407152,,15000.0,15000.0,15000.0, 36 months,14.49,516.25,C,C4,Nurse,7 years,MORTGAGE,90000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90407152,,debt_consolidation,Debt consolidation,342xx,FL,16.0,0.0,Jan-1994,665.0,669.0,0.0,36.0,45.0,10.0,9.0,6450.0,43.9,19.0,w,0.0,0.0,17157.002212613,17157.0,15000.0,2157.0,0.0,0.0,0.0,Dec-2017,10457.83,,Mar-2019,654.0,650.0,0.0,60.0,1.0,Individual,,,,0.0,53.0,311306.0,1.0,2.0,1.0,2.0,8.0,28069.0,84.0,1.0,2.0,3383.0,72.0,14700.0,2.0,1.0,4.0,5.0,31131.0,5350.0,54.7,0.0,0.0,165.0,272.0,12.0,5.0,2.0,16.0,,5.0,,0.0,4.0,4.0,4.0,6.0,6.0,7.0,10.0,4.0,10.0,0.0,0.0,0.0,3.0,93.3,25.0,8.0,0.0,326370.0,34519.0,11800.0,33551.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90075704,,16000.0,16000.0,15925.0, 36 months,13.49,542.89,C,C2,Quality Assurance Lead,3 years,RENT,39000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90075704,,debt_consolidation,Debt consolidation,836xx,ID,25.69,0.0,Aug-2010,665.0,669.0,0.0,,49.0,15.0,1.0,14184.0,51.0,18.0,f,0.0,0.0,5137.61,5113.53,2238.86,1006.49,0.0,1892.26,340.6068,Apr-2017,542.89,,Oct-2017,524.0,520.0,0.0,,1.0,Joint App,48828.0,20.52,Not Verified,0.0,0.0,25363.0,0.0,1.0,0.0,0.0,30.0,11179.0,65.0,0.0,2.0,4405.0,56.0,27800.0,0.0,1.0,1.0,2.0,1691.0,472.0,92.5,0.0,0.0,30.0,73.0,16.0,16.0,0.0,16.0,,7.0,,0.0,3.0,9.0,3.0,5.0,1.0,14.0,17.0,9.0,15.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,45034.0,25363.0,6300.0,17234.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270671,,23100.0,23100.0,23050.0, 36 months,14.49,795.02,C,C4,RN,2 years,RENT,55000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270671,,debt_consolidation,Debt consolidation,128xx,NY,28.61,0.0,Feb-1997,675.0,679.0,0.0,,,11.0,0.0,21197.0,73.1,30.0,f,0.0,0.0,26146.1992193848,26089.61,23100.0,3046.2,0.0,0.0,0.0,Oct-2017,17419.58,,May-2018,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,102368.0,0.0,4.0,1.0,2.0,12.0,81171.0,87.0,2.0,7.0,8887.0,82.0,29000.0,1.0,0.0,2.0,9.0,9306.0,7803.0,73.1,0.0,0.0,235.0,81.0,10.0,10.0,0.0,10.0,,0.0,,0.0,6.0,6.0,7.0,13.0,11.0,7.0,19.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,42.9,0.0,0.0,113832.0,102368.0,29000.0,84832.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90221069,,10000.0,10000.0,10000.0, 60 months,13.49,230.05,C,C2,Dmv specialist ,10+ years,MORTGAGE,55000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90221069,,debt_consolidation,Debt consolidation,180xx,PA,16.46,0.0,Aug-2001,680.0,684.0,2.0,,,12.0,0.0,15460.0,66.1,39.0,f,0.0,0.0,12700.9186925352,12700.92,10000.0,2700.92,0.0,0.0,0.0,Mar-2019,6251.34,,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,132702.0,2.0,1.0,1.0,2.0,6.0,5768.0,41.0,3.0,4.0,4861.0,57.0,23400.0,4.0,0.0,5.0,6.0,12064.0,3360.0,80.9,0.0,0.0,75.0,181.0,1.0,1.0,2.0,9.0,,1.0,,0.0,5.0,9.0,5.0,18.0,7.0,10.0,30.0,9.0,12.0,0.0,0.0,0.0,4.0,100.0,80.0,0.0,0.0,168768.0,21228.0,17600.0,13968.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89025380,,14400.0,14400.0,14400.0, 36 months,12.79,483.74,C,C1,Senior Digital Designer,2 years,RENT,75000.0,Verified,Oct-2016,Late (31-120 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=89025380,,debt_consolidation,Debt consolidation,553xx,MN,22.03,0.0,Sep-2004,670.0,674.0,0.0,54.0,,7.0,0.0,14058.0,93.7,13.0,f,4130.35,4130.35,13117.25,13117.25,10269.65,2847.6,0.0,0.0,0.0,Jan-2019,483.74,Apr-2019,Mar-2019,629.0,625.0,0.0,54.0,1.0,Individual,,,,0.0,0.0,57505.0,0.0,4.0,1.0,3.0,10.0,43447.0,74.0,0.0,0.0,11056.0,78.0,15000.0,3.0,0.0,0.0,3.0,8215.0,970.0,92.2,0.0,0.0,122.0,144.0,34.0,10.0,0.0,34.0,54.0,22.0,54.0,1.0,2.0,3.0,2.0,5.0,6.0,3.0,7.0,3.0,7.0,0.0,0.0,0.0,1.0,92.3,100.0,0.0,0.0,73663.0,57505.0,12500.0,58663.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88853181,,6000.0,6000.0,6000.0, 36 months,12.79,201.56,C,C1,Warehouse/ counter ,2 years,OWN,43000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88853181,,major_purchase,Major purchase,756xx,TX,23.73,0.0,Feb-2004,680.0,684.0,3.0,39.0,,8.0,0.0,9849.0,45.2,22.0,f,0.0,0.0,6919.6592497124,6919.66,6000.0,919.66,0.0,0.0,0.0,Apr-2018,3497.4,,Apr-2018,654.0,650.0,1.0,39.0,1.0,Individual,,,,0.0,0.0,39780.0,1.0,2.0,1.0,2.0,3.0,29931.0,89.0,1.0,2.0,4949.0,47.0,21800.0,4.0,0.0,4.0,4.0,4973.0,11006.0,45.8,0.0,0.0,151.0,98.0,10.0,3.0,0.0,24.0,78.0,2.0,78.0,6.0,4.0,5.0,5.0,8.0,10.0,6.0,9.0,5.0,8.0,0.0,0.0,0.0,2.0,76.2,20.0,0.0,0.0,57820.0,39780.0,20300.0,36020.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90197175,,6250.0,6250.0,6250.0, 36 months,14.49,215.11,C,C4,Production Line Leader ,10+ years,MORTGAGE,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90197175,,home_improvement,Home improvement,310xx,GA,11.32,0.0,Nov-2005,670.0,674.0,2.0,30.0,23.0,9.0,1.0,2282.0,25.6,14.0,f,1435.21,1435.21,6233.16,6233.16,4814.79,1418.37,0.0,0.0,0.0,Mar-2019,215.11,Apr-2019,Mar-2019,739.0,735.0,0.0,80.0,1.0,Individual,,,,0.0,424.0,11199.0,3.0,2.0,2.0,2.0,3.0,8917.0,64.0,2.0,4.0,1107.0,49.0,8900.0,3.0,2.0,5.0,6.0,1244.0,526.0,79.0,0.0,0.0,130.0,67.0,5.0,3.0,0.0,5.0,,0.0,30.0,1.0,2.0,5.0,2.0,2.0,6.0,7.0,8.0,5.0,9.0,0.0,0.0,0.0,4.0,78.6,50.0,0.0,0.0,22952.0,11199.0,2500.0,14052.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88215952,,12000.0,12000.0,12000.0, 60 months,15.59,289.21,C,C5,Warehouse Supervisor,10+ years,OWN,50000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88215952,,debt_consolidation,Debt consolidation,921xx,CA,10.51,0.0,Sep-1992,675.0,679.0,1.0,41.0,,11.0,0.0,6874.0,41.9,26.0,f,0.0,0.0,13360.978345084799,13360.98,12000.0,1360.98,0.0,0.0,0.0,Jul-2017,11057.69,,Jul-2017,709.0,705.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,10883.0,0.0,1.0,0.0,1.0,19.0,4009.0,68.0,2.0,7.0,2484.0,49.0,16400.0,1.0,0.0,1.0,8.0,989.0,1406.0,75.3,0.0,0.0,116.0,288.0,12.0,12.0,0.0,12.0,44.0,1.0,41.0,5.0,5.0,9.0,5.0,13.0,2.0,10.0,24.0,9.0,11.0,0.0,0.0,0.0,2.0,80.8,40.0,0.0,0.0,22274.0,10883.0,5700.0,5874.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230566,,11000.0,11000.0,11000.0, 36 months,16.99,392.13,D,D1,GIS Technician,3 years,OWN,36000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230566,,debt_consolidation,Debt consolidation,666xx,KS,15.2,1.0,Dec-1999,675.0,679.0,1.0,23.0,,9.0,0.0,3294.0,32.3,15.0,f,0.0,0.0,13227.839676247,13227.84,11000.0,2227.84,0.0,0.0,0.0,Mar-2018,6964.14,,Mar-2019,704.0,700.0,0.0,42.0,1.0,Individual,,,,0.0,397.0,20416.0,0.0,5.0,0.0,1.0,16.0,17122.0,78.0,1.0,3.0,1942.0,64.0,10200.0,2.0,0.0,4.0,4.0,2268.0,58.0,97.1,0.0,0.0,201.0,74.0,10.0,10.0,0.0,22.0,42.0,1.0,42.0,5.0,1.0,2.0,1.0,2.0,10.0,4.0,5.0,2.0,9.0,0.0,0.0,0.0,1.0,60.0,100.0,0.0,0.0,32061.0,20416.0,2000.0,21861.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90140455,,7200.0,7200.0,7200.0, 36 months,16.99,256.67,D,D1,Carpenter,1 year,RENT,30000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140455,,other,Other,191xx,PA,7.68,0.0,Jul-2013,675.0,679.0,1.0,,,7.0,0.0,8235.0,38.8,7.0,f,0.0,0.0,2559.9,2559.9,1649.7,910.2,0.0,0.0,0.0,Aug-2017,256.67,,Feb-2019,629.0,625.0,0.0,,1.0,Individual,,,,0.0,0.0,8235.0,2.0,0.0,0.0,0.0,,0.0,,2.0,6.0,3846.0,39.0,21200.0,1.0,0.0,1.0,6.0,1176.0,10165.0,44.8,0.0,0.0,,38.0,5.0,5.0,0.0,5.0,,5.0,,0.0,4.0,4.0,5.0,5.0,0.0,7.0,7.0,4.0,7.0,0.0,0.0,0.0,2.0,100.0,40.0,0.0,0.0,21200.0,8235.0,18400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90140563,,12000.0,12000.0,12000.0, 60 months,16.99,298.17,D,D1,Warenhouse Manager,8 years,RENT,50000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140563,,debt_consolidation,Debt consolidation,201xx,VA,31.42,0.0,Jun-1996,695.0,699.0,0.0,,,13.0,0.0,23486.0,66.9,21.0,f,0.0,0.0,2413.67,2413.67,1078.47,1335.2,0.0,0.0,0.0,Jun-2017,298.17,,Jan-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,49245.0,1.0,2.0,1.0,3.0,6.0,25759.0,87.0,0.0,0.0,5208.0,76.0,35100.0,0.0,0.0,0.0,3.0,4104.0,10090.0,68.6,0.0,0.0,34.0,243.0,39.0,6.0,1.0,39.0,,,,0.0,8.0,9.0,9.0,14.0,4.0,11.0,16.0,9.0,13.0,0.0,0.0,0.0,1.0,100.0,37.5,0.0,0.0,64600.0,49245.0,32100.0,29500.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90404436,,25000.0,25000.0,24750.0, 60 months,25.69,743.94,F,F1,District Manager,6 years,MORTGAGE,70000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90404436,,other,Other,812xx,CO,15.1,0.0,Sep-1999,675.0,679.0,3.0,,,9.0,0.0,5557.0,24.8,19.0,f,0.0,0.0,2196.14,2174.18,639.7,1556.44,0.0,0.0,0.0,Jan-2017,743.94,,Jul-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,6659.0,35978.0,2.0,2.0,2.0,3.0,4.0,30421.0,81.0,2.0,3.0,1590.0,60.0,22400.0,0.0,10.0,4.0,6.0,3998.0,7410.0,17.7,0.0,0.0,113.0,204.0,2.0,2.0,0.0,2.0,,2.0,,0.0,1.0,3.0,3.0,5.0,10.0,7.0,9.0,3.0,9.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,60133.0,35978.0,9000.0,37733.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90075258,,7000.0,7000.0,7000.0, 36 months,8.59,221.27,A,A5,Catering,10+ years,OWN,35000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90075258,,debt_consolidation,Debt consolidation,770xx,TX,19.86,0.0,Oct-1998,785.0,789.0,1.0,,,5.0,0.0,7306.0,16.5,17.0,w,0.0,0.0,7259.7344970305,7259.73,7000.0,259.73,0.0,0.0,0.0,Mar-2017,6377.99,,Mar-2017,804.0,800.0,0.0,,1.0,Individual,,,,0.0,0.0,16602.0,0.0,1.0,1.0,1.0,12.0,9296.0,72.0,0.0,2.0,5798.0,29.0,44200.0,1.0,0.0,1.0,3.0,3320.0,34794.0,17.4,0.0,0.0,109.0,215.0,23.0,12.0,1.0,23.0,,4.0,,0.0,3.0,3.0,3.0,6.0,6.0,4.0,10.0,3.0,5.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,57200.0,16602.0,42100.0,13000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90180843,,10000.0,10000.0,10000.0, 36 months,13.49,339.31,C,C2,Marketing Traffic Coordinator ,2 years,RENT,80000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90180843,,other,Other,770xx,TX,11.36,0.0,Oct-2008,665.0,669.0,0.0,52.0,,4.0,0.0,5463.0,47.5,26.0,f,0.0,0.0,12104.4784516724,12104.48,10000.0,2104.48,0.0,0.0,0.0,Feb-2019,1765.23,,Mar-2019,759.0,755.0,0.0,52.0,1.0,Individual,,,,0.0,0.0,112011.0,2.0,2.0,2.0,3.0,5.0,106548.0,90.0,1.0,2.0,5250.0,77.0,11500.0,2.0,0.0,3.0,5.0,28003.0,6037.0,47.5,0.0,0.0,95.0,24.0,2.0,2.0,0.0,2.0,,9.0,,1.0,2.0,2.0,2.0,2.0,24.0,2.0,2.0,2.0,4.0,0.0,0.0,0.0,3.0,96.2,0.0,0.0,0.0,120846.0,112011.0,11500.0,109346.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90190873,,35000.0,35000.0,34950.0, 36 months,12.79,1175.76,C,C1,Firefighter. ,10+ years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90190873,,credit_card,Credit card refinancing,773xx,TX,31.26,0.0,Oct-2000,695.0,699.0,1.0,,,24.0,0.0,42263.0,44.0,42.0,f,7890.01,7878.73,34072.17,34023.5,27109.99,6962.18,0.0,0.0,0.0,Mar-2019,1175.76,Apr-2019,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,131673.0,2.0,4.0,1.0,5.0,8.0,89410.0,84.0,5.0,6.0,12625.0,60.0,96100.0,4.0,1.0,9.0,11.0,5725.0,37401.0,48.8,0.0,0.0,107.0,191.0,1.0,1.0,4.0,1.0,,0.0,,0.0,11.0,14.0,12.0,13.0,11.0,20.0,27.0,14.0,24.0,0.0,0.0,0.0,6.0,100.0,8.3,0.0,0.0,203199.0,131673.0,73000.0,107099.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90150906,,18000.0,18000.0,18000.0, 60 months,10.49,386.81,B,B3,Food Merchandiser,10+ years,OWN,92500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90150906,,debt_consolidation,Debt consolidation,481xx,MI,34.15,0.0,Oct-1998,730.0,734.0,2.0,,,26.0,0.0,17976.0,27.0,42.0,f,10463.39,10463.39,11263.33,11263.33,7536.61,3726.72,0.0,0.0,0.0,Mar-2019,386.81,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,87943.0,1.0,4.0,1.0,4.0,1.0,69967.0,58.0,0.0,1.0,3640.0,40.0,66700.0,1.0,1.0,6.0,5.0,3382.0,38156.0,31.0,0.0,0.0,127.0,215.0,18.0,1.0,2.0,18.0,,1.0,,0.0,15.0,17.0,17.0,21.0,13.0,22.0,27.0,17.0,26.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,158182.0,87943.0,55300.0,91482.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90387513,,23000.0,23000.0,23000.0, 36 months,15.59,803.97,C,C5,Owner,7 years,RENT,50000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90387513,,debt_consolidation,Debt consolidation,067xx,CT,24.56,0.0,Jun-2002,695.0,699.0,0.0,,72.0,7.0,1.0,6208.0,77.6,19.0,f,0.0,0.0,19343.85,19343.85,13978.45,5244.8,120.6,0.0,0.0,Nov-2018,2400.0,,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,507.0,34679.0,0.0,5.0,0.0,1.0,21.0,28471.0,43.0,0.0,0.0,3442.0,46.0,8000.0,4.0,0.0,1.0,1.0,4954.0,1792.0,77.6,0.0,0.0,171.0,109.0,26.0,21.0,0.0,26.0,,8.0,,0.0,2.0,2.0,2.0,4.0,13.0,2.0,6.0,2.0,7.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,74783.0,34679.0,8000.0,66783.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90399582,,20000.0,20000.0,20000.0, 36 months,17.99,722.95,D,D2,manager,7 years,MORTGAGE,48000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90399582,,debt_consolidation,Debt consolidation,726xx,AR,34.15,0.0,May-2000,700.0,704.0,2.0,,,12.0,0.0,16223.0,61.0,27.0,f,0.0,0.0,24960.886153312702,24960.89,20000.0,4960.89,0.0,0.0,0.0,Jul-2018,10451.92,,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,123.0,123203.0,2.0,3.0,0.0,4.0,13.0,37352.0,75.0,3.0,4.0,6142.0,70.0,26600.0,2.0,1.0,4.0,8.0,10267.0,5153.0,73.2,0.0,0.0,121.0,196.0,1.0,1.0,2.0,1.0,,0.0,,0.0,6.0,8.0,6.0,9.0,13.0,8.0,12.0,8.0,12.0,0.0,0.0,0.0,3.0,100.0,66.7,0.0,0.0,169106.0,53575.0,19200.0,50006.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403782,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Dental hygienist,5 years,MORTGAGE,120000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403782,,debt_consolidation,Debt consolidation,950xx,CA,26.28,1.0,Jul-1994,675.0,679.0,1.0,6.0,,25.0,0.0,45859.0,69.2,45.0,f,0.0,0.0,23916.8758299523,23916.88,20000.0,3916.88,0.0,0.0,0.0,Sep-2018,8896.3,,Jan-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,397863.0,2.0,5.0,0.0,0.0,35.0,27067.0,32.0,1.0,1.0,4901.0,49.0,66300.0,1.0,0.0,6.0,2.0,18085.0,11295.0,48.9,0.0,0.0,132.0,266.0,2.0,2.0,3.0,2.0,,0.0,,0.0,6.0,15.0,6.0,12.0,9.0,19.0,33.0,15.0,25.0,0.0,0.0,0.0,2.0,97.8,66.7,0.0,0.0,476702.0,72926.0,22100.0,84081.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130178,,20000.0,20000.0,19975.0, 36 months,18.99,733.02,D,D3,Owner/ Operator ,6 years,OWN,74000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130178,,small_business,Business,111xx,NY,27.86,0.0,Sep-2001,715.0,719.0,2.0,,,11.0,0.0,21352.0,55.5,26.0,f,0.0,0.0,8825.22,8814.19,3994.94,2581.14,0.0,2249.14,404.8452,Jul-2017,733.02,,Jan-2018,609.0,605.0,0.0,,1.0,Individual,,,,0.0,0.0,53174.0,0.0,2.0,1.0,1.0,9.0,31822.0,63.0,0.0,0.0,9379.0,60.0,38500.0,3.0,0.0,4.0,1.0,5317.0,13443.0,60.3,0.0,0.0,153.0,180.0,31.0,9.0,1.0,31.0,,0.0,,0.0,4.0,5.0,6.0,14.0,4.0,9.0,21.0,5.0,11.0,0.0,0.0,0.0,1.0,100.0,50.0,0.0,0.0,88794.0,53174.0,33900.0,50294.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90110762,,24000.0,24000.0,24000.0, 60 months,8.99,498.09,B,B1,Business Application Dev Manager,4 years,MORTGAGE,140000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90110762,,credit_card,Credit card refinancing,773xx,TX,21.78,0.0,Dec-1997,740.0,744.0,0.0,53.0,,13.0,0.0,22785.0,46.6,35.0,f,13732.9,13732.9,14486.56,14486.56,10267.1,4219.46,0.0,0.0,0.0,Mar-2019,498.09,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,478174.0,0.0,2.0,1.0,2.0,12.0,68487.0,78.0,1.0,1.0,14222.0,56.0,48900.0,1.0,1.0,0.0,4.0,36783.0,17353.0,55.3,0.0,0.0,225.0,216.0,8.0,8.0,4.0,8.0,,14.0,53.0,0.0,6.0,8.0,6.0,8.0,10.0,9.0,20.0,8.0,13.0,0.0,0.0,0.0,2.0,97.1,33.3,0.0,0.0,555317.0,95003.0,38800.0,91143.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90300768,,34425.0,34425.0,34125.0, 60 months,25.69,1024.4,F,F1,Supervisor,2 years,RENT,72000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300768,,debt_consolidation,Debt consolidation,956xx,CA,14.02,0.0,Jul-1998,675.0,679.0,0.0,,74.0,10.0,1.0,11755.0,75.4,23.0,f,0.0,0.0,16393.08,16250.22,2819.7,6522.73,0.0,7050.65,1269.1170000159,Jul-2017,1024.4,,Oct-2017,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,20250.0,1.0,2.0,0.0,1.0,15.0,8495.0,49.0,4.0,8.0,5255.0,62.0,15600.0,0.0,8.0,0.0,9.0,2025.0,929.0,89.4,0.0,0.0,116.0,218.0,2.0,2.0,1.0,59.0,,17.0,,0.0,3.0,6.0,3.0,7.0,5.0,8.0,17.0,6.0,10.0,0.0,0.0,0.0,4.0,100.0,66.7,1.0,0.0,32794.0,20250.0,8800.0,17194.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130342,,9600.0,9600.0,9575.0, 36 months,13.99,328.06,C,C3,BUSINESS APPLICATION ANALYST,10+ years,MORTGAGE,65000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130342,,major_purchase,Major purchase,381xx,TN,9.62,1.0,Oct-2003,665.0,669.0,3.0,18.0,41.0,10.0,2.0,13396.0,66.6,18.0,f,0.0,0.0,6930.0,6911.95,4567.39,1658.29,0.0,704.32,126.7776,May-2018,328.06,,Nov-2018,499.0,0.0,0.0,68.0,1.0,Individual,,,,0.0,0.0,83007.0,2.0,1.0,1.0,1.0,8.0,69611.0,,3.0,6.0,2244.0,67.0,20100.0,1.0,2.0,4.0,7.0,8301.0,1532.0,72.1,0.0,0.0,144.0,155.0,1.0,1.0,1.0,16.0,68.0,1.0,18.0,1.0,3.0,8.0,3.0,5.0,4.0,9.0,13.0,8.0,10.0,0.0,0.0,0.0,4.0,88.9,66.7,2.0,0.0,86350.0,83007.0,5500.0,66250.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90169786,,18700.0,18700.0,18700.0, 36 months,18.99,685.38,D,D3,Production manager,10+ years,RENT,65520.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90169786,,credit_card,Credit card refinancing,064xx,CT,28.54,0.0,Apr-2005,685.0,689.0,3.0,,,23.0,0.0,16991.0,28.8,61.0,f,4507.53,4507.53,19856.29,19856.29,14192.47,5663.82,0.0,0.0,0.0,Mar-2019,685.38,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,42842.0,6.0,2.0,0.0,1.0,14.0,25643.0,53.0,9.0,10.0,3397.0,39.0,59000.0,1.0,2.0,5.0,12.0,1947.0,26786.0,36.1,0.0,0.0,135.0,137.0,1.0,1.0,0.0,1.0,,1.0,,0.0,7.0,10.0,12.0,31.0,9.0,20.0,51.0,10.0,23.0,0.0,0.0,0.0,9.0,100.0,0.0,0.0,0.0,109332.0,42842.0,41900.0,48605.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90075710,,14000.0,14000.0,14000.0, 36 months,12.79,470.31,C,C1,driver,10+ years,MORTGAGE,50000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90075710,,home_improvement,Home improvement,372xx,TN,13.32,0.0,Aug-1997,685.0,689.0,2.0,,36.0,9.0,1.0,2878.0,25.7,20.0,f,0.0,0.0,14949.894714386499,14949.89,14000.0,949.89,0.0,0.0,0.0,Apr-2017,12538.66,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,1153.0,121810.0,1.0,1.0,1.0,1.0,9.0,8501.0,85.0,1.0,1.0,2413.0,54.0,11200.0,1.0,0.0,2.0,2.0,13534.0,4487.0,35.0,0.0,0.0,56.0,229.0,0.0,0.0,1.0,25.0,,0.0,,0.0,1.0,2.0,3.0,6.0,4.0,7.0,15.0,2.0,9.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,138927.0,11379.0,6900.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88877648,,40000.0,40000.0,40000.0, 60 months,21.49,1093.19,D,D5,Probation Officer,10+ years,RENT,93400.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88877648,,debt_consolidation,Debt consolidation,088xx,NJ,14.09,0.0,Jun-1983,705.0,709.0,0.0,,,8.0,0.0,48414.0,81.8,14.0,f,0.0,0.0,52583.9719723636,52583.97,40000.0,12583.97,0.0,0.0,0.0,May-2018,32954.31,,May-2018,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,48414.0,0.0,0.0,0.0,0.0,124.0,0.0,,0.0,0.0,23450.0,82.0,59200.0,0.0,1.0,0.0,0.0,8069.0,4854.0,90.8,0.0,0.0,147.0,399.0,29.0,29.0,0.0,29.0,,,,0.0,3.0,6.0,3.0,4.0,2.0,8.0,12.0,6.0,8.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,59200.0,48414.0,52500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392915,,24000.0,24000.0,24000.0, 60 months,14.49,564.56,C,C4,Attorney,4 years,MORTGAGE,60000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392915,,debt_consolidation,Debt consolidation,478xx,IN,21.0,1.0,Nov-2002,660.0,664.0,0.0,22.0,,14.0,0.0,16564.0,75.6,36.0,f,0.0,0.0,30845.9005403508,30845.9,24000.0,6845.9,0.0,0.0,0.0,Mar-2019,18.9,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,178168.0,2.0,4.0,0.0,2.0,13.0,138182.0,92.0,2.0,2.0,3947.0,88.0,21900.0,1.0,2.0,0.0,4.0,13705.0,286.0,97.0,0.0,0.0,158.0,166.0,3.0,3.0,3.0,94.0,,19.0,22.0,0.0,3.0,6.0,4.0,5.0,17.0,8.0,16.0,6.0,14.0,0.0,0.0,0.0,2.0,94.4,100.0,0.0,0.0,194406.0,154746.0,9500.0,137218.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90227946,,35000.0,35000.0,35000.0, 36 months,10.49,1137.43,B,B3,Deputy Program Manager,1 year,MORTGAGE,200000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90227946,,credit_card,Credit card refinancing,606xx,IL,8.75,0.0,Aug-1996,670.0,674.0,1.0,,,20.0,0.0,40521.0,63.1,35.0,w,0.0,0.0,37897.548480666,37897.55,35000.0,2897.55,0.0,0.0,0.0,Oct-2018,999.92,,Nov-2018,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,63367.0,2.0,1.0,0.0,1.0,13.0,22846.0,76.0,2.0,2.0,8985.0,66.0,64200.0,3.0,4.0,2.0,3.0,3520.0,14974.0,69.6,0.0,0.0,78.0,241.0,1.0,1.0,1.0,59.0,,4.0,,0.0,10.0,11.0,12.0,20.0,3.0,18.0,30.0,11.0,20.0,0.0,0.0,0.0,2.0,100.0,41.7,0.0,0.0,96654.0,63367.0,49200.0,30187.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90318578,,12000.0,12000.0,12000.0, 36 months,12.79,403.12,C,C1,Maintenance Supervisor ,3 years,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90318578,,credit_card,Credit card refinancing,913xx,CA,21.21,0.0,Dec-1984,665.0,669.0,0.0,,105.0,6.0,1.0,5625.0,82.7,8.0,f,2705.07,2705.07,11681.95,11681.95,9294.93,2387.02,0.0,0.0,0.0,Mar-2019,403.12,Apr-2019,Mar-2019,579.0,575.0,1.0,,1.0,Individual,,,,0.0,700.0,23564.0,0.0,2.0,1.0,1.0,12.0,17825.0,65.0,0.0,3.0,2745.0,68.0,6800.0,0.0,0.0,0.0,5.0,3927.0,1175.0,82.7,0.0,0.0,36.0,381.0,14.0,12.0,0.0,14.0,,14.0,,0.0,3.0,3.0,3.0,4.0,2.0,3.0,4.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,66.7,0.0,1.0,34614.0,23564.0,6800.0,27639.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90120818,,12000.0,12000.0,12000.0, 36 months,16.99,427.78,D,D1,Assistant Director Athletic Development,2 years,RENT,38000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90120818,,debt_consolidation,Debt consolidation,822xx,WY,32.34,0.0,Jul-2005,680.0,684.0,0.0,,,11.0,0.0,12758.0,67.9,36.0,f,2831.53,2831.53,12462.25,12462.25,9168.47,3293.78,0.0,0.0,0.0,Mar-2019,427.78,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,136811.0,1.0,7.0,0.0,3.0,14.0,124053.0,64.0,2.0,2.0,7514.0,66.0,18800.0,0.0,2.0,1.0,5.0,12437.0,2786.0,73.0,0.0,0.0,134.0,50.0,5.0,5.0,0.0,5.0,,11.0,,0.0,1.0,3.0,2.0,2.0,32.0,4.0,4.0,3.0,11.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,155208.0,136811.0,10300.0,136408.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90150890,,24000.0,24000.0,23950.0, 60 months,14.49,564.56,C,C4,Dispatcher 3,10+ years,RENT,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90150890,,debt_consolidation,Debt consolidation,190xx,PA,18.24,0.0,Feb-2002,680.0,684.0,1.0,66.0,,8.0,0.0,7723.0,59.0,17.0,f,14530.48,14500.21,16401.18,16367.01,9469.52,6931.66,0.0,0.0,0.0,Mar-2019,564.56,Apr-2019,Mar-2019,679.0,675.0,1.0,,1.0,Individual,,,,0.0,222.0,40228.0,0.0,4.0,1.0,3.0,12.0,32505.0,57.0,0.0,0.0,2717.0,58.0,13100.0,2.0,3.0,1.0,3.0,5029.0,1033.0,77.5,0.0,0.0,148.0,175.0,31.0,12.0,2.0,142.0,,3.0,,0.0,2.0,4.0,2.0,3.0,9.0,4.0,6.0,4.0,8.0,0.0,0.0,0.0,1.0,94.1,100.0,0.0,0.0,69728.0,40228.0,4600.0,56628.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90265459,,14225.0,14225.0,14225.0, 60 months,8.99,295.22,B,B1,Project Engineer,2 years,MORTGAGE,54915.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90265459,,credit_card,Credit card refinancing,199xx,DE,15.78,0.0,Apr-1986,740.0,744.0,0.0,,,10.0,0.0,30326.0,51.9,15.0,f,0.0,0.0,14875.0726065373,14875.07,14225.0,650.07,0.0,0.0,0.0,Apr-2017,13406.07,,Apr-2017,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,212133.0,0.0,0.0,0.0,0.0,109.0,0.0,,0.0,0.0,12582.0,52.0,58400.0,0.0,0.0,0.0,0.0,21213.0,18130.0,59.6,0.0,0.0,109.0,365.0,46.0,46.0,4.0,46.0,,,,0.0,3.0,5.0,4.0,4.0,1.0,9.0,10.0,5.0,10.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,256400.0,30326.0,44900.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90300995,,8000.0,8000.0,8000.0, 36 months,15.59,279.64,C,C5,Salesperson,< 1 year,RENT,30000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300995,,credit_card,Credit card refinancing,371xx,TN,14.28,0.0,Nov-2008,670.0,674.0,0.0,,,8.0,0.0,6263.0,83.5,9.0,f,1859.59,1859.59,8106.09,8106.09,6140.41,1965.68,0.0,0.0,0.0,Mar-2019,279.64,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,52940.0,1.0,6.0,1.0,1.0,6.0,46677.0,123.0,1.0,1.0,4018.0,117.0,7500.0,0.0,0.0,1.0,2.0,6618.0,1237.0,83.5,0.0,0.0,94.0,65.0,8.0,6.0,0.0,8.0,,12.0,,0.0,2.0,2.0,2.0,2.0,7.0,2.0,2.0,2.0,8.0,0.0,0.0,0.0,2.0,100.0,100.0,0.0,0.0,45350.0,52940.0,7500.0,37850.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229718,,16000.0,16000.0,16000.0, 60 months,17.99,406.21,D,D2,Sales,3 years,MORTGAGE,55000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229718,,home_improvement,Home improvement,975xx,OR,23.48,0.0,Feb-2004,660.0,664.0,1.0,,20.0,11.0,1.0,16490.0,67.6,26.0,f,0.0,0.0,20675.8306213644,20675.83,16000.0,4675.83,0.0,0.0,0.0,Aug-2018,12272.44,,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,162049.0,1.0,1.0,0.0,1.0,13.0,30520.0,,1.0,2.0,4199.0,68.0,24400.0,1.0,4.0,2.0,4.0,14732.0,2215.0,77.6,0.0,0.0,151.0,118.0,1.0,1.0,2.0,22.0,,1.0,,1.0,4.0,8.0,4.0,8.0,7.0,9.0,17.0,8.0,11.0,0.0,0.0,0.0,1.0,92.3,75.0,0.0,0.0,177101.0,47010.0,9900.0,35899.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189931,,35000.0,35000.0,35000.0, 36 months,12.79,1175.76,C,C1,Administrator,10+ years,OWN,150000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189931,,debt_consolidation,Debt consolidation,785xx,TX,13.66,0.0,Dec-2003,725.0,729.0,3.0,52.0,,16.0,0.0,18941.0,32.7,28.0,f,0.0,0.0,11122.42,11122.42,4946.48,2083.21,0.0,4092.73,736.6914000121001,Apr-2017,1175.76,,Oct-2017,599.0,595.0,0.0,,1.0,Individual,,,,0.0,0.0,258043.0,5.0,6.0,5.0,6.0,3.0,88956.0,64.0,4.0,4.0,11921.0,47.0,57900.0,2.0,3.0,3.0,10.0,16128.0,15079.0,44.2,0.0,0.0,153.0,130.0,0.0,0.0,1.0,30.0,,0.0,,0.0,1.0,7.0,2.0,3.0,14.0,9.0,13.0,7.0,16.0,0.0,0.0,0.0,9.0,92.6,0.0,0.0,0.0,329724.0,107897.0,27000.0,98824.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229828,,25000.0,25000.0,24950.0, 60 months,12.79,566.15,C,C1,Investment Officer,9 years,MORTGAGE,179000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229828,,debt_consolidation,Debt consolidation,201xx,VA,16.54,1.0,May-2007,675.0,679.0,0.0,5.0,,9.0,0.0,74976.0,82.2,24.0,f,0.0,0.0,28652.773715933,28595.47,25000.0,3624.46,28.31,0.0,0.0,Dec-2017,21275.27,,Jan-2018,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,406136.0,1.0,4.0,2.0,5.0,5.0,64065.0,71.0,0.0,0.0,0.0,73.0,82000.0,0.0,16.0,0.0,5.0,45126.0,,,0.0,0.0,108.0,112.0,25.0,5.0,1.0,,,,,0.0,0.0,3.0,0.0,1.0,15.0,4.0,8.0,3.0,9.0,0.0,0.0,0.0,2.0,95.8,,0.0,0.0,480643.0,139041.0,0.0,90643.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90306947,,10000.0,10000.0,10000.0, 60 months,12.79,226.46,C,C1,Senior mechanic,10+ years,OWN,79000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90306947,,home_improvement,Home improvement,070xx,NJ,6.29,5.0,Mar-1984,715.0,719.0,1.0,22.0,,10.0,0.0,4011.0,21.3,43.0,f,5951.44,5951.44,6560.23,6560.23,4048.56,2511.67,0.0,0.0,0.0,Mar-2019,226.46,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,87296.0,2.0,1.0,1.0,3.0,7.0,8552.0,81.0,6.0,7.0,3107.0,43.0,18800.0,0.0,0.0,7.0,11.0,9700.0,11187.0,25.9,0.0,0.0,155.0,390.0,6.0,5.0,1.0,6.0,22.0,6.0,22.0,0.0,2.0,3.0,5.0,18.0,5.0,8.0,37.0,3.0,10.0,0.0,0.0,0.0,8.0,88.4,0.0,0.0,0.0,105417.0,12563.0,15100.0,10617.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90085272,,3000.0,3000.0,3000.0, 36 months,13.49,101.8,C,C2,Marketing Manager,1 year,RENT,40000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90085272,,other,Other,331xx,FL,19.83,0.0,Aug-2009,680.0,684.0,0.0,29.0,,10.0,0.0,1379.0,98.5,22.0,w,688.2,688.2,3006.61,3006.61,2311.8,649.81,45.0,0.0,0.0,Mar-2019,101.8,Apr-2019,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,50695.0,0.0,6.0,0.0,0.0,36.0,49316.0,88.0,0.0,2.0,1379.0,88.0,1400.0,1.0,0.0,1.0,2.0,7242.0,21.0,98.5,0.0,0.0,85.0,63.0,20.0,20.0,0.0,52.0,,1.0,,0.0,1.0,1.0,1.0,1.0,17.0,4.0,5.0,1.0,10.0,0.0,0.0,0.0,0.0,95.2,100.0,0.0,0.0,57703.0,50695.0,1400.0,56303.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90330536,,12000.0,12000.0,12000.0, 36 months,19.99,445.91,D,D4,Operations Manager,9 years,MORTGAGE,81000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90330536,,debt_consolidation,Debt consolidation,440xx,OH,32.78,1.0,Jul-1995,665.0,669.0,0.0,21.0,,19.0,0.0,46749.0,76.1,42.0,f,0.0,0.0,12009.060000012,12009.06,12000.0,9.06,0.0,0.0,0.0,Oct-2016,12022.39,,Sep-2018,654.0,650.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,236497.0,3.0,2.0,1.0,2.0,5.0,33739.0,74.0,3.0,4.0,9615.0,75.0,61400.0,2.0,0.0,4.0,7.0,13139.0,5413.0,86.6,0.0,0.0,134.0,254.0,2.0,2.0,4.0,2.0,21.0,0.0,21.0,1.0,10.0,14.0,10.0,17.0,9.0,16.0,29.0,14.0,19.0,0.0,0.0,0.0,4.0,95.0,70.0,0.0,0.0,270826.0,80488.0,40500.0,45426.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90065962,,35000.0,35000.0,35000.0, 60 months,17.99,888.58,D,D2,Senior Permitting Services Specialist,< 1 year,OWN,87435.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90065962,,home_improvement,Home improvement,207xx,MD,13.27,0.0,Feb-2003,690.0,694.0,1.0,,,9.0,0.0,61758.0,87.0,11.0,f,0.0,0.0,16707.7,16707.7,5173.49,7265.62,44.43,4224.16,760.3487999887,Apr-2018,888.58,,Jul-2018,534.0,530.0,0.0,,1.0,Individual,,,,0.0,150.0,189156.0,1.0,2.0,0.0,0.0,105.0,14902.0,46.0,2.0,2.0,17032.0,74.0,71000.0,0.0,0.0,1.0,2.0,21017.0,8218.0,76.2,0.0,0.0,163.0,161.0,4.0,4.0,2.0,4.0,,2.0,,0.0,3.0,5.0,3.0,3.0,3.0,6.0,6.0,5.0,9.0,0.0,0.0,0.0,2.0,100.0,33.3,0.0,0.0,238596.0,76660.0,34500.0,32596.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270210,,35000.0,35000.0,35000.0, 36 months,13.99,1196.05,C,C3,Regional Sales Manager,3 years,MORTGAGE,220000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270210,,debt_consolidation,Debt consolidation,336xx,FL,23.6,0.0,Jul-1999,720.0,724.0,0.0,54.0,,13.0,0.0,88247.0,95.9,30.0,f,8000.51,8000.51,34740.22,34740.22,26999.49,7740.73,0.0,0.0,0.0,Mar-2019,1196.05,Apr-2019,Mar-2019,659.0,655.0,0.0,54.0,1.0,Individual,,,,0.0,0.0,376788.0,4.0,8.0,2.0,2.0,1.0,128882.0,51.0,2.0,2.0,26678.0,71.0,90000.0,1.0,0.0,2.0,4.0,28984.0,1828.0,95.9,0.0,0.0,206.0,132.0,3.0,1.0,4.0,3.0,81.0,1.0,81.0,8.0,2.0,3.0,3.0,4.0,20.0,4.0,6.0,3.0,12.0,0.0,0.0,0.0,4.0,66.7,66.7,0.0,0.0,436162.0,217129.0,45000.0,158962.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90257098,,17400.0,17400.0,17400.0, 60 months,18.99,451.27,D,D3,Driver,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90257098,,debt_consolidation,Debt consolidation,786xx,TX,17.16,2.0,Apr-1999,660.0,664.0,0.0,2.0,,7.0,0.0,3355.0,69.9,13.0,w,10989.29,10989.29,13068.47,13068.47,6410.71,6657.76,0.0,0.0,0.0,Mar-2019,451.27,Apr-2019,Mar-2019,569.0,565.0,0.0,2.0,1.0,Individual,,,,1.0,0.0,190506.0,2.0,2.0,1.0,1.0,2.0,32151.0,76.0,1.0,1.0,2900.0,76.0,4800.0,1.0,3.0,3.0,2.0,27215.0,100.0,96.7,0.0,339.0,36.0,47.0,4.0,2.0,1.0,47.0,18.0,2.0,18.0,2.0,1.0,3.0,1.0,2.0,4.0,3.0,7.0,3.0,6.0,0.0,0.0,2.0,2.0,76.9,100.0,0.0,0.0,212713.0,35902.0,3000.0,42362.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90400370,,12600.0,12600.0,12600.0, 60 months,17.99,319.89,D,D2,Systems engineer,1 year,OWN,87000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90400370,,debt_consolidation,Debt consolidation,606xx,IL,12.52,1.0,Oct-2001,670.0,674.0,4.0,15.0,,15.0,0.0,15346.0,49.0,29.0,f,0.0,0.0,15535.106381951398,15535.11,12600.0,2935.11,0.0,0.0,0.0,Apr-2018,9349.57,,Nov-2018,594.0,590.0,0.0,33.0,1.0,Individual,,,,0.0,0.0,209749.0,6.0,3.0,2.0,2.0,1.0,29572.0,89.0,4.0,6.0,7056.0,70.0,31300.0,0.0,0.0,7.0,8.0,13983.0,5182.0,66.8,0.0,0.0,135.0,179.0,4.0,1.0,1.0,4.0,15.0,1.0,15.0,2.0,4.0,8.0,4.0,9.0,8.0,11.0,18.0,8.0,15.0,0.0,0.0,0.0,6.0,75.0,75.0,0.0,0.0,235907.0,44918.0,15600.0,33362.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90310980,,10000.0,10000.0,10000.0, 36 months,16.99,356.48,D,D1,Patient interviewer,3 years,MORTGAGE,45000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90310980,,debt_consolidation,Debt consolidation,191xx,PA,26.88,0.0,Oct-1998,675.0,679.0,1.0,,,17.0,0.0,3704.0,41.2,34.0,f,0.0,0.0,12027.085314938,12027.09,10000.0,2027.09,0.0,0.0,0.0,Mar-2018,6280.94,,Jan-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,1744.0,140766.0,0.0,6.0,0.0,2.0,17.0,45034.0,86.0,1.0,6.0,1767.0,80.0,9000.0,5.0,0.0,2.0,11.0,9384.0,4396.0,45.7,0.0,0.0,79.0,215.0,10.0,10.0,3.0,10.0,,1.0,,0.0,3.0,3.0,6.0,14.0,12.0,9.0,19.0,3.0,17.0,0.0,0.0,0.0,1.0,100.0,20.0,0.0,0.0,155129.0,48738.0,8100.0,52116.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90238477,,20000.0,20000.0,20000.0, 36 months,10.49,649.96,B,B3,Social Worker,5 years,OWN,110000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90238477,,credit_card,Credit card refinancing,067xx,CT,24.77,1.0,Sep-1999,665.0,669.0,2.0,7.0,,17.0,0.0,120310.0,32.5,40.0,w,0.0,0.0,3238.14,3238.14,2417.53,820.61,0.0,0.0,0.0,Mar-2017,649.96,,Nov-2017,549.0,545.0,0.0,7.0,1.0,Individual,,,,0.0,0.0,313735.0,1.0,3.0,0.0,1.0,13.0,134526.0,,1.0,2.0,2421.0,33.0,148500.0,3.0,1.0,2.0,3.0,18455.0,4265.0,59.4,0.0,0.0,154.0,204.0,2.0,2.0,2.0,2.0,,2.0,,2.0,3.0,6.0,4.0,9.0,16.0,13.0,22.0,6.0,16.0,0.0,0.0,1.0,1.0,92.5,75.0,0.0,0.0,387281.0,254836.0,10500.0,111781.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90398275,,25000.0,25000.0,25000.0, 60 months,10.49,537.23,B,B3,Senior Implementation Consultant,8 years,MORTGAGE,110000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90398275,,debt_consolidation,Debt consolidation,794xx,TX,13.23,1.0,Jul-2001,700.0,704.0,0.0,19.0,,11.0,0.0,18193.0,63.2,20.0,f,14532.7,14532.7,15565.1,15565.1,10467.3,5097.8,0.0,0.0,0.0,Mar-2019,537.23,Apr-2019,Mar-2019,719.0,715.0,0.0,65.0,1.0,Individual,,,,0.0,0.0,140195.0,0.0,1.0,0.0,0.0,35.0,21011.0,,1.0,1.0,4397.0,63.0,28800.0,0.0,0.0,0.0,1.0,12745.0,8387.0,63.1,0.0,0.0,113.0,182.0,10.0,10.0,1.0,10.0,,,,1.0,6.0,8.0,6.0,12.0,3.0,9.0,15.0,8.0,11.0,0.0,0.0,0.0,1.0,89.5,16.7,0.0,0.0,189807.0,39204.0,22700.0,36007.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240777,,15000.0,15000.0,15000.0, 60 months,14.49,352.85,C,C4,Manager,10+ years,MORTGAGE,110000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240777,,debt_consolidation,Debt consolidation,913xx,CA,11.07,1.0,Mar-2005,740.0,744.0,1.0,20.0,,10.0,0.0,3994.0,12.2,28.0,f,0.0,0.0,17412.2264262068,17412.23,15000.0,2412.23,0.0,0.0,0.0,Dec-2017,12837.26,,Aug-2018,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,394952.0,4.0,2.0,1.0,2.0,9.0,18853.0,57.0,4.0,4.0,3558.0,35.0,32800.0,2.0,3.0,2.0,7.0,43884.0,16442.0,17.8,0.0,0.0,138.0,123.0,1.0,1.0,2.0,2.0,20.0,0.0,20.0,0.0,1.0,2.0,3.0,5.0,11.0,7.0,15.0,2.0,10.0,0.0,0.0,0.0,5.0,96.4,0.0,0.0,0.0,443992.0,22847.0,20000.0,33017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90402629,,30000.0,30000.0,29750.0, 36 months,15.59,1048.65,C,C5,Engineer,2 years,RENT,83000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90402629,,debt_consolidation,Debt consolidation,088xx,NJ,14.44,0.0,Mar-2001,675.0,679.0,0.0,,,8.0,0.0,31378.0,82.4,9.0,f,0.0,0.0,17865.0,17716.13,10834.95,4996.05,0.0,2034.0,366.12,Jan-2018,1048.65,,Mar-2019,519.0,515.0,0.0,,1.0,Individual,,,,0.0,0.0,49958.0,2.0,2.0,0.0,1.0,18.0,18580.0,66.0,3.0,3.0,9450.0,75.0,38100.0,0.0,0.0,0.0,4.0,6245.0,6722.0,82.4,0.0,0.0,32.0,186.0,2.0,2.0,0.0,2.0,,13.0,,0.0,5.0,5.0,6.0,6.0,2.0,6.0,7.0,5.0,8.0,0.0,0.0,0.0,3.0,100.0,50.0,0.0,0.0,66344.0,49958.0,38100.0,28244.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Jul-2018,ACTIVE,Jul-2018,9208.0,45.0,18.0 +90300169,,8000.0,8000.0,8000.0, 36 months,13.49,271.45,C,C2,epidemiologist and professor,10+ years,MORTGAGE,73000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300169,,debt_consolidation,Debt consolidation,378xx,TN,13.41,0.0,May-2006,665.0,669.0,1.0,59.0,61.0,7.0,1.0,6832.0,73.5,32.0,f,0.0,0.0,9406.1217938311,9406.12,8000.0,1406.12,0.0,0.0,0.0,May-2018,4491.14,,Mar-2019,634.0,630.0,0.0,59.0,1.0,Individual,,,,0.0,0.0,270710.0,3.0,2.0,2.0,2.0,3.0,167123.0,98.0,1.0,1.0,272.0,92.0,9300.0,2.0,0.0,3.0,3.0,38673.0,1828.0,13.0,0.0,0.0,122.0,124.0,4.0,3.0,1.0,4.0,71.0,3.0,71.0,6.0,1.0,3.0,2.0,6.0,22.0,4.0,9.0,3.0,7.0,0.0,0.0,0.0,3.0,66.7,0.0,1.0,0.0,293729.0,173955.0,2100.0,167519.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90247214,,16925.0,16925.0,16925.0, 60 months,14.49,398.13,C,C4,Operations Manger,2 years,RENT,86000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90247214,,credit_card,Credit card refinancing,890xx,NV,23.65,0.0,Sep-2003,720.0,724.0,0.0,37.0,93.0,10.0,1.0,3211.0,19.5,29.0,f,10156.74,10156.74,11596.71,11596.71,6768.26,4828.45,0.0,0.0,0.0,Mar-2019,398.13,Apr-2019,Mar-2019,659.0,655.0,0.0,79.0,1.0,Individual,,,,0.0,0.0,59047.0,1.0,2.0,1.0,4.0,2.0,55836.0,47.0,0.0,3.0,2997.0,38.0,16500.0,0.0,2.0,1.0,7.0,5905.0,4803.0,38.4,0.0,0.0,141.0,156.0,20.0,2.0,0.0,21.0,,8.0,37.0,1.0,1.0,2.0,3.0,5.0,12.0,8.0,16.0,2.0,10.0,0.0,0.0,0.0,1.0,93.1,33.3,1.0,0.0,90112.0,59047.0,7800.0,73612.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240045,,28000.0,28000.0,28000.0, 36 months,15.59,978.74,C,C5,Payroll Director,10+ years,RENT,100000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240045,,debt_consolidation,Debt consolidation,305xx,GA,18.06,0.0,Jul-1993,665.0,669.0,0.0,67.0,26.0,8.0,2.0,11305.0,34.5,22.0,f,0.0,0.0,33266.2842289307,33266.28,28000.0,5266.28,0.0,0.0,0.0,Apr-2018,16651.95,,Mar-2019,759.0,755.0,0.0,67.0,1.0,Individual,,,,0.0,0.0,73434.0,0.0,3.0,2.0,3.0,7.0,62129.0,78.0,1.0,2.0,4278.0,57.0,32800.0,1.0,1.0,1.0,5.0,9179.0,13895.0,44.9,0.0,0.0,128.0,278.0,7.0,7.0,0.0,7.0,67.0,7.0,67.0,4.0,3.0,3.0,3.0,6.0,11.0,5.0,11.0,3.0,8.0,0.0,0.0,0.0,3.0,72.7,0.0,0.0,2.0,105324.0,73434.0,25200.0,72524.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90119696,,28000.0,28000.0,28000.0, 60 months,9.49,587.92,B,B2,Sr Support Manager,1 year,MORTGAGE,130000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90119696,,home_improvement,Home improvement,980xx,WA,4.32,0.0,Mar-1994,735.0,739.0,1.0,,,8.0,0.0,26530.0,33.8,38.0,f,0.0,0.0,32624.8301651287,32624.83,28000.0,4624.83,0.0,0.0,0.0,Dec-2018,15257.67,,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,373513.0,0.0,0.0,0.0,1.0,14.0,0.0,,1.0,2.0,11266.0,34.0,78600.0,0.0,7.0,2.0,3.0,46689.0,18522.0,54.4,0.0,0.0,192.0,270.0,8.0,8.0,2.0,8.0,,5.0,,0.0,2.0,5.0,3.0,17.0,9.0,7.0,26.0,5.0,8.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,443984.0,26530.0,40600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90140001,,35000.0,35000.0,35000.0, 60 months,21.49,956.55,D,D5,STAFF CHAPLAIN,< 1 year,RENT,72000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90140001,,major_purchase,Major purchase,352xx,AL,16.63,0.0,Oct-2006,675.0,679.0,0.0,79.0,,5.0,0.0,16267.0,49.1,16.0,f,0.0,0.0,6394.77,6394.77,1007.1,1758.08,0.0,3629.59,653.3261999915001,Jan-2017,956.55,,Jul-2017,559.0,555.0,0.0,,1.0,Individual,,,,0.0,118.0,45137.0,1.0,1.0,0.0,0.0,26.0,28870.0,,1.0,2.0,8299.0,49.0,33100.0,0.0,1.0,1.0,2.0,9027.0,16833.0,49.1,0.0,0.0,102.0,119.0,6.0,6.0,0.0,6.0,79.0,7.0,79.0,0.0,4.0,4.0,4.0,9.0,5.0,4.0,10.0,4.0,5.0,0.0,0.0,0.0,1.0,93.8,25.0,0.0,0.0,75499.0,45137.0,33100.0,42399.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90276270,,12800.0,12800.0,12800.0, 60 months,17.99,324.97,D,D2,Human Resouces Technician ,3 years,RENT,60500.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90276270,,debt_consolidation,Debt consolidation,952xx,CA,31.38,0.0,Feb-2007,690.0,694.0,1.0,,,15.0,0.0,11871.0,59.4,39.0,f,8010.0,8010.0,9411.34,9411.34,4790.0,4621.34,0.0,0.0,0.0,Mar-2019,324.97,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,65058.0,2.0,7.0,1.0,5.0,5.0,53187.0,58.0,1.0,2.0,3787.0,59.0,20000.0,5.0,13.0,1.0,7.0,4647.0,2930.0,77.3,0.0,0.0,115.0,114.0,5.0,5.0,0.0,22.0,,5.0,,0.0,4.0,5.0,4.0,6.0,28.0,8.0,11.0,5.0,15.0,0.0,0.0,0.0,2.0,100.0,75.0,0.0,0.0,97076.0,65058.0,12900.0,77076.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90403513,,35000.0,35000.0,35000.0, 36 months,13.99,1196.05,C,C3,Locomotive engineer,10+ years,RENT,127000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90403513,,debt_consolidation,Debt consolidation,986xx,WA,10.12,0.0,Nov-1995,675.0,679.0,0.0,39.0,,12.0,0.0,23062.0,83.3,26.0,f,0.0,0.0,4933.81,4933.81,3207.58,1726.23,0.0,0.0,0.0,Feb-2017,1196.05,,Jun-2017,539.0,535.0,0.0,39.0,1.0,Individual,,,,0.0,0.0,48987.0,2.0,2.0,2.0,3.0,6.0,25925.0,94.0,1.0,2.0,7442.0,89.0,27700.0,1.0,11.0,0.0,5.0,4899.0,90.0,99.3,0.0,0.0,131.0,250.0,12.0,6.0,2.0,12.0,,13.0,,1.0,4.0,6.0,5.0,7.0,9.0,10.0,15.0,6.0,12.0,0.0,0.0,0.0,3.0,96.2,100.0,0.0,0.0,55342.0,48987.0,12000.0,27642.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90099481,,30000.0,30000.0,30000.0, 36 months,15.59,1048.65,C,C5,Aircraft Engine Mechanic ,10+ years,RENT,85000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90099481,,debt_consolidation,Debt consolidation,105xx,NY,12.27,0.0,Sep-1996,670.0,674.0,0.0,,,10.0,0.0,20216.0,87.5,17.0,f,6979.49,6979.49,30384.87,30384.87,23020.51,7364.36,0.0,0.0,0.0,Mar-2019,1048.65,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,54.0,28861.0,2.0,1.0,0.0,1.0,16.0,8645.0,79.0,3.0,8.0,9532.0,85.0,23100.0,0.0,0.0,1.0,9.0,3207.0,977.0,94.4,0.0,0.0,87.0,240.0,6.0,6.0,2.0,6.0,,10.0,,0.0,4.0,7.0,5.0,6.0,2.0,9.0,13.0,7.0,10.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,34100.0,28861.0,17500.0,11000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90250005,,8000.0,8000.0,8000.0, 36 months,12.79,268.75,C,C1,Payroll Specialist,1 year,MORTGAGE,63000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90250005,,debt_consolidation,Debt consolidation,980xx,WA,19.2,0.0,Sep-1999,665.0,669.0,1.0,45.0,62.0,14.0,1.0,10474.0,59.2,34.0,f,0.0,0.0,8648.1230267153,8648.12,8000.0,648.12,0.0,0.0,0.0,Jun-2017,6772.55,,Jan-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,20561.0,0.0,3.0,0.0,7.0,16.0,10087.0,43.0,1.0,4.0,3793.0,50.0,17700.0,2.0,1.0,1.0,11.0,1869.0,310.0,96.7,0.0,0.0,201.0,204.0,11.0,11.0,1.0,13.0,45.0,3.0,45.0,0.0,3.0,6.0,4.0,11.0,11.0,11.0,22.0,6.0,13.0,0.0,0.0,0.0,1.0,93.5,100.0,1.0,0.0,41121.0,20561.0,9500.0,23421.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89866897,,21000.0,21000.0,21000.0, 60 months,10.49,451.27,B,B3,Radiology Directir,2 years,RENT,123600.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89866897,,debt_consolidation,Debt consolidation,750xx,TX,21.03,4.0,May-1987,685.0,689.0,0.0,18.0,,7.0,0.0,13490.0,75.8,28.0,f,11863.02,11863.02,13427.95,13427.95,9136.98,4290.97,0.0,0.0,0.0,Mar-2019,451.27,Apr-2019,Mar-2019,664.0,660.0,0.0,41.0,1.0,Individual,,,,0.0,0.0,51110.0,0.0,4.0,0.0,1.0,24.0,37620.0,50.0,0.0,0.0,13157.0,55.0,17800.0,2.0,0.0,1.0,1.0,7301.0,1523.0,89.6,0.0,0.0,105.0,183.0,26.0,24.0,4.0,26.0,30.0,0.0,19.0,2.0,2.0,3.0,2.0,13.0,5.0,3.0,17.0,3.0,7.0,0.0,0.0,0.0,0.0,67.9,50.0,0.0,0.0,93826.0,51110.0,14700.0,76026.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90395032,,10000.0,10000.0,10000.0, 60 months,18.99,259.36,D,D3,Account Manager,3 years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90395032,,debt_consolidation,Debt consolidation,927xx,CA,10.04,1.0,May-2005,665.0,669.0,1.0,11.0,,12.0,0.0,24082.0,52.2,15.0,f,6315.35,6315.35,7526.71,7526.71,3684.65,3842.06,0.0,0.0,0.0,Mar-2019,259.36,Apr-2019,Mar-2019,589.0,585.0,0.0,53.0,1.0,Joint App,160000.0,8.46,Not Verified,0.0,829.0,502323.0,2.0,1.0,0.0,2.0,17.0,19424.0,80.0,3.0,8.0,4393.0,62.0,46100.0,1.0,0.0,3.0,11.0,41860.0,15261.0,38.2,0.0,0.0,133.0,136.0,2.0,2.0,1.0,2.0,,4.0,11.0,0.0,4.0,6.0,6.0,6.0,4.0,10.0,10.0,6.0,12.0,0.0,0.0,0.0,3.0,86.7,33.3,0.0,0.0,536876.0,43506.0,24700.0,24380.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90298490,,21000.0,21000.0,21000.0, 60 months,8.99,435.83,B,B1,EVP,< 1 year,MORTGAGE,108000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90298490,,credit_card,Credit card refinancing,751xx,TX,17.97,0.0,Sep-1991,750.0,754.0,0.0,,,11.0,0.0,46374.0,54.2,29.0,f,12016.25,12016.25,12660.04,12660.04,8983.75,3676.29,0.0,0.0,0.0,Mar-2019,435.83,Apr-2019,Mar-2019,834.0,830.0,0.0,,1.0,Individual,,,,0.0,0.0,277090.0,0.0,1.0,0.0,0.0,35.0,10343.0,48.0,0.0,1.0,19620.0,53.0,85600.0,0.0,5.0,0.0,1.0,25190.0,29426.0,61.1,0.0,0.0,156.0,300.0,18.0,18.0,3.0,18.0,,17.0,,0.0,7.0,8.0,7.0,9.0,9.0,9.0,17.0,8.0,11.0,0.0,0.0,0.0,0.0,100.0,42.9,0.0,0.0,377710.0,56717.0,75600.0,21527.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90246319,,18000.0,18000.0,18000.0, 60 months,9.49,377.95,B,B2,Quantitative Analyst,< 1 year,RENT,130000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90246319,,debt_consolidation,Debt consolidation,114xx,NY,20.15,0.0,Aug-2004,735.0,739.0,0.0,27.0,,15.0,0.0,13665.0,37.1,31.0,f,0.0,0.0,19782.5210671423,19782.52,18000.0,1782.52,0.0,0.0,0.0,Dec-2017,14070.84,,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,89506.0,0.0,6.0,1.0,2.0,12.0,75841.0,59.0,0.0,0.0,5708.0,52.0,36800.0,2.0,0.0,4.0,2.0,5967.0,18433.0,40.9,0.0,0.0,97.0,145.0,27.0,12.0,0.0,27.0,33.0,3.0,27.0,0.0,6.0,8.0,6.0,9.0,16.0,9.0,15.0,8.0,15.0,0.0,0.0,0.0,1.0,92.9,16.7,0.0,0.0,153435.0,89506.0,31200.0,116635.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90328998,,25000.0,25000.0,25000.0, 60 months,9.49,524.93,B,B2,Senior Consultant,10+ years,MORTGAGE,120000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90328998,,debt_consolidation,Debt consolidation,852xx,AZ,12.69,0.0,Mar-2004,760.0,764.0,0.0,,,10.0,0.0,13445.0,32.9,31.0,f,14381.15,14381.15,15209.79,15209.79,10618.85,4590.94,0.0,0.0,0.0,Mar-2019,524.93,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,327572.0,1.0,2.0,1.0,5.0,9.0,43509.0,79.0,0.0,1.0,6954.0,59.0,40900.0,0.0,7.0,1.0,7.0,32757.0,19255.0,41.1,0.0,0.0,129.0,150.0,22.0,2.0,5.0,22.0,,5.0,,0.0,2.0,2.0,3.0,6.0,13.0,6.0,13.0,2.0,10.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,378556.0,56954.0,32700.0,55415.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90084633,,36000.0,36000.0,36000.0, 60 months,10.99,782.55,B,B4,System Analyst,2 years,MORTGAGE,106000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90084633,,debt_consolidation,Debt consolidation,640xx,MO,22.96,0.0,May-1995,725.0,729.0,1.0,,,20.0,0.0,24443.0,38.2,47.0,f,0.0,0.0,17943.7,17943.7,11535.29,6408.41,0.0,0.0,0.0,Sep-2018,782.55,,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,243144.0,2.0,2.0,1.0,2.0,5.0,50634.0,82.0,2.0,3.0,7569.0,60.0,64000.0,0.0,0.0,1.0,5.0,12797.0,31147.0,36.6,0.0,0.0,180.0,256.0,4.0,4.0,4.0,50.0,,4.0,,0.0,7.0,14.0,7.0,12.0,13.0,17.0,30.0,14.0,20.0,0.0,0.0,0.0,3.0,100.0,71.4,0.0,0.0,308227.0,75077.0,49100.0,61497.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Feb-2019,ACTIVE,Feb-2019,11531.0,45.0,24.0 +90298474,,12000.0,12000.0,12000.0, 60 months,9.49,251.97,B,B2,Customer Success Manager,< 1 year,OWN,57000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90298474,,debt_consolidation,Debt consolidation,601xx,IL,12.77,0.0,Aug-2008,755.0,759.0,0.0,,,8.0,0.0,11725.0,42.2,14.0,f,6902.84,6902.84,7300.8,7300.8,5097.16,2203.64,0.0,0.0,0.0,Mar-2019,251.97,Apr-2019,Mar-2019,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,199893.0,0.0,1.0,0.0,0.0,61.0,6202.0,27.0,1.0,1.0,8888.0,35.0,27800.0,0.0,0.0,1.0,2.0,24987.0,10075.0,53.8,0.0,0.0,97.0,93.0,11.0,11.0,1.0,11.0,,11.0,,0.0,3.0,3.0,3.0,3.0,7.0,6.0,6.0,3.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,237377.0,17927.0,21800.0,23118.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90158397,,18000.0,18000.0,18000.0, 60 months,10.99,391.28,B,B4,Public works,10+ years,MORTGAGE,45000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90158397,,debt_consolidation,Debt consolidation,807xx,CO,31.17,0.0,Nov-1987,710.0,714.0,0.0,,,8.0,0.0,22229.0,75.1,23.0,f,0.0,0.0,21583.8245365722,21583.82,18000.0,3583.82,0.0,0.0,0.0,Dec-2018,11812.81,,Dec-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,155985.0,0.0,1.0,1.0,2.0,11.0,31252.0,89.0,0.0,0.0,13907.0,83.0,29600.0,0.0,0.0,3.0,2.0,19498.0,4276.0,81.5,0.0,0.0,132.0,346.0,33.0,11.0,4.0,33.0,,11.0,,0.0,4.0,5.0,4.0,9.0,5.0,6.0,14.0,5.0,8.0,0.0,0.0,0.0,1.0,100.0,75.0,0.0,0.0,181561.0,53481.0,23100.0,35000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90127883,,14400.0,14400.0,14400.0, 60 months,8.99,298.86,B,B1,Paralegal,10+ years,RENT,55000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90127883,,debt_consolidation,Debt consolidation,968xx,HI,23.13,0.0,Jan-2001,695.0,699.0,1.0,25.0,,12.0,0.0,11642.0,43.8,68.0,f,0.0,0.0,5959.22,5959.22,4104.06,1855.16,0.0,0.0,0.0,Jun-2018,298.86,,Mar-2019,539.0,535.0,0.0,38.0,1.0,Individual,,,,0.0,0.0,148142.0,1.0,4.0,2.0,3.0,4.0,136500.0,49.0,4.0,10.0,2614.0,47.0,26600.0,1.0,2.0,5.0,13.0,12345.0,10362.0,46.3,0.0,0.0,136.0,188.0,8.0,4.0,0.0,10.0,,2.0,38.0,4.0,5.0,7.0,6.0,10.0,41.0,8.0,27.0,7.0,12.0,0.0,0.0,0.0,6.0,76.5,33.3,0.0,0.0,180542.0,148142.0,19300.0,153942.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90009215,,14000.0,14000.0,14000.0, 36 months,14.49,481.83,C,C4,finance manager,8 years,MORTGAGE,160000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90009215,,debt_consolidation,Debt consolidation,608xx,IL,18.89,2.0,May-1996,670.0,674.0,1.0,14.0,,17.0,0.0,27819.0,72.3,34.0,f,0.0,0.0,17060.1816932186,17060.18,14000.0,3060.18,0.0,0.0,0.0,Dec-2018,5025.7,,Mar-2019,739.0,735.0,0.0,14.0,1.0,Individual,,,,0.0,0.0,268629.0,1.0,6.0,0.0,0.0,27.0,18004.0,37.0,1.0,1.0,12864.0,59.0,38500.0,0.0,3.0,2.0,1.0,15802.0,4181.0,84.5,0.0,0.0,244.0,141.0,1.0,1.0,5.0,1.0,20.0,2.0,20.0,0.0,6.0,7.0,6.0,7.0,15.0,9.0,12.0,7.0,17.0,0.0,0.0,1.0,1.0,91.2,83.3,0.0,0.0,401732.0,61730.0,27000.0,48694.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90239754,,15000.0,15000.0,15000.0, 36 months,15.59,524.33,C,C5,Human Resources Specialist,10+ years,RENT,46000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90239754,,debt_consolidation,Debt consolidation,664xx,KS,22.12,0.0,Mar-1999,660.0,664.0,2.0,27.0,39.0,13.0,2.0,5660.0,52.4,35.0,f,0.0,0.0,17915.2567507435,17915.26,15000.0,2915.26,0.0,0.0,0.0,Apr-2018,8975.67,,Apr-2018,674.0,670.0,0.0,27.0,1.0,Individual,,,,0.0,311.0,29300.0,3.0,6.0,3.0,4.0,5.0,23640.0,88.0,3.0,8.0,3610.0,69.0,10800.0,2.0,2.0,7.0,12.0,2442.0,3639.0,52.1,0.0,0.0,148.0,210.0,6.0,5.0,2.0,16.0,,4.0,,8.0,2.0,4.0,3.0,8.0,15.0,7.0,18.0,4.0,13.0,0.0,0.0,0.0,6.0,100.0,0.0,1.0,1.0,41094.0,29300.0,7600.0,30294.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89846231,,10000.0,10000.0,10000.0, 60 months,11.49,219.88,B,B5,Buyer,< 1 year,RENT,75000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89846231,,debt_consolidation,Debt consolidation,905xx,CA,18.51,1.0,Nov-1993,685.0,689.0,0.0,19.0,,7.0,0.0,10489.0,66.8,15.0,f,5873.73,5873.73,6407.19,6407.19,4126.27,2280.92,0.0,0.0,0.0,Mar-2019,219.88,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,38668.0,0.0,2.0,0.0,1.0,22.0,28179.0,69.0,1.0,1.0,7173.0,69.0,15700.0,0.0,0.0,0.0,2.0,5524.0,1240.0,86.8,0.0,0.0,151.0,274.0,8.0,8.0,0.0,107.0,,,19.0,0.0,2.0,5.0,2.0,6.0,5.0,5.0,10.0,5.0,7.0,0.0,0.0,0.0,1.0,93.3,50.0,0.0,0.0,56387.0,38668.0,9400.0,40687.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90278015,,24000.0,24000.0,24000.0, 60 months,9.49,503.93,B,B2,Pilot,10+ years,MORTGAGE,180000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90278015,,home_improvement,Home improvement,902xx,CA,15.98,6.0,Apr-2001,705.0,709.0,0.0,12.0,,11.0,0.0,14614.0,47.0,30.0,f,0.0,0.0,25878.2170734512,25878.22,24000.0,1853.02,25.2000005232,0.0,0.0,Aug-2017,21374.48,,Mar-2019,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,800931.0,2.0,5.0,2.0,4.0,2.0,169950.0,86.0,0.0,0.0,7782.0,71.0,31100.0,0.0,2.0,0.0,4.0,72812.0,16493.0,44.3,0.0,0.0,141.0,172.0,25.0,2.0,9.0,25.0,12.0,,12.0,0.0,3.0,4.0,3.0,5.0,9.0,4.0,11.0,4.0,11.0,0.0,0.0,0.0,2.0,73.3,33.3,0.0,0.0,907923.0,185716.0,29600.0,202522.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90384621,,14400.0,14400.0,14400.0, 60 months,9.49,302.36,B,B2,Branch Manager,10+ years,OWN,68000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90384621,,medical,Medical expenses,760xx,TX,25.89,0.0,May-2003,720.0,724.0,1.0,,,19.0,0.0,30551.0,26.2,40.0,f,0.0,0.0,15814.4303444882,15814.43,14400.0,1414.43,0.0,0.0,0.0,Nov-2017,12182.32,,Nov-2017,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,47261.0,3.0,1.0,0.0,0.0,27.0,16710.0,62.0,5.0,6.0,8452.0,34.0,100800.0,1.0,1.0,2.0,6.0,2487.0,45093.0,17.8,0.0,0.0,133.0,160.0,2.0,2.0,3.0,2.0,,0.0,,0.0,5.0,10.0,10.0,15.0,10.0,18.0,27.0,10.0,19.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,0.0,127800.0,47261.0,61000.0,27000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90167766,,15000.0,15000.0,15000.0, 60 months,9.49,314.96,B,B2,Clinical Dietitian,2 years,MORTGAGE,53000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90167766,,credit_card,Credit card refinancing,329xx,FL,28.34,0.0,Jun-1994,770.0,774.0,0.0,65.0,,8.0,0.0,18958.0,20.5,20.0,f,8628.63,8628.63,9125.93,9125.93,6371.37,2754.56,0.0,0.0,0.0,Mar-2019,314.96,Apr-2019,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,157649.0,0.0,2.0,1.0,2.0,11.0,12692.0,40.0,0.0,0.0,9314.0,25.0,92600.0,0.0,8.0,0.0,2.0,19706.0,54723.0,20.2,0.0,0.0,228.0,267.0,37.0,11.0,4.0,95.0,,,,0.0,3.0,4.0,4.0,5.0,9.0,5.0,7.0,4.0,8.0,0.0,0.0,0.0,1.0,95.0,25.0,0.0,0.0,262875.0,31650.0,68600.0,32000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90167921,,29000.0,29000.0,29000.0, 60 months,10.99,630.39,B,B4,,,MORTGAGE,66081.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90167921,,credit_card,Credit card refinancing,890xx,NV,29.51,0.0,Jan-1978,690.0,694.0,0.0,,,17.0,0.0,42944.0,47.5,30.0,f,16945.65,16945.65,18237.04,18237.04,12054.35,6182.69,0.0,0.0,0.0,Mar-2019,630.39,Apr-2019,Mar-2019,819.0,815.0,0.0,,1.0,Individual,,,,0.0,0.0,212363.0,0.0,3.0,0.0,0.0,27.0,36473.0,80.0,0.0,0.0,7403.0,58.0,90500.0,1.0,0.0,1.0,0.0,12492.0,36846.0,53.7,0.0,0.0,159.0,453.0,35.0,27.0,5.0,45.0,,7.0,,0.0,9.0,10.0,10.0,14.0,7.0,12.0,17.0,10.0,17.0,0.0,0.0,0.0,0.0,100.0,50.0,0.0,0.0,278778.0,79431.0,79500.0,45531.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90388599,,10000.0,10000.0,10000.0, 36 months,13.49,339.31,C,C2,Driver,1 year,RENT,30000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90388599,,debt_consolidation,Debt consolidation,902xx,CA,13.49,0.0,Jan-2013,665.0,669.0,1.0,,,11.0,0.0,10477.0,34.1,12.0,f,0.0,0.0,10761.0953361987,10761.1,10000.0,761.1,0.0,0.0,0.0,Jun-2017,6525.56,,Feb-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,10477.0,3.0,0.0,0.0,0.0,,0.0,,3.0,6.0,2013.0,34.0,30700.0,0.0,0.0,1.0,6.0,952.0,13378.0,36.3,0.0,0.0,,44.0,2.0,2.0,0.0,2.0,,2.0,,0.0,8.0,11.0,8.0,8.0,0.0,11.0,12.0,11.0,11.0,0.0,0.0,0.0,3.0,100.0,25.0,0.0,0.0,30700.0,10477.0,21000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89868463,,25000.0,25000.0,25000.0, 36 months,8.59,790.24,A,A5,Counselor ,10+ years,MORTGAGE,90000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89868463,,credit_card,Credit card refinancing,922xx,CA,17.17,0.0,Jan-2003,730.0,734.0,1.0,,35.0,9.0,1.0,13463.0,52.8,23.0,w,0.0,0.0,13301.42,13301.42,7631.18,1839.77,0.0,3830.47,344.7423,Oct-2017,790.24,,Mar-2019,589.0,585.0,0.0,,1.0,Individual,,,,0.0,650.0,218003.0,1.0,2.0,0.0,1.0,17.0,51939.0,82.0,0.0,3.0,1270.0,66.0,25500.0,1.0,7.0,1.0,5.0,24223.0,30.0,97.7,0.0,0.0,138.0,164.0,14.0,2.0,2.0,76.0,,4.0,,0.0,1.0,5.0,1.0,2.0,10.0,6.0,11.0,6.0,9.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,1.0,245427.0,65402.0,1300.0,67927.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90147333,,20000.0,20000.0,19750.0, 36 months,14.49,688.33,C,C4,Engineer,3 years,RENT,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90147333,,debt_consolidation,Debt consolidation,622xx,IL,20.92,0.0,Jul-2004,670.0,674.0,0.0,39.0,,17.0,0.0,8389.0,71.7,26.0,f,3400.0,3357.5,21060.25,20797.0,16600.0,4460.25,0.0,0.0,0.0,Mar-2019,1055.31,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,790.0,76989.0,1.0,10.0,0.0,1.0,17.0,68600.0,109.0,1.0,1.0,3608.0,99.0,11700.0,1.0,1.0,0.0,2.0,4812.0,2149.0,78.9,0.0,0.0,116.0,146.0,1.0,1.0,0.0,1.0,39.0,18.0,39.0,0.0,3.0,5.0,4.0,5.0,14.0,7.0,12.0,5.0,17.0,0.0,0.0,0.0,1.0,92.3,50.0,0.0,0.0,83346.0,76989.0,10200.0,71646.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90106158,,16800.0,16800.0,16800.0, 60 months,10.99,365.19,B,B4,dentist/owner,10+ years,MORTGAGE,150000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90106158,,small_business,Business,038xx,NH,25.25,0.0,Dec-1984,720.0,724.0,0.0,,,14.0,0.0,58178.0,57.5,30.0,w,0.0,0.0,5653.05,5653.05,1297.37,883.51,0.0,3472.17,624.9906,Apr-2017,365.19,,Oct-2017,529.0,525.0,0.0,,1.0,Individual,,,,0.0,0.0,268422.0,0.0,2.0,1.0,2.0,11.0,33324.0,59.0,2.0,3.0,17688.0,58.0,101200.0,1.0,0.0,0.0,5.0,19173.0,40128.0,58.3,0.0,0.0,171.0,381.0,7.0,7.0,1.0,7.0,,19.0,,0.0,9.0,10.0,9.0,13.0,11.0,10.0,18.0,10.0,14.0,0.0,0.0,0.0,3.0,100.0,22.2,0.0,0.0,379802.0,91502.0,96200.0,56602.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90064387,,15000.0,15000.0,15000.0, 60 months,10.49,322.34,B,B3,Owner,10+ years,MORTGAGE,72000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90064387,,home_improvement,Home improvement,956xx,CA,15.92,0.0,Oct-1989,720.0,724.0,0.0,43.0,,6.0,0.0,9138.0,37.8,12.0,f,8719.56,8719.56,9339.12,9339.12,6280.44,3058.68,0.0,0.0,0.0,Mar-2019,322.34,Apr-2019,Mar-2019,734.0,730.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,32149.0,0.0,2.0,1.0,1.0,8.0,23011.0,73.0,1.0,1.0,825.0,58.0,24200.0,1.0,0.0,2.0,2.0,5358.0,775.0,51.6,0.0,0.0,168.0,323.0,7.0,7.0,1.0,25.0,,7.0,,0.0,1.0,3.0,2.0,2.0,5.0,4.0,6.0,3.0,6.0,0.0,0.0,0.0,2.0,90.0,0.0,0.0,0.0,55913.0,32149.0,1600.0,31713.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90397488,,10000.0,10000.0,10000.0, 60 months,19.99,264.89,D,D4,Paraprofessional,10+ years,MORTGAGE,35000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90397488,,debt_consolidation,Debt consolidation,624xx,IL,8.44,0.0,Feb-2001,660.0,664.0,0.0,,75.0,6.0,1.0,7248.0,48.0,11.0,f,0.0,0.0,12694.4237006257,12694.42,10000.0,2694.42,0.0,0.0,0.0,Mar-2018,8432.09,,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,24813.0,0.0,0.0,0.0,0.0,,0.0,,1.0,3.0,4783.0,48.0,15100.0,0.0,0.0,1.0,3.0,4136.0,5946.0,54.6,0.0,0.0,,187.0,10.0,10.0,2.0,10.0,,10.0,,0.0,3.0,4.0,3.0,6.0,0.0,5.0,9.0,4.0,6.0,0.0,0.0,0.0,1.0,100.0,0.0,1.0,0.0,37900.0,7248.0,13100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88947401,,18000.0,18000.0,18000.0, 60 months,9.49,377.95,B,B2,State Prosecutor ,10+ years,MORTGAGE,169000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88947401,,debt_consolidation,Debt consolidation,066xx,CT,28.0,0.0,May-1974,680.0,684.0,4.0,,,22.0,0.0,146992.0,71.0,39.0,f,10354.42,10354.42,10936.83,10936.83,7645.58,3291.25,0.0,0.0,0.0,Mar-2019,377.95,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,427238.0,1.0,2.0,1.0,1.0,7.0,35959.0,82.0,1.0,2.0,15658.0,71.0,207180.0,0.0,1.0,3.0,3.0,20344.0,6888.0,99.0,0.0,0.0,150.0,331.0,1.0,1.0,3.0,15.0,,1.0,,0.0,11.0,15.0,19.0,19.0,7.0,15.0,28.0,16.0,21.0,,0.0,0.0,2.0,100.0,100.0,0.0,0.0,591303.0,128394.0,68880.0,43600.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90098207,,20000.0,20000.0,20000.0, 60 months,10.99,434.75,B,B4,Controller ,< 1 year,MORTGAGE,88000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90098207,,credit_card,Credit card refinancing,970xx,OR,10.64,0.0,Oct-2004,740.0,744.0,0.0,,,9.0,0.0,16497.0,37.2,17.0,f,0.0,0.0,23170.3393819548,23170.34,20000.0,3170.34,0.0,0.0,0.0,May-2018,15357.05,,May-2018,774.0,770.0,0.0,,1.0,Individual,,,,0.0,0.0,280781.0,1.0,1.0,1.0,1.0,1.0,27986.0,100.0,0.0,3.0,9575.0,62.0,44300.0,1.0,1.0,1.0,5.0,31198.0,23303.0,41.4,0.0,0.0,60.0,143.0,20.0,1.0,1.0,20.0,,1.0,,0.0,4.0,4.0,6.0,11.0,3.0,7.0,13.0,4.0,9.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,315766.0,44483.0,39800.0,27986.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90288832,,15650.0,15650.0,15650.0, 60 months,26.49,473.12,F,F2,Manager,10+ years,MORTGAGE,58000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90288832,,debt_consolidation,Debt consolidation,194xx,PA,27.81,0.0,Jul-2002,685.0,689.0,1.0,,83.0,13.0,1.0,8273.0,50.4,29.0,w,0.0,0.0,21591.5002187624,21591.5,15650.0,5941.5,0.0,0.0,0.0,Apr-2018,13571.49,,Apr-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,415.0,249357.0,2.0,5.0,2.0,6.0,5.0,45547.0,78.0,3.0,7.0,685.0,72.0,16400.0,1.0,11.0,4.0,14.0,19181.0,2214.0,32.9,0.0,0.0,170.0,76.0,4.0,4.0,1.0,7.0,,5.0,,0.0,2.0,6.0,2.0,3.0,20.0,7.0,8.0,6.0,13.0,0.0,0.0,0.0,5.0,100.0,50.0,1.0,0.0,275876.0,53820.0,3300.0,58215.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90169797,,27450.0,27450.0,27450.0, 36 months,21.49,1041.1,D,D5,Sr UR RN,6 years,MORTGAGE,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90169797,,debt_consolidation,Debt consolidation,856xx,AZ,15.17,0.0,Jun-2007,705.0,709.0,0.0,41.0,,12.0,0.0,6220.0,35.5,21.0,f,0.0,0.0,36206.4797442109,36206.48,27450.0,8756.48,0.0,0.0,0.0,Oct-2018,12293.95,,Mar-2019,594.0,590.0,0.0,,1.0,Individual,,,,0.0,336.0,169079.0,1.0,2.0,0.0,1.0,13.0,26375.0,60.0,2.0,3.0,3417.0,53.0,17500.0,0.0,0.0,1.0,6.0,15371.0,4035.0,59.7,0.0,0.0,43.0,111.0,2.0,2.0,4.0,2.0,,12.0,41.0,0.0,3.0,4.0,4.0,5.0,2.0,9.0,15.0,4.0,12.0,0.0,0.0,0.0,2.0,90.5,66.7,0.0,0.0,211158.0,32595.0,10000.0,44033.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90186012,,17500.0,17500.0,17500.0, 60 months,10.99,380.41,B,B4,Fiscal Agent,10+ years,OWN,65250.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90186012,,credit_card,Credit card refinancing,191xx,PA,11.26,0.0,Oct-2000,715.0,719.0,0.0,36.0,,10.0,0.0,12598.0,44.4,25.0,f,10226.87,10226.87,11021.21,11021.21,7273.13,3748.08,0.0,0.0,0.0,Mar-2019,380.41,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,130058.0,0.0,1.0,0.0,0.0,75.0,61279.0,,1.0,2.0,5864.0,44.0,28400.0,0.0,0.0,1.0,2.0,16257.0,14535.0,43.2,0.0,0.0,191.0,178.0,9.0,9.0,5.0,9.0,,9.0,,0.0,4.0,5.0,5.0,8.0,6.0,8.0,14.0,5.0,10.0,0.0,0.0,0.0,1.0,96.0,20.0,0.0,0.0,178081.0,73877.0,25600.0,47181.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189463,,12000.0,12000.0,12000.0, 60 months,19.99,317.86,D,D4,Test Engineer,10+ years,RENT,55000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189463,,debt_consolidation,Debt consolidation,469xx,IN,25.7,0.0,Dec-2000,660.0,664.0,0.0,,,9.0,0.0,8754.0,77.5,24.0,f,7647.64,7647.64,9209.74,9209.74,4352.36,4857.38,0.0,0.0,0.0,Mar-2019,317.86,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,48724.0,1.0,5.0,2.0,4.0,6.0,39970.0,85.0,1.0,3.0,3552.0,84.0,11300.0,4.0,1.0,2.0,7.0,5414.0,0.0,100.1,0.0,0.0,189.0,54.0,10.0,6.0,0.0,16.0,,10.0,,0.0,3.0,4.0,3.0,4.0,19.0,4.0,5.0,4.0,9.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,58296.0,48724.0,5300.0,46996.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90391784,,10000.0,10000.0,10000.0, 36 months,10.49,324.98,B,B3,Crane Operator Assistant,10+ years,MORTGAGE,62000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90391784,,debt_consolidation,Debt consolidation,061xx,CT,9.5,0.0,Sep-1992,675.0,679.0,0.0,79.0,78.0,16.0,1.0,8056.0,26.2,53.0,w,0.0,0.0,11531.6914976088,11531.69,10000.0,1531.69,0.0,0.0,0.0,Nov-2018,3746.74,,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,20685.0,3.0,1.0,0.0,2.0,13.0,3599.0,72.0,6.0,7.0,4391.0,33.0,30700.0,0.0,1.0,4.0,10.0,1293.0,9741.0,43.7,0.0,0.0,145.0,288.0,0.0,0.0,1.0,2.0,,7.0,,0.0,4.0,8.0,7.0,20.0,18.0,14.0,34.0,8.0,16.0,0.0,0.0,0.0,7.0,95.3,14.3,1.0,0.0,45700.0,11655.0,17300.0,5000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90130176,,40000.0,40000.0,40000.0, 60 months,19.99,1059.54,D,D4,Air traffic Controller,10+ years,RENT,160000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90130176,,debt_consolidation,Debt consolidation,334xx,FL,16.13,0.0,Jul-2002,720.0,724.0,0.0,43.0,,9.0,0.0,17817.0,46.4,32.0,f,0.0,0.0,40943.4900000244,40943.49,40000.0,943.49,0.0,0.0,0.0,Dec-2016,6995.01,,Mar-2019,719.0,715.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,136206.0,1.0,6.0,2.0,3.0,10.0,118389.0,87.0,1.0,1.0,15313.0,78.0,38400.0,0.0,5.0,0.0,4.0,15134.0,20583.0,46.4,0.0,0.0,156.0,170.0,6.0,6.0,2.0,6.0,,,,1.0,2.0,2.0,3.0,5.0,25.0,3.0,5.0,2.0,9.0,0.0,0.0,0.0,3.0,96.9,0.0,0.0,0.0,174364.0,136206.0,38400.0,135964.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90239801,,30000.0,30000.0,30000.0, 36 months,15.59,1048.65,C,C5,RN,10+ years,RENT,180000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90239801,,house,Home buying,301xx,GA,11.69,0.0,Nov-1992,675.0,679.0,0.0,,,22.0,0.0,53665.0,73.7,37.0,f,0.0,0.0,32849.5350450611,32849.54,30000.0,2849.54,0.0,0.0,0.0,Apr-2018,48.47,,Mar-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,53665.0,0.0,0.0,0.0,0.0,81.0,0.0,,2.0,6.0,11917.0,74.0,72801.0,0.0,0.0,2.0,6.0,2683.0,4571.0,88.5,0.0,0.0,156.0,286.0,10.0,10.0,2.0,10.0,,0.0,,0.0,6.0,18.0,6.0,12.0,2.0,22.0,33.0,18.0,22.0,0.0,0.0,0.0,2.0,100.0,66.7,0.0,0.0,72801.0,53665.0,39600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90306865,,30000.0,30000.0,30000.0, 60 months,9.49,629.91,B,B2,MRI Supervisor Evenings ,1 year,MORTGAGE,125000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90306865,,other,Other,068xx,CT,18.87,1.0,May-1999,730.0,734.0,1.0,12.0,,15.0,0.0,154559.0,54.2,28.0,f,17257.58,17257.58,18227.85,18227.85,12742.42,5485.43,0.0,0.0,0.0,Mar-2019,629.91,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,422240.0,1.0,7.0,0.0,3.0,14.0,144956.0,89.0,1.0,2.0,14222.0,81.0,201800.0,0.0,0.0,1.0,5.0,28149.0,19145.0,59.4,0.0,0.0,170.0,208.0,5.0,5.0,3.0,5.0,,1.0,,0.0,3.0,4.0,4.0,4.0,15.0,7.0,10.0,4.0,15.0,0.0,0.0,0.0,1.0,96.4,50.0,0.0,0.0,552595.0,299515.0,47200.0,162558.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249713,,40000.0,40000.0,39900.0, 60 months,15.59,964.03,C,C5,Sales,< 1 year,MORTGAGE,168000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249713,,other,Other,380xx,TN,13.11,0.0,Mar-2002,710.0,714.0,1.0,72.0,,17.0,0.0,50802.0,48.5,44.0,f,0.0,0.0,52072.4094978851,51942.23,40000.0,12072.41,0.0,0.0,0.0,Feb-2019,26038.24,,Feb-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,341412.0,1.0,1.0,0.0,1.0,23.0,38084.0,,3.0,6.0,15233.0,49.0,104800.0,0.0,0.0,1.0,7.0,21338.0,26788.0,46.7,0.0,0.0,67.0,174.0,4.0,4.0,4.0,4.0,,4.0,,0.0,4.0,8.0,8.0,18.0,2.0,15.0,38.0,8.0,17.0,0.0,0.0,0.0,3.0,97.7,37.5,0.0,0.0,435977.0,88886.0,50300.0,55384.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90230276,,20000.0,20000.0,20000.0, 60 months,21.49,546.6,D,D5,Maintenance Supervisor,10+ years,MORTGAGE,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90230276,,debt_consolidation,Debt consolidation,238xx,VA,25.23,1.0,Jul-1998,670.0,674.0,1.0,11.0,,9.0,0.0,19185.0,78.3,21.0,f,0.0,0.0,28569.5393148935,28569.54,20000.0,8569.54,0.0,0.0,0.0,Jan-2019,14238.56,,Jan-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,188888.0,1.0,2.0,1.0,1.0,9.0,19758.0,56.0,1.0,2.0,9897.0,68.0,24500.0,0.0,3.0,1.0,4.0,20988.0,0.0,100.4,0.0,0.0,130.0,218.0,3.0,3.0,2.0,22.0,,3.0,11.0,0.0,2.0,4.0,2.0,5.0,7.0,6.0,12.0,4.0,9.0,0.0,0.0,0.0,2.0,95.2,100.0,0.0,0.0,232376.0,38943.0,15000.0,54754.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90270467,,20000.0,20000.0,20000.0, 36 months,16.99,712.96,D,D1,Dealer,6 years,MORTGAGE,81000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90270467,,home_improvement,Home improvement,891xx,NV,9.97,2.0,May-1998,660.0,664.0,1.0,20.0,81.0,13.0,1.0,6053.0,58.2,18.0,f,0.0,0.0,2258.55,2258.55,1307.73,950.82,0.0,0.0,0.0,Jan-2017,712.96,,Feb-2019,549.0,545.0,0.0,,1.0,Individual,,,,0.0,0.0,299993.0,3.0,2.0,1.0,2.0,1.0,7567.0,84.0,1.0,2.0,2053.0,70.0,10400.0,0.0,1.0,2.0,5.0,29999.0,1047.0,84.4,0.0,0.0,111.0,220.0,6.0,1.0,2.0,6.0,20.0,6.0,20.0,0.0,4.0,5.0,7.0,9.0,3.0,10.0,13.0,5.0,13.0,0.0,0.0,0.0,3.0,82.4,60.0,1.0,0.0,307152.0,13620.0,6700.0,9030.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229625,,19200.0,19200.0,19200.0, 60 months,12.79,434.8,C,C1,Director of Development and Construction,3 years,MORTGAGE,136600.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229625,,credit_card,Credit card refinancing,750xx,TX,18.14,0.0,Feb-1985,740.0,744.0,2.0,37.0,,12.0,0.0,15366.0,52.8,29.0,f,11426.87,11426.87,12595.56,12595.56,7773.13,4822.43,0.0,0.0,0.0,Mar-2019,434.8,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,268512.0,0.0,3.0,1.0,3.0,9.0,32106.0,78.0,2.0,2.0,7853.0,68.0,29100.0,0.0,0.0,4.0,5.0,22376.0,4841.0,62.8,0.0,0.0,152.0,379.0,11.0,9.0,5.0,12.0,37.0,1.0,37.0,0.0,3.0,6.0,4.0,7.0,7.0,8.0,17.0,6.0,12.0,0.0,0.0,0.0,3.0,93.1,25.0,0.0,0.0,315600.0,47472.0,13000.0,41000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90104437,,28000.0,28000.0,28000.0, 36 months,16.99,998.14,D,D1,Business Development Manager,10+ years,OWN,119900.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90104437,,credit_card,Credit card refinancing,296xx,SC,19.41,0.0,Jun-2001,675.0,679.0,1.0,,,13.0,0.0,24685.0,68.2,22.0,f,0.0,0.0,31967.5474986415,31967.55,28000.0,3967.55,0.0,0.0,0.0,Sep-2017,22012.58,,Sep-2017,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,264967.0,6.0,2.0,2.0,3.0,4.0,64395.0,96.0,3.0,4.0,5569.0,80.0,36200.0,2.0,2.0,3.0,8.0,24088.0,8232.0,67.3,0.0,0.0,143.0,183.0,1.0,1.0,1.0,1.0,,4.0,,0.0,5.0,7.0,8.0,13.0,6.0,10.0,15.0,7.0,13.0,0.0,0.0,0.0,6.0,100.0,50.0,0.0,0.0,279596.0,89080.0,25200.0,67396.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90076386,,22000.0,22000.0,21750.0, 36 months,15.59,769.01,C,C5,Investor Relations ,2 years,RENT,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90076386,,credit_card,Credit card refinancing,073xx,NJ,14.51,0.0,Aug-2007,660.0,664.0,0.0,35.0,,21.0,0.0,20651.0,58.8,35.0,f,0.0,0.0,25815.9570690857,25522.59,22000.0,3815.96,0.0,0.0,0.0,Feb-2018,13297.01,,Mar-2019,734.0,730.0,0.0,35.0,1.0,Individual,,,,0.0,175.0,54518.0,2.0,9.0,0.0,0.0,60.0,33867.0,109.0,4.0,5.0,7796.0,83.0,35100.0,0.0,0.0,1.0,5.0,2596.0,3084.0,82.4,0.0,0.0,109.0,104.0,4.0,4.0,0.0,7.0,,9.0,,1.0,4.0,10.0,5.0,7.0,21.0,12.0,14.0,10.0,21.0,0.0,0.0,0.0,4.0,97.1,60.0,0.0,0.0,66100.0,54518.0,17500.0,31000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90120372,,30000.0,30000.0,30000.0, 36 months,19.99,1114.76,D,D4,Faculty Member,4 years,RENT,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90120372,,credit_card,Credit card refinancing,606xx,IL,19.19,1.0,Dec-2007,675.0,679.0,0.0,20.0,,16.0,0.0,25785.0,86.8,27.0,f,7308.07,7308.07,32294.72,32294.72,22691.93,9602.79,0.0,0.0,0.0,Mar-2019,1114.76,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,53119.0,0.0,11.0,0.0,0.0,27.0,27310.0,78.0,0.0,0.0,12673.0,79.0,29700.0,0.0,0.0,0.0,0.0,3320.0,3915.0,86.8,0.0,0.0,92.0,105.0,32.0,27.0,0.0,32.0,20.0,,20.0,0.0,3.0,3.0,3.0,7.0,13.0,3.0,10.0,3.0,16.0,0.0,0.0,0.0,0.0,96.3,100.0,0.0,0.0,67184.0,53119.0,29700.0,35140.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90391734,,20000.0,20000.0,20000.0, 60 months,13.49,460.1,C,C2,Case Worker,3 years,MORTGAGE,49188.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90391734,,debt_consolidation,Debt consolidation,606xx,IL,21.66,0.0,Sep-1997,700.0,704.0,1.0,36.0,,20.0,0.0,6493.0,20.7,34.0,f,11666.28,11666.28,13706.27,13706.27,8333.72,5372.55,0.0,0.0,0.0,Mar-2019,460.1,Apr-2019,Mar-2019,679.0,675.0,0.0,36.0,1.0,Individual,,,,0.0,0.0,159464.0,0.0,2.0,0.0,0.0,40.0,63545.0,49.0,1.0,1.0,2390.0,31.0,32200.0,0.0,0.0,1.0,1.0,10631.0,5497.0,39.6,0.0,0.0,132.0,228.0,9.0,9.0,1.0,49.0,36.0,3.0,36.0,1.0,3.0,9.0,3.0,5.0,11.0,17.0,22.0,9.0,20.0,0.0,0.0,0.0,1.0,93.9,0.0,0.0,0.0,220171.0,70038.0,9100.0,72971.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90400857,,24000.0,24000.0,23750.0, 36 months,13.99,820.15,C,C3,Air Traffic Controller,10+ years,MORTGAGE,136799.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90400857,,debt_consolidation,Debt consolidation,805xx,CO,23.25,0.0,May-1999,660.0,664.0,0.0,,,20.0,0.0,57198.0,60.4,48.0,f,4726.05,4676.82,24473.93,24218.99,19273.95,5199.98,0.0,0.0,0.0,Mar-2019,820.15,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,0.0,555173.0,6.0,3.0,4.0,5.0,1.0,54589.0,93.0,4.0,5.0,13211.0,73.0,94700.0,1.0,0.0,6.0,12.0,27759.0,28807.0,60.3,0.0,0.0,124.0,208.0,1.0,1.0,4.0,1.0,,5.0,,0.0,6.0,10.0,11.0,18.0,15.0,16.0,29.0,10.0,20.0,0.0,0.0,0.0,10.0,100.0,45.5,0.0,0.0,601689.0,111787.0,72500.0,58807.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90296109,,22075.0,22075.0,22075.0, 60 months,15.59,532.03,C,C5,Project Manager,9 years,OWN,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90296109,,home_improvement,Home improvement,480xx,MI,8.78,1.0,Oct-2003,670.0,674.0,0.0,11.0,,5.0,0.0,2939.0,62.5,12.0,f,0.0,0.0,28137.144335327797,28137.14,22075.0,6035.54,26.600000030100002,0.0,0.0,Oct-2018,15892.97,,Oct-2018,704.0,700.0,0.0,11.0,1.0,Individual,,,,0.0,0.0,4754.0,0.0,1.0,0.0,1.0,18.0,1815.0,24.0,0.0,0.0,1606.0,38.0,4700.0,0.0,2.0,0.0,1.0,951.0,1454.0,65.4,0.0,0.0,155.0,66.0,32.0,18.0,0.0,32.0,,18.0,11.0,0.0,2.0,3.0,3.0,3.0,8.0,4.0,4.0,3.0,5.0,0.0,0.0,1.0,0.0,91.7,33.3,0.0,0.0,12398.0,4754.0,4200.0,7698.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90100160,,10000.0,10000.0,10000.0, 36 months,15.59,349.55,C,C5,SAFETY DIRECTOR,9 years,RENT,62000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90100160,,debt_consolidation,Debt consolidation,770xx,TX,16.74,0.0,Mar-2000,660.0,664.0,5.0,,49.0,15.0,1.0,9418.0,29.3,48.0,f,0.0,0.0,11109.550892951002,11109.55,10000.0,1109.55,0.0,0.0,0.0,Jul-2017,8321.81,,May-2018,649.0,645.0,0.0,,1.0,Individual,,,,0.0,4000.0,28582.0,8.0,2.0,1.0,4.0,12.0,19164.0,70.0,9.0,10.0,4296.0,48.0,32100.0,6.0,0.0,10.0,14.0,2042.0,9882.0,38.2,0.0,0.0,127.0,198.0,0.0,0.0,1.0,0.0,,2.0,,0.0,3.0,5.0,3.0,15.0,16.0,12.0,29.0,5.0,14.0,0.0,0.0,0.0,10.0,100.0,33.3,1.0,0.0,59482.0,28582.0,16000.0,27382.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90327480,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Claims ,10+ years,MORTGAGE,80000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90327480,,credit_card,Credit card refinancing,300xx,GA,18.75,0.0,May-2006,675.0,679.0,1.0,,,16.0,0.0,27756.0,44.2,48.0,f,0.0,0.0,22187.0343982313,22187.03,20000.0,2152.86,34.17,0.0,0.0,Aug-2017,16641.63,,Apr-2018,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,176240.0,2.0,2.0,1.0,2.0,9.0,19984.0,47.0,4.0,6.0,5478.0,45.0,62800.0,1.0,12.0,3.0,10.0,11015.0,24856.0,46.3,0.0,0.0,92.0,124.0,1.0,1.0,3.0,1.0,,3.0,,0.0,8.0,10.0,9.0,21.0,18.0,13.0,27.0,10.0,16.0,0.0,0.0,0.0,6.0,100.0,55.6,0.0,0.0,233816.0,47740.0,46300.0,42516.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90287178,,15000.0,15000.0,15000.0, 60 months,8.99,311.31,B,B1,Technical Recruiter,< 1 year,RENT,115000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90287178,,debt_consolidation,Debt consolidation,331xx,FL,10.86,0.0,Dec-2004,715.0,719.0,0.0,38.0,,15.0,0.0,14538.0,28.6,23.0,f,0.0,0.0,16435.8566075182,16435.86,15000.0,1435.86,0.0,0.0,0.0,Dec-2017,12407.56,,Feb-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,456669.0,1.0,2.0,0.0,1.0,15.0,8610.0,37.0,3.0,4.0,6114.0,31.0,50800.0,0.0,0.0,1.0,5.0,32619.0,22062.0,38.4,0.0,0.0,29.0,141.0,6.0,6.0,1.0,6.0,38.0,11.0,38.0,0.0,5.0,7.0,6.0,10.0,2.0,12.0,20.0,7.0,15.0,0.0,0.0,0.0,3.0,87.0,16.7,0.0,0.0,545614.0,23148.0,35800.0,23364.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88819142,,22400.0,22400.0,22400.0, 60 months,10.49,481.36,B,B3,Supervisor,10+ years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88819142,,debt_consolidation,Debt consolidation,349xx,FL,15.48,0.0,Dec-2004,720.0,724.0,0.0,,,7.0,0.0,16666.0,51.1,27.0,f,0.0,0.0,26916.66175848,26916.66,22400.0,4516.66,0.0,0.0,0.0,Mar-2019,4392.4,,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,120146.0,0.0,1.0,0.0,2.0,13.0,13172.0,84.0,1.0,1.0,15417.0,62.0,32600.0,1.0,0.0,1.0,4.0,17164.0,12934.0,56.3,0.0,0.0,134.0,141.0,7.0,7.0,5.0,39.0,,9.0,,0.0,2.0,2.0,4.0,10.0,5.0,5.0,17.0,2.0,7.0,0.0,0.0,0.0,2.0,100.0,25.0,0.0,0.0,140556.0,29838.0,29600.0,15677.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90287762,,16000.0,16000.0,16000.0, 60 months,8.99,332.06,B,B1,,,OWN,46000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90287762,,credit_card,Credit card refinancing,180xx,PA,14.84,0.0,Jul-1986,755.0,759.0,0.0,,,10.0,0.0,22090.0,36.0,16.0,f,9155.26,9155.26,9609.76,9609.76,6844.74,2765.02,0.0,0.0,0.0,Mar-2019,332.06,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,25119.0,0.0,0.0,0.0,0.0,100.0,0.0,,1.0,2.0,8558.0,36.0,61400.0,0.0,0.0,1.0,2.0,2512.0,36139.0,36.7,0.0,0.0,161.0,362.0,10.0,10.0,1.0,10.0,,10.0,,0.0,7.0,8.0,8.0,10.0,3.0,9.0,12.0,8.0,10.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,149400.0,22090.0,57100.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88769177,,35000.0,35000.0,35000.0, 60 months,10.49,752.12,B,B3,Owner,6 years,RENT,114000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88769177,,credit_card,Credit card refinancing,346xx,FL,16.24,0.0,Jun-2001,700.0,704.0,0.0,,,20.0,0.0,36464.0,58.4,26.0,f,20345.85,20345.85,21791.08,21791.08,14654.15,7136.93,0.0,0.0,0.0,Mar-2019,752.12,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,47148.0,2.0,1.0,0.0,1.0,14.0,10684.0,61.0,3.0,4.0,12178.0,59.0,62400.0,0.0,1.0,0.0,5.0,2357.0,9566.0,75.2,0.0,0.0,151.0,183.0,2.0,2.0,0.0,21.0,,,,0.0,10.0,18.0,10.0,10.0,5.0,19.0,21.0,18.0,20.0,0.0,0.0,0.0,3.0,100.0,40.0,0.0,0.0,79883.0,47148.0,38500.0,17483.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90240094,,19800.0,19800.0,19800.0, 36 months,12.79,665.14,C,C1,Delivery manager,3 years,OWN,45000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90240094,,debt_consolidation,Debt consolidation,365xx,AL,11.49,0.0,Jun-2004,675.0,679.0,0.0,,57.0,6.0,1.0,6075.0,27.7,23.0,f,0.0,0.0,11789.44,11789.44,6817.24,2586.16,0.0,2386.04,429.4871999357,Dec-2017,665.14,,Mar-2019,504.0,500.0,0.0,,1.0,Individual,,,,0.0,0.0,15664.0,0.0,1.0,0.0,2.0,14.0,9589.0,80.0,1.0,3.0,3411.0,46.0,21900.0,0.0,1.0,0.0,5.0,2611.0,14825.0,29.1,0.0,0.0,138.0,147.0,7.0,7.0,3.0,15.0,,,,0.0,2.0,2.0,4.0,8.0,9.0,5.0,11.0,2.0,6.0,0.0,0.0,0.0,1.0,100.0,25.0,1.0,0.0,33915.0,15664.0,20900.0,12015.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249245,,8000.0,8000.0,8000.0, 36 months,13.99,273.39,C,C3,Attorney,5 years,RENT,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249245,,debt_consolidation,Debt consolidation,334xx,FL,24.74,1.0,Aug-2001,665.0,669.0,0.0,17.0,,33.0,0.0,2923.0,41.2,54.0,f,0.0,0.0,9731.5370008751,9731.54,8000.0,1731.54,0.0,0.0,0.0,Feb-2019,2356.23,,Feb-2019,749.0,745.0,0.0,,1.0,Individual,,,,0.0,0.0,187260.0,2.0,27.0,3.0,3.0,2.0,184337.0,100.0,1.0,4.0,597.0,98.0,7100.0,1.0,2.0,0.0,7.0,5675.0,573.0,61.8,0.0,0.0,154.0,181.0,4.0,2.0,0.0,15.0,,13.0,,0.0,2.0,3.0,2.0,5.0,43.0,6.0,10.0,3.0,33.0,0.0,0.0,0.0,4.0,97.9,0.0,0.0,0.0,191345.0,187260.0,1500.0,184245.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90195681,,6400.0,6400.0,6400.0, 36 months,19.99,237.82,D,D4,,,MORTGAGE,18876.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90195681,,debt_consolidation,Debt consolidation,114xx,NY,12.84,0.0,May-2006,670.0,674.0,0.0,,89.0,5.0,1.0,7380.0,70.3,11.0,f,0.0,0.0,7439.2114978442005,7439.21,6400.0,1039.21,0.0,0.0,0.0,Sep-2017,5068.12,,Nov-2018,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,7380.0,1.0,0.0,0.0,0.0,112.0,0.0,,1.0,4.0,4174.0,70.0,10500.0,0.0,0.0,0.0,4.0,1476.0,2320.0,76.1,0.0,0.0,112.0,124.0,4.0,4.0,0.0,4.0,,18.0,,0.0,3.0,3.0,4.0,7.0,1.0,5.0,9.0,3.0,5.0,0.0,0.0,0.0,1.0,100.0,50.0,1.0,0.0,10500.0,7380.0,9700.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90397786,,13000.0,13000.0,13000.0, 36 months,13.99,444.25,C,C3,Sales Manager,10+ years,MORTGAGE,122000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90397786,,debt_consolidation,Debt consolidation,945xx,CA,13.77,0.0,Nov-1996,665.0,669.0,0.0,,74.0,18.0,1.0,12887.0,33.2,28.0,f,0.0,0.0,3189.62,3189.62,292.69,141.46,0.0,2755.47,495.9846000075,Nov-2016,444.25,,Mar-2017,499.0,0.0,0.0,,1.0,Individual,,,,0.0,281.0,29723.0,2.0,2.0,0.0,2.0,16.0,16836.0,62.0,3.0,6.0,6090.0,45.0,38800.0,0.0,0.0,3.0,8.0,1982.0,15079.0,35.3,0.0,0.0,149.0,238.0,1.0,1.0,0.0,35.0,,5.0,,0.0,2.0,9.0,3.0,6.0,7.0,16.0,21.0,9.0,18.0,0.0,0.0,0.0,3.0,100.0,66.7,1.0,0.0,65800.0,29723.0,23300.0,27000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90085659,,35000.0,35000.0,35000.0, 36 months,13.99,1196.05,C,C3,Program Manager,10+ years,MORTGAGE,117000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90085659,,credit_card,Credit card refinancing,853xx,AZ,28.26,0.0,Feb-1991,690.0,694.0,1.0,,,11.0,0.0,45654.0,21.3,19.0,f,0.0,0.0,38401.7112590335,38401.71,35000.0,3401.71,0.0,0.0,0.0,Jul-2017,28860.51,,Mar-2019,769.0,765.0,0.0,,1.0,Individual,,,,0.0,0.0,413886.0,1.0,3.0,0.0,3.0,13.0,246840.0,81.0,0.0,2.0,39493.0,63.0,62900.0,0.0,0.0,2.0,6.0,41389.0,15446.0,22.7,0.0,0.0,145.0,307.0,17.0,3.0,4.0,17.0,,0.0,,0.0,2.0,2.0,5.0,6.0,7.0,6.0,7.0,2.0,11.0,0.0,0.0,0.0,1.0,100.0,25.0,0.0,0.0,434104.0,295398.0,61100.0,246410.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90176419,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Director IT/Production,< 1 year,MORTGAGE,105000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90176419,,credit_card,Credit card refinancing,601xx,IL,17.45,0.0,Oct-1994,705.0,709.0,1.0,81.0,,14.0,0.0,40174.0,70.4,29.0,f,23252.59,23252.59,24868.96,24868.96,16747.41,8121.55,0.0,0.0,0.0,Mar-2019,859.56,Apr-2019,Mar-2019,759.0,755.0,0.0,,1.0,Individual,,,,0.0,322.0,209660.0,0.0,2.0,0.0,0.0,36.0,21944.0,17.0,1.0,2.0,13818.0,60.0,57100.0,2.0,0.0,1.0,2.0,17472.0,15626.0,72.0,0.0,0.0,155.0,263.0,9.0,9.0,3.0,9.0,,6.0,,0.0,5.0,5.0,7.0,11.0,11.0,10.0,15.0,5.0,14.0,0.0,0.0,0.0,1.0,96.6,42.9,0.0,0.0,266527.0,62118.0,55800.0,50302.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90393111,,16000.0,16000.0,16000.0, 36 months,12.79,537.49,C,C1,checker,10+ years,OWN,48000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90393111,,debt_consolidation,Debt consolidation,928xx,CA,33.6,1.0,Sep-1986,675.0,679.0,0.0,8.0,,11.0,0.0,13174.0,44.1,17.0,f,0.0,0.0,19005.3676185112,19005.37,16000.0,3005.37,0.0,0.0,0.0,Oct-2018,6617.4,,Nov-2018,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,21854.0,0.0,2.0,0.0,1.0,20.0,8680.0,32.0,0.0,1.0,5374.0,38.0,29900.0,0.0,1.0,0.0,2.0,2185.0,13027.0,47.3,0.0,0.0,167.0,182.0,16.0,16.0,1.0,50.0,,16.0,8.0,0.0,4.0,7.0,6.0,6.0,4.0,9.0,12.0,7.0,11.0,0.0,0.0,0.0,0.0,88.2,20.0,0.0,0.0,56875.0,21854.0,24700.0,26975.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90394107,,9600.0,9600.0,9600.0, 36 months,14.49,330.4,C,C4,Assembly ,2 years,OWN,24000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90394107,,debt_consolidation,Debt consolidation,482xx,MI,28.73,0.0,May-2013,695.0,699.0,0.0,,,10.0,0.0,7003.0,25.7,11.0,f,2204.81,2204.81,9620.23,9620.23,7395.19,2225.04,0.0,0.0,0.0,Mar-2019,330.4,Apr-2019,Mar-2019,669.0,665.0,0.0,,1.0,Individual,,,,0.0,100.0,8712.0,1.0,2.0,0.0,1.0,24.0,1709.0,18.0,1.0,7.0,2841.0,24.0,27200.0,0.0,0.0,3.0,8.0,871.0,13670.0,32.7,0.0,0.0,40.0,25.0,2.0,2.0,0.0,2.0,,3.0,,0.0,6.0,7.0,6.0,6.0,2.0,8.0,9.0,7.0,10.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,36592.0,8712.0,20300.0,9392.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249773,,8000.0,8000.0,8000.0, 36 months,15.59,279.64,C,C5,Resident Physician,< 1 year,RENT,50000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249773,,other,Other,757xx,TX,30.34,0.0,Aug-2005,660.0,664.0,1.0,,45.0,23.0,4.0,6834.0,78.6,44.0,f,1862.71,1862.71,8102.63,8102.63,6137.29,1965.34,0.0,0.0,0.0,Mar-2019,279.64,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,402691.0,1.0,18.0,0.0,1.0,20.0,395857.0,116.0,2.0,5.0,3449.0,114.0,8700.0,2.0,2.0,2.0,6.0,17508.0,866.0,88.8,0.0,0.0,133.0,112.0,4.0,4.0,0.0,4.0,,3.0,,0.0,4.0,4.0,4.0,5.0,35.0,5.0,9.0,4.0,23.0,0.0,0.0,0.0,2.0,100.0,75.0,0.0,0.0,342765.0,402691.0,7700.0,334065.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90189605,,7200.0,7200.0,7200.0, 36 months,12.79,241.87,C,C1,General Manager ,2 years,MORTGAGE,54900.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189605,,credit_card,Credit card refinancing,034xx,NH,28.41,0.0,Jan-2008,675.0,679.0,1.0,38.0,33.0,10.0,1.0,7105.0,71.1,23.0,f,0.0,0.0,4858.99,4858.99,1916.39,739.06,0.0,2203.54,396.6372,Sep-2017,241.87,,Aug-2018,544.0,540.0,0.0,38.0,1.0,Individual,,,,0.0,0.0,160445.0,1.0,4.0,0.0,1.0,13.0,45058.0,93.0,2.0,2.0,3429.0,69.0,10000.0,1.0,1.0,1.0,6.0,16045.0,2895.0,71.1,0.0,0.0,98.0,104.0,2.0,2.0,2.0,2.0,38.0,2.0,38.0,2.0,4.0,4.0,4.0,5.0,13.0,4.0,7.0,4.0,10.0,0.0,0.0,0.0,2.0,82.6,25.0,0.0,1.0,189266.0,60789.0,10000.0,48528.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Aug-2018,COMPLETE,Jan-2018,2203.54,40.0,7.0 +90395529,,8000.0,8000.0,8000.0, 36 months,14.49,275.33,C,C4,Business Development,2 years,MORTGAGE,130000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90395529,,major_purchase,Major purchase,804xx,CO,27.78,2.0,Apr-1997,660.0,664.0,0.0,1.0,,17.0,0.0,47165.0,90.0,30.0,f,1837.44,1837.44,7978.13,7978.13,6162.56,1815.57,0.0,0.0,0.0,Mar-2019,275.33,Apr-2019,Mar-2019,614.0,610.0,0.0,,1.0,Individual,,,,0.0,0.0,185060.0,0.0,4.0,1.0,2.0,11.0,42301.0,71.0,0.0,1.0,6006.0,79.0,50500.0,0.0,1.0,0.0,3.0,10886.0,3096.0,89.8,0.0,0.0,148.0,233.0,23.0,11.0,4.0,23.0,,,1.0,0.0,8.0,10.0,8.0,10.0,11.0,10.0,14.0,10.0,17.0,0.0,0.0,0.0,1.0,89.7,75.0,0.0,0.0,215508.0,93693.0,30500.0,59636.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90300066,,20000.0,20000.0,20000.0, 36 months,13.99,683.46,C,C3,Dental Hygienist,2 years,MORTGAGE,280000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90300066,,home_improvement,Home improvement,327xx,FL,13.28,2.0,Mar-2002,685.0,689.0,1.0,4.0,,22.0,0.0,24005.0,49.0,37.0,f,4568.51,4568.51,19804.8,19804.8,15431.49,4373.31,0.0,0.0,0.0,Mar-2019,683.46,Apr-2019,Mar-2019,739.0,735.0,0.0,69.0,1.0,Individual,,,,0.0,0.0,543813.0,2.0,9.0,1.0,2.0,9.0,101545.0,65.0,3.0,4.0,4925.0,60.0,49000.0,0.0,0.0,2.0,7.0,24719.0,15323.0,50.7,0.0,0.0,152.0,174.0,1.0,1.0,1.0,4.0,,3.0,4.0,1.0,6.0,10.0,6.0,7.0,19.0,12.0,17.0,10.0,22.0,0.0,0.0,0.0,4.0,88.9,16.7,0.0,0.0,604237.0,125550.0,31100.0,128229.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90218131,,20400.0,20400.0,20400.0, 60 months,15.59,491.66,C,C5,Operating Engineer,10+ years,MORTGAGE,90000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90218131,,debt_consolidation,Debt consolidation,480xx,MI,17.29,0.0,Jun-2004,715.0,719.0,1.0,44.0,,13.0,0.0,3489.0,24.9,25.0,f,12481.49,12481.49,14240.47,14240.47,7918.51,6321.96,0.0,0.0,0.0,Mar-2019,491.66,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,173.0,167763.0,0.0,4.0,1.0,2.0,11.0,47262.0,74.0,2.0,6.0,383.0,65.0,14000.0,2.0,3.0,2.0,9.0,12905.0,3386.0,15.4,0.0,0.0,119.0,147.0,10.0,10.0,2.0,19.0,,6.0,,0.0,3.0,5.0,4.0,5.0,12.0,8.0,11.0,5.0,13.0,0.0,0.0,0.0,3.0,80.0,25.0,0.0,0.0,197410.0,50751.0,4000.0,63584.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90215582,,28475.0,28475.0,28475.0, 60 months,10.99,618.98,B,B4,Operator,9 years,MORTGAGE,130000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90215582,,debt_consolidation,Debt consolidation,757xx,TX,18.03,2.0,Jan-1991,730.0,734.0,0.0,11.0,,20.0,0.0,18480.0,40.5,39.0,f,16638.8,16638.8,17933.03,17933.03,11836.2,6096.83,0.0,0.0,0.0,Mar-2019,618.98,Apr-2019,Mar-2019,774.0,770.0,0.0,,1.0,Individual,,,,0.0,0.0,173116.0,0.0,3.0,0.0,0.0,39.0,24614.0,40.0,1.0,5.0,3397.0,40.0,45600.0,0.0,0.0,1.0,5.0,9111.0,15875.0,40.5,0.0,0.0,160.0,308.0,8.0,8.0,1.0,19.0,,8.0,,0.0,6.0,13.0,6.0,10.0,11.0,16.0,27.0,13.0,20.0,0.0,0.0,0.0,1.0,97.2,0.0,0.0,0.0,271870.0,43094.0,26700.0,62270.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90393746,,10000.0,10000.0,10000.0, 36 months,10.49,324.98,B,B3,,,OWN,58880.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90393746,,other,Other,322xx,FL,28.94,0.0,May-1993,720.0,724.0,0.0,57.0,,22.0,0.0,10452.0,24.9,42.0,w,2197.25,2197.25,9418.59,9418.59,7802.75,1615.84,0.0,0.0,0.0,Mar-2019,324.98,Apr-2019,Mar-2019,684.0,680.0,0.0,57.0,1.0,Individual,,,,0.0,12250.0,45209.0,1.0,2.0,1.0,2.0,6.0,34757.0,89.0,0.0,3.0,3095.0,36.0,40200.0,0.0,12.0,0.0,5.0,2153.0,16222.0,20.1,0.0,0.0,134.0,280.0,22.0,6.0,0.0,35.0,57.0,22.0,57.0,1.0,4.0,11.0,8.0,15.0,9.0,20.0,33.0,11.0,22.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,89019.0,45209.0,20300.0,48819.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90149382,,12000.0,12000.0,12000.0, 60 months,14.49,282.28,C,C4,security,2 years,MORTGAGE,24000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90149382,,home_improvement,Home improvement,751xx,TX,16.4,0.0,Aug-2006,670.0,674.0,0.0,,,2.0,0.0,12652.0,79.1,14.0,f,7263.18,7263.18,8161.97,8161.97,4736.82,3425.15,0.0,0.0,0.0,Mar-2019,282.28,Apr-2019,Mar-2019,629.0,625.0,0.0,,1.0,Individual,,,,0.0,0.0,12652.0,0.0,0.0,0.0,0.0,96.0,0.0,,0.0,0.0,7389.0,79.0,16000.0,0.0,0.0,0.0,0.0,6326.0,111.0,98.5,0.0,0.0,121.0,105.0,29.0,29.0,0.0,50.0,,,,0.0,1.0,2.0,1.0,2.0,11.0,2.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,16000.0,12652.0,7500.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90008783,,12000.0,12000.0,12000.0, 60 months,9.49,251.97,B,B2, Systems Engineeri,8 years,MORTGAGE,185000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90008783,,home_improvement,Home improvement,087xx,NJ,5.55,2.0,Oct-1994,700.0,704.0,0.0,16.0,,7.0,0.0,4579.0,37.8,37.0,f,6903.91,6903.91,7291.31,7291.31,5096.09,2195.22,0.0,0.0,0.0,Mar-2019,251.97,Apr-2019,Mar-2019,704.0,700.0,0.0,36.0,1.0,Individual,,,,0.0,0.0,388101.0,0.0,2.0,0.0,0.0,47.0,44182.0,67.0,0.0,0.0,4579.0,62.0,12100.0,0.0,0.0,0.0,0.0,55443.0,7521.0,37.8,0.0,0.0,233.0,263.0,27.0,27.0,6.0,27.0,16.0,,16.0,8.0,1.0,1.0,4.0,9.0,19.0,4.0,12.0,1.0,7.0,0.0,0.0,0.0,0.0,64.9,25.0,0.0,0.0,446367.0,48761.0,12100.0,66339.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90107556,,11200.0,11200.0,11200.0, 60 months,8.99,232.44,B,B1,QA Tech,10+ years,MORTGAGE,40000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90107556,,debt_consolidation,Debt consolidation,497xx,MI,12.42,0.0,Nov-1994,680.0,684.0,1.0,,,6.0,0.0,11594.0,46.8,19.0,f,0.0,0.0,12139.9802662212,12139.98,11200.0,939.98,0.0,0.0,0.0,Oct-2017,9588.73,,Jan-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,283.0,75867.0,0.0,0.0,1.0,2.0,9.0,0.0,,2.0,2.0,3415.0,47.0,24800.0,1.0,1.0,1.0,4.0,12645.0,8322.0,50.5,0.0,0.0,252.0,262.0,9.0,9.0,1.0,9.0,,4.0,,0.0,3.0,4.0,3.0,7.0,7.0,5.0,11.0,4.0,6.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,94432.0,11594.0,16800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90267261,,24000.0,24000.0,24000.0, 60 months,9.49,503.93,B,B2,Specialist Call Center Operations,9 years,MORTGAGE,78000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90267261,,credit_card,Credit card refinancing,982xx,WA,9.78,0.0,Sep-1999,710.0,714.0,1.0,,,6.0,0.0,45646.0,86.1,25.0,f,0.0,0.0,26056.0942585804,26056.09,24000.0,2056.09,0.0,0.0,0.0,Sep-2017,21048.42,,Feb-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,211369.0,2.0,0.0,0.0,1.0,23.0,0.0,,2.0,3.0,385.0,86.0,53000.0,0.0,3.0,1.0,4.0,35228.0,4615.0,7.7,0.0,0.0,204.0,150.0,2.0,2.0,1.0,2.0,,2.0,,0.0,1.0,5.0,1.0,7.0,4.0,5.0,20.0,5.0,6.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,237300.0,45646.0,5000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90306188,,18000.0,18000.0,18000.0, 60 months,10.99,391.28,B,B4,Paralegal ,< 1 year,RENT,75000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90306188,,credit_card,Credit card refinancing,333xx,FL,16.85,0.0,Jan-1996,690.0,694.0,1.0,43.0,,15.0,0.0,16472.0,54.5,23.0,f,0.0,0.0,9379.73,9379.73,6047.02,3332.71,0.0,0.0,0.0,Oct-2018,391.28,,Mar-2019,524.0,520.0,0.0,44.0,1.0,Individual,,,,0.0,0.0,54560.0,2.0,7.0,0.0,0.0,37.0,38088.0,73.0,2.0,5.0,4780.0,66.0,30200.0,0.0,0.0,1.0,5.0,3637.0,6085.0,71.7,0.0,0.0,248.0,226.0,2.0,2.0,0.0,6.0,44.0,6.0,44.0,6.0,4.0,6.0,5.0,10.0,10.0,7.0,13.0,6.0,15.0,0.0,0.0,0.0,2.0,60.9,60.0,0.0,0.0,82284.0,54560.0,21500.0,52084.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89774741,,32000.0,32000.0,32000.0, 60 months,15.59,771.23,C,C5,Staff Software Engineer,6 years,MORTGAGE,106500.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89774741,,debt_consolidation,Debt consolidation,761xx,TX,33.5,0.0,Jan-2000,695.0,699.0,0.0,,,24.0,0.0,40195.0,73.6,49.0,f,0.0,0.0,20024.26,20024.26,10912.28,9111.98,0.0,0.0,0.0,Dec-2018,771.23,,Nov-2018,654.0,650.0,0.0,,1.0,Individual,,,,0.0,0.0,288674.0,4.0,14.0,2.0,6.0,5.0,118158.0,90.0,1.0,1.0,9110.0,85.0,54600.0,1.0,5.0,3.0,8.0,12028.0,12732.0,72.1,0.0,0.0,129.0,200.0,4.0,4.0,2.0,4.0,,5.0,,0.0,5.0,6.0,7.0,8.0,36.0,9.0,11.0,7.0,24.0,0.0,0.0,0.0,4.0,100.0,42.9,0.0,0.0,317240.0,158353.0,45600.0,131640.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90207805,,13000.0,13000.0,13000.0, 36 months,12.79,436.71,C,C1,,,MORTGAGE,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90207805,,debt_consolidation,Debt consolidation,350xx,AL,20.59,0.0,Oct-1975,670.0,674.0,0.0,50.0,43.0,11.0,1.0,5977.0,43.3,29.0,w,0.0,0.0,14765.5253413485,14765.53,13000.0,1765.53,0.0,0.0,0.0,Feb-2018,55.2,,Mar-2019,784.0,780.0,0.0,56.0,1.0,Individual,,,,0.0,0.0,127362.0,1.0,2.0,1.0,2.0,7.0,41837.0,81.0,1.0,2.0,3386.0,73.0,13800.0,0.0,0.0,0.0,4.0,11578.0,2768.0,60.5,0.0,0.0,180.0,491.0,3.0,3.0,2.0,20.0,56.0,16.0,56.0,2.0,2.0,5.0,2.0,5.0,10.0,8.0,17.0,5.0,11.0,0.0,0.0,0.0,2.0,89.3,50.0,0.0,0.0,187334.0,47814.0,7000.0,51434.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90299523,,35000.0,35000.0,35000.0, 60 months,19.99,927.1,D,D4,Physician,9 years,OWN,235000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90299523,,debt_consolidation,Debt consolidation,794xx,TX,20.66,0.0,Jan-1996,675.0,679.0,0.0,,,30.0,0.0,134488.0,93.3,49.0,f,22305.33,22305.33,26847.03,26847.03,12694.67,14152.36,0.0,0.0,0.0,Mar-2019,927.1,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,502138.0,1.0,1.0,1.0,1.0,8.0,10298.0,93.0,3.0,6.0,50402.0,92.0,140100.0,0.0,0.0,3.0,7.0,16738.0,0.0,99.6,0.0,0.0,171.0,247.0,3.0,3.0,3.0,13.0,,2.0,,0.0,9.0,19.0,10.0,15.0,10.0,26.0,35.0,19.0,30.0,0.0,0.0,0.0,4.0,100.0,90.0,0.0,0.0,568929.0,148273.0,115500.0,11100.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90229508,,30000.0,30000.0,30000.0, 60 months,17.99,761.64,D,D2,Special Agent,10+ years,RENT,130000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90229508,,debt_consolidation,Debt consolidation,103xx,NY,10.54,0.0,Oct-1997,695.0,699.0,2.0,24.0,,17.0,0.0,21536.0,36.4,39.0,f,0.0,0.0,33308.4459705573,33308.45,30000.0,3308.45,0.0,0.0,0.0,May-2017,28768.59,,May-2017,704.0,700.0,0.0,24.0,1.0,Individual,,,,0.0,0.0,412261.0,3.0,4.0,0.0,2.0,13.0,81343.0,68.0,6.0,9.0,8711.0,46.0,59100.0,1.0,0.0,4.0,11.0,24251.0,33176.0,33.6,0.0,0.0,129.0,227.0,3.0,3.0,3.0,3.0,24.0,0.0,24.0,4.0,3.0,4.0,10.0,15.0,17.0,12.0,19.0,4.0,17.0,0.0,0.0,0.0,6.0,64.1,20.0,0.0,0.0,508607.0,102879.0,50000.0,90507.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90307701,,16000.0,16000.0,16000.0, 60 months,13.99,372.21,C,C3,Lead Maintenance,4 years,OWN,80000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90307701,,debt_consolidation,Debt consolidation,751xx,TX,16.52,0.0,Sep-1999,675.0,679.0,0.0,42.0,,11.0,0.0,11980.0,42.0,32.0,f,0.0,0.0,12972.13,12972.13,3468.78,2846.35,0.0,6657.0,1198.26,Mar-2018,372.21,,Dec-2018,589.0,585.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,157107.0,3.0,1.0,0.0,1.0,23.0,10079.0,84.0,4.0,8.0,3298.0,54.0,28500.0,8.0,2.0,12.0,10.0,14282.0,2416.0,78.6,0.0,0.0,151.0,204.0,3.0,3.0,4.0,12.0,75.0,0.0,74.0,4.0,3.0,6.0,3.0,11.0,8.0,9.0,20.0,6.0,11.0,0.0,0.0,0.0,5.0,90.3,66.7,0.0,0.0,176513.0,22059.0,11300.0,12013.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Dec-2018,COMPLETE,Sep-2018,6657.0,50.0,12.0 +90189530,,10000.0,10000.0,10000.0, 60 months,12.79,226.46,C,C1,Assistant Escrow Officer,10+ years,MORTGAGE,50000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90189530,,debt_consolidation,Debt consolidation,863xx,AZ,16.2,0.0,Dec-2000,660.0,664.0,0.0,,56.0,6.0,2.0,7099.0,52.6,16.0,f,0.0,0.0,11864.689336655701,11864.69,10000.0,1864.69,0.0,0.0,0.0,Jun-2018,7.98,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,2132.0,210584.0,1.0,1.0,0.0,1.0,23.0,20712.0,78.0,0.0,1.0,3932.0,69.0,13500.0,1.0,1.0,2.0,3.0,35097.0,6027.0,52.9,0.0,0.0,153.0,189.0,20.0,6.0,3.0,20.0,,8.0,,0.0,2.0,3.0,3.0,5.0,5.0,4.0,8.0,3.0,6.0,0.0,0.0,0.0,1.0,100.0,33.3,2.0,0.0,224236.0,27811.0,12800.0,26633.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90275214,,14000.0,14000.0,14000.0, 60 months,8.99,290.55,B,B1,PRINCIPAL FIELD ENGINEER,2 years,MORTGAGE,90000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90275214,,credit_card,Credit card refinancing,234xx,VA,11.57,2.0,Jun-2001,690.0,694.0,0.0,13.0,,5.0,0.0,14645.0,54.2,23.0,f,8010.94,8010.94,8418.96,8418.96,5989.06,2429.9,0.0,0.0,0.0,Mar-2019,290.55,Apr-2019,Mar-2019,719.0,715.0,2.0,13.0,1.0,Individual,,,,0.0,0.0,211712.0,0.0,1.0,0.0,0.0,40.0,23477.0,,0.0,1.0,8799.0,54.0,27000.0,0.0,10.0,0.0,3.0,42342.0,8201.0,51.8,0.0,0.0,147.0,183.0,13.0,13.0,5.0,33.0,,,,2.0,1.0,2.0,2.0,6.0,6.0,3.0,10.0,2.0,5.0,0.0,0.0,2.0,0.0,91.3,0.0,0.0,0.0,255231.0,38122.0,17000.0,40275.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90196134,,20000.0,20000.0,20000.0, 36 months,12.79,671.86,C,C1,Truck Driver,10+ years,RENT,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90196134,,credit_card,Credit card refinancing,131xx,NY,10.91,0.0,Dec-1988,665.0,669.0,0.0,58.0,,8.0,0.0,6788.0,27.9,13.0,w,4509.54,4509.54,19469.73,19469.73,15490.46,3979.27,0.0,0.0,0.0,Mar-2019,671.86,Apr-2019,Mar-2019,719.0,715.0,0.0,58.0,1.0,Individual,,,,0.0,327.0,19719.0,2.0,2.0,1.0,1.0,6.0,12931.0,81.0,2.0,4.0,2375.0,49.0,24300.0,0.0,1.0,1.0,5.0,2465.0,320.0,94.2,0.0,0.0,43.0,333.0,1.0,1.0,0.0,15.0,58.0,11.0,58.0,1.0,3.0,5.0,3.0,4.0,4.0,6.0,9.0,5.0,8.0,0.0,0.0,0.0,3.0,92.3,100.0,0.0,0.0,40344.0,19719.0,5500.0,16044.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88673875,,35000.0,35000.0,35000.0, 60 months,14.49,823.31,C,C4,Supervisor IT Department,10+ years,RENT,92000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88673875,,debt_consolidation,Debt consolidation,554xx,MN,20.38,0.0,Sep-2001,675.0,679.0,0.0,36.0,,25.0,0.0,33579.0,22.2,31.0,f,21238.06,21238.06,23887.89,23887.89,13761.94,10043.61,82.34,0.0,0.0,Mar-2019,823.31,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Joint App,136000.0,15.3,Not Verified,0.0,0.0,57089.0,0.0,4.0,1.0,1.0,8.0,23510.0,64.0,0.0,6.0,6672.0,30.0,151300.0,0.0,0.0,1.0,7.0,2595.0,107676.0,23.6,0.0,0.0,127.0,180.0,13.0,8.0,0.0,16.0,36.0,8.0,36.0,0.0,13.0,14.0,14.0,15.0,6.0,21.0,25.0,14.0,25.0,0.0,0.0,0.0,1.0,96.7,28.6,0.0,0.0,188084.0,57089.0,140900.0,36784.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90155344,,7000.0,7000.0,7000.0, 36 months,16.99,249.54,D,D1,Service technician,< 1 year,RENT,68000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90155344,,debt_consolidation,Debt consolidation,770xx,TX,12.6,0.0,Jul-2004,665.0,669.0,1.0,80.0,,7.0,0.0,4897.0,85.9,15.0,w,0.0,0.0,7834.9108236365,7834.91,7000.0,834.91,0.0,0.0,0.0,Jul-2017,5205.11,,Mar-2019,749.0,745.0,0.0,80.0,1.0,Individual,,,,0.0,0.0,16401.0,2.0,3.0,3.0,4.0,4.0,11504.0,83.0,1.0,1.0,2290.0,84.0,5700.0,2.0,0.0,2.0,5.0,2343.0,803.0,85.9,0.0,0.0,146.0,128.0,10.0,4.0,0.0,10.0,,4.0,,0.0,3.0,3.0,3.0,6.0,8.0,3.0,7.0,3.0,7.0,0.0,0.0,0.0,4.0,80.0,66.7,0.0,0.0,19560.0,16401.0,5700.0,13860.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90117198,,22400.0,22400.0,22400.0, 60 months,15.59,539.86,C,C5,Train Operator,10+ years,RENT,80000.0,Not Verified,Oct-2016,Late (16-30 days),n,https://lendingclub.com/browse/loanDetail.action?loan_id=90117198,,credit_card,Credit card refinancing,103xx,NY,25.32,0.0,Dec-2006,670.0,674.0,0.0,,,17.0,0.0,30790.0,42.6,34.0,f,14083.45,14083.45,15230.62,15230.62,8316.55,6806.11,107.96,0.0,0.0,Feb-2019,566.85,Apr-2019,Mar-2019,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,63992.0,1.0,2.0,1.0,4.0,12.0,32872.0,80.0,2.0,5.0,3722.0,56.0,72300.0,2.0,7.0,1.0,9.0,3764.0,34194.0,36.9,0.0,0.0,86.0,117.0,4.0,4.0,0.0,4.0,,9.0,,0.0,9.0,11.0,11.0,16.0,10.0,14.0,23.0,11.0,17.0,0.0,0.0,0.0,3.0,100.0,9.1,0.0,0.0,114679.0,63992.0,54200.0,41000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90082579,,39000.0,39000.0,39000.0, 60 months,10.99,847.77,B,B4,Account Executive,6 years,MORTGAGE,128000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90082579,,debt_consolidation,Debt consolidation,028xx,MA,29.94,0.0,Jan-1997,730.0,734.0,2.0,47.0,,30.0,0.0,31054.0,28.8,68.0,f,0.0,0.0,44467.740532957,44467.74,39000.0,5467.74,0.0,0.0,0.0,Mar-2018,30867.71,,Mar-2018,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,313423.0,2.0,6.0,2.0,5.0,9.0,76767.0,75.0,2.0,6.0,8554.0,51.0,107800.0,1.0,4.0,4.0,12.0,11194.0,53526.0,31.6,0.0,0.0,168.0,236.0,3.0,3.0,5.0,16.0,47.0,0.0,47.0,0.0,5.0,11.0,12.0,22.0,20.0,23.0,42.0,11.0,30.0,0.0,0.0,0.0,5.0,97.1,8.3,0.0,0.0,418317.0,107821.0,78300.0,102417.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90249187,,35000.0,35000.0,35000.0, 60 months,12.79,792.61,C,C1,General manager,10+ years,OWN,130000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90249187,,debt_consolidation,Debt consolidation,853xx,AZ,6.83,0.0,Dec-2000,710.0,714.0,2.0,,,17.0,0.0,16894.0,46.9,26.0,f,20830.03,20830.03,22960.82,22960.82,14169.97,8790.85,0.0,0.0,0.0,Mar-2019,792.61,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,218864.0,1.0,1.0,1.0,2.0,9.0,1702.0,28.0,1.0,2.0,3556.0,44.0,36000.0,1.0,0.0,3.0,4.0,12874.0,11140.0,54.0,0.0,0.0,124.0,189.0,3.0,3.0,2.0,3.0,,3.0,,0.0,7.0,12.0,7.0,8.0,8.0,14.0,16.0,12.0,17.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,284263.0,18596.0,24200.0,6013.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90277441,,5100.0,5100.0,5100.0, 36 months,24.49,201.41,E,E3,,,RENT,17000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90277441,,debt_consolidation,Debt consolidation,678xx,KS,25.99,0.0,Jul-2007,675.0,679.0,2.0,,,9.0,0.0,2165.0,22.6,12.0,f,1301.12,1301.12,5833.95,5833.95,3798.88,2035.07,0.0,0.0,0.0,Mar-2019,201.41,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,592.0,9191.0,3.0,2.0,1.0,4.0,8.0,7026.0,93.0,3.0,5.0,829.0,54.0,9600.0,5.0,1.0,14.0,9.0,1021.0,5721.0,22.7,0.0,0.0,110.0,106.0,5.0,5.0,0.0,6.0,,2.0,,0.0,3.0,5.0,3.0,3.0,5.0,7.0,7.0,5.0,9.0,0.0,0.0,0.0,4.0,100.0,0.0,0.0,0.0,17129.0,9191.0,7400.0,7529.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90392397,,12000.0,12000.0,12000.0, 60 months,15.59,289.21,C,C5,Senior Director,3 years,RENT,96000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90392397,,debt_consolidation,Debt consolidation,900xx,CA,4.35,0.0,May-2006,665.0,669.0,1.0,52.0,23.0,13.0,1.0,10553.0,41.7,18.0,f,6721.46,6721.46,8870.39,8870.39,5278.54,3591.85,0.0,0.0,0.0,Mar-2019,310.0,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,10553.0,1.0,0.0,0.0,0.0,74.0,0.0,,3.0,8.0,2101.0,42.0,25300.0,1.0,0.0,2.0,8.0,812.0,13389.0,43.7,0.0,0.0,124.0,112.0,4.0,4.0,0.0,4.0,,6.0,,0.0,9.0,10.0,12.0,14.0,3.0,13.0,15.0,10.0,13.0,0.0,0.0,0.0,3.0,94.1,25.0,0.0,1.0,25300.0,10553.0,23800.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90265158,,19200.0,19200.0,19200.0, 60 months,17.99,487.45,D,D2,food service manager,10+ years,RENT,55000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90265158,,debt_consolidation,Debt consolidation,337xx,FL,28.47,1.0,May-2002,670.0,674.0,0.0,13.0,77.0,20.0,1.0,12698.0,44.6,33.0,f,0.0,0.0,11312.36,11312.36,5427.88,5884.48,0.0,0.0,0.0,Sep-2018,487.45,,Mar-2019,569.0,565.0,0.0,,1.0,Individual,,,,0.0,0.0,27952.0,1.0,2.0,1.0,1.0,11.0,15254.0,66.0,1.0,4.0,3750.0,54.0,28500.0,2.0,0.0,1.0,5.0,1747.0,3035.0,72.4,0.0,0.0,90.0,172.0,5.0,5.0,2.0,5.0,,11.0,13.0,0.0,3.0,9.0,4.0,7.0,4.0,18.0,27.0,9.0,20.0,0.0,0.0,0.0,2.0,96.2,25.0,1.0,0.0,51700.0,27952.0,11000.0,23200.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Jan-2019,ACTIVE,Jan-2019,6487.0,45.0,18.0 +90138435,,24000.0,24000.0,24000.0, 60 months,13.49,552.12,C,C2,Sr Manager ,5 years,OWN,76000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90138435,,credit_card,Credit card refinancing,152xx,PA,16.12,0.0,Apr-2004,670.0,674.0,0.0,30.0,,42.0,0.0,32977.0,59.0,59.0,f,8347.75,8347.75,21966.51,21966.51,15652.25,6314.26,0.0,0.0,0.0,Mar-2019,552.12,Apr-2019,Mar-2019,794.0,790.0,0.0,,1.0,Individual,,,,0.0,0.0,341294.0,0.0,21.0,0.0,0.0,39.0,152330.0,113.0,1.0,7.0,6723.0,97.0,55900.0,2.0,0.0,1.0,8.0,8751.0,15374.0,67.1,0.0,0.0,145.0,149.0,10.0,10.0,1.0,10.0,,12.0,,0.0,10.0,13.0,11.0,19.0,21.0,20.0,37.0,13.0,42.0,0.0,0.0,0.0,1.0,98.3,36.4,0.0,0.0,351885.0,185307.0,46800.0,134466.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90225992,,21000.0,21000.0,21000.0, 60 months,15.59,506.12,C,C5,Owner,1 year,OWN,100000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90225992,,debt_consolidation,Debt consolidation,553xx,MN,17.32,0.0,Jan-2008,675.0,679.0,0.0,,86.0,7.0,1.0,16807.0,78.2,12.0,f,12847.04,12847.04,14659.29,14659.29,8152.96,6506.33,0.0,0.0,0.0,Mar-2019,506.12,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,48447.0,1.0,2.0,0.0,1.0,13.0,31640.0,71.0,1.0,1.0,5022.0,73.0,21500.0,1.0,1.0,0.0,2.0,6921.0,4693.0,78.2,0.0,0.0,104.0,77.0,6.0,6.0,0.0,6.0,,13.0,,0.0,5.0,5.0,5.0,6.0,5.0,5.0,7.0,5.0,7.0,0.0,0.0,0.0,1.0,100.0,60.0,1.0,0.0,66379.0,48447.0,21500.0,44879.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90090631,,16000.0,16000.0,16000.0, 60 months,8.99,332.06,B,B1,Systems Engineer,3 years,MORTGAGE,79000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90090631,,credit_card,Credit card refinancing,871xx,NM,6.43,0.0,Dec-2000,700.0,704.0,0.0,34.0,,8.0,0.0,17846.0,41.8,15.0,f,0.0,0.0,17636.4967254949,17636.5,16000.0,1636.5,0.0,0.0,0.0,Jan-2018,12995.65,,Jun-2018,739.0,735.0,0.0,34.0,1.0,Individual,,,,0.0,2454.0,164674.0,0.0,0.0,0.0,0.0,111.0,0.0,,2.0,3.0,9280.0,42.0,42700.0,0.0,1.0,1.0,3.0,20584.0,20429.0,46.2,0.0,0.0,171.0,189.0,9.0,9.0,1.0,12.0,34.0,9.0,34.0,1.0,2.0,3.0,5.0,10.0,2.0,7.0,12.0,3.0,8.0,0.0,0.0,0.0,2.0,86.7,0.0,0.0,0.0,204978.0,17846.0,38000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89874675,,35000.0,35000.0,35000.0, 60 months,10.99,760.82,B,B4,CIO,3 years,RENT,330000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89874675,,car,Car financing,902xx,CA,9.83,1.0,May-2009,725.0,729.0,0.0,19.0,,5.0,0.0,2660.0,14.6,14.0,f,0.0,0.0,42637.5060205692,42637.51,35000.0,7637.51,0.0,0.0,0.0,Mar-2019,21355.92,,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,109701.0,1.0,2.0,1.0,1.0,5.0,92002.0,,0.0,0.0,0.0,45.0,18200.0,0.0,0.0,2.0,1.0,21940.0,15000.0,0.0,0.0,0.0,69.0,88.0,39.0,5.0,0.0,88.0,,2.0,19.0,0.0,0.0,1.0,1.0,5.0,5.0,2.0,8.0,1.0,5.0,0.0,0.0,0.0,1.0,85.7,0.0,0.0,0.0,159679.0,109701.0,15000.0,120544.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90185682,,12600.0,12600.0,12600.0, 60 months,14.49,296.4,C,C4,CFO,3 years,RENT,235000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90185682,,debt_consolidation,Debt consolidation,902xx,CA,18.97,0.0,Sep-2005,695.0,699.0,1.0,,,25.0,0.0,43484.0,53.4,29.0,f,7626.13,7626.13,8585.46,8585.46,4973.87,3611.59,0.0,0.0,0.0,Mar-2019,296.4,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,113496.0,2.0,6.0,3.0,5.0,1.0,69676.0,71.0,1.0,2.0,12697.0,59.0,81500.0,0.0,0.0,1.0,7.0,4540.0,26467.0,62.1,0.0,0.0,120.0,132.0,2.0,1.0,0.0,18.0,,0.0,,0.0,11.0,12.0,14.0,15.0,8.0,17.0,19.0,12.0,25.0,0.0,0.0,0.0,4.0,100.0,64.3,0.0,0.0,191217.0,113496.0,69800.0,98289.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88780082,,35000.0,35000.0,35000.0, 60 months,14.49,823.31,C,C4,Content Author,8 years,MORTGAGE,218000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88780082,,credit_card,Credit card refinancing,325xx,FL,12.38,0.0,Nov-2005,695.0,699.0,2.0,,,11.0,0.0,14212.0,41.4,19.0,f,21184.5,21184.5,23847.81,23847.81,13815.5,10032.31,0.0,0.0,0.0,Mar-2019,823.31,Apr-2019,Apr-2018,669.0,665.0,0.0,,1.0,Individual,,,,0.0,0.0,438490.0,2.0,2.0,0.0,0.0,30.0,65996.0,63.0,2.0,4.0,4495.0,53.0,34300.0,0.0,1.0,6.0,5.0,39863.0,3727.0,67.0,0.0,0.0,130.0,81.0,3.0,3.0,1.0,18.0,,3.0,,0.0,3.0,6.0,3.0,5.0,5.0,7.0,12.0,6.0,11.0,0.0,0.0,0.0,3.0,100.0,66.7,0.0,0.0,500425.0,89174.0,11300.0,100180.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90006999,,9000.0,9000.0,9000.0, 36 months,6.99,277.86,A,A2,Owner,10+ years,RENT,67000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90006999,,credit_card,Credit card refinancing,329xx,FL,16.39,0.0,Mar-1996,725.0,729.0,0.0,,,9.0,0.0,8119.0,35.5,15.0,w,1900.2,1900.2,8050.95,8050.95,7099.8,951.15,0.0,0.0,0.0,Mar-2019,277.86,Apr-2019,Mar-2019,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,23295.0,0.0,1.0,0.0,0.0,37.0,15176.0,65.0,1.0,3.0,997.0,50.0,22900.0,0.0,0.0,1.0,3.0,2588.0,2688.0,38.9,0.0,0.0,58.0,202.0,7.0,7.0,0.0,7.0,,7.0,,0.0,3.0,8.0,3.0,4.0,2.0,8.0,12.0,8.0,9.0,0.0,0.0,0.0,1.0,100.0,33.3,0.0,0.0,46269.0,23295.0,4400.0,23369.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90389289,,15500.0,15500.0,15500.0, 60 months,13.49,356.58,C,C2,Lead Equipment Maintenance Technician,3 years,RENT,83000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90389289,,debt_consolidation,Debt consolidation,953xx,CA,6.17,0.0,Aug-2005,675.0,679.0,1.0,40.0,,5.0,0.0,11912.0,58.1,15.0,f,0.0,0.0,18094.94280364,18094.94,15500.0,2594.94,0.0,0.0,0.0,Feb-2018,12763.81,,Dec-2018,654.0,650.0,0.0,40.0,1.0,Individual,,,,0.0,58.0,14790.0,1.0,1.0,1.0,1.0,11.0,2878.0,51.0,1.0,1.0,6618.0,57.0,20500.0,0.0,0.0,1.0,2.0,2958.0,2088.0,85.1,0.0,0.0,125.0,133.0,5.0,5.0,0.0,5.0,,5.0,,1.0,3.0,3.0,3.0,7.0,5.0,4.0,9.0,3.0,5.0,0.0,0.0,0.0,2.0,86.7,100.0,0.0,0.0,26094.0,14790.0,14000.0,5594.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89989625,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Delivery driver,7 years,MORTGAGE,110000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89989625,,debt_consolidation,Debt consolidation,618xx,IL,10.44,0.0,Feb-1988,775.0,779.0,0.0,,,13.0,0.0,12513.0,32.8,24.0,f,23257.29,23257.29,24903.93,24903.93,16742.71,8161.22,0.0,0.0,0.0,Mar-2019,859.56,Apr-2019,Sep-2017,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,293617.0,0.0,1.0,0.0,0.0,31.0,13773.0,55.0,0.0,0.0,8010.0,42.0,38200.0,0.0,5.0,1.0,1.0,26692.0,12990.0,38.1,0.0,0.0,164.0,343.0,34.0,23.0,3.0,61.0,,1.0,,0.0,1.0,4.0,4.0,9.0,3.0,11.0,18.0,4.0,13.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,343200.0,26286.0,21000.0,25000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90287357,,30000.0,30000.0,30000.0, 60 months,13.49,690.15,C,C2,Maintenance Business Manager,2 years,RENT,120000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90287357,,debt_consolidation,Debt consolidation,275xx,NC,12.0,0.0,Jun-1993,680.0,684.0,0.0,42.0,,8.0,0.0,20391.0,87.5,22.0,f,17979.65,17979.65,19986.8,19986.8,12020.35,7966.45,0.0,0.0,0.0,Mar-2019,690.15,Apr-2019,Mar-2019,744.0,740.0,0.0,42.0,1.0,Individual,,,,0.0,0.0,55633.0,2.0,2.0,2.0,2.0,4.0,35242.0,77.0,1.0,2.0,6432.0,80.0,23300.0,0.0,4.0,1.0,4.0,6954.0,68.0,99.0,0.0,0.0,134.0,279.0,11.0,4.0,2.0,37.0,,11.0,,1.0,1.0,5.0,1.0,2.0,10.0,6.0,10.0,5.0,8.0,0.0,0.0,0.0,3.0,95.5,100.0,0.0,0.0,69173.0,55633.0,6500.0,45873.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90106110,,15000.0,15000.0,15000.0, 60 months,13.49,345.08,C,C2,Adjunct Faculty,3 years,RENT,90000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90106110,,debt_consolidation,Debt consolidation,890xx,NV,21.47,0.0,Oct-1983,695.0,699.0,1.0,25.0,,22.0,0.0,36471.0,56.5,47.0,f,0.0,0.0,2430.94,2430.94,354.89,324.03,0.0,1752.02,315.3636,Dec-2016,345.08,,Nov-2017,574.0,570.0,0.0,25.0,1.0,Individual,,,,0.0,0.0,57746.0,2.0,3.0,0.0,2.0,13.0,20294.0,58.0,2.0,2.0,15133.0,57.0,64500.0,2.0,4.0,3.0,4.0,3397.0,9243.0,78.3,0.0,0.0,87.0,395.0,1.0,1.0,6.0,1.0,,2.0,,1.0,5.0,9.0,8.0,13.0,4.0,18.0,36.0,9.0,22.0,0.0,0.0,0.0,2.0,93.6,57.1,0.0,0.0,128378.0,56765.0,42500.0,35090.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90105564,,27000.0,27000.0,27000.0, 60 months,14.49,635.13,C,C4,Manager,2 years,MORTGAGE,105000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90105564,,debt_consolidation,Debt consolidation,492xx,MI,8.46,0.0,Jan-2004,720.0,724.0,1.0,,80.0,9.0,1.0,6631.0,55.3,18.0,f,16342.15,16342.15,18397.03,18397.03,10657.85,7739.18,0.0,0.0,0.0,Mar-2019,635.13,Apr-2019,Mar-2019,744.0,740.0,0.0,,1.0,Individual,,,,0.0,0.0,110729.0,1.0,4.0,1.0,3.0,6.0,35188.0,82.0,1.0,1.0,6589.0,76.0,12000.0,0.0,1.0,1.0,4.0,12303.0,4369.0,60.3,0.0,0.0,148.0,149.0,12.0,6.0,5.0,12.0,,6.0,,0.0,2.0,2.0,3.0,4.0,8.0,4.0,5.0,2.0,9.0,0.0,0.0,0.0,2.0,100.0,33.3,1.0,0.0,126604.0,41819.0,11000.0,42904.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90237015,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,"Vice President, MF Agency Underwriter",10+ years,MORTGAGE,163500.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90237015,,credit_card,Credit card refinancing,913xx,CA,19.02,0.0,Nov-1987,695.0,699.0,3.0,40.0,,17.0,0.0,131631.0,82.0,36.0,f,0.0,0.0,45185.9928251626,45185.99,35000.0,10185.99,0.0,0.0,0.0,Dec-2018,24128.05,,Feb-2019,649.0,645.0,0.0,70.0,1.0,Individual,,,,0.0,0.0,564864.0,1.0,4.0,2.0,2.0,12.0,25233.0,49.0,1.0,7.0,8383.0,82.0,160500.0,0.0,0.0,3.0,9.0,35304.0,6222.0,52.0,0.0,0.0,146.0,346.0,4.0,4.0,7.0,4.0,,1.0,40.0,0.0,9.0,11.0,13.0,13.0,9.0,11.0,22.0,10.0,16.0,,0.0,0.0,3.0,86.0,33.3,0.0,0.0,620145.0,54329.0,56000.0,51645.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89613280,,13200.0,13200.0,13200.0, 36 months,15.59,461.41,C,C5,Park Manager,2 years,OWN,55000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89613280,,credit_card,Credit card refinancing,955xx,CA,11.54,0.0,Dec-2002,730.0,734.0,1.0,,,9.0,0.0,11459.0,33.9,13.0,f,0.0,0.0,14317.0500131646,14317.05,13200.0,1117.05,0.0,0.0,0.0,Sep-2017,406.61,,Apr-2018,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,15307.0,1.0,1.0,0.0,0.0,34.0,3848.0,42.0,1.0,5.0,8474.0,36.0,33800.0,0.0,1.0,1.0,5.0,1701.0,22341.0,33.9,0.0,0.0,34.0,165.0,5.0,5.0,0.0,5.0,,5.0,,0.0,3.0,3.0,8.0,9.0,1.0,8.0,12.0,3.0,9.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,42974.0,15307.0,33800.0,9174.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89909265,,30000.0,30000.0,30000.0, 60 months,14.49,705.7,C,C4,Creative Director,2 years,RENT,125000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89909265,,debt_consolidation,Debt consolidation,275xx,NC,17.29,0.0,Jun-2004,670.0,674.0,1.0,64.0,101.0,11.0,1.0,24887.0,60.1,16.0,f,18157.95,18157.95,20404.92,20404.92,11842.05,8562.87,0.0,0.0,0.0,Mar-2019,705.7,Apr-2019,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,45558.0,2.0,1.0,1.0,1.0,6.0,20671.0,86.0,1.0,4.0,7655.0,70.0,41400.0,0.0,0.0,1.0,5.0,4142.0,7624.0,65.8,0.0,0.0,147.0,50.0,4.0,4.0,0.0,19.0,,4.0,,0.0,5.0,9.0,5.0,5.0,6.0,10.0,10.0,9.0,11.0,0.0,0.0,0.0,2.0,100.0,40.0,1.0,0.0,65405.0,45558.0,22300.0,24005.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90326231,,25000.0,25000.0,25000.0, 60 months,15.59,602.52,C,C5,Administrative Assistant,4 years,RENT,60000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90326231,,credit_card,Credit card refinancing,816xx,CO,17.84,0.0,Dec-2004,695.0,699.0,0.0,,,5.0,0.0,22475.0,98.6,9.0,f,15294.23,15294.23,17418.95,17418.95,9705.77,7713.18,0.0,0.0,0.0,Mar-2019,602.52,Apr-2019,Mar-2019,624.0,620.0,0.0,,1.0,Individual,,,,0.0,0.0,31177.0,0.0,1.0,0.0,0.0,32.0,8702.0,58.0,0.0,0.0,10894.0,83.0,22800.0,0.0,0.0,0.0,0.0,6235.0,325.0,98.6,0.0,0.0,111.0,141.0,30.0,30.0,0.0,30.0,,,,0.0,4.0,4.0,4.0,7.0,2.0,4.0,7.0,4.0,5.0,0.0,0.0,0.0,0.0,100.0,100.0,0.0,0.0,37800.0,31177.0,22800.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90081014,,12800.0,12800.0,12800.0, 60 months,9.49,268.77,B,B2,Sr. Tax Law Specialist - EP,6 years,MORTGAGE,101303.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90081014,,home_improvement,Home improvement,750xx,TX,13.03,0.0,Apr-2004,695.0,699.0,0.0,73.0,,11.0,0.0,28544.0,54.1,17.0,f,0.0,0.0,1910.29,1910.29,1201.0,709.29,0.0,0.0,0.0,May-2017,268.77,,Mar-2019,544.0,540.0,0.0,73.0,1.0,Individual,,,,0.0,76.0,187529.0,1.0,1.0,1.0,2.0,2.0,28000.0,100.0,1.0,2.0,8914.0,70.0,52800.0,0.0,1.0,0.0,4.0,17048.0,16074.0,54.8,0.0,0.0,140.0,68.0,9.0,2.0,4.0,9.0,,,,1.0,5.0,7.0,6.0,7.0,3.0,9.0,10.0,7.0,11.0,0.0,0.0,0.0,2.0,94.1,16.7,0.0,0.0,232740.0,56544.0,35600.0,28000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90206083,,24000.0,24000.0,24000.0, 60 months,15.59,578.42,C,C5,Financial Advisor,10+ years,RENT,115000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90206083,,debt_consolidation,Debt consolidation,787xx,TX,13.45,0.0,Jul-1978,680.0,684.0,1.0,73.0,,9.0,0.0,32025.0,74.8,28.0,f,14682.44,14682.44,16794.96,16794.96,9317.56,7477.4,0.0,0.0,0.0,Mar-2019,578.42,Apr-2019,Mar-2019,694.0,690.0,0.0,73.0,1.0,Individual,,,,0.0,0.0,76866.0,1.0,1.0,1.0,2.0,4.0,44841.0,,2.0,2.0,9776.0,75.0,42800.0,2.0,3.0,3.0,4.0,9608.0,8016.0,79.2,0.0,0.0,112.0,161.0,10.0,4.0,2.0,10.0,,4.0,,1.0,6.0,7.0,6.0,13.0,9.0,7.0,16.0,7.0,9.0,0.0,0.0,0.0,3.0,96.4,83.3,0.0,0.0,89293.0,76866.0,38600.0,46493.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90215114,,16000.0,16000.0,16000.0, 60 months,10.99,347.8,B,B4,Director of Loan Orgination,6 years,RENT,135000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90215114,,debt_consolidation,Debt consolidation,125xx,NY,13.8,0.0,Nov-2002,700.0,704.0,0.0,,91.0,12.0,1.0,21558.0,77.3,15.0,f,9350.0,9350.0,10090.01,10090.01,6650.0,3440.01,0.0,0.0,0.0,Mar-2019,347.8,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,73663.0,0.0,7.0,0.0,0.0,29.0,52105.0,66.0,0.0,2.0,6756.0,69.0,27900.0,0.0,0.0,0.0,2.0,6139.0,4501.0,81.9,0.0,0.0,166.0,55.0,14.0,14.0,0.0,18.0,,18.0,,0.0,4.0,5.0,4.0,6.0,8.0,5.0,7.0,5.0,12.0,0.0,0.0,0.0,0.0,100.0,100.0,1.0,0.0,106983.0,73663.0,24900.0,79083.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89917156,,30000.0,30000.0,30000.0, 60 months,13.99,697.9,C,C3,Programmer/IT,6 years,MORTGAGE,63500.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89917156,,debt_consolidation,Debt consolidation,571xx,SD,18.45,1.0,Feb-1998,690.0,694.0,0.0,5.0,,8.0,0.0,4595.0,52.8,22.0,f,0.0,0.0,32625.4474476263,32625.45,30000.0,2625.45,0.0,0.0,0.0,May-2017,28344.79,,Jun-2017,689.0,685.0,0.0,,1.0,Individual,,,,0.0,0.0,177135.0,2.0,4.0,1.0,3.0,4.0,25260.0,70.0,1.0,1.0,4086.0,66.0,8700.0,1.0,1.0,0.0,6.0,22142.0,3230.0,57.5,0.0,0.0,223.0,145.0,2.0,2.0,2.0,2.0,5.0,17.0,5.0,0.0,2.0,3.0,2.0,4.0,15.0,3.0,5.0,3.0,8.0,0.0,0.0,0.0,2.0,95.5,0.0,0.0,0.0,195907.0,29855.0,7600.0,36322.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90304259,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,Sr. Director,10+ years,MORTGAGE,180000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90304259,,debt_consolidation,Debt consolidation,327xx,FL,13.09,2.0,Mar-1995,690.0,694.0,3.0,13.0,,17.0,0.0,223516.0,91.0,31.0,f,0.0,0.0,36934.340877765404,36934.34,35000.0,1934.34,0.0,0.0,0.0,Feb-2017,34373.44,,Feb-2017,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,1074786.0,1.0,1.0,0.0,0.0,33.0,11275.0,50.0,1.0,2.0,11999.0,75.0,261500.0,1.0,1.0,3.0,2.0,71652.0,2301.0,93.5,0.0,0.0,156.0,258.0,3.0,3.0,4.0,3.0,48.0,1.0,48.0,0.0,7.0,9.0,7.0,15.0,3.0,12.0,24.0,9.0,17.0,0.0,0.0,0.0,1.0,90.3,71.4,0.0,0.0,1259960.0,234791.0,35500.0,22486.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90104160,,40000.0,40000.0,40000.0, 60 months,14.49,940.93,C,C4,Program Manager,8 years,MORTGAGE,140000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90104160,,credit_card,Credit card refinancing,207xx,MD,26.98,0.0,Apr-1998,725.0,729.0,1.0,43.0,,27.0,0.0,32745.0,43.7,49.0,f,24210.7,24210.7,27361.94,27361.94,15789.3,11572.64,0.0,0.0,0.0,Mar-2019,940.93,Apr-2019,Mar-2019,774.0,770.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,567522.0,3.0,13.0,2.0,4.0,4.0,158006.0,78.0,2.0,4.0,20063.0,66.0,74900.0,0.0,7.0,1.0,8.0,21828.0,23503.0,56.5,0.0,0.0,135.0,221.0,5.0,4.0,4.0,5.0,,6.0,,0.0,6.0,8.0,6.0,8.0,26.0,12.0,19.0,8.0,27.0,0.0,0.0,0.0,4.0,97.9,16.7,0.0,0.0,683099.0,190751.0,54000.0,169654.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +84093931,,10000.0,10000.0,10000.0, 60 months,10.99,217.38,B,B4,Valuation Director,3 years,OWN,142000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=84093931,,credit_card,Credit card refinancing,052xx,VT,12.49,0.0,May-2001,695.0,699.0,1.0,,,9.0,0.0,44868.0,56.8,33.0,f,5843.19,5843.19,6297.91,6297.91,4156.81,2141.1,0.0,0.0,0.0,Mar-2019,217.38,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,308431.0,1.0,2.0,1.0,1.0,8.0,8145.0,39.0,3.0,4.0,19226.0,53.0,78953.0,1.0,0.0,5.0,6.0,34270.0,34085.0,56.8,0.0,0.0,72.0,184.0,2.0,2.0,5.0,2.0,,3.0,,0.0,4.0,4.0,6.0,19.0,4.0,6.0,22.0,4.0,9.0,0.0,0.0,0.0,5.0,100.0,50.0,0.0,0.0,358246.0,53013.0,78953.0,20793.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89909317,,16000.0,16000.0,16000.0, 60 months,10.49,343.83,B,B3,Site Acquistion Specialist,1 year,MORTGAGE,75000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89909317,,credit_card,Credit card refinancing,801xx,CO,18.62,2.0,Jan-1998,680.0,684.0,2.0,18.0,,26.0,0.0,21908.0,43.7,60.0,f,0.0,0.0,4804.3,4804.3,3023.55,1780.75,0.0,0.0,0.0,Dec-2017,343.83,,Mar-2018,504.0,500.0,0.0,18.0,1.0,Individual,,,,0.0,0.0,483976.0,6.0,2.0,2.0,3.0,4.0,128719.0,57.0,8.0,11.0,4511.0,48.0,50100.0,1.0,5.0,6.0,15.0,21042.0,18157.0,48.4,0.0,0.0,154.0,224.0,2.0,2.0,3.0,2.0,,2.0,20.0,1.0,10.0,13.0,13.0,16.0,20.0,23.0,37.0,13.0,26.0,0.0,0.0,1.0,11.0,96.7,18.2,0.0,0.0,524072.0,150627.0,35200.0,140131.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90155323,,16000.0,16000.0,16000.0, 60 months,14.49,376.37,C,C4,Formen,10+ years,MORTGAGE,70000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90155323,,home_improvement,Home improvement,145xx,NY,15.4,1.0,Feb-2004,690.0,694.0,0.0,23.0,,11.0,0.0,2334.0,13.4,19.0,f,0.0,0.0,5165.61,5165.61,2138.82,1988.37,0.0,1038.42,186.9156,Sep-2017,376.37,,Jul-2018,549.0,545.0,0.0,23.0,1.0,Individual,,,,0.0,464.0,141796.0,3.0,2.0,1.0,4.0,12.0,44413.0,81.0,5.0,8.0,2253.0,34.0,17400.0,0.0,2.0,2.0,13.0,12891.0,6538.0,25.7,0.0,0.0,57.0,151.0,0.0,0.0,2.0,10.0,31.0,5.0,31.0,2.0,2.0,3.0,5.0,7.0,5.0,8.0,11.0,3.0,11.0,0.0,0.0,1.0,7.0,78.9,20.0,0.0,0.0,163729.0,46747.0,8800.0,51142.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90165728,,12000.0,12000.0,12000.0, 60 months,13.49,276.06,C,C2,retail associate,10+ years,MORTGAGE,85000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90165728,,debt_consolidation,Debt consolidation,109xx,NY,8.91,0.0,Apr-2001,660.0,664.0,0.0,,77.0,12.0,1.0,10109.0,46.6,24.0,f,0.0,0.0,13290.0580982955,13290.06,12000.0,1290.06,0.0,0.0,0.0,Aug-2017,10814.51,,Aug-2017,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,158493.0,1.0,1.0,1.0,2.0,5.0,22752.0,95.0,1.0,2.0,5976.0,72.0,21700.0,1.0,2.0,2.0,5.0,14408.0,8091.0,55.5,0.0,0.0,127.0,185.0,9.0,5.0,2.0,17.0,,9.0,,0.0,4.0,4.0,7.0,16.0,3.0,10.0,19.0,4.0,11.0,0.0,0.0,0.0,3.0,100.0,42.9,1.0,0.0,172985.0,32861.0,18200.0,23904.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88968758,,35000.0,35000.0,35000.0, 60 months,10.49,752.12,B,B3,QA Manager,2 years,MORTGAGE,130000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88968758,,debt_consolidation,Debt consolidation,982xx,WA,18.92,0.0,Nov-2000,700.0,704.0,1.0,29.0,,17.0,0.0,68222.0,70.7,40.0,f,20345.86,20345.86,21913.46,21913.46,14654.14,7259.32,0.0,0.0,0.0,Mar-2019,752.12,Apr-2019,Mar-2019,679.0,675.0,0.0,29.0,1.0,Individual,,,,0.0,0.0,490323.0,0.0,2.0,0.0,1.0,17.0,125521.0,,1.0,3.0,7166.0,71.0,118900.0,0.0,7.0,2.0,4.0,32688.0,6314.0,67.8,0.0,0.0,122.0,190.0,12.0,12.0,3.0,13.0,45.0,3.0,29.0,2.0,5.0,10.0,6.0,11.0,14.0,14.0,23.0,10.0,17.0,0.0,0.0,0.0,1.0,92.3,50.0,0.0,0.0,574107.0,193743.0,19600.0,132207.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90285347,,20000.0,20000.0,20000.0, 60 months,13.49,460.1,C,C2,Plumber,8 years,RENT,60000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90285347,,credit_card,Credit card refinancing,078xx,NJ,27.66,0.0,Dec-2004,670.0,674.0,0.0,50.0,60.0,14.0,1.0,24608.0,69.1,22.0,f,11986.44,11986.44,13327.91,13327.91,8013.56,5314.35,0.0,0.0,0.0,Mar-2019,460.1,Apr-2019,Mar-2019,749.0,745.0,0.0,50.0,1.0,Individual,,,,0.0,581.0,26942.0,0.0,2.0,0.0,0.0,29.0,2334.0,10.0,0.0,0.0,6960.0,46.0,35600.0,0.0,0.0,0.0,0.0,1924.0,3432.0,84.0,0.0,0.0,130.0,141.0,37.0,29.0,0.0,57.0,,,,1.0,8.0,11.0,8.0,11.0,6.0,12.0,15.0,11.0,14.0,0.0,0.0,0.0,0.0,95.5,75.0,0.0,0.0,58583.0,26942.0,21500.0,22983.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89837157,,35000.0,35000.0,35000.0, 60 months,13.49,805.17,C,C2,Sr. Software Engineer,1 year,OWN,170000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89837157,,credit_card,Credit card refinancing,945xx,CA,12.04,0.0,Sep-2004,705.0,709.0,1.0,,,15.0,0.0,27772.0,57.9,28.0,f,20977.47,20977.47,23463.98,23463.98,14022.53,9441.45,0.0,0.0,0.0,Mar-2019,805.17,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,407086.0,1.0,3.0,0.0,1.0,18.0,78364.0,95.0,1.0,3.0,13254.0,77.0,48000.0,2.0,0.0,3.0,6.0,27139.0,11433.0,66.3,0.0,0.0,144.0,103.0,12.0,4.0,2.0,12.0,,0.0,,0.0,4.0,5.0,6.0,8.0,12.0,10.0,13.0,5.0,15.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,450882.0,108741.0,33900.0,90277.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90096660,,12500.0,12500.0,12500.0, 60 months,13.49,287.56,C,C2,Driver,10+ years,RENT,75000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90096660,,debt_consolidation,Debt consolidation,871xx,NM,15.04,1.0,Nov-2000,680.0,684.0,1.0,22.0,,11.0,0.0,15085.0,61.1,38.0,f,7491.61,7491.61,8329.87,8329.87,5008.39,3321.48,0.0,0.0,0.0,Mar-2019,287.56,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,31644.0,1.0,2.0,1.0,1.0,8.0,16559.0,78.0,2.0,2.0,3592.0,69.0,24700.0,2.0,4.0,6.0,3.0,2877.0,3671.0,70.6,0.0,0.0,151.0,190.0,5.0,5.0,0.0,5.0,71.0,5.0,22.0,0.0,5.0,8.0,5.0,11.0,15.0,9.0,23.0,8.0,11.0,0.0,0.0,0.0,3.0,84.2,60.0,0.0,0.0,45976.0,31644.0,12500.0,21276.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89052159,,36750.0,36750.0,36750.0, 60 months,10.99,798.86,B,B4,Supervisor ,10+ years,MORTGAGE,51000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89052159,,debt_consolidation,Debt consolidation,109xx,NY,15.76,1.0,Jun-1997,695.0,699.0,0.0,2.0,,21.0,0.0,31404.0,26.7,40.0,f,0.0,0.0,43380.5309453075,43380.53,36750.0,6630.53,0.0,0.0,0.0,Nov-2018,230.33,,Nov-2018,804.0,800.0,0.0,,1.0,Joint App,105000.0,11.66,Not Verified,0.0,0.0,205151.0,2.0,1.0,0.0,0.0,33.0,5030.0,77.0,2.0,3.0,8237.0,29.0,117500.0,1.0,4.0,1.0,3.0,9769.0,79096.0,28.4,0.0,0.0,154.0,231.0,4.0,4.0,3.0,4.0,,11.0,,0.0,10.0,10.0,16.0,23.0,6.0,19.0,31.0,10.0,21.0,0.0,0.0,0.0,2.0,97.5,12.5,0.0,0.0,307169.0,36434.0,110500.0,6516.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90080699,,25000.0,25000.0,25000.0, 60 months,8.99,518.84,B,B1,Senior Tax Professional I,10+ years,MORTGAGE,80250.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90080699,,credit_card,Credit card refinancing,282xx,NC,22.15,0.0,Aug-2000,710.0,714.0,0.0,,,16.0,0.0,34718.0,58.5,39.0,f,0.0,0.0,27833.9251422971,27833.93,25000.0,2833.93,0.0,0.0,0.0,Feb-2018,20026.37,,Oct-2018,764.0,760.0,0.0,,1.0,Individual,,,,0.0,0.0,230458.0,0.0,3.0,0.0,1.0,18.0,34304.0,54.0,0.0,2.0,18323.0,56.0,59300.0,1.0,0.0,3.0,3.0,14404.0,7344.0,81.9,0.0,0.0,144.0,193.0,14.0,14.0,5.0,14.0,,1.0,,0.0,5.0,7.0,6.0,13.0,9.0,12.0,25.0,7.0,16.0,0.0,0.0,0.0,0.0,97.4,50.0,0.0,0.0,280442.0,69022.0,40500.0,63362.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90060187,,19000.0,19000.0,19000.0, 60 months,14.49,446.94,C,C4,Investigator II,10+ years,MORTGAGE,52000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90060187,,credit_card,Credit card refinancing,681xx,NE,23.93,1.0,May-2001,670.0,674.0,0.0,6.0,,13.0,0.0,8340.0,40.5,26.0,f,11500.15,11500.15,13019.78,13019.78,7499.85,5519.93,0.0,0.0,0.0,Mar-2019,446.94,Apr-2019,Mar-2019,709.0,705.0,0.0,6.0,1.0,Individual,,,,0.0,0.0,76576.0,1.0,1.0,1.0,1.0,6.0,7760.0,94.0,0.0,1.0,2957.0,56.0,20601.0,0.0,9.0,0.0,2.0,6961.0,43.0,98.6,0.0,0.0,184.0,122.0,15.0,6.0,1.0,15.0,,16.0,,1.0,1.0,7.0,1.0,3.0,9.0,11.0,15.0,7.0,13.0,0.0,0.0,1.0,1.0,96.0,100.0,0.0,0.0,108353.0,16100.0,3000.0,8252.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90114941,,18850.0,18850.0,18850.0, 60 months,15.59,454.3,C,C5,Maintenance Mechanic,4 years,RENT,53300.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90114941,,other,Other,225xx,VA,22.61,2.0,Aug-2005,710.0,714.0,0.0,16.0,86.0,9.0,1.0,3219.0,15.9,32.0,f,11531.85,11531.85,13133.88,13133.88,7318.15,5815.73,0.0,0.0,0.0,Mar-2019,454.3,Apr-2019,Mar-2019,679.0,675.0,0.0,17.0,1.0,Individual,,,,0.0,0.0,93243.0,1.0,3.0,1.0,2.0,8.0,90024.0,86.0,1.0,1.0,2474.0,39.0,20200.0,2.0,3.0,4.0,3.0,10360.0,8781.0,26.8,0.0,0.0,133.0,67.0,6.0,6.0,0.0,6.0,,7.0,16.0,1.0,4.0,4.0,4.0,5.0,22.0,6.0,9.0,4.0,9.0,0.0,0.0,1.0,2.0,89.3,0.0,0.0,1.0,134167.0,93243.0,12000.0,113967.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90236496,,25000.0,25000.0,25000.0, 60 months,14.49,588.08,C,C4,Driver,10+ years,MORTGAGE,82500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90236496,,debt_consolidation,Debt consolidation,727xx,AR,13.32,0.0,Oct-2001,695.0,699.0,0.0,,,12.0,0.0,14662.0,37.4,25.0,f,0.0,0.0,26486.601899787598,26486.6,25000.0,1486.6,0.0,0.0,0.0,Jul-2017,4802.08,,Dec-2018,729.0,725.0,0.0,,1.0,Joint App,106500.0,13.79,Not Verified,0.0,0.0,139941.0,0.0,2.0,1.0,2.0,9.0,18008.0,81.0,3.0,3.0,5110.0,53.0,39200.0,0.0,1.0,2.0,5.0,11662.0,8951.0,56.5,0.0,0.0,107.0,111.0,7.0,7.0,4.0,11.0,,9.0,,0.0,6.0,8.0,6.0,7.0,9.0,9.0,12.0,8.0,12.0,0.0,0.0,0.0,4.0,100.0,16.7,0.0,0.0,178991.0,32670.0,20600.0,22191.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90244987,,10000.0,10000.0,10000.0, 60 months,13.99,232.64,C,C3,Bus operator,10+ years,RENT,58000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90244987,,credit_card,Credit card refinancing,028xx,RI,13.18,1.0,Aug-2006,695.0,699.0,1.0,23.0,,20.0,0.0,36672.0,46.8,39.0,f,0.0,0.0,11424.8328135436,11424.83,10000.0,1424.83,0.0,0.0,0.0,Nov-2017,8613.72,,Aug-2018,669.0,665.0,0.0,23.0,1.0,Individual,,,,0.0,0.0,214986.0,2.0,1.0,1.0,3.0,1.0,9856.0,94.0,4.0,4.0,2498.0,52.0,78400.0,2.0,5.0,3.0,8.0,10749.0,14760.0,27.3,0.0,0.0,99.0,121.0,2.0,1.0,4.0,10.0,,1.0,,1.0,3.0,10.0,5.0,8.0,7.0,18.0,27.0,10.0,20.0,0.0,0.0,1.0,5.0,97.4,0.0,0.0,0.0,261836.0,46528.0,20300.0,10436.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89924710,,15550.0,15550.0,15550.0, 60 months,12.79,352.15,C,C1,Asst. produce manager,10+ years,RENT,54000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89924710,,other,Other,060xx,CT,10.67,0.0,Jul-1999,720.0,724.0,1.0,,100.0,11.0,1.0,7376.0,26.1,18.0,f,0.0,0.0,17806.4361359013,17806.44,15550.0,2256.44,0.0,0.0,0.0,Jan-2018,12887.39,,Nov-2018,789.0,785.0,0.0,,1.0,Individual,,,,0.0,225.0,15443.0,0.0,1.0,0.0,1.0,23.0,8067.0,61.0,1.0,2.0,2991.0,37.0,28300.0,1.0,0.0,2.0,3.0,1544.0,15145.0,31.5,0.0,0.0,90.0,206.0,10.0,10.0,0.0,18.0,,4.0,,0.0,4.0,6.0,6.0,7.0,3.0,10.0,15.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,20.0,1.0,0.0,41474.0,15443.0,22100.0,13174.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89838140,,13000.0,13000.0,13000.0, 60 months,15.59,313.31,C,C5,Sales,2 years,MORTGAGE,150000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89838140,,medical,Medical expenses,925xx,CA,29.14,0.0,Dec-1998,695.0,699.0,0.0,,,26.0,0.0,86634.0,47.0,53.0,f,0.0,0.0,15658.551363671999,15658.55,13000.0,2658.55,0.0,0.0,0.0,Mar-2018,10656.85,,Feb-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,432656.0,3.0,7.0,2.0,6.0,1.0,76599.0,63.0,3.0,7.0,17766.0,56.0,139200.0,1.0,0.0,0.0,13.0,16641.0,42017.0,52.5,0.0,0.0,162.0,213.0,1.0,1.0,2.0,1.0,,16.0,,0.0,7.0,9.0,13.0,15.0,23.0,18.0,28.0,9.0,26.0,0.0,0.0,0.0,5.0,100.0,23.1,0.0,0.0,553939.0,163233.0,88400.0,121971.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90082038,,12000.0,12000.0,12000.0, 60 months,12.79,271.75,C,C1,Community Relations/Exec Assistant,1 year,OWN,60000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90082038,,debt_consolidation,Debt consolidation,734xx,OK,24.38,3.0,Aug-2003,665.0,669.0,1.0,1.0,,10.0,0.0,7986.0,15.4,27.0,f,7144.97,7144.97,7866.94,7866.94,4855.03,3011.91,0.0,0.0,0.0,Mar-2019,271.75,Apr-2019,Mar-2019,704.0,700.0,0.0,1.0,1.0,Individual,,,,1.0,0.0,166436.0,1.0,3.0,1.0,2.0,12.0,46880.0,38.0,2.0,3.0,3134.0,24.0,52000.0,0.0,2.0,2.0,5.0,18493.0,29014.0,21.6,0.0,297.0,157.0,145.0,6.0,6.0,3.0,6.0,18.0,6.0,5.0,0.0,3.0,3.0,4.0,7.0,12.0,6.0,12.0,3.0,8.0,0.0,0.0,1.0,3.0,85.2,0.0,0.0,0.0,247185.0,54866.0,37000.0,68865.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89024107,,14000.0,14000.0,14000.0, 60 months,13.99,325.69,C,C3,Engineer Tech 4 ,10+ years,MORTGAGE,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89024107,,debt_consolidation,Debt consolidation,338xx,FL,25.6,1.0,Feb-1989,685.0,689.0,1.0,18.0,,11.0,0.0,90281.0,72.1,28.0,f,8432.14,8432.14,9456.71,9456.71,5567.86,3888.85,0.0,0.0,0.0,Mar-2019,325.69,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,251807.0,1.0,2.0,1.0,1.0,2.0,20257.0,75.0,0.0,2.0,2959.0,73.0,106300.0,2.0,5.0,3.0,3.0,22892.0,163.0,97.3,0.0,0.0,104.0,331.0,21.0,2.0,3.0,21.0,,2.0,18.0,0.0,2.0,7.0,2.0,6.0,3.0,8.0,22.0,7.0,11.0,0.0,0.0,0.0,1.0,96.4,100.0,0.0,0.0,283544.0,110538.0,6000.0,27044.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90224507,,32000.0,32000.0,32000.0, 60 months,12.79,724.67,C,C1,Nurse Anesthetist CRNA,10+ years,MORTGAGE,201000.0,Verified,Oct-2016,In Grace Period,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90224507,,credit_card,Credit card refinancing,544xx,WI,31.22,0.0,May-2001,680.0,684.0,1.0,,,24.0,0.0,75404.0,86.8,43.0,f,19560.85,19560.85,20233.92,20233.92,12439.15,7794.77,0.0,0.0,0.0,Feb-2019,724.67,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,489559.0,0.0,10.0,2.0,4.0,7.0,196903.0,76.0,0.0,0.0,19624.0,79.0,86900.0,1.0,5.0,8.0,4.0,21285.0,9496.0,88.8,0.0,0.0,184.0,169.0,37.0,7.0,3.0,37.0,,3.0,,0.0,10.0,10.0,10.0,10.0,27.0,12.0,13.0,10.0,24.0,0.0,0.0,0.0,2.0,100.0,80.0,0.0,0.0,600073.0,272307.0,84900.0,260373.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90245138,,36000.0,36000.0,36000.0, 60 months,13.99,837.48,C,C3,Sales Manager,10+ years,MORTGAGE,120000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90245138,,debt_consolidation,Debt consolidation,782xx,TX,14.59,1.0,Dec-2002,680.0,684.0,0.0,23.0,,8.0,0.0,13688.0,83.5,15.0,f,21682.74,21682.74,24258.94,24258.94,14317.26,9941.68,0.0,0.0,0.0,Mar-2019,837.48,Apr-2019,Mar-2019,689.0,685.0,0.0,24.0,1.0,Joint App,155000.0,13.22,Not Verified,0.0,0.0,277050.0,0.0,2.0,0.0,1.0,14.0,63459.0,62.0,0.0,0.0,5950.0,70.0,16400.0,1.0,0.0,1.0,1.0,34631.0,2612.0,84.0,0.0,0.0,125.0,165.0,40.0,14.0,2.0,40.0,,4.0,,2.0,4.0,4.0,4.0,4.0,7.0,5.0,6.0,4.0,8.0,0.0,0.0,0.0,0.0,73.3,75.0,0.0,0.0,309763.0,77147.0,16300.0,78713.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88948489,,25000.0,25000.0,25000.0, 60 months,15.59,602.52,C,C5,Lieutenant,10+ years,MORTGAGE,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88948489,,debt_consolidation,Debt consolidation,133xx,NY,31.49,0.0,Jun-1999,700.0,704.0,1.0,35.0,,21.0,0.0,42105.0,67.3,31.0,f,15294.23,15294.23,17418.95,17418.95,9705.77,7713.18,0.0,0.0,0.0,Mar-2019,602.52,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,160816.0,2.0,1.0,0.0,0.0,28.0,4905.0,28.0,2.0,3.0,5457.0,59.0,62600.0,0.0,0.0,3.0,3.0,7658.0,9094.0,70.7,0.0,0.0,106.0,207.0,2.0,2.0,3.0,2.0,35.0,2.0,35.0,0.0,12.0,18.0,13.0,15.0,4.0,19.0,24.0,18.0,21.0,0.0,0.0,0.0,2.0,90.3,46.2,0.0,0.0,220382.0,47010.0,31000.0,17657.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90058120,,20000.0,20000.0,20000.0, 60 months,10.99,434.75,B,B4,RN,6 years,MORTGAGE,67000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90058120,,credit_card,Credit card refinancing,450xx,OH,17.87,1.0,Jun-1996,700.0,704.0,1.0,17.0,,7.0,0.0,17602.0,43.1,26.0,f,0.0,0.0,21845.826905184,21845.83,20000.0,1845.83,0.0,0.0,0.0,Aug-2017,17945.29,,Dec-2018,774.0,770.0,0.0,17.0,1.0,Individual,,,,0.0,0.0,193409.0,0.0,3.0,0.0,0.0,29.0,45496.0,68.0,0.0,0.0,17602.0,59.0,40800.0,0.0,2.0,1.0,0.0,27630.0,23198.0,43.1,0.0,0.0,193.0,243.0,72.0,26.0,3.0,125.0,,0.0,17.0,1.0,1.0,1.0,3.0,7.0,14.0,3.0,9.0,1.0,7.0,0.0,0.0,1.0,0.0,96.0,0.0,0.0,0.0,243043.0,63098.0,40800.0,66743.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90053125,,27950.0,27950.0,27925.0, 60 months,13.99,650.21,C,C3,sales manager,10+ years,RENT,71000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90053125,,debt_consolidation,Debt consolidation,633xx,MO,15.7,0.0,Jun-2004,690.0,694.0,0.0,,,7.0,0.0,30396.0,71.0,27.0,f,0.0,0.0,33933.7100777968,33903.36,27950.0,5983.71,0.0,0.0,0.0,Jun-2018,21494.46,,Jul-2018,739.0,735.0,0.0,,1.0,Individual,,,,0.0,812.0,357719.0,0.0,1.0,0.0,0.0,29.0,10327.0,66.0,0.0,0.0,13411.0,70.0,42800.0,0.0,3.0,0.0,0.0,51103.0,10512.0,74.0,0.0,0.0,144.0,147.0,43.0,29.0,6.0,43.0,,,,0.0,3.0,4.0,3.0,7.0,8.0,4.0,13.0,4.0,7.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,402391.0,40723.0,40500.0,15582.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90080158,,20000.0,20000.0,20000.0, 60 months,10.99,434.75,B,B4,Senior Scienrist,10+ years,MORTGAGE,150000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90080158,,debt_consolidation,Debt consolidation,077xx,NJ,9.46,3.0,Oct-1998,680.0,684.0,0.0,8.0,,6.0,0.0,7456.0,46.3,21.0,f,11686.71,11686.71,12595.54,12595.54,8313.29,4282.25,0.0,0.0,0.0,Mar-2019,434.75,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,204387.0,0.0,1.0,0.0,0.0,38.0,16370.0,50.0,0.0,2.0,4583.0,49.0,16100.0,0.0,0.0,1.0,3.0,40877.0,5517.0,45.4,0.0,0.0,150.0,215.0,15.0,10.0,3.0,15.0,21.0,11.0,15.0,0.0,1.0,2.0,3.0,10.0,3.0,4.0,15.0,2.0,6.0,0.0,0.0,0.0,1.0,85.7,50.0,0.0,0.0,231552.0,23826.0,10100.0,32760.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818980,,12800.0,12800.0,12800.0, 60 months,15.59,308.49,C,C5,Dispatcher,5 years,RENT,40000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818980,,debt_consolidation,Debt consolidation,850xx,AZ,22.71,1.0,Jul-2004,695.0,699.0,1.0,12.0,,9.0,0.0,4803.0,31.6,20.0,f,7623.91,7623.91,9166.0,9166.0,5176.09,3989.91,0.0,0.0,0.0,Mar-2019,308.49,Apr-2019,Mar-2019,659.0,655.0,0.0,,1.0,Individual,,,,0.0,0.0,21731.0,0.0,3.0,0.0,2.0,19.0,16928.0,59.0,1.0,2.0,2754.0,49.0,15200.0,0.0,1.0,2.0,4.0,2415.0,1697.0,73.9,0.0,0.0,141.0,146.0,10.0,10.0,0.0,10.0,,0.0,,0.0,3.0,3.0,3.0,6.0,10.0,6.0,10.0,3.0,9.0,0.0,0.0,0.0,1.0,95.0,66.7,0.0,0.0,43980.0,21731.0,6500.0,28780.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90091610,,35000.0,35000.0,35000.0, 60 months,15.59,843.53,C,C5,Global Sales Executive,7 years,MORTGAGE,90000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90091610,,debt_consolidation,Debt consolidation,980xx,WA,13.73,0.0,Nov-1999,665.0,669.0,0.0,,,11.0,0.0,41528.0,64.5,34.0,f,0.0,0.0,37815.298564404904,37815.3,35000.0,2815.3,0.0,0.0,0.0,Apr-2017,33673.43,,Jul-2018,789.0,785.0,0.0,,1.0,Joint App,154000.0,9.36,Not Verified,0.0,0.0,377059.0,0.0,0.0,0.0,0.0,37.0,0.0,,0.0,1.0,12496.0,65.0,64400.0,1.0,2.0,0.0,2.0,47132.0,22872.0,64.5,0.0,0.0,132.0,202.0,20.0,11.0,4.0,20.0,,13.0,,0.0,7.0,7.0,10.0,22.0,6.0,10.0,24.0,7.0,11.0,0.0,0.0,0.0,1.0,100.0,42.9,0.0,0.0,404400.0,41528.0,64400.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89078465,,25000.0,25000.0,25000.0, 60 months,8.99,518.84,B,B1,Industrial Electrician ,10+ years,MORTGAGE,115000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89078465,,debt_consolidation,Debt consolidation,855xx,AZ,27.61,0.0,Nov-1986,735.0,739.0,0.0,45.0,,15.0,0.0,11322.0,29.6,39.0,f,14305.22,14305.22,15033.87,15033.87,10694.78,4339.09,0.0,0.0,0.0,Mar-2019,518.84,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,81044.0,0.0,6.0,0.0,3.0,14.0,69722.0,59.0,1.0,4.0,10030.0,50.0,38200.0,0.0,0.0,1.0,7.0,5789.0,17225.0,38.5,0.0,0.0,247.0,217.0,9.0,9.0,0.0,16.0,,12.0,,0.0,3.0,5.0,4.0,10.0,17.0,9.0,21.0,5.0,15.0,0.0,0.0,0.0,1.0,97.4,25.0,0.0,0.0,167635.0,81044.0,28000.0,129435.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89885324,,11200.0,11200.0,11200.0, 60 months,9.49,235.17,B,B2,Laboratory Technician,10+ years,RENT,46109.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89885324,,debt_consolidation,Debt consolidation,902xx,CA,29.0,1.0,Sep-2000,680.0,684.0,0.0,11.0,59.0,11.0,1.0,14919.0,50.0,17.0,f,6442.71,6442.71,6814.03,6814.03,4757.29,2056.74,0.0,0.0,0.0,Mar-2019,235.17,Apr-2019,Mar-2019,684.0,680.0,0.0,59.0,1.0,Individual,,,,0.0,0.0,22036.0,1.0,2.0,0.0,0.0,32.0,7117.0,28.0,2.0,3.0,7401.0,50.0,29800.0,0.0,0.0,0.0,3.0,2003.0,3311.0,50.0,0.0,0.0,151.0,192.0,4.0,4.0,0.0,4.0,,,,0.0,9.0,9.0,10.0,11.0,5.0,9.0,12.0,9.0,11.0,,0.0,0.0,2.0,88.0,0.0,1.0,0.0,55211.0,22036.0,29800.0,25411.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90324722,,20000.0,20000.0,20000.0, 60 months,15.59,482.02,C,C5,VP ITSM Change Management,8 years,MORTGAGE,110000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90324722,,debt_consolidation,Debt consolidation,600xx,IL,15.76,1.0,Jul-1998,685.0,689.0,1.0,5.0,52.0,17.0,1.0,14565.0,33.2,49.0,f,0.0,0.0,23461.4104021692,23461.41,20000.0,3461.41,0.0,0.0,0.0,Dec-2017,17238.46,,Mar-2019,699.0,695.0,1.0,5.0,1.0,Individual,,,,0.0,0.0,47296.0,2.0,2.0,3.0,5.0,5.0,32731.0,83.0,2.0,3.0,5769.0,57.0,47700.0,1.0,1.0,3.0,8.0,2956.0,29518.0,35.1,1.0,0.0,153.0,218.0,4.0,4.0,2.0,4.0,,4.0,,1.0,7.0,10.0,9.0,20.0,15.0,13.0,29.0,10.0,17.0,0.0,0.0,1.0,5.0,97.4,11.1,1.0,0.0,87428.0,47296.0,43400.0,39550.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90052921,,20000.0,20000.0,20000.0, 60 months,10.49,429.78,B,B3,Policy Analyst,3 years,MORTGAGE,110000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90052921,,credit_card,Credit card refinancing,220xx,VA,20.82,2.0,Jul-1993,720.0,724.0,0.0,1.0,,26.0,0.0,21209.0,27.1,45.0,f,11626.28,11626.28,12509.7,12509.7,8373.72,4135.98,0.0,0.0,0.0,Mar-2019,429.78,Apr-2019,Nov-2018,709.0,705.0,0.0,,1.0,Individual,,,,1.0,0.0,364732.0,2.0,7.0,1.0,1.0,5.0,149020.0,40.0,4.0,7.0,11692.0,33.0,78200.0,0.0,2.0,0.0,8.0,15197.0,42950.0,32.0,0.0,45.0,226.0,278.0,3.0,3.0,3.0,7.0,1.0,21.0,1.0,0.0,8.0,12.0,8.0,18.0,14.0,18.0,28.0,12.0,25.0,0.0,1.0,0.0,5.0,93.2,0.0,0.0,0.0,457104.0,170229.0,63200.0,170504.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90285684,,29925.0,29925.0,29925.0, 60 months,12.79,677.68,C,C1,,,MORTGAGE,59865.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90285684,,debt_consolidation,Debt consolidation,900xx,CA,17.18,0.0,Feb-1997,770.0,774.0,0.0,26.0,,39.0,0.0,5541.0,5.5,51.0,f,17809.73,17809.73,19631.46,19631.46,12115.27,7516.19,0.0,0.0,0.0,Mar-2019,677.68,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,0.0,91.0,237882.0,2.0,1.0,0.0,2.0,16.0,23010.0,82.0,4.0,10.0,2305.0,22.0,100300.0,0.0,0.0,1.0,12.0,6608.0,50160.0,8.8,0.0,0.0,23.0,235.0,1.0,1.0,3.0,6.0,,9.0,26.0,0.0,4.0,5.0,15.0,17.0,2.0,37.0,46.0,5.0,39.0,0.0,0.0,0.0,4.0,98.0,0.0,0.0,0.0,356300.0,28551.0,55000.0,28000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90134183,,20000.0,20000.0,20000.0, 60 months,9.49,419.94,B,B2,Shipping/Receiving Manager,10+ years,RENT,62000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90134183,,debt_consolidation,Debt consolidation,109xx,NY,11.4,0.0,Aug-2002,710.0,714.0,1.0,68.0,,11.0,0.0,13599.0,35.0,42.0,f,0.0,0.0,10202.95,10202.95,4446.2,2325.56,0.0,3431.19,617.6142,Feb-2018,419.94,,Oct-2018,584.0,580.0,0.0,,1.0,Individual,,,,0.0,0.0,94742.0,3.0,3.0,1.0,2.0,7.0,81143.0,82.0,4.0,6.0,6757.0,46.0,38800.0,1.0,4.0,1.0,8.0,9474.0,12122.0,41.7,0.0,0.0,129.0,169.0,5.0,5.0,0.0,6.0,,3.0,,0.0,3.0,5.0,4.0,7.0,25.0,8.0,17.0,5.0,11.0,0.0,0.0,0.0,5.0,95.2,25.0,0.0,0.0,117473.0,94742.0,20800.0,78673.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89887458,,21600.0,21600.0,21600.0, 60 months,10.49,464.17,B,B3,Terminal Manager,3 years,MORTGAGE,72500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89887458,,debt_consolidation,Debt consolidation,372xx,TN,19.81,0.0,Oct-1999,725.0,729.0,2.0,41.0,,19.0,0.0,7218.0,13.1,51.0,f,0.0,0.0,23455.9570429554,23455.96,21600.0,1855.96,0.0,0.0,0.0,Sep-2017,2296.85,,Nov-2018,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,208111.0,5.0,2.0,1.0,4.0,9.0,49352.0,76.0,5.0,8.0,6756.0,30.0,55000.0,1.0,0.0,7.0,13.0,12242.0,32448.0,18.1,0.0,0.0,138.0,203.0,2.0,2.0,6.0,3.0,,4.0,41.0,0.0,3.0,4.0,11.0,15.0,11.0,16.0,34.0,4.0,19.0,0.0,0.0,0.0,7.0,98.0,11.1,0.0,0.0,264656.0,56570.0,39600.0,57656.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90029127,,16100.0,16100.0,16100.0, 60 months,9.49,338.06,B,B2,Auto appraiser,1 year,MORTGAGE,70000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90029127,,debt_consolidation,Debt consolidation,117xx,NY,11.25,0.0,Dec-1998,730.0,734.0,0.0,71.0,,11.0,0.0,11242.0,23.8,19.0,f,0.0,0.0,17430.6799471927,17430.68,16100.0,1330.68,0.0,0.0,0.0,Sep-2017,14058.57,,Sep-2017,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,263839.0,0.0,1.0,1.0,2.0,11.0,3889.0,22.0,1.0,2.0,8367.0,23.0,47200.0,1.0,0.0,1.0,4.0,26384.0,31458.0,26.3,0.0,0.0,213.0,155.0,12.0,11.0,1.0,12.0,71.0,11.0,71.0,0.0,4.0,4.0,6.0,9.0,6.0,8.0,12.0,4.0,11.0,0.0,0.0,0.0,2.0,94.7,33.3,0.0,0.0,324319.0,15131.0,42700.0,17817.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89906326,,19250.0,19250.0,19250.0, 36 months,15.59,672.89,C,C5,Labour,6 years,OWN,56000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89906326,,small_business,Business,704xx,LA,3.32,0.0,Feb-2007,770.0,774.0,1.0,,,9.0,0.0,4604.0,12.3,13.0,f,0.0,0.0,21389.7643514833,21389.76,19250.0,2139.76,0.0,0.0,0.0,Jul-2017,16023.31,,Jul-2017,789.0,785.0,0.0,,1.0,Individual,,,,0.0,0.0,71157.0,1.0,0.0,0.0,0.0,60.0,0.0,,1.0,2.0,3972.0,12.0,37400.0,0.0,1.0,1.0,2.0,7906.0,28126.0,13.7,0.0,0.0,115.0,95.0,6.0,6.0,1.0,6.0,,6.0,,0.0,2.0,3.0,7.0,7.0,3.0,8.0,9.0,3.0,9.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,108095.0,4604.0,32600.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90245482,,24000.0,24000.0,24000.0, 60 months,12.79,543.5,C,C1,owner,5 years,RENT,62000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90245482,,debt_consolidation,Debt consolidation,915xx,CA,14.46,1.0,Feb-2004,675.0,679.0,1.0,17.0,,12.0,0.0,6780.0,34.1,22.0,f,0.0,0.0,11031.19,11031.19,6497.86,4533.33,0.0,0.0,0.0,Jun-2018,543.5,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,17516.0,0.0,1.0,0.0,2.0,13.0,10736.0,72.0,0.0,1.0,3245.0,50.0,19900.0,1.0,0.0,2.0,3.0,1592.0,11820.0,36.5,0.0,0.0,14.0,151.0,21.0,13.0,0.0,29.0,17.0,5.0,17.0,0.0,7.0,7.0,9.0,14.0,2.0,11.0,20.0,7.0,12.0,0.0,0.0,0.0,0.0,90.9,25.0,0.0,0.0,34900.0,17516.0,18600.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88849436,,35000.0,35000.0,35000.0, 60 months,10.99,760.82,B,B4,,,MORTGAGE,93500.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88849436,,debt_consolidation,Debt consolidation,926xx,CA,26.97,0.0,Jan-1968,740.0,744.0,0.0,,,16.0,0.0,48621.0,68.2,37.0,f,20451.5,20451.5,22042.41,22042.41,14548.5,7493.91,0.0,0.0,0.0,Mar-2019,760.82,Apr-2019,Mar-2019,784.0,780.0,0.0,,1.0,Individual,,,,0.0,0.0,410726.0,1.0,3.0,0.0,1.0,22.0,67389.0,68.0,0.0,0.0,15667.0,68.0,71300.0,0.0,10.0,3.0,2.0,27382.0,19440.0,69.6,0.0,0.0,133.0,584.0,25.0,6.0,6.0,25.0,,6.0,,0.0,9.0,10.0,10.0,12.0,12.0,12.0,18.0,10.0,16.0,0.0,0.0,0.0,1.0,100.0,55.6,0.0,0.0,455429.0,116010.0,64000.0,88129.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88553529,,12000.0,12000.0,12000.0, 60 months,11.49,263.86,B,B5,Client Support Specialist,10+ years,RENT,80000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88553529,,debt_consolidation,Debt consolidation,565xx,MN,22.76,0.0,Dec-1998,675.0,679.0,1.0,51.0,65.0,17.0,1.0,12939.0,58.0,26.0,f,7047.92,7047.92,7651.94,7651.94,4952.08,2699.86,0.0,0.0,0.0,Mar-2019,263.86,Apr-2019,Mar-2019,714.0,710.0,0.0,43.0,1.0,Individual,,,,0.0,0.0,32704.0,2.0,6.0,2.0,4.0,9.0,19765.0,63.0,3.0,4.0,6538.0,58.0,22460.0,0.0,0.0,2.0,8.0,1923.0,2775.0,59.0,0.0,0.0,213.0,190.0,2.0,2.0,1.0,2.0,,2.0,,0.0,6.0,11.0,6.0,6.0,14.0,11.0,11.0,6.0,17.0,,0.0,0.0,5.0,88.0,16.7,0.0,0.0,53860.0,32704.0,16650.0,31400.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90094364,,4500.0,4500.0,4500.0, 36 months,14.49,154.88,C,C4,IT Solutions Architect II,10+ years,MORTGAGE,120000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90094364,,debt_consolidation,Debt consolidation,750xx,TX,17.49,0.0,Jun-2001,660.0,664.0,0.0,80.0,,13.0,0.0,53599.0,100.0,20.0,f,0.0,0.0,5074.6731101726,5074.67,4500.0,574.67,0.0,0.0,0.0,Oct-2017,3374.61,,Oct-2017,594.0,590.0,0.0,,1.0,Individual,,,,0.0,0.0,182132.0,0.0,1.0,0.0,1.0,14.0,6960.0,45.0,1.0,1.0,7659.0,88.0,53600.0,0.0,2.0,2.0,2.0,14010.0,0.0,101.1,0.0,0.0,183.0,110.0,8.0,8.0,3.0,29.0,80.0,8.0,80.0,0.0,4.0,11.0,4.0,5.0,5.0,11.0,12.0,11.0,13.0,0.0,0.0,0.0,1.0,95.0,100.0,0.0,0.0,212885.0,60559.0,13300.0,15423.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89819101,,25000.0,25000.0,25000.0, 60 months,9.49,524.93,B,B2,Training Manager,1 year,MORTGAGE,75000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89819101,,debt_consolidation,Debt consolidation,891xx,NV,23.53,0.0,Aug-2003,750.0,754.0,1.0,,,13.0,0.0,11636.0,41.9,23.0,f,0.0,0.0,28674.0507742535,28674.05,25000.0,3674.05,0.0,0.0,0.0,Jul-2018,18155.68,,Jul-2018,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,268402.0,0.0,2.0,0.0,0.0,38.0,11696.0,37.0,0.0,1.0,11062.0,56.0,27800.0,1.0,0.0,1.0,2.0,22367.0,6162.0,64.6,0.0,0.0,93.0,157.0,17.0,17.0,1.0,47.0,,6.0,,0.0,2.0,3.0,4.0,6.0,8.0,9.0,13.0,3.0,13.0,0.0,0.0,0.0,0.0,100.0,25.0,0.0,0.0,309811.0,45677.0,17400.0,31666.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89936581,,4500.0,4500.0,4500.0, 36 months,8.59,142.25,A,A5,Foster care worker ,1 year,MORTGAGE,30000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89936581,,debt_consolidation,Debt consolidation,705xx,LA,3.88,0.0,Nov-2007,695.0,699.0,0.0,24.0,,8.0,0.0,1311.0,13.7,29.0,w,0.0,0.0,4570.6046448909,4570.6,4500.0,70.6,0.0,0.0,0.0,Mar-2017,1484.5,,Nov-2017,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,164622.0,1.0,1.0,0.0,3.0,17.0,48746.0,,0.0,4.0,1311.0,14.0,9600.0,6.0,0.0,3.0,8.0,23517.0,3089.0,29.8,0.0,0.0,51.0,106.0,13.0,5.0,1.0,13.0,24.0,8.0,24.0,0.0,1.0,1.0,2.0,6.0,16.0,6.0,11.0,1.0,8.0,0.0,0.0,0.0,1.0,100.0,0.0,0.0,0.0,173717.0,50057.0,4400.0,48746.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90040580,,35000.0,35000.0,35000.0, 60 months,12.79,792.61,C,C1,Analyst,2 years,MORTGAGE,160000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90040580,,debt_consolidation,Debt consolidation,957xx,CA,17.76,0.0,Jul-2003,670.0,674.0,1.0,72.0,61.0,15.0,1.0,41141.0,68.6,45.0,f,0.0,0.0,40678.6133355818,40678.61,35000.0,5678.61,0.0,0.0,0.0,Feb-2018,28696.1,,Jan-2019,744.0,740.0,0.0,72.0,1.0,Individual,,,,0.0,0.0,554301.0,2.0,3.0,3.0,3.0,3.0,78868.0,82.0,2.0,2.0,9264.0,74.0,60000.0,3.0,14.0,2.0,6.0,39593.0,16587.0,40.3,0.0,0.0,122.0,158.0,2.0,2.0,3.0,2.0,72.0,1.0,72.0,1.0,3.0,6.0,6.0,13.0,14.0,11.0,28.0,6.0,15.0,0.0,0.0,0.0,6.0,97.4,33.3,1.0,0.0,592323.0,120009.0,27800.0,91297.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88769873,,14400.0,14400.0,14400.0, 60 months,10.99,313.02,B,B4,Safety Director,1 year,OWN,49400.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88769873,,credit_card,Credit card refinancing,153xx,PA,13.85,0.0,Oct-2006,685.0,689.0,0.0,,64.0,18.0,1.0,5779.0,35.2,28.0,f,0.0,0.0,3677.17,3677.17,1112.03,757.3,0.0,1807.84,325.4112,Apr-2017,313.02,,Oct-2017,694.0,690.0,0.0,,1.0,Individual,,,,0.0,0.0,21772.0,1.0,1.0,1.0,2.0,11.0,15993.0,88.0,4.0,10.0,2151.0,63.0,16400.0,0.0,1.0,6.0,12.0,1361.0,757.0,76.3,0.0,0.0,110.0,119.0,6.0,6.0,0.0,45.0,,2.0,,0.0,2.0,8.0,2.0,8.0,4.0,17.0,24.0,8.0,18.0,0.0,0.0,0.0,5.0,100.0,50.0,1.0,0.0,34605.0,21772.0,3200.0,18205.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89928399,,16000.0,16000.0,16000.0, 60 months,13.99,372.21,C,C3,Sourcer/Researcher Consultant,2 years,RENT,50000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89928399,,vacation,Vacation,951xx,CA,18.14,0.0,Apr-2001,695.0,699.0,0.0,,,11.0,0.0,14680.0,84.9,14.0,f,9636.89,9636.89,10781.65,10781.65,6363.11,4418.54,0.0,0.0,0.0,Mar-2019,372.21,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,33984.0,1.0,5.0,0.0,0.0,97.0,19304.0,72.0,1.0,1.0,9710.0,77.0,17300.0,0.0,0.0,0.0,1.0,3089.0,354.0,96.9,0.0,0.0,144.0,185.0,4.0,4.0,0.0,130.0,,22.0,,0.0,2.0,6.0,2.0,2.0,7.0,6.0,7.0,6.0,11.0,0.0,0.0,0.0,1.0,100.0,100.0,0.0,0.0,44265.0,33984.0,11500.0,26965.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818677,,24000.0,24000.0,24000.0, 60 months,13.49,552.12,C,C2,Group enviromental Manager,10+ years,MORTGAGE,145000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818677,,medical,Medical expenses,325xx,FL,25.85,0.0,Apr-1969,720.0,724.0,0.0,30.0,,22.0,0.0,60328.0,59.6,27.0,f,0.0,0.0,24012.2300001044,24012.23,24000.0,12.23,0.0,0.0,0.0,Oct-2016,24030.22,,Sep-2016,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,112899.0,0.0,2.0,0.0,1.0,16.0,45430.0,75.0,0.0,0.0,17366.0,61.0,101300.0,0.0,2.0,0.0,1.0,5132.0,14121.0,63.6,0.0,0.0,141.0,569.0,50.0,16.0,2.0,50.0,31.0,16.0,31.0,0.0,3.0,10.0,9.0,11.0,2.0,19.0,23.0,10.0,22.0,0.0,0.0,0.0,0.0,92.6,22.2,0.0,0.0,303334.0,105758.0,38800.0,129934.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90164560,,12000.0,12000.0,12000.0, 60 months,13.49,276.06,C,C2,Manager,6 years,MORTGAGE,40500.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90164560,,debt_consolidation,Debt consolidation,895xx,NV,23.23,0.0,Sep-1997,675.0,679.0,1.0,,69.0,8.0,1.0,7648.0,37.1,35.0,f,0.0,0.0,13964.2435254506,13964.24,12000.0,1964.24,0.0,0.0,0.0,Jan-2018,10063.66,,Feb-2018,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,14341.0,0.0,0.0,0.0,4.0,17.0,6693.0,67.0,0.0,1.0,7046.0,47.0,20600.0,2.0,0.0,3.0,6.0,2390.0,9573.0,44.0,0.0,0.0,119.0,228.0,21.0,16.0,2.0,33.0,,3.0,,0.0,2.0,3.0,4.0,11.0,19.0,7.0,14.0,3.0,7.0,0.0,0.0,0.0,0.0,100.0,25.0,1.0,0.0,30600.0,14341.0,17100.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88892395,,18000.0,18000.0,18000.0, 60 months,8.99,373.57,B,B1,Millworker,10+ years,MORTGAGE,110000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88892395,,debt_consolidation,Debt consolidation,117xx,NY,13.96,1.0,Dec-2004,685.0,689.0,0.0,23.0,,10.0,0.0,16105.0,47.8,23.0,f,10299.59,10299.59,10824.54,10824.54,7700.41,3124.13,0.0,0.0,0.0,Mar-2019,373.57,Apr-2019,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,0.0,309980.0,1.0,2.0,0.0,2.0,16.0,24087.0,68.0,2.0,2.0,5606.0,58.0,33700.0,3.0,1.0,1.0,4.0,30998.0,15806.0,48.0,0.0,0.0,133.0,134.0,2.0,2.0,1.0,2.0,,10.0,,0.0,5.0,6.0,5.0,9.0,6.0,7.0,15.0,6.0,10.0,0.0,0.0,0.0,2.0,95.7,60.0,0.0,0.0,397576.0,40192.0,30400.0,35476.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89024077,,25000.0,25000.0,25000.0, 60 months,9.49,524.93,B,B2,Boiler operator,6 years,MORTGAGE,75000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89024077,,debt_consolidation,Debt consolidation,557xx,MN,24.88,0.0,Sep-1989,730.0,734.0,0.0,,93.0,12.0,1.0,100372.0,39.6,27.0,f,0.0,0.0,29473.9864089143,29473.99,25000.0,4473.99,0.0,0.0,0.0,Feb-2019,15314.06,,Feb-2019,804.0,800.0,0.0,,1.0,Individual,,,,0.0,0.0,263301.0,0.0,2.0,0.0,0.0,28.0,11751.0,54.0,0.0,1.0,7477.0,43.0,147500.0,0.0,2.0,0.0,2.0,21942.0,35633.0,35.2,0.0,0.0,136.0,324.0,17.0,7.0,3.0,17.0,,16.0,,0.0,4.0,7.0,5.0,12.0,7.0,8.0,17.0,7.0,12.0,0.0,0.0,0.0,1.0,100.0,20.0,0.0,1.0,333662.0,112123.0,55000.0,21585.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90006838,,5000.0,5000.0,5000.0, 36 months,21.49,189.64,D,D5,Customer Service,2 years,RENT,43000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90006838,,moving,Moving and relocation,112xx,NY,1.4,1.0,May-2008,670.0,674.0,1.0,22.0,,4.0,0.0,913.0,22.8,19.0,f,0.0,0.0,5298.5310199892,5298.53,5000.0,298.53,0.0,0.0,0.0,Feb-2017,2517.2,,Mar-2017,759.0,755.0,0.0,22.0,1.0,Individual,,,,0.0,0.0,60559.0,0.0,1.0,0.0,1.0,21.0,59646.0,,0.0,1.0,782.0,19.0,4000.0,1.0,0.0,1.0,3.0,15140.0,3087.0,22.8,0.0,0.0,100.0,26.0,18.0,13.0,0.0,18.0,,3.0,,1.0,2.0,2.0,2.0,2.0,16.0,2.0,2.0,2.0,4.0,0.0,0.0,1.0,0.0,94.1,0.0,0.0,0.0,64546.0,60559.0,4000.0,59646.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818207,,16000.0,16000.0,16000.0, 60 months,12.79,362.34,C,C1,,,OWN,105000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818207,,debt_consolidation,Debt consolidation,064xx,CT,15.41,1.0,May-1977,680.0,684.0,0.0,1.0,,10.0,0.0,11240.0,23.5,37.0,f,9522.16,9522.16,10496.49,10496.49,6477.84,4018.65,0.0,0.0,0.0,Mar-2019,362.34,Apr-2019,Mar-2019,694.0,690.0,0.0,,1.0,Individual,,,,1.0,0.0,21488.0,1.0,2.0,1.0,2.0,12.0,10248.0,49.0,0.0,1.0,4925.0,31.0,47900.0,1.0,0.0,3.0,4.0,2388.0,26065.0,17.0,0.0,0.0,161.0,472.0,17.0,1.0,6.0,17.0,,3.0,,0.0,3.0,5.0,4.0,14.0,8.0,7.0,21.0,5.0,10.0,0.0,1.0,0.0,2.0,97.3,25.0,0.0,0.0,68726.0,21488.0,31400.0,20826.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89838483,,10000.0,10000.0,10000.0, 60 months,15.59,241.01,C,C5,Outside Sales,3 years,RENT,48000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89838483,,credit_card,Credit card refinancing,926xx,CA,29.18,0.0,Mar-2011,665.0,669.0,1.0,,49.0,9.0,3.0,14495.0,65.0,12.0,f,0.0,0.0,12612.3521450355,12612.35,10000.0,2612.35,0.0,0.0,0.0,Sep-2018,7318.79,,Mar-2019,674.0,670.0,0.0,,1.0,Individual,,,,0.0,371.0,32627.0,1.0,1.0,0.0,0.0,37.0,18132.0,,1.0,2.0,5014.0,65.0,22300.0,0.0,0.0,1.0,2.0,3625.0,6505.0,69.0,0.0,0.0,66.0,66.0,5.0,5.0,0.0,5.0,,5.0,,0.0,6.0,6.0,6.0,6.0,3.0,8.0,9.0,6.0,9.0,0.0,0.0,0.0,1.0,100.0,16.7,1.0,2.0,67016.0,32627.0,21000.0,44716.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89078718,,2000.0,2000.0,2000.0, 36 months,8.99,63.6,B,B1,Supervisor ,10+ years,MORTGAGE,75000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89078718,,debt_consolidation,Debt consolidation,328xx,FL,15.01,0.0,Dec-1984,710.0,714.0,1.0,,,12.0,0.0,7330.0,44.7,25.0,f,0.0,0.0,936.89,936.89,703.99,217.9,15.0,0.0,0.0,Apr-2018,142.2,,Mar-2019,554.0,550.0,0.0,,1.0,Individual,,,,0.0,4695.0,112063.0,3.0,2.0,1.0,3.0,2.0,29841.0,87.0,3.0,3.0,3716.0,73.0,16400.0,0.0,1.0,3.0,6.0,9339.0,578.0,91.5,0.0,0.0,151.0,381.0,1.0,1.0,5.0,6.0,,2.0,,1.0,2.0,5.0,2.0,2.0,6.0,9.0,14.0,5.0,12.0,0.0,0.0,0.0,4.0,96.0,100.0,0.0,0.0,163456.0,37171.0,6800.0,34256.0,,,,,,,,,,,,,,N,INTEREST ONLY-3 MONTHS DEFERRAL,NATURAL_DISASTER,COMPLETED,3.0,10.83,Sep-2017,Dec-2017,Oct-2017,3.0,0.0,Current,32.49,1452.66,63.25,Cash,N,,,,,, +89814150,,20000.0,20000.0,20000.0, 60 months,8.99,415.08,B,B1,Owner,10+ years,MORTGAGE,120000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89814150,,credit_card,Credit card refinancing,398xx,GA,20.68,0.0,Sep-2003,695.0,699.0,0.0,,,10.0,0.0,52934.0,74.6,23.0,f,11443.92,11443.92,12027.33,12027.33,8556.08,3471.25,0.0,0.0,0.0,Mar-2019,415.08,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,0.0,454040.0,0.0,1.0,0.0,1.0,16.0,18302.0,64.0,0.0,0.0,8903.0,71.0,71000.0,1.0,3.0,0.0,1.0,45404.0,15581.0,66.1,0.0,0.0,134.0,155.0,25.0,16.0,4.0,25.0,,21.0,,0.0,6.0,7.0,6.0,8.0,9.0,7.0,10.0,7.0,10.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,557750.0,71236.0,46000.0,28800.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89909390,,26000.0,26000.0,26000.0, 60 months,13.99,604.84,C,C3,Office Coordinator,4 years,MORTGAGE,85000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89909390,,debt_consolidation,Debt consolidation,975xx,OR,15.06,1.0,Oct-1990,675.0,679.0,0.0,12.0,40.0,21.0,1.0,19243.0,34.1,32.0,f,15659.98,15659.98,17489.84,17489.84,10340.02,7149.82,0.0,0.0,0.0,Mar-2019,604.84,Apr-2019,Mar-2019,699.0,695.0,0.0,,1.0,Individual,,,,0.0,3775.0,28124.0,0.0,1.0,0.0,1.0,18.0,8881.0,59.0,0.0,3.0,5371.0,39.0,56400.0,0.0,0.0,0.0,4.0,1406.0,20758.0,42.3,0.0,0.0,18.0,311.0,14.0,14.0,0.0,29.0,12.0,20.0,12.0,0.0,5.0,9.0,9.0,14.0,1.0,20.0,31.0,9.0,21.0,0.0,0.0,0.0,0.0,96.9,11.1,0.0,0.0,71400.0,28124.0,36000.0,15000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89995412,,24000.0,24000.0,24000.0, 60 months,11.49,527.71,B,B5,Project Manager,4 years,MORTGAGE,95000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89995412,,credit_card,Credit card refinancing,226xx,VA,22.01,1.0,Nov-2007,710.0,714.0,1.0,16.0,,15.0,0.0,50439.0,65.0,24.0,f,14096.18,14096.18,15288.27,15288.27,9903.82,5384.45,0.0,0.0,0.0,Mar-2019,527.71,Apr-2019,Mar-2019,649.0,645.0,0.0,,1.0,Individual,,,,0.0,0.0,358054.0,2.0,3.0,2.0,2.0,12.0,114440.0,92.0,3.0,3.0,4786.0,65.0,77200.0,0.0,2.0,3.0,5.0,23870.0,2550.0,57.0,0.0,0.0,106.0,103.0,3.0,3.0,3.0,5.0,16.0,4.0,16.0,0.0,4.0,11.0,3.0,4.0,11.0,11.0,11.0,6.0,15.0,,0.0,0.0,5.0,96.0,25.0,0.0,0.0,407953.0,122497.0,10200.0,124557.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89818294,,21000.0,21000.0,21000.0, 60 months,14.49,493.99,C,C4,Cad drafter,< 1 year,RENT,48000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89818294,,debt_consolidation,Debt consolidation,882xx,NM,27.0,0.0,Apr-2003,670.0,674.0,0.0,,,13.0,0.0,17328.0,63.7,20.0,f,12710.56,12710.56,14410.24,14410.24,8289.44,6120.8,0.0,0.0,0.0,Mar-2019,493.99,Apr-2019,Mar-2019,634.0,630.0,0.0,,1.0,Individual,,,,0.0,0.0,33489.0,0.0,1.0,0.0,0.0,25.0,16161.0,77.0,0.0,2.0,2660.0,70.0,27200.0,1.0,0.0,1.0,2.0,2791.0,5655.0,69.9,0.0,0.0,147.0,161.0,19.0,19.0,0.0,28.0,,7.0,,0.0,8.0,11.0,9.0,11.0,5.0,12.0,15.0,11.0,13.0,0.0,0.0,0.0,0.0,100.0,87.5,0.0,0.0,48217.0,33489.0,18800.0,21017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89777803,,19200.0,19200.0,19200.0, 60 months,12.79,434.8,C,C1,personal investor,2 years,OWN,131209.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89777803,,debt_consolidation,Debt consolidation,290xx,SC,9.65,0.0,May-2004,675.0,679.0,0.0,62.0,66.0,15.0,2.0,18233.0,50.8,25.0,f,0.0,0.0,7792.29,7792.29,4540.42,3251.87,0.0,0.0,0.0,Apr-2018,434.8,,Dec-2016,669.0,665.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,112459.0,1.0,3.0,0.0,2.0,13.0,94226.0,85.0,1.0,3.0,1386.0,66.0,35900.0,0.0,9.0,1.0,5.0,7497.0,3019.0,41.9,0.0,0.0,148.0,148.0,2.0,2.0,0.0,69.0,62.0,8.0,62.0,1.0,2.0,9.0,3.0,6.0,6.0,12.0,19.0,9.0,15.0,0.0,0.0,0.0,1.0,92.0,0.0,0.0,2.0,112707.0,112459.0,5200.0,76807.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88985606,,24000.0,24000.0,24000.0, 60 months,9.49,503.93,B,B2,Hand Former,10+ years,MORTGAGE,85500.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88985606,,other,Other,760xx,TX,29.96,0.0,May-1990,715.0,719.0,0.0,,,6.0,0.0,882.0,88.2,19.0,f,13806.0,13806.0,14670.91,14670.91,10194.0,4476.91,0.0,0.0,0.0,Mar-2019,503.93,Apr-2019,Mar-2019,734.0,730.0,0.0,,1.0,Individual,,,,0.0,0.0,227704.0,0.0,4.0,1.0,3.0,9.0,93900.0,81.0,0.0,0.0,882.0,82.0,1000.0,1.0,1.0,0.0,3.0,37951.0,118.0,88.2,0.0,0.0,138.0,316.0,91.0,9.0,2.0,99.0,,20.0,,0.0,1.0,1.0,1.0,3.0,10.0,1.0,7.0,1.0,6.0,0.0,0.0,0.0,1.0,94.7,100.0,0.0,0.0,276474.0,94782.0,1000.0,125474.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89867293,,20000.0,20000.0,20000.0, 60 months,13.49,460.1,C,C2,Maintenance Technician,4 years,RENT,55000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89867293,,other,Other,770xx,TX,25.18,0.0,Oct-2006,700.0,704.0,1.0,47.0,,10.0,0.0,4426.0,12.4,29.0,f,11988.22,11988.22,13305.43,13305.43,8011.78,5293.65,0.0,0.0,0.0,Mar-2019,460.1,Apr-2019,Mar-2019,639.0,635.0,0.0,57.0,1.0,Individual,,,,0.0,101.0,51518.0,4.0,2.0,2.0,4.0,1.0,47092.0,67.0,3.0,7.0,2769.0,28.0,35800.0,6.0,4.0,8.0,11.0,5152.0,8993.0,25.7,0.0,0.0,119.0,111.0,2.0,1.0,0.0,3.0,,2.0,47.0,0.0,3.0,6.0,3.0,3.0,17.0,8.0,12.0,6.0,10.0,0.0,0.0,0.0,5.0,86.2,0.0,0.0,0.0,87877.0,51518.0,12100.0,52077.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90039066,,30000.0,30000.0,30000.0, 60 months,14.49,705.7,C,C4,AP Manager,1 year,MORTGAGE,87000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90039066,,debt_consolidation,Debt consolidation,600xx,IL,17.89,5.0,Mar-2004,670.0,674.0,0.0,13.0,,22.0,0.0,32487.0,56.7,36.0,f,18157.95,18157.95,20404.92,20404.92,11842.05,8562.87,0.0,0.0,0.0,Mar-2019,705.7,Apr-2019,Mar-2019,709.0,705.0,0.0,13.0,1.0,Individual,,,,0.0,0.0,285477.0,0.0,9.0,0.0,2.0,20.0,22850.0,66.0,0.0,1.0,4569.0,60.0,57300.0,0.0,4.0,0.0,3.0,12976.0,7457.0,69.9,0.0,0.0,95.0,150.0,21.0,20.0,6.0,47.0,,,,0.0,5.0,8.0,5.0,8.0,13.0,12.0,17.0,8.0,22.0,0.0,0.0,5.0,0.0,100.0,60.0,0.0,0.0,338723.0,55337.0,24800.0,34423.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89846877,,11200.0,11200.0,11200.0, 60 months,13.99,260.55,C,C3,Supervisor ,10+ years,MORTGAGE,46000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89846877,,debt_consolidation,Debt consolidation,400xx,KY,22.62,1.0,Aug-2000,665.0,669.0,0.0,22.0,42.0,16.0,1.0,23226.0,70.4,43.0,f,0.0,0.0,11949.568615971,11949.57,11200.0,749.57,0.0,0.0,0.0,Dec-2017,0.41,,Apr-2018,684.0,680.0,0.0,,1.0,Individual,,,,0.0,118.0,167088.0,1.0,4.0,1.0,2.0,6.0,32565.0,95.0,0.0,4.0,5492.0,83.0,33000.0,0.0,2.0,1.0,6.0,11935.0,6131.0,51.0,0.0,0.0,121.0,193.0,14.0,6.0,3.0,22.0,,6.0,,0.0,3.0,8.0,4.0,11.0,13.0,10.0,26.0,8.0,14.0,0.0,0.0,0.0,1.0,97.4,0.0,1.0,0.0,188425.0,55791.0,12500.0,34425.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89848546,,24000.0,24000.0,24000.0, 60 months,13.99,558.32,C,C3,OR TECH ,9 years,OWN,70000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89848546,,debt_consolidation,Debt consolidation,071xx,NJ,13.94,0.0,Sep-2007,660.0,664.0,1.0,,,20.0,0.0,34824.0,43.3,42.0,f,14327.4,14327.4,16244.65,16244.65,9672.6,6572.05,0.0,0.0,0.0,Mar-2019,558.32,Apr-2019,Mar-2019,694.0,690.0,1.0,,1.0,Individual,,,,0.0,251.0,212878.0,0.0,2.0,0.0,0.0,30.0,3217.0,45.0,0.0,0.0,14712.0,43.0,80400.0,2.0,1.0,3.0,1.0,10644.0,28382.0,51.8,0.0,0.0,103.0,108.0,25.0,10.0,1.0,25.0,,1.0,,0.0,9.0,13.0,9.0,16.0,12.0,17.0,29.0,13.0,20.0,0.0,0.0,0.0,1.0,100.0,22.2,0.0,0.0,267290.0,38041.0,58900.0,7205.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90039262,,30000.0,30000.0,30000.0, 60 months,10.49,644.67,B,B3,Service technician,10+ years,MORTGAGE,65000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90039262,,credit_card,Credit card refinancing,060xx,CT,22.06,1.0,Sep-2001,735.0,739.0,0.0,8.0,,8.0,0.0,9426.0,33.7,21.0,f,0.0,0.0,34126.844830251204,34126.84,30000.0,4126.84,0.0,0.0,0.0,Mar-2018,23742.19,,Mar-2018,719.0,715.0,0.0,,1.0,Joint App,103000.0,19.13,Not Verified,0.0,0.0,252036.0,0.0,2.0,0.0,0.0,42.0,83079.0,17.0,1.0,2.0,8483.0,29.0,28000.0,3.0,0.0,3.0,2.0,31505.0,9269.0,47.9,0.0,0.0,150.0,180.0,11.0,11.0,2.0,11.0,8.0,11.0,8.0,0.0,2.0,3.0,3.0,9.0,6.0,5.0,13.0,3.0,8.0,0.0,0.0,0.0,1.0,95.2,33.3,0.0,0.0,301268.0,92505.0,17800.0,101968.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89937898,,25000.0,25000.0,25000.0, 60 months,8.99,518.84,B,B1,owner,10+ years,MORTGAGE,140000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89937898,,debt_consolidation,Debt consolidation,606xx,IL,12.64,0.0,Mar-1991,735.0,739.0,0.0,,,7.0,0.0,76171.0,86.0,13.0,f,14317.88,14317.88,15059.81,15059.81,10682.12,4351.75,25.94,0.0,0.0,Mar-2019,518.84,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,355986.0,0.0,0.0,0.0,0.0,54.0,0.0,,0.0,0.0,31444.0,86.0,97000.0,1.0,0.0,0.0,0.0,50855.0,20829.0,86.0,0.0,0.0,54.0,306.0,40.0,40.0,3.0,40.0,,20.0,,0.0,5.0,5.0,5.0,6.0,1.0,5.0,8.0,5.0,7.0,0.0,0.0,0.0,0.0,100.0,60.0,0.0,0.0,424485.0,76171.0,97000.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89937139,,40000.0,40000.0,39925.0, 60 months,13.49,920.19,C,C2,Director of Distribution,10+ years,MORTGAGE,200000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89937139,,debt_consolidation,Debt consolidation,270xx,NC,31.22,0.0,Nov-1983,710.0,714.0,0.0,,,17.0,0.0,125186.0,81.1,24.0,f,23973.21,23928.26,26610.57,26560.68,16026.79,10583.78,0.0,0.0,0.0,Mar-2019,920.19,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Individual,,,,0.0,0.0,513402.0,0.0,3.0,1.0,1.0,7.0,26015.0,46.0,1.0,4.0,33587.0,59.0,138400.0,0.0,5.0,1.0,6.0,32088.0,3730.0,63.1,0.0,0.0,104.0,193.0,11.0,7.0,2.0,51.0,,12.0,,0.0,4.0,10.0,5.0,5.0,5.0,11.0,15.0,10.0,17.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,595565.0,180207.0,43000.0,56557.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89856493,,22400.0,22400.0,22400.0, 60 months,13.49,515.31,C,C2,driver,10+ years,MORTGAGE,119000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89856493,,credit_card,Credit card refinancing,052xx,VT,23.22,0.0,Feb-1986,680.0,684.0,3.0,,75.0,20.0,1.0,17669.0,51.5,47.0,f,0.0,0.0,5111.13,5111.13,2772.34,2338.79,0.0,0.0,0.0,Aug-2017,515.31,,Feb-2019,604.0,600.0,0.0,,1.0,Individual,,,,0.0,0.0,364920.0,3.0,6.0,1.0,6.0,9.0,70224.0,74.0,3.0,5.0,6627.0,68.0,34300.0,5.0,2.0,4.0,13.0,18246.0,3848.0,70.8,0.0,0.0,66.0,367.0,1.0,1.0,4.0,18.0,,1.0,,0.0,5.0,8.0,6.0,23.0,12.0,12.0,31.0,8.0,20.0,0.0,0.0,0.0,4.0,100.0,50.0,1.0,0.0,428916.0,87893.0,13200.0,94816.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89906080,,19400.0,19400.0,19400.0, 60 months,14.49,456.35,C,C4,Clinical Applications Specialist,< 1 year,RENT,78000.0,Source Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89906080,,debt_consolidation,Debt consolidation,851xx,AZ,13.02,0.0,Apr-1994,665.0,669.0,1.0,90.0,31.0,10.0,6.0,13775.0,63.8,26.0,f,0.0,0.0,24960.4250672159,24960.43,19400.0,5560.43,0.0,0.0,0.0,Feb-2019,12594.45,,Mar-2019,719.0,715.0,0.0,90.0,1.0,Individual,,,,0.0,0.0,33166.0,1.0,1.0,2.0,2.0,3.0,19391.0,92.0,1.0,2.0,3204.0,78.0,21600.0,0.0,1.0,5.0,4.0,3317.0,3970.0,68.7,0.0,0.0,171.0,269.0,10.0,3.0,0.0,28.0,90.0,2.0,90.0,1.0,5.0,9.0,5.0,10.0,9.0,9.0,16.0,9.0,10.0,0.0,0.0,0.0,3.0,95.5,40.0,1.0,5.0,42728.0,33166.0,12700.0,21128.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90052831,,16000.0,16000.0,16000.0, 60 months,13.99,372.21,C,C3,Pilot,3 years,RENT,153000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90052831,,debt_consolidation,Debt consolidation,973xx,OR,15.0,1.0,Apr-2002,675.0,679.0,0.0,11.0,7.0,11.0,1.0,14233.0,56.5,32.0,f,9636.89,9636.89,10781.65,10781.65,6363.11,4418.54,0.0,0.0,0.0,Mar-2019,372.21,Apr-2019,Mar-2019,699.0,695.0,0.0,11.0,1.0,Individual,,,,0.0,0.0,154600.0,1.0,5.0,2.0,4.0,11.0,140367.0,66.0,2.0,3.0,5347.0,62.0,25200.0,5.0,0.0,2.0,7.0,14055.0,10967.0,56.5,0.0,0.0,158.0,173.0,5.0,5.0,2.0,5.0,37.0,2.0,37.0,6.0,6.0,6.0,6.0,7.0,23.0,6.0,7.0,6.0,11.0,0.0,0.0,1.0,4.0,77.4,16.7,0.0,1.0,177419.0,154600.0,25200.0,152219.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89775484,,24750.0,24750.0,24750.0, 60 months,10.49,531.86,B,B3,Supervisor,10+ years,MORTGAGE,55000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89775484,,debt_consolidation,Debt consolidation,328xx,FL,26.71,1.0,May-1991,685.0,689.0,0.0,7.0,,6.0,0.0,25967.0,64.0,11.0,f,14387.3,14387.3,15409.52,15409.52,10362.7,5046.82,0.0,0.0,0.0,Mar-2019,531.86,Apr-2019,Mar-2019,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,184463.0,0.0,1.0,1.0,1.0,8.0,27639.0,90.0,0.0,0.0,14119.0,64.0,40580.0,0.0,0.0,0.0,1.0,30743.0,18900.0,68.0,0.0,0.0,112.0,235.0,102.0,8.0,2.0,102.0,,,7.0,0.0,2.0,4.0,3.0,3.0,2.0,4.0,7.0,4.0,6.0,,0.0,0.0,1.0,91.0,50.0,0.0,0.0,207020.0,53606.0,37800.0,30665.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89068414,,20000.0,20000.0,20000.0, 60 months,15.59,482.02,C,C5,Technical Resource Manager,7 years,MORTGAGE,91000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89068414,,medical,Medical expenses,800xx,CO,23.24,2.0,May-1997,665.0,669.0,1.0,6.0,103.0,13.0,1.0,7674.0,54.4,32.0,f,12235.24,12235.24,13935.27,13935.27,7764.76,6170.51,0.0,0.0,0.0,Mar-2019,482.02,Apr-2019,Mar-2019,644.0,640.0,0.0,,1.0,Individual,,,,0.0,0.0,145097.0,1.0,7.0,2.0,5.0,1.0,137423.0,96.0,0.0,3.0,4572.0,83.0,14100.0,5.0,9.0,11.0,9.0,11161.0,2638.0,69.3,0.0,0.0,232.0,100.0,14.0,1.0,2.0,15.0,,1.0,6.0,1.0,2.0,5.0,3.0,4.0,20.0,6.0,10.0,5.0,13.0,0.0,0.0,0.0,2.0,96.7,33.3,1.0,0.0,143487.0,145097.0,8600.0,129387.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89907070,,24000.0,24000.0,24000.0, 60 months,11.49,527.71,B,B5,System Analyst,2 years,MORTGAGE,101000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89907070,,credit_card,Credit card refinancing,461xx,IN,17.99,0.0,Oct-2003,725.0,729.0,1.0,,,21.0,0.0,31294.0,37.5,53.0,f,14096.18,14096.18,15288.27,15288.27,9903.82,5384.45,0.0,0.0,0.0,Mar-2019,527.71,Apr-2019,Mar-2019,729.0,725.0,0.0,,1.0,Individual,,,,0.0,0.0,599733.0,0.0,1.0,0.0,1.0,19.0,33264.0,,0.0,1.0,5258.0,38.0,83400.0,5.0,11.0,4.0,6.0,29987.0,27892.0,33.1,0.0,0.0,155.0,137.0,13.0,13.0,9.0,13.0,,1.0,,0.0,7.0,12.0,9.0,20.0,12.0,17.0,32.0,12.0,21.0,0.0,0.0,0.0,0.0,100.0,11.1,0.0,0.0,676531.0,64558.0,41700.0,43631.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89876723,,38000.0,38000.0,38000.0, 60 months,13.49,874.18,C,C2,Area Director,10+ years,MORTGAGE,120000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89876723,,home_improvement,Home improvement,101xx,NY,14.44,0.0,May-2005,715.0,719.0,0.0,55.0,,14.0,0.0,33171.0,37.8,27.0,f,0.0,0.0,21191.57,21191.57,12914.79,8276.78,0.0,0.0,0.0,Sep-2018,874.18,,Mar-2019,609.0,605.0,0.0,55.0,1.0,Individual,,,,0.0,0.0,259919.0,1.0,1.0,0.0,1.0,16.0,1849.0,13.0,1.0,3.0,13424.0,34.0,83400.0,0.0,0.0,0.0,4.0,18566.0,42250.0,39.2,0.0,0.0,16.0,136.0,0.0,0.0,3.0,0.0,55.0,,55.0,2.0,4.0,7.0,6.0,10.0,1.0,12.0,23.0,7.0,14.0,0.0,0.0,0.0,1.0,78.3,33.3,0.0,0.0,332200.0,35020.0,72000.0,14400.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88959570,,32000.0,32000.0,32000.0, 60 months,13.99,744.42,C,C3,Assistant Director,10+ years,MORTGAGE,125000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88959570,,debt_consolidation,Debt consolidation,799xx,TX,29.89,1.0,Oct-1995,670.0,674.0,2.0,2.0,,15.0,0.0,44852.0,41.6,38.0,f,0.0,0.0,8403.35,8403.35,747.04,679.62,0.0,6976.69,1255.804199969,Dec-2016,744.42,,Jun-2017,539.0,535.0,0.0,,1.0,Individual,,,,1.0,0.0,436060.0,2.0,4.0,0.0,3.0,15.0,93273.0,56.0,2.0,3.0,22031.0,44.0,107800.0,0.0,4.0,2.0,6.0,29071.0,53336.0,43.6,0.0,2141.0,124.0,251.0,3.0,3.0,7.0,3.0,,3.0,,0.0,6.0,7.0,8.0,14.0,14.0,10.0,17.0,7.0,14.0,0.0,1.0,0.0,2.0,97.3,25.0,0.0,0.0,557391.0,138125.0,94600.0,124725.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88930300,,20000.0,20000.0,20000.0, 60 months,15.59,482.02,C,C5,Registered Nurse,9 years,MORTGAGE,177000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88930300,,renewable_energy,Green loan,950xx,CA,12.36,0.0,May-2001,665.0,669.0,0.0,62.0,29.0,11.0,5.0,12949.0,60.8,20.0,f,0.0,0.0,23465.19563442,23465.2,20000.0,3465.2,0.0,0.0,0.0,Jan-2018,15305.24,,Mar-2019,704.0,700.0,0.0,62.0,1.0,Individual,,,,0.0,0.0,912181.0,1.0,3.0,0.0,2.0,13.0,58398.0,40.0,0.0,3.0,4438.0,48.0,21300.0,5.0,2.0,1.0,7.0,82926.0,2454.0,79.7,0.0,0.0,137.0,184.0,15.0,2.0,2.0,18.0,,5.0,,1.0,5.0,6.0,5.0,6.0,7.0,7.0,8.0,6.0,11.0,0.0,0.0,0.0,2.0,89.5,80.0,0.0,5.0,949561.0,71347.0,12100.0,87427.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90014198,,16000.0,16000.0,16000.0, 60 months,10.99,347.8,B,B4,sanitation worker,10+ years,MORTGAGE,120000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90014198,,debt_consolidation,Debt consolidation,112xx,NY,12.4,1.0,Apr-2004,745.0,749.0,2.0,10.0,82.0,21.0,1.0,5995.0,7.6,34.0,f,0.0,0.0,18183.1476432249,18183.15,16000.0,2183.15,0.0,0.0,0.0,Jun-2018,5236.72,,Nov-2018,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,416784.0,2.0,2.0,0.0,1.0,13.0,44474.0,76.0,2.0,5.0,1390.0,38.0,73500.0,3.0,3.0,3.0,6.0,20839.0,57667.0,6.7,0.0,0.0,149.0,110.0,4.0,4.0,1.0,4.0,,4.0,10.0,0.0,10.0,13.0,12.0,19.0,6.0,18.0,26.0,13.0,21.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,534255.0,50469.0,61800.0,58182.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90041095,,32000.0,32000.0,31950.0, 60 months,14.49,752.74,C,C4,Manager,10+ years,MORTGAGE,98000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90041095,,debt_consolidation,Debt consolidation,956xx,CA,3.43,0.0,Mar-2003,665.0,669.0,0.0,,72.0,6.0,1.0,8094.0,74.9,25.0,f,19368.71,19338.45,21765.06,21731.05,12631.29,9133.77,0.0,0.0,0.0,Mar-2019,752.74,Apr-2019,Mar-2019,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,239243.0,1.0,0.0,1.0,2.0,12.0,0.0,,2.0,2.0,5334.0,75.0,10800.0,0.0,1.0,0.0,4.0,39874.0,429.0,94.8,0.0,0.0,99.0,156.0,3.0,3.0,3.0,34.0,,,,0.0,3.0,4.0,3.0,9.0,5.0,5.0,16.0,4.0,6.0,0.0,0.0,0.0,3.0,100.0,100.0,1.0,0.0,312351.0,8094.0,8300.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89968033,,11200.0,11200.0,11200.0, 60 months,13.49,257.66,C,C2,Sr. Photo Producer,5 years,RENT,86000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89968033,,debt_consolidation,Debt consolidation,981xx,WA,4.8,0.0,Apr-1994,665.0,669.0,0.0,75.0,21.0,7.0,2.0,12581.0,54.7,14.0,f,0.0,0.0,6182.92,6182.92,3606.66,2576.26,0.0,0.0,0.0,Oct-2018,257.66,,Mar-2019,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,12581.0,2.0,0.0,1.0,1.0,11.0,0.0,,2.0,3.0,4538.0,55.0,23000.0,0.0,2.0,1.0,4.0,1797.0,6720.0,57.7,0.0,0.0,269.0,70.0,1.0,1.0,0.0,3.0,,10.0,,0.0,3.0,6.0,3.0,3.0,5.0,7.0,7.0,6.0,7.0,0.0,0.0,0.0,3.0,92.9,33.3,0.0,2.0,23000.0,12581.0,15900.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89997513,,36000.0,36000.0,36000.0, 60 months,10.99,782.55,B,B4,Group Operations Manager,10+ years,OWN,101000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89997513,,credit_card,Credit card refinancing,241xx,VA,11.55,0.0,Sep-2002,690.0,694.0,0.0,,,8.0,0.0,24483.0,73.3,19.0,f,21036.08,21036.08,22759.89,22759.89,14963.92,7795.97,0.0,0.0,0.0,Mar-2019,782.55,Apr-2019,Mar-2019,714.0,710.0,0.0,,1.0,Individual,,,,0.0,0.0,311710.0,0.0,2.0,0.0,1.0,24.0,25076.0,93.0,0.0,0.0,8856.0,82.0,33400.0,3.0,1.0,1.0,2.0,38964.0,3157.0,84.1,0.0,0.0,168.0,121.0,61.0,13.0,4.0,61.0,,1.0,,0.0,3.0,5.0,3.0,4.0,8.0,5.0,7.0,5.0,8.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,326250.0,49559.0,19900.0,26850.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89976312,,22000.0,22000.0,22000.0, 60 months,13.99,511.79,C,C3,,,RENT,93600.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89976312,,debt_consolidation,Debt consolidation,231xx,VA,11.42,0.0,Jan-1985,720.0,724.0,0.0,,,8.0,0.0,12269.0,63.6,14.0,f,13250.68,13250.68,14824.81,14824.81,8749.32,6075.49,0.0,0.0,0.0,Mar-2019,511.79,Apr-2019,Mar-2019,704.0,700.0,0.0,,1.0,Joint App,106776.0,11.09,Not Verified,0.0,0.0,37326.0,0.0,1.0,0.0,1.0,14.0,25057.0,86.0,0.0,4.0,3916.0,77.0,19300.0,1.0,0.0,0.0,5.0,4666.0,5756.0,67.3,0.0,0.0,128.0,380.0,15.0,14.0,0.0,21.0,,14.0,,0.0,6.0,7.0,6.0,7.0,3.0,7.0,11.0,7.0,8.0,0.0,0.0,0.0,0.0,100.0,66.7,0.0,0.0,48608.0,37326.0,17600.0,29308.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89024450,,40000.0,40000.0,39975.0, 60 months,15.59,964.03,C,C5,Sr. Project Manager,< 1 year,MORTGAGE,220000.0,Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89024450,,debt_consolidation,Debt consolidation,114xx,NY,10.88,0.0,Feb-2004,715.0,719.0,2.0,,,19.0,0.0,43437.0,13.3,45.0,f,0.0,0.0,42089.4164107701,42063.11,40000.0,2089.42,0.0,0.0,0.0,Feb-2017,39283.94,,Mar-2019,779.0,775.0,0.0,,1.0,Individual,,,,0.0,0.0,394526.0,2.0,3.0,1.0,3.0,9.0,29395.0,83.0,1.0,3.0,24661.0,27.0,185700.0,1.0,5.0,3.0,7.0,20765.0,107774.0,8.9,0.0,0.0,104.0,151.0,2.0,2.0,4.0,16.0,,2.0,,0.0,5.0,8.0,9.0,13.0,12.0,14.0,28.0,8.0,19.0,0.0,0.0,0.0,3.0,100.0,0.0,0.0,0.0,558214.0,73480.0,141000.0,35551.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88423119,,24000.0,24000.0,24000.0, 60 months,12.79,543.5,C,C1,TMSG,10+ years,RENT,63000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88423119,,debt_consolidation,Debt consolidation,334xx,FL,19.73,1.0,Oct-2005,670.0,674.0,0.0,,,10.0,0.0,19845.0,47.0,23.0,f,14283.58,14283.58,15718.87,15718.87,9716.42,6002.45,0.0,0.0,0.0,Mar-2019,543.5,Apr-2019,Mar-2019,704.0,700.0,1.0,11.0,1.0,Individual,,,,0.0,159.0,35214.0,0.0,1.0,0.0,1.0,19.0,15369.0,65.0,1.0,2.0,7514.0,47.0,41850.0,0.0,0.0,0.0,3.0,3521.0,5800.0,57.0,0.0,0.0,131.0,125.0,7.0,7.0,2.0,17.0,,17.0,,0.0,4.0,9.0,5.0,5.0,6.0,9.0,15.0,7.0,10.0,,0.0,1.0,1.0,100.0,0.0,0.0,0.0,65648.0,35214.0,23200.0,23798.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89077638,,30000.0,30000.0,30000.0, 60 months,13.99,697.9,C,C3,Fire Lieutenant ,10+ years,RENT,107000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89077638,,debt_consolidation,Debt consolidation,060xx,CT,28.38,2.0,Jun-1993,690.0,694.0,1.0,15.0,,14.0,0.0,25120.0,51.3,35.0,f,17929.86,17929.86,20315.78,20315.78,12070.14,8245.64,0.0,0.0,0.0,Mar-2019,697.9,Apr-2019,Mar-2019,719.0,715.0,0.0,15.0,1.0,Individual,,,,0.0,0.0,69005.0,2.0,1.0,2.0,3.0,3.0,43885.0,75.0,0.0,0.0,8653.0,64.0,49000.0,2.0,2.0,2.0,3.0,5308.0,5776.0,80.4,0.0,0.0,119.0,279.0,82.0,3.0,4.0,82.0,,2.0,,3.0,9.0,10.0,9.0,18.0,8.0,11.0,22.0,10.0,14.0,0.0,0.0,2.0,2.0,91.4,66.7,0.0,0.0,107418.0,69005.0,29400.0,58418.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88878506,,30000.0,30000.0,30000.0, 60 months,9.49,629.91,B,B2,,,MORTGAGE,110000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88878506,,medical,Medical expenses,330xx,FL,10.2,1.0,May-1993,745.0,749.0,0.0,7.0,,10.0,0.0,25899.0,33.8,22.0,f,17268.58,17268.58,18314.57,18314.57,12731.42,5520.15,63.0,0.0,0.0,Mar-2019,629.91,Apr-2019,Mar-2019,664.0,660.0,0.0,,1.0,Individual,,,,0.0,0.0,159038.0,0.0,1.0,0.0,0.0,30.0,6490.0,65.0,1.0,3.0,20157.0,38.0,80400.0,0.0,2.0,0.0,3.0,15904.0,42192.0,36.1,0.0,0.0,118.0,239.0,12.0,12.0,4.0,12.0,,,7.0,0.0,4.0,5.0,5.0,9.0,4.0,8.0,14.0,5.0,10.0,0.0,0.0,0.0,1.0,95.2,20.0,0.0,0.0,334100.0,32389.0,66000.0,10000.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89846605,,15000.0,15000.0,15000.0, 36 months,10.49,487.47,B,B3,Billing clerk,8 years,MORTGAGE,60000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89846605,,debt_consolidation,Debt consolidation,802xx,CO,26.4,0.0,Oct-1980,680.0,684.0,0.0,,,24.0,0.0,48654.0,36.1,42.0,f,0.0,0.0,15908.001163397099,15908.0,15000.0,908.0,0.0,0.0,0.0,May-2017,12991.92,,Jun-2018,724.0,720.0,0.0,,1.0,Individual,,,,0.0,0.0,209074.0,1.0,0.0,0.0,0.0,92.0,0.0,,1.0,1.0,5544.0,36.0,134800.0,1.0,5.0,4.0,2.0,9090.0,57649.0,26.7,0.0,0.0,151.0,431.0,10.0,5.0,2.0,10.0,,7.0,,0.0,11.0,20.0,12.0,21.0,3.0,23.0,37.0,20.0,24.0,0.0,0.0,0.0,2.0,100.0,50.0,0.0,0.0,297396.0,48654.0,78700.0,0.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89007204,,36400.0,36400.0,36400.0, 60 months,14.49,856.24,C,C4,,5 years,RENT,95000.0,Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89007204,,credit_card,Credit card refinancing,906xx,CA,21.5,0.0,Feb-1987,720.0,724.0,0.0,,,11.0,0.0,55723.0,79.8,24.0,f,0.0,0.0,2539.42,2539.42,1265.29,1274.13,0.0,0.0,0.0,Jan-2017,856.24,,May-2017,554.0,550.0,0.0,,1.0,Individual,,,,0.0,0.0,481490.0,2.0,2.0,1.0,2.0,6.0,81554.0,75.0,1.0,1.0,16390.0,78.0,69800.0,1.0,4.0,1.0,3.0,43772.0,3676.0,91.5,0.0,0.0,82.0,355.0,5.0,5.0,6.0,38.0,,6.0,,0.0,3.0,5.0,4.0,6.0,5.0,7.0,13.0,5.0,11.0,0.0,0.0,0.0,2.0,100.0,75.0,0.0,0.0,529965.0,137277.0,43500.0,90665.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89867167,,23800.0,23800.0,23800.0, 60 months,14.49,559.85,C,C4,Exec Dir Internal Audit,10+ years,MORTGAGE,119000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89867167,,debt_consolidation,Debt consolidation,441xx,OH,32.73,0.0,Aug-1992,685.0,689.0,1.0,,,13.0,0.0,107747.0,89.5,29.0,f,0.0,0.0,29818.8711947384,29818.87,23800.0,6018.87,0.0,0.0,0.0,Oct-2018,16846.53,,Nov-2018,679.0,675.0,0.0,,1.0,Individual,,,,0.0,0.0,372285.0,1.0,4.0,3.0,4.0,4.0,84824.0,84.0,0.0,0.0,16150.0,87.0,117000.0,4.0,1.0,10.0,4.0,31024.0,6097.0,90.1,0.0,0.0,139.0,289.0,49.0,4.0,5.0,49.0,,0.0,,0.0,5.0,6.0,5.0,10.0,10.0,8.0,14.0,6.0,13.0,0.0,0.0,0.0,3.0,100.0,100.0,0.0,0.0,406737.0,192571.0,61600.0,95737.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89794723,,28000.0,28000.0,28000.0, 60 months,8.99,581.1,B,B1,Purchasing Manager,2 years,MORTGAGE,97000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89794723,,debt_consolidation,Debt consolidation,857xx,AZ,22.23,0.0,Aug-2000,745.0,749.0,0.0,,,22.0,0.0,16219.0,19.7,47.0,f,16021.88,16021.88,16914.83,16914.83,11978.12,4936.71,0.0,0.0,0.0,Mar-2019,581.1,Apr-2019,Mar-2019,684.0,680.0,0.0,,1.0,Individual,,,,0.0,0.0,302271.0,0.0,12.0,0.0,1.0,17.0,138211.0,84.0,1.0,1.0,6375.0,63.0,82500.0,0.0,5.0,1.0,2.0,13740.0,15281.0,51.5,0.0,0.0,193.0,192.0,7.0,7.0,1.0,30.0,,5.0,,0.0,3.0,3.0,7.0,10.0,32.0,9.0,14.0,3.0,22.0,0.0,0.0,0.0,1.0,100.0,42.9,0.0,0.0,411101.0,154430.0,31500.0,164626.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89905081,,18000.0,18000.0,18000.0, 60 months,9.49,377.95,B,B2,,5 years,OWN,130000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89905081,,home_improvement,Home improvement,775xx,TX,20.59,0.0,Jul-2004,735.0,739.0,1.0,,,17.0,0.0,23833.0,34.0,39.0,f,0.0,0.0,20756.2336319436,20756.23,18000.0,2756.23,0.0,0.0,0.0,Aug-2018,12828.77,,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,168758.0,0.0,6.0,0.0,3.0,15.0,30516.0,52.0,0.0,3.0,7061.0,41.0,70100.0,1.0,2.0,1.0,6.0,9927.0,4161.0,68.2,0.0,0.0,113.0,146.0,17.0,15.0,3.0,17.0,,2.0,,0.0,3.0,9.0,3.0,5.0,21.0,10.0,15.0,9.0,17.0,0.0,0.0,0.0,0.0,100.0,33.3,0.0,0.0,275356.0,54349.0,13100.0,77756.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88979824,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Financial Advisor,5 years,MORTGAGE,150000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88979824,,debt_consolidation,Debt consolidation,325xx,FL,15.47,0.0,May-1998,725.0,729.0,0.0,,,7.0,0.0,51827.0,63.8,15.0,f,23252.59,23252.59,24903.93,24903.93,16747.41,8156.52,0.0,0.0,0.0,Mar-2019,859.56,Apr-2019,Mar-2019,839.0,835.0,0.0,,1.0,Individual,,,,0.0,0.0,273704.0,0.0,1.0,0.0,1.0,14.0,48721.0,,0.0,0.0,15471.0,64.0,81200.0,1.0,4.0,0.0,1.0,39101.0,29373.0,63.8,0.0,0.0,124.0,220.0,101.0,14.0,2.0,124.0,,20.0,,0.0,4.0,4.0,5.0,7.0,6.0,5.0,7.0,4.0,7.0,0.0,0.0,0.0,0.0,100.0,60.0,0.0,0.0,324428.0,100548.0,81200.0,55935.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88948836,,29400.0,29400.0,29400.0, 60 months,13.99,683.94,C,C3,Chief Operating Officer,9 years,MORTGAGE,180792.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88948836,,debt_consolidation,Debt consolidation,900xx,CA,22.03,0.0,Mar-2002,705.0,709.0,1.0,,,16.0,0.0,77480.0,85.2,32.0,f,0.0,0.0,35848.7645317365,35848.76,29400.0,6448.76,0.0,0.0,0.0,Jul-2018,22192.81,,Jul-2018,719.0,715.0,0.0,,1.0,Individual,,,,0.0,0.0,663465.0,0.0,4.0,2.0,4.0,8.0,70652.0,50.0,0.0,0.0,31069.0,68.0,86500.0,3.0,0.0,2.0,4.0,44231.0,8427.0,69.4,0.0,0.0,145.0,174.0,31.0,8.0,3.0,70.0,,3.0,,0.0,4.0,5.0,7.0,9.0,17.0,8.0,10.0,5.0,16.0,0.0,0.0,0.0,2.0,100.0,42.9,0.0,0.0,719056.0,148305.0,56500.0,95702.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89996426,,32000.0,32000.0,32000.0, 60 months,14.49,752.74,C,C4,Sales Manager,3 years,MORTGAGE,157000.0,Source Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89996426,,home_improvement,Home improvement,863xx,AZ,10.34,0.0,Jun-2011,735.0,739.0,0.0,,,14.0,0.0,111598.0,27.4,18.0,f,0.0,0.0,3737.94,3737.94,1876.47,1861.47,0.0,0.0,0.0,Mar-2017,752.74,,Dec-2018,499.0,0.0,0.0,,1.0,Individual,,,,0.0,0.0,408701.0,2.0,2.0,0.0,2.0,16.0,11274.0,47.0,2.0,7.0,736.0,36.0,207500.0,2.0,2.0,0.0,10.0,29193.0,14118.0,10.6,0.0,0.0,53.0,63.0,4.0,4.0,3.0,4.0,,15.0,,0.0,5.0,8.0,7.0,7.0,4.0,11.0,11.0,8.0,14.0,0.0,0.0,0.0,2.0,100.0,0.0,0.0,0.0,524379.0,122872.0,15800.0,23879.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +90006534,,16000.0,16000.0,16000.0, 60 months,12.79,362.34,C,C1,Manager,10+ years,RENT,150000.0,Not Verified,Oct-2016,Fully Paid,n,https://lendingclub.com/browse/loanDetail.action?loan_id=90006534,,medical,Medical expenses,284xx,NC,12.25,0.0,Aug-1997,665.0,669.0,0.0,68.0,26.0,12.0,4.0,7700.0,55.0,28.0,f,0.0,0.0,18660.6075694149,18660.61,16000.0,2660.61,0.0,0.0,0.0,Mar-2018,12874.54,,Mar-2019,684.0,680.0,0.0,68.0,1.0,Individual,,,,0.0,0.0,65797.0,1.0,5.0,2.0,6.0,4.0,58097.0,79.0,0.0,3.0,4516.0,75.0,14000.0,1.0,1.0,1.0,9.0,5982.0,2720.0,73.1,0.0,0.0,147.0,229.0,17.0,4.0,0.0,17.0,,12.0,,1.0,3.0,4.0,4.0,5.0,15.0,6.0,11.0,4.0,12.0,0.0,0.0,0.0,2.0,92.0,50.0,3.0,0.0,87473.0,65797.0,10100.0,73473.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89955820,,24000.0,24000.0,24000.0, 60 months,10.49,515.74,B,B3,Current Operations Officer,4 years,OWN,125000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89955820,,credit_card,Credit card refinancing,967xx,HI,10.98,0.0,Feb-2001,725.0,729.0,0.0,,42.0,15.0,2.0,22448.0,22.4,22.0,f,13951.43,13951.43,14977.43,14977.43,10048.57,4928.86,0.0,0.0,0.0,Mar-2019,515.74,Apr-2019,Mar-2019,739.0,735.0,0.0,,1.0,Individual,,,,0.0,0.0,31320.0,5.0,1.0,0.0,0.0,44.0,8872.0,31.0,5.0,10.0,6460.0,24.0,100300.0,0.0,0.0,0.0,10.0,2088.0,73489.0,21.6,0.0,0.0,44.0,187.0,0.0,0.0,0.0,0.0,,13.0,,0.0,6.0,8.0,11.0,14.0,1.0,14.0,21.0,8.0,15.0,0.0,0.0,0.0,5.0,100.0,0.0,0.0,2.0,128902.0,31320.0,93700.0,28602.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +89885898,,24000.0,24000.0,24000.0, 60 months,12.79,543.5,C,C1,Unit Operator,7 years,MORTGAGE,95000.0,Source Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=89885898,,home_improvement,Home improvement,356xx,AL,19.61,0.0,Dec-1999,665.0,669.0,0.0,,,5.0,0.0,49431.0,84.4,54.0,f,14287.39,14287.39,15760.5,15760.5,9712.61,6047.89,0.0,0.0,0.0,Mar-2019,543.5,Apr-2019,Mar-2019,709.0,705.0,0.0,,1.0,Individual,,,,0.0,0.0,104422.0,2.0,2.0,1.0,3.0,3.0,54991.0,106.0,2.0,2.0,0.0,103.0,50500.0,1.0,19.0,1.0,5.0,26106.0,,,0.0,0.0,201.0,88.0,3.0,3.0,0.0,,,4.0,,0.0,0.0,2.0,0.0,3.0,43.0,3.0,11.0,2.0,5.0,0.0,0.0,0.0,3.0,100.0,,0.0,0.0,102517.0,104422.0,0.0,52017.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88977788,,24000.0,24000.0,24000.0, 60 months,10.49,515.74,B,B3,Database Administrator,10+ years,MORTGAGE,108000.0,Not Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88977788,,debt_consolidation,Debt consolidation,840xx,UT,34.94,0.0,Feb-1991,695.0,699.0,1.0,60.0,69.0,24.0,1.0,21665.0,39.0,58.0,f,13951.42,13951.42,15008.53,15008.53,10048.58,4959.95,0.0,0.0,0.0,Mar-2019,515.74,Apr-2019,Mar-2019,734.0,730.0,0.0,60.0,1.0,Individual,,,,0.0,0.0,140118.0,0.0,4.0,0.0,5.0,16.0,118453.0,77.0,0.0,2.0,4090.0,59.0,55600.0,1.0,12.0,4.0,7.0,6369.0,15307.0,45.1,0.0,0.0,166.0,307.0,15.0,15.0,4.0,15.0,60.0,4.0,60.0,12.0,5.0,12.0,7.0,18.0,17.0,19.0,37.0,12.0,24.0,0.0,0.0,0.0,0.0,75.9,42.9,0.0,1.0,227883.0,140118.0,27900.0,172283.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88985880,,40000.0,40000.0,40000.0, 60 months,10.49,859.56,B,B3,Vice President ,9 years,MORTGAGE,227000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88985880,,debt_consolidation,,907xx,CA,12.75,7.0,Feb-1995,705.0,709.0,1.0,9.0,,5.0,0.0,8633.0,64.9,37.0,f,23252.59,23252.59,24903.93,24903.93,16747.41,8156.52,0.0,0.0,0.0,Mar-2019,859.56,Apr-2019,Mar-2019,724.0,720.0,0.0,10.0,1.0,Individual,,,,0.0,0.0,28398.0,0.0,2.0,0.0,1.0,15.0,19765.0,46.0,0.0,0.0,5141.0,51.0,13300.0,3.0,0.0,2.0,2.0,5680.0,4070.0,66.9,0.0,0.0,154.0,258.0,33.0,15.0,3.0,41.0,9.0,1.0,9.0,6.0,2.0,3.0,2.0,15.0,9.0,3.0,23.0,3.0,5.0,0.0,0.0,7.0,0.0,75.7,50.0,0.0,0.0,55970.0,28398.0,12300.0,42670.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +88224441,,24000.0,24000.0,24000.0, 60 months,14.49,564.56,C,C4,Program Manager,6 years,RENT,110000.0,Not Verified,Oct-2016,Charged Off,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88224441,,debt_consolidation,Debt consolidation,334xx,FL,18.3,0.0,Jul-1999,660.0,664.0,0.0,67.0,72.0,10.0,1.0,17641.0,68.1,31.0,f,0.0,0.0,6755.4,6755.4,3521.91,3233.49,0.0,0.0,0.0,Oct-2017,564.56,,Mar-2019,594.0,590.0,0.0,67.0,1.0,Individual,,,,0.0,0.0,62426.0,0.0,2.0,0.0,2.0,20.0,44785.0,78.0,1.0,5.0,6172.0,73.0,25900.0,0.0,0.0,1.0,7.0,6243.0,4660.0,77.5,0.0,0.0,132.0,206.0,9.0,9.0,2.0,9.0,,9.0,,1.0,5.0,7.0,5.0,15.0,4.0,8.0,24.0,7.0,10.0,0.0,0.0,0.0,1.0,96.2,40.0,1.0,0.0,84664.0,62426.0,20700.0,58764.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,Y,Mar-2019,ACTIVE,Mar-2019,10000.0,44.82,1.0 +88215728,,14000.0,14000.0,14000.0, 60 months,14.49,329.33,C,C4,Customer Service Technician,10+ years,MORTGAGE,95000.0,Verified,Oct-2016,Current,n,https://lendingclub.com/browse/loanDetail.action?loan_id=88215728,,debt_consolidation,,770xx,TX,23.36,0.0,Jun-1996,660.0,664.0,1.0,37.0,,8.0,0.0,7662.0,54.0,22.0,w,8456.12,8456.12,9621.25,9621.25,5543.88,4027.96,49.41,0.0,0.0,Mar-2019,329.33,Apr-2019,Mar-2019,669.0,665.0,0.0,37.0,1.0,Individual,,,,0.0,0.0,143066.0,0.0,1.0,1.0,2.0,7.0,32071.0,94.0,0.0,1.0,4093.0,84.0,14200.0,3.0,1.0,2.0,3.0,17883.0,1838.0,80.7,0.0,0.0,149.0,243.0,22.0,7.0,1.0,75.0,39.0,6.0,37.0,4.0,3.0,3.0,4.0,12.0,3.0,5.0,17.0,3.0,8.0,0.0,0.0,0.0,1.0,81.8,50.0,0.0,0.0,163804.0,44215.0,9500.0,34169.0,,,,,,,,,,,,,,N,,,,,,,,,,,,,,,Cash,N,,,,,, +Total amount funded in policy code 1: 1465324575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Total amount funded in policy code 2: 521953170,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, From 8633afc251f35bfcebf9441bffd8442959cc7fe8 Mon Sep 17 00:00:00 2001 From: chris warth Date: Tue, 23 Feb 2021 15:39:04 -0800 Subject: [PATCH 2/7] attept to covert csv to avros - not working yet. --- java/kafka-avro/build.gradle.kts | 8 +- ...{lending_club.avsc => LendingClubRow.avsc} | 4 +- .../com/whylogs/examples/ProducerDemo.java | 61 +- .../Fire_Department_Calls_for_Service.csv | 25000 ---------------- 4 files changed, 50 insertions(+), 25023 deletions(-) rename java/kafka-avro/src/main/avro/{lending_club.avsc => LendingClubRow.avsc} (99%) delete mode 100644 java/kafka-avro/src/main/resources/com/whylogs/examples/Fire_Department_Calls_for_Service.csv diff --git a/java/kafka-avro/build.gradle.kts b/java/kafka-avro/build.gradle.kts index 2a28ed7..2336c19 100644 --- a/java/kafka-avro/build.gradle.kts +++ b/java/kafka-avro/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } application { - mainClassName = "com.whylogs.examples.WhyLogsDemo" + mainClassName = "com.whylogs.examples.ProducerDemo" } group = "com.whylogs.example" @@ -24,9 +24,13 @@ dependencies { implementation("io.confluent:kafka-avro-serializer:6.1.0") } +// /Volumes/Workspace/whylogs-examples/java/kafka-avro/build/generated-main-avro-java/com/whylabs/value_lending_club.java +//sourceSets.main { +// java.srcDirs("build/generated-main-avro-java/**") +//} avro { - isCreateSetters.set(true) + isCreateSetters.set(false) isCreateOptionalGetters.set(false) isGettersReturnOptional.set(false) isOptionalGettersForNullableFieldsOnly.set(false) diff --git a/java/kafka-avro/src/main/avro/lending_club.avsc b/java/kafka-avro/src/main/avro/LendingClubRow.avsc similarity index 99% rename from java/kafka-avro/src/main/avro/lending_club.avsc rename to java/kafka-avro/src/main/avro/LendingClubRow.avsc index 59e4e96..9bda8d6 100644 --- a/java/kafka-avro/src/main/avro/lending_club.avsc +++ b/java/kafka-avro/src/main/avro/LendingClubRow.avsc @@ -1,7 +1,7 @@ { "type": "record", - "namespace": "com.whylabs", - "name": "value_lending_club", + "namespace": "com.whylogs", + "name": "LendingClubRow", "doc": "", "fields": [ { diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java index 244c101..b455342 100644 --- a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java @@ -1,13 +1,17 @@ package com.whylogs.examples; -import com.whylabs; +import com.whylogs.LendingClubRow; import com.whylogs.core.DatasetProfile; import org.apache.avro.Schema; +import org.apache.avro.generic.GenericData; +import org.apache.avro.generic.GenericRecord; import org.apache.commons.csv.CSVFormat; import org.apache.commons.csv.CSVParser; import org.apache.commons.csv.CSVRecord; import org.apache.kafka.clients.producer.KafkaProducer; import org.apache.kafka.clients.producer.ProducerConfig; +import org.apache.kafka.clients.producer.ProducerRecord; +import org.apache.kafka.common.errors.SerializationException; import java.io.InputStreamReader; import java.io.OutputStream; @@ -38,44 +42,63 @@ public class ProducerDemo { .withFirstRecordAsHeader() .withNullString("") .withDelimiter(','); - public static final String INPUT_FILE_NAME = "Fire_Department_Calls_for_Service.csv"; + public static final String INPUT_FILE_NAME = "lending_club_1000.csv"; public static final DateTimeFormatter DATE_TIME_FORMAT = DateTimeFormatter.ofPattern("MM/dd/yyyy"); + private static final String TOPIC = "whylogs-events"; + private static final Properties props = new Properties(); + private static String configFile; + + public static void main(String[] args) throws Exception { final String sessionId = UUID.randomUUID().toString(); final Instant now = Instant.now(); - - Schema schema = value_lending_club.getClassSchema(); - - Properties props = new Properties(); props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092"); props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, org.apache.kafka.common.serialization.StringSerializer.class); props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, io.confluent.kafka.serializers.KafkaAvroSerializer.class); props.put("schema.registry.url", "http://localhost:8081"); - KafkaProducer producer = new KafkaProducer(props); // map for storing the result final Map result = new HashMap<>(); System.out.println("opening " + INPUT_FILE_NAME); - try (final InputStreamReader is = new InputStreamReader(ProducerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { - final CSVParser parser = new CSVParser(is, CSV_FORMAT); + try (KafkaProducer producer = new KafkaProducer(props)) { + + try (final InputStreamReader is = new InputStreamReader(ProducerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { + final CSVParser parser = new CSVParser(is, CSV_FORMAT); + + // m = parser.getHeaderMap(); + + // iterate through records + for (final CSVRecord record : parser) { + + final String orderId = "id" + Long.toString(1); + final LendingClubRow value = new LendingClubRow(); + final Schema schema = value.getSchema(); + + GenericRecord avroRecord = new GenericData.Record(schema); + + // iterate iver headermap + // for each header, get vakkue from CSV record + // and put to avrorecord + for (Map.Entry entry : record.toMap().entrySet()) { + System.out.println("setting field " + entry.getKey()); + avroRecord.put(entry.getKey(), entry.getValue()); + } + final ProducerRecord precord = new ProducerRecord<>(TOPIC, "", avroRecord); + System.out.println("sending event "); + + producer.send(precord); - // iterate through records - for (final CSVRecord record : parser) { - // extract date time - final Instant dataTime = parseAndTruncateToYear(record.get(DATE_COLUMN)); - - // create new dataset profile - final DatasetProfile profile = result.computeIfAbsent(dataTime, - t -> new DatasetProfile(sessionId, now, t, Collections.emptyMap(), Collections.emptyMap())); + // Thread.sleep(1000L); - // track multiple features - profile.track(record.toMap()); + } } + } catch (final SerializationException e) { + e.printStackTrace(); } System.out.println("Number of profiles: " + result.size()); diff --git a/java/kafka-avro/src/main/resources/com/whylogs/examples/Fire_Department_Calls_for_Service.csv b/java/kafka-avro/src/main/resources/com/whylogs/examples/Fire_Department_Calls_for_Service.csv deleted file mode 100644 index 6014cc9..0000000 --- a/java/kafka-avro/src/main/resources/com/whylogs/examples/Fire_Department_Calls_for_Service.csv +++ /dev/null @@ -1,25000 +0,0 @@ -Call Number,Unit ID,Incident Number,Call Type,Call Date,Watch Date,Received DtTm,Entry DtTm,Dispatch DtTm,Response DtTm,On Scene DtTm,Transport DtTm,Hospital DtTm,Call Final Disposition,Available DtTm,Address,City,Zipcode of Incident,Battalion,Station Area,Box,Original Priority,Priority,Final Priority,ALS Unit,Call Type Group,Number of Alarms,Unit Type,Unit sequence in call dispatch,Fire Prevention District,Supervisor District,Neighborhood District,Location,RowID -142480332,B02,14086309,Alarms,09/05/2014,09/04/2014,09/05/2014 03:15:13 AM,09/05/2014 03:17:26 AM,09/05/2014 03:18:18 AM,09/05/2014 03:20:30 AM,09/05/2014 03:24:11 AM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,Fire,09/05/2014 03:33:20 AM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,3,3,3,true,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7695711762103, -122.449920089485)",142480332-B02 -153022542,T02,15115908,Structure Fire,10/29/2015,10/29/2015,10/29/2015 03:39:06 PM,10/29/2015 03:39:25 PM,10/29/2015 03:39:49 PM,10/29/2015 03:40:55 PM,10/29/2015 03:43:21 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Fire,10/29/2015 03:51:21 PM,BATTERY ST/VALLEJO ST,San Francisco,94111,B01,13,1155,3,3,3,false,Alarm,1,TRUCK,4,1,3,Financial District/South Beach,"(37.7995314468258, -122.401240243673)",153022542-T02 -143451112,AM04,14122741,Medical Incident,12/11/2014,12/11/2014,12/11/2014 09:02:07 AM,12/11/2014 09:03:01 AM,12/11/2014 09:03:11 AM,12/11/2014 09:06:19 AM,12/11/2014 09:20:16 AM,12/11/2014 09:20:26 AM,12/11/2014 09:43:41 AM,Code 2 Transport,12/11/2014 10:06:26 AM,300 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7668035178194, -122.440704687809)",143451112-AM04 -141660300,E01,14057129,Medical Incident,06/15/2014,06/14/2014,06/15/2014 02:04:57 AM,06/15/2014 02:06:42 AM,06/15/2014 02:10:01 AM,06/15/2014 02:12:55 AM,06/15/2014 02:24:55 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Code 2 Transport,06/15/2014 02:51:39 AM,0 Block of HALLAM ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7756902570435, -122.408609057895)",141660300-E01 -152633454,E36,15100829,Outside Fire,09/20/2015,09/20/2015,09/20/2015 08:15:00 PM,09/20/2015 08:15:53 PM,09/20/2015 08:16:17 PM,09/20/2015 08:18:07 PM,04/25/2016 01:08:14 PM,04/25/2016 01:08:14 PM,04/25/2016 01:08:14 PM,Fire,09/20/2015 08:22:11 PM,MARKET ST/VAN NESS AV,San Francisco,94103,B02,36,3211,3,3,3,true,Fire,1,ENGINE,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",152633454-E36 -160941229,62,16037213,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:11:05 AM,04/03/2016 10:13:32 AM,04/03/2016 10:13:50 AM,04/03/2016 10:14:04 AM,04/03/2016 10:17:26 AM,04/03/2016 10:28:20 AM,04/03/2016 11:00:27 AM,Code 2 Transport,04/03/2016 11:27:46 AM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160941229-62 -142672360,E43,14093558,Medical Incident,09/24/2014,09/24/2014,09/24/2014 03:07:36 PM,09/24/2014 03:08:31 PM,09/24/2014 03:09:33 PM,09/24/2014 03:11:28 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 03:11:52 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7188461081754, -122.439092837429)",142672360-E43 -152052982,E11,15078184,Medical Incident,07/24/2015,07/24/2015,07/24/2015 05:45:39 PM,07/24/2015 05:49:36 PM,07/24/2015 05:50:18 PM,07/24/2015 05:51:14 PM,07/24/2015 05:52:56 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Code 2 Transport,07/24/2015 06:02:50 PM,1500 Block of DOLORES ST,San Francisco,94110,B06,11,5576,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7450456172368, -122.424347725679)",152052982-E11 -150172539,RC3,15006796,Medical Incident,01/17/2015,01/17/2015,01/17/2015 04:56:52 PM,01/17/2015 04:58:19 PM,01/17/2015 05:07:34 PM,01/17/2015 05:07:34 PM,01/17/2015 05:36:03 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Code 3 Transport,01/17/2015 05:36:07 PM,BERNAL HEIGHTS BL/FOLSOM ST,San Francisco,94110,B06,11,5663,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,6,9,Bernal Heights,"(37.7435915885579, -122.412277634027)",150172539-RC3 -160921973,65,16036463,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:12:55 PM,04/01/2016 02:14:42 PM,04/01/2016 02:16:11 PM,04/01/2016 02:16:19 PM,04/01/2016 02:25:50 PM,04/01/2016 02:36:59 PM,04/01/2016 02:56:19 PM,Code 2 Transport,04/01/2016 03:26:51 PM,1800 Block of CHESTNUT ST,San Francisco,94123,B04,16,3445,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8011854069176, -122.433790937219)",160921973-65 -143130780,E16,14110820,Medical Incident,11/09/2014,11/08/2014,11/09/2014 07:27:32 AM,11/09/2014 07:28:46 AM,11/09/2014 07:29:17 AM,11/09/2014 07:31:07 AM,11/09/2014 07:32:10 AM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Code 2 Transport,11/09/2014 07:45:01 AM,2100 Block of GREENWICH ST,San Francisco,94123,B04,16,3553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7991105071928, -122.435056310717)",143130780-E16 -142463717,RC1,14085854,Medical Incident,09/03/2014,09/03/2014,09/03/2014 09:19:57 PM,09/03/2014 09:19:57 PM,09/03/2014 09:59:44 PM,09/03/2014 10:02:23 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Code 2 Transport,09/03/2014 10:11:32 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",142463717-RC1 -160960310,70,16037872,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:03:12 AM,04/05/2016 04:04:35 AM,04/05/2016 04:05:02 AM,04/05/2016 04:05:10 AM,04/05/2016 04:11:13 AM,04/05/2016 04:23:35 AM,04/05/2016 04:40:08 AM,Code 2 Transport,04/05/2016 05:13:49 AM,2300 Block of 18TH AVE,San Francisco,94116,B08,40,7416,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7440272934242, -122.474757875278)",160960310-70 -151901741,E07,15072530,Alarms,07/09/2015,07/09/2015,07/09/2015 12:37:01 PM,07/09/2015 12:37:50 PM,07/09/2015 12:37:56 PM,07/09/2015 12:39:39 PM,07/09/2015 12:40:32 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Fire,07/09/2015 12:47:40 PM,600 Block of POTRERO AVE,San Francisco,94110,B10,7,5427,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7612904814523, -122.407255401788)",151901741-E07 -151253308,E35,15047504,Medical Incident,05/05/2015,05/05/2015,05/05/2015 07:15:20 PM,05/05/2015 07:17:30 PM,05/05/2015 07:17:44 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Code 2 Transport,05/05/2015 07:20:46 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",151253308-E35 -151673573,70,15064030,Medical Incident,06/16/2015,06/16/2015,06/16/2015 10:39:25 PM,06/16/2015 10:40:36 PM,06/16/2015 10:41:05 PM,06/16/2015 10:41:15 PM,06/16/2015 10:44:24 PM,06/16/2015 11:01:59 PM,06/16/2015 11:08:10 PM,Code 2 Transport,06/16/2015 11:28:48 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",151673573-70 -160981117,AM02,16038836,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:25:20 AM,04/07/2016 09:27:05 AM,04/07/2016 09:27:23 AM,04/07/2016 09:28:22 AM,04/07/2016 09:35:03 AM,04/07/2016 09:53:19 AM,04/07/2016 10:09:06 AM,Code 2 Transport,04/07/2016 11:03:33 AM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,945,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,3,North Beach,"(37.8081679785862, -122.416634717802)",160981117-AM02 -143522265,E31,14125806,Alarms,12/18/2014,12/18/2014,12/18/2014 03:05:24 PM,12/18/2014 03:05:31 PM,12/18/2014 03:05:56 PM,12/18/2014 03:06:21 PM,12/18/2014 03:09:04 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Fire,12/18/2014 03:13:51 PM,3900 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7810182571422, -122.461592925475)",143522265-E31 -151220192,53,15046118,Medical Incident,05/02/2015,05/01/2015,05/02/2015 01:14:42 AM,05/02/2015 01:18:29 AM,05/02/2015 01:24:06 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Patient Declined Transport,05/02/2015 01:25:38 AM,1300 Block of VAN NESS AVE,San Francisco,94109,B04,3,3156,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7877876566277, -122.421631319974)",151220192-53 -142053224,E22,14071110,Medical Incident,07/24/2014,07/24/2014,07/24/2014 07:41:38 PM,07/24/2014 07:44:32 PM,07/24/2014 07:44:59 PM,07/24/2014 07:45:41 PM,07/24/2014 07:48:36 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Code 2 Transport,07/24/2014 08:00:08 PM,IRVING ST/21ST AV,San Francisco,94122,B08,22,7424,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.763467414062, -122.479266517798)",142053224-E22 -160960035,AM22,16037846,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:15:18 AM,04/05/2016 12:15:18 AM,04/05/2016 12:16:15 AM,04/05/2016 12:16:48 AM,04/05/2016 12:20:56 AM,04/05/2016 12:43:26 AM,04/05/2016 12:50:51 AM,Code 3 Transport,04/05/2016 01:08:31 AM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7095611088205, -122.450270109478)",160960035-AM22 -153441430,E26,15132393,Medical Incident,12/10/2015,12/10/2015,12/10/2015 11:01:57 AM,12/10/2015 11:02:34 AM,12/10/2015 11:03:04 AM,12/10/2015 11:05:27 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/10/2015 11:09:26 AM,600 Block of HOLLY PARK CIR,San Francisco,94110,B06,32,564,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Bernal Heights,"(37.7368887944401, -122.421170118394)",153441430-E26 -160931027,77,16036777,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:37:03 AM,04/02/2016 09:37:03 AM,04/02/2016 09:38:40 AM,04/02/2016 09:38:53 AM,04/02/2016 09:42:09 AM,04/02/2016 09:55:26 AM,04/02/2016 10:11:04 AM,Code 2 Transport,04/02/2016 10:44:11 AM,LARKIN ST/HAYES ST,San Francisco,94102,B02,36,1646,A,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7777227510073, -122.416401071795)",160931027-77 -141912973,E41,14066310,Medical Incident,07/10/2014,07/10/2014,07/10/2014 06:58:15 PM,07/10/2014 07:00:13 PM,07/10/2014 07:03:58 PM,07/10/2014 07:04:53 PM,07/10/2014 07:10:08 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Code 2 Transport,07/10/2014 07:26:57 PM,900 Block of LARKIN ST,San Francisco,94109,B04,3,1641,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7863251027379, -122.418201870328)",141912973-E41 -160961432,56,16037976,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:24:10 AM,04/05/2016 11:26:00 AM,04/05/2016 11:27:19 AM,04/05/2016 11:27:42 AM,04/05/2016 11:43:03 AM,04/05/2016 11:53:30 AM,04/05/2016 12:03:14 PM,Code 2 Transport,04/05/2016 12:34:16 PM,1800 Block of 25TH ST,San Francisco,94107,B10,37,2615,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7523071859772, -122.397488168993)",160961432-56 -160931927,75,16036886,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:58:19 PM,04/02/2016 01:58:19 PM,04/02/2016 02:07:24 PM,04/02/2016 02:08:36 PM,04/02/2016 02:13:41 PM,04/02/2016 02:27:27 PM,04/02/2016 02:43:49 PM,Code 2 Transport,04/02/2016 03:21:10 PM,1000 Block of CAPP ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7499099820999, -122.417055896284)",160931927-75 -152343573,RC1,15089392,Medical Incident,08/22/2015,08/22/2015,08/22/2015 09:06:33 PM,08/22/2015 09:07:10 PM,08/22/2015 09:09:05 PM,08/22/2015 09:09:05 PM,08/22/2015 09:11:23 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Code 2 Transport,08/22/2015 09:34:21 PM,300 Block of SPEAR ST,San Francisco,94105,B03,35,2113,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.7894150834446, -122.390249078414)",152343573-RC1 -160992184,71,16039346,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:08:56 PM,04/08/2016 03:09:56 PM,04/08/2016 03:12:29 PM,04/08/2016 03:13:35 PM,04/08/2016 03:20:26 PM,04/08/2016 03:42:44 PM,04/08/2016 04:19:26 PM,Code 2 Transport,04/08/2016 04:30:26 PM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",160992184-71 -160971459,AM10,16038371,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:57:12 AM,04/06/2016 10:58:29 AM,04/06/2016 10:59:19 AM,04/06/2016 11:01:05 AM,04/06/2016 11:06:29 AM,04/06/2016 11:17:32 AM,04/06/2016 11:45:43 AM,Code 2 Transport,04/06/2016 12:11:20 PM,100 Block of 5TH ST,San Francisco,94103,B03,1,2246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7817509861584, -122.40515072935)",160971459-AM10 -141953557,E12,14067722,Medical Incident,07/14/2014,07/14/2014,07/14/2014 10:47:23 PM,07/14/2014 10:47:58 PM,07/14/2014 10:48:22 PM,07/14/2014 10:49:46 PM,07/14/2014 10:52:17 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Code 2 Transport,07/14/2014 10:57:55 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,true,Non Life-threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",141953557-E12 -151721852,E06,15065708,Medical Incident,06/21/2015,06/21/2015,06/21/2015 02:20:10 PM,06/21/2015 02:21:22 PM,06/21/2015 02:21:49 PM,06/21/2015 02:22:54 PM,06/21/2015 02:25:31 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Code 2 Transport,06/21/2015 02:52:25 PM,300 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.76701047078, -122.422020137013)",151721852-E06 -141060309,KM11,14035842,Medical Incident,04/16/2014,04/16/2014,04/16/2014 04:02:42 PM,04/16/2014 04:04:39 PM,04/16/2014 04:04:57 PM,04/16/2014 04:06:20 PM,04/16/2014 04:11:18 PM,04/16/2014 04:25:30 PM,04/16/2014 04:33:17 PM,Code 2 Transport,04/16/2014 05:25:01 PM,1100 Block of MARKET ST,SAN FRANCISCO,94103,B02,36,2316,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",141060309-KM11 -142090688,T12,14072338,Medical Incident,07/28/2014,07/28/2014,07/28/2014 08:22:29 AM,07/28/2014 08:22:29 AM,07/28/2014 08:23:55 AM,07/28/2014 08:24:57 AM,07/28/2014 08:26:50 AM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Code 3 Transport,07/28/2014 08:27:29 AM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,E,E,3,false,Non Life-threatening,1,TRUCK,3,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",142090688-T12 -152351711,E03,15089586,Medical Incident,08/23/2015,08/23/2015,08/23/2015 12:54:00 PM,08/23/2015 12:54:56 PM,08/23/2015 12:55:48 PM,08/23/2015 12:57:06 PM,08/23/2015 12:58:53 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Code 2 Transport,08/23/2015 12:59:38 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",152351711-E03 -141180102,T15,14039738,Gas Leak (Natural and LP Gases),04/28/2014,04/28/2014,04/28/2014 08:51:25 AM,04/28/2014 08:55:04 AM,04/28/2014 08:56:32 AM,04/28/2014 08:57:09 AM,04/28/2014 09:00:55 AM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Fire,04/28/2014 09:03:09 AM,200 Block of PLYMOUTH AVE,SAN FRANCISCO,94112,B09,33,8371,3,3,3,false,Alarm,1,TRUCK,3,9,11,Oceanview/Merced/Ingleside,"(37.7127562217408, -122.456118377299)",141180102-T15 -160992903,KM01,16039409,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:00:03 PM,04/08/2016 06:00:03 PM,04/08/2016 06:01:03 PM,04/08/2016 06:01:38 PM,04/08/2016 06:29:40 PM,04/08/2016 06:50:53 PM,04/08/2016 07:12:14 PM,Code 2 Transport,04/08/2016 07:39:52 PM,MARKET ST/6TH ST,San Francisco,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160992903-KM01 -152620490,E31,15100029,Alarms,09/19/2015,09/18/2015,09/19/2015 03:25:36 AM,09/19/2015 03:27:24 AM,09/19/2015 03:27:44 AM,09/19/2015 03:29:27 AM,09/19/2015 03:31:23 AM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Fire,09/19/2015 03:42:13 AM,300 Block of 11TH AVE,San Francisco,94118,B07,31,7141,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7817321022893, -122.469767595348)",152620490-E31 -151502155,RC2,15057134,Medical Incident,05/30/2015,05/30/2015,05/30/2015 03:12:05 PM,05/30/2015 03:12:20 PM,05/30/2015 03:12:34 PM,05/30/2015 03:15:33 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Code 2 Transport,05/30/2015 03:16:53 PM,300 Block of DE LONG ST,San Francisco,94112,B09,33,8365,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,11,Outer Mission,"(37.709579867287, -122.464851258881)",151502155-RC2 -150302768,60,15011664,Medical Incident,01/30/2015,01/30/2015,01/30/2015 05:10:33 PM,01/30/2015 05:12:39 PM,01/30/2015 05:19:56 PM,01/30/2015 05:20:13 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Unable to Locate,01/30/2015 05:26:08 PM,LEAVENWORTH ST/OFARRELL ST,San Francisco,94109,B04,3,1544,2,2,2,false,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",150302768-60 -152272959,CR1,15086649,Water Rescue,08/15/2015,08/15/2015,08/15/2015 05:07:45 PM,08/15/2015 05:11:10 PM,08/15/2015 05:11:44 PM,08/15/2015 05:14:20 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Fire,08/15/2015 05:50:12 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,false,Fire,1,SUPPORT,8,7,2,Presidio,"(37.7915253713789, -122.483480228628)",152272959-CR1 -151050574,KM09,15039602,Medical Incident,04/15/2015,04/14/2015,04/15/2015 07:10:06 AM,04/15/2015 07:11:07 AM,04/15/2015 07:11:50 AM,04/15/2015 07:12:53 AM,04/15/2015 07:21:24 AM,04/15/2015 07:38:45 AM,04/15/2015 08:26:02 AM,Code 2 Transport,04/15/2015 08:29:49 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",151050574-KM09 -150760059,85,15028991,Medical Incident,03/17/2015,03/16/2015,03/17/2015 12:25:23 AM,03/17/2015 12:29:28 AM,03/17/2015 12:29:41 AM,03/17/2015 12:31:32 AM,03/17/2015 12:35:52 AM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Patient Declined Transport,03/17/2015 12:40:00 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",150760059-85 -160962156,82,16038043,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:17:16 PM,04/05/2016 02:17:45 PM,04/05/2016 02:17:54 PM,04/05/2016 02:18:01 PM,04/05/2016 02:22:04 PM,04/05/2016 02:37:11 PM,04/05/2016 03:01:36 PM,Code 2 Transport,04/05/2016 03:11:02 PM,2100 Block of POWELL ST,San Francisco,94133,B01,28,131,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8044382972452, -122.411605476142)",160962156-82 -151792039,E19,15068252,Medical Incident,06/28/2015,06/28/2015,06/28/2015 02:06:42 PM,06/28/2015 02:07:21 PM,06/28/2015 02:08:21 PM,06/28/2015 02:09:42 PM,06/28/2015 02:12:35 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 02:30:50 PM,100 Block of RIVERTON DR,San Francisco,94132,B08,19,8742,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.731499288175, -122.487171386918)",151792039-E19 -152512441,60,15095946,Medical Incident,09/08/2015,09/08/2015,09/08/2015 02:48:19 PM,09/08/2015 02:49:40 PM,09/08/2015 02:49:49 PM,09/08/2015 02:53:02 PM,09/08/2015 02:59:03 PM,09/08/2015 03:15:13 PM,09/08/2015 03:29:52 PM,Code 2 Transport,09/08/2015 04:08:12 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",152512441-60 -141551878,AM20,14053314,Medical Incident,06/04/2014,06/04/2014,06/04/2014 01:36:14 PM,06/04/2014 01:38:32 PM,06/04/2014 01:53:08 PM,06/04/2014 01:53:08 PM,06/04/2014 02:09:48 PM,06/04/2014 02:23:50 PM,06/04/2014 02:51:24 PM,Code 2 Transport,06/04/2014 03:16:59 PM,600 Block of HEARST AVE,San Francisco,94112,B09,15,8234,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7306216527598, -122.452274336751)",141551878-AM20 -153101256,T13,15119108,Alarms,11/06/2015,11/06/2015,11/06/2015 10:50:55 AM,11/06/2015 10:52:06 AM,11/06/2015 10:53:20 AM,11/06/2015 10:55:38 AM,11/06/2015 10:59:47 AM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Fire,11/06/2015 11:07:04 AM,1200 Block of MONTGOMERY ST,San Francisco,94111,B01,28,1227,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8003464419765, -122.40421934123)",153101256-T13 -141240050,RC3,14041910,Medical Incident,05/04/2014,05/03/2014,05/04/2014 03:21:29 AM,05/04/2014 03:25:01 AM,05/04/2014 05:20:40 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Code 2 Transport,05/04/2014 05:22:41 AM,MISSION ST/ACTON ST,,94112,B09,33,6213,,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,4,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",141240050-RC3 -141900833,T01,14065760,Alarms,07/09/2014,07/09/2014,07/09/2014 08:50:26 AM,07/09/2014 08:51:51 AM,07/09/2014 08:52:42 AM,07/09/2014 08:53:36 AM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Fire,07/09/2014 08:59:16 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",141900833-T01 -153401730,E01,15130836,Medical Incident,12/06/2015,12/06/2015,12/06/2015 12:59:30 PM,12/06/2015 01:02:51 PM,12/06/2015 01:03:01 PM,12/06/2015 01:04:58 PM,12/06/2015 01:06:41 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,Code 2 Transport,12/06/2015 01:15:40 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7791285379843, -122.408030111231)",153401730-E01 -142720999,AM04,14095321,Medical Incident,09/29/2014,09/29/2014,09/29/2014 09:44:32 AM,09/29/2014 09:45:41 AM,09/29/2014 09:46:59 AM,09/29/2014 09:47:58 AM,09/29/2014 09:56:17 AM,09/29/2014 10:12:23 AM,09/29/2014 10:36:31 AM,Code 2 Transport,09/29/2014 11:16:59 AM,100 Block of TOWNSEND ST,San Francisco,94107,B03,8,2154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Mission Bay,"(37.7796910137658, -122.391588816975)",142720999-AM04 -141693091,E19,14058493,Other,06/18/2014,06/18/2014,06/18/2014 08:29:34 PM,06/18/2014 08:29:34 PM,06/18/2014 08:32:49 PM,06/18/2014 08:34:13 PM,06/18/2014 08:36:46 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,No Merit,06/18/2014 08:43:32 PM,300 Block of GARCES DR,San Francisco,94132,B08,19,8484,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7162735350246, -122.482439449334)",141693091-E19 -150081061,E21,15003061,Alarms,01/08/2015,01/08/2015,01/08/2015 09:42:20 AM,01/08/2015 09:44:14 AM,01/08/2015 09:44:31 AM,01/08/2015 09:45:50 AM,01/08/2015 09:48:28 AM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Fire,01/08/2015 10:00:06 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150081061-E21 -153473074,E38,15133831,Structure Fire,12/13/2015,12/13/2015,12/13/2015 08:06:21 PM,12/13/2015 08:06:57 PM,12/13/2015 08:07:09 PM,12/13/2015 08:08:11 PM,12/13/2015 08:09:16 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Fire,12/13/2015 08:24:08 PM,1800 Block of PACIFIC AVE,San Francisco,94109,B04,38,3231,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7945566533258, -122.425703947433)",153473074-E38 -142561979,T02,14089440,Fuel Spill,09/13/2014,09/13/2014,09/13/2014 01:40:29 PM,09/13/2014 01:44:01 PM,09/13/2014 01:45:31 PM,09/13/2014 01:45:49 PM,09/13/2014 01:49:18 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 02:35:10 PM,200 Block of GEARY ST,San Francisco,94108,B01,1,1323,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",142561979-T02 -161000701,55,16039648,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:12:13 AM,04/09/2016 07:13:54 AM,04/09/2016 07:14:52 AM,04/09/2016 07:14:59 AM,04/09/2016 07:20:32 AM,04/09/2016 07:57:07 AM,04/09/2016 08:26:56 AM,Code 2 Transport,04/09/2016 09:04:04 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",161000701-55 -160990301,AM24,16039177,Medical Incident,04/08/2016,04/07/2016,04/08/2016 03:12:03 AM,04/08/2016 03:12:03 AM,04/08/2016 03:12:03 AM,04/08/2016 03:12:03 AM,04/08/2016 03:12:03 AM,04/08/2016 03:18:04 AM,04/08/2016 03:31:50 AM,Code 2 Transport,04/08/2016 04:07:53 AM,100 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2157,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7868609000277, -122.399689492621)",160990301-AM24 -160974093,89,16038659,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:37:10 PM,04/06/2016 08:37:43 PM,04/06/2016 08:38:59 PM,04/06/2016 08:39:07 PM,04/06/2016 08:42:14 PM,04/06/2016 09:03:18 PM,04/06/2016 09:08:45 PM,Code 2 Transport,04/06/2016 09:45:31 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160974093-89 -160932597,61,16036957,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:05:56 PM,04/02/2016 05:08:25 PM,04/02/2016 05:09:05 PM,04/02/2016 05:09:42 PM,04/02/2016 05:12:52 PM,04/02/2016 05:38:58 PM,04/02/2016 05:58:05 PM,Code 2 Transport,04/02/2016 06:37:06 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160932597-61 -141640382,E43,14056426,Medical Incident,06/13/2014,06/12/2014,06/13/2014 04:11:46 AM,06/13/2014 04:13:10 AM,06/13/2014 04:14:29 AM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/13/2014 04:15:41 AM,0 Block of CIELITO DR,San Francisco,94134,B09,43,6246,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7096253280817, -122.422023475946)",141640382-E43 -152052085,E20,15078107,Alarms,07/24/2015,07/24/2015,07/24/2015 02:12:14 PM,07/24/2015 02:13:51 PM,07/24/2015 02:14:01 PM,07/24/2015 02:15:38 PM,07/24/2015 02:16:58 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Fire,07/24/2015 02:20:39 PM,0 Block of STARVIEW WAY,San Francisco,94131,B08,20,5356,3,3,3,true,Alarm,1,ENGINE,2,8,7,Twin Peaks,"(37.7502049940208, -122.451518882892)",152052085-E20 -152531270,57,15096670,Traffic Collision,09/10/2015,09/10/2015,09/10/2015 10:23:31 AM,09/10/2015 10:23:47 AM,09/10/2015 10:25:10 AM,09/10/2015 10:25:23 AM,09/10/2015 10:31:17 AM,09/10/2015 10:46:13 AM,09/10/2015 10:46:29 AM,Code 2 Transport,09/10/2015 11:26:28 AM,ALEMANY BL/MOUNT VERNON AV,San Francisco,94112,B09,15,8333,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7160794278359, -122.444563067411)",152531270-57 -153063333,E36,15117750,Structure Fire,11/02/2015,11/02/2015,11/02/2015 08:20:59 PM,11/02/2015 08:20:59 PM,11/02/2015 08:21:16 PM,11/02/2015 08:24:13 PM,11/02/2015 08:24:15 PM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/02/2015 08:24:39 PM,100 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",153063333-E36 -160930524,AM20,16036721,Medical Incident,04/02/2016,04/01/2016,04/02/2016 04:46:36 AM,04/02/2016 04:48:30 AM,04/02/2016 04:49:00 AM,04/02/2016 04:49:43 AM,04/02/2016 05:00:54 AM,04/02/2016 05:09:01 AM,04/02/2016 05:28:24 AM,Code 2 Transport,04/02/2016 05:46:04 AM,0 Block of REUEL CT,San Francisco,94124,B10,25,652,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7364122535473, -122.382919645814)",160930524-AM20 -160974014,88,16038647,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:13:37 PM,04/06/2016 08:14:25 PM,04/06/2016 08:15:30 PM,04/06/2016 08:15:58 PM,04/06/2016 08:19:51 PM,04/06/2016 08:37:21 PM,04/06/2016 08:51:05 PM,Code 2 Transport,04/06/2016 09:26:53 PM,3600 Block of CLAY ST,San Francisco,94118,B07,10,4426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7882786698444, -122.45293673498)",160974014-88 -150653376,E19,15024965,Alarms,03/06/2015,03/06/2015,03/06/2015 06:41:13 PM,03/06/2015 06:42:10 PM,03/06/2015 06:42:16 PM,03/06/2015 06:43:32 PM,03/06/2015 06:47:30 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Fire,03/06/2015 06:55:53 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",150653376-E19 -142273198,85,14078993,Medical Incident,08/15/2014,08/15/2014,08/15/2014 07:44:19 PM,08/15/2014 07:46:03 PM,08/15/2014 07:53:27 PM,08/15/2014 07:53:54 PM,08/15/2014 08:08:44 PM,08/15/2014 08:19:02 PM,08/15/2014 08:27:47 PM,Code 2 Transport,08/15/2014 09:07:56 PM,2500 Block of GOUGH ST,San Francisco,94123,B04,38,3246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7967275149772, -122.427054807537)",142273198-85 -143503891,B04,14125191,Alarms,12/16/2014,12/16/2014,12/16/2014 11:58:15 PM,12/17/2014 12:00:20 AM,12/17/2014 12:01:07 AM,12/17/2014 12:03:02 AM,12/17/2014 12:07:18 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/17/2014 12:22:33 AM,2200 Block of TURK BLVD,San Francisco,94118,B05,21,4363,3,3,3,false,Alarm,1,CHIEF,3,5,5,Lone Mountain/USF,"(37.7786316785476, -122.446526415806)",143503891-B04 -142561680,68,14089410,Medical Incident,09/13/2014,09/13/2014,09/13/2014 12:18:24 PM,09/13/2014 12:19:37 PM,09/13/2014 12:20:26 PM,09/13/2014 12:21:33 PM,09/13/2014 12:26:36 PM,09/13/2014 12:44:54 PM,09/13/2014 12:50:57 PM,Code 2 Transport,09/13/2014 01:31:19 PM,MCALLISTER ST/LYON ST,San Francisco,94117,B05,21,4254,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7771644445843, -122.443321052631)",142561680-68 -150420303,E03,15016229,Medical Incident,02/11/2015,02/10/2015,02/11/2015 03:39:03 AM,02/11/2015 03:40:40 AM,02/11/2015 03:41:45 AM,02/11/2015 03:44:22 AM,02/11/2015 03:46:59 AM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Fire,02/11/2015 03:52:22 AM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",150420303-E03 -152550807,E01,15097427,Medical Incident,09/12/2015,09/12/2015,09/12/2015 08:19:01 AM,09/12/2015 08:19:01 AM,09/12/2015 08:21:07 AM,09/12/2015 08:21:07 AM,09/12/2015 08:23:12 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Code 3 Transport,09/12/2015 08:31:48 AM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,A,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",152550807-E01 -142691398,E41,14094246,Medical Incident,09/26/2014,09/26/2014,09/26/2014 11:05:57 AM,09/26/2014 11:08:46 AM,09/26/2014 11:13:16 AM,09/26/2014 11:13:40 AM,09/26/2014 11:16:00 AM,04/25/2016 01:14:53 PM,04/25/2016 01:14:53 PM,Code 2 Transport,09/26/2014 11:28:08 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",142691398-E41 -150741506,AM06,15028383,Medical Incident,03/15/2015,03/15/2015,03/15/2015 11:41:10 AM,03/15/2015 11:41:27 AM,03/15/2015 11:41:47 AM,03/15/2015 11:42:32 AM,03/15/2015 12:04:45 PM,03/15/2015 12:31:29 PM,03/15/2015 12:52:51 PM,Code 2 Transport,03/15/2015 01:26:06 PM,400 Block of MIDDLE WEST DR,San Francisco,94122,B08,23,7565,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7664523569659, -122.495934078446)",150741506-AM06 -141110403,E05,14037621,Medical Incident,04/21/2014,04/21/2014,04/21/2014 09:33:15 PM,04/21/2014 09:35:08 PM,04/21/2014 09:35:45 PM,04/21/2014 09:37:10 PM,04/21/2014 09:38:11 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Code 2 Transport,04/21/2014 09:50:20 PM,1600 Block of EDDY ST,SAN FRANCISCO,94115,B05,5,3624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7810598440913, -122.434783737987)",141110403-E05 -141903028,E13,14065959,Medical Incident,07/09/2014,07/09/2014,07/09/2014 07:08:17 PM,07/09/2014 07:08:51 PM,07/09/2014 07:11:36 PM,07/09/2014 07:12:36 PM,07/09/2014 07:14:45 PM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Code 2 Transport,07/09/2014 07:37:11 PM,1100 Block of GRANT AVE,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7971943093664, -122.406817843184)",141903028-E13 -153282755,E36,15126336,Medical Incident,11/24/2015,11/24/2015,11/24/2015 04:58:05 PM,11/24/2015 05:00:16 PM,11/24/2015 05:01:36 PM,11/24/2015 05:05:50 PM,11/24/2015 05:07:56 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,No Merit,11/24/2015 05:20:02 PM,LARKIN ST/FULTON ST,San Francisco,94102,B02,36,1645,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",153282755-E36 -143111341,E03,14110090,Medical Incident,11/07/2014,11/07/2014,11/07/2014 11:08:17 AM,11/07/2014 11:11:21 AM,11/07/2014 11:12:07 AM,11/07/2014 11:12:29 AM,11/07/2014 11:14:04 AM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Code 2 Transport,11/07/2014 11:23:24 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",143111341-E03 -160981104,77,16038835,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:21:04 AM,04/07/2016 09:22:52 AM,04/07/2016 09:23:20 AM,04/07/2016 09:23:44 AM,04/07/2016 09:30:48 AM,04/07/2016 09:54:50 AM,04/07/2016 10:13:16 AM,Code 2 Transport,04/07/2016 10:48:47 AM,MISSION ST/1ST ST,San Francisco,94105,B03,35,2126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7897625977156, -122.397574469759)",160981104-77 -151170878,T03,15044130,Structure Fire,04/27/2015,04/27/2015,04/27/2015 08:51:22 AM,04/27/2015 08:51:27 AM,04/27/2015 08:51:59 AM,04/27/2015 08:54:24 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 08:55:05 AM,LEAVENWORTH ST/GOLDEN GATE AV,San Francisco,94102,B02,1,1546,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",151170878-T03 -141293914,AM18,14044066,Medical Incident,05/09/2014,05/09/2014,05/09/2014 10:52:27 PM,05/09/2014 10:52:27 PM,05/09/2014 11:02:28 PM,05/09/2014 11:03:12 PM,05/09/2014 11:12:06 PM,04/25/2016 01:17:25 PM,04/25/2016 01:17:25 PM,No Merit,05/09/2014 11:32:16 PM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",141293914-AM18 -143501575,B01,14124986,Alarms,12/16/2014,12/16/2014,12/16/2014 12:33:40 PM,12/16/2014 12:34:30 PM,12/16/2014 12:34:51 PM,12/16/2014 12:35:02 PM,12/16/2014 12:36:57 PM,04/25/2016 01:13:24 PM,04/25/2016 01:13:24 PM,Fire,12/16/2014 12:38:07 PM,500 Block of UNION ST,San Francisco,94133,B01,28,1265,3,3,3,false,Alarm,1,CHIEF,1,1,3,North Beach,"(37.8006202294565, -122.408194672388)",143501575-B01 -150461064,RS1,15017831,Medical Incident,02/15/2015,02/15/2015,02/15/2015 09:26:07 AM,02/15/2015 09:26:07 AM,02/15/2015 09:26:21 AM,02/15/2015 09:27:52 AM,02/15/2015 09:29:36 AM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Code 2 Transport,02/15/2015 09:40:46 AM,0 Block of 5TH ST,San Francisco,94103,B03,1,2247,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7832636870331, -122.407051190493)",150461064-RS1 -143421370,KM10,14121479,Medical Incident,12/08/2014,12/08/2014,12/08/2014 11:28:10 AM,12/08/2014 11:28:52 AM,12/08/2014 11:29:26 AM,12/08/2014 11:31:15 AM,12/08/2014 11:38:03 AM,12/08/2014 11:59:51 AM,12/08/2014 12:20:48 PM,Code 3 Transport,12/08/2014 01:03:03 PM,2700 Block of 35TH AVE,San Francisco,94116,B08,18,7553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7360599451453, -122.492331865053)",143421370-KM10 -150062608,87,15002380,Medical Incident,01/06/2015,01/06/2015,01/06/2015 05:06:15 PM,01/06/2015 05:06:15 PM,01/06/2015 05:11:59 PM,01/06/2015 05:12:43 PM,01/06/2015 05:21:34 PM,01/06/2015 05:43:40 PM,01/06/2015 05:47:55 PM,Code 2 Transport,01/06/2015 06:37:15 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",150062608-87 -153271122,61,15125811,Medical Incident,11/23/2015,11/23/2015,11/23/2015 09:58:59 AM,11/23/2015 10:01:15 AM,11/23/2015 10:02:24 AM,11/23/2015 10:02:30 AM,11/23/2015 10:10:13 AM,11/23/2015 10:27:05 AM,11/23/2015 10:44:23 AM,Code 2 Transport,11/23/2015 11:10:16 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",153271122-61 -141632814,E01,14056304,Medical Incident,06/12/2014,06/12/2014,06/12/2014 06:41:22 PM,06/12/2014 06:42:12 PM,06/12/2014 07:05:17 PM,06/12/2014 07:05:37 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/12/2014 07:05:53 PM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7839914857614, -122.408066547804)",141632814-E01 -141050069,B03,14035328,Alarms,04/15/2014,04/14/2014,04/15/2014 07:42:53 AM,04/15/2014 07:44:19 AM,04/15/2014 07:44:47 AM,04/15/2014 07:45:34 AM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Fire,04/15/2014 07:51:39 AM,700 Block of MARKET ST,SAN FRANCISCO,94108,B03,1,1322,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",141050069-B03 -142922746,AM08,14103095,Medical Incident,10/19/2014,10/19/2014,10/19/2014 05:51:59 PM,10/19/2014 05:55:27 PM,10/19/2014 05:58:04 PM,10/19/2014 05:58:38 PM,10/19/2014 06:10:32 PM,10/19/2014 06:20:57 PM,10/19/2014 06:27:17 PM,Code 2 Transport,10/19/2014 06:45:59 PM,24TH ST/HAMPSHIRE ST,San Francisco,94110,B06,9,5531,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.752906613776, -122.407291184342)",142922746-AM08 -153401877,61,15130852,Medical Incident,12/06/2015,12/06/2015,12/06/2015 01:45:59 PM,12/06/2015 01:47:55 PM,12/06/2015 01:49:05 PM,12/06/2015 01:53:35 PM,12/06/2015 01:58:55 PM,12/06/2015 02:21:08 PM,12/06/2015 02:36:34 PM,Code 2 Transport,12/06/2015 03:31:39 PM,CALL BOX:,Presidio,94129,B99,51,4614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio,"(37.8041405785249, -122.454465544895)",153401877-61 -150321013,77,15012292,Medical Incident,02/01/2015,02/01/2015,02/01/2015 09:07:01 AM,02/01/2015 09:07:01 AM,02/01/2015 09:07:40 AM,02/01/2015 09:07:52 AM,02/01/2015 09:13:54 AM,02/01/2015 09:21:00 AM,02/01/2015 09:40:56 AM,Code 2 Transport,02/01/2015 10:13:23 AM,26TH ST/SAN JOSE AV,San Francisco,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7488504427694, -122.421284459714)",150321013-77 -160923119,68,16036572,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:58:45 PM,04/01/2016 07:00:18 PM,04/01/2016 07:01:48 PM,04/01/2016 07:02:21 PM,04/01/2016 07:19:31 PM,04/01/2016 07:30:15 PM,04/01/2016 07:50:20 PM,Code 2 Transport,04/01/2016 08:18:56 PM,2100 Block of THE EMBARCADERO NOR,,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080500969356, -122.409877282931)",160923119-68 -160940115,85,16037104,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:35:44 AM,04/03/2016 12:35:44 AM,04/03/2016 12:36:46 AM,04/03/2016 12:36:56 AM,04/03/2016 12:50:35 AM,04/03/2016 12:59:46 AM,04/03/2016 01:18:43 AM,Code 2 Transport,04/03/2016 01:58:11 AM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160940115-85 -160993720,71,16039492,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:46:28 PM,04/08/2016 09:48:49 PM,04/08/2016 09:55:20 PM,04/08/2016 09:55:53 PM,04/08/2016 10:08:45 PM,04/08/2016 10:19:18 PM,04/08/2016 10:37:15 PM,Code 2 Transport,04/08/2016 11:18:50 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160993720-71 -153331845,T05,15128092,Medical Incident,11/29/2015,11/29/2015,11/29/2015 03:00:06 PM,11/29/2015 03:00:38 PM,11/29/2015 03:01:35 PM,11/29/2015 03:02:43 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Code 2 Transport,11/29/2015 03:03:17 PM,FILLMORE ST/POST ST,San Francisco,94115,B04,5,3541,2,2,2,false,Non Life-threatening,1,TRUCK,2,4,5,Japantown,"(37.7851509392156, -122.433083400235)",153331845-T05 -150403355,72,15015749,Medical Incident,02/09/2015,02/09/2015,02/09/2015 08:07:07 PM,02/09/2015 08:08:12 PM,02/09/2015 08:08:22 PM,02/09/2015 08:10:55 PM,02/09/2015 08:28:15 PM,02/09/2015 08:29:37 PM,02/09/2015 08:47:39 PM,Code 2 Transport,02/09/2015 09:22:14 PM,0 Block of DOUBLE ROCK ST,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7204658651293, -122.387775002515)",150403355-72 -142562055,E12,14089445,Alarms,09/13/2014,09/13/2014,09/13/2014 02:06:13 PM,09/13/2014 02:07:45 PM,09/13/2014 02:07:55 PM,09/13/2014 02:11:35 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 02:11:57 PM,0 Block of WOODHAVEN CT,San Francisco,94131,B08,20,5366,3,3,3,true,Alarm,1,ENGINE,4,8,7,Inner Sunset,"(37.7560017985425, -122.455897306136)",142562055-E12 -143141448,54,14111224,Medical Incident,11/10/2014,11/10/2014,11/10/2014 12:11:06 PM,11/10/2014 12:12:25 PM,11/10/2014 12:14:18 PM,11/10/2014 12:15:10 PM,11/10/2014 12:27:57 PM,11/10/2014 12:42:38 PM,11/10/2014 01:09:23 PM,Code 2 Transport,11/10/2014 01:43:18 PM,1100 Block of GILMAN AVE,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7198684752103, -122.390904801268)",143141448-54 -150531206,74,15020347,Medical Incident,02/22/2015,02/22/2015,02/22/2015 10:30:32 AM,02/22/2015 10:32:39 AM,02/22/2015 10:32:49 AM,02/22/2015 10:33:08 AM,02/22/2015 10:37:43 AM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,Cancelled,02/22/2015 10:44:51 AM,100 Block of DIAMOND ST,San Francisco,94114,B05,6,5415,3,3,3,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7599536346651, -122.437183555035)",150531206-74 -152850649,52,15109325,Traffic Collision,10/12/2015,10/11/2015,10/12/2015 07:03:05 AM,10/12/2015 07:04:41 AM,10/12/2015 07:05:31 AM,10/12/2015 07:06:03 AM,10/12/2015 07:17:32 AM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Patient Declined Transport,10/12/2015 08:00:40 AM,MASONIC AV/FULTON ST,San Francisco,94117,B05,21,4463,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",152850649-52 -143092604,E36,14109449,Medical Incident,11/05/2014,11/05/2014,11/05/2014 05:07:38 PM,11/05/2014 05:07:38 PM,11/05/2014 05:18:23 PM,11/05/2014 05:19:20 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Code 2 Transport,11/05/2014 05:23:46 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7765128154607, -122.414966685701)",143092604-E36 -143331080,MA1,14117959,Structure Fire,11/29/2014,11/29/2014,11/29/2014 10:17:28 AM,11/29/2014 10:18:20 AM,11/29/2014 10:47:43 AM,11/29/2014 10:48:35 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 12:12:38 PM,600 Block of AVENUE I,Treasure Isla,94130,B03,48,2931,3,3,3,false,Fire,1,SUPPORT,19,None,6,Treasure Island,"(37.8252845100944, -122.368701610634)",143331080-MA1 -141331130,RS1,14045255,Medical Incident,05/13/2014,05/13/2014,05/13/2014 10:33:24 AM,05/13/2014 10:34:31 AM,05/13/2014 10:34:52 AM,05/13/2014 10:35:08 AM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/13/2014 10:41:35 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",141331130-RS1 -160960516,88,16037899,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:15:48 AM,04/05/2016 07:17:35 AM,04/05/2016 07:17:57 AM,04/05/2016 07:18:03 AM,04/05/2016 07:22:44 AM,04/05/2016 07:33:47 AM,04/05/2016 07:38:59 AM,Code 2 Transport,04/05/2016 08:10:24 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160960516-88 -150784219,AM24,15030109,Medical Incident,03/19/2015,03/19/2015,03/19/2015 11:42:06 PM,03/19/2015 11:43:32 PM,03/19/2015 11:43:37 PM,03/19/2015 11:44:19 PM,03/19/2015 11:48:29 PM,03/19/2015 11:55:39 PM,03/20/2015 12:20:56 AM,Code 2 Transport,03/20/2015 12:53:31 AM,1200 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",150784219-AM24 -150271058,E15,15010346,Medical Incident,01/27/2015,01/27/2015,01/27/2015 09:43:31 AM,01/27/2015 09:46:27 AM,01/27/2015 09:46:55 AM,01/27/2015 09:48:53 AM,01/27/2015 09:49:44 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Against Medical Advice,01/27/2015 10:01:09 AM,1800 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",150271058-E15 -152272206,AM06,15086584,Medical Incident,08/15/2015,08/15/2015,08/15/2015 02:11:41 PM,08/15/2015 02:11:41 PM,08/15/2015 02:13:32 PM,08/15/2015 02:16:36 PM,08/15/2015 02:22:05 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Duplicate,08/15/2015 02:28:01 PM,400 Block of 10TH ST,San Francisco,94103,B03,29,2344,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7710023420989, -122.410457857589)",152272206-AM06 -160931319,67,16036815,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:06:18 AM,04/02/2016 11:07:09 AM,04/02/2016 11:08:02 AM,04/02/2016 11:08:50 AM,04/02/2016 11:11:05 AM,04/02/2016 11:18:09 AM,04/02/2016 11:59:56 AM,Code 2 Transport,04/02/2016 12:02:42 PM,24TH ST/LILAC ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7522713668808, -122.41787692136)",160931319-67 -160980458,KM03,16038777,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:29:22 AM,04/07/2016 04:30:43 AM,04/07/2016 04:31:05 AM,04/07/2016 04:31:48 AM,04/07/2016 04:38:39 AM,04/07/2016 04:47:10 AM,04/07/2016 04:52:56 AM,Code 2 Transport,04/07/2016 05:23:50 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160980458-KM03 -152322027,RS1,15088511,Water Rescue,08/20/2015,08/20/2015,08/20/2015 01:44:09 PM,08/20/2015 01:44:43 PM,08/20/2015 01:47:26 PM,08/20/2015 01:48:53 PM,08/20/2015 01:54:32 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Fire,08/20/2015 02:07:01 PM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,3,3,3,false,Fire,1,RESCUE SQUAD,1,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",152322027-RS1 -141070111,88,14036045,Medical Incident,04/17/2014,04/17/2014,04/17/2014 10:02:00 AM,04/17/2014 10:03:00 AM,04/17/2014 10:05:03 AM,04/17/2014 10:05:26 AM,04/17/2014 10:15:32 AM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Against Medical Advice,04/17/2014 12:04:42 PM,700 Block of PORTOLA ST,PRESIDIO,94129,B99,51,4625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio,"(37.7960254927533, -122.454664097609)",141070111-88 -153102842,E41,15119257,Other,11/06/2015,11/06/2015,11/06/2015 05:42:37 PM,11/06/2015 05:42:37 PM,11/06/2015 05:42:37 PM,11/06/2015 05:42:37 PM,11/06/2015 05:42:37 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Fire,11/06/2015 06:04:51 PM,1600 Block of SACRAMENTO ST,San Francisco,94109,B01,41,3123,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",153102842-E41 -160950086,88,16037477,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:53:23 AM,04/04/2016 12:53:40 AM,04/04/2016 12:53:57 AM,04/04/2016 12:54:06 AM,04/04/2016 01:00:36 AM,04/04/2016 01:22:22 AM,04/04/2016 01:35:15 AM,Code 2 Transport,04/04/2016 02:32:15 AM,100 Block of HALE ST,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7323441875657, -122.408123114783)",160950086-88 -142400651,E36,14083385,Medical Incident,08/28/2014,08/27/2014,08/28/2014 07:58:29 AM,08/28/2014 07:58:49 AM,08/28/2014 07:59:25 AM,08/28/2014 08:01:13 AM,08/28/2014 08:05:56 AM,04/25/2016 01:15:25 PM,04/25/2016 01:15:25 PM,Against Medical Advice,08/28/2014 08:50:09 AM,POLK ST/GROVE ST,San Francisco,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7784891171437, -122.418226581728)",142400651-E36 -150383391,T02,15014939,Structure Fire,02/07/2015,02/07/2015,02/07/2015 08:22:30 PM,02/07/2015 08:25:58 PM,02/07/2015 08:26:13 PM,02/07/2015 08:29:31 PM,02/07/2015 08:29:31 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/07/2015 08:50:11 PM,800 Block of POWELL ST,San Francisco,94108,B01,2,1356,3,3,3,false,Fire,1,TRUCK,2,1,3,Chinatown,"(37.7925154459681, -122.409198002567)",150383391-T02 -142360776,89,14081969,Medical Incident,08/24/2014,08/23/2014,08/24/2014 04:43:54 AM,08/24/2014 04:44:27 AM,08/24/2014 04:45:01 AM,08/24/2014 04:45:28 AM,08/24/2014 04:52:08 AM,08/24/2014 05:08:26 AM,08/24/2014 05:15:57 AM,Code 2 Transport,08/24/2014 05:36:52 AM,3100 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7220016138662, -122.401341444894)",142360776-89 -142663246,T16,14093236,Alarms,09/23/2014,09/23/2014,09/23/2014 07:27:31 PM,09/23/2014 07:28:28 PM,09/23/2014 07:28:35 PM,09/23/2014 07:30:01 PM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/23/2014 07:30:08 PM,0 Block of LINCOLN BLVD,Presidio,94129,B99,51,4612,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.8004046009381, -122.453283883258)",142663246-T16 -160950415,62,16037518,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:51:02 AM,04/04/2016 05:52:33 AM,04/04/2016 05:53:09 AM,04/04/2016 05:53:19 AM,04/04/2016 05:58:23 AM,04/04/2016 06:17:03 AM,04/04/2016 05:58:23 AM,Code 2 Transport,04/04/2016 07:09:27 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160950415-62 -141583381,54,14054604,Medical Incident,06/07/2014,06/07/2014,06/07/2014 10:38:29 PM,06/07/2014 10:39:48 PM,06/07/2014 10:40:05 PM,06/07/2014 10:40:22 PM,06/07/2014 10:57:31 PM,06/07/2014 11:00:01 PM,06/07/2014 11:17:13 PM,Code 2 Transport,06/07/2014 11:40:28 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",141583381-54 -161000259,53,16039588,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:51:00 AM,04/09/2016 01:53:58 AM,04/09/2016 01:54:20 AM,04/09/2016 01:54:47 AM,04/09/2016 01:58:55 AM,04/09/2016 02:13:16 AM,04/09/2016 02:54:50 AM,Code 2 Transport,04/09/2016 03:29:14 AM,BUSH ST/JONES ST,San Francisco,94109,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7895293173979, -122.413728390683)",161000259-53 -153071000,AM08,15117901,Traffic Collision,11/03/2015,11/03/2015,11/03/2015 09:07:34 AM,11/03/2015 09:07:34 AM,11/03/2015 09:09:12 AM,11/03/2015 09:10:20 AM,11/03/2015 09:16:19 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Patient Declined Transport,11/03/2015 09:33:12 AM,GREEN ST/VAN NESS AV,San Francisco,94109,B04,41,3151,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Russian Hill,"(37.7976165818078, -122.423792966601)",153071000-AM08 -151413407,87,15053722,Medical Incident,05/21/2015,05/21/2015,05/21/2015 07:12:21 PM,05/21/2015 07:14:10 PM,05/21/2015 07:15:27 PM,05/21/2015 07:15:37 PM,05/21/2015 07:19:03 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Unable to Locate,05/21/2015 07:22:30 PM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",151413407-87 -160941325,54,16037222,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:39:07 AM,04/03/2016 10:40:33 AM,04/03/2016 10:41:11 AM,04/03/2016 10:41:24 AM,04/03/2016 10:46:06 AM,04/03/2016 11:04:54 AM,04/03/2016 11:32:28 AM,Code 2 Transport,04/03/2016 11:57:55 AM,100 Block of SCOTIA AVE,San Francisco,94124,B10,42,6447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.732040658819, -122.39966796159)",160941325-54 -153372414,63,15129724,Medical Incident,12/03/2015,12/03/2015,12/03/2015 03:31:34 PM,12/03/2015 03:33:12 PM,12/03/2015 03:33:22 PM,12/03/2015 03:33:33 PM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Fire,12/03/2015 03:36:31 PM,2300 Block of 15TH AVE,San Francisco,94116,B08,40,7361,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7441776053299, -122.471353651644)",153372414-63 -153201563,E29,15123014,Medical Incident,11/16/2015,11/16/2015,11/16/2015 11:59:17 AM,11/16/2015 12:01:31 PM,11/16/2015 12:02:31 PM,11/16/2015 12:03:21 PM,11/16/2015 12:04:45 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Code 2 Transport,11/16/2015 12:10:02 PM,900 Block of BRANNAN ST,San Francisco,94103,B03,29,2331,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7706341477204, -122.406164290986)",153201563-E29 -160950554,71,16037528,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:12:55 AM,04/04/2016 07:13:41 AM,04/04/2016 07:13:59 AM,04/04/2016 07:14:06 AM,04/04/2016 07:17:48 AM,04/04/2016 07:38:00 AM,04/04/2016 08:14:38 AM,Code 2 Transport,04/04/2016 08:30:39 AM,1600 Block of KIRKWOOD AVE,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7387417648077, -122.390854570377)",160950554-71 -142032512,T08,14070321,Alarms,07/22/2014,07/22/2014,07/22/2014 05:09:06 PM,07/22/2014 05:11:24 PM,07/22/2014 05:11:40 PM,07/22/2014 05:12:47 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Fire,07/22/2014 05:23:17 PM,MARIPOSA ST/3RD ST,San Francisco,94107,B03,29,2671,3,3,3,false,Alarm,1,TRUCK,3,3,10,Potrero Hill,"(37.7643218361157, -122.388851284628)",142032512-T08 -160942042,88,16037281,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:09:16 PM,04/03/2016 02:10:01 PM,04/03/2016 02:10:14 PM,04/03/2016 02:10:42 PM,04/03/2016 02:12:23 PM,04/03/2016 02:30:52 PM,04/03/2016 02:56:04 PM,Code 2 Transport,04/03/2016 03:47:05 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",160942042-88 -160940169,64,16037111,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:57:43 AM,04/03/2016 12:58:21 AM,04/03/2016 01:00:05 AM,04/03/2016 01:00:05 AM,04/03/2016 01:07:08 AM,04/03/2016 01:21:33 AM,04/03/2016 01:42:09 AM,Code 2 Transport,04/03/2016 02:13:28 AM,200 Block of KING ST,San Francisco,94107,B03,8,2171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160940169-64 -160982010,63,16038928,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:20:45 PM,04/07/2016 01:22:45 PM,04/07/2016 01:23:25 PM,04/07/2016 01:23:44 PM,04/07/2016 01:33:31 PM,04/07/2016 01:40:23 PM,04/07/2016 01:54:50 PM,Code 2 Transport,04/07/2016 02:37:12 PM,300 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.798465838236, -122.407430691755)",160982010-63 -150390480,62,15015053,Medical Incident,02/08/2015,02/07/2015,02/08/2015 02:53:04 AM,02/08/2015 02:54:12 AM,02/08/2015 02:54:29 AM,02/08/2015 02:54:48 AM,02/08/2015 03:17:09 AM,02/08/2015 03:17:15 AM,02/08/2015 03:22:46 AM,Code 2 Transport,02/08/2015 03:58:54 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Tenderloin,"(37.7842476296454, -122.408294122336)",150390480-62 -160964073,89,16038211,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:37:38 PM,04/05/2016 10:43:45 PM,04/05/2016 10:44:00 PM,04/05/2016 10:44:39 PM,04/05/2016 10:56:23 PM,04/05/2016 11:12:10 PM,04/05/2016 11:35:39 PM,Code 2 Transport,04/05/2016 11:51:22 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160964073-89 -152992619,E28,15114847,Medical Incident,10/26/2015,10/26/2015,10/26/2015 04:19:31 PM,10/26/2015 04:20:30 PM,10/26/2015 04:22:55 PM,10/26/2015 04:23:31 PM,10/26/2015 04:25:04 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,No Merit,10/26/2015 04:28:31 PM,600 Block of UNION ST,San Francisco,94133,B01,28,1334,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8004345112965, -122.409709158334)",152992619-E28 -142621507,52,14091581,Traffic Collision,09/19/2014,09/19/2014,09/19/2014 11:38:58 AM,09/19/2014 11:40:05 AM,09/19/2014 11:41:48 AM,09/19/2014 11:42:35 AM,09/19/2014 11:54:33 AM,09/19/2014 12:02:18 PM,09/19/2014 12:34:31 PM,Code 2 Transport,09/19/2014 01:28:23 PM,5TH ST/JESSIE ST,San Francisco,94103,B01,1,1363,2,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7831577478943, -122.407015679867)",142621507-52 -152742887,KM01,15104997,Medical Incident,10/01/2015,10/01/2015,10/01/2015 05:05:29 PM,10/01/2015 05:05:44 PM,10/01/2015 05:06:18 PM,10/01/2015 05:06:57 PM,10/01/2015 05:19:28 PM,10/01/2015 05:53:44 PM,10/01/2015 06:28:59 PM,Code 2 Transport,10/01/2015 06:29:02 PM,600 Block of ALVARADO ST,San Francisco,94114,B06,24,5515,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7536611563754, -122.435425173732)",152742887-KM01 -151793456,E01,15068454,Medical Incident,06/28/2015,06/28/2015,06/28/2015 07:49:23 PM,06/28/2015 07:50:30 PM,06/28/2015 07:50:39 PM,06/28/2015 07:52:00 PM,06/28/2015 07:53:31 PM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Code 2 Transport,06/28/2015 08:02:38 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",151793456-E01 -160972209,74,16038446,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 01:45:38 PM,04/06/2016 01:47:29 PM,04/06/2016 01:47:58 PM,04/06/2016 01:48:10 PM,04/06/2016 01:50:31 PM,04/06/2016 02:00:18 PM,04/06/2016 02:45:57 PM,Code 2 Transport,04/06/2016 03:41:47 PM,SUTTER ST/VAN NESS AV,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",160972209-74 -153441270,74,15132373,Medical Incident,12/10/2015,12/10/2015,12/10/2015 10:22:31 AM,12/10/2015 10:23:59 AM,12/10/2015 10:25:19 AM,12/10/2015 10:25:26 AM,12/10/2015 10:30:09 AM,12/10/2015 10:54:23 AM,12/10/2015 10:59:02 AM,Code 2 Transport,12/10/2015 11:39:08 AM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",153441270-74 -160943182,AM14,16037402,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:55:17 PM,04/03/2016 07:56:16 PM,04/03/2016 07:56:21 PM,04/03/2016 07:57:57 PM,04/03/2016 08:01:57 PM,04/03/2016 08:23:16 PM,04/03/2016 08:40:46 PM,Code 2 Transport,04/03/2016 09:07:07 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160943182-AM14 -152482936,82,15094775,Medical Incident,09/05/2015,09/05/2015,09/05/2015 05:28:57 PM,09/05/2015 05:31:27 PM,09/05/2015 05:32:27 PM,09/05/2015 05:32:45 PM,09/05/2015 05:38:30 PM,09/05/2015 05:53:51 PM,09/05/2015 06:03:33 PM,Code 2 Transport,09/05/2015 06:45:28 PM,3RD ST/WILLIAMS AV,San Francisco,94124,B10,17,6536,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292784549254, -122.392624534553)",152482936-82 -160983067,54,16039051,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:04:40 PM,04/07/2016 06:05:14 PM,04/07/2016 06:06:01 PM,04/07/2016 06:07:19 PM,04/07/2016 06:17:46 PM,04/07/2016 06:38:06 PM,04/07/2016 06:45:57 PM,Code 3 Transport,04/07/2016 07:07:35 PM,600 Block of 41ST AVE,San Francisco,94121,B07,34,7263,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7764556121722, -122.501596303357)",160983067-54 -150022651,T16,15000830,Other,01/02/2015,01/02/2015,01/02/2015 07:00:04 PM,01/02/2015 07:00:04 PM,01/02/2015 07:00:38 PM,01/02/2015 07:03:03 PM,01/02/2015 07:06:00 PM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Fire,01/02/2015 07:31:52 PM,LOMBARD ST/RICHARDSON AV,San Francisco,94123,B04,16,4223,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.7988396270006, -122.444827863712)",150022651-T16 -143262248,AM02,14115536,Medical Incident,11/22/2014,11/22/2014,11/22/2014 02:53:21 PM,11/22/2014 02:53:21 PM,11/22/2014 02:54:27 PM,11/22/2014 02:55:14 PM,11/22/2014 03:02:22 PM,11/22/2014 03:17:45 PM,11/22/2014 03:30:49 PM,Code 2 Transport,11/22/2014 04:06:13 PM,19TH ST/INDIANA ST,San Francisco,94107,B10,37,2471,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7615940539303, -122.391537617969)",143262248-AM02 -160931979,AM16,16036891,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:11:06 PM,04/02/2016 02:14:33 PM,04/02/2016 02:24:46 PM,04/02/2016 02:24:46 PM,04/02/2016 02:32:17 PM,04/02/2016 02:40:11 PM,04/02/2016 02:54:37 PM,Code 2 Transport,04/02/2016 03:19:51 PM,0 Block of LYELL ST,San Francisco,94112,B09,32,8136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,8,Outer Mission,"(37.7313118275068, -122.431604221964)",160931979-AM16 -160923403,56,16036600,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:37:54 PM,04/01/2016 08:39:34 PM,04/01/2016 08:39:49 PM,04/01/2016 08:40:00 PM,04/01/2016 08:55:03 PM,04/01/2016 09:19:26 PM,04/01/2016 09:51:08 PM,Code 2 Transport,04/01/2016 10:21:10 PM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",160923403-56 -150452976,D3,15017623,Structure Fire,02/14/2015,02/14/2015,02/14/2015 07:13:45 PM,02/14/2015 07:14:44 PM,02/14/2015 07:15:03 PM,02/14/2015 07:15:57 PM,02/14/2015 07:18:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 07:21:04 PM,1300 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,false,Alarm,1,CHIEF,2,6,9,Mission,"(37.7513090308287, -122.420516937429)",150452976-D3 -160983096,KM09,16039055,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:11:13 PM,04/07/2016 06:12:16 PM,04/07/2016 06:18:17 PM,04/07/2016 06:18:50 PM,04/07/2016 06:31:47 PM,04/07/2016 06:52:52 PM,04/07/2016 07:08:36 PM,Code 2 Transport,04/07/2016 07:32:18 PM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",160983096-KM09 -152911245,E03,15111768,Medical Incident,10/18/2015,10/18/2015,10/18/2015 10:37:48 AM,10/18/2015 10:38:20 AM,10/18/2015 10:38:58 AM,10/18/2015 10:40:18 AM,10/18/2015 10:45:49 AM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Against Medical Advice,10/18/2015 11:15:34 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",152911245-E03 -141570271,86,14053930,Medical Incident,06/06/2014,06/05/2014,06/06/2014 02:36:55 AM,06/06/2014 02:39:13 AM,06/06/2014 02:39:59 AM,06/06/2014 02:40:33 AM,06/06/2014 02:48:28 AM,06/06/2014 03:24:54 AM,06/06/2014 03:30:28 AM,Code 2 Transport,06/06/2014 03:53:36 AM,1600 Block of GREENWICH ST,San Francisco,94123,B04,16,3234,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7999975397541, -122.427205502151)",141570271-86 -160931218,77,16036798,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:32:07 AM,04/02/2016 10:34:20 AM,04/02/2016 10:44:48 AM,04/02/2016 10:47:25 AM,04/02/2016 10:58:17 AM,04/02/2016 11:12:41 AM,04/02/2016 11:22:09 AM,Code 2 Transport,04/02/2016 12:09:31 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160931218-77 -160950400,52,16037517,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:41:10 AM,04/04/2016 05:42:48 AM,04/04/2016 05:43:26 AM,04/04/2016 05:43:35 AM,04/04/2016 05:51:29 AM,04/04/2016 06:00:28 AM,04/04/2016 06:04:23 AM,Code 2 Transport,04/04/2016 06:33:31 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160950400-52 -150680308,E21,15025865,Structure Fire,03/09/2015,03/08/2015,03/09/2015 04:21:36 AM,03/09/2015 04:22:25 AM,03/09/2015 04:22:56 AM,03/09/2015 04:23:50 AM,03/09/2015 04:26:07 AM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Fire,03/09/2015 05:04:06 AM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,false,Alarm,1,ENGINE,4,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",150680308-E21 -153463491,E36,15133362,Medical Incident,12/12/2015,12/12/2015,12/12/2015 07:11:36 PM,12/12/2015 07:11:59 PM,12/12/2015 07:12:19 PM,12/12/2015 07:14:03 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Code 2 Transport,12/12/2015 07:31:08 PM,400 Block of VAN NESS AVE,San Francisco,94102,B02,36,3237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",153463491-E36 -160931299,88,16036812,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:57:13 AM,04/02/2016 11:00:12 AM,04/02/2016 11:27:13 AM,04/02/2016 11:27:30 AM,04/02/2016 11:34:05 AM,04/02/2016 11:43:00 AM,04/02/2016 12:04:43 PM,Code 2 Transport,04/02/2016 12:29:31 PM,CRESCENT AV/BACHE ST,San Francisco,94110,B06,32,5751,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7349210215802, -122.417478830471)",160931299-88 -151282280,89,15048595,Medical Incident,05/08/2015,05/08/2015,05/08/2015 03:17:54 PM,05/08/2015 03:19:10 PM,05/08/2015 03:23:40 PM,05/08/2015 03:24:03 PM,05/08/2015 03:38:02 PM,05/08/2015 03:55:14 PM,05/08/2015 04:23:10 PM,Code 2 Transport,05/08/2015 04:57:26 PM,1800 Block of GREEN ST,San Francisco,94123,B04,16,3354,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7968332559438, -122.42953707363)",151282280-89 -142862540,RS1,14100896,Medical Incident,10/13/2014,10/13/2014,10/13/2014 05:01:58 PM,10/13/2014 05:02:40 PM,10/13/2014 05:03:21 PM,10/13/2014 05:10:45 PM,10/13/2014 05:10:45 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/13/2014 05:15:44 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142862540-RS1 -141492905,KM02,14051296,Medical Incident,05/29/2014,05/29/2014,05/29/2014 06:28:26 PM,05/29/2014 06:30:43 PM,05/29/2014 06:34:00 PM,05/29/2014 06:34:00 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Patient Declined Transport,05/29/2014 06:47:13 PM,1300 Block of ALEMANY BLVD,San Francisco,94112,B09,32,8263,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,8,Outer Mission,"(37.7296319990453, -122.433808042162)",141492905-KM02 -160991828,86,16039314,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:37:42 PM,04/08/2016 01:39:16 PM,04/08/2016 01:39:40 PM,04/08/2016 01:40:16 PM,04/08/2016 01:48:10 PM,04/08/2016 02:09:16 PM,04/08/2016 02:41:05 PM,Code 2 Transport,04/08/2016 03:08:10 PM,2ND ST/JESSIE ST,San Francisco,94105,B03,1,2144,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7884421623563, -122.400343851915)",160991828-86 -151220576,AR1,15046166,Vehicle Fire,05/02/2015,05/01/2015,05/02/2015 05:26:49 AM,05/02/2015 05:28:56 AM,05/02/2015 09:10:42 AM,05/02/2015 09:11:12 AM,05/02/2015 09:11:12 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Fire,05/02/2015 11:36:07 AM,200 Block of 11TH AVE,San Francisco,94118,B07,31,7141,3,3,3,true,Fire,1,INVESTIGATION,2,7,1,Inner Richmond,"(37.783634135396, -122.469908011173)",151220576-AR1 -142722691,E36,14095482,Alarms,09/29/2014,09/29/2014,09/29/2014 06:12:47 PM,09/29/2014 06:14:34 PM,09/29/2014 06:15:29 PM,09/29/2014 06:16:35 PM,09/29/2014 06:20:46 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Fire,09/29/2014 06:39:45 PM,100 Block of HAYES ST,San Francisco,94102,B02,36,3166,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.777460008139, -122.418879416566)",142722691-E36 -160960531,64,16037900,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:21:19 AM,04/05/2016 07:21:44 AM,04/05/2016 07:22:00 AM,04/05/2016 07:22:25 AM,04/05/2016 07:29:53 AM,04/05/2016 07:41:12 AM,04/05/2016 07:55:32 AM,Code 3 Transport,04/05/2016 08:30:58 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160960531-64 -150521292,T03,15019988,Medical Incident,02/21/2015,02/21/2015,02/21/2015 10:16:23 AM,02/21/2015 10:16:23 AM,02/21/2015 10:16:40 AM,02/21/2015 10:16:59 AM,02/21/2015 10:17:39 AM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Code 2 Transport,02/21/2015 10:28:44 AM,400 Block of MCALLISTER ST,San Francisco,94102,B02,3,3112,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",150521292-T03 -141680076,T10,14057804,Structure Fire,06/17/2014,06/16/2014,06/17/2014 12:42:50 AM,06/17/2014 12:43:26 AM,06/17/2014 12:43:51 AM,06/17/2014 12:47:11 AM,06/17/2014 12:50:46 AM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/17/2014 12:56:13 AM,2700 Block of UNION ST,San Francisco,94123,B04,16,4312,3,3,3,false,Alarm,1,TRUCK,9,4,2,Marina,"(37.7959857750666, -122.444596851749)",141680076-T10 -143011770,E41,14106274,Other,10/28/2014,10/28/2014,10/28/2014 01:44:04 PM,10/28/2014 01:44:40 PM,10/28/2014 01:45:08 PM,10/28/2014 01:45:50 PM,10/28/2014 01:48:19 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Fire,10/28/2014 01:53:43 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",143011770-E41 -142171122,AM14,14075192,Medical Incident,08/05/2014,08/05/2014,08/05/2014 11:04:14 AM,08/05/2014 11:05:41 AM,08/05/2014 11:06:40 AM,08/05/2014 11:07:14 AM,08/05/2014 11:17:47 AM,08/05/2014 11:33:42 AM,08/05/2014 11:40:27 AM,Code 2 Transport,08/05/2014 12:33:45 PM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",142171122-AM14 -160941645,KM12,16037249,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:08:12 PM,04/03/2016 12:08:36 PM,04/03/2016 12:08:53 PM,04/03/2016 12:09:34 PM,04/03/2016 12:14:29 PM,04/03/2016 12:35:48 PM,04/03/2016 12:42:45 PM,Code 2 Transport,04/03/2016 01:20:32 PM,400 Block of POWELL ST,San Francisco,94108,B01,1,1362,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",160941645-KM12 -160943730,52,16037461,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:19:03 PM,04/03/2016 11:19:03 PM,04/03/2016 11:19:36 PM,04/03/2016 11:21:18 PM,04/03/2016 11:36:41 PM,04/04/2016 12:03:25 AM,04/04/2016 12:13:53 AM,Code 2 Transport,04/04/2016 12:58:31 AM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7187894867461, -122.467075645919)",160943730-52 -160950157,KM07,16037484,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:54:18 AM,04/04/2016 01:54:18 AM,04/04/2016 01:54:43 AM,04/04/2016 01:55:29 AM,04/04/2016 01:56:31 AM,04/04/2016 02:03:26 AM,04/04/2016 02:09:00 AM,Code 3 Transport,04/04/2016 02:47:33 AM,LEAVENWORTH ST/EDDY ST,San Francisco,94102,B02,3,1545,A,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",160950157-KM07 -160951639,50,16037612,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:14:04 PM,04/04/2016 12:16:05 PM,04/04/2016 12:16:53 PM,04/04/2016 12:17:01 PM,04/04/2016 12:28:26 PM,04/04/2016 12:58:49 PM,04/04/2016 01:15:36 PM,Code 2 Transport,04/04/2016 02:05:55 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160951639-50 -142651174,E10,14092645,Medical Incident,09/22/2014,09/22/2014,09/22/2014 10:23:47 AM,09/22/2014 10:25:23 AM,09/22/2014 10:26:53 AM,09/22/2014 10:27:29 AM,09/22/2014 10:29:12 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Against Medical Advice,09/22/2014 10:50:44 AM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7842371111665, -122.440760813886)",142651174-E10 -160953232,82,16037752,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:39:12 PM,04/04/2016 06:39:12 PM,04/04/2016 06:39:44 PM,04/04/2016 06:40:10 PM,04/04/2016 06:50:49 PM,04/04/2016 06:57:20 PM,04/04/2016 07:14:46 PM,Code 2 Transport,04/04/2016 07:49:47 PM,1300 Block of ALEMANY BLVD,San Francisco,94112,B09,32,8263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7294726964986, -122.433599162117)",160953232-82 -153141959,KM01,15120674,Medical Incident,11/10/2015,11/10/2015,11/10/2015 01:28:49 PM,11/10/2015 01:30:15 PM,11/10/2015 01:31:04 PM,11/10/2015 01:31:40 PM,11/10/2015 01:39:57 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Patient Declined Transport,11/10/2015 02:15:49 PM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",153141959-KM01 -150220287,E31,15008450,Medical Incident,01/22/2015,01/21/2015,01/22/2015 03:29:29 AM,01/22/2015 03:30:13 AM,01/22/2015 03:30:46 AM,01/22/2015 03:32:22 AM,01/22/2015 03:34:25 AM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Code 2 Transport,01/22/2015 03:47:50 AM,500 Block of 8TH AVE,San Francisco,94118,B07,31,7131,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.778068339982, -122.466151798637)",150220287-E31 -150213304,B02,15008346,Alarms,01/21/2015,01/21/2015,01/21/2015 07:38:58 PM,01/21/2015 07:39:50 PM,01/21/2015 07:40:19 PM,01/21/2015 07:41:23 PM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Fire,01/21/2015 07:45:56 PM,100 Block of HENRY ST,San Francisco,94114,B05,6,5212,3,3,3,true,Alarm,1,CHIEF,4,5,8,Castro/Upper Market,"(37.7665401994282, -122.434434754895)",150213304-B02 -161003699,77,16039997,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:36:46 PM,04/09/2016 11:39:53 PM,04/09/2016 11:40:11 PM,04/09/2016 11:40:25 PM,04/09/2016 11:48:04 PM,04/09/2016 11:54:24 PM,04/10/2016 12:06:13 AM,Code 2 Transport,04/10/2016 12:39:08 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",161003699-77 -151472524,KM02,15056023,Medical Incident,05/27/2015,05/27/2015,05/27/2015 03:53:45 PM,05/27/2015 03:57:06 PM,05/27/2015 03:57:30 PM,05/27/2015 03:58:07 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Cancelled,05/27/2015 04:10:20 PM,1000 Block of WISCONSIN ST,San Francisco,94107,B10,37,257,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",151472524-KM02 -150081404,E39,15003092,Medical Incident,01/08/2015,01/08/2015,01/08/2015 11:15:02 AM,01/08/2015 11:16:38 AM,01/08/2015 11:18:40 AM,01/08/2015 11:19:09 AM,01/08/2015 11:23:02 AM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 11:40:13 AM,300 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8561,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7373722059796, -122.469939861606)",150081404-E39 -150163495,E43,15006472,Medical Incident,01/16/2015,01/16/2015,01/16/2015 09:25:53 PM,01/16/2015 09:27:20 PM,01/16/2015 09:27:35 PM,01/16/2015 09:29:09 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Code 2 Transport,01/16/2015 09:41:16 PM,900 Block of EDINBURGH ST,San Francisco,94112,B09,43,6174,E,E,3,true,Potentially Life-Threatening,1,ENGINE,5,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",150163495-E43 -160970197,AM22,16038257,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:00:43 AM,04/06/2016 02:03:22 AM,04/06/2016 02:03:59 AM,04/06/2016 02:04:32 AM,04/06/2016 02:11:16 AM,04/06/2016 02:20:00 AM,04/06/2016 02:31:22 AM,Code 2 Transport,04/06/2016 03:01:58 AM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",160970197-AM22 -150301034,E20,15011498,Medical Incident,01/30/2015,01/30/2015,01/30/2015 09:11:52 AM,01/30/2015 09:12:21 AM,01/30/2015 09:15:47 AM,01/30/2015 09:17:41 AM,01/30/2015 09:20:06 AM,01/30/2015 09:36:51 AM,04/25/2016 01:12:33 PM,Code 3 Transport,01/30/2015 09:44:50 AM,0 Block of TARAVAL ST,San Francisco,94116,B08,39,8615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7437586250549, -122.464218878823)",150301034-E20 -150543042,E29,15020874,Traffic Collision,02/23/2015,02/23/2015,02/23/2015 06:07:31 PM,02/23/2015 06:08:19 PM,02/23/2015 06:09:36 PM,02/23/2015 06:10:49 PM,02/23/2015 06:16:36 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Code 2 Transport,02/23/2015 06:29:22 PM,200 Block of 25TH AVE,San Francisco,94121,B03,29,2436,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7848173202648, -122.48501034869)",150543042-E29 -160972562,AM06,16038480,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:02:07 PM,04/06/2016 03:02:18 PM,04/06/2016 03:03:35 PM,04/06/2016 03:05:20 PM,04/06/2016 03:12:22 PM,04/06/2016 03:40:43 PM,04/06/2016 03:59:25 PM,Code 2 Transport,04/06/2016 04:38:07 PM,300 Block of STONECREST DR,San Francisco,94132,B08,19,8725,3,3,3,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7257458500807, -122.474261031114)",160972562-AM06 -150983039,RC2,15037189,Medical Incident,04/08/2015,04/08/2015,04/08/2015 06:36:20 PM,04/08/2015 06:36:38 PM,04/08/2015 06:37:51 PM,04/08/2015 06:37:51 PM,04/08/2015 06:37:51 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Code 2 Transport,04/08/2015 06:54:59 PM,400 Block of 18TH AVE,San Francisco,94121,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",150983039-RC2 -143444079,T03,14122526,Alarms,12/10/2014,12/10/2014,12/10/2014 11:11:31 PM,12/10/2014 11:13:02 PM,12/10/2014 11:13:28 PM,12/10/2014 11:15:01 PM,12/10/2014 11:17:15 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/10/2014 11:21:47 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",143444079-T03 -153322570,52,15127764,Medical Incident,11/28/2015,11/28/2015,11/28/2015 05:19:13 PM,11/28/2015 05:20:17 PM,11/28/2015 05:20:45 PM,11/28/2015 05:20:52 PM,11/28/2015 05:23:57 PM,11/28/2015 05:43:01 PM,11/28/2015 05:59:54 PM,Code 2 Transport,11/28/2015 06:36:09 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7791068008612, -122.431789184532)",153322570-52 -151011087,82,15038173,Medical Incident,04/11/2015,04/11/2015,04/11/2015 10:14:53 AM,04/11/2015 10:16:15 AM,04/11/2015 10:16:29 AM,04/11/2015 10:19:37 AM,04/11/2015 10:31:55 AM,04/11/2015 10:59:32 AM,04/11/2015 11:32:30 AM,Code 2 Transport,04/11/2015 12:08:24 PM,1200 Block of RIDGE CT,San Francisco,94134,B09,43,6238,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Excelsior,"(37.7093846600237, -122.425625999419)",151011087-82 -143061406,KM04,14108272,Traffic Collision,11/02/2014,11/02/2014,11/02/2014 11:04:20 AM,11/02/2014 11:05:23 AM,11/02/2014 11:06:45 AM,11/02/2014 11:08:05 AM,11/02/2014 11:11:03 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Against Medical Advice,11/02/2014 11:48:31 AM,GUERRERO ST/20TH ST,San Francisco,94110,B06,7,5445,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Mission,"(37.7583645504187, -122.423488532463)",143061406-KM04 -160960133,65,16037854,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:13:53 AM,04/05/2016 01:15:24 AM,04/05/2016 01:16:09 AM,04/05/2016 01:16:17 AM,04/05/2016 01:34:12 AM,04/05/2016 01:54:32 AM,04/05/2016 02:33:14 AM,Code 2 Transport,04/05/2016 02:33:30 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160960133-65 -150353009,T06,15013548,Alarms,02/04/2015,02/04/2015,02/04/2015 04:47:06 PM,02/04/2015 04:48:22 PM,02/04/2015 04:48:39 PM,02/04/2015 04:50:42 PM,02/04/2015 04:53:25 PM,04/25/2016 01:12:27 PM,04/25/2016 01:12:27 PM,Fire,02/04/2015 04:55:16 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7658666581108, -122.419678114931)",150353009-T06 -142643076,74,14092490,Medical Incident,09/21/2014,09/21/2014,09/21/2014 08:34:46 PM,09/21/2014 08:34:46 PM,09/21/2014 08:35:48 PM,09/21/2014 08:36:03 PM,09/21/2014 08:57:21 PM,09/21/2014 09:07:55 PM,09/21/2014 09:22:10 PM,Code 2 Transport,09/21/2014 10:00:31 PM,200 Block of SERRANO DR,San Francisco,94132,B08,19,8682,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7200756028177, -122.478531532675)",142643076-74 -160970433,60,16038279,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:43:42 AM,04/06/2016 05:43:42 AM,04/06/2016 05:44:28 AM,04/06/2016 05:44:50 AM,04/06/2016 05:56:18 AM,04/06/2016 06:09:45 AM,04/06/2016 06:23:56 AM,Code 2 Transport,04/06/2016 06:29:19 AM,100 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7934880846575, -122.398205964751)",160970433-60 -142102811,E01,14072894,Medical Incident,07/29/2014,07/29/2014,07/29/2014 06:37:56 PM,07/29/2014 06:41:00 PM,07/29/2014 06:42:59 PM,07/29/2014 06:43:11 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Patient Declined Transport,07/29/2014 06:53:35 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",142102811-E01 -142460382,T08,14085565,Alarms,09/03/2014,09/02/2014,09/03/2014 04:03:19 AM,09/03/2014 04:04:35 AM,09/03/2014 04:04:56 AM,09/03/2014 04:07:14 AM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,Fire,09/03/2014 04:17:33 AM,1800 Block of 4TH ST,San Francisco,94158,B03,8,2374,3,3,3,false,Alarm,1,TRUCK,3,3,6,Potrero Hill,"(37.7654965381521, -122.390602942705)",142460382-T08 -160942176,71,16037297,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:45:16 PM,04/03/2016 02:46:35 PM,04/03/2016 02:46:48 PM,04/03/2016 02:46:56 PM,04/03/2016 02:51:59 PM,04/03/2016 03:00:51 PM,04/03/2016 03:24:47 PM,Code 2 Transport,04/03/2016 04:06:08 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160942176-71 -141701503,KM10,14058674,Medical Incident,06/19/2014,06/19/2014,06/19/2014 12:22:35 PM,06/19/2014 12:24:36 PM,06/19/2014 12:25:25 PM,06/19/2014 12:26:01 PM,06/19/2014 12:46:23 PM,06/19/2014 12:56:35 PM,06/19/2014 01:36:38 PM,Code 2 Transport,06/19/2014 02:02:58 PM,2100 Block of 41ST AVE,San Francisco,94116,B08,18,7635,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7466748453073, -122.49952072067)",141701503-KM10 -161003341,AM18,16039960,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:03:43 PM,04/09/2016 10:06:48 PM,04/09/2016 10:09:50 PM,04/09/2016 10:10:27 PM,04/09/2016 10:20:34 PM,04/09/2016 10:28:54 PM,04/09/2016 10:59:01 PM,Code 2 Transport,04/09/2016 11:30:35 PM,600 Block of BLK WASHINGTON ST,San Francisco,94111,B01,13,1245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7956190455799, -122.403039422993)",161003341-AM18 -160974113,60,16038662,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:44:19 PM,04/06/2016 08:44:19 PM,04/06/2016 08:46:04 PM,04/06/2016 08:49:13 PM,04/06/2016 08:52:37 PM,04/06/2016 09:53:58 PM,04/06/2016 10:08:47 PM,Code 2 Transport,04/06/2016 10:30:27 PM,0 Block of BLK EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7842476296751, -122.408294122336)",160974113-60 -160974678,76,16038723,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:43:09 PM,04/06/2016 11:43:57 PM,04/06/2016 11:44:18 PM,04/06/2016 11:44:26 PM,04/06/2016 11:48:27 PM,04/07/2016 12:00:24 AM,04/07/2016 12:19:46 AM,Code 2 Transport,04/07/2016 12:36:52 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160974678-76 -150232148,E07,15008958,Structure Fire,01/23/2015,01/23/2015,01/23/2015 03:03:58 PM,01/23/2015 03:06:02 PM,01/23/2015 03:08:14 PM,01/23/2015 03:08:14 PM,01/23/2015 03:10:51 PM,04/25/2016 01:12:40 PM,04/25/2016 01:12:40 PM,Fire,01/23/2015 03:18:11 PM,3200 Block of 26TH ST,San Francisco,94110,B06,7,5614,3,3,3,true,Alarm,1,ENGINE,6,6,9,Mission,"(37.7491990535295, -122.414593171104)",150232148-E07 -161003591,71,16039986,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:08:57 PM,04/09/2016 11:09:38 PM,04/09/2016 11:10:34 PM,04/09/2016 11:10:40 PM,04/09/2016 11:16:14 PM,04/09/2016 11:34:42 PM,04/09/2016 11:44:58 PM,Code 2 Transport,04/10/2016 12:25:44 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",161003591-71 -160990219,73,16039171,Medical Incident,04/08/2016,04/07/2016,04/08/2016 02:10:05 AM,04/08/2016 02:10:50 AM,04/08/2016 02:11:22 AM,04/08/2016 02:12:01 AM,04/08/2016 02:25:56 AM,04/08/2016 02:41:35 AM,04/08/2016 02:48:50 AM,Code 2 Transport,04/08/2016 03:38:48 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160990219-73 -160982552,59,16038994,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:42:08 PM,04/07/2016 03:43:23 PM,04/07/2016 03:45:11 PM,04/07/2016 03:45:25 PM,04/07/2016 03:57:36 PM,04/07/2016 04:33:00 PM,04/07/2016 04:57:28 PM,Code 2 Transport,04/07/2016 05:45:45 PM,100 Block of TURQUOISE WAY,San Francisco,94131,B06,26,8164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7436378283947, -122.444837341311)",160982552-59 -151331367,E08,15050395,Medical Incident,05/13/2015,05/13/2015,05/13/2015 10:38:36 AM,05/13/2015 10:39:00 AM,05/13/2015 10:39:13 AM,05/13/2015 10:40:55 AM,05/13/2015 10:42:41 AM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Code 2 Transport,05/13/2015 10:51:51 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",151331367-E08 -142980622,55,14105073,Medical Incident,10/25/2014,10/24/2014,10/25/2014 04:32:32 AM,10/25/2014 04:32:32 AM,10/25/2014 04:32:57 AM,10/25/2014 04:35:11 AM,10/25/2014 04:42:22 AM,10/25/2014 04:55:48 AM,10/25/2014 05:04:53 AM,Code 2 Transport,10/25/2014 06:10:48 AM,LARKIN ST/FULTON ST,San Francisco,94102,B02,36,1645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",142980622-55 -160981577,KM09,16038889,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:32:47 AM,04/07/2016 11:34:05 AM,04/07/2016 11:36:23 AM,04/07/2016 11:38:01 AM,04/07/2016 11:47:34 AM,04/07/2016 12:20:55 PM,04/07/2016 12:32:53 PM,Code 2 Transport,04/07/2016 01:04:14 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160981577-KM09 -160962254,KM02,16038053,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:38:44 PM,04/05/2016 02:40:24 PM,04/05/2016 02:42:12 PM,04/05/2016 02:42:52 PM,04/05/2016 03:14:47 PM,04/05/2016 03:22:56 PM,04/05/2016 03:43:25 PM,Code 2 Transport,04/05/2016 04:11:31 PM,2300 Block of 3RD ST,San Francisco,94107,B03,25,2533,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7592216556229, -122.388304288646)",160962254-KM02 -153332904,T07,15128199,Structure Fire,11/29/2015,11/29/2015,11/29/2015 09:14:35 PM,11/29/2015 09:14:35 PM,11/29/2015 09:14:49 PM,11/29/2015 09:15:48 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Fire,11/29/2015 09:19:09 PM,TREAT AV/ALAMEDA ST,San Francisco,94103,B02,29,5221,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7680736053747, -122.412424183842)",153332904-T07 -150152106,E19,15005982,Medical Incident,01/15/2015,01/15/2015,01/15/2015 02:28:31 PM,01/15/2015 02:29:06 PM,01/15/2015 02:29:41 PM,01/15/2015 02:30:37 PM,01/15/2015 02:34:40 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Code 2 Transport,01/15/2015 02:47:52 PM,100 Block of BEVERLY ST,San Francisco,94132,B09,19,8447,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7187586719508, -122.471573001806)",150152106-E19 -153032040,E13,15116216,Alarms,10/30/2015,10/30/2015,10/30/2015 01:43:31 PM,10/30/2015 01:45:07 PM,10/30/2015 01:45:17 PM,10/30/2015 01:46:06 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Fire,10/30/2015 01:57:37 PM,1200 Block of BATTERY ST,San Francisco,94111,B01,13,1153,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.8027664220787, -122.401955517289)",153032040-E13 -152402552,E10,15091482,Medical Incident,08/28/2015,08/28/2015,08/28/2015 03:04:47 PM,08/28/2015 03:05:55 PM,08/28/2015 03:06:13 PM,08/28/2015 03:06:25 PM,08/28/2015 03:10:13 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Code 2 Transport,08/28/2015 03:16:37 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",152402552-E10 -160922084,61,16036474,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:43:26 PM,04/01/2016 02:46:04 PM,04/01/2016 02:47:30 PM,04/01/2016 02:47:38 PM,04/01/2016 02:52:15 PM,04/01/2016 03:00:34 PM,04/01/2016 03:28:24 PM,Code 2 Transport,04/01/2016 04:16:28 PM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",160922084-61 -151550955,57,15059009,Water Rescue,06/04/2015,06/04/2015,06/04/2015 08:53:17 AM,06/04/2015 08:55:43 AM,06/04/2015 09:02:50 AM,06/04/2015 09:02:50 AM,06/04/2015 09:02:50 AM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,Code 2 Transport,06/04/2015 09:14:00 AM,200 Block of THE EMBARCADERO,San Francisco,94111,B01,13,901,3,3,3,true,Fire,1,MEDIC,4,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",151550955-57 -141170300,E03,14039609,Medical Incident,04/27/2014,04/27/2014,04/27/2014 07:56:14 PM,04/27/2014 07:59:52 PM,04/27/2014 08:01:11 PM,04/27/2014 08:01:11 PM,04/27/2014 08:02:26 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Code 2 Transport,04/27/2014 08:09:54 PM,800 Block of SUTTER ST,SAN FRANCISCO,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",141170300-E03 -141710489,73,14058952,Medical Incident,06/20/2014,06/19/2014,06/20/2014 06:30:31 AM,06/20/2014 06:31:30 AM,06/20/2014 06:31:46 AM,06/20/2014 06:32:01 AM,06/20/2014 06:42:19 AM,06/20/2014 06:57:39 AM,06/20/2014 07:18:08 AM,Code 2 Transport,06/20/2014 07:46:59 AM,900 Block of SHOTWELL ST,San Francisco,94110,B06,7,544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7532325565612, -122.415315206173)",141710489-73 -142091413,KM06,14072415,Medical Incident,07/28/2014,07/28/2014,07/28/2014 12:22:58 PM,07/28/2014 12:24:50 PM,07/28/2014 12:26:03 PM,07/28/2014 12:26:52 PM,07/28/2014 12:30:46 PM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Patient Declined Transport,07/28/2014 01:19:09 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",142091413-KM06 -160980471,57,16038778,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:39:13 AM,04/07/2016 04:41:24 AM,04/07/2016 04:41:31 AM,04/07/2016 04:41:46 AM,04/07/2016 04:52:12 AM,04/07/2016 05:06:44 AM,04/07/2016 05:32:48 AM,Code 2 Transport,04/07/2016 05:52:37 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",160980471-57 -141861363,KM04,14064388,Medical Incident,07/05/2014,07/05/2014,07/05/2014 11:03:26 AM,07/05/2014 11:03:26 AM,07/05/2014 11:04:05 AM,07/05/2014 11:04:37 AM,07/05/2014 11:09:48 AM,07/05/2014 11:17:33 AM,07/05/2014 11:28:58 AM,Code 2 Transport,07/05/2014 12:13:39 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",141861363-KM04 -151791857,T01,15068229,Structure Fire,06/28/2015,06/28/2015,06/28/2015 01:21:29 PM,06/28/2015 01:21:29 PM,06/28/2015 01:21:53 PM,06/28/2015 01:23:20 PM,06/28/2015 01:25:16 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 01:25:32 PM,3RD ST/HARRISON ST,San Francisco,94107,B03,8,2175,3,3,3,true,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7825535920508, -122.397385539895)",151791857-T01 -150430080,E31,15016569,Medical Incident,02/12/2015,02/11/2015,02/12/2015 12:31:12 AM,02/12/2015 12:32:02 AM,02/12/2015 12:32:24 AM,02/12/2015 12:34:21 AM,02/12/2015 12:36:39 AM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Code 2 Transport,02/12/2015 12:58:08 AM,600 Block of 19TH AVE,San Francisco,94121,B07,31,7166,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7756595098309, -122.478035799893)",150430080-E31 -151163619,E03,15044028,Medical Incident,04/26/2015,04/26/2015,04/26/2015 11:18:50 PM,04/26/2015 11:18:50 PM,04/26/2015 11:20:00 PM,04/26/2015 11:20:14 PM,04/26/2015 11:22:43 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Code 2 Transport,04/26/2015 11:28:56 PM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",151163619-E03 -141382057,E38,14047322,Traffic Collision,05/18/2014,05/18/2014,05/18/2014 02:29:19 PM,05/18/2014 02:30:23 PM,05/18/2014 02:31:12 PM,05/18/2014 02:31:32 PM,05/18/2014 02:33:35 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Code 2 Transport,05/18/2014 02:51:06 PM,MCALLISTER ST/FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",141382057-E38 -152961087,E36,15113662,Medical Incident,10/23/2015,10/23/2015,10/23/2015 09:44:29 AM,10/23/2015 09:44:44 AM,10/23/2015 09:45:02 AM,10/23/2015 09:47:38 AM,10/23/2015 09:49:57 AM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,Code 2 Transport,10/23/2015 09:53:12 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",152961087-E36 -160982960,AM08,16039038,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 05:35:19 PM,04/07/2016 05:35:19 PM,04/07/2016 05:36:19 PM,04/07/2016 05:37:01 PM,04/07/2016 06:02:05 PM,04/07/2016 06:02:07 PM,04/07/2016 06:22:56 PM,Code 2 Transport,04/07/2016 07:16:54 PM,0 Block of TAYLOR ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",160982960-AM08 -151400106,63,15053004,Medical Incident,05/20/2015,05/19/2015,05/20/2015 01:01:34 AM,05/20/2015 01:02:26 AM,05/20/2015 01:03:55 AM,05/20/2015 01:05:00 AM,05/20/2015 01:12:13 AM,05/20/2015 01:30:21 AM,05/20/2015 01:45:43 AM,Code 2 Transport,05/20/2015 02:39:49 AM,18TH AV/IRVING ST,San Francisco,94122,B08,22,7367,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Inner Sunset,"(37.7636087618473, -122.476054377932)",151400106-63 -151970206,82,15074965,Medical Incident,07/16/2015,07/15/2015,07/16/2015 02:08:31 AM,07/16/2015 02:09:04 AM,07/16/2015 02:11:31 AM,07/16/2015 02:11:40 AM,07/16/2015 02:17:36 AM,07/16/2015 02:27:21 AM,07/16/2015 02:35:03 AM,Code 2 Transport,07/16/2015 03:22:52 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",151970206-82 -151602717,65,15061226,Medical Incident,06/09/2015,06/09/2015,06/09/2015 04:48:09 PM,06/09/2015 04:48:09 PM,06/09/2015 04:48:35 PM,06/09/2015 04:48:42 PM,06/09/2015 05:03:46 PM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Unable to Locate,06/09/2015 05:08:41 PM,0 Block of HARVARD ST,San Francisco,94134,B09,42,6144,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Excelsior,"(37.7286059912574, -122.421411879716)",151602717-65 -151433031,D3,15054501,Structure Fire,05/23/2015,05/23/2015,05/23/2015 07:21:18 PM,05/23/2015 07:22:30 PM,05/23/2015 07:22:57 PM,05/23/2015 07:23:41 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Fire,05/23/2015 07:26:54 PM,600 Block of SILLIMAN ST,San Francisco,94134,B09,42,6355,3,3,3,false,Alarm,1,CHIEF,8,9,9,Portola,"(37.7295067704941, -122.411485686343)",151433031-D3 -142161216,86,14074856,Medical Incident,08/04/2014,08/04/2014,08/04/2014 10:52:29 AM,08/04/2014 10:53:50 AM,08/04/2014 10:56:46 AM,08/04/2014 10:56:46 AM,08/04/2014 10:59:26 AM,08/04/2014 11:10:56 AM,08/04/2014 11:37:45 AM,Code 2 Transport,08/04/2014 12:17:31 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",142161216-86 -150981589,E13,15037065,Alarms,04/08/2015,04/08/2015,04/08/2015 12:28:33 PM,04/08/2015 12:29:23 PM,04/08/2015 12:29:34 PM,04/08/2015 12:30:15 PM,04/08/2015 12:32:16 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Fire,04/08/2015 12:39:03 PM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.795777854883, -122.404981817889)",150981589-E13 -152942925,E39,15113082,Medical Incident,10/21/2015,10/21/2015,10/21/2015 05:34:51 PM,10/21/2015 05:37:18 PM,10/21/2015 05:37:41 PM,10/21/2015 05:39:13 PM,10/21/2015 05:39:13 PM,04/25/2016 01:07:38 PM,04/25/2016 01:07:38 PM,Code 2 Transport,10/21/2015 05:54:31 PM,1200 Block of ULLOA ST,San Francisco,94116,B08,39,8614,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7415034332952, -122.469571324271)",152942925-E39 -160931574,KM09,16036839,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:18:59 PM,04/02/2016 12:19:39 PM,04/02/2016 12:20:02 PM,04/02/2016 12:20:35 PM,04/02/2016 12:26:41 PM,04/02/2016 12:52:27 PM,04/02/2016 01:24:47 PM,Code 2 Transport,04/02/2016 01:34:08 PM,100 Block of PINE ST,San Francisco,94111,B01,13,1136,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7922788577923, -122.399164588196)",160931574-KM09 -142401250,E07,14083435,Structure Fire,08/28/2014,08/28/2014,08/28/2014 11:23:36 AM,08/28/2014 11:24:05 AM,08/28/2014 11:24:20 AM,08/28/2014 11:25:17 AM,08/28/2014 11:27:44 AM,04/25/2016 01:15:25 PM,04/25/2016 01:15:25 PM,Fire,08/28/2014 12:13:16 PM,1500 Block of MISSION ST,San Francisco,94103,B02,36,5116,3,3,3,true,Alarm,1,ENGINE,3,2,6,Mission,"(37.7737629752818, -122.417960394107)",142401250-E07 -160932632,63,16036959,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:10:23 PM,04/02/2016 05:15:25 PM,04/02/2016 05:17:37 PM,04/02/2016 05:22:41 PM,04/02/2016 05:30:23 PM,04/02/2016 05:43:01 PM,04/02/2016 05:59:01 PM,Code 2 Transport,04/02/2016 06:26:40 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160932632-63 -150322457,E12,15012423,Medical Incident,02/01/2015,02/01/2015,02/01/2015 03:59:16 PM,02/01/2015 04:03:37 PM,02/01/2015 04:03:58 PM,02/01/2015 04:04:44 PM,02/01/2015 04:07:37 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,No Merit,02/01/2015 04:10:01 PM,"CONSERVATORY DRIVE E/JOHN F KENNEDY DR,",,94122,B07,31,7111,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Golden Gate Park,"(37.7717764874446, -122.462047129132)",150322457-E12 -160993337,KM01,16039448,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:49:50 PM,04/08/2016 07:49:50 PM,04/08/2016 07:50:02 PM,04/08/2016 07:50:37 PM,04/08/2016 07:57:50 PM,04/08/2016 08:09:37 PM,04/08/2016 08:22:20 PM,Code 2 Transport,04/08/2016 08:38:29 PM,CHURCH ST/MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",160993337-KM01 -150680917,E20,15025905,Structure Fire,03/09/2015,03/09/2015,03/09/2015 09:02:54 AM,03/09/2015 09:03:47 AM,03/09/2015 09:03:57 AM,03/09/2015 09:09:01 AM,03/09/2015 09:09:01 AM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Fire,03/09/2015 09:26:47 AM,500 Block of PORTOLA DR,San Francisco,94131,B06,20,5353,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7455667070932, -122.451155727844)",150680917-E20 -151483126,75,15056453,Medical Incident,05/28/2015,05/28/2015,05/28/2015 07:24:21 PM,05/28/2015 07:27:22 PM,05/28/2015 07:28:19 PM,05/28/2015 07:28:42 PM,05/28/2015 07:34:43 PM,05/28/2015 07:39:21 PM,05/28/2015 07:46:49 PM,Code 2 Transport,05/28/2015 08:10:29 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",151483126-75 -160923414,AM16,16036601,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:44:49 PM,04/01/2016 08:45:21 PM,04/01/2016 08:45:54 PM,04/01/2016 08:46:21 PM,04/01/2016 08:48:53 PM,04/01/2016 09:06:09 PM,04/01/2016 09:13:45 PM,Code 2 Transport,04/01/2016 09:47:25 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160923414-AM16 -151370513,E03,15051908,Medical Incident,05/17/2015,05/16/2015,05/17/2015 04:21:23 AM,05/17/2015 04:22:31 AM,05/17/2015 04:23:15 AM,05/17/2015 04:25:02 AM,05/17/2015 04:28:10 AM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Code 2 Transport,05/17/2015 04:32:44 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",151370513-E03 -142810599,B02,14098750,Medical Incident,10/08/2014,10/07/2014,10/08/2014 07:26:01 AM,10/08/2014 07:26:01 AM,10/08/2014 07:26:44 AM,10/08/2014 07:28:44 AM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,No Merit,10/08/2014 07:38:31 AM,48TH AV/POINT LOBOS AV,San Francisco,94121,B07,34,7313,3,3,3,false,Non Life-threatening,1,CHIEF,5,7,1,Outer Richmond,"(37.779851069188, -122.509432938414)",142810599-B02 -151842600,E06,15070296,Medical Incident,07/03/2015,07/03/2015,07/03/2015 04:51:47 PM,07/03/2015 04:51:47 PM,07/03/2015 04:53:28 PM,07/03/2015 04:53:28 PM,07/03/2015 04:54:19 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Code 2 Transport,07/03/2015 05:06:49 PM,MARKET ST/NOE ST,San Francisco,94114,B05,6,5232,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",151842600-E06 -141974127,B06,14068404,Alarms,07/16/2014,07/16/2014,07/16/2014 11:54:16 PM,07/16/2014 11:55:59 PM,07/16/2014 11:57:35 PM,07/16/2014 11:59:57 PM,07/17/2014 12:03:20 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/17/2014 12:06:49 AM,400 Block of FAIR OAKS ST,San Francisco,94110,B06,11,5536,3,3,3,false,Alarm,1,CHIEF,3,6,8,Mission,"(37.7495118727923, -122.423684560238)",141974127-B06 -152152587,RC3,15081908,Medical Incident,08/03/2015,08/03/2015,08/03/2015 03:47:55 PM,08/03/2015 03:49:33 PM,08/03/2015 03:50:44 PM,08/03/2015 03:50:44 PM,08/03/2015 03:50:44 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Code 2 Transport,08/03/2015 04:03:00 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",152152587-RC3 -160923380,58,16036597,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:25:16 PM,04/01/2016 08:25:50 PM,04/01/2016 08:26:20 PM,04/01/2016 08:26:40 PM,04/01/2016 08:32:15 PM,04/01/2016 08:44:31 PM,04/01/2016 09:14:54 PM,Code 2 Transport,04/01/2016 09:33:42 PM,2400 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7318198889718, -122.405412091734)",160923380-58 -151723078,E03,15065816,Medical Incident,06/21/2015,06/21/2015,06/21/2015 08:35:02 PM,06/21/2015 08:35:02 PM,06/21/2015 08:35:50 PM,06/21/2015 08:37:01 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Code 2 Transport,06/21/2015 08:38:58 PM,100 Block of OFARRELL ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7864582323625, -122.407206735701)",151723078-E03 -151572384,T18,15060009,Medical Incident,06/06/2015,06/06/2015,06/06/2015 04:26:35 PM,06/06/2015 04:28:26 PM,06/06/2015 04:29:04 PM,06/06/2015 04:31:19 PM,06/06/2015 04:34:14 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Code 2 Transport,06/06/2015 04:46:57 PM,2400 Block of 35TH AVE,San Francisco,94116,B08,18,7554,2,2,2,false,Potentially Life-Threatening,1,TRUCK,2,8,4,Sunset/Parkside,"(37.741364566284, -122.492702448747)",151572384-T18 -151930728,B09,15073560,Structure Fire,07/12/2015,07/11/2015,07/12/2015 07:13:37 AM,07/12/2015 07:14:01 AM,07/12/2015 07:14:22 AM,07/12/2015 07:15:43 AM,07/12/2015 07:22:02 AM,04/25/2016 01:09:31 PM,04/25/2016 01:09:31 PM,Fire,07/12/2015 09:36:12 AM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,false,Fire,1,CHIEF,5,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",151930728-B09 -143312284,T13,14117482,Alarms,11/27/2014,11/27/2014,11/27/2014 07:33:00 PM,11/27/2014 07:34:05 PM,11/27/2014 07:34:10 PM,11/27/2014 07:35:14 PM,11/27/2014 07:39:07 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Fire,11/27/2014 07:43:12 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7904631779771, -122.405941469147)",143312284-T13 -141883279,E34,14065297,Medical Incident,07/07/2014,07/07/2014,07/07/2014 08:28:22 PM,07/07/2014 08:30:46 PM,07/07/2014 08:32:13 PM,07/07/2014 08:33:14 PM,07/07/2014 08:36:03 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/07/2014 08:58:51 PM,BALBOA ST/37TH AV,San Francisco,94121,B07,34,7254,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7757154136216, -122.497318725581)",141883279-E34 -160982936,73,16039035,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:26:17 PM,04/07/2016 05:29:10 PM,04/07/2016 05:29:29 PM,04/07/2016 05:29:40 PM,04/07/2016 05:41:34 PM,04/07/2016 05:55:22 PM,04/07/2016 06:18:37 PM,Code 2 Transport,04/07/2016 06:46:16 PM,300 Block of ELM ST,San Francisco,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7812362714808, -122.423016936452)",160982936-73 -152170836,T06,15082515,Alarms,08/05/2015,08/05/2015,08/05/2015 08:36:01 AM,08/05/2015 08:37:10 AM,08/05/2015 08:37:43 AM,08/05/2015 08:39:24 AM,08/05/2015 08:41:44 AM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/05/2015 08:48:05 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",152170836-T06 -153032133,E20,15116226,Transfer,10/30/2015,10/30/2015,10/30/2015 02:03:45 PM,10/30/2015 02:05:19 PM,10/30/2015 02:05:46 PM,10/30/2015 02:07:07 PM,10/30/2015 02:09:03 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Other,10/30/2015 03:02:45 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",153032133-E20 -150030560,E03,15000989,Medical Incident,01/03/2015,01/02/2015,01/03/2015 05:43:29 AM,01/03/2015 05:48:29 AM,01/03/2015 05:48:55 AM,01/03/2015 05:50:31 AM,01/03/2015 05:52:52 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Code 2 Transport,01/03/2015 06:08:09 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",150030560-E03 -153471485,62,15133674,Medical Incident,12/13/2015,12/13/2015,12/13/2015 11:51:06 AM,12/13/2015 11:51:56 AM,12/13/2015 11:52:07 AM,12/13/2015 11:54:19 AM,12/13/2015 12:02:32 PM,12/13/2015 12:22:23 PM,12/13/2015 12:32:57 PM,Code 2 Transport,12/13/2015 01:38:56 PM,DIVISADERO ST/OFARRELL ST,San Francisco,94115,B05,5,4153,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7824504809987, -122.439297623944)",153471485-62 -142791605,2R01,14098144,,10/06/2014,10/06/2014,10/06/2014 12:17:38 PM,10/06/2014 12:18:51 PM,10/06/2014 12:38:59 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 12:39:03 PM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6554,3,3,3,false,Alarm,1,ADMIN,0,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",142791605-2R01 -160933009,55,16036991,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:00:33 PM,04/02/2016 07:00:33 PM,04/02/2016 07:01:42 PM,04/02/2016 07:01:54 PM,04/02/2016 07:08:15 PM,04/02/2016 07:16:14 PM,04/02/2016 07:36:54 PM,Code 2 Transport,04/02/2016 07:47:11 PM,HOWARD ST/BEALE ST,San Francisco,94105,B03,35,2124,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7899262298106, -122.394276229254)",160933009-55 -151920856,E28,15073186,Structure Fire,07/11/2015,07/10/2015,07/11/2015 07:41:37 AM,07/11/2015 07:41:37 AM,07/11/2015 07:42:04 AM,07/11/2015 07:43:16 AM,07/11/2015 07:44:07 AM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,Fire,07/11/2015 07:44:42 AM,COLUMBUS AV/FILBERT ST,San Francisco,94133,B01,28,1351,3,3,3,false,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.8011251306762, -122.411376271747)",151920856-E28 -143492588,75,14124733,Structure Fire,12/15/2014,12/15/2014,12/15/2014 05:55:44 PM,12/15/2014 05:56:04 PM,12/15/2014 05:56:46 PM,12/15/2014 05:56:57 PM,12/15/2014 06:18:44 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 06:18:56 PM,2800 Block of HARRISON ST,San Francisco,94110,B06,7,5533,3,3,3,true,Fire,1,MEDIC,9,6,9,Mission,"(37.7518270551886, -122.411891999747)",143492588-75 -160940422,55,16037136,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:32:14 AM,04/03/2016 02:33:33 AM,04/03/2016 02:33:54 AM,04/03/2016 02:34:05 AM,04/03/2016 02:46:42 AM,04/03/2016 03:25:48 AM,04/03/2016 03:48:17 AM,Code 2 Transport,04/03/2016 04:30:23 AM,2300 Block of 28TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7435624337993, -122.485331778015)",160940422-55 -150951815,AM16,15036114,Medical Incident,04/05/2015,04/05/2015,04/05/2015 03:00:46 PM,04/05/2015 03:04:28 PM,04/05/2015 03:05:23 PM,04/05/2015 03:06:12 PM,04/05/2015 03:13:56 PM,04/05/2015 03:27:25 PM,04/05/2015 03:47:25 PM,Code 2 Transport,04/05/2015 04:27:27 PM,7TH ST/MINNA ST,San Francisco,94103,B02,1,2315,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7787853715958, -122.41040149505)",150951815-AM16 -160973567,78,16038604,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:27:27 PM,04/06/2016 06:28:06 PM,04/06/2016 06:30:26 PM,04/06/2016 06:34:30 PM,04/06/2016 06:38:35 PM,04/06/2016 06:51:55 PM,04/06/2016 06:56:37 PM,Code 2 Transport,04/06/2016 07:20:26 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160973567-78 -141090151,E44,14036738,Structure Fire,04/19/2014,04/19/2014,04/19/2014 11:09:30 AM,04/19/2014 11:10:19 AM,04/19/2014 11:16:08 AM,04/19/2014 11:16:08 AM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Fire,04/19/2014 11:16:45 AM,1600 Block of HUDSON AVE,SAN FRANCISCO,94124,B10,25,6467,3,3,3,true,Alarm,1,ENGINE,11,10,10,Bayview Hunters Point,"(37.740225628894, -122.388473672211)",141090151-E44 -153151662,RC2,15121036,Medical Incident,11/11/2015,11/11/2015,11/11/2015 12:39:06 PM,11/11/2015 12:43:33 PM,11/11/2015 12:54:36 PM,11/11/2015 12:55:24 PM,11/11/2015 12:57:51 PM,04/25/2016 01:07:16 PM,04/25/2016 01:07:16 PM,Code 3 Transport,11/11/2015 01:10:17 PM,3700 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7811145973229, -122.459428097601)",153151662-RC2 -142671940,E19,14093513,Structure Fire,09/24/2014,09/24/2014,09/24/2014 01:19:15 PM,09/24/2014 01:19:15 PM,09/24/2014 01:19:27 PM,09/24/2014 01:20:33 PM,09/24/2014 01:25:22 PM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/24/2014 01:34:48 PM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",142671940-E19 -151480175,B07,15056177,Structure Fire,05/28/2015,05/27/2015,05/28/2015 01:53:39 AM,05/28/2015 01:55:41 AM,05/28/2015 02:03:42 AM,05/28/2015 02:06:35 AM,05/28/2015 02:15:24 AM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Fire,05/28/2015 02:47:53 AM,BALBOA ST/48TH AV,San Francisco,94121,B07,34,7312,3,3,3,false,Alarm,1,CHIEF,8,7,1,Outer Richmond,"(37.7751768203632, -122.509091953419)",151480175-B07 -160940453,AM20,16037141,Traffic Collision,04/03/2016,04/02/2016,04/03/2016 02:47:40 AM,04/03/2016 02:49:10 AM,04/03/2016 02:50:32 AM,04/03/2016 02:51:37 AM,04/03/2016 02:54:55 AM,04/03/2016 03:08:37 AM,04/03/2016 03:20:22 AM,Code 3 Transport,04/03/2016 04:29:40 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94116,B08,39,8624,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",160940453-AM20 -152833409,71,15108781,Medical Incident,10/10/2015,10/10/2015,10/10/2015 06:49:47 PM,10/10/2015 06:51:05 PM,10/10/2015 06:52:13 PM,10/10/2015 06:52:20 PM,10/10/2015 06:57:53 PM,10/10/2015 08:23:38 PM,10/10/2015 07:18:23 PM,Code 2 Transport,10/10/2015 08:34:16 PM,0 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,3,3,3,true,Non Life-threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",152833409-71 -160972954,84,16038529,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:24:34 PM,04/06/2016 04:25:18 PM,04/06/2016 04:34:49 PM,04/06/2016 04:35:15 PM,04/06/2016 04:39:39 PM,04/06/2016 05:05:52 PM,04/06/2016 05:46:03 PM,Code 2 Transport,04/06/2016 06:35:49 PM,0 Block of DE LONG ST,San Francisco,94112,B09,33,8357,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7096061746136, -122.459869387331)",160972954-84 -150632079,T01,15024076,Structure Fire,03/04/2015,03/04/2015,03/04/2015 01:44:22 PM,03/04/2015 01:44:33 PM,03/04/2015 01:45:15 PM,03/04/2015 01:46:48 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Fire,03/04/2015 01:49:08 PM,3RD ST/MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",150632079-T01 -142963810,T02,14104593,Alarms,10/23/2014,10/23/2014,10/23/2014 10:21:58 PM,10/23/2014 10:23:27 PM,10/23/2014 10:25:14 PM,10/23/2014 10:27:18 PM,10/23/2014 10:30:21 PM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Fire,10/23/2014 10:36:08 PM,2800 Block of LEAVENWORTH ST,San Francisco,94109,B01,28,1524,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8073249129151, -122.419065516897)",142963810-T02 -143330185,E37,14117857,Medical Incident,11/29/2014,11/28/2014,11/29/2014 01:09:16 AM,11/29/2014 01:09:16 AM,11/29/2014 01:10:27 AM,11/29/2014 01:12:15 AM,11/29/2014 01:13:38 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Code 2 Transport,11/29/2014 01:20:32 AM,20TH ST/3RD ST,San Francisco,94107,B10,37,2665,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",143330185-E37 -151970475,E01,15075011,Medical Incident,07/16/2015,07/15/2015,07/16/2015 06:31:59 AM,07/16/2015 06:31:59 AM,07/16/2015 06:32:38 AM,07/16/2015 06:33:57 AM,07/16/2015 06:38:45 AM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Code 2 Transport,07/16/2015 06:52:24 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",151970475-E01 -143332603,E03,14118098,Medical Incident,11/29/2014,11/29/2014,11/29/2014 05:25:30 PM,11/29/2014 05:26:30 PM,11/29/2014 05:27:04 PM,11/29/2014 05:27:58 PM,11/29/2014 05:29:53 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,Code 2 Transport,11/29/2014 05:32:29 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",143332603-E03 -151971644,72,15075120,Medical Incident,07/16/2015,07/16/2015,07/16/2015 12:44:13 PM,07/16/2015 12:44:45 PM,07/16/2015 12:45:37 PM,07/16/2015 12:45:51 PM,07/16/2015 01:08:35 PM,07/16/2015 01:15:06 PM,07/16/2015 01:43:44 PM,Code 2 Transport,07/16/2015 02:14:15 PM,1500 Block of NORIEGA ST,San Francisco,94122,B08,40,7431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7541298921229, -122.480226734682)",151971644-72 -143301002,B07,14116945,Alarms,11/26/2014,11/26/2014,11/26/2014 09:37:01 AM,11/26/2014 09:39:44 AM,11/26/2014 09:40:05 AM,11/26/2014 09:43:25 AM,11/26/2014 09:45:00 AM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/26/2014 10:00:31 AM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",143301002-B07 -160974351,87,16038687,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:58:34 PM,04/06/2016 10:00:56 PM,04/06/2016 10:01:38 PM,04/06/2016 10:02:15 PM,04/06/2016 10:08:23 PM,04/06/2016 10:33:58 PM,04/06/2016 11:25:15 PM,Code 2 Transport,04/06/2016 11:39:13 PM,0 Block of PERSIA AVE,San Francisco,94112,B09,43,6121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7229939497296, -122.435557066402)",160974351-87 -160923343,70,16036594,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:12:56 PM,04/01/2016 08:14:07 PM,04/01/2016 08:14:20 PM,04/01/2016 08:14:28 PM,04/01/2016 08:20:21 PM,04/01/2016 08:27:02 PM,04/01/2016 08:40:55 PM,Code 2 Transport,04/01/2016 08:54:16 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160923343-70 -160962675,61,16038084,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:19:21 PM,04/05/2016 04:20:12 PM,04/05/2016 04:20:42 PM,04/05/2016 04:21:24 PM,04/05/2016 04:27:22 PM,04/05/2016 04:41:45 PM,04/05/2016 05:18:07 PM,Code 2 Transport,04/05/2016 05:21:12 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160962675-61 -160930750,AM02,16036745,Other,04/02/2016,04/01/2016,04/02/2016 07:54:13 AM,04/02/2016 07:54:13 AM,04/02/2016 07:55:51 AM,04/02/2016 07:56:35 AM,04/02/2016 07:58:08 AM,04/02/2016 08:06:48 AM,04/02/2016 08:30:43 AM,Code 2 Transport,04/02/2016 09:03:46 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,false,Alarm,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",160930750-AM02 -143251691,68,14115090,Medical Incident,11/21/2014,11/21/2014,11/21/2014 12:56:02 PM,11/21/2014 12:57:08 PM,11/21/2014 01:02:07 PM,11/21/2014 01:02:15 PM,11/21/2014 01:11:26 PM,04/25/2016 01:13:53 PM,04/25/2016 01:13:53 PM,No Merit,11/21/2014 01:16:15 PM,SPRUCE ST/CALIFORNIA ST,San Francisco,94118,B07,10,4432,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.7864177314315, -122.453406647155)",143251691-68 -160962972,71,16038115,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:21:51 PM,04/05/2016 05:25:21 PM,04/05/2016 05:26:08 PM,04/05/2016 05:26:21 PM,04/05/2016 05:42:55 PM,04/05/2016 06:15:20 PM,04/05/2016 06:51:47 PM,Code 2 Transport,04/05/2016 07:30:14 PM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160962972-71 -150603171,T02,15023049,Outside Fire,03/01/2015,03/01/2015,03/01/2015 07:19:56 PM,03/01/2015 07:20:39 PM,03/01/2015 07:21:10 PM,03/01/2015 07:22:46 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Fire,03/01/2015 07:24:52 PM,2000 Block of KEARNY ST,San Francisco,94133,B01,28,937,3,3,3,false,Alarm,1,TRUCK,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",150603171-T02 -160922101,76,16036475,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:51:13 PM,04/01/2016 02:51:13 PM,04/01/2016 02:51:23 PM,04/01/2016 02:51:31 PM,04/01/2016 02:54:06 PM,04/01/2016 03:03:03 PM,04/01/2016 03:10:04 PM,Code 2 Transport,04/01/2016 03:43:03 PM,POST ST/LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",160922101-76 -153011082,RC2,15115408,Citizen Assist / Service Call,10/28/2015,10/28/2015,10/28/2015 09:24:17 AM,10/28/2015 09:25:53 AM,10/28/2015 09:56:01 AM,10/28/2015 09:57:22 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 10:02:20 AM,FULTON ST/7TH AV,San Francisco,94122,B07,31,7133,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,7,1,Golden Gate Park,"(37.7734887431391, -122.464811669746)",153011082-RC2 -141612754,87,14055619,Medical Incident,06/10/2014,06/10/2014,06/10/2014 06:40:53 PM,06/10/2014 06:41:33 PM,06/10/2014 06:57:28 PM,06/10/2014 06:57:36 PM,06/10/2014 07:10:50 PM,06/10/2014 07:23:23 PM,06/10/2014 07:41:26 PM,Code 2 Transport,06/10/2014 08:06:52 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",141612754-87 -160963320,AM08,16038140,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:38:17 PM,04/05/2016 06:40:25 PM,04/05/2016 06:44:01 PM,04/05/2016 06:44:45 PM,04/05/2016 06:52:07 PM,04/05/2016 07:06:35 PM,04/05/2016 07:17:42 PM,Code 2 Transport,04/05/2016 07:56:22 PM,EDDY ST/BUCHANAN ST,San Francisco,94115,B02,5,3366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7818474386287, -122.42904060379)",160963320-AM08 -143072177,2R01,14108668,,11/03/2014,11/03/2014,11/03/2014 03:21:33 PM,11/03/2014 03:25:17 PM,11/03/2014 03:42:15 PM,11/03/2014 03:42:15 PM,11/03/2014 03:42:15 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,Fire,11/03/2014 03:42:17 PM,9TH ST/MINNA ST,San Francisco,94103,B02,36,2336,3,3,3,false,Alarm,1,ADMIN,0,2,6,South of Market,"(37.7758006844705, -122.414173206116)",143072177-2R01 -160930991,79,16036774,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:23:09 AM,04/02/2016 09:23:38 AM,04/02/2016 09:23:52 AM,04/02/2016 09:23:58 AM,04/02/2016 09:36:37 AM,04/02/2016 09:49:32 AM,04/02/2016 10:23:15 AM,Code 2 Transport,04/02/2016 10:49:44 AM,0 Block of EXETER ST,San Francisco,94124,B10,44,6323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7221534691563, -122.398611328475)",160930991-79 -150291702,E15,15011165,Medical Incident,01/29/2015,01/29/2015,01/29/2015 01:10:15 PM,01/29/2015 01:11:39 PM,01/29/2015 01:14:17 PM,01/29/2015 01:16:20 PM,01/29/2015 01:18:39 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Code 2 Transport,01/29/2015 01:31:49 PM,400 Block of HEARST AVE,San Francisco,94112,B09,15,8231,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7306398002734, -122.447716619314)",150291702-E15 -161000496,64,16039622,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:05:42 AM,04/09/2016 04:07:40 AM,04/09/2016 04:07:48 AM,04/09/2016 04:08:14 AM,04/09/2016 04:13:32 AM,04/09/2016 04:29:39 AM,04/09/2016 04:40:58 AM,Code 2 Transport,04/09/2016 05:11:16 AM,400 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",161000496-64 -151770856,77,15067301,Medical Incident,06/26/2015,06/26/2015,06/26/2015 08:33:00 AM,06/26/2015 08:35:32 AM,06/26/2015 08:35:48 AM,06/26/2015 08:36:11 AM,06/26/2015 08:52:46 AM,06/26/2015 08:52:51 AM,06/26/2015 09:12:28 AM,Code 2 Transport,06/26/2015 10:04:02 AM,100 Block of MIDDLE POINT RD,San Francisco,94124,B10,25,6556,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7348616704412, -122.379348557253)",151770856-77 -161002916,52,16039910,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 07:58:18 PM,04/09/2016 07:58:18 PM,04/09/2016 07:58:36 PM,04/09/2016 07:58:43 PM,04/09/2016 08:00:35 PM,04/09/2016 08:27:14 PM,04/09/2016 08:39:42 PM,Code 2 Transport,04/09/2016 09:02:22 PM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",161002916-52 -142672768,T14,14093595,Water Rescue,09/24/2014,09/24/2014,09/24/2014 04:55:59 PM,09/24/2014 04:59:33 PM,09/24/2014 05:01:40 PM,09/24/2014 05:01:49 PM,09/24/2014 05:06:27 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Fire,09/24/2014 05:25:09 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Fire,1,TRUCK,6,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",142672768-T14 -151761189,E01,15066984,Medical Incident,06/25/2015,06/25/2015,06/25/2015 10:15:02 AM,06/25/2015 10:17:28 AM,06/25/2015 10:17:40 AM,06/25/2015 10:21:18 AM,06/25/2015 10:30:50 AM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,Code 2 Transport,06/25/2015 10:45:18 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.781960649289, -122.402224095303)",151761189-E01 -141860253,T17,14064273,Alarms,07/05/2014,07/04/2014,07/05/2014 01:01:26 AM,07/05/2014 01:03:49 AM,07/05/2014 01:03:57 AM,07/05/2014 01:05:34 AM,07/05/2014 01:08:36 AM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Fire,07/05/2014 01:13:11 AM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",141860253-T17 -151672715,EMS10,15063957,Structure Fire,06/16/2015,06/16/2015,06/16/2015 06:13:59 PM,06/16/2015 06:13:59 PM,06/16/2015 06:23:58 PM,06/16/2015 06:23:58 PM,06/16/2015 06:31:18 PM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Code 2 Transport,06/16/2015 06:34:15 PM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,3,3,3,false,Alarm,1,CHIEF,4,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",151672715-EMS10 -142233461,73,14077559,Medical Incident,08/11/2014,08/11/2014,08/11/2014 10:25:55 PM,08/11/2014 10:25:55 PM,08/11/2014 10:26:19 PM,08/11/2014 10:26:49 PM,08/11/2014 10:31:57 PM,08/11/2014 10:43:45 PM,08/11/2014 10:48:51 PM,Code 2 Transport,08/11/2014 11:24:44 PM,CYRIL MAGNIN ST/ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7853882479724, -122.408667084184)",142233461-73 -150340626,E17,15013016,Medical Incident,02/03/2015,02/02/2015,02/03/2015 07:36:27 AM,02/03/2015 07:36:46 AM,02/03/2015 07:37:14 AM,02/03/2015 07:39:18 AM,02/03/2015 07:42:28 AM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Code 2 Transport,02/03/2015 07:54:43 AM,0 Block of ARDATH CT,San Francisco,94124,B10,17,6624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7345025151708, -122.382247020863)",150340626-E17 -150081595,E08,15003111,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:00:12 PM,01/08/2015 12:01:55 PM,01/08/2015 12:02:54 PM,01/08/2015 12:04:01 PM,01/08/2015 12:06:31 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 12:35:53 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",150081595-E08 -150921184,E11,15034916,Medical Incident,04/02/2015,04/02/2015,04/02/2015 10:31:25 AM,04/02/2015 10:33:35 AM,04/02/2015 10:34:17 AM,04/02/2015 10:34:31 AM,04/02/2015 10:37:27 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/02/2015 10:52:10 AM,3200 Block of FOLSOM ST,San Francisco,94110,B06,11,5664,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7459532028509, -122.413523168673)",150921184-E11 -152210461,E13,15084093,Medical Incident,08/09/2015,08/08/2015,08/09/2015 03:29:59 AM,08/09/2015 03:30:40 AM,08/09/2015 03:32:15 AM,08/09/2015 03:34:08 AM,08/09/2015 03:37:05 AM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Code 2 Transport,08/09/2015 03:46:33 AM,500 Block of MISSION ST,San Francisco,94105,B03,1,2145,2,3,3,true,Non Life-threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7887066123323, -122.399010207568)",152210461-E13 -142430260,AM30,14084487,Medical Incident,08/31/2014,08/30/2014,08/31/2014 01:43:28 AM,08/31/2014 01:44:07 AM,08/31/2014 01:45:03 AM,08/31/2014 01:45:39 AM,08/31/2014 01:47:25 AM,08/31/2014 01:54:13 AM,08/31/2014 01:59:47 AM,Code 2 Transport,08/31/2014 02:36:20 AM,2200 Block of UNION ST,San Francisco,94123,B04,16,3552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7969299394907, -122.436302808096)",142430260-AM30 -142552915,KM10,14089130,Medical Incident,09/12/2014,09/12/2014,09/12/2014 06:23:11 PM,09/12/2014 06:23:11 PM,09/12/2014 06:24:08 PM,09/12/2014 06:25:17 PM,09/12/2014 06:32:12 PM,09/12/2014 06:47:25 PM,09/12/2014 06:56:08 PM,Against Medical Advice,09/12/2014 07:18:17 PM,300 Block of 4TH ST,San Francisco,94107,B03,8,2216,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7810432179334, -122.399833846531)",142552915-KM10 -141060018,92,14035614,Medical Incident,04/16/2014,04/15/2014,04/16/2014 01:20:30 AM,04/16/2014 01:23:08 AM,04/16/2014 01:24:24 AM,04/16/2014 01:24:24 AM,04/16/2014 01:29:27 AM,04/16/2014 01:48:11 AM,04/16/2014 02:23:57 AM,Code 2 Transport,04/16/2014 02:28:59 AM,700 Block of 4TH ST,SAN FRANCISCO,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",141060018-92 -143581066,E11,14128073,Medical Incident,12/24/2014,12/24/2014,12/24/2014 10:20:24 AM,12/24/2014 10:22:35 AM,12/24/2014 10:27:33 AM,12/24/2014 10:29:30 AM,12/24/2014 10:33:36 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Code 2 Transport,12/24/2014 10:43:43 AM,300 Block of JERSEY ST,San Francisco,94114,B06,11,5522,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7505068709668, -122.432895020479)",143581066-E11 -143121806,77,14110521,Medical Incident,11/08/2014,11/08/2014,11/08/2014 01:28:42 PM,11/08/2014 01:30:21 PM,11/08/2014 01:30:43 PM,11/08/2014 01:30:53 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Code 2 Transport,11/08/2014 01:34:19 PM,1700 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7823892979181, -122.47791315608)",143121806-77 -161000208,64,16039579,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:22:19 AM,04/09/2016 01:22:19 AM,04/09/2016 01:24:22 AM,04/09/2016 01:24:39 AM,04/09/2016 01:33:43 AM,04/09/2016 01:48:25 AM,04/09/2016 02:12:40 AM,Code 2 Transport,04/09/2016 02:44:22 AM,1000 Block of FULTON ST,San Francisco,94117,B05,5,3626,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7773312858554, -122.434030283729)",161000208-64 -152552842,T03,15097613,Alarms,09/12/2015,09/12/2015,09/12/2015 06:18:51 PM,09/12/2015 06:18:52 PM,09/12/2015 06:19:06 PM,09/12/2015 06:20:35 PM,09/12/2015 06:23:31 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 06:28:08 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",152552842-T03 -151341990,KM02,15050888,Medical Incident,05/14/2015,05/14/2015,05/14/2015 01:37:36 PM,05/14/2015 01:39:08 PM,05/14/2015 01:40:42 PM,05/14/2015 01:42:02 PM,05/14/2015 01:46:58 PM,05/14/2015 02:24:18 PM,05/14/2015 02:44:55 PM,Code 2 Transport,05/14/2015 03:14:55 PM,0 Block of ROBBLEE AVE,San Francisco,94124,B10,42,6445,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7356185939593, -122.399082480325)",151341990-KM02 -153361825,53,15129225,Medical Incident,12/02/2015,12/02/2015,12/02/2015 12:43:24 PM,12/02/2015 12:43:39 PM,12/02/2015 12:43:48 PM,12/02/2015 12:43:54 PM,12/02/2015 12:48:50 PM,12/02/2015 01:03:09 PM,12/02/2015 01:09:58 PM,Code 3 Transport,12/02/2015 02:38:30 PM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.709762526111, -122.449674980499)",153361825-53 -150192810,B03,15007593,Alarms,01/19/2015,01/19/2015,01/19/2015 06:18:14 PM,01/19/2015 06:19:41 PM,01/19/2015 06:20:11 PM,01/19/2015 06:22:02 PM,01/19/2015 06:22:02 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Fire,01/19/2015 06:32:52 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7791674218963, -122.406346425632)",150192810-B03 -150141149,KM01,15005486,Medical Incident,01/14/2015,01/14/2015,01/14/2015 10:17:21 AM,01/14/2015 10:18:15 AM,01/14/2015 10:19:05 AM,01/14/2015 10:20:32 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,No Merit,01/14/2015 10:27:45 AM,0 Block of ASHTON AVE,San Francisco,94112,B09,15,8434,3,3,3,false,Non Life-threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7193876630599, -122.462323615589)",150141149-KM01 -160961588,KM08,16037989,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:03:30 PM,04/05/2016 12:03:49 PM,04/05/2016 12:05:18 PM,04/05/2016 12:08:46 PM,04/05/2016 12:11:35 PM,04/05/2016 12:59:00 PM,04/05/2016 01:08:09 PM,Code 2 Transport,04/05/2016 01:51:35 PM,OCTAVIA ST/HAYES ST,San Francisco,94102,B02,36,3314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7766875550419, -122.424513700951)",160961588-KM08 -150112655,83,15004445,Medical Incident,01/11/2015,01/11/2015,01/11/2015 05:38:22 PM,01/11/2015 05:38:22 PM,01/11/2015 05:38:44 PM,01/11/2015 05:39:01 PM,01/11/2015 05:46:34 PM,01/11/2015 06:05:07 PM,01/11/2015 06:13:54 PM,Code 2 Transport,01/11/2015 06:48:32 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",150112655-83 -153034095,E31,15116434,Alarms,10/30/2015,10/30/2015,10/30/2015 10:49:56 PM,10/30/2015 10:51:41 PM,10/30/2015 10:52:30 PM,10/30/2015 10:53:50 PM,10/30/2015 10:56:51 PM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Fire,10/30/2015 11:05:51 PM,1700 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,3,3,3,true,Alarm,1,ENGINE,2,7,1,Outer Richmond,"(37.7823892979181, -122.47791315608)",153034095-E31 -142030227,E03,14070103,Alarms,07/22/2014,07/21/2014,07/22/2014 02:18:14 AM,07/22/2014 02:19:09 AM,07/22/2014 02:19:41 AM,07/22/2014 02:21:52 AM,07/22/2014 02:23:57 AM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Fire,07/22/2014 02:28:00 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",142030227-E03 -143110219,E03,14109990,Medical Incident,11/07/2014,11/06/2014,11/07/2014 01:45:04 AM,11/07/2014 01:45:04 AM,11/07/2014 01:45:17 AM,11/07/2014 01:47:41 AM,11/07/2014 01:49:52 AM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Code 2 Transport,11/07/2014 01:53:29 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",143110219-E03 -143260933,76,14115414,Medical Incident,11/22/2014,11/22/2014,11/22/2014 08:50:12 AM,11/22/2014 08:51:51 AM,11/22/2014 08:52:40 AM,11/22/2014 08:53:17 AM,11/22/2014 08:59:00 AM,11/22/2014 09:22:21 AM,11/22/2014 09:41:56 AM,Code 2 Transport,11/22/2014 10:12:17 AM,400 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7864766476212, -122.411352334203)",143260933-76 -150403825,T11,15015788,Structure Fire,02/09/2015,02/09/2015,02/09/2015 10:50:41 PM,02/09/2015 10:50:41 PM,02/09/2015 10:50:54 PM,02/09/2015 10:52:48 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Fire,02/09/2015 10:53:27 PM,25TH ST/VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,false,Alarm,1,TRUCK,2,6,8,Mission,"(37.7505058278022, -122.420507005779)",150403825-T11 -153311927,E07,15127405,Medical Incident,11/27/2015,11/27/2015,11/27/2015 02:33:14 PM,11/27/2015 02:34:31 PM,11/27/2015 02:35:54 PM,11/27/2015 02:37:16 PM,11/27/2015 02:39:34 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,No Merit,11/27/2015 02:47:34 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Non Life-threatening,1,ENGINE,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",153311927-E07 -141990353,B01,14068762,Alarms,07/18/2014,07/17/2014,07/18/2014 03:00:59 AM,07/18/2014 03:02:21 AM,07/18/2014 03:02:31 AM,07/18/2014 03:04:10 AM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Fire,07/18/2014 03:14:37 AM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,false,Alarm,1,CHIEF,3,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",141990353-B01 -160940611,52,16037155,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:45:13 AM,04/03/2016 04:45:55 AM,04/03/2016 04:46:28 AM,04/03/2016 04:46:33 AM,04/03/2016 04:49:03 AM,04/03/2016 05:08:03 AM,04/03/2016 05:15:35 AM,Code 2 Transport,04/03/2016 05:34:41 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",160940611-52 -152760677,E12,15105663,Medical Incident,10/03/2015,10/02/2015,10/03/2015 06:23:01 AM,10/03/2015 06:23:23 AM,10/03/2015 06:23:48 AM,10/03/2015 06:25:43 AM,10/03/2015 06:28:03 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Code 2 Transport,10/03/2015 06:33:23 AM,1500 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",152760677-E12 -160941829,75,16037260,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:06:04 PM,04/03/2016 01:07:37 PM,04/03/2016 01:11:17 PM,04/03/2016 01:11:28 PM,04/03/2016 01:24:50 PM,04/03/2016 01:31:45 PM,04/03/2016 02:25:14 PM,Code 2 Transport,04/03/2016 02:28:25 PM,300 Block of GREAT HWY,San Francisco,94121,B07,34,7314,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",160941829-75 -152461962,T08,15093829,Vehicle Fire,09/03/2015,09/03/2015,09/03/2015 01:25:10 PM,09/03/2015 01:26:15 PM,09/03/2015 01:28:20 PM,09/03/2015 01:28:43 PM,09/03/2015 01:35:39 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/03/2015 01:51:35 PM,300 Block of 1ST ST,San Francisco,94105,B03,48,2136,3,3,3,false,Fire,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",152461962-T08 -153243116,E15,15124804,Medical Incident,11/20/2015,11/20/2015,11/20/2015 05:46:15 PM,11/20/2015 05:47:22 PM,11/20/2015 05:47:51 PM,11/20/2015 05:48:45 PM,11/20/2015 05:51:22 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Code 2 Transport,11/20/2015 06:01:06 PM,JULES AV/HOLLOWAY AV,San Francisco,94112,B09,15,8463,3,3,3,true,Non Life-threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7218312559176, -122.461242252435)",153243116-E15 -143280711,E08,14116185,Structure Fire,11/24/2014,11/24/2014,11/24/2014 08:07:02 AM,11/24/2014 08:07:02 AM,11/24/2014 08:07:05 AM,11/24/2014 08:08:20 AM,11/24/2014 08:09:54 AM,04/25/2016 01:13:50 PM,04/25/2016 01:13:50 PM,Fire,11/24/2014 08:10:27 AM,6TH ST/BRYANT ST,San Francisco,94107,B03,8,2255,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7760393195221, -122.402524096783)",143280711-E08 -142931102,E43,14103298,Medical Incident,10/20/2014,10/20/2014,10/20/2014 10:22:54 AM,10/20/2014 10:25:17 AM,10/20/2014 10:26:40 AM,10/20/2014 10:27:51 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Code 2 Transport,10/20/2014 10:28:36 AM,2200 Block of BAY SHORE BLVD,San Francisco,94134,B10,44,6255,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7121240018381, -122.40295368671)",142931102-E43 -142552073,KM14,14089060,Medical Incident,09/12/2014,09/12/2014,09/12/2014 02:47:27 PM,09/12/2014 02:47:59 PM,09/12/2014 02:48:48 PM,09/12/2014 02:49:44 PM,09/12/2014 02:49:55 PM,09/12/2014 03:09:46 PM,09/12/2014 03:15:26 PM,Code 2 Transport,09/12/2014 03:43:41 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142552073-KM14 -160971178,74,16038352,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:54:00 AM,04/06/2016 09:54:31 AM,04/06/2016 09:57:10 AM,04/06/2016 09:57:16 AM,04/06/2016 09:58:41 AM,04/06/2016 10:08:40 AM,04/06/2016 10:39:34 AM,Code 3 Transport,04/06/2016 11:01:47 AM,1300 Block of FILBERT ST,San Francisco,94109,B01,41,1626,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Russian Hill,"(37.7998522915105, -122.421714876438)",160971178-74 -142880990,81,14101445,Medical Incident,10/15/2014,10/15/2014,10/15/2014 09:20:10 AM,10/15/2014 09:22:36 AM,10/15/2014 09:38:39 AM,10/15/2014 09:38:48 AM,10/15/2014 09:53:51 AM,10/15/2014 10:08:39 AM,10/15/2014 10:32:38 AM,Code 2 Transport,10/15/2014 11:24:17 AM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",142880990-81 -151131388,T05,15042662,Structure Fire,04/23/2015,04/23/2015,04/23/2015 11:06:06 AM,04/23/2015 11:06:50 AM,04/23/2015 11:07:08 AM,04/23/2015 11:07:34 AM,04/23/2015 11:10:38 AM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Fire,04/23/2015 11:20:18 AM,200 Block of LINDEN ST,San Francisco,94102,B02,36,3213,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7765750171122, -122.422070047765)",151131388-T05 -160961943,64,16038029,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:22:08 PM,04/05/2016 01:27:02 PM,04/05/2016 01:27:27 PM,04/05/2016 01:27:43 PM,04/05/2016 01:43:52 PM,04/05/2016 01:58:52 PM,04/05/2016 02:40:59 PM,Code 2 Transport,04/05/2016 02:58:53 PM,LEAVENWORTH ST/TURK ST,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160961943-64 -160993462,68,16039462,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:30:41 PM,04/08/2016 08:31:40 PM,04/08/2016 08:32:03 PM,04/08/2016 08:33:32 PM,04/08/2016 09:10:28 PM,04/08/2016 09:10:30 PM,04/08/2016 09:19:03 PM,Code 2 Transport,04/08/2016 09:56:39 PM,DIVISION ST/BRYANT ST,San Francisco,94103,B02,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7694111910912, -122.410931089145)",160993462-68 -160973913,70,16038639,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:46:29 PM,04/06/2016 07:48:17 PM,04/06/2016 07:48:48 PM,04/06/2016 07:49:02 PM,04/06/2016 07:52:38 PM,04/06/2016 08:06:01 PM,04/06/2016 08:13:03 PM,Code 2 Transport,04/06/2016 08:47:12 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160973913-70 -160974145,81,16038667,Other,04/06/2016,04/06/2016,04/06/2016 08:54:50 PM,04/06/2016 08:56:09 PM,04/06/2016 09:08:20 PM,04/06/2016 09:08:44 PM,04/06/2016 09:17:20 PM,04/06/2016 09:40:51 PM,04/06/2016 10:19:00 PM,Code 2 Transport,04/06/2016 10:24:35 PM,0 Block of SKYVIEW WAY,San Francisco,94131,B08,20,5352,3,3,3,true,Alarm,1,MEDIC,2,8,7,Twin Peaks,"(37.7493307598868, -122.450432551712)",160974145-81 -150542846,62,15020859,Medical Incident,02/23/2015,02/23/2015,02/23/2015 05:17:34 PM,02/23/2015 05:18:57 PM,02/23/2015 05:19:02 PM,02/23/2015 05:20:54 PM,02/23/2015 05:32:09 PM,02/23/2015 05:47:36 PM,02/23/2015 06:07:09 PM,Code 2 Transport,02/23/2015 06:30:38 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",150542846-62 -142901037,RC2,14102169,Medical Incident,10/17/2014,10/17/2014,10/17/2014 09:40:42 AM,10/17/2014 09:40:42 AM,10/17/2014 09:47:53 AM,10/17/2014 09:47:53 AM,10/17/2014 09:50:26 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/17/2014 10:00:37 AM,500 Block of HAYES ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,2,5,Hayes Valley,"(37.7765217026729, -122.425377541131)",142901037-RC2 -141802387,E01,14062304,Medical Incident,06/29/2014,06/29/2014,06/29/2014 04:37:32 PM,06/29/2014 04:39:19 PM,06/29/2014 04:39:53 PM,06/29/2014 04:41:26 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Code 2 Transport,06/29/2014 04:44:24 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",141802387-E01 -161001223,AM12,16039709,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:53:57 AM,04/09/2016 10:53:57 AM,04/09/2016 10:56:12 AM,04/09/2016 10:56:32 AM,04/09/2016 11:03:17 AM,04/09/2016 11:10:20 AM,04/09/2016 11:29:45 AM,Code 2 Transport,04/09/2016 11:58:34 AM,100 Block of VALENCIA ST,San Francisco,94103,B02,36,5126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7707273342452, -122.422514586133)",161001223-AM12 -160933534,55,16037055,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 09:35:47 PM,04/02/2016 09:41:24 PM,04/02/2016 09:42:09 PM,04/02/2016 09:42:26 PM,04/02/2016 09:54:16 PM,04/02/2016 10:16:33 PM,04/02/2016 10:31:33 PM,Code 2 Transport,04/02/2016 11:04:35 PM,2600 Block of 22ND ST,San Francisco,94110,B06,7,5474,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7560269818852, -122.40804532047)",160933534-55 -142133502,67,14074014,Medical Incident,08/01/2014,08/01/2014,08/01/2014 10:19:41 PM,08/01/2014 10:20:25 PM,08/01/2014 10:20:39 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Code 2 Transport,08/01/2014 10:23:38 PM,1900 Block of CLAY ST,San Francisco,94109,B04,38,3253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,4,2,Pacific Heights,"(37.7919153818228, -122.425171289022)",142133502-67 -150433921,78,15016909,Medical Incident,02/12/2015,02/12/2015,02/12/2015 10:45:14 PM,02/12/2015 10:45:14 PM,02/12/2015 10:53:37 PM,02/12/2015 10:54:13 PM,02/12/2015 11:01:12 PM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/12/2015 11:05:55 PM,0 Block of GOLDEN GATE AVE,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",150433921-78 -142880330,E01,14101385,Medical Incident,10/15/2014,10/14/2014,10/15/2014 04:03:18 AM,10/15/2014 04:04:23 AM,10/15/2014 04:04:35 AM,10/15/2014 04:07:48 AM,10/15/2014 04:10:09 AM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,Code 2 Transport,10/15/2014 04:23:50 AM,700 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7841058563108, -122.401539484586)",142880330-E01 -150570190,E08,15021640,Medical Incident,02/26/2015,02/25/2015,02/26/2015 01:48:45 AM,02/26/2015 01:50:41 AM,02/26/2015 01:50:54 AM,02/26/2015 01:52:30 AM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Code 2 Transport,02/26/2015 02:19:01 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",150570190-E08 -143580820,2R01,14128047,,12/24/2014,12/24/2014,12/24/2014 08:52:14 AM,12/24/2014 08:56:08 AM,12/24/2014 09:39:35 AM,12/24/2014 09:39:35 AM,12/24/2014 09:39:35 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Patient Declined Transport,12/24/2014 09:39:38 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,ADMIN,0,3,6,South of Market,"(37.7803475492385, -122.406487967809)",143580820-2R01 -153331198,E14,15128022,Medical Incident,11/29/2015,11/29/2015,11/29/2015 11:14:00 AM,11/29/2015 11:15:39 AM,11/29/2015 11:15:56 AM,11/29/2015 11:16:48 AM,11/29/2015 11:19:32 AM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Code 2 Transport,11/29/2015 11:30:49 AM,3400 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.775733706863, -122.495712835118)",153331198-E14 -141952229,T01,14067624,Structure Fire,07/14/2014,07/14/2014,07/14/2014 03:51:34 PM,07/14/2014 03:51:34 PM,07/14/2014 03:53:20 PM,07/14/2014 03:54:59 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Fire,07/14/2014 03:55:44 PM,MASON ST/MARKET ST,San Francisco,94103,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",141952229-T01 -151901368,FD00A,15072509,,07/09/2015,07/09/2015,07/09/2015 10:51:54 AM,07/09/2015 10:51:54 AM,07/09/2015 11:10:07 AM,07/09/2015 11:10:07 AM,07/09/2015 11:10:07 AM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Fire,07/09/2015 11:10:30 AM,GILMAN AV/JENNINGS ST,San Francisco,94124,B10,17,6612,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,5,10,10,Bayview Hunters Point,"(37.7214084625386, -122.393736929535)",151901368-FD00A -152091607,E16,15079610,Structure Fire,07/28/2015,07/28/2015,07/28/2015 11:49:26 AM,07/28/2015 11:49:26 AM,07/28/2015 11:50:07 AM,07/28/2015 11:51:11 AM,07/28/2015 11:52:27 AM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/28/2015 11:53:35 AM,FILLMORE ST/UNION ST,San Francisco,94123,B04,16,3552,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7970890002513, -122.435489829172)",152091607-E16 -160993421,58,16039456,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:16:14 PM,04/08/2016 08:17:54 PM,04/08/2016 08:18:10 PM,04/08/2016 08:18:22 PM,04/08/2016 08:28:59 PM,04/08/2016 08:45:07 PM,04/08/2016 09:03:46 PM,Code 2 Transport,04/08/2016 09:33:44 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160993421-58 -160981317,62,16038862,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:17:10 AM,04/07/2016 10:19:08 AM,04/07/2016 10:20:18 AM,04/07/2016 10:20:33 AM,04/07/2016 10:44:20 AM,04/07/2016 11:11:19 AM,04/07/2016 11:28:33 AM,Code 2 Transport,04/07/2016 12:09:53 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160981317-62 -151730497,E36,15065942,Medical Incident,06/22/2015,06/21/2015,06/22/2015 06:53:54 AM,06/22/2015 06:55:44 AM,06/22/2015 07:12:09 AM,06/22/2015 07:13:34 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Code 2 Transport,06/22/2015 07:14:51 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",151730497-E36 -152182708,82,15083107,Medical Incident,08/06/2015,08/06/2015,08/06/2015 05:02:09 PM,08/06/2015 05:03:08 PM,08/06/2015 05:04:09 PM,08/06/2015 05:04:16 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/06/2015 05:20:18 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",152182708-82 -141510284,E19,14051752,Alarms,05/31/2014,05/30/2014,05/31/2014 01:33:06 AM,05/31/2014 01:34:52 AM,05/31/2014 01:35:15 AM,05/31/2014 01:37:10 AM,05/31/2014 01:37:10 AM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Fire,05/31/2014 01:57:47 AM,200 Block of WINSTON DR,San Francisco,94132,B08,19,8862,3,3,3,true,Alarm,1,ENGINE,2,8,7,Lakeshore,"(37.7269310558754, -122.477956520245)",141510284-E19 -141522575,85,14052316,Medical Incident,06/01/2014,06/01/2014,06/01/2014 06:56:03 PM,06/01/2014 06:59:24 PM,06/01/2014 07:08:56 PM,06/01/2014 07:09:19 PM,06/01/2014 07:17:14 PM,06/01/2014 07:38:07 PM,06/01/2014 07:52:41 PM,Code 2 Transport,06/01/2014 08:31:12 PM,400 Block of LISBON ST,San Francisco,94112,B09,43,6134,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7212508959999, -122.434254898637)",141522575-85 -141683697,E07,14058160,Structure Fire,06/17/2014,06/17/2014,06/17/2014 11:22:06 PM,06/17/2014 11:22:59 PM,06/17/2014 11:23:38 PM,06/17/2014 11:24:40 PM,06/17/2014 11:26:37 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Fire,06/17/2014 11:50:34 PM,1100 Block of TREAT AVE,San Francisco,94110,B06,7,5526,3,3,3,true,Fire,1,ENGINE,2,6,9,Mission,"(37.7517746674665, -122.412847894317)",141683697-E07 -151593809,E02,15060949,Medical Incident,06/08/2015,06/08/2015,06/08/2015 10:29:59 PM,06/08/2015 10:30:12 PM,06/08/2015 10:30:37 PM,06/08/2015 10:31:56 PM,06/08/2015 10:32:53 PM,04/25/2016 01:10:07 PM,04/25/2016 01:10:07 PM,Code 2 Transport,06/08/2015 10:52:12 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",151593809-E02 -160930838,54,16036757,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:27:45 AM,04/02/2016 08:30:43 AM,04/02/2016 08:31:15 AM,04/02/2016 08:31:59 AM,04/02/2016 08:43:23 AM,04/02/2016 09:00:56 AM,04/02/2016 09:20:07 AM,Code 2 Transport,04/02/2016 09:51:36 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160930838-54 -160973370,52,16038577,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:46:53 PM,04/06/2016 05:48:52 PM,04/06/2016 05:49:53 PM,04/06/2016 05:50:13 PM,04/06/2016 06:01:41 PM,04/06/2016 06:16:37 PM,04/06/2016 06:45:31 PM,Code 2 Transport,04/06/2016 06:58:39 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160973370-52 -150920886,B01,15034882,Alarms,04/02/2015,04/02/2015,04/02/2015 09:09:30 AM,04/02/2015 09:10:51 AM,04/02/2015 09:11:05 AM,04/02/2015 09:12:19 AM,04/02/2015 09:17:00 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/02/2015 09:23:34 AM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,false,Alarm,1,CHIEF,3,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",150920886-B01 -152314115,B04,15088322,Traffic Collision,08/19/2015,08/19/2015,08/19/2015 11:15:49 PM,08/19/2015 11:17:10 PM,08/19/2015 11:17:49 PM,08/19/2015 11:18:45 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Patient Declined Transport,08/19/2015 11:21:51 PM,POLK ST/POST ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,CHIEF,5,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",152314115-B04 -151192117,E36,15045043,Alarms,04/29/2015,04/29/2015,04/29/2015 01:48:29 PM,04/29/2015 01:48:46 PM,04/29/2015 01:49:54 PM,04/29/2015 01:51:24 PM,04/29/2015 01:54:40 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/29/2015 02:05:28 PM,2100 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",151192117-E36 -151962827,E25,15074843,Structure Fire,07/15/2015,07/15/2015,07/15/2015 05:55:15 PM,07/15/2015 05:55:15 PM,07/15/2015 05:55:32 PM,07/15/2015 05:57:17 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Fire,07/15/2015 06:01:17 PM,KIRKWOOD AV/ALBATROSS CT,San Francisco,94124,B10,17,6665,3,3,3,false,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7282247671866, -122.372428105739)",151962827-E25 -152261495,E06,15086101,Medical Incident,08/14/2015,08/14/2015,08/14/2015 11:20:15 AM,08/14/2015 11:21:21 AM,08/14/2015 11:21:46 AM,08/14/2015 11:21:58 AM,08/14/2015 11:25:01 AM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Against Medical Advice,08/14/2015 11:34:38 AM,1300 Block of FELL ST,San Francisco,94117,B05,21,4252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7736869919131, -122.440088215983)",152261495-E06 -160960367,AM24,16037883,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:05:01 AM,04/05/2016 05:06:26 AM,04/05/2016 05:06:46 AM,04/05/2016 05:08:49 AM,04/05/2016 05:14:01 AM,04/05/2016 05:23:22 AM,04/05/2016 05:39:04 AM,Code 2 Transport,04/05/2016 06:18:09 AM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160960367-AM24 -141280994,E17,14043439,Medical Incident,05/08/2014,05/08/2014,05/08/2014 09:38:02 AM,05/08/2014 09:40:19 AM,05/08/2014 09:44:56 AM,05/08/2014 09:45:12 AM,05/08/2014 09:48:15 AM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Fire,05/08/2014 09:57:31 AM,1300 Block of QUESADA AVE,San Francisco,94124,B10,17,6571,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7296839278885, -122.384883031645)",141280994-E17 -160931570,KM04,16036838,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:18:43 PM,04/02/2016 12:18:43 PM,04/02/2016 12:19:06 PM,04/02/2016 12:19:48 PM,04/02/2016 12:22:38 PM,04/02/2016 12:35:41 PM,04/02/2016 12:58:49 PM,Code 2 Transport,04/02/2016 01:31:49 PM,LEAVENWORTH ST/GOLDEN GATE AV,San Francisco,94102,B02,1,1546,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",160931570-KM04 -142643089,T02,14092492,Structure Fire,09/21/2014,09/21/2014,09/21/2014 08:42:11 PM,09/21/2014 08:42:11 PM,09/21/2014 08:42:22 PM,09/21/2014 08:43:30 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Fire,09/21/2014 08:43:32 PM,GRANT AV/POST ST,San Francisco,94108,B01,1,1316,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",142643089-T02 -152020717,T01,15076889,Alarms,07/21/2015,07/20/2015,07/21/2015 07:56:09 AM,07/21/2015 07:57:41 AM,07/21/2015 07:58:02 AM,07/21/2015 08:00:54 AM,07/21/2015 08:03:50 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/21/2015 08:54:46 AM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",152020717-T01 -141090038,B06,14036645,Structure Fire,04/19/2014,04/18/2014,04/19/2014 02:24:02 AM,04/19/2014 02:24:03 AM,04/19/2014 02:24:47 AM,04/19/2014 02:26:46 AM,04/19/2014 02:28:39 AM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Fire,04/19/2014 02:31:19 AM,3500 Block of CESAR CHAVEZ ST,SAN FRANCISCO,94110,B06,11,555,3,3,3,false,Alarm,1,CHIEF,3,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",141090038-B06 -141631236,E01,14056162,Medical Incident,06/12/2014,06/12/2014,06/12/2014 11:15:22 AM,06/12/2014 11:15:52 AM,06/12/2014 11:18:57 AM,06/12/2014 11:19:34 AM,06/12/2014 11:21:52 AM,04/25/2016 01:16:49 PM,04/25/2016 01:16:49 PM,Code 2 Transport,06/12/2014 11:34:45 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",141631236-E01 -160932547,56,16036952,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:58:10 PM,04/02/2016 04:58:16 PM,04/02/2016 04:58:34 PM,04/02/2016 04:59:02 PM,04/02/2016 05:05:01 PM,04/02/2016 05:11:36 PM,04/02/2016 05:39:32 PM,Code 2 Transport,04/02/2016 05:50:07 PM,POWELL ST/JEFFERSON ST,San Francisco,94133,B01,28,1344,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.808624849677, -122.412523835376)",160932547-56 -141470256,E02,14050328,Alarms,05/27/2014,05/26/2014,05/27/2014 02:28:27 AM,05/27/2014 02:35:07 AM,05/27/2014 02:36:03 AM,05/27/2014 02:37:57 AM,05/27/2014 02:39:23 AM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,Fire,05/27/2014 03:00:37 AM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.796699717573, -122.408014703843)",141470256-E02 -150371140,E41,15014200,Medical Incident,02/06/2015,02/06/2015,02/06/2015 09:36:43 AM,02/06/2015 09:37:46 AM,02/06/2015 09:38:27 AM,02/06/2015 09:42:29 AM,02/06/2015 09:42:29 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Code 2 Transport,02/06/2015 09:55:47 AM,500 Block of SUTTER ST,San Francisco,94108,B01,3,1412,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",150371140-E41 -151493191,56,15056830,Medical Incident,05/29/2015,05/29/2015,05/29/2015 06:27:01 PM,05/29/2015 06:27:37 PM,05/29/2015 06:28:02 PM,05/29/2015 06:28:22 PM,05/29/2015 06:29:50 PM,05/29/2015 06:50:48 PM,05/29/2015 07:09:55 PM,Code 2 Transport,05/29/2015 07:28:12 PM,1700 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",151493191-56 -160974557,83,16038708,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:58:41 PM,04/06/2016 11:00:31 PM,04/06/2016 11:01:11 PM,04/06/2016 11:01:24 PM,04/06/2016 11:08:08 PM,04/07/2016 12:03:50 AM,04/07/2016 12:04:04 AM,Code 2 Transport,04/07/2016 12:05:08 AM,CALIFORNIA ST/6TH AV,San Francisco,94118,B07,31,7125,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7849939711361, -122.464572158227)",160974557-83 -143131698,E17,14110915,Alarms,11/09/2014,11/09/2014,11/09/2014 01:19:25 PM,11/09/2014 01:21:01 PM,11/09/2014 01:21:10 PM,11/09/2014 01:22:38 PM,11/09/2014 01:24:32 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/09/2014 01:40:55 PM,1200 Block of LA SALLE AVE,San Francisco,94124,B10,17,668,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",143131698-E17 -160972856,85,16038512,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:05:39 PM,04/06/2016 04:07:05 PM,04/06/2016 04:07:09 PM,04/06/2016 04:07:17 PM,04/06/2016 04:11:54 PM,04/06/2016 04:30:18 PM,04/06/2016 04:41:19 PM,Code 2 Transport,04/06/2016 05:27:54 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160972856-85 -141840227,KM04,14063531,Medical Incident,07/03/2014,07/02/2014,07/03/2014 02:17:03 AM,07/03/2014 02:18:53 AM,07/03/2014 02:19:59 AM,07/03/2014 02:20:39 AM,07/03/2014 02:25:27 AM,07/03/2014 02:27:33 AM,07/03/2014 02:45:45 AM,Code 2 Transport,07/03/2014 03:16:42 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",141840227-KM04 -141702110,E36,14058740,Citizen Assist / Service Call,06/19/2014,06/19/2014,06/19/2014 03:29:18 PM,06/19/2014 03:30:13 PM,06/19/2014 03:30:37 PM,06/19/2014 03:31:12 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Other,06/19/2014 03:32:21 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",141702110-E36 -141692560,E06,14058441,Medical Incident,06/18/2014,06/18/2014,06/18/2014 05:46:35 PM,06/18/2014 05:47:40 PM,06/18/2014 05:48:22 PM,06/18/2014 05:49:40 PM,06/18/2014 05:51:41 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,No Merit,06/18/2014 05:54:54 PM,14TH ST/BELCHER ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7676621207067, -122.430081455189)",141692560-E06 -141451659,E01,14049800,Medical Incident,05/25/2014,05/25/2014,05/25/2014 01:54:34 PM,05/25/2014 01:56:00 PM,05/25/2014 01:56:41 PM,05/25/2014 01:57:34 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Code 2 Transport,05/25/2014 02:08:58 PM,200 Block of 3RD ST,San Francisco,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7846604121968, -122.39991472916)",141451659-E01 -152172797,60,15082695,Medical Incident,08/05/2015,08/05/2015,08/05/2015 05:01:40 PM,08/05/2015 05:01:40 PM,08/05/2015 05:02:48 PM,08/05/2015 05:03:04 PM,08/05/2015 05:11:06 PM,08/05/2015 05:44:38 PM,08/05/2015 05:51:42 PM,Code 2 Transport,08/05/2015 06:25:37 PM,800 Block of CAPP ST,San Francisco,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7531080512306, -122.417362867532)",152172797-60 -151630077,AM20,15062126,Medical Incident,06/12/2015,06/11/2015,06/12/2015 12:42:52 AM,06/12/2015 12:42:52 AM,06/12/2015 12:43:10 AM,06/12/2015 12:43:46 AM,06/12/2015 12:46:33 AM,06/12/2015 01:03:19 AM,06/12/2015 01:16:07 AM,Code 2 Transport,06/12/2015 02:07:17 AM,3900 Block of 18TH ST,San Francisco,94114,B05,6,5417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7611431684857, -122.431688789383)",151630077-AM20 -160921410,AM02,16036409,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 11:42:52 AM,04/01/2016 11:42:52 AM,04/01/2016 11:43:52 AM,04/01/2016 11:45:04 AM,04/01/2016 11:46:47 AM,04/01/2016 12:06:43 PM,04/01/2016 12:28:27 PM,Code 2 Transport,04/01/2016 01:13:23 PM,GREENWICH ST/POLK ST,San Francisco,94109,B01,16,3132,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Russian Hill,"(37.8006241524646, -122.422713159969)",160921410-AM02 -152983019,E34,15114544,Medical Incident,10/25/2015,10/25/2015,10/25/2015 07:32:42 PM,10/25/2015 07:33:06 PM,10/25/2015 07:33:38 PM,10/25/2015 07:34:26 PM,10/25/2015 07:37:04 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Code 2 Transport,10/25/2015 07:48:03 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",152983019-E34 -153443022,E01,15132519,Traffic Collision,12/10/2015,12/10/2015,12/10/2015 05:52:11 PM,12/10/2015 05:53:17 PM,12/10/2015 05:53:49 PM,12/10/2015 05:54:45 PM,12/10/2015 05:57:21 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Code 2 Transport,12/10/2015 06:10:06 PM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",153443022-E01 -150913946,E13,15034793,Medical Incident,04/01/2015,04/01/2015,04/01/2015 10:57:51 PM,04/01/2015 10:59:00 PM,04/01/2015 11:00:47 PM,04/01/2015 11:01:19 PM,04/01/2015 11:04:25 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/01/2015 11:12:48 PM,300 Block of KEARNY ST,San Francisco,94104,B01,13,1243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912340846194, -122.40405694935)",150913946-E13 -160941369,84,16037228,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:53:00 AM,04/03/2016 10:53:00 AM,04/03/2016 10:54:07 AM,04/03/2016 10:54:56 AM,04/03/2016 10:59:17 AM,04/03/2016 11:22:43 AM,04/03/2016 11:37:49 AM,Code 2 Transport,04/03/2016 12:22:00 PM,2500 Block of 25TH AVE,San Francisco,94116,B08,40,7462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7399677614762, -122.481993144476)",160941369-84 -151841122,E17,15070176,Medical Incident,07/03/2015,07/03/2015,07/03/2015 10:00:27 AM,07/03/2015 10:01:03 AM,07/03/2015 10:01:22 AM,07/03/2015 10:02:55 AM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Code 2 Transport,07/03/2015 10:06:23 AM,3100 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,10,9,Portola,"(37.7220016138662, -122.401341444894)",151841122-E17 -160960682,AM02,16037914,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:10:39 AM,04/05/2016 08:12:09 AM,04/05/2016 08:14:32 AM,04/05/2016 08:15:07 AM,04/05/2016 08:41:27 AM,04/05/2016 09:24:28 AM,04/05/2016 09:44:57 AM,Code 2 Transport,04/05/2016 10:16:24 AM,400 Block of 29TH AVE,San Francisco,94121,B07,14,7226,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7808610214772, -122.489016145519)",160960682-AM02 -141491385,T07,14051160,Structure Fire,05/29/2014,05/29/2014,05/29/2014 11:40:31 AM,05/29/2014 11:41:28 AM,05/29/2014 11:42:23 AM,05/29/2014 11:42:41 AM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Fire,05/29/2014 11:57:38 AM,700 Block of CHURCH ST,San Francisco,94114,B06,11,5444,3,3,3,false,Alarm,1,TRUCK,9,6,8,Castro/Upper Market,"(37.7584854996531, -122.428157223684)",141491385-T07 -150891936,T02,15033980,Structure Fire,03/30/2015,03/30/2015,03/30/2015 02:19:21 PM,03/30/2015 02:24:17 PM,03/30/2015 02:24:32 PM,03/30/2015 02:26:16 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Fire,03/30/2015 02:31:26 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Alarm,1,TRUCK,10,4,6,Tenderloin,"(37.7866019512795, -122.419812186232)",150891936-T02 -152282137,E19,15087021,Medical Incident,08/16/2015,08/16/2015,08/16/2015 02:55:12 PM,08/16/2015 02:57:34 PM,08/16/2015 02:59:32 PM,08/16/2015 03:01:26 PM,08/16/2015 03:06:17 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Code 2 Transport,08/16/2015 03:24:30 PM,0 Block of STRATFORD DR,San Francisco,94132,B09,19,8727,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7238017236034, -122.473465365097)",152282137-E19 -151910090,E08,15072732,Medical Incident,07/10/2015,07/09/2015,07/10/2015 12:31:31 AM,07/10/2015 12:32:14 AM,07/10/2015 12:32:55 AM,07/10/2015 12:33:11 AM,07/10/2015 12:37:07 AM,04/25/2016 01:09:33 PM,04/25/2016 01:09:33 PM,Code 2 Transport,07/10/2015 12:52:25 AM,300 Block of THE EMBARCADERO,San Francisco,94111,B03,35,922,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",151910090-E08 -143190532,E26,14112877,Medical Incident,11/15/2014,11/14/2014,11/15/2014 04:24:58 AM,11/15/2014 04:26:08 AM,11/15/2014 04:28:56 AM,11/15/2014 04:32:18 AM,11/15/2014 04:36:25 AM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,Code 3 Transport,11/15/2014 04:58:18 AM,0 Block of NORDHOFF ST,San Francisco,94131,B09,26,8177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,8,West of Twin Peaks,"(37.7337925121178, -122.440968305396)",143190532-E26 -153010857,E31,15115397,Alarms,10/28/2015,10/28/2015,10/28/2015 08:26:09 AM,10/28/2015 08:27:31 AM,10/28/2015 08:27:38 AM,10/28/2015 08:29:30 AM,10/28/2015 08:37:05 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 08:37:28 AM,400 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,711,3,3,3,false,Alarm,1,ENGINE,2,7,2,Presidio Heights,"(37.7822260108075, -122.458859437192)",153010857-E31 -160971915,KM02,16038412,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:39:25 PM,04/06/2016 12:40:27 PM,04/06/2016 12:40:51 PM,04/06/2016 12:41:34 PM,04/06/2016 12:43:58 PM,04/06/2016 01:11:36 PM,04/06/2016 01:23:44 PM,Code 2 Transport,04/06/2016 01:51:46 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160971915-KM02 -142862078,E38,14100867,Medical Incident,10/13/2014,10/13/2014,10/13/2014 02:57:27 PM,10/13/2014 02:59:20 PM,10/13/2014 02:59:47 PM,10/13/2014 03:00:41 PM,10/13/2014 03:02:15 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,No Merit,10/13/2014 03:06:50 PM,2300 Block of JACKSON ST,San Francisco,94115,B04,38,3465,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7925215420346, -122.433726713407)",142862078-E38 -160984110,AM18,16039147,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:33:09 PM,04/07/2016 11:37:25 PM,04/07/2016 11:37:44 PM,04/07/2016 11:38:21 PM,04/07/2016 11:42:23 PM,04/08/2016 12:07:00 AM,04/08/2016 12:11:19 AM,Code 2 Transport,04/08/2016 01:00:30 AM,BELDEN PL/PINE ST,San Francisco,94104,B01,13,1235,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7917349839842, -122.403868716336)",160984110-AM18 -152140672,82,15081387,Medical Incident,08/02/2015,08/01/2015,08/02/2015 06:45:12 AM,08/02/2015 06:47:16 AM,08/02/2015 06:47:28 AM,08/02/2015 06:48:14 AM,08/02/2015 07:10:31 AM,08/02/2015 07:16:01 AM,08/02/2015 07:38:57 AM,Code 2 Transport,08/02/2015 08:21:47 AM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",152140672-82 -160942774,50,16037362,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 05:41:20 PM,04/03/2016 05:41:20 PM,04/03/2016 05:45:43 PM,04/03/2016 05:45:43 PM,04/03/2016 05:50:57 PM,04/03/2016 06:33:46 PM,04/03/2016 06:40:35 PM,Other,04/03/2016 07:00:36 PM,WEBSTER ST/GEARY BL,San Francisco,94115,B04,5,3432,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7845682402461, -122.431204945516)",160942774-50 -141710772,T05,14058972,Alarms,06/20/2014,06/20/2014,06/20/2014 08:35:04 AM,06/20/2014 08:36:23 AM,06/20/2014 08:36:40 AM,06/20/2014 08:38:01 AM,06/20/2014 08:41:15 AM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Fire,06/20/2014 08:53:46 AM,400 Block of GROVE ST,San Francisco,94102,B02,36,3315,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7776543498914, -122.423976044858)",141710772-T05 -141360158,B01,14046390,Alarms,05/16/2014,05/15/2014,05/16/2014 01:15:31 AM,05/16/2014 01:17:03 AM,05/16/2014 01:17:26 AM,05/16/2014 01:19:20 AM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/16/2014 01:22:54 AM,1100 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1445,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",141360158-B01 -153053559,T03,15117291,Medical Incident,11/01/2015,11/01/2015,11/01/2015 06:21:18 PM,11/01/2015 06:21:47 PM,11/01/2015 06:23:45 PM,11/01/2015 06:23:45 PM,11/01/2015 06:24:40 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 2 Transport,11/01/2015 06:28:45 PM,POWELL ST/OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",153053559-T03 -151740300,E09,15066263,Medical Incident,06/23/2015,06/22/2015,06/23/2015 03:30:50 AM,06/23/2015 03:31:21 AM,06/23/2015 03:31:51 AM,06/23/2015 03:33:33 AM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Code 2 Transport,06/23/2015 03:36:14 AM,EVANS AV/3RD ST,San Francisco,94124,B10,25,6457,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",151740300-E09 -160923567,58,16036617,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:34:13 PM,04/01/2016 09:36:16 PM,04/01/2016 09:36:45 PM,04/01/2016 09:38:07 PM,04/01/2016 09:46:40 PM,04/01/2016 10:04:43 PM,04/01/2016 10:21:58 PM,Code 2 Transport,04/01/2016 10:48:04 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160923567-58 -151081679,RA48,15040903,Medical Incident,04/18/2015,04/18/2015,04/18/2015 12:48:03 PM,04/18/2015 12:48:27 PM,04/18/2015 12:48:51 PM,04/18/2015 12:49:54 PM,04/18/2015 12:54:10 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Code 2 Transport,04/18/2015 01:40:00 PM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,3,E,3,false,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8299718852834, -122.374994903359)",151081679-RA48 -151093706,61,15041448,Medical Incident,04/19/2015,04/19/2015,04/19/2015 11:35:47 PM,04/19/2015 11:36:59 PM,04/19/2015 11:38:58 PM,04/19/2015 11:39:16 PM,04/19/2015 11:43:49 PM,04/20/2015 12:02:19 AM,04/20/2015 12:12:20 AM,Code 2 Transport,04/20/2015 12:52:13 AM,1300 Block of SILVER AVE,San Francisco,94134,B10,42,6356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,9,Portola,"(37.7313928327632, -122.409221235075)",151093706-61 -143580683,E41,14128038,Structure Fire,12/24/2014,12/23/2014,12/24/2014 07:52:28 AM,12/24/2014 07:53:03 AM,12/24/2014 07:53:10 AM,12/24/2014 07:55:13 AM,12/24/2014 07:57:54 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/24/2014 07:58:25 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,ENGINE,9,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",143580683-E41 -160952037,88,16037655,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:47:44 PM,04/04/2016 01:50:09 PM,04/04/2016 01:51:29 PM,04/04/2016 01:52:08 PM,04/04/2016 01:56:53 PM,04/04/2016 02:06:48 PM,04/04/2016 02:26:55 PM,Code 2 Transport,04/04/2016 03:05:38 PM,1100 Block of LAGUNA ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Western Addition,"(37.7818107490445, -122.427415796369)",160952037-88 -143212905,E18,14113754,Medical Incident,11/17/2014,11/17/2014,11/17/2014 06:12:25 PM,11/17/2014 06:14:03 PM,11/17/2014 06:14:38 PM,11/17/2014 06:17:37 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,Code 2 Transport,11/17/2014 06:36:19 PM,1400 Block of 42ND AVE,San Francisco,94122,B08,23,7631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7596774580307, -122.501641592848)",143212905-E18 -150593116,FD00A,15022664,,02/28/2015,02/28/2015,02/28/2015 07:41:43 PM,02/28/2015 07:43:05 PM,02/28/2015 08:59:43 PM,02/28/2015 08:59:43 PM,02/28/2015 08:59:43 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Code 2 Transport,02/28/2015 08:59:51 PM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,SUPPORT,3,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",150593116-FD00A -150823598,RS2,15031533,Medical Incident,03/23/2015,03/23/2015,03/23/2015 10:02:06 PM,03/23/2015 10:02:06 PM,03/23/2015 10:02:36 PM,03/23/2015 10:03:34 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/23/2015 10:03:42 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,6,9,Mission,"(37.7580927746489, -122.414684745421)",150823598-RS2 -153003218,52,15115247,Traffic Collision,10/27/2015,10/27/2015,10/27/2015 07:27:59 PM,10/27/2015 07:27:59 PM,10/27/2015 07:28:43 PM,10/27/2015 07:28:50 PM,10/27/2015 07:31:10 PM,10/27/2015 07:50:18 PM,10/27/2015 08:10:17 PM,Code 2 Transport,10/27/2015 08:57:29 PM,MASONIC AV/FELL ST,San Francisco,94117,B05,21,4464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",153003218-52 -160952309,RC1,16037666,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:52:54 PM,04/04/2016 02:54:45 PM,04/04/2016 02:55:26 PM,04/04/2016 02:55:35 PM,04/04/2016 02:57:59 PM,04/04/2016 03:18:32 PM,04/04/2016 03:24:26 PM,Code 3 Transport,04/04/2016 03:32:42 PM,POLK ST/SUTTER ST,San Francisco,94109,B04,3,3121,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",160952309-RC1 -142322176,E20,14080631,Medical Incident,08/20/2014,08/20/2014,08/20/2014 02:45:26 PM,08/20/2014 02:45:47 PM,08/20/2014 02:47:49 PM,08/20/2014 02:49:05 PM,08/20/2014 02:52:45 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Code 2 Transport,08/20/2014 03:03:56 PM,1900 Block of 8TH AVE,San Francisco,94116,B08,40,7337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7515718468596, -122.464361555507)",142322176-E20 -142932599,E03,14103442,Medical Incident,10/20/2014,10/20/2014,10/20/2014 05:26:14 PM,10/20/2014 05:27:37 PM,10/20/2014 05:28:43 PM,10/20/2014 05:30:16 PM,10/20/2014 05:34:56 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Code 3 Transport,10/20/2014 05:42:12 PM,500 Block of MASON ST,San Francisco,94102,B01,3,1412,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7885578121115, -122.410081316773)",142932599-E03 -151171962,77,15044253,Medical Incident,04/27/2015,04/27/2015,04/27/2015 01:44:45 PM,04/27/2015 01:45:27 PM,04/27/2015 01:45:32 PM,04/27/2015 01:46:39 PM,04/27/2015 02:04:01 PM,04/27/2015 02:04:03 PM,04/27/2015 02:22:45 PM,Code 2 Transport,04/27/2015 02:57:08 PM,3RD ST/MARKET ST,San Francisco,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",151171962-77 -152730135,T03,15104350,Vehicle Fire,09/30/2015,09/29/2015,09/30/2015 01:18:09 AM,09/30/2015 01:20:04 AM,09/30/2015 01:20:13 AM,09/30/2015 01:22:00 AM,09/30/2015 01:26:56 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 01:30:22 AM,LARKIN ST/ELLIS ST,San Francisco,94109,B02,3,1643,3,3,3,false,Fire,1,TRUCK,2,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",152730135-T03 -150562101,65,15021459,Traffic Collision,02/25/2015,02/25/2015,02/25/2015 02:11:38 PM,02/25/2015 02:14:01 PM,02/25/2015 02:15:27 PM,02/25/2015 02:15:41 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Other,02/25/2015 02:17:01 PM,HANOVER ST/ALLISON ST,San Francisco,94112,B09,43,6228,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.709945819398, -122.44059761357)",150562101-65 -152421785,B03,15092310,Alarms,08/30/2015,08/30/2015,08/30/2015 01:04:34 PM,08/30/2015 01:06:16 PM,08/30/2015 01:06:46 PM,08/30/2015 01:07:43 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 01:12:05 PM,100 Block of SPEAR ST,San Francisco,94105,B03,35,2114,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7919628053601, -122.393243014407)",152421785-B03 -152251530,89,15085738,Medical Incident,08/13/2015,08/13/2015,08/13/2015 11:36:56 AM,08/13/2015 11:38:22 AM,08/13/2015 11:38:30 AM,08/13/2015 11:38:36 AM,08/13/2015 11:57:12 AM,08/13/2015 12:05:03 PM,08/13/2015 12:25:33 PM,Code 2 Transport,08/13/2015 01:19:59 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",152251530-89 -160960809,KM08,16037924,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:45:02 AM,04/05/2016 08:47:15 AM,04/05/2016 08:48:36 AM,04/05/2016 08:48:56 AM,04/05/2016 09:01:31 AM,04/05/2016 09:20:59 AM,04/05/2016 09:30:04 AM,Code 2 Transport,04/05/2016 09:55:44 AM,1200 Block of TAYLOR ST,San Francisco,94108,B01,41,1444,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7938853056858, -122.41285182735)",160960809-KM08 -153380809,83,15129971,Medical Incident,12/04/2015,12/04/2015,12/04/2015 08:15:29 AM,12/04/2015 08:17:00 AM,12/04/2015 08:27:03 AM,12/04/2015 08:27:11 AM,12/04/2015 08:47:28 AM,12/04/2015 09:02:48 AM,12/04/2015 09:18:52 AM,Code 2 Transport,12/04/2015 09:58:40 AM,400 Block of POWELL ST,San Francisco,94108,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",153380809-83 -143143025,83,14111355,Medical Incident,11/10/2014,11/10/2014,11/10/2014 07:46:55 PM,11/10/2014 07:46:55 PM,11/10/2014 07:47:08 PM,11/10/2014 07:47:21 PM,11/10/2014 07:53:28 PM,11/10/2014 08:00:56 PM,11/10/2014 08:09:20 PM,Code 2 Transport,11/10/2014 08:27:36 PM,MARKET ST/CYRIL MAGNIN ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",143143025-83 -141993008,E11,14069025,Alarms,07/18/2014,07/18/2014,07/18/2014 07:31:41 PM,07/18/2014 07:33:15 PM,07/18/2014 07:33:46 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Fire,07/18/2014 07:35:33 PM,3900 Block of 25TH ST,San Francisco,94114,B06,11,5537,3,3,3,true,Alarm,1,ENGINE,2,6,8,Noe Valley,"(37.7500523856354, -122.428949812268)",141993008-E11 -160933014,85,16036992,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:01:08 PM,04/02/2016 07:01:47 PM,04/02/2016 07:03:24 PM,04/02/2016 07:03:34 PM,04/02/2016 07:13:13 PM,04/02/2016 07:29:04 PM,04/02/2016 08:01:01 PM,Code 2 Transport,04/02/2016 08:27:05 PM,2500 Block of 47TH AVE,San Francisco,94116,B08,23,7712,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.738934697003, -122.505425150748)",160933014-85 -152193655,E36,15083568,Medical Incident,08/07/2015,08/07/2015,08/07/2015 08:32:57 PM,08/07/2015 08:35:16 PM,08/07/2015 08:36:46 PM,08/07/2015 08:37:41 PM,08/07/2015 08:41:20 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Code 2 Transport,08/07/2015 08:45:23 PM,14TH ST/NOE ST,San Francisco,94114,B05,6,5212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7674615843561, -122.433408258777)",152193655-E36 -152960174,T15,15113580,Structure Fire,10/23/2015,10/22/2015,10/23/2015 01:35:09 AM,10/23/2015 01:35:22 AM,10/23/2015 01:35:45 AM,10/23/2015 01:38:29 AM,10/23/2015 01:41:26 AM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,Fire,10/23/2015 01:48:28 AM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152960174-T15 -150122704,FD00A,15004836,,01/12/2015,01/12/2015,01/12/2015 05:15:17 PM,01/12/2015 05:15:17 PM,01/12/2015 05:46:42 PM,01/12/2015 05:46:42 PM,01/12/2015 05:46:42 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Patient Declined Transport,01/12/2015 05:46:59 PM,500 Block of RAMSELL ST,San Francisco,94132,B09,15,8435,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,3,9,11,Oceanview/Merced/Ingleside,"(37.7206727205303, -122.466335197673)",150122704-FD00A -150970813,E15,15036680,Medical Incident,04/07/2015,04/07/2015,04/07/2015 08:45:57 AM,04/07/2015 08:47:44 AM,04/07/2015 08:49:30 AM,04/07/2015 08:50:52 AM,04/07/2015 08:54:19 AM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/07/2015 09:20:56 AM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7187894867461, -122.467075645919)",150970813-E15 -150383315,KM11,15014926,Medical Incident,02/07/2015,02/07/2015,02/07/2015 08:02:14 PM,02/07/2015 08:02:14 PM,02/07/2015 08:02:45 PM,02/07/2015 08:04:07 PM,02/07/2015 08:13:46 PM,02/07/2015 08:36:02 PM,02/07/2015 08:36:06 PM,Code 2 Transport,02/07/2015 09:03:57 PM,EVANS AV/QUINT ST,San Francisco,94124,B10,25,6442,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7440459305634, -122.390327942034)",150383315-KM11 -151782289,E13,15067807,Medical Incident,06/27/2015,06/27/2015,06/27/2015 03:18:56 PM,06/27/2015 03:21:36 PM,06/27/2015 03:22:23 PM,06/27/2015 03:23:48 PM,06/27/2015 03:29:15 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,No Merit,06/27/2015 03:35:36 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",151782289-E13 -151563182,E18,15059668,Medical Incident,06/05/2015,06/05/2015,06/05/2015 07:09:00 PM,06/05/2015 07:09:00 PM,06/05/2015 07:11:38 PM,06/05/2015 07:13:54 PM,06/05/2015 07:18:26 PM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Code 2 Transport,06/05/2015 07:37:37 PM,LA PLAYA/CABRILLO ST,San Francisco,94121,B07,34,7312,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",151563182-E18 -160950697,74,16037539,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:14:06 AM,04/04/2016 08:15:01 AM,04/04/2016 08:15:27 AM,04/04/2016 08:15:51 AM,04/04/2016 08:20:23 AM,04/04/2016 08:38:26 AM,04/04/2016 09:17:33 AM,Code 2 Transport,04/04/2016 09:56:58 AM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160950697-74 -153033792,T05,15116404,Medical Incident,10/30/2015,10/30/2015,10/30/2015 09:17:23 PM,10/30/2015 09:17:23 PM,10/30/2015 09:17:53 PM,10/30/2015 09:18:45 PM,10/30/2015 09:20:04 PM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Other,10/30/2015 09:37:19 PM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,E,3,false,Potentially Life-Threatening,1,TRUCK,1,5,5,Western Addition,"(37.7809710235348, -122.432166356987)",153033792-T05 -141740720,54,14059936,Medical Incident,06/23/2014,06/23/2014,06/23/2014 08:43:05 AM,06/23/2014 08:45:46 AM,06/23/2014 08:47:59 AM,06/23/2014 08:48:15 AM,06/23/2014 08:59:09 AM,06/23/2014 09:29:25 AM,06/23/2014 09:47:54 AM,Code 2 Transport,06/23/2014 10:21:35 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",141740720-54 -150251731,89,15009658,Medical Incident,01/25/2015,01/25/2015,01/25/2015 01:06:38 PM,01/25/2015 01:09:20 PM,01/25/2015 01:10:14 PM,01/25/2015 01:10:47 PM,01/25/2015 01:20:20 PM,01/25/2015 01:31:12 PM,01/25/2015 01:51:52 PM,Code 2 Transport,01/25/2015 02:31:24 PM,2300 Block of 12TH AVE,San Francisco,94116,B08,39,8615,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7437503336489, -122.468172282533)",150251731-89 -160960016,KM03,16037840,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:04:54 AM,04/05/2016 12:05:57 AM,04/05/2016 12:06:32 AM,04/05/2016 12:07:44 AM,04/05/2016 12:08:34 AM,04/05/2016 12:23:43 AM,04/05/2016 12:33:00 AM,Code 2 Transport,04/05/2016 01:03:58 AM,100 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7600190563185, -122.436104378198)",160960016-KM03 -141220065,E09,14041219,Medical Incident,05/02/2014,05/01/2014,05/02/2014 06:56:21 AM,05/02/2014 06:57:47 AM,05/02/2014 06:58:15 AM,05/02/2014 07:00:28 AM,05/02/2014 07:01:37 AM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 2 Transport,05/02/2014 07:11:19 AM,OAKDALE AV/BARNEVELD AV,SAN FRANCISCO,94124,B10,9,6377,,3,3,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.742036221716, -122.403451320675)",141220065-E09 -141813338,B09,14062820,Structure Fire,06/30/2014,06/30/2014,06/30/2014 08:48:46 PM,06/30/2014 08:48:46 PM,06/30/2014 08:50:12 PM,06/30/2014 08:51:22 PM,06/30/2014 08:54:02 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 09:06:13 PM,1000 Block of CAYUGA AVE,San Francisco,94112,B09,15,827,3,3,3,false,Alarm,1,CHIEF,3,9,11,Outer Mission,"(37.7218172447591, -122.439998899049)",141813338-B09 -151541107,T19,15058600,Medical Incident,06/03/2015,06/03/2015,06/03/2015 09:42:54 AM,06/03/2015 09:44:33 AM,06/03/2015 09:45:05 AM,06/03/2015 09:46:27 AM,06/03/2015 09:50:56 AM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/03/2015 10:10:06 AM,1800 Block of VICENTE ST,San Francisco,94116,B08,18,7523,3,3,3,false,Non Life-threatening,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",151541107-T19 -160970966,AM06,16038337,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:11:42 AM,04/06/2016 09:12:38 AM,04/06/2016 09:15:06 AM,04/06/2016 09:16:26 AM,04/06/2016 09:22:20 AM,04/06/2016 09:24:49 AM,04/06/2016 09:59:25 AM,Code 2 Transport,04/06/2016 10:31:01 AM,DON CHEE WY/THE EMBARCADERO SOU,San Francisco,94105,B03,35,2131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,3,Financial District/South Beach,"(37.7939616016202, -122.393514175717)",160970966-AM06 -141700184,E01,14058549,Medical Incident,06/19/2014,06/18/2014,06/19/2014 01:49:38 AM,06/19/2014 01:51:30 AM,06/19/2014 01:51:56 AM,06/19/2014 01:53:03 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Code 2 Transport,06/19/2014 01:54:26 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",141700184-E01 -161000836,54,16039669,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:27:15 AM,04/09/2016 08:28:17 AM,04/09/2016 08:29:58 AM,04/09/2016 08:29:58 AM,04/09/2016 08:41:08 AM,04/09/2016 08:57:59 AM,04/09/2016 09:02:07 AM,Code 3 Transport,04/09/2016 09:34:58 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",161000836-54 -160922284,81,16036497,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:36:29 PM,04/01/2016 03:38:39 PM,04/01/2016 03:39:24 PM,04/01/2016 03:39:31 PM,04/01/2016 03:46:39 PM,04/01/2016 04:09:43 PM,04/01/2016 04:40:42 PM,Code 2 Transport,04/01/2016 05:12:13 PM,100 Block of OAK ST,San Francisco,94102,B02,36,3266,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",160922284-81 -160970877,65,16038325,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:44:44 AM,04/06/2016 08:46:11 AM,04/06/2016 08:46:44 AM,04/06/2016 08:47:03 AM,04/06/2016 08:54:31 AM,04/06/2016 09:11:35 AM,04/06/2016 09:24:45 AM,Code 2 Transport,04/06/2016 09:51:27 AM,0 Block of BACHE ST,San Francisco,94110,B06,32,5751,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7344310637683, -122.417455922735)",160970877-65 -152262709,E03,15086224,Alarms,08/14/2015,08/14/2015,08/14/2015 04:57:33 PM,08/14/2015 04:59:37 PM,08/14/2015 04:59:53 PM,08/14/2015 05:00:31 PM,08/14/2015 05:01:28 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Fire,08/14/2015 05:14:07 PM,1200 Block of VAN NESS AVE,San Francisco,94109,B04,3,3161,3,3,3,true,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7868516471087, -122.421441956086)",152262709-E03 -141050127,KM02,14035366,Medical Incident,04/15/2014,04/15/2014,04/15/2014 10:20:18 AM,04/15/2014 10:21:39 AM,04/15/2014 10:22:41 AM,04/15/2014 10:22:41 AM,04/15/2014 10:34:54 AM,04/15/2014 10:53:59 AM,04/15/2014 11:07:00 AM,Code 2 Transport,04/15/2014 11:41:40 AM,STANYAN ST/HAIGHT ST,SAN FRANCISCO,94117,B05,12,4553,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",141050127-KM02 -160980182,76,16038741,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:22:41 AM,04/07/2016 01:24:34 AM,04/07/2016 01:25:11 AM,04/07/2016 01:25:19 AM,04/07/2016 01:26:02 AM,04/07/2016 01:51:21 AM,04/07/2016 02:01:28 AM,Code 2 Transport,04/07/2016 02:25:20 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160980182-76 -161001352,75,16039730,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:31:15 AM,04/09/2016 11:34:24 AM,04/09/2016 11:50:49 AM,04/09/2016 11:50:58 AM,04/09/2016 12:04:26 PM,04/09/2016 12:10:46 PM,04/09/2016 12:19:57 PM,Code 2 Transport,04/09/2016 12:57:32 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,5,6,9,Mission,"(37.7522394549791, -122.418445272851)",161001352-75 -151030201,57,15038796,Medical Incident,04/13/2015,04/12/2015,04/13/2015 01:54:43 AM,04/13/2015 01:55:36 AM,04/13/2015 01:56:40 AM,04/13/2015 01:56:45 AM,04/13/2015 02:04:12 AM,04/13/2015 02:59:42 AM,04/13/2015 03:15:30 AM,Code 2 Transport,04/13/2015 04:06:29 AM,100 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7843212349417, -122.38904057367)",151030201-57 -160951286,KM09,16037579,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:48:53 AM,04/04/2016 10:48:53 AM,04/04/2016 10:49:22 AM,04/04/2016 10:51:30 AM,04/04/2016 10:53:34 AM,04/04/2016 11:34:31 AM,04/04/2016 11:50:47 AM,Code 2 Transport,04/04/2016 12:35:36 PM,1200 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",160951286-KM09 -160973604,60,16038611,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:37:21 PM,04/06/2016 06:37:47 PM,04/06/2016 06:38:31 PM,04/06/2016 06:39:11 PM,04/06/2016 06:43:26 PM,04/06/2016 06:49:25 PM,04/06/2016 07:58:55 PM,Code 2 Transport,04/06/2016 08:24:42 PM,500 Block of ANDERSON ST,San Francisco,94110,B06,32,5743,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7365841998563, -122.415323005615)",160973604-60 -150680118,E14,15025834,Medical Incident,03/09/2015,03/08/2015,03/09/2015 01:18:06 AM,03/09/2015 01:18:06 AM,03/09/2015 01:18:51 AM,03/09/2015 01:21:06 AM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Code 2 Transport,03/09/2015 01:23:47 AM,8TH AV/ANZA ST,San Francisco,94118,B07,31,7135,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7789939330535, -122.466288099117)",150680118-E14 -141240183,RC1,14042025,Medical Incident,05/04/2014,05/04/2014,05/04/2014 02:34:20 PM,05/04/2014 02:35:34 PM,05/04/2014 02:36:54 PM,05/04/2014 02:38:02 PM,05/04/2014 02:41:47 PM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Code 2 Transport,05/04/2014 02:51:46 PM,TAYLOR ST/SUTTER ST,SAN FRANCISCO,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",141240183-RC1 -151542623,E01,15058762,Medical Incident,06/03/2015,06/03/2015,06/03/2015 04:23:36 PM,06/03/2015 04:25:39 PM,06/03/2015 04:26:47 PM,06/03/2015 04:28:43 PM,06/03/2015 04:36:11 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Patient Declined Transport,06/03/2015 04:37:41 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",151542623-E01 -151182443,58,15044680,Traffic Collision,04/28/2015,04/28/2015,04/28/2015 04:02:54 PM,04/28/2015 04:05:21 PM,04/28/2015 04:05:42 PM,04/28/2015 04:05:51 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,Code 2 Transport,04/28/2015 04:11:26 PM,100 Block of SICKLES AVE,San Francisco,94112,B09,33,6213,2,2,2,true,Non Life-threatening,1,MEDIC,4,9,11,Outer Mission,"(37.7099816740397, -122.454168047139)",151182443-58 -141850497,E36,14063921,Medical Incident,07/04/2014,07/03/2014,07/04/2014 05:55:45 AM,07/04/2014 05:58:51 AM,07/04/2014 05:59:27 AM,07/04/2014 06:01:41 AM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/04/2014 06:05:22 AM,100 Block of 8TH ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7768049355219, -122.41243633288)",141850497-E36 -143621978,E22,14129559,Medical Incident,12/28/2014,12/28/2014,12/28/2014 03:10:58 PM,12/28/2014 03:12:05 PM,12/28/2014 03:12:48 PM,12/28/2014 03:13:44 PM,12/28/2014 03:15:46 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Code 2 Transport,12/28/2014 03:35:32 PM,1500 Block of 19TH AVE,San Francisco,94122,B08,22,7423,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7588956344045, -122.476892326601)",143621978-E22 -160960372,78,16037885,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:10:28 AM,04/05/2016 05:11:53 AM,04/05/2016 05:12:00 AM,04/05/2016 05:12:08 AM,04/05/2016 05:19:03 AM,04/05/2016 05:31:09 AM,04/05/2016 05:46:33 AM,Code 2 Transport,04/05/2016 05:59:06 AM,900 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,3411,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7803481047255, -122.425362908015)",160960372-78 -160950848,AM06,16037552,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:01:00 AM,04/04/2016 09:01:31 AM,04/04/2016 09:01:48 AM,04/04/2016 09:04:55 AM,04/04/2016 09:06:14 AM,04/04/2016 09:39:29 AM,04/04/2016 09:49:30 AM,Code 3 Transport,04/04/2016 10:44:57 AM,900 Block of MONTEREY BLVD,San Francisco,94112,B09,15,8522,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7307000413939, -122.458446412646)",160950848-AM06 -141120046,T19,14037692,Structure Fire,04/22/2014,04/21/2014,04/22/2014 04:41:55 AM,04/22/2014 04:43:13 AM,04/22/2014 04:43:43 AM,04/22/2014 04:45:20 AM,04/22/2014 04:47:37 AM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Fire,04/22/2014 07:23:22 AM,0 Block of HIGUERA AVE,SAN FRANCISCO,94132,B08,19,8583,,3,3,false,Fire,1,TRUCK,1,8,7,Lakeshore,"(37.718486831483, -122.483889856765)",141120046-T19 -151790315,AM24,15068069,Medical Incident,06/28/2015,06/27/2015,06/28/2015 01:43:07 AM,06/28/2015 01:43:19 AM,06/28/2015 01:43:42 AM,06/28/2015 01:44:09 AM,06/28/2015 01:48:33 AM,06/28/2015 02:15:02 AM,06/28/2015 02:38:24 AM,Code 2 Transport,06/28/2015 03:08:02 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",151790315-AM24 -151462229,RC1,15055597,Medical Incident,05/26/2015,05/26/2015,05/26/2015 03:08:38 PM,05/26/2015 03:11:17 PM,05/26/2015 03:11:36 PM,05/26/2015 03:13:35 PM,05/26/2015 03:18:06 PM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Medical Examiner,05/26/2015 03:26:00 PM,1800 Block of GREEN ST,San Francisco,94123,B04,16,3354,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,4,2,Marina,"(37.7969417340573, -122.429558903607)",151462229-RC1 -151282148,E36,15048587,Medical Incident,05/08/2015,05/08/2015,05/08/2015 02:37:20 PM,05/08/2015 02:38:47 PM,05/08/2015 02:39:12 PM,05/08/2015 02:39:18 PM,05/08/2015 02:43:18 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Code 2 Transport,05/08/2015 02:47:58 PM,MCALLISTER ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",151282148-E36 -151831173,E06,15069796,Medical Incident,07/02/2015,07/02/2015,07/02/2015 09:45:25 AM,07/02/2015 09:45:43 AM,07/02/2015 09:46:26 AM,07/02/2015 09:49:45 AM,07/02/2015 09:51:26 AM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Cancelled,07/02/2015 09:55:21 AM,1500 Block of MISSION ST,San Francisco,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7737629752818, -122.417960394107)",151831173-E06 -161001667,AM02,16039774,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:23:17 PM,04/09/2016 01:24:04 PM,04/09/2016 01:24:17 PM,04/09/2016 01:25:05 PM,04/09/2016 01:29:48 PM,04/09/2016 01:36:41 PM,04/09/2016 02:02:40 PM,Code 2 Transport,04/09/2016 02:43:02 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7658582826035, -122.419816092644)",161001667-AM02 -160960787,74,16037922,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:40:05 AM,04/05/2016 08:43:02 AM,04/05/2016 08:43:41 AM,04/05/2016 08:44:27 AM,04/05/2016 08:54:58 AM,04/05/2016 09:11:00 AM,04/05/2016 09:28:42 AM,Code 2 Transport,04/05/2016 09:47:24 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7739392650435, -122.412947871011)",160960787-74 -143443060,E05,14122438,Alarms,12/10/2014,12/10/2014,12/10/2014 05:58:54 PM,12/10/2014 06:00:05 PM,12/10/2014 06:01:03 PM,12/10/2014 06:02:52 PM,12/10/2014 06:06:01 PM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Fire,12/10/2014 06:17:09 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",143443060-E05 -152093005,E06,15079759,Medical Incident,07/28/2015,07/28/2015,07/28/2015 06:15:17 PM,07/28/2015 06:16:15 PM,07/28/2015 06:19:48 PM,07/28/2015 06:21:56 PM,07/28/2015 06:27:01 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Unable to Locate,07/28/2015 06:30:16 PM,FILLMORE ST/WALLER ST,San Francisco,94117,B05,6,3526,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7711736845121, -122.430260806561)",152093005-E06 -150011168,E03,15000230,Medical Incident,01/01/2015,12/31/2014,01/01/2015 06:15:06 AM,01/01/2015 06:18:52 AM,01/01/2015 06:19:36 AM,01/01/2015 06:21:53 AM,01/01/2015 06:24:36 AM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Code 2 Transport,01/01/2015 06:50:09 AM,1400 Block of PINE ST,San Francisco,94109,B04,3,3122,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",150011168-E03 -141453517,55,14049977,Medical Incident,05/25/2014,05/25/2014,05/25/2014 11:09:38 PM,05/25/2014 11:11:14 PM,05/25/2014 11:11:53 PM,05/25/2014 11:12:10 PM,05/25/2014 11:14:26 PM,05/25/2014 11:35:49 PM,05/25/2014 11:54:17 PM,Code 2 Transport,05/26/2014 12:13:17 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",141453517-55 -143070639,RA48,14108512,Traffic Collision,11/03/2014,11/02/2014,11/03/2014 07:56:58 AM,11/03/2014 08:00:46 AM,11/03/2014 08:01:42 AM,11/03/2014 08:04:29 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/03/2014 08:32:11 AM,CALL BOX: FS YB-BLDG 213,Yerba Buena,94130,B03,48,2951,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",143070639-RA48 -153250531,KM03,15124988,Medical Incident,11/21/2015,11/20/2015,11/21/2015 04:49:29 AM,11/21/2015 04:50:58 AM,11/21/2015 04:51:15 AM,11/21/2015 04:51:44 AM,11/21/2015 05:01:09 AM,11/21/2015 05:22:31 AM,11/21/2015 05:41:25 AM,Code 2 Transport,11/21/2015 06:30:38 AM,300 Block of BUCHANAN ST,San Francisco,94102,B02,36,3422,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7727541133707, -122.4272776443)",153250531-KM03 -143442700,87,14122407,Medical Incident,12/10/2014,12/10/2014,12/10/2014 04:28:24 PM,12/10/2014 04:32:42 PM,12/10/2014 04:32:55 PM,12/10/2014 04:35:52 PM,12/10/2014 04:48:58 PM,12/10/2014 05:22:33 PM,12/10/2014 06:06:14 PM,Code 2 Transport,12/10/2014 06:31:08 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",143442700-87 -141732335,B02,14059754,Alarms,06/22/2014,06/22/2014,06/22/2014 05:05:45 PM,06/22/2014 05:07:42 PM,06/22/2014 05:07:53 PM,06/22/2014 05:09:05 PM,06/22/2014 05:13:38 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Fire,06/22/2014 05:21:30 PM,1600 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,3,3,false,Alarm,1,CHIEF,3,5,5,Lone Mountain/USF,"(37.7741999233828, -122.443568815049)",141732335-B02 -160961229,KM04,16037957,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:32:35 AM,04/05/2016 10:34:41 AM,04/05/2016 10:37:17 AM,04/05/2016 10:37:35 AM,04/05/2016 10:42:22 AM,04/05/2016 11:20:38 AM,04/05/2016 11:28:46 AM,Code 2 Transport,04/05/2016 12:09:09 PM,600 Block of 7TH AVE,San Francisco,94118,B07,31,7132,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7762499153191, -122.465079518655)",160961229-KM04 -160960279,85,16037868,Medical Incident,04/05/2016,04/04/2016,04/05/2016 03:31:02 AM,04/05/2016 03:35:00 AM,04/05/2016 03:35:16 AM,04/05/2016 03:35:39 AM,04/05/2016 03:45:14 AM,04/05/2016 03:58:27 AM,04/05/2016 04:15:54 AM,Code 2 Transport,04/05/2016 04:37:03 AM,600 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",160960279-85 -160921607,73,16036433,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:39:39 PM,04/01/2016 12:40:40 PM,04/01/2016 12:41:19 PM,04/01/2016 12:41:51 PM,04/01/2016 12:49:28 PM,04/01/2016 01:03:03 PM,04/01/2016 01:37:07 PM,Code 2 Transport,04/01/2016 01:55:45 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8084350175869, -122.410774214375)",160921607-73 -161003102,89,16039935,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:53:54 PM,04/09/2016 08:54:39 PM,04/09/2016 08:54:54 PM,04/09/2016 08:58:08 PM,04/09/2016 08:58:08 PM,04/09/2016 09:10:09 PM,04/09/2016 09:25:12 PM,Code 2 Transport,04/09/2016 09:58:08 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",161003102-89 -153233582,E03,15124434,Alarms,11/19/2015,11/19/2015,11/19/2015 07:41:46 PM,11/19/2015 07:43:08 PM,11/19/2015 07:46:34 PM,11/19/2015 07:48:05 PM,11/19/2015 07:51:19 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,Fire,11/19/2015 07:58:46 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",153233582-E03 -153434198,60,15132232,Medical Incident,12/09/2015,12/09/2015,12/09/2015 11:16:17 PM,12/09/2015 11:17:58 PM,12/09/2015 11:18:13 PM,12/09/2015 11:18:25 PM,12/09/2015 11:34:29 PM,12/09/2015 11:43:53 PM,12/09/2015 11:49:07 PM,Code 2 Transport,12/10/2015 12:25:45 AM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",153434198-60 -152581164,E32,15098589,Medical Incident,09/15/2015,09/15/2015,09/15/2015 09:51:26 AM,09/15/2015 09:52:23 AM,09/15/2015 09:53:00 AM,09/15/2015 09:53:14 AM,09/15/2015 09:57:03 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 2 Transport,09/15/2015 10:03:31 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",152581164-E32 -160930224,88,16036688,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:27:18 AM,04/02/2016 01:28:23 AM,04/02/2016 01:28:40 AM,04/02/2016 01:28:52 AM,04/02/2016 01:35:43 AM,04/02/2016 01:52:29 AM,04/02/2016 02:04:38 AM,Code 2 Transport,04/02/2016 02:52:31 AM,600 Block of 17TH AVE,San Francisco,94118,B07,31,7157,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7757636998422, -122.475750536294)",160930224-88 -150421151,E29,15016309,Traffic Collision,02/11/2015,02/11/2015,02/11/2015 09:58:42 AM,02/11/2015 09:59:17 AM,02/11/2015 10:00:25 AM,02/11/2015 10:02:06 AM,02/11/2015 10:10:33 AM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Code 2 Transport,02/11/2015 10:25:35 AM,100 Block of AVENUE C,San Francisco,94130,B02,29,2345,2,2,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",150421151-E29 -141851143,E38,14063994,Medical Incident,07/04/2014,07/04/2014,07/04/2014 11:27:28 AM,07/04/2014 11:28:53 AM,07/04/2014 11:29:45 AM,07/04/2014 11:30:32 AM,07/04/2014 11:38:35 AM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Code 2 Transport,07/04/2014 11:47:23 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",141851143-E38 -150501578,B04,15019297,Alarms,02/19/2015,02/19/2015,02/19/2015 12:16:37 PM,02/19/2015 12:18:00 PM,02/19/2015 12:18:17 PM,02/19/2015 12:19:48 PM,02/19/2015 12:24:28 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Fire,02/19/2015 12:30:46 PM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",150501578-B04 -151921804,52,15073294,Traffic Collision,07/11/2015,07/11/2015,07/11/2015 01:07:12 PM,07/11/2015 01:07:12 PM,07/11/2015 01:08:40 PM,07/11/2015 01:09:19 PM,07/11/2015 01:15:19 PM,07/11/2015 01:43:51 PM,07/11/2015 02:00:53 PM,Code 2 Transport,07/11/2015 02:30:01 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",151921804-52 -160962783,87,16038095,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:42:52 PM,04/05/2016 04:43:26 PM,04/05/2016 04:43:43 PM,04/05/2016 04:43:54 PM,04/05/2016 04:48:02 PM,04/05/2016 05:12:44 PM,04/05/2016 05:31:42 PM,Code 2 Transport,04/05/2016 06:07:16 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160962783-87 -142813415,67,14099030,Medical Incident,10/08/2014,10/08/2014,10/08/2014 09:00:49 PM,10/08/2014 09:02:03 PM,10/08/2014 09:04:10 PM,10/08/2014 09:04:20 PM,10/08/2014 09:19:03 PM,10/08/2014 09:30:06 PM,10/08/2014 10:04:21 PM,Code 2 Transport,10/08/2014 10:41:34 PM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",142813415-67 -141332058,81,14045359,Medical Incident,05/13/2014,05/13/2014,05/13/2014 02:38:05 PM,05/13/2014 02:39:48 PM,05/13/2014 02:40:33 PM,05/13/2014 02:40:41 PM,05/13/2014 02:50:50 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,Patient Declined Transport,05/13/2014 02:56:32 PM,300 Block of JEFFERSON ST,San Francisco,94133,B01,28,1524,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.807853999752, -122.418254964437)",141332058-81 -150182356,E08,15007171,Medical Incident,01/18/2015,01/18/2015,01/18/2015 04:49:35 PM,01/18/2015 04:50:55 PM,01/18/2015 04:52:35 PM,01/18/2015 04:53:21 PM,01/18/2015 04:54:09 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,No Merit,01/18/2015 04:58:35 PM,900 Block of 4TH ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7753672597362, -122.392898312211)",150182356-E08 -142570694,73,14089695,Structure Fire,09/14/2014,09/13/2014,09/14/2014 06:58:12 AM,09/14/2014 06:58:12 AM,09/14/2014 07:22:57 AM,09/14/2014 07:22:57 AM,09/14/2014 07:36:23 AM,09/14/2014 07:51:29 AM,09/14/2014 08:10:05 AM,Code 2 Transport,09/14/2014 08:29:38 AM,COLUMBUS AV/UNION ST,San Francisco,94133,B01,28,1334,3,3,3,true,Alarm,1,MEDIC,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",142570694-73 -142410382,2R01,14083724,,08/29/2014,08/28/2014,08/29/2014 03:28:47 AM,08/29/2014 03:31:26 AM,08/29/2014 05:07:12 AM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,Code 2 Transport,08/29/2014 05:07:19 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,ADMIN,0,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",142410382-2R01 -160982243,82,16038957,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:23:37 PM,04/07/2016 02:24:13 PM,04/07/2016 02:25:01 PM,04/07/2016 02:25:39 PM,04/07/2016 02:45:47 PM,04/07/2016 03:13:17 PM,04/07/2016 03:35:23 PM,Code 2 Transport,04/07/2016 04:19:08 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",160982243-82 -161001012,71,16039683,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:38:19 AM,04/09/2016 09:39:34 AM,04/09/2016 09:39:45 AM,04/09/2016 09:39:52 AM,04/09/2016 09:43:56 AM,04/09/2016 10:11:04 AM,04/09/2016 10:20:40 AM,Code 2 Transport,04/09/2016 10:49:24 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",161001012-71 -150911220,T16,15034557,Water Rescue,04/01/2015,04/01/2015,04/01/2015 10:45:17 AM,04/01/2015 10:45:17 AM,04/01/2015 10:51:20 AM,04/01/2015 10:51:20 AM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Fire,04/01/2015 11:37:43 AM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,TRUCK,11,7,2,Presidio,"(37.8066581989584, -122.47471662098)",150911220-T16 -153192749,B07,15122759,Medical Incident,11/15/2015,11/15/2015,11/15/2015 05:35:16 PM,11/15/2015 05:35:56 PM,11/15/2015 05:38:04 PM,11/15/2015 05:38:58 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Code 2 Transport,11/15/2015 05:45:09 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,E,3,false,Potentially Life-Threatening,1,CHIEF,4,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",153192749-B07 -152940960,82,15112884,Medical Incident,10/21/2015,10/21/2015,10/21/2015 08:51:55 AM,10/21/2015 08:51:55 AM,10/21/2015 08:52:06 AM,10/21/2015 08:52:26 AM,10/21/2015 09:07:31 AM,10/21/2015 09:23:35 AM,10/21/2015 09:31:48 AM,Code 2 Transport,10/21/2015 10:11:31 AM,BUENA VISTA AV W/HAIGHT ST,San Francisco,94117,B05,21,4353,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7704695388214, -122.443311687099)",152940960-82 -143332126,KM10,14118054,Medical Incident,11/29/2014,11/29/2014,11/29/2014 03:20:16 PM,11/29/2014 03:21:33 PM,11/29/2014 03:22:09 PM,11/29/2014 03:25:41 PM,11/29/2014 03:27:50 PM,11/29/2014 04:16:53 PM,11/29/2014 04:17:06 PM,Code 2 Transport,11/29/2014 04:42:42 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",143332126-KM10 -160921385,AM08,16036406,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:32:29 AM,04/01/2016 11:34:08 AM,04/01/2016 11:34:25 AM,04/01/2016 11:35:17 AM,04/01/2016 11:42:01 AM,04/01/2016 11:51:12 AM,04/01/2016 12:18:11 PM,Code 2 Transport,04/01/2016 01:00:31 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160921385-AM08 -151581198,E04,15060288,Alarms,06/07/2015,06/07/2015,06/07/2015 10:16:37 AM,06/07/2015 10:17:22 AM,06/07/2015 10:18:25 AM,06/07/2015 10:18:25 AM,06/07/2015 10:21:29 AM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Fire,06/07/2015 10:27:44 AM,1100 Block of MARIPOSA ST,San Francisco,94107,B03,29,2431,3,3,3,false,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7639902811821, -122.39520057273)",151581198-E04 -160951946,56,16037646,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:29:18 PM,04/04/2016 01:30:42 PM,04/04/2016 01:34:29 PM,04/04/2016 01:34:41 PM,04/04/2016 01:38:20 PM,04/04/2016 01:51:08 PM,04/04/2016 02:12:16 PM,Code 2 Transport,04/04/2016 02:55:29 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,3,3,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160951946-56 -152433519,E07,15092846,Other,08/31/2015,08/31/2015,08/31/2015 07:43:36 PM,08/31/2015 07:48:17 PM,08/31/2015 07:48:40 PM,08/31/2015 07:51:22 PM,08/31/2015 07:53:25 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Fire,08/31/2015 08:11:02 PM,3300 Block of 20TH ST,San Francisco,94110,B06,7,5447,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7587424639071, -122.416320644866)",152433519-E07 -153473232,KM03,15133849,Medical Incident,12/13/2015,12/13/2015,12/13/2015 09:08:30 PM,12/13/2015 09:11:35 PM,12/13/2015 09:11:56 PM,12/13/2015 09:12:18 PM,12/13/2015 09:19:08 PM,12/13/2015 09:39:33 PM,12/13/2015 09:55:44 PM,Code 2 Transport,12/13/2015 10:36:42 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",153473232-KM03 -160984100,AM20,16039146,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:30:27 PM,04/07/2016 11:31:06 PM,04/07/2016 11:31:52 PM,04/07/2016 11:32:31 PM,04/08/2016 12:01:20 AM,04/08/2016 12:01:23 AM,04/08/2016 12:07:40 AM,Code 2 Transport,04/08/2016 12:58:26 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160984100-AM20 -152894135,AM18,15111237,Medical Incident,10/16/2015,10/16/2015,10/16/2015 11:08:14 PM,10/16/2015 11:09:54 PM,10/16/2015 11:10:11 PM,10/16/2015 11:10:46 PM,10/16/2015 11:14:21 PM,10/16/2015 11:29:52 PM,10/16/2015 11:43:03 PM,Code 2 Transport,10/17/2015 12:11:16 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",152894135-AM18 -143011048,E14,14106211,Medical Incident,10/28/2014,10/28/2014,10/28/2014 09:49:14 AM,10/28/2014 09:50:22 AM,10/28/2014 09:51:09 AM,10/28/2014 09:54:12 AM,10/28/2014 09:54:12 AM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Code 2 Transport,10/28/2014 10:11:12 AM,200 Block of 21ST AVE,San Francisco,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7831476181283, -122.480588567897)",143011048-E14 -152262129,70,15086163,Traffic Collision,08/14/2015,08/14/2015,08/14/2015 02:27:36 PM,08/14/2015 02:27:36 PM,08/14/2015 02:28:31 PM,08/14/2015 02:28:42 PM,08/14/2015 02:33:05 PM,08/14/2015 02:56:59 PM,08/14/2015 03:02:41 PM,Code 2 Transport,08/14/2015 04:04:58 PM,OLYMPIA WY/CLARENDON AV,San Francisco,94131,B08,20,5351,2,2,2,true,Non Life-threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7514833140805, -122.456448432223)",152262129-70 -150753181,AM16,15028910,Medical Incident,03/16/2015,03/16/2015,03/16/2015 06:55:01 PM,03/16/2015 06:57:37 PM,03/16/2015 06:58:06 PM,03/16/2015 06:58:26 PM,03/16/2015 07:20:28 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Cancelled,03/16/2015 07:28:11 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",150753181-AM16 -150690899,T01,15026279,Alarms,03/10/2015,03/10/2015,03/10/2015 09:02:55 AM,03/10/2015 09:03:57 AM,03/10/2015 09:04:06 AM,03/10/2015 09:05:09 AM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Fire,03/10/2015 09:08:57 AM,0 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,3,2,6,South of Market,"(37.7795700115888, -122.411484015918)",150690899-T01 -143171311,E29,14112241,Medical Incident,11/13/2014,11/13/2014,11/13/2014 10:52:18 AM,11/13/2014 10:54:42 AM,11/13/2014 10:54:46 AM,11/13/2014 10:55:09 AM,11/13/2014 11:03:07 AM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Code 2 Transport,11/13/2014 11:03:13 AM,POTRERO AV/16TH ST,San Francisco,94103,B02,29,2351,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",143171311-E29 -160991085,84,16039245,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:09:15 AM,04/08/2016 10:13:54 AM,04/08/2016 10:15:18 AM,04/08/2016 10:15:32 AM,04/08/2016 10:51:32 AM,04/08/2016 10:51:34 AM,04/08/2016 11:12:02 AM,Code 2 Transport,04/08/2016 11:59:04 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",160991085-84 -152631047,MCU2,15100567,Other,09/20/2015,09/20/2015,09/20/2015 08:53:28 AM,09/20/2015 08:53:36 AM,09/20/2015 09:45:07 AM,09/20/2015 09:45:07 AM,09/20/2015 10:03:08 AM,04/25/2016 01:08:14 PM,04/25/2016 01:08:14 PM,Other,09/20/2015 11:15:01 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,3,3,false,Potentially Life-Threatening,1,SUPPORT,11,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",152631047-MCU2 -142762728,KM07,14097018,Medical Incident,10/03/2014,10/03/2014,10/03/2014 04:39:14 PM,10/03/2014 04:40:49 PM,10/03/2014 04:41:40 PM,10/03/2014 04:43:52 PM,10/03/2014 04:47:46 PM,10/03/2014 05:12:01 PM,10/03/2014 05:40:20 PM,Code 2 Transport,10/03/2014 06:10:15 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",142762728-KM07 -142103279,74,14072928,Medical Incident,07/29/2014,07/29/2014,07/29/2014 09:00:32 PM,07/29/2014 09:00:32 PM,07/29/2014 09:01:04 PM,07/29/2014 09:01:42 PM,07/29/2014 09:44:10 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Patient Declined Transport,07/29/2014 10:01:20 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",142103279-74 -151933444,75,15073814,Medical Incident,07/12/2015,07/12/2015,07/12/2015 09:13:01 PM,07/12/2015 09:13:01 PM,07/12/2015 09:25:27 PM,07/12/2015 09:25:48 PM,07/12/2015 09:33:52 PM,07/12/2015 09:50:02 PM,07/12/2015 10:17:48 PM,Code 2 Transport,07/12/2015 10:53:06 PM,WEST PORTAL AV/ULLOA ST,San Francisco,94127,B08,39,8611,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7408919760876, -122.465829021907)",151933444-75 -142161276,66,14074862,Medical Incident,08/04/2014,08/04/2014,08/04/2014 11:12:50 AM,08/04/2014 11:12:50 AM,08/04/2014 11:13:05 AM,08/04/2014 11:13:18 AM,08/04/2014 11:17:01 AM,08/04/2014 11:53:33 AM,08/04/2014 12:25:34 PM,Code 2 Transport,08/04/2014 12:52:17 PM,300 Block of 19TH AVE,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7813416538301, -122.478443283523)",142161276-66 -152763463,56,15105952,Traffic Collision,10/03/2015,10/03/2015,10/03/2015 07:43:43 PM,10/03/2015 07:46:07 PM,10/03/2015 07:46:57 PM,10/03/2015 07:47:06 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,No Merit,10/03/2015 07:59:38 PM,80WB TREASURE IS YBI OF/TREASURE ISLAND,,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.808751194197, -122.363085459246)",152763463-56 -141480561,89,14050728,Medical Incident,05/28/2014,05/27/2014,05/28/2014 07:24:39 AM,05/28/2014 07:27:06 AM,05/28/2014 07:27:20 AM,05/28/2014 07:28:15 AM,05/28/2014 07:34:40 AM,05/28/2014 07:52:32 AM,05/28/2014 07:59:52 AM,Code 2 Transport,05/28/2014 08:39:02 AM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",141480561-89 -160954116,70,16037829,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:17:27 PM,04/04/2016 11:18:26 PM,04/04/2016 11:18:40 PM,04/04/2016 11:18:47 PM,04/04/2016 11:25:20 PM,04/04/2016 11:45:18 PM,04/04/2016 11:56:00 PM,Code 2 Transport,04/05/2016 12:33:54 AM,2100 Block of BAY SHORE BLVD,San Francisco,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7125905955403, -122.401535804486)",160954116-70 -143353343,E42,14118847,Alarms,12/01/2014,12/01/2014,12/01/2014 07:54:59 PM,12/01/2014 07:56:10 PM,12/01/2014 07:56:34 PM,12/01/2014 07:58:09 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Fire,12/01/2014 08:09:29 PM,3500 Block of KEITH ST,San Francisco,94124,B10,44,6542,3,3,3,true,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7188802225041, -122.398748103076)",143353343-E42 -143191208,82,14112930,Traffic Collision,11/15/2014,11/15/2014,11/15/2014 10:37:22 AM,11/15/2014 10:38:27 AM,11/15/2014 10:39:13 AM,11/15/2014 10:44:56 AM,11/15/2014 10:50:08 AM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Patient Declined Transport,11/15/2014 12:10:12 PM,SLOAT BL/47TH AV,San Francisco,94132,B08,23,7733,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7354752888502, -122.50525735067)",143191208-82 -143413328,T16,14121306,Structure Fire,12/07/2014,12/07/2014,12/07/2014 09:17:07 PM,12/07/2014 09:17:07 PM,12/07/2014 09:17:55 PM,12/07/2014 09:19:02 PM,04/25/2016 01:13:35 PM,04/25/2016 01:13:35 PM,04/25/2016 01:13:35 PM,Fire,12/07/2014 09:21:28 PM,FRANKLIN ST/GREENWICH ST,San Francisco,94123,B04,16,3234,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8002062474722, -122.426001248596)",143413328-T16 -160982175,KM05,16038947,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:07:17 PM,04/07/2016 02:07:17 PM,04/07/2016 02:07:25 PM,04/07/2016 02:08:06 PM,04/07/2016 02:14:01 PM,04/07/2016 02:26:24 PM,04/07/2016 02:30:34 PM,Code 2 Transport,04/07/2016 03:08:15 PM,700 Block of 6TH AVE,San Francisco,94118,B07,31,7132,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7744933641566, -122.463881451148)",160982175-KM05 -150090007,AM16,15003376,Medical Incident,01/09/2015,01/08/2015,01/09/2015 12:03:30 AM,01/09/2015 12:04:06 AM,01/09/2015 12:05:04 AM,01/09/2015 12:06:06 AM,01/09/2015 12:14:16 AM,01/09/2015 12:27:00 AM,01/09/2015 12:42:00 AM,Code 2 Transport,01/09/2015 01:15:43 AM,0 Block of WAWONA ST,San Francisco,94127,B08,39,8616,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.742433820104, -122.466218709113)",150090007-AM16 -160981638,KM12,16038894,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:47:25 AM,04/07/2016 11:49:52 AM,04/07/2016 11:51:19 AM,04/07/2016 11:52:12 AM,04/07/2016 11:55:16 AM,04/07/2016 12:04:10 PM,04/07/2016 12:22:31 PM,Code 2 Transport,04/07/2016 01:01:30 PM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",160981638-KM12 -160970054,KM03,16038243,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:21:04 AM,04/06/2016 12:21:44 AM,04/06/2016 12:21:52 AM,04/06/2016 12:22:21 AM,04/06/2016 12:32:07 AM,04/06/2016 12:43:40 AM,04/06/2016 12:54:50 AM,Code 2 Transport,04/06/2016 01:31:52 AM,1300 Block of 7TH AVE,San Francisco,94122,B08,22,7332,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,5,Inner Sunset,"(37.7632029010129, -122.464037930237)",160970054-KM03 -160921504,E02,16036420,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:05:50 PM,04/01/2016 12:07:41 PM,04/01/2016 12:08:37 PM,04/01/2016 12:12:35 PM,04/01/2016 12:12:35 PM,04/01/2016 12:31:27 PM,04/01/2016 12:44:13 PM,Code 3 Transport,04/01/2016 12:45:36 PM,100 Block of VARENNES ST,San Francisco,94133,B01,28,1252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8012139505767, -122.406825918153)",160921504-E02 -150892012,AM02,15033991,Medical Incident,03/30/2015,03/30/2015,03/30/2015 02:39:30 PM,03/30/2015 02:42:13 PM,03/30/2015 02:54:56 PM,03/30/2015 02:55:27 PM,03/30/2015 03:08:25 PM,03/30/2015 04:03:06 PM,03/30/2015 04:40:13 PM,Code 2 Transport,03/30/2015 05:04:45 PM,1700 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7362394819721, -122.393112998589)",150892012-AM02 -150572548,KM06,15021849,Medical Incident,02/26/2015,02/26/2015,02/26/2015 04:35:15 PM,02/26/2015 04:36:03 PM,02/26/2015 04:36:54 PM,02/26/2015 04:42:03 PM,02/26/2015 04:42:03 PM,02/26/2015 04:57:33 PM,02/26/2015 05:09:29 PM,Code 2 Transport,02/26/2015 06:15:10 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",150572548-KM06 -151431418,B09,15054347,Structure Fire,05/23/2015,05/23/2015,05/23/2015 11:20:03 AM,05/23/2015 11:21:44 AM,05/23/2015 11:22:10 AM,05/23/2015 11:22:42 AM,05/23/2015 11:26:34 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Fire,05/23/2015 11:35:30 AM,200 Block of BRIGHT ST,San Francisco,94132,B09,33,8414,3,3,3,false,Alarm,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7152184350977, -122.463441226301)",151431418-B09 -150921726,E32,15034987,Structure Fire,04/02/2015,04/02/2015,04/02/2015 01:01:02 PM,04/02/2015 01:01:29 PM,04/02/2015 01:07:26 PM,04/02/2015 01:08:33 PM,04/02/2015 01:15:15 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Fire,04/02/2015 01:35:55 PM,1400 Block of VAN DYKE AVE,San Francisco,94124,B10,17,6651,3,3,3,false,Fire,2,ENGINE,11,10,10,Bayview Hunters Point,"(37.7275267994511, -122.389650111212)",150921726-E32 -143492961,KM02,14124757,Medical Incident,12/15/2014,12/15/2014,12/15/2014 07:53:47 PM,12/15/2014 07:55:38 PM,12/15/2014 07:56:18 PM,12/15/2014 07:57:33 PM,12/15/2014 08:00:00 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Medical Examiner,12/15/2014 08:48:30 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",143492961-KM02 -152993184,87,15114895,Medical Incident,10/26/2015,10/26/2015,10/26/2015 06:38:35 PM,10/26/2015 06:38:35 PM,10/26/2015 06:39:05 PM,10/26/2015 06:39:12 PM,10/26/2015 06:48:05 PM,10/26/2015 07:10:47 PM,10/26/2015 07:32:43 PM,Code 2 Transport,10/26/2015 08:00:35 PM,7TH ST/NATOMA ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7784162815142, -122.409938240258)",152993184-87 -143542426,E38,14126532,Vehicle Fire,12/20/2014,12/20/2014,12/20/2014 01:18:19 PM,12/20/2014 01:20:56 PM,12/20/2014 01:21:30 PM,12/20/2014 01:22:42 PM,12/20/2014 01:25:10 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Fire,12/20/2014 01:29:49 PM,2000 Block of LOMBARD ST,San Francisco,94123,B04,16,3461,3,3,3,false,Fire,1,ENGINE,2,4,2,Marina,"(37.7998309235227, -122.435201947883)",143542426-E38 -142643657,T07,14092542,Alarms,09/21/2014,09/21/2014,09/21/2014 11:48:40 PM,09/21/2014 11:49:52 PM,09/21/2014 11:50:05 PM,09/21/2014 11:51:37 PM,09/21/2014 11:53:45 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Fire,09/22/2014 12:05:02 AM,700 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.7609052657931, -122.421432818786)",142643657-T07 -152052283,AM02,15078128,Medical Incident,07/24/2015,07/24/2015,07/24/2015 03:05:01 PM,07/24/2015 03:06:21 PM,07/24/2015 03:06:48 PM,07/24/2015 03:07:25 PM,07/24/2015 03:21:09 PM,07/24/2015 03:41:55 PM,04/25/2016 01:09:18 PM,Code 2 Transport,07/24/2015 04:28:44 PM,BUENA VISTA AV E/HAIGHT ST,San Francisco,94117,B05,21,4247,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7704695388214, -122.443311687099)",152052283-AM02 -153242138,57,15124708,Medical Incident,11/20/2015,11/20/2015,11/20/2015 01:43:18 PM,11/20/2015 01:43:41 PM,11/20/2015 01:53:36 PM,11/20/2015 01:54:32 PM,11/20/2015 02:01:53 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,Code 2 Transport,11/20/2015 02:38:47 PM,400 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7912932514009, -122.398614610411)",153242138-57 -150490847,64,15018880,Medical Incident,02/18/2015,02/18/2015,02/18/2015 08:33:04 AM,02/18/2015 08:34:14 AM,02/18/2015 08:37:12 AM,02/18/2015 08:37:27 AM,02/18/2015 09:07:49 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Unable to Locate,02/18/2015 09:12:28 AM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.797627561244, -122.408618845707)",150490847-64 -160922116,73,16036476,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 02:54:35 PM,04/01/2016 02:54:35 PM,04/01/2016 02:54:56 PM,04/01/2016 02:56:16 PM,04/01/2016 02:56:45 PM,04/01/2016 03:15:55 PM,04/01/2016 03:42:54 PM,Code 2 Transport,04/01/2016 04:32:12 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160922116-73 -152601289,E31,15099311,Medical Incident,09/17/2015,09/17/2015,09/17/2015 10:35:24 AM,09/17/2015 10:36:22 AM,09/17/2015 10:36:50 AM,09/17/2015 10:38:29 AM,09/17/2015 10:40:31 AM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Code 2 Transport,09/17/2015 10:45:13 AM,GEARY BL/6TH AV,San Francisco,94118,B07,31,7124,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7810189207549, -122.464279168827)",152601289-E31 -160983419,70,16039084,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:38:15 PM,04/07/2016 07:39:34 PM,04/07/2016 07:39:46 PM,04/07/2016 07:39:56 PM,04/07/2016 07:43:32 PM,04/07/2016 07:54:52 PM,04/07/2016 08:07:32 PM,Code 2 Transport,04/07/2016 08:51:07 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.797897750793, -122.40685252573)",160983419-70 -141460702,82,14050065,Medical Incident,05/26/2014,05/26/2014,05/26/2014 08:20:37 AM,05/26/2014 08:22:00 AM,05/26/2014 08:22:31 AM,05/26/2014 08:22:42 AM,05/26/2014 08:27:44 AM,05/26/2014 08:53:09 AM,05/26/2014 09:16:34 AM,Code 2 Transport,05/26/2014 09:46:02 AM,600 Block of SUTTER ST,San Francisco,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",141460702-82 -160983209,AM20,16039068,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:35:39 PM,04/07/2016 06:39:07 PM,04/07/2016 06:39:20 PM,04/07/2016 06:39:46 PM,04/07/2016 07:02:11 PM,04/07/2016 07:12:35 PM,04/07/2016 07:33:18 PM,Code 2 Transport,04/07/2016 07:59:44 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,2,3,3,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7658666581108, -122.419678114931)",160983209-AM20 -142511359,T17,14087520,Medical Incident,09/08/2014,09/08/2014,09/08/2014 11:46:53 AM,09/08/2014 11:49:01 AM,09/08/2014 11:49:24 AM,09/08/2014 11:50:55 AM,09/08/2014 11:53:26 AM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,Code 2 Transport,09/08/2014 11:53:48 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",142511359-T17 -142592586,E02,14090568,Medical Incident,09/16/2014,09/16/2014,09/16/2014 04:52:23 PM,09/16/2014 04:52:48 PM,09/16/2014 04:53:15 PM,09/16/2014 04:54:18 PM,09/16/2014 04:57:32 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Code 2 Transport,09/16/2014 05:32:31 PM,BEACH ST/GRANT AV,San Francisco,94133,B01,28,1262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8081107530325, -122.409050496518)",142592586-E02 -152033792,KM07,15077536,Medical Incident,07/22/2015,07/22/2015,07/22/2015 10:52:14 PM,07/22/2015 10:52:14 PM,07/22/2015 11:00:47 PM,07/22/2015 11:01:26 PM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,Cancelled,07/22/2015 11:07:57 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",152033792-KM07 -151731830,62,15066067,Medical Incident,06/22/2015,06/22/2015,06/22/2015 02:18:00 PM,06/22/2015 02:19:58 PM,06/22/2015 02:20:30 PM,06/22/2015 02:20:36 PM,06/22/2015 02:20:36 PM,06/22/2015 02:38:05 PM,06/22/2015 02:55:39 PM,Code 2 Transport,06/22/2015 03:18:30 PM,4TH ST/HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",151731830-62 -151610257,B09,15061376,Alarms,06/10/2015,06/09/2015,06/10/2015 02:54:20 AM,06/10/2015 02:56:15 AM,06/10/2015 02:56:22 AM,06/10/2015 02:58:11 AM,06/10/2015 03:04:57 AM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Fire,06/10/2015 03:21:46 AM,400 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",151610257-B09 -153470579,B02,15133542,Alarms,12/13/2015,12/12/2015,12/13/2015 05:03:39 AM,12/13/2015 05:04:56 AM,12/13/2015 05:05:45 AM,12/13/2015 05:08:28 AM,12/13/2015 05:12:10 AM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Fire,12/13/2015 05:17:12 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",153470579-B02 -142683123,74,14094060,Medical Incident,09/25/2014,09/25/2014,09/25/2014 07:30:07 PM,09/25/2014 07:31:00 PM,09/25/2014 07:31:26 PM,09/25/2014 07:31:41 PM,09/25/2014 07:35:35 PM,09/25/2014 08:08:13 PM,09/25/2014 08:19:18 PM,Code 2 Transport,09/25/2014 08:46:07 PM,100 Block of VALENCIA ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7707354654507, -122.422376576245)",142683123-74 -141980878,E03,14068483,Medical Incident,07/17/2014,07/17/2014,07/17/2014 08:46:48 AM,07/17/2014 08:48:32 AM,07/17/2014 08:49:10 AM,07/17/2014 08:50:30 AM,07/17/2014 08:53:14 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 2 Transport,07/17/2014 09:10:18 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",141980878-E03 -153054461,D2,15117388,Structure Fire,11/01/2015,11/01/2015,11/01/2015 11:18:17 PM,11/01/2015 11:18:55 PM,11/01/2015 11:19:29 PM,11/01/2015 11:20:43 PM,11/01/2015 11:24:06 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/01/2015 11:24:23 PM,900 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,false,Alarm,1,CHIEF,5,4,3,Nob Hill,"(37.787277154617, -122.416825199786)",153054461-D2 -152511458,81,15095843,Medical Incident,09/08/2015,09/08/2015,09/08/2015 11:00:16 AM,09/08/2015 11:00:16 AM,09/08/2015 11:01:17 AM,09/08/2015 11:01:48 AM,09/08/2015 11:21:58 AM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Patient Declined Transport,09/08/2015 12:37:38 PM,4000 Block of JUDAH ST,San Francisco,94122,B08,23,7655,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7603932695375, -122.505388569418)",152511458-81 -143444076,T13,14122525,Citizen Assist / Service Call,12/10/2014,12/10/2014,12/10/2014 11:10:22 PM,12/10/2014 11:12:21 PM,12/10/2014 11:12:54 PM,12/10/2014 11:15:07 PM,12/10/2014 11:17:26 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/10/2014 11:29:26 PM,500 Block of MARKET ST,San Francisco,94104,B01,13,1236,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7905865694353, -122.399877480803)",143444076-T13 -143351551,77,14118692,Medical Incident,12/01/2014,12/01/2014,12/01/2014 12:15:15 PM,12/01/2014 12:16:55 PM,12/01/2014 12:17:10 PM,12/01/2014 12:18:07 PM,12/01/2014 12:23:29 PM,12/01/2014 12:42:07 PM,12/01/2014 01:16:26 PM,Code 2 Transport,12/01/2014 02:00:57 PM,6100 Block of FULTON ST,San Francisco,94122,B07,34,7253,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7719526452281, -122.496505445596)",143351551-77 -143470438,E17,14123639,Medical Incident,12/13/2014,12/12/2014,12/13/2014 02:49:35 AM,12/13/2014 02:50:40 AM,12/13/2014 02:50:50 AM,12/13/2014 02:54:13 AM,12/13/2014 02:58:03 AM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Fire,12/13/2014 03:15:48 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",143470438-E17 -142033408,E12,14070398,Medical Incident,07/22/2014,07/22/2014,07/22/2014 09:29:53 PM,07/22/2014 09:31:14 PM,07/22/2014 09:31:24 PM,07/22/2014 09:32:09 PM,07/22/2014 09:34:09 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Code 2 Transport,07/22/2014 09:46:16 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",142033408-E12 -150700489,KM03,15026623,Medical Incident,03/11/2015,03/10/2015,03/11/2015 06:07:57 AM,03/11/2015 06:08:54 AM,03/11/2015 06:09:13 AM,03/11/2015 06:09:51 AM,03/11/2015 06:14:19 AM,03/11/2015 06:47:26 AM,03/11/2015 06:53:19 AM,Code 2 Transport,03/11/2015 07:16:51 AM,300 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7668035178194, -122.440704687809)",150700489-KM03 -141591967,E36,14054841,Medical Incident,06/08/2014,06/08/2014,06/08/2014 03:35:45 PM,06/08/2014 03:36:23 PM,06/08/2014 03:37:07 PM,06/08/2014 03:38:32 PM,06/08/2014 03:43:28 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Code 2 Transport,06/08/2014 03:46:53 PM,HYDE ST/MCALLISTER ST,San Francisco,94102,B02,36,1552,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",141591967-E36 -150801814,E44,15030660,Medical Incident,03/21/2015,03/21/2015,03/21/2015 01:40:49 PM,03/21/2015 01:42:52 PM,03/21/2015 01:43:15 PM,03/21/2015 01:44:42 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Patient Declined Transport,03/21/2015 01:44:56 PM,1800 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",150801814-E44 -142841559,T02,14100030,Other,10/11/2014,10/11/2014,10/11/2014 11:59:29 AM,10/11/2014 12:01:06 PM,10/11/2014 12:02:03 PM,10/11/2014 12:05:35 PM,10/11/2014 12:06:18 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Fire,10/11/2014 12:10:51 PM,2000 Block of GREEN ST,San Francisco,94123,B04,16,3463,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.7965249395334, -122.432847820562)",142841559-T02 -141872899,RS2,14064919,Structure Fire,07/06/2014,07/06/2014,07/06/2014 08:07:58 PM,07/06/2014 08:08:13 PM,07/06/2014 08:08:27 PM,07/06/2014 08:09:16 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Fire,07/06/2014 08:10:42 PM,2700 Block of IRVING ST,San Francisco,94122,B08,22,7511,3,3,3,false,Fire,1,RESCUE SQUAD,10,8,4,Sunset/Parkside,"(37.7630584789098, -122.487300731698)",141872899-RS2 -152153992,55,15082029,Medical Incident,08/03/2015,08/03/2015,08/03/2015 10:14:38 PM,08/03/2015 10:14:38 PM,08/03/2015 10:19:02 PM,08/03/2015 10:19:02 PM,08/03/2015 10:19:02 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Unable to Locate,08/03/2015 10:34:54 PM,400 Block of PACIFIC AVE,San Francisco,94133,B01,13,1212,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7974015545937, -122.403291978554)",152153992-55 -141120030,84,14037677,Medical Incident,04/22/2014,04/21/2014,04/22/2014 01:46:45 AM,04/22/2014 01:48:20 AM,04/22/2014 01:48:49 AM,04/22/2014 01:49:00 AM,04/22/2014 02:00:17 AM,04/22/2014 02:20:22 AM,04/22/2014 02:30:20 AM,Code 2 Transport,04/22/2014 03:11:50 AM,0 Block of NEW MONTGOMERY ST,SAN FRANCISCO,94105,B03,1,2144,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",141120030-84 -160943464,64,16037434,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:41:50 PM,04/03/2016 09:41:50 PM,04/03/2016 09:42:40 PM,04/03/2016 09:42:52 PM,04/03/2016 09:55:37 PM,04/03/2016 09:55:48 PM,04/03/2016 10:04:46 PM,Code 2 Transport,04/03/2016 10:39:28 PM,1500 Block of 4TH ST,San Francisco,94158,B03,4,2265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7691856282366, -122.391094397762)",160943464-64 -142553664,KM04,14089210,Medical Incident,09/12/2014,09/12/2014,09/12/2014 10:08:19 PM,09/12/2014 10:09:42 PM,09/12/2014 10:10:35 PM,09/12/2014 10:11:16 PM,09/12/2014 10:14:51 PM,09/12/2014 10:23:28 PM,09/12/2014 10:33:13 PM,Code 2 Transport,09/12/2014 11:06:19 PM,600 Block of PACIFIC AVE,San Francisco,94133,B01,13,1246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",142553664-KM04 -160962242,63,16038052,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:35:45 PM,04/05/2016 02:37:44 PM,04/05/2016 02:39:14 PM,04/05/2016 02:39:53 PM,04/05/2016 02:54:53 PM,04/05/2016 02:59:32 PM,04/05/2016 03:18:55 PM,Code 2 Transport,04/05/2016 03:57:18 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160962242-63 -152810029,E02,15107670,Structure Fire,10/08/2015,10/07/2015,10/08/2015 12:14:00 AM,10/08/2015 12:14:00 AM,10/08/2015 12:14:09 AM,10/08/2015 12:15:33 AM,10/08/2015 12:19:19 AM,04/25/2016 01:07:54 PM,04/25/2016 01:07:54 PM,Fire,10/08/2015 12:19:24 AM,STOCKTON ST/WASHINGTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",152810029-E02 -141290894,AM16,14043814,Other,05/09/2014,05/09/2014,05/09/2014 08:53:09 AM,05/09/2014 08:53:09 AM,05/09/2014 09:08:25 AM,05/09/2014 09:13:34 AM,05/09/2014 09:24:16 AM,05/09/2014 09:36:58 AM,05/09/2014 10:13:01 AM,Multi-casualty Incident,05/09/2014 11:19:21 AM,1200 Block of INGALLS ST,San Francisco,94124,B10,17,6572,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,8,10,10,Bayview Hunters Point,"(37.7305663224371, -122.381859307677)",141290894-AM16 -151080957,D2,15040834,Structure Fire,04/18/2015,04/18/2015,04/18/2015 08:53:44 AM,04/18/2015 08:54:40 AM,04/18/2015 08:55:43 AM,04/18/2015 08:57:18 AM,04/18/2015 09:01:30 AM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Fire,04/18/2015 10:22:18 AM,700 Block of PINE ST,San Francisco,94108,B01,2,1325,3,3,3,false,Alarm,1,CHIEF,9,1,3,Nob Hill,"(37.7912011681146, -122.408529251047)",151080957-D2 -142532558,71,14088363,Traffic Collision,09/10/2014,09/10/2014,09/10/2014 04:00:34 PM,09/10/2014 04:03:30 PM,09/10/2014 04:05:14 PM,09/10/2014 04:06:46 PM,09/10/2014 04:10:03 PM,09/10/2014 04:19:15 PM,09/10/2014 04:44:19 PM,Code 2 Transport,09/10/2014 05:09:01 PM,100 Block of AVENUE C,San Francisco,94130,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",142532558-71 -143170421,T03,14112162,Citizen Assist / Service Call,11/13/2014,11/12/2014,11/13/2014 05:14:04 AM,11/13/2014 05:15:11 AM,11/13/2014 05:15:41 AM,11/13/2014 05:18:47 AM,11/13/2014 05:19:48 AM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,No Merit,11/13/2014 05:23:57 AM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",143170421-T03 -152523426,KM06,15096469,Traffic Collision,09/09/2015,09/09/2015,09/09/2015 06:54:26 PM,09/09/2015 06:54:46 PM,09/09/2015 06:55:02 PM,09/09/2015 06:55:19 PM,09/09/2015 07:06:47 PM,09/09/2015 07:28:14 PM,09/09/2015 07:45:25 PM,Code 3 Transport,09/09/2015 08:39:23 PM,FULTON ST/DIVISADERO ST,San Francisco,94117,B05,21,4135,2,2,2,false,Non Life-threatening,1,PRIVATE,3,5,5,Hayes Valley,"(37.7768558891973, -122.438177046242)",152523426-KM06 -150912481,E19,15034653,Medical Incident,04/01/2015,04/01/2015,04/01/2015 04:07:32 PM,04/01/2015 04:08:17 PM,04/01/2015 04:08:38 PM,04/01/2015 04:09:44 PM,04/01/2015 04:11:35 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/01/2015 04:32:27 PM,WINSTON DR/20TH AV,San Francisco,94132,B08,19,8862,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7269499157185, -122.476039471265)",150912481-E19 -160951313,79,16037585,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:56:58 AM,04/04/2016 10:57:49 AM,04/04/2016 10:58:12 AM,04/04/2016 11:02:02 AM,04/04/2016 11:08:07 AM,04/04/2016 11:27:59 AM,04/04/2016 11:41:10 AM,Code 2 Transport,04/04/2016 12:16:08 PM,9TH AV/LINCOLN WY,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",160951313-79 -142951726,E11,14104021,Medical Incident,10/22/2014,10/22/2014,10/22/2014 12:58:50 PM,10/22/2014 12:59:37 PM,10/22/2014 01:00:00 PM,10/22/2014 01:01:22 PM,10/22/2014 01:02:51 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Code 2 Transport,10/22/2014 01:07:48 PM,1300 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7513004428428, -122.420654868929)",142951726-E11 -152060516,T02,15078367,Alarms,07/25/2015,07/24/2015,07/25/2015 03:59:43 AM,07/25/2015 03:59:43 AM,07/25/2015 04:01:29 AM,07/25/2015 04:02:59 AM,07/25/2015 04:07:44 AM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Fire,07/25/2015 04:12:52 AM,300 Block of POST ST,San Francisco,94108,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7883420975425, -122.407575452565)",152060516-T02 -160922732,KM04,16036539,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:27:33 PM,04/01/2016 05:27:33 PM,04/01/2016 05:28:19 PM,04/01/2016 05:28:48 PM,04/01/2016 05:38:28 PM,04/01/2016 05:53:44 PM,04/01/2016 06:04:26 PM,Code 2 Transport,04/01/2016 06:28:32 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160922732-KM04 -160942294,57,16037309,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:21:59 PM,04/03/2016 03:23:49 PM,04/03/2016 03:24:08 PM,04/03/2016 03:24:23 PM,04/03/2016 03:29:22 PM,04/03/2016 03:32:43 PM,04/03/2016 04:09:46 PM,Code 2 Transport,04/03/2016 04:21:44 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",160942294-57 -150621491,85,15023633,Medical Incident,03/03/2015,03/03/2015,03/03/2015 11:22:34 AM,03/03/2015 11:23:16 AM,03/03/2015 11:27:40 AM,03/03/2015 11:27:51 AM,03/03/2015 11:37:00 AM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Patient Declined Transport,03/03/2015 12:09:00 PM,TAYLOR ST/EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",150621491-85 -150011270,85,15000247,Medical Incident,01/01/2015,12/31/2014,01/01/2015 07:41:33 AM,01/01/2015 07:42:25 AM,01/01/2015 07:43:38 AM,01/01/2015 07:43:53 AM,01/01/2015 07:59:17 AM,01/01/2015 08:13:38 AM,01/01/2015 08:20:20 AM,Code 2 Transport,01/01/2015 08:51:56 AM,PAGE ST/DIVISADERO ST,San Francisco,94117,B05,21,4144,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",150011270-85 -143601763,KM11,14128818,Medical Incident,12/26/2014,12/26/2014,12/26/2014 03:16:32 PM,12/26/2014 03:17:37 PM,12/26/2014 03:19:07 PM,12/26/2014 03:20:31 PM,12/26/2014 03:30:01 PM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Medical Examiner,12/26/2014 04:25:23 PM,800 Block of 42ND AVE,San Francisco,94121,B07,34,7271,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7726678105606, -122.502536496797)",143601763-KM11 -141680762,E08,14057874,Citizen Assist / Service Call,06/17/2014,06/17/2014,06/17/2014 08:41:37 AM,06/17/2014 08:41:51 AM,06/17/2014 08:41:57 AM,06/17/2014 08:43:04 AM,06/17/2014 08:54:39 AM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/17/2014 09:59:53 AM,4TH ST/CHINA BASIN ST,San Francisco,94158,B03,8,2231,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7718971758313, -122.391284249119)",141680762-E08 -151003520,KM02,15038021,Medical Incident,04/10/2015,04/10/2015,04/10/2015 09:25:36 PM,04/10/2015 09:27:53 PM,04/10/2015 09:28:08 PM,04/10/2015 09:28:33 PM,04/10/2015 09:43:33 PM,04/10/2015 09:51:30 PM,04/10/2015 10:19:44 PM,Code 2 Transport,04/10/2015 10:55:14 PM,SUTTER ST/STOCKTON ST,San Francisco,94108,B01,1,1324,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",151003520-KM02 -151862015,E05,15071058,Medical Incident,07/05/2015,07/05/2015,07/05/2015 02:01:21 PM,07/05/2015 02:02:07 PM,07/05/2015 02:02:53 PM,07/05/2015 02:03:51 PM,07/05/2015 02:07:10 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Code 2 Transport,07/05/2015 02:18:33 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",151862015-E05 -141883646,E01,14065325,Medical Incident,07/07/2014,07/07/2014,07/07/2014 10:13:37 PM,07/07/2014 10:15:01 PM,07/07/2014 10:15:19 PM,07/07/2014 10:16:05 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/07/2014 10:39:10 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141883646-E01 -141970383,74,14068107,Medical Incident,07/16/2014,07/15/2014,07/16/2014 04:04:49 AM,07/16/2014 04:07:28 AM,07/16/2014 04:07:52 AM,07/16/2014 04:08:35 AM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,No Merit,07/16/2014 04:15:56 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",141970383-74 -160951846,KM09,16037634,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:03:29 PM,04/04/2016 01:04:18 PM,04/04/2016 01:05:05 PM,04/04/2016 01:05:56 PM,04/04/2016 01:16:58 PM,04/04/2016 01:27:04 PM,04/04/2016 01:53:56 PM,Code 2 Transport,04/04/2016 02:36:14 PM,2500 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6337,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7294190904862, -122.404411917151)",160951846-KM09 -142050868,74,14070888,Medical Incident,07/24/2014,07/24/2014,07/24/2014 08:30:32 AM,07/24/2014 08:31:10 AM,07/24/2014 08:32:05 AM,07/24/2014 08:32:24 AM,07/24/2014 08:42:59 AM,07/24/2014 09:14:47 AM,07/24/2014 09:44:50 AM,Code 2 Transport,07/24/2014 10:19:36 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",142050868-74 -142940776,E01,14103606,Structure Fire,10/21/2014,10/21/2014,10/21/2014 08:13:48 AM,10/21/2014 08:13:48 AM,10/21/2014 08:14:12 AM,10/21/2014 08:14:27 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/21/2014 08:16:25 AM,MASON ST/ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,2,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",142940776-E01 -160992920,52,16039412,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:03:50 PM,04/08/2016 06:06:46 PM,04/08/2016 06:06:58 PM,04/08/2016 06:07:07 PM,04/08/2016 06:13:55 PM,04/08/2016 06:24:10 PM,04/08/2016 06:37:22 PM,Code 3 Transport,04/08/2016 07:33:36 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160992920-52 -160963278,52,16038138,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:27:55 PM,04/05/2016 06:29:29 PM,04/05/2016 06:29:53 PM,04/05/2016 06:29:59 PM,04/05/2016 06:37:46 PM,04/05/2016 06:47:13 PM,04/05/2016 06:53:54 PM,Code 2 Transport,04/05/2016 07:16:45 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160963278-52 -142780148,59,14097649,Medical Incident,10/05/2014,10/04/2014,10/05/2014 12:38:10 AM,10/05/2014 12:40:22 AM,10/05/2014 12:40:44 AM,10/05/2014 12:40:49 AM,10/05/2014 12:52:19 AM,10/05/2014 12:59:45 AM,10/05/2014 01:22:18 AM,Code 3 Transport,10/05/2014 02:15:00 AM,JACKSON ST/TAYLOR ST,San Francisco,94108,B01,2,1443,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7951978162562, -122.413187771663)",142780148-59 -143471239,E13,14123735,Medical Incident,12/13/2014,12/13/2014,12/13/2014 10:08:16 AM,12/13/2014 10:08:49 AM,12/13/2014 10:09:00 AM,12/13/2014 10:10:07 AM,12/13/2014 10:16:08 AM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Code 2 Transport,12/13/2014 10:34:18 AM,500 Block of MISSION ST,San Francisco,94105,B03,35,2124,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7891181923442, -122.398488873746)",143471239-E13 -152540680,E12,15097002,Medical Incident,09/11/2015,09/10/2015,09/11/2015 07:40:17 AM,09/11/2015 07:41:52 AM,09/11/2015 07:42:12 AM,09/11/2015 07:43:34 AM,09/11/2015 07:46:42 AM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Code 2 Transport,09/11/2015 08:07:01 AM,500 Block of CORBETT AVE,San Francisco,94114,B05,24,5274,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7574340530806, -122.444098479895)",152540680-E12 -153024201,RS1,15116046,Traffic Collision,10/29/2015,10/29/2015,10/29/2015 11:57:16 PM,10/29/2015 11:58:46 PM,10/29/2015 11:59:04 PM,10/30/2015 12:01:24 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Gone on Arrival,10/30/2015 12:06:42 AM,100 Block of AVENUE C,San Francisco,94130,B02,29,2345,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",153024201-RS1 -152872914,E01,15110364,Medical Incident,10/14/2015,10/14/2015,10/14/2015 04:20:11 PM,10/14/2015 04:21:09 PM,10/14/2015 04:21:42 PM,10/14/2015 04:22:51 PM,10/14/2015 04:26:23 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 05:06:03 PM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",152872914-E01 -142660469,RC3,14092975,Medical Incident,09/23/2014,09/22/2014,09/23/2014 06:18:50 AM,09/23/2014 06:20:33 AM,09/23/2014 06:21:31 AM,09/23/2014 06:23:47 AM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Code 2 Transport,09/23/2014 06:24:13 AM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7120857687728, -122.445406512004)",142660469-RC3 -161002070,54,16039812,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:35:09 PM,04/09/2016 03:35:35 PM,04/09/2016 03:35:59 PM,04/09/2016 03:36:09 PM,04/09/2016 03:42:05 PM,04/09/2016 03:55:52 PM,04/09/2016 04:08:34 PM,Code 2 Transport,04/09/2016 04:46:49 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7675315414279, -122.428693725184)",161002070-54 -160981825,76,16038911,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 12:29:23 PM,04/07/2016 12:31:37 PM,04/07/2016 12:36:35 PM,04/07/2016 12:36:42 PM,04/07/2016 12:47:57 PM,04/07/2016 01:06:29 PM,04/07/2016 01:08:13 PM,Code 2 Transport,04/07/2016 01:22:51 PM,1800 Block of JACKSON ST,San Francisco,94109,B04,38,3252,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7936758446796, -122.425525660789)",160981825-76 -142220954,E18,14076999,Alarms,08/10/2014,08/10/2014,08/10/2014 09:37:03 AM,08/10/2014 09:37:51 AM,08/10/2014 09:38:20 AM,08/10/2014 09:39:22 AM,08/10/2014 09:44:00 AM,04/25/2016 01:15:44 PM,04/25/2016 01:15:44 PM,Patient Declined Transport,08/10/2014 09:50:45 AM,2500 Block of 27TH AVE,San Francisco,94116,B08,40,7466,3,3,3,true,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7398792433836, -122.483998495572)",142220954-E18 -152250421,E03,15085630,Medical Incident,08/13/2015,08/12/2015,08/13/2015 04:27:19 AM,08/13/2015 04:28:53 AM,08/13/2015 04:29:37 AM,08/13/2015 04:31:01 AM,08/13/2015 04:33:59 AM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Code 2 Transport,08/13/2015 04:36:26 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",152250421-E03 -160961782,74,16038011,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:51:23 PM,04/05/2016 12:53:04 PM,04/05/2016 12:55:34 PM,04/05/2016 12:55:41 PM,04/05/2016 01:01:30 PM,04/05/2016 01:23:59 PM,04/05/2016 01:35:18 PM,Code 2 Transport,04/05/2016 02:04:34 PM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160961782-74 -141580129,RS1,14054285,Medical Incident,06/07/2014,06/06/2014,06/07/2014 12:55:32 AM,06/07/2014 12:59:54 AM,06/07/2014 01:00:29 AM,06/07/2014 01:02:41 AM,06/07/2014 01:07:01 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Code 2 Transport,06/07/2014 01:16:39 AM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",141580129-RS1 -152521254,E03,15096278,Structure Fire,09/09/2015,09/09/2015,09/09/2015 10:09:11 AM,09/09/2015 10:09:15 AM,09/09/2015 10:11:26 AM,09/09/2015 10:11:26 AM,09/09/2015 10:12:40 AM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,Fire,09/09/2015 10:17:11 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",152521254-E03 -160982625,76,16039004,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:02:10 PM,04/07/2016 04:02:10 PM,04/07/2016 04:02:45 PM,04/07/2016 04:02:53 PM,04/07/2016 04:09:07 PM,04/07/2016 04:22:36 PM,04/07/2016 04:30:19 PM,Code 2 Transport,04/07/2016 04:52:17 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160982625-76 -141230138,E21,14041635,Structure Fire,05/03/2014,05/03/2014,05/03/2014 11:36:55 AM,05/03/2014 11:36:56 AM,05/03/2014 11:37:15 AM,05/03/2014 11:38:34 AM,05/03/2014 11:39:53 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Fire,05/03/2014 11:40:25 AM,DIVISADERO ST/PAGE ST,SAN FRANCISCO,94117,B05,21,4144,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",141230138-E21 -150583244,75,15022299,Medical Incident,02/27/2015,02/27/2015,02/27/2015 07:42:08 PM,02/27/2015 07:43:43 PM,02/27/2015 07:44:37 PM,02/27/2015 07:44:44 PM,02/27/2015 07:55:49 PM,02/27/2015 08:15:36 PM,04/25/2016 01:12:00 PM,Code 2 Transport,02/27/2015 08:57:34 PM,200 Block of ASHTON AVE,San Francisco,94112,B09,15,8434,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7224246331182, -122.462198993823)",150583244-75 -160983049,AM14,16039048,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:01:01 PM,04/07/2016 06:01:31 PM,04/07/2016 06:01:54 PM,04/07/2016 06:02:25 PM,04/07/2016 06:10:31 PM,04/07/2016 06:31:39 PM,04/07/2016 07:09:33 PM,Code 2 Transport,04/07/2016 07:16:26 PM,1400 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7901080617264, -122.420522075876)",160983049-AM14 -151721463,72,15065666,Medical Incident,06/21/2015,06/21/2015,06/21/2015 12:22:01 PM,06/21/2015 12:22:47 PM,06/21/2015 12:24:51 PM,06/21/2015 12:25:02 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Cancelled,06/21/2015 12:25:22 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",151721463-72 -142532321,KM10,14088343,Medical Incident,09/10/2014,09/10/2014,09/10/2014 03:00:00 PM,09/10/2014 03:01:48 PM,09/10/2014 03:34:12 PM,09/10/2014 03:34:31 PM,09/10/2014 03:45:50 PM,09/10/2014 03:55:50 PM,09/10/2014 04:02:11 PM,Code 2 Transport,09/10/2014 04:31:15 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",142532321-KM10 -151630084,E15,15062128,Alarms,06/12/2015,06/11/2015,06/12/2015 12:44:19 AM,06/12/2015 12:45:29 AM,06/12/2015 12:48:25 AM,06/12/2015 12:50:14 AM,06/12/2015 12:52:13 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/12/2015 01:02:59 AM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",151630084-E15 -150822413,E17,15031428,Medical Incident,03/23/2015,03/23/2015,03/23/2015 04:19:00 PM,03/23/2015 04:19:25 PM,03/23/2015 04:19:37 PM,03/23/2015 04:21:01 PM,03/23/2015 04:23:55 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Code 2 Transport,03/23/2015 04:36:05 PM,0 Block of REUEL CT,San Francisco,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",150822413-E17 -160963797,53,16038187,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:09:40 PM,04/05/2016 09:09:40 PM,04/05/2016 09:10:40 PM,04/05/2016 09:11:12 PM,04/05/2016 09:16:40 PM,04/05/2016 09:20:15 PM,04/05/2016 09:26:13 PM,Code 2 Transport,04/05/2016 10:12:29 PM,SUTTER ST/MASON ST,San Francisco,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.789016335554, -122.410242439308)",160963797-53 -151560910,E13,15059437,Medical Incident,06/05/2015,06/05/2015,06/05/2015 09:10:35 AM,06/05/2015 09:10:46 AM,06/05/2015 09:10:59 AM,06/05/2015 09:11:54 AM,06/05/2015 09:12:51 AM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Code 2 Transport,06/05/2015 09:26:55 AM,700 Block of WASHINGTON ST,San Francisco,94108,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.795117116509, -122.406249619336)",151560910-E13 -142700568,KM06,14094577,Medical Incident,09/27/2014,09/26/2014,09/27/2014 03:54:10 AM,09/27/2014 03:55:29 AM,09/27/2014 03:55:55 AM,09/27/2014 03:56:50 AM,09/27/2014 04:04:35 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Patient Declined Transport,09/27/2014 04:07:22 AM,0 Block of HOLYOKE ST,San Francisco,94134,B10,42,6356,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7304784247492, -122.410179434908)",142700568-KM06 -160973127,76,16038543,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:57:00 PM,04/06/2016 04:58:04 PM,04/06/2016 05:01:22 PM,04/06/2016 05:01:22 PM,04/06/2016 05:15:56 PM,04/06/2016 05:32:33 PM,04/06/2016 05:46:21 PM,Code 2 Transport,04/06/2016 05:56:36 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160973127-76 -160940328,70,16037128,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:52:06 AM,04/03/2016 01:52:06 AM,04/03/2016 01:58:29 AM,04/03/2016 01:58:41 AM,04/03/2016 02:10:17 AM,04/03/2016 02:27:16 AM,04/03/2016 02:33:52 AM,Code 2 Transport,04/03/2016 03:07:27 AM,1300 Block of GRANT AVE,San Francisco,94133,B01,28,1266,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.799231230896, -122.407369153529)",160940328-70 -141632438,86,14056261,Medical Incident,06/12/2014,06/12/2014,06/12/2014 05:03:49 PM,06/12/2014 05:03:49 PM,06/12/2014 05:17:19 PM,06/12/2014 05:17:29 PM,06/12/2014 05:43:40 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Patient Declined Transport,06/12/2014 05:57:51 PM,100 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7671915511213, -122.431221797415)",141632438-86 -160932096,76,16036902,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:50:15 PM,04/02/2016 02:51:36 PM,04/02/2016 02:51:54 PM,04/02/2016 02:52:01 PM,04/02/2016 02:58:20 PM,04/02/2016 03:04:15 PM,04/02/2016 03:11:12 PM,Code 2 Transport,04/02/2016 03:24:53 PM,3300 Block of 24TH ST,San Francisco,94110,B06,11,5525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7521761775715, -122.420379793048)",160932096-76 -161000916,75,16039675,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:00:32 AM,04/09/2016 09:00:48 AM,04/09/2016 09:01:05 AM,04/09/2016 09:02:36 AM,04/09/2016 09:13:17 AM,04/09/2016 09:35:01 AM,04/09/2016 09:53:55 AM,Other,04/09/2016 11:02:50 AM,TAYLOR ST/NORTH POINT ST,San Francisco,94133,B01,28,1433,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8063434294735, -122.415431571973)",161000916-75 -141362016,B01,14046594,Alarms,05/16/2014,05/16/2014,05/16/2014 02:50:53 PM,05/16/2014 02:52:05 PM,05/16/2014 02:52:57 PM,05/16/2014 02:53:40 PM,05/16/2014 03:06:26 PM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,Cancelled,05/16/2014 03:14:43 PM,900 Block of NORTH POINT ST,San Francisco,94109,B01,28,1623,3,3,3,false,Alarm,1,CHIEF,3,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",141362016-B01 -151002375,B01,15037905,Odor (Strange / Unknown),04/10/2015,04/10/2015,04/10/2015 04:12:10 PM,04/10/2015 04:15:29 PM,04/10/2015 04:15:49 PM,04/10/2015 04:16:53 PM,04/10/2015 04:20:19 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Fire,04/10/2015 04:23:02 PM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",151002375-B01 -142881775,E03,14101516,Medical Incident,10/15/2014,10/15/2014,10/15/2014 12:48:16 PM,10/15/2014 12:49:13 PM,10/15/2014 12:49:35 PM,10/15/2014 12:50:17 PM,10/15/2014 12:52:03 PM,10/15/2014 01:15:25 PM,04/25/2016 01:14:32 PM,Code 3 Transport,10/15/2014 01:32:41 PM,500 Block of POST ST,San Francisco,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.788031406746, -122.410889094263)",142881775-E03 -142001574,85,14069229,Medical Incident,07/19/2014,07/19/2014,07/19/2014 12:57:31 PM,07/19/2014 12:58:24 PM,07/19/2014 12:59:00 PM,07/19/2014 01:00:07 PM,07/19/2014 01:09:24 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,No Merit,07/19/2014 01:16:42 PM,5100 Block of MISSION ST,San Francisco,94112,B09,43,6175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7160781812918, -122.441227673446)",142001574-85 -150522714,E41,15020107,Medical Incident,02/21/2015,02/21/2015,02/21/2015 04:47:16 PM,02/21/2015 04:49:22 PM,02/21/2015 04:49:51 PM,02/21/2015 04:50:06 PM,02/21/2015 04:53:56 PM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Code 2 Transport,02/21/2015 04:54:28 PM,LARKIN ST/POST ST,San Francisco,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",150522714-E41 -160933837,AM14,16037074,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:00:00 PM,04/02/2016 11:01:39 PM,04/02/2016 11:02:57 PM,04/02/2016 11:03:38 PM,04/02/2016 11:09:39 PM,04/02/2016 11:26:22 PM,04/02/2016 11:42:55 PM,Code 2 Transport,04/02/2016 11:56:14 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160933837-AM14 -143161601,66,14111905,Medical Incident,11/12/2014,11/12/2014,11/12/2014 12:12:31 PM,11/12/2014 12:15:00 PM,11/12/2014 12:16:58 PM,11/12/2014 12:17:18 PM,11/12/2014 12:25:18 PM,11/12/2014 12:52:26 PM,11/12/2014 01:27:14 PM,Code 2 Transport,11/12/2014 01:53:55 PM,700 Block of 23RD AVE,San Francisco,94121,B07,14,7177,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7735976795866, -122.482185448619)",143161601-66 -152880400,E06,15110533,Medical Incident,10/15/2015,10/14/2015,10/15/2015 04:27:42 AM,10/15/2015 04:29:01 AM,10/15/2015 04:29:53 AM,10/15/2015 04:32:12 AM,10/15/2015 04:35:53 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/15/2015 04:37:42 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",152880400-E06 -142642233,T03,14092406,Alarms,09/21/2014,09/21/2014,09/21/2014 04:18:49 PM,09/21/2014 04:20:06 PM,09/21/2014 04:20:14 PM,09/21/2014 04:21:29 PM,09/21/2014 04:23:28 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Fire,09/21/2014 04:33:28 PM,1500 Block of VAN NESS AVE,San Francisco,94109,B04,38,3155,3,3,3,false,Alarm,1,TRUCK,1,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",142642233-T03 -160954168,60,16037835,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:47:13 PM,04/04/2016 11:48:35 PM,04/04/2016 11:49:27 PM,04/04/2016 11:49:40 PM,04/04/2016 11:56:00 PM,04/05/2016 12:13:59 AM,04/05/2016 12:30:00 AM,Code 2 Transport,04/05/2016 01:03:09 AM,3500 Block of 23RD ST,San Francisco,94110,B06,11,5512,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7536695909359, -122.422278418178)",160954168-60 -160973432,73,16038588,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:00:15 PM,04/06/2016 06:03:06 PM,04/06/2016 06:05:38 PM,04/06/2016 06:05:45 PM,04/06/2016 06:18:51 PM,04/06/2016 06:28:23 PM,04/06/2016 06:54:13 PM,Code 2 Transport,04/06/2016 07:23:32 PM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",160973432-73 -141030256,E12,14034842,Medical Incident,04/13/2014,04/13/2014,04/13/2014 04:55:24 PM,04/13/2014 04:56:29 PM,04/13/2014 04:58:16 PM,04/25/2016 01:17:54 PM,04/13/2014 04:59:46 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Code 2 Transport,04/13/2014 05:16:41 PM,800 Block of JUDAH ST,SAN FRANCISCO,94122,B08,22,7347,,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7620593970413, -122.471008400176)",141030256-E12 -151861746,E40,15071034,Structure Fire,07/05/2015,07/05/2015,07/05/2015 12:21:18 PM,07/05/2015 12:22:50 PM,07/05/2015 12:23:02 PM,07/05/2015 12:24:17 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 02:01:59 PM,2500 Block of 30TH AVE,San Francisco,94116,B08,18,7527,3,3,3,false,Alarm,1,ENGINE,8,8,4,Sunset/Parkside,"(37.7397313137846, -122.487350732756)",151861746-E40 -151311624,KM01,15049679,Medical Incident,05/11/2015,05/11/2015,05/11/2015 12:21:26 PM,05/11/2015 12:22:34 PM,05/11/2015 12:23:49 PM,05/11/2015 12:24:23 PM,05/11/2015 12:31:42 PM,05/11/2015 12:52:13 PM,05/11/2015 01:11:25 PM,Code 2 Transport,05/11/2015 01:54:00 PM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",151311624-KM01 -151860753,82,15070934,Medical Incident,07/05/2015,07/04/2015,07/05/2015 04:19:26 AM,07/05/2015 04:21:02 AM,07/05/2015 04:22:41 AM,07/05/2015 04:26:05 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Patient Declined Transport,07/05/2015 04:40:49 AM,100 Block of WINFIELD ST,San Francisco,94110,B06,32,5654,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7427271538355, -122.418363583753)",151860753-82 -150860372,KM07,15032716,Medical Incident,03/27/2015,03/26/2015,03/27/2015 04:40:12 AM,03/27/2015 04:41:20 AM,03/27/2015 04:41:46 AM,03/27/2015 04:42:18 AM,03/27/2015 04:48:06 AM,03/27/2015 04:58:05 AM,03/27/2015 05:05:19 AM,Code 2 Transport,03/27/2015 05:41:54 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",150860372-KM07 -141681462,E34,14057931,Administrative,06/17/2014,06/17/2014,06/17/2014 12:14:32 PM,06/17/2014 12:14:39 PM,06/17/2014 12:14:57 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Cancelled,06/17/2014 12:15:23 PM,400 Block of 41ST AVE,San Francisco,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",141681462-E34 -160923486,53,16036611,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:11:53 PM,04/01/2016 09:11:53 PM,04/01/2016 09:12:14 PM,04/01/2016 09:12:33 PM,04/01/2016 09:19:18 PM,04/01/2016 09:29:48 PM,04/01/2016 09:57:05 PM,Code 2 Transport,04/01/2016 10:28:19 PM,MISSION ST/GENEVA AV,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",160923486-53 -142021424,67,14069862,Medical Incident,07/21/2014,07/21/2014,07/21/2014 12:01:02 PM,07/21/2014 12:02:56 PM,07/21/2014 12:03:24 PM,07/21/2014 12:07:10 PM,07/21/2014 12:07:10 PM,07/21/2014 12:28:03 PM,07/21/2014 12:55:49 PM,Code 2 Transport,07/21/2014 01:21:37 PM,1200 Block of 5TH AVE,San Francisco,94122,B08,22,7325,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7646963394397, -122.461994155503)",142021424-67 -160962107,86,16038039,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:04:55 PM,04/05/2016 02:05:32 PM,04/05/2016 02:05:55 PM,04/05/2016 02:06:09 PM,04/05/2016 02:11:08 PM,04/05/2016 02:24:25 PM,04/05/2016 02:57:00 PM,Code 2 Transport,04/05/2016 03:37:33 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160962107-86 -160970543,52,16038289,Medical Incident,04/06/2016,04/05/2016,04/06/2016 06:44:25 AM,04/06/2016 06:45:39 AM,04/06/2016 06:46:00 AM,04/06/2016 06:46:13 AM,04/06/2016 06:58:03 AM,04/06/2016 07:13:26 AM,04/06/2016 07:44:31 AM,Code 2 Transport,04/06/2016 08:04:41 AM,3900 Block of 24TH ST,San Francisco,94114,B06,11,5522,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",160970543-52 -143033124,E19,14107217,Medical Incident,10/30/2014,10/30/2014,10/30/2014 05:59:10 PM,10/30/2014 05:59:42 PM,10/30/2014 06:00:16 PM,10/30/2014 06:01:42 PM,10/30/2014 06:04:02 PM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,Code 2 Transport,10/30/2014 06:33:39 PM,700 Block of JUNIPERO SERRA BLVD,San Francisco,94127,B09,19,8727,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7242258644878, -122.472362015086)",143033124-E19 -151493414,B06,15056847,Alarms,05/29/2015,05/29/2015,05/29/2015 07:27:46 PM,05/29/2015 07:29:19 PM,05/29/2015 07:29:27 PM,05/29/2015 07:30:29 PM,05/29/2015 07:31:48 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,Fire,05/29/2015 07:36:17 PM,0 Block of VICKSBURG ST,San Francisco,94114,B06,11,5514,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.754024451787, -122.428841355332)",151493414-B06 -142602882,KM10,14090960,Medical Incident,09/17/2014,09/17/2014,09/17/2014 06:08:45 PM,09/17/2014 06:09:29 PM,09/17/2014 06:09:54 PM,09/17/2014 06:10:36 PM,09/17/2014 06:23:44 PM,09/17/2014 06:37:45 PM,09/17/2014 06:58:41 PM,Code 3 Transport,09/17/2014 07:42:49 PM,300 Block of BEALE ST,San Francisco,94105,B03,35,2122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Financial District/South Beach,"(37.7880321954757, -122.392000314933)",142602882-KM10 -160992652,62,16039392,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:00:33 PM,04/08/2016 05:01:01 PM,04/08/2016 05:35:00 PM,04/08/2016 05:35:00 PM,04/08/2016 05:35:00 PM,04/08/2016 05:35:09 PM,04/08/2016 05:39:32 PM,Code 3 Transport,04/08/2016 06:47:24 PM,0 Block of HARRINGTON ST,San Francisco,94112,B09,43,6117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7256640493624, -122.435313776535)",160992652-62 -160973280,KM10,16038562,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:26:59 PM,04/06/2016 05:27:50 PM,04/06/2016 05:28:25 PM,04/06/2016 05:30:52 PM,04/06/2016 05:41:30 PM,04/06/2016 05:59:48 PM,04/06/2016 06:24:21 PM,Code 2 Transport,04/06/2016 07:01:46 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160973280-KM10 -160980472,52,16038779,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:38:22 AM,04/07/2016 04:41:57 AM,04/07/2016 04:42:20 AM,04/07/2016 04:42:31 AM,04/07/2016 04:50:08 AM,04/07/2016 05:11:34 AM,04/07/2016 05:31:46 AM,Code 3 Transport,04/07/2016 05:57:47 AM,1600 Block of WEBSTER ST,San Francisco,94115,B04,5,3513,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.785861209886, -122.431307648114)",160980472-52 -152803438,52,15107579,Medical Incident,10/07/2015,10/07/2015,10/07/2015 07:11:51 PM,10/07/2015 07:13:29 PM,10/07/2015 07:13:41 PM,10/07/2015 07:13:49 PM,10/07/2015 07:21:21 PM,10/07/2015 07:36:28 PM,10/07/2015 07:44:58 PM,Code 2 Transport,10/07/2015 08:07:25 PM,FREDERICK ST/MASONIC AV,San Francisco,94117,B05,12,5143,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7674258776099, -122.444731538905)",152803438-52 -141400220,T01,14047857,Structure Fire,05/20/2014,05/19/2014,05/20/2014 02:33:41 AM,05/20/2014 02:33:41 AM,05/20/2014 02:34:18 AM,05/20/2014 02:36:52 AM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,Fire,05/20/2014 02:38:29 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,false,Alarm,1,TRUCK,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",141400220-T01 -150573155,58,15021903,Medical Incident,02/26/2015,02/26/2015,02/26/2015 07:06:25 PM,02/26/2015 07:06:25 PM,02/26/2015 07:06:38 PM,02/26/2015 07:08:15 PM,02/26/2015 07:17:16 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,No Merit,02/26/2015 07:17:27 PM,ELLIS ST/LARKIN ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",150573155-58 -152730554,71,15104391,Citizen Assist / Service Call,09/30/2015,09/29/2015,09/30/2015 07:03:22 AM,09/30/2015 07:05:39 AM,09/30/2015 07:06:08 AM,09/30/2015 07:06:16 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 07:07:09 AM,2000 Block of POST ST,San Francisco,94115,B04,5,3622,3,3,3,true,Alarm,1,MEDIC,3,4,5,Japantown,"(37.7848942765225, -122.435560105122)",152730554-71 -160963710,78,16038180,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:36:14 PM,04/05/2016 08:38:57 PM,04/05/2016 08:39:07 PM,04/05/2016 08:39:55 PM,04/05/2016 08:47:25 PM,04/05/2016 09:15:49 PM,04/05/2016 09:28:20 PM,Code 2 Transport,04/05/2016 10:02:31 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7580927749863, -122.414684745414)",160963710-78 -141281753,T05,14043528,Structure Fire,05/08/2014,05/08/2014,05/08/2014 01:09:56 PM,05/08/2014 01:09:56 PM,05/08/2014 01:10:31 PM,05/08/2014 01:13:21 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Fire,05/08/2014 01:19:02 PM,1200 Block of MARKET ST,San Francisco,94103,B02,36,2337,3,3,3,false,Alarm,1,TRUCK,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",141281753-T05 -150892142,E07,15034002,Medical Incident,03/30/2015,03/30/2015,03/30/2015 03:16:03 PM,03/30/2015 03:16:56 PM,03/30/2015 03:17:30 PM,03/30/2015 03:18:02 PM,03/30/2015 03:19:26 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Code 2 Transport,03/30/2015 03:29:22 PM,600 Block of ALABAMA ST,San Francisco,94110,B02,7,5426,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7610105720239, -122.411919466827)",150892142-E07 -151353450,57,15051431,Medical Incident,05/15/2015,05/15/2015,05/15/2015 08:09:52 PM,05/15/2015 08:09:52 PM,05/15/2015 08:10:11 PM,05/15/2015 08:10:18 PM,05/15/2015 08:16:24 PM,05/15/2015 08:26:32 PM,05/15/2015 08:31:31 PM,Code 2 Transport,05/15/2015 08:57:45 PM,VAN NESS AV/WILLOW ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.783352075343, -122.420977126256)",151353450-57 -160980839,KM09,16038813,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:09:55 AM,04/07/2016 08:09:55 AM,04/07/2016 08:10:55 AM,04/07/2016 08:12:50 AM,04/07/2016 08:21:00 AM,04/07/2016 08:49:50 AM,04/07/2016 09:21:54 AM,Code 2 Transport,04/07/2016 10:04:15 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",160980839-KM09 -143470699,E02,14123679,Medical Incident,12/13/2014,12/12/2014,12/13/2014 06:07:23 AM,12/13/2014 06:08:16 AM,12/13/2014 06:08:30 AM,12/13/2014 06:11:29 AM,12/13/2014 06:12:05 AM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Code 2 Transport,12/13/2014 06:22:37 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",143470699-E02 -142910139,E03,14102472,Medical Incident,10/18/2014,10/17/2014,10/18/2014 12:37:05 AM,10/18/2014 12:40:26 AM,10/18/2014 12:41:02 AM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 2 Transport,10/18/2014 12:43:50 AM,POLK ST/OLIVE ST,San Francisco,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7845008428925, -122.419454544987)",142910139-E03 -160990910,67,16039230,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:13:44 AM,04/08/2016 09:17:08 AM,04/08/2016 09:19:14 AM,04/08/2016 09:20:10 AM,04/08/2016 09:34:51 AM,04/08/2016 09:45:58 AM,04/08/2016 10:09:09 AM,Code 2 Transport,04/08/2016 10:43:44 AM,1300 Block of 24TH AVE,San Francisco,94122,B08,22,7451,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7623920631346, -122.48248639415)",160990910-67 -152871816,54,15110247,Medical Incident,10/14/2015,10/14/2015,10/14/2015 12:04:12 PM,10/14/2015 12:06:42 PM,10/14/2015 12:06:48 PM,10/14/2015 12:07:07 PM,10/14/2015 12:15:54 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Patient Declined Transport,10/14/2015 12:47:44 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",152871816-54 -151490121,E08,15056541,Medical Incident,05/29/2015,05/28/2015,05/29/2015 01:01:13 AM,05/29/2015 01:01:53 AM,05/29/2015 01:02:41 AM,05/29/2015 01:04:39 AM,05/29/2015 01:06:31 AM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Code 2 Transport,05/29/2015 01:08:40 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151490121-E08 -141120152,E11,14037763,Medical Incident,04/22/2014,04/22/2014,04/22/2014 11:08:38 AM,04/22/2014 11:11:25 AM,04/22/2014 11:11:45 AM,04/22/2014 11:12:55 AM,04/22/2014 11:15:00 AM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Code 2 Transport,04/22/2014 11:36:40 AM,100 Block of COLERIDGE ST,SAN FRANCISCO,94110,B06,11,5662,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",141120152-E11 -150820441,RS2,15031278,Medical Incident,03/23/2015,03/22/2015,03/23/2015 06:38:49 AM,03/23/2015 06:39:35 AM,03/23/2015 06:40:11 AM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Code 2 Transport,03/23/2015 06:41:36 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,8,Mission,"(37.7621357066004, -122.421689426887)",150820441-RS2 -160980750,65,16038805,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:36:34 AM,04/07/2016 07:37:12 AM,04/07/2016 07:38:16 AM,04/07/2016 07:38:28 AM,04/07/2016 07:42:24 AM,04/07/2016 07:54:21 AM,04/07/2016 08:17:13 AM,Code 2 Transport,04/07/2016 08:46:41 AM,0 Block of RIZAL ST,San Francisco,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.781822111031, -122.399291985556)",160980750-65 -143523566,E48,14125915,Medical Incident,12/18/2014,12/18/2014,12/18/2014 08:17:08 PM,12/18/2014 08:17:49 PM,12/18/2014 08:18:38 PM,12/18/2014 08:22:02 PM,12/18/2014 08:22:48 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Code 2 Transport,12/18/2014 08:59:23 PM,1200 Block of EXPOSITION DR,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8294056262544, -122.371894601737)",143523566-E48 -141220369,E09,14041476,Medical Incident,05/02/2014,05/02/2014,05/02/2014 08:59:21 PM,05/02/2014 09:00:59 PM,05/02/2014 09:01:27 PM,05/02/2014 09:03:15 PM,05/02/2014 09:05:40 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Code 2 Transport,05/02/2014 09:28:14 PM,1400 Block of INNES AVE,SAN FRANCISCO,94124,B10,25,6532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7378257783717, -122.386265458341)",141220369-E09 -142692834,KM06,14094389,Medical Incident,09/26/2014,09/26/2014,09/26/2014 05:14:09 PM,09/26/2014 05:16:04 PM,09/26/2014 05:26:40 PM,09/26/2014 05:27:28 PM,09/26/2014 05:41:04 PM,09/26/2014 06:05:28 PM,09/26/2014 06:28:03 PM,Code 2 Transport,09/26/2014 07:07:02 PM,6400 Block of FULTON ST,San Francisco,94121,B07,34,7262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7718666971206, -122.500796603773)",142692834-KM06 -141352371,E06,14046218,Structure Fire,05/15/2014,05/15/2014,05/15/2014 03:23:17 PM,05/15/2014 03:23:17 PM,05/15/2014 03:24:46 PM,05/15/2014 03:25:28 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/15/2014 03:26:52 PM,FILLMORE ST/TURK ST,San Francisco,94115,B02,6,3525,3,3,3,false,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",141352371-E06 -150032191,RC1,15001161,Medical Incident,01/03/2015,01/03/2015,01/03/2015 03:59:26 PM,01/03/2015 03:59:26 PM,01/03/2015 04:34:43 PM,01/03/2015 04:36:07 PM,01/03/2015 04:36:07 PM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Code 3 Transport,01/03/2015 04:41:28 PM,6TH ST/JESSIE ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",150032191-RC1 -152394297,77,15091247,Medical Incident,08/27/2015,08/27/2015,08/27/2015 11:35:30 PM,08/27/2015 11:38:36 PM,08/27/2015 11:40:14 PM,08/27/2015 11:40:14 PM,08/27/2015 11:40:58 PM,08/27/2015 11:59:02 PM,08/28/2015 12:03:18 AM,Code 2 Transport,08/28/2015 12:34:15 AM,MARKET ST/MASON ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",152394297-77 -152051434,77,15078037,Medical Incident,07/24/2015,07/24/2015,07/24/2015 11:09:05 AM,07/24/2015 11:09:34 AM,07/24/2015 11:10:47 AM,07/24/2015 11:12:39 AM,07/24/2015 11:17:22 AM,07/24/2015 11:33:34 AM,07/24/2015 11:57:02 AM,Code 2 Transport,07/24/2015 12:30:44 PM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",152051434-77 -141682793,E06,14058049,Structure Fire,06/17/2014,06/17/2014,06/17/2014 06:24:57 PM,06/17/2014 06:25:24 PM,06/17/2014 06:25:42 PM,06/17/2014 06:26:53 PM,06/17/2014 06:29:15 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Fire,06/17/2014 06:29:26 PM,0 Block of DUBOCE AVE,San Francisco,94103,B02,36,5124,3,3,3,false,Alarm,1,ENGINE,1,2,9,Mission,"(37.7698769653623, -122.420425746328)",141682793-E06 -160930121,71,16036677,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:46:41 AM,04/02/2016 12:46:41 AM,04/02/2016 12:48:41 AM,04/02/2016 12:48:47 AM,04/02/2016 12:54:22 AM,04/02/2016 01:12:45 AM,04/02/2016 01:28:00 AM,Code 2 Transport,04/02/2016 02:09:55 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160930121-71 -153423760,60,15131778,Medical Incident,12/08/2015,12/08/2015,12/08/2015 09:29:33 PM,12/08/2015 09:31:24 PM,12/08/2015 09:31:30 PM,12/08/2015 09:31:39 PM,12/08/2015 09:36:08 PM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Patient Declined Transport,12/08/2015 10:22:22 PM,1400 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7497103478042, -122.420361382102)",153423760-60 -142361358,KM09,14082025,Medical Incident,08/24/2014,08/24/2014,08/24/2014 10:27:12 AM,08/24/2014 10:27:42 AM,08/24/2014 10:27:58 AM,08/24/2014 10:28:39 AM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,Other,08/24/2014 10:35:16 AM,100 Block of POWELL ST,San Francisco,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",142361358-KM09 -150751048,55,15028719,Medical Incident,03/16/2015,03/16/2015,03/16/2015 10:00:36 AM,03/16/2015 10:01:40 AM,03/16/2015 10:04:02 AM,03/16/2015 10:04:02 AM,03/16/2015 10:04:02 AM,03/16/2015 10:22:00 AM,03/16/2015 10:46:16 AM,Code 2 Transport,03/16/2015 11:16:25 AM,14TH ST/MISSION ST,San Francisco,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7682736543413, -122.419981513232)",150751048-55 -141931355,E35,14066911,Medical Incident,07/12/2014,07/12/2014,07/12/2014 11:54:44 AM,07/12/2014 11:56:53 AM,07/12/2014 11:57:41 AM,07/12/2014 12:00:34 PM,07/12/2014 12:00:34 PM,04/25/2016 01:16:15 PM,04/25/2016 01:16:15 PM,Code 2 Transport,07/12/2014 12:20:36 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",141931355-E35 -161003748,68,16039999,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:58:20 PM,04/10/2016 12:00:04 AM,04/10/2016 12:00:27 AM,04/10/2016 12:00:54 AM,04/10/2016 12:08:50 AM,04/10/2016 12:20:16 AM,04/10/2016 12:30:33 AM,Code 2 Transport,04/10/2016 01:09:33 AM,GUERRERO ST/MARKET ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7707477455746, -122.424852598702)",161003748-68 -151482631,E37,15056416,Administrative,05/28/2015,05/28/2015,05/28/2015 05:17:58 PM,05/28/2015 05:18:09 PM,05/28/2015 05:24:16 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Fire,05/28/2015 05:24:46 PM,700 Block of WISCONSIN ST,San Francisco,94107,B10,37,2521,3,3,3,false,,1,ENGINE,1,10,10,Potrero Hill,"(37.7585715950261, -122.399129212862)",151482631-E37 -150552185,E29,15021147,Medical Incident,02/24/2015,02/24/2015,02/24/2015 02:27:07 PM,02/24/2015 02:29:08 PM,02/24/2015 02:29:58 PM,02/24/2015 02:31:16 PM,02/24/2015 02:34:49 PM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,No Merit,02/24/2015 02:50:03 PM,1300 Block of MINNA ST,San Francisco,94103,B02,36,5215,3,3,3,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7675150681632, -122.419217320585)",150552185-E29 -141512831,E33,14051989,Medical Incident,05/31/2014,05/31/2014,05/31/2014 07:12:20 PM,05/31/2014 07:14:50 PM,05/31/2014 07:15:14 PM,05/31/2014 07:17:00 PM,05/31/2014 07:36:45 PM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Code 2 Transport,05/31/2014 07:39:45 PM,0 Block of BYXBEE ST,San Francisco,94132,B09,33,8417,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7151871141115, -122.469877273583)",141512831-E33 -152072922,78,15078990,Medical Incident,07/26/2015,07/26/2015,07/26/2015 06:21:46 PM,07/26/2015 06:22:33 PM,07/26/2015 06:23:42 PM,07/26/2015 06:24:31 PM,07/26/2015 06:34:10 PM,07/26/2015 06:56:04 PM,07/26/2015 07:13:25 PM,Code 2 Transport,07/26/2015 08:05:35 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",152072922-78 -151131478,89,15042670,Medical Incident,04/23/2015,04/23/2015,04/23/2015 11:31:55 AM,04/23/2015 11:33:24 AM,04/23/2015 11:33:49 AM,04/23/2015 11:34:23 AM,04/23/2015 11:38:55 AM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,No Merit,04/23/2015 11:41:40 AM,JONES ST/SUTTER ST,San Francisco,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7885982027896, -122.413541442382)",151131478-89 -142240134,B04,14077579,Alarms,08/12/2014,08/11/2014,08/12/2014 01:14:52 AM,08/12/2014 01:16:13 AM,08/12/2014 01:16:52 AM,08/12/2014 01:18:35 AM,08/12/2014 01:21:17 AM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Fire,08/12/2014 01:25:06 AM,1800 Block of JACKSON ST,San Francisco,94109,B04,38,3252,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7936758446796, -122.425525660789)",142240134-B04 -142853144,T07,14100564,Alarms,10/12/2014,10/12/2014,10/12/2014 06:49:54 PM,10/12/2014 06:51:11 PM,10/12/2014 06:54:02 PM,10/12/2014 06:54:02 PM,10/12/2014 06:54:02 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/12/2014 06:55:20 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",142853144-T07 -150833565,E18,15031860,Traffic Collision,03/24/2015,03/24/2015,03/24/2015 08:49:59 PM,03/24/2015 08:56:16 PM,03/24/2015 08:56:43 PM,03/24/2015 08:57:52 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,Code 2 Transport,03/24/2015 08:58:38 PM,37TH AV/ANZA ST,San Francisco,94121,B07,34,7255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7775793711275, -122.4974545237)",150833565-E18 -141100008,E19,14036966,Medical Incident,04/20/2014,04/19/2014,04/20/2014 12:23:39 AM,04/20/2014 12:23:39 AM,04/20/2014 12:24:07 AM,04/20/2014 12:26:11 AM,04/20/2014 12:29:01 AM,04/20/2014 12:42:33 AM,04/25/2016 01:17:47 PM,Code 3 Transport,04/20/2014 01:03:39 AM,200 Block of GONZALEZ DR,SAN FRANCISCO,94132,B08,19,8423,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7170812139508, -122.475545858001)",141100008-E19 -143231825,RWC2,14114373,Water Rescue,11/19/2014,11/19/2014,11/19/2014 02:18:40 PM,11/19/2014 02:19:57 PM,11/19/2014 02:20:41 PM,11/19/2014 02:23:46 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Code 2 Transport,11/19/2014 03:52:43 PM,0 Block of YACHT RD,San Francisco,94123,B04,16,4215,3,3,3,false,Fire,1,SUPPORT,10,None,2,Marina,"(37.8067582085576, -122.446916219003)",143231825-RWC2 -153263502,E17,15125668,Medical Incident,11/22/2015,11/22/2015,11/22/2015 10:32:59 PM,11/22/2015 10:34:42 PM,11/22/2015 10:54:11 PM,11/22/2015 10:56:12 PM,11/22/2015 10:59:33 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,Code 3 Transport,11/23/2015 12:24:28 AM,200 Block of CASHMERE ST,San Francisco,94124,B10,17,6517,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7362537955292, -122.387097160369)",153263502-E17 -160923833,68,16036639,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:41:36 PM,04/01/2016 10:43:08 PM,04/01/2016 10:43:26 PM,04/01/2016 10:43:53 PM,04/01/2016 10:49:33 PM,04/01/2016 11:00:32 PM,04/01/2016 11:18:09 PM,Code 2 Transport,04/02/2016 12:00:17 AM,300 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6374,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",160923833-68 -150400363,82,15015467,Medical Incident,02/09/2015,02/08/2015,02/09/2015 05:49:02 AM,02/09/2015 05:52:05 AM,02/09/2015 05:53:07 AM,02/09/2015 05:53:16 AM,02/09/2015 06:09:52 AM,02/09/2015 06:27:39 AM,02/09/2015 06:27:58 AM,Code 2 Transport,02/09/2015 07:26:21 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",150400363-82 -160982722,66,16039016,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:24:20 PM,04/07/2016 04:24:20 PM,04/07/2016 04:50:17 PM,04/07/2016 04:53:38 PM,04/07/2016 05:15:32 PM,04/07/2016 05:34:25 PM,04/07/2016 06:01:37 PM,Code 2 Transport,04/07/2016 06:30:33 PM,2200 Block of LOMBARD ST,San Francisco,94123,B04,16,3566,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7994131607449, -122.438492113191)",160982722-66 -150571872,56,15021797,Medical Incident,02/26/2015,02/26/2015,02/26/2015 01:35:09 PM,02/26/2015 01:35:45 PM,02/26/2015 01:36:05 PM,02/26/2015 01:36:20 PM,02/26/2015 01:43:35 PM,02/26/2015 02:04:31 PM,02/26/2015 02:21:25 PM,Code 2 Transport,02/26/2015 03:05:03 PM,2900 Block of LAKE ST,San Francisco,94121,B07,14,7236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7853244831421, -122.491853669474)",150571872-56 -160961106,53,16037946,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:04:11 AM,04/05/2016 10:07:46 AM,04/05/2016 10:10:13 AM,04/05/2016 10:10:23 AM,04/05/2016 10:15:57 AM,04/05/2016 10:19:49 AM,04/05/2016 10:52:04 AM,Code 2 Transport,04/05/2016 11:27:54 AM,800 Block of 41ST AVE,San Francisco,94121,B07,34,7262,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7727231931217, -122.501326131419)",160961106-53 -153432778,E44,15132095,Medical Incident,12/09/2015,12/09/2015,12/09/2015 04:50:16 PM,12/09/2015 04:50:39 PM,12/09/2015 04:51:43 PM,12/09/2015 04:52:45 PM,12/09/2015 04:57:00 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 05:21:33 PM,500 Block of SAWYER ST,San Francisco,94134,B09,44,6251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7106565875609, -122.415453077343)",153432778-E44 -160922116,63,16036476,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 02:54:35 PM,04/01/2016 02:54:35 PM,04/01/2016 02:55:35 PM,04/01/2016 02:55:35 PM,04/01/2016 02:59:14 PM,04/01/2016 03:12:49 PM,04/01/2016 03:42:49 PM,Code 2 Transport,04/01/2016 03:55:55 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",160922116-63 -160953982,52,16037815,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:28:13 PM,04/04/2016 10:29:34 PM,04/04/2016 10:29:54 PM,04/04/2016 10:30:03 PM,04/04/2016 10:35:48 PM,04/04/2016 10:59:28 PM,04/04/2016 11:06:33 PM,Code 3 Transport,04/04/2016 11:42:22 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160953982-52 -161001060,AM02,16039691,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:56:25 AM,04/09/2016 09:56:53 AM,04/09/2016 09:57:02 AM,04/09/2016 09:57:40 AM,04/09/2016 10:08:04 AM,04/09/2016 10:24:34 AM,04/09/2016 10:43:28 AM,Code 2 Transport,04/09/2016 11:14:35 AM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",161001060-AM02 -160922854,75,16036548,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:52:13 PM,04/01/2016 05:52:58 PM,04/01/2016 05:54:16 PM,04/01/2016 05:54:22 PM,04/01/2016 06:04:11 PM,04/01/2016 06:17:04 PM,04/01/2016 06:32:50 PM,Code 2 Transport,04/01/2016 07:13:36 PM,3RD ST/NEWCOMB AV,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",160922854-75 -160961612,55,16037993,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:07:31 PM,04/05/2016 12:08:48 PM,04/05/2016 12:09:01 PM,04/05/2016 12:09:58 PM,04/05/2016 12:13:34 PM,04/05/2016 12:26:06 PM,04/05/2016 12:38:24 PM,Code 2 Transport,04/05/2016 01:11:32 PM,300 Block of MADRID ST,San Francisco,94112,B09,43,6133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7239178664447, -122.430983870604)",160961612-55 -152830371,58,15108514,Medical Incident,10/10/2015,10/09/2015,10/10/2015 02:08:44 AM,10/10/2015 02:11:34 AM,10/10/2015 02:12:07 AM,10/10/2015 02:13:52 AM,10/10/2015 02:17:51 AM,10/10/2015 02:20:58 AM,10/10/2015 02:29:25 AM,Code 2 Transport,10/10/2015 03:03:49 AM,MISSION ST/14TH ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",152830371-58 -142732669,E13,14095793,Medical Incident,09/30/2014,09/30/2014,09/30/2014 04:57:16 PM,09/30/2014 04:57:54 PM,09/30/2014 04:58:26 PM,09/30/2014 04:59:29 PM,09/30/2014 05:02:17 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Code 2 Transport,09/30/2014 05:19:12 PM,1000 Block of THE EMBARCADERO,San Francisco,94111,B01,13,927,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",142732669-E13 -141341451,E03,14045685,Medical Incident,05/14/2014,05/14/2014,05/14/2014 11:13:03 AM,05/14/2014 11:14:16 AM,05/14/2014 11:15:48 AM,05/14/2014 11:16:04 AM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Code 2 Transport,05/14/2014 11:20:29 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",141341451-E03 -143610233,E01,14128997,Medical Incident,12/27/2014,12/26/2014,12/27/2014 02:01:42 AM,12/27/2014 02:02:41 AM,12/27/2014 02:03:45 AM,12/27/2014 02:05:37 AM,12/27/2014 02:08:54 AM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Code 2 Transport,12/27/2014 02:13:37 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",143610233-E01 -160981462,65,16038875,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:03:48 AM,04/07/2016 11:05:33 AM,04/07/2016 11:08:48 AM,04/07/2016 11:08:54 AM,04/07/2016 11:20:28 AM,04/07/2016 11:29:39 AM,04/07/2016 11:41:35 AM,Code 2 Transport,04/07/2016 12:19:44 PM,0 Block of LELAND AVE,San Francisco,94134,B10,44,6255,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7113387848327, -122.404262861765)",160981462-65 -160921507,53,16036421,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:06:55 PM,04/01/2016 12:09:20 PM,04/01/2016 12:09:34 PM,04/01/2016 12:11:01 PM,04/01/2016 12:19:54 PM,04/01/2016 12:48:56 PM,04/01/2016 01:21:13 PM,Code 2 Transport,04/01/2016 01:49:03 PM,41ST AV/FULTON ST,San Francisco,94122,B07,34,7262,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7717874120927, -122.501327709306)",160921507-53 -142182817,T13,14075673,Elevator / Escalator Rescue,08/06/2014,08/06/2014,08/06/2014 05:04:46 PM,08/06/2014 05:06:35 PM,08/06/2014 05:08:07 PM,08/06/2014 05:09:50 PM,08/06/2014 05:11:42 PM,04/25/2016 01:15:49 PM,04/25/2016 01:15:49 PM,Fire,08/06/2014 05:57:15 PM,900 Block of MONTGOMERY ST,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.7975870868314, -122.403804875894)",142182817-T13 -150283514,KM07,15010926,Medical Incident,01/28/2015,01/28/2015,01/28/2015 08:44:32 PM,01/28/2015 08:45:36 PM,01/28/2015 08:46:40 PM,01/28/2015 08:47:21 PM,01/28/2015 08:56:26 PM,01/28/2015 09:14:18 PM,01/28/2015 09:21:22 PM,Code 2 Transport,01/28/2015 09:54:52 PM,800 Block of 28TH AVE,San Francisco,94121,B07,14,7223,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7733534217521, -122.487535190044)",150283514-KM07 -160992452,AM16,16039377,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:07:07 PM,04/08/2016 04:09:18 PM,04/08/2016 04:09:52 PM,04/08/2016 04:10:36 PM,04/08/2016 04:13:09 PM,04/08/2016 04:27:23 PM,04/08/2016 04:55:47 PM,Code 2 Transport,04/08/2016 05:10:57 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160992452-AM16 -160952064,KM05,16037656,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:56:35 PM,04/04/2016 01:57:15 PM,04/04/2016 01:57:47 PM,04/04/2016 01:59:54 PM,04/04/2016 02:04:12 PM,04/04/2016 02:20:55 PM,04/04/2016 02:34:55 PM,Code 2 Transport,04/04/2016 03:02:28 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160952064-KM05 -150791363,E44,15030255,Medical Incident,03/20/2015,03/20/2015,03/20/2015 11:29:10 AM,03/20/2015 11:30:35 AM,03/20/2015 11:30:52 AM,03/20/2015 11:31:13 AM,03/20/2015 11:39:58 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,No Merit,03/20/2015 12:23:03 PM,1200 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7211257483752, -122.389791072632)",150791363-E44 -143153214,E35,14111716,Alarms,11/11/2014,11/11/2014,11/11/2014 08:56:28 PM,11/11/2014 08:57:32 PM,11/11/2014 08:58:57 PM,11/11/2014 09:00:04 PM,11/11/2014 09:01:43 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Fire,11/11/2014 09:10:49 PM,0 Block of FOLSOM ST,San Francisco,94105,B03,35,2112,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7904750361645, -122.39055604599)",143153214-E35 -150300344,E11,15011432,Medical Incident,01/30/2015,01/29/2015,01/30/2015 03:17:43 AM,01/30/2015 03:19:06 AM,01/30/2015 03:19:25 AM,01/30/2015 03:21:11 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Code 2 Transport,01/30/2015 03:22:43 AM,26TH ST/MISSION ST,San Francisco,94110,B06,11,5613,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",150300344-E11 -160992148,54,16039342,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:59:31 PM,04/08/2016 02:59:31 PM,04/08/2016 03:08:54 PM,04/08/2016 03:09:42 PM,04/08/2016 03:26:00 PM,04/08/2016 03:33:15 PM,04/08/2016 04:19:18 PM,Code 2 Transport,04/08/2016 04:43:12 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160992148-54 -161002215,52,16039829,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:17:33 PM,04/09/2016 04:19:08 PM,04/09/2016 04:19:23 PM,04/09/2016 04:19:29 PM,04/09/2016 04:27:48 PM,04/09/2016 04:47:14 PM,04/09/2016 05:07:54 PM,Code 2 Transport,04/09/2016 05:41:38 PM,0 Block of NIAGARA AVE,San Francisco,94112,B09,15,8333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7162328374833, -122.44261036378)",161002215-52 -160971067,60,16038346,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:30:06 AM,04/06/2016 09:31:37 AM,04/06/2016 09:31:51 AM,04/06/2016 09:32:29 AM,04/06/2016 09:39:48 AM,04/06/2016 10:12:47 AM,04/06/2016 10:43:40 AM,Code 2 Transport,04/06/2016 11:32:39 AM,1500 Block of 22ND AVE,San Francisco,94122,B08,22,7447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7587548266251, -122.480079443397)",160971067-60 -141512944,E03,14052005,Medical Incident,05/31/2014,05/31/2014,05/31/2014 07:49:08 PM,05/31/2014 07:52:25 PM,05/31/2014 07:53:08 PM,05/31/2014 07:57:00 PM,05/31/2014 07:57:13 PM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Code 2 Transport,05/31/2014 08:02:22 PM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",141512944-E03 -143223421,73,14114167,Medical Incident,11/18/2014,11/18/2014,11/18/2014 08:36:11 PM,11/18/2014 08:38:02 PM,11/18/2014 08:39:35 PM,11/18/2014 08:39:49 PM,11/18/2014 08:46:12 PM,11/18/2014 09:07:05 PM,11/18/2014 09:12:28 PM,Code 2 Transport,11/18/2014 09:55:08 PM,1200 Block of 3RD AVE,San Francisco,94122,B05,12,7324,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.765714323066, -122.459915622619)",143223421-73 -160962969,AM08,16038113,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:21:45 PM,04/05/2016 05:24:28 PM,04/05/2016 05:24:44 PM,04/05/2016 05:25:14 PM,04/05/2016 05:30:03 PM,04/05/2016 05:57:57 PM,04/05/2016 06:02:41 PM,Code 3 Transport,04/05/2016 06:40:30 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160962969-AM08 -160953606,81,16037791,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:34:54 PM,04/04/2016 08:36:16 PM,04/04/2016 08:53:34 PM,04/04/2016 08:53:43 PM,04/04/2016 09:01:10 PM,04/04/2016 09:17:32 PM,04/04/2016 09:33:28 PM,Code 2 Transport,04/04/2016 09:56:47 PM,300 Block of HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7839909656227, -122.415908808889)",160953606-81 -151121662,79,15042306,Medical Incident,04/22/2015,04/22/2015,04/22/2015 12:03:53 PM,04/22/2015 12:03:53 PM,04/22/2015 12:06:27 PM,04/22/2015 12:06:46 PM,04/22/2015 12:27:08 PM,04/22/2015 12:42:03 PM,04/22/2015 12:57:04 PM,Code 2 Transport,04/22/2015 01:39:46 PM,UNION ST/FRANKLIN ST,San Francisco,94123,B04,16,3233,2,2,2,false,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7983435358641, -122.42562550508)",151121662-79 -152543642,RC3,15097308,Medical Incident,09/11/2015,09/11/2015,09/11/2015 09:15:02 PM,09/11/2015 09:15:47 PM,09/11/2015 09:16:11 PM,09/11/2015 09:17:23 PM,09/11/2015 09:20:54 PM,09/11/2015 09:27:39 PM,04/25/2016 01:08:24 PM,Code 3 Transport,09/11/2015 09:42:51 PM,25TH ST/HARRISON ST,San Francisco,94110,B06,7,5533,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7510338955654, -122.411746226036)",152543642-RC3 -152464055,T05,15094028,Alarms,09/03/2015,09/03/2015,09/03/2015 10:18:39 PM,09/03/2015 10:20:28 PM,09/03/2015 10:20:49 PM,09/03/2015 10:22:47 PM,09/03/2015 10:23:48 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Fire,09/03/2015 10:42:12 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Alarm,1,TRUCK,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",152464055-T05 -160983744,60,16039115,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:26:49 PM,04/07/2016 09:30:17 PM,04/07/2016 09:30:48 PM,04/07/2016 09:31:00 PM,04/07/2016 09:41:32 PM,04/07/2016 09:59:55 PM,04/07/2016 10:10:47 PM,Code 2 Transport,04/07/2016 10:50:34 PM,900 Block of THE EMBARCADERO,San Francisco,94111,B01,13,923,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",160983744-60 -143010574,E14,14106160,Medical Incident,10/28/2014,10/27/2014,10/28/2014 06:53:24 AM,10/28/2014 06:54:37 AM,10/28/2014 06:54:48 AM,10/28/2014 06:56:15 AM,10/28/2014 07:00:05 AM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Code 2 Transport,10/28/2014 07:10:09 AM,100 Block of 18TH AVE,San Francisco,94121,B07,31,7163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7851542988251, -122.477507607941)",143010574-E14 -160962226,KM11,16038048,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:30:40 PM,04/05/2016 02:34:11 PM,04/05/2016 02:35:07 PM,04/05/2016 02:35:53 PM,04/05/2016 02:44:12 PM,04/05/2016 03:13:25 PM,04/05/2016 03:23:13 PM,Code 2 Transport,04/05/2016 04:02:02 PM,100 Block of PARIS ST,San Francisco,94112,B09,43,6131,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7261785694806, -122.431450249416)",160962226-KM11 -143060539,E25,14108191,Medical Incident,11/02/2014,11/01/2014,11/02/2014 02:58:23 AM,11/02/2014 02:59:03 AM,11/02/2014 02:59:59 AM,11/02/2014 03:01:29 AM,11/02/2014 03:03:08 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/02/2014 03:15:53 AM,3RD ST/DAVIDSON AV,San Francisco,94124,B10,25,6457,2,3,3,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7435279293656, -122.387629454703)",143060539-E25 -153054156,E03,15117352,Medical Incident,11/01/2015,11/01/2015,11/01/2015 09:34:16 PM,11/01/2015 09:35:23 PM,11/01/2015 09:35:39 PM,11/01/2015 09:36:44 PM,11/01/2015 09:38:53 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Code 2 Transport,11/01/2015 09:42:40 PM,EDDY ST/HYDE ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",153054156-E03 -141311605,KM11,14044574,Traffic Collision,05/11/2014,05/11/2014,05/11/2014 01:20:49 PM,05/11/2014 01:21:44 PM,05/11/2014 01:24:29 PM,05/11/2014 01:25:54 PM,05/11/2014 01:47:20 PM,05/11/2014 01:54:46 PM,05/11/2014 02:13:53 PM,Code 2 Transport,05/11/2014 02:57:57 PM,OCEAN AV/DORADO TR,San Francisco,94112,B09,15,8456,A,A,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7249497021259, -122.461210546404)",141311605-KM11 -160953647,72,16037797,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:45:45 PM,04/04/2016 08:47:20 PM,04/04/2016 08:50:17 PM,04/04/2016 08:50:17 PM,04/04/2016 08:58:10 PM,04/04/2016 09:06:37 PM,04/04/2016 09:29:57 PM,Code 2 Transport,04/04/2016 10:09:34 PM,600 Block of 25TH ST,San Francisco,94124,B10,25,2732,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7529754653558, -122.384393472823)",160953647-72 -152421496,E26,15092278,Other,08/30/2015,08/30/2015,08/30/2015 11:37:55 AM,08/30/2015 11:39:08 AM,08/30/2015 11:39:20 AM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 11:41:26 AM,DIAMOND ST/DIAMOND HEIGHTS BL,San Francisco,94131,B06,26,8157,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7382879698388, -122.437398204407)",152421496-E26 -160940415,88,16037134,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:31:33 AM,04/03/2016 02:31:33 AM,04/03/2016 02:32:09 AM,04/03/2016 02:32:16 AM,04/03/2016 02:36:18 AM,04/03/2016 02:48:19 AM,04/03/2016 03:03:00 AM,Code 2 Transport,04/03/2016 03:43:32 AM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160940415-88 -151130100,75,15042537,Medical Incident,04/23/2015,04/22/2015,04/23/2015 12:47:45 AM,04/23/2015 12:47:45 AM,04/23/2015 12:48:07 AM,04/23/2015 12:48:42 AM,04/23/2015 01:13:07 AM,04/23/2015 01:26:22 AM,04/23/2015 01:51:13 AM,Code 2 Transport,04/23/2015 02:30:30 AM,100 Block of NEW MONTGOMERY ST,San Francisco,94103,B03,1,2157,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7867834304358, -122.399787632605)",151130100-75 -150703623,E29,15026894,Structure Fire,03/11/2015,03/11/2015,03/11/2015 08:57:14 PM,03/11/2015 08:58:42 PM,03/11/2015 08:58:58 PM,03/11/2015 08:59:07 PM,03/11/2015 08:59:07 PM,04/25/2016 01:11:47 PM,04/25/2016 01:11:47 PM,Fire,03/11/2015 09:57:16 PM,0 Block of LUCERNE ST,San Francisco,94103,B03,8,2256,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7736261244738, -122.401715956179)",150703623-E29 -160922612,86,16036528,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:02:44 PM,04/01/2016 05:02:44 PM,04/01/2016 05:03:20 PM,04/01/2016 05:03:28 PM,04/01/2016 05:16:28 PM,04/01/2016 05:35:05 PM,04/01/2016 05:56:08 PM,Code 2 Transport,04/01/2016 06:26:53 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7594297986956, -122.419198310755)",160922612-86 -160990443,88,16039192,Medical Incident,04/08/2016,04/07/2016,04/08/2016 05:56:16 AM,04/08/2016 05:57:57 AM,04/08/2016 05:59:35 AM,04/08/2016 05:59:56 AM,04/08/2016 06:04:23 AM,04/08/2016 06:23:16 AM,04/08/2016 06:36:55 AM,Code 2 Transport,04/08/2016 07:10:05 AM,700 Block of BACON ST,San Francisco,94134,B10,42,6335,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7259026143465, -122.409997905523)",160990443-88 -143642022,E05,14130241,Medical Incident,12/30/2014,12/30/2014,12/30/2014 03:01:42 PM,12/30/2014 03:02:52 PM,12/30/2014 03:03:19 PM,12/30/2014 03:05:06 PM,12/30/2014 03:10:32 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 03:40:44 PM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",143642022-E05 -141250080,E05,14042256,Alarms,05/05/2014,05/04/2014,05/05/2014 07:08:15 AM,05/05/2014 07:08:15 AM,05/05/2014 07:08:27 AM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 07:09:51 AM,300 Block of GOLDEN GATE AVE,SAN FRANCISCO,94102,B02,3,1644,,3,3,true,Alarm,1,ENGINE,4,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",141250080-E05 -143374068,70,14119757,Medical Incident,12/03/2014,12/03/2014,12/03/2014 10:31:12 PM,12/03/2014 10:31:12 PM,12/03/2014 10:31:29 PM,12/03/2014 10:32:13 PM,12/03/2014 10:39:58 PM,12/03/2014 10:58:14 PM,12/03/2014 11:17:53 PM,Code 2 Transport,12/03/2014 11:47:20 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",143374068-70 -141712369,RWC2,14059104,Water Rescue,06/20/2014,06/20/2014,06/20/2014 04:01:25 PM,06/20/2014 04:02:57 PM,06/20/2014 04:04:45 PM,06/20/2014 04:15:52 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Fire,06/20/2014 04:53:37 PM,0 Block of YACHT RD,San Francisco,94123,B04,16,4215,3,3,3,false,Fire,1,SUPPORT,7,None,2,Marina,"(37.8067582085576, -122.446916219003)",141712369-RWC2 -160962135,74,16038041,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:11:07 PM,04/05/2016 02:12:21 PM,04/05/2016 02:13:15 PM,04/05/2016 02:13:26 PM,04/05/2016 02:32:10 PM,04/05/2016 02:48:13 PM,04/05/2016 02:59:11 PM,Code 2 Transport,04/05/2016 03:39:33 PM,HYDE ST/JEFFERSON ST,San Francisco,94109,B01,28,1616,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,2,Russian Hill,"(37.8075901055183, -122.420743268989)",160962135-74 -151240132,52,15046862,Medical Incident,05/04/2015,05/03/2015,05/04/2015 01:23:06 AM,05/04/2015 01:30:38 AM,05/04/2015 01:32:37 AM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,Code 2 Transport,05/04/2015 01:33:32 AM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",151240132-52 -151204062,64,15045665,Medical Incident,04/30/2015,04/30/2015,04/30/2015 11:09:08 PM,04/30/2015 11:09:08 PM,04/30/2015 11:09:49 PM,04/30/2015 11:09:59 PM,04/30/2015 11:31:23 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Patient Declined Transport,04/30/2015 11:51:37 PM,800 Block of VALLEJO ST,San Francisco,94133,B01,2,1421,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.798323215746, -122.411286922682)",151204062-64 -160980786,AM02,16038809,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:50:21 AM,04/07/2016 07:50:21 AM,04/07/2016 07:51:48 AM,04/07/2016 07:54:57 AM,04/07/2016 07:54:58 AM,04/07/2016 08:06:18 AM,04/07/2016 08:11:58 AM,Code 2 Transport,04/07/2016 08:50:19 AM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",160980786-AM02 -153002567,KM14,15115185,Medical Incident,10/27/2015,10/27/2015,10/27/2015 04:30:09 PM,10/27/2015 04:30:09 PM,10/27/2015 04:31:09 PM,10/27/2015 04:31:43 PM,10/27/2015 04:36:24 PM,10/27/2015 04:55:49 PM,10/27/2015 05:39:17 PM,Code 2 Transport,10/27/2015 06:14:59 PM,200 Block of EVELYN WY,San Francisco,94127,B09,39,8655,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7426820883837, -122.449417081742)",153002567-KM14 -160953872,70,16037806,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:56:18 PM,04/04/2016 09:58:20 PM,04/04/2016 09:58:38 PM,04/04/2016 09:58:46 PM,04/04/2016 10:03:23 PM,04/04/2016 10:20:07 PM,04/04/2016 10:42:44 PM,Code 2 Transport,04/04/2016 11:01:20 PM,100 Block of GUTTENBERG ST,San Francisco,94112,B09,43,6218,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7111697171207, -122.443592479)",160953872-70 -152111274,AM12,15080313,Medical Incident,07/30/2015,07/30/2015,07/30/2015 10:50:24 AM,07/30/2015 10:52:16 AM,07/30/2015 10:52:44 AM,07/30/2015 10:53:37 AM,07/30/2015 10:59:32 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Patient Declined Transport,07/30/2015 11:37:26 AM,200 Block of BARNEVELD AVE,San Francisco,94124,B10,9,6412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7450485716234, -122.402839684407)",152111274-AM12 -160980363,62,16038766,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:21:31 AM,04/07/2016 03:22:40 AM,04/07/2016 03:23:54 AM,04/07/2016 03:24:18 AM,04/07/2016 03:32:45 AM,04/07/2016 03:51:04 AM,04/07/2016 04:11:46 AM,Code 2 Transport,04/07/2016 04:27:54 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160980363-62 -161000381,88,16039604,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:45:18 AM,04/09/2016 02:47:44 AM,04/09/2016 02:47:53 AM,04/09/2016 02:48:05 AM,04/09/2016 02:52:39 AM,04/09/2016 03:02:29 AM,04/09/2016 03:28:22 AM,Code 2 Transport,04/09/2016 03:58:26 AM,1200 Block of FOLSOM ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7743416410507, -122.410787635785)",161000381-88 -160940417,85,16037135,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:30:02 AM,04/03/2016 02:32:14 AM,04/03/2016 02:32:32 AM,04/03/2016 02:32:42 AM,04/03/2016 02:43:48 AM,04/03/2016 03:09:14 AM,04/03/2016 03:26:20 AM,Code 2 Transport,04/03/2016 03:55:24 AM,500 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",160940417-85 -160922575,57,16036523,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 04:52:53 PM,04/01/2016 04:52:53 PM,04/01/2016 04:53:02 PM,04/01/2016 04:53:16 PM,04/01/2016 04:58:00 PM,04/01/2016 05:34:25 PM,04/01/2016 06:09:34 PM,Code 2 Transport,04/01/2016 06:31:00 PM,EUGENIA AV/COLERIDGE ST,San Francisco,94110,B06,32,5653,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7417501198439, -122.420979819658)",160922575-57 -141150016,E01,14038676,,04/25/2014,04/24/2014,04/25/2014 12:56:00 AM,04/25/2014 12:57:00 AM,04/25/2014 12:59:00 AM,04/25/2014 12:59:00 AM,04/25/2014 12:59:00 AM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,SFPD,04/25/2014 01:08:00 AM,1000 Block of MISSION ST,SAN FRANCISCO,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",141150016-E01 -152472723,88,15094321,Traffic Collision,09/04/2015,09/04/2015,09/04/2015 03:57:13 PM,09/04/2015 03:57:13 PM,09/04/2015 03:57:56 PM,09/04/2015 03:58:23 PM,09/04/2015 04:01:50 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Patient Declined Transport,09/04/2015 04:26:05 PM,EVANS AV/MENDELL ST,San Francisco,94124,B10,25,6464,2,B,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7408975175277, -122.384705541488)",152472723-88 -153293955,AM20,15126804,Medical Incident,11/25/2015,11/25/2015,11/25/2015 10:20:14 PM,11/25/2015 10:20:14 PM,11/25/2015 10:21:22 PM,11/25/2015 10:21:52 PM,11/25/2015 10:26:58 PM,11/25/2015 10:43:03 PM,11/25/2015 10:53:28 PM,Code 2 Transport,11/25/2015 11:42:51 PM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",153293955-AM20 -141622468,KM14,14055930,Medical Incident,06/11/2014,06/11/2014,06/11/2014 04:40:37 PM,06/11/2014 04:42:26 PM,06/11/2014 04:43:50 PM,06/11/2014 04:44:14 PM,06/11/2014 04:55:35 PM,06/11/2014 04:55:41 PM,06/11/2014 05:05:10 PM,Code 2 Transport,06/11/2014 05:23:31 PM,1300 Block of TREAT WAY,San Francisco,94110,B06,7,5533,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7491304830529, -122.41259458806)",141622468-KM14 -153300743,E09,15126907,Medical Incident,11/26/2015,11/26/2015,11/26/2015 08:45:38 AM,11/26/2015 08:46:18 AM,11/26/2015 08:47:28 AM,11/26/2015 08:48:58 AM,11/26/2015 08:52:13 AM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 3 Transport,11/26/2015 09:06:34 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",153300743-E09 -141610881,65,14055426,Medical Incident,06/10/2014,06/10/2014,06/10/2014 09:06:46 AM,06/10/2014 09:09:11 AM,06/10/2014 09:10:35 AM,06/10/2014 09:10:35 AM,06/10/2014 09:23:13 AM,06/10/2014 09:46:10 AM,06/10/2014 10:18:14 AM,Code 2 Transport,06/10/2014 11:04:50 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",141610881-65 -152603663,B02,15099544,Alarms,09/17/2015,09/17/2015,09/17/2015 08:42:53 PM,09/17/2015 08:44:42 PM,09/17/2015 08:44:57 PM,09/17/2015 08:45:52 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Fire,09/17/2015 08:50:27 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",152603663-B02 -153290288,E03,15126482,Medical Incident,11/25/2015,11/24/2015,11/25/2015 03:41:04 AM,11/25/2015 03:42:42 AM,11/25/2015 03:47:11 AM,11/25/2015 03:47:11 AM,11/25/2015 03:48:28 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Gone on Arrival,11/25/2015 03:54:29 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",153290288-E03 -143510802,E34,14125296,Outside Fire,12/17/2014,12/17/2014,12/17/2014 08:30:19 AM,12/17/2014 08:32:05 AM,12/17/2014 08:32:46 AM,12/17/2014 08:34:13 AM,12/17/2014 08:37:17 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/17/2014 08:54:29 AM,FULTON ST/38TH AV,San Francisco,94121,B07,34,7253,3,3,3,false,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7719342231841, -122.498113855478)",143510802-E34 -143452361,RC2,14122934,Aircraft Emergency,12/11/2014,12/11/2014,12/11/2014 02:58:25 PM,12/11/2014 02:59:09 PM,12/11/2014 03:00:49 PM,12/11/2014 03:02:05 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Cancelled,12/11/2014 03:06:23 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B09,44,6913,3,3,3,true,,1,RESCUE CAPTAIN,6,None,None,None,"(37.6168823239251, -122.384094238098)",143452361-RC2 -153021895,52,15115847,Traffic Collision,10/29/2015,10/29/2015,10/29/2015 01:00:36 PM,10/29/2015 01:00:36 PM,10/29/2015 01:05:45 PM,10/29/2015 01:06:06 PM,10/29/2015 01:18:55 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/29/2015 02:17:42 PM,"80 WB BAY BR Z YB/TREASURE ISLAND RD, YB",Yerba Buena,94133,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.806357256372, -122.40814435033)",153021895-52 -160992664,76,16039394,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:02:52 PM,04/08/2016 05:03:25 PM,04/08/2016 05:03:53 PM,04/08/2016 05:03:59 PM,04/08/2016 05:10:07 PM,04/08/2016 05:24:58 PM,04/08/2016 05:34:33 PM,Code 2 Transport,04/08/2016 06:21:46 PM,GEARY BL/STEINER ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",160992664-76 -150081781,T18,15003130,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:50:57 PM,01/08/2015 12:51:49 PM,01/08/2015 12:52:08 PM,01/08/2015 12:53:45 PM,01/08/2015 12:55:37 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 01:16:04 PM,2200 Block of 39TH AVE,San Francisco,94116,B08,18,7621,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7449066277285, -122.497245831134)",150081781-T18 -141740634,E01,14059929,Medical Incident,06/23/2014,06/23/2014,06/23/2014 08:09:59 AM,06/23/2014 08:10:46 AM,06/23/2014 08:12:07 AM,06/23/2014 08:13:43 AM,06/23/2014 08:25:00 AM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Code 2 Transport,06/23/2014 08:34:14 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",141740634-E01 -152042814,E29,15077817,Medical Incident,07/23/2015,07/23/2015,07/23/2015 05:53:47 PM,07/23/2015 05:57:11 PM,07/23/2015 05:58:11 PM,07/23/2015 05:58:58 PM,07/23/2015 06:00:12 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Code 2 Transport,07/23/2015 06:10:00 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.765718993574, -122.409520691153)",152042814-E29 -152310457,E03,15088007,Structure Fire,08/19/2015,08/18/2015,08/19/2015 05:57:10 AM,08/19/2015 06:00:53 AM,08/19/2015 06:01:04 AM,08/19/2015 06:01:46 AM,08/19/2015 06:04:03 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Fire,08/19/2015 06:11:50 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Alarm,1,ENGINE,4,3,6,South of Market,"(37.7816150265786, -122.40942036456)",152310457-E03 -152190039,78,15083220,Structure Fire,08/07/2015,08/06/2015,08/07/2015 12:11:39 AM,08/07/2015 12:13:59 AM,08/07/2015 12:14:12 AM,08/07/2015 12:14:38 AM,08/07/2015 12:19:31 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Fire,08/07/2015 12:21:55 AM,0 Block of 14TH AVE,San Francisco,94118,B07,31,7151,3,3,3,true,Alarm,1,MEDIC,5,7,2,Seacliff,"(37.7867374252228, -122.473356971235)",152190039-78 -143121231,E11,14110459,Medical Incident,11/08/2014,11/08/2014,11/08/2014 10:41:02 AM,11/08/2014 10:43:53 AM,11/08/2014 10:45:32 AM,11/08/2014 10:45:32 AM,11/08/2014 10:47:20 AM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Code 2 Transport,11/08/2014 11:05:02 AM,3600 Block of MISSION ST,San Francisco,94110,B06,32,5631,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7381219974808, -122.423925390723)",143121231-E11 -152263689,AM18,15086300,Medical Incident,08/14/2015,08/14/2015,08/14/2015 09:18:16 PM,08/14/2015 09:18:37 PM,08/14/2015 09:21:22 PM,08/14/2015 09:21:57 PM,08/14/2015 09:27:56 PM,08/14/2015 09:40:05 PM,08/14/2015 10:15:43 PM,Code 2 Transport,08/14/2015 10:42:41 PM,1200 Block of FILBERT ST,San Francisco,94109,B01,41,1626,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,2,Russian Hill,"(37.7999745038153, -122.420050559214)",152263689-AM18 -150690534,E22,15026255,Medical Incident,03/10/2015,03/09/2015,03/10/2015 06:57:30 AM,03/10/2015 06:57:30 AM,03/10/2015 06:58:53 AM,03/10/2015 07:00:37 AM,03/10/2015 07:02:03 AM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Code 2 Transport,03/10/2015 07:12:52 AM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",150690534-E22 -160931291,75,16036811,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:57:42 AM,04/02/2016 10:57:42 AM,04/02/2016 10:58:12 AM,04/02/2016 10:58:19 AM,04/02/2016 11:02:46 AM,04/02/2016 11:11:17 AM,04/02/2016 11:34:52 AM,Code 2 Transport,04/02/2016 12:26:43 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",160931291-75 -150222080,E38,15008610,Traffic Collision,01/22/2015,01/22/2015,01/22/2015 02:48:50 PM,01/22/2015 02:48:50 PM,01/22/2015 02:49:21 PM,01/22/2015 02:50:12 PM,01/22/2015 02:57:26 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,No Merit,01/22/2015 02:57:41 PM,BROADWAY/WEBSTER ST,San Francisco,94115,B04,38,3464,2,2,2,false,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7944741116389, -122.433274226492)",150222080-E38 -161000350,52,16039599,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:31:03 AM,04/09/2016 02:32:42 AM,04/09/2016 02:33:19 AM,04/09/2016 02:33:34 AM,04/09/2016 02:42:24 AM,04/09/2016 03:05:35 AM,04/09/2016 03:29:05 AM,Code 2 Transport,04/09/2016 04:12:08 AM,1300 Block of PALOU AVE,San Francisco,94124,B10,17,6551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7312794561445, -122.386266955452)",161000350-52 -151832626,52,15069930,Medical Incident,07/02/2015,07/02/2015,07/02/2015 04:12:37 PM,07/02/2015 04:12:37 PM,07/02/2015 04:13:39 PM,07/02/2015 04:14:45 PM,07/02/2015 04:29:35 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,No Merit,07/02/2015 04:55:06 PM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",151832626-52 -150313885,E07,15012183,Structure Fire,01/31/2015,01/31/2015,01/31/2015 11:10:48 PM,01/31/2015 11:10:56 PM,01/31/2015 11:11:20 PM,01/31/2015 11:12:03 PM,01/31/2015 11:14:13 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 11:14:24 PM,23RD ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5511,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7539677697092, -122.416413490249)",150313885-E07 -150091723,E32,15003557,Medical Incident,01/09/2015,01/09/2015,01/09/2015 01:05:24 PM,01/09/2015 01:06:01 PM,01/09/2015 01:06:12 PM,01/09/2015 01:06:47 PM,01/09/2015 01:08:39 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Code 2 Transport,01/09/2015 01:22:04 PM,400 Block of CORTLAND AVE,San Francisco,94110,B06,32,5732,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7392070733909, -122.417450548901)",150091723-E32 -151732754,E11,15066145,Medical Incident,06/22/2015,06/22/2015,06/22/2015 06:33:16 PM,06/22/2015 06:33:16 PM,06/22/2015 06:33:54 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Other,06/22/2015 06:35:00 PM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7562319946436, -122.418893283075)",151732754-E11 -143010943,KM07,14106200,Medical Incident,10/28/2014,10/28/2014,10/28/2014 09:18:02 AM,10/28/2014 09:19:26 AM,10/28/2014 09:20:12 AM,10/28/2014 09:21:28 AM,10/28/2014 09:31:19 AM,10/28/2014 09:39:34 AM,10/28/2014 09:59:00 AM,Code 2 Transport,10/28/2014 10:31:59 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",143010943-KM07 -152153526,E36,15081988,Medical Incident,08/03/2015,08/03/2015,08/03/2015 08:02:24 PM,08/03/2015 08:02:55 PM,08/03/2015 08:03:03 PM,08/03/2015 08:04:44 PM,08/03/2015 08:07:28 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Code 2 Transport,08/03/2015 08:15:44 PM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",152153526-E36 -160932195,62,16036912,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:15:12 PM,04/02/2016 03:17:53 PM,04/02/2016 03:18:39 PM,04/02/2016 03:18:46 PM,04/02/2016 03:26:48 PM,04/02/2016 03:39:46 PM,04/02/2016 03:53:17 PM,Code 2 Transport,04/02/2016 04:05:48 PM,500 Block of PARIS ST,San Francisco,94112,B09,43,6126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.720019816976, -122.436111161509)",160932195-62 -161001726,74,16039776,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:41:31 PM,04/09/2016 01:43:03 PM,04/09/2016 01:43:14 PM,04/09/2016 01:43:21 PM,04/09/2016 01:55:51 PM,04/09/2016 02:13:09 PM,04/09/2016 02:25:05 PM,Code 2 Transport,04/09/2016 03:05:27 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",161001726-74 -151473354,E17,15056094,Medical Incident,05/27/2015,05/27/2015,05/27/2015 07:41:00 PM,05/27/2015 07:41:24 PM,05/27/2015 07:41:42 PM,05/27/2015 07:43:08 PM,05/27/2015 07:45:42 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Code 3 Transport,05/27/2015 07:52:51 PM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7194008333885, -122.387234795761)",151473354-E17 -153101765,RC3,15119154,Structure Fire,11/06/2015,11/06/2015,11/06/2015 01:02:36 PM,11/06/2015 01:03:37 PM,11/06/2015 01:09:36 PM,11/06/2015 01:09:56 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Fire,11/06/2015 01:18:40 PM,300 Block of LAIDLEY ST,San Francisco,94131,B06,26,8127,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,6,8,Glen Park,"(37.7373737426443, -122.428934207579)",153101765-RC3 -141923258,B10,14066697,Structure Fire,07/11/2014,07/11/2014,07/11/2014 08:34:04 PM,07/11/2014 08:35:40 PM,07/11/2014 08:35:54 PM,07/11/2014 08:37:03 PM,07/11/2014 08:41:26 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Fire,07/11/2014 08:57:47 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",141923258-B10 -141730565,KM07,14059578,Medical Incident,06/22/2014,06/21/2014,06/22/2014 05:49:24 AM,06/22/2014 05:52:00 AM,06/22/2014 05:52:54 AM,06/22/2014 05:53:29 AM,06/22/2014 05:58:06 AM,06/22/2014 06:16:07 AM,06/22/2014 06:26:09 AM,Code 2 Transport,06/22/2014 06:53:02 AM,15TH ST/VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7665395771344, -122.422043813368)",141730565-KM07 -153250224,88,15124943,Medical Incident,11/21/2015,11/20/2015,11/21/2015 01:37:07 AM,11/21/2015 01:37:07 AM,11/21/2015 01:37:18 AM,11/21/2015 01:38:00 AM,11/21/2015 01:45:29 AM,11/21/2015 01:58:34 AM,11/21/2015 02:05:42 AM,Code 2 Transport,11/21/2015 02:33:05 AM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7798704351211, -122.437493921383)",153250224-88 -143123075,E38,14110641,Medical Incident,11/08/2014,11/08/2014,11/08/2014 07:23:33 PM,11/08/2014 07:23:33 PM,11/08/2014 07:30:14 PM,11/08/2014 07:31:09 PM,11/08/2014 07:32:53 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Code 2 Transport,11/08/2014 07:39:46 PM,1900 Block of FRANKLIN ST,San Francisco,94109,B04,38,3226,2,3,3,false,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7923946747257, -122.424497572162)",143123075-E38 -151873708,E15,15071585,Outside Fire,07/06/2015,07/06/2015,07/06/2015 08:58:18 PM,07/06/2015 08:59:49 PM,07/06/2015 09:00:33 PM,07/06/2015 09:01:28 PM,07/06/2015 09:04:07 PM,04/25/2016 01:09:36 PM,04/25/2016 01:09:36 PM,Fire,07/06/2015 09:10:53 PM,MAJESTIC AV/LAKEVIEW AV,San Francisco,94112,B09,15,8317,3,3,3,true,Fire,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7169775086753, -122.451894991762)",151873708-E15 -160931774,65,16036861,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:15:46 PM,04/02/2016 01:17:21 PM,04/02/2016 01:30:58 PM,04/02/2016 01:31:15 PM,04/02/2016 01:43:24 PM,04/02/2016 02:10:58 PM,04/02/2016 02:09:37 PM,Patient Declined Transport,04/02/2016 02:17:15 PM,2600 Block of GEARY BLVD,San Francisco,94115,B05,10,4365,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7822483679158, -122.446592481498)",160931774-65 -143352472,83,14118764,Medical Incident,12/01/2014,12/01/2014,12/01/2014 04:13:18 PM,12/01/2014 04:15:41 PM,12/01/2014 04:15:57 PM,12/01/2014 04:16:15 PM,12/01/2014 04:29:45 PM,12/01/2014 04:47:32 PM,12/01/2014 05:01:22 PM,Code 2 Transport,12/01/2014 05:33:24 PM,400 Block of 36TH AVE,San Francisco,94121,B07,34,7247,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7812627112203, -122.49657494575)",143352472-83 -160992356,58,16039367,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:51:32 PM,04/08/2016 03:51:32 PM,04/08/2016 03:52:52 PM,04/08/2016 03:53:18 PM,04/08/2016 04:02:15 PM,04/08/2016 04:10:52 PM,04/08/2016 04:29:51 PM,Code 2 Transport,04/08/2016 04:54:04 PM,MISSION ST/24TH ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7522394549791, -122.418445272851)",160992356-58 -141020158,86,14034416,Medical Incident,04/12/2014,04/12/2014,04/12/2014 11:41:57 AM,04/12/2014 11:42:43 AM,04/12/2014 11:44:29 AM,04/12/2014 11:44:41 AM,04/12/2014 12:02:26 PM,04/12/2014 12:21:00 PM,04/12/2014 12:42:39 PM,Code 2 Transport,04/12/2014 01:30:09 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",141020158-86 -160942420,AM08,16037322,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:58:00 PM,04/03/2016 04:00:39 PM,04/03/2016 04:01:45 PM,04/03/2016 04:02:46 PM,04/03/2016 04:38:07 PM,04/03/2016 04:39:12 PM,04/03/2016 04:39:20 PM,Code 2 Transport,04/03/2016 04:59:54 PM,1500 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7737629752818, -122.417960394107)",160942420-AM08 -153013865,E08,15115636,Medical Incident,10/28/2015,10/28/2015,10/28/2015 09:03:20 PM,10/28/2015 09:04:37 PM,10/28/2015 09:04:53 PM,10/28/2015 09:06:41 PM,10/28/2015 09:08:08 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,No Merit,10/28/2015 09:14:07 PM,TOWNSEND ST/4TH ST,San Francisco,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7770893320016, -122.394981482757)",153013865-E08 -142793061,E20,14098287,Structure Fire,10/06/2014,10/06/2014,10/06/2014 07:29:08 PM,10/06/2014 07:29:45 PM,10/06/2014 07:30:01 PM,10/06/2014 07:31:06 PM,10/06/2014 07:34:25 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 07:35:22 PM,100 Block of MONTALVO AVE,San Francisco,94116,B08,39,8615,3,3,3,true,Alarm,1,ENGINE,4,8,7,West of Twin Peaks,"(37.7447451209793, -122.464445384147)",142793061-E20 -150792515,E38,15030358,Medical Incident,03/20/2015,03/20/2015,03/20/2015 04:25:39 PM,03/20/2015 04:29:09 PM,03/20/2015 04:29:40 PM,03/20/2015 04:30:20 PM,03/20/2015 04:33:52 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Code 2 Transport,03/20/2015 04:42:43 PM,2100 Block of PACIFIC AVE,San Francisco,94115,B04,38,3441,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7938179536129, -122.430615255773)",150792515-E38 -142272023,E34,14078871,Medical Incident,08/15/2014,08/15/2014,08/15/2014 02:36:05 PM,08/15/2014 02:37:17 PM,08/15/2014 02:39:26 PM,08/15/2014 02:40:30 PM,08/15/2014 02:45:22 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 2 Transport,08/15/2014 02:57:05 PM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",142272023-E34 -150891032,B02,15033898,Structure Fire,03/30/2015,03/30/2015,03/30/2015 10:16:08 AM,03/30/2015 10:17:35 AM,03/30/2015 10:18:07 AM,03/30/2015 10:19:27 AM,03/30/2015 10:22:30 AM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Fire,03/30/2015 10:26:21 AM,600 Block of HAYES ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,CHIEF,7,2,5,Hayes Valley,"(37.7763047597518, -122.427077545588)",150891032-B02 -152131209,88,15081066,Medical Incident,08/01/2015,08/01/2015,08/01/2015 10:24:15 AM,08/01/2015 10:24:43 AM,08/01/2015 10:25:01 AM,08/01/2015 10:25:37 AM,08/01/2015 10:30:25 AM,08/01/2015 10:42:46 AM,08/01/2015 10:49:40 AM,Code 3 Transport,08/01/2015 11:40:49 AM,200 Block of TEXAS ST,San Francisco,94107,B03,37,2462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.7632766020841, -122.395552822379)",152131209-88 -152473261,RC3,15094368,Medical Incident,09/04/2015,09/04/2015,09/04/2015 05:57:01 PM,09/04/2015 05:57:55 PM,09/04/2015 05:59:32 PM,09/04/2015 05:59:32 PM,09/04/2015 06:03:57 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Code 2 Transport,09/04/2015 06:06:16 PM,0 Block of HARRY ST,San Francisco,94131,B06,26,8115,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Glen Park,"(37.7401430098289, -122.431255939279)",152473261-RC3 -153342016,T05,15128441,Alarms,11/30/2015,11/30/2015,11/30/2015 02:32:56 PM,11/30/2015 02:34:01 PM,11/30/2015 02:35:35 PM,11/30/2015 02:37:09 PM,11/30/2015 02:38:59 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Fire,11/30/2015 02:45:40 PM,1700 Block of OFARRELL ST,San Francisco,94115,B04,5,3623,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",153342016-T05 -150193795,77,15007687,Medical Incident,01/19/2015,01/19/2015,01/19/2015 11:43:44 PM,01/19/2015 11:45:27 PM,01/19/2015 11:47:23 PM,01/19/2015 11:47:44 PM,01/19/2015 11:54:29 PM,01/19/2015 11:58:55 PM,01/20/2015 12:13:11 AM,Code 2 Transport,01/20/2015 12:27:17 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",150193795-77 -153131523,92,15120278,Medical Incident,11/09/2015,11/09/2015,11/09/2015 12:18:27 PM,11/09/2015 12:19:53 PM,11/09/2015 12:20:20 PM,11/09/2015 12:20:38 PM,11/09/2015 12:24:53 PM,11/09/2015 12:35:27 PM,11/09/2015 12:46:50 PM,Code 2 Transport,11/09/2015 01:41:59 PM,500 Block of HAIGHT ST,San Francisco,94117,B05,6,3633,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7720569989498, -122.431274062146)",153131523-92 -150300401,E48,15011441,Medical Incident,01/30/2015,01/29/2015,01/30/2015 04:11:00 AM,01/30/2015 04:11:36 AM,01/30/2015 04:12:07 AM,01/30/2015 04:14:16 AM,01/30/2015 04:19:03 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Code 2 Transport,01/30/2015 04:32:25 AM,1400 Block of CROAKER CT,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8241187828322, -122.374566544632)",150300401-E48 -141733319,E07,14059834,Medical Incident,06/22/2014,06/22/2014,06/22/2014 10:45:37 PM,06/22/2014 10:50:37 PM,06/22/2014 10:51:00 PM,06/22/2014 10:52:09 PM,06/22/2014 10:54:19 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Code 3 Transport,06/22/2014 11:12:21 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",141733319-E07 -150131748,T18,15005160,Citizen Assist / Service Call,01/13/2015,01/13/2015,01/13/2015 12:50:46 PM,01/13/2015 12:51:49 PM,01/13/2015 12:53:07 PM,01/13/2015 12:54:34 PM,01/13/2015 01:03:35 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Fire,01/13/2015 01:29:35 PM,2300 Block of 28TH AVE,San Francisco,94116,B08,40,7471,3,3,3,false,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7435624337993, -122.485331778015)",150131748-T18 -153433850,E32,15132198,Medical Incident,12/09/2015,12/09/2015,12/09/2015 09:31:51 PM,12/09/2015 09:32:05 PM,12/09/2015 09:32:25 PM,12/09/2015 09:33:55 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Medical Examiner,12/09/2015 09:37:22 PM,400 Block of CAYUGA AVE,San Francisco,94112,B09,32,8262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7296260841298, -122.43499292651)",153433850-E32 -151993127,E22,15075950,Medical Incident,07/18/2015,07/18/2015,07/18/2015 06:44:14 PM,07/18/2015 06:45:05 PM,07/18/2015 06:45:24 PM,07/18/2015 06:46:42 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Code 2 Transport,07/18/2015 06:47:26 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,false,Potentially Life-Threatening,1,ENGINE,4,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",151993127-E22 -160951690,82,16037618,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:25:06 PM,04/04/2016 12:26:18 PM,04/04/2016 12:28:28 PM,04/04/2016 12:28:35 PM,04/04/2016 12:32:30 PM,04/04/2016 12:38:40 PM,04/04/2016 12:58:33 PM,Code 2 Transport,04/04/2016 01:25:58 PM,HYDE ST/TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",160951690-82 -161000761,50,16039656,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:53:12 AM,04/09/2016 07:54:56 AM,04/09/2016 08:04:38 AM,04/09/2016 08:04:45 AM,04/09/2016 08:12:27 AM,04/09/2016 08:37:37 AM,04/09/2016 08:57:28 AM,Code 2 Transport,04/09/2016 09:12:17 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",161000761-50 -141861176,88,14064366,Medical Incident,07/05/2014,07/05/2014,07/05/2014 09:55:20 AM,07/05/2014 09:56:57 AM,07/05/2014 09:57:10 AM,07/05/2014 09:57:37 AM,07/05/2014 10:08:12 AM,07/05/2014 10:15:59 AM,07/05/2014 10:35:27 AM,Code 2 Transport,07/05/2014 11:02:48 AM,600 Block of PORTOLA DR,San Francisco,94127,B08,39,8661,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7448131362383, -122.452761504469)",141861176-88 -152793442,88,15107196,Medical Incident,10/06/2015,10/06/2015,10/06/2015 07:55:21 PM,10/06/2015 07:55:21 PM,10/06/2015 07:55:36 PM,10/06/2015 07:55:45 PM,10/06/2015 07:59:29 PM,10/06/2015 08:13:57 PM,10/06/2015 08:25:09 PM,Code 2 Transport,10/06/2015 09:13:59 PM,800 Block of IRVING ST,San Francisco,94122,B08,22,7345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7640682841744, -122.466850747744)",152793442-88 -142800042,AM18,14098344,Medical Incident,10/07/2014,10/06/2014,10/07/2014 12:23:59 AM,10/07/2014 12:23:59 AM,10/07/2014 12:24:50 AM,10/07/2014 12:25:33 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Unable to Locate,10/07/2014 12:37:02 AM,6TH ST/STEVENSON ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7817543267261, -122.409693263148)",142800042-AM18 -160962858,KM08,16038102,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:01:36 PM,04/05/2016 05:02:48 PM,04/05/2016 05:02:59 PM,04/05/2016 05:04:10 PM,04/05/2016 05:06:34 PM,04/05/2016 05:27:54 PM,04/05/2016 05:36:42 PM,Code 2 Transport,04/05/2016 06:28:09 PM,1700 Block of CALIFORNIA ST,San Francisco,94109,B04,38,3155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Western Addition,"(37.7902108323452, -122.423141017919)",160962858-KM08 -150731916,83,15027927,Medical Incident,03/14/2015,03/14/2015,03/14/2015 01:07:28 PM,03/14/2015 01:09:10 PM,03/14/2015 01:09:50 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Code 2 Transport,03/14/2015 01:11:35 PM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",150731916-83 -152444012,77,15093242,Medical Incident,09/01/2015,09/01/2015,09/01/2015 10:14:46 PM,09/01/2015 10:16:33 PM,09/01/2015 10:17:50 PM,09/01/2015 10:18:00 PM,09/01/2015 10:31:33 PM,09/01/2015 10:48:48 PM,09/01/2015 11:12:37 PM,Code 2 Transport,09/01/2015 11:44:23 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",152444012-77 -160922075,AM10,16036472,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:43:11 PM,04/01/2016 02:45:12 PM,04/01/2016 02:45:33 PM,04/01/2016 02:47:46 PM,04/01/2016 02:49:19 PM,04/01/2016 02:52:30 PM,04/01/2016 03:28:37 PM,Code 2 Transport,04/01/2016 03:52:00 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160922075-AM10 -142682462,E08,14093999,Medical Incident,09/25/2014,09/25/2014,09/25/2014 04:45:33 PM,09/25/2014 04:46:10 PM,09/25/2014 04:50:12 PM,09/25/2014 04:50:12 PM,09/25/2014 04:53:20 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Patient Declined Transport,09/25/2014 04:57:35 PM,0 Block of SOUTH PARK,San Francisco,94107,B03,8,2152,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",142682462-E08 -150641319,B02,15024403,Alarms,03/05/2015,03/05/2015,03/05/2015 10:26:25 AM,03/05/2015 10:27:49 AM,03/05/2015 10:28:46 AM,03/05/2015 10:29:26 AM,03/05/2015 10:33:43 AM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Fire,03/05/2015 10:43:25 AM,100 Block of DIAMOND ST,San Francisco,94114,B05,6,5415,3,3,3,false,Alarm,1,CHIEF,2,6,8,Castro/Upper Market,"(37.7599536346651, -122.437183555035)",150641319-B02 -141680223,85,14057820,Medical Incident,06/17/2014,06/16/2014,06/17/2014 02:25:41 AM,06/17/2014 02:27:35 AM,06/17/2014 02:28:36 AM,06/17/2014 02:29:30 AM,06/17/2014 02:37:44 AM,06/17/2014 02:57:42 AM,06/17/2014 03:14:25 AM,Code 2 Transport,06/17/2014 03:48:58 AM,100 Block of CAMBON DR,San Francisco,94132,B08,19,8428,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",141680223-85 -151143069,77,15043199,Medical Incident,04/24/2015,04/24/2015,04/24/2015 06:19:53 PM,04/24/2015 06:21:48 PM,04/24/2015 06:22:00 PM,04/24/2015 06:23:58 PM,04/24/2015 06:29:58 PM,04/24/2015 06:37:15 PM,04/24/2015 06:40:08 PM,Code 2 Transport,04/24/2015 06:49:58 PM,MISSION ST/25TH ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7506396511688, -122.418287870978)",151143069-77 -142101358,B10,14072782,Alarms,07/29/2014,07/29/2014,07/29/2014 12:09:26 PM,07/29/2014 12:10:14 PM,07/29/2014 12:10:19 PM,07/29/2014 12:10:28 PM,07/29/2014 12:15:33 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/29/2014 12:16:28 PM,1400 Block of INDIANA ST,San Francisco,94107,B10,25,2635,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7520308514375, -122.390554233685)",142101358-B10 -160993502,79,16039465,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:45:00 PM,04/08/2016 08:46:24 PM,04/08/2016 08:46:39 PM,04/08/2016 08:46:51 PM,04/08/2016 09:21:02 PM,04/08/2016 09:21:04 PM,04/08/2016 09:23:37 PM,Code 2 Transport,04/08/2016 09:56:57 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160993502-79 -143113015,66,14110237,Medical Incident,11/07/2014,11/07/2014,11/07/2014 06:45:19 PM,11/07/2014 06:45:19 PM,11/07/2014 06:46:12 PM,11/07/2014 06:46:26 PM,11/07/2014 07:07:10 PM,11/07/2014 07:16:02 PM,11/07/2014 07:43:15 PM,Code 2 Transport,11/07/2014 08:01:11 PM,600 Block of 4TH ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7773551623763, -122.395411806894)",143113015-66 -150750902,E13,15028707,Medical Incident,03/16/2015,03/16/2015,03/16/2015 09:17:12 AM,03/16/2015 09:17:43 AM,03/16/2015 09:18:37 AM,03/16/2015 09:19:26 AM,03/16/2015 09:20:41 AM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Code 2 Transport,03/16/2015 09:34:02 AM,0 Block of SANSOME ST,San Francisco,94104,B01,13,1164,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",150750902-E13 -150092031,T03,15003598,Medical Incident,01/09/2015,01/09/2015,01/09/2015 02:35:13 PM,01/09/2015 02:36:04 PM,01/09/2015 02:36:57 PM,01/09/2015 02:38:15 PM,01/09/2015 02:39:58 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Code 2 Transport,01/09/2015 02:42:25 PM,600 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1543,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Tenderloin,"(37.7869955301845, -122.414832699131)",150092031-T03 -160932492,52,16036947,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:41:44 PM,04/02/2016 04:41:44 PM,04/02/2016 04:43:54 PM,04/02/2016 04:44:17 PM,04/02/2016 05:08:05 PM,04/02/2016 05:21:45 PM,04/02/2016 05:35:17 PM,Code 2 Transport,04/02/2016 06:13:31 PM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",160932492-52 -151642312,54,15062781,Other,06/13/2015,06/13/2015,06/13/2015 04:09:44 PM,06/13/2015 04:09:44 PM,06/13/2015 04:09:44 PM,06/13/2015 04:09:44 PM,06/13/2015 04:09:44 PM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,Fire,06/13/2015 05:18:14 PM,2300 Block of BUCHANAN ST,San Francisco,94115,B04,38,3435,3,3,3,true,Alarm,1,MEDIC,1,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",151642312-54 -161002769,68,16039892,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:04:55 PM,04/09/2016 07:07:52 PM,04/09/2016 07:08:32 PM,04/09/2016 07:08:41 PM,04/09/2016 07:12:35 PM,04/09/2016 07:25:26 PM,04/09/2016 07:55:38 PM,Code 2 Transport,04/09/2016 08:20:41 PM,SUTTER ST/FILLMORE ST,San Francisco,94115,B04,38,3542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7860854281172, -122.43327157966)",161002769-68 -150012114,E07,15000354,Medical Incident,01/01/2015,01/01/2015,01/01/2015 01:46:46 PM,01/01/2015 01:47:44 PM,01/01/2015 01:47:57 PM,01/01/2015 01:49:17 PM,01/01/2015 01:52:07 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Code 2 Transport,01/01/2015 01:52:24 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",150012114-E07 -150200025,E15,15007702,Medical Incident,01/20/2015,01/19/2015,01/20/2015 12:06:54 AM,01/20/2015 12:07:59 AM,01/20/2015 12:11:48 AM,01/20/2015 12:13:07 AM,01/20/2015 12:16:41 AM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Code 2 Transport,01/20/2015 12:21:57 AM,0 Block of RICE ST,San Francisco,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7083648058395, -122.457265666619)",150200025-E15 -142353359,T03,14081842,Medical Incident,08/23/2014,08/23/2014,08/23/2014 08:46:30 PM,08/23/2014 08:49:19 PM,08/23/2014 08:49:47 PM,08/23/2014 08:49:57 PM,08/23/2014 08:53:26 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,Code 2 Transport,08/23/2014 08:57:42 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",142353359-T03 -160942774,70,16037362,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 05:41:20 PM,04/03/2016 05:41:20 PM,04/03/2016 05:53:05 PM,04/03/2016 05:53:16 PM,04/03/2016 06:01:25 PM,04/03/2016 06:20:31 PM,04/03/2016 06:24:14 PM,Other,04/03/2016 06:44:55 PM,WEBSTER ST/GEARY BL,San Francisco,94115,B04,5,3432,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,5,Japantown,"(37.7845682402461, -122.431204945516)",160942774-70 -150301793,KM14,15011579,Medical Incident,01/30/2015,01/30/2015,01/30/2015 12:39:32 PM,01/30/2015 12:41:43 PM,01/30/2015 12:43:15 PM,01/30/2015 12:43:46 PM,01/30/2015 12:57:47 PM,01/30/2015 01:19:55 PM,01/30/2015 01:38:22 PM,Code 2 Transport,01/30/2015 02:14:57 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",150301793-KM14 -141250369,RS2,14042495,Medical Incident,05/05/2014,05/05/2014,05/05/2014 07:46:20 PM,05/05/2014 07:47:37 PM,05/05/2014 07:48:15 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 07:50:07 PM,400 Block of WHIPPLE AV,SAN FRANCISCO,94112,B09,33,8324,3,2,2,false,Non Life-threatening,1,RESCUE SQUAD,6,9,11,Oceanview/Merced/Ingleside,"(37.7140989762135, -122.451964460416)",141250369-RS2 -142993152,E13,14105711,Medical Incident,10/26/2014,10/26/2014,10/26/2014 08:28:37 PM,10/26/2014 08:28:37 PM,10/26/2014 08:28:57 PM,10/26/2014 08:30:36 PM,10/26/2014 08:32:37 PM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Code 2 Transport,10/26/2014 08:38:37 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",142993152-E13 -160991069,64,16039242,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:10:25 AM,04/08/2016 10:10:45 AM,04/08/2016 10:12:00 AM,04/08/2016 10:12:48 AM,04/08/2016 10:20:57 AM,04/08/2016 10:39:30 AM,04/08/2016 10:52:12 AM,Code 3 Transport,04/08/2016 12:06:40 PM,400 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",160991069-64 -153113210,78,15119699,Medical Incident,11/07/2015,11/07/2015,11/07/2015 07:58:21 PM,11/07/2015 07:59:34 PM,11/07/2015 08:00:13 PM,11/07/2015 08:00:22 PM,11/07/2015 08:06:49 PM,11/07/2015 08:18:54 PM,11/07/2015 08:24:28 PM,Code 2 Transport,11/07/2015 09:14:41 PM,HAIGHT ST/COLE ST,San Francisco,94117,B05,12,4525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",153113210-78 -141190125,E17,14040102,Medical Incident,04/29/2014,04/29/2014,04/29/2014 09:38:51 AM,04/29/2014 09:41:04 AM,04/29/2014 09:41:20 AM,04/29/2014 09:42:41 AM,04/29/2014 09:45:39 AM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Code 2 Transport,04/29/2014 09:52:03 AM,0 Block of LATONA ST,SAN FRANCISCO,94124,B10,17,6514,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316182572491, -122.392627218053)",141190125-E17 -143303901,74,14117220,Medical Incident,11/26/2014,11/26/2014,11/26/2014 11:50:37 PM,11/26/2014 11:52:30 PM,11/26/2014 11:52:37 PM,11/26/2014 11:52:46 PM,11/27/2014 12:03:24 AM,11/27/2014 12:19:24 AM,11/27/2014 12:26:19 AM,Code 2 Transport,11/27/2014 12:43:46 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",143303901-74 -142980767,E18,14105089,Electrical Hazard,10/25/2014,10/24/2014,10/25/2014 06:37:01 AM,10/25/2014 06:38:34 AM,10/25/2014 06:38:49 AM,10/25/2014 06:40:22 AM,10/25/2014 06:44:03 AM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Fire,10/25/2014 06:49:27 AM,2300 Block of 38TH AVE,San Francisco,94116,B08,18,7621,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.743089809039, -122.496045390903)",142980767-E18 -152430779,67,15092601,Medical Incident,08/31/2015,08/30/2015,08/31/2015 07:55:31 AM,08/31/2015 07:57:42 AM,08/31/2015 08:21:07 AM,08/31/2015 08:21:07 AM,08/31/2015 08:34:03 AM,08/31/2015 08:52:07 AM,08/31/2015 09:13:07 AM,Code 2 Transport,08/31/2015 09:46:40 AM,800 Block of SUTTER ST,San Francisco,94109,B01,3,1463,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7885472961758, -122.414374370709)",152430779-67 -160933721,KM03,16037064,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:27:52 PM,04/02/2016 10:29:20 PM,04/02/2016 10:29:33 PM,04/02/2016 10:29:59 PM,04/02/2016 10:34:59 PM,04/02/2016 10:46:06 PM,04/02/2016 11:13:04 PM,Code 2 Transport,04/02/2016 11:44:50 PM,1400 Block of UNDERWOOD AVE,San Francisco,94124,B10,17,6547,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7281527449008, -122.389085829648)",160933721-KM03 -160961147,82,16037950,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:16:41 AM,04/05/2016 10:17:14 AM,04/05/2016 10:17:36 AM,04/05/2016 10:17:45 AM,04/05/2016 10:19:03 AM,04/05/2016 10:36:54 AM,04/05/2016 10:42:00 AM,Code 3 Transport,04/05/2016 11:23:12 AM,500 Block of JESSIE ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7810630578351, -122.409767402824)",160961147-82 -152051833,E29,15078080,Medical Incident,07/24/2015,07/24/2015,07/24/2015 01:05:08 PM,07/24/2015 01:06:16 PM,07/24/2015 01:07:29 PM,07/24/2015 01:08:40 PM,07/24/2015 01:09:46 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Code 2 Transport,07/24/2015 01:21:50 PM,200 Block of POTRERO AVE,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.7664376828612, -122.407540732549)",152051833-E29 -153431913,E01,15132012,Fuel Spill,12/09/2015,12/09/2015,12/09/2015 01:09:48 PM,12/09/2015 01:11:25 PM,12/09/2015 01:13:04 PM,12/09/2015 01:13:04 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 01:24:01 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",153431913-E01 -151280603,55,15048441,Medical Incident,05/08/2015,05/07/2015,05/08/2015 07:03:12 AM,05/08/2015 07:03:47 AM,05/08/2015 07:04:17 AM,05/08/2015 07:04:50 AM,05/08/2015 07:07:45 AM,05/08/2015 07:28:53 AM,05/08/2015 07:46:35 AM,Code 2 Transport,05/08/2015 08:24:15 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",151280603-55 -142341710,T15,14081320,Outside Fire,08/22/2014,08/22/2014,08/22/2014 12:40:15 PM,08/22/2014 12:41:44 PM,08/22/2014 12:41:54 PM,08/22/2014 12:42:15 PM,08/22/2014 12:45:58 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 12:54:33 PM,1600 Block of GENEVA AVE,San Francisco,94134,B09,43,6172,3,3,3,false,Fire,1,TRUCK,2,9,11,Excelsior,"(37.7118331290822, -122.427989009711)",142341710-T15 -160991110,89,16039247,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:20:30 AM,04/08/2016 10:21:56 AM,04/08/2016 10:22:33 AM,04/08/2016 10:22:59 AM,04/08/2016 10:36:20 AM,04/08/2016 10:47:30 AM,04/08/2016 11:10:45 AM,Code 2 Transport,04/08/2016 11:38:32 AM,200 Block of MOUNT VERNON AVE,San Francisco,94112,B09,15,8335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7173580243554, -122.446252841532)",160991110-89 -150813031,E10,15031148,Medical Incident,03/22/2015,03/22/2015,03/22/2015 07:19:48 PM,03/22/2015 07:20:49 PM,03/22/2015 07:21:38 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Code 2 Transport,03/22/2015 07:25:35 PM,100 Block of 3RD AVE,San Francisco,94118,B07,31,7115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,2,Inner Richmond,"(37.786106452065, -122.461488844398)",150813031-E10 -150122389,E16,15004800,Medical Incident,01/12/2015,01/12/2015,01/12/2015 03:54:52 PM,01/12/2015 03:55:21 PM,01/12/2015 03:55:42 PM,01/12/2015 03:57:21 PM,01/12/2015 03:59:25 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Medical Examiner,01/12/2015 04:11:26 PM,2900 Block of VAN NESS AVE,San Francisco,94109,B04,16,3144,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8027660134448, -122.424654379968)",150122389-E16 -160970237,71,16038263,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:28:09 AM,04/06/2016 02:33:58 AM,04/06/2016 02:34:25 AM,04/06/2016 02:34:30 AM,04/06/2016 02:39:48 AM,04/06/2016 02:52:11 AM,04/06/2016 03:03:29 AM,Code 2 Transport,04/06/2016 03:22:04 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160970237-71 -142223081,54,14077174,Medical Incident,08/10/2014,08/10/2014,08/10/2014 08:05:05 PM,08/10/2014 08:06:17 PM,08/10/2014 08:06:57 PM,08/10/2014 08:07:05 PM,08/10/2014 08:16:14 PM,08/10/2014 08:30:38 PM,08/10/2014 08:52:50 PM,Code 2 Transport,08/10/2014 09:28:44 PM,0 Block of 25TH AVE,San Francisco,94121,B07,14,7216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7885162445141, -122.484799797447)",142223081-54 -160971594,77,16038384,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:28:36 AM,04/06/2016 11:31:08 AM,04/06/2016 11:31:32 AM,04/06/2016 11:31:39 AM,04/06/2016 11:45:01 AM,04/06/2016 12:08:12 PM,04/06/2016 12:20:49 PM,Code 2 Transport,04/06/2016 01:00:57 PM,GEARY BL/29TH AV,San Francisco,94121,B07,14,7226,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7798905753776, -122.489013490407)",160971594-77 -150913562,T05,15034752,Citizen Assist / Service Call,04/01/2015,04/01/2015,04/01/2015 09:04:01 PM,04/01/2015 09:04:01 PM,04/01/2015 09:04:13 PM,04/01/2015 09:06:19 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/01/2015 09:17:00 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,true,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",150913562-T05 -153350794,T13,15128712,Medical Incident,12/01/2015,12/01/2015,12/01/2015 08:21:51 AM,12/01/2015 08:22:48 AM,12/01/2015 08:23:24 AM,12/01/2015 08:26:02 AM,12/01/2015 08:28:37 AM,04/25/2016 01:06:54 PM,04/25/2016 01:06:54 PM,Patient Declined Transport,12/01/2015 08:44:35 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",153350794-T13 -142351965,B10,14081734,Medical Incident,08/23/2014,08/23/2014,08/23/2014 02:12:59 PM,08/23/2014 02:13:48 PM,08/23/2014 02:14:47 PM,08/23/2014 02:16:18 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,Code 2 Transport,08/23/2014 02:20:58 PM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,E,E,3,false,Potentially Life-Threatening,1,CHIEF,4,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",142351965-B10 -160953048,AM16,16037736,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:55:02 PM,04/04/2016 05:57:19 PM,04/04/2016 06:00:28 PM,04/04/2016 06:00:28 PM,04/04/2016 06:06:26 PM,04/04/2016 06:23:33 PM,04/04/2016 06:40:23 PM,Code 2 Transport,04/04/2016 07:04:00 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160953048-AM16 -152723163,E29,15104262,Medical Incident,09/29/2015,09/29/2015,09/29/2015 06:34:22 PM,09/29/2015 06:35:07 PM,09/29/2015 06:36:40 PM,09/29/2015 06:38:22 PM,09/29/2015 06:40:11 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Patient Declined Transport,09/29/2015 06:47:00 PM,500 Block of 9TH ST,San Francisco,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",152723163-E29 -160973416,81,16038587,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:58:11 PM,04/06/2016 05:59:29 PM,04/06/2016 05:59:57 PM,04/06/2016 06:00:03 PM,04/06/2016 06:06:53 PM,04/06/2016 06:33:42 PM,04/06/2016 07:17:38 PM,Code 2 Transport,04/06/2016 07:21:08 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio,"(37.7915253713789, -122.483480228628)",160973416-81 -151082850,E13,15041012,Medical Incident,04/18/2015,04/18/2015,04/18/2015 06:39:54 PM,04/18/2015 06:41:03 PM,04/18/2015 06:42:02 PM,04/18/2015 06:42:20 PM,04/18/2015 06:44:55 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,No Merit,04/18/2015 06:50:27 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",151082850-E13 -160970561,79,16038290,Medical Incident,04/06/2016,04/05/2016,04/06/2016 06:56:33 AM,04/06/2016 06:57:18 AM,04/06/2016 06:57:42 AM,04/06/2016 06:57:57 AM,04/06/2016 07:02:32 AM,04/06/2016 07:19:37 AM,04/06/2016 07:33:20 AM,Code 3 Transport,04/06/2016 08:00:16 AM,2300 Block of 17TH AVE,San Francisco,94116,B08,40,7361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7440806273784, -122.473549838264)",160970561-79 -150870905,AM08,15033154,Medical Incident,03/28/2015,03/28/2015,03/28/2015 08:34:53 AM,03/28/2015 08:35:44 AM,03/28/2015 08:51:01 AM,03/28/2015 08:51:01 AM,03/28/2015 08:53:59 AM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Patient Declined Transport,03/28/2015 09:22:30 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",150870905-AM08 -152632811,88,15100764,Medical Incident,09/20/2015,09/20/2015,09/20/2015 05:31:49 PM,09/20/2015 05:31:49 PM,09/20/2015 05:32:19 PM,09/20/2015 05:34:41 PM,09/20/2015 05:40:45 PM,09/20/2015 05:49:29 PM,09/20/2015 06:05:03 PM,Code 2 Transport,09/20/2015 06:47:29 PM,HOOPER ST/8TH ST,San Francisco,94103,B03,29,2362,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,10,Mission Bay,"(37.7673003045618, -122.40042858832)",152632811-88 -142202673,KM10,14076430,Medical Incident,08/08/2014,08/08/2014,08/08/2014 05:20:23 PM,08/08/2014 05:25:07 PM,08/08/2014 06:03:05 PM,08/08/2014 06:03:05 PM,08/08/2014 06:03:05 PM,08/08/2014 06:15:08 PM,08/08/2014 06:23:56 PM,Code 2 Transport,08/08/2014 06:48:48 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",142202673-KM10 -160960430,52,16037894,Medical Incident,04/05/2016,04/04/2016,04/05/2016 06:27:58 AM,04/05/2016 06:29:36 AM,04/05/2016 06:29:55 AM,04/05/2016 06:30:05 AM,04/05/2016 06:40:00 AM,04/05/2016 06:54:16 AM,04/05/2016 06:59:29 AM,Code 2 Transport,04/05/2016 07:23:20 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160960430-52 -150261725,E13,15010022,Medical Incident,01/26/2015,01/26/2015,01/26/2015 12:14:36 PM,01/26/2015 12:16:38 PM,01/26/2015 12:30:59 PM,01/26/2015 12:32:19 PM,01/26/2015 12:35:40 PM,04/25/2016 01:12:37 PM,04/25/2016 01:12:37 PM,Code 2 Transport,01/26/2015 01:19:18 PM,800 Block of WASHINGTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",150261725-E13 -152812049,E13,15107864,Medical Incident,10/08/2015,10/08/2015,10/08/2015 02:00:18 PM,10/08/2015 02:02:57 PM,10/08/2015 02:04:10 PM,10/08/2015 02:05:11 PM,10/08/2015 02:06:55 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Code 2 Transport,10/08/2015 02:28:54 PM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",152812049-E13 -151161478,E23,15043809,Traffic Collision,04/26/2015,04/26/2015,04/26/2015 12:03:16 PM,04/26/2015 12:04:44 PM,04/26/2015 12:05:13 PM,04/26/2015 12:05:47 PM,04/26/2015 12:11:24 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Code 3 Transport,04/26/2015 01:18:56 PM,GREAT HY/SLOAT BL,San Francisco,94132,B08,23,7733,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",151161478-E23 -150082573,E22,15003218,Medical Incident,01/08/2015,01/08/2015,01/08/2015 04:25:59 PM,01/08/2015 04:28:23 PM,01/08/2015 04:30:06 PM,01/08/2015 04:31:21 PM,01/08/2015 04:33:01 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 04:50:16 PM,1300 Block of 14TH AVE,San Francisco,94122,B08,22,7366,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7628677231628, -122.471671780993)",150082573-E22 -160970869,88,16038323,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:41:40 AM,04/06/2016 08:43:05 AM,04/06/2016 08:44:46 AM,04/06/2016 08:44:54 AM,04/06/2016 08:57:49 AM,04/06/2016 09:03:53 AM,04/06/2016 09:30:03 AM,Code 2 Transport,04/06/2016 09:59:26 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160970869-88 -143263637,61,14115680,Medical Incident,11/22/2014,11/22/2014,11/22/2014 09:39:55 PM,11/22/2014 09:41:43 PM,11/22/2014 09:42:37 PM,11/22/2014 09:42:49 PM,11/22/2014 09:52:36 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Patient Declined Transport,11/22/2014 10:34:01 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",143263637-61 -160952876,54,16037720,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:11:25 PM,04/04/2016 05:11:25 PM,04/04/2016 05:13:54 PM,04/04/2016 05:14:03 PM,04/04/2016 05:31:29 PM,04/04/2016 05:47:43 PM,04/04/2016 06:19:01 PM,Code 2 Transport,04/04/2016 06:44:13 PM,400 Block of VIENNA ST,San Francisco,94112,B09,43,6141,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7212237617558, -122.429771393114)",160952876-54 -150844132,E13,15032257,Alarms,03/25/2015,03/25/2015,03/25/2015 10:46:22 PM,03/25/2015 10:47:35 PM,03/25/2015 10:47:49 PM,03/25/2015 10:49:12 PM,03/25/2015 10:51:19 PM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Fire,03/25/2015 11:12:33 PM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",150844132-E13 -142950128,84,14103878,Medical Incident,10/22/2014,10/21/2014,10/22/2014 12:59:15 AM,10/22/2014 01:00:50 AM,10/22/2014 01:01:29 AM,10/22/2014 01:01:57 AM,10/22/2014 01:06:57 AM,10/22/2014 01:19:49 AM,10/22/2014 01:50:17 AM,Code 2 Transport,10/22/2014 02:29:58 AM,2500 Block of 46TH AVE,San Francisco,94116,B08,23,7712,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7389817886029, -122.504355407568)",142950128-84 -161002411,66,16039854,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:16:21 PM,04/09/2016 05:18:14 PM,04/09/2016 05:18:44 PM,04/09/2016 05:18:50 PM,04/09/2016 05:28:50 PM,04/09/2016 05:43:07 PM,04/09/2016 05:58:11 PM,Code 2 Transport,04/09/2016 06:38:49 PM,20TH ST/ILLINOIS ST,San Francisco,94107,B10,37,2665,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.7605502226463, -122.387568785661)",161002411-66 -142263279,T03,14078634,Elevator / Escalator Rescue,08/14/2014,08/14/2014,08/14/2014 08:46:54 PM,08/14/2014 08:47:59 PM,08/14/2014 08:49:43 PM,08/14/2014 08:51:11 PM,08/14/2014 08:53:06 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Fire,08/14/2014 09:03:30 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",142263279-T03 -160992466,64,16039381,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:10:11 PM,04/08/2016 04:12:52 PM,04/08/2016 04:14:13 PM,04/08/2016 04:14:34 PM,04/08/2016 04:27:40 PM,04/08/2016 04:49:10 PM,04/08/2016 05:18:04 PM,Code 2 Transport,04/08/2016 05:57:05 PM,400 Block of MANSELL ST,San Francisco,94134,B10,44,626,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7204133129314, -122.406069423364)",160992466-64 -151633693,AM24,15062504,Medical Incident,06/12/2015,06/12/2015,06/12/2015 09:52:23 PM,06/12/2015 09:52:23 PM,06/12/2015 09:53:57 PM,06/12/2015 09:54:21 PM,06/12/2015 10:02:13 PM,06/12/2015 10:05:55 PM,06/12/2015 10:23:17 PM,Code 2 Transport,06/12/2015 10:49:02 PM,23RD ST/WISCONSIN ST,San Francisco,94107,B10,37,2565,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7547453143315, -122.398693308443)",151633693-AM24 -160960866,KM04,16037927,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:03:44 AM,04/05/2016 09:03:44 AM,04/05/2016 09:04:27 AM,04/05/2016 09:04:38 AM,04/05/2016 09:13:48 AM,04/05/2016 09:27:33 AM,04/05/2016 09:36:42 AM,Code 2 Transport,04/05/2016 10:10:22 AM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160960866-KM04 -142450709,T08,14085266,Structure Fire,09/02/2014,09/01/2014,09/02/2014 07:49:32 AM,09/02/2014 07:49:32 AM,09/02/2014 07:50:07 AM,09/02/2014 07:51:23 AM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/02/2014 07:54:23 AM,100 Block of 10TH ST,San Francisco,94103,B02,29,2345,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7750968170762, -122.415590844463)",142450709-T08 -160961307,62,16037967,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:50:57 AM,04/05/2016 10:53:25 AM,04/05/2016 10:53:39 AM,04/05/2016 10:53:52 AM,04/05/2016 10:56:46 AM,04/05/2016 11:18:01 AM,04/05/2016 11:25:08 AM,Code 3 Transport,04/05/2016 12:01:24 PM,1900 Block of LAWTON ST,San Francisco,94122,B08,18,7454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7577150576279, -122.48370179722)",160961307-62 -150693479,T11,15026527,Alarms,03/10/2015,03/10/2015,03/10/2015 09:05:37 PM,03/10/2015 09:05:45 PM,03/10/2015 09:06:43 PM,03/10/2015 09:07:44 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 09:10:00 PM,23RD ST/VALENCIA ST,San Francisco,94110,B06,11,5512,3,3,3,false,Alarm,1,TRUCK,2,6,8,Mission,"(37.7537030945495, -122.420812137045)",150693479-T11 -152461908,D2,15093822,Structure Fire,09/03/2015,09/03/2015,09/03/2015 01:12:06 PM,09/03/2015 01:13:00 PM,09/03/2015 01:13:15 PM,09/03/2015 01:17:06 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/03/2015 01:31:14 PM,900 Block of JACKSON ST,San Francisco,94133,B01,2,1354,3,3,3,false,Alarm,1,CHIEF,6,1,3,Chinatown,"(37.7955961513636, -122.41050106502)",152461908-D2 -150091507,KM02,15003543,Medical Incident,01/09/2015,01/09/2015,01/09/2015 12:06:25 PM,01/09/2015 12:07:50 PM,01/09/2015 12:08:57 PM,01/09/2015 12:09:45 PM,01/09/2015 12:18:27 PM,01/09/2015 12:39:31 PM,01/09/2015 12:52:39 PM,Code 2 Transport,01/09/2015 01:21:52 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",150091507-KM02 -152083030,E39,15079364,Medical Incident,07/27/2015,07/27/2015,07/27/2015 06:05:26 PM,07/27/2015 06:06:03 PM,07/27/2015 06:06:26 PM,07/27/2015 06:07:47 PM,07/27/2015 06:11:31 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/27/2015 06:18:40 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",152083030-E39 -160992387,89,16039369,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:54:03 PM,04/08/2016 03:57:20 PM,04/08/2016 03:58:46 PM,04/08/2016 03:59:08 PM,04/08/2016 04:09:45 PM,04/08/2016 04:44:06 PM,04/08/2016 05:07:37 PM,Code 2 Transport,04/08/2016 05:29:35 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160992387-89 -160943680,KM03,16037455,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:02:46 PM,04/03/2016 11:03:46 PM,04/03/2016 11:04:02 PM,04/03/2016 11:04:34 PM,04/03/2016 11:08:05 PM,04/03/2016 11:21:08 PM,04/03/2016 11:33:48 PM,Code 2 Transport,04/03/2016 11:49:52 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160943680-KM03 -150411809,57,15015982,Medical Incident,02/10/2015,02/10/2015,02/10/2015 01:09:06 PM,02/10/2015 01:11:46 PM,02/10/2015 01:12:07 PM,02/10/2015 01:12:28 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Unable to Locate,02/10/2015 01:21:00 PM,19TH AV/ORTEGA ST,San Francisco,94116,B08,40,7421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7523785986376, -122.476292239944)",150411809-57 -150323039,88,15012479,Medical Incident,02/01/2015,02/01/2015,02/01/2015 07:10:42 PM,02/01/2015 07:10:42 PM,02/01/2015 07:10:54 PM,02/01/2015 07:11:38 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 3 Transport,02/01/2015 07:13:13 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Mission,"(37.7709133372974, -122.420304994325)",150323039-88 -141813699,E43,14062847,Medical Incident,06/30/2014,06/30/2014,06/30/2014 10:47:16 PM,06/30/2014 10:47:48 PM,06/30/2014 10:48:40 PM,06/30/2014 10:49:46 PM,06/30/2014 10:53:03 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Code 2 Transport,06/30/2014 11:11:15 PM,500 Block of CARTER ST,San Francisco,94134,B09,43,6245,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",141813699-E43 -142541057,T06,14088615,Traffic Collision,09/11/2014,09/11/2014,09/11/2014 09:48:56 AM,09/11/2014 09:50:52 AM,09/11/2014 09:52:14 AM,09/11/2014 09:52:14 AM,09/11/2014 09:52:14 AM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Code 2 Transport,09/11/2014 10:18:04 AM,14TH ST/SANCHEZ ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7675952427988, -122.431191120963)",142541057-T06 -141380048,E32,14047119,Medical Incident,05/18/2014,05/17/2014,05/18/2014 12:14:55 AM,05/18/2014 12:15:18 AM,05/18/2014 12:16:04 AM,05/18/2014 12:17:41 AM,05/18/2014 12:21:20 AM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,Code 2 Transport,05/18/2014 12:35:18 AM,0 Block of GORHAM ST,San Francisco,94112,B09,32,8262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,8,Outer Mission,"(37.7306016782661, -122.434476602758)",141380048-E32 -143391181,E36,14120303,Medical Incident,12/05/2014,12/05/2014,12/05/2014 09:53:27 AM,12/05/2014 09:54:20 AM,12/05/2014 09:54:39 AM,12/05/2014 09:54:50 AM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 10:31:57 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",143391181-E36 -160932578,KM04,16036955,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:03:23 PM,04/02/2016 05:04:49 PM,04/02/2016 05:06:30 PM,04/02/2016 05:07:48 PM,04/02/2016 05:15:30 PM,04/02/2016 05:34:15 PM,04/02/2016 05:49:59 PM,Code 2 Transport,04/02/2016 06:12:16 PM,2400 Block of BRYANT ST,San Francisco,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7551929288845, -122.409437552243)",160932578-KM04 -150382986,FD00D,15014889,,02/07/2015,02/07/2015,02/07/2015 06:34:52 PM,02/07/2015 06:34:52 PM,02/07/2015 06:55:53 PM,02/07/2015 06:55:53 PM,02/07/2015 06:55:53 PM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Cancelled,02/07/2015 06:56:12 PM,GEARY BL/SAINT JOSEPHS AV,San Francisco,94115,B05,10,4261,2,2,2,false,Non Life-threatening,1,SUPPORT,2,5,2,Presidio Heights,"(37.7828853346645, -122.442793100058)",150382986-FD00D -160940999,85,16037201,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:50:53 AM,04/03/2016 08:51:39 AM,04/03/2016 08:51:56 AM,04/03/2016 08:52:06 AM,04/03/2016 08:56:15 AM,04/03/2016 09:17:37 AM,04/03/2016 09:41:43 AM,Code 3 Transport,04/03/2016 10:22:34 AM,100 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843212349417, -122.38904057367)",160940999-85 -153363726,E36,15129416,Medical Incident,12/02/2015,12/02/2015,12/02/2015 09:04:57 PM,12/02/2015 09:06:04 PM,12/02/2015 09:07:01 PM,12/02/2015 09:10:14 PM,12/02/2015 09:12:15 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Code 2 Transport,12/02/2015 09:16:43 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",153363726-E36 -141310838,AM02,14044504,Medical Incident,05/11/2014,05/11/2014,05/11/2014 08:50:01 AM,05/11/2014 08:50:57 AM,05/11/2014 08:51:22 AM,05/11/2014 08:52:24 AM,05/11/2014 08:55:29 AM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Cancelled,05/11/2014 09:00:17 AM,2600 Block of 18TH AVE,San Francisco,94116,B08,40,7411,3,3,3,false,Non Life-threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7384268726639, -122.474229588463)",141310838-AM02 -161002745,88,16039890,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:00:47 PM,04/09/2016 07:00:47 PM,04/09/2016 07:01:20 PM,04/09/2016 07:01:31 PM,04/09/2016 07:04:54 PM,04/09/2016 07:43:15 PM,04/09/2016 07:53:41 PM,Code 2 Transport,04/09/2016 08:59:42 PM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",161002745-88 -160991655,88,16039288,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:53:47 PM,04/08/2016 12:54:49 PM,04/08/2016 12:55:10 PM,04/08/2016 12:55:23 PM,04/08/2016 12:58:37 PM,04/08/2016 01:14:15 PM,04/08/2016 01:29:10 PM,Code 2 Transport,04/08/2016 01:58:51 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",160991655-88 -150101407,54,15003922,Medical Incident,01/10/2015,01/10/2015,01/10/2015 11:51:35 AM,01/10/2015 11:53:36 AM,01/10/2015 11:54:51 AM,01/10/2015 11:55:06 AM,01/10/2015 12:14:41 PM,01/10/2015 12:32:05 PM,01/10/2015 12:55:07 PM,Code 2 Transport,01/10/2015 01:25:09 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",150101407-54 -151191145,RC3,15044946,Medical Incident,04/29/2015,04/29/2015,04/29/2015 09:43:43 AM,04/29/2015 09:44:20 AM,04/29/2015 09:49:26 AM,04/29/2015 09:50:28 AM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,Medical Examiner,04/29/2015 09:53:23 AM,300 Block of MOUNT VERNON AVE,San Francisco,94112,B09,15,8335,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7181807732625, -122.44769180173)",151191145-RC3 -151960965,E36,15074683,Medical Incident,07/15/2015,07/15/2015,07/15/2015 09:14:06 AM,07/15/2015 09:18:30 AM,07/15/2015 09:19:28 AM,07/15/2015 09:22:09 AM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Code 2 Transport,07/15/2015 09:24:41 AM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",151960965-E36 -160952484,66,16037683,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:32:37 PM,04/04/2016 03:33:35 PM,04/04/2016 03:35:11 PM,04/04/2016 03:35:43 PM,04/04/2016 03:40:19 PM,04/04/2016 03:57:38 PM,04/04/2016 04:14:35 PM,Code 2 Transport,04/04/2016 04:59:37 PM,1900 Block of BRYANT ST,San Francisco,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7623900668355, -122.410250127899)",160952484-66 -160953730,79,16037799,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:13:52 PM,04/04/2016 09:14:35 PM,04/04/2016 09:14:58 PM,04/04/2016 09:15:27 PM,04/04/2016 09:21:39 PM,04/04/2016 09:31:49 PM,04/04/2016 09:43:53 PM,Code 3 Transport,04/04/2016 10:58:10 PM,SILVER AV/SAN BRUNO AV,San Francisco,94134,B10,42,6362,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,10,9,Portola,"(37.7324386586756, -122.405607549199)",160953730-79 -161001036,AM10,16039687,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:45:30 AM,04/09/2016 09:48:27 AM,04/09/2016 09:49:09 AM,04/09/2016 09:49:38 AM,04/09/2016 10:04:33 AM,04/09/2016 10:22:59 AM,04/09/2016 10:32:19 AM,Code 2 Transport,04/09/2016 11:14:07 AM,JONES ST/STEVELOE PL,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7853538221219, -122.412881240585)",161001036-AM10 -142171801,T01,14075252,Structure Fire,08/05/2014,08/05/2014,08/05/2014 02:07:38 PM,08/05/2014 02:07:38 PM,08/05/2014 02:08:11 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Fire,08/05/2014 02:09:22 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,false,Alarm,1,TRUCK,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",142171801-T01 -160952309,61,16037666,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:52:54 PM,04/04/2016 02:54:45 PM,04/04/2016 02:55:26 PM,04/04/2016 02:55:35 PM,04/04/2016 02:57:42 PM,04/04/2016 03:16:56 PM,04/04/2016 03:41:36 PM,Code 3 Transport,04/04/2016 04:28:58 PM,POLK ST/SUTTER ST,San Francisco,94109,B04,3,3121,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",160952309-61 -160993927,AM14,16039518,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:53:13 PM,04/08/2016 10:54:20 PM,04/08/2016 11:01:00 PM,04/08/2016 11:01:00 PM,04/08/2016 11:07:52 PM,04/08/2016 11:21:45 PM,04/08/2016 11:53:41 PM,Code 2 Transport,04/09/2016 12:09:18 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160993927-AM14 -143481570,88,14124218,Medical Incident,12/14/2014,12/14/2014,12/14/2014 12:22:40 PM,12/14/2014 12:24:13 PM,12/14/2014 12:24:45 PM,12/14/2014 12:27:35 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,Code 2 Transport,12/14/2014 12:38:15 PM,900 Block of MASON ST,San Francisco,94108,B01,41,1414,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",143481570-88 -153371140,E08,15129575,Medical Incident,12/03/2015,12/03/2015,12/03/2015 09:32:48 AM,12/03/2015 09:35:03 AM,12/03/2015 09:36:21 AM,12/03/2015 09:36:21 AM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Code 2 Transport,12/03/2015 09:46:03 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7799892619986, -122.407376463936)",153371140-E08 -160932154,88,16036908,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:05:27 PM,04/02/2016 03:06:50 PM,04/02/2016 03:07:38 PM,04/02/2016 03:07:57 PM,04/02/2016 03:14:42 PM,04/02/2016 03:27:26 PM,04/02/2016 03:46:47 PM,Code 2 Transport,04/02/2016 04:03:04 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160932154-88 -152103045,74,15080101,Medical Incident,07/29/2015,07/29/2015,07/29/2015 06:28:21 PM,07/29/2015 06:28:21 PM,07/29/2015 06:28:21 PM,07/29/2015 06:28:21 PM,07/29/2015 06:28:21 PM,07/29/2015 06:44:27 PM,07/29/2015 07:18:05 PM,Code 3 Transport,07/29/2015 07:46:32 PM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,3,3,3,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",152103045-74 -160980418,72,16038773,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:57:32 AM,04/07/2016 03:59:06 AM,04/07/2016 03:59:15 AM,04/07/2016 04:00:19 AM,04/07/2016 04:03:02 AM,04/07/2016 04:22:53 AM,04/07/2016 04:32:30 AM,Code 3 Transport,04/07/2016 05:41:07 AM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",160980418-72 -150912535,AM08,15034655,Medical Incident,04/01/2015,04/01/2015,04/01/2015 04:17:34 PM,04/01/2015 04:18:13 PM,04/01/2015 04:18:43 PM,04/01/2015 04:19:37 PM,04/01/2015 04:26:24 PM,04/01/2015 04:37:31 PM,04/01/2015 05:02:14 PM,Code 2 Transport,04/01/2015 05:34:11 PM,100 Block of MISSISSIPPI ST,San Francisco,94107,B03,29,2431,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,10,Potrero Hill,"(37.7646017401486, -122.394837700995)",150912535-AM08 -160980181,AM22,16038740,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:23:55 AM,04/07/2016 01:23:55 AM,04/07/2016 01:24:06 AM,04/07/2016 01:25:44 AM,04/07/2016 01:29:36 AM,04/07/2016 01:51:08 AM,04/07/2016 02:12:06 AM,Code 2 Transport,04/07/2016 02:51:13 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160980181-AM22 -153323676,62,15127868,Medical Incident,11/28/2015,11/28/2015,11/28/2015 10:50:29 PM,11/28/2015 10:50:29 PM,11/28/2015 10:50:42 PM,11/28/2015 10:51:02 PM,11/28/2015 10:56:44 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Against Medical Advice,11/29/2015 12:09:30 AM,1200 Block of BRYANT ST,San Francisco,94103,B02,29,2345,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7698407815033, -122.410284863543)",153323676-62 -150491806,88,15018963,Medical Incident,02/18/2015,02/18/2015,02/18/2015 12:31:56 PM,02/18/2015 12:32:53 PM,02/18/2015 12:33:14 PM,02/18/2015 12:33:23 PM,02/18/2015 12:38:21 PM,04/25/2016 01:12:10 PM,04/25/2016 01:12:10 PM,Medical Examiner,02/18/2015 12:43:06 PM,2900 Block of GEARY BLVD,San Francisco,94118,B05,10,4454,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.781927880036, -122.450580814457)",150491806-88 -151033805,D3,15039143,Structure Fire,04/13/2015,04/13/2015,04/13/2015 10:20:07 PM,04/13/2015 10:23:43 PM,04/13/2015 10:24:05 PM,04/13/2015 10:25:39 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Fire,04/13/2015 10:27:28 PM,REVERE AV/HAWES ST,San Francisco,94124,B10,17,6634,3,3,3,false,Alarm,1,CHIEF,8,10,10,Bayview Hunters Point,"(37.7274248732127, -122.382686989318)",151033805-D3 -150553579,B06,15021240,Alarms,02/24/2015,02/24/2015,02/24/2015 08:29:01 PM,02/24/2015 08:30:26 PM,02/24/2015 08:30:34 PM,02/24/2015 08:31:37 PM,02/24/2015 08:34:54 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Fire,02/24/2015 08:38:28 PM,3700 Block of 25TH ST,San Francisco,94110,B06,11,5536,3,3,3,false,Alarm,1,CHIEF,2,6,8,Mission,"(37.750323366412, -122.424419869069)",150553579-B06 -141690857,E35,14058261,Traffic Collision,06/18/2014,06/18/2014,06/18/2014 09:18:42 AM,06/18/2014 09:18:58 AM,06/18/2014 09:20:24 AM,06/18/2014 09:20:49 AM,06/18/2014 09:23:36 AM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Code 2 Transport,06/18/2014 09:43:06 AM,FOLSOM ST/BEALE ST,San Francisco,94105,B03,35,2122,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7886866619654, -122.392722833778)",141690857-E35 -150080191,88,15002950,Medical Incident,01/08/2015,01/07/2015,01/08/2015 01:35:33 AM,01/08/2015 01:35:33 AM,01/08/2015 01:36:56 AM,01/08/2015 01:37:02 AM,01/08/2015 01:45:25 AM,01/08/2015 02:01:04 AM,01/08/2015 02:08:23 AM,Code 2 Transport,01/08/2015 02:57:18 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",150080191-88 -141410342,55,14048219,Medical Incident,05/21/2014,05/20/2014,05/21/2014 04:35:19 AM,05/21/2014 04:36:30 AM,05/21/2014 04:37:27 AM,05/21/2014 04:39:00 AM,05/21/2014 04:45:43 AM,05/21/2014 04:58:33 AM,05/21/2014 05:06:05 AM,Code 2 Transport,05/21/2014 05:59:36 AM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141410342-55 -151921551,KM11,15073258,Medical Incident,07/11/2015,07/11/2015,07/11/2015 11:55:44 AM,07/11/2015 11:57:31 AM,07/11/2015 11:57:43 AM,07/11/2015 11:59:39 AM,07/11/2015 12:04:22 PM,07/11/2015 12:11:08 PM,07/11/2015 12:53:11 PM,Code 2 Transport,07/11/2015 01:09:03 PM,2100 Block of LARKIN ST,San Francisco,94109,B01,41,1631,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7975625827342, -122.420477453586)",151921551-KM11 -141531281,B02,14052516,Alarms,06/02/2014,06/02/2014,06/02/2014 11:06:15 AM,06/02/2014 11:07:35 AM,06/02/2014 11:08:04 AM,06/02/2014 11:08:18 AM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Fire,06/02/2014 11:17:53 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,false,Alarm,1,CHIEF,4,2,8,Mission,"(37.7661259454801, -122.42207304894)",141531281-B02 -141070079,T03,14036022,Alarms,04/17/2014,04/17/2014,04/17/2014 08:40:07 AM,04/17/2014 08:40:34 AM,04/17/2014 08:40:53 AM,04/17/2014 08:41:34 AM,04/17/2014 08:44:18 AM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Fire,04/17/2014 08:45:51 AM,400 Block of MCALLISTER ST,SAN FRANCISCO,94102,B02,3,3112,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",141070079-T03 -160974399,68,16038692,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:13:49 PM,04/06/2016 10:14:28 PM,04/06/2016 10:14:48 PM,04/06/2016 10:14:57 PM,04/06/2016 10:30:24 PM,04/06/2016 10:30:27 PM,04/06/2016 10:41:55 PM,Code 2 Transport,04/06/2016 11:28:39 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160974399-68 -160983986,76,16039137,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:50:27 PM,04/07/2016 10:50:27 PM,04/07/2016 10:50:44 PM,04/07/2016 10:50:53 PM,04/07/2016 11:01:53 PM,04/07/2016 11:20:58 PM,04/07/2016 11:53:29 PM,Code 2 Transport,04/08/2016 12:24:16 AM,MCALLISTER ST/FILLMORE ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",160983986-76 -142091246,RC2,14072403,Medical Incident,07/28/2014,07/28/2014,07/28/2014 11:38:34 AM,07/28/2014 11:39:36 AM,07/28/2014 11:41:38 AM,07/28/2014 11:41:38 AM,07/28/2014 11:45:07 AM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Code 2 Transport,07/28/2014 11:51:58 AM,5100 Block of GEARY BLVD,San Francisco,94118,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.780681797301, -122.474542915002)",142091246-RC2 -141200286,87,14040628,Medical Incident,04/30/2014,04/30/2014,04/30/2014 04:49:19 PM,04/30/2014 04:49:50 PM,04/30/2014 04:51:53 PM,04/30/2014 04:52:27 PM,04/30/2014 04:56:46 PM,04/25/2016 01:17:36 PM,04/25/2016 01:17:36 PM,Patient Declined Transport,04/30/2014 05:17:17 PM,ASHBURY ST/WALLER ST,SAN FRANCISCO,94117,B05,12,4512,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.769074355559, -122.446744892572)",141200286-87 -143243709,87,14114895,Medical Incident,11/20/2014,11/20/2014,11/20/2014 11:16:44 PM,11/20/2014 11:21:21 PM,11/20/2014 11:22:04 PM,11/20/2014 11:22:15 PM,11/20/2014 11:27:15 PM,11/20/2014 11:49:20 PM,11/20/2014 11:55:14 PM,Code 2 Transport,11/21/2014 12:21:39 AM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",143243709-87 -142661732,T05,14093098,Administrative,09/23/2014,09/23/2014,09/23/2014 01:06:56 PM,09/23/2014 01:07:02 PM,09/23/2014 01:07:16 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Fire,09/23/2014 01:07:44 PM,1300 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",142661732-T05 -150490791,E13,15018874,Medical Incident,02/18/2015,02/18/2015,02/18/2015 08:18:44 AM,02/18/2015 08:20:42 AM,02/18/2015 08:21:45 AM,02/18/2015 08:22:32 AM,02/18/2015 08:25:11 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Code 2 Transport,02/18/2015 08:41:24 AM,600 Block of KEARNY ST,San Francisco,94108,B01,13,1244,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7942286247262, -122.404821897781)",150490791-E13 -141090251,E42,14036828,Medical Incident,04/19/2014,04/19/2014,04/19/2014 05:03:54 PM,04/19/2014 05:05:00 PM,04/19/2014 05:05:12 PM,04/19/2014 05:06:12 PM,04/19/2014 05:07:52 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Medical Examiner,04/19/2014 05:37:47 PM,500 Block of BURROWS ST,SAN FRANCISCO,94134,B10,42,6336,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7276186550841, -122.408522876497)",141090251-E42 -142743244,67,14096212,Medical Incident,10/01/2014,10/01/2014,10/01/2014 07:13:16 PM,10/01/2014 07:14:53 PM,10/01/2014 07:15:06 PM,10/01/2014 07:15:15 PM,10/01/2014 07:34:46 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Code 2 Transport,10/01/2014 07:38:41 PM,300 Block of FRANKLIN ST,San Francisco,94102,B02,36,3214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7773165147413, -122.421446588908)",142743244-67 -151383369,E38,15052569,Other,05/18/2015,05/18/2015,05/18/2015 08:43:56 PM,05/18/2015 08:45:25 PM,05/18/2015 08:45:51 PM,05/18/2015 08:46:47 PM,05/18/2015 08:52:40 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Fire,05/18/2015 09:05:21 PM,2400 Block of FRANKLIN ST,San Francisco,94123,B04,38,3232,3,3,3,false,Alarm,1,ENGINE,1,4,2,Marina,"(37.7969361460731, -122.42541171957)",151383369-E38 -150540773,E32,15020651,Medical Incident,02/23/2015,02/23/2015,02/23/2015 08:33:54 AM,02/23/2015 08:36:07 AM,02/23/2015 08:36:30 AM,02/23/2015 08:37:54 AM,02/23/2015 08:41:40 AM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Medical Examiner,02/23/2015 08:51:46 AM,100 Block of ELLERT ST,San Francisco,94110,B06,32,5742,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7384112563215, -122.417199146201)",150540773-E32 -142883895,81,14101676,Medical Incident,10/15/2014,10/15/2014,10/15/2014 10:38:43 PM,10/15/2014 10:40:35 PM,10/15/2014 10:40:51 PM,10/15/2014 10:41:29 PM,10/15/2014 10:59:53 PM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Patient Declined Transport,10/15/2014 11:15:27 PM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",142883895-81 -150630242,E06,15023902,Medical Incident,03/04/2015,03/03/2015,03/04/2015 02:21:21 AM,03/04/2015 02:22:59 AM,03/04/2015 02:23:08 AM,03/04/2015 02:25:10 AM,03/04/2015 02:27:08 AM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Code 2 Transport,03/04/2015 02:36:27 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",150630242-E06 -142374017,75,14082621,Medical Incident,08/25/2014,08/25/2014,08/25/2014 10:50:35 PM,08/25/2014 10:51:06 PM,08/25/2014 10:51:30 PM,08/25/2014 10:51:44 PM,08/25/2014 10:58:34 PM,08/25/2014 11:13:25 PM,08/25/2014 11:36:06 PM,Code 2 Transport,08/26/2014 12:11:54 AM,2900 Block of GRIFFITH ST,San Francisco,94124,B10,17,6642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7165907184231, -122.389695949457)",142374017-75 -141830633,68,14063214,Medical Incident,07/02/2014,07/01/2014,07/02/2014 07:48:07 AM,07/02/2014 07:48:07 AM,07/02/2014 07:48:50 AM,07/02/2014 07:49:26 AM,07/02/2014 07:59:14 AM,07/02/2014 08:17:17 AM,07/02/2014 08:32:24 AM,Code 2 Transport,07/02/2014 09:08:48 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",141830633-68 -160992280,AM02,16039357,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:31:25 PM,04/08/2016 03:33:28 PM,04/08/2016 03:33:54 PM,04/08/2016 03:34:48 PM,04/08/2016 03:37:28 PM,04/08/2016 03:54:38 PM,04/08/2016 04:07:01 PM,Code 2 Transport,04/08/2016 04:47:31 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160992280-AM02 -160980375,60,16038768,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:29:13 AM,04/07/2016 03:29:13 AM,04/07/2016 03:29:32 AM,04/07/2016 03:29:48 AM,04/07/2016 03:43:32 AM,04/07/2016 04:22:36 AM,04/07/2016 04:40:37 AM,Code 2 Transport,04/07/2016 05:29:20 AM,BEALE ST/HOWARD ST,San Francisco,94105,B03,35,2124,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7899262298106, -122.394276229254)",160980375-60 -152163550,E10,15082423,Structure Fire,08/04/2015,08/04/2015,08/04/2015 10:02:51 PM,08/04/2015 10:04:30 PM,08/04/2015 10:04:50 PM,08/04/2015 10:05:36 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/04/2015 10:17:28 PM,4100 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7125,3,3,3,true,Alarm,1,ENGINE,9,7,1,Inner Richmond,"(37.7852804027584, -122.461894057321)",152163550-E10 -151551583,KM09,15059077,Medical Incident,06/04/2015,06/04/2015,06/04/2015 11:55:04 AM,06/04/2015 11:55:41 AM,06/04/2015 11:56:11 AM,06/04/2015 11:56:57 AM,06/04/2015 12:01:18 PM,06/04/2015 12:16:11 PM,06/04/2015 12:42:27 PM,Code 2 Transport,06/04/2015 01:32:33 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",151551583-KM09 -160970842,AM02,16038320,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:35:18 AM,04/06/2016 08:36:30 AM,04/06/2016 08:37:44 AM,04/06/2016 08:38:17 AM,04/06/2016 08:59:04 AM,04/06/2016 09:13:29 AM,04/06/2016 09:35:09 AM,Code 2 Transport,04/06/2016 10:33:21 AM,2700 Block of LAKE ST,San Francisco,94121,B07,14,7236,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7851739912222, -122.488860460102)",160970842-AM02 -141020007,E01,14034284,Medical Incident,04/12/2014,04/11/2014,04/12/2014 12:18:40 AM,04/12/2014 12:20:17 AM,04/12/2014 12:20:43 AM,04/25/2016 01:17:56 PM,04/12/2014 12:24:39 AM,04/25/2016 01:17:56 PM,04/25/2016 01:17:56 PM,Code 2 Transport,04/12/2014 12:30:21 AM,200 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",141020007-E01 -142533924,67,14088492,Medical Incident,09/10/2014,09/10/2014,09/10/2014 10:10:31 PM,09/10/2014 10:10:31 PM,09/10/2014 10:10:55 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Patient Declined Transport,09/10/2014 10:12:01 PM,600 Block of PENNSYLVANIA AVE,San Francisco,94107,B10,37,2535,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7589222232501, -122.39331266783)",142533924-67 -150402287,75,15015650,Medical Incident,02/09/2015,02/09/2015,02/09/2015 03:17:27 PM,02/09/2015 03:19:04 PM,02/09/2015 03:19:22 PM,02/09/2015 03:19:58 PM,02/09/2015 03:39:55 PM,02/09/2015 03:40:02 PM,02/09/2015 03:52:54 PM,Code 2 Transport,02/09/2015 04:19:45 PM,2500 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7294190904862, -122.404411917151)",150402287-75 -160982328,57,16038969,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:44:25 PM,04/07/2016 02:45:02 PM,04/07/2016 02:45:43 PM,04/07/2016 02:46:11 PM,04/07/2016 03:01:46 PM,04/07/2016 03:19:56 PM,04/07/2016 03:48:08 PM,Code 2 Transport,04/07/2016 04:21:33 PM,UNION ST/COLUMBUS AV,San Francisco,94133,B01,28,1334,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8003154984429, -122.410206543893)",160982328-57 -141250361,E17,14042487,Vehicle Fire,05/05/2014,05/05/2014,05/05/2014 07:24:02 PM,05/05/2014 07:25:31 PM,05/05/2014 07:25:56 PM,05/05/2014 07:27:35 PM,05/05/2014 07:34:16 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,CHP,05/05/2014 07:37:05 PM,100 Block of BAY SHORE BLVD,SAN FRANCISCO,94124,B10,44,6575,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",141250361-E17 -160981936,55,16038923,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:01:33 PM,04/07/2016 01:02:49 PM,04/07/2016 01:03:44 PM,04/07/2016 01:04:14 PM,04/07/2016 01:19:03 PM,04/07/2016 01:34:40 PM,04/07/2016 01:49:33 PM,Code 2 Transport,04/07/2016 02:08:18 PM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.709762526111, -122.449674980499)",160981936-55 -160980588,53,16038790,Medical Incident,04/07/2016,04/06/2016,04/07/2016 06:36:08 AM,04/07/2016 06:36:08 AM,04/07/2016 06:36:08 AM,04/07/2016 06:36:08 AM,04/07/2016 06:36:08 AM,04/07/2016 06:54:33 AM,04/07/2016 07:27:33 AM,Code 2 Transport,04/07/2016 08:22:33 AM,900 Block of HYDE ST,San Francisco,94109,B04,3,1561,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",160980588-53 -142773319,58,14097518,Medical Incident,10/04/2014,10/04/2014,10/04/2014 06:59:57 PM,10/04/2014 06:59:57 PM,10/04/2014 07:01:16 PM,10/04/2014 07:02:17 PM,10/04/2014 07:05:10 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Patient Declined Transport,10/04/2014 07:16:15 PM,800 Block of ULLOA ST,San Francisco,94127,B08,39,8611,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7407687115215, -122.465419969863)",142773319-58 -152902255,E15,15111460,Medical Incident,10/17/2015,10/17/2015,10/17/2015 03:11:29 PM,10/17/2015 03:11:29 PM,10/17/2015 03:11:53 PM,10/17/2015 03:13:18 PM,10/17/2015 03:15:50 PM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Patient Declined Transport,10/17/2015 03:23:45 PM,700 Block of HEAD ST,San Francisco,94132,B09,33,8433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7206866121124, -122.464403388281)",152902255-E15 -151363032,E03,15051774,Medical Incident,05/16/2015,05/16/2015,05/16/2015 06:36:35 PM,05/16/2015 06:42:06 PM,05/16/2015 06:42:31 PM,05/16/2015 06:43:45 PM,05/16/2015 06:51:13 PM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Code 2 Transport,05/16/2015 06:52:05 PM,300 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",151363032-E03 -160970632,89,16038297,Traffic Collision,04/06/2016,04/05/2016,04/06/2016 07:28:36 AM,04/06/2016 07:28:36 AM,04/06/2016 07:28:36 AM,04/06/2016 07:28:36 AM,04/06/2016 07:28:36 AM,04/06/2016 08:01:59 AM,04/06/2016 08:20:53 AM,Code 2 Transport,04/06/2016 08:47:17 AM,24TH ST/SANCHEZ ST,San Francisco,94114,B99,11,5523,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7515708558103, -122.429658710779)",160970632-89 -141240270,77,14042108,Medical Incident,05/04/2014,05/04/2014,05/04/2014 06:54:59 PM,05/04/2014 06:55:39 PM,05/04/2014 07:15:31 PM,05/04/2014 07:16:18 PM,05/04/2014 07:25:25 PM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Other,05/04/2014 07:29:45 PM,1400 Block of CLAY ST,SAN FRANCISCO,94109,B01,41,1536,,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7928543973029, -122.416925086375)",141240270-77 -160940892,64,16037190,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:01:40 AM,04/03/2016 08:03:18 AM,04/03/2016 08:03:43 AM,04/03/2016 08:04:12 AM,04/03/2016 08:14:47 AM,04/03/2016 08:34:28 AM,04/03/2016 08:49:00 AM,Code 2 Transport,04/03/2016 09:39:50 AM,400 Block of CESAR CHAVEZ ST,San Francisco,94124,B10,25,980,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7504165712994, -122.384149714772)",160940892-64 -160942048,AM02,16037283,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:09:09 PM,04/03/2016 02:12:02 PM,04/03/2016 02:12:16 PM,04/03/2016 02:12:46 PM,04/03/2016 02:16:54 PM,04/03/2016 02:49:33 PM,04/03/2016 03:01:21 PM,Code 2 Transport,04/03/2016 03:41:25 PM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7867689878846, -122.416612241888)",160942048-AM02 -151441750,RC1,15054780,Traffic Collision,05/24/2015,05/24/2015,05/24/2015 01:29:53 PM,05/24/2015 01:30:18 PM,05/24/2015 01:31:15 PM,05/24/2015 01:31:35 PM,05/24/2015 01:38:13 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Code 2 Transport,05/24/2015 02:06:22 PM,WASHINGTON ST/VAN NESS AV,San Francisco,94109,B04,38,3226,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,6,4,2,Pacific Heights,"(37.7930500018548, -122.422871202871)",151441750-RC1 -150202244,E41,15007882,Structure Fire,01/20/2015,01/20/2015,01/20/2015 03:23:41 PM,01/20/2015 03:23:41 PM,01/20/2015 03:24:00 PM,01/20/2015 03:24:40 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Fire,01/20/2015 03:28:11 PM,POLK ST/GREENWICH ST,San Francisco,94109,B01,16,3132,3,3,3,false,Alarm,1,ENGINE,1,4,2,Russian Hill,"(37.8006241524646, -122.422713159969)",150202244-E41 -153271396,AM06,15125832,Medical Incident,11/23/2015,11/23/2015,11/23/2015 11:10:55 AM,11/23/2015 11:12:02 AM,11/23/2015 11:12:38 AM,11/23/2015 11:13:24 AM,11/23/2015 11:18:15 AM,11/23/2015 11:39:44 AM,11/23/2015 11:51:46 AM,Code 2 Transport,11/23/2015 12:18:43 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",153271396-AM06 -160923560,70,16036616,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:29:03 PM,04/01/2016 09:32:53 PM,04/01/2016 09:33:06 PM,04/01/2016 09:33:15 PM,04/01/2016 09:37:34 PM,04/01/2016 09:49:27 PM,04/01/2016 09:54:21 PM,Code 2 Transport,04/01/2016 10:08:22 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.780721312022, -122.415737767164)",160923560-70 -150662690,RC3,15025323,Medical Incident,03/07/2015,03/07/2015,03/07/2015 05:39:11 PM,03/07/2015 05:39:23 PM,03/07/2015 05:39:44 PM,03/07/2015 05:45:24 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,No Merit,03/07/2015 05:45:26 PM,1700 Block of TARAVAL ST,San Francisco,94116,B08,18,7522,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,8,4,Sunset/Parkside,"(37.7425947020012, -122.484795710128)",150662690-RC3 -142801017,E33,14098428,Alarms,10/07/2014,10/07/2014,10/07/2014 09:46:09 AM,10/07/2014 09:47:33 AM,10/07/2014 09:47:40 AM,10/07/2014 09:49:05 AM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Fire,10/07/2014 09:49:25 AM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,false,Alarm,1,ENGINE,4,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",142801017-E33 -160951740,87,16037625,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:35:55 PM,04/04/2016 12:37:00 PM,04/04/2016 12:37:48 PM,04/04/2016 12:39:58 PM,04/04/2016 12:45:11 PM,04/04/2016 12:56:23 PM,04/04/2016 01:15:41 PM,Code 2 Transport,04/04/2016 02:04:10 PM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160951740-87 -150950693,71,15036002,Medical Incident,04/05/2015,04/04/2015,04/05/2015 07:26:02 AM,04/05/2015 07:26:41 AM,04/05/2015 07:26:55 AM,04/25/2016 01:11:20 PM,04/25/2016 01:11:20 PM,04/25/2016 01:11:20 PM,04/25/2016 01:11:20 PM,Code 2 Transport,04/05/2015 07:32:43 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",150950693-71 -150103386,75,15004141,Medical Incident,01/10/2015,01/10/2015,01/10/2015 09:49:24 PM,01/10/2015 09:52:01 PM,01/10/2015 09:52:51 PM,01/10/2015 09:53:10 PM,01/10/2015 10:03:27 PM,01/10/2015 10:07:50 PM,01/10/2015 10:17:07 PM,Code 2 Transport,01/10/2015 10:29:39 PM,2900 Block of MISSION ST,San Francisco,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7498446220826, -122.418142583283)",150103386-75 -151633919,E35,15062530,Medical Incident,06/12/2015,06/12/2015,06/12/2015 11:08:15 PM,06/12/2015 11:08:15 PM,06/12/2015 11:08:29 PM,06/12/2015 11:09:58 PM,06/12/2015 11:14:57 PM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,Code 2 Transport,06/12/2015 11:17:07 PM,100 Block of 2ND ST,San Francisco,94105,B03,1,2146,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7869524495987, -122.398572324987)",151633919-E35 -160974021,KM07,16038648,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:15:13 PM,04/06/2016 08:17:17 PM,04/06/2016 08:17:43 PM,04/06/2016 08:18:11 PM,04/06/2016 08:23:58 PM,04/06/2016 08:50:55 PM,04/06/2016 09:13:35 PM,Code 2 Transport,04/06/2016 09:51:38 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160974021-KM07 -152553396,E36,15097661,Traffic Collision,09/12/2015,09/12/2015,09/12/2015 09:00:20 PM,09/12/2015 09:02:34 PM,09/12/2015 09:03:15 PM,09/12/2015 09:04:38 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,No Merit,09/12/2015 09:06:14 PM,300 Block of DIVISION ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,5,2,10,Mission,"(37.7690697135105, -122.409528901583)",152553396-E36 -142231556,KM02,14077385,Medical Incident,08/11/2014,08/11/2014,08/11/2014 01:05:19 PM,08/11/2014 01:06:40 PM,08/11/2014 01:07:16 PM,08/11/2014 01:08:16 PM,08/11/2014 01:21:54 PM,08/11/2014 01:21:58 PM,08/11/2014 01:28:05 PM,Code 2 Transport,08/11/2014 02:01:07 PM,UNION ST/LAGUNA ST,San Francisco,94123,B04,16,3335,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7977162114993, -122.430558960196)",142231556-KM02 -150901737,RS1,15034290,Medical Incident,03/31/2015,03/31/2015,03/31/2015 01:15:55 PM,03/31/2015 01:17:08 PM,03/31/2015 01:17:54 PM,03/31/2015 01:20:38 PM,03/31/2015 01:24:45 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Code 3 Transport,03/31/2015 01:27:15 PM,0 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,1,3,Financial District/South Beach,"(37.7895797011957, -122.402025244971)",150901737-RS1 -152313977,E41,15088313,Structure Fire,08/19/2015,08/19/2015,08/19/2015 10:28:21 PM,08/19/2015 10:29:58 PM,08/19/2015 10:30:21 PM,08/19/2015 10:31:57 PM,08/19/2015 10:33:01 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Fire,08/19/2015 10:35:21 PM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,false,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",152313977-E41 -150780068,82,15029737,Medical Incident,03/19/2015,03/18/2015,03/19/2015 12:26:31 AM,03/19/2015 12:28:18 AM,03/19/2015 12:29:16 AM,03/19/2015 12:30:00 AM,03/19/2015 12:34:30 AM,03/19/2015 12:47:56 AM,03/19/2015 12:54:36 AM,Code 2 Transport,03/19/2015 01:37:17 AM,3000 Block of MISSION ST,San Francisco,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.748597504437, -122.418163001869)",150780068-82 -150960355,60,15036301,Medical Incident,04/06/2015,04/05/2015,04/06/2015 04:49:45 AM,04/06/2015 04:49:45 AM,04/06/2015 04:50:26 AM,04/06/2015 04:50:53 AM,04/06/2015 05:02:09 AM,04/25/2016 01:11:19 PM,04/25/2016 01:11:19 PM,Patient Declined Transport,04/06/2015 05:39:26 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",150960355-60 -152693844,E36,15103267,Medical Incident,09/26/2015,09/26/2015,09/26/2015 10:12:46 PM,09/26/2015 10:14:42 PM,09/26/2015 10:16:19 PM,09/26/2015 10:18:48 PM,09/26/2015 10:20:41 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Code 3 Transport,09/26/2015 10:30:01 PM,600 Block of GOUGH ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7789716986194, -122.42346947231)",152693844-E36 -152181967,E13,15083030,Medical Incident,08/06/2015,08/06/2015,08/06/2015 01:49:55 PM,08/06/2015 01:51:55 PM,08/06/2015 01:52:18 PM,08/06/2015 01:53:20 PM,08/06/2015 01:55:09 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/06/2015 02:16:22 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",152181967-E13 -151833499,E03,15069999,Medical Incident,07/02/2015,07/02/2015,07/02/2015 07:28:36 PM,07/02/2015 07:28:36 PM,07/02/2015 07:28:58 PM,07/02/2015 07:30:08 PM,07/02/2015 07:31:08 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Code 2 Transport,07/02/2015 07:37:48 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",151833499-E03 -150120296,E36,15004595,Outside Fire,01/12/2015,01/11/2015,01/12/2015 03:43:19 AM,01/12/2015 03:44:49 AM,01/12/2015 03:47:12 AM,01/12/2015 03:50:06 AM,01/12/2015 03:52:33 AM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Fire,01/12/2015 03:57:17 AM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,3,3,3,true,Fire,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",150120296-E36 -151300145,E13,15049187,Traffic Collision,05/10/2015,05/09/2015,05/10/2015 01:03:05 AM,05/10/2015 01:03:05 AM,05/10/2015 01:03:49 AM,05/10/2015 01:04:49 AM,05/10/2015 01:06:25 AM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Code 2 Transport,05/10/2015 01:28:00 AM,BATTERY ST/SACRAMENTO ST,San Francisco,94104,B01,13,1141,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7941342341045, -122.400148778875)",151300145-E13 -151041542,RS2,15039333,Structure Fire,04/14/2015,04/14/2015,04/14/2015 12:22:14 PM,04/14/2015 12:23:05 PM,04/14/2015 12:23:18 PM,04/14/2015 12:25:05 PM,04/14/2015 12:25:50 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Fire,04/14/2015 12:34:26 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,false,Alarm,1,RESCUE SQUAD,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",151041542-RS2 -153002767,RC1,15115199,Traffic Collision,10/27/2015,10/27/2015,10/27/2015 05:14:28 PM,10/27/2015 05:14:28 PM,10/27/2015 05:16:47 PM,10/27/2015 05:18:24 PM,10/27/2015 05:20:16 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/27/2015 05:36:39 PM,MISSION ST/2ND ST,San Francisco,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.788007159489, -122.39979802517)",153002767-RC1 -151610653,83,15061422,Medical Incident,06/10/2015,06/09/2015,06/10/2015 07:35:43 AM,06/10/2015 07:36:35 AM,06/10/2015 07:36:46 AM,06/10/2015 07:36:53 AM,06/10/2015 07:45:32 AM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Patient Declined Transport,06/10/2015 08:55:38 AM,200 Block of RAMSELL ST,San Francisco,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7151957808597, -122.466278506121)",151610653-83 -141140364,E01,14038629,Medical Incident,04/24/2014,04/24/2014,04/24/2014 09:47:00 PM,04/24/2014 09:48:04 PM,04/24/2014 09:48:24 PM,04/24/2014 09:48:44 PM,04/24/2014 09:50:28 PM,04/25/2016 01:17:42 PM,04/25/2016 01:17:42 PM,Other,04/24/2014 09:52:54 PM,NATOMA ST/9TH ST,SAN FRANCISCO,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7754369813936, -122.413718153207)",141140364-E01 -153053925,B03,15117326,Structure Fire,11/01/2015,11/01/2015,11/01/2015 08:10:48 PM,11/01/2015 08:11:10 PM,11/01/2015 08:13:53 PM,11/01/2015 08:15:09 PM,11/01/2015 08:16:57 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/01/2015 08:29:27 PM,600 Block of BRANNAN ST,San Francisco,94107,B03,8,2256,3,3,3,false,Fire,1,CHIEF,2,3,6,Mission Bay,"(37.775649664208, -122.399819692455)",153053925-B03 -161000937,55,16039678,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:07:56 AM,04/09/2016 09:09:23 AM,04/09/2016 09:10:27 AM,04/09/2016 09:10:38 AM,04/09/2016 09:26:31 AM,04/09/2016 09:43:05 AM,04/09/2016 10:08:44 AM,Code 2 Transport,04/09/2016 10:21:39 AM,JACKSON ST/WEBSTER ST,San Francisco,94115,B04,38,3465,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7926799136599, -122.432917576713)",161000937-55 -152660806,63,15101759,Medical Incident,09/23/2015,09/23/2015,09/23/2015 08:17:35 AM,09/23/2015 08:18:48 AM,09/23/2015 08:19:25 AM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,Code 2 Transport,09/23/2015 08:20:05 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",152660806-63 -153331366,85,15128036,Medical Incident,11/29/2015,11/29/2015,11/29/2015 12:08:07 PM,11/29/2015 12:08:07 PM,11/29/2015 12:09:57 PM,11/29/2015 12:11:38 PM,11/29/2015 12:15:41 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Patient Declined Transport,11/29/2015 01:28:44 PM,UNION ST/WEBSTER ST,San Francisco,94123,B04,16,3443,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.7972980276891, -122.433846734643)",153331366-85 -150870932,88,15033156,Medical Incident,03/28/2015,03/28/2015,03/28/2015 08:46:42 AM,03/28/2015 08:47:21 AM,03/28/2015 09:00:26 AM,03/28/2015 09:02:20 AM,03/28/2015 09:08:20 AM,03/28/2015 09:35:34 AM,03/28/2015 09:52:35 AM,Code 2 Transport,03/28/2015 10:31:02 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",150870932-88 -151821180,E03,15069420,Medical Incident,07/01/2015,07/01/2015,07/01/2015 10:25:27 AM,07/01/2015 10:27:32 AM,07/01/2015 10:27:59 AM,07/01/2015 10:28:38 AM,07/01/2015 10:35:16 AM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Code 2 Transport,07/01/2015 10:49:18 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",151821180-E03 -152091447,E36,15079592,Medical Incident,07/28/2015,07/28/2015,07/28/2015 11:09:50 AM,07/28/2015 11:10:57 AM,07/28/2015 11:11:03 AM,07/28/2015 11:13:02 AM,07/28/2015 11:15:21 AM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/28/2015 11:17:54 AM,200 Block of 11TH ST,San Francisco,94103,B02,36,5114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7724423373209, -122.414647523858)",152091447-E36 -160954172,AM24,16037836,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:49:58 PM,04/04/2016 11:50:55 PM,04/04/2016 11:51:28 PM,04/04/2016 11:52:14 PM,04/04/2016 11:59:29 PM,04/05/2016 12:07:36 AM,04/05/2016 12:15:51 AM,Code 2 Transport,04/05/2016 12:46:03 AM,600 Block of EDDY ST,San Francisco,94102,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",160954172-AM24 -142543140,83,14088789,Elevator / Escalator Rescue,09/11/2014,09/11/2014,09/11/2014 07:31:46 PM,09/11/2014 07:32:52 PM,09/11/2014 07:34:17 PM,09/11/2014 07:34:30 PM,09/11/2014 07:37:47 PM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,No Merit,09/11/2014 08:11:29 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Alarm,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",142543140-83 -142622057,T02,14091643,Alarms,09/19/2014,09/19/2014,09/19/2014 02:09:10 PM,09/19/2014 02:10:30 PM,09/19/2014 02:11:21 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,No Merit,09/19/2014 02:13:35 PM,200 Block of BEACH ST,San Francisco,94133,B01,28,1344,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.8076407484143, -122.413163175978)",142622057-T02 -150560137,78,15021293,Medical Incident,02/25/2015,02/24/2015,02/25/2015 01:20:37 AM,02/25/2015 01:21:49 AM,02/25/2015 01:22:16 AM,02/25/2015 01:22:22 AM,02/25/2015 01:29:27 AM,02/25/2015 01:47:52 AM,02/25/2015 02:11:00 AM,Code 2 Transport,02/25/2015 02:28:30 AM,300 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8854,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",150560137-78 -160972154,65,16038439,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 01:35:25 PM,04/06/2016 01:35:25 PM,04/06/2016 01:35:49 PM,04/06/2016 01:36:31 PM,04/06/2016 01:48:32 PM,04/06/2016 02:04:53 PM,04/06/2016 02:40:31 PM,Code 2 Transport,04/06/2016 03:40:46 PM,46TH AV/TARAVAL ST,San Francisco,94116,B08,23,7713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7417646821826, -122.504620445391)",160972154-65 -152791935,87,15107062,Traffic Collision,10/06/2015,10/06/2015,10/06/2015 01:31:01 PM,10/06/2015 01:33:22 PM,10/06/2015 01:35:55 PM,10/06/2015 01:36:04 PM,10/06/2015 01:51:23 PM,10/06/2015 01:51:26 PM,10/06/2015 02:14:23 PM,Code 3 Transport,10/06/2015 03:22:35 PM,0 Block of 5TH ST,San Francisco,94103,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831860531538, -122.407149119811)",152791935-87 -152183521,63,15083177,Medical Incident,08/06/2015,08/06/2015,08/06/2015 08:41:25 PM,08/06/2015 08:42:51 PM,08/06/2015 08:44:00 PM,08/06/2015 08:44:11 PM,08/06/2015 08:50:16 PM,08/06/2015 09:15:58 PM,08/06/2015 09:22:58 PM,Code 2 Transport,08/06/2015 09:48:25 PM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",152183521-63 -153070450,B03,15117849,Alarms,11/03/2015,11/02/2015,11/03/2015 06:04:13 AM,11/03/2015 06:05:17 AM,11/03/2015 06:05:26 AM,11/03/2015 06:07:39 AM,11/03/2015 06:10:00 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/03/2015 06:16:44 AM,600 Block of HARRISON ST,San Francisco,94107,B03,8,2151,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7841356234777, -122.395480783612)",153070450-B03 -153132139,RC2,15120329,Medical Incident,11/09/2015,11/09/2015,11/09/2015 03:12:02 PM,11/09/2015 03:15:08 PM,11/09/2015 03:26:22 PM,11/09/2015 03:27:51 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,Code 2 Transport,11/09/2015 03:34:38 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",153132139-RC2 -142561986,65,14089441,Medical Incident,09/13/2014,09/13/2014,09/13/2014 01:45:09 PM,09/13/2014 01:45:47 PM,09/13/2014 01:46:05 PM,09/13/2014 01:48:25 PM,09/13/2014 01:51:25 PM,09/13/2014 02:13:24 PM,09/13/2014 02:27:55 PM,Code 2 Transport,09/13/2014 03:03:36 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",142561986-65 -150881281,T08,15033548,Elevator / Escalator Rescue,03/29/2015,03/29/2015,03/29/2015 10:24:04 AM,03/29/2015 10:24:47 AM,03/29/2015 10:24:57 AM,03/29/2015 10:31:47 AM,03/29/2015 10:35:17 AM,04/25/2016 01:11:28 PM,04/25/2016 01:11:28 PM,Fire,03/29/2015 10:38:29 AM,2100 Block of 3RD ST,San Francisco,94107,B03,29,2466,3,3,3,false,Alarm,1,TRUCK,1,10,10,Potrero Hill,"(37.7624138973788, -122.388573861689)",150881281-T08 -152604122,T01,15099571,Alarms,09/17/2015,09/17/2015,09/17/2015 10:40:39 PM,09/17/2015 10:42:27 PM,09/17/2015 10:43:08 PM,09/17/2015 10:44:26 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Fire,09/17/2015 10:53:32 PM,1000 Block of BRANNAN ST,San Francisco,94103,B02,29,2346,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7698568217817, -122.407343295373)",152604122-T01 -143573550,AM16,14127903,Medical Incident,12/23/2014,12/23/2014,12/23/2014 08:10:30 PM,12/23/2014 08:11:13 PM,12/23/2014 08:11:22 PM,12/23/2014 08:12:01 PM,12/23/2014 08:18:05 PM,12/23/2014 08:46:56 PM,12/23/2014 09:05:12 PM,Code 2 Transport,12/23/2014 09:38:09 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",143573550-AM16 -152191454,85,15083363,Medical Incident,08/07/2015,08/07/2015,08/07/2015 11:52:58 AM,08/07/2015 11:53:36 AM,08/07/2015 11:55:53 AM,08/07/2015 11:56:16 AM,08/07/2015 11:59:38 AM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Against Medical Advice,08/07/2015 01:09:42 PM,1200 Block of 15TH ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7668153988578, -122.412689745025)",152191454-85 -151523141,E38,15058019,Alarms,06/01/2015,06/01/2015,06/01/2015 07:34:11 PM,06/01/2015 07:35:43 PM,06/01/2015 07:36:27 PM,06/01/2015 07:36:56 PM,06/01/2015 07:38:32 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Fire,06/01/2015 07:46:17 PM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,3,3,3,false,Alarm,1,ENGINE,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",151523141-E38 -160962705,AM10,16038089,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:25:57 PM,04/05/2016 04:26:56 PM,04/05/2016 04:27:21 PM,04/05/2016 04:28:06 PM,04/05/2016 04:31:37 PM,04/05/2016 06:06:25 PM,04/05/2016 06:06:28 PM,Code 2 Transport,04/05/2016 07:44:29 PM,SHOTWELL ST/17TH ST,San Francisco,94110,B02,7,5237,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7636351382872, -122.416227272148)",160962705-AM10 -151241178,70,15046966,Medical Incident,05/04/2015,05/04/2015,05/04/2015 10:26:21 AM,05/04/2015 10:26:50 AM,05/04/2015 10:27:13 AM,05/04/2015 10:27:34 AM,05/04/2015 10:41:24 AM,05/04/2015 11:09:47 AM,05/04/2015 11:38:14 AM,Code 2 Transport,05/04/2015 12:12:45 PM,0 Block of MINERVA ST,San Francisco,94112,B09,33,8372,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7158849109873, -122.454797121611)",151241178-70 -150742675,AM08,15028486,Medical Incident,03/15/2015,03/15/2015,03/15/2015 05:14:01 PM,03/15/2015 05:15:53 PM,03/15/2015 05:16:30 PM,03/15/2015 05:17:28 PM,03/15/2015 05:27:26 PM,03/15/2015 05:36:38 PM,03/15/2015 05:49:11 PM,Code 3 Transport,03/15/2015 06:32:24 PM,FREMONT ST/HOWARD ST,San Francisco,94105,B03,35,2126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7892346992583, -122.395150932922)",150742675-AM08 -141793566,66,14061989,Medical Incident,06/28/2014,06/28/2014,06/28/2014 09:40:48 PM,06/28/2014 09:41:17 PM,06/28/2014 09:48:54 PM,06/28/2014 09:51:31 PM,06/28/2014 09:56:03 PM,06/28/2014 10:04:11 PM,06/28/2014 10:08:23 PM,Code 3 Transport,06/28/2014 10:34:33 PM,2100 Block of MARKET ST,San Francisco,94114,B02,6,5209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",141793566-66 -150590411,B07,15022411,Structure Fire,02/28/2015,02/27/2015,02/28/2015 02:42:11 AM,02/28/2015 02:44:43 AM,02/28/2015 02:44:59 AM,02/28/2015 02:46:23 AM,02/28/2015 02:50:15 AM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Code 2 Transport,02/28/2015 03:00:12 AM,3900 Block of FULTON ST,San Francisco,94118,B07,31,7156,3,3,3,false,Alarm,1,CHIEF,4,7,1,Outer Richmond,"(37.7730917092947, -122.473993361211)",150590411-B07 -142752654,E05,14096567,Medical Incident,10/02/2014,10/02/2014,10/02/2014 04:23:40 PM,10/02/2014 04:23:40 PM,10/02/2014 04:24:03 PM,10/02/2014 04:25:47 PM,10/02/2014 04:29:04 PM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,No Merit,10/02/2014 04:30:35 PM,OCTAVIA ST/LINDEN ST,San Francisco,94102,B02,36,3265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7762013997184, -122.424565012622)",142752654-E05 -160951322,77,16037586,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:58:52 AM,04/04/2016 11:00:28 AM,04/04/2016 11:00:49 AM,04/04/2016 11:01:16 AM,04/04/2016 11:10:12 AM,04/04/2016 11:22:20 AM,04/04/2016 11:42:56 AM,Code 2 Transport,04/04/2016 12:15:25 PM,200 Block of ROOSEVELT WY,San Francisco,94117,B05,6,5174,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.765963125213, -122.440419279999)",160951322-77 -141040167,E39,14035078,Medical Incident,04/14/2014,04/14/2014,04/14/2014 12:19:42 PM,04/14/2014 12:20:18 PM,04/14/2014 12:21:51 PM,04/14/2014 12:22:51 PM,04/14/2014 12:24:12 PM,04/25/2016 01:17:53 PM,04/25/2016 01:17:53 PM,Code 2 Transport,04/14/2014 12:38:23 PM,900 Block of LAGUNA HONDA BLVD,SAN FRANCISCO,94127,B08,39,8671,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7431995033261, -122.455660966972)",141040167-E39 -160942717,61,16037357,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:23:27 PM,04/03/2016 05:25:27 PM,04/03/2016 05:27:52 PM,04/03/2016 05:27:52 PM,04/03/2016 05:35:36 PM,04/03/2016 06:20:10 PM,04/03/2016 06:20:16 PM,Code 2 Transport,04/03/2016 06:32:04 PM,400 Block of BEACH ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8071199236217, -122.416427872068)",160942717-61 -150833097,53,15031819,Other,03/24/2015,03/24/2015,03/24/2015 06:36:51 PM,03/24/2015 06:36:51 PM,03/24/2015 07:44:10 PM,03/24/2015 07:44:34 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 07:46:37 PM,100 Block of LUNDYS LN,San Francisco,94110,B06,32,5661,3,3,3,true,Alarm,1,MEDIC,5,6,9,Bernal Heights,"(37.7431098061588, -122.419297856691)",150833097-53 -160943014,79,16037380,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:57:54 PM,04/03/2016 06:58:12 PM,04/03/2016 06:58:35 PM,04/03/2016 06:58:43 PM,04/03/2016 07:05:38 PM,04/03/2016 07:19:59 PM,04/03/2016 07:29:40 PM,Code 2 Transport,04/03/2016 08:08:51 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160943014-79 -152461908,T02,15093822,Structure Fire,09/03/2015,09/03/2015,09/03/2015 01:12:06 PM,09/03/2015 01:13:00 PM,09/03/2015 01:13:15 PM,09/03/2015 01:13:50 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/03/2015 01:38:41 PM,900 Block of JACKSON ST,San Francisco,94133,B01,2,1354,3,3,3,true,Alarm,1,TRUCK,5,1,3,Chinatown,"(37.7955961513636, -122.41050106502)",152461908-T02 -152973422,E12,15114185,Medical Incident,10/24/2015,10/24/2015,10/24/2015 08:53:27 PM,10/24/2015 08:55:35 PM,10/24/2015 08:55:53 PM,10/24/2015 08:56:02 PM,10/24/2015 08:58:51 PM,04/25/2016 01:07:35 PM,04/25/2016 01:07:35 PM,Code 2 Transport,10/24/2015 09:06:36 PM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",152973422-E12 -150983666,71,15037252,Medical Incident,04/08/2015,04/08/2015,04/08/2015 09:36:34 PM,04/08/2015 09:37:06 PM,04/08/2015 09:37:22 PM,04/08/2015 09:37:37 PM,04/08/2015 09:44:41 PM,04/08/2015 10:00:39 PM,04/08/2015 10:13:00 PM,Code 2 Transport,04/08/2015 10:49:45 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150983666-71 -152922216,60,15112247,Medical Incident,10/19/2015,10/19/2015,10/19/2015 03:12:13 PM,10/19/2015 03:12:13 PM,10/19/2015 03:12:30 PM,10/19/2015 03:13:33 PM,10/19/2015 03:19:04 PM,10/19/2015 03:36:20 PM,10/19/2015 03:47:09 PM,Code 2 Transport,10/19/2015 04:30:39 PM,NORTH POINT ST/HYDE ST,San Francisco,94109,B01,28,1525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,2,Russian Hill,"(37.8057202558221, -122.420369047528)",152922216-60 -141240069,E36,14041928,Medical Incident,05/04/2014,05/03/2014,05/04/2014 05:56:43 AM,05/04/2014 05:59:48 AM,05/04/2014 05:59:57 AM,05/04/2014 06:02:31 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Patient Declined Transport,05/04/2014 06:07:49 AM,300 Block of 11TH ST,,94103,B02,36,5112,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7712855259531, -122.413204267102)",141240069-E36 -150943003,E36,15035845,Structure Fire,04/04/2015,04/04/2015,04/04/2015 06:57:53 PM,04/04/2015 06:58:24 PM,04/04/2015 06:58:46 PM,04/04/2015 07:01:22 PM,04/04/2015 07:01:22 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Fire,04/04/2015 07:13:22 PM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,false,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7775775502239, -122.411096952518)",150943003-E36 -150783508,57,15030039,Medical Incident,03/19/2015,03/19/2015,03/19/2015 07:56:41 PM,03/19/2015 07:56:41 PM,03/19/2015 07:56:54 PM,03/19/2015 07:57:02 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,No Merit,03/19/2015 08:07:24 PM,FILLMORE ST/MCALLISTER ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",150783508-57 -150720421,KM03,15027372,Medical Incident,03/13/2015,03/12/2015,03/13/2015 04:39:53 AM,03/13/2015 04:39:53 AM,03/13/2015 04:41:41 AM,03/13/2015 04:42:12 AM,03/13/2015 04:54:27 AM,03/13/2015 05:23:55 AM,03/13/2015 05:38:05 AM,Code 2 Transport,03/13/2015 06:24:32 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",150720421-KM03 -161011157,KM05,16040141,Medical Incident,04/10/2016,04/10/2016,04/10/2016 10:12:31 AM,04/10/2016 10:14:47 AM,04/10/2016 10:15:05 AM,04/10/2016 10:16:21 AM,04/10/2016 10:23:15 AM,04/10/2016 10:45:28 AM,04/10/2016 11:10:57 AM,Code 2 Transport,04/10/2016 11:21:26 AM,300 Block of TURK ST,San Francisco,94102,B02,03,1554,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",161011157-KM05 -142351667,T02,14081706,Structure Fire,08/23/2014,08/23/2014,08/23/2014 12:48:58 PM,08/23/2014 12:49:37 PM,08/23/2014 12:52:55 PM,08/23/2014 12:53:51 PM,08/23/2014 12:57:13 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,Fire,08/23/2014 01:04:49 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,6,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",142351667-T02 -150830222,82,15031590,Medical Incident,03/24/2015,03/23/2015,03/24/2015 02:44:10 AM,03/24/2015 02:45:02 AM,03/24/2015 02:45:26 AM,03/24/2015 02:45:31 AM,03/24/2015 02:50:10 AM,03/24/2015 02:57:46 AM,03/24/2015 03:03:23 AM,Code 2 Transport,03/24/2015 03:27:16 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",150830222-82 -152062818,T06,15078595,Citizen Assist / Service Call,07/25/2015,07/25/2015,07/25/2015 05:50:06 PM,07/25/2015 05:53:41 PM,07/25/2015 05:54:08 PM,07/25/2015 05:55:09 PM,07/25/2015 05:58:07 PM,04/25/2016 01:09:16 PM,04/25/2016 01:09:16 PM,Fire,07/25/2015 06:24:52 PM,14TH ST/DOLORES ST,San Francisco,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7678690199682, -122.426693184728)",152062818-T06 -150043500,E43,15001656,Medical Incident,01/04/2015,01/04/2015,01/04/2015 11:55:36 PM,01/04/2015 11:58:23 PM,01/04/2015 11:59:37 PM,01/05/2015 12:01:34 AM,01/05/2015 12:04:43 AM,04/25/2016 01:13:01 PM,04/25/2016 01:13:01 PM,Code 2 Transport,01/05/2015 12:25:42 AM,200 Block of PARIS ST,San Francisco,94112,B09,43,6127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7246819549267, -122.432583397927)",150043500-E43 -143233279,E03,14114521,Medical Incident,11/19/2014,11/19/2014,11/19/2014 09:01:14 PM,11/19/2014 09:02:22 PM,11/19/2014 09:02:56 PM,11/19/2014 09:04:54 PM,11/19/2014 09:06:02 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Code 2 Transport,11/19/2014 09:11:02 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",143233279-E03 -153233325,79,15124407,Medical Incident,11/19/2015,11/19/2015,11/19/2015 06:39:20 PM,11/19/2015 06:40:01 PM,11/19/2015 06:40:13 PM,11/19/2015 06:40:21 PM,11/19/2015 06:53:39 PM,11/19/2015 07:13:02 PM,11/19/2015 07:44:24 PM,Code 2 Transport,11/19/2015 08:26:17 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",153233325-79 -141823015,E08,14063105,Medical Incident,07/01/2014,07/01/2014,07/01/2014 07:25:59 PM,07/01/2014 07:27:32 PM,07/01/2014 07:30:09 PM,07/01/2014 07:31:35 PM,07/01/2014 07:33:45 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Code 2 Transport,07/01/2014 07:44:51 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",141823015-E08 -151871758,E44,15071393,Medical Incident,07/06/2015,07/06/2015,07/06/2015 12:41:58 PM,07/06/2015 12:43:49 PM,07/06/2015 12:44:14 PM,07/06/2015 12:45:15 PM,07/06/2015 12:49:23 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Code 2 Transport,07/06/2015 12:50:03 PM,500 Block of ARGONAUT AVE,San Francisco,94134,B09,44,6248,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7089414812578, -122.414580328939)",151871758-E44 -161002878,89,16039907,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:47:04 PM,04/09/2016 07:47:29 PM,04/09/2016 07:47:45 PM,04/09/2016 07:48:18 PM,04/09/2016 07:53:16 PM,04/09/2016 08:10:07 PM,04/09/2016 08:16:49 PM,Code 2 Transport,04/09/2016 08:47:46 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7683148008502, -122.427682264817)",161002878-89 -152580623,T13,15098551,Citizen Assist / Service Call,09/15/2015,09/14/2015,09/15/2015 07:26:15 AM,09/15/2015 07:27:02 AM,09/15/2015 07:27:14 AM,09/15/2015 07:28:47 AM,09/15/2015 07:34:27 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Fire,09/15/2015 07:55:21 AM,0 Block of MONTAGUE PL,San Francisco,94133,B01,28,1227,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.8005882891758, -122.404633848374)",152580623-T13 -152533641,61,15096876,Medical Incident,09/10/2015,09/10/2015,09/10/2015 08:38:36 PM,09/10/2015 08:38:36 PM,09/10/2015 08:38:47 PM,09/10/2015 08:39:01 PM,09/10/2015 08:40:25 PM,09/10/2015 08:57:34 PM,09/10/2015 09:27:23 PM,Code 2 Transport,09/10/2015 09:36:40 PM,18TH ST/VALENCIA ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.7617009099893, -122.421578400735)",152533641-61 -142561787,T15,14089421,Gas Leak (Natural and LP Gases),09/13/2014,09/13/2014,09/13/2014 12:46:08 PM,09/13/2014 12:47:09 PM,09/13/2014 12:47:23 PM,09/13/2014 12:48:25 PM,09/13/2014 12:54:03 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 01:03:52 PM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,3,3,3,false,Alarm,1,TRUCK,3,9,11,Excelsior,"(37.7120147227325, -122.445301042421)",142561787-T15 -161002918,77,16039911,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:57:26 PM,04/09/2016 07:59:02 PM,04/09/2016 07:59:49 PM,04/09/2016 08:00:08 PM,04/09/2016 08:07:15 PM,04/09/2016 08:17:32 PM,04/09/2016 08:36:24 PM,Code 2 Transport,04/09/2016 08:52:11 PM,3000 Block of 23RD ST,San Francisco,94110,B06,7,5477,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7541426882469, -122.412588855535)",161002918-77 -150853505,T17,15032604,Citizen Assist / Service Call,03/26/2015,03/26/2015,03/26/2015 08:08:00 PM,03/26/2015 08:10:45 PM,03/26/2015 08:17:11 PM,03/26/2015 08:20:00 PM,03/26/2015 08:21:54 PM,04/25/2016 01:11:30 PM,04/25/2016 01:11:30 PM,Fire,03/26/2015 08:32:51 PM,0 Block of OSCEOLA LN,San Francisco,94124,B10,17,6637,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",150853505-T17 -152544244,E15,15097349,Medical Incident,09/11/2015,09/11/2015,09/11/2015 11:55:11 PM,09/11/2015 11:55:44 PM,09/11/2015 11:56:01 PM,09/11/2015 11:57:33 PM,09/11/2015 11:59:19 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Medical Examiner,09/12/2015 12:08:23 AM,0 Block of GENEVA AVE,San Francisco,94112,B09,15,8313,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7224526962267, -122.451312748281)",152544244-E15 -160952389,54,16037675,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:13:40 PM,04/04/2016 03:14:06 PM,04/04/2016 03:15:25 PM,04/04/2016 03:15:37 PM,04/04/2016 03:28:09 PM,04/04/2016 03:43:35 PM,04/04/2016 04:03:23 PM,Code 2 Transport,04/04/2016 04:51:13 PM,0 Block of GARLINGTON CT,San Francisco,94124,B10,17,6622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7325028766117, -122.384356163358)",160952389-54 -160960955,AM06,16037936,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:22:14 AM,04/05/2016 09:23:57 AM,04/05/2016 09:25:21 AM,04/05/2016 09:25:28 AM,04/05/2016 09:41:50 AM,04/05/2016 10:00:55 AM,04/05/2016 10:19:59 AM,Code 2 Transport,04/05/2016 10:56:55 AM,3500 Block of TARAVAL ST,San Francisco,94116,B08,23,7713,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7418437763429, -122.50408864104)",160960955-AM06 -152141380,E07,15081458,Medical Incident,08/02/2015,08/02/2015,08/02/2015 11:35:19 AM,08/02/2015 11:35:45 AM,08/02/2015 11:36:10 AM,08/02/2015 11:37:29 AM,08/02/2015 11:39:18 AM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Code 2 Transport,08/02/2015 11:45:15 AM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7584120495369, -122.419101058487)",152141380-E07 -151552850,E08,15059209,Medical Incident,06/04/2015,06/04/2015,06/04/2015 05:38:57 PM,06/04/2015 05:38:57 PM,06/04/2015 05:39:15 PM,06/04/2015 05:39:29 PM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,Other,06/04/2015 05:39:51 PM,100 Block of 3RD ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7853906306613, -122.401027740415)",151552850-E08 -142541757,73,14088687,Medical Incident,09/11/2014,09/11/2014,09/11/2014 01:27:12 PM,09/11/2014 01:27:39 PM,09/11/2014 01:28:54 PM,09/11/2014 01:29:46 PM,09/11/2014 01:36:44 PM,09/11/2014 01:57:15 PM,09/11/2014 02:18:24 PM,Code 2 Transport,09/11/2014 02:42:20 PM,3000 Block of 19TH AVE,San Francisco,94132,B08,19,8731,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.731765264166, -122.474767546905)",142541757-73 -160961269,87,16037962,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:42:24 AM,04/05/2016 10:43:31 AM,04/05/2016 10:44:23 AM,04/05/2016 10:45:39 AM,04/05/2016 10:52:45 AM,04/05/2016 11:09:54 AM,04/05/2016 11:36:48 AM,Code 2 Transport,04/05/2016 11:59:52 AM,5000 Block of 3RD ST,San Francisco,94124,B10,17,6514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7328587504079, -122.391514726091)",160961269-87 -152150503,T07,15081717,Alarms,08/03/2015,08/02/2015,08/03/2015 06:11:03 AM,08/03/2015 06:12:46 AM,08/03/2015 06:13:07 AM,08/03/2015 06:15:18 AM,08/03/2015 06:17:09 AM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Fire,08/03/2015 06:27:08 AM,700 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.7609052657931, -122.421432818786)",152150503-T07 -142903812,E07,14102436,Medical Incident,10/17/2014,10/17/2014,10/17/2014 10:49:05 PM,10/17/2014 10:49:05 PM,10/17/2014 10:49:22 PM,10/17/2014 10:50:24 PM,10/17/2014 10:52:15 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 2 Transport,10/17/2014 10:54:52 PM,100 Block of SAN CARLOS ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7609848622239, -122.420120540924)",142903812-E07 -153330313,65,15127914,Traffic Collision,11/29/2015,11/28/2015,11/29/2015 02:20:15 AM,11/29/2015 02:20:45 AM,11/29/2015 02:23:58 AM,11/29/2015 02:23:58 AM,11/29/2015 02:25:05 AM,11/29/2015 02:31:16 AM,11/29/2015 02:42:48 AM,Code 3 Transport,11/29/2015 03:38:03 AM,BROADWAY/MONTGOMERY ST,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.7982229704871, -122.403863019987)",153330313-65 -153410273,E29,15131065,Alarms,12/07/2015,12/06/2015,12/07/2015 02:53:21 AM,12/07/2015 02:53:21 AM,12/07/2015 02:53:41 AM,12/07/2015 02:57:42 AM,12/07/2015 02:59:00 AM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,Fire,12/07/2015 03:00:12 AM,300 Block of 12TH ST,San Francisco,94103,B02,36,5112,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7701481672269, -122.413431397414)",153410273-E29 -160953335,52,16037761,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:00:52 PM,04/04/2016 07:02:43 PM,04/04/2016 07:04:17 PM,04/04/2016 07:05:44 PM,04/04/2016 07:08:30 PM,04/04/2016 07:22:47 PM,04/04/2016 07:38:26 PM,Code 2 Transport,04/04/2016 08:21:28 PM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160953335-52 -150923236,61,15035126,Medical Incident,04/02/2015,04/02/2015,04/02/2015 07:33:10 PM,04/02/2015 07:35:18 PM,04/02/2015 07:35:45 PM,04/02/2015 07:38:14 PM,04/02/2015 07:46:37 PM,04/02/2015 07:52:52 PM,04/02/2015 08:18:53 PM,Code 2 Transport,04/02/2015 08:47:10 PM,200 Block of PENINSULA AVE,San Francisco,94134,B10,44,6272,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7122855451537, -122.398737128837)",150923236-61 -143103193,83,14109860,Medical Incident,11/06/2014,11/06/2014,11/06/2014 06:52:43 PM,11/06/2014 06:53:19 PM,11/06/2014 06:54:19 PM,11/06/2014 06:54:30 PM,11/06/2014 07:07:10 PM,11/06/2014 07:15:00 PM,11/06/2014 07:23:03 PM,Code 2 Transport,11/06/2014 07:41:20 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",143103193-83 -141150226,T07,14038849,Medical Incident,04/25/2014,04/25/2014,04/25/2014 02:48:34 PM,04/25/2014 02:49:15 PM,04/25/2014 02:49:41 PM,04/25/2014 02:50:32 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Medical Examiner,04/25/2014 02:51:25 PM,500 Block of GUERRERO ST,SAN FRANCISCO,94110,B02,7,5422,3,E,3,false,Potentially Life-Threatening,1,TRUCK,4,2,8,Mission,"(37.7619448798252, -122.423956468)",141150226-T07 -153102862,E06,15119259,Structure Fire,11/06/2015,11/06/2015,11/06/2015 05:45:38 PM,11/06/2015 05:46:08 PM,11/06/2015 05:46:28 PM,11/06/2015 05:47:07 PM,11/06/2015 05:50:04 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Fire,11/06/2015 05:54:16 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Alarm,1,ENGINE,6,2,10,Mission,"(37.765718993574, -122.409520691153)",153102862-E06 -143562120,KM08,14127394,Traffic Collision,12/22/2014,12/22/2014,12/22/2014 02:32:57 PM,12/22/2014 02:33:16 PM,12/22/2014 02:33:50 PM,12/22/2014 02:35:34 PM,12/22/2014 02:37:30 PM,12/22/2014 02:52:13 PM,12/22/2014 03:11:06 PM,Code 2 Transport,12/22/2014 03:52:23 PM,VALENCIA ST/22ND ST,San Francisco,94110,B06,7,5456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Mission,"(37.7552947827711, -122.420964094826)",143562120-KM08 -152380109,E01,15090512,Medical Incident,08/26/2015,08/25/2015,08/26/2015 12:49:16 AM,08/26/2015 12:50:12 AM,08/26/2015 12:50:42 AM,08/26/2015 12:52:17 AM,08/26/2015 12:55:26 AM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Code 2 Transport,08/26/2015 01:02:52 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",152380109-E01 -142920813,67,14102912,Structure Fire,10/19/2014,10/18/2014,10/19/2014 07:11:32 AM,10/19/2014 07:11:32 AM,10/19/2014 07:18:33 AM,10/19/2014 07:19:00 AM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,No Merit,10/19/2014 07:21:06 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,true,Alarm,1,MEDIC,4,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",142920813-67 -160932644,62,16036960,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:17:21 PM,04/02/2016 05:18:46 PM,04/02/2016 05:20:31 PM,04/02/2016 05:20:45 PM,04/02/2016 05:29:48 PM,04/02/2016 06:18:43 PM,04/02/2016 06:47:03 PM,Code 2 Transport,04/02/2016 07:07:30 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160932644-62 -152222289,FD00A,15084647,,08/10/2015,08/10/2015,08/10/2015 03:35:37 PM,08/10/2015 03:36:57 PM,08/10/2015 05:37:34 PM,08/10/2015 05:37:34 PM,08/10/2015 05:37:34 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Against Medical Advice,08/10/2015 05:38:50 PM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,2,2,2,false,Non Life-threatening,1,SUPPORT,4,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",152222289-FD00A -150621783,KM08,15023663,Medical Incident,03/03/2015,03/03/2015,03/03/2015 12:46:44 PM,03/03/2015 12:46:44 PM,03/03/2015 12:46:52 PM,03/03/2015 12:47:40 PM,03/03/2015 12:51:00 PM,03/03/2015 01:00:23 PM,03/03/2015 01:18:52 PM,Code 2 Transport,03/03/2015 02:02:12 PM,36TH AV/ORTEGA ST,San Francisco,94116,B08,18,7573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7515682602455, -122.494560806502)",150621783-KM08 -142193465,67,14076129,Medical Incident,08/07/2014,08/07/2014,08/07/2014 09:47:26 PM,08/07/2014 09:49:39 PM,08/07/2014 09:50:25 PM,08/07/2014 09:50:44 PM,08/07/2014 09:54:41 PM,08/07/2014 10:10:32 PM,08/07/2014 10:39:29 PM,Code 2 Transport,08/07/2014 11:10:49 PM,1400 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7301191034184, -122.387315155313)",142193465-67 -161000367,60,16039601,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:37:00 AM,04/09/2016 02:42:40 AM,04/09/2016 02:43:11 AM,04/09/2016 02:43:27 AM,04/09/2016 02:53:29 AM,04/09/2016 03:05:06 AM,04/09/2016 03:22:58 AM,Code 2 Transport,04/09/2016 04:04:54 AM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",161000367-60 -161000786,89,16039661,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:08:58 AM,04/09/2016 08:12:54 AM,04/09/2016 08:13:58 AM,04/09/2016 08:14:14 AM,04/09/2016 08:24:01 AM,04/09/2016 08:49:55 AM,04/09/2016 08:59:30 AM,Code 2 Transport,04/09/2016 09:42:01 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",161000786-89 -150741670,76,15028396,Medical Incident,03/15/2015,03/15/2015,03/15/2015 12:27:21 PM,03/15/2015 12:29:07 PM,03/15/2015 12:31:30 PM,03/15/2015 12:31:43 PM,03/15/2015 12:47:16 PM,03/15/2015 01:13:31 PM,03/15/2015 01:47:04 PM,Code 2 Transport,03/15/2015 02:13:26 PM,WILLIAMS AV/VAN DYKE AV,San Francisco,94124,B10,17,6536,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7292784549254, -122.392624534553)",150741670-76 -142631198,E08,14091940,Medical Incident,09/20/2014,09/20/2014,09/20/2014 10:04:27 AM,09/20/2014 10:07:59 AM,09/20/2014 10:08:45 AM,09/20/2014 10:08:57 AM,09/20/2014 10:16:19 AM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Code 2 Transport,09/20/2014 10:37:21 AM,0 Block of HARRIET ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7787390527615, -122.406871551052)",142631198-E08 -161000355,83,16039600,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:34:49 AM,04/09/2016 02:36:36 AM,04/09/2016 02:37:03 AM,04/09/2016 02:37:27 AM,04/09/2016 02:45:34 AM,04/09/2016 03:09:18 AM,04/09/2016 03:30:39 AM,Code 2 Transport,04/09/2016 04:05:17 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",161000355-83 -151783922,AM20,15067994,Medical Incident,06/27/2015,06/27/2015,06/27/2015 10:14:14 PM,06/27/2015 10:16:04 PM,06/27/2015 10:18:29 PM,06/27/2015 10:18:56 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Code 2 Transport,06/27/2015 10:20:18 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",151783922-AM20 -150322370,E19,15012417,Medical Incident,02/01/2015,02/01/2015,02/01/2015 03:34:00 PM,02/01/2015 03:35:18 PM,02/01/2015 03:35:54 PM,02/01/2015 03:36:41 PM,02/01/2015 03:43:51 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Other,02/01/2015 03:56:29 PM,600 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",150322370-E19 -141090262,E33,14036838,Medical Incident,04/19/2014,04/19/2014,04/19/2014 05:44:53 PM,04/19/2014 05:46:07 PM,04/19/2014 05:47:50 PM,04/19/2014 05:48:25 PM,04/19/2014 05:49:01 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Code 2 Transport,04/19/2014 06:30:09 PM,0 Block of CHUMASERO DR,SAN FRANCISCO,94132,B08,33,8422,,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",141090262-E33 -141250012,D3,14042201,Structure Fire,05/05/2014,05/04/2014,05/05/2014 12:34:00 AM,05/05/2014 12:37:54 AM,05/05/2014 12:38:22 AM,05/05/2014 12:39:59 AM,05/05/2014 12:43:00 AM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Fire,05/05/2014 12:43:27 AM,0 Block of MAXWELL CT,SAN FRANCISCO,94103,B02,6,5214,3,3,3,false,Alarm,1,CHIEF,5,2,8,Mission,"(37.7669025720969, -122.423141850936)",141250012-D3 -142741760,KM09,14096071,Medical Incident,10/01/2014,10/01/2014,10/01/2014 12:34:46 PM,10/01/2014 12:35:10 PM,10/01/2014 12:36:03 PM,10/01/2014 12:36:46 PM,10/01/2014 12:42:19 PM,10/01/2014 12:54:43 PM,10/01/2014 01:49:22 PM,Code 2 Transport,10/01/2014 01:53:43 PM,1400 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7747597843525, -122.41645729662)",142741760-KM09 -141090367,78,14036938,Medical Incident,04/19/2014,04/19/2014,04/19/2014 10:40:35 PM,04/19/2014 10:42:49 PM,04/19/2014 10:43:56 PM,04/19/2014 10:44:05 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Other,04/19/2014 10:45:41 PM,400 Block of 11TH ST,SAN FRANCISCO,94103,B02,36,5112,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7699815145584, -122.411754216546)",141090367-78 -161002141,76,16039820,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:55:28 PM,04/09/2016 03:57:35 PM,04/09/2016 03:58:17 PM,04/09/2016 03:58:24 PM,04/09/2016 04:16:59 PM,04/09/2016 04:29:21 PM,04/09/2016 04:55:52 PM,Code 2 Transport,04/09/2016 05:44:22 PM,300 Block of MISSION ST,San Francisco,94105,B03,35,2126,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",161002141-76 -150900315,E31,15034168,Medical Incident,03/31/2015,03/30/2015,03/31/2015 04:24:57 AM,03/31/2015 04:25:06 AM,03/31/2015 04:26:03 AM,03/31/2015 04:28:17 AM,03/31/2015 04:30:35 AM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Code 2 Transport,03/31/2015 04:36:11 AM,700 Block of 5TH AVE,San Francisco,94118,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7745856548117, -122.462813355104)",150900315-E31 -160990804,73,16039217,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:41:22 AM,04/08/2016 08:42:43 AM,04/08/2016 08:42:57 AM,04/08/2016 08:43:20 AM,04/08/2016 08:51:14 AM,04/08/2016 09:08:31 AM,04/08/2016 09:24:20 AM,Code 2 Transport,04/08/2016 09:48:15 AM,0 Block of CHENERY ST,San Francisco,94131,B06,11,5574,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7409632777896, -122.425764645931)",160990804-73 -150180979,83,15007044,Medical Incident,01/18/2015,01/18/2015,01/18/2015 09:01:06 AM,01/18/2015 09:02:21 AM,01/18/2015 09:04:57 AM,01/18/2015 09:05:07 AM,01/18/2015 09:11:03 AM,01/18/2015 09:36:05 AM,01/18/2015 09:44:06 AM,Code 2 Transport,01/18/2015 10:09:29 AM,100 Block of HARVARD ST,San Francisco,94134,B09,42,6144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7276898631505, -122.421178656883)",150180979-83 -151451746,AM04,15055177,Medical Incident,05/25/2015,05/25/2015,05/25/2015 02:07:09 PM,05/25/2015 02:07:46 PM,05/25/2015 02:08:18 PM,05/25/2015 02:09:22 PM,05/25/2015 02:11:19 PM,05/25/2015 02:27:13 PM,05/25/2015 02:58:46 PM,Code 2 Transport,05/25/2015 03:38:25 PM,CLIPPER ST/CASTRO ST,San Francisco,94114,B06,11,5546,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.748895972897, -122.433851104399)",151451746-AM04 -143580807,70,14128046,Medical Incident,12/24/2014,12/24/2014,12/24/2014 08:44:19 AM,12/24/2014 08:45:46 AM,12/24/2014 08:46:02 AM,12/24/2014 08:47:25 AM,12/24/2014 09:06:45 AM,12/24/2014 09:06:47 AM,04/25/2016 01:13:15 PM,Code 2 Transport,12/24/2014 10:00:59 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",143580807-70 -150850812,B08,15032345,Odor (Strange / Unknown),03/26/2015,03/26/2015,03/26/2015 08:26:09 AM,03/26/2015 08:28:02 AM,03/26/2015 08:28:18 AM,03/26/2015 08:29:40 AM,03/26/2015 08:33:24 AM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Fire,03/26/2015 08:45:52 AM,1200 Block of 27TH AVE,San Francisco,94122,B08,22,7511,3,3,3,false,Alarm,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7641233017365, -122.485834041845)",150850812-B08 -160941463,61,16037236,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:13:38 AM,04/03/2016 11:15:56 AM,04/03/2016 11:17:01 AM,04/03/2016 11:17:16 AM,04/03/2016 11:38:56 AM,04/03/2016 11:54:53 AM,04/03/2016 12:07:45 PM,Code 2 Transport,04/03/2016 12:53:29 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160941463-61 -142720522,E01,14095273,Structure Fire,09/29/2014,09/28/2014,09/29/2014 06:41:42 AM,09/29/2014 06:41:42 AM,09/29/2014 06:41:48 AM,09/29/2014 06:43:43 AM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Fire,09/29/2014 06:43:50 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",142720522-E01 -152513375,RS1,15096055,Structure Fire,09/08/2015,09/08/2015,09/08/2015 06:29:25 PM,09/08/2015 06:30:36 PM,09/08/2015 06:30:53 PM,09/08/2015 06:31:06 PM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,Fire,09/08/2015 06:39:03 PM,0 Block of HOBART AL,San Francisco,94102,B01,3,1463,3,3,3,false,Alarm,1,RESCUE SQUAD,11,1,3,Nob Hill,"(37.7885613392931, -122.411614463637)",152513375-RS1 -141322151,KM11,14044990,Medical Incident,05/12/2014,05/12/2014,05/12/2014 03:25:29 PM,05/12/2014 03:27:42 PM,05/12/2014 03:30:28 PM,05/12/2014 03:36:17 PM,05/12/2014 03:50:20 PM,05/12/2014 04:00:12 PM,05/12/2014 04:17:41 PM,Code 2 Transport,05/12/2014 05:09:27 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",141322151-KM11 -142170730,E01,14075154,Medical Incident,08/05/2014,08/05/2014,08/05/2014 08:39:38 AM,08/05/2014 08:41:48 AM,08/05/2014 08:44:51 AM,08/05/2014 08:46:51 AM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Code 2 Transport,08/05/2014 08:47:07 AM,NEW MONTGOMERY ST/MARKET ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",142170730-E01 -153473432,E11,15133872,Medical Incident,12/13/2015,12/13/2015,12/13/2015 10:24:30 PM,12/13/2015 10:25:25 PM,12/13/2015 10:25:44 PM,12/13/2015 10:27:17 PM,12/13/2015 10:33:10 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Code 2 Transport,12/13/2015 10:42:54 PM,1200 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7531743146878, -122.416270507567)",153473432-E11 -152402746,E21,15091507,Gas Leak (Natural and LP Gases),08/28/2015,08/28/2015,08/28/2015 03:57:07 PM,08/28/2015 03:58:09 PM,08/28/2015 03:58:22 PM,08/28/2015 03:59:42 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Cancelled,08/28/2015 04:01:59 PM,1300 Block of MASONIC AVE,San Francisco,94117,B05,21,4466,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7683637280532, -122.444850432801)",152402746-E21 -153113832,E03,15119745,Structure Fire,11/07/2015,11/07/2015,11/07/2015 11:15:02 PM,11/07/2015 11:15:02 PM,11/07/2015 11:16:29 PM,11/07/2015 11:17:00 PM,11/07/2015 11:18:08 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/07/2015 11:18:39 PM,VAN NESS AV/POST ST,San Francisco,94109,B04,3,3161,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",153113832-E03 -153390025,75,15130285,Medical Incident,12/05/2015,12/04/2015,12/05/2015 12:05:53 AM,12/05/2015 12:09:54 AM,12/05/2015 12:10:33 AM,12/05/2015 12:11:18 AM,12/05/2015 12:18:19 AM,12/05/2015 12:38:30 AM,12/05/2015 12:58:23 AM,Code 2 Transport,12/05/2015 01:46:56 AM,0 Block of REGENT ST,San Francisco,94112,B09,33,8357,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7096080859245, -122.456497387361)",153390025-75 -141412101,86,14048376,Medical Incident,05/21/2014,05/21/2014,05/21/2014 02:41:48 PM,05/21/2014 02:42:28 PM,05/21/2014 02:55:53 PM,05/21/2014 02:56:24 PM,05/21/2014 03:07:58 PM,05/21/2014 03:18:45 PM,05/21/2014 03:35:59 PM,Code 2 Transport,05/21/2014 04:06:07 PM,200 Block of BAY ST,San Francisco,94133,B01,28,1341,3,3,3,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.805980597443, -122.411141131856)",141412101-86 -141821319,T13,14062963,Alarms,07/01/2014,07/01/2014,07/01/2014 11:28:08 AM,07/01/2014 11:30:45 AM,07/01/2014 11:31:43 AM,07/01/2014 11:33:00 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,07/01/2014 11:35:52 AM,300 Block of BUSH ST,San Francisco,94108,B01,13,1235,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7908110082822, -122.403187069325)",141821319-T13 -160953379,72,16037765,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:15:41 PM,04/04/2016 07:15:41 PM,04/04/2016 07:16:00 PM,04/04/2016 07:16:17 PM,04/04/2016 07:17:22 PM,04/04/2016 07:48:33 PM,04/04/2016 08:13:18 PM,Code 2 Transport,04/04/2016 08:50:11 PM,3RD ST/PALOU AV,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",160953379-72 -150220388,KM07,15008464,Medical Incident,01/22/2015,01/21/2015,01/22/2015 05:15:32 AM,01/22/2015 05:15:32 AM,01/22/2015 05:16:38 AM,01/22/2015 05:17:31 AM,01/22/2015 05:18:52 AM,01/22/2015 05:34:06 AM,01/22/2015 06:01:03 AM,Code 2 Transport,01/22/2015 06:39:50 AM,10TH ST/HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7740433259374, -122.414367692219)",150220388-KM07 -160922170,86,16036481,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:10:14 PM,04/01/2016 03:10:45 PM,04/01/2016 03:11:19 PM,04/01/2016 03:11:38 PM,04/01/2016 03:20:27 PM,04/01/2016 03:36:59 PM,04/01/2016 03:40:52 PM,Code 3 Transport,04/01/2016 04:46:38 PM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",160922170-86 -160974190,55,16038669,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:06:39 PM,04/06/2016 09:11:39 PM,04/06/2016 09:12:07 PM,04/06/2016 09:12:18 PM,04/06/2016 09:19:58 PM,04/06/2016 09:52:53 PM,04/06/2016 10:14:52 PM,Code 2 Transport,04/06/2016 10:51:50 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160974190-55 -142193358,E28,14076119,Medical Incident,08/07/2014,08/07/2014,08/07/2014 09:12:34 PM,08/07/2014 09:13:50 PM,08/07/2014 09:14:03 PM,08/07/2014 09:15:21 PM,08/07/2014 09:17:00 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Code 2 Transport,08/07/2014 09:31:03 PM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",142193358-E28 -160963506,71,16038157,Citizen Assist / Service Call,04/05/2016,04/05/2016,04/05/2016 07:31:37 PM,04/05/2016 07:33:38 PM,04/05/2016 07:43:49 PM,04/05/2016 07:43:55 PM,04/05/2016 07:49:01 PM,04/05/2016 08:21:06 PM,04/05/2016 08:36:20 PM,Code 2 Transport,04/05/2016 09:32:44 PM,500 Block of DOUGLASS ST,San Francisco,94114,B06,24,5463,3,3,3,true,Alarm,1,MEDIC,2,6,8,Noe Valley,"(37.7548278298402, -122.438908779565)",160963506-71 -141530133,B04,14052410,Alarms,06/02/2014,06/01/2014,06/02/2014 01:28:38 AM,06/02/2014 01:29:41 AM,06/02/2014 01:30:50 AM,06/02/2014 01:32:14 AM,06/02/2014 01:35:27 AM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Fire,06/02/2014 01:46:19 AM,1500 Block of GREENWICH ST,San Francisco,94123,B04,16,3234,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8002564054218, -122.425169010729)",141530133-B04 -152671914,E06,15102286,Medical Incident,09/24/2015,09/24/2015,09/24/2015 01:00:54 PM,09/24/2015 01:01:49 PM,09/24/2015 01:02:13 PM,09/24/2015 01:03:34 PM,09/24/2015 01:05:27 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,Code 2 Transport,09/24/2015 01:17:50 PM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",152671914-E06 -150372735,56,15014419,Traffic Collision,02/06/2015,02/06/2015,02/06/2015 05:19:09 PM,02/06/2015 05:19:09 PM,02/06/2015 05:19:25 PM,02/06/2015 05:19:42 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Code 2 Transport,02/06/2015 05:20:55 PM,MASON ST/ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",150372735-56 -152581069,RS2,15098579,Other,09/15/2015,09/15/2015,09/15/2015 09:31:42 AM,09/15/2015 09:31:42 AM,09/15/2015 09:40:38 AM,09/15/2015 09:40:42 AM,09/15/2015 09:43:46 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Fire,09/15/2015 10:52:18 AM,700 Block of DUNCAN ST,San Francisco,94131,B06,26,5554,3,3,3,false,Alarm,1,RESCUE SQUAD,1,6,8,Noe Valley,"(37.7454374718214, -122.43684601016)",152581069-RS2 -151900431,KM04,15072434,Medical Incident,07/09/2015,07/08/2015,07/09/2015 05:23:21 AM,07/09/2015 05:24:29 AM,07/09/2015 05:24:52 AM,07/09/2015 05:25:27 AM,07/09/2015 05:32:09 AM,07/09/2015 05:52:31 AM,07/09/2015 06:15:18 AM,Code 2 Transport,07/09/2015 06:56:24 AM,200 Block of STONECREST DR,San Francisco,94132,B08,19,8725,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7257458500807, -122.474261031114)",151900431-KM04 -142383283,RC3,14082915,Medical Incident,08/26/2014,08/26/2014,08/26/2014 07:53:40 PM,08/26/2014 07:54:50 PM,08/26/2014 08:04:27 PM,08/26/2014 08:05:25 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Code 3 Transport,08/26/2014 08:09:45 PM,200 Block of PARQUE DR,San Francisco,94134,B09,43,6245,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,9,10,Visitacion Valley,"(37.709998706156, -122.422592099161)",142383283-RC3 -160980982,72,16038823,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:46:14 AM,04/07/2016 08:48:21 AM,04/07/2016 08:49:55 AM,04/07/2016 08:50:04 AM,04/07/2016 09:05:31 AM,04/07/2016 09:26:03 AM,04/07/2016 10:03:31 AM,Code 2 Transport,04/07/2016 10:24:51 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",160980982-72 -152103309,60,15080124,Medical Incident,07/29/2015,07/29/2015,07/29/2015 07:42:19 PM,07/29/2015 07:42:19 PM,07/29/2015 07:43:21 PM,07/29/2015 07:43:28 PM,07/29/2015 07:52:58 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Patient Declined Transport,07/29/2015 08:05:33 PM,FOLSOM ST/LANGTON ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7763183873742, -122.40838011352)",152103309-60 -160980719,71,16038803,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:23:24 AM,04/07/2016 07:26:44 AM,04/07/2016 07:27:30 AM,04/07/2016 07:27:39 AM,04/07/2016 07:40:48 AM,04/07/2016 08:05:56 AM,04/07/2016 08:19:30 AM,Code 3 Transport,04/07/2016 09:22:38 AM,0 Block of OLIVER ST,San Francisco,94112,B09,33,6212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7089141999968, -122.450236359264)",160980719-71 -160931177,61,16036792,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:20:17 AM,04/02/2016 10:20:43 AM,04/02/2016 10:21:42 AM,04/02/2016 10:22:01 AM,04/02/2016 10:28:27 AM,04/02/2016 10:45:55 AM,04/02/2016 11:11:20 AM,Code 2 Transport,04/02/2016 11:41:45 AM,100 Block of DAY ST,San Francisco,94131,B06,11,5563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.742911282819, -122.425446540944)",160931177-61 -150581120,E01,15022101,Medical Incident,02/27/2015,02/27/2015,02/27/2015 09:54:10 AM,02/27/2015 09:55:11 AM,02/27/2015 09:55:33 AM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Unable to Locate,02/27/2015 09:56:35 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",150581120-E01 -152590260,E09,15098899,Structure Fire,09/16/2015,09/15/2015,09/16/2015 03:05:39 AM,09/16/2015 03:08:38 AM,09/16/2015 03:09:28 AM,09/16/2015 03:13:36 AM,04/25/2016 01:08:19 PM,04/25/2016 01:08:19 PM,04/25/2016 01:08:19 PM,Fire,09/16/2015 03:14:36 AM,25TH ST/3RD ST,San Francisco,94107,B10,25,2611,3,3,3,true,Alarm,1,ENGINE,10,10,10,Bayview Hunters Point,"(37.7528356119566, -122.38775628178)",152590260-E09 -150724132,E21,15027716,Medical Incident,03/13/2015,03/13/2015,03/13/2015 10:27:36 PM,03/13/2015 10:27:36 PM,03/13/2015 10:28:08 PM,03/13/2015 10:29:59 PM,03/13/2015 10:29:59 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Code 2 Transport,03/13/2015 10:45:38 PM,0 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4247,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7705968083436, -122.439656029792)",150724132-E21 -152470286,T17,15094074,Other,09/04/2015,09/03/2015,09/04/2015 02:40:59 AM,09/04/2015 02:40:59 AM,09/04/2015 02:41:51 AM,09/04/2015 02:45:00 AM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Patient Declined Transport,09/04/2015 02:52:32 AM,200 Block of SAWYER ST,San Francisco,94134,B09,44,6263,3,3,3,false,Alarm,1,TRUCK,3,9,10,Visitacion Valley,"(37.7146687723374, -122.413812172304)",152470286-T17 -142370410,B04,14082307,Alarms,08/25/2014,08/24/2014,08/25/2014 04:52:16 AM,08/25/2014 04:53:50 AM,08/25/2014 04:53:59 AM,08/25/2014 04:55:56 AM,08/25/2014 05:00:21 AM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,Fire,08/25/2014 05:05:40 AM,2800 Block of DIVISADERO ST,San Francisco,94123,B04,16,4165,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.7957761463173, -122.442064661028)",142370410-B04 -142983152,72,14105320,Medical Incident,10/25/2014,10/25/2014,10/25/2014 07:37:19 PM,10/25/2014 07:37:47 PM,10/25/2014 07:39:04 PM,10/25/2014 07:39:28 PM,10/25/2014 07:47:15 PM,10/25/2014 07:58:23 PM,10/25/2014 08:23:10 PM,Code 2 Transport,10/25/2014 08:32:52 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",142983152-72 -150300638,B03,15011469,Alarms,01/30/2015,01/29/2015,01/30/2015 07:11:12 AM,01/30/2015 07:13:27 AM,01/30/2015 07:13:42 AM,01/30/2015 07:14:34 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Fire,01/30/2015 07:25:38 AM,200 Block of AVENUE B,Treasure Isla,94130,B03,48,2931,3,3,3,false,Alarm,1,CHIEF,3,None,6,Treasure Island,"(37.8192429968563, -122.373006045389)",150300638-B03 -152480220,63,15094509,Medical Incident,09/05/2015,09/04/2015,09/05/2015 01:23:11 AM,09/05/2015 01:24:13 AM,09/05/2015 01:24:27 AM,09/05/2015 01:24:37 AM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Code 2 Transport,09/05/2015 01:25:03 AM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",152480220-63 -142752728,KM10,14096574,Medical Incident,10/02/2014,10/02/2014,10/02/2014 04:40:11 PM,10/02/2014 04:41:56 PM,10/02/2014 04:42:23 PM,10/02/2014 04:43:03 PM,10/02/2014 04:47:46 PM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,No Merit,10/02/2014 04:48:58 PM,1300 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",142752728-KM10 -150750069,57,15028616,Medical Incident,03/16/2015,03/15/2015,03/16/2015 12:29:36 AM,03/16/2015 12:30:44 AM,03/16/2015 12:30:59 AM,03/16/2015 12:31:07 AM,03/16/2015 12:36:10 AM,03/16/2015 12:50:43 AM,03/16/2015 01:00:25 AM,Code 3 Transport,03/16/2015 01:23:01 AM,100 Block of DAY ST,San Francisco,94131,B06,11,5563,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,6,8,Noe Valley,"(37.7430208234357, -122.42545698897)",150750069-57 -152621206,D2,15100091,Medical Incident,09/19/2015,09/19/2015,09/19/2015 09:49:16 AM,09/19/2015 09:49:26 AM,09/19/2015 09:57:34 AM,09/19/2015 09:57:34 AM,09/19/2015 09:57:34 AM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/19/2015 10:14:57 AM,42ND AV/FULTON ST,San Francisco,94121,B07,34,7271,2,3,3,false,Potentially Life-Threatening,1,CHIEF,2,7,1,Outer Richmond,"(37.7717384269802, -122.502399614392)",152621206-D2 -160943012,70,16037379,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:56:38 PM,04/03/2016 06:57:01 PM,04/03/2016 06:57:38 PM,04/03/2016 06:59:20 PM,04/03/2016 07:01:29 PM,04/03/2016 07:11:22 PM,04/03/2016 07:19:22 PM,Code 2 Transport,04/03/2016 07:58:05 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160943012-70 -160983803,78,16039120,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:49:15 PM,04/07/2016 09:50:05 PM,04/07/2016 09:50:15 PM,04/07/2016 09:50:22 PM,04/07/2016 09:55:58 PM,04/07/2016 10:13:37 PM,04/07/2016 10:28:09 PM,Code 2 Transport,04/07/2016 11:10:11 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160983803-78 -161003117,AM20,16039937,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:58:59 PM,04/09/2016 09:00:22 PM,04/09/2016 09:00:55 PM,04/09/2016 09:01:34 PM,04/09/2016 09:17:36 PM,04/09/2016 09:26:43 PM,04/09/2016 09:41:22 PM,Code 2 Transport,04/09/2016 10:09:26 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",161003117-AM20 -160972630,53,16038486,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:14:39 PM,04/06/2016 03:15:55 PM,04/06/2016 03:16:14 PM,04/06/2016 03:16:36 PM,04/06/2016 03:30:58 PM,04/06/2016 03:39:06 PM,04/06/2016 03:55:49 PM,Code 2 Transport,04/06/2016 04:40:58 PM,400 Block of RALSTON ST,San Francisco,94132,B09,33,8432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7206536751646, -122.469031881518)",160972630-53 -151284008,79,15048781,Medical Incident,05/08/2015,05/08/2015,05/08/2015 11:42:31 PM,05/08/2015 11:44:34 PM,05/08/2015 11:45:45 PM,05/08/2015 11:46:02 PM,05/08/2015 11:52:17 PM,05/09/2015 12:39:01 AM,05/09/2015 12:54:37 AM,Code 2 Transport,05/09/2015 01:18:56 AM,400 Block of POWELL ST,San Francisco,94108,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",151284008-79 -141250259,T18,14042402,Medical Incident,05/05/2014,05/05/2014,05/05/2014 03:08:12 PM,05/05/2014 03:10:18 PM,05/05/2014 03:11:16 PM,05/05/2014 03:12:35 PM,05/05/2014 03:14:16 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 03:32:15 PM,2100 Block of 32ND AVE,SAN FRANCISCO,94116,B08,18,7532,,2,2,false,Non Life-threatening,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7470947465854, -122.490012839631)",141250259-T18 -150623996,E01,15023869,Medical Incident,03/03/2015,03/03/2015,03/03/2015 11:11:04 PM,03/03/2015 11:11:04 PM,03/03/2015 11:11:26 PM,03/03/2015 11:14:46 PM,03/03/2015 11:15:59 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Code 2 Transport,03/03/2015 11:19:42 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",150623996-E01 -142572661,E18,14089877,Electrical Hazard,09/14/2014,09/14/2014,09/14/2014 07:09:41 PM,09/14/2014 07:11:31 PM,09/14/2014 07:11:37 PM,09/14/2014 07:12:45 PM,09/14/2014 07:46:34 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 07:46:35 PM,32ND AV/RIVERA ST,San Francisco,94116,B08,18,7532,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7461649463405, -122.489878757322)",142572661-E18 -160961717,KM11,16038001,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:30:58 PM,04/05/2016 12:32:55 PM,04/05/2016 12:33:16 PM,04/05/2016 12:34:22 PM,04/05/2016 12:39:35 PM,04/05/2016 12:56:52 PM,04/05/2016 01:10:46 PM,Code 2 Transport,04/05/2016 01:43:50 PM,100 Block of EASTWOOD DR,San Francisco,94112,B09,15,8515,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7284181604487, -122.457375298028)",160961717-KM11 -160940708,AM02,16037170,Medical Incident,04/03/2016,04/02/2016,04/03/2016 06:10:15 AM,04/03/2016 06:12:34 AM,04/03/2016 06:12:45 AM,04/03/2016 06:13:45 AM,04/03/2016 06:22:29 AM,04/03/2016 06:41:22 AM,04/03/2016 07:02:35 AM,Code 2 Transport,04/03/2016 07:27:33 AM,0 Block of GEARY ST,San Francisco,94108,B01,1,1241,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",160940708-AM02 -143371423,E07,14119503,Medical Incident,12/03/2014,12/03/2014,12/03/2014 10:21:09 AM,12/03/2014 10:21:56 AM,12/03/2014 10:22:12 AM,12/03/2014 10:22:38 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Code 3 Transport,12/03/2014 10:42:37 AM,900 Block of HAMPSHIRE ST,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7569109782313, -122.407609182364)",143371423-E07 -152632761,53,15100759,Structure Fire,09/20/2015,09/20/2015,09/20/2015 05:17:23 PM,09/20/2015 05:17:40 PM,09/20/2015 05:18:07 PM,09/20/2015 05:18:16 PM,09/20/2015 05:25:20 PM,09/20/2015 05:53:44 PM,09/20/2015 05:56:17 PM,Code 2 Transport,09/20/2015 06:26:13 PM,3600 Block of MARKET ST,San Francisco,94131,B06,24,5266,3,3,3,true,Alarm,1,MEDIC,5,6,8,Twin Peaks,"(37.7559026729381, -122.441182203057)",152632761-53 -153272154,E42,15125906,Medical Incident,11/23/2015,11/23/2015,11/23/2015 02:35:34 PM,11/23/2015 02:38:07 PM,11/23/2015 02:38:38 PM,11/23/2015 02:39:38 PM,11/23/2015 02:44:38 PM,04/25/2016 01:07:02 PM,04/25/2016 01:07:02 PM,Code 3 Transport,11/23/2015 03:29:31 PM,700 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5643,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",153272154-E42 -152963834,71,15113859,Medical Incident,10/23/2015,10/23/2015,10/23/2015 09:59:42 PM,10/23/2015 10:01:02 PM,10/23/2015 10:01:38 PM,10/23/2015 10:01:44 PM,10/23/2015 10:12:21 PM,10/23/2015 10:27:22 PM,10/23/2015 10:37:28 PM,Code 2 Transport,10/23/2015 11:00:40 PM,1600 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7358945658935, -122.391072078488)",152963834-71 -160970209,52,16038258,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:06:24 AM,04/06/2016 02:07:27 AM,04/06/2016 02:07:53 AM,04/06/2016 02:07:59 AM,04/06/2016 02:13:18 AM,04/06/2016 02:16:29 AM,04/06/2016 02:44:56 AM,Code 2 Transport,04/06/2016 03:12:48 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160970209-52 -142860736,D3,14100744,Structure Fire,10/13/2014,10/13/2014,10/13/2014 08:07:34 AM,10/13/2014 08:08:14 AM,10/13/2014 08:08:45 AM,10/13/2014 08:09:46 AM,10/13/2014 08:15:08 AM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/13/2014 08:35:48 AM,600 Block of BANKS ST,San Francisco,94110,B06,32,5747,3,3,3,false,Fire,1,CHIEF,4,10,9,Bernal Heights,"(37.7352750398091, -122.41294735201)",142860736-D3 -141580361,E21,14054305,Traffic Collision,06/07/2014,06/06/2014,06/07/2014 03:12:20 AM,06/07/2014 03:13:54 AM,06/07/2014 03:14:11 AM,06/07/2014 03:15:14 AM,06/07/2014 03:17:44 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Patient Declined Transport,06/07/2014 03:19:07 AM,FULTON ST/STANYAN ST,San Francisco,94122,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7747554836103, -122.454682645753)",141580361-E21 -150322834,83,15012463,Medical Incident,02/01/2015,02/01/2015,02/01/2015 06:03:10 PM,02/01/2015 06:03:10 PM,02/01/2015 06:03:44 PM,02/01/2015 06:04:57 PM,02/01/2015 06:10:58 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Gone on Arrival,02/01/2015 06:16:09 PM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",150322834-83 -160961852,63,16038021,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:06:49 PM,04/05/2016 01:08:20 PM,04/05/2016 01:10:01 PM,04/05/2016 01:10:29 PM,04/05/2016 01:17:38 PM,04/05/2016 01:35:45 PM,04/05/2016 02:07:04 PM,Code 2 Transport,04/05/2016 02:38:07 PM,400 Block of BUSH ST,San Francisco,94108,B01,13,1315,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7907445241029, -122.404594467289)",160961852-63 -151293159,56,15049087,Medical Incident,05/09/2015,05/09/2015,05/09/2015 07:28:21 PM,05/09/2015 07:29:34 PM,05/09/2015 07:29:52 PM,05/09/2015 07:30:47 PM,05/09/2015 07:32:17 PM,05/09/2015 07:57:25 PM,05/09/2015 08:17:19 PM,Code 2 Transport,05/09/2015 08:44:01 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",151293159-56 -151771483,E38,15067351,Structure Fire,06/26/2015,06/26/2015,06/26/2015 11:42:43 AM,06/26/2015 11:43:20 AM,06/26/2015 11:43:58 AM,06/26/2015 11:44:41 AM,06/26/2015 11:46:55 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Fire,06/26/2015 11:54:46 AM,2400 Block of SCOTT ST,San Francisco,94115,B04,38,4123,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7922741323429, -122.439645100406)",151771483-E38 -141431632,E42,14049055,Medical Incident,05/23/2014,05/23/2014,05/23/2014 01:04:34 PM,05/23/2014 01:04:34 PM,05/23/2014 01:04:34 PM,05/23/2014 01:04:34 PM,05/23/2014 01:04:34 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Fire,05/23/2014 01:25:34 PM,2400 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7318198889718, -122.405412091734)",141431632-E42 -141331393,E17,14045290,Medical Incident,05/13/2014,05/13/2014,05/13/2014 11:45:20 AM,05/13/2014 11:46:55 AM,05/13/2014 11:47:16 AM,05/13/2014 11:48:25 AM,05/13/2014 11:52:58 AM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/13/2014 12:08:07 PM,1000 Block of INGERSON AVE,San Francisco,94124,B10,17,6612,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7196891289383, -122.393876588978)",141331393-E17 -160922210,KM09,16036489,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:19:08 PM,04/01/2016 03:20:30 PM,04/01/2016 03:21:06 PM,04/01/2016 03:22:06 PM,04/01/2016 03:41:02 PM,04/01/2016 04:13:23 PM,04/01/2016 04:37:20 PM,Code 2 Transport,04/01/2016 05:31:47 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160922210-KM09 -160972641,AM04,16038487,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 03:18:33 PM,04/06/2016 03:18:56 PM,04/06/2016 03:19:20 PM,04/06/2016 03:19:47 PM,04/06/2016 03:32:56 PM,04/06/2016 03:49:32 PM,04/06/2016 04:11:44 PM,Code 2 Transport,04/06/2016 04:39:42 PM,DIVISADERO ST/GEARY BL,San Francisco,94115,B05,10,4154,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833084876653, -122.439480381269)",160972641-AM04 -141703258,RC2,14058860,Medical Incident,06/19/2014,06/19/2014,06/19/2014 08:39:41 PM,06/19/2014 08:41:27 PM,06/19/2014 08:42:51 PM,06/19/2014 08:43:50 PM,06/19/2014 08:54:41 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Against Medical Advice,06/19/2014 09:06:36 PM,1200 Block of 39TH AVE,San Francisco,94122,B08,23,7626,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7635527078831, -122.498690380377)",141703258-RC2 -160971501,82,16038378,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:05:43 AM,04/06/2016 11:07:08 AM,04/06/2016 11:10:24 AM,04/06/2016 11:10:33 AM,04/06/2016 11:19:54 AM,04/06/2016 11:36:27 AM,04/06/2016 11:48:34 AM,Code 2 Transport,04/06/2016 12:39:00 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160971501-82 -150103263,E11,15004131,Medical Incident,01/10/2015,01/10/2015,01/10/2015 09:10:07 PM,01/10/2015 09:11:43 PM,01/10/2015 09:12:12 PM,01/10/2015 09:15:02 PM,01/10/2015 09:15:02 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Against Medical Advice,01/10/2015 09:28:36 PM,100 Block of 27TH ST,San Francisco,94110,B06,11,5556,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7471574360743, -122.423541884062)",150103263-E11 -142571002,B03,14089725,Water Rescue,09/14/2014,09/14/2014,09/14/2014 09:35:57 AM,09/14/2014 09:36:33 AM,09/14/2014 09:38:10 AM,09/14/2014 09:39:47 AM,09/14/2014 09:43:43 AM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 09:51:06 AM,500 Block of THE EMBARCADERO,San Francisco,94111,B03,35,930,3,3,3,false,Fire,1,CHIEF,6,1,3,Financial District/South Beach,"(37.7999726402856, -122.398572299445)",142571002-B03 -143191920,KM06,14112987,Medical Incident,11/15/2014,11/15/2014,11/15/2014 01:39:25 PM,11/15/2014 01:42:19 PM,11/15/2014 01:43:20 PM,11/15/2014 01:43:54 PM,11/15/2014 02:10:05 PM,11/15/2014 02:10:06 PM,11/15/2014 02:19:52 PM,Code 2 Transport,11/15/2014 02:56:52 PM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7801357011746, -122.40877066526)",143191920-KM06 -160971656,85,16038391,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:43:10 AM,04/06/2016 11:44:53 AM,04/06/2016 11:45:03 AM,04/06/2016 11:45:46 AM,04/06/2016 11:51:37 AM,04/06/2016 12:00:42 PM,04/06/2016 12:23:54 PM,Code 2 Transport,04/06/2016 01:02:13 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160971656-85 -142440413,T03,14084890,Structure Fire,09/01/2014,08/31/2014,09/01/2014 03:01:56 AM,09/01/2014 03:01:56 AM,09/01/2014 03:02:36 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Fire,09/01/2014 03:05:41 AM,0 Block of VAN NESS AVE,San Francisco,94102,B02,36,3211,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7752607728259, -122.419431229777)",142440413-T03 -160963926,85,16038196,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:56:20 PM,04/05/2016 09:59:42 PM,04/05/2016 09:59:52 PM,04/05/2016 10:00:00 PM,04/05/2016 10:09:25 PM,04/05/2016 10:31:00 PM,04/05/2016 10:36:20 PM,Code 2 Transport,04/05/2016 11:18:03 PM,FILLMORE ST/EDDY ST,San Francisco,94115,B05,5,3536,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7814283698384, -122.432328983123)",160963926-85 -143543633,E03,14126627,Citizen Assist / Service Call,12/20/2014,12/20/2014,12/20/2014 06:15:01 PM,12/20/2014 06:15:37 PM,12/20/2014 06:28:03 PM,12/20/2014 06:29:32 PM,12/20/2014 06:31:54 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Code 2 Transport,12/20/2014 06:51:02 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",143543633-E03 -153161542,83,15121404,Medical Incident,11/12/2015,11/12/2015,11/12/2015 11:40:36 AM,11/12/2015 11:43:23 AM,11/12/2015 11:43:52 AM,11/12/2015 11:45:37 AM,11/12/2015 12:10:52 PM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,Unable to Locate,11/12/2015 12:16:46 PM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",153161542-83 -141240134,84,14041984,Medical Incident,05/04/2014,05/04/2014,05/04/2014 11:44:39 AM,05/04/2014 11:46:37 AM,05/04/2014 11:47:03 AM,05/04/2014 11:48:04 AM,05/04/2014 11:58:13 AM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Medical Examiner,05/04/2014 12:33:32 PM,300 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",141240134-84 -160941043,AM08,16037205,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:08:02 AM,04/03/2016 09:09:13 AM,04/03/2016 09:09:38 AM,04/03/2016 09:10:31 AM,04/03/2016 09:14:40 AM,04/03/2016 09:27:24 AM,04/03/2016 09:47:22 AM,Code 2 Transport,04/03/2016 10:18:18 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160941043-AM08 -150563366,E44,15021555,Medical Incident,02/25/2015,02/25/2015,02/25/2015 07:36:41 PM,02/25/2015 07:38:12 PM,02/25/2015 07:50:30 PM,02/25/2015 07:52:11 PM,02/25/2015 07:56:43 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Code 3 Transport,02/25/2015 08:36:38 PM,100 Block of GILLETTE AVE,San Francisco,94134,B10,44,6273,2,E,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7106753239004, -122.396529453587)",150563366-E44 -160953526,AM22,16037779,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:09:08 PM,04/04/2016 08:09:28 PM,04/04/2016 08:10:14 PM,04/04/2016 08:11:07 PM,04/04/2016 08:12:48 PM,04/04/2016 08:32:25 PM,04/04/2016 08:44:12 PM,Code 2 Transport,04/04/2016 09:23:47 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160953526-AM22 -150433432,71,15016881,Medical Incident,02/12/2015,02/12/2015,02/12/2015 08:10:23 PM,02/12/2015 08:11:56 PM,02/12/2015 08:12:10 PM,02/12/2015 08:12:54 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,No Merit,02/12/2015 08:15:07 PM,400 Block of THE EMBARCADERO,San Francisco,94111,B03,35,926,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",150433432-71 -150331017,56,15012661,Medical Incident,02/02/2015,02/02/2015,02/02/2015 09:35:04 AM,02/02/2015 09:36:33 AM,02/02/2015 09:36:45 AM,02/02/2015 09:37:05 AM,02/02/2015 09:41:15 AM,02/02/2015 10:23:02 AM,02/02/2015 10:35:38 AM,Code 2 Transport,02/02/2015 11:21:03 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361676975957, -122.389641795036)",150331017-56 -153113358,E13,15119714,Alarms,11/07/2015,11/07/2015,11/07/2015 08:49:50 PM,11/07/2015 08:51:56 PM,11/07/2015 08:52:07 PM,11/07/2015 08:52:30 PM,11/07/2015 08:54:46 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/07/2015 08:56:43 PM,700 Block of MONTGOMERY ST,San Francisco,94111,B01,13,1232,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7959833924502, -122.403338490355)",153113358-E13 -150492647,E13,15019036,Medical Incident,02/18/2015,02/18/2015,02/18/2015 04:07:02 PM,02/18/2015 04:07:59 PM,02/18/2015 04:08:25 PM,02/18/2015 04:09:39 PM,02/18/2015 04:11:12 PM,04/25/2016 01:12:10 PM,04/25/2016 01:12:10 PM,Code 3 Transport,02/18/2015 04:29:03 PM,600 Block of JACKSON ST,San Francisco,94108,B01,2,1312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.796045564581, -122.406033060722)",150492647-E13 -160991292,88,16039266,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:13:57 AM,04/08/2016 11:16:01 AM,04/08/2016 11:16:42 AM,04/08/2016 11:17:02 AM,04/08/2016 11:28:15 AM,04/08/2016 11:41:42 AM,04/08/2016 11:56:10 AM,Code 2 Transport,04/08/2016 12:39:55 PM,2700 Block of BRODERICK ST,San Francisco,94123,B04,16,4225,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7955809223543, -122.443599027931)",160991292-88 -141040339,E15,14035223,Medical Incident,04/14/2014,04/14/2014,04/14/2014 09:05:19 PM,04/14/2014 09:07:16 PM,04/14/2014 09:07:37 PM,04/14/2014 09:09:03 PM,04/14/2014 09:11:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/14/2014 09:34:39 PM,MISSION ST/FRANCE AV,SAN FRANCISCO,94112,B09,43,6123,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7200155262017, -122.438329412593)",141040339-E15 -152580726,E13,15098555,Medical Incident,09/15/2015,09/15/2015,09/15/2015 08:01:28 AM,09/15/2015 08:01:45 AM,09/15/2015 08:02:19 AM,09/15/2015 08:04:48 AM,09/15/2015 08:06:04 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 3 Transport,09/15/2015 08:29:54 AM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",152580726-E13 -160940138,AM24,16037107,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:44:57 AM,04/03/2016 12:44:57 AM,04/03/2016 12:45:22 AM,04/03/2016 12:46:17 AM,04/03/2016 12:54:26 AM,04/03/2016 01:15:59 AM,04/03/2016 01:23:33 AM,Code 2 Transport,04/03/2016 01:58:50 AM,0 Block of LEDYARD ST,San Francisco,94124,B10,42,6363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7333032572374, -122.40200771228)",160940138-AM24 -160933098,76,16037004,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:24:58 PM,04/02/2016 07:24:58 PM,04/02/2016 07:26:12 PM,04/02/2016 07:26:19 PM,04/02/2016 07:31:10 PM,04/02/2016 07:46:26 PM,04/02/2016 07:57:00 PM,Code 2 Transport,04/02/2016 08:45:00 PM,POWELL ST/FILBERT ST,San Francisco,94133,B01,28,1351,A,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.801169751007, -122.41101851673)",160933098-76 -142482195,55,14086482,Medical Incident,09/05/2014,09/05/2014,09/05/2014 03:05:35 PM,09/05/2014 03:07:13 PM,09/05/2014 03:07:27 PM,09/05/2014 03:07:58 PM,09/05/2014 03:13:58 PM,09/05/2014 03:33:20 PM,09/05/2014 03:54:42 PM,Code 3 Transport,09/05/2014 04:36:19 PM,1400 Block of EDDY ST,San Francisco,94115,B05,5,3515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7814827356164, -122.431458216164)",142482195-55 -153053032,54,15117233,Medical Incident,11/01/2015,11/01/2015,11/01/2015 03:58:57 PM,11/01/2015 03:59:52 PM,11/01/2015 04:00:46 PM,11/01/2015 04:00:54 PM,11/01/2015 04:08:13 PM,11/01/2015 04:17:45 PM,11/01/2015 04:36:08 PM,Code 2 Transport,11/01/2015 05:06:36 PM,4TH ST/MISSION ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",153053032-54 -150802851,E07,15030767,Medical Incident,03/21/2015,03/21/2015,03/21/2015 06:58:21 PM,03/21/2015 06:59:08 PM,03/21/2015 06:59:37 PM,03/21/2015 07:00:48 PM,03/21/2015 07:02:07 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Code 2 Transport,03/21/2015 07:13:35 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",150802851-E07 -160972911,52,16038520,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:17:28 PM,04/06/2016 04:18:44 PM,04/06/2016 04:20:48 PM,04/06/2016 04:21:12 PM,04/06/2016 04:44:43 PM,04/06/2016 04:59:16 PM,04/06/2016 05:15:17 PM,Code 2 Transport,04/06/2016 05:46:29 PM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",160972911-52 -142010327,E01,14069448,Structure Fire,07/20/2014,07/19/2014,07/20/2014 01:46:37 AM,07/20/2014 01:46:37 AM,07/20/2014 01:46:45 AM,07/20/2014 01:46:50 AM,07/20/2014 01:47:03 AM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Fire,07/20/2014 01:47:31 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",142010327-E01 -160930799,85,16036752,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:17:20 AM,04/02/2016 08:17:20 AM,04/02/2016 08:18:19 AM,04/02/2016 08:18:31 AM,04/02/2016 08:24:20 AM,04/02/2016 08:42:36 AM,04/02/2016 09:12:01 AM,Code 2 Transport,04/02/2016 09:53:11 AM,300 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",160930799-85 -142972635,B07,14104879,Alarms,10/24/2014,10/24/2014,10/24/2014 04:49:55 PM,10/24/2014 04:50:34 PM,10/24/2014 04:51:24 PM,10/24/2014 04:52:51 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Fire,10/24/2014 04:58:28 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,false,Alarm,1,CHIEF,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",142972635-B07 -161000002,89,16039546,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:01:09 AM,04/09/2016 12:01:09 AM,04/09/2016 12:02:19 AM,04/09/2016 12:02:28 AM,04/09/2016 12:09:40 AM,04/09/2016 12:27:37 AM,04/09/2016 12:43:08 AM,Code 2 Transport,04/09/2016 01:21:13 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",161000002-89 -141492394,54,14051248,Traffic Collision,05/29/2014,05/29/2014,05/29/2014 04:18:36 PM,05/29/2014 04:22:25 PM,05/29/2014 04:22:44 PM,05/29/2014 04:23:34 PM,05/29/2014 04:32:56 PM,05/29/2014 04:48:52 PM,05/29/2014 04:59:07 PM,Code 2 Transport,05/29/2014 05:29:57 PM,GEARY BL/39TH AV,San Francisco,94121,B07,34,7255,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7794034249514, -122.499730471535)",141492394-54 -151232809,E25,15046769,Other,05/03/2015,05/03/2015,05/03/2015 06:56:14 PM,05/03/2015 06:57:31 PM,05/03/2015 06:58:17 PM,05/03/2015 06:59:46 PM,05/03/2015 07:02:10 PM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,Fire,05/03/2015 07:11:46 PM,NEWHALL ST/HUDSON AV,San Francisco,94124,B10,25,6467,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7400445538806, -122.388273077343)",151232809-E25 -160963073,75,16038123,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:43:38 PM,04/05/2016 05:45:53 PM,04/05/2016 05:46:34 PM,04/05/2016 05:47:13 PM,04/05/2016 06:19:38 PM,04/05/2016 06:35:38 PM,04/05/2016 07:08:48 PM,Code 2 Transport,04/05/2016 07:24:36 PM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7792067028319, -122.402159463556)",160963073-75 -142612033,T07,14091281,Structure Fire,09/18/2014,09/18/2014,09/18/2014 01:44:46 PM,09/18/2014 01:44:46 PM,09/18/2014 01:44:51 PM,09/18/2014 01:45:58 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,Fire,09/18/2014 01:48:20 PM,25TH ST/HARRISON ST,San Francisco,94110,B06,7,5533,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7510338955654, -122.411746226036)",142612033-T07 -160971100,KM13,16038350,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:36:30 AM,04/06/2016 09:38:14 AM,04/06/2016 09:42:09 AM,04/06/2016 09:42:56 AM,04/06/2016 09:57:40 AM,04/06/2016 11:03:57 AM,04/06/2016 11:32:58 AM,Code 2 Transport,04/06/2016 12:24:32 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160971100-KM13 -160923888,58,16036643,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:57:45 PM,04/01/2016 10:59:39 PM,04/01/2016 10:59:48 PM,04/01/2016 11:00:25 PM,04/01/2016 11:05:37 PM,04/01/2016 11:17:38 PM,04/01/2016 11:24:00 PM,Code 2 Transport,04/01/2016 11:55:10 PM,JONES ST/ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160923888-58 -161000403,71,16039607,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:05:20 AM,04/09/2016 03:05:38 AM,04/09/2016 03:09:47 AM,04/09/2016 03:09:57 AM,04/09/2016 03:29:23 AM,04/09/2016 03:40:24 AM,04/09/2016 04:02:49 AM,Code 2 Transport,04/09/2016 04:29:20 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161000403-71 -142433553,E14,14084828,Medical Incident,08/31/2014,08/31/2014,08/31/2014 10:56:12 PM,08/31/2014 10:56:45 PM,08/31/2014 10:57:59 PM,08/31/2014 10:59:49 PM,08/31/2014 11:02:31 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 2 Transport,08/31/2014 11:18:09 PM,500 Block of 18TH AVE,San Francisco,94121,B07,14,7165,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7775714175008, -122.477101447838)",142433553-E14 -151421574,E36,15053964,Medical Incident,05/22/2015,05/22/2015,05/22/2015 11:45:02 AM,05/22/2015 11:49:39 AM,05/22/2015 11:51:57 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Patient Declined Transport,05/22/2015 11:55:51 AM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",151421574-E36 -160992403,KM13,16039370,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:57:49 PM,04/08/2016 03:59:36 PM,04/08/2016 04:00:33 PM,04/08/2016 04:01:23 PM,04/08/2016 04:31:02 PM,04/08/2016 04:46:24 PM,04/08/2016 05:16:55 PM,Code 2 Transport,04/08/2016 05:46:21 PM,100 Block of 3RD ST,San Francisco,94105,B03,1,2178,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",160992403-KM13 -151283172,E07,15048683,Structure Fire,05/08/2015,05/08/2015,05/08/2015 07:12:17 PM,05/08/2015 07:12:58 PM,05/08/2015 07:14:41 PM,05/08/2015 07:14:41 PM,05/08/2015 07:17:34 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Fire,05/08/2015 07:17:36 PM,500 Block of PRECITA AVE,San Francisco,94110,B06,9,5621,3,3,3,true,Alarm,1,ENGINE,7,6,9,Bernal Heights,"(37.747236688099, -122.410117568497)",151283172-E07 -142533930,B02,14088493,Structure Fire,09/10/2014,09/10/2014,09/10/2014 10:11:59 PM,09/10/2014 10:14:07 PM,09/10/2014 10:14:36 PM,09/10/2014 10:15:41 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Fire,09/10/2014 10:26:42 PM,3800 Block of 19TH ST,San Francisco,94114,B06,6,5436,3,3,3,false,Alarm,1,CHIEF,10,6,8,Castro/Upper Market,"(37.7596793163644, -122.429316589446)",142533930-B02 -151291057,FB1,15048903,Structure Fire,05/09/2015,05/09/2015,05/09/2015 09:31:41 AM,05/09/2015 09:33:02 AM,05/09/2015 09:33:37 AM,05/09/2015 09:35:18 AM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Fire,05/09/2015 09:41:14 AM,500 Block of THE EMBARCADERO,San Francisco,94111,B03,35,930,3,3,3,false,Alarm,1,SUPPORT,11,1,3,Financial District/South Beach,"(37.7999726402856, -122.398572299445)",151291057-FB1 -160934037,AM20,16037090,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:56:57 PM,04/02/2016 11:59:22 PM,04/03/2016 12:04:36 AM,04/03/2016 12:05:08 AM,04/03/2016 12:11:38 AM,04/03/2016 12:41:00 AM,04/03/2016 12:49:21 AM,Code 2 Transport,04/03/2016 01:39:02 AM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160934037-AM20 -160992483,84,16039383,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:15:22 PM,04/08/2016 04:16:59 PM,04/08/2016 04:17:26 PM,04/08/2016 04:17:40 PM,04/08/2016 04:19:23 PM,04/08/2016 04:31:15 PM,04/08/2016 04:51:24 PM,Code 2 Transport,04/08/2016 05:37:40 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160992483-84 -151731222,70,15066017,Medical Incident,06/22/2015,06/22/2015,06/22/2015 11:07:16 AM,06/22/2015 11:08:16 AM,06/22/2015 11:08:22 AM,06/22/2015 11:09:50 AM,06/22/2015 11:16:53 AM,06/22/2015 11:30:26 AM,06/22/2015 12:16:53 PM,Code 2 Transport,06/22/2015 12:54:08 PM,400 Block of HEAD ST,San Francisco,94132,B09,33,8414,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7152096464859, -122.464479764216)",151731222-70 -151012147,52,15038249,Medical Incident,04/11/2015,04/11/2015,04/11/2015 03:17:18 PM,04/11/2015 03:18:24 PM,04/11/2015 03:18:40 PM,04/11/2015 03:19:01 PM,04/11/2015 03:23:10 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Cancelled,04/11/2015 03:23:12 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",151012147-52 -160972275,54,16038454,Citizen Assist / Service Call,04/06/2016,04/06/2016,04/06/2016 02:02:31 PM,04/06/2016 02:03:58 PM,04/06/2016 02:14:06 PM,04/06/2016 02:14:31 PM,04/06/2016 02:19:06 PM,04/06/2016 02:34:47 PM,04/06/2016 03:00:49 PM,Code 2 Transport,04/06/2016 03:26:47 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,MEDIC,2,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",160972275-54 -143082364,E15,14109060,Traffic Collision,11/04/2014,11/04/2014,11/04/2014 03:46:15 PM,11/04/2014 03:46:15 PM,11/04/2014 03:46:47 PM,11/04/2014 03:47:13 PM,11/04/2014 03:47:13 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 04:03:50 PM,OCEAN AV/PHELAN AV,San Francisco,94112,B09,15,8472,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7230802451635, -122.452331558779)",143082364-E15 -142701216,E33,14094648,Medical Incident,09/27/2014,09/27/2014,09/27/2014 09:59:03 AM,09/27/2014 10:00:54 AM,09/27/2014 10:05:15 AM,09/27/2014 10:06:52 AM,09/27/2014 10:09:29 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 10:29:07 AM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",142701216-E33 -142610509,E13,14091131,Alarms,09/18/2014,09/17/2014,09/18/2014 05:50:19 AM,09/18/2014 05:51:47 AM,09/18/2014 05:52:12 AM,09/18/2014 05:54:10 AM,09/18/2014 05:55:51 AM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,Fire,09/18/2014 06:04:38 AM,0 Block of SANSOME ST,San Francisco,94104,B01,13,1164,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",142610509-E13 -143393432,89,14120489,Medical Incident,12/05/2014,12/05/2014,12/05/2014 07:54:48 PM,12/05/2014 07:56:50 PM,12/05/2014 07:57:15 PM,12/05/2014 07:57:23 PM,12/05/2014 08:17:17 PM,12/05/2014 08:36:27 PM,12/05/2014 09:25:32 PM,Code 2 Transport,12/05/2014 09:31:18 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",143393432-89 -153141619,59,15120646,Medical Incident,11/10/2015,11/10/2015,11/10/2015 12:03:30 PM,11/10/2015 12:04:56 PM,11/10/2015 12:06:39 PM,11/10/2015 12:06:50 PM,11/10/2015 12:10:10 PM,11/10/2015 12:41:01 PM,11/10/2015 12:52:22 PM,Code 2 Transport,11/10/2015 01:38:57 PM,1400 Block of 40TH AVE,San Francisco,94122,B08,23,7631,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7597777456855, -122.499361901706)",153141619-59 -151730480,85,15065937,Medical Incident,06/22/2015,06/21/2015,06/22/2015 06:44:43 AM,06/22/2015 06:46:18 AM,06/22/2015 06:47:20 AM,06/22/2015 06:47:37 AM,06/22/2015 06:58:46 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Unable to Locate,06/22/2015 07:04:50 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",151730480-85 -151790942,E06,15068138,Medical Incident,06/28/2015,06/27/2015,06/28/2015 07:38:52 AM,06/28/2015 07:39:17 AM,06/28/2015 07:40:05 AM,06/28/2015 07:42:26 AM,06/28/2015 07:44:03 AM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Code 2 Transport,06/28/2015 07:57:31 AM,300 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7678105248182, -122.422097817333)",151790942-E06 -160992069,KM13,16039332,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:36:15 PM,04/08/2016 02:36:47 PM,04/08/2016 02:37:04 PM,04/08/2016 02:37:35 PM,04/08/2016 02:44:33 PM,04/08/2016 03:11:41 PM,04/08/2016 03:23:00 PM,Code 2 Transport,04/08/2016 03:59:00 PM,BUCHANAN ST/SACRAMENTO ST,San Francisco,94115,B04,38,3435,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7902520626448, -122.430736822977)",160992069-KM13 -142273386,74,14079017,Medical Incident,08/15/2014,08/15/2014,08/15/2014 08:39:55 PM,08/15/2014 08:41:06 PM,08/15/2014 09:32:03 PM,08/15/2014 09:32:35 PM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,Cancelled,08/15/2014 09:33:11 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",142273386-74 -142681843,E36,14093941,Structure Fire,09/25/2014,09/25/2014,09/25/2014 02:00:32 PM,09/25/2014 02:00:59 PM,09/25/2014 02:03:23 PM,09/25/2014 02:04:33 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Fire,09/25/2014 02:15:00 PM,1500 Block of HARRISON ST,San Francisco,94103,B02,36,5112,3,3,3,false,Alarm,1,ENGINE,9,2,6,Mission,"(37.770549814387, -122.412678946548)",142681843-E36 -150580772,E06,15022080,Medical Incident,02/27/2015,02/27/2015,02/27/2015 08:18:13 AM,02/27/2015 08:20:02 AM,02/27/2015 08:20:31 AM,02/27/2015 08:21:49 AM,02/27/2015 08:24:05 AM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,No Merit,02/27/2015 08:31:40 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150580772-E06 -152471605,B02,15094200,Alarms,09/04/2015,09/04/2015,09/04/2015 11:36:34 AM,09/04/2015 11:37:58 AM,09/04/2015 11:38:55 AM,09/04/2015 11:41:45 AM,09/04/2015 11:41:45 AM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Fire,09/04/2015 11:54:28 AM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,3,3,3,false,Alarm,1,CHIEF,1,2,6,Mission,"(37.7720616394566, -122.419213394918)",152471605-B02 -160971612,60,16038387,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:34:15 AM,04/06/2016 11:34:43 AM,04/06/2016 11:35:15 AM,04/06/2016 11:35:47 AM,04/06/2016 11:47:24 AM,04/06/2016 11:50:36 AM,04/06/2016 12:04:00 PM,Code 3 Transport,04/06/2016 01:06:21 PM,0 Block of HARDING RD,San Francisco,94132,B08,19,8713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248174091742, -122.497764890771)",160971612-60 -141980847,E11,14068481,Traffic Collision,07/17/2014,07/17/2014,07/17/2014 08:36:55 AM,07/17/2014 08:36:55 AM,07/17/2014 08:37:44 AM,07/17/2014 08:39:27 AM,07/17/2014 08:40:34 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 3 Transport,07/17/2014 08:54:53 AM,25TH ST/DOLORES ST,San Francisco,94110,B06,11,5536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7502327184515, -122.424999223775)",141980847-E11 -160924055,61,16036660,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:53:25 PM,04/01/2016 11:55:05 PM,04/01/2016 11:55:24 PM,04/01/2016 11:55:42 PM,04/02/2016 12:01:24 AM,04/02/2016 12:29:13 AM,04/02/2016 12:44:00 AM,Code 2 Transport,04/02/2016 01:20:31 AM,700 Block of LONG BRIDGE ST,San Francisco,94158,B03,4,2264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7713904956713, -122.394161419191)",160924055-61 -151990179,E41,15075691,Medical Incident,07/18/2015,07/17/2015,07/18/2015 01:01:36 AM,07/18/2015 01:02:06 AM,07/18/2015 01:02:15 AM,07/18/2015 01:03:33 AM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,Code 2 Transport,07/18/2015 01:06:44 AM,2000 Block of LARKIN ST,San Francisco,94109,B01,41,1632,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,Russian Hill,"(37.7966105174567, -122.420144877743)",151990179-E41 -161000277,71,16039592,Traffic Collision,04/09/2016,04/08/2016,04/09/2016 02:03:35 AM,04/09/2016 02:03:35 AM,04/09/2016 02:05:07 AM,04/09/2016 02:05:13 AM,04/09/2016 02:10:34 AM,04/09/2016 02:22:31 AM,04/09/2016 02:22:03 AM,Code 3 Transport,04/09/2016 03:09:13 AM,MISSION ST/HIGHLAND AV,San Francisco,94110,B06,32,5631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Bernal Heights,"(37.7374062487517, -122.424040149847)",161000277-71 -160993594,60,16039473,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:14:37 PM,04/08/2016 09:15:02 PM,04/08/2016 09:15:30 PM,04/08/2016 09:15:43 PM,04/08/2016 09:23:07 PM,04/08/2016 09:35:37 PM,04/08/2016 09:54:57 PM,Code 2 Transport,04/08/2016 10:33:08 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160993594-60 -160950224,85,16037494,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:56:18 AM,04/04/2016 02:58:12 AM,04/04/2016 02:59:14 AM,04/04/2016 02:59:31 AM,04/04/2016 03:15:18 AM,04/04/2016 03:15:21 AM,04/04/2016 03:31:10 AM,Code 2 Transport,04/04/2016 04:07:51 AM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160950224-85 -141200401,E07,14040734,Medical Incident,04/30/2014,04/30/2014,04/30/2014 10:31:23 PM,04/30/2014 10:33:35 PM,04/30/2014 10:34:38 PM,04/30/2014 10:36:23 PM,04/30/2014 10:38:19 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Unable to Locate,04/30/2014 10:39:23 PM,18TH ST/SHOTWELL ST,SAN FRANCISCO,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7620340026529, -122.416077987511)",141200401-E07 -143652531,KM14,14130797,Medical Incident,12/31/2014,12/31/2014,12/31/2014 06:07:31 PM,12/31/2014 06:07:31 PM,12/31/2014 06:08:14 PM,12/31/2014 06:09:36 PM,12/31/2014 06:15:23 PM,12/31/2014 06:32:25 PM,12/31/2014 06:55:07 PM,Code 2 Transport,12/31/2014 07:18:05 PM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",143652531-KM14 -142382179,52,14082819,Medical Incident,08/26/2014,08/26/2014,08/26/2014 03:00:41 PM,08/26/2014 03:02:57 PM,08/26/2014 03:03:44 PM,08/26/2014 03:03:56 PM,08/26/2014 03:06:26 PM,08/26/2014 03:26:17 PM,08/26/2014 03:41:51 PM,Code 2 Transport,08/26/2014 04:19:51 PM,11TH ST/MINNA ST,San Francisco,94103,B02,36,5114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7739062505366, -122.416575670164)",142382179-52 -142471397,RC1,14086013,Medical Incident,09/04/2014,09/04/2014,09/04/2014 11:08:23 AM,09/04/2014 11:09:21 AM,09/04/2014 11:09:53 AM,09/04/2014 11:12:47 AM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,No Merit,09/04/2014 11:13:46 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",142471397-RC1 -160990297,70,16039176,Medical Incident,04/08/2016,04/07/2016,04/08/2016 03:03:52 AM,04/08/2016 03:08:58 AM,04/08/2016 03:09:16 AM,04/08/2016 03:11:30 AM,04/08/2016 03:24:55 AM,04/08/2016 04:03:23 AM,04/08/2016 04:09:36 AM,Code 2 Transport,04/08/2016 04:29:26 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160990297-70 -141710424,E31,14058947,Medical Incident,06/20/2014,06/19/2014,06/20/2014 05:35:16 AM,06/20/2014 05:36:37 AM,06/20/2014 05:37:38 AM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Code 2 Transport,06/20/2014 05:38:37 AM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7792067028319, -122.402159463556)",141710424-E31 -142551402,T11,14088991,Alarms,09/12/2014,09/12/2014,09/12/2014 11:28:59 AM,09/12/2014 11:30:53 AM,09/12/2014 11:32:03 AM,09/12/2014 11:32:52 AM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Fire,09/12/2014 11:36:25 AM,0 Block of GLADYS ST,San Francisco,94110,B06,32,5626,3,3,3,false,Alarm,1,TRUCK,3,6,9,Bernal Heights,"(37.7394765722027, -122.422865684118)",142551402-T11 -160972939,AM08,16038526,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:21:42 PM,04/06/2016 04:23:04 PM,04/06/2016 04:24:14 PM,04/06/2016 04:28:53 PM,04/06/2016 04:31:54 PM,04/06/2016 05:06:44 PM,04/06/2016 05:06:46 PM,Code 2 Transport,04/06/2016 06:17:37 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160972939-AM08 -160932299,75,16036924,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:45:37 PM,04/02/2016 03:47:37 PM,04/02/2016 03:47:49 PM,04/02/2016 03:48:10 PM,04/02/2016 03:55:39 PM,04/02/2016 03:57:55 PM,04/02/2016 04:28:11 PM,Code 2 Transport,04/02/2016 05:00:16 PM,1400 Block of OAKDALE AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7330447252069, -122.387509881021)",160932299-75 -152570498,86,15098149,Medical Incident,09/14/2015,09/13/2015,09/14/2015 06:08:20 AM,09/14/2015 06:09:14 AM,09/14/2015 06:09:51 AM,09/14/2015 06:09:59 AM,09/14/2015 06:19:43 AM,09/14/2015 06:49:13 AM,09/14/2015 06:56:51 AM,Code 2 Transport,09/14/2015 07:36:55 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",152570498-86 -160950077,76,16037475,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:46:05 AM,04/04/2016 12:46:05 AM,04/04/2016 12:46:47 AM,04/04/2016 12:46:47 AM,04/04/2016 12:57:17 AM,04/04/2016 01:02:35 AM,04/04/2016 01:26:50 AM,Code 2 Transport,04/04/2016 01:57:09 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160950077-76 -142750324,AM26,14096337,Medical Incident,10/02/2014,10/01/2014,10/02/2014 03:00:43 AM,10/02/2014 03:02:40 AM,10/02/2014 03:03:50 AM,10/02/2014 03:04:25 AM,10/02/2014 03:08:17 AM,10/02/2014 03:14:15 AM,10/02/2014 03:23:12 AM,Code 2 Transport,10/02/2014 03:49:34 AM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",142750324-AM26 -160961478,82,16037980,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:36:49 AM,04/05/2016 11:38:11 AM,04/05/2016 11:40:06 AM,04/05/2016 11:40:11 AM,04/05/2016 11:50:10 AM,04/05/2016 12:00:00 PM,04/05/2016 12:08:16 PM,Code 2 Transport,04/05/2016 12:36:55 PM,1800 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7926340535601, -122.422611866013)",160961478-82 -151830572,AM02,15069754,Medical Incident,07/02/2015,07/01/2015,07/02/2015 06:54:11 AM,07/02/2015 06:54:11 AM,07/02/2015 06:54:47 AM,07/02/2015 06:55:40 AM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Cancelled,07/02/2015 07:01:39 AM,300 Block of DAY ST,San Francisco,94131,B06,11,5564,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7427523583192, -122.429919189858)",151830572-AM02 -161001545,61,16039753,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:37:57 PM,04/09/2016 12:37:57 PM,04/09/2016 12:39:03 PM,04/09/2016 12:39:11 PM,04/09/2016 12:58:04 PM,04/09/2016 01:02:13 PM,04/09/2016 01:29:29 PM,Code 2 Transport,04/09/2016 02:00:41 PM,1000 Block of GREEN ST,San Francisco,94133,B01,41,1533,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7986303849434, -122.416405936463)",161001545-61 -152741154,85,15104828,Medical Incident,10/01/2015,10/01/2015,10/01/2015 09:31:08 AM,10/01/2015 09:32:03 AM,10/01/2015 09:32:26 AM,10/01/2015 09:33:06 AM,10/01/2015 09:37:06 AM,10/01/2015 09:53:23 AM,10/01/2015 10:01:52 AM,Code 2 Transport,10/01/2015 10:32:00 AM,200 Block of 7TH ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7774003641379, -122.408565501698)",152741154-85 -141532790,54,14052691,Medical Incident,06/02/2014,06/02/2014,06/02/2014 07:07:59 PM,06/02/2014 07:08:07 PM,06/02/2014 07:08:33 PM,06/02/2014 07:08:58 PM,06/02/2014 07:18:06 PM,06/02/2014 07:38:43 PM,06/02/2014 07:58:08 PM,Code 2 Transport,06/02/2014 08:21:03 PM,800 Block of AVENUE D,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",141532790-54 -160993298,52,16039442,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 07:39:15 PM,04/08/2016 07:39:15 PM,04/08/2016 07:40:00 PM,04/08/2016 07:40:08 PM,04/08/2016 07:46:15 PM,04/08/2016 08:01:47 PM,04/08/2016 08:26:32 PM,Code 2 Transport,04/08/2016 08:56:34 PM,OCTAVIA ST/FELL ST,San Francisco,94102,B02,36,3314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7757539609909, -122.424324651558)",160993298-52 -153122887,61,15120043,Medical Incident,11/08/2015,11/08/2015,11/08/2015 07:36:48 PM,11/08/2015 07:38:44 PM,11/08/2015 07:48:20 PM,11/08/2015 07:48:32 PM,11/08/2015 07:54:39 PM,11/08/2015 08:12:32 PM,11/08/2015 08:18:38 PM,Code 2 Transport,11/08/2015 08:56:36 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",153122887-61 -142653555,E13,14092906,Medical Incident,09/22/2014,09/22/2014,09/22/2014 09:50:43 PM,09/22/2014 09:52:34 PM,09/22/2014 09:54:17 PM,09/22/2014 09:55:33 PM,09/22/2014 10:00:04 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Code 2 Transport,09/22/2014 10:12:08 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",142653555-E13 -160930988,KM04,16036773,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:22:53 AM,04/02/2016 09:22:53 AM,04/02/2016 09:23:02 AM,04/02/2016 09:23:31 AM,04/02/2016 09:33:18 AM,04/02/2016 09:52:05 AM,04/02/2016 10:21:52 AM,Code 2 Transport,04/02/2016 10:55:48 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029378429, -122.415436837692)",160930988-KM04 -143623426,AM20,14129699,Medical Incident,12/28/2014,12/28/2014,12/28/2014 11:27:38 PM,12/28/2014 11:29:03 PM,12/28/2014 11:30:57 PM,12/28/2014 11:32:33 PM,12/28/2014 11:47:18 PM,12/28/2014 11:50:33 PM,12/29/2014 12:03:42 AM,Code 2 Transport,12/29/2014 12:50:42 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",143623426-AM20 -141533476,68,14052758,Medical Incident,06/02/2014,06/02/2014,06/02/2014 11:14:01 PM,06/02/2014 11:15:59 PM,06/02/2014 11:16:33 PM,06/02/2014 11:16:42 PM,06/02/2014 11:22:15 PM,06/02/2014 11:33:22 PM,06/02/2014 11:49:00 PM,Code 2 Transport,06/03/2014 12:09:31 AM,MARKET ST/MASON ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",141533476-68 -141170132,72,14039461,Medical Incident,04/27/2014,04/27/2014,04/27/2014 10:21:52 AM,04/27/2014 10:21:52 AM,04/27/2014 10:26:13 AM,04/27/2014 10:26:22 AM,04/27/2014 10:38:54 AM,04/27/2014 10:52:45 AM,04/27/2014 11:04:22 AM,Code 2 Transport,04/27/2014 11:31:18 AM,POLK ST/EDDY ST,SAN FRANCISCO,94109,B02,3,1643,,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",141170132-72 -141372142,77,14046976,Medical Incident,05/17/2014,05/17/2014,05/17/2014 02:55:54 PM,05/17/2014 02:56:27 PM,05/17/2014 02:57:33 PM,05/17/2014 02:57:48 PM,05/17/2014 03:08:14 PM,05/17/2014 03:21:06 PM,05/17/2014 03:29:16 PM,Code 3 Transport,05/17/2014 04:18:45 PM,300 Block of CHANNEL ST,San Francisco,94107,B03,8,2264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7690011760023, -122.399858835933)",141372142-77 -141283874,E03,14043711,Medical Incident,05/08/2014,05/08/2014,05/08/2014 11:10:22 PM,05/08/2014 11:11:29 PM,05/08/2014 11:13:54 PM,05/08/2014 11:16:00 PM,05/08/2014 11:18:06 PM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Code 2 Transport,05/08/2014 11:19:35 PM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",141283874-E03 -160943218,57,16037409,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:08:57 PM,04/03/2016 08:08:57 PM,04/03/2016 08:09:42 PM,04/03/2016 08:09:47 PM,04/03/2016 08:11:40 PM,04/03/2016 08:32:51 PM,04/03/2016 08:35:13 PM,Code 2 Transport,04/03/2016 09:19:21 PM,1000 Block of POST ST,San Francisco,94109,B02,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",160943218-57 -151690333,74,15064485,Medical Incident,06/18/2015,06/17/2015,06/18/2015 04:37:07 AM,06/18/2015 04:38:42 AM,06/18/2015 04:38:52 AM,06/18/2015 04:38:58 AM,06/18/2015 04:41:57 AM,06/18/2015 04:51:11 AM,06/18/2015 05:02:51 AM,Code 2 Transport,06/18/2015 05:59:38 AM,MARKET ST/ORD ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7611778870806, -122.440068662343)",151690333-74 -151321118,63,15050022,Medical Incident,05/12/2015,05/12/2015,05/12/2015 10:18:34 AM,05/12/2015 10:19:20 AM,05/12/2015 10:19:41 AM,05/12/2015 10:19:55 AM,05/12/2015 10:24:11 AM,05/12/2015 10:46:22 AM,05/12/2015 11:26:04 AM,Code 2 Transport,05/12/2015 12:04:39 PM,3200 Block of 16TH ST,San Francisco,94103,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7647550887451, -122.425483296322)",151321118-63 -160983681,AM18,16039109,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:04:28 PM,04/07/2016 09:07:22 PM,04/07/2016 09:08:05 PM,04/07/2016 09:08:39 PM,04/07/2016 09:12:18 PM,04/07/2016 09:24:54 PM,04/07/2016 09:55:58 PM,Code 2 Transport,04/07/2016 10:48:30 PM,200 Block of 6TH AVE,San Francisco,94118,B07,31,7125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7838629291068, -122.464557308337)",160983681-AM18 -160922304,55,16036500,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:43:15 PM,04/01/2016 03:43:15 PM,04/01/2016 03:52:30 PM,04/01/2016 03:52:30 PM,04/01/2016 04:04:01 PM,04/01/2016 04:16:29 PM,04/01/2016 05:13:20 PM,Code 2 Transport,04/01/2016 05:29:30 PM,JEFFERSON ST/TAYLOR ST,San Francisco,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.808214052974, -122.41580242723)",160922304-55 -160950417,63,16037519,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:52:31 AM,04/04/2016 05:53:22 AM,04/04/2016 05:53:28 AM,04/04/2016 05:53:41 AM,04/04/2016 05:59:39 AM,04/04/2016 06:19:59 AM,04/04/2016 06:44:52 AM,Code 2 Transport,04/04/2016 07:17:33 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160950417-63 -152642252,E42,15101118,Medical Incident,09/21/2015,09/21/2015,09/21/2015 01:43:16 PM,09/21/2015 01:43:59 PM,09/21/2015 01:44:23 PM,09/21/2015 01:45:32 PM,09/21/2015 01:47:33 PM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Code 2 Transport,09/21/2015 02:26:46 PM,2300 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7337296444249, -122.406425846236)",152642252-E42 -160990337,64,16039179,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:01:35 AM,04/08/2016 04:02:41 AM,04/08/2016 04:02:45 AM,04/08/2016 04:03:04 AM,04/08/2016 04:09:51 AM,04/08/2016 04:26:40 AM,04/08/2016 04:49:46 AM,Code 2 Transport,04/08/2016 05:46:22 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160990337-64 -160971811,AM10,16038406,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:16:47 PM,04/06/2016 12:18:43 PM,04/06/2016 12:20:23 PM,04/06/2016 12:21:01 PM,04/06/2016 12:29:20 PM,04/06/2016 12:40:56 PM,04/06/2016 12:55:23 PM,Code 2 Transport,04/06/2016 01:20:58 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160971811-AM10 -151050209,AM20,15039565,Medical Incident,04/15/2015,04/14/2015,04/15/2015 01:48:38 AM,04/15/2015 01:50:35 AM,04/15/2015 01:50:44 AM,04/15/2015 01:51:22 AM,04/15/2015 01:53:10 AM,04/15/2015 01:58:48 AM,04/15/2015 02:05:35 AM,Code 2 Transport,04/15/2015 02:45:51 AM,POLK ST/SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",151050209-AM20 -150780584,55,15029798,Traffic Collision,03/19/2015,03/18/2015,03/19/2015 06:35:07 AM,03/19/2015 06:36:34 AM,03/19/2015 06:37:01 AM,03/19/2015 06:37:07 AM,03/19/2015 06:46:07 AM,03/19/2015 07:09:22 AM,03/19/2015 07:41:21 AM,Code 2 Transport,03/19/2015 08:20:56 AM,JACKSON ST/COLUMBUS AV,San Francisco,94111,B01,13,1232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7963020974, -122.404412161982)",150780584-55 -142780098,73,14097645,Medical Incident,10/05/2014,10/04/2014,10/05/2014 12:23:59 AM,10/05/2014 12:27:07 AM,10/05/2014 12:27:28 AM,10/05/2014 12:27:47 AM,10/05/2014 12:36:08 AM,10/05/2014 12:43:32 AM,10/05/2014 12:51:05 AM,Code 2 Transport,10/05/2014 01:21:21 AM,MASONIC AV/TURK BL,San Francisco,94118,B05,10,4461,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7786223076413, -122.447039805009)",142780098-73 -152331969,52,15088837,Medical Incident,08/21/2015,08/21/2015,08/21/2015 01:10:31 PM,08/21/2015 01:11:37 PM,08/21/2015 01:12:10 PM,08/21/2015 01:12:23 PM,08/21/2015 01:21:31 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Patient Declined Transport,08/21/2015 01:27:56 PM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",152331969-52 -152414368,55,15092110,Traffic Collision,08/29/2015,08/29/2015,08/29/2015 11:36:41 PM,08/29/2015 11:37:50 PM,08/29/2015 11:38:26 PM,08/29/2015 11:38:32 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Code 3 Transport,08/29/2015 11:38:57 PM,MISSION ST/15TH ST,San Francisco,94103,B02,36,5279,3,A,2,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7666736014927, -122.419825235405)",152414368-55 -153423588,AM14,15131757,Medical Incident,12/08/2015,12/08/2015,12/08/2015 08:37:20 PM,12/08/2015 08:37:20 PM,12/08/2015 08:38:23 PM,12/08/2015 08:39:57 PM,12/08/2015 08:54:46 PM,12/08/2015 09:10:05 PM,12/08/2015 09:26:54 PM,Code 2 Transport,12/08/2015 10:05:38 PM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",153423588-AM14 -153001433,RC1,15115109,Medical Incident,10/27/2015,10/27/2015,10/27/2015 11:23:33 AM,10/27/2015 11:24:10 AM,10/27/2015 11:34:21 AM,10/27/2015 11:40:08 AM,10/27/2015 11:41:55 AM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Code 2 Transport,10/27/2015 11:52:18 AM,1300 Block of EDDY ST,San Francisco,94115,B05,5,3515,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,5,Western Addition,"(37.7816922947029, -122.429813826585)",153001433-RC1 -141682603,77,14058031,Structure Fire,06/17/2014,06/17/2014,06/17/2014 05:26:46 PM,06/17/2014 05:27:13 PM,06/17/2014 05:28:05 PM,06/17/2014 05:28:16 PM,06/17/2014 05:38:28 PM,06/17/2014 05:48:29 PM,06/17/2014 06:02:49 PM,Fire,06/17/2014 06:41:22 PM,1000 Block of JAMESTOWN AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Fire,1,MEDIC,9,10,10,Bayview Hunters Point,"(37.7190674314646, -122.394447939557)",141682603-77 -160973294,AM18,16038564,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:30:10 PM,04/06/2016 05:31:03 PM,04/06/2016 05:33:35 PM,04/06/2016 05:34:28 PM,04/06/2016 05:40:51 PM,04/06/2016 05:54:10 PM,04/06/2016 06:35:13 PM,Code 2 Transport,04/06/2016 07:06:29 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160973294-AM18 -152222401,B02,15084656,Alarms,08/10/2015,08/10/2015,08/10/2015 04:10:11 PM,08/10/2015 04:11:49 PM,08/10/2015 04:11:56 PM,08/10/2015 04:12:48 PM,08/10/2015 04:15:58 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Fire,08/10/2015 04:20:12 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",152222401-B02 -141353126,D2,14046299,Structure Fire,05/15/2014,05/15/2014,05/15/2014 06:18:58 PM,05/15/2014 06:19:39 PM,05/15/2014 06:20:05 PM,05/15/2014 06:21:39 PM,05/15/2014 06:21:39 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/15/2014 06:38:43 PM,1500 Block of 10TH AVE,San Francisco,94122,B08,22,7344,3,3,3,false,Fire,1,CHIEF,1,8,7,Inner Sunset,"(37.7593341109976, -122.466988064549)",141353126-D2 -142391998,E13,14083140,Structure Fire,08/27/2014,08/27/2014,08/27/2014 02:32:06 PM,08/27/2014 02:32:06 PM,08/27/2014 02:32:12 PM,08/27/2014 02:32:45 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Fire,08/27/2014 02:36:01 PM,0 Block of KEARNY ST,San Francisco,94108,B01,1,1241,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7877942875414, -122.403529728368)",142391998-E13 -150920194,E07,15034818,Medical Incident,04/02/2015,04/01/2015,04/02/2015 02:01:30 AM,04/02/2015 02:01:30 AM,04/02/2015 02:08:26 AM,04/02/2015 02:09:51 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/02/2015 02:10:53 AM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7594381240168, -122.419060339091)",150920194-E07 -152831319,T12,15108632,Elevator / Escalator Rescue,10/10/2015,10/10/2015,10/10/2015 10:17:29 AM,10/10/2015 10:18:50 AM,10/10/2015 10:19:19 AM,10/10/2015 10:19:38 AM,10/10/2015 10:21:41 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Fire,10/10/2015 10:26:28 AM,500 Block of PARNASSUS AVE,San Francisco,94122,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",152831319-T12 -152521512,AM08,15096302,Medical Incident,09/09/2015,09/09/2015,09/09/2015 11:29:48 AM,09/09/2015 11:30:23 AM,09/09/2015 11:31:16 AM,09/09/2015 11:31:16 AM,09/09/2015 11:45:29 AM,09/09/2015 12:00:24 PM,09/09/2015 12:15:16 PM,Code 2 Transport,09/09/2015 12:53:19 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7867794977083, -122.450948438002)",152521512-AM08 -150172418,E03,15006783,Structure Fire,01/17/2015,01/17/2015,01/17/2015 04:23:42 PM,01/17/2015 04:24:39 PM,01/17/2015 04:24:52 PM,01/17/2015 04:35:35 PM,01/17/2015 04:38:01 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Fire,01/17/2015 05:14:58 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",150172418-E03 -143222025,72,14114046,Medical Incident,11/18/2014,11/18/2014,11/18/2014 02:32:19 PM,11/18/2014 02:32:52 PM,11/18/2014 02:34:40 PM,11/18/2014 02:34:40 PM,11/18/2014 02:38:11 PM,11/18/2014 02:57:17 PM,11/18/2014 02:58:13 PM,Code 2 Transport,11/18/2014 03:31:21 PM,1000 Block of HYDE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7905005141181, -122.417366417694)",143222025-72 -151740726,KM06,15066298,Medical Incident,06/23/2015,06/23/2015,06/23/2015 08:10:21 AM,06/23/2015 08:12:53 AM,06/23/2015 08:13:18 AM,06/23/2015 08:14:22 AM,06/23/2015 08:22:40 AM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Patient Declined Transport,06/23/2015 09:23:15 AM,GREAT HY/NORIEGA ST,San Francisco,94122,B08,23,7725,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7528302279051, -122.508432394418)",151740726-KM06 -160951633,AM08,16037611,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:13:47 PM,04/04/2016 12:14:45 PM,04/04/2016 12:15:53 PM,04/04/2016 12:16:58 PM,04/04/2016 12:19:18 PM,04/04/2016 12:41:16 PM,04/04/2016 01:10:09 PM,Code 2 Transport,04/04/2016 01:34:35 PM,FILLMORE ST/MCALLISTER ST,San Francisco,94115,B05,5,3534,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.778632035975, -122.431763221514)",160951633-AM08 -142011503,KM12,14069568,Medical Incident,07/20/2014,07/20/2014,07/20/2014 01:14:20 PM,07/20/2014 01:14:51 PM,07/20/2014 01:17:03 PM,07/20/2014 01:17:03 PM,07/20/2014 01:34:58 PM,07/20/2014 02:11:46 PM,07/20/2014 02:22:12 PM,Code 2 Transport,07/20/2014 03:49:33 PM,8100 Block of OCEANVIEW TER,San Francisco,94132,B09,33,8412,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",142011503-KM12 -152012729,E38,15076696,Structure Fire,07/20/2015,07/20/2015,07/20/2015 05:00:19 PM,07/20/2015 05:00:58 PM,07/20/2015 05:01:36 PM,07/20/2015 05:02:23 PM,07/20/2015 05:09:45 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Fire,07/20/2015 05:10:03 PM,1300 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,false,Alarm,1,ENGINE,7,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",152012729-E38 -160932652,67,16036962,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:20:13 PM,04/02/2016 05:20:13 PM,04/02/2016 05:29:37 PM,04/02/2016 05:29:44 PM,04/02/2016 05:35:47 PM,04/02/2016 05:49:17 PM,04/02/2016 06:19:19 PM,Code 2 Transport,04/02/2016 06:57:38 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160932652-67 -142443538,T17,14085198,Citizen Assist / Service Call,09/01/2014,09/01/2014,09/01/2014 10:43:22 PM,09/01/2014 10:44:20 PM,09/01/2014 10:44:32 PM,09/01/2014 10:46:34 PM,09/01/2014 10:51:26 PM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/01/2014 11:01:03 PM,400 Block of GIRARD ST,San Francisco,94134,B10,42,6333,3,3,3,false,Alarm,1,TRUCK,1,10,9,Portola,"(37.7267567260002, -122.404413040087)",142443538-T17 -160981477,89,16038878,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:08:21 AM,04/07/2016 11:08:21 AM,04/07/2016 11:09:36 AM,04/07/2016 11:10:00 AM,04/07/2016 11:15:47 AM,04/07/2016 11:47:39 AM,04/07/2016 12:13:46 PM,Other,04/07/2016 12:58:11 PM,19TH AV/GEARY BL,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7803811907228, -122.47830487835)",160981477-89 -142861026,AM08,14100768,Medical Incident,10/13/2014,10/13/2014,10/13/2014 09:43:11 AM,10/13/2014 09:43:11 AM,10/13/2014 09:43:33 AM,10/13/2014 09:44:05 AM,10/13/2014 09:50:56 AM,10/13/2014 10:06:58 AM,10/13/2014 10:17:05 AM,Code 2 Transport,10/13/2014 10:50:48 AM,5TH ST/MARKET ST,San Francisco,94103,B02,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",142861026-AM08 -141250090,T03,14042266,Alarms,05/05/2014,05/04/2014,05/05/2014 07:39:25 AM,05/05/2014 07:41:17 AM,05/05/2014 07:44:01 AM,05/05/2014 07:49:27 AM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 07:54:42 AM,600 Block of SUTTER ST,SAN FRANCISCO,94102,B01,3,1412,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",141250090-T03 -142491415,E01,14086774,Medical Incident,09/06/2014,09/06/2014,09/06/2014 11:36:22 AM,09/06/2014 11:37:51 AM,09/06/2014 11:38:16 AM,09/06/2014 11:38:56 AM,09/06/2014 11:43:07 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/06/2014 11:59:42 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142491415-E01 -143311834,88,14117417,Medical Incident,11/27/2014,11/27/2014,11/27/2014 03:59:52 PM,11/27/2014 03:59:52 PM,11/27/2014 04:07:15 PM,11/27/2014 04:07:55 PM,11/27/2014 04:07:55 PM,11/27/2014 04:15:21 PM,11/27/2014 04:21:49 PM,Other,11/27/2014 04:30:48 PM,GUERRERO ST/16TH ST,San Francisco,94103,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,8,Mission,"(37.7647834522541, -122.424102685064)",143311834-88 -151500131,58,15056941,Medical Incident,05/30/2015,05/29/2015,05/30/2015 12:51:30 AM,05/30/2015 12:53:14 AM,05/30/2015 12:54:02 AM,05/30/2015 12:55:42 AM,05/30/2015 01:02:57 AM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,No Merit,05/30/2015 01:57:06 AM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",151500131-58 -152112001,74,15080389,Medical Incident,07/30/2015,07/30/2015,07/30/2015 02:22:08 PM,07/30/2015 02:22:52 PM,07/30/2015 02:24:05 PM,07/30/2015 02:24:29 PM,07/30/2015 02:26:42 PM,04/25/2016 01:09:11 PM,04/25/2016 01:09:11 PM,No Merit,07/30/2015 02:28:58 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",152112001-74 -150052021,57,15001890,Medical Incident,01/05/2015,01/05/2015,01/05/2015 02:11:03 PM,01/05/2015 02:11:56 PM,01/05/2015 02:12:43 PM,01/05/2015 02:12:54 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Fire,01/05/2015 02:20:34 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Western Addition,"(37.782522418285, -122.423274430962)",150052021-57 -152532119,E28,15096754,Alarms,09/10/2015,09/10/2015,09/10/2015 02:11:03 PM,09/10/2015 02:12:09 PM,09/10/2015 02:13:33 PM,09/10/2015 02:14:02 PM,09/10/2015 02:17:35 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Fire,09/10/2015 02:22:44 PM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,3,3,3,false,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8038770970726, -122.404157077302)",152532119-E28 -141753409,T03,14060544,Alarms,06/24/2014,06/24/2014,06/24/2014 10:17:37 PM,06/24/2014 10:19:36 PM,06/24/2014 10:19:42 PM,06/24/2014 10:22:57 PM,06/24/2014 10:22:57 PM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,Fire,06/24/2014 10:27:14 PM,400 Block of MASON ST,San Francisco,94102,B01,3,1411,3,3,3,false,Alarm,1,TRUCK,2,1,3,Tenderloin,"(37.7877640990096, -122.409925328419)",141753409-T03 -160983812,73,16039121,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:49:59 PM,04/07/2016 09:52:04 PM,04/07/2016 09:52:35 PM,04/07/2016 09:52:42 PM,04/07/2016 09:57:44 PM,04/07/2016 10:09:27 PM,04/07/2016 10:16:48 PM,Code 2 Transport,04/07/2016 10:54:41 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160983812-73 -143031227,85,14107042,Medical Incident,10/30/2014,10/30/2014,10/30/2014 09:00:21 AM,10/30/2014 09:03:55 AM,10/30/2014 09:04:28 AM,10/30/2014 09:04:44 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Patient Declined Transport,10/30/2014 09:13:17 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",143031227-85 -160941831,57,16037261,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:06:40 PM,04/03/2016 01:08:22 PM,04/03/2016 01:11:45 PM,04/03/2016 01:12:20 PM,04/03/2016 01:26:30 PM,04/03/2016 01:53:49 PM,04/03/2016 02:20:04 PM,Code 2 Transport,04/03/2016 03:01:48 PM,1500 Block of 19TH AVE,San Francisco,94122,B08,22,7423,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7589078873421, -122.476606690049)",160941831-57 -160951307,82,16037584,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:54:30 AM,04/04/2016 10:55:56 AM,04/04/2016 10:56:36 AM,04/04/2016 10:56:41 AM,04/04/2016 11:00:36 AM,04/04/2016 11:25:48 AM,04/04/2016 11:53:54 AM,Code 2 Transport,04/04/2016 11:58:05 AM,700 Block of 21ST AVE,San Francisco,94121,B07,14,7167,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7736958053498, -122.480041380237)",160951307-82 -150231563,85,15008906,Medical Incident,01/23/2015,01/23/2015,01/23/2015 12:32:56 PM,01/23/2015 12:35:01 PM,01/23/2015 12:35:35 PM,01/23/2015 12:35:46 PM,01/23/2015 12:48:02 PM,01/23/2015 01:05:12 PM,01/23/2015 01:45:43 PM,Code 2 Transport,01/23/2015 02:23:19 PM,700 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7841058563108, -122.401539484586)",150231563-85 -150063785,T03,15002494,Structure Fire,01/06/2015,01/06/2015,01/06/2015 10:59:18 PM,01/06/2015 10:59:18 PM,01/06/2015 10:59:41 PM,01/06/2015 11:01:11 PM,01/06/2015 11:02:16 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Fire,01/06/2015 11:02:45 PM,600 Block of LARKIN ST,San Francisco,94109,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",150063785-T03 -150741138,62,15028343,Medical Incident,03/15/2015,03/15/2015,03/15/2015 09:28:00 AM,03/15/2015 09:28:36 AM,03/15/2015 09:30:23 AM,03/15/2015 09:30:35 AM,03/15/2015 09:34:37 AM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Cancelled,03/15/2015 09:42:34 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",150741138-62 -152010079,55,15076442,Water Rescue,07/20/2015,07/19/2015,07/20/2015 12:34:22 AM,07/20/2015 12:36:12 AM,07/20/2015 01:52:59 AM,07/20/2015 01:55:05 AM,07/20/2015 02:02:46 AM,07/20/2015 02:17:22 AM,07/20/2015 02:51:51 AM,Code 2 Transport,07/20/2015 04:06:15 AM,3200 Block of CLEMENT ST,San Francisco,94121,B07,34,7247,3,3,3,true,Fire,1,MEDIC,6,7,1,Lincoln Park,"(37.781656621504, -122.493997393675)",152010079-55 -153172904,KM04,15121933,Medical Incident,11/13/2015,11/13/2015,11/13/2015 04:46:41 PM,11/13/2015 04:48:08 PM,11/13/2015 05:03:37 PM,11/13/2015 05:04:14 PM,11/13/2015 05:22:36 PM,11/13/2015 05:44:39 PM,11/13/2015 06:18:35 PM,Code 2 Transport,11/13/2015 06:36:02 PM,1200 Block of HAYES ST,San Francisco,94117,B05,21,4136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7751531661488, -122.436974886082)",153172904-KM04 -160953075,AM08,16037738,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:02:32 PM,04/04/2016 06:02:32 PM,04/04/2016 06:04:04 PM,04/04/2016 06:04:47 PM,04/04/2016 06:13:14 PM,04/04/2016 06:26:40 PM,04/04/2016 06:44:21 PM,Code 2 Transport,04/04/2016 07:02:56 PM,800 Block of THE EMBARCADERO,San Francisco,94111,B01,13,919,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",160953075-AM08 -150561724,AM02,15021422,Medical Incident,02/25/2015,02/25/2015,02/25/2015 12:36:53 PM,02/25/2015 12:38:06 PM,02/25/2015 12:39:46 PM,02/25/2015 12:40:30 PM,02/25/2015 12:43:52 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Patient Declined Transport,02/25/2015 01:30:14 PM,400 Block of MISSION BAY BLVD,San Francisco,94158,B03,8,2231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7706546223516, -122.388603730121)",150561724-AM02 -152943469,89,15113130,Medical Incident,10/21/2015,10/21/2015,10/21/2015 08:13:32 PM,10/21/2015 08:14:07 PM,10/21/2015 08:14:48 PM,10/21/2015 08:14:55 PM,10/21/2015 08:17:24 PM,10/21/2015 08:26:27 PM,10/21/2015 08:50:22 PM,Code 2 Transport,10/21/2015 09:39:50 PM,FILLMORE ST/PINE ST,San Francisco,94115,B04,38,3543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7879502707315, -122.433647123974)",152943469-89 -153360587,T09,15129121,Structure Fire,12/02/2015,12/01/2015,12/02/2015 07:32:49 AM,12/02/2015 07:34:34 AM,12/02/2015 07:35:05 AM,12/02/2015 07:38:19 AM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,Fire,12/02/2015 07:43:30 AM,1500 Block of UNDERWOOD AVE,San Francisco,94124,B10,17,6547,3,3,3,false,Alarm,1,TRUCK,6,10,10,Bayview Hunters Point,"(37.7293017723841, -122.390876776583)",153360587-T09 -160980991,63,16038824,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 08:50:58 AM,04/07/2016 08:50:58 AM,04/07/2016 08:51:21 AM,04/07/2016 08:51:30 AM,04/07/2016 08:59:44 AM,04/07/2016 09:10:04 AM,04/07/2016 09:30:02 AM,Code 2 Transport,04/07/2016 10:10:25 AM,SAINT JOSEPHS AV/GEARY BL,San Francisco,94115,B05,10,4261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7828853346645, -122.442793100058)",160980991-63 -142263463,T09,14078654,Structure Fire,08/14/2014,08/14/2014,08/14/2014 09:41:27 PM,08/14/2014 09:43:08 PM,08/14/2014 09:43:27 PM,08/14/2014 09:44:25 PM,08/14/2014 09:50:49 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 3 Transport,08/15/2014 01:22:41 AM,100 Block of SALINAS AVE,San Francisco,94124,B10,44,6542,3,3,3,false,Fire,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7210792704616, -122.398297307951)",142263463-T09 -150942693,T03,15035822,Medical Incident,04/04/2015,04/04/2015,04/04/2015 05:34:01 PM,04/04/2015 05:36:07 PM,04/04/2015 05:36:19 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 05:37:49 PM,GEARY ST/LEAVENWORTH ST,San Francisco,94109,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",150942693-T03 -160931136,88,16036787,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:06:06 AM,04/02/2016 10:07:32 AM,04/02/2016 10:09:43 AM,04/02/2016 10:10:16 AM,04/02/2016 10:20:39 AM,04/02/2016 10:29:03 AM,04/02/2016 10:58:50 AM,Code 2 Transport,04/02/2016 11:24:25 AM,900 Block of AVENUE B,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8249592142354, -122.375953739895)",160931136-88 -152161248,E15,15082185,Medical Incident,08/04/2015,08/04/2015,08/04/2015 10:59:02 AM,08/04/2015 11:00:08 AM,08/04/2015 11:00:28 AM,08/04/2015 11:00:47 AM,08/04/2015 11:01:45 AM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Patient Declined Transport,08/04/2015 11:05:16 AM,100 Block of PHELAN AVE,San Francisco,94112,B09,15,8233,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",152161248-E15 -152770823,E35,15106119,Alarms,10/04/2015,10/03/2015,10/04/2015 07:33:45 AM,10/04/2015 07:35:09 AM,10/04/2015 07:35:27 AM,10/04/2015 07:36:42 AM,10/04/2015 07:38:31 AM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Fire,10/04/2015 07:47:30 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",152770823-E35 -160981015,85,16038825,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:53:31 AM,04/07/2016 08:55:38 AM,04/07/2016 08:56:03 AM,04/07/2016 08:56:10 AM,04/07/2016 09:17:11 AM,04/07/2016 09:17:12 AM,04/07/2016 10:12:42 AM,Code 2 Transport,04/07/2016 10:44:35 AM,5600 Block of MISSION ST,San Francisco,94112,B09,33,6211,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7111379399076, -122.447066438218)",160981015-85 -142000992,E03,14069180,Medical Incident,07/19/2014,07/19/2014,07/19/2014 09:51:51 AM,07/19/2014 09:51:51 AM,07/19/2014 11:28:33 AM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Code 2 Transport,07/19/2014 11:28:39 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",142000992-E03 -142131445,KM07,14073819,Medical Incident,08/01/2014,08/01/2014,08/01/2014 11:41:52 AM,08/01/2014 11:45:04 AM,08/01/2014 11:46:17 AM,08/01/2014 11:47:03 AM,08/01/2014 11:52:47 AM,08/01/2014 12:20:46 PM,08/01/2014 12:46:27 PM,Code 2 Transport,08/01/2014 01:19:16 PM,400 Block of 36TH AVE,San Francisco,94121,B07,34,7247,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7812627112203, -122.49657494575)",142131445-KM07 -160953612,AM20,16037792,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 08:38:06 PM,04/04/2016 08:38:06 PM,04/04/2016 08:39:00 PM,04/04/2016 08:40:07 PM,04/04/2016 08:52:52 PM,04/04/2016 08:59:11 PM,04/04/2016 09:26:31 PM,Code 2 Transport,04/04/2016 09:58:13 PM,GEARY BL/32ND AV,San Francisco,94121,B07,14,7237,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7797469488678, -122.492232287419)",160953612-AM20 -142502288,E32,14087244,Medical Incident,09/07/2014,09/07/2014,09/07/2014 03:52:12 PM,09/07/2014 03:53:38 PM,09/07/2014 03:54:33 PM,09/07/2014 03:56:17 PM,09/07/2014 03:58:15 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Code 2 Transport,09/07/2014 04:06:36 PM,0 Block of ROSCOE ST,San Francisco,94110,B06,32,5644,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7344958957101, -122.4187013488)",142502288-E32 -141711695,E33,14059055,Medical Incident,06/20/2014,06/20/2014,06/20/2014 01:02:51 PM,06/20/2014 01:04:49 PM,06/20/2014 01:05:42 PM,06/20/2014 01:07:13 PM,06/20/2014 01:08:17 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Code 2 Transport,06/20/2014 01:30:27 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7131061953593, -122.460796179398)",141711695-E33 -160931858,KM09,16036873,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 01:39:00 PM,04/02/2016 01:39:00 PM,04/02/2016 01:41:39 PM,04/02/2016 01:42:16 PM,04/02/2016 02:05:20 PM,04/02/2016 02:40:18 PM,04/02/2016 02:55:18 PM,Other,04/02/2016 03:46:57 PM,700 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Mission,"(37.760896938598, -122.421570792932)",160931858-KM09 -152230248,E03,15084838,Medical Incident,08/11/2015,08/10/2015,08/11/2015 02:35:14 AM,08/11/2015 02:35:42 AM,08/11/2015 02:36:53 AM,08/11/2015 02:39:09 AM,08/11/2015 02:41:25 AM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Code 3 Transport,08/11/2015 02:46:27 AM,1100 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7903887572034, -122.414938763678)",152230248-E03 -141344261,B01,14045964,Alarms,05/14/2014,05/14/2014,05/14/2014 11:16:00 PM,05/14/2014 11:18:16 PM,05/14/2014 11:19:35 PM,05/14/2014 11:21:04 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/14/2014 11:22:55 PM,400 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7912932514009, -122.398614610411)",141344261-B01 -160960406,AM02,16037890,Medical Incident,04/05/2016,04/04/2016,04/05/2016 06:00:25 AM,04/05/2016 06:00:25 AM,04/05/2016 06:01:34 AM,04/05/2016 06:02:16 AM,04/05/2016 06:23:42 AM,04/05/2016 06:23:43 AM,04/05/2016 06:36:05 AM,Code 2 Transport,04/05/2016 07:07:24 AM,400 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7991347204832, -122.408396415403)",160960406-AM02 -152912955,85,15111930,Medical Incident,10/18/2015,10/18/2015,10/18/2015 06:50:17 PM,10/18/2015 06:51:27 PM,10/18/2015 06:52:05 PM,10/18/2015 06:52:22 PM,10/18/2015 07:00:59 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Fire,10/18/2015 07:06:15 PM,0 Block of MIDDLEFIELD DR,San Francisco,94132,B08,19,8741,3,3,3,true,Non Life-threatening,1,MEDIC,3,8,7,Sunset/Parkside,"(37.7331941268924, -122.486407334912)",152912955-85 -150613855,AM24,15023482,Medical Incident,03/02/2015,03/02/2015,03/02/2015 11:03:28 PM,03/02/2015 11:05:29 PM,03/02/2015 11:06:29 PM,03/02/2015 11:08:01 PM,03/02/2015 11:19:34 PM,03/02/2015 11:29:40 PM,03/02/2015 11:53:51 PM,Code 2 Transport,03/03/2015 12:17:49 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",150613855-AM24 -143290553,77,14116573,Medical Incident,11/25/2014,11/24/2014,11/25/2014 06:56:29 AM,11/25/2014 06:57:54 AM,11/25/2014 07:01:22 AM,11/25/2014 07:01:22 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Gone on Arrival,11/25/2014 07:04:36 AM,300 Block of BERRY ST,San Francisco,94107,B03,8,2235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7731903116558, -122.396737748695)",143290553-77 -160991070,71,16039243,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:09:58 AM,04/08/2016 10:11:01 AM,04/08/2016 10:11:26 AM,04/08/2016 10:11:39 AM,04/08/2016 10:17:04 AM,04/08/2016 10:33:22 AM,04/08/2016 11:09:23 AM,Code 2 Transport,04/08/2016 11:29:25 AM,600 Block of SANSOME ST,San Francisco,94111,B01,13,1211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.79618119485, -122.401696308834)",160991070-71 -160921272,AM10,16036398,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:53:08 AM,04/01/2016 10:57:00 AM,04/01/2016 10:57:55 AM,04/01/2016 10:58:33 AM,04/01/2016 11:03:12 AM,04/01/2016 11:14:18 AM,04/01/2016 11:31:43 AM,Code 2 Transport,04/01/2016 11:52:44 AM,ALABAMA ST/23RD ST,San Francisco,94110,B06,7,5476,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7542867714777, -122.41112012571)",160921272-AM10 -150132387,FD00A,15005228,,01/13/2015,01/13/2015,01/13/2015 03:45:23 PM,01/13/2015 03:45:23 PM,01/13/2015 04:12:17 PM,01/13/2015 04:12:17 PM,01/13/2015 04:12:17 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Medical Examiner,01/13/2015 04:12:25 PM,300 Block of SPEAR ST,San Francisco,94105,B03,35,2113,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,4,3,6,Financial District/South Beach,"(37.7894150834446, -122.390249078414)",150132387-FD00A -141160359,E01,14039315,Medical Incident,04/26/2014,04/26/2014,04/26/2014 09:54:51 PM,04/26/2014 09:56:44 PM,04/26/2014 09:57:04 PM,04/26/2014 09:58:18 PM,04/26/2014 10:00:36 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Code 2 Transport,04/26/2014 10:03:30 PM,200 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",141160359-E01 -143371089,T03,14119471,Alarms,12/03/2014,12/03/2014,12/03/2014 08:47:44 AM,12/03/2014 08:49:03 AM,12/03/2014 08:49:15 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Other,12/03/2014 08:50:12 AM,2100 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Alarm,1,TRUCK,2,5,5,Japantown,"(37.7836030526522, -122.438694976295)",143371089-T03 -151862327,E35,15071086,Alarms,07/05/2015,07/05/2015,07/05/2015 03:44:15 PM,07/05/2015 03:45:40 PM,07/05/2015 03:46:07 PM,07/05/2015 03:47:20 PM,07/05/2015 03:50:25 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 04:23:42 PM,0 Block of FREMONT ST,San Francisco,94105,B03,35,2126,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7911273215916, -122.397428020134)",151862327-E35 -141592184,66,14054865,Medical Incident,06/08/2014,06/08/2014,06/08/2014 04:41:22 PM,06/08/2014 04:41:22 PM,06/08/2014 04:41:50 PM,06/08/2014 04:42:01 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Code 2 Transport,06/08/2014 04:43:52 PM,DOLORES ST/18TH ST,San Francisco,94110,B02,6,5251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,8,Mission,"(37.761427134441, -122.426076501845)",141592184-66 -150881778,E41,15033590,Medical Incident,03/29/2015,03/29/2015,03/29/2015 12:49:11 PM,03/29/2015 12:51:17 PM,03/29/2015 12:51:35 PM,03/29/2015 12:52:44 PM,03/29/2015 12:55:54 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Code 2 Transport,03/29/2015 01:07:00 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",150881778-E41 -152422349,E09,15092355,Odor (Strange / Unknown),08/30/2015,08/30/2015,08/30/2015 03:35:36 PM,08/30/2015 03:37:14 PM,08/30/2015 03:37:29 PM,08/30/2015 03:38:34 PM,08/30/2015 03:42:40 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 03:47:43 PM,500 Block of PERALTA AVE,San Francisco,94110,B06,9,5667,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7438941638531, -122.408571688527)",152422349-E09 -160951108,KM05,16037565,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:59:23 AM,04/04/2016 10:02:13 AM,04/04/2016 10:02:41 AM,04/04/2016 10:04:00 AM,04/04/2016 10:10:54 AM,04/04/2016 10:46:13 AM,04/04/2016 11:16:31 AM,Code 2 Transport,04/04/2016 11:52:15 AM,900 Block of OFARRELL ST,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848026049584, -122.420359587803)",160951108-KM05 -143220969,E38,14113948,Administrative,11/18/2014,11/18/2014,11/18/2014 09:33:01 AM,11/18/2014 09:33:05 AM,11/18/2014 09:33:36 AM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,No Merit,11/18/2014 09:34:15 AM,2100 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",143220969-E38 -152522073,63,15096339,Medical Incident,09/09/2015,09/09/2015,09/09/2015 01:43:50 PM,09/09/2015 01:43:50 PM,09/09/2015 01:44:35 PM,09/09/2015 01:45:17 PM,09/09/2015 01:53:21 PM,09/09/2015 02:06:49 PM,09/09/2015 03:07:43 PM,Code 2 Transport,09/09/2015 03:44:46 PM,POWELL ST/BEACH ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807690493217, -122.412329558798)",152522073-63 -160930025,53,16036669,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:07:33 AM,04/02/2016 12:10:10 AM,04/02/2016 12:10:24 AM,04/02/2016 12:10:47 AM,04/02/2016 12:15:10 AM,04/02/2016 12:26:56 AM,04/02/2016 12:42:01 AM,Code 3 Transport,04/02/2016 01:29:14 AM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800574377607, -122.408673540372)",160930025-53 -142041281,AM06,14070571,Medical Incident,07/23/2014,07/23/2014,07/23/2014 10:40:26 AM,07/23/2014 10:41:29 AM,07/23/2014 10:43:55 AM,07/23/2014 10:43:55 AM,07/23/2014 10:47:58 AM,07/23/2014 10:52:56 AM,07/23/2014 11:00:04 AM,Code 3 Transport,07/23/2014 11:32:40 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2245,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,South of Market,"(37.7791674218963, -122.406346425632)",142041281-AM06 -152030348,E12,15077204,Medical Incident,07/22/2015,07/21/2015,07/22/2015 04:12:48 AM,07/22/2015 04:13:08 AM,07/22/2015 04:13:39 AM,07/22/2015 04:15:27 AM,07/22/2015 04:19:49 AM,04/25/2016 01:09:20 PM,04/25/2016 01:09:20 PM,Code 2 Transport,07/22/2015 04:22:01 AM,1300 Block of JUDAH ST,San Francisco,94122,B08,22,7371,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,8,7,Inner Sunset,"(37.7616274581117, -122.476456989325)",152030348-E12 -152730173,T12,15104353,Structure Fire,09/30/2015,09/29/2015,09/30/2015 01:52:47 AM,09/30/2015 01:52:47 AM,09/30/2015 01:54:44 AM,09/30/2015 01:57:01 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 02:00:45 AM,WOODSIDE AV/BALCETA AV,San Francisco,94127,B08,39,8645,3,3,3,false,Alarm,1,TRUCK,2,8,7,Twin Peaks,"(37.7465304469553, -122.456314707116)",152730173-T12 -160962094,66,16038038,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:59:41 PM,04/05/2016 02:02:43 PM,04/05/2016 02:03:25 PM,04/05/2016 02:03:41 PM,04/05/2016 02:29:40 PM,04/05/2016 02:50:17 PM,04/05/2016 03:15:25 PM,Code 2 Transport,04/05/2016 03:52:14 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160962094-66 -160952778,KM04,16037710,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:44:15 PM,04/04/2016 04:45:57 PM,04/04/2016 04:49:25 PM,04/04/2016 04:50:38 PM,04/04/2016 05:24:09 PM,04/04/2016 05:24:18 PM,04/04/2016 05:36:21 PM,Code 2 Transport,04/04/2016 06:16:05 PM,HAYES ST/VAN NESS AV,San Francisco,94102,B02,36,3166,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7772998560434, -122.419693565739)",160952778-KM04 -142940018,81,14103534,Medical Incident,10/21/2014,10/20/2014,10/21/2014 12:07:25 AM,10/21/2014 12:12:09 AM,10/21/2014 12:12:27 AM,10/21/2014 12:12:41 AM,10/21/2014 12:18:13 AM,10/21/2014 12:32:16 AM,10/21/2014 12:59:28 AM,Code 2 Transport,10/21/2014 01:31:34 AM,2000 Block of RIVERA ST,San Francisco,94116,B08,18,7521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7461811267761, -122.488267468509)",142940018-81 -150872233,FD00A,15033256,,03/28/2015,03/28/2015,03/28/2015 03:01:52 PM,03/28/2015 03:02:02 PM,03/28/2015 03:07:29 PM,03/28/2015 03:07:29 PM,03/28/2015 03:07:29 PM,04/25/2016 01:11:28 PM,04/25/2016 01:11:28 PM,Fire,03/28/2015 03:07:36 PM,2700 Block of 25TH ST,San Francisco,94110,B10,9,2624,3,3,3,false,Alarm,1,SUPPORT,2,10,10,Mission,"(37.7517018091907, -122.405708343282)",150872233-FD00A -143380484,E06,14119843,Medical Incident,12/04/2014,12/03/2014,12/04/2014 05:59:40 AM,12/04/2014 06:01:07 AM,12/04/2014 06:01:49 AM,12/04/2014 06:03:54 AM,12/04/2014 06:05:28 AM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,Code 2 Transport,12/04/2014 06:25:50 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",143380484-E06 -160961481,KM05,16037981,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:38:09 AM,04/05/2016 11:38:52 AM,04/05/2016 11:39:19 AM,04/05/2016 11:40:02 AM,04/05/2016 11:52:25 AM,04/05/2016 11:59:50 AM,04/05/2016 12:20:08 PM,Code 3 Transport,04/05/2016 01:42:08 PM,700 Block of LONG BRIDGE ST,San Francisco,94158,B03,4,2264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7713904956713, -122.394161419191)",160961481-KM05 -142761726,74,14096896,Traffic Collision,10/03/2014,10/03/2014,10/03/2014 12:19:46 PM,10/03/2014 12:19:46 PM,10/03/2014 12:20:12 PM,10/03/2014 12:20:19 PM,10/03/2014 12:27:49 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Patient Declined Transport,10/03/2014 01:23:58 PM,CLARENCE PL/TOWNSEND ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7792774525634, -122.392210657717)",142761726-74 -153142055,E14,15120685,Alarms,11/10/2015,11/10/2015,11/10/2015 01:53:45 PM,11/10/2015 01:55:27 PM,11/10/2015 01:55:39 PM,11/10/2015 01:56:49 PM,11/10/2015 01:59:41 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Fire,11/10/2015 02:09:13 PM,400 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7232,3,3,3,true,Alarm,1,ENGINE,1,7,2,Seacliff,"(37.7875603847719, -122.487923755449)",153142055-E14 -151102636,KM10,15041699,Medical Incident,04/20/2015,04/20/2015,04/20/2015 04:41:11 PM,04/20/2015 04:44:08 PM,04/20/2015 04:55:42 PM,04/20/2015 04:58:02 PM,04/20/2015 05:14:25 PM,04/20/2015 05:21:53 PM,04/20/2015 05:39:48 PM,Code 2 Transport,04/20/2015 06:12:06 PM,100 Block of DRUMM ST,San Francisco,94111,B01,13,1115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",151102636-KM10 -152862548,E36,15109922,Medical Incident,10/13/2015,10/13/2015,10/13/2015 03:15:11 PM,10/13/2015 03:15:38 PM,10/13/2015 03:15:58 PM,10/13/2015 03:17:23 PM,10/13/2015 03:20:21 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,Code 2 Transport,10/13/2015 03:20:59 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",152862548-E36 -152720251,62,15104007,Medical Incident,09/29/2015,09/28/2015,09/29/2015 02:44:07 AM,09/29/2015 02:45:16 AM,09/29/2015 02:45:46 AM,09/29/2015 02:49:14 AM,09/29/2015 02:51:40 AM,09/29/2015 03:18:59 AM,09/29/2015 03:26:33 AM,Code 2 Transport,09/29/2015 03:58:04 AM,SAN JOSE AV/GENEVA AV,San Francisco,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",152720251-62 -160972090,53,16038429,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:14:26 PM,04/06/2016 01:19:16 PM,04/06/2016 01:19:47 PM,04/06/2016 01:19:59 PM,04/06/2016 01:23:15 PM,04/06/2016 01:44:00 PM,04/06/2016 01:49:18 PM,Code 3 Transport,04/06/2016 02:46:28 PM,400 Block of LARKIN ST,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",160972090-53 -143081899,E03,14109004,Medical Incident,11/04/2014,11/04/2014,11/04/2014 01:40:38 PM,11/04/2014 01:40:38 PM,11/04/2014 01:41:11 PM,11/04/2014 01:42:36 PM,11/04/2014 01:44:16 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 01:53:13 PM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",143081899-E03 -152681819,E06,15102680,Structure Fire,09/25/2015,09/25/2015,09/25/2015 01:04:32 PM,09/25/2015 01:05:19 PM,09/25/2015 01:05:58 PM,09/25/2015 01:07:05 PM,09/25/2015 01:08:39 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 02:31:58 PM,900 Block of OAK ST,San Francisco,94117,B05,21,4141,3,3,3,true,Fire,1,ENGINE,3,5,5,Hayes Valley,"(37.7735018159169, -122.434940936471)",152681819-E06 -142961180,73,14104326,Medical Incident,10/23/2014,10/23/2014,10/23/2014 10:09:15 AM,10/23/2014 10:09:15 AM,10/23/2014 10:09:46 AM,10/23/2014 10:10:46 AM,10/23/2014 10:20:44 AM,10/23/2014 10:40:58 AM,10/23/2014 11:00:06 AM,Code 2 Transport,10/23/2014 11:53:06 AM,0 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7705968083436, -122.439656029792)",142961180-73 -160964143,AM14,16038218,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:06:50 PM,04/05/2016 11:10:17 PM,04/05/2016 11:10:56 PM,04/05/2016 11:11:47 PM,04/05/2016 11:18:20 PM,04/05/2016 11:38:58 PM,04/06/2016 12:00:18 AM,Code 2 Transport,04/06/2016 12:16:22 AM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",160964143-AM14 -160950729,AM02,16037545,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:24:54 AM,04/04/2016 08:25:16 AM,04/04/2016 08:25:49 AM,04/04/2016 08:26:21 AM,04/04/2016 08:32:42 AM,04/04/2016 08:49:11 AM,04/04/2016 09:03:11 AM,Other,04/04/2016 09:16:55 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160950729-AM02 -160943226,88,16037412,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:08:24 PM,04/03/2016 08:11:37 PM,04/03/2016 08:12:53 PM,04/03/2016 08:13:08 PM,04/03/2016 08:19:34 PM,04/03/2016 08:35:02 PM,04/03/2016 08:49:55 PM,Code 2 Transport,04/03/2016 09:46:13 PM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7867008144662, -122.393633802417)",160943226-88 -150373198,E01,15014482,Medical Incident,02/06/2015,02/06/2015,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Code 2 Transport,02/06/2015 08:15:15 PM,SHERMAN ST/FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7773996335317, -122.407014751383)",150373198-E01 -142450093,E03,14085224,Smoke Investigation (Outside),09/02/2014,09/01/2014,09/02/2014 12:49:05 AM,09/02/2014 12:49:05 AM,09/02/2014 12:49:25 AM,09/02/2014 12:51:01 AM,09/02/2014 12:58:11 AM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/02/2014 02:10:09 AM,MASON ST/MARKET ST,San Francisco,94103,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",142450093-E03 -160954081,85,16037827,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:05:42 PM,04/04/2016 11:06:01 PM,04/04/2016 11:06:10 PM,04/04/2016 11:06:19 PM,04/04/2016 11:11:38 PM,04/04/2016 11:34:44 PM,04/04/2016 11:40:27 PM,Code 2 Transport,04/05/2016 12:11:34 AM,900 Block of MCALLISTER ST,San Francisco,94115,B02,5,3425,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7791087021011, -122.42844880474)",160954081-85 -142393121,T10,14083242,Other,08/27/2014,08/27/2014,08/27/2014 07:23:06 PM,08/27/2014 07:24:54 PM,08/27/2014 07:25:28 PM,08/27/2014 07:26:44 PM,08/27/2014 07:29:24 PM,04/25/2016 01:15:25 PM,04/25/2016 01:15:25 PM,Fire,08/27/2014 07:38:06 PM,2300 Block of SUTTER ST,San Francisco,94115,B05,10,4155,3,3,3,false,Alarm,1,TRUCK,3,5,2,Pacific Heights,"(37.7854076725191, -122.439050444523)",142393121-T10 -160962829,56,16038099,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:53:32 PM,04/05/2016 04:54:25 PM,04/05/2016 04:54:44 PM,04/05/2016 04:55:07 PM,04/05/2016 05:01:14 PM,04/05/2016 05:33:28 PM,04/05/2016 06:06:30 PM,Code 2 Transport,04/05/2016 06:37:55 PM,3RD ST/OAKDALE AV,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",160962829-56 -160952572,KM12,16037687,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:54:23 PM,04/04/2016 03:55:10 PM,04/04/2016 03:55:43 PM,04/04/2016 03:56:16 PM,04/04/2016 04:09:18 PM,04/04/2016 04:19:26 PM,04/04/2016 04:47:22 PM,Code 2 Transport,04/04/2016 05:33:39 PM,1200 Block of NORTHPOINT DR,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",160952572-KM12 -143220250,E32,14113876,Medical Incident,11/18/2014,11/17/2014,11/18/2014 03:22:34 AM,11/18/2014 03:25:17 AM,11/18/2014 03:26:58 AM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,Code 2 Transport,11/18/2014 03:30:53 AM,3200 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",143220250-E32 -143092280,E28,14109423,Medical Incident,11/05/2014,11/05/2014,11/05/2014 03:40:49 PM,11/05/2014 03:42:33 PM,11/05/2014 03:44:48 PM,11/05/2014 03:46:49 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Code 2 Transport,11/05/2014 04:03:33 PM,0 Block of JEFFERSON ST,San Francisco,94133,B01,28,1344,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,North Beach,"(37.8084686918657, -122.4133334279)",143092280-E28 -141480711,D2,14050740,Structure Fire,05/28/2014,05/28/2014,05/28/2014 08:15:38 AM,05/28/2014 08:16:09 AM,05/28/2014 08:16:26 AM,05/28/2014 08:17:16 AM,05/28/2014 08:19:24 AM,04/25/2016 01:17:05 PM,04/25/2016 01:17:05 PM,Fire,05/28/2014 08:23:49 AM,0 Block of GALILEE LN,San Francisco,94115,B04,5,3365,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7837879620082, -122.428154523133)",141480711-D2 -152502128,E10,15095530,Medical Incident,09/07/2015,09/07/2015,09/07/2015 03:33:30 PM,09/07/2015 03:35:05 PM,09/07/2015 03:35:31 PM,09/07/2015 03:36:28 PM,09/07/2015 03:38:20 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Code 2 Transport,09/07/2015 03:44:15 PM,3600 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4436,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7862765427063, -122.454079603628)",152502128-E10 -141220226,E13,14041344,Alarms,05/02/2014,05/02/2014,05/02/2014 02:04:57 PM,05/02/2014 02:05:48 PM,05/02/2014 02:05:55 PM,05/02/2014 02:06:58 PM,05/02/2014 02:09:27 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 02:18:34 PM,800 Block of KEARNY ST,SAN FRANCISCO,94111,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.795777854883, -122.404981817889)",141220226-E13 -150443244,89,15017256,Medical Incident,02/13/2015,02/13/2015,02/13/2015 07:42:02 PM,02/13/2015 07:42:55 PM,02/13/2015 07:43:12 PM,02/13/2015 07:43:20 PM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,Code 2 Transport,02/13/2015 07:44:49 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",150443244-89 -160950533,88,16037526,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:02:38 AM,04/04/2016 07:06:34 AM,04/04/2016 07:07:03 AM,04/04/2016 07:07:40 AM,04/04/2016 07:25:55 AM,04/04/2016 07:47:48 AM,04/04/2016 08:09:04 AM,Code 2 Transport,04/04/2016 08:40:58 AM,300 Block of 20TH AVE,San Francisco,94121,B07,31,7164,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7813007244851, -122.479380199949)",160950533-88 -160993214,86,16039436,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:09:02 PM,04/08/2016 07:10:08 PM,04/08/2016 07:10:21 PM,04/08/2016 07:10:45 PM,04/08/2016 07:19:01 PM,04/08/2016 07:34:46 PM,04/08/2016 07:55:31 PM,Code 2 Transport,04/08/2016 08:41:45 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160993214-86 -143612454,60,14129229,Medical Incident,12/27/2014,12/27/2014,12/27/2014 04:58:23 PM,12/27/2014 04:58:42 PM,12/27/2014 05:01:19 PM,12/27/2014 05:01:23 PM,12/27/2014 05:05:03 PM,12/27/2014 05:20:04 PM,12/27/2014 05:57:29 PM,Code 2 Transport,12/27/2014 06:33:42 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",143612454-60 -153221494,88,15123836,Medical Incident,11/18/2015,11/18/2015,11/18/2015 11:05:53 AM,11/18/2015 11:07:35 AM,11/18/2015 11:08:09 AM,11/18/2015 11:08:50 AM,11/18/2015 11:11:43 AM,11/18/2015 11:27:50 AM,11/18/2015 11:39:48 AM,Code 2 Transport,11/18/2015 12:28:02 PM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",153221494-88 -152103490,RC2,15080147,Medical Incident,07/29/2015,07/29/2015,07/29/2015 08:34:25 PM,07/29/2015 08:36:09 PM,07/29/2015 08:37:10 PM,07/29/2015 08:37:36 PM,07/29/2015 08:51:00 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Code 2 Transport,07/29/2015 08:52:04 PM,DIVISADERO ST/MCALLISTER ST,San Francisco,94115,B05,21,4151,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,5,5,Western Addition,"(37.777794188731, -122.438365500073)",152103490-RC2 -142011064,KM06,14069522,Traffic Collision,07/20/2014,07/20/2014,07/20/2014 10:26:55 AM,07/20/2014 10:29:19 AM,07/20/2014 10:30:49 AM,07/20/2014 10:31:49 AM,07/20/2014 10:35:56 AM,07/20/2014 10:46:17 AM,07/20/2014 11:02:25 AM,Code 2 Transport,07/20/2014 11:24:41 AM,CLAY ST/STOCKTON ST,San Francisco,94108,B01,13,1313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7940602956144, -122.407903302006)",142011064-KM06 -151132218,FD00A,15042746,,04/23/2015,04/23/2015,04/23/2015 02:50:30 PM,04/23/2015 02:51:48 PM,04/23/2015 03:03:56 PM,04/23/2015 03:03:56 PM,04/23/2015 03:03:56 PM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Gone on Arrival,04/23/2015 03:04:17 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,SUPPORT,2,1,3,Chinatown,"(37.7977792275329, -122.407827984258)",151132218-FD00A -150661984,E06,15025256,Medical Incident,03/07/2015,03/07/2015,03/07/2015 02:06:24 PM,03/07/2015 02:06:40 PM,03/07/2015 02:06:53 PM,03/07/2015 02:07:38 PM,03/07/2015 02:09:37 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Code 2 Transport,03/07/2015 02:16:28 PM,DOUGLASS ST/MARKET ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7614245661086, -122.439413851523)",150661984-E06 -141160144,E08,14039125,Medical Incident,04/26/2014,04/26/2014,04/26/2014 10:30:55 AM,04/26/2014 10:32:46 AM,04/26/2014 10:33:05 AM,04/26/2014 10:34:06 AM,04/26/2014 10:38:49 AM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Patient Declined Transport,04/26/2014 10:49:10 AM,800 Block of 3RD ST,,94107,B03,8,2150,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",141160144-E08 -143261677,E03,14115489,Structure Fire,11/22/2014,11/22/2014,11/22/2014 12:18:26 PM,11/22/2014 12:21:42 PM,11/22/2014 12:22:23 PM,11/22/2014 12:22:49 PM,11/22/2014 12:24:00 PM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Fire,11/22/2014 12:45:33 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",143261677-E03 -160993639,55,16039478,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:25:01 PM,04/08/2016 09:26:19 PM,04/08/2016 09:26:34 PM,04/08/2016 09:26:46 PM,04/08/2016 09:40:59 PM,04/08/2016 10:40:26 PM,04/08/2016 10:55:09 PM,Code 2 Transport,04/08/2016 11:30:00 PM,7500 Block of GEARY BLVD,San Francisco,94121,B07,34,7264,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",160993639-55 -150611879,52,15023297,Medical Incident,03/02/2015,03/02/2015,03/02/2015 01:51:47 PM,03/02/2015 01:54:06 PM,03/02/2015 01:56:44 PM,03/02/2015 01:56:58 PM,04/25/2016 01:11:57 PM,04/25/2016 01:11:57 PM,04/25/2016 01:11:57 PM,Cancelled,03/02/2015 02:05:37 PM,1500 Block of UNION ST,San Francisco,94123,B04,16,3233,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7985022314582, -122.424814777884)",150611879-52 -160924056,76,16036661,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:52:04 PM,04/01/2016 11:55:21 PM,04/01/2016 11:56:30 PM,04/01/2016 11:56:53 PM,04/02/2016 12:01:28 AM,04/02/2016 12:14:08 AM,04/02/2016 12:23:00 AM,Code 2 Transport,04/02/2016 12:44:07 AM,CORDELIA ST/PACIFIC AV,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7966502963791, -122.408848570368)",160924056-76 -141050149,E07,14035383,Medical Incident,04/15/2014,04/15/2014,04/15/2014 11:33:44 AM,04/15/2014 11:34:16 AM,04/15/2014 11:34:38 AM,04/15/2014 11:35:30 AM,04/15/2014 11:37:37 AM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 11:49:50 AM,24TH ST/FOLSOM ST,SAN FRANCISCO,94110,B06,7,5526,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",141050149-E07 -141260191,58,14042706,Medical Incident,05/06/2014,05/06/2014,05/06/2014 11:45:27 AM,05/06/2014 11:47:06 AM,05/06/2014 11:48:32 AM,05/06/2014 11:48:37 AM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Code 2 Transport,05/06/2014 01:26:13 PM,400 Block of BAY ST,SAN FRANCISCO,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",141260191-58 -160972109,AM12,16038432,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:18:14 PM,04/06/2016 01:24:26 PM,04/06/2016 01:25:09 PM,04/06/2016 01:25:48 PM,04/06/2016 01:36:33 PM,04/06/2016 02:03:36 PM,04/06/2016 02:23:31 PM,Code 2 Transport,04/06/2016 02:59:03 PM,0 Block of PARKRIDGE DR,San Francisco,94131,B06,24,5283,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Twin Peaks,"(37.751152470811, -122.445668704285)",160972109-AM12 -160973753,KM11,16038626,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:09:04 PM,04/06/2016 07:10:35 PM,04/06/2016 07:15:01 PM,04/06/2016 07:15:43 PM,04/06/2016 07:24:34 PM,04/06/2016 07:47:02 PM,04/06/2016 08:05:33 PM,Code 3 Transport,04/06/2016 08:48:10 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160973753-KM11 -151382537,71,15052493,Citizen Assist / Service Call,05/18/2015,05/18/2015,05/18/2015 04:42:02 PM,05/18/2015 04:43:51 PM,05/18/2015 04:58:03 PM,05/18/2015 04:58:18 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Cancelled,05/18/2015 04:59:48 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,1262,3,3,3,true,Alarm,1,MEDIC,3,1,3,North Beach,"(37.8079416185562, -122.409855448992)",151382537-71 -151092454,RS2,15041348,Other,04/19/2015,04/19/2015,04/19/2015 04:48:23 PM,04/19/2015 04:50:22 PM,04/19/2015 04:53:05 PM,04/19/2015 04:55:49 PM,04/19/2015 05:03:51 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Fire,04/19/2015 05:29:46 PM,1000 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,false,Alarm,1,RESCUE SQUAD,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",151092454-RS2 -151081321,E43,15040867,Electrical Hazard,04/18/2015,04/18/2015,04/18/2015 10:42:33 AM,04/18/2015 10:44:19 AM,04/18/2015 10:44:31 AM,04/18/2015 10:44:50 AM,04/18/2015 10:47:00 AM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Fire,04/18/2015 10:49:01 AM,500 Block of MOSCOW ST,San Francisco,94112,B09,43,6156,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7189576969244, -122.42945072491)",151081321-E43 -161001050,KM12,16039689,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:50:26 AM,04/09/2016 09:53:09 AM,04/09/2016 09:53:34 AM,04/09/2016 09:54:06 AM,04/09/2016 09:57:38 AM,04/09/2016 10:08:58 AM,04/09/2016 10:27:17 AM,Code 2 Transport,04/09/2016 11:00:38 AM,1600 Block of SCOTT ST,San Francisco,94115,B04,10,4131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7849864733147, -122.438181369407)",161001050-KM12 -150882898,T14,15033706,Traffic Collision,03/29/2015,03/29/2015,03/29/2015 06:15:43 PM,03/29/2015 06:16:15 PM,03/29/2015 06:17:05 PM,03/29/2015 06:18:11 PM,03/29/2015 06:22:08 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Patient Declined Transport,03/29/2015 06:25:12 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",150882898-T14 -141541894,E13,14052949,Medical Incident,06/03/2014,06/03/2014,06/03/2014 02:00:14 PM,06/03/2014 02:01:01 PM,06/03/2014 02:01:56 PM,06/03/2014 02:02:41 PM,06/03/2014 02:04:50 PM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,Code 2 Transport,06/03/2014 02:11:51 PM,0 Block of BEALE ST,San Francisco,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7917404337271, -122.396647503187)",141541894-E13 -153470076,74,15133485,Medical Incident,12/13/2015,12/12/2015,12/13/2015 12:28:02 AM,12/13/2015 12:28:02 AM,12/13/2015 12:29:00 AM,12/13/2015 12:29:11 AM,12/13/2015 12:33:08 AM,12/13/2015 01:02:05 AM,12/13/2015 01:02:06 AM,Code 2 Transport,12/13/2015 02:06:34 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",153470076-74 -141190018,E36,14040023,Structure Fire,04/29/2014,04/28/2014,04/29/2014 01:46:43 AM,04/29/2014 01:46:43 AM,04/29/2014 01:46:53 AM,04/29/2014 01:48:35 AM,04/29/2014 01:51:35 AM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Fire,04/29/2014 01:53:43 AM,1100 Block of MARKET ST,,94102,B02,36,1552,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141190018-E36 -153392722,KM09,15130534,Medical Incident,12/05/2015,12/05/2015,12/05/2015 04:53:33 PM,12/05/2015 04:54:42 PM,12/05/2015 04:55:34 PM,12/05/2015 04:56:15 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Code 2 Transport,12/05/2015 04:56:57 PM,MARKET ST/MONTGOMERY ST,San Francisco,94105,B01,13,1236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",153392722-KM09 -160942938,53,16037374,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:32:34 PM,04/03/2016 06:33:02 PM,04/03/2016 06:33:18 PM,04/03/2016 06:33:37 PM,04/03/2016 07:00:04 PM,04/03/2016 07:00:14 PM,04/03/2016 07:21:46 PM,Code 2 Transport,04/03/2016 07:47:07 PM,600 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7869781322214, -122.414969372107)",160942938-53 -143170474,70,14112170,Medical Incident,11/13/2014,11/12/2014,11/13/2014 06:07:07 AM,11/13/2014 06:07:07 AM,11/13/2014 06:07:32 AM,11/13/2014 06:07:51 AM,11/13/2014 06:12:09 AM,11/13/2014 06:28:15 AM,11/13/2014 06:40:43 AM,Code 2 Transport,11/13/2014 06:52:01 AM,JONES ST/OFARRELL ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",143170474-70 -160940090,55,16037100,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:26:56 AM,04/03/2016 12:27:20 AM,04/03/2016 12:27:33 AM,04/03/2016 12:27:47 AM,04/03/2016 12:34:34 AM,04/03/2016 01:09:10 AM,04/03/2016 01:15:19 AM,Code 2 Transport,04/03/2016 01:45:34 AM,2100 Block of 28TH AVE,San Francisco,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7472839020213, -122.485731349104)",160940090-55 -141170310,AM18,14039619,Medical Incident,04/27/2014,04/27/2014,04/27/2014 08:53:11 PM,04/27/2014 08:53:40 PM,04/27/2014 08:54:09 PM,04/27/2014 08:54:48 PM,04/27/2014 08:59:16 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Other,04/27/2014 09:01:34 PM,SUNSET BL/NORIEGA ST,SAN FRANCISCO,94122,B08,18,7573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7534138174953, -122.495226538122)",141170310-AM18 -151171537,E03,15044201,Medical Incident,04/27/2015,04/27/2015,04/27/2015 11:50:21 AM,04/27/2015 11:51:02 AM,04/27/2015 11:51:23 AM,04/27/2015 11:52:49 AM,04/27/2015 11:52:49 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Code 2 Transport,04/27/2015 12:04:06 PM,EDDY ST/VAN NESS AV,San Francisco,94109,B02,3,3163,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",151171537-E03 -150962261,E41,15036465,Medical Incident,04/06/2015,04/06/2015,04/06/2015 03:51:12 PM,04/06/2015 03:51:53 PM,04/06/2015 03:52:36 PM,04/06/2015 03:52:55 PM,04/06/2015 03:57:26 PM,04/25/2016 01:11:19 PM,04/25/2016 01:11:19 PM,Code 2 Transport,04/06/2015 04:02:40 PM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",150962261-E41 -150660776,E05,15025150,Medical Incident,03/07/2015,03/06/2015,03/07/2015 07:50:36 AM,03/07/2015 07:51:59 AM,03/07/2015 07:56:12 AM,03/07/2015 07:57:01 AM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Code 2 Transport,03/07/2015 08:00:29 AM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",150660776-E05 -151163570,D2,15044025,Structure Fire,04/26/2015,04/26/2015,04/26/2015 11:01:36 PM,04/26/2015 11:02:35 PM,04/26/2015 11:02:49 PM,04/26/2015 11:03:34 PM,04/26/2015 11:07:15 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/26/2015 11:17:43 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,3,3,3,false,Alarm,1,CHIEF,6,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",151163570-D2 -151841162,88,15070179,Medical Incident,07/03/2015,07/03/2015,07/03/2015 10:10:33 AM,07/03/2015 10:11:57 AM,07/03/2015 10:12:51 AM,07/03/2015 10:12:59 AM,07/03/2015 10:15:16 AM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,No Merit,07/03/2015 10:17:21 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",151841162-88 -143321354,E05,14117685,Medical Incident,11/28/2014,11/28/2014,11/28/2014 12:29:41 PM,11/28/2014 12:31:36 PM,11/28/2014 12:32:05 PM,11/28/2014 12:33:05 PM,11/28/2014 12:35:56 PM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Against Medical Advice,11/28/2014 12:40:44 PM,STEINER ST/MCALLISTER ST,San Francisco,94117,B05,5,3625,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7784224763419, -122.433407335297)",143321354-E05 -152441158,T12,15092997,Traffic Collision,09/01/2015,09/01/2015,09/01/2015 09:40:58 AM,09/01/2015 09:41:19 AM,09/01/2015 09:44:37 AM,09/01/2015 09:46:18 AM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Code 2 Transport,09/01/2015 09:47:07 AM,19TH AV/IRVING ST,San Francisco,94122,B08,22,7424,3,3,3,false,Potentially Life-Threatening,1,TRUCK,6,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",152441158-T12 -141923140,E03,14066691,Medical Incident,07/11/2014,07/11/2014,07/11/2014 07:59:51 PM,07/11/2014 07:59:51 PM,07/11/2014 07:59:51 PM,07/11/2014 07:59:51 PM,07/11/2014 07:59:51 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Code 2 Transport,07/11/2014 08:09:30 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",141923140-E03 -142362401,66,14082129,Medical Incident,08/24/2014,08/24/2014,08/24/2014 04:15:27 PM,08/24/2014 04:15:59 PM,08/24/2014 04:17:18 PM,08/24/2014 04:17:41 PM,08/24/2014 04:20:58 PM,08/24/2014 04:37:20 PM,08/24/2014 04:42:32 PM,Code 2 Transport,08/24/2014 05:13:00 PM,2300 Block of PINE ST,San Francisco,94115,B04,38,3543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7878999566909, -122.434481068996)",142362401-66 -151831328,RC1,15069808,Medical Incident,07/02/2015,07/02/2015,07/02/2015 10:26:29 AM,07/02/2015 10:27:40 AM,07/02/2015 10:43:03 AM,07/02/2015 10:43:53 AM,07/02/2015 10:51:00 AM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Code 2 Transport,07/02/2015 11:00:56 AM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",151831328-RC1 -160951305,57,16037583,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:54:15 AM,04/04/2016 10:55:06 AM,04/04/2016 10:55:49 AM,04/04/2016 10:56:24 AM,04/04/2016 11:00:53 AM,04/04/2016 11:14:08 AM,04/04/2016 11:32:44 AM,Code 2 Transport,04/04/2016 11:57:30 AM,1700 Block of OAK ST,San Francisco,94117,B05,21,4524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Golden Gate Park,"(37.7718274800356, -122.448146140288)",160951305-57 -152372337,E38,15090351,Medical Incident,08/25/2015,08/25/2015,08/25/2015 03:22:29 PM,08/25/2015 03:23:11 PM,08/25/2015 03:24:52 PM,08/25/2015 03:25:06 PM,08/25/2015 03:34:31 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Against Medical Advice,08/25/2015 03:52:54 PM,0 Block of MASONIC AVE,San Francisco,94118,B05,10,4411,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7837280171919, -122.447368375734)",152372337-E38 -151132368,75,15042760,Medical Incident,04/23/2015,04/23/2015,04/23/2015 03:28:11 PM,04/23/2015 03:29:43 PM,04/23/2015 03:35:03 PM,04/23/2015 03:35:18 PM,04/23/2015 04:02:08 PM,04/23/2015 04:19:49 PM,04/23/2015 04:32:27 PM,Code 2 Transport,04/23/2015 04:43:48 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",151132368-75 -160953568,55,16037784,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:25:17 PM,04/04/2016 08:25:17 PM,04/04/2016 08:27:25 PM,04/04/2016 08:27:34 PM,04/04/2016 08:33:15 PM,04/04/2016 08:45:58 PM,04/04/2016 08:55:46 PM,Code 2 Transport,04/04/2016 09:59:25 PM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800574377607, -122.408673540372)",160953568-55 -142762878,E40,14097035,Traffic Collision,10/03/2014,10/03/2014,10/03/2014 05:18:24 PM,10/03/2014 05:18:47 PM,10/03/2014 05:19:08 PM,10/03/2014 05:20:45 PM,10/03/2014 05:22:35 PM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Code 2 Transport,10/03/2014 05:26:12 PM,17TH AV/ULLOA ST,San Francisco,94116,B08,40,7376,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7412830674227, -122.473422991792)",142762878-E40 -161001744,76,16039778,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:46:45 PM,04/09/2016 01:48:54 PM,04/09/2016 02:00:26 PM,04/09/2016 02:00:43 PM,04/09/2016 02:09:59 PM,04/09/2016 02:16:23 PM,04/09/2016 02:24:33 PM,Code 2 Transport,04/09/2016 02:39:08 PM,1400 Block of BRODERICK ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Japantown,"(37.7838654796396, -122.441370226887)",161001744-76 -160964231,63,16038234,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:48:22 PM,04/05/2016 11:49:04 PM,04/05/2016 11:49:22 PM,04/05/2016 11:50:13 PM,04/06/2016 12:02:25 AM,04/06/2016 12:12:29 AM,04/06/2016 12:42:59 AM,Code 2 Transport,04/06/2016 12:56:38 AM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8299718852834, -122.374994903359)",160964231-63 -153270268,AM20,15125731,Medical Incident,11/23/2015,11/22/2015,11/23/2015 02:53:54 AM,11/23/2015 02:54:58 AM,11/23/2015 02:55:25 AM,11/23/2015 02:56:07 AM,11/23/2015 02:57:38 AM,11/23/2015 03:15:57 AM,11/23/2015 03:26:10 AM,Code 2 Transport,11/23/2015 04:03:39 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",153270268-AM20 -152731382,52,15104466,Traffic Collision,09/30/2015,09/30/2015,09/30/2015 11:16:12 AM,09/30/2015 11:23:09 AM,09/30/2015 11:24:20 AM,09/30/2015 11:24:27 AM,09/30/2015 11:34:09 AM,09/30/2015 11:51:04 AM,09/30/2015 12:05:12 PM,Code 2 Transport,09/30/2015 12:32:17 PM,INNES AV/NEWHALL ST,San Francisco,94124,B10,25,6532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7394219400946, -122.38883452306)",152731382-52 -141110232,E51,14037471,Administrative,04/21/2014,04/21/2014,04/21/2014 01:11:29 PM,04/21/2014 01:11:32 PM,04/21/2014 01:11:39 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Other,04/21/2014 01:12:07 PM,200 Block of LINCOLN BLVD,,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8016003147368, -122.456408426343)",141110232-E51 -152423886,E23,15092507,Medical Incident,08/30/2015,08/30/2015,08/30/2015 11:15:38 PM,08/30/2015 11:15:38 PM,08/30/2015 11:16:03 PM,08/30/2015 11:17:46 PM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Code 2 Transport,08/30/2015 11:22:26 PM,CUTLER AV/GREAT HY,San Francisco,94116,B08,23,7733,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.737022730844, -122.506314140272)",152423886-E23 -160950357,88,16037511,Medical Incident,04/04/2016,04/03/2016,04/04/2016 04:47:18 AM,04/04/2016 04:50:58 AM,04/04/2016 04:53:15 AM,04/04/2016 04:53:23 AM,04/04/2016 05:04:42 AM,04/04/2016 05:24:34 AM,04/04/2016 05:38:17 AM,Code 2 Transport,04/04/2016 06:06:45 AM,5300 Block of MISSION ST,San Francisco,94112,B09,43,6176,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7142832798437, -122.443056240053)",160950357-88 -143544156,E36,14126674,Medical Incident,12/20/2014,12/20/2014,12/20/2014 08:28:27 PM,12/20/2014 08:30:06 PM,12/20/2014 08:30:22 PM,12/20/2014 08:31:47 PM,12/20/2014 08:33:53 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Code 2 Transport,12/20/2014 08:41:16 PM,0 Block of WASHBURN ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",143544156-E36 -152823538,70,15108409,Medical Incident,10/09/2015,10/09/2015,10/09/2015 08:24:50 PM,10/09/2015 08:24:50 PM,10/09/2015 08:25:35 PM,10/09/2015 08:26:17 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Fire,10/09/2015 08:30:04 PM,THE EMBARCADERO SOU/BRYANT ST,San Francisco,94105,B03,35,2121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.787049345057, -122.388333561781)",152823538-70 -151810082,55,15068963,Medical Incident,06/30/2015,06/29/2015,06/30/2015 12:39:25 AM,06/30/2015 12:40:54 AM,06/30/2015 12:41:32 AM,06/30/2015 12:41:44 AM,06/30/2015 12:44:13 AM,06/30/2015 12:54:17 AM,06/30/2015 01:15:36 AM,Code 2 Transport,06/30/2015 01:27:51 AM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7849651112525, -122.421372762741)",151810082-55 -152191782,85,15083394,Medical Incident,08/07/2015,08/07/2015,08/07/2015 01:21:20 PM,08/07/2015 01:22:56 PM,08/07/2015 01:23:52 PM,08/07/2015 01:25:16 PM,08/07/2015 01:29:37 PM,08/07/2015 01:56:37 PM,08/07/2015 02:10:19 PM,Code 2 Transport,08/07/2015 02:40:46 PM,1500 Block of INDIANA ST,San Francisco,94107,B10,25,2635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.750758868663, -122.390429362473)",152191782-85 -142891998,RB1,14101889,Water Rescue,10/16/2014,10/16/2014,10/16/2014 02:00:03 PM,10/16/2014 02:00:39 PM,10/16/2014 02:28:30 PM,10/16/2014 02:28:30 PM,10/16/2014 02:57:11 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/16/2014 03:23:44 PM,CALL BOX: FORT MASON-PIER 4,San Francisco,94109,B04,16,3349,3,E,3,false,Fire,1,SUPPORT,8,1,2,Russian Hill,"(37.8085019164153, -122.420857228902)",142891998-RB1 -141980571,E32,14068456,Alarms,07/17/2014,07/16/2014,07/17/2014 06:31:27 AM,07/17/2014 06:32:43 AM,07/17/2014 06:32:52 AM,07/17/2014 06:35:04 AM,07/17/2014 06:37:08 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/17/2014 06:43:26 AM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7435550542265, -122.421128029505)",141980571-E32 -153131271,B06,15120256,Structure Fire,11/09/2015,11/09/2015,11/09/2015 11:09:50 AM,11/09/2015 11:13:05 AM,11/09/2015 11:13:47 AM,11/09/2015 11:15:14 AM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,Fire,11/09/2015 11:19:50 AM,KEITH ST/QUESADA AV,San Francisco,94124,B10,17,6551,3,3,3,false,Alarm,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7312317894346, -122.38772939119)",153131271-B06 -152162215,E07,15082293,Medical Incident,08/04/2015,08/04/2015,08/04/2015 03:29:31 PM,08/04/2015 03:31:44 PM,08/04/2015 03:34:32 PM,08/04/2015 03:34:47 PM,08/04/2015 03:38:03 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,No Merit,08/04/2015 03:39:25 PM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",152162215-E07 -152993849,E07,15114945,Medical Incident,10/26/2015,10/26/2015,10/26/2015 10:06:23 PM,10/26/2015 10:07:29 PM,10/26/2015 10:07:37 PM,10/26/2015 10:08:55 PM,10/26/2015 10:10:34 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Code 2 Transport,10/26/2015 10:17:34 PM,3100 Block of 17TH ST,San Francisco,94110,B02,7,5246,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7636581557579, -122.416784837447)",152993849-E07 -160972265,KM02,16038452,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:58:08 PM,04/06/2016 02:00:20 PM,04/06/2016 02:01:47 PM,04/06/2016 02:02:21 PM,04/06/2016 02:15:32 PM,04/06/2016 02:30:06 PM,04/06/2016 02:55:22 PM,Code 2 Transport,04/06/2016 03:21:01 PM,700 Block of BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7773986305, -122.400902402471)",160972265-KM02 -160961929,KM06,16038026,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:18:43 PM,04/05/2016 01:22:47 PM,04/05/2016 01:24:51 PM,04/05/2016 01:26:19 PM,04/05/2016 01:34:15 PM,04/05/2016 01:50:27 PM,04/05/2016 02:09:07 PM,Code 2 Transport,04/05/2016 02:52:19 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160961929-KM06 -152403713,78,15091593,Medical Incident,08/28/2015,08/28/2015,08/28/2015 08:00:19 PM,08/28/2015 08:02:10 PM,08/28/2015 08:02:48 PM,08/28/2015 08:03:28 PM,08/28/2015 08:07:14 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Unable to Locate,08/28/2015 08:14:07 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",152403713-78 -151842969,E18,15070331,Medical Incident,07/03/2015,07/03/2015,07/03/2015 06:20:51 PM,07/03/2015 06:21:46 PM,07/03/2015 06:22:06 PM,07/03/2015 06:23:59 PM,07/03/2015 06:26:14 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Code 3 Transport,07/03/2015 06:34:53 PM,1800 Block of 24TH AVE,San Francisco,94122,B08,18,7455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7530690887832, -122.481836048422)",151842969-E18 -142040711,E02,14070518,Alarms,07/23/2014,07/22/2014,07/23/2014 07:51:47 AM,07/23/2014 07:53:07 AM,07/23/2014 07:53:19 AM,07/23/2014 07:56:07 AM,07/23/2014 07:57:23 AM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Fire,07/23/2014 07:59:14 AM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7977792275329, -122.407827984258)",142040711-E02 -160974679,71,16038724,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:42:58 PM,04/06/2016 11:44:48 PM,04/06/2016 11:45:49 PM,04/06/2016 11:45:55 PM,04/06/2016 11:55:47 PM,04/07/2016 12:09:59 AM,04/07/2016 12:36:59 AM,Code 2 Transport,04/07/2016 01:08:44 AM,2200 Block of ORTEGA ST,San Francisco,94122,B08,18,7533,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7519334972204, -122.487602056441)",160974679-71 -151783169,E08,15067903,Medical Incident,06/27/2015,06/27/2015,06/27/2015 07:00:58 PM,06/27/2015 07:02:16 PM,06/27/2015 07:02:33 PM,06/27/2015 07:04:13 PM,06/27/2015 07:08:33 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,Code 2 Transport,06/27/2015 07:31:36 PM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",151783169-E08 -151650529,82,15063000,Medical Incident,06/14/2015,06/13/2015,06/14/2015 04:50:48 AM,06/14/2015 04:51:24 AM,06/14/2015 04:51:37 AM,06/14/2015 04:52:26 AM,06/14/2015 04:57:19 AM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,Medical Examiner,06/14/2015 05:04:49 AM,700 Block of KEARNY ST,San Francisco,94111,B01,13,1245,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",151650529-82 -141900413,E11,14065725,Alarms,07/09/2014,07/08/2014,07/09/2014 05:51:09 AM,07/09/2014 05:53:47 AM,07/09/2014 05:54:09 AM,07/09/2014 05:55:33 AM,07/09/2014 05:57:23 AM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Fire,07/09/2014 06:11:01 AM,1200 Block of CHURCH ST,San Francisco,94114,B06,11,5523,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7504922364404, -122.427385017637)",141900413-E11 -153091737,KM08,15118732,Medical Incident,11/05/2015,11/05/2015,11/05/2015 12:20:22 PM,11/05/2015 12:21:45 PM,11/05/2015 12:22:40 PM,11/05/2015 12:23:19 PM,11/05/2015 12:45:29 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Patient Declined Transport,11/05/2015 01:29:49 PM,JACKSON ST/BATTERY ST,San Francisco,94111,B01,13,1156,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7967768423432, -122.400681337314)",153091737-KM08 -160992323,KM11,16039362,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:42:07 PM,04/08/2016 03:42:58 PM,04/08/2016 03:43:31 PM,04/08/2016 03:44:07 PM,04/08/2016 03:52:06 PM,04/08/2016 04:14:18 PM,04/08/2016 04:43:32 PM,Code 2 Transport,04/08/2016 05:29:06 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160992323-KM11 -151910969,KM08,15072806,Medical Incident,07/10/2015,07/10/2015,07/10/2015 08:51:20 AM,07/10/2015 08:52:44 AM,07/10/2015 08:53:12 AM,07/10/2015 08:53:46 AM,07/10/2015 09:05:10 AM,07/10/2015 09:22:55 AM,07/10/2015 09:30:28 AM,Code 3 Transport,07/10/2015 10:21:13 AM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7720751846477, -122.408746829681)",151910969-KM08 -141080264,T02,14036471,Alarms,04/18/2014,04/18/2014,04/18/2014 03:43:49 PM,04/18/2014 03:44:52 PM,04/18/2014 03:45:17 PM,04/18/2014 03:46:40 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Fire,04/18/2014 03:50:22 PM,1300 Block of COLUMBUS AVE,SAN FRANCISCO,94133,B01,28,1525,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8061515935611, -122.418537074676)",141080264-T02 -161002088,66,16039813,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:39:01 PM,04/09/2016 03:40:44 PM,04/09/2016 03:44:16 PM,04/09/2016 03:44:29 PM,04/09/2016 03:55:47 PM,04/09/2016 04:20:30 PM,04/09/2016 04:40:04 PM,Code 2 Transport,04/09/2016 05:15:09 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",161002088-66 -142090040,76,14072270,Medical Incident,07/28/2014,07/27/2014,07/28/2014 12:17:50 AM,07/28/2014 12:19:24 AM,07/28/2014 12:20:36 AM,07/28/2014 12:20:48 AM,07/28/2014 12:23:09 AM,07/28/2014 01:04:44 AM,07/28/2014 01:20:32 AM,Code 2 Transport,07/28/2014 01:56:49 AM,1000 Block of CAPP ST,San Francisco,94110,B06,11,5534,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7499099820999, -122.417055896284)",142090040-76 -142362134,77,14082106,Medical Incident,08/24/2014,08/24/2014,08/24/2014 02:55:02 PM,08/24/2014 02:55:20 PM,08/24/2014 02:55:59 PM,08/24/2014 02:56:05 PM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,Gone on Arrival,08/24/2014 03:03:45 PM,PINE ST/GRANT AV,San Francisco,94108,B01,13,1243,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7914981016192, -122.405741880151)",142362134-77 -152870268,E14,15110114,Medical Incident,10/14/2015,10/13/2015,10/14/2015 02:16:09 AM,10/14/2015 02:16:09 AM,10/14/2015 02:16:27 AM,10/14/2015 02:18:58 AM,10/14/2015 02:20:17 AM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,Code 2 Transport,10/14/2015 02:26:43 AM,2700 Block of CLEMENT ST,San Francisco,94121,B07,14,7221,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.781904591369, -122.488625014278)",152870268-E14 -141800938,E01,14062162,Medical Incident,06/29/2014,06/29/2014,06/29/2014 08:23:14 AM,06/29/2014 08:23:38 AM,06/29/2014 08:24:10 AM,06/29/2014 08:25:27 AM,06/29/2014 08:27:54 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Code 2 Transport,06/29/2014 08:38:24 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",141800938-E01 -143410448,64,14121023,Medical Incident,12/07/2014,12/06/2014,12/07/2014 02:55:59 AM,12/07/2014 02:56:53 AM,12/07/2014 02:58:20 AM,12/07/2014 02:58:28 AM,12/07/2014 03:03:14 AM,12/07/2014 03:19:09 AM,12/07/2014 03:50:26 AM,Code 2 Transport,12/07/2014 04:13:26 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",143410448-64 -141572864,67,14054197,Medical Incident,06/06/2014,06/06/2014,06/06/2014 07:21:02 PM,06/06/2014 07:24:09 PM,06/06/2014 07:26:04 PM,06/06/2014 07:26:11 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Other,06/06/2014 07:36:29 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",141572864-67 -151070558,62,15040354,Medical Incident,04/17/2015,04/16/2015,04/17/2015 07:04:25 AM,04/17/2015 07:06:52 AM,04/17/2015 07:27:06 AM,04/17/2015 07:27:33 AM,04/17/2015 07:36:49 AM,04/17/2015 08:46:40 AM,04/25/2016 01:11:07 PM,Code 2 Transport,04/17/2015 08:46:46 AM,MISSION ST/SOUTH VAN NESS AV,San Francisco,94103,B02,36,5116,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",151070558-62 -160991691,73,16039294,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:06:02 PM,04/08/2016 01:06:02 PM,04/08/2016 01:06:13 PM,04/08/2016 01:06:40 PM,04/08/2016 01:19:39 PM,04/08/2016 01:32:04 PM,04/08/2016 01:49:07 PM,Code 2 Transport,04/08/2016 03:18:35 PM,200 Block of WEBSTER ST,San Francisco,94102,B02,6,3524,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7730292536228, -122.428875899713)",160991691-73 -151120516,E36,15042228,Medical Incident,04/22/2015,04/21/2015,04/22/2015 06:44:07 AM,04/22/2015 06:45:05 AM,04/22/2015 06:45:16 AM,04/22/2015 06:48:09 AM,04/22/2015 06:51:29 AM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,Code 2 Transport,04/22/2015 06:57:37 AM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",151120516-E36 -142091411,E51,14072414,Water Rescue,07/28/2014,07/28/2014,07/28/2014 12:22:13 PM,07/28/2014 12:23:13 PM,07/28/2014 12:23:49 PM,07/28/2014 12:25:43 PM,07/28/2014 12:29:39 PM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Fire,07/28/2014 12:36:16 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,true,Fire,1,ENGINE,1,7,2,Presidio,"(37.8066581989584, -122.47471662098)",142091411-E51 -141560648,RC1,14053585,Medical Incident,06/05/2014,06/05/2014,06/05/2014 08:00:52 AM,06/05/2014 08:01:53 AM,06/05/2014 08:06:29 AM,06/05/2014 08:06:29 AM,06/05/2014 08:11:00 AM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Code 2 Transport,06/05/2014 08:24:59 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",141560648-RC1 -152802955,AM08,15107537,Medical Incident,10/07/2015,10/07/2015,10/07/2015 05:19:15 PM,10/07/2015 05:20:11 PM,10/07/2015 05:21:49 PM,04/25/2016 01:07:54 PM,04/25/2016 01:07:54 PM,04/25/2016 01:07:54 PM,04/25/2016 01:07:54 PM,Patient Declined Transport,10/07/2015 05:22:59 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",152802955-AM08 -160931581,77,16036840,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:19:33 PM,04/02/2016 12:20:57 PM,04/02/2016 12:21:26 PM,04/02/2016 12:21:43 PM,04/02/2016 12:38:39 PM,04/02/2016 12:41:23 PM,04/02/2016 01:21:28 PM,Code 2 Transport,04/02/2016 02:00:00 PM,2800 Block of ALEMANY BLVD,San Francisco,94112,B09,33,8353,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.712648137171, -122.451378388888)",160931581-77 -161002871,76,16039905,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:44:14 PM,04/09/2016 07:45:46 PM,04/09/2016 07:46:28 PM,04/09/2016 07:46:35 PM,04/09/2016 07:57:04 PM,04/09/2016 08:05:54 PM,04/09/2016 08:36:51 PM,Code 2 Transport,04/09/2016 08:39:24 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",161002871-76 -142010461,RC1,14069465,Medical Incident,07/20/2014,07/19/2014,07/20/2014 02:48:00 AM,07/20/2014 02:49:43 AM,07/20/2014 02:49:55 AM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Code 2 Transport,07/20/2014 02:51:15 AM,1100 Block of ALABAMA ST,San Francisco,94110,B06,7,5527,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,6,9,Mission,"(37.7534901043626, -122.410972424143)",142010461-RC1 -152982571,63,15114499,Medical Incident,10/25/2015,10/25/2015,10/25/2015 05:29:01 PM,10/25/2015 05:30:15 PM,10/25/2015 05:33:00 PM,10/25/2015 05:33:08 PM,10/25/2015 05:49:26 PM,10/25/2015 05:49:44 PM,10/25/2015 05:55:41 PM,Code 2 Transport,10/25/2015 06:30:35 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",152982571-63 -153411471,57,15131181,Medical Incident,12/07/2015,12/07/2015,12/07/2015 11:18:24 AM,12/07/2015 11:19:10 AM,12/07/2015 11:19:26 AM,12/07/2015 11:19:38 AM,12/07/2015 11:22:10 AM,12/07/2015 11:44:03 AM,12/07/2015 12:08:54 PM,Code 2 Transport,12/07/2015 12:43:05 PM,0 Block of DE MONTFORT AVE,San Francisco,94112,B09,15,8474,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7237099095411, -122.458700057716)",153411471-57 -160952359,AM02,16037670,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:05:41 PM,04/04/2016 03:06:53 PM,04/04/2016 03:07:59 PM,04/04/2016 03:09:22 PM,04/04/2016 03:17:51 PM,04/04/2016 03:26:29 PM,04/04/2016 03:53:48 PM,Code 2 Transport,04/04/2016 04:33:53 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",160952359-AM02 -151100371,E37,15041490,Structure Fire,04/20/2015,04/19/2015,04/20/2015 04:51:53 AM,04/20/2015 04:53:59 AM,04/20/2015 04:54:36 AM,04/20/2015 04:57:20 AM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Fire,04/20/2015 04:58:25 AM,24TH ST/POTRERO AV,San Francisco,94110,B10,9,2562,3,3,3,true,Alarm,1,ENGINE,6,10,9,Mission,"(37.7530040313925, -122.406336240587)",151100371-E37 -150731388,E42,15027875,Traffic Collision,03/14/2015,03/14/2015,03/14/2015 10:34:32 AM,03/14/2015 10:40:35 AM,03/14/2015 10:41:52 AM,03/14/2015 10:44:07 AM,03/14/2015 10:47:11 AM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Cancelled,03/14/2015 10:53:48 AM,100 Block of ALEMANY BLVD,San Francisco,94110,B10,42,6373,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",150731388-E42 -150470848,T13,15018197,Alarms,02/16/2015,02/16/2015,02/16/2015 08:35:05 AM,02/16/2015 08:36:50 AM,02/16/2015 08:36:59 AM,02/16/2015 08:39:17 AM,02/16/2015 08:40:26 AM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/16/2015 08:51:08 AM,300 Block of SANSOME ST,San Francisco,94104,B01,13,1166,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7937569001579, -122.401337883985)",150470848-T13 -152701469,E08,15103430,Other,09/27/2015,09/27/2015,09/27/2015 12:19:59 PM,09/27/2015 12:19:59 PM,09/27/2015 12:19:59 PM,09/27/2015 12:19:59 PM,09/27/2015 12:19:59 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Fire,09/27/2015 12:26:33 PM,900 Block of QUINTARA ST,San Francisco,94116,B08,40,7417,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7486150608847, -122.475521188669)",152701469-E08 -152662610,T01,15101948,Structure Fire,09/23/2015,09/23/2015,09/23/2015 04:05:23 PM,09/23/2015 04:05:23 PM,09/23/2015 04:06:19 PM,09/23/2015 04:08:06 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Fire,09/23/2015 04:09:57 PM,MASON ST/MARKET ST,San Francisco,94103,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",152662610-T01 -151922080,60,15073327,Traffic Collision,07/11/2015,07/11/2015,07/11/2015 02:23:55 PM,07/11/2015 02:25:00 PM,07/11/2015 02:25:17 PM,07/11/2015 02:25:37 PM,07/11/2015 02:29:14 PM,04/25/2016 01:09:31 PM,04/25/2016 01:09:31 PM,Patient Declined Transport,07/11/2015 03:02:31 PM,VAN NESS AV/SUTTER ST,San Francisco,94109,B04,3,3161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",151922080-60 -150933762,70,15035528,Medical Incident,04/03/2015,04/03/2015,04/03/2015 10:29:03 PM,04/03/2015 10:29:03 PM,04/03/2015 10:29:16 PM,04/03/2015 10:29:23 PM,04/03/2015 10:41:13 PM,04/03/2015 11:27:47 PM,04/03/2015 11:42:56 PM,Code 2 Transport,04/04/2015 12:19:41 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",150933762-70 -160974693,52,16038725,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:48:17 PM,04/06/2016 11:48:17 PM,04/06/2016 11:48:52 PM,04/06/2016 11:48:57 PM,04/07/2016 12:04:39 AM,04/07/2016 12:13:05 AM,04/07/2016 12:41:27 AM,Code 2 Transport,04/07/2016 01:20:42 AM,2800 Block of 24TH ST,San Francisco,94110,B06,7,5527,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7528220751267, -122.40960340614)",160974693-52 -160933273,79,16037025,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:08:11 PM,04/02/2016 08:09:11 PM,04/02/2016 08:11:40 PM,04/02/2016 08:11:40 PM,04/02/2016 08:20:18 PM,04/02/2016 09:05:10 PM,04/02/2016 09:05:21 PM,Code 2 Transport,04/02/2016 09:21:09 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",160933273-79 -160960143,52,16037855,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:18:54 AM,04/05/2016 01:20:06 AM,04/05/2016 01:20:20 AM,04/05/2016 01:21:16 AM,04/05/2016 01:39:10 AM,04/05/2016 01:50:03 AM,04/05/2016 02:17:25 AM,Code 2 Transport,04/05/2016 02:54:56 AM,1500 Block of VISITACION AVE,San Francisco,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7131682413493, -122.413881370369)",160960143-52 -142723163,E03,14095507,Medical Incident,09/29/2014,09/29/2014,09/29/2014 08:39:51 PM,09/29/2014 08:42:21 PM,09/29/2014 08:45:22 PM,09/29/2014 08:45:22 PM,09/29/2014 08:46:35 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Code 2 Transport,09/29/2014 08:53:35 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142723163-E03 -142792162,AM04,14098205,Medical Incident,10/06/2014,10/06/2014,10/06/2014 03:19:14 PM,10/06/2014 03:19:46 PM,10/06/2014 03:20:07 PM,10/06/2014 03:20:50 PM,10/06/2014 03:22:41 PM,10/06/2014 03:35:44 PM,10/06/2014 03:41:37 PM,Code 2 Transport,10/06/2014 04:19:32 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",142792162-AM04 -142302723,E06,14079979,Medical Incident,08/18/2014,08/18/2014,08/18/2014 05:15:12 PM,08/18/2014 05:16:28 PM,08/18/2014 05:17:00 PM,08/18/2014 05:17:56 PM,08/18/2014 05:20:22 PM,04/25/2016 01:15:35 PM,04/25/2016 01:15:35 PM,Code 2 Transport,08/18/2014 05:30:39 PM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",142302723-E06 -150172083,T09,15006761,Alarms,01/17/2015,01/17/2015,01/17/2015 02:40:52 PM,01/17/2015 02:43:41 PM,01/17/2015 02:44:02 PM,01/17/2015 02:45:57 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Fire,01/17/2015 02:48:14 PM,400 Block of AMADOR ST,San Francisco,94124,B10,25,6463,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7458848547738, -122.382990476473)",150172083-T09 -160980298,83,16038756,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:42:57 AM,04/07/2016 02:45:53 AM,04/07/2016 02:46:07 AM,04/07/2016 02:46:23 AM,04/07/2016 02:52:25 AM,04/07/2016 03:07:54 AM,04/07/2016 03:43:46 AM,Code 2 Transport,04/07/2016 03:56:15 AM,3400 Block of 25TH ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.750643608226, -122.419135776556)",160980298-83 -151323341,E07,15050241,Structure Fire,05/12/2015,05/12/2015,05/12/2015 09:16:46 PM,05/12/2015 09:16:56 PM,05/12/2015 09:17:16 PM,05/12/2015 09:18:11 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Fire,05/12/2015 09:18:23 PM,3300 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,3,3,3,true,Alarm,1,ENGINE,3,6,9,Mission,"(37.7482858766932, -122.417044258324)",151323341-E07 -151611817,T12,15061526,Alarms,06/10/2015,06/10/2015,06/10/2015 01:09:03 PM,06/10/2015 01:09:39 PM,06/10/2015 01:09:48 PM,06/10/2015 01:11:28 PM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Fire,06/10/2015 01:34:20 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,3,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",151611817-T12 -160940780,52,16037183,Medical Incident,04/03/2016,04/02/2016,04/03/2016 07:00:35 AM,04/03/2016 07:02:18 AM,04/03/2016 07:02:59 AM,04/03/2016 07:03:18 AM,04/03/2016 07:15:33 AM,04/03/2016 07:23:40 AM,04/03/2016 07:45:28 AM,Code 2 Transport,04/03/2016 08:07:58 AM,400 Block of HOWARD ST,San Francisco,94105,B03,35,2141,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7889242269803, -122.395641699334)",160940780-52 -151433283,E01,15054524,Medical Incident,05/23/2015,05/23/2015,05/23/2015 08:42:30 PM,05/23/2015 08:43:42 PM,05/23/2015 08:44:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Code 2 Transport,05/23/2015 08:46:05 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151433283-E01 -151231171,E36,15046621,Medical Incident,05/03/2015,05/03/2015,05/03/2015 10:28:07 AM,05/03/2015 10:28:41 AM,05/03/2015 10:29:02 AM,05/03/2015 10:29:14 AM,05/03/2015 10:39:55 AM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,Medical Examiner,05/03/2015 10:41:35 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",151231171-E36 -160980280,73,16038752,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:30:29 AM,04/07/2016 02:30:29 AM,04/07/2016 02:41:32 AM,04/07/2016 02:41:32 AM,04/07/2016 02:41:32 AM,04/07/2016 03:30:25 AM,04/07/2016 03:30:30 AM,Code 2 Transport,04/07/2016 03:31:00 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160980280-73 -151632966,56,15062424,Medical Incident,06/12/2015,06/12/2015,06/12/2015 06:05:09 PM,06/12/2015 06:05:18 PM,06/12/2015 06:05:53 PM,06/12/2015 06:11:25 PM,06/12/2015 06:15:17 PM,06/12/2015 06:43:42 PM,06/12/2015 07:06:42 PM,Code 2 Transport,06/12/2015 07:25:54 PM,2600 Block of 33RD AVE,San Francisco,94116,B08,18,7547,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.738300128498, -122.49032922767)",151632966-56 -151263362,T07,15047907,Alarms,05/06/2015,05/06/2015,05/06/2015 07:44:06 PM,05/06/2015 07:46:15 PM,05/06/2015 07:46:35 PM,05/06/2015 07:48:09 PM,05/06/2015 07:51:07 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Fire,05/06/2015 07:54:36 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7627519883966, -122.421609674066)",151263362-T07 -160940273,72,16037124,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:31:23 AM,04/03/2016 01:31:23 AM,04/03/2016 01:31:46 AM,04/03/2016 01:31:55 AM,04/03/2016 01:39:21 AM,04/03/2016 02:25:44 AM,04/03/2016 02:53:59 AM,Code 2 Transport,04/03/2016 03:40:52 AM,2ND ST/MINNA ST,San Francisco,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.787579277349, -122.399255051067)",160940273-72 -142053806,E35,14071167,Medical Incident,07/24/2014,07/24/2014,07/24/2014 10:20:46 PM,07/24/2014 10:22:49 PM,07/24/2014 10:24:44 PM,07/24/2014 10:25:59 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Fire,07/24/2014 10:36:24 PM,1000 Block of HARRISON ST,San Francisco,94103,B03,8,2254,2,2,2,false,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7770983962506, -122.404388964595)",142053806-E35 -151420850,RS1,15053897,Traffic Collision,05/22/2015,05/22/2015,05/22/2015 08:28:38 AM,05/22/2015 08:29:14 AM,05/22/2015 08:30:15 AM,05/22/2015 08:32:23 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Code 2 Transport,05/22/2015 08:34:22 AM,BUSH ST/BRODERICK ST,San Francisco,94115,B04,10,4234,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,7,4,2,Pacific Heights,"(37.7859677452086, -122.441726319715)",151420850-RS1 -141342543,E03,14045793,Medical Incident,05/14/2014,05/14/2014,05/14/2014 03:41:11 PM,05/14/2014 03:44:31 PM,05/14/2014 03:45:54 PM,05/14/2014 03:46:08 PM,05/14/2014 03:51:49 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Code 2 Transport,05/14/2014 04:06:31 PM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",141342543-E03 -141621789,E01,14055853,Medical Incident,06/11/2014,06/11/2014,06/11/2014 01:26:28 PM,06/11/2014 01:27:22 PM,06/11/2014 01:28:06 PM,06/11/2014 01:29:30 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,Code 2 Transport,06/11/2014 01:38:43 PM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",141621789-E01 -150293824,B04,15011371,Structure Fire,01/29/2015,01/29/2015,01/29/2015 11:26:28 PM,01/29/2015 11:26:52 PM,01/29/2015 11:27:24 PM,01/29/2015 11:28:22 PM,01/29/2015 11:31:46 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Other,01/30/2015 01:26:37 AM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,false,Fire,2,CHIEF,4,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",150293824-B04 -150191703,E15,15007507,Medical Incident,01/19/2015,01/19/2015,01/19/2015 01:23:33 PM,01/19/2015 01:26:09 PM,01/19/2015 01:27:57 PM,01/19/2015 01:29:05 PM,01/19/2015 01:30:58 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Code 2 Transport,01/19/2015 01:44:34 PM,200 Block of MIRAMAR AVE,San Francisco,94112,B09,15,8474,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7227490413148, -122.458117167077)",150191703-E15 -143342508,65,14118451,Medical Incident,11/30/2014,11/30/2014,11/30/2014 05:49:51 PM,11/30/2014 05:51:32 PM,11/30/2014 05:52:50 PM,11/30/2014 05:54:20 PM,11/30/2014 06:15:19 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,No Merit,11/30/2014 06:43:39 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",143342508-65 -152251429,E14,15085725,Structure Fire,08/13/2015,08/13/2015,08/13/2015 11:13:54 AM,08/13/2015 11:15:23 AM,08/13/2015 11:16:10 AM,08/13/2015 11:18:22 AM,08/13/2015 11:18:22 AM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/13/2015 11:23:05 AM,400 Block of 21ST AVE,San Francisco,94121,B07,14,7172,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7793232485951, -122.480311461587)",152251429-E14 -160923115,64,16036571,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:55:09 PM,04/01/2016 06:58:00 PM,04/01/2016 07:00:59 PM,04/01/2016 07:00:59 PM,04/01/2016 07:16:16 PM,04/01/2016 07:29:20 PM,04/01/2016 07:50:17 PM,CHP,04/01/2016 08:17:40 PM,1200 Block of BAYSIDE DR,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8304547884044, -122.37629451046)",160923115-64 -151230262,60,15046533,Medical Incident,05/03/2015,05/02/2015,05/03/2015 01:40:51 AM,05/03/2015 01:43:51 AM,05/03/2015 01:44:18 AM,05/03/2015 01:44:37 AM,05/03/2015 01:50:10 AM,05/03/2015 02:08:52 AM,05/03/2015 02:23:00 AM,Code 2 Transport,05/03/2015 03:02:50 AM,WILLOW ST/LARKIN ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7837775223432, -122.417618573606)",151230262-60 -153094186,62,15118964,Medical Incident,11/05/2015,11/05/2015,11/05/2015 11:22:58 PM,11/05/2015 11:22:58 PM,11/05/2015 11:23:52 PM,11/05/2015 11:24:15 PM,11/05/2015 11:28:12 PM,11/05/2015 11:40:48 PM,11/06/2015 12:00:38 AM,Code 2 Transport,11/06/2015 12:56:43 AM,BRANNAN ST/4TH ST,San Francisco,94107,B03,8,2241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7783268314649, -122.396530638158)",153094186-62 -142782940,T14,14097890,Water Rescue,10/05/2014,10/05/2014,10/05/2014 06:02:50 PM,10/05/2014 06:04:17 PM,10/05/2014 06:04:44 PM,10/05/2014 06:06:32 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Fire,10/05/2014 06:10:32 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,TRUCK,8,7,2,Presidio,"(37.8066581989584, -122.47471662098)",142782940-T14 -142791394,E17,14098123,Fuel Spill,10/06/2014,10/06/2014,10/06/2014 11:22:03 AM,10/06/2014 11:25:17 AM,10/06/2014 11:25:23 AM,10/06/2014 11:25:37 AM,10/06/2014 11:28:14 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 11:50:28 AM,1600 Block of PALOU AVE,San Francisco,94124,B10,17,6471,3,3,3,true,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7344812749194, -122.391912066975)",142791394-E17 -142743393,B04,14096233,Alarms,10/01/2014,10/01/2014,10/01/2014 07:53:06 PM,10/01/2014 07:54:20 PM,10/01/2014 07:54:57 PM,10/01/2014 07:55:06 PM,10/01/2014 07:57:26 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Fire,10/01/2014 08:02:39 PM,2000 Block of VAN NESS AVE,San Francisco,94109,B04,41,3153,3,3,3,false,Alarm,1,CHIEF,2,4,3,Russian Hill,"(37.7943979367838, -122.422967119552)",142743393-B04 -160962346,60,16038058,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:02:26 PM,04/05/2016 03:04:26 PM,04/05/2016 03:04:36 PM,04/05/2016 03:06:18 PM,04/05/2016 03:25:08 PM,04/05/2016 03:52:52 PM,04/05/2016 04:13:35 PM,Code 3 Transport,04/05/2016 04:32:51 PM,1400 Block of CAYUGA AV,San Francisco,94112,B09,15,8335,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7177214899037, -122.444924903353)",160962346-60 -161001977,85,16039802,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:06:10 PM,04/09/2016 03:09:18 PM,04/09/2016 03:09:48 PM,04/09/2016 03:10:08 PM,04/09/2016 03:18:41 PM,04/09/2016 03:38:24 PM,04/09/2016 04:29:41 PM,Code 2 Transport,04/09/2016 04:43:00 PM,MISSION ST/14TH ST,San Francisco,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",161001977-85 -142511002,E41,14087489,Medical Incident,09/08/2014,09/08/2014,09/08/2014 09:56:59 AM,09/08/2014 09:59:16 AM,09/08/2014 09:59:42 AM,09/08/2014 10:00:40 AM,09/08/2014 10:05:39 AM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,Code 2 Transport,09/08/2014 10:15:19 AM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",142511002-E41 -142802947,RC3,14098597,Medical Incident,10/07/2014,10/07/2014,10/07/2014 07:05:39 PM,10/07/2014 07:05:39 PM,10/07/2014 07:06:13 PM,10/07/2014 07:09:31 PM,10/07/2014 07:18:49 PM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Code 2 Transport,10/07/2014 07:33:28 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",142802947-RC3 -160993275,AM16,16039440,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:32:00 PM,04/08/2016 07:32:00 PM,04/08/2016 07:32:32 PM,04/08/2016 07:33:04 PM,04/08/2016 07:37:57 PM,04/08/2016 07:58:22 PM,04/08/2016 08:24:05 PM,Code 2 Transport,04/08/2016 08:46:04 PM,SUTTER ST/MARKET ST,San Francisco,94104,B01,13,1164,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7902901603061, -122.400152471245)",160993275-AM16 -153062216,B08,15117655,Alarms,11/02/2015,11/02/2015,11/02/2015 02:47:21 PM,11/02/2015 02:48:43 PM,11/02/2015 02:49:38 PM,11/02/2015 02:51:54 PM,11/02/2015 02:56:06 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/02/2015 02:59:43 PM,3000 Block of 23RD AVE,San Francisco,94132,B08,19,8734,3,3,3,false,Alarm,1,CHIEF,2,8,7,Sunset/Parkside,"(37.7318409452501, -122.479250758716)",153062216-B08 -150123718,RC1,15004955,Medical Incident,01/12/2015,01/12/2015,01/12/2015 10:20:06 PM,01/12/2015 10:21:47 PM,01/12/2015 10:39:17 PM,01/12/2015 10:41:32 PM,01/12/2015 10:47:14 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Code 2 Transport,01/12/2015 10:59:37 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",150123718-RC1 -160963103,79,16038124,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:53:55 PM,04/05/2016 05:53:55 PM,04/05/2016 05:59:30 PM,04/05/2016 05:59:39 PM,04/05/2016 05:59:39 PM,04/05/2016 06:24:21 PM,04/05/2016 06:30:43 PM,Code 2 Transport,04/05/2016 07:02:49 PM,300 Block of BOCANA ST,San Francisco,94110,B06,32,5742,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7389424864244, -122.41889043825)",160963103-79 -143111562,KM09,14110118,Traffic Collision,11/07/2014,11/07/2014,11/07/2014 12:14:53 PM,11/07/2014 12:14:53 PM,11/07/2014 12:18:49 PM,11/07/2014 12:19:26 PM,11/07/2014 12:20:13 PM,11/07/2014 12:50:35 PM,11/07/2014 01:14:27 PM,Code 2 Transport,11/07/2014 02:15:54 PM,3200 Block of 17TH ST,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7635175983002, -122.419004027906)",143111562-KM09 -160982035,76,16038931,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:28:49 PM,04/07/2016 01:28:49 PM,04/07/2016 01:29:08 PM,04/07/2016 01:29:12 PM,04/07/2016 01:32:45 PM,04/07/2016 01:42:12 PM,04/07/2016 01:49:26 PM,Code 2 Transport,04/07/2016 02:20:31 PM,HYDE ST/FULTON ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",160982035-76 -143573887,E36,14127935,Medical Incident,12/23/2014,12/23/2014,12/23/2014 09:59:47 PM,12/23/2014 10:00:45 PM,12/23/2014 10:01:53 PM,12/23/2014 10:03:33 PM,12/23/2014 10:03:33 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Code 2 Transport,12/23/2014 10:08:02 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",143573887-E36 -160971030,82,16038342,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:21:53 AM,04/06/2016 09:23:12 AM,04/06/2016 09:24:01 AM,04/06/2016 09:24:06 AM,04/06/2016 09:29:22 AM,04/06/2016 09:39:38 AM,04/06/2016 09:55:44 AM,Code 2 Transport,04/06/2016 10:12:39 AM,1900 Block of BUCHANAN ST,San Francisco,94115,B04,38,3434,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7879132705772, -122.430193813177)",160971030-82 -153054166,E09,15117354,Electrical Hazard,11/01/2015,11/01/2015,11/01/2015 09:37:45 PM,11/01/2015 09:38:57 PM,11/01/2015 09:39:17 PM,11/01/2015 09:40:28 PM,11/01/2015 09:45:26 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/01/2015 09:48:47 PM,PERALTA AV/YORK ST,San Francisco,94110,B06,9,5671,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7474307153312, -122.407270928689)",153054166-E09 -152882081,E08,15110686,Medical Incident,10/15/2015,10/15/2015,10/15/2015 01:52:39 PM,10/15/2015 01:54:00 PM,10/15/2015 01:54:44 PM,10/15/2015 01:56:10 PM,10/15/2015 01:58:58 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Code 3 Transport,10/15/2015 02:14:08 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",152882081-E08 -160993707,88,16039490,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:43:40 PM,04/08/2016 09:44:55 PM,04/08/2016 09:45:53 PM,04/08/2016 09:45:59 PM,04/08/2016 09:54:29 PM,04/08/2016 10:11:29 PM,04/08/2016 10:23:19 PM,Code 2 Transport,04/08/2016 11:22:39 PM,2100 Block of UNION ST,San Francisco,94123,B04,16,3552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7972477502835, -122.434679239758)",160993707-88 -141480690,AM16,14050737,Medical Incident,05/28/2014,05/28/2014,05/28/2014 08:09:09 AM,05/28/2014 08:10:38 AM,05/28/2014 08:11:04 AM,05/28/2014 08:11:32 AM,05/28/2014 08:30:47 AM,05/28/2014 08:40:21 AM,05/28/2014 08:49:24 AM,Code 2 Transport,05/28/2014 09:20:56 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",141480690-AM16 -141741744,E02,14060043,Alarms,06/23/2014,06/23/2014,06/23/2014 01:59:25 PM,06/23/2014 02:00:48 PM,06/23/2014 02:02:00 PM,06/23/2014 02:04:24 PM,06/23/2014 02:04:24 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,Fire,06/23/2014 02:08:19 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",141741744-E02 -150373132,E15,15014469,Medical Incident,02/06/2015,02/06/2015,02/06/2015 06:54:10 PM,02/06/2015 06:56:08 PM,02/06/2015 06:56:29 PM,02/06/2015 06:57:38 PM,02/06/2015 07:01:45 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Code 3 Transport,02/06/2015 07:50:44 PM,300 Block of MUNICH ST,San Francisco,94112,B09,43,6163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7200682259192, -122.427352796378)",150373132-E15 -160981347,72,16038866,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:31:00 AM,04/07/2016 10:32:00 AM,04/07/2016 10:32:11 AM,04/07/2016 10:34:30 AM,04/07/2016 10:50:50 AM,04/07/2016 11:10:19 AM,04/07/2016 11:41:55 AM,Code 2 Transport,04/07/2016 12:19:23 PM,1300 Block of PIERCE ST,San Francisco,94115,B05,5,3647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",160981347-72 -152860741,E39,15109757,Vehicle Fire,10/13/2015,10/12/2015,10/13/2015 07:56:07 AM,10/13/2015 07:56:44 AM,10/13/2015 07:57:03 AM,10/13/2015 07:59:16 AM,10/13/2015 08:03:32 AM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Fire,10/13/2015 08:06:29 AM,JUNIPERO SERRA BL/SAINT FRANCIS BL,San Francisco,94132,B08,39,8555,3,3,3,true,Fire,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7347068117722, -122.471569339996)",152860741-E39 -141130057,E05,14038022,Outside Fire,04/23/2014,04/22/2014,04/23/2014 05:49:53 AM,04/23/2014 05:50:49 AM,04/23/2014 05:50:56 AM,04/23/2014 05:52:15 AM,04/23/2014 05:54:22 AM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Fire,04/23/2014 05:59:10 AM,STEINER ST/POST ST,SAN FRANCISCO,94115,B04,5,3622,3,3,3,true,Fire,1,ENGINE,1,4,5,Japantown,"(37.7849440060036, -122.434729991182)",141130057-E05 -151981315,E13,15075419,Structure Fire,07/17/2015,07/17/2015,07/17/2015 10:50:01 AM,07/17/2015 10:50:01 AM,07/17/2015 10:50:09 AM,07/17/2015 10:50:20 AM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,Fire,07/17/2015 10:51:52 AM,BATTERY ST/CALIFORNIA ST,San Francisco,94111,B01,13,1162,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",151981315-E13 -151921090,76,15073211,Medical Incident,07/11/2015,07/11/2015,07/11/2015 09:10:07 AM,07/11/2015 09:10:07 AM,07/11/2015 09:10:55 AM,07/11/2015 09:11:04 AM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,Code 2 Transport,07/11/2015 09:13:02 AM,ERIE ST/FOLSOM ST,San Francisco,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7693620195485, -122.415611508879)",151921090-76 -160980707,82,16038802,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:21:55 AM,04/07/2016 07:23:20 AM,04/07/2016 07:23:46 AM,04/07/2016 07:23:57 AM,04/07/2016 07:29:28 AM,04/07/2016 07:43:14 AM,04/07/2016 07:51:58 AM,Code 2 Transport,04/07/2016 08:12:46 AM,1100 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1445,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7915760061861, -122.413295108865)",160980707-82 -151421527,55,15053956,Medical Incident,05/22/2015,05/22/2015,05/22/2015 11:38:09 AM,05/22/2015 11:38:29 AM,05/22/2015 11:40:02 AM,05/22/2015 11:40:15 AM,05/22/2015 11:43:44 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,No Merit,05/22/2015 11:51:51 AM,5300 Block of GEARY BLVD,San Francisco,94121,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7805803412447, -122.476708282444)",151421527-55 -151870421,E08,15071264,Medical Incident,07/06/2015,07/05/2015,07/06/2015 05:27:33 AM,07/06/2015 05:29:24 AM,07/06/2015 05:30:38 AM,07/06/2015 05:33:02 AM,07/06/2015 05:34:25 AM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Code 2 Transport,07/06/2015 05:55:56 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151870421-E08 -152370335,KM03,15090165,Medical Incident,08/25/2015,08/24/2015,08/25/2015 02:49:06 AM,08/25/2015 02:50:43 AM,08/25/2015 02:51:59 AM,08/25/2015 02:52:34 AM,08/25/2015 03:09:06 AM,08/25/2015 03:26:30 AM,08/25/2015 03:43:05 AM,Code 2 Transport,08/25/2015 04:14:15 AM,200 Block of SAWYER ST,San Francisco,94134,B09,44,6263,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7146687723374, -122.413812172304)",152370335-KM03 -153010002,E29,15115320,Structure Fire,10/27/2015,10/27/2015,10/27/2015 11:59:45 PM,10/28/2015 12:01:10 AM,10/28/2015 12:01:20 AM,10/28/2015 12:02:12 AM,10/28/2015 12:03:49 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 01:50:10 AM,100 Block of CONNECTICUT ST,San Francisco,94107,B03,29,2425,3,3,3,true,Fire,1,ENGINE,1,3,10,Potrero Hill,"(37.7644288111227, -122.397744028791)",153010002-E29 -151032436,72,15039003,Medical Incident,04/13/2015,04/13/2015,04/13/2015 03:54:18 PM,04/13/2015 03:56:34 PM,04/13/2015 03:57:32 PM,04/13/2015 03:57:47 PM,04/13/2015 04:01:47 PM,04/13/2015 05:01:39 PM,04/13/2015 05:12:30 PM,Code 2 Transport,04/13/2015 05:32:58 PM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",151032436-72 -141100158,T06,14037094,Medical Incident,04/20/2014,04/20/2014,04/20/2014 01:45:58 PM,04/20/2014 01:48:11 PM,04/20/2014 01:50:12 PM,04/20/2014 01:50:12 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Code 3 Transport,04/20/2014 02:58:51 PM,100 Block of OTIS ST,SAN FRANCISCO,94103,B02,36,5125,,3,3,false,Potentially Life-Threatening,1,TRUCK,7,2,6,Mission,"(37.7709133372974, -122.420304994325)",141100158-T06 -141140350,92,14038617,Medical Incident,04/24/2014,04/24/2014,04/24/2014 08:45:58 PM,04/24/2014 08:47:54 PM,04/24/2014 08:48:14 PM,04/24/2014 08:48:20 PM,04/24/2014 09:04:33 PM,04/24/2014 09:18:59 PM,04/24/2014 09:24:17 PM,Code 2 Transport,04/24/2014 10:02:36 PM,1800 Block of BUSH ST,SAN FRANCISCO,94109,B04,38,3363,,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",141140350-92 -160942773,79,16037361,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:37:26 PM,04/03/2016 05:41:02 PM,04/03/2016 05:42:49 PM,04/03/2016 05:42:58 PM,04/03/2016 05:50:14 PM,04/03/2016 06:12:25 PM,04/03/2016 06:14:25 PM,Code 2 Transport,04/03/2016 06:43:19 PM,0 Block of 29TH ST,San Francisco,94110,B06,32,5625,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7439537432975, -122.421430545849)",160942773-79 -160943478,75,16037435,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:45:02 PM,04/03/2016 09:47:19 PM,04/03/2016 09:47:40 PM,04/03/2016 09:47:49 PM,04/03/2016 09:55:22 PM,04/03/2016 10:15:13 PM,04/03/2016 10:39:27 PM,Code 2 Transport,04/03/2016 10:59:37 PM,3400 Block of PIERCE ST,San Francisco,94123,B04,16,3662,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8021393814718, -122.439755551917)",160943478-75 -143100888,E11,14109651,Structure Fire,11/06/2014,11/06/2014,11/06/2014 09:06:19 AM,11/06/2014 09:06:47 AM,11/06/2014 09:08:08 AM,11/06/2014 09:09:49 AM,11/06/2014 09:11:44 AM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,Fire,11/06/2014 09:31:56 AM,600 Block of DOLORES ST,San Francisco,94110,B02,7,5251,3,3,3,true,Alarm,1,ENGINE,4,6,8,Mission,"(37.7594385840269, -122.425726898435)",143100888-E11 -161001385,54,16039735,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:47:38 AM,04/09/2016 11:48:17 AM,04/09/2016 11:49:57 AM,04/09/2016 11:50:05 AM,04/09/2016 11:57:05 AM,04/09/2016 12:17:33 PM,04/09/2016 12:45:07 PM,Code 2 Transport,04/09/2016 01:19:20 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",161001385-54 -151670686,88,15063758,Medical Incident,06/16/2015,06/16/2015,06/16/2015 08:18:33 AM,06/16/2015 08:19:38 AM,06/16/2015 08:20:14 AM,06/16/2015 08:21:31 AM,06/16/2015 08:24:32 AM,06/16/2015 08:40:57 AM,04/25/2016 01:09:59 PM,Code 2 Transport,06/16/2015 09:43:46 AM,1200 Block of 19TH AVE,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.764496492767, -122.47737779766)",151670686-88 -152780308,61,15106503,Medical Incident,10/05/2015,10/04/2015,10/05/2015 03:29:50 AM,10/05/2015 03:31:27 AM,10/05/2015 03:33:16 AM,10/05/2015 03:35:15 AM,10/05/2015 03:42:48 AM,10/05/2015 03:58:44 AM,10/05/2015 04:24:47 AM,Code 2 Transport,10/05/2015 04:53:26 AM,300 Block of GUTTENBERG ST,San Francisco,94112,B09,43,6231,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7091043095113, -122.44247658842)",152780308-61 -150040900,E44,15001411,Medical Incident,01/04/2015,01/04/2015,01/04/2015 09:06:12 AM,01/04/2015 09:06:35 AM,01/04/2015 09:06:42 AM,01/04/2015 09:07:49 AM,01/04/2015 09:11:57 AM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Code 3 Transport,01/04/2015 09:30:39 AM,1700 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",150040900-E44 -160982389,AM16,16038977,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:00:16 PM,04/07/2016 03:01:11 PM,04/07/2016 03:22:02 PM,04/07/2016 03:22:02 PM,04/07/2016 03:27:39 PM,04/07/2016 03:33:26 PM,04/07/2016 03:52:42 PM,Code 2 Transport,04/07/2016 04:23:48 PM,19TH AV/BUCKINGHAM WY,San Francisco,94132,B08,19,8726,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.725692147795, -122.475108832537)",160982389-AM16 -152531418,E07,15096682,Medical Incident,09/10/2015,09/10/2015,09/10/2015 11:05:32 AM,09/10/2015 11:07:50 AM,09/10/2015 11:08:53 AM,09/10/2015 11:09:19 AM,09/10/2015 11:13:54 AM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Code 2 Transport,09/10/2015 11:27:31 AM,600 Block of VERMONT ST,San Francisco,94107,B06,7,542,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7614775148441, -122.404127651173)",152531418-E07 -141783135,E32,14061562,Citizen Assist / Service Call,06/27/2014,06/27/2014,06/27/2014 08:28:46 PM,06/27/2014 08:29:29 PM,06/27/2014 08:29:49 PM,06/27/2014 08:30:52 PM,06/27/2014 08:33:37 PM,04/25/2016 01:16:32 PM,04/25/2016 01:16:32 PM,No Merit,06/27/2014 08:35:22 PM,0 Block of JUSTIN DR,San Francisco,94112,B06,32,5641,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7340952151096, -122.422644655212)",141783135-E32 -160922533,53,16036517,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 04:41:20 PM,04/01/2016 04:41:20 PM,04/01/2016 04:41:48 PM,04/01/2016 04:41:56 PM,04/01/2016 04:44:35 PM,04/01/2016 04:55:25 PM,04/01/2016 05:15:31 PM,Code 2 Transport,04/01/2016 05:50:29 PM,29TH ST/MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7440376332296, -122.420893660653)",160922533-53 -153390868,E07,15130374,Medical Incident,12/05/2015,12/05/2015,12/05/2015 08:00:09 AM,12/05/2015 08:00:42 AM,12/05/2015 08:01:15 AM,12/05/2015 08:02:51 AM,12/05/2015 08:04:46 AM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Code 2 Transport,12/05/2015 08:06:38 AM,19TH ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.760367023694, -122.417025815146)",153390868-E07 -160931281,KM04,16036808,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:53:47 AM,04/02/2016 10:55:05 AM,04/02/2016 10:56:52 AM,04/02/2016 10:57:35 AM,04/02/2016 11:01:24 AM,04/02/2016 11:18:35 AM,04/02/2016 11:35:21 AM,Code 2 Transport,04/02/2016 12:13:22 PM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7696117252991, -122.450474552631)",160931281-KM04 -150661141,E35,15025174,Alarms,03/07/2015,03/07/2015,03/07/2015 09:57:29 AM,03/07/2015 09:58:58 AM,03/07/2015 10:01:09 AM,03/07/2015 10:01:59 AM,03/07/2015 10:05:35 AM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Fire,03/07/2015 10:12:23 AM,300 Block of MAIN ST,San Francisco,94105,B03,35,2117,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",150661141-E35 -151361277,E06,15051635,Alarms,05/16/2015,05/16/2015,05/16/2015 10:35:03 AM,05/16/2015 10:36:47 AM,05/16/2015 10:37:02 AM,05/16/2015 10:40:07 AM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Fire,05/16/2015 10:57:11 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Alarm,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",151361277-E06 -151572364,E41,15060006,Structure Fire,06/06/2015,06/06/2015,06/06/2015 04:24:19 PM,06/06/2015 04:24:19 PM,06/06/2015 04:24:29 PM,06/06/2015 04:25:25 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Fire,06/06/2015 04:27:00 PM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,false,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",151572364-E41 -150783105,63,15030010,Medical Incident,03/19/2015,03/19/2015,03/19/2015 06:02:20 PM,03/19/2015 06:03:51 PM,03/19/2015 06:04:23 PM,03/19/2015 06:04:34 PM,03/19/2015 06:14:50 PM,03/19/2015 06:29:23 PM,03/19/2015 06:43:12 PM,Code 2 Transport,03/19/2015 07:13:38 PM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",150783105-63 -141682217,E06,14058001,Alarms,06/17/2014,06/17/2014,06/17/2014 03:43:06 PM,06/17/2014 03:43:51 PM,06/17/2014 03:45:59 PM,06/17/2014 03:45:59 PM,06/17/2014 03:45:59 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/17/2014 03:46:23 PM,9TH ST/MARKET ST,San Francisco,94103,B02,36,2337,3,3,3,false,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",141682217-E06 -143031761,B10,14107094,Structure Fire,10/30/2014,10/30/2014,10/30/2014 11:32:25 AM,10/30/2014 11:32:25 AM,10/30/2014 11:32:46 AM,10/30/2014 11:33:11 AM,10/30/2014 11:36:58 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Fire,10/30/2014 11:45:19 AM,3100 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,562,3,3,3,false,Alarm,1,CHIEF,2,6,9,Bernal Heights,"(37.748166431151, -122.412573078107)",143031761-B10 -141763079,KM11,14060868,Medical Incident,06/25/2014,06/25/2014,06/25/2014 07:18:30 PM,06/25/2014 07:19:07 PM,06/25/2014 07:23:00 PM,06/25/2014 07:23:00 PM,06/25/2014 07:28:14 PM,06/25/2014 07:39:21 PM,06/25/2014 07:56:35 PM,Code 2 Transport,06/25/2014 08:36:50 PM,3100 Block of 24TH ST,San Francisco,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Mission,"(37.7524180928571, -122.414623849785)",141763079-KM11 -150191242,B01,15007466,Alarms,01/19/2015,01/19/2015,01/19/2015 11:05:03 AM,01/19/2015 11:06:31 AM,01/19/2015 11:06:37 AM,01/19/2015 11:08:03 AM,01/19/2015 11:12:11 AM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Fire,01/19/2015 11:14:01 AM,2500 Block of PACIFIC AVE,San Francisco,94115,B04,38,3653,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7930860507179, -122.437212642346)",150191242-B01 -150753214,E23,15028915,Traffic Collision,03/16/2015,03/16/2015,03/16/2015 07:07:33 PM,03/16/2015 07:07:33 PM,03/16/2015 07:07:45 PM,03/16/2015 07:09:17 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Patient Declined Transport,03/16/2015 07:58:55 PM,37TH AV/JUDAH ST,San Francisco,94122,B08,23,7571,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7608504344545, -122.49628381234)",150753214-E23 -150392021,T03,15015210,Gas Leak (Natural and LP Gases),02/08/2015,02/08/2015,02/08/2015 02:09:52 PM,02/08/2015 02:11:00 PM,02/08/2015 02:11:12 PM,02/08/2015 02:12:58 PM,02/08/2015 02:14:38 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/08/2015 02:19:37 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7855629695287, -122.412993783039)",150392021-T03 -142080962,RS1,14072010,Water Rescue,07/27/2014,07/27/2014,07/27/2014 08:38:39 AM,07/27/2014 08:38:39 AM,07/27/2014 08:40:35 AM,07/27/2014 08:40:35 AM,07/27/2014 08:40:35 AM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Code 2 Transport,07/27/2014 08:51:02 AM,GREAT HY/BALBOA ST,San Francisco,94121,B07,34,7316,3,3,3,false,Fire,1,RESCUE SQUAD,1,7,1,Outer Richmond,"(37.7750759610096, -122.511294923938)",142080962-RS1 -150213573,B02,15008372,Alarms,01/21/2015,01/21/2015,01/21/2015 08:59:56 PM,01/21/2015 09:01:18 PM,01/21/2015 09:01:36 PM,01/21/2015 09:03:25 PM,01/21/2015 09:08:11 PM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Fire,01/21/2015 09:08:24 PM,800 Block of NOE ST,San Francisco,94114,B06,24,5466,3,3,3,true,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7558203733016, -122.432361430986)",150213573-B02 -143440841,E39,14122246,Medical Incident,12/10/2014,12/10/2014,12/10/2014 08:25:54 AM,12/10/2014 08:30:11 AM,12/10/2014 08:30:27 AM,12/10/2014 08:31:43 AM,12/10/2014 08:34:37 AM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Code 2 Transport,12/10/2014 08:50:43 AM,100 Block of ROBINHOOD DR,San Francisco,94127,B09,39,8257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7369377936586, -122.457079998255)",143440841-E39 -160940231,AM20,16037120,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:21:07 AM,04/03/2016 01:21:07 AM,04/03/2016 01:40:27 AM,04/03/2016 01:40:42 AM,04/03/2016 01:52:40 AM,04/03/2016 02:01:30 AM,04/03/2016 02:15:03 AM,Code 2 Transport,04/03/2016 02:40:30 AM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160940231-AM20 -153444144,E41,15132631,Alarms,12/10/2015,12/10/2015,12/10/2015 11:47:35 PM,12/10/2015 11:48:47 PM,12/10/2015 11:49:00 PM,12/10/2015 11:51:27 PM,12/10/2015 11:51:27 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Fire,12/11/2015 12:00:21 AM,1400 Block of PINE ST,San Francisco,94109,B04,3,3122,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7897794249332, -122.419678979482)",153444144-E41 -150750451,65,15028655,Medical Incident,03/16/2015,03/15/2015,03/16/2015 06:17:58 AM,03/16/2015 06:18:49 AM,03/16/2015 06:19:10 AM,03/16/2015 06:19:18 AM,03/16/2015 06:45:44 AM,03/16/2015 06:45:51 AM,03/16/2015 06:54:56 AM,Code 2 Transport,03/16/2015 07:06:41 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",150750451-65 -141344147,74,14045956,Medical Incident,05/14/2014,05/14/2014,05/14/2014 10:41:20 PM,05/14/2014 10:41:49 PM,05/14/2014 10:42:40 PM,05/14/2014 10:44:11 PM,05/14/2014 10:49:57 PM,05/14/2014 11:00:25 PM,05/14/2014 11:25:09 PM,Code 2 Transport,05/15/2014 12:09:39 AM,200 Block of PENINSULA AVE,San Francisco,94134,B10,44,6272,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7123170703778, -122.3988695936)",141344147-74 -141362368,KM06,14046620,Medical Incident,05/16/2014,05/16/2014,05/16/2014 04:28:54 PM,05/16/2014 04:29:19 PM,05/16/2014 04:29:39 PM,05/16/2014 04:33:04 PM,05/16/2014 04:36:41 PM,05/16/2014 04:47:44 PM,05/16/2014 05:10:24 PM,Code 2 Transport,05/16/2014 05:40:14 PM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7352738344938, -122.391413470729)",141362368-KM06 -150460879,61,15017819,Medical Incident,02/15/2015,02/15/2015,02/15/2015 08:12:29 AM,02/15/2015 08:12:56 AM,02/15/2015 08:14:53 AM,02/15/2015 08:15:13 AM,02/15/2015 08:21:10 AM,02/15/2015 08:38:37 AM,02/15/2015 08:52:22 AM,Code 2 Transport,02/15/2015 09:25:04 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",150460879-61 -151193933,77,15045196,Medical Incident,04/29/2015,04/29/2015,04/29/2015 10:35:07 PM,04/29/2015 10:38:48 PM,04/29/2015 10:39:11 PM,04/29/2015 10:39:20 PM,04/29/2015 10:46:33 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Unable to Locate,04/29/2015 10:50:04 PM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",151193933-77 -151904040,53,15072708,Medical Incident,07/09/2015,07/09/2015,07/09/2015 10:34:49 PM,07/09/2015 10:34:49 PM,07/09/2015 10:35:39 PM,07/09/2015 10:36:54 PM,07/09/2015 10:45:52 PM,07/09/2015 10:56:42 PM,07/09/2015 11:05:14 PM,Code 2 Transport,07/09/2015 11:42:05 PM,WALLER ST/POTOMAC ST,San Francisco,94117,B05,6,3635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.770860911053, -122.432717263713)",151904040-53 -160982169,59,16038945,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:05:25 PM,04/07/2016 02:06:09 PM,04/07/2016 02:07:03 PM,04/07/2016 02:07:18 PM,04/07/2016 02:09:33 PM,04/07/2016 02:40:02 PM,04/07/2016 03:05:18 PM,Code 2 Transport,04/07/2016 03:40:34 PM,FERN ST/POLK ST,San Francisco,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",160982169-59 -161000034,58,16039552,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:08:48 AM,04/09/2016 12:10:31 AM,04/09/2016 12:13:25 AM,04/09/2016 12:13:25 AM,04/09/2016 12:33:43 AM,04/09/2016 12:33:45 AM,04/09/2016 12:48:06 AM,Code 2 Transport,04/09/2016 01:19:45 AM,400 Block of RIVERA ST,San Francisco,94116,B08,40,736,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7470568621984, -122.470919286644)",161000034-58 -160990907,77,16039229,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:15:34 AM,04/08/2016 09:16:40 AM,04/08/2016 09:18:03 AM,04/08/2016 09:18:23 AM,04/08/2016 09:44:47 AM,04/08/2016 09:44:49 AM,04/08/2016 09:51:52 AM,Code 2 Transport,04/08/2016 10:20:15 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160990907-77 -142012104,T05,14069625,Alarms,07/20/2014,07/20/2014,07/20/2014 04:27:28 PM,07/20/2014 04:30:05 PM,07/20/2014 04:30:20 PM,07/20/2014 04:32:03 PM,07/20/2014 04:34:45 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Fire,07/20/2014 04:40:13 PM,800 Block of FRANKLIN ST,San Francisco,94102,B02,36,3216,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7824435992634, -122.422484951715)",142012104-T05 -141273548,74,14043263,Medical Incident,05/07/2014,05/07/2014,05/07/2014 06:48:57 PM,05/07/2014 06:49:20 PM,05/07/2014 06:49:44 PM,05/07/2014 06:51:14 PM,05/07/2014 06:53:34 PM,05/07/2014 07:17:51 PM,05/07/2014 07:37:08 PM,Code 2 Transport,05/07/2014 08:04:02 PM,400 Block of PERSIA AVE,San Francisco,94112,B09,43,6134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7213809153444, -122.432441314928)",141273548-74 -141273392,E03,14043257,Medical Incident,05/07/2014,05/07/2014,05/07/2014 06:07:34 PM,05/07/2014 06:09:36 PM,05/07/2014 06:11:41 PM,05/07/2014 06:13:29 PM,05/07/2014 06:16:52 PM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Code 3 Transport,05/07/2014 06:30:16 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",141273392-E03 -152491880,74,15095120,Medical Incident,09/06/2015,09/06/2015,09/06/2015 01:55:25 PM,09/06/2015 01:57:03 PM,09/06/2015 01:57:13 PM,09/06/2015 01:57:24 PM,09/06/2015 02:02:02 PM,09/06/2015 02:17:08 PM,09/06/2015 02:23:03 PM,Code 2 Transport,09/06/2015 03:07:44 PM,2000 Block of GROVE ST,San Francisco,94117,B05,21,4535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.7743000833126, -122.450329287413)",152491880-74 -143590265,B10,14128327,Medical Incident,12/25/2014,12/24/2014,12/25/2014 02:33:39 AM,12/25/2014 02:33:39 AM,12/25/2014 02:34:30 AM,12/25/2014 02:35:25 AM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,Cancelled,12/25/2014 02:42:16 AM,700 Block of JERROLD AVE,San Francisco,94124,B10,17,6713,A,E,3,false,Potentially Life-Threatening,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7296708213986, -122.373440500902)",143590265-B10 -152492580,57,15095186,Medical Incident,09/06/2015,09/06/2015,09/06/2015 05:13:43 PM,09/06/2015 05:15:43 PM,09/06/2015 05:16:07 PM,09/06/2015 05:17:19 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,No Merit,09/06/2015 05:20:52 PM,300 Block of FOERSTER ST,San Francisco,94112,B09,15,8235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7311168721104, -122.448794202063)",152492580-57 -143581199,B10,14128091,Alarms,12/24/2014,12/24/2014,12/24/2014 11:05:46 AM,12/24/2014 11:07:09 AM,12/24/2014 11:07:20 AM,12/24/2014 11:08:54 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/24/2014 11:13:05 AM,1500 Block of WALLACE AVE,San Francisco,94124,B10,17,6546,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7269904434139, -122.390132474192)",143581199-B10 -150362699,T16,15013954,Alarms,02/05/2015,02/05/2015,02/05/2015 05:47:25 PM,02/05/2015 05:48:59 PM,02/05/2015 05:49:09 PM,02/05/2015 05:50:40 PM,02/05/2015 05:53:24 PM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/05/2015 06:19:14 PM,2400 Block of PACIFIC AVE,San Francisco,94115,B04,38,3546,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.793187777528, -122.435546343579)",150362699-T16 -160942448,AM16,16037325,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:10:27 PM,04/03/2016 04:10:27 PM,04/03/2016 04:11:13 PM,04/03/2016 04:11:57 PM,04/03/2016 04:15:32 PM,04/03/2016 04:26:49 PM,04/03/2016 04:39:35 PM,Code 2 Transport,04/03/2016 05:11:37 PM,JESSIE ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",160942448-AM16 -142600296,E22,14090717,Structure Fire,09/17/2014,09/16/2014,09/17/2014 03:39:33 AM,09/17/2014 03:40:16 AM,09/17/2014 03:40:47 AM,09/17/2014 03:42:01 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 03:46:57 AM,3100 Block of CLEMENT ST,San Francisco,94121,B07,14,7237,3,3,3,false,Alarm,1,ENGINE,10,7,1,Outer Richmond,"(37.7815971138281, -122.492906734383)",142600296-E22 -160981277,63,16038854,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 10:09:50 AM,04/07/2016 10:09:50 AM,04/07/2016 10:11:26 AM,04/07/2016 10:11:36 AM,04/07/2016 10:23:01 AM,04/07/2016 10:34:56 AM,04/07/2016 10:45:10 AM,Code 2 Transport,04/07/2016 11:23:18 AM,16TH ST/GUERRERO ST,San Francisco,94103,B02,6,5235,2,A,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7647834522541, -122.424102685064)",160981277-63 -151273570,77,15048312,Medical Incident,05/07/2015,05/07/2015,05/07/2015 08:17:16 PM,05/07/2015 08:18:33 PM,05/07/2015 08:20:55 PM,05/07/2015 08:21:19 PM,05/07/2015 08:27:50 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Unable to Locate,05/07/2015 08:33:20 PM,1100 Block of GEARY BLVD,San Francisco,94109,B04,3,3222,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7855297633293, -122.422199701995)",151273570-77 -160970824,73,16038317,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:28:47 AM,04/06/2016 08:31:01 AM,04/06/2016 08:32:35 AM,04/06/2016 08:32:49 AM,04/06/2016 08:51:37 AM,04/06/2016 09:08:44 AM,04/06/2016 09:22:58 AM,Code 2 Transport,04/06/2016 10:04:24 AM,FULTON ST/LARKIN ST,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",160970824-73 -160993545,86,16039469,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:57:28 PM,04/08/2016 08:58:52 PM,04/08/2016 08:59:21 PM,04/08/2016 08:59:32 PM,04/08/2016 09:00:42 PM,04/08/2016 09:18:22 PM,04/08/2016 09:49:25 PM,Code 2 Transport,04/08/2016 10:28:48 PM,MISSION ST/7TH ST,San Francisco,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160993545-86 -161000422,AM18,16039610,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:16:31 AM,04/09/2016 03:16:31 AM,04/09/2016 03:16:50 AM,04/09/2016 03:17:50 AM,04/09/2016 03:20:18 AM,04/09/2016 03:52:29 AM,04/09/2016 04:03:14 AM,Code 2 Transport,04/09/2016 04:34:12 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",161000422-AM18 -160982501,68,16038987,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:28:12 PM,04/07/2016 03:30:17 PM,04/07/2016 03:31:45 PM,04/07/2016 03:32:01 PM,04/07/2016 03:39:19 PM,04/07/2016 03:54:29 PM,04/07/2016 04:13:17 PM,Code 2 Transport,04/07/2016 04:56:12 PM,500 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7586965959617, -122.397057095842)",160982501-68 -142850326,E16,14100277,Medical Incident,10/12/2014,10/11/2014,10/12/2014 01:46:27 AM,10/12/2014 01:47:59 AM,10/12/2014 01:48:13 AM,10/12/2014 01:50:25 AM,10/12/2014 01:51:29 AM,04/25/2016 01:14:36 PM,04/25/2016 01:14:36 PM,Code 2 Transport,10/12/2014 01:59:51 AM,1900 Block of UNION ST,San Francisco,94123,B04,16,3443,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7976099463654, -122.431831857814)",142850326-E16 -141462152,E08,14050194,Medical Incident,05/26/2014,05/26/2014,05/26/2014 05:02:27 PM,05/26/2014 05:03:36 PM,05/26/2014 05:20:10 PM,05/26/2014 05:20:24 PM,05/26/2014 05:22:31 PM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,Code 2 Transport,05/26/2014 05:30:52 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",141462152-E08 -153202174,E12,15123079,Medical Incident,11/16/2015,11/16/2015,11/16/2015 02:46:02 PM,11/16/2015 02:48:02 PM,11/16/2015 02:48:43 PM,11/16/2015 02:49:25 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,No Merit,11/16/2015 02:50:54 PM,400 Block of STANYAN ST,San Francisco,94117,B07,21,4556,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",153202174-E12 -160990469,AM24,16039195,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:16:48 AM,04/08/2016 06:19:36 AM,04/08/2016 06:21:23 AM,04/08/2016 06:21:59 AM,04/08/2016 06:34:18 AM,04/08/2016 06:46:10 AM,04/08/2016 07:22:00 AM,Code 2 Transport,04/08/2016 07:40:55 AM,0 Block of GARLINGTON CT,San Francisco,94124,B10,17,6622,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7325070966122, -122.384396871119)",160990469-AM24 -151562119,57,15059558,Medical Incident,06/05/2015,06/05/2015,06/05/2015 02:30:57 PM,06/05/2015 02:33:24 PM,06/05/2015 02:35:26 PM,06/05/2015 02:35:46 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,No Merit,06/05/2015 02:42:08 PM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",151562119-57 -141240245,86,14042084,Medical Incident,05/04/2014,05/04/2014,05/04/2014 05:33:32 PM,05/04/2014 05:36:10 PM,05/04/2014 05:36:29 PM,05/04/2014 05:37:21 PM,05/04/2014 05:41:44 PM,05/04/2014 05:47:01 PM,05/04/2014 06:06:00 PM,Code 2 Transport,05/04/2014 06:28:20 PM,1100 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",141240245-86 -150371105,AM10,15014192,Medical Incident,02/06/2015,02/06/2015,02/06/2015 09:28:53 AM,02/06/2015 09:28:53 AM,02/06/2015 09:29:54 AM,02/06/2015 09:30:29 AM,02/06/2015 09:41:52 AM,02/06/2015 10:11:45 AM,02/06/2015 10:22:56 AM,Code 3 Transport,02/06/2015 11:06:15 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7822954570262, -122.400718230959)",150371105-AM10 -143401944,E03,14120780,Medical Incident,12/06/2014,12/06/2014,12/06/2014 01:45:16 PM,12/06/2014 01:45:28 PM,12/06/2014 01:45:55 PM,12/06/2014 01:46:06 PM,12/06/2014 01:49:12 PM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Code 2 Transport,12/06/2014 01:56:39 PM,1100 Block of GOUGH ST,San Francisco,94109,B04,3,3261,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Western Addition,"(37.784358514886, -122.424559253604)",143401944-E03 -143141344,KM03,14111210,Medical Incident,11/10/2014,11/10/2014,11/10/2014 11:43:56 AM,11/10/2014 11:45:15 AM,11/10/2014 11:45:36 AM,11/10/2014 11:46:09 AM,11/10/2014 11:58:38 AM,11/10/2014 12:08:00 PM,11/10/2014 12:35:56 PM,Code 2 Transport,11/10/2014 01:10:02 PM,800 Block of HARRISON ST,San Francisco,94107,B03,8,2216,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7799507434806, -122.400778586916)",143141344-KM03 -160953810,82,16037801,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:32:23 PM,04/04/2016 09:40:25 PM,04/04/2016 09:40:39 PM,04/04/2016 09:40:54 PM,04/04/2016 09:48:56 PM,04/04/2016 11:03:23 PM,04/04/2016 11:16:19 PM,Code 2 Transport,04/04/2016 11:46:18 PM,500 Block of ATHENS ST,San Francisco,94112,B09,43,6156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7193385286348, -122.43024788404)",160953810-82 -141440173,72,14049286,Medical Incident,05/24/2014,05/23/2014,05/24/2014 12:57:36 AM,05/24/2014 12:59:36 AM,05/24/2014 01:00:05 AM,05/24/2014 01:03:57 AM,05/24/2014 01:16:49 AM,05/24/2014 01:34:05 AM,05/24/2014 01:49:25 AM,Code 2 Transport,05/24/2014 02:50:29 AM,16TH ST/VERMONT ST,San Francisco,94103,B02,29,2422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7659581887586, -122.404623338223)",141440173-72 -150592271,T12,15022601,Alarms,02/28/2015,02/28/2015,02/28/2015 03:37:04 PM,02/28/2015 03:38:45 PM,02/28/2015 03:38:59 PM,02/28/2015 03:40:51 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Fire,02/28/2015 03:44:27 PM,3700 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,false,Alarm,1,TRUCK,3,7,1,Inner Richmond,"(37.7813631196138, -122.45944025715)",150592271-T12 -143330554,E13,14117901,Structure Fire,11/29/2014,11/28/2014,11/29/2014 05:02:40 AM,11/29/2014 05:02:40 AM,11/29/2014 05:02:48 AM,11/29/2014 05:04:41 AM,11/29/2014 05:07:05 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 05:07:34 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",143330554-E13 -142031933,KM06,14070268,Medical Incident,07/22/2014,07/22/2014,07/22/2014 02:24:26 PM,07/22/2014 02:24:26 PM,07/22/2014 02:38:47 PM,07/22/2014 02:38:59 PM,07/22/2014 02:46:48 PM,07/22/2014 03:04:25 PM,07/22/2014 03:16:34 PM,Code 2 Transport,07/22/2014 04:06:37 PM,OFARRELL ST/POLK ST,San Francisco,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",142031933-KM06 -141523186,87,14052380,Traffic Collision,06/01/2014,06/01/2014,06/01/2014 10:40:37 PM,06/01/2014 10:45:17 PM,06/01/2014 10:46:58 PM,06/01/2014 10:47:08 PM,06/01/2014 11:01:06 PM,06/01/2014 11:25:51 PM,06/01/2014 11:40:41 PM,Code 2 Transport,06/02/2014 12:43:00 AM,200 Block of 18TH AVE,San Francisco,94121,B03,29,2436,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.783294686314, -122.477372735277)",141523186-87 -152830065,75,15108480,Medical Incident,10/10/2015,10/09/2015,10/10/2015 12:15:45 AM,10/10/2015 12:15:45 AM,10/10/2015 12:19:02 AM,10/10/2015 12:19:38 AM,10/10/2015 12:36:42 AM,10/10/2015 12:36:44 AM,10/10/2015 12:55:32 AM,Code 2 Transport,10/10/2015 01:42:34 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",152830065-75 -151972050,E23,15075157,Electrical Hazard,07/16/2015,07/16/2015,07/16/2015 02:44:28 PM,07/16/2015 02:45:20 PM,07/16/2015 02:45:59 PM,07/16/2015 02:47:04 PM,07/16/2015 02:49:36 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Fire,07/16/2015 02:55:01 PM,1900 Block of 46TH AVE,San Francisco,94116,B08,23,7715,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7501609656807, -122.505281479896)",151972050-E23 -160972919,82,16038522,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:18:55 PM,04/06/2016 04:19:52 PM,04/06/2016 04:20:16 PM,04/06/2016 04:20:25 PM,04/06/2016 04:29:39 PM,04/06/2016 04:52:27 PM,04/06/2016 05:20:13 PM,Code 2 Transport,04/06/2016 05:43:46 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160972919-82 -150293824,E05,15011371,Structure Fire,01/29/2015,01/29/2015,01/29/2015 11:26:28 PM,01/29/2015 11:26:52 PM,01/29/2015 11:30:49 PM,01/29/2015 11:31:14 PM,01/29/2015 11:36:02 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Other,01/30/2015 01:14:51 AM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,true,Fire,2,ENGINE,9,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",150293824-E05 -152093448,B02,15079797,Alarms,07/28/2015,07/28/2015,07/28/2015 08:46:13 PM,07/28/2015 08:47:16 PM,07/28/2015 08:50:00 PM,07/28/2015 08:51:01 PM,07/28/2015 08:54:29 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Fire,07/28/2015 08:57:33 PM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,3,3,3,false,Alarm,1,CHIEF,2,3,6,South of Market,"(37.7720751846477, -122.408746829681)",152093448-B02 -152763405,86,15105945,Medical Incident,10/03/2015,10/03/2015,10/03/2015 07:28:33 PM,10/03/2015 07:28:59 PM,10/03/2015 07:29:36 PM,10/03/2015 07:29:45 PM,10/03/2015 07:34:52 PM,10/03/2015 07:48:02 PM,10/03/2015 08:02:23 PM,Code 2 Transport,10/03/2015 08:22:21 PM,1300 Block of THOMAS AVE,San Francisco,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",152763405-86 -141580565,89,14054330,Medical Incident,06/07/2014,06/06/2014,06/07/2014 06:45:09 AM,06/07/2014 06:46:13 AM,06/07/2014 07:01:50 AM,06/07/2014 07:02:00 AM,06/07/2014 07:05:31 AM,06/07/2014 07:31:39 AM,06/07/2014 07:46:56 AM,Code 2 Transport,06/07/2014 08:14:58 AM,1100 Block of OAKDALE AVE,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",141580565-89 -151462214,E29,15055594,Medical Incident,05/26/2015,05/26/2015,05/26/2015 03:06:50 PM,05/26/2015 03:07:12 PM,05/26/2015 03:07:34 PM,05/26/2015 03:08:39 PM,05/26/2015 03:11:47 PM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Code 2 Transport,05/26/2015 03:16:15 PM,1100 Block of BRYANT ST,San Francisco,94103,B02,29,2346,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.770545304965, -122.409386500738)",151462214-E29 -153220220,E35,15123703,Medical Incident,11/18/2015,11/17/2015,11/18/2015 02:43:56 AM,11/18/2015 02:46:51 AM,11/18/2015 02:47:16 AM,11/18/2015 02:49:16 AM,11/18/2015 02:52:17 AM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Code 2 Transport,11/18/2015 03:02:54 AM,400 Block of HARRISON ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7863775741107, -122.392446006482)",153220220-E35 -160922022,KM13,16036469,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:29:05 PM,04/01/2016 02:31:29 PM,04/01/2016 02:31:49 PM,04/01/2016 02:32:17 PM,04/01/2016 02:47:19 PM,04/01/2016 03:08:46 PM,04/01/2016 03:32:10 PM,Code 2 Transport,04/01/2016 03:57:39 PM,1000 Block of BRODERICK ST,San Francisco,94115,B05,21,4241,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,2,Western Addition,"(37.7798968099593, -122.440561330041)",160922022-KM13 -160952660,AM08,16037696,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:20:11 PM,04/04/2016 04:20:11 PM,04/04/2016 04:20:47 PM,04/04/2016 04:22:15 PM,04/04/2016 04:34:24 PM,04/04/2016 04:59:47 PM,04/04/2016 05:15:37 PM,Code 2 Transport,04/04/2016 05:57:07 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160952660-AM08 -160951935,76,16037645,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:27:32 PM,04/04/2016 01:28:31 PM,04/04/2016 01:29:49 PM,04/04/2016 01:30:16 PM,04/04/2016 01:34:13 PM,04/04/2016 01:42:36 PM,04/04/2016 02:07:58 PM,Code 2 Transport,04/04/2016 02:55:01 PM,1700 Block of MARKET ST,San Francisco,94102,B02,36,3311,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7722683129989, -122.423098219736)",160951935-76 -151930161,E17,15073507,Medical Incident,07/12/2015,07/11/2015,07/12/2015 01:03:23 AM,07/12/2015 01:03:52 AM,07/12/2015 01:04:08 AM,07/12/2015 01:05:32 AM,04/25/2016 01:09:31 PM,04/25/2016 01:09:31 PM,04/25/2016 01:09:31 PM,Cancelled,07/12/2015 01:07:37 AM,1500 Block of SHAFTER AVE,San Francisco,94124,B10,17,6547,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7304640154692, -122.38983115909)",151930161-E17 -151033025,71,15039058,Medical Incident,04/13/2015,04/13/2015,04/13/2015 06:04:32 PM,04/13/2015 06:08:22 PM,04/13/2015 06:13:44 PM,04/13/2015 06:13:44 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Code 2 Transport,04/13/2015 06:14:01 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",151033025-71 -150112777,82,15004464,Medical Incident,01/11/2015,01/11/2015,01/11/2015 06:06:52 PM,01/11/2015 06:08:14 PM,01/11/2015 06:34:33 PM,01/11/2015 06:34:33 PM,01/11/2015 06:36:37 PM,01/11/2015 06:46:12 PM,01/11/2015 07:11:02 PM,Code 2 Transport,01/11/2015 07:32:11 PM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",150112777-82 -152330273,E03,15088697,Medical Incident,08/21/2015,08/20/2015,08/21/2015 02:15:59 AM,08/21/2015 02:16:56 AM,08/21/2015 02:17:17 AM,08/21/2015 02:19:07 AM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Code 2 Transport,08/21/2015 02:22:28 AM,2000 Block of SACRAMENTO ST,San Francisco,94109,B04,38,3326,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.7907164232714, -122.426614088537)",152330273-E03 -153311352,KM04,15127351,Medical Incident,11/27/2015,11/27/2015,11/27/2015 11:53:01 AM,11/27/2015 11:53:47 AM,11/27/2015 11:54:00 AM,11/27/2015 11:54:32 AM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,Code 2 Transport,11/27/2015 11:54:48 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",153311352-KM04 -160961561,63,16037987,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:57:22 AM,04/05/2016 11:58:03 AM,04/05/2016 11:58:39 AM,04/05/2016 12:00:57 PM,04/05/2016 12:02:40 PM,04/05/2016 12:18:18 PM,04/05/2016 12:47:07 PM,Code 2 Transport,04/05/2016 01:07:50 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",160961561-63 -152430594,82,15092578,Medical Incident,08/31/2015,08/30/2015,08/31/2015 06:44:50 AM,08/31/2015 06:47:44 AM,08/31/2015 06:48:07 AM,08/31/2015 06:48:15 AM,08/31/2015 06:48:15 AM,08/31/2015 07:23:46 AM,08/31/2015 07:37:05 AM,Code 2 Transport,08/31/2015 08:12:41 AM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",152430594-82 -151352620,58,15051354,Medical Incident,05/15/2015,05/15/2015,05/15/2015 04:30:39 PM,05/15/2015 04:32:04 PM,05/15/2015 04:35:35 PM,05/15/2015 04:35:43 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Code 2 Transport,05/15/2015 04:37:02 PM,3RD ST/KIRKWOOD AV,San Francisco,94124,B10,25,6467,2,2,2,true,Non Life-threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7379553967402, -122.389587380179)",151352620-58 -160992755,KM09,16039402,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:24:43 PM,04/08/2016 05:25:50 PM,04/08/2016 05:26:57 PM,04/08/2016 05:29:26 PM,04/08/2016 05:38:20 PM,04/08/2016 06:12:10 PM,04/08/2016 06:27:33 PM,Code 2 Transport,04/08/2016 06:59:25 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160992755-KM09 -160952682,64,16037698,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:25:23 PM,04/04/2016 04:27:02 PM,04/04/2016 04:27:35 PM,04/04/2016 04:28:03 PM,04/04/2016 04:34:57 PM,04/04/2016 04:56:56 PM,04/04/2016 05:17:49 PM,Code 2 Transport,04/04/2016 05:58:24 PM,900 Block of ELLIS ST,San Francisco,94109,B02,3,3221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7837758711954, -122.421841195546)",160952682-64 -143020113,55,14106457,Medical Incident,10/29/2014,10/28/2014,10/29/2014 01:00:03 AM,10/29/2014 01:00:21 AM,10/29/2014 01:00:53 AM,10/29/2014 01:01:01 AM,10/29/2014 01:20:48 AM,10/29/2014 01:36:46 AM,10/29/2014 01:41:04 AM,Code 2 Transport,10/29/2014 02:53:51 AM,1100 Block of MCALLISTER ST,San Francisco,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7786327618285, -122.431321447148)",143020113-55 -143393828,E28,14120525,Medical Incident,12/05/2014,12/05/2014,12/05/2014 10:10:32 PM,12/05/2014 10:11:32 PM,12/05/2014 10:13:16 PM,12/05/2014 10:14:28 PM,12/05/2014 10:16:46 PM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Patient Declined Transport,12/05/2014 10:30:51 PM,600 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8044727215137, -122.415562636307)",143393828-E28 -142132905,RC3,14073963,Traffic Collision,08/01/2014,08/01/2014,08/01/2014 07:08:55 PM,08/01/2014 07:09:50 PM,08/01/2014 07:12:19 PM,08/01/2014 07:13:28 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Other,08/01/2014 07:18:18 PM,200 Block of GENEVA AVE,San Francisco,94112,B09,33,8371,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",142132905-RC3 -160921667,61,16036436,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 12:54:01 PM,04/01/2016 12:54:26 PM,04/01/2016 12:54:43 PM,04/01/2016 12:54:57 PM,04/01/2016 12:59:29 PM,04/01/2016 01:18:20 PM,04/01/2016 01:37:23 PM,Code 2 Transport,04/01/2016 02:16:51 PM,MARKET ST/CHURCH ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",160921667-61 -150353847,E07,15013629,Structure Fire,02/04/2015,02/04/2015,02/04/2015 08:31:13 PM,02/04/2015 08:32:28 PM,02/04/2015 08:34:24 PM,02/04/2015 08:34:24 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Fire,02/04/2015 08:37:14 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Alarm,1,ENGINE,12,2,9,Mission,"(37.7643732096664, -122.417478491468)",150353847-E07 -141713050,T08,14059160,Structure Fire,06/20/2014,06/20/2014,06/20/2014 07:00:12 PM,06/20/2014 07:00:12 PM,06/20/2014 07:00:19 PM,06/20/2014 07:01:00 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Fire,06/20/2014 07:03:35 PM,2ND ST/TOWNSEND ST,San Francisco,94107,B03,8,2154,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7806067563614, -122.390527234709)",141713050-T08 -160972106,KM06,16038431,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:22:47 PM,04/06/2016 01:23:15 PM,04/06/2016 01:23:46 PM,04/06/2016 01:24:31 PM,04/06/2016 01:27:49 PM,04/06/2016 01:41:20 PM,04/06/2016 01:46:58 PM,Code 3 Transport,04/06/2016 02:42:23 PM,3200 Block of ANZA ST,San Francisco,94121,B07,14,7176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7782934340332, -122.482993121582)",160972106-KM06 -143472785,E02,14123903,Medical Incident,12/13/2014,12/13/2014,12/13/2014 05:41:27 PM,12/13/2014 05:41:50 PM,12/13/2014 05:43:13 PM,12/13/2014 05:43:50 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,No Merit,12/13/2014 05:46:28 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",143472785-E02 -151451238,KM09,15055119,Medical Incident,05/25/2015,05/25/2015,05/25/2015 11:19:34 AM,05/25/2015 11:19:34 AM,05/25/2015 11:22:31 AM,05/25/2015 11:22:55 AM,05/25/2015 11:36:03 AM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,Patient Declined Transport,05/25/2015 12:19:24 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",151451238-KM09 -142880509,E41,14101401,Medical Incident,10/15/2014,10/14/2014,10/15/2014 06:29:37 AM,10/15/2014 06:31:48 AM,10/15/2014 06:32:12 AM,10/15/2014 06:34:04 AM,10/15/2014 06:35:44 AM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,Code 2 Transport,10/15/2014 06:40:02 AM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",142880509-E41 -160972343,82,16038459,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:15:41 PM,04/06/2016 02:16:58 PM,04/06/2016 02:17:34 PM,04/06/2016 02:17:40 PM,04/06/2016 02:23:13 PM,04/06/2016 02:54:58 PM,04/06/2016 03:22:07 PM,Code 2 Transport,04/06/2016 03:57:52 PM,1000 Block of GREEN ST,San Francisco,94133,B01,41,1533,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Russian Hill,"(37.7986303849434, -122.416405936463)",160972343-82 -153054226,KM07,15117361,Medical Incident,11/01/2015,11/01/2015,11/01/2015 09:55:17 PM,11/01/2015 09:55:54 PM,11/01/2015 09:56:55 PM,11/01/2015 09:59:28 PM,11/01/2015 10:01:54 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Cancelled,11/01/2015 10:03:22 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",153054226-KM07 -150253480,E28,15009823,Alarms,01/25/2015,01/25/2015,01/25/2015 10:31:36 PM,01/25/2015 10:32:27 PM,01/25/2015 10:32:44 PM,01/25/2015 10:34:03 PM,01/25/2015 10:36:01 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,Fire,01/25/2015 10:40:04 PM,2600 Block of JONES ST,San Francisco,94133,B01,28,1521,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8056853345021, -122.416914137852)",150253480-E28 -150221822,E01,15008585,Medical Incident,01/22/2015,01/22/2015,01/22/2015 01:34:40 PM,01/22/2015 01:34:53 PM,01/22/2015 01:37:01 PM,01/22/2015 01:38:35 PM,01/22/2015 01:50:42 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Code 3 Transport,01/22/2015 02:28:55 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7801303744947, -122.409871449933)",150221822-E01 -160991903,77,16039321,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:01:05 PM,04/08/2016 02:01:05 PM,04/08/2016 02:03:01 PM,04/08/2016 02:03:14 PM,04/08/2016 02:10:48 PM,04/08/2016 02:19:00 PM,04/08/2016 02:44:49 PM,Code 2 Transport,04/08/2016 03:11:26 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160991903-77 -150691043,72,15026289,Traffic Collision,03/10/2015,03/10/2015,03/10/2015 09:43:18 AM,03/10/2015 09:43:54 AM,03/10/2015 09:44:06 AM,03/10/2015 09:44:38 AM,03/10/2015 09:47:32 AM,03/10/2015 10:03:50 AM,03/10/2015 10:17:02 AM,Code 2 Transport,03/10/2015 10:39:35 AM,100 Block of VALENCIA ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7707273342452, -122.422514586133)",150691043-72 -151350936,62,15051195,Medical Incident,05/15/2015,05/15/2015,05/15/2015 08:40:08 AM,05/15/2015 08:41:14 AM,05/15/2015 08:43:50 AM,05/15/2015 08:44:24 AM,05/15/2015 08:58:11 AM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Unable to Locate,05/15/2015 09:01:23 AM,LINCOLN WY/MARTIN LUTHER KING DR,San Francisco,94122,B08,23,7722,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",151350936-62 -160932757,71,16036970,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:45:19 PM,04/02/2016 05:46:34 PM,04/02/2016 05:57:21 PM,04/02/2016 05:57:21 PM,04/02/2016 06:07:12 PM,04/02/2016 06:24:55 PM,04/02/2016 06:38:56 PM,Code 2 Transport,04/02/2016 07:05:11 PM,100 Block of LOEHR ST,San Francisco,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7125873012965, -122.413542850427)",160932757-71 -151673676,E07,15064044,Gas Leak (Natural and LP Gases),06/16/2015,06/16/2015,06/16/2015 11:11:36 PM,06/16/2015 11:12:46 PM,06/16/2015 11:14:01 PM,06/16/2015 11:15:17 PM,06/16/2015 11:18:01 PM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Fire,06/16/2015 11:24:27 PM,1200 Block of TREAT AVE,San Francisco,94110,B06,7,5533,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7501648383073, -122.412831855469)",151673676-E07 -161002842,60,16039899,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:33:14 PM,04/09/2016 07:35:02 PM,04/09/2016 07:35:32 PM,04/09/2016 07:35:40 PM,04/09/2016 07:43:41 PM,04/09/2016 08:02:03 PM,04/09/2016 08:28:13 PM,Code 2 Transport,04/09/2016 09:00:20 PM,400 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7899091346907, -122.406975887776)",161002842-60 -160963761,61,16038185,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:54:32 PM,04/05/2016 08:54:32 PM,04/05/2016 08:54:47 PM,04/05/2016 08:55:08 PM,04/05/2016 08:59:39 PM,04/05/2016 09:15:59 PM,04/05/2016 09:45:04 PM,Code 2 Transport,04/05/2016 10:13:28 PM,1200 Block of JAMESTOWN AVE,San Francisco,94124,B10,44,6542,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7208108804162, -122.397802583176)",160963761-61 -153392887,56,15130550,Medical Incident,12/05/2015,12/05/2015,12/05/2015 05:32:39 PM,12/05/2015 05:32:39 PM,12/05/2015 05:36:37 PM,12/05/2015 05:36:44 PM,12/05/2015 05:55:53 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Medical Examiner,12/05/2015 06:02:38 PM,600 Block of 16TH AV,San Francisco,94118,B07,31,7155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7758059176427, -122.474822787851)",153392887-56 -142921919,54,14103031,Medical Incident,10/19/2014,10/19/2014,10/19/2014 01:52:11 PM,10/19/2014 01:53:57 PM,10/19/2014 01:54:18 PM,10/19/2014 01:55:20 PM,10/19/2014 02:00:43 PM,10/19/2014 02:21:18 PM,10/19/2014 02:49:36 PM,Code 2 Transport,10/19/2014 03:33:23 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",142921919-54 -150073143,AM16,15002824,Medical Incident,01/07/2015,01/07/2015,01/07/2015 07:07:57 PM,01/07/2015 07:07:57 PM,01/07/2015 07:08:47 PM,01/07/2015 07:09:24 PM,01/07/2015 07:16:52 PM,01/07/2015 07:33:58 PM,01/07/2015 07:41:26 PM,Code 2 Transport,01/07/2015 08:37:26 PM,6TH AV/CALIFORNIA ST,San Francisco,94118,B07,31,7126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7849939711361, -122.464572158227)",150073143-AM16 -160970605,KM13,16038294,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:13:55 AM,04/06/2016 07:14:44 AM,04/06/2016 07:30:12 AM,04/06/2016 07:30:17 AM,04/06/2016 07:30:17 AM,04/06/2016 07:55:29 AM,04/06/2016 08:14:07 AM,Code 2 Transport,04/06/2016 08:44:44 AM,0 Block of IRVING ST,San Francisco,94122,B05,12,7321,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Inner Sunset,"(37.7643374924183, -122.458207337502)",160970605-KM13 -142942756,55,14103775,Medical Incident,10/21/2014,10/21/2014,10/21/2014 05:21:55 PM,10/21/2014 05:23:58 PM,10/21/2014 05:29:22 PM,10/21/2014 05:29:48 PM,10/21/2014 05:38:59 PM,10/21/2014 05:58:33 PM,10/21/2014 06:25:36 PM,Code 2 Transport,10/21/2014 06:33:02 PM,0 Block of HENRY ST,San Francisco,94114,B05,6,5212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7667838886869, -122.432228457227)",142942756-55 -151480680,E38,15056231,Medical Incident,05/28/2015,05/28/2015,05/28/2015 08:06:04 AM,05/28/2015 08:06:57 AM,05/28/2015 08:07:02 AM,05/28/2015 08:08:33 AM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Code 2 Transport,05/28/2015 08:09:46 AM,0 Block of CLEARY CT,San Francisco,94109,B04,3,3323,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,5,Western Addition,"(37.7841466012998, -122.426445754167)",151480680-E38 -142832533,58,14099741,Medical Incident,10/10/2014,10/10/2014,10/10/2014 05:00:20 PM,10/10/2014 05:01:25 PM,10/10/2014 05:06:43 PM,10/10/2014 05:06:53 PM,10/10/2014 05:14:56 PM,10/10/2014 05:33:42 PM,10/10/2014 06:02:23 PM,Code 2 Transport,10/10/2014 06:36:05 PM,BOSWORTH ST/DIAMOND ST,San Francisco,94131,B06,26,8146,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",142832533-58 -151580319,E35,15060195,Medical Incident,06/07/2015,06/06/2015,06/07/2015 01:57:42 AM,06/07/2015 01:58:17 AM,06/07/2015 01:58:31 AM,06/07/2015 01:58:57 AM,06/07/2015 02:00:50 AM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Code 2 Transport,06/07/2015 02:07:28 AM,HOWARD ST/1ST ST,San Francisco,94105,B03,35,2141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7885359297329, -122.396034766801)",151580319-E35 -151843797,63,15070399,Medical Incident,07/03/2015,07/03/2015,07/03/2015 10:07:15 PM,07/03/2015 10:07:28 PM,07/03/2015 10:07:49 PM,07/03/2015 10:08:09 PM,07/03/2015 10:11:51 PM,07/03/2015 10:40:58 PM,07/03/2015 11:08:19 PM,Code 2 Transport,07/03/2015 11:44:07 PM,3700 Block of 25TH ST,San Francisco,94110,B06,11,5536,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7503931278259, -122.423283062895)",151843797-63 -161002363,KM08,16039846,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:05:21 PM,04/09/2016 05:06:50 PM,04/09/2016 05:06:56 PM,04/09/2016 05:08:38 PM,04/09/2016 05:09:37 PM,04/09/2016 05:26:46 PM,04/09/2016 05:26:49 PM,Code 2 Transport,04/09/2016 05:48:59 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",161002363-KM08 -160942883,KM05,16037369,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:12:42 PM,04/03/2016 06:12:42 PM,04/03/2016 06:13:09 PM,04/03/2016 06:13:34 PM,04/03/2016 06:22:32 PM,04/03/2016 06:36:07 PM,04/03/2016 06:59:38 PM,Code 2 Transport,04/03/2016 08:00:12 PM,7TH ST/STEVENSON ST,San Francisco,94103,B02,36,2316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7800058680664, -122.411933410089)",160942883-KM05 -160981505,AM10,16038884,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:14:17 AM,04/07/2016 11:16:38 AM,04/07/2016 11:18:19 AM,04/07/2016 11:19:44 AM,04/07/2016 11:32:13 AM,04/07/2016 11:32:16 AM,04/07/2016 11:54:43 AM,Code 2 Transport,04/07/2016 12:27:06 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,3,3,false,Non Life-threatening,1,PRIVATE,3,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160981505-AM10 -160982179,72,16038949,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:07:45 PM,04/07/2016 02:08:21 PM,04/07/2016 02:09:27 PM,04/07/2016 02:09:58 PM,04/07/2016 02:21:43 PM,04/07/2016 02:43:46 PM,04/07/2016 02:57:23 PM,Code 2 Transport,04/07/2016 03:43:47 PM,1300 Block of PIERCE ST,San Francisco,94115,B05,5,3647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",160982179-72 -160932800,KM12,16036976,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:58:59 PM,04/02/2016 05:58:59 PM,04/02/2016 05:59:18 PM,04/02/2016 06:00:06 PM,04/02/2016 06:05:31 PM,04/02/2016 06:14:42 PM,04/02/2016 06:19:37 PM,Code 2 Transport,04/02/2016 07:01:35 PM,SACRAMENTO ST/MASON ST,San Francisco,94108,B01,41,1414,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7927617757511, -122.41100673577)",160932800-KM12 -160942116,75,16037290,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:30:03 PM,04/03/2016 02:31:01 PM,04/03/2016 02:31:20 PM,04/03/2016 02:31:31 PM,04/03/2016 02:37:53 PM,04/03/2016 02:50:26 PM,04/03/2016 02:51:25 PM,Code 2 Transport,04/03/2016 03:27:36 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",160942116-75 -152693406,T12,15103224,Elevator / Escalator Rescue,09/26/2015,09/26/2015,09/26/2015 08:12:45 PM,09/26/2015 08:13:41 PM,09/26/2015 08:14:25 PM,09/26/2015 08:15:44 PM,09/26/2015 08:18:43 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Other,09/26/2015 08:47:11 PM,1200 Block of FUNSTON AVE,San Francisco,94122,B08,22,7346,3,3,3,false,Alarm,1,TRUCK,1,7,5,Inner Sunset,"(37.7647909798939, -122.470730253887)",152693406-T12 -150502530,KM08,15019398,Medical Incident,02/19/2015,02/19/2015,02/19/2015 04:31:46 PM,02/19/2015 04:32:57 PM,02/19/2015 04:33:18 PM,02/19/2015 04:34:06 PM,02/19/2015 04:41:39 PM,02/19/2015 05:05:01 PM,02/19/2015 05:31:50 PM,Code 2 Transport,02/19/2015 06:00:41 PM,500 Block of COLLEGE AVE,San Francisco,94112,B06,32,5642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7325875769032, -122.423413236667)",150502530-KM08 -143120626,77,14110387,Medical Incident,11/08/2014,11/07/2014,11/08/2014 06:08:53 AM,11/08/2014 06:10:00 AM,11/08/2014 06:10:32 AM,11/08/2014 06:10:42 AM,11/08/2014 06:29:57 AM,11/08/2014 06:42:24 AM,11/08/2014 07:14:30 AM,Code 2 Transport,11/08/2014 07:46:14 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143120626-77 -142103524,87,14072947,Medical Incident,07/29/2014,07/29/2014,07/29/2014 10:15:19 PM,07/29/2014 10:16:22 PM,07/29/2014 10:16:38 PM,07/29/2014 10:16:53 PM,07/29/2014 10:27:40 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Patient Declined Transport,07/29/2014 10:37:54 PM,JUDAH ST/48TH AV,San Francisco,94122,B08,23,7723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7603298172556, -122.508067560262)",142103524-87 -143163655,KM02,14112080,Medical Incident,11/12/2014,11/12/2014,11/12/2014 09:47:40 PM,11/12/2014 09:47:40 PM,11/12/2014 09:50:57 PM,11/12/2014 09:51:06 PM,11/12/2014 09:51:06 PM,11/12/2014 09:56:35 PM,04/25/2016 01:14:02 PM,Code 2 Transport,11/12/2014 10:36:18 PM,5TH ST/MARKET ST,San Francisco,94103,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",143163655-KM02 -152660806,KM09,15101759,Medical Incident,09/23/2015,09/23/2015,09/23/2015 08:17:35 AM,09/23/2015 08:18:48 AM,09/23/2015 08:20:05 AM,09/23/2015 08:20:05 AM,09/23/2015 08:27:19 AM,09/23/2015 08:49:29 AM,09/23/2015 09:38:24 AM,Code 2 Transport,09/23/2015 09:57:43 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2158,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",152660806-KM09 -150463073,KM04,15018048,Medical Incident,02/15/2015,02/15/2015,02/15/2015 06:57:06 PM,02/15/2015 06:59:05 PM,02/15/2015 07:02:03 PM,02/15/2015 07:02:03 PM,02/15/2015 07:09:12 PM,02/15/2015 07:25:38 PM,02/15/2015 07:46:06 PM,Code 2 Transport,02/15/2015 08:05:35 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,North Beach,"(37.8082633159603, -122.414972542075)",150463073-KM04 -143352148,E01,14118743,Medical Incident,12/01/2014,12/01/2014,12/01/2014 02:57:23 PM,12/01/2014 02:57:36 PM,12/01/2014 02:59:52 PM,12/01/2014 03:01:38 PM,12/01/2014 03:05:29 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Code 2 Transport,12/01/2014 03:15:02 PM,600 Block of THE EMBARCADERO,San Francisco,94111,B03,8,2134,3,3,3,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",143352148-E01 -160922076,82,16036473,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:44:35 PM,04/01/2016 02:45:16 PM,04/01/2016 02:46:33 PM,04/01/2016 02:46:49 PM,04/01/2016 02:51:36 PM,04/01/2016 03:20:09 PM,04/01/2016 03:39:51 PM,Code 2 Transport,04/01/2016 04:08:13 PM,FOLSOM ST/COLUMBIA SQUARE ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7778565371375, -122.406436335794)",160922076-82 -160922059,KM12,16036471,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:40:40 PM,04/01/2016 02:41:32 PM,04/01/2016 02:41:55 PM,04/01/2016 02:42:37 PM,04/01/2016 02:53:48 PM,04/01/2016 03:05:10 PM,04/01/2016 03:32:02 PM,Code 2 Transport,04/01/2016 04:06:30 PM,1800 Block of VICENTE ST,San Francisco,94116,B08,18,7523,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",160922059-KM12 -142142710,E07,14074304,Medical Incident,08/02/2014,08/02/2014,08/02/2014 06:50:42 PM,08/02/2014 06:51:46 PM,08/02/2014 06:52:13 PM,08/02/2014 06:54:29 PM,04/25/2016 01:15:53 PM,04/25/2016 01:15:53 PM,04/25/2016 01:15:53 PM,Patient Declined Transport,08/02/2014 06:55:26 PM,22ND ST/BRYANT ST,San Francisco,94110,B06,7,5474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7559984420071, -122.409433069774)",142142710-E07 -150162087,74,15006350,Medical Incident,01/16/2015,01/16/2015,01/16/2015 02:34:30 PM,01/16/2015 02:35:31 PM,01/16/2015 02:36:21 PM,01/16/2015 02:39:00 PM,01/16/2015 02:42:23 PM,01/16/2015 03:00:38 PM,01/16/2015 03:05:15 PM,Code 3 Transport,01/16/2015 03:34:03 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150162087-74 -160983607,89,16039102,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:40:30 PM,04/07/2016 08:42:27 PM,04/07/2016 08:42:59 PM,04/07/2016 08:43:08 PM,04/07/2016 08:55:08 PM,04/07/2016 09:18:42 PM,04/07/2016 09:28:06 PM,Code 2 Transport,04/07/2016 10:02:43 PM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8061880612091, -122.416243833913)",160983607-89 -153161157,KM08,15121374,Medical Incident,11/12/2015,11/12/2015,11/12/2015 10:00:46 AM,11/12/2015 10:00:46 AM,11/12/2015 10:03:58 AM,11/12/2015 10:04:38 AM,11/12/2015 10:17:16 AM,11/12/2015 10:34:10 AM,11/12/2015 10:42:02 AM,Code 2 Transport,11/12/2015 11:55:10 AM,POLK ST/WILLOW ST,San Francisco,94109,B02,3,3115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7835677840088, -122.419273434964)",153161157-KM08 -152521042,83,15096256,Medical Incident,09/09/2015,09/09/2015,09/09/2015 09:09:44 AM,09/09/2015 09:12:06 AM,09/09/2015 09:12:29 AM,09/09/2015 09:12:39 AM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,No Merit,09/09/2015 09:19:18 AM,2100 Block of WASHINGTON ST,San Francisco,94109,B04,38,3331,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7923752292486, -122.428636628697)",152521042-83 -161001037,66,16039688,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:46:32 AM,04/09/2016 09:48:46 AM,04/09/2016 09:49:38 AM,04/09/2016 09:49:44 AM,04/09/2016 09:58:27 AM,04/09/2016 10:23:11 AM,04/09/2016 10:28:40 AM,Code 2 Transport,04/09/2016 10:46:03 AM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7662536102334, -122.425864046062)",161001037-66 -141802612,T03,14062324,Alarms,06/29/2014,06/29/2014,06/29/2014 05:34:41 PM,06/29/2014 05:34:41 PM,06/29/2014 05:34:57 PM,06/29/2014 05:34:57 PM,06/29/2014 05:34:57 PM,04/25/2016 01:16:29 PM,04/25/2016 01:16:29 PM,Fire,06/29/2014 05:35:59 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",141802612-T03 -160930156,56,16036684,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:59:55 AM,04/02/2016 12:59:55 AM,04/02/2016 01:01:26 AM,04/02/2016 01:01:33 AM,04/02/2016 01:10:43 AM,04/02/2016 01:20:17 AM,04/02/2016 01:35:30 AM,Code 2 Transport,04/02/2016 02:10:07 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160930156-56 -153133204,63,15120419,Medical Incident,11/09/2015,11/09/2015,11/09/2015 07:50:28 PM,11/09/2015 07:50:28 PM,11/09/2015 07:52:57 PM,11/09/2015 07:53:02 PM,11/09/2015 08:04:22 PM,11/09/2015 08:12:43 PM,11/09/2015 08:29:13 PM,Code 2 Transport,11/09/2015 08:58:46 PM,1600 Block of PALOU AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7344812749194, -122.391912066975)",153133204-63 -151273418,T11,15048292,Structure Fire,05/07/2015,05/07/2015,05/07/2015 07:26:15 PM,05/07/2015 07:27:32 PM,05/07/2015 07:28:10 PM,05/07/2015 07:30:46 PM,05/07/2015 07:32:25 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Fire,05/07/2015 07:34:58 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,true,Alarm,1,TRUCK,6,6,9,Mission,"(37.7581008598273, -122.41454675379)",151273418-T11 -152781126,KM01,15106599,Medical Incident,10/05/2015,10/05/2015,10/05/2015 10:12:36 AM,10/05/2015 10:13:06 AM,10/05/2015 10:13:39 AM,10/05/2015 10:14:15 AM,10/05/2015 10:17:54 AM,10/05/2015 10:37:34 AM,10/05/2015 10:45:50 AM,Code 2 Transport,10/05/2015 11:22:33 AM,400 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",152781126-KM01 -152780317,70,15106505,Medical Incident,10/05/2015,10/04/2015,10/05/2015 03:36:17 AM,10/05/2015 03:40:08 AM,10/05/2015 03:41:23 AM,10/05/2015 03:42:12 AM,10/05/2015 03:53:22 AM,04/25/2016 01:07:57 PM,04/25/2016 01:07:57 PM,Gone on Arrival,10/05/2015 03:54:25 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",152780317-70 -143553043,75,14127020,Traffic Collision,12/21/2014,12/21/2014,12/21/2014 05:59:15 PM,12/21/2014 05:59:15 PM,12/21/2014 06:16:13 PM,12/21/2014 06:16:23 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Other,12/21/2014 06:17:18 PM,ALEMANY BL/SICKLES AV,San Francisco,94112,B09,33,8371,2,2,2,true,Non Life-threatening,1,MEDIC,6,9,11,Outer Mission,"(37.7106966624975, -122.455157828365)",143553043-75 -152121202,AM02,15080694,Medical Incident,07/31/2015,07/31/2015,07/31/2015 10:41:23 AM,07/31/2015 10:41:23 AM,07/31/2015 10:41:45 AM,07/31/2015 10:42:54 AM,07/31/2015 10:45:46 AM,07/31/2015 10:52:45 AM,07/31/2015 11:11:45 AM,Code 2 Transport,07/31/2015 12:00:26 PM,SANCHEZ ST/17TH ST,San Francisco,94114,B05,6,5252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,8,Castro/Upper Market,"(37.7627526712607, -122.430726724513)",152121202-AM02 -152823855,E03,15108441,Medical Incident,10/09/2015,10/09/2015,10/09/2015 09:53:14 PM,10/09/2015 09:54:59 PM,10/09/2015 09:56:37 PM,10/09/2015 09:56:37 PM,10/09/2015 09:56:37 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,No Merit,10/09/2015 10:04:39 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",152823855-E03 -152791394,RS1,15107013,Medical Incident,10/06/2015,10/06/2015,10/06/2015 11:22:25 AM,10/06/2015 11:22:49 AM,10/06/2015 11:23:11 AM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Patient Declined Transport,10/06/2015 11:24:00 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",152791394-RS1 -150462411,KM06,15017975,Medical Incident,02/15/2015,02/15/2015,02/15/2015 04:01:33 PM,02/15/2015 04:01:33 PM,02/15/2015 04:06:08 PM,02/15/2015 04:09:43 PM,02/15/2015 04:31:06 PM,02/15/2015 04:31:10 PM,02/15/2015 04:37:49 PM,Code 2 Transport,02/15/2015 05:18:05 PM,CYRIL MAGNIN ST/OFARRELL ST,San Francisco,94102,B01,1,1363,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",150462411-KM06 -160972032,71,16038425,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:04:19 PM,04/06/2016 01:06:29 PM,04/06/2016 01:08:53 PM,04/06/2016 01:09:28 PM,04/06/2016 01:10:38 PM,04/06/2016 01:33:07 PM,04/06/2016 01:55:18 PM,Code 2 Transport,04/06/2016 02:18:31 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160972032-71 -160981824,72,16038910,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:30:23 PM,04/07/2016 12:31:11 PM,04/07/2016 12:32:09 PM,04/07/2016 12:32:19 PM,04/07/2016 12:37:53 PM,04/07/2016 12:44:15 PM,04/07/2016 01:18:09 PM,Code 2 Transport,04/07/2016 01:42:18 PM,18TH ST/DOLORES ST,San Francisco,94110,B02,7,5422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.761427134441, -122.426076501845)",160981824-72 -141580544,68,14054329,Citizen Assist / Service Call,06/07/2014,06/06/2014,06/07/2014 06:27:04 AM,06/07/2014 06:28:45 AM,06/07/2014 06:40:50 AM,06/07/2014 06:43:29 AM,06/07/2014 06:52:03 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Patient Declined Transport,06/07/2014 07:34:45 AM,300 Block of GRANT AVE,San Francisco,94108,B01,13,1315,3,3,3,true,Alarm,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7898465521571, -122.405516597507)",141580544-68 -142894127,E08,14102064,Medical Incident,10/16/2014,10/16/2014,10/16/2014 11:12:36 PM,10/16/2014 11:13:24 PM,10/16/2014 11:15:28 PM,10/16/2014 11:15:28 PM,10/16/2014 11:17:57 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/16/2014 11:18:48 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",142894127-E08 -151081970,65,15040924,Medical Incident,04/18/2015,04/18/2015,04/18/2015 02:43:10 PM,04/18/2015 02:43:10 PM,04/18/2015 02:45:01 PM,04/18/2015 02:45:16 PM,04/18/2015 02:52:23 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Patient Declined Transport,04/18/2015 03:50:28 PM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6116,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7242679564906, -122.435032247159)",151081970-65 -160981234,KM13,16038848,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:56:15 AM,04/07/2016 09:58:46 AM,04/07/2016 09:59:17 AM,04/07/2016 10:00:29 AM,04/07/2016 10:16:18 AM,04/07/2016 10:46:50 AM,04/07/2016 11:20:13 AM,Code 2 Transport,04/07/2016 11:51:58 AM,0 Block of HOWTH ST,San Francisco,94112,B09,15,8314,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.722497260146, -122.449776721981)",160981234-KM13 -151914278,64,15073087,Medical Incident,07/10/2015,07/10/2015,07/10/2015 11:37:05 PM,07/10/2015 11:39:20 PM,07/11/2015 12:01:02 AM,07/11/2015 12:01:52 AM,07/11/2015 12:10:35 AM,07/11/2015 12:22:20 AM,07/11/2015 12:41:30 AM,Code 2 Transport,07/11/2015 01:10:04 AM,1800 Block of MARKET ST,San Francisco,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Hayes Valley,"(37.7717810622866, -122.423715048532)",151914278-64 -152933634,61,15112733,Medical Incident,10/20/2015,10/20/2015,10/20/2015 08:28:52 PM,10/20/2015 08:30:21 PM,10/20/2015 08:31:14 PM,10/20/2015 08:31:34 PM,10/20/2015 08:43:26 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,No Merit,10/20/2015 08:48:12 PM,STEINER ST/HERMANN ST,San Francisco,94117,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7700348593472, -122.431717011702)",152933634-61 -142481063,RC1,14086359,Traffic Collision,09/05/2014,09/05/2014,09/05/2014 09:50:51 AM,09/05/2014 09:51:19 AM,09/05/2014 09:52:12 AM,09/05/2014 09:52:12 AM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,Patient Declined Transport,09/05/2014 09:56:43 AM,CALIFORNIA ST/SANSOME ST,San Francisco,94104,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7930602991213, -122.401126343901)",142481063-RC1 -152233430,83,15085118,Medical Incident,08/11/2015,08/11/2015,08/11/2015 07:24:08 PM,08/11/2015 07:24:38 PM,08/11/2015 07:24:57 PM,08/11/2015 07:25:08 PM,08/11/2015 07:27:10 PM,08/11/2015 07:59:39 PM,08/11/2015 08:18:07 PM,Code 2 Transport,08/11/2015 08:30:56 PM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7941136505366, -122.407046655058)",152233430-83 -151432343,70,15054451,Medical Incident,05/23/2015,05/23/2015,05/23/2015 04:18:12 PM,05/23/2015 04:19:17 PM,05/23/2015 04:19:32 PM,05/23/2015 04:20:29 PM,05/23/2015 04:25:19 PM,05/23/2015 04:39:54 PM,05/23/2015 04:58:58 PM,Code 3 Transport,05/23/2015 05:45:02 PM,3300 Block of DIVISADERO ST,San Francisco,94123,B04,16,4211,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.800434371856, -122.443008701026)",151432343-70 -142190778,E43,14075896,Medical Incident,08/07/2014,08/07/2014,08/07/2014 08:29:00 AM,08/07/2014 08:30:21 AM,08/07/2014 08:30:40 AM,08/07/2014 08:31:54 AM,08/07/2014 08:35:17 AM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,Code 3 Transport,08/07/2014 08:46:17 AM,0 Block of KNOTT CT,San Francisco,94112,B09,43,6231,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7090597470935, -122.441217055674)",142190778-E43 -152711749,E01,15103793,Structure Fire,09/28/2015,09/28/2015,09/28/2015 12:49:29 PM,09/28/2015 12:49:56 PM,09/28/2015 12:50:36 PM,09/28/2015 12:51:06 PM,09/28/2015 12:52:48 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Fire,09/28/2015 01:09:44 PM,0 Block of STOCKTON ST,San Francisco,94102,B03,1,1322,3,3,3,true,Alarm,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7860199001268, -122.406349577387)",152711749-E01 -160950466,79,16037522,Medical Incident,04/04/2016,04/03/2016,04/04/2016 06:37:06 AM,04/04/2016 06:37:06 AM,04/04/2016 06:37:32 AM,04/04/2016 06:37:40 AM,04/04/2016 06:44:53 AM,04/04/2016 06:54:06 AM,04/04/2016 07:14:27 AM,Code 2 Transport,04/04/2016 07:38:17 AM,400 Block of RHODE ISLAND ST,San Francisco,94107,B02,29,2422,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Potrero Hill,"(37.7641381616864, -122.402572368613)",160950466-79 -151523041,RC1,15058004,Medical Incident,06/01/2015,06/01/2015,06/01/2015 07:08:22 PM,06/01/2015 07:08:22 PM,06/01/2015 07:09:25 PM,06/01/2015 07:09:25 PM,06/01/2015 07:16:55 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Code 2 Transport,06/01/2015 07:30:17 PM,0 Block of BEACH ST,San Francisco,94133,B04,28,939,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",151523041-RC1 -152561812,E06,15097917,Alarms,09/13/2015,09/13/2015,09/13/2015 01:36:50 PM,09/13/2015 01:38:23 PM,09/13/2015 01:38:35 PM,09/13/2015 01:39:12 PM,09/13/2015 01:42:22 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,Fire,09/13/2015 01:50:11 PM,0 Block of DOLORES ST,San Francisco,94114,B02,6,5127,3,3,3,true,Alarm,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7684403182059, -122.426904863087)",152561812-E06 -141320145,B10,14044776,Structure Fire,05/12/2014,05/11/2014,05/12/2014 01:43:34 AM,05/12/2014 01:43:34 AM,05/12/2014 01:44:40 AM,05/12/2014 01:46:56 AM,05/12/2014 01:49:51 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Fire,05/12/2014 01:51:37 AM,2400 Block of 22ND ST,San Francisco,94110,B10,37,2551,3,3,3,false,Alarm,1,CHIEF,2,10,10,Potrero Hill,"(37.7569910867324, -122.405001139718)",141320145-B10 -151601900,E03,15061160,Medical Incident,06/09/2015,06/09/2015,06/09/2015 01:13:34 PM,06/09/2015 01:16:04 PM,06/09/2015 01:16:23 PM,06/09/2015 01:16:32 PM,06/09/2015 01:18:26 PM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Code 2 Transport,06/09/2015 01:20:03 PM,GOLDEN GATE AV/HYDE ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",151601900-E03 -142132494,E03,14073919,Structure Fire,08/01/2014,08/01/2014,08/01/2014 05:14:04 PM,08/01/2014 05:14:04 PM,08/01/2014 05:15:14 PM,08/01/2014 05:16:12 PM,08/01/2014 05:18:14 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Fire,08/01/2014 05:18:37 PM,TURK ST/HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",142132494-E03 -151221453,T09,15046252,Alarms,05/02/2015,05/02/2015,05/02/2015 12:08:51 PM,05/02/2015 12:09:54 PM,05/02/2015 12:10:20 PM,05/02/2015 12:14:07 PM,05/02/2015 12:16:49 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Fire,05/02/2015 12:24:03 PM,1000 Block of EVANS AV,San Francisco,94124,B10,25,6555,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7364596123052, -122.376840481121)",151221453-T09 -143562391,71,14127422,Medical Incident,12/22/2014,12/22/2014,12/22/2014 03:42:12 PM,12/22/2014 03:42:12 PM,12/22/2014 03:43:13 PM,12/22/2014 03:43:13 PM,12/22/2014 04:00:18 PM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,Patient Declined Transport,12/22/2014 04:32:57 PM,400 Block of ARBALLO DR,San Francisco,94132,B08,19,8583,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7194483276503, -122.483012514362)",143562391-71 -160954184,82,16037839,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:55:33 PM,04/04/2016 11:58:00 PM,04/05/2016 12:00:21 AM,04/05/2016 12:00:21 AM,04/05/2016 12:04:52 AM,04/05/2016 01:09:06 AM,04/05/2016 01:09:09 AM,Code 2 Transport,04/05/2016 01:39:48 AM,900 Block of SLOAT BLVD,San Francisco,94132,B08,19,7464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7345788586597, -122.481780926329)",160954184-82 -141020003,94,14034281,Medical Incident,04/12/2014,04/11/2014,04/12/2014 12:02:45 AM,04/12/2014 12:04:23 AM,04/12/2014 12:17:55 AM,04/12/2014 12:18:00 AM,04/25/2016 01:17:56 PM,04/25/2016 01:17:56 PM,04/25/2016 01:17:56 PM,No Merit,04/12/2014 12:18:05 AM,500 Block of MARKET ST,,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",141020003-94 -160923430,52,16036604,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 08:52:21 PM,04/01/2016 08:52:21 PM,04/01/2016 08:52:43 PM,04/01/2016 08:53:03 PM,04/01/2016 09:12:01 PM,04/01/2016 09:13:39 PM,04/01/2016 09:23:11 PM,Code 3 Transport,04/01/2016 10:18:21 PM,19TH AV/WINSTON DR,San Francisco,94132,B08,19,8725,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Lakeshore,"(37.7269907019127, -122.474900344293)",160923430-52 -141170219,93,14039536,Medical Incident,04/27/2014,04/27/2014,04/27/2014 03:20:27 PM,04/27/2014 03:21:51 PM,04/27/2014 03:23:20 PM,04/27/2014 03:23:20 PM,04/27/2014 03:26:03 PM,04/27/2014 03:43:52 PM,04/27/2014 03:56:52 PM,Code 2 Transport,04/27/2014 04:28:22 PM,1200 Block of NOE ST,,94114,B06,11,554,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7494248005842, -122.43174723)",141170219-93 -153173315,KM04,15121983,Medical Incident,11/13/2015,11/13/2015,11/13/2015 06:37:21 PM,11/13/2015 06:37:21 PM,11/13/2015 06:37:43 PM,11/13/2015 06:38:33 PM,11/13/2015 07:22:15 PM,04/25/2016 01:07:13 PM,04/25/2016 01:07:13 PM,Patient Declined Transport,11/13/2015 07:41:26 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",153173315-KM04 -151741319,FB1,15066352,Water Rescue,06/23/2015,06/23/2015,06/23/2015 10:55:46 AM,06/23/2015 10:58:31 AM,06/23/2015 11:01:04 AM,06/23/2015 11:05:22 AM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Fire,06/23/2015 11:24:00 AM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,SUPPORT,8,7,2,Presidio,"(37.8066581989584, -122.47471662098)",151741319-FB1 -160992533,85,16039386,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:23:40 PM,04/08/2016 04:26:56 PM,04/08/2016 04:28:07 PM,04/08/2016 04:28:23 PM,04/08/2016 04:52:36 PM,04/08/2016 05:07:29 PM,04/08/2016 05:29:36 PM,Code 2 Transport,04/08/2016 05:50:15 PM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.795777854883, -122.404981817889)",160992533-85 -160973330,67,16038571,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:36:53 PM,04/06/2016 05:38:45 PM,04/06/2016 05:39:33 PM,04/06/2016 05:39:37 PM,04/06/2016 05:54:00 PM,04/06/2016 05:54:02 PM,04/06/2016 06:31:38 PM,Code 2 Transport,04/06/2016 07:02:41 PM,24TH ST/YORK ST,San Francisco,94110,B06,9,5531,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",160973330-67 -151963831,71,15074933,Medical Incident,07/15/2015,07/15/2015,07/15/2015 11:10:56 PM,07/15/2015 11:12:39 PM,07/15/2015 11:13:20 PM,07/15/2015 11:15:24 PM,07/15/2015 11:37:22 PM,07/15/2015 11:45:53 PM,07/16/2015 12:03:04 AM,Code 2 Transport,07/16/2015 12:34:45 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",151963831-71 -153103583,AM18,15119331,Medical Incident,11/06/2015,11/06/2015,11/06/2015 09:08:11 PM,11/06/2015 09:08:11 PM,11/06/2015 09:10:00 PM,11/06/2015 09:10:37 PM,11/06/2015 09:21:54 PM,11/06/2015 09:33:29 PM,11/06/2015 09:44:58 PM,Code 3 Transport,11/06/2015 10:25:41 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850960963906, -122.41275875924)",153103583-AM18 -142600073,67,14090698,Medical Incident,09/17/2014,09/16/2014,09/17/2014 12:32:42 AM,09/17/2014 12:33:24 AM,09/17/2014 12:33:56 AM,09/17/2014 12:34:09 AM,09/17/2014 12:48:28 AM,09/17/2014 01:07:55 AM,09/17/2014 01:20:28 AM,Code 2 Transport,09/17/2014 02:16:38 AM,100 Block of BRITTON ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",142600073-67 -151201695,70,15045376,Medical Incident,04/30/2015,04/30/2015,04/30/2015 12:26:08 PM,04/30/2015 12:27:52 PM,04/30/2015 12:28:05 PM,04/30/2015 12:28:37 PM,04/30/2015 12:35:37 PM,04/30/2015 12:45:44 PM,04/30/2015 01:11:52 PM,Code 2 Transport,04/30/2015 01:44:05 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",151201695-70 -151151609,E19,15043461,Medical Incident,04/25/2015,04/25/2015,04/25/2015 12:34:15 PM,04/25/2015 12:34:56 PM,04/25/2015 12:35:19 PM,04/25/2015 12:36:12 PM,04/25/2015 12:41:12 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Code 2 Transport,04/25/2015 12:55:09 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",151151609-E19 -161001796,AM08,16039784,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:06:49 PM,04/09/2016 02:08:58 PM,04/09/2016 02:16:35 PM,04/09/2016 02:16:55 PM,04/09/2016 02:29:04 PM,04/09/2016 02:41:47 PM,04/09/2016 03:00:28 PM,Code 2 Transport,04/09/2016 03:27:45 PM,1300 Block of SANSOME ST,San Francisco,94133,B01,13,1215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8026239738402, -122.403135013446)",161001796-AM08 -160991917,KM09,16039322,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:03:02 PM,04/08/2016 02:03:02 PM,04/08/2016 02:06:28 PM,04/08/2016 02:06:51 PM,04/08/2016 02:17:24 PM,04/08/2016 02:43:10 PM,04/08/2016 02:53:14 PM,Code 2 Transport,04/08/2016 03:43:42 PM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",160991917-KM09 -141383551,T03,14047466,Structure Fire,05/18/2014,05/18/2014,05/18/2014 09:42:32 PM,05/18/2014 09:42:32 PM,05/18/2014 09:43:08 PM,05/18/2014 09:44:14 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Fire,05/18/2014 09:44:52 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",141383551-T03 -143031642,E01,14107081,Medical Incident,10/30/2014,10/30/2014,10/30/2014 10:57:04 AM,10/30/2014 10:57:53 AM,10/30/2014 10:58:11 AM,10/30/2014 10:59:35 AM,10/30/2014 11:01:19 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Code 2 Transport,10/30/2014 11:17:12 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",143031642-E01 -143082410,KM03,14109065,Medical Incident,11/04/2014,11/04/2014,11/04/2014 03:58:13 PM,11/04/2014 03:59:59 PM,11/04/2014 04:00:17 PM,11/04/2014 04:01:17 PM,11/04/2014 04:07:23 PM,11/04/2014 04:29:32 PM,11/04/2014 05:05:15 PM,Code 2 Transport,11/04/2014 05:20:13 PM,700 Block of 26TH AVE,San Francisco,94121,B07,14,7212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7753169384302, -122.485533881344)",143082410-KM03 -151633973,E23,15062536,Structure Fire,06/12/2015,06/12/2015,06/12/2015 11:24:48 PM,06/12/2015 11:24:48 PM,06/12/2015 11:25:27 PM,06/12/2015 11:27:22 PM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,Fire,06/12/2015 11:31:22 PM,47TH AV/SANTIAGO ST,San Francisco,94116,B08,23,7713,3,3,3,false,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7435956339816, -122.505823809302)",151633973-E23 -143512750,E12,14125457,Medical Incident,12/17/2014,12/17/2014,12/17/2014 04:48:36 PM,12/17/2014 04:50:36 PM,12/17/2014 04:59:47 PM,12/17/2014 05:00:21 PM,12/17/2014 05:05:10 PM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Code 2 Transport,12/17/2014 05:18:43 PM,1600 Block of 18TH AVE,San Francisco,94122,B08,22,7372,2,2,2,true,Non Life-threatening,1,ENGINE,3,8,7,Inner Sunset,"(37.7570874474527, -122.475532216876)",143512750-E12 -160931917,71,16036884,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:55:06 PM,04/02/2016 01:55:06 PM,04/02/2016 02:03:16 PM,04/02/2016 02:03:42 PM,04/02/2016 02:10:29 PM,04/02/2016 02:22:24 PM,04/02/2016 02:41:08 PM,Code 2 Transport,04/02/2016 03:08:38 PM,MARKET ST/SPEAR ST,San Francisco,94105,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",160931917-71 -151381412,RC3,15052393,Citizen Assist / Service Call,05/18/2015,05/18/2015,05/18/2015 11:42:26 AM,05/18/2015 11:43:49 AM,05/18/2015 11:56:37 AM,05/18/2015 11:56:37 AM,05/18/2015 12:16:07 PM,04/25/2016 01:10:32 PM,04/25/2016 01:10:32 PM,Fire,05/18/2015 01:53:42 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",151381412-RC3 -160980234,62,16038746,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:52:39 AM,04/07/2016 01:52:39 AM,04/07/2016 01:53:09 AM,04/07/2016 01:53:19 AM,04/07/2016 01:57:59 AM,04/07/2016 02:15:10 AM,04/07/2016 02:42:14 AM,Code 2 Transport,04/07/2016 03:09:23 AM,100 Block of SADOWA ST,San Francisco,94112,B09,33,8371,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7122527739995, -122.457529574669)",160980234-62 -150561358,AM04,15021390,Medical Incident,02/25/2015,02/25/2015,02/25/2015 11:02:51 AM,02/25/2015 11:04:25 AM,02/25/2015 11:04:32 AM,02/25/2015 11:05:30 AM,02/25/2015 11:15:35 AM,02/25/2015 11:35:03 AM,02/25/2015 11:47:22 AM,Code 2 Transport,02/25/2015 12:25:44 PM,100 Block of GREENWICH ST,San Francisco,94111,B01,13,1215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,Financial District/South Beach,"(37.8032232984304, -122.402580474667)",150561358-AM04 -160981829,59,16038912,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:31:05 PM,04/07/2016 12:32:18 PM,04/07/2016 12:33:47 PM,04/07/2016 12:33:58 PM,04/07/2016 12:43:30 PM,04/07/2016 01:01:24 PM,04/07/2016 01:26:00 PM,Code 2 Transport,04/07/2016 02:04:37 PM,500 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1334,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7999440400543, -122.409564939064)",160981829-59 -153342064,E01,15128448,Medical Incident,11/30/2015,11/30/2015,11/30/2015 02:45:16 PM,11/30/2015 02:46:00 PM,11/30/2015 02:46:24 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Code 2 Transport,11/30/2015 02:47:43 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7734664897325, -122.413546904215)",153342064-E01 -160942827,KM02,16037366,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:57:49 PM,04/03/2016 05:58:11 PM,04/03/2016 05:58:43 PM,04/03/2016 05:59:26 PM,04/03/2016 06:00:52 PM,04/03/2016 06:20:27 PM,04/03/2016 06:33:23 PM,Code 2 Transport,04/03/2016 07:08:26 PM,1300 Block of 30TH AVE,San Francisco,94122,B08,23,7536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7621150161966, -122.488775364037)",160942827-KM02 -160931255,KM09,16036804,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:45:16 AM,04/02/2016 10:46:30 AM,04/02/2016 10:46:43 AM,04/02/2016 10:47:30 AM,04/02/2016 10:49:39 AM,04/02/2016 11:23:25 AM,04/02/2016 11:30:32 AM,Code 2 Transport,04/02/2016 12:15:38 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160931255-KM09 -151020661,E38,15038478,Medical Incident,04/12/2015,04/11/2015,04/12/2015 07:04:04 AM,04/12/2015 07:05:14 AM,04/12/2015 07:05:38 AM,04/12/2015 07:06:55 AM,04/12/2015 07:06:55 AM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Code 2 Transport,04/12/2015 07:18:07 AM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",151020661-E38 -160973587,AM20,16038607,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:32:47 PM,04/06/2016 06:34:26 PM,04/06/2016 07:05:33 PM,04/06/2016 07:07:05 PM,04/06/2016 07:12:12 PM,04/06/2016 07:22:50 PM,04/06/2016 07:37:46 PM,Code 2 Transport,04/06/2016 08:12:52 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,3,3,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160973587-AM20 -141750322,E07,14060248,Citizen Assist / Service Call,06/24/2014,06/23/2014,06/24/2014 04:57:17 AM,06/24/2014 05:00:13 AM,06/24/2014 05:02:25 AM,06/24/2014 05:06:07 AM,06/24/2014 05:16:39 AM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,No Merit,06/24/2014 05:16:46 AM,0 Block of LIBERTY ST,San Francisco,94110,B06,7,5456,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7575809773167, -122.422275311384)",141750322-E07 -151240400,E42,15046893,Medical Incident,05/04/2015,05/03/2015,05/04/2015 06:15:50 AM,05/04/2015 06:15:50 AM,05/04/2015 06:16:42 AM,05/04/2015 06:18:36 AM,05/04/2015 06:21:20 AM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Code 2 Transport,05/04/2015 06:28:28 AM,CRESCENT AV/ANDOVER ST,San Francisco,94110,B06,32,5751,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7348882820501, -122.416823586096)",151240400-E42 -150382374,79,15014834,Medical Incident,02/07/2015,02/07/2015,02/07/2015 03:49:14 PM,02/07/2015 03:50:47 PM,02/07/2015 03:52:47 PM,02/07/2015 03:52:47 PM,02/07/2015 03:59:51 PM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Unable to Locate,02/07/2015 04:08:40 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",150382374-79 -161000049,76,16039553,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:16:14 AM,04/09/2016 12:16:14 AM,04/09/2016 12:17:14 AM,04/09/2016 12:17:21 AM,04/09/2016 12:21:38 AM,04/09/2016 12:30:22 AM,04/09/2016 12:52:10 AM,Code 2 Transport,04/09/2016 01:01:38 AM,200 Block of TOWNSEND ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.778367882018, -122.393460595106)",161000049-76 -143543208,71,14126589,Medical Incident,12/20/2014,12/20/2014,12/20/2014 04:26:26 PM,12/20/2014 04:28:46 PM,12/20/2014 04:30:02 PM,12/20/2014 04:30:13 PM,12/20/2014 04:49:08 PM,12/20/2014 04:58:14 PM,12/20/2014 05:20:05 PM,Code 2 Transport,12/20/2014 05:48:54 PM,9TH ST/HOWARD ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",143543208-71 -153363410,E36,15129369,Medical Incident,12/02/2015,12/02/2015,12/02/2015 07:17:16 PM,12/02/2015 07:19:39 PM,12/02/2015 07:24:00 PM,12/02/2015 07:26:22 PM,12/02/2015 07:32:05 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Code 2 Transport,12/02/2015 07:41:52 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",153363410-E36 -160981668,70,16038899,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:57:25 AM,04/07/2016 11:58:20 AM,04/07/2016 12:07:21 PM,04/07/2016 12:07:31 PM,04/07/2016 12:13:57 PM,04/07/2016 12:36:28 PM,04/07/2016 01:06:36 PM,Code 2 Transport,04/07/2016 01:56:14 PM,0 Block of WESTBROOK CT,San Francisco,94124,B10,17,6624,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7350385061864, -122.382425286055)",160981668-70 -151570214,E06,15059776,Medical Incident,06/06/2015,06/05/2015,06/06/2015 01:31:15 AM,06/06/2015 01:31:29 AM,06/06/2015 01:33:22 AM,06/06/2015 01:33:22 AM,06/06/2015 01:33:22 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,No Merit,06/06/2015 01:38:10 AM,100 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7671998905043, -122.431083812685)",151570214-E06 -150561307,T03,15021384,Medical Incident,02/25/2015,02/25/2015,02/25/2015 10:47:07 AM,02/25/2015 10:49:04 AM,02/25/2015 10:49:47 AM,02/25/2015 10:50:16 AM,02/25/2015 10:53:05 AM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Code 2 Transport,02/25/2015 11:05:09 AM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",150561307-T03 -151101410,E01,15041578,Medical Incident,04/20/2015,04/20/2015,04/20/2015 11:05:58 AM,04/20/2015 11:07:54 AM,04/20/2015 11:10:54 AM,04/20/2015 11:10:54 AM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,Code 2 Transport,04/20/2015 11:11:14 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",151101410-E01 -160923206,53,16036579,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:25:26 PM,04/01/2016 07:28:22 PM,04/01/2016 07:29:12 PM,04/01/2016 07:29:19 PM,04/01/2016 07:45:36 PM,04/01/2016 08:01:12 PM,04/01/2016 08:24:06 PM,Code 2 Transport,04/01/2016 08:58:24 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160923206-53 -151660885,E03,15063405,Medical Incident,06/15/2015,06/15/2015,06/15/2015 09:14:44 AM,06/15/2015 09:15:50 AM,06/15/2015 09:16:57 AM,06/15/2015 09:18:21 AM,06/15/2015 09:21:15 AM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,No Merit,06/15/2015 09:23:23 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",151660885-E03 -150270375,77,15010279,Medical Incident,01/27/2015,01/26/2015,01/27/2015 05:32:49 AM,01/27/2015 05:33:44 AM,01/27/2015 05:34:12 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Code 2 Transport,01/27/2015 05:34:25 AM,500 Block of HOLLOWAY AVE,San Francisco,94112,B09,15,8473,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,7,Oceanview/Merced/Ingleside,"(37.721893819474, -122.45869403555)",150270375-77 -141922513,KM04,14066640,Medical Incident,07/11/2014,07/11/2014,07/11/2014 04:53:56 PM,07/11/2014 04:54:45 PM,07/11/2014 04:55:49 PM,07/11/2014 04:56:34 PM,07/11/2014 04:56:52 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,No Merit,07/11/2014 05:23:37 PM,CESAR CHAVEZ ST/BAYSHORE BL,San Francisco,94110,B10,9,2626,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7489710482463, -122.405626953003)",141922513-KM04 -153410022,E40,15131038,Medical Incident,12/07/2015,12/06/2015,12/07/2015 12:06:46 AM,12/07/2015 12:09:04 AM,12/07/2015 12:09:16 AM,12/07/2015 12:11:08 AM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,No Merit,12/07/2015 12:14:00 AM,400 Block of TARAVAL ST,San Francisco,94116,B08,40,7355,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7432097244373, -122.47079205885)",153410022-E40 -151661891,E07,15063497,Medical Incident,06/15/2015,06/15/2015,06/15/2015 01:53:09 PM,06/15/2015 01:53:09 PM,06/15/2015 01:54:03 PM,06/15/2015 01:55:11 PM,06/15/2015 01:56:42 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/15/2015 02:06:40 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",151661891-E07 -151690487,E41,15064499,Medical Incident,06/18/2015,06/17/2015,06/18/2015 06:33:50 AM,06/18/2015 06:34:22 AM,06/18/2015 06:34:32 AM,06/18/2015 06:36:15 AM,06/18/2015 06:37:21 AM,04/25/2016 01:09:56 PM,04/25/2016 01:09:56 PM,Code 3 Transport,06/18/2015 06:48:21 AM,1400 Block of CLAY ST,San Francisco,94109,B01,41,1536,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7928543973029, -122.416925086375)",151690487-E41 -141492171,E08,14051232,Medical Incident,05/29/2014,05/29/2014,05/29/2014 03:17:49 PM,05/29/2014 03:19:47 PM,05/29/2014 03:20:37 PM,05/29/2014 03:22:16 PM,05/29/2014 03:24:28 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Code 2 Transport,05/29/2014 03:30:52 PM,400 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7781649349602, -122.40085398952)",141492171-E08 -152902406,RC3,15111479,Medical Incident,10/17/2015,10/17/2015,10/17/2015 03:51:41 PM,10/17/2015 03:51:41 PM,10/17/2015 03:52:09 PM,10/17/2015 03:53:32 PM,10/17/2015 03:58:32 PM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Code 3 Transport,10/17/2015 04:35:28 PM,15TH ST/JULIAN AV,San Francisco,94103,B02,36,5279,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,9,Mission,"(37.7665992188639, -122.421056630869)",152902406-RC3 -141060021,E19,14035617,Medical Incident,04/16/2014,04/15/2014,04/16/2014 02:00:44 AM,04/16/2014 02:01:54 AM,04/16/2014 02:02:17 AM,04/16/2014 02:04:07 AM,04/16/2014 02:07:58 AM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,Code 2 Transport,04/16/2014 02:18:27 AM,0 Block of CAMBON DR,SAN FRANCISCO,94132,B08,19,8428,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7183176082845, -122.474447191909)",141060021-E19 -150683386,E28,15026121,Structure Fire,03/09/2015,03/09/2015,03/09/2015 07:29:10 PM,03/09/2015 07:31:26 PM,03/09/2015 07:32:18 PM,03/09/2015 07:33:16 PM,03/09/2015 07:35:33 PM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Fire,03/09/2015 07:53:56 PM,1000 Block of BROADWAY,San Francisco,94133,B01,2,1442,3,3,3,false,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7968985022629, -122.413996618846)",150683386-E28 -142162944,E43,14075023,Alarms,08/04/2014,08/04/2014,08/04/2014 07:14:32 PM,08/04/2014 07:15:46 PM,08/04/2014 07:15:55 PM,08/04/2014 07:17:36 PM,08/04/2014 07:20:05 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Fire,08/04/2014 07:23:30 PM,100 Block of VIENNA ST,San Francisco,94112,B09,43,6154,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7259579894266, -122.426381529611)",142162944-E43 -151893148,E17,15072285,Medical Incident,07/08/2015,07/08/2015,07/08/2015 06:23:57 PM,07/08/2015 06:24:09 PM,07/08/2015 06:25:00 PM,07/08/2015 06:27:23 PM,07/08/2015 06:30:07 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Code 2 Transport,07/08/2015 06:35:05 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",151893148-E17 -152671694,E28,15102259,Medical Incident,09/24/2015,09/24/2015,09/24/2015 12:00:50 PM,09/24/2015 12:03:03 PM,09/24/2015 12:05:30 PM,09/24/2015 12:06:55 PM,09/24/2015 12:13:18 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,No Merit,09/24/2015 12:30:24 PM,500 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",152671694-E28 -150210014,77,15008046,Medical Incident,01/21/2015,01/20/2015,01/21/2015 12:04:34 AM,01/21/2015 12:05:22 AM,01/21/2015 12:06:53 AM,01/21/2015 12:07:10 AM,01/21/2015 12:18:00 AM,01/21/2015 12:27:49 AM,01/21/2015 12:32:56 AM,Code 2 Transport,01/21/2015 01:05:04 AM,2500 Block of MARKET ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7619045858198, -122.436729883001)",150210014-77 -150043048,KM15,15001621,Medical Incident,01/04/2015,01/04/2015,01/04/2015 09:02:11 PM,01/04/2015 09:02:49 PM,01/04/2015 09:12:26 PM,01/04/2015 09:13:21 PM,01/04/2015 09:22:46 PM,01/04/2015 09:52:47 PM,01/04/2015 09:59:08 PM,Code 2 Transport,01/04/2015 10:37:56 PM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",150043048-KM15 -143281028,RC1,14116212,Medical Incident,11/24/2014,11/24/2014,11/24/2014 09:25:15 AM,11/24/2014 09:27:07 AM,11/24/2014 09:31:57 AM,11/24/2014 09:31:57 AM,11/24/2014 09:35:48 AM,11/24/2014 09:42:24 AM,11/24/2014 10:02:14 AM,Code 2 Transport,11/24/2014 10:18:49 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143281028-RC1 -160923185,AM12,16036575,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:23:28 PM,04/01/2016 07:23:28 PM,04/01/2016 07:24:35 PM,04/01/2016 07:24:35 PM,04/01/2016 07:24:56 PM,04/01/2016 07:44:28 PM,04/01/2016 08:00:59 PM,Code 2 Transport,04/01/2016 08:26:19 PM,MISSION ST/7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160923185-AM12 -153021818,AR1,15115836,Administrative,10/29/2015,10/29/2015,10/29/2015 12:43:45 PM,10/29/2015 12:44:03 PM,10/29/2015 12:44:42 PM,10/29/2015 12:51:12 PM,10/29/2015 12:51:12 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/29/2015 12:51:31 PM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,3,3,3,false,,1,INVESTIGATION,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",153021818-AR1 -142912030,E36,14102663,Medical Incident,10/18/2014,10/18/2014,10/18/2014 02:22:35 PM,10/18/2014 02:22:56 PM,10/18/2014 02:23:13 PM,10/18/2014 02:23:36 PM,10/18/2014 02:26:02 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Code 2 Transport,10/18/2014 02:38:37 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",142912030-E36 -152053652,E07,15078254,Medical Incident,07/24/2015,07/24/2015,07/24/2015 08:55:25 PM,07/24/2015 08:55:44 PM,07/24/2015 08:56:22 PM,07/24/2015 08:56:33 PM,07/24/2015 08:58:46 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Code 2 Transport,07/24/2015 09:10:01 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.769082767924, -122.413353472663)",152053652-E07 -141641347,88,14056504,Medical Incident,06/13/2014,06/13/2014,06/13/2014 11:37:58 AM,06/13/2014 11:39:29 AM,06/13/2014 11:41:09 AM,06/13/2014 11:43:31 AM,06/13/2014 11:53:19 AM,06/13/2014 12:11:01 PM,06/13/2014 12:33:23 PM,Code 2 Transport,06/13/2014 01:14:05 PM,100 Block of KING ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",141641347-88 -143163630,82,14112075,Medical Incident,11/12/2014,11/12/2014,11/12/2014 09:37:18 PM,11/12/2014 09:39:59 PM,11/12/2014 09:40:42 PM,11/12/2014 09:41:05 PM,11/12/2014 09:42:53 PM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Fire,11/12/2014 09:55:46 PM,0 Block of FLORENTINE AVE,San Francisco,94112,B09,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7126535594539, -122.443570221099)",143163630-82 -151441982,E07,15054803,Traffic Collision,05/24/2015,05/24/2015,05/24/2015 02:48:28 PM,05/24/2015 02:48:28 PM,05/24/2015 02:49:10 PM,05/24/2015 02:51:04 PM,05/24/2015 02:55:06 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Patient Declined Transport,05/24/2015 02:56:23 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",151441982-E07 -142932354,75,14103417,Medical Incident,10/20/2014,10/20/2014,10/20/2014 04:28:52 PM,10/20/2014 04:28:52 PM,10/20/2014 04:31:34 PM,10/20/2014 04:32:38 PM,04/25/2016 01:14:27 PM,10/20/2014 04:45:57 PM,10/20/2014 04:58:53 PM,Code 2 Transport,10/20/2014 05:31:06 PM,4TH ST/MARKET ST,San Francisco,94103,B01,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,1,6,South of Market,"(37.7857439877905, -122.405831012392)",142932354-75 -141420167,77,14048546,Medical Incident,05/22/2014,05/21/2014,05/22/2014 01:30:14 AM,05/22/2014 01:30:14 AM,05/22/2014 01:32:04 AM,05/22/2014 01:32:09 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Cancelled,05/22/2014 01:35:23 AM,16TH ST/ALBION ST,San Francisco,94110,B02,6,5235,A,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7648432997817, -122.42311242302)",141420167-77 -160960533,62,16037901,Traffic Collision,04/05/2016,04/04/2016,04/05/2016 07:22:16 AM,04/05/2016 07:22:16 AM,04/05/2016 07:22:43 AM,04/05/2016 07:23:10 AM,04/05/2016 07:32:27 AM,04/05/2016 07:43:06 AM,04/05/2016 08:04:01 AM,Code 2 Transport,04/05/2016 08:36:01 AM,ORTEGA ST/44TH AV,San Francisco,94116,B08,23,7646,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7511903586863, -122.503133001568)",160960533-62 -150623080,E42,15023782,Structure Fire,03/03/2015,03/03/2015,03/03/2015 06:05:40 PM,03/03/2015 06:11:54 PM,03/03/2015 06:12:28 PM,03/03/2015 06:14:27 PM,03/03/2015 06:32:01 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Fire,03/03/2015 06:52:42 PM,1500 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Fire,1,ENGINE,12,10,10,Bayview Hunters Point,"(37.7310897557507, -122.389268390192)",150623080-E42 -150681743,84,15025977,Medical Incident,03/09/2015,03/09/2015,03/09/2015 12:38:49 PM,03/09/2015 12:38:49 PM,03/09/2015 01:06:30 PM,03/09/2015 01:06:43 PM,03/09/2015 01:10:06 PM,03/09/2015 01:20:07 PM,03/09/2015 01:31:57 PM,Code 2 Transport,03/09/2015 02:03:14 PM,0 Block of 11TH ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7749028724693, -122.417930265052)",150681743-84 -151173078,E43,15044347,Medical Incident,04/27/2015,04/27/2015,04/27/2015 06:35:25 PM,04/27/2015 06:39:26 PM,04/27/2015 06:43:04 PM,04/27/2015 06:44:54 PM,04/27/2015 07:01:16 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Code 2 Transport,04/27/2015 07:03:25 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",151173078-E43 -160950043,KM07,16037471,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:28:15 AM,04/04/2016 12:29:05 AM,04/04/2016 12:29:28 AM,04/04/2016 12:30:15 AM,04/04/2016 12:37:52 AM,04/04/2016 12:50:51 AM,04/04/2016 01:23:50 AM,Code 2 Transport,04/04/2016 01:51:47 AM,NORTH POINT ST/KEARNY ST,San Francisco,94133,B01,28,1255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8073794582677, -122.407303657354)",160950043-KM07 -152711000,60,15103731,Medical Incident,09/28/2015,09/28/2015,09/28/2015 09:14:29 AM,09/28/2015 09:16:13 AM,09/28/2015 09:16:30 AM,09/28/2015 09:16:48 AM,09/28/2015 09:22:03 AM,09/28/2015 09:33:45 AM,09/28/2015 09:58:33 AM,Code 2 Transport,09/28/2015 10:42:30 AM,100 Block of STEUART ST,San Francisco,94105,B03,35,2111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7926568376756, -122.39236449327)",152711000-60 -160963988,AM16,16038202,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:14:23 PM,04/05/2016 10:17:24 PM,04/05/2016 10:17:57 PM,04/05/2016 10:18:38 PM,04/05/2016 10:27:40 PM,04/05/2016 10:36:11 PM,04/05/2016 11:00:53 PM,Code 2 Transport,04/05/2016 11:33:59 PM,GEARY BL/MASONIC AV,San Francisco,94118,B05,10,4365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",160963988-AM16 -151253324,E35,15047505,Alarms,05/05/2015,05/05/2015,05/05/2015 07:19:00 PM,05/05/2015 07:20:29 PM,05/05/2015 07:21:27 PM,05/05/2015 07:21:27 PM,05/05/2015 07:22:30 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Fire,05/05/2015 07:24:14 PM,200 Block of SPEAR ST,San Francisco,94105,B03,35,2114,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7907290972823, -122.391698710083)",151253324-E35 -161000157,AM20,16039569,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:01:10 AM,04/09/2016 01:01:51 AM,04/09/2016 01:02:27 AM,04/09/2016 01:04:34 AM,04/09/2016 01:09:08 AM,04/09/2016 01:27:10 AM,04/09/2016 01:42:28 AM,Code 2 Transport,04/09/2016 02:10:55 AM,2800 Block of TARAVAL ST,San Francisco,94116,B08,18,7612,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7420734859628, -122.496578885375)",161000157-AM20 -153232437,B03,15124325,Traffic Collision,11/19/2015,11/19/2015,11/19/2015 03:20:28 PM,11/19/2015 03:20:28 PM,11/19/2015 03:20:52 PM,11/19/2015 03:22:04 PM,11/19/2015 03:25:27 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,No Merit,11/19/2015 03:26:47 PM,FOLSOM ST/FREMONT ST,San Francisco,94105,B03,35,2122,3,A,2,false,Potentially Life-Threatening,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7879963086157, -122.393597165043)",153232437-B03 -152672555,T13,15102337,Structure Fire,09/24/2015,09/24/2015,09/24/2015 03:27:58 PM,09/24/2015 03:28:27 PM,09/24/2015 03:29:22 PM,09/24/2015 03:30:53 PM,09/24/2015 03:31:40 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,Fire,09/24/2015 03:40:36 PM,500 Block of BATTERY ST,San Francisco,94111,B01,13,1156,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7963352483576, -122.400515223296)",152672555-T13 -151033834,E19,15039145,Medical Incident,04/13/2015,04/13/2015,04/13/2015 10:32:41 PM,04/13/2015 10:32:41 PM,04/13/2015 10:32:52 PM,04/13/2015 10:34:04 PM,04/13/2015 10:37:07 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Code 2 Transport,04/13/2015 10:51:29 PM,0 Block of CHUMASERO DR,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",151033834-E19 -153083348,76,15118493,Medical Incident,11/04/2015,11/04/2015,11/04/2015 06:59:29 PM,11/04/2015 07:02:47 PM,11/04/2015 07:03:31 PM,11/04/2015 07:03:38 PM,11/04/2015 07:07:18 PM,11/04/2015 07:14:56 PM,11/04/2015 07:20:38 PM,Code 2 Transport,11/04/2015 07:39:50 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",153083348-76 -150650684,AM04,15024738,Alarms,03/06/2015,03/05/2015,03/06/2015 07:14:42 AM,03/06/2015 07:15:27 AM,03/06/2015 07:16:05 AM,03/06/2015 07:16:50 AM,03/06/2015 07:22:43 AM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Other,03/06/2015 07:33:18 AM,0 Block of ROSIE LEE LN,San Francisco,94124,B10,17,6643,3,3,3,false,Alarm,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.732100392944, -122.380819683606)",150650684-AM04 -160964155,85,16038221,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:15:36 PM,04/05/2016 11:16:24 PM,04/05/2016 11:18:09 PM,04/05/2016 11:18:47 PM,04/05/2016 11:25:09 PM,04/05/2016 11:47:38 PM,04/06/2016 12:08:01 AM,Code 2 Transport,04/06/2016 12:40:17 AM,900 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",160964155-85 -152633902,E07,15100869,Medical Incident,09/20/2015,09/20/2015,09/20/2015 10:23:22 PM,09/20/2015 10:23:22 PM,09/20/2015 10:26:00 PM,09/20/2015 10:27:12 PM,09/20/2015 10:29:21 PM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Code 2 Transport,09/20/2015 10:43:18 PM,900 Block of YORK ST,San Francisco,94110,B06,7,5474,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7568487756102, -122.40864424112)",152633902-E07 -160960411,81,16037891,Medical Incident,04/05/2016,04/04/2016,04/05/2016 06:06:55 AM,04/05/2016 06:08:18 AM,04/05/2016 06:08:48 AM,04/05/2016 06:08:55 AM,04/05/2016 06:28:15 AM,04/05/2016 06:28:20 AM,04/05/2016 06:50:16 AM,Code 2 Transport,04/05/2016 07:25:59 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160960411-81 -141190015,E09,14040020,Medical Incident,04/29/2014,04/28/2014,04/29/2014 01:24:50 AM,04/29/2014 01:26:48 AM,04/29/2014 01:27:28 AM,04/29/2014 01:29:51 AM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Code 2 Transport,04/29/2014 01:33:35 AM,700 Block of MISSOURI ST,SAN FRANCISCO,94107,B10,37,2542,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",141190015-E09 -160953429,64,16037772,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:29:28 PM,04/04/2016 07:32:07 PM,04/04/2016 07:34:48 PM,04/04/2016 07:39:12 PM,04/04/2016 07:41:22 PM,04/04/2016 08:02:42 PM,04/04/2016 08:36:55 PM,Code 2 Transport,04/04/2016 09:10:02 PM,0 Block of CANYON DR,San Francisco,94112,B09,43,6235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7090926292053, -122.43133713448)",160953429-64 -141993840,E17,14069094,Medical Incident,07/18/2014,07/18/2014,07/18/2014 11:49:32 PM,07/18/2014 11:51:17 PM,07/18/2014 11:53:10 PM,07/18/2014 11:55:22 PM,07/18/2014 11:58:35 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Gone on Arrival,07/19/2014 12:00:07 AM,1400 Block of PHELPS ST,San Francisco,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364498670013, -122.394433400473)",141993840-E17 -151932560,B02,15073728,Alarms,07/12/2015,07/12/2015,07/12/2015 04:46:05 PM,07/12/2015 04:48:11 PM,07/12/2015 04:48:26 PM,07/12/2015 04:48:43 PM,07/12/2015 04:51:33 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 04:56:47 PM,400 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1544,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",151932560-B02 -160960292,AM22,16037871,Medical Incident,04/05/2016,04/04/2016,04/05/2016 03:45:44 AM,04/05/2016 03:46:56 AM,04/05/2016 03:47:20 AM,04/05/2016 03:48:28 AM,04/05/2016 03:53:24 AM,04/05/2016 04:15:49 AM,04/05/2016 04:20:57 AM,Code 2 Transport,04/05/2016 04:48:02 AM,800 Block of 34TH AVE,San Francisco,94121,B07,34,7252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7730659199662, -122.493831266165)",160960292-AM22 -150342303,T09,15013154,Alarms,02/03/2015,02/03/2015,02/03/2015 03:29:03 PM,02/03/2015 03:30:24 PM,02/03/2015 03:31:42 PM,02/03/2015 03:34:02 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Fire,02/03/2015 03:37:48 PM,400 Block of AMADOR ST,San Francisco,94124,B10,25,6463,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7458848547738, -122.382990476473)",150342303-T09 -142970885,88,14104677,Medical Incident,10/24/2014,10/24/2014,10/24/2014 08:26:42 AM,10/24/2014 08:30:56 AM,10/24/2014 08:31:29 AM,10/24/2014 08:31:56 AM,10/24/2014 08:41:41 AM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Unable to Locate,10/24/2014 08:44:25 AM,1500 Block of SANTIAGO ST,San Francisco,94116,B08,40,7471,3,3,3,true,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7445086480861, -122.483854761763)",142970885-88 -150821070,B06,15031310,Alarms,03/23/2015,03/23/2015,03/23/2015 09:58:39 AM,03/23/2015 10:00:43 AM,03/23/2015 10:01:22 AM,03/23/2015 10:03:28 AM,03/23/2015 10:04:56 AM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Fire,03/23/2015 10:12:14 AM,200 Block of 27TH ST,San Francisco,94131,B06,11,5556,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7470197682877, -122.425834246256)",150821070-B06 -151060170,55,15039893,Medical Incident,04/16/2015,04/15/2015,04/16/2015 01:47:44 AM,04/16/2015 01:47:44 AM,04/16/2015 01:48:31 AM,04/16/2015 01:48:48 AM,04/16/2015 01:54:25 AM,04/16/2015 02:18:58 AM,04/16/2015 02:23:43 AM,Code 2 Transport,04/16/2015 02:58:31 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",151060170-55 -150142985,57,15005667,Medical Incident,01/14/2015,01/14/2015,01/14/2015 06:14:08 PM,01/14/2015 06:14:08 PM,01/14/2015 06:22:07 PM,01/14/2015 06:22:07 PM,01/14/2015 06:25:21 PM,01/14/2015 06:25:25 PM,01/14/2015 06:37:40 PM,Code 3 Transport,01/14/2015 07:15:26 PM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,A,E,3,true,Potentially Life-Threatening,1,MEDIC,4,6,9,Mission,"(37.7610314429831, -122.419351642615)",150142985-57 -143091180,B04,14109312,Traffic Collision,11/05/2014,11/05/2014,11/05/2014 10:33:13 AM,11/05/2014 10:34:17 AM,11/05/2014 10:35:17 AM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Patient Declined Transport,11/05/2014 10:36:12 AM,LARKIN ST/SUTTER ST,San Francisco,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,4,3,Nob Hill,"(37.7879662849441, -122.418465027904)",143091180-B04 -160942536,70,16037335,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:34:48 PM,04/03/2016 04:37:24 PM,04/03/2016 04:38:07 PM,04/03/2016 04:38:20 PM,04/03/2016 04:47:34 PM,04/03/2016 05:12:54 PM,04/03/2016 05:20:48 PM,Code 2 Transport,04/03/2016 05:43:18 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160942536-70 -150502021,70,15019342,Medical Incident,02/19/2015,02/19/2015,02/19/2015 02:15:21 PM,02/19/2015 02:16:25 PM,02/19/2015 02:16:36 PM,02/19/2015 02:17:05 PM,02/19/2015 02:26:41 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,No Merit,02/19/2015 02:28:09 PM,MASON ST/BUSH ST,San Francisco,94108,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7899514241836, -122.410433245777)",150502021-70 -141210419,E38,14041109,Medical Incident,05/01/2014,05/01/2014,05/01/2014 08:41:26 PM,05/01/2014 08:41:27 PM,05/01/2014 08:42:29 PM,05/01/2014 08:43:28 PM,05/01/2014 08:44:35 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 2 Transport,05/01/2014 08:56:54 PM,1700 Block of SUTTER ST,SAN FRANCISCO,94115,B04,38,3433,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",141210419-E38 -142481981,RC1,14086467,Medical Incident,09/05/2014,09/05/2014,09/05/2014 02:04:02 PM,09/05/2014 02:04:37 PM,09/05/2014 02:06:05 PM,09/05/2014 02:06:05 PM,09/05/2014 02:08:07 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/05/2014 02:17:58 PM,500 Block of BUCHANAN ST,San Francisco,94102,B02,36,3423,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,2,5,Hayes Valley,"(37.7746309836147, -122.427520205792)",142481981-RC1 -142212744,B04,14076803,Alarms,08/09/2014,08/09/2014,08/09/2014 05:25:19 PM,08/09/2014 05:27:01 PM,08/09/2014 05:27:58 PM,08/09/2014 05:28:56 PM,08/09/2014 05:32:12 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Fire,08/09/2014 05:36:17 PM,2100 Block of CHESTNUT ST,San Francisco,94123,B04,16,3661,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8004518556001, -122.438685860986)",142212744-B04 -150243073,55,15009454,Medical Incident,01/24/2015,01/24/2015,01/24/2015 08:49:09 PM,01/24/2015 08:51:05 PM,01/24/2015 08:51:36 PM,01/24/2015 08:51:46 PM,01/24/2015 09:02:29 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Gone on Arrival,01/24/2015 09:02:35 PM,TAYLOR ST/TURK ST,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",150243073-55 -150331462,B02,15012702,Alarms,02/02/2015,02/02/2015,02/02/2015 11:43:14 AM,02/02/2015 11:44:07 AM,02/02/2015 11:44:15 AM,02/02/2015 11:45:32 AM,02/02/2015 11:48:01 AM,04/25/2016 01:12:29 PM,04/25/2016 01:12:29 PM,Fire,02/02/2015 11:49:18 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7770436202636, -122.413583483648)",150331462-B02 -142650335,E41,14092587,Medical Incident,09/22/2014,09/21/2014,09/22/2014 03:25:31 AM,09/22/2014 03:26:22 AM,09/22/2014 03:27:32 AM,09/22/2014 03:29:53 AM,09/22/2014 03:30:56 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Code 2 Transport,09/22/2014 03:38:33 AM,2000 Block of LARKIN ST,San Francisco,94109,B01,41,1632,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7966105174567, -122.420144877743)",142650335-E41 -142673538,E07,14093672,Medical Incident,09/24/2014,09/24/2014,09/24/2014 08:17:18 PM,09/24/2014 08:20:28 PM,09/24/2014 08:21:00 PM,09/24/2014 08:22:07 PM,09/24/2014 08:24:25 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 08:30:45 PM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",142673538-E07 -160922666,KM13,16036536,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:13:29 PM,04/01/2016 05:13:52 PM,04/01/2016 05:16:36 PM,04/01/2016 05:17:12 PM,04/01/2016 05:28:08 PM,04/01/2016 05:32:00 PM,04/01/2016 05:34:26 PM,Code 2 Transport,04/01/2016 05:48:40 PM,LARKIN ST/EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",160922666-KM13 -141331715,KM01,14045326,Medical Incident,05/13/2014,05/13/2014,05/13/2014 01:12:48 PM,05/13/2014 01:15:14 PM,05/13/2014 01:15:45 PM,05/13/2014 01:16:21 PM,05/13/2014 01:23:12 PM,05/13/2014 01:35:07 PM,05/13/2014 01:49:29 PM,Code 2 Transport,05/13/2014 02:20:02 PM,0 Block of SHERMAN ST,San Francisco,94103,B03,8,2312,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7766015774052, -122.405924386123)",141331715-KM01 -142420165,77,14084088,Medical Incident,08/30/2014,08/29/2014,08/30/2014 12:52:59 AM,08/30/2014 12:56:02 AM,08/30/2014 12:57:02 AM,08/30/2014 12:59:14 AM,08/30/2014 01:01:48 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Other,08/30/2014 01:02:40 AM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",142420165-77 -152111292,T03,15080316,Alarms,07/30/2015,07/30/2015,07/30/2015 11:00:17 AM,07/30/2015 11:01:22 AM,07/30/2015 11:02:50 AM,07/30/2015 11:03:06 AM,07/30/2015 11:06:01 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 11:11:59 AM,200 Block of FELL ST,San Francisco,94102,B02,36,3213,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7761085487984, -122.421979000442)",152111292-T03 -150382876,74,15014882,Medical Incident,02/07/2015,02/07/2015,02/07/2015 06:03:59 PM,02/07/2015 06:07:45 PM,02/07/2015 06:08:26 PM,02/07/2015 06:08:34 PM,02/07/2015 06:23:01 PM,02/07/2015 06:36:41 PM,02/07/2015 06:41:32 PM,Code 2 Transport,02/07/2015 07:00:44 PM,MARKET ST/HYDE ST,San Francisco,94103,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",150382876-74 -161002960,79,16039916,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:10:15 PM,04/09/2016 08:11:19 PM,04/09/2016 08:11:46 PM,04/09/2016 08:12:28 PM,04/09/2016 08:33:08 PM,04/09/2016 08:47:30 PM,04/09/2016 08:58:26 PM,Code 2 Transport,04/09/2016 09:30:34 PM,1200 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",161002960-79 -160930463,70,16036712,Medical Incident,04/02/2016,04/01/2016,04/02/2016 03:27:50 AM,04/02/2016 03:28:37 AM,04/02/2016 03:29:58 AM,04/02/2016 03:30:10 AM,04/02/2016 03:35:47 AM,04/02/2016 04:00:02 AM,04/02/2016 04:04:26 AM,Code 3 Transport,04/02/2016 04:37:01 AM,0 Block of SIERRA ST,San Francisco,94107,B10,37,2541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7582688202893, -122.395614644238)",160930463-70 -142663000,E15,14093216,Medical Incident,09/23/2014,09/23/2014,09/23/2014 06:22:43 PM,09/23/2014 06:22:43 PM,09/23/2014 06:23:12 PM,09/23/2014 06:24:36 PM,09/23/2014 06:27:15 PM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Code 2 Transport,09/23/2014 06:33:56 PM,700 Block of VICTORIA ST,San Francisco,94127,B09,15,8443,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7241499080237, -122.4643137099)",142663000-E15 -151802188,E01,15068775,Medical Incident,06/29/2015,06/29/2015,06/29/2015 03:28:06 PM,06/29/2015 03:29:53 PM,06/29/2015 03:30:04 PM,06/29/2015 03:31:45 PM,06/29/2015 03:32:32 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Code 2 Transport,06/29/2015 03:39:35 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",151802188-E01 -152591778,52,15099015,Traffic Collision,09/16/2015,09/16/2015,09/16/2015 01:06:45 PM,09/16/2015 01:06:55 PM,09/16/2015 01:08:11 PM,09/16/2015 01:08:14 PM,09/16/2015 01:08:14 PM,09/16/2015 01:18:30 PM,09/16/2015 01:34:18 PM,Code 3 Transport,09/16/2015 02:51:12 PM,LEAVENWORTH ST/PINE ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7902542983068, -122.415559086188)",152591778-52 -141983259,KM03,14068681,Medical Incident,07/17/2014,07/17/2014,07/17/2014 08:41:32 PM,07/17/2014 08:42:58 PM,07/17/2014 08:43:32 PM,07/17/2014 08:44:08 PM,07/17/2014 08:48:09 PM,07/17/2014 09:10:27 PM,07/17/2014 09:21:48 PM,Code 2 Transport,07/17/2014 10:25:45 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141983259-KM03 -143543409,54,14126602,Structure Fire,12/20/2014,12/20/2014,12/20/2014 05:16:52 PM,12/20/2014 05:18:01 PM,12/20/2014 05:19:21 PM,12/20/2014 05:19:21 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Fire,12/20/2014 05:24:08 PM,700 Block of 23RD AVE,San Francisco,94121,B07,14,7177,3,3,3,true,Alarm,1,MEDIC,11,7,1,Outer Richmond,"(37.7736039646112, -122.482047279831)",143543409-54 -160953881,AM20,16037807,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:02:45 PM,04/04/2016 10:02:45 PM,04/04/2016 10:03:14 PM,04/04/2016 10:07:10 PM,04/04/2016 10:07:14 PM,04/04/2016 10:17:58 PM,04/04/2016 10:26:37 PM,Code 2 Transport,04/04/2016 11:11:40 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160953881-AM20 -141431258,E35,14049017,Medical Incident,05/23/2014,05/23/2014,05/23/2014 11:18:19 AM,05/23/2014 11:19:17 AM,05/23/2014 11:19:23 AM,05/23/2014 11:20:25 AM,05/23/2014 11:23:57 AM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Code 2 Transport,05/23/2014 11:45:59 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",141431258-E35 -153472271,RC2,15133746,Medical Incident,12/13/2015,12/13/2015,12/13/2015 03:42:02 PM,12/13/2015 03:43:44 PM,12/13/2015 03:57:22 PM,12/13/2015 03:57:22 PM,12/13/2015 03:57:22 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Code 2 Transport,12/13/2015 04:04:06 PM,300 Block of 5TH AV,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7820265124332, -122.463349690248)",153472271-RC2 -141771788,B03,14061112,Alarms,06/26/2014,06/26/2014,06/26/2014 01:49:00 PM,06/26/2014 01:50:18 PM,06/26/2014 01:51:11 PM,06/26/2014 01:52:28 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 02:17:27 PM,400 Block of KANSAS ST,San Francisco,94107,B02,29,2422,3,3,3,false,Alarm,1,CHIEF,3,2,10,Potrero Hill,"(37.7640879187175, -122.403400751845)",141771788-B03 -160990656,64,16039207,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:49:44 AM,04/08/2016 07:51:08 AM,04/08/2016 07:51:26 AM,04/08/2016 07:52:04 AM,04/08/2016 07:56:00 AM,04/08/2016 08:16:17 AM,04/08/2016 08:40:44 AM,Code 2 Transport,04/08/2016 09:11:17 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160990656-64 -160981507,85,16038885,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:15:55 AM,04/07/2016 11:16:41 AM,04/07/2016 11:18:55 AM,04/07/2016 11:19:07 AM,04/07/2016 11:42:52 AM,04/07/2016 11:42:54 AM,04/07/2016 12:30:49 PM,Code 3 Transport,04/07/2016 01:06:10 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160981507-85 -151093144,T06,15041402,Alarms,04/19/2015,04/19/2015,04/19/2015 08:22:14 PM,04/19/2015 08:23:57 PM,04/19/2015 08:24:21 PM,04/19/2015 08:26:35 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Fire,04/19/2015 08:35:54 PM,0 Block of CASELLI AVE,San Francisco,94114,B06,24,5412,3,3,3,false,Alarm,1,TRUCK,3,6,8,Castro/Upper Market,"(37.7596949501702, -122.440159402266)",151093144-T06 -152654063,RC1,15101658,Traffic Collision,09/22/2015,09/22/2015,09/22/2015 11:00:35 PM,09/22/2015 11:01:29 PM,09/22/2015 11:01:44 PM,09/22/2015 11:04:06 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,Code 2 Transport,09/22/2015 11:05:18 PM,FOLSOM ST/RODGERS ST,San Francisco,94103,B02,1,2322,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,6,South of Market,"(37.7754510045625, -122.409481488927)",152654063-RC1 -141642612,E05,14056619,Alarms,06/13/2014,06/13/2014,06/13/2014 05:27:59 PM,06/13/2014 05:30:29 PM,06/13/2014 05:30:58 PM,06/13/2014 05:31:42 PM,06/13/2014 05:33:38 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Fire,06/13/2014 05:50:55 PM,1500 Block of BUCHANAN ST,San Francisco,94115,B04,5,3432,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.784323481334, -122.429605014266)",141642612-E05 -142173386,E14,14075382,Medical Incident,08/05/2014,08/05/2014,08/05/2014 09:13:09 PM,08/05/2014 09:14:17 PM,08/05/2014 09:14:55 PM,08/05/2014 09:16:09 PM,08/05/2014 09:18:28 PM,04/25/2016 01:15:49 PM,04/25/2016 01:15:49 PM,Code 2 Transport,08/05/2014 09:39:27 PM,400 Block of 40TH AVE,San Francisco,94121,B07,34,7256,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7803168001759, -122.500804706029)",142173386-E14 -141803457,68,14062441,Medical Incident,06/29/2014,06/29/2014,06/29/2014 09:07:43 PM,06/29/2014 09:07:43 PM,06/29/2014 09:10:22 PM,06/29/2014 09:10:22 PM,06/29/2014 09:19:24 PM,06/29/2014 09:23:14 PM,06/29/2014 09:39:02 PM,Code 3 Transport,06/29/2014 10:18:13 PM,200 Block of VERMONT ST,San Francisco,94103,B02,29,2422,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,10,Mission Bay,"(37.7666119536778, -122.404617787649)",141803457-68 -142870380,E01,14101026,Alarms,10/14/2014,10/13/2014,10/14/2014 04:13:55 AM,10/14/2014 04:15:01 AM,10/14/2014 04:15:12 AM,10/14/2014 04:17:43 AM,10/14/2014 04:20:39 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Fire,10/14/2014 04:24:37 AM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",142870380-E01 -151902105,E17,15072561,Medical Incident,07/09/2015,07/09/2015,07/09/2015 02:15:50 PM,07/09/2015 02:17:22 PM,07/09/2015 02:17:44 PM,07/09/2015 02:19:13 PM,07/09/2015 02:22:29 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Code 2 Transport,07/09/2015 02:34:14 PM,0 Block of BEATRICE LN,San Francisco,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7310236054412, -122.380741249103)",151902105-E17 -142123442,T06,14073651,Citizen Assist / Service Call,07/31/2014,07/31/2014,07/31/2014 09:20:34 PM,07/31/2014 09:22:14 PM,07/31/2014 09:23:08 PM,07/31/2014 09:25:08 PM,07/31/2014 09:26:45 PM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Fire,07/31/2014 09:56:06 PM,500 Block of WALLER ST,San Francisco,94117,B05,6,3635,3,3,3,false,Alarm,1,TRUCK,1,5,8,Haight Ashbury,"(37.7707538383927, -122.433121252603)",142123442-T06 -160992907,KM04,16039411,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:01:54 PM,04/08/2016 06:02:23 PM,04/08/2016 06:03:15 PM,04/08/2016 06:03:54 PM,04/08/2016 06:08:38 PM,04/08/2016 06:20:46 PM,04/08/2016 06:32:11 PM,Code 2 Transport,04/08/2016 07:13:28 PM,800 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.8024220415516, -122.413358845822)",160992907-KM04 -141992879,KM10,14069017,Medical Incident,07/18/2014,07/18/2014,07/18/2014 06:51:43 PM,07/18/2014 06:52:27 PM,07/18/2014 06:54:53 PM,07/18/2014 06:55:48 PM,07/18/2014 07:04:43 PM,07/18/2014 07:22:57 PM,07/18/2014 08:21:40 PM,Code 2 Transport,07/18/2014 08:21:42 PM,0 Block of CORDOVA ST,San Francisco,94112,B09,43,6224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7128189051559, -122.436154623588)",141992879-KM10 -151331342,62,15050394,Medical Incident,05/13/2015,05/13/2015,05/13/2015 10:31:54 AM,05/13/2015 10:32:44 AM,05/13/2015 10:32:57 AM,05/13/2015 10:33:08 AM,05/13/2015 10:54:53 AM,05/13/2015 10:55:08 AM,05/13/2015 11:00:34 AM,Code 3 Transport,05/13/2015 11:36:04 AM,700 Block of THE EMBARCADERO,San Francisco,94111,B01,13,915,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",151331342-62 -150370125,T03,15014074,Structure Fire,02/06/2015,02/05/2015,02/06/2015 12:46:02 AM,02/06/2015 12:46:02 AM,02/06/2015 12:46:08 AM,02/06/2015 12:47:40 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/06/2015 12:49:41 AM,POLK ST/FELL ST,San Francisco,94103,B02,36,3111,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",150370125-T03 -150491377,64,15018918,Medical Incident,02/18/2015,02/18/2015,02/18/2015 10:40:31 AM,02/18/2015 10:41:29 AM,02/18/2015 10:42:19 AM,02/18/2015 10:42:32 AM,02/18/2015 10:47:21 AM,02/18/2015 11:01:49 AM,02/18/2015 11:16:19 AM,Code 2 Transport,02/18/2015 11:41:03 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",150491377-64 -160972818,KM05,16038507,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:57:17 PM,04/06/2016 03:58:54 PM,04/06/2016 04:01:17 PM,04/06/2016 04:02:00 PM,04/06/2016 04:11:34 PM,04/06/2016 04:26:10 PM,04/06/2016 04:43:15 PM,Code 2 Transport,04/06/2016 05:23:30 PM,200 Block of CLAYTON ST,San Francisco,94117,B05,21,4523,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7730602068761, -122.449166125148)",160972818-KM05 -152313495,81,15088275,Medical Incident,08/19/2015,08/19/2015,08/19/2015 07:58:39 PM,08/19/2015 08:00:48 PM,08/19/2015 08:01:21 PM,08/19/2015 08:01:32 PM,08/19/2015 08:30:06 PM,08/19/2015 08:30:08 PM,08/19/2015 08:38:23 PM,Code 2 Transport,08/19/2015 09:27:33 PM,0 Block of PUTNAM ST,San Francisco,94110,B10,32,5725,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7389778799779, -122.410875138737)",152313495-81 -151321104,85,15050021,Medical Incident,05/12/2015,05/12/2015,05/12/2015 10:11:26 AM,05/12/2015 10:12:44 AM,05/12/2015 10:13:41 AM,05/12/2015 10:13:53 AM,05/12/2015 10:20:36 AM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Medical Examiner,05/12/2015 11:11:52 AM,1800 Block of 46TH AVE,San Francisco,94122,B08,23,7662,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7520316391171, -122.505272107627)",151321104-85 -160991634,KM12,16039287,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 12:48:37 PM,04/08/2016 12:48:37 PM,04/08/2016 12:48:37 PM,04/08/2016 12:48:37 PM,04/08/2016 12:48:37 PM,04/08/2016 01:06:16 PM,04/08/2016 01:44:52 PM,Code 2 Transport,04/08/2016 02:30:49 PM,FULTON ST/3RD AV,San Francisco,94122,B07,31,7111,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7740311340131, -122.460552661372)",160991634-KM12 -152120954,E43,15080667,Medical Incident,07/31/2015,07/31/2015,07/31/2015 09:25:12 AM,07/31/2015 09:28:37 AM,07/31/2015 09:29:05 AM,07/31/2015 09:30:22 AM,07/31/2015 09:33:11 AM,04/25/2016 01:09:11 PM,04/25/2016 01:09:11 PM,Code 2 Transport,07/31/2015 09:41:26 AM,200 Block of BALTIMORE WAY,San Francisco,94112,B09,43,6228,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7087981055096, -122.437985362628)",152120954-E43 -142130140,E38,14073688,Structure Fire,08/01/2014,07/31/2014,08/01/2014 01:01:53 AM,08/01/2014 01:01:53 AM,08/01/2014 01:02:49 AM,08/01/2014 01:03:50 AM,08/01/2014 01:06:49 AM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Fire,08/01/2014 01:06:56 AM,FILLMORE ST/PACIFIC AV,San Francisco,94115,B04,38,3546,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7933472849069, -122.434733665619)",142130140-E38 -153142744,E07,15120744,Medical Incident,11/10/2015,11/10/2015,11/10/2015 04:54:02 PM,11/10/2015 04:54:44 PM,11/10/2015 04:55:03 PM,11/10/2015 04:56:03 PM,11/10/2015 04:59:33 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Code 2 Transport,11/10/2015 05:17:41 PM,1100 Block of ALABAMA ST,San Francisco,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.753481556358, -122.411110362671)",153142744-E07 -151720086,E13,15065542,Traffic Collision,06/21/2015,06/20/2015,06/21/2015 12:24:34 AM,06/21/2015 12:25:29 AM,06/21/2015 12:25:58 AM,06/21/2015 12:27:37 AM,06/21/2015 12:29:04 AM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Code 2 Transport,06/21/2015 12:36:18 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",151720086-E13 -160982773,57,16039022,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:35:43 PM,04/07/2016 04:37:20 PM,04/07/2016 04:41:43 PM,04/07/2016 04:41:48 PM,04/07/2016 04:52:51 PM,04/07/2016 05:12:24 PM,04/07/2016 06:05:23 PM,Code 2 Transport,04/07/2016 06:30:08 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160982773-57 -151571052,E35,15059861,Medical Incident,06/06/2015,06/06/2015,06/06/2015 09:42:29 AM,06/06/2015 09:44:09 AM,06/06/2015 09:44:22 AM,06/06/2015 09:46:32 AM,06/06/2015 09:48:13 AM,06/06/2015 10:13:59 AM,06/06/2015 10:35:55 AM,Code 2 Transport,06/06/2015 11:41:53 AM,200 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7829926490718, -122.390528528572)",151571052-E35 -160962241,AM08,16038051,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:37:29 PM,04/05/2016 02:37:29 PM,04/05/2016 02:45:25 PM,04/05/2016 02:45:25 PM,04/05/2016 02:50:23 PM,04/05/2016 03:03:18 PM,04/05/2016 03:18:30 PM,Code 2 Transport,04/05/2016 04:11:17 PM,POWELL ST/ELLIS ST,San Francisco,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",160962241-AM08 -142063129,67,14071491,Medical Incident,07/25/2014,07/25/2014,07/25/2014 07:40:44 PM,07/25/2014 07:41:31 PM,07/25/2014 07:42:08 PM,07/25/2014 07:43:13 PM,07/25/2014 07:47:06 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Patient Declined Transport,07/25/2014 08:17:06 PM,700 Block of GARFIELD ST,San Francisco,94132,B09,33,8432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7196005934433, -122.469400983321)",142063129-67 -160952538,77,16037685,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:47:27 PM,04/04/2016 03:48:29 PM,04/04/2016 03:50:14 PM,04/04/2016 03:50:32 PM,04/04/2016 04:15:44 PM,04/04/2016 04:24:32 PM,04/04/2016 04:41:51 PM,Code 2 Transport,04/04/2016 05:18:33 PM,0 Block of ESPANOLA ST,San Francisco,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",160952538-77 -160921694,82,16036438,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:03:24 PM,04/01/2016 01:03:53 PM,04/01/2016 01:04:06 PM,04/01/2016 01:04:16 PM,04/01/2016 01:09:49 PM,04/01/2016 01:21:32 PM,04/01/2016 01:46:25 PM,Code 2 Transport,04/01/2016 02:28:45 PM,400 Block of ASHBURY ST,San Francisco,94117,B05,21,4513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7713975294669, -122.447285890088)",160921694-82 -152782914,E05,15106768,Alarms,10/05/2015,10/05/2015,10/05/2015 06:04:35 PM,10/05/2015 06:06:56 PM,10/05/2015 06:07:13 PM,10/05/2015 06:07:57 PM,10/05/2015 06:09:50 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Fire,10/05/2015 06:13:09 PM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7796580262541, -122.438306627071)",152782914-E05 -142290634,T01,14079493,Structure Fire,08/17/2014,08/16/2014,08/17/2014 04:47:39 AM,08/17/2014 04:47:39 AM,08/17/2014 04:48:14 AM,08/17/2014 04:50:19 AM,08/17/2014 04:51:18 AM,04/25/2016 01:15:37 PM,04/25/2016 01:15:37 PM,Fire,08/17/2014 04:52:10 AM,8TH ST/FOLSOM ST,San Francisco,94103,B02,29,2322,3,3,3,false,Alarm,1,TRUCK,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",142290634-T01 -141190237,E01,14040190,Alarms,04/29/2014,04/29/2014,04/29/2014 01:54:42 PM,04/29/2014 01:56:08 PM,04/29/2014 02:00:55 PM,04/29/2014 02:00:55 PM,04/29/2014 02:01:04 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Fire,04/29/2014 02:02:29 PM,100 Block of TAYLOR ST,SAN FRANCISCO,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",141190237-E01 -142533422,88,14088453,Medical Incident,09/10/2014,09/10/2014,09/10/2014 07:36:00 PM,09/10/2014 07:37:10 PM,09/10/2014 07:37:53 PM,09/10/2014 07:40:59 PM,09/10/2014 07:44:46 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Against Medical Advice,09/10/2014 08:22:52 PM,0 Block of MISSION ST,San Francisco,94105,B03,35,2111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7935385958356, -122.392889145798)",142533422-88 -152442274,70,15093112,Medical Incident,09/01/2015,09/01/2015,09/01/2015 02:32:03 PM,09/01/2015 02:38:09 PM,09/01/2015 02:38:40 PM,09/01/2015 02:39:35 PM,09/01/2015 02:44:12 PM,09/01/2015 03:15:57 PM,09/01/2015 03:16:06 PM,Code 2 Transport,09/01/2015 04:10:15 PM,3RD ST/PALOU AV,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",152442274-70 -141553069,E05,14053440,Medical Incident,06/04/2014,06/04/2014,06/04/2014 07:19:34 PM,06/04/2014 07:21:33 PM,06/04/2014 07:22:17 PM,06/04/2014 07:23:05 PM,06/04/2014 07:25:22 PM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Patient Declined Transport,06/04/2014 07:43:15 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",141553069-E05 -141361714,82,14046566,Medical Incident,05/16/2014,05/16/2014,05/16/2014 01:22:40 PM,05/16/2014 01:22:40 PM,05/16/2014 01:24:33 PM,05/16/2014 01:25:03 PM,05/16/2014 01:51:38 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Unable to Locate,05/16/2014 01:55:32 PM,0 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7813863984085, -122.413839313834)",141361714-82 -150052439,B09,15001930,Medical Incident,01/05/2015,01/05/2015,01/05/2015 04:05:18 PM,01/05/2015 04:05:18 PM,01/05/2015 04:05:50 PM,01/05/2015 04:06:47 PM,01/05/2015 04:09:40 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,No Merit,01/05/2015 04:10:01 PM,300 Block of PARIS ST,San Francisco,94112,B09,43,6127,A,E,3,false,Potentially Life-Threatening,1,CHIEF,3,9,11,Excelsior,"(37.7231287268116, -122.433759859733)",150052439-B09 -151082321,E01,15040963,Medical Incident,04/18/2015,04/18/2015,04/18/2015 04:32:08 PM,04/18/2015 04:32:08 PM,04/18/2015 04:34:12 PM,04/18/2015 04:35:53 PM,04/18/2015 04:39:06 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Code 3 Transport,04/18/2015 04:39:28 PM,JONES ST/ELLIS ST,San Francisco,94102,B03,3,1461,2,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",151082321-E01 -143570538,T11,14127647,Administrative,12/23/2014,12/22/2014,12/23/2014 06:34:10 AM,12/23/2014 06:34:20 AM,12/23/2014 06:35:03 AM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Fire,12/23/2014 06:35:34 AM,3800 Block of 26TH ST,San Francisco,94114,B06,11,5547,3,3,3,false,,1,TRUCK,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",143570538-T11 -141370691,54,14046835,Medical Incident,05/17/2014,05/16/2014,05/17/2014 06:33:00 AM,05/17/2014 06:35:05 AM,05/17/2014 06:36:37 AM,05/17/2014 06:36:52 AM,05/17/2014 06:46:41 AM,05/17/2014 06:54:59 AM,05/17/2014 07:11:10 AM,Code 2 Transport,05/17/2014 07:35:46 AM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",141370691-54 -153302182,E22,15127105,Citizen Assist / Service Call,11/26/2015,11/26/2015,11/26/2015 05:53:52 PM,11/26/2015 05:58:19 PM,11/26/2015 05:58:58 PM,11/26/2015 06:00:24 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Fire,11/26/2015 06:16:49 PM,800 Block of PACHECO ST,San Francisco,94116,B08,40,7353,3,3,3,false,Alarm,1,ENGINE,1,8,7,Inner Sunset,"(37.7535525364428, -122.469539482215)",153302182-E22 -152453287,E31,15093560,Medical Incident,09/02/2015,09/02/2015,09/02/2015 06:16:05 PM,09/02/2015 06:17:13 PM,09/02/2015 06:17:21 PM,09/02/2015 06:18:16 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Code 3 Transport,09/02/2015 06:22:06 PM,100 Block of 2ND AVE,San Francisco,94118,B07,31,7115,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,2,Inner Richmond,"(37.7862053016842, -122.46028712472)",152453287-E31 -150212586,53,15008276,Medical Incident,01/21/2015,01/21/2015,01/21/2015 04:42:57 PM,01/21/2015 04:44:28 PM,01/21/2015 04:45:57 PM,01/21/2015 04:46:05 PM,01/21/2015 04:48:54 PM,01/21/2015 05:13:36 PM,01/21/2015 05:23:22 PM,Code 2 Transport,01/21/2015 05:52:51 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",150212586-53 -142932186,E41,14103405,Structure Fire,10/20/2014,10/20/2014,10/20/2014 03:41:51 PM,10/20/2014 03:42:52 PM,10/20/2014 03:43:35 PM,10/20/2014 03:44:10 PM,10/20/2014 03:52:20 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 03:52:27 PM,2700 Block of TAYLOR ST,San Francisco,94133,B01,28,1433,3,3,3,true,Alarm,1,ENGINE,8,1,3,North Beach,"(37.8077534960371, -122.415641041957)",142932186-E41 -150590364,55,15022408,Structure Fire,02/28/2015,02/27/2015,02/28/2015 02:23:47 AM,02/28/2015 02:24:21 AM,02/28/2015 02:24:36 AM,02/28/2015 02:26:58 AM,02/28/2015 02:35:51 AM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Patient Declined Transport,02/28/2015 03:04:56 AM,200 Block of ANZA ST,San Francisco,94118,B05,10,4456,3,3,3,true,Alarm,1,MEDIC,5,5,1,Lone Mountain/USF,"(37.7808387791397, -122.449570865244)",150590364-55 -160921623,KM09,16036434,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:43:18 PM,04/01/2016 12:45:33 PM,04/01/2016 12:46:35 PM,04/01/2016 12:46:54 PM,04/01/2016 01:00:41 PM,04/01/2016 01:24:03 PM,04/01/2016 01:52:53 PM,Code 2 Transport,04/01/2016 02:29:04 PM,MISSION ST/BEALE ST,San Francisco,94105,B03,35,2116,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7911528075814, -122.395813422768)",160921623-KM09 -161003343,KM06,16039961,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:06:22 PM,04/09/2016 10:07:33 PM,04/09/2016 10:07:54 PM,04/09/2016 10:09:32 PM,04/09/2016 10:10:36 PM,04/09/2016 10:32:15 PM,04/09/2016 11:34:45 PM,Code 2 Transport,04/09/2016 11:34:49 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",161003343-KM06 -160971092,54,16038349,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:33:40 AM,04/06/2016 09:36:36 AM,04/06/2016 09:40:40 AM,04/06/2016 09:41:28 AM,04/06/2016 09:53:22 AM,04/06/2016 09:59:59 AM,04/06/2016 10:36:06 AM,Code 2 Transport,04/06/2016 11:23:45 AM,CALL BOX: 1ST ST/HARRISON ST,Treasure Isla,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860789776532, -122.393024256721)",160971092-54 -160953950,AM16,16037814,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:21:32 PM,04/04/2016 10:21:32 PM,04/04/2016 10:35:57 PM,04/04/2016 10:36:38 PM,04/04/2016 10:44:53 PM,04/04/2016 11:03:11 PM,04/04/2016 11:10:00 PM,Other,04/04/2016 11:51:37 PM,INDUSTRIAL ST/BARNEVELD AV,San Francisco,94124,B10,42,6381,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7387125856838, -122.404257984683)",160953950-AM16 -160922445,82,16036513,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:20:52 PM,04/01/2016 04:21:23 PM,04/01/2016 04:23:26 PM,04/01/2016 04:23:26 PM,04/01/2016 04:23:38 PM,04/01/2016 04:35:14 PM,04/01/2016 05:13:54 PM,Code 2 Transport,04/01/2016 05:45:11 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160922445-82 -150623199,E03,15023792,Medical Incident,03/03/2015,03/03/2015,03/03/2015 06:44:53 PM,03/03/2015 06:46:19 PM,03/03/2015 06:47:54 PM,03/03/2015 06:49:04 PM,03/03/2015 06:54:09 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Code 2 Transport,03/03/2015 07:08:10 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",150623199-E03 -160941477,71,16037238,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:17:10 AM,04/03/2016 11:18:18 AM,04/03/2016 11:18:43 AM,04/03/2016 11:18:59 AM,04/03/2016 11:23:59 AM,04/03/2016 11:37:13 AM,04/03/2016 11:57:32 AM,Code 2 Transport,04/03/2016 12:38:23 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160941477-71 -142930891,KM12,14103265,Medical Incident,10/20/2014,10/20/2014,10/20/2014 09:05:27 AM,10/20/2014 09:07:17 AM,10/20/2014 09:10:19 AM,10/20/2014 09:10:53 AM,10/20/2014 09:36:54 AM,10/20/2014 09:55:30 AM,10/20/2014 10:05:41 AM,Code 2 Transport,10/20/2014 10:58:14 AM,FRANCISCO ST/POWELL ST,San Francisco,94133,B01,28,131,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8048960105792, -122.411766482067)",142930891-KM12 -141543409,T03,14053096,Alarms,06/03/2014,06/03/2014,06/03/2014 09:53:25 PM,06/03/2014 09:55:27 PM,06/03/2014 09:55:48 PM,06/03/2014 09:56:03 PM,06/03/2014 09:57:12 PM,04/25/2016 01:16:58 PM,04/25/2016 01:16:58 PM,Fire,06/03/2014 10:53:46 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",141543409-T03 -151613299,AM16,15061681,Medical Incident,06/10/2015,06/10/2015,06/10/2015 07:51:02 PM,06/10/2015 07:52:08 PM,06/10/2015 07:52:21 PM,06/10/2015 07:53:04 PM,06/10/2015 07:56:05 PM,06/10/2015 08:15:42 PM,06/10/2015 08:28:43 PM,Code 2 Transport,06/10/2015 09:09:56 PM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",151613299-AM16 -141692031,E35,14058382,Alarms,06/18/2014,06/18/2014,06/18/2014 03:02:33 PM,06/18/2014 03:03:35 PM,06/18/2014 03:03:53 PM,06/18/2014 03:04:54 PM,06/18/2014 03:08:03 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Fire,06/18/2014 03:35:26 PM,600 Block of FOLSOM ST,San Francisco,94107,B03,1,2147,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7850654631195, -122.397209533545)",141692031-E35 -151013796,E03,15038406,Alarms,04/11/2015,04/11/2015,04/11/2015 11:19:23 PM,04/11/2015 11:22:09 PM,04/11/2015 11:24:02 PM,04/11/2015 11:24:45 PM,04/11/2015 11:26:42 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Fire,04/11/2015 11:37:57 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",151013796-E03 -151221356,E44,15046238,Medical Incident,05/02/2015,05/02/2015,05/02/2015 11:33:59 AM,05/02/2015 11:34:33 AM,05/02/2015 11:35:06 AM,05/02/2015 11:35:20 AM,05/02/2015 11:35:57 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Code 2 Transport,05/02/2015 12:05:27 PM,0 Block of RAYMOND AVE,San Francisco,94134,B10,44,6255,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121484523973, -122.404287839917)",151221356-E44 -153342315,B02,15128467,Structure Fire,11/30/2015,11/30/2015,11/30/2015 03:50:00 PM,11/30/2015 03:51:15 PM,11/30/2015 03:51:55 PM,11/30/2015 03:53:11 PM,11/30/2015 03:56:43 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Fire,11/30/2015 03:59:58 PM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,false,Alarm,1,CHIEF,8,6,9,Mission,"(37.7546409372119, -122.418601779487)",153342315-B02 -161000451,KM09,16039616,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:32:01 AM,04/09/2016 03:35:47 AM,04/09/2016 03:43:55 AM,04/09/2016 03:47:44 AM,04/09/2016 03:53:04 AM,04/09/2016 04:02:51 AM,04/09/2016 04:19:04 AM,Code 2 Transport,04/09/2016 04:44:22 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",161000451-KM09 -150950078,71,15035937,Medical Incident,04/05/2015,04/04/2015,04/05/2015 12:27:31 AM,04/05/2015 12:28:49 AM,04/05/2015 12:29:15 AM,04/05/2015 12:29:24 AM,04/05/2015 12:34:12 AM,04/05/2015 12:58:02 AM,04/05/2015 01:22:40 AM,Code 2 Transport,04/05/2015 02:33:34 AM,1500 Block of LAKE ST,San Francisco,94118,B07,31,7152,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7862096920143, -122.476043851416)",150950078-71 -142381010,83,14082726,Medical Incident,08/26/2014,08/26/2014,08/26/2014 09:30:55 AM,08/26/2014 09:32:38 AM,08/26/2014 09:33:39 AM,08/26/2014 09:33:50 AM,08/26/2014 09:49:02 AM,08/26/2014 10:04:15 AM,08/26/2014 10:07:28 AM,Code 2 Transport,08/26/2014 10:39:23 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",142381010-83 -161003625,76,16039992,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:16:42 PM,04/09/2016 11:18:55 PM,04/09/2016 11:21:25 PM,04/09/2016 11:21:34 PM,04/09/2016 11:28:58 PM,04/09/2016 11:35:44 PM,04/09/2016 11:43:56 PM,Code 2 Transport,04/10/2016 12:24:58 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161003625-76 -160962160,53,16038044,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:17:56 PM,04/05/2016 02:19:16 PM,04/05/2016 02:19:47 PM,04/05/2016 02:22:47 PM,04/05/2016 02:34:59 PM,04/05/2016 02:42:16 PM,04/05/2016 03:10:37 PM,Code 2 Transport,04/05/2016 03:41:10 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160962160-53 -150763050,83,15029244,Structure Fire,03/17/2015,03/17/2015,03/17/2015 05:56:46 PM,03/17/2015 05:57:46 PM,03/17/2015 05:58:01 PM,03/17/2015 05:58:25 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Fire,03/17/2015 06:02:19 PM,VAN NESS AV/SUTTER ST,San Francisco,94109,B04,3,3161,3,3,3,true,Alarm,1,MEDIC,5,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",150763050-83 -153051893,KM01,15117141,Medical Incident,11/01/2015,11/01/2015,11/01/2015 10:38:02 AM,11/01/2015 10:40:17 AM,11/01/2015 10:41:19 AM,11/01/2015 10:41:59 AM,11/01/2015 10:47:39 AM,11/01/2015 11:05:59 AM,11/01/2015 11:23:08 AM,Code 2 Transport,11/01/2015 11:47:25 AM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",153051893-KM01 -151432633,77,15054468,Medical Incident,05/23/2015,05/23/2015,05/23/2015 05:39:11 PM,05/23/2015 05:40:46 PM,05/23/2015 05:41:19 PM,05/23/2015 05:41:31 PM,05/23/2015 05:46:33 PM,05/23/2015 06:29:27 PM,05/23/2015 06:30:24 PM,Code 3 Transport,05/23/2015 07:10:11 PM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",151432633-77 -160970835,67,16038319,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:30:14 AM,04/06/2016 08:35:12 AM,04/06/2016 08:36:44 AM,04/06/2016 08:36:51 AM,04/06/2016 08:49:19 AM,04/06/2016 09:03:39 AM,04/06/2016 09:08:41 AM,Code 2 Transport,04/06/2016 10:01:13 AM,2500 Block of VALLEJO ST,San Francisco,94123,B04,16,3654,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7947566019198, -122.439234819715)",160970835-67 -152263689,E28,15086300,Medical Incident,08/14/2015,08/14/2015,08/14/2015 09:18:16 PM,08/14/2015 09:18:37 PM,08/14/2015 09:21:22 PM,08/14/2015 09:22:10 PM,08/14/2015 09:25:00 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Code 2 Transport,08/14/2015 09:37:03 PM,1200 Block of FILBERT ST,San Francisco,94109,B01,41,1626,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.7999745038153, -122.420050559214)",152263689-E28 -142213901,E09,14076893,Administrative,08/09/2014,08/09/2014,08/09/2014 10:55:29 PM,08/09/2014 10:55:41 PM,08/09/2014 10:55:48 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Fire,08/09/2014 10:56:21 PM,2200 Block of JERROLD AVE,San Francisco,94124,B10,9,6411,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",142213901-E09 -160922178,RC3,16036484,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:11:13 PM,04/01/2016 03:11:44 PM,04/01/2016 03:13:44 PM,04/01/2016 03:13:54 PM,04/01/2016 03:27:53 PM,04/01/2016 03:38:18 PM,04/01/2016 04:06:12 PM,Code 3 Transport,04/01/2016 04:10:24 PM,300 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8731,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,8,7,Lakeshore,"(37.7310536423783, -122.476383904851)",160922178-RC3 -160940594,85,16037153,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:26:41 AM,04/03/2016 04:27:20 AM,04/03/2016 04:28:26 AM,04/03/2016 04:28:38 AM,04/03/2016 04:43:03 AM,04/03/2016 05:07:55 AM,04/03/2016 05:23:37 AM,Code 2 Transport,04/03/2016 05:39:05 AM,700 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",160940594-85 -160970148,78,16038252,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:12:43 AM,04/06/2016 01:14:40 AM,04/06/2016 01:15:23 AM,04/06/2016 01:15:33 AM,04/06/2016 01:20:29 AM,04/06/2016 01:26:54 AM,04/06/2016 01:47:17 AM,Code 2 Transport,04/06/2016 02:19:56 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160970148-78 -160994120,AM16,16039545,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:53:15 PM,04/08/2016 11:54:00 PM,04/08/2016 11:54:13 PM,04/08/2016 11:54:42 PM,04/09/2016 12:06:00 AM,04/09/2016 12:11:24 AM,04/09/2016 12:37:28 AM,Code 2 Transport,04/09/2016 01:11:12 AM,0 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7201828007793, -122.385924774252)",160994120-AM16 -152451719,E43,15093420,Medical Incident,09/02/2015,09/02/2015,09/02/2015 11:55:18 AM,09/02/2015 11:55:18 AM,09/02/2015 11:56:10 AM,09/02/2015 11:57:11 AM,09/02/2015 11:59:20 AM,04/25/2016 01:08:35 PM,04/25/2016 01:08:35 PM,Code 2 Transport,09/02/2015 12:04:32 PM,MISSION ST/GENEVA AV,San Francisco,94112,B09,43,6175,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",152451719-E43 -160933776,AM20,16037067,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:41:22 PM,04/02/2016 10:44:30 PM,04/02/2016 10:44:54 PM,04/02/2016 10:45:45 PM,04/02/2016 10:56:41 PM,04/02/2016 11:10:19 PM,04/02/2016 11:23:23 PM,Code 2 Transport,04/03/2016 12:00:25 AM,HAWES ST/QUESADA AV,San Francisco,94124,B10,17,6634,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7280514439142, -122.382125708607)",160933776-AM20 -153290281,E23,15126481,Other,11/25/2015,11/24/2015,11/25/2015 03:37:16 AM,11/25/2015 03:38:27 AM,11/25/2015 03:38:56 AM,11/25/2015 03:40:48 AM,11/25/2015 03:44:24 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 03:49:03 AM,38TH AV/JUDAH ST,San Francisco,94122,B08,23,7626,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7608032352486, -122.497353231517)",153290281-E23 -160933531,63,16037054,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:41:13 PM,04/02/2016 09:41:13 PM,04/02/2016 09:41:45 PM,04/02/2016 09:42:16 PM,04/02/2016 09:53:52 PM,04/02/2016 10:03:33 PM,04/02/2016 10:47:17 PM,Code 2 Transport,04/02/2016 10:51:17 PM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",160933531-63 -141080343,E35,14036544,Medical Incident,04/18/2014,04/18/2014,04/18/2014 07:35:32 PM,04/18/2014 07:38:53 PM,04/18/2014 07:55:52 PM,04/18/2014 07:56:04 PM,04/18/2014 07:57:34 PM,04/18/2014 08:10:16 PM,04/25/2016 01:17:48 PM,Code 3 Transport,04/18/2014 08:26:20 PM,300 Block of MISSION ST,SAN FRANCISCO,94105,B03,35,2126,,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",141080343-E35 -153162469,KM04,15121481,Medical Incident,11/12/2015,11/12/2015,11/12/2015 03:35:45 PM,11/12/2015 03:35:45 PM,11/12/2015 03:36:07 PM,11/12/2015 03:37:01 PM,11/12/2015 03:50:06 PM,11/12/2015 04:01:40 PM,11/12/2015 04:17:44 PM,Code 2 Transport,11/12/2015 04:49:38 PM,MARKET ST/TAYLOR ST,San Francisco,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",153162469-KM04 -160974297,65,16038681,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:42:27 PM,04/06/2016 09:43:23 PM,04/06/2016 09:43:33 PM,04/06/2016 09:43:49 PM,04/06/2016 09:50:50 PM,04/06/2016 10:04:37 PM,04/06/2016 10:28:16 PM,Code 2 Transport,04/06/2016 11:09:24 PM,2700 Block of GOLDEN GATE AV,San Francisco,94118,B07,21,4557,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.776979907748, -122.455945572423)",160974297-65 -160970686,85,16038302,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:44:24 AM,04/06/2016 07:44:54 AM,04/06/2016 07:46:48 AM,04/06/2016 07:46:54 AM,04/06/2016 08:08:37 AM,04/06/2016 08:22:57 AM,04/06/2016 08:56:34 AM,Code 2 Transport,04/06/2016 09:13:47 AM,PERRY ST/3RD ST,San Francisco,94107,B03,8,2175,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821191215942, -122.396841427362)",160970686-85 -161000418,79,16039609,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:12:23 AM,04/09/2016 03:15:03 AM,04/09/2016 03:19:17 AM,04/09/2016 03:19:35 AM,04/09/2016 03:47:57 AM,04/09/2016 04:06:43 AM,04/09/2016 04:18:19 AM,Code 2 Transport,04/09/2016 04:29:53 AM,19TH AV/ORTEGA ST,San Francisco,94116,B08,40,7421,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7523785986376, -122.476292239944)",161000418-79 -141772166,E18,14061140,Medical Incident,06/26/2014,06/26/2014,06/26/2014 03:44:24 PM,06/26/2014 03:46:06 PM,06/26/2014 03:46:51 PM,06/26/2014 03:48:48 PM,06/26/2014 03:53:22 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,No Merit,06/26/2014 03:55:36 PM,2500 Block of 40TH AVE,San Francisco,94116,B08,18,7617,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392586275396, -122.498062678439)",141772166-E18 -152091686,T19,15079622,Alarms,07/28/2015,07/28/2015,07/28/2015 12:12:49 PM,07/28/2015 12:13:51 PM,07/28/2015 12:14:02 PM,07/28/2015 12:15:52 PM,07/28/2015 12:20:15 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/28/2015 12:43:22 PM,3900 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8412,3,3,3,false,Alarm,1,TRUCK,3,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",152091686-T19 -153142272,68,15120710,Medical Incident,11/10/2015,11/10/2015,11/10/2015 03:04:21 PM,11/10/2015 03:04:58 PM,11/10/2015 03:07:59 PM,11/10/2015 03:08:18 PM,11/10/2015 03:13:02 PM,11/10/2015 03:21:28 PM,11/10/2015 03:32:13 PM,Code 3 Transport,11/10/2015 03:58:53 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",153142272-68 -142530835,AM04,14088209,Medical Incident,09/10/2014,09/10/2014,09/10/2014 08:45:39 AM,09/10/2014 08:46:14 AM,09/10/2014 08:46:18 AM,09/10/2014 08:47:10 AM,09/10/2014 08:52:28 AM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,No Merit,09/10/2014 09:08:55 AM,600 Block of MINNA ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7781634278768, -122.41108692372)",142530835-AM04 -150713846,E03,15027299,Medical Incident,03/12/2015,03/12/2015,03/12/2015 09:50:34 PM,03/12/2015 09:50:34 PM,03/12/2015 09:51:11 PM,03/12/2015 09:52:29 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Against Medical Advice,03/12/2015 09:53:05 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",150713846-E03 -160921513,77,16036422,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:08:10 PM,04/01/2016 12:10:14 PM,04/01/2016 12:12:06 PM,04/01/2016 12:13:11 PM,04/01/2016 12:26:30 PM,04/01/2016 12:51:34 PM,04/01/2016 01:36:32 PM,Code 2 Transport,04/01/2016 02:04:35 PM,1500 Block of SACRAMENTO ST,San Francisco,94109,B01,41,1563,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7918676063561, -122.418413462356)",160921513-77 -150073996,T06,15002918,Alarms,01/07/2015,01/07/2015,01/07/2015 11:34:19 PM,01/07/2015 11:36:40 PM,01/07/2015 11:37:18 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Fire,01/07/2015 11:38:47 PM,1300 Block of JESSIE ST,San Francisco,94103,B02,36,5125,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7713391009584, -122.421139607078)",150073996-T06 -151732955,KM12,15066172,Medical Incident,06/22/2015,06/22/2015,06/22/2015 07:33:52 PM,06/22/2015 07:35:12 PM,06/22/2015 07:35:41 PM,06/22/2015 07:36:27 PM,06/22/2015 07:44:58 PM,06/22/2015 07:59:48 PM,06/22/2015 08:11:00 PM,Code 2 Transport,06/22/2015 08:44:58 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",151732955-KM12 -150721315,55,15027470,Medical Incident,03/13/2015,03/13/2015,03/13/2015 10:34:28 AM,03/13/2015 10:41:24 AM,03/13/2015 10:41:52 AM,03/13/2015 10:42:04 AM,03/13/2015 10:51:31 AM,03/13/2015 11:01:50 AM,03/13/2015 11:48:00 AM,Code 2 Transport,03/13/2015 11:54:59 AM,500 Block of SUTTER ST,San Francisco,94108,B01,3,1412,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",150721315-55 -160931487,AM02,16036832,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:56:38 AM,04/02/2016 11:58:17 AM,04/02/2016 11:59:53 AM,04/02/2016 12:01:33 PM,04/02/2016 12:26:13 PM,04/02/2016 12:45:46 PM,04/02/2016 01:11:54 PM,Code 2 Transport,04/02/2016 01:31:52 PM,1700 Block of BEACH ST,San Francisco,94123,B04,16,3564,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.804214022581, -122.43864061945)",160931487-AM02 -151441683,52,15054772,Medical Incident,05/24/2015,05/24/2015,05/24/2015 01:05:32 PM,05/24/2015 01:07:38 PM,05/24/2015 01:07:47 PM,05/24/2015 01:08:12 PM,05/24/2015 01:11:49 PM,05/24/2015 01:17:07 PM,05/24/2015 01:55:14 PM,Code 2 Transport,05/24/2015 02:20:57 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7131061953593, -122.460796179398)",151441683-52 -150372206,E26,15014357,Medical Incident,02/06/2015,02/06/2015,02/06/2015 02:46:37 PM,02/06/2015 02:48:00 PM,02/06/2015 02:48:17 PM,02/06/2015 02:50:14 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Code 2 Transport,02/06/2015 02:54:49 PM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7173197736494, -122.434883626306)",150372206-E26 -143253327,T01,14115235,Structure Fire,11/21/2014,11/21/2014,11/21/2014 08:04:36 PM,11/21/2014 08:05:09 PM,11/21/2014 08:05:31 PM,11/21/2014 08:07:38 PM,11/21/2014 08:09:30 PM,04/25/2016 01:13:53 PM,04/25/2016 01:13:53 PM,Fire,11/21/2014 08:17:20 PM,200 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.782817231709, -122.402251213701)",143253327-T01 -160970752,79,16038306,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:07:23 AM,04/06/2016 08:07:23 AM,04/06/2016 08:08:01 AM,04/06/2016 08:08:07 AM,04/06/2016 08:12:14 AM,04/06/2016 08:20:23 AM,04/06/2016 08:42:44 AM,Code 2 Transport,04/06/2016 08:55:01 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",160970752-79 -143063014,E28,14108409,Medical Incident,11/02/2014,11/02/2014,11/02/2014 08:06:17 PM,11/02/2014 08:08:30 PM,11/02/2014 08:09:12 PM,11/02/2014 08:10:00 PM,11/02/2014 08:10:00 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Unable to Locate,11/02/2014 08:19:46 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",143063014-E28 -160971675,52,16038393,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:46:11 AM,04/06/2016 11:49:44 AM,04/06/2016 11:49:56 AM,04/06/2016 11:50:15 AM,04/06/2016 11:56:12 AM,04/06/2016 12:06:03 PM,04/06/2016 12:35:42 PM,Code 2 Transport,04/06/2016 01:07:28 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160971675-52 -143192030,77,14113001,Medical Incident,11/15/2014,11/15/2014,11/15/2014 02:18:00 PM,11/15/2014 02:18:38 PM,11/15/2014 02:18:59 PM,11/15/2014 02:21:06 PM,11/15/2014 02:21:06 PM,11/15/2014 02:34:09 PM,11/15/2014 03:10:09 PM,Code 2 Transport,11/15/2014 03:34:04 PM,400 Block of 10TH ST,San Francisco,94103,B02,29,2344,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7709248562482, -122.410555957263)",143192030-77 -160980559,62,16038789,Traffic Collision,04/07/2016,04/06/2016,04/07/2016 06:08:59 AM,04/07/2016 06:16:20 AM,04/07/2016 06:20:27 AM,04/07/2016 06:20:27 AM,04/07/2016 06:29:01 AM,04/07/2016 06:42:33 AM,04/07/2016 07:01:30 AM,Code 2 Transport,04/07/2016 07:27:10 AM,FOLSOM ST/2ND ST,San Francisco,94107,B03,1,2147,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",160980559-62 -143443173,E02,14122451,Alarms,12/10/2014,12/10/2014,12/10/2014 06:29:05 PM,12/10/2014 06:30:15 PM,12/10/2014 06:31:17 PM,12/10/2014 06:33:05 PM,12/10/2014 06:34:18 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/10/2014 06:37:31 PM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",143443173-E02 -161000818,AM02,16039666,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:22:02 AM,04/09/2016 08:22:37 AM,04/09/2016 08:24:32 AM,04/09/2016 08:25:16 AM,04/09/2016 08:33:25 AM,04/09/2016 08:46:54 AM,04/09/2016 09:03:04 AM,Code 2 Transport,04/09/2016 09:55:19 AM,ARGUELLO BL/GEARY BL,San Francisco,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",161000818-AM02 -161001105,AM06,16039697,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:09:23 AM,04/09/2016 10:09:45 AM,04/09/2016 10:10:08 AM,04/09/2016 10:11:04 AM,04/09/2016 10:17:53 AM,04/09/2016 10:34:41 AM,04/09/2016 11:07:45 AM,Code 2 Transport,04/09/2016 11:50:04 AM,OCEAN AV/BRIGHTON AV,San Francisco,94112,B09,15,8472,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,7,West of Twin Peaks,"(37.7236723652343, -122.455135658662)",161001105-AM06 -142571907,RC2,14089812,Medical Incident,09/14/2014,09/14/2014,09/14/2014 03:00:27 PM,09/14/2014 03:02:12 PM,09/14/2014 03:03:48 PM,09/14/2014 03:03:48 PM,09/14/2014 03:05:57 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,No Merit,09/14/2014 03:09:45 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",142571907-RC2 -152460198,T03,15093667,Medical Incident,09/03/2015,09/02/2015,09/03/2015 01:44:14 AM,09/03/2015 01:45:28 AM,09/03/2015 01:45:51 AM,09/03/2015 01:47:50 AM,09/03/2015 01:49:43 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Code 2 Transport,09/03/2015 01:55:48 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,6,Tenderloin,"(37.7862508859711, -122.413133876591)",152460198-T03 -153223477,AM20,15124002,Medical Incident,11/18/2015,11/18/2015,11/18/2015 06:47:37 PM,11/18/2015 06:48:40 PM,11/18/2015 06:48:46 PM,11/18/2015 06:50:18 PM,11/18/2015 06:59:59 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,No Merit,11/18/2015 07:08:06 PM,BAYSHORE BL/INDUSTRIAL ST,San Francisco,94124,B10,42,6374,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.737965867581, -122.406910505115)",153223477-AM20 -161002282,AM16,16039840,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:33:21 PM,04/09/2016 04:37:46 PM,04/09/2016 04:41:10 PM,04/09/2016 04:41:35 PM,04/09/2016 04:48:26 PM,04/09/2016 05:07:12 PM,04/09/2016 05:21:28 PM,Code 2 Transport,04/09/2016 05:42:45 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",161002282-AM16 -142171079,E01,14075185,Medical Incident,08/05/2014,08/05/2014,08/05/2014 10:49:25 AM,08/05/2014 10:49:46 AM,08/05/2014 10:51:44 AM,08/05/2014 10:52:12 AM,08/05/2014 10:54:27 AM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Code 2 Transport,08/05/2014 11:10:04 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",142171079-E01 -150320522,E11,15012242,Medical Incident,02/01/2015,01/31/2015,02/01/2015 03:14:30 AM,02/01/2015 03:17:18 AM,02/01/2015 03:18:35 AM,02/01/2015 03:19:51 AM,02/01/2015 03:23:09 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 2 Transport,02/01/2015 03:35:21 AM,RANDALL ST/ARLINGTON ST,San Francisco,94110,B06,32,8112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Glen Park,"(37.7398601523119, -122.424502659992)",150320522-E11 -150680034,68,15025825,Medical Incident,03/09/2015,03/08/2015,03/09/2015 12:12:22 AM,03/09/2015 12:14:13 AM,03/09/2015 12:15:23 AM,03/09/2015 12:15:33 AM,03/09/2015 12:32:11 AM,03/09/2015 12:50:02 AM,03/09/2015 01:01:14 AM,Code 2 Transport,03/09/2015 01:26:28 AM,1400 Block of 40TH AVE,San Francisco,94122,B08,23,7631,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7597777456855, -122.499361901706)",150680034-68 -152341487,E16,15089193,Traffic Collision,08/22/2015,08/22/2015,08/22/2015 11:38:31 AM,08/22/2015 11:40:29 AM,08/22/2015 11:40:54 AM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Code 2 Transport,08/22/2015 11:44:00 AM,600 Block of MASON ST,Presidio,94108,B99,51,4614,2,2,2,true,Non Life-threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",152341487-E16 -151841654,RS1,15070222,Medical Incident,07/03/2015,07/03/2015,07/03/2015 12:42:26 PM,07/03/2015 12:42:56 PM,07/03/2015 12:43:15 PM,07/03/2015 12:44:27 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Patient Declined Transport,07/03/2015 12:45:34 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,false,Non Life-threatening,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",151841654-RS1 -143630903,88,14129795,Medical Incident,12/29/2014,12/29/2014,12/29/2014 09:31:00 AM,12/29/2014 09:32:26 AM,12/29/2014 09:34:39 AM,12/29/2014 09:34:47 AM,12/29/2014 09:46:23 AM,12/29/2014 10:03:59 AM,12/29/2014 10:21:25 AM,Code 2 Transport,12/29/2014 11:29:54 AM,1200 Block of MCALLISTER ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7785814907258, -122.432596251801)",143630903-88 -141030148,E16,14034750,Medical Incident,04/13/2014,04/13/2014,04/13/2014 10:48:12 AM,04/13/2014 10:49:46 AM,04/13/2014 10:50:34 AM,04/13/2014 10:51:11 AM,04/13/2014 10:58:57 AM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Code 2 Transport,04/13/2014 11:05:17 AM,1800 Block of CHESTNUT ST,SAN FRANCISCO,94123,B04,16,3445,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8011854069176, -122.433790937219)",141030148-E16 -150540585,B02,15020637,Alarms,02/23/2015,02/22/2015,02/23/2015 07:33:41 AM,02/23/2015 07:35:01 AM,02/23/2015 07:35:09 AM,02/23/2015 07:36:05 AM,02/23/2015 07:43:39 AM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Fire,02/23/2015 07:43:54 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,CHIEF,3,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150540585-B02 -151023245,B01,15038732,Outside Fire,04/12/2015,04/12/2015,04/12/2015 09:28:08 PM,04/12/2015 09:28:32 PM,04/12/2015 09:28:51 PM,04/12/2015 09:30:53 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Fire,04/12/2015 09:33:09 PM,2000 Block of KEARNY ST,San Francisco,94133,B01,28,937,3,3,3,false,Alarm,1,CHIEF,4,1,3,North Beach,"(37.8069201392161, -122.407170160416)",151023245-B01 -142461162,AM24,14085630,Medical Incident,09/03/2014,09/03/2014,09/03/2014 09:53:47 AM,09/03/2014 09:54:24 AM,09/03/2014 09:54:40 AM,09/03/2014 09:55:19 AM,09/03/2014 09:58:16 AM,09/03/2014 10:28:48 AM,09/03/2014 10:41:47 AM,Code 2 Transport,09/03/2014 11:15:16 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",142461162-AM24 -153301375,E15,15126984,Medical Incident,11/26/2015,11/26/2015,11/26/2015 12:57:01 PM,11/26/2015 12:57:25 PM,11/26/2015 12:58:21 PM,11/26/2015 12:59:22 PM,11/26/2015 12:59:22 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 2 Transport,11/26/2015 01:22:01 PM,1800 Block of SAN JOSE AVE,San Francisco,94112,B09,15,8266,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7280468678976, -122.440623369006)",153301375-E15 -151670992,E11,15063786,Medical Incident,06/16/2015,06/16/2015,06/16/2015 09:50:15 AM,06/16/2015 09:51:34 AM,06/16/2015 09:52:39 AM,06/16/2015 09:53:59 AM,06/16/2015 09:56:19 AM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/16/2015 09:57:51 AM,3600 Block of 21ST ST,San Francisco,94114,B06,11,5461,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7564818532329, -122.429008644145)",151670992-E11 -160943069,KM02,16037387,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:16:07 PM,04/03/2016 07:18:07 PM,04/03/2016 07:18:28 PM,04/03/2016 07:18:50 PM,04/03/2016 07:26:59 PM,04/03/2016 07:53:46 PM,04/03/2016 08:00:29 PM,Code 3 Transport,04/03/2016 08:24:54 PM,900 Block of UNION ST,San Francisco,94133,B01,28,1513,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Russian Hill,"(37.7997063390042, -122.415493706507)",160943069-KM02 -142130923,E08,14073772,Other,08/01/2014,08/01/2014,08/01/2014 09:10:22 AM,08/01/2014 09:10:22 AM,08/01/2014 09:10:22 AM,08/01/2014 09:10:22 AM,08/01/2014 09:10:22 AM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Fire,08/01/2014 09:29:07 AM,5TH ST/BRANNAN ST,San Francisco,94107,B03,8,2241,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7765683820103, -122.398755450545)",142130923-E08 -160983032,59,16039043,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:55:39 PM,04/07/2016 05:57:47 PM,04/07/2016 05:59:19 PM,04/07/2016 05:59:45 PM,04/07/2016 06:06:13 PM,04/07/2016 06:11:32 PM,04/07/2016 06:20:24 PM,Code 2 Transport,04/07/2016 06:45:11 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160983032-59 -160964166,72,16038222,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:14:41 PM,04/05/2016 11:19:31 PM,04/05/2016 11:21:12 PM,04/05/2016 11:23:35 PM,04/05/2016 11:32:57 PM,04/06/2016 12:10:40 AM,04/06/2016 12:19:20 AM,Code 2 Transport,04/06/2016 01:46:28 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160964166-72 -150520693,82,15019948,Medical Incident,02/21/2015,02/20/2015,02/21/2015 04:59:49 AM,02/21/2015 05:00:30 AM,02/21/2015 05:01:09 AM,02/21/2015 05:01:43 AM,02/21/2015 05:07:14 AM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Against Medical Advice,02/21/2015 06:15:49 AM,700 Block of SHIELDS ST,San Francisco,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7179460780401, -122.469389961525)",150520693-82 -142601854,KM14,14090852,Medical Incident,09/17/2014,09/17/2014,09/17/2014 01:21:42 PM,09/17/2014 01:25:31 PM,09/17/2014 01:26:21 PM,09/17/2014 01:27:02 PM,09/17/2014 01:34:21 PM,09/17/2014 01:50:15 PM,09/17/2014 02:09:05 PM,Code 2 Transport,09/17/2014 02:35:29 PM,300 Block of CORBETT AVE,San Francisco,94114,B05,24,5265,3,3,3,false,Non Life-threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7591354950053, -122.446136454029)",142601854-KM14 -150573030,68,15021891,Medical Incident,02/26/2015,02/26/2015,02/26/2015 06:31:01 PM,02/26/2015 06:36:29 PM,02/26/2015 06:37:04 PM,02/26/2015 06:37:19 PM,02/26/2015 06:42:49 PM,02/26/2015 07:10:14 PM,02/26/2015 07:40:51 PM,Code 2 Transport,02/26/2015 08:13:16 PM,900 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6361,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7318146531856, -122.403993066647)",150573030-68 -141700392,78,14058578,Traffic Collision,06/19/2014,06/18/2014,06/19/2014 05:48:31 AM,06/19/2014 05:50:00 AM,06/19/2014 05:51:03 AM,06/19/2014 05:51:19 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Code 2 Transport,06/19/2014 05:51:54 AM,100 Block of 9TH ST,San Francisco,94103,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,7,2,6,South of Market,"(37.7760543061938, -122.414393004759)",141700392-78 -143012682,B06,14106345,Medical Incident,10/28/2014,10/28/2014,10/28/2014 06:01:59 PM,10/28/2014 06:01:59 PM,10/28/2014 06:02:17 PM,10/28/2014 06:03:49 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Code 3 Transport,10/28/2014 06:07:06 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,A,E,3,false,Potentially Life-Threatening,1,CHIEF,4,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",143012682-B06 -160980325,57,16038758,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:58:48 AM,04/07/2016 03:01:20 AM,04/07/2016 03:01:44 AM,04/07/2016 03:01:58 AM,04/07/2016 03:09:29 AM,04/07/2016 03:34:19 AM,04/07/2016 03:39:03 AM,Code 2 Transport,04/07/2016 04:14:21 AM,1200 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",160980325-57 -152750584,79,15105210,Medical Incident,10/02/2015,10/01/2015,10/02/2015 06:35:24 AM,10/02/2015 06:35:55 AM,10/02/2015 06:36:47 AM,10/02/2015 06:36:55 AM,10/02/2015 06:39:53 AM,10/02/2015 06:58:38 AM,10/02/2015 07:06:43 AM,Code 2 Transport,10/02/2015 07:23:55 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",152750584-79 -142392581,83,14083191,Traffic Collision,08/27/2014,08/27/2014,08/27/2014 05:01:44 PM,08/27/2014 05:03:18 PM,08/27/2014 05:03:47 PM,08/27/2014 05:03:57 PM,08/27/2014 05:08:27 PM,08/27/2014 05:18:59 PM,08/27/2014 05:46:21 PM,Code 3 Transport,08/27/2014 06:17:37 PM,SANSOME ST/SUTTER ST,San Francisco,94104,B01,13,1164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7902474029119, -122.400555263617)",142392581-83 -143652201,E32,14130759,Medical Incident,12/31/2014,12/31/2014,12/31/2014 04:26:54 PM,12/31/2014 04:27:53 PM,12/31/2014 04:33:15 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Code 2 Transport,12/31/2014 04:33:39 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.728489442639, -122.429995375728)",143652201-E32 -150521141,E31,15019980,Medical Incident,02/21/2015,02/21/2015,02/21/2015 09:28:08 AM,02/21/2015 09:28:34 AM,02/21/2015 09:29:08 AM,02/21/2015 09:30:27 AM,02/21/2015 09:33:54 AM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Medical Examiner,02/21/2015 09:35:35 AM,1500 Block of CABRILLO ST,San Francisco,94118,B07,31,7155,E,E,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7747974592995, -122.475214571834)",150521141-E31 -160930752,KM09,16036746,Medical Incident,04/02/2016,04/01/2016,04/02/2016 07:52:35 AM,04/02/2016 07:54:20 AM,04/02/2016 07:57:01 AM,04/02/2016 07:58:29 AM,04/02/2016 08:02:30 AM,04/02/2016 08:16:15 AM,04/02/2016 08:44:02 AM,Code 2 Transport,04/02/2016 09:11:16 AM,0 Block of TAYLOR ST,San Francisco,94102,B03,1,1454,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",160930752-KM09 -142283852,B07,14079397,Gas Leak (Natural and LP Gases),08/16/2014,08/16/2014,08/16/2014 10:52:05 PM,08/16/2014 10:53:20 PM,08/16/2014 10:53:46 PM,08/16/2014 10:55:01 PM,08/16/2014 10:57:19 PM,04/25/2016 01:15:37 PM,04/25/2016 01:15:37 PM,Fire,08/16/2014 11:08:42 PM,600 Block of 8TH AVE,San Francisco,94118,B07,31,7134,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7762007887235, -122.466155279307)",142283852-B07 -150311209,T15,15011916,Structure Fire,01/31/2015,01/31/2015,01/31/2015 10:30:03 AM,01/31/2015 10:30:50 AM,01/31/2015 10:30:58 AM,01/31/2015 10:32:21 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 11:06:04 AM,0 Block of VICTORIA ST,San Francisco,94132,B09,33,8375,3,3,3,false,Fire,1,TRUCK,7,9,7,Oceanview/Merced/Ingleside,"(37.7112640726513, -122.465195333879)",150311209-T15 -160972312,60,16038458,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:11:15 PM,04/06/2016 02:11:15 PM,04/06/2016 02:11:48 PM,04/06/2016 02:12:39 PM,04/06/2016 02:17:14 PM,04/06/2016 02:42:47 PM,04/06/2016 03:23:45 PM,Code 2 Transport,04/06/2016 04:12:43 PM,1700 Block of YOSEMITE AVE,San Francisco,94124,B10,17,6512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7284996658469, -122.39444320706)",160972312-60 -160940046,70,16037096,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:12:34 AM,04/03/2016 12:15:05 AM,04/03/2016 12:15:51 AM,04/03/2016 12:16:44 AM,04/03/2016 12:31:29 AM,04/03/2016 12:31:31 AM,04/03/2016 01:03:42 AM,Code 2 Transport,04/03/2016 01:04:58 AM,1500 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,B,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",160940046-70 -141812088,E31,14062723,Structure Fire,06/30/2014,06/30/2014,06/30/2014 03:09:08 PM,06/30/2014 03:09:08 PM,06/30/2014 03:15:16 PM,06/30/2014 03:17:39 PM,06/30/2014 03:19:32 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 03:29:53 PM,3600 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4436,3,3,3,false,Alarm,1,ENGINE,4,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",141812088-E31 -161010670,60,16040085,Medical Incident,04/10/2016,04/09/2016,04/10/2016 05:18:33 AM,04/10/2016 05:20:53 AM,04/10/2016 05:21:42 AM,04/10/2016 05:21:56 AM,04/10/2016 05:28:28 AM,04/10/2016 05:53:41 AM,04/10/2016 06:06:36 AM,Code 2 Transport,04/10/2016 06:31:59 AM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",161010670-60 -160960772,77,16037920,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:38:25 AM,04/05/2016 08:38:25 AM,04/05/2016 08:39:46 AM,04/05/2016 08:39:56 AM,04/05/2016 08:45:59 AM,04/05/2016 08:59:17 AM,04/05/2016 09:28:39 AM,Code 2 Transport,04/05/2016 10:12:25 AM,0 Block of BRIDGEVIEW DR,San Francisco,94124,B10,42,6453,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7346890592407, -122.394512701383)",160960772-77 -161001358,86,16039731,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:36:46 AM,04/09/2016 11:37:55 AM,04/09/2016 11:38:26 AM,04/09/2016 11:38:35 AM,04/09/2016 11:58:55 AM,04/09/2016 12:08:04 PM,04/09/2016 12:18:20 PM,Code 2 Transport,04/09/2016 12:51:20 PM,100 Block of KING ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",161001358-86 -152323064,B01,15088590,Structure Fire,08/20/2015,08/20/2015,08/20/2015 06:30:43 PM,08/20/2015 06:31:49 PM,08/20/2015 06:32:15 PM,08/20/2015 06:33:20 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Fire,08/20/2015 06:34:46 PM,2600 Block of GOUGH ST,San Francisco,94123,B04,38,3246,3,3,3,false,Alarm,1,CHIEF,11,4,2,Marina,"(37.7976760686896, -122.427106236282)",152323064-B01 -143642247,B07,14130265,Medical Incident,12/30/2014,12/30/2014,12/30/2014 03:58:25 PM,12/30/2014 03:59:43 PM,12/30/2014 04:03:53 PM,12/30/2014 04:04:34 PM,12/30/2014 04:09:40 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 04:18:15 PM,FULTON ST/PARK PRESIDIO BL,San Francisco,94118,B07,31,7144,3,3,3,false,Non Life-threatening,1,CHIEF,3,7,1,Golden Gate Park,"(37.7731389469461, -122.471762120845)",143642247-B07 -152970173,E28,15113903,Structure Fire,10/24/2015,10/23/2015,10/24/2015 01:02:28 AM,10/24/2015 01:02:28 AM,10/24/2015 01:02:37 AM,10/24/2015 01:03:44 AM,10/24/2015 01:06:08 AM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,Fire,10/24/2015 01:07:01 AM,LEAVENWORTH ST/JEFFERSON ST,San Francisco,94109,B01,28,1254,3,3,3,false,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",152970173-E28 -161003164,88,16039942,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:16:45 PM,04/09/2016 09:16:45 PM,04/09/2016 09:17:21 PM,04/09/2016 09:17:37 PM,04/09/2016 09:22:25 PM,04/09/2016 09:46:06 PM,04/09/2016 10:09:39 PM,Code 2 Transport,04/09/2016 10:44:06 PM,POLK ST/POST ST,San Francisco,94109,B02,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",161003164-88 -150723514,89,15027661,Medical Incident,03/13/2015,03/13/2015,03/13/2015 07:36:08 PM,03/13/2015 07:37:11 PM,03/13/2015 07:38:42 PM,03/13/2015 07:38:47 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Code 3 Transport,03/13/2015 07:39:12 PM,1100 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7892692454633, -122.416205378022)",150723514-89 -153382773,E44,15130143,Alarms,12/04/2015,12/04/2015,12/04/2015 04:52:06 PM,12/04/2015 04:52:17 PM,12/04/2015 04:52:23 PM,12/04/2015 04:53:45 PM,12/04/2015 04:56:12 PM,04/25/2016 01:06:50 PM,04/25/2016 01:06:50 PM,Fire,12/04/2015 05:35:38 PM,400 Block of MANSELL ST,San Francisco,94134,B10,44,626,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.7204133129314, -122.406069423364)",153382773-E44 -143292115,76,14116691,Medical Incident,11/25/2014,11/25/2014,11/25/2014 02:21:13 PM,11/25/2014 02:22:50 PM,11/25/2014 02:23:13 PM,11/25/2014 02:23:37 PM,11/25/2014 02:30:43 PM,11/25/2014 03:09:43 PM,11/25/2014 04:06:34 PM,Code 2 Transport,11/25/2014 04:19:20 PM,2800 Block of OAKDALE AVE,San Francisco,94124,B10,9,6376,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7427133771081, -122.404527159981)",143292115-76 -143051731,E31,14107912,Medical Incident,11/01/2014,11/01/2014,11/01/2014 10:58:49 AM,11/01/2014 10:58:49 AM,11/01/2014 10:59:08 AM,11/01/2014 11:00:00 AM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Patient Declined Transport,11/01/2014 11:01:05 AM,2ND AV/ANZA ST,San Francisco,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7792826279491, -122.459860372216)",143051731-E31 -150321211,E09,15012312,Traffic Collision,02/01/2015,02/01/2015,02/01/2015 09:58:09 AM,02/01/2015 10:00:14 AM,02/01/2015 10:02:03 AM,02/01/2015 10:03:47 AM,02/01/2015 10:08:05 AM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 10:24:37 AM,100 Block of AVENUE C,San Francisco,94130,B10,9,6375,2,2,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",150321211-E09 -153034275,75,15116459,Medical Incident,10/30/2015,10/30/2015,10/30/2015 11:34:02 PM,10/30/2015 11:35:08 PM,10/30/2015 11:35:30 PM,10/30/2015 11:35:53 PM,10/30/2015 11:40:15 PM,10/30/2015 11:54:42 PM,10/31/2015 12:02:52 AM,Code 3 Transport,10/31/2015 12:41:38 AM,MARKET ST/TURK ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",153034275-75 -143503267,RC1,14125141,Medical Incident,12/16/2014,12/16/2014,12/16/2014 08:20:03 PM,12/16/2014 08:23:39 PM,12/16/2014 08:24:08 PM,12/16/2014 08:24:52 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Code 2 Transport,12/16/2014 08:29:57 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7769455318934, -122.416807079177)",143503267-RC1 -142422755,RS2,14084340,Medical Incident,08/30/2014,08/30/2014,08/30/2014 06:22:31 PM,08/30/2014 06:23:55 PM,08/30/2014 06:26:36 PM,08/30/2014 06:28:14 PM,08/30/2014 06:29:28 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 06:42:46 PM,HARRISON ST/21ST ST,San Francisco,94110,B06,7,545,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,6,9,Mission,"(37.7574295248748, -122.41234804057)",142422755-RS2 -160933216,64,16037017,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:53:41 PM,04/02/2016 07:55:44 PM,04/02/2016 07:58:05 PM,04/02/2016 07:58:18 PM,04/02/2016 08:04:59 PM,04/02/2016 08:23:47 PM,04/02/2016 08:36:24 PM,Code 2 Transport,04/02/2016 09:07:00 PM,1200 Block of 32ND AVE,San Francisco,94122,B08,23,7537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7638872213875, -122.491188755025)",160933216-64 -141632812,E41,14056303,Medical Incident,06/12/2014,06/12/2014,06/12/2014 06:38:52 PM,06/12/2014 06:42:05 PM,06/12/2014 07:04:02 PM,06/12/2014 07:04:22 PM,06/12/2014 07:14:29 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Unable to Locate,06/12/2014 07:16:11 PM,LARKIN ST/POST ST,San Francisco,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",141632812-E41 -161000306,62,16039593,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:14:23 AM,04/09/2016 02:14:23 AM,04/09/2016 02:15:41 AM,04/09/2016 02:15:56 AM,04/09/2016 02:25:00 AM,04/09/2016 02:48:00 AM,04/09/2016 03:24:28 AM,Code 2 Transport,04/09/2016 04:00:39 AM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",161000306-62 -151223117,E05,15046442,Traffic Collision,05/02/2015,05/02/2015,05/02/2015 08:48:52 PM,05/02/2015 08:48:52 PM,05/02/2015 08:49:02 PM,05/02/2015 08:50:36 PM,05/02/2015 08:52:20 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Code 2 Transport,05/02/2015 08:56:32 PM,GOLDEN GATE AV/HYDE ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",151223117-E05 -160983084,79,16039052,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:06:39 PM,04/07/2016 06:08:49 PM,04/07/2016 06:16:08 PM,04/07/2016 06:16:08 PM,04/07/2016 06:20:27 PM,04/07/2016 06:35:21 PM,04/07/2016 06:43:31 PM,Code 3 Transport,04/07/2016 08:04:32 PM,SACRAMENTO ST/FRONT ST,San Francisco,94111,B01,13,1141,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",160983084-79 -142140830,B03,14074139,Structure Fire,08/02/2014,08/02/2014,08/02/2014 08:19:51 AM,08/02/2014 08:20:36 AM,08/02/2014 08:21:07 AM,08/02/2014 08:22:52 AM,08/02/2014 08:24:19 AM,04/25/2016 01:15:53 PM,04/25/2016 01:15:53 PM,Fire,08/02/2014 09:00:24 AM,200 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7829926490718, -122.390528528572)",142140830-B03 -150742627,E38,15028479,Alarms,03/15/2015,03/15/2015,03/15/2015 05:01:19 PM,03/15/2015 05:02:47 PM,03/15/2015 05:02:56 PM,03/15/2015 05:03:10 PM,03/15/2015 05:06:37 PM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Fire,03/15/2015 05:08:54 PM,2700 Block of BUCHANAN ST,San Francisco,94123,B04,38,3442,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7951554962576, -122.431799193187)",150742627-E38 -160991884,88,16039318,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:52:14 PM,04/08/2016 01:54:29 PM,04/08/2016 01:59:11 PM,04/08/2016 02:00:36 PM,04/08/2016 02:11:42 PM,04/08/2016 02:17:43 PM,04/08/2016 02:28:01 PM,Code 2 Transport,04/08/2016 02:59:48 PM,200 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",160991884-88 -160922899,63,16036551,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:02:01 PM,04/01/2016 06:04:40 PM,04/01/2016 06:06:09 PM,04/01/2016 06:06:47 PM,04/01/2016 06:19:33 PM,04/01/2016 06:36:41 PM,04/01/2016 06:53:17 PM,Code 2 Transport,04/01/2016 07:33:46 PM,3300 Block of 17TH ST,San Francisco,94110,B02,7,5247,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7632828833773, -122.421077099957)",160922899-63 -160991290,AM12,16039265,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:14:08 AM,04/08/2016 11:15:42 AM,04/08/2016 11:16:06 AM,04/08/2016 11:18:03 AM,04/08/2016 11:53:32 AM,04/08/2016 11:54:24 AM,04/08/2016 12:07:54 PM,Code 2 Transport,04/08/2016 12:47:09 PM,800 Block of SANSOME ST,San Francisco,94133,B01,13,1212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.7979585906161, -122.402203152588)",160991290-AM12 -141250434,E07,14042555,Medical Incident,05/05/2014,05/05/2014,05/05/2014 10:52:29 PM,05/05/2014 10:53:12 PM,05/05/2014 10:53:39 PM,05/05/2014 10:55:17 PM,05/05/2014 10:57:09 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 11:08:36 PM,2000 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",141250434-E07 -152731850,E28,15104510,Medical Incident,09/30/2015,09/30/2015,09/30/2015 01:14:17 PM,09/30/2015 01:15:15 PM,09/30/2015 01:15:30 PM,09/30/2015 01:16:32 PM,09/30/2015 01:22:35 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Code 2 Transport,09/30/2015 02:00:33 PM,1000 Block of THE EMBARCADERO,San Francisco,94111,B01,13,927,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",152731850-E28 -152891506,E42,15110997,Medical Incident,10/16/2015,10/16/2015,10/16/2015 11:45:26 AM,10/16/2015 11:46:36 AM,10/16/2015 11:47:22 AM,10/16/2015 11:48:01 AM,10/16/2015 11:49:55 AM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 12:05:27 PM,300 Block of GIRARD ST,San Francisco,94134,B10,42,634,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7279571422744, -122.404908112095)",152891506-E42 -160930468,AM24,16036714,Medical Incident,04/02/2016,04/01/2016,04/02/2016 03:35:12 AM,04/02/2016 03:37:34 AM,04/02/2016 03:38:36 AM,04/02/2016 03:39:32 AM,04/02/2016 03:42:54 AM,04/02/2016 03:59:06 AM,04/02/2016 04:13:22 AM,Code 2 Transport,04/02/2016 04:43:29 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160930468-AM24 -152223833,68,15084802,Medical Incident,08/10/2015,08/10/2015,08/10/2015 11:20:10 PM,08/10/2015 11:20:10 PM,08/10/2015 11:20:41 PM,08/10/2015 11:20:48 PM,08/10/2015 11:27:18 PM,08/11/2015 12:09:56 AM,08/11/2015 12:27:42 AM,Code 2 Transport,08/11/2015 01:16:27 AM,200 Block of BRADFORD ST,San Francisco,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7392981093573, -122.409463425691)",152223833-68 -150312966,74,15012088,Structure Fire,01/31/2015,01/31/2015,01/31/2015 06:44:48 PM,01/31/2015 06:45:38 PM,01/31/2015 06:46:15 PM,01/31/2015 06:46:24 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 06:52:07 PM,0 Block of LIEBIG ST,San Francisco,94112,B09,33,8357,3,3,3,true,Alarm,1,MEDIC,5,9,11,Outer Mission,"(37.7089888345409, -122.456754288707)",150312966-74 -160981253,53,16038850,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:04:23 AM,04/07/2016 10:04:23 AM,04/07/2016 10:04:54 AM,04/07/2016 10:05:06 AM,04/07/2016 10:08:57 AM,04/07/2016 10:20:27 AM,04/07/2016 10:20:08 AM,Code 3 Transport,04/07/2016 12:44:33 PM,400 Block of SHOTWELL ST,San Francisco,94110,B02,7,5424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.761229577891, -122.416072364125)",160981253-53 -160954115,79,16037828,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:18:20 PM,04/04/2016 11:18:20 PM,04/04/2016 11:19:15 PM,04/04/2016 11:19:23 PM,04/04/2016 11:32:25 PM,04/04/2016 11:34:42 PM,04/05/2016 12:09:45 AM,Code 2 Transport,04/05/2016 01:00:01 AM,700 Block of SUNNYDALE AVE,San Francisco,94134,B09,44,6253,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7100284529534, -122.409088364768)",160954115-79 -152970951,79,15113976,Medical Incident,10/24/2015,10/24/2015,10/24/2015 08:37:42 AM,10/24/2015 08:43:42 AM,10/24/2015 08:44:07 AM,10/24/2015 08:46:09 AM,10/24/2015 08:51:32 AM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,Patient Declined Transport,10/24/2015 10:06:16 AM,3600 Block of BAKER ST,San Francisco,94123,B04,16,4321,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8046799984804, -122.447260557826)",152970951-79 -151451784,E02,15055184,Medical Incident,05/25/2015,05/25/2015,05/25/2015 02:16:06 PM,05/25/2015 02:17:41 PM,05/25/2015 02:19:05 PM,05/25/2015 02:21:00 PM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,Cancelled,05/25/2015 02:25:05 PM,1100 Block of UNION ST,San Francisco,94109,B01,41,1611,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.7993058366445, -122.418648752342)",151451784-E02 -151132923,E38,15042812,Medical Incident,04/23/2015,04/23/2015,04/23/2015 05:45:28 PM,04/23/2015 05:47:31 PM,04/23/2015 05:47:52 PM,04/23/2015 05:48:42 PM,04/23/2015 05:50:19 PM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Code 2 Transport,04/23/2015 05:54:19 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,false,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",151132923-E38 -141210315,E01,14041018,Medical Incident,05/01/2014,05/01/2014,05/01/2014 04:36:29 PM,05/01/2014 04:37:28 PM,05/01/2014 04:37:57 PM,05/01/2014 04:41:44 PM,05/01/2014 04:41:47 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 2 Transport,05/01/2014 05:11:21 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141210315-E01 -160942655,87,16037351,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:08:20 PM,04/03/2016 05:09:33 PM,04/03/2016 05:10:37 PM,04/03/2016 05:11:50 PM,04/03/2016 05:20:59 PM,04/03/2016 05:37:57 PM,04/03/2016 06:21:55 PM,Code 2 Transport,04/03/2016 06:50:48 PM,300 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.798465838236, -122.407430691755)",160942655-87 -160983084,RC1,16039052,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:06:39 PM,04/07/2016 06:08:49 PM,04/07/2016 06:15:28 PM,04/07/2016 06:16:58 PM,04/07/2016 06:18:15 PM,04/07/2016 06:33:49 PM,04/07/2016 06:43:05 PM,Code 3 Transport,04/07/2016 06:46:03 PM,SACRAMENTO ST/FRONT ST,San Francisco,94111,B01,13,1141,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",160983084-RC1 -151010589,E36,15038139,Alarms,04/11/2015,04/10/2015,04/11/2015 06:36:04 AM,04/11/2015 06:38:35 AM,04/11/2015 06:39:04 AM,04/11/2015 06:41:46 AM,04/11/2015 06:44:23 AM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Fire,04/11/2015 06:46:34 AM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",151010589-E36 -143092253,83,14109422,Medical Incident,11/05/2014,11/05/2014,11/05/2014 03:33:26 PM,11/05/2014 03:35:03 PM,11/05/2014 03:36:24 PM,11/05/2014 03:36:50 PM,11/05/2014 03:45:44 PM,11/05/2014 04:05:26 PM,11/05/2014 04:36:40 PM,Code 2 Transport,11/05/2014 05:11:57 PM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",143092253-83 -153223881,KM07,15124047,Medical Incident,11/18/2015,11/18/2015,11/18/2015 08:38:11 PM,11/18/2015 08:39:18 PM,11/18/2015 08:39:58 PM,11/18/2015 08:42:22 PM,11/18/2015 08:44:17 PM,11/18/2015 09:07:44 PM,11/18/2015 09:28:15 PM,Code 2 Transport,11/18/2015 09:58:50 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",153223881-KM07 -143012939,83,14106375,Medical Incident,10/28/2014,10/28/2014,10/28/2014 07:16:03 PM,10/28/2014 07:16:03 PM,10/28/2014 07:27:44 PM,10/28/2014 07:28:29 PM,10/28/2014 07:31:54 PM,10/28/2014 07:42:52 PM,10/28/2014 07:56:28 PM,Code 2 Transport,10/28/2014 08:27:22 PM,300 Block of MCALLISTER ST,San Francisco,94102,B02,3,3113,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7804194722111, -122.417784021678)",143012939-83 -143622475,E31,14129594,Medical Incident,12/28/2014,12/28/2014,12/28/2014 05:47:36 PM,12/28/2014 05:49:34 PM,12/28/2014 05:50:18 PM,12/28/2014 05:51:30 PM,12/28/2014 05:52:46 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Code 2 Transport,12/28/2014 06:16:11 PM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,2,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7796175741202, -122.473838626607)",143622475-E31 -141412966,E35,14048451,Medical Incident,05/21/2014,05/21/2014,05/21/2014 07:06:22 PM,05/21/2014 07:06:59 PM,05/21/2014 07:13:17 PM,05/21/2014 07:14:29 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 07:17:19 PM,NORTH POINT ST/POWELL ST,San Francisco,94133,B01,28,1262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,North Beach,"(37.8067580824981, -122.412141425527)",141412966-E35 -142930266,E01,14103204,Alarms,10/20/2014,10/19/2014,10/20/2014 02:51:47 AM,10/20/2014 02:52:58 AM,10/20/2014 02:54:39 AM,10/20/2014 02:55:00 AM,10/20/2014 02:57:04 AM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,Fire,10/20/2014 03:03:48 AM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",142930266-E01 -141230172,82,14041665,Medical Incident,05/03/2014,05/03/2014,05/03/2014 01:01:11 PM,05/03/2014 01:02:32 PM,05/03/2014 01:03:43 PM,05/03/2014 01:04:05 PM,05/03/2014 01:12:56 PM,05/03/2014 01:34:03 PM,05/03/2014 01:52:46 PM,Code 2 Transport,05/03/2014 02:12:37 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141230172-82 -152352512,61,15089653,Medical Incident,08/23/2015,08/23/2015,08/23/2015 04:51:09 PM,08/23/2015 04:52:15 PM,08/23/2015 04:53:02 PM,08/23/2015 04:53:11 PM,08/23/2015 05:02:36 PM,08/23/2015 05:22:01 PM,08/23/2015 05:32:42 PM,Code 2 Transport,08/23/2015 06:07:20 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",152352512-61 -143081583,AM08,14108975,Medical Incident,11/04/2014,11/04/2014,11/04/2014 12:14:37 PM,11/04/2014 12:17:03 PM,11/04/2014 12:42:27 PM,11/04/2014 12:42:27 PM,11/04/2014 12:44:46 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Other,11/04/2014 12:54:00 PM,SACRAMENTO ST/PIERCE ST,San Francisco,94115,B04,38,3652,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7894216306873, -122.437318569396)",143081583-AM08 -160982474,85,16038983,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:21:53 PM,04/07/2016 03:23:14 PM,04/07/2016 03:23:56 PM,04/07/2016 03:24:06 PM,04/07/2016 03:34:25 PM,04/07/2016 04:02:24 PM,04/07/2016 04:24:34 PM,Code 2 Transport,04/07/2016 05:17:33 PM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",160982474-85 -152921756,T01,15112193,Alarms,10/19/2015,10/19/2015,10/19/2015 01:17:55 PM,10/19/2015 01:18:50 PM,10/19/2015 01:19:01 PM,10/19/2015 01:20:04 PM,10/19/2015 01:22:51 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Fire,10/19/2015 01:28:22 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",152921756-T01 -150291998,T02,15011197,Medical Incident,01/29/2015,01/29/2015,01/29/2015 02:32:04 PM,01/29/2015 02:33:02 PM,01/29/2015 02:33:26 PM,01/29/2015 02:35:05 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Against Medical Advice,01/29/2015 02:35:17 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",150291998-T02 -153033614,68,15116386,Medical Incident,10/30/2015,10/30/2015,10/30/2015 08:25:11 PM,10/30/2015 08:27:06 PM,10/30/2015 08:29:23 PM,10/30/2015 08:29:31 PM,10/30/2015 08:33:01 PM,10/30/2015 08:50:42 PM,10/30/2015 08:52:07 PM,Code 2 Transport,10/30/2015 09:10:54 PM,2200 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3435,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7904100295768, -122.429925412032)",153033614-68 -161000263,70,16039589,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:54:59 AM,04/09/2016 01:56:23 AM,04/09/2016 01:57:15 AM,04/09/2016 01:58:10 AM,04/09/2016 02:11:32 AM,04/09/2016 02:28:13 AM,04/09/2016 02:35:26 AM,Code 2 Transport,04/09/2016 03:09:05 AM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",161000263-70 -152221781,E06,15084591,Medical Incident,08/10/2015,08/10/2015,08/10/2015 01:22:04 PM,08/10/2015 01:22:31 PM,08/10/2015 01:23:09 PM,08/10/2015 01:24:25 PM,08/10/2015 01:25:59 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,No Merit,08/10/2015 01:26:07 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Non Life-threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",152221781-E06 -150040689,63,15001385,Medical Incident,01/04/2015,01/03/2015,01/04/2015 07:28:43 AM,01/04/2015 07:30:38 AM,01/04/2015 07:31:04 AM,01/04/2015 07:31:29 AM,01/04/2015 07:42:01 AM,01/04/2015 07:54:46 AM,01/04/2015 08:06:35 AM,Code 2 Transport,01/04/2015 08:36:47 AM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",150040689-63 -152370297,E03,15090158,Odor (Strange / Unknown),08/25/2015,08/24/2015,08/25/2015 02:21:57 AM,08/25/2015 02:29:16 AM,08/25/2015 02:29:27 AM,08/25/2015 02:30:36 AM,08/25/2015 02:33:01 AM,04/25/2016 01:08:44 PM,04/25/2016 01:08:44 PM,Fire,08/25/2015 02:40:42 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",152370297-E03 -152333327,RC1,15088948,Medical Incident,08/21/2015,08/21/2015,08/21/2015 06:56:08 PM,08/21/2015 06:57:38 PM,08/21/2015 06:58:56 PM,08/21/2015 06:58:56 PM,08/21/2015 06:58:56 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,No Merit,08/21/2015 07:02:18 PM,OCTAVIA ST/PAGE ST,San Francisco,94102,B02,36,3313,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,2,5,Hayes Valley,"(37.7738892381955, -122.42394706123)",152333327-RC1 -143510740,E15,14125289,Structure Fire,12/17/2014,12/17/2014,12/17/2014 08:17:16 AM,12/17/2014 08:17:16 AM,12/17/2014 08:17:39 AM,12/17/2014 08:19:50 AM,12/17/2014 08:21:46 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/17/2014 08:29:12 AM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",143510740-E15 -142222443,89,14077115,Medical Incident,08/10/2014,08/10/2014,08/10/2014 05:12:19 PM,08/10/2014 05:12:47 PM,08/10/2014 05:13:53 PM,08/10/2014 05:17:13 PM,08/10/2014 05:25:59 PM,08/10/2014 05:26:03 PM,08/10/2014 05:34:39 PM,Code 3 Transport,08/10/2014 06:20:33 PM,1400 Block of LA SALLE AVE,San Francisco,94124,B10,17,6517,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,10,10,Bayview Hunters Point,"(37.7349050342849, -122.386304220968)",142222443-89 -151073277,E09,15040642,Medical Incident,04/17/2015,04/17/2015,04/17/2015 07:09:59 PM,04/17/2015 07:10:55 PM,04/17/2015 07:11:22 PM,04/17/2015 07:12:52 PM,04/17/2015 07:15:12 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Code 2 Transport,04/17/2015 07:33:03 PM,2400 Block of 24TH ST,San Francisco,94110,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Mission,"(37.7530951176845, -122.403879225833)",151073277-E09 -152122936,E17,15080877,Medical Incident,07/31/2015,07/31/2015,07/31/2015 06:42:19 PM,07/31/2015 06:44:40 PM,07/31/2015 06:45:05 PM,07/31/2015 06:46:28 PM,07/31/2015 06:49:16 PM,04/25/2016 01:09:10 PM,04/25/2016 01:09:10 PM,Patient Declined Transport,07/31/2015 06:57:22 PM,1000 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7282764057526, -122.380737923208)",152122936-E17 -143173382,66,14112417,Medical Incident,11/13/2014,11/13/2014,11/13/2014 08:38:51 PM,11/13/2014 08:39:23 PM,11/13/2014 08:39:35 PM,11/13/2014 08:40:04 PM,11/13/2014 08:44:09 PM,11/13/2014 09:11:59 PM,11/13/2014 09:22:45 PM,Code 2 Transport,11/13/2014 10:10:48 PM,3200 Block of BRODERICK ST,San Francisco,94123,B04,16,4222,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8002218946625, -122.444678474843)",143173382-66 -141930576,E25,14066819,Medical Incident,07/12/2014,07/11/2014,07/12/2014 05:22:59 AM,07/12/2014 05:25:34 AM,07/12/2014 05:26:09 AM,07/12/2014 05:28:19 AM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Code 2 Transport,07/12/2014 05:49:39 AM,600 Block of KEITH ST,San Francisco,94124,B10,25,6565,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7371958243577, -122.382770664389)",141930576-E25 -142811784,83,14098865,Medical Incident,10/08/2014,10/08/2014,10/08/2014 01:16:37 PM,10/08/2014 01:16:51 PM,10/08/2014 01:17:07 PM,10/08/2014 01:17:18 PM,10/08/2014 01:29:23 PM,10/08/2014 01:40:19 PM,10/08/2014 01:42:45 PM,Code 2 Transport,10/08/2014 02:00:47 PM,HYDE ST/FULTON ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",142811784-83 -151200071,E28,15045217,Water Rescue,04/30/2015,04/29/2015,04/30/2015 12:31:33 AM,04/30/2015 12:35:13 AM,04/30/2015 12:35:55 AM,04/30/2015 12:37:40 AM,04/30/2015 12:42:36 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/30/2015 01:00:17 AM,VAN NESS AV/NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,false,Fire,1,ENGINE,4,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",151200071-E28 -160993344,55,16039449,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:51:06 PM,04/08/2016 07:52:17 PM,04/08/2016 07:52:31 PM,04/08/2016 07:52:46 PM,04/08/2016 07:58:08 PM,04/08/2016 08:12:48 PM,04/08/2016 08:33:32 PM,Code 2 Transport,04/08/2016 09:04:44 PM,3900 Block of 24TH ST,San Francisco,94114,B06,11,5522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",160993344-55 -141050205,E40,14035430,Medical Incident,04/15/2014,04/15/2014,04/15/2014 01:57:37 PM,04/15/2014 01:59:59 PM,04/15/2014 02:01:35 PM,04/15/2014 02:02:45 PM,04/15/2014 02:09:11 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 02:25:59 PM,100 Block of GRANVILLE WAY,SAN FRANCISCO,94127,B08,39,8573,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.741788979478, -122.461440084289)",141050205-E40 -141030062,88,14034679,Medical Incident,04/13/2014,04/12/2014,04/13/2014 05:41:57 AM,04/13/2014 05:42:46 AM,04/13/2014 05:43:30 AM,04/13/2014 05:43:46 AM,04/13/2014 05:51:57 AM,04/13/2014 06:05:50 AM,04/13/2014 06:21:59 AM,Code 2 Transport,04/13/2014 06:56:40 AM,STATE DR/LAKE MERCED BL,SAN FRANCISCO,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",141030062-88 -160960882,87,16037929,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:06:16 AM,04/05/2016 09:07:48 AM,04/05/2016 09:08:08 AM,04/05/2016 09:08:22 AM,04/05/2016 09:23:53 AM,04/05/2016 09:49:02 AM,04/05/2016 09:58:22 AM,Code 2 Transport,04/05/2016 10:37:41 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160960882-87 -150742497,B09,15028466,Outside Fire,03/15/2015,03/15/2015,03/15/2015 04:11:51 PM,03/15/2015 04:18:15 PM,03/15/2015 04:22:20 PM,03/15/2015 04:22:20 PM,03/15/2015 04:23:08 PM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Fire,03/15/2015 04:24:09 PM,100 Block of SANTA ROSA AVE,San Francisco,94112,B09,15,8265,3,3,3,false,Fire,1,CHIEF,2,9,11,Outer Mission,"(37.7275598591199, -122.437406172595)",150742497-B09 -153481483,E03,15134045,Medical Incident,12/14/2015,12/14/2015,12/14/2015 11:51:12 AM,12/14/2015 11:51:43 AM,12/14/2015 11:52:53 AM,12/14/2015 11:55:36 AM,12/14/2015 11:55:36 AM,04/25/2016 01:06:38 PM,04/25/2016 01:06:38 PM,Code 2 Transport,12/14/2015 12:01:44 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",153481483-E03 -160950112,52,16037479,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:06:13 AM,04/04/2016 01:10:39 AM,04/04/2016 01:14:12 AM,04/04/2016 01:14:35 AM,04/04/2016 01:27:13 AM,04/04/2016 01:38:19 AM,04/04/2016 02:04:13 AM,Code 2 Transport,04/04/2016 03:14:45 AM,3300 Block of 26TH ST,San Francisco,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7490361654123, -122.417303028119)",160950112-52 -152360731,76,15089824,Medical Incident,08/24/2015,08/23/2015,08/24/2015 07:36:20 AM,08/24/2015 07:46:27 AM,08/24/2015 07:47:18 AM,08/24/2015 07:48:00 AM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,Medical Examiner,08/24/2015 07:56:31 AM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7647586086861, -122.423602301722)",152360731-76 -153192725,E36,15122758,Alarms,11/15/2015,11/15/2015,11/15/2015 05:27:43 PM,11/15/2015 05:28:31 PM,11/15/2015 05:28:59 PM,11/15/2015 05:30:19 PM,11/15/2015 05:32:32 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Fire,11/15/2015 05:38:04 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",153192725-E36 -151123547,AM18,15042478,Medical Incident,04/22/2015,04/22/2015,04/22/2015 08:13:21 PM,04/22/2015 08:14:51 PM,04/22/2015 08:15:07 PM,04/22/2015 08:15:57 PM,04/22/2015 08:25:31 PM,04/22/2015 08:46:38 PM,04/22/2015 08:59:19 PM,Code 2 Transport,04/22/2015 09:33:56 PM,1400 Block of 6TH AVE,San Francisco,94122,B08,22,7331,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,5,Inner Sunset,"(37.7613870516024, -122.462837876303)",151123547-AM18 -150564090,B08,15021617,Alarms,02/25/2015,02/25/2015,02/25/2015 11:33:17 PM,02/25/2015 11:35:30 PM,02/25/2015 11:36:09 PM,02/25/2015 11:38:32 PM,02/25/2015 11:41:06 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Fire,02/26/2015 12:00:03 AM,3300 Block of TARAVAL ST,San Francisco,94116,B08,18,7644,3,3,3,false,Alarm,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7419408431193, -122.501944117716)",150564090-B08 -160923399,64,16036599,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:36:03 PM,04/01/2016 08:37:30 PM,04/01/2016 08:38:02 PM,04/01/2016 08:38:10 PM,04/01/2016 08:58:03 PM,04/01/2016 09:03:44 PM,04/01/2016 09:17:09 PM,Code 2 Transport,04/01/2016 09:46:38 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160923399-64 -160922665,AM16,16036535,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:12:00 PM,04/01/2016 05:13:33 PM,04/01/2016 05:15:28 PM,04/01/2016 05:16:17 PM,04/01/2016 05:47:57 PM,04/01/2016 05:47:58 PM,04/01/2016 06:21:04 PM,Code 2 Transport,04/01/2016 06:49:12 PM,0 Block of MERCURY ST,San Francisco,94124,B10,42,6447,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7319018847034, -122.401643423217)",160922665-AM16 -150593871,78,15022750,Medical Incident,02/28/2015,02/28/2015,02/28/2015 11:35:38 PM,02/28/2015 11:37:50 PM,02/28/2015 11:39:08 PM,02/28/2015 11:39:15 PM,02/28/2015 11:41:40 PM,03/01/2015 12:02:10 AM,03/01/2015 12:13:50 AM,Code 2 Transport,03/01/2015 12:45:12 AM,0 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7814037950794, -122.413702650883)",150593871-78 -161001034,89,16039686,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:47:55 AM,04/09/2016 09:48:23 AM,04/09/2016 09:48:39 AM,04/09/2016 09:52:40 AM,04/09/2016 10:03:21 AM,04/09/2016 10:15:03 AM,04/09/2016 10:43:26 AM,Code 2 Transport,04/09/2016 11:14:20 AM,POWELL ST/BEACH ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.807690493217, -122.412329558798)",161001034-89 -151792864,GATOR1,15068365,Medical Incident,06/28/2015,06/28/2015,06/28/2015 05:26:07 PM,06/28/2015 05:26:22 PM,06/28/2015 05:33:31 PM,06/28/2015 05:33:31 PM,06/28/2015 05:46:35 PM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Other,06/28/2015 07:05:01 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,SUPPORT,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",151792864-GATOR1 -160991174,63,16039252,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:39:25 AM,04/08/2016 10:40:53 AM,04/08/2016 10:41:42 AM,04/08/2016 10:41:51 AM,04/08/2016 10:59:10 AM,04/08/2016 11:10:05 AM,04/08/2016 11:32:58 AM,Code 2 Transport,04/08/2016 11:57:29 AM,100 Block of GLADEVIEW WAY,San Francisco,94131,B08,20,5361,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.752031784008, -122.450511726322)",160991174-63 -153432168,T01,15132027,Other,12/09/2015,12/09/2015,12/09/2015 02:23:09 PM,12/09/2015 02:23:09 PM,12/09/2015 02:24:22 PM,12/09/2015 02:26:27 PM,12/09/2015 02:29:02 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 02:49:54 PM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7796069319747, -122.402660683695)",153432168-T01 -160942607,88,16037346,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 04:56:40 PM,04/03/2016 04:56:40 PM,04/03/2016 04:57:26 PM,04/03/2016 04:57:37 PM,04/03/2016 05:04:41 PM,04/03/2016 05:08:52 PM,04/03/2016 05:18:23 PM,Code 3 Transport,04/03/2016 06:28:17 PM,REVERE AV/GRIFFITH ST,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7263635168567, -122.380817113123)",160942607-88 -150091761,E19,15003563,Medical Incident,01/09/2015,01/09/2015,01/09/2015 01:17:10 PM,01/09/2015 01:18:12 PM,01/09/2015 01:18:24 PM,01/09/2015 01:18:44 PM,01/09/2015 01:20:53 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Code 2 Transport,01/09/2015 01:37:04 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",150091761-E19 -160943326,78,16037421,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:52:47 PM,04/03/2016 08:55:06 PM,04/03/2016 09:03:03 PM,04/03/2016 09:03:24 PM,04/03/2016 09:12:02 PM,04/03/2016 09:26:41 PM,04/03/2016 09:58:09 PM,Code 2 Transport,04/03/2016 10:24:15 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160943326-78 -141281243,E05,14043469,Medical Incident,05/08/2014,05/08/2014,05/08/2014 10:47:59 AM,05/08/2014 10:48:34 AM,05/08/2014 10:49:15 AM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 10:50:36 AM,1200 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,3,3,3,false,Potentially Life-Threatening,1,ENGINE,5,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",141281243-E05 -152140902,E08,15081416,Medical Incident,08/02/2015,08/02/2015,08/02/2015 08:54:44 AM,08/02/2015 08:56:12 AM,08/02/2015 08:56:55 AM,08/02/2015 08:57:43 AM,08/02/2015 09:03:43 AM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Code 2 Transport,08/02/2015 09:03:57 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",152140902-E08 -152351008,RC3,15089520,Train / Rail Incident,08/23/2015,08/23/2015,08/23/2015 09:03:30 AM,08/23/2015 09:05:27 AM,08/23/2015 09:07:28 AM,08/23/2015 09:09:56 AM,08/23/2015 09:13:34 AM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Fire,08/23/2015 10:18:54 AM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,true,Fire,1,RESCUE CAPTAIN,7,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",152351008-RC3 -142730543,E31,14095605,Medical Incident,09/30/2014,09/29/2014,09/30/2014 06:35:33 AM,09/30/2014 06:35:53 AM,09/30/2014 06:36:27 AM,09/30/2014 06:38:15 AM,09/30/2014 06:40:13 AM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Code 2 Transport,09/30/2014 06:49:53 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",142730543-E31 -150681424,77,15025944,Medical Incident,03/09/2015,03/09/2015,03/09/2015 11:12:29 AM,03/09/2015 11:15:42 AM,03/09/2015 11:15:58 AM,03/09/2015 11:16:08 AM,03/09/2015 11:32:06 AM,03/09/2015 11:41:57 AM,03/09/2015 11:54:41 AM,Code 2 Transport,03/09/2015 12:22:30 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",150681424-77 -141901528,58,14065816,Medical Incident,07/09/2014,07/09/2014,07/09/2014 12:10:25 PM,07/09/2014 12:10:25 PM,07/09/2014 12:11:15 PM,07/09/2014 12:11:25 PM,07/09/2014 12:23:18 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Against Medical Advice,07/09/2014 02:03:22 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",141901528-58 -142940463,E29,14103579,Medical Incident,10/21/2014,10/20/2014,10/21/2014 05:52:06 AM,10/21/2014 05:53:21 AM,10/21/2014 05:53:33 AM,10/21/2014 05:57:43 AM,10/21/2014 05:57:43 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Code 2 Transport,10/21/2014 06:10:17 AM,2200 Block of 17TH ST,San Francisco,94103,B02,29,2421,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.7646315810414, -122.405951536611)",142940463-E29 -161002768,58,16039891,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:05:53 PM,04/09/2016 07:07:41 PM,04/09/2016 07:08:08 PM,04/09/2016 07:08:22 PM,04/09/2016 07:26:49 PM,04/09/2016 07:26:51 PM,04/09/2016 07:38:15 PM,Code 2 Transport,04/09/2016 07:58:00 PM,400 Block of HEAD ST,San Francisco,94132,B09,33,8414,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7152096464859, -122.464479764216)",161002768-58 -152481131,E29,15094616,Medical Incident,09/05/2015,09/05/2015,09/05/2015 09:39:47 AM,09/05/2015 09:39:47 AM,09/05/2015 09:39:47 AM,09/05/2015 09:39:47 AM,09/05/2015 09:39:47 AM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Code 2 Transport,09/05/2015 09:56:26 AM,200 Block of VERMONT ST,San Francisco,94103,B02,29,2422,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,10,Mission Bay,"(37.7666119536778, -122.404617787649)",152481131-E29 -153392117,E08,15130474,Medical Incident,12/05/2015,12/05/2015,12/05/2015 02:04:34 PM,12/05/2015 02:07:14 PM,12/05/2015 02:08:03 PM,12/05/2015 02:08:25 PM,12/05/2015 02:11:36 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,No Merit,12/05/2015 02:32:14 PM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",153392117-E08 -151241168,76,15046964,Medical Incident,05/04/2015,05/04/2015,05/04/2015 10:22:00 AM,05/04/2015 10:23:52 AM,05/04/2015 10:24:06 AM,05/04/2015 10:24:26 AM,05/04/2015 10:35:09 AM,05/04/2015 10:53:52 AM,05/04/2015 11:01:43 AM,Code 2 Transport,05/04/2015 11:23:58 AM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",151241168-76 -160931685,54,16036851,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:47:26 PM,04/02/2016 12:49:15 PM,04/02/2016 12:49:45 PM,04/02/2016 12:54:16 PM,04/02/2016 12:59:14 PM,04/02/2016 01:13:42 PM,04/02/2016 01:26:11 PM,Code 2 Transport,04/02/2016 01:50:54 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160931685-54 -142754184,58,14096699,Medical Incident,10/02/2014,10/02/2014,10/02/2014 11:04:08 PM,10/02/2014 11:04:18 PM,10/02/2014 11:04:59 PM,10/02/2014 11:05:45 PM,10/02/2014 11:08:49 PM,10/02/2014 11:24:16 PM,10/02/2014 11:51:25 PM,Code 2 Transport,10/03/2014 12:18:27 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",142754184-58 -160960926,62,16037933,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:15:26 AM,04/05/2016 09:17:29 AM,04/05/2016 09:18:29 AM,04/05/2016 09:19:18 AM,04/05/2016 09:29:26 AM,04/05/2016 09:44:09 AM,04/05/2016 09:58:24 AM,Code 2 Transport,04/05/2016 10:35:44 AM,TARAVAL ST/30TH AV,San Francisco,94116,B08,18,7531,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7425317860759, -122.487476479056)",160960926-62 -143311776,64,14117409,Medical Incident,11/27/2014,11/27/2014,11/27/2014 03:37:16 PM,11/27/2014 03:37:16 PM,11/27/2014 03:37:16 PM,11/27/2014 03:37:16 PM,11/27/2014 03:37:16 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Patient Declined Transport,11/27/2014 04:29:11 PM,24TH ST/CAPP ST,San Francisco,94110,B99,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7523059787388, -122.417357818307)",143311776-64 -150210663,E01,15008112,Medical Incident,01/21/2015,01/20/2015,01/21/2015 07:57:36 AM,01/21/2015 07:59:13 AM,01/21/2015 08:00:34 AM,01/21/2015 08:01:34 AM,01/21/2015 08:06:33 AM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Against Medical Advice,01/21/2015 08:19:23 AM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",150210663-E01 -152763100,E14,15105916,Medical Incident,10/03/2015,10/03/2015,10/03/2015 06:10:46 PM,10/03/2015 06:12:52 PM,10/03/2015 06:13:14 PM,10/03/2015 06:14:26 PM,10/03/2015 06:16:51 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Code 2 Transport,10/03/2015 06:25:10 PM,2200 Block of LAKE ST,San Francisco,94121,B07,14,7174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7857597027575, -122.483539028526)",152763100-E14 -143060048,T01,14108137,Structure Fire,11/02/2014,11/01/2014,11/02/2014 12:12:07 AM,11/02/2014 12:12:48 AM,11/02/2014 12:13:04 AM,11/02/2014 12:14:48 AM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Fire,11/02/2014 12:21:06 AM,STOCKTON ST/POST ST,San Francisco,94108,B01,1,1323,3,3,3,false,Alarm,1,TRUCK,9,1,3,Financial District/South Beach,"(37.7884994798068, -122.406771145217)",143060048-T01 -160931861,KM04,16036875,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:39:29 PM,04/02/2016 01:40:23 PM,04/02/2016 01:40:57 PM,04/02/2016 01:41:29 PM,04/02/2016 01:46:07 PM,04/02/2016 02:02:49 PM,04/02/2016 02:18:50 PM,Code 2 Transport,04/02/2016 02:50:19 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",160931861-KM04 -160991760,76,16039303,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:24:08 PM,04/08/2016 01:24:08 PM,04/08/2016 01:26:20 PM,04/08/2016 01:26:20 PM,04/08/2016 01:34:59 PM,04/08/2016 01:46:39 PM,04/08/2016 01:59:46 PM,Code 2 Transport,04/08/2016 02:17:06 PM,3600 Block of LYON ST,San Francisco,94123,B04,16,4323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.804271887891, -122.44827840533)",160991760-76 -141420869,E44,14048608,Administrative,05/22/2014,05/22/2014,05/22/2014 09:00:35 AM,05/22/2014 09:00:47 AM,05/22/2014 09:02:38 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Fire,05/22/2014 09:03:31 AM,1200 Block of GIRARD ST,San Francisco,94134,B10,44,6317,3,3,3,true,,1,ENGINE,1,10,10,Visitacion Valley,"(37.7171579376975, -122.400434432883)",141420869-E44 -153420363,T15,15131479,Structure Fire,12/08/2015,12/07/2015,12/08/2015 03:55:02 AM,12/08/2015 03:55:02 AM,12/08/2015 03:55:11 AM,12/08/2015 03:57:20 AM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,Fire,12/08/2015 03:59:32 AM,MISSION ST/FOOTE AV,San Francisco,94112,B09,33,6177,3,3,3,false,Alarm,1,TRUCK,2,9,11,Outer Mission,"(37.7126222176645, -122.444743290966)",153420363-T15 -151731252,KM14,15066018,Medical Incident,06/22/2015,06/22/2015,06/22/2015 11:16:51 AM,06/22/2015 11:17:18 AM,06/22/2015 11:17:29 AM,06/22/2015 11:17:58 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,No Merit,06/22/2015 11:22:33 AM,800 Block of LISBON ST,San Francisco,94112,B09,43,6174,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7158405916513, -122.438322483619)",151731252-KM14 -151681813,E01,15064232,Alarms,06/17/2015,06/17/2015,06/17/2015 12:54:13 PM,06/17/2015 12:56:02 PM,06/17/2015 12:56:25 PM,06/17/2015 12:57:54 PM,06/17/2015 12:59:55 PM,04/25/2016 01:09:57 PM,04/25/2016 01:09:57 PM,Fire,06/17/2015 01:08:17 PM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",151681813-E01 -152573228,85,15098404,Traffic Collision,09/14/2015,09/14/2015,09/14/2015 07:24:37 PM,09/14/2015 07:26:00 PM,09/14/2015 07:27:42 PM,09/14/2015 07:30:03 PM,09/14/2015 07:42:29 PM,09/14/2015 08:03:32 PM,09/14/2015 08:35:47 PM,Code 2 Transport,09/14/2015 09:13:45 PM,0 Block of HARRISON ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7892474519723, -122.389008295709)",152573228-85 -151493899,E03,15056898,Medical Incident,05/29/2015,05/29/2015,05/29/2015 10:00:28 PM,05/29/2015 10:01:27 PM,05/29/2015 10:01:50 PM,05/29/2015 10:03:30 PM,05/29/2015 10:05:15 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,Code 2 Transport,05/29/2015 10:13:38 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",151493899-E03 -143521326,57,14125728,Medical Incident,12/18/2014,12/18/2014,12/18/2014 10:59:55 AM,12/18/2014 11:01:46 AM,12/18/2014 11:02:38 AM,12/18/2014 11:02:52 AM,12/18/2014 11:29:43 AM,12/18/2014 11:29:52 AM,04/25/2016 01:13:22 PM,Code 2 Transport,12/18/2014 12:19:28 PM,0 Block of HAWTHORNE ST,San Francisco,94105,B03,1,2177,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",143521326-57 -141962766,RC3,14067994,Medical Incident,07/15/2014,07/15/2014,07/15/2014 05:14:55 PM,07/15/2014 05:17:14 PM,07/15/2014 05:17:58 PM,07/15/2014 05:19:11 PM,07/15/2014 05:21:21 PM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Code 2 Transport,07/15/2014 05:30:37 PM,400 Block of HOFFMAN AVE,San Francisco,94114,B06,24,5517,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,8,Noe Valley,"(37.750105701763, -122.440468327667)",141962766-RC3 -152930497,B04,15112472,Alarms,10/20/2015,10/19/2015,10/20/2015 06:18:59 AM,10/20/2015 06:20:10 AM,10/20/2015 06:20:26 AM,10/20/2015 06:23:13 AM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Fire,10/20/2015 06:26:14 AM,2400 Block of GEARY BLVD,San Francisco,94115,B05,10,4261,3,3,3,false,Alarm,1,CHIEF,3,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",152930497-B04 -151982815,KM01,15075543,Medical Incident,07/17/2015,07/17/2015,07/17/2015 05:03:27 PM,07/17/2015 05:04:42 PM,07/17/2015 05:05:09 PM,07/17/2015 05:05:45 PM,07/17/2015 05:21:57 PM,07/17/2015 05:31:13 PM,07/17/2015 05:39:50 PM,Code 2 Transport,07/17/2015 06:21:01 PM,0 Block of LYON ST,San Francisco,94117,B05,21,4353,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7710955690311, -122.442161127811)",151982815-KM01 -160932274,KM04,16036921,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:40:46 PM,04/02/2016 03:42:15 PM,04/02/2016 03:45:13 PM,04/02/2016 03:46:13 PM,04/02/2016 03:53:49 PM,04/02/2016 04:05:20 PM,04/02/2016 04:16:48 PM,Code 2 Transport,04/02/2016 05:02:58 PM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160932274-KM04 -160964135,75,16038217,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:04:26 PM,04/05/2016 11:07:12 PM,04/05/2016 11:07:44 PM,04/05/2016 11:07:51 PM,04/05/2016 11:20:17 PM,04/05/2016 11:23:32 PM,04/05/2016 11:24:23 PM,No Merit,04/05/2016 11:42:51 PM,ELLIS ST/CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7853882479724, -122.408667084184)",160964135-75 -160923923,70,16036647,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:10:35 PM,04/01/2016 11:10:35 PM,04/01/2016 11:10:57 PM,04/01/2016 11:11:05 PM,04/01/2016 11:11:07 PM,04/01/2016 11:29:33 PM,04/01/2016 11:40:31 PM,Code 2 Transport,04/02/2016 12:03:10 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160923923-70 -152323493,FD00A,15088630,,08/20/2015,08/20/2015,08/20/2015 08:53:57 PM,08/20/2015 08:53:57 PM,08/20/2015 09:06:02 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Cancelled,08/20/2015 09:06:14 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,SUPPORT,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",152323493-FD00A -150030025,E36,15000921,Structure Fire,01/03/2015,01/02/2015,01/03/2015 12:11:13 AM,01/03/2015 12:11:13 AM,01/03/2015 12:11:26 AM,01/03/2015 12:13:16 AM,01/03/2015 12:14:56 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Code 2 Transport,01/03/2015 12:23:43 AM,1000 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",150030025-E36 -151791325,T05,15068171,Medical Incident,06/28/2015,06/28/2015,06/28/2015 10:21:05 AM,06/28/2015 10:21:54 AM,06/28/2015 10:22:25 AM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Code 2 Transport,06/28/2015 10:23:23 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",151791325-T05 -160960379,62,16037886,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:24:24 AM,04/05/2016 05:25:37 AM,04/05/2016 05:26:15 AM,04/05/2016 05:26:43 AM,04/05/2016 05:41:19 AM,04/05/2016 06:09:43 AM,04/05/2016 06:31:06 AM,Code 2 Transport,04/05/2016 07:08:40 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160960379-62 -142871214,T03,14101105,Medical Incident,10/14/2014,10/14/2014,10/14/2014 10:29:37 AM,10/14/2014 10:29:56 AM,10/14/2014 10:30:54 AM,10/14/2014 10:32:11 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/14/2014 10:33:53 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,1363,2,2,2,false,Non Life-threatening,1,TRUCK,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",142871214-T03 -141160317,T07,14039272,Structure Fire,04/26/2014,04/26/2014,04/26/2014 07:48:56 PM,04/26/2014 07:50:43 PM,04/26/2014 07:50:50 PM,04/26/2014 07:52:09 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/26/2014 07:56:30 PM,0 Block of DAKOTA ST,SAN FRANCISCO,94107,B10,37,2614,3,3,3,false,Alarm,1,TRUCK,8,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",141160317-T07 -161000141,83,16039567,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:53:21 AM,04/09/2016 12:54:43 AM,04/09/2016 12:55:11 AM,04/09/2016 12:56:02 AM,04/09/2016 01:06:22 AM,04/09/2016 01:20:38 AM,04/09/2016 01:49:32 AM,Code 2 Transport,04/09/2016 02:36:13 AM,300 Block of HOWTH ST,San Francisco,94112,B09,15,8316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7192476254901, -122.452000571796)",161000141-83 -160982954,56,16039036,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:33:38 PM,04/07/2016 05:34:08 PM,04/07/2016 05:34:44 PM,04/07/2016 05:35:14 PM,04/07/2016 05:38:42 PM,04/07/2016 06:30:00 PM,04/07/2016 06:37:43 PM,Code 3 Transport,04/07/2016 07:39:33 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160982954-56 -141190183,AM04,14040146,Medical Incident,04/29/2014,04/29/2014,04/29/2014 11:49:36 AM,04/29/2014 11:52:27 AM,04/29/2014 12:17:50 PM,04/29/2014 12:18:34 PM,04/29/2014 12:22:46 PM,04/29/2014 12:37:49 PM,04/29/2014 12:44:09 PM,Code 2 Transport,04/29/2014 01:13:54 PM,1100 Block of PINE ST,SAN FRANCISCO,94109,B01,41,1464,,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7903887572034, -122.414938763678)",141190183-AM04 -150122071,E24,15004780,Structure Fire,01/12/2015,01/12/2015,01/12/2015 02:23:01 PM,01/12/2015 02:23:01 PM,01/12/2015 02:23:17 PM,01/12/2015 02:24:20 PM,01/12/2015 02:28:18 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Fire,01/12/2015 02:29:02 PM,300 Block of PORTOLA DR,San Francisco,94131,B06,24,8172,3,3,3,false,Alarm,1,ENGINE,1,6,8,Twin Peaks,"(37.7469637081907, -122.445755288382)",150122071-E24 -152093915,82,15079840,Medical Incident,07/28/2015,07/28/2015,07/28/2015 11:22:02 PM,07/28/2015 11:24:45 PM,07/28/2015 11:25:18 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Unable to Locate,07/28/2015 11:27:34 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",152093915-82 -150880519,E33,15033480,Medical Incident,03/29/2015,03/28/2015,03/29/2015 03:27:01 AM,03/29/2015 03:27:36 AM,03/29/2015 03:28:02 AM,03/29/2015 03:30:46 AM,03/29/2015 03:34:12 AM,04/25/2016 01:11:28 PM,04/25/2016 01:11:28 PM,Code 2 Transport,03/29/2015 04:02:06 AM,600 Block of SHIELDS ST,San Francisco,94132,B09,33,8431,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7178422382696, -122.468488213878)",150880519-E33 -151510106,E03,15057301,Medical Incident,05/31/2015,05/30/2015,05/31/2015 12:29:37 AM,05/31/2015 12:31:43 AM,05/31/2015 12:32:44 AM,05/31/2015 12:34:52 AM,05/31/2015 12:36:38 AM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Patient Declined Transport,05/31/2015 12:40:51 AM,400 Block of MASON ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7877640990096, -122.409925328419)",151510106-E03 -142371720,T06,14082429,Medical Incident,08/25/2014,08/25/2014,08/25/2014 12:40:51 PM,08/25/2014 12:41:08 PM,08/25/2014 12:46:29 PM,08/25/2014 12:48:22 PM,08/25/2014 12:49:25 PM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,No Merit,08/25/2014 12:50:52 PM,700 Block of 14TH ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7676408778052, -122.429519876751)",142371720-T06 -141100239,E19,14037163,Medical Incident,04/20/2014,04/20/2014,04/20/2014 04:56:22 PM,04/20/2014 04:57:34 PM,04/20/2014 04:59:58 PM,04/20/2014 05:01:00 PM,04/20/2014 05:06:24 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/20/2014 05:22:42 PM,300 Block of GARCES DR,SAN FRANCISCO,94132,B08,19,8484,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7161637772047, -122.482445258922)",141100239-E19 -150354188,B01,15013664,Structure Fire,02/04/2015,02/04/2015,02/04/2015 10:30:58 PM,02/04/2015 10:32:46 PM,02/04/2015 10:33:15 PM,02/04/2015 10:35:32 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Fire,02/04/2015 10:37:48 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Alarm,1,CHIEF,5,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",150354188-B01 -142630010,E01,14091816,Medical Incident,09/20/2014,09/19/2014,09/20/2014 12:03:57 AM,09/20/2014 12:04:20 AM,09/20/2014 12:04:29 AM,09/20/2014 12:05:55 AM,09/20/2014 12:07:43 AM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Code 2 Transport,09/20/2014 12:10:10 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",142630010-E01 -142581374,77,14090083,Medical Incident,09/15/2014,09/15/2014,09/15/2014 11:44:45 AM,09/15/2014 11:46:28 AM,09/15/2014 11:47:04 AM,09/15/2014 11:47:25 AM,09/15/2014 11:52:12 AM,09/15/2014 11:56:02 AM,09/15/2014 12:27:25 PM,Code 2 Transport,09/15/2014 12:33:36 PM,400 Block of LARKIN ST,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",142581374-77 -160930856,67,16036759,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:39:51 AM,04/02/2016 08:39:51 AM,04/02/2016 08:40:19 AM,04/02/2016 08:43:28 AM,04/02/2016 08:49:20 AM,04/02/2016 09:05:09 AM,04/02/2016 09:14:39 AM,Code 2 Transport,04/02/2016 09:55:36 AM,3400 Block of MISSION ST,San Francisco,94110,B06,32,5626,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7408597419405, -122.423026769778)",160930856-67 -152293628,E36,15087538,Medical Incident,08/17/2015,08/17/2015,08/17/2015 08:21:11 PM,08/17/2015 08:21:44 PM,08/17/2015 08:22:01 PM,08/17/2015 08:25:27 PM,08/17/2015 08:25:27 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Code 2 Transport,08/17/2015 08:34:15 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",152293628-E36 -150543296,E07,15020903,Explosion,02/23/2015,02/23/2015,02/23/2015 07:18:33 PM,02/23/2015 07:18:33 PM,02/23/2015 07:19:23 PM,02/23/2015 07:19:50 PM,02/23/2015 07:22:30 PM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,Fire,02/23/2015 07:22:34 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,true,Fire,1,ENGINE,3,2,9,Mission,"(37.7695749975007, -122.420224560888)",150543296-E07 -150290838,68,15011070,Traffic Collision,01/29/2015,01/29/2015,01/29/2015 08:34:06 AM,01/29/2015 08:35:23 AM,01/29/2015 08:35:39 AM,01/29/2015 08:35:50 AM,01/29/2015 08:41:59 AM,01/29/2015 08:54:46 AM,01/29/2015 09:25:36 AM,Code 2 Transport,01/29/2015 10:08:44 AM,SAN JOSE AV/GENEVA AV,San Francisco,94112,B09,15,8311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",150290838-68 -160942602,62,16037344,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:55:17 PM,04/03/2016 04:55:17 PM,04/03/2016 04:56:26 PM,04/03/2016 04:56:32 PM,04/03/2016 04:58:44 PM,04/03/2016 05:07:09 PM,04/03/2016 05:19:33 PM,Code 2 Transport,04/03/2016 05:51:59 PM,JERROLD AV/BARNEVELD AV,San Francisco,94124,B10,9,6412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7463340944535, -122.402698013436)",160942602-62 -142273873,E19,14079056,Medical Incident,08/15/2014,08/15/2014,08/15/2014 11:09:13 PM,08/15/2014 11:09:13 PM,08/15/2014 11:19:20 PM,08/15/2014 11:20:33 PM,08/15/2014 11:24:03 PM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,Code 2 Transport,08/15/2014 11:34:22 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,2,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",142273873-E19 -160922362,AM12,16036508,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:00:41 PM,04/01/2016 04:00:41 PM,04/01/2016 04:01:25 PM,04/01/2016 04:01:48 PM,04/01/2016 04:13:24 PM,04/01/2016 04:25:22 PM,04/01/2016 05:12:55 PM,Code 2 Transport,04/01/2016 05:44:03 PM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7927299343809, -122.40328650281)",160922362-AM12 -150483734,E03,15018778,Alarms,02/17/2015,02/17/2015,02/17/2015 10:08:54 PM,02/17/2015 10:09:06 PM,02/17/2015 10:10:56 PM,02/17/2015 10:10:56 PM,02/17/2015 10:12:26 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/17/2015 10:13:20 PM,LEAVENWORTH ST/GOLDEN GATE AV,San Francisco,94102,B02,1,1546,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",150483734-E03 -151431418,RS2,15054347,Structure Fire,05/23/2015,05/23/2015,05/23/2015 11:20:03 AM,05/23/2015 11:21:44 AM,05/23/2015 11:22:10 AM,05/23/2015 11:24:14 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Fire,05/23/2015 11:28:43 AM,200 Block of BRIGHT ST,San Francisco,94132,B09,33,8414,3,3,3,false,Alarm,1,RESCUE SQUAD,8,9,11,Oceanview/Merced/Ingleside,"(37.7152184350977, -122.463441226301)",151431418-RS2 -160922675,67,16036537,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:16:19 PM,04/01/2016 05:17:13 PM,04/01/2016 05:17:32 PM,04/01/2016 05:17:40 PM,04/01/2016 05:28:47 PM,04/01/2016 06:17:53 PM,04/01/2016 06:17:58 PM,Code 2 Transport,04/01/2016 06:59:49 PM,NORTH STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160922675-67 -143130457,T03,14110780,Citizen Assist / Service Call,11/09/2014,11/08/2014,11/09/2014 02:42:35 AM,11/09/2014 02:43:51 AM,11/09/2014 02:46:01 AM,11/09/2014 02:47:18 AM,11/09/2014 02:48:57 AM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/09/2014 02:55:21 AM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7844637837491, -122.417824560275)",143130457-T03 -160933898,63,16037082,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:17:52 PM,04/02/2016 11:18:34 PM,04/02/2016 11:19:05 PM,04/02/2016 11:19:17 PM,04/02/2016 11:47:16 PM,04/02/2016 11:47:20 PM,04/02/2016 11:54:23 PM,Code 2 Transport,04/03/2016 12:30:42 AM,0 Block of BACHE ST,San Francisco,94110,B06,32,5751,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7344393110914, -122.417593854342)",160933898-63 -151242694,E43,15047091,Medical Incident,05/04/2015,05/04/2015,05/04/2015 05:40:42 PM,05/04/2015 05:42:41 PM,05/04/2015 05:42:52 PM,05/04/2015 05:44:18 PM,05/04/2015 05:45:26 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Patient Declined Transport,05/04/2015 06:03:43 PM,300 Block of MOSCOW ST,San Francisco,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7220134926276, -122.426997006948)",151242694-E43 -150563014,E08,15021526,,02/25/2015,02/25/2015,02/25/2015 06:03:00 PM,02/25/2015 06:05:00 PM,02/25/2015 06:06:00 PM,02/25/2015 06:08:00 PM,02/25/2015 06:16:00 PM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,SFPD,02/25/2015 06:43:00 PM,BRYANT ST/5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",150563014-E08 -143371027,54,14119465,Medical Incident,12/03/2014,12/03/2014,12/03/2014 08:28:55 AM,12/03/2014 08:29:43 AM,12/03/2014 08:29:58 AM,12/03/2014 08:30:19 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Unable to Locate,12/03/2014 08:37:04 AM,26TH ST/MISSION ST,San Francisco,94110,B06,11,5613,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7490412884368, -122.418135251703)",143371027-54 -151150090,E11,15043305,Traffic Collision,04/25/2015,04/24/2015,04/25/2015 12:33:12 AM,04/25/2015 12:37:14 AM,04/25/2015 12:37:25 AM,04/25/2015 12:39:28 AM,04/25/2015 12:40:49 AM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Code 2 Transport,04/25/2015 01:02:43 AM,3100 Block of MISSION ST,San Francisco,94110,B06,11,5624,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7474955268543, -122.418732763058)",151150090-E11 -152243399,KM11,15085521,Medical Incident,08/12/2015,08/12/2015,08/12/2015 08:00:47 PM,08/12/2015 08:02:21 PM,08/12/2015 08:02:32 PM,08/12/2015 08:03:06 PM,08/12/2015 08:08:02 PM,08/12/2015 08:37:11 PM,08/12/2015 08:37:15 PM,Code 2 Transport,08/12/2015 09:00:32 PM,FREMONT ST/MISSION ST,San Francisco,94105,B03,35,2126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.790461066593, -122.396689696588)",152243399-KM11 -150891383,E06,15033933,Medical Incident,03/30/2015,03/30/2015,03/30/2015 11:50:51 AM,03/30/2015 11:52:08 AM,03/30/2015 11:52:27 AM,03/30/2015 11:53:16 AM,03/30/2015 11:56:33 AM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Code 2 Transport,03/30/2015 12:03:25 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",150891383-E06 -143104212,E35,14109955,Outside Fire,11/06/2014,11/06/2014,11/06/2014 11:42:16 PM,11/06/2014 11:42:16 PM,11/06/2014 11:42:36 PM,11/06/2014 11:47:07 PM,11/06/2014 11:47:07 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Fire,11/06/2014 11:47:12 PM,3RD ST/BERRY ST,San Francisco,94158,B03,8,2171,3,3,3,true,Alarm,1,ENGINE,3,3,6,Mission Bay,"(37.7775532772091, -122.391121418858)",143104212-E35 -151350001,KM03,15051067,Medical Incident,05/15/2015,05/14/2015,05/15/2015 12:00:04 AM,05/15/2015 12:00:42 AM,05/15/2015 12:02:23 AM,05/15/2015 12:03:11 AM,05/15/2015 12:11:19 AM,05/15/2015 12:29:50 AM,05/15/2015 12:52:52 AM,Code 3 Transport,05/15/2015 01:36:06 AM,900 Block of FELTON ST,San Francisco,94134,B09,42,6147,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7276379267754, -122.413989306516)",151350001-KM03 -141140245,RS1,14038520,Structure Fire,04/24/2014,04/24/2014,04/24/2014 03:27:30 PM,04/24/2014 03:29:24 PM,04/24/2014 03:30:13 PM,04/24/2014 03:31:47 PM,04/24/2014 03:37:05 PM,04/25/2016 01:17:42 PM,04/25/2016 01:17:42 PM,Fire,04/24/2014 03:44:09 PM,0 Block of POWELL ST,SAN FRANCISCO,94102,B03,1,1364,3,3,3,false,Alarm,1,RESCUE SQUAD,8,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",141140245-RS1 -160932752,KM04,16036969,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:43:41 PM,04/02/2016 05:45:28 PM,04/02/2016 06:13:25 PM,04/02/2016 06:13:25 PM,04/02/2016 06:22:38 PM,04/02/2016 06:38:42 PM,04/02/2016 06:54:57 PM,Code 2 Transport,04/02/2016 07:40:01 PM,3100 Block of KAMILLE CT,San Francisco,94110,B06,7,5614,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7487950591223, -122.413176365916)",160932752-KM04 -150221895,E17,15008594,Medical Incident,01/22/2015,01/22/2015,01/22/2015 01:54:59 PM,01/22/2015 01:56:01 PM,01/22/2015 01:56:20 PM,01/22/2015 01:58:02 PM,01/22/2015 02:00:33 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Code 2 Transport,01/22/2015 02:17:34 PM,1700 Block of REVERE AVE,San Francisco,94124,B10,17,6514,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7330651667655, -122.392752918729)",150221895-E17 -153070555,E15,15117858,Traffic Collision,11/03/2015,11/02/2015,11/03/2015 07:00:53 AM,11/03/2015 07:00:53 AM,11/03/2015 07:01:10 AM,11/03/2015 07:02:16 AM,11/03/2015 07:04:27 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Code 2 Transport,11/03/2015 07:10:55 AM,GENEVA AV/DELANO AV,San Francisco,94112,B09,15,833,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7200867053727, -122.445127871312)",153070555-E15 -161010560,64,16040066,Medical Incident,04/10/2016,04/09/2016,04/10/2016 03:42:55 AM,04/10/2016 03:44:17 AM,04/10/2016 03:45:08 AM,04/10/2016 03:46:47 AM,04/10/2016 03:50:48 AM,04/10/2016 04:00:10 AM,04/10/2016 04:17:38 AM,Code 2 Transport,04/10/2016 04:49:37 AM,500 Block of 3RD ST,San Francisco,94107,B03,08,2173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7805661978095, -122.394799124177)",161010560-64 -141130110,E21,14038062,,04/23/2014,04/23/2014,04/23/2014 09:19:00 AM,04/23/2014 09:20:00 AM,04/23/2014 09:20:00 AM,04/23/2014 09:21:00 AM,04/23/2014 09:23:00 AM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,SFPD,04/23/2014 09:28:00 AM,1400 Block of HAIGHT ST,SAN FRANCISCO,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",141130110-E21 -141060148,E02,14035708,Medical Incident,04/16/2014,04/16/2014,04/16/2014 09:47:25 AM,04/16/2014 09:50:04 AM,04/16/2014 09:52:46 AM,04/16/2014 09:52:46 AM,04/16/2014 09:54:55 AM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,Code 2 Transport,04/16/2014 10:04:39 AM,400 Block of STOCKTON ST,SAN FRANCISCO,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7898930161582, -122.407112815209)",141060148-E02 -143552553,B01,14126983,Alarms,12/21/2014,12/21/2014,12/21/2014 04:03:58 PM,12/21/2014 04:04:58 PM,12/21/2014 04:08:28 PM,12/21/2014 04:10:15 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 04:15:52 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7824182864419, -122.403869611535)",143552553-B01 -151722042,E35,15065729,Medical Incident,06/21/2015,06/21/2015,06/21/2015 03:15:45 PM,06/21/2015 03:16:42 PM,06/21/2015 03:17:00 PM,06/21/2015 03:18:38 PM,06/21/2015 03:21:01 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Patient Declined Transport,06/21/2015 03:23:05 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",151722042-E35 -142022376,E02,14069949,Medical Incident,07/21/2014,07/21/2014,07/21/2014 04:35:11 PM,07/21/2014 04:39:25 PM,07/21/2014 04:40:34 PM,07/21/2014 04:42:23 PM,07/21/2014 04:45:25 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Code 2 Transport,07/21/2014 05:26:21 PM,1200 Block of STOCKTON ST,San Francisco,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7970067945044, -122.408562639884)",142022376-E02 -151353956,74,15051487,Medical Incident,05/15/2015,05/15/2015,05/15/2015 10:36:09 PM,05/15/2015 10:37:07 PM,05/15/2015 10:50:24 PM,05/15/2015 10:50:44 PM,05/15/2015 11:04:55 PM,05/15/2015 11:18:07 PM,05/15/2015 11:25:54 PM,Code 3 Transport,05/16/2015 12:00:26 AM,5600 Block of ANZA ST,San Francisco,94121,B07,34,7276,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7771231360845, -122.508698316635)",151353956-74 -153231997,E33,15124287,Medical Incident,11/19/2015,11/19/2015,11/19/2015 01:31:16 PM,11/19/2015 01:32:48 PM,11/19/2015 01:34:03 PM,11/19/2015 01:36:04 PM,11/19/2015 01:38:03 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Code 2 Transport,11/19/2015 01:55:03 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",153231997-E33 -143391641,E07,14120339,Medical Incident,12/05/2014,12/05/2014,12/05/2014 12:05:23 PM,12/05/2014 12:05:46 PM,12/05/2014 12:07:02 PM,12/05/2014 12:07:02 PM,12/05/2014 12:08:06 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 12:13:22 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",143391641-E07 -160930646,88,16036734,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:54:11 AM,04/02/2016 06:55:39 AM,04/02/2016 06:56:32 AM,04/02/2016 06:57:05 AM,04/02/2016 07:03:02 AM,04/02/2016 07:24:32 AM,04/02/2016 07:42:00 AM,Code 2 Transport,04/02/2016 08:17:06 AM,100 Block of ELLINGTON AVE,San Francisco,94112,B09,43,8334,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7145087398157, -122.44369163229)",160930646-88 -160974428,KM07,16038695,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:21:51 PM,04/06/2016 10:22:19 PM,04/06/2016 10:22:31 PM,04/06/2016 10:22:57 PM,04/06/2016 10:28:04 PM,04/06/2016 10:40:48 PM,04/06/2016 10:54:50 PM,Code 2 Transport,04/06/2016 11:37:14 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160974428-KM07 -150533362,63,15020551,Medical Incident,02/22/2015,02/22/2015,02/22/2015 10:00:01 PM,02/22/2015 10:02:29 PM,02/22/2015 10:02:48 PM,02/22/2015 10:02:58 PM,02/22/2015 10:07:36 PM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,No Merit,02/22/2015 10:09:33 PM,0 Block of CABRILLO ST,San Francisco,94118,B07,31,7121,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7755376101744, -122.459021681906)",150533362-63 -160943738,AM24,16037462,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:20:45 PM,04/03/2016 11:22:05 PM,04/03/2016 11:22:30 PM,04/03/2016 11:22:57 PM,04/03/2016 11:33:57 PM,04/03/2016 11:58:32 PM,04/04/2016 12:19:00 AM,Code 2 Transport,04/04/2016 12:37:14 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160943738-AM24 -141050132,E07,14035369,Medical Incident,04/15/2014,04/15/2014,04/15/2014 10:35:43 AM,04/15/2014 10:37:51 AM,04/15/2014 10:38:13 AM,04/15/2014 10:38:34 AM,04/15/2014 10:40:57 AM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 10:44:35 AM,11TH ST/MISSION ST,SAN FRANCISCO,94103,B02,36,5116,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",141050132-E07 -152410978,B03,15091801,Alarms,08/29/2015,08/29/2015,08/29/2015 08:08:20 AM,08/29/2015 08:09:50 AM,08/29/2015 08:10:06 AM,08/29/2015 08:12:29 AM,08/29/2015 08:14:47 AM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 08:15:26 AM,100 Block of TOWNSEND ST,San Francisco,94107,B03,8,2154,3,3,3,false,Alarm,1,CHIEF,3,3,6,Mission Bay,"(37.7796910137658, -122.391588816975)",152410978-B03 -152860487,T02,15109736,Structure Fire,10/13/2015,10/12/2015,10/13/2015 05:39:05 AM,10/13/2015 05:39:05 AM,10/13/2015 05:39:41 AM,10/13/2015 05:41:28 AM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Code 2 Transport,10/13/2015 05:42:39 AM,COLUMBUS AV/UNION ST,San Francisco,94133,B01,28,1334,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8003154984429, -122.410206543893)",152860487-T02 -161000660,AM02,16039640,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:51:20 AM,04/09/2016 06:51:20 AM,04/09/2016 06:51:36 AM,04/09/2016 06:51:59 AM,04/09/2016 06:57:15 AM,04/09/2016 07:09:35 AM,04/09/2016 07:24:15 AM,Code 2 Transport,04/09/2016 08:09:53 AM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",161000660-AM02 -150641370,E37,15024407,Medical Incident,03/05/2015,03/05/2015,03/05/2015 10:40:08 AM,03/05/2015 10:41:47 AM,03/05/2015 10:41:53 AM,03/05/2015 10:42:11 AM,03/05/2015 10:45:06 AM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Other,03/05/2015 10:52:06 AM,25TH ST/CONNECTICUT ST,San Francisco,94107,B10,37,2614,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",150641370-E37 -142100047,E07,14072658,Medical Incident,07/29/2014,07/28/2014,07/29/2014 12:32:21 AM,07/29/2014 12:33:11 AM,07/29/2014 12:33:35 AM,07/29/2014 12:35:16 AM,07/29/2014 12:38:59 AM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Code 2 Transport,07/29/2014 12:44:29 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",142100047-E07 -160950185,78,16037489,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:17:21 AM,04/04/2016 02:18:10 AM,04/04/2016 02:18:46 AM,04/04/2016 02:18:54 AM,04/04/2016 02:22:45 AM,04/04/2016 02:32:11 AM,04/04/2016 03:00:17 AM,Code 2 Transport,04/04/2016 03:30:45 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160950185-78 -142670289,B02,14093346,Alarms,09/24/2014,09/23/2014,09/24/2014 02:42:42 AM,09/24/2014 02:44:07 AM,09/24/2014 02:45:11 AM,09/24/2014 02:47:08 AM,09/24/2014 02:50:36 AM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/24/2014 03:26:30 AM,800 Block of FRANKLIN ST,San Francisco,94102,B02,36,3216,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7819947126055, -122.422254006576)",142670289-B02 -152251422,E13,15085724,Alarms,08/13/2015,08/13/2015,08/13/2015 11:12:14 AM,08/13/2015 11:13:26 AM,08/13/2015 11:24:47 AM,08/13/2015 11:26:37 AM,08/13/2015 11:46:39 AM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/13/2015 01:00:06 PM,100 Block of PORTOLA DR,San Francisco,94131,B06,24,5354,3,3,3,true,Alarm,1,ENGINE,4,6,8,Twin Peaks,"(37.7484965077695, -122.444276468858)",152251422-E13 -150170791,E36,15006609,Structure Fire,01/17/2015,01/16/2015,01/17/2015 07:18:25 AM,01/17/2015 07:18:25 AM,01/17/2015 07:19:08 AM,01/17/2015 07:22:24 AM,01/17/2015 07:23:52 AM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Cancelled,01/17/2015 07:24:37 AM,9TH ST/HOWARD ST,San Francisco,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",150170791-E36 -160992213,KM01,16039348,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:13:51 PM,04/08/2016 03:16:35 PM,04/08/2016 03:16:55 PM,04/08/2016 03:17:25 PM,04/08/2016 03:33:47 PM,04/08/2016 04:05:49 PM,04/08/2016 04:16:28 PM,Code 3 Transport,04/08/2016 05:34:50 PM,1700 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160992213-KM01 -160971390,65,16038365,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:39:14 AM,04/06/2016 10:39:42 AM,04/06/2016 10:40:03 AM,04/06/2016 10:40:19 AM,04/06/2016 10:59:06 AM,04/06/2016 11:10:00 AM,04/06/2016 11:21:27 AM,Code 2 Transport,04/06/2016 11:59:05 AM,500 Block of TERRY A FRANCOIS BLVD,San Francisco,94158,B03,4,2364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7699167000745, -122.386442168137)",160971390-65 -142943600,E22,14103835,Medical Incident,10/21/2014,10/21/2014,10/21/2014 10:03:11 PM,10/21/2014 10:04:20 PM,10/21/2014 10:04:41 PM,10/21/2014 10:08:40 PM,10/21/2014 10:08:40 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,Code 2 Transport,10/21/2014 10:15:40 PM,1500 Block of 10TH AVE,San Francisco,94122,B08,22,7344,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7593341109976, -122.466988064549)",142943600-E22 -141010074,E31,14034020,Medical Incident,04/11/2014,04/11/2014,04/11/2014 08:04:20 AM,04/11/2014 08:05:53 AM,04/11/2014 08:06:18 AM,04/11/2014 08:07:44 AM,04/11/2014 08:11:48 AM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Patient Declined Transport,04/11/2014 08:28:04 AM,700 Block of 6TH AVE,SAN FRANCISCO,94118,B07,31,7132,3,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7744933641566, -122.463881451148)",141010074-E31 -141190241,RC3,14040193,Traffic Collision,04/29/2014,04/29/2014,04/29/2014 02:00:18 PM,04/29/2014 02:00:52 PM,04/29/2014 02:04:20 PM,04/29/2014 02:05:52 PM,04/29/2014 02:12:28 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Code 2 Transport,04/29/2014 02:43:01 PM,300 Block of MAYNARD ST,SAN FRANCISCO,94112,B09,32,5683,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,9,11,Excelsior,"(37.7299407202717, -122.422848816355)",141190241-RC3 -142511020,66,14087491,Medical Incident,09/08/2014,09/08/2014,09/08/2014 10:01:38 AM,09/08/2014 10:03:42 AM,09/08/2014 10:06:52 AM,09/08/2014 10:07:44 AM,09/08/2014 10:19:35 AM,09/08/2014 10:52:33 AM,09/08/2014 11:08:31 AM,Code 2 Transport,09/08/2014 11:35:30 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",142511020-66 -142790130,E42,14098003,Traffic Collision,10/06/2014,10/05/2014,10/06/2014 01:08:44 AM,10/06/2014 01:11:02 AM,10/06/2014 01:12:38 AM,10/06/2014 01:15:01 AM,10/06/2014 01:17:57 AM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Code 2 Transport,10/06/2014 02:05:26 AM,100 Block of ALEMANY BLVD,San Francisco,94110,B10,42,6374,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",142790130-E42 -151360417,55,15051550,Medical Incident,05/16/2015,05/15/2015,05/16/2015 03:13:59 AM,05/16/2015 03:16:57 AM,05/16/2015 03:17:55 AM,05/16/2015 03:18:03 AM,05/16/2015 03:26:59 AM,05/16/2015 03:48:23 AM,05/16/2015 04:22:18 AM,Code 2 Transport,05/16/2015 04:52:43 AM,1400 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7497020110556, -122.420499334167)",151360417-55 -151722260,E31,15065751,Structure Fire,06/21/2015,06/21/2015,06/21/2015 04:24:50 PM,06/21/2015 04:24:50 PM,06/21/2015 04:25:57 PM,06/21/2015 04:27:23 PM,06/21/2015 04:29:44 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Fire,06/21/2015 04:41:22 PM,700 Block of 16TH AVE,San Francisco,94118,B07,31,715,3,3,3,false,Alarm,1,ENGINE,2,7,1,Outer Richmond,"(37.773947007152, -122.474549425866)",151722260-E31 -152360261,E12,15089787,Medical Incident,08/24/2015,08/23/2015,08/24/2015 02:41:46 AM,08/24/2015 02:42:22 AM,08/24/2015 02:43:14 AM,08/24/2015 02:44:50 AM,08/24/2015 02:47:39 AM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,Code 3 Transport,08/24/2015 02:58:54 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",152360261-E12 -143100450,54,14109616,Medical Incident,11/06/2014,11/05/2014,11/06/2014 06:05:46 AM,11/06/2014 06:05:46 AM,11/06/2014 06:06:17 AM,11/06/2014 06:07:55 AM,11/06/2014 06:31:03 AM,11/06/2014 06:52:34 AM,11/06/2014 07:30:18 AM,Code 2 Transport,11/06/2014 08:47:44 AM,800 Block of TREAT AVE,San Francisco,94110,B06,7,545,A,E,3,false,Potentially Life-Threatening,1,MEDIC,4,6,9,Mission,"(37.7565605303297, -122.413439435953)",143100450-54 -152543362,E12,15097280,Medical Incident,09/11/2015,09/11/2015,09/11/2015 07:44:58 PM,09/11/2015 07:45:27 PM,09/11/2015 07:46:44 PM,09/11/2015 07:47:23 PM,09/11/2015 07:50:00 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Patient Declined Transport,09/11/2015 07:58:11 PM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",152543362-E12 -161000915,64,16039674,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:59:26 AM,04/09/2016 08:59:45 AM,04/09/2016 09:00:16 AM,04/09/2016 09:00:27 AM,04/09/2016 09:07:46 AM,04/09/2016 09:24:57 AM,04/09/2016 09:50:34 AM,Code 2 Transport,04/09/2016 10:20:14 AM,1600 Block of 48TH AVE,San Francisco,94122,B08,23,7724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7556644793089, -122.507808351695)",161000915-64 -143260691,81,14115383,Medical Incident,11/22/2014,11/21/2014,11/22/2014 06:35:09 AM,11/22/2014 06:37:11 AM,11/22/2014 06:47:29 AM,11/22/2014 06:47:36 AM,11/22/2014 06:58:05 AM,11/22/2014 07:10:44 AM,11/22/2014 07:25:33 AM,Code 2 Transport,11/22/2014 07:59:54 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143260691-81 -151350153,E06,15051086,Medical Incident,05/15/2015,05/14/2015,05/15/2015 01:00:26 AM,05/15/2015 01:00:26 AM,05/15/2015 01:01:09 AM,05/15/2015 01:03:05 AM,05/15/2015 01:05:16 AM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,Code 2 Transport,05/15/2015 01:17:49 AM,14TH ST/MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7682736543413, -122.419981513232)",151350153-E06 -160994058,55,16039536,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:33:07 PM,04/08/2016 11:33:34 PM,04/08/2016 11:33:51 PM,04/08/2016 11:34:11 PM,04/08/2016 11:48:33 PM,04/09/2016 12:05:56 AM,04/09/2016 12:35:29 AM,Code 2 Transport,04/09/2016 01:36:29 AM,500 Block of SAWYER ST,San Francisco,94134,B09,44,6251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7106933191259, -122.415583396236)",160994058-55 -150690349,55,15026236,Medical Incident,03/10/2015,03/09/2015,03/10/2015 03:58:13 AM,03/10/2015 03:59:30 AM,03/10/2015 03:59:53 AM,03/10/2015 04:00:09 AM,03/10/2015 04:11:59 AM,03/10/2015 04:30:03 AM,03/10/2015 04:49:35 AM,Code 2 Transport,03/10/2015 05:30:41 AM,20TH ST/3RD ST,San Francisco,94107,B10,37,2665,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",150690349-55 -160930892,62,16036763,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:49:52 AM,04/02/2016 08:52:24 AM,04/02/2016 08:53:05 AM,04/02/2016 08:53:55 AM,04/02/2016 09:13:38 AM,04/02/2016 09:35:00 AM,04/02/2016 09:54:48 AM,Code 2 Transport,04/02/2016 10:35:04 AM,OFARRELL ST/POLK ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",160930892-62 -153152538,E03,15121114,Medical Incident,11/11/2015,11/11/2015,11/11/2015 04:20:25 PM,11/11/2015 04:20:47 PM,11/11/2015 04:25:06 PM,11/11/2015 04:26:32 PM,04/25/2016 01:07:16 PM,04/25/2016 01:07:16 PM,04/25/2016 01:07:16 PM,Code 2 Transport,11/11/2015 04:27:10 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,3,Financial District/South Beach,"(37.7851034545661, -122.407707096397)",153152538-E03 -160922194,84,16036486,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:14:21 PM,04/01/2016 03:16:35 PM,04/01/2016 03:17:15 PM,04/01/2016 03:19:13 PM,04/01/2016 03:30:35 PM,04/01/2016 04:05:46 PM,04/01/2016 04:24:50 PM,Code 2 Transport,04/01/2016 05:06:04 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",160922194-84 -160992096,67,16039337,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:44:17 PM,04/08/2016 02:44:37 PM,04/08/2016 02:45:27 PM,04/08/2016 02:45:32 PM,04/08/2016 02:50:08 PM,04/08/2016 03:05:36 PM,04/08/2016 03:31:17 PM,Code 3 Transport,04/08/2016 04:10:44 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160992096-67 -141982342,E51,14068610,Medical Incident,07/17/2014,07/17/2014,07/17/2014 04:04:40 PM,07/17/2014 04:06:48 PM,07/17/2014 04:08:01 PM,07/17/2014 04:08:21 PM,07/17/2014 04:14:51 PM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,No Merit,07/17/2014 04:15:39 PM,0 Block of MALLORCA WAY,San Francisco,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8011205431739, -122.437458335533)",141982342-E51 -160963675,KM07,16038176,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:26:25 PM,04/05/2016 08:27:03 PM,04/05/2016 08:27:24 PM,04/05/2016 08:28:03 PM,04/05/2016 08:56:41 PM,04/05/2016 08:56:43 PM,04/05/2016 09:05:06 PM,Code 2 Transport,04/05/2016 10:03:19 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160963675-KM07 -151230365,88,15046547,Medical Incident,05/03/2015,05/02/2015,05/03/2015 02:24:29 AM,05/03/2015 02:27:55 AM,05/03/2015 02:31:28 AM,05/03/2015 02:31:28 AM,05/03/2015 02:43:44 AM,05/03/2015 03:12:00 AM,05/03/2015 03:43:12 AM,Code 2 Transport,05/03/2015 04:12:26 AM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",151230365-88 -160982056,KM10,16038932,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:32:30 PM,04/07/2016 01:34:50 PM,04/07/2016 01:38:06 PM,04/07/2016 01:38:24 PM,04/07/2016 01:46:32 PM,04/07/2016 02:07:26 PM,04/07/2016 02:36:28 PM,Code 2 Transport,04/07/2016 03:00:52 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160982056-KM10 -160942003,85,16037276,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:56:15 PM,04/03/2016 01:57:06 PM,04/03/2016 01:57:30 PM,04/03/2016 01:59:26 PM,04/03/2016 02:01:41 PM,04/03/2016 02:22:13 PM,04/03/2016 02:34:12 PM,Code 2 Transport,04/03/2016 03:02:29 PM,BRYANT ST/17TH ST,San Francisco,94110,B02,29,5242,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7643099865933, -122.410363751269)",160942003-85 -151480618,E03,15056222,Medical Incident,05/28/2015,05/27/2015,05/28/2015 07:44:08 AM,05/28/2015 07:46:58 AM,05/28/2015 07:47:56 AM,05/28/2015 07:49:13 AM,05/28/2015 07:52:11 AM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Code 2 Transport,05/28/2015 07:59:54 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",151480618-E03 -142351441,74,14081689,Medical Incident,08/23/2014,08/23/2014,08/23/2014 11:45:29 AM,08/23/2014 11:46:45 AM,08/23/2014 11:47:06 AM,08/23/2014 11:47:12 AM,08/23/2014 11:56:38 AM,08/23/2014 12:08:46 PM,08/23/2014 12:30:15 PM,Code 2 Transport,08/23/2014 01:21:49 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7514438314246, -122.41829760412)",142351441-74 -160952906,71,16037723,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:16:58 PM,04/04/2016 05:19:26 PM,04/04/2016 05:22:29 PM,04/04/2016 05:22:39 PM,04/04/2016 05:30:18 PM,04/04/2016 05:50:17 PM,04/04/2016 05:56:49 PM,Code 2 Transport,04/04/2016 06:45:11 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160952906-71 -141610478,E44,14055393,Medical Incident,06/10/2014,06/09/2014,06/10/2014 06:42:03 AM,06/10/2014 06:42:45 AM,06/10/2014 06:43:26 AM,06/10/2014 06:44:00 AM,06/10/2014 06:47:23 AM,06/10/2014 07:06:55 AM,06/10/2014 07:23:54 AM,Code 3 Transport,06/10/2014 07:36:05 AM,3300 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7197749568073, -122.400653137346)",141610478-E44 -161001985,AM16,16039804,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:12:46 PM,04/09/2016 03:13:01 PM,04/09/2016 03:13:17 PM,04/09/2016 03:13:54 PM,04/09/2016 03:18:27 PM,04/09/2016 03:40:24 PM,04/09/2016 04:05:32 PM,Code 2 Transport,04/09/2016 04:36:50 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",161001985-AM16 -161001343,KM12,16039729,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:30:34 AM,04/09/2016 11:31:59 AM,04/09/2016 11:32:25 AM,04/09/2016 11:33:08 AM,04/09/2016 11:54:14 AM,04/09/2016 11:58:44 AM,04/09/2016 12:13:34 PM,Code 2 Transport,04/09/2016 12:44:36 PM,800 Block of WASHINGTON ST,San Francisco,94108,B01,2,1331,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7949240919282, -122.407771230175)",161001343-KM12 -160922985,85,16036557,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:24:05 PM,04/01/2016 06:25:29 PM,04/01/2016 06:25:51 PM,04/01/2016 06:26:05 PM,04/01/2016 06:31:04 PM,04/01/2016 06:42:33 PM,04/01/2016 06:44:40 PM,Code 3 Transport,04/01/2016 07:37:24 PM,2500 Block of BRYANT ST,San Francisco,94110,B06,7,5474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7536039830321, -122.409137616637)",160922985-85 -152173214,E02,15082731,Medical Incident,08/05/2015,08/05/2015,08/05/2015 06:33:19 PM,08/05/2015 06:35:08 PM,08/05/2015 06:35:52 PM,08/05/2015 06:37:17 PM,08/05/2015 06:37:17 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 06:40:43 PM,1400 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7992531925554, -122.409031505971)",152173214-E02 -142912686,T14,14102719,Structure Fire,10/18/2014,10/18/2014,10/18/2014 05:06:45 PM,10/18/2014 05:06:45 PM,10/18/2014 05:07:21 PM,10/18/2014 05:10:19 PM,10/18/2014 05:11:20 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Fire,10/18/2014 05:33:25 PM,400 Block of 30TH AVE,San Francisco,94121,B07,14,722,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",142912686-T14 -141400162,89,14047851,Medical Incident,05/20/2014,05/19/2014,05/20/2014 01:43:53 AM,05/20/2014 01:47:39 AM,05/20/2014 01:49:19 AM,05/20/2014 01:49:43 AM,05/20/2014 01:53:23 AM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,No Merit,05/20/2014 01:58:20 AM,200 Block of MARINA BLVD,San Francisco,94123,B04,16,3561,3,3,3,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8064044780344, -122.43650488639)",141400162-89 -151202151,61,15045434,Medical Incident,04/30/2015,04/30/2015,04/30/2015 02:17:34 PM,04/30/2015 02:18:12 PM,04/30/2015 02:18:37 PM,04/30/2015 02:18:47 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,Code 2 Transport,04/30/2015 02:20:01 PM,700 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,5,5,Haight Ashbury,"(37.7716381141296, -122.434564848231)",151202151-61 -160972416,AM16,16038463,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:55:23 PM,04/06/2016 02:30:04 PM,04/06/2016 02:33:39 PM,04/06/2016 02:34:45 PM,04/06/2016 02:39:29 PM,04/06/2016 02:55:58 PM,04/06/2016 03:29:39 PM,Code 2 Transport,04/06/2016 04:14:23 PM,300 Block of PROSPECT AVE,San Francisco,94110,B06,32,5653,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Bernal Heights,"(37.7411852364094, -122.420155503598)",160972416-AM16 -150690585,AM02,15026259,Medical Incident,03/10/2015,03/09/2015,03/10/2015 07:16:23 AM,03/10/2015 07:17:38 AM,03/10/2015 07:18:15 AM,03/10/2015 07:19:28 AM,03/10/2015 07:33:10 AM,03/10/2015 07:33:20 AM,04/25/2016 01:11:49 PM,Code 2 Transport,03/10/2015 08:27:30 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150690585-AM02 -142830004,E03,14099466,Medical Incident,10/09/2014,10/09/2014,10/09/2014 11:59:21 PM,10/10/2014 12:00:35 AM,10/10/2014 12:02:21 AM,10/10/2014 12:04:34 AM,04/25/2016 01:14:38 PM,04/25/2016 01:14:38 PM,04/25/2016 01:14:38 PM,Code 2 Transport,10/10/2014 12:06:25 AM,MCALLISTER ST/VAN NESS AV,San Francisco,94102,B02,3,3113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",142830004-E03 -152181352,AM02,15082979,Medical Incident,08/06/2015,08/06/2015,08/06/2015 11:10:57 AM,08/06/2015 11:12:20 AM,08/06/2015 11:12:53 AM,08/06/2015 11:13:32 AM,08/06/2015 11:21:08 AM,08/06/2015 11:39:28 AM,08/06/2015 12:09:30 PM,Code 2 Transport,08/06/2015 12:41:27 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,3,3,6,South of Market,"(37.7811617395427, -122.403433976322)",152181352-AM02 -142332476,T17,14081001,Structure Fire,08/21/2014,08/21/2014,08/21/2014 04:38:48 PM,08/21/2014 04:39:19 PM,08/21/2014 04:39:39 PM,08/21/2014 04:40:41 PM,08/21/2014 04:45:32 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,Fire,08/21/2014 05:56:40 PM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,3,3,3,false,Fire,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",142332476-T17 -150581082,70,15022097,Medical Incident,02/27/2015,02/27/2015,02/27/2015 09:41:39 AM,02/27/2015 09:43:26 AM,02/27/2015 09:45:01 AM,02/27/2015 09:45:13 AM,02/27/2015 09:55:58 AM,02/27/2015 10:14:59 AM,02/27/2015 10:39:01 AM,Code 2 Transport,02/27/2015 11:12:49 AM,900 Block of FILLMORE ST,San Francisco,94117,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",150581082-70 -143013341,73,14106401,Medical Incident,10/28/2014,10/28/2014,10/28/2014 09:06:11 PM,10/28/2014 09:06:53 PM,10/28/2014 09:07:01 PM,10/28/2014 09:07:42 PM,10/28/2014 09:11:54 PM,10/28/2014 09:24:38 PM,10/28/2014 09:43:39 PM,Code 2 Transport,10/28/2014 10:11:33 PM,1400 Block of SHAFTER AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294942313003, -122.387879447239)",143013341-73 -160932057,63,16036899,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:37:06 PM,04/02/2016 02:39:34 PM,04/02/2016 02:40:32 PM,04/02/2016 02:40:40 PM,04/02/2016 02:47:12 PM,04/02/2016 02:53:25 PM,04/02/2016 03:17:55 PM,Code 3 Transport,04/02/2016 04:13:54 PM,HYDE ST/MARKET ST,San Francisco,94103,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160932057-63 -142650825,E14,14092622,Medical Incident,09/22/2014,09/22/2014,09/22/2014 08:41:12 AM,09/22/2014 08:41:55 AM,09/22/2014 08:42:11 AM,09/22/2014 08:43:05 AM,09/22/2014 08:44:59 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Code 2 Transport,09/22/2014 09:04:40 AM,500 Block of 24TH AVE,San Francisco,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7791756022124, -122.483662765837)",142650825-E14 -150162738,56,15006399,Medical Incident,01/16/2015,01/16/2015,01/16/2015 05:30:59 PM,01/16/2015 05:32:08 PM,01/16/2015 05:32:29 PM,01/16/2015 05:32:57 PM,01/16/2015 06:15:07 PM,01/16/2015 06:15:21 PM,01/16/2015 06:06:00 PM,Code 2 Transport,01/16/2015 06:53:20 PM,300 Block of PARNASSUS AVE,San Francisco,94117,B05,12,5155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7641615127899, -122.454996890694)",150162738-56 -141471079,E36,14050389,Medical Incident,05/27/2014,05/27/2014,05/27/2014 09:50:38 AM,05/27/2014 09:52:28 AM,05/27/2014 09:54:36 AM,05/27/2014 09:54:46 AM,05/27/2014 09:57:53 AM,04/25/2016 01:17:06 PM,04/25/2016 01:17:06 PM,No Merit,05/27/2014 09:58:54 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",141471079-E36 -152923304,85,15112351,Medical Incident,10/19/2015,10/19/2015,10/19/2015 07:54:49 PM,10/19/2015 08:00:06 PM,10/19/2015 08:01:01 PM,10/19/2015 08:01:08 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Patient Declined Transport,10/19/2015 08:07:21 PM,100 Block of SAN FELIPE AVE,San Francisco,94127,B09,15,8547,2,2,2,true,Non Life-threatening,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7314812018322, -122.462473997503)",152923304-85 -161001218,71,16039708,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:49:41 AM,04/09/2016 10:52:04 AM,04/09/2016 11:03:03 AM,04/09/2016 11:03:25 AM,04/09/2016 11:10:11 AM,04/09/2016 11:26:02 AM,04/09/2016 11:43:15 AM,Code 2 Transport,04/09/2016 01:20:58 PM,100 Block of APOLLO ST,San Francisco,94124,B10,42,6447,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7308676952396, -122.398741672226)",161001218-71 -142640794,82,14092275,Medical Incident,09/21/2014,09/20/2014,09/21/2014 07:25:07 AM,09/21/2014 07:25:07 AM,09/21/2014 07:26:31 AM,09/21/2014 07:26:55 AM,09/21/2014 07:30:57 AM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Patient Declined Transport,09/21/2014 07:55:16 AM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6464,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",142640794-82 -153320752,E37,15127630,Medical Incident,11/28/2015,11/28/2015,11/28/2015 08:09:12 AM,11/28/2015 08:09:46 AM,11/28/2015 08:10:12 AM,11/28/2015 08:11:37 AM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,Code 2 Transport,11/28/2015 08:13:26 AM,300 Block of CONNECTICUT ST,San Francisco,94107,B03,37,2462,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7618859006044, -122.397364393329)",153320752-E37 -150770122,B04,15029356,Alarms,03/18/2015,03/17/2015,03/18/2015 12:49:10 AM,03/18/2015 12:51:01 AM,03/18/2015 12:51:06 AM,03/18/2015 12:51:50 AM,03/18/2015 12:54:57 AM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Fire,03/18/2015 01:01:01 AM,1600 Block of EDDY ST,San Francisco,94115,B05,5,3624,3,3,3,false,Alarm,1,CHIEF,1,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",150770122-B04 -161002112,64,16039816,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:44:03 PM,04/09/2016 03:46:03 PM,04/09/2016 03:46:47 PM,04/09/2016 03:49:54 PM,04/09/2016 04:04:39 PM,04/09/2016 04:22:03 PM,04/09/2016 04:47:08 PM,Code 2 Transport,04/09/2016 04:54:05 PM,1400 Block of 38TH AVE,San Francisco,94122,B08,23,7571,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.759865764672, -122.497356645994)",161002112-64 -153282745,77,15126335,Traffic Collision,11/24/2015,11/24/2015,11/24/2015 04:57:55 PM,11/24/2015 04:57:55 PM,11/24/2015 05:29:01 PM,11/24/2015 05:29:01 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Patient Declined Transport,11/24/2015 05:31:07 PM,1300 Block of JUNIPERO SERRA BL,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7137485042315, -122.471303751514)",153282745-77 -151421138,E22,15053917,Traffic Collision,05/22/2015,05/22/2015,05/22/2015 09:45:28 AM,05/22/2015 09:45:28 AM,05/22/2015 09:45:52 AM,05/22/2015 09:46:08 AM,05/22/2015 09:48:49 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,No Merit,05/22/2015 09:51:35 AM,JUDAH ST/18TH AV,San Francisco,94122,B08,22,7371,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Inner Sunset,"(37.7617471516544, -122.475924091366)",151421138-E22 -161000737,88,16039653,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:39:12 AM,04/09/2016 07:39:38 AM,04/09/2016 07:40:03 AM,04/09/2016 07:40:36 AM,04/09/2016 07:49:07 AM,04/09/2016 08:01:15 AM,04/09/2016 08:27:00 AM,Code 2 Transport,04/09/2016 09:01:43 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",161000737-88 -150850998,SR1,15032357,Water Rescue,03/26/2015,03/26/2015,03/26/2015 09:18:30 AM,03/26/2015 09:19:27 AM,03/26/2015 09:21:17 AM,03/26/2015 09:24:33 AM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Fire,03/26/2015 10:14:10 AM,ORTEGA ST/GREAT HY,San Francisco,94122,B08,23,7715,3,3,3,false,Fire,1,SUPPORT,10,8,4,Sunset/Parkside,"(37.7509682006019, -122.508186650127)",150850998-SR1 -160931838,63,16036870,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:33:53 PM,04/02/2016 01:33:53 PM,04/02/2016 01:38:40 PM,04/02/2016 01:38:50 PM,04/02/2016 01:58:39 PM,04/02/2016 02:01:32 PM,04/02/2016 02:27:07 PM,Code 2 Transport,04/02/2016 02:37:08 PM,1500 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",160931838-63 -141020064,RS1,14034336,Medical Incident,04/12/2014,04/11/2014,04/12/2014 05:26:34 AM,04/12/2014 05:27:07 AM,04/12/2014 05:28:32 AM,04/12/2014 05:31:02 AM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Code 2 Transport,04/12/2014 05:34:05 AM,100 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7807144867659, -122.408483722327)",141020064-RS1 -160933756,71,16037065,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:37:32 PM,04/02/2016 10:37:32 PM,04/02/2016 10:37:43 PM,04/02/2016 10:37:51 PM,04/02/2016 10:50:36 PM,04/02/2016 11:07:02 PM,04/02/2016 11:31:40 PM,Code 2 Transport,04/02/2016 11:57:25 PM,1200 Block of GRANT AVE,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7986417020523, -122.407109258598)",160933756-71 -153272173,E09,15125910,Citizen Assist / Service Call,11/23/2015,11/23/2015,11/23/2015 02:41:01 PM,11/23/2015 02:42:35 PM,11/23/2015 02:42:45 PM,11/23/2015 02:44:11 PM,11/23/2015 02:45:18 PM,04/25/2016 01:07:02 PM,04/25/2016 01:07:02 PM,Fire,11/23/2015 02:51:19 PM,BARNEVELD AV/JERROLD AV,San Francisco,94124,B10,9,6412,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7463340944535, -122.402698013436)",153272173-E09 -151580648,74,15060234,Medical Incident,06/07/2015,06/06/2015,06/07/2015 05:34:27 AM,06/07/2015 05:34:27 AM,06/07/2015 05:34:59 AM,06/07/2015 05:35:29 AM,06/07/2015 05:47:55 AM,06/07/2015 06:17:05 AM,06/07/2015 06:26:49 AM,Code 2 Transport,06/07/2015 07:01:39 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,2,3,3,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",151580648-74 -143081210,B04,14108931,Alarms,11/04/2014,11/04/2014,11/04/2014 10:33:58 AM,11/04/2014 10:35:31 AM,11/04/2014 10:35:50 AM,11/04/2014 10:37:48 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Fire,11/04/2014 10:40:02 AM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,3,3,3,false,Alarm,1,CHIEF,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",143081210-B04 -150421484,E32,15016330,Other,02/11/2015,02/11/2015,02/11/2015 11:30:55 AM,02/11/2015 11:31:40 AM,02/11/2015 11:32:02 AM,02/11/2015 11:32:50 AM,02/11/2015 11:35:59 AM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Fire,02/11/2015 11:51:30 AM,300 Block of CHENERY ST,San Francisco,94131,B06,26,8127,2,2,2,false,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7367583902916, -122.428298414187)",150421484-E32 -141080007,E10,14036272,Medical Incident,04/18/2014,04/17/2014,04/18/2014 12:15:25 AM,04/18/2014 12:16:43 AM,04/18/2014 12:17:41 AM,04/18/2014 12:19:54 AM,04/18/2014 12:22:24 AM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Fire,04/18/2014 12:23:57 AM,3500 Block of GEARY BLVD,SAN FRANCISCO,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",141080007-E10 -141952825,79,14067666,Odor (Strange / Unknown),07/14/2014,07/14/2014,07/14/2014 06:55:37 PM,07/14/2014 06:58:04 PM,07/14/2014 06:58:19 PM,07/14/2014 06:58:52 PM,07/14/2014 07:08:10 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Fire,07/14/2014 07:13:24 PM,400 Block of LYON ST,San Francisco,94117,B05,21,4351,3,3,3,true,Alarm,1,MEDIC,4,5,5,Lone Mountain/USF,"(37.7748359375241, -122.442781839636)",141952825-79 -160960664,82,16037912,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:03:59 AM,04/05/2016 08:04:50 AM,04/05/2016 08:05:53 AM,04/05/2016 08:05:59 AM,04/05/2016 08:17:51 AM,04/05/2016 08:38:33 AM,04/05/2016 08:59:48 AM,Code 2 Transport,04/05/2016 09:23:44 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160960664-82 -153050959,78,15117035,Medical Incident,11/01/2015,10/31/2015,11/01/2015 03:09:57 AM,11/01/2015 03:11:33 AM,11/01/2015 03:12:04 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 2 Transport,11/01/2015 03:12:21 AM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7826425026927, -122.407832679288)",153050959-78 -150830216,75,15031589,Medical Incident,03/24/2015,03/23/2015,03/24/2015 02:32:48 AM,03/24/2015 02:34:48 AM,03/24/2015 02:40:56 AM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/24/2015 02:41:42 AM,300 Block of GAVEN ST,San Francisco,94134,B09,42,6367,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,9,9,Portola,"(37.7323061102001, -122.412177293202)",150830216-75 -150550123,68,15020980,Medical Incident,02/24/2015,02/23/2015,02/24/2015 01:03:37 AM,02/24/2015 01:04:52 AM,02/24/2015 01:06:12 AM,02/24/2015 01:06:23 AM,02/24/2015 01:18:14 AM,02/24/2015 01:47:54 AM,02/24/2015 02:08:09 AM,Code 2 Transport,02/24/2015 02:30:17 AM,0 Block of STANFORD HEIGHTS AVE,San Francisco,94127,B09,15,8244,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7349122372305, -122.449968929607)",150550123-68 -142763044,AM26,14097058,Medical Incident,10/03/2014,10/03/2014,10/03/2014 05:59:47 PM,10/03/2014 06:03:21 PM,10/03/2014 06:03:54 PM,10/03/2014 06:04:42 PM,10/03/2014 06:06:57 PM,10/03/2014 06:14:12 PM,10/03/2014 06:33:41 PM,Code 2 Transport,10/03/2014 06:33:46 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",142763044-AM26 -160981760,56,16038904,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:16:57 PM,04/07/2016 12:18:10 PM,04/07/2016 12:25:31 PM,04/07/2016 12:26:00 PM,04/07/2016 12:37:33 PM,04/07/2016 01:03:08 PM,04/07/2016 01:46:52 PM,Code 2 Transport,04/07/2016 01:48:43 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160981760-56 -152381819,54,15090645,Medical Incident,08/26/2015,08/26/2015,08/26/2015 01:18:05 PM,08/26/2015 01:19:14 PM,08/26/2015 01:19:50 PM,08/26/2015 01:20:02 PM,08/26/2015 01:29:35 PM,08/26/2015 01:40:44 PM,08/26/2015 02:00:25 PM,Code 2 Transport,08/26/2015 02:46:44 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",152381819-54 -150371010,E13,15014178,Structure Fire,02/06/2015,02/06/2015,02/06/2015 09:06:13 AM,02/06/2015 09:06:13 AM,02/06/2015 09:06:44 AM,02/06/2015 09:07:42 AM,02/06/2015 09:08:31 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/06/2015 09:08:59 AM,KEARNY ST/WASHINGTON ST,San Francisco,94108,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7953266906824, -122.404957209767)",150371010-E13 -142380295,54,14082667,Medical Incident,08/26/2014,08/25/2014,08/26/2014 03:24:04 AM,08/26/2014 03:24:04 AM,08/26/2014 03:26:40 AM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,Code 2 Transport,08/26/2014 03:28:28 AM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",142380295-54 -141050246,93,14035464,Medical Incident,04/15/2014,04/15/2014,04/15/2014 03:33:17 PM,04/15/2014 03:33:40 PM,04/15/2014 03:35:43 PM,04/15/2014 03:35:43 PM,04/15/2014 03:40:41 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,No Merit,04/15/2014 03:41:01 PM,3RD ST/STILLMAN ST,SAN FRANCISCO,94107,B03,8,2174,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",141050246-93 -143030625,E11,14106984,Medical Incident,10/30/2014,10/29/2014,10/30/2014 03:21:00 AM,10/30/2014 03:21:00 AM,10/30/2014 03:22:36 AM,10/30/2014 03:24:12 AM,10/30/2014 03:25:57 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Code 2 Transport,10/30/2014 03:31:52 AM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,A,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",143030625-E11 -153121424,KM02,15119914,Medical Incident,11/08/2015,11/08/2015,11/08/2015 11:51:09 AM,11/08/2015 11:53:20 AM,11/08/2015 11:54:32 AM,11/08/2015 11:56:17 AM,11/08/2015 11:59:27 AM,11/08/2015 12:22:31 PM,11/08/2015 12:32:49 PM,Code 2 Transport,11/08/2015 01:10:51 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",153121424-KM02 -151040414,E01,15039225,Alarms,04/14/2015,04/13/2015,04/14/2015 05:33:58 AM,04/14/2015 05:36:21 AM,04/14/2015 05:36:33 AM,04/14/2015 05:38:19 AM,04/14/2015 05:40:37 AM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Fire,04/14/2015 05:42:41 AM,100 Block of 3RD ST,San Francisco,94105,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",151040414-E01 -152202225,E06,15083861,Vehicle Fire,08/08/2015,08/08/2015,08/08/2015 03:28:17 PM,08/08/2015 03:29:00 PM,08/08/2015 03:29:47 PM,08/08/2015 03:31:11 PM,08/08/2015 03:36:22 PM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Fire,08/08/2015 03:43:48 PM,MARKET ST/OCTAVIA ST,San Francisco,94102,B02,36,3311,3,3,3,true,Fire,1,ENGINE,1,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",152202225-E06 -160980062,73,16038730,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:30:48 AM,04/07/2016 12:30:48 AM,04/07/2016 12:31:18 AM,04/07/2016 12:34:53 AM,04/07/2016 12:42:15 AM,04/07/2016 12:52:42 AM,04/07/2016 12:58:08 AM,Code 2 Transport,04/07/2016 01:45:47 AM,1500 Block of BLK EDDY ST,San Francisco,94115,B05,5,3624,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7809799644788, -122.432168165552)",160980062-73 -153443072,RS1,15132523,Traffic Collision,12/10/2015,12/10/2015,12/10/2015 06:06:50 PM,12/10/2015 06:06:50 PM,12/10/2015 06:07:30 PM,12/10/2015 06:08:58 PM,12/10/2015 06:10:48 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Code 2 Transport,12/10/2015 06:14:56 PM,SHERMAN ST/HARRISON ST,San Francisco,94103,B03,8,2312,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7761619773283, -122.405476065054)",153443072-RS1 -151791937,B02,15068237,Alarms,06/28/2015,06/28/2015,06/28/2015 01:40:59 PM,06/28/2015 01:41:48 PM,06/28/2015 01:41:56 PM,06/28/2015 01:43:30 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 01:49:08 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",151791937-B02 -161001099,54,16039696,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:04:01 AM,04/09/2016 10:07:38 AM,04/09/2016 10:08:19 AM,04/09/2016 10:08:36 AM,04/09/2016 10:24:10 AM,04/09/2016 10:27:41 AM,04/09/2016 10:44:29 AM,Code 2 Transport,04/09/2016 11:14:49 AM,0 Block of NORTHRIDGE RD,San Francisco,94124,B10,17,6633,2,3,3,true,Non Life-threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",161001099-54 -160971523,AM08,16038379,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:14:13 AM,04/06/2016 11:15:37 AM,04/06/2016 11:16:23 AM,04/06/2016 11:17:41 AM,04/06/2016 11:29:02 AM,04/06/2016 11:45:56 AM,04/06/2016 12:13:33 PM,Code 2 Transport,04/06/2016 12:46:53 PM,900 Block of CORBETT AVE,San Francisco,94131,B06,24,5374,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Twin Peaks,"(37.7511571597361, -122.443968371476)",160971523-AM08 -161003360,60,16039964,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:08:53 PM,04/09/2016 10:10:10 PM,04/09/2016 10:10:39 PM,04/09/2016 10:10:50 PM,04/09/2016 10:16:33 PM,04/09/2016 10:42:39 PM,04/09/2016 10:52:26 PM,Code 2 Transport,04/09/2016 11:34:34 PM,0 Block of 8TH ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7778103407202, -122.413699499217)",161003360-60 -142900798,73,14102147,Medical Incident,10/17/2014,10/17/2014,10/17/2014 08:08:34 AM,10/17/2014 08:10:30 AM,10/17/2014 08:11:48 AM,10/17/2014 08:12:24 AM,10/17/2014 08:17:55 AM,10/17/2014 08:49:14 AM,10/17/2014 09:05:16 AM,Code 3 Transport,10/17/2014 09:40:42 AM,300 Block of BRANNAN ST,San Francisco,94107,B03,8,2153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7811569213596, -122.392851555469)",142900798-73 -151063269,E31,15040188,Medical Incident,04/16/2015,04/16/2015,04/16/2015 06:50:15 PM,04/16/2015 06:51:31 PM,04/16/2015 06:52:01 PM,04/16/2015 06:53:04 PM,04/16/2015 06:54:25 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Code 2 Transport,04/16/2015 06:55:45 PM,300 Block of 7TH AVE,San Francisco,94118,B07,31,7127,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.781931388363, -122.465353537218)",151063269-E31 -141502286,E12,14051607,Structure Fire,05/30/2014,05/30/2014,05/30/2014 04:39:20 PM,05/30/2014 04:40:29 PM,05/30/2014 04:41:07 PM,05/30/2014 04:44:14 PM,05/30/2014 04:44:14 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 05:01:18 PM,300 Block of FREDERICK ST,San Francisco,94117,B05,12,5144,3,3,3,true,Alarm,1,ENGINE,2,5,5,Haight Ashbury,"(37.7668851669849, -122.448532611392)",141502286-E12 -160931401,82,16036825,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:31:07 AM,04/02/2016 11:32:27 AM,04/02/2016 11:32:41 AM,04/02/2016 11:33:08 AM,04/02/2016 12:04:43 PM,04/02/2016 12:08:17 PM,04/02/2016 12:23:33 PM,Code 2 Transport,04/02/2016 12:51:28 PM,1000 Block of NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",160931401-82 -160932648,79,16036961,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:18:58 PM,04/02/2016 05:19:27 PM,04/02/2016 05:23:14 PM,04/02/2016 05:23:14 PM,04/02/2016 05:43:11 PM,04/02/2016 05:45:39 PM,04/02/2016 06:08:28 PM,Code 2 Transport,04/02/2016 06:20:40 PM,700 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",160932648-79 -152502879,FB1,15095601,Water Rescue,09/07/2015,09/07/2015,09/07/2015 06:43:57 PM,09/07/2015 06:45:09 PM,09/07/2015 06:45:26 PM,09/07/2015 06:48:58 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Fire,09/07/2015 06:53:35 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,false,Fire,1,SUPPORT,6,7,2,Presidio,"(37.7915253713789, -122.483480228628)",152502879-FB1 -142973951,B01,14104998,Alarms,10/24/2014,10/24/2014,10/24/2014 10:51:22 PM,10/24/2014 10:52:52 PM,10/24/2014 10:53:08 PM,10/24/2014 10:54:05 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Fire,10/24/2014 10:57:20 PM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7975061057448, -122.409143124942)",142973951-B01 -143203051,87,14113449,Medical Incident,11/16/2014,11/16/2014,11/16/2014 08:15:34 PM,11/16/2014 08:16:57 PM,11/16/2014 08:20:32 PM,11/16/2014 08:23:32 PM,11/16/2014 08:23:32 PM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,No Merit,11/16/2014 08:29:47 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",143203051-87 -141990318,T18,14068757,Structure Fire,07/18/2014,07/17/2014,07/18/2014 02:44:16 AM,07/18/2014 02:44:16 AM,07/18/2014 02:45:26 AM,07/18/2014 02:49:08 AM,07/18/2014 02:49:33 AM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Fire,07/18/2014 02:49:53 AM,45TH AV/NORIEGA ST,San Francisco,94122,B08,23,7662,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7530115306014, -122.50433336712)",141990318-T18 -152193649,E21,15083566,Medical Incident,08/07/2015,08/07/2015,08/07/2015 08:33:06 PM,08/07/2015 08:33:20 PM,08/07/2015 08:36:15 PM,08/07/2015 08:37:42 PM,08/07/2015 08:39:43 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Code 2 Transport,08/07/2015 08:48:55 PM,2100 Block of GROVE ST,San Francisco,94117,B05,21,4535,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740904696407, -122.451977200353)",152193649-E21 -143130873,E32,14110827,Medical Incident,11/09/2014,11/09/2014,11/09/2014 08:24:50 AM,11/09/2014 08:25:56 AM,11/09/2014 08:26:39 AM,11/09/2014 08:27:10 AM,11/09/2014 08:30:04 AM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Code 2 Transport,11/09/2014 08:36:12 AM,100 Block of SAINT MARYS AVE,San Francisco,94112,B06,32,8134,3,E,3,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Outer Mission,"(37.7347741172504, -122.428170806067)",143130873-E32 -143341283,B01,14118356,Alarms,11/30/2014,11/30/2014,11/30/2014 11:35:50 AM,11/30/2014 11:36:51 AM,11/30/2014 11:38:04 AM,11/30/2014 11:38:12 AM,11/30/2014 11:40:58 AM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,Fire,11/30/2014 11:43:45 AM,300 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,CHIEF,1,1,3,North Beach,"(37.7982414067113, -122.403286579807)",143341283-B01 -160951738,62,16037624,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:36:30 PM,04/04/2016 12:36:30 PM,04/04/2016 12:39:00 PM,04/04/2016 12:39:08 PM,04/04/2016 12:56:23 PM,04/04/2016 01:11:06 PM,04/04/2016 12:56:23 PM,Code 2 Transport,04/04/2016 02:30:42 PM,BROOKDALE AV/SANTOS ST,San Francisco,94134,B09,43,6243,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7119334337486, -122.418765995806)",160951738-62 -153370536,E03,15129518,Alarms,12/03/2015,12/02/2015,12/03/2015 06:36:10 AM,12/03/2015 06:37:58 AM,12/03/2015 06:38:09 AM,12/03/2015 06:39:38 AM,12/03/2015 06:41:22 AM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Fire,12/03/2015 06:45:44 AM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",153370536-E03 -161000897,KM08,16039672,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:52:40 AM,04/09/2016 08:53:25 AM,04/09/2016 08:53:48 AM,04/09/2016 08:54:31 AM,04/09/2016 09:02:40 AM,04/09/2016 09:35:36 AM,04/09/2016 09:55:06 AM,Code 2 Transport,04/09/2016 10:26:25 AM,400 Block of 14TH AVE,San Francisco,94118,B07,31,7146,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7796642527316, -122.472845331016)",161000897-KM08 -160990346,72,16039182,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:09:12 AM,04/08/2016 04:11:49 AM,04/08/2016 04:12:00 AM,04/08/2016 04:12:20 AM,04/08/2016 04:19:01 AM,04/08/2016 04:47:54 AM,04/08/2016 05:45:43 AM,Code 2 Transport,04/08/2016 06:00:44 AM,0 Block of PIERCE ST,San Francisco,94117,B05,6,3635,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7702879508133, -122.433383131974)",160990346-72 -143003607,B03,14106082,Alarms,10/27/2014,10/27/2014,10/27/2014 09:46:07 PM,10/27/2014 09:48:29 PM,10/27/2014 09:48:34 PM,10/27/2014 09:49:39 PM,10/27/2014 09:51:11 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Fire,10/27/2014 09:58:49 PM,200 Block of TOWNSEND ST,San Francisco,94107,B03,8,2224,3,3,3,false,Alarm,1,CHIEF,1,3,6,South of Market,"(37.778142703314, -122.393745741982)",143003607-B03 -160971964,KM13,16038418,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:48:35 PM,04/06/2016 12:49:27 PM,04/06/2016 12:50:02 PM,04/06/2016 12:50:43 PM,04/06/2016 12:59:25 PM,04/06/2016 01:24:58 PM,04/06/2016 01:44:24 PM,Code 2 Transport,04/06/2016 02:18:50 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160971964-KM13 -152604158,E31,15099574,Medical Incident,09/17/2015,09/17/2015,09/17/2015 10:49:53 PM,09/17/2015 10:52:01 PM,09/17/2015 10:52:11 PM,09/17/2015 10:53:22 PM,09/17/2015 10:55:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/17/2015 11:08:14 PM,400 Block of 7TH AVE,San Francisco,94118,B07,31,7131,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7800072533778, -122.465212678125)",152604158-E31 -141250392,E01,14042516,Medical Incident,05/05/2014,05/05/2014,05/05/2014 08:45:17 PM,05/05/2014 08:46:33 PM,05/05/2014 08:51:46 PM,05/05/2014 08:56:53 PM,05/05/2014 08:59:41 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 09:11:03 PM,400 Block of TURK ST,SAN FRANCISCO,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",141250392-E01 -160941624,50,16037247,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:56:08 AM,04/03/2016 11:58:04 AM,04/03/2016 11:58:24 AM,04/03/2016 11:58:30 AM,04/03/2016 12:05:10 PM,04/03/2016 12:21:09 PM,04/03/2016 12:29:52 PM,Code 2 Transport,04/03/2016 01:12:20 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160941624-50 -152662360,E36,15101916,Medical Incident,09/23/2015,09/23/2015,09/23/2015 03:03:17 PM,09/23/2015 03:04:29 PM,09/23/2015 03:04:55 PM,09/23/2015 03:08:18 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Gone on Arrival,09/23/2015 03:12:36 PM,SOUTH VAN NESS AV/MISSION ST,San Francisco,94103,B02,36,5117,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",152662360-E36 -142603429,E05,14091022,Structure Fire,09/17/2014,09/17/2014,09/17/2014 08:38:32 PM,09/17/2014 08:39:13 PM,09/17/2014 08:39:43 PM,09/17/2014 08:40:27 PM,09/17/2014 08:42:01 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 08:45:15 PM,1300 Block of GOUGH ST,San Francisco,94109,B04,3,3256,3,3,3,true,Alarm,1,ENGINE,3,4,5,Japantown,"(37.7857569605828, -122.424841094899)",142603429-E05 -142702385,E17,14094748,Medical Incident,09/27/2014,09/27/2014,09/27/2014 03:33:28 PM,09/27/2014 03:33:47 PM,09/27/2014 03:34:08 PM,09/27/2014 03:36:07 PM,09/27/2014 03:38:38 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 03:40:06 PM,3RD ST/PALOU AV,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",142702385-E17 -142353413,KM07,14081848,Medical Incident,08/23/2014,08/23/2014,08/23/2014 09:03:18 PM,08/23/2014 09:04:20 PM,08/23/2014 09:04:57 PM,08/23/2014 09:05:41 PM,08/23/2014 09:13:48 PM,08/23/2014 09:24:47 PM,08/23/2014 09:32:39 PM,Code 2 Transport,08/23/2014 09:59:48 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142353413-KM07 -153073798,E21,15118153,Medical Incident,11/03/2015,11/03/2015,11/03/2015 08:38:25 PM,11/03/2015 08:43:04 PM,11/03/2015 08:43:09 PM,11/03/2015 08:44:05 PM,11/03/2015 08:46:15 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Code 2 Transport,11/03/2015 08:53:56 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",153073798-E21 -153292617,E32,15126692,Medical Incident,11/25/2015,11/25/2015,11/25/2015 04:06:43 PM,11/25/2015 04:09:26 PM,11/25/2015 04:11:30 PM,11/25/2015 04:12:29 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Code 2 Transport,11/25/2015 04:44:02 PM,300 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5741,2,3,3,false,Non Life-threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.737129343331, -122.417359895828)",153292617-E32 -151451887,56,15055198,Medical Incident,05/25/2015,05/25/2015,05/25/2015 02:48:32 PM,05/25/2015 02:50:36 PM,05/25/2015 02:51:40 PM,05/25/2015 02:52:15 PM,05/25/2015 03:07:21 PM,05/25/2015 03:17:34 PM,05/25/2015 03:34:11 PM,Code 2 Transport,05/25/2015 04:17:10 PM,27TH ST/GUERRERO ST,San Francisco,94110,B06,11,5551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7471719168985, -122.422383537284)",151451887-56 -151171199,B10,15044159,Alarms,04/27/2015,04/27/2015,04/27/2015 10:13:21 AM,04/27/2015 10:14:37 AM,04/27/2015 10:14:50 AM,04/27/2015 10:16:00 AM,04/27/2015 10:25:52 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 10:25:57 AM,1300 Block of KANSAS ST,San Francisco,94107,B10,37,2622,3,3,3,false,Alarm,1,CHIEF,3,10,10,Potrero Hill,"(37.7526024925455, -122.402306414737)",151171199-B10 -160930528,AM24,16036722,Medical Incident,04/02/2016,04/01/2016,04/02/2016 05:00:37 AM,04/02/2016 05:01:15 AM,04/02/2016 05:02:08 AM,04/02/2016 05:03:50 AM,04/02/2016 05:08:46 AM,04/02/2016 05:27:58 AM,04/02/2016 05:44:46 AM,Code 2 Transport,04/02/2016 06:22:17 AM,1700 Block of 41ST AVE,San Francisco,94122,B08,18,7633,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.754123912378, -122.500178002095)",160930528-AM24 -141700581,E11,14058597,Medical Incident,06/19/2014,06/18/2014,06/19/2014 07:30:58 AM,06/19/2014 07:32:39 AM,06/19/2014 07:33:04 AM,06/19/2014 07:34:26 AM,06/19/2014 07:36:52 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Code 2 Transport,06/19/2014 07:56:27 AM,3800 Block of 23RD ST,San Francisco,94114,B06,11,5514,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7531208955209, -122.429515744116)",141700581-E11 -141292256,AM02,14043938,Medical Incident,05/09/2014,05/09/2014,05/09/2014 03:19:16 PM,05/09/2014 03:20:09 PM,05/09/2014 03:21:15 PM,05/09/2014 03:21:52 PM,05/09/2014 03:26:04 PM,05/09/2014 03:33:06 PM,05/09/2014 03:55:27 PM,Code 2 Transport,05/09/2014 04:19:01 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7563716216308, -122.416574134534)",141292256-AM02 -150992938,E17,15037580,Medical Incident,04/09/2015,04/09/2015,04/09/2015 07:08:29 PM,04/09/2015 07:13:18 PM,04/09/2015 07:13:31 PM,04/09/2015 07:14:50 PM,04/09/2015 07:19:04 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Patient Declined Transport,04/09/2015 07:41:49 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",150992938-E17 -160993980,AM16,16039523,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 11:10:31 PM,04/08/2016 11:10:31 PM,04/08/2016 11:10:47 PM,04/08/2016 11:11:18 PM,04/08/2016 11:14:57 PM,04/08/2016 11:35:01 PM,04/08/2016 11:35:03 PM,Code 2 Transport,04/08/2016 11:52:36 PM,CESAR CHAVEZ ST/VALENCIA ST,San Francisco,94110,B06,11,555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7481252844229, -122.420278831044)",160993980-AM16 -160990841,AM08,16039222,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:51:43 AM,04/08/2016 08:53:45 AM,04/08/2016 08:54:32 AM,04/08/2016 08:54:32 AM,04/08/2016 09:07:02 AM,04/08/2016 09:27:22 AM,04/08/2016 09:46:35 AM,Code 2 Transport,04/08/2016 10:23:24 AM,800 Block of MISSION ST,San Francisco,94103,B03,1,2213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7842816168857, -122.404614647152)",160990841-AM08 -160981101,59,16038834,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:21:13 AM,04/07/2016 09:22:30 AM,04/07/2016 09:24:54 AM,04/07/2016 09:25:24 AM,04/07/2016 09:48:04 AM,04/07/2016 10:33:16 AM,04/07/2016 10:44:27 AM,Code 2 Transport,04/07/2016 11:22:13 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160981101-59 -160950373,53,16037512,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:11:29 AM,04/04/2016 05:12:39 AM,04/04/2016 05:12:58 AM,04/04/2016 05:13:07 AM,04/04/2016 05:16:44 AM,04/04/2016 05:30:22 AM,04/04/2016 05:40:00 AM,Code 2 Transport,04/04/2016 06:27:34 AM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",160950373-53 -151121229,56,15042274,Medical Incident,04/22/2015,04/22/2015,04/22/2015 10:07:56 AM,04/22/2015 10:09:37 AM,04/22/2015 10:10:04 AM,04/22/2015 10:11:04 AM,04/22/2015 10:21:59 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,No Merit,04/22/2015 10:25:16 AM,1100 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",151121229-56 -161003039,72,16039926,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:37:59 PM,04/09/2016 08:37:59 PM,04/09/2016 08:38:42 PM,04/09/2016 08:41:53 PM,04/09/2016 08:43:56 PM,04/09/2016 09:12:36 PM,04/09/2016 09:23:08 PM,Code 2 Transport,04/09/2016 10:01:22 PM,MASONIC AV/GEARY BL,San Francisco,94118,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",161003039-72 -153091691,D2,15118728,Structure Fire,11/05/2015,11/05/2015,11/05/2015 12:06:38 PM,11/05/2015 12:07:17 PM,11/05/2015 12:07:23 PM,11/05/2015 12:07:39 PM,11/05/2015 12:14:58 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Fire,11/05/2015 12:19:25 PM,1600 Block of ANZA ST,San Francisco,94118,B07,31,7131,3,3,3,false,Alarm,1,CHIEF,5,7,1,Inner Richmond,"(37.7790730953134, -122.465753308972)",153091691-D2 -141240067,E34,14041926,Medical Incident,05/04/2014,05/03/2014,05/04/2014 05:24:27 AM,05/04/2014 05:26:52 AM,05/04/2014 05:27:00 AM,05/04/2014 05:28:21 AM,05/04/2014 05:31:18 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Code 2 Transport,05/04/2014 05:39:54 AM,500 Block of POINT LOBOS AVE,SAN FRANCISCO,94121,B07,34,7313,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7798321975251, -122.508894113463)",141240067-E34 -150022666,64,15000831,Medical Incident,01/02/2015,01/02/2015,01/02/2015 07:02:42 PM,01/02/2015 07:04:08 PM,01/02/2015 07:04:40 PM,01/02/2015 07:05:02 PM,01/02/2015 07:14:53 PM,01/02/2015 07:38:55 PM,01/02/2015 08:04:36 PM,Code 2 Transport,01/02/2015 08:41:22 PM,1900 Block of 14TH AVE,San Francisco,94116,B08,40,7368,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.751629099333, -122.47047025628)",150022666-64 -143361842,E37,14119127,Structure Fire,12/02/2014,12/02/2014,12/02/2014 02:17:33 PM,12/02/2014 02:18:22 PM,12/02/2014 02:19:13 PM,12/02/2014 02:20:19 PM,12/02/2014 02:22:43 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,Fire,12/02/2014 02:27:26 PM,2900 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5621,3,3,3,false,Alarm,1,ENGINE,4,6,9,Bernal Heights,"(37.7482373940092, -122.4091747167)",143361842-E37 -160992660,88,16039393,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:00:11 PM,04/08/2016 05:02:51 PM,04/08/2016 05:03:03 PM,04/08/2016 05:03:12 PM,04/08/2016 05:16:00 PM,04/08/2016 05:27:59 PM,04/08/2016 05:52:53 PM,Code 2 Transport,04/08/2016 06:23:47 PM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",160992660-88 -153232365,64,15124322,Medical Incident,11/19/2015,11/19/2015,11/19/2015 03:00:17 PM,11/19/2015 03:02:35 PM,11/19/2015 03:03:04 PM,11/19/2015 03:03:14 PM,11/19/2015 03:25:46 PM,11/19/2015 03:34:31 PM,11/19/2015 03:51:53 PM,Code 2 Transport,11/19/2015 04:26:12 PM,201-C TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.78253867476, -122.412386379783)",153232365-64 -160973318,AM16,16038569,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:35:48 PM,04/06/2016 05:35:48 PM,04/06/2016 05:36:17 PM,04/06/2016 05:37:43 PM,04/06/2016 05:51:24 PM,04/06/2016 05:59:17 PM,04/06/2016 06:39:17 PM,Code 2 Transport,04/06/2016 07:15:38 PM,CLAY ST/DAVIS ST,San Francisco,94111,B01,13,1133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7953129409013, -122.397974750623)",160973318-AM16 -143442123,KM11,14122356,Medical Incident,12/10/2014,12/10/2014,12/10/2014 02:18:47 PM,12/10/2014 02:20:32 PM,12/10/2014 02:22:26 PM,12/10/2014 02:23:09 PM,12/10/2014 02:47:38 PM,12/10/2014 02:54:49 PM,12/10/2014 03:15:26 PM,Code 2 Transport,12/10/2014 03:41:49 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",143442123-KM11 -151600293,E03,15061010,Medical Incident,06/09/2015,06/08/2015,06/09/2015 04:09:37 AM,06/09/2015 04:11:57 AM,06/09/2015 04:12:08 AM,06/09/2015 04:14:24 AM,06/09/2015 04:17:48 AM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Code 2 Transport,06/09/2015 04:20:40 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",151600293-E03 -152482993,68,15094783,Medical Incident,09/05/2015,09/05/2015,09/05/2015 05:47:38 PM,09/05/2015 05:47:38 PM,09/05/2015 05:49:11 PM,09/05/2015 05:49:30 PM,09/05/2015 06:00:07 PM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Unable to Locate,09/05/2015 06:14:31 PM,BUSH ST/FRANKLIN ST,San Francisco,94109,B04,3,3156,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Western Addition,"(37.7882797328681, -122.423594074468)",152482993-68 -151590205,B01,15060561,Structure Fire,06/08/2015,06/07/2015,06/08/2015 01:56:12 AM,06/08/2015 01:58:44 AM,06/08/2015 01:59:13 AM,06/08/2015 02:00:30 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Fire,06/08/2015 02:04:48 AM,3200 Block of OCTAVIA ST,San Francisco,94123,B04,16,3341,3,3,3,false,Alarm,1,CHIEF,10,4,2,Marina,"(37.8021273515424, -122.429692779866)",151590205-B01 -152282859,E03,15087099,Medical Incident,08/16/2015,08/16/2015,08/16/2015 06:00:52 PM,08/16/2015 06:01:44 PM,08/16/2015 06:04:00 PM,08/16/2015 06:05:47 PM,08/16/2015 06:06:36 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Code 2 Transport,08/16/2015 06:22:19 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",152282859-E03 -160970403,70,16038277,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:17:52 AM,04/06/2016 05:18:32 AM,04/06/2016 05:19:07 AM,04/06/2016 05:19:16 AM,04/06/2016 05:42:59 AM,04/06/2016 05:43:14 AM,04/06/2016 06:22:45 AM,Code 2 Transport,04/06/2016 06:23:15 AM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160970403-70 -150411060,E05,15015905,Medical Incident,02/10/2015,02/10/2015,02/10/2015 09:47:49 AM,02/10/2015 09:50:11 AM,02/10/2015 09:50:22 AM,02/10/2015 09:51:57 AM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/10/2015 09:56:57 AM,0 Block of AVILA ST,San Francisco,94123,B04,16,3661,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Marina,"(37.8007998983639, -122.440340759487)",150411060-E05 -150143569,85,15005722,Medical Incident,01/14/2015,01/14/2015,01/14/2015 09:07:27 PM,01/14/2015 09:08:59 PM,01/14/2015 09:10:01 PM,01/14/2015 09:10:23 PM,01/14/2015 09:19:18 PM,01/14/2015 09:35:45 PM,01/14/2015 09:50:58 PM,Code 2 Transport,01/14/2015 10:12:29 PM,100 Block of 2ND AVE,San Francisco,94118,B07,31,7115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Inner Richmond,"(37.7862053016842, -122.46028712472)",150143569-85 -141582810,D2,14054554,Structure Fire,06/07/2014,06/07/2014,06/07/2014 07:25:36 PM,06/07/2014 07:26:56 PM,06/07/2014 07:27:52 PM,06/07/2014 07:28:36 PM,06/07/2014 07:30:42 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 07:35:25 PM,GEARY BL/SCOTT ST,San Francisco,94115,B04,5,3645,3,3,3,false,Alarm,1,CHIEF,5,5,5,Western Addition,"(37.7837176369493, -122.437847942301)",141582810-D2 -151420056,E02,15053806,Medical Incident,05/22/2015,05/21/2015,05/22/2015 12:24:31 AM,05/22/2015 12:27:06 AM,05/22/2015 12:27:19 AM,05/22/2015 12:28:47 AM,05/22/2015 12:30:48 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,No Merit,05/22/2015 12:43:17 AM,2000 Block of POLK ST,San Francisco,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",151420056-E02 -141490002,85,14051023,Medical Incident,05/29/2014,05/28/2014,05/29/2014 12:00:51 AM,05/29/2014 12:02:30 AM,05/29/2014 12:04:26 AM,05/29/2014 12:05:02 AM,05/29/2014 12:11:56 AM,05/29/2014 12:28:05 AM,05/29/2014 01:00:24 AM,Code 2 Transport,05/29/2014 01:29:06 AM,BATTERY ST/PINE ST,San Francisco,94111,B01,13,1163,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7922579471835, -122.399763355201)",141490002-85 -150692818,E10,15026448,Structure Fire,03/10/2015,03/10/2015,03/10/2015 05:55:00 PM,03/10/2015 05:56:19 PM,03/10/2015 05:57:17 PM,03/10/2015 05:58:20 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 05:58:37 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,Alarm,1,ENGINE,11,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",150692818-E10 -142422014,E20,14084256,Traffic Collision,08/30/2014,08/30/2014,08/30/2014 03:06:12 PM,08/30/2014 03:07:39 PM,08/30/2014 03:09:34 PM,08/30/2014 03:12:55 PM,08/30/2014 03:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 03:28:47 PM,LAGUNA HONDA BL/WOODSIDE AV,San Francisco,94127,B08,20,8641,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7467554297514, -122.458728516657)",142422014-E20 -160982565,KM13,16038996,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:44:33 PM,04/07/2016 03:47:13 PM,04/07/2016 03:47:56 PM,04/07/2016 03:48:35 PM,04/07/2016 03:57:02 PM,04/07/2016 04:33:46 PM,04/07/2016 04:34:37 PM,Code 2 Transport,04/07/2016 05:40:51 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160982565-KM13 -151953129,E36,15074509,Medical Incident,07/14/2015,07/14/2015,07/14/2015 06:57:44 PM,07/14/2015 06:58:49 PM,07/14/2015 07:00:00 PM,07/14/2015 07:01:48 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,Code 2 Transport,07/14/2015 07:51:12 PM,MARKET ST/LARKIN ST,San Francisco,94103,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7774938436091, -122.41629170277)",151953129-E36 -160973887,66,16038637,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:39:46 PM,04/06/2016 07:40:47 PM,04/06/2016 07:41:21 PM,04/06/2016 07:41:34 PM,04/06/2016 08:06:15 PM,04/06/2016 08:18:50 PM,04/06/2016 08:50:33 PM,Code 2 Transport,04/06/2016 09:17:01 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160973887-66 -160921955,55,16036462,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:09:30 PM,04/01/2016 02:10:42 PM,04/01/2016 02:11:20 PM,04/01/2016 02:11:36 PM,04/01/2016 02:19:23 PM,04/01/2016 02:40:14 PM,04/01/2016 02:58:15 PM,Code 2 Transport,04/01/2016 03:24:28 PM,4200 Block of JUDAH ST,San Francisco,94122,B08,23,7723,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7602986009431, -122.507529535954)",160921955-55 -151213641,68,15046058,Medical Incident,05/01/2015,05/01/2015,05/01/2015 09:33:59 PM,05/01/2015 09:35:22 PM,05/01/2015 09:35:34 PM,05/01/2015 09:35:41 PM,05/01/2015 09:52:30 PM,05/01/2015 09:58:52 PM,05/01/2015 10:21:53 PM,Code 2 Transport,05/01/2015 10:45:16 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",151213641-68 -143191002,E32,14112917,Gas Leak (Natural and LP Gases),11/15/2014,11/15/2014,11/15/2014 09:26:49 AM,11/15/2014 09:26:49 AM,11/15/2014 09:27:31 AM,11/15/2014 09:28:06 AM,11/15/2014 09:42:46 AM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Fire,11/15/2014 09:48:43 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,false,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7330103867416, -122.416517427405)",143191002-E32 -160972785,54,16038504,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:49:09 PM,04/06/2016 03:51:23 PM,04/06/2016 03:51:42 PM,04/06/2016 03:52:17 PM,04/06/2016 04:05:33 PM,04/06/2016 04:16:49 PM,04/06/2016 04:57:06 PM,Code 2 Transport,04/06/2016 05:06:55 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160972785-54 -142553206,E13,14089162,Structure Fire,09/12/2014,09/12/2014,09/12/2014 07:51:03 PM,09/12/2014 07:51:03 PM,09/12/2014 07:51:12 PM,09/12/2014 07:52:23 PM,09/12/2014 07:54:29 PM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Fire,09/12/2014 07:54:51 PM,GRANT AV/CLAY ST,San Francisco,94108,B01,13,1313,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7942636257508, -122.406304988112)",142553206-E13 -151894277,E41,15072377,Structure Fire,07/08/2015,07/08/2015,07/08/2015 11:46:31 PM,07/08/2015 11:46:31 PM,07/08/2015 11:46:51 PM,07/08/2015 11:48:06 PM,07/08/2015 11:50:06 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Fire,07/08/2015 11:53:19 PM,HYDE ST/PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",151894277-E41 -151623387,62,15062052,Medical Incident,06/11/2015,06/11/2015,06/11/2015 08:01:06 PM,06/11/2015 08:01:34 PM,06/11/2015 08:02:23 PM,06/11/2015 08:02:44 PM,06/11/2015 08:06:57 PM,06/11/2015 08:20:57 PM,06/11/2015 08:47:19 PM,Code 2 Transport,06/11/2015 09:31:35 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",151623387-62 -142910709,AM02,14102540,Medical Incident,10/18/2014,10/17/2014,10/18/2014 06:39:45 AM,10/18/2014 06:41:24 AM,10/18/2014 06:41:41 AM,10/18/2014 06:42:15 AM,10/18/2014 06:54:40 AM,10/18/2014 07:15:14 AM,10/18/2014 07:44:15 AM,Code 2 Transport,10/18/2014 08:02:28 AM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",142910709-AM02 -151822099,AM02,15069497,Medical Incident,07/01/2015,07/01/2015,07/01/2015 02:10:19 PM,07/01/2015 02:11:48 PM,07/01/2015 02:12:40 PM,07/01/2015 02:13:19 PM,07/01/2015 02:21:52 PM,07/01/2015 02:48:38 PM,07/01/2015 03:04:04 PM,Code 2 Transport,07/01/2015 03:40:27 PM,900 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4353,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7699856148425, -122.44323710704)",151822099-AM02 -160930030,70,16036670,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:10:57 AM,04/02/2016 12:11:59 AM,04/02/2016 12:12:20 AM,04/02/2016 12:12:29 AM,04/02/2016 12:15:50 AM,04/02/2016 12:30:22 AM,04/02/2016 12:54:22 AM,Code 2 Transport,04/02/2016 01:26:17 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160930030-70 -142681141,AM14,14093870,Medical Incident,09/25/2014,09/25/2014,09/25/2014 10:29:31 AM,09/25/2014 10:30:50 AM,09/25/2014 10:32:04 AM,09/25/2014 10:32:53 AM,09/25/2014 10:41:06 AM,09/25/2014 10:45:48 AM,04/25/2016 01:14:54 PM,Code 2 Transport,09/25/2014 11:45:57 AM,2800 Block of 24TH ST,,94110,B06,9,5531,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7528787651491, -122.408664686116)",142681141-AM14 -142152114,72,14074624,Medical Incident,08/03/2014,08/03/2014,08/03/2014 04:53:15 PM,08/03/2014 04:53:43 PM,08/03/2014 04:54:08 PM,08/03/2014 04:54:40 PM,08/03/2014 05:07:56 PM,08/03/2014 05:23:51 PM,08/03/2014 05:51:14 PM,Code 2 Transport,08/03/2014 06:08:16 PM,700 Block of BRANNAN ST,San Francisco,94103,B03,8,2276,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7732232142847, -122.402889298062)",142152114-72 -142022960,89,14070012,Structure Fire,07/21/2014,07/21/2014,07/21/2014 07:33:01 PM,07/21/2014 07:33:01 PM,07/21/2014 07:36:26 PM,07/21/2014 07:36:32 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Fire,07/21/2014 07:38:34 PM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Alarm,1,MEDIC,3,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",142022960-89 -143342991,E41,14118505,Medical Incident,11/30/2014,11/30/2014,11/30/2014 08:15:00 PM,11/30/2014 08:16:44 PM,11/30/2014 08:16:55 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,Patient Declined Transport,11/30/2014 08:17:59 PM,1200 Block of SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,false,Non Life-threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7877066353114, -122.420948027457)",143342991-E41 -150840605,B01,15031959,Structure Fire,03/25/2015,03/24/2015,03/25/2015 07:31:59 AM,03/25/2015 07:33:44 AM,03/25/2015 07:34:08 AM,03/25/2015 07:35:37 AM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,Fire,03/25/2015 07:38:48 AM,1000 Block of HYDE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Alarm,1,CHIEF,6,4,3,Nob Hill,"(37.7905178178349, -122.417229719258)",150840605-B01 -143462636,T16,14123444,Structure Fire,12/12/2014,12/12/2014,12/12/2014 04:55:26 PM,12/12/2014 04:55:26 PM,12/12/2014 04:55:49 PM,12/12/2014 04:57:51 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Fire,12/12/2014 05:00:42 PM,POLK ST/GREENWICH ST,San Francisco,94109,B01,16,3132,3,3,3,false,Alarm,1,TRUCK,2,4,2,Russian Hill,"(37.8006241524646, -122.422713159969)",143462636-T16 -142113761,E33,14073322,Medical Incident,07/30/2014,07/30/2014,07/30/2014 10:48:07 PM,07/30/2014 10:49:36 PM,07/30/2014 10:50:31 PM,07/30/2014 10:50:57 PM,07/30/2014 10:52:00 PM,04/25/2016 01:15:56 PM,04/25/2016 01:15:56 PM,Code 2 Transport,07/30/2014 11:05:58 PM,0 Block of SADOWA ST,San Francisco,94112,B09,33,8371,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7122702602925, -122.455354635173)",142113761-E33 -142160552,87,14074799,Medical Incident,08/04/2014,08/03/2014,08/04/2014 07:06:18 AM,08/04/2014 07:07:01 AM,08/04/2014 07:49:56 AM,08/04/2014 07:50:10 AM,08/04/2014 08:07:01 AM,08/04/2014 08:15:11 AM,08/04/2014 08:39:55 AM,Code 2 Transport,08/04/2014 08:53:49 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142160552-87 -160953402,63,16037767,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:24:13 PM,04/04/2016 07:24:32 PM,04/04/2016 07:24:51 PM,04/04/2016 07:25:29 PM,04/04/2016 07:28:06 PM,04/04/2016 08:21:41 PM,04/04/2016 08:46:30 PM,Code 2 Transport,04/04/2016 09:12:55 PM,200 Block of DORLAND ST,San Francisco,94114,B02,6,5421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7620293658927, -122.429546492088)",160953402-63 -150992928,E29,15037578,Medical Incident,04/09/2015,04/09/2015,04/09/2015 07:07:18 PM,04/09/2015 07:09:34 PM,04/09/2015 07:11:54 PM,04/09/2015 07:12:54 PM,04/09/2015 07:15:17 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Code 2 Transport,04/09/2015 07:23:55 PM,BRYANT ST/RINCON ST,San Francisco,94107,B03,35,2135,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7842053064379, -122.392118767755)",150992928-E29 -141130101,E07,14038058,Medical Incident,04/23/2014,04/23/2014,04/23/2014 09:04:05 AM,04/23/2014 09:08:49 AM,04/23/2014 09:12:54 AM,04/23/2014 09:12:54 AM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Code 2 Transport,04/23/2014 09:17:23 AM,16TH ST/MISSION ST,SAN FRANCISCO,94103,B02,7,5236,,2,2,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7650513381945, -122.419668973861)",141130101-E07 -141490001,E44,14051022,Medical Incident,05/29/2014,05/28/2014,05/29/2014 12:01:16 AM,05/29/2014 12:02:22 AM,05/29/2014 12:02:46 AM,05/29/2014 12:04:30 AM,05/29/2014 12:07:56 AM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Other,05/29/2014 12:12:22 AM,100 Block of LELAND AVE,San Francisco,94134,B09,44,6256,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",141490001-E44 -150081727,KM12,15003126,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:34:35 PM,01/08/2015 12:35:07 PM,01/08/2015 12:36:10 PM,01/08/2015 12:37:50 PM,01/08/2015 12:40:12 PM,01/08/2015 12:54:30 PM,01/08/2015 01:12:26 PM,Code 2 Transport,01/08/2015 01:43:55 PM,3700 Block of 18TH ST,San Francisco,94114,B06,6,541,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",150081727-KM12 -142341774,KM06,14081326,Medical Incident,08/22/2014,08/22/2014,08/22/2014 01:00:39 PM,08/22/2014 01:02:13 PM,08/22/2014 01:02:23 PM,08/22/2014 01:02:50 PM,08/22/2014 01:24:19 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Patient Declined Transport,08/22/2014 01:47:22 PM,0 Block of 2ND ST,San Francisco,94105,B03,1,2144,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7886675869095, -122.400529034534)",142341774-KM06 -151813415,E51,15069272,Medical Incident,06/30/2015,06/30/2015,06/30/2015 09:13:02 PM,06/30/2015 09:15:18 PM,06/30/2015 09:15:44 PM,06/30/2015 09:16:56 PM,06/30/2015 09:18:19 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,Code 2 Transport,06/30/2015 09:31:49 PM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",151813415-E51 -143240804,E03,14114629,Medical Incident,11/20/2014,11/20/2014,11/20/2014 08:46:57 AM,11/20/2014 08:46:57 AM,11/20/2014 08:47:19 AM,11/20/2014 08:47:49 AM,11/20/2014 08:49:14 AM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Code 2 Transport,11/20/2014 08:52:12 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",143240804-E03 -160980668,72,16038796,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:07:18 AM,04/07/2016 07:08:07 AM,04/07/2016 07:09:00 AM,04/07/2016 07:09:11 AM,04/07/2016 07:16:41 AM,04/07/2016 07:37:20 AM,04/07/2016 08:20:56 AM,Code 2 Transport,04/07/2016 08:48:30 AM,UNION ST/VAN NESS AV,San Francisco,94109,B04,41,3131,3,3,3,true,Non Life-threatening,1,MEDIC,3,4,2,Russian Hill,"(37.7985524526538, -122.423982146754)",160980668-72 -143621518,T09,14129510,Alarms,12/28/2014,12/28/2014,12/28/2014 12:52:45 PM,12/28/2014 12:54:31 PM,12/28/2014 12:54:47 PM,12/28/2014 12:56:55 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Fire,12/28/2014 01:26:21 PM,3400 Block of 3RD ST,San Francisco,94124,B10,25,6437,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7456103513279, -122.387266109164)",143621518-T09 -142764032,E13,14097156,Alarms,10/03/2014,10/03/2014,10/03/2014 10:11:40 PM,10/03/2014 10:14:05 PM,10/03/2014 10:17:37 PM,10/03/2014 10:19:10 PM,10/03/2014 10:20:39 PM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Fire,10/03/2014 10:24:16 PM,400 Block of PACIFIC AVE,San Francisco,94133,B01,13,1212,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.7975049363143, -122.402474789742)",142764032-E13 -142591742,KM10,14090482,Medical Incident,09/16/2014,09/16/2014,09/16/2014 01:02:35 PM,09/16/2014 01:04:24 PM,09/16/2014 01:05:44 PM,09/16/2014 01:07:01 PM,09/16/2014 01:17:26 PM,09/16/2014 01:45:42 PM,09/16/2014 01:50:55 PM,Code 2 Transport,09/16/2014 02:34:54 PM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",142591742-KM10 -150301718,T07,15011569,Structure Fire,01/30/2015,01/30/2015,01/30/2015 12:21:53 PM,01/30/2015 12:22:29 PM,01/30/2015 12:22:55 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Fire,01/30/2015 12:25:34 PM,200 Block of DIAMOND ST,San Francisco,94114,B06,24,5442,3,3,3,false,Alarm,1,TRUCK,11,6,8,Castro/Upper Market,"(37.7583612138452, -122.436893464387)",150301718-T07 -151700022,E13,15064818,Alarms,06/19/2015,06/18/2015,06/19/2015 12:06:58 AM,06/19/2015 12:08:08 AM,06/19/2015 12:09:11 AM,06/19/2015 12:11:13 AM,06/19/2015 12:14:13 AM,04/25/2016 01:09:56 PM,04/25/2016 01:09:56 PM,Fire,06/19/2015 01:10:11 AM,100 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7905126810084, -122.402216710445)",151700022-E13 -151713186,58,15065485,Medical Incident,06/20/2015,06/20/2015,06/20/2015 08:46:46 PM,06/20/2015 08:46:46 PM,06/20/2015 08:47:14 PM,06/20/2015 08:47:25 PM,06/20/2015 08:53:05 PM,06/20/2015 09:04:23 PM,06/20/2015 09:34:27 PM,Code 3 Transport,06/20/2015 10:15:32 PM,2700 Block of FRANKLIN ST,San Francisco,94123,B04,16,3234,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.7997322773361, -122.425975742414)",151713186-58 -141673617,T03,14057787,Alarms,06/16/2014,06/16/2014,06/16/2014 11:31:18 PM,06/16/2014 11:32:51 PM,06/16/2014 11:32:56 PM,06/16/2014 11:34:16 PM,06/16/2014 11:36:25 PM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/16/2014 11:40:57 PM,700 Block of SUTTER ST,San Francisco,94109,B01,3,1463,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7887571187597, -122.412724440796)",141673617-T03 -160951444,85,16037597,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:30:42 AM,04/04/2016 11:30:55 AM,04/04/2016 11:32:22 AM,04/04/2016 11:36:15 AM,04/04/2016 11:45:31 AM,04/04/2016 12:15:42 PM,04/04/2016 12:28:22 PM,Code 2 Transport,04/04/2016 01:08:24 PM,1200 Block of LA SALLE AVE,San Francisco,94124,B10,17,668,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",160951444-85 -152932784,79,15112644,Medical Incident,10/20/2015,10/20/2015,10/20/2015 04:39:05 PM,10/20/2015 04:39:05 PM,10/20/2015 04:39:05 PM,10/20/2015 04:39:05 PM,10/20/2015 04:39:05 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Code 2 Transport,10/20/2015 04:39:05 PM,STANYAN ST/HAIGHT ST,San Francisco,94117,B99,12,4553,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",152932784-79 -151231378,KM08,15046637,Medical Incident,05/03/2015,05/03/2015,05/03/2015 11:30:59 AM,05/03/2015 11:31:38 AM,05/03/2015 11:32:14 AM,05/03/2015 11:34:29 AM,05/03/2015 11:34:29 AM,05/03/2015 11:42:52 AM,05/03/2015 12:23:52 PM,Code 2 Transport,05/03/2015 12:31:11 PM,1300 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",151231378-KM08 -142971366,E34,14104735,Medical Incident,10/24/2014,10/24/2014,10/24/2014 11:12:30 AM,10/24/2014 11:13:51 AM,10/24/2014 11:13:59 AM,10/24/2014 11:14:41 AM,10/24/2014 11:17:30 AM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Patient Declined Transport,10/24/2014 11:23:32 AM,29TH AV/CALIFORNIA ST,San Francisco,94121,B07,14,7227,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7836886123731, -122.489289781128)",142971366-E34 -142630866,E36,14091906,Medical Incident,09/20/2014,09/20/2014,09/20/2014 08:05:51 AM,09/20/2014 08:06:35 AM,09/20/2014 08:12:30 AM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Code 2 Transport,09/20/2014 08:15:00 AM,9TH ST/BRYANT ST,San Francisco,94103,B03,29,2333,2,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7712907918294, -122.408531083232)",142630866-E36 -160970037,64,16038242,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:13:46 AM,04/06/2016 12:14:54 AM,04/06/2016 12:15:22 AM,04/06/2016 12:16:16 AM,04/06/2016 12:23:03 AM,04/06/2016 12:35:06 AM,04/06/2016 12:46:45 AM,Code 2 Transport,04/06/2016 01:09:58 AM,3RD ST/MARKET ST,San Francisco,94103,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",160970037-64 -151353107,E44,15051400,Medical Incident,05/15/2015,05/15/2015,05/15/2015 06:30:50 PM,05/15/2015 06:33:02 PM,05/15/2015 06:33:53 PM,05/15/2015 06:35:01 PM,05/15/2015 06:41:35 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Fire,05/15/2015 06:53:23 PM,400 Block of RAYMOND AVE,San Francisco,94134,B09,44,628,2,2,2,false,Non Life-threatening,1,ENGINE,2,9,10,McLaren Park,"(37.7147287919997, -122.412436034218)",151353107-E44 -151591579,KM04,15060705,Medical Incident,06/08/2015,06/08/2015,06/08/2015 11:49:40 AM,06/08/2015 11:50:08 AM,06/08/2015 11:56:53 AM,06/08/2015 12:00:57 PM,06/08/2015 12:22:37 PM,04/25/2016 01:10:07 PM,04/25/2016 01:10:07 PM,Patient Declined Transport,06/08/2015 12:47:07 PM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",151591579-KM04 -160923367,60,16036596,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:20:38 PM,04/01/2016 08:20:38 PM,04/01/2016 08:21:05 PM,04/01/2016 08:21:19 PM,04/01/2016 08:34:22 PM,04/01/2016 08:52:19 PM,04/01/2016 09:04:22 PM,Code 2 Transport,04/01/2016 09:38:32 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160923367-60 -160960326,72,16037878,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:19:54 AM,04/05/2016 04:21:54 AM,04/05/2016 04:22:05 AM,04/05/2016 04:22:21 AM,04/05/2016 04:28:53 AM,04/05/2016 04:41:37 AM,04/05/2016 04:48:28 AM,Code 3 Transport,04/05/2016 05:48:04 AM,1600 Block of YOSEMITE AVE,San Francisco,94124,B10,17,6546,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7273371737416, -122.392411239852)",160960326-72 -160993727,AM16,16039496,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:50:57 PM,04/08/2016 09:50:57 PM,04/08/2016 09:52:14 PM,04/08/2016 09:53:21 PM,04/08/2016 10:04:42 PM,04/08/2016 10:16:52 PM,04/08/2016 10:41:41 PM,Code 2 Transport,04/08/2016 11:09:40 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160993727-AM16 -142632769,71,14092099,Medical Incident,09/20/2014,09/20/2014,09/20/2014 06:10:53 PM,09/20/2014 06:10:53 PM,09/20/2014 06:12:56 PM,09/20/2014 06:12:56 PM,09/20/2014 06:20:21 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Against Medical Advice,09/20/2014 07:14:20 PM,1100 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7517406897648, -122.396529537539)",142632769-71 -150090405,AM20,15003431,Medical Incident,01/09/2015,01/08/2015,01/09/2015 04:44:29 AM,01/09/2015 04:46:40 AM,01/09/2015 04:48:06 AM,01/09/2015 04:48:44 AM,01/09/2015 04:50:43 AM,01/09/2015 05:02:55 AM,01/09/2015 05:22:07 AM,Code 2 Transport,01/09/2015 05:50:18 AM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",150090405-AM20 -142133216,82,14073992,Medical Incident,08/01/2014,08/01/2014,08/01/2014 08:48:48 PM,08/01/2014 08:49:13 PM,08/01/2014 08:51:59 PM,08/01/2014 08:51:59 PM,08/01/2014 08:55:27 PM,08/01/2014 09:12:19 PM,08/01/2014 09:53:59 PM,Code 2 Transport,08/01/2014 10:27:04 PM,CESAR CHAVEZ ST/HARRISON ST,San Francisco,94110,B06,9,5622,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7482982868438, -122.411484131055)",142133216-82 -160991269,KM05,16039263,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:04:20 AM,04/08/2016 11:07:41 AM,04/08/2016 11:08:05 AM,04/08/2016 11:11:22 AM,04/08/2016 11:12:45 AM,04/08/2016 11:56:01 AM,04/08/2016 12:02:18 PM,Code 2 Transport,04/08/2016 12:45:12 PM,2200 Block of HAYES ST,San Francisco,94117,B05,21,4543,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",160991269-KM05 -160960485,55,16037897,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:01:48 AM,04/05/2016 07:03:57 AM,04/05/2016 07:04:14 AM,04/05/2016 07:05:11 AM,04/05/2016 07:08:28 AM,04/05/2016 07:26:18 AM,04/05/2016 07:47:38 AM,Code 2 Transport,04/05/2016 08:20:29 AM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",160960485-55 -151653102,E18,15063277,Medical Incident,06/14/2015,06/14/2015,06/14/2015 09:22:34 PM,06/14/2015 09:24:06 PM,06/14/2015 09:24:17 PM,06/14/2015 09:26:38 PM,06/14/2015 09:29:01 PM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,No Merit,06/14/2015 09:32:19 PM,1600 Block of 29TH AVE,San Francisco,94122,B08,18,7514,3,3,3,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7565620032209, -122.487451554087)",151653102-E18 -160942173,AM08,16037296,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:42:00 PM,04/03/2016 02:44:31 PM,04/03/2016 02:47:42 PM,04/03/2016 02:47:42 PM,04/03/2016 02:49:20 PM,04/03/2016 03:00:01 PM,04/03/2016 03:13:46 PM,Code 2 Transport,04/03/2016 03:42:41 PM,3000 Block of FILLMORE ST,San Francisco,94123,B04,16,3552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7975637588622, -122.435515673585)",160942173-AM08 -160970677,62,16038300,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:39:47 AM,04/06/2016 07:42:26 AM,04/06/2016 07:43:25 AM,04/06/2016 07:43:40 AM,04/06/2016 07:55:29 AM,04/06/2016 08:31:34 AM,04/06/2016 09:12:12 AM,Code 2 Transport,04/06/2016 09:46:06 AM,1000 Block of GILMAN AV,San Francisco,94124,B10,17,6611,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7187222855195, -122.389118324416)",160970677-62 -152361229,70,15089860,Medical Incident,08/24/2015,08/24/2015,08/24/2015 09:55:34 AM,08/24/2015 09:56:26 AM,08/24/2015 09:58:29 AM,08/24/2015 10:00:39 AM,08/24/2015 10:02:51 AM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,Patient Declined Transport,08/24/2015 10:58:17 AM,700 Block of PARNASSUS AVE,San Francisco,94122,B08,12,7326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7624428137898, -122.461350952018)",152361229-70 -151212278,E36,15045916,Structure Fire,05/01/2015,05/01/2015,05/01/2015 02:51:53 PM,05/01/2015 02:52:09 PM,05/01/2015 02:52:21 PM,05/01/2015 02:53:48 PM,05/01/2015 02:53:53 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Fire,05/01/2015 02:54:10 PM,LAGUNA ST/HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7727343110864, -122.425512056036)",151212278-E36 -160962505,86,16038070,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:41:55 PM,04/05/2016 03:42:12 PM,04/05/2016 03:42:36 PM,04/05/2016 03:42:47 PM,04/05/2016 03:52:42 PM,04/05/2016 04:15:37 PM,04/05/2016 04:34:38 PM,Code 2 Transport,04/05/2016 05:20:58 PM,TURK ST/FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",160962505-86 -160932241,KM11,16036917,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:31:34 PM,04/02/2016 03:33:55 PM,04/02/2016 03:34:05 PM,04/02/2016 03:34:44 PM,04/02/2016 03:37:04 PM,04/02/2016 03:44:45 PM,04/02/2016 04:07:53 PM,Code 2 Transport,04/02/2016 04:26:56 PM,MISSION ST/SPEAR ST,San Francisco,94105,B03,35,2111,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7925372164019, -122.394059624933)",160932241-KM11 -151570225,55,15059777,Medical Incident,06/06/2015,06/05/2015,06/06/2015 01:33:54 AM,06/06/2015 01:35:16 AM,06/06/2015 01:35:30 AM,06/06/2015 01:35:38 AM,06/06/2015 01:52:38 AM,06/06/2015 02:10:28 AM,06/06/2015 02:19:32 AM,Code 2 Transport,06/06/2015 03:11:20 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2175,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",151570225-55 -151250200,E06,15047218,Medical Incident,05/05/2015,05/04/2015,05/05/2015 02:27:47 AM,05/05/2015 02:29:33 AM,05/05/2015 02:35:35 AM,05/05/2015 02:35:35 AM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Code 2 Transport,05/05/2015 02:41:04 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,6,8,Castro/Upper Market,"(37.7608670671665, -122.434446928667)",151250200-E06 -152060521,89,15078368,Medical Incident,07/25/2015,07/24/2015,07/25/2015 04:04:22 AM,07/25/2015 04:04:22 AM,07/25/2015 04:05:18 AM,07/25/2015 04:05:35 AM,07/25/2015 04:22:22 AM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Patient Declined Transport,07/25/2015 04:58:05 AM,1200 Block of 3RD ST,San Francisco,94158,B03,8,2231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",152060521-89 -150490838,E02,15018878,Medical Incident,02/18/2015,02/18/2015,02/18/2015 08:30:13 AM,02/18/2015 08:31:20 AM,02/18/2015 08:31:59 AM,02/18/2015 08:33:54 AM,02/18/2015 08:46:22 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Patient Declined Transport,02/18/2015 08:48:50 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",150490838-E02 -160981286,KM10,16038856,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:10:28 AM,04/07/2016 10:11:48 AM,04/07/2016 10:13:47 AM,04/07/2016 10:15:20 AM,04/07/2016 10:33:49 AM,04/07/2016 10:50:51 AM,04/07/2016 11:10:39 AM,Code 2 Transport,04/07/2016 11:45:17 AM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",160981286-KM10 -152210957,54,15084140,Medical Incident,08/09/2015,08/09/2015,08/09/2015 09:00:05 AM,08/09/2015 09:02:16 AM,08/09/2015 09:02:30 AM,08/09/2015 09:02:41 AM,08/09/2015 09:08:10 AM,08/09/2015 09:23:37 AM,08/09/2015 09:35:04 AM,Code 2 Transport,08/09/2015 10:06:29 AM,0 Block of CORDOVA ST,San Francisco,94112,B09,43,6224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7128189051559, -122.436154623588)",152210957-54 -151493335,T01,15056841,Alarms,05/29/2015,05/29/2015,05/29/2015 07:04:43 PM,05/29/2015 07:05:38 PM,05/29/2015 07:06:00 PM,05/29/2015 07:07:58 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,Fire,05/29/2015 07:11:55 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",151493335-T01 -161002419,KM06,16039856,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:19:43 PM,04/09/2016 05:20:28 PM,04/09/2016 05:20:46 PM,04/09/2016 05:21:21 PM,04/09/2016 05:31:00 PM,04/09/2016 05:38:55 PM,04/09/2016 06:15:27 PM,Code 2 Transport,04/09/2016 06:41:10 PM,DORADO TR/OCEAN AV,San Francisco,94112,B09,15,8456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7249497021259, -122.461210546404)",161002419-KM06 -161002334,53,16039842,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:56:29 PM,04/09/2016 04:59:16 PM,04/09/2016 04:59:29 PM,04/09/2016 04:59:36 PM,04/09/2016 05:10:24 PM,04/09/2016 05:26:02 PM,04/09/2016 05:54:16 PM,Code 2 Transport,04/09/2016 06:17:47 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",161002334-53 -141160125,AM12,14039114,Medical Incident,04/26/2014,04/26/2014,04/26/2014 09:38:25 AM,04/26/2014 09:39:06 AM,04/26/2014 09:39:22 AM,04/26/2014 09:39:56 AM,04/26/2014 09:45:46 AM,04/26/2014 09:54:06 AM,04/26/2014 10:01:48 AM,Code 2 Transport,04/26/2014 10:43:41 AM,9TH ST/HOWARD ST,SAN FRANCISCO,94103,B02,36,2335,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",141160125-AM12 -160930628,75,16036732,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:50:42 AM,04/02/2016 06:51:32 AM,04/02/2016 06:51:44 AM,04/02/2016 06:51:52 AM,04/02/2016 06:57:36 AM,04/02/2016 07:06:23 AM,04/02/2016 07:12:20 AM,Code 2 Transport,04/02/2016 08:03:14 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160930628-75 -160922207,85,16036488,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:17:12 PM,04/01/2016 03:19:55 PM,04/01/2016 03:20:18 PM,04/01/2016 03:20:27 PM,04/01/2016 03:30:06 PM,04/01/2016 03:49:15 PM,04/01/2016 04:26:16 PM,Code 2 Transport,04/01/2016 05:14:45 PM,100 Block of NAUTILUS DR,San Francisco,94124,B10,17,6665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.728115531126, -122.372708921939)",160922207-85 -160931930,KM11,16036887,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:55:42 PM,04/02/2016 01:59:19 PM,04/02/2016 02:09:41 PM,04/02/2016 02:10:21 PM,04/02/2016 02:16:06 PM,04/02/2016 02:46:55 PM,04/02/2016 02:55:23 PM,Code 2 Transport,04/02/2016 03:25:43 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160931930-KM11 -160943798,75,16037467,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:48:06 PM,04/03/2016 11:48:58 PM,04/03/2016 11:49:04 PM,04/03/2016 11:49:18 PM,04/03/2016 11:52:50 PM,04/04/2016 12:09:21 AM,04/04/2016 12:28:19 AM,Code 2 Transport,04/04/2016 12:52:34 AM,1600 Block of 25TH AVE,San Francisco,94122,B08,18,7454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7567511438898, -122.483167036761)",160943798-75 -142300817,E43,14079833,Alarms,08/18/2014,08/18/2014,08/18/2014 08:30:29 AM,08/18/2014 08:31:18 AM,08/18/2014 08:32:13 AM,08/18/2014 08:34:13 AM,08/18/2014 08:37:09 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,No Merit,08/18/2014 08:37:15 AM,300 Block of ATHENS ST,San Francisco,94112,B09,43,6155,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7224448653377, -122.427900525777)",142300817-E43 -160970456,88,16038283,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:50:28 AM,04/06/2016 05:53:07 AM,04/06/2016 05:54:08 AM,04/06/2016 05:54:13 AM,04/06/2016 06:01:27 AM,04/06/2016 06:07:26 AM,04/06/2016 06:23:10 AM,Code 2 Transport,04/06/2016 06:51:08 AM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7810688918781, -122.407387172098)",160970456-88 -160950172,53,16037487,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:10:05 AM,04/04/2016 02:10:31 AM,04/04/2016 02:10:52 AM,04/04/2016 02:11:02 AM,04/04/2016 02:15:17 AM,04/04/2016 02:43:05 AM,04/04/2016 02:55:38 AM,Code 2 Transport,04/04/2016 03:32:16 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160950172-53 -143263652,68,14115681,Medical Incident,11/22/2014,11/22/2014,11/22/2014 09:45:03 PM,11/22/2014 09:45:15 PM,11/22/2014 09:46:41 PM,11/22/2014 09:46:48 PM,11/22/2014 09:56:52 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Patient Declined Transport,11/22/2014 10:36:30 PM,0 Block of SANTA FE AVE,San Francisco,94124,B10,42,6363,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7341519140031, -122.400741582809)",143263652-68 -151672112,E41,15063905,Alarms,06/16/2015,06/16/2015,06/16/2015 03:37:42 PM,06/16/2015 03:39:13 PM,06/16/2015 03:42:15 PM,06/16/2015 03:43:11 PM,06/16/2015 03:48:11 PM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Fire,06/16/2015 03:48:31 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",151672112-E41 -160950144,AM22,16037482,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:43:32 AM,04/04/2016 01:43:32 AM,04/04/2016 01:43:59 AM,04/04/2016 01:44:26 AM,04/04/2016 01:45:15 AM,04/04/2016 01:56:51 AM,04/04/2016 02:05:51 AM,Code 2 Transport,04/04/2016 02:43:23 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160950144-AM22 -150502184,62,15019363,Other,02/19/2015,02/19/2015,02/19/2015 03:01:40 PM,02/19/2015 03:02:31 PM,02/19/2015 03:08:46 PM,02/19/2015 03:08:59 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Other,02/19/2015 03:09:09 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,3,3,true,Alarm,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",150502184-62 -150321023,E01,15012293,Medical Incident,02/01/2015,02/01/2015,02/01/2015 09:09:33 AM,02/01/2015 09:09:33 AM,02/01/2015 09:10:31 AM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 09:11:50 AM,MONTGOMERY ST/MARKET ST,San Francisco,94105,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",150321023-E01 -152233130,AM16,15085090,Medical Incident,08/11/2015,08/11/2015,08/11/2015 05:58:27 PM,08/11/2015 06:06:56 PM,08/11/2015 06:07:32 PM,08/11/2015 06:07:54 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Unable to Locate,08/11/2015 06:21:40 PM,ALEMANY BL/PALMETTO AV,San Francisco,94132,B09,33,8412,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,Oceanview/Merced/Ingleside,"(37.7105934401882, -122.469288459018)",152233130-AM16 -150832751,E03,15031799,Medical Incident,03/24/2015,03/24/2015,03/24/2015 05:12:00 PM,03/24/2015 05:15:04 PM,03/24/2015 05:15:40 PM,03/24/2015 05:16:57 PM,03/24/2015 05:22:44 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 05:34:30 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",150832751-E03 -150652956,T02,15024937,Alarms,03/06/2015,03/06/2015,03/06/2015 04:55:52 PM,03/06/2015 04:57:38 PM,03/06/2015 04:57:44 PM,03/06/2015 05:00:01 PM,03/06/2015 05:02:00 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Fire,03/06/2015 05:24:52 PM,600 Block of CHESTNUT ST,San Francisco,94133,B01,28,1424,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8035976378197, -122.414038394751)",150652956-T02 -152012870,E01,15076709,Medical Incident,07/20/2015,07/20/2015,07/20/2015 05:28:20 PM,07/20/2015 05:29:27 PM,07/20/2015 05:30:01 PM,07/20/2015 05:31:06 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Cancelled,07/20/2015 05:32:47 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",152012870-E01 -150390800,E44,15015097,Vehicle Fire,02/08/2015,02/07/2015,02/08/2015 06:59:15 AM,02/08/2015 07:01:35 AM,02/08/2015 07:11:35 AM,02/08/2015 07:11:35 AM,02/08/2015 07:11:35 AM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/08/2015 07:15:15 AM,900 Block of INGERSON AVE,San Francisco,94124,B10,17,6642,3,3,3,false,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7188939789224, -122.392475562324)",150390800-E44 -152910823,E15,15111719,Structure Fire,10/18/2015,10/17/2015,10/18/2015 07:32:21 AM,10/18/2015 07:32:21 AM,10/18/2015 07:33:20 AM,10/18/2015 07:34:08 AM,10/18/2015 07:36:43 AM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Fire,10/18/2015 07:37:28 AM,APTOS AV/UPLAND DR,San Francisco,94127,B09,15,8535,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7303290228288, -122.466257283615)",152910823-E15 -152770741,62,15106113,Medical Incident,10/04/2015,10/03/2015,10/04/2015 06:44:30 AM,10/04/2015 06:46:49 AM,10/04/2015 06:47:11 AM,10/04/2015 06:48:06 AM,10/04/2015 06:58:00 AM,10/04/2015 07:06:03 AM,10/04/2015 07:13:22 AM,Code 2 Transport,10/04/2015 07:48:30 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",152770741-62 -150060812,E29,15002183,Medical Incident,01/06/2015,01/06/2015,01/06/2015 08:33:45 AM,01/06/2015 08:34:50 AM,01/06/2015 08:38:38 AM,01/06/2015 08:39:28 AM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 2 Transport,01/06/2015 08:43:58 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7738617771611, -122.413045971966)",150060812-E29 -153053205,67,15117255,Medical Incident,11/01/2015,11/01/2015,11/01/2015 04:42:40 PM,11/01/2015 04:43:18 PM,11/01/2015 04:46:01 PM,11/01/2015 04:46:01 PM,11/01/2015 04:48:35 PM,11/01/2015 05:04:58 PM,11/01/2015 05:20:13 PM,Code 2 Transport,11/01/2015 05:57:03 PM,1100 Block of STEINER ST,San Francisco,94115,B05,5,3625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7798119295256, -122.433758569735)",153053205-67 -151481779,RC1,15056331,Water Rescue,05/28/2015,05/28/2015,05/28/2015 01:19:31 PM,05/28/2015 01:21:38 PM,05/28/2015 01:23:12 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Fire,05/28/2015 01:25:03 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,true,Fire,1,RESCUE CAPTAIN,12,7,2,Presidio,"(37.8066581989584, -122.47471662098)",151481779-RC1 -150632138,E17,15024084,Medical Incident,03/04/2015,03/04/2015,03/04/2015 02:01:31 PM,03/04/2015 02:01:31 PM,03/04/2015 02:03:00 PM,03/04/2015 02:05:00 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 02:06:17 PM,HARKNESS AV/GIRARD ST,San Francisco,94134,B10,44,6317,3,3,3,true,Non Life-threatening,1,ENGINE,3,10,10,Visitacion Valley,"(37.7177764111045, -122.400618615115)",150632138-E17 -142412130,E14,14083905,Medical Incident,08/29/2014,08/29/2014,08/29/2014 03:17:23 PM,08/29/2014 03:19:24 PM,08/29/2014 03:21:19 PM,08/29/2014 03:22:13 PM,08/29/2014 03:27:13 PM,04/25/2016 01:15:23 PM,04/25/2016 01:15:23 PM,Patient Declined Transport,08/29/2014 03:46:05 PM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",142412130-E14 -141693197,E31,14058504,Medical Incident,06/18/2014,06/18/2014,06/18/2014 09:07:12 PM,06/18/2014 09:11:24 PM,06/18/2014 09:11:39 PM,06/18/2014 09:12:49 PM,06/18/2014 09:15:20 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Unable to Locate,06/18/2014 09:18:41 PM,5TH AV/FULTON ST,San Francisco,94122,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7737597510029, -122.462683796008)",141693197-E31 -143521156,E39,14125715,Medical Incident,12/18/2014,12/18/2014,12/18/2014 10:17:45 AM,12/18/2014 10:17:45 AM,12/18/2014 10:18:05 AM,12/18/2014 10:18:48 AM,12/18/2014 10:25:37 AM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Code 2 Transport,12/18/2014 10:43:47 AM,100 Block of MAYWOOD DR,San Francisco,94127,B09,39,8527,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7334505288886, -122.461766387551)",143521156-E39 -151092324,E39,15041335,Medical Incident,04/19/2015,04/19/2015,04/19/2015 04:15:54 PM,04/19/2015 04:18:24 PM,04/19/2015 04:19:05 PM,04/19/2015 04:21:13 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Code 2 Transport,04/19/2015 04:32:41 PM,100 Block of YERBA BUENA AVE,San Francisco,94127,B08,39,8564,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7361051017533, -122.461594716833)",151092324-E39 -152522277,KM11,15096363,Medical Incident,09/09/2015,09/09/2015,09/09/2015 02:34:49 PM,09/09/2015 02:36:51 PM,09/09/2015 02:37:27 PM,09/09/2015 02:38:00 PM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,No Merit,09/09/2015 02:43:55 PM,100 Block of NATOMA ST,San Francisco,94105,B03,1,2157,3,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7868759472905, -122.399092765393)",152522277-KM11 -142061298,T08,14071328,Alarms,07/25/2014,07/25/2014,07/25/2014 10:52:44 AM,07/25/2014 10:54:36 AM,07/25/2014 10:56:31 AM,07/25/2014 10:56:36 AM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Fire,07/25/2014 10:57:26 AM,500 Block of FOLSOM ST,San Francisco,94105,B03,35,2137,3,3,3,false,Alarm,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7859994709135, -122.396224141199)",142061298-T08 -151352702,E12,15051365,Medical Incident,05/15/2015,05/15/2015,05/15/2015 04:51:23 PM,05/15/2015 04:51:23 PM,05/15/2015 04:52:01 PM,05/15/2015 04:52:36 PM,05/15/2015 04:55:40 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Code 2 Transport,05/15/2015 05:12:09 PM,100 Block of MARTIN LUTHER KING JR DR,San Francisco,94122,B07,12,7743,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,5,Golden Gate Park,"(37.7669591119289, -122.462470187645)",151352702-E12 -160981157,70,16038839,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:37:08 AM,04/07/2016 09:37:08 AM,04/07/2016 09:37:30 AM,04/07/2016 09:38:03 AM,04/07/2016 09:52:54 AM,04/07/2016 10:08:07 AM,04/07/2016 10:35:11 AM,Code 2 Transport,04/07/2016 12:07:16 PM,500 Block of GRANT AVE,San Francisco,94108,B01,13,1314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7921056209358, -122.405937157736)",160981157-70 -160951215,87,16037575,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:30:30 AM,04/04/2016 10:31:08 AM,04/04/2016 10:31:33 AM,04/04/2016 10:32:02 AM,04/04/2016 10:37:40 AM,04/04/2016 11:00:49 AM,04/04/2016 11:04:47 AM,Code 2 Transport,04/04/2016 11:40:22 AM,2300 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3511,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7891171836076, -122.432618741613)",160951215-87 -150581896,E01,15022171,Medical Incident,02/27/2015,02/27/2015,02/27/2015 01:23:24 PM,02/27/2015 01:25:54 PM,02/27/2015 01:26:54 PM,02/27/2015 01:28:04 PM,02/27/2015 01:31:27 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Code 2 Transport,02/27/2015 01:51:25 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790900137996, -122.406444631984)",150581896-E01 -142412843,AM12,14083964,Medical Incident,08/29/2014,08/29/2014,08/29/2014 06:13:17 PM,08/29/2014 06:15:32 PM,08/29/2014 06:25:27 PM,08/29/2014 06:26:05 PM,08/29/2014 06:37:59 PM,08/29/2014 06:56:19 PM,08/29/2014 07:13:25 PM,Code 2 Transport,08/29/2014 08:04:44 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",142412843-AM12 -160982082,74,16038934,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:43:21 PM,04/07/2016 01:44:52 PM,04/07/2016 01:45:06 PM,04/07/2016 01:46:01 PM,04/07/2016 01:56:56 PM,04/07/2016 02:11:27 PM,04/07/2016 02:36:35 PM,Code 2 Transport,04/07/2016 03:27:52 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",160982082-74 -152731102,E03,15104432,Medical Incident,09/30/2015,09/30/2015,09/30/2015 10:03:21 AM,09/30/2015 10:04:39 AM,09/30/2015 10:05:14 AM,09/30/2015 10:06:55 AM,09/30/2015 10:09:21 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Code 2 Transport,09/30/2015 10:15:44 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",152731102-E03 -160963634,66,16038171,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:13:13 PM,04/05/2016 08:13:41 PM,04/05/2016 08:13:53 PM,04/05/2016 08:14:55 PM,04/05/2016 08:20:28 PM,04/05/2016 09:06:08 PM,04/05/2016 09:37:08 PM,Code 2 Transport,04/05/2016 10:15:56 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",160963634-66 -153130644,E36,15120192,Alarms,11/09/2015,11/08/2015,11/09/2015 07:56:10 AM,11/09/2015 07:58:31 AM,11/09/2015 07:58:45 AM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,Fire,11/09/2015 08:00:25 AM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,6,2,6,Tenderloin,"(37.7814966331106, -122.416314542947)",153130644-E36 -152270729,AM24,15086444,Medical Incident,08/15/2015,08/14/2015,08/15/2015 06:47:51 AM,08/15/2015 06:51:05 AM,08/15/2015 06:56:40 AM,08/15/2015 06:57:09 AM,08/15/2015 07:04:33 AM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Unable to Locate,08/15/2015 07:12:21 AM,ELLIS ST/MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",152270729-AM24 -141310465,E13,14044465,Medical Incident,05/11/2014,05/10/2014,05/11/2014 03:59:51 AM,05/11/2014 03:59:51 AM,05/11/2014 04:00:14 AM,05/11/2014 04:02:09 AM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Code 2 Transport,05/11/2014 04:04:53 AM,SUTTER ST/KEARNY ST,San Francisco,94108,B01,13,1242,,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7898293371562, -122.403841564352)",141310465-E13 -150642099,T15,15024480,Alarms,03/05/2015,03/05/2015,03/05/2015 02:01:09 PM,03/05/2015 02:02:21 PM,03/05/2015 02:02:47 PM,03/05/2015 02:05:00 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Fire,03/05/2015 02:08:31 PM,900 Block of ROCKDALE DR,San Francisco,94127,B09,39,8652,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7407226927779, -122.454898275432)",150642099-T15 -160954051,64,16037823,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:52:45 PM,04/04/2016 10:53:44 PM,04/04/2016 10:53:56 PM,04/04/2016 10:54:25 PM,04/04/2016 10:59:46 PM,04/04/2016 11:28:01 PM,04/04/2016 11:43:37 PM,Code 2 Transport,04/05/2016 12:14:34 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160954051-64 -141610215,68,14055360,Medical Incident,06/10/2014,06/09/2014,06/10/2014 02:25:43 AM,06/10/2014 02:25:43 AM,06/10/2014 02:27:15 AM,06/10/2014 02:27:29 AM,06/10/2014 02:35:14 AM,06/10/2014 02:48:52 AM,06/10/2014 03:01:23 AM,Fire,06/10/2014 03:34:04 AM,PORTOLA DR/LAGUNA HONDA BL,San Francisco,94127,B08,39,8671,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7430486658264, -122.455271074722)",141610215-68 -150101601,74,15003939,Medical Incident,01/10/2015,01/10/2015,01/10/2015 12:38:13 PM,01/10/2015 12:40:10 PM,01/10/2015 12:42:54 PM,01/10/2015 12:44:02 PM,01/10/2015 12:51:09 PM,01/10/2015 01:08:41 PM,01/10/2015 01:34:20 PM,Code 2 Transport,01/10/2015 02:02:08 PM,1200 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",150101601-74 -143351234,73,14118672,Medical Incident,12/01/2014,12/01/2014,12/01/2014 10:57:05 AM,12/01/2014 10:57:05 AM,12/01/2014 10:58:54 AM,12/01/2014 10:58:54 AM,12/01/2014 11:04:48 AM,12/01/2014 12:23:05 PM,12/01/2014 11:42:14 AM,Code 2 Transport,12/01/2014 12:23:09 PM,0 Block of HAHN ST,San Francisco,94134,B09,44,6263,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7140533220214, -122.415121573719)",143351234-73 -151553970,E33,15059331,Medical Incident,06/04/2015,06/04/2015,06/04/2015 11:15:02 PM,06/04/2015 11:23:28 PM,06/04/2015 11:24:05 PM,06/04/2015 11:25:12 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Code 2 Transport,06/04/2015 11:29:02 PM,1100 Block of JUNIPERO SERRA BLVD,San Francisco,94132,B08,33,8422,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.7175079598578, -122.472388669721)",151553970-E33 -160952111,50,16037657,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:09:00 PM,04/04/2016 02:09:31 PM,04/04/2016 02:09:58 PM,04/04/2016 02:10:05 PM,04/04/2016 02:26:47 PM,04/04/2016 03:47:40 PM,04/04/2016 03:47:44 PM,Code 2 Transport,04/04/2016 03:47:58 PM,2100 Block of VAN NESS AVE,San Francisco,94109,B04,41,3152,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.795296761924, -122.423148793536)",160952111-50 -151531986,E05,15058304,Medical Incident,06/02/2015,06/02/2015,06/02/2015 02:04:59 PM,06/02/2015 02:06:31 PM,06/02/2015 02:07:03 PM,06/02/2015 02:08:16 PM,06/02/2015 02:10:58 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/02/2015 02:24:57 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",151531986-E05 -160921768,76,16036447,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:23:33 PM,04/01/2016 01:25:11 PM,04/01/2016 01:26:27 PM,04/01/2016 01:26:27 PM,04/01/2016 01:31:02 PM,04/01/2016 01:42:47 PM,04/01/2016 01:49:17 PM,Code 2 Transport,04/01/2016 02:19:43 PM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160921768-76 -142311569,72,14080228,Medical Incident,08/19/2014,08/19/2014,08/19/2014 12:31:09 PM,08/19/2014 12:31:50 PM,08/19/2014 12:32:19 PM,08/19/2014 12:33:48 PM,08/19/2014 12:38:54 PM,08/19/2014 12:58:39 PM,08/19/2014 01:12:12 PM,Code 3 Transport,08/19/2014 02:07:14 PM,1200 Block of JACKSON ST,San Francisco,94109,B01,41,1535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7949369487607, -122.415660216005)",142311569-72 -160991694,71,16039295,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:03:38 PM,04/08/2016 01:07:09 PM,04/08/2016 01:08:40 PM,04/08/2016 01:09:25 PM,04/08/2016 01:21:46 PM,04/08/2016 02:14:51 PM,04/08/2016 02:33:21 PM,Code 2 Transport,04/08/2016 03:12:07 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160991694-71 -143070300,E01,14108482,Medical Incident,11/03/2014,11/02/2014,11/03/2014 03:31:03 AM,11/03/2014 03:31:03 AM,11/03/2014 03:31:45 AM,11/03/2014 03:33:18 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/03/2014 03:35:51 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",143070300-E01 -160922817,KM12,16036546,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:44:08 PM,04/01/2016 05:44:08 PM,04/01/2016 05:44:31 PM,04/01/2016 05:45:20 PM,04/01/2016 05:45:34 PM,04/01/2016 06:04:55 PM,04/01/2016 06:09:25 PM,Code 2 Transport,04/01/2016 06:45:14 PM,HAIGHT ST/STANYAN ST,San Francisco,94117,B05,12,4545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",160922817-KM12 -142402511,KM09,14083579,Medical Incident,08/28/2014,08/28/2014,08/28/2014 04:52:32 PM,08/28/2014 04:54:55 PM,08/28/2014 05:07:11 PM,08/28/2014 05:07:53 PM,08/28/2014 05:20:13 PM,08/28/2014 05:32:24 PM,08/28/2014 06:09:15 PM,Code 2 Transport,08/28/2014 06:24:57 PM,700 Block of 2ND ST,San Francisco,94107,B03,8,2154,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.78019523865, -122.390107968661)",142402511-KM09 -160922409,AM10,16036512,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:09:38 PM,04/01/2016 04:12:05 PM,04/01/2016 04:12:37 PM,04/01/2016 04:13:20 PM,04/01/2016 04:19:06 PM,04/01/2016 04:32:48 PM,04/01/2016 04:42:54 PM,Code 2 Transport,04/01/2016 05:00:04 PM,3100 Block of 24TH ST,San Francisco,94110,B06,7,5526,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7524609846175, -122.415724213925)",160922409-AM10 -152703313,T03,15103604,Alarms,09/27/2015,09/27/2015,09/27/2015 09:13:59 PM,09/27/2015 09:15:03 PM,09/27/2015 09:17:11 PM,09/27/2015 09:17:11 PM,09/27/2015 09:18:58 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Fire,09/27/2015 09:26:31 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",152703313-T03 -141861895,B08,14064452,Alarms,07/05/2014,07/05/2014,07/05/2014 01:51:16 PM,07/05/2014 01:52:42 PM,07/05/2014 01:53:03 PM,07/05/2014 01:55:59 PM,07/05/2014 01:58:32 PM,04/25/2016 01:16:23 PM,04/25/2016 01:16:23 PM,Fire,07/05/2014 02:16:26 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,false,Alarm,1,CHIEF,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",141861895-B08 -160971468,88,16038372,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:58:47 AM,04/06/2016 10:59:34 AM,04/06/2016 11:00:27 AM,04/06/2016 11:00:38 AM,04/06/2016 11:03:49 AM,04/06/2016 11:17:53 AM,04/06/2016 11:43:28 AM,Code 2 Transport,04/06/2016 12:12:31 PM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",160971468-88 -143610372,68,14129017,Medical Incident,12/27/2014,12/26/2014,12/27/2014 03:26:15 AM,12/27/2014 03:27:35 AM,12/27/2014 03:28:26 AM,12/27/2014 03:28:36 AM,12/27/2014 03:37:52 AM,12/27/2014 03:52:08 AM,12/27/2014 03:59:37 AM,Code 2 Transport,12/27/2014 04:24:14 AM,2900 Block of GOUGH ST,San Francisco,94123,B04,16,3244,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8004333103903, -122.427803521956)",143610372-68 -161000668,85,16039642,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:55:53 AM,04/09/2016 06:57:54 AM,04/09/2016 06:58:18 AM,04/09/2016 06:58:27 AM,04/09/2016 07:02:06 AM,04/09/2016 07:24:05 AM,04/09/2016 07:38:48 AM,Code 2 Transport,04/09/2016 08:10:48 AM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",161000668-85 -151993797,E42,15076030,Medical Incident,07/18/2015,07/18/2015,07/18/2015 10:12:52 PM,07/18/2015 10:13:29 PM,07/18/2015 10:13:49 PM,07/18/2015 10:15:12 PM,07/18/2015 10:18:06 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Code 2 Transport,07/18/2015 10:38:39 PM,0 Block of APOLLO ST,San Francisco,94124,B10,42,6473,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7322144272033, -122.397845534183)",151993797-E42 -152842131,E01,15109090,Alarms,10/11/2015,10/11/2015,10/11/2015 02:08:11 PM,10/11/2015 02:09:27 PM,10/11/2015 02:09:38 PM,10/11/2015 02:11:32 PM,10/11/2015 02:12:53 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Fire,10/11/2015 02:15:05 PM,100 Block of 3RD ST,San Francisco,94105,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",152842131-E01 -151953336,E43,15074525,Gas Leak (Natural and LP Gases),07/14/2015,07/14/2015,07/14/2015 08:08:15 PM,07/14/2015 08:09:18 PM,07/14/2015 08:09:36 PM,07/14/2015 08:10:35 PM,07/14/2015 08:16:04 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,No Merit,07/14/2015 08:16:07 PM,100 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",151953336-E43 -153372315,E19,15129713,Medical Incident,12/03/2015,12/03/2015,12/03/2015 02:58:48 PM,12/03/2015 03:04:36 PM,12/03/2015 03:04:51 PM,12/03/2015 03:05:51 PM,12/03/2015 03:08:22 PM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Fire,12/03/2015 03:15:32 PM,19TH AV/JUNIPERO SERRA BL,San Francisco,94132,B08,19,8427,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Lakeshore,"(37.71717386983, -122.472572451935)",153372315-E19 -160964195,61,16038226,Structure Fire,04/05/2016,04/05/2016,04/05/2016 11:34:30 PM,04/05/2016 11:34:30 PM,04/05/2016 11:39:22 PM,04/05/2016 11:39:26 PM,04/05/2016 11:41:43 PM,04/05/2016 11:56:57 PM,04/06/2016 12:03:30 AM,Code 3 Transport,04/06/2016 12:31:07 AM,TAYLOR ST/EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,MEDIC,3,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",160964195-61 -143002031,E01,14105936,Medical Incident,10/27/2014,10/27/2014,10/27/2014 02:07:00 PM,10/27/2014 02:07:49 PM,10/27/2014 02:08:39 PM,10/27/2014 02:10:04 PM,10/27/2014 02:13:24 PM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Code 2 Transport,10/27/2014 02:13:55 PM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",143002031-E01 -160952773,AM12,16037708,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:43:59 PM,04/04/2016 04:45:09 PM,04/04/2016 04:47:02 PM,04/04/2016 04:47:34 PM,04/04/2016 04:57:01 PM,04/04/2016 05:21:00 PM,04/04/2016 05:30:28 PM,Code 2 Transport,04/04/2016 05:58:17 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160952773-AM12 -143402809,89,14120851,Medical Incident,12/06/2014,12/06/2014,12/06/2014 05:48:54 PM,12/06/2014 05:51:04 PM,12/06/2014 05:52:18 PM,12/06/2014 05:57:45 PM,12/06/2014 06:01:01 PM,12/06/2014 06:39:02 PM,12/06/2014 06:57:48 PM,Code 2 Transport,12/06/2014 07:21:21 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",143402809-89 -150301325,65,15011523,Medical Incident,01/30/2015,01/30/2015,01/30/2015 10:30:13 AM,01/30/2015 10:31:24 AM,01/30/2015 10:31:32 AM,01/30/2015 10:32:00 AM,01/30/2015 10:37:07 AM,01/30/2015 10:52:04 AM,01/30/2015 11:15:21 AM,Code 2 Transport,01/30/2015 11:40:37 AM,2500 Block of 40TH AVE,San Francisco,94116,B08,18,7617,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7392586275396, -122.498062678439)",150301325-65 -143641685,E40,14130208,Medical Incident,12/30/2014,12/30/2014,12/30/2014 01:24:14 PM,12/30/2014 01:24:36 PM,12/30/2014 01:25:31 PM,12/30/2014 01:26:21 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 01:26:58 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,10,Mission,"(37.765718993574, -122.409520691153)",143641685-E40 -160960365,88,16037882,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:03:43 AM,04/05/2016 05:04:04 AM,04/05/2016 05:04:30 AM,04/05/2016 05:04:38 AM,04/05/2016 05:07:02 AM,04/05/2016 05:22:55 AM,04/05/2016 05:40:03 AM,Code 2 Transport,04/05/2016 06:09:21 AM,100 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843212349417, -122.38904057367)",160960365-88 -160930132,76,16036681,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:48:14 AM,04/02/2016 12:49:48 AM,04/02/2016 12:50:40 AM,04/02/2016 12:50:46 AM,04/02/2016 12:57:11 AM,04/02/2016 01:04:37 AM,04/02/2016 01:35:44 AM,Code 2 Transport,04/02/2016 02:04:21 AM,100 Block of UTAH ST,San Francisco,94103,B02,29,2351,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7677826861899, -122.406668803339)",160930132-76 -160972996,64,16038531,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:30:49 PM,04/06/2016 04:33:28 PM,04/06/2016 04:33:47 PM,04/06/2016 04:33:53 PM,04/06/2016 04:59:36 PM,04/06/2016 05:19:38 PM,04/06/2016 05:37:50 PM,Code 2 Transport,04/06/2016 06:04:35 PM,GEARY BL/DIVISADERO ST,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7833084876653, -122.439480381269)",160972996-64 -152600392,70,15099255,Structure Fire,09/17/2015,09/16/2015,09/17/2015 05:18:20 AM,09/17/2015 05:21:47 AM,09/17/2015 05:22:03 AM,09/17/2015 05:23:08 AM,09/17/2015 05:26:38 AM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Fire,09/17/2015 05:29:24 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Alarm,1,MEDIC,6,2,9,Mission,"(37.7661343875141, -122.421935077177)",152600392-70 -160983749,85,16039116,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:31:23 PM,04/07/2016 09:31:50 PM,04/07/2016 09:32:25 PM,04/07/2016 09:33:17 PM,04/07/2016 09:34:46 PM,04/07/2016 09:40:35 PM,04/07/2016 09:58:35 PM,Code 2 Transport,04/07/2016 10:33:50 PM,1500 Block of 8TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.759427932261, -122.464847191753)",160983749-85 -151182739,E19,15044707,Alarms,04/28/2015,04/28/2015,04/28/2015 05:15:17 PM,04/28/2015 05:16:58 PM,04/28/2015 05:17:15 PM,04/28/2015 05:17:54 PM,04/28/2015 05:24:27 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,Fire,04/28/2015 05:27:26 PM,500 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Alarm,1,ENGINE,2,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",151182739-E19 -160993199,78,16039434,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 07:05:23 PM,04/08/2016 07:05:23 PM,04/08/2016 07:05:50 PM,04/08/2016 07:05:57 PM,04/08/2016 07:12:04 PM,04/08/2016 07:26:09 PM,04/08/2016 08:05:21 PM,Code 2 Transport,04/08/2016 08:41:59 PM,100 Block of 3RD ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",160993199-78 -142943696,77,14103847,Medical Incident,10/21/2014,10/21/2014,10/21/2014 10:29:53 PM,10/21/2014 10:31:41 PM,10/21/2014 10:32:49 PM,10/21/2014 10:32:49 PM,10/21/2014 10:34:58 PM,10/21/2014 10:51:10 PM,10/21/2014 11:21:17 PM,Code 2 Transport,10/21/2014 11:28:47 PM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",142943696-77 -160921575,67,16036427,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:28:49 PM,04/01/2016 12:29:27 PM,04/01/2016 12:29:50 PM,04/01/2016 12:30:00 PM,04/01/2016 12:39:42 PM,04/01/2016 12:59:17 PM,04/01/2016 01:36:41 PM,Code 2 Transport,04/01/2016 01:44:38 PM,0 Block of SONOMA ST,San Francisco,94133,B01,28,1252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8003106284648, -122.406381656512)",160921575-67 -150393387,63,15015356,Medical Incident,02/08/2015,02/08/2015,02/08/2015 09:07:37 PM,02/08/2015 09:08:35 PM,02/08/2015 09:10:12 PM,02/08/2015 09:12:28 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Cancelled,02/08/2015 09:20:12 PM,3500 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.7864621207579, -122.452571132404)",150393387-63 -150993333,E01,15037624,Medical Incident,04/09/2015,04/09/2015,04/09/2015 09:21:51 PM,04/09/2015 09:26:06 PM,04/09/2015 09:26:15 PM,04/09/2015 09:27:19 PM,04/09/2015 09:28:58 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,No Merit,04/09/2015 09:30:36 PM,HOWARD ST/5TH ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",150993333-E01 -142012523,75,14069661,Medical Incident,07/20/2014,07/20/2014,07/20/2014 06:41:27 PM,07/20/2014 06:43:03 PM,07/20/2014 06:47:11 PM,07/20/2014 06:47:21 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Code 2 Transport,07/20/2014 06:51:05 PM,6TH ST/HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",142012523-75 -160950280,AM20,16037498,Medical Incident,04/04/2016,04/03/2016,04/04/2016 03:45:09 AM,04/04/2016 03:45:09 AM,04/04/2016 03:46:00 AM,04/04/2016 03:46:45 AM,04/04/2016 03:54:34 AM,04/04/2016 04:11:07 AM,04/04/2016 04:19:25 AM,Code 2 Transport,04/04/2016 04:42:08 AM,1700 Block of 9TH AV,San Francisco,94122,B08,22,7336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7556426325016, -122.465795068368)",160950280-AM20 -150383703,B10,15014968,Structure Fire,02/07/2015,02/07/2015,02/07/2015 09:57:18 PM,02/07/2015 09:58:33 PM,02/07/2015 09:59:12 PM,02/07/2015 10:00:14 PM,02/07/2015 10:05:00 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/07/2015 10:05:08 PM,2400 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,false,Alarm,1,CHIEF,2,10,9,Portola,"(37.7307945918953, -122.404830420604)",150383703-B10 -153420328,AM18,15131470,Medical Incident,12/08/2015,12/07/2015,12/08/2015 03:20:13 AM,12/08/2015 03:23:26 AM,12/08/2015 03:23:49 AM,12/08/2015 03:24:15 AM,12/08/2015 03:30:45 AM,12/08/2015 03:45:05 AM,12/08/2015 04:29:24 AM,Code 2 Transport,12/08/2015 04:31:42 AM,1600 Block of LOMBARD ST,San Francisco,94123,B04,16,3244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.800665922599, -122.428624511812)",153420328-AM18 -160961182,AM04,16037953,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:26:13 AM,04/05/2016 10:26:13 AM,04/05/2016 10:26:47 AM,04/05/2016 10:27:43 AM,04/05/2016 10:29:54 AM,04/05/2016 10:39:35 AM,04/05/2016 10:51:48 AM,Code 2 Transport,04/05/2016 11:18:34 AM,1300 Block of 9TH AVE,San Francisco,94122,B07,22,7334,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,5,Inner Sunset,"(37.7631090580661, -122.466176505201)",160961182-AM04 -152953079,66,15113475,Medical Incident,10/22/2015,10/22/2015,10/22/2015 06:57:32 PM,10/22/2015 06:57:32 PM,10/22/2015 06:58:33 PM,10/22/2015 06:58:43 PM,10/22/2015 07:05:50 PM,10/22/2015 07:17:51 PM,10/22/2015 07:27:47 PM,Code 2 Transport,10/22/2015 07:59:17 PM,900 Block of 16TH ST,San Francisco,94107,B03,29,2414,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7664325184439, -122.395973403657)",152953079-66 -161000254,KM09,16039587,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:45:55 AM,04/09/2016 01:48:20 AM,04/09/2016 01:48:37 AM,04/09/2016 01:50:59 AM,04/09/2016 01:58:40 AM,04/09/2016 02:14:40 AM,04/09/2016 02:40:17 AM,Code 2 Transport,04/09/2016 03:21:58 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161000254-KM09 -153160803,71,15121331,Traffic Collision,11/12/2015,11/12/2015,11/12/2015 08:34:25 AM,11/12/2015 08:34:25 AM,11/12/2015 08:35:24 AM,11/12/2015 08:35:31 AM,11/12/2015 08:36:08 AM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,No Merit,11/12/2015 09:04:53 AM,8TH ST/BRYANT ST,San Francisco,94103,B03,29,2324,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.772526268193, -122.406968289725)",153160803-71 -160960685,88,16037916,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:10:37 AM,04/05/2016 08:12:31 AM,04/05/2016 08:13:50 AM,04/05/2016 08:13:58 AM,04/05/2016 08:23:44 AM,04/05/2016 08:28:41 AM,04/05/2016 09:05:48 AM,Code 2 Transport,04/05/2016 09:28:57 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160960685-88 -152692533,E07,15103156,Medical Incident,09/26/2015,09/26/2015,09/26/2015 04:17:26 PM,09/26/2015 04:19:30 PM,09/26/2015 04:20:22 PM,09/26/2015 04:22:17 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Code 2 Transport,09/26/2015 04:30:52 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",152692533-E07 -141761403,E36,14060714,Medical Incident,06/25/2014,06/25/2014,06/25/2014 11:37:36 AM,06/25/2014 11:38:11 AM,06/25/2014 11:39:26 AM,06/25/2014 11:39:38 AM,06/25/2014 11:51:14 AM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Code 2 Transport,06/25/2014 12:02:08 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",141761403-E36 -141690377,88,14058223,Medical Incident,06/18/2014,06/17/2014,06/18/2014 05:44:17 AM,06/18/2014 05:47:24 AM,06/18/2014 05:50:07 AM,06/18/2014 05:50:32 AM,06/18/2014 06:01:38 AM,06/18/2014 06:18:05 AM,06/18/2014 06:33:10 AM,Code 2 Transport,06/18/2014 07:06:06 AM,2200 Block of 28TH AVE,San Francisco,94116,B08,18,7521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7454203725674, -122.485600832491)",141690377-88 -151791162,E38,15068150,Alarms,06/28/2015,06/28/2015,06/28/2015 09:18:24 AM,06/28/2015 09:19:26 AM,06/28/2015 09:19:44 AM,06/28/2015 09:20:47 AM,06/28/2015 09:22:54 AM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 09:34:55 AM,2500 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7897873621099, -122.434861054284)",151791162-E38 -160963245,53,16038135,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:21:47 PM,04/05/2016 06:21:47 PM,04/05/2016 06:21:47 PM,04/05/2016 06:21:47 PM,04/05/2016 06:21:47 PM,04/05/2016 06:36:27 PM,04/05/2016 06:43:29 PM,Code 2 Transport,04/05/2016 07:30:40 PM,JONES ST/ELLIS ST,San Francisco,94102,B01,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160963245-53 -153201867,E18,15123047,Medical Incident,11/16/2015,11/16/2015,11/16/2015 01:28:34 PM,11/16/2015 01:28:54 PM,11/16/2015 01:29:45 PM,11/16/2015 01:30:47 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Patient Declined Transport,11/16/2015 01:33:59 PM,1500 Block of 43RD AVE,San Francisco,94122,B08,23,765,2,2,2,true,Non Life-threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.757770435301, -122.502447012656)",153201867-E18 -150823772,E01,15031551,Medical Incident,03/23/2015,03/23/2015,03/23/2015 10:55:38 PM,03/23/2015 10:56:24 PM,03/23/2015 10:56:43 PM,03/23/2015 10:59:13 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,No Merit,03/23/2015 11:07:08 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",150823772-E01 -142430726,85,14084534,Medical Incident,08/31/2014,08/30/2014,08/31/2014 06:53:02 AM,08/31/2014 06:53:02 AM,08/31/2014 06:54:08 AM,08/31/2014 06:54:19 AM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Patient Declined Transport,08/31/2014 07:10:12 AM,THOMAS AV/INGALLS ST,San Francisco,94124,B10,17,6547,2,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272332288185, -122.385682204312)",142430726-85 -142331503,E21,14080910,Administrative,08/21/2014,08/21/2014,08/21/2014 12:21:38 PM,08/21/2014 12:21:43 PM,08/21/2014 12:22:41 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,Fire,08/21/2014 12:23:31 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",142331503-E21 -161002664,62,16039880,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:31:04 PM,04/09/2016 06:33:20 PM,04/09/2016 06:33:28 PM,04/09/2016 06:33:33 PM,04/09/2016 06:37:21 PM,04/09/2016 06:49:57 PM,04/09/2016 07:06:09 PM,Code 2 Transport,04/09/2016 07:24:18 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",161002664-62 -160992347,KM09,16039365,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:47:06 PM,04/08/2016 03:48:52 PM,04/08/2016 03:59:28 PM,04/08/2016 03:59:28 PM,04/08/2016 03:59:28 PM,04/08/2016 04:30:28 PM,04/08/2016 04:49:37 PM,Code 2 Transport,04/08/2016 05:15:59 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160992347-KM09 -141282333,E11,14043570,Traffic Collision,05/08/2014,05/08/2014,05/08/2014 03:47:06 PM,05/08/2014 03:49:49 PM,05/08/2014 03:51:19 PM,05/08/2014 03:51:47 PM,05/08/2014 03:54:34 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 04:10:56 PM,SANCHEZ ST/CESAR CHAVEZ ST,San Francisco,94131,B06,11,5552,2,2,2,false,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7475644672031, -122.429270028456)",141282333-E11 -153444045,E06,15132627,Medical Incident,12/10/2015,12/10/2015,12/10/2015 11:12:40 PM,12/10/2015 11:12:40 PM,12/10/2015 11:13:15 PM,12/10/2015 11:15:05 PM,12/10/2015 11:15:52 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Code 2 Transport,12/10/2015 11:27:25 PM,CHURCH ST/RESERVOIR ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.768674599859, -122.42905378685)",153444045-E06 -150631526,E12,15024027,Medical Incident,03/04/2015,03/04/2015,03/04/2015 11:26:18 AM,03/04/2015 11:27:52 AM,03/04/2015 11:28:34 AM,03/04/2015 11:29:24 AM,03/04/2015 11:32:02 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 11:40:40 AM,1300 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7702640437118, -122.444486067677)",150631526-E12 -160963153,KM04,16038128,Traffic Collision,04/05/2016,04/05/2016,04/05/2016 06:03:37 PM,04/05/2016 06:03:37 PM,04/05/2016 06:03:57 PM,04/05/2016 06:04:36 PM,04/05/2016 06:26:25 PM,04/05/2016 06:26:26 PM,04/05/2016 06:49:51 PM,Code 2 Transport,04/05/2016 07:29:49 PM,17TH AV/LAKE ST,San Francisco,94118,B07,31,7163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,2,Seacliff,"(37.7861282808337, -122.476575146725)",160963153-KM04 -160973375,76,16038578,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:49:38 PM,04/06/2016 05:49:38 PM,04/06/2016 06:06:42 PM,04/06/2016 06:06:49 PM,04/06/2016 06:12:00 PM,04/06/2016 06:34:09 PM,04/06/2016 06:42:12 PM,Code 2 Transport,04/06/2016 06:52:17 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160973375-76 -141451754,E13,14049808,Medical Incident,05/25/2014,05/25/2014,05/25/2014 02:23:21 PM,05/25/2014 02:25:42 PM,05/25/2014 02:26:20 PM,05/25/2014 02:26:46 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Patient Declined Transport,05/25/2014 02:32:40 PM,KEARNY ST/VER MEHR PL,San Francisco,94104,B01,13,1242,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7893632762983, -122.403746847886)",141451754-E13 -160930994,KM08,16036775,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:23:42 AM,04/02/2016 09:24:59 AM,04/02/2016 09:25:20 AM,04/02/2016 09:26:08 AM,04/02/2016 09:35:49 AM,04/02/2016 09:49:22 AM,04/02/2016 10:24:24 AM,Code 2 Transport,04/02/2016 11:11:35 AM,900 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7228877389932, -122.451962418129)",160930994-KM08 -150911028,E36,15034544,Alarms,04/01/2015,04/01/2015,04/01/2015 09:51:31 AM,04/01/2015 09:52:58 AM,04/01/2015 09:53:04 AM,04/01/2015 09:54:32 AM,04/01/2015 09:58:08 AM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Fire,04/01/2015 10:06:06 AM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",150911028-E36 -142362001,KM01,14082094,Medical Incident,08/24/2014,08/24/2014,08/24/2014 02:09:32 PM,08/24/2014 02:09:42 PM,08/24/2014 02:10:03 PM,08/24/2014 02:10:46 PM,08/24/2014 02:50:07 PM,08/24/2014 02:50:08 PM,08/24/2014 03:09:28 PM,Code 2 Transport,08/24/2014 03:53:42 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",142362001-KM01 -160981770,83,16038905,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:19:33 PM,04/07/2016 12:20:35 PM,04/07/2016 12:20:58 PM,04/07/2016 12:21:59 PM,04/07/2016 12:36:10 PM,04/07/2016 12:47:53 PM,04/07/2016 01:19:13 PM,Code 2 Transport,04/07/2016 02:00:53 PM,300 Block of OCEAN AVE,San Francisco,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7230819396446, -122.444018805055)",160981770-83 -150782334,RC3,15029937,Traffic Collision,03/19/2015,03/19/2015,03/19/2015 02:52:36 PM,03/19/2015 02:52:36 PM,03/19/2015 02:54:33 PM,03/19/2015 02:54:33 PM,03/19/2015 02:59:40 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Code 2 Transport,03/19/2015 03:11:57 PM,3RD ST/OAKDALE AV,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",150782334-RC3 -142661663,E15,14093091,Medical Incident,09/23/2014,09/23/2014,09/23/2014 12:45:07 PM,09/23/2014 12:46:34 PM,09/23/2014 12:47:11 PM,09/23/2014 12:48:26 PM,09/23/2014 12:50:39 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,No Merit,09/23/2014 01:00:48 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",142661663-E15 -143401321,82,14120725,Structure Fire,12/06/2014,12/06/2014,12/06/2014 10:44:08 AM,12/06/2014 10:45:17 AM,12/06/2014 10:48:50 AM,12/06/2014 10:49:07 AM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Fire,12/06/2014 10:53:38 AM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,3,3,3,true,Alarm,1,MEDIC,9,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",143401321-82 -141342149,E39,14045750,Medical Incident,05/14/2014,05/14/2014,05/14/2014 02:00:37 PM,05/14/2014 02:00:37 PM,05/14/2014 02:09:55 PM,05/14/2014 02:11:14 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Other,05/14/2014 02:42:36 PM,TARAVAL ST/36TH AV,San Francisco,94116,B08,18,7555,3,3,3,false,Potentially Life-Threatening,1,ENGINE,5,8,4,Sunset/Parkside,"(37.74224865426, -122.493907039318)",141342149-E39 -143552330,HT48,14126965,Structure Fire,12/21/2014,12/21/2014,12/21/2014 03:03:39 PM,12/21/2014 03:05:21 PM,12/21/2014 03:06:14 PM,12/21/2014 03:08:05 PM,12/21/2014 03:14:44 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 04:14:35 PM,0 Block of CLIPPER COVE WAY,Treasure Isla,94130,B03,48,2931,3,3,3,false,Alarm,1,SUPPORT,5,None,6,Treasure Island,"(37.8163207162813, -122.370727071585)",143552330-HT48 -160980174,85,16038738,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:16:01 AM,04/07/2016 01:17:21 AM,04/07/2016 01:17:56 AM,04/07/2016 01:21:43 AM,04/07/2016 01:21:43 AM,04/07/2016 01:46:25 AM,04/07/2016 01:54:56 AM,Code 2 Transport,04/07/2016 02:42:54 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160980174-85 -153451140,E01,15132739,Traffic Collision,12/11/2015,12/11/2015,12/11/2015 09:33:29 AM,12/11/2015 09:33:29 AM,12/11/2015 09:34:05 AM,12/11/2015 09:35:07 AM,12/11/2015 09:48:58 AM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Patient Declined Transport,12/11/2015 09:53:04 AM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,3,A,2,true,Potentially Life-Threatening,1,ENGINE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",153451140-E01 -151443170,E08,15054923,Citizen Assist / Service Call,05/24/2015,05/24/2015,05/24/2015 08:27:35 PM,05/24/2015 08:30:10 PM,05/24/2015 08:30:37 PM,05/24/2015 08:32:24 PM,05/24/2015 08:34:13 PM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,Fire,05/24/2015 08:41:53 PM,1100 Block of 4TH ST,San Francisco,94158,B03,8,2226,3,3,3,true,Alarm,1,ENGINE,2,3,6,Mission Bay,"(37.7731448011713, -122.391472934142)",151443170-E08 -153120309,52,15119792,Medical Incident,11/08/2015,11/07/2015,11/08/2015 02:17:51 AM,11/08/2015 02:20:19 AM,11/08/2015 02:20:36 AM,11/08/2015 02:20:43 AM,11/08/2015 02:24:21 AM,04/25/2016 01:07:19 PM,04/25/2016 01:07:19 PM,Cancelled,11/08/2015 02:25:57 AM,600 Block of HAMPSHIRE ST,San Francisco,94110,B10,7,5427,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,10,Mission,"(37.76123422286, -122.408194330773)",153120309-52 -160991766,89,16039304,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:26:07 PM,04/08/2016 01:26:47 PM,04/08/2016 01:28:06 PM,04/08/2016 01:28:20 PM,04/08/2016 01:33:33 PM,04/08/2016 01:54:59 PM,04/08/2016 02:09:25 PM,Code 2 Transport,04/08/2016 02:36:04 PM,600 Block of SHOTWELL ST,San Francisco,94110,B06,7,5447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.758027155218, -122.415771731954)",160991766-89 -160950197,75,16037490,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:29:24 AM,04/04/2016 02:29:24 AM,04/04/2016 02:29:44 AM,04/04/2016 02:29:52 AM,04/04/2016 02:34:10 AM,04/04/2016 02:43:20 AM,04/04/2016 02:52:48 AM,Code 2 Transport,04/04/2016 03:31:04 AM,500 Block of MISSION ST,San Francisco,94105,B03,1,2145,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887066123323, -122.399010207568)",160950197-75 -153420913,RC2,15131526,Medical Incident,12/08/2015,12/08/2015,12/08/2015 08:51:00 AM,12/08/2015 08:51:22 AM,12/08/2015 08:58:21 AM,12/08/2015 08:58:21 AM,12/08/2015 08:58:21 AM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Code 2 Transport,12/08/2015 09:09:05 AM,600 Block of 23RD AVE,San Francisco,94121,B07,14,7177,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7754703290477, -122.482182023429)",153420913-RC2 -160942863,62,16037368,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:06:31 PM,04/03/2016 06:08:38 PM,04/03/2016 06:09:53 PM,04/03/2016 06:10:06 PM,04/03/2016 06:19:23 PM,04/03/2016 06:22:58 PM,04/03/2016 07:00:10 PM,Code 2 Transport,04/03/2016 07:32:26 PM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7797665517286, -122.438328082289)",160942863-62 -150680541,55,15025885,Medical Incident,03/09/2015,03/08/2015,03/09/2015 07:14:06 AM,03/09/2015 07:16:57 AM,03/09/2015 07:18:54 AM,03/09/2015 07:25:02 AM,03/09/2015 07:41:02 AM,03/09/2015 08:00:23 AM,03/09/2015 08:50:25 AM,Code 2 Transport,03/09/2015 10:07:38 AM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782320193191, -122.41402801662)",150680541-55 -141591916,E35,14054835,Structure Fire,06/08/2014,06/08/2014,06/08/2014 03:20:14 PM,06/08/2014 03:20:58 PM,06/08/2014 03:21:33 PM,06/08/2014 03:22:41 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Fire,06/08/2014 03:25:35 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,3,3,3,true,Alarm,1,ENGINE,8,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",141591916-E35 -153311076,T13,15127323,Alarms,11/27/2015,11/27/2015,11/27/2015 10:30:20 AM,11/27/2015 10:31:42 AM,11/27/2015 10:32:11 AM,11/27/2015 10:33:12 AM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,Fire,11/27/2015 10:37:14 AM,100 Block of DRUMM ST,San Francisco,94111,B01,13,1115,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",153311076-T13 -150170709,E39,15006600,Structure Fire,01/17/2015,01/16/2015,01/17/2015 06:19:10 AM,01/17/2015 06:19:41 AM,01/17/2015 06:26:00 AM,01/17/2015 06:28:12 AM,01/17/2015 06:32:21 AM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Fire,01/17/2015 07:28:54 AM,0 Block of URBANO DR,San Francisco,94127,B09,15,8456,3,3,3,true,Alarm,1,ENGINE,9,9,7,West of Twin Peaks,"(37.7251469979939, -122.463865761043)",150170709-E39 -160971216,73,16038356,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:02:14 AM,04/06/2016 10:03:49 AM,04/06/2016 10:05:06 AM,04/06/2016 10:06:30 AM,04/06/2016 10:08:03 AM,04/06/2016 10:24:57 AM,04/06/2016 10:46:32 AM,Code 2 Transport,04/06/2016 11:46:48 AM,2200 Block of MARIPOSA ST,San Francisco,94110,B02,29,2451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Potrero Hill,"(37.7632235866447, -122.405930298917)",160971216-73 -152650432,70,15101362,Medical Incident,09/22/2015,09/21/2015,09/22/2015 05:10:42 AM,09/22/2015 05:12:37 AM,09/22/2015 05:12:52 AM,09/22/2015 05:13:19 AM,09/22/2015 05:16:06 AM,09/22/2015 05:41:43 AM,09/22/2015 06:03:37 AM,Code 2 Transport,09/22/2015 06:23:40 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",152650432-70 -150053673,T13,15002057,Medical Incident,01/05/2015,01/05/2015,01/05/2015 10:14:07 PM,01/05/2015 10:15:34 PM,01/05/2015 10:15:54 PM,01/05/2015 10:17:48 PM,01/05/2015 10:20:45 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 2 Transport,01/05/2015 10:21:07 PM,600 Block of MARKET ST,San Francisco,94104,B03,1,2211,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",150053673-T13 -151460017,E25,15055363,Medical Incident,05/26/2015,05/25/2015,05/26/2015 12:06:08 AM,05/26/2015 12:06:08 AM,05/26/2015 12:07:29 AM,05/26/2015 12:09:01 AM,05/26/2015 12:11:26 AM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,Code 2 Transport,05/26/2015 12:11:54 AM,2300 Block of 3RD ST,San Francisco,94107,B10,25,2533,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7592069260893, -122.388577089603)",151460017-E25 -142581197,E08,14090072,Medical Incident,09/15/2014,09/15/2014,09/15/2014 10:51:00 AM,09/15/2014 10:51:26 AM,09/15/2014 10:51:48 AM,09/15/2014 10:54:25 AM,09/15/2014 11:01:04 AM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Code 2 Transport,09/15/2014 11:02:09 AM,400 Block of CHINA BASIN ST,San Francisco,94158,B03,8,2231,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7720245149608, -122.388255494514)",142581197-E08 -151960820,B01,15074677,Alarms,07/15/2015,07/15/2015,07/15/2015 08:38:07 AM,07/15/2015 08:39:55 AM,07/15/2015 08:40:21 AM,07/15/2015 08:42:02 AM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Fire,07/15/2015 08:45:13 AM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",151960820-B01 -160951908,85,16037641,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:20:19 PM,04/04/2016 01:21:55 PM,04/04/2016 01:22:25 PM,04/04/2016 01:22:35 PM,04/04/2016 01:26:57 PM,04/04/2016 01:44:59 PM,04/04/2016 02:09:50 PM,Code 2 Transport,04/04/2016 02:31:52 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7755801285655, -122.413994780042)",160951908-85 -152431521,E08,15092666,Medical Incident,08/31/2015,08/31/2015,08/31/2015 11:24:48 AM,08/31/2015 11:25:32 AM,08/31/2015 11:25:47 AM,08/31/2015 11:25:57 AM,08/31/2015 11:29:43 AM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Code 2 Transport,08/31/2015 11:31:12 AM,100 Block of BERRY ST,San Francisco,94158,B03,8,2171,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",152431521-E08 -151291866,52,15048972,Medical Incident,05/09/2015,05/09/2015,05/09/2015 01:23:29 PM,05/09/2015 01:24:33 PM,05/09/2015 01:25:00 PM,05/09/2015 01:26:55 PM,05/09/2015 01:33:07 PM,05/09/2015 01:44:50 PM,05/09/2015 02:07:30 PM,Code 2 Transport,05/09/2015 02:35:08 PM,0 Block of WATCHMAN WAY,San Francisco,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7553520145946, -122.395257871762)",151291866-52 -160970225,78,16038261,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:24:58 AM,04/06/2016 02:24:58 AM,04/06/2016 02:26:06 AM,04/06/2016 02:26:14 AM,04/06/2016 02:30:33 AM,04/06/2016 02:37:04 AM,04/06/2016 02:54:29 AM,Code 2 Transport,04/06/2016 03:22:54 AM,1300 Block of CHESTNUT ST,San Francisco,94123,B04,16,3235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8021221938701, -122.425543360244)",160970225-78 -153292768,E51,15126705,Water Rescue,11/25/2015,11/25/2015,11/25/2015 04:38:59 PM,11/25/2015 04:40:24 PM,11/25/2015 04:42:00 PM,11/25/2015 04:45:08 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 05:01:16 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,true,Fire,1,ENGINE,10,7,2,Presidio,"(37.8066581989584, -122.47471662098)",153292768-E51 -160922616,64,16036530,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:03:11 PM,04/01/2016 05:04:07 PM,04/01/2016 05:06:22 PM,04/01/2016 05:06:22 PM,04/01/2016 05:08:38 PM,04/01/2016 05:21:44 PM,04/01/2016 05:40:34 PM,Code 2 Transport,04/01/2016 06:01:09 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160922616-64 -160971707,61,16038397,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:54:43 AM,04/06/2016 11:55:55 AM,04/06/2016 11:56:19 AM,04/06/2016 11:58:10 AM,04/06/2016 12:18:14 PM,04/06/2016 12:34:01 PM,04/06/2016 12:39:39 PM,Code 2 Transport,04/06/2016 01:14:55 PM,100 Block of STOCKTON ST,San Francisco,94108,B01,1,1323,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7871003167622, -122.406426031165)",160971707-61 -160974618,78,16038714,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:22:14 PM,04/06/2016 11:24:38 PM,04/06/2016 11:27:15 PM,04/06/2016 11:27:25 PM,04/06/2016 11:34:21 PM,04/06/2016 11:48:35 PM,04/06/2016 11:56:05 PM,Code 2 Transport,04/07/2016 12:36:56 AM,MARKET ST/DRUMM ST,San Francisco,94105,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",160974618-78 -150221416,E01,15008548,Medical Incident,01/22/2015,01/22/2015,01/22/2015 11:37:02 AM,01/22/2015 11:38:10 AM,01/22/2015 11:39:39 AM,01/22/2015 11:41:09 AM,01/22/2015 11:45:46 AM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Code 3 Transport,01/22/2015 12:09:01 PM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",150221416-E01 -143633431,E40,14130005,Medical Incident,12/29/2014,12/29/2014,12/29/2014 10:03:17 PM,12/29/2014 10:03:33 PM,12/29/2014 10:03:45 PM,12/29/2014 10:05:12 PM,12/29/2014 10:09:05 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Code 2 Transport,12/29/2014 10:17:25 PM,2600 Block of 23RD AVE,San Francisco,94116,B08,40,7441,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.738203639933, -122.479590920377)",143633431-E40 -151403068,E39,15053281,Medical Incident,05/20/2015,05/20/2015,05/20/2015 06:30:37 PM,05/20/2015 06:32:06 PM,05/20/2015 06:32:56 PM,05/20/2015 06:34:09 PM,05/20/2015 06:36:17 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Code 2 Transport,05/20/2015 06:55:04 PM,200 Block of CLAREMONT BLVD,San Francisco,94127,B08,39,8611,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7411897106235, -122.464775525939)",151403068-E39 -142132681,74,14073939,Medical Incident,08/01/2014,08/01/2014,08/01/2014 06:05:33 PM,08/01/2014 06:06:59 PM,08/01/2014 06:07:15 PM,08/01/2014 06:07:29 PM,08/01/2014 06:18:12 PM,08/01/2014 06:36:06 PM,08/01/2014 06:49:39 PM,Code 2 Transport,08/01/2014 07:25:33 PM,5200 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7442928064892, -122.439091578977)",142132681-74 -151811308,RS2,15069071,Medical Incident,06/30/2015,06/30/2015,06/30/2015 11:27:26 AM,06/30/2015 11:27:26 AM,06/30/2015 11:27:52 AM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,No Merit,06/30/2015 11:29:31 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,9,Mission,"(37.7643732096664, -122.417478491468)",151811308-RS2 -141210146,E20,14040871,Medical Incident,05/01/2014,05/01/2014,05/01/2014 11:04:09 AM,05/01/2014 11:05:21 AM,05/01/2014 11:05:39 AM,05/01/2014 11:06:48 AM,05/01/2014 11:09:57 AM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,No Merit,05/01/2014 11:12:40 AM,0 Block of FOREST SIDE AVE,SAN FRANCISCO,94127,B08,39,8616,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7424403841446, -122.468088904362)",141210146-E20 -160962144,AM02,16038042,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:13:08 PM,04/05/2016 02:14:08 PM,04/05/2016 02:14:47 PM,04/05/2016 02:15:22 PM,04/05/2016 02:18:07 PM,04/05/2016 02:43:48 PM,04/05/2016 03:02:01 PM,Code 2 Transport,04/05/2016 03:43:14 PM,400 Block of POST ST,San Francisco,94102,B01,1,1362,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",160962144-AM02 -150791159,T03,15030237,Structure Fire,03/20/2015,03/20/2015,03/20/2015 10:30:39 AM,03/20/2015 10:30:53 AM,03/20/2015 10:31:46 AM,03/20/2015 10:32:01 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 10:34:09 AM,POWELL ST/OFARRELL ST,San Francisco,94102,B01,1,1363,3,3,3,false,Alarm,1,TRUCK,3,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",150791159-T03 -151424015,AM16,15054200,Medical Incident,05/22/2015,05/22/2015,05/22/2015 10:32:41 PM,05/22/2015 10:34:16 PM,05/22/2015 10:36:32 PM,05/22/2015 10:37:54 PM,05/22/2015 10:48:47 PM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Unable to Locate,05/22/2015 10:54:33 PM,23RD ST/BARTLETT ST,San Francisco,94110,B06,11,5512,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7537697016513, -122.419705450379)",151424015-AM16 -161002196,AM10,16039828,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:12:48 PM,04/09/2016 04:13:30 PM,04/09/2016 04:14:21 PM,04/09/2016 04:14:51 PM,04/09/2016 04:22:08 PM,04/09/2016 04:42:02 PM,04/09/2016 05:04:48 PM,Code 2 Transport,04/09/2016 05:35:32 PM,7500 Block of GEARY BLVD,San Francisco,94121,B07,34,7264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",161002196-AM10 -150470189,E29,15018138,Citizen Assist / Service Call,02/16/2015,02/15/2015,02/16/2015 01:31:32 AM,02/16/2015 01:33:42 AM,02/16/2015 01:33:56 AM,02/16/2015 01:35:33 AM,02/16/2015 01:39:05 AM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/16/2015 01:56:18 AM,INDIANA ST/MARIPOSA ST,San Francisco,94107,B03,29,2436,3,3,3,true,Alarm,1,ENGINE,1,3,6,Potrero Hill,"(37.7641414045887, -122.391781010422)",150470189-E29 -153300463,T03,15126881,Citizen Assist / Service Call,11/26/2015,11/25/2015,11/26/2015 05:53:49 AM,11/26/2015 05:55:33 AM,11/26/2015 05:55:45 AM,11/26/2015 05:57:17 AM,11/26/2015 06:00:16 AM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Fire,11/26/2015 06:09:22 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",153300463-T03 -152072958,T03,15078992,Alarms,07/26/2015,07/26/2015,07/26/2015 06:28:16 PM,07/26/2015 06:29:39 PM,07/26/2015 06:30:02 PM,07/26/2015 06:31:56 PM,07/26/2015 06:33:25 PM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,Fire,07/26/2015 06:40:37 PM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,false,Alarm,1,TRUCK,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",152072958-T03 -143552330,B03,14126965,Structure Fire,12/21/2014,12/21/2014,12/21/2014 03:03:39 PM,12/21/2014 03:05:21 PM,12/21/2014 03:06:14 PM,12/21/2014 03:06:58 PM,12/21/2014 03:14:14 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 04:25:21 PM,0 Block of CLIPPER COVE WAY,Treasure Isla,94130,B03,48,2931,3,3,3,false,Alarm,1,CHIEF,2,None,6,Treasure Island,"(37.8163207162813, -122.370727071585)",143552330-B03 -160990679,71,16039209,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:59:24 AM,04/08/2016 08:00:39 AM,04/08/2016 08:00:57 AM,04/08/2016 08:01:06 AM,04/08/2016 08:39:48 AM,04/08/2016 08:39:58 AM,04/08/2016 08:42:51 AM,Code 2 Transport,04/08/2016 09:17:33 AM,0 Block of CARMEL ST,San Francisco,94117,B05,12,5257,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7609468144915, -122.44829742127)",160990679-71 -141290897,T07,14043815,Structure Fire,05/09/2014,05/09/2014,05/09/2014 08:53:11 AM,05/09/2014 08:54:02 AM,05/09/2014 08:54:56 AM,05/09/2014 08:55:50 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Fire,05/09/2014 09:15:30 AM,200 Block of DORLAND ST,San Francisco,94114,B02,6,5421,3,3,3,false,Alarm,1,TRUCK,10,2,8,Castro/Upper Market,"(37.7621392187709, -122.429547024002)",141290897-T07 -141732544,B02,14059767,Alarms,06/22/2014,06/22/2014,06/22/2014 06:15:39 PM,06/22/2014 06:17:08 PM,06/22/2014 06:17:38 PM,06/22/2014 06:18:45 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Fire,06/22/2014 06:28:25 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",141732544-B02 -160991358,KM01,16039269,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:30:46 AM,04/08/2016 11:33:26 AM,04/08/2016 11:34:10 AM,04/08/2016 11:34:43 AM,04/08/2016 12:05:31 PM,04/08/2016 12:12:53 PM,04/08/2016 12:42:24 PM,Code 2 Transport,04/08/2016 01:11:22 PM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",160991358-KM01 -142411494,E37,14083845,Medical Incident,08/29/2014,08/29/2014,08/29/2014 12:07:47 PM,08/29/2014 12:09:24 PM,08/29/2014 12:09:38 PM,08/29/2014 12:10:41 PM,08/29/2014 12:12:20 PM,04/25/2016 01:15:23 PM,04/25/2016 01:15:23 PM,Code 2 Transport,08/29/2014 12:18:16 PM,23RD ST/KANSAS ST,San Francisco,94107,B10,37,2556,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7545121210191, -122.402557510955)",142411494-E37 -143430381,KM07,14121811,Medical Incident,12/09/2014,12/08/2014,12/09/2014 04:14:37 AM,12/09/2014 04:14:37 AM,12/09/2014 04:17:14 AM,12/09/2014 04:18:30 AM,12/09/2014 04:26:19 AM,12/09/2014 04:38:44 AM,12/09/2014 05:00:09 AM,Code 2 Transport,12/09/2014 05:38:56 AM,22ND ST/PENNSYLVANIA AV,San Francisco,94107,B10,37,2535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7576507860287, -122.393122630932)",143430381-KM07 -143592176,KM03,14128565,Medical Incident,12/25/2014,12/25/2014,12/25/2014 08:04:00 PM,12/25/2014 08:04:49 PM,12/25/2014 08:05:20 PM,12/25/2014 08:07:53 PM,12/25/2014 08:10:58 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Against Medical Advice,12/25/2014 08:52:26 PM,2200 Block of MASON ST,San Francisco,94133,B01,28,1424,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8040752422338, -122.413359103869)",143592176-KM03 -143290521,AP,14116568,Aircraft Emergency,11/25/2014,11/24/2014,11/25/2014 06:42:29 AM,11/25/2014 06:42:29 AM,11/25/2014 06:42:29 AM,11/25/2014 06:42:29 AM,11/25/2014 06:42:29 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/25/2014 06:42:58 AM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Fire,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",143290521-AP -150901535,E43,15034272,Medical Incident,03/31/2015,03/31/2015,03/31/2015 12:17:00 PM,03/31/2015 12:18:00 PM,03/31/2015 12:18:24 PM,03/31/2015 12:20:00 PM,03/31/2015 12:22:56 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Code 2 Transport,03/31/2015 12:38:20 PM,MISSION ST/PERSIA AV,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",150901535-E43 -150371998,T15,15014328,Other,02/06/2015,02/06/2015,02/06/2015 01:48:09 PM,02/06/2015 01:51:22 PM,02/06/2015 01:54:15 PM,02/06/2015 01:56:29 PM,02/06/2015 02:01:15 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,Fire,02/06/2015 02:08:56 PM,0 Block of NAYLOR ST,San Francisco,94112,B09,43,6226,3,3,3,false,Alarm,1,TRUCK,1,9,11,Excelsior,"(37.7111261027761, -122.433838208452)",150371998-T15 -160992900,KM11,16039408,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:59:07 PM,04/08/2016 05:59:54 PM,04/08/2016 06:00:10 PM,04/08/2016 06:00:52 PM,04/08/2016 06:07:59 PM,04/08/2016 06:33:24 PM,04/08/2016 06:49:48 PM,Code 2 Transport,04/08/2016 07:40:42 PM,5100 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7468468006918, -122.44040482926)",160992900-KM11 -150110892,61,15004291,Medical Incident,01/11/2015,01/10/2015,01/11/2015 07:59:34 AM,01/11/2015 08:02:19 AM,01/11/2015 08:52:58 AM,01/11/2015 08:52:58 AM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Patient Declined Transport,01/11/2015 08:55:05 AM,STEUART ST/MISSION ST,San Francisco,94105,B03,35,2111,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",150110892-61 -153090987,E21,15118671,Medical Incident,11/05/2015,11/05/2015,11/05/2015 08:57:14 AM,11/05/2015 08:57:33 AM,11/05/2015 08:57:44 AM,11/05/2015 08:59:43 AM,11/05/2015 09:02:01 AM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,Against Medical Advice,11/05/2015 09:18:13 AM,600 Block of DIVISADERO ST,San Francisco,94117,B05,21,4146,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7754436617793, -122.438015276303)",153090987-E21 -160970609,55,16038295,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:16:50 AM,04/06/2016 07:16:50 AM,04/06/2016 07:17:32 AM,04/06/2016 07:17:46 AM,04/06/2016 07:24:55 AM,04/06/2016 08:00:26 AM,04/06/2016 09:10:23 AM,Code 2 Transport,04/06/2016 09:18:22 AM,2400 Block of GREAT HWY,San Francisco,94116,B08,23,7731,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7407574919496, -122.506743511008)",160970609-55 -160922577,AM10,16036524,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:52:04 PM,04/01/2016 04:53:17 PM,04/01/2016 05:00:07 PM,04/01/2016 05:00:07 PM,04/01/2016 05:11:11 PM,04/01/2016 05:19:50 PM,04/01/2016 05:48:10 PM,Code 2 Transport,04/01/2016 06:02:55 PM,500 Block of DOLORES ST,San Francisco,94114,B06,7,5435,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.759419804663, -122.426036566526)",160922577-AM10 -160953330,71,16037759,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 06:59:23 PM,04/04/2016 07:00:52 PM,04/04/2016 07:02:41 PM,04/04/2016 07:03:21 PM,04/04/2016 07:19:22 PM,04/04/2016 07:40:20 PM,04/04/2016 08:01:18 PM,Code 2 Transport,04/04/2016 08:36:27 PM,CALL BOX: FS YB-BLDG 213,Yerba Buena,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",160953330-71 -151062471,E17,15040112,Medical Incident,04/16/2015,04/16/2015,04/16/2015 03:32:25 PM,04/16/2015 03:33:01 PM,04/16/2015 03:33:22 PM,04/16/2015 03:34:37 PM,04/16/2015 03:37:42 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Code 3 Transport,04/16/2015 04:38:28 PM,PALOU AV/QUINT ST,San Francisco,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7371561854175, -122.396515237254)",151062471-E17 -153162760,82,15121511,Medical Incident,11/12/2015,11/12/2015,11/12/2015 04:48:16 PM,11/12/2015 04:48:16 PM,11/12/2015 04:48:16 PM,11/12/2015 04:48:16 PM,11/12/2015 04:48:16 PM,11/12/2015 04:49:25 PM,11/12/2015 05:05:56 PM,Code 2 Transport,11/12/2015 05:45:07 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",153162760-82 -160921236,75,16036393,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:40:30 AM,04/01/2016 10:44:07 AM,04/01/2016 10:46:00 AM,04/01/2016 10:46:17 AM,04/01/2016 10:55:33 AM,04/01/2016 11:06:29 AM,04/01/2016 11:18:03 AM,Code 2 Transport,04/01/2016 11:54:36 AM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160921236-75 -160923422,AM20,16036603,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:47:58 PM,04/01/2016 08:49:36 PM,04/01/2016 08:50:02 PM,04/01/2016 08:50:35 PM,04/01/2016 09:00:15 PM,04/01/2016 09:13:11 PM,04/01/2016 09:36:23 PM,Code 2 Transport,04/01/2016 10:15:39 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.738908396847, -122.468107626184)",160923422-AM20 -142161474,BE1,14074884,Structure Fire,08/04/2014,08/04/2014,08/04/2014 12:03:58 PM,08/04/2014 12:04:28 PM,08/04/2014 12:10:25 PM,08/04/2014 12:56:58 PM,08/04/2014 12:56:58 PM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,Other,08/04/2014 03:59:21 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,,3,3,false,Fire,3,SUPPORT,,2,6,Tenderloin,"(37.7810107317128, -122.412575156486)",142161474-BE1 -151932495,T02,15073721,Structure Fire,07/12/2015,07/12/2015,07/12/2015 04:32:48 PM,07/12/2015 04:33:57 PM,07/12/2015 04:34:12 PM,07/12/2015 04:35:27 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 04:39:14 PM,2900 Block of GOUGH ST,San Francisco,94123,B04,16,3244,3,3,3,false,Alarm,1,TRUCK,8,4,2,Marina,"(37.8004333103903, -122.427803521956)",151932495-T02 -151223659,E20,15046489,Medical Incident,05/02/2015,05/02/2015,05/02/2015 11:24:33 PM,05/02/2015 11:25:53 PM,05/02/2015 11:27:30 PM,05/02/2015 11:29:21 PM,05/02/2015 11:32:25 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Code 2 Transport,05/02/2015 11:49:27 PM,600 Block of CLARENDON AVE,San Francisco,94131,B08,20,5367,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7519950375446, -122.458952047787)",151223659-E20 -153442239,E16,15132461,Water Rescue,12/10/2015,12/10/2015,12/10/2015 02:47:35 PM,12/10/2015 02:47:35 PM,12/10/2015 02:48:41 PM,12/10/2015 02:49:52 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/10/2015 03:22:48 PM,900 Block of BEACH ST,San Francisco,94109,B01,28,3135,3,3,3,true,Fire,1,ENGINE,9,1,2,Russian Hill,"(37.806210458565, -122.424360355387)",153442239-E16 -141120065,55,14037707,Medical Incident,04/22/2014,04/21/2014,04/22/2014 07:22:26 AM,04/22/2014 07:23:12 AM,04/22/2014 07:49:01 AM,04/22/2014 07:49:01 AM,04/22/2014 07:55:20 AM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Fire,04/22/2014 08:15:30 AM,1000 Block of 7TH ST,SAN FRANCISCO,94158,B03,29,2362,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7692548745928, -122.398349317953)",141120065-55 -142161248,83,14074859,Medical Incident,08/04/2014,08/04/2014,08/04/2014 11:02:41 AM,08/04/2014 11:04:07 AM,08/04/2014 11:04:27 AM,08/04/2014 11:05:01 AM,08/04/2014 11:12:17 AM,08/04/2014 11:39:25 AM,08/04/2014 11:57:49 AM,Code 2 Transport,08/04/2014 12:42:18 PM,3000 Block of SCOTT ST,San Francisco,94123,B04,16,4116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7978676957246, -122.440635763801)",142161248-83 -153210780,73,15123326,Medical Incident,11/17/2015,11/17/2015,11/17/2015 08:24:14 AM,11/17/2015 08:28:57 AM,11/17/2015 08:29:42 AM,11/17/2015 08:29:57 AM,11/17/2015 08:51:19 AM,11/17/2015 09:09:36 AM,11/17/2015 09:26:23 AM,Code 2 Transport,11/17/2015 10:04:39 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",153210780-73 -152862896,B10,15109962,Structure Fire,10/13/2015,10/13/2015,10/13/2015 04:32:11 PM,10/13/2015 04:33:28 PM,10/13/2015 04:33:45 PM,10/13/2015 04:34:43 PM,10/13/2015 04:39:36 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,Fire,10/13/2015 04:59:22 PM,1800 Block of 4TH ST,San Francisco,94158,B03,4,2436,3,3,3,false,Alarm,1,CHIEF,6,3,6,Potrero Hill,"(37.7654965381521, -122.390602942705)",152862896-B10 -160982262,KM12,16038962,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:27:06 PM,04/07/2016 02:27:51 PM,04/07/2016 02:28:34 PM,04/07/2016 02:29:21 PM,04/07/2016 02:40:14 PM,04/07/2016 03:06:13 PM,04/07/2016 03:41:10 PM,Code 2 Transport,04/07/2016 04:12:21 PM,1400 Block of 43RD AVE,San Francisco,94122,B08,23,7652,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7596302865022, -122.50271641994)",160982262-KM12 -151343423,75,15050995,Medical Incident,05/14/2015,05/14/2015,05/14/2015 08:09:50 PM,05/14/2015 08:10:53 PM,05/14/2015 08:11:26 PM,05/14/2015 08:12:00 PM,05/14/2015 08:13:09 PM,05/14/2015 08:27:45 PM,05/14/2015 08:31:40 PM,Code 3 Transport,05/14/2015 09:34:23 PM,1900 Block of BROADWAY,San Francisco,94123,B04,38,3355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7950545006064, -122.429177912873)",151343423-75 -160962669,AM08,16038083,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:18:33 PM,04/05/2016 04:19:30 PM,04/05/2016 04:19:47 PM,04/05/2016 04:20:37 PM,04/05/2016 04:26:14 PM,04/05/2016 04:35:47 PM,04/05/2016 04:50:42 PM,Code 2 Transport,04/05/2016 05:23:33 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160962669-AM08 -160980660,85,16038795,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:03:51 AM,04/07/2016 07:05:18 AM,04/07/2016 07:05:47 AM,04/07/2016 07:05:56 AM,04/07/2016 07:11:27 AM,04/07/2016 07:20:25 AM,04/07/2016 07:50:41 AM,Code 2 Transport,04/07/2016 08:21:41 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160980660-85 -141752110,E03,14060435,Medical Incident,06/24/2014,06/24/2014,06/24/2014 03:17:29 PM,06/24/2014 03:21:38 PM,06/24/2014 03:43:39 PM,06/24/2014 03:44:22 PM,06/24/2014 03:52:55 PM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,No Merit,06/24/2014 03:57:40 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",141752110-E03 -152110105,70,15080203,Medical Incident,07/30/2015,07/29/2015,07/30/2015 12:48:07 AM,07/30/2015 12:50:12 AM,07/30/2015 12:50:48 AM,07/30/2015 12:51:03 AM,07/30/2015 01:00:35 AM,07/30/2015 01:11:44 AM,07/30/2015 01:21:32 AM,Code 2 Transport,07/30/2015 01:44:27 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",152110105-70 -160991787,KM01,16039308,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 01:32:15 PM,04/08/2016 01:32:15 PM,04/08/2016 01:36:21 PM,04/08/2016 01:37:41 PM,04/08/2016 01:56:06 PM,04/08/2016 02:15:11 PM,04/08/2016 02:30:46 PM,Code 2 Transport,04/08/2016 02:59:02 PM,16TH ST/TREAT AV,San Francisco,94110,B02,29,5241,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7654476102712, -122.413105244954)",160991787-KM01 -142032717,E05,14070342,Traffic Collision,07/22/2014,07/22/2014,07/22/2014 06:14:51 PM,07/22/2014 06:14:51 PM,07/22/2014 06:16:48 PM,07/22/2014 06:18:04 PM,07/22/2014 06:19:59 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Code 2 Transport,07/22/2014 06:33:32 PM,FRANKLIN ST/EDDY ST,San Francisco,94109,B02,36,3216,2,3,3,true,Non Life-threatening,1,ENGINE,2,2,5,Western Addition,"(37.7826853684048, -122.422463744653)",142032717-E05 -152464085,T02,15094030,Alarms,09/03/2015,09/03/2015,09/03/2015 10:31:05 PM,09/03/2015 10:32:20 PM,09/03/2015 10:32:35 PM,09/03/2015 10:34:02 PM,09/03/2015 10:35:55 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Fire,09/03/2015 10:49:19 PM,0 Block of NOBLES ALY,San Francisco,94133,B01,28,1265,3,3,3,true,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8009233422917, -122.407362148981)",152464085-T02 -142030330,E03,14070114,Medical Incident,07/22/2014,07/21/2014,07/22/2014 04:30:45 AM,07/22/2014 04:34:16 AM,07/22/2014 04:35:24 AM,07/22/2014 04:38:40 AM,07/22/2014 04:41:28 AM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Code 2 Transport,07/22/2014 04:46:18 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",142030330-E03 -152183853,71,15083204,Medical Incident,08/06/2015,08/06/2015,08/06/2015 10:27:56 PM,08/06/2015 10:30:05 PM,08/06/2015 10:30:16 PM,08/06/2015 10:30:24 PM,08/06/2015 10:36:08 PM,08/06/2015 10:44:59 PM,08/06/2015 10:59:35 PM,Code 2 Transport,08/06/2015 11:31:56 PM,1100 Block of VALENCIA ST,San Francisco,94110,B06,11,5512,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.754503089819, -122.420819132506)",152183853-71 -151570251,T06,15059780,Structure Fire,06/06/2015,06/05/2015,06/06/2015 01:45:31 AM,06/06/2015 01:45:31 AM,06/06/2015 01:46:20 AM,06/06/2015 01:48:02 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Fire,06/06/2015 01:50:01 AM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",151570251-T06 -150470234,E02,15018146,Medical Incident,02/16/2015,02/15/2015,02/16/2015 02:12:11 AM,02/16/2015 02:12:11 AM,02/16/2015 02:12:38 AM,02/16/2015 02:14:41 AM,02/16/2015 02:16:31 AM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Code 2 Transport,02/16/2015 02:24:41 AM,COLUMBUS AV/BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",150470234-E02 -160990499,71,16039198,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:41:37 AM,04/08/2016 06:44:24 AM,04/08/2016 06:44:36 AM,04/08/2016 06:45:14 AM,04/08/2016 06:48:28 AM,04/08/2016 07:12:57 AM,04/08/2016 07:40:54 AM,Code 2 Transport,04/08/2016 07:52:12 AM,400 Block of 16TH AVE,San Francisco,94118,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7795682474859, -122.474950761103)",160990499-71 -160990199,79,16039169,Medical Incident,04/08/2016,04/07/2016,04/08/2016 01:50:46 AM,04/08/2016 01:55:09 AM,04/08/2016 01:56:16 AM,04/08/2016 01:57:54 AM,04/08/2016 02:02:53 AM,04/08/2016 02:17:26 AM,04/08/2016 02:41:47 AM,Code 2 Transport,04/08/2016 03:14:40 AM,4100 Block of NORIEGA ST,San Francisco,94122,B08,23,7725,E,E,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7527950009872, -122.507985239819)",160990199-79 -152893177,E13,15111149,Medical Incident,10/16/2015,10/16/2015,10/16/2015 06:32:56 PM,10/16/2015 06:34:49 PM,10/16/2015 06:35:10 PM,10/16/2015 06:36:04 PM,10/16/2015 06:40:35 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 06:47:14 PM,GEARY ST/GRANT AV,San Francisco,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7877654947625, -122.405041399977)",152893177-E13 -160961406,AM12,16037971,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:16:07 AM,04/05/2016 11:19:17 AM,04/05/2016 11:19:39 AM,04/05/2016 11:20:12 AM,04/05/2016 11:51:26 AM,04/05/2016 11:51:39 AM,04/05/2016 12:20:28 PM,Code 2 Transport,04/05/2016 12:59:16 PM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,3,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160961406-AM12 -151292487,B04,15049031,Alarms,05/09/2015,05/09/2015,05/09/2015 04:23:23 PM,05/09/2015 04:24:30 PM,05/09/2015 04:24:41 PM,05/09/2015 04:26:25 PM,05/09/2015 04:30:28 PM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Fire,05/09/2015 04:48:35 PM,1200 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",151292487-B04 -142192555,E13,14076052,Structure Fire,08/07/2014,08/07/2014,08/07/2014 05:27:07 PM,08/07/2014 05:27:07 PM,08/07/2014 05:27:25 PM,08/07/2014 05:28:51 PM,08/07/2014 05:30:43 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Fire,08/07/2014 05:31:26 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1112,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",142192555-E13 -160980331,85,16038760,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:05:36 AM,04/07/2016 03:05:36 AM,04/07/2016 03:05:46 AM,04/07/2016 03:05:58 AM,04/07/2016 03:09:10 AM,04/07/2016 03:24:45 AM,04/07/2016 04:06:37 AM,Code 2 Transport,04/07/2016 04:32:27 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160980331-85 -141250307,E05,14042438,Citizen Assist / Service Call,05/05/2014,05/05/2014,05/05/2014 04:58:51 PM,05/05/2014 05:01:03 PM,05/05/2014 05:01:39 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 05:57:47 PM,CALIFORNIA ST/WEBSTER ST,SAN FRANCISCO,94115,B04,38,3511,3,3,3,true,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7891152301036, -122.432196681009)",141250307-E05 -160932074,KM12,16036900,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:45:09 PM,04/02/2016 02:45:24 PM,04/02/2016 02:45:42 PM,04/02/2016 02:46:47 PM,04/02/2016 02:53:41 PM,04/02/2016 03:36:06 PM,04/02/2016 03:45:28 PM,Code 3 Transport,04/02/2016 04:01:43 PM,600 Block of MOSCOW ST,San Francisco,94112,B09,43,6162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7173988817758, -122.430625202274)",160932074-KM12 -141220226,B01,14041344,Alarms,05/02/2014,05/02/2014,05/02/2014 02:04:57 PM,05/02/2014 02:05:48 PM,05/02/2014 02:05:55 PM,05/02/2014 02:07:30 PM,05/02/2014 02:09:33 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 02:13:55 PM,800 Block of KEARNY ST,SAN FRANCISCO,94111,B01,13,1245,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.795777854883, -122.404981817889)",141220226-B01 -142992214,E07,14105626,Medical Incident,10/26/2014,10/26/2014,10/26/2014 03:33:52 PM,10/26/2014 03:35:16 PM,10/26/2014 03:38:35 PM,10/26/2014 03:38:35 PM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,Code 2 Transport,10/26/2014 03:55:21 PM,200 Block of SAN CARLOS ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,ENGINE,3,6,9,Mission,"(37.7593905434172, -122.419839098278)",142992214-E07 -160950206,62,16037493,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:37:34 AM,04/04/2016 02:39:25 AM,04/04/2016 02:40:59 AM,04/04/2016 02:41:15 AM,04/04/2016 02:52:52 AM,04/04/2016 03:14:58 AM,04/04/2016 03:35:30 AM,Code 2 Transport,04/04/2016 03:41:31 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160950206-62 -151002528,85,15037922,Medical Incident,04/10/2015,04/10/2015,04/10/2015 04:52:05 PM,04/10/2015 04:53:20 PM,04/10/2015 04:56:29 PM,04/10/2015 04:56:45 PM,04/10/2015 05:21:24 PM,04/10/2015 05:26:40 PM,04/10/2015 05:30:04 PM,Code 2 Transport,04/10/2015 05:58:11 PM,1300 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",151002528-85 -143291552,B01,14116646,Alarms,11/25/2014,11/25/2014,11/25/2014 11:48:23 AM,11/25/2014 11:51:00 AM,11/25/2014 11:51:54 AM,11/25/2014 11:52:19 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/25/2014 11:56:15 AM,2200 Block of STOCKTON ST,San Francisco,94133,B01,28,1341,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8064867194015, -122.410472573644)",143291552-B01 -141411588,E12,14048322,Industrial Accidents,05/21/2014,05/21/2014,05/21/2014 12:18:32 PM,05/21/2014 12:24:56 PM,05/21/2014 12:30:54 PM,05/21/2014 12:31:27 PM,05/21/2014 12:36:35 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 12:55:46 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B03,1,2245,3,3,3,true,Fire,1,ENGINE,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",141411588-E12 -160932388,63,16036934,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:14:28 PM,04/02/2016 04:17:05 PM,04/02/2016 04:18:40 PM,04/02/2016 04:18:49 PM,04/02/2016 04:35:06 PM,04/02/2016 04:47:24 PM,04/02/2016 04:55:01 PM,Code 2 Transport,04/02/2016 05:14:36 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160932388-63 -142380864,E11,14082721,Medical Incident,08/26/2014,08/26/2014,08/26/2014 08:52:22 AM,08/26/2014 08:54:35 AM,08/26/2014 09:02:28 AM,08/26/2014 09:04:32 AM,08/26/2014 09:07:34 AM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,No Merit,08/26/2014 09:15:08 AM,18TH ST/MISSION ST,San Francisco,94110,B02,7,5423,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",142380864-E11 -161000221,76,16039581,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:27:17 AM,04/09/2016 01:27:58 AM,04/09/2016 01:28:08 AM,04/09/2016 01:28:19 AM,04/09/2016 01:31:08 AM,04/09/2016 01:42:12 AM,04/09/2016 01:54:22 AM,Code 3 Transport,04/09/2016 02:26:54 AM,200 Block of SUTTER ST,San Francisco,94108,B01,13,1242,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7897518225049, -122.404013943546)",161000221-76 -152350836,62,15089506,Medical Incident,08/23/2015,08/22/2015,08/23/2015 07:51:48 AM,08/23/2015 07:52:29 AM,08/23/2015 07:52:46 AM,08/23/2015 07:53:51 AM,08/23/2015 08:01:15 AM,08/23/2015 08:22:25 AM,08/23/2015 08:22:36 AM,Code 2 Transport,08/23/2015 08:40:46 AM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",152350836-62 -143232855,E02,14114480,Structure Fire,11/19/2014,11/19/2014,11/19/2014 06:52:37 PM,11/19/2014 06:53:49 PM,11/19/2014 06:56:01 PM,11/19/2014 06:57:00 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Fire,11/19/2014 07:00:10 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,true,Alarm,1,ENGINE,9,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",143232855-E02 -142623612,B01,14091783,Alarms,09/19/2014,09/19/2014,09/19/2014 09:25:51 PM,09/19/2014 09:27:31 PM,09/19/2014 09:27:43 PM,09/19/2014 09:29:09 PM,09/19/2014 09:33:52 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Fire,09/19/2014 09:41:19 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",142623612-B01 -143121806,RC2,14110521,Medical Incident,11/08/2014,11/08/2014,11/08/2014 01:28:42 PM,11/08/2014 01:30:21 PM,11/08/2014 01:33:10 PM,11/08/2014 01:33:10 PM,11/08/2014 01:34:00 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Code 2 Transport,11/08/2014 01:46:32 PM,1700 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7823892979181, -122.47791315608)",143121806-RC2 -150462442,E05,15017979,Citizen Assist / Service Call,02/15/2015,02/15/2015,02/15/2015 04:06:27 PM,02/15/2015 04:08:34 PM,02/15/2015 04:09:08 PM,02/15/2015 04:13:06 PM,02/15/2015 04:13:50 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/15/2015 04:20:08 PM,TURK ST/SCOTT ST,San Francisco,94115,B05,5,3643,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7798673958952, -122.437071862847)",150462442-E05 -160973843,78,16038634,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 07:30:36 PM,04/06/2016 07:31:01 PM,04/06/2016 07:31:27 PM,04/06/2016 07:31:38 PM,04/06/2016 07:36:36 PM,04/06/2016 08:08:57 PM,04/06/2016 08:25:03 PM,Code 2 Transport,04/06/2016 08:51:45 PM,BRYANT ST/2ND ST,San Francisco,94107,B03,8,2152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7830778523618, -122.393618077491)",160973843-78 -141601837,T11,14055184,Alarms,06/09/2014,06/09/2014,06/09/2014 02:15:08 PM,06/09/2014 02:16:37 PM,06/09/2014 02:16:54 PM,06/09/2014 02:18:34 PM,06/09/2014 02:24:51 PM,04/25/2016 01:16:52 PM,04/25/2016 01:16:52 PM,Fire,06/09/2014 02:28:11 PM,0 Block of ONONDAGA AVE,San Francisco,94112,B09,43,6123,3,3,3,false,Alarm,1,TRUCK,3,9,11,Outer Mission,"(37.7214442237375, -122.438020843578)",141601837-T11 -151393801,E35,15052985,Structure Fire,05/19/2015,05/19/2015,05/19/2015 11:06:07 PM,05/19/2015 11:06:07 PM,05/19/2015 11:06:19 PM,05/19/2015 11:10:25 PM,05/19/2015 11:10:25 PM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/19/2015 11:10:31 PM,1ST ST/HARRISON ST,San Francisco,94105,B03,35,2136,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860675314585, -122.392936686281)",151393801-E35 -142390808,T11,14083043,Alarms,08/27/2014,08/27/2014,08/27/2014 08:29:50 AM,08/27/2014 08:31:20 AM,08/27/2014 08:31:41 AM,08/27/2014 08:33:52 AM,08/27/2014 08:37:55 AM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Fire,08/27/2014 08:39:20 AM,200 Block of CORTLAND AVE,San Francisco,94110,B06,32,5652,3,3,3,false,Alarm,1,TRUCK,2,6,9,Bernal Heights,"(37.7395659399142, -122.419397044846)",142390808-T11 -151481290,T02,15056292,Vehicle Fire,05/28/2015,05/28/2015,05/28/2015 11:04:04 AM,05/28/2015 11:05:29 AM,05/28/2015 11:05:38 AM,05/28/2015 11:07:03 AM,05/28/2015 11:10:35 AM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Fire,05/28/2015 11:11:56 AM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Fire,1,TRUCK,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",151481290-T02 -160973944,68,16038643,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:55:08 PM,04/06/2016 07:56:41 PM,04/06/2016 07:57:54 PM,04/06/2016 07:58:06 PM,04/06/2016 08:04:50 PM,04/06/2016 08:20:49 PM,04/06/2016 08:55:45 PM,Code 2 Transport,04/06/2016 09:20:58 PM,0 Block of PEREGO TER,San Francisco,94131,B06,24,5282,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Twin Peaks,"(37.7504497937546, -122.444702072201)",160973944-68 -153272505,T07,15125945,Structure Fire,11/23/2015,11/23/2015,11/23/2015 04:14:58 PM,11/23/2015 04:17:18 PM,11/23/2015 04:17:25 PM,11/23/2015 04:18:59 PM,11/23/2015 04:21:08 PM,04/25/2016 01:07:02 PM,04/25/2016 01:07:02 PM,Fire,11/23/2015 04:22:50 PM,3300 Block of 23RD ST,San Francisco,94110,B06,11,5512,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7537483769495, -122.419144470556)",153272505-T07 -150871667,KM02,15033213,Medical Incident,03/28/2015,03/28/2015,03/28/2015 12:28:29 PM,03/28/2015 12:29:47 PM,03/28/2015 12:30:10 PM,03/28/2015 12:31:16 PM,03/28/2015 12:48:17 PM,03/28/2015 12:55:32 PM,03/28/2015 01:14:24 PM,Code 3 Transport,03/28/2015 02:07:00 PM,1400 Block of FLOUNDER CT,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8265525347336, -122.374807644457)",150871667-KM02 -141010043,T12,14033998,Citizen Assist / Service Call,04/11/2014,04/10/2014,04/11/2014 03:39:40 AM,04/11/2014 03:41:29 AM,04/11/2014 03:42:02 AM,04/11/2014 03:43:41 AM,04/11/2014 03:49:49 AM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Fire,04/11/2014 04:16:33 AM,100 Block of LAWTON ST,SAN FRANCISCO,94122,B08,22,7335,3,3,3,false,Alarm,1,TRUCK,1,8,7,Inner Sunset,"(37.7584599284468, -122.464312701704)",141010043-T12 -143483474,KM07,14124395,Medical Incident,12/14/2014,12/14/2014,12/14/2014 09:48:47 PM,12/14/2014 09:50:34 PM,12/14/2014 09:50:48 PM,12/14/2014 09:53:23 PM,12/14/2014 09:57:59 PM,12/14/2014 10:15:24 PM,12/14/2014 10:42:29 PM,Code 2 Transport,12/14/2014 10:50:59 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",143483474-KM07 -160932514,AM16,16036950,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:48:59 PM,04/02/2016 04:50:18 PM,04/02/2016 04:52:20 PM,04/02/2016 04:53:32 PM,04/02/2016 05:02:33 PM,04/02/2016 05:19:50 PM,04/02/2016 05:38:26 PM,Code 2 Transport,04/02/2016 06:07:45 PM,2900 Block of DIVISADERO ST,San Francisco,94123,B04,16,4165,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.7967238761875, -122.442116502502)",160932514-AM16 -141502782,66,14051653,Medical Incident,05/30/2014,05/30/2014,05/30/2014 06:56:41 PM,05/30/2014 06:59:29 PM,05/30/2014 07:10:29 PM,05/30/2014 07:11:11 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Unable to Locate,05/30/2014 07:21:30 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",141502782-66 -153171716,E36,15121816,Medical Incident,11/13/2015,11/13/2015,11/13/2015 11:49:37 AM,11/13/2015 11:50:21 AM,11/13/2015 11:50:40 AM,11/13/2015 11:52:19 AM,11/13/2015 11:53:46 AM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,Code 2 Transport,11/13/2015 12:16:06 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",153171716-E36 -160982298,63,16038965,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:36:42 PM,04/07/2016 02:38:12 PM,04/07/2016 02:39:05 PM,04/07/2016 02:39:15 PM,04/07/2016 02:44:09 PM,04/07/2016 02:51:44 PM,04/07/2016 03:11:28 PM,Code 2 Transport,04/07/2016 03:55:09 PM,900 Block of GREEN ST,San Francisco,94133,B01,2,1441,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",160982298-63 -161001622,76,16039766,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:09:55 PM,04/09/2016 01:09:55 PM,04/09/2016 01:11:00 PM,04/09/2016 01:11:06 PM,04/09/2016 01:14:00 PM,04/09/2016 01:22:01 PM,04/09/2016 01:35:22 PM,Code 2 Transport,04/09/2016 01:59:05 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",161001622-76 -160980519,70,16038786,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:26:49 AM,04/07/2016 05:27:29 AM,04/07/2016 05:27:45 AM,04/07/2016 05:27:54 AM,04/07/2016 05:33:41 AM,04/07/2016 05:43:07 AM,04/07/2016 05:52:20 AM,Code 3 Transport,04/07/2016 06:30:39 AM,200 Block of NAPLES ST,San Francisco,94112,B09,43,6142,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7247649649334, -122.428320157023)",160980519-70 -152110085,62,15080200,Medical Incident,07/30/2015,07/29/2015,07/30/2015 12:35:02 AM,07/30/2015 12:36:13 AM,07/30/2015 12:36:51 AM,07/30/2015 12:37:16 AM,07/30/2015 12:39:17 AM,07/30/2015 12:59:24 AM,07/30/2015 01:15:09 AM,Code 2 Transport,07/30/2015 01:49:06 AM,200 Block of MASON ST,San Francisco,94102,B03,1,1366,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",152110085-62 -142683589,E06,14094102,Structure Fire,09/25/2014,09/25/2014,09/25/2014 09:58:21 PM,09/25/2014 10:00:12 PM,09/25/2014 10:00:53 PM,09/25/2014 10:01:48 PM,09/25/2014 10:03:53 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Fire,09/25/2014 10:04:53 PM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,3,3,3,true,Alarm,1,ENGINE,6,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",142683589-E06 -150061360,E25,15002243,Other,01/06/2015,01/06/2015,01/06/2015 11:26:21 AM,01/06/2015 11:27:49 AM,01/06/2015 11:28:24 AM,01/06/2015 11:28:32 AM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Other,01/06/2015 11:29:26 AM,HUDSON AV/BERTHA LN,San Francisco,94124,B10,17,6626,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.732422175742, -122.380184589161)",150061360-E25 -160963069,76,16038122,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:44:19 PM,04/05/2016 05:45:08 PM,04/05/2016 05:45:19 PM,04/05/2016 05:45:41 PM,04/05/2016 05:53:17 PM,04/05/2016 06:09:31 PM,04/05/2016 06:35:04 PM,Code 2 Transport,04/05/2016 06:56:23 PM,600 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",160963069-76 -150403966,68,15015799,Traffic Collision,02/09/2015,02/09/2015,02/09/2015 11:39:01 PM,02/09/2015 11:42:37 PM,02/09/2015 11:42:48 PM,02/09/2015 11:43:08 PM,02/09/2015 11:44:41 PM,02/10/2015 12:00:07 AM,02/10/2015 12:36:15 AM,Code 2 Transport,02/10/2015 01:09:00 AM,OAK ST/OCTAVIA ST,San Francisco,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748247940204, -122.42413649936)",150403966-68 -142682081,E20,14093964,Traffic Collision,09/25/2014,09/25/2014,09/25/2014 03:10:12 PM,09/25/2014 03:12:22 PM,09/25/2014 03:13:05 PM,09/25/2014 03:14:23 PM,09/25/2014 03:15:45 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Code 3 Transport,09/25/2014 03:59:53 PM,0 Block of DELLBROOK AVE,San Francisco,94131,B08,20,5351,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7495984464655, -122.454170280228)",142682081-E20 -161002488,71,16039862,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:40:42 PM,04/09/2016 05:41:43 PM,04/09/2016 05:42:46 PM,04/09/2016 05:42:53 PM,04/09/2016 05:59:49 PM,04/09/2016 06:16:53 PM,04/09/2016 06:38:46 PM,Code 2 Transport,04/09/2016 07:14:11 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",161002488-71 -160952580,74,16037689,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:55:51 PM,04/04/2016 03:57:44 PM,04/04/2016 03:58:20 PM,04/04/2016 03:59:02 PM,04/04/2016 04:01:32 PM,04/04/2016 04:11:34 PM,04/04/2016 04:18:45 PM,Code 2 Transport,04/04/2016 04:30:52 PM,900 Block of OAK ST,San Francisco,94117,B05,21,4141,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7735018159169, -122.434940936471)",160952580-74 -141100195,E21,14037124,Medical Incident,04/20/2014,04/20/2014,04/20/2014 03:07:55 PM,04/20/2014 03:10:31 PM,04/20/2014 03:11:04 PM,04/20/2014 03:11:50 PM,04/20/2014 03:13:43 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Code 2 Transport,04/20/2014 03:24:03 PM,1600 Block of MCALLISTER ST,SAN FRANCISCO,94115,B05,21,4151,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7777447403026, -122.439206964463)",141100195-E21 -160952784,65,16037711,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 04:47:23 PM,04/04/2016 04:47:32 PM,04/04/2016 04:48:00 PM,04/04/2016 04:48:07 PM,04/04/2016 04:57:28 PM,04/04/2016 05:09:59 PM,04/04/2016 05:41:35 PM,Code 2 Transport,04/04/2016 06:24:14 PM,WEBSTER ST/MCALLISTER ST,San Francisco,94117,B05,5,3521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7788509281441, -122.43004726646)",160952784-65 -141942926,85,14067398,Structure Fire,07/13/2014,07/13/2014,07/13/2014 08:45:04 PM,07/13/2014 08:45:23 PM,07/13/2014 08:45:39 PM,07/13/2014 08:46:30 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Fire,07/13/2014 08:52:41 PM,300 Block of GAMBIER ST,San Francisco,94134,B09,43,6152,3,3,3,true,Alarm,1,MEDIC,6,9,9,Excelsior,"(37.7250707860115, -122.421042972954)",141942926-85 -160982688,KM09,16039010,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:10:03 PM,04/07/2016 04:16:42 PM,04/07/2016 04:29:45 PM,04/07/2016 04:31:30 PM,04/07/2016 04:45:12 PM,04/07/2016 05:13:24 PM,04/07/2016 05:34:43 PM,Code 2 Transport,04/07/2016 06:17:14 PM,300 Block of 20TH AVE,San Francisco,94121,B07,31,7164,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7813007244851, -122.479380199949)",160982688-KM09 -152912894,73,15111922,Medical Incident,10/18/2015,10/18/2015,10/18/2015 06:33:45 PM,10/18/2015 06:35:45 PM,10/18/2015 06:38:06 PM,10/18/2015 06:38:31 PM,10/18/2015 06:48:20 PM,10/18/2015 07:00:43 PM,10/18/2015 07:10:52 PM,Code 2 Transport,10/18/2015 07:38:32 PM,100 Block of TALBERT ST,San Francisco,94134,B09,44,6256,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7101618943601, -122.406532453491)",152912894-73 -151583636,61,15060522,Medical Incident,06/07/2015,06/07/2015,06/07/2015 10:52:15 PM,06/07/2015 10:52:15 PM,06/07/2015 10:54:08 PM,06/07/2015 10:54:53 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Code 2 Transport,06/07/2015 10:55:06 PM,3400 Block of 25TH ST,San Francisco,94110,B06,11,5535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7506771297941, -122.418579871188)",151583636-61 -161000384,89,16039605,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:49:03 AM,04/09/2016 02:50:58 AM,04/09/2016 02:56:33 AM,04/09/2016 02:57:08 AM,04/09/2016 03:03:53 AM,04/09/2016 03:20:20 AM,04/09/2016 03:26:16 AM,Code 2 Transport,04/09/2016 04:06:48 AM,1400 Block of FUNSTON AV,San Francisco,94122,B08,22,7347,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7610583163858, -122.470330705499)",161000384-89 -153400228,B06,15130686,Structure Fire,12/06/2015,12/05/2015,12/06/2015 01:15:05 AM,12/06/2015 01:15:46 AM,12/06/2015 01:15:56 AM,12/06/2015 01:17:14 AM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Fire,12/06/2015 01:21:21 AM,2100 Block of 26TH ST,San Francisco,94107,B10,37,2622,3,3,3,false,Alarm,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7506048382754, -122.400710627784)",153400228-B06 -141373185,79,14047061,Medical Incident,05/17/2014,05/17/2014,05/17/2014 08:18:28 PM,05/17/2014 08:19:12 PM,05/17/2014 08:26:21 PM,05/17/2014 08:26:48 PM,05/17/2014 08:29:24 PM,05/17/2014 08:38:58 PM,05/17/2014 08:52:33 PM,Code 2 Transport,05/17/2014 09:25:52 PM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7789337876718, -122.404974448604)",141373185-79 -153361884,E07,15129232,Medical Incident,12/02/2015,12/02/2015,12/02/2015 12:55:09 PM,12/02/2015 12:55:52 PM,12/02/2015 12:56:05 PM,12/02/2015 12:56:43 PM,12/02/2015 12:58:20 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Code 2 Transport,12/02/2015 01:06:36 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",153361884-E07 -152691220,KM09,15103034,Medical Incident,09/26/2015,09/26/2015,09/26/2015 10:16:43 AM,09/26/2015 10:17:25 AM,09/26/2015 10:17:40 AM,09/26/2015 10:19:07 AM,09/26/2015 10:26:10 AM,09/26/2015 10:43:02 AM,09/26/2015 10:55:57 AM,Code 2 Transport,09/26/2015 11:26:55 AM,0 Block of VALENCIA ST,San Francisco,94103,B02,36,5115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7720472598025, -122.422586141904)",152691220-KM09 -160961617,62,16037994,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:07:23 PM,04/05/2016 12:11:00 PM,04/05/2016 12:11:47 PM,04/05/2016 12:12:10 PM,04/05/2016 12:17:21 PM,04/05/2016 12:31:47 PM,04/05/2016 12:36:07 PM,Code 3 Transport,04/05/2016 01:13:18 PM,0 Block of JULIAN AVE,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7674034990276, -122.421064263268)",160961617-62 -160953428,66,16037771,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:30:07 PM,04/04/2016 07:32:02 PM,04/04/2016 07:33:27 PM,04/04/2016 07:34:07 PM,04/04/2016 07:34:07 PM,04/04/2016 08:24:13 PM,04/04/2016 08:27:03 PM,Code 3 Transport,04/04/2016 09:07:54 PM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",160953428-66 -152970169,85,15113902,Medical Incident,10/24/2015,10/23/2015,10/24/2015 01:01:33 AM,10/24/2015 01:01:33 AM,10/24/2015 01:03:31 AM,10/24/2015 01:04:05 AM,10/24/2015 01:15:42 AM,10/24/2015 01:52:22 AM,10/24/2015 02:02:58 AM,Code 2 Transport,10/24/2015 03:21:54 AM,11TH AV/GEARY BL,San Francisco,94118,B07,31,7141,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7807687380348, -122.469627030052)",152970169-85 -151372425,E05,15052116,Medical Incident,05/17/2015,05/17/2015,05/17/2015 04:13:33 PM,05/17/2015 04:14:12 PM,05/17/2015 04:14:32 PM,05/17/2015 04:15:43 PM,05/17/2015 04:17:27 PM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Code 2 Transport,05/17/2015 04:26:40 PM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",151372425-E05 -143342249,66,14118434,Medical Incident,11/30/2014,11/30/2014,11/30/2014 04:31:12 PM,11/30/2014 04:32:16 PM,11/30/2014 04:33:29 PM,11/30/2014 04:33:45 PM,11/30/2014 04:36:20 PM,11/30/2014 04:44:47 PM,11/30/2014 04:53:20 PM,Code 2 Transport,11/30/2014 05:05:18 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",143342249-66 -142581877,E15,14090143,Medical Incident,09/15/2014,09/15/2014,09/15/2014 02:18:57 PM,09/15/2014 02:19:42 PM,09/15/2014 02:21:46 PM,09/15/2014 02:24:07 PM,09/15/2014 02:27:50 PM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Medical Examiner,09/15/2014 03:04:55 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7131061953593, -122.460796179398)",142581877-E15 -153013268,76,15115579,Medical Incident,10/28/2015,10/28/2015,10/28/2015 06:07:16 PM,10/28/2015 06:09:44 PM,10/28/2015 06:11:08 PM,10/28/2015 06:11:14 PM,10/28/2015 06:16:28 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,No Merit,10/28/2015 06:18:40 PM,MISSION ST/23RD ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7538365885417, -122.418593946321)",153013268-76 -142731172,66,14095657,Medical Incident,09/30/2014,09/30/2014,09/30/2014 10:02:57 AM,09/30/2014 10:04:36 AM,09/30/2014 10:05:23 AM,09/30/2014 10:06:44 AM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Patient Declined Transport,09/30/2014 10:23:35 AM,CLAY ST/FRANKLIN ST,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7919653673686, -122.424340517867)",142731172-66 -150330971,E15,15012656,Medical Incident,02/02/2015,02/02/2015,02/02/2015 09:23:20 AM,02/02/2015 09:24:13 AM,02/02/2015 09:39:50 AM,02/02/2015 09:41:10 AM,02/02/2015 09:43:16 AM,04/25/2016 01:12:29 PM,04/25/2016 01:12:29 PM,Code 2 Transport,02/02/2015 09:50:31 AM,1000 Block of CAYUGA AVE,San Francisco,94112,B09,15,8332,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7218172447591, -122.439998899049)",150330971-E15 -160983283,55,16039074,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:55:53 PM,04/07/2016 06:57:39 PM,04/07/2016 06:57:53 PM,04/07/2016 06:58:06 PM,04/07/2016 07:06:14 PM,04/07/2016 07:34:10 PM,04/07/2016 08:03:08 PM,Code 2 Transport,04/07/2016 08:54:14 PM,600 Block of THE EMBARCADERO,San Francisco,94111,B01,13,915,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",160983283-55 -141521794,KM15,14052244,Medical Incident,06/01/2014,06/01/2014,06/01/2014 03:01:03 PM,06/01/2014 03:03:11 PM,06/01/2014 03:04:21 PM,06/01/2014 03:06:02 PM,06/01/2014 03:38:18 PM,06/01/2014 03:38:19 PM,06/01/2014 03:55:16 PM,Code 2 Transport,06/01/2014 04:24:19 PM,300 Block of HAYES ST,San Francisco,94102,B02,36,3265,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7770415005882, -122.42216513419)",141521794-KM15 -160964036,53,16038207,Industrial Accidents,04/05/2016,04/05/2016,04/05/2016 10:28:26 PM,04/05/2016 10:30:40 PM,04/05/2016 10:31:42 PM,04/05/2016 10:32:29 PM,04/05/2016 10:38:12 PM,04/05/2016 10:54:12 PM,04/05/2016 11:01:59 PM,Code 3 Transport,04/06/2016 12:16:42 AM,3RD ST/FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,true,Fire,1,MEDIC,2,3,6,South of Market,"(37.7837849329145, -122.398930333419)",160964036-53 -153280733,E26,15126150,Medical Incident,11/24/2015,11/24/2015,11/24/2015 08:16:19 AM,11/24/2015 08:17:00 AM,11/24/2015 08:17:20 AM,11/24/2015 08:19:02 AM,11/24/2015 08:25:02 AM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Code 2 Transport,11/24/2015 08:31:41 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.728489442639, -122.429995375728)",153280733-E26 -142931027,E03,14103280,Alarms,10/20/2014,10/20/2014,10/20/2014 10:01:50 AM,10/20/2014 10:02:55 AM,10/20/2014 10:03:04 AM,10/20/2014 10:03:13 AM,10/20/2014 10:05:13 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 10:16:04 AM,100 Block of OFARRELL ST,San Francisco,94102,B01,1,1363,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",142931027-E03 -150852684,82,15032523,Medical Incident,03/26/2015,03/26/2015,03/26/2015 04:37:16 PM,03/26/2015 04:40:07 PM,03/26/2015 04:44:48 PM,03/26/2015 04:44:56 PM,03/26/2015 04:57:49 PM,03/26/2015 05:12:43 PM,03/26/2015 05:37:35 PM,Code 2 Transport,03/26/2015 06:11:25 PM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7764944808779, -122.411359138357)",150852684-82 -151133254,T02,15042847,Alarms,04/23/2015,04/23/2015,04/23/2015 07:14:24 PM,04/23/2015 07:15:23 PM,04/23/2015 07:16:32 PM,04/23/2015 07:17:30 PM,04/23/2015 07:19:22 PM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Fire,04/23/2015 07:29:44 PM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",151133254-T02 -152641046,E35,15100998,Alarms,09/21/2015,09/21/2015,09/21/2015 08:57:51 AM,09/21/2015 08:59:10 AM,09/21/2015 08:59:39 AM,09/21/2015 09:00:21 AM,09/21/2015 09:05:45 AM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Fire,09/21/2015 09:15:36 AM,500 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",152641046-E35 -142621377,72,14091566,Medical Incident,09/19/2014,09/19/2014,09/19/2014 11:04:47 AM,09/19/2014 11:06:27 AM,09/19/2014 11:08:47 AM,09/19/2014 11:09:00 AM,09/19/2014 11:21:44 AM,09/19/2014 11:36:19 AM,09/19/2014 11:52:57 AM,Code 2 Transport,09/19/2014 12:00:48 PM,0 Block of POTRERO AVE,San Francisco,94103,B10,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.768813834852, -122.407774443281)",142621377-72 -150863163,KM10,15032952,Medical Incident,03/27/2015,03/27/2015,03/27/2015 07:01:12 PM,03/27/2015 07:05:28 PM,03/27/2015 07:08:26 PM,03/27/2015 07:09:04 PM,03/27/2015 07:27:32 PM,03/27/2015 07:49:07 PM,03/27/2015 08:18:46 PM,Code 2 Transport,03/27/2015 08:42:50 PM,MISSION ST/22ND ST,San Francisco,94110,B06,7,5472,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",150863163-KM10 -151113168,E42,15042099,Medical Incident,04/21/2015,04/21/2015,04/21/2015 06:56:12 PM,04/21/2015 06:59:25 PM,04/21/2015 07:00:17 PM,04/21/2015 07:01:47 PM,04/21/2015 07:03:50 PM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,Patient Declined Transport,04/21/2015 07:12:35 PM,2000 Block of QUESADA AVE,San Francisco,94124,B10,42,6431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7372708883243, -122.398263664701)",151113168-E42 -151543604,E10,15058857,Alarms,06/03/2015,06/03/2015,06/03/2015 08:58:32 PM,06/03/2015 09:00:10 PM,06/03/2015 09:00:18 PM,06/03/2015 09:01:05 PM,06/03/2015 09:03:40 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Fire,06/03/2015 09:18:20 PM,3600 Block of WASHINGTON ST,San Francisco,94118,B07,10,4433,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio Heights,"(37.7891489677203, -122.453112381719)",151543604-E10 -141500932,84,14051468,Medical Incident,05/30/2014,05/30/2014,05/30/2014 09:49:55 AM,05/30/2014 09:51:42 AM,05/30/2014 09:52:17 AM,05/30/2014 09:53:56 AM,05/30/2014 09:59:01 AM,05/30/2014 10:19:46 AM,05/30/2014 10:30:07 AM,Code 2 Transport,05/30/2014 11:01:08 AM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800574377607, -122.408673540372)",141500932-84 -142940345,E18,14103568,Medical Incident,10/21/2014,10/20/2014,10/21/2014 04:13:30 AM,10/21/2014 04:13:30 AM,10/21/2014 04:14:02 AM,10/21/2014 04:16:23 AM,10/21/2014 04:19:19 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Code 3 Transport,10/21/2014 04:29:45 AM,19TH AV/KIRKHAM ST,San Francisco,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7598339367344, -122.47681389085)",142940345-E18 -160982956,62,16039037,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:33:10 PM,04/07/2016 05:34:24 PM,04/07/2016 05:35:44 PM,04/07/2016 05:36:30 PM,04/07/2016 05:41:48 PM,04/07/2016 06:05:53 PM,04/07/2016 06:49:35 PM,Code 2 Transport,04/07/2016 07:03:21 PM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160982956-62 -151810371,E01,15069000,Medical Incident,06/30/2015,06/29/2015,06/30/2015 05:27:32 AM,06/30/2015 05:27:48 AM,06/30/2015 05:28:25 AM,06/30/2015 05:30:01 AM,06/30/2015 05:33:39 AM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Code 2 Transport,06/30/2015 05:41:57 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151810371-E01 -142791420,E07,14098124,Medical Incident,10/06/2014,10/06/2014,10/06/2014 11:30:44 AM,10/06/2014 11:31:03 AM,10/06/2014 11:31:31 AM,10/06/2014 11:32:12 AM,10/06/2014 11:37:30 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Code 2 Transport,10/06/2014 11:45:31 AM,2600 Block of 21ST ST,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7577882299664, -122.407282307621)",142791420-E07 -142122357,83,14073547,Medical Incident,07/31/2014,07/31/2014,07/31/2014 03:58:49 PM,07/31/2014 03:59:37 PM,07/31/2014 04:00:04 PM,07/31/2014 04:00:39 PM,07/31/2014 04:04:53 PM,07/31/2014 04:16:12 PM,07/31/2014 04:41:05 PM,Code 2 Transport,07/31/2014 05:14:50 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7692177178614, -122.452690310191)",142122357-83 -152640611,56,15100959,Medical Incident,09/21/2015,09/20/2015,09/21/2015 06:37:39 AM,09/21/2015 06:38:18 AM,09/21/2015 06:38:55 AM,09/21/2015 06:39:59 AM,09/21/2015 06:47:16 AM,09/21/2015 07:16:11 AM,09/21/2015 07:28:17 AM,Code 2 Transport,09/21/2015 08:19:02 AM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",152640611-56 -151163613,E08,15044027,Structure Fire,04/26/2015,04/26/2015,04/26/2015 11:16:00 PM,04/26/2015 11:17:20 PM,04/26/2015 11:17:39 PM,04/26/2015 11:18:49 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/26/2015 11:23:36 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,8,3,6,South of Market,"(37.7803475492385, -122.406487967809)",151163613-E08 -143632660,84,14129945,Medical Incident,12/29/2014,12/29/2014,12/29/2014 05:44:28 PM,12/29/2014 05:45:26 PM,12/29/2014 05:45:54 PM,12/29/2014 05:48:32 PM,12/29/2014 06:02:55 PM,12/29/2014 06:14:25 PM,12/29/2014 06:43:43 PM,Code 2 Transport,12/29/2014 07:07:19 PM,TURK BL/MASONIC AV,San Francisco,94118,B05,21,4363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,2,Lone Mountain/USF,"(37.7786223076413, -122.447039805009)",143632660-84 -152172625,E13,15082682,Medical Incident,08/05/2015,08/05/2015,08/05/2015 04:24:10 PM,08/05/2015 04:24:10 PM,08/05/2015 04:24:27 PM,08/05/2015 04:25:17 PM,08/05/2015 04:28:41 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,Code 2 Transport,08/05/2015 04:37:48 PM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",152172625-E13 -160981435,AM12,16038871,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 10:53:42 AM,04/07/2016 10:56:54 AM,04/07/2016 10:57:14 AM,04/07/2016 10:58:08 AM,04/07/2016 11:00:28 AM,04/07/2016 11:25:10 AM,04/07/2016 11:39:31 AM,Code 2 Transport,04/07/2016 12:20:56 PM,26TH ST/SHOTWELL ST,San Francisco,94110,B06,11,5613,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7492378671728, -122.414861249537)",160981435-AM12 -143022401,KM11,14106681,Medical Incident,10/29/2014,10/29/2014,10/29/2014 04:28:18 PM,10/29/2014 04:28:18 PM,10/29/2014 04:30:56 PM,10/29/2014 04:33:09 PM,10/29/2014 04:40:04 PM,10/29/2014 04:58:08 PM,10/29/2014 05:21:31 PM,Code 2 Transport,10/29/2014 05:55:08 PM,MCCOPPIN ST/GOUGH ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7717702499037, -122.420344369487)",143022401-KM11 -142432432,FB1,14084716,Water Rescue,08/31/2014,08/31/2014,08/31/2014 05:21:28 PM,08/31/2014 05:22:49 PM,08/31/2014 05:24:38 PM,08/31/2014 05:25:51 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Fire,08/31/2014 05:30:59 PM,900 Block of THE EMBARCADERO,San Francisco,94111,B01,13,923,3,3,3,false,Fire,1,SUPPORT,7,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",142432432-FB1 -152812035,E03,15107862,Medical Incident,10/08/2015,10/08/2015,10/08/2015 01:57:38 PM,10/08/2015 01:59:01 PM,10/08/2015 01:59:52 PM,10/08/2015 02:01:15 PM,10/08/2015 02:03:36 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Code 2 Transport,10/08/2015 02:14:14 PM,OFARRELL ST/FRANKLIN ST,San Francisco,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7845466088299, -122.4228380875)",152812035-E03 -152472295,E05,15094269,Medical Incident,09/04/2015,09/04/2015,09/04/2015 02:22:57 PM,09/04/2015 02:23:57 PM,09/04/2015 02:24:44 PM,09/04/2015 02:25:49 PM,09/04/2015 02:28:47 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Medical Examiner,09/04/2015 02:38:56 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",152472295-E05 -160990466,53,16039194,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:17:56 AM,04/08/2016 06:17:56 AM,04/08/2016 06:18:08 AM,04/08/2016 06:19:14 AM,04/08/2016 06:29:58 AM,04/08/2016 06:48:16 AM,04/08/2016 07:01:04 AM,Code 2 Transport,04/08/2016 07:39:17 AM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160990466-53 -160983662,64,16039106,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:02:09 PM,04/07/2016 09:02:57 PM,04/07/2016 09:03:16 PM,04/07/2016 09:04:13 PM,04/07/2016 09:08:56 PM,04/07/2016 09:29:06 PM,04/07/2016 09:44:35 PM,Code 2 Transport,04/07/2016 10:23:58 PM,2600 Block of LYON ST,San Francisco,94123,B04,16,4332,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7951802111491, -122.446730665283)",160983662-64 -152662745,E02,15101959,Structure Fire,09/23/2015,09/23/2015,09/23/2015 04:37:07 PM,09/23/2015 04:37:37 PM,09/23/2015 04:37:46 PM,09/23/2015 04:38:22 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Fire,09/23/2015 04:40:24 PM,2300 Block of LARKIN ST,San Francisco,94109,B01,41,1626,3,3,3,true,Alarm,1,ENGINE,8,1,2,Russian Hill,"(37.7994277963625, -122.420854016482)",152662745-E02 -160970029,AM16,16038240,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:08:32 AM,04/06/2016 12:10:02 AM,04/06/2016 12:10:31 AM,04/06/2016 12:11:14 AM,04/06/2016 12:18:29 AM,04/06/2016 12:32:05 AM,04/06/2016 12:47:24 AM,Code 2 Transport,04/06/2016 01:16:21 AM,2500 Block of 31ST AV,San Francisco,94116,B08,18,7527,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7396901089453, -122.488282653576)",160970029-AM16 -150141187,T08,15005492,Structure Fire,01/14/2015,01/14/2015,01/14/2015 10:29:40 AM,01/14/2015 10:29:40 AM,01/14/2015 10:29:49 AM,01/14/2015 10:30:50 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Cancelled,01/14/2015 10:31:31 AM,MAIN ST/BRYANT ST,San Francisco,94105,B03,35,2121,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7868986775116, -122.388779437164)",150141187-T08 -143360648,E01,14118981,Medical Incident,12/02/2014,12/02/2014,12/02/2014 08:03:39 AM,12/02/2014 08:04:40 AM,12/02/2014 08:05:08 AM,12/02/2014 08:06:56 AM,12/02/2014 08:14:46 AM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Code 2 Transport,12/02/2014 08:30:39 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",143360648-E01 -142743230,87,14096209,Medical Incident,10/01/2014,10/01/2014,10/01/2014 07:10:46 PM,10/01/2014 07:11:32 PM,10/01/2014 07:11:51 PM,10/01/2014 07:12:41 PM,10/01/2014 07:24:11 PM,10/01/2014 07:32:56 PM,10/01/2014 07:36:13 PM,Code 3 Transport,10/01/2014 07:58:19 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",142743230-87 -152260021,T14,15085975,Gas Leak (Natural and LP Gases),08/14/2015,08/13/2015,08/14/2015 12:09:37 AM,08/14/2015 12:10:44 AM,08/14/2015 12:10:55 AM,08/14/2015 12:13:24 AM,08/14/2015 12:15:19 AM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Fire,08/14/2015 12:28:48 AM,200 Block of 20TH AVE,San Francisco,94121,B07,14,7173,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7831899010435, -122.479652365289)",152260021-T14 -160992232,75,16039350,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:19:11 PM,04/08/2016 03:21:16 PM,04/08/2016 03:21:53 PM,04/08/2016 03:22:03 PM,04/08/2016 03:37:50 PM,04/08/2016 03:37:53 PM,04/08/2016 03:58:16 PM,Code 2 Transport,04/08/2016 04:31:04 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160992232-75 -141641695,KM14,14056533,Medical Incident,06/13/2014,06/13/2014,06/13/2014 01:10:19 PM,06/13/2014 01:11:40 PM,06/13/2014 01:13:57 PM,06/13/2014 01:14:53 PM,06/13/2014 01:24:59 PM,06/13/2014 01:36:32 PM,06/13/2014 01:52:30 PM,Code 2 Transport,06/13/2014 02:19:28 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",141641695-KM14 -151662422,E12,15063544,Medical Incident,06/15/2015,06/15/2015,06/15/2015 04:21:54 PM,06/15/2015 04:22:48 PM,06/15/2015 04:23:19 PM,06/15/2015 04:24:20 PM,06/15/2015 04:27:39 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/15/2015 04:42:41 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",151662422-E12 -143630816,KM02,14129787,Medical Incident,12/29/2014,12/29/2014,12/29/2014 08:59:13 AM,12/29/2014 09:01:35 AM,12/29/2014 09:15:24 AM,12/29/2014 09:15:24 AM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Patient Declined Transport,12/29/2014 09:18:52 AM,100 Block of ARLETA AVE,San Francisco,94134,B10,44,6267,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,10,Visitacion Valley,"(37.7136338116844, -122.405760298273)",143630816-KM02 -153430649,E20,15131898,Medical Incident,12/09/2015,12/08/2015,12/09/2015 07:41:47 AM,12/09/2015 07:42:36 AM,12/09/2015 07:43:12 AM,12/09/2015 07:44:38 AM,12/09/2015 07:50:49 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 08:23:22 AM,0 Block of BELLA VISTA WAY,San Francisco,94127,B09,39,8254,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7377122932371, -122.447013896083)",153430649-E20 -153413206,E07,15131346,Traffic Collision,12/07/2015,12/07/2015,12/07/2015 06:43:38 PM,12/07/2015 06:43:38 PM,12/07/2015 06:43:53 PM,12/07/2015 06:44:33 PM,12/07/2015 06:46:20 PM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,Patient Declined Transport,12/07/2015 06:53:57 PM,21ST ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",153413206-E07 -150583870,61,15022359,Traffic Collision,02/27/2015,02/27/2015,02/27/2015 10:45:23 PM,02/27/2015 10:47:41 PM,02/27/2015 10:48:19 PM,02/27/2015 10:54:19 PM,02/27/2015 11:08:22 PM,02/27/2015 11:24:29 PM,02/27/2015 11:33:42 PM,Code 2 Transport,02/28/2015 12:19:17 AM,1700 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2634,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7499142654366, -122.394328983742)",150583870-61 -143403041,E12,14120876,Medical Incident,12/06/2014,12/06/2014,12/06/2014 06:53:50 PM,12/06/2014 06:55:05 PM,12/06/2014 06:55:49 PM,12/06/2014 06:56:42 PM,12/06/2014 06:58:28 PM,04/25/2016 01:13:36 PM,04/25/2016 01:13:36 PM,Code 2 Transport,12/06/2014 07:12:30 PM,600 Block of FREDERICK ST,San Francisco,94117,B05,12,4551,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Inner Sunset,"(37.7659077959827, -122.456186927179)",143403041-E12 -152793111,55,15107166,Medical Incident,10/06/2015,10/06/2015,10/06/2015 06:19:23 PM,10/06/2015 06:19:23 PM,10/06/2015 06:19:23 PM,10/06/2015 06:19:23 PM,10/06/2015 06:19:23 PM,04/25/2016 01:07:55 PM,04/25/2016 01:07:55 PM,Patient Declined Transport,10/06/2015 06:44:21 PM,23RD ST/ILLINOIS ST,San Francisco,94107,B99,25,2731,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7554462218185, -122.387065853353)",152793111-55 -152404360,61,15091678,Medical Incident,08/28/2015,08/28/2015,08/28/2015 10:48:26 PM,08/28/2015 10:57:19 PM,08/28/2015 10:58:06 PM,08/28/2015 11:02:52 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Unable to Locate,08/28/2015 11:09:01 PM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",152404360-61 -152970968,56,15113977,Medical Incident,10/24/2015,10/24/2015,10/24/2015 08:50:20 AM,10/24/2015 08:51:05 AM,10/24/2015 08:52:16 AM,10/24/2015 08:55:27 AM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,Gone on Arrival,10/24/2015 09:01:18 AM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",152970968-56 -160940070,KM07,16037099,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:19:34 AM,04/03/2016 12:19:48 AM,04/03/2016 12:20:08 AM,04/03/2016 12:20:43 AM,04/03/2016 12:25:54 AM,04/03/2016 12:49:31 AM,04/03/2016 12:57:05 AM,Code 2 Transport,04/03/2016 01:25:47 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",160940070-KM07 -150422241,E36,15016388,Medical Incident,02/11/2015,02/11/2015,02/11/2015 02:58:10 PM,02/11/2015 02:59:07 PM,02/11/2015 03:02:02 PM,02/11/2015 03:02:30 PM,02/11/2015 03:03:38 PM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Code 2 Transport,02/11/2015 03:09:35 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",150422241-E36 -150151724,77,15005947,Medical Incident,01/15/2015,01/15/2015,01/15/2015 12:50:39 PM,01/15/2015 12:53:25 PM,01/15/2015 12:53:53 PM,01/15/2015 12:54:10 PM,01/15/2015 12:59:09 PM,01/15/2015 01:17:29 PM,01/15/2015 01:59:03 PM,Code 2 Transport,01/15/2015 02:24:38 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",150151724-77 -141371413,AM12,14046917,Medical Incident,05/17/2014,05/17/2014,05/17/2014 11:21:36 AM,05/17/2014 11:22:41 AM,05/17/2014 11:24:12 AM,05/17/2014 11:25:03 AM,05/17/2014 11:33:42 AM,05/17/2014 11:46:49 AM,05/17/2014 12:18:43 PM,Code 2 Transport,05/17/2014 01:09:16 PM,30TH AV/GEARY BL,San Francisco,94121,B07,14,722,3,A,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7798398321439, -122.490096577723)",141371413-AM12 -141913090,71,14066321,Medical Incident,07/10/2014,07/10/2014,07/10/2014 07:31:54 PM,07/10/2014 07:34:05 PM,07/10/2014 07:47:21 PM,07/10/2014 07:47:21 PM,07/10/2014 07:56:28 PM,07/10/2014 08:14:05 PM,07/10/2014 08:23:29 PM,Code 2 Transport,07/10/2014 08:44:34 PM,400 Block of 3RD AVE,San Francisco,94118,B07,31,7117,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7802004442701, -122.46092794533)",141913090-71 -160943569,85,16037448,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:20:46 PM,04/03/2016 10:20:46 PM,04/03/2016 10:23:32 PM,04/03/2016 10:23:41 PM,04/03/2016 10:42:01 PM,04/03/2016 10:49:09 PM,04/03/2016 11:12:45 PM,Code 2 Transport,04/03/2016 11:41:14 PM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",160943569-85 -160974069,72,16038654,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:30:26 PM,04/06/2016 08:31:12 PM,04/06/2016 08:33:20 PM,04/06/2016 08:33:38 PM,04/06/2016 08:37:11 PM,04/06/2016 08:51:44 PM,04/06/2016 09:19:12 PM,Code 2 Transport,04/06/2016 09:40:30 PM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160974069-72 -150390543,E03,15015061,Alarms,02/08/2015,02/07/2015,02/08/2015 03:22:56 AM,02/08/2015 03:24:09 AM,02/08/2015 03:24:16 AM,02/08/2015 03:25:59 AM,02/08/2015 03:28:29 AM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/08/2015 03:43:56 AM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",150390543-E03 -150010988,RS1,15000199,Medical Incident,01/01/2015,12/31/2014,01/01/2015 04:05:07 AM,01/01/2015 04:06:08 AM,01/01/2015 04:07:23 AM,01/01/2015 04:09:58 AM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Cancelled,01/01/2015 04:14:14 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",150010988-RS1 -151211868,60,15045875,Medical Incident,05/01/2015,05/01/2015,05/01/2015 01:03:06 PM,05/01/2015 01:03:06 PM,05/01/2015 01:03:36 PM,05/01/2015 01:04:08 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,No Merit,05/01/2015 01:09:45 PM,AMAZON AV/MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7172446200647, -122.440417736667)",151211868-60 -143261522,T05,14115474,Alarms,11/22/2014,11/22/2014,11/22/2014 11:45:27 AM,11/22/2014 11:46:55 AM,11/22/2014 11:47:06 AM,11/22/2014 11:47:35 AM,11/22/2014 11:51:24 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Fire,11/22/2014 11:56:28 AM,200 Block of IVY ST,San Francisco,94102,B02,36,3214,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7775087887745, -122.422260661613)",143261522-T05 -142572903,E11,14089898,Structure Fire,09/14/2014,09/14/2014,09/14/2014 08:36:46 PM,09/14/2014 08:36:46 PM,09/14/2014 08:37:23 PM,09/14/2014 08:38:39 PM,09/14/2014 08:39:45 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 08:40:18 PM,25TH ST/VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7505058278022, -122.420507005779)",142572903-E11 -151850901,E26,15070532,Medical Incident,07/04/2015,07/04/2015,07/04/2015 08:24:55 AM,07/04/2015 08:25:11 AM,07/04/2015 08:25:28 AM,07/04/2015 08:26:54 AM,07/04/2015 08:31:25 AM,04/25/2016 01:09:39 PM,04/25/2016 01:09:39 PM,Code 3 Transport,07/04/2015 08:48:07 AM,300 Block of RICHLAND AVE,San Francisco,94110,B06,32,5644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7356359705853, -122.418465889681)",151850901-E26 -141902278,71,14065890,Medical Incident,07/09/2014,07/09/2014,07/09/2014 03:36:41 PM,07/09/2014 03:37:44 PM,07/09/2014 03:38:38 PM,07/09/2014 03:38:48 PM,07/09/2014 03:44:23 PM,07/09/2014 03:56:29 PM,07/09/2014 04:00:14 PM,Code 2 Transport,07/09/2014 04:44:23 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7755801285655, -122.413994780042)",141902278-71 -161003321,75,16039957,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:00:32 PM,04/09/2016 10:02:25 PM,04/09/2016 10:03:13 PM,04/09/2016 10:03:23 PM,04/09/2016 10:18:39 PM,04/09/2016 10:18:41 PM,04/09/2016 10:44:52 PM,Code 2 Transport,04/09/2016 11:33:30 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",161003321-75 -152971087,57,15113987,Medical Incident,10/24/2015,10/24/2015,10/24/2015 09:30:13 AM,10/24/2015 09:32:40 AM,10/24/2015 09:33:32 AM,10/24/2015 09:33:40 AM,10/24/2015 09:44:48 AM,10/24/2015 10:17:30 AM,10/24/2015 10:53:21 AM,Code 2 Transport,10/24/2015 11:22:32 AM,0 Block of MARSTON AVE,San Francisco,94112,B09,15,8226,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7274123424876, -122.44593049272)",152971087-57 -143553841,E11,14127101,Medical Incident,12/21/2014,12/21/2014,12/21/2014 10:12:11 PM,12/21/2014 10:12:11 PM,12/21/2014 10:12:28 PM,12/21/2014 10:13:53 PM,12/21/2014 10:15:13 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Code 2 Transport,12/21/2014 10:21:34 PM,27TH ST/GUERRERO ST,San Francisco,94110,B06,11,5551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7471719168985, -122.422383537284)",143553841-E11 -141320297,86,14044793,Medical Incident,05/12/2014,05/11/2014,05/12/2014 03:45:13 AM,05/12/2014 03:46:30 AM,05/12/2014 03:48:06 AM,05/12/2014 03:49:02 AM,05/12/2014 04:06:31 AM,05/12/2014 04:24:57 AM,05/12/2014 04:56:41 AM,Code 2 Transport,05/12/2014 05:26:08 AM,1300 Block of NEWHALL ST,San Francisco,94124,B10,17,6471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7359424972351, -122.391874407163)",141320297-86 -160991155,54,16039251,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:34:49 AM,04/08/2016 10:35:55 AM,04/08/2016 10:36:38 AM,04/08/2016 10:36:47 AM,04/08/2016 10:44:02 AM,04/08/2016 11:04:40 AM,04/08/2016 11:17:24 AM,Code 2 Transport,04/08/2016 12:12:09 PM,1600 Block of BRYANT ST,San Francisco,94103,B02,29,5222,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7662587674103, -122.410479250127)",160991155-54 -160923453,88,16036607,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:02:01 PM,04/01/2016 09:02:01 PM,04/01/2016 09:06:50 PM,04/01/2016 09:06:59 PM,04/01/2016 09:18:18 PM,04/01/2016 09:34:00 PM,04/01/2016 09:41:41 PM,Code 2 Transport,04/01/2016 10:17:23 PM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",160923453-88 -160963197,62,16038130,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:09:09 PM,04/05/2016 06:12:55 PM,04/05/2016 06:13:08 PM,04/05/2016 06:14:24 PM,04/05/2016 06:27:46 PM,04/05/2016 06:41:59 PM,04/05/2016 07:15:49 PM,Other,04/05/2016 07:37:22 PM,1400 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.770198458048, -122.389578265491)",160963197-62 -160972176,66,16038442,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:40:13 PM,04/06/2016 01:40:13 PM,04/06/2016 01:44:23 PM,04/06/2016 01:44:35 PM,04/06/2016 01:56:56 PM,04/06/2016 02:15:26 PM,04/06/2016 02:41:07 PM,Code 2 Transport,04/06/2016 03:18:17 PM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160972176-66 -151090519,E03,15041171,Medical Incident,04/19/2015,04/18/2015,04/19/2015 03:55:00 AM,04/19/2015 03:56:28 AM,04/19/2015 03:57:19 AM,04/19/2015 03:59:18 AM,04/19/2015 04:03:14 AM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,Code 2 Transport,04/19/2015 04:11:33 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",151090519-E03 -141552772,E44,14053418,Structure Fire,06/04/2014,06/04/2014,06/04/2014 05:55:17 PM,06/04/2014 05:55:17 PM,06/04/2014 05:55:50 PM,06/04/2014 05:56:33 PM,06/04/2014 06:00:19 PM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Fire,06/04/2014 06:01:11 PM,SAWYER ST/SUNRISE WY,San Francisco,94134,B09,44,6251,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7096948691249, -122.415955915854)",141552772-E44 -152071126,AM02,15078816,Medical Incident,07/26/2015,07/26/2015,07/26/2015 09:56:29 AM,07/26/2015 09:57:22 AM,07/26/2015 09:57:36 AM,07/26/2015 09:58:07 AM,07/26/2015 10:15:31 AM,07/26/2015 10:15:34 AM,07/26/2015 10:37:45 AM,Code 2 Transport,07/26/2015 11:08:19 AM,100 Block of 28TH AVE,San Francisco,94121,B07,14,7231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7859048053744, -122.488355259583)",152071126-AM02 -151972492,72,15075198,Traffic Collision,07/16/2015,07/16/2015,07/16/2015 04:41:49 PM,07/16/2015 04:41:49 PM,07/16/2015 04:42:36 PM,07/16/2015 04:42:55 PM,07/16/2015 05:00:29 PM,07/16/2015 05:19:45 PM,07/16/2015 05:35:58 PM,Code 2 Transport,07/16/2015 06:14:53 PM,GENEVA AV/ALEMANY BL,San Francisco,94112,B09,15,8332,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7178334463476, -122.442328161761)",151972492-72 -160951069,AM10,16037562,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:52:30 AM,04/04/2016 09:52:30 AM,04/04/2016 09:52:45 AM,04/04/2016 09:53:16 AM,04/04/2016 10:03:22 AM,04/04/2016 10:14:39 AM,04/04/2016 10:26:57 AM,Code 2 Transport,04/04/2016 10:51:07 AM,CALIFORNIA ST/GRANT AV,San Francisco,94108,B01,13,1314,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",160951069-AM10 -142752282,RS1,14096529,Medical Incident,10/02/2014,10/02/2014,10/02/2014 02:45:15 PM,10/02/2014 02:45:42 PM,10/02/2014 02:46:14 PM,10/02/2014 02:46:40 PM,10/02/2014 02:48:10 PM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Code 2 Transport,10/02/2014 03:02:45 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",142752282-RS1 -142261474,E07,14078462,Structure Fire,08/14/2014,08/14/2014,08/14/2014 12:00:39 PM,08/14/2014 12:00:39 PM,08/14/2014 12:02:19 PM,08/14/2014 12:03:08 PM,08/14/2014 12:03:13 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Fire,08/14/2014 12:04:54 PM,19TH ST/DOLORES ST,San Francisco,94110,B06,7,5435,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",142261474-E07 -143070770,T13,14108523,Medical Incident,11/03/2014,11/03/2014,11/03/2014 08:40:57 AM,11/03/2014 08:41:46 AM,11/03/2014 08:42:24 AM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,Code 2 Transport,11/03/2014 08:43:45 AM,400 Block of WASHINGTON ST,San Francisco,94111,B01,13,1211,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,1,3,Chinatown,"(37.795810567555, -122.401404304282)",143070770-T13 -160991035,85,16039240,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:59:25 AM,04/08/2016 09:59:48 AM,04/08/2016 10:00:53 AM,04/08/2016 10:00:59 AM,04/08/2016 10:08:53 AM,04/08/2016 10:22:25 AM,04/08/2016 10:44:46 AM,Code 2 Transport,04/08/2016 11:13:10 AM,900 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7871735250079, -122.417641342653)",160991035-85 -153360290,AM20,15129090,Medical Incident,12/02/2015,12/01/2015,12/02/2015 03:56:28 AM,12/02/2015 03:58:26 AM,12/02/2015 03:58:48 AM,12/02/2015 04:00:08 AM,12/02/2015 04:01:51 AM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,No Merit,12/02/2015 04:10:03 AM,300 Block of CHICAGO WAY,San Francisco,94112,B09,43,6233,3,3,3,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7091794603106, -122.433353103591)",153360290-AM20 -151533606,79,15058470,Structure Fire,06/02/2015,06/02/2015,06/02/2015 10:11:10 PM,06/02/2015 10:11:10 PM,06/02/2015 10:15:13 PM,06/02/2015 10:15:34 PM,06/02/2015 10:22:09 PM,06/02/2015 10:22:11 PM,06/02/2015 10:57:49 PM,Code 2 Transport,06/02/2015 11:05:43 PM,18TH ST/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",151533606-79 -150651099,E11,15024774,Medical Incident,03/06/2015,03/06/2015,03/06/2015 09:13:29 AM,03/06/2015 09:13:29 AM,03/06/2015 09:13:56 AM,03/06/2015 09:14:36 AM,03/06/2015 09:17:49 AM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Code 2 Transport,03/06/2015 09:34:10 AM,1500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7486963283794, -122.415839742458)",150651099-E11 -152403643,77,15091584,Medical Incident,08/28/2015,08/28/2015,08/28/2015 07:34:23 PM,08/28/2015 07:40:04 PM,08/28/2015 07:40:36 PM,08/28/2015 07:40:47 PM,08/28/2015 07:43:08 PM,08/28/2015 07:58:48 PM,08/28/2015 08:11:54 PM,Code 2 Transport,08/28/2015 08:58:30 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",152403643-77 -160932802,54,16036977,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:59:13 PM,04/02/2016 05:59:13 PM,04/02/2016 06:19:35 PM,04/02/2016 06:22:55 PM,04/02/2016 06:30:19 PM,04/02/2016 06:55:14 PM,04/02/2016 07:15:22 PM,Code 2 Transport,04/02/2016 07:41:59 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160932802-54 -160931421,61,16036826,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:36:10 AM,04/02/2016 11:37:55 AM,04/02/2016 11:53:11 AM,04/02/2016 11:53:39 AM,04/02/2016 12:24:27 PM,04/02/2016 12:47:09 PM,04/02/2016 12:52:43 PM,Code 2 Transport,04/02/2016 01:39:02 PM,100 Block of GRANT AV,San Francisco,94108,B01,1,1316,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879895535036, -122.405154804677)",160931421-61 -160982632,55,16039005,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:02:43 PM,04/07/2016 04:03:37 PM,04/07/2016 04:07:35 PM,04/07/2016 04:07:43 PM,04/07/2016 04:19:54 PM,04/07/2016 04:38:09 PM,04/07/2016 05:11:21 PM,Code 2 Transport,04/07/2016 05:27:14 PM,1500 Block of STOCKTON ST,San Francisco,94133,B01,28,1334,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.799975359605, -122.40903359976)",160982632-55 -142581239,E06,14090078,Medical Incident,09/15/2014,09/15/2014,09/15/2014 11:02:48 AM,09/15/2014 11:05:32 AM,09/15/2014 11:06:05 AM,09/15/2014 11:06:47 AM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Code 2 Transport,09/15/2014 11:07:33 AM,1500 Block of 15TH ST,San Francisco,94103,B02,7,5225,3,3,3,true,Non Life-threatening,1,ENGINE,3,2,9,Mission,"(37.7667276112047, -122.418018847374)",142581239-E06 -150533292,E08,15020541,Medical Incident,02/22/2015,02/22/2015,02/22/2015 09:36:07 PM,02/22/2015 09:37:51 PM,02/22/2015 09:38:10 PM,02/22/2015 09:39:07 PM,02/22/2015 09:41:03 PM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,Code 2 Transport,02/22/2015 09:50:12 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",150533292-E08 -150643344,B03,15024602,Alarms,03/05/2015,03/05/2015,03/05/2015 07:12:06 PM,03/05/2015 07:13:50 PM,03/05/2015 07:14:09 PM,03/05/2015 07:15:42 PM,03/05/2015 07:17:13 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Fire,03/05/2015 07:29:26 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,3,3,3,false,Alarm,1,CHIEF,3,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",150643344-B03 -152180877,E06,15082926,Medical Incident,08/06/2015,08/06/2015,08/06/2015 08:41:11 AM,08/06/2015 08:42:52 AM,08/06/2015 08:49:18 AM,08/06/2015 08:50:58 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/06/2015 08:51:13 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",152180877-E06 -150911264,52,15034560,Medical Incident,04/01/2015,04/01/2015,04/01/2015 10:53:36 AM,04/01/2015 10:55:00 AM,04/01/2015 10:55:58 AM,04/01/2015 10:56:24 AM,04/01/2015 11:00:36 AM,04/01/2015 11:10:51 AM,04/01/2015 11:24:02 AM,Code 2 Transport,04/01/2015 11:51:15 AM,JONES ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",150911264-52 -141170165,E01,14039486,Alarms,04/27/2014,04/27/2014,04/27/2014 12:26:06 PM,04/27/2014 12:26:52 PM,04/27/2014 12:27:06 PM,04/25/2016 01:17:39 PM,04/27/2014 12:29:54 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Fire,04/27/2014 12:36:03 PM,400 Block of EDDY ST,SAN FRANCISCO,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",141170165-E01 -160953407,62,16037768,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:25:30 PM,04/04/2016 07:25:30 PM,04/04/2016 07:26:16 PM,04/04/2016 07:26:23 PM,04/04/2016 07:31:22 PM,04/04/2016 07:50:04 PM,04/04/2016 08:15:42 PM,Code 2 Transport,04/04/2016 08:37:24 PM,300 Block of HOWARD ST,San Francisco,94105,B03,35,2124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",160953407-62 -150723401,E44,15027650,Medical Incident,03/13/2015,03/13/2015,03/13/2015 07:08:35 PM,03/13/2015 07:10:13 PM,03/13/2015 07:10:36 PM,03/13/2015 07:12:09 PM,03/13/2015 07:13:58 PM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Code 2 Transport,03/13/2015 07:23:21 PM,300 Block of ORDWAY ST,San Francisco,94134,B10,44,6313,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7194829515563, -122.40403720006)",150723401-E44 -161000124,62,16039564,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:45:57 AM,04/09/2016 12:46:56 AM,04/09/2016 12:49:42 AM,04/09/2016 12:50:01 AM,04/09/2016 12:55:43 AM,04/09/2016 01:30:40 AM,04/09/2016 01:49:22 AM,Code 2 Transport,04/09/2016 02:13:06 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",161000124-62 -142490089,E38,14086648,Structure Fire,09/06/2014,09/05/2014,09/06/2014 12:35:09 AM,09/06/2014 12:39:10 AM,09/06/2014 12:39:42 AM,09/06/2014 12:40:33 AM,09/06/2014 12:43:09 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Fire,09/06/2014 12:46:59 AM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",142490089-E38 -142541478,B06,14088652,Alarms,09/11/2014,09/11/2014,09/11/2014 12:10:10 PM,09/11/2014 12:13:05 PM,09/11/2014 12:13:26 PM,09/11/2014 12:14:22 PM,09/11/2014 12:17:48 PM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Fire,09/11/2014 12:27:36 PM,600 Block of ALVARADO ST,San Francisco,94114,B06,24,5515,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7536611563754, -122.435425173732)",142541478-B06 -142780305,75,14097662,Medical Incident,10/05/2014,10/04/2014,10/05/2014 01:28:20 AM,10/05/2014 01:34:15 AM,10/05/2014 01:35:08 AM,10/05/2014 01:35:22 AM,10/05/2014 01:42:22 AM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,No Merit,10/05/2014 01:43:21 AM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",142780305-75 -141703258,66,14058860,Medical Incident,06/19/2014,06/19/2014,06/19/2014 08:39:41 PM,06/19/2014 08:41:27 PM,06/19/2014 08:42:51 PM,06/19/2014 08:43:35 PM,06/19/2014 08:52:22 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Against Medical Advice,06/19/2014 09:07:39 PM,1200 Block of 39TH AVE,San Francisco,94122,B08,23,7626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7635527078831, -122.498690380377)",141703258-66 -142521876,66,14087977,Medical Incident,09/09/2014,09/09/2014,09/09/2014 02:32:26 PM,09/09/2014 02:33:10 PM,09/09/2014 02:33:53 PM,09/09/2014 02:34:38 PM,09/09/2014 02:37:23 PM,09/09/2014 02:57:39 PM,09/09/2014 03:13:16 PM,Code 2 Transport,09/09/2014 03:31:43 PM,16TH ST/SHOTWELL ST,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7652494943866, -122.416387524486)",142521876-66 -150061811,E13,15002299,Medical Incident,01/06/2015,01/06/2015,01/06/2015 01:31:42 PM,01/06/2015 01:33:00 PM,01/06/2015 01:33:42 PM,01/06/2015 01:34:07 PM,01/06/2015 01:35:31 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Code 2 Transport,01/06/2015 01:58:26 PM,100 Block of SANSOME ST,San Francisco,94104,B01,13,1165,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7916515232471, -122.400770219415)",150061811-E13 -143592099,58,14128553,Medical Incident,12/25/2014,12/25/2014,12/25/2014 07:32:13 PM,12/25/2014 07:33:29 PM,12/25/2014 07:34:50 PM,12/25/2014 07:38:41 PM,12/25/2014 07:46:36 PM,12/25/2014 07:51:48 PM,12/25/2014 07:59:41 PM,Code 2 Transport,12/25/2014 08:24:46 PM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7720751846477, -122.408746829681)",143592099-58 -160931701,82,16036852,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:54:00 PM,04/02/2016 12:55:09 PM,04/02/2016 12:56:39 PM,04/02/2016 12:56:51 PM,04/02/2016 01:10:10 PM,04/02/2016 01:28:00 PM,04/02/2016 02:20:17 PM,Code 2 Transport,04/02/2016 02:41:58 PM,700 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.732924646566, -122.416428558162)",160931701-82 -160970682,82,16038301,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:43:32 AM,04/06/2016 07:44:10 AM,04/06/2016 07:45:05 AM,04/06/2016 07:45:21 AM,04/06/2016 07:58:35 AM,04/06/2016 08:25:19 AM,04/06/2016 08:48:47 AM,Code 2 Transport,04/06/2016 09:20:12 AM,1000 Block of ALABAMA ST,San Francisco,94110,B06,7,5476,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7550913132748, -122.411127388078)",160970682-82 -151730190,E36,15065893,Medical Incident,06/22/2015,06/21/2015,06/22/2015 01:59:54 AM,06/22/2015 02:00:38 AM,06/22/2015 02:00:51 AM,06/22/2015 02:02:54 AM,06/22/2015 02:05:21 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Code 2 Transport,06/22/2015 02:08:09 AM,500 Block of HAYES ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7766301642126, -122.425399507344)",151730190-E36 -150720361,E18,15027363,Medical Incident,03/13/2015,03/12/2015,03/13/2015 03:43:35 AM,03/13/2015 03:45:32 AM,03/13/2015 03:45:48 AM,03/13/2015 03:48:13 AM,03/13/2015 03:53:09 AM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Code 2 Transport,03/13/2015 03:59:41 AM,2500 Block of 40TH AVE,San Francisco,94116,B08,18,7617,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392647601662, -122.497924563428)",150720361-E18 -152932876,KM08,15112656,Traffic Collision,10/20/2015,10/20/2015,10/20/2015 04:59:38 PM,10/20/2015 05:01:25 PM,10/20/2015 05:01:42 PM,10/20/2015 05:02:28 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,No Merit,10/20/2015 05:07:35 PM,19TH AV/OCEAN AV,San Francisco,94132,B08,19,7413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7324561388297, -122.474954620812)",152932876-KM08 -160950158,79,16037485,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:53:02 AM,04/04/2016 01:54:38 AM,04/04/2016 01:55:33 AM,04/04/2016 01:56:25 AM,04/04/2016 01:59:35 AM,04/04/2016 02:24:29 AM,04/04/2016 02:34:17 AM,Code 2 Transport,04/04/2016 03:00:52 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160950158-79 -160981267,74,16038851,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:06:22 AM,04/07/2016 10:08:11 AM,04/07/2016 10:10:39 AM,04/07/2016 10:10:49 AM,04/07/2016 10:22:01 AM,04/07/2016 10:30:25 AM,04/07/2016 10:37:35 AM,Code 2 Transport,04/07/2016 11:21:21 AM,3000 Block of 25TH ST,San Francisco,94110,B06,7,5533,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7511731433127, -122.410367728863)",160981267-74 -141582110,D2,14054478,Structure Fire,06/07/2014,06/07/2014,06/07/2014 03:59:10 PM,06/07/2014 03:59:48 PM,06/07/2014 04:00:43 PM,06/07/2014 04:01:38 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 04:07:14 PM,1400 Block of ANZA ST,San Francisco,94118,B07,31,7131,3,3,3,false,Alarm,1,CHIEF,7,7,1,Inner Richmond,"(37.7790598295311, -122.463606673844)",141582110-D2 -150480747,E37,15018541,Medical Incident,02/17/2015,02/17/2015,02/17/2015 08:14:54 AM,02/17/2015 08:17:02 AM,02/17/2015 08:17:19 AM,02/17/2015 08:18:40 AM,02/17/2015 08:21:23 AM,04/25/2016 01:12:12 PM,04/25/2016 01:12:12 PM,Code 2 Transport,02/17/2015 08:36:21 AM,1700 Block of 26TH ST,San Francisco,94107,B10,37,2615,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.751171434556, -122.397379770345)",150480747-E37 -160933432,60,16037047,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:08:29 PM,04/02/2016 09:09:19 PM,04/02/2016 09:09:32 PM,04/02/2016 09:09:50 PM,04/02/2016 09:15:38 PM,04/02/2016 09:39:36 PM,04/02/2016 10:01:31 PM,Code 2 Transport,04/02/2016 10:54:00 PM,400 Block of GATES ST,San Francisco,94110,B06,32,5737,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7377232495282, -122.413978458596)",160933432-60 -160990629,52,16039205,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:39:26 AM,04/08/2016 07:40:22 AM,04/08/2016 07:40:50 AM,04/08/2016 07:42:46 AM,04/08/2016 07:48:35 AM,04/08/2016 08:07:13 AM,04/08/2016 08:44:35 AM,Code 2 Transport,04/08/2016 09:04:54 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160990629-52 -151861400,AM02,15071003,Medical Incident,07/05/2015,07/05/2015,07/05/2015 10:31:19 AM,07/05/2015 10:32:47 AM,07/05/2015 10:33:20 AM,07/05/2015 10:33:58 AM,07/05/2015 10:39:48 AM,07/05/2015 10:46:10 AM,07/05/2015 11:15:13 AM,Code 2 Transport,07/05/2015 11:32:00 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151861400-AM02 -161000887,61,16039671,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:48:31 AM,04/09/2016 08:48:56 AM,04/09/2016 08:51:14 AM,04/09/2016 08:51:14 AM,04/09/2016 08:54:04 AM,04/09/2016 09:10:38 AM,04/09/2016 09:20:54 AM,Code 3 Transport,04/09/2016 10:11:35 AM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",161000887-61 -142293749,55,14079747,Medical Incident,08/17/2014,08/17/2014,08/17/2014 11:05:56 PM,08/17/2014 11:07:53 PM,08/17/2014 11:08:26 PM,08/17/2014 11:08:47 PM,08/17/2014 11:17:42 PM,08/17/2014 11:36:45 PM,08/17/2014 11:46:55 PM,Code 2 Transport,08/18/2014 12:25:51 AM,100 Block of TUNNEL AVE,San Francisco,94134,B10,44,6271,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7125241926611, -122.400524162654)",142293749-55 -141613079,68,14055644,Medical Incident,06/10/2014,06/10/2014,06/10/2014 08:24:46 PM,06/10/2014 08:25:35 PM,06/10/2014 08:26:04 PM,06/10/2014 08:26:12 PM,06/10/2014 08:37:49 PM,06/10/2014 09:03:07 PM,06/10/2014 09:24:31 PM,Code 2 Transport,06/10/2014 09:48:35 PM,100 Block of LELAND AVE,San Francisco,94134,B09,44,6256,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",141613079-68 -160933033,88,16036995,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:05:53 PM,04/02/2016 07:07:06 PM,04/02/2016 07:07:24 PM,04/02/2016 07:07:46 PM,04/02/2016 07:15:05 PM,04/02/2016 07:27:59 PM,04/02/2016 07:38:11 PM,Code 2 Transport,04/02/2016 08:21:53 PM,33RD AV/FULTON ST,San Francisco,94121,B07,14,7243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7721785309842, -122.492761385207)",160933033-88 -151402343,KM12,15053218,Medical Incident,05/20/2015,05/20/2015,05/20/2015 03:27:44 PM,05/20/2015 03:28:19 PM,05/20/2015 03:28:59 PM,05/20/2015 03:29:50 PM,05/20/2015 03:38:17 PM,05/20/2015 04:13:18 PM,05/20/2015 04:18:54 PM,Code 2 Transport,05/20/2015 05:06:57 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7777903094246, -122.412834332129)",151402343-KM12 -152762788,57,15105887,Medical Incident,10/03/2015,10/03/2015,10/03/2015 04:58:18 PM,10/03/2015 04:59:08 PM,10/03/2015 04:59:54 PM,10/03/2015 05:00:13 PM,10/03/2015 05:04:19 PM,10/03/2015 05:24:35 PM,10/03/2015 05:34:25 PM,Code 2 Transport,10/03/2015 06:16:01 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7658582826035, -122.419816092644)",152762788-57 -150352888,E08,15013538,Medical Incident,02/04/2015,02/04/2015,02/04/2015 04:19:48 PM,02/04/2015 04:19:48 PM,02/04/2015 04:20:39 PM,02/04/2015 04:22:07 PM,04/25/2016 01:12:27 PM,04/25/2016 01:12:27 PM,04/25/2016 01:12:27 PM,Code 2 Transport,02/04/2015 04:24:07 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.781960649289, -122.402224095303)",150352888-E08 -160951705,KM11,16037621,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:27:12 PM,04/04/2016 12:29:51 PM,04/04/2016 12:30:50 PM,04/04/2016 12:31:27 PM,04/04/2016 12:35:55 PM,04/04/2016 12:39:35 PM,04/04/2016 01:05:14 PM,Code 2 Transport,04/04/2016 01:40:51 PM,800 Block of SILVER AVE,San Francisco,94134,B09,42,6145,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7290310292149, -122.418931444009)",160951705-KM11 -150440860,AM06,15017028,Medical Incident,02/13/2015,02/13/2015,02/13/2015 08:25:30 AM,02/13/2015 08:26:53 AM,02/13/2015 08:34:04 AM,02/13/2015 08:34:04 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Other,02/13/2015 08:43:55 AM,400 Block of ROLPH ST,San Francisco,94112,B09,43,6226,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7123368698446, -122.433796156182)",150440860-AM06 -152712327,RC1,15103841,Medical Incident,09/28/2015,09/28/2015,09/28/2015 03:27:41 PM,09/28/2015 03:27:56 PM,09/28/2015 03:33:11 PM,09/28/2015 03:33:11 PM,09/28/2015 03:33:11 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Code 2 Transport,09/28/2015 03:50:21 PM,PINE ST/MASON ST,San Francisco,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Nob Hill,"(37.7908806970808, -122.410622872864)",152712327-RC1 -160951692,56,16037619,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:25:24 PM,04/04/2016 12:26:37 PM,04/04/2016 12:27:10 PM,04/04/2016 12:27:25 PM,04/04/2016 12:33:13 PM,04/04/2016 12:52:52 PM,04/04/2016 01:04:20 PM,Code 2 Transport,04/04/2016 01:32:35 PM,300 Block of CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Inner Richmond,"(37.7829589368788, -122.462810653671)",160951692-56 -142080654,RS1,14071963,Train / Rail Incident,07/27/2014,07/26/2014,07/27/2014 05:03:05 AM,07/27/2014 05:04:14 AM,07/27/2014 05:08:04 AM,07/27/2014 05:09:39 AM,07/27/2014 05:09:39 AM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Fire,07/27/2014 07:38:22 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Fire,1,RESCUE SQUAD,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",142080654-RS1 -142051465,E13,14070940,Alarms,07/24/2014,07/24/2014,07/24/2014 11:42:33 AM,07/24/2014 11:44:07 AM,07/24/2014 11:44:19 AM,07/24/2014 11:47:14 AM,07/24/2014 11:47:42 AM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/24/2014 11:51:54 AM,100 Block of SUTTER ST,San Francisco,94104,B01,13,1242,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7898368259498, -122.403344544792)",142051465-E13 -152843636,E13,15109222,Other,10/11/2015,10/11/2015,10/11/2015 08:58:17 PM,10/11/2015 08:58:30 PM,10/11/2015 08:58:42 PM,10/11/2015 09:00:07 PM,10/11/2015 09:02:56 PM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/11/2015 09:10:44 PM,500 Block of MARKET ST,San Francisco,94104,B01,13,1164,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7909708601112, -122.399388634958)",152843636-E13 -151761758,E17,15067044,Medical Incident,06/25/2015,06/25/2015,06/25/2015 01:04:19 PM,06/25/2015 01:05:18 PM,06/25/2015 01:05:52 PM,06/25/2015 01:06:50 PM,06/25/2015 01:10:26 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,Against Medical Advice,06/25/2015 02:40:21 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",151761758-E17 -160964180,AM18,16038225,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:23:07 PM,04/05/2016 11:25:56 PM,04/05/2016 11:27:38 PM,04/05/2016 11:28:09 PM,04/05/2016 11:29:15 PM,04/06/2016 12:18:10 AM,04/06/2016 12:18:14 AM,Code 2 Transport,04/06/2016 12:18:16 AM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160964180-AM18 -161002841,70,16039898,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:34:36 PM,04/09/2016 07:34:36 PM,04/09/2016 07:34:55 PM,04/09/2016 07:35:05 PM,04/09/2016 07:51:51 PM,04/09/2016 07:52:00 PM,04/09/2016 08:22:34 PM,Code 2 Transport,04/09/2016 08:37:12 PM,MISSION ST/24TH ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7522394549791, -122.418445272851)",161002841-70 -152873687,62,15110417,Medical Incident,10/14/2015,10/14/2015,10/14/2015 07:21:39 PM,10/14/2015 07:22:27 PM,10/14/2015 07:22:53 PM,10/14/2015 07:23:08 PM,10/14/2015 07:29:37 PM,10/14/2015 07:36:17 PM,10/14/2015 07:44:33 PM,Code 2 Transport,10/14/2015 08:15:23 PM,GEARY BL/WEBSTER ST,San Francisco,94115,B04,5,3432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7845682402461, -122.431204945516)",152873687-62 -142063618,B04,14071521,Structure Fire,07/25/2014,07/25/2014,07/25/2014 10:02:41 PM,07/25/2014 10:05:24 PM,07/25/2014 10:05:36 PM,07/25/2014 10:07:09 PM,07/25/2014 10:09:49 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Fire,07/25/2014 10:11:51 PM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,false,Alarm,1,CHIEF,5,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",142063618-B04 -141911482,E07,14066191,Medical Incident,07/10/2014,07/10/2014,07/10/2014 11:45:50 AM,07/10/2014 11:47:52 AM,07/10/2014 11:50:02 AM,07/10/2014 11:51:05 AM,07/10/2014 11:58:05 AM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Code 2 Transport,07/10/2014 12:07:26 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",141911482-E07 -152162110,E08,15082284,Alarms,08/04/2015,08/04/2015,08/04/2015 02:58:32 PM,08/04/2015 02:59:32 PM,08/04/2015 02:59:39 PM,08/04/2015 03:01:54 PM,08/04/2015 03:04:34 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/04/2015 03:12:15 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",152162110-E08 -143473221,KM03,14123962,Medical Incident,12/13/2014,12/13/2014,12/13/2014 08:03:04 PM,12/13/2014 08:03:43 PM,12/13/2014 08:04:04 PM,12/13/2014 08:04:50 PM,12/13/2014 08:08:10 PM,12/13/2014 08:17:41 PM,12/13/2014 08:27:09 PM,Code 2 Transport,12/13/2014 09:00:40 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",143473221-KM03 -160940785,KM08,16037185,Medical Incident,04/03/2016,04/02/2016,04/03/2016 07:05:15 AM,04/03/2016 07:06:16 AM,04/03/2016 07:07:50 AM,04/03/2016 07:07:50 AM,04/03/2016 07:14:00 AM,04/03/2016 07:54:37 AM,04/03/2016 08:08:42 AM,Code 3 Transport,04/03/2016 08:21:26 AM,2100 Block of LARKIN ST,San Francisco,94109,B01,41,1631,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,4,3,Russian Hill,"(37.7975625827342, -122.420477453586)",160940785-KM08 -142042079,T10,14070644,Structure Fire,07/23/2014,07/23/2014,07/23/2014 02:05:11 PM,07/23/2014 02:05:49 PM,07/23/2014 02:06:25 PM,07/23/2014 02:07:37 PM,07/23/2014 02:09:39 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/23/2014 02:14:34 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7829763286601, -122.441111760659)",142042079-T10 -142531381,AM04,14088254,Traffic Collision,09/10/2014,09/10/2014,09/10/2014 11:13:18 AM,09/10/2014 11:14:26 AM,09/10/2014 11:22:20 AM,09/10/2014 11:22:20 AM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,Code 3 Transport,09/10/2014 11:33:19 AM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3219,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,11,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",142531381-AM04 -160991600,52,16039284,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:39:37 PM,04/08/2016 12:39:37 PM,04/08/2016 12:40:26 PM,04/08/2016 12:40:36 PM,04/08/2016 01:00:05 PM,04/08/2016 01:17:06 PM,04/08/2016 01:29:19 PM,Code 2 Transport,04/08/2016 02:04:38 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245977, -122.446150377688)",160991600-52 -160953923,KM03,16037812,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:12:41 PM,04/04/2016 10:14:42 PM,04/04/2016 10:14:53 PM,04/04/2016 10:15:24 PM,04/04/2016 10:22:20 PM,04/04/2016 10:37:13 PM,04/04/2016 10:44:59 PM,Code 2 Transport,04/04/2016 11:22:20 PM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",160953923-KM03 -142122418,74,14073555,Medical Incident,07/31/2014,07/31/2014,07/31/2014 04:17:16 PM,07/31/2014 04:19:06 PM,07/31/2014 04:22:49 PM,07/31/2014 04:23:10 PM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Code 2 Transport,07/31/2014 04:24:05 PM,300 Block of ARGUELLO BLVD,San Francisco,94118,B07,10,7114,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7844395880636, -122.459158221689)",142122418-74 -152650603,E06,15101378,Alarms,09/22/2015,09/21/2015,09/22/2015 07:13:54 AM,09/22/2015 07:15:28 AM,09/22/2015 07:15:38 AM,09/22/2015 07:17:38 AM,09/22/2015 07:20:33 AM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/22/2015 07:46:36 AM,4000 Block of 17TH ST,San Francisco,94114,B05,6,5253,3,3,3,true,Alarm,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7624364423334, -122.436895079866)",152650603-E06 -142472836,RS1,14086158,Structure Fire,09/04/2014,09/04/2014,09/04/2014 05:59:02 PM,09/04/2014 05:59:30 PM,09/04/2014 06:00:29 PM,09/04/2014 06:02:37 PM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,04/25/2016 01:15:16 PM,Fire,09/04/2014 06:04:59 PM,300 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,RESCUE SQUAD,7,1,3,North Beach,"(37.7981913307058, -122.40367998233)",142472836-RS1 -141422743,KM10,14048778,Medical Incident,05/22/2014,05/22/2014,05/22/2014 05:44:06 PM,05/22/2014 05:45:55 PM,05/22/2014 05:46:16 PM,05/22/2014 05:47:12 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,Cancelled,05/22/2014 05:51:54 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",141422743-KM10 -150651986,B04,15024849,Alarms,03/06/2015,03/06/2015,03/06/2015 12:52:49 PM,03/06/2015 12:54:02 PM,03/06/2015 12:54:15 PM,03/06/2015 12:55:24 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Fire,03/06/2015 01:00:50 PM,200 Block of LINCOLN BLVD,Presidio,94129,B99,51,4612,3,3,3,false,Alarm,1,CHIEF,2,7,2,Presidio,"(37.8015231495142, -122.455935974002)",150651986-B04 -142541831,E18,14088696,Structure Fire,09/11/2014,09/11/2014,09/11/2014 01:46:01 PM,09/11/2014 01:47:21 PM,09/11/2014 01:48:02 PM,09/11/2014 01:49:07 PM,09/11/2014 01:52:36 PM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Fire,09/11/2014 02:11:05 PM,2500 Block of 39TH AVE,San Francisco,94116,B08,18,7617,3,3,3,true,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7393058595121, -122.496988889113)",142541831-E18 -150871670,E01,15033214,Medical Incident,03/28/2015,03/28/2015,03/28/2015 12:29:25 PM,03/28/2015 12:30:11 PM,03/28/2015 12:31:55 PM,03/28/2015 12:33:19 PM,03/28/2015 12:34:59 PM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Code 2 Transport,03/28/2015 12:58:05 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",150871670-E01 -151912044,E03,15072911,Citizen Assist / Service Call,07/10/2015,07/10/2015,07/10/2015 01:43:50 PM,07/10/2015 01:44:30 PM,07/10/2015 01:44:43 PM,07/10/2015 01:46:05 PM,07/10/2015 01:47:21 PM,04/25/2016 01:09:33 PM,04/25/2016 01:09:33 PM,Fire,07/10/2015 01:54:17 PM,OFARRELL ST/VAN NESS AV,San Francisco,94109,B04,3,3162,3,3,3,true,Alarm,1,ENGINE,1,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",151912044-E03 -143042359,B07,14107585,Structure Fire,10/31/2014,10/31/2014,10/31/2014 04:53:43 PM,10/31/2014 04:53:43 PM,10/31/2014 04:54:16 PM,10/31/2014 04:55:29 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,Fire,10/31/2014 04:58:57 PM,100 Block of GRATTAN ST,San Francisco,94117,B05,12,516,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7638803864645, -122.450310275747)",143042359-B07 -160981321,82,16038863,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:19:08 AM,04/07/2016 10:20:04 AM,04/07/2016 10:20:44 AM,04/07/2016 10:21:10 AM,04/07/2016 10:47:41 AM,04/07/2016 10:47:44 AM,04/07/2016 11:11:25 AM,Code 2 Transport,04/07/2016 11:55:13 AM,THE EMBARCADERO NOR/MARKET ST,San Francisco,94111,B01,13,901,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7953080071442, -122.3938439729)",160981321-82 -141170317,E01,14039626,Structure Fire,04/27/2014,04/27/2014,04/27/2014 09:34:42 PM,04/27/2014 09:36:21 PM,04/27/2014 09:36:35 PM,04/27/2014 09:37:00 PM,04/27/2014 09:38:58 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Fire,04/27/2014 09:41:37 PM,600 Block of POST ST,SAN FRANCISCO,94109,B01,3,1451,3,3,3,true,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7878082243767, -122.412644332435)",141170317-E01 -150382529,AM02,15014843,Medical Incident,02/07/2015,02/07/2015,02/07/2015 04:31:16 PM,02/07/2015 04:32:23 PM,02/07/2015 04:32:46 PM,02/07/2015 04:34:08 PM,02/07/2015 04:53:04 PM,02/07/2015 04:53:11 PM,02/07/2015 05:08:46 PM,Code 2 Transport,02/07/2015 05:28:22 PM,0 Block of YACHT RD,San Francisco,94123,B04,16,4215,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,None,2,Marina,"(37.8067582085576, -122.446916219003)",150382529-AM02 -150692120,E07,15026384,Alarms,03/10/2015,03/10/2015,03/10/2015 03:00:04 PM,03/10/2015 03:01:21 PM,03/10/2015 03:01:51 PM,03/10/2015 03:03:55 PM,03/10/2015 03:03:55 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 03:39:28 PM,19TH ST/LEXINGTON ST,San Francisco,94110,B06,7,5434,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7601475545791, -122.420659533979)",150692120-E07 -160983025,76,16039040,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:53:24 PM,04/07/2016 05:56:09 PM,04/07/2016 06:17:31 PM,04/07/2016 06:17:38 PM,04/07/2016 06:28:58 PM,04/07/2016 06:35:54 PM,04/07/2016 06:46:58 PM,Code 2 Transport,04/07/2016 07:08:06 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160983025-76 -150302835,E13,15011671,Medical Incident,01/30/2015,01/30/2015,01/30/2015 05:27:50 PM,01/30/2015 05:28:26 PM,01/30/2015 05:28:53 PM,01/30/2015 05:29:48 PM,01/30/2015 05:32:14 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Code 2 Transport,01/30/2015 05:42:19 PM,200 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7914249452441, -122.402544180964)",150302835-E13 -152710087,AP,15103649,Other,09/28/2015,09/27/2015,09/28/2015 12:42:43 AM,09/28/2015 12:42:43 AM,09/28/2015 12:42:43 AM,09/28/2015 12:42:43 AM,09/28/2015 12:42:43 AM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Fire,09/28/2015 12:42:43 AM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",152710087-AP -143024030,E01,14106844,Structure Fire,10/29/2014,10/29/2014,10/29/2014 10:54:40 PM,10/29/2014 10:54:40 PM,10/29/2014 10:54:54 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Fire,10/29/2014 10:55:42 PM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",143024030-E01 -142763432,E31,14097095,Medical Incident,10/03/2014,10/03/2014,10/03/2014 07:45:18 PM,10/03/2014 07:45:58 PM,10/03/2014 07:46:19 PM,10/03/2014 07:47:23 PM,10/03/2014 07:50:08 PM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Code 2 Transport,10/03/2014 07:54:42 PM,FULTON ST/5TH AV,San Francisco,94122,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7737597510029, -122.462683796008)",142763432-E31 -152723126,D2,15104258,Structure Fire,09/29/2015,09/29/2015,09/29/2015 06:24:33 PM,09/29/2015 06:25:10 PM,09/29/2015 06:26:10 PM,09/29/2015 06:27:30 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Fire,09/29/2015 06:32:17 PM,900 Block of BAY ST,San Francisco,94109,B01,28,3134,3,3,3,false,Alarm,1,CHIEF,7,1,2,Russian Hill,"(37.8044682925217, -122.423012152019)",152723126-D2 -142920813,T03,14102912,Structure Fire,10/19/2014,10/18/2014,10/19/2014 07:11:32 AM,10/19/2014 07:11:32 AM,10/19/2014 07:12:30 AM,10/19/2014 07:14:04 AM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,No Merit,10/19/2014 07:19:18 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",142920813-T03 -151854161,77,15070811,Medical Incident,07/04/2015,07/04/2015,07/04/2015 11:05:15 PM,07/04/2015 11:05:15 PM,07/04/2015 11:07:09 PM,07/04/2015 11:07:30 PM,07/04/2015 11:23:04 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Against Medical Advice,07/05/2015 12:06:42 AM,JEFFERSON ST/MASON ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8084210588577, -122.414164435002)",151854161-77 -151431825,E08,15054384,Medical Incident,05/23/2015,05/23/2015,05/23/2015 01:31:55 PM,05/23/2015 01:34:55 PM,05/23/2015 01:35:29 PM,05/23/2015 01:36:36 PM,05/23/2015 01:39:46 PM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Code 2 Transport,05/23/2015 01:44:42 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",151431825-E08 -152191508,E19,15083364,Medical Incident,08/07/2015,08/07/2015,08/07/2015 12:05:22 PM,08/07/2015 12:08:24 PM,08/07/2015 12:08:34 PM,08/07/2015 12:08:56 PM,08/07/2015 12:17:20 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Code 3 Transport,08/07/2015 12:27:19 PM,LAKE MERCED BL/JOHN MUIR DR,San Francisco,,B08,19,8775,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,None,None,None,"(37.7080857299394, -122.485723865524)",152191508-E19 -143502957,B03,14125113,Alarms,12/16/2014,12/16/2014,12/16/2014 06:47:30 PM,12/16/2014 06:48:45 PM,12/16/2014 06:49:12 PM,12/16/2014 06:50:42 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/16/2014 06:53:56 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,CHIEF,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",143502957-B03 -152942277,E22,15113020,Medical Incident,10/21/2015,10/21/2015,10/21/2015 02:43:31 PM,10/21/2015 02:45:46 PM,10/21/2015 02:46:48 PM,10/21/2015 02:47:42 PM,10/21/2015 02:52:16 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Code 2 Transport,10/21/2015 03:10:05 PM,900 Block of LAWTON ST,San Francisco,94122,B08,22,7351,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7591659914101, -122.472912658983)",152942277-E22 -153150239,E02,15120894,Structure Fire,11/11/2015,11/10/2015,11/11/2015 02:47:47 AM,11/11/2015 02:49:03 AM,11/11/2015 02:49:26 AM,11/11/2015 02:51:49 AM,11/11/2015 02:51:57 AM,04/25/2016 01:07:16 PM,04/25/2016 01:07:16 PM,Fire,11/11/2015 02:59:54 AM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,2,1,3,North Beach,"(37.7979466732983, -122.406460643507)",153150239-E02 -160930974,KM09,16036771,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:17:02 AM,04/02/2016 09:18:48 AM,04/02/2016 09:19:54 AM,04/02/2016 09:20:44 AM,04/02/2016 09:22:40 AM,04/02/2016 09:46:36 AM,04/02/2016 10:01:15 AM,Code 2 Transport,04/02/2016 10:46:11 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",160930974-KM09 -141120161,78,14037772,Medical Incident,04/22/2014,04/22/2014,04/22/2014 11:25:20 AM,04/22/2014 11:27:05 AM,04/22/2014 11:27:29 AM,04/22/2014 11:27:35 AM,04/22/2014 11:34:59 AM,04/22/2014 11:55:38 AM,04/22/2014 12:22:30 PM,Code 2 Transport,04/22/2014 12:43:58 PM,1000 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,1557,,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",141120161-78 -142894009,E08,14102048,Medical Incident,10/16/2014,10/16/2014,10/16/2014 10:34:15 PM,10/16/2014 10:36:00 PM,10/16/2014 10:36:48 PM,10/16/2014 10:38:28 PM,10/16/2014 10:40:55 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Unable to Locate,10/16/2014 10:44:58 PM,0 Block of MISSION ROCK ST,San Francisco,94158,B03,8,2231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7731157627784, -122.38857804747)",142894009-E08 -141990618,T07,14068793,Alarms,07/18/2014,07/17/2014,07/18/2014 06:56:08 AM,07/18/2014 06:58:14 AM,07/18/2014 06:58:33 AM,07/18/2014 07:01:02 AM,07/18/2014 07:04:35 AM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Fire,07/18/2014 07:15:34 AM,700 Block of KANSAS ST,San Francisco,94107,B10,37,2522,3,3,3,false,Alarm,1,TRUCK,3,10,10,Potrero Hill,"(37.7602588003168, -122.403040580003)",141990618-T07 -142123047,85,14073618,Medical Incident,07/31/2014,07/31/2014,07/31/2014 07:11:36 PM,07/31/2014 07:11:55 PM,07/31/2014 07:22:25 PM,07/31/2014 07:22:39 PM,07/31/2014 07:27:57 PM,07/31/2014 07:43:32 PM,07/31/2014 07:55:29 PM,Code 2 Transport,07/31/2014 08:33:52 PM,2100 Block of BUSH ST,San Francisco,94115,B04,38,3512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870349820474, -122.432911990737)",142123047-85 -141210149,T18,14040874,Medical Incident,05/01/2014,05/01/2014,05/01/2014 11:09:59 AM,05/01/2014 11:10:20 AM,05/01/2014 11:11:06 AM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Code 2 Transport,05/01/2014 11:12:11 AM,2400 Block of 40TH AVE,SAN FRANCISCO,94116,B08,18,7636,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7411202245251, -122.498193339522)",141210149-T18 -143270552,AM20,14115778,Medical Incident,11/23/2014,11/22/2014,11/23/2014 03:18:22 AM,11/23/2014 03:21:21 AM,11/23/2014 03:21:38 AM,11/23/2014 03:22:16 AM,11/23/2014 03:25:35 AM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Medical Examiner,11/23/2014 04:53:43 AM,500 Block of EDDY ST,San Francisco,94102,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",143270552-AM20 -161001704,64,16039775,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:34:44 PM,04/09/2016 01:35:32 PM,04/09/2016 01:35:56 PM,04/09/2016 01:36:24 PM,04/09/2016 01:37:57 PM,04/09/2016 01:52:40 PM,04/09/2016 02:30:25 PM,Code 2 Transport,04/09/2016 03:15:26 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",161001704-64 -143423689,E31,14121727,Traffic Collision,12/08/2014,12/08/2014,12/08/2014 09:12:32 PM,12/08/2014 09:12:32 PM,12/08/2014 09:13:01 PM,12/08/2014 09:14:56 PM,12/08/2014 09:16:52 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 09:26:01 PM,17TH AV/FULTON ST,San Francisco,94118,B07,31,7156,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7729624089558, -122.475613626473)",143423689-E31 -152030346,E02,15077202,Medical Incident,07/22/2015,07/21/2015,07/22/2015 04:10:16 AM,07/22/2015 04:10:48 AM,07/22/2015 04:11:01 AM,07/22/2015 04:12:44 AM,07/22/2015 04:12:44 AM,04/25/2016 01:09:20 PM,04/25/2016 01:09:20 PM,Code 2 Transport,07/22/2015 04:23:58 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",152030346-E02 -151001259,E42,15037795,Odor (Strange / Unknown),04/10/2015,04/10/2015,04/10/2015 11:16:12 AM,04/10/2015 11:17:33 AM,04/10/2015 11:17:41 AM,04/10/2015 11:19:13 AM,04/10/2015 11:20:35 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Fire,04/10/2015 11:26:45 AM,400 Block of BURROWS ST,San Francisco,94134,B10,42,633,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.7278769871167, -122.407535487433)",151001259-E42 -143263881,E38,14115697,"Extrication / Entrapped (Machinery, Vehicle)",11/22/2014,11/22/2014,11/22/2014 10:36:44 PM,11/22/2014 10:39:00 PM,11/22/2014 10:41:38 PM,11/22/2014 10:41:38 PM,11/22/2014 10:43:16 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,No Merit,11/22/2014 10:44:38 PM,VAN NESS AV/CALIFORNIA ST,San Francisco,94109,B04,38,3155,2,E,3,false,Fire,1,ENGINE,1,4,2,Nob Hill,"(37.7903696585646, -122.422328957341)",143263881-E38 -160991681,KM05,16039293,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:03:32 PM,04/08/2016 01:03:32 PM,04/08/2016 01:03:49 PM,04/08/2016 01:04:43 PM,04/08/2016 01:35:43 PM,04/08/2016 01:54:38 PM,04/08/2016 02:20:19 PM,Code 2 Transport,04/08/2016 02:55:01 PM,PERSIA AV/LONDON ST,San Francisco,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7227637319069, -122.435208400094)",160991681-KM05 -153112847,E36,15119654,Medical Incident,11/07/2015,11/07/2015,11/07/2015 06:10:48 PM,11/07/2015 06:10:48 PM,11/07/2015 06:14:12 PM,11/07/2015 06:15:13 PM,11/07/2015 06:17:06 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Code 2 Transport,11/07/2015 06:21:14 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",153112847-E36 -141901099,KM09,14065782,Medical Incident,07/09/2014,07/09/2014,07/09/2014 10:07:58 AM,07/09/2014 10:07:58 AM,07/09/2014 10:07:58 AM,07/09/2014 10:07:58 AM,07/09/2014 10:07:58 AM,07/09/2014 10:30:02 AM,07/09/2014 10:38:49 AM,Code 2 Transport,07/09/2014 11:45:22 AM,19TH AV/ORTEGA ST,San Francisco,94116,B99,40,7421,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7523785986376, -122.476292239944)",141901099-KM09 -142572565,E18,14089867,Structure Fire,09/14/2014,09/14/2014,09/14/2014 06:41:34 PM,09/14/2014 06:42:28 PM,09/14/2014 06:42:52 PM,09/14/2014 06:44:11 PM,09/14/2014 06:45:22 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 06:54:36 PM,34TH AV/ORTEGA ST,San Francisco,94116,B08,18,7543,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7516620266117, -122.492417457857)",142572565-E18 -141333441,E17,14045489,Medical Incident,05/13/2014,05/13/2014,05/13/2014 09:30:41 PM,05/13/2014 09:30:41 PM,05/13/2014 09:32:38 PM,05/13/2014 09:33:30 PM,05/13/2014 09:34:48 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,Code 2 Transport,05/13/2014 09:55:50 PM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",141333441-E17 -160972023,88,16038424,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:03:50 PM,04/06/2016 01:03:50 PM,04/06/2016 01:04:10 PM,04/06/2016 01:04:18 PM,04/06/2016 01:12:00 PM,04/06/2016 01:38:47 PM,04/06/2016 01:46:38 PM,Code 2 Transport,04/06/2016 02:23:57 PM,1300 Block of OAKDALE AVE,San Francisco,94124,B10,17,653,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.732342352455, -122.386280381355)",160972023-88 -150583945,E01,15022362,Alarms,02/27/2015,02/27/2015,02/27/2015 11:06:15 PM,02/27/2015 11:06:44 PM,02/27/2015 11:06:56 PM,02/27/2015 11:08:20 PM,02/27/2015 11:09:21 PM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Fire,02/27/2015 11:09:30 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",150583945-E01 -143080741,E40,14108897,Medical Incident,11/04/2014,11/04/2014,11/04/2014 08:17:22 AM,11/04/2014 08:20:37 AM,11/04/2014 08:21:23 AM,11/04/2014 08:22:28 AM,11/04/2014 08:24:23 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 3 Transport,11/04/2014 08:33:37 AM,2400 Block of 19TH AVE,San Francisco,94116,B08,40,7415,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7421133651274, -122.475733220027)",143080741-E40 -141280081,T09,14043334,Structure Fire,05/08/2014,05/07/2014,05/08/2014 12:28:42 AM,05/08/2014 12:28:42 AM,05/08/2014 12:29:31 AM,05/08/2014 12:31:08 AM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Fire,05/08/2014 12:34:55 AM,3RD ST/CESAR CHAVEZ ST,San Francisco,94124,B10,25,2641,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.750263378729, -122.3875852715)",141280081-T09 -161002520,AM06,16039867,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:49:27 PM,04/09/2016 05:51:52 PM,04/09/2016 05:52:53 PM,04/09/2016 05:54:15 PM,04/09/2016 06:03:12 PM,04/09/2016 06:18:58 PM,04/09/2016 06:32:33 PM,Code 2 Transport,04/09/2016 06:59:53 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",161002520-AM06 -150972356,70,15036809,Medical Incident,04/07/2015,04/07/2015,04/07/2015 04:13:54 PM,04/07/2015 04:15:41 PM,04/07/2015 04:17:05 PM,04/07/2015 04:17:37 PM,04/07/2015 04:34:10 PM,04/07/2015 04:49:26 PM,04/07/2015 05:39:00 PM,Code 2 Transport,04/07/2015 06:20:35 PM,FOLSOM ST/5TH ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",150972356-70 -151822063,AM08,15069493,Traffic Collision,07/01/2015,07/01/2015,07/01/2015 02:05:08 PM,07/01/2015 02:05:08 PM,07/01/2015 02:05:47 PM,07/01/2015 02:06:47 PM,07/01/2015 02:08:26 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,No Merit,07/01/2015 02:10:26 PM,2ND ST/STILLMAN ST,San Francisco,94107,B03,8,2151,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7835035083625, -122.39415051609)",151822063-AM08 -152602019,KM12,15099394,Medical Incident,09/17/2015,09/17/2015,09/17/2015 01:36:59 PM,09/17/2015 01:36:59 PM,09/17/2015 01:48:28 PM,09/17/2015 01:48:59 PM,09/17/2015 01:58:05 PM,09/17/2015 02:08:20 PM,09/17/2015 02:23:42 PM,Code 2 Transport,09/17/2015 02:54:59 PM,JACKSON ST/SANSOME ST,San Francisco,94111,B01,13,1156,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7966261628877, -122.401853391642)",152602019-KM12 -151570484,E07,15059811,Medical Incident,06/06/2015,06/05/2015,06/06/2015 04:04:23 AM,06/06/2015 04:05:31 AM,06/06/2015 04:06:12 AM,06/06/2015 04:07:22 AM,06/06/2015 04:09:36 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Code 2 Transport,06/06/2015 04:19:36 AM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7578954435745, -122.417957286582)",151570484-E07 -142480125,85,14086281,Medical Incident,09/05/2014,09/04/2014,09/05/2014 12:49:32 AM,09/05/2014 12:52:00 AM,09/05/2014 12:52:38 AM,09/05/2014 12:53:04 AM,09/05/2014 12:56:33 AM,09/05/2014 01:27:38 AM,09/05/2014 01:43:12 AM,Code 2 Transport,09/05/2014 02:32:34 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",142480125-85 -142501969,RC2,14087213,Water Rescue,09/07/2014,09/07/2014,09/07/2014 02:27:09 PM,09/07/2014 02:28:36 PM,09/07/2014 02:30:28 PM,09/07/2014 02:32:01 PM,09/07/2014 02:37:32 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Fire,09/07/2014 02:57:50 PM,1000 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7234,3,E,3,true,Fire,1,RESCUE CAPTAIN,3,7,1,Lincoln Park,"(37.7859619989064, -122.496761041371)",142501969-RC2 -141401336,E05,14047965,Medical Incident,05/20/2014,05/20/2014,05/20/2014 11:22:48 AM,05/20/2014 11:23:06 AM,05/20/2014 11:23:18 AM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,Cancelled,05/20/2014 11:23:57 AM,1000 Block of TURK ST,San Francisco,94102,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",141401336-E05 -160953468,KM11,16037774,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:43:01 PM,04/04/2016 07:44:35 PM,04/04/2016 07:47:02 PM,04/04/2016 07:47:02 PM,04/04/2016 07:53:14 PM,04/04/2016 08:26:59 PM,04/04/2016 08:32:37 PM,Code 2 Transport,04/04/2016 08:52:34 PM,1000 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,Nob Hill,"(37.7918323962484, -122.411275585139)",160953468-KM11 -151840715,E42,15070150,Medical Incident,07/03/2015,07/02/2015,07/03/2015 07:36:31 AM,07/03/2015 07:38:07 AM,07/03/2015 07:38:44 AM,07/03/2015 07:39:15 AM,07/03/2015 07:45:22 AM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Code 2 Transport,07/03/2015 07:55:31 AM,1000 Block of WOOLSEY ST,San Francisco,94134,B09,42,6344,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.7227347726385, -122.411955017443)",151840715-E42 -142040893,B01,14070534,Structure Fire,07/23/2014,07/23/2014,07/23/2014 08:53:12 AM,07/23/2014 08:54:02 AM,07/23/2014 08:54:37 AM,07/23/2014 08:55:19 AM,07/23/2014 09:00:57 AM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Fire,07/23/2014 09:05:09 AM,0 Block of VAN NESS AVE,San Francisco,94102,B02,36,3211,3,3,3,false,Alarm,1,CHIEF,8,2,6,Tenderloin,"(37.7757784176924, -122.419234662317)",142040893-B01 -142592320,E01,14090537,Medical Incident,09/16/2014,09/16/2014,09/16/2014 03:40:31 PM,09/16/2014 03:44:43 PM,09/16/2014 03:45:47 PM,09/16/2014 03:47:33 PM,09/16/2014 03:50:17 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Code 2 Transport,09/16/2014 03:56:13 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7742496611166, -122.414204535023)",142592320-E01 -153222437,B04,15123927,Alarms,11/18/2015,11/18/2015,11/18/2015 02:38:12 PM,11/18/2015 02:39:30 PM,11/18/2015 02:39:59 PM,11/18/2015 02:40:46 PM,11/18/2015 02:42:17 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Fire,11/18/2015 02:43:27 PM,1900 Block of CALIFORNIA ST,San Francisco,94109,B04,38,3254,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7897931395754, -122.4264272862)",153222437-B04 -141723508,B03,14059503,Alarms,06/21/2014,06/21/2014,06/21/2014 10:14:59 PM,06/21/2014 10:16:30 PM,06/21/2014 10:16:34 PM,06/21/2014 10:17:24 PM,06/21/2014 10:20:55 PM,04/25/2016 01:16:38 PM,04/25/2016 01:16:38 PM,Fire,06/21/2014 10:39:18 PM,500 Block of HOWARD ST,San Francisco,94105,B03,1,2146,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7869461751428, -122.398143526066)",141723508-B03 -143481983,83,14124255,Medical Incident,12/14/2014,12/14/2014,12/14/2014 02:31:47 PM,12/14/2014 02:32:08 PM,12/14/2014 02:32:53 PM,12/14/2014 02:33:19 PM,12/14/2014 02:41:02 PM,12/14/2014 02:54:41 PM,12/14/2014 03:08:49 PM,Code 2 Transport,12/14/2014 03:57:08 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",143481983-83 -151362028,AM08,15051694,Medical Incident,05/16/2015,05/16/2015,05/16/2015 02:15:54 PM,05/16/2015 02:17:56 PM,05/16/2015 02:18:48 PM,05/16/2015 02:19:51 PM,05/16/2015 02:26:38 PM,05/16/2015 02:43:39 PM,05/16/2015 02:59:57 PM,Code 3 Transport,05/16/2015 03:45:43 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7628860418812, -122.419391026615)",151362028-AM08 -141373374,E18,14047086,Medical Incident,05/17/2014,05/17/2014,05/17/2014 09:26:41 PM,05/17/2014 09:27:42 PM,05/17/2014 09:28:15 PM,05/17/2014 09:28:51 PM,05/17/2014 09:32:50 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,No Merit,05/17/2014 09:43:53 PM,28TH AV/LINCOLN WY,San Francisco,94122,B08,22,7512,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7650189095413, -122.486902419801)",141373374-E18 -142092580,T03,14072544,Citizen Assist / Service Call,07/28/2014,07/28/2014,07/28/2014 06:05:37 PM,07/28/2014 06:07:10 PM,07/28/2014 06:07:44 PM,07/28/2014 06:09:20 PM,07/28/2014 06:11:26 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Fire,07/28/2014 06:17:02 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",142092580-T03 -160983231,AM16,16039069,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:42:08 PM,04/07/2016 06:43:04 PM,04/07/2016 06:43:25 PM,04/07/2016 06:44:04 PM,04/07/2016 06:47:58 PM,04/07/2016 07:01:10 PM,04/07/2016 07:13:01 PM,Code 2 Transport,04/07/2016 07:36:24 PM,0 Block of HEATHER AVE,San Francisco,94118,B05,10,4374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7849091591108, -122.452936292976)",160983231-AM16 -152010748,KM08,15076512,Medical Incident,07/20/2015,07/20/2015,07/20/2015 08:07:11 AM,07/20/2015 08:09:01 AM,07/20/2015 08:10:36 AM,07/20/2015 08:11:52 AM,07/20/2015 08:20:42 AM,07/20/2015 08:26:41 AM,04/25/2016 01:09:22 PM,Code 2 Transport,07/20/2015 08:52:12 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",152010748-KM08 -143062910,RC2,14108398,Medical Incident,11/02/2014,11/02/2014,11/02/2014 07:27:11 PM,11/02/2014 07:27:59 PM,11/02/2014 07:28:50 PM,11/02/2014 07:29:57 PM,11/02/2014 07:37:36 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/02/2014 07:51:50 PM,500 Block of 40TH AVE,San Francisco,94121,B07,34,7264,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,7,1,Outer Richmond,"(37.7783895132557, -122.500800304869)",143062910-RC2 -150971800,AM02,15036761,Medical Incident,04/07/2015,04/07/2015,04/07/2015 01:43:34 PM,04/07/2015 01:43:34 PM,04/07/2015 01:46:03 PM,04/07/2015 01:46:38 PM,04/07/2015 02:03:12 PM,04/07/2015 02:05:19 PM,04/07/2015 02:28:40 PM,Code 2 Transport,04/07/2015 02:59:44 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",150971800-AM02 -152853601,E37,15109594,Medical Incident,10/12/2015,10/12/2015,10/12/2015 08:26:25 PM,10/12/2015 08:27:50 PM,10/12/2015 08:28:21 PM,10/12/2015 08:30:05 PM,10/12/2015 08:32:50 PM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Patient Declined Transport,10/12/2015 08:47:14 PM,18TH ST/CONNECTICUT ST,San Francisco,94107,B03,37,2462,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,10,Potrero Hill,"(37.7625212031096, -122.397494999858)",152853601-E37 -142340142,55,14081179,Medical Incident,08/22/2014,08/21/2014,08/22/2014 01:01:57 AM,08/22/2014 01:06:55 AM,08/22/2014 01:15:43 AM,08/22/2014 01:17:03 AM,08/22/2014 01:28:24 AM,08/22/2014 01:41:23 AM,08/22/2014 02:02:59 AM,Code 2 Transport,08/22/2014 02:27:10 AM,MISSION ST/ACTON ST,San Francisco,94112,B09,33,6213,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",142340142-55 -151253757,E21,15047543,Alarms,05/05/2015,05/05/2015,05/05/2015 09:37:41 PM,05/05/2015 09:38:07 PM,05/05/2015 09:38:40 PM,05/05/2015 09:39:29 PM,05/05/2015 09:42:05 PM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Fire,05/05/2015 09:46:01 PM,700 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7715296499469, -122.434542909739)",151253757-E21 -151171517,E01,15044199,Alarms,04/27/2015,04/27/2015,04/27/2015 11:44:07 AM,04/27/2015 11:44:53 AM,04/27/2015 11:45:24 AM,04/27/2015 11:45:56 AM,04/27/2015 11:50:23 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 11:50:50 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",151171517-E01 -160983624,79,16039104,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:50:10 PM,04/07/2016 08:51:20 PM,04/07/2016 08:51:31 PM,04/07/2016 08:51:43 PM,04/07/2016 08:56:15 PM,04/07/2016 09:09:29 PM,04/07/2016 09:25:05 PM,Code 2 Transport,04/07/2016 09:54:48 PM,3900 Block of 24TH ST,San Francisco,94114,B06,11,5522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",160983624-79 -160993112,58,16039427,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:44:26 PM,04/08/2016 06:47:27 PM,04/08/2016 06:48:02 PM,04/08/2016 06:53:48 PM,04/08/2016 06:53:48 PM,04/08/2016 06:54:47 PM,04/08/2016 07:06:39 PM,Code 3 Transport,04/08/2016 07:27:22 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,2,9,Mission,"(37.7632358693888, -122.419563499673)",160993112-58 -141320827,T18,14044860,Structure Fire,05/12/2014,05/12/2014,05/12/2014 09:07:25 AM,05/12/2014 09:08:26 AM,05/12/2014 09:09:20 AM,05/12/2014 09:10:38 AM,05/12/2014 09:12:37 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Fire,05/12/2014 09:27:15 AM,1700 Block of 34TH AVE,San Francisco,94122,B08,18,7562,3,3,3,false,Fire,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7544622718852, -122.492680703899)",141320827-T18 -151710921,66,15065269,Medical Incident,06/20/2015,06/20/2015,06/20/2015 09:00:33 AM,06/20/2015 09:00:33 AM,06/20/2015 09:00:53 AM,06/20/2015 09:01:34 AM,06/20/2015 09:05:01 AM,06/20/2015 09:17:47 AM,06/20/2015 09:37:53 AM,Code 2 Transport,06/20/2015 10:13:57 AM,GLORIA CT/GENEVA AV,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7172581733719, -122.441622839514)",151710921-66 -151333816,E23,15050630,Citizen Assist / Service Call,05/13/2015,05/13/2015,05/13/2015 09:00:15 PM,05/13/2015 09:01:05 PM,05/13/2015 09:01:57 PM,05/13/2015 09:03:04 PM,05/13/2015 09:04:55 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Fire,05/13/2015 09:16:21 PM,1500 Block of 44TH AVE,San Francisco,94122,B08,23,7652,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7577173938026, -122.503657105125)",151333816-E23 -161003057,KM06,16039928,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:42:53 PM,04/09/2016 08:42:53 PM,04/09/2016 08:43:34 PM,04/09/2016 08:44:45 PM,04/09/2016 08:53:25 PM,04/09/2016 09:05:49 PM,04/09/2016 09:19:24 PM,Code 2 Transport,04/09/2016 09:53:09 PM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",161003057-KM06 -151483872,T09,15056515,Medical Incident,05/28/2015,05/28/2015,05/28/2015 11:17:52 PM,05/28/2015 11:17:52 PM,05/28/2015 11:18:16 PM,05/28/2015 11:19:52 PM,05/28/2015 11:22:28 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Code 3 Transport,05/28/2015 11:25:43 PM,24TH ST/YORK ST,San Francisco,94110,B06,9,5531,A,E,3,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",151483872-T09 -141851562,T03,14064045,Alarms,07/04/2014,07/04/2014,07/04/2014 02:08:00 PM,07/04/2014 02:10:44 PM,07/04/2014 02:11:12 PM,07/04/2014 02:12:24 PM,07/04/2014 02:15:11 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Fire,07/04/2014 02:19:37 PM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,false,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",141851562-T03 -152650402,E37,15101357,Smoke Investigation (Outside),09/22/2015,09/21/2015,09/22/2015 04:41:32 AM,09/22/2015 04:43:50 AM,09/22/2015 04:44:26 AM,09/22/2015 04:46:22 AM,09/22/2015 04:47:19 AM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/22/2015 04:51:04 AM,1200 Block of RHODE ISLAND ST,San Francisco,94107,B10,37,2556,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7539279404747, -122.401597623185)",152650402-E37 -150193346,B02,15007652,Administrative,01/19/2015,01/19/2015,01/19/2015 09:06:49 PM,01/19/2015 09:06:57 PM,01/19/2015 09:07:16 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,04/25/2016 01:12:44 PM,Fire,01/19/2015 09:08:46 PM,100 Block of OAK ST,San Francisco,94102,B02,36,3266,3,3,3,false,,1,CHIEF,1,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",150193346-B02 -150220198,B03,15008433,Alarms,01/22/2015,01/21/2015,01/22/2015 02:11:13 AM,01/22/2015 02:13:01 AM,01/22/2015 02:13:12 AM,01/22/2015 02:16:11 AM,01/22/2015 02:20:21 AM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Fire,01/22/2015 02:20:35 AM,900 Block of DE HARO ST,San Francisco,94107,B10,37,2511,3,3,3,false,Alarm,1,CHIEF,2,10,10,Potrero Hill,"(37.7589370511593, -122.400966701986)",150220198-B03 -153070379,KM03,15117839,Medical Incident,11/03/2015,11/02/2015,11/03/2015 04:59:44 AM,11/03/2015 05:05:55 AM,11/03/2015 05:06:55 AM,11/03/2015 05:07:38 AM,11/03/2015 05:17:37 AM,11/03/2015 05:33:16 AM,11/03/2015 06:01:47 AM,Code 2 Transport,11/03/2015 06:46:13 AM,400 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.779915446382, -122.507564306305)",153070379-KM03 -150780347,89,15029763,Medical Incident,03/19/2015,03/18/2015,03/19/2015 03:02:23 AM,03/19/2015 03:05:14 AM,03/19/2015 03:05:26 AM,03/19/2015 03:05:34 AM,03/19/2015 03:11:12 AM,03/19/2015 03:40:18 AM,03/19/2015 03:52:02 AM,Code 2 Transport,03/19/2015 04:14:18 AM,300 Block of 25TH AVE,San Francisco,94121,B07,14,7214,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7829570675264, -122.484873511385)",150780347-89 -153182077,E28,15122298,Medical Incident,11/14/2015,11/14/2015,11/14/2015 02:01:35 PM,11/14/2015 02:02:28 PM,11/14/2015 02:03:43 PM,11/14/2015 02:04:45 PM,11/14/2015 02:07:31 PM,04/25/2016 01:07:12 PM,04/25/2016 01:07:12 PM,Code 2 Transport,11/14/2015 02:35:35 PM,900 Block of NORTH POINT ST,San Francisco,94109,B01,28,1623,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",153182077-E28 -151301608,E41,15049343,Medical Incident,05/10/2015,05/10/2015,05/10/2015 01:28:43 PM,05/10/2015 01:28:43 PM,05/10/2015 01:29:10 PM,05/10/2015 01:30:33 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Cancelled,05/10/2015 01:34:20 PM,POLK ST/CALIFORNIA ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7905782582579, -122.420687383115)",151301608-E41 -150260328,AM20,15009874,Medical Incident,01/26/2015,01/25/2015,01/26/2015 03:51:56 AM,01/26/2015 03:54:43 AM,01/26/2015 03:55:10 AM,01/26/2015 03:55:40 AM,01/26/2015 04:03:01 AM,01/26/2015 04:10:54 AM,01/26/2015 04:32:00 AM,Code 2 Transport,01/26/2015 05:14:43 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",150260328-AM20 -142991548,T09,14105572,Medical Incident,10/26/2014,10/26/2014,10/26/2014 12:08:50 PM,10/26/2014 12:08:50 PM,10/26/2014 12:09:28 PM,10/26/2014 12:10:47 PM,10/26/2014 12:12:47 PM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,Code 3 Transport,10/26/2014 12:18:33 PM,25TH ST/UTAH ST,San Francisco,94110,B10,9,2624,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,10,10,Mission,"(37.7517869490269, -122.405207702984)",142991548-T09 -153192861,E06,15122770,Medical Incident,11/15/2015,11/15/2015,11/15/2015 06:05:45 PM,11/15/2015 06:05:45 PM,11/15/2015 06:06:25 PM,11/15/2015 06:08:18 PM,11/15/2015 06:10:55 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Code 2 Transport,11/15/2015 06:16:03 PM,200 Block of VALENCIA ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7684427416002, -122.422297658234)",153192861-E06 -141160283,RC3,14039245,Medical Incident,04/26/2014,04/26/2014,04/26/2014 05:58:44 PM,04/26/2014 06:00:47 PM,04/26/2014 06:01:34 PM,04/26/2014 06:03:09 PM,04/26/2014 06:09:11 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Code 2 Transport,04/26/2014 06:25:31 PM,1200 Block of HOLLISTER AVE,SAN FRANCISCO,94124,B10,44,6544,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7212941468458, -122.395082655815)",141160283-RC3 -143192030,E29,14113001,Medical Incident,11/15/2014,11/15/2014,11/15/2014 02:18:00 PM,11/15/2014 02:18:38 PM,11/15/2014 02:18:59 PM,11/15/2014 02:19:38 PM,11/15/2014 02:22:27 PM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Code 2 Transport,11/15/2014 02:26:18 PM,400 Block of 10TH ST,San Francisco,94103,B02,29,2344,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7709248562482, -122.410555957263)",143192030-E29 -160982277,65,16038963,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:31:30 PM,04/07/2016 02:33:18 PM,04/07/2016 02:33:58 PM,04/07/2016 02:34:05 PM,04/07/2016 02:37:46 PM,04/07/2016 02:51:04 PM,04/07/2016 03:01:01 PM,Code 2 Transport,04/07/2016 03:56:27 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",160982277-65 -142500748,67,14087092,Medical Incident,09/07/2014,09/06/2014,09/07/2014 06:24:17 AM,09/07/2014 06:25:24 AM,09/07/2014 06:27:13 AM,09/07/2014 06:27:20 AM,09/07/2014 06:33:48 AM,09/07/2014 06:52:11 AM,09/07/2014 07:21:01 AM,Code 2 Transport,09/07/2014 07:44:57 AM,BRANNAN ST/6TH ST,San Francisco,94103,B03,8,2256,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748087750185, -122.400981567592)",142500748-67 -160980285,KM03,16038754,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:34:22 AM,04/07/2016 02:35:23 AM,04/07/2016 02:35:45 AM,04/07/2016 02:36:48 AM,04/07/2016 02:40:24 AM,04/07/2016 03:08:36 AM,04/07/2016 03:27:26 AM,Code 2 Transport,04/07/2016 04:12:16 AM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",160980285-KM03 -143080966,E03,14108916,Medical Incident,11/04/2014,11/04/2014,11/04/2014 09:25:07 AM,11/04/2014 09:28:30 AM,11/04/2014 09:29:02 AM,11/04/2014 09:31:37 AM,11/04/2014 09:35:49 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 09:44:03 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",143080966-E03 -142551244,E36,14088976,Medical Incident,09/12/2014,09/12/2014,09/12/2014 10:32:08 AM,09/12/2014 10:34:38 AM,09/12/2014 10:36:44 AM,09/12/2014 10:36:44 AM,09/12/2014 10:40:23 AM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Patient Declined Transport,09/12/2014 10:43:03 AM,18TH ST/CHURCH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",142551244-E36 -153341908,56,15128428,Medical Incident,11/30/2015,11/30/2015,11/30/2015 02:06:51 PM,11/30/2015 02:07:29 PM,11/30/2015 02:08:08 PM,11/30/2015 02:09:09 PM,11/30/2015 02:15:10 PM,11/30/2015 02:40:07 PM,11/30/2015 02:52:04 PM,Code 2 Transport,11/30/2015 04:01:18 PM,1400 Block of STEINER ST,San Francisco,94115,B04,5,3623,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7826256736324, -122.434187755055)",153341908-56 -152460871,T01,15093723,Medical Incident,09/03/2015,09/03/2015,09/03/2015 08:35:29 AM,09/03/2015 08:39:06 AM,09/03/2015 08:40:21 AM,09/03/2015 08:43:33 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Patient Declined Transport,09/03/2015 08:45:22 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,E,3,false,Potentially Life-Threatening,1,TRUCK,4,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",152460871-T01 -161001608,75,16039762,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:00:25 PM,04/09/2016 01:03:27 PM,04/09/2016 01:04:02 PM,04/09/2016 01:04:10 PM,04/09/2016 01:28:33 PM,04/09/2016 01:47:15 PM,04/09/2016 01:56:28 PM,Code 2 Transport,04/09/2016 02:22:24 PM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",161001608-75 -152992896,E51,15114867,Outside Fire,10/26/2015,10/26/2015,10/26/2015 05:19:13 PM,10/26/2015 05:21:59 PM,10/26/2015 05:25:38 PM,10/26/2015 05:27:38 PM,10/26/2015 05:31:32 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Fire,10/26/2015 05:40:11 PM,300 Block of ARGUELLO BL,Presidio,94118,B99,51,4631,3,3,3,true,Fire,1,ENGINE,1,7,2,Presidio Heights,"(37.7853734299746, -122.459087140011)",152992896-E51 -141611121,E03,14055456,Medical Incident,06/10/2014,06/10/2014,06/10/2014 10:24:17 AM,06/10/2014 10:25:39 AM,06/10/2014 10:26:00 AM,06/10/2014 10:26:22 AM,06/10/2014 10:28:26 AM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,No Merit,06/10/2014 10:31:02 AM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7855449803674, -122.415357786653)",141611121-E03 -152822193,T03,15108286,Medical Incident,10/09/2015,10/09/2015,10/09/2015 02:53:26 PM,10/09/2015 02:56:28 PM,10/09/2015 02:57:23 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Code 2 Transport,10/09/2015 02:59:14 PM,400 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1544,3,3,3,false,Non Life-threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",152822193-T03 -142031347,T01,14070210,Alarms,07/22/2014,07/22/2014,07/22/2014 11:26:49 AM,07/22/2014 11:28:25 AM,07/22/2014 11:28:29 AM,07/22/2014 11:30:31 AM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Fire,07/22/2014 11:30:41 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Alarm,1,TRUCK,4,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",142031347-T01 -152603454,E36,15099524,Medical Incident,09/17/2015,09/17/2015,09/17/2015 07:33:46 PM,09/17/2015 07:38:23 PM,09/17/2015 07:39:51 PM,09/17/2015 07:41:10 PM,09/17/2015 07:46:01 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/17/2015 07:52:22 PM,600 Block of HAYES ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7764132200225, -122.427099517601)",152603454-E36 -150790013,T15,15030113,Structure Fire,03/20/2015,03/19/2015,03/20/2015 12:01:07 AM,03/20/2015 12:04:49 AM,03/20/2015 12:04:58 AM,03/20/2015 12:06:21 AM,03/20/2015 12:09:05 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 03:02:42 AM,MADRID ST/BRAZIL AV,San Francisco,94112,B09,43,6133,3,3,3,false,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.7231672404647, -122.43163313445)",150790013-T15 -160941506,87,16037240,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:24:48 AM,04/03/2016 11:26:19 AM,04/03/2016 11:26:53 AM,04/03/2016 11:27:01 AM,04/03/2016 11:33:55 AM,04/03/2016 12:10:11 PM,04/03/2016 12:32:35 PM,Code 2 Transport,04/03/2016 01:15:36 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",160941506-87 -152640384,E11,15100934,Medical Incident,09/21/2015,09/20/2015,09/21/2015 03:46:19 AM,09/21/2015 03:46:41 AM,09/21/2015 03:47:31 AM,09/21/2015 03:49:23 AM,09/21/2015 03:52:44 AM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Code 2 Transport,09/21/2015 04:02:25 AM,3300 Block of FOLSOM ST,San Francisco,94110,B06,11,5663,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7446537800097, -122.413259224164)",152640384-E11 -141812537,T02,14062763,Structure Fire,06/30/2014,06/30/2014,06/30/2014 05:06:20 PM,06/30/2014 05:06:20 PM,06/30/2014 05:07:01 PM,06/30/2014 05:08:14 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 05:09:35 PM,GRANT AV/BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",141812537-T02 -150913281,B02,15034721,Alarms,04/01/2015,04/01/2015,04/01/2015 07:25:24 PM,04/01/2015 07:28:00 PM,04/01/2015 07:28:20 PM,04/01/2015 07:31:35 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/01/2015 07:40:45 PM,700 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.779520032299, -122.425195823386)",150913281-B02 -151072414,83,15040551,Medical Incident,04/17/2015,04/17/2015,04/17/2015 03:18:25 PM,04/17/2015 03:19:36 PM,04/17/2015 03:20:05 PM,04/17/2015 03:20:19 PM,04/17/2015 03:25:17 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Patient Declined Transport,04/17/2015 03:47:55 PM,0 Block of BEALE ST,San Francisco,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7918179006358, -122.396549353378)",151072414-83 -153160508,82,15121300,Traffic Collision,11/12/2015,11/11/2015,11/12/2015 06:48:57 AM,11/12/2015 06:48:57 AM,11/12/2015 06:49:53 AM,11/12/2015 06:50:04 AM,11/12/2015 06:59:17 AM,11/12/2015 07:09:39 AM,11/12/2015 07:16:53 AM,Code 3 Transport,11/12/2015 08:07:14 AM,OFARRELL ST/HYDE ST,San Francisco,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7853759730503, -122.416259705763)",153160508-82 -141920475,E31,14066443,Traffic Collision,07/11/2014,07/10/2014,07/11/2014 04:45:34 AM,07/11/2014 04:46:16 AM,07/11/2014 04:47:05 AM,07/11/2014 04:48:40 AM,07/11/2014 04:50:02 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Other,07/11/2014 05:20:40 AM,1100 Block of BALBOA ST,San Francisco,94118,B07,31,7145,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7769718505659, -122.470973447149)",141920475-E31 -161000088,53,16039561,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:31:54 AM,04/09/2016 12:32:35 AM,04/09/2016 12:32:46 AM,04/09/2016 12:33:01 AM,04/09/2016 12:35:35 AM,04/09/2016 12:50:50 AM,04/09/2016 01:27:10 AM,Code 2 Transport,04/09/2016 01:47:34 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",161000088-53 -152652434,63,15101519,Medical Incident,09/22/2015,09/22/2015,09/22/2015 03:35:13 PM,09/22/2015 03:36:42 PM,09/22/2015 03:36:55 PM,09/22/2015 03:37:36 PM,09/22/2015 03:41:23 PM,09/22/2015 03:48:27 PM,09/22/2015 04:00:52 PM,Code 2 Transport,09/22/2015 04:29:48 PM,2500 Block of SAN JOSE AVE,San Francisco,94112,B09,33,8325,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7166727233715, -122.450032664131)",152652434-63 -160972134,86,16038437,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:27:36 PM,04/06/2016 01:28:47 PM,04/06/2016 01:33:40 PM,04/06/2016 01:33:49 PM,04/06/2016 02:02:09 PM,04/06/2016 02:16:59 PM,04/06/2016 02:43:50 PM,Code 3 Transport,04/06/2016 03:42:55 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160972134-86 -151780228,E21,15067602,Medical Incident,06/27/2015,06/26/2015,06/27/2015 01:18:39 AM,06/27/2015 01:19:34 AM,06/27/2015 01:19:52 AM,06/27/2015 01:21:52 AM,06/27/2015 01:23:36 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/27/2015 01:27:22 AM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,E,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",151780228-E21 -152460407,E03,15093688,Medical Incident,09/03/2015,09/02/2015,09/03/2015 04:45:08 AM,09/03/2015 04:45:08 AM,09/03/2015 04:47:23 AM,09/03/2015 04:48:34 AM,09/03/2015 04:50:26 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Other,09/03/2015 04:50:41 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7813958668825, -122.417987996268)",152460407-E03 -142432044,82,14084683,Water Rescue,08/31/2014,08/31/2014,08/31/2014 03:18:23 PM,08/31/2014 03:19:20 PM,08/31/2014 03:23:20 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Fire,08/31/2014 03:27:46 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,true,Fire,1,MEDIC,12,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",142432044-82 -150223597,AM24,15008747,Medical Incident,01/22/2015,01/22/2015,01/22/2015 10:31:56 PM,01/22/2015 10:34:21 PM,01/22/2015 10:34:44 PM,01/22/2015 10:35:30 PM,01/22/2015 10:41:08 PM,01/22/2015 10:47:18 PM,01/22/2015 11:15:29 PM,Code 2 Transport,01/22/2015 11:38:45 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",150223597-AM24 -152772967,T03,15106338,Structure Fire,10/04/2015,10/04/2015,10/04/2015 06:20:42 PM,10/04/2015 06:22:25 PM,10/04/2015 06:22:42 PM,10/04/2015 06:23:31 PM,10/04/2015 06:25:36 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Fire,10/04/2015 06:32:04 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",152772967-T03 -161000935,85,16039677,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:05:59 AM,04/09/2016 09:05:59 AM,04/09/2016 09:07:35 AM,04/09/2016 09:07:46 AM,04/09/2016 09:31:50 AM,04/09/2016 09:50:52 AM,04/09/2016 10:23:06 AM,Code 2 Transport,04/09/2016 11:05:52 AM,800 Block of GREAT HWY,San Francisco,94121,B07,34,7316,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7721351097841, -122.511311019216)",161000935-85 -150611217,E03,15023220,Medical Incident,03/02/2015,03/02/2015,03/02/2015 10:44:22 AM,03/02/2015 10:44:22 AM,03/02/2015 10:46:03 AM,03/02/2015 10:46:03 AM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Unable to Locate,03/02/2015 10:49:27 AM,TURK ST/MASON ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,South of Market,"(37.7832878520296, -122.408952160052)",150611217-E03 -142032424,E32,14070311,Alarms,07/22/2014,07/22/2014,07/22/2014 04:45:06 PM,07/22/2014 04:47:22 PM,07/22/2014 04:48:07 PM,07/22/2014 04:48:58 PM,07/22/2014 04:54:52 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Fire,07/22/2014 05:13:17 PM,400 Block of FRANCONIA ST,San Francisco,94110,B10,32,5722,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7427331584639, -122.408199890691)",142032424-E32 -152083177,E43,15079377,Medical Incident,07/27/2015,07/27/2015,07/27/2015 06:40:25 PM,07/27/2015 06:43:59 PM,07/27/2015 06:44:19 PM,07/27/2015 06:46:41 PM,07/27/2015 06:58:28 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/27/2015 07:06:46 PM,0 Block of DEL MONTE ST,San Francisco,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.715912649699, -122.443539419785)",152083177-E43 -152562730,E24,15097997,Medical Incident,09/13/2015,09/13/2015,09/13/2015 05:53:48 PM,09/13/2015 05:54:22 PM,09/13/2015 05:54:40 PM,09/13/2015 05:55:36 PM,09/13/2015 05:57:14 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,Code 2 Transport,09/13/2015 06:08:38 PM,300 Block of HOFFMAN AVE,San Francisco,94114,B06,24,5517,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7512957078396, -122.440724224321)",152562730-E24 -142163437,84,14075064,Medical Incident,08/04/2014,08/04/2014,08/04/2014 09:47:42 PM,08/04/2014 09:48:20 PM,08/04/2014 09:49:02 PM,08/04/2014 09:49:08 PM,08/04/2014 10:03:25 PM,08/04/2014 10:26:01 PM,08/04/2014 10:51:41 PM,Code 2 Transport,08/04/2014 11:18:01 PM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",142163437-84 -160933993,KM03,16037086,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:44:01 PM,04/02/2016 11:47:09 PM,04/02/2016 11:47:13 PM,04/02/2016 11:47:37 PM,04/02/2016 11:52:17 PM,04/03/2016 12:07:56 AM,04/03/2016 12:22:53 AM,Code 3 Transport,04/03/2016 01:01:06 AM,300 Block of 4TH AVE,San Francisco,94118,B07,31,7116,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7820778169902, -122.462139928652)",160933993-KM03 -151361007,KM08,15051612,Medical Incident,05/16/2015,05/16/2015,05/16/2015 09:12:43 AM,05/16/2015 09:13:47 AM,05/16/2015 09:14:38 AM,05/16/2015 09:15:21 AM,05/16/2015 09:27:51 AM,05/16/2015 09:45:20 AM,05/16/2015 09:53:36 AM,Code 2 Transport,05/16/2015 10:12:34 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",151361007-KM08 -152542514,E03,15097193,Traffic Collision,09/11/2015,09/11/2015,09/11/2015 04:15:25 PM,09/11/2015 04:15:25 PM,09/11/2015 04:15:45 PM,09/11/2015 04:16:23 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Code 2 Transport,09/11/2015 04:20:00 PM,1600 Block of HYDE ST,San Francisco,94109,B01,41,1565,2,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Russian Hill,"(37.79559861643, -122.418250699774)",152542514-E03 -151082875,55,15041015,Medical Incident,04/18/2015,04/18/2015,04/18/2015 06:44:55 PM,04/18/2015 06:48:11 PM,04/18/2015 06:48:27 PM,04/18/2015 06:48:35 PM,04/18/2015 07:04:07 PM,04/18/2015 07:47:08 PM,04/18/2015 07:47:17 PM,Code 2 Transport,04/18/2015 08:21:00 PM,BROADWAY/GRANT AV,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",151082875-55 -152811475,E19,15107794,Structure Fire,10/08/2015,10/08/2015,10/08/2015 11:25:47 AM,10/08/2015 11:25:47 AM,10/08/2015 11:26:18 AM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Fire,10/08/2015 11:28:35 AM,EUCALYPTUS DR/SYLVAN DR,San Francisco,94132,B08,19,8743,3,3,3,true,Alarm,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",152811475-E19 -142950573,AM02,14103932,Traffic Collision,10/22/2014,10/21/2014,10/22/2014 07:17:31 AM,10/22/2014 07:20:52 AM,10/22/2014 07:21:05 AM,10/22/2014 07:21:47 AM,10/22/2014 07:33:18 AM,10/22/2014 07:53:02 AM,10/22/2014 08:17:11 AM,Code 2 Transport,10/22/2014 08:44:45 AM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",142950573-AM02 -151543194,E06,15058813,Medical Incident,06/03/2015,06/03/2015,06/03/2015 06:51:04 PM,06/03/2015 06:52:10 PM,06/03/2015 06:52:47 PM,06/03/2015 06:54:07 PM,06/03/2015 06:55:53 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Code 2 Transport,06/03/2015 07:04:55 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",151543194-E06 -151230412,56,15046552,,05/03/2015,05/02/2015,05/03/2015 02:57:00 AM,05/03/2015 02:57:00 AM,05/03/2015 02:58:00 AM,05/03/2015 02:58:00 AM,05/03/2015 03:11:00 AM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,SFPD,05/03/2015 03:14:00 AM,800 Block of LYON ST,San Francisco,94115,B05,21,4345,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7785548965034, -122.44367133871)",151230412-56 -141150027,82,14038686,Medical Incident,04/25/2014,04/24/2014,04/25/2014 03:01:23 AM,04/25/2014 03:02:40 AM,04/25/2014 03:02:59 AM,04/25/2014 03:03:11 AM,04/25/2014 03:20:38 AM,04/25/2014 03:53:01 AM,04/25/2014 04:10:09 AM,Code 2 Transport,04/25/2014 05:03:50 AM,500 Block of BEACH ST,SAN FRANCISCO,94133,B01,28,1521,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8069135411381, -122.418073383892)",141150027-82 -160933822,57,16037071,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:57:08 PM,04/02/2016 10:57:29 PM,04/02/2016 10:57:51 PM,04/02/2016 10:58:16 PM,04/02/2016 11:02:15 PM,04/02/2016 11:20:14 PM,04/02/2016 11:36:00 PM,Code 2 Transport,04/03/2016 12:15:27 AM,5000 Block of MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7168806522557, -122.440777706649)",160933822-57 -160981549,59,16038887,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:25:52 AM,04/07/2016 11:26:30 AM,04/07/2016 11:28:33 AM,04/07/2016 11:28:52 AM,04/07/2016 11:38:20 AM,04/07/2016 11:57:23 AM,04/07/2016 12:06:34 PM,Code 2 Transport,04/07/2016 12:32:00 PM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",160981549-59 -160971814,64,16038407,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:18:19 PM,04/06/2016 12:19:08 PM,04/06/2016 12:19:41 PM,04/06/2016 12:20:57 PM,04/06/2016 12:28:31 PM,04/06/2016 12:56:35 PM,04/06/2016 01:08:14 PM,Code 2 Transport,04/06/2016 01:46:29 PM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,5,1,Lone Mountain/USF,"(37.7744969083055, -122.452976375626)",160971814-64 -151392954,E15,15052891,Structure Fire,05/19/2015,05/19/2015,05/19/2015 06:28:00 PM,05/19/2015 06:28:00 PM,05/19/2015 06:28:42 PM,05/19/2015 06:29:33 PM,05/19/2015 06:30:21 PM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/19/2015 06:31:30 PM,OCEAN AV/BRIGHTON AV,San Francisco,94112,B09,15,8472,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7236723652343, -122.455135658662)",151392954-E15 -152752431,64,15105404,Traffic Collision,10/02/2015,10/02/2015,10/02/2015 03:49:47 PM,10/02/2015 03:49:47 PM,10/02/2015 03:50:33 PM,10/02/2015 03:50:42 PM,10/02/2015 03:52:37 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,No Merit,10/02/2015 03:57:28 PM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774574199485, -122.413157691577)",152752431-64 -160942041,KM12,16037280,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:09:43 PM,04/03/2016 02:09:43 PM,04/03/2016 02:10:46 PM,04/03/2016 02:11:05 PM,04/03/2016 02:23:33 PM,04/03/2016 02:37:41 PM,04/03/2016 02:55:43 PM,Code 3 Transport,04/03/2016 03:32:41 PM,7TH ST/MISSION ST,San Francisco,94103,B02,1,2315,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160942041-KM12 -142260066,E01,14078338,Medical Incident,08/14/2014,08/13/2014,08/14/2014 12:25:50 AM,08/14/2014 12:26:44 AM,08/14/2014 12:27:07 AM,08/14/2014 12:28:24 AM,08/14/2014 12:30:25 AM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Code 2 Transport,08/14/2014 12:43:02 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142260066-E01 -151241572,KM14,15047007,Medical Incident,05/04/2015,05/04/2015,05/04/2015 12:22:28 PM,05/04/2015 12:24:06 PM,05/04/2015 12:25:03 PM,05/04/2015 12:25:37 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Patient Declined Transport,05/04/2015 12:33:31 PM,1500 Block of SHAFTER AVE,San Francisco,94124,B10,17,6547,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7304640154692, -122.38983115909)",151241572-KM14 -153390190,68,15130304,Medical Incident,12/05/2015,12/04/2015,12/05/2015 01:05:21 AM,12/05/2015 01:05:21 AM,12/05/2015 01:05:36 AM,12/05/2015 01:05:43 AM,12/05/2015 01:20:16 AM,12/05/2015 01:27:43 AM,12/05/2015 01:44:27 AM,Code 2 Transport,12/05/2015 02:27:50 AM,POLK ST/FERN ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",153390190-68 -152172982,RC1,15082707,Medical Incident,08/05/2015,08/05/2015,08/05/2015 05:37:18 PM,08/05/2015 05:38:26 PM,08/05/2015 05:39:54 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 05:43:00 PM,6TH ST/MINNA ST,San Francisco,94103,B03,1,2251,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,South of Market,"(37.7805353840251, -122.40816079453)",152172982-RC1 -143081606,77,14108982,Medical Incident,11/04/2014,11/04/2014,11/04/2014 12:22:06 PM,11/04/2014 12:23:03 PM,11/04/2014 12:23:41 PM,11/04/2014 12:23:51 PM,11/04/2014 12:37:39 PM,11/04/2014 12:37:43 PM,11/04/2014 01:08:43 PM,Code 2 Transport,11/04/2014 01:44:11 PM,1300 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",143081606-77 -141353989,88,14046355,Medical Incident,05/15/2014,05/15/2014,05/15/2014 10:30:33 PM,05/15/2014 10:33:08 PM,05/15/2014 10:34:15 PM,05/15/2014 10:34:43 PM,05/15/2014 10:48:43 PM,05/15/2014 10:57:56 PM,05/15/2014 11:20:24 PM,Code 2 Transport,05/16/2014 12:27:49 AM,100 Block of BRANNAN ST,San Francisco,94107,B03,8,2134,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843212349417, -122.38904057367)",141353989-88 -142240941,KM02,14077648,Medical Incident,08/12/2014,08/12/2014,08/12/2014 09:20:47 AM,08/12/2014 09:20:47 AM,08/12/2014 09:21:36 AM,08/12/2014 09:23:59 AM,08/12/2014 09:33:19 AM,08/12/2014 09:51:35 AM,08/12/2014 10:10:25 AM,Code 2 Transport,08/12/2014 10:28:30 AM,800 Block of PINE ST,San Francisco,94108,B01,41,1413,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7909306094565, -122.409788680324)",142240941-KM02 -142242883,RS1,14077852,Structure Fire,08/12/2014,08/12/2014,08/12/2014 06:41:31 PM,08/12/2014 06:42:09 PM,08/12/2014 06:43:01 PM,08/12/2014 06:43:20 PM,08/12/2014 06:49:30 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Fire,08/12/2014 06:54:27 PM,1800 Block of WASHINGTON ST,San Francisco,94109,B04,38,3226,3,3,3,false,Alarm,1,RESCUE SQUAD,9,4,2,Pacific Heights,"(37.7928914704423, -122.423683668421)",142242883-RS1 -150241931,83,15009335,Traffic Collision,01/24/2015,01/24/2015,01/24/2015 02:47:58 PM,01/24/2015 02:47:58 PM,01/24/2015 02:52:28 PM,01/24/2015 02:52:43 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,No Merit,01/24/2015 03:03:28 PM,2600 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7825841925678, -122.447617194265)",150241931-83 -160972720,66,16038495,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:33:53 PM,04/06/2016 03:33:53 PM,04/06/2016 03:34:20 PM,04/06/2016 03:34:32 PM,04/06/2016 03:38:42 PM,04/06/2016 03:51:58 PM,04/06/2016 04:48:39 PM,Code 2 Transport,04/06/2016 05:38:46 PM,CASTRO ST/MARKET ST,San Francisco,94114,B05,6,5253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",160972720-66 -142261159,E24,14078430,Outside Fire,08/14/2014,08/14/2014,08/14/2014 10:26:39 AM,08/14/2014 10:27:43 AM,08/14/2014 10:28:36 AM,08/14/2014 10:28:48 AM,08/14/2014 10:31:15 AM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Fire,08/14/2014 11:18:13 AM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5415,3,3,3,true,Fire,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",142261159-E24 -151513067,77,15057612,Medical Incident,05/31/2015,05/31/2015,05/31/2015 08:24:34 PM,05/31/2015 08:26:34 PM,05/31/2015 08:26:51 PM,05/31/2015 08:29:10 PM,05/31/2015 08:37:45 PM,05/31/2015 08:46:45 PM,05/31/2015 08:57:52 PM,Code 2 Transport,05/31/2015 09:18:35 PM,1700 Block of INDIANA ST,San Francisco,94124,B10,25,2635,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7484542727181, -122.390331398029)",151513067-77 -160924068,62,16036664,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:57:06 PM,04/01/2016 11:58:32 PM,04/01/2016 11:58:54 PM,04/01/2016 11:59:18 PM,04/02/2016 12:03:11 AM,04/02/2016 12:51:24 AM,04/02/2016 01:13:37 AM,Code 2 Transport,04/02/2016 01:45:17 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160924068-62 -142793494,E32,14098319,Medical Incident,10/06/2014,10/06/2014,10/06/2014 09:36:22 PM,10/06/2014 09:37:16 PM,10/06/2014 09:38:30 PM,10/06/2014 09:39:41 PM,10/06/2014 09:40:40 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,No Merit,10/06/2014 09:48:36 PM,CORTLAND AV/ANDOVER ST,San Francisco,94110,B06,32,5732,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7390616989426, -122.416519601586)",142793494-E32 -161001604,85,16039760,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:01:23 PM,04/09/2016 01:02:46 PM,04/09/2016 01:03:08 PM,04/09/2016 01:03:18 PM,04/09/2016 01:18:50 PM,04/09/2016 01:27:26 PM,04/09/2016 01:57:47 PM,Code 2 Transport,04/09/2016 02:53:38 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",161001604-85 -150440103,E22,15016939,Structure Fire,02/13/2015,02/12/2015,02/13/2015 12:45:34 AM,02/13/2015 12:45:41 AM,02/13/2015 12:45:48 AM,02/13/2015 12:47:27 AM,02/13/2015 12:49:30 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Fire,02/13/2015 12:49:56 AM,21ST AV/JUDAH ST,San Francisco,94122,B08,22,7426,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",150440103-E22 -152233330,E01,15085109,Medical Incident,08/11/2015,08/11/2015,08/11/2015 06:55:23 PM,08/11/2015 06:55:23 PM,08/11/2015 06:55:47 PM,08/11/2015 06:56:48 PM,08/11/2015 06:59:39 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Code 2 Transport,08/11/2015 07:00:00 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",152233330-E01 -153043722,E10,15116831,Medical Incident,10/31/2015,10/31/2015,10/31/2015 08:55:08 PM,10/31/2015 08:55:24 PM,10/31/2015 09:01:13 PM,10/31/2015 09:02:12 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,Patient Declined Transport,10/31/2015 09:03:34 PM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",153043722-E10 -142640875,E01,14092284,Medical Incident,09/21/2014,09/21/2014,09/21/2014 08:09:58 AM,09/21/2014 08:12:01 AM,09/21/2014 08:12:38 AM,09/21/2014 08:12:49 AM,09/21/2014 08:15:44 AM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Code 2 Transport,09/21/2014 08:17:12 AM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",142640875-E01 -152683334,E11,15102824,Medical Incident,09/25/2015,09/25/2015,09/25/2015 07:33:39 PM,09/25/2015 07:35:12 PM,09/25/2015 07:40:45 PM,09/25/2015 07:42:10 PM,09/25/2015 07:45:04 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Code 2 Transport,09/25/2015 07:52:55 PM,800 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Mission,"(37.7589313181833, -122.421382559773)",152683334-E11 -142463792,E05,14085856,Structure Fire,09/03/2014,09/03/2014,09/03/2014 09:41:53 PM,09/03/2014 09:41:53 PM,09/03/2014 09:42:33 PM,09/03/2014 09:43:46 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Fire,09/03/2014 09:45:26 PM,POLK ST/ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",142463792-E05 -150053458,E17,15002035,Medical Incident,01/05/2015,01/05/2015,01/05/2015 09:08:33 PM,01/05/2015 09:09:47 PM,01/05/2015 09:10:09 PM,01/05/2015 09:14:36 PM,01/05/2015 09:14:36 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Patient Declined Transport,01/05/2015 09:25:27 PM,0 Block of COMMER CT,San Francisco,94124,B10,17,6622,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7325365939267, -122.385005626506)",150053458-E17 -152481809,67,15094683,Medical Incident,09/05/2015,09/05/2015,09/05/2015 12:56:52 PM,09/05/2015 12:57:39 PM,09/05/2015 12:59:13 PM,09/05/2015 01:00:44 PM,09/05/2015 01:28:41 PM,09/05/2015 01:32:25 PM,09/05/2015 01:52:08 PM,Code 2 Transport,09/05/2015 02:22:42 PM,200 Block of CLIPPER ST,San Francisco,94114,B06,11,5537,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7490382606221, -122.430526091379)",152481809-67 -141282016,E10,14043548,Medical Incident,05/08/2014,05/08/2014,05/08/2014 02:18:39 PM,05/08/2014 02:19:51 PM,05/08/2014 02:21:35 PM,05/08/2014 02:22:46 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 02:26:32 PM,700 Block of LA PLAYA,San Francisco,94121,B07,34,7312,2,3,3,false,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",141282016-E10 -160974272,88,16038680,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:35:10 PM,04/06/2016 09:36:39 PM,04/06/2016 09:37:41 PM,04/06/2016 09:37:50 PM,04/06/2016 09:43:01 PM,04/06/2016 10:03:19 PM,04/06/2016 10:10:56 PM,Code 2 Transport,04/06/2016 10:47:48 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7899917286128, -122.418035034103)",160974272-88 -160974195,76,16038670,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:11:59 PM,04/06/2016 09:14:19 PM,04/06/2016 09:15:26 PM,04/06/2016 09:15:34 PM,04/06/2016 09:18:03 PM,04/06/2016 09:33:42 PM,04/06/2016 09:36:12 PM,Code 2 Transport,04/06/2016 09:54:24 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160974195-76 -151994092,E10,15076054,Structure Fire,07/18/2015,07/18/2015,07/18/2015 11:43:00 PM,07/18/2015 11:45:49 PM,07/18/2015 11:46:34 PM,07/18/2015 11:47:52 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Fire,07/18/2015 11:51:26 PM,2600 Block of GREENWICH ST,San Francisco,94123,B04,16,4166,3,3,3,true,Alarm,1,ENGINE,6,4,2,Marina,"(37.7980599014421, -122.443314080143)",151994092-E10 -143102678,67,14109803,Medical Incident,11/06/2014,11/06/2014,11/06/2014 04:48:59 PM,11/06/2014 04:50:36 PM,11/06/2014 04:54:18 PM,11/06/2014 04:54:18 PM,11/06/2014 05:01:34 PM,11/06/2014 05:28:04 PM,11/06/2014 05:46:14 PM,Code 2 Transport,11/06/2014 05:53:11 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7754785492962, -122.415745332716)",143102678-67 -153221411,84,15123824,Medical Incident,11/18/2015,11/18/2015,11/18/2015 10:45:24 AM,11/18/2015 10:46:07 AM,11/18/2015 10:46:30 AM,11/18/2015 10:46:39 AM,11/18/2015 10:52:32 AM,11/18/2015 11:09:32 AM,11/18/2015 11:23:59 AM,Code 2 Transport,11/18/2015 12:00:46 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7597015509874, -122.414696971308)",153221411-84 -161002058,KM12,16039810,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:31:27 PM,04/09/2016 03:32:45 PM,04/09/2016 03:33:07 PM,04/09/2016 03:34:06 PM,04/09/2016 03:35:29 PM,04/09/2016 03:51:06 PM,04/09/2016 04:10:57 PM,Code 2 Transport,04/09/2016 04:37:59 PM,HYDE ST/BUSH ST,San Francisco,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7891101748937, -122.417016879226)",161002058-KM12 -152752321,B02,15105390,Alarms,10/02/2015,10/02/2015,10/02/2015 03:16:19 PM,10/02/2015 03:18:09 PM,10/02/2015 03:18:31 PM,10/02/2015 03:20:21 PM,10/02/2015 03:22:20 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,Fire,10/02/2015 03:31:30 PM,300 Block of OCTAVIA ST,San Francisco,94102,B02,36,3314,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.7749981271703, -122.424402172028)",152752321-B02 -160954042,88,16037822,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:46:51 PM,04/04/2016 10:51:22 PM,04/04/2016 10:56:15 PM,04/04/2016 10:57:06 PM,04/04/2016 11:07:51 PM,04/04/2016 11:13:00 PM,04/04/2016 11:47:00 PM,Code 2 Transport,04/05/2016 12:30:50 AM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160954042-88 -152850492,B01,15109305,Alarms,10/12/2015,10/11/2015,10/12/2015 04:59:53 AM,10/12/2015 05:01:12 AM,10/12/2015 05:01:19 AM,10/12/2015 05:03:51 AM,10/12/2015 05:06:23 AM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/12/2015 05:07:45 AM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8055721065651, -122.414433429446)",152850492-B01 -142183619,T05,14075739,Citizen Assist / Service Call,08/06/2014,08/06/2014,08/06/2014 08:47:26 PM,08/06/2014 08:47:26 PM,08/06/2014 08:47:26 PM,08/06/2014 08:47:26 PM,08/06/2014 08:47:26 PM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,Fire,08/06/2014 08:59:43 PM,1300 Block of EDDY ST,San Francisco,94115,B04,5,3515,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7816922947029, -122.429813826585)",142183619-T05 -151960820,E02,15074677,Alarms,07/15/2015,07/15/2015,07/15/2015 08:38:07 AM,07/15/2015 08:39:55 AM,07/15/2015 08:40:21 AM,07/15/2015 08:42:15 AM,07/15/2015 08:44:20 AM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Fire,07/15/2015 08:46:54 AM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",151960820-E02 -141652797,E11,14057017,Medical Incident,06/14/2014,06/14/2014,06/14/2014 06:33:55 PM,06/14/2014 06:35:51 PM,06/14/2014 06:36:50 PM,06/14/2014 06:38:16 PM,06/14/2014 06:46:21 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Patient Declined Transport,06/14/2014 07:06:02 PM,21ST ST/FLORIDA ST,San Francisco,94110,B06,7,545,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7575387230598, -122.410526546495)",141652797-E11 -152801277,KM11,15107389,Medical Incident,10/07/2015,10/07/2015,10/07/2015 10:17:17 AM,10/07/2015 10:18:47 AM,10/07/2015 10:19:48 AM,10/07/2015 10:20:24 AM,10/07/2015 10:33:31 AM,10/07/2015 10:37:35 AM,10/07/2015 11:09:07 AM,Code 2 Transport,10/07/2015 11:47:48 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",152801277-KM11 -143081577,83,14108974,Medical Incident,11/04/2014,11/04/2014,11/04/2014 12:15:12 PM,11/04/2014 12:15:33 PM,11/04/2014 12:23:39 PM,11/04/2014 12:26:21 PM,11/04/2014 12:33:31 PM,11/04/2014 12:33:59 PM,11/04/2014 01:06:18 PM,Patient Declined Transport,11/04/2014 01:30:27 PM,900 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7840676683775, -122.420906968642)",143081577-83 -150713200,E05,15027239,Medical Incident,03/12/2015,03/12/2015,03/12/2015 06:35:18 PM,03/12/2015 06:35:18 PM,03/12/2015 06:36:05 PM,03/12/2015 06:36:53 PM,03/12/2015 06:39:13 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Code 2 Transport,03/12/2015 06:50:45 PM,0 Block of SEYMOUR ST,San Francisco,94115,B05,5,4134,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7792900134424, -122.437869182837)",150713200-E05 -150591294,RC1,15022514,Other,02/28/2015,02/28/2015,02/28/2015 10:49:13 AM,02/28/2015 10:49:13 AM,02/28/2015 11:31:15 AM,02/28/2015 11:31:45 AM,02/28/2015 11:32:29 AM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Patient Declined Transport,02/28/2015 11:50:43 AM,SANSOME ST/CALIFORNIA ST,San Francisco,94104,B01,13,1165,3,3,3,true,Alarm,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7930602991213, -122.401126343901)",150591294-RC1 -160931370,KM11,16036820,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:21:14 AM,04/02/2016 11:22:56 AM,04/02/2016 11:35:17 AM,04/02/2016 11:36:04 AM,04/02/2016 11:39:42 AM,04/02/2016 11:59:29 AM,04/02/2016 12:32:17 PM,Code 3 Transport,04/02/2016 12:35:58 PM,500 Block of DELLBROOK AVE,San Francisco,94131,B08,20,5365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7558034271253, -122.453603802787)",160931370-KM11 -151790790,70,15068126,Medical Incident,06/28/2015,06/27/2015,06/28/2015 06:01:18 AM,06/28/2015 06:02:23 AM,06/28/2015 06:03:07 AM,06/28/2015 06:03:15 AM,06/28/2015 06:06:36 AM,06/28/2015 06:21:20 AM,06/28/2015 06:28:20 AM,Code 2 Transport,06/28/2015 06:36:13 AM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",151790790-70 -142270781,E36,14078753,Medical Incident,08/15/2014,08/14/2014,08/15/2014 07:58:02 AM,08/15/2014 07:59:30 AM,08/15/2014 07:59:56 AM,08/15/2014 08:01:06 AM,08/15/2014 08:06:55 AM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 2 Transport,08/15/2014 08:09:55 AM,1100 Block of TURK ST,San Francisco,94115,B05,5,3426,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",142270781-E36 -152123392,KM07,15080923,Medical Incident,07/31/2015,07/31/2015,07/31/2015 09:15:20 PM,07/31/2015 09:16:22 PM,07/31/2015 09:18:01 PM,07/31/2015 09:18:31 PM,07/31/2015 09:29:32 PM,07/31/2015 09:29:34 PM,07/31/2015 10:08:42 PM,Code 2 Transport,07/31/2015 10:35:12 PM,1700 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7914466216221, -122.421704925005)",152123392-KM07 -152551333,E06,15097474,Alarms,09/12/2015,09/12/2015,09/12/2015 11:18:48 AM,09/12/2015 11:20:04 AM,09/12/2015 11:20:11 AM,09/12/2015 11:20:36 AM,09/12/2015 11:23:05 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 11:38:40 AM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,3,3,3,true,Alarm,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",152551333-E06 -151251569,KM08,15047350,Medical Incident,05/05/2015,05/05/2015,05/05/2015 12:16:11 PM,05/05/2015 12:19:01 PM,05/05/2015 12:20:41 PM,05/05/2015 12:21:10 PM,05/05/2015 12:29:22 PM,05/05/2015 12:41:29 PM,05/05/2015 12:56:26 PM,Code 2 Transport,05/05/2015 01:25:32 PM,1700 Block of GROVE ST,San Francisco,94117,B05,21,4361,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7750328323783, -122.445449213896)",151251569-KM08 -152253296,E05,15085891,Medical Incident,08/13/2015,08/13/2015,08/13/2015 07:21:26 PM,08/13/2015 07:21:26 PM,08/13/2015 07:34:35 PM,08/13/2015 07:35:26 PM,08/13/2015 07:37:44 PM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Other,08/13/2015 07:51:14 PM,600 Block of OAK ST,San Francisco,94117,B02,5,3523,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",152253296-E05 -152242676,E12,15085443,Medical Incident,08/12/2015,08/12/2015,08/12/2015 04:41:11 PM,08/12/2015 04:41:11 PM,08/12/2015 04:42:01 PM,08/12/2015 04:43:05 PM,08/12/2015 04:45:04 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Code 2 Transport,08/12/2015 04:58:47 PM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7693981235751, -122.451276976837)",152242676-E12 -160921946,81,16036460,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:06:59 PM,04/01/2016 02:08:33 PM,04/01/2016 02:08:59 PM,04/01/2016 02:09:16 PM,04/01/2016 02:13:35 PM,04/01/2016 02:27:49 PM,04/01/2016 02:58:52 PM,Code 2 Transport,04/01/2016 03:35:29 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160921946-81 -153080015,KM07,15118196,Medical Incident,11/04/2015,11/03/2015,11/04/2015 12:02:58 AM,11/04/2015 12:03:51 AM,11/04/2015 12:04:22 AM,11/04/2015 12:04:58 AM,11/04/2015 12:10:27 AM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,No Merit,11/04/2015 12:11:39 AM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",153080015-KM07 -141772013,T10,14061129,Odor (Strange / Unknown),06/26/2014,06/26/2014,06/26/2014 02:58:52 PM,06/26/2014 03:00:59 PM,06/26/2014 03:01:24 PM,06/26/2014 03:04:15 PM,06/26/2014 03:05:37 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 03:10:34 PM,0 Block of PARKER AVE,San Francisco,94118,B07,10,4436,3,3,3,false,Alarm,1,TRUCK,2,7,2,Presidio Heights,"(37.7851399842228, -122.454627027921)",141772013-T10 -160922218,75,16036490,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:22:50 PM,04/01/2016 03:23:52 PM,04/01/2016 03:24:14 PM,04/01/2016 03:24:55 PM,04/01/2016 03:27:50 PM,04/01/2016 03:34:57 PM,04/01/2016 03:43:05 PM,Code 2 Transport,04/01/2016 04:16:04 PM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",160922218-75 -141210187,E05,14040905,Alarms,05/01/2014,05/01/2014,05/01/2014 12:07:02 PM,05/01/2014 12:07:03 PM,05/01/2014 12:07:40 PM,05/01/2014 12:08:19 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Fire,05/01/2014 12:12:34 PM,1200 Block of MARKET ST,SAN FRANCISCO,94103,B02,36,2337,,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7780365108208, -122.415429100912)",141210187-E05 -150662142,B02,15025275,Alarms,03/07/2015,03/07/2015,03/07/2015 02:55:58 PM,03/07/2015 02:57:23 PM,03/07/2015 03:00:24 PM,03/07/2015 03:00:24 PM,03/07/2015 03:00:24 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Fire,03/07/2015 03:07:22 PM,0 Block of OAK ST,San Francisco,94102,B02,36,3211,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.7753796573025, -122.420188747323)",150662142-B02 -152552909,E28,15097620,Citizen Assist / Service Call,09/12/2015,09/12/2015,09/12/2015 06:37:07 PM,09/12/2015 06:38:28 PM,09/12/2015 06:38:36 PM,09/12/2015 06:40:00 PM,09/12/2015 06:43:12 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 06:54:13 PM,1100 Block of GREENWICH ST,San Francisco,94133,B01,41,1612,3,3,3,true,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.801186152544, -122.418883612653)",152552909-E28 -143360581,85,14118968,Medical Incident,12/02/2014,12/01/2014,12/02/2014 07:31:33 AM,12/02/2014 07:32:12 AM,12/02/2014 07:33:04 AM,12/02/2014 07:33:21 AM,12/02/2014 07:36:55 AM,12/02/2014 07:50:45 AM,12/02/2014 08:01:13 AM,Code 2 Transport,12/02/2014 08:43:31 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143360581-85 -160953214,55,16037751,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 06:32:57 PM,04/04/2016 06:33:59 PM,04/04/2016 06:36:35 PM,04/04/2016 06:36:47 PM,04/04/2016 06:45:18 PM,04/04/2016 07:00:58 PM,04/04/2016 07:13:06 PM,Code 2 Transport,04/04/2016 07:45:43 PM,ALEMANY NB BL/TRUMBULL ST,San Francisco,94112,B09,32,8263,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7311597944138, -122.421271998512)",160953214-55 -160940526,71,16037146,Medical Incident,04/03/2016,04/02/2016,04/03/2016 03:28:52 AM,04/03/2016 03:30:02 AM,04/03/2016 03:32:19 AM,04/03/2016 03:32:48 AM,04/03/2016 03:37:34 AM,04/03/2016 03:43:45 AM,04/03/2016 04:04:54 AM,Code 2 Transport,04/03/2016 04:30:40 AM,9TH ST/HOWARD ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",160940526-71 -141180144,KM12,14039765,Medical Incident,04/28/2014,04/28/2014,04/28/2014 10:19:29 AM,04/28/2014 10:19:57 AM,04/28/2014 10:20:44 AM,04/28/2014 10:21:43 AM,04/28/2014 10:28:16 AM,04/28/2014 10:49:38 AM,04/28/2014 10:58:05 AM,Code 2 Transport,04/28/2014 11:33:12 AM,TURK ST/JONES ST,SAN FRANCISCO,94102,B03,1,1456,,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",141180144-KM12 -141760269,T15,14060603,Administrative,06/25/2014,06/24/2014,06/25/2014 03:13:54 AM,06/25/2014 03:14:04 AM,06/25/2014 03:15:20 AM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Fire,06/25/2014 03:16:02 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,false,,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",141760269-T15 -141603062,68,14055291,Medical Incident,06/09/2014,06/09/2014,06/09/2014 08:17:18 PM,06/09/2014 08:18:42 PM,06/09/2014 08:18:59 PM,06/09/2014 08:19:16 PM,06/09/2014 08:31:14 PM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Unable to Locate,06/09/2014 08:37:09 PM,1700 Block of SILVER AVE,San Francisco,94124,B10,42,6364,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.733361342902, -122.403884306786)",141603062-68 -153430645,E15,15131897,Alarms,12/09/2015,12/08/2015,12/09/2015 07:40:54 AM,12/09/2015 07:41:24 AM,12/09/2015 07:41:38 AM,12/09/2015 07:43:36 AM,12/09/2015 07:45:50 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 08:01:50 AM,1000 Block of CAYUGA AVE,San Francisco,94112,B09,15,8332,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7218172447591, -122.439998899049)",153430645-E15 -150652213,KM14,15024873,Medical Incident,03/06/2015,03/06/2015,03/06/2015 01:48:18 PM,03/06/2015 01:50:57 PM,03/06/2015 01:53:35 PM,03/06/2015 01:54:13 PM,03/06/2015 02:02:34 PM,03/06/2015 02:15:04 PM,03/06/2015 02:45:18 PM,Code 2 Transport,03/06/2015 03:40:27 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7833716368249, -122.407382686506)",150652213-KM14 -141532651,RS1,14052676,Structure Fire,06/02/2014,06/02/2014,06/02/2014 06:15:12 PM,06/02/2014 06:15:48 PM,06/02/2014 06:16:39 PM,06/02/2014 06:17:49 PM,06/02/2014 06:21:10 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Code 2 Transport,06/02/2014 06:23:54 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,false,Alarm,1,RESCUE SQUAD,9,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",141532651-RS1 -150363265,B09,15014006,Alarms,02/05/2015,02/05/2015,02/05/2015 08:29:45 PM,02/05/2015 08:31:42 PM,02/05/2015 08:32:23 PM,02/05/2015 08:33:37 PM,02/05/2015 08:35:07 PM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/05/2015 09:16:11 PM,200 Block of MIRAMAR AVE,San Francisco,94112,B09,15,8474,3,3,3,false,Alarm,1,CHIEF,2,9,7,Oceanview/Merced/Ingleside,"(37.7227490413148, -122.458117167077)",150363265-B09 -152472730,E03,15094322,Medical Incident,09/04/2015,09/04/2015,09/04/2015 03:59:47 PM,09/04/2015 04:00:11 PM,09/04/2015 04:00:52 PM,09/04/2015 04:00:52 PM,09/04/2015 04:03:18 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Code 2 Transport,09/04/2015 04:18:09 PM,1200 Block of SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7877066353114, -122.420948027457)",152472730-E03 -150030591,E21,15000995,Outside Fire,01/03/2015,01/02/2015,01/03/2015 06:08:57 AM,01/03/2015 06:09:26 AM,01/03/2015 06:10:11 AM,01/03/2015 06:11:43 AM,01/03/2015 06:14:01 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Fire,01/03/2015 06:22:32 AM,CENTRAL AV/WALLER ST,San Francisco,94117,B05,21,4354,3,3,3,false,Fire,1,ENGINE,1,5,5,Haight Ashbury,"(37.7694969972362, -122.443461439796)",150030591-E21 -143471423,AM02,14123750,Medical Incident,12/13/2014,12/13/2014,12/13/2014 11:10:36 AM,12/13/2014 11:10:36 AM,12/13/2014 11:10:51 AM,12/13/2014 11:11:17 AM,12/13/2014 11:17:49 AM,12/13/2014 11:35:17 AM,12/13/2014 11:41:31 AM,Code 2 Transport,12/13/2014 12:12:36 PM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",143471423-AM02 -160972760,67,16038501,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:43:32 PM,04/06/2016 03:43:32 PM,04/06/2016 03:43:57 PM,04/06/2016 03:44:04 PM,04/06/2016 03:49:28 PM,04/06/2016 04:28:23 PM,04/06/2016 04:40:20 PM,Code 2 Transport,04/06/2016 05:39:10 PM,GOUGH ST/HAIGHT ST,San Francisco,94102,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7731517441996, -122.422229369585)",160972760-67 -153110981,T08,15119497,Alarms,11/07/2015,11/07/2015,11/07/2015 09:03:22 AM,11/07/2015 09:05:00 AM,11/07/2015 09:05:14 AM,11/07/2015 09:07:06 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/07/2015 09:15:55 AM,800 Block of BRANNAN ST,San Francisco,94103,B03,29,2325,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7722126507146, -122.404363751305)",153110981-T08 -150431677,E31,15016704,Medical Incident,02/12/2015,02/12/2015,02/12/2015 12:17:50 PM,02/12/2015 12:19:50 PM,02/12/2015 12:20:33 PM,02/12/2015 12:22:03 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Against Medical Advice,02/12/2015 12:24:25 PM,CLEMENT ST/21ST AV,San Francisco,94121,B07,31,7164,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7822123116523, -122.48059001563)",150431677-E31 -150273632,E23,15010564,Medical Incident,01/27/2015,01/27/2015,01/27/2015 09:23:53 PM,01/27/2015 09:25:25 PM,01/27/2015 09:25:39 PM,01/27/2015 09:26:45 PM,01/27/2015 09:28:27 PM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,Other,01/27/2015 09:39:33 PM,45TH AV/JUDAH ST,San Francisco,94122,B08,23,7655,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7604717922137, -122.504856721474)",150273632-E23 -160931095,82,16036786,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:53:45 AM,04/02/2016 09:55:19 AM,04/02/2016 09:57:47 AM,04/02/2016 09:58:13 AM,04/02/2016 10:10:32 AM,04/02/2016 10:31:40 AM,04/02/2016 11:00:29 AM,Code 2 Transport,04/02/2016 11:31:23 AM,5300 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8162,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",160931095-82 -141511649,B03,14051882,Alarms,05/31/2014,05/31/2014,05/31/2014 01:13:42 PM,05/31/2014 01:14:59 PM,05/31/2014 01:16:05 PM,05/31/2014 01:17:23 PM,05/31/2014 01:21:43 PM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Fire,05/31/2014 01:35:24 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7734664897325, -122.413546904215)",141511649-B03 -152770408,E21,15106072,Medical Incident,10/04/2015,10/03/2015,10/04/2015 02:39:53 AM,10/04/2015 02:41:12 AM,10/04/2015 02:42:12 AM,10/04/2015 02:45:54 AM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Code 2 Transport,10/04/2015 02:47:35 AM,1200 Block of MASONIC AVE,San Francisco,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.769728147466, -122.44532047465)",152770408-E21 -142051251,E13,14070914,Structure Fire,07/24/2014,07/24/2014,07/24/2014 10:42:23 AM,07/24/2014 10:42:23 AM,07/24/2014 10:42:47 AM,07/24/2014 10:42:53 AM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/24/2014 10:46:34 AM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1112,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",142051251-E13 -152331648,E29,15088809,Alarms,08/21/2015,08/21/2015,08/21/2015 11:47:19 AM,08/21/2015 11:48:33 AM,08/21/2015 11:48:37 AM,08/21/2015 11:49:29 AM,08/21/2015 11:51:45 AM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Fire,08/21/2015 11:58:27 AM,1000 Block of 17TH ST,San Francisco,94107,B03,29,2431,3,3,3,true,Alarm,1,ENGINE,1,3,10,Mission Bay,"(37.7652728869862, -122.395323009408)",152331648-E29 -160983436,61,16039086,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:44:45 PM,04/07/2016 07:45:04 PM,04/07/2016 07:45:18 PM,04/07/2016 07:45:31 PM,04/07/2016 07:51:36 PM,04/07/2016 08:06:31 PM,04/07/2016 08:33:17 PM,Code 2 Transport,04/07/2016 08:57:37 PM,3RD ST/MCKINNON AV,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7363901964496, -122.390145053188)",160983436-61 -142650393,E09,14092596,Medical Incident,09/22/2014,09/21/2014,09/22/2014 04:41:23 AM,09/22/2014 04:41:23 AM,09/22/2014 04:43:19 AM,09/22/2014 04:46:07 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Cancelled,09/22/2014 04:47:44 AM,100 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6665,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7283147464933, -122.37246183357)",142650393-E09 -152400445,74,15091299,Medical Incident,08/28/2015,08/27/2015,08/28/2015 04:36:15 AM,08/28/2015 04:36:34 AM,08/28/2015 04:37:18 AM,08/28/2015 04:37:53 AM,08/28/2015 04:43:59 AM,08/28/2015 04:59:25 AM,08/28/2015 05:17:34 AM,Code 2 Transport,08/28/2015 05:50:13 AM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.715844082258, -122.431797985467)",152400445-74 -141080037,B04,14036300,Alarms,04/18/2014,04/17/2014,04/18/2014 02:24:51 AM,04/18/2014 02:26:03 AM,04/18/2014 02:26:13 AM,04/18/2014 02:27:45 AM,04/18/2014 02:37:18 AM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Fire,04/18/2014 02:45:39 AM,900 Block of MARINE DR,PRESIDIO,94129,B99,51,4628,3,3,3,false,Alarm,1,CHIEF,3,7,2,Presidio,"(37.8089767888005, -122.47460956271)",141080037-B04 -150921064,T11,15034900,Medical Incident,04/02/2015,04/02/2015,04/02/2015 09:59:09 AM,04/02/2015 09:59:40 AM,04/02/2015 10:01:13 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Code 2 Transport,04/02/2015 10:02:29 AM,1600 Block of SANCHEZ ST,San Francisco,94131,B06,11,5564,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,6,8,Noe Valley,"(37.742359954214, -122.428836055927)",150921064-T11 -160921851,84,16036455,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:42:55 PM,04/01/2016 01:44:49 PM,04/01/2016 01:45:02 PM,04/01/2016 01:45:19 PM,04/01/2016 01:50:04 PM,04/01/2016 02:16:17 PM,04/01/2016 02:27:19 PM,Code 2 Transport,04/01/2016 03:03:26 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160921851-84 -143102427,55,14109785,Medical Incident,11/06/2014,11/06/2014,11/06/2014 03:55:04 PM,11/06/2014 03:56:22 PM,11/06/2014 03:56:48 PM,11/06/2014 03:57:19 PM,11/06/2014 04:04:09 PM,11/06/2014 04:18:10 PM,11/06/2014 04:42:20 PM,Code 2 Transport,11/06/2014 05:09:27 PM,2900 Block of 24TH AVE,San Francisco,94132,B08,19,8734,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7334656394381, -122.480247903443)",143102427-55 -150991434,70,15037426,Medical Incident,04/09/2015,04/09/2015,04/09/2015 11:52:42 AM,04/09/2015 11:57:38 AM,04/09/2015 11:57:49 AM,04/09/2015 11:57:59 AM,04/09/2015 12:05:20 PM,04/25/2016 01:11:16 PM,04/25/2016 01:11:16 PM,Patient Declined Transport,04/09/2015 12:12:19 PM,HOWARD ST/MAIN ST,San Francisco,94105,B03,35,2114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",150991434-70 -151832305,KM08,15069903,Medical Incident,07/02/2015,07/02/2015,07/02/2015 02:38:56 PM,07/02/2015 02:38:56 PM,07/02/2015 02:39:26 PM,07/02/2015 02:39:46 PM,07/02/2015 02:57:18 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Patient Declined Transport,07/02/2015 03:18:35 PM,GOUGH ST/FELL ST,San Francisco,94102,B02,36,3266,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7759498626653, -122.422787633791)",151832305-KM08 -150413393,E37,15016133,Medical Incident,02/10/2015,02/10/2015,02/10/2015 08:32:24 PM,02/10/2015 08:32:24 PM,02/10/2015 08:32:37 PM,02/10/2015 08:33:41 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Code 2 Transport,02/10/2015 08:36:23 PM,23RD ST/POTRERO AV,San Francisco,94110,B10,37,2554,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,10,9,Potrero Hill,"(37.7545642123343, -122.406480459209)",150413393-E37 -160932321,82,16036927,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:50:50 PM,04/02/2016 03:54:30 PM,04/02/2016 03:54:39 PM,04/02/2016 03:55:06 PM,04/02/2016 04:01:22 PM,04/02/2016 04:10:01 PM,04/02/2016 04:10:35 PM,Code 2 Transport,04/02/2016 05:44:22 PM,GEARY BL/9TH AV,San Francisco,94118,B07,31,7135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7808797138944, -122.46748765154)",160932321-82 -150732800,E06,15028042,Medical Incident,03/14/2015,03/14/2015,03/14/2015 05:05:18 PM,03/14/2015 05:06:56 PM,03/14/2015 05:07:52 PM,03/14/2015 05:07:52 PM,03/14/2015 05:08:26 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,No Merit,03/14/2015 05:09:32 PM,0 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7614765846451, -122.436246937814)",150732800-E06 -152691011,E44,15103021,Medical Incident,09/26/2015,09/26/2015,09/26/2015 08:52:11 AM,09/26/2015 08:53:36 AM,09/26/2015 08:54:01 AM,09/26/2015 08:54:54 AM,09/26/2015 08:56:54 AM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Medical Examiner,09/26/2015 10:15:26 AM,300 Block of ALPHA ST,San Francisco,94134,B10,44,6267,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7129209245678, -122.405100970462)",152691011-E44 -160990983,KM04,16039237,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:40:20 AM,04/08/2016 09:41:27 AM,04/08/2016 09:41:53 AM,04/08/2016 09:43:49 AM,04/08/2016 09:49:31 AM,04/08/2016 10:15:30 AM,04/08/2016 10:54:31 AM,Code 2 Transport,04/08/2016 11:35:29 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160990983-KM04 -160942378,70,16037317,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:43:26 PM,04/03/2016 03:45:51 PM,04/03/2016 03:46:37 PM,04/03/2016 03:46:44 PM,04/03/2016 03:54:30 PM,04/03/2016 04:03:43 PM,04/03/2016 04:10:43 PM,Code 2 Transport,04/03/2016 04:29:01 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160942378-70 -143483534,62,14124401,Medical Incident,12/14/2014,12/14/2014,12/14/2014 10:07:11 PM,12/14/2014 10:07:39 PM,12/14/2014 10:07:58 PM,12/14/2014 10:08:09 PM,12/14/2014 10:16:45 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,Patient Declined Transport,12/14/2014 10:56:26 PM,200 Block of BONVIEW ST,San Francisco,94110,B06,32,5655,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7401358083277, -122.418694782728)",143483534-62 -142721859,D2,14095412,Structure Fire,09/29/2014,09/29/2014,09/29/2014 02:08:11 PM,09/29/2014 02:08:45 PM,09/29/2014 02:08:56 PM,09/29/2014 02:09:06 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Fire,09/29/2014 02:16:07 PM,1900 Block of MCALLISTER ST,San Francisco,94117,B05,21,4362,3,3,3,false,Alarm,1,CHIEF,9,5,5,Lone Mountain/USF,"(37.7770068075735, -122.444133013363)",142721859-D2 -160924057,AM16,16036662,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:53:59 PM,04/01/2016 11:55:23 PM,04/01/2016 11:57:11 PM,04/01/2016 11:57:33 PM,04/02/2016 12:03:04 AM,04/02/2016 12:17:35 AM,04/02/2016 12:41:25 AM,Code 2 Transport,04/02/2016 01:14:07 AM,700 Block of 4TH ST,San Francisco,94107,B03,8,2224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",160924057-AM16 -143220286,E08,14113883,Outside Fire,11/18/2014,11/17/2014,11/18/2014 04:06:48 AM,11/18/2014 04:07:38 AM,11/18/2014 04:13:29 AM,11/18/2014 04:15:34 AM,11/18/2014 04:17:03 AM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,Fire,11/18/2014 04:25:12 AM,5TH ST/SHIPLEY ST,San Francisco,94107,B03,1,2244,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7798285228536, -122.402840617488)",143220286-E08 -152881142,T02,15110595,Alarms,10/15/2015,10/15/2015,10/15/2015 09:48:24 AM,10/15/2015 09:50:45 AM,10/15/2015 09:50:49 AM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Other,10/15/2015 09:51:09 AM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",152881142-T02 -141502286,D2,14051607,Structure Fire,05/30/2014,05/30/2014,05/30/2014 04:39:20 PM,05/30/2014 04:40:29 PM,05/30/2014 04:41:07 PM,05/30/2014 04:41:17 PM,05/30/2014 04:45:38 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 04:55:02 PM,300 Block of FREDERICK ST,San Francisco,94117,B05,12,5144,3,3,3,false,Alarm,1,CHIEF,4,5,5,Haight Ashbury,"(37.7668851669849, -122.448532611392)",141502286-D2 -150172322,AM08,15006778,Medical Incident,01/17/2015,01/17/2015,01/17/2015 03:59:45 PM,01/17/2015 03:59:45 PM,01/17/2015 04:00:13 PM,01/17/2015 04:05:16 PM,01/17/2015 04:05:16 PM,01/17/2015 04:32:19 PM,01/17/2015 05:00:59 PM,Code 2 Transport,01/17/2015 05:36:42 PM,600 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",150172322-AM08 -150314028,E07,15012197,Medical Incident,01/31/2015,01/31/2015,01/31/2015 11:59:22 PM,02/01/2015 12:00:15 AM,02/01/2015 12:00:57 AM,02/01/2015 12:01:29 AM,02/01/2015 12:04:07 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 3 Transport,02/01/2015 12:10:39 AM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",150314028-E07 -160960075,64,16037849,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:30:05 AM,04/05/2016 12:33:08 AM,04/05/2016 12:33:19 AM,04/05/2016 12:33:40 AM,04/05/2016 12:44:38 AM,04/05/2016 01:03:12 AM,04/05/2016 01:20:59 AM,Code 2 Transport,04/05/2016 01:52:02 AM,600 Block of BOWDOIN ST,San Francisco,94134,B10,42,6342,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.727645228856, -122.411190444687)",160960075-64 -153343678,E01,15128596,Medical Incident,11/30/2015,11/30/2015,11/30/2015 10:18:01 PM,11/30/2015 10:23:27 PM,11/30/2015 10:23:55 PM,11/30/2015 10:26:00 PM,11/30/2015 10:27:10 PM,04/25/2016 01:06:54 PM,04/25/2016 01:06:54 PM,Code 2 Transport,11/30/2015 10:36:24 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",153343678-E01 -153173775,RC2,15122036,Medical Incident,11/13/2015,11/13/2015,11/13/2015 09:06:44 PM,11/13/2015 09:07:50 PM,11/13/2015 09:08:11 PM,11/13/2015 09:09:43 PM,11/13/2015 09:12:38 PM,04/25/2016 01:07:13 PM,04/25/2016 01:07:13 PM,Code 3 Transport,11/13/2015 09:41:31 PM,500 Block of 23RD AVE,San Francisco,94121,B07,14,7176,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7773345279064, -122.482316616098)",153173775-RC2 -150393043,61,15015310,Medical Incident,02/08/2015,02/08/2015,02/08/2015 07:09:40 PM,02/08/2015 07:12:17 PM,02/08/2015 07:13:43 PM,02/08/2015 07:13:49 PM,02/08/2015 07:24:17 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Patient Declined Transport,02/08/2015 07:55:46 PM,1700 Block of OFARRELL ST,San Francisco,94115,B04,5,3623,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",150393043-61 -141273047,KM09,14043232,Medical Incident,05/07/2014,05/07/2014,05/07/2014 04:35:44 PM,05/07/2014 04:37:29 PM,05/07/2014 04:38:37 PM,05/07/2014 04:39:16 PM,05/07/2014 04:58:01 PM,05/07/2014 05:03:03 PM,05/07/2014 05:16:54 PM,Code 2 Transport,05/07/2014 05:36:37 PM,MISSION ST/DUBOCE AV,San Francisco,94103,B02,36,5124,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7701114489219, -122.420008323243)",141273047-KM09 -150312142,E25,15012006,Medical Incident,01/31/2015,01/31/2015,01/31/2015 03:02:06 PM,01/31/2015 03:04:50 PM,01/31/2015 03:05:24 PM,01/31/2015 03:06:16 PM,01/31/2015 03:08:33 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 2 Transport,01/31/2015 03:28:36 PM,2500 Block of 3RD ST,San Francisco,94107,B10,25,2533,3,3,3,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7566800066504, -122.387999428154)",150312142-E25 -141892585,E03,14065570,Medical Incident,07/08/2014,07/08/2014,07/08/2014 04:34:50 PM,07/08/2014 04:37:04 PM,07/08/2014 04:41:22 PM,07/08/2014 04:43:02 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Fire,07/08/2014 04:45:34 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",141892585-E03 -151582764,E33,15060431,Alarms,06/07/2015,06/07/2015,06/07/2015 06:18:31 PM,06/07/2015 06:19:25 PM,06/07/2015 06:19:34 PM,06/07/2015 06:21:20 PM,06/07/2015 06:23:50 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Fire,06/07/2015 06:34:57 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,false,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",151582764-E33 -153254196,E18,15125334,Medical Incident,11/21/2015,11/21/2015,11/21/2015 11:58:49 PM,11/21/2015 11:58:49 PM,11/21/2015 11:58:57 PM,11/22/2015 12:00:27 AM,11/22/2015 12:03:50 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Code 2 Transport,11/22/2015 12:20:42 AM,1300 Block of 35TH AV,San Francisco,94122,B08,23,7564,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7618724654682, -122.494274168229)",153254196-E18 -151980744,89,15075393,Medical Incident,07/17/2015,07/17/2015,07/17/2015 08:03:18 AM,07/17/2015 08:04:59 AM,07/17/2015 08:06:54 AM,07/17/2015 08:07:14 AM,07/17/2015 08:23:26 AM,07/17/2015 08:43:51 AM,07/17/2015 09:21:14 AM,Code 2 Transport,07/17/2015 09:53:41 AM,0 Block of FUENTE AVE,San Francisco,94132,B08,19,8426,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7193975439514, -122.477992700478)",151980744-89 -151500888,E03,15057017,Medical Incident,05/30/2015,05/30/2015,05/30/2015 09:00:10 AM,05/30/2015 09:00:10 AM,05/30/2015 09:00:28 AM,05/30/2015 09:01:06 AM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Code 2 Transport,05/30/2015 09:03:09 AM,OFARRELL ST/CYRIL MAGNIN ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",151500888-E03 -150311814,B01,15011973,Alarms,01/31/2015,01/31/2015,01/31/2015 01:23:21 PM,01/31/2015 01:26:16 PM,01/31/2015 01:27:30 PM,01/31/2015 01:28:53 PM,01/31/2015 01:33:02 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 01:33:41 PM,2400 Block of WASHINGTON ST,San Francisco,94115,B04,38,3545,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7917498896271, -122.433570936569)",150311814-B01 -152980127,78,15114262,Medical Incident,10/25/2015,10/24/2015,10/25/2015 12:39:35 AM,10/25/2015 12:40:44 AM,10/25/2015 12:41:01 AM,10/25/2015 12:41:44 AM,10/25/2015 12:47:06 AM,10/25/2015 01:01:22 AM,10/25/2015 01:06:08 AM,Code 3 Transport,10/25/2015 01:41:45 AM,1200 Block of 14TH AVE,San Francisco,94122,B08,22,7346,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7647478412807, -122.471664663461)",152980127-78 -161000181,88,16039576,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:08:30 AM,04/09/2016 01:10:03 AM,04/09/2016 01:10:16 AM,04/09/2016 01:10:24 AM,04/09/2016 01:19:18 AM,04/09/2016 01:40:11 AM,04/09/2016 01:46:12 AM,Code 2 Transport,04/09/2016 02:41:06 AM,100 Block of HUGO ST,San Francisco,94122,B05,12,7321,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7652257112384, -122.45941290589)",161000181-88 -152530149,82,15096575,Medical Incident,09/10/2015,09/09/2015,09/10/2015 12:57:52 AM,09/10/2015 12:59:07 AM,09/10/2015 12:59:13 AM,09/10/2015 12:59:49 AM,09/10/2015 01:09:31 AM,09/10/2015 01:32:03 AM,09/10/2015 01:44:02 AM,Code 2 Transport,09/10/2015 02:10:05 AM,200 Block of VALLEY ST,San Francisco,94131,B06,11,5563,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7444850964362, -122.427858095746)",152530149-82 -151170060,E17,15044047,Medical Incident,04/27/2015,04/26/2015,04/27/2015 12:26:44 AM,04/27/2015 12:30:25 AM,04/27/2015 12:31:15 AM,04/27/2015 12:32:55 AM,04/27/2015 12:35:32 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Cancelled,04/27/2015 12:36:38 AM,3RD ST/NEWCOMB AV,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",151170060-E17 -152170905,T09,15082525,Medical Incident,08/05/2015,08/05/2015,08/05/2015 08:55:25 AM,08/05/2015 08:55:25 AM,08/05/2015 08:55:44 AM,08/05/2015 08:57:03 AM,08/05/2015 09:01:22 AM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,No Merit,08/05/2015 09:03:35 AM,PALOU AV/PHELPS ST,San Francisco,94124,B10,17,6471,A,E,3,false,Potentially Life-Threatening,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7361065057562, -122.394662059081)",152170905-T09 -161000116,68,16039562,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:40:55 AM,04/09/2016 12:43:29 AM,04/09/2016 12:43:53 AM,04/09/2016 12:44:16 AM,04/09/2016 12:51:41 AM,04/09/2016 01:03:13 AM,04/09/2016 01:17:22 AM,Code 2 Transport,04/09/2016 01:53:37 AM,OCEAN AV/GRANADA AV,San Francisco,94112,B09,15,8474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7241379892838, -122.457340951709)",161000116-68 -141130258,FB1,14038170,Administrative,04/23/2014,04/23/2014,04/23/2014 02:10:23 PM,04/23/2014 02:10:25 PM,04/23/2014 02:11:34 PM,04/25/2016 01:17:43 PM,04/25/2016 01:17:43 PM,04/25/2016 01:17:43 PM,04/25/2016 01:17:43 PM,Other,04/23/2014 02:12:04 PM,300 Block of THE EMBARCADERO,,94111,B03,35,900,3,3,3,false,,1,SUPPORT,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",141130258-FB1 -152083473,RS1,15079405,Structure Fire,07/27/2015,07/27/2015,07/27/2015 08:36:08 PM,07/27/2015 08:37:17 PM,07/27/2015 08:37:54 PM,07/27/2015 08:39:01 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/27/2015 08:41:49 PM,100 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,false,Alarm,1,RESCUE SQUAD,10,2,5,Hayes Valley,"(37.7727916205308, -122.424624269709)",152083473-RS1 -161000716,86,16039650,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:25:38 AM,04/09/2016 07:25:59 AM,04/09/2016 07:26:14 AM,04/09/2016 07:26:27 AM,04/09/2016 07:41:13 AM,04/09/2016 07:45:37 AM,04/09/2016 08:17:52 AM,Code 2 Transport,04/09/2016 08:43:53 AM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",161000716-86 -160941705,84,16037258,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:26:49 PM,04/03/2016 12:29:10 PM,04/03/2016 12:29:57 PM,04/03/2016 12:32:27 PM,04/03/2016 12:38:58 PM,04/03/2016 12:55:13 PM,04/03/2016 01:21:45 PM,Code 2 Transport,04/03/2016 02:03:34 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160941705-84 -160953033,81,16037732,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:49:38 PM,04/04/2016 05:53:53 PM,04/04/2016 05:57:25 PM,04/04/2016 05:58:25 PM,04/04/2016 06:24:26 PM,04/04/2016 06:32:26 PM,04/04/2016 06:55:51 PM,Code 2 Transport,04/04/2016 07:25:42 PM,23RD AV/TARAVAL ST,San Francisco,94116,B08,40,7442,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7428615042896, -122.479977643784)",160953033-81 -141653203,E26,14057053,Alarms,06/14/2014,06/14/2014,06/14/2014 08:36:08 PM,06/14/2014 08:38:20 PM,06/14/2014 08:39:09 PM,06/14/2014 08:40:00 PM,06/14/2014 08:45:04 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Fire,06/14/2014 08:58:31 PM,300 Block of SURREY ST,San Francisco,94131,B06,26,8175,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7357956635918, -122.438415048488)",141653203-E26 -160971312,62,16038361,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:22:57 AM,04/06/2016 10:23:22 AM,04/06/2016 10:23:33 AM,04/06/2016 10:23:42 AM,04/06/2016 10:29:15 AM,04/06/2016 10:45:17 AM,04/06/2016 10:50:15 AM,Code 3 Transport,04/06/2016 11:56:26 AM,1200 Block of PAGE ST,San Francisco,94117,B05,21,4251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7716208307015, -122.441356135466)",160971312-62 -143330654,E19,14117915,Medical Incident,11/29/2014,11/28/2014,11/29/2014 06:44:08 AM,11/29/2014 06:45:41 AM,11/29/2014 06:46:34 AM,11/29/2014 06:48:38 AM,11/29/2014 06:51:04 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 07:02:11 AM,200 Block of STRATFORD DR,San Francisco,94132,B09,19,8752,3,3,3,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7206744418505, -122.473579319627)",143330654-E19 -142790646,85,14098053,Medical Incident,10/06/2014,10/05/2014,10/06/2014 07:37:48 AM,10/06/2014 07:38:28 AM,10/06/2014 07:44:40 AM,10/06/2014 07:44:51 AM,10/06/2014 07:48:46 AM,10/06/2014 08:03:22 AM,10/06/2014 08:21:00 AM,Code 2 Transport,10/06/2014 08:56:42 AM,17TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7635716035073, -122.41733240732)",142790646-85 -143241578,E44,14114712,Medical Incident,11/20/2014,11/20/2014,11/20/2014 12:39:55 PM,11/20/2014 12:41:18 PM,11/20/2014 12:42:23 PM,11/20/2014 12:43:16 PM,11/20/2014 12:46:20 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Code 2 Transport,11/20/2014 01:03:43 PM,200 Block of PEABODY ST,San Francisco,94134,B09,44,6256,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7090147282704, -122.407917700697)",143241578-E44 -153340302,64,15128268,Medical Incident,11/30/2015,11/29/2015,11/30/2015 04:18:41 AM,11/30/2015 04:20:21 AM,11/30/2015 04:20:59 AM,11/30/2015 04:21:31 AM,11/30/2015 04:28:25 AM,11/30/2015 04:45:58 AM,11/30/2015 05:04:38 AM,Code 2 Transport,11/30/2015 06:59:09 AM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7720751846477, -122.408746829681)",153340302-64 -160960683,KM06,16037915,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:10:52 AM,04/05/2016 08:12:10 AM,04/05/2016 08:12:49 AM,04/05/2016 08:13:42 AM,04/05/2016 08:19:50 AM,04/05/2016 08:46:43 AM,04/05/2016 09:01:05 AM,Code 2 Transport,04/05/2016 09:30:09 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160960683-KM06 -152550088,E03,15097361,Medical Incident,09/12/2015,09/11/2015,09/12/2015 12:24:52 AM,09/12/2015 12:27:11 AM,09/12/2015 12:27:49 AM,09/12/2015 12:29:12 AM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Code 2 Transport,09/12/2015 12:31:07 AM,1500 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",152550088-E03 -142130272,55,14073708,Medical Incident,08/01/2014,07/31/2014,08/01/2014 02:22:06 AM,08/01/2014 02:22:06 AM,08/01/2014 02:22:52 AM,08/01/2014 02:23:05 AM,08/01/2014 02:34:47 AM,08/01/2014 02:45:47 AM,08/01/2014 02:55:39 AM,Code 2 Transport,08/01/2014 03:19:39 AM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7788157426427, -122.409325210496)",142130272-55 -142500530,KM01,14087069,Medical Incident,09/07/2014,09/06/2014,09/07/2014 03:13:48 AM,09/07/2014 03:14:29 AM,09/07/2014 03:40:44 AM,09/07/2014 03:40:44 AM,09/07/2014 03:51:30 AM,09/07/2014 04:08:43 AM,09/07/2014 04:30:24 AM,Code 2 Transport,09/07/2014 05:16:24 AM,2500 Block of 14TH AVE,San Francisco,94127,B08,40,7357,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,7,West of Twin Peaks,"(37.7404916850864, -122.470109127479)",142500530-KM01 -141050144,KM01,14035378,Medical Incident,04/15/2014,04/15/2014,04/15/2014 11:02:24 AM,04/15/2014 11:05:01 AM,04/15/2014 11:05:27 AM,04/15/2014 11:05:27 AM,04/15/2014 11:13:51 AM,04/15/2014 11:39:32 AM,04/15/2014 11:49:11 AM,Code 2 Transport,04/15/2014 12:28:07 PM,1000 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",141050144-KM01 -151390414,E03,15052662,Medical Incident,05/19/2015,05/18/2015,05/19/2015 06:04:24 AM,05/19/2015 06:06:17 AM,05/19/2015 06:06:34 AM,05/19/2015 06:09:05 AM,05/19/2015 06:10:56 AM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Code 2 Transport,05/19/2015 06:17:45 AM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",151390414-E03 -141160245,B04,14039211,Alarms,04/26/2014,04/26/2014,04/26/2014 03:58:48 PM,04/26/2014 03:59:54 PM,04/26/2014 04:00:11 PM,04/26/2014 04:01:29 PM,04/26/2014 04:03:51 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/26/2014 04:15:11 PM,800 Block of HYDE ST,SAN FRANCISCO,94109,B04,3,1557,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.7886527895166, -122.416853689502)",141160245-B04 -160991955,52,16039325,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:09:21 PM,04/08/2016 02:10:56 PM,04/08/2016 02:12:38 PM,04/08/2016 02:12:45 PM,04/08/2016 02:24:52 PM,04/08/2016 02:38:48 PM,04/08/2016 02:59:24 PM,Code 2 Transport,04/08/2016 03:18:26 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160991955-52 -150733565,E07,15028116,Medical Incident,03/14/2015,03/14/2015,03/14/2015 07:54:49 PM,03/14/2015 07:54:49 PM,03/14/2015 07:54:58 PM,03/14/2015 07:55:42 PM,03/14/2015 08:01:17 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,No Merit,03/14/2015 08:07:07 PM,18TH ST/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",150733565-E07 -143581005,KM02,14128066,Medical Incident,12/24/2014,12/24/2014,12/24/2014 10:06:29 AM,12/24/2014 10:06:29 AM,12/24/2014 10:08:46 AM,12/24/2014 10:09:43 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Unable to Locate,12/24/2014 10:16:13 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",143581005-KM02 -142391420,E03,14083090,Structure Fire,08/27/2014,08/27/2014,08/27/2014 11:50:39 AM,08/27/2014 11:50:39 AM,08/27/2014 11:51:27 AM,08/27/2014 11:51:55 AM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Fire,08/27/2014 11:54:50 AM,600 Block of LARKIN ST,San Francisco,94109,B02,3,1643,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",142391420-E03 -152432846,53,15092794,Medical Incident,08/31/2015,08/31/2015,08/31/2015 05:04:41 PM,08/31/2015 05:06:57 PM,08/31/2015 05:07:37 PM,08/31/2015 05:10:31 PM,08/31/2015 05:18:00 PM,08/31/2015 05:19:53 PM,08/31/2015 05:48:56 PM,Code 2 Transport,08/31/2015 06:24:44 PM,1200 Block of 17TH AVE,San Francisco,94122,B08,22,7367,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,4,Inner Sunset,"(37.7645970345757, -122.475120956654)",152432846-53 -142812992,E12,14098984,Medical Incident,10/08/2014,10/08/2014,10/08/2014 06:50:56 PM,10/08/2014 06:52:25 PM,10/08/2014 06:53:42 PM,10/08/2014 06:55:17 PM,10/08/2014 06:56:40 PM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 07:07:24 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",142812992-E12 -151712003,KM14,15065376,Medical Incident,06/20/2015,06/20/2015,06/20/2015 02:57:32 PM,06/20/2015 02:57:46 PM,06/20/2015 02:58:10 PM,06/20/2015 02:59:05 PM,06/20/2015 03:14:20 PM,06/20/2015 03:35:59 PM,06/20/2015 04:05:57 PM,Code 2 Transport,06/20/2015 04:55:46 PM,1200 Block of 3RD ST,San Francisco,94158,B03,8,2231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",151712003-KM14 -151331812,RC3,15050432,Medical Incident,05/13/2015,05/13/2015,05/13/2015 12:30:20 PM,05/13/2015 12:30:20 PM,05/13/2015 12:32:43 PM,05/13/2015 12:33:10 PM,05/13/2015 12:41:19 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Code 2 Transport,05/13/2015 12:50:17 PM,1500 Block of DOLORES ST,San Francisco,94110,B06,11,5576,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Noe Valley,"(37.7450456172368, -122.424347725679)",151331812-RC3 -141843215,E03,14063836,Medical Incident,07/03/2014,07/03/2014,07/03/2014 08:57:36 PM,07/03/2014 08:58:28 PM,07/03/2014 08:59:11 PM,07/03/2014 08:59:20 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/03/2014 09:00:29 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",141843215-E03 -152364001,E41,15090099,Structure Fire,08/24/2015,08/24/2015,08/24/2015 09:56:36 PM,08/24/2015 09:56:57 PM,08/24/2015 09:57:09 PM,08/24/2015 09:59:40 PM,08/24/2015 09:59:40 PM,04/25/2016 01:08:44 PM,04/25/2016 01:08:44 PM,Fire,08/24/2015 10:03:53 PM,700 Block of BUSH ST,San Francisco,94108,B01,2,1361,3,3,3,false,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",152364001-E41 -160921339,73,16036402,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:17:01 AM,04/01/2016 11:21:08 AM,04/01/2016 11:21:37 AM,04/01/2016 11:22:02 AM,04/01/2016 11:29:36 AM,04/01/2016 11:41:09 AM,04/01/2016 12:14:01 PM,Code 2 Transport,04/01/2016 12:29:00 PM,EL CAMINO DEL MAR/POINT LOBOS AV,San Francisco,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.779851069188, -122.509432938414)",160921339-73 -151181043,E07,15044547,Medical Incident,04/28/2015,04/28/2015,04/28/2015 09:39:50 AM,04/28/2015 09:39:50 AM,04/28/2015 09:41:24 AM,04/28/2015 09:42:52 AM,04/28/2015 09:46:23 AM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Other,04/28/2015 10:01:46 AM,16TH ST/MISSOURI ST,San Francisco,94107,B03,29,2414,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,10,Mission Bay,"(37.7664299686096, -122.396897105337)",151181043-E07 -142260642,T08,14078386,Structure Fire,08/14/2014,08/13/2014,08/14/2014 07:18:10 AM,08/14/2014 07:18:10 AM,08/14/2014 07:18:59 AM,08/14/2014 07:20:51 AM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Fire,08/14/2014 07:21:17 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",142260642-T08 -143043710,T01,14107710,Alarms,10/31/2014,10/31/2014,10/31/2014 10:35:21 PM,10/31/2014 10:37:01 PM,10/31/2014 10:37:14 PM,10/31/2014 10:38:40 PM,10/31/2014 10:41:36 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,Fire,10/31/2014 10:48:43 PM,1100 Block of FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,false,Alarm,1,TRUCK,1,2,6,South of Market,"(37.7760967348453, -122.40856429774)",143043710-T01 -152753719,E01,15105529,Structure Fire,10/02/2015,10/02/2015,10/02/2015 09:13:19 PM,10/02/2015 09:13:19 PM,10/02/2015 09:13:55 PM,10/02/2015 09:15:25 PM,10/02/2015 09:17:25 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,Fire,10/02/2015 09:18:22 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Alarm,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",152753719-E01 -160943203,70,16037407,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:03:04 PM,04/03/2016 08:03:47 PM,04/03/2016 08:04:11 PM,04/03/2016 08:04:43 PM,04/03/2016 08:04:43 PM,04/03/2016 08:16:44 PM,04/03/2016 08:25:13 PM,Code 3 Transport,04/03/2016 08:50:20 PM,900 Block of HYDE ST,San Francisco,94109,B04,3,1561,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",160943203-70 -142790695,87,14098059,Traffic Collision,10/06/2014,10/05/2014,10/06/2014 07:54:02 AM,10/06/2014 07:54:02 AM,10/06/2014 07:58:12 AM,10/06/2014 08:00:18 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 08:04:41 AM,SKYLINE BL/FORT FUNSTON RD,San Francisco,94132,B08,19,8714,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7136941259081, -122.498357018484)",142790695-87 -152333261,E21,15088940,Medical Incident,08/21/2015,08/21/2015,08/21/2015 06:43:51 PM,08/21/2015 06:43:51 PM,08/21/2015 06:44:09 PM,08/21/2015 06:46:03 PM,08/21/2015 06:46:52 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Code 2 Transport,08/21/2015 06:52:31 PM,500 Block of SCOTT ST,San Francisco,94117,B05,21,4136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7747325666892, -122.436102962462)",152333261-E21 -142531829,66,14088297,Medical Incident,09/10/2014,09/10/2014,09/10/2014 01:03:02 PM,09/10/2014 01:03:02 PM,09/10/2014 01:11:34 PM,09/10/2014 01:11:55 PM,09/10/2014 01:27:30 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,Patient Declined Transport,09/10/2014 02:02:55 PM,1100 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",142531829-66 -152783323,T12,15106818,Citizen Assist / Service Call,10/05/2015,10/05/2015,10/05/2015 08:01:51 PM,10/05/2015 08:03:50 PM,10/05/2015 08:04:09 PM,10/05/2015 08:05:09 PM,10/05/2015 08:07:13 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Code 2 Transport,10/05/2015 08:31:04 PM,1200 Block of STANYAN ST,San Francisco,94117,B05,12,5261,3,3,3,false,Alarm,1,TRUCK,1,5,5,Inner Sunset,"(37.7604839722785, -122.451687109267)",152783323-T12 -143454017,64,14123128,Medical Incident,12/11/2014,12/11/2014,12/11/2014 11:40:33 PM,12/11/2014 11:42:16 PM,12/11/2014 11:42:25 PM,12/11/2014 11:44:38 PM,12/11/2014 11:49:45 PM,12/12/2014 12:07:03 AM,12/12/2014 12:27:02 AM,Code 2 Transport,12/12/2014 01:00:32 AM,400 Block of WINSTON DR,San Francisco,94132,B08,19,8854,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7276780963446, -122.481160230776)",143454017-64 -160961000,KM06,16037939,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:33:56 AM,04/05/2016 09:33:56 AM,04/05/2016 09:35:43 AM,04/05/2016 09:36:24 AM,04/05/2016 09:48:17 AM,04/05/2016 10:14:30 AM,04/05/2016 11:04:53 AM,Code 2 Transport,04/05/2016 11:22:03 AM,0 Block of NEW MONTGOMERY ST,,94105,B03,1,2144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",160961000-KM06 -153202913,T10,15123148,Structure Fire,11/16/2015,11/16/2015,11/16/2015 06:00:44 PM,11/16/2015 06:00:44 PM,11/16/2015 06:00:54 PM,11/16/2015 06:02:37 PM,11/16/2015 06:04:31 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Fire,11/16/2015 06:11:04 PM,SCOTT ST/POST ST,San Francisco,94115,B04,10,4131,3,3,3,false,Alarm,1,TRUCK,1,5,5,Japantown,"(37.7845309189576, -122.438019671354)",153202913-T10 -143612056,B02,14129198,Alarms,12/27/2014,12/27/2014,12/27/2014 03:17:34 PM,12/27/2014 03:19:11 PM,12/27/2014 03:20:01 PM,12/27/2014 03:21:49 PM,12/27/2014 03:24:54 PM,04/25/2016 01:13:11 PM,04/25/2016 01:13:11 PM,Fire,12/27/2014 03:44:50 PM,300 Block of SANCHEZ ST,San Francisco,94114,B05,6,5252,3,3,3,true,Alarm,1,CHIEF,3,5,8,Castro/Upper Market,"(37.7635589214674, -122.430873426898)",143612056-B02 -152814000,RC1,15108048,Medical Incident,10/08/2015,10/08/2015,10/08/2015 10:19:24 PM,10/08/2015 10:20:08 PM,10/08/2015 10:28:53 PM,10/08/2015 10:29:15 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Patient Declined Transport,10/08/2015 10:29:48 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",152814000-RC1 -152103576,88,15080152,Medical Incident,07/29/2015,07/29/2015,07/29/2015 09:09:22 PM,07/29/2015 09:10:36 PM,07/29/2015 09:11:01 PM,07/29/2015 09:11:32 PM,07/29/2015 09:18:45 PM,07/29/2015 09:29:04 PM,07/29/2015 09:45:23 PM,Code 2 Transport,07/29/2015 10:20:56 PM,1400 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7300297211845, -122.387395567373)",152103576-88 -152850018,B03,15109253,Alarms,10/12/2015,10/11/2015,10/12/2015 12:03:43 AM,10/12/2015 12:05:25 AM,10/12/2015 12:05:50 AM,10/12/2015 12:08:14 AM,10/12/2015 12:13:16 AM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/12/2015 12:33:58 AM,900 Block of TENNESSEE ST,San Francisco,94107,B10,4,2471,3,3,3,false,Alarm,1,CHIEF,2,10,10,Potrero Hill,"(37.7591635202376, -122.389298021323)",152850018-B03 -160983148,89,16039059,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:23:38 PM,04/07/2016 06:25:12 PM,04/07/2016 06:25:26 PM,04/07/2016 06:25:46 PM,04/07/2016 06:48:46 PM,04/07/2016 07:05:20 PM,04/07/2016 07:18:16 PM,Code 2 Transport,04/07/2016 08:06:23 PM,BEACH ST/LARKIN ST,San Francisco,94109,B01,28,1615,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8064363647501, -122.422196208979)",160983148-89 -160931387,AM08,16036822,Citizen Assist / Service Call,04/02/2016,04/02/2016,04/02/2016 11:25:00 AM,04/02/2016 11:26:05 AM,04/02/2016 11:39:06 AM,04/02/2016 11:39:06 AM,04/02/2016 11:52:48 AM,04/02/2016 12:09:24 PM,04/02/2016 12:31:49 PM,Code 2 Transport,04/02/2016 01:05:22 PM,1100 Block of CHURCH ST,San Francisco,94114,B06,11,5523,3,3,3,false,Alarm,1,PRIVATE,2,6,8,Noe Valley,"(37.7528749335192, -122.427474292895)",160931387-AM08 -152581035,65,15098574,Medical Incident,09/15/2015,09/15/2015,09/15/2015 09:23:12 AM,09/15/2015 09:23:24 AM,09/15/2015 09:26:56 AM,09/15/2015 09:28:14 AM,09/15/2015 09:31:26 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Fire,09/15/2015 09:36:38 AM,1700 Block of 21ST AVE,San Francisco,94122,B08,40,7431,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.755082711617, -122.478610954739)",152581035-65 -160930494,85,16036715,Medical Incident,04/02/2016,04/01/2016,04/02/2016 04:05:17 AM,04/02/2016 04:06:31 AM,04/02/2016 04:06:44 AM,04/02/2016 04:06:54 AM,04/02/2016 04:09:19 AM,04/02/2016 04:42:19 AM,04/02/2016 05:06:44 AM,Code 2 Transport,04/02/2016 05:31:29 AM,100 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",160930494-85 -160922539,KM02,16036518,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:42:28 PM,04/01/2016 04:43:00 PM,04/01/2016 04:43:13 PM,04/01/2016 04:43:35 PM,04/01/2016 04:53:28 PM,04/01/2016 05:17:23 PM,04/01/2016 05:43:39 PM,Code 2 Transport,04/01/2016 06:24:02 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160922539-KM02 -160970807,53,16038314,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 08:25:18 AM,04/06/2016 08:25:55 AM,04/06/2016 08:26:35 AM,04/06/2016 08:26:49 AM,04/06/2016 08:31:51 AM,04/06/2016 08:54:26 AM,04/06/2016 09:10:36 AM,Code 2 Transport,04/06/2016 09:48:32 AM,4100 Block of 20TH ST,San Francisco,94114,B06,6,5443,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7576652664, -122.434139079273)",160970807-53 -143571970,B01,14127784,Alarms,12/23/2014,12/23/2014,12/23/2014 01:40:59 PM,12/23/2014 01:43:00 PM,12/23/2014 01:43:14 PM,12/23/2014 01:45:08 PM,12/23/2014 01:47:30 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Fire,12/23/2014 01:55:00 PM,300 Block of FRANCISCO ST,San Francisco,94133,B01,28,131,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8050285945628, -122.411146080313)",143571970-B01 -143012026,KM12,14106294,Medical Incident,10/28/2014,10/28/2014,10/28/2014 02:53:26 PM,10/28/2014 02:53:26 PM,10/28/2014 02:54:09 PM,10/28/2014 02:55:55 PM,10/28/2014 03:01:52 PM,10/28/2014 03:36:36 PM,10/28/2014 03:49:30 PM,Code 2 Transport,10/28/2014 04:29:56 PM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",143012026-KM12 -160940928,52,16037195,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:20:29 AM,04/03/2016 08:20:29 AM,04/03/2016 08:20:58 AM,04/03/2016 08:21:05 AM,04/03/2016 08:29:00 AM,04/03/2016 08:41:59 AM,04/03/2016 08:47:10 AM,Code 2 Transport,04/03/2016 09:23:10 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160940928-52 -143290993,E48,14116603,Vehicle Fire,11/25/2014,11/25/2014,11/25/2014 09:14:57 AM,11/25/2014 09:18:31 AM,11/25/2014 09:20:13 AM,11/25/2014 09:21:49 AM,11/25/2014 09:30:48 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/25/2014 09:33:14 AM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,3,3,3,true,Fire,1,ENGINE,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",143290993-E48 -160933422,64,16037044,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:04:31 PM,04/02/2016 09:05:21 PM,04/02/2016 09:07:49 PM,04/02/2016 09:08:18 PM,04/02/2016 09:22:26 PM,04/02/2016 09:35:37 PM,04/02/2016 09:56:59 PM,Code 2 Transport,04/02/2016 10:31:09 PM,500 Block of BEACH ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8069135411381, -122.418073383892)",160933422-64 -160980952,74,16038821,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:38:22 AM,04/07/2016 08:40:40 AM,04/07/2016 08:42:46 AM,04/07/2016 08:42:54 AM,04/07/2016 09:03:19 AM,04/07/2016 09:08:10 AM,04/07/2016 09:29:58 AM,Code 2 Transport,04/07/2016 10:06:06 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160980952-74 -160993629,64,16039477,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:21:58 PM,04/08/2016 09:23:26 PM,04/08/2016 09:23:48 PM,04/08/2016 09:24:06 PM,04/08/2016 09:30:56 PM,04/08/2016 09:41:18 PM,04/08/2016 09:51:58 PM,Code 2 Transport,04/08/2016 10:30:14 PM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160993629-64 -152311180,T06,15088059,Structure Fire,08/19/2015,08/19/2015,08/19/2015 10:11:19 AM,08/19/2015 10:11:19 AM,08/19/2015 10:12:24 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Other,08/19/2015 10:12:52 AM,17TH ST/TREAT AV,San Francisco,94110,B02,7,5245,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.76382320884, -122.41358757035)",152311180-T06 -160993723,83,16039494,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:49:27 PM,04/08/2016 09:49:27 PM,04/08/2016 09:54:46 PM,04/08/2016 09:55:00 PM,04/08/2016 09:59:27 PM,04/08/2016 10:02:57 PM,04/08/2016 10:43:43 PM,Code 2 Transport,04/08/2016 11:17:57 PM,100 Block of SICKLES AVE,San Francisco,94112,B09,33,6213,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7099816740397, -122.454168047139)",160993723-83 -151952261,E07,15074432,Other,07/14/2015,07/14/2015,07/14/2015 03:31:07 PM,07/14/2015 03:34:21 PM,07/14/2015 03:34:57 PM,07/14/2015 03:36:06 PM,07/14/2015 03:37:01 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,Fire,07/14/2015 03:58:41 PM,800 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5433,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7595614667718, -122.417018134108)",151952261-E07 -160952733,87,16037703,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:35:06 PM,04/04/2016 04:36:55 PM,04/04/2016 04:37:20 PM,04/04/2016 04:38:23 PM,04/04/2016 04:43:42 PM,04/04/2016 05:04:17 PM,04/04/2016 05:23:41 PM,Code 2 Transport,04/04/2016 06:06:30 PM,100 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7215,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7876931888724, -122.484718840648)",160952733-87 -160932711,77,16036966,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:29:48 PM,04/02/2016 05:32:09 PM,04/02/2016 05:34:35 PM,04/02/2016 05:34:35 PM,04/02/2016 05:44:43 PM,04/02/2016 05:51:48 PM,04/02/2016 05:55:42 PM,Code 2 Transport,04/02/2016 06:30:26 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160932711-77 -151140062,E05,15042914,Medical Incident,04/24/2015,04/23/2015,04/24/2015 12:28:52 AM,04/24/2015 12:30:14 AM,04/24/2015 12:32:23 AM,04/24/2015 12:33:56 AM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Code 2 Transport,04/24/2015 12:37:23 AM,1500 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7754543454069, -122.442133697759)",151140062-E05 -161001589,89,16039758,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:54:38 PM,04/09/2016 12:56:02 PM,04/09/2016 12:56:23 PM,04/09/2016 12:56:42 PM,04/09/2016 01:04:28 PM,04/09/2016 01:28:32 PM,04/09/2016 01:46:51 PM,Code 2 Transport,04/09/2016 02:46:53 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",161001589-89 -160950336,75,16037507,Medical Incident,04/04/2016,04/03/2016,04/04/2016 04:29:28 AM,04/04/2016 04:31:00 AM,04/04/2016 04:32:04 AM,04/04/2016 04:32:51 AM,04/04/2016 04:43:51 AM,04/04/2016 04:55:13 AM,04/04/2016 05:07:55 AM,Code 2 Transport,04/04/2016 05:30:48 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160950336-75 -142400778,72,14083395,Medical Incident,08/28/2014,08/28/2014,08/28/2014 08:37:24 AM,08/28/2014 08:38:10 AM,08/28/2014 08:38:36 AM,08/28/2014 08:38:49 AM,08/28/2014 08:42:58 AM,08/28/2014 09:11:22 AM,08/28/2014 09:17:39 AM,Code 3 Transport,08/28/2014 10:07:00 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",142400778-72 -152550698,E07,15097415,Structure Fire,09/12/2015,09/11/2015,09/12/2015 07:20:25 AM,09/12/2015 07:20:25 AM,09/12/2015 07:20:50 AM,09/12/2015 07:22:16 AM,09/12/2015 07:24:12 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 07:28:04 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",152550698-E07 -141120348,T01,14037936,Structure Fire,04/22/2014,04/22/2014,04/22/2014 08:50:14 PM,04/22/2014 08:50:14 PM,04/22/2014 08:50:31 PM,04/22/2014 08:52:56 PM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Fire,04/22/2014 08:53:45 PM,0 Block of TAYLOR ST,,94102,B03,1,1454,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",141120348-T01 -152960861,RC2,15113646,Medical Incident,10/23/2015,10/23/2015,10/23/2015 08:36:39 AM,10/23/2015 08:37:59 AM,10/23/2015 08:40:37 AM,10/23/2015 08:40:37 AM,10/23/2015 08:42:25 AM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,No Merit,10/23/2015 09:04:15 AM,18TH AV/GEARY BL,San Francisco,94121,B07,31,7164,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7804396365064, -122.477239888569)",152960861-RC2 -143520152,T07,14125623,Alarms,12/18/2014,12/17/2014,12/18/2014 01:18:48 AM,12/18/2014 01:19:54 AM,12/18/2014 01:20:11 AM,12/18/2014 01:22:32 AM,12/18/2014 01:24:50 AM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Fire,12/18/2014 01:29:30 AM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",143520152-T07 -152633238,71,15100805,Medical Incident,09/20/2015,09/20/2015,09/20/2015 07:11:44 PM,09/20/2015 07:11:44 PM,09/20/2015 07:12:46 PM,09/20/2015 07:13:15 PM,09/20/2015 07:33:19 PM,09/20/2015 07:44:30 PM,09/20/2015 07:49:48 PM,Code 2 Transport,09/20/2015 08:21:30 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695032629887, -122.450452600564)",152633238-71 -160970849,54,16038321,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:38:04 AM,04/06/2016 08:38:04 AM,04/06/2016 08:38:39 AM,04/06/2016 08:38:54 AM,04/06/2016 08:47:51 AM,04/06/2016 08:50:44 AM,04/06/2016 09:12:40 AM,Code 2 Transport,04/06/2016 09:39:00 AM,OFARRELL ST/JONES ST,San Francisco,94102,B02,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160970849-54 -150310294,RC3,15011828,Traffic Collision,01/31/2015,01/30/2015,01/31/2015 01:59:24 AM,01/31/2015 01:59:24 AM,01/31/2015 01:59:59 AM,01/31/2015 02:01:52 AM,01/31/2015 02:05:38 AM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Other,01/31/2015 02:26:51 AM,100 Block of CHURCH ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,8,Castro/Upper Market,"(37.7690612353533, -122.429159883658)",150310294-RC3 -160952785,50,16037712,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:47:11 PM,04/04/2016 04:47:43 PM,04/04/2016 04:48:43 PM,04/04/2016 04:48:50 PM,04/04/2016 04:57:15 PM,04/04/2016 05:28:38 PM,04/04/2016 05:38:12 PM,Code 2 Transport,04/04/2016 06:22:51 PM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",160952785-50 -152532516,68,15096772,Medical Incident,09/10/2015,09/10/2015,09/10/2015 03:38:45 PM,09/10/2015 03:41:24 PM,09/10/2015 03:45:02 PM,09/10/2015 03:45:23 PM,09/10/2015 03:56:15 PM,09/10/2015 04:12:18 PM,09/10/2015 04:45:37 PM,Code 2 Transport,09/10/2015 05:19:03 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.773955543025, -122.420958448413)",152532516-68 -151220214,67,15046121,Medical Incident,05/02/2015,05/01/2015,05/02/2015 01:25:31 AM,05/02/2015 01:27:53 AM,05/02/2015 01:28:47 AM,05/02/2015 01:29:21 AM,05/02/2015 01:34:06 AM,05/02/2015 01:41:48 AM,04/25/2016 01:10:50 PM,Code 2 Transport,05/02/2015 02:14:14 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",151220214-67 -153473408,AM14,15133869,Medical Incident,12/13/2015,12/13/2015,12/13/2015 10:14:25 PM,12/13/2015 10:16:30 PM,12/13/2015 10:17:17 PM,12/13/2015 10:18:03 PM,12/13/2015 10:20:50 PM,12/13/2015 10:45:21 PM,12/13/2015 10:56:58 PM,Code 2 Transport,12/13/2015 11:24:25 PM,PARNASSUS AV/HILLWAY AV,San Francisco,94131,B05,12,5155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,7,Inner Sunset,"(37.7638146894796, -122.456669911754)",153473408-AM14 -143191761,E10,14112970,Medical Incident,11/15/2014,11/15/2014,11/15/2014 01:03:45 PM,11/15/2014 01:04:21 PM,11/15/2014 01:04:35 PM,11/15/2014 01:05:49 PM,11/15/2014 01:08:21 PM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Code 2 Transport,11/15/2014 01:14:14 PM,SACRAMENTO ST/CHERRY ST,San Francisco,94118,B07,10,4441,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7869282192113, -122.45687451949)",143191761-E10 -161001057,50,16039690,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:55:04 AM,04/09/2016 09:56:03 AM,04/09/2016 09:56:24 AM,04/09/2016 09:56:31 AM,04/09/2016 10:16:05 AM,04/09/2016 10:32:27 AM,04/09/2016 10:56:33 AM,Code 2 Transport,04/09/2016 11:37:12 AM,100 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",161001057-50 -143422117,E13,14121558,Medical Incident,12/08/2014,12/08/2014,12/08/2014 02:23:05 PM,12/08/2014 02:25:56 PM,12/08/2014 02:26:09 PM,12/08/2014 02:27:02 PM,12/08/2014 02:31:25 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 03:05:32 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",143422117-E13 -160983278,63,16039073,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:55:23 PM,04/07/2016 06:55:23 PM,04/07/2016 06:56:16 PM,04/07/2016 06:56:31 PM,04/07/2016 07:01:42 PM,04/07/2016 07:10:38 PM,04/07/2016 07:33:42 PM,Code 2 Transport,04/07/2016 08:09:55 PM,UNION ST/VAN NESS AV,San Francisco,94109,B04,41,3131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Russian Hill,"(37.7985524526538, -122.423982146754)",160983278-63 -141351443,B03,14046138,Alarms,05/15/2014,05/15/2014,05/15/2014 11:17:52 AM,05/15/2014 11:19:16 AM,05/15/2014 11:19:33 AM,05/15/2014 11:20:46 AM,05/15/2014 11:29:20 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/15/2014 11:29:44 AM,1500 Block of BRYANT ST,San Francisco,94103,B02,29,5222,3,3,3,false,Alarm,1,CHIEF,3,2,9,Mission,"(37.767536533024, -122.410739256407)",141351443-B03 -160930094,AM24,16036675,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:36:43 AM,04/02/2016 12:37:11 AM,04/02/2016 12:38:02 AM,04/02/2016 12:38:23 AM,04/02/2016 12:45:39 AM,04/02/2016 12:56:50 AM,04/02/2016 01:09:02 AM,Code 2 Transport,04/02/2016 01:39:09 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160930094-AM24 -160931673,76,16036850,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 12:44:43 PM,04/02/2016 12:45:24 PM,04/02/2016 12:46:42 PM,04/02/2016 12:46:48 PM,04/02/2016 12:55:17 PM,04/02/2016 01:03:30 PM,04/02/2016 01:10:33 PM,Code 2 Transport,04/02/2016 01:26:15 PM,SILVER AV/BAYSHORE BL,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Portola,"(37.7329487834835, -122.404657098442)",160931673-76 -150361733,E28,15013825,Medical Incident,02/05/2015,02/05/2015,02/05/2015 12:53:40 PM,02/05/2015 12:54:02 PM,02/05/2015 12:54:16 PM,02/05/2015 12:54:59 PM,02/05/2015 12:57:25 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Code 2 Transport,02/05/2015 01:07:45 PM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",150361733-E28 -142721110,E03,14095335,Medical Incident,09/29/2014,09/29/2014,09/29/2014 10:13:43 AM,09/29/2014 10:14:44 AM,09/29/2014 10:16:34 AM,09/29/2014 10:16:51 AM,09/29/2014 10:20:07 AM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Code 2 Transport,09/29/2014 10:25:30 AM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",142721110-E03 -160990949,88,16039234,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:24:14 AM,04/08/2016 09:29:18 AM,04/08/2016 09:29:41 AM,04/08/2016 09:30:04 AM,04/08/2016 09:53:06 AM,04/08/2016 10:13:00 AM,04/08/2016 10:31:45 AM,Code 2 Transport,04/08/2016 11:11:52 AM,POLK ST/MARKET ST,San Francisco,94103,B02,36,3111,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",160990949-88 -151470297,E09,15055793,Medical Incident,05/27/2015,05/26/2015,05/27/2015 03:41:00 AM,05/27/2015 03:43:36 AM,05/27/2015 03:43:43 AM,05/27/2015 03:45:53 AM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Code 2 Transport,05/27/2015 03:47:59 AM,3RD ST/EVANS AV,San Francisco,94124,B10,25,6457,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",151470297-E09 -150030351,57,15000959,Medical Incident,01/03/2015,01/02/2015,01/03/2015 02:26:36 AM,01/03/2015 02:42:18 AM,01/03/2015 02:42:33 AM,01/03/2015 02:42:45 AM,01/03/2015 02:44:25 AM,01/03/2015 03:01:23 AM,01/03/2015 03:11:30 AM,Code 2 Transport,01/03/2015 04:03:00 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",150030351-57 -151382663,53,15052504,Medical Incident,05/18/2015,05/18/2015,05/18/2015 05:15:56 PM,05/18/2015 05:15:56 PM,05/18/2015 05:16:42 PM,05/18/2015 05:17:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Code 2 Transport,05/18/2015 05:17:53 PM,600 Block of CAPITOL AVE,San Francisco,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Oceanview/Merced/Ingleside,"(37.7161811504722, -122.458990060206)",151382663-53 -143400589,62,14120621,Medical Incident,12/06/2014,12/05/2014,12/06/2014 04:49:10 AM,12/06/2014 04:53:31 AM,12/06/2014 04:53:54 AM,12/06/2014 04:54:11 AM,12/06/2014 04:54:11 AM,12/06/2014 05:18:03 AM,12/06/2014 05:47:50 AM,Code 2 Transport,12/06/2014 06:32:16 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,2,B,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",143400589-62 -153022004,89,15115857,Medical Incident,10/29/2015,10/29/2015,10/29/2015 01:22:41 PM,10/29/2015 01:24:29 PM,10/29/2015 01:27:05 PM,10/29/2015 01:29:00 PM,10/29/2015 01:48:55 PM,10/29/2015 01:48:57 PM,10/29/2015 02:32:28 PM,Code 2 Transport,10/29/2015 02:47:29 PM,2200 Block of HAYES ST,San Francisco,94117,B05,21,4543,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",153022004-89 -151290307,E01,15048827,Medical Incident,05/09/2015,05/08/2015,05/09/2015 02:01:41 AM,05/09/2015 02:03:31 AM,05/09/2015 02:04:25 AM,05/09/2015 02:06:41 AM,05/09/2015 02:14:48 AM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Code 2 Transport,05/09/2015 02:27:19 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",151290307-E01 -160921697,52,16036439,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 01:04:13 PM,04/01/2016 01:04:13 PM,04/01/2016 01:04:55 PM,04/01/2016 01:05:05 PM,04/01/2016 01:12:45 PM,04/01/2016 01:44:39 PM,04/01/2016 02:25:24 PM,Code 2 Transport,04/01/2016 03:08:01 PM,BAY ST/HYDE ST,San Francisco,94109,B01,28,1614,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8047903067381, -122.420178127211)",160921697-52 -150463556,E01,15018093,Medical Incident,02/15/2015,02/15/2015,02/15/2015 09:45:16 PM,02/15/2015 09:46:04 PM,02/15/2015 09:46:36 PM,02/15/2015 09:48:11 PM,02/15/2015 09:51:43 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Code 2 Transport,02/15/2015 09:57:02 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",150463556-E01 -153452239,KM06,15132844,Medical Incident,12/11/2015,12/11/2015,12/11/2015 02:51:06 PM,12/11/2015 02:53:12 PM,12/11/2015 02:54:27 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,No Merit,12/11/2015 02:58:59 PM,BUSH ST/KEARNY ST,San Francisco,94104,B01,13,1235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",153452239-KM06 -150530495,60,15020267,Medical Incident,02/22/2015,02/21/2015,02/22/2015 03:13:27 AM,02/22/2015 03:13:27 AM,02/22/2015 03:14:05 AM,02/22/2015 03:14:14 AM,02/22/2015 03:25:53 AM,02/22/2015 03:36:55 AM,04/25/2016 01:12:06 PM,Code 2 Transport,02/22/2015 04:41:45 AM,LEAVENWORTH ST/TURK ST,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",150530495-60 -143422803,E31,14121628,Medical Incident,12/08/2014,12/08/2014,12/08/2014 05:07:51 PM,12/08/2014 05:07:51 PM,12/08/2014 05:13:05 PM,12/08/2014 05:13:05 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,No Merit,12/08/2014 05:14:43 PM,2300 Block of MARKET ST,San Francisco,94114,B05,6,5252,2,3,3,false,Potentially Life-Threatening,1,ENGINE,3,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",143422803-E31 -141190395,E38,14040338,Medical Incident,04/29/2014,04/29/2014,04/29/2014 08:16:37 PM,04/29/2014 08:17:26 PM,04/29/2014 08:18:26 PM,04/29/2014 08:19:28 PM,04/29/2014 08:33:01 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Other,04/29/2014 08:40:26 PM,1800 Block of PINE ST,SAN FRANCISCO,94109,B04,38,3325,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",141190395-E38 -143563431,AM20,14127502,Medical Incident,12/22/2014,12/22/2014,12/22/2014 07:34:47 PM,12/22/2014 07:35:36 PM,12/22/2014 07:35:44 PM,12/22/2014 07:36:49 PM,12/22/2014 07:40:12 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Cancelled,12/22/2014 07:46:19 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",143563431-AM20 -150322123,83,15012400,Medical Incident,02/01/2015,02/01/2015,02/01/2015 02:18:23 PM,02/01/2015 02:18:56 PM,02/01/2015 02:20:11 PM,02/01/2015 02:20:14 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,No Merit,02/01/2015 02:30:17 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",150322123-83 -151890695,E03,15072081,Medical Incident,07/08/2015,07/07/2015,07/08/2015 07:50:10 AM,07/08/2015 07:51:56 AM,07/08/2015 07:53:46 AM,07/08/2015 07:54:57 AM,07/08/2015 07:59:34 AM,04/25/2016 01:09:35 PM,04/25/2016 01:09:35 PM,No Merit,07/08/2015 08:00:41 AM,OFARRELL ST/LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",151890695-E03 -153294035,E32,15126814,Structure Fire,11/25/2015,11/25/2015,11/25/2015 10:42:51 PM,11/25/2015 10:42:51 PM,11/25/2015 10:43:42 PM,11/25/2015 10:44:48 PM,11/25/2015 10:47:16 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Fire,11/25/2015 10:47:20 PM,CHENERY ST/CHARLES ST,San Francisco,94131,B06,32,8113,3,3,3,false,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7383577387837, -122.42607557791)",153294035-E32 -150051813,E19,15001864,Medical Incident,01/05/2015,01/05/2015,01/05/2015 01:15:34 PM,01/05/2015 01:17:56 PM,01/05/2015 01:19:07 PM,01/05/2015 01:19:58 PM,01/05/2015 01:24:11 PM,04/25/2016 01:13:01 PM,04/25/2016 01:13:01 PM,Code 2 Transport,01/05/2015 02:14:37 PM,2900 Block of 21ST AVE,San Francisco,94132,B08,19,8732,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7336313643554, -122.477083030431)",150051813-E19 -151230349,E01,15046542,Medical Incident,05/03/2015,05/02/2015,05/03/2015 02:17:04 AM,05/03/2015 02:19:07 AM,05/03/2015 02:20:12 AM,05/03/2015 02:21:08 AM,05/03/2015 02:26:23 AM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Code 2 Transport,05/03/2015 02:26:36 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151230349-E01 -142192211,88,14076028,Medical Incident,08/07/2014,08/07/2014,08/07/2014 03:49:29 PM,08/07/2014 03:50:36 PM,08/07/2014 03:51:17 PM,08/07/2014 03:51:31 PM,08/07/2014 03:53:10 PM,08/07/2014 04:04:12 PM,08/07/2014 04:22:12 PM,Code 2 Transport,08/07/2014 04:29:47 PM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",142192211-88 -142781146,87,14097738,Medical Incident,10/05/2014,10/05/2014,10/05/2014 09:28:44 AM,10/05/2014 09:30:26 AM,10/05/2014 09:33:09 AM,10/05/2014 09:35:34 AM,10/05/2014 10:06:18 AM,10/05/2014 10:06:24 AM,10/05/2014 10:52:50 AM,Code 2 Transport,10/05/2014 10:55:47 AM,200 Block of PAGE ST,San Francisco,94102,B02,36,3313,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7737235017153, -122.424812687358)",142781146-87 -153472045,55,15133725,Medical Incident,12/13/2015,12/13/2015,12/13/2015 02:27:26 PM,12/13/2015 02:28:46 PM,12/13/2015 02:29:32 PM,12/13/2015 02:30:14 PM,12/13/2015 02:48:10 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Medical Examiner,12/13/2015 03:50:36 PM,500 Block of AMAZON AVE,San Francisco,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7155859094303, -122.435741243059)",153472045-55 -142731848,E36,14095720,Medical Incident,09/30/2014,09/30/2014,09/30/2014 01:09:10 PM,09/30/2014 01:16:21 PM,09/30/2014 01:18:07 PM,09/30/2014 01:19:13 PM,09/30/2014 01:23:46 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Code 2 Transport,09/30/2014 01:32:06 PM,0 Block of DR CARLTON B GOODLETT PL,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",142731848-E36 -160981926,AM14,16038921,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:57:25 PM,04/07/2016 12:59:06 PM,04/07/2016 12:59:47 PM,04/07/2016 01:00:36 PM,04/07/2016 01:03:19 PM,04/07/2016 01:23:18 PM,04/07/2016 01:34:16 PM,Code 2 Transport,04/07/2016 02:00:39 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160981926-AM14 -153212445,E10,15123501,Medical Incident,11/17/2015,11/17/2015,11/17/2015 03:29:09 PM,11/17/2015 03:30:25 PM,11/17/2015 03:31:25 PM,11/17/2015 03:32:08 PM,11/17/2015 03:32:08 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Code 2 Transport,11/17/2015 03:54:34 PM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",153212445-E10 -143222432,75,14114083,Medical Incident,11/18/2014,11/18/2014,11/18/2014 04:19:59 PM,11/18/2014 04:21:57 PM,11/18/2014 04:23:18 PM,11/18/2014 04:23:33 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,Gone on Arrival,11/18/2014 04:28:35 PM,JONES ST/GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",143222432-75 -160993195,70,16039433,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:03:50 PM,04/08/2016 07:04:54 PM,04/08/2016 07:06:29 PM,04/08/2016 07:06:53 PM,04/08/2016 07:15:23 PM,04/08/2016 07:19:04 PM,04/08/2016 07:32:09 PM,Code 2 Transport,04/08/2016 07:46:39 PM,0 Block of SHERMAN ST,San Francisco,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7766015774052, -122.405924386123)",160993195-70 -142332148,B09,14080972,Structure Fire,08/21/2014,08/21/2014,08/21/2014 03:14:58 PM,08/21/2014 03:14:58 PM,08/21/2014 03:16:05 PM,08/21/2014 03:17:17 PM,08/21/2014 03:22:18 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,Fire,08/21/2014 03:31:57 PM,300 Block of LA GRANDE AVE,San Francisco,94112,B09,43,616,3,3,3,false,Alarm,1,CHIEF,2,9,11,McLaren Park,"(37.7197515959451, -122.425588438069)",142332148-B09 -150492512,E17,15019021,Alarms,02/18/2015,02/18/2015,02/18/2015 03:34:16 PM,02/18/2015 03:34:52 PM,02/18/2015 03:35:51 PM,02/18/2015 03:38:00 PM,02/18/2015 03:39:58 PM,04/25/2016 01:12:10 PM,04/25/2016 01:12:10 PM,Fire,02/18/2015 03:43:38 PM,1500 Block of OAKDALE AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7341109185818, -122.389372863694)",150492512-E17 -141782768,E14,14061518,Medical Incident,06/27/2014,06/27/2014,06/27/2014 06:30:35 PM,06/27/2014 06:33:27 PM,06/27/2014 06:39:35 PM,06/27/2014 06:40:39 PM,06/27/2014 06:41:50 PM,04/25/2016 01:16:32 PM,04/25/2016 01:16:32 PM,Code 2 Transport,06/27/2014 07:25:48 PM,5900 Block of GEARY BLVD,San Francisco,94121,B07,14,7213,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7800403908757, -122.483118050539)",141782768-E14 -161002511,AM16,16039865,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 05:49:25 PM,04/09/2016 05:49:25 PM,04/09/2016 05:51:05 PM,04/09/2016 05:51:46 PM,04/09/2016 05:53:54 PM,04/09/2016 06:26:03 PM,04/09/2016 06:34:02 PM,Code 2 Transport,04/09/2016 07:31:36 PM,VAN NESS AV/OFARRELL ST,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",161002511-AM16 -160960174,62,16037859,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:35:37 AM,04/05/2016 01:38:05 AM,04/05/2016 01:38:25 AM,04/05/2016 01:38:36 AM,04/05/2016 01:45:25 AM,04/05/2016 02:26:15 AM,04/05/2016 02:56:32 AM,Code 2 Transport,04/05/2016 03:57:20 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160960174-62 -142023024,E08,14070021,Medical Incident,07/21/2014,07/21/2014,07/21/2014 07:56:50 PM,07/21/2014 07:58:30 PM,07/21/2014 07:58:36 PM,07/21/2014 07:59:42 PM,07/21/2014 08:02:54 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Code 2 Transport,07/21/2014 08:20:09 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",142023024-E08 -143383091,E26,14120096,Medical Incident,12/04/2014,12/04/2014,12/04/2014 06:21:41 PM,12/04/2014 06:25:22 PM,12/04/2014 06:25:39 PM,12/04/2014 06:27:04 PM,12/04/2014 06:31:10 PM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,Code 2 Transport,12/04/2014 06:36:06 PM,4600 Block of 25TH ST,San Francisco,94114,B06,24,5544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Noe Valley,"(37.7492110432955, -122.440992705965)",143383091-E26 -151630555,77,15062186,Medical Incident,06/12/2015,06/11/2015,06/12/2015 06:59:32 AM,06/12/2015 06:59:32 AM,06/12/2015 07:00:12 AM,06/12/2015 07:01:30 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/12/2015 07:05:52 AM,600 Block of RHODE ISLAND ST,San Francisco,94107,B02,37,2455,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7615942041508, -122.402196081672)",151630555-77 -160982251,67,16038959,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:24:37 PM,04/07/2016 02:26:28 PM,04/07/2016 02:30:10 PM,04/07/2016 02:30:19 PM,04/07/2016 02:50:59 PM,04/07/2016 03:30:47 PM,04/07/2016 03:22:05 PM,Code 2 Transport,04/07/2016 03:53:18 PM,2200 Block of PACIFIC AVE,San Francisco,94115,B04,38,3441,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7936081074622, -122.432257471767)",160982251-67 -142980783,E36,14105090,Medical Incident,10/25/2014,10/24/2014,10/25/2014 06:51:37 AM,10/25/2014 06:51:37 AM,10/25/2014 06:51:54 AM,10/25/2014 06:53:56 AM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Patient Declined Transport,10/25/2014 07:02:29 AM,800 Block of FRANKLIN ST,San Francisco,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7824610050691, -122.422348287686)",142980783-E36 -160961202,61,16037955,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:28:00 AM,04/05/2016 10:28:46 AM,04/05/2016 10:29:53 AM,04/05/2016 10:30:05 AM,04/05/2016 10:37:13 AM,04/05/2016 10:48:28 AM,04/05/2016 10:58:25 AM,Code 2 Transport,04/05/2016 11:32:44 AM,1300 Block of JONES ST,San Francisco,94109,B01,41,1466,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",160961202-61 -153320739,KM09,15127629,Medical Incident,11/28/2015,11/28/2015,11/28/2015 08:05:35 AM,11/28/2015 08:05:35 AM,11/28/2015 08:07:37 AM,11/28/2015 08:08:08 AM,11/28/2015 08:12:21 AM,11/28/2015 08:35:33 AM,11/28/2015 08:39:42 AM,Code 3 Transport,11/28/2015 09:26:03 AM,GRANT AV/SUTTER ST,San Francisco,94108,B01,1,1316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",153320739-KM09 -141413160,E02,14048471,Medical Incident,05/21/2014,05/21/2014,05/21/2014 08:12:58 PM,05/21/2014 08:14:00 PM,05/21/2014 08:17:12 PM,05/21/2014 08:18:47 PM,05/21/2014 08:24:05 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 08:38:09 PM,800 Block of WASHINGTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7950325698412, -122.407793068572)",141413160-E02 -153240821,65,15124577,Medical Incident,11/20/2015,11/20/2015,11/20/2015 08:13:57 AM,11/20/2015 08:16:06 AM,11/20/2015 08:17:30 AM,11/20/2015 08:17:39 AM,11/20/2015 08:24:01 AM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,No Merit,11/20/2015 08:29:59 AM,10TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7639898892897, -122.467383230289)",153240821-65 -152490051,E38,15094927,Structure Fire,09/06/2015,09/05/2015,09/06/2015 12:19:21 AM,09/06/2015 12:19:21 AM,09/06/2015 12:19:36 AM,09/06/2015 12:21:45 AM,09/06/2015 12:23:48 AM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,Fire,09/06/2015 12:24:22 AM,VAN NESS AV/BUSH ST,San Francisco,94109,B04,3,3156,3,3,3,false,Alarm,1,ENGINE,1,4,2,Nob Hill,"(37.7884896423018, -122.421948587259)",152490051-E38 -160962537,66,16038074,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:46:31 PM,04/05/2016 03:48:26 PM,04/05/2016 03:52:40 PM,04/05/2016 03:52:48 PM,04/05/2016 04:09:06 PM,04/05/2016 04:35:34 PM,04/05/2016 05:08:25 PM,Code 2 Transport,04/05/2016 06:00:18 PM,100 Block of GLADSTONE DR,San Francisco,94134,B09,32,5683,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7292603844598, -122.42319081657)",160962537-66 -160980164,KM07,16038737,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:10:47 AM,04/07/2016 01:12:40 AM,04/07/2016 01:13:13 AM,04/07/2016 01:13:49 AM,04/07/2016 01:19:44 AM,04/07/2016 01:31:12 AM,04/07/2016 01:46:16 AM,Code 2 Transport,04/07/2016 02:36:51 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160980164-KM07 -160923420,KM06,16036602,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:46:56 PM,04/01/2016 08:47:22 PM,04/01/2016 08:47:33 PM,04/01/2016 08:48:11 PM,04/01/2016 08:54:19 PM,04/01/2016 09:09:46 PM,04/01/2016 09:27:13 PM,Code 2 Transport,04/01/2016 09:52:04 PM,1700 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7914466216221, -122.421704925005)",160923420-KM06 -151540196,E26,15058521,Structure Fire,06/03/2015,06/02/2015,06/03/2015 01:55:25 AM,06/03/2015 01:56:29 AM,06/03/2015 02:01:01 AM,06/03/2015 02:02:17 AM,06/03/2015 02:09:30 AM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Fire,06/03/2015 02:46:34 AM,3400 Block of 26TH ST,San Francisco,94110,B06,11,5613,3,3,3,true,Fire,1,ENGINE,12,6,9,Mission,"(37.7490786029711, -122.41842788258)",151540196-E26 -142131926,T03,14073869,Medical Incident,08/01/2014,08/01/2014,08/01/2014 02:17:01 PM,08/01/2014 02:17:34 PM,08/01/2014 02:18:32 PM,08/01/2014 02:20:00 PM,08/01/2014 02:22:55 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Code 2 Transport,08/01/2014 02:28:54 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",142131926-T03 -141391756,T08,14047672,Alarms,05/19/2014,05/19/2014,05/19/2014 01:42:30 PM,05/19/2014 01:44:50 PM,05/19/2014 01:46:09 PM,05/19/2014 01:47:51 PM,05/19/2014 01:47:51 PM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,Fire,05/19/2014 01:57:34 PM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,3,3,3,false,Alarm,1,TRUCK,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",141391756-T08 -151333739,AM20,15050622,Medical Incident,05/13/2015,05/13/2015,05/13/2015 08:33:26 PM,05/13/2015 08:34:53 PM,05/13/2015 08:35:38 PM,05/13/2015 08:36:06 PM,05/13/2015 08:47:28 PM,05/13/2015 09:01:40 PM,05/13/2015 09:12:59 PM,Code 2 Transport,05/13/2015 09:44:48 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151333739-AM20 -150523405,62,15020162,Medical Incident,02/21/2015,02/21/2015,02/21/2015 08:28:15 PM,02/21/2015 08:30:01 PM,02/21/2015 08:30:36 PM,02/21/2015 08:30:50 PM,02/21/2015 08:41:57 PM,02/21/2015 08:58:42 PM,02/21/2015 09:20:14 PM,Code 2 Transport,02/21/2015 09:52:37 PM,0 Block of SOUTHPARK AV,San Francisco,94107,B03,8,2153,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7822551330244, -122.392998702818)",150523405-62 -151831615,AM08,15069837,Medical Incident,07/02/2015,07/02/2015,07/02/2015 11:49:40 AM,07/02/2015 11:52:35 AM,07/02/2015 11:52:50 AM,07/02/2015 11:53:08 AM,07/02/2015 11:57:34 AM,07/02/2015 12:06:07 PM,07/02/2015 12:27:21 PM,Code 2 Transport,07/02/2015 12:52:50 PM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",151831615-AM08 -160981161,54,16038840,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:35:28 AM,04/07/2016 09:38:36 AM,04/07/2016 09:38:55 AM,04/07/2016 09:39:08 AM,04/07/2016 09:49:03 AM,04/07/2016 10:20:51 AM,04/07/2016 10:20:33 AM,Code 2 Transport,04/07/2016 11:01:33 AM,700 Block of FONT BLVD,San Francisco,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7228264884978, -122.483785839073)",160981161-54 -152213572,B02,15084381,Alarms,08/09/2015,08/09/2015,08/09/2015 09:30:03 PM,08/09/2015 09:31:13 PM,08/09/2015 09:32:48 PM,08/09/2015 09:33:33 PM,08/09/2015 09:36:34 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Fire,08/09/2015 09:40:13 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",152213572-B02 -160971013,64,16038341,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:19:45 AM,04/06/2016 09:20:28 AM,04/06/2016 09:20:47 AM,04/06/2016 09:20:58 AM,04/06/2016 09:29:52 AM,04/06/2016 09:50:05 AM,04/06/2016 10:22:15 AM,Code 2 Transport,04/06/2016 10:53:43 AM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",160971013-64 -150751546,56,15028766,Medical Incident,03/16/2015,03/16/2015,03/16/2015 12:15:18 PM,03/16/2015 12:15:18 PM,03/16/2015 12:15:26 PM,03/16/2015 12:16:26 PM,03/16/2015 12:19:29 PM,03/16/2015 12:22:59 PM,03/16/2015 12:34:56 PM,Code 2 Transport,03/16/2015 01:23:06 PM,1500 Block of MARKET ST,San Francisco,94103,B02,36,5117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7746823329875, -122.419666717917)",150751546-56 -151201122,E29,15045322,Medical Incident,04/30/2015,04/30/2015,04/30/2015 09:48:04 AM,04/30/2015 09:50:20 AM,04/30/2015 09:51:52 AM,04/30/2015 09:51:52 AM,04/30/2015 09:52:21 AM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,Code 2 Transport,04/30/2015 10:09:07 AM,600 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7627737268131, -122.417186682545)",151201122-E29 -160980508,89,16038784,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:14:56 AM,04/07/2016 05:16:45 AM,04/07/2016 05:16:59 AM,04/07/2016 05:18:04 AM,04/07/2016 05:25:37 AM,04/07/2016 05:31:36 AM,04/07/2016 05:42:03 AM,Code 2 Transport,04/07/2016 05:53:04 AM,100 Block of TOWNSEND ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7803556642385, -122.390747101617)",160980508-89 -160942884,71,16037370,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:12:49 PM,04/03/2016 06:13:46 PM,04/03/2016 06:13:58 PM,04/03/2016 06:14:03 PM,04/03/2016 06:24:08 PM,04/03/2016 06:41:26 PM,04/03/2016 07:10:19 PM,Code 2 Transport,04/03/2016 07:44:05 PM,0 Block of TUCKER AVE,San Francisco,94134,B09,44,6311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7155319865115, -122.404500268176)",160942884-71 -150111000,E13,15004302,Medical Incident,01/11/2015,01/11/2015,01/11/2015 08:47:37 AM,01/11/2015 08:47:37 AM,01/11/2015 08:48:50 AM,01/11/2015 08:50:42 AM,01/11/2015 08:53:32 AM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 2 Transport,01/11/2015 09:03:40 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",150111000-E13 -160921501,AM10,16036419,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:06:57 PM,04/01/2016 12:07:24 PM,04/01/2016 12:07:43 PM,04/01/2016 12:08:29 PM,04/01/2016 12:13:12 PM,04/01/2016 12:22:12 PM,04/01/2016 12:22:29 PM,Code 2 Transport,04/01/2016 01:19:39 PM,HYDE ST/CALIFORNIA ST,San Francisco,94109,B04,41,1562,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160921501-AM10 -160961625,KM04,16037995,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:11:36 PM,04/05/2016 12:12:29 PM,04/05/2016 12:22:59 PM,04/05/2016 12:24:10 PM,04/05/2016 12:31:36 PM,04/05/2016 12:48:56 PM,04/05/2016 01:05:20 PM,Code 2 Transport,04/05/2016 01:47:41 PM,500 Block of 9TH AVE,San Francisco,94118,B07,31,7134,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7780136978042, -122.4673562944)",160961625-KM04 -160950685,79,16037538,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:10:27 AM,04/04/2016 08:11:24 AM,04/04/2016 08:11:43 AM,04/04/2016 08:11:54 AM,04/04/2016 08:15:51 AM,04/04/2016 08:29:59 AM,04/04/2016 08:46:46 AM,Code 2 Transport,04/04/2016 09:13:08 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160950685-79 -141321057,E02,14044878,Structure Fire,05/12/2014,05/12/2014,05/12/2014 10:19:53 AM,05/12/2014 10:19:53 AM,05/12/2014 10:20:27 AM,05/12/2014 10:21:53 AM,05/12/2014 10:24:34 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Fire,05/12/2014 10:24:51 AM,GRANT AV/CALIFORNIA ST,San Francisco,94108,B01,13,1314,3,3,3,false,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",141321057-E02 -150412831,E38,15016080,Medical Incident,02/10/2015,02/10/2015,02/10/2015 05:53:12 PM,02/10/2015 05:55:41 PM,02/10/2015 05:56:15 PM,02/10/2015 05:57:18 PM,02/10/2015 06:01:55 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Code 2 Transport,02/10/2015 06:24:28 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",150412831-E38 -152943544,E03,15113140,Alarms,10/21/2015,10/21/2015,10/21/2015 08:40:14 PM,10/21/2015 08:42:08 PM,10/21/2015 08:42:20 PM,10/21/2015 08:44:38 PM,10/21/2015 08:46:56 PM,04/25/2016 01:07:38 PM,04/25/2016 01:07:38 PM,Fire,10/21/2015 08:55:49 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",152943544-E03 -152923930,E42,15112409,Traffic Collision,10/19/2015,10/19/2015,10/19/2015 11:15:19 PM,10/19/2015 11:19:21 PM,10/19/2015 11:20:47 PM,10/19/2015 11:23:31 PM,10/19/2015 11:24:52 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Code 2 Transport,10/19/2015 11:42:38 PM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6362,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",152923930-E42 -160952270,53,16037660,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:43:58 PM,04/04/2016 02:44:26 PM,04/04/2016 02:44:56 PM,04/04/2016 02:45:06 PM,04/04/2016 02:47:46 PM,04/04/2016 03:02:54 PM,04/04/2016 03:19:36 PM,Code 2 Transport,04/04/2016 03:34:44 PM,GOLDEN GATE AV/HYDE ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",160952270-53 -151870464,54,15071272,Medical Incident,07/06/2015,07/05/2015,07/06/2015 06:05:22 AM,07/06/2015 06:06:41 AM,07/06/2015 06:06:54 AM,07/06/2015 06:07:06 AM,07/06/2015 06:13:33 AM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Patient Declined Transport,07/06/2015 06:44:59 AM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",151870464-54 -150282582,AP,15010826,Other,01/28/2015,01/28/2015,01/28/2015 04:12:01 PM,01/28/2015 04:12:01 PM,01/28/2015 04:12:01 PM,01/28/2015 04:12:01 PM,01/28/2015 04:12:01 PM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,Fire,01/28/2015 04:12:39 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",150282582-AP -143590146,62,14128312,Medical Incident,12/25/2014,12/24/2014,12/25/2014 01:18:20 AM,12/25/2014 01:20:09 AM,12/25/2014 01:20:30 AM,12/25/2014 01:20:37 AM,12/25/2014 01:26:56 AM,12/25/2014 01:40:36 AM,12/25/2014 01:49:00 AM,Code 3 Transport,12/25/2014 02:27:51 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803099082814, -122.407975093043)",143590146-62 -150630710,E13,15023955,Medical Incident,03/04/2015,03/03/2015,03/04/2015 07:39:08 AM,03/04/2015 07:43:48 AM,03/04/2015 08:29:19 AM,03/04/2015 08:30:38 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 08:33:52 AM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Chinatown,"(37.7977792275329, -122.407827984258)",150630710-E13 -141080309,E23,14036512,Medical Incident,04/18/2014,04/18/2014,04/18/2014 06:13:38 PM,04/18/2014 06:15:20 PM,04/18/2014 06:15:37 PM,04/18/2014 06:17:04 PM,04/18/2014 06:18:25 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Code 2 Transport,04/18/2014 06:33:18 PM,1300 Block of 46TH AVE,SAN FRANCISCO,94122,B08,23,7721,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7613577781783, -122.505924512458)",141080309-E23 -150722210,E06,15027551,Medical Incident,03/13/2015,03/13/2015,03/13/2015 02:28:46 PM,03/13/2015 02:31:21 PM,03/13/2015 02:32:25 PM,03/13/2015 02:35:17 PM,03/13/2015 02:36:05 PM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Code 2 Transport,03/13/2015 02:50:48 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",150722210-E06 -160981968,KM09,16038924,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:11:51 PM,04/07/2016 01:12:15 PM,04/07/2016 01:13:07 PM,04/07/2016 01:13:32 PM,04/07/2016 01:17:04 PM,04/07/2016 01:34:56 PM,04/07/2016 01:39:55 PM,Code 3 Transport,04/07/2016 02:36:41 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",160981968-KM09 -142190392,E09,14075847,Structure Fire,08/07/2014,08/06/2014,08/07/2014 04:29:02 AM,08/07/2014 04:29:02 AM,08/07/2014 04:30:05 AM,08/07/2014 04:32:35 AM,08/07/2014 04:35:57 AM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,Fire,08/07/2014 04:44:23 AM,2700 Block of BRYANT ST,San Francisco,94110,B06,9,553,3,3,3,true,Alarm,1,ENGINE,3,6,9,Mission,"(37.750396573149, -122.408970541511)",142190392-E09 -141991207,E06,14068846,Medical Incident,07/18/2014,07/18/2014,07/18/2014 10:49:26 AM,07/18/2014 10:50:30 AM,07/18/2014 10:51:39 AM,07/18/2014 10:56:37 AM,07/18/2014 11:00:51 AM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Code 2 Transport,07/18/2014 11:05:56 AM,400 Block of LILY ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7739147499901, -122.427942284187)",141991207-E06 -160984037,61,16039143,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:08:43 PM,04/07/2016 11:10:24 PM,04/07/2016 11:10:40 PM,04/07/2016 11:11:45 PM,04/07/2016 11:21:49 PM,04/07/2016 11:33:30 PM,04/07/2016 11:47:22 PM,Code 2 Transport,04/08/2016 12:21:56 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160984037-61 -151833557,KM11,15070003,Traffic Collision,07/02/2015,07/02/2015,07/02/2015 07:45:05 PM,07/02/2015 07:45:05 PM,07/02/2015 07:47:31 PM,07/02/2015 07:48:03 PM,07/02/2015 08:02:01 PM,07/02/2015 08:13:13 PM,07/02/2015 08:13:33 PM,Code 3 Transport,07/02/2015 09:01:10 PM,FOLSOM ST/9TH ST,San Francisco,94103,B02,36,2343,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,7,2,6,South of Market,"(37.7737693455048, -122.411610116682)",151833557-KM11 -151312155,E14,15049748,Medical Incident,05/11/2015,05/11/2015,05/11/2015 02:43:13 PM,05/11/2015 02:44:59 PM,05/11/2015 02:47:12 PM,05/11/2015 02:48:13 PM,05/11/2015 02:50:34 PM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,Cancelled,05/11/2015 02:53:45 PM,500 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7777197046394, -122.473834612431)",151312155-E14 -160973776,AM16,16038628,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:12:42 PM,04/06/2016 07:15:32 PM,04/06/2016 07:17:01 PM,04/06/2016 07:27:09 PM,04/06/2016 07:27:09 PM,04/06/2016 07:37:57 PM,04/06/2016 08:03:22 PM,Code 2 Transport,04/06/2016 08:10:42 PM,3400 Block of 19TH ST,San Francisco,94110,B06,7,5434,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7601573650684, -122.41958524775)",160973776-AM16 -152274224,E23,15086759,Medical Incident,08/15/2015,08/15/2015,08/15/2015 10:55:40 PM,08/15/2015 10:57:05 PM,08/15/2015 10:57:23 PM,08/15/2015 10:59:00 PM,08/15/2015 11:01:48 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Code 2 Transport,08/15/2015 11:24:09 PM,1200 Block of 40TH AVE,San Francisco,94122,B08,23,7627,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7635126167767, -122.499624471473)",152274224-E23 -160981833,65,16038913,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:31:46 PM,04/07/2016 12:33:00 PM,04/07/2016 12:34:58 PM,04/07/2016 12:35:04 PM,04/07/2016 12:47:11 PM,04/07/2016 01:00:41 PM,04/07/2016 01:05:40 PM,Code 2 Transport,04/07/2016 01:40:41 PM,POLK ST/ELLIS ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",160981833-65 -142901293,E02,14102198,Medical Incident,10/17/2014,10/17/2014,10/17/2014 11:08:06 AM,10/17/2014 11:09:10 AM,10/17/2014 11:11:11 AM,10/17/2014 11:11:25 AM,10/17/2014 11:13:38 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Patient Declined Transport,10/17/2014 11:25:11 AM,300 Block of JEFFERSON ST,San Francisco,94133,B01,28,1524,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.807853999752, -122.418254964437)",142901293-E02 -151310072,E11,15049527,Structure Fire,05/11/2015,05/10/2015,05/11/2015 12:36:01 AM,05/11/2015 12:36:16 AM,05/11/2015 12:36:22 AM,05/11/2015 12:38:33 AM,05/11/2015 12:38:33 AM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Fire,05/11/2015 12:46:57 AM,2900 Block of MISSION ST,San Francisco,94110,B06,11,561,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.749836317622, -122.418280538883)",151310072-E11 -142673480,T03,14093661,Citizen Assist / Service Call,09/24/2014,09/24/2014,09/24/2014 08:02:33 PM,09/24/2014 08:04:36 PM,09/24/2014 08:04:59 PM,09/24/2014 08:06:39 PM,09/24/2014 08:08:26 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Fire,09/24/2014 08:16:45 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",142673480-T03 -161003137,77,16039939,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:05:24 PM,04/09/2016 09:07:01 PM,04/09/2016 09:07:25 PM,04/09/2016 09:07:40 PM,04/09/2016 09:17:21 PM,04/09/2016 09:38:28 PM,04/09/2016 09:42:18 PM,Code 2 Transport,04/09/2016 10:19:21 PM,2000 Block of HAYES ST,San Francisco,94117,B05,21,4523,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7733660129603, -122.45013888651)",161003137-77 -150852003,B04,15032449,Alarms,03/26/2015,03/26/2015,03/26/2015 01:48:04 PM,03/26/2015 01:49:25 PM,03/26/2015 01:49:39 PM,03/26/2015 01:50:33 PM,03/26/2015 01:53:29 PM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Fire,03/26/2015 02:02:57 PM,3400 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4422,3,3,3,false,Alarm,1,CHIEF,3,4,2,Presidio Heights,"(37.7879259430405, -122.449490749024)",150852003-B04 -150863882,E06,15033037,Alarms,03/27/2015,03/27/2015,03/27/2015 10:41:49 PM,03/27/2015 10:43:17 PM,03/27/2015 10:43:24 PM,03/27/2015 10:44:02 PM,03/27/2015 10:45:24 PM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Fire,03/27/2015 10:50:15 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150863882-E06 -141170159,55,14039481,Medical Incident,04/27/2014,04/27/2014,04/27/2014 12:15:45 PM,04/27/2014 12:16:09 PM,04/27/2014 12:16:24 PM,04/27/2014 12:19:03 PM,04/27/2014 12:28:44 PM,04/27/2014 12:41:51 PM,04/27/2014 12:55:20 PM,Code 2 Transport,04/27/2014 01:34:23 PM,CHESTNUT ST/BUCHANAN ST,SAN FRANCISCO,94123,B04,16,3445,,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8012356976907, -122.432957626885)",141170159-55 -151310391,68,15049568,Medical Incident,05/11/2015,05/10/2015,05/11/2015 06:09:00 AM,05/11/2015 06:09:00 AM,05/11/2015 06:09:30 AM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Code 2 Transport,05/11/2015 06:09:41 AM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",151310391-68 -153000104,E28,15114982,Alarms,10/27/2015,10/26/2015,10/27/2015 12:45:10 AM,10/27/2015 12:46:28 AM,10/27/2015 12:46:38 AM,10/27/2015 12:48:12 AM,10/27/2015 12:51:11 AM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Fire,10/27/2015 12:55:40 AM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",153000104-E28 -142562497,E38,14089487,Medical Incident,09/13/2014,09/13/2014,09/13/2014 04:15:35 PM,09/13/2014 04:16:18 PM,09/13/2014 04:16:50 PM,09/13/2014 04:18:02 PM,09/13/2014 04:20:57 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/13/2014 04:21:49 PM,1600 Block of VAN NESS AVE,San Francisco,94109,B04,38,3155,2,2,2,false,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7908098690342, -122.422593273694)",142562497-E38 -142552676,79,14089108,Medical Incident,09/12/2014,09/12/2014,09/12/2014 05:21:52 PM,09/12/2014 05:22:38 PM,09/12/2014 05:24:48 PM,09/12/2014 05:24:48 PM,09/12/2014 05:31:47 PM,09/12/2014 05:40:05 PM,09/12/2014 05:48:17 PM,Code 2 Transport,09/12/2014 06:15:42 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",142552676-79 -141852148,E31,14064095,Medical Incident,07/04/2014,07/04/2014,07/04/2014 05:06:43 PM,07/04/2014 05:08:06 PM,07/04/2014 05:09:19 PM,07/04/2014 05:11:00 PM,07/04/2014 05:15:42 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Code 2 Transport,07/04/2014 06:11:01 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7694537012686, -122.469609049655)",141852148-E31 -150402277,E03,15015649,Medical Incident,02/09/2015,02/09/2015,02/09/2015 03:16:23 PM,02/09/2015 03:16:55 PM,02/09/2015 03:17:14 PM,02/09/2015 03:18:01 PM,02/09/2015 03:20:53 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/09/2015 03:30:55 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",150402277-E03 -150942840,E42,15035833,Medical Incident,04/04/2015,04/04/2015,04/04/2015 06:09:20 PM,04/04/2015 06:11:00 PM,04/04/2015 06:11:31 PM,04/04/2015 06:13:20 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 06:14:26 PM,200 Block of MAYNARD ST,San Francisco,94112,B09,32,5683,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7295080178827, -122.424915560486)",150942840-E42 -143222648,74,14114101,Medical Incident,11/18/2014,11/18/2014,11/18/2014 05:13:14 PM,11/18/2014 05:14:32 PM,11/18/2014 05:14:52 PM,11/18/2014 05:14:59 PM,11/18/2014 05:28:41 PM,11/18/2014 05:42:52 PM,11/18/2014 06:02:26 PM,Code 2 Transport,11/18/2014 06:45:52 PM,MARKET ST/9TH ST,San Francisco,94103,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",143222648-74 -160962543,KM05,16038075,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:48:35 PM,04/05/2016 03:49:59 PM,04/05/2016 03:50:14 PM,04/05/2016 03:50:38 PM,04/05/2016 03:59:06 PM,04/05/2016 04:05:17 PM,04/05/2016 04:14:55 PM,Code 2 Transport,04/05/2016 04:46:01 PM,1300 Block of FULTON ST,San Francisco,94117,B05,21,4243,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7768041861121, -122.439021582946)",160962543-KM05 -153400443,E02,15130716,Alarms,12/06/2015,12/05/2015,12/06/2015 03:04:48 AM,12/06/2015 03:06:40 AM,12/06/2015 03:07:17 AM,12/06/2015 03:07:35 AM,12/06/2015 03:10:58 AM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Fire,12/06/2015 04:16:21 AM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",153400443-E02 -151541115,52,15058602,Medical Incident,06/03/2015,06/03/2015,06/03/2015 09:46:36 AM,06/03/2015 09:46:36 AM,06/03/2015 09:50:51 AM,06/03/2015 09:50:51 AM,06/03/2015 09:54:55 AM,06/03/2015 09:57:33 AM,06/03/2015 10:29:11 AM,Code 2 Transport,06/03/2015 11:07:35 AM,3RD ST/WALLACE AV,San Francisco,94124,B10,17,6536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.728489580525, -122.392899420759)",151541115-52 -161001906,AM02,16039795,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:43:41 PM,04/09/2016 02:44:26 PM,04/09/2016 02:44:44 PM,04/09/2016 02:45:17 PM,04/09/2016 02:54:32 PM,04/09/2016 03:08:41 PM,04/09/2016 03:47:19 PM,Code 2 Transport,04/09/2016 04:19:29 PM,0 Block of REARDON RD,San Francisco,94124,B10,17,6625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7294970477126, -122.37690786669)",161001906-AM02 -142441477,E12,14085004,Traffic Collision,09/01/2014,09/01/2014,09/01/2014 12:26:40 PM,09/01/2014 12:28:53 PM,09/01/2014 12:29:53 PM,09/01/2014 12:31:03 PM,09/01/2014 12:32:17 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 2 Transport,09/01/2014 12:48:10 PM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",142441477-E12 -143262126,E17,14115524,Medical Incident,11/22/2014,11/22/2014,11/22/2014 02:17:19 PM,11/22/2014 02:18:19 PM,11/22/2014 02:19:38 PM,11/22/2014 02:20:42 PM,11/22/2014 02:23:32 PM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Code 2 Transport,11/22/2014 02:49:00 PM,5100 Block of 3RD ST,San Francisco,94124,B10,17,6514,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7312770805905, -122.392068063625)",143262126-E17 -141861302,KM10,14064383,Medical Incident,07/05/2014,07/05/2014,07/05/2014 10:39:28 AM,07/05/2014 10:40:14 AM,07/05/2014 10:40:34 AM,07/05/2014 10:41:06 AM,07/05/2014 10:50:22 AM,07/05/2014 11:05:06 AM,07/05/2014 11:10:27 AM,Code 2 Transport,07/05/2014 11:43:26 AM,1600 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7916541828949, -122.420058319923)",141861302-KM10 -152733567,B09,15104672,Structure Fire,09/30/2015,09/30/2015,09/30/2015 09:13:57 PM,09/30/2015 09:13:57 PM,09/30/2015 09:14:32 PM,09/30/2015 09:15:27 PM,09/30/2015 09:18:02 PM,04/25/2016 01:08:02 PM,04/25/2016 01:08:02 PM,Fire,09/30/2015 09:29:06 PM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,false,Alarm,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152733567-B09 -152771640,KM13,15106212,Medical Incident,10/04/2015,10/04/2015,10/04/2015 12:25:28 PM,10/04/2015 12:25:28 PM,10/04/2015 12:26:28 PM,10/04/2015 12:26:53 PM,10/04/2015 12:41:28 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Patient Declined Transport,10/04/2015 01:29:47 PM,300 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",152771640-KM13 -160943514,AM16,16037441,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:59:59 PM,04/03/2016 10:01:10 PM,04/03/2016 10:01:48 PM,04/03/2016 10:02:55 PM,04/03/2016 10:11:06 PM,04/03/2016 10:18:54 PM,04/03/2016 10:30:23 PM,Code 2 Transport,04/03/2016 10:52:12 PM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",160943514-AM16 -142542907,AM26,14088763,Medical Incident,09/11/2014,09/11/2014,09/11/2014 06:24:02 PM,09/11/2014 06:25:17 PM,09/11/2014 06:26:07 PM,09/11/2014 06:26:48 PM,09/11/2014 06:33:50 PM,09/11/2014 06:52:02 PM,09/11/2014 07:03:29 PM,Code 2 Transport,09/11/2014 07:35:56 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",142542907-AM26 -160983202,RC1,16039067,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:37:01 PM,04/07/2016 06:37:32 PM,04/07/2016 06:46:10 PM,04/07/2016 06:46:10 PM,04/07/2016 06:49:51 PM,04/07/2016 07:06:06 PM,04/07/2016 07:11:55 PM,Code 2 Transport,04/07/2016 07:26:04 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160983202-RC1 -150382224,56,15014819,Medical Incident,02/07/2015,02/07/2015,02/07/2015 03:10:39 PM,02/07/2015 03:10:39 PM,02/07/2015 03:11:05 PM,02/07/2015 03:11:40 PM,02/07/2015 03:15:16 PM,02/07/2015 03:26:46 PM,02/07/2015 03:48:20 PM,Code 2 Transport,02/07/2015 04:55:52 PM,FILLMORE ST/POST ST,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7851509392156, -122.433083400235)",150382224-56 -141381387,E29,14047255,Traffic Collision,05/18/2014,05/18/2014,05/18/2014 11:29:11 AM,05/18/2014 11:29:48 AM,05/18/2014 11:34:07 AM,05/18/2014 11:35:20 AM,05/18/2014 11:37:27 AM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Code 2 Transport,05/18/2014 11:59:48 AM,9TH ST/HARRISON ST,San Francisco,94103,B03,29,2333,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7725264425971, -122.410076850083)",141381387-E29 -160962210,KM08,16038046,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:27:58 PM,04/05/2016 02:30:29 PM,04/05/2016 02:31:38 PM,04/05/2016 02:32:09 PM,04/05/2016 02:45:57 PM,04/05/2016 03:11:42 PM,04/05/2016 03:32:25 PM,Code 2 Transport,04/05/2016 04:05:42 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160962210-KM08 -160940129,62,16037106,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:39:09 AM,04/03/2016 12:40:33 AM,04/03/2016 12:40:45 AM,04/03/2016 12:40:53 AM,04/03/2016 12:46:08 AM,04/03/2016 01:03:55 AM,04/03/2016 01:34:36 AM,Code 2 Transport,04/03/2016 02:00:20 AM,1300 Block of 35TH AVE,San Francisco,94122,B08,23,7564,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7618724655505, -122.494274168693)",160940129-62 -161001779,61,16039783,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:00:14 PM,04/09/2016 02:00:42 PM,04/09/2016 02:01:12 PM,04/09/2016 02:01:29 PM,04/09/2016 02:06:52 PM,04/09/2016 02:22:38 PM,04/09/2016 02:28:56 PM,Code 2 Transport,04/09/2016 03:06:11 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",161001779-61 -152474433,E03,15094466,Structure Fire,09/04/2015,09/04/2015,09/04/2015 11:08:15 PM,09/04/2015 11:08:15 PM,09/04/2015 11:08:51 PM,09/04/2015 11:10:20 PM,09/04/2015 11:11:22 PM,04/25/2016 01:08:32 PM,04/25/2016 01:08:32 PM,Fire,09/04/2015 11:12:18 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",152474433-E03 -151413254,T03,15053711,Alarms,05/21/2015,05/21/2015,05/21/2015 06:30:13 PM,05/21/2015 06:31:39 PM,05/21/2015 06:31:47 PM,05/21/2015 06:33:03 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 06:36:21 PM,1900 Block of JACKSON ST,San Francisco,94109,B04,38,3252,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7934665720195, -122.427170164466)",151413254-T03 -151572732,76,15060038,Medical Incident,06/06/2015,06/06/2015,06/06/2015 05:52:45 PM,06/06/2015 05:53:31 PM,06/06/2015 05:53:41 PM,06/06/2015 05:54:03 PM,06/06/2015 06:00:10 PM,06/06/2015 06:14:25 PM,06/06/2015 06:42:56 PM,Code 2 Transport,06/06/2015 07:24:26 PM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",151572732-76 -152161732,T02,15082243,Other,08/04/2015,08/04/2015,08/04/2015 01:10:12 PM,08/04/2015 01:14:12 PM,08/04/2015 01:14:44 PM,08/04/2015 01:16:31 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/04/2015 01:25:31 PM,900 Block of BEACH ST,San Francisco,94109,B01,28,3135,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.806210458565, -122.424360355387)",152161732-T02 -141653521,T01,14057084,Medical Incident,06/14/2014,06/14/2014,06/14/2014 10:24:48 PM,06/14/2014 10:26:13 PM,06/14/2014 10:28:33 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Code 2 Transport,06/14/2014 10:30:35 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",141653521-T01 -160923509,78,16036612,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:15:57 PM,04/01/2016 09:17:51 PM,04/01/2016 09:19:16 PM,04/01/2016 09:19:25 PM,04/01/2016 09:40:26 PM,04/01/2016 10:17:41 PM,04/01/2016 10:40:00 PM,Code 2 Transport,04/01/2016 11:22:32 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160923509-78 -152852767,E29,15109507,Outside Fire,10/12/2015,10/12/2015,10/12/2015 04:46:25 PM,10/12/2015 04:46:25 PM,10/12/2015 04:46:25 PM,10/12/2015 04:46:25 PM,10/12/2015 04:46:25 PM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/12/2015 04:51:44 PM,9TH ST/DIVISION ST,San Francisco,94103,B02,29,2331,3,3,3,true,Fire,1,ENGINE,1,2,10,Mission,"(37.7694625463697, -122.406213364615)",152852767-E29 -151153778,63,15043642,Medical Incident,04/25/2015,04/25/2015,04/25/2015 11:35:01 PM,04/25/2015 11:35:01 PM,04/25/2015 11:35:01 PM,04/25/2015 11:35:01 PM,04/25/2015 11:35:01 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Fire,04/25/2015 11:36:57 PM,900 Block of HYDE ST,San Francisco,94109,B99,3,1561,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",151153778-63 -142301816,E32,14079911,Medical Incident,08/18/2014,08/18/2014,08/18/2014 01:19:42 PM,08/18/2014 01:19:42 PM,08/18/2014 01:19:58 PM,08/18/2014 01:20:36 PM,08/18/2014 01:22:54 PM,04/25/2016 01:15:35 PM,04/25/2016 01:15:35 PM,Code 2 Transport,08/18/2014 01:38:47 PM,100 Block of JARBOE AVE,San Francisco,94110,B06,32,5732,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7384898787619, -122.41552789353)",142301816-E32 -160932722,53,16036967,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:35:30 PM,04/02/2016 05:37:12 PM,04/02/2016 05:46:14 PM,04/02/2016 05:47:02 PM,04/02/2016 05:54:12 PM,04/02/2016 06:03:01 PM,04/02/2016 06:23:48 PM,Code 3 Transport,04/02/2016 07:03:38 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160932722-53 -161002915,KM12,16039909,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:56:06 PM,04/09/2016 07:58:15 PM,04/09/2016 07:59:17 PM,04/09/2016 08:00:57 PM,04/09/2016 08:13:06 PM,04/09/2016 08:19:12 PM,04/09/2016 08:47:02 PM,Code 2 Transport,04/09/2016 08:47:39 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",161002915-KM12 -141661903,E32,14057312,Alarms,06/15/2014,06/15/2014,06/15/2014 03:29:40 PM,06/15/2014 03:32:20 PM,06/15/2014 03:32:45 PM,06/15/2014 03:34:07 PM,06/15/2014 03:36:31 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Cancelled,06/15/2014 03:36:42 PM,0 Block of MAYNARD ST,San Francisco,94112,B09,32,6113,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7291642311889, -122.42954335067)",141661903-E32 -152351281,E26,15089544,Medical Incident,08/23/2015,08/23/2015,08/23/2015 10:42:32 AM,08/23/2015 10:43:49 AM,08/23/2015 10:44:13 AM,08/23/2015 10:46:06 AM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Code 2 Transport,08/23/2015 11:43:56 AM,0 Block of BERKELEY WAY,San Francisco,94131,B06,26,8173,2,3,3,true,Non Life-threatening,1,ENGINE,2,6,8,Glen Park,"(37.7388992785275, -122.437885215201)",152351281-E26 -152312708,E22,15088208,Medical Incident,08/19/2015,08/19/2015,08/19/2015 04:28:20 PM,08/19/2015 04:33:37 PM,08/19/2015 04:34:09 PM,08/19/2015 04:35:28 PM,08/19/2015 04:39:07 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Code 2 Transport,08/19/2015 04:57:44 PM,LINCOLN WY/24TH AV,San Francisco,94122,B08,22,7452,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7652098273516, -122.482614553943)",152312708-E22 -141843258,E01,14063839,Medical Incident,07/03/2014,07/03/2014,07/03/2014 09:12:44 PM,07/03/2014 09:12:44 PM,07/03/2014 09:18:16 PM,07/03/2014 09:18:28 PM,07/03/2014 09:24:43 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/03/2014 09:27:48 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",141843258-E01 -150062168,RS1,15002335,Medical Incident,01/06/2015,01/06/2015,01/06/2015 03:10:52 PM,01/06/2015 03:11:49 PM,01/06/2015 03:12:30 PM,01/06/2015 03:13:32 PM,01/06/2015 03:16:11 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Code 2 Transport,01/06/2015 03:23:59 PM,0 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,South of Market,"(37.7795700115888, -122.411484015918)",150062168-RS1 -142883494,87,14101656,Medical Incident,10/15/2014,10/15/2014,10/15/2014 08:43:38 PM,10/15/2014 08:44:09 PM,10/15/2014 08:44:32 PM,10/15/2014 08:44:41 PM,10/15/2014 09:01:46 PM,10/15/2014 09:31:50 PM,10/15/2014 10:03:25 PM,Code 2 Transport,10/15/2014 10:40:05 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",142883494-87 -152540475,E03,15096983,Medical Incident,09/11/2015,09/10/2015,09/11/2015 05:50:45 AM,09/11/2015 05:53:14 AM,09/11/2015 05:53:23 AM,09/11/2015 05:55:16 AM,09/11/2015 05:58:35 AM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,No Merit,09/11/2015 06:06:13 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",152540475-E03 -141660859,E02,14057197,Administrative,06/15/2014,06/15/2014,06/15/2014 09:19:48 AM,06/15/2014 09:20:02 AM,06/15/2014 09:20:55 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Fire,06/15/2014 09:28:33 AM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",141660859-E02 -160963004,53,16038117,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:32:06 PM,04/05/2016 05:32:06 PM,04/05/2016 05:32:53 PM,04/05/2016 05:32:53 PM,04/05/2016 05:32:53 PM,04/05/2016 05:41:01 PM,04/05/2016 05:57:20 PM,Code 2 Transport,04/05/2016 06:16:06 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",160963004-53 -150520127,T10,15019889,Alarms,02/21/2015,02/20/2015,02/21/2015 12:38:46 AM,02/21/2015 12:38:46 AM,02/21/2015 12:39:13 AM,02/21/2015 12:41:01 AM,02/21/2015 12:43:52 AM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Fire,02/21/2015 12:51:59 AM,100 Block of ARGUELLO BLVD,San Francisco,94118,B07,10,4445,3,3,3,false,Alarm,1,TRUCK,1,7,2,Inner Richmond,"(37.7872141377473, -122.459370613431)",150520127-T10 -160932631,76,16036958,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:14:04 PM,04/02/2016 05:15:15 PM,04/02/2016 05:15:37 PM,04/02/2016 05:15:52 PM,04/02/2016 05:25:27 PM,04/02/2016 05:39:58 PM,04/02/2016 05:47:55 PM,Code 2 Transport,04/02/2016 06:11:06 PM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160932631-76 -152720938,E17,15104063,Medical Incident,09/29/2015,09/29/2015,09/29/2015 09:17:50 AM,09/29/2015 09:20:09 AM,09/29/2015 09:20:15 AM,09/29/2015 09:23:38 AM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Patient Declined Transport,09/29/2015 09:27:22 AM,3RD ST/PALOU AV,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",152720938-E17 -160941607,KM06,16037245,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:51:44 AM,04/03/2016 11:51:44 AM,04/03/2016 11:52:11 AM,04/03/2016 11:52:57 AM,04/03/2016 11:56:31 AM,04/03/2016 12:14:07 PM,04/03/2016 12:22:31 PM,Code 2 Transport,04/03/2016 12:50:13 PM,GOLDEN GATE AV/TAYLOR ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160941607-KM06 -150702917,T03,15026828,Structure Fire,03/11/2015,03/11/2015,03/11/2015 05:39:52 PM,03/11/2015 05:39:56 PM,03/11/2015 05:40:28 PM,03/11/2015 05:41:40 PM,04/25/2016 01:11:47 PM,04/25/2016 01:11:47 PM,04/25/2016 01:11:47 PM,Fire,03/11/2015 05:43:18 PM,LEAVENWORTH ST/OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",150702917-T03 -160970780,52,16038309,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:14:26 AM,04/06/2016 08:16:33 AM,04/06/2016 08:17:52 AM,04/06/2016 08:18:22 AM,04/06/2016 08:32:32 AM,04/06/2016 08:45:18 AM,04/06/2016 09:22:54 AM,Code 2 Transport,04/06/2016 09:45:21 AM,200 Block of CHESTER AVE,San Francisco,94132,B09,33,8412,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7114157201308, -122.470499531884)",160970780-52 -160942180,KM08,16037299,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:40:24 PM,04/03/2016 02:48:20 PM,04/03/2016 02:52:32 PM,04/03/2016 02:54:29 PM,04/03/2016 03:13:54 PM,04/03/2016 03:38:12 PM,04/03/2016 03:57:41 PM,Code 2 Transport,04/03/2016 04:23:20 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",160942180-KM08 -141503074,E35,14051678,Structure Fire,05/30/2014,05/30/2014,05/30/2014 08:29:33 PM,05/30/2014 08:30:48 PM,05/30/2014 08:31:27 PM,05/30/2014 08:32:33 PM,05/30/2014 08:34:21 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 08:44:35 PM,2ND ST/HOWARD ST,San Francisco,94105,B03,1,2146,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7867789486792, -122.398256963317)",141503074-E35 -152910163,70,15111646,Medical Incident,10/18/2015,10/17/2015,10/18/2015 12:57:52 AM,10/18/2015 12:57:52 AM,10/18/2015 12:58:19 AM,10/18/2015 12:58:27 AM,10/18/2015 01:04:35 AM,10/18/2015 01:24:10 AM,10/18/2015 01:41:13 AM,Code 2 Transport,10/18/2015 02:13:08 AM,4100 Block of 18TH ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7608016861704, -122.435552336885)",152910163-70 -152813756,E01,15108023,Structure Fire,10/08/2015,10/08/2015,10/08/2015 09:14:14 PM,10/08/2015 09:15:05 PM,10/08/2015 09:15:19 PM,10/08/2015 09:15:31 PM,10/08/2015 09:15:31 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Fire,10/08/2015 09:52:45 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,A,2,true,Alarm,1,ENGINE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",152813756-E01 -152752319,E13,15105389,Traffic Collision,10/02/2015,10/02/2015,10/02/2015 03:17:18 PM,10/02/2015 03:17:18 PM,10/02/2015 03:17:56 PM,10/02/2015 03:18:52 PM,10/02/2015 03:21:08 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,Against Medical Advice,10/02/2015 03:46:36 PM,SACRAMENTO ST/MONTGOMERY ST,San Francisco,94104,B01,13,1166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7937798566723, -122.402957361388)",152752319-E13 -143123658,53,14110695,Medical Incident,11/08/2014,11/08/2014,11/08/2014 10:00:51 PM,11/08/2014 10:02:33 PM,11/08/2014 10:03:14 PM,11/08/2014 10:03:25 PM,11/08/2014 10:07:52 PM,11/08/2014 10:22:41 PM,11/08/2014 10:34:47 PM,Code 2 Transport,11/08/2014 10:55:38 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",143123658-53 -141250223,E41,14042371,Alarms,05/05/2014,05/05/2014,05/05/2014 01:13:09 PM,05/05/2014 01:14:47 PM,05/05/2014 01:15:23 PM,05/05/2014 01:16:26 PM,05/05/2014 01:17:43 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 01:28:08 PM,1200 Block of CALIFORNIA ST,SAN FRANCISCO,94109,B01,41,1541,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",141250223-E41 -153040225,RS1,15116493,Medical Incident,10/31/2015,10/30/2015,10/31/2015 01:11:32 AM,10/31/2015 01:13:32 AM,10/31/2015 01:13:49 AM,10/31/2015 01:17:36 AM,10/31/2015 01:18:12 AM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,No Merit,10/31/2015 01:20:31 AM,MISSION ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",153040225-RS1 -161003253,68,16039951,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:43:04 PM,04/09/2016 09:43:21 PM,04/09/2016 09:45:54 PM,04/09/2016 09:46:04 PM,04/09/2016 09:47:21 PM,04/09/2016 10:02:45 PM,04/09/2016 10:23:03 PM,Code 2 Transport,04/09/2016 10:59:43 PM,1000 Block of CAPP ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7499099820999, -122.417055896284)",161003253-68 -160960611,60,16037907,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:47:36 AM,04/05/2016 07:49:21 AM,04/05/2016 07:49:52 AM,04/05/2016 07:50:11 AM,04/05/2016 08:10:41 AM,04/05/2016 08:26:04 AM,04/05/2016 09:07:26 AM,Other,04/05/2016 09:49:12 AM,1500 Block of GREAT HWY,San Francisco,94122,B08,23,7724,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7574877093047, -122.508938004244)",160960611-60 -151320645,E06,15049977,Medical Incident,05/12/2015,05/11/2015,05/12/2015 07:37:08 AM,05/12/2015 07:38:11 AM,05/12/2015 07:39:15 AM,05/12/2015 07:41:32 AM,05/12/2015 07:43:07 AM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,Code 2 Transport,05/12/2015 07:53:09 AM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",151320645-E06 -152133295,E19,15081274,Structure Fire,08/01/2015,08/01/2015,08/01/2015 08:29:41 PM,08/01/2015 08:29:41 PM,08/01/2015 08:29:57 PM,08/01/2015 08:31:15 PM,08/01/2015 08:33:04 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Fire,08/01/2015 08:43:27 PM,EUCALYPTUS DR/SYLVAN DR,San Francisco,94132,B08,19,8743,3,3,3,true,Alarm,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",152133295-E19 -160930253,53,16036691,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:42:10 AM,04/02/2016 01:43:59 AM,04/02/2016 01:44:08 AM,04/02/2016 01:44:21 AM,04/02/2016 01:56:09 AM,04/02/2016 02:14:29 AM,04/02/2016 02:30:00 AM,Code 3 Transport,04/02/2016 03:29:46 AM,200 Block of LAKE MERCED HILL ST,San Francisco,94132,B08,19,8777,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7130437838335, -122.483644013853)",160930253-53 -150461555,KM11,15017871,Medical Incident,02/15/2015,02/15/2015,02/15/2015 12:06:57 PM,02/15/2015 12:08:15 PM,02/15/2015 12:08:37 PM,02/15/2015 12:09:18 PM,02/15/2015 12:15:36 PM,02/15/2015 12:24:18 PM,02/15/2015 12:55:57 PM,Code 2 Transport,02/15/2015 01:31:33 PM,1000 Block of INGERSON AVE,San Francisco,94124,B10,17,6612,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7196891289383, -122.393876588978)",150461555-KM11 -141412823,77,14048432,Medical Incident,05/21/2014,05/21/2014,05/21/2014 06:21:20 PM,05/21/2014 06:22:29 PM,05/21/2014 06:23:16 PM,05/21/2014 06:23:33 PM,05/21/2014 06:35:43 PM,05/21/2014 06:42:40 PM,05/21/2014 07:11:29 PM,Code 2 Transport,05/21/2014 07:33:58 PM,600 Block of CAMBRIDGE ST,San Francisco,94134,B09,42,6346,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7234377415581, -122.417097436921)",141412823-77 -141773345,T05,14061226,Citizen Assist / Service Call,06/26/2014,06/26/2014,06/26/2014 09:40:03 PM,06/26/2014 09:41:50 PM,06/26/2014 09:42:11 PM,06/26/2014 09:43:43 PM,06/26/2014 09:45:50 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 09:59:05 PM,300 Block of GOUGH ST,San Francisco,94102,B02,36,3265,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.776658453148, -122.422862121316)",141773345-T05 -142243394,E35,14077903,Medical Incident,08/12/2014,08/12/2014,08/12/2014 09:27:36 PM,08/12/2014 09:29:43 PM,08/12/2014 09:30:20 PM,08/12/2014 09:31:26 PM,08/12/2014 09:34:33 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Code 2 Transport,08/12/2014 09:39:41 PM,MAIN ST/HARRISON ST,San Francisco,94105,B03,35,2117,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.78813450058, -122.390319483833)",142243394-E35 -152183601,E01,15083182,Medical Incident,08/06/2015,08/06/2015,08/06/2015 09:06:30 PM,08/06/2015 09:08:45 PM,08/06/2015 09:09:27 PM,08/06/2015 09:10:10 PM,08/06/2015 09:15:59 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Patient Declined Transport,08/06/2015 09:19:48 PM,500 Block of 9TH ST,San Francisco,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7707086968349, -122.407716820686)",152183601-E01 -160973337,66,16038572,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:38:49 PM,04/06/2016 05:40:05 PM,04/06/2016 05:40:46 PM,04/06/2016 05:40:55 PM,04/06/2016 05:49:43 PM,04/06/2016 06:02:42 PM,04/06/2016 06:28:32 PM,Code 2 Transport,04/06/2016 07:36:34 PM,1500 Block of GOUGH ST,San Francisco,94109,B04,38,3255,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7873547976188, -122.42516229913)",160973337-66 -160953100,62,16037740,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:06:55 PM,04/04/2016 06:07:59 PM,04/04/2016 06:12:17 PM,04/04/2016 06:12:25 PM,04/04/2016 06:18:28 PM,04/04/2016 06:30:09 PM,04/04/2016 06:44:34 PM,Code 2 Transport,04/04/2016 07:06:47 PM,FULTON ST/LARKIN ST,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",160953100-62 -150383868,E11,15014988,Medical Incident,02/07/2015,02/07/2015,02/07/2015 10:48:28 PM,02/07/2015 10:49:35 PM,02/07/2015 10:50:33 PM,02/07/2015 10:51:03 PM,02/07/2015 10:53:39 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,No Merit,02/07/2015 10:59:30 PM,1000 Block of SANCHEZ ST,San Francisco,94114,B06,11,5514,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7519624380564, -122.429764001075)",150383868-E11 -152942243,B04,15113017,Structure Fire,10/21/2015,10/21/2015,10/21/2015 02:32:48 PM,10/21/2015 02:34:28 PM,10/21/2015 02:35:23 PM,10/21/2015 02:35:41 PM,10/21/2015 02:49:38 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Fire,10/21/2015 02:49:41 PM,500 Block of THE EMBARCADERO,San Francisco,94111,B01,13,909,3,3,3,false,Alarm,1,CHIEF,10,1,3,Financial District/South Beach,"(37.8001622325974, -122.398220311065)",152942243-B04 -142263201,66,14078630,Medical Incident,08/14/2014,08/14/2014,08/14/2014 08:19:27 PM,08/14/2014 08:21:39 PM,08/14/2014 08:21:56 PM,08/14/2014 08:22:05 PM,08/14/2014 08:32:46 PM,08/14/2014 08:53:36 PM,08/14/2014 09:24:43 PM,Code 2 Transport,08/14/2014 10:05:06 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.769431688682, -122.424669373999)",142263201-66 -160981646,82,16038895,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:50:19 AM,04/07/2016 11:51:24 AM,04/07/2016 11:55:23 AM,04/07/2016 11:55:48 AM,04/07/2016 12:03:59 PM,04/07/2016 12:15:52 PM,04/07/2016 12:41:46 PM,Code 2 Transport,04/07/2016 01:23:52 PM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",160981646-82 -142420663,AM02,14084144,Medical Incident,08/30/2014,08/29/2014,08/30/2014 07:14:41 AM,08/30/2014 07:15:24 AM,08/30/2014 07:29:31 AM,08/30/2014 07:29:31 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 07:30:17 AM,1800 Block of THE EMBARCADERO,San Francisco,94133,B01,28,935,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,North Beach,"(37.8088354051007, -122.414108783784)",142420663-AM02 -150432969,B04,15016831,Structure Fire,02/12/2015,02/12/2015,02/12/2015 06:12:48 PM,02/12/2015 06:13:05 PM,02/12/2015 06:13:24 PM,02/12/2015 06:14:15 PM,02/12/2015 06:14:15 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Fire,02/12/2015 06:32:58 PM,500 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7113,3,3,3,false,Fire,1,CHIEF,1,7,1,Lone Mountain/USF,"(37.7802979836229, -122.458726030762)",150432969-B04 -153461284,64,15133190,Medical Incident,12/12/2015,12/12/2015,12/12/2015 10:03:17 AM,12/12/2015 10:05:13 AM,12/12/2015 10:06:43 AM,12/12/2015 10:06:54 AM,12/12/2015 10:20:14 AM,12/12/2015 11:26:04 AM,12/12/2015 11:26:05 AM,Code 2 Transport,12/12/2015 11:38:09 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",153461284-64 -150383325,KM02,15014929,Medical Incident,02/07/2015,02/07/2015,02/07/2015 08:03:21 PM,02/07/2015 08:04:45 PM,02/07/2015 08:05:06 PM,02/07/2015 08:05:32 PM,02/07/2015 08:20:51 PM,02/07/2015 08:39:00 PM,02/07/2015 08:52:53 PM,Code 2 Transport,02/07/2015 09:35:18 PM,1400 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,2,3,3,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7427360023761, -122.481581768623)",150383325-KM02 -152980834,54,15114331,Medical Incident,10/25/2015,10/25/2015,10/25/2015 08:22:51 AM,10/25/2015 08:22:51 AM,10/25/2015 08:35:59 AM,10/25/2015 08:36:14 AM,10/25/2015 08:39:19 AM,10/25/2015 08:50:34 AM,10/25/2015 08:59:57 AM,Code 3 Transport,10/25/2015 09:39:18 AM,INNES AV/ARELIOUS WALKER DR,San Francisco,94124,B10,25,6663,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7309360720471, -122.373890366307)",152980834-54 -161011015,85,16040124,Medical Incident,04/10/2016,04/10/2016,04/10/2016 09:22:05 AM,04/10/2016 09:23:12 AM,04/10/2016 09:23:19 AM,04/10/2016 09:23:40 AM,04/10/2016 09:30:07 AM,04/10/2016 09:45:07 AM,04/10/2016 09:51:13 AM,Code 2 Transport,04/10/2016 10:34:10 AM,1200 Block of TREAT AVE,San Francisco,94110,B06,07,5533,2,3,3,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7501730752061, -122.412693892535)",161011015-85 -152020399,B01,15076851,Alarms,07/21/2015,07/20/2015,07/21/2015 04:54:36 AM,07/21/2015 04:56:54 AM,07/21/2015 04:57:01 AM,07/21/2015 04:58:58 AM,07/21/2015 05:01:31 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/21/2015 05:08:21 AM,2100 Block of LEAVENWORTH ST,San Francisco,94133,B01,28,1532,3,3,3,false,Alarm,1,CHIEF,2,1,2,Russian Hill,"(37.8008138657608, -122.417624696225)",152020399-B01 -150381430,E32,15014738,Medical Incident,02/07/2015,02/07/2015,02/07/2015 11:23:54 AM,02/07/2015 11:26:38 AM,02/07/2015 11:27:25 AM,02/07/2015 11:28:28 AM,02/07/2015 11:32:20 AM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Code 2 Transport,02/07/2015 11:38:18 AM,30TH ST/MISSION ST,San Francisco,94110,B06,32,5575,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",150381430-E32 -160961930,53,16038027,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:21:46 PM,04/05/2016 01:22:48 PM,04/05/2016 01:23:16 PM,04/05/2016 01:23:25 PM,04/05/2016 01:27:15 PM,04/05/2016 01:50:37 PM,04/05/2016 02:14:43 PM,Code 2 Transport,04/05/2016 02:18:17 PM,2700 Block of LOMBARD ST,San Francisco,94123,B04,16,4326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7985968788664, -122.446649276894)",160961930-53 -161003457,65,16039977,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:36:11 PM,04/09/2016 10:37:35 PM,04/09/2016 10:44:47 PM,04/09/2016 10:44:58 PM,04/09/2016 10:56:22 PM,04/09/2016 11:05:18 PM,04/09/2016 11:20:46 PM,Code 2 Transport,04/09/2016 11:57:03 PM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7111753869011, -122.41625926444)",161003457-65 -153423226,63,15131722,Medical Incident,12/08/2015,12/08/2015,12/08/2015 06:42:59 PM,12/08/2015 06:43:38 PM,12/08/2015 06:49:58 PM,12/08/2015 06:50:09 PM,12/08/2015 07:09:48 PM,12/08/2015 07:30:39 PM,12/08/2015 07:42:37 PM,Code 2 Transport,12/08/2015 08:18:39 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",153423226-63 -143333159,87,14118151,Medical Incident,11/29/2014,11/29/2014,11/29/2014 08:02:44 PM,11/29/2014 08:06:34 PM,11/29/2014 08:06:59 PM,11/29/2014 08:11:33 PM,11/29/2014 08:16:29 PM,11/29/2014 08:53:03 PM,11/29/2014 09:06:00 PM,Code 2 Transport,11/29/2014 09:39:53 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",143333159-87 -152030796,87,15077251,Medical Incident,07/22/2015,07/22/2015,07/22/2015 08:32:22 AM,07/22/2015 08:33:52 AM,07/22/2015 08:34:54 AM,07/22/2015 08:35:04 AM,07/22/2015 08:46:40 AM,07/22/2015 09:02:46 AM,07/22/2015 09:43:06 AM,Code 2 Transport,07/22/2015 10:16:59 AM,700 Block of BURROWS ST,San Francisco,94134,B10,42,6335,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.727103069953, -122.41049342333)",152030796-87 -153400488,64,15130720,Medical Incident,12/06/2015,12/05/2015,12/06/2015 03:36:21 AM,12/06/2015 03:36:48 AM,12/06/2015 03:37:47 AM,12/06/2015 03:37:58 AM,12/06/2015 03:44:03 AM,12/06/2015 03:51:48 AM,12/06/2015 03:59:00 AM,Code 3 Transport,12/06/2015 04:17:51 AM,1000 Block of FOLSOM ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.778254811523, -122.405834032593)",153400488-64 -150902244,KM14,15034323,Medical Incident,03/31/2015,03/31/2015,03/31/2015 03:22:51 PM,03/31/2015 03:23:44 PM,03/31/2015 03:23:52 PM,03/31/2015 03:24:35 PM,03/31/2015 03:28:45 PM,03/31/2015 03:59:05 PM,03/31/2015 04:15:35 PM,Code 2 Transport,03/31/2015 04:51:39 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",150902244-KM14 -151613605,KM03,15061711,Medical Incident,06/10/2015,06/10/2015,06/10/2015 09:38:22 PM,06/10/2015 09:42:18 PM,06/10/2015 09:42:29 PM,06/10/2015 09:45:12 PM,06/10/2015 09:49:26 PM,04/25/2016 01:10:04 PM,04/25/2016 01:10:04 PM,Code 2 Transport,06/10/2015 09:54:35 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",151613605-KM03 -152574013,58,15098481,Medical Incident,09/14/2015,09/14/2015,09/14/2015 11:42:29 PM,09/14/2015 11:42:45 PM,09/14/2015 11:43:07 PM,09/14/2015 11:43:11 PM,09/14/2015 11:46:48 PM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Against Medical Advice,09/15/2015 01:09:09 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",152574013-58 -141943415,89,14067433,Medical Incident,07/13/2014,07/13/2014,07/13/2014 11:44:36 PM,07/13/2014 11:44:36 PM,07/13/2014 11:45:10 PM,07/13/2014 11:45:20 PM,07/13/2014 11:50:06 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Patient Declined Transport,07/14/2014 12:28:18 AM,0 Block of ELGIN PARK,San Francisco,94103,B02,36,5126,C,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7706578716685, -122.423156759671)",141943415-89 -160943455,AM24,16037433,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:37:50 PM,04/03/2016 09:38:42 PM,04/03/2016 09:38:54 PM,04/03/2016 09:39:14 PM,04/03/2016 09:45:22 PM,04/03/2016 09:54:00 PM,04/03/2016 10:12:17 PM,Code 2 Transport,04/03/2016 10:39:22 PM,MARKET ST/4TH ST,San Francisco,94103,B03,1,1322,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160943455-AM24 -142240134,E38,14077579,Alarms,08/12/2014,08/11/2014,08/12/2014 01:14:52 AM,08/12/2014 01:16:13 AM,08/12/2014 01:16:52 AM,08/12/2014 01:18:53 AM,08/12/2014 01:21:08 AM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Fire,08/12/2014 01:25:06 AM,1800 Block of JACKSON ST,San Francisco,94109,B04,38,3252,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7936758446796, -122.425525660789)",142240134-E38 -151050140,B03,15039558,Alarms,04/15/2015,04/14/2015,04/15/2015 01:03:28 AM,04/15/2015 01:05:11 AM,04/15/2015 01:05:21 AM,04/15/2015 01:07:37 AM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Fire,04/15/2015 01:13:11 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",151050140-B03 -160991404,89,16039274,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:44:30 AM,04/08/2016 11:47:38 AM,04/08/2016 11:48:18 AM,04/08/2016 11:48:28 AM,04/08/2016 12:13:57 PM,04/08/2016 12:26:00 PM,04/08/2016 12:47:14 PM,Code 2 Transport,04/08/2016 01:07:16 PM,1400 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6516,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",160991404-89 -141090274,E26,14036850,Citizen Assist / Service Call,04/19/2014,04/19/2014,04/19/2014 06:16:10 PM,04/19/2014 06:17:34 PM,04/19/2014 06:17:48 PM,04/19/2014 06:19:48 PM,04/19/2014 06:21:16 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Fire,04/19/2014 06:27:33 PM,DIAMOND ST/DIAMOND HEIGHTS BL,SAN FRANCISCO,94131,B06,26,8173,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7382879698388, -122.437398204407)",141090274-E26 -142791211,E03,14098105,Citizen Assist / Service Call,10/06/2014,10/06/2014,10/06/2014 10:35:15 AM,10/06/2014 10:37:36 AM,10/06/2014 10:38:32 AM,10/06/2014 10:41:26 AM,10/06/2014 10:44:20 AM,04/25/2016 01:14:42 PM,04/25/2016 01:14:42 PM,Fire,10/06/2014 11:01:42 AM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",142791211-E03 -143242782,T05,14114809,Structure Fire,11/20/2014,11/20/2014,11/20/2014 06:22:03 PM,11/20/2014 06:22:47 PM,11/20/2014 06:23:26 PM,11/20/2014 06:24:34 PM,11/20/2014 06:27:12 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Fire,11/20/2014 06:33:55 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,TRUCK,5,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",143242782-T05 -160962353,62,16038059,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:03:04 PM,04/05/2016 03:05:48 PM,04/05/2016 03:05:55 PM,04/05/2016 03:07:43 PM,04/05/2016 03:10:28 PM,04/05/2016 03:31:49 PM,04/05/2016 03:54:43 PM,Code 2 Transport,04/05/2016 04:30:59 PM,157-159 COLLINGWOOD ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7600122430169, -122.435964918002)",160962353-62 -160963223,77,16038133,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:17:20 PM,04/05/2016 06:17:20 PM,04/05/2016 06:19:38 PM,04/05/2016 06:19:49 PM,04/05/2016 06:24:38 PM,04/05/2016 06:32:54 PM,04/05/2016 07:01:55 PM,Code 3 Transport,04/05/2016 07:15:32 PM,300 Block of GOUGH ST,San Francisco,94102,B02,36,3265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.776658453148, -122.422862121316)",160963223-77 -141100295,E05,14037212,Medical Incident,04/20/2014,04/20/2014,04/20/2014 07:06:52 PM,04/20/2014 07:09:14 PM,04/20/2014 07:09:48 PM,04/20/2014 07:11:15 PM,04/20/2014 07:12:57 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/20/2014 07:47:49 PM,1200 Block of BUCHANAN ST,SAN FRANCISCO,94115,B02,5,3426,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7816468439098, -122.428929933146)",141100295-E05 -150782047,RC3,15029916,Medical Incident,03/19/2015,03/19/2015,03/19/2015 01:33:09 PM,03/19/2015 01:34:28 PM,03/19/2015 01:36:56 PM,03/19/2015 01:36:56 PM,03/19/2015 01:40:36 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Medical Examiner,03/19/2015 02:49:08 PM,1500 Block of ALABAMA ST,San Francisco,94110,B06,9,5622,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,9,Bernal Heights,"(37.7478290562548, -122.410568705339)",150782047-RC3 -153012367,B01,15115514,Other,10/28/2015,10/28/2015,10/28/2015 02:30:10 PM,10/28/2015 02:30:10 PM,10/28/2015 02:40:04 PM,10/28/2015 02:40:04 PM,10/28/2015 02:44:12 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 04:00:56 PM,JEFFERSON ST/HYDE ST,San Francisco,94109,B01,28,947,3,3,3,false,Alarm,1,CHIEF,2,1,2,Russian Hill,"(37.8075901055183, -122.420743268989)",153012367-B01 -150132683,79,15005256,Medical Incident,01/13/2015,01/13/2015,01/13/2015 04:57:40 PM,01/13/2015 04:58:24 PM,01/13/2015 04:58:45 PM,01/13/2015 04:58:55 PM,01/13/2015 05:24:41 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Unable to Locate,01/13/2015 05:26:44 PM,5TH ST/FOLSOM ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",150132683-79 -141130329,89,14038233,Medical Incident,04/23/2014,04/23/2014,04/23/2014 05:48:26 PM,04/23/2014 05:49:27 PM,04/23/2014 05:50:25 PM,04/23/2014 05:51:24 PM,04/23/2014 05:54:08 PM,04/23/2014 05:59:13 PM,04/23/2014 06:21:29 PM,Code 2 Transport,04/23/2014 06:25:47 PM,100 Block of LARKIN ST,SAN FRANCISCO,94102,B02,36,1645,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",141130329-89 -151370909,E09,15051957,Medical Incident,05/17/2015,05/17/2015,05/17/2015 08:29:58 AM,05/17/2015 08:32:50 AM,05/17/2015 08:33:24 AM,05/17/2015 08:34:44 AM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Code 2 Transport,05/17/2015 09:02:19 AM,POTRERO AV/22ND ST,San Francisco,94110,B10,37,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",151370909-E09 -160983941,85,16039133,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:37:52 PM,04/07/2016 10:38:51 PM,04/07/2016 10:39:05 PM,04/07/2016 10:39:21 PM,04/07/2016 10:42:04 PM,04/07/2016 10:51:43 PM,04/07/2016 11:15:35 PM,Code 2 Transport,04/07/2016 11:41:18 PM,POWELL ST/BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7974201856554, -122.410263526117)",160983941-85 -151872517,E21,15071475,Medical Incident,07/06/2015,07/06/2015,07/06/2015 03:50:58 PM,07/06/2015 03:53:30 PM,07/06/2015 04:20:51 PM,07/06/2015 04:21:55 PM,07/06/2015 04:24:16 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Code 2 Transport,07/06/2015 04:30:43 PM,1000 Block of HAYES ST,San Francisco,94117,B05,21,3631,2,2,2,false,Non Life-threatening,1,ENGINE,2,5,5,Hayes Valley,"(37.7754672344817, -122.433645632366)",151872517-E21 -150291831,E38,15011182,Administrative,01/29/2015,01/29/2015,01/29/2015 01:49:52 PM,01/29/2015 01:50:00 PM,01/29/2015 01:50:37 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Fire,01/29/2015 01:51:33 PM,2100 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",150291831-E38 -141250277,55,14042417,Medical Incident,05/05/2014,05/05/2014,05/05/2014 04:02:23 PM,05/05/2014 04:02:57 PM,05/05/2014 04:03:25 PM,05/05/2014 04:03:38 PM,05/05/2014 04:08:54 PM,05/05/2014 04:28:00 PM,05/05/2014 04:40:07 PM,Code 2 Transport,05/05/2014 05:08:41 PM,0 Block of ESSEX ST,SAN FRANCISCO,94105,B03,35,2136,E,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",141250277-55 -150932391,72,15035410,Medical Incident,04/03/2015,04/03/2015,04/03/2015 04:03:05 PM,04/03/2015 04:05:13 PM,04/03/2015 04:07:55 PM,04/03/2015 04:08:13 PM,04/03/2015 04:30:05 PM,04/03/2015 04:53:53 PM,04/03/2015 05:18:28 PM,Code 2 Transport,04/03/2015 05:54:56 PM,200 Block of EVELYN WAY,San Francisco,94127,B09,39,8655,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7426820880698, -122.449417082278)",150932391-72 -141150372,E41,14038988,Alarms,04/25/2014,04/25/2014,04/25/2014 10:46:12 PM,04/25/2014 10:46:57 PM,04/25/2014 10:47:25 PM,04/25/2014 10:48:31 PM,04/25/2014 10:50:43 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Fire,04/25/2014 11:05:21 PM,1200 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3121,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.787598161751, -122.420926156157)",141150372-E41 -151521864,57,15057881,Medical Incident,06/01/2015,06/01/2015,06/01/2015 01:43:53 PM,06/01/2015 01:45:12 PM,06/01/2015 01:45:43 PM,06/01/2015 01:45:58 PM,06/01/2015 01:49:12 PM,04/25/2016 01:10:16 PM,04/25/2016 01:10:16 PM,Patient Declined Transport,06/01/2015 02:58:14 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,true,Non Life-threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",151521864-57 -152040331,E35,15077590,Medical Incident,07/23/2015,07/22/2015,07/23/2015 03:45:01 AM,07/23/2015 03:46:15 AM,07/23/2015 03:46:26 AM,07/23/2015 03:49:30 AM,07/23/2015 03:52:15 AM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,No Merit,07/23/2015 03:59:14 AM,STEUART ST/MISSION ST,San Francisco,94105,B03,35,2111,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",152040331-E35 -160961747,54,16038004,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:40:43 PM,04/05/2016 12:42:02 PM,04/05/2016 12:42:14 PM,04/05/2016 12:42:23 PM,04/05/2016 12:54:06 PM,04/05/2016 01:12:54 PM,04/05/2016 01:31:46 PM,Code 2 Transport,04/05/2016 02:03:24 PM,3400 Block of CABRILLO ST,San Francisco,94121,B07,34,7252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7739770464702, -122.495581192111)",160961747-54 -150270316,AM24,15010274,Medical Incident,01/27/2015,01/26/2015,01/27/2015 04:15:47 AM,01/27/2015 04:16:43 AM,01/27/2015 04:16:57 AM,01/27/2015 04:17:23 AM,01/27/2015 04:19:41 AM,01/27/2015 04:36:25 AM,01/27/2015 05:09:57 AM,Code 2 Transport,01/27/2015 05:36:07 AM,GEARY BL/27TH AV,San Francisco,94121,B07,14,7213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7799935399655, -122.486878047232)",150270316-AM24 -160932206,54,16036914,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:20:26 PM,04/02/2016 03:21:31 PM,04/02/2016 03:21:51 PM,04/02/2016 03:22:01 PM,04/02/2016 03:28:24 PM,04/02/2016 03:43:07 PM,04/02/2016 04:19:10 PM,Code 2 Transport,04/02/2016 04:48:22 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160932206-54 -141501295,55,14051507,Medical Incident,05/30/2014,05/30/2014,05/30/2014 11:50:12 AM,05/30/2014 11:51:17 AM,05/30/2014 11:51:45 AM,05/30/2014 11:53:23 AM,05/30/2014 11:59:57 AM,05/30/2014 12:23:32 PM,05/30/2014 12:32:07 PM,Code 2 Transport,05/30/2014 01:04:42 PM,3100 Block of 25TH ST,San Francisco,94110,B06,7,5533,2,3,3,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7509742606075, -122.41365037931)",141501295-55 -160992120,KM04,16039339,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:49:17 PM,04/08/2016 02:51:03 PM,04/08/2016 02:53:49 PM,04/08/2016 02:54:29 PM,04/08/2016 02:59:41 PM,04/08/2016 03:10:28 PM,04/08/2016 03:29:04 PM,Code 2 Transport,04/08/2016 04:07:42 PM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",160992120-KM04 -150133550,T10,15005326,Alarms,01/13/2015,01/13/2015,01/13/2015 08:53:52 PM,01/13/2015 08:54:47 PM,01/13/2015 08:55:08 PM,01/13/2015 08:56:15 PM,01/13/2015 08:59:03 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Fire,01/13/2015 09:19:38 PM,3300 Block of GEARY BLVD,San Francisco,94118,B07,10,4453,3,3,3,false,Alarm,1,TRUCK,2,7,2,Presidio Heights,"(37.7816501739638, -122.454753954171)",150133550-T10 -151100371,RS2,15041490,Structure Fire,04/20/2015,04/19/2015,04/20/2015 04:51:53 AM,04/20/2015 04:53:59 AM,04/20/2015 04:54:36 AM,04/20/2015 04:56:12 AM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Fire,04/20/2015 04:57:48 AM,24TH ST/POTRERO AV,San Francisco,94110,B10,9,2562,3,3,3,false,Alarm,1,RESCUE SQUAD,9,10,9,Mission,"(37.7530040313925, -122.406336240587)",151100371-RS2 -152190148,AM18,15083230,Medical Incident,08/07/2015,08/06/2015,08/07/2015 12:56:19 AM,08/07/2015 12:58:24 AM,08/07/2015 12:58:54 AM,08/07/2015 12:59:36 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Unable to Locate,08/07/2015 01:00:10 AM,GEARY ST/STOCKTON ST,San Francisco,94108,B01,1,1323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7875680237553, -122.40658988461)",152190148-AM18 -142790315,T01,14098027,Alarms,10/06/2014,10/05/2014,10/06/2014 03:28:11 AM,10/06/2014 03:29:56 AM,10/06/2014 03:30:16 AM,10/06/2014 03:31:47 AM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Fire,10/06/2014 03:34:49 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",142790315-T01 -160940895,75,16037191,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:04:43 AM,04/03/2016 08:04:43 AM,04/03/2016 08:04:59 AM,04/03/2016 08:05:09 AM,04/03/2016 08:13:21 AM,04/03/2016 08:21:34 AM,04/03/2016 08:45:01 AM,Code 2 Transport,04/03/2016 09:11:54 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160940895-75 -150072803,E06,15002791,Medical Incident,01/07/2015,01/07/2015,01/07/2015 05:35:46 PM,01/07/2015 05:36:14 PM,01/07/2015 05:37:04 PM,01/07/2015 05:37:57 PM,01/07/2015 05:57:28 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Code 2 Transport,01/07/2015 06:15:44 PM,400 Block of DUBOCE AVE,San Francisco,94117,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",150072803-E06 -150060198,89,15002109,Medical Incident,01/06/2015,01/05/2015,01/06/2015 01:59:50 AM,01/06/2015 02:00:25 AM,01/06/2015 02:00:59 AM,01/06/2015 02:01:12 AM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 3 Transport,01/06/2015 02:06:58 AM,16TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7651831353816, -122.417486597301)",150060198-89 -160992510,KM04,16039385,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:21:48 PM,04/08/2016 04:22:38 PM,04/08/2016 04:23:26 PM,04/08/2016 04:24:04 PM,04/08/2016 04:30:01 PM,04/08/2016 05:06:38 PM,04/08/2016 05:25:30 PM,Code 2 Transport,04/08/2016 06:02:22 PM,700 Block of GRANT AVE,San Francisco,94108,B01,13,1313,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7936143920332, -122.406106633361)",160992510-KM04 -150661144,AM12,15025175,Medical Incident,03/07/2015,03/07/2015,03/07/2015 09:57:39 AM,03/07/2015 09:59:12 AM,03/07/2015 09:59:57 AM,03/07/2015 10:02:59 AM,03/07/2015 10:02:59 AM,03/07/2015 10:13:28 AM,03/07/2015 10:21:16 AM,Code 2 Transport,03/07/2015 10:44:04 AM,VAN NESS AV/MCALLISTER ST,San Francisco,94102,B02,36,3165,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",150661144-AM12 -142120972,B01,14073412,Alarms,07/31/2014,07/31/2014,07/31/2014 09:19:51 AM,07/31/2014 09:21:30 AM,07/31/2014 09:22:50 AM,07/31/2014 09:22:58 AM,07/31/2014 09:31:00 AM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Fire,07/31/2014 09:38:18 AM,200 Block of OFARRELL ST,San Francisco,94102,B01,1,1363,3,3,3,false,Alarm,1,CHIEF,2,3,3,Tenderloin,"(37.7862985138478, -122.408477809664)",142120972-B01 -141650145,81,14056760,Citizen Assist / Service Call,06/14/2014,06/13/2014,06/14/2014 12:51:20 AM,06/14/2014 12:53:46 AM,06/14/2014 12:55:08 AM,06/14/2014 12:56:28 AM,06/14/2014 01:06:28 AM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Patient Declined Transport,06/14/2014 01:22:50 AM,1400 Block of QUESADA AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Alarm,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7307439718873, -122.386750852742)",141650145-81 -160930128,KM06,16036679,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:46:46 AM,04/02/2016 12:48:48 AM,04/02/2016 12:51:30 AM,04/02/2016 12:52:49 AM,04/02/2016 12:55:46 AM,04/02/2016 01:15:00 AM,04/02/2016 01:34:25 AM,Code 2 Transport,04/02/2016 02:09:53 AM,3200 Block of LAGUNA ST,San Francisco,94123,B04,16,3352,2,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8012058695901, -122.43133357328)",160930128-KM06 -143450279,E15,14122564,Medical Incident,12/11/2014,12/10/2014,12/11/2014 02:30:27 AM,12/11/2014 02:30:52 AM,12/11/2014 02:31:14 AM,12/11/2014 02:31:48 AM,12/11/2014 02:34:06 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Code 2 Transport,12/11/2014 02:44:06 AM,200 Block of THERESA ST,San Francisco,94112,B09,15,8267,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7298371341208, -122.435916984704)",143450279-E15 -150631081,T06,15023989,Traffic Collision,03/04/2015,03/04/2015,03/04/2015 09:24:30 AM,03/04/2015 09:24:30 AM,03/04/2015 09:26:39 AM,03/04/2015 09:27:48 AM,03/04/2015 09:29:31 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 09:38:48 AM,16TH ST/GUERRERO ST,San Francisco,94103,B02,6,5235,2,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",150631081-T06 -143432807,KM02,14122034,Medical Incident,12/09/2014,12/09/2014,12/09/2014 04:38:45 PM,12/09/2014 04:39:51 PM,12/09/2014 04:41:23 PM,12/09/2014 04:42:16 PM,12/09/2014 04:48:05 PM,12/09/2014 05:03:10 PM,12/09/2014 05:35:19 PM,Code 2 Transport,12/09/2014 06:14:39 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",143432807-KM02 -150842377,E36,15032104,Medical Incident,03/25/2015,03/25/2015,03/25/2015 03:01:22 PM,03/25/2015 03:04:11 PM,03/25/2015 03:04:44 PM,03/25/2015 03:05:01 PM,03/25/2015 03:10:06 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,Code 2 Transport,03/25/2015 03:26:02 PM,1500 Block of HOWARD ST,San Francisco,94103,B02,36,5114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.772123277472, -122.416667284185)",150842377-E36 -160940012,72,16037094,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:02:47 AM,04/03/2016 12:03:26 AM,04/03/2016 12:03:37 AM,04/03/2016 12:03:45 AM,04/03/2016 12:12:07 AM,04/03/2016 12:35:29 AM,04/03/2016 01:06:03 AM,Code 2 Transport,04/03/2016 01:30:17 AM,4600 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7846372330279, -122.467225536623)",160940012-72 -150820979,B07,15031305,Alarms,03/23/2015,03/23/2015,03/23/2015 09:34:32 AM,03/23/2015 09:36:00 AM,03/23/2015 09:36:05 AM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Fire,03/23/2015 09:41:22 AM,1000 Block of GREAT HWY,San Francisco,94122,B08,23,7722,3,3,3,false,Alarm,1,CHIEF,2,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",150820979-B07 -142632054,65,14092035,Medical Incident,09/20/2014,09/20/2014,09/20/2014 02:54:35 PM,09/20/2014 02:55:23 PM,09/20/2014 02:55:42 PM,09/20/2014 02:55:58 PM,09/20/2014 02:59:50 PM,09/20/2014 03:08:25 PM,09/20/2014 03:23:43 PM,Code 2 Transport,09/20/2014 03:58:57 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142632054-65 -160953890,AM24,16037811,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:04:31 PM,04/04/2016 10:05:02 PM,04/04/2016 10:05:43 PM,04/04/2016 10:06:37 PM,04/04/2016 10:11:57 PM,04/04/2016 10:17:38 PM,04/04/2016 10:30:02 PM,Code 2 Transport,04/04/2016 11:06:49 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160953890-AM24 -143510339,E06,14125242,Medical Incident,12/17/2014,12/16/2014,12/17/2014 04:29:58 AM,12/17/2014 04:30:36 AM,12/17/2014 04:30:59 AM,12/17/2014 04:32:53 AM,12/17/2014 04:34:40 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Code 2 Transport,12/17/2014 04:44:48 AM,HAIGHT ST/FILLMORE ST,San Francisco,94117,B02,6,3524,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7721082581802, -122.430433920263)",143510339-E06 -143480384,T02,14124097,Structure Fire,12/14/2014,12/13/2014,12/14/2014 02:24:42 AM,12/14/2014 02:25:45 AM,12/14/2014 02:26:26 AM,12/14/2014 02:28:46 AM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,Fire,12/14/2014 02:47:07 AM,1500 Block of BAY ST,San Francisco,94123,B04,16,3446,3,3,3,false,Alarm,1,TRUCK,8,4,2,Marina,"(37.8032160457543, -122.43251463112)",143480384-T02 -151334000,E29,15050654,Medical Incident,05/13/2015,05/13/2015,05/13/2015 09:53:58 PM,05/13/2015 09:54:37 PM,05/13/2015 09:55:14 PM,05/13/2015 09:56:51 PM,05/13/2015 09:58:53 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Code 2 Transport,05/13/2015 10:05:25 PM,1200 Block of 17TH ST,San Francisco,94107,B03,29,2431,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,10,Potrero Hill,"(37.7651047966858, -122.396283594618)",151334000-E29 -151370654,B07,15051930,Alarms,05/17/2015,05/16/2015,05/17/2015 06:13:43 AM,05/17/2015 06:15:38 AM,05/17/2015 06:15:46 AM,05/17/2015 06:17:36 AM,05/17/2015 06:21:08 AM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Code 2 Transport,05/17/2015 06:23:44 AM,1400 Block of CLEMENT ST,San Francisco,94118,B07,31,7153,3,3,3,false,Alarm,1,CHIEF,1,7,1,Outer Richmond,"(37.7824283415319, -122.474669098316)",151370654-B07 -142230379,74,14077280,Medical Incident,08/11/2014,08/10/2014,08/11/2014 04:12:37 AM,08/11/2014 04:14:38 AM,08/11/2014 04:15:12 AM,08/11/2014 04:15:26 AM,08/11/2014 04:22:49 AM,08/11/2014 04:26:10 AM,08/11/2014 04:39:45 AM,Code 2 Transport,08/11/2014 04:55:56 AM,100 Block of GAMBIER ST,San Francisco,94134,B09,43,6146,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Excelsior,"(37.7274340443365, -122.422164419861)",142230379-74 -141792690,T07,14061886,Structure Fire,06/28/2014,06/28/2014,06/28/2014 05:49:31 PM,06/28/2014 05:49:56 PM,06/28/2014 05:51:08 PM,06/28/2014 05:52:28 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,Fire,06/28/2014 06:53:05 PM,3300 Block of 17TH ST,San Francisco,94110,B02,7,5247,3,3,3,false,Fire,1,TRUCK,10,2,9,Mission,"(37.7632828833773, -122.421077099957)",141792690-T07 -153141304,77,15120613,Medical Incident,11/10/2015,11/10/2015,11/10/2015 10:38:26 AM,11/10/2015 10:40:04 AM,11/10/2015 11:24:26 AM,11/10/2015 11:24:26 AM,11/10/2015 11:24:26 AM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Code 2 Transport,11/10/2015 11:25:00 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",153141304-77 -142670996,KM06,14093417,Medical Incident,09/24/2014,09/24/2014,09/24/2014 08:59:38 AM,09/24/2014 08:59:38 AM,09/24/2014 08:59:49 AM,09/24/2014 09:00:18 AM,09/24/2014 09:05:50 AM,09/24/2014 09:21:06 AM,09/24/2014 09:27:18 AM,Code 2 Transport,09/24/2014 09:50:41 AM,100 Block of DIAMOND ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7599619000358, -122.437045577764)",142670996-KM06 -141982538,E15,14068631,Medical Incident,07/17/2014,07/17/2014,07/17/2014 05:01:57 PM,07/17/2014 05:04:05 PM,07/17/2014 05:05:06 PM,07/17/2014 05:06:49 PM,07/17/2014 05:08:33 PM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,Code 2 Transport,07/17/2014 05:23:58 PM,OCEAN AV/HOWTH ST,San Francisco,94112,B09,15,8314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7229613197443, -122.449558618759)",141982538-E15 -160951877,74,16037637,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:12:39 PM,04/04/2016 01:12:39 PM,04/04/2016 01:17:41 PM,04/04/2016 01:17:51 PM,04/04/2016 01:25:59 PM,04/04/2016 02:08:39 PM,04/04/2016 02:14:09 PM,Code 2 Transport,04/04/2016 03:21:41 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160951877-74 -150120910,83,15004663,Traffic Collision,01/12/2015,01/12/2015,01/12/2015 09:06:55 AM,01/12/2015 09:08:05 AM,01/12/2015 09:08:25 AM,01/12/2015 09:08:33 AM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Code 3 Transport,01/12/2015 09:11:11 AM,TAYLOR ST/CALIFORNIA ST,San Francisco,94108,B01,41,1445,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Nob Hill,"(37.7916270743525, -122.412460881674)",150120910-83 -141200184,E25,14040547,Citizen Assist / Service Call,04/30/2014,04/30/2014,04/30/2014 12:58:10 PM,04/30/2014 12:58:42 PM,04/30/2014 01:01:14 PM,04/30/2014 01:02:23 PM,04/30/2014 01:07:37 PM,04/25/2016 01:17:36 PM,04/25/2016 01:17:36 PM,Fire,04/30/2014 01:23:55 PM,INDIANA ST/TULARE ST,SAN FRANCISCO,94124,B10,25,2635,3,3,3,false,Alarm,1,ENGINE,1,None,10,None,"(37.7476067377254, -122.390174876659)",141200184-E25 -160982599,89,16039001,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:52:15 PM,04/07/2016 03:52:15 PM,04/07/2016 03:53:29 PM,04/07/2016 03:53:29 PM,04/07/2016 03:57:28 PM,04/07/2016 04:02:02 PM,04/07/2016 04:19:24 PM,Code 3 Transport,04/07/2016 05:26:21 PM,900 Block of MCALLISTER ST,San Francisco,94102,B02,5,3425,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",160982599-89 -143411842,AM08,14121168,,12/07/2014,12/07/2014,12/07/2014 01:37:00 PM,12/07/2014 01:37:00 PM,12/07/2014 01:38:00 PM,12/07/2014 01:39:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,SFPD,12/07/2014 01:44:00 PM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,13,1246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",143411842-AM08 -151971578,E32,15075110,Medical Incident,07/16/2015,07/16/2015,07/16/2015 12:23:05 PM,07/16/2015 12:26:32 PM,07/16/2015 12:27:19 PM,07/16/2015 12:28:01 PM,07/16/2015 12:33:48 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Unable to Locate,07/16/2015 12:36:31 PM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",151971578-E32 -160990748,AM02,16039211,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:18:30 AM,04/08/2016 08:23:18 AM,04/08/2016 08:24:02 AM,04/08/2016 08:24:02 AM,04/08/2016 08:39:35 AM,04/08/2016 09:04:54 AM,04/08/2016 09:28:13 AM,Code 2 Transport,04/08/2016 10:15:45 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160990748-AM02 -143460748,T06,14123229,Citizen Assist / Service Call,12/12/2014,12/12/2014,12/12/2014 08:17:36 AM,12/12/2014 08:20:51 AM,12/12/2014 08:26:53 AM,12/12/2014 08:28:39 AM,12/12/2014 08:29:38 AM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Fire,12/12/2014 09:14:14 AM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Alarm,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",143460748-T06 -141872423,E36,14064871,Medical Incident,07/06/2014,07/06/2014,07/06/2014 05:37:42 PM,07/06/2014 05:38:17 PM,07/06/2014 05:38:35 PM,07/06/2014 05:40:30 PM,07/06/2014 05:45:20 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,No Merit,07/06/2014 06:01:33 PM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,3,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7774574199485, -122.413157691577)",141872423-E36 -142183280,T03,14075718,Medical Incident,08/06/2014,08/06/2014,08/06/2014 07:07:07 PM,08/06/2014 07:07:51 PM,08/06/2014 07:08:02 PM,08/06/2014 07:09:04 PM,08/06/2014 07:10:00 PM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,No Merit,08/06/2014 07:13:51 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,E,E,3,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142183280-T03 -153030304,89,15116074,Medical Incident,10/30/2015,10/29/2015,10/30/2015 02:41:55 AM,10/30/2015 02:43:41 AM,10/30/2015 02:46:35 AM,10/30/2015 02:46:49 AM,10/30/2015 02:53:14 AM,10/30/2015 03:11:48 AM,10/30/2015 03:27:37 AM,Code 2 Transport,10/30/2015 04:20:59 AM,1600 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7726948236861, -122.422188261426)",153030304-89 -160980391,AM20,16038770,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:39:38 AM,04/07/2016 03:40:11 AM,04/07/2016 03:40:26 AM,04/07/2016 03:41:07 AM,04/07/2016 03:46:09 AM,04/07/2016 03:55:51 AM,04/07/2016 04:23:27 AM,Code 2 Transport,04/07/2016 05:02:37 AM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",160980391-AM20 -161003085,AM18,16039933,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:48:17 PM,04/09/2016 08:49:26 PM,04/09/2016 08:51:24 PM,04/09/2016 08:52:39 PM,04/09/2016 09:02:33 PM,04/09/2016 09:10:15 PM,04/09/2016 09:19:49 PM,Code 2 Transport,04/09/2016 09:59:29 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",161003085-AM18 -151263561,RS1,15047924,Structure Fire,05/06/2015,05/06/2015,05/06/2015 08:42:25 PM,05/06/2015 08:43:15 PM,05/06/2015 08:43:43 PM,05/06/2015 08:43:50 PM,05/06/2015 08:46:20 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Fire,05/06/2015 08:59:38 PM,POST ST/JONES ST,San Francisco,94109,B01,3,1451,3,3,3,false,Alarm,1,RESCUE SQUAD,4,1,3,Tenderloin,"(37.787663597879, -122.413353964838)",151263561-RS1 -152614246,E12,15099958,Medical Incident,09/18/2015,09/18/2015,09/18/2015 10:49:57 PM,09/18/2015 10:50:34 PM,09/18/2015 10:50:57 PM,09/18/2015 10:52:35 PM,09/18/2015 11:00:04 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/18/2015 11:14:05 PM,800 Block of CORBETT AVE,San Francisco,94131,B06,24,5273,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Twin Peaks,"(37.753396813252, -122.443420334793)",152614246-E12 -141920272,T06,14066417,Alarms,07/11/2014,07/10/2014,07/11/2014 01:56:21 AM,07/11/2014 01:59:03 AM,07/11/2014 01:59:12 AM,07/11/2014 02:00:55 AM,07/11/2014 02:02:25 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Fire,07/11/2014 02:06:20 AM,1900 Block of 15TH ST,San Francisco,94114,B02,6,5227,3,3,3,false,Alarm,1,TRUCK,3,2,8,Castro/Upper Market,"(37.7661763079166, -122.427142652668)",141920272-T06 -160972529,89,16038474,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:51:26 PM,04/06/2016 02:53:57 PM,04/06/2016 02:54:46 PM,04/06/2016 03:04:17 PM,04/06/2016 03:04:17 PM,04/06/2016 03:29:46 PM,04/06/2016 04:07:58 PM,Code 2 Transport,04/06/2016 04:47:20 PM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",160972529-89 -152552757,E29,15097608,Medical Incident,09/12/2015,09/12/2015,09/12/2015 05:56:13 PM,09/12/2015 05:56:39 PM,09/12/2015 05:57:34 PM,09/12/2015 05:58:03 PM,09/12/2015 06:03:25 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Code 2 Transport,09/12/2015 06:08:57 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",152552757-E29 -150484025,E06,15018800,Medical Incident,02/17/2015,02/17/2015,02/17/2015 11:43:59 PM,02/17/2015 11:44:51 PM,02/17/2015 11:45:13 PM,02/17/2015 11:46:32 PM,02/17/2015 11:47:48 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Code 2 Transport,02/18/2015 12:01:12 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",150484025-E06 -151800891,CD2,15068639,Structure Fire,06/29/2015,06/29/2015,06/29/2015 08:55:41 AM,06/29/2015 08:56:03 AM,06/29/2015 09:12:36 AM,06/29/2015 09:12:36 AM,06/29/2015 09:21:12 AM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Code 2 Transport,06/29/2015 01:03:52 PM,1100 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8473,3,3,3,false,Fire,3,CHIEF,20,9,7,Oceanview/Merced/Ingleside,"(37.7228660555737, -122.456215121014)",151800891-CD2 -160983334,62,16039078,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:14:47 PM,04/07/2016 07:14:47 PM,04/07/2016 07:15:15 PM,04/07/2016 07:15:26 PM,04/07/2016 07:39:23 PM,04/07/2016 07:55:55 PM,04/07/2016 08:22:01 PM,Code 2 Transport,04/07/2016 08:52:06 PM,GRANT AV/BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",160983334-62 -160931212,AM02,16036797,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:29:28 AM,04/02/2016 10:32:32 AM,04/02/2016 10:32:57 AM,04/02/2016 10:34:38 AM,04/02/2016 10:45:06 AM,04/02/2016 10:51:14 AM,04/02/2016 11:14:05 AM,Code 3 Transport,04/02/2016 11:55:57 AM,1200 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7211257483752, -122.389791072632)",160931212-AM02 -141390118,KM07,14047508,Medical Incident,05/19/2014,05/18/2014,05/19/2014 12:55:41 AM,05/19/2014 12:58:34 AM,05/19/2014 12:59:30 AM,05/19/2014 12:59:30 AM,05/19/2014 01:05:01 AM,05/19/2014 01:07:09 AM,04/25/2016 01:17:15 PM,Code 2 Transport,05/19/2014 01:40:56 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",141390118-KM07 -143033904,E01,14107291,Alarms,10/30/2014,10/30/2014,10/30/2014 10:08:09 PM,10/30/2014 10:09:09 PM,10/30/2014 10:09:14 PM,10/30/2014 10:10:31 PM,10/30/2014 10:12:46 PM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,Fire,10/30/2014 10:18:09 PM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",143033904-E01 -141160217,84,14039186,Medical Incident,04/26/2014,04/26/2014,04/26/2014 01:52:04 PM,04/26/2014 01:55:49 PM,04/26/2014 01:56:11 PM,04/26/2014 01:56:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Patient Declined Transport,04/26/2014 02:16:45 PM,600 Block of EDDY ST,SAN FRANCISCO,94109,B02,3,1643,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",141160217-84 -142732819,RS2,14095805,Traffic Collision,09/30/2014,09/30/2014,09/30/2014 05:33:20 PM,09/30/2014 05:34:58 PM,09/30/2014 05:35:45 PM,09/30/2014 05:37:11 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Code 2 Transport,09/30/2014 05:40:36 PM,MARTIN LUTHER KING DR/MUSIC CONCOURSE DR,,94118,B07,22,7744,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,8,7,5,Golden Gate Park,"(37.7687765289695, -122.468334201321)",142732819-RS2 -143591618,62,14128492,Medical Incident,12/25/2014,12/25/2014,12/25/2014 03:59:05 PM,12/25/2014 03:59:32 PM,12/25/2014 04:00:39 PM,12/25/2014 04:02:01 PM,12/25/2014 04:07:56 PM,12/25/2014 04:27:35 PM,12/25/2014 05:06:23 PM,Code 2 Transport,12/25/2014 05:12:56 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",143591618-62 -153012987,74,15115551,Medical Incident,10/28/2015,10/28/2015,10/28/2015 05:06:50 PM,10/28/2015 05:06:50 PM,10/28/2015 05:08:13 PM,10/28/2015 05:08:29 PM,10/28/2015 05:10:14 PM,10/28/2015 05:25:28 PM,10/28/2015 05:36:07 PM,Code 3 Transport,10/28/2015 06:17:32 PM,OAK ST/COLE ST,San Francisco,94117,B05,21,4524,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.7714601419293, -122.450600179338)",153012987-74 -160970563,65,16038291,Medical Incident,04/06/2016,04/05/2016,04/06/2016 06:57:24 AM,04/06/2016 06:58:18 AM,04/06/2016 06:59:11 AM,04/06/2016 06:59:20 AM,04/06/2016 07:12:00 AM,04/06/2016 07:24:37 AM,04/06/2016 07:56:21 AM,Code 2 Transport,04/06/2016 08:25:42 AM,100 Block of SANTOS ST,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",160970563-65 -152393767,89,15091203,Medical Incident,08/27/2015,08/27/2015,08/27/2015 08:49:28 PM,08/27/2015 08:50:20 PM,08/27/2015 08:51:01 PM,08/27/2015 08:51:09 PM,08/27/2015 08:53:49 PM,08/27/2015 09:13:16 PM,08/27/2015 09:25:37 PM,Code 2 Transport,08/27/2015 09:50:32 PM,600 Block of SUTTER ST,San Francisco,94102,B01,3,1412,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",152393767-89 -142771193,E34,14097317,Medical Incident,10/04/2014,10/04/2014,10/04/2014 09:11:37 AM,10/04/2014 09:11:54 AM,10/04/2014 09:12:28 AM,10/04/2014 09:13:14 AM,10/04/2014 09:15:57 AM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Code 2 Transport,10/04/2014 09:44:03 AM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",142771193-E34 -151593421,AR1,15060916,Structure Fire,06/08/2015,06/08/2015,06/08/2015 08:12:29 PM,06/08/2015 08:14:04 PM,06/08/2015 08:28:23 PM,06/08/2015 08:30:16 PM,06/08/2015 08:42:30 PM,04/25/2016 01:10:07 PM,04/25/2016 01:10:07 PM,Fire,06/08/2015 09:04:27 PM,200 Block of CAPP ST,San Francisco,94110,B02,7,5246,3,3,3,false,Fire,1,INVESTIGATION,12,2,9,Mission,"(37.7627107311563, -122.4182793889)",151593421-AR1 -160923284,86,16036586,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:52:26 PM,04/01/2016 07:54:16 PM,04/01/2016 07:54:35 PM,04/01/2016 07:55:03 PM,04/01/2016 08:02:12 PM,04/01/2016 08:09:35 PM,04/01/2016 08:27:32 PM,Code 2 Transport,04/01/2016 08:57:49 PM,0 Block of BRUSSELS ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7312651168885, -122.40737168547)",160923284-86 -150392220,E39,15015229,Medical Incident,02/08/2015,02/08/2015,02/08/2015 03:16:48 PM,02/08/2015 03:17:12 PM,02/08/2015 03:17:30 PM,02/08/2015 03:19:09 PM,02/08/2015 03:22:13 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Code 2 Transport,02/08/2015 03:48:43 PM,400 Block of LANSDALE AVE,San Francisco,94127,B09,39,8257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7361216480123, -122.456086792055)",150392220-E39 -141160373,88,14039328,Medical Incident,04/26/2014,04/26/2014,04/26/2014 10:25:22 PM,04/26/2014 10:26:56 PM,04/26/2014 10:27:46 PM,04/26/2014 10:28:05 PM,04/26/2014 10:36:59 PM,04/26/2014 10:48:27 PM,04/26/2014 10:53:40 PM,Code 2 Transport,04/26/2014 11:20:47 PM,TREAT AV/PRECITA AV,SAN FRANCISCO,94110,B06,9,5665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7468250015212, -122.412547050685)",141160373-88 -161002134,55,16039818,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:54:15 PM,04/09/2016 03:56:07 PM,04/09/2016 03:57:45 PM,04/09/2016 03:58:01 PM,04/09/2016 04:27:10 PM,04/09/2016 04:49:22 PM,04/09/2016 05:19:14 PM,Code 2 Transport,04/09/2016 05:33:05 PM,SUNSET BL/TARAVAL ST,San Francisco,94116,B08,18,7555,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7422250284614, -122.494443282149)",161002134-55 -143223553,75,14114175,Medical Incident,11/18/2014,11/18/2014,11/18/2014 09:19:13 PM,11/18/2014 09:21:10 PM,11/18/2014 09:21:36 PM,11/18/2014 09:22:11 PM,11/18/2014 09:26:36 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,No Merit,11/18/2014 09:33:53 PM,COLE ST/GROVE ST,San Francisco,94117,B05,21,4535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7742487344431, -122.451163296988)",143223553-75 -150941842,E02,15035739,Medical Incident,04/04/2015,04/04/2015,04/04/2015 01:19:39 PM,04/04/2015 01:21:30 PM,04/04/2015 01:21:48 PM,04/04/2015 01:22:57 PM,04/04/2015 01:27:50 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 01:34:32 PM,POST ST/POWELL ST,San Francisco,94108,B01,1,1362,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7882931920047, -122.408401551902)",150941842-E02 -150942983,E20,15035844,Outside Fire,04/04/2015,04/04/2015,04/04/2015 06:50:13 PM,04/04/2015 06:51:27 PM,04/04/2015 06:51:37 PM,04/04/2015 06:53:28 PM,04/04/2015 06:55:07 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Fire,04/04/2015 07:10:51 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Fire,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",150942983-E20 -142130112,E06,14073687,Other,08/01/2014,07/31/2014,08/01/2014 12:41:27 AM,08/01/2014 12:43:20 AM,08/01/2014 12:43:46 AM,08/01/2014 12:45:37 AM,08/01/2014 12:47:11 AM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Fire,08/01/2014 12:59:03 AM,3500 Block of JOSE SARRIA CT,San Francisco,94114,B05,6,5233,3,3,3,false,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7642498917209, -122.43201489379)",142130112-E06 -150600917,E32,15022842,Citizen Assist / Service Call,03/01/2015,03/01/2015,03/01/2015 08:19:48 AM,03/01/2015 08:22:26 AM,03/01/2015 08:22:35 AM,03/01/2015 08:23:41 AM,03/01/2015 08:26:33 AM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Other,03/01/2015 08:36:42 AM,SAN JOSE AV/RANDALL ST,San Francisco,94110,B06,32,8112,3,3,3,false,Alarm,1,ENGINE,1,6,8,Bernal Heights,"(37.7398692305663, -122.42414715532)",150600917-E32 -143423136,E38,14121658,Medical Incident,12/08/2014,12/08/2014,12/08/2014 06:28:23 PM,12/08/2014 06:29:19 PM,12/08/2014 06:29:46 PM,12/08/2014 06:30:42 PM,12/08/2014 06:34:26 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 06:40:33 PM,2700 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,2,2,false,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7881185452243, -122.439595812264)",143423136-E38 -153263606,68,15125679,Medical Incident,11/22/2015,11/22/2015,11/22/2015 11:24:19 PM,11/22/2015 11:24:19 PM,11/22/2015 11:24:35 PM,11/22/2015 11:24:43 PM,11/22/2015 11:30:48 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,Patient Declined Transport,11/22/2015 11:42:49 PM,0 Block of CLEARY CT,San Francisco,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7841466012998, -122.426445754167)",153263606-68 -150040883,E08,15001408,Medical Incident,01/04/2015,01/04/2015,01/04/2015 08:58:24 AM,01/04/2015 09:00:41 AM,01/04/2015 09:00:54 AM,01/04/2015 09:02:12 AM,01/04/2015 09:04:31 AM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Code 2 Transport,01/04/2015 09:26:06 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",150040883-E08 -152861239,KM04,15109800,Medical Incident,10/13/2015,10/13/2015,10/13/2015 10:10:29 AM,10/13/2015 10:11:32 AM,10/13/2015 10:12:04 AM,10/13/2015 10:12:41 AM,10/13/2015 10:17:13 AM,10/13/2015 10:40:57 AM,10/13/2015 11:23:04 AM,Code 2 Transport,10/13/2015 11:27:37 AM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7788157426427, -122.409325210496)",152861239-KM04 -160940690,52,16037168,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:53:59 AM,04/03/2016 05:54:34 AM,04/03/2016 05:56:21 AM,04/03/2016 05:56:28 AM,04/03/2016 06:12:44 AM,04/03/2016 06:24:23 AM,04/03/2016 06:34:39 AM,Code 2 Transport,04/03/2016 06:58:43 AM,0 Block of CARNELIAN WAY,San Francisco,94131,B06,26,8171,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7477530185212, -122.441891753212)",160940690-52 -151013891,E31,15038414,Medical Incident,04/11/2015,04/11/2015,04/11/2015 11:49:31 PM,04/11/2015 11:49:31 PM,04/11/2015 11:50:04 PM,04/11/2015 11:51:43 PM,04/11/2015 11:53:01 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Code 2 Transport,04/12/2015 12:00:04 AM,200 Block of 11TH AVE,San Francisco,94118,B07,31,7141,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.783634135396, -122.469908011173)",151013891-E31 -160933877,55,16037078,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:11:28 PM,04/02/2016 11:13:09 PM,04/02/2016 11:13:38 PM,04/02/2016 11:13:58 PM,04/02/2016 11:18:05 PM,04/02/2016 11:26:05 PM,04/02/2016 11:34:27 PM,Code 2 Transport,04/03/2016 12:14:09 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160933877-55 -152053287,B09,15078214,Alarms,07/24/2015,07/24/2015,07/24/2015 07:15:19 PM,07/24/2015 07:16:30 PM,07/24/2015 07:16:50 PM,07/24/2015 07:18:07 PM,07/24/2015 07:22:11 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Fire,07/24/2015 07:28:33 PM,8400 Block of OCEANVIEW TER,San Francisco,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,3,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",152053287-B09 -160994070,88,16039538,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:37:27 PM,04/08/2016 11:37:27 PM,04/08/2016 11:37:44 PM,04/08/2016 11:37:57 PM,04/08/2016 11:48:25 PM,04/08/2016 11:57:47 PM,04/09/2016 12:12:42 AM,Code 2 Transport,04/09/2016 12:58:18 AM,2500 Block of MARIN ST,San Francisco,94124,B10,9,6417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7481117411226, -122.402741618876)",160994070-88 -153250055,E07,15124929,Medical Incident,11/21/2015,11/20/2015,11/21/2015 12:18:20 AM,11/21/2015 12:20:03 AM,11/21/2015 12:20:34 AM,11/21/2015 12:21:58 AM,11/21/2015 12:25:42 AM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Code 2 Transport,11/21/2015 12:38:33 AM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",153250055-E07 -151152239,AM08,15043516,Medical Incident,04/25/2015,04/25/2015,04/25/2015 03:46:23 PM,04/25/2015 03:47:46 PM,04/25/2015 03:48:06 PM,04/25/2015 03:48:58 PM,04/25/2015 04:04:05 PM,04/25/2015 04:09:24 PM,04/25/2015 04:44:16 PM,Code 2 Transport,04/25/2015 05:10:32 PM,0 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,2,2,2,false,Non Life-threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",151152239-AM08 -160943429,52,16037431,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:28:30 PM,04/03/2016 09:30:24 PM,04/03/2016 09:32:24 PM,04/03/2016 09:32:33 PM,04/03/2016 09:47:08 PM,04/03/2016 10:01:19 PM,04/03/2016 10:13:41 PM,Code 2 Transport,04/03/2016 11:00:56 PM,7TH ST/16TH ST,San Francisco,94158,B03,29,2414,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,10,Mission Bay,"(37.7665445770442, -122.39506054595)",160943429-52 -143090606,E39,14109277,Medical Incident,11/05/2014,11/04/2014,11/05/2014 07:20:26 AM,11/05/2014 07:21:26 AM,11/05/2014 07:22:17 AM,11/05/2014 07:24:21 AM,11/05/2014 07:31:14 AM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Code 2 Transport,11/05/2014 07:47:27 AM,0 Block of SAN JACINTO WAY,San Francisco,94127,B09,39,8551,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7351849311429, -122.463509193108)",143090606-E39 -142420903,AM08,14084163,Medical Incident,08/30/2014,08/30/2014,08/30/2014 09:04:25 AM,08/30/2014 09:07:35 AM,08/30/2014 09:11:59 AM,08/30/2014 09:27:13 AM,08/30/2014 09:27:13 AM,08/30/2014 09:31:20 AM,08/30/2014 09:56:17 AM,Code 2 Transport,08/30/2014 10:36:45 AM,0 Block of LYNDHURST DR,San Francisco,94132,B08,19,8726,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7242907364176, -122.473796333072)",142420903-AM08 -151662201,E01,15063530,Medical Incident,06/15/2015,06/15/2015,06/15/2015 03:15:10 PM,06/15/2015 03:17:06 PM,06/15/2015 03:22:34 PM,06/15/2015 03:22:41 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/15/2015 03:23:18 PM,1200 Block of HOWARD ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7756454671917, -122.412432457912)",151662201-E01 -160961757,52,16038006,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:44:09 PM,04/05/2016 12:44:09 PM,04/05/2016 12:47:13 PM,04/05/2016 12:47:18 PM,04/05/2016 01:00:57 PM,04/05/2016 01:03:09 PM,04/05/2016 01:27:45 PM,Code 2 Transport,04/05/2016 02:01:39 PM,100 Block of 2ND ST,San Francisco,94105,B03,1,2145,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877542424451, -122.399575303785)",160961757-52 -160974114,63,16038663,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:42:38 PM,04/06/2016 08:44:25 PM,04/06/2016 08:47:15 PM,04/06/2016 08:47:29 PM,04/06/2016 09:09:25 PM,04/06/2016 09:09:32 PM,04/06/2016 09:30:43 PM,Code 2 Transport,04/06/2016 10:00:23 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7196213473258, -122.438507243932)",160974114-63 -142632567,53,14092085,Medical Incident,09/20/2014,09/20/2014,09/20/2014 05:21:40 PM,09/20/2014 05:22:28 PM,09/20/2014 05:23:45 PM,09/20/2014 05:24:02 PM,09/20/2014 05:31:40 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Against Medical Advice,09/20/2014 06:11:56 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",142632567-53 -141532692,T02,14052680,Medical Incident,06/02/2014,06/02/2014,06/02/2014 06:27:14 PM,06/02/2014 06:29:58 PM,06/02/2014 07:06:01 PM,06/02/2014 07:07:34 PM,06/02/2014 07:15:22 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Code 2 Transport,06/02/2014 07:24:37 PM,1200 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,false,Non Life-threatening,1,TRUCK,2,4,3,Nob Hill,"(37.788955611099, -122.417825829364)",141532692-T02 -152512183,E03,15095911,Medical Incident,09/08/2015,09/08/2015,09/08/2015 01:47:55 PM,09/08/2015 01:48:55 PM,09/08/2015 01:49:17 PM,09/08/2015 01:49:35 PM,09/08/2015 01:51:23 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Code 2 Transport,09/08/2015 02:04:23 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",152512183-E03 -153092101,RC1,15118764,Medical Incident,11/05/2015,11/05/2015,11/05/2015 01:43:36 PM,11/05/2015 01:43:36 PM,11/05/2015 01:49:05 PM,11/05/2015 01:50:55 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Patient Declined Transport,11/05/2015 01:53:32 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",153092101-RC1 -160930906,71,16036765,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:58:05 AM,04/02/2016 08:58:51 AM,04/02/2016 08:59:31 AM,04/02/2016 09:00:00 AM,04/02/2016 09:08:16 AM,04/02/2016 09:22:03 AM,04/02/2016 09:35:23 AM,Code 2 Transport,04/02/2016 09:51:04 AM,1900 Block of 43RD AVE,San Francisco,94116,B08,23,7646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7503116383635, -122.501926047564)",160930906-71 -152711223,E06,15103751,Medical Incident,09/28/2015,09/28/2015,09/28/2015 10:17:09 AM,09/28/2015 10:18:34 AM,09/28/2015 10:19:48 AM,09/28/2015 10:23:47 AM,09/28/2015 10:23:47 AM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Patient Declined Transport,09/28/2015 10:36:50 AM,3600 Block of 16TH ST,San Francisco,94114,B05,6,5233,3,3,3,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.764225010443, -122.434199642473)",152711223-E06 -143051879,2R01,14107926,,11/01/2014,11/01/2014,11/01/2014 11:46:02 AM,11/01/2014 11:46:02 AM,11/01/2014 11:53:42 AM,11/01/2014 11:53:42 AM,11/01/2014 11:53:42 AM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Fire,11/01/2014 11:54:01 AM,46TH AV/SLOAT BL,San Francisco,94132,B08,23,7733,3,3,3,false,Alarm,1,ADMIN,0,8,7,Lakeshore,"(37.7355578832844, -122.504185328317)",143051879-2R01 -160963395,85,16038148,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:00:40 PM,04/05/2016 07:00:40 PM,04/05/2016 07:03:56 PM,04/05/2016 07:04:08 PM,04/05/2016 07:11:15 PM,04/05/2016 07:20:30 PM,04/05/2016 07:38:34 PM,Code 2 Transport,04/05/2016 08:11:08 PM,14TH ST/HARRISON ST,San Francisco,94103,B02,7,5216,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7686712258347, -122.413396248713)",160963395-85 -142732741,E09,14095799,Medical Incident,09/30/2014,09/30/2014,09/30/2014 05:12:08 PM,09/30/2014 05:16:57 PM,09/30/2014 05:20:02 PM,09/30/2014 05:21:36 PM,09/30/2014 05:23:17 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,No Merit,09/30/2014 05:27:28 PM,2000 Block of MCKINNON AVE,San Francisco,94124,B10,9,6425,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7405654947946, -122.397682095894)",142732741-E09 -152491688,E03,15095102,Medical Incident,09/06/2015,09/06/2015,09/06/2015 12:50:32 PM,09/06/2015 12:50:55 PM,09/06/2015 12:51:07 PM,09/06/2015 12:53:04 PM,09/06/2015 12:55:32 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,Code 2 Transport,09/06/2015 01:03:49 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",152491688-E03 -160943513,79,16037440,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:00:21 PM,04/03/2016 10:00:52 PM,04/03/2016 10:01:13 PM,04/03/2016 10:01:28 PM,04/03/2016 10:07:43 PM,04/03/2016 10:18:48 PM,04/03/2016 10:26:30 PM,Code 3 Transport,04/03/2016 11:09:23 PM,100 Block of BOSWORTH ST,San Francisco,94112,B06,32,5633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,8,Outer Mission,"(37.7334588269513, -122.428119241701)",160943513-79 -143482125,63,14124267,Medical Incident,12/14/2014,12/14/2014,12/14/2014 03:04:54 PM,12/14/2014 03:04:54 PM,12/14/2014 03:05:30 PM,12/14/2014 03:07:01 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,No Merit,12/14/2014 03:11:16 PM,15TH ST/BRYANT ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7669034447897, -122.410609802507)",143482125-63 -151780147,T03,15067596,Alarms,06/27/2015,06/26/2015,06/27/2015 12:43:31 AM,06/27/2015 12:44:25 AM,06/27/2015 12:44:30 AM,06/27/2015 12:46:08 AM,06/27/2015 12:49:22 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Fire,06/27/2015 01:01:04 AM,1900 Block of WASHINGTON ST,San Francisco,94109,B04,38,3226,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7926833548965, -122.425326587971)",151780147-T03 -160953677,60,16037798,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:57:23 PM,04/04/2016 08:59:49 PM,04/04/2016 09:01:19 PM,04/04/2016 09:02:21 PM,04/04/2016 09:11:29 PM,04/04/2016 09:20:41 PM,04/04/2016 09:45:20 PM,Code 2 Transport,04/04/2016 10:05:17 PM,400 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,3,E,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,North Beach,"(37.8063948128853, -122.414598058157)",160953677-60 -152892114,AM16,15111051,Medical Incident,10/16/2015,10/16/2015,10/16/2015 02:20:23 PM,10/16/2015 02:20:23 PM,10/16/2015 02:21:23 PM,10/16/2015 02:22:07 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,No Merit,10/16/2015 02:35:14 PM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",152892114-AM16 -151152476,RC3,15043540,Medical Incident,04/25/2015,04/25/2015,04/25/2015 04:51:48 PM,04/25/2015 04:54:16 PM,04/25/2015 05:00:51 PM,04/25/2015 05:00:51 PM,04/25/2015 05:00:51 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Code 2 Transport,04/25/2015 05:13:49 PM,26TH ST/VALENCIA ST,San Francisco,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7489065309397, -122.420353712148)",151152476-RC3 -141901516,86,14065815,Medical Incident,07/09/2014,07/09/2014,07/09/2014 12:07:07 PM,07/09/2014 12:07:07 PM,07/09/2014 12:08:18 PM,07/09/2014 12:08:32 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Cancelled,07/09/2014 12:14:15 PM,2900 Block of 26TH ST,San Francisco,94110,B06,9,5616,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7495741641705, -122.408349594359)",141901516-86 -153250591,T05,15124996,Citizen Assist / Service Call,11/21/2015,11/20/2015,11/21/2015 05:56:33 AM,11/21/2015 05:57:38 AM,11/21/2015 05:57:50 AM,11/21/2015 06:00:10 AM,11/21/2015 06:05:01 AM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Fire,11/21/2015 06:06:29 AM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",153250591-T05 -143550286,58,14126764,Medical Incident,12/21/2014,12/20/2014,12/21/2014 01:39:56 AM,12/21/2014 01:43:53 AM,12/21/2014 01:44:00 AM,12/21/2014 01:44:12 AM,12/21/2014 01:50:27 AM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Cancelled,12/21/2014 01:51:18 AM,4TH ST/BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7757873146535, -122.393355126399)",143550286-58 -150322816,E03,15012461,Medical Incident,02/01/2015,02/01/2015,02/01/2015 05:51:24 PM,02/01/2015 05:56:17 PM,02/01/2015 06:01:04 PM,02/01/2015 06:02:23 PM,02/01/2015 06:08:27 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Other,02/01/2015 06:20:31 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",150322816-E03 -143491507,E09,14124615,Other,12/15/2014,12/15/2014,12/15/2014 12:28:05 PM,12/15/2014 12:28:05 PM,12/15/2014 12:28:33 PM,12/15/2014 12:29:58 PM,12/15/2014 12:29:58 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 12:40:48 PM,HAMPSHIRE ST/CESAR CHAVEZ ST,San Francisco,94110,B06,9,5616,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7487664800327, -122.406757777171)",143491507-E09 -150782959,KM01,15029994,Medical Incident,03/19/2015,03/19/2015,03/19/2015 05:26:30 PM,03/19/2015 05:28:09 PM,03/19/2015 05:29:56 PM,03/19/2015 05:30:17 PM,03/19/2015 05:35:42 PM,03/19/2015 06:53:46 PM,03/19/2015 06:54:03 PM,Code 2 Transport,03/19/2015 07:01:43 PM,1500 Block of 9TH AVE,San Francisco,94122,B08,22,7335,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7593750369715, -122.466054263269)",150782959-KM01 -153281180,65,15126187,Medical Incident,11/24/2015,11/24/2015,11/24/2015 10:21:57 AM,11/24/2015 10:23:34 AM,11/24/2015 10:24:20 AM,11/24/2015 10:24:27 AM,11/24/2015 10:33:40 AM,11/24/2015 10:57:21 AM,11/24/2015 11:10:38 AM,Code 2 Transport,11/24/2015 11:44:08 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",153281180-65 -142894094,E16,14102060,Medical Incident,10/16/2014,10/16/2014,10/16/2014 11:02:49 PM,10/16/2014 11:02:49 PM,10/16/2014 11:04:05 PM,10/16/2014 11:05:56 PM,10/16/2014 11:06:57 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Against Medical Advice,10/16/2014 11:12:15 PM,CHESTNUT ST/PIERCE ST,San Francisco,94123,B04,16,3661,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8004034299938, -122.439504170635)",142894094-E16 -151971839,74,15075134,Medical Incident,07/16/2015,07/16/2015,07/16/2015 01:41:48 PM,07/16/2015 01:42:34 PM,07/16/2015 01:43:12 PM,07/16/2015 01:43:22 PM,07/16/2015 01:47:05 PM,07/16/2015 02:08:37 PM,07/16/2015 02:53:08 PM,Code 2 Transport,07/16/2015 03:01:04 PM,200 Block of 30TH ST,San Francisco,94131,B06,11,5574,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.742133681941, -122.425018174758)",151971839-74 -160960594,52,16037905,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:41:36 AM,04/05/2016 07:44:36 AM,04/05/2016 07:44:57 AM,04/05/2016 07:45:12 AM,04/05/2016 07:56:06 AM,04/05/2016 08:23:05 AM,04/05/2016 08:56:37 AM,Code 2 Transport,04/05/2016 09:12:29 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160960594-52 -152840233,E03,15108896,Medical Incident,10/11/2015,10/10/2015,10/11/2015 01:15:14 AM,10/11/2015 01:16:06 AM,10/11/2015 01:16:26 AM,10/11/2015 01:17:55 AM,10/11/2015 01:20:49 AM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Code 2 Transport,10/11/2015 01:24:57 AM,2100 Block of POLK ST,San Francisco,94109,B04,41,3126,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Russian Hill,"(37.7964138831057, -122.421932885069)",152840233-E03 -153213974,B07,15123653,Structure Fire,11/17/2015,11/17/2015,11/17/2015 09:58:40 PM,11/17/2015 10:01:06 PM,11/17/2015 10:01:25 PM,11/17/2015 10:02:11 PM,11/17/2015 10:05:05 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Fire,11/17/2015 10:12:30 PM,2400 Block of GEARY BLVD,San Francisco,94115,B05,10,4261,3,3,3,false,Alarm,1,CHIEF,7,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",153213974-B07 -160930808,77,16036754,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:20:17 AM,04/02/2016 08:22:03 AM,04/02/2016 08:22:35 AM,04/02/2016 08:22:47 AM,04/02/2016 08:50:12 AM,04/02/2016 08:51:08 AM,04/02/2016 09:12:09 AM,Code 2 Transport,04/02/2016 09:38:38 AM,300 Block of HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7839735143019, -122.416045465656)",160930808-77 -152002643,53,15076292,Medical Incident,07/19/2015,07/19/2015,07/19/2015 05:02:22 PM,07/19/2015 05:02:22 PM,07/19/2015 05:02:37 PM,07/19/2015 05:03:01 PM,07/19/2015 05:06:15 PM,04/25/2016 01:09:23 PM,04/25/2016 01:09:23 PM,Patient Declined Transport,07/19/2015 05:36:52 PM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",152002643-53 -160943619,88,16037453,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:40:19 PM,04/03/2016 10:41:32 PM,04/03/2016 10:42:27 PM,04/03/2016 10:43:06 PM,04/03/2016 10:49:48 PM,04/03/2016 11:06:48 PM,04/03/2016 11:16:12 PM,Code 2 Transport,04/04/2016 12:07:54 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",160943619-88 -151212591,T14,15045945,Water Rescue,05/01/2015,05/01/2015,05/01/2015 04:21:25 PM,05/01/2015 04:22:51 PM,05/01/2015 04:25:33 PM,05/01/2015 04:26:52 PM,05/01/2015 04:33:11 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Fire,05/01/2015 04:47:12 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,TRUCK,2,7,2,Presidio,"(37.8066581989584, -122.47471662098)",151212591-T14 -143152680,E01,14111667,Medical Incident,11/11/2014,11/11/2014,11/11/2014 06:08:10 PM,11/11/2014 06:10:22 PM,11/11/2014 06:10:57 PM,11/11/2014 06:13:24 PM,11/11/2014 06:13:24 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Code 2 Transport,11/11/2014 06:23:11 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",143152680-E01 -152762132,E02,15105813,Medical Incident,10/03/2015,10/03/2015,10/03/2015 02:34:31 PM,10/03/2015 02:34:46 PM,10/03/2015 02:35:14 PM,10/03/2015 02:36:40 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Patient Declined Transport,10/03/2015 02:38:18 PM,JEFFERSON ST/LEAVENWORTH ST,San Francisco,94109,B01,28,947,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",152762132-E02 -142901087,B06,14102173,Structure Fire,10/17/2014,10/17/2014,10/17/2014 09:54:44 AM,10/17/2014 09:54:44 AM,10/17/2014 09:54:49 AM,10/17/2014 09:55:19 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Fire,10/17/2014 09:59:46 AM,800 Block of TOLAND ST,San Francisco,94124,B10,9,6434,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7418599052661, -122.400654312614)",142901087-B06 -160941269,KM04,16037217,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:22:50 AM,04/03/2016 10:23:39 AM,04/03/2016 10:24:07 AM,04/03/2016 10:25:06 AM,04/03/2016 10:34:52 AM,04/03/2016 10:54:17 AM,04/03/2016 11:18:35 AM,Code 2 Transport,04/03/2016 11:46:25 AM,HYDE ST/MCALLISTER ST,San Francisco,94102,B02,36,1552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160941269-KM04 -141100199,E05,14037127,Medical Incident,04/20/2014,04/20/2014,04/20/2014 03:20:10 PM,04/20/2014 03:20:10 PM,04/20/2014 03:20:10 PM,04/20/2014 03:20:10 PM,04/20/2014 03:20:10 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/20/2014 03:33:30 PM,1600 Block of LAGUNA ST,,94109,B04,38,3364,,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7860242243988, -122.42812650503)",141100199-E05 -160990838,75,16039221,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:48:36 AM,04/08/2016 08:51:54 AM,04/08/2016 08:52:22 AM,04/08/2016 08:52:22 AM,04/08/2016 08:58:50 AM,04/08/2016 09:05:04 AM,04/08/2016 09:29:13 AM,Code 2 Transport,04/08/2016 09:58:15 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160990838-75 -152880230,E23,15110513,Medical Incident,10/15/2015,10/14/2015,10/15/2015 02:05:39 AM,10/15/2015 02:07:12 AM,10/15/2015 02:07:38 AM,10/15/2015 02:10:47 AM,10/15/2015 02:15:45 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,No Merit,10/15/2015 02:16:46 AM,46TH AV/WAWONA ST,San Francisco,94116,B08,18,7711,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7361821250694, -122.504227749875)",152880230-E23 -153254156,E08,15125331,Structure Fire,11/21/2015,11/21/2015,11/21/2015 11:44:04 PM,11/21/2015 11:44:04 PM,11/21/2015 11:44:15 PM,11/21/2015 11:45:04 PM,11/21/2015 11:47:17 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Fire,11/21/2015 11:47:44 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",153254156-E08 -160981363,56,16038867,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:35:48 AM,04/07/2016 10:36:32 AM,04/07/2016 10:36:45 AM,04/07/2016 10:37:01 AM,04/07/2016 10:44:06 AM,04/07/2016 11:12:20 AM,04/07/2016 11:34:59 AM,Code 2 Transport,04/07/2016 12:08:29 PM,300 Block of SPEAR ST,San Francisco,94105,B03,35,2113,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7894924999912, -122.390150869347)",160981363-56 -150452339,B02,15017564,Structure Fire,02/14/2015,02/14/2015,02/14/2015 04:01:39 PM,02/14/2015 04:02:34 PM,02/14/2015 04:02:59 PM,02/14/2015 04:04:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 04:17:11 PM,1700 Block of UNION ST,San Francisco,94123,B04,16,3335,3,3,3,false,Alarm,1,CHIEF,8,4,2,Marina,"(37.7979757626675, -122.428080525252)",150452339-B02 -151712464,E28,15065423,Outside Fire,06/20/2015,06/20/2015,06/20/2015 05:18:40 PM,06/20/2015 05:18:54 PM,06/20/2015 05:19:13 PM,06/20/2015 05:20:02 PM,06/20/2015 05:21:42 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Fire,06/20/2015 05:29:19 PM,JEFFERSON ST/POWELL ST,San Francisco,94133,B01,28,1344,3,3,3,false,Fire,1,ENGINE,1,1,3,North Beach,"(37.808624849677, -122.412523835376)",151712464-E28 -153142394,61,15120721,Medical Incident,11/10/2015,11/10/2015,11/10/2015 03:30:15 PM,11/10/2015 03:32:38 PM,11/10/2015 03:34:16 PM,11/10/2015 03:34:32 PM,11/10/2015 03:46:26 PM,11/10/2015 04:01:42 PM,11/10/2015 04:16:49 PM,Code 2 Transport,11/10/2015 04:46:23 PM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",153142394-61 -153060522,E08,15117482,Medical Incident,11/02/2015,11/01/2015,11/02/2015 06:41:47 AM,11/02/2015 06:44:12 AM,11/02/2015 06:44:59 AM,11/02/2015 06:46:25 AM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Code 2 Transport,11/02/2015 06:50:42 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7775775502239, -122.411096952518)",153060522-E08 -141940663,77,14067196,Medical Incident,07/13/2014,07/12/2014,07/13/2014 05:55:27 AM,07/13/2014 05:56:47 AM,07/13/2014 06:00:43 AM,07/13/2014 06:01:10 AM,07/13/2014 06:07:14 AM,07/13/2014 06:19:36 AM,07/13/2014 06:55:52 AM,Code 2 Transport,07/13/2014 07:27:09 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.783815387293, -122.432878599409)",141940663-77 -150272362,KM08,15010467,Medical Incident,01/27/2015,01/27/2015,01/27/2015 03:36:21 PM,01/27/2015 03:36:21 PM,01/27/2015 03:36:43 PM,01/27/2015 03:37:06 PM,01/27/2015 03:43:57 PM,01/27/2015 03:50:11 PM,01/27/2015 04:16:42 PM,Code 2 Transport,01/27/2015 04:44:48 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",150272362-KM08 -141040356,E10,14035240,Medical Incident,04/14/2014,04/14/2014,04/14/2014 10:10:36 PM,04/14/2014 10:11:47 PM,04/14/2014 10:12:08 PM,04/14/2014 10:13:23 PM,04/14/2014 10:16:29 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Patient Declined Transport,04/14/2014 10:33:55 PM,2100 Block of GEARY BLVD,SAN FRANCISCO,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.783357968274, -122.438601387081)",141040356-E10 -142402178,E38,14083544,Traffic Collision,08/28/2014,08/28/2014,08/28/2014 03:36:18 PM,08/28/2014 03:36:18 PM,08/28/2014 03:37:53 PM,08/28/2014 03:38:28 PM,08/28/2014 03:39:56 PM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,Code 2 Transport,08/28/2014 03:49:24 PM,SUTTER ST/GOUGH ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,2,Western Addition,"(37.7871304332186, -122.425046954972)",142402178-E38 -141180341,E02,14039932,Medical Incident,04/28/2014,04/28/2014,04/28/2014 07:26:03 PM,04/28/2014 07:27:08 PM,04/28/2014 07:27:33 PM,04/28/2014 07:27:46 PM,04/28/2014 07:29:55 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Code 2 Transport,04/28/2014 07:45:01 PM,1600 Block of THE EMBARCADERONORTH ST,,94133,B01,28,941,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8084350175869, -122.410774214375)",141180341-E02 -150052021,E08,15001890,Medical Incident,01/05/2015,01/05/2015,01/05/2015 02:11:03 PM,01/05/2015 02:11:56 PM,01/05/2015 02:12:43 PM,01/05/2015 02:14:11 PM,01/05/2015 02:19:46 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Fire,01/05/2015 02:20:34 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",150052021-E08 -141732782,54,14059792,Medical Incident,06/22/2014,06/22/2014,06/22/2014 07:37:59 PM,06/22/2014 07:40:10 PM,06/22/2014 08:18:52 PM,06/22/2014 08:18:52 PM,06/22/2014 08:18:52 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Code 2 Transport,06/22/2014 08:23:37 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",141732782-54 -151623456,RS1,15062060,Medical Incident,06/11/2015,06/11/2015,06/11/2015 08:23:29 PM,06/11/2015 08:24:00 PM,06/11/2015 08:24:36 PM,06/11/2015 08:26:08 PM,06/11/2015 08:26:08 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Code 2 Transport,06/11/2015 08:27:58 PM,FOLSOM ST/5TH ST,San Francisco,94107,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",151623456-RS1 -141902516,KM06,14065906,Medical Incident,07/09/2014,07/09/2014,07/09/2014 04:38:01 PM,07/09/2014 04:39:25 PM,07/09/2014 04:40:09 PM,07/09/2014 04:40:48 PM,07/09/2014 04:50:50 PM,07/09/2014 05:10:50 PM,07/09/2014 06:02:31 PM,Other,07/09/2014 06:33:25 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",141902516-KM06 -142903959,RC1,14102448,Medical Incident,10/17/2014,10/17/2014,10/17/2014 11:30:01 PM,10/17/2014 11:30:52 PM,10/17/2014 11:31:20 PM,10/17/2014 11:33:49 PM,10/17/2014 11:38:32 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 3 Transport,10/17/2014 11:48:01 PM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",142903959-RC1 -152680812,E41,15102596,Medical Incident,09/25/2015,09/25/2015,09/25/2015 08:11:26 AM,09/25/2015 08:12:37 AM,09/25/2015 08:13:06 AM,09/25/2015 08:15:18 AM,09/25/2015 08:23:19 AM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 08:27:29 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",152680812-E41 -141723252,78,14059475,Medical Incident,06/21/2014,06/21/2014,06/21/2014 08:53:42 PM,06/21/2014 08:56:29 PM,06/21/2014 08:56:55 PM,06/21/2014 08:56:59 PM,06/21/2014 09:04:22 PM,06/21/2014 09:14:33 PM,06/21/2014 09:39:46 PM,Code 2 Transport,06/21/2014 10:07:03 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",141723252-78 -152051782,E13,15078071,Medical Incident,07/24/2015,07/24/2015,07/24/2015 12:47:24 PM,07/24/2015 12:48:17 PM,07/24/2015 12:50:36 PM,07/24/2015 12:50:36 PM,07/24/2015 12:53:35 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Code 2 Transport,07/24/2015 01:17:09 PM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",152051782-E13 -161002745,AM20,16039890,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:00:47 PM,04/09/2016 07:00:47 PM,04/09/2016 07:01:20 PM,04/09/2016 07:02:04 PM,04/09/2016 07:06:31 PM,04/09/2016 07:49:54 PM,04/09/2016 08:05:20 PM,Code 2 Transport,04/09/2016 08:32:43 PM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",161002745-AM20 -142110022,89,14072968,Medical Incident,07/30/2014,07/29/2014,07/30/2014 12:04:09 AM,07/30/2014 12:06:56 AM,07/30/2014 12:07:23 AM,07/30/2014 12:07:34 AM,07/30/2014 12:12:42 AM,07/30/2014 12:27:03 AM,07/30/2014 12:35:20 AM,Code 2 Transport,07/30/2014 12:53:10 AM,CAPP ST/20TH ST,San Francisco,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7586982725851, -122.417964706277)",142110022-89 -142603498,77,14091033,Medical Incident,09/17/2014,09/17/2014,09/17/2014 09:00:37 PM,09/17/2014 09:01:24 PM,09/17/2014 09:01:36 PM,09/17/2014 09:02:54 PM,09/17/2014 09:07:27 PM,09/17/2014 09:31:06 PM,09/17/2014 09:45:32 PM,Code 2 Transport,09/17/2014 10:12:55 PM,500 Block of 26TH AVE,San Francisco,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",142603498-77 -143613245,T15,14129300,Traffic Collision,12/27/2014,12/27/2014,12/27/2014 09:01:01 PM,12/27/2014 09:02:12 PM,12/27/2014 09:02:44 PM,12/27/2014 09:03:52 PM,12/27/2014 09:05:05 PM,04/25/2016 01:13:11 PM,04/25/2016 01:13:11 PM,Code 2 Transport,12/27/2014 09:57:52 PM,GENEVA AV/OCEAN AV,San Francisco,94112,B09,15,8313,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,9,7,West of Twin Peaks,"(37.7230802451635, -122.452331558779)",143613245-T15 -152011652,88,15076598,Medical Incident,07/20/2015,07/20/2015,07/20/2015 12:13:34 PM,07/20/2015 12:14:49 PM,07/20/2015 12:19:55 PM,07/20/2015 12:21:04 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Other,07/20/2015 12:24:12 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",152011652-88 -151880328,68,15071677,Medical Incident,07/07/2015,07/06/2015,07/07/2015 03:43:58 AM,07/07/2015 03:46:44 AM,07/07/2015 03:47:16 AM,07/07/2015 03:47:46 AM,07/07/2015 03:59:08 AM,04/25/2016 01:09:36 PM,04/25/2016 01:09:36 PM,Unable to Locate,07/07/2015 04:13:10 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",151880328-68 -143221071,E07,14113958,Structure Fire,11/18/2014,11/18/2014,11/18/2014 09:59:32 AM,11/18/2014 09:59:32 AM,11/18/2014 09:59:46 AM,11/18/2014 10:01:17 AM,11/18/2014 10:02:40 AM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,Fire,11/18/2014 10:02:48 AM,22ND ST/FOLSOM ST,San Francisco,94110,B06,7,5473,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7556994645677, -122.414387602502)",143221071-E07 -142744015,E33,14096298,Medical Incident,10/01/2014,10/01/2014,10/01/2014 11:02:02 PM,10/01/2014 11:02:02 PM,10/01/2014 11:11:17 PM,10/01/2014 11:12:33 PM,10/01/2014 11:14:55 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Code 2 Transport,10/01/2014 11:25:21 PM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7098635927288, -122.449729173956)",142744015-E33 -160990981,KM05,16039236,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:39:24 AM,04/08/2016 09:40:41 AM,04/08/2016 09:43:06 AM,04/08/2016 09:43:48 AM,04/08/2016 09:47:36 AM,04/08/2016 10:13:41 AM,04/08/2016 10:15:30 AM,Code 2 Transport,04/08/2016 11:03:38 AM,400 Block of PARNASSUS AVE,San Francisco,94122,B05,12,5155,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",160990981-KM05 -153230705,E39,15124151,Medical Incident,11/19/2015,11/19/2015,11/19/2015 08:02:51 AM,11/19/2015 08:03:25 AM,11/19/2015 08:03:49 AM,11/19/2015 08:05:41 AM,11/19/2015 08:09:35 AM,11/19/2015 08:35:05 AM,04/25/2016 01:07:07 PM,Code 3 Transport,11/19/2015 09:06:52 AM,2200 Block of 15TH AV,San Francisco,94116,B08,40,7361,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7460416780064, -122.471357971603)",153230705-E39 -153254073,E13,15125326,Medical Incident,11/21/2015,11/21/2015,11/21/2015 11:13:13 PM,11/21/2015 11:15:06 PM,11/21/2015 11:16:29 PM,11/21/2015 11:17:37 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Unable to Locate,11/21/2015 11:19:16 PM,600 Block of THE EMBARCADERO,San Francisco,94111,B03,13,2134,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",153254073-E13 -151072490,E22,15040562,Traffic Collision,04/17/2015,04/17/2015,04/17/2015 03:41:31 PM,04/17/2015 03:42:42 PM,04/17/2015 03:43:42 PM,04/17/2015 03:45:02 PM,04/17/2015 03:48:19 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Code 2 Transport,04/17/2015 03:54:53 PM,FULTON ST/10TH AV,San Francisco,94118,B07,31,7133,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7733038332102, -122.468023915566)",151072490-E22 -151220274,E03,15046131,Medical Incident,05/02/2015,05/01/2015,05/02/2015 01:51:26 AM,05/02/2015 01:52:34 AM,05/02/2015 01:54:36 AM,05/02/2015 01:54:36 AM,05/02/2015 01:56:02 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Code 2 Transport,05/02/2015 01:58:54 AM,GOLDEN GATE AV/LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",151220274-E03 -141070018,T15,14035973,Vehicle Fire,04/17/2014,04/16/2014,04/17/2014 01:45:08 AM,04/17/2014 01:45:34 AM,04/17/2014 01:45:52 AM,04/17/2014 01:47:58 AM,04/17/2014 01:51:15 AM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Fire,04/17/2014 02:10:47 AM,AVALON AV/LONDON ST,SAN FRANCISCO,94112,B09,43,6131,3,3,3,false,Fire,1,TRUCK,2,9,11,Excelsior,"(37.7273106754719, -122.431767136972)",141070018-T15 -152103508,75,15080148,Medical Incident,07/29/2015,07/29/2015,07/29/2015 08:42:01 PM,07/29/2015 08:42:01 PM,07/29/2015 08:42:45 PM,07/29/2015 08:42:56 PM,07/29/2015 08:51:05 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,No Merit,07/29/2015 08:52:30 PM,HAIGHT ST/DIVISADERO ST,San Francisco,94117,B05,21,4142,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7712674239457, -122.437045611029)",152103508-75 -151871077,T03,15071323,Alarms,07/06/2015,07/06/2015,07/06/2015 09:43:07 AM,07/06/2015 09:44:29 AM,07/06/2015 09:44:52 AM,07/06/2015 09:47:10 AM,07/06/2015 09:49:55 AM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Fire,07/06/2015 09:52:58 AM,1300 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",151871077-T03 -143454012,E01,14123125,Structure Fire,12/11/2014,12/11/2014,12/11/2014 11:41:17 PM,12/11/2014 11:41:17 PM,12/11/2014 11:43:16 PM,12/11/2014 11:43:16 PM,12/11/2014 11:43:19 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Fire,12/11/2014 11:43:57 PM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",143454012-E01 -150672757,E08,15025734,Medical Incident,03/08/2015,03/08/2015,03/08/2015 07:04:37 PM,03/08/2015 07:06:50 PM,03/08/2015 07:07:30 PM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Code 2 Transport,03/08/2015 07:09:04 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7811458612596, -122.409026046516)",150672757-E08 -141872322,83,14064863,Medical Incident,07/06/2014,07/06/2014,07/06/2014 05:06:55 PM,07/06/2014 05:07:37 PM,07/06/2014 05:08:28 PM,07/06/2014 05:08:41 PM,07/06/2014 05:16:54 PM,07/06/2014 05:23:19 PM,04/25/2016 01:16:22 PM,Against Medical Advice,07/06/2014 06:01:53 PM,1100 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6615,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7204964019129, -122.390342560546)",141872322-83 -143361842,E07,14119127,Structure Fire,12/02/2014,12/02/2014,12/02/2014 02:17:33 PM,12/02/2014 02:18:22 PM,12/02/2014 02:19:13 PM,12/02/2014 02:20:11 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,Fire,12/02/2014 02:27:26 PM,2900 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5621,3,3,3,true,Alarm,1,ENGINE,8,6,9,Bernal Heights,"(37.7482373940092, -122.4091747167)",143361842-E07 -160940580,KM03,16037149,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:13:21 AM,04/03/2016 04:13:21 AM,04/03/2016 04:14:10 AM,04/03/2016 04:14:51 AM,04/03/2016 04:21:14 AM,04/03/2016 04:42:21 AM,04/03/2016 05:01:14 AM,Code 2 Transport,04/03/2016 05:23:41 AM,200 Block of BROADWAY,San Francisco,94111,B01,13,1155,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7984506502378, -122.401628969112)",160940580-KM03 -151622407,82,15061981,Medical Incident,06/11/2015,06/11/2015,06/11/2015 03:53:46 PM,06/11/2015 03:53:46 PM,06/11/2015 03:53:46 PM,06/11/2015 03:53:46 PM,06/11/2015 03:53:46 PM,04/25/2016 01:10:04 PM,04/25/2016 01:10:04 PM,Code 2 Transport,06/11/2015 04:06:46 PM,MARKET ST/GOUGH ST,San Francisco,94103,B99,36,3311,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",151622407-82 -143423433,RS2,14121691,Structure Fire,12/08/2014,12/08/2014,12/08/2014 07:50:33 PM,12/08/2014 07:51:52 PM,12/08/2014 07:53:11 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Fire,12/08/2014 07:53:52 PM,300 Block of VALLEY ST,San Francisco,94131,B06,11,5564,3,3,3,false,Alarm,1,RESCUE SQUAD,10,6,8,Noe Valley,"(37.7443506892082, -122.430074980706)",143423433-RS2 -142090141,KM06,14072290,Medical Incident,07/28/2014,07/27/2014,07/28/2014 01:21:24 AM,07/28/2014 01:24:51 AM,07/28/2014 01:25:54 AM,07/28/2014 01:26:28 AM,07/28/2014 01:42:35 AM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,No Merit,07/28/2014 01:43:56 AM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.7980228452184, -122.405863212632)",142090141-KM06 -151770791,E08,15067297,Medical Incident,06/26/2015,06/26/2015,06/26/2015 08:12:32 AM,06/26/2015 08:16:25 AM,06/26/2015 08:17:03 AM,06/26/2015 08:17:42 AM,06/26/2015 08:20:48 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 08:23:46 AM,4TH ST/TOWNSEND ST,San Francisco,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7770893320016, -122.394981482757)",151770791-E08 -142301128,E08,14079859,Medical Incident,08/18/2014,08/18/2014,08/18/2014 10:03:09 AM,08/18/2014 10:03:25 AM,08/18/2014 10:05:45 AM,08/18/2014 10:05:45 AM,08/18/2014 10:06:41 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Code 2 Transport,08/18/2014 10:14:22 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",142301128-E08 -160982617,AM08,16039003,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:56:57 PM,04/07/2016 03:58:47 PM,04/07/2016 03:59:13 PM,04/07/2016 04:00:25 PM,04/07/2016 04:07:44 PM,04/07/2016 04:22:46 PM,04/07/2016 04:27:20 PM,Code 3 Transport,04/07/2016 05:33:52 PM,3600 Block of SACRAMENTO ST,San Francisco,94118,B07,10,4432,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7873936866832, -122.452758503157)",160982617-AM08 -161010722,54,16040094,Medical Incident,04/10/2016,04/09/2016,04/10/2016 06:25:00 AM,04/10/2016 06:27:11 AM,04/10/2016 06:30:22 AM,04/10/2016 06:30:32 AM,04/10/2016 06:40:55 AM,04/10/2016 06:52:03 AM,04/10/2016 07:48:33 AM,Code 2 Transport,04/10/2016 08:18:44 AM,700 Block of LAKEVIEW AVE,San Francisco,94112,B09,33,8462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7181751959676, -122.459698022491)",161010722-54 -150163495,RC3,15006472,Medical Incident,01/16/2015,01/16/2015,01/16/2015 09:25:53 PM,01/16/2015 09:27:20 PM,01/16/2015 09:27:35 PM,01/16/2015 09:28:09 PM,01/16/2015 09:37:16 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Code 2 Transport,01/16/2015 09:59:29 PM,900 Block of EDINBURGH ST,San Francisco,94112,B09,43,6174,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",150163495-RC3 -142860462,B02,14100719,Alarms,10/13/2014,10/12/2014,10/13/2014 05:51:36 AM,10/13/2014 05:53:52 AM,10/13/2014 05:54:13 AM,10/13/2014 05:57:54 AM,10/13/2014 05:59:45 AM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/13/2014 06:05:27 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",142860462-B02 -160970289,AM22,16038270,Medical Incident,04/06/2016,04/05/2016,04/06/2016 03:18:56 AM,04/06/2016 03:20:48 AM,04/06/2016 03:21:03 AM,04/06/2016 03:21:54 AM,04/06/2016 03:27:33 AM,04/06/2016 03:37:45 AM,04/06/2016 03:49:58 AM,Code 2 Transport,04/06/2016 04:20:12 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160970289-AM22 -151421631,D3,15053972,Structure Fire,05/22/2015,05/22/2015,05/22/2015 12:04:04 PM,05/22/2015 12:04:26 PM,05/22/2015 12:05:29 PM,05/22/2015 12:05:53 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Fire,05/22/2015 12:11:26 PM,4000 Block of 22ND ST,San Francisco,94114,B06,24,5465,3,3,3,false,Alarm,1,CHIEF,6,6,8,Noe Valley,"(37.7542723591053, -122.437118941)",151421631-D3 -160993987,79,16039524,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:11:03 PM,04/08/2016 11:13:09 PM,04/08/2016 11:14:09 PM,04/08/2016 11:14:43 PM,04/08/2016 11:22:04 PM,04/08/2016 11:50:33 PM,04/09/2016 12:10:05 AM,Code 2 Transport,04/09/2016 12:48:04 AM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",160993987-79 -143060142,E36,14108146,Medical Incident,11/02/2014,11/01/2014,11/02/2014 12:53:07 AM,11/02/2014 12:55:23 AM,11/02/2014 12:55:42 AM,11/02/2014 12:56:50 AM,11/02/2014 01:00:23 AM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Code 2 Transport,11/02/2014 01:11:27 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",143060142-E36 -143392846,AM16,14120441,Medical Incident,12/05/2014,12/05/2014,12/05/2014 05:13:05 PM,12/05/2014 05:13:42 PM,12/05/2014 05:14:20 PM,12/05/2014 05:15:07 PM,12/05/2014 05:19:36 PM,12/05/2014 05:28:47 PM,12/05/2014 05:53:29 PM,Code 2 Transport,12/05/2014 06:14:18 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7817569847968, -122.414263390372)",143392846-AM16 -160983285,KM12,16039075,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:57:06 PM,04/07/2016 06:58:17 PM,04/07/2016 06:58:40 PM,04/07/2016 06:59:18 PM,04/07/2016 07:03:28 PM,04/07/2016 07:22:55 PM,04/07/2016 07:32:40 PM,Code 2 Transport,04/07/2016 08:17:57 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160983285-KM12 -160982122,AM08,16038939,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:52:12 PM,04/07/2016 01:54:35 PM,04/07/2016 01:55:41 PM,04/07/2016 01:56:30 PM,04/07/2016 01:59:28 PM,04/07/2016 03:06:04 PM,04/07/2016 03:22:08 PM,Code 2 Transport,04/07/2016 03:56:52 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7905716665918, -122.405963225465)",160982122-AM08 -152251476,E03,15085733,Medical Incident,08/13/2015,08/13/2015,08/13/2015 11:25:01 AM,08/13/2015 11:26:16 AM,08/13/2015 11:26:32 AM,08/13/2015 11:30:36 AM,08/13/2015 11:30:36 AM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Code 2 Transport,08/13/2015 11:46:52 AM,LEAVENWORTH ST/TURK ST,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",152251476-E03 -161002712,KM12,16039885,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:50:44 PM,04/09/2016 06:50:44 PM,04/09/2016 06:50:56 PM,04/09/2016 06:51:23 PM,04/09/2016 07:00:44 PM,04/09/2016 07:15:24 PM,04/09/2016 07:24:30 PM,Code 2 Transport,04/09/2016 07:46:11 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800389118973, -122.431977767761)",161002712-KM12 -142232214,AM12,14077445,Medical Incident,08/11/2014,08/11/2014,08/11/2014 04:33:04 PM,08/11/2014 04:34:26 PM,08/11/2014 04:35:59 PM,08/11/2014 04:36:57 PM,08/11/2014 04:40:05 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Against Medical Advice,08/11/2014 05:02:00 PM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6117,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7242679564906, -122.435032247159)",142232214-AM12 -143580944,E15,14128057,Medical Incident,12/24/2014,12/24/2014,12/24/2014 09:43:49 AM,12/24/2014 09:46:07 AM,12/24/2014 09:46:30 AM,12/24/2014 09:47:14 AM,12/24/2014 09:52:56 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Code 2 Transport,12/24/2014 10:10:55 AM,0 Block of MERCEDES WAY,San Francisco,94127,B09,19,8451,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.72794450844, -122.470267971581)",143580944-E15 -160921219,79,16036392,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:35:43 AM,04/01/2016 10:37:20 AM,04/01/2016 10:37:46 AM,04/01/2016 10:37:51 AM,04/01/2016 10:42:04 AM,04/01/2016 11:12:23 AM,04/01/2016 11:15:26 AM,Code 2 Transport,04/01/2016 11:51:18 AM,500 Block of CORTLAND AVE,San Francisco,94110,B06,32,5732,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7390863113994, -122.416201199461)",160921219-79 -160933829,79,16037072,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:58:43 PM,04/02/2016 10:59:41 PM,04/02/2016 11:00:15 PM,04/02/2016 11:00:22 PM,04/02/2016 11:13:04 PM,04/02/2016 11:25:00 PM,04/02/2016 11:38:00 PM,Code 2 Transport,04/03/2016 12:06:09 AM,HAIGHT ST/STANYAN ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",160933829-79 -150121602,KM12,15004725,Medical Incident,01/12/2015,01/12/2015,01/12/2015 12:23:27 PM,01/12/2015 12:23:27 PM,01/12/2015 12:24:22 PM,01/12/2015 12:25:34 PM,01/12/2015 12:30:42 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Patient Declined Transport,01/12/2015 12:55:57 PM,1800 Block of MCALLISTER ST,San Francisco,94117,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7772146315852, -122.442488680247)",150121602-KM12 -142380312,E01,14082670,Medical Incident,08/26/2014,08/25/2014,08/26/2014 03:29:59 AM,08/26/2014 03:35:07 AM,08/26/2014 03:36:02 AM,08/26/2014 03:36:42 AM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,Unable to Locate,08/26/2014 03:45:08 AM,400 Block of TEHAMA ST,San Francisco,94103,B03,1,2245,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801567611888, -122.40546707057)",142380312-E01 -152013556,T03,15076768,Alarms,07/20/2015,07/20/2015,07/20/2015 09:08:00 PM,07/20/2015 09:08:02 PM,07/20/2015 09:08:11 PM,07/20/2015 09:09:33 PM,07/20/2015 09:11:09 PM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/20/2015 09:16:10 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7852173616307, -122.417069611395)",152013556-T03 -151321989,T13,15050107,Structure Fire,05/12/2015,05/12/2015,05/12/2015 02:38:39 PM,05/12/2015 02:39:13 PM,05/12/2015 02:39:27 PM,05/12/2015 02:40:35 PM,05/12/2015 02:41:39 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Fire,05/12/2015 03:22:06 PM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.7982249345487, -122.404282497745)",151321989-T13 -142940226,E13,14103552,Medical Incident,10/21/2014,10/20/2014,10/21/2014 02:26:36 AM,10/21/2014 02:27:41 AM,10/21/2014 02:28:03 AM,10/21/2014 02:29:28 AM,10/21/2014 02:31:20 AM,10/21/2014 02:56:18 AM,04/25/2016 01:14:27 PM,Code 3 Transport,10/21/2014 03:16:11 AM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",142940226-E13 -161002117,56,16039817,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:48:11 PM,04/09/2016 03:49:26 PM,04/09/2016 03:50:06 PM,04/09/2016 03:50:11 PM,04/09/2016 03:59:53 PM,04/09/2016 04:16:35 PM,04/09/2016 04:40:23 PM,Code 2 Transport,04/09/2016 05:17:06 PM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821103331421, -122.403196436662)",161002117-56 -150860902,E51,15032761,Alarms,03/27/2015,03/27/2015,03/27/2015 09:00:02 AM,03/27/2015 09:02:33 AM,03/27/2015 09:02:51 AM,03/27/2015 09:04:21 AM,03/27/2015 09:08:11 AM,04/25/2016 01:11:30 PM,04/25/2016 01:11:30 PM,Fire,03/27/2015 09:12:20 AM,300 Block of PARK BLVD,Presidio,94129,B99,51,4618,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.7927192448322, -122.469803418761)",150860902-E51 -151830345,88,15069734,Medical Incident,07/02/2015,07/01/2015,07/02/2015 03:31:40 AM,07/02/2015 03:34:43 AM,07/02/2015 03:35:19 AM,07/02/2015 03:35:27 AM,07/02/2015 03:38:45 AM,07/02/2015 03:49:55 AM,07/02/2015 04:03:00 AM,Code 2 Transport,07/02/2015 04:26:56 AM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",151830345-88 -160974257,83,16038678,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:32:14 PM,04/06/2016 09:32:43 PM,04/06/2016 09:33:11 PM,04/06/2016 09:33:22 PM,04/06/2016 09:38:48 PM,04/06/2016 09:50:09 PM,04/06/2016 10:35:23 PM,Code 2 Transport,04/06/2016 10:43:26 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160974257-83 -142992214,76,14105626,Medical Incident,10/26/2014,10/26/2014,10/26/2014 03:33:52 PM,10/26/2014 03:35:16 PM,10/26/2014 03:35:52 PM,10/26/2014 03:36:20 PM,10/26/2014 03:41:20 PM,10/26/2014 03:58:49 PM,10/26/2014 04:29:48 PM,Code 2 Transport,10/26/2014 04:56:53 PM,200 Block of SAN CARLOS ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7593905434172, -122.419839098278)",142992214-76 -152173710,RS1,15082769,Structure Fire,08/05/2015,08/05/2015,08/05/2015 08:48:09 PM,08/05/2015 08:49:03 PM,08/05/2015 08:49:26 PM,08/05/2015 08:51:23 PM,08/05/2015 08:53:03 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 08:54:28 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,false,Alarm,1,RESCUE SQUAD,7,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",152173710-RS1 -160982170,89,16038946,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:05:05 PM,04/07/2016 02:06:13 PM,04/07/2016 02:06:29 PM,04/07/2016 02:08:19 PM,04/07/2016 02:13:29 PM,04/07/2016 02:37:27 PM,04/07/2016 03:00:49 PM,Code 2 Transport,04/07/2016 03:29:26 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160982170-89 -152203768,62,15084005,Medical Incident,08/08/2015,08/08/2015,08/08/2015 10:29:02 PM,08/08/2015 10:29:28 PM,08/08/2015 10:29:41 PM,08/08/2015 10:29:57 PM,08/08/2015 10:37:18 PM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Patient Declined Transport,08/08/2015 11:03:34 PM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",152203768-62 -142423739,RC1,14084448,Traffic Collision,08/30/2014,08/30/2014,08/30/2014 10:57:11 PM,08/30/2014 10:58:38 PM,08/30/2014 11:07:30 PM,08/30/2014 11:07:33 PM,08/30/2014 11:07:33 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Code 2 Transport,08/31/2014 12:16:31 AM,400 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,6,Tenderloin,"(37.7864592940991, -122.411489016028)",142423739-RC1 -160981191,71,16038843,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:47:31 AM,04/07/2016 09:48:49 AM,04/07/2016 09:49:37 AM,04/07/2016 09:49:44 AM,04/07/2016 09:59:28 AM,04/07/2016 10:21:36 AM,04/07/2016 11:01:03 AM,Code 2 Transport,04/07/2016 11:36:48 AM,200 Block of LOUISBURG ST,San Francisco,94112,B09,15,8315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7198936943619, -122.450400205622)",160981191-71 -153480071,70,15133902,Medical Incident,12/14/2015,12/13/2015,12/14/2015 12:27:40 AM,12/14/2015 12:27:40 AM,12/14/2015 12:27:40 AM,12/14/2015 12:27:40 AM,12/14/2015 12:27:40 AM,12/14/2015 12:27:47 AM,12/14/2015 12:29:43 AM,Code 2 Transport,12/14/2015 01:17:16 AM,400 Block of 7TH ST,San Francisco,94103,B99,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",153480071-70 -153462578,KM13,15133309,Medical Incident,12/12/2015,12/12/2015,12/12/2015 03:39:29 PM,12/12/2015 03:42:20 PM,12/12/2015 03:42:31 PM,12/12/2015 03:43:08 PM,12/12/2015 03:49:30 PM,12/12/2015 04:00:46 PM,12/12/2015 04:24:18 PM,Code 2 Transport,12/12/2015 05:03:59 PM,1500 Block of OCEAN AVE,San Francisco,94112,B09,15,8474,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7245049424335, -122.458675264922)",153462578-KM13 -153060468,52,15117476,Structure Fire,11/02/2015,11/01/2015,11/02/2015 06:13:34 AM,11/02/2015 06:14:28 AM,11/02/2015 06:15:03 AM,11/02/2015 06:15:21 AM,11/02/2015 06:31:49 AM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Fire,11/02/2015 06:56:18 AM,1500 Block of PALOU AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Fire,1,MEDIC,8,10,10,Bayview Hunters Point,"(37.7335111055643, -122.389961310232)",153060468-52 -152990162,E19,15114641,Traffic Collision,10/26/2015,10/25/2015,10/26/2015 01:33:51 AM,10/26/2015 01:33:51 AM,10/26/2015 01:34:23 AM,10/26/2015 01:36:04 AM,10/26/2015 01:39:04 AM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Code 2 Transport,10/26/2015 02:02:10 AM,19TH AV/SLOAT BL,San Francisco,94132,B08,19,7413,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",152990162-E19 -160983854,63,16039124,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:08:11 PM,04/07/2016 10:08:11 PM,04/07/2016 10:08:26 PM,04/07/2016 10:08:37 PM,04/07/2016 10:13:34 PM,04/07/2016 10:23:21 PM,04/07/2016 11:01:33 PM,Code 2 Transport,04/07/2016 11:39:16 PM,CABRILLO ST/7TH AV,San Francisco,94118,B07,31,7132,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7753209455444, -122.464942088513)",160983854-63 -141070153,AM08,14036075,Medical Incident,04/17/2014,04/17/2014,04/17/2014 12:07:32 PM,04/17/2014 12:08:03 PM,04/17/2014 12:08:34 PM,04/25/2016 01:17:50 PM,04/17/2014 12:14:01 PM,04/17/2014 12:21:41 PM,04/17/2014 12:39:04 PM,Code 2 Transport,04/17/2014 01:23:44 PM,5TH ST/MISSION ST,SAN FRANCISCO,94103,B03,1,2246,,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",141070153-AM08 -152680407,KM07,15102569,Medical Incident,09/25/2015,09/24/2015,09/25/2015 04:08:26 AM,09/25/2015 04:12:26 AM,09/25/2015 04:13:12 AM,09/25/2015 04:13:38 AM,09/25/2015 04:25:33 AM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,Patient Declined Transport,09/25/2015 04:58:44 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",152680407-KM07 -141200394,E02,14040727,Medical Incident,04/30/2014,04/30/2014,04/30/2014 10:21:10 PM,04/30/2014 10:21:43 PM,04/30/2014 10:22:02 PM,04/30/2014 10:24:20 PM,04/30/2014 10:28:10 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Code 2 Transport,04/30/2014 10:43:33 PM,300 Block of COLUMBUS AVE,SAN FRANCISCO,94133,B01,2,1311,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7983830790911, -122.407521730924)",141200394-E02 -142113584,77,14073302,Medical Incident,07/30/2014,07/30/2014,07/30/2014 09:55:15 PM,07/30/2014 09:57:15 PM,07/30/2014 09:59:02 PM,07/30/2014 09:59:27 PM,07/30/2014 10:13:49 PM,07/30/2014 10:44:51 PM,07/30/2014 10:54:39 PM,Code 2 Transport,07/30/2014 11:32:33 PM,2600 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",142113584-77 -152052864,E28,15078170,Structure Fire,07/24/2015,07/24/2015,07/24/2015 05:25:32 PM,07/24/2015 05:26:34 PM,07/24/2015 05:27:15 PM,07/24/2015 05:29:23 PM,07/24/2015 05:30:17 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Fire,07/24/2015 06:28:23 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",152052864-E28 -160960932,54,16037934,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:14:43 AM,04/05/2016 09:18:28 AM,04/05/2016 09:19:16 AM,04/05/2016 09:19:24 AM,04/05/2016 09:33:59 AM,04/05/2016 09:56:19 AM,04/05/2016 10:06:15 AM,Code 2 Transport,04/05/2016 10:41:46 AM,600 Block of LYON ST,San Francisco,94117,B05,21,4346,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7767038929732, -122.443158415512)",160960932-54 -160990884,54,16039226,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:05:20 AM,04/08/2016 09:07:31 AM,04/08/2016 09:08:20 AM,04/08/2016 09:09:03 AM,04/08/2016 09:15:13 AM,04/08/2016 09:20:36 AM,04/08/2016 09:43:26 AM,Code 2 Transport,04/08/2016 10:18:11 AM,2900 Block of INGALLS ST,San Francisco,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7206944759769, -122.391644681071)",160990884-54 -151030217,E01,15038799,Structure Fire,04/13/2015,04/12/2015,04/13/2015 02:06:35 AM,04/13/2015 02:06:40 AM,04/13/2015 02:06:46 AM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Fire,04/13/2015 02:08:07 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,true,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7777990101501, -122.40029776053)",151030217-E01 -142820608,T06,14099157,Alarms,10/09/2014,10/08/2014,10/09/2014 07:19:30 AM,10/09/2014 07:20:55 AM,10/09/2014 07:21:38 AM,10/09/2014 07:23:03 AM,10/09/2014 07:24:02 AM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,Fire,10/09/2014 07:30:07 AM,400 Block of DUBOCE AVE,San Francisco,94117,B02,6,3525,3,3,3,false,Alarm,1,TRUCK,1,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",142820608-T06 -160972243,81,16038449,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:52:20 PM,04/06/2016 01:54:21 PM,04/06/2016 01:59:23 PM,04/06/2016 02:00:03 PM,04/06/2016 02:20:04 PM,04/06/2016 02:34:14 PM,04/06/2016 03:06:22 PM,Code 2 Transport,04/06/2016 03:34:52 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160972243-81 -161000203,58,16039578,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:17:33 AM,04/09/2016 01:18:51 AM,04/09/2016 01:19:54 AM,04/09/2016 01:26:17 AM,04/09/2016 01:31:57 AM,04/09/2016 01:40:36 AM,04/09/2016 01:57:46 AM,Code 2 Transport,04/09/2016 02:27:02 AM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",161000203-58 -160961446,AM02,16037978,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:27:48 AM,04/05/2016 11:29:16 AM,04/05/2016 11:30:54 AM,04/05/2016 11:31:37 AM,04/05/2016 11:44:00 AM,04/05/2016 12:08:49 PM,04/05/2016 12:33:27 PM,Code 2 Transport,04/05/2016 01:14:15 PM,3900 Block of 24TH ST,San Francisco,94114,B06,11,5522,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",160961446-AM02 -160982281,54,16038964,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:31:58 PM,04/07/2016 02:34:04 PM,04/07/2016 02:52:51 PM,04/07/2016 02:52:51 PM,04/07/2016 02:57:10 PM,04/07/2016 03:49:25 PM,04/07/2016 03:33:17 PM,Code 2 Transport,04/07/2016 04:12:45 PM,100 Block of FILLMORE ST,San Francisco,94117,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7704847870776, -122.430052169451)",160982281-54 -150623659,E19,15023837,Medical Incident,03/03/2015,03/03/2015,03/03/2015 09:15:35 PM,03/03/2015 09:17:02 PM,03/03/2015 09:17:37 PM,03/03/2015 09:18:40 PM,03/03/2015 09:21:27 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Code 2 Transport,03/03/2015 09:48:44 PM,0 Block of SPRINGFIELD DR,San Francisco,94132,B08,19,8742,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7327647658373, -122.488007999144)",150623659-E19 -150792709,61,15030376,Medical Incident,03/20/2015,03/20/2015,03/20/2015 05:12:24 PM,03/20/2015 05:15:20 PM,03/20/2015 05:15:38 PM,03/20/2015 05:15:50 PM,03/20/2015 05:17:13 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Patient Declined Transport,03/20/2015 05:50:08 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",150792709-61 -152612685,AM08,15099828,Medical Incident,09/18/2015,09/18/2015,09/18/2015 04:11:57 PM,09/18/2015 04:14:44 PM,09/18/2015 04:18:32 PM,09/18/2015 04:18:32 PM,09/18/2015 04:25:22 PM,09/18/2015 04:36:57 PM,09/18/2015 05:08:01 PM,Code 2 Transport,09/18/2015 05:31:24 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",152612685-AM08 -143562935,75,14127466,Medical Incident,12/22/2014,12/22/2014,12/22/2014 05:36:17 PM,12/22/2014 05:37:20 PM,12/22/2014 05:48:28 PM,12/22/2014 05:48:45 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Patient Declined Transport,12/22/2014 06:26:50 PM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",143562935-75 -151032850,77,15039038,Medical Incident,04/13/2015,04/13/2015,04/13/2015 05:27:02 PM,04/13/2015 05:27:02 PM,04/13/2015 05:27:59 PM,04/13/2015 05:28:33 PM,04/13/2015 05:29:53 PM,04/13/2015 05:44:09 PM,04/13/2015 06:11:40 PM,Code 2 Transport,04/13/2015 06:53:33 PM,3RD ST/KING ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",151032850-77 -160924033,88,16036659,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:48:04 PM,04/01/2016 11:48:44 PM,04/01/2016 11:49:37 PM,04/01/2016 11:49:45 PM,04/01/2016 11:58:25 PM,04/02/2016 12:23:50 AM,04/02/2016 12:39:25 AM,Code 2 Transport,04/02/2016 01:16:26 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160924033-88 -160993255,60,16039438,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:23:05 PM,04/08/2016 07:24:15 PM,04/08/2016 07:24:38 PM,04/08/2016 07:24:47 PM,04/08/2016 07:28:00 PM,04/08/2016 07:47:26 PM,04/08/2016 08:06:48 PM,Code 2 Transport,04/08/2016 08:45:36 PM,TURK ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160993255-60 -151573328,T11,15060095,Alarms,06/06/2015,06/06/2015,06/06/2015 08:38:06 PM,06/06/2015 08:39:53 PM,06/06/2015 08:40:13 PM,06/06/2015 08:41:54 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,Fire,06/06/2015 08:45:40 PM,400 Block of LIBERTY ST,San Francisco,94114,B06,11,5452,3,3,3,false,Alarm,1,TRUCK,3,6,8,Castro/Upper Market,"(37.7570349130864, -122.431257187281)",151573328-T11 -152862333,75,15109904,Medical Incident,10/13/2015,10/13/2015,10/13/2015 02:18:13 PM,10/13/2015 02:18:13 PM,10/13/2015 02:18:55 PM,10/13/2015 02:19:07 PM,10/13/2015 02:26:32 PM,10/13/2015 02:29:24 PM,10/13/2015 02:35:27 PM,Code 3 Transport,10/13/2015 03:00:19 PM,SAN BRUNO AV/GAVEN ST,San Francisco,94134,B10,42,6366,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7340177516286, -122.406515383742)",152862333-75 -142901011,E03,14102165,Medical Incident,10/17/2014,10/17/2014,10/17/2014 09:27:49 AM,10/17/2014 09:27:49 AM,10/17/2014 09:27:49 AM,10/17/2014 09:27:49 AM,10/17/2014 09:27:49 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/17/2014 09:43:49 AM,1000 Block of POST ST,San Francisco,94109,B02,3,1641,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",142901011-E03 -160933238,KM03,16037020,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:59:23 PM,04/02/2016 08:00:59 PM,04/02/2016 08:02:25 PM,04/02/2016 08:03:05 PM,04/02/2016 08:15:46 PM,04/02/2016 08:38:00 PM,04/02/2016 08:55:28 PM,Code 2 Transport,04/02/2016 09:46:15 PM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",160933238-KM03 -152603105,71,15099494,Medical Incident,09/17/2015,09/17/2015,09/17/2015 06:00:09 PM,09/17/2015 06:01:50 PM,09/17/2015 06:02:01 PM,09/17/2015 06:03:40 PM,09/17/2015 06:21:19 PM,09/17/2015 06:43:32 PM,09/17/2015 07:06:03 PM,Code 2 Transport,09/17/2015 07:49:54 PM,1300 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8061515935611, -122.418537074676)",152603105-71 -153181837,61,15122273,Medical Incident,11/14/2015,11/14/2015,11/14/2015 12:52:30 PM,11/14/2015 12:52:30 PM,11/14/2015 12:53:00 PM,11/14/2015 12:53:09 PM,11/14/2015 01:00:21 PM,11/14/2015 01:12:55 PM,11/14/2015 01:31:28 PM,Code 2 Transport,11/14/2015 02:19:03 PM,21ST ST/POTRERO AV,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7577620587984, -122.406799738992)",153181837-61 -160943089,75,16037389,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:23:16 PM,04/03/2016 07:25:10 PM,04/03/2016 07:25:20 PM,04/03/2016 07:25:28 PM,04/03/2016 07:32:47 PM,04/03/2016 07:48:30 PM,04/03/2016 08:19:02 PM,Code 2 Transport,04/03/2016 08:22:14 PM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.717376392628, -122.435002134703)",160943089-75 -141972938,E37,14068325,Outside Fire,07/16/2014,07/16/2014,07/16/2014 06:17:06 PM,07/16/2014 06:18:25 PM,07/16/2014 06:28:31 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/16/2014 06:29:44 PM,100 Block of AVENUE C,San Francisco,94130,B10,9,2626,3,3,3,false,Fire,1,ENGINE,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",141972938-E37 -141611781,RC1,14055524,Medical Incident,06/10/2014,06/10/2014,06/10/2014 01:42:47 PM,06/10/2014 01:43:12 PM,06/10/2014 01:45:49 PM,06/10/2014 01:49:25 PM,06/10/2014 01:52:52 PM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Code 2 Transport,06/10/2014 02:12:44 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",141611781-RC1 -150541754,T06,15020758,Alarms,02/23/2015,02/23/2015,02/23/2015 12:39:43 PM,02/23/2015 12:42:46 PM,02/23/2015 12:42:53 PM,02/23/2015 12:44:56 PM,02/23/2015 12:47:36 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Fire,02/23/2015 12:51:55 PM,ROSE ST/GOUGH ST,San Francisco,94102,B02,36,3311,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7736191300216, -122.422312068647)",150541754-T06 -160933389,AM22,16037040,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:49:11 PM,04/02/2016 08:50:37 PM,04/02/2016 08:54:59 PM,04/02/2016 08:54:59 PM,04/02/2016 09:05:15 PM,04/02/2016 09:40:45 PM,04/02/2016 10:03:22 PM,Code 2 Transport,04/02/2016 10:45:09 PM,2000 Block of GREEN ST,San Francisco,94123,B04,16,3463,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.7965249395334, -122.432847820562)",160933389-AM22 -160982557,KM12,16038995,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:42:10 PM,04/07/2016 03:44:24 PM,04/07/2016 04:12:37 PM,04/07/2016 04:13:05 PM,04/07/2016 04:33:41 PM,04/07/2016 04:51:44 PM,04/07/2016 05:10:53 PM,Code 2 Transport,04/07/2016 06:40:46 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160982557-KM12 -151822952,63,15069575,Medical Incident,07/01/2015,07/01/2015,07/01/2015 05:35:08 PM,07/01/2015 05:35:08 PM,07/01/2015 05:35:33 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Fire,07/01/2015 05:35:45 PM,GOUGH ST/GOLDEN GATE AV,San Francisco,94102,B02,5,3263,A,E,3,true,Potentially Life-Threatening,1,MEDIC,4,2,5,Western Addition,"(37.780611620733, -122.423730984614)",151822952-63 -160992246,73,16039352,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:23:55 PM,04/08/2016 03:25:06 PM,04/08/2016 03:26:48 PM,04/08/2016 03:27:00 PM,04/08/2016 03:35:34 PM,04/08/2016 03:47:32 PM,04/08/2016 04:13:49 PM,Code 2 Transport,04/08/2016 04:33:03 PM,100 Block of LOBOS ST,San Francisco,94112,B09,33,8372,2,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7148631962455, -122.457556576704)",160992246-73 -160952863,62,16037716,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:07:13 PM,04/04/2016 05:07:13 PM,04/04/2016 05:07:51 PM,04/04/2016 05:09:00 PM,04/04/2016 05:12:42 PM,04/04/2016 05:21:11 PM,04/04/2016 05:51:20 PM,Code 2 Transport,04/04/2016 06:08:33 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160952863-62 -160951339,64,16037588,Citizen Assist / Service Call,04/04/2016,04/04/2016,04/04/2016 11:03:11 AM,04/04/2016 11:04:44 AM,04/04/2016 11:15:18 AM,04/04/2016 11:16:05 AM,04/04/2016 12:22:04 PM,04/04/2016 12:22:09 PM,04/04/2016 12:22:13 PM,Code 2 Transport,04/04/2016 12:59:02 PM,100 Block of DOLORES ST,San Francisco,94114,B02,6,5127,3,3,3,true,Alarm,1,MEDIC,2,2,8,Castro/Upper Market,"(37.767452628597, -122.42680873617)",160951339-64 -152883776,88,15110818,Medical Incident,10/15/2015,10/15/2015,10/15/2015 09:25:46 PM,10/15/2015 09:28:18 PM,10/15/2015 09:28:43 PM,10/15/2015 09:28:50 PM,10/15/2015 09:39:42 PM,10/15/2015 09:50:39 PM,10/15/2015 09:56:31 PM,Code 2 Transport,10/15/2015 10:15:30 PM,1600 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7868728989189, -122.427512151715)",152883776-88 -151141118,B02,15043038,Structure Fire,04/24/2015,04/24/2015,04/24/2015 10:07:01 AM,04/24/2015 10:07:31 AM,04/24/2015 10:08:15 AM,04/24/2015 10:08:25 AM,04/24/2015 10:15:23 AM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Fire,04/24/2015 10:26:43 AM,1500 Block of FULTON ST,San Francisco,94117,B05,21,4346,3,3,3,false,Alarm,1,CHIEF,8,5,5,Lone Mountain/USF,"(37.776384773708, -122.442321333784)",151141118-B02 -153391174,E13,15130398,Alarms,12/05/2015,12/05/2015,12/05/2015 09:35:47 AM,12/05/2015 09:36:50 AM,12/05/2015 09:40:03 AM,12/05/2015 09:40:52 AM,12/05/2015 09:43:50 AM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Fire,12/05/2015 09:49:34 AM,100 Block of SUTTER ST,San Francisco,94104,B01,13,1242,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7898368259498, -122.403344544792)",153391174-E13 -141973183,T03,14068345,Alarms,07/16/2014,07/16/2014,07/16/2014 07:18:03 PM,07/16/2014 07:19:22 PM,07/16/2014 07:20:27 PM,07/16/2014 07:22:01 PM,07/16/2014 07:23:41 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/16/2014 07:27:12 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",141973183-T03 -161010731,53,16040097,Medical Incident,04/10/2016,04/09/2016,04/10/2016 06:37:08 AM,04/10/2016 06:41:51 AM,04/10/2016 06:42:36 AM,04/10/2016 06:42:45 AM,04/10/2016 06:55:20 AM,04/10/2016 07:10:06 AM,04/10/2016 07:43:08 AM,Code 2 Transport,04/10/2016 08:09:18 AM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7188461081754, -122.439092837429)",161010731-53 -142111426,T16,14073087,Alarms,07/30/2014,07/30/2014,07/30/2014 11:52:42 AM,07/30/2014 11:55:44 AM,07/30/2014 11:58:29 AM,07/30/2014 11:59:27 AM,07/30/2014 12:04:01 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/30/2014 12:04:29 PM,1200 Block of LOMBARD ST,San Francisco,94109,B01,41,1625,3,3,3,false,Alarm,1,TRUCK,2,1,2,Russian Hill,"(37.8017125270087, -122.422090188622)",142111426-T16 -150561307,KM14,15021384,Medical Incident,02/25/2015,02/25/2015,02/25/2015 10:47:07 AM,02/25/2015 10:49:04 AM,02/25/2015 10:49:47 AM,02/25/2015 10:50:32 AM,02/25/2015 10:59:44 AM,02/25/2015 11:13:42 AM,02/25/2015 11:22:55 AM,Code 2 Transport,02/25/2015 11:43:45 AM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",150561307-KM14 -150353344,54,15013576,Medical Incident,02/04/2015,02/04/2015,02/04/2015 05:55:15 PM,02/04/2015 05:58:52 PM,02/04/2015 06:00:37 PM,02/04/2015 06:01:25 PM,02/04/2015 06:11:42 PM,02/04/2015 06:26:10 PM,02/04/2015 06:45:54 PM,Cancelled,02/04/2015 07:12:30 PM,4400 Block of MISSION ST,San Francisco,94112,B09,43,6116,2,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7269111586163, -122.433193907155)",150353344-54 -160940783,85,16037184,Medical Incident,04/03/2016,04/02/2016,04/03/2016 07:04:00 AM,04/03/2016 07:06:00 AM,04/03/2016 07:06:08 AM,04/03/2016 07:06:15 AM,04/03/2016 07:16:31 AM,04/03/2016 07:23:45 AM,04/03/2016 07:38:00 AM,Code 2 Transport,04/03/2016 08:16:52 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",160940783-85 -143071052,83,14108564,Medical Incident,11/03/2014,11/03/2014,11/03/2014 10:11:23 AM,11/03/2014 10:12:27 AM,11/03/2014 10:16:13 AM,11/03/2014 10:16:23 AM,11/03/2014 10:19:23 AM,11/03/2014 10:32:06 AM,11/03/2014 10:45:48 AM,Code 2 Transport,11/03/2014 11:08:38 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",143071052-83 -151590160,E05,15060555,Medical Incident,06/08/2015,06/07/2015,06/08/2015 01:33:01 AM,06/08/2015 01:33:28 AM,06/08/2015 01:33:46 AM,06/08/2015 01:35:20 AM,06/08/2015 01:37:14 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Medical Examiner,06/08/2015 01:55:39 AM,1700 Block of OFARRELL ST,San Francisco,94115,B04,5,3623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",151590160-E05 -150692871,E01,15026453,Traffic Collision,03/10/2015,03/10/2015,03/10/2015 06:04:17 PM,03/10/2015 06:07:58 PM,03/10/2015 06:31:17 PM,03/10/2015 06:31:28 PM,03/10/2015 06:31:28 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Code 2 Transport,03/10/2015 06:51:36 PM,4TH ST/MISSION ST,San Francisco,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",150692871-E01 -160982532,74,16038990,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:37:17 PM,04/07/2016 03:38:26 PM,04/07/2016 03:41:19 PM,04/07/2016 03:41:26 PM,04/07/2016 03:44:49 PM,04/07/2016 04:15:04 PM,04/07/2016 04:19:37 PM,Code 3 Transport,04/07/2016 04:58:57 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7853585501162, -122.415955969312)",160982532-74 -142651256,84,14092654,Medical Incident,09/22/2014,09/22/2014,09/22/2014 10:48:50 AM,09/22/2014 10:50:16 AM,09/22/2014 10:51:19 AM,09/22/2014 10:53:34 AM,09/22/2014 11:01:33 AM,09/22/2014 11:18:28 AM,09/22/2014 11:59:57 AM,Code 2 Transport,09/22/2014 12:08:46 PM,700 Block of LOMBARD ST,San Francisco,94133,B01,28,1435,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.8026189273087, -122.414260104964)",142651256-84 -142260461,E11,14078371,Structure Fire,08/14/2014,08/13/2014,08/14/2014 05:24:05 AM,08/14/2014 05:24:05 AM,08/14/2014 05:24:23 AM,08/14/2014 05:25:47 AM,08/14/2014 05:26:42 AM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Fire,08/14/2014 05:27:11 AM,25TH ST/DOLORES ST,San Francisco,94110,B06,11,5536,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7502327184515, -122.424999223775)",142260461-E11 -160964101,78,16038214,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:54:17 PM,04/05/2016 10:55:31 PM,04/05/2016 10:56:26 PM,04/05/2016 10:56:32 PM,04/05/2016 11:23:48 PM,04/05/2016 11:23:51 PM,04/05/2016 11:36:25 PM,Code 2 Transport,04/06/2016 12:06:59 AM,200 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7862985138478, -122.408477809664)",160964101-78 -151111175,89,15041920,Medical Incident,04/21/2015,04/21/2015,04/21/2015 10:00:06 AM,04/21/2015 10:01:53 AM,04/21/2015 10:02:10 AM,04/21/2015 10:02:20 AM,04/21/2015 10:10:11 AM,04/21/2015 10:42:46 AM,04/21/2015 11:02:13 AM,Code 2 Transport,04/21/2015 12:01:18 PM,2100 Block of FUNSTON AVE,San Francisco,94116,B08,40,7348,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7480100621282, -122.469558531535)",151111175-89 -141713325,84,14059189,Medical Incident,06/20/2014,06/20/2014,06/20/2014 08:35:51 PM,06/20/2014 08:36:05 PM,06/20/2014 08:36:10 PM,06/20/2014 08:36:18 PM,06/20/2014 08:44:29 PM,06/20/2014 09:23:02 PM,06/20/2014 09:41:24 PM,Code 2 Transport,06/20/2014 10:19:46 PM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",141713325-84 -152833593,E36,15108795,Traffic Collision,10/10/2015,10/10/2015,10/10/2015 07:35:33 PM,10/10/2015 07:35:33 PM,10/10/2015 07:36:52 PM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Patient Declined Transport,10/10/2015 07:38:54 PM,OCTAVIA ST/PAGE ST,San Francisco,94102,B02,36,3313,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7738892381955, -122.42394706123)",152833593-E36 -153160932,E25,15121346,Medical Incident,11/12/2015,11/12/2015,11/12/2015 09:09:43 AM,11/12/2015 09:14:06 AM,11/12/2015 09:14:32 AM,11/12/2015 09:14:54 AM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,Code 2 Transport,11/12/2015 09:23:40 AM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",153160932-E25 -141913058,E05,14066316,Medical Incident,07/10/2014,07/10/2014,07/10/2014 07:23:54 PM,07/10/2014 07:25:41 PM,07/10/2014 07:26:12 PM,07/10/2014 07:27:12 PM,07/10/2014 07:29:29 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,No Merit,07/10/2014 07:35:13 PM,100 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7727916205308, -122.424624269709)",141913058-E05 -160933968,88,16037084,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:38:20 PM,04/02/2016 11:38:53 PM,04/02/2016 11:39:04 PM,04/02/2016 11:39:14 PM,04/02/2016 11:47:25 PM,04/03/2016 12:19:39 AM,04/03/2016 12:41:26 AM,Code 2 Transport,04/03/2016 01:16:20 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160933968-88 -153253354,E08,15125265,Medical Incident,11/21/2015,11/21/2015,11/21/2015 07:45:35 PM,11/21/2015 07:47:23 PM,11/21/2015 07:47:30 PM,11/21/2015 07:48:19 PM,11/21/2015 07:52:11 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,No Merit,11/21/2015 07:59:36 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",153253354-E08 -143293520,T10,14116811,Structure Fire,11/25/2014,11/25/2014,11/25/2014 09:17:51 PM,11/25/2014 09:17:51 PM,11/25/2014 09:18:37 PM,11/25/2014 09:20:03 PM,11/25/2014 09:22:03 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/25/2014 09:24:19 PM,ARGUELLO BL/GEARY BL,San Francisco,94118,B07,31,7113,3,3,3,false,Alarm,1,TRUCK,1,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",143293520-T10 -153290308,B02,15126485,Alarms,11/25/2015,11/24/2015,11/25/2015 04:14:59 AM,11/25/2015 04:16:14 AM,11/25/2015 04:18:22 AM,11/25/2015 04:20:19 AM,11/25/2015 04:23:43 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 04:32:37 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,false,Alarm,1,CHIEF,3,2,9,Mission,"(37.7661343875141, -122.421935077177)",153290308-B02 -160922172,79,16036482,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:11:11 PM,04/01/2016 03:11:11 PM,04/01/2016 03:14:23 PM,04/01/2016 03:14:40 PM,04/01/2016 03:24:40 PM,04/01/2016 03:29:53 PM,04/01/2016 04:16:45 PM,Code 2 Transport,04/01/2016 04:36:38 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160922172-79 -160952871,52,16037718,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:07:57 PM,04/04/2016 05:10:06 PM,04/04/2016 05:11:56 PM,04/04/2016 05:12:06 PM,04/04/2016 05:33:20 PM,04/04/2016 06:00:52 PM,04/04/2016 06:22:39 PM,Code 2 Transport,04/04/2016 06:49:23 PM,4400 Block of 18TH ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7607142872789, -122.438806415851)",160952871-52 -152492915,E18,15095214,Medical Incident,09/06/2015,09/06/2015,09/06/2015 06:35:49 PM,09/06/2015 06:38:01 PM,09/06/2015 06:38:21 PM,09/06/2015 06:39:27 PM,09/06/2015 06:42:20 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,Code 2 Transport,09/06/2015 07:02:06 PM,1400 Block of 31ST AVE,San Francisco,94122,B08,18,7535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7601963960987, -122.489856806327)",152492915-E18 -142562975,79,14089530,Medical Incident,09/13/2014,09/13/2014,09/13/2014 06:41:44 PM,09/13/2014 06:41:44 PM,09/13/2014 06:42:48 PM,09/13/2014 06:44:00 PM,09/13/2014 06:52:21 PM,09/13/2014 07:05:52 PM,09/13/2014 07:08:25 PM,Code 2 Transport,09/13/2014 07:49:12 PM,1000 Block of POLK ST,San Francisco,94109,B02,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7866019512795, -122.419812186232)",142562975-79 -151943972,E02,15074228,Structure Fire,07/13/2015,07/13/2015,07/13/2015 10:44:47 PM,07/13/2015 10:45:21 PM,07/13/2015 10:45:37 PM,07/13/2015 10:46:27 PM,07/13/2015 10:48:08 PM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,No Merit,07/13/2015 10:51:26 PM,400 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",151943972-E02 -160941192,AM02,16037211,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:02:04 AM,04/03/2016 10:03:38 AM,04/03/2016 10:04:46 AM,04/03/2016 10:05:25 AM,04/03/2016 10:10:46 AM,04/03/2016 10:25:23 AM,04/03/2016 10:37:32 AM,Code 2 Transport,04/03/2016 11:05:51 AM,1200 Block of CLAYTON ST,San Francisco,94114,B05,24,5265,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7607153948771, -122.446304924609)",160941192-AM02 -141942023,RC1,14067318,Medical Incident,07/13/2014,07/13/2014,07/13/2014 03:59:58 PM,07/13/2014 04:00:53 PM,07/13/2014 04:01:13 PM,07/13/2014 04:02:44 PM,07/13/2014 04:04:29 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Code 2 Transport,07/13/2014 04:15:55 PM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Chinatown,"(37.7945054272056, -122.403956804569)",141942023-RC1 -150353377,KM12,15013579,Medical Incident,02/04/2015,02/04/2015,02/04/2015 06:06:36 PM,02/04/2015 06:06:36 PM,02/04/2015 06:07:53 PM,02/04/2015 06:09:57 PM,02/04/2015 06:21:55 PM,02/04/2015 06:31:40 PM,02/04/2015 06:55:40 PM,Code 2 Transport,02/04/2015 07:39:03 PM,200 Block of FARALLONES ST,San Francisco,94112,B09,33,8374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,11,Oceanview/Merced/Ingleside,"(37.7140973591305, -122.460812686036)",150353377-KM12 -151612287,E02,15061589,Medical Incident,06/10/2015,06/10/2015,06/10/2015 03:24:03 PM,06/10/2015 03:24:29 PM,06/10/2015 03:25:43 PM,06/10/2015 03:27:00 PM,06/10/2015 03:31:14 PM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Code 2 Transport,06/10/2015 03:39:10 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",151612287-E02 -153451816,89,15132806,Medical Incident,12/11/2015,12/11/2015,12/11/2015 12:43:48 PM,12/11/2015 12:44:12 PM,12/11/2015 12:44:42 PM,12/11/2015 12:46:13 PM,12/11/2015 12:58:43 PM,12/11/2015 01:13:36 PM,12/11/2015 01:48:02 PM,Code 2 Transport,12/11/2015 02:26:58 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8057759671113, -122.412787887195)",153451816-89 -141502565,E41,14051635,Medical Incident,05/30/2014,05/30/2014,05/30/2014 05:54:00 PM,05/30/2014 05:54:34 PM,05/30/2014 05:56:11 PM,05/30/2014 05:57:34 PM,05/30/2014 05:59:56 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Code 3 Transport,05/30/2014 06:28:12 PM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",141502565-E41 -142692143,E42,14094323,Medical Incident,09/26/2014,09/26/2014,09/26/2014 02:21:11 PM,09/26/2014 02:21:11 PM,09/26/2014 02:22:28 PM,09/26/2014 02:24:23 PM,09/26/2014 02:29:12 PM,04/25/2016 01:14:53 PM,04/25/2016 01:14:53 PM,Code 2 Transport,09/26/2014 02:40:00 PM,LONDON ST/PERSIA AV,San Francisco,94112,B09,43,6127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7227637319069, -122.435208400094)",142692143-E42 -160983606,63,16039101,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:40:38 PM,04/07/2016 08:42:12 PM,04/07/2016 08:42:31 PM,04/07/2016 08:42:46 PM,04/07/2016 08:49:18 PM,04/07/2016 09:00:51 PM,04/07/2016 09:30:29 PM,Code 2 Transport,04/07/2016 09:47:14 PM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696117252991, -122.450474552631)",160983606-63 -152274006,E42,15086741,Medical Incident,08/15/2015,08/15/2015,08/15/2015 09:51:05 PM,08/15/2015 09:52:45 PM,08/15/2015 09:53:07 PM,08/15/2015 09:54:29 PM,08/15/2015 09:55:58 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Code 2 Transport,08/15/2015 10:14:56 PM,1900 Block of SILVER AVE,San Francisco,94124,B10,42,6454,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7350297571638, -122.401211564111)",152274006-E42 -153200026,E29,15122870,Structure Fire,11/16/2015,11/15/2015,11/16/2015 12:10:14 AM,11/16/2015 12:10:14 AM,11/16/2015 12:10:26 AM,11/16/2015 12:12:08 AM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Fire,11/16/2015 12:16:37 AM,100 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",153200026-E29 -150943915,E11,15035924,Medical Incident,04/04/2015,04/04/2015,04/04/2015 11:34:56 PM,04/04/2015 11:35:54 PM,04/04/2015 11:36:12 PM,04/04/2015 11:37:18 PM,04/04/2015 11:39:03 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 11:48:25 PM,3600 Block of 26TH ST,San Francisco,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7487569032068, -122.421922526358)",150943915-E11 -160982843,KM05,16039028,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:59:23 PM,04/07/2016 04:59:23 PM,04/07/2016 05:00:01 PM,04/07/2016 05:00:51 PM,04/07/2016 05:04:46 PM,04/07/2016 05:23:31 PM,04/07/2016 05:31:37 PM,Code 2 Transport,04/07/2016 06:08:55 PM,ELLIS ST/LEAVENWORTH ST,San Francisco,94109,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",160982843-KM05 -151270630,64,15048047,Medical Incident,05/07/2015,05/06/2015,05/07/2015 07:13:19 AM,05/07/2015 07:14:34 AM,05/07/2015 07:15:01 AM,05/07/2015 07:15:24 AM,05/07/2015 07:34:07 AM,05/07/2015 07:56:19 AM,05/07/2015 08:45:35 AM,Code 2 Transport,05/07/2015 08:53:03 AM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",151270630-64 -160972091,AM10,16038430,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:17:13 PM,04/06/2016 01:19:24 PM,04/06/2016 01:25:58 PM,04/06/2016 01:26:34 PM,04/06/2016 01:52:16 PM,04/06/2016 01:55:06 PM,04/06/2016 02:10:58 PM,Code 2 Transport,04/06/2016 02:36:00 PM,300 Block of 30TH AVE,San Francisco,94121,B07,14,7227,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7827045726487, -122.490366876901)",160972091-AM10 -152613684,E26,15099913,Medical Incident,09/18/2015,09/18/2015,09/18/2015 08:23:08 PM,09/18/2015 08:24:49 PM,09/18/2015 08:25:05 PM,09/18/2015 08:26:31 PM,09/18/2015 08:28:36 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/18/2015 08:51:39 PM,100 Block of ADDISON ST,San Francisco,94131,B06,26,8122,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7377457409223, -122.432498108885)",152613684-E26 -151282464,RC3,15048622,Medical Incident,05/08/2015,05/08/2015,05/08/2015 04:09:50 PM,05/08/2015 04:10:55 PM,05/08/2015 04:12:33 PM,05/08/2015 04:14:17 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Medical Examiner,05/08/2015 04:18:00 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",151282464-RC3 -153033972,B10,15116421,Structure Fire,10/30/2015,10/30/2015,10/30/2015 10:07:49 PM,10/30/2015 10:09:59 PM,10/30/2015 10:10:13 PM,10/30/2015 10:11:40 PM,10/30/2015 10:15:19 PM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Fire,10/30/2015 10:27:15 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,false,Alarm,1,CHIEF,3,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",153033972-B10 -160940361,KM03,16037130,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:06:03 AM,04/03/2016 02:06:03 AM,04/03/2016 02:06:46 AM,04/03/2016 02:07:30 AM,04/03/2016 02:15:36 AM,04/03/2016 02:49:32 AM,04/03/2016 03:08:40 AM,Code 2 Transport,04/03/2016 03:28:43 AM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160940361-KM03 -150842497,75,15032113,Medical Incident,03/25/2015,03/25/2015,03/25/2015 03:34:39 PM,03/25/2015 03:34:39 PM,03/25/2015 03:34:54 PM,03/25/2015 03:35:01 PM,03/25/2015 03:40:13 PM,03/25/2015 03:55:16 PM,03/25/2015 04:05:13 PM,Code 2 Transport,03/25/2015 04:51:05 PM,200 Block of LARKIN ST,San Francisco,94102,B02,36,1645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",150842497-75 -142891539,76,14101854,Medical Incident,10/16/2014,10/16/2014,10/16/2014 11:48:00 AM,10/16/2014 11:49:43 AM,10/16/2014 11:49:52 AM,10/16/2014 11:50:03 AM,10/16/2014 12:05:05 PM,10/16/2014 12:20:13 PM,10/16/2014 12:42:09 PM,Code 2 Transport,10/16/2014 01:11:33 PM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2158,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7881178022274, -122.401226932683)",142891539-76 -151330652,E36,15050346,Gas Leak (Natural and LP Gases),05/13/2015,05/12/2015,05/13/2015 07:27:39 AM,05/13/2015 07:29:07 AM,05/13/2015 07:29:21 AM,05/13/2015 07:30:39 AM,05/13/2015 07:32:34 AM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Fire,05/13/2015 07:41:01 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",151330652-E36 -160973558,85,16038603,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:25:35 PM,04/06/2016 06:26:29 PM,04/06/2016 06:27:40 PM,04/06/2016 06:27:48 PM,04/06/2016 06:32:22 PM,04/06/2016 06:55:39 PM,04/06/2016 07:09:01 PM,Code 2 Transport,04/06/2016 07:57:29 PM,1400 Block of INNES AVE,San Francisco,94124,B10,25,6532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7378257783717, -122.386265458341)",160973558-85 -160940637,62,16037158,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:01:10 AM,04/03/2016 05:02:49 AM,04/03/2016 05:03:39 AM,04/03/2016 05:03:50 AM,04/03/2016 05:10:30 AM,04/03/2016 05:28:19 AM,04/03/2016 05:43:16 AM,Code 2 Transport,04/03/2016 06:03:21 AM,ELLIS ST/TAYLOR ST,San Francisco,94102,B03,1,1366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",160940637-62 -150321455,KM12,15012334,Medical Incident,02/01/2015,02/01/2015,02/01/2015 11:15:25 AM,02/01/2015 11:16:27 AM,02/01/2015 11:17:17 AM,02/01/2015 11:18:18 AM,02/01/2015 11:22:57 AM,02/01/2015 11:45:54 AM,02/01/2015 12:10:03 PM,Code 2 Transport,02/01/2015 12:31:01 PM,1100 Block of MCALLISTER ST,San Francisco,94117,B02,5,3425,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7787422073706, -122.430463470215)",150321455-KM12 -150450924,64,15017414,Medical Incident,02/14/2015,02/14/2015,02/14/2015 08:21:39 AM,02/14/2015 08:24:23 AM,02/14/2015 08:25:10 AM,02/14/2015 08:25:24 AM,02/14/2015 08:29:50 AM,02/14/2015 08:53:37 AM,02/14/2015 09:12:19 AM,Code 2 Transport,02/14/2015 09:40:20 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",150450924-64 -153081624,E02,15118350,Medical Incident,11/04/2015,11/04/2015,11/04/2015 11:54:48 AM,11/04/2015 11:55:56 AM,11/04/2015 11:58:53 AM,11/04/2015 11:58:53 AM,11/04/2015 12:00:51 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,No Merit,11/04/2015 12:04:02 PM,1400 Block of TAYLOR ST,San Francisco,94133,B01,2,1443,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7956493531705, -122.413208626831)",153081624-E02 -160974646,57,16038719,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:31:41 PM,04/06/2016 11:32:38 PM,04/06/2016 11:34:10 PM,04/06/2016 11:34:16 PM,04/06/2016 11:37:03 PM,04/07/2016 12:07:17 AM,04/07/2016 12:25:33 AM,Code 2 Transport,04/07/2016 01:28:58 AM,5000 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7466063701183, -122.442785848189)",160974646-57 -161001298,AM08,16039722,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:17:01 AM,04/09/2016 11:17:01 AM,04/09/2016 11:19:42 AM,04/09/2016 11:20:12 AM,04/09/2016 11:27:16 AM,04/09/2016 11:43:45 AM,04/09/2016 11:43:58 AM,Code 2 Transport,04/09/2016 12:01:48 PM,MASON ST/CALIFORNIA ST,San Francisco,94108,B01,41,1418,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7918346271881, -122.410817535296)",161001298-AM08 -141900263,E28,14065707,Medical Incident,07/09/2014,07/08/2014,07/09/2014 03:18:27 AM,07/09/2014 03:21:37 AM,07/09/2014 03:24:10 AM,07/09/2014 03:26:52 AM,07/09/2014 03:30:05 AM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Code 2 Transport,07/09/2014 03:42:22 AM,800 Block of UNION ST,San Francisco,94133,B01,28,1422,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7999825843443, -122.413306427828)",141900263-E28 -143503307,E18,14125146,Medical Incident,12/16/2014,12/16/2014,12/16/2014 08:37:42 PM,12/16/2014 08:40:26 PM,12/16/2014 08:59:17 PM,12/16/2014 09:00:25 PM,12/16/2014 09:02:42 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Fire,12/16/2014 09:25:53 PM,1800 Block of 29TH AVE,San Francisco,94122,B08,18,7515,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7528389433197, -122.48704896526)",143503307-E18 -151781692,E05,15067747,Medical Incident,06/27/2015,06/27/2015,06/27/2015 12:18:52 PM,06/27/2015 12:19:57 PM,06/27/2015 12:21:04 PM,06/27/2015 12:22:08 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,Code 2 Transport,06/27/2015 12:23:04 PM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",151781692-E05 -153071489,B01,15117944,Alarms,11/03/2015,11/03/2015,11/03/2015 11:06:09 AM,11/03/2015 11:08:43 AM,11/03/2015 11:10:39 AM,11/03/2015 11:10:51 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/03/2015 11:14:53 AM,500 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1334,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.7999440400543, -122.409564939064)",153071489-B01 -151943458,E03,15074185,Vehicle Fire,07/13/2015,07/13/2015,07/13/2015 08:15:04 PM,07/13/2015 08:15:39 PM,07/13/2015 08:15:59 PM,07/13/2015 08:17:41 PM,07/13/2015 08:18:45 PM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,Fire,07/13/2015 08:26:45 PM,1300 Block of FRANKLIN ST,San Francisco,94109,B04,3,3223,3,3,3,true,Fire,1,ENGINE,1,4,2,Western Addition,"(37.7866266269211, -122.423329395229)",151943458-E03 -153001349,E14,15115098,Administrative,10/27/2015,10/27/2015,10/27/2015 11:02:59 AM,10/27/2015 11:03:17 AM,10/27/2015 11:06:23 AM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Fire,10/27/2015 11:08:55 AM,500 Block of 26TH AVE,San Francisco,94121,B07,14,7213,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",153001349-E14 -141853021,67,14064165,Medical Incident,07/04/2014,07/04/2014,07/04/2014 09:11:56 PM,07/04/2014 09:12:51 PM,07/04/2014 09:13:35 PM,07/04/2014 09:13:42 PM,07/04/2014 09:17:15 PM,07/04/2014 09:27:35 PM,07/04/2014 09:32:09 PM,Code 2 Transport,07/04/2014 10:04:05 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",141853021-67 -160930297,85,16036698,Medical Incident,04/02/2016,04/01/2016,04/02/2016 02:05:00 AM,04/02/2016 02:05:00 AM,04/02/2016 02:05:43 AM,04/02/2016 02:05:52 AM,04/02/2016 02:07:41 AM,04/02/2016 02:21:05 AM,04/02/2016 02:26:46 AM,Code 2 Transport,04/02/2016 02:50:09 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",160930297-85 -160971694,AM04,16038396,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:51:09 AM,04/06/2016 11:53:00 AM,04/06/2016 11:53:55 AM,04/06/2016 11:55:16 AM,04/06/2016 12:08:22 PM,04/06/2016 12:19:27 PM,04/06/2016 12:57:54 PM,Code 2 Transport,04/06/2016 01:26:06 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160971694-AM04 -150482307,E14,15018662,Medical Incident,02/17/2015,02/17/2015,02/17/2015 03:23:11 PM,02/17/2015 03:26:12 PM,02/17/2015 03:28:15 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Cancelled,02/17/2015 03:30:46 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150482307-E14 -153280049,52,15126078,Medical Incident,11/24/2015,11/23/2015,11/24/2015 12:21:21 AM,11/24/2015 12:21:21 AM,11/24/2015 12:22:12 AM,11/24/2015 12:22:18 AM,11/24/2015 12:29:35 AM,11/24/2015 12:39:47 AM,11/24/2015 12:45:10 AM,Code 2 Transport,11/24/2015 01:14:24 AM,26TH ST/HARRISON ST,San Francisco,94110,B06,9,5615,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7494362303275, -122.411592845472)",153280049-52 -153382063,B04,15130092,Alarms,12/04/2015,12/04/2015,12/04/2015 01:37:02 PM,12/04/2015 01:38:31 PM,12/04/2015 01:38:38 PM,12/04/2015 01:39:19 PM,12/04/2015 01:41:12 PM,04/25/2016 01:06:50 PM,04/25/2016 01:06:50 PM,Fire,12/04/2015 01:52:29 PM,2600 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",153382063-B04 -152800932,E03,15107363,Medical Incident,10/07/2015,10/07/2015,10/07/2015 08:48:24 AM,10/07/2015 08:50:37 AM,10/07/2015 08:50:52 AM,10/07/2015 08:51:50 AM,10/07/2015 08:53:19 AM,04/25/2016 01:07:55 PM,04/25/2016 01:07:55 PM,Code 2 Transport,10/07/2015 08:57:09 AM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",152800932-E03 -160982005,AM04,16038927,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:20:10 PM,04/07/2016 01:20:56 PM,04/07/2016 01:21:54 PM,04/07/2016 01:22:55 PM,04/07/2016 01:32:57 PM,04/07/2016 01:43:29 PM,04/07/2016 02:04:21 PM,Code 2 Transport,04/07/2016 02:43:33 PM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160982005-AM04 -150361942,83,15013852,Medical Incident,02/05/2015,02/05/2015,02/05/2015 01:45:57 PM,02/05/2015 01:46:47 PM,02/05/2015 01:48:26 PM,02/05/2015 01:48:26 PM,02/05/2015 01:49:55 PM,02/05/2015 02:04:56 PM,02/05/2015 02:16:16 PM,Code 2 Transport,02/05/2015 02:29:07 PM,100 Block of BEAUMONT AVE,San Francisco,94118,B07,10,4563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7795186951087, -122.454767801221)",150361942-83 -153333040,B01,15128212,Alarms,11/29/2015,11/29/2015,11/29/2015 10:06:04 PM,11/29/2015 10:06:58 PM,11/29/2015 10:07:13 PM,11/29/2015 10:09:06 PM,11/29/2015 10:10:27 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Fire,11/29/2015 10:12:35 PM,0 Block of EMERY LN,San Francisco,94133,B01,2,1333,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",153333040-B01 -161001618,AM08,16039765,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:08:05 PM,04/09/2016 01:08:05 PM,04/09/2016 01:10:11 PM,04/09/2016 01:11:50 PM,04/09/2016 01:23:19 PM,04/09/2016 01:38:28 PM,04/09/2016 01:45:31 PM,Code 2 Transport,04/09/2016 02:15:38 PM,1900 Block of OAK ST,San Francisco,94117,B05,12,4544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7713013028881, -122.451412659858)",161001618-AM08 -152640189,KM07,15100911,Medical Incident,09/21/2015,09/20/2015,09/21/2015 01:36:45 AM,09/21/2015 01:37:36 AM,09/21/2015 01:38:25 AM,09/21/2015 01:39:04 AM,09/21/2015 01:48:18 AM,09/21/2015 02:08:52 AM,09/21/2015 02:17:55 AM,Code 2 Transport,09/21/2015 02:49:31 AM,4000 Block of MISSION ST,San Francisco,94112,B06,32,5633,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7321745845353, -122.427793514714)",152640189-KM07 -152934108,D3,15112775,Structure Fire,10/20/2015,10/20/2015,10/20/2015 11:16:26 PM,10/20/2015 11:16:41 PM,10/20/2015 11:17:27 PM,10/20/2015 11:18:30 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Fire,10/20/2015 11:21:23 PM,200 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,false,Alarm,1,CHIEF,9,2,8,Mission,"(37.7668770284191, -122.424185302421)",152934108-D3 -141501409,T03,14051517,Traffic Collision,05/30/2014,05/30/2014,05/30/2014 12:22:45 PM,05/30/2014 12:22:45 PM,05/30/2014 12:24:15 PM,05/30/2014 12:24:29 PM,05/30/2014 12:28:53 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Unable to Locate,05/30/2014 12:30:48 PM,POST ST/GOUGH ST,San Francisco,94109,B04,3,3256,A,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,5,Japantown,"(37.7861964263218, -122.42485842363)",141501409-T03 -160980360,70,16038764,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:19:29 AM,04/07/2016 03:20:09 AM,04/07/2016 03:26:45 AM,04/07/2016 03:26:45 AM,04/07/2016 03:32:06 AM,04/07/2016 03:39:26 AM,04/07/2016 03:51:17 AM,Code 2 Transport,04/07/2016 04:55:24 AM,SILVER AV/LISBON ST,San Francisco,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7285344326981, -122.428666969225)",160980360-70 -150430221,E36,15016592,Medical Incident,02/12/2015,02/11/2015,02/12/2015 02:10:47 AM,02/12/2015 02:12:48 AM,02/12/2015 02:13:02 AM,02/12/2015 02:15:21 AM,02/12/2015 02:20:34 AM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Code 2 Transport,02/12/2015 02:26:25 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",150430221-E36 -161000319,55,16039597,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:18:02 AM,04/09/2016 02:21:37 AM,04/09/2016 02:23:23 AM,04/09/2016 02:24:03 AM,04/09/2016 02:42:53 AM,04/09/2016 03:16:52 AM,04/09/2016 03:47:53 AM,Code 2 Transport,04/09/2016 04:20:58 AM,MAIN ST/HOWARD ST,San Francisco,94105,B03,35,2116,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",161000319-55 -142721246,52,14095345,Medical Incident,09/29/2014,09/29/2014,09/29/2014 10:53:58 AM,09/29/2014 10:54:30 AM,09/29/2014 10:55:31 AM,09/29/2014 10:56:14 AM,09/29/2014 11:03:58 AM,09/29/2014 11:11:40 AM,09/29/2014 11:36:59 AM,Code 2 Transport,09/29/2014 12:22:31 PM,0 Block of GAVEN ST,San Francisco,94134,B10,42,6366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7338089312246, -122.407005779924)",142721246-52 -142903959,KM07,14102448,Medical Incident,10/17/2014,10/17/2014,10/17/2014 11:30:01 PM,10/17/2014 11:30:52 PM,10/17/2014 11:31:20 PM,10/17/2014 11:32:22 PM,10/17/2014 11:37:01 PM,10/17/2014 11:49:04 PM,10/17/2014 11:49:29 PM,Code 3 Transport,10/18/2014 12:51:57 AM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",142903959-KM07 -141790522,54,14061678,Medical Incident,06/28/2014,06/27/2014,06/28/2014 03:28:56 AM,06/28/2014 03:28:56 AM,06/28/2014 03:33:49 AM,06/28/2014 03:34:41 AM,06/28/2014 03:47:06 AM,06/28/2014 04:08:38 AM,06/28/2014 04:20:11 AM,Code 2 Transport,06/28/2014 05:04:34 AM,200 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5444,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7588840549508, -122.429141172461)",141790522-54 -151031759,81,15038947,Medical Incident,04/13/2015,04/13/2015,04/13/2015 12:49:58 PM,04/13/2015 12:50:49 PM,04/13/2015 12:51:10 PM,04/13/2015 12:51:22 PM,04/13/2015 12:52:48 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Patient Declined Transport,04/13/2015 01:25:29 PM,900 Block of MASON ST,San Francisco,94108,B01,41,1414,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",151031759-81 -142801056,E36,14098430,HazMat,10/07/2014,10/07/2014,10/07/2014 09:57:33 AM,10/07/2014 09:58:31 AM,10/07/2014 10:15:43 AM,10/07/2014 10:15:43 AM,10/07/2014 10:15:43 AM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Fire,10/07/2014 11:53:36 AM,100 Block of BERRY ST,San Francisco,94158,B03,8,2171,3,3,3,true,Alarm,1,ENGINE,4,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",142801056-E36 -160992266,77,16039355,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:27:49 PM,04/08/2016 03:29:35 PM,04/08/2016 03:30:07 PM,04/08/2016 03:30:30 PM,04/08/2016 03:50:46 PM,04/08/2016 03:58:01 PM,04/08/2016 04:34:53 PM,Code 2 Transport,04/08/2016 04:48:14 PM,3100 Block of 20TH AVE,San Francisco,94132,B08,19,8862,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7306107022051, -122.475862776859)",160992266-77 -150780654,T13,15029801,Alarms,03/19/2015,03/18/2015,03/19/2015 07:07:30 AM,03/19/2015 07:08:09 AM,03/19/2015 07:08:18 AM,03/19/2015 07:09:55 AM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Fire,03/19/2015 07:12:57 AM,STEUART ST/MARKET ST,San Francisco,94105,B03,35,2111,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",150780654-T13 -160981290,AM10,16038858,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:11:27 AM,04/07/2016 10:13:14 AM,04/07/2016 10:16:53 AM,04/07/2016 10:17:35 AM,04/07/2016 10:29:48 AM,04/07/2016 10:36:10 AM,04/07/2016 10:43:46 AM,Code 2 Transport,04/07/2016 11:11:59 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160981290-AM10 -143621117,B09,14129470,Structure Fire,12/28/2014,12/28/2014,12/28/2014 10:42:56 AM,12/28/2014 10:43:39 AM,12/28/2014 10:43:58 AM,12/28/2014 10:44:20 AM,12/28/2014 10:48:34 AM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Fire,12/28/2014 10:51:27 AM,SADOWA ST/SAN JOSE AV,San Francisco,94112,B09,33,8371,3,3,3,false,Alarm,1,CHIEF,5,9,11,Oceanview/Merced/Ingleside,"(37.7123307247569, -122.454665237567)",143621117-B09 -142604024,E36,14091080,Other,09/17/2014,09/17/2014,09/17/2014 11:28:54 PM,09/17/2014 11:28:54 PM,09/17/2014 11:36:58 PM,09/17/2014 11:39:16 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,No Merit,09/17/2014 11:45:21 PM,STEVENSON ST/14TH ST,San Francisco,94103,B02,36,5215,2,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7681901113743, -122.421364522442)",142604024-E36 -152662401,E06,15101923,Medical Incident,09/23/2015,09/23/2015,09/23/2015 03:14:54 PM,09/23/2015 03:16:42 PM,09/23/2015 03:19:17 PM,09/23/2015 03:20:28 PM,09/23/2015 03:27:03 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Code 2 Transport,09/23/2015 03:38:34 PM,3600 Block of 20TH ST,San Francisco,94110,B06,7,5445,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Mission,"(37.7584863037287, -122.422385383463)",152662401-E06 -152352156,E17,15089631,,08/23/2015,08/23/2015,08/23/2015 03:10:00 PM,08/23/2015 03:10:00 PM,08/23/2015 03:12:00 PM,08/23/2015 03:13:00 PM,08/23/2015 03:16:00 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,SFPD,08/23/2015 03:21:00 PM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",152352156-E17 -143352668,E20,14118778,Medical Incident,12/01/2014,12/01/2014,12/01/2014 05:01:38 PM,12/01/2014 05:03:43 PM,12/01/2014 05:04:14 PM,12/01/2014 05:06:07 PM,12/01/2014 05:07:24 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Code 2 Transport,12/01/2014 05:20:51 PM,100 Block of GLADEVIEW WAY,San Francisco,94131,B08,20,5361,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.752031784008, -122.450511726322)",143352668-E20 -160962526,82,16038071,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:41:49 PM,04/05/2016 03:45:31 PM,04/05/2016 03:45:39 PM,04/05/2016 03:45:54 PM,04/05/2016 03:58:23 PM,04/05/2016 04:07:09 PM,04/05/2016 04:34:14 PM,Code 2 Transport,04/05/2016 04:34:24 PM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774574199485, -122.413157691577)",160962526-82 -153074218,88,15118186,Structure Fire,11/03/2015,11/03/2015,11/03/2015 10:59:46 PM,11/03/2015 11:00:22 PM,11/03/2015 11:01:02 PM,11/03/2015 11:01:26 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Fire,11/03/2015 11:05:52 PM,2400 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3616,3,3,3,true,Alarm,1,MEDIC,9,4,2,Pacific Heights,"(37.7888558494073, -122.434673564554)",153074218-88 -160982315,70,16038967,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:41:45 PM,04/07/2016 02:42:10 PM,04/07/2016 02:42:39 PM,04/07/2016 02:43:03 PM,04/07/2016 02:54:06 PM,04/07/2016 03:10:07 PM,04/07/2016 03:37:21 PM,Code 2 Transport,04/07/2016 04:28:21 PM,WAWONA ST/47TH AV,San Francisco,94116,B08,23,7733,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7361351419095, -122.505296602351)",160982315-70 -150592817,56,15022637,Medical Incident,02/28/2015,02/28/2015,02/28/2015 06:12:40 PM,02/28/2015 06:12:40 PM,02/28/2015 06:14:34 PM,02/28/2015 06:14:42 PM,02/28/2015 06:20:37 PM,02/28/2015 06:47:16 PM,02/28/2015 06:55:01 PM,Code 2 Transport,02/28/2015 07:35:09 PM,JONES ST/MARKET ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",150592817-56 -141160279,KM14,14039242,Citizen Assist / Service Call,04/26/2014,04/26/2014,04/26/2014 05:26:39 PM,04/26/2014 05:28:24 PM,04/26/2014 05:28:30 PM,04/26/2014 05:29:11 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/25/2016 01:17:40 PM,25TH ST/HAMPSHIRE ST,SAN FRANCISCO,94110,B10,9,2624,3,3,3,false,Alarm,1,PRIVATE,2,6,9,Mission,"(37.7513102329158, -122.407139008213)",141160279-KM14 -160951450,AM10,16037598,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:32:02 AM,04/04/2016 11:32:39 AM,04/04/2016 11:33:33 AM,04/04/2016 11:34:13 AM,04/04/2016 11:36:29 AM,04/04/2016 11:45:37 AM,04/04/2016 12:16:39 PM,Code 2 Transport,04/04/2016 12:37:42 PM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",160951450-AM10 -141180263,E29,14039863,Alarms,04/28/2014,04/28/2014,04/28/2014 02:55:23 PM,04/28/2014 02:59:53 PM,04/28/2014 03:00:00 PM,04/28/2014 03:00:49 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,No Merit,04/28/2014 03:06:24 PM,MARIPOSA ST/3RD ST,SAN FRANCISCO,94107,B03,29,2671,3,3,3,false,Alarm,1,ENGINE,3,3,10,Potrero Hill,"(37.7643218361157, -122.388851284628)",141180263-E29 -150103170,E12,15004119,Medical Incident,01/10/2015,01/10/2015,01/10/2015 08:33:08 PM,01/10/2015 08:35:19 PM,01/10/2015 08:35:36 PM,01/10/2015 08:36:43 PM,01/10/2015 08:39:37 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 2 Transport,01/10/2015 08:40:03 PM,HILLWAY AV/CARL ST,San Francisco,94117,B05,12,7321,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Inner Sunset,"(37.7649324615306, -122.456759007543)",150103170-E12 -160943205,85,16037408,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:02:30 PM,04/03/2016 08:04:10 PM,04/03/2016 08:04:55 PM,04/03/2016 08:05:00 PM,04/03/2016 08:17:06 PM,04/03/2016 08:50:48 PM,04/03/2016 09:22:17 PM,Code 2 Transport,04/03/2016 10:07:21 PM,200 Block of PEABODY ST,San Francisco,94134,B09,44,6256,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7090147282704, -122.407917700697)",160943205-85 -150030921,2R01,15001038,,01/03/2015,01/03/2015,01/03/2015 09:24:18 AM,01/03/2015 09:25:25 AM,01/03/2015 09:41:01 AM,01/03/2015 09:41:01 AM,01/03/2015 09:41:01 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Patient Declined Transport,01/03/2015 09:41:06 AM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,ADMIN,0,2,6,Tenderloin,"(37.782320193191, -122.41402801662)",150030921-2R01 -160991568,54,16039281,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:31:07 PM,04/08/2016 12:32:41 PM,04/08/2016 12:33:00 PM,04/08/2016 12:33:23 PM,04/08/2016 12:51:29 PM,04/08/2016 01:02:27 PM,04/08/2016 01:21:59 PM,Code 2 Transport,04/08/2016 01:53:12 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160991568-54 -160963694,76,16038179,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:32:55 PM,04/05/2016 08:33:27 PM,04/05/2016 08:33:41 PM,04/05/2016 08:33:55 PM,04/05/2016 08:41:31 PM,04/05/2016 08:52:14 PM,04/05/2016 09:17:35 PM,Code 2 Transport,04/05/2016 09:53:59 PM,900 Block of GENEVA AVE,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7161388666379, -122.440743149905)",160963694-76 -160981905,52,16038919,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:49:17 PM,04/07/2016 12:51:52 PM,04/07/2016 12:52:19 PM,04/07/2016 12:53:07 PM,04/07/2016 01:05:26 PM,04/07/2016 01:20:51 PM,04/07/2016 02:01:42 PM,Code 2 Transport,04/07/2016 02:29:12 PM,200 Block of WAWONA ST,San Francisco,94127,B08,39,8612,2,2,2,true,Non Life-threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7392918441899, -122.468883827068)",160981905-52 -160922607,62,16036527,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:59:52 PM,04/01/2016 05:01:36 PM,04/01/2016 05:02:02 PM,04/01/2016 05:02:08 PM,04/01/2016 05:13:30 PM,04/01/2016 05:48:54 PM,04/01/2016 06:15:12 PM,Code 2 Transport,04/01/2016 06:50:13 PM,0 Block of JULES AVE,San Francisco,94112,B09,33,8462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.719124726717, -122.461301532222)",160922607-62 -143463107,E38,14123492,Administrative,12/12/2014,12/12/2014,12/12/2014 06:57:46 PM,12/12/2014 06:58:01 PM,12/12/2014 06:58:46 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Fire,12/12/2014 06:59:26 PM,2100 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",143463107-E38 -143463469,B02,14123537,Alarms,12/12/2014,12/12/2014,12/12/2014 08:54:44 PM,12/12/2014 08:54:44 PM,12/12/2014 08:55:28 PM,12/12/2014 08:56:46 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Fire,12/12/2014 09:08:38 PM,100 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,3,3,3,false,Alarm,1,CHIEF,2,6,8,Castro/Upper Market,"(37.7600190563185, -122.436104378198)",143463469-B02 -141260166,B06,14042688,Alarms,05/06/2014,05/06/2014,05/06/2014 11:03:07 AM,05/06/2014 11:04:09 AM,05/06/2014 11:05:03 AM,05/06/2014 11:05:54 AM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Fire,05/06/2014 11:13:40 AM,100 Block of JENNINGS ST,,94124,B10,25,996,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",141260166-B06 -150432888,E01,15016823,Medical Incident,02/12/2015,02/12/2015,02/12/2015 05:44:57 PM,02/12/2015 05:45:37 PM,02/12/2015 05:46:02 PM,02/12/2015 05:47:21 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Against Medical Advice,02/12/2015 05:54:14 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",150432888-E01 -141010128,E36,14034057,Alarms,04/11/2014,04/11/2014,04/11/2014 10:44:05 AM,04/11/2014 10:44:23 AM,04/11/2014 10:44:50 AM,04/11/2014 10:46:21 AM,04/11/2014 10:49:13 AM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Fire,04/11/2014 10:54:09 AM,0 Block of VAN NESS AVE,SAN FRANCISCO,94102,B02,36,3211,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7757784176924, -122.419234662317)",141010128-E36 -142872330,E21,14101225,Administrative,10/14/2014,10/14/2014,10/14/2014 03:50:16 PM,10/14/2014 03:50:20 PM,10/14/2014 03:50:29 PM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,04/25/2016 01:14:33 PM,Cancelled,10/14/2014 03:52:31 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",142872330-E21 -141580999,T06,14054367,Structure Fire,06/07/2014,06/07/2014,06/07/2014 10:08:08 AM,06/07/2014 10:09:20 AM,06/07/2014 10:10:19 AM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 10:14:03 AM,500 Block of SHOTWELL ST,San Francisco,94110,B06,7,5433,3,3,3,false,Alarm,1,TRUCK,9,6,9,Mission,"(37.7596358018147, -122.415785026906)",141580999-T06 -150441449,E36,15017071,Medical Incident,02/13/2015,02/13/2015,02/13/2015 11:13:58 AM,02/13/2015 11:15:36 AM,02/13/2015 11:15:47 AM,02/13/2015 11:17:34 AM,02/13/2015 11:19:43 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/13/2015 11:33:33 AM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",150441449-E36 -150641605,65,15024433,Medical Incident,03/05/2015,03/05/2015,03/05/2015 11:40:22 AM,03/05/2015 11:48:22 AM,03/05/2015 11:49:29 AM,03/05/2015 11:51:14 AM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Unable to Locate,03/05/2015 11:57:42 AM,SOUTH VAN NESS AV/23RD ST,San Francisco,94110,B06,7,5511,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7539677697092, -122.416413490249)",150641605-65 -160942462,64,16037326,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:15:24 PM,04/03/2016 04:15:34 PM,04/03/2016 04:15:47 PM,04/03/2016 04:16:12 PM,04/03/2016 04:21:54 PM,04/03/2016 04:40:42 PM,04/03/2016 05:01:48 PM,Code 2 Transport,04/03/2016 05:29:32 PM,100 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7789597633583, -122.410718060304)",160942462-64 -150353489,E33,15013590,Alarms,02/04/2015,02/04/2015,02/04/2015 06:35:54 PM,02/04/2015 06:37:48 PM,02/04/2015 06:37:57 PM,02/04/2015 06:39:15 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Fire,02/04/2015 06:42:37 PM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,false,Alarm,1,ENGINE,4,6,8,Mission,"(37.7600451698328, -122.423265598657)",150353489-E33 -150580196,77,15022015,Medical Incident,02/27/2015,02/26/2015,02/27/2015 01:48:31 AM,02/27/2015 01:48:31 AM,02/27/2015 01:49:20 AM,02/27/2015 01:50:45 AM,02/27/2015 02:06:32 AM,02/27/2015 02:17:35 AM,02/27/2015 02:36:23 AM,Code 2 Transport,02/27/2015 03:19:40 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7981219270604, -122.405087523335)",150580196-77 -160952791,KM13,16037713,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:48:42 PM,04/04/2016 04:49:45 PM,04/04/2016 04:51:49 PM,04/04/2016 04:52:59 PM,04/04/2016 05:07:32 PM,04/04/2016 05:36:13 PM,04/04/2016 06:00:06 PM,Code 2 Transport,04/04/2016 06:26:50 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160952791-KM13 -141453562,B06,14049984,Structure Fire,05/25/2014,05/25/2014,05/25/2014 11:25:25 PM,05/25/2014 11:25:44 PM,05/25/2014 11:25:56 PM,05/25/2014 11:30:52 PM,05/25/2014 11:30:52 PM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,Fire,05/26/2014 12:18:06 AM,3700 Block of 16TH ST,San Francisco,94114,B05,6,5233,3,3,3,false,Fire,1,CHIEF,5,5,8,Castro/Upper Market,"(37.7637474230004, -122.43687116756)",141453562-B06 -160931828,AM10,16036868,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:31:55 PM,04/02/2016 01:31:55 PM,04/02/2016 01:37:30 PM,04/02/2016 01:37:55 PM,04/02/2016 01:52:31 PM,04/02/2016 02:05:40 PM,04/02/2016 02:19:01 PM,Code 2 Transport,04/02/2016 02:34:38 PM,HOWARD ST/BEALE ST,San Francisco,94105,B03,35,2124,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7899262298106, -122.394276229254)",160931828-AM10 -151731208,AM08,15066015,Medical Incident,06/22/2015,06/22/2015,06/22/2015 11:01:15 AM,06/22/2015 11:02:07 AM,06/22/2015 11:02:31 AM,06/22/2015 11:03:30 AM,06/22/2015 11:05:54 AM,06/22/2015 11:12:54 AM,06/22/2015 11:45:55 AM,Code 2 Transport,06/22/2015 12:11:54 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7755801285655, -122.413994780042)",151731208-AM08 -160973543,KM04,16038601,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:22:45 PM,04/06/2016 06:22:45 PM,04/06/2016 06:26:56 PM,04/06/2016 06:27:54 PM,04/06/2016 06:30:15 PM,04/06/2016 06:49:03 PM,04/06/2016 07:12:47 PM,Code 2 Transport,04/06/2016 07:48:35 PM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160973543-KM04 -160942177,64,16037298,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:43:44 PM,04/03/2016 02:46:54 PM,04/03/2016 02:48:16 PM,04/03/2016 02:48:43 PM,04/03/2016 02:53:19 PM,04/03/2016 03:26:12 PM,04/03/2016 03:43:58 PM,Code 2 Transport,04/03/2016 04:12:32 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",160942177-64 -150512827,74,15019751,Medical Incident,02/20/2015,02/20/2015,02/20/2015 05:02:03 PM,02/20/2015 05:03:03 PM,02/20/2015 05:03:28 PM,02/20/2015 05:03:38 PM,02/20/2015 05:16:30 PM,02/20/2015 05:17:08 PM,02/20/2015 05:28:26 PM,Code 2 Transport,02/20/2015 06:14:02 PM,500 Block of VALENCIA ST,San Francisco,94103,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",150512827-74 -142960237,88,14104236,Medical Incident,10/23/2014,10/22/2014,10/23/2014 02:00:45 AM,10/23/2014 02:00:45 AM,10/23/2014 02:01:04 AM,10/23/2014 02:01:12 AM,10/23/2014 02:03:18 AM,10/23/2014 02:18:25 AM,10/23/2014 02:22:17 AM,Code 2 Transport,10/23/2014 02:45:48 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",142960237-88 -142083563,E01,14072260,Medical Incident,07/27/2014,07/27/2014,07/27/2014 11:11:58 PM,07/27/2014 11:13:43 PM,07/27/2014 11:14:01 PM,07/27/2014 11:15:25 PM,07/27/2014 11:18:18 PM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Code 2 Transport,07/27/2014 11:22:34 PM,JESSIE ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",142083563-E01 -143311002,RS1,14117332,Medical Incident,11/27/2014,11/27/2014,11/27/2014 10:30:54 AM,11/27/2014 10:31:14 AM,11/27/2014 10:31:41 AM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,Other,11/27/2014 10:32:21 AM,GOLDEN GATE AV/TAYLOR ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",143311002-RS1 -152620408,E44,15100015,Medical Incident,09/19/2015,09/18/2015,09/19/2015 02:33:17 AM,09/19/2015 02:35:23 AM,09/19/2015 02:36:00 AM,09/19/2015 02:38:31 AM,09/19/2015 02:57:00 AM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/19/2015 03:10:25 AM,0 Block of TEDDY AVE,San Francisco,94134,B10,44,6265,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7133320726694, -122.403313250253)",152620408-E44 -142960371,B02,14104259,Medical Incident,10/23/2014,10/22/2014,10/23/2014 04:13:55 AM,10/23/2014 04:14:51 AM,10/23/2014 04:15:16 AM,10/23/2014 04:16:59 AM,10/23/2014 04:20:33 AM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Code 3 Transport,10/23/2014 04:40:44 AM,13TH ST/MISSION ST,San Francisco,94103,B02,36,5123,E,E,3,false,Potentially Life-Threatening,1,CHIEF,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",142960371-B02 -141592737,B09,14054928,Structure Fire,06/08/2014,06/08/2014,06/08/2014 07:44:19 PM,06/08/2014 07:45:18 PM,06/08/2014 07:45:48 PM,06/08/2014 07:47:55 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Fire,06/08/2014 07:50:55 PM,800 Block of FELTON ST,San Francisco,94134,B10,42,6342,3,3,3,false,Fire,1,CHIEF,5,9,9,Portola,"(37.7278955738181, -122.413004150415)",141592737-B09 -141991769,66,14068918,Medical Incident,07/18/2014,07/18/2014,07/18/2014 01:35:50 PM,07/18/2014 01:36:32 PM,07/18/2014 01:36:48 PM,07/18/2014 01:37:26 PM,07/18/2014 01:41:40 PM,07/18/2014 02:05:17 PM,07/18/2014 02:20:38 PM,Code 2 Transport,07/18/2014 02:59:30 PM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",141991769-66 -160940964,61,16037198,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:37:11 AM,04/03/2016 08:39:02 AM,04/03/2016 08:40:51 AM,04/03/2016 08:41:05 AM,04/03/2016 08:46:35 AM,04/03/2016 09:06:22 AM,04/03/2016 09:30:04 AM,Code 2 Transport,04/03/2016 09:54:34 AM,600 Block of SHIELDS ST,San Francisco,94132,B09,33,8431,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7178422382696, -122.468488213878)",160940964-61 -160951550,74,16037604,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:53:34 AM,04/04/2016 11:55:37 AM,04/04/2016 11:56:13 AM,04/04/2016 11:56:29 AM,04/04/2016 12:09:05 PM,04/04/2016 12:22:13 PM,04/04/2016 12:43:20 PM,Code 2 Transport,04/04/2016 01:14:28 PM,1700 Block of 16TH AV,San Francisco,94122,B08,40,7373,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7558726539116, -122.473577826888)",160951550-74 -143391667,54,14120341,Medical Incident,12/05/2014,12/05/2014,12/05/2014 12:11:43 PM,12/05/2014 12:12:21 PM,12/05/2014 12:14:26 PM,12/05/2014 12:14:26 PM,12/05/2014 12:25:00 PM,12/05/2014 12:41:01 PM,12/05/2014 01:03:55 PM,Code 2 Transport,12/05/2014 01:43:34 PM,800 Block of 3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",143391667-54 -160970926,77,16038329,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:57:12 AM,04/06/2016 08:59:45 AM,04/06/2016 09:01:27 AM,04/06/2016 09:01:34 AM,04/06/2016 09:08:16 AM,04/06/2016 09:18:06 AM,04/06/2016 09:48:56 AM,Code 2 Transport,04/06/2016 10:16:05 AM,100 Block of BATTERY ST,San Francisco,94111,B01,13,1167,2,3,3,true,Non Life-threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7927423612432, -122.399792731222)",160970926-77 -142972222,E11,14104826,Structure Fire,10/24/2014,10/24/2014,10/24/2014 03:12:58 PM,10/24/2014 03:12:58 PM,10/24/2014 03:13:40 PM,10/24/2014 03:14:30 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Fire,10/24/2014 03:17:27 PM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Alarm,1,ENGINE,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",142972222-E11 -141301053,E13,14044172,Traffic Collision,05/10/2014,05/10/2014,05/10/2014 09:49:50 AM,05/10/2014 09:50:59 AM,05/10/2014 09:52:55 AM,05/10/2014 09:57:00 AM,05/10/2014 09:57:00 AM,04/25/2016 01:17:25 PM,04/25/2016 01:17:25 PM,No Merit,05/10/2014 10:12:07 AM,BATTERY ST/WASHINGTON ST,San Francisco,94111,B01,13,1161,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7958750038383, -122.400485537558)",141301053-E13 -151750391,57,15066594,Medical Incident,06/24/2015,06/23/2015,06/24/2015 05:09:55 AM,06/24/2015 05:10:57 AM,06/24/2015 05:11:11 AM,06/24/2015 05:12:26 AM,06/24/2015 05:16:50 AM,04/25/2016 01:09:50 PM,04/25/2016 01:09:50 PM,Unable to Locate,06/24/2015 05:19:17 AM,MISSION ST/SOUTH VAN NESS AV,San Francisco,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7730534532281, -122.418618217459)",151750391-57 -152070150,53,15078717,Medical Incident,07/26/2015,07/25/2015,07/26/2015 01:06:14 AM,07/26/2015 01:07:25 AM,07/26/2015 01:08:03 AM,07/26/2015 01:08:19 AM,07/26/2015 01:13:01 AM,07/26/2015 01:26:24 AM,07/26/2015 01:56:42 AM,Code 2 Transport,07/26/2015 02:13:25 AM,DORMITORY RD/NORTHRIDGE RD,San Francisco,94124,B10,17,6713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7301766773279, -122.374217334822)",152070150-53 -151203864,E35,15045645,Alarms,04/30/2015,04/30/2015,04/30/2015 10:06:51 PM,04/30/2015 10:08:01 PM,04/30/2015 10:08:59 PM,04/30/2015 10:10:05 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Fire,04/30/2015 10:10:34 PM,0 Block of FOLSOM ST,San Francisco,94105,B03,35,2112,3,3,3,false,Alarm,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7904750361645, -122.39055604599)",151203864-E35 -160943540,62,16037444,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:09:12 PM,04/03/2016 10:11:38 PM,04/03/2016 10:12:09 PM,04/03/2016 10:12:13 PM,04/03/2016 10:19:47 PM,04/03/2016 10:38:24 PM,04/03/2016 11:08:52 PM,Code 2 Transport,04/03/2016 11:29:21 PM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",160943540-62 -142780169,E03,14097651,Medical Incident,10/05/2014,10/04/2014,10/05/2014 12:45:37 AM,10/05/2014 12:46:21 AM,10/05/2014 12:47:13 AM,10/05/2014 12:47:24 AM,10/05/2014 12:48:43 AM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Code 2 Transport,10/05/2014 01:00:51 AM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",142780169-E03 -160971884,67,16038409,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 12:31:27 PM,04/06/2016 12:33:51 PM,04/06/2016 12:35:10 PM,04/06/2016 12:35:18 PM,04/06/2016 12:37:46 PM,04/06/2016 01:03:51 PM,04/06/2016 01:24:36 PM,Code 2 Transport,04/06/2016 02:06:58 PM,MARKET ST/GOUGH ST,San Francisco,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",160971884-67 -150531650,B07,15020376,Other,02/22/2015,02/22/2015,02/22/2015 01:01:31 PM,02/22/2015 01:01:31 PM,02/22/2015 01:01:31 PM,02/22/2015 01:01:31 PM,02/22/2015 01:01:31 PM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,Fire,02/22/2015 01:25:09 PM,800 Block of 42ND AVE,San Francisco,94121,B07,34,7271,3,3,3,false,Alarm,1,CHIEF,1,7,1,Outer Richmond,"(37.7726741401354, -122.502398333157)",150531650-B07 -153030578,E14,15116101,Medical Incident,10/30/2015,10/29/2015,10/30/2015 06:41:04 AM,10/30/2015 06:41:34 AM,10/30/2015 06:43:04 AM,10/30/2015 06:44:46 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Code 2 Transport,10/30/2015 06:47:29 AM,300 Block of 11TH AVE,San Francisco,94118,B07,31,7141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7817385392724, -122.469629422744)",153030578-E14 -153091815,T07,15118737,Alarms,11/05/2015,11/05/2015,11/05/2015 12:38:04 PM,11/05/2015 12:39:19 PM,11/05/2015 12:39:35 PM,11/05/2015 12:40:32 PM,11/05/2015 12:44:58 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Fire,11/05/2015 12:47:06 PM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",153091815-T07 -151320713,E36,15049981,Medical Incident,05/12/2015,05/12/2015,05/12/2015 08:02:45 AM,05/12/2015 08:03:17 AM,05/12/2015 08:05:00 AM,05/12/2015 08:06:01 AM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,Code 2 Transport,05/12/2015 08:10:25 AM,0 Block of OAK ST,San Francisco,94102,B02,36,3211,2,2,2,true,Non Life-threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7753796573025, -122.420188747323)",151320713-E36 -141960323,66,14067777,Medical Incident,07/15/2014,07/14/2014,07/15/2014 03:30:34 AM,07/15/2014 03:30:34 AM,07/15/2014 03:30:34 AM,07/15/2014 03:30:34 AM,07/15/2014 03:30:34 AM,07/15/2014 03:43:59 AM,07/15/2014 03:47:25 AM,Code 2 Transport,07/15/2014 04:36:58 AM,CASTRO ST/18TH ST,San Francisco,94114,B99,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",141960323-66 -152320681,T19,15088404,Other,08/20/2015,08/19/2015,08/20/2015 07:32:30 AM,08/20/2015 07:33:04 AM,08/20/2015 07:33:34 AM,08/20/2015 07:35:56 AM,08/20/2015 07:40:00 AM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Medical Examiner,08/20/2015 07:59:19 AM,300 Block of BYXBEE ST,San Francisco,94132,B09,19,8436,3,3,3,false,Alarm,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7206483756035, -122.469795367301)",152320681-T19 -152510459,E37,15095750,Outside Fire,09/08/2015,09/07/2015,09/08/2015 05:53:51 AM,09/08/2015 05:55:10 AM,09/08/2015 05:57:10 AM,09/08/2015 05:57:10 AM,09/08/2015 06:01:05 AM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Fire,09/08/2015 06:09:07 AM,CESAR CHAVEZ ST/BAYSHORE BL,San Francisco,94110,B10,9,2626,3,3,3,false,Fire,1,ENGINE,1,6,9,Bernal Heights,"(37.7489710482463, -122.405626953003)",152510459-E37 -142672499,RWC2,14093573,Water Rescue,09/24/2014,09/24/2014,09/24/2014 03:44:11 PM,09/24/2014 03:44:52 PM,09/24/2014 03:56:47 PM,09/24/2014 03:56:47 PM,09/24/2014 03:56:47 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 3 Transport,09/24/2014 04:14:12 PM,2100 Block of JOHN F KENNEDY DR,,94122,B08,23,7722,3,3,3,false,Fire,1,SUPPORT,12,7,1,Golden Gate Park,"(37.7702544606336, -122.510223148548)",142672499-RWC2 -142963621,E21,14104574,Structure Fire,10/23/2014,10/23/2014,10/23/2014 09:30:09 PM,10/23/2014 09:33:34 PM,10/23/2014 09:34:08 PM,10/23/2014 09:34:48 PM,10/23/2014 09:37:25 PM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Fire,10/23/2014 09:44:35 PM,3000 Block of GEARY BLVD,San Francisco,94118,B05,10,4454,3,3,3,false,Alarm,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7817906390201, -122.451605977691)",142963621-E21 -151982892,E18,15075546,Medical Incident,07/17/2015,07/17/2015,07/17/2015 05:22:39 PM,07/17/2015 05:22:48 PM,07/17/2015 05:23:28 PM,07/17/2015 05:24:43 PM,07/17/2015 05:27:01 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,Against Medical Advice,07/17/2015 05:45:16 PM,2600 Block of JUDAH ST,San Francisco,94122,B08,23,7541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7611653096685, -122.490391943862)",151982892-E18 -150700725,T02,15026641,Citizen Assist / Service Call,03/11/2015,03/11/2015,03/11/2015 08:03:54 AM,03/11/2015 08:05:17 AM,03/11/2015 08:05:24 AM,03/11/2015 08:07:04 AM,03/11/2015 08:11:27 AM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/11/2015 08:24:46 AM,GEARY ST/POWELL ST,San Francisco,94102,B01,1,1323,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",150700725-T02 -150133503,E41,15005323,Medical Incident,01/13/2015,01/13/2015,01/13/2015 08:36:38 PM,01/13/2015 08:37:52 PM,01/13/2015 08:38:49 PM,01/13/2015 08:40:09 PM,01/13/2015 08:42:22 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Code 2 Transport,01/13/2015 08:59:59 PM,1300 Block of BROADWAY,San Francisco,94109,B01,41,1632,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7963703833309, -122.419356391011)",150133503-E41 -152132920,RC1,15081227,Medical Incident,08/01/2015,08/01/2015,08/01/2015 06:34:01 PM,08/01/2015 06:34:26 PM,08/01/2015 06:39:03 PM,08/01/2015 06:40:10 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Code 2 Transport,08/01/2015 06:41:25 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7811458612596, -122.409026046516)",152132920-RC1 -160933773,53,16037066,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:41:38 PM,04/02/2016 10:43:59 PM,04/02/2016 10:44:25 PM,04/02/2016 10:44:34 PM,04/02/2016 10:47:25 PM,04/02/2016 10:58:35 PM,04/02/2016 11:18:00 PM,Code 2 Transport,04/03/2016 12:07:30 AM,1100 Block of FRANKLIN ST,San Francisco,94109,B04,3,3222,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7852397067254, -122.423049038172)",160933773-53 -142593082,83,14090615,Medical Incident,09/16/2014,09/16/2014,09/16/2014 06:49:56 PM,09/16/2014 06:50:55 PM,09/16/2014 06:51:25 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Patient Declined Transport,09/16/2014 07:00:00 PM,600 Block of GRANT AVE,San Francisco,94108,B01,13,1314,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7929063668829, -122.406102110273)",142593082-83 -143503202,81,14125137,Medical Incident,12/16/2014,12/16/2014,12/16/2014 08:05:08 PM,12/16/2014 08:05:30 PM,12/16/2014 08:05:48 PM,12/16/2014 08:05:57 PM,12/16/2014 08:15:52 PM,12/16/2014 08:39:47 PM,12/16/2014 09:12:44 PM,Code 2 Transport,12/16/2014 09:36:41 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",143503202-81 -150063503,B06,15002472,Alarms,01/06/2015,01/06/2015,01/06/2015 09:30:59 PM,01/06/2015 09:32:29 PM,01/06/2015 09:32:45 PM,01/06/2015 09:34:28 PM,01/06/2015 09:37:36 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Fire,01/06/2015 09:54:13 PM,700 Block of BURNETT AVE,San Francisco,94131,B06,24,5282,3,3,3,false,Alarm,1,CHIEF,2,6,8,Twin Peaks,"(37.7500932216051, -122.44535716216)",150063503-B06 -142963046,E09,14104518,Medical Incident,10/23/2014,10/23/2014,10/23/2014 06:39:50 PM,10/23/2014 06:42:08 PM,10/23/2014 06:44:51 PM,10/23/2014 06:46:08 PM,10/23/2014 06:49:37 PM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Code 2 Transport,10/23/2014 07:09:42 PM,POTRERO AV/25TH ST,San Francisco,94110,B10,9,2624,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Mission,"(37.7517262101212, -122.406219413558)",142963046-E09 -141030227,AM16,14034818,Medical Incident,04/13/2014,04/13/2014,04/13/2014 02:52:40 PM,04/13/2014 02:52:40 PM,04/13/2014 02:53:12 PM,04/13/2014 02:53:47 PM,04/13/2014 02:58:28 PM,04/13/2014 03:10:40 PM,04/13/2014 03:28:57 PM,Code 2 Transport,04/13/2014 04:13:06 PM,0 Block of DORE ST,SAN FRANCISCO,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",141030227-AM16 -142662236,E26,14093145,Medical Incident,09/23/2014,09/23/2014,09/23/2014 03:09:49 PM,09/23/2014 03:10:08 PM,09/23/2014 03:10:36 PM,09/23/2014 03:11:42 PM,09/23/2014 03:14:29 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Code 3 Transport,09/23/2014 03:33:14 PM,0 Block of TOPAZ WAY,San Francisco,94131,B06,26,8154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7414994488003, -122.436549553342)",142662236-E26 -153142773,E03,15120748,Medical Incident,11/10/2015,11/10/2015,11/10/2015 05:01:08 PM,11/10/2015 05:01:59 PM,11/10/2015 05:02:43 PM,11/10/2015 05:03:51 PM,11/10/2015 05:06:22 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Code 2 Transport,11/10/2015 05:14:45 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",153142773-E03 -150900866,KM01,15034213,Medical Incident,03/31/2015,03/31/2015,03/31/2015 09:10:35 AM,03/31/2015 09:12:36 AM,03/31/2015 09:13:13 AM,03/31/2015 09:14:36 AM,03/31/2015 09:33:36 AM,03/31/2015 09:52:31 AM,03/31/2015 10:22:03 AM,Code 2 Transport,03/31/2015 10:56:47 AM,1500 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7310897557507, -122.389268390192)",150900866-KM01 -151800729,KM08,15068627,Medical Incident,06/29/2015,06/29/2015,06/29/2015 08:03:42 AM,06/29/2015 08:05:51 AM,06/29/2015 08:06:24 AM,06/29/2015 08:06:52 AM,06/29/2015 08:22:22 AM,06/29/2015 08:42:33 AM,06/29/2015 08:56:14 AM,Code 2 Transport,06/29/2015 09:29:59 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",151800729-KM08 -152553396,RC3,15097661,Traffic Collision,09/12/2015,09/12/2015,09/12/2015 09:00:20 PM,09/12/2015 09:02:34 PM,09/12/2015 09:03:15 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,No Merit,09/12/2015 09:07:52 PM,300 Block of DIVISION ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,2,10,Mission,"(37.7690697135105, -122.409528901583)",152553396-RC3 -142700440,67,14094561,Medical Incident,09/27/2014,09/26/2014,09/27/2014 02:36:12 AM,09/27/2014 02:36:30 AM,09/27/2014 02:38:51 AM,09/27/2014 02:38:51 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 02:39:49 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",142700440-67 -160951570,53,16037606,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:59:09 AM,04/04/2016 12:00:35 PM,04/04/2016 12:01:11 PM,04/04/2016 12:01:18 PM,04/04/2016 12:21:08 PM,04/04/2016 12:54:04 PM,04/04/2016 01:33:57 PM,Code 2 Transport,04/04/2016 02:21:34 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160951570-53 -141130342,E16,14038243,Medical Incident,04/23/2014,04/23/2014,04/23/2014 06:27:10 PM,04/23/2014 06:30:50 PM,04/23/2014 06:31:03 PM,04/23/2014 06:32:27 PM,04/23/2014 06:34:48 PM,04/25/2016 01:17:43 PM,04/25/2016 01:17:43 PM,Code 2 Transport,04/23/2014 07:25:38 PM,1500 Block of NORTH POINT ST,SAN FRANCISCO,94123,B04,16,3346,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8040848078318, -122.432688436131)",141130342-E16 -143181468,E29,14112599,Alarms,11/14/2014,11/14/2014,11/14/2014 11:41:26 AM,11/14/2014 11:42:34 AM,11/14/2014 11:43:34 AM,11/14/2014 11:44:39 AM,11/14/2014 11:47:44 AM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,Fire,11/14/2014 11:51:01 AM,1100 Block of HARRISON ST,San Francisco,94103,B03,8,2312,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7740164857371, -122.408093281105)",143181468-E29 -141312785,E22,14044689,Medical Incident,05/11/2014,05/11/2014,05/11/2014 08:13:33 PM,05/11/2014 08:15:27 PM,05/11/2014 08:20:22 PM,05/11/2014 08:21:59 PM,05/11/2014 08:23:47 PM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Code 2 Transport,05/11/2014 08:53:36 PM,1800 Block of IRVING ST,San Francisco,94122,B08,22,7424,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.763482287794, -122.477678638767)",141312785-E22 -150882260,RC3,15033639,Medical Incident,03/29/2015,03/29/2015,03/29/2015 03:00:11 PM,03/29/2015 03:00:57 PM,03/29/2015 03:06:47 PM,03/29/2015 03:06:47 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Cancelled,03/29/2015 03:12:29 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",150882260-RC3 -153261085,KM04,15125454,Medical Incident,11/22/2015,11/22/2015,11/22/2015 10:00:29 AM,11/22/2015 10:02:15 AM,11/22/2015 10:03:08 AM,11/22/2015 10:03:56 AM,11/22/2015 10:09:33 AM,11/22/2015 10:24:01 AM,11/22/2015 10:32:30 AM,Code 2 Transport,11/22/2015 11:12:40 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",153261085-KM04 -143040403,73,14107355,Medical Incident,10/31/2014,10/30/2014,10/31/2014 03:51:11 AM,10/31/2014 03:53:48 AM,10/31/2014 03:53:59 AM,10/31/2014 03:54:25 AM,10/31/2014 03:59:05 AM,10/31/2014 04:20:18 AM,10/31/2014 04:29:47 AM,Code 2 Transport,10/31/2014 04:44:20 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",143040403-73 -151842688,68,15070303,Medical Incident,07/03/2015,07/03/2015,07/03/2015 05:13:35 PM,07/03/2015 05:15:23 PM,07/03/2015 05:17:11 PM,07/03/2015 05:17:42 PM,07/03/2015 05:24:23 PM,07/03/2015 05:42:36 PM,07/03/2015 05:59:26 PM,Code 2 Transport,07/03/2015 06:29:36 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",151842688-68 -141531886,74,14052587,Medical Incident,06/02/2014,06/02/2014,06/02/2014 02:21:24 PM,06/02/2014 02:21:56 PM,06/02/2014 02:22:30 PM,06/02/2014 02:22:40 PM,06/02/2014 02:31:02 PM,06/02/2014 02:38:56 PM,06/02/2014 02:50:28 PM,Code 2 Transport,06/02/2014 03:13:03 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",141531886-74 -151430181,KM06,15054232,Medical Incident,05/23/2015,05/22/2015,05/23/2015 12:55:48 AM,05/23/2015 12:58:18 AM,05/23/2015 12:58:30 AM,05/23/2015 12:58:59 AM,05/23/2015 01:08:11 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Unable to Locate,05/23/2015 01:16:18 AM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",151430181-KM06 -160983716,55,16039113,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:19:47 PM,04/07/2016 09:19:47 PM,04/07/2016 09:20:04 PM,04/07/2016 09:20:44 PM,04/07/2016 09:30:38 PM,04/07/2016 09:50:59 PM,04/07/2016 10:00:21 PM,Code 2 Transport,04/07/2016 10:41:51 PM,0 Block of STATES ST,San Francisco,94114,B05,6,5176,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",160983716-55 -150242455,E18,15009387,Medical Incident,01/24/2015,01/24/2015,01/24/2015 05:35:32 PM,01/24/2015 05:37:50 PM,01/24/2015 05:38:08 PM,01/24/2015 05:38:59 PM,01/24/2015 05:42:03 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Code 2 Transport,01/24/2015 05:56:31 PM,1800 Block of 29TH AVE,San Francisco,94122,B08,18,7515,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7528389433197, -122.48704896526)",150242455-E18 -151080256,58,15040745,Medical Incident,04/18/2015,04/17/2015,04/18/2015 01:33:37 AM,04/18/2015 01:37:49 AM,04/18/2015 01:38:28 AM,04/18/2015 01:38:45 AM,04/18/2015 01:57:36 AM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Patient Declined Transport,04/18/2015 02:26:33 AM,100 Block of UTAH ST,San Francisco,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7677826861899, -122.406668803339)",151080256-58 -150391042,E03,15015119,Medical Incident,02/08/2015,02/08/2015,02/08/2015 08:46:08 AM,02/08/2015 08:48:41 AM,02/08/2015 08:48:51 AM,02/08/2015 08:49:59 AM,02/08/2015 08:51:54 AM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Code 2 Transport,02/08/2015 08:56:12 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",150391042-E03 -141862902,T05,14064540,Structure Fire,07/05/2014,07/05/2014,07/05/2014 06:50:56 PM,07/05/2014 06:50:56 PM,07/05/2014 06:51:14 PM,07/05/2014 06:52:09 PM,07/05/2014 06:52:55 PM,04/25/2016 01:16:23 PM,04/25/2016 01:16:23 PM,Fire,07/05/2014 06:53:19 PM,WEBSTER ST/GOLDEN GATE AV,San Francisco,94115,B05,5,3516,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7797827933333, -122.430233236395)",141862902-T05 -141983035,E03,14068665,Medical Incident,07/17/2014,07/17/2014,07/17/2014 07:19:35 PM,07/17/2014 07:21:56 PM,07/17/2014 07:24:46 PM,07/17/2014 07:25:59 PM,07/17/2014 07:29:43 PM,04/25/2016 01:16:10 PM,04/25/2016 01:16:10 PM,No Merit,07/17/2014 07:33:18 PM,EDDY ST/LARKIN ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",141983035-E03 -152283049,56,15087116,Medical Incident,08/16/2015,08/16/2015,08/16/2015 06:44:03 PM,08/16/2015 06:48:54 PM,08/16/2015 06:49:20 PM,08/16/2015 06:49:27 PM,08/16/2015 07:00:10 PM,08/16/2015 07:19:37 PM,08/16/2015 07:24:23 PM,Code 3 Transport,08/16/2015 08:04:29 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",152283049-56 -152032058,T13,15077361,Medical Incident,07/22/2015,07/22/2015,07/22/2015 02:29:58 PM,07/22/2015 02:30:59 PM,07/22/2015 02:33:09 PM,07/22/2015 02:34:59 PM,07/22/2015 02:39:52 PM,04/25/2016 01:09:20 PM,04/25/2016 01:09:20 PM,Code 2 Transport,07/22/2015 02:39:58 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",152032058-T13 -161002152,AM06,16039823,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 04:00:55 PM,04/09/2016 04:02:09 PM,04/09/2016 04:16:17 PM,04/09/2016 04:16:50 PM,04/09/2016 04:47:29 PM,04/09/2016 04:57:37 PM,04/09/2016 05:17:04 PM,Code 2 Transport,04/09/2016 05:49:10 PM,0 Block of 0NB MARINA BL ON,Presidio,94123,B04,16,4323,2,2,2,false,Non Life-threatening,1,PRIVATE,3,4,2,Marina,"(37.8055133591227, -122.434812261281)",161002152-AM06 -142421377,B03,14084200,Alarms,08/30/2014,08/30/2014,08/30/2014 11:39:24 AM,08/30/2014 11:41:02 AM,08/30/2014 11:41:43 AM,08/30/2014 11:42:40 AM,08/30/2014 11:43:21 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Fire,08/30/2014 11:45:31 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",142421377-B03 -141482267,E28,14050894,Medical Incident,05/28/2014,05/28/2014,05/28/2014 03:43:34 PM,05/28/2014 03:44:11 PM,05/28/2014 03:45:19 PM,05/28/2014 03:46:31 PM,05/28/2014 03:49:20 PM,04/25/2016 01:17:05 PM,04/25/2016 01:17:05 PM,Code 2 Transport,05/28/2014 04:03:04 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,945,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8082633159603, -122.414972542075)",141482267-E28 -152750123,T18,15105154,Outside Fire,10/02/2015,10/01/2015,10/02/2015 12:49:26 AM,10/02/2015 12:51:21 AM,10/02/2015 12:52:09 AM,10/02/2015 12:54:05 AM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Fire,10/02/2015 12:59:42 AM,2100 Block of MARTIN LUTHER KING JR DR,San Francisco,94122,B08,23,7722,3,3,3,false,Fire,1,TRUCK,2,7,1,Golden Gate Park,"(37.7645636979158, -122.509108368188)",152750123-T18 -153180503,E06,15122147,Medical Incident,11/14/2015,11/13/2015,11/14/2015 03:50:43 AM,11/14/2015 03:50:43 AM,11/14/2015 03:52:02 AM,11/14/2015 03:54:08 AM,11/14/2015 03:56:35 AM,04/25/2016 01:07:13 PM,04/25/2016 01:07:13 PM,Code 3 Transport,11/14/2015 04:20:31 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",153180503-E06 -152831584,E05,15108655,Medical Incident,10/10/2015,10/10/2015,10/10/2015 11:43:02 AM,10/10/2015 11:44:03 AM,10/10/2015 11:44:18 AM,10/10/2015 11:45:02 AM,10/10/2015 11:50:10 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Code 2 Transport,10/10/2015 12:00:27 PM,1900 Block of GEARY BLVD,San Francisco,94115,B04,5,3645,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.784050435359, -122.43623257567)",152831584-E05 -152612429,RS1,15099807,Medical Incident,09/18/2015,09/18/2015,09/18/2015 03:12:08 PM,09/18/2015 03:12:52 PM,09/18/2015 03:13:26 PM,09/18/2015 03:15:55 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Medical Examiner,09/18/2015 03:19:54 PM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,E,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7764944808779, -122.411359138357)",152612429-RS1 -151111858,KM04,15041978,"Extrication / Entrapped (Machinery, Vehicle)",04/21/2015,04/21/2015,04/21/2015 01:09:15 PM,04/21/2015 01:10:08 PM,04/21/2015 01:10:27 PM,04/21/2015 01:11:01 PM,04/21/2015 01:17:49 PM,04/21/2015 01:39:01 PM,04/21/2015 01:51:45 PM,Code 2 Transport,04/21/2015 02:09:36 PM,1600 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,E,3,false,Fire,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7743083992665, -122.443590663405)",151111858-KM04 -160994094,78,16039543,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:42:41 PM,04/08/2016 11:44:35 PM,04/08/2016 11:45:57 PM,04/08/2016 11:46:31 PM,04/08/2016 11:55:14 PM,04/09/2016 12:30:59 AM,04/09/2016 12:42:14 AM,Code 2 Transport,04/09/2016 01:20:24 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160994094-78 -150563755,62,15021599,Medical Incident,02/25/2015,02/25/2015,02/25/2015 09:36:35 PM,02/25/2015 09:40:55 PM,02/25/2015 09:41:29 PM,02/25/2015 09:41:43 PM,02/25/2015 09:54:39 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Patient Declined Transport,02/25/2015 10:18:11 PM,CAPP ST/19TH ST,San Francisco,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7603010632565, -122.41811811905)",150563755-62 -152333364,B08,15088955,Smoke Investigation (Outside),08/21/2015,08/21/2015,08/21/2015 07:04:08 PM,08/21/2015 07:06:54 PM,08/21/2015 07:07:36 PM,08/21/2015 07:08:59 PM,08/21/2015 07:11:01 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Fire,08/21/2015 07:12:21 PM,0 Block of CRAGMONT AVE,San Francisco,94116,B08,40,7341,3,3,3,false,Alarm,1,CHIEF,1,8,7,Inner Sunset,"(37.7499093206117, -122.467372947313)",152333364-B08 -151173463,61,15044391,Medical Incident,04/27/2015,04/27/2015,04/27/2015 08:40:44 PM,04/27/2015 08:41:12 PM,04/27/2015 08:41:24 PM,04/27/2015 08:41:35 PM,04/27/2015 08:46:48 PM,04/27/2015 08:59:25 PM,04/27/2015 09:28:56 PM,Code 2 Transport,04/27/2015 09:39:02 PM,1500 Block of THOMAS AVE,San Francisco,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299273763086, -122.390314136294)",151173463-61 -150133458,AM18,15005318,Medical Incident,01/13/2015,01/13/2015,01/13/2015 08:21:34 PM,01/13/2015 08:23:25 PM,01/13/2015 08:25:47 PM,01/13/2015 08:26:36 PM,01/13/2015 08:36:10 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Patient Declined Transport,01/13/2015 08:38:53 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",150133458-AM18 -142150477,AM20,14074445,Traffic Collision,08/03/2014,08/02/2014,08/03/2014 03:30:22 AM,08/03/2014 03:33:21 AM,08/03/2014 03:34:05 AM,08/03/2014 03:38:21 AM,08/03/2014 03:41:28 AM,08/03/2014 03:52:22 AM,08/03/2014 04:11:28 AM,Code 3 Transport,08/03/2014 04:45:40 AM,WEBSTER ST/GEARY BL,San Francisco,94115,B04,5,3514,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,7,4,5,Japantown,"(37.7845682402461, -122.431204945516)",142150477-AM20 -143291488,77,14116640,Medical Incident,11/25/2014,11/25/2014,11/25/2014 11:35:51 AM,11/25/2014 11:37:18 AM,11/25/2014 11:37:48 AM,11/25/2014 11:38:22 AM,11/25/2014 11:59:39 AM,11/25/2014 11:59:42 AM,11/25/2014 12:16:01 PM,Code 2 Transport,11/25/2014 12:36:46 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",143291488-77 -141340252,E06,14045556,Medical Incident,05/14/2014,05/13/2014,05/14/2014 02:10:29 AM,05/14/2014 02:12:02 AM,05/14/2014 02:13:05 AM,05/14/2014 02:14:54 AM,05/14/2014 02:18:36 AM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,No Merit,05/14/2014 02:24:19 AM,SOUTH VAN NESS AV/12TH ST,San Francisco,94103,B02,36,5117,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7730534532281, -122.418618217459)",141340252-E06 -151643299,E03,15062883,Medical Incident,06/13/2015,06/13/2015,06/13/2015 08:29:11 PM,06/13/2015 08:29:31 PM,06/13/2015 08:29:52 PM,06/13/2015 08:30:22 PM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,Code 2 Transport,06/13/2015 08:35:12 PM,1700 Block of OCTAVIA ST,San Francisco,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,5,Pacific Heights,"(37.7880861497268, -122.426982013119)",151643299-E03 -143280192,89,14116119,Medical Incident,11/24/2014,11/23/2014,11/24/2014 01:34:17 AM,11/24/2014 01:34:17 AM,11/24/2014 01:34:34 AM,11/24/2014 01:34:53 AM,11/24/2014 01:41:14 AM,11/24/2014 01:58:03 AM,11/24/2014 02:43:40 AM,Code 2 Transport,11/24/2014 02:49:53 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",143280192-89 -152411300,KM13,15091832,Medical Incident,08/29/2015,08/29/2015,08/29/2015 09:48:12 AM,08/29/2015 09:50:04 AM,08/29/2015 09:50:14 AM,08/29/2015 09:50:53 AM,08/29/2015 10:00:51 AM,08/29/2015 10:08:45 AM,08/29/2015 10:39:56 AM,Code 2 Transport,08/29/2015 11:12:24 AM,1400 Block of WILLARD ST,San Francisco,94117,B05,12,5154,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7632959662513, -122.454025953231)",152411300-KM13 -152932389,82,15112615,Medical Incident,10/20/2015,10/20/2015,10/20/2015 03:08:45 PM,10/20/2015 03:10:32 PM,10/20/2015 03:11:17 PM,10/20/2015 03:11:47 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Code 2 Transport,10/20/2015 03:12:14 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",152932389-82 -152611136,E07,15099685,Structure Fire,09/18/2015,09/18/2015,09/18/2015 09:28:36 AM,09/18/2015 09:28:36 AM,09/18/2015 09:28:42 AM,09/18/2015 09:29:50 AM,09/18/2015 09:29:50 AM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/18/2015 09:39:47 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,ENGINE,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",152611136-E07 -150943361,E26,15035877,Medical Incident,04/04/2015,04/04/2015,04/04/2015 08:48:26 PM,04/04/2015 08:48:26 PM,04/04/2015 08:48:42 PM,04/04/2015 08:49:58 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 08:53:03 PM,SANCHEZ ST/VALLEY ST,San Francisco,94131,B06,11,5564,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Noe Valley,"(37.7443632395525, -122.428959474009)",150943361-E26 -152450550,74,15093321,Medical Incident,09/02/2015,09/01/2015,09/02/2015 06:38:57 AM,09/02/2015 06:41:00 AM,09/02/2015 06:41:14 AM,09/02/2015 06:42:49 AM,09/02/2015 06:55:48 AM,09/02/2015 07:02:20 AM,09/02/2015 07:05:24 AM,Code 2 Transport,09/02/2015 07:49:40 AM,2500 Block of FILLMORE ST,San Francisco,94115,B04,38,3546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.792900812087, -122.434714045412)",152450550-74 -160970070,60,16038245,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:27:45 AM,04/06/2016 12:28:55 AM,04/06/2016 12:29:06 AM,04/06/2016 12:30:15 AM,04/06/2016 12:37:48 AM,04/06/2016 12:47:55 AM,04/06/2016 01:20:13 AM,Code 2 Transport,04/06/2016 01:40:21 AM,100 Block of CLAREMONT BL,San Francisco,94127,B08,39,8613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7425820345941, -122.463786718805)",160970070-60 -143640740,T03,14130110,Structure Fire,12/30/2014,12/30/2014,12/30/2014 08:48:47 AM,12/30/2014 08:48:47 AM,12/30/2014 08:48:58 AM,12/30/2014 08:50:10 AM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 08:54:24 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",143640740-T03 -143311524,T10,14117382,Structure Fire,11/27/2014,11/27/2014,11/27/2014 02:05:40 PM,11/27/2014 02:06:38 PM,11/27/2014 02:07:25 PM,11/27/2014 02:08:59 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Fire,11/27/2014 02:14:42 PM,400 Block of 35TH AVE,San Francisco,94121,B07,34,7247,3,3,3,false,Alarm,1,TRUCK,7,7,1,Outer Richmond,"(37.7805557790228, -122.495589494256)",143311524-T10 -142672759,RC3,14093594,Medical Incident,09/24/2014,09/24/2014,09/24/2014 04:55:36 PM,09/24/2014 04:57:48 PM,09/24/2014 04:59:58 PM,09/24/2014 05:01:45 PM,09/24/2014 05:12:09 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Medical Examiner,09/24/2014 05:48:20 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7850811742657, -122.406497767804)",142672759-RC3 -150903297,E38,15034406,Gas Leak (Natural and LP Gases),03/31/2015,03/31/2015,03/31/2015 07:58:20 PM,03/31/2015 07:58:20 PM,03/31/2015 07:58:36 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Fire,03/31/2015 08:00:00 PM,2200 Block of STEINER ST,San Francisco,94115,B04,38,3615,3,3,3,false,Alarm,1,ENGINE,4,4,2,Pacific Heights,"(37.7900741941349, -122.435692772979)",150903297-E38 -150010555,PT03,15000113,Medical Incident,01/01/2015,12/31/2014,01/01/2015 02:07:11 AM,01/01/2015 02:07:11 AM,01/01/2015 02:09:08 AM,01/01/2015 02:09:29 AM,01/01/2015 02:17:04 AM,01/01/2015 02:24:24 AM,01/01/2015 02:37:22 AM,Code 2 Transport,01/01/2015 03:08:16 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",150010555-PT03 -150782638,55,15029968,Medical Incident,03/19/2015,03/19/2015,03/19/2015 04:10:25 PM,03/19/2015 04:11:59 PM,03/19/2015 04:12:28 PM,03/19/2015 04:15:38 PM,03/19/2015 04:15:38 PM,03/19/2015 04:32:12 PM,03/19/2015 04:51:12 PM,Code 2 Transport,03/19/2015 05:34:22 PM,18TH ST/EUREKA ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7606923184407, -122.438265380857)",150782638-55 -160932074,E43,16036900,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:45:09 PM,04/02/2016 02:45:24 PM,04/02/2016 02:45:42 PM,04/02/2016 02:45:57 PM,04/02/2016 02:47:39 PM,04/02/2016 03:36:12 PM,04/02/2016 04:16:24 PM,Code 3 Transport,04/02/2016 04:36:05 PM,600 Block of MOSCOW ST,San Francisco,94112,B09,43,6162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7173988817758, -122.430625202274)",160932074-E43 -160931776,KM08,16036862,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 01:18:00 PM,04/02/2016 01:18:00 PM,04/02/2016 01:20:15 PM,04/02/2016 01:22:25 PM,04/02/2016 01:30:43 PM,04/02/2016 01:45:37 PM,04/02/2016 01:55:26 PM,Against Medical Advice,04/02/2016 02:59:29 PM,4000 Block of 26TH ST,San Francisco,94131,B06,11,5546,2,2,2,false,,1,PRIVATE,4,6,8,Noe Valley,"(37.7482411048651, -122.430446357124)",160931776-KM08 -150603932,AM16,15023108,Medical Incident,03/01/2015,03/01/2015,03/01/2015 11:35:02 PM,03/01/2015 11:35:02 PM,03/01/2015 11:40:33 PM,03/01/2015 11:40:50 PM,03/01/2015 11:43:30 PM,03/01/2015 11:53:41 PM,03/02/2015 12:01:14 AM,Code 2 Transport,03/02/2015 12:24:56 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",150603932-AM16 -150112147,E28,15004397,Structure Fire,01/11/2015,01/11/2015,01/11/2015 03:08:46 PM,01/11/2015 03:08:46 PM,01/11/2015 03:08:58 PM,01/11/2015 03:11:25 PM,01/11/2015 03:12:40 PM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Fire,01/11/2015 03:13:10 PM,LEAVENWORTH ST/NORTH POINT ST,San Francisco,94133,B01,28,1525,3,3,3,false,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.8059315195401, -122.418718266695)",150112147-E28 -142753876,74,14096676,Medical Incident,10/02/2014,10/02/2014,10/02/2014 09:40:19 PM,10/02/2014 09:43:21 PM,10/02/2014 09:43:52 PM,10/02/2014 09:44:15 PM,10/02/2014 09:48:06 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Unable to Locate,10/02/2014 09:54:15 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142753876-74 -141322958,E10,14045055,Medical Incident,05/12/2014,05/12/2014,05/12/2014 07:29:00 PM,05/12/2014 07:30:04 PM,05/12/2014 07:31:48 PM,05/12/2014 07:33:17 PM,05/12/2014 07:37:08 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/12/2014 08:06:57 PM,600 Block of CENTRAL AVE,San Francisco,94117,B05,21,4361,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.7755599914695, -122.444618039254)",141322958-E10 -142440358,E01,14084880,Medical Incident,09/01/2014,08/31/2014,09/01/2014 02:32:05 AM,09/01/2014 02:36:53 AM,09/01/2014 02:37:06 AM,09/01/2014 02:39:05 AM,09/01/2014 02:40:50 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 2 Transport,09/01/2014 02:44:23 AM,MISSION ST/5TH ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",142440358-E01 -160980397,73,16038771,Traffic Collision,04/07/2016,04/06/2016,04/07/2016 03:42:55 AM,04/07/2016 03:42:55 AM,04/07/2016 03:43:11 AM,04/07/2016 03:43:25 AM,04/07/2016 03:59:25 AM,04/07/2016 03:59:29 AM,04/07/2016 04:14:29 AM,Code 2 Transport,04/07/2016 04:31:55 AM,17TH ST/MISSION ST,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7634292740134, -122.419512736792)",160980397-73 -160972544,KM13,16038476,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:56:36 PM,04/06/2016 02:57:24 PM,04/06/2016 02:58:17 PM,04/06/2016 02:58:51 PM,04/06/2016 02:59:12 PM,04/06/2016 03:26:34 PM,04/06/2016 03:50:27 PM,Code 2 Transport,04/06/2016 04:38:13 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160972544-KM13 -141592476,74,14054902,Medical Incident,06/08/2014,06/08/2014,06/08/2014 06:09:02 PM,06/08/2014 06:11:23 PM,06/08/2014 06:12:10 PM,06/08/2014 06:12:17 PM,06/08/2014 06:22:28 PM,06/08/2014 06:49:11 PM,06/08/2014 07:07:34 PM,Code 2 Transport,06/08/2014 07:42:03 PM,500 Block of SAN JOSE AVE,San Francisco,94110,B06,11,555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.746836737093, -122.421621453992)",141592476-74 -151073682,71,15040682,Medical Incident,04/17/2015,04/17/2015,04/17/2015 09:10:45 PM,04/17/2015 09:14:10 PM,04/17/2015 09:14:43 PM,04/17/2015 09:15:49 PM,04/17/2015 09:25:06 PM,04/17/2015 09:44:20 PM,04/17/2015 10:05:22 PM,Code 2 Transport,04/17/2015 10:29:36 PM,800 Block of FRONT ST,San Francisco,94111,B01,13,1144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7991965032191, -122.400038115304)",151073682-71 -150350515,63,15013364,Medical Incident,02/04/2015,02/03/2015,02/04/2015 06:05:23 AM,02/04/2015 06:07:10 AM,02/04/2015 06:11:26 AM,02/04/2015 06:11:26 AM,02/04/2015 06:16:45 AM,02/04/2015 06:34:07 AM,02/04/2015 06:39:38 AM,Code 3 Transport,02/04/2015 07:18:35 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",150350515-63 -150142509,62,15005620,Medical Incident,01/14/2015,01/14/2015,01/14/2015 04:16:01 PM,01/14/2015 04:17:15 PM,01/14/2015 04:17:31 PM,01/14/2015 04:18:31 PM,01/14/2015 04:25:11 PM,01/14/2015 04:37:24 PM,01/14/2015 05:09:11 PM,Code 2 Transport,01/14/2015 05:28:10 PM,MARKET ST/MASON ST,San Francisco,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",150142509-62 -152053657,T17,15078255,Structure Fire,07/24/2015,07/24/2015,07/24/2015 08:57:42 PM,07/24/2015 08:57:42 PM,07/24/2015 08:57:59 PM,07/24/2015 08:59:37 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Fire,07/24/2015 09:05:16 PM,HUDSON AV/CASHMERE ST,San Francisco,94124,B10,25,652,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",152053657-T17 -150392413,KM12,15015249,Medical Incident,02/08/2015,02/08/2015,02/08/2015 04:10:06 PM,02/08/2015 04:12:03 PM,02/08/2015 04:12:13 PM,02/08/2015 04:12:48 PM,02/08/2015 04:22:18 PM,02/08/2015 04:47:58 PM,02/08/2015 04:59:24 PM,Code 2 Transport,02/08/2015 05:51:38 PM,1600 Block of BROADWAY,San Francisco,94123,B04,38,3232,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7956860710912, -122.42424620746)",150392413-KM12 -150552338,E03,15021156,Medical Incident,02/24/2015,02/24/2015,02/24/2015 03:06:28 PM,02/24/2015 03:07:42 PM,02/24/2015 03:08:17 PM,02/24/2015 03:08:39 PM,02/24/2015 03:10:16 PM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,Patient Declined Transport,02/24/2015 03:16:24 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",150552338-E03 -142563911,B06,14089622,Alarms,09/13/2014,09/13/2014,09/13/2014 11:42:39 PM,09/13/2014 11:44:10 PM,09/13/2014 11:47:06 PM,09/13/2014 11:48:23 PM,09/13/2014 11:50:14 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 11:57:39 PM,200 Block of DAY ST,San Francisco,94131,B06,11,5563,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7427760488742, -122.427694653316)",142563911-B06 -152203338,E02,15083968,Medical Incident,08/08/2015,08/08/2015,08/08/2015 08:28:24 PM,08/08/2015 08:28:50 PM,08/08/2015 08:29:57 PM,08/08/2015 08:30:14 PM,08/08/2015 08:33:53 PM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Code 2 Transport,08/08/2015 08:42:58 PM,VAN NESS AV/BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Russian Hill,"(37.7957371093016, -122.423413055255)",152203338-E02 -151120228,T01,15042194,Alarms,04/22/2015,04/21/2015,04/22/2015 02:21:46 AM,04/22/2015 02:23:02 AM,04/22/2015 02:23:10 AM,04/22/2015 02:24:50 AM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,Fire,04/22/2015 02:28:37 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",151120228-T01 -160931085,85,16036783,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:47:42 AM,04/02/2016 09:53:02 AM,04/02/2016 09:53:14 AM,04/02/2016 09:53:59 AM,04/02/2016 10:02:54 AM,04/02/2016 10:11:20 AM,04/02/2016 10:46:17 AM,Code 3 Transport,04/02/2016 11:28:37 AM,900 Block of EDINBURGH ST,San Francisco,94112,B09,43,6174,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",160931085-85 -143180476,82,14112522,Medical Incident,11/14/2014,11/13/2014,11/14/2014 05:56:04 AM,11/14/2014 05:57:12 AM,11/14/2014 06:04:04 AM,11/14/2014 06:04:04 AM,11/14/2014 06:12:32 AM,11/14/2014 06:26:18 AM,11/14/2014 06:45:19 AM,Code 3 Transport,11/14/2014 07:02:24 AM,200 Block of RIVOLI ST,San Francisco,94117,B05,12,5257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7622000098518, -122.451405661053)",143180476-82 -142371473,KM15,14082407,Medical Incident,08/25/2014,08/25/2014,08/25/2014 11:44:19 AM,08/25/2014 11:45:15 AM,08/25/2014 11:46:01 AM,08/25/2014 11:46:34 AM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,Medical Examiner,08/25/2014 11:52:38 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",142371473-KM15 -153232486,79,15124329,Traffic Collision,11/19/2015,11/19/2015,11/19/2015 03:32:58 PM,11/19/2015 03:32:58 PM,11/19/2015 03:34:38 PM,11/19/2015 03:34:38 PM,11/19/2015 03:35:46 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Patient Declined Transport,11/19/2015 04:04:11 PM,1200 Block of EDDY ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",153232486-79 -153293107,E13,15126735,Medical Incident,11/25/2015,11/25/2015,11/25/2015 06:01:24 PM,11/25/2015 06:03:24 PM,11/25/2015 06:04:42 PM,11/25/2015 06:05:57 PM,11/25/2015 06:10:12 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Code 2 Transport,11/25/2015 06:35:55 PM,800 Block of GRANT AVE,San Francisco,94108,B01,13,1313,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7947123862364, -122.406321854883)",153293107-E13 -142951854,E22,14104034,Structure Fire,10/22/2014,10/22/2014,10/22/2014 01:35:43 PM,10/22/2014 01:36:32 PM,10/22/2014 01:36:56 PM,10/22/2014 01:37:53 PM,10/22/2014 01:41:18 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Fire,10/22/2014 01:43:59 PM,500 Block of 28TH AVE,San Francisco,94121,B07,14,7226,3,3,3,false,Alarm,1,ENGINE,4,7,1,Outer Richmond,"(37.7789805573402, -122.487944517456)",142951854-E22 -143561751,E01,14127341,Medical Incident,12/22/2014,12/22/2014,12/22/2014 12:52:56 PM,12/22/2014 12:54:50 PM,12/22/2014 12:58:23 PM,12/22/2014 12:58:40 PM,12/22/2014 12:59:46 PM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,Code 2 Transport,12/22/2014 01:12:21 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",143561751-E01 -150912934,B07,15034681,Alarms,04/01/2015,04/01/2015,04/01/2015 05:46:51 PM,04/01/2015 05:47:47 PM,04/01/2015 05:49:40 PM,04/01/2015 05:50:50 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/01/2015 05:57:06 PM,100 Block of HUGO ST,San Francisco,94122,B05,12,7321,3,3,3,false,Alarm,1,CHIEF,3,5,5,Inner Sunset,"(37.7653353938771, -122.459420620518)",150912934-B07 -142322313,73,14080646,Medical Incident,08/20/2014,08/20/2014,08/20/2014 03:18:35 PM,08/20/2014 03:20:21 PM,08/20/2014 03:23:48 PM,08/20/2014 03:23:48 PM,08/20/2014 03:28:20 PM,08/20/2014 04:00:20 PM,08/20/2014 04:00:28 PM,Code 2 Transport,08/20/2014 04:30:18 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",142322313-73 -143361709,85,14119112,Medical Incident,12/02/2014,12/02/2014,12/02/2014 01:41:23 PM,12/02/2014 01:43:16 PM,12/02/2014 01:49:40 PM,12/02/2014 01:49:40 PM,12/02/2014 02:00:26 PM,12/02/2014 02:13:09 PM,12/02/2014 02:38:30 PM,Code 2 Transport,12/02/2014 02:48:58 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",143361709-85 -142053347,T18,14071125,Structure Fire,07/24/2014,07/24/2014,07/24/2014 08:15:21 PM,07/24/2014 08:15:21 PM,07/24/2014 08:15:27 PM,07/24/2014 08:16:36 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Fire,07/24/2014 08:20:10 PM,21ST AV/JUDAH ST,San Francisco,94122,B08,22,7426,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",142053347-T18 -160922243,89,16036494,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:27:33 PM,04/01/2016 03:30:12 PM,04/01/2016 03:31:04 PM,04/01/2016 03:33:07 PM,04/01/2016 03:41:28 PM,04/01/2016 03:52:04 PM,04/01/2016 03:58:11 PM,Code 3 Transport,04/01/2016 04:40:41 PM,200 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7845991269502, -122.411114048741)",160922243-89 -142211863,D2,14076737,Structure Fire,08/09/2014,08/09/2014,08/09/2014 01:32:58 PM,08/09/2014 01:39:00 PM,08/09/2014 01:39:22 PM,08/09/2014 01:40:08 PM,08/09/2014 01:42:24 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Fire,08/09/2014 01:49:56 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,CHIEF,4,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",142211863-D2 -152601788,E28,15099362,Medical Incident,09/17/2015,09/17/2015,09/17/2015 12:41:19 PM,09/17/2015 12:42:50 PM,09/17/2015 12:43:41 PM,09/17/2015 12:45:38 PM,09/17/2015 12:47:22 PM,09/17/2015 01:11:04 PM,04/25/2016 01:08:18 PM,Code 3 Transport,09/17/2015 01:33:19 PM,100 Block of FRANCISCO ST,San Francisco,94133,B01,28,1255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8054738067872, -122.407570127181)",152601788-E28 -150582906,E16,15022266,Medical Incident,02/27/2015,02/27/2015,02/27/2015 06:05:24 PM,02/27/2015 06:07:15 PM,02/27/2015 06:07:48 PM,02/27/2015 06:09:09 PM,02/27/2015 06:11:24 PM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Code 2 Transport,02/27/2015 06:22:30 PM,2500 Block of VAN NESS AVE,San Francisco,94123,B04,16,3234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7989967483908, -122.424247224738)",150582906-E16 -143151428,KM11,14111546,Medical Incident,11/11/2014,11/11/2014,11/11/2014 12:16:12 PM,11/11/2014 12:17:14 PM,11/11/2014 12:17:55 PM,11/11/2014 12:19:24 PM,11/11/2014 12:22:49 PM,11/11/2014 12:46:54 PM,11/11/2014 12:58:13 PM,Code 2 Transport,11/11/2014 01:30:17 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",143151428-KM11 -161002522,KM12,16039868,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:51:22 PM,04/09/2016 05:51:56 PM,04/09/2016 05:52:12 PM,04/09/2016 05:53:40 PM,04/09/2016 05:57:09 PM,04/09/2016 06:11:42 PM,04/09/2016 06:22:51 PM,Code 2 Transport,04/09/2016 06:45:15 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",161002522-KM12 -150301268,E03,15011517,Alarms,01/30/2015,01/30/2015,01/30/2015 10:15:04 AM,01/30/2015 10:16:21 AM,01/30/2015 10:16:27 AM,01/30/2015 10:18:29 AM,01/30/2015 10:20:48 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Fire,01/30/2015 10:24:13 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",150301268-E03 -151080063,E06,15040730,Other,04/18/2015,04/17/2015,04/18/2015 12:21:01 AM,04/18/2015 12:23:59 AM,04/18/2015 12:24:10 AM,04/18/2015 12:26:36 AM,04/18/2015 12:28:23 AM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Fire,04/18/2015 12:30:19 AM,VALENCIA ST/15TH ST,San Francisco,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7665395771344, -122.422043813368)",151080063-E06 -142500284,E03,14087035,Medical Incident,09/07/2014,09/06/2014,09/07/2014 01:38:28 AM,09/07/2014 01:40:44 AM,09/07/2014 01:42:06 AM,09/07/2014 01:43:59 AM,09/07/2014 01:46:45 AM,04/25/2016 01:15:14 PM,04/25/2016 01:15:14 PM,Code 2 Transport,09/07/2014 01:59:39 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",142500284-E03 -160953857,76,16037803,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:51:24 PM,04/04/2016 09:52:25 PM,04/04/2016 09:52:43 PM,04/04/2016 09:53:12 PM,04/04/2016 09:55:56 PM,04/04/2016 10:08:31 PM,04/04/2016 10:16:04 PM,Code 2 Transport,04/04/2016 10:42:30 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160953857-76 -152110317,RC3,15080226,Structure Fire,07/30/2015,07/29/2015,07/30/2015 03:19:53 AM,07/30/2015 03:20:20 AM,07/30/2015 03:24:36 AM,07/30/2015 03:24:40 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 04:27:22 AM,2300 Block of CASTRO ST,San Francisco,94131,B06,26,5565,3,3,3,true,Fire,2,RESCUE CAPTAIN,20,6,8,Glen Park,"(37.742895594432, -122.433422735149)",152110317-RC3 -160962001,81,16038033,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:39:38 PM,04/05/2016 01:40:52 PM,04/05/2016 01:42:29 PM,04/05/2016 01:42:39 PM,04/05/2016 01:57:34 PM,04/05/2016 02:13:59 PM,04/05/2016 02:45:24 PM,Code 2 Transport,04/05/2016 03:10:20 PM,600 Block of MASON ST,Presidio,94108,B99,51,4613,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",160962001-81 -152083616,E03,15079417,Medical Incident,07/27/2015,07/27/2015,07/27/2015 09:25:04 PM,07/27/2015 09:25:04 PM,07/27/2015 09:27:55 PM,07/27/2015 09:29:42 PM,07/27/2015 09:33:29 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,No Merit,07/27/2015 09:40:01 PM,300 Block of HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7839909656227, -122.415908808889)",152083616-E03 -160983579,AM16,16039098,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:31:00 PM,04/07/2016 08:31:21 PM,04/07/2016 08:31:30 PM,04/07/2016 08:32:12 PM,04/07/2016 08:35:17 PM,04/07/2016 09:06:57 PM,04/07/2016 09:21:05 PM,Code 2 Transport,04/07/2016 10:00:26 PM,100 Block of 3RD AVE,San Francisco,94118,B07,31,7115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Inner Richmond,"(37.7861127461326, -122.461350652607)",160983579-AM16 -151062382,68,15040104,Medical Incident,04/16/2015,04/16/2015,04/16/2015 03:09:25 PM,04/16/2015 03:09:25 PM,04/16/2015 03:10:55 PM,04/16/2015 03:11:06 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,No Merit,04/16/2015 03:11:24 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5279,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7674693820862, -122.419972358911)",151062382-68 -142491657,E03,14086791,Medical Incident,09/06/2014,09/06/2014,09/06/2014 12:44:35 PM,09/06/2014 12:45:54 PM,09/06/2014 12:46:19 PM,09/06/2014 12:47:50 PM,09/06/2014 12:48:38 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/06/2014 12:54:49 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",142491657-E03 -142070459,73,14071588,Traffic Collision,07/26/2014,07/25/2014,07/26/2014 02:50:45 AM,07/26/2014 02:50:45 AM,07/26/2014 02:51:09 AM,07/26/2014 02:52:07 AM,07/26/2014 03:21:45 AM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Patient Declined Transport,07/26/2014 03:28:13 AM,3800 Block of MARKET ST,San Francisco,94131,B06,24,5276,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Twin Peaks,"(37.7513440923832, -122.443179216565)",142070459-73 -151672715,62,15063957,Structure Fire,06/16/2015,06/16/2015,06/16/2015 06:13:59 PM,06/16/2015 06:13:59 PM,06/16/2015 06:19:12 PM,06/16/2015 06:19:21 PM,06/16/2015 06:22:24 PM,06/16/2015 06:31:21 PM,06/16/2015 06:40:54 PM,Code 2 Transport,06/16/2015 07:01:26 PM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,3,3,3,true,Alarm,1,MEDIC,3,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",151672715-62 -143172714,E22,14112363,Medical Incident,11/13/2014,11/13/2014,11/13/2014 05:19:41 PM,11/13/2014 05:20:05 PM,11/13/2014 05:20:19 PM,11/13/2014 05:21:23 PM,11/13/2014 05:23:36 PM,04/25/2016 01:14:01 PM,04/25/2016 01:14:01 PM,Cancelled,11/13/2014 05:24:09 PM,25TH AV/IRVING ST,San Francisco,94122,B08,22,7452,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7632786301806, -122.483553556446)",143172714-E22 -160931918,62,16036885,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:54:12 PM,04/02/2016 01:55:34 PM,04/02/2016 02:10:47 PM,04/02/2016 02:10:56 PM,04/02/2016 02:20:30 PM,04/02/2016 02:38:18 PM,04/02/2016 02:41:04 PM,Code 3 Transport,04/02/2016 03:09:39 PM,1600 Block of VALENCIA ST,San Francisco,94110,B06,11,5611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7473464894373, -122.420273560089)",160931918-62 -152161444,E12,15082212,Alarms,08/04/2015,08/04/2015,08/04/2015 11:53:50 AM,08/04/2015 11:55:32 AM,08/04/2015 11:57:28 AM,08/04/2015 11:59:15 AM,08/04/2015 12:03:48 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/04/2015 12:13:10 PM,200 Block of UPPER TER,San Francisco,94117,B05,12,5165,3,3,3,true,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.76292533177, -122.445175477305)",152161444-E12 -160950255,71,16037497,Medical Incident,04/04/2016,04/03/2016,04/04/2016 03:20:27 AM,04/04/2016 03:20:27 AM,04/04/2016 03:20:40 AM,04/04/2016 03:20:58 AM,04/04/2016 03:32:09 AM,04/04/2016 03:47:08 AM,04/04/2016 04:07:18 AM,Code 2 Transport,04/04/2016 04:29:49 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160950255-71 -161002384,AM08,16039849,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:11:20 PM,04/09/2016 05:11:47 PM,04/09/2016 05:12:02 PM,04/09/2016 05:13:35 PM,04/09/2016 05:20:43 PM,04/09/2016 05:38:39 PM,04/09/2016 05:47:27 PM,Code 2 Transport,04/09/2016 06:20:04 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",161002384-AM08 -141883580,E08,14065322,Traffic Collision,07/07/2014,07/07/2014,07/07/2014 09:54:52 PM,07/07/2014 09:54:52 PM,07/07/2014 09:55:18 PM,07/07/2014 09:56:41 PM,07/07/2014 09:58:31 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/07/2014 10:08:17 PM,TOWNSEND ST/7TH ST,San Francisco,94107,B03,29,2275,A,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7718171244689, -122.401656683321)",141883580-E08 -143621189,E11,14129478,Medical Incident,12/28/2014,12/28/2014,12/28/2014 11:09:46 AM,12/28/2014 11:09:46 AM,12/28/2014 11:10:05 AM,12/28/2014 11:11:01 AM,12/28/2014 11:13:14 AM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Code 2 Transport,12/28/2014 11:20:57 AM,VALLEY ST/CHURCH ST,San Francisco,94131,B06,11,5576,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Noe Valley,"(37.7444974074355, -122.426746185523)",143621189-E11 -152171976,KM11,15082618,Medical Incident,08/05/2015,08/05/2015,08/05/2015 01:35:20 PM,08/05/2015 01:36:40 PM,08/05/2015 01:36:58 PM,08/05/2015 01:42:16 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 01:37:59 PM,SUTTER ST/GRANT AV,San Francisco,94108,B01,13,1242,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,7,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",152171976-KM11 -142570499,E03,14089673,Medical Incident,09/14/2014,09/13/2014,09/14/2014 03:23:09 AM,09/14/2014 03:25:14 AM,09/14/2014 03:28:35 AM,09/14/2014 03:28:35 AM,09/14/2014 03:30:45 AM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/14/2014 03:37:41 AM,600 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7875326960335, -122.413256140114)",142570499-E03 -141813357,74,14062821,Medical Incident,06/30/2014,06/30/2014,06/30/2014 08:56:59 PM,06/30/2014 08:56:59 PM,06/30/2014 08:57:16 PM,06/30/2014 08:57:23 PM,06/30/2014 09:04:06 PM,06/30/2014 09:16:50 PM,06/30/2014 09:19:57 PM,Code 2 Transport,06/30/2014 09:44:59 PM,MCALLISTER ST/LARKIN ST,San Francisco,94102,B02,3,1553,B,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",141813357-74 -152771058,T06,15106147,Medical Incident,10/04/2015,10/04/2015,10/04/2015 09:19:38 AM,10/04/2015 09:21:03 AM,10/04/2015 09:21:36 AM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Code 2 Transport,10/04/2015 09:22:51 AM,300 Block of DOLORES ST,San Francisco,94110,B02,6,5251,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,2,8,Mission,"(37.7635158382169, -122.426118705944)",152771058-T06 -150750499,64,15028660,Medical Incident,03/16/2015,03/15/2015,03/16/2015 06:45:05 AM,03/16/2015 06:46:56 AM,03/16/2015 06:47:09 AM,03/16/2015 06:47:23 AM,03/16/2015 06:50:47 AM,03/16/2015 07:13:09 AM,03/16/2015 07:52:03 AM,Code 2 Transport,03/16/2015 08:03:37 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",150750499-64 -153260558,60,15125395,Medical Incident,11/22/2015,11/21/2015,11/22/2015 04:57:01 AM,11/22/2015 04:59:10 AM,11/22/2015 04:59:23 AM,11/22/2015 04:59:36 AM,11/22/2015 05:03:44 AM,11/22/2015 05:23:21 AM,11/22/2015 05:32:09 AM,Code 2 Transport,11/22/2015 05:55:51 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",153260558-60 -152732248,88,15104553,Medical Incident,09/30/2015,09/30/2015,09/30/2015 03:06:54 PM,09/30/2015 03:10:23 PM,09/30/2015 03:10:39 PM,09/30/2015 03:11:00 PM,09/30/2015 03:28:40 PM,09/30/2015 03:42:17 PM,09/30/2015 03:53:08 PM,Code 2 Transport,09/30/2015 04:04:39 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",152732248-88 -151360261,79,15051526,Medical Incident,05/16/2015,05/15/2015,05/16/2015 01:46:50 AM,05/16/2015 01:46:50 AM,05/16/2015 01:46:55 AM,05/16/2015 01:47:05 AM,05/16/2015 01:50:41 AM,05/16/2015 01:53:09 AM,05/16/2015 02:01:08 AM,Code 2 Transport,05/16/2015 02:26:31 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",151360261-79 -161001540,KM06,16039752,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:34:41 PM,04/09/2016 12:37:33 PM,04/09/2016 12:38:06 PM,04/09/2016 12:38:33 PM,04/09/2016 12:51:37 PM,04/09/2016 01:13:00 PM,04/09/2016 01:38:31 PM,Code 2 Transport,04/09/2016 02:16:54 PM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",161001540-KM06 -160993483,88,16039464,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:37:21 PM,04/08/2016 08:37:21 PM,04/08/2016 08:37:30 PM,04/08/2016 08:37:38 PM,04/08/2016 08:42:25 PM,04/08/2016 08:55:33 PM,04/08/2016 09:01:18 PM,Code 2 Transport,04/08/2016 09:45:32 PM,1700 Block of FULTON ST,San Francisco,94117,B05,21,4463,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",160993483-88 -160991776,64,16039307,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:29:12 PM,04/08/2016 01:29:48 PM,04/08/2016 01:30:39 PM,04/08/2016 01:30:48 PM,04/08/2016 01:36:56 PM,04/08/2016 01:59:13 PM,04/08/2016 02:24:26 PM,Code 2 Transport,04/08/2016 03:02:04 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160991776-64 -150813437,71,15031193,Medical Incident,03/22/2015,03/22/2015,03/22/2015 09:23:01 PM,03/22/2015 09:23:01 PM,03/22/2015 09:23:21 PM,03/22/2015 09:23:34 PM,03/22/2015 09:42:07 PM,03/22/2015 09:57:44 PM,03/22/2015 10:22:26 PM,Code 2 Transport,03/22/2015 11:26:16 PM,400 Block of RANDOLPH ST,San Francisco,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7142217076678, -122.466645826345)",150813437-71 -143130439,70,14110778,Medical Incident,11/09/2014,11/08/2014,11/09/2014 02:36:57 AM,11/09/2014 02:38:52 AM,11/09/2014 02:45:02 AM,11/09/2014 02:45:52 AM,11/09/2014 02:50:11 AM,11/09/2014 03:00:03 AM,11/09/2014 03:30:21 AM,Code 2 Transport,11/09/2014 03:35:10 AM,PINE ST/LEAVENWORTH ST,San Francisco,94109,B01,41,1464,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7902542983068, -122.415559086188)",143130439-70 -160983043,68,16039046,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:58:04 PM,04/07/2016 06:00:21 PM,04/07/2016 06:00:37 PM,04/07/2016 06:01:20 PM,04/07/2016 06:14:49 PM,04/07/2016 06:23:55 PM,04/07/2016 06:51:15 PM,Code 2 Transport,04/07/2016 07:48:48 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160983043-68 -160931760,67,16036857,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:12:12 PM,04/02/2016 01:14:07 PM,04/02/2016 01:14:32 PM,04/02/2016 01:14:38 PM,04/02/2016 01:20:57 PM,04/02/2016 01:35:08 PM,04/02/2016 02:05:55 PM,Code 2 Transport,04/02/2016 02:34:43 PM,JONES ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1455,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",160931760-67 -142270753,89,14078752,Medical Incident,08/15/2014,08/14/2014,08/15/2014 07:49:02 AM,08/15/2014 07:50:35 AM,08/15/2014 07:51:39 AM,08/15/2014 07:51:57 AM,08/15/2014 07:57:41 AM,08/15/2014 08:12:50 AM,08/15/2014 08:20:52 AM,Code 2 Transport,08/15/2014 09:06:02 AM,5900 Block of GEARY BLVD,San Francisco,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7800403908757, -122.483118050539)",142270753-89 -152464055,E05,15094028,Alarms,09/03/2015,09/03/2015,09/03/2015 10:18:39 PM,09/03/2015 10:20:28 PM,09/03/2015 10:20:49 PM,09/03/2015 10:21:42 PM,09/03/2015 10:23:38 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Fire,09/03/2015 10:41:39 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",152464055-E05 -143523625,E05,14125919,Traffic Collision,12/18/2014,12/18/2014,12/18/2014 08:35:46 PM,12/18/2014 08:35:46 PM,12/18/2014 08:36:04 PM,12/18/2014 08:37:04 PM,12/18/2014 08:38:36 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Code 2 Transport,12/18/2014 08:49:16 PM,600 Block of OAK ST,San Francisco,94117,B02,5,3523,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",143523625-E05 -153002380,E38,15115165,Alarms,10/27/2015,10/27/2015,10/27/2015 03:43:44 PM,10/27/2015 03:44:57 PM,10/27/2015 03:45:23 PM,10/27/2015 03:46:26 PM,10/27/2015 03:49:04 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Fire,10/27/2015 04:48:30 PM,1700 Block of JACKSON ST,San Francisco,94109,B04,38,3231,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7937762800279, -122.423860535824)",153002380-E38 -152853307,E05,15109557,Structure Fire,10/12/2015,10/12/2015,10/12/2015 06:57:32 PM,10/12/2015 06:57:56 PM,10/12/2015 06:58:10 PM,10/12/2015 06:59:10 PM,10/12/2015 07:01:00 PM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Fire,10/12/2015 07:08:00 PM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",152853307-E05 -150430030,E01,15016564,Medical Incident,02/12/2015,02/11/2015,02/12/2015 12:10:10 AM,02/12/2015 12:11:45 AM,02/12/2015 12:12:11 AM,02/12/2015 12:14:09 AM,02/12/2015 12:18:35 AM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Code 2 Transport,02/12/2015 12:31:18 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",150430030-E01 -150102410,T14,15004041,Medical Incident,01/10/2015,01/10/2015,01/10/2015 04:33:05 PM,01/10/2015 04:33:50 PM,01/10/2015 04:34:06 PM,01/10/2015 04:35:26 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 3 Transport,01/10/2015 04:36:26 PM,400 Block of 20TH AVE,San Francisco,94121,B07,14,7172,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,7,1,Outer Richmond,"(37.7793682984654, -122.479380963947)",150102410-T14 -151872175,RC3,15071443,Medical Incident,07/06/2015,07/06/2015,07/06/2015 02:26:45 PM,07/06/2015 02:27:14 PM,07/06/2015 02:31:20 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Code 2 Transport,07/06/2015 02:33:16 PM,2100 Block of 20TH AVE,San Francisco,94116,B08,40,7417,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,8,4,Sunset/Parkside,"(37.7476622873216, -122.477157809386)",151872175-RC3 -141903090,71,14065966,Medical Incident,07/09/2014,07/09/2014,07/09/2014 07:24:00 PM,07/09/2014 07:24:51 PM,07/09/2014 07:34:27 PM,07/09/2014 07:34:36 PM,07/09/2014 07:37:18 PM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Against Medical Advice,07/09/2014 08:25:16 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",141903090-71 -142283282,KM11,14079356,Alarms,08/16/2014,08/16/2014,08/16/2014 07:58:29 PM,08/16/2014 08:00:44 PM,08/16/2014 08:01:42 PM,08/16/2014 08:02:25 PM,08/16/2014 08:12:15 PM,08/16/2014 08:23:59 PM,08/16/2014 08:41:07 PM,Code 2 Transport,08/16/2014 08:59:14 PM,300 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8561,3,3,3,false,Alarm,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7373722059796, -122.469939861606)",142283282-KM11 -160953632,70,16037795,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:41:45 PM,04/04/2016 08:43:50 PM,04/04/2016 08:44:55 PM,04/04/2016 08:45:02 PM,04/04/2016 08:50:58 PM,04/04/2016 09:01:12 PM,04/04/2016 09:29:57 PM,Code 2 Transport,04/04/2016 09:33:25 PM,0 Block of DORE ST,San Francisco,94103,B03,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7738617775325, -122.413045971918)",160953632-70 -160941627,52,16037248,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:57:54 AM,04/03/2016 11:58:47 AM,04/03/2016 11:59:11 AM,04/03/2016 11:59:34 AM,04/03/2016 12:08:08 PM,04/03/2016 12:20:26 PM,04/03/2016 12:41:45 PM,Code 2 Transport,04/03/2016 01:14:35 PM,0 Block of CORTLAND AVE,San Francisco,94110,B06,32,5626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,6,9,Bernal Heights,"(37.7404496865399, -122.421267489131)",160941627-52 -152052197,E01,15078117,Structure Fire,07/24/2015,07/24/2015,07/24/2015 02:44:55 PM,07/24/2015 02:45:26 PM,07/24/2015 02:45:58 PM,07/24/2015 02:48:12 PM,07/24/2015 02:52:27 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Fire,07/24/2015 02:54:59 PM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,7,2,6,South of Market,"(37.7775775502239, -122.411096952518)",152052197-E01 -152510187,61,15095718,Medical Incident,09/08/2015,09/07/2015,09/08/2015 01:43:16 AM,09/08/2015 01:44:48 AM,09/08/2015 01:44:56 AM,09/08/2015 01:45:18 AM,09/08/2015 01:55:04 AM,09/08/2015 02:10:58 AM,09/08/2015 02:22:38 AM,Code 2 Transport,09/08/2015 03:22:04 AM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7810688918781, -122.407387172098)",152510187-61 -151973619,E17,15075291,Medical Incident,07/16/2015,07/16/2015,07/16/2015 09:55:30 PM,07/16/2015 09:56:35 PM,07/16/2015 09:56:52 PM,07/16/2015 09:58:36 PM,07/16/2015 10:00:30 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Code 2 Transport,07/16/2015 10:05:36 PM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7291630976058, -122.382538001818)",151973619-E17 -160951060,AM04,16037561,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:48:17 AM,04/04/2016 09:50:41 AM,04/04/2016 09:50:55 AM,04/04/2016 09:51:34 AM,04/04/2016 09:56:15 AM,04/04/2016 10:09:32 AM,04/04/2016 10:40:33 AM,Code 2 Transport,04/04/2016 10:59:43 AM,1800 Block of 25TH AVE,San Francisco,94122,B08,18,7455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7530220350499, -122.482903541099)",160951060-AM04 -151123029,AM08,15042425,Medical Incident,04/22/2015,04/22/2015,04/22/2015 05:45:06 PM,04/22/2015 05:46:15 PM,04/22/2015 05:46:36 PM,04/22/2015 05:47:49 PM,04/22/2015 05:52:43 PM,04/22/2015 06:07:28 PM,04/22/2015 06:28:03 PM,Code 2 Transport,04/22/2015 07:00:21 PM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",151123029-AM08 -150943256,E18,15035867,Medical Incident,04/04/2015,04/04/2015,04/04/2015 08:11:51 PM,04/04/2015 08:12:43 PM,04/04/2015 08:12:53 PM,04/04/2015 08:14:35 PM,04/04/2015 08:18:50 PM,04/25/2016 01:11:21 PM,04/25/2016 01:11:21 PM,Code 2 Transport,04/04/2015 08:35:03 PM,1400 Block of 18TH AVE,San Francisco,94122,B08,22,7371,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7608162669498, -122.475791240665)",150943256-E18 -161002637,AM08,16039877,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:22:35 PM,04/09/2016 06:25:55 PM,04/09/2016 06:26:15 PM,04/09/2016 06:26:42 PM,04/09/2016 06:37:48 PM,04/09/2016 06:48:49 PM,04/09/2016 06:56:55 PM,Code 2 Transport,04/09/2016 07:32:21 PM,200 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",161002637-AM08 -160922770,KM09,16036542,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:34:49 PM,04/01/2016 05:34:49 PM,04/01/2016 05:35:03 PM,04/01/2016 05:35:45 PM,04/01/2016 05:43:29 PM,04/01/2016 06:00:14 PM,04/01/2016 06:14:53 PM,Code 2 Transport,04/01/2016 06:45:44 PM,1100 Block of FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7761748805979, -122.408661568722)",160922770-KM09 -141250161,E02,14042319,Structure Fire,05/05/2014,05/05/2014,05/05/2014 10:49:36 AM,05/05/2014 10:50:16 AM,05/05/2014 10:50:43 AM,05/05/2014 10:52:22 AM,05/05/2014 10:53:38 AM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Fire,05/05/2014 11:24:18 AM,1300 Block of STOCKTON ST,SAN FRANCISCO,94133,B01,2,1333,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",141250161-E02 -160993915,83,16039517,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:51:50 PM,04/08/2016 10:52:10 PM,04/08/2016 11:18:30 PM,04/08/2016 11:18:43 PM,04/08/2016 11:25:57 PM,04/08/2016 11:38:05 PM,04/09/2016 12:20:08 AM,Code 2 Transport,04/09/2016 12:37:22 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160993915-83 -160922924,54,16036553,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:09:28 PM,04/01/2016 06:09:28 PM,04/01/2016 06:10:05 PM,04/01/2016 06:10:48 PM,04/01/2016 06:18:20 PM,04/01/2016 06:40:21 PM,04/01/2016 06:48:28 PM,Code 2 Transport,04/01/2016 07:14:43 PM,2600 Block of BRYANT ST,San Francisco,94110,B06,9,5532,2,3,3,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7520023380427, -122.408984897471)",160922924-54 -150790837,T03,15030201,Citizen Assist / Service Call,03/20/2015,03/20/2015,03/20/2015 09:04:01 AM,03/20/2015 09:06:08 AM,03/20/2015 09:06:28 AM,03/20/2015 09:08:24 AM,03/20/2015 09:11:54 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 09:18:49 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,false,Alarm,1,TRUCK,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",150790837-T03 -141030167,E21,14034765,Medical Incident,04/13/2014,04/13/2014,04/13/2014 11:57:25 AM,04/13/2014 11:58:23 AM,04/13/2014 11:59:01 AM,04/13/2014 12:00:51 PM,04/13/2014 12:01:42 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Code 2 Transport,04/13/2014 12:15:37 PM,CENTRAL AV/FELL ST,SAN FRANCISCO,94117,B05,21,4356,,2,2,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7732120673067, -122.444216182973)",141030167-E21 -152171778,60,15082596,Structure Fire,08/05/2015,08/05/2015,08/05/2015 12:48:11 PM,08/05/2015 12:49:22 PM,08/05/2015 12:50:33 PM,08/05/2015 12:50:46 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,Fire,08/05/2015 12:57:12 PM,200 Block of STATES ST,San Francisco,94114,B05,6,5253,3,3,3,true,Alarm,1,MEDIC,12,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",152171778-60 -142200893,T15,14076261,Structure Fire,08/08/2014,08/08/2014,08/08/2014 09:05:30 AM,08/08/2014 09:05:30 AM,08/08/2014 09:06:22 AM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Fire,08/08/2014 09:07:38 AM,ROCKDALE DR/OMAR WY,San Francisco,94127,B09,39,8662,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7393078970174, -122.449569567755)",142200893-T15 -141803510,AM18,14062449,Medical Incident,06/29/2014,06/29/2014,06/29/2014 09:21:39 PM,06/29/2014 09:23:02 PM,06/29/2014 09:23:30 PM,06/29/2014 09:24:22 PM,06/29/2014 09:29:14 PM,06/29/2014 09:45:51 PM,06/29/2014 10:02:18 PM,Code 2 Transport,06/29/2014 10:34:07 PM,11TH ST/DIVISION ST,San Francisco,94103,B02,36,5112,E,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,South of Market,"(37.7694111910912, -122.410931089145)",141803510-AM18 -160950602,63,16037532,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:35:49 AM,04/04/2016 07:37:28 AM,04/04/2016 07:38:03 AM,04/04/2016 07:39:06 AM,04/04/2016 07:47:11 AM,04/04/2016 08:05:36 AM,04/04/2016 08:20:24 AM,Code 3 Transport,04/04/2016 09:03:56 AM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160950602-63 -150302767,T02,15011663,Alarms,01/30/2015,01/30/2015,01/30/2015 05:11:00 PM,01/30/2015 05:12:32 PM,01/30/2015 05:13:46 PM,01/30/2015 05:15:24 PM,01/30/2015 05:16:21 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Fire,01/30/2015 05:20:10 PM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",150302767-T02 -141542519,B09,14053018,Structure Fire,06/03/2014,06/03/2014,06/03/2014 05:20:38 PM,06/03/2014 05:21:36 PM,06/03/2014 05:22:49 PM,06/03/2014 05:23:07 PM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,Fire,06/03/2014 05:30:04 PM,2200 Block of TARAVAL ST,San Francisco,94116,B08,18,7555,3,3,3,false,Alarm,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7424686874787, -122.490159966243)",141542519-B09 -151192542,RS2,15045077,Structure Fire,04/29/2015,04/29/2015,04/29/2015 03:53:52 PM,04/29/2015 03:54:34 PM,04/29/2015 03:54:45 PM,04/29/2015 03:55:57 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/29/2015 03:59:48 PM,100 Block of FAIR OAKS ST,San Francisco,94110,B06,11,5471,3,3,3,false,Alarm,1,RESCUE SQUAD,7,6,8,Mission,"(37.7543002541266, -122.424281978972)",151192542-RS2 -143023675,E36,14106794,Medical Incident,10/29/2014,10/29/2014,10/29/2014 09:39:23 PM,10/29/2014 09:41:16 PM,10/29/2014 09:42:26 PM,10/29/2014 09:44:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Unable to Locate,10/29/2014 09:48:16 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",143023675-E36 -141920292,E07,14066421,Medical Incident,07/11/2014,07/10/2014,07/11/2014 02:12:20 AM,07/11/2014 02:12:57 AM,07/11/2014 02:14:34 AM,07/11/2014 02:16:24 AM,07/11/2014 02:18:25 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Code 2 Transport,07/11/2014 02:32:26 AM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",141920292-E07 -143493196,E13,14124783,Medical Incident,12/15/2014,12/15/2014,12/15/2014 09:18:18 PM,12/15/2014 09:19:41 PM,12/15/2014 09:22:36 PM,12/15/2014 09:23:20 PM,12/15/2014 09:27:05 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Code 2 Transport,12/15/2014 10:00:25 PM,200 Block of JACKSON ST,San Francisco,94111,B01,13,1156,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7967959708794, -122.400094703073)",143493196-E13 -141150242,T05,14038867,Administrative,04/25/2014,04/25/2014,04/25/2014 03:34:28 PM,04/25/2014 03:34:32 PM,04/25/2014 03:35:19 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Other,04/25/2014 03:35:41 PM,1300 Block of TURK ST,,94115,B05,5,3535,3,3,3,false,,1,TRUCK,2,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",141150242-T05 -152602140,E06,15099405,Medical Incident,09/17/2015,09/17/2015,09/17/2015 02:03:17 PM,09/17/2015 02:03:52 PM,09/17/2015 02:04:17 PM,09/17/2015 02:05:15 PM,09/17/2015 02:08:22 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Code 2 Transport,09/17/2015 02:21:37 PM,400 Block of HAIGHT ST,San Francisco,94117,B02,6,3524,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",152602140-E06 -160981496,73,16038881,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:12:22 AM,04/07/2016 11:13:57 AM,04/07/2016 11:14:57 AM,04/07/2016 11:15:23 AM,04/07/2016 11:23:48 AM,04/07/2016 11:49:35 AM,04/07/2016 12:21:50 PM,Code 2 Transport,04/07/2016 12:39:28 PM,300 Block of WEBSTER ST,San Francisco,94102,B02,5,3523,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7737232931729, -122.429015869716)",160981496-73 -160921428,54,16036413,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:46:37 AM,04/01/2016 11:48:38 AM,04/01/2016 11:49:04 AM,04/01/2016 11:49:14 AM,04/01/2016 11:52:16 AM,04/01/2016 12:08:34 PM,04/01/2016 12:28:22 PM,Code 2 Transport,04/01/2016 12:54:32 PM,2500 Block of MARIPOSA ST,San Francisco,94110,B02,29,5243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7631695375953, -122.408796075221)",160921428-54 -160942635,AM08,16037349,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:05:16 PM,04/03/2016 05:05:16 PM,04/03/2016 05:05:48 PM,04/03/2016 05:06:29 PM,04/03/2016 05:10:49 PM,04/03/2016 05:33:02 PM,04/03/2016 05:57:51 PM,Code 2 Transport,04/03/2016 06:23:34 PM,1800 Block of POST ST,San Francisco,94115,B04,5,3513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.785207581828, -122.432213785968)",160942635-AM08 -150422002,E13,15016364,Medical Incident,02/11/2015,02/11/2015,02/11/2015 01:52:49 PM,02/11/2015 01:55:29 PM,02/11/2015 01:56:27 PM,02/11/2015 01:57:23 PM,02/11/2015 01:58:07 PM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Code 2 Transport,02/11/2015 02:17:39 PM,700 Block of SANSOME ST,San Francisco,94133,B01,13,1212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7971811710736, -122.402042217539)",150422002-E13 -160994013,71,16039529,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:19:32 PM,04/08/2016 11:21:03 PM,04/08/2016 11:22:19 PM,04/08/2016 11:23:07 PM,04/08/2016 11:44:01 PM,04/08/2016 11:56:25 PM,04/09/2016 12:15:30 AM,Code 2 Transport,04/09/2016 12:41:53 AM,OCEAN AV/LEE AV,San Francisco,94112,B09,15,8224,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7234570070328, -122.454115751965)",160994013-71 -142322365,E03,14080656,Medical Incident,08/20/2014,08/20/2014,08/20/2014 03:32:15 PM,08/20/2014 03:33:54 PM,08/20/2014 03:35:22 PM,08/20/2014 03:35:37 PM,08/20/2014 03:41:33 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Code 2 Transport,08/20/2014 03:52:20 PM,DIVISADERO ST/GEARY BL,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Japantown,"(37.7833084876653, -122.439480381269)",142322365-E03 -141050377,54,14035582,Medical Incident,04/15/2014,04/15/2014,04/15/2014 10:30:56 PM,04/15/2014 10:30:56 PM,04/15/2014 10:31:33 PM,04/15/2014 10:32:02 PM,04/15/2014 10:34:58 PM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,No Merit,04/15/2014 10:45:57 PM,2200 Block of MARKET ST,SAN FRANCISCO,94114,B05,6,5231,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",141050377-54 -160971671,73,16038392,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:48:28 AM,04/06/2016 11:48:28 AM,04/06/2016 11:48:40 AM,04/06/2016 11:49:15 AM,04/06/2016 11:52:49 AM,04/06/2016 12:06:40 PM,04/06/2016 12:15:30 PM,Code 2 Transport,04/06/2016 01:14:12 PM,400 Block of LAKE ST,San Francisco,94118,B07,31,7126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Inner Richmond,"(37.7867508385362, -122.464159839739)",160971671-73 -141683592,E41,14058150,Traffic Collision,06/17/2014,06/17/2014,06/17/2014 10:43:06 PM,06/17/2014 10:44:25 PM,06/17/2014 10:44:42 PM,06/17/2014 10:45:02 PM,06/17/2014 10:47:36 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Code 2 Transport,06/17/2014 11:00:30 PM,TAYLOR ST/PINE ST,San Francisco,94108,B01,41,1446,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7906727830021, -122.412266188172)",141683592-E41 -160963957,AM20,16038198,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:09:10 PM,04/05/2016 10:09:10 PM,04/05/2016 10:09:21 PM,04/05/2016 10:10:24 PM,04/05/2016 10:14:42 PM,04/05/2016 11:12:19 PM,04/05/2016 11:12:23 PM,Code 2 Transport,04/05/2016 11:42:18 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160963957-AM20 -142280663,T16,14079136,Alarms,08/16/2014,08/15/2014,08/16/2014 05:26:33 AM,08/16/2014 05:27:55 AM,08/16/2014 05:28:40 AM,08/16/2014 05:30:54 AM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,04/25/2016 01:15:38 PM,Fire,08/16/2014 05:33:04 AM,200 Block of HALLECK ST,Presidio,94129,B99,51,4612,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.8028889129245, -122.454325428639)",142280663-T16 -150081781,E23,15003130,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:50:57 PM,01/08/2015 12:51:49 PM,01/08/2015 12:52:08 PM,01/08/2015 12:52:51 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 12:54:57 PM,2200 Block of 39TH AVE,San Francisco,94116,B08,18,7621,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7449066277285, -122.497245831134)",150081781-E23 -142441199,RC3,14084986,Medical Incident,09/01/2014,09/01/2014,09/01/2014 10:53:52 AM,09/01/2014 10:55:07 AM,09/01/2014 11:02:04 AM,09/01/2014 11:02:33 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 3 Transport,09/01/2014 11:39:22 AM,1200 Block of 14TH AVE,San Francisco,94122,B08,22,7346,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,7,5,Inner Sunset,"(37.7647478412807, -122.471664663461)",142441199-RC3 -161000248,89,16039586,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:43:15 AM,04/09/2016 01:44:06 AM,04/09/2016 01:44:33 AM,04/09/2016 01:44:44 AM,04/09/2016 01:48:14 AM,04/09/2016 02:11:35 AM,04/09/2016 02:29:38 AM,Code 2 Transport,04/09/2016 02:56:18 AM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",161000248-89 -160971983,82,16038420,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:53:51 PM,04/06/2016 12:55:14 PM,04/06/2016 12:56:12 PM,04/06/2016 12:56:17 PM,04/06/2016 12:59:17 PM,04/06/2016 01:17:04 PM,04/06/2016 01:33:24 PM,Code 2 Transport,04/06/2016 02:14:35 PM,MARKET ST/7TH ST,San Francisco,94103,B03,36,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160971983-82 -142771865,E23,14097384,Fuel Spill,10/04/2014,10/04/2014,10/04/2014 12:38:07 PM,10/04/2014 12:41:29 PM,10/04/2014 12:41:34 PM,10/04/2014 12:43:04 PM,10/04/2014 12:46:22 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Fire,10/04/2014 01:24:14 PM,2700 Block of LAWTON ST,San Francisco,94122,B08,18,7542,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7573370299532, -122.492275221487)",142771865-E23 -143431974,T02,14121964,Structure Fire,12/09/2014,12/09/2014,12/09/2014 01:29:00 PM,12/09/2014 01:29:00 PM,12/09/2014 01:31:51 PM,12/09/2014 01:32:54 PM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,Code 2 Transport,12/09/2014 01:33:29 PM,COLUMBUS AV/UNION ST,San Francisco,94133,B01,28,1334,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8003154984429, -122.410206543893)",143431974-T02 -152500318,E03,15095356,Medical Incident,09/07/2015,09/06/2015,09/07/2015 02:56:29 AM,09/07/2015 02:57:55 AM,09/07/2015 02:58:15 AM,09/07/2015 02:59:43 AM,09/07/2015 03:02:35 AM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Code 3 Transport,09/07/2015 03:11:38 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",152500318-E03 -150483014,82,15018715,Medical Incident,02/17/2015,02/17/2015,02/17/2015 06:22:13 PM,02/17/2015 06:23:32 PM,02/17/2015 06:23:45 PM,02/17/2015 06:23:58 PM,02/17/2015 06:27:25 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Patient Declined Transport,02/17/2015 06:42:39 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",150483014-82 -160961755,87,16038005,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:43:06 PM,04/05/2016 12:43:46 PM,04/05/2016 12:43:59 PM,04/05/2016 12:44:24 PM,04/05/2016 12:49:19 PM,04/05/2016 01:00:48 PM,04/05/2016 01:22:26 PM,Code 2 Transport,04/05/2016 02:06:04 PM,1200 Block of SHAFTER AVE,San Francisco,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",160961755-87 -150581167,AM26,15022106,Medical Incident,02/27/2015,02/27/2015,02/27/2015 10:08:32 AM,02/27/2015 10:08:32 AM,02/27/2015 10:08:57 AM,02/27/2015 10:09:58 AM,02/27/2015 10:17:48 AM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Patient Declined Transport,02/27/2015 10:51:02 AM,0 Block of NORDHOFF ST,San Francisco,94131,B09,26,8177,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,8,West of Twin Peaks,"(37.7337925121178, -122.440968305396)",150581167-AM26 -152812926,T13,15107950,Water Rescue,10/08/2015,10/08/2015,10/08/2015 05:28:42 PM,10/08/2015 05:29:54 PM,10/08/2015 05:31:09 PM,10/08/2015 05:31:51 PM,10/08/2015 05:34:59 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,No Merit,10/08/2015 05:43:23 PM,HOWARD ST/THE EMBARCADERO SOU,San Francisco,94105,B03,35,2114,3,3,3,false,Fire,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7918502464418, -122.391360186894)",152812926-T13 -160993897,AM18,16039514,Structure Fire,04/08/2016,04/08/2016,04/08/2016 10:46:42 PM,04/08/2016 10:46:42 PM,04/08/2016 11:09:49 PM,04/08/2016 11:10:21 PM,04/08/2016 11:24:18 PM,04/08/2016 11:31:34 PM,04/08/2016 11:47:33 PM,Code 2 Transport,04/09/2016 12:03:58 AM,21ST ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5455,3,3,3,false,Alarm,1,PRIVATE,3,6,9,Mission,"(37.7571666434801, -122.416719595074)",160993897-AM18 -142960359,T16,14104257,Alarms,10/23/2014,10/22/2014,10/23/2014 04:04:56 AM,10/23/2014 04:06:30 AM,10/23/2014 04:14:00 AM,10/23/2014 04:16:19 AM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Fire,10/23/2014 04:23:18 AM,900 Block of MASON ST,Presidio,94108,B99,51,4613,3,3,3,false,Alarm,1,TRUCK,6,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",142960359-T16 -150582120,RC1,15022199,Traffic Collision,02/27/2015,02/27/2015,02/27/2015 02:29:18 PM,02/27/2015 02:32:44 PM,02/27/2015 02:34:19 PM,02/27/2015 02:34:19 PM,02/27/2015 02:37:57 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Patient Declined Transport,02/27/2015 02:48:34 PM,100 Block of BERRY ST,San Francisco,94158,B03,8,2171,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",150582120-RC1 -141260332,54,14042818,Medical Incident,05/06/2014,05/06/2014,05/06/2014 06:27:03 PM,05/06/2014 06:28:50 PM,05/06/2014 06:29:51 PM,05/06/2014 06:29:57 PM,05/06/2014 06:56:50 PM,05/06/2014 07:14:37 PM,05/06/2014 07:26:13 PM,Code 2 Transport,05/06/2014 07:57:33 PM,0 Block of BEAVER ST,SAN FRANCISCO,94114,B05,6,5233,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7650483291206, -122.434292441696)",141260332-54 -160992447,76,16039376,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:08:09 PM,04/08/2016 04:08:32 PM,04/08/2016 04:09:04 PM,04/08/2016 04:09:09 PM,04/08/2016 04:15:08 PM,04/08/2016 04:27:49 PM,04/08/2016 04:35:07 PM,Code 2 Transport,04/08/2016 05:02:31 PM,400 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1234,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7933243680206, -122.402793749172)",160992447-76 -152541085,E42,15097029,Traffic Collision,09/11/2015,09/11/2015,09/11/2015 09:35:00 AM,09/11/2015 09:36:08 AM,09/11/2015 09:38:41 AM,09/11/2015 09:41:46 AM,09/11/2015 09:45:15 AM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Code 2 Transport,09/11/2015 10:01:48 AM,0 Block of OGDEN AV,San Francisco,94110,B10,42,6373,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7357223682795, -122.409678079531)",152541085-E42 -151400737,E44,15053073,Structure Fire,05/20/2015,05/20/2015,05/20/2015 08:19:20 AM,05/20/2015 08:20:15 AM,05/20/2015 08:20:43 AM,05/20/2015 08:21:28 AM,05/20/2015 08:25:05 AM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/20/2015 08:57:10 AM,200 Block of EXECUTIVE PARK BLVD,San Francisco,94134,B10,44,6275,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7111243307685, -122.39173301635)",151400737-E44 -150240410,60,15009174,Medical Incident,01/24/2015,01/23/2015,01/24/2015 02:52:21 AM,01/24/2015 02:52:21 AM,01/24/2015 02:52:33 AM,01/24/2015 02:53:08 AM,01/24/2015 03:07:42 AM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Unable to Locate,01/24/2015 03:10:15 AM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",150240410-60 -143511134,E03,14125326,Traffic Collision,12/17/2014,12/17/2014,12/17/2014 09:58:22 AM,12/17/2014 10:00:00 AM,12/17/2014 10:02:01 AM,12/17/2014 10:04:34 AM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Patient Declined Transport,12/17/2014 10:07:22 AM,OFARRELL ST/VAN NESS AV,San Francisco,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",143511134-E03 -160951436,88,16037596,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:27:43 AM,04/04/2016 11:29:32 AM,04/04/2016 11:30:34 AM,04/04/2016 11:31:01 AM,04/04/2016 11:46:06 AM,04/04/2016 12:02:39 PM,04/04/2016 12:22:55 PM,Code 2 Transport,04/04/2016 12:52:37 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,3,3,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160951436-88 -153143421,88,15120807,Medical Incident,11/10/2015,11/10/2015,11/10/2015 08:01:34 PM,11/10/2015 08:03:03 PM,11/10/2015 08:03:31 PM,11/10/2015 08:03:43 PM,11/10/2015 08:07:35 PM,11/10/2015 08:25:41 PM,11/10/2015 08:34:57 PM,Code 2 Transport,11/10/2015 09:13:24 PM,500 Block of MINNA ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7791823933462, -122.409793939547)",153143421-88 -151340211,64,15050705,Medical Incident,05/14/2015,05/13/2015,05/14/2015 02:05:55 AM,05/14/2015 02:07:53 AM,05/14/2015 02:09:20 AM,05/14/2015 02:09:32 AM,05/14/2015 02:17:49 AM,05/14/2015 02:29:03 AM,05/14/2015 02:43:40 AM,Code 2 Transport,05/14/2015 02:58:31 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",151340211-64 -160941436,KM08,16037234,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:08:21 AM,04/03/2016 11:09:15 AM,04/03/2016 11:09:32 AM,04/03/2016 11:10:14 AM,04/03/2016 11:14:50 AM,04/03/2016 11:33:12 AM,04/03/2016 11:45:53 AM,Code 2 Transport,04/03/2016 12:12:20 PM,6300 Block of CALIFORNIA ST,San Francisco,94121,B07,14,7214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7838030202773, -122.485545885783)",160941436-KM08 -150200193,82,15007716,Medical Incident,01/20/2015,01/19/2015,01/20/2015 01:39:01 AM,01/20/2015 01:39:01 AM,01/20/2015 01:39:38 AM,01/20/2015 01:39:49 AM,01/20/2015 01:42:54 AM,01/20/2015 02:09:29 AM,01/20/2015 02:27:33 AM,Code 2 Transport,01/20/2015 03:10:45 AM,MISSION ST/17TH ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7634292740134, -122.419512736792)",150200193-82 -143222674,E36,14114104,Medical Incident,11/18/2014,11/18/2014,11/18/2014 05:19:18 PM,11/18/2014 05:19:38 PM,11/18/2014 05:19:52 PM,11/18/2014 05:21:18 PM,11/18/2014 05:25:16 PM,04/25/2016 01:13:56 PM,04/25/2016 01:13:56 PM,Other,11/18/2014 05:51:35 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",143222674-E36 -153120275,E17,15119786,Medical Incident,11/08/2015,11/07/2015,11/08/2015 02:02:46 AM,11/08/2015 02:04:03 AM,11/08/2015 02:04:13 AM,11/08/2015 02:06:27 AM,11/08/2015 02:08:41 AM,04/25/2016 01:07:19 PM,04/25/2016 01:07:19 PM,Code 2 Transport,11/08/2015 02:15:02 AM,REVERE AV/KEITH ST,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7306061047196, -122.388292259313)",153120275-E17 -150920761,61,15034869,Medical Incident,04/02/2015,04/02/2015,04/02/2015 08:25:30 AM,04/02/2015 08:26:56 AM,04/02/2015 08:28:26 AM,04/02/2015 08:28:35 AM,04/02/2015 08:47:49 AM,04/02/2015 08:55:02 AM,04/02/2015 09:30:23 AM,Code 2 Transport,04/02/2015 09:51:37 AM,0 Block of DENSLOWE DR,San Francisco,94132,B08,19,8726,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7235652911851, -122.474326821419)",150920761-61 -160982132,KM13,16038942,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:55:48 PM,04/07/2016 01:56:49 PM,04/07/2016 01:58:13 PM,04/07/2016 01:58:38 PM,04/07/2016 02:14:33 PM,04/07/2016 02:39:10 PM,04/07/2016 03:09:31 PM,Code 2 Transport,04/07/2016 03:38:23 PM,CLAY ST/DAVIS ST,San Francisco,94111,B01,13,1133,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7953129409013, -122.397974750623)",160982132-KM13 -141872159,T05,14064841,Citizen Assist / Service Call,07/06/2014,07/06/2014,07/06/2014 04:22:41 PM,07/06/2014 04:22:56 PM,07/06/2014 04:25:33 PM,07/06/2014 04:25:33 PM,07/06/2014 04:27:28 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Fire,07/06/2014 04:38:59 PM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,3,3,3,false,Alarm,1,TRUCK,2,5,5,Japantown,"(37.7848770596387, -122.442348914658)",141872159-T05 -161002107,KM08,16039815,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:43:36 PM,04/09/2016 03:45:08 PM,04/09/2016 03:45:29 PM,04/09/2016 03:46:17 PM,04/09/2016 03:51:14 PM,04/09/2016 04:08:45 PM,04/09/2016 04:28:31 PM,Code 2 Transport,04/09/2016 04:57:52 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7853585501162, -122.415955969312)",161002107-KM08 -160991442,63,16039275,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:00:58 PM,04/08/2016 12:00:58 PM,04/08/2016 12:01:11 PM,04/08/2016 12:01:19 PM,04/08/2016 12:13:45 PM,04/08/2016 12:16:38 PM,04/08/2016 12:46:37 PM,Code 2 Transport,04/08/2016 01:15:49 PM,POWELL ST/ELLIS ST,San Francisco,94102,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",160991442-63 -150463001,53,15018039,Medical Incident,02/15/2015,02/15/2015,02/15/2015 06:36:14 PM,02/15/2015 06:36:14 PM,02/15/2015 06:36:29 PM,02/15/2015 06:37:09 PM,02/15/2015 06:55:39 PM,02/15/2015 07:11:20 PM,02/15/2015 07:12:30 PM,Code 2 Transport,02/15/2015 08:07:42 PM,400 Block of JEFFERSON ST,San Francisco,94133,B01,28,947,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8077508336049, -122.419925741179)",150463001-53 -152173931,E03,15082795,Medical Incident,08/05/2015,08/05/2015,08/05/2015 09:57:30 PM,08/05/2015 09:58:16 PM,08/05/2015 09:58:51 PM,08/05/2015 10:00:15 PM,08/05/2015 10:02:07 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,Patient Declined Transport,08/05/2015 10:14:39 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",152173931-E03 -160960706,55,16037918,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:19:35 AM,04/05/2016 08:21:22 AM,04/05/2016 08:21:51 AM,04/05/2016 08:22:02 AM,04/05/2016 08:30:10 AM,04/05/2016 08:53:25 AM,04/05/2016 09:21:48 AM,Code 2 Transport,04/05/2016 09:46:36 AM,3700 Block of 18TH ST,San Francisco,94114,B06,6,541,2,3,3,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",160960706-55 -160961596,AM08,16037991,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:04:31 PM,04/05/2016 12:05:15 PM,04/05/2016 12:06:54 PM,04/05/2016 12:07:47 PM,04/05/2016 12:13:54 PM,04/05/2016 12:30:48 PM,04/05/2016 12:49:58 PM,Code 2 Transport,04/05/2016 01:22:37 PM,1600 Block of DIVISADERO ST,San Francisco,94115,B05,10,4155,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Japantown,"(37.7847979838284, -122.439663867351)",160961596-AM08 -151361277,B02,15051635,Alarms,05/16/2015,05/16/2015,05/16/2015 10:35:03 AM,05/16/2015 10:36:47 AM,05/16/2015 10:37:02 AM,05/16/2015 10:39:11 AM,05/16/2015 10:39:11 AM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Fire,05/16/2015 11:03:01 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,CHIEF,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",151361277-B02 -142622274,B07,14091662,Alarms,09/19/2014,09/19/2014,09/19/2014 03:15:16 PM,09/19/2014 03:16:22 PM,09/19/2014 03:16:36 PM,09/19/2014 03:18:43 PM,09/19/2014 03:21:26 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,Fire,09/19/2014 03:31:38 PM,100 Block of 11TH AVE,San Francisco,94118,B07,31,7137,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7855017910126, -122.470044893397)",142622274-B07 -152481693,E36,15094667,Alarms,09/05/2015,09/05/2015,09/05/2015 12:28:32 PM,09/05/2015 12:29:40 PM,09/05/2015 12:29:54 PM,09/05/2015 12:31:42 PM,09/05/2015 12:32:06 PM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Fire,09/05/2015 12:41:17 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",152481693-E36 -150441517,E36,15017082,Medical Incident,02/13/2015,02/13/2015,02/13/2015 11:28:21 AM,02/13/2015 11:30:01 AM,02/13/2015 11:34:55 AM,02/13/2015 11:35:55 AM,02/13/2015 11:44:44 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/13/2015 12:05:20 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",150441517-E36 -143072324,E29,14108682,Citizen Assist / Service Call,11/03/2014,11/03/2014,11/03/2014 04:05:50 PM,11/03/2014 04:07:30 PM,11/03/2014 04:08:02 PM,11/03/2014 04:08:48 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,Fire,11/03/2014 04:10:11 PM,16TH ST/KANSAS ST,San Francisco,94103,B03,29,2413,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission Bay,"(37.7660170692888, -122.403643056467)",143072324-E29 -160970333,70,16038271,Medical Incident,04/06/2016,04/05/2016,04/06/2016 03:52:19 AM,04/06/2016 03:52:19 AM,04/06/2016 03:52:29 AM,04/06/2016 03:52:43 AM,04/06/2016 03:56:50 AM,04/06/2016 04:13:56 AM,04/06/2016 04:34:35 AM,Code 2 Transport,04/06/2016 04:58:27 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160970333-70 -141160319,E14,14039275,Medical Incident,04/26/2014,04/26/2014,04/26/2014 07:50:10 PM,04/26/2014 07:50:58 PM,04/26/2014 07:53:59 PM,04/26/2014 07:56:03 PM,04/26/2014 07:58:06 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Code 2 Transport,04/26/2014 08:08:36 PM,5000 Block of FULTON ST,SAN FRANCISCO,94121,B07,14,7211,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7725508354803, -122.485802008075)",141160319-E14 -143290339,E01,14116547,Medical Incident,11/25/2014,11/24/2014,11/25/2014 04:13:24 AM,11/25/2014 04:15:21 AM,11/25/2014 04:16:01 AM,11/25/2014 04:18:22 AM,11/25/2014 04:27:12 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Code 2 Transport,11/25/2014 04:47:14 AM,6TH ST/STEVENSON ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7817543267261, -122.409693263148)",143290339-E01 -142662099,E08,14093140,Alarms,09/23/2014,09/23/2014,09/23/2014 02:34:07 PM,09/23/2014 02:35:17 PM,09/23/2014 02:35:47 PM,09/23/2014 02:36:28 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Fire,09/23/2014 02:36:45 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Alarm,1,ENGINE,5,1,3,North Beach,"(37.8080500969059, -122.409877282931)",142662099-E08 -160921447,62,16036414,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:52:46 AM,04/01/2016 11:53:14 AM,04/01/2016 11:53:31 AM,04/01/2016 11:53:43 AM,04/01/2016 12:00:55 PM,04/01/2016 12:19:48 PM,04/01/2016 12:32:48 PM,Code 2 Transport,04/01/2016 01:06:28 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160921447-62 -160982616,83,16039002,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:57:27 PM,04/07/2016 03:58:46 PM,04/07/2016 04:01:21 PM,04/07/2016 04:04:17 PM,04/07/2016 04:11:48 PM,04/07/2016 04:31:35 PM,04/07/2016 04:45:47 PM,Code 2 Transport,04/07/2016 05:07:58 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160982616-83 -160943428,AM18,16037430,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:25:48 PM,04/03/2016 09:29:54 PM,04/03/2016 09:31:26 PM,04/03/2016 09:32:29 PM,04/03/2016 09:36:04 PM,04/03/2016 09:47:23 PM,04/03/2016 10:13:05 PM,Code 2 Transport,04/03/2016 10:21:21 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",160943428-AM18 -160931902,54,16036881,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:51:03 PM,04/02/2016 01:52:22 PM,04/02/2016 01:54:24 PM,04/02/2016 01:57:36 PM,04/02/2016 02:09:50 PM,04/02/2016 02:09:58 PM,04/02/2016 02:37:39 PM,Code 2 Transport,04/02/2016 03:13:59 PM,BAY ST/JONES ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8052118696218, -122.416887674066)",160931902-54 -160941349,KM02,16037223,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:43:45 AM,04/03/2016 10:46:49 AM,04/03/2016 10:47:28 AM,04/03/2016 10:47:55 AM,04/03/2016 10:56:31 AM,04/03/2016 11:21:33 AM,04/03/2016 11:37:56 AM,Code 2 Transport,04/03/2016 12:08:15 PM,1100 Block of PIERCE ST,San Francisco,94115,B05,5,3643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7805346367144, -122.435588688565)",160941349-KM02 -152571452,T11,15098233,Alarms,09/14/2015,09/14/2015,09/14/2015 11:02:12 AM,09/14/2015 11:04:30 AM,09/14/2015 11:04:49 AM,09/14/2015 11:06:17 AM,09/14/2015 11:09:48 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Fire,09/14/2015 11:23:00 AM,100 Block of APPLETON AVE,San Francisco,94110,B06,32,5646,3,3,3,false,Alarm,1,TRUCK,2,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",152571452-T11 -150291046,52,15011088,Medical Incident,01/29/2015,01/29/2015,01/29/2015 09:38:28 AM,01/29/2015 09:41:08 AM,01/29/2015 09:41:20 AM,01/29/2015 09:42:15 AM,01/29/2015 09:50:44 AM,01/29/2015 10:02:51 AM,01/29/2015 10:40:06 AM,Code 2 Transport,01/29/2015 11:14:58 AM,0 Block of WILLIAMS AVE,San Francisco,94124,B10,17,6536,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7295170043908, -122.394018185467)",150291046-52 -160932211,56,16036916,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:22:14 PM,04/02/2016 03:22:39 PM,04/02/2016 03:24:38 PM,04/02/2016 03:24:49 PM,04/02/2016 03:50:39 PM,04/02/2016 03:50:41 PM,04/02/2016 04:07:07 PM,Code 3 Transport,04/02/2016 04:43:29 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160932211-56 -141772023,74,14061131,Medical Incident,06/26/2014,06/26/2014,06/26/2014 03:00:49 PM,06/26/2014 03:03:56 PM,06/26/2014 03:04:30 PM,06/26/2014 03:05:06 PM,06/26/2014 03:21:08 PM,06/26/2014 03:41:55 PM,06/26/2014 04:34:46 PM,Code 2 Transport,06/26/2014 04:59:21 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8055721065651, -122.414433429446)",141772023-74 -160943056,AM16,16037384,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:10:25 PM,04/03/2016 07:11:22 PM,04/03/2016 07:11:34 PM,04/03/2016 07:12:15 PM,04/03/2016 07:16:39 PM,04/03/2016 07:44:00 PM,04/03/2016 07:53:33 PM,Code 2 Transport,04/03/2016 08:22:23 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160943056-AM16 -142263849,E05,14078689,Medical Incident,08/14/2014,08/14/2014,08/14/2014 11:40:35 PM,08/14/2014 11:41:06 PM,08/14/2014 11:41:26 PM,08/14/2014 11:43:04 PM,08/14/2014 11:48:50 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 2 Transport,08/15/2014 12:13:24 AM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",142263849-E05 -153042817,T08,15116754,Traffic Collision,10/31/2015,10/31/2015,10/31/2015 05:06:17 PM,10/31/2015 05:06:47 PM,10/31/2015 05:09:30 PM,10/31/2015 05:09:30 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,Code 2 Transport,10/31/2015 05:11:47 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,South of Market,"(37.7777990101501, -122.40029776053)",153042817-T08 -141070017,E03,14035972,Medical Incident,04/17/2014,04/16/2014,04/17/2014 01:37:46 AM,04/17/2014 01:41:02 AM,04/17/2014 01:41:40 AM,04/17/2014 01:43:37 AM,04/17/2014 01:46:12 AM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Code 2 Transport,04/17/2014 01:49:31 AM,300 Block of EDDY ST,SAN FRANCISCO,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",141070017-E03 -153170668,67,15121736,Medical Incident,11/13/2015,11/12/2015,11/13/2015 07:05:16 AM,11/13/2015 07:05:41 AM,11/13/2015 07:06:20 AM,11/13/2015 07:06:39 AM,11/13/2015 07:20:58 AM,11/13/2015 07:36:17 AM,11/13/2015 08:29:53 AM,Code 2 Transport,11/13/2015 09:12:17 AM,0 Block of KELLOCH AVE,San Francisco,94134,B09,44,6252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7089951218333, -122.41338600281)",153170668-67 -152650613,68,15101380,Medical Incident,09/22/2015,09/21/2015,09/22/2015 07:17:10 AM,09/22/2015 07:20:02 AM,09/22/2015 07:20:18 AM,09/22/2015 07:20:30 AM,09/22/2015 07:26:00 AM,09/22/2015 07:47:32 AM,09/22/2015 07:47:34 AM,Code 2 Transport,09/22/2015 08:00:41 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,false,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",152650613-68 -151782647,82,15067845,Medical Incident,06/27/2015,06/27/2015,06/27/2015 04:49:13 PM,06/27/2015 04:50:09 PM,06/27/2015 04:50:23 PM,06/27/2015 04:50:31 PM,06/27/2015 04:57:28 PM,06/27/2015 05:08:15 PM,06/27/2015 05:35:34 PM,Code 2 Transport,06/27/2015 06:00:21 PM,1200 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7112938482152, -122.414007130842)",151782647-82 -143110093,AM20,14109972,Medical Incident,11/07/2014,11/06/2014,11/07/2014 12:32:50 AM,11/07/2014 12:34:43 AM,11/07/2014 12:34:46 AM,11/07/2014 12:35:42 AM,11/07/2014 12:42:15 AM,11/07/2014 01:05:28 AM,11/07/2014 01:23:42 AM,Code 2 Transport,11/07/2014 01:44:40 AM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",143110093-AM20 -142910377,55,14102502,Medical Incident,10/18/2014,10/17/2014,10/18/2014 02:18:24 AM,10/18/2014 02:20:11 AM,10/18/2014 02:20:34 AM,10/18/2014 02:20:41 AM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 2 Transport,10/18/2014 02:21:49 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",142910377-55 -152200701,RC1,15083714,Structure Fire,08/08/2015,08/07/2015,08/08/2015 06:45:21 AM,08/08/2015 06:46:16 AM,08/08/2015 06:52:13 AM,08/08/2015 06:54:15 AM,08/08/2015 06:58:30 AM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Against Medical Advice,08/08/2015 07:43:54 AM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",152200701-RC1 -161003444,58,16039973,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:34:02 PM,04/09/2016 10:34:02 PM,04/09/2016 10:34:02 PM,04/09/2016 10:34:02 PM,04/09/2016 10:34:02 PM,04/09/2016 10:38:36 PM,04/09/2016 10:41:32 PM,Code 2 Transport,04/09/2016 11:09:09 PM,CASTRO ST/DUBOCE AV,San Francisco,94117,B99,6,5133,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7690584547768, -122.435794213255)",161003444-58 -150272206,79,15010454,Medical Incident,01/27/2015,01/27/2015,01/27/2015 02:56:26 PM,01/27/2015 02:57:41 PM,01/27/2015 02:58:52 PM,01/27/2015 02:58:59 PM,01/27/2015 03:17:33 PM,01/27/2015 03:40:01 PM,01/27/2015 03:46:59 PM,Code 3 Transport,01/27/2015 04:28:22 PM,0 Block of KING ST,San Francisco,94107,B03,35,940,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7807643532489, -122.388778001806)",150272206-79 -141673214,AM22,14057752,Medical Incident,06/16/2014,06/16/2014,06/16/2014 09:04:53 PM,06/16/2014 09:06:03 PM,06/16/2014 09:06:34 PM,06/16/2014 09:07:19 PM,06/16/2014 09:10:46 PM,06/16/2014 09:21:17 PM,06/16/2014 09:29:37 PM,Code 2 Transport,06/16/2014 09:46:18 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",141673214-AM22 -152561275,64,15097868,Medical Incident,09/13/2015,09/13/2015,09/13/2015 11:05:48 AM,09/13/2015 11:07:05 AM,09/13/2015 11:07:23 AM,09/13/2015 11:07:43 AM,09/13/2015 11:20:41 AM,09/13/2015 12:05:09 PM,09/13/2015 12:47:01 PM,Code 2 Transport,09/13/2015 01:28:23 PM,1700 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",152561275-64 -160931262,79,16036806,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:47:06 AM,04/02/2016 10:48:45 AM,04/02/2016 10:50:34 AM,04/02/2016 10:50:41 AM,04/02/2016 10:59:15 AM,04/02/2016 11:12:14 AM,04/02/2016 11:24:57 AM,Code 2 Transport,04/02/2016 11:48:51 AM,15TH ST/CALEDONIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7665705430089, -122.421531295291)",160931262-79 -143001123,E17,14105861,Traffic Collision,10/27/2014,10/27/2014,10/27/2014 10:18:55 AM,10/27/2014 10:21:20 AM,10/27/2014 10:22:30 AM,10/27/2014 10:23:07 AM,10/27/2014 10:34:49 AM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Code 2 Transport,10/27/2014 11:02:08 AM,100 Block of 3RD ST,,94105,B10,44,6544,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",143001123-E17 -151533722,E04,15058486,Traffic Collision,06/02/2015,06/02/2015,06/02/2015 10:49:06 PM,06/02/2015 10:52:41 PM,06/02/2015 10:52:59 PM,06/02/2015 10:54:08 PM,06/02/2015 10:58:36 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/02/2015 11:35:10 PM,900 Block of MARIPOSA ST,San Francisco,94158,B03,29,2436,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Potrero Hill,"(37.7641315614152, -122.392835067648)",151533722-E04 -143552087,E38,14126937,Administrative,12/21/2014,12/21/2014,12/21/2014 01:57:26 PM,12/21/2014 01:57:31 PM,12/21/2014 01:59:11 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 01:59:31 PM,2100 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",143552087-E38 -152852740,KM01,15109505,Medical Incident,10/12/2015,10/12/2015,10/12/2015 04:40:37 PM,10/12/2015 04:40:37 PM,10/12/2015 04:41:09 PM,10/12/2015 04:42:00 PM,10/12/2015 04:47:07 PM,10/12/2015 05:10:12 PM,10/12/2015 05:16:44 PM,Code 2 Transport,10/12/2015 05:51:15 PM,900 Block of FULTON ST,San Francisco,94117,B05,5,3626,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7776493804363, -122.432407664511)",152852740-KM01 -142701335,E21,14094657,Alarms,09/27/2014,09/27/2014,09/27/2014 10:34:16 AM,09/27/2014 10:35:32 AM,09/27/2014 10:35:46 AM,09/27/2014 10:39:40 AM,09/27/2014 10:43:10 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Fire,09/27/2014 10:45:07 AM,700 Block of PARKER AVE,San Francisco,94118,B05,21,4542,3,3,3,false,Alarm,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7753639647551, -122.452955343611)",142701335-E21 -152393018,KM02,15091124,Medical Incident,08/27/2015,08/27/2015,08/27/2015 05:38:35 PM,08/27/2015 05:39:01 PM,08/27/2015 05:39:38 PM,08/27/2015 05:40:18 PM,08/27/2015 05:46:04 PM,08/27/2015 06:14:51 PM,08/27/2015 06:24:42 PM,Code 3 Transport,08/27/2015 06:47:08 PM,300 Block of MAIN ST,San Francisco,94105,B03,35,2117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",152393018-KM02 -160974174,52,16038668,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:06:05 PM,04/06/2016 09:07:19 PM,04/06/2016 09:07:46 PM,04/06/2016 09:07:58 PM,04/06/2016 09:16:25 PM,04/06/2016 09:32:25 PM,04/06/2016 09:58:50 PM,Code 2 Transport,04/06/2016 10:36:01 PM,5TH ST/HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160974174-52 -161000494,60,16039621,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:02:52 AM,04/09/2016 04:04:23 AM,04/09/2016 04:05:28 AM,04/09/2016 04:05:40 AM,04/09/2016 04:16:55 AM,04/09/2016 04:40:59 AM,04/09/2016 04:48:06 AM,Code 2 Transport,04/09/2016 05:19:20 AM,8100 Block of OCEANVIEW TER,San Francisco,94132,B09,33,8412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",161000494-60 -150070559,E36,15002572,Alarms,01/07/2015,01/06/2015,01/07/2015 07:02:32 AM,01/07/2015 07:03:58 AM,01/07/2015 07:04:13 AM,01/07/2015 07:07:47 AM,01/07/2015 07:07:56 AM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Fire,01/07/2015 07:16:08 AM,300 Block of FELL ST,San Francisco,94102,B02,36,3314,3,3,3,true,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7757976823178, -122.423545172225)",150070559-E36 -151822724,86,15069554,Medical Incident,07/01/2015,07/01/2015,07/01/2015 04:43:52 PM,07/01/2015 04:44:15 PM,07/01/2015 04:46:38 PM,07/01/2015 04:46:49 PM,07/01/2015 04:55:49 PM,07/01/2015 05:10:36 PM,07/01/2015 05:31:35 PM,Code 2 Transport,07/01/2015 06:07:33 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",151822724-86 -161000466,AM20,16039617,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:49:04 AM,04/09/2016 03:49:46 AM,04/09/2016 03:50:20 AM,04/09/2016 03:50:52 AM,04/09/2016 03:56:54 AM,04/09/2016 04:11:23 AM,04/09/2016 04:25:13 AM,Code 2 Transport,04/09/2016 04:58:19 AM,600 Block of SPRUCE ST,San Francisco,94118,B05,10,4374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7828949768475, -122.453342258872)",161000466-AM20 -150361721,77,15013822,Medical Incident,02/05/2015,02/05/2015,02/05/2015 12:48:19 PM,02/05/2015 12:49:55 PM,02/05/2015 12:51:16 PM,02/05/2015 12:51:51 PM,02/05/2015 01:15:56 PM,02/05/2015 01:43:38 PM,02/05/2015 02:17:36 PM,Code 2 Transport,02/05/2015 02:57:52 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",150361721-77 -160981823,AM08,16038909,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:28:41 PM,04/07/2016 12:31:10 PM,04/07/2016 12:32:59 PM,04/07/2016 12:35:27 PM,04/07/2016 12:38:29 PM,04/07/2016 12:59:46 PM,04/07/2016 01:19:18 PM,Code 2 Transport,04/07/2016 01:50:05 PM,0 Block of BUENA VISTA TR,San Francisco,94117,B05,21,5135,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7704944345623, -122.439706222597)",160981823-AM08 -160951834,64,16037633,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:59:41 PM,04/04/2016 01:02:04 PM,04/04/2016 01:02:33 PM,04/04/2016 01:03:14 PM,04/04/2016 01:22:12 PM,04/04/2016 01:33:41 PM,04/04/2016 02:13:26 PM,Code 2 Transport,04/04/2016 02:53:25 PM,100 Block of DRUMM ST,San Francisco,94111,B01,13,1115,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",160951834-64 -160982129,KM04,16038940,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:53:22 PM,04/07/2016 01:56:10 PM,04/07/2016 01:59:24 PM,04/07/2016 02:00:08 PM,04/07/2016 02:17:05 PM,04/07/2016 02:36:59 PM,04/07/2016 03:09:11 PM,Code 2 Transport,04/07/2016 03:53:00 PM,5100 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7458165668766, -122.44007828523)",160982129-KM04 -161002224,AM14,16039830,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:18:35 PM,04/09/2016 04:20:46 PM,04/09/2016 04:20:58 PM,04/09/2016 04:21:20 PM,04/09/2016 04:29:46 PM,04/09/2016 04:53:46 PM,04/09/2016 05:14:50 PM,Code 2 Transport,04/09/2016 05:35:31 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",161002224-AM14 -153200847,B02,15122948,Gas Leak (Natural and LP Gases),11/16/2015,11/16/2015,11/16/2015 08:53:32 AM,11/16/2015 08:54:50 AM,11/16/2015 08:56:13 AM,11/16/2015 08:56:13 AM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Fire,11/16/2015 09:10:36 AM,600 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,false,Alarm,1,CHIEF,4,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",153200847-B02 -152744165,E07,15105118,Medical Incident,10/01/2015,10/01/2015,10/01/2015 10:57:04 PM,10/01/2015 10:58:43 PM,10/01/2015 11:00:08 PM,10/01/2015 11:01:25 PM,10/01/2015 11:04:11 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Unable to Locate,10/01/2015 11:05:26 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",152744165-E07 -153111398,E26,15119531,Medical Incident,11/07/2015,11/07/2015,11/07/2015 11:17:12 AM,11/07/2015 11:18:44 AM,11/07/2015 11:19:09 AM,11/07/2015 11:21:28 AM,11/07/2015 11:24:20 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,No Merit,11/07/2015 11:31:31 AM,0 Block of LIPPARD AVE,San Francisco,94131,B09,26,8176,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Glen Park,"(37.7343228660254, -122.435628143027)",153111398-E26 -152771658,E12,15106216,Medical Incident,10/04/2015,10/04/2015,10/04/2015 12:29:05 PM,10/04/2015 12:29:52 PM,10/04/2015 12:30:25 PM,10/04/2015 12:30:38 PM,10/04/2015 12:33:04 PM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Code 2 Transport,10/04/2015 12:36:32 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",152771658-E12 -151401784,E51,15053154,Alarms,05/20/2015,05/20/2015,05/20/2015 01:02:22 PM,05/20/2015 01:04:31 PM,05/20/2015 01:04:42 PM,05/20/2015 01:07:54 PM,05/20/2015 01:07:54 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Fire,05/20/2015 01:12:37 PM,0 Block of GRAHAM ST,Presidio,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.8007066173192, -122.456882143505)",151401784-E51 -161001745,55,16039779,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:46:25 PM,04/09/2016 01:49:02 PM,04/09/2016 01:49:14 PM,04/09/2016 01:52:11 PM,04/09/2016 01:54:47 PM,04/09/2016 02:13:52 PM,04/09/2016 02:35:49 PM,Code 2 Transport,04/09/2016 03:14:48 PM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",161001745-55 -151794134,B02,15068529,Medical Incident,06/28/2015,06/28/2015,06/28/2015 10:56:20 PM,06/28/2015 10:56:20 PM,06/28/2015 10:56:59 PM,06/28/2015 10:58:16 PM,06/28/2015 11:01:03 PM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,No Merit,06/28/2015 11:13:54 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,A,E,3,false,Potentially Life-Threatening,1,CHIEF,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",151794134-B02 -141581906,T03,14054456,Traffic Collision,06/07/2014,06/07/2014,06/07/2014 02:47:25 PM,06/07/2014 02:47:25 PM,06/07/2014 02:48:25 PM,06/07/2014 02:49:11 PM,06/07/2014 02:50:38 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Code 2 Transport,06/07/2014 02:51:37 PM,VAN NESS AV/ELLIS ST,San Francisco,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,5,Western Addition,"(37.7838241173643, -122.421008360007)",141581906-T03 -153113729,E02,15119737,Elevator / Escalator Rescue,11/07/2015,11/07/2015,11/07/2015 10:49:03 PM,11/07/2015 10:49:46 PM,11/07/2015 10:54:05 PM,11/07/2015 10:55:51 PM,11/07/2015 10:58:42 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Patient Declined Transport,11/07/2015 11:39:58 PM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,3,3,3,true,Alarm,1,ENGINE,3,1,3,North Beach,"(37.8061880612091, -122.416243833913)",153113729-E02 -150483016,B10,15018716,Alarms,02/17/2015,02/17/2015,02/17/2015 06:23:17 PM,02/17/2015 06:24:31 PM,02/17/2015 06:24:42 PM,02/17/2015 06:25:59 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/17/2015 06:30:51 PM,1100 Block of BOWDOIN ST,San Francisco,94134,B09,42,6321,3,3,3,false,Alarm,1,CHIEF,2,9,9,Portola,"(37.7216111443853, -122.408837675477)",150483016-B10 -141260365,E36,14042851,Structure Fire,05/06/2014,05/06/2014,05/06/2014 08:38:07 PM,05/06/2014 08:38:08 PM,05/06/2014 08:38:18 PM,04/25/2016 01:17:29 PM,05/06/2014 08:42:22 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Fire,05/06/2014 08:42:38 PM,0 Block of HAIGHT ST,SAN FRANCISCO,94102,B02,36,3311,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7730976142378, -122.42211684621)",141260365-E36 -160923218,88,16036580,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:30:49 PM,04/01/2016 07:32:02 PM,04/01/2016 07:32:27 PM,04/01/2016 07:32:38 PM,04/01/2016 07:40:41 PM,04/01/2016 08:01:48 PM,04/01/2016 08:26:45 PM,Code 2 Transport,04/01/2016 09:03:49 PM,200 Block of MONTANA ST,San Francisco,94112,B09,33,8373,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7166530820689, -122.45964389425)",160923218-88 -160951204,63,16037573,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:26:40 AM,04/04/2016 10:26:40 AM,04/04/2016 10:27:21 AM,04/04/2016 10:27:49 AM,04/04/2016 10:35:03 AM,04/04/2016 12:38:05 PM,04/04/2016 01:03:24 PM,Code 2 Transport,04/04/2016 01:48:03 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,3,3,3,true,Non Life-threatening,1,MEDIC,5,2,6,Mission,"(37.7740948566882, -122.420001436964)",160951204-63 -160981489,AM02,16038880,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:10:53 AM,04/07/2016 11:11:34 AM,04/07/2016 11:12:31 AM,04/07/2016 11:12:45 AM,04/07/2016 11:18:56 AM,04/07/2016 11:35:07 AM,04/07/2016 11:53:44 AM,Code 2 Transport,04/07/2016 12:41:43 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160981489-AM02 -142062985,82,14071476,Medical Incident,07/25/2014,07/25/2014,07/25/2014 07:03:31 PM,07/25/2014 07:05:42 PM,07/25/2014 07:07:02 PM,07/25/2014 07:07:25 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Other,07/25/2014 07:24:44 PM,6TH ST/JESSIE ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",142062985-82 -150442306,B03,15017148,Alarms,02/13/2015,02/13/2015,02/13/2015 03:11:28 PM,02/13/2015 03:12:52 PM,02/13/2015 03:14:12 PM,02/13/2015 03:15:10 PM,02/13/2015 03:18:10 PM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Fire,02/13/2015 03:30:20 PM,600 Block of MISSION ST,San Francisco,94105,B03,1,2145,3,3,3,false,Alarm,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7877677693899, -122.400199374734)",150442306-B03 -151481929,AM12,15056351,Medical Incident,05/28/2015,05/28/2015,05/28/2015 02:07:20 PM,05/28/2015 02:09:43 PM,05/28/2015 02:11:20 PM,05/28/2015 02:12:01 PM,05/28/2015 02:23:32 PM,05/28/2015 02:26:31 PM,05/28/2015 02:50:16 PM,Code 2 Transport,05/28/2015 03:36:11 PM,600 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8044727215137, -122.415562636307)",151481929-AM12 -160931238,AM10,16036802,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:38:37 AM,04/02/2016 10:40:30 AM,04/02/2016 10:42:13 AM,04/02/2016 10:42:54 AM,04/02/2016 10:49:10 AM,04/02/2016 11:02:46 AM,04/02/2016 11:32:29 AM,Code 2 Transport,04/02/2016 12:11:10 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160931238-AM10 -160952739,61,16037705,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:36:41 PM,04/04/2016 04:38:32 PM,04/04/2016 04:42:14 PM,04/04/2016 04:42:28 PM,04/04/2016 05:00:11 PM,04/04/2016 05:21:25 PM,04/04/2016 05:41:26 PM,Code 2 Transport,04/04/2016 05:59:06 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",160952739-61 -142023111,RC1,14070032,Medical Incident,07/21/2014,07/21/2014,07/21/2014 08:22:28 PM,07/21/2014 08:24:30 PM,07/21/2014 08:28:47 PM,07/21/2014 08:30:31 PM,07/21/2014 08:38:08 PM,04/25/2016 01:16:06 PM,04/25/2016 01:16:06 PM,Patient Declined Transport,07/21/2014 09:09:35 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142023111-RC1 -150820937,E05,15031303,Gas Leak (Natural and LP Gases),03/23/2015,03/23/2015,03/23/2015 09:23:21 AM,03/23/2015 09:24:54 AM,03/23/2015 09:25:40 AM,03/23/2015 09:29:12 AM,03/23/2015 09:30:24 AM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Fire,03/23/2015 09:45:18 AM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,3,3,3,true,Alarm,1,ENGINE,1,4,5,Japantown,"(37.7865540233875, -122.42914633387)",150820937-E05 -141110425,E12,14037643,Structure Fire,04/21/2014,04/21/2014,04/21/2014 11:26:58 PM,04/21/2014 11:29:01 PM,04/21/2014 11:29:22 PM,04/25/2016 01:17:45 PM,04/21/2014 11:31:30 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Fire,04/21/2014 11:41:05 PM,500 Block of PARNASSUS AVE,SAN FRANCISCO,94131,B05,12,7323,3,3,3,true,Alarm,1,ENGINE,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",141110425-E12 -160933042,KM11,16036997,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:07:57 PM,04/02/2016 07:07:57 PM,04/02/2016 07:09:23 PM,04/02/2016 07:09:47 PM,04/02/2016 07:16:03 PM,04/02/2016 07:31:17 PM,04/02/2016 07:40:07 PM,Code 2 Transport,04/02/2016 08:00:08 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160933042-KM11 -150190552,85,15007393,Medical Incident,01/19/2015,01/18/2015,01/19/2015 06:43:05 AM,01/19/2015 06:47:50 AM,01/19/2015 06:48:05 AM,01/19/2015 06:48:21 AM,01/19/2015 07:01:30 AM,01/19/2015 07:26:05 AM,01/19/2015 07:48:03 AM,Code 2 Transport,01/19/2015 08:18:51 AM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",150190552-85 -160940979,50,16037200,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:43:49 AM,04/03/2016 08:44:43 AM,04/03/2016 08:44:57 AM,04/03/2016 08:45:08 AM,04/03/2016 08:49:04 AM,04/03/2016 08:57:00 AM,04/03/2016 09:05:35 AM,Code 3 Transport,04/03/2016 10:06:19 AM,300 Block of 11TH ST,San Francisco,94103,B02,36,5112,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7712080387402, -122.413302363173)",160940979-50 -151102797,E07,15041710,Outside Fire,04/20/2015,04/20/2015,04/20/2015 05:23:14 PM,04/20/2015 05:24:36 PM,04/20/2015 05:24:50 PM,04/20/2015 05:26:02 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,Cancelled,04/20/2015 05:27:17 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Fire,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",151102797-E07 -151221453,E25,15046252,Alarms,05/02/2015,05/02/2015,05/02/2015 12:08:51 PM,05/02/2015 12:09:54 PM,05/02/2015 12:10:20 PM,05/02/2015 12:11:50 PM,05/02/2015 12:14:43 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Fire,05/02/2015 12:24:44 PM,1000 Block of EVANS AV,San Francisco,94124,B10,25,6555,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364596123052, -122.376840481121)",151221453-E25 -150513643,E32,15019820,Medical Incident,02/20/2015,02/20/2015,02/20/2015 08:37:21 PM,02/20/2015 08:38:31 PM,02/20/2015 08:38:49 PM,02/20/2015 08:39:39 PM,04/25/2016 01:12:08 PM,04/25/2016 01:12:08 PM,04/25/2016 01:12:08 PM,Code 2 Transport,02/20/2015 08:40:00 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,6,8,Mission,"(37.748178766022, -122.4214039484)",150513643-E32 -160961671,AM10,16037999,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:20:32 PM,04/05/2016 12:21:47 PM,04/05/2016 12:23:00 PM,04/05/2016 12:24:15 PM,04/05/2016 12:28:03 PM,04/05/2016 12:50:17 PM,04/05/2016 01:19:45 PM,Code 2 Transport,04/05/2016 01:32:12 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160961671-AM10 -142371641,T10,14082420,Citizen Assist / Service Call,08/25/2014,08/25/2014,08/25/2014 12:23:16 PM,08/25/2014 12:26:38 PM,08/25/2014 12:30:31 PM,08/25/2014 12:30:31 PM,08/25/2014 12:32:18 PM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,No Merit,08/25/2014 12:37:23 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,3,3,3,false,Alarm,1,TRUCK,1,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",142371641-T10 -150952490,KM06,15036176,Medical Incident,04/05/2015,04/05/2015,04/05/2015 06:44:49 PM,04/05/2015 06:47:04 PM,04/05/2015 06:47:17 PM,04/05/2015 06:47:54 PM,04/05/2015 07:08:35 PM,04/05/2015 07:37:20 PM,04/05/2015 07:48:44 PM,Code 2 Transport,04/05/2015 08:04:05 PM,300 Block of LOWER FORT MASON ST,Fort Mason,94123,B99,51,3343,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8058923703038, -122.431246520303)",150952490-KM06 -141100256,T12,14037177,Structure Fire,04/20/2014,04/20/2014,04/20/2014 05:45:06 PM,04/20/2014 05:47:04 PM,04/20/2014 05:47:26 PM,04/20/2014 05:48:53 PM,04/20/2014 05:51:53 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Fire,04/20/2014 06:03:41 PM,4300 Block of 17TH ST,SAN FRANCISCO,94114,B05,24,5413,3,3,3,false,Alarm,1,TRUCK,6,5,8,Castro/Upper Market,"(37.7620502545235, -122.44153298408)",141100256-T12 -142812198,82,14098910,Medical Incident,10/08/2014,10/08/2014,10/08/2014 03:07:49 PM,10/08/2014 03:08:14 PM,10/08/2014 03:08:57 PM,10/08/2014 03:09:09 PM,10/08/2014 03:19:44 PM,10/08/2014 03:33:56 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 04:27:31 PM,0 Block of REDDY ST,San Francisco,94124,B10,17,6513,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7303641478199, -122.395285364874)",142812198-82 -141502061,E15,14051586,Medical Incident,05/30/2014,05/30/2014,05/30/2014 03:45:11 PM,05/30/2014 03:46:09 PM,05/30/2014 03:47:28 PM,05/30/2014 03:49:23 PM,05/30/2014 03:51:54 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Code 2 Transport,05/30/2014 03:53:33 PM,300 Block of RUSSIA AVE,San Francisco,94112,B09,43,6126,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7203009310959, -122.434349394708)",141502061-E15 -152340584,E36,15089105,Structure Fire,08/22/2015,08/21/2015,08/22/2015 05:04:25 AM,08/22/2015 05:04:25 AM,08/22/2015 05:05:11 AM,08/22/2015 05:07:15 AM,08/22/2015 05:08:42 AM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Fire,08/22/2015 05:09:00 AM,LAGUNA ST/HAYES ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7764643062528, -122.426263344902)",152340584-E36 -151541844,62,15058675,Medical Incident,06/03/2015,06/03/2015,06/03/2015 12:59:55 PM,06/03/2015 01:02:12 PM,06/03/2015 01:03:09 PM,06/03/2015 01:03:18 PM,06/03/2015 01:22:57 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Medical Examiner,06/03/2015 01:58:21 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",151541844-62 -151210967,77,15045777,Medical Incident,05/01/2015,05/01/2015,05/01/2015 08:46:15 AM,05/01/2015 08:46:15 AM,05/01/2015 08:55:16 AM,05/01/2015 08:55:42 AM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Gone on Arrival,05/01/2015 09:03:23 AM,17TH ST/VERMONT ST,San Francisco,94107,B02,29,2422,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,10,Mission Bay,"(37.7646643171585, -122.4044969781)",151210967-77 -160983588,68,16039100,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:32:09 PM,04/07/2016 08:35:39 PM,04/07/2016 08:35:58 PM,04/07/2016 08:36:08 PM,04/07/2016 08:44:00 PM,04/07/2016 08:57:55 PM,04/07/2016 09:12:18 PM,Code 2 Transport,04/07/2016 09:45:04 PM,LARKIN ST/TURK ST,San Francisco,94102,B02,3,1644,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782378943359, -122.41733888153)",160983588-68 -142282839,74,14079315,Medical Incident,08/16/2014,08/16/2014,08/16/2014 06:05:59 PM,08/16/2014 06:07:15 PM,08/16/2014 06:07:46 PM,08/16/2014 06:09:15 PM,08/16/2014 06:15:42 PM,08/16/2014 06:29:42 PM,08/16/2014 06:48:46 PM,Code 2 Transport,08/16/2014 07:12:02 PM,16TH ST/POTRERO AV,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,10,Mission,"(37.7657832995202, -122.407534230594)",142282839-74 -160940033,53,16037095,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:08:59 AM,04/03/2016 12:09:58 AM,04/03/2016 12:10:06 AM,04/03/2016 12:10:19 AM,04/03/2016 12:24:28 AM,04/03/2016 12:37:23 AM,04/03/2016 01:12:24 AM,Code 2 Transport,04/03/2016 01:37:53 AM,1300 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",160940033-53 -142983561,E21,14105358,Outside Fire,10/25/2014,10/25/2014,10/25/2014 09:41:49 PM,10/25/2014 09:42:07 PM,10/25/2014 09:42:28 PM,10/25/2014 09:45:00 PM,10/25/2014 09:45:37 PM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,Fire,10/25/2014 09:53:23 PM,200 Block of DIVISADERO ST,San Francisco,94117,B05,21,4144,3,3,3,false,Fire,1,ENGINE,1,5,5,Haight Ashbury,"(37.7717499829743, -122.437022956853)",142983561-E21 -160932291,77,16036923,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:43:42 PM,04/02/2016 03:45:58 PM,04/02/2016 03:46:11 PM,04/02/2016 03:47:05 PM,04/02/2016 03:56:51 PM,04/02/2016 04:12:45 PM,04/02/2016 04:41:31 PM,Code 2 Transport,04/02/2016 05:34:28 PM,500 Block of 33RD AVE,San Francisco,94121,B07,14,7245,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7787282416429, -122.493301622886)",160932291-77 -151010443,D3,15038118,Structure Fire,04/11/2015,04/10/2015,04/11/2015 04:04:25 AM,04/11/2015 04:07:50 AM,04/11/2015 04:08:01 AM,04/11/2015 04:09:12 AM,04/11/2015 04:11:58 AM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Fire,04/11/2015 04:15:48 AM,200 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5524,3,3,3,false,Alarm,1,CHIEF,4,6,8,Mission,"(37.7512525436366, -122.421447402761)",151010443-D3 -160983901,64,16039128,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:26:48 PM,04/07/2016 10:26:48 PM,04/07/2016 10:27:00 PM,04/07/2016 10:30:05 PM,04/07/2016 10:31:13 PM,04/07/2016 10:48:48 PM,04/07/2016 11:01:08 PM,Code 2 Transport,04/07/2016 11:52:51 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160983901-64 -143111355,KM03,14110094,Medical Incident,11/07/2014,11/07/2014,11/07/2014 11:13:38 AM,11/07/2014 11:15:09 AM,11/07/2014 11:15:48 AM,11/07/2014 11:18:16 AM,11/07/2014 11:21:49 AM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Patient Declined Transport,11/07/2014 11:55:22 AM,0 Block of DARIEN WAY,San Francisco,94127,B09,19,8553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7318676967011, -122.470957144212)",143111355-KM03 -160951695,61,16037620,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:25:43 PM,04/04/2016 12:27:08 PM,04/04/2016 12:27:48 PM,04/04/2016 12:28:00 PM,04/04/2016 12:31:36 PM,04/04/2016 12:41:32 PM,04/04/2016 01:30:18 PM,Code 2 Transport,04/04/2016 01:48:51 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160951695-61 -161001119,88,16039699,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:15:01 AM,04/09/2016 10:15:08 AM,04/09/2016 10:15:47 AM,04/09/2016 10:16:08 AM,04/09/2016 10:21:08 AM,04/09/2016 10:39:00 AM,04/09/2016 10:38:47 AM,Code 2 Transport,04/09/2016 11:13:29 AM,CALIFORNIA ST/PARKER AV,San Francisco,94118,B07,10,4436,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.786243820524, -122.454774455185)",161001119-88 -151920430,85,15073142,Medical Incident,07/11/2015,07/10/2015,07/11/2015 02:47:47 AM,07/11/2015 02:47:47 AM,07/11/2015 02:48:29 AM,07/11/2015 02:49:10 AM,07/11/2015 03:01:46 AM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,Patient Declined Transport,07/11/2015 03:58:11 AM,700 Block of ANDERSON ST,San Francisco,94110,B06,32,5743,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.734061249401, -122.415687438278)",151920430-85 -142540960,E24,14088605,Medical Incident,09/11/2014,09/11/2014,09/11/2014 09:15:24 AM,09/11/2014 09:17:04 AM,09/11/2014 09:17:28 AM,09/11/2014 09:19:26 AM,09/11/2014 09:20:27 AM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Code 2 Transport,09/11/2014 09:35:19 AM,4200 Block of 22ND ST,San Francisco,94114,B06,24,5463,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7541880494362, -122.440397827371)",142540960-E24 -153340396,88,15128275,Medical Incident,11/30/2015,11/29/2015,11/30/2015 05:39:56 AM,11/30/2015 05:39:56 AM,11/30/2015 05:41:59 AM,11/30/2015 05:42:35 AM,11/30/2015 05:48:30 AM,11/30/2015 06:04:13 AM,11/30/2015 06:10:42 AM,Code 2 Transport,11/30/2015 07:08:20 AM,MASONIC AV/GEARY BL,San Francisco,94118,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",153340396-88 -143201212,E05,14113287,Medical Incident,11/16/2014,11/16/2014,11/16/2014 10:32:36 AM,11/16/2014 10:33:52 AM,11/16/2014 10:35:29 AM,11/16/2014 10:36:12 AM,11/16/2014 10:39:49 AM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,Unable to Locate,11/16/2014 10:42:45 AM,1100 Block of SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,true,Non Life-threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",143201212-E05 -160950726,52,16037544,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:21:49 AM,04/04/2016 08:23:45 AM,04/04/2016 08:24:17 AM,04/04/2016 08:24:28 AM,04/04/2016 08:31:15 AM,04/04/2016 08:43:44 AM,04/04/2016 08:56:00 AM,Code 2 Transport,04/04/2016 09:20:45 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160950726-52 -152100470,AM24,15079892,Medical Incident,07/29/2015,07/28/2015,07/29/2015 06:34:05 AM,07/29/2015 06:35:14 AM,07/29/2015 06:37:33 AM,07/29/2015 06:38:37 AM,07/29/2015 06:41:20 AM,07/29/2015 06:47:01 AM,07/29/2015 07:12:32 AM,Code 2 Transport,07/29/2015 07:33:25 AM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.781585403105, -122.423090188841)",152100470-AM24 -153241357,E15,15124626,Medical Incident,11/20/2015,11/20/2015,11/20/2015 10:30:41 AM,11/20/2015 10:31:54 AM,11/20/2015 10:32:22 AM,11/20/2015 10:32:59 AM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,Code 2 Transport,11/20/2015 10:35:00 AM,1100 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8473,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7228664396788, -122.456076821755)",153241357-E15 -143651954,E06,14130732,Alarms,12/31/2014,12/31/2014,12/31/2014 03:11:07 PM,12/31/2014 03:12:31 PM,12/31/2014 03:14:06 PM,12/31/2014 03:14:16 PM,12/31/2014 03:15:31 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Fire,12/31/2014 03:52:10 PM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",143651954-E06 -152622879,E25,15100275,Outside Fire,09/19/2015,09/19/2015,09/19/2015 05:25:05 PM,09/19/2015 05:25:32 PM,09/19/2015 05:25:43 PM,09/19/2015 05:26:17 PM,09/19/2015 05:28:06 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Fire,09/19/2015 05:40:47 PM,CESAR CHAVEZ ST/INDIANA ST,San Francisco,94124,B10,25,2641,3,3,3,false,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7501183410943, -122.390433038827)",152622879-E25 -142462367,KM06,14085732,Medical Incident,09/03/2014,09/03/2014,09/03/2014 03:13:45 PM,09/03/2014 03:13:45 PM,09/03/2014 03:16:02 PM,09/03/2014 03:17:31 PM,09/03/2014 03:18:37 PM,09/03/2014 03:35:20 PM,09/03/2014 03:47:06 PM,Code 2 Transport,09/03/2014 04:30:45 PM,16TH ST/DOLORES ST,San Francisco,94103,B07,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",142462367-KM06 -151590779,E13,15060624,Medical Incident,06/08/2015,06/08/2015,06/08/2015 08:15:07 AM,06/08/2015 08:16:10 AM,06/08/2015 08:17:05 AM,06/08/2015 08:18:23 AM,06/08/2015 08:21:30 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Code 2 Transport,06/08/2015 08:28:36 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",151590779-E13 -150531315,57,15020357,Medical Incident,02/22/2015,02/22/2015,02/22/2015 11:14:14 AM,02/22/2015 11:15:34 AM,02/22/2015 11:15:56 AM,02/22/2015 11:16:09 AM,02/22/2015 11:20:40 AM,02/22/2015 11:34:15 AM,02/22/2015 11:58:31 AM,Code 2 Transport,02/22/2015 12:57:47 PM,0 Block of GOUGH ST,San Francisco,94102,B02,36,3311,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7733777975899, -122.422339243333)",150531315-57 -160933115,60,16037008,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:28:05 PM,04/02/2016 07:28:53 PM,04/02/2016 07:29:15 PM,04/02/2016 07:29:25 PM,04/02/2016 07:33:47 PM,04/02/2016 08:01:33 PM,04/02/2016 08:09:12 PM,Code 2 Transport,04/02/2016 08:50:20 PM,700 Block of MISSOURI ST,San Francisco,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",160933115-60 -160923610,62,16036622,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:46:33 PM,04/01/2016 09:46:33 PM,04/01/2016 09:46:48 PM,04/01/2016 09:46:56 PM,04/01/2016 09:52:59 PM,04/01/2016 10:10:16 PM,04/01/2016 10:31:36 PM,Code 2 Transport,04/01/2016 10:52:27 PM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7562403438982, -122.418755320213)",160923610-62 -141852802,E21,14064156,Structure Fire,07/04/2014,07/04/2014,07/04/2014 08:17:30 PM,07/04/2014 08:18:18 PM,07/04/2014 08:18:43 PM,07/04/2014 08:19:27 PM,07/04/2014 08:22:37 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Fire,07/04/2014 08:23:18 PM,400 Block of PRESIDIO AVE,San Francisco,94115,B04,10,4412,3,3,3,false,Alarm,1,ENGINE,5,4,2,Presidio Heights,"(37.7877326063497, -122.446815084744)",141852802-E21 -141973253,E03,14068348,Medical Incident,07/16/2014,07/16/2014,07/16/2014 07:36:59 PM,07/16/2014 07:38:11 PM,07/16/2014 07:43:57 PM,07/16/2014 07:44:49 PM,07/16/2014 07:50:23 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,No Merit,07/16/2014 07:56:30 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7769455318934, -122.416807079177)",141973253-E03 -150703049,71,15026842,Medical Incident,03/11/2015,03/11/2015,03/11/2015 06:08:28 PM,03/11/2015 06:10:04 PM,03/11/2015 06:12:05 PM,03/11/2015 06:14:20 PM,03/11/2015 06:36:19 PM,03/11/2015 07:01:30 PM,03/11/2015 07:29:49 PM,Code 2 Transport,03/11/2015 07:57:16 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",150703049-71 -141662039,E12,14057326,Medical Incident,06/15/2014,06/15/2014,06/15/2014 04:17:07 PM,06/15/2014 04:18:25 PM,06/15/2014 04:20:03 PM,06/15/2014 04:21:17 PM,06/15/2014 04:29:00 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Code 2 Transport,06/15/2014 05:13:08 PM,500 Block of MORAGA ST,San Francisco,94122,B08,22,7343,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7565171047592, -122.468471054553)",141662039-E12 -160953398,AM10,16037766,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:20:43 PM,04/04/2016 07:22:21 PM,04/04/2016 07:22:41 PM,04/04/2016 07:23:13 PM,04/04/2016 07:29:25 PM,04/04/2016 07:47:09 PM,04/04/2016 08:10:23 PM,Code 2 Transport,04/04/2016 08:22:50 PM,800 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7828439870217, -122.421651290681)",160953398-AM10 -160951587,KM13,16037610,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:01:57 PM,04/04/2016 12:04:06 PM,04/04/2016 12:05:16 PM,04/04/2016 12:08:00 PM,04/04/2016 12:20:02 PM,04/04/2016 12:45:37 PM,04/04/2016 01:24:24 PM,Code 2 Transport,04/04/2016 01:51:11 PM,0 Block of REARDON RD,San Francisco,94124,B10,17,6625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7294970477126, -122.37690786669)",160951587-KM13 -141080403,RC1,14036599,Medical Incident,04/18/2014,04/18/2014,04/18/2014 10:57:26 PM,04/18/2014 10:59:37 PM,04/18/2014 11:00:10 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Code 3 Transport,04/18/2014 11:00:50 PM,0 Block of FALLON PL,SAN FRANCISCO,94133,B01,2,1442,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Nob Hill,"(37.7977464099697, -122.413400804085)",141080403-RC1 -160961499,KM06,16037983,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:43:11 AM,04/05/2016 11:43:40 AM,04/05/2016 11:43:57 AM,04/05/2016 11:44:50 AM,04/05/2016 11:50:11 AM,04/05/2016 12:11:23 PM,04/05/2016 12:32:34 PM,Code 2 Transport,04/05/2016 01:22:25 PM,100 Block of NUEVA AVE,San Francisco,94134,B10,44,6271,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7121182087675, -122.39706939553)",160961499-KM06 -143353334,83,14118845,Medical Incident,12/01/2014,12/01/2014,12/01/2014 07:51:31 PM,12/01/2014 07:51:31 PM,12/01/2014 07:51:40 PM,12/01/2014 07:51:50 PM,12/01/2014 08:02:20 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Other,12/01/2014 08:09:31 PM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",143353334-83 -160990003,68,16039149,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:00:40 AM,04/08/2016 12:01:01 AM,04/08/2016 12:03:17 AM,04/08/2016 12:03:36 AM,04/08/2016 12:23:34 AM,04/08/2016 12:23:41 AM,04/08/2016 12:39:56 AM,Code 2 Transport,04/08/2016 01:09:35 AM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",160990003-68 -160923037,AM20,16036564,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:35:12 PM,04/01/2016 06:36:48 PM,04/01/2016 06:38:23 PM,04/01/2016 06:38:52 PM,04/01/2016 06:56:36 PM,04/01/2016 07:27:05 PM,04/01/2016 07:41:01 PM,Code 2 Transport,04/01/2016 08:25:35 PM,300 Block of FELL ST,San Francisco,94102,B02,36,3314,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7757976823178, -122.423545172225)",160923037-AM20 -150301291,T02,15011518,Medical Incident,01/30/2015,01/30/2015,01/30/2015 10:21:36 AM,01/30/2015 10:22:03 AM,01/30/2015 10:22:15 AM,01/30/2015 10:22:42 AM,01/30/2015 10:25:19 AM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Code 2 Transport,01/30/2015 10:31:44 AM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",150301291-T02 -153163949,E02,15121631,Medical Incident,11/12/2015,11/12/2015,11/12/2015 10:39:16 PM,11/12/2015 10:41:08 PM,11/12/2015 10:42:51 PM,11/12/2015 10:42:51 PM,11/12/2015 10:45:26 PM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,Code 2 Transport,11/12/2015 10:54:29 PM,700 Block of KEARNY ST,San Francisco,94111,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",153163949-E02 -160991267,KM09,16039262,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:05:26 AM,04/08/2016 11:07:04 AM,04/08/2016 11:09:12 AM,04/08/2016 11:10:45 AM,04/08/2016 11:16:54 AM,04/08/2016 11:38:20 AM,04/08/2016 11:49:20 AM,Code 2 Transport,04/08/2016 12:28:25 PM,1300 Block of PIERCE ST,San Francisco,94115,B05,5,3647,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",160991267-KM09 -152973574,AM24,15114201,Medical Incident,10/24/2015,10/24/2015,10/24/2015 09:45:57 PM,10/24/2015 09:47:51 PM,10/24/2015 09:48:05 PM,10/24/2015 09:48:43 PM,10/24/2015 09:51:08 PM,10/24/2015 10:04:17 PM,10/24/2015 10:23:03 PM,Code 2 Transport,10/24/2015 10:52:30 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",152973574-AM24 -150691434,T13,15026326,Alarms,03/10/2015,03/10/2015,03/10/2015 11:37:33 AM,03/10/2015 11:39:08 AM,03/10/2015 11:39:31 AM,03/10/2015 11:40:17 AM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Fire,03/10/2015 11:45:52 AM,1000 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.7942855985686, -122.409699641182)",150691434-T13 -142300572,E41,14079807,Medical Incident,08/18/2014,08/17/2014,08/18/2014 07:00:07 AM,08/18/2014 07:01:18 AM,08/18/2014 07:01:47 AM,08/18/2014 07:03:06 AM,08/18/2014 07:05:57 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Code 3 Transport,08/18/2014 07:31:57 AM,1400 Block of UNION ST,San Francisco,94109,B04,41,3131,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7986027828859, -122.423148602058)",142300572-E41 -151052589,RS2,15039746,Structure Fire,04/15/2015,04/15/2015,04/15/2015 04:14:50 PM,04/15/2015 04:16:57 PM,04/15/2015 04:19:38 PM,04/15/2015 04:21:28 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Fire,04/15/2015 04:22:47 PM,700 Block of PHELPS ST,San Francisco,94124,B10,25,6455,3,3,3,false,Alarm,1,RESCUE SQUAD,10,10,10,Bayview Hunters Point,"(37.7408256448127, -122.390478925971)",151052589-RS2 -160950524,82,16037525,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:00:57 AM,04/04/2016 07:02:33 AM,04/04/2016 07:02:50 AM,04/04/2016 07:03:00 AM,04/04/2016 07:24:39 AM,04/04/2016 07:24:42 AM,04/04/2016 07:41:20 AM,Code 2 Transport,04/04/2016 07:50:34 AM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.795777854883, -122.404981817889)",160950524-82 -161002176,50,16039825,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:07:16 PM,04/09/2016 04:08:11 PM,04/09/2016 04:08:38 PM,04/09/2016 04:08:45 PM,04/09/2016 04:10:52 PM,04/09/2016 04:42:31 PM,04/09/2016 05:17:15 PM,Code 2 Transport,04/09/2016 06:09:47 PM,0 Block of POLK ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7769444030522, -122.417995382094)",161002176-50 -161000787,AM06,16039662,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:11:47 AM,04/09/2016 08:13:06 AM,04/09/2016 08:13:21 AM,04/09/2016 08:13:54 AM,04/09/2016 08:20:14 AM,04/09/2016 08:32:35 AM,04/09/2016 08:57:41 AM,Code 2 Transport,04/09/2016 09:27:45 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",161000787-AM06 -142040193,E36,14070461,Medical Incident,07/23/2014,07/22/2014,07/23/2014 01:22:15 AM,07/23/2014 01:22:15 AM,07/23/2014 01:22:44 AM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Code 2 Transport,07/23/2014 01:25:23 AM,GROVE ST/HYDE ST,San Francisco,94103,B02,36,1552,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",142040193-E36 -141383935,E02,14047493,Medical Incident,05/18/2014,05/18/2014,05/18/2014 11:40:11 PM,05/18/2014 11:41:55 PM,05/18/2014 11:43:43 PM,05/18/2014 11:45:12 PM,05/18/2014 11:50:08 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Code 2 Transport,05/19/2014 12:01:09 AM,GEARY ST/POWELL ST,San Francisco,94102,B01,1,1323,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",141383935-E02 -160992727,AM12,16039400,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:18:47 PM,04/08/2016 05:19:34 PM,04/08/2016 05:19:55 PM,04/08/2016 05:20:36 PM,04/08/2016 05:27:29 PM,04/08/2016 05:44:46 PM,04/08/2016 06:06:35 PM,Code 2 Transport,04/08/2016 06:58:22 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",160992727-AM12 -160993040,88,16039421,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:29:36 PM,04/08/2016 06:30:42 PM,04/08/2016 06:30:51 PM,04/08/2016 06:31:11 PM,04/08/2016 06:55:13 PM,04/08/2016 07:21:43 PM,04/08/2016 07:27:57 PM,Code 2 Transport,04/08/2016 08:03:35 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160993040-88 -141583063,E11,14054575,Outside Fire,06/07/2014,06/07/2014,06/07/2014 08:52:40 PM,06/07/2014 08:55:36 PM,06/07/2014 08:55:42 PM,06/07/2014 08:57:31 PM,06/07/2014 09:00:37 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 09:05:35 PM,3000 Block of 22ND ST,San Francisco,94110,B06,7,5473,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7556120190745, -122.414925208812)",141583063-E11 -151500630,64,15056996,Medical Incident,05/30/2015,05/29/2015,05/30/2015 07:03:14 AM,05/30/2015 07:03:14 AM,05/30/2015 07:03:39 AM,05/30/2015 07:03:47 AM,05/30/2015 07:09:11 AM,05/30/2015 07:18:29 AM,05/30/2015 07:53:43 AM,Code 2 Transport,05/30/2015 08:02:29 AM,TENNESSEE ST/CESAR CHAVEZ ST,San Francisco,94124,B10,25,2641,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7502059759559, -122.388507729538)",151500630-64 -150731654,FD00A,15027898,,03/14/2015,03/14/2015,03/14/2015 12:02:01 PM,03/14/2015 12:02:55 PM,03/14/2015 01:36:37 PM,03/14/2015 01:36:37 PM,03/14/2015 01:36:37 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Code 2 Transport,03/14/2015 01:36:52 PM,1000 Block of CAYUGA AVE,San Francisco,94112,B09,15,8332,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,3,9,11,Outer Mission,"(37.7218172447591, -122.439998899049)",150731654-FD00A -141583194,E41,14054590,Structure Fire,06/07/2014,06/07/2014,06/07/2014 09:37:43 PM,06/07/2014 09:39:24 PM,06/07/2014 09:40:51 PM,06/07/2014 09:42:07 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 09:46:26 PM,600 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,false,Alarm,1,ENGINE,6,1,6,Tenderloin,"(37.7865705542086, -122.413973061638)",141583194-E41 -160960925,52,16037932,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:17:03 AM,04/05/2016 09:17:03 AM,04/05/2016 09:17:20 AM,04/05/2016 09:21:09 AM,04/05/2016 09:24:33 AM,04/05/2016 09:35:29 AM,04/05/2016 10:04:15 AM,Code 2 Transport,04/05/2016 10:25:12 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160960925-52 -142680257,87,14093762,Medical Incident,09/25/2014,09/24/2014,09/25/2014 02:20:32 AM,09/25/2014 02:23:01 AM,09/25/2014 02:23:23 AM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/25/2014 02:24:26 AM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",142680257-87 -151003681,B01,15038035,Medical Incident,04/10/2015,04/10/2015,04/10/2015 10:13:35 PM,04/10/2015 10:13:54 PM,04/10/2015 10:14:36 PM,04/10/2015 10:15:48 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Code 3 Transport,04/10/2015 10:17:00 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,E,E,3,false,Potentially Life-Threatening,1,CHIEF,7,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",151003681-B01 -143602856,T06,14128925,Medical Incident,12/26/2014,12/26/2014,12/26/2014 08:42:55 PM,12/26/2014 08:44:17 PM,12/26/2014 08:44:25 PM,12/26/2014 08:45:13 PM,12/26/2014 08:47:21 PM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Code 2 Transport,12/26/2014 08:51:10 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",143602856-T06 -152533430,T12,15096862,Alarms,09/10/2015,09/10/2015,09/10/2015 07:32:21 PM,09/10/2015 07:34:57 PM,09/10/2015 07:35:07 PM,09/10/2015 07:37:03 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Fire,09/10/2015 07:57:28 PM,1300 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,false,Alarm,1,TRUCK,3,5,5,Haight Ashbury,"(37.7703725071371, -122.444508010123)",152533430-T12 -143491354,B06,14124593,Structure Fire,12/15/2014,12/15/2014,12/15/2014 11:42:35 AM,12/15/2014 11:45:20 AM,12/15/2014 11:45:41 AM,12/15/2014 11:47:16 AM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 11:52:17 AM,0 Block of GRIJALVA DR,San Francisco,94132,B08,19,8424,3,3,3,false,Alarm,1,CHIEF,4,8,7,Lakeshore,"(37.7169631286319, -122.478704029229)",143491354-B06 -153171586,63,15121805,Medical Incident,11/13/2015,11/13/2015,11/13/2015 11:14:46 AM,11/13/2015 11:14:46 AM,11/13/2015 11:15:40 AM,11/13/2015 11:16:26 AM,11/13/2015 11:20:37 AM,11/13/2015 11:53:44 AM,11/13/2015 12:10:48 PM,Code 2 Transport,11/13/2015 12:46:32 PM,MOSCOW ST/GENEVA AV,San Francisco,94134,B09,43,6161,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7131431588266, -122.433706822023)",153171586-63 -143301000,87,14116944,Medical Incident,11/26/2014,11/26/2014,11/26/2014 09:37:30 AM,11/26/2014 09:39:14 AM,11/26/2014 09:39:36 AM,11/26/2014 09:40:17 AM,11/26/2014 09:45:50 AM,11/26/2014 10:11:12 AM,11/26/2014 10:23:01 AM,Code 2 Transport,11/26/2014 11:12:09 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",143301000-87 -143583107,AM16,14128273,Medical Incident,12/24/2014,12/24/2014,12/24/2014 10:12:00 PM,12/24/2014 10:12:00 PM,12/24/2014 10:12:35 PM,12/24/2014 10:13:07 PM,12/24/2014 10:18:42 PM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,No Merit,12/24/2014 10:22:54 PM,CHESTNUT ST/DIVISADERO ST,San Francisco,94123,B04,16,4211,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7999779796302, -122.442846090742)",143583107-AM16 -152291758,E24,15087382,Medical Incident,08/17/2015,08/17/2015,08/17/2015 12:25:41 PM,08/17/2015 12:26:17 PM,08/17/2015 12:26:39 PM,08/17/2015 12:27:53 PM,08/17/2015 12:29:07 PM,04/25/2016 01:08:52 PM,04/25/2016 01:08:52 PM,Code 2 Transport,08/17/2015 12:51:04 PM,600 Block of DOUGLASS ST,San Francisco,94114,B06,24,5516,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",152291758-E24 -150802347,FD00A,15030712,,03/21/2015,03/21/2015,03/21/2015 04:35:22 PM,03/21/2015 04:38:55 PM,03/21/2015 05:36:38 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Patient Declined Transport,03/21/2015 05:36:48 PM,20TH ST/MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,false,Potentially Life-Threatening,1,SUPPORT,4,6,9,Mission,"(37.7586325666591, -122.419052607701)",150802347-FD00A -151323189,E36,15050228,Traffic Collision,05/12/2015,05/12/2015,05/12/2015 08:18:31 PM,05/12/2015 08:18:57 PM,05/12/2015 08:23:30 PM,05/12/2015 08:23:30 PM,05/12/2015 08:25:50 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Code 3 Transport,05/12/2015 08:39:06 PM,FOLSOM ST/6TH ST,San Francisco,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7785051047871, -122.405615267864)",151323189-E36 -141090207,E07,14036789,Medical Incident,04/19/2014,04/19/2014,04/19/2014 02:06:16 PM,04/19/2014 02:06:39 PM,04/19/2014 02:06:53 PM,04/19/2014 02:07:59 PM,04/19/2014 02:10:08 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Code 2 Transport,04/19/2014 02:34:14 PM,600 Block of VALENCIA ST,SAN FRANCISCO,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",141090207-E07 -151282515,60,15048626,Medical Incident,05/08/2015,05/08/2015,05/08/2015 04:24:23 PM,05/08/2015 04:24:23 PM,05/08/2015 04:24:49 PM,05/08/2015 04:25:15 PM,05/08/2015 04:32:45 PM,05/08/2015 04:55:52 PM,05/08/2015 05:09:16 PM,Code 2 Transport,05/08/2015 05:49:16 PM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",151282515-60 -160932107,67,16036905,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:54:00 PM,04/02/2016 02:54:39 PM,04/02/2016 02:58:51 PM,04/02/2016 02:59:05 PM,04/02/2016 03:10:36 PM,04/02/2016 03:26:40 PM,04/02/2016 03:46:34 PM,Code 2 Transport,04/02/2016 04:04:21 PM,0 Block of DANIEL BURNHAM CT,San Francisco,94109,B04,3,3161,2,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7869107185707, -122.422525749968)",160932107-67 -142422044,T19,14084263,Medical Incident,08/30/2014,08/30/2014,08/30/2014 03:16:10 PM,08/30/2014 03:16:25 PM,08/30/2014 03:17:16 PM,08/30/2014 03:19:00 PM,08/30/2014 03:21:46 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 3 Transport,08/30/2014 03:30:19 PM,700 Block of JUNIPERO SERRA BLVD,San Francisco,94127,B09,19,8727,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7242258644878, -122.472362015086)",142422044-T19 -160972451,71,16038468,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:36:01 PM,04/06/2016 02:36:17 PM,04/06/2016 02:36:34 PM,04/06/2016 02:36:46 PM,04/06/2016 02:39:24 PM,04/06/2016 03:00:53 PM,04/06/2016 03:44:34 PM,Code 2 Transport,04/06/2016 03:49:41 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160972451-71 -151342584,79,15050932,Medical Incident,05/14/2015,05/14/2015,05/14/2015 04:25:44 PM,05/14/2015 04:26:23 PM,05/14/2015 04:26:48 PM,05/14/2015 04:27:00 PM,05/14/2015 04:30:55 PM,05/14/2015 04:43:13 PM,05/14/2015 05:03:15 PM,Code 2 Transport,05/14/2015 05:39:57 PM,3100 Block of 22ND ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.755524488206, -122.418208517373)",151342584-79 -143340542,82,14118268,Medical Incident,11/30/2014,11/29/2014,11/30/2014 04:09:49 AM,11/30/2014 04:11:54 AM,11/30/2014 04:29:52 AM,11/30/2014 04:29:52 AM,11/30/2014 04:41:12 AM,11/30/2014 04:55:53 AM,11/30/2014 05:06:58 AM,Code 2 Transport,11/30/2014 05:33:33 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",143340542-82 -141341357,KM04,14045679,Medical Incident,05/14/2014,05/14/2014,05/14/2014 10:45:05 AM,05/14/2014 10:47:17 AM,05/14/2014 10:49:35 AM,05/14/2014 10:50:03 AM,05/14/2014 10:57:55 AM,05/14/2014 11:22:26 AM,05/14/2014 11:30:19 AM,Code 2 Transport,05/14/2014 11:58:02 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141341357-KM04 -150562036,B04,15021447,Alarms,02/25/2015,02/25/2015,02/25/2015 01:58:29 PM,02/25/2015 01:59:30 PM,02/25/2015 02:00:17 PM,02/25/2015 02:02:10 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,No Merit,02/25/2015 02:07:00 PM,1500 Block of 4TH ST,San Francisco,94158,B03,8,2264,3,3,3,false,Alarm,1,CHIEF,2,3,6,Mission Bay,"(37.7691939413316, -122.390956407633)",150562036-B04 -152550427,T06,15097390,Structure Fire,09/12/2015,09/11/2015,09/12/2015 03:38:31 AM,09/12/2015 03:38:31 AM,09/12/2015 03:38:46 AM,09/12/2015 03:41:04 AM,09/12/2015 03:43:44 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Fire,09/12/2015 03:57:25 AM,400 Block of CHURCH ST,San Francisco,94114,B02,6,523,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",152550427-T06 -160952872,88,16037719,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:10:07 PM,04/04/2016 05:10:07 PM,04/04/2016 05:11:03 PM,04/04/2016 05:11:26 PM,04/04/2016 05:25:48 PM,04/04/2016 05:43:33 PM,04/04/2016 06:05:33 PM,Code 2 Transport,04/04/2016 06:43:51 PM,BAYSHORE BL/PAUL AV,San Francisco,94124,B10,44,6542,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7236162096696, -122.40078474994)",160952872-88 -160933839,KM07,16037075,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:00:53 PM,04/02/2016 11:01:48 PM,04/02/2016 11:02:01 PM,04/02/2016 11:03:00 PM,04/02/2016 11:07:07 PM,04/02/2016 11:18:25 PM,04/02/2016 11:33:25 PM,Code 2 Transport,04/03/2016 12:12:39 AM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.769082767924, -122.413353472663)",160933839-KM07 -142870404,74,14101031,Structure Fire,10/14/2014,10/13/2014,10/14/2014 04:50:21 AM,10/14/2014 04:54:39 AM,10/14/2014 04:55:26 AM,10/14/2014 04:55:38 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Fire,10/14/2014 05:01:27 AM,2500 Block of HARRISON ST,San Francisco,94110,B06,7,545,3,3,3,true,Alarm,1,MEDIC,9,6,9,Mission,"(37.7566269297106, -122.412341955639)",142870404-74 -151410787,RS1,15053489,Medical Incident,05/21/2015,05/21/2015,05/21/2015 08:06:39 AM,05/21/2015 08:07:52 AM,05/21/2015 08:08:46 AM,05/21/2015 08:12:34 AM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Code 2 Transport,05/21/2015 08:12:49 AM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2158,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7881178022274, -122.401226932683)",151410787-RS1 -151512558,E21,15057567,Alarms,05/31/2015,05/31/2015,05/31/2015 05:50:41 PM,05/31/2015 05:51:43 PM,05/31/2015 05:53:12 PM,05/31/2015 05:53:34 PM,05/31/2015 05:56:11 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Fire,05/31/2015 06:05:16 PM,800 Block of BRODERICK ST,San Francisco,94115,B05,21,4242,3,3,3,false,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",151512558-E21 -160982568,67,16038998,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:46:23 PM,04/07/2016 03:47:52 PM,04/07/2016 03:55:26 PM,04/07/2016 03:55:34 PM,04/07/2016 04:08:43 PM,04/07/2016 04:56:36 PM,04/07/2016 04:41:43 PM,Code 2 Transport,04/07/2016 05:25:12 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",160982568-67 -160940389,64,16037131,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:16:19 AM,04/03/2016 02:17:44 AM,04/03/2016 02:21:23 AM,04/03/2016 02:21:49 AM,04/03/2016 02:25:08 AM,04/03/2016 02:41:47 AM,04/03/2016 03:04:29 AM,Code 2 Transport,04/03/2016 03:48:56 AM,WEBSTER ST/LOMBARD ST,San Francisco,94123,B04,16,3461,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8000515477468, -122.434404699853)",160940389-64 -141502010,E08,14051581,Medical Incident,05/30/2014,05/30/2014,05/30/2014 03:32:07 PM,05/30/2014 03:32:59 PM,05/30/2014 03:33:57 PM,05/30/2014 03:35:52 PM,05/30/2014 03:37:29 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Code 2 Transport,05/30/2014 03:55:19 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",141502010-E08 -153211818,E32,15123435,Administrative,11/17/2015,11/17/2015,11/17/2015 12:43:32 PM,11/17/2015 12:43:37 PM,11/17/2015 12:44:17 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Cancelled,11/17/2015 12:46:20 PM,3800 Block of 26TH ST,San Francisco,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",153211818-E32 -152913402,E36,15111975,Medical Incident,10/18/2015,10/18/2015,10/18/2015 09:35:22 PM,10/18/2015 09:37:55 PM,10/18/2015 09:38:30 PM,10/18/2015 09:40:26 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Code 2 Transport,10/18/2015 09:50:05 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",152913402-E36 -151712822,E07,15065446,Structure Fire,06/20/2015,06/20/2015,06/20/2015 06:58:01 PM,06/20/2015 06:58:16 PM,06/20/2015 07:02:03 PM,06/20/2015 07:03:25 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Fire,06/20/2015 07:09:51 PM,700 Block of CASTRO ST,San Francisco,94114,B06,24,5462,3,3,3,true,Fire,1,ENGINE,12,6,8,Castro/Upper Market,"(37.7572825907591, -122.434728567346)",151712822-E07 -143621689,KM09,14129528,Medical Incident,12/28/2014,12/28/2014,12/28/2014 01:47:53 PM,12/28/2014 01:48:28 PM,12/28/2014 01:48:52 PM,12/28/2014 01:49:56 PM,12/28/2014 01:57:37 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Patient Declined Transport,12/28/2014 02:48:31 PM,2800 Block of JONES ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8075434625252, -122.41742346242)",143621689-KM09 -150121508,E13,15004713,Outside Fire,01/12/2015,01/12/2015,01/12/2015 11:57:38 AM,01/12/2015 11:57:38 AM,01/12/2015 11:58:01 AM,01/12/2015 12:01:48 PM,01/12/2015 12:01:48 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Fire,01/12/2015 12:04:31 PM,2000 Block of KEARNY ST,San Francisco,94133,B01,28,937,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",150121508-E13 -143601616,E03,14128799,Medical Incident,12/26/2014,12/26/2014,12/26/2014 02:27:20 PM,12/26/2014 02:28:17 PM,12/26/2014 02:29:17 PM,12/26/2014 02:31:19 PM,12/26/2014 02:33:37 PM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Code 2 Transport,12/26/2014 02:45:37 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",143601616-E03 -143650232,74,14130503,Medical Incident,12/31/2014,12/30/2014,12/31/2014 02:18:40 AM,12/31/2014 02:23:31 AM,12/31/2014 02:24:08 AM,12/31/2014 02:24:18 AM,12/31/2014 02:35:40 AM,12/31/2014 02:49:50 AM,12/31/2014 02:59:38 AM,Code 2 Transport,12/31/2014 03:27:36 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",143650232-74 -160974084,57,16038657,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:34:02 PM,04/06/2016 08:34:41 PM,04/06/2016 08:34:57 PM,04/06/2016 08:35:09 PM,04/06/2016 08:40:52 PM,04/06/2016 09:04:32 PM,04/06/2016 09:22:21 PM,Code 2 Transport,04/06/2016 09:50:36 PM,0 Block of MUSEUM WAY,San Francisco,94114,B05,6,5175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7645174149932, -122.440219513694)",160974084-57 -160993405,53,16039455,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:12:54 PM,04/08/2016 08:12:54 PM,04/08/2016 08:13:29 PM,04/08/2016 08:13:38 PM,04/08/2016 08:25:57 PM,04/08/2016 08:40:42 PM,04/08/2016 09:04:04 PM,Code 3 Transport,04/08/2016 09:46:26 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160993405-53 -152110848,B01,15080270,Structure Fire,07/30/2015,07/30/2015,07/30/2015 08:35:21 AM,07/30/2015 08:36:45 AM,07/30/2015 08:37:14 AM,07/30/2015 08:39:10 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 08:43:37 AM,400 Block of TERRY A FRANCOIS BL,San Francisco,94158,B03,8,2231,3,3,3,false,Alarm,1,CHIEF,6,3,6,Mission Bay,"(37.7717101258274, -122.386797176708)",152110848-B01 -142763042,83,14097057,Medical Incident,10/03/2014,10/03/2014,10/03/2014 06:01:03 PM,10/03/2014 06:02:47 PM,10/03/2014 06:03:02 PM,10/03/2014 06:03:17 PM,10/03/2014 06:09:24 PM,10/03/2014 06:18:05 PM,10/03/2014 06:30:36 PM,Code 2 Transport,10/03/2014 06:38:52 PM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",142763042-83 -152020325,AM24,15076841,Medical Incident,07/21/2015,07/20/2015,07/21/2015 03:40:24 AM,07/21/2015 03:41:07 AM,07/21/2015 03:41:22 AM,07/21/2015 03:43:06 AM,07/21/2015 03:45:10 AM,07/21/2015 03:57:38 AM,07/21/2015 04:11:25 AM,Code 2 Transport,07/21/2015 05:03:08 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",152020325-AM24 -142681046,83,14093857,Medical Incident,09/25/2014,09/25/2014,09/25/2014 09:54:21 AM,09/25/2014 09:57:49 AM,09/25/2014 09:59:43 AM,09/25/2014 09:59:49 AM,09/25/2014 10:20:05 AM,09/25/2014 10:56:18 AM,09/25/2014 11:20:24 AM,Code 2 Transport,09/25/2014 11:44:20 AM,1400 Block of QUESADA AVE,San Francisco,94124,B10,17,6571,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7307439718873, -122.386750852742)",142681046-83 -153253645,85,15125292,Medical Incident,11/21/2015,11/21/2015,11/21/2015 09:15:20 PM,11/21/2015 09:15:20 PM,11/21/2015 09:15:32 PM,11/21/2015 09:15:45 PM,11/21/2015 09:21:22 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Patient Declined Transport,11/21/2015 10:27:19 PM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",153253645-85 -160960364,KM03,16037881,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:59:57 AM,04/05/2016 05:02:42 AM,04/05/2016 05:02:51 AM,04/05/2016 05:03:16 AM,04/05/2016 05:15:48 AM,04/05/2016 05:24:14 AM,04/05/2016 06:00:49 AM,Code 2 Transport,04/05/2016 06:32:40 AM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7120147227325, -122.445301042421)",160960364-KM03 -150841808,FD00A,15032042,,03/25/2015,03/25/2015,03/25/2015 12:42:52 PM,03/25/2015 12:44:22 PM,03/25/2015 01:52:41 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,04/25/2016 01:11:32 PM,Other,03/25/2015 01:53:03 PM,BOSWORTH ST/DIAMOND ST,San Francisco,94131,B06,26,8146,3,3,3,false,Non Life-threatening,1,SUPPORT,4,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",150841808-FD00A -141981325,58,14068525,Structure Fire,07/17/2014,07/17/2014,07/17/2014 11:19:19 AM,07/17/2014 11:19:51 AM,07/17/2014 11:20:06 AM,07/17/2014 11:20:19 AM,07/17/2014 11:31:34 AM,07/17/2014 12:42:22 PM,07/17/2014 01:10:02 PM,Code 2 Transport,07/17/2014 02:03:09 PM,1000 Block of CAPITOL AVE,San Francisco,94112,B09,15,8464,3,3,3,true,Fire,1,MEDIC,10,9,11,Oceanview/Merced/Ingleside,"(37.7209309503943, -122.459132175362)",141981325-58 -151170386,64,15044096,Medical Incident,04/27/2015,04/26/2015,04/27/2015 05:06:30 AM,04/27/2015 05:08:11 AM,04/27/2015 05:17:23 AM,04/27/2015 05:17:50 AM,04/27/2015 05:25:32 AM,04/27/2015 05:33:55 AM,04/27/2015 06:03:19 AM,Code 2 Transport,04/27/2015 06:21:24 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",151170386-64 -152823662,B09,15108422,Alarms,10/09/2015,10/09/2015,10/09/2015 08:54:54 PM,10/09/2015 08:56:12 PM,10/09/2015 08:59:01 PM,10/09/2015 08:59:55 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Fire,10/09/2015 09:04:36 PM,200 Block of VIENNA ST,San Francisco,94112,B09,43,6142,3,3,3,false,Alarm,1,CHIEF,2,9,11,Excelsior,"(37.7243430998879, -122.427433355933)",152823662-B09 -160930204,75,16036687,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:17:34 AM,04/02/2016 01:17:34 AM,04/02/2016 01:23:31 AM,04/02/2016 01:25:24 AM,04/02/2016 01:33:56 AM,04/02/2016 01:59:34 AM,04/02/2016 02:13:40 AM,Code 2 Transport,04/02/2016 03:07:49 AM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",160930204-75 -152050741,B03,15077991,Structure Fire,07/24/2015,07/24/2015,07/24/2015 08:08:50 AM,07/24/2015 08:10:04 AM,07/24/2015 08:10:27 AM,07/24/2015 08:12:05 AM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Fire,07/24/2015 08:19:16 AM,0 Block of GRANT AVE,San Francisco,94108,B01,1,1321,3,3,3,false,Alarm,1,CHIEF,10,1,3,Financial District/South Beach,"(37.7871853698326, -122.404995219077)",152050741-B03 -150572001,KM04,15021809,Medical Incident,02/26/2015,02/26/2015,02/26/2015 02:05:13 PM,02/26/2015 02:07:49 PM,02/26/2015 02:08:31 PM,02/26/2015 02:09:36 PM,02/26/2015 02:15:03 PM,02/26/2015 02:37:54 PM,02/26/2015 03:05:45 PM,Code 2 Transport,02/26/2015 04:06:44 PM,POST ST/TAYLOR ST,San Francisco,94102,B01,3,1451,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7878721676702, -122.411699233294)",150572001-KM04 -160980921,67,16038817,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:33:16 AM,04/07/2016 08:33:16 AM,04/07/2016 08:33:53 AM,04/07/2016 08:34:03 AM,04/07/2016 08:39:21 AM,04/07/2016 09:17:10 AM,04/07/2016 09:30:14 AM,Code 2 Transport,04/07/2016 10:07:34 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160980921-67 -150022042,AM08,15000766,Medical Incident,01/02/2015,01/02/2015,01/02/2015 03:57:44 PM,01/02/2015 03:58:29 PM,01/02/2015 04:00:02 PM,01/02/2015 04:01:18 PM,01/02/2015 04:10:29 PM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Medical Examiner,01/02/2015 04:12:56 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",150022042-AM08 -151630951,E03,15062210,Structure Fire,06/12/2015,06/12/2015,06/12/2015 08:59:27 AM,06/12/2015 08:59:27 AM,06/12/2015 09:07:50 AM,06/12/2015 09:09:32 AM,06/12/2015 09:11:17 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/12/2015 09:12:07 AM,OFARRELL ST/TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,1,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",151630951-E03 -142440671,E03,14084929,Medical Incident,09/01/2014,08/31/2014,09/01/2014 06:49:37 AM,09/01/2014 06:49:37 AM,09/01/2014 06:50:30 AM,09/01/2014 06:50:56 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Other,09/01/2014 06:53:16 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",142440671-E03 -153050410,53,15116945,Medical Incident,11/01/2015,10/31/2015,11/01/2015 01:30:44 AM,11/01/2015 01:31:52 AM,11/01/2015 01:32:11 AM,11/01/2015 01:32:21 AM,11/01/2015 01:50:20 AM,11/01/2015 01:00:30 AM,11/01/2015 01:00:30 AM,Code 2 Transport,11/01/2015 01:43:31 AM,3600 Block of WEBSTER ST,San Francisco,94123,B04,16,3455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8042813823377, -122.435331634961)",153050410-53 -141450732,E02,14049697,Traffic Collision,05/25/2014,05/24/2014,05/25/2014 07:18:14 AM,05/25/2014 07:18:14 AM,05/25/2014 07:18:36 AM,05/25/2014 07:20:16 AM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Other,05/25/2014 07:40:43 AM,STOCKTON ST/FILBERT ST,San Francisco,94133,B01,28,1335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,1,3,North Beach,"(37.8013706557311, -122.409369119363)",141450732-E02 -152903621,E25,15111583,Fuel Spill,10/17/2015,10/17/2015,10/17/2015 09:31:16 PM,10/17/2015 09:32:18 PM,10/17/2015 09:32:34 PM,10/17/2015 09:34:19 PM,10/17/2015 09:36:10 PM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Fire,10/17/2015 09:42:56 PM,2800 Block of 3RD ST,San Francisco,94107,B10,25,2611,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7534661505978, -122.387955478164)",152903621-E25 -142262063,E03,14078515,Medical Incident,08/14/2014,08/14/2014,08/14/2014 02:48:07 PM,08/14/2014 02:48:27 PM,08/14/2014 02:50:37 PM,08/14/2014 02:50:37 PM,08/14/2014 02:52:59 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Code 2 Transport,08/14/2014 02:56:17 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",142262063-E03 -151260886,E23,15047676,Medical Incident,05/06/2015,05/06/2015,05/06/2015 08:25:44 AM,05/06/2015 08:30:20 AM,05/06/2015 08:31:05 AM,05/06/2015 08:32:44 AM,05/06/2015 08:39:53 AM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 2 Transport,05/06/2015 08:57:28 AM,TARAVAL ST/GREAT HY,San Francisco,94116,B08,23,7727,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7416730182637, -122.506865451052)",151260886-E23 -142070486,E29,14071592,Medical Incident,07/26/2014,07/25/2014,07/26/2014 03:05:30 AM,07/26/2014 03:07:09 AM,07/26/2014 03:07:58 AM,07/26/2014 03:10:27 AM,07/26/2014 03:20:30 AM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Code 2 Transport,07/26/2014 03:33:44 AM,700 Block of VERMONT ST,San Francisco,94107,B10,29,2512,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7602007427273, -122.404003567536)",142070486-E29 -151752799,E05,15066801,Medical Incident,06/24/2015,06/24/2015,06/24/2015 05:47:25 PM,06/24/2015 05:48:14 PM,06/24/2015 05:48:39 PM,06/24/2015 05:49:33 PM,06/24/2015 05:52:52 PM,04/25/2016 01:09:50 PM,04/25/2016 01:09:50 PM,Code 2 Transport,06/24/2015 05:54:25 PM,100 Block of CHURCH ST,San Francisco,94114,B02,6,5213,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7681979747465, -122.429080297019)",151752799-E05 -150942442,85,15035801,Medical Incident,04/04/2015,04/04/2015,04/04/2015 04:29:12 PM,04/04/2015 04:31:08 PM,04/04/2015 04:33:11 PM,04/04/2015 04:33:26 PM,04/04/2015 04:46:09 PM,04/04/2015 05:03:28 PM,04/04/2015 05:18:32 PM,Code 2 Transport,04/04/2015 05:38:23 PM,100 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8731,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7311387135191, -122.473787299214)",150942442-85 -141322842,T03,14045043,Medical Incident,05/12/2014,05/12/2014,05/12/2014 07:00:21 PM,05/12/2014 07:00:57 PM,05/12/2014 07:03:32 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/12/2014 07:04:56 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",141322842-T03 -160961287,57,16037964,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:47:10 AM,04/05/2016 10:47:10 AM,04/05/2016 10:47:48 AM,04/05/2016 10:47:57 AM,04/05/2016 10:59:58 AM,04/05/2016 11:26:10 AM,04/05/2016 11:53:58 AM,Code 2 Transport,04/05/2016 12:49:22 PM,100 Block of LELAND AVE,San Francisco,94134,B09,44,6256,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",160961287-57 -152012850,65,15076706,Traffic Collision,07/20/2015,07/20/2015,07/20/2015 05:24:59 PM,07/20/2015 05:25:22 PM,07/20/2015 05:29:13 PM,07/20/2015 05:29:24 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Code 2 Transport,07/20/2015 05:32:16 PM,600 Block of BAKER ST,San Francisco,94117,B05,21,4254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,5,5,Lone Mountain/USF,"(37.7768954492269, -122.44165158276)",152012850-65 -151301141,E21,15049290,Alarms,05/10/2015,05/10/2015,05/10/2015 10:49:43 AM,05/10/2015 10:51:23 AM,05/10/2015 10:51:39 AM,05/10/2015 10:53:32 AM,05/10/2015 10:56:03 AM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Fire,05/10/2015 11:28:05 AM,600 Block of STEINER ST,San Francisco,94117,B05,21,3631,3,3,3,false,Alarm,1,ENGINE,2,5,5,Hayes Valley,"(37.7751510634662, -122.432804075352)",151301141-E21 -160993666,62,16039483,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:33:13 PM,04/08/2016 09:34:06 PM,04/08/2016 09:40:21 PM,04/08/2016 09:41:09 PM,04/08/2016 09:49:53 PM,04/08/2016 10:24:56 PM,04/08/2016 10:50:58 PM,Code 2 Transport,04/08/2016 11:13:16 PM,1600 Block of GREAT HY,San Francisco,94122,B08,23,7724,2,3,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7553466896794, -122.508687726545)",160993666-62 -141060018,E08,14035614,Medical Incident,04/16/2014,04/15/2014,04/16/2014 01:20:30 AM,04/16/2014 01:23:08 AM,04/16/2014 01:23:32 AM,04/16/2014 01:24:07 AM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,Code 2 Transport,04/16/2014 01:32:14 AM,700 Block of 4TH ST,SAN FRANCISCO,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",141060018-E08 -161003344,55,16039962,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:06:51 PM,04/09/2016 10:07:37 PM,04/09/2016 10:08:23 PM,04/09/2016 10:08:35 PM,04/09/2016 10:12:13 PM,04/09/2016 10:30:13 PM,04/09/2016 10:44:24 PM,Code 2 Transport,04/09/2016 11:15:23 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",161003344-55 -151052318,RC1,15039728,Traffic Collision,04/15/2015,04/15/2015,04/15/2015 03:12:03 PM,04/15/2015 03:13:04 PM,04/15/2015 03:16:23 PM,04/15/2015 03:16:23 PM,04/15/2015 03:17:37 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Code 2 Transport,04/15/2015 04:01:51 PM,JACKSON ST/VAN NESS AV,San Francisco,94109,B04,41,3153,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,3,Russian Hill,"(37.7939350051074, -122.423048803014)",151052318-RC1 -143410202,68,14120995,Medical Incident,12/07/2014,12/06/2014,12/07/2014 01:09:14 AM,12/07/2014 01:11:38 AM,12/07/2014 01:17:53 AM,12/07/2014 01:18:12 AM,12/07/2014 01:25:49 AM,12/07/2014 01:41:36 AM,12/07/2014 01:48:48 AM,Code 2 Transport,12/07/2014 02:13:35 AM,2000 Block of OFARRELL ST,San Francisco,94115,B04,5,413,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.782664870999, -122.438053867276)",143410202-68 -151340981,E36,15050783,Medical Incident,05/14/2015,05/14/2015,05/14/2015 09:14:35 AM,05/14/2015 09:16:50 AM,05/14/2015 09:17:43 AM,05/14/2015 09:18:28 AM,05/14/2015 09:23:06 AM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,Code 2 Transport,05/14/2015 09:35:42 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",151340981-E36 -150811722,E35,15031037,Citizen Assist / Service Call,03/22/2015,03/22/2015,03/22/2015 01:17:38 PM,03/22/2015 01:18:16 PM,03/22/2015 01:18:32 PM,03/22/2015 01:19:55 PM,03/22/2015 01:22:36 PM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,Fire,03/22/2015 01:25:14 PM,MISSION ST/FREMONT ST,San Francisco,94105,B03,35,2126,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.790461066593, -122.396689696588)",150811722-E35 -151560010,64,15059344,Medical Incident,06/05/2015,06/04/2015,06/05/2015 12:05:20 AM,06/05/2015 12:05:20 AM,06/05/2015 12:05:58 AM,06/05/2015 12:06:12 AM,06/05/2015 12:08:23 AM,06/05/2015 12:17:18 AM,06/05/2015 12:44:22 AM,Code 2 Transport,06/05/2015 12:56:39 AM,6TH ST/JESSIE ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",151560010-64 -152981890,AM16,15114440,Medical Incident,10/25/2015,10/25/2015,10/25/2015 02:19:18 PM,10/25/2015 02:20:50 PM,10/25/2015 02:21:55 PM,10/25/2015 02:23:13 PM,10/25/2015 02:26:27 PM,10/25/2015 02:32:49 PM,10/25/2015 02:50:44 PM,Code 2 Transport,10/25/2015 03:17:40 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",152981890-AM16 -143060577,T05,14108198,Alarms,11/02/2014,11/01/2014,11/02/2014 03:29:16 AM,11/02/2014 03:30:39 AM,11/02/2014 03:32:25 AM,11/02/2014 03:34:25 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Fire,11/02/2014 03:38:26 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Alarm,1,TRUCK,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",143060577-T05 -160921584,88,16036429,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:31:12 PM,04/01/2016 12:33:23 PM,04/01/2016 12:33:37 PM,04/01/2016 12:33:48 PM,04/01/2016 12:36:00 PM,04/01/2016 12:51:38 PM,04/01/2016 01:04:21 PM,Code 2 Transport,04/01/2016 01:55:11 PM,1100 Block of LAGUNA ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7818107490445, -122.427415796369)",160921584-88 -150863064,77,15032946,Medical Incident,03/27/2015,03/27/2015,03/27/2015 06:36:15 PM,03/27/2015 06:36:42 PM,03/27/2015 06:37:14 PM,03/27/2015 06:37:28 PM,03/27/2015 06:42:47 PM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Other,03/27/2015 07:07:46 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",150863064-77 -141733374,77,14059838,Medical Incident,06/22/2014,06/22/2014,06/22/2014 11:08:31 PM,06/22/2014 11:08:31 PM,06/22/2014 11:09:28 PM,06/22/2014 11:10:28 PM,06/22/2014 11:21:19 PM,06/22/2014 11:27:30 PM,06/22/2014 11:38:45 PM,Code 2 Transport,06/22/2014 11:53:38 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",141733374-77 -150661740,55,15025232,Medical Incident,03/07/2015,03/07/2015,03/07/2015 12:53:19 PM,03/07/2015 12:54:56 PM,03/07/2015 12:57:30 PM,03/07/2015 12:58:09 PM,03/07/2015 01:23:10 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Against Medical Advice,03/07/2015 01:43:44 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",150661740-55 -152421516,E05,15092281,Medical Incident,08/30/2015,08/30/2015,08/30/2015 11:43:28 AM,08/30/2015 11:44:36 AM,08/30/2015 11:45:09 AM,08/30/2015 11:46:14 AM,08/30/2015 11:47:55 AM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Code 2 Transport,08/30/2015 11:57:30 AM,ELLIS ST/PIERCE ST,San Francisco,94115,B05,5,3644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7819403246016, -122.435813741095)",152421516-E05 -143390048,66,14120191,Medical Incident,12/05/2014,12/04/2014,12/05/2014 12:19:29 AM,12/05/2014 12:19:29 AM,12/05/2014 12:19:56 AM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 12:20:32 AM,24TH ST/POTRERO AV,San Francisco,94110,B10,9,2562,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Mission,"(37.7530040313925, -122.406336240587)",143390048-66 -143292588,84,14116732,Traffic Collision,11/25/2014,11/25/2014,11/25/2014 04:23:21 PM,11/25/2014 04:23:46 PM,11/25/2014 04:27:56 PM,11/25/2014 04:27:56 PM,11/25/2014 04:33:29 PM,11/25/2014 04:45:11 PM,11/25/2014 04:56:26 PM,Code 2 Transport,11/25/2014 05:32:52 PM,4TH ST/BRYANT ST,San Francisco,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7795669099357, -122.398059940086)",143292588-84 -150183470,AM20,15007298,Medical Incident,01/18/2015,01/18/2015,01/18/2015 11:02:59 PM,01/18/2015 11:02:59 PM,01/18/2015 11:03:31 PM,01/18/2015 11:04:08 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,Cancelled,01/18/2015 11:05:42 PM,200 Block of CLAY ST,San Francisco,94111,B01,13,1133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7951839313126, -122.398551121673)",150183470-AM20 -142001511,T06,14069224,Alarms,07/19/2014,07/19/2014,07/19/2014 12:43:27 PM,07/19/2014 12:45:20 PM,07/19/2014 12:46:02 PM,07/19/2014 12:48:25 PM,07/19/2014 12:48:25 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Fire,07/19/2014 12:53:05 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,3,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",142001511-T06 -152092059,T16,15079662,Medical Incident,07/28/2015,07/28/2015,07/28/2015 02:05:07 PM,07/28/2015 02:05:07 PM,07/28/2015 02:05:07 PM,07/28/2015 02:05:07 PM,07/28/2015 02:05:07 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,No Merit,07/28/2015 02:11:10 PM,SCOTT ST/MARINA BL,San Francisco,94123,B04,16,4111,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,2,Marina,"(37.8057862730196, -122.442209784032)",152092059-T16 -141080203,67,14036416,Medical Incident,04/18/2014,04/18/2014,04/18/2014 12:52:16 PM,04/18/2014 12:52:39 PM,04/18/2014 12:53:26 PM,04/18/2014 12:53:49 PM,04/18/2014 01:10:40 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Patient Declined Transport,04/18/2014 01:48:49 PM,16TH ST/GUERRERO ST,SAN FRANCISCO,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",141080203-67 -142680956,KM14,14093844,Medical Incident,09/25/2014,09/25/2014,09/25/2014 09:27:05 AM,09/25/2014 09:27:05 AM,09/25/2014 09:28:08 AM,09/25/2014 09:28:35 AM,09/25/2014 09:36:31 AM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Medical Examiner,09/25/2014 10:25:05 AM,300 Block of CHESTNUT ST,San Francisco,94133,B01,28,1336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.8041512141147, -122.409619669383)",142680956-KM14 -143493374,E36,14124800,Medical Incident,12/15/2014,12/15/2014,12/15/2014 10:20:34 PM,12/15/2014 10:21:24 PM,12/15/2014 10:21:39 PM,12/15/2014 10:22:57 PM,12/15/2014 10:25:12 PM,04/25/2016 01:13:24 PM,04/25/2016 01:13:24 PM,Code 2 Transport,12/15/2014 10:32:56 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",143493374-E36 -150222212,83,15008621,Medical Incident,01/22/2015,01/22/2015,01/22/2015 03:19:22 PM,01/22/2015 03:22:24 PM,01/22/2015 03:28:23 PM,01/22/2015 03:29:46 PM,01/22/2015 03:47:54 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Patient Declined Transport,01/22/2015 04:12:16 PM,EDDY ST/TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",150222212-83 -151042631,79,15039439,Medical Incident,04/14/2015,04/14/2015,04/14/2015 05:34:44 PM,04/14/2015 05:36:36 PM,04/14/2015 05:41:35 PM,04/14/2015 05:42:01 PM,04/14/2015 05:44:47 PM,04/14/2015 05:58:20 PM,04/14/2015 06:02:18 PM,Code 3 Transport,04/14/2015 06:27:30 PM,CHURCH ST/MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",151042631-79 -151013005,E01,15038325,Structure Fire,04/11/2015,04/11/2015,04/11/2015 07:13:45 PM,04/11/2015 07:14:23 PM,04/11/2015 07:15:35 PM,04/11/2015 07:16:38 PM,04/11/2015 07:20:44 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Fire,04/11/2015 07:22:59 PM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",151013005-E01 -160973950,83,16038644,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:56:16 PM,04/06/2016 07:57:45 PM,04/06/2016 07:58:40 PM,04/06/2016 07:58:51 PM,04/06/2016 08:24:17 PM,04/06/2016 08:24:19 PM,04/06/2016 08:54:05 PM,Code 2 Transport,04/06/2016 09:15:46 PM,500 Block of SACRAMENTO ST,San Francisco,94111,B01,13,1166,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7938844190655, -122.402569303912)",160973950-83 -141821549,T07,14062983,Structure Fire,07/01/2014,07/01/2014,07/01/2014 12:30:40 PM,07/01/2014 12:30:40 PM,07/01/2014 12:30:59 PM,07/01/2014 12:32:30 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Fire,07/01/2014 12:34:49 PM,20TH ST/MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",141821549-T07 -151860157,FD00A,15070853,,07/05/2015,07/04/2015,07/05/2015 12:31:01 AM,07/05/2015 12:31:47 AM,07/05/2015 12:38:58 AM,07/05/2015 12:38:58 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 12:39:11 AM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,3,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",151860157-FD00A -150481522,E02,15018592,Outside Fire,02/17/2015,02/17/2015,02/17/2015 11:50:49 AM,02/17/2015 11:52:35 AM,02/17/2015 11:55:27 AM,02/17/2015 11:55:27 AM,02/17/2015 11:58:55 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/17/2015 12:08:31 PM,POWELL ST/PINE ST,San Francisco,94108,B01,2,1361,3,3,3,true,Fire,1,ENGINE,2,1,3,Nob Hill,"(37.7910890007991, -122.408976276978)",150481522-E02 -160982700,82,16039013,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:18:45 PM,04/07/2016 04:19:56 PM,04/07/2016 04:49:04 PM,04/07/2016 04:49:18 PM,04/07/2016 04:52:48 PM,04/07/2016 05:04:09 PM,04/07/2016 05:20:54 PM,Code 2 Transport,04/07/2016 05:43:41 PM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",160982700-82 -142692573,E05,14094366,Medical Incident,09/26/2014,09/26/2014,09/26/2014 04:14:34 PM,09/26/2014 04:15:59 PM,09/26/2014 04:19:27 PM,09/26/2014 04:20:29 PM,09/26/2014 04:23:27 PM,04/25/2016 01:14:53 PM,04/25/2016 01:14:53 PM,Code 2 Transport,09/26/2014 04:30:55 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Japantown,"(37.7842371111665, -122.440760813886)",142692573-E05 -143532131,AM02,14126207,Medical Incident,12/19/2014,12/19/2014,12/19/2014 03:14:53 PM,12/19/2014 03:14:53 PM,12/19/2014 03:15:03 PM,12/19/2014 03:16:23 PM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,Unable to Locate,12/19/2014 03:24:10 PM,GEARY BL/STANYAN BL,San Francisco,94118,B07,10,4452,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7813812828119, -122.456295738729)",143532131-AM02 -151242952,B02,15047117,Alarms,05/04/2015,05/04/2015,05/04/2015 06:50:40 PM,05/04/2015 06:51:50 PM,05/04/2015 06:52:01 PM,05/04/2015 06:53:01 PM,05/04/2015 06:55:25 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Fire,05/04/2015 06:58:15 PM,500 Block of GOLDEN GATE AVE,San Francisco,94102,B02,36,3164,3,3,3,true,Alarm,1,CHIEF,1,2,6,Tenderloin,"(37.7810731211416, -122.419611556858)",151242952-B02 -160930919,AM02,16036767,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:04:18 AM,04/02/2016 09:04:18 AM,04/02/2016 09:05:27 AM,04/02/2016 09:06:30 AM,04/02/2016 09:17:55 AM,04/02/2016 09:33:50 AM,04/02/2016 09:45:52 AM,Code 2 Transport,04/02/2016 10:23:39 AM,0 Block of RANDALL ST,San Francisco,94131,B06,32,8112,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Glen Park,"(37.7397726632436, -122.425034949068)",160930919-AM02 -142760855,85,14096805,Medical Incident,10/03/2014,10/03/2014,10/03/2014 08:01:56 AM,10/03/2014 08:01:56 AM,10/03/2014 08:02:18 AM,10/03/2014 08:06:42 AM,10/03/2014 08:12:01 AM,10/03/2014 08:24:26 AM,10/03/2014 08:38:20 AM,Code 2 Transport,10/03/2014 09:10:51 AM,VAN NESS AV/EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",142760855-85 -142912669,AM08,14102716,Medical Incident,10/18/2014,10/18/2014,10/18/2014 05:00:45 PM,10/18/2014 05:01:41 PM,10/18/2014 05:02:29 PM,10/18/2014 05:03:37 PM,10/18/2014 05:06:11 PM,10/18/2014 05:22:21 PM,10/18/2014 05:47:41 PM,Code 2 Transport,10/18/2014 06:27:12 PM,2700 Block of TARAVAL ST,San Francisco,94116,B08,18,7621,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7422314603268, -122.495518294799)",142912669-AM08 -151202580,E05,15045500,Medical Incident,04/30/2015,04/30/2015,04/30/2015 04:07:00 PM,04/30/2015 04:08:00 PM,04/30/2015 04:08:15 PM,04/30/2015 04:09:54 PM,04/30/2015 04:12:30 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,Code 2 Transport,04/30/2015 04:26:13 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",151202580-E05 -151132176,E02,15042741,Alarms,04/23/2015,04/23/2015,04/23/2015 02:41:11 PM,04/23/2015 02:42:28 PM,04/23/2015 02:42:39 PM,04/23/2015 02:44:35 PM,04/23/2015 02:47:54 PM,04/25/2016 01:11:00 PM,04/25/2016 01:11:00 PM,Fire,04/23/2015 02:53:32 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,true,Alarm,1,ENGINE,2,1,3,North Beach,"(37.8083718015584, -122.414994322457)",151132176-E02 -143180227,E07,14112494,Medical Incident,11/14/2014,11/13/2014,11/14/2014 02:07:45 AM,11/14/2014 02:08:06 AM,11/14/2014 02:08:35 AM,11/14/2014 02:09:50 AM,11/14/2014 02:12:55 AM,04/25/2016 01:14:01 PM,04/25/2016 01:14:01 PM,Code 2 Transport,11/14/2014 02:13:55 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",143180227-E07 -153090577,T01,15118643,Alarms,11/05/2015,11/04/2015,11/05/2015 06:48:38 AM,11/05/2015 06:51:03 AM,11/05/2015 06:51:21 AM,11/05/2015 06:53:39 AM,11/05/2015 06:55:40 AM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,Fire,11/05/2015 06:58:03 AM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7826425026927, -122.407832679288)",153090577-T01 -142090059,68,14072277,Medical Incident,07/28/2014,07/27/2014,07/28/2014 12:28:09 AM,07/28/2014 12:31:06 AM,07/28/2014 12:37:09 AM,07/28/2014 12:37:09 AM,07/28/2014 12:48:03 AM,07/28/2014 01:02:08 AM,07/28/2014 01:19:56 AM,Code 2 Transport,07/28/2014 01:34:31 AM,100 Block of EUREKA ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7598966472322, -122.438119879768)",142090059-68 -152640277,E01,15100922,Medical Incident,09/21/2015,09/20/2015,09/21/2015 02:35:09 AM,09/21/2015 02:35:48 AM,09/21/2015 02:36:24 AM,09/21/2015 02:39:01 AM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Code 2 Transport,09/21/2015 02:41:41 AM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7744210164083, -122.412349532554)",152640277-E01 -143100296,E36,14109592,Medical Incident,11/06/2014,11/05/2014,11/06/2014 03:33:43 AM,11/06/2014 03:34:09 AM,11/06/2014 03:34:20 AM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Patient Declined Transport,11/06/2014 03:39:37 AM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",143100296-E36 -142343974,B02,14081525,Alarms,08/22/2014,08/22/2014,08/22/2014 11:30:48 PM,08/22/2014 11:30:48 PM,08/22/2014 11:31:06 PM,08/22/2014 11:32:58 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 11:48:40 PM,1000 Block of MINNA ST,San Francisco,94103,B02,36,5114,3,3,3,true,Alarm,1,CHIEF,3,2,6,Mission,"(37.7734838277891, -122.416961978206)",142343974-B02 -152051766,77,15078066,Medical Incident,07/24/2015,07/24/2015,07/24/2015 12:44:07 PM,07/24/2015 12:44:07 PM,07/24/2015 12:44:59 PM,07/24/2015 12:45:08 PM,07/24/2015 12:50:48 PM,07/24/2015 12:59:06 PM,07/24/2015 01:40:05 PM,Code 2 Transport,07/24/2015 02:17:32 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",152051766-77 -152331440,E17,15088797,Medical Incident,08/21/2015,08/21/2015,08/21/2015 10:49:56 AM,08/21/2015 10:52:56 AM,08/21/2015 10:53:06 AM,08/21/2015 10:53:39 AM,08/21/2015 10:58:05 AM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Code 2 Transport,08/21/2015 11:08:01 AM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7194008333885, -122.387234795761)",152331440-E17 -150030840,E38,15001024,Structure Fire,01/03/2015,01/03/2015,01/03/2015 08:49:29 AM,01/03/2015 08:50:29 AM,01/03/2015 08:50:43 AM,01/03/2015 08:52:21 AM,01/03/2015 08:55:21 AM,04/25/2016 01:13:03 PM,04/25/2016 01:13:03 PM,Fire,01/03/2015 09:04:42 AM,2200 Block of CHESTNUT ST,San Francisco,94123,B04,16,3661,3,3,3,false,Alarm,1,ENGINE,3,4,2,Marina,"(37.800406453512, -122.439917841054)",150030840-E38 -151530054,89,15058107,Medical Incident,06/02/2015,06/01/2015,06/02/2015 12:16:55 AM,06/02/2015 12:16:55 AM,06/02/2015 12:17:42 AM,06/02/2015 12:17:56 AM,06/02/2015 12:21:13 AM,06/02/2015 12:48:27 AM,06/02/2015 01:12:07 AM,Code 2 Transport,06/02/2015 02:01:58 AM,31ST AV/NORIEGA ST,San Francisco,94122,B08,18,7534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7536741932902, -122.489323710584)",151530054-89 -152421758,E25,15092306,Medical Incident,08/30/2015,08/30/2015,08/30/2015 12:56:05 PM,08/30/2015 12:56:15 PM,08/30/2015 12:56:35 PM,08/30/2015 12:57:33 PM,08/30/2015 12:59:28 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Code 2 Transport,08/30/2015 01:05:50 PM,700 Block of NEWHALL ST,San Francisco,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7397012677427, -122.388497566799)",152421758-E25 -160961986,62,16038031,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:35:21 PM,04/05/2016 01:37:09 PM,04/05/2016 01:39:21 PM,04/05/2016 01:39:39 PM,04/05/2016 01:45:30 PM,04/05/2016 02:22:17 PM,04/05/2016 02:44:23 PM,Code 2 Transport,04/05/2016 03:03:00 PM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7720616394566, -122.419213394918)",160961986-62 -160983052,52,16039049,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:02:14 PM,04/07/2016 06:02:39 PM,04/07/2016 06:02:51 PM,04/07/2016 06:03:46 PM,04/07/2016 06:18:59 PM,04/07/2016 06:48:30 PM,04/07/2016 07:24:32 PM,Code 2 Transport,04/07/2016 07:46:57 PM,0 Block of CHUMASERO DR,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",160983052-52 -150440849,E09,15017025,Medical Incident,02/13/2015,02/13/2015,02/13/2015 08:21:38 AM,02/13/2015 08:24:00 AM,02/13/2015 08:28:26 AM,02/13/2015 08:29:41 AM,02/13/2015 08:53:44 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Against Medical Advice,02/13/2015 09:07:30 AM,100 Block of NAPOLEON ST,San Francisco,94124,B10,9,6422,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7469874361298, -122.399147231229)",150440849-E09 -142561043,E01,14089356,Medical Incident,09/13/2014,09/13/2014,09/13/2014 09:18:29 AM,09/13/2014 09:20:09 AM,09/13/2014 09:23:08 AM,09/13/2014 09:23:08 AM,09/13/2014 09:23:37 AM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/13/2014 09:29:58 AM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7865110076551, -122.401594634646)",142561043-E01 -160943199,52,16037405,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:01:41 PM,04/03/2016 08:02:31 PM,04/03/2016 08:03:05 PM,04/03/2016 08:06:02 PM,04/03/2016 08:06:22 PM,04/03/2016 08:31:23 PM,04/03/2016 08:40:43 PM,Code 2 Transport,04/03/2016 09:26:15 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7848479162045, -122.40394643108)",160943199-52 -152624187,D2,15100422,Structure Fire,09/19/2015,09/19/2015,09/19/2015 11:09:34 PM,09/19/2015 11:10:26 PM,09/19/2015 11:10:41 PM,09/19/2015 11:12:01 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Fire,09/19/2015 11:15:49 PM,FELL ST/VAN NESS AV,San Francisco,94102,B02,36,3111,3,3,3,false,Alarm,1,CHIEF,11,2,5,Hayes Valley,"(37.7763688687361, -122.419506294961)",152624187-D2 -152000115,79,15076064,Medical Incident,07/19/2015,07/18/2015,07/19/2015 12:28:50 AM,07/19/2015 12:30:43 AM,07/19/2015 12:32:38 AM,07/19/2015 12:32:45 AM,07/19/2015 12:41:46 AM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,No Merit,07/19/2015 12:59:02 AM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",152000115-79 -143093116,75,14109494,Traffic Collision,11/05/2014,11/05/2014,11/05/2014 07:30:57 PM,11/05/2014 07:31:38 PM,11/05/2014 07:32:08 PM,11/05/2014 07:32:17 PM,11/05/2014 07:38:34 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Patient Declined Transport,11/05/2014 08:09:01 PM,GEARY BL/MASONIC AV,San Francisco,94118,B05,10,4365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",143093116-75 -160942989,AM10,16037377,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 06:48:48 PM,04/03/2016 06:49:09 PM,04/03/2016 06:49:59 PM,04/03/2016 06:50:34 PM,04/03/2016 06:53:33 PM,04/03/2016 07:07:35 PM,04/03/2016 07:25:28 PM,Code 2 Transport,04/03/2016 08:14:52 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7854670505017, -122.415977627827)",160942989-AM10 -150251948,57,15009680,Medical Incident,01/25/2015,01/25/2015,01/25/2015 02:09:47 PM,01/25/2015 02:10:34 PM,01/25/2015 02:10:42 PM,01/25/2015 02:11:01 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,Code 3 Transport,01/25/2015 02:19:37 PM,1500 Block of 24TH AVE,San Francisco,94122,B08,22,7447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,8,4,Sunset/Parkside,"(37.7586664205644, -122.482086757814)",150251948-57 -142520802,E08,14087886,Structure Fire,09/09/2014,09/09/2014,09/09/2014 09:30:15 AM,09/09/2014 09:30:15 AM,09/09/2014 09:31:12 AM,09/09/2014 09:31:38 AM,09/09/2014 09:32:51 AM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,Fire,09/09/2014 09:35:10 AM,6TH ST/BRYANT ST,San Francisco,94107,B03,8,2255,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7760393195221, -122.402524096783)",142520802-E08 -143230980,KM09,14114284,Medical Incident,11/19/2014,11/19/2014,11/19/2014 10:08:37 AM,11/19/2014 10:08:44 AM,11/19/2014 10:09:16 AM,11/19/2014 10:12:00 AM,11/19/2014 10:16:59 AM,11/19/2014 10:38:11 AM,11/19/2014 10:45:51 AM,Code 3 Transport,11/19/2014 12:13:06 PM,600 Block of CHESTNUT ST,San Francisco,94133,B01,28,1424,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8037059928604, -122.414061181051)",143230980-KM09 -141413426,82,14048505,Medical Incident,05/21/2014,05/21/2014,05/21/2014 09:47:37 PM,05/21/2014 09:48:07 PM,05/21/2014 09:48:54 PM,05/21/2014 09:49:02 PM,05/21/2014 09:59:44 PM,05/21/2014 10:29:22 PM,05/21/2014 10:46:55 PM,Code 2 Transport,05/21/2014 11:17:40 PM,1800 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",141413426-82 -141641256,E07,14056494,Medical Incident,06/13/2014,06/13/2014,06/13/2014 11:11:19 AM,06/13/2014 11:13:06 AM,06/13/2014 11:14:02 AM,06/13/2014 11:14:28 AM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/13/2014 11:23:19 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7563716216308, -122.416574134534)",141641256-E07 -160990921,KM09,16039232,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:18:50 AM,04/08/2016 09:21:21 AM,04/08/2016 09:23:03 AM,04/08/2016 09:23:56 AM,04/08/2016 09:31:13 AM,04/08/2016 10:10:45 AM,04/08/2016 10:24:43 AM,Code 2 Transport,04/08/2016 11:00:12 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160990921-KM09 -152840495,E38,15108928,Alarms,10/11/2015,10/10/2015,10/11/2015 02:51:53 AM,10/11/2015 02:53:44 AM,10/11/2015 02:54:34 AM,10/11/2015 02:55:46 AM,10/11/2015 02:57:23 AM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Fire,10/11/2015 03:02:54 AM,2500 Block of CLAY ST,San Francisco,94115,B04,38,3615,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7905522545332, -122.435015102798)",152840495-E38 -143060477,E44,14108182,Medical Incident,11/02/2014,11/01/2014,11/02/2014 02:22:43 AM,11/02/2014 02:22:58 AM,11/02/2014 02:23:27 AM,11/02/2014 02:25:43 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/02/2014 02:30:20 AM,300 Block of ELLIOT ST,San Francisco,94134,B09,44,6312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7140497782166, -122.411525566922)",143060477-E44 -141833046,E14,14063434,Medical Incident,07/02/2014,07/02/2014,07/02/2014 06:49:00 PM,07/02/2014 06:50:10 PM,07/02/2014 06:52:57 PM,07/02/2014 06:54:09 PM,07/02/2014 07:05:20 PM,04/25/2016 01:16:26 PM,04/25/2016 01:16:26 PM,Code 3 Transport,07/02/2014 07:46:19 PM,100 Block of 26TH AVE,San Francisco,94121,B07,14,7217,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Seacliff,"(37.7866330014173, -122.486212276615)",141833046-E14 -141953259,E19,14067703,Traffic Collision,07/14/2014,07/14/2014,07/14/2014 09:27:22 PM,07/14/2014 09:27:22 PM,07/14/2014 09:28:00 PM,07/14/2014 09:29:11 PM,07/14/2014 09:30:50 PM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Unable to Locate,07/14/2014 09:36:10 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",141953259-E19 -151000970,T07,15037771,Alarms,04/10/2015,04/10/2015,04/10/2015 09:44:59 AM,04/10/2015 09:46:20 AM,04/10/2015 09:46:55 AM,04/10/2015 09:48:59 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Fire,04/10/2015 09:51:34 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7650413541786, -122.420746190588)",151000970-T07 -150724329,E43,15027738,Medical Incident,03/13/2015,03/13/2015,03/13/2015 11:18:35 PM,03/13/2015 11:20:12 PM,03/13/2015 11:27:48 PM,03/13/2015 11:29:36 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Patient Declined Transport,03/13/2015 11:31:30 PM,0 Block of LOBOS ST,San Francisco,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.714970324741, -122.454264273625)",150724329-E43 -160980296,78,16038755,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:43:21 AM,04/07/2016 02:45:15 AM,04/07/2016 02:45:36 AM,04/07/2016 02:45:47 AM,04/07/2016 02:51:20 AM,04/07/2016 03:10:35 AM,04/07/2016 03:22:38 AM,Code 2 Transport,04/07/2016 03:48:00 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.781960649289, -122.402224095303)",160980296-78 -151770394,77,15067258,Medical Incident,06/26/2015,06/25/2015,06/26/2015 03:53:07 AM,06/26/2015 03:53:07 AM,06/26/2015 03:55:02 AM,06/26/2015 03:55:20 AM,06/26/2015 04:03:03 AM,06/26/2015 04:05:14 AM,06/26/2015 04:16:47 AM,Code 2 Transport,06/26/2015 04:28:58 AM,800 Block of ULLOA ST,San Francisco,94127,B08,39,8619,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7409217122072, -122.466013598224)",151770394-77 -161001768,71,16039781,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:55:18 PM,04/09/2016 01:55:18 PM,04/09/2016 01:56:42 PM,04/09/2016 01:56:52 PM,04/09/2016 02:05:10 PM,04/09/2016 02:19:25 PM,04/09/2016 02:39:31 PM,Code 2 Transport,04/09/2016 03:16:18 PM,1500 Block of SLOAT BLVD,San Francisco,94132,B08,19,7552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",161001768-71 -150591540,AM12,15022531,Medical Incident,02/28/2015,02/28/2015,02/28/2015 12:01:54 PM,02/28/2015 12:02:28 PM,02/28/2015 12:02:59 PM,02/28/2015 12:03:33 PM,02/28/2015 12:05:59 PM,02/28/2015 12:17:03 PM,02/28/2015 12:26:18 PM,Code 3 Transport,02/28/2015 01:09:15 PM,100 Block of SAN CARLOS ST,San Francisco,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7609848622239, -122.420120540924)",150591540-AM12 -150053847,E44,15002075,Medical Incident,01/05/2015,01/05/2015,01/05/2015 11:09:12 PM,01/05/2015 11:11:30 PM,01/05/2015 11:11:53 PM,01/05/2015 11:12:47 PM,01/05/2015 11:17:23 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 2 Transport,01/05/2015 11:27:13 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",150053847-E44 -142732743,E25,14095800,Alarms,09/30/2014,09/30/2014,09/30/2014 05:15:20 PM,09/30/2014 05:17:02 PM,09/30/2014 05:17:08 PM,09/30/2014 05:18:37 PM,09/30/2014 05:21:02 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Fire,09/30/2014 05:28:56 PM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6554,3,3,3,false,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",142732743-E25 -150172486,71,15006790,Traffic Collision,01/17/2015,01/17/2015,01/17/2015 04:42:28 PM,01/17/2015 04:43:07 PM,01/17/2015 04:44:50 PM,01/17/2015 04:45:00 PM,01/17/2015 04:54:17 PM,01/17/2015 05:09:12 PM,01/17/2015 05:42:46 PM,Code 2 Transport,01/17/2015 06:23:54 PM,TURK BL/STANYAN BL,San Francisco,94118,B07,21,4557,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7775992781141, -122.455216941832)",150172486-71 -152900382,RC1,15111273,Medical Incident,10/17/2015,10/16/2015,10/17/2015 02:20:03 AM,10/17/2015 02:20:33 AM,10/17/2015 02:23:40 AM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/17/2015 02:27:28 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",152900382-RC1 -160943584,78,16037450,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:26:17 PM,04/03/2016 10:28:07 PM,04/03/2016 10:28:23 PM,04/03/2016 10:28:31 PM,04/03/2016 10:37:44 PM,04/03/2016 10:45:25 PM,04/03/2016 10:59:50 PM,Code 2 Transport,04/03/2016 11:29:05 PM,100 Block of LANGTON ST,San Francisco,94103,B03,8,2312,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7756106325157, -122.407388973087)",160943584-78 -150312966,B08,15012088,Structure Fire,01/31/2015,01/31/2015,01/31/2015 06:44:48 PM,01/31/2015 06:45:38 PM,01/31/2015 06:46:15 PM,01/31/2015 06:47:53 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 06:52:07 PM,0 Block of LIEBIG ST,San Francisco,94112,B09,33,8357,3,3,3,false,Alarm,1,CHIEF,6,9,11,Outer Mission,"(37.7089888345409, -122.456754288707)",150312966-B08 -143540262,E36,14126381,Medical Incident,12/20/2014,12/19/2014,12/20/2014 01:07:24 AM,12/20/2014 01:09:04 AM,12/20/2014 01:09:21 AM,12/20/2014 01:11:55 AM,12/20/2014 01:14:31 AM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,Code 2 Transport,12/20/2014 01:24:48 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",143540262-E36 -152920763,AM06,15112096,Medical Incident,10/19/2015,10/19/2015,10/19/2015 08:38:01 AM,10/19/2015 08:38:30 AM,10/19/2015 08:40:00 AM,10/19/2015 08:40:39 AM,10/19/2015 08:48:39 AM,10/19/2015 09:10:30 AM,10/19/2015 09:18:50 AM,Code 3 Transport,10/19/2015 09:55:19 AM,100 Block of BRUSSELS ST,San Francisco,94134,B10,42,6341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7301008339849, -122.406891125919)",152920763-AM06 -152334193,E24,15089024,Medical Incident,08/21/2015,08/21/2015,08/21/2015 11:02:51 PM,08/21/2015 11:02:51 PM,08/21/2015 11:03:04 PM,08/21/2015 11:05:08 PM,08/21/2015 11:07:35 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Patient Declined Transport,08/21/2015 11:18:41 PM,3400 Block of MARKET ST,San Francisco,94114,B05,24,5271,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7569301468399, -122.44269078808)",152334193-E24 -151500714,61,15057004,Medical Incident,05/30/2015,05/29/2015,05/30/2015 07:55:21 AM,05/30/2015 07:57:00 AM,05/30/2015 07:57:59 AM,05/30/2015 07:58:14 AM,05/30/2015 08:10:53 AM,05/30/2015 08:16:34 AM,05/30/2015 08:36:20 AM,Code 2 Transport,05/30/2015 09:07:59 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",151500714-61 -151080688,70,15040802,Medical Incident,04/18/2015,04/17/2015,04/18/2015 07:11:43 AM,04/18/2015 07:13:30 AM,04/18/2015 07:29:31 AM,04/18/2015 07:30:58 AM,04/18/2015 07:49:38 AM,04/18/2015 07:59:57 AM,04/18/2015 08:22:05 AM,Code 2 Transport,04/18/2015 08:57:22 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",151080688-70 -141800579,E05,14062113,Medical Incident,06/29/2014,06/28/2014,06/29/2014 03:39:02 AM,06/29/2014 03:39:37 AM,06/29/2014 03:39:47 AM,06/29/2014 03:41:36 AM,06/29/2014 03:42:54 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Other,06/29/2014 03:49:07 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",141800579-E05 -160933241,71,16037022,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:59:49 PM,04/02/2016 08:01:34 PM,04/02/2016 08:03:24 PM,04/02/2016 08:03:47 PM,04/02/2016 08:26:39 PM,04/02/2016 08:41:35 PM,04/02/2016 09:11:07 PM,Code 2 Transport,04/02/2016 09:36:46 PM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",160933241-71 -160992765,86,16039403,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:24:35 PM,04/08/2016 05:27:30 PM,04/08/2016 05:28:48 PM,04/08/2016 05:28:57 PM,04/08/2016 05:41:00 PM,04/08/2016 06:03:57 PM,04/08/2016 06:24:24 PM,Code 2 Transport,04/08/2016 07:10:14 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160992765-86 -150521861,B03,15020027,Alarms,02/21/2015,02/21/2015,02/21/2015 12:54:41 PM,02/21/2015 12:55:48 PM,02/21/2015 12:55:58 PM,02/21/2015 12:57:44 PM,02/21/2015 12:59:20 PM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Fire,02/21/2015 01:08:41 PM,100 Block of TOWNSEND ST,San Francisco,94107,B03,8,2172,3,3,3,false,Alarm,1,CHIEF,2,3,6,Mission Bay,"(37.7796910137658, -122.391588816975)",150521861-B03 -141080286,T02,14036490,Structure Fire,04/18/2014,04/18/2014,04/18/2014 04:54:51 PM,04/18/2014 04:54:51 PM,04/18/2014 04:54:59 PM,04/18/2014 04:57:07 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Fire,04/18/2014 04:59:34 PM,GRANT AV/JACKSON ST,SAN FRANCISCO,94133,B01,2,1312,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",141080286-T02 -160983202,53,16039067,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:37:01 PM,04/07/2016 06:37:32 PM,04/07/2016 06:37:58 PM,04/07/2016 06:38:08 PM,04/07/2016 06:43:31 PM,04/07/2016 07:08:26 PM,04/07/2016 07:12:59 PM,Code 2 Transport,04/07/2016 09:05:46 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160983202-53 -141200205,85,14040560,Medical Incident,04/30/2014,04/30/2014,04/30/2014 01:40:55 PM,04/30/2014 01:42:23 PM,04/30/2014 01:42:51 PM,04/30/2014 01:43:03 PM,04/30/2014 02:02:40 PM,04/30/2014 02:14:46 PM,04/30/2014 02:26:13 PM,Code 2 Transport,04/30/2014 02:45:30 PM,7500 Block of GEARY BLVD,SAN FRANCISCO,94121,B07,34,7264,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",141200205-85 -142671859,AM24,14093506,Medical Incident,09/24/2014,09/24/2014,09/24/2014 12:57:54 PM,09/24/2014 12:59:09 PM,09/24/2014 12:59:31 PM,09/24/2014 01:07:17 PM,09/24/2014 01:25:52 PM,09/24/2014 01:25:54 PM,09/24/2014 01:54:36 PM,Code 2 Transport,09/24/2014 02:10:37 PM,3RD ST/EVANS AV,San Francisco,94124,B10,25,6457,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",142671859-AM24 -152020816,B08,15076898,Alarms,07/21/2015,07/21/2015,07/21/2015 08:25:43 AM,07/21/2015 08:27:19 AM,07/21/2015 08:27:40 AM,07/21/2015 08:28:39 AM,07/21/2015 08:32:08 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/21/2015 08:49:12 AM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,false,Alarm,1,CHIEF,3,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",152020816-B08 -142630563,84,14091880,Medical Incident,09/20/2014,09/19/2014,09/20/2014 04:22:30 AM,09/20/2014 04:23:12 AM,09/20/2014 04:23:29 AM,09/20/2014 04:23:44 AM,09/20/2014 04:27:28 AM,09/20/2014 04:41:39 AM,09/20/2014 04:52:16 AM,Code 2 Transport,09/20/2014 05:42:06 AM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7562319946436, -122.418893283075)",142630563-84 -150012273,AM08,15000377,Medical Incident,01/01/2015,01/01/2015,01/01/2015 02:42:01 PM,01/01/2015 02:45:54 PM,01/01/2015 02:46:16 PM,01/01/2015 02:47:01 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,No Merit,01/01/2015 02:53:14 PM,1900 Block of LOMBARD ST,San Francisco,94123,B04,16,3461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8002723548355, -122.433605968659)",150012273-AM08 -161002341,64,16039845,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:00:44 PM,04/09/2016 05:01:32 PM,04/09/2016 05:01:44 PM,04/09/2016 05:03:25 PM,04/09/2016 05:09:29 PM,04/09/2016 05:18:44 PM,04/09/2016 05:42:15 PM,Code 2 Transport,04/09/2016 05:59:51 PM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",161002341-64 -152503657,KM07,15095682,Medical Incident,09/07/2015,09/07/2015,09/07/2015 11:03:05 PM,09/07/2015 11:05:20 PM,09/07/2015 11:06:44 PM,09/07/2015 11:07:12 PM,09/07/2015 11:16:19 PM,09/07/2015 11:36:38 PM,09/07/2015 11:47:31 PM,Code 2 Transport,09/08/2015 12:13:24 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",152503657-KM07 -152912819,E14,15111912,Medical Incident,10/18/2015,10/18/2015,10/18/2015 06:12:57 PM,10/18/2015 06:12:57 PM,10/18/2015 06:13:02 PM,10/18/2015 06:14:39 PM,10/18/2015 06:17:56 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Medical Examiner,10/18/2015 06:53:21 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,2,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",152912819-E14 -160942324,76,16037312,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:30:29 PM,04/03/2016 03:31:45 PM,04/03/2016 03:32:34 PM,04/03/2016 03:32:52 PM,04/03/2016 03:43:31 PM,04/03/2016 04:07:34 PM,04/03/2016 04:21:45 PM,Code 2 Transport,04/03/2016 04:49:56 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160942324-76 -160941595,62,16037244,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:46:55 AM,04/03/2016 11:47:52 AM,04/03/2016 11:48:20 AM,04/03/2016 11:48:42 AM,04/03/2016 12:08:20 PM,04/03/2016 12:38:43 PM,04/03/2016 01:28:03 PM,Code 2 Transport,04/03/2016 02:00:02 PM,600 Block of 39TH AVE,San Francisco,94121,B07,34,7257,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.776553267268, -122.499453605944)",160941595-62 -141350470,E34,14046031,Outside Fire,05/15/2014,05/14/2014,05/15/2014 05:36:24 AM,05/15/2014 05:37:18 AM,05/15/2014 05:37:32 AM,05/15/2014 05:39:49 AM,05/15/2014 05:41:53 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/15/2014 06:12:29 AM,FULTON ST/47TH AV,San Francisco,94121,B07,34,7272,3,3,3,false,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7714950322209, -122.507750664634)",141350470-E34 -160921278,AM12,16036399,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:59:38 AM,04/01/2016 11:00:47 AM,04/01/2016 11:01:15 AM,04/01/2016 11:01:49 AM,04/01/2016 11:05:28 AM,04/01/2016 11:35:36 AM,04/01/2016 11:50:31 AM,Code 2 Transport,04/01/2016 12:20:48 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160921278-AM12 -161002190,AM12,16039826,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:12:27 PM,04/09/2016 04:12:27 PM,04/09/2016 04:13:32 PM,04/09/2016 04:14:14 PM,04/09/2016 04:22:20 PM,04/09/2016 04:29:06 PM,04/09/2016 04:39:11 PM,Code 2 Transport,04/09/2016 05:12:00 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",161002190-AM12 -151421177,E03,15053921,Alarms,05/22/2015,05/22/2015,05/22/2015 09:54:48 AM,05/22/2015 09:56:55 AM,05/22/2015 09:57:08 AM,05/22/2015 09:58:38 AM,05/22/2015 10:01:08 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Fire,05/22/2015 10:04:05 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",151421177-E03 -160991537,AM02,16039279,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:23:31 PM,04/08/2016 12:23:31 PM,04/08/2016 12:24:24 PM,04/08/2016 12:24:39 PM,04/08/2016 12:33:02 PM,04/08/2016 12:47:23 PM,04/08/2016 12:55:44 PM,Code 2 Transport,04/08/2016 01:46:23 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7832636870331, -122.407051190493)",160991537-AM02 -160923904,60,16036645,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:03:53 PM,04/01/2016 11:03:53 PM,04/01/2016 11:05:26 PM,04/01/2016 11:06:10 PM,04/01/2016 11:09:02 PM,04/01/2016 11:28:26 PM,04/01/2016 11:37:00 PM,Code 2 Transport,04/02/2016 12:23:14 AM,700 Block of JACKSON ST,San Francisco,94133,B01,2,1312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7959498779613, -122.407691357512)",160923904-60 -160940004,64,16037091,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:59:32 PM,04/03/2016 12:01:29 AM,04/03/2016 12:02:22 AM,04/03/2016 12:02:44 AM,04/03/2016 12:04:08 AM,04/03/2016 12:16:52 AM,04/03/2016 12:19:28 AM,Code 2 Transport,04/03/2016 12:59:56 AM,CASTRO ST/STATES ST,San Francisco,94114,B05,6,5253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7634628374889, -122.435258661264)",160940004-64 -151803786,KM06,15068939,Medical Incident,06/29/2015,06/29/2015,06/29/2015 11:05:16 PM,06/29/2015 11:06:12 PM,06/29/2015 11:06:29 PM,06/29/2015 11:07:03 PM,06/29/2015 11:11:58 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,No Merit,06/29/2015 11:18:02 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7785992634984, -122.408503211368)",151803786-KM06 -141421256,E02,14048641,Medical Incident,05/22/2014,05/22/2014,05/22/2014 10:52:24 AM,05/22/2014 10:55:43 AM,05/22/2014 10:56:12 AM,05/22/2014 10:56:39 AM,05/22/2014 10:59:00 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 3 Transport,05/22/2014 11:14:09 AM,800 Block of GREENWICH ST,San Francisco,94133,B01,28,1423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.8016854989716, -122.414070883397)",141421256-E02 -161002964,86,16039917,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:09:35 PM,04/09/2016 08:12:43 PM,04/09/2016 08:13:13 PM,04/09/2016 08:13:23 PM,04/09/2016 08:19:52 PM,04/09/2016 08:40:49 PM,04/09/2016 09:13:57 PM,Code 2 Transport,04/09/2016 09:42:13 PM,400 Block of 25TH AVE,San Francisco,94121,B07,14,7213,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7810622346199, -122.484734171651)",161002964-86 -151783400,E13,15067936,Structure Fire,06/27/2015,06/27/2015,06/27/2015 08:03:00 PM,06/27/2015 08:03:00 PM,06/27/2015 08:03:06 PM,06/27/2015 08:03:58 PM,06/27/2015 08:05:27 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,Fire,06/27/2015 08:05:31 PM,BATTERY ST/CLAY ST,San Francisco,94111,B01,13,1161,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7950131479598, -122.400329335061)",151783400-E13 -143280842,AM06,14116196,Medical Incident,11/24/2014,11/24/2014,11/24/2014 08:38:04 AM,11/24/2014 08:40:46 AM,11/24/2014 08:41:02 AM,11/24/2014 08:42:20 AM,11/24/2014 08:48:16 AM,04/25/2016 01:13:50 PM,04/25/2016 01:13:50 PM,Against Medical Advice,11/24/2014 09:18:36 AM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7120857687728, -122.445406512004)",143280842-AM06 -150482830,B02,15018701,Alarms,02/17/2015,02/17/2015,02/17/2015 05:28:11 PM,02/17/2015 05:29:35 PM,02/17/2015 05:29:45 PM,02/17/2015 05:30:56 PM,02/17/2015 05:33:26 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/17/2015 05:44:18 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7777903094246, -122.412834332129)",150482830-B02 -143533536,T06,14126317,Citizen Assist / Service Call,12/19/2014,12/19/2014,12/19/2014 09:25:57 PM,12/19/2014 09:27:06 PM,12/19/2014 09:27:36 PM,12/19/2014 09:28:33 PM,12/19/2014 09:32:37 PM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,Fire,12/19/2014 09:48:41 PM,CASTRO ST/STATES ST,San Francisco,94114,B05,6,5253,3,3,3,false,Alarm,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7634628374889, -122.435258661264)",143533536-T06 -151250931,T03,15047291,Medical Incident,05/05/2015,05/05/2015,05/05/2015 09:17:33 AM,05/05/2015 09:18:43 AM,05/05/2015 09:19:20 AM,05/05/2015 09:21:22 AM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Code 2 Transport,05/05/2015 09:21:44 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,E,3,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",151250931-T03 -152860276,E01,15109706,Medical Incident,10/13/2015,10/12/2015,10/13/2015 02:45:48 AM,10/13/2015 02:47:03 AM,10/13/2015 02:47:40 AM,10/13/2015 02:49:48 AM,10/13/2015 02:50:38 AM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Code 2 Transport,10/13/2015 02:54:32 AM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7798137203933, -122.403860419019)",152860276-E01 -160991899,85,16039320,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:58:58 PM,04/08/2016 01:59:31 PM,04/08/2016 02:00:02 PM,04/08/2016 02:00:35 PM,04/08/2016 02:19:56 PM,04/08/2016 02:27:52 PM,04/08/2016 02:52:17 PM,Code 2 Transport,04/08/2016 03:56:35 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160991899-85 -160930023,78,16036668,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:08:26 AM,04/02/2016 12:08:26 AM,04/02/2016 12:08:55 AM,04/02/2016 12:09:55 AM,04/02/2016 12:14:24 AM,04/02/2016 12:29:19 AM,04/02/2016 12:41:55 AM,Code 3 Transport,04/02/2016 01:48:42 AM,300 Block of CHESTNUT ST,San Francisco,94133,B01,28,1336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8042509638985, -122.408817647565)",160930023-78 -142333661,E14,14081141,Structure Fire,08/21/2014,08/21/2014,08/21/2014 10:35:13 PM,08/21/2014 10:36:11 PM,08/21/2014 10:36:44 PM,08/21/2014 10:48:53 PM,08/21/2014 10:48:53 PM,04/25/2016 01:15:32 PM,04/25/2016 01:15:32 PM,Fire,08/21/2014 11:00:22 PM,300 Block of 24TH AVE,San Francisco,94121,B07,14,7214,3,3,3,true,Fire,1,ENGINE,8,7,1,Outer Richmond,"(37.7830006442599, -122.483939034671)",142333661-E14 -143450247,77,14122562,Structure Fire,12/11/2014,12/10/2014,12/11/2014 02:09:47 AM,12/11/2014 02:10:52 AM,12/11/2014 02:12:45 AM,12/11/2014 02:13:16 AM,12/11/2014 02:19:58 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/11/2014 02:24:45 AM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,3,3,3,true,Alarm,1,MEDIC,6,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",143450247-77 -141531156,KM09,14052506,Medical Incident,06/02/2014,06/02/2014,06/02/2014 10:26:11 AM,06/02/2014 10:26:33 AM,06/02/2014 10:27:36 AM,06/02/2014 10:28:11 AM,06/02/2014 10:29:48 AM,06/02/2014 10:47:49 AM,06/02/2014 10:55:15 AM,Code 3 Transport,06/02/2014 11:23:37 AM,MISSION ST/19TH ST,San Francisco,94110,B02,7,5423,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",141531156-KM09 -153051435,57,15117097,Medical Incident,11/01/2015,10/31/2015,11/01/2015 07:54:30 AM,11/01/2015 07:56:33 AM,11/01/2015 07:56:52 AM,11/01/2015 07:57:31 AM,11/01/2015 08:09:26 AM,11/01/2015 08:41:18 AM,11/01/2015 09:11:39 AM,Code 2 Transport,11/01/2015 09:45:26 AM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",153051435-57 -151030465,E17,15038830,Medical Incident,04/13/2015,04/12/2015,04/13/2015 05:57:13 AM,04/13/2015 05:58:36 AM,04/13/2015 05:59:14 AM,04/13/2015 06:01:27 AM,04/13/2015 06:05:19 AM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Code 2 Transport,04/13/2015 06:13:17 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",151030465-E17 -160963545,52,16038159,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:42:53 PM,04/05/2016 07:44:32 PM,04/05/2016 07:45:08 PM,04/05/2016 07:45:15 PM,04/05/2016 07:51:02 PM,04/05/2016 08:00:05 PM,04/05/2016 08:18:47 PM,Code 2 Transport,04/05/2016 09:10:18 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160963545-52 -152781826,61,15106662,Medical Incident,10/05/2015,10/05/2015,10/05/2015 01:27:07 PM,10/05/2015 01:27:58 PM,10/05/2015 01:28:24 PM,10/05/2015 01:29:05 PM,10/05/2015 01:38:25 PM,10/05/2015 01:59:28 PM,10/05/2015 02:30:23 PM,Code 2 Transport,10/05/2015 03:06:59 PM,1700 Block of 8TH AVE,San Francisco,94122,B08,22,7336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7556932552649, -122.464586495079)",152781826-61 -143470728,77,14123680,Medical Incident,12/13/2014,12/12/2014,12/13/2014 06:33:26 AM,12/13/2014 06:33:56 AM,12/13/2014 06:34:22 AM,12/13/2014 06:35:34 AM,12/13/2014 06:44:36 AM,12/13/2014 07:04:35 AM,12/13/2014 07:23:47 AM,Code 2 Transport,12/13/2014 08:11:06 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",143470728-77 -152213072,E15,15084327,Structure Fire,08/09/2015,08/09/2015,08/09/2015 06:46:21 PM,08/09/2015 06:46:21 PM,08/09/2015 06:46:38 PM,08/09/2015 06:47:31 PM,08/09/2015 06:49:48 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Fire,08/09/2015 07:21:12 PM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152213072-E15 -151132425,56,15042766,Medical Incident,04/23/2015,04/23/2015,04/23/2015 03:45:22 PM,04/23/2015 03:46:22 PM,04/23/2015 03:47:58 PM,04/23/2015 03:48:11 PM,04/23/2015 04:09:26 PM,04/23/2015 04:09:30 PM,04/23/2015 04:22:26 PM,Code 2 Transport,04/23/2015 04:45:49 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",151132425-56 -151441897,E19,15054796,Medical Incident,05/24/2015,05/24/2015,05/24/2015 02:17:33 PM,05/24/2015 02:19:03 PM,05/24/2015 02:21:39 PM,05/24/2015 02:22:29 PM,05/24/2015 02:24:59 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Code 2 Transport,05/24/2015 02:49:25 PM,100 Block of HAVENSIDE DR,San Francisco,94132,B08,19,8813,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7316476125403, -122.489645928446)",151441897-E19 -151061002,E15,15039975,Medical Incident,04/16/2015,04/16/2015,04/16/2015 09:16:34 AM,04/16/2015 09:17:19 AM,04/16/2015 09:18:20 AM,04/16/2015 09:19:26 AM,04/16/2015 09:20:20 AM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Code 2 Transport,04/16/2015 09:29:39 AM,200 Block of LEE AVE,San Francisco,94112,B09,15,8472,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7226539396892, -122.454180300555)",151061002-E15 -142673528,E33,14093670,Medical Incident,09/24/2014,09/24/2014,09/24/2014 08:14:21 PM,09/24/2014 08:16:22 PM,09/24/2014 08:16:43 PM,09/24/2014 08:18:24 PM,09/24/2014 08:21:32 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 08:50:25 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",142673528-E33 -160922178,54,16036484,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:11:13 PM,04/01/2016 03:11:44 PM,04/01/2016 03:12:52 PM,04/01/2016 03:13:23 PM,04/01/2016 03:35:52 PM,04/01/2016 03:35:54 PM,04/01/2016 03:45:55 PM,Code 3 Transport,04/01/2016 04:11:03 PM,300 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8731,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Lakeshore,"(37.7310536423783, -122.476383904851)",160922178-54 -153013610,E03,15115606,Medical Incident,10/28/2015,10/28/2015,10/28/2015 07:41:30 PM,10/28/2015 07:42:11 PM,10/28/2015 07:43:02 PM,10/28/2015 07:44:21 PM,10/28/2015 07:46:34 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Code 2 Transport,10/28/2015 07:53:35 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",153013610-E03 -151282204,55,15048591,Medical Incident,05/08/2015,05/08/2015,05/08/2015 02:53:17 PM,05/08/2015 02:53:34 PM,05/08/2015 02:53:55 PM,05/08/2015 02:54:06 PM,05/08/2015 03:03:54 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Patient Declined Transport,05/08/2015 03:53:45 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",151282204-55 -160973268,77,16038560,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:25:41 PM,04/06/2016 05:25:41 PM,04/06/2016 05:25:58 PM,04/06/2016 05:26:03 PM,04/06/2016 05:39:28 PM,04/06/2016 05:56:13 PM,04/06/2016 06:15:24 PM,Code 2 Transport,04/06/2016 06:47:37 PM,HYDE ST/CALIFORNIA ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160973268-77 -143563953,62,14127560,Medical Incident,12/22/2014,12/22/2014,12/22/2014 10:02:18 PM,12/22/2014 10:05:38 PM,12/22/2014 10:11:58 PM,12/22/2014 10:12:07 PM,12/22/2014 10:16:55 PM,12/22/2014 10:34:33 PM,12/22/2014 10:49:54 PM,Code 2 Transport,12/22/2014 11:24:54 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",143563953-62 -150432655,B03,15016803,Alarms,02/12/2015,02/12/2015,02/12/2015 04:46:34 PM,02/12/2015 04:47:51 PM,02/12/2015 04:48:00 PM,02/12/2015 04:49:38 PM,02/12/2015 04:54:02 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Fire,02/12/2015 05:00:28 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",150432655-B03 -150183220,RC2,15007268,Medical Incident,01/18/2015,01/18/2015,01/18/2015 09:46:53 PM,01/18/2015 09:48:41 PM,01/18/2015 09:49:54 PM,01/18/2015 09:51:22 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,Code 2 Transport,01/18/2015 09:54:24 PM,2400 Block of GRIFFITH ST,San Francisco,94124,B10,17,6573,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7191884467237, -122.386431507122)",150183220-RC2 -160993936,89,16039520,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:54:00 PM,04/08/2016 10:55:47 PM,04/08/2016 11:02:02 PM,04/08/2016 11:02:02 PM,04/08/2016 11:05:33 PM,04/08/2016 11:19:41 PM,04/08/2016 11:30:00 PM,Code 2 Transport,04/09/2016 12:00:23 AM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7821283722658, -122.415531198141)",160993936-89 -160943023,AM20,16037381,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:00:34 PM,04/03/2016 07:01:18 PM,04/03/2016 07:01:40 PM,04/03/2016 07:02:06 PM,04/03/2016 07:06:57 PM,04/03/2016 07:20:41 PM,04/03/2016 07:35:31 PM,Code 2 Transport,04/03/2016 08:04:17 PM,0 Block of COLUMBIA SQUARE ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7772769755923, -122.405617030416)",160943023-AM20 -150790013,B09,15030113,Structure Fire,03/20/2015,03/19/2015,03/20/2015 12:01:07 AM,03/20/2015 12:04:49 AM,03/20/2015 12:04:58 AM,03/20/2015 12:06:09 AM,03/20/2015 12:10:28 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 02:39:05 AM,MADRID ST/BRAZIL AV,San Francisco,94112,B09,43,6133,3,3,3,false,Alarm,1,CHIEF,3,9,11,Excelsior,"(37.7231672404647, -122.43163313445)",150790013-B09 -160973942,86,16038642,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:55:38 PM,04/06/2016 07:56:33 PM,04/06/2016 07:57:16 PM,04/06/2016 07:57:49 PM,04/06/2016 08:04:37 PM,04/06/2016 08:28:05 PM,04/06/2016 08:53:30 PM,Code 2 Transport,04/06/2016 09:28:33 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160973942-86 -151063422,RC2,15040203,Medical Incident,04/16/2015,04/16/2015,04/16/2015 07:32:18 PM,04/16/2015 07:33:31 PM,04/16/2015 07:35:07 PM,04/16/2015 07:36:04 PM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,Code 3 Transport,04/16/2015 07:41:15 PM,HAIGHT ST/STANYAN ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",151063422-RC2 -150061905,T02,15002311,Structure Fire,01/06/2015,01/06/2015,01/06/2015 01:56:40 PM,01/06/2015 01:56:40 PM,01/06/2015 01:56:46 PM,01/06/2015 01:58:16 PM,01/06/2015 01:59:13 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Fire,01/06/2015 01:59:15 PM,STOCKTON ST/PACIFIC AV,San Francisco,94133,B01,2,1332,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7967039027671, -122.40843088815)",150061905-T02 -151091658,RC3,15041266,Medical Incident,04/19/2015,04/19/2015,04/19/2015 12:49:43 PM,04/19/2015 12:50:13 PM,04/19/2015 12:50:57 PM,04/19/2015 12:52:18 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Against Medical Advice,04/19/2015 12:56:41 PM,4900 Block of 3RD ST,San Francisco,94124,B10,17,6514,E,E,3,true,Non Life-threatening,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7336495044123, -122.391238077668)",151091658-RC3 -153050965,E12,15117036,Medical Incident,11/01/2015,10/31/2015,11/01/2015 03:13:12 AM,11/01/2015 03:14:28 AM,11/01/2015 03:15:05 AM,11/01/2015 03:16:58 AM,11/01/2015 03:19:10 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 2 Transport,11/01/2015 03:20:04 AM,HAIGHT ST/CLAYTON ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",153050965-E12 -143103890,KM06,14109932,Medical Incident,11/06/2014,11/06/2014,11/06/2014 10:07:52 PM,11/06/2014 10:10:04 PM,11/06/2014 10:12:37 PM,11/06/2014 10:13:56 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,No Merit,11/06/2014 10:21:03 PM,100 Block of CYRIL MAGNIN ST,San Francisco,94102,B01,1,1363,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",143103890-KM06 -160970993,55,16038339,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:17:23 AM,04/06/2016 09:17:23 AM,04/06/2016 09:18:28 AM,04/06/2016 09:18:45 AM,04/06/2016 09:30:51 AM,04/06/2016 09:58:00 AM,04/06/2016 10:20:22 AM,Code 3 Transport,04/06/2016 10:51:58 AM,100 Block of BRIDGEVIEW DR,San Francisco,94124,B10,42,6453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7353451321776, -122.396732910008)",160970993-55 -153321697,62,15127693,Medical Incident,11/28/2015,11/28/2015,11/28/2015 01:07:53 PM,11/28/2015 01:08:19 PM,11/28/2015 01:08:37 PM,11/28/2015 01:08:48 PM,11/28/2015 01:12:16 PM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,Against Medical Advice,11/28/2015 01:56:34 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",153321697-62 -152264055,B04,15086343,Alarms,08/14/2015,08/14/2015,08/14/2015 11:06:40 PM,08/14/2015 11:08:06 PM,08/14/2015 11:08:47 PM,08/14/2015 11:10:15 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Fire,08/14/2015 11:12:39 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,false,Alarm,1,CHIEF,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",152264055-B04 -142060925,52,14071300,Structure Fire,07/25/2014,07/25/2014,07/25/2014 08:58:52 AM,07/25/2014 08:59:54 AM,07/25/2014 09:02:00 AM,07/25/2014 09:05:33 AM,07/25/2014 09:09:18 AM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Fire,07/25/2014 09:19:09 AM,3400 Block of PIERCE ST,San Francisco,94123,B04,16,3662,3,3,3,true,Alarm,1,MEDIC,7,4,2,Marina,"(37.8021393814199, -122.439755551629)",142060925-52 -160932705,AM10,16036965,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:30:57 PM,04/02/2016 05:30:57 PM,04/02/2016 05:31:40 PM,04/02/2016 05:32:16 PM,04/02/2016 05:38:43 PM,04/02/2016 05:44:48 PM,04/02/2016 06:03:29 PM,Code 2 Transport,04/02/2016 06:30:07 PM,3200 Block of 18TH ST,San Francisco,94110,B02,7,5424,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7621213524354, -122.415543548355)",160932705-AM10 -142451586,KM12,14085344,Medical Incident,09/02/2014,09/02/2014,09/02/2014 12:12:42 PM,09/02/2014 12:13:00 PM,09/02/2014 12:13:43 PM,09/02/2014 12:13:44 PM,09/02/2014 12:20:02 PM,09/02/2014 12:37:34 PM,09/02/2014 01:21:08 PM,Code 2 Transport,09/02/2014 01:36:14 PM,BAY ST/STOCKTON ST,San Francisco,94133,B01,28,1341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8060277167068, -122.410310842828)",142451586-KM12 -151402226,E08,15053210,Structure Fire,05/20/2015,05/20/2015,05/20/2015 02:58:39 PM,05/20/2015 02:59:38 PM,05/20/2015 02:59:47 PM,05/20/2015 03:01:01 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Fire,05/20/2015 03:20:53 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,10,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",151402226-E08 -141080239,86,14036448,Medical Incident,04/18/2014,04/18/2014,04/18/2014 02:31:10 PM,04/18/2014 02:33:00 PM,04/18/2014 02:37:41 PM,04/18/2014 02:37:41 PM,04/18/2014 02:38:36 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,No Merit,04/18/2014 02:42:12 PM,BUSH ST/TAYLOR ST,SAN FRANCISCO,94108,B01,41,1446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7897399070402, -122.412075869047)",141080239-86 -152873589,77,15110410,Medical Incident,10/14/2015,10/14/2015,10/14/2015 06:54:39 PM,10/14/2015 06:55:30 PM,10/14/2015 06:55:56 PM,10/14/2015 06:56:33 PM,10/14/2015 07:00:40 PM,10/14/2015 07:08:18 PM,10/14/2015 07:25:34 PM,Code 2 Transport,10/14/2015 07:44:09 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",152873589-77 -143650808,E28,14130585,Administrative,12/31/2014,12/31/2014,12/31/2014 09:06:50 AM,12/31/2014 09:07:00 AM,12/31/2014 09:07:14 AM,12/31/2014 09:07:41 AM,12/31/2014 09:13:43 AM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Other,12/31/2014 09:13:48 AM,1800 Block of STOCKTON ST,San Francisco,94133,B01,28,1335,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8027782547729, -122.409586942281)",143650808-E28 -160951363,54,16037591,Citizen Assist / Service Call,04/04/2016,04/04/2016,04/04/2016 11:07:31 AM,04/04/2016 11:10:22 AM,04/04/2016 11:24:26 AM,04/04/2016 11:24:36 AM,04/04/2016 11:35:53 AM,04/04/2016 11:57:46 AM,04/04/2016 12:23:50 PM,Code 2 Transport,04/04/2016 12:55:36 PM,700 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5643,3,3,3,true,Alarm,1,MEDIC,2,6,9,Bernal Heights,"(37.732924646566, -122.416428558162)",160951363-54 -142292998,T11,14079683,Alarms,08/17/2014,08/17/2014,08/17/2014 06:55:30 PM,08/17/2014 06:56:35 PM,08/17/2014 06:56:48 PM,08/17/2014 06:58:09 PM,08/17/2014 07:01:46 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Fire,08/17/2014 07:02:36 PM,1600 Block of DIAMOND ST,San Francisco,94131,B06,26,5557,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7443849548808, -122.435572829279)",142292998-T11 -160952948,66,16037727,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:31:19 PM,04/04/2016 05:31:19 PM,04/04/2016 05:31:51 PM,04/04/2016 05:32:11 PM,04/04/2016 05:44:50 PM,04/04/2016 06:11:15 PM,04/04/2016 06:46:30 PM,Code 2 Transport,04/04/2016 07:23:40 PM,3RD ST/STILLMAN ST,San Francisco,94107,B03,8,2174,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",160952948-66 -142200970,B04,14076266,Medical Incident,08/08/2014,08/08/2014,08/08/2014 09:26:52 AM,08/08/2014 09:26:52 AM,08/08/2014 09:28:58 AM,08/08/2014 09:30:23 AM,08/08/2014 09:35:14 AM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Code 2 Transport,08/08/2014 09:40:04 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,CHIEF,5,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142200970-B04 -141310813,KM06,14044501,Medical Incident,05/11/2014,05/11/2014,05/11/2014 08:32:12 AM,05/11/2014 08:34:05 AM,05/11/2014 08:34:35 AM,05/11/2014 08:35:29 AM,05/11/2014 08:40:30 AM,05/11/2014 08:58:44 AM,05/11/2014 09:08:25 AM,Code 2 Transport,05/11/2014 09:38:10 AM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.794138132306, -122.407728738815)",141310813-KM06 -160972156,85,16038440,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:33:22 PM,04/06/2016 01:35:46 PM,04/06/2016 01:38:26 PM,04/06/2016 01:40:14 PM,04/06/2016 01:59:31 PM,04/06/2016 02:20:55 PM,04/06/2016 02:30:16 PM,Code 2 Transport,04/06/2016 02:50:41 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160972156-85 -142060455,66,14071255,Medical Incident,07/25/2014,07/24/2014,07/25/2014 04:28:26 AM,07/25/2014 04:29:47 AM,07/25/2014 04:30:07 AM,07/25/2014 04:31:43 AM,07/25/2014 04:37:28 AM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Patient Declined Transport,07/25/2014 04:59:40 AM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",142060455-66 -153170966,74,15121758,Medical Incident,11/13/2015,11/13/2015,11/13/2015 08:42:19 AM,11/13/2015 08:44:49 AM,11/13/2015 08:45:56 AM,11/13/2015 08:46:09 AM,11/13/2015 09:00:37 AM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,No Merit,11/13/2015 09:03:27 AM,JONES ST/MARKET ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",153170966-74 -141640972,E05,14056469,Medical Incident,06/13/2014,06/13/2014,06/13/2014 09:37:32 AM,06/13/2014 09:38:36 AM,06/13/2014 09:45:24 AM,06/13/2014 09:47:04 AM,06/13/2014 09:57:36 AM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Fire,06/13/2014 10:03:29 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.769431688682, -122.424669373999)",141640972-E05 -160933028,AM14,16036993,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:04:06 PM,04/02/2016 07:04:44 PM,04/02/2016 07:05:06 PM,04/02/2016 07:06:00 PM,04/02/2016 07:14:03 PM,04/02/2016 07:17:14 PM,04/02/2016 07:46:03 PM,Code 2 Transport,04/02/2016 08:11:52 PM,900 Block of GILMAN AVE,San Francisco,94124,B10,17,6611,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7179170978407, -122.387453211837)",160933028-AM14 -161000013,70,16039549,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:59:17 PM,04/09/2016 12:04:23 AM,04/09/2016 12:04:38 AM,04/09/2016 12:04:50 AM,04/09/2016 12:15:23 AM,04/09/2016 12:41:07 AM,04/09/2016 12:51:37 AM,Code 2 Transport,04/09/2016 01:19:08 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",161000013-70 -143383548,77,14120141,Medical Incident,12/04/2014,12/04/2014,12/04/2014 08:50:55 PM,12/04/2014 08:52:03 PM,12/04/2014 08:52:46 PM,12/04/2014 08:53:15 PM,12/04/2014 08:55:37 PM,12/04/2014 09:12:12 PM,12/04/2014 09:15:21 PM,Code 2 Transport,12/04/2014 09:56:48 PM,1500 Block of CALIFORNIA ST,San Francisco,94109,B04,3,1635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",143383548-77 -141974143,82,14068406,Medical Incident,07/16/2014,07/16/2014,07/16/2014 11:58:51 PM,07/16/2014 11:59:16 PM,07/17/2014 12:00:13 AM,07/17/2014 12:00:55 AM,07/17/2014 12:03:37 AM,07/17/2014 12:22:39 AM,07/17/2014 12:58:30 AM,Code 2 Transport,07/17/2014 02:15:15 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",141974143-82 -161000775,62,16039658,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:06:20 AM,04/09/2016 08:07:14 AM,04/09/2016 08:08:28 AM,04/09/2016 08:08:43 AM,04/09/2016 08:14:35 AM,04/09/2016 08:31:12 AM,04/09/2016 08:49:12 AM,Code 2 Transport,04/09/2016 09:13:55 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",161000775-62 -152223598,88,15084781,Medical Incident,08/10/2015,08/10/2015,08/10/2015 09:56:42 PM,08/10/2015 09:56:42 PM,08/10/2015 09:57:44 PM,08/10/2015 09:57:55 PM,08/10/2015 10:07:55 PM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Patient Declined Transport,08/10/2015 10:46:25 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",152223598-88 -141310078,B04,14044432,Alarms,05/11/2014,05/10/2014,05/11/2014 12:29:58 AM,05/11/2014 12:31:54 AM,05/11/2014 12:33:03 AM,05/11/2014 12:37:44 AM,05/11/2014 12:37:44 AM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Fire,05/11/2014 12:40:31 AM,1400 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.790090632912, -122.420658749212)",141310078-B04 -160981288,KM12,16038857,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:11:46 AM,04/07/2016 10:12:36 AM,04/07/2016 10:12:56 AM,04/07/2016 10:13:40 AM,04/07/2016 10:15:28 AM,04/07/2016 10:39:49 AM,04/07/2016 11:02:32 AM,Code 2 Transport,04/07/2016 11:51:17 AM,1300 Block of HAYES ST,San Francisco,94117,B05,21,4244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7749393187177, -122.438643513422)",160981288-KM12 -151163097,72,15043964,Medical Incident,04/26/2015,04/26/2015,04/26/2015 08:05:15 PM,04/26/2015 08:06:41 PM,04/26/2015 08:38:25 PM,04/26/2015 08:38:52 PM,04/26/2015 08:52:35 PM,04/26/2015 08:52:36 PM,04/26/2015 09:06:50 PM,Code 2 Transport,04/26/2015 09:13:01 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",151163097-72 -143380075,75,14119794,Medical Incident,12/04/2014,12/03/2014,12/04/2014 12:28:27 AM,12/04/2014 12:29:37 AM,12/04/2014 12:32:38 AM,12/04/2014 12:32:50 AM,12/04/2014 12:40:14 AM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,Patient Declined Transport,12/04/2014 12:51:29 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",143380075-75 -161001335,88,16039728,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:25:50 AM,04/09/2016 11:27:33 AM,04/09/2016 11:30:14 AM,04/09/2016 11:30:39 AM,04/09/2016 11:53:11 AM,04/09/2016 12:02:04 PM,04/09/2016 12:34:51 PM,Code 2 Transport,04/09/2016 01:07:54 PM,2400 Block of 44TH AVE,San Francisco,94116,B08,18,7665,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7409346206043, -122.50234227379)",161001335-88 -142203012,86,14076465,Medical Incident,08/08/2014,08/08/2014,08/08/2014 06:38:01 PM,08/08/2014 06:38:01 PM,08/08/2014 06:55:41 PM,08/08/2014 06:55:49 PM,08/08/2014 06:59:27 PM,08/08/2014 07:05:00 PM,08/08/2014 07:19:19 PM,Code 2 Transport,08/08/2014 07:24:29 PM,400 Block of 3RD AVE,San Francisco,94118,B07,31,7117,3,3,3,false,Potentially Life-Threatening,1,MEDIC,4,7,1,Inner Richmond,"(37.7801944963642, -122.461066150045)",142203012-86 -141890703,E41,14065423,Medical Incident,07/08/2014,07/07/2014,07/08/2014 07:55:39 AM,07/08/2014 07:59:38 AM,07/08/2014 07:59:55 AM,07/08/2014 08:02:12 AM,07/08/2014 08:10:09 AM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/08/2014 08:16:28 AM,700 Block of SUTTER ST,San Francisco,94109,B01,3,1463,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",141890703-E41 -143123467,AM20,14110676,Medical Incident,11/08/2014,11/08/2014,11/08/2014 09:11:27 PM,11/08/2014 09:11:48 PM,11/08/2014 09:12:54 PM,11/08/2014 09:14:05 PM,11/08/2014 09:18:13 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Patient Declined Transport,11/08/2014 10:08:17 PM,600 Block of ELIZABETH ST,San Francisco,94114,B06,24,5515,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,8,Noe Valley,"(37.7520810030582, -122.435274998348)",143123467-AM20 -160994011,53,16039528,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:21:00 PM,04/08/2016 11:21:00 PM,04/08/2016 11:22:53 PM,04/08/2016 11:23:12 PM,04/08/2016 11:50:59 PM,04/08/2016 11:51:03 PM,04/09/2016 12:02:35 AM,Code 2 Transport,04/09/2016 12:27:03 AM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160994011-53 -151000384,60,15037725,Medical Incident,04/10/2015,04/09/2015,04/10/2015 05:25:46 AM,04/10/2015 05:27:31 AM,04/10/2015 05:29:46 AM,04/10/2015 05:30:05 AM,04/10/2015 05:40:08 AM,04/10/2015 05:54:30 AM,04/10/2015 06:06:19 AM,Code 2 Transport,04/10/2015 06:29:21 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",151000384-60 -142130978,T03,14073777,Structure Fire,08/01/2014,08/01/2014,08/01/2014 09:25:21 AM,08/01/2014 09:25:21 AM,08/01/2014 09:25:47 AM,08/01/2014 09:27:54 AM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Code 2 Transport,08/01/2014 09:29:43 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,false,Alarm,1,TRUCK,5,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",142130978-T03 -151030216,AM20,15038798,Medical Incident,04/13/2015,04/12/2015,04/13/2015 02:04:12 AM,04/13/2015 02:05:45 AM,04/13/2015 02:06:05 AM,04/13/2015 02:06:35 AM,04/13/2015 02:10:00 AM,04/13/2015 02:24:21 AM,04/13/2015 02:40:07 AM,Code 2 Transport,04/13/2015 03:02:58 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",151030216-AM20 -141352252,AM26,14046211,Traffic Collision,05/15/2014,05/15/2014,05/15/2014 02:45:46 PM,05/15/2014 02:46:31 PM,05/15/2014 02:47:53 PM,05/15/2014 02:48:43 PM,05/15/2014 02:51:59 PM,05/15/2014 03:02:58 PM,05/15/2014 03:35:33 PM,Code 2 Transport,05/15/2014 04:09:14 PM,GILMAN AV/PAUL AV,San Francisco,94124,B10,17,6614,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7224316058888, -122.395622760595)",141352252-AM26 -142931010,89,14103277,Medical Incident,10/20/2014,10/20/2014,10/20/2014 09:54:02 AM,10/20/2014 09:55:00 AM,10/20/2014 09:57:45 AM,10/20/2014 09:58:31 AM,10/20/2014 10:10:28 AM,10/20/2014 10:30:27 AM,10/20/2014 10:44:18 AM,Code 2 Transport,10/20/2014 10:57:41 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",142931010-89 -160991810,AM02,16039312,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:34:50 PM,04/08/2016 01:36:17 PM,04/08/2016 01:48:05 PM,04/08/2016 01:48:30 PM,04/08/2016 01:56:05 PM,04/08/2016 02:03:36 PM,04/08/2016 02:31:02 PM,Code 2 Transport,04/08/2016 03:10:40 PM,4TH ST/MISSION ST,San Francisco,94103,B03,1,2213,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",160991810-AM02 -153440335,T03,15132287,Alarms,12/10/2015,12/09/2015,12/10/2015 03:42:11 AM,12/10/2015 03:45:22 AM,12/10/2015 03:45:37 AM,12/10/2015 03:46:45 AM,12/10/2015 03:48:45 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Fire,12/10/2015 03:57:03 AM,1400 Block of LARKIN ST,San Francisco,94109,B04,41,1635,3,3,3,false,Alarm,1,TRUCK,1,4,3,Nob Hill,"(37.7912547502949, -122.419060635955)",153440335-T03 -150871897,E20,15033226,Structure Fire,03/28/2015,03/28/2015,03/28/2015 01:33:22 PM,03/28/2015 01:34:07 PM,03/28/2015 01:34:39 PM,03/28/2015 01:35:53 PM,03/28/2015 01:39:55 PM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Fire,03/28/2015 02:59:33 PM,300 Block of JUDAH ST,San Francisco,94122,B08,22,7334,3,3,3,true,Fire,1,ENGINE,5,8,5,Inner Sunset,"(37.7622532632059, -122.465651521109)",150871897-E20 -152753632,E04,15105515,Medical Incident,10/02/2015,10/02/2015,10/02/2015 08:47:16 PM,10/02/2015 08:49:01 PM,10/02/2015 08:50:06 PM,10/02/2015 08:51:26 PM,10/02/2015 09:04:32 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,No Merit,10/02/2015 09:15:25 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",152753632-E04 -143453410,T08,14123056,Alarms,12/11/2014,12/11/2014,12/11/2014 08:07:18 PM,12/11/2014 08:08:27 PM,12/11/2014 08:08:34 PM,12/11/2014 08:09:49 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Fire,12/11/2014 08:52:38 PM,200 Block of CLARA ST,San Francisco,94107,B03,8,2243,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7786181340292, -122.403540316869)",143453410-T08 -141623205,B01,14055985,Alarms,06/11/2014,06/11/2014,06/11/2014 08:15:56 PM,06/11/2014 08:17:03 PM,06/11/2014 08:17:40 PM,06/11/2014 08:18:55 PM,06/11/2014 08:20:33 PM,04/25/2016 01:16:49 PM,04/25/2016 01:16:49 PM,Fire,06/11/2014 08:23:38 PM,600 Block of MONTGOMERY ST,San Francisco,94111,B01,13,1233,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7948751336497, -122.403112031242)",141623205-B01 -141831196,E02,14063256,Other,07/02/2014,07/02/2014,07/02/2014 10:42:18 AM,07/02/2014 10:45:11 AM,07/02/2014 10:45:43 AM,07/02/2014 10:48:34 AM,07/02/2014 10:48:34 AM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Fire,07/02/2014 10:56:27 AM,400 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7898930161582, -122.407112815209)",141831196-E02 -151740406,T06,15066277,Outside Fire,06/23/2015,06/22/2015,06/23/2015 05:32:25 AM,06/23/2015 05:35:15 AM,06/23/2015 05:35:44 AM,06/23/2015 05:37:52 AM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Fire,06/23/2015 05:40:14 AM,200 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,3,3,3,false,Fire,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7684845842925, -122.438671421834)",151740406-T06 -141230117,E48,14041620,Administrative,05/03/2014,05/03/2014,05/03/2014 10:09:03 AM,05/03/2014 10:09:07 AM,05/03/2014 10:09:17 AM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Other,05/03/2014 10:09:47 AM,800 Block of AVENUE D,,94130,B03,48,2931,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",141230117-E48 -152760136,E14,15105600,Medical Incident,10/03/2015,10/02/2015,10/03/2015 12:49:11 AM,10/03/2015 12:49:11 AM,10/03/2015 12:49:46 AM,10/03/2015 12:51:45 AM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,04/25/2016 01:08:00 PM,Code 2 Transport,10/03/2015 12:55:57 AM,3100 Block of CLEMENT ST,San Francisco,94121,B07,14,7237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7815971138281, -122.492906734383)",152760136-E14 -153462547,77,15133306,Traffic Collision,12/12/2015,12/12/2015,12/12/2015 03:32:27 PM,12/12/2015 03:34:12 PM,12/12/2015 03:34:23 PM,12/12/2015 03:35:54 PM,12/12/2015 03:44:26 PM,12/12/2015 04:03:22 PM,12/12/2015 04:14:23 PM,Code 2 Transport,12/12/2015 04:56:46 PM,VAN NESS AV/GEARY BL,San Francisco,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",153462547-77 -150583199,63,15022291,Medical Incident,02/27/2015,02/27/2015,02/27/2015 07:30:16 PM,02/27/2015 07:31:49 PM,02/27/2015 07:32:16 PM,02/27/2015 07:32:27 PM,02/27/2015 07:39:32 PM,02/27/2015 08:03:26 PM,02/27/2015 08:17:02 PM,Code 2 Transport,02/27/2015 08:48:55 PM,0 Block of CASA WAY,San Francisco,94123,B04,16,3563,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8056782117499, -122.439043901003)",150583199-63 -150063054,KM14,15002423,Medical Incident,01/06/2015,01/06/2015,01/06/2015 06:57:03 PM,01/06/2015 06:57:03 PM,01/06/2015 07:00:41 PM,01/06/2015 07:00:49 PM,01/06/2015 07:10:48 PM,01/06/2015 07:33:53 PM,01/06/2015 07:50:16 PM,Code 2 Transport,01/06/2015 08:00:44 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",150063054-KM14 -160993654,AM24,16039481,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:28:59 PM,04/08/2016 09:29:34 PM,04/08/2016 09:32:22 PM,04/08/2016 09:34:55 PM,04/08/2016 09:40:07 PM,04/08/2016 09:50:41 PM,04/08/2016 10:14:09 PM,Code 2 Transport,04/08/2016 10:38:03 PM,1900 Block of 23RD ST,San Francisco,94107,B10,37,2561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7547646595372, -122.399285688665)",160993654-AM24 -151301746,55,15049360,Medical Incident,05/10/2015,05/10/2015,05/10/2015 02:25:41 PM,05/10/2015 02:27:03 PM,05/10/2015 02:27:18 PM,05/10/2015 02:27:26 PM,05/10/2015 02:40:04 PM,05/10/2015 03:00:24 PM,05/10/2015 03:24:58 PM,Code 2 Transport,05/10/2015 03:53:50 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",151301746-55 -143490918,65,14124545,Medical Incident,12/15/2014,12/15/2014,12/15/2014 09:33:13 AM,12/15/2014 09:33:41 AM,12/15/2014 09:34:57 AM,12/15/2014 09:35:06 AM,12/15/2014 09:46:09 AM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Unable to Locate,12/15/2014 09:48:47 AM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",143490918-65 -160922614,77,16036529,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:01:52 PM,04/01/2016 05:03:48 PM,04/01/2016 05:04:06 PM,04/01/2016 05:04:23 PM,04/01/2016 05:06:36 PM,04/01/2016 05:17:44 PM,04/01/2016 05:41:22 PM,Code 2 Transport,04/01/2016 06:10:00 PM,1200 Block of LA PLAYA,San Francisco,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7630908951705, -122.509266553866)",160922614-77 -153052141,E43,15117164,Medical Incident,11/01/2015,11/01/2015,11/01/2015 11:46:54 AM,11/01/2015 11:46:54 AM,11/01/2015 11:47:16 AM,11/01/2015 11:47:51 AM,11/01/2015 11:58:38 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 2 Transport,11/01/2015 12:02:29 PM,GENEVA AV/CARTER ST,San Francisco,94134,B09,43,6245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Excelsior,"(37.7092509506804, -122.423353437119)",153052141-E43 -153003218,E10,15115247,Traffic Collision,10/27/2015,10/27/2015,10/27/2015 07:27:59 PM,10/27/2015 07:27:59 PM,10/27/2015 07:28:43 PM,10/27/2015 07:29:56 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Code 2 Transport,10/27/2015 07:33:07 PM,MASONIC AV/FELL ST,San Francisco,94117,B05,21,4464,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",153003218-E10 -142940394,81,14103573,Medical Incident,10/21/2014,10/20/2014,10/21/2014 04:57:20 AM,10/21/2014 04:59:03 AM,10/21/2014 05:00:37 AM,10/21/2014 05:00:46 AM,10/21/2014 05:12:40 AM,10/21/2014 05:25:10 AM,10/21/2014 05:39:45 AM,Code 2 Transport,10/21/2014 06:19:38 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",142940394-81 -151450556,E01,15055056,Medical Incident,05/25/2015,05/24/2015,05/25/2015 06:42:37 AM,05/25/2015 06:43:15 AM,05/25/2015 06:45:18 AM,05/25/2015 06:45:18 AM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,04/25/2016 01:10:24 PM,Code 2 Transport,05/25/2015 06:48:01 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151450556-E01 -153384147,T02,15130279,Elevator / Escalator Rescue,12/04/2015,12/04/2015,12/04/2015 11:37:15 PM,12/04/2015 11:38:32 PM,12/04/2015 11:40:28 PM,12/04/2015 11:42:37 PM,12/04/2015 11:45:47 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Fire,12/05/2015 12:04:01 AM,300 Block of POST ST,San Francisco,94108,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7883420975425, -122.407575452565)",153384147-T02 -151571788,E42,15059938,Medical Incident,06/06/2015,06/06/2015,06/06/2015 01:25:53 PM,06/06/2015 01:28:14 PM,06/06/2015 01:28:24 PM,06/06/2015 01:30:01 PM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Cancelled,06/06/2015 01:32:03 PM,200 Block of BRIDGEVIEW DR,San Francisco,94124,B10,42,6453,2,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7341892337922, -122.397454110928)",151571788-E42 -151020506,B02,15038464,Structure Fire,04/12/2015,04/11/2015,04/12/2015 04:15:32 AM,04/12/2015 04:16:57 AM,04/12/2015 04:17:13 AM,04/12/2015 04:18:22 AM,04/12/2015 04:20:13 AM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Fire,04/12/2015 04:28:03 AM,500 Block of PAGE ST,San Francisco,94117,B05,6,3531,3,3,3,false,Alarm,1,CHIEF,4,2,5,Hayes Valley,"(37.7730893171157, -122.429798621528)",151020506-B02 -150763870,AM24,15029323,Medical Incident,03/17/2015,03/17/2015,03/17/2015 10:02:42 PM,03/17/2015 10:05:04 PM,03/17/2015 10:05:19 PM,03/17/2015 10:05:43 PM,03/17/2015 10:17:26 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,No Merit,03/17/2015 10:22:10 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",150763870-AM24 -160992964,77,16039417,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:12:01 PM,04/08/2016 06:16:11 PM,04/08/2016 06:16:18 PM,04/08/2016 06:17:28 PM,04/08/2016 06:36:33 PM,04/08/2016 06:50:00 PM,04/08/2016 07:13:49 PM,Code 2 Transport,04/08/2016 07:30:33 PM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8061880612091, -122.416243833913)",160992964-77 -153440301,B01,15132279,Alarms,12/10/2015,12/09/2015,12/10/2015 03:22:54 AM,12/10/2015 03:23:52 AM,12/10/2015 03:24:13 AM,12/10/2015 03:25:57 AM,12/10/2015 03:28:52 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Fire,12/10/2015 03:39:00 AM,1800 Block of GREEN ST,San Francisco,94123,B04,16,3354,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.7968332559438, -122.42953707363)",153440301-B01 -152333638,KM07,15088983,Medical Incident,08/21/2015,08/21/2015,08/21/2015 08:32:47 PM,08/21/2015 08:32:54 PM,08/21/2015 08:33:23 PM,08/21/2015 08:33:51 PM,08/21/2015 08:43:37 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,No Merit,08/21/2015 08:56:56 PM,1400 Block of 39TH AVE,San Francisco,94122,B08,23,7625,3,3,3,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7598248382333, -122.498289765101)",152333638-KM07 -160993995,AM20,16039526,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:16:07 PM,04/08/2016 11:16:27 PM,04/08/2016 11:17:11 PM,04/08/2016 11:17:47 PM,04/08/2016 11:27:38 PM,04/08/2016 11:47:57 PM,04/09/2016 12:15:11 AM,Code 2 Transport,04/09/2016 12:55:56 AM,400 Block of ROLPH ST,San Francisco,94112,B09,43,6226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7123368698446, -122.433796156182)",160993995-AM20 -150432501,E13,15016784,Medical Incident,02/12/2015,02/12/2015,02/12/2015 04:04:21 PM,02/12/2015 04:04:21 PM,02/12/2015 04:05:57 PM,02/12/2015 04:06:34 PM,02/12/2015 04:10:04 PM,04/25/2016 01:12:17 PM,04/25/2016 01:12:17 PM,Code 2 Transport,02/12/2015 04:17:51 PM,KEARNY ST/GEARY ST,San Francisco,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7879630907543, -122.403491776385)",150432501-E13 -150340574,KM09,15013009,Medical Incident,02/03/2015,02/02/2015,02/03/2015 07:14:19 AM,02/03/2015 07:14:41 AM,02/03/2015 07:15:13 AM,02/03/2015 07:16:48 AM,02/03/2015 07:24:18 AM,02/03/2015 07:36:42 AM,02/03/2015 07:58:19 AM,Code 2 Transport,02/03/2015 08:47:37 AM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7751756623626, -122.413488730988)",150340574-KM09 -152761063,75,15105697,Medical Incident,10/03/2015,10/03/2015,10/03/2015 09:20:33 AM,10/03/2015 09:21:03 AM,10/03/2015 09:21:37 AM,10/03/2015 09:22:09 AM,10/03/2015 09:27:42 AM,10/03/2015 09:51:50 AM,10/03/2015 09:56:52 AM,Code 2 Transport,10/03/2015 10:45:44 AM,0 Block of ELLIS ST,San Francisco,94102,B02,1,1322,2,3,3,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7856720367472, -122.406852525575)",152761063-75 -141633195,54,14056333,Structure Fire,06/12/2014,06/12/2014,06/12/2014 08:47:49 PM,06/12/2014 08:48:58 PM,06/12/2014 08:49:21 PM,06/12/2014 08:49:35 PM,06/12/2014 08:52:49 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Fire,06/12/2014 08:59:52 PM,1900 Block of FULTON ST,San Francisco,94117,B05,21,4522,3,3,3,true,Alarm,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7753902625756, -122.44926791485)",141633195-54 -142470251,84,14085913,Medical Incident,09/04/2014,09/03/2014,09/04/2014 02:00:44 AM,09/04/2014 02:02:19 AM,09/04/2014 02:02:55 AM,09/04/2014 02:03:17 AM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Code 2 Transport,09/04/2014 02:04:41 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7777990101501, -122.40029776053)",142470251-84 -142822038,E25,14099286,Alarms,10/09/2014,10/09/2014,10/09/2014 02:25:44 PM,10/09/2014 02:27:45 PM,10/09/2014 02:28:25 PM,10/09/2014 02:30:24 PM,10/09/2014 02:33:34 PM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,Fire,10/09/2014 02:42:58 PM,1200 Block of INDIANA ST,San Francisco,94107,B10,25,2573,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7539362428116, -122.390732816042)",142822038-E25 -141090339,T09,14036911,Structure Fire,04/19/2014,04/19/2014,04/19/2014 09:29:54 PM,04/19/2014 09:31:02 PM,04/19/2014 09:31:18 PM,04/19/2014 09:32:54 PM,04/19/2014 09:36:48 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Fire,04/19/2014 09:39:16 PM,1700 Block of REVERE AVE,SAN FRANCISCO,94124,B10,17,6514,3,3,3,false,Alarm,1,TRUCK,5,10,10,Bayview Hunters Point,"(37.733154464931, -122.392672357808)",141090339-T09 -160932949,AM20,16036985,Medical Incident,04/02/2016,04/02/2016,04/02/2016 06:40:43 PM,04/02/2016 06:40:43 PM,04/02/2016 06:41:37 PM,04/02/2016 06:42:15 PM,04/02/2016 06:45:49 PM,04/02/2016 06:55:28 PM,04/02/2016 07:04:47 PM,Code 2 Transport,04/02/2016 07:26:58 PM,400 Block of 14TH ST,San Francisco,94103,B02,6,5214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7681278298266, -122.423310668511)",160932949-AM20 -160942240,62,16037304,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:05:02 PM,04/03/2016 03:06:15 PM,04/03/2016 03:06:34 PM,04/03/2016 03:07:08 PM,04/03/2016 03:12:30 PM,04/03/2016 03:25:08 PM,04/03/2016 03:51:36 PM,Code 2 Transport,04/03/2016 04:45:19 PM,1500 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160942240-62 -142093424,84,14072627,Traffic Collision,07/28/2014,07/28/2014,07/28/2014 10:19:05 PM,07/28/2014 10:19:29 PM,07/28/2014 10:29:03 PM,07/28/2014 10:29:27 PM,07/28/2014 10:38:14 PM,07/28/2014 10:53:56 PM,07/28/2014 11:11:02 PM,Code 2 Transport,07/29/2014 12:05:41 AM,POST ST/JONES ST,San Francisco,94109,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,9,1,3,Tenderloin,"(37.787663597879, -122.413353964838)",142093424-84 -151963772,E10,15074929,Transfer,07/15/2015,07/15/2015,07/15/2015 10:52:00 PM,07/15/2015 10:52:45 PM,07/15/2015 10:53:06 PM,07/15/2015 10:54:20 PM,07/15/2015 10:56:42 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Fire,07/15/2015 10:58:49 PM,1600 Block of SCOTT ST,San Francisco,94115,B04,10,4131,3,3,3,true,Alarm,1,ENGINE,1,5,5,Japantown,"(37.7849864733147, -122.438181369407)",151963772-E10 -160981232,57,16038847,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:55:05 AM,04/07/2016 09:57:48 AM,04/07/2016 09:58:15 AM,04/07/2016 09:58:38 AM,04/07/2016 10:09:04 AM,04/07/2016 10:25:49 AM,04/07/2016 11:05:50 AM,Code 2 Transport,04/07/2016 11:37:29 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160981232-57 -143012791,AM20,14106359,Medical Incident,10/28/2014,10/28/2014,10/28/2014 06:30:21 PM,10/28/2014 06:32:35 PM,10/28/2014 06:33:05 PM,10/28/2014 06:34:47 PM,10/28/2014 06:38:02 PM,10/28/2014 06:43:07 PM,10/28/2014 07:04:43 PM,Code 2 Transport,10/28/2014 07:39:02 PM,400 Block of SILVER AVE,San Francisco,94112,B09,32,6143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7285368903189, -122.426997607236)",143012791-AM20 -160940665,KM03,16037162,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:22:44 AM,04/03/2016 05:24:03 AM,04/03/2016 05:24:20 AM,04/03/2016 05:24:59 AM,04/03/2016 05:30:51 AM,04/03/2016 05:51:59 AM,04/03/2016 06:13:07 AM,Code 2 Transport,04/03/2016 06:26:06 AM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",160940665-KM03 -152722933,58,15104239,Traffic Collision,09/29/2015,09/29/2015,09/29/2015 05:39:40 PM,09/29/2015 05:39:40 PM,09/29/2015 05:40:46 PM,09/29/2015 05:41:00 PM,09/29/2015 05:43:59 PM,09/29/2015 05:56:34 PM,09/29/2015 06:06:38 PM,Code 2 Transport,09/29/2015 06:39:41 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",152722933-58 -161001332,61,16039727,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:26:40 AM,04/09/2016 11:27:09 AM,04/09/2016 11:27:54 AM,04/09/2016 11:28:02 AM,04/09/2016 11:42:32 AM,04/09/2016 11:50:40 AM,04/09/2016 12:04:13 PM,Code 2 Transport,04/09/2016 12:29:32 PM,1700 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7726948236861, -122.422188261426)",161001332-61 -160981910,73,16038920,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:52:36 PM,04/07/2016 12:53:51 PM,04/07/2016 12:54:42 PM,04/07/2016 12:55:05 PM,04/07/2016 01:06:17 PM,04/07/2016 01:29:26 PM,04/07/2016 01:57:57 PM,Code 2 Transport,04/07/2016 02:37:08 PM,1200 Block of 15TH AVE,San Francisco,94122,B08,22,7366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7646998273343, -122.472787133735)",160981910-73 -160932199,71,16036913,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:16:08 PM,04/02/2016 03:18:49 PM,04/02/2016 03:19:39 PM,04/02/2016 03:19:44 PM,04/02/2016 03:32:25 PM,04/02/2016 03:43:13 PM,04/02/2016 04:03:58 PM,Code 2 Transport,04/02/2016 04:29:59 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160932199-71 -142853820,85,14100620,Medical Incident,10/12/2014,10/12/2014,10/12/2014 09:50:08 PM,10/12/2014 09:52:31 PM,10/12/2014 09:52:53 PM,10/12/2014 09:53:03 PM,10/12/2014 10:04:56 PM,10/12/2014 10:28:24 PM,10/12/2014 10:56:05 PM,Code 2 Transport,10/12/2014 11:14:38 PM,200 Block of SHIPLEY ST,San Francisco,94107,B03,1,2253,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7784980708735, -122.404427110658)",142853820-85 -160960060,63,16037848,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:25:35 AM,04/05/2016 12:27:24 AM,04/05/2016 12:27:48 AM,04/05/2016 12:28:12 AM,04/05/2016 12:37:12 AM,04/05/2016 12:55:52 AM,04/05/2016 12:10:00 AM,Code 2 Transport,04/05/2016 01:47:53 AM,1300 Block of 35TH AVE,San Francisco,94122,B08,23,7564,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7618724655505, -122.494274168693)",160960060-63 -160961814,77,16038015,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:57:33 PM,04/05/2016 12:59:47 PM,04/05/2016 01:00:29 PM,04/05/2016 01:00:56 PM,04/05/2016 01:08:29 PM,04/05/2016 01:30:18 PM,04/05/2016 01:56:42 PM,Code 2 Transport,04/05/2016 02:27:52 PM,0 Block of PETERS AV,San Francisco,94110,B06,11,5662,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7450089219972, -122.419443973575)",160961814-77 -160921854,KM11,16036456,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:44:10 PM,04/01/2016 01:46:02 PM,04/01/2016 01:46:31 PM,04/01/2016 01:51:12 PM,04/01/2016 01:51:12 PM,04/01/2016 01:53:50 PM,04/01/2016 02:06:52 PM,Code 2 Transport,04/01/2016 02:32:01 PM,11TH ST/FOLSOM ST,San Francisco,94103,B02,36,5114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.771863706441, -122.414026708032)",160921854-KM11 -143152923,AP,14111693,Other,11/11/2014,11/11/2014,11/11/2014 07:23:43 PM,11/11/2014 07:23:43 PM,11/11/2014 07:23:43 PM,11/11/2014 07:23:43 PM,11/11/2014 07:23:43 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Fire,11/11/2014 07:23:43 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",143152923-AP -150911871,KM06,15034606,Medical Incident,04/01/2015,04/01/2015,04/01/2015 01:20:02 PM,04/01/2015 01:23:00 PM,04/01/2015 01:23:36 PM,04/01/2015 01:24:53 PM,04/01/2015 01:36:23 PM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,No Merit,04/01/2015 01:45:31 PM,2400 Block of GEARY BLVD,San Francisco,94115,B05,10,4261,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",150911871-KM06 -153291475,E03,15126592,Medical Incident,11/25/2015,11/25/2015,11/25/2015 11:34:32 AM,11/25/2015 11:37:33 AM,11/25/2015 11:38:01 AM,11/25/2015 11:40:05 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Patient Declined Transport,11/25/2015 11:42:33 AM,VAN NESS AV/SACRAMENTO ST,San Francisco,94109,B04,38,3155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7912888912559, -122.422514944187)",153291475-E03 -160943396,53,16037427,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:18:23 PM,04/03/2016 09:19:22 PM,04/03/2016 09:19:38 PM,04/03/2016 09:19:51 PM,04/03/2016 09:27:57 PM,04/03/2016 09:36:58 PM,04/03/2016 10:06:43 PM,Code 2 Transport,04/03/2016 10:38:10 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160943396-53 -152693551,RC3,15103238,Medical Incident,09/26/2015,09/26/2015,09/26/2015 08:52:27 PM,09/26/2015 08:53:10 PM,09/26/2015 09:20:09 PM,09/26/2015 09:21:27 PM,09/26/2015 09:26:33 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Against Medical Advice,09/26/2015 09:41:47 PM,1100 Block of FOLSOM ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7765710578401, -122.408160058123)",152693551-RC3 -153260778,85,15125421,Medical Incident,11/22/2015,11/21/2015,11/22/2015 07:59:36 AM,11/22/2015 07:59:36 AM,11/22/2015 08:01:30 AM,11/22/2015 08:01:41 AM,11/22/2015 08:11:43 AM,11/22/2015 08:25:19 AM,11/22/2015 08:28:42 AM,Code 2 Transport,11/22/2015 09:18:57 AM,900 Block of BUSH ST,San Francisco,94109,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",153260778-85 -160983759,72,16039118,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:34:35 PM,04/07/2016 09:36:23 PM,04/07/2016 09:37:08 PM,04/07/2016 09:37:17 PM,04/07/2016 10:00:42 PM,04/07/2016 10:18:32 PM,04/07/2016 10:44:09 PM,Code 2 Transport,04/07/2016 11:40:00 PM,7500 Block of GEARY BLVD,San Francisco,94121,B07,34,7264,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.779202123681, -122.501331891706)",160983759-72 -142143248,67,14074358,Medical Incident,08/02/2014,08/02/2014,08/02/2014 09:26:53 PM,08/02/2014 09:28:02 PM,08/02/2014 09:29:29 PM,08/02/2014 09:29:36 PM,08/02/2014 09:32:39 PM,08/02/2014 09:43:40 PM,08/02/2014 10:00:34 PM,Code 2 Transport,08/02/2014 10:27:46 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",142143248-67 -161003378,53,16039967,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:12:12 PM,04/09/2016 10:13:45 PM,04/09/2016 10:14:02 PM,04/09/2016 10:14:10 PM,04/09/2016 10:18:15 PM,04/09/2016 10:31:06 PM,04/09/2016 10:59:02 PM,Code 2 Transport,04/09/2016 11:25:42 PM,2200 Block of FULTON ST,San Francisco,94118,B05,21,4542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7749173457757, -122.45385402151)",161003378-53 -151750390,E03,15066593,Medical Incident,06/24/2015,06/23/2015,06/24/2015 05:10:10 AM,06/24/2015 05:10:52 AM,06/24/2015 05:11:46 AM,06/24/2015 05:13:23 AM,06/24/2015 05:18:20 AM,04/25/2016 01:09:50 PM,04/25/2016 01:09:50 PM,Code 2 Transport,06/24/2015 05:31:24 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",151750390-E03 -160972782,KM10,16038503,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:46:22 PM,04/06/2016 03:49:28 PM,04/06/2016 03:49:41 PM,04/06/2016 03:50:20 PM,04/06/2016 04:01:17 PM,04/06/2016 04:17:33 PM,04/06/2016 04:34:29 PM,Code 2 Transport,04/06/2016 05:02:35 PM,48TH AV/POINT LOBOS AV,San Francisco,94121,B07,34,7313,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.779851069188, -122.509432938414)",160972782-KM10 -150350269,AM24,15013340,Medical Incident,02/04/2015,02/03/2015,02/04/2015 02:13:13 AM,02/04/2015 02:14:13 AM,02/04/2015 02:20:57 AM,02/04/2015 02:20:57 AM,02/04/2015 02:44:02 AM,02/04/2015 02:44:08 AM,02/04/2015 02:58:26 AM,Code 3 Transport,02/04/2015 03:44:44 AM,400 Block of 31ST AVE,San Francisco,94121,B07,14,7237,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",150350269-AM24 -151140723,70,15042995,Medical Incident,04/24/2015,04/24/2015,04/24/2015 08:11:16 AM,04/24/2015 08:13:24 AM,04/24/2015 08:13:43 AM,04/24/2015 08:14:05 AM,04/24/2015 08:39:31 AM,04/24/2015 09:06:11 AM,04/24/2015 09:32:50 AM,Code 2 Transport,04/24/2015 10:06:30 AM,100 Block of EVERSON ST,San Francisco,94131,B06,26,8117,2,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7387288505192, -122.432719348311)",151140723-70 -160954131,78,16037833,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:26:22 PM,04/04/2016 11:26:22 PM,04/04/2016 11:26:32 PM,04/04/2016 11:26:38 PM,04/04/2016 11:44:07 PM,04/05/2016 12:07:48 AM,04/05/2016 12:16:00 AM,Code 2 Transport,04/05/2016 12:51:32 AM,3200 Block of 25TH ST,San Francisco,94110,B06,11,5534,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7507663247144, -122.415272717729)",160954131-78 -160941365,75,16037225,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:50:40 AM,04/03/2016 10:51:07 AM,04/03/2016 10:51:30 AM,04/03/2016 10:51:37 AM,04/03/2016 10:55:06 AM,04/03/2016 11:07:50 AM,04/03/2016 11:37:30 AM,Code 2 Transport,04/03/2016 12:02:37 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160941365-75 -151612870,RWC2,15061643,Medical Incident,06/10/2015,06/10/2015,06/10/2015 05:51:34 PM,06/10/2015 05:52:30 PM,06/10/2015 06:02:26 PM,06/10/2015 06:04:46 PM,06/10/2015 06:14:53 PM,04/25/2016 01:10:04 PM,04/25/2016 01:10:04 PM,Code 3 Transport,06/10/2015 07:44:18 PM,300 Block of LOWER FORT MASON ST,Fort Mason,94123,B99,51,3343,2,3,3,false,Potentially Life-Threatening,1,SUPPORT,5,4,2,Marina,"(37.8058923703038, -122.431246520303)",151612870-RWC2 -152370752,74,15090206,Medical Incident,08/25/2015,08/24/2015,08/25/2015 07:54:31 AM,08/25/2015 07:59:05 AM,08/25/2015 08:00:17 AM,08/25/2015 08:02:12 AM,08/25/2015 08:10:58 AM,08/25/2015 08:30:23 AM,08/25/2015 08:38:53 AM,Code 2 Transport,08/25/2015 09:13:23 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",152370752-74 -141160005,67,14039012,Medical Incident,04/26/2014,04/25/2014,04/26/2014 12:07:33 AM,04/26/2014 12:14:33 AM,04/26/2014 12:16:28 AM,04/26/2014 12:16:35 AM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Patient Declined Transport,04/26/2014 12:29:20 AM,0 Block of KISKA RD,SAN FRANCISCO,94124,B10,17,6636,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7303111453429, -122.378558276545)",141160005-67 -152282172,AM14,15087024,Medical Incident,08/16/2015,08/16/2015,08/16/2015 03:05:09 PM,08/16/2015 03:08:00 PM,08/16/2015 03:09:11 PM,08/16/2015 03:09:45 PM,08/16/2015 03:13:15 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,No Merit,08/16/2015 03:27:26 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",152282172-AM14 -143250493,73,14114975,Structure Fire,11/21/2014,11/20/2014,11/21/2014 06:03:11 AM,11/21/2014 06:03:33 AM,11/21/2014 06:03:46 AM,11/21/2014 06:04:14 AM,11/21/2014 06:12:41 AM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Fire,11/21/2014 07:10:38 AM,4600 Block of 3RD ST,San Francisco,94124,B10,17,6516,3,3,3,true,Fire,1,MEDIC,8,10,10,Bayview Hunters Point,"(37.7360180524544, -122.390409391697)",143250493-73 -150972798,E38,15036839,Medical Incident,04/07/2015,04/07/2015,04/07/2015 06:20:59 PM,04/07/2015 06:22:12 PM,04/07/2015 06:22:28 PM,04/07/2015 06:23:14 PM,04/07/2015 06:24:42 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/07/2015 06:33:23 PM,2300 Block of LAGUNA ST,San Francisco,94115,B04,38,3356,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7926489939322, -122.429604561551)",150972798-E38 -160941402,88,16037230,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:58:59 AM,04/03/2016 11:00:30 AM,04/03/2016 11:01:04 AM,04/03/2016 11:02:02 AM,04/03/2016 11:16:15 AM,04/03/2016 11:31:23 AM,04/03/2016 12:04:46 PM,Code 2 Transport,04/03/2016 12:38:17 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160941402-88 -141622839,83,14055962,Medical Incident,06/11/2014,06/11/2014,06/11/2014 06:18:49 PM,06/11/2014 06:18:49 PM,06/11/2014 06:25:42 PM,06/11/2014 06:25:42 PM,06/11/2014 06:29:56 PM,06/11/2014 06:47:24 PM,06/11/2014 07:10:58 PM,Code 2 Transport,06/11/2014 07:25:14 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",141622839-83 -150323523,E32,15012538,Traffic Collision,02/01/2015,02/01/2015,02/01/2015 10:00:42 PM,02/01/2015 10:00:42 PM,02/01/2015 10:01:45 PM,02/01/2015 10:02:52 PM,02/01/2015 10:08:42 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 10:27:35 PM,SAN JOSE AV/RANDALL ST,San Francisco,94110,B06,32,8112,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.7398692305663, -122.42414715532)",150323523-E32 -160973376,62,16038579,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:48:33 PM,04/06/2016 05:49:46 PM,04/06/2016 05:50:27 PM,04/06/2016 05:50:35 PM,04/06/2016 05:57:39 PM,04/06/2016 06:07:23 PM,04/06/2016 06:24:45 PM,Code 2 Transport,04/06/2016 07:16:22 PM,HUDSON AV/NEWHALL ST,San Francisco,94124,B10,25,6467,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7400445538806, -122.388273077343)",160973376-62 -160992975,54,16039418,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:15:55 PM,04/08/2016 06:18:56 PM,04/08/2016 06:19:24 PM,04/08/2016 06:19:32 PM,04/08/2016 06:36:20 PM,04/08/2016 06:48:44 PM,04/08/2016 07:04:35 PM,Code 2 Transport,04/08/2016 07:31:47 PM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7600451698328, -122.423265598657)",160992975-54 -151682300,E13,15064294,Structure Fire,06/17/2015,06/17/2015,06/17/2015 02:57:12 PM,06/17/2015 02:57:46 PM,06/17/2015 02:58:57 PM,06/17/2015 02:59:41 PM,04/25/2016 01:09:57 PM,04/25/2016 01:09:57 PM,04/25/2016 01:09:57 PM,Fire,06/17/2015 03:05:19 PM,0 Block of GRANT AVE,San Francisco,94108,B01,1,1321,3,3,3,true,Alarm,1,ENGINE,10,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",151682300-E13 -160930587,AM02,16036727,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:09:53 AM,04/02/2016 06:11:02 AM,04/02/2016 06:11:33 AM,04/02/2016 06:12:05 AM,04/02/2016 06:19:03 AM,04/02/2016 06:35:24 AM,04/02/2016 06:46:41 AM,Code 2 Transport,04/02/2016 07:03:23 AM,2900 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6326,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7246523794049, -122.402288649686)",160930587-AM02 -151750537,AM24,15066610,Medical Incident,06/24/2015,06/23/2015,06/24/2015 07:06:37 AM,06/24/2015 07:09:13 AM,06/24/2015 07:09:54 AM,06/24/2015 07:11:18 AM,06/24/2015 07:24:00 AM,06/24/2015 07:49:10 AM,06/24/2015 08:35:27 AM,Code 2 Transport,06/24/2015 08:58:30 AM,0 Block of HAWKINS LN,San Francisco,94124,B10,17,6621,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7350823527483, -122.383845681498)",151750537-AM24 -150161668,E06,15006309,Medical Incident,01/16/2015,01/16/2015,01/16/2015 12:43:13 PM,01/16/2015 12:44:40 PM,01/16/2015 12:44:55 PM,01/16/2015 12:46:10 PM,01/16/2015 12:47:12 PM,04/25/2016 01:12:48 PM,04/25/2016 01:12:48 PM,Code 2 Transport,01/16/2015 12:50:10 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7684539072982, -122.431342864403)",150161668-E06 -160990395,88,16039188,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:57:57 AM,04/08/2016 04:57:57 AM,04/08/2016 05:05:24 AM,04/08/2016 05:05:24 AM,04/08/2016 05:09:55 AM,04/08/2016 05:22:28 AM,04/08/2016 05:26:42 AM,Code 2 Transport,04/08/2016 05:56:30 AM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",160990395-88 -153232934,E41,15124374,Medical Incident,11/19/2015,11/19/2015,11/19/2015 05:07:09 PM,11/19/2015 05:09:58 PM,11/19/2015 05:10:13 PM,11/19/2015 05:10:47 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,04/25/2016 01:07:06 PM,Code 2 Transport,11/19/2015 05:11:31 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,ENGINE,3,3,6,South of Market,"(37.78026973391, -122.406390271833)",153232934-E41 -141511991,AP,14051912,Other,05/31/2014,05/31/2014,05/31/2014 03:07:44 PM,05/31/2014 03:07:44 PM,05/31/2014 03:07:44 PM,05/31/2014 03:07:44 PM,05/31/2014 03:07:44 PM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Fire,05/31/2014 03:07:44 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",141511991-AP -142281952,74,14079243,Medical Incident,08/16/2014,08/16/2014,08/16/2014 01:53:58 PM,08/16/2014 01:55:03 PM,08/16/2014 01:55:36 PM,08/16/2014 01:55:46 PM,08/16/2014 02:13:09 PM,08/16/2014 02:39:07 PM,08/16/2014 02:53:56 PM,Code 2 Transport,08/16/2014 03:29:31 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",142281952-74 -153433658,E37,15132179,Structure Fire,12/09/2015,12/09/2015,12/09/2015 08:25:01 PM,12/09/2015 08:25:01 PM,12/09/2015 08:25:08 PM,12/09/2015 08:25:57 PM,12/09/2015 08:27:01 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Fire,12/09/2015 08:27:15 PM,20TH ST/WISCONSIN ST,San Francisco,94107,B10,37,2521,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7598505212671, -122.399181613989)",153433658-E37 -150161631,63,15006306,Medical Incident,01/16/2015,01/16/2015,01/16/2015 12:32:47 PM,01/16/2015 12:32:47 PM,01/16/2015 12:33:39 PM,01/16/2015 12:33:50 PM,01/16/2015 12:38:02 PM,01/16/2015 12:50:43 PM,01/16/2015 01:08:22 PM,Code 2 Transport,01/16/2015 01:41:37 PM,400 Block of THE EMBARCADERO,San Francisco,94111,B03,35,928,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",150161631-63 -142802353,E43,14098554,Medical Incident,10/07/2014,10/07/2014,10/07/2014 04:06:42 PM,10/07/2014 04:10:05 PM,10/07/2014 04:10:48 PM,10/07/2014 04:12:59 PM,10/07/2014 04:13:09 PM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Code 2 Transport,10/07/2014 04:33:53 PM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",142802353-E43 -151711313,B02,15065305,Structure Fire,06/20/2015,06/20/2015,06/20/2015 11:21:17 AM,06/20/2015 11:21:42 AM,06/20/2015 11:28:20 AM,06/20/2015 11:28:20 AM,06/20/2015 11:31:20 AM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Fire,06/20/2015 11:31:27 AM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,false,Alarm,1,CHIEF,5,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",151711313-B02 -152192696,E04,15083491,Alarms,08/07/2015,08/07/2015,08/07/2015 04:58:27 PM,08/07/2015 04:59:55 PM,08/07/2015 05:00:27 PM,08/07/2015 05:02:27 PM,08/07/2015 05:03:32 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Fire,08/07/2015 05:13:52 PM,1600 Block of 3RD ST,San Francisco,94158,B03,8,2364,3,3,3,false,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7683474110857, -122.389401336294)",152192696-E04 -150140716,E13,15005456,Vehicle Fire,01/14/2015,01/14/2015,01/14/2015 08:05:43 AM,01/14/2015 08:07:22 AM,01/14/2015 08:07:39 AM,01/14/2015 08:09:18 AM,01/14/2015 08:10:50 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Fire,01/14/2015 08:23:38 AM,CALIFORNIA ST/MONTGOMERY ST,San Francisco,94104,B01,13,1234,3,3,3,true,Fire,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928512206877, -122.40276676965)",150140716-E13 -160993901,KM06,16039515,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:45:16 PM,04/08/2016 10:47:27 PM,04/08/2016 10:54:07 PM,04/08/2016 10:54:07 PM,04/08/2016 11:00:58 PM,04/08/2016 11:19:26 PM,04/08/2016 11:27:42 PM,Code 2 Transport,04/09/2016 12:04:52 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160993901-KM06 -142950680,T03,14103942,Structure Fire,10/22/2014,10/21/2014,10/22/2014 07:57:52 AM,10/22/2014 07:57:52 AM,10/22/2014 07:57:58 AM,10/22/2014 07:58:59 AM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,Fire,10/22/2014 08:01:17 AM,0 Block of LARKIN ST,San Francisco,94102,B02,36,1646,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7775888205813, -122.416411092393)",142950680-T03 -151171463,T17,15044191,Medical Incident,04/27/2015,04/27/2015,04/27/2015 11:30:51 AM,04/27/2015 11:31:20 AM,04/27/2015 11:31:35 AM,04/27/2015 11:32:50 AM,04/27/2015 11:35:20 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Code 2 Transport,04/27/2015 11:54:07 AM,2400 Block of KEITH ST,San Francisco,94124,B10,17,6546,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",151171463-T17 -141820228,B04,14062881,Medical Incident,07/01/2014,06/30/2014,07/01/2014 02:28:24 AM,07/01/2014 02:28:24 AM,07/01/2014 02:29:09 AM,07/01/2014 02:31:08 AM,07/01/2014 02:34:01 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Code 2 Transport,07/01/2014 02:46:14 AM,OFARRELL ST/LARKIN ST,San Francisco,94109,B04,3,1642,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",141820228-B04 -143562254,E08,14127406,Alarms,12/22/2014,12/22/2014,12/22/2014 03:04:36 PM,12/22/2014 03:07:17 PM,12/22/2014 03:07:46 PM,12/22/2014 03:08:18 PM,12/22/2014 03:12:45 PM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,Fire,12/22/2014 03:14:42 PM,800 Block of FOLSOM ST,San Francisco,94103,B03,1,2215,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7811835585525, -122.402322293906)",143562254-E08 -160991233,52,16039258,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:58:49 AM,04/08/2016 10:59:15 AM,04/08/2016 10:59:57 AM,04/08/2016 11:00:07 AM,04/08/2016 11:07:41 AM,04/08/2016 11:30:04 AM,04/08/2016 11:53:01 AM,Code 2 Transport,04/08/2016 12:33:56 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160991233-52 -151583291,70,15060495,Medical Incident,06/07/2015,06/07/2015,06/07/2015 09:03:45 PM,06/07/2015 09:04:37 PM,06/07/2015 09:05:16 PM,06/07/2015 09:05:26 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Cancelled,06/07/2015 09:10:25 PM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",151583291-70 -160974310,62,16038682,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:46:38 PM,04/06/2016 09:46:38 PM,04/06/2016 09:47:07 PM,04/06/2016 09:47:15 PM,04/06/2016 10:03:59 PM,04/06/2016 10:18:12 PM,04/06/2016 10:36:35 PM,Code 2 Transport,04/06/2016 11:16:51 PM,3RD ST/22ND ST,San Francisco,94107,B10,25,2533,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7579397061731, -122.388315530161)",160974310-62 -150494031,B04,15019147,Structure Fire,02/18/2015,02/18/2015,02/18/2015 10:35:36 PM,02/18/2015 10:36:48 PM,02/18/2015 10:38:37 PM,02/18/2015 10:39:20 PM,02/18/2015 10:42:26 PM,04/25/2016 01:12:10 PM,04/25/2016 01:12:10 PM,Fire,02/18/2015 10:45:50 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Alarm,1,CHIEF,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",150494031-B04 -153260441,RC1,15125376,Medical Incident,11/22/2015,11/21/2015,11/22/2015 03:18:58 AM,11/22/2015 03:21:02 AM,11/22/2015 03:21:19 AM,11/22/2015 03:23:18 AM,11/22/2015 03:28:20 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Code 2 Transport,11/22/2015 03:31:48 AM,400 Block of 6TH ST,San Francisco,94107,B03,8,2254,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7770324435946, -122.403671442177)",153260441-RC1 -152840393,E10,15108914,Medical Incident,10/11/2015,10/10/2015,10/11/2015 02:08:50 AM,10/11/2015 02:12:10 AM,10/11/2015 02:12:43 AM,10/11/2015 02:14:25 AM,10/11/2015 02:18:26 AM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Code 2 Transport,10/11/2015 02:21:51 AM,2800 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7820549038039, -122.449570101296)",152840393-E10 -141663034,T18,14057427,Medical Incident,06/15/2014,06/15/2014,06/15/2014 09:49:21 PM,06/15/2014 09:50:35 PM,06/15/2014 09:51:54 PM,06/15/2014 09:53:38 PM,04/25/2016 01:16:44 PM,04/25/2016 01:16:44 PM,04/25/2016 01:16:44 PM,Code 2 Transport,06/15/2014 09:55:57 PM,2100 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,8,7,West of Twin Peaks,"(37.7477208608215, -122.475835310645)",141663034-T18 -150210617,E07,15008104,Medical Incident,01/21/2015,01/20/2015,01/21/2015 07:42:22 AM,01/21/2015 07:43:53 AM,01/21/2015 07:44:03 AM,01/21/2015 07:45:40 AM,01/21/2015 07:49:02 AM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Code 2 Transport,01/21/2015 07:51:35 AM,600 Block of CAPP ST,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7563058757575, -122.417666463858)",150210617-E07 -151261385,E11,15047720,Medical Incident,05/06/2015,05/06/2015,05/06/2015 10:43:17 AM,05/06/2015 10:44:07 AM,05/06/2015 10:44:59 AM,05/06/2015 10:45:19 AM,05/06/2015 10:48:25 AM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 2 Transport,05/06/2015 11:01:34 AM,1000 Block of YORK ST,San Francisco,94110,B06,7,5474,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7552495476347, -122.408489986396)",151261385-E11 -160932440,KM09,16036940,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:26:20 PM,04/02/2016 04:27:55 PM,04/02/2016 04:30:01 PM,04/02/2016 04:31:02 PM,04/02/2016 04:48:49 PM,04/02/2016 05:10:05 PM,04/02/2016 05:34:58 PM,Code 2 Transport,04/02/2016 06:09:16 PM,24TH ST/FLORIDA ST,San Francisco,94110,B06,7,5527,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7527390254513, -122.410066406492)",160932440-KM09 -141373268,85,14047073,Medical Incident,05/17/2014,05/17/2014,05/17/2014 08:50:58 PM,05/17/2014 08:52:40 PM,05/17/2014 08:53:37 PM,05/17/2014 08:54:21 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,No Merit,05/17/2014 09:06:17 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,false,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",141373268-85 -160990005,85,16039150,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:01:17 AM,04/08/2016 12:01:17 AM,04/08/2016 12:01:34 AM,04/08/2016 12:02:00 AM,04/08/2016 12:07:36 AM,04/08/2016 12:14:33 AM,04/08/2016 12:26:27 AM,Code 2 Transport,04/08/2016 12:53:02 AM,900 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",160990005-85 -153461607,E01,15133214,Medical Incident,12/12/2015,12/12/2015,12/12/2015 11:35:40 AM,12/12/2015 11:37:16 AM,12/12/2015 11:44:01 AM,12/12/2015 11:44:52 AM,12/12/2015 11:48:09 AM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Code 2 Transport,12/12/2015 11:56:32 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",153461607-E01 -160922219,77,16036491,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:21:45 PM,04/01/2016 03:24:20 PM,04/01/2016 03:24:51 PM,04/01/2016 03:25:05 PM,04/01/2016 03:37:34 PM,04/01/2016 03:59:01 PM,04/01/2016 04:11:18 PM,Code 2 Transport,04/01/2016 04:45:51 PM,200 Block of MARTIN LUTHER KING JR DR,San Francisco,94122,B07,12,7743,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7669591119289, -122.462470187645)",160922219-77 -160991789,84,16039309,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:32:54 PM,04/08/2016 01:32:54 PM,04/08/2016 01:33:03 PM,04/08/2016 01:33:47 PM,04/08/2016 01:52:13 PM,04/08/2016 01:56:33 PM,04/08/2016 02:03:11 PM,Code 2 Transport,04/08/2016 02:32:13 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160991789-84 -160951573,57,16037607,Other,04/04/2016,04/04/2016,04/04/2016 12:00:10 PM,04/04/2016 12:01:13 PM,04/04/2016 12:09:02 PM,04/04/2016 12:11:28 PM,04/04/2016 12:16:21 PM,04/04/2016 12:50:44 PM,04/04/2016 01:01:03 PM,Code 2 Transport,04/04/2016 01:48:16 PM,600 Block of 3RD AVE,San Francisco,94118,B07,31,7121,3,3,3,true,Alarm,1,MEDIC,2,7,1,Inner Richmond,"(37.7764518013552, -122.460659464774)",160951573-57 -150652791,RS2,15024927,Medical Incident,03/06/2015,03/06/2015,03/06/2015 04:10:01 PM,03/06/2015 04:12:53 PM,03/06/2015 04:14:16 PM,03/06/2015 04:15:33 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Code 2 Transport,03/06/2015 04:17:26 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,9,Mission,"(37.769082767924, -122.413353472663)",150652791-RS2 -141851310,RC1,14064017,Medical Incident,07/04/2014,07/04/2014,07/04/2014 12:34:45 PM,07/04/2014 12:37:57 PM,07/04/2014 12:38:11 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Code 2 Transport,07/04/2014 12:41:31 PM,2200 Block of VAN NESS AVE,San Francisco,94109,B04,41,3152,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,3,Russian Hill,"(37.7962357754021, -122.423338594122)",141851310-RC1 -160991662,75,16039290,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:54:32 PM,04/08/2016 12:57:10 PM,04/08/2016 12:57:27 PM,04/08/2016 12:57:50 PM,04/08/2016 01:06:44 PM,04/08/2016 01:15:32 PM,04/08/2016 01:42:19 PM,Code 2 Transport,04/08/2016 02:22:43 PM,1900 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",160991662-75 -160982796,79,16039023,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:44:57 PM,04/07/2016 04:46:34 PM,04/07/2016 04:50:57 PM,04/07/2016 04:51:07 PM,04/07/2016 05:18:55 PM,04/07/2016 05:32:24 PM,04/07/2016 05:44:03 PM,Code 2 Transport,04/07/2016 06:16:00 PM,0 Block of 7TH ST,San Francisco,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795700115888, -122.411484015918)",160982796-79 -150411990,56,15015999,Medical Incident,02/10/2015,02/10/2015,02/10/2015 01:58:04 PM,02/10/2015 01:59:06 PM,02/10/2015 02:00:53 PM,02/10/2015 02:01:16 PM,02/10/2015 02:08:34 PM,02/10/2015 02:18:25 PM,04/25/2016 01:12:19 PM,Code 2 Transport,02/10/2015 03:07:39 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",150411990-56 -152100494,85,15079894,Medical Incident,07/29/2015,07/28/2015,07/29/2015 06:42:54 AM,07/29/2015 06:45:50 AM,07/29/2015 06:46:00 AM,07/29/2015 06:46:10 AM,07/29/2015 06:52:55 AM,07/29/2015 07:45:19 AM,07/29/2015 07:45:26 AM,Code 2 Transport,07/29/2015 08:00:27 AM,100 Block of CONCORD ST,San Francisco,94112,B09,43,6221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7115512141038, -122.442338856113)",152100494-85 -151072490,62,15040562,Traffic Collision,04/17/2015,04/17/2015,04/17/2015 03:41:31 PM,04/17/2015 03:42:42 PM,04/17/2015 03:43:42 PM,04/17/2015 03:46:05 PM,04/17/2015 03:50:21 PM,04/17/2015 04:07:42 PM,04/17/2015 04:14:35 PM,Code 2 Transport,04/17/2015 04:56:40 PM,FULTON ST/10TH AV,San Francisco,94118,B07,31,7133,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7733038332102, -122.468023915566)",151072490-62 -150283136,E01,15010880,Medical Incident,01/28/2015,01/28/2015,01/28/2015 06:49:24 PM,01/28/2015 06:49:54 PM,01/28/2015 06:51:14 PM,01/28/2015 06:52:19 PM,01/28/2015 06:55:03 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Code 2 Transport,01/28/2015 06:59:22 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",150283136-E01 -152713185,52,15103915,Medical Incident,09/28/2015,09/28/2015,09/28/2015 07:22:30 PM,09/28/2015 07:22:30 PM,09/28/2015 07:23:23 PM,09/28/2015 07:23:35 PM,09/28/2015 07:31:24 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Patient Declined Transport,09/28/2015 08:00:02 PM,300 Block of FAXON AVE,San Francisco,94112,B09,15,8463,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7209280246624, -122.460152149561)",152713185-52 -142693902,67,14094478,Medical Incident,09/26/2014,09/26/2014,09/26/2014 10:02:33 PM,09/26/2014 10:05:41 PM,09/26/2014 10:05:53 PM,09/26/2014 10:06:05 PM,09/26/2014 10:30:58 PM,09/26/2014 10:31:00 PM,09/26/2014 10:55:48 PM,Code 2 Transport,09/26/2014 11:29:27 PM,2300 Block of POWELL ST,San Francisco,94133,B01,28,131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8062826874223, -122.412114085659)",142693902-67 -160984067,70,16039144,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:18:38 PM,04/07/2016 11:20:34 PM,04/07/2016 11:20:46 PM,04/07/2016 11:20:57 PM,04/07/2016 11:28:21 PM,04/07/2016 11:39:31 PM,04/07/2016 11:45:00 PM,Code 2 Transport,04/08/2016 12:07:33 AM,100 Block of 10TH AVE,San Francisco,94118,B07,31,7137,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7855485905185, -122.468976308915)",160984067-70 -152911734,RC1,15111813,Medical Incident,10/18/2015,10/18/2015,10/18/2015 01:08:10 PM,10/18/2015 01:08:10 PM,10/18/2015 01:14:29 PM,10/18/2015 01:14:29 PM,10/18/2015 01:19:16 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Code 3 Transport,10/18/2015 01:53:20 PM,2200 Block of MASON ST,San Francisco,94133,B01,28,1424,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,North Beach,"(37.8045564846872, -122.413325822715)",152911734-RC1 -151261481,E36,15047729,Traffic Collision,05/06/2015,05/06/2015,05/06/2015 11:06:06 AM,05/06/2015 11:07:23 AM,05/06/2015 11:08:05 AM,05/06/2015 11:09:40 AM,05/06/2015 11:12:59 AM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 2 Transport,05/06/2015 11:29:13 AM,MINNA ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7805353840251, -122.40816079453)",151261481-E36 -143462708,75,14123450,Medical Incident,12/12/2014,12/12/2014,12/12/2014 05:15:45 PM,12/12/2014 05:17:01 PM,12/12/2014 05:29:43 PM,12/12/2014 05:29:43 PM,12/12/2014 05:42:43 PM,12/12/2014 06:05:09 PM,12/12/2014 06:11:28 PM,Code 2 Transport,12/12/2014 07:06:41 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",143462708-75 -143630190,AM24,14129730,Medical Incident,12/29/2014,12/28/2014,12/29/2014 02:03:10 AM,12/29/2014 02:03:29 AM,12/29/2014 02:04:05 AM,12/29/2014 02:04:05 AM,12/29/2014 02:07:46 AM,12/29/2014 02:24:29 AM,12/29/2014 02:51:48 AM,Code 2 Transport,12/29/2014 03:11:11 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",143630190-AM24 -142210900,E10,14076655,Medical Incident,08/09/2014,08/09/2014,08/09/2014 08:41:49 AM,08/09/2014 08:42:09 AM,08/09/2014 08:42:25 AM,08/09/2014 08:43:36 AM,08/09/2014 08:44:20 AM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,No Merit,08/09/2014 08:45:03 AM,MASONIC AV/PINE ST,San Francisco,94115,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7863022984419, -122.446610464943)",142210900-E10 -152193806,E01,15083579,Medical Incident,08/07/2015,08/07/2015,08/07/2015 09:21:09 PM,08/07/2015 09:21:47 PM,08/07/2015 09:22:17 PM,08/07/2015 09:23:36 PM,08/07/2015 09:25:38 PM,04/25/2016 01:09:03 PM,04/25/2016 01:09:03 PM,Code 2 Transport,08/07/2015 09:45:57 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",152193806-E01 -142781943,E05,14097805,Medical Incident,10/05/2014,10/05/2014,10/05/2014 01:27:26 PM,10/05/2014 01:28:52 PM,10/05/2014 01:30:46 PM,10/05/2014 01:31:31 PM,10/05/2014 01:34:45 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Code 2 Transport,10/05/2014 01:36:57 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",142781943-E05 -160930571,KM09,16036726,Medical Incident,04/02/2016,04/01/2016,04/02/2016 05:49:23 AM,04/02/2016 05:51:15 AM,04/02/2016 05:51:22 AM,04/02/2016 05:51:50 AM,04/02/2016 06:01:07 AM,04/02/2016 06:16:23 AM,04/02/2016 06:30:24 AM,Code 2 Transport,04/02/2016 06:53:29 AM,3100 Block of BALBOA ST,San Francisco,94121,B07,14,7244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7759901352962, -122.492505810279)",160930571-KM09 -160972487,KM05,16038470,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:42:35 PM,04/06/2016 02:42:35 PM,04/06/2016 02:43:03 PM,04/06/2016 02:43:42 PM,04/06/2016 02:48:43 PM,04/06/2016 02:57:45 PM,04/06/2016 03:10:19 PM,Code 2 Transport,04/06/2016 03:39:31 PM,PARK PRESIDIO BL/CALIFORNIA ST,San Francisco,94118,B07,31,7152,3,3,3,false,Non Life-threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7844488888819, -122.472585865925)",160972487-KM05 -142010104,RA48,14069434,Medical Incident,07/20/2014,07/19/2014,07/20/2014 12:30:49 AM,07/20/2014 12:32:04 AM,07/20/2014 12:32:23 AM,07/20/2014 12:43:52 AM,07/20/2014 12:44:09 AM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Code 3 Transport,07/20/2014 12:52:49 AM,1300 Block of GATEVIEW AVE,Treasure Islan,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8240338488424, -122.376458039001)",142010104-RA48 -152760915,E17,15105680,Medical Incident,10/03/2015,10/03/2015,10/03/2015 08:26:38 AM,10/03/2015 08:27:12 AM,10/03/2015 08:27:24 AM,10/03/2015 08:29:00 AM,10/03/2015 08:32:02 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Code 2 Transport,10/03/2015 08:46:01 AM,0 Block of WESTBROOK CT,San Francisco,94124,B10,17,6624,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7350385061864, -122.382425286055)",152760915-E17 -152790008,79,15106873,Medical Incident,10/06/2015,10/05/2015,10/06/2015 12:05:26 AM,10/06/2015 12:05:26 AM,10/06/2015 12:05:38 AM,10/06/2015 12:05:55 AM,10/06/2015 12:15:13 AM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Patient Declined Transport,10/06/2015 12:45:26 AM,500 Block of ARBALLO DR,San Francisco,94132,B08,19,8583,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7179307261278, -122.483251553838)",152790008-79 -161002725,76,16039886,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:52:55 PM,04/09/2016 06:54:53 PM,04/09/2016 06:55:17 PM,04/09/2016 06:55:27 PM,04/09/2016 07:01:06 PM,04/09/2016 07:10:38 PM,04/09/2016 07:17:40 PM,Code 2 Transport,04/09/2016 07:38:09 PM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,2,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7945054272056, -122.403956804569)",161002725-76 -160952975,77,16037728,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:37:51 PM,04/04/2016 05:38:23 PM,04/04/2016 05:38:47 PM,04/04/2016 05:39:02 PM,04/04/2016 05:50:17 PM,04/04/2016 06:14:53 PM,04/04/2016 06:50:08 PM,Code 2 Transport,04/04/2016 07:31:23 PM,0 Block of COMMER CT,San Francisco,94124,B10,17,6622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7325365939267, -122.385005626506)",160952975-77 -153051504,T06,15117107,Structure Fire,11/01/2015,11/01/2015,11/01/2015 08:25:58 AM,11/01/2015 08:25:58 AM,11/01/2015 08:26:15 AM,11/01/2015 08:28:06 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Fire,11/01/2015 08:28:58 AM,2300 Block of MARKET ST,San Francisco,94114,B05,6,5233,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7635007029742, -122.434209629009)",153051504-T06 -141020298,E29,14034541,,04/12/2014,04/12/2014,04/12/2014 06:29:00 PM,04/12/2014 06:30:00 PM,04/12/2014 06:31:00 PM,04/12/2014 06:32:00 PM,04/12/2014 06:36:00 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,SFPD,04/12/2014 06:41:00 PM,800 Block of TERRY A FRANCOIS BLVD,SAN FRANCISCO,94107,B03,29,2671,3,3,3,false,Fire,1,ENGINE,1,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",141020298-E29 -152522351,72,15096370,Medical Incident,09/09/2015,09/09/2015,09/09/2015 02:49:37 PM,09/09/2015 02:51:59 PM,09/09/2015 02:52:33 PM,09/09/2015 02:52:47 PM,09/09/2015 02:56:15 PM,09/09/2015 03:06:23 PM,09/09/2015 03:15:37 PM,Code 2 Transport,09/09/2015 04:01:45 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",152522351-72 -150150375,KM07,15005816,Medical Incident,01/15/2015,01/14/2015,01/15/2015 04:32:56 AM,01/15/2015 04:34:55 AM,01/15/2015 04:36:05 AM,01/15/2015 04:37:19 AM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Code 2 Transport,01/15/2015 04:38:39 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150150375-KM07 -143241484,KM01,14114702,Medical Incident,11/20/2014,11/20/2014,11/20/2014 12:07:57 PM,11/20/2014 12:07:57 PM,11/20/2014 12:12:21 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Cancelled,11/20/2014 12:16:19 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",143241484-KM01 -143122324,64,14110578,Medical Incident,11/08/2014,11/08/2014,11/08/2014 04:02:22 PM,11/08/2014 04:04:20 PM,11/08/2014 04:04:37 PM,11/08/2014 04:04:50 PM,11/08/2014 04:09:28 PM,11/08/2014 04:24:38 PM,11/08/2014 05:11:44 PM,Code 2 Transport,11/08/2014 05:19:33 PM,ORIZABA AV/SAGAMORE ST,San Francisco,94112,B09,33,8375,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7113703025663, -122.462570048877)",143122324-64 -141150054,77,14038710,Medical Incident,04/25/2014,04/24/2014,04/25/2014 06:47:21 AM,04/25/2014 06:47:54 AM,04/25/2014 06:49:42 AM,04/25/2014 06:49:58 AM,04/25/2014 06:57:08 AM,04/25/2014 07:04:15 AM,04/25/2014 07:13:00 AM,Code 3 Transport,04/25/2014 07:45:15 AM,1000 Block of NORIEGA ST,SAN FRANCISCO,94122,B08,40,7373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7543653273459, -122.47487407645)",141150054-77 -141653692,88,14057101,Medical Incident,06/14/2014,06/14/2014,06/14/2014 11:20:20 PM,06/14/2014 11:20:20 PM,06/14/2014 11:36:02 PM,06/14/2014 11:36:19 PM,06/14/2014 11:57:30 PM,06/15/2014 12:08:40 AM,06/15/2014 12:19:26 AM,Code 2 Transport,06/15/2014 12:50:01 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2817,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",141653692-88 -160930093,64,16036674,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:29:56 AM,04/02/2016 12:36:14 AM,04/02/2016 12:36:42 AM,04/02/2016 12:36:50 AM,04/02/2016 12:49:31 AM,04/02/2016 12:59:02 AM,04/02/2016 01:24:22 AM,Code 2 Transport,04/02/2016 01:56:11 AM,1300 Block of 41ST AV,San Francisco,94122,B08,23,7631,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7615947609278, -122.500563667463)",160930093-64 -141140008,88,14038329,Medical Incident,04/24/2014,04/23/2014,04/24/2014 12:58:24 AM,04/24/2014 01:00:27 AM,04/24/2014 01:11:00 AM,04/24/2014 01:11:17 AM,04/25/2016 01:17:43 PM,04/24/2014 01:29:14 AM,04/24/2014 01:59:45 AM,Code 2 Transport,04/24/2014 02:27:54 AM,1000 Block of POLK ST,SAN FRANCISCO,94109,B04,3,3121,,2,2,false,Non Life-threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",141140008-88 -151773620,E17,15067538,Medical Incident,06/26/2015,06/26/2015,06/26/2015 09:43:44 PM,06/26/2015 09:46:12 PM,06/26/2015 09:46:30 PM,06/26/2015 09:47:43 PM,06/26/2015 09:51:28 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 10:17:41 PM,1700 Block of LANE ST,San Francisco,94124,B10,17,6535,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7313181238579, -122.390389464317)",151773620-E17 -152020477,E28,15076864,Medical Incident,07/21/2015,07/20/2015,07/21/2015 05:56:47 AM,07/21/2015 05:56:47 AM,07/21/2015 05:56:54 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Other,07/21/2015 05:59:53 AM,BUSH ST/MONTGOMERY ST,San Francisco,94104,B01,13,1235,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",152020477-E28 -160923865,56,16036642,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:50:44 PM,04/01/2016 10:52:40 PM,04/01/2016 10:53:15 PM,04/01/2016 10:53:23 PM,04/01/2016 11:06:57 PM,04/01/2016 11:32:06 PM,04/01/2016 11:47:59 PM,Code 2 Transport,04/02/2016 12:34:11 AM,500 Block of VELASCO AVE,San Francisco,94134,B09,43,6247,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7094039046609, -122.417209624448)",160923865-56 -152411530,B09,15091855,Alarms,08/29/2015,08/29/2015,08/29/2015 11:04:35 AM,08/29/2015 11:05:51 AM,08/29/2015 11:06:25 AM,08/29/2015 11:06:37 AM,08/29/2015 11:11:32 AM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 11:19:45 AM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,false,Alarm,1,CHIEF,3,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",152411530-B09 -141993001,T03,14069024,Alarms,07/18/2014,07/18/2014,07/18/2014 07:29:35 PM,07/18/2014 07:31:10 PM,07/18/2014 07:31:38 PM,07/18/2014 07:32:56 PM,07/18/2014 07:35:59 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Fire,07/18/2014 07:44:04 PM,700 Block of VAN NESS AVE,San Francisco,94102,B02,3,3163,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7824440383404, -122.420574545604)",141993001-T03 -143563759,57,14127543,Medical Incident,12/22/2014,12/22/2014,12/22/2014 09:01:14 PM,12/22/2014 09:06:13 PM,12/22/2014 09:07:28 PM,12/22/2014 09:08:40 PM,12/22/2014 09:11:19 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,No Merit,12/22/2014 09:16:00 PM,LOBOS ST/CAPITOL AV,San Francisco,94112,B09,33,8372,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7149083465788, -122.459046133877)",143563759-57 -143574214,66,14127960,Medical Incident,12/23/2014,12/23/2014,12/23/2014 11:48:12 PM,12/23/2014 11:49:44 PM,12/23/2014 11:50:28 PM,12/23/2014 11:50:37 PM,12/24/2014 12:09:27 AM,12/24/2014 12:19:01 AM,12/24/2014 12:47:51 AM,Code 2 Transport,12/24/2014 12:55:41 AM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",143574214-66 -152731708,E32,15104496,Structure Fire,09/30/2015,09/30/2015,09/30/2015 12:48:29 PM,09/30/2015 12:48:44 PM,09/30/2015 12:49:07 PM,09/30/2015 12:50:34 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 12:54:35 PM,300 Block of FLOOD AVE,San Francisco,94112,B09,15,8231,3,3,3,true,Alarm,1,ENGINE,8,9,7,West of Twin Peaks,"(37.7299423312189, -122.447712264183)",152731708-E32 -160972890,AM16,16038518,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:14:31 PM,04/06/2016 04:15:02 PM,04/06/2016 04:15:15 PM,04/06/2016 04:16:00 PM,04/06/2016 04:25:45 PM,04/06/2016 04:37:54 PM,04/06/2016 04:56:31 PM,Code 2 Transport,04/06/2016 05:30:09 PM,1400 Block of 34TH AVE,San Francisco,94122,B08,23,7541,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7600606659429, -122.492933417481)",160972890-AM16 -160932532,88,16036951,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:53:59 PM,04/02/2016 04:54:11 PM,04/02/2016 04:57:09 PM,04/02/2016 04:57:19 PM,04/02/2016 05:25:56 PM,04/02/2016 05:52:10 PM,04/02/2016 06:18:50 PM,Code 2 Transport,04/02/2016 06:53:52 PM,2200 Block of 24TH AVE,San Francisco,94116,B08,40,7457,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7456092377694, -122.481314885049)",160932532-88 -142523003,T15,14088078,Vehicle Fire,09/09/2014,09/09/2014,09/09/2014 07:37:02 PM,09/09/2014 07:38:23 PM,09/09/2014 07:39:04 PM,09/09/2014 07:41:09 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,Fire,09/09/2014 07:43:39 PM,300 Block of SAINT CHARLES AV,Daly City,94132,B09,15,8313,3,3,3,false,Fire,1,TRUCK,2,9,7,Oceanview/Merced/Ingleside,"(37.7083764026475, -122.469270912671)",142523003-T15 -160923678,79,16036628,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:02:38 PM,04/01/2016 10:02:38 PM,04/01/2016 10:03:58 PM,04/01/2016 10:04:09 PM,04/01/2016 10:10:53 PM,04/01/2016 10:35:54 PM,04/01/2016 10:44:04 PM,Code 2 Transport,04/01/2016 11:15:09 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",160923678-79 -161000684,64,16039646,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:03:30 AM,04/09/2016 07:05:30 AM,04/09/2016 07:06:14 AM,04/09/2016 07:07:02 AM,04/09/2016 07:13:00 AM,04/09/2016 07:33:13 AM,04/09/2016 07:59:18 AM,Code 2 Transport,04/09/2016 08:33:26 AM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7796175741202, -122.473838626607)",161000684-64 -152412978,T02,15091981,Structure Fire,08/29/2015,08/29/2015,08/29/2015 05:24:40 PM,08/29/2015 05:26:40 PM,08/29/2015 05:27:05 PM,08/29/2015 05:28:30 PM,08/29/2015 05:32:14 PM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 05:37:01 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,3,3,3,false,,1,TRUCK,4,1,3,North Beach,"(37.8084350175869, -122.410774214375)",152412978-T02 -152240484,E17,15085242,Medical Incident,08/12/2015,08/11/2015,08/12/2015 05:56:36 AM,08/12/2015 05:58:02 AM,08/12/2015 05:58:20 AM,08/12/2015 06:01:21 AM,08/12/2015 06:04:37 AM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Code 2 Transport,08/12/2015 06:10:12 AM,100 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",152240484-E17 -160923584,71,16036619,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:36:37 PM,04/01/2016 09:40:01 PM,04/01/2016 09:40:20 PM,04/01/2016 09:40:27 PM,04/01/2016 09:43:56 PM,04/01/2016 09:57:55 PM,04/01/2016 10:07:11 PM,Code 2 Transport,04/01/2016 10:40:13 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7716028339242, -122.445694365285)",160923584-71 -151993388,62,15075978,Medical Incident,07/18/2015,07/18/2015,07/18/2015 08:02:22 PM,07/18/2015 08:04:18 PM,07/18/2015 08:05:06 PM,07/18/2015 08:05:15 PM,07/18/2015 08:08:01 PM,07/18/2015 08:14:58 PM,07/18/2015 08:48:00 PM,Code 2 Transport,07/18/2015 08:59:58 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",151993388-62 -141820118,E19,14062872,Alarms,07/01/2014,06/30/2014,07/01/2014 12:58:04 AM,07/01/2014 12:59:09 AM,07/01/2014 12:59:59 AM,07/01/2014 01:01:15 AM,07/01/2014 01:03:35 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,07/01/2014 01:16:19 AM,400 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8733,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7310685242349, -122.477740350434)",141820118-E19 -142503444,E18,14087349,Other,09/07/2014,09/07/2014,09/07/2014 09:29:15 PM,09/07/2014 09:30:51 PM,09/07/2014 09:31:29 PM,09/07/2014 09:33:12 PM,09/07/2014 09:38:43 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Other,09/07/2014 09:54:19 PM,46TH AV/SLOAT BL,San Francisco,94132,B08,23,7733,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7355578832844, -122.504185328317)",142503444-E18 -143282498,86,14116367,Structure Fire,11/24/2014,11/24/2014,11/24/2014 04:06:28 PM,11/24/2014 04:07:13 PM,11/24/2014 04:07:27 PM,11/24/2014 04:08:15 PM,11/24/2014 04:13:01 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/24/2014 04:13:54 PM,CLAYTON ST/FELL ST,San Francisco,94117,B05,21,4523,3,3,3,true,Alarm,1,MEDIC,6,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",143282498-86 -151171211,E03,15044161,Medical Incident,04/27/2015,04/27/2015,04/27/2015 10:17:26 AM,04/27/2015 10:18:23 AM,04/27/2015 10:18:33 AM,04/27/2015 10:19:41 AM,04/27/2015 10:23:14 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Code 2 Transport,04/27/2015 10:35:29 AM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",151171211-E03 -160930588,79,16036728,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:13:01 AM,04/02/2016 06:14:53 AM,04/02/2016 06:15:12 AM,04/02/2016 06:15:28 AM,04/02/2016 06:21:57 AM,04/02/2016 06:44:32 AM,04/02/2016 06:47:18 AM,Code 2 Transport,04/02/2016 07:25:53 AM,0 Block of LOCKSLEY AVE,San Francisco,94122,B08,22,7331,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7592626627211, -122.463439272342)",160930588-79 -153051083,RS2,15117052,Traffic Collision,11/01/2015,10/31/2015,11/01/2015 04:08:08 AM,11/01/2015 04:10:45 AM,11/01/2015 04:11:15 AM,11/01/2015 04:12:55 AM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Code 3 Transport,11/01/2015 04:19:31 AM,100 Block of AVENUE C,San Francisco,94130,B10,9,2626,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",153051083-RS2 -160970270,85,16038268,Medical Incident,04/06/2016,04/05/2016,04/06/2016 03:03:34 AM,04/06/2016 03:05:54 AM,04/06/2016 03:06:13 AM,04/06/2016 03:06:21 AM,04/06/2016 03:15:38 AM,04/06/2016 03:27:40 AM,04/06/2016 03:32:31 AM,Code 2 Transport,04/06/2016 04:03:17 AM,600 Block of LINCOLN WAY,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7658879294478, -122.464839640313)",160970270-85 -143571621,E01,14127754,Medical Incident,12/23/2014,12/23/2014,12/23/2014 12:17:00 PM,12/23/2014 12:17:46 PM,12/23/2014 12:18:23 PM,12/23/2014 12:20:41 PM,12/23/2014 12:23:18 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Code 2 Transport,12/23/2014 12:41:03 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",143571621-E01 -160992892,79,16039407,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:57:56 PM,04/08/2016 05:58:18 PM,04/08/2016 05:58:28 PM,04/08/2016 05:58:41 PM,04/08/2016 06:09:39 PM,04/08/2016 06:23:54 PM,04/08/2016 06:32:39 PM,Code 3 Transport,04/08/2016 07:25:05 PM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.794138132306, -122.407728738815)",160992892-79 -160983488,83,16039090,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:58:03 PM,04/07/2016 07:59:39 PM,04/07/2016 08:00:00 PM,04/07/2016 08:01:38 PM,04/07/2016 08:10:01 PM,04/07/2016 08:32:24 PM,04/07/2016 09:17:35 PM,Code 2 Transport,04/07/2016 10:04:19 PM,0 Block of BERKELEY WAY,San Francisco,94131,B06,26,8173,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Glen Park,"(37.7387923508903, -122.437916930426)",160983488-83 -150091964,E35,15003589,Water Rescue,01/09/2015,01/09/2015,01/09/2015 02:17:28 PM,01/09/2015 02:17:28 PM,01/09/2015 02:18:11 PM,01/09/2015 02:19:20 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Fire,01/09/2015 02:58:21 PM,VAN NESS AV/BAY ST,San Francisco,94109,B04,16,3144,3,3,3,false,Fire,1,ENGINE,7,1,2,Russian Hill,"(37.8041458445112, -122.425109522103)",150091964-E35 -160993307,64,16039443,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:42:06 PM,04/08/2016 07:42:27 PM,04/08/2016 07:43:30 PM,04/08/2016 07:43:56 PM,04/08/2016 07:54:48 PM,04/08/2016 08:15:11 PM,04/08/2016 08:29:50 PM,Code 2 Transport,04/08/2016 09:05:58 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160993307-64 -160982685,52,16039009,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:14:38 PM,04/07/2016 04:16:07 PM,04/07/2016 04:36:14 PM,04/07/2016 04:36:29 PM,04/07/2016 04:38:28 PM,04/07/2016 04:50:29 PM,04/07/2016 05:13:10 PM,Code 2 Transport,04/07/2016 05:39:32 PM,24TH ST/SHOTWELL ST,San Francisco,94110,B06,7,5526,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.752439647175, -122.415172290461)",160982685-52 -152211133,84,15084156,Medical Incident,08/09/2015,08/09/2015,08/09/2015 10:11:50 AM,08/09/2015 10:13:16 AM,08/09/2015 10:13:27 AM,08/09/2015 10:13:37 AM,08/09/2015 10:27:06 AM,08/09/2015 11:00:54 AM,08/09/2015 11:02:17 AM,Code 2 Transport,08/09/2015 12:05:22 PM,200 Block of HARRISON ST,San Francisco,94105,B03,35,2123,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",152211133-84 -152630233,E23,15100455,Medical Incident,09/20/2015,09/19/2015,09/20/2015 01:13:14 AM,09/20/2015 01:13:14 AM,09/20/2015 01:13:24 AM,09/20/2015 01:14:49 AM,09/20/2015 01:17:39 AM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Patient Declined Transport,09/20/2015 01:26:35 AM,4000 Block of MORAGA ST,San Francisco,94122,B08,23,7716,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7548622845517, -122.506073804076)",152630233-E23 -141330976,E02,14045236,Medical Incident,05/13/2014,05/13/2014,05/13/2014 09:50:06 AM,05/13/2014 09:50:45 AM,05/13/2014 10:03:56 AM,05/13/2014 10:03:56 AM,05/13/2014 10:08:14 AM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Code 2 Transport,05/13/2014 10:11:22 AM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,41,1311,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",141330976-E02 -143072735,AM16,14108720,Odor (Strange / Unknown),11/03/2014,11/03/2014,11/03/2014 06:05:24 PM,11/03/2014 06:06:54 PM,11/03/2014 06:11:17 PM,11/03/2014 06:11:48 PM,11/03/2014 06:25:09 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,Cancelled,11/03/2014 06:33:32 PM,2500 Block of PACHECO ST,San Francisco,94116,B08,18,7516,3,3,3,false,Alarm,1,PRIVATE,4,8,4,Sunset/Parkside,"(37.7499589406442, -122.487455739938)",143072735-AM16 -143403845,77,14120957,Medical Incident,12/06/2014,12/06/2014,12/06/2014 10:46:42 PM,12/06/2014 10:46:42 PM,12/06/2014 10:46:42 PM,12/06/2014 10:46:42 PM,12/06/2014 10:46:42 PM,12/06/2014 11:14:12 PM,12/06/2014 11:22:05 PM,Code 2 Transport,12/06/2014 11:44:46 PM,24TH ST/ALABAMA ST,San Francisco,94110,B99,7,5527,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7526848900219, -122.410962662832)",143403845-77 -151301442,B07,15049328,Medical Incident,05/10/2015,05/10/2015,05/10/2015 12:29:36 PM,05/10/2015 12:29:36 PM,05/10/2015 12:44:29 PM,05/10/2015 12:44:29 PM,05/10/2015 12:44:29 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Other,05/10/2015 12:58:28 PM,41ST AV/FULTON ST,San Francisco,94122,B07,34,7262,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,7,1,Outer Richmond,"(37.7717874120927, -122.501327709306)",151301442-B07 -142932766,RC3,14103455,Medical Incident,10/20/2014,10/20/2014,10/20/2014 06:10:42 PM,10/20/2014 06:11:59 PM,10/20/2014 06:14:34 PM,10/20/2014 06:14:45 PM,10/20/2014 06:23:42 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Medical Examiner,10/20/2014 06:25:01 PM,400 Block of 30TH ST,San Francisco,94131,B06,26,5573,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Glen Park,"(37.7418068442196, -122.430412415465)",142932766-RC3 -151391275,AM12,15052736,Medical Incident,05/19/2015,05/19/2015,05/19/2015 10:42:29 AM,05/19/2015 10:42:29 AM,05/19/2015 10:43:28 AM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Patient Declined Transport,05/19/2015 10:44:13 AM,3100 Block of MISSION ST,San Francisco,94110,B06,11,5624,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7458637646978, -122.419633930118)",151391275-AM12 -150131518,56,15005139,Medical Incident,01/13/2015,01/13/2015,01/13/2015 12:00:51 PM,01/13/2015 12:02:23 PM,01/13/2015 12:02:47 PM,01/13/2015 12:03:13 PM,01/13/2015 12:09:09 PM,01/13/2015 12:26:51 PM,01/13/2015 12:43:18 PM,Code 2 Transport,01/13/2015 01:32:52 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",150131518-56 -160974453,AM20,16038697,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:27:24 PM,04/06/2016 10:28:02 PM,04/06/2016 10:28:10 PM,04/06/2016 10:28:54 PM,04/06/2016 10:34:41 PM,04/06/2016 10:54:10 PM,04/06/2016 11:07:17 PM,Code 2 Transport,04/06/2016 11:51:15 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,false,Non Life-threatening,1,PRIVATE,3,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",160974453-AM20 -160960623,81,16037909,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:50:52 AM,04/05/2016 07:51:42 AM,04/05/2016 07:52:19 AM,04/05/2016 07:53:11 AM,04/05/2016 08:00:19 AM,04/05/2016 08:07:33 AM,04/05/2016 08:31:10 AM,Code 2 Transport,04/05/2016 08:59:33 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160960623-81 -152190239,E18,15083244,Medical Incident,08/07/2015,08/06/2015,08/07/2015 02:04:29 AM,08/07/2015 02:05:01 AM,08/07/2015 02:05:11 AM,08/07/2015 02:07:26 AM,08/07/2015 02:11:03 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/07/2015 02:25:01 AM,2000 Block of 47TH AVE,San Francisco,94116,B08,23,7714,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7482566370152, -122.506083721211)",152190239-E18 -143544070,E39,14126664,Fuel Spill,12/20/2014,12/20/2014,12/20/2014 08:01:30 PM,12/20/2014 08:01:30 PM,12/20/2014 08:01:44 PM,12/20/2014 08:03:11 PM,12/20/2014 08:08:12 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Fire,12/20/2014 09:08:05 PM,400 Block of STAPLES AVE,San Francisco,94112,B09,15,8233,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7290053514986, -122.451785387701)",143544070-E39 -143542317,KM09,14126526,Medical Incident,12/20/2014,12/20/2014,12/20/2014 12:54:37 PM,12/20/2014 12:55:46 PM,12/20/2014 12:56:11 PM,12/20/2014 12:59:18 PM,12/20/2014 01:16:13 PM,12/20/2014 01:16:16 PM,12/20/2014 01:36:03 PM,Code 2 Transport,12/20/2014 02:14:12 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",143542317-KM09 -160951238,KM04,16037576,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:35:10 AM,04/04/2016 10:35:52 AM,04/04/2016 10:36:19 AM,04/04/2016 10:38:37 AM,04/04/2016 10:39:37 AM,04/04/2016 11:05:08 AM,04/04/2016 11:26:36 AM,Code 2 Transport,04/04/2016 12:30:37 PM,1400 Block of MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7759986613945, -122.418004260708)",160951238-KM04 -161002938,55,16039914,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:02:45 PM,04/09/2016 08:05:36 PM,04/09/2016 08:05:54 PM,04/09/2016 08:06:35 PM,04/09/2016 08:18:01 PM,04/09/2016 08:27:53 PM,04/09/2016 08:41:56 PM,Code 2 Transport,04/09/2016 09:08:00 PM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7945054272056, -122.403956804569)",161002938-55 -142432790,E02,14084746,Medical Incident,08/31/2014,08/31/2014,08/31/2014 07:00:42 PM,08/31/2014 07:01:22 PM,08/31/2014 07:01:50 PM,08/31/2014 07:03:31 PM,08/31/2014 07:06:54 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Patient Declined Transport,08/31/2014 07:09:31 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",142432790-E02 -152521123,64,15096263,Medical Incident,09/09/2015,09/09/2015,09/09/2015 09:31:55 AM,09/09/2015 09:32:57 AM,09/09/2015 09:33:14 AM,09/09/2015 09:33:25 AM,09/09/2015 09:38:20 AM,09/09/2015 09:55:30 AM,09/09/2015 10:07:38 AM,Code 2 Transport,09/09/2015 10:40:51 AM,2100 Block of BALBOA ST,San Francisco,94121,B07,14,7171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7763694845957, -122.481778677383)",152521123-64 -160981724,KM05,16038902,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:08:51 PM,04/07/2016 12:10:53 PM,04/07/2016 12:11:17 PM,04/07/2016 12:11:42 PM,04/07/2016 12:24:22 PM,04/07/2016 12:48:37 PM,04/07/2016 01:13:19 PM,Code 2 Transport,04/07/2016 01:46:30 PM,9TH ST/MARKET ST,San Francisco,94103,B02,36,2337,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160981724-KM05 -161003326,56,16039958,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:01:47 PM,04/09/2016 10:03:07 PM,04/09/2016 10:03:58 PM,04/09/2016 10:04:05 PM,04/09/2016 10:19:16 PM,04/09/2016 11:03:28 PM,04/09/2016 11:18:23 PM,Code 2 Transport,04/09/2016 11:58:28 PM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",161003326-56 -150392853,53,15015290,Medical Incident,02/08/2015,02/08/2015,02/08/2015 06:16:03 PM,02/08/2015 06:17:36 PM,02/08/2015 06:17:49 PM,02/08/2015 06:18:03 PM,02/08/2015 06:34:29 PM,02/08/2015 06:52:58 PM,02/08/2015 07:15:56 PM,Code 2 Transport,02/08/2015 07:51:46 PM,100 Block of ASHTON AVE,San Francisco,94132,B09,15,8434,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7208515092179, -122.462328795152)",150392853-53 -151062816,79,15040145,Medical Incident,04/16/2015,04/16/2015,04/16/2015 04:55:56 PM,04/16/2015 04:56:56 PM,04/16/2015 04:57:12 PM,04/16/2015 04:57:21 PM,04/16/2015 05:10:00 PM,04/16/2015 05:27:49 PM,04/16/2015 05:43:33 PM,Code 2 Transport,04/16/2015 06:16:22 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",151062816-79 -150460336,71,15017750,Medical Incident,02/15/2015,02/14/2015,02/15/2015 02:04:34 AM,02/15/2015 02:07:06 AM,02/15/2015 02:07:23 AM,02/15/2015 02:08:01 AM,02/15/2015 02:14:25 AM,02/15/2015 02:34:50 AM,02/15/2015 02:46:31 AM,Code 2 Transport,02/15/2015 03:06:28 AM,5400 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8157,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7408206188766, -122.435408604445)",150460336-71 -151000355,E36,15037718,Medical Incident,04/10/2015,04/09/2015,04/10/2015 04:46:33 AM,04/10/2015 04:48:34 AM,04/10/2015 04:48:47 AM,04/10/2015 04:51:40 AM,04/10/2015 04:53:45 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Code 2 Transport,04/10/2015 05:11:22 AM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7771444793102, -122.415757033207)",151000355-E36 -151413643,E51,15053748,Administrative,05/21/2015,05/21/2015,05/21/2015 08:25:20 PM,05/21/2015 08:25:29 PM,05/21/2015 08:25:47 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 08:26:13 PM,200 Block of LINCOLN BLVD,Presidio,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8016003147368, -122.456408426343)",151413643-E51 -151403293,E04,15053309,Medical Incident,05/20/2015,05/20/2015,05/20/2015 07:32:55 PM,05/20/2015 07:35:38 PM,05/20/2015 07:35:47 PM,05/20/2015 07:37:12 PM,05/20/2015 07:42:25 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Code 2 Transport,05/20/2015 07:58:02 PM,BERRY ST/4TH ST,San Francisco,94158,B03,8,2171,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7757873146535, -122.393355126399)",151403293-E04 -153133352,E15,15120432,Medical Incident,11/09/2015,11/09/2015,11/09/2015 08:43:48 PM,11/09/2015 08:44:31 PM,11/09/2015 08:45:14 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,04/25/2016 01:07:18 PM,Code 3 Transport,11/09/2015 08:46:21 PM,900 Block of FRANCE AV,San Francisco,94112,B09,43,6157,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7165657671723, -122.430897952623)",153133352-E15 -142130761,84,14073759,Medical Incident,08/01/2014,08/01/2014,08/01/2014 08:13:00 AM,08/01/2014 08:15:44 AM,08/01/2014 08:19:41 AM,08/01/2014 08:19:46 AM,08/01/2014 08:27:11 AM,08/01/2014 08:42:33 AM,08/01/2014 08:45:22 AM,Code 3 Transport,08/01/2014 09:36:05 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",142130761-84 -151531763,B09,15058278,Structure Fire,06/02/2015,06/02/2015,06/02/2015 01:03:48 PM,06/02/2015 01:05:15 PM,06/02/2015 01:05:46 PM,06/02/2015 01:07:12 PM,06/02/2015 01:12:08 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Fire,06/02/2015 01:14:12 PM,1000 Block of GOETTINGEN ST,San Francisco,94134,B10,44,6313,3,3,3,false,Alarm,1,CHIEF,3,10,10,Portola,"(37.7190470338959, -122.403385740748)",151531763-B09 -150790013,RS2,15030113,Structure Fire,03/20/2015,03/19/2015,03/20/2015 12:01:07 AM,03/20/2015 12:04:49 AM,03/20/2015 12:04:58 AM,03/20/2015 12:06:16 AM,03/20/2015 12:12:19 AM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 12:41:15 AM,MADRID ST/BRAZIL AV,San Francisco,94112,B09,43,6133,3,3,3,false,Alarm,1,RESCUE SQUAD,7,9,11,Excelsior,"(37.7231672404647, -122.43163313445)",150790013-RS2 -153181619,E31,15122248,Medical Incident,11/14/2015,11/14/2015,11/14/2015 11:55:42 AM,11/14/2015 11:56:35 AM,11/14/2015 11:57:16 AM,11/14/2015 11:58:20 AM,11/14/2015 11:59:13 AM,04/25/2016 01:07:12 PM,04/25/2016 01:07:12 PM,Patient Declined Transport,11/14/2015 12:04:25 PM,GEARY BL/9TH AV,San Francisco,94118,B07,31,7135,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7808797138944, -122.46748765154)",153181619-E31 -160971907,KM11,16038411,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:39:06 PM,04/06/2016 12:39:06 PM,04/06/2016 12:43:01 PM,04/06/2016 12:43:01 PM,04/06/2016 12:54:49 PM,04/06/2016 01:22:05 PM,04/06/2016 02:11:40 PM,Code 2 Transport,04/06/2016 02:45:55 PM,1400 Block of 48TH AVE,San Francisco,94122,B08,23,7723,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7594009210763, -122.507932858048)",160971907-KM11 -142862951,58,14100932,Medical Incident,10/13/2014,10/13/2014,10/13/2014 06:53:18 PM,10/13/2014 06:55:20 PM,10/13/2014 07:00:40 PM,10/13/2014 07:01:03 PM,10/13/2014 07:27:35 PM,10/13/2014 07:37:28 PM,10/13/2014 07:56:11 PM,Code 2 Transport,10/13/2014 08:26:29 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",142862951-58 -141641576,E05,14056521,Traffic Collision,06/13/2014,06/13/2014,06/13/2014 12:40:32 PM,06/13/2014 12:40:32 PM,06/13/2014 12:40:46 PM,06/13/2014 12:41:52 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Patient Declined Transport,06/13/2014 12:43:06 PM,13TH ST/SOUTH VAN NESS AV,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Mission,"(37.769815078903, -122.417753195885)",141641576-E05 -160922124,KM11,16036477,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:56:22 PM,04/01/2016 02:57:42 PM,04/01/2016 02:58:07 PM,04/01/2016 02:58:34 PM,04/01/2016 03:01:45 PM,04/01/2016 03:14:45 PM,04/01/2016 03:36:43 PM,Code 2 Transport,04/01/2016 03:59:40 PM,EDDY ST/FILLMORE ST,San Francisco,94115,B05,5,3515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7814283698384, -122.432328983123)",160922124-KM11 -150553226,T19,15021207,Structure Fire,02/24/2015,02/24/2015,02/24/2015 06:39:33 PM,02/24/2015 06:40:30 PM,02/24/2015 06:40:45 PM,02/24/2015 06:42:25 PM,02/24/2015 06:45:48 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Fire,02/24/2015 07:02:06 PM,700 Block of GONZALEZ DR,San Francisco,94132,B08,29,8482,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",150553226-T19 -153080446,79,15118238,Medical Incident,11/04/2015,11/03/2015,11/04/2015 05:53:07 AM,11/04/2015 05:53:49 AM,11/04/2015 05:55:45 AM,11/04/2015 05:58:25 AM,11/04/2015 06:07:21 AM,11/04/2015 06:36:16 AM,11/04/2015 06:49:43 AM,Code 2 Transport,11/04/2015 08:02:00 AM,GENEVA AV/CARTER ST,San Francisco,94134,B09,43,6245,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Excelsior,"(37.7092509506804, -122.423353437119)",153080446-79 -152254022,52,15085957,Medical Incident,08/13/2015,08/13/2015,08/13/2015 10:55:50 PM,08/13/2015 10:57:00 PM,08/13/2015 10:57:45 PM,08/13/2015 10:58:21 PM,08/13/2015 11:06:19 PM,08/13/2015 11:15:10 PM,08/13/2015 11:16:12 PM,Code 2 Transport,08/13/2015 11:33:55 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7443660385474, -122.422657009241)",152254022-52 -160940751,71,16037178,Medical Incident,04/03/2016,04/02/2016,04/03/2016 06:44:57 AM,04/03/2016 06:45:49 AM,04/03/2016 06:46:14 AM,04/03/2016 06:46:24 AM,04/03/2016 06:49:42 AM,04/03/2016 06:56:42 AM,04/03/2016 07:09:21 AM,Code 2 Transport,04/03/2016 07:32:33 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160940751-71 -153311337,62,15127350,Medical Incident,11/27/2015,11/27/2015,11/27/2015 11:46:32 AM,11/27/2015 11:48:54 AM,11/27/2015 11:49:13 AM,11/27/2015 11:49:27 AM,11/27/2015 12:17:17 PM,11/27/2015 12:17:23 PM,11/27/2015 12:37:10 PM,Code 2 Transport,11/27/2015 01:23:27 PM,800 Block of 44TH AVE,San Francisco,94121,B07,34,7271,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7725696176603, -122.504681383518)",153311337-62 -161002680,55,16039881,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:36:41 PM,04/09/2016 06:39:47 PM,04/09/2016 06:39:56 PM,04/09/2016 06:40:04 PM,04/09/2016 06:52:23 PM,04/09/2016 07:02:59 PM,04/09/2016 07:23:19 PM,Code 2 Transport,04/09/2016 08:03:42 PM,OAK GROVE ST/BRYANT ST,San Francisco,94107,B03,8,2255,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.776920406141, -122.40140937936)",161002680-55 -160940961,KM06,16037197,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:38:11 AM,04/03/2016 08:38:28 AM,04/03/2016 08:39:07 AM,04/03/2016 08:39:55 AM,04/03/2016 08:42:53 AM,04/03/2016 09:04:00 AM,04/03/2016 09:12:39 AM,Code 2 Transport,04/03/2016 09:45:42 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160940961-KM06 -152381498,E05,15090613,Medical Incident,08/26/2015,08/26/2015,08/26/2015 11:53:13 AM,08/26/2015 11:53:13 AM,08/26/2015 11:53:36 AM,08/26/2015 11:55:04 AM,08/26/2015 11:55:04 AM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Code 2 Transport,08/26/2015 12:02:00 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",152381498-E05 -160961048,88,16037941,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:47:52 AM,04/05/2016 09:49:54 AM,04/05/2016 09:50:22 AM,04/05/2016 09:50:28 AM,04/05/2016 09:54:43 AM,04/05/2016 10:12:23 AM,04/05/2016 10:19:00 AM,Code 2 Transport,04/05/2016 10:49:37 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160961048-88 -150453724,E08,15017689,Medical Incident,02/14/2015,02/14/2015,02/14/2015 10:41:17 PM,02/14/2015 10:42:31 PM,02/14/2015 10:43:14 PM,02/14/2015 10:44:53 PM,02/14/2015 10:46:19 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Other,02/14/2015 10:50:40 PM,4TH ST/BRYANT ST,San Francisco,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7795669099357, -122.398059940086)",150453724-E08 -160970032,89,16038241,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:11:25 AM,04/06/2016 12:11:25 AM,04/06/2016 12:11:57 AM,04/06/2016 12:12:04 AM,04/06/2016 12:27:34 AM,04/06/2016 12:45:10 AM,04/06/2016 12:57:52 AM,Code 2 Transport,04/06/2016 01:37:06 AM,400 Block of FILBERT ST,San Francisco,94133,B01,28,126,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8016501276831, -122.406745753507)",160970032-89 -143652858,82,14130840,Medical Incident,12/31/2014,12/31/2014,12/31/2014 07:45:46 PM,12/31/2014 07:45:46 PM,12/31/2014 07:46:56 PM,12/31/2014 07:47:15 PM,12/31/2014 08:03:06 PM,04/25/2016 01:13:06 PM,04/25/2016 01:13:06 PM,No Merit,12/31/2014 08:07:18 PM,PARKER AV/ANZA ST,San Francisco,94118,B07,10,4453,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7802390495145, -122.453876628903)",143652858-82 -153170346,75,15121697,Medical Incident,11/13/2015,11/12/2015,11/13/2015 03:03:21 AM,11/13/2015 03:04:02 AM,11/13/2015 03:04:51 AM,11/13/2015 03:05:06 AM,11/13/2015 03:11:38 AM,11/13/2015 03:39:17 AM,11/13/2015 03:58:08 AM,Code 2 Transport,11/13/2015 04:29:10 AM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",153170346-75 -143561051,70,14127261,Medical Incident,12/22/2014,12/22/2014,12/22/2014 09:57:41 AM,12/22/2014 10:00:00 AM,12/22/2014 10:00:45 AM,12/22/2014 10:01:17 AM,12/22/2014 10:22:57 AM,12/22/2014 10:47:44 AM,12/22/2014 11:02:21 AM,Code 2 Transport,12/22/2014 11:59:19 AM,800 Block of LOMBARD ST,San Francisco,94133,B01,28,1435,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.80246176674, -122.41549175952)",143561051-70 -150930444,E23,15035229,Medical Incident,04/03/2015,04/02/2015,04/03/2015 05:10:31 AM,04/03/2015 05:12:46 AM,04/03/2015 05:13:25 AM,04/03/2015 05:15:07 AM,04/03/2015 05:18:25 AM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Code 2 Transport,04/03/2015 05:25:52 AM,1300 Block of 38TH AVE,San Francisco,94122,B08,23,7626,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7617306094157, -122.497487695779)",150930444-E23 -160990290,60,16039175,Medical Incident,04/08/2016,04/07/2016,04/08/2016 03:02:00 AM,04/08/2016 03:04:25 AM,04/08/2016 03:04:50 AM,04/08/2016 03:04:58 AM,04/08/2016 03:10:03 AM,04/08/2016 03:19:36 AM,04/08/2016 03:26:44 AM,Code 2 Transport,04/08/2016 04:09:43 AM,500 Block of 15TH AV,San Francisco,94118,B07,31,7154,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7777197048948, -122.473834612035)",160990290-60 -151200539,B08,15045274,Alarms,04/30/2015,04/29/2015,04/30/2015 06:52:10 AM,04/30/2015 06:54:05 AM,04/30/2015 06:54:45 AM,04/30/2015 06:56:50 AM,04/30/2015 07:00:36 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/30/2015 07:01:53 AM,2400 Block of 32ND AVE,San Francisco,94116,B08,18,7546,3,3,3,false,Alarm,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7415063192431, -122.489486072568)",151200539-B08 -141230125,E06,14041625,Medical Incident,05/03/2014,05/03/2014,05/03/2014 10:41:44 AM,05/03/2014 10:44:16 AM,05/03/2014 10:44:28 AM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Code 2 Transport,05/03/2014 11:53:21 AM,100 Block of GUERRERO ST,SAN FRANCISCO,94103,B02,6,5214,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,8,Mission,"(37.7688930095544, -122.42438060559)",141230125-E06 -160974213,AM24,16038674,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:20:37 PM,04/06/2016 09:21:24 PM,04/06/2016 09:22:12 PM,04/06/2016 09:23:00 PM,04/06/2016 09:45:02 PM,04/06/2016 09:47:06 PM,04/06/2016 10:08:10 PM,Code 2 Transport,04/06/2016 10:48:18 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160974213-AM24 -151962866,E31,15074846,Medical Incident,07/15/2015,07/15/2015,07/15/2015 06:07:21 PM,07/15/2015 06:07:58 PM,07/15/2015 06:08:32 PM,07/15/2015 06:09:30 PM,07/15/2015 06:11:03 PM,04/25/2016 01:09:27 PM,04/25/2016 01:09:27 PM,Code 3 Transport,07/15/2015 06:17:39 PM,400 Block of 8TH AVE,San Francisco,94118,B07,31,7135,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7799623898106, -122.466288408431)",151962866-E31 -141793425,RS2,14061976,Medical Incident,06/28/2014,06/28/2014,06/28/2014 09:08:16 PM,06/28/2014 09:10:31 PM,06/28/2014 09:10:59 PM,06/28/2014 09:11:44 PM,06/28/2014 09:13:20 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,Patient Declined Transport,06/28/2014 09:20:29 PM,SOUTH VAN NESS AV/16TH ST,San Francisco,94110,B02,7,5225,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7651831353816, -122.417486597301)",141793425-RS2 -160940297,76,16037126,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:32:27 AM,04/03/2016 01:36:59 AM,04/03/2016 01:37:12 AM,04/03/2016 01:37:20 AM,04/03/2016 01:40:34 AM,04/03/2016 02:05:39 AM,04/03/2016 01:44:48 AM,Code 2 Transport,04/03/2016 02:27:07 AM,FELL ST/MARKET ST,San Francisco,94103,B02,36,3111,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",160940297-76 -160951954,AM08,16037649,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:31:42 PM,04/04/2016 01:32:20 PM,04/04/2016 01:35:22 PM,04/04/2016 01:36:06 PM,04/04/2016 01:43:20 PM,04/04/2016 01:55:28 PM,04/04/2016 02:09:11 PM,Code 2 Transport,04/04/2016 03:03:14 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160951954-AM08 -150452339,75,15017564,Structure Fire,02/14/2015,02/14/2015,02/14/2015 04:01:39 PM,02/14/2015 04:02:34 PM,02/14/2015 04:02:59 PM,02/14/2015 04:03:13 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 04:09:02 PM,1700 Block of UNION ST,San Francisco,94123,B04,16,3335,3,3,3,true,Alarm,1,MEDIC,10,4,2,Marina,"(37.7979757626675, -122.428080525252)",150452339-75 -161000554,KM06,16039628,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:55:12 AM,04/09/2016 04:56:07 AM,04/09/2016 04:56:32 AM,04/09/2016 04:58:22 AM,04/09/2016 05:06:22 AM,04/09/2016 05:24:04 AM,04/09/2016 06:04:29 AM,Code 3 Transport,04/09/2016 06:14:45 AM,400 Block of 39TH AVE,San Francisco,94121,B07,34,7256,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7803684793126, -122.499731430722)",161000554-KM06 -153103558,70,15119328,Medical Incident,11/06/2015,11/06/2015,11/06/2015 08:59:30 PM,11/06/2015 08:59:48 PM,11/06/2015 09:00:51 PM,11/06/2015 09:01:14 PM,11/06/2015 09:19:30 PM,04/25/2016 01:07:21 PM,04/25/2016 01:07:21 PM,Patient Declined Transport,11/06/2015 09:46:50 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",153103558-70 -160941434,AM10,16037233,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:06:23 AM,04/03/2016 11:09:07 AM,04/03/2016 11:10:29 AM,04/03/2016 11:11:05 AM,04/03/2016 11:21:06 AM,04/03/2016 12:07:47 PM,04/03/2016 12:26:41 PM,Code 2 Transport,04/03/2016 01:07:37 PM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",160941434-AM10 -141040285,54,14035176,Medical Incident,04/14/2014,04/14/2014,04/14/2014 06:12:28 PM,04/14/2014 06:12:34 PM,04/14/2014 06:22:09 PM,04/14/2014 06:24:32 PM,04/14/2014 06:39:42 PM,04/25/2016 01:17:53 PM,04/25/2016 01:17:53 PM,Patient Declined Transport,04/14/2014 06:58:04 PM,100 Block of BLYTHDALE AVE,SAN FRANCISCO,94134,B09,43,6244,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",141040285-54 -152510805,E14,15095790,Traffic Collision,09/08/2015,09/08/2015,09/08/2015 08:15:23 AM,09/08/2015 08:15:23 AM,09/08/2015 08:17:17 AM,09/08/2015 08:19:43 AM,09/08/2015 08:24:00 AM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Code 2 Transport,09/08/2015 09:17:22 AM,FULTON ST/CROSSOVER DR,San Francisco,94121,B07,14,7211,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7725690611121, -122.484194200958)",152510805-E14 -141250246,T19,14042391,Traffic Collision,05/05/2014,05/05/2014,05/05/2014 02:31:29 PM,05/05/2014 02:33:50 PM,05/05/2014 02:34:08 PM,05/05/2014 02:35:58 PM,05/05/2014 02:38:23 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 02:52:30 PM,19TH AV/DENSLOWE DR,SAN FRANCISCO,94132,B08,19,8726,2,2,2,false,Non Life-threatening,1,TRUCK,1,9,7,Lakeshore,"(37.7249055482586, -122.474848312213)",141250246-T19 -150451834,77,15017505,Medical Incident,02/14/2015,02/14/2015,02/14/2015 01:36:59 PM,02/14/2015 01:36:59 PM,02/14/2015 01:37:36 PM,02/14/2015 01:37:46 PM,02/14/2015 02:02:35 PM,02/14/2015 02:10:29 PM,02/14/2015 02:48:27 PM,Code 2 Transport,02/14/2015 03:07:10 PM,KIRKHAM ST/46TH AV,San Francisco,94122,B08,23,7717,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7585595250477, -122.505796847162)",150451834-77 -160991669,AM08,16039291,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:58:12 PM,04/08/2016 12:59:41 PM,04/08/2016 01:00:18 PM,04/08/2016 01:00:18 PM,04/08/2016 01:17:25 PM,04/08/2016 01:43:04 PM,04/08/2016 02:13:00 PM,Code 2 Transport,04/08/2016 02:51:07 PM,"CALL BOX: ELLSWORTH ST/ALEMANY SB BL,SF",San Francisco,94110,B06,32,5645,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7322713620509, -122.418897144818)",160991669-AM08 -160921210,67,16036391,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:33:27 AM,04/01/2016 10:35:27 AM,04/01/2016 10:35:44 AM,04/01/2016 10:35:58 AM,04/01/2016 10:42:04 AM,04/01/2016 10:56:29 AM,04/01/2016 11:27:53 AM,Code 2 Transport,04/01/2016 12:06:21 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",160921210-67 -150752380,E43,15028833,Medical Incident,03/16/2015,03/16/2015,03/16/2015 03:40:48 PM,03/16/2015 03:40:48 PM,03/16/2015 03:41:17 PM,03/16/2015 03:42:53 PM,03/16/2015 03:44:29 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Code 2 Transport,03/16/2015 03:55:47 PM,RUSSIA AV/MISSION ST,San Francisco,94112,B09,43,6126,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7215750031455, -122.437149523285)",150752380-E43 -152790121,55,15106881,Medical Incident,10/06/2015,10/05/2015,10/06/2015 01:10:05 AM,10/06/2015 01:11:48 AM,10/06/2015 01:12:23 AM,10/06/2015 01:12:34 AM,10/06/2015 01:15:07 AM,10/06/2015 01:26:56 AM,10/06/2015 01:35:13 AM,Code 2 Transport,10/06/2015 02:30:17 AM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",152790121-55 -143303557,61,14117182,Structure Fire,11/26/2014,11/26/2014,11/26/2014 09:49:40 PM,11/26/2014 09:51:16 PM,11/26/2014 09:51:35 PM,11/26/2014 09:51:50 PM,11/26/2014 09:54:49 PM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,Fire,11/26/2014 10:29:15 PM,2100 Block of FILBERT ST,San Francisco,94123,B04,16,3462,3,3,3,true,Alarm,1,MEDIC,3,4,2,Marina,"(37.7981798327213, -122.434867916145)",143303557-61 -153120485,65,15119810,Medical Incident,11/08/2015,11/07/2015,11/08/2015 04:35:31 AM,11/08/2015 04:35:31 AM,11/08/2015 04:35:49 AM,11/08/2015 04:35:58 AM,11/08/2015 04:49:51 AM,11/08/2015 04:59:09 AM,11/08/2015 05:11:53 AM,Code 2 Transport,11/08/2015 05:51:25 AM,100 Block of LANDERS ST,San Francisco,94114,B02,6,5234,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7659143603231, -122.427799913559)",153120485-65 -160990455,63,16039193,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:10:45 AM,04/08/2016 06:12:00 AM,04/08/2016 06:12:25 AM,04/08/2016 06:12:38 AM,04/08/2016 06:16:46 AM,04/08/2016 06:35:33 AM,04/08/2016 06:42:04 AM,Code 2 Transport,04/08/2016 07:13:28 AM,800 Block of WALLER ST,San Francisco,94117,B05,21,4143,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7703324728476, -122.437337332628)",160990455-63 -150053766,T14,15002064,Structure Fire,01/05/2015,01/05/2015,01/05/2015 10:47:41 PM,01/05/2015 10:47:41 PM,01/05/2015 10:47:47 PM,01/05/2015 10:49:38 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Fire,01/05/2015 10:51:24 PM,9TH AV/GEARY BL,San Francisco,94118,B07,31,7135,3,3,3,false,Alarm,1,TRUCK,2,7,1,Inner Richmond,"(37.7808797138944, -122.46748765154)",150053766-T14 -141921019,54,14066495,Medical Incident,07/11/2014,07/11/2014,07/11/2014 09:31:03 AM,07/11/2014 09:34:00 AM,07/11/2014 09:36:53 AM,07/11/2014 09:36:53 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,No Merit,07/11/2014 09:42:17 AM,1800 Block of MASON ST,San Francisco,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Chinatown,"(37.800652951997, -122.412526437494)",141921019-54 -141570150,E09,14053911,Medical Incident,06/06/2014,06/05/2014,06/06/2014 01:18:20 AM,06/06/2014 01:18:56 AM,06/06/2014 01:19:39 AM,06/06/2014 01:21:50 AM,06/06/2014 01:27:03 AM,04/25/2016 01:16:56 PM,04/25/2016 01:16:56 PM,Code 2 Transport,06/06/2014 01:41:02 AM,300 Block of MULLEN AVE,San Francisco,94110,B06,9,5672,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7462179903221, -122.405851870951)",141570150-E09 -143140619,E44,14111143,Medical Incident,11/10/2014,11/09/2014,11/10/2014 07:39:03 AM,11/10/2014 07:45:50 AM,11/10/2014 08:08:34 AM,11/10/2014 08:13:42 AM,11/10/2014 08:16:46 AM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Code 2 Transport,11/10/2014 08:25:01 AM,0 Block of LE CONTE CIR,San Francisco,94124,B10,44,6575,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7178752136595, -122.395298429153)",143140619-E44 -160952448,71,16037680,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:25:28 PM,04/04/2016 03:26:37 PM,04/04/2016 03:27:05 PM,04/04/2016 03:27:19 PM,04/04/2016 03:34:17 PM,04/04/2016 03:50:06 PM,04/04/2016 04:04:05 PM,Code 2 Transport,04/04/2016 04:31:00 PM,0 Block of MAXWELL CT,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7670121090246, -122.423152344259)",160952448-71 -151600060,74,15060982,Medical Incident,06/09/2015,06/08/2015,06/09/2015 12:25:24 AM,06/09/2015 12:28:42 AM,06/09/2015 12:29:02 AM,06/09/2015 12:29:17 AM,06/09/2015 12:33:02 AM,06/09/2015 12:54:17 AM,06/09/2015 12:58:52 AM,Code 3 Transport,06/09/2015 01:49:45 AM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",151600060-74 -142833714,E01,14099846,Medical Incident,10/10/2014,10/10/2014,10/10/2014 11:10:58 PM,10/10/2014 11:12:40 PM,10/10/2014 11:13:16 PM,10/10/2014 11:14:19 PM,10/10/2014 11:15:39 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Code 2 Transport,10/10/2014 11:22:57 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7853585501162, -122.415955969312)",142833714-E01 -143432133,E22,14121981,Administrative,12/09/2014,12/09/2014,12/09/2014 02:11:07 PM,12/09/2014 02:11:14 PM,12/09/2014 02:11:26 PM,12/09/2014 02:11:56 PM,12/09/2014 02:11:56 PM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,Other,12/09/2014 02:11:58 PM,1200 Block of 16TH AVE,San Francisco,94122,B08,22,7367,3,3,3,false,,1,ENGINE,1,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",143432133-E22 -151641378,54,15062684,Medical Incident,06/13/2015,06/13/2015,06/13/2015 11:32:29 AM,06/13/2015 11:34:53 AM,06/13/2015 11:35:46 AM,06/13/2015 11:35:58 AM,06/13/2015 11:44:50 AM,06/13/2015 12:05:09 PM,06/13/2015 12:30:20 PM,Code 2 Transport,06/13/2015 01:05:02 PM,0 Block of LOS PALMOS DR,San Francisco,94127,B09,15,8246,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7349122711117, -122.447517632589)",151641378-54 -142202826,E01,14076449,Medical Incident,08/08/2014,08/08/2014,08/08/2014 05:54:41 PM,08/08/2014 05:56:01 PM,08/08/2014 05:58:17 PM,08/08/2014 05:58:58 PM,08/08/2014 06:03:49 PM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,Code 2 Transport,08/08/2014 06:31:23 PM,200 Block of GEARY ST,San Francisco,94108,B01,1,1323,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",142202826-E01 -151521983,76,15057894,Medical Incident,06/01/2015,06/01/2015,06/01/2015 02:21:27 PM,06/01/2015 02:21:27 PM,06/01/2015 02:22:29 PM,06/01/2015 02:22:35 PM,06/01/2015 02:29:30 PM,06/01/2015 02:50:50 PM,06/01/2015 03:00:25 PM,Code 3 Transport,06/01/2015 04:03:30 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",151521983-76 -150921726,MA1,15034987,Structure Fire,04/02/2015,04/02/2015,04/02/2015 01:01:02 PM,04/02/2015 01:01:29 PM,04/02/2015 01:07:26 PM,04/02/2015 01:25:34 PM,04/02/2015 01:25:34 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Fire,04/02/2015 02:30:06 PM,1400 Block of VAN DYKE AVE,San Francisco,94124,B10,17,6651,3,3,3,false,Fire,2,SUPPORT,14,10,10,Bayview Hunters Point,"(37.7275267994511, -122.389650111212)",150921726-MA1 -161010774,82,16040098,Medical Incident,04/10/2016,04/09/2016,04/10/2016 07:15:41 AM,04/10/2016 07:17:23 AM,04/10/2016 07:18:29 AM,04/10/2016 07:18:40 AM,04/10/2016 07:27:02 AM,04/10/2016 07:59:50 AM,04/10/2016 08:20:09 AM,Code 2 Transport,04/10/2016 08:40:41 AM,100 Block of CROWN TER,San Francisco,94114,B05,20,5286,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7575965261375, -122.447006923006)",161010774-82 -142870132,E06,14100997,Medical Incident,10/14/2014,10/13/2014,10/14/2014 12:54:14 AM,10/14/2014 12:55:56 AM,10/14/2014 01:08:53 AM,10/14/2014 01:08:53 AM,10/14/2014 01:08:53 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/14/2014 01:12:07 AM,2300 Block of MARKET ST,San Francisco,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",142870132-E06 -142611892,E07,14091269,Medical Incident,09/18/2014,09/18/2014,09/18/2014 01:06:33 PM,09/18/2014 01:07:36 PM,09/18/2014 01:07:41 PM,09/18/2014 01:11:23 PM,09/18/2014 01:11:23 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,Code 2 Transport,09/18/2014 01:17:53 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",142611892-E07 -151440793,T17,15054685,Structure Fire,05/24/2015,05/23/2015,05/24/2015 07:21:35 AM,05/24/2015 07:22:48 AM,05/24/2015 07:23:23 AM,05/24/2015 07:33:07 AM,05/24/2015 07:33:07 AM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Fire,05/24/2015 07:34:24 AM,PAUL AV/SAN BRUNO AV,San Francisco,94134,B10,44,6326,3,3,3,false,Alarm,1,TRUCK,6,10,9,Portola,"(37.7239199964679, -122.402060968175)",151440793-T17 -152501506,E29,15095463,Medical Incident,09/07/2015,09/07/2015,09/07/2015 12:43:07 PM,09/07/2015 12:45:01 PM,09/07/2015 12:58:54 PM,09/07/2015 01:00:05 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Code 2 Transport,09/07/2015 01:00:52 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7760463471271, -122.41128875661)",152501506-E29 -160953411,78,16037769,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:23:28 PM,04/04/2016 07:25:59 PM,04/04/2016 07:27:16 PM,04/04/2016 07:27:30 PM,04/04/2016 07:43:01 PM,04/04/2016 08:07:11 PM,04/04/2016 08:33:44 PM,Code 2 Transport,04/04/2016 09:09:10 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160953411-78 -151330699,60,15050350,Medical Incident,05/13/2015,05/12/2015,05/13/2015 07:45:36 AM,05/13/2015 07:45:36 AM,05/13/2015 07:45:49 AM,05/13/2015 07:47:28 AM,05/13/2015 07:53:27 AM,05/13/2015 08:08:48 AM,05/13/2015 08:59:14 AM,Code 2 Transport,05/13/2015 09:26:19 AM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",151330699-60 -160961255,KM02,16037960,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:39:11 AM,04/05/2016 10:40:41 AM,04/05/2016 10:40:56 AM,04/05/2016 10:41:29 AM,04/05/2016 10:43:53 AM,04/05/2016 11:08:24 AM,04/05/2016 11:23:09 AM,Code 2 Transport,04/05/2016 12:10:53 PM,400 Block of OAK ST,San Francisco,94102,B02,36,3414,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7744393910372, -122.426706539021)",160961255-KM02 -151630292,E36,15062154,Medical Incident,06/12/2015,06/11/2015,06/12/2015 03:17:35 AM,06/12/2015 03:19:48 AM,06/12/2015 03:20:29 AM,06/12/2015 03:23:13 AM,06/12/2015 03:26:35 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Code 2 Transport,06/12/2015 03:34:50 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",151630292-E36 -153321051,E22,15127655,Medical Incident,11/28/2015,11/28/2015,11/28/2015 09:44:23 AM,11/28/2015 09:45:00 AM,11/28/2015 09:45:36 AM,11/28/2015 09:46:50 AM,11/28/2015 09:49:51 AM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,Against Medical Advice,11/28/2015 09:54:25 AM,600 Block of MORAGA ST,San Francisco,94122,B08,22,7343,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7563595382328, -122.469534301951)",153321051-E22 -151091224,T17,15041242,Medical Incident,04/19/2015,04/19/2015,04/19/2015 10:41:41 AM,04/19/2015 10:42:32 AM,04/19/2015 10:43:01 AM,04/19/2015 10:44:25 AM,04/19/2015 10:48:05 AM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Code 3 Transport,04/19/2015 10:51:51 AM,0 Block of CASHMERE ST,San Francisco,94124,B10,25,652,E,E,3,false,Potentially Life-Threatening,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",151091224-T17 -160993165,68,16039431,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:56:44 PM,04/08/2016 06:56:44 PM,04/08/2016 06:57:03 PM,04/08/2016 06:57:10 PM,04/08/2016 07:04:07 PM,04/08/2016 07:16:30 PM,04/08/2016 07:39:32 PM,Code 2 Transport,04/08/2016 08:09:33 PM,POLK ST/CLAY ST,San Francisco,94109,B04,41,3123,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7923832522829, -122.421052874002)",160993165-68 -151570170,E06,15059771,Structure Fire,06/06/2015,06/05/2015,06/06/2015 01:07:25 AM,06/06/2015 01:07:25 AM,06/06/2015 01:07:32 AM,06/06/2015 01:08:59 AM,06/06/2015 01:10:54 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Fire,06/06/2015 01:11:18 AM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",151570170-E06 -151003494,82,15038018,Medical Incident,04/10/2015,04/10/2015,04/10/2015 09:12:43 PM,04/10/2015 09:15:00 PM,04/10/2015 09:15:25 PM,04/10/2015 09:15:34 PM,04/10/2015 09:24:08 PM,04/10/2015 09:39:49 PM,04/10/2015 09:50:17 PM,Code 2 Transport,04/10/2015 10:08:04 PM,1800 Block of OAKDALE AVE,San Francisco,94124,B10,42,6444,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.736976517963, -122.394646403308)",151003494-82 -160921365,88,16036405,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:26:41 AM,04/01/2016 11:28:02 AM,04/01/2016 11:29:28 AM,04/01/2016 11:29:59 AM,04/01/2016 11:32:26 AM,04/01/2016 11:50:07 AM,04/01/2016 12:06:39 PM,Code 2 Transport,04/01/2016 12:28:27 PM,300 Block of SAN CARLOS ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7577905969289, -122.419696229764)",160921365-88 -143572082,KM12,14127796,Medical Incident,12/23/2014,12/23/2014,12/23/2014 02:07:40 PM,12/23/2014 02:09:15 PM,12/23/2014 02:09:44 PM,12/23/2014 02:10:18 PM,12/23/2014 02:16:48 PM,12/23/2014 02:31:22 PM,12/23/2014 02:38:17 PM,Code 3 Transport,12/23/2014 03:30:16 PM,GOLDEN GATE AV/JONES ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",143572082-KM12 -142323479,E23,14080730,Medical Incident,08/20/2014,08/20/2014,08/20/2014 08:18:47 PM,08/20/2014 08:19:23 PM,08/20/2014 08:19:57 PM,08/20/2014 08:21:23 PM,08/20/2014 08:22:52 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Code 3 Transport,08/20/2014 08:44:05 PM,1300 Block of 48TH AVE,San Francisco,94122,B08,23,7721,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.761256999261, -122.508202143455)",142323479-E23 -142823132,77,14099382,Medical Incident,10/09/2014,10/09/2014,10/09/2014 07:23:17 PM,10/09/2014 07:23:50 PM,10/09/2014 07:24:14 PM,10/09/2014 07:24:23 PM,10/09/2014 07:50:50 PM,10/09/2014 07:50:51 PM,10/09/2014 08:00:40 PM,Code 2 Transport,10/09/2014 08:39:43 PM,1100 Block of CHESTNUT ST,San Francisco,94109,B01,16,3133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8024713065089, -122.422796373799)",142823132-77 -141250270,88,14042410,Medical Incident,05/05/2014,05/05/2014,05/05/2014 03:39:52 PM,05/05/2014 03:41:45 PM,05/05/2014 03:42:47 PM,05/05/2014 03:42:58 PM,05/05/2014 03:50:53 PM,05/05/2014 04:16:22 PM,05/05/2014 04:32:04 PM,Code 2 Transport,05/05/2014 04:40:11 PM,1300 Block of WEBSTER ST,SAN FRANCISCO,94115,B04,5,3514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",141250270-88 -160970177,89,16038255,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:43:18 AM,04/06/2016 01:44:04 AM,04/06/2016 01:45:30 AM,04/06/2016 01:45:45 AM,04/06/2016 01:50:27 AM,04/06/2016 02:01:02 AM,04/06/2016 02:32:45 AM,Code 2 Transport,04/06/2016 03:10:24 AM,BROADWAY/THE EMBARCADERO NOR,San Francisco,94111,B01,13,1131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7989312720846, -122.398114598896)",160970177-89 -143152776,E36,14111675,Medical Incident,11/11/2014,11/11/2014,11/11/2014 06:41:07 PM,11/11/2014 06:42:26 PM,11/11/2014 06:42:45 PM,11/11/2014 06:44:12 PM,11/11/2014 06:46:56 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Code 2 Transport,11/11/2014 06:54:08 PM,1600 Block of MARKET ST,San Francisco,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7732180675925, -122.421522300696)",143152776-E36 -160952298,KM04,16037664,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:51:49 PM,04/04/2016 02:51:49 PM,04/04/2016 02:52:23 PM,04/04/2016 02:54:05 PM,04/04/2016 02:55:27 PM,04/04/2016 03:34:56 PM,04/04/2016 03:58:40 PM,Code 2 Transport,04/04/2016 04:35:04 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7623242063084, -122.43565391414)",160952298-KM04 -160982353,KM09,16038971,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:50:21 PM,04/07/2016 02:53:02 PM,04/07/2016 02:54:03 PM,04/07/2016 02:56:20 PM,04/07/2016 03:09:13 PM,04/07/2016 03:28:43 PM,04/07/2016 03:43:40 PM,Code 2 Transport,04/07/2016 04:26:41 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160982353-KM09 -142502509,E03,14087263,Medical Incident,09/07/2014,09/07/2014,09/07/2014 04:49:29 PM,09/07/2014 04:50:28 PM,09/07/2014 04:50:41 PM,09/07/2014 04:52:17 PM,09/07/2014 04:54:35 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Code 2 Transport,09/07/2014 04:56:34 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",142502509-E03 -142363681,E19,14082248,Traffic Collision,08/24/2014,08/24/2014,08/24/2014 11:02:49 PM,08/24/2014 11:02:49 PM,08/24/2014 11:04:57 PM,08/24/2014 11:07:11 PM,08/24/2014 11:09:21 PM,04/25/2016 01:15:28 PM,04/25/2016 01:15:28 PM,Fire,08/24/2014 11:14:38 PM,19TH AV/BUCKINGHAM WY,San Francisco,94132,B08,19,8726,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.725692147795, -122.475108832537)",142363681-E19 -160940614,70,16037156,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:47:01 AM,04/03/2016 04:47:57 AM,04/03/2016 04:48:26 AM,04/03/2016 04:49:01 AM,04/03/2016 05:00:20 AM,04/03/2016 05:11:33 AM,04/03/2016 05:21:42 AM,Code 2 Transport,04/03/2016 06:24:37 AM,ESSEX ST/FOLSOM ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7863789368239, -122.395645466731)",160940614-70 -160961989,56,16038032,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:37:37 PM,04/05/2016 01:37:37 PM,04/05/2016 01:38:58 PM,04/05/2016 01:39:09 PM,04/05/2016 01:46:04 PM,04/05/2016 02:03:59 PM,04/05/2016 02:28:32 PM,Code 2 Transport,04/05/2016 02:58:33 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",160961989-56 -142853968,AM20,14100635,Medical Incident,10/12/2014,10/12/2014,10/12/2014 10:34:21 PM,10/12/2014 10:34:21 PM,10/12/2014 10:35:32 PM,10/12/2014 10:36:17 PM,10/12/2014 10:46:03 PM,10/12/2014 11:07:45 PM,10/12/2014 11:15:57 PM,Code 2 Transport,10/12/2014 11:38:02 PM,600 Block of OAK ST,San Francisco,94117,B02,5,3523,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",142853968-AM20 -160980133,88,16038735,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:55:16 AM,04/07/2016 12:56:23 AM,04/07/2016 12:57:08 AM,04/07/2016 12:57:55 AM,04/07/2016 01:02:45 AM,04/07/2016 01:37:21 AM,04/07/2016 01:39:56 AM,Code 3 Transport,04/07/2016 03:08:48 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7775775502239, -122.411096952518)",160980133-88 -160974651,55,16038720,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:31:32 PM,04/06/2016 11:33:46 PM,04/06/2016 11:35:43 PM,04/06/2016 11:35:58 PM,04/06/2016 11:44:19 PM,04/07/2016 12:06:51 AM,04/07/2016 12:33:39 AM,Code 2 Transport,04/07/2016 01:05:55 AM,OTIS ST/MCCOPPIN ST,San Francisco,94103,B02,36,5125,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7717702499037, -122.420344369487)",160974651-55 -150831942,E42,15031741,Traffic Collision,03/24/2015,03/24/2015,03/24/2015 01:58:04 PM,03/24/2015 01:58:55 PM,03/24/2015 02:00:11 PM,03/24/2015 02:01:49 PM,03/24/2015 02:04:06 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/24/2015 02:28:00 PM,100 Block of AVENUE C,San Francisco,94130,B10,42,6373,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",150831942-E42 -151182633,KM08,15044697,Medical Incident,04/28/2015,04/28/2015,04/28/2015 04:47:19 PM,04/28/2015 04:49:32 PM,04/28/2015 04:49:59 PM,04/28/2015 04:49:59 PM,04/28/2015 04:59:45 PM,04/28/2015 05:14:23 PM,04/28/2015 05:40:18 PM,Code 2 Transport,04/28/2015 05:55:39 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7858072151093, -122.458631333986)",151182633-KM08 -150963343,E41,15036548,Medical Incident,04/06/2015,04/06/2015,04/06/2015 09:11:25 PM,04/06/2015 09:13:12 PM,04/06/2015 09:13:31 PM,04/06/2015 09:14:33 PM,04/06/2015 09:16:33 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/06/2015 09:23:08 PM,1300 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",150963343-E41 -150121334,E07,15004694,Medical Incident,01/12/2015,01/12/2015,01/12/2015 11:06:53 AM,01/12/2015 11:08:10 AM,01/12/2015 11:08:34 AM,01/12/2015 11:10:02 AM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Code 2 Transport,01/12/2015 11:15:57 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",150121334-E07 -142292435,E40,14079638,Structure Fire,08/17/2014,08/17/2014,08/17/2014 04:23:48 PM,08/17/2014 04:26:29 PM,08/17/2014 04:26:48 PM,08/17/2014 04:28:17 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Fire,08/17/2014 04:32:52 PM,1700 Block of 38TH AVE,San Francisco,94122,B08,18,7624,3,3,3,false,Alarm,1,ENGINE,7,8,4,Sunset/Parkside,"(37.7542694898327, -122.496966375985)",142292435-E40 -152131625,E08,15081102,Structure Fire,08/01/2015,08/01/2015,08/01/2015 12:30:43 PM,08/01/2015 12:31:27 PM,08/01/2015 12:31:43 PM,08/01/2015 12:32:41 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Fire,08/01/2015 12:43:23 PM,100 Block of UTAH ST,San Francisco,94103,B02,29,2351,3,3,3,true,Alarm,1,ENGINE,9,2,10,Mission,"(37.7677826861899, -122.406668803339)",152131625-E08 -160943769,78,16037464,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:31:49 PM,04/03/2016 11:32:23 PM,04/03/2016 11:32:43 PM,04/03/2016 11:33:21 PM,04/03/2016 11:42:00 PM,04/03/2016 11:51:45 PM,04/03/2016 11:57:00 PM,Code 2 Transport,04/04/2016 12:47:13 AM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",160943769-78 -143243723,E05,14114899,Medical Incident,11/20/2014,11/20/2014,11/20/2014 11:26:19 PM,11/20/2014 11:26:19 PM,11/20/2014 11:35:18 PM,11/20/2014 11:37:05 PM,11/20/2014 11:39:53 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Against Medical Advice,11/21/2014 12:07:17 AM,WEBSTER ST/SUTTER ST,San Francisco,94115,B04,5,3513,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Japantown,"(37.7863039619679, -122.431552025504)",143243723-E05 -141090369,KM03,14036941,Medical Incident,04/19/2014,04/19/2014,04/19/2014 10:49:13 PM,04/19/2014 10:49:13 PM,04/19/2014 10:49:24 PM,04/19/2014 10:49:57 PM,04/19/2014 10:53:23 PM,04/19/2014 11:10:53 PM,04/19/2014 11:17:56 PM,Code 2 Transport,04/19/2014 11:45:13 PM,21ST ST/SHOTWELL ST,,94110,B06,7,5455,,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7572324112144, -122.415626198524)",141090369-KM03 -151980539,E06,15075382,Medical Incident,07/17/2015,07/16/2015,07/17/2015 06:30:17 AM,07/17/2015 06:34:25 AM,07/17/2015 06:36:03 AM,07/17/2015 06:37:14 AM,07/17/2015 06:42:10 AM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Code 2 Transport,07/17/2015 07:01:17 AM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",151980539-E06 -143300856,T18,14116929,Structure Fire,11/26/2014,11/26/2014,11/26/2014 08:58:10 AM,11/26/2014 08:58:40 AM,11/26/2014 08:59:06 AM,11/26/2014 09:00:02 AM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/26/2014 09:33:37 AM,2600 Block of JUDAH ST,San Francisco,94122,B08,23,7541,3,3,3,false,Alarm,1,TRUCK,9,8,4,Sunset/Parkside,"(37.7611653096685, -122.490391943862)",143300856-T18 -143531920,66,14126185,Medical Incident,12/19/2014,12/19/2014,12/19/2014 01:56:29 PM,12/19/2014 01:57:08 PM,12/19/2014 01:57:43 PM,12/19/2014 01:58:10 PM,12/19/2014 02:16:15 PM,12/19/2014 02:36:59 PM,12/19/2014 02:55:55 PM,Code 2 Transport,12/19/2014 03:31:19 PM,200 Block of SHOTWELL ST,San Francisco,94110,B02,7,5237,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7644380015359, -122.416376372761)",143531920-66 -160973471,71,16038592,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:07:22 PM,04/06/2016 06:09:30 PM,04/06/2016 06:11:37 PM,04/06/2016 06:12:20 PM,04/06/2016 06:15:42 PM,04/06/2016 06:33:18 PM,04/06/2016 07:01:52 PM,Code 2 Transport,04/06/2016 07:29:38 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,E,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160973471-71 -143290704,60,14116583,Medical Incident,11/25/2014,11/24/2014,11/25/2014 07:54:26 AM,11/25/2014 07:55:50 AM,11/25/2014 07:56:45 AM,11/25/2014 07:57:32 AM,11/25/2014 07:58:42 AM,11/25/2014 08:14:58 AM,11/25/2014 09:01:18 AM,Code 3 Transport,11/25/2014 09:24:12 AM,LAWTON ST/9TH AV,San Francisco,94122,B08,22,7335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7584445947996, -122.46591998484)",143290704-60 -151630184,60,15062145,Medical Incident,06/12/2015,06/11/2015,06/12/2015 01:43:38 AM,06/12/2015 01:44:58 AM,06/12/2015 01:47:47 AM,06/12/2015 01:48:13 AM,06/12/2015 01:56:40 AM,06/12/2015 02:15:02 AM,06/12/2015 02:32:11 AM,Code 2 Transport,06/12/2015 02:58:45 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",151630184-60 -160990081,76,16039157,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:41:42 AM,04/08/2016 12:42:55 AM,04/08/2016 12:43:15 AM,04/08/2016 12:44:01 AM,04/08/2016 12:46:27 AM,04/08/2016 01:04:01 AM,04/08/2016 01:09:12 AM,Code 3 Transport,04/08/2016 02:26:43 AM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160990081-76 -160992094,AM10,16039336,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:40:21 PM,04/08/2016 02:44:21 PM,04/08/2016 02:47:44 PM,04/08/2016 02:48:20 PM,04/08/2016 02:55:17 PM,04/08/2016 03:06:02 PM,04/08/2016 03:38:00 PM,Code 2 Transport,04/08/2016 04:07:03 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160992094-AM10 -142462379,T16,14085735,Medical Incident,09/03/2014,09/03/2014,09/03/2014 03:17:28 PM,09/03/2014 03:17:28 PM,09/03/2014 03:18:48 PM,09/03/2014 03:20:00 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,Code 2 Transport,09/03/2014 03:23:12 PM,2500 Block of VAN NESS AVE,San Francisco,94109,B04,16,3146,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,2,Russian Hill,"(37.7990402347578, -122.42390548516)",142462379-T16 -151940114,64,15073856,Medical Incident,07/13/2015,07/12/2015,07/13/2015 12:43:25 AM,07/13/2015 12:49:39 AM,07/13/2015 12:52:06 AM,07/13/2015 12:52:06 AM,07/13/2015 12:52:18 AM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/13/2015 12:52:48 AM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",151940114-64 -153213000,E03,15123556,Alarms,11/17/2015,11/17/2015,11/17/2015 05:34:37 PM,11/17/2015 05:35:12 PM,11/17/2015 05:35:24 PM,11/17/2015 05:36:23 PM,11/17/2015 05:39:25 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 05:43:12 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",153213000-E03 -153180461,89,15122139,Medical Incident,11/14/2015,11/13/2015,11/14/2015 03:24:42 AM,11/14/2015 03:25:29 AM,11/14/2015 03:25:48 AM,11/14/2015 03:26:32 AM,11/14/2015 03:29:26 AM,11/14/2015 03:45:58 AM,11/14/2015 03:55:38 AM,Code 2 Transport,11/14/2015 04:47:43 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",153180461-89 -150812324,B04,15031092,Alarms,03/22/2015,03/22/2015,03/22/2015 04:13:45 PM,03/22/2015 04:14:39 PM,03/22/2015 04:14:50 PM,03/22/2015 04:16:28 PM,03/22/2015 04:19:33 PM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,Fire,03/22/2015 04:19:50 PM,3000 Block of WASHINGTON ST,San Francisco,94115,B04,10,4265,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7903787788638, -122.443466217227)",150812324-B04 -160983009,KM04,16039039,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:49:45 PM,04/07/2016 05:50:56 PM,04/07/2016 05:51:13 PM,04/07/2016 05:51:47 PM,04/07/2016 05:56:21 PM,04/07/2016 06:17:13 PM,04/07/2016 06:48:21 PM,Code 2 Transport,04/07/2016 07:36:38 PM,LARKIN ST/MARKET ST,San Francisco,94103,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160983009-KM04 -141810992,89,14062611,Medical Incident,06/30/2014,06/30/2014,06/30/2014 09:51:48 AM,06/30/2014 09:55:04 AM,06/30/2014 09:56:28 AM,06/30/2014 09:57:07 AM,06/30/2014 10:11:20 AM,06/30/2014 10:28:05 AM,06/30/2014 10:58:43 AM,Code 2 Transport,06/30/2014 11:20:24 AM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",141810992-89 -143043761,RC2,14107716,Medical Incident,10/31/2014,10/31/2014,10/31/2014 10:45:28 PM,10/31/2014 10:47:38 PM,10/31/2014 10:52:10 PM,10/31/2014 10:52:10 PM,10/31/2014 10:52:10 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,Code 2 Transport,10/31/2014 11:23:21 PM,1500 Block of BALBOA ST,San Francisco,94118,B07,31,7157,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,7,1,Outer Richmond,"(37.7766624377714, -122.475350817684)",143043761-RC2 -151904219,B06,15072718,Alarms,07/09/2015,07/09/2015,07/09/2015 11:28:47 PM,07/09/2015 11:30:02 PM,07/09/2015 11:30:15 PM,07/09/2015 11:34:18 PM,07/09/2015 11:34:58 PM,04/25/2016 01:09:33 PM,04/25/2016 01:09:33 PM,Fire,07/10/2015 12:19:14 AM,0 Block of RED ROCK WAY,San Francisco,94131,B06,26,8167,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",151904219-B06 -160943557,70,16037446,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:16:32 PM,04/03/2016 10:16:32 PM,04/03/2016 10:18:49 PM,04/03/2016 10:19:40 PM,04/03/2016 10:26:58 PM,04/03/2016 10:30:56 PM,04/03/2016 10:38:40 PM,Code 2 Transport,04/03/2016 11:07:00 PM,3RD ST/OAKDALE AV,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",160943557-70 -160992725,71,16039399,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:19:17 PM,04/08/2016 05:19:17 PM,04/08/2016 05:25:22 PM,04/08/2016 05:25:30 PM,04/08/2016 05:33:28 PM,04/08/2016 05:44:08 PM,04/08/2016 05:54:48 PM,Code 2 Transport,04/08/2016 06:42:18 PM,ALEMANY BL/JUSTIN DR,San Francisco,94112,B09,32,8263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,6,9,Bernal Heights,"(37.7318157735492, -122.425919714278)",160992725-71 -151370487,77,15051907,Structure Fire,05/17/2015,05/16/2015,05/17/2015 04:01:25 AM,05/17/2015 04:02:23 AM,05/17/2015 04:04:07 AM,05/17/2015 04:04:07 AM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,04/25/2016 01:10:33 PM,Fire,05/17/2015 04:10:16 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Alarm,1,MEDIC,10,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",151370487-77 -160983520,65,16039094,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:07:15 PM,04/07/2016 08:09:30 PM,04/07/2016 08:09:48 PM,04/07/2016 08:10:00 PM,04/07/2016 08:28:37 PM,04/07/2016 08:35:17 PM,04/07/2016 08:50:09 PM,Code 2 Transport,04/07/2016 09:33:33 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7580927749863, -122.414684745414)",160983520-65 -160933642,88,16037061,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:05:28 PM,04/02/2016 10:06:44 PM,04/02/2016 10:06:57 PM,04/02/2016 10:07:14 PM,04/02/2016 10:17:47 PM,04/02/2016 10:30:10 PM,04/02/2016 10:40:47 PM,Code 2 Transport,04/02/2016 11:21:30 PM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",160933642-88 -160950426,AM24,16037521,Medical Incident,04/04/2016,04/03/2016,04/04/2016 06:02:34 AM,04/04/2016 06:05:03 AM,04/04/2016 06:05:27 AM,04/04/2016 06:06:03 AM,04/04/2016 06:15:26 AM,04/04/2016 06:33:46 AM,04/04/2016 06:44:08 AM,Code 2 Transport,04/04/2016 07:07:32 AM,1500 Block of 22ND AVE,San Francisco,94122,B08,22,7447,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7587609255623, -122.479941289193)",160950426-AM24 -150423823,AM20,15016541,Medical Incident,02/11/2015,02/11/2015,02/11/2015 09:51:47 PM,02/11/2015 09:52:54 PM,02/11/2015 09:53:14 PM,02/11/2015 09:53:58 PM,02/11/2015 10:02:14 PM,02/11/2015 10:18:56 PM,02/11/2015 10:28:03 PM,Code 2 Transport,02/11/2015 10:55:05 PM,MARKET ST/VAN NESS AV,San Francisco,94103,B02,36,3211,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",150423823-AM20 -161003437,AM20,16039972,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:30:48 PM,04/09/2016 10:32:28 PM,04/09/2016 10:40:07 PM,04/09/2016 10:40:36 PM,04/09/2016 11:03:15 PM,04/09/2016 11:03:18 PM,04/09/2016 11:14:33 PM,Code 2 Transport,04/09/2016 11:41:49 PM,900 Block of THE EMBARCADERO,San Francisco,94111,B01,13,923,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",161003437-AM20 -142171422,54,14075223,Medical Incident,08/05/2014,08/05/2014,08/05/2014 12:26:08 PM,08/05/2014 12:28:09 PM,08/05/2014 12:29:16 PM,08/05/2014 12:29:30 PM,08/05/2014 12:31:17 PM,08/05/2014 12:46:52 PM,08/05/2014 01:02:08 PM,Code 2 Transport,08/05/2014 01:20:59 PM,8TH AV/LAKE ST,San Francisco,94118,B07,31,7126,3,3,3,true,Non Life-threatening,1,MEDIC,1,7,2,Inner Richmond,"(37.786568134843, -122.466830333948)",142171422-54 -151510378,T01,15057335,Medical Incident,05/31/2015,05/30/2015,05/31/2015 02:33:06 AM,05/31/2015 02:34:13 AM,05/31/2015 02:35:36 AM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Code 2 Transport,05/31/2015 02:37:00 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",151510378-T01 -151512314,E36,15057539,Medical Incident,05/31/2015,05/31/2015,05/31/2015 04:47:48 PM,05/31/2015 04:49:26 PM,05/31/2015 04:49:35 PM,05/31/2015 04:51:00 PM,05/31/2015 04:53:03 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Code 2 Transport,05/31/2015 04:56:56 PM,FOLSOM ST/10TH ST,San Francisco,94103,B02,36,2343,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7728121600424, -122.412824228759)",151512314-E36 -161001607,62,16039761,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:02:13 PM,04/09/2016 01:03:26 PM,04/09/2016 01:04:25 PM,04/09/2016 01:04:31 PM,04/09/2016 01:17:12 PM,04/09/2016 01:39:26 PM,04/09/2016 02:05:27 PM,Code 2 Transport,04/09/2016 02:24:42 PM,2700 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",161001607-62 -153231580,E29,15124244,Medical Incident,11/19/2015,11/19/2015,11/19/2015 11:50:18 AM,11/19/2015 11:50:18 AM,11/19/2015 11:50:43 AM,11/19/2015 11:51:54 AM,11/19/2015 11:56:33 AM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Code 2 Transport,11/19/2015 12:05:39 PM,26TH ST/CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7511787572207, -122.396407603676)",153231580-E29 -153300242,70,15126852,Medical Incident,11/26/2015,11/25/2015,11/26/2015 02:10:53 AM,11/26/2015 02:12:58 AM,11/26/2015 02:15:56 AM,11/26/2015 02:16:04 AM,11/26/2015 02:20:44 AM,11/26/2015 02:31:17 AM,11/26/2015 02:42:43 AM,Code 2 Transport,11/26/2015 03:17:04 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",153300242-70 -150734287,70,15028193,Medical Incident,03/14/2015,03/14/2015,03/14/2015 10:58:56 PM,03/14/2015 11:00:06 PM,03/14/2015 11:01:05 PM,03/14/2015 11:01:39 PM,03/14/2015 11:05:57 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,Against Medical Advice,03/14/2015 11:53:51 PM,800 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7714276968784, -122.43622021087)",150734287-70 -141352805,E01,14046266,Alarms,05/15/2014,05/15/2014,05/15/2014 05:11:17 PM,05/15/2014 05:12:22 PM,05/15/2014 05:12:41 PM,05/15/2014 05:13:42 PM,05/15/2014 05:15:49 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/15/2014 05:27:14 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",141352805-E01 -152061514,86,15078464,Medical Incident,07/25/2015,07/25/2015,07/25/2015 11:42:07 AM,07/25/2015 11:45:07 AM,07/25/2015 11:45:38 AM,07/25/2015 11:45:49 AM,07/25/2015 11:51:44 AM,07/25/2015 12:15:10 PM,07/25/2015 12:31:30 PM,Code 2 Transport,07/25/2015 01:24:26 PM,700 Block of FULTON ST,San Francisco,94102,B05,5,3521,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",152061514-86 -153463898,T17,15133406,Citizen Assist / Service Call,12/12/2015,12/12/2015,12/12/2015 09:07:03 PM,12/12/2015 09:09:12 PM,12/12/2015 09:09:40 PM,12/12/2015 09:10:59 PM,12/12/2015 09:13:47 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Fire,12/12/2015 09:18:29 PM,0 Block of KISKA RD,San Francisco,94124,B10,17,6636,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",153463898-T17 -151622468,72,15061987,Medical Incident,06/11/2015,06/11/2015,06/11/2015 04:06:40 PM,06/11/2015 04:08:01 PM,06/11/2015 04:08:18 PM,06/11/2015 04:09:02 PM,06/11/2015 04:15:28 PM,06/11/2015 04:47:44 PM,06/11/2015 05:03:53 PM,Code 2 Transport,06/11/2015 05:29:05 PM,0 Block of OCEAN AVE,San Francisco,94112,B09,43,6121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7237942596577, -122.435907357723)",151622468-72 -143532270,E03,14126210,Structure Fire,12/19/2014,12/19/2014,12/19/2014 03:48:06 PM,12/19/2014 03:49:35 PM,12/19/2014 03:49:58 PM,12/19/2014 03:50:32 PM,12/19/2014 03:55:05 PM,04/25/2016 01:13:20 PM,04/25/2016 01:13:20 PM,Fire,12/19/2014 03:59:16 PM,0 Block of GRANT AVE,San Francisco,94108,B01,1,1321,3,3,3,true,Alarm,1,ENGINE,6,1,3,Financial District/South Beach,"(37.7871853698326, -122.404995219077)",143532270-E03 -151683533,T03,15064402,Medical Incident,06/17/2015,06/17/2015,06/17/2015 08:43:14 PM,06/17/2015 08:47:13 PM,06/17/2015 08:47:23 PM,06/17/2015 08:49:02 PM,06/17/2015 08:51:22 PM,04/25/2016 01:09:57 PM,04/25/2016 01:09:57 PM,Code 2 Transport,06/17/2015 08:51:59 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",151683533-T03 -153222204,E32,15123902,Traffic Collision,11/18/2015,11/18/2015,11/18/2015 01:50:26 PM,11/18/2015 01:50:26 PM,11/18/2015 01:52:29 PM,11/18/2015 01:53:23 PM,11/18/2015 01:55:38 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Code 2 Transport,11/18/2015 02:11:05 PM,3500 Block of MISSION ST,San Francisco,94110,B06,32,5626,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7408095549035, -122.422903715345)",153222204-E32 -151362546,E33,15051732,Other,05/16/2015,05/16/2015,05/16/2015 04:31:54 PM,05/16/2015 04:34:27 PM,05/16/2015 04:35:02 PM,05/16/2015 04:35:48 PM,05/16/2015 04:39:35 PM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Fire,05/16/2015 04:52:10 PM,0 Block of MONETA WAY,San Francisco,94112,B09,33,8347,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7129011058725, -122.449757085087)",151362546-E33 -153094160,78,15118961,Structure Fire,11/05/2015,11/05/2015,11/05/2015 11:12:12 PM,11/05/2015 11:13:18 PM,11/05/2015 11:16:15 PM,11/05/2015 11:16:29 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Fire,11/05/2015 11:23:16 PM,300 Block of ARBALLO DR,San Francisco,94132,B08,19,8582,3,3,3,true,Alarm,1,MEDIC,12,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",153094160-78 -160950627,KM13,16037535,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:47:04 AM,04/04/2016 07:49:02 AM,04/04/2016 07:49:29 AM,04/04/2016 07:50:02 AM,04/04/2016 08:02:34 AM,04/04/2016 08:47:34 AM,04/04/2016 08:48:02 AM,Code 2 Transport,04/04/2016 09:26:23 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160950627-KM13 -151130128,E07,15042541,Medical Incident,04/23/2015,04/22/2015,04/23/2015 01:03:35 AM,04/23/2015 01:05:41 AM,04/23/2015 01:06:20 AM,04/23/2015 01:08:32 AM,04/23/2015 01:12:17 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,Gone on Arrival,04/23/2015 01:12:53 AM,500 Block of GUERRERO ST,San Francisco,94110,B02,7,5422,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7627513875316, -122.424036887526)",151130128-E07 -141591900,E03,14054834,Medical Incident,06/08/2014,06/08/2014,06/08/2014 03:14:32 PM,06/08/2014 03:15:59 PM,06/08/2014 03:16:07 PM,06/08/2014 03:16:43 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Patient Declined Transport,06/08/2014 03:19:08 PM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",141591900-E03 -160951128,74,16037567,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:06:01 AM,04/04/2016 10:07:27 AM,04/04/2016 10:07:37 AM,04/04/2016 10:07:47 AM,04/04/2016 10:12:50 AM,04/04/2016 10:34:13 AM,04/04/2016 10:43:46 AM,Code 2 Transport,04/04/2016 11:17:11 AM,33RD AV/JUDAH ST,San Francisco,94122,B08,23,7541,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7610395138922, -122.491997470686)",160951128-74 -160974057,62,16038651,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:28:11 PM,04/06/2016 08:28:50 PM,04/06/2016 08:29:05 PM,04/06/2016 08:29:50 PM,04/06/2016 08:33:57 PM,04/06/2016 08:42:07 PM,04/06/2016 09:02:49 PM,Code 2 Transport,04/06/2016 09:34:17 PM,1800 Block of PALOU AVE,San Francisco,94124,B10,17,6471,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7363516779415, -122.395214003225)",160974057-62 -142950782,KM15,14103950,Medical Incident,10/22/2014,10/22/2014,10/22/2014 08:25:31 AM,10/22/2014 08:27:15 AM,10/22/2014 08:29:23 AM,10/22/2014 08:31:12 AM,10/22/2014 08:43:13 AM,10/22/2014 08:58:43 AM,10/22/2014 09:25:59 AM,Code 2 Transport,10/22/2014 09:32:31 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",142950782-KM15 -152020946,E07,15076905,Medical Incident,07/21/2015,07/21/2015,07/21/2015 08:56:41 AM,07/21/2015 08:58:55 AM,07/21/2015 08:59:24 AM,07/21/2015 09:00:26 AM,07/21/2015 09:03:28 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Code 2 Transport,07/21/2015 09:15:36 AM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7600451698328, -122.423265598657)",152020946-E07 -151153070,B03,15043572,Alarms,04/25/2015,04/25/2015,04/25/2015 07:48:13 PM,04/25/2015 07:49:16 PM,04/25/2015 07:49:24 PM,04/25/2015 07:50:10 PM,04/25/2015 07:52:33 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Fire,04/25/2015 07:58:57 PM,600 Block of 2ND ST,San Francisco,94107,B03,8,2153,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7812651618119, -122.391253221395)",151153070-B03 -152783477,RC1,15106830,Medical Incident,10/05/2015,10/05/2015,10/05/2015 08:56:42 PM,10/05/2015 08:57:00 PM,10/05/2015 08:57:18 PM,10/05/2015 08:58:17 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Code 2 Transport,10/05/2015 09:01:30 PM,400 Block of NATOMA ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7807728096562, -122.407018493217)",152783477-RC1 -150280177,63,15010626,Medical Incident,01/28/2015,01/27/2015,01/28/2015 02:03:19 AM,01/28/2015 02:05:31 AM,01/28/2015 02:06:07 AM,01/28/2015 02:07:13 AM,01/28/2015 02:10:58 AM,01/28/2015 02:25:43 AM,01/28/2015 02:37:47 AM,Code 3 Transport,01/28/2015 03:08:48 AM,4400 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7125,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7849774199796, -122.465113708318)",150280177-63 -141392458,KM10,14047730,Medical Incident,05/19/2014,05/19/2014,05/19/2014 04:59:22 PM,05/19/2014 05:01:21 PM,05/19/2014 05:03:25 PM,05/19/2014 05:04:16 PM,05/19/2014 05:09:42 PM,05/19/2014 05:12:07 PM,05/19/2014 05:36:58 PM,Code 2 Transport,05/19/2014 05:53:51 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",141392458-KM10 -152340165,62,15089056,Medical Incident,08/22/2015,08/21/2015,08/22/2015 01:02:26 AM,08/22/2015 01:02:26 AM,08/22/2015 01:02:58 AM,08/22/2015 01:03:08 AM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,04/25/2016 01:08:47 PM,Other,08/22/2015 01:05:16 AM,100 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",152340165-62 -152651620,KM01,15101450,Medical Incident,09/22/2015,09/22/2015,09/22/2015 11:49:27 AM,09/22/2015 11:49:27 AM,09/22/2015 11:49:42 AM,09/22/2015 11:50:11 AM,09/22/2015 12:00:13 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,No Merit,09/22/2015 12:04:07 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",152651620-KM01 -150403597,E48,15015770,Administrative,02/09/2015,02/09/2015,02/09/2015 09:27:21 PM,02/09/2015 09:27:27 PM,02/09/2015 09:28:06 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Fire,02/09/2015 09:28:37 PM,800 Block of AVENUE D,Treasure Isla,94130,B03,48,2931,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",150403597-E48 -160933616,AM16,16037058,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:00:29 PM,04/02/2016 10:01:50 PM,04/02/2016 10:02:20 PM,04/02/2016 10:02:49 PM,04/02/2016 10:08:00 PM,04/02/2016 10:20:56 PM,04/02/2016 10:34:02 PM,Code 2 Transport,04/02/2016 11:04:58 PM,500 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7834675310494, -122.416716373273)",160933616-AM16 -150312814,E44,15012069,Medical Incident,01/31/2015,01/31/2015,01/31/2015 06:01:58 PM,01/31/2015 06:02:53 PM,01/31/2015 06:03:35 PM,01/31/2015 06:04:40 PM,01/31/2015 06:08:07 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Against Medical Advice,01/31/2015 06:14:58 PM,1100 Block of KEY AVE,San Francisco,94124,B10,44,6542,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7204396917778, -122.398575059753)",150312814-E44 -143450537,E24,14122604,Administrative,12/11/2014,12/10/2014,12/11/2014 06:14:27 AM,12/11/2014 06:14:31 AM,12/11/2014 06:14:48 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/11/2014 06:15:26 AM,100 Block of HOFFMAN AVE,San Francisco,94114,B06,24,5373,3,3,3,false,,1,ENGINE,1,6,8,Noe Valley,"(37.7528969269445, -122.440882334547)",143450537-E24 -150073497,79,15002870,Medical Incident,01/07/2015,01/07/2015,01/07/2015 08:46:03 PM,01/07/2015 08:49:11 PM,01/07/2015 08:49:35 PM,01/07/2015 08:49:43 PM,01/07/2015 09:02:28 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,No Merit,01/07/2015 09:07:13 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",150073497-79 -142211073,E03,14076672,Medical Incident,08/09/2014,08/09/2014,08/09/2014 09:36:51 AM,08/09/2014 09:38:18 AM,08/09/2014 09:39:09 AM,08/09/2014 09:40:03 AM,08/09/2014 09:42:09 AM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Code 3 Transport,08/09/2014 10:01:26 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",142211073-E03 -143054187,E41,14108123,Outside Fire,11/01/2014,11/01/2014,11/01/2014 11:40:11 PM,11/01/2014 11:41:17 PM,11/01/2014 11:41:25 PM,11/01/2014 11:43:02 PM,11/01/2014 11:44:33 PM,04/25/2016 01:14:14 PM,04/25/2016 01:14:14 PM,Fire,11/01/2014 11:46:26 PM,TAYLOR ST/CALIFORNIA ST,San Francisco,94108,B01,41,1445,3,3,3,false,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7916270743525, -122.412460881674)",143054187-E41 -160983882,89,16039127,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:19:37 PM,04/07/2016 10:20:43 PM,04/07/2016 10:21:09 PM,04/07/2016 10:21:15 PM,04/07/2016 10:28:55 PM,04/07/2016 10:46:56 PM,04/07/2016 10:56:02 PM,Code 2 Transport,04/07/2016 11:23:51 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160983882-89 -142111154,2R01,14073060,,07/30/2014,07/30/2014,07/30/2014 10:35:12 AM,07/30/2014 10:35:55 AM,07/30/2014 10:51:20 AM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/30/2014 10:51:31 AM,100 Block of GILLETTE AVE,San Francisco,94134,B10,44,6273,3,3,3,false,Alarm,1,ADMIN,0,10,10,Bayview Hunters Point,"(37.7106753239004, -122.396529453587)",142111154-2R01 -160961291,54,16037965,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:47:49 AM,04/05/2016 10:48:53 AM,04/05/2016 10:49:30 AM,04/05/2016 10:49:44 AM,04/05/2016 10:54:58 AM,04/05/2016 11:21:23 AM,04/05/2016 11:39:38 AM,Code 2 Transport,04/05/2016 12:14:16 PM,300 Block of 18TH AVE,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7814031484353, -122.477238000486)",160961291-54 -161003529,AM24,16039982,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:49:22 PM,04/09/2016 10:51:07 PM,04/09/2016 10:51:49 PM,04/09/2016 10:52:42 PM,04/09/2016 10:56:13 PM,04/09/2016 11:08:02 PM,04/09/2016 11:25:21 PM,Code 2 Transport,04/09/2016 11:58:01 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",161003529-AM24 -152973695,E36,15114209,Alarms,10/24/2015,10/24/2015,10/24/2015 10:20:26 PM,10/24/2015 10:21:27 PM,10/24/2015 10:21:44 PM,10/24/2015 10:22:55 PM,10/24/2015 10:25:32 PM,04/25/2016 01:07:35 PM,04/25/2016 01:07:35 PM,Fire,10/24/2015 10:30:16 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",152973695-E36 -152512025,B02,15095895,Alarms,09/08/2015,09/08/2015,09/08/2015 01:11:26 PM,09/08/2015 01:12:31 PM,09/08/2015 01:13:13 PM,09/08/2015 01:14:47 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Fire,09/08/2015 01:20:42 PM,800 Block of ASHBURY ST,San Francisco,94117,B05,12,5143,3,3,3,false,Alarm,1,CHIEF,3,5,8,Haight Ashbury,"(37.766226956283, -122.44609764054)",152512025-B02 -141110257,E16,14037489,Citizen Assist / Service Call,04/21/2014,04/21/2014,04/21/2014 01:56:22 PM,04/21/2014 01:57:46 PM,04/21/2014 01:58:39 PM,04/21/2014 02:00:12 PM,04/21/2014 02:02:30 PM,04/25/2016 01:17:45 PM,04/25/2016 01:17:45 PM,Fire,04/21/2014 02:13:08 PM,1400 Block of FILBERT ST,SAN FRANCISCO,94109,B04,16,3146,3,3,3,true,Alarm,1,ENGINE,1,4,2,Russian Hill,"(37.7995348686798, -122.423336942553)",141110257-E16 -161002012,KM09,16039806,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:19:38 PM,04/09/2016 03:19:38 PM,04/09/2016 03:22:17 PM,04/09/2016 03:22:38 PM,04/09/2016 03:34:02 PM,04/09/2016 03:50:43 PM,04/09/2016 04:10:29 PM,Code 2 Transport,04/09/2016 04:24:25 PM,700 Block of WASHINGTON ST,San Francisco,94133,B01,13,1245,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7953293080075, -122.405411518793)",161002012-KM09 -151311442,E29,15049664,Medical Incident,05/11/2015,05/11/2015,05/11/2015 11:29:05 AM,05/11/2015 11:29:56 AM,05/11/2015 11:30:26 AM,05/11/2015 11:30:44 AM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,04/25/2016 01:10:40 PM,Code 2 Transport,05/11/2015 11:31:47 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",151311442-E29 -141323291,55,14045093,Medical Incident,05/12/2014,05/12/2014,05/12/2014 09:07:20 PM,05/12/2014 09:07:58 PM,05/12/2014 09:19:15 PM,05/12/2014 09:19:43 PM,05/12/2014 09:32:41 PM,05/12/2014 09:33:54 PM,05/12/2014 09:42:24 PM,Code 2 Transport,05/12/2014 10:08:09 PM,200 Block of BOCANA ST,San Francisco,94110,B06,32,5655,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7399553992173, -122.418238995545)",141323291-55 -142110810,T01,14073030,Alarms,07/30/2014,07/30/2014,07/30/2014 08:40:36 AM,07/30/2014 08:42:12 AM,07/30/2014 08:42:20 AM,07/30/2014 08:45:01 AM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/30/2014 08:49:17 AM,100 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2146,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.786383021575, -122.399289033567)",142110810-T01 -142172720,66,14075328,Traffic Collision,08/05/2014,08/05/2014,08/05/2014 06:20:14 PM,08/05/2014 06:21:02 PM,08/05/2014 06:33:29 PM,08/05/2014 06:33:49 PM,08/05/2014 06:55:17 PM,08/05/2014 06:58:42 PM,08/05/2014 07:28:05 PM,Code 2 Transport,08/05/2014 08:10:32 PM,OCTAVIA ST/MARKET ST,San Francisco,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",142172720-66 -160953618,85,16037793,Traffic Collision,04/04/2016,04/04/2016,04/04/2016 08:40:42 PM,04/04/2016 08:40:42 PM,04/04/2016 08:43:28 PM,04/04/2016 08:43:41 PM,04/04/2016 09:00:09 PM,04/04/2016 09:26:03 PM,04/04/2016 09:52:16 PM,Code 2 Transport,04/04/2016 10:26:14 PM,100 Block of 32ND AVE,San Francisco,94121,B07,14,7234,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,2,Seacliff,"(37.7851225952484, -122.492555764358)",160953618-85 -160991564,85,16039280,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:31:10 PM,04/08/2016 12:31:10 PM,04/08/2016 12:31:14 PM,04/08/2016 12:31:19 PM,04/08/2016 12:51:31 PM,04/08/2016 01:09:57 PM,04/08/2016 01:29:10 PM,Code 2 Transport,04/08/2016 01:59:43 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160991564-85 -153430373,AR1,15131866,Outside Fire,12/09/2015,12/08/2015,12/09/2015 04:38:42 AM,12/09/2015 04:40:39 AM,12/09/2015 04:55:00 AM,12/09/2015 04:57:06 AM,12/09/2015 05:09:27 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 05:24:56 AM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,3,3,3,false,Fire,1,INVESTIGATION,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",153430373-AR1 -151471660,E20,15055942,Outside Fire,05/27/2015,05/27/2015,05/27/2015 12:18:26 PM,05/27/2015 12:19:45 PM,05/27/2015 12:20:43 PM,05/27/2015 12:23:28 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Fire,05/27/2015 12:27:48 PM,100 Block of LANSDALE AVE,San Francisco,94127,B09,39,8571,3,3,3,true,Fire,1,ENGINE,7,9,7,West of Twin Peaks,"(37.7381384408202, -122.460418080788)",151471660-E20 -160971498,AM12,16038376,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:05:55 AM,04/06/2016 11:06:38 AM,04/06/2016 11:08:55 AM,04/06/2016 11:10:01 AM,04/06/2016 11:12:44 AM,04/06/2016 12:00:42 PM,04/06/2016 12:21:31 PM,Code 2 Transport,04/06/2016 01:13:37 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160971498-AM12 -142500052,81,14087009,Medical Incident,09/07/2014,09/06/2014,09/07/2014 12:11:20 AM,09/07/2014 12:12:38 AM,09/07/2014 12:13:05 AM,09/07/2014 12:13:21 AM,09/07/2014 12:14:43 AM,09/07/2014 12:30:51 AM,09/07/2014 12:38:30 AM,Code 2 Transport,09/07/2014 01:09:16 AM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",142500052-81 -150990461,E01,15037332,Medical Incident,04/09/2015,04/08/2015,04/09/2015 07:05:36 AM,04/09/2015 07:06:08 AM,04/09/2015 07:06:17 AM,04/09/2015 07:07:13 AM,04/09/2015 07:10:36 AM,04/25/2016 01:11:16 PM,04/25/2016 01:11:16 PM,Code 3 Transport,04/09/2015 07:22:57 AM,400 Block of STEVENSON ST,San Francisco,94103,B01,1,2247,2,E,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7826030106461, -122.408538835413)",150990461-E01 -143290229,E38,14116525,Medical Incident,11/25/2014,11/24/2014,11/25/2014 02:26:04 AM,11/25/2014 02:26:58 AM,11/25/2014 02:27:24 AM,11/25/2014 02:29:02 AM,11/25/2014 02:30:55 AM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Code 2 Transport,11/25/2014 02:35:25 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",143290229-E38 -150901152,T03,15034240,Alarms,03/31/2015,03/31/2015,03/31/2015 10:35:28 AM,03/31/2015 10:36:55 AM,03/31/2015 10:37:04 AM,03/31/2015 10:37:19 AM,03/31/2015 10:38:43 AM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Fire,03/31/2015 10:45:13 AM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,3,3,3,false,Alarm,1,TRUCK,1,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",150901152-T03 -142290532,85,14079476,Medical Incident,08/17/2014,08/16/2014,08/17/2014 03:26:06 AM,08/17/2014 03:27:25 AM,08/17/2014 03:27:39 AM,08/17/2014 03:28:02 AM,08/17/2014 03:34:40 AM,08/17/2014 03:53:28 AM,08/17/2014 04:08:51 AM,Code 2 Transport,08/17/2014 04:22:50 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",142290532-85 -143123713,E35,14110706,Medical Incident,11/08/2014,11/08/2014,11/08/2014 10:12:02 PM,11/08/2014 10:14:23 PM,11/08/2014 10:15:03 PM,11/08/2014 10:16:44 PM,11/08/2014 10:19:41 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,No Merit,11/08/2014 10:23:14 PM,0 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7898688685777, -122.397805556033)",143123713-E35 -152100823,66,15079928,Structure Fire,07/29/2015,07/29/2015,07/29/2015 08:44:50 AM,07/29/2015 08:45:52 AM,07/29/2015 08:46:18 AM,07/29/2015 08:46:29 AM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Code 3 Transport,07/29/2015 08:54:33 AM,600 Block of 8TH AVE,San Francisco,94118,B07,31,7134,3,3,3,true,Alarm,1,MEDIC,7,7,1,Inner Richmond,"(37.7762070882708, -122.46601710634)",152100823-66 -151540293,86,15058537,Medical Incident,06/03/2015,06/02/2015,06/03/2015 03:32:05 AM,06/03/2015 03:33:54 AM,06/03/2015 03:34:09 AM,06/03/2015 03:34:25 AM,06/03/2015 03:39:36 AM,06/03/2015 03:50:28 AM,06/03/2015 03:57:04 AM,Code 2 Transport,06/03/2015 04:23:38 AM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",151540293-86 -160951865,52,16037636,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:08:46 PM,04/04/2016 01:10:38 PM,04/04/2016 01:11:14 PM,04/04/2016 01:11:26 PM,04/04/2016 01:20:26 PM,04/04/2016 01:48:19 PM,04/04/2016 02:09:29 PM,Code 2 Transport,04/04/2016 02:59:28 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160951865-52 -141863353,81,14064575,Medical Incident,07/05/2014,07/05/2014,07/05/2014 09:14:01 PM,07/05/2014 09:15:14 PM,07/05/2014 09:15:27 PM,07/05/2014 09:15:36 PM,07/05/2014 09:17:15 PM,07/05/2014 09:37:06 PM,07/05/2014 09:47:10 PM,Code 2 Transport,07/05/2014 10:14:39 PM,200 Block of POWELL ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",141863353-81 -151413109,E07,15053701,Medical Incident,05/21/2015,05/21/2015,05/21/2015 05:54:10 PM,05/21/2015 05:56:07 PM,05/21/2015 05:56:35 PM,05/21/2015 05:57:47 PM,05/21/2015 06:01:27 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,No Merit,05/21/2015 06:04:37 PM,1100 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5511,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7547638628686, -122.416559046903)",151413109-E07 -151181111,E02,15044550,Medical Incident,04/28/2015,04/28/2015,04/28/2015 09:53:56 AM,04/28/2015 09:55:40 AM,04/28/2015 10:01:46 AM,04/28/2015 10:03:21 AM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Code 2 Transport,04/28/2015 10:06:36 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Non Life-threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",151181111-E02 -141452000,RS1,14049838,Structure Fire,05/25/2014,05/25/2014,05/25/2014 03:35:44 PM,05/25/2014 03:37:42 PM,05/25/2014 03:38:06 PM,05/25/2014 03:39:10 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Fire,05/25/2014 03:42:35 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,false,Alarm,1,RESCUE SQUAD,10,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",141452000-RS1 -161002736,64,16039888,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:56:21 PM,04/09/2016 06:57:46 PM,04/09/2016 06:58:04 PM,04/09/2016 06:58:19 PM,04/09/2016 07:02:39 PM,04/09/2016 07:21:29 PM,04/09/2016 07:29:29 PM,Code 2 Transport,04/09/2016 08:09:36 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",161002736-64 -160932281,79,16036922,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:40:37 PM,04/02/2016 03:43:50 PM,04/02/2016 03:44:25 PM,04/02/2016 03:44:31 PM,04/02/2016 03:48:23 PM,04/02/2016 04:00:23 PM,04/02/2016 04:20:39 PM,Code 2 Transport,04/02/2016 04:37:47 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",160932281-79 -152882990,E03,15110762,Medical Incident,10/15/2015,10/15/2015,10/15/2015 05:40:15 PM,10/15/2015 05:42:13 PM,10/15/2015 05:43:35 PM,10/15/2015 05:43:35 PM,10/15/2015 05:44:57 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Code 2 Transport,10/15/2015 05:58:23 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",152882990-E03 -160993675,58,16039486,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:35:01 PM,04/08/2016 09:36:46 PM,04/08/2016 09:38:12 PM,04/08/2016 09:39:15 PM,04/08/2016 09:44:39 PM,04/08/2016 10:04:16 PM,04/08/2016 10:49:48 PM,Code 2 Transport,04/08/2016 10:52:26 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,A,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",160993675-58 -142900443,E07,14102122,Medical Incident,10/17/2014,10/16/2014,10/17/2014 04:25:39 AM,10/17/2014 04:25:39 AM,10/17/2014 04:26:08 AM,10/17/2014 04:28:46 AM,10/17/2014 04:31:18 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/17/2014 04:40:53 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",142900443-E07 -160971709,53,16038398,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:56:12 AM,04/06/2016 11:56:22 AM,04/06/2016 11:56:48 AM,04/06/2016 11:56:55 AM,04/06/2016 12:04:47 PM,04/06/2016 12:25:32 PM,04/06/2016 12:35:48 PM,Code 2 Transport,04/06/2016 01:13:54 PM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160971709-53 -142021230,E19,14069849,Structure Fire,07/21/2014,07/21/2014,07/21/2014 11:08:55 AM,07/21/2014 11:08:55 AM,07/21/2014 11:09:06 AM,07/21/2014 11:10:39 AM,07/21/2014 11:15:18 AM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Fire,07/21/2014 11:15:27 AM,SERRANO DR/CARDENAS AV,San Francisco,94132,B08,19,8426,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7200812689917, -122.477052607427)",142021230-E19 -141230001,E19,14041522,Medical Incident,05/03/2014,05/02/2014,05/03/2014 12:16:01 AM,05/03/2014 12:16:02 AM,05/03/2014 12:16:20 AM,05/03/2014 12:17:58 AM,05/03/2014 12:22:36 AM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Code 2 Transport,05/03/2014 12:36:08 AM,400 Block of FONT BLVD,SAN FRANCISCO,94132,B08,19,8424,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7191481762563, -122.47900214742)",141230001-E19 -152291092,E42,15087314,Medical Incident,08/17/2015,08/17/2015,08/17/2015 09:30:36 AM,08/17/2015 09:31:38 AM,08/17/2015 09:36:05 AM,08/17/2015 09:38:01 AM,08/17/2015 09:40:34 AM,04/25/2016 01:08:52 PM,04/25/2016 01:08:52 PM,No Merit,08/17/2015 09:44:26 AM,JAMESTOWN AV/SALINAS AV,San Francisco,94124,B10,44,6542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7211206836459, -122.398229564595)",152291092-E42 -150290424,KM07,15011039,Medical Incident,01/29/2015,01/28/2015,01/29/2015 05:17:53 AM,01/29/2015 05:20:29 AM,01/29/2015 05:20:41 AM,01/29/2015 05:21:00 AM,01/29/2015 05:26:16 AM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Fire,01/29/2015 05:41:30 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",150290424-KM07 -160933801,64,16037069,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:50:21 PM,04/02/2016 10:51:38 PM,04/02/2016 10:51:53 PM,04/02/2016 10:52:23 PM,04/02/2016 11:01:05 PM,04/02/2016 11:14:37 PM,04/02/2016 11:20:35 PM,Code 2 Transport,04/02/2016 11:54:01 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94116,B08,39,8624,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",160933801-64 -151142841,E14,15043187,Medical Incident,04/24/2015,04/24/2015,04/24/2015 05:25:01 PM,04/24/2015 05:25:01 PM,04/24/2015 05:27:26 PM,04/24/2015 05:28:57 PM,04/24/2015 05:30:39 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Code 2 Transport,04/24/2015 05:45:28 PM,GEARY BL/20TH AV,San Francisco,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.780334689944, -122.479382974071)",151142841-E14 -152870045,89,15110088,Medical Incident,10/14/2015,10/13/2015,10/14/2015 12:10:49 AM,10/14/2015 12:13:27 AM,10/14/2015 12:15:02 AM,10/14/2015 12:15:19 AM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,No Merit,10/14/2015 12:21:47 AM,3RD ST/INNES AV,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7395334481561, -122.38903096939)",152870045-89 -160953237,AM20,16037753,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:40:45 PM,04/04/2016 06:41:04 PM,04/04/2016 06:43:10 PM,04/04/2016 06:43:44 PM,04/04/2016 06:48:35 PM,04/04/2016 07:08:20 PM,04/04/2016 07:32:57 PM,Code 2 Transport,04/04/2016 07:51:04 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160953237-AM20 -160970217,72,16038259,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:17:34 AM,04/06/2016 02:19:19 AM,04/06/2016 02:20:28 AM,04/06/2016 02:21:16 AM,04/06/2016 02:27:52 AM,04/06/2016 02:40:27 AM,04/06/2016 03:07:43 AM,Code 2 Transport,04/06/2016 03:22:18 AM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160970217-72 -150410146,E44,15015819,Medical Incident,02/10/2015,02/09/2015,02/10/2015 01:32:30 AM,02/10/2015 01:32:59 AM,02/10/2015 01:33:28 AM,02/10/2015 01:34:26 AM,02/10/2015 01:38:56 AM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 3 Transport,02/10/2015 01:57:49 AM,0 Block of TOWERSIDE AVE,San Francisco,94134,B09,44,6252,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7103110425525, -122.412019505456)",150410146-E44 -142082064,E01,14072109,Medical Incident,07/27/2014,07/27/2014,07/27/2014 03:04:47 PM,07/27/2014 03:08:22 PM,07/27/2014 03:08:35 PM,07/27/2014 03:10:43 PM,07/27/2014 03:12:21 PM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Patient Declined Transport,07/27/2014 03:21:44 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",142082064-E01 -160964212,62,16038230,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:40:48 PM,04/05/2016 11:41:26 PM,04/05/2016 11:41:32 PM,04/05/2016 11:42:17 PM,04/05/2016 11:52:40 PM,04/06/2016 12:23:57 AM,04/06/2016 12:49:44 AM,Code 2 Transport,04/06/2016 01:22:48 AM,200 Block of FLOOD AVE,San Francisco,94112,B09,15,8231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7299496082095, -122.445430218846)",160964212-62 -160961123,KM08,16037948,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:11:09 AM,04/05/2016 10:12:45 AM,04/05/2016 10:13:11 AM,04/05/2016 10:14:42 AM,04/05/2016 10:32:09 AM,04/05/2016 10:57:03 AM,04/05/2016 11:15:19 AM,Code 2 Transport,04/05/2016 11:46:34 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",160961123-KM08 -160971686,56,16038395,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:51:43 AM,04/06/2016 11:51:43 AM,04/06/2016 11:53:31 AM,04/06/2016 11:53:58 AM,04/06/2016 12:16:13 PM,04/06/2016 12:24:58 PM,04/06/2016 12:42:58 PM,Code 2 Transport,04/06/2016 01:29:54 PM,2100 Block of QUESADA AVE,San Francisco,94124,B10,42,6431,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7381634010463, -122.39983494065)",160971686-56 -151522072,E11,15057901,Medical Incident,06/01/2015,06/01/2015,06/01/2015 02:47:23 PM,06/01/2015 02:47:43 PM,06/01/2015 02:47:56 PM,06/01/2015 02:49:33 PM,06/01/2015 02:49:53 PM,04/25/2016 01:10:16 PM,04/25/2016 01:10:16 PM,No Merit,06/01/2015 03:00:20 PM,1500 Block of VALENCIA ST,San Francisco,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.748520075538, -122.420247296449)",151522072-E11 -142231081,E01,14077347,Medical Incident,08/11/2014,08/11/2014,08/11/2014 10:46:56 AM,08/11/2014 10:48:19 AM,08/11/2014 10:48:36 AM,08/11/2014 10:56:34 AM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Unable to Locate,08/11/2014 11:00:25 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",142231081-E01 -142550710,E21,14088929,Medical Incident,09/12/2014,09/11/2014,09/12/2014 07:45:06 AM,09/12/2014 07:46:30 AM,09/12/2014 07:47:06 AM,09/12/2014 07:48:13 AM,09/12/2014 07:51:08 AM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,No Merit,09/12/2014 08:09:38 AM,0 Block of CASTRO ST,San Francisco,94117,B05,21,4143,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,8,Haight Ashbury,"(37.7701295276066, -122.436422965066)",142550710-E21 -151042033,RS2,15039380,Structure Fire,04/14/2015,04/14/2015,04/14/2015 02:31:47 PM,04/14/2015 02:32:23 PM,04/14/2015 02:33:16 PM,04/14/2015 02:33:21 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Fire,04/14/2015 02:36:29 PM,100 Block of PARNASSUS AVE,San Francisco,94117,B05,12,5153,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,5,Haight Ashbury,"(37.764541634292, -122.451880232062)",151042033-RS2 -141610394,88,14055383,Structure Fire,06/10/2014,06/09/2014,06/10/2014 05:42:14 AM,06/10/2014 05:43:05 AM,06/10/2014 05:48:51 AM,06/10/2014 05:49:09 AM,06/10/2014 05:52:21 AM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Fire,06/10/2014 06:10:55 AM,800 Block of VAN NESS AVE,San Francisco,94109,B02,3,3163,3,3,3,true,Alarm,1,MEDIC,8,2,5,Western Addition,"(37.7831032668735, -122.420996914)",141610394-88 -160940428,79,16037137,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:34:10 AM,04/03/2016 02:34:56 AM,04/03/2016 02:35:23 AM,04/03/2016 02:35:29 AM,04/03/2016 02:53:54 AM,04/03/2016 02:54:01 AM,04/03/2016 03:23:49 AM,Code 2 Transport,04/03/2016 03:25:20 AM,MISSION ST/MAIN ST,San Francisco,94105,B03,35,2116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",160940428-79 -160922862,76,16036549,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:54:31 PM,04/01/2016 05:54:42 PM,04/01/2016 05:54:55 PM,04/01/2016 05:55:02 PM,04/01/2016 06:00:39 PM,04/01/2016 06:13:46 PM,04/01/2016 06:27:25 PM,Code 2 Transport,04/01/2016 06:44:03 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160922862-76 -151590364,E23,15060592,Other,06/08/2015,06/07/2015,06/08/2015 03:47:21 AM,06/08/2015 03:47:21 AM,06/08/2015 03:47:40 AM,06/08/2015 03:48:23 AM,06/08/2015 03:50:16 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Fire,06/08/2015 03:56:10 AM,3800 Block of NORIEGA ST,San Francisco,94122,B08,23,7662,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7529329797778, -122.504865731206)",151590364-E23 -142771513,72,14097345,Medical Incident,10/04/2014,10/04/2014,10/04/2014 10:54:42 AM,10/04/2014 10:56:23 AM,10/04/2014 10:56:50 AM,10/04/2014 10:57:07 AM,10/04/2014 11:01:44 AM,10/04/2014 11:30:40 AM,10/04/2014 11:50:13 AM,Code 2 Transport,10/04/2014 12:16:45 PM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",142771513-72 -141411509,87,14048312,Medical Incident,05/21/2014,05/21/2014,05/21/2014 12:02:54 PM,05/21/2014 12:03:31 PM,05/21/2014 12:03:50 PM,05/21/2014 12:04:28 PM,05/21/2014 12:10:28 PM,05/21/2014 12:36:49 PM,05/21/2014 01:00:17 PM,Code 2 Transport,05/21/2014 01:25:32 PM,1800 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",141411509-87 -150923747,AM18,15035174,Medical Incident,04/02/2015,04/02/2015,04/02/2015 10:10:58 PM,04/02/2015 10:11:58 PM,04/02/2015 10:12:21 PM,04/02/2015 10:12:59 PM,04/02/2015 10:24:18 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Patient Declined Transport,04/02/2015 10:52:50 PM,100 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5646,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7373636780892, -122.422094532922)",150923747-AM18 -160992881,84,16039406,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:54:24 PM,04/08/2016 05:54:56 PM,04/08/2016 05:55:16 PM,04/08/2016 05:56:34 PM,04/08/2016 06:14:00 PM,04/08/2016 06:26:36 PM,04/08/2016 06:33:25 PM,Code 2 Transport,04/08/2016 07:04:59 PM,0 Block of MASONIC AVE,San Francisco,94118,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7837280171919, -122.447368375734)",160992881-84 -160950284,57,16037499,Medical Incident,04/04/2016,04/03/2016,04/04/2016 03:46:08 AM,04/04/2016 03:46:42 AM,04/04/2016 03:46:59 AM,04/04/2016 03:47:05 AM,04/04/2016 03:51:42 AM,04/04/2016 04:30:41 AM,04/04/2016 04:42:37 AM,Code 3 Transport,04/04/2016 05:51:02 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160950284-57 -142972138,77,14104819,Medical Incident,10/24/2014,10/24/2014,10/24/2014 02:50:11 PM,10/24/2014 02:51:13 PM,10/24/2014 02:52:05 PM,10/24/2014 02:52:14 PM,10/24/2014 03:06:18 PM,10/24/2014 03:31:14 PM,10/24/2014 04:05:25 PM,Code 2 Transport,10/24/2014 04:27:17 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",142972138-77 -160961888,55,16038023,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:13:30 PM,04/05/2016 01:14:19 PM,04/05/2016 01:14:38 PM,04/05/2016 01:14:49 PM,04/05/2016 01:22:39 PM,04/05/2016 01:46:38 PM,04/05/2016 02:27:20 PM,Code 2 Transport,04/05/2016 02:58:43 PM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160961888-55 -141610442,AM02,14055389,Citizen Assist / Service Call,06/10/2014,06/09/2014,06/10/2014 06:23:19 AM,06/10/2014 06:24:13 AM,06/10/2014 06:38:52 AM,06/10/2014 06:40:30 AM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Fire,06/10/2014 06:45:46 AM,2000 Block of LEAVENWORTH ST,San Francisco,94133,B01,28,1532,3,3,3,false,Alarm,1,PRIVATE,3,1,2,Russian Hill,"(37.8001328583441, -122.417471541396)",141610442-AM02 -153033433,70,15116367,Medical Incident,10/30/2015,10/30/2015,10/30/2015 07:28:59 PM,10/30/2015 07:30:15 PM,10/30/2015 07:31:09 PM,10/30/2015 07:31:15 PM,10/30/2015 07:35:38 PM,10/30/2015 07:55:37 PM,10/30/2015 07:59:47 PM,Code 2 Transport,10/30/2015 08:33:46 PM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",153033433-70 -150613327,88,15023426,Citizen Assist / Service Call,03/02/2015,03/02/2015,03/02/2015 08:14:58 PM,03/02/2015 08:16:37 PM,03/02/2015 08:25:22 PM,03/02/2015 08:25:30 PM,03/02/2015 08:28:19 PM,03/02/2015 08:59:54 PM,03/02/2015 09:13:41 PM,Code 2 Transport,03/02/2015 09:59:29 PM,300 Block of 25TH AVE,San Francisco,94121,B07,14,7214,3,3,3,true,Alarm,1,MEDIC,3,7,1,Outer Richmond,"(37.7829570675264, -122.484873511385)",150613327-88 -150361171,KM14,15013775,Medical Incident,02/05/2015,02/05/2015,02/05/2015 10:11:55 AM,02/05/2015 10:18:01 AM,02/05/2015 10:18:23 AM,02/05/2015 10:19:10 AM,02/05/2015 10:23:43 AM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Other,02/05/2015 10:24:24 AM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",150361171-KM14 -142491682,E31,14086794,Medical Incident,09/06/2014,09/06/2014,09/06/2014 12:51:26 PM,09/06/2014 12:51:26 PM,09/06/2014 12:51:42 PM,09/06/2014 12:52:11 PM,09/06/2014 12:58:47 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,No Merit,09/06/2014 01:00:15 PM,300 Block of 9TH AVE,San Francisco,94118,B07,31,7135,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7818377800951, -122.467627461804)",142491682-E31 -142603575,E03,14091040,Structure Fire,09/17/2014,09/17/2014,09/17/2014 09:22:48 PM,09/17/2014 09:22:48 PM,09/17/2014 09:22:56 PM,09/17/2014 09:23:54 PM,09/17/2014 09:25:39 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 09:26:20 PM,1000 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",142603575-E03 -151393270,B02,15052932,Structure Fire,05/19/2015,05/19/2015,05/19/2015 08:00:18 PM,05/19/2015 08:01:34 PM,05/19/2015 08:04:00 PM,05/19/2015 08:04:00 PM,05/19/2015 08:04:59 PM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/19/2015 08:17:22 PM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,3,3,3,false,Alarm,1,CHIEF,1,2,6,Mission,"(37.7720141510333, -122.419088601412)",151393270-B02 -150111650,E08,15004345,Medical Incident,01/11/2015,01/11/2015,01/11/2015 12:37:14 PM,01/11/2015 12:38:50 PM,01/11/2015 12:39:31 PM,01/11/2015 12:40:14 PM,01/11/2015 12:44:05 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 2 Transport,01/11/2015 01:02:23 PM,700 Block of 2ND ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.78019523865, -122.390107968661)",150111650-E08 -142232117,E15,14077434,Medical Incident,08/11/2014,08/11/2014,08/11/2014 04:07:38 PM,08/11/2014 04:08:29 PM,08/11/2014 04:09:27 PM,08/11/2014 04:10:27 PM,08/11/2014 04:12:51 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Code 3 Transport,08/11/2014 04:25:58 PM,500 Block of MIRAMAR AVE,San Francisco,94112,B09,15,8474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7266535727469, -122.458078876137)",142232117-E15 -150690144,77,15026212,Medical Incident,03/10/2015,03/09/2015,03/10/2015 01:10:32 AM,03/10/2015 01:11:54 AM,03/10/2015 01:12:22 AM,03/10/2015 01:12:43 AM,03/10/2015 01:25:36 AM,03/10/2015 01:52:02 AM,03/10/2015 02:04:55 AM,Code 2 Transport,03/10/2015 02:30:23 AM,400 Block of ALVARADO ST,San Francisco,94114,B06,11,5514,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7538353252202, -122.430987101522)",150690144-77 -152751414,E04,15105292,Traffic Collision,10/02/2015,10/02/2015,10/02/2015 11:02:21 AM,10/02/2015 11:03:26 AM,10/02/2015 11:03:49 AM,10/02/2015 11:04:37 AM,10/02/2015 11:07:55 AM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Code 2 Transport,10/02/2015 11:23:36 AM,TERRY A FRANCOIS BL/3RD ST,San Francisco,94158,B03,4,2162,2,3,3,false,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763001444296, -122.390025041862)",152751414-E04 -160991531,76,16039278,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:21:48 PM,04/08/2016 12:22:50 PM,04/08/2016 12:22:55 PM,04/08/2016 12:23:03 PM,04/08/2016 12:31:48 PM,04/08/2016 12:45:27 PM,04/08/2016 12:51:57 PM,Code 2 Transport,04/08/2016 01:23:55 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160991531-76 -160962916,57,16038107,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:12:15 PM,04/05/2016 05:12:32 PM,04/05/2016 05:12:38 PM,04/05/2016 05:13:14 PM,04/05/2016 05:45:40 PM,04/05/2016 05:45:49 PM,04/05/2016 06:16:37 PM,Code 3 Transport,04/05/2016 06:34:00 PM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7876129515348, -122.414185698261)",160962916-57 -143081476,E43,14108963,Medical Incident,11/04/2014,11/04/2014,11/04/2014 11:48:41 AM,11/04/2014 11:48:55 AM,11/04/2014 11:49:25 AM,11/04/2014 11:50:03 AM,11/04/2014 11:54:30 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 12:02:06 PM,300 Block of BALTIMORE WAY,San Francisco,94112,B09,43,6228,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7087981055096, -122.437985362628)",143081476-E43 -160972112,77,16038434,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:25:52 PM,04/06/2016 01:25:52 PM,04/06/2016 01:25:52 PM,04/06/2016 01:25:52 PM,04/06/2016 01:25:52 PM,04/06/2016 01:44:12 PM,04/06/2016 02:13:55 PM,Code 2 Transport,04/06/2016 02:47:48 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160972112-77 -142573087,54,14089922,Medical Incident,09/14/2014,09/14/2014,09/14/2014 09:39:47 PM,09/14/2014 09:41:14 PM,09/14/2014 09:51:02 PM,09/14/2014 09:51:02 PM,09/14/2014 09:51:15 PM,09/14/2014 10:01:13 PM,09/14/2014 10:17:17 PM,Code 2 Transport,09/14/2014 10:30:13 PM,SUTTER ST/MARKET ST,San Francisco,94104,B01,13,1164,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7902901603061, -122.400152471245)",142573087-54 -143572108,E15,14127797,Alarms,12/23/2014,12/23/2014,12/23/2014 02:16:16 PM,12/23/2014 02:17:45 PM,12/23/2014 02:17:59 PM,12/23/2014 02:19:13 PM,12/23/2014 02:20:57 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/23/2014 02:27:46 PM,100 Block of DORADO TER,San Francisco,94112,B09,15,8532,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7269434192738, -122.461281996252)",143572108-E15 -143093737,81,14109554,Medical Incident,11/05/2014,11/05/2014,11/05/2014 10:41:59 PM,11/05/2014 10:43:45 PM,11/05/2014 10:44:00 PM,11/05/2014 10:44:08 PM,11/05/2014 10:47:44 PM,11/05/2014 11:01:50 PM,11/05/2014 11:34:30 PM,Code 2 Transport,11/06/2014 12:05:04 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",143093737-81 -161001097,86,16039695,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:03:48 AM,04/09/2016 10:05:40 AM,04/09/2016 10:06:00 AM,04/09/2016 10:06:12 AM,04/09/2016 10:13:58 AM,04/09/2016 10:20:54 AM,04/09/2016 10:34:30 AM,Code 2 Transport,04/09/2016 11:10:45 AM,700 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7879296328088, -122.415022016948)",161001097-86 -152931650,E21,15112556,Medical Incident,10/20/2015,10/20/2015,10/20/2015 12:04:57 PM,10/20/2015 12:07:26 PM,10/20/2015 12:09:19 PM,10/20/2015 12:10:06 PM,10/20/2015 12:11:56 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Code 2 Transport,10/20/2015 12:37:18 PM,600 Block of SCOTT ST,San Francisco,94117,B05,21,4136,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7756631447471, -122.436291871367)",152931650-E21 -153130059,58,15120123,Medical Incident,11/09/2015,11/08/2015,11/09/2015 12:38:11 AM,11/09/2015 12:38:46 AM,11/09/2015 12:39:11 AM,11/09/2015 12:39:25 AM,11/09/2015 12:44:21 AM,11/09/2015 12:54:14 AM,04/25/2016 01:07:18 PM,Code 2 Transport,11/09/2015 01:42:17 AM,500 Block of 16TH ST,San Francisco,94158,B03,4,2364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7669077375636, -122.389953310859)",153130059-58 -142491735,B02,14086800,Alarms,09/06/2014,09/06/2014,09/06/2014 01:04:34 PM,09/06/2014 01:06:17 PM,09/06/2014 01:06:34 PM,09/06/2014 01:07:52 PM,09/06/2014 01:10:22 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Fire,09/06/2014 01:14:20 PM,200 Block of DIVISADERO ST,San Francisco,94117,B05,21,4144,3,3,3,false,Alarm,1,CHIEF,2,5,5,Haight Ashbury,"(37.7717499829743, -122.437022956853)",142491735-B02 -151351294,T10,15051228,Medical Incident,05/15/2015,05/15/2015,05/15/2015 10:28:07 AM,05/15/2015 10:29:08 AM,05/15/2015 10:29:29 AM,05/15/2015 10:30:13 AM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,Code 2 Transport,05/15/2015 10:32:02 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,5,Japantown,"(37.7846877609559, -122.437204719428)",151351294-T10 -160960311,82,16037873,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:06:15 AM,04/05/2016 04:06:46 AM,04/05/2016 04:06:57 AM,04/05/2016 04:07:12 AM,04/05/2016 04:11:23 AM,04/05/2016 04:28:35 AM,04/05/2016 04:33:59 AM,Code 2 Transport,04/05/2016 05:28:48 AM,1100 Block of CHURCH ST,San Francisco,94114,B06,11,5523,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7520811273688, -122.427401362186)",160960311-82 -160921504,81,16036420,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:05:50 PM,04/01/2016 12:07:41 PM,04/01/2016 12:08:37 PM,04/01/2016 12:09:02 PM,04/01/2016 12:14:41 PM,04/01/2016 12:47:05 PM,04/01/2016 12:33:58 PM,Code 3 Transport,04/01/2016 01:28:47 PM,100 Block of VARENNES ST,San Francisco,94133,B01,28,1252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8012139505767, -122.406825918153)",160921504-81 -161001150,KM06,16039703,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:24:10 AM,04/09/2016 10:25:46 AM,04/09/2016 10:40:57 AM,04/09/2016 10:40:57 AM,04/09/2016 10:43:42 AM,04/09/2016 10:51:44 AM,04/09/2016 11:08:00 AM,Code 2 Transport,04/09/2016 11:48:59 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",161001150-KM06 -152953308,66,15113497,Medical Incident,10/22/2015,10/22/2015,10/22/2015 08:07:03 PM,10/22/2015 08:07:48 PM,10/22/2015 08:08:42 PM,10/22/2015 08:08:54 PM,10/22/2015 08:13:35 PM,10/22/2015 08:26:37 PM,10/22/2015 08:41:38 PM,Code 2 Transport,10/22/2015 09:25:37 PM,100 Block of LINDA ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7594094951426, -122.422887066133)",152953308-66 -152023610,55,15077119,Medical Incident,07/21/2015,07/21/2015,07/21/2015 09:14:21 PM,07/21/2015 09:16:52 PM,07/21/2015 09:17:32 PM,07/21/2015 09:17:44 PM,07/21/2015 09:21:24 PM,07/21/2015 09:34:03 PM,07/21/2015 09:44:31 PM,Code 2 Transport,07/21/2015 10:08:07 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",152023610-55 -152931551,AM06,15112545,Medical Incident,10/20/2015,10/20/2015,10/20/2015 11:36:35 AM,10/20/2015 11:37:55 AM,10/20/2015 11:38:28 AM,10/20/2015 11:39:15 AM,10/20/2015 11:58:57 AM,10/20/2015 11:59:00 AM,10/20/2015 12:19:36 PM,Code 2 Transport,10/20/2015 12:48:18 PM,0 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",152931551-AM06 -141110044,E01,14037329,Medical Incident,04/21/2014,04/20/2014,04/21/2014 03:49:24 AM,04/21/2014 03:53:28 AM,04/21/2014 03:54:20 AM,04/21/2014 03:56:38 AM,04/21/2014 03:59:40 AM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/21/2014 04:03:24 AM,100 Block of MASON ST,SAN FRANCISCO,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",141110044-E01 -152900753,E03,15111317,Outside Fire,10/17/2015,10/16/2015,10/17/2015 06:45:41 AM,10/17/2015 06:47:43 AM,10/17/2015 06:47:53 AM,10/17/2015 06:49:56 AM,10/17/2015 06:51:41 AM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Fire,10/17/2015 06:54:04 AM,HEMLOCK ST/LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,true,Fire,1,ENGINE,1,4,3,Nob Hill,"(37.7874871163793, -122.41836486841)",152900753-E03 -150022190,72,15000781,Citizen Assist / Service Call,01/02/2015,01/02/2015,01/02/2015 04:39:20 PM,01/02/2015 04:40:59 PM,01/02/2015 04:48:58 PM,01/02/2015 04:52:57 PM,01/02/2015 04:55:14 PM,01/02/2015 05:22:09 PM,01/02/2015 05:26:26 PM,Code 3 Transport,01/02/2015 06:05:36 PM,1200 Block of UNION ST,San Francisco,94109,B01,41,1611,3,3,3,true,Alarm,1,MEDIC,2,1,2,Russian Hill,"(37.7991880778429, -122.419577927088)",150022190-72 -151542842,RS2,15058782,Structure Fire,06/03/2015,06/03/2015,06/03/2015 05:14:20 PM,06/03/2015 05:15:16 PM,06/03/2015 05:15:36 PM,06/03/2015 05:15:45 PM,06/03/2015 05:17:50 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Fire,06/03/2015 05:38:38 PM,2800 Block of 26TH ST,San Francisco,94110,B06,9,5616,3,3,3,false,Fire,1,RESCUE SQUAD,1,6,9,Mission,"(37.7497416991631, -122.40739562751)",151542842-RS2 -160993873,AM24,16039511,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:37:21 PM,04/08/2016 10:38:09 PM,04/08/2016 10:39:45 PM,04/08/2016 10:41:21 PM,04/08/2016 10:46:34 PM,04/08/2016 11:06:30 PM,04/08/2016 11:31:32 PM,Code 2 Transport,04/09/2016 12:08:30 AM,800 Block of POST ST,San Francisco,94109,B04,3,1543,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7874037664371, -122.415827994726)",160993873-AM24 -150423137,E03,15016476,Medical Incident,02/11/2015,02/11/2015,02/11/2015 06:40:40 PM,02/11/2015 06:41:33 PM,02/11/2015 06:42:42 PM,02/11/2015 06:42:42 PM,02/11/2015 06:42:42 PM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Code 2 Transport,02/11/2015 06:51:47 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",150423137-E03 -160922141,AM16,16036478,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 03:01:04 PM,04/01/2016 03:03:36 PM,04/01/2016 03:04:26 PM,04/01/2016 03:05:06 PM,04/01/2016 03:21:10 PM,04/01/2016 03:39:10 PM,04/01/2016 03:56:50 PM,Code 2 Transport,04/01/2016 04:27:14 PM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,2,3,3,false,Non Life-threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",160922141-AM16 -152643779,T13,15101252,Structure Fire,09/21/2015,09/21/2015,09/21/2015 08:00:40 PM,09/21/2015 08:00:40 PM,09/21/2015 08:00:49 PM,09/21/2015 08:02:18 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/21/2015 08:03:53 PM,MAIN ST/MISSION ST,San Francisco,94105,B03,35,2116,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",152643779-T13 -160923294,76,16036589,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:56:28 PM,04/01/2016 07:57:48 PM,04/01/2016 07:58:16 PM,04/01/2016 07:58:24 PM,04/01/2016 08:03:15 PM,04/01/2016 08:16:21 PM,04/01/2016 08:26:27 PM,Code 3 Transport,04/01/2016 08:43:37 PM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",160923294-76 -161001198,74,16039706,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:41:55 AM,04/09/2016 10:43:59 AM,04/09/2016 10:55:17 AM,04/09/2016 10:55:17 AM,04/09/2016 11:02:15 AM,04/09/2016 11:10:36 AM,04/09/2016 11:25:51 AM,Code 2 Transport,04/09/2016 11:58:44 AM,3100 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7220016138662, -122.401341444894)",161001198-74 -160993838,64,16039507,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:23:02 PM,04/08/2016 10:25:27 PM,04/08/2016 10:31:27 PM,04/08/2016 10:35:13 PM,04/08/2016 10:35:13 PM,04/08/2016 10:55:44 PM,04/08/2016 11:01:48 PM,Code 2 Transport,04/08/2016 11:35:31 PM,4300 Block of 17TH ST,San Francisco,94114,B05,6,5254,2,3,3,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7621598004404, -122.441543331354)",160993838-64 -142380092,CD2,14082637,Structure Fire,08/26/2014,08/25/2014,08/26/2014 12:34:34 AM,08/26/2014 12:35:02 AM,08/26/2014 12:51:03 AM,08/26/2014 12:51:03 AM,08/26/2014 12:56:58 AM,04/25/2016 01:15:27 PM,04/25/2016 01:15:27 PM,Fire,08/26/2014 02:19:49 AM,2000 Block of SAN JOSE AVE,San Francisco,94112,B09,15,8311,3,3,3,false,Fire,3,CHIEF,33,9,11,Outer Mission,"(37.7239471712086, -122.443848555561)",142380092-CD2 -151001046,E36,15037775,Medical Incident,04/10/2015,04/10/2015,04/10/2015 10:11:55 AM,04/10/2015 10:13:49 AM,04/10/2015 10:17:38 AM,04/10/2015 10:19:12 AM,04/10/2015 10:27:55 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Unable to Locate,04/10/2015 10:29:14 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",151001046-E36 -141731175,AR1,14059634,Outside Fire,06/22/2014,06/22/2014,06/22/2014 11:16:50 AM,06/22/2014 11:17:44 AM,06/22/2014 11:23:12 AM,06/22/2014 11:23:58 AM,06/22/2014 11:40:04 AM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Fire,06/22/2014 02:23:03 PM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,false,Fire,1,INVESTIGATION,3,3,6,Financial District/South Beach,"(37.7865200257762, -122.398029767539)",141731175-AR1 -160941113,KM05,16037207,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:35:10 AM,04/03/2016 09:35:50 AM,04/03/2016 09:36:25 AM,04/03/2016 09:38:14 AM,04/03/2016 09:44:44 AM,04/03/2016 09:53:46 AM,04/03/2016 10:14:08 AM,Code 2 Transport,04/03/2016 10:35:04 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160941113-KM05 -150041879,82,15001500,Medical Incident,01/04/2015,01/04/2015,01/04/2015 02:33:07 PM,01/04/2015 02:34:36 PM,01/04/2015 02:35:11 PM,01/04/2015 02:36:12 PM,01/04/2015 02:42:04 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Patient Declined Transport,01/04/2015 03:32:52 PM,100 Block of FRANKLIN ST,San Francisco,94102,B02,36,3213,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7759358319818, -122.421032543678)",150041879-82 -152891113,E02,15110955,Medical Incident,10/16/2015,10/16/2015,10/16/2015 09:55:55 AM,10/16/2015 09:56:25 AM,10/16/2015 09:57:44 AM,10/16/2015 09:59:29 AM,10/16/2015 10:03:20 AM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 10:34:17 AM,1700 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7913381286071, -122.421683207706)",152891113-E02 -153143258,52,15120794,Medical Incident,11/10/2015,11/10/2015,11/10/2015 07:13:41 PM,11/10/2015 07:16:21 PM,11/10/2015 07:17:02 PM,11/10/2015 07:17:17 PM,11/10/2015 07:36:41 PM,11/10/2015 08:04:04 PM,11/10/2015 08:14:33 PM,Code 2 Transport,11/10/2015 08:55:07 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",153143258-52 -141610839,T08,14055421,Alarms,06/10/2014,06/10/2014,06/10/2014 08:58:15 AM,06/10/2014 08:59:59 AM,06/10/2014 09:00:31 AM,06/10/2014 09:02:01 AM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,04/25/2016 01:16:51 PM,Fire,06/10/2014 09:06:08 AM,100 Block of VERMONT ST,San Francisco,94103,B02,29,2355,3,3,3,false,Alarm,1,TRUCK,2,2,10,Mission Bay,"(37.76789826103, -122.404743414302)",141610839-T08 -142021764,E36,14069888,Medical Incident,07/21/2014,07/21/2014,07/21/2014 01:48:31 PM,07/21/2014 01:50:08 PM,07/21/2014 01:50:15 PM,07/21/2014 01:51:20 PM,07/21/2014 01:54:51 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,No Merit,07/21/2014 02:02:40 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",142021764-E36 -150140938,E07,15005469,Medical Incident,01/14/2015,01/14/2015,01/14/2015 09:18:17 AM,01/14/2015 09:18:58 AM,01/14/2015 09:19:32 AM,01/14/2015 09:19:58 AM,01/14/2015 09:22:15 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Code 2 Transport,01/14/2015 09:26:35 AM,16TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7651831353816, -122.417486597301)",150140938-E07 -151873393,B08,15071551,Structure Fire,07/06/2015,07/06/2015,07/06/2015 07:38:15 PM,07/06/2015 07:38:15 PM,07/06/2015 07:38:24 PM,07/06/2015 07:41:38 PM,07/06/2015 07:41:38 PM,04/25/2016 01:09:36 PM,04/25/2016 01:09:36 PM,Fire,07/06/2015 07:42:05 PM,2600 Block of 42ND AVE,San Francisco,94116,B08,18,768,3,3,3,false,Alarm,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7373076750322, -122.49992945011)",151873393-B08 -160973187,54,16038552,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:08:59 PM,04/06/2016 05:10:46 PM,04/06/2016 05:11:02 PM,04/06/2016 05:11:14 PM,04/06/2016 05:28:20 PM,04/06/2016 05:28:23 PM,04/06/2016 05:55:56 PM,Code 2 Transport,04/06/2016 06:10:53 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",160973187-54 -151080604,E24,15040792,Medical Incident,04/18/2015,04/17/2015,04/18/2015 06:21:57 AM,04/18/2015 06:22:21 AM,04/18/2015 06:22:31 AM,04/18/2015 06:24:42 AM,04/18/2015 06:26:40 AM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Patient Declined Transport,04/18/2015 06:35:18 AM,500 Block of EUREKA ST,San Francisco,94114,B06,24,5465,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7535004906756, -122.437502084533)",151080604-E24 -142700775,85,14094598,Medical Incident,09/27/2014,09/26/2014,09/27/2014 07:10:05 AM,09/27/2014 07:12:17 AM,09/27/2014 07:13:42 AM,09/27/2014 07:15:57 AM,09/27/2014 07:20:56 AM,09/27/2014 07:30:59 AM,09/27/2014 07:44:01 AM,Code 2 Transport,09/27/2014 08:32:49 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",142700775-85 -150472125,63,15018315,Medical Incident,02/16/2015,02/16/2015,02/16/2015 02:23:31 PM,02/16/2015 02:24:29 PM,02/16/2015 02:26:25 PM,02/16/2015 02:26:49 PM,02/16/2015 02:34:20 PM,02/16/2015 02:44:52 PM,02/16/2015 03:03:26 PM,Code 2 Transport,02/16/2015 03:18:31 PM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",150472125-63 -142171120,E03,14075191,Medical Incident,08/05/2014,08/05/2014,08/05/2014 11:03:56 AM,08/05/2014 11:04:19 AM,08/05/2014 11:09:15 AM,08/05/2014 11:09:50 AM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Code 2 Transport,08/05/2014 11:10:35 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",142171120-E03 -160962932,52,16038108,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:14:59 PM,04/05/2016 05:15:55 PM,04/05/2016 05:16:04 PM,04/05/2016 05:16:11 PM,04/05/2016 05:22:32 PM,04/05/2016 05:33:06 PM,04/05/2016 05:44:04 PM,Code 3 Transport,04/05/2016 06:28:08 PM,0 Block of VARNEY PL,San Francisco,94107,B03,8,2173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7807548883206, -122.394026397385)",160962932-52 -160942566,53,16037339,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:41:33 PM,04/03/2016 04:45:01 PM,04/03/2016 04:45:22 PM,04/03/2016 04:45:31 PM,04/03/2016 04:50:05 PM,04/03/2016 05:18:39 PM,04/03/2016 05:46:48 PM,Code 2 Transport,04/03/2016 06:14:07 PM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",160942566-53 -161000672,AM24,16039644,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:58:52 AM,04/09/2016 06:59:26 AM,04/09/2016 07:00:06 AM,04/09/2016 07:01:06 AM,04/09/2016 07:10:55 AM,04/09/2016 07:29:19 AM,04/09/2016 07:47:44 AM,Code 2 Transport,04/09/2016 08:18:07 AM,0 Block of NORTON ST,San Francisco,94112,B09,43,6117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7250514707571, -122.435709128534)",161000672-AM24 -142182430,B10,14075634,Structure Fire,08/06/2014,08/06/2014,08/06/2014 03:22:20 PM,08/06/2014 03:23:05 PM,08/06/2014 03:23:21 PM,08/06/2014 03:24:40 PM,08/06/2014 03:28:55 PM,04/25/2016 01:15:49 PM,04/25/2016 01:15:49 PM,Fire,08/06/2014 03:36:48 PM,0 Block of LATONA ST,San Francisco,94124,B10,17,6514,3,3,3,false,Alarm,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.7316182572491, -122.392627218053)",142182430-B10 -160971551,KM05,16038381,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:21:27 AM,04/06/2016 11:22:05 AM,04/06/2016 11:22:40 AM,04/06/2016 11:23:23 AM,04/06/2016 11:29:39 AM,04/06/2016 11:59:27 AM,04/06/2016 12:14:31 PM,Code 2 Transport,04/06/2016 12:46:12 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160971551-KM05 -160980362,88,16038765,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:15:54 AM,04/07/2016 03:20:42 AM,04/07/2016 03:23:37 AM,04/07/2016 03:23:48 AM,04/07/2016 03:29:27 AM,04/07/2016 03:35:58 AM,04/07/2016 03:42:33 AM,Code 2 Transport,04/07/2016 04:01:43 AM,11TH ST/MARKET ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",160980362-88 -153482099,82,15134105,Medical Incident,12/14/2015,12/14/2015,12/14/2015 02:26:02 PM,12/14/2015 02:27:04 PM,12/14/2015 02:27:51 PM,12/14/2015 02:28:00 PM,12/14/2015 02:32:49 PM,12/14/2015 02:48:45 PM,12/14/2015 03:19:48 PM,Code 2 Transport,12/14/2015 03:44:34 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",153482099-82 -153172444,54,15121894,Other,11/13/2015,11/13/2015,11/13/2015 02:53:18 PM,11/13/2015 02:54:52 PM,11/13/2015 03:01:13 PM,11/13/2015 03:01:13 PM,11/13/2015 03:14:06 PM,11/13/2015 03:42:06 PM,11/13/2015 03:48:22 PM,Multi-casualty Incident,11/13/2015 04:55:48 PM,200 Block of STOCKTON ST,San Francisco,94108,B01,1,1323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,9,1,3,Financial District/South Beach,"(37.7882745285785, -122.406658711008)",153172444-54 -141910967,KM06,14066137,Medical Incident,07/10/2014,07/10/2014,07/10/2014 09:17:01 AM,07/10/2014 09:19:33 AM,07/10/2014 09:22:29 AM,07/10/2014 09:23:35 AM,07/10/2014 09:25:49 AM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Patient Declined Transport,07/10/2014 10:13:52 AM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",141910967-KM06 -161002486,KM09,16039861,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:40:15 PM,04/09/2016 05:40:54 PM,04/09/2016 05:41:55 PM,04/09/2016 05:42:34 PM,04/09/2016 06:18:58 PM,04/09/2016 06:44:30 PM,04/09/2016 07:12:58 PM,Code 2 Transport,04/09/2016 07:32:16 PM,400 Block of GREENWICH ST,San Francisco,94133,B01,28,1335,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.8025926398562, -122.407698526758)",161002486-KM09 -153431198,T16,15131939,Structure Fire,12/09/2015,12/09/2015,12/09/2015 10:05:44 AM,12/09/2015 10:05:44 AM,12/09/2015 10:05:56 AM,12/09/2015 10:06:09 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 10:09:47 AM,VAN NESS AV/NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,false,Alarm,1,TRUCK,2,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",153431198-T16 -141751296,E03,14060346,Medical Incident,06/24/2014,06/24/2014,06/24/2014 11:36:59 AM,06/24/2014 11:37:59 AM,06/24/2014 11:48:54 AM,06/24/2014 11:49:54 AM,06/24/2014 11:55:14 AM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,Code 3 Transport,06/24/2014 12:29:17 PM,1600 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",141751296-E03 -143472976,53,14123927,Medical Incident,12/13/2014,12/13/2014,12/13/2014 06:41:17 PM,12/13/2014 06:43:05 PM,12/13/2014 06:43:16 PM,12/13/2014 06:43:25 PM,12/13/2014 06:47:39 PM,12/13/2014 06:59:42 PM,12/13/2014 07:12:45 PM,Code 2 Transport,12/13/2014 07:30:14 PM,600 Block of 27TH AVE,San Francisco,94121,B07,14,7222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7771331089354, -122.486739386436)",143472976-53 -141060337,E06,14035867,Medical Incident,04/16/2014,04/16/2014,04/16/2014 05:35:31 PM,04/16/2014 05:37:15 PM,04/16/2014 05:38:06 PM,04/16/2014 05:39:10 PM,04/16/2014 05:41:30 PM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Code 2 Transport,04/16/2014 06:35:28 PM,0 Block of WEBSTER ST,SAN FRANCISCO,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7695619068143, -122.428315606371)",141060337-E06 -160981294,67,16038860,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:10:42 AM,04/07/2016 10:13:48 AM,04/07/2016 10:17:43 AM,04/07/2016 10:17:48 AM,04/07/2016 10:35:12 AM,04/07/2016 10:53:58 AM,04/07/2016 11:14:51 AM,Code 2 Transport,04/07/2016 12:06:03 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160981294-67 -142991309,E15,14105548,Medical Incident,10/26/2014,10/26/2014,10/26/2014 10:56:01 AM,10/26/2014 10:57:41 AM,10/26/2014 10:57:51 AM,10/26/2014 10:58:50 AM,10/26/2014 11:01:46 AM,04/25/2016 01:14:21 PM,04/25/2016 01:14:21 PM,Fire,10/26/2014 11:07:08 AM,200 Block of TARA ST,San Francisco,94112,B09,15,8315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7195632591737, -122.449576132342)",142991309-E15 -152603600,78,15099535,Medical Incident,09/17/2015,09/17/2015,09/17/2015 08:20:28 PM,09/17/2015 08:22:30 PM,09/17/2015 08:23:47 PM,09/17/2015 08:24:03 PM,09/17/2015 08:40:02 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Cancelled,09/17/2015 08:43:36 PM,900 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1435,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",152603600-78 -151771784,E13,15067375,Medical Incident,06/26/2015,06/26/2015,06/26/2015 01:04:10 PM,06/26/2015 01:06:13 PM,06/26/2015 01:06:37 PM,06/26/2015 01:07:27 PM,06/26/2015 01:08:27 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 01:36:08 PM,500 Block of BATTERY ST,San Francisco,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7963165979031, -122.40065165037)",151771784-E13 -160923230,78,16036581,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:35:11 PM,04/01/2016 07:35:11 PM,04/01/2016 07:36:42 PM,04/01/2016 07:36:49 PM,04/01/2016 07:48:23 PM,04/01/2016 08:03:45 PM,04/01/2016 08:11:02 PM,Code 2 Transport,04/01/2016 08:58:14 PM,3500 Block of MISSION ST,San Francisco,94110,B06,32,5626,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7408095549035, -122.422903715345)",160923230-78 -152282661,79,15087075,Medical Incident,08/16/2015,08/16/2015,08/16/2015 05:10:40 PM,08/16/2015 05:13:05 PM,08/16/2015 05:13:51 PM,08/16/2015 05:14:06 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,No Merit,08/16/2015 05:24:54 PM,3RD ST/STILLMAN ST,San Francisco,94107,B03,8,2174,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",152282661-79 -142151878,83,14074596,Traffic Collision,08/03/2014,08/03/2014,08/03/2014 03:38:27 PM,08/03/2014 03:38:27 PM,08/03/2014 03:38:39 PM,08/03/2014 03:38:54 PM,04/25/2016 01:15:52 PM,04/25/2016 01:15:52 PM,04/25/2016 01:15:52 PM,Patient Declined Transport,08/03/2014 03:40:31 PM,19TH AV/KIRKHAM ST,San Francisco,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,7,8,7,Inner Sunset,"(37.7598339367344, -122.47681389085)",142151878-83 -160982681,71,16039008,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:12:58 PM,04/07/2016 04:15:24 PM,04/07/2016 04:15:59 PM,04/07/2016 04:16:09 PM,04/07/2016 04:24:23 PM,04/07/2016 04:46:54 PM,04/07/2016 05:12:32 PM,Code 2 Transport,04/07/2016 05:29:12 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7658666581108, -122.419678114931)",160982681-71 -152683262,E38,15102812,Structure Fire,09/25/2015,09/25/2015,09/25/2015 07:15:07 PM,09/25/2015 07:15:07 PM,09/25/2015 07:15:38 PM,09/25/2015 07:17:44 PM,09/25/2015 07:17:44 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 07:26:50 PM,2300 Block of BUCHANAN ST,San Francisco,94115,B04,38,343,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",152683262-E38 -160983755,70,16039117,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:34:47 PM,04/07/2016 09:35:25 PM,04/07/2016 09:35:55 PM,04/07/2016 09:37:20 PM,04/07/2016 09:39:33 PM,04/07/2016 09:57:58 PM,04/07/2016 10:03:18 PM,Code 2 Transport,04/07/2016 10:33:02 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160983755-70 -141200366,E31,14040700,Medical Incident,04/30/2014,04/30/2014,04/30/2014 08:54:00 PM,04/30/2014 08:54:34 PM,04/30/2014 08:54:55 PM,04/30/2014 08:56:12 PM,04/30/2014 09:00:21 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Code 2 Transport,04/30/2014 09:10:53 PM,1900 Block of CABRILLO ST,SAN FRANCISCO,94121,B07,31,7166,,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7746018884228, -122.479501884325)",141200366-E31 -151553136,KM11,15059235,Medical Incident,06/04/2015,06/04/2015,06/04/2015 06:50:31 PM,06/04/2015 06:51:55 PM,06/04/2015 06:52:14 PM,06/04/2015 06:52:45 PM,06/04/2015 06:58:12 PM,06/04/2015 07:04:49 PM,06/04/2015 07:15:25 PM,Code 2 Transport,06/04/2015 07:33:18 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",151553136-KM11 -160932269,AM02,16036920,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:41:37 PM,04/02/2016 03:41:37 PM,04/02/2016 03:43:10 PM,04/02/2016 03:44:35 PM,04/02/2016 03:50:29 PM,04/02/2016 04:13:30 PM,04/02/2016 04:25:14 PM,Code 2 Transport,04/02/2016 04:51:37 PM,600 Block of PRESIDIO AVE,San Francisco,94115,B05,10,4411,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,2,Presidio Heights,"(37.7858449979837, -122.44644775326)",160932269-AM02 -161000664,89,16039641,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:52:26 AM,04/09/2016 06:53:42 AM,04/09/2016 06:53:55 AM,04/09/2016 06:54:25 AM,04/09/2016 06:59:52 AM,04/09/2016 07:19:21 AM,04/09/2016 07:25:47 AM,Code 2 Transport,04/09/2016 08:08:16 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",161000664-89 -160981082,65,16038831,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:16:46 AM,04/07/2016 09:16:46 AM,04/07/2016 09:16:53 AM,04/07/2016 09:16:59 AM,04/07/2016 09:21:41 AM,04/07/2016 09:42:00 AM,04/07/2016 09:47:34 AM,Code 2 Transport,04/07/2016 10:29:02 AM,23RD ST/HAMPSHIRE ST,San Francisco,94110,B06,7,5476,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7545063381607, -122.407448561841)",160981082-65 -142622011,E39,14091634,Medical Incident,09/19/2014,09/19/2014,09/19/2014 01:56:45 PM,09/19/2014 01:58:13 PM,09/19/2014 02:04:04 PM,09/19/2014 02:05:39 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,Code 2 Transport,09/19/2014 02:36:20 PM,300 Block of SAN LEANDRO WAY,San Francisco,94127,B09,39,8552,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7308612889348, -122.468777345903)",142622011-E39 -152990128,71,15114634,Medical Incident,10/26/2015,10/25/2015,10/26/2015 01:09:36 AM,10/26/2015 01:09:36 AM,10/26/2015 01:22:49 AM,10/26/2015 01:23:12 AM,10/26/2015 01:36:12 AM,10/26/2015 02:12:46 AM,10/26/2015 02:22:52 AM,Code 2 Transport,10/26/2015 03:29:29 AM,900 Block of MEADE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7178922273054, -122.397583035187)",152990128-71 -142501535,T01,14087172,Structure Fire,09/07/2014,09/07/2014,09/07/2014 12:04:41 PM,09/07/2014 12:04:41 PM,09/07/2014 12:05:04 PM,09/07/2014 12:06:30 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Fire,09/07/2014 12:07:14 PM,1200 Block of MARKET ST,San Francisco,94103,B02,36,2337,3,3,3,false,Alarm,1,TRUCK,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",142501535-T01 -152562415,E51,15097973,Medical Incident,09/13/2015,09/13/2015,09/13/2015 04:36:35 PM,09/13/2015 04:37:16 PM,09/13/2015 04:37:38 PM,09/13/2015 04:39:26 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,Code 2 Transport,09/13/2015 04:40:10 PM,100 Block of 18TH AVE,San Francisco,94121,B07,31,7163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7851542988251, -122.477507607941)",152562415-E51 -142032973,86,14070367,Medical Incident,07/22/2014,07/22/2014,07/22/2014 07:26:02 PM,07/22/2014 07:26:02 PM,07/22/2014 07:36:24 PM,07/22/2014 07:36:24 PM,07/22/2014 07:44:58 PM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Cancelled,07/22/2014 07:46:58 PM,EDDY ST/JONES ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",142032973-86 -141651209,E12,14056866,Medical Incident,06/14/2014,06/14/2014,06/14/2014 10:36:11 AM,06/14/2014 10:38:26 AM,06/14/2014 10:40:19 AM,06/14/2014 10:41:35 AM,06/14/2014 10:43:43 AM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Code 2 Transport,06/14/2014 11:16:36 AM,0 Block of DOWNEY ST,San Francisco,94117,B05,12,4512,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7680490579838, -122.447311591482)",141651209-E12 -160980544,65,16038787,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:50:12 AM,04/07/2016 05:51:39 AM,04/07/2016 05:51:50 AM,04/07/2016 05:51:55 AM,04/07/2016 05:58:45 AM,04/07/2016 06:19:20 AM,04/07/2016 06:29:01 AM,Code 2 Transport,04/07/2016 07:02:53 AM,0 Block of DE LONG ST,San Francisco,94112,B09,33,8357,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7096061746136, -122.459869387331)",160980544-65 -152550373,E02,15097382,Medical Incident,09/12/2015,09/11/2015,09/12/2015 02:53:29 AM,09/12/2015 02:53:29 AM,09/12/2015 02:53:55 AM,09/12/2015 02:55:34 AM,09/12/2015 02:57:14 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Patient Declined Transport,09/12/2015 03:04:44 AM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7979466732983, -122.406460643507)",152550373-E02 -152242144,E15,15085385,Medical Incident,08/12/2015,08/12/2015,08/12/2015 02:10:25 PM,08/12/2015 02:13:05 PM,08/12/2015 02:15:10 PM,08/12/2015 02:17:21 PM,08/12/2015 02:19:14 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Code 3 Transport,08/12/2015 02:29:09 PM,200 Block of DETROIT ST,San Francisco,94131,B09,15,8222,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7294956324936, -122.444218631361)",152242144-E15 -152830544,E15,15108540,Alarms,10/10/2015,10/09/2015,10/10/2015 03:37:45 AM,10/10/2015 03:38:10 AM,10/10/2015 03:38:43 AM,10/10/2015 03:40:47 AM,10/10/2015 03:42:47 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Fire,10/10/2015 03:52:31 AM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152830544-E15 -152803864,66,15107618,Medical Incident,10/07/2015,10/07/2015,10/07/2015 09:14:05 PM,10/07/2015 09:15:12 PM,10/07/2015 09:15:22 PM,10/07/2015 09:15:55 PM,10/07/2015 09:23:43 PM,10/07/2015 09:28:18 PM,10/07/2015 09:46:47 PM,Code 2 Transport,10/07/2015 10:27:24 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",152803864-66 -150830981,79,15031662,Medical Incident,03/24/2015,03/24/2015,03/24/2015 09:41:40 AM,03/24/2015 09:43:10 AM,03/24/2015 09:43:31 AM,03/24/2015 09:44:00 AM,03/24/2015 10:01:07 AM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Gone on Arrival,03/24/2015 10:05:46 AM,19TH AV/WINSTON DR,San Francisco,94132,B08,19,8725,2,3,3,true,Non Life-threatening,1,MEDIC,1,9,7,Lakeshore,"(37.7269907019127, -122.474900344293)",150830981-79 -151940262,63,15073875,Medical Incident,07/13/2015,07/12/2015,07/13/2015 02:46:10 AM,07/13/2015 02:46:38 AM,07/13/2015 02:47:27 AM,07/13/2015 02:48:17 AM,07/13/2015 02:51:11 AM,07/13/2015 03:10:38 AM,07/13/2015 03:14:52 AM,Code 2 Transport,07/13/2015 03:34:09 AM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",151940262-63 -151802231,T01,15068778,Alarms,06/29/2015,06/29/2015,06/29/2015 03:37:03 PM,06/29/2015 03:38:45 PM,06/29/2015 03:38:53 PM,06/29/2015 03:41:02 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Fire,06/29/2015 03:42:13 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",151802231-T01 -143522510,E11,14125822,Medical Incident,12/18/2014,12/18/2014,12/18/2014 04:02:27 PM,12/18/2014 04:04:05 PM,12/18/2014 04:08:17 PM,12/18/2014 04:09:40 PM,12/18/2014 04:14:19 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,No Merit,12/18/2014 04:17:48 PM,3300 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.748078304368, -122.41703818877)",143522510-E11 -141950388,58,14067474,Medical Incident,07/14/2014,07/13/2014,07/14/2014 04:50:33 AM,07/14/2014 04:51:58 AM,07/14/2014 04:52:56 AM,07/14/2014 04:53:08 AM,07/14/2014 05:02:38 AM,07/14/2014 05:19:16 AM,07/14/2014 05:25:07 AM,Code 2 Transport,07/14/2014 05:39:25 AM,0 Block of WINFIELD ST,San Francisco,94110,B06,11,5657,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7445134943553, -122.41736579364)",141950388-58 -160970017,52,16038239,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:06:30 AM,04/06/2016 12:06:30 AM,04/06/2016 12:07:43 AM,04/06/2016 12:07:50 AM,04/06/2016 12:19:01 AM,04/06/2016 12:30:21 AM,04/06/2016 12:42:12 AM,Code 2 Transport,04/06/2016 01:31:32 AM,GUERRERO ST/CLINTON PARK ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7685443407606, -122.424582398809)",160970017-52 -141973146,E01,14068343,Medical Incident,07/16/2014,07/16/2014,07/16/2014 07:08:23 PM,07/16/2014 07:09:57 PM,07/16/2014 07:17:21 PM,07/16/2014 07:18:58 PM,07/16/2014 07:26:50 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 2 Transport,07/16/2014 07:41:40 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",141973146-E01 -160930354,70,16036704,Medical Incident,04/02/2016,04/01/2016,04/02/2016 02:27:54 AM,04/02/2016 02:30:00 AM,04/02/2016 02:30:20 AM,04/02/2016 02:30:29 AM,04/02/2016 02:38:51 AM,04/02/2016 02:50:29 AM,04/02/2016 03:06:04 AM,Code 2 Transport,04/02/2016 03:22:59 AM,1100 Block of GILMAN AVE,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7198684752103, -122.390904801268)",160930354-70 -160962872,62,16038103,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:05:21 PM,04/05/2016 05:06:16 PM,04/05/2016 05:06:40 PM,04/05/2016 05:06:55 PM,04/05/2016 05:09:59 PM,04/05/2016 05:20:22 PM,04/05/2016 05:29:42 PM,Code 2 Transport,04/05/2016 06:12:34 PM,MISSION ST/8TH ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",160962872-62 -160974406,89,16038693,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:15:57 PM,04/06/2016 10:16:54 PM,04/06/2016 10:17:02 PM,04/06/2016 10:17:11 PM,04/06/2016 10:19:56 PM,04/06/2016 10:39:36 PM,04/06/2016 10:55:19 PM,Code 2 Transport,04/06/2016 11:24:26 PM,200 Block of SOUTH VAN NESS AV,San Francisco,94103,B02,36,5123,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7688016803298, -122.417713021943)",160974406-89 -141030317,52,14034899,Medical Incident,04/13/2014,04/13/2014,04/13/2014 08:18:06 PM,04/13/2014 08:19:50 PM,04/13/2014 08:20:16 PM,04/13/2014 08:20:33 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Other,04/13/2014 08:22:53 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141030317-52 -152313977,B01,15088313,Structure Fire,08/19/2015,08/19/2015,08/19/2015 10:28:21 PM,08/19/2015 10:29:58 PM,08/19/2015 10:30:21 PM,08/19/2015 10:31:10 PM,08/19/2015 10:33:09 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Fire,08/19/2015 10:45:03 PM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,false,Alarm,1,CHIEF,5,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",152313977-B01 -141190147,AM26,14040120,Medical Incident,04/29/2014,04/29/2014,04/29/2014 10:34:07 AM,04/29/2014 10:34:28 AM,04/29/2014 10:35:12 AM,04/29/2014 10:36:20 AM,04/29/2014 10:41:07 AM,04/29/2014 10:50:34 AM,04/29/2014 11:00:30 AM,Code 2 Transport,04/29/2014 11:30:06 AM,0 Block of TURK ST,SAN FRANCISCO,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",141190147-AM26 -150073308,RC3,15002848,Medical Incident,01/07/2015,01/07/2015,01/07/2015 07:44:27 PM,01/07/2015 07:44:57 PM,01/07/2015 07:49:27 PM,01/07/2015 07:50:51 PM,01/07/2015 07:56:07 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Code 3 Transport,01/07/2015 08:58:39 PM,100 Block of TOPAZ WAY,San Francisco,94131,B06,26,8154,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,8,Glen Park,"(37.7415230498503, -122.436414447656)",150073308-RC3 -141773219,55,14061221,Medical Incident,06/26/2014,06/26/2014,06/26/2014 08:58:09 PM,06/26/2014 09:00:01 PM,06/26/2014 09:00:33 PM,06/26/2014 09:00:45 PM,06/26/2014 09:05:38 PM,06/26/2014 09:33:02 PM,06/26/2014 09:49:42 PM,Code 2 Transport,06/26/2014 10:13:50 PM,1300 Block of JONES ST,San Francisco,94109,B01,41,1466,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",141773219-55 -160940667,KM07,16037163,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:24:04 AM,04/03/2016 05:25:55 AM,04/03/2016 05:26:51 AM,04/03/2016 05:27:19 AM,04/03/2016 05:32:49 AM,04/03/2016 05:38:28 AM,04/03/2016 05:46:08 AM,Code 2 Transport,04/03/2016 06:25:48 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",160940667-KM07 -150561176,E23,15021367,Electrical Hazard,02/25/2015,02/25/2015,02/25/2015 10:10:56 AM,02/25/2015 10:13:43 AM,02/25/2015 10:14:22 AM,02/25/2015 10:15:24 AM,02/25/2015 10:21:49 AM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,Fire,02/25/2015 10:56:53 AM,3600 Block of LAWTON ST,San Francisco,94122,B08,23,7632,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7568033599895, -122.501908526941)",150561176-E23 -150183091,RC1,15007252,Medical Incident,01/18/2015,01/18/2015,01/18/2015 09:12:34 PM,01/18/2015 09:12:34 PM,01/18/2015 09:15:23 PM,01/18/2015 09:15:23 PM,01/18/2015 09:16:14 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,Code 3 Transport,01/18/2015 09:23:08 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,A,E,3,true,Non Life-threatening,1,RESCUE CAPTAIN,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",150183091-RC1 -152143281,E28,15081625,Medical Incident,08/02/2015,08/02/2015,08/02/2015 09:20:27 PM,08/02/2015 09:21:29 PM,08/02/2015 09:22:11 PM,08/02/2015 09:23:24 PM,08/02/2015 09:32:02 PM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Code 2 Transport,08/02/2015 09:36:13 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",152143281-E28 -141130260,AM04,14038172,Medical Incident,04/23/2014,04/23/2014,04/23/2014 02:14:17 PM,04/23/2014 02:14:36 PM,04/23/2014 02:14:55 PM,04/23/2014 02:15:25 PM,04/23/2014 02:54:14 PM,04/23/2014 02:54:19 PM,04/23/2014 02:57:12 PM,Code 2 Transport,04/23/2014 03:13:43 PM,500 Block of LARKIN ST,SAN FRANCISCO,94102,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",141130260-AM04 -160972599,55,16038485,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:10:01 PM,04/06/2016 03:10:26 PM,04/06/2016 03:11:20 PM,04/06/2016 03:11:32 PM,04/06/2016 03:18:40 PM,04/06/2016 03:49:54 PM,04/06/2016 04:12:34 PM,Code 2 Transport,04/06/2016 04:44:32 PM,600 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7798433146326, -122.510504603354)",160972599-55 -151523342,E39,15058045,Medical Incident,06/01/2015,06/01/2015,06/01/2015 08:49:00 PM,06/01/2015 08:49:00 PM,06/01/2015 08:49:15 PM,06/01/2015 08:50:42 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Code 2 Transport,06/01/2015 08:51:32 PM,800 Block of ULLOA ST,San Francisco,94127,B08,39,8619,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7409217122072, -122.466013598224)",151523342-E39 -142173904,88,14075410,Medical Incident,08/05/2014,08/05/2014,08/05/2014 11:28:22 PM,08/05/2014 11:28:22 PM,08/05/2014 11:29:12 PM,08/05/2014 11:29:26 PM,08/05/2014 11:32:31 PM,08/05/2014 11:42:25 PM,08/06/2014 12:02:05 AM,Code 2 Transport,08/06/2014 12:37:19 AM,3600 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7811661910196, -122.458279197581)",142173904-88 -141392180,83,14047704,Medical Incident,05/19/2014,05/19/2014,05/19/2014 03:46:26 PM,05/19/2014 03:47:04 PM,05/19/2014 03:47:52 PM,05/19/2014 03:51:38 PM,05/19/2014 03:58:49 PM,05/19/2014 04:22:42 PM,05/19/2014 04:30:16 PM,Code 3 Transport,05/19/2014 05:28:19 PM,1400 Block of SOMERSET ST,San Francisco,94134,B10,44,6265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.71412193463, -122.402424966987)",141392180-83 -160973659,55,16038618,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:50:07 PM,04/06/2016 06:50:40 PM,04/06/2016 06:51:10 PM,04/06/2016 06:51:37 PM,04/06/2016 06:59:08 PM,04/06/2016 07:18:54 PM,04/06/2016 07:48:38 PM,Code 2 Transport,04/06/2016 08:27:01 PM,600 Block of FELTON ST,San Francisco,94134,B10,42,6342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7283065847283, -122.410990232945)",160973659-55 -141572712,E01,14054181,Medical Incident,06/06/2014,06/06/2014,06/06/2014 06:27:00 PM,06/06/2014 06:30:50 PM,06/06/2014 06:32:40 PM,06/06/2014 06:33:18 PM,06/06/2014 06:35:37 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,No Merit,06/06/2014 06:38:37 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141572712-E01 -150284007,E10,15010970,Alarms,01/28/2015,01/28/2015,01/28/2015 11:22:35 PM,01/28/2015 11:24:17 PM,01/28/2015 11:26:16 PM,01/28/2015 11:27:44 PM,01/28/2015 11:30:38 PM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Fire,01/29/2015 12:28:14 AM,2100 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Alarm,1,ENGINE,1,5,5,Japantown,"(37.7836030526522, -122.438694976295)",150284007-E10 -150550666,62,15021030,Medical Incident,02/24/2015,02/23/2015,02/24/2015 07:55:47 AM,02/24/2015 07:57:00 AM,02/24/2015 07:57:39 AM,02/24/2015 07:57:52 AM,02/24/2015 08:07:51 AM,02/24/2015 08:22:07 AM,02/24/2015 08:49:13 AM,Code 2 Transport,02/24/2015 09:07:09 AM,2900 Block of GRIFFITH ST,San Francisco,94124,B10,17,6642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7165268542588, -122.389583429416)",150550666-62 -160970244,64,16038264,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:39:48 AM,04/06/2016 02:40:29 AM,04/06/2016 02:42:35 AM,04/06/2016 02:42:35 AM,04/06/2016 02:43:55 AM,04/06/2016 02:53:24 AM,04/06/2016 03:02:54 AM,Code 2 Transport,04/06/2016 04:00:32 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160970244-64 -160971333,67,16038362,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:26:58 AM,04/06/2016 10:26:58 AM,04/06/2016 10:27:21 AM,04/06/2016 10:27:26 AM,04/06/2016 10:33:35 AM,04/06/2016 10:42:34 AM,04/06/2016 11:02:25 AM,Code 2 Transport,04/06/2016 11:05:55 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160971333-67 -160931949,KM02,16036889,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:05:28 PM,04/02/2016 02:06:38 PM,04/02/2016 02:29:43 PM,04/02/2016 02:29:43 PM,04/02/2016 02:38:43 PM,04/02/2016 02:47:11 PM,04/02/2016 03:09:14 PM,Code 2 Transport,04/02/2016 03:32:44 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7658666581108, -122.419678114931)",160931949-KM02 -160974487,63,16038703,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:36:19 PM,04/06/2016 10:36:19 PM,04/06/2016 10:36:41 PM,04/06/2016 10:36:53 PM,04/06/2016 10:47:17 PM,04/06/2016 11:16:45 PM,04/06/2016 11:41:21 PM,Code 2 Transport,04/07/2016 12:21:09 AM,200 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",160974487-63 -150061173,E24,15002219,Medical Incident,01/06/2015,01/06/2015,01/06/2015 10:24:48 AM,01/06/2015 10:26:57 AM,01/06/2015 10:28:11 AM,01/06/2015 10:28:39 AM,01/06/2015 10:34:18 AM,04/25/2016 01:13:00 PM,04/25/2016 01:13:00 PM,Code 2 Transport,01/06/2015 11:11:30 AM,500 Block of ALVARADO ST,San Francisco,94114,B06,24,5466,2,2,2,false,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7538112613871, -122.433213686451)",150061173-E24 -142501182,E21,14087138,Medical Incident,09/07/2014,09/07/2014,09/07/2014 10:06:28 AM,09/07/2014 10:07:18 AM,09/07/2014 10:07:34 AM,09/07/2014 10:08:57 AM,09/07/2014 10:11:12 AM,04/25/2016 01:15:14 PM,04/25/2016 01:15:14 PM,Code 2 Transport,09/07/2014 10:19:16 AM,HAYES ST/SHRADER ST,San Francisco,94117,B05,21,4543,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7731061328555, -122.452623843038)",142501182-E21 -152951959,E43,15113368,Medical Incident,10/22/2015,10/22/2015,10/22/2015 01:41:59 PM,10/22/2015 01:43:49 PM,10/22/2015 01:44:12 PM,10/22/2015 01:45:37 PM,10/22/2015 01:46:54 PM,04/25/2016 01:07:38 PM,04/25/2016 01:07:38 PM,Code 2 Transport,10/22/2015 01:54:29 PM,400 Block of ITALY AVE,San Francisco,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7168091113163, -122.435895554038)",152951959-E43 -152311178,RC1,15088058,Traffic Collision,08/19/2015,08/19/2015,08/19/2015 10:09:29 AM,08/19/2015 10:11:07 AM,08/19/2015 10:11:17 AM,08/19/2015 10:13:29 AM,08/19/2015 10:14:27 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Patient Declined Transport,08/19/2015 10:14:33 AM,TREAT AV/17TH ST,San Francisco,94110,B02,7,5245,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,9,Mission,"(37.76382320884, -122.41358757035)",152311178-RC1 -141272172,KM12,14043149,Medical Incident,05/07/2014,05/07/2014,05/07/2014 12:33:53 PM,05/07/2014 12:35:03 PM,05/07/2014 12:36:31 PM,05/07/2014 12:37:16 PM,05/07/2014 12:42:43 PM,05/07/2014 12:58:21 PM,05/07/2014 01:15:16 PM,Code 2 Transport,05/07/2014 01:50:34 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",141272172-KM12 -151103194,E12,15041749,Medical Incident,04/20/2015,04/20/2015,04/20/2015 07:02:52 PM,04/20/2015 07:03:44 PM,04/20/2015 07:04:17 PM,04/20/2015 07:04:56 PM,04/20/2015 07:07:05 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,Unable to Locate,04/20/2015 07:30:49 PM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",151103194-E12 -141842938,E13,14063800,Alarms,07/03/2014,07/03/2014,07/03/2014 07:24:58 PM,07/03/2014 07:26:02 PM,07/03/2014 07:27:40 PM,07/03/2014 07:28:38 PM,07/03/2014 07:31:52 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Fire,07/03/2014 07:35:43 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7904631779771, -122.405941469147)",141842938-E13 -152101224,83,15079959,Medical Incident,07/29/2015,07/29/2015,07/29/2015 10:45:05 AM,07/29/2015 10:45:05 AM,07/29/2015 10:45:18 AM,07/29/2015 10:45:31 AM,07/29/2015 10:48:55 AM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Patient Declined Transport,07/29/2015 11:01:21 AM,700 Block of POLK ST,San Francisco,94109,B02,3,3115,A,E,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838069204559, -122.41925042197)",152101224-83 -152710439,B08,15103691,Alarms,09/28/2015,09/27/2015,09/28/2015 05:05:54 AM,09/28/2015 05:06:56 AM,09/28/2015 05:07:05 AM,09/28/2015 05:08:40 AM,09/28/2015 05:12:06 AM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Fire,09/28/2015 05:22:38 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,false,Alarm,1,CHIEF,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",152710439-B08 -160980435,83,16038774,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:07:56 AM,04/07/2016 04:10:06 AM,04/07/2016 04:14:31 AM,04/07/2016 04:14:31 AM,04/07/2016 04:30:21 AM,04/07/2016 04:47:43 AM,04/07/2016 05:12:06 AM,Code 2 Transport,04/07/2016 05:45:39 AM,800 Block of NOE ST,San Francisco,94114,B06,24,5466,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7550209479479, -122.43228464622)",160980435-83 -150913830,KM07,15034782,Medical Incident,04/01/2015,04/01/2015,04/01/2015 10:27:18 PM,04/01/2015 10:27:18 PM,04/01/2015 10:28:18 PM,04/01/2015 10:28:54 PM,04/01/2015 10:33:23 PM,04/01/2015 10:45:15 PM,04/01/2015 10:52:33 PM,Code 2 Transport,04/01/2015 11:37:40 PM,2500 Block of VAN NESS AVE,San Francisco,94123,B04,16,3234,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7989967483908, -122.424247224738)",150913830-KM07 -160980854,83,16038814,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 08:11:49 AM,04/07/2016 08:13:40 AM,04/07/2016 08:14:32 AM,04/07/2016 08:14:55 AM,04/07/2016 08:38:11 AM,04/07/2016 08:48:03 AM,04/07/2016 09:18:07 AM,Code 2 Transport,04/07/2016 10:03:06 AM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,2,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",160980854-83 -151414035,D2,15053773,Structure Fire,05/21/2015,05/21/2015,05/21/2015 10:29:58 PM,05/21/2015 10:30:38 PM,05/21/2015 10:31:03 PM,05/21/2015 10:32:30 PM,05/21/2015 10:42:41 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 11:14:05 PM,1600 Block of 48TH AVE,San Francisco,94122,B08,23,7724,3,3,3,false,Fire,1,CHIEF,9,8,4,Sunset/Parkside,"(37.7556706107482, -122.507670205519)",151414035-D2 -161003234,AM14,16039947,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:39:34 PM,04/09/2016 09:39:50 PM,04/09/2016 09:40:44 PM,04/09/2016 09:41:29 PM,04/09/2016 09:42:07 PM,04/09/2016 10:06:35 PM,04/09/2016 10:15:08 PM,Code 3 Transport,04/09/2016 11:06:16 PM,19TH ST/MISSION ST,San Francisco,94110,B06,7,5433,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",161003234-AM14 -143022891,KM04,14106715,Medical Incident,10/29/2014,10/29/2014,10/29/2014 06:42:08 PM,10/29/2014 06:42:38 PM,10/29/2014 06:43:22 PM,10/29/2014 06:44:09 PM,10/29/2014 06:52:46 PM,10/29/2014 07:04:51 PM,10/29/2014 07:07:55 PM,Code 3 Transport,10/29/2014 07:48:08 PM,0 Block of CHURCH ST,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",143022891-KM04 -150650080,E11,15024685,Medical Incident,03/06/2015,03/05/2015,03/06/2015 12:33:34 AM,03/06/2015 12:35:14 AM,03/06/2015 12:35:33 AM,03/06/2015 12:37:12 AM,03/06/2015 12:38:44 AM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Code 2 Transport,03/06/2015 12:54:59 AM,3200 Block of MISSION ST,San Francisco,94110,B06,11,5624,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",150650080-E11 -151973024,T01,15075238,Structure Fire,07/16/2015,07/16/2015,07/16/2015 06:58:57 PM,07/16/2015 06:58:57 PM,07/16/2015 06:59:09 PM,07/16/2015 07:00:52 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,Fire,07/16/2015 07:02:49 PM,6TH ST/HARRISON ST,San Francisco,94103,B03,8,2254,3,3,3,true,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7772727011897, -122.404070256526)",151973024-T01 -160931354,54,16036818,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:14:56 AM,04/02/2016 11:17:44 AM,04/02/2016 11:37:16 AM,04/02/2016 11:37:26 AM,04/02/2016 11:46:31 AM,04/02/2016 12:03:54 PM,04/02/2016 12:22:09 PM,Code 2 Transport,04/02/2016 12:48:46 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160931354-54 -143440120,82,14122180,Medical Incident,12/10/2014,12/09/2014,12/10/2014 12:59:30 AM,12/10/2014 01:01:37 AM,12/10/2014 01:01:51 AM,12/10/2014 01:02:22 AM,12/10/2014 01:05:56 AM,12/10/2014 01:20:47 AM,12/10/2014 01:42:27 AM,Code 2 Transport,12/10/2014 02:09:39 AM,OCEAN AV/PLYMOUTH AV,San Francisco,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",143440120-82 -142042341,E23,14070664,Medical Incident,07/23/2014,07/23/2014,07/23/2014 02:58:54 PM,07/23/2014 02:59:33 PM,07/23/2014 03:00:09 PM,07/23/2014 03:02:18 PM,07/23/2014 03:02:18 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Code 2 Transport,07/23/2014 03:19:26 PM,1900 Block of 47TH AVE,San Francisco,94116,B08,23,7715,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7501226485047, -122.506214055721)",142042341-E23 -151063656,E48,15040235,Vehicle Fire,04/16/2015,04/16/2015,04/16/2015 08:42:13 PM,04/16/2015 08:43:45 PM,04/16/2015 08:44:08 PM,04/16/2015 08:45:24 PM,04/16/2015 08:52:54 PM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,Unable to Locate,04/16/2015 08:58:47 PM,0 Block of 5TH ST,San Francisco,94103,B03,48,2951,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7831860531538, -122.407149119811)",151063656-E48 -142854005,T10,14100640,Alarms,10/12/2014,10/12/2014,10/12/2014 10:38:23 PM,10/12/2014 10:41:10 PM,10/12/2014 10:43:02 PM,10/12/2014 10:44:34 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/12/2014 10:48:53 PM,3600 Block of FILLMORE ST,San Francisco,94123,B04,16,3556,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8040008898331, -122.436811214512)",142854005-T10 -152233624,58,15085142,Medical Incident,08/11/2015,08/11/2015,08/11/2015 08:23:45 PM,08/11/2015 08:24:05 PM,08/11/2015 08:24:15 PM,08/11/2015 08:24:29 PM,08/11/2015 08:42:52 PM,08/11/2015 08:52:44 PM,08/11/2015 09:13:28 PM,Code 2 Transport,08/11/2015 10:06:32 PM,GREAT HY/MORAGA ST,San Francisco,94122,B08,23,7724,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7546917355168, -122.508679283459)",152233624-58 -141140139,87,14038438,Medical Incident,04/24/2014,04/24/2014,04/24/2014 10:22:26 AM,04/24/2014 10:23:07 AM,04/24/2014 10:26:09 AM,04/24/2014 10:26:09 AM,04/24/2014 10:33:55 AM,04/24/2014 10:55:06 AM,04/24/2014 11:07:00 AM,Code 2 Transport,04/24/2014 11:51:16 AM,400 Block of TURK ST,SAN FRANCISCO,94102,B02,3,1554,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",141140139-87 -143160227,70,14111780,Medical Incident,11/12/2014,11/11/2014,11/12/2014 02:51:15 AM,11/12/2014 02:53:19 AM,11/12/2014 03:53:11 AM,11/12/2014 03:53:11 AM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Code 2 Transport,11/12/2014 03:57:19 AM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,5,Western Addition,"(37.7815345081004, -122.428135307501)",143160227-70 -152881191,RC2,15110599,Medical Incident,10/15/2015,10/15/2015,10/15/2015 10:01:16 AM,10/15/2015 10:02:02 AM,10/15/2015 10:03:07 AM,10/15/2015 10:03:23 AM,10/15/2015 10:07:34 AM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Code 2 Transport,10/15/2015 10:16:41 AM,400 Block of 40TH AVE,San Francisco,94121,B07,34,7256,2,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7803103617533, -122.500942876496)",152881191-RC2 -143261427,T01,14115465,Alarms,11/22/2014,11/22/2014,11/22/2014 11:20:16 AM,11/22/2014 11:21:34 AM,11/22/2014 11:23:53 AM,11/22/2014 11:23:53 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Fire,11/22/2014 11:28:15 AM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,5,3,6,South of Market,"(37.7810688918781, -122.407387172098)",143261427-T01 -160971797,84,16038403,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:14:30 PM,04/06/2016 12:16:49 PM,04/06/2016 12:17:14 PM,04/06/2016 12:17:39 PM,04/06/2016 12:37:37 PM,04/06/2016 01:05:54 PM,04/06/2016 01:29:40 PM,Code 2 Transport,04/06/2016 02:29:18 PM,300 Block of ARBALLO DR,San Francisco,94132,B08,19,8582,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",160971797-84 -151152212,E41,15043513,Structure Fire,04/25/2015,04/25/2015,04/25/2015 03:37:01 PM,04/25/2015 03:39:22 PM,04/25/2015 03:39:36 PM,04/25/2015 03:40:45 PM,04/25/2015 03:42:17 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Fire,04/25/2015 03:51:08 PM,HYDE ST/PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",151152212-E41 -153431492,57,15131977,Medical Incident,12/09/2015,12/09/2015,12/09/2015 11:19:56 AM,12/09/2015 11:21:11 AM,12/09/2015 11:22:12 AM,12/09/2015 11:25:47 AM,12/09/2015 11:54:36 AM,12/09/2015 11:54:37 AM,12/09/2015 12:01:26 PM,Code 2 Transport,12/09/2015 01:16:47 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",153431492-57 -152220394,AM24,15084467,Medical Incident,08/10/2015,08/09/2015,08/10/2015 05:07:25 AM,08/10/2015 05:07:25 AM,08/10/2015 05:07:49 AM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Cancelled,08/10/2015 05:08:50 AM,1700 Block of LINCOLN WAY,San Francisco,94122,B08,22,7367,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,4,Inner Sunset,"(37.7653663960044, -122.476737311837)",152220394-AM24 -151101572,RC3,15041598,Medical Incident,04/20/2015,04/20/2015,04/20/2015 11:59:06 AM,04/20/2015 11:59:54 AM,04/20/2015 12:03:19 PM,04/20/2015 12:04:17 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,04/25/2016 01:11:03 PM,Code 2 Transport,04/20/2015 12:10:06 PM,2900 Block of GREAT HWY,San Francisco,94132,B08,19,8712,2,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,3,8,7,Lakeshore,"(37.7297644793355, -122.506576531064)",151101572-RC3 -151812040,B01,15069124,Medical Incident,06/30/2015,06/30/2015,06/30/2015 02:43:52 PM,06/30/2015 02:43:52 PM,06/30/2015 02:44:01 PM,06/30/2015 02:44:21 PM,06/30/2015 02:58:21 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,Fire,06/30/2015 03:13:07 PM,WEBSTER ST/EDDY ST,San Francisco,94115,B04,5,3515,2,2,2,false,Non Life-threatening,1,CHIEF,2,5,5,Western Addition,"(37.7816455834376, -122.430609199134)",151812040-B01 -153441328,E13,15132376,Traffic Collision,12/10/2015,12/10/2015,12/10/2015 10:38:24 AM,12/10/2015 10:39:39 AM,12/10/2015 10:40:44 AM,12/10/2015 10:40:58 AM,12/10/2015 10:46:00 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Cancelled,12/10/2015 10:56:41 AM,900 Block of THE EMBARCADERO,San Francisco,94111,B01,13,923,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",153441328-E13 -160942104,54,16037287,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:26:48 PM,04/03/2016 02:26:48 PM,04/03/2016 02:27:13 PM,04/03/2016 02:27:27 PM,04/03/2016 02:48:15 PM,04/03/2016 03:12:00 PM,04/03/2016 03:38:12 PM,Code 2 Transport,04/03/2016 04:19:45 PM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160942104-54 -153262781,RS2,15125603,Structure Fire,11/22/2015,11/22/2015,11/22/2015 06:25:04 PM,11/22/2015 06:25:57 PM,11/22/2015 06:26:23 PM,11/22/2015 06:27:45 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,Fire,11/22/2015 06:28:14 PM,3200 Block of 18TH ST,San Francisco,94110,B02,7,5424,3,3,3,false,Alarm,1,RESCUE SQUAD,11,2,9,Mission,"(37.7621213524354, -122.415543548355)",153262781-RS2 -160930627,65,16036731,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:50:36 AM,04/02/2016 06:51:31 AM,04/02/2016 06:52:44 AM,04/02/2016 06:52:51 AM,04/02/2016 06:57:28 AM,04/02/2016 07:22:08 AM,04/02/2016 07:45:18 AM,Code 2 Transport,04/02/2016 08:07:07 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160930627-65 -161001504,KM09,16039746,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:23:19 PM,04/09/2016 12:23:36 PM,04/09/2016 12:23:49 PM,04/09/2016 12:24:38 PM,04/09/2016 12:28:26 PM,04/09/2016 12:55:17 PM,04/09/2016 01:01:32 PM,Code 3 Transport,04/09/2016 01:50:59 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",161001504-KM09 -142670650,E35,14093388,Outside Fire,09/24/2014,09/23/2014,09/24/2014 07:08:43 AM,09/24/2014 07:10:40 AM,09/24/2014 07:10:56 AM,09/24/2014 07:12:32 AM,09/24/2014 07:15:05 AM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/24/2014 09:51:23 AM,200 Block of MAIN ST,San Francisco,94105,B03,35,2117,3,3,3,true,Fire,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7900295956883, -122.392583899031)",142670650-E35 -153341342,KM11,15128378,Medical Incident,11/30/2015,11/30/2015,11/30/2015 11:33:00 AM,11/30/2015 11:33:39 AM,11/30/2015 11:33:52 AM,11/30/2015 11:34:31 AM,11/30/2015 11:40:23 AM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,No Merit,11/30/2015 11:42:53 AM,200 Block of KING ST,San Francisco,94107,B03,8,2171,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",153341342-KM11 -152312457,E02,15088184,Traffic Collision,08/19/2015,08/19/2015,08/19/2015 03:31:58 PM,08/19/2015 03:32:38 PM,08/19/2015 03:32:53 PM,08/19/2015 03:34:26 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Code 3 Transport,08/19/2015 03:40:47 PM,1400 Block of PACIFIC AVE,San Francisco,94109,B01,41,1565,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Russian Hill,"(37.7954660831968, -122.418715545845)",152312457-E02 -143523474,E34,14125905,Medical Incident,12/18/2014,12/18/2014,12/18/2014 07:52:43 PM,12/18/2014 07:54:19 PM,12/18/2014 07:57:13 PM,12/18/2014 07:58:01 PM,12/18/2014 07:59:11 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Code 2 Transport,12/18/2014 08:18:29 PM,0 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7264,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7796028187333, -122.503522163162)",143523474-E34 -142772591,AR1,14097460,Structure Fire,10/04/2014,10/04/2014,10/04/2014 04:02:25 PM,10/04/2014 04:02:59 PM,10/04/2014 04:28:06 PM,10/04/2014 04:28:06 PM,10/04/2014 04:38:34 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Fire,10/04/2014 04:58:55 PM,1500 Block of WALLACE AVE,San Francisco,94124,B10,17,6546,3,3,3,false,Fire,1,INVESTIGATION,8,10,10,Bayview Hunters Point,"(37.7269904434139, -122.390132474192)",142772591-AR1 -160930139,79,16036683,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:50:41 AM,04/02/2016 12:52:36 AM,04/02/2016 12:52:57 AM,04/02/2016 12:53:08 AM,04/02/2016 12:59:54 AM,04/02/2016 01:08:45 AM,04/02/2016 01:36:11 AM,Code 2 Transport,04/02/2016 01:53:47 AM,100 Block of 28TH ST,San Francisco,94131,B06,11,5562,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7454218861486, -122.425685856124)",160930139-79 -151812905,86,15069216,Medical Incident,06/30/2015,06/30/2015,06/30/2015 06:29:33 PM,06/30/2015 06:29:33 PM,06/30/2015 06:29:46 PM,06/30/2015 06:29:54 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,No Merit,06/30/2015 06:37:40 PM,19TH AV/JUDAH ST,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7616993757061, -122.477010885827)",151812905-86 -152421029,FB1,15092245,Outside Fire,08/30/2015,08/30/2015,08/30/2015 08:54:33 AM,08/30/2015 08:54:33 AM,08/30/2015 08:54:57 AM,08/30/2015 08:56:02 AM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 08:59:08 AM,400 Block of THE EMBARCADERO,San Francisco,94111,B01,13,905,3,3,3,false,Alarm,1,SUPPORT,5,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",152421029-FB1 -142293681,RS1,14079744,Structure Fire,08/17/2014,08/17/2014,08/17/2014 10:45:21 PM,08/17/2014 10:46:34 PM,08/17/2014 10:47:01 PM,08/17/2014 10:48:09 PM,08/17/2014 10:53:40 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Fire,08/17/2014 10:55:06 PM,1100 Block of BROADWAY,San Francisco,94109,B01,41,1534,3,3,3,false,Alarm,1,RESCUE SQUAD,6,1,3,Nob Hill,"(37.7967543439705, -122.416027111494)",142293681-RS1 -141913051,E07,14066315,Medical Incident,07/10/2014,07/10/2014,07/10/2014 07:21:52 PM,07/10/2014 07:23:17 PM,07/10/2014 07:24:12 PM,07/10/2014 07:24:54 PM,07/10/2014 07:27:38 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Other,07/10/2014 07:53:02 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",141913051-E07 -141993733,RC1,14069086,Medical Incident,07/18/2014,07/18/2014,07/18/2014 11:20:24 PM,07/18/2014 11:22:54 PM,07/18/2014 11:23:43 PM,07/18/2014 11:26:27 PM,07/18/2014 11:28:52 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,No Merit,07/18/2014 11:38:00 PM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",141993733-RC1 -151451634,52,15055164,Medical Incident,05/25/2015,05/25/2015,05/25/2015 01:32:44 PM,05/25/2015 01:33:57 PM,05/25/2015 01:35:23 PM,05/25/2015 01:35:36 PM,05/25/2015 01:44:18 PM,05/25/2015 01:56:55 PM,05/25/2015 02:03:33 PM,Code 2 Transport,05/25/2015 02:33:53 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",151451634-52 -153251267,E01,15125065,Traffic Collision,11/21/2015,11/21/2015,11/21/2015 10:31:56 AM,11/21/2015 10:32:29 AM,11/21/2015 10:36:40 AM,11/21/2015 10:36:40 AM,11/21/2015 10:38:11 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Code 3 Transport,11/21/2015 11:19:16 AM,NEW MONTGOMERY ST/JESSIE ST,San Francisco,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7878896127727, -122.401043044615)",153251267-E01 -161002192,68,16039827,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:11:42 PM,04/09/2016 04:12:42 PM,04/09/2016 04:13:01 PM,04/09/2016 04:13:23 PM,04/09/2016 04:19:45 PM,04/09/2016 04:29:01 PM,04/09/2016 04:37:50 PM,Code 2 Transport,04/09/2016 05:09:51 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",161002192-68 -160931610,75,16036843,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:27:55 PM,04/02/2016 12:28:25 PM,04/02/2016 12:29:15 PM,04/02/2016 12:29:24 PM,04/02/2016 12:47:04 PM,04/02/2016 12:56:07 PM,04/02/2016 01:01:32 PM,Code 3 Transport,04/02/2016 02:07:22 PM,0 Block of SCOTIA AVE,San Francisco,94124,B10,42,6363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7337135883349, -122.401319078602)",160931610-75 -143263091,75,14115616,Medical Incident,11/22/2014,11/22/2014,11/22/2014 06:47:25 PM,11/22/2014 06:49:20 PM,11/22/2014 06:50:20 PM,11/22/2014 06:51:09 PM,11/22/2014 06:57:30 PM,11/22/2014 07:21:25 PM,11/22/2014 07:29:42 PM,Code 2 Transport,11/22/2014 08:17:08 PM,1900 Block of UNION ST,San Francisco,94123,B04,16,3443,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7977145786189, -122.431009192575)",143263091-75 -142810382,B08,14098721,Alarms,10/08/2014,10/07/2014,10/08/2014 05:08:40 AM,10/08/2014 05:10:49 AM,10/08/2014 05:12:48 AM,10/08/2014 05:14:24 AM,10/08/2014 05:16:52 AM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 09:35:28 AM,1200 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,3,3,3,false,Alarm,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",142810382-B08 -142820255,55,14099116,Medical Incident,10/09/2014,10/08/2014,10/09/2014 02:31:06 AM,10/09/2014 02:32:37 AM,10/09/2014 02:33:11 AM,10/09/2014 02:33:50 AM,10/09/2014 02:42:08 AM,10/09/2014 02:58:57 AM,10/09/2014 03:25:49 AM,Code 2 Transport,10/09/2014 03:42:32 AM,SAN BRUNO AV/MANSELL ST,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7215343997982, -122.401074132147)",142820255-55 -152681210,E01,15102626,Alarms,09/25/2015,09/25/2015,09/25/2015 10:10:56 AM,09/25/2015 10:12:11 AM,09/25/2015 10:12:47 AM,09/25/2015 10:14:39 AM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 10:24:31 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,3,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",152681210-E01 -142431824,E36,14084656,Medical Incident,08/31/2014,08/31/2014,08/31/2014 02:12:09 PM,08/31/2014 02:12:34 PM,08/31/2014 02:12:55 PM,08/31/2014 02:14:26 PM,08/31/2014 02:21:10 PM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Code 2 Transport,08/31/2014 02:21:42 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",142431824-E36 -153060866,KM13,15117525,Medical Incident,11/02/2015,11/02/2015,11/02/2015 08:47:53 AM,11/02/2015 08:49:43 AM,11/02/2015 08:51:14 AM,11/02/2015 08:51:14 AM,11/02/2015 09:12:09 AM,11/02/2015 09:41:47 AM,11/02/2015 10:11:05 AM,Code 2 Transport,11/02/2015 10:52:21 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",153060866-KM13 -143433143,60,14122055,Medical Incident,12/09/2014,12/09/2014,12/09/2014 05:47:20 PM,12/09/2014 05:47:20 PM,12/09/2014 05:47:20 PM,12/09/2014 05:47:20 PM,12/09/2014 05:47:20 PM,12/09/2014 05:53:03 PM,12/09/2014 06:20:02 PM,Code 2 Transport,12/09/2014 06:35:40 PM,0 Block of 6TH ST,San Francisco,94103,B99,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",143433143-60 -142220510,84,14076948,Medical Incident,08/10/2014,08/09/2014,08/10/2014 03:59:05 AM,08/10/2014 04:00:29 AM,08/10/2014 04:00:46 AM,08/10/2014 04:01:35 AM,08/10/2014 04:06:04 AM,08/10/2014 05:18:43 AM,08/10/2014 05:56:03 AM,Code 2 Transport,08/10/2014 06:29:54 AM,2800 Block of ANZA ST,San Francisco,94121,B07,14,7165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7783778138153, -122.47869953508)",142220510-84 -160931560,71,16036835,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:13:48 PM,04/02/2016 12:14:42 PM,04/02/2016 12:15:26 PM,04/02/2016 12:16:26 PM,04/02/2016 12:19:25 PM,04/02/2016 12:36:31 PM,04/02/2016 12:47:04 PM,Code 2 Transport,04/02/2016 01:08:20 PM,3100 Block of SACRAMENTO ST,San Francisco,94115,B04,10,4264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7884127178988, -122.444753541117)",160931560-71 -150451175,E23,15017438,Medical Incident,02/14/2015,02/14/2015,02/14/2015 09:54:38 AM,02/14/2015 09:56:57 AM,02/14/2015 09:57:13 AM,02/14/2015 09:57:35 AM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,No Merit,02/14/2015 10:06:06 AM,40TH AV/JUDAH ST,San Francisco,94122,B08,23,7626,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7607086067608, -122.499496634076)",150451175-E23 -152190120,B03,15083228,Alarms,08/07/2015,08/06/2015,08/07/2015 12:42:54 AM,08/07/2015 12:44:14 AM,08/07/2015 12:44:22 AM,08/07/2015 12:46:12 AM,08/07/2015 12:49:33 AM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Fire,08/07/2015 12:50:52 AM,300 Block of SPEAR ST,San Francisco,94105,B03,35,2113,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7894150834446, -122.390249078414)",152190120-B03 -143112341,B07,14110182,Structure Fire,11/07/2014,11/07/2014,11/07/2014 03:38:21 PM,11/07/2014 03:39:12 PM,11/07/2014 03:39:41 PM,11/07/2014 03:40:22 PM,11/07/2014 03:42:09 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Fire,11/07/2014 03:45:51 PM,300 Block of 5TH AVE,San Francisco,94118,B07,31,7124,3,3,3,false,Alarm,1,CHIEF,1,7,1,Inner Richmond,"(37.7820328555271, -122.463211509933)",143112341-B07 -160982130,85,16038941,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:55:56 PM,04/07/2016 01:56:12 PM,04/07/2016 01:56:59 PM,04/07/2016 01:57:07 PM,04/07/2016 02:00:20 PM,04/07/2016 02:14:31 PM,04/07/2016 02:40:58 PM,Code 3 Transport,04/07/2016 03:16:58 PM,1300 Block of 25TH AVE,San Francisco,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7623510063353, -122.483419246846)",160982130-85 -161001129,55,16039700,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:19:01 AM,04/09/2016 10:19:12 AM,04/09/2016 10:21:42 AM,04/09/2016 10:21:42 AM,04/09/2016 10:21:42 AM,04/09/2016 10:33:20 AM,04/09/2016 11:01:31 AM,Code 2 Transport,04/09/2016 11:54:13 AM,BUSH ST/LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",161001129-55 -161000172,60,16039574,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:08:12 AM,04/09/2016 01:08:12 AM,04/09/2016 01:08:27 AM,04/09/2016 01:08:37 AM,04/09/2016 01:12:32 AM,04/09/2016 01:28:29 AM,04/09/2016 01:46:08 AM,Code 2 Transport,04/09/2016 02:36:10 AM,4200 Block of FOLSOM ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7339951018567, -122.413826799773)",161000172-60 -160973458,64,16038590,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:05:05 PM,04/06/2016 06:06:49 PM,04/06/2016 06:07:33 PM,04/06/2016 06:07:58 PM,04/06/2016 06:15:23 PM,04/06/2016 06:27:43 PM,04/06/2016 06:58:07 PM,Code 2 Transport,04/06/2016 07:27:02 PM,CARL ST/HILLWAY AV,San Francisco,94117,B05,12,5145,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7649324615306, -122.456759007543)",160973458-64 -151480031,E21,15056165,Medical Incident,05/28/2015,05/27/2015,05/28/2015 12:15:53 AM,05/28/2015 12:18:21 AM,05/28/2015 12:19:15 AM,05/28/2015 12:20:41 AM,05/28/2015 12:23:25 AM,04/25/2016 01:10:21 PM,04/25/2016 01:10:21 PM,Code 2 Transport,05/28/2015 01:30:53 AM,COLE ST/FELL ST,San Francisco,94117,B05,21,4534,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Golden Gate Park,"(37.7723676628179, -122.450786707128)",151480031-E21 -151003704,E02,15038040,Structure Fire,04/10/2015,04/10/2015,04/10/2015 10:20:35 PM,04/10/2015 10:21:05 PM,04/10/2015 10:22:05 PM,04/10/2015 10:22:43 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Fire,04/10/2015 10:40:16 PM,500 Block of SUTTER ST,San Francisco,94108,B01,3,1412,3,3,3,true,Fire,1,ENGINE,10,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",151003704-E02 -150392131,RC3,15015221,Medical Incident,02/08/2015,02/08/2015,02/08/2015 02:48:22 PM,02/08/2015 02:48:33 PM,02/08/2015 02:50:18 PM,02/08/2015 02:51:58 PM,02/08/2015 02:52:59 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Code 2 Transport,02/08/2015 03:10:42 PM,300 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5452,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,8,Castro/Upper Market,"(37.7586437839521, -122.431292238826)",150392131-RC3 -160970127,AM24,16038248,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:59:25 AM,04/06/2016 01:01:38 AM,04/06/2016 01:01:44 AM,04/06/2016 01:02:06 AM,04/06/2016 01:07:23 AM,04/06/2016 01:37:18 AM,04/06/2016 01:51:11 AM,Code 2 Transport,04/06/2016 02:12:06 AM,3100 Block of 21ST ST,San Francisco,94110,B06,7,5455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7570790190504, -122.417260520587)",160970127-AM24 -152562099,83,15097947,Medical Incident,09/13/2015,09/13/2015,09/13/2015 02:58:56 PM,09/13/2015 02:59:37 PM,09/13/2015 02:59:51 PM,09/13/2015 03:00:01 PM,09/13/2015 03:04:14 PM,09/13/2015 03:15:47 PM,09/13/2015 03:25:43 PM,Code 2 Transport,09/13/2015 04:07:15 PM,12TH AV/JUDAH ST,San Francisco,94122,B08,22,7345,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,5,Inner Sunset,"(37.7620341085148, -122.469391825088)",152562099-83 -152953875,88,15113550,Medical Incident,10/22/2015,10/22/2015,10/22/2015 11:08:48 PM,10/22/2015 11:09:42 PM,10/22/2015 11:10:10 PM,10/22/2015 11:10:19 PM,10/22/2015 11:13:44 PM,10/22/2015 11:20:28 PM,10/22/2015 11:27:08 PM,Code 2 Transport,10/22/2015 11:46:52 PM,1300 Block of POLK ST,San Francisco,94109,B04,3,3122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",152953875-88 -143292483,E12,14116724,Medical Incident,11/25/2014,11/25/2014,11/25/2014 04:00:46 PM,11/25/2014 04:01:13 PM,11/25/2014 04:03:11 PM,11/25/2014 04:04:36 PM,11/25/2014 04:08:50 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Against Medical Advice,11/25/2014 04:28:36 PM,1400 Block of 24TH AVE,San Francisco,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7605270219002, -122.48235570811)",143292483-E12 -160962959,61,16038111,Traffic Collision,04/05/2016,04/05/2016,04/05/2016 05:22:12 PM,04/05/2016 05:22:37 PM,04/05/2016 05:22:56 PM,04/05/2016 05:23:08 PM,04/05/2016 05:30:20 PM,04/05/2016 05:57:43 PM,04/05/2016 06:20:17 PM,Code 2 Transport,04/05/2016 06:36:08 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160962959-61 -142893629,E35,14102017,Medical Incident,10/16/2014,10/16/2014,10/16/2014 08:54:14 PM,10/16/2014 08:56:26 PM,10/16/2014 08:59:23 PM,10/16/2014 09:00:06 PM,10/16/2014 09:02:00 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/16/2014 09:16:25 PM,300 Block of HARRISON ST,San Francisco,94105,B03,35,2123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7870714019354, -122.391567493465)",142893629-E35 -151853797,E11,15070769,Medical Incident,07/04/2015,07/04/2015,07/04/2015 10:02:44 PM,07/04/2015 10:03:26 PM,07/04/2015 10:04:04 PM,07/04/2015 10:05:00 PM,07/04/2015 10:09:19 PM,04/25/2016 01:09:39 PM,04/25/2016 01:09:39 PM,Code 2 Transport,07/04/2015 10:32:41 PM,200 Block of ELSIE ST,San Francisco,94110,B06,32,5652,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7404260062385, -122.419364252727)",151853797-E11 -153091565,T02,15118719,Administrative,11/05/2015,11/05/2015,11/05/2015 11:35:49 AM,11/05/2015 11:36:09 AM,11/05/2015 11:36:54 AM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,Fire,11/05/2015 11:37:24 AM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",153091565-T02 -152062682,74,15078585,Traffic Collision,07/25/2015,07/25/2015,07/25/2015 05:16:32 PM,07/25/2015 05:16:32 PM,07/25/2015 05:16:39 PM,07/25/2015 05:16:51 PM,07/25/2015 05:24:27 PM,07/25/2015 05:37:47 PM,07/25/2015 05:47:45 PM,Code 2 Transport,07/25/2015 06:01:47 PM,4200 Block of MISSION ST,San Francisco,94112,B09,32,6113,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7289192734481, -122.430951550919)",152062682-74 -151591886,E41,15060746,Medical Incident,06/08/2015,06/08/2015,06/08/2015 01:14:54 PM,06/08/2015 01:17:58 PM,06/08/2015 01:30:16 PM,06/08/2015 01:31:41 PM,06/08/2015 01:41:42 PM,04/25/2016 01:10:07 PM,04/25/2016 01:10:07 PM,Patient Declined Transport,06/08/2015 01:42:51 PM,1700 Block of POLK ST,San Francisco,94109,B04,41,3124,2,2,2,false,Non Life-threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7928292738954, -122.421073088422)",151591886-E41 -150101319,E36,15003911,Structure Fire,01/10/2015,01/10/2015,01/10/2015 11:27:25 AM,01/10/2015 11:27:25 AM,01/10/2015 11:27:48 AM,01/10/2015 11:29:17 AM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,Fire,01/10/2015 11:31:25 AM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",150101319-E36 -160930914,88,16036766,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:59:55 AM,04/02/2016 09:01:38 AM,04/02/2016 09:01:45 AM,04/02/2016 09:01:55 AM,04/02/2016 09:08:39 AM,04/02/2016 09:23:34 AM,04/02/2016 09:41:16 AM,Code 2 Transport,04/02/2016 10:09:17 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160930914-88 -142532365,53,14088347,Medical Incident,09/10/2014,09/10/2014,09/10/2014 03:13:16 PM,09/10/2014 03:14:55 PM,09/10/2014 03:15:59 PM,09/10/2014 03:16:08 PM,09/10/2014 03:25:30 PM,09/10/2014 03:50:26 PM,09/10/2014 04:14:28 PM,Code 2 Transport,09/10/2014 04:39:18 PM,100 Block of CAINE AVE,San Francisco,94112,B09,33,8325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7157481523614, -122.451744181527)",142532365-53 -150360381,T15,15013722,Citizen Assist / Service Call,02/05/2015,02/04/2015,02/05/2015 04:49:08 AM,02/05/2015 04:51:02 AM,02/05/2015 04:51:29 AM,02/05/2015 04:55:59 AM,02/05/2015 04:59:23 AM,04/25/2016 01:12:26 PM,04/25/2016 01:12:26 PM,Code 2 Transport,02/05/2015 05:28:58 AM,100 Block of ASHTON AVE,San Francisco,94112,B09,15,8434,3,3,3,true,Alarm,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7208520519158, -122.462190499132)",150360381-T15 -142633260,52,14092153,Medical Incident,09/20/2014,09/20/2014,09/20/2014 08:25:08 PM,09/20/2014 08:30:34 PM,09/20/2014 08:53:44 PM,09/20/2014 08:53:44 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,No Merit,09/20/2014 08:53:52 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",142633260-52 -143571601,AM02,14127752,Medical Incident,12/23/2014,12/23/2014,12/23/2014 12:12:40 PM,12/23/2014 12:12:40 PM,12/23/2014 12:13:01 PM,12/23/2014 12:14:02 PM,12/23/2014 12:25:33 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Cancelled,12/23/2014 12:35:18 PM,JUDAH ST/25TH AV,San Francisco,94122,B08,22,7453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.761417280216, -122.483423100639)",143571601-AM02 -160962026,KM05,16038036,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:42:37 PM,04/05/2016 01:46:17 PM,04/05/2016 01:46:44 PM,04/05/2016 01:47:43 PM,04/05/2016 01:51:10 PM,04/05/2016 02:17:43 PM,04/05/2016 02:44:33 PM,Code 2 Transport,04/05/2016 03:45:06 PM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",160962026-KM05 -151840693,E22,15070147,Medical Incident,07/03/2015,07/02/2015,07/03/2015 07:31:54 AM,07/03/2015 07:31:54 AM,07/03/2015 07:32:19 AM,07/03/2015 07:33:49 AM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Patient Declined Transport,07/03/2015 07:36:39 AM,LINCOLN WY/9TH AV,San Francisco,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",151840693-E22 -160941233,52,16037214,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:09:19 AM,04/03/2016 10:14:40 AM,04/03/2016 10:15:14 AM,04/03/2016 10:15:23 AM,04/03/2016 10:21:36 AM,04/03/2016 11:00:57 AM,04/03/2016 11:15:46 AM,Code 2 Transport,04/03/2016 11:46:42 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160941233-52 -160940143,KM03,16037108,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:47:03 AM,04/03/2016 12:47:03 AM,04/03/2016 01:06:35 AM,04/03/2016 01:07:02 AM,04/03/2016 01:18:52 AM,04/03/2016 01:21:00 AM,04/03/2016 01:40:17 AM,Code 2 Transport,04/03/2016 02:01:12 AM,POWELL ST/ELLIS ST,San Francisco,94102,B03,1,1364,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",160940143-KM03 -151973426,E05,15075270,Medical Incident,07/16/2015,07/16/2015,07/16/2015 08:58:53 PM,07/16/2015 09:00:45 PM,07/16/2015 09:01:15 PM,07/16/2015 09:02:33 PM,07/16/2015 09:15:09 PM,04/25/2016 01:09:26 PM,04/25/2016 01:09:26 PM,No Merit,07/16/2015 09:15:40 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",151973426-E05 -143622678,AM20,14129615,Medical Incident,12/28/2014,12/28/2014,12/28/2014 06:55:42 PM,12/28/2014 06:58:27 PM,12/28/2014 06:59:12 PM,12/28/2014 06:59:50 PM,12/28/2014 07:08:26 PM,12/28/2014 07:26:26 PM,12/28/2014 07:57:14 PM,Code 2 Transport,12/28/2014 08:18:32 PM,1400 Block of HALIBUT CT,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",143622678-AM20 -150781311,56,15029856,Medical Incident,03/19/2015,03/19/2015,03/19/2015 10:15:18 AM,03/19/2015 10:16:33 AM,03/19/2015 10:17:31 AM,03/19/2015 10:17:39 AM,03/19/2015 10:23:26 AM,03/19/2015 10:38:26 AM,03/19/2015 10:44:54 AM,Code 3 Transport,03/19/2015 11:38:04 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Potrero Hill,"(37.7585565185063, -122.407002630959)",150781311-56 -142042079,E21,14070644,Structure Fire,07/23/2014,07/23/2014,07/23/2014 02:05:11 PM,07/23/2014 02:05:49 PM,07/23/2014 02:06:25 PM,07/23/2014 02:07:19 PM,07/23/2014 02:10:00 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/23/2014 02:17:22 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Alarm,1,ENGINE,3,5,5,Western Addition,"(37.7829763286601, -122.441111760659)",142042079-E21 -143413067,B08,14121275,Alarms,12/07/2014,12/07/2014,12/07/2014 07:39:57 PM,12/07/2014 07:41:10 PM,12/07/2014 07:41:18 PM,12/07/2014 07:42:47 PM,12/07/2014 07:46:23 PM,04/25/2016 01:13:35 PM,04/25/2016 01:13:35 PM,Fire,12/07/2014 07:53:24 PM,2300 Block of 12TH AVE,San Francisco,94116,B08,39,8615,3,3,3,false,Alarm,1,CHIEF,2,8,7,West of Twin Peaks,"(37.7444903504363, -122.468232229151)",143413067-B08 -143111004,77,14110066,Medical Incident,11/07/2014,11/07/2014,11/07/2014 09:24:46 AM,11/07/2014 09:27:21 AM,11/07/2014 09:27:39 AM,11/07/2014 09:27:46 AM,11/07/2014 09:33:12 AM,11/07/2014 09:56:17 AM,11/07/2014 10:26:55 AM,Code 2 Transport,11/07/2014 11:07:38 AM,1200 Block of 19TH AVE,San Francisco,94122,B08,22,7424,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,4,Inner Sunset,"(37.7645085780924, -122.477112517357)",143111004-77 -152570124,E07,15098095,Medical Incident,09/14/2015,09/13/2015,09/14/2015 01:09:05 AM,09/14/2015 01:10:29 AM,09/14/2015 01:10:54 AM,09/14/2015 01:12:58 AM,09/14/2015 01:14:57 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Code 2 Transport,09/14/2015 01:33:28 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",152570124-E07 -160953398,60,16037766,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:20:43 PM,04/04/2016 07:22:21 PM,04/04/2016 07:43:05 PM,04/04/2016 07:43:23 PM,04/04/2016 07:50:08 PM,04/04/2016 08:00:51 PM,04/04/2016 08:23:59 PM,Code 2 Transport,04/04/2016 08:52:03 PM,800 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,5,Western Addition,"(37.7828439870217, -122.421651290681)",160953398-60 -160953003,KM11,16037730,Citizen Assist / Service Call,04/04/2016,04/04/2016,04/04/2016 05:44:10 PM,04/04/2016 05:46:07 PM,04/04/2016 05:54:19 PM,04/04/2016 05:55:03 PM,04/04/2016 06:00:45 PM,04/04/2016 06:37:34 PM,04/04/2016 06:37:37 PM,Code 2 Transport,04/04/2016 07:04:10 PM,2700 Block of LAKE ST,San Francisco,94121,B07,14,7236,3,3,3,false,Alarm,1,PRIVATE,3,7,2,Seacliff,"(37.7851739912222, -122.488860460102)",160953003-KM11 -141522385,E08,14052299,Medical Incident,06/01/2014,06/01/2014,06/01/2014 06:10:25 PM,06/01/2014 06:11:16 PM,06/01/2014 06:19:55 PM,06/01/2014 06:21:28 PM,06/01/2014 06:24:16 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Code 2 Transport,06/01/2014 06:41:59 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",141522385-E08 -152711343,88,15103766,Medical Incident,09/28/2015,09/28/2015,09/28/2015 10:56:55 AM,09/28/2015 10:57:25 AM,09/28/2015 10:58:34 AM,09/28/2015 10:58:51 AM,09/28/2015 11:00:28 AM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Gone on Arrival,09/28/2015 11:03:18 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",152711343-88 -152912138,E44,15111849,Medical Incident,10/18/2015,10/18/2015,10/18/2015 03:06:41 PM,10/18/2015 03:09:09 PM,10/18/2015 03:11:00 PM,10/18/2015 03:11:55 PM,10/18/2015 03:18:12 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,No Merit,10/18/2015 03:24:22 PM,200 Block of SAWYER ST,San Francisco,94134,B09,44,6263,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7146687723374, -122.413812172304)",152912138-E44 -160983668,AM24,16039107,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:00:06 PM,04/07/2016 09:04:36 PM,04/07/2016 09:04:51 PM,04/07/2016 09:19:49 PM,04/07/2016 09:19:49 PM,04/07/2016 09:19:50 PM,04/07/2016 09:45:32 PM,Code 2 Transport,04/07/2016 10:10:10 PM,3000 Block of 23RD ST,San Francisco,94110,B06,7,5477,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7541426882469, -122.412588855535)",160983668-AM24 -150400142,E25,15015437,Citizen Assist / Service Call,02/09/2015,02/08/2015,02/09/2015 01:37:28 AM,02/09/2015 01:40:44 AM,02/09/2015 01:41:08 AM,02/09/2015 01:42:35 AM,02/09/2015 01:47:57 AM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Fire,02/09/2015 01:56:48 AM,0 Block of DEDMAN CT,San Francisco,94124,B10,25,6522,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7368469604958, -122.384907106098)",150400142-E25 -143560773,63,14127222,Medical Incident,12/22/2014,12/22/2014,12/22/2014 08:29:09 AM,12/22/2014 08:29:37 AM,12/22/2014 08:30:10 AM,12/22/2014 08:31:04 AM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,04/25/2016 01:13:17 PM,Code 2 Transport,12/22/2014 08:32:17 AM,300 Block of BALTIMORE WAY,San Francisco,94112,B09,43,6228,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7086978644454, -122.43804193132)",143560773-63 -141441552,74,14049394,Medical Incident,05/24/2014,05/24/2014,05/24/2014 12:54:55 PM,05/24/2014 12:56:56 PM,05/24/2014 12:58:54 PM,05/24/2014 01:01:35 PM,05/24/2014 01:11:12 PM,05/24/2014 01:31:41 PM,05/24/2014 01:47:01 PM,Code 2 Transport,05/24/2014 01:47:09 PM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",141441552-74 -160933034,KM12,16036996,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:06:54 PM,04/02/2016 07:07:27 PM,04/02/2016 07:10:01 PM,04/02/2016 07:11:24 PM,04/02/2016 07:15:38 PM,04/02/2016 07:24:52 PM,04/02/2016 07:51:12 PM,Code 2 Transport,04/02/2016 08:33:09 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8082633159603, -122.414972542075)",160933034-KM12 -151680239,55,15064089,Medical Incident,06/17/2015,06/16/2015,06/17/2015 02:34:09 AM,06/17/2015 02:37:23 AM,06/17/2015 02:54:50 AM,06/17/2015 02:55:30 AM,06/17/2015 03:03:24 AM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Patient Declined Transport,06/17/2015 03:33:55 AM,MISSION ST/CORTLAND AV,San Francisco,94110,B06,32,5626,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7410274087506, -122.422840577347)",151680239-55 -160952814,76,16037714,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:52:40 PM,04/04/2016 04:53:51 PM,04/04/2016 04:55:25 PM,04/04/2016 04:55:33 PM,04/04/2016 05:00:51 PM,04/04/2016 05:16:53 PM,04/04/2016 05:29:29 PM,Code 2 Transport,04/04/2016 06:03:24 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160952814-76 -141762059,E20,14060763,Medical Incident,06/25/2014,06/25/2014,06/25/2014 02:33:40 PM,06/25/2014 02:34:26 PM,06/25/2014 02:34:39 PM,06/25/2014 02:35:47 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Medical Examiner,06/25/2014 02:39:38 PM,1400 Block of 48TH AVE,San Francisco,94122,B08,23,7723,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7593947893332, -122.508071011138)",141762059-E20 -160992558,AM10,16039389,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:32:40 PM,04/08/2016 04:33:35 PM,04/08/2016 04:33:55 PM,04/08/2016 04:34:34 PM,04/08/2016 04:46:14 PM,04/08/2016 04:48:30 PM,04/08/2016 05:04:30 PM,Code 2 Transport,04/08/2016 05:29:31 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160992558-AM10 -142600296,54,14090717,Structure Fire,09/17/2014,09/16/2014,09/17/2014 03:39:33 AM,09/17/2014 03:40:16 AM,09/17/2014 03:40:47 AM,09/17/2014 03:45:07 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 03:47:25 AM,3100 Block of CLEMENT ST,San Francisco,94121,B07,14,7237,3,3,3,true,Alarm,1,MEDIC,7,7,1,Outer Richmond,"(37.7815971138281, -122.492906734383)",142600296-54 -150653045,62,15024943,Medical Incident,03/06/2015,03/06/2015,03/06/2015 05:20:50 PM,03/06/2015 05:21:10 PM,03/06/2015 05:23:14 PM,03/06/2015 05:23:14 PM,03/06/2015 05:30:00 PM,03/06/2015 05:42:00 PM,03/06/2015 06:03:11 PM,Code 2 Transport,03/06/2015 06:29:53 PM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",150653045-62 -150562977,KM15,15021524,Medical Incident,02/25/2015,02/25/2015,02/25/2015 05:55:25 PM,02/25/2015 05:55:25 PM,02/25/2015 05:56:25 PM,02/25/2015 05:58:04 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Patient Declined Transport,02/25/2015 06:06:17 PM,2500 Block of MARIN ST,San Francisco,94124,B10,9,6417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7482212701716, -122.402752255138)",150562977-KM15 -153461376,T03,15133198,Alarms,12/12/2015,12/12/2015,12/12/2015 10:28:04 AM,12/12/2015 10:29:18 AM,12/12/2015 10:29:57 AM,12/12/2015 10:30:42 AM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Fire,12/12/2015 10:36:04 AM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",153461376-T03 -152910106,AM22,15111639,Medical Incident,10/18/2015,10/17/2015,10/18/2015 12:33:51 AM,10/18/2015 12:35:35 AM,10/18/2015 12:36:29 AM,10/18/2015 12:37:30 AM,10/18/2015 12:55:54 AM,10/18/2015 12:56:07 AM,10/18/2015 01:01:13 AM,Code 2 Transport,10/18/2015 01:35:45 AM,500 Block of JACKSON ST,San Francisco,94133,B01,13,1232,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7964140386351, -122.403965295719)",152910106-AM22 -153132101,61,15120324,Medical Incident,11/09/2015,11/09/2015,11/09/2015 03:03:18 PM,11/09/2015 03:04:03 PM,11/09/2015 03:04:31 PM,11/09/2015 03:04:39 PM,11/09/2015 03:08:39 PM,11/09/2015 03:31:04 PM,11/09/2015 03:53:53 PM,Code 2 Transport,11/09/2015 04:28:07 PM,300 Block of KEARNY ST,San Francisco,94108,B01,13,1243,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",153132101-61 -142082227,E10,14072127,Structure Fire,07/27/2014,07/27/2014,07/27/2014 04:00:11 PM,07/27/2014 04:00:11 PM,07/27/2014 04:00:24 PM,07/27/2014 04:02:10 PM,07/27/2014 04:04:17 PM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Fire,07/27/2014 04:04:51 PM,2400 Block of LYON ST,San Francisco,94123,B04,10,4333,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7932944271794, -122.446448206967)",142082227-E10 -141220205,T08,14041326,Alarms,05/02/2014,05/02/2014,05/02/2014 01:14:57 PM,05/02/2014 01:16:22 PM,05/02/2014 01:17:13 PM,05/02/2014 01:18:46 PM,05/02/2014 01:21:29 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 01:30:15 PM,600 Block of 2ND ST,SAN FRANCISCO,94107,B03,8,2153,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7811877689642, -122.391351449722)",141220205-T08 -151854304,89,15070827,Alarms,07/04/2015,07/04/2015,07/04/2015 11:35:20 PM,07/04/2015 11:36:17 PM,07/04/2015 11:36:29 PM,07/04/2015 11:36:36 PM,07/04/2015 11:44:53 PM,07/05/2015 12:01:29 AM,07/05/2015 12:22:52 AM,Code 2 Transport,07/05/2015 12:55:04 AM,2400 Block of 38TH AVE,San Francisco,94116,B08,18,7612,3,3,3,true,Alarm,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7412158807869, -122.496053142156)",151854304-89 -153251334,E26,15125077,Medical Incident,11/21/2015,11/21/2015,11/21/2015 10:52:04 AM,11/21/2015 10:54:47 AM,11/21/2015 10:55:04 AM,11/21/2015 10:55:21 AM,11/21/2015 10:58:35 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Code 2 Transport,11/21/2015 11:15:15 AM,0 Block of ELK ST,San Francisco,94131,B06,26,8175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7357104260855, -122.439799173378)",153251334-E26 -152420444,74,15092172,Medical Incident,08/30/2015,08/29/2015,08/30/2015 02:16:48 AM,08/30/2015 02:18:10 AM,08/30/2015 02:20:24 AM,08/30/2015 02:20:31 AM,08/30/2015 02:24:53 AM,08/30/2015 02:33:07 AM,08/30/2015 02:41:05 AM,Code 2 Transport,08/30/2015 03:28:06 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",152420444-74 -142953246,T01,14104159,Structure Fire,10/22/2014,10/22/2014,10/22/2014 08:01:58 PM,10/22/2014 08:03:13 PM,10/22/2014 08:03:54 PM,10/22/2014 08:05:22 PM,10/22/2014 08:08:38 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,No Merit,10/22/2014 08:10:35 PM,200 Block of 11TH ST,San Francisco,94103,B02,36,5114,3,3,3,false,Alarm,1,TRUCK,7,2,6,Mission,"(37.7728364882287, -122.415330822576)",142953246-T01 -160930425,AM20,16036710,Medical Incident,04/02/2016,04/01/2016,04/02/2016 03:09:02 AM,04/02/2016 03:09:02 AM,04/02/2016 03:09:49 AM,04/02/2016 03:10:42 AM,04/02/2016 03:27:17 AM,04/02/2016 03:27:19 AM,04/02/2016 03:48:40 AM,Code 2 Transport,04/02/2016 04:12:38 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",160930425-AM20 -142622570,T03,14091693,Medical Incident,09/19/2014,09/19/2014,09/19/2014 04:31:03 PM,09/19/2014 04:35:00 PM,09/19/2014 04:35:08 PM,09/19/2014 04:36:35 PM,09/19/2014 04:39:30 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,Code 2 Transport,09/19/2014 04:54:18 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",142622570-T03 -141432713,T11,14049174,Structure Fire,05/23/2014,05/23/2014,05/23/2014 06:06:01 PM,05/23/2014 06:08:49 PM,05/23/2014 06:09:06 PM,05/23/2014 06:12:42 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Fire,05/23/2014 06:31:54 PM,300 Block of ADDISON ST,San Francisco,94131,B06,26,8153,3,3,3,false,Alarm,1,TRUCK,5,6,8,Glen Park,"(37.7400105466221, -122.435088097526)",141432713-T11 -143410293,64,14121004,Medical Incident,12/07/2014,12/06/2014,12/07/2014 01:49:44 AM,12/07/2014 01:50:27 AM,12/07/2014 01:50:52 AM,12/07/2014 01:51:09 AM,12/07/2014 01:54:30 AM,12/07/2014 02:15:26 AM,12/07/2014 02:36:05 AM,Code 2 Transport,12/07/2014 02:58:08 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",143410293-64 -153470195,58,15133496,Medical Incident,12/13/2015,12/12/2015,12/13/2015 01:20:31 AM,12/13/2015 01:20:31 AM,12/13/2015 01:20:31 AM,12/13/2015 01:20:31 AM,12/13/2015 01:20:31 AM,12/13/2015 01:20:38 AM,12/13/2015 01:20:38 AM,Code 3 Transport,12/13/2015 02:26:51 AM,0 Block of CASTRO ST,San Francisco,94114,B99,6,513,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",153470195-58 -160923297,71,16036590,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:59:13 PM,04/01/2016 07:59:25 PM,04/01/2016 07:59:41 PM,04/01/2016 07:59:47 PM,04/01/2016 08:07:10 PM,04/01/2016 08:37:11 PM,04/01/2016 09:01:21 PM,Code 2 Transport,04/01/2016 09:36:58 PM,600 Block of PRESIDIO AVE,San Francisco,94115,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7858449979837, -122.44644775326)",160923297-71 -150380641,62,15014659,Medical Incident,02/07/2015,02/06/2015,02/07/2015 06:06:18 AM,02/07/2015 06:07:50 AM,02/07/2015 06:07:57 AM,02/07/2015 06:09:24 AM,02/07/2015 06:10:38 AM,02/07/2015 06:17:26 AM,02/07/2015 06:33:32 AM,Code 2 Transport,02/07/2015 06:39:29 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",150380641-62 -152853635,E42,15109599,Medical Incident,10/12/2015,10/12/2015,10/12/2015 08:38:16 PM,10/12/2015 08:38:16 PM,10/12/2015 08:38:41 PM,10/12/2015 08:51:53 PM,10/12/2015 08:51:55 PM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Code 2 Transport,10/12/2015 09:07:40 PM,CARROLL AV/3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7254756512383, -122.394243494238)",152853635-E42 -152460941,KM08,15093731,Medical Incident,09/03/2015,09/03/2015,09/03/2015 08:55:14 AM,09/03/2015 08:55:50 AM,09/03/2015 08:58:30 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Cancelled,09/03/2015 08:59:11 AM,16TH ST/BRYANT ST,San Francisco,94110,B02,29,5241,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",152460941-KM08 -151262643,T12,15047841,Alarms,05/06/2015,05/06/2015,05/06/2015 04:31:09 PM,05/06/2015 04:32:18 PM,05/06/2015 04:33:22 PM,05/06/2015 04:34:35 PM,05/06/2015 04:51:34 PM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Fire,05/06/2015 04:51:36 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",151262643-T12 -160950785,57,16037548,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:41:00 AM,04/04/2016 08:41:28 AM,04/04/2016 08:41:41 AM,04/04/2016 08:42:18 AM,04/04/2016 09:01:23 AM,04/04/2016 09:14:04 AM,04/04/2016 09:45:57 AM,Code 2 Transport,04/04/2016 10:27:25 AM,PORTOLA DR/VICENTE ST,San Francisco,94127,B08,39,8562,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7392358314406, -122.466157325803)",160950785-57 -150252424,79,15009729,Medical Incident,01/25/2015,01/25/2015,01/25/2015 04:37:34 PM,01/25/2015 04:37:34 PM,01/25/2015 04:37:55 PM,01/25/2015 04:38:03 PM,01/25/2015 04:52:08 PM,01/25/2015 05:04:58 PM,01/25/2015 05:22:28 PM,Code 2 Transport,01/25/2015 05:36:31 PM,300 Block of HERMANN ST,San Francisco,94117,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Hayes Valley,"(37.7700847251602, -122.430884412237)",150252424-79 -160923602,75,16036620,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:42:48 PM,04/01/2016 09:44:55 PM,04/01/2016 09:45:13 PM,04/01/2016 09:45:18 PM,04/01/2016 09:55:28 PM,04/01/2016 10:04:04 PM,04/01/2016 10:13:15 PM,Code 3 Transport,04/01/2016 11:23:38 PM,2200 Block of 15TH ST,San Francisco,94114,B05,6,5232,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7657397887972, -122.43435845366)",160923602-75 -141613355,85,14055664,Medical Incident,06/10/2014,06/10/2014,06/10/2014 10:02:44 PM,06/10/2014 10:05:26 PM,06/10/2014 10:08:01 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,04/25/2016 01:16:50 PM,Code 2 Transport,06/10/2014 10:08:36 PM,400 Block of ROSE ST,San Francisco,94102,B02,36,3422,E,E,3,true,Potentially Life-Threatening,1,MEDIC,6,2,5,Hayes Valley,"(37.7728432861727, -122.42806845332)",141613355-85 -151700282,E31,15064849,Medical Incident,06/19/2015,06/18/2015,06/19/2015 02:32:40 AM,06/19/2015 02:34:21 AM,06/19/2015 02:35:49 AM,06/19/2015 02:37:20 AM,06/19/2015 02:39:39 AM,04/25/2016 01:09:55 PM,04/25/2016 01:09:55 PM,Code 2 Transport,06/19/2015 02:46:36 AM,600 Block of 10TH AVE,San Francisco,94118,B07,31,7134,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7761033802138, -122.468294601251)",151700282-E31 -150102992,RS1,15004101,Medical Incident,01/10/2015,01/10/2015,01/10/2015 07:24:54 PM,01/10/2015 07:26:23 PM,01/10/2015 07:26:52 PM,01/10/2015 07:28:21 PM,01/10/2015 07:30:48 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 2 Transport,01/10/2015 07:34:38 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Non Life-threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",150102992-RS1 -141923971,E41,14066742,Medical Incident,07/11/2014,07/11/2014,07/11/2014 11:45:28 PM,07/11/2014 11:45:54 PM,07/11/2014 11:46:09 PM,07/11/2014 11:47:27 PM,07/11/2014 11:49:47 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Code 2 Transport,07/12/2014 12:05:30 AM,1200 Block of GREEN ST,San Francisco,94109,B01,41,1631,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7982535635087, -122.419386977986)",141923971-E41 -153220468,63,15123733,Medical Incident,11/18/2015,11/17/2015,11/18/2015 06:43:22 AM,11/18/2015 06:44:16 AM,11/18/2015 06:44:57 AM,11/18/2015 06:46:13 AM,11/18/2015 06:54:15 AM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Patient Declined Transport,11/18/2015 07:32:06 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",153220468-63 -152880653,E36,15110556,Medical Incident,10/15/2015,10/14/2015,10/15/2015 07:35:58 AM,10/15/2015 07:35:58 AM,10/15/2015 07:36:33 AM,10/15/2015 07:39:50 AM,10/15/2015 07:44:23 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/15/2015 07:49:51 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,2,3,3,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",152880653-E36 -142571924,T12,14089816,Other,09/14/2014,09/14/2014,09/14/2014 03:07:12 PM,09/14/2014 03:09:30 PM,09/14/2014 03:09:56 PM,09/14/2014 03:15:47 PM,09/14/2014 03:18:33 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Fire,09/14/2014 03:35:16 PM,1600 Block of NORIEGA ST,San Francisco,94122,B08,18,7455,3,3,3,false,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.753973012813, -122.481291383585)",142571924-T12 -151400702,85,15053069,Medical Incident,05/20/2015,05/20/2015,05/20/2015 08:10:21 AM,05/20/2015 08:11:10 AM,05/20/2015 08:13:17 AM,05/20/2015 08:13:24 AM,05/20/2015 08:25:08 AM,05/20/2015 08:44:06 AM,05/20/2015 09:11:26 AM,Code 2 Transport,05/20/2015 09:42:35 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.728489442639, -122.429995375728)",151400702-85 -153111157,52,15119511,Medical Incident,11/07/2015,11/07/2015,11/07/2015 10:09:04 AM,11/07/2015 10:09:29 AM,11/07/2015 10:10:30 AM,11/07/2015 10:10:54 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,No Merit,11/07/2015 10:12:58 AM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",153111157-52 -143560199,61,14127157,Medical Incident,12/22/2014,12/21/2014,12/22/2014 01:42:40 AM,12/22/2014 01:43:08 AM,12/22/2014 01:43:31 AM,12/22/2014 01:44:04 AM,12/22/2014 02:01:44 AM,12/22/2014 02:01:50 AM,12/22/2014 02:05:39 AM,Code 2 Transport,12/22/2014 02:39:02 AM,TURK ST/POLK ST,San Francisco,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7821692691963, -122.418993274637)",143560199-61 -141662058,B07,14057329,Structure Fire,06/15/2014,06/15/2014,06/15/2014 04:24:59 PM,06/15/2014 04:25:33 PM,06/15/2014 04:25:47 PM,06/15/2014 04:27:29 PM,06/15/2014 04:31:33 PM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Fire,06/15/2014 07:08:16 PM,5300 Block of ANZA ST,San Francisco,94121,B07,34,7267,3,3,3,false,Fire,1,CHIEF,4,7,1,Outer Richmond,"(37.7772690739662, -122.505491169869)",141662058-B07 -142133627,82,14074025,Medical Incident,08/01/2014,08/01/2014,08/01/2014 10:48:27 PM,08/01/2014 10:51:09 PM,08/01/2014 10:53:06 PM,08/01/2014 10:53:16 PM,08/01/2014 11:04:59 PM,08/01/2014 11:38:00 PM,08/01/2014 11:58:01 PM,Code 2 Transport,08/02/2014 12:37:56 AM,900 Block of DUNCAN ST,San Francisco,94131,B06,26,8163,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7451902673044, -122.442132312223)",142133627-82 -142081131,B04,14072029,Alarms,07/27/2014,07/27/2014,07/27/2014 09:59:19 AM,07/27/2014 10:00:56 AM,07/27/2014 10:03:02 AM,07/27/2014 10:03:42 AM,07/27/2014 10:08:00 AM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Fire,07/27/2014 10:08:29 AM,2400 Block of GEARY BLVD,San Francisco,94115,B05,10,4261,3,3,3,false,Alarm,1,CHIEF,3,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",142081131-B04 -141593077,T03,14054985,Medical Incident,06/08/2014,06/08/2014,06/08/2014 09:38:09 PM,06/08/2014 09:38:50 PM,06/08/2014 09:43:28 PM,06/08/2014 09:43:28 PM,06/08/2014 09:43:40 PM,04/25/2016 01:16:52 PM,04/25/2016 01:16:52 PM,Code 3 Transport,06/08/2014 09:51:39 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",141593077-T03 -142992197,73,14105625,Medical Incident,10/26/2014,10/26/2014,10/26/2014 03:27:45 PM,10/26/2014 03:31:26 PM,10/26/2014 03:33:21 PM,10/26/2014 03:33:21 PM,10/26/2014 03:36:38 PM,10/26/2014 03:49:41 PM,10/26/2014 04:06:29 PM,Code 2 Transport,10/26/2014 04:28:13 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",142992197-73 -160993387,62,16039453,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:01:29 PM,04/08/2016 08:03:39 PM,04/08/2016 08:04:06 PM,04/08/2016 08:04:15 PM,04/08/2016 08:06:27 PM,04/08/2016 08:25:48 PM,04/08/2016 09:13:29 PM,Code 2 Transport,04/08/2016 09:29:01 PM,OCEAN AV/HAROLD AV,San Francisco,94112,B09,15,8224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7232440375255, -122.453107196732)",160993387-62 -143392432,T03,14120412,Medical Incident,12/05/2014,12/05/2014,12/05/2014 03:32:36 PM,12/05/2014 03:34:26 PM,12/05/2014 03:34:41 PM,12/05/2014 03:35:45 PM,12/05/2014 03:37:37 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 03:45:56 PM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,E,E,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7854364798696, -122.41533612902)",143392432-T03 -153093057,E31,15118860,Water Rescue,11/05/2015,11/05/2015,11/05/2015 05:28:35 PM,11/05/2015 05:31:31 PM,11/05/2015 05:35:08 PM,11/05/2015 05:36:59 PM,11/05/2015 05:43:24 PM,04/25/2016 01:07:22 PM,04/25/2016 01:07:22 PM,Fire,11/05/2015 05:59:13 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,false,Fire,1,ENGINE,3,7,2,Presidio,"(37.7915253713789, -122.483480228628)",153093057-E31 -151532307,65,15058344,Medical Incident,06/02/2015,06/02/2015,06/02/2015 03:39:31 PM,06/02/2015 03:41:47 PM,06/02/2015 03:43:40 PM,06/02/2015 03:44:04 PM,06/02/2015 03:51:16 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Patient Declined Transport,06/02/2015 04:25:21 PM,100 Block of SEVILLE ST,San Francisco,94112,B09,43,6225,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7115147093645, -122.436759114316)",151532307-65 -151433590,T14,15054557,Alarms,05/23/2015,05/23/2015,05/23/2015 10:08:29 PM,05/23/2015 10:10:18 PM,05/23/2015 10:10:27 PM,05/23/2015 10:12:08 PM,05/23/2015 10:17:06 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Fire,05/23/2015 10:30:09 PM,1800 Block of WEDEMEYER ST,Presidio,94129,B99,31,4623,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.7876952229351, -122.473970150545)",151433590-T14 -152232433,E17,15085040,Medical Incident,08/11/2015,08/11/2015,08/11/2015 03:21:42 PM,08/11/2015 03:23:42 PM,08/11/2015 03:23:57 PM,08/11/2015 03:26:08 PM,08/11/2015 03:28:29 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Code 2 Transport,08/11/2015 03:40:02 PM,1500 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7310897557507, -122.389268390192)",152232433-E17 -151220656,E06,15046177,Medical Incident,05/02/2015,05/01/2015,05/02/2015 06:56:05 AM,05/02/2015 06:56:51 AM,05/02/2015 06:57:25 AM,05/02/2015 06:59:53 AM,05/02/2015 07:03:02 AM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Code 2 Transport,05/02/2015 07:13:46 AM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",151220656-E06 -143411448,72,14121133,Medical Incident,12/07/2014,12/07/2014,12/07/2014 11:38:12 AM,12/07/2014 11:38:12 AM,12/07/2014 11:38:41 AM,12/07/2014 11:38:55 AM,12/07/2014 12:04:09 PM,04/25/2016 01:13:36 PM,04/25/2016 01:13:36 PM,Patient Declined Transport,12/07/2014 12:14:49 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",143411448-72 -143452343,T02,14122933,Structure Fire,12/11/2014,12/11/2014,12/11/2014 02:50:05 PM,12/11/2014 02:53:35 PM,12/11/2014 02:54:09 PM,12/11/2014 02:55:41 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Fire,12/11/2014 03:02:16 PM,HYDE ST/CHESTNUT ST,San Francisco,94109,B01,28,1613,3,3,3,false,Alarm,1,TRUCK,7,1,2,Russian Hill,"(37.8029268278162, -122.419797280581)",143452343-T02 -151371740,72,15052057,Medical Incident,05/17/2015,05/17/2015,05/17/2015 12:58:34 PM,05/17/2015 12:58:44 PM,05/17/2015 01:01:09 PM,05/17/2015 01:01:52 PM,05/17/2015 01:15:04 PM,05/17/2015 01:15:07 PM,05/17/2015 01:45:16 PM,Code 2 Transport,05/17/2015 02:10:36 PM,4000 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,E,3,true,Potentially Life-Threatening,1,MEDIC,4,7,2,Inner Richmond,"(37.7855250745972, -122.460849447925)",151371740-72 -160983995,60,16039138,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:51:28 PM,04/07/2016 10:54:39 PM,04/07/2016 10:55:05 PM,04/07/2016 10:55:17 PM,04/07/2016 10:57:05 PM,04/07/2016 11:12:31 PM,04/07/2016 11:19:19 PM,Code 2 Transport,04/08/2016 12:19:29 AM,GEARY BL/VAN NESS AV,San Francisco,94109,B04,3,3222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",160983995-60 -150461660,B02,15017889,Alarms,02/15/2015,02/15/2015,02/15/2015 12:38:34 PM,02/15/2015 12:39:35 PM,02/15/2015 12:40:14 PM,02/15/2015 12:41:37 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/15/2015 12:48:00 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Alarm,1,CHIEF,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",150461660-B02 -141351187,E32,14046110,Medical Incident,05/15/2014,05/15/2014,05/15/2014 10:07:32 AM,05/15/2014 10:07:32 AM,05/15/2014 10:08:52 AM,05/15/2014 10:10:17 AM,05/15/2014 10:13:05 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Code 2 Transport,05/15/2014 10:16:08 AM,MISSION ST/30TH ST,San Francisco,94110,B06,32,5625,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",141351187-E32 -150502138,E14,15019355,Alarms,02/19/2015,02/19/2015,02/19/2015 02:47:48 PM,02/19/2015 02:47:59 PM,02/19/2015 02:48:09 PM,02/19/2015 02:49:10 PM,02/19/2015 02:52:50 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Fire,02/19/2015 02:55:58 PM,9TH AV/GEARY BL,San Francisco,94118,B07,31,7135,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7808797138944, -122.46748765154)",150502138-E14 -152091722,E06,15079629,Traffic Collision,07/28/2015,07/28/2015,07/28/2015 12:23:23 PM,07/28/2015 12:23:47 PM,07/28/2015 12:24:51 PM,07/28/2015 12:26:13 PM,07/28/2015 12:28:05 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Code 2 Transport,07/28/2015 12:42:14 PM,300 Block of SCOTT ST,San Francisco,94117,B05,21,4141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7728905512688, -122.435589091732)",152091722-E06 -160991726,53,16039300,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:15:00 PM,04/08/2016 01:16:36 PM,04/08/2016 01:17:07 PM,04/08/2016 01:17:19 PM,04/08/2016 01:29:36 PM,04/08/2016 01:52:16 PM,04/08/2016 02:37:16 PM,Code 2 Transport,04/08/2016 03:22:27 PM,1800 Block of CABRILLO ST,San Francisco,94121,B07,31,7166,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7746507096792, -122.478431950812)",160991726-53 -143141233,E05,14111204,Electrical Hazard,11/10/2014,11/10/2014,11/10/2014 11:03:39 AM,11/10/2014 11:06:57 AM,11/10/2014 11:07:51 AM,11/10/2014 11:08:48 AM,11/10/2014 11:12:29 AM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Fire,11/10/2014 11:23:55 AM,OAK ST/WEBSTER ST,San Francisco,94102,B02,5,3523,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.774181421555, -122.429178343494)",143141233-E05 -151613370,AM20,15061691,Medical Incident,06/10/2015,06/10/2015,06/10/2015 08:17:57 PM,06/10/2015 08:18:30 PM,06/10/2015 08:18:35 PM,06/10/2015 08:19:14 PM,06/10/2015 08:21:36 PM,06/10/2015 08:36:58 PM,06/10/2015 08:46:57 PM,Code 2 Transport,06/10/2015 09:06:35 PM,CLARION AL/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7630508400294, -122.419476288648)",151613370-AM20 -141130115,E32,14038066,Alarms,04/23/2014,04/23/2014,04/23/2014 09:24:39 AM,04/23/2014 09:26:00 AM,04/23/2014 09:26:15 AM,04/23/2014 09:26:44 AM,04/23/2014 09:30:28 AM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Fire,04/23/2014 09:32:04 AM,100 Block of ANDOVER ST,SAN FRANCISCO,94110,B06,32,5716,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7410333976813, -122.41628667844)",141130115-E32 -152891856,E05,15111026,Medical Incident,10/16/2015,10/16/2015,10/16/2015 01:18:50 PM,10/16/2015 01:18:50 PM,10/16/2015 01:19:29 PM,10/16/2015 01:20:20 PM,10/16/2015 01:21:34 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 01:31:52 PM,1600 Block of TURK ST,San Francisco,94115,B05,5,3643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.780026750015, -122.436259177468)",152891856-E05 -160931279,KM02,16036807,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:52:07 AM,04/02/2016 10:54:16 AM,04/02/2016 11:06:03 AM,04/02/2016 11:06:31 AM,04/02/2016 11:22:15 AM,04/02/2016 11:33:23 AM,04/02/2016 12:06:11 PM,Code 2 Transport,04/02/2016 12:52:42 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160931279-KM02 -161001743,KM12,16039777,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:47:08 PM,04/09/2016 01:48:45 PM,04/09/2016 02:12:58 PM,04/09/2016 02:12:58 PM,04/09/2016 02:21:01 PM,04/09/2016 02:34:34 PM,04/09/2016 02:43:41 PM,Code 2 Transport,04/09/2016 03:15:49 PM,3000 Block of DIVISADERO ST,San Francisco,94123,B04,16,4166,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.7976378513126, -122.442441940779)",161001743-KM12 -150322704,E03,15012447,Medical Incident,02/01/2015,02/01/2015,02/01/2015 05:23:49 PM,02/01/2015 05:23:49 PM,02/01/2015 05:27:12 PM,02/01/2015 05:29:05 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Patient Declined Transport,02/01/2015 05:31:05 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",150322704-E03 -141320082,E18,14044768,Medical Incident,05/12/2014,05/11/2014,05/12/2014 12:56:59 AM,05/12/2014 12:57:39 AM,05/12/2014 01:03:41 AM,05/12/2014 01:05:53 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Code 2 Transport,05/12/2014 01:08:45 AM,2400 Block of 23RD AVE,San Francisco,94116,B08,40,7442,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7419314290573, -122.479843626378)",141320082-E18 -142900094,E12,14102087,Medical Incident,10/17/2014,10/16/2014,10/17/2014 12:39:42 AM,10/17/2014 12:44:53 AM,10/17/2014 12:45:38 AM,10/17/2014 12:47:41 AM,10/17/2014 12:49:31 AM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Code 2 Transport,10/17/2014 12:58:10 AM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7692177178614, -122.452690310191)",142900094-E12 -151571971,85,15059958,Medical Incident,06/06/2015,06/06/2015,06/06/2015 02:21:17 PM,06/06/2015 02:22:44 PM,06/06/2015 02:22:51 PM,06/06/2015 02:23:03 PM,06/06/2015 02:35:20 PM,06/06/2015 02:51:20 PM,06/06/2015 03:28:35 PM,Code 2 Transport,06/06/2015 03:57:03 PM,FILLMORE ST/JACKSON ST,San Francisco,94115,B04,38,3545,2,3,3,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7924716369741, -122.434557722228)",151571971-85 -150121777,89,15004750,Medical Incident,01/12/2015,01/12/2015,01/12/2015 01:05:19 PM,01/12/2015 01:05:19 PM,01/12/2015 01:07:58 PM,01/12/2015 01:08:47 PM,01/12/2015 01:13:20 PM,01/12/2015 01:18:49 PM,01/12/2015 01:58:21 PM,Code 3 Transport,01/12/2015 02:31:25 PM,TURK ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1456,A,E,3,true,Potentially Life-Threatening,1,MEDIC,6,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",150121777-89 -160930260,58,16036693,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:45:27 AM,04/02/2016 01:46:06 AM,04/02/2016 01:47:43 AM,04/02/2016 01:48:08 AM,04/02/2016 01:54:59 AM,04/02/2016 02:04:47 AM,04/02/2016 02:09:19 AM,Code 2 Transport,04/02/2016 02:29:59 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160930260-58 -152391067,83,15090950,Medical Incident,08/27/2015,08/27/2015,08/27/2015 09:38:08 AM,08/27/2015 09:38:31 AM,08/27/2015 09:40:37 AM,08/27/2015 09:40:37 AM,08/27/2015 09:49:42 AM,08/27/2015 09:56:41 AM,08/27/2015 10:07:37 AM,Code 2 Transport,08/27/2015 10:36:33 AM,900 Block of GRANT AVE,San Francisco,94108,B01,2,1312,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7955759617339, -122.406632308192)",152391067-83 -143430496,89,14121824,Medical Incident,12/09/2014,12/08/2014,12/09/2014 05:50:22 AM,12/09/2014 05:51:27 AM,12/09/2014 05:51:50 AM,12/09/2014 05:52:41 AM,12/09/2014 05:56:50 AM,12/09/2014 06:04:25 AM,12/09/2014 06:15:10 AM,Code 2 Transport,12/09/2014 06:36:21 AM,FRANKLIN ST/FULTON ST,San Francisco,94102,B02,36,3214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7789568629409, -122.421709307211)",143430496-89 -142750474,E51,14096354,Alarms,10/02/2014,10/01/2014,10/02/2014 05:16:17 AM,10/02/2014 05:17:46 AM,10/02/2014 05:18:04 AM,10/02/2014 05:20:15 AM,10/02/2014 05:23:46 AM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Fire,10/02/2014 05:32:17 AM,900 Block of MASON ST,Presidio,94108,B99,51,4613,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",142750474-E51 -160982314,73,16038966,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:42:10 PM,04/07/2016 02:42:10 PM,04/07/2016 02:43:47 PM,04/07/2016 02:50:34 PM,04/07/2016 03:05:19 PM,04/07/2016 04:01:06 PM,04/07/2016 04:01:21 PM,Code 2 Transport,04/07/2016 04:35:45 PM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",160982314-73 -151580583,55,15060221,Traffic Collision,06/07/2015,06/06/2015,06/07/2015 04:29:51 AM,06/07/2015 04:32:56 AM,06/07/2015 04:35:17 AM,06/07/2015 04:35:27 AM,06/07/2015 04:38:28 AM,04/25/2016 01:10:09 PM,04/25/2016 01:10:09 PM,No Merit,06/07/2015 04:40:28 AM,HYDE ST/POST ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7872452103353, -122.41663869807)",151580583-55 -142001523,E32,14069225,Other,07/19/2014,07/19/2014,07/19/2014 12:46:50 PM,07/19/2014 12:47:56 PM,07/19/2014 12:48:26 PM,07/19/2014 12:48:47 PM,07/19/2014 12:54:25 PM,04/25/2016 01:16:09 PM,04/25/2016 01:16:09 PM,Fire,07/19/2014 01:03:41 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",142001523-E32 -141403236,E33,14048131,Medical Incident,05/20/2014,05/20/2014,05/20/2014 08:33:58 PM,05/20/2014 08:36:12 PM,05/20/2014 08:36:45 PM,05/20/2014 08:37:43 PM,05/20/2014 08:39:12 PM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,Code 2 Transport,05/20/2014 09:05:14 PM,0 Block of BROAD ST,San Francisco,94112,B09,33,8371,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7132579074067, -122.454756002084)",141403236-E33 -160923362,79,16036595,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:18:24 PM,04/01/2016 08:19:08 PM,04/01/2016 08:19:29 PM,04/01/2016 08:19:47 PM,04/01/2016 08:23:37 PM,04/01/2016 08:39:16 PM,04/01/2016 08:48:34 PM,Code 2 Transport,04/01/2016 09:19:53 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160923362-79 -142490084,B04,14086647,Alarms,09/06/2014,09/05/2014,09/06/2014 12:37:18 AM,09/06/2014 12:38:19 AM,09/06/2014 12:38:43 AM,09/06/2014 12:39:00 AM,09/06/2014 12:42:40 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Fire,09/06/2014 12:47:38 AM,1900 Block of VAN NESS AVE,San Francisco,94109,B04,41,3153,3,3,3,false,Alarm,1,CHIEF,1,4,3,Russian Hill,"(37.7935141253124, -122.422789161737)",142490084-B04 -153020217,E05,15115713,Structure Fire,10/29/2015,10/28/2015,10/29/2015 01:49:19 AM,10/29/2015 01:49:19 AM,10/29/2015 01:49:34 AM,10/29/2015 01:51:16 AM,10/29/2015 01:53:07 AM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/29/2015 02:05:56 AM,1500 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,414,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",153020217-E05 -153223472,E18,15124000,Traffic Collision,11/18/2015,11/18/2015,11/18/2015 06:47:19 PM,11/18/2015 06:47:19 PM,11/18/2015 06:47:40 PM,11/18/2015 06:48:49 PM,11/18/2015 06:56:05 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Code 2 Transport,11/18/2015 07:26:46 PM,GREAT HY/SLOAT BL,San Francisco,94132,B08,23,7733,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",153223472-E18 -142960623,E14,14104291,Medical Incident,10/23/2014,10/22/2014,10/23/2014 07:24:29 AM,10/23/2014 07:25:44 AM,10/23/2014 07:25:57 AM,10/23/2014 07:27:29 AM,10/23/2014 07:29:09 AM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Medical Examiner,10/23/2014 08:16:15 AM,700 Block of 24TH AVE,San Francisco,94121,B07,14,7212,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7754214554732, -122.483253320428)",142960623-E14 -152601833,T02,15099372,Medical Incident,09/17/2015,09/17/2015,09/17/2015 12:49:15 PM,09/17/2015 12:51:43 PM,09/17/2015 12:52:04 PM,09/17/2015 12:52:58 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Against Medical Advice,09/17/2015 12:54:55 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,1,3,North Beach,"(37.8082633159603, -122.414972542075)",152601833-T02 -151400079,75,15053001,Medical Incident,05/20/2015,05/19/2015,05/20/2015 12:41:27 AM,05/20/2015 12:41:27 AM,05/20/2015 12:41:52 AM,05/20/2015 12:42:16 AM,05/20/2015 12:51:17 AM,05/20/2015 01:05:54 AM,05/20/2015 01:51:03 AM,Code 2 Transport,05/20/2015 02:27:05 AM,200 Block of 20TH AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7831962163812, -122.479514181601)",151400079-75 -143101426,E31,14109694,Medical Incident,11/06/2014,11/06/2014,11/06/2014 11:40:13 AM,11/06/2014 11:41:58 AM,11/06/2014 11:42:56 AM,11/06/2014 11:43:31 AM,11/06/2014 11:45:50 AM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,Code 2 Transport,11/06/2014 11:55:20 AM,400 Block of 11TH AVE,San Francisco,94118,B07,31,7142,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7798119162225, -122.469491762912)",143101426-E31 -153332398,E44,15128149,Medical Incident,11/29/2015,11/29/2015,11/29/2015 06:02:40 PM,11/29/2015 06:03:24 PM,11/29/2015 06:03:48 PM,11/29/2015 06:05:55 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,No Merit,11/29/2015 06:21:30 PM,0 Block of LELAND AVE,San Francisco,94134,B10,44,6255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7113387848327, -122.404262861765)",153332398-E44 -151660073,E01,15063326,Medical Incident,06/15/2015,06/14/2015,06/15/2015 12:43:17 AM,06/15/2015 12:45:19 AM,06/15/2015 12:45:35 AM,06/15/2015 12:47:17 AM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,Code 2 Transport,06/15/2015 12:48:38 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",151660073-E01 -160933689,52,16037063,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:19:46 PM,04/02/2016 10:19:46 PM,04/02/2016 10:20:13 PM,04/02/2016 10:20:20 PM,04/02/2016 10:25:18 PM,04/02/2016 10:41:44 PM,04/02/2016 10:56:31 PM,Code 2 Transport,04/02/2016 11:48:38 PM,HAYES ST/OCTAVIA ST,San Francisco,94102,B02,36,3265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7766875550419, -122.424513700951)",160933689-52 -153312417,64,15127444,Medical Incident,11/27/2015,11/27/2015,11/27/2015 04:51:18 PM,11/27/2015 04:51:18 PM,11/27/2015 04:51:18 PM,11/27/2015 04:51:18 PM,11/27/2015 04:51:18 PM,11/27/2015 05:02:44 PM,11/27/2015 05:13:08 PM,Code 2 Transport,11/27/2015 06:03:02 PM,BUSH ST/LEAVENWORTH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",153312417-64 -142721307,E06,14095352,Medical Incident,09/29/2014,09/29/2014,09/29/2014 11:12:51 AM,09/29/2014 11:15:06 AM,09/29/2014 11:18:53 AM,09/29/2014 11:19:12 AM,09/29/2014 11:21:43 AM,04/25/2016 01:14:50 PM,04/25/2016 01:14:50 PM,Code 3 Transport,09/29/2014 11:38:57 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",142721307-E06 -160970248,AM24,16038265,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:44:14 AM,04/06/2016 02:45:41 AM,04/06/2016 02:46:38 AM,04/06/2016 02:47:20 AM,04/06/2016 02:53:05 AM,04/06/2016 03:00:44 AM,04/06/2016 03:21:52 AM,Code 2 Transport,04/06/2016 03:44:37 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160970248-AM24 -161001156,KM08,16039704,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:26:15 AM,04/09/2016 10:27:47 AM,04/09/2016 10:28:23 AM,04/09/2016 10:28:48 AM,04/09/2016 10:45:09 AM,04/09/2016 10:56:34 AM,04/09/2016 11:20:33 AM,Code 2 Transport,04/09/2016 11:54:53 AM,2600 Block of 23RD AVE,San Francisco,94116,B08,40,7441,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.738203639933, -122.479590920377)",161001156-KM08 -153140700,E06,15120553,Medical Incident,11/10/2015,11/10/2015,11/10/2015 08:08:24 AM,11/10/2015 08:09:14 AM,11/10/2015 08:10:12 AM,11/10/2015 08:11:51 AM,11/10/2015 08:15:44 AM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Code 2 Transport,11/10/2015 08:17:36 AM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",153140700-E06 -151263421,T03,15047910,Medical Incident,05/06/2015,05/06/2015,05/06/2015 08:05:27 PM,05/06/2015 08:06:07 PM,05/06/2015 08:06:41 PM,05/06/2015 08:07:35 PM,05/06/2015 08:09:28 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Code 2 Transport,05/06/2015 08:12:26 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",151263421-T03 -152541089,67,15097030,Medical Incident,09/11/2015,09/11/2015,09/11/2015 09:37:24 AM,09/11/2015 09:37:41 AM,09/11/2015 09:37:53 AM,09/11/2015 09:38:12 AM,09/11/2015 09:45:52 AM,09/11/2015 10:04:30 AM,09/11/2015 10:17:53 AM,Code 2 Transport,09/11/2015 10:52:23 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",152541089-67 -150132122,KM02,15005198,Medical Incident,01/13/2015,01/13/2015,01/13/2015 02:30:19 PM,01/13/2015 02:31:00 PM,01/13/2015 02:57:37 PM,01/13/2015 02:58:19 PM,01/13/2015 03:08:32 PM,01/13/2015 03:16:46 PM,01/13/2015 03:43:27 PM,Code 2 Transport,01/13/2015 04:17:05 PM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",150132122-KM02 -160993376,AM18,16039452,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:58:12 PM,04/08/2016 08:00:03 PM,04/08/2016 08:07:10 PM,04/08/2016 08:07:40 PM,04/08/2016 08:41:13 PM,04/08/2016 08:55:51 PM,04/08/2016 08:57:33 PM,Code 2 Transport,04/08/2016 09:44:25 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",160993376-AM18 -153221037,E15,15123790,Administrative,11/18/2015,11/18/2015,11/18/2015 09:29:57 AM,11/18/2015 09:30:24 AM,11/18/2015 09:30:36 AM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Fire,11/18/2015 09:31:02 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",153221037-E15 -150530939,63,15020327,Medical Incident,02/22/2015,02/22/2015,02/22/2015 08:36:27 AM,02/22/2015 08:37:44 AM,02/22/2015 08:37:54 AM,02/22/2015 08:38:25 AM,02/22/2015 08:44:24 AM,02/22/2015 09:09:49 AM,02/22/2015 09:24:36 AM,Code 2 Transport,02/22/2015 10:01:29 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150530939-63 -142820298,T19,14099120,Alarms,10/09/2014,10/08/2014,10/09/2014 03:09:50 AM,10/09/2014 03:11:31 AM,10/09/2014 03:11:41 AM,10/09/2014 03:13:17 AM,10/09/2014 03:13:17 AM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,Fire,10/09/2014 04:12:04 AM,0 Block of CHUMASERO DR,San Francisco,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",142820298-T19 -143330002,B10,14117845,Alarms,11/28/2014,11/28/2014,11/28/2014 11:57:16 PM,11/29/2014 12:01:34 AM,11/29/2014 12:01:42 AM,11/29/2014 12:03:43 AM,11/29/2014 12:08:25 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 12:19:53 AM,1400 Block of LA SALLE AVE,San Francisco,94124,B10,17,6517,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7349050342849, -122.386304220968)",143330002-B10 -143631494,86,14129846,Medical Incident,12/29/2014,12/29/2014,12/29/2014 12:30:52 PM,12/29/2014 12:33:10 PM,12/29/2014 12:33:41 PM,12/29/2014 12:34:00 PM,12/29/2014 12:44:49 PM,12/29/2014 01:08:17 PM,12/29/2014 01:38:56 PM,Code 2 Transport,12/29/2014 02:17:48 PM,100 Block of RALSTON ST,San Francisco,94132,B09,33,8411,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7151777593562, -122.468838490776)",143631494-86 -151713100,E17,15065478,Medical Incident,06/20/2015,06/20/2015,06/20/2015 08:15:31 PM,06/20/2015 08:18:24 PM,06/20/2015 08:18:38 PM,06/20/2015 08:20:06 PM,06/20/2015 08:22:59 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Code 2 Transport,06/20/2015 08:29:34 PM,KISKA RD/DORMITORY RD,San Francisco,94124,B10,17,6625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7296596946267, -122.374928082685)",151713100-E17 -141652565,E08,14056993,Medical Incident,06/14/2014,06/14/2014,06/14/2014 05:31:08 PM,06/14/2014 05:38:08 PM,06/14/2014 05:45:31 PM,06/14/2014 05:47:27 PM,06/14/2014 05:50:36 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Other,06/14/2014 06:50:27 PM,300 Block of TERRY A FRANCOIS BLVD,San Francisco,94158,B03,8,950,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7757198568858, -122.387651994804)",141652565-E08 -150181746,AM08,15007116,Medical Incident,01/18/2015,01/18/2015,01/18/2015 01:28:09 PM,01/18/2015 01:29:46 PM,01/18/2015 01:29:56 PM,01/18/2015 01:30:22 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,No Merit,01/18/2015 01:35:35 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",150181746-AM08 -152982390,E02,15114485,Other,10/25/2015,10/25/2015,10/25/2015 04:44:37 PM,10/25/2015 04:44:37 PM,10/25/2015 04:44:37 PM,10/25/2015 04:44:37 PM,10/25/2015 04:44:37 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Fire,10/25/2015 04:44:37 PM,KEARNY ST/PACIFIC AV,San Francisco,94133,B01,13,1246,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7970898479827, -122.405318332195)",152982390-E02 -160980347,63,16038761,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:12:06 AM,04/07/2016 03:14:00 AM,04/07/2016 03:14:44 AM,04/07/2016 03:15:32 AM,04/07/2016 03:22:25 AM,04/07/2016 03:44:49 AM,04/07/2016 03:58:41 AM,Code 2 Transport,04/07/2016 04:01:07 AM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160980347-63 -160950470,52,16037523,Medical Incident,04/04/2016,04/03/2016,04/04/2016 06:39:15 AM,04/04/2016 06:39:53 AM,04/04/2016 06:40:16 AM,04/04/2016 06:40:29 AM,04/04/2016 06:43:34 AM,04/04/2016 07:00:22 AM,04/04/2016 07:21:43 AM,Code 2 Transport,04/04/2016 07:46:50 AM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",160950470-52 -160981976,57,16038925,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:12:44 PM,04/07/2016 01:14:28 PM,04/07/2016 01:14:42 PM,04/07/2016 01:15:24 PM,04/07/2016 01:20:40 PM,04/07/2016 01:41:18 PM,04/07/2016 02:06:23 PM,Code 2 Transport,04/07/2016 02:44:23 PM,1200 Block of KEARNY ST,San Francisco,94133,B01,2,1251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7994263611943, -122.405808002393)",160981976-57 -151202686,KM06,15045515,Medical Incident,04/30/2015,04/30/2015,04/30/2015 04:33:09 PM,04/30/2015 04:33:29 PM,04/30/2015 04:47:41 PM,04/30/2015 04:48:01 PM,04/30/2015 05:12:14 PM,04/30/2015 05:30:22 PM,04/30/2015 05:46:14 PM,Code 2 Transport,04/30/2015 06:21:57 PM,BRYANT ST/5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",151202686-KM06 -141150333,68,14038955,Medical Incident,04/25/2014,04/25/2014,04/25/2014 09:08:43 PM,04/25/2014 09:08:43 PM,04/25/2014 09:11:25 PM,04/25/2014 09:11:36 PM,04/25/2014 09:33:29 PM,04/25/2014 09:45:45 PM,04/25/2014 10:07:32 PM,Code 2 Transport,04/25/2014 10:38:35 PM,100 Block of TUCKER AVE,SAN FRANCISCO,94134,B09,44,6311,,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7161672177858, -122.406980111926)",141150333-68 -143112056,KM06,14110159,Medical Incident,11/07/2014,11/07/2014,11/07/2014 02:18:37 PM,11/07/2014 02:20:17 PM,11/07/2014 02:21:00 PM,11/07/2014 02:21:43 PM,11/07/2014 02:25:41 PM,11/07/2014 03:04:19 PM,11/07/2014 03:18:26 PM,Code 2 Transport,11/07/2014 03:56:13 PM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",143112056-KM06 -150671358,E01,15025579,Medical Incident,03/08/2015,03/08/2015,03/08/2015 12:08:05 PM,03/08/2015 12:09:35 PM,03/08/2015 12:11:13 PM,03/08/2015 12:11:13 PM,03/08/2015 12:12:12 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,Patient Declined Transport,03/08/2015 12:13:33 PM,HOWARD ST/9TH ST,San Francisco,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",150671358-E01 -142553443,E07,14089191,Smoke Investigation (Outside),09/12/2014,09/12/2014,09/12/2014 09:04:38 PM,09/12/2014 09:06:49 PM,09/12/2014 09:07:08 PM,09/12/2014 09:07:54 PM,09/12/2014 09:10:41 PM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Fire,09/12/2014 09:28:59 PM,100 Block of SAN CARLOS ST,San Francisco,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7609848622239, -122.420120540924)",142553443-E07 -150302720,E03,15011652,Medical Incident,01/30/2015,01/30/2015,01/30/2015 04:58:40 PM,01/30/2015 04:59:34 PM,01/30/2015 05:00:06 PM,01/30/2015 05:02:06 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Code 2 Transport,01/30/2015 05:03:40 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Non Life-threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",150302720-E03 -160923291,75,16036588,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:55:57 PM,04/01/2016 07:56:55 PM,04/01/2016 07:57:16 PM,04/01/2016 07:57:26 PM,04/01/2016 08:16:38 PM,04/01/2016 08:32:45 PM,04/01/2016 08:54:25 PM,Code 2 Transport,04/01/2016 09:39:45 PM,400 Block of LAKEVIEW AVE,San Francisco,94112,B09,33,8323,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7180076683643, -122.453703341526)",160923291-75 -160972259,56,16038451,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:56:36 PM,04/06/2016 01:59:12 PM,04/06/2016 02:00:45 PM,04/06/2016 02:01:35 PM,04/06/2016 02:11:39 PM,04/06/2016 02:16:49 PM,04/06/2016 02:46:49 PM,Code 2 Transport,04/06/2016 03:18:03 PM,0 Block of 3RD ST,San Francisco,94103,B03,1,2178,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.786410584846, -122.402331679146)",160972259-56 -143120772,87,14110409,Medical Incident,11/08/2014,11/07/2014,11/08/2014 07:46:01 AM,11/08/2014 07:46:31 AM,11/08/2014 07:46:46 AM,11/08/2014 07:46:55 AM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Cancelled,11/08/2014 07:57:11 AM,0 Block of WALTER U LUM PL,San Francisco,94108,B01,13,1313,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7947752887967, -122.405822767871)",143120772-87 -161002790,AM10,16039895,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:11:26 PM,04/09/2016 07:14:05 PM,04/09/2016 07:16:41 PM,04/09/2016 07:17:35 PM,04/09/2016 07:23:40 PM,04/09/2016 07:36:54 PM,04/09/2016 07:49:14 PM,Code 2 Transport,04/09/2016 08:15:18 PM,0 Block of STOCKTON ST,San Francisco,94102,B03,1,1322,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7860199001268, -122.406349577387)",161002790-AM10 -160983348,64,16039079,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:16:33 PM,04/07/2016 07:18:06 PM,04/07/2016 07:18:20 PM,04/07/2016 07:19:27 PM,04/07/2016 07:27:08 PM,04/07/2016 07:29:05 PM,04/07/2016 08:07:49 PM,Code 2 Transport,04/07/2016 08:52:44 PM,200 Block of ADDISON ST,San Francisco,94131,B06,26,8122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7378218134824, -122.432398313711)",160983348-64 -160962914,63,16038106,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:09:47 PM,04/05/2016 05:12:29 PM,04/05/2016 05:13:10 PM,04/05/2016 05:13:27 PM,04/05/2016 05:22:53 PM,04/05/2016 05:51:24 PM,04/05/2016 06:15:21 PM,Code 2 Transport,04/05/2016 06:38:13 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160962914-63 -153461646,B01,15133218,Alarms,12/12/2015,12/12/2015,12/12/2015 11:50:06 AM,12/12/2015 11:51:21 AM,12/12/2015 11:51:34 AM,12/12/2015 11:53:29 AM,12/12/2015 11:55:15 AM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Cancelled,12/12/2015 11:58:21 AM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7974024321534, -122.409965345352)",153461646-B01 -160962375,57,16038061,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:09:34 PM,04/05/2016 03:10:46 PM,04/05/2016 03:11:24 PM,04/05/2016 03:11:33 PM,04/05/2016 03:22:54 PM,04/05/2016 03:45:04 PM,04/05/2016 04:03:05 PM,Code 2 Transport,04/05/2016 05:07:51 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160962375-57 -160951327,56,16037587,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:01:20 AM,04/04/2016 11:01:33 AM,04/04/2016 11:02:37 AM,04/04/2016 11:06:34 AM,04/04/2016 11:11:12 AM,04/04/2016 11:30:00 AM,04/04/2016 11:39:47 AM,Code 2 Transport,04/04/2016 12:27:05 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",160951327-56 -151670846,54,15063770,Medical Incident,06/16/2015,06/16/2015,06/16/2015 09:04:28 AM,06/16/2015 09:07:04 AM,06/16/2015 09:07:21 AM,06/16/2015 09:08:09 AM,06/16/2015 09:17:20 AM,06/16/2015 09:39:27 AM,06/16/2015 09:57:31 AM,Code 2 Transport,06/16/2015 10:41:18 AM,0 Block of SOUTH VAN NESS AVE,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7741251002903, -122.418810211803)",151670846-54 -160941480,85,16037239,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:18:46 AM,04/03/2016 11:18:46 AM,04/03/2016 11:19:52 AM,04/03/2016 11:20:00 AM,04/03/2016 11:30:43 AM,04/03/2016 12:00:27 PM,04/03/2016 01:03:33 PM,Code 2 Transport,04/03/2016 01:51:42 PM,JOHN F KENNEDY DR/6TH AV,San Francisco,94122,B07,31,7122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7721623498746, -122.463332858858)",160941480-85 -143643531,E01,14130438,Medical Incident,12/30/2014,12/30/2014,12/30/2014 09:28:26 PM,12/30/2014 09:30:25 PM,12/30/2014 09:30:41 PM,12/30/2014 09:32:07 PM,12/30/2014 09:37:00 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 09:41:40 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",143643531-E01 -160964226,AM24,16038233,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:47:09 PM,04/05/2016 11:47:40 PM,04/05/2016 11:47:47 PM,04/05/2016 11:48:25 PM,04/05/2016 11:54:13 PM,04/06/2016 12:03:21 AM,04/06/2016 12:17:27 AM,Code 2 Transport,04/06/2016 12:40:25 AM,1700 Block of MCKINNON AVE,San Francisco,94124,B10,25,6455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7374788316121, -122.391986352639)",160964226-AM24 -150483054,76,15018722,Medical Incident,02/17/2015,02/17/2015,02/17/2015 06:31:35 PM,02/17/2015 06:31:57 PM,02/17/2015 06:32:12 PM,02/17/2015 06:32:40 PM,02/17/2015 06:34:50 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Patient Declined Transport,02/17/2015 06:57:02 PM,3900 Block of 17TH ST,San Francisco,94114,B05,6,5417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7625723537425, -122.43466870921)",150483054-76 -160941386,57,16037229,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:56:44 AM,04/03/2016 10:56:44 AM,04/03/2016 10:57:10 AM,04/03/2016 10:59:30 AM,04/03/2016 11:03:22 AM,04/03/2016 11:24:27 AM,04/03/2016 12:05:11 PM,Code 2 Transport,04/03/2016 12:44:43 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7206322139604, -122.437984003995)",160941386-57 -160930818,65,16036755,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:24:34 AM,04/02/2016 08:25:46 AM,04/02/2016 08:26:00 AM,04/02/2016 08:26:39 AM,04/02/2016 08:31:54 AM,04/02/2016 08:49:18 AM,04/02/2016 09:01:16 AM,Code 3 Transport,04/02/2016 09:49:24 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160930818-65 -141220357,54,14041464,Medical Incident,05/02/2014,05/02/2014,05/02/2014 08:15:03 PM,05/02/2014 08:15:17 PM,05/02/2014 08:15:50 PM,05/02/2014 08:16:16 PM,05/02/2014 08:21:07 PM,05/02/2014 08:31:34 PM,05/02/2014 08:41:26 PM,Code 2 Transport,05/02/2014 09:16:55 PM,48TH AV/JUDAH ST,SAN FRANCISCO,94122,B08,23,7723,3,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7603298172556, -122.508067560262)",141220357-54 -161002367,88,16039847,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:05:06 PM,04/09/2016 05:07:19 PM,04/09/2016 05:07:44 PM,04/09/2016 05:07:55 PM,04/09/2016 05:09:53 PM,04/09/2016 05:37:32 PM,04/09/2016 05:47:13 PM,Code 2 Transport,04/09/2016 06:33:26 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",161002367-88 -142110409,E01,14073009,Outside Fire,07/30/2014,07/29/2014,07/30/2014 05:35:16 AM,07/30/2014 05:36:15 AM,07/30/2014 05:37:28 AM,07/30/2014 05:37:28 AM,07/30/2014 05:38:08 AM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Fire,07/30/2014 05:45:15 AM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Fire,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",142110409-E01 -141361117,E35,14046505,Traffic Collision,05/16/2014,05/16/2014,05/16/2014 10:14:16 AM,05/16/2014 10:15:10 AM,05/16/2014 10:15:51 AM,05/16/2014 10:17:02 AM,05/16/2014 10:22:16 AM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Code 2 Transport,05/16/2014 10:40:09 AM,MISSION ST/NEW MONTGOMERY ST,San Francisco,94105,B03,1,2145,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",141361117-E35 -160950200,KM03,16037491,Medical Incident,04/04/2016,04/03/2016,04/04/2016 02:33:38 AM,04/04/2016 02:33:38 AM,04/04/2016 02:33:47 AM,04/04/2016 02:34:16 AM,04/04/2016 02:42:06 AM,04/04/2016 03:01:50 AM,04/04/2016 03:13:03 AM,Code 2 Transport,04/04/2016 03:51:59 AM,MISSION ST/LEO ST,San Francisco,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7224652192127, -122.436468164217)",160950200-KM03 -142022006,T09,14069912,Traffic Collision,07/21/2014,07/21/2014,07/21/2014 02:53:05 PM,07/21/2014 02:53:50 PM,07/21/2014 02:54:53 PM,07/21/2014 02:55:19 PM,07/21/2014 03:00:27 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Other,07/21/2014 03:00:55 PM,CALL BOX: MANSELL ST/DARTMOUTH ST,San Francisco,94134,B09,44,6322,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,9,10,McLaren Park,"(37.7194470839158, -122.409038060668)",142022006-T09 -152160807,E43,15082143,Medical Incident,08/04/2015,08/04/2015,08/04/2015 08:47:24 AM,08/04/2015 08:47:47 AM,08/04/2015 08:48:04 AM,08/04/2015 08:49:19 AM,08/04/2015 08:50:24 AM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Code 2 Transport,08/04/2015 09:01:40 AM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.715844082258, -122.431797985467)",152160807-E43 -160952296,KM11,16037663,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:48:43 PM,04/04/2016 02:50:19 PM,04/04/2016 02:56:32 PM,04/04/2016 02:57:10 PM,04/04/2016 03:02:26 PM,04/04/2016 03:27:14 PM,04/04/2016 03:36:48 PM,Code 2 Transport,04/04/2016 04:02:07 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160952296-KM11 -150903258,RS1,15034402,Structure Fire,03/31/2015,03/31/2015,03/31/2015 07:45:08 PM,03/31/2015 07:46:33 PM,03/31/2015 07:47:21 PM,03/31/2015 07:49:52 PM,03/31/2015 07:55:20 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Fire,03/31/2015 07:55:24 PM,1700 Block of MCALLISTER ST,San Francisco,94117,B05,21,4254,3,3,3,false,Alarm,1,RESCUE SQUAD,8,5,5,Western Addition,"(37.7774258159143, -122.440841432204)",150903258-RS1 -150322465,E22,15012424,Medical Incident,02/01/2015,02/01/2015,02/01/2015 04:04:48 PM,02/01/2015 04:06:41 PM,02/01/2015 04:06:59 PM,02/01/2015 04:08:16 PM,02/01/2015 04:14:26 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 04:18:01 PM,1400 Block of 21ST AVE,San Francisco,94122,B08,22,7426,2,2,2,false,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7606747175008, -122.479001684778)",150322465-E22 -142632747,E36,14092096,Alarms,09/20/2014,09/20/2014,09/20/2014 06:05:46 PM,09/20/2014 06:07:41 PM,09/20/2014 06:08:49 PM,09/20/2014 06:15:31 PM,09/20/2014 06:15:31 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Fire,09/20/2014 06:20:08 PM,400 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Alarm,1,ENGINE,3,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",142632747-E36 -143423646,E01,14121722,Medical Incident,12/08/2014,12/08/2014,12/08/2014 08:57:50 PM,12/08/2014 08:57:50 PM,12/08/2014 08:58:10 PM,12/08/2014 08:59:19 PM,12/08/2014 09:03:16 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 09:10:07 PM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",143423646-E01 -160963385,76,16038146,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:55:03 PM,04/05/2016 06:56:56 PM,04/05/2016 06:57:12 PM,04/05/2016 06:57:25 PM,04/05/2016 07:03:43 PM,04/05/2016 07:30:36 PM,04/05/2016 07:56:24 PM,Code 2 Transport,04/05/2016 08:26:18 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160963385-76 -153260189,85,15125349,Medical Incident,11/22/2015,11/21/2015,11/22/2015 01:11:43 AM,11/22/2015 01:13:30 AM,11/22/2015 01:13:47 AM,11/22/2015 01:14:04 AM,11/22/2015 01:30:31 AM,11/22/2015 01:43:25 AM,11/22/2015 01:52:08 AM,Code 2 Transport,11/22/2015 02:34:54 AM,300 Block of DIVISADERO ST,San Francisco,94117,B05,21,4144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7726538451108, -122.437444929872)",153260189-85 -150283120,E19,15010877,Structure Fire,01/28/2015,01/28/2015,01/28/2015 06:44:43 PM,01/28/2015 06:45:42 PM,01/29/2015 03:30:35 AM,01/29/2015 03:36:51 AM,01/29/2015 05:58:17 AM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Code 2 Transport,01/29/2015 08:16:27 AM,3200 Block of 22ND ST,,94110,B06,7,5472,3,3,3,true,Fire,4,ENGINE,63,6,9,Mission,"(37.7554560834882, -122.419308328755)",150283120-E19 -143632265,60,14129913,Medical Incident,12/29/2014,12/29/2014,12/29/2014 04:06:26 PM,12/29/2014 04:08:03 PM,12/29/2014 04:08:31 PM,12/29/2014 04:08:49 PM,12/29/2014 04:24:08 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Patient Declined Transport,12/29/2014 04:43:54 PM,2200 Block of NORTH POINT ST,San Francisco,94123,B04,16,4221,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8026137463285, -122.444236772715)",143632265-60 -141611266,KM09,14055472,Medical Incident,06/10/2014,06/10/2014,06/10/2014 11:11:17 AM,06/10/2014 11:14:30 AM,06/10/2014 11:17:09 AM,06/10/2014 11:17:52 AM,06/10/2014 11:39:13 AM,06/10/2014 11:46:01 AM,06/10/2014 12:06:33 PM,Code 2 Transport,06/10/2014 12:36:37 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",141611266-KM09 -152761961,79,15105799,Medical Incident,10/03/2015,10/03/2015,10/03/2015 01:49:04 PM,10/03/2015 01:49:11 PM,10/03/2015 01:49:26 PM,10/03/2015 01:49:32 PM,10/03/2015 02:01:16 PM,10/03/2015 02:10:14 PM,10/03/2015 02:26:31 PM,Code 2 Transport,10/03/2015 02:45:13 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7709213255516, -122.420166970004)",152761961-79 -160964081,60,16038212,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:45:21 PM,04/05/2016 10:47:01 PM,04/05/2016 10:48:22 PM,04/05/2016 10:48:41 PM,04/05/2016 10:54:40 PM,04/05/2016 11:00:42 PM,04/05/2016 11:09:52 PM,Code 3 Transport,04/06/2016 12:09:04 AM,0 Block of NAVAJO AVE,San Francisco,94112,B09,15,8332,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7200829725539, -122.443857351608)",160964081-60 -141792505,KM01,14061858,Traffic Collision,06/28/2014,06/28/2014,06/28/2014 04:55:25 PM,06/28/2014 04:58:48 PM,06/28/2014 05:00:16 PM,06/28/2014 05:01:46 PM,06/28/2014 05:10:57 PM,06/28/2014 05:26:52 PM,06/28/2014 06:05:38 PM,Code 2 Transport,06/28/2014 06:10:35 PM,1000 Block of VERMONT ST,San Francisco,94110,B02,36,5116,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7563940950772, -122.403638440407)",141792505-KM01 -142201124,RC2,14076278,Other,08/08/2014,08/08/2014,08/08/2014 10:17:25 AM,08/08/2014 10:17:25 AM,08/08/2014 10:17:25 AM,08/08/2014 10:17:25 AM,08/08/2014 10:17:25 AM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Fire,08/08/2014 11:04:41 AM,400 Block of MIDDLE WEST DR,San Francisco,94122,B07,23,7565,3,3,3,true,Alarm,1,RESCUE CAPTAIN,1,7,1,Golden Gate Park,"(37.7664523569659, -122.495934078446)",142201124-RC2 -160962447,81,16038066,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:27:02 PM,04/05/2016 03:28:11 PM,04/05/2016 03:28:21 PM,04/05/2016 03:28:31 PM,04/05/2016 03:33:24 PM,04/05/2016 03:47:51 PM,04/05/2016 04:12:49 PM,Code 2 Transport,04/05/2016 04:58:30 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",160962447-81 -152161540,E13,15082224,Medical Incident,08/04/2015,08/04/2015,08/04/2015 12:23:35 PM,08/04/2015 12:24:11 PM,08/04/2015 12:29:08 PM,08/04/2015 12:29:41 PM,08/04/2015 12:33:34 PM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,No Merit,08/04/2015 12:35:12 PM,POWELL ST/NORTH POINT ST,San Francisco,94133,B01,28,1344,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8067580824981, -122.412141425527)",152161540-E13 -152432323,76,15092743,Medical Incident,08/31/2015,08/31/2015,08/31/2015 03:07:02 PM,08/31/2015 03:08:20 PM,08/31/2015 03:08:57 PM,08/31/2015 03:09:04 PM,08/31/2015 03:27:44 PM,08/31/2015 03:39:09 PM,08/31/2015 03:59:32 PM,Code 2 Transport,08/31/2015 04:37:15 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7323409564372, -122.406116198284)",152432323-76 -152220276,64,15084447,Medical Incident,08/10/2015,08/09/2015,08/10/2015 03:04:21 AM,08/10/2015 03:08:14 AM,08/10/2015 03:08:25 AM,08/10/2015 03:08:48 AM,08/10/2015 03:13:57 AM,08/10/2015 03:29:01 AM,08/10/2015 03:40:23 AM,Code 2 Transport,08/10/2015 03:59:58 AM,200 Block of MAIN ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7900295956883, -122.392583899031)",152220276-64 -152242857,T09,15085465,Structure Fire,08/12/2015,08/12/2015,08/12/2015 05:23:04 PM,08/12/2015 05:23:04 PM,08/12/2015 05:23:45 PM,08/12/2015 05:25:58 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 05:26:35 PM,AUGUSTA ST/CHARTER OAK AV,San Francisco,94124,B10,42,6364,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7343432018483, -122.404544035212)",152242857-T09 -152393423,55,15091165,Medical Incident,08/27/2015,08/27/2015,08/27/2015 07:18:08 PM,08/27/2015 07:20:18 PM,08/27/2015 07:21:06 PM,08/27/2015 07:21:15 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Other,08/27/2015 07:24:23 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",152393423-55 -143290627,87,14116576,Medical Incident,11/25/2014,11/24/2014,11/25/2014 07:30:23 AM,11/25/2014 07:30:58 AM,11/25/2014 07:32:54 AM,11/25/2014 07:35:45 AM,11/25/2014 07:43:52 AM,11/25/2014 07:49:44 AM,11/25/2014 08:10:46 AM,Code 2 Transport,11/25/2014 08:38:34 AM,900 Block of BRYANT ST,San Francisco,94103,B03,8,2311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7740297538027, -122.404968319078)",143290627-87 -141580115,E01,14054282,Medical Incident,06/07/2014,06/06/2014,06/07/2014 12:54:03 AM,06/07/2014 12:54:52 AM,06/07/2014 12:55:55 AM,06/07/2014 12:56:59 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Code 2 Transport,06/07/2014 01:11:07 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",141580115-E01 -151061078,E10,15039983,Medical Incident,04/16/2015,04/16/2015,04/16/2015 09:34:38 AM,04/16/2015 09:34:57 AM,04/16/2015 09:35:11 AM,04/16/2015 09:37:30 AM,04/16/2015 09:46:56 AM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Code 2 Transport,04/16/2015 09:49:27 AM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,7,2,Presidio Heights,"(37.7867794977083, -122.450948438002)",151061078-E10 -152320306,AM20,15088362,Medical Incident,08/20/2015,08/19/2015,08/20/2015 03:02:33 AM,08/20/2015 03:04:28 AM,08/20/2015 03:04:41 AM,08/20/2015 03:05:27 AM,08/20/2015 03:13:36 AM,08/20/2015 03:27:12 AM,08/20/2015 03:41:45 AM,Code 2 Transport,08/20/2015 04:12:26 AM,400 Block of 16TH AVE,San Francisco,94118,B07,31,7161,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7795682474859, -122.474950761103)",152320306-AM20 -142961453,RS1,14104361,Medical Incident,10/23/2014,10/23/2014,10/23/2014 11:33:57 AM,10/23/2014 11:35:38 AM,10/23/2014 11:36:35 AM,10/23/2014 11:36:43 AM,10/23/2014 11:40:27 AM,04/25/2016 01:14:24 PM,04/25/2016 01:14:24 PM,Unable to Locate,10/23/2014 11:44:00 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",142961453-RS1 -152201821,KM08,15083823,Medical Incident,08/08/2015,08/08/2015,08/08/2015 01:32:15 PM,08/08/2015 01:32:43 PM,08/08/2015 01:33:14 PM,08/08/2015 01:33:45 PM,08/08/2015 01:53:58 PM,08/08/2015 02:25:44 PM,08/08/2015 02:51:18 PM,Code 2 Transport,08/08/2015 03:32:14 PM,2400 Block of 39TH AVE,San Francisco,94116,B08,18,7617,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7411681900571, -122.497119701951)",152201821-KM08 -151400710,KM01,15053070,Medical Incident,05/20/2015,05/20/2015,05/20/2015 08:12:15 AM,05/20/2015 08:13:42 AM,05/20/2015 08:16:06 AM,05/20/2015 08:16:52 AM,05/20/2015 08:35:13 AM,05/20/2015 08:36:17 AM,05/20/2015 08:48:14 AM,Code 2 Transport,05/20/2015 09:13:30 AM,GEARY BL/WEBSTER ST,San Francisco,94115,B04,5,3432,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.7845682402461, -122.431204945516)",151400710-KM01 -141030303,AM22,14034885,Medical Incident,04/13/2014,04/13/2014,04/13/2014 07:18:25 PM,04/13/2014 07:19:31 PM,04/13/2014 07:20:05 PM,04/13/2014 07:20:05 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Code 2 Transport,04/25/2016 01:17:54 PM,1100 Block of MARKET ST,,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141030303-AM22 -141681479,AM24,14057935,Medical Incident,06/17/2014,06/17/2014,06/17/2014 12:19:06 PM,06/17/2014 12:19:20 PM,06/17/2014 12:21:47 PM,06/17/2014 12:22:30 PM,06/17/2014 12:27:12 PM,06/17/2014 12:46:54 PM,06/17/2014 01:17:59 PM,Code 2 Transport,06/17/2014 01:50:29 PM,0 Block of MIRALOMA DR,San Francisco,94127,B08,39,8572,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7391526905065, -122.461315603134)",141681479-AM24 -143491810,B07,14124646,Alarms,12/15/2014,12/15/2014,12/15/2014 01:54:24 PM,12/15/2014 01:55:32 PM,12/15/2014 01:55:38 PM,12/15/2014 01:56:36 PM,12/15/2014 02:04:16 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 02:08:32 PM,500 Block of CLAYTON ST,San Francisco,94117,B05,12,4525,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7702730913586, -122.448605048056)",143491810-B07 -142982568,68,14105257,Medical Incident,10/25/2014,10/25/2014,10/25/2014 04:48:42 PM,10/25/2014 04:49:37 PM,10/25/2014 04:50:02 PM,10/25/2014 04:50:08 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,No Merit,10/25/2014 04:59:15 PM,FILBERT ST/GRANT AV,San Francisco,94133,B01,28,1265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8015708251232, -122.407769591357)",142982568-68 -160931160,65,16036790,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 10:14:31 AM,04/02/2016 10:14:31 AM,04/02/2016 10:19:32 AM,04/02/2016 10:19:40 AM,04/02/2016 10:27:51 AM,04/02/2016 10:50:24 AM,04/02/2016 11:17:12 AM,Code 2 Transport,04/02/2016 11:42:39 AM,22ND AV/LAWTON ST,San Francisco,94122,B08,22,7447,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7578254814546, -122.479945065812)",160931160-65 -141691643,E28,14058342,Medical Incident,06/18/2014,06/18/2014,06/18/2014 01:09:51 PM,06/18/2014 01:10:44 PM,06/18/2014 01:11:21 PM,06/18/2014 01:12:22 PM,06/18/2014 01:16:30 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,No Merit,06/18/2014 01:21:13 PM,2600 Block of MASON ST,San Francisco,94133,B01,28,1344,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8079604704743, -122.414001361661)",141691643-E28 -152252695,T15,15085848,Structure Fire,08/13/2015,08/13/2015,08/13/2015 04:38:11 PM,08/13/2015 04:39:20 PM,08/13/2015 04:39:35 PM,08/13/2015 04:40:50 PM,08/13/2015 04:44:38 PM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Fire,08/13/2015 04:45:13 PM,MISSION ST/AVALON AV,San Francisco,94112,B09,32,6113,3,3,3,false,Alarm,1,TRUCK,4,9,11,Outer Mission,"(37.7276372090899, -122.432447324509)",152252695-T15 -151021156,E01,15038517,Medical Incident,04/12/2015,04/12/2015,04/12/2015 10:20:54 AM,04/12/2015 10:20:54 AM,04/12/2015 10:21:24 AM,04/12/2015 10:23:03 AM,04/12/2015 10:24:59 AM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Code 2 Transport,04/12/2015 10:30:26 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",151021156-E01 -150683467,B04,15026131,Alarms,03/09/2015,03/09/2015,03/09/2015 07:51:22 PM,03/09/2015 07:53:21 PM,03/09/2015 07:53:30 PM,03/09/2015 07:53:56 PM,03/09/2015 07:56:27 PM,04/25/2016 01:11:49 PM,04/25/2016 01:11:49 PM,Fire,03/09/2015 08:03:54 PM,3100 Block of SACRAMENTO ST,San Francisco,94115,B04,10,4264,3,3,3,false,Alarm,1,CHIEF,1,4,2,Pacific Heights,"(37.7884127178988, -122.444753541117)",150683467-B04 -141180086,AM02,14039730,Medical Incident,04/28/2014,04/28/2014,04/28/2014 08:26:38 AM,04/28/2014 08:29:20 AM,04/28/2014 08:33:39 AM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Other,04/25/2016 01:17:39 PM,MARKET ST/7TH ST,SAN FRANCISCO,94103,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",141180086-AM02 -143443131,E03,14122447,Medical Incident,12/10/2014,12/10/2014,12/10/2014 06:16:06 PM,12/10/2014 06:17:29 PM,12/10/2014 06:22:09 PM,12/10/2014 06:22:53 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Unable to Locate,12/10/2014 06:43:17 PM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",143443131-E03 -142450915,B02,14085281,Alarms,09/02/2014,09/02/2014,09/02/2014 08:54:20 AM,09/02/2014 08:55:14 AM,09/02/2014 08:56:04 AM,09/02/2014 08:56:17 AM,09/02/2014 09:04:19 AM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/02/2014 09:10:04 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",142450915-B02 -153472458,85,15133764,Structure Fire,12/13/2015,12/13/2015,12/13/2015 04:40:23 PM,12/13/2015 04:42:25 PM,12/13/2015 04:45:34 PM,12/13/2015 04:45:53 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Fire,12/13/2015 04:49:41 PM,400 Block of 31ST AVE,San Francisco,94121,B07,14,7237,3,3,3,true,Alarm,1,MEDIC,5,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",153472458-85 -152892135,T04,15111055,Structure Fire,10/16/2015,10/16/2015,10/16/2015 02:23:11 PM,10/16/2015 02:23:37 PM,10/16/2015 02:24:10 PM,10/16/2015 02:30:52 PM,10/16/2015 02:36:35 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Cancelled,10/16/2015 02:38:18 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,3,3,3,false,Alarm,1,TRUCK,4,5,5,Japantown,"(37.7842371111665, -122.440760813886)",152892135-T04 -150341616,T18,15013092,Alarms,02/03/2015,02/03/2015,02/03/2015 12:20:59 PM,02/03/2015 12:22:10 PM,02/03/2015 12:22:16 PM,02/03/2015 12:23:54 PM,02/03/2015 12:27:03 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Fire,02/03/2015 12:29:10 PM,2500 Block of 34TH AVE,San Francisco,94116,B08,18,7554,3,3,3,false,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7395472638893, -122.491499679744)",150341616-T18 -160952219,62,16037659,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:31:02 PM,04/04/2016 02:33:05 PM,04/04/2016 02:33:24 PM,04/04/2016 02:33:38 PM,04/04/2016 02:47:29 PM,04/04/2016 03:06:00 PM,04/04/2016 03:27:15 PM,Code 2 Transport,04/04/2016 04:05:33 PM,2900 Block of FOLSOM ST,San Francisco,94110,B06,7,5614,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7500991052351, -122.41391717161)",160952219-62 -142322119,54,14080622,Medical Incident,08/20/2014,08/20/2014,08/20/2014 02:32:41 PM,08/20/2014 02:34:13 PM,08/20/2014 02:45:43 PM,08/20/2014 02:46:50 PM,08/20/2014 02:52:12 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Patient Declined Transport,08/20/2014 03:38:55 PM,200 Block of POTRERO AVE,San Francisco,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,10,Mission,"(37.7664376828612, -122.407540732549)",142322119-54 -143070193,RC1,14108470,Medical Incident,11/03/2014,11/02/2014,11/03/2014 01:56:09 AM,11/03/2014 01:57:43 AM,11/03/2014 01:59:56 AM,11/03/2014 02:01:14 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,Code 2 Transport,11/03/2014 02:03:21 AM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7804785121736, -122.412512257219)",143070193-RC1 -143600585,RC1,14128695,Medical Incident,12/26/2014,12/26/2014,12/26/2014 08:20:37 AM,12/26/2014 08:20:37 AM,12/26/2014 08:21:23 AM,12/26/2014 08:23:11 AM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Code 2 Transport,12/26/2014 08:27:21 AM,LEAVENWORTH ST/MCALLISTER ST,San Francisco,94102,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",143600585-RC1 -152761057,RC3,15105696,Medical Incident,10/03/2015,10/03/2015,10/03/2015 09:18:47 AM,10/03/2015 09:20:14 AM,10/03/2015 09:20:35 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,No Merit,10/03/2015 09:25:50 AM,3700 Block of 16TH ST,San Francisco,94114,B05,6,5233,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,5,8,Castro/Upper Market,"(37.7638400659979, -122.436945532546)",152761057-RC3 -160983861,62,16039125,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:09:45 PM,04/07/2016 10:11:09 PM,04/07/2016 10:11:17 PM,04/07/2016 10:11:25 PM,04/07/2016 10:21:27 PM,04/07/2016 10:41:25 PM,04/07/2016 11:09:23 PM,Code 2 Transport,04/07/2016 11:37:02 PM,1000 Block of DOLORES ST,San Francisco,94110,B06,11,5513,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7526439245964, -122.425087778383)",160983861-62 -151591837,AM12,15060736,Medical Incident,06/08/2015,06/08/2015,06/08/2015 01:01:11 PM,06/08/2015 01:01:44 PM,06/08/2015 01:08:50 PM,06/08/2015 01:09:34 PM,06/08/2015 01:13:51 PM,06/08/2015 01:34:58 PM,06/08/2015 01:46:20 PM,Code 2 Transport,06/08/2015 02:05:57 PM,400 Block of LIBERTY ST,San Francisco,94114,B06,11,5452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,8,Castro/Upper Market,"(37.7571444493487, -122.431267699117)",151591837-AM12 -153202763,75,15123133,Medical Incident,11/16/2015,11/16/2015,11/16/2015 05:18:31 PM,11/16/2015 05:19:35 PM,11/16/2015 05:20:00 PM,11/16/2015 05:20:13 PM,11/16/2015 05:23:21 PM,11/16/2015 05:37:27 PM,11/16/2015 05:55:34 PM,Code 2 Transport,11/16/2015 06:29:13 PM,1600 Block of KIRKWOOD AVE,San Francisco,94124,B10,25,6467,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7387417648077, -122.390854570377)",153202763-75 -151730660,T10,15065957,Alarms,06/22/2015,06/22/2015,06/22/2015 08:04:34 AM,06/22/2015 08:05:49 AM,06/22/2015 08:06:02 AM,06/22/2015 08:08:18 AM,06/22/2015 08:14:10 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Fire,06/22/2015 08:38:21 AM,1600 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,3,3,false,Alarm,1,TRUCK,2,5,5,Lone Mountain/USF,"(37.7741999233828, -122.443568815049)",151730660-T10 -150271512,61,15010390,Medical Incident,01/27/2015,01/27/2015,01/27/2015 11:49:32 AM,01/27/2015 11:49:56 AM,01/27/2015 11:50:03 AM,01/27/2015 11:51:02 AM,01/27/2015 11:55:17 AM,01/27/2015 12:22:38 PM,01/27/2015 12:41:53 PM,Code 2 Transport,01/27/2015 01:19:16 PM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",150271512-61 -160930265,61,16036694,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:47:37 AM,04/02/2016 01:49:11 AM,04/02/2016 01:49:21 AM,04/02/2016 01:49:31 AM,04/02/2016 01:53:58 AM,04/02/2016 02:15:52 AM,04/02/2016 02:21:42 AM,Code 2 Transport,04/02/2016 02:52:01 AM,MINNA ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7805353840251, -122.40816079453)",160930265-61 -142262365,E03,14078553,Medical Incident,08/14/2014,08/14/2014,08/14/2014 04:18:18 PM,08/14/2014 04:19:58 PM,08/14/2014 04:20:50 PM,08/14/2014 04:21:06 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Code 2 Transport,08/14/2014 04:21:36 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142262365-E03 -143371500,RC3,14119511,Medical Incident,12/03/2014,12/03/2014,12/03/2014 10:39:52 AM,12/03/2014 10:40:45 AM,12/03/2014 10:41:30 AM,12/03/2014 10:41:37 AM,12/03/2014 10:45:27 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Code 2 Transport,12/03/2014 11:19:33 AM,500 Block of 27TH ST,San Francisco,94131,B06,11,5553,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,8,Noe Valley,"(37.7464538550572, -122.432847009979)",143371500-RC3 -153053359,E41,15117269,Medical Incident,11/01/2015,11/01/2015,11/01/2015 05:21:59 PM,11/01/2015 05:22:55 PM,11/01/2015 05:23:08 PM,11/01/2015 05:24:45 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,04/25/2016 01:07:27 PM,Against Medical Advice,11/01/2015 05:34:09 PM,900 Block of BUSH ST,San Francisco,94109,B01,41,1446,3,3,3,false,Non Life-threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7896888465146, -122.412913104115)",153053359-E41 -150880373,64,15033454,Medical Incident,03/29/2015,03/28/2015,03/29/2015 02:15:32 AM,03/29/2015 02:15:58 AM,03/29/2015 02:16:38 AM,03/29/2015 02:17:08 AM,03/29/2015 02:21:49 AM,03/29/2015 03:03:37 AM,03/29/2015 03:11:37 AM,Code 3 Transport,03/29/2015 03:47:24 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",150880373-64 -152043457,82,15077870,Medical Incident,07/23/2015,07/23/2015,07/23/2015 09:07:08 PM,07/23/2015 09:07:42 PM,07/23/2015 09:08:16 PM,07/23/2015 09:08:25 PM,07/23/2015 09:10:51 PM,07/23/2015 09:37:52 PM,07/23/2015 10:06:34 PM,Code 2 Transport,07/23/2015 10:41:29 PM,1700 Block of JACKSON ST,San Francisco,94109,B04,38,3231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7938847529032, -122.423882414366)",152043457-82 -141652330,81,14056976,Medical Incident,06/14/2014,06/14/2014,06/14/2014 04:30:37 PM,06/14/2014 04:31:10 PM,06/14/2014 04:31:37 PM,06/14/2014 04:35:08 PM,06/14/2014 04:35:08 PM,06/14/2014 04:41:05 PM,06/14/2014 05:04:10 PM,Code 2 Transport,06/14/2014 05:19:08 PM,JONES ST/GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",141652330-81 -142292670,73,14079658,Traffic Collision,08/17/2014,08/17/2014,08/17/2014 05:29:21 PM,08/17/2014 05:30:35 PM,08/17/2014 05:31:39 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,No Merit,08/17/2014 05:32:12 PM,VALENCIA ST/25TH ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7505058278022, -122.420507005779)",142292670-73 -141220237,E06,14041353,Traffic Collision,05/02/2014,05/02/2014,05/02/2014 02:37:20 PM,05/02/2014 02:37:51 PM,05/02/2014 02:38:07 PM,05/02/2014 02:38:52 PM,05/02/2014 02:42:10 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Code 2 Transport,05/02/2014 02:50:20 PM,18TH ST/DIAMOND ST,SAN FRANCISCO,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.760758109732, -122.437190626277)",141220237-E06 -153230732,E14,15124154,Outside Fire,11/19/2015,11/19/2015,11/19/2015 08:09:50 AM,11/19/2015 08:11:34 AM,11/19/2015 08:12:21 AM,11/19/2015 08:17:05 AM,11/19/2015 08:17:05 AM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Fire,11/19/2015 08:59:20 AM,25TH AV/FULTON ST,San Francisco,94121,B07,14,7211,3,3,3,true,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7725690611121, -122.484194200958)",153230732-E14 -142340609,T13,14081223,Alarms,08/22/2014,08/21/2014,08/22/2014 06:40:33 AM,08/22/2014 06:41:36 AM,08/22/2014 06:41:55 AM,08/22/2014 06:44:06 AM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 06:46:00 AM,500 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",142340609-T13 -141353044,AP,14046290,Other,05/15/2014,05/15/2014,05/15/2014 06:02:31 PM,05/15/2014 06:02:31 PM,05/15/2014 06:02:31 PM,05/15/2014 06:02:31 PM,05/15/2014 06:02:31 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/15/2014 06:02:31 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,,2,2,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",141353044-AP -160940099,AM16,16037102,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:27:21 AM,04/03/2016 12:29:58 AM,04/03/2016 12:30:05 AM,04/03/2016 12:30:45 AM,04/03/2016 12:36:04 AM,04/03/2016 12:37:51 AM,04/03/2016 12:55:48 AM,Code 2 Transport,04/03/2016 01:16:07 AM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",160940099-AM16 -153030952,74,15116131,Medical Incident,10/30/2015,10/30/2015,10/30/2015 08:56:17 AM,10/30/2015 08:58:02 AM,10/30/2015 08:59:01 AM,10/30/2015 08:59:10 AM,10/30/2015 09:07:26 AM,10/30/2015 09:40:42 AM,10/30/2015 09:52:04 AM,Code 2 Transport,10/30/2015 10:14:57 AM,1500 Block of VAN NESS AVE,San Francisco,94109,B04,38,3155,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",153030952-74 -150713230,E36,15027241,Medical Incident,03/12/2015,03/12/2015,03/12/2015 06:36:19 PM,03/12/2015 06:42:10 PM,03/12/2015 06:42:24 PM,03/12/2015 06:45:19 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Code 2 Transport,03/12/2015 06:56:30 PM,11TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Mission,"(37.7706298531325, -122.41247993514)",150713230-E36 -160930800,79,16036753,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:17:07 AM,04/02/2016 08:17:40 AM,04/02/2016 08:18:52 AM,04/02/2016 08:19:05 AM,04/02/2016 08:25:13 AM,04/02/2016 08:35:14 AM,04/02/2016 08:44:41 AM,Code 2 Transport,04/02/2016 09:07:41 AM,700 Block of 2ND AVE,San Francisco,94118,B07,31,7121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7748635124053, -122.459606389961)",160930800-79 -152760596,60,15105652,Medical Incident,10/03/2015,10/02/2015,10/03/2015 04:57:11 AM,10/03/2015 04:59:53 AM,10/03/2015 05:00:17 AM,10/03/2015 05:01:02 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Unable to Locate,10/03/2015 05:08:45 AM,ATHENS ST/ROLPH ST,San Francisco,94112,B09,43,6173,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7128131325429, -122.434999159668)",152760596-60 -153433712,64,15132185,Medical Incident,12/09/2015,12/09/2015,12/09/2015 08:43:49 PM,12/09/2015 08:45:51 PM,12/09/2015 08:46:26 PM,12/09/2015 08:49:02 PM,12/09/2015 08:57:32 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/09/2015 10:16:39 PM,1100 Block of GIRARD ST,San Francisco,94134,B10,44,6317,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7183608550035, -122.40093599207)",153433712-64 -150050396,E38,15001714,Medical Incident,01/05/2015,01/04/2015,01/05/2015 04:54:11 AM,01/05/2015 04:56:08 AM,01/05/2015 04:57:05 AM,01/05/2015 04:59:29 AM,01/05/2015 05:02:40 AM,04/25/2016 01:13:01 PM,04/25/2016 01:13:01 PM,Code 2 Transport,01/05/2015 05:18:30 AM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",150050396-E38 -142743076,E28,14096194,Medical Incident,10/01/2014,10/01/2014,10/01/2014 06:24:45 PM,10/01/2014 06:25:09 PM,10/01/2014 06:25:23 PM,10/01/2014 06:26:53 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Code 2 Transport,10/01/2014 06:36:33 PM,JONES ST/JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8080133240409, -122.417445939002)",142743076-E28 -153290308,E06,15126485,Alarms,11/25/2015,11/24/2015,11/25/2015 04:14:59 AM,11/25/2015 04:16:14 AM,11/25/2015 04:18:22 AM,11/25/2015 04:20:43 AM,11/25/2015 04:22:55 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 04:32:37 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,2,2,9,Mission,"(37.7661343875141, -122.421935077177)",153290308-E06 -153191451,RC2,15122636,Traffic Collision,11/15/2015,11/15/2015,11/15/2015 11:32:26 AM,11/15/2015 11:33:12 AM,11/15/2015 11:44:27 AM,11/15/2015 11:44:27 AM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Other,11/15/2015 11:46:26 AM,POST ST/DIVISADERO ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,5,5,5,Japantown,"(37.7843186737916, -122.439684677541)",153191451-RC2 -141370936,E18,14046870,Medical Incident,05/17/2014,05/17/2014,05/17/2014 08:43:52 AM,05/17/2014 08:45:22 AM,05/17/2014 08:51:15 AM,05/17/2014 08:51:15 AM,05/17/2014 08:56:07 AM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,Code 2 Transport,05/17/2014 09:06:26 AM,1200 Block of 32ND AVE,San Francisco,94122,B08,23,7537,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7638872213875, -122.491188755025)",141370936-E18 -143330842,E12,14117937,Medical Incident,11/29/2014,11/29/2014,11/29/2014 08:47:59 AM,11/29/2014 08:48:54 AM,11/29/2014 08:52:30 AM,11/29/2014 08:53:53 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Code 2 Transport,11/29/2014 08:57:42 AM,1200 Block of 16TH AVE,San Francisco,94122,B08,22,7367,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",143330842-E12 -141170241,E15,14039553,Medical Incident,04/27/2014,04/27/2014,04/27/2014 04:40:34 PM,04/27/2014 04:43:09 PM,04/27/2014 04:43:33 PM,04/27/2014 04:44:50 PM,04/27/2014 04:47:21 PM,04/25/2016 01:17:39 PM,04/25/2016 01:17:39 PM,Code 2 Transport,04/27/2014 05:04:38 PM,2400 Block of ALEMANY BLVD,SAN FRANCISCO,94112,B09,15,8333,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7155539993329, -122.445057537091)",141170241-E15 -153213350,E16,15123588,Smoke Investigation (Outside),11/17/2015,11/17/2015,11/17/2015 06:58:09 PM,11/17/2015 06:59:20 PM,11/17/2015 06:59:36 PM,11/17/2015 07:00:18 PM,11/17/2015 07:03:25 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 07:06:54 PM,1500 Block of FRANCISCO ST,San Francisco,94123,B04,16,3351,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8025340608773, -122.430687416035)",153213350-E16 -160973064,KM06,16038538,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:43:03 PM,04/06/2016 04:45:21 PM,04/06/2016 04:46:00 PM,04/06/2016 04:51:09 PM,04/06/2016 04:56:23 PM,04/06/2016 05:14:15 PM,04/06/2016 05:32:10 PM,Code 2 Transport,04/06/2016 06:18:05 PM,18TH ST/SANCHEZ ST,San Francisco,94114,B02,6,5421,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7611554774347, -122.430573567918)",160973064-KM06 -150263135,B06,15010160,Alarms,01/26/2015,01/26/2015,01/26/2015 06:41:14 PM,01/26/2015 06:42:24 PM,01/26/2015 06:42:34 PM,01/26/2015 06:43:19 PM,01/26/2015 06:47:18 PM,04/25/2016 01:12:37 PM,04/25/2016 01:12:37 PM,Fire,01/26/2015 06:47:38 PM,0 Block of ELIZABETH ST,San Francisco,94110,B06,11,5524,3,3,3,false,Alarm,1,CHIEF,3,6,8,Mission,"(37.7528716382254, -122.422232538943)",150263135-B06 -151293549,75,15049132,Medical Incident,05/09/2015,05/09/2015,05/09/2015 09:41:13 PM,05/09/2015 09:41:48 PM,05/09/2015 09:42:08 PM,05/09/2015 09:42:34 PM,05/09/2015 09:51:21 PM,05/09/2015 10:06:01 PM,05/09/2015 10:15:29 PM,Code 2 Transport,05/09/2015 10:49:34 PM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",151293549-75 -142560755,E01,14089322,Medical Incident,09/13/2014,09/12/2014,09/13/2014 06:56:33 AM,09/13/2014 06:57:21 AM,09/13/2014 06:58:37 AM,09/13/2014 06:59:53 AM,09/13/2014 07:04:02 AM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Code 2 Transport,09/13/2014 07:07:47 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",142560755-E01 -142440922,T03,14084952,Medical Incident,09/01/2014,09/01/2014,09/01/2014 09:06:25 AM,09/01/2014 09:07:47 AM,09/01/2014 09:08:33 AM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Code 2 Transport,09/01/2014 09:09:25 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Potentially Life-Threatening,1,TRUCK,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",142440922-T03 -160940590,64,16037151,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:18:46 AM,04/03/2016 04:21:30 AM,04/03/2016 04:22:13 AM,04/03/2016 04:22:40 AM,04/03/2016 04:30:51 AM,04/03/2016 04:44:02 AM,04/03/2016 05:03:11 AM,Code 2 Transport,04/03/2016 05:48:30 AM,200 Block of GUTTENBERG ST,San Francisco,94112,B09,43,6218,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7096059467883, -122.442898080759)",160940590-64 -160982566,76,16038997,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:44:05 PM,04/07/2016 03:47:29 PM,04/07/2016 05:22:06 PM,04/07/2016 05:22:14 PM,04/07/2016 05:33:46 PM,04/07/2016 05:47:46 PM,04/07/2016 06:02:07 PM,Code 2 Transport,04/07/2016 06:16:03 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160982566-76 -160980191,52,16038743,Medical Incident,04/07/2016,04/06/2016,04/07/2016 01:27:32 AM,04/07/2016 01:28:04 AM,04/07/2016 01:30:13 AM,04/07/2016 01:30:32 AM,04/07/2016 01:37:53 AM,04/07/2016 01:59:00 AM,04/07/2016 02:12:34 AM,Code 2 Transport,04/07/2016 02:52:05 AM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160980191-52 -141670256,KM07,14057476,Medical Incident,06/16/2014,06/15/2014,06/16/2014 02:59:09 AM,06/16/2014 02:59:35 AM,06/16/2014 02:59:51 AM,06/16/2014 03:00:34 AM,06/16/2014 03:03:58 AM,06/16/2014 03:35:19 AM,06/16/2014 03:49:11 AM,Code 2 Transport,06/16/2014 04:15:23 AM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",141670256-KM07 -160942133,KM05,16037293,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:31:49 PM,04/03/2016 02:34:33 PM,04/03/2016 02:48:10 PM,04/03/2016 02:48:10 PM,04/03/2016 03:02:51 PM,04/03/2016 03:17:21 PM,04/03/2016 03:33:53 PM,Code 2 Transport,04/03/2016 04:03:02 PM,11TH ST/MISSION ST,San Francisco,94103,B02,36,5117,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160942133-KM05 -151793041,AM54,15068386,Medical Incident,06/28/2015,06/28/2015,06/28/2015 06:08:33 PM,06/28/2015 06:11:07 PM,06/28/2015 06:16:26 PM,06/28/2015 07:03:56 PM,06/28/2015 07:03:56 PM,06/28/2015 07:03:57 PM,06/28/2015 07:32:45 PM,Code 2 Transport,06/28/2015 07:33:20 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",151793041-AM54 -160931995,AM10,16036893,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:20:54 PM,04/02/2016 02:22:15 PM,04/02/2016 02:35:37 PM,04/02/2016 02:36:28 PM,04/02/2016 02:45:05 PM,04/02/2016 02:48:36 PM,04/02/2016 03:02:10 PM,Code 2 Transport,04/02/2016 03:44:53 PM,SAN JOSE AV/NIAGARA AV,San Francisco,94112,B09,15,8312,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7194811206803, -122.447562061428)",160931995-AM10 -152991632,54,15114761,Medical Incident,10/26/2015,10/26/2015,10/26/2015 12:09:56 PM,10/26/2015 12:10:57 PM,10/26/2015 12:11:20 PM,10/26/2015 12:11:50 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Patient Declined Transport,10/26/2015 12:17:59 PM,500 Block of BARNEVELD AVE,San Francisco,94124,B10,9,6427,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7395094141534, -122.404475255785)",152991632-54 -143132312,FB1,14110968,Outside Fire,11/09/2014,11/09/2014,11/09/2014 04:40:11 PM,11/09/2014 04:40:11 PM,11/09/2014 04:40:40 PM,11/09/2014 04:42:11 PM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Fire,11/09/2014 04:48:10 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,3,3,3,false,Alarm,1,SUPPORT,4,1,3,North Beach,"(37.8084350175869, -122.410774214375)",143132312-FB1 -161002406,86,16039853,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:16:52 PM,04/09/2016 05:17:33 PM,04/09/2016 05:17:44 PM,04/09/2016 05:22:24 PM,04/09/2016 05:24:18 PM,04/09/2016 05:46:36 PM,04/09/2016 06:10:58 PM,Code 2 Transport,04/09/2016 06:47:29 PM,1600 Block of HOLLOWAY AVE,San Francisco,94132,B08,19,8871,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",161002406-86 -152533120,83,15096829,Medical Incident,09/10/2015,09/10/2015,09/10/2015 06:15:50 PM,09/10/2015 06:17:36 PM,09/10/2015 06:17:55 PM,09/10/2015 06:18:34 PM,09/10/2015 06:29:03 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Cancelled,09/10/2015 06:38:15 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",152533120-83 -153290086,E15,15126459,Medical Incident,11/25/2015,11/24/2015,11/25/2015 12:39:44 AM,11/25/2015 12:40:25 AM,11/25/2015 12:41:54 AM,11/25/2015 12:43:50 AM,11/25/2015 12:47:31 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Code 2 Transport,11/25/2015 01:04:37 AM,300 Block of ROME ST,San Francisco,94112,B09,33,8344,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7160634247508, -122.448008831975)",153290086-E15 -141230163,E18,14041657,Medical Incident,05/03/2014,05/03/2014,05/03/2014 12:47:28 PM,05/03/2014 12:48:05 PM,05/03/2014 12:48:36 PM,05/03/2014 12:50:27 PM,05/03/2014 12:52:36 PM,04/25/2016 01:17:32 PM,04/25/2016 01:17:32 PM,Code 2 Transport,05/03/2014 01:02:28 PM,37TH AV/WAWONA ST,SAN FRANCISCO,94116,B08,18,7613,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7366049276125, -122.494590812025)",141230163-E18 -160982383,66,16038976,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:00:15 PM,04/07/2016 03:00:15 PM,04/07/2016 03:03:19 PM,04/07/2016 03:05:32 PM,04/07/2016 03:24:15 PM,04/07/2016 03:36:52 PM,04/07/2016 04:13:25 PM,Code 2 Transport,04/07/2016 04:49:44 PM,HYDE ST/FULTON ST,San Francisco,94102,B02,36,1552,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",160982383-66 -142920150,82,14102841,Medical Incident,10/19/2014,10/18/2014,10/19/2014 12:38:00 AM,10/19/2014 12:41:53 AM,10/19/2014 12:42:45 AM,10/19/2014 12:42:58 AM,10/19/2014 12:57:08 AM,10/19/2014 01:06:26 AM,10/19/2014 01:22:51 AM,Code 2 Transport,10/19/2014 01:53:09 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",142920150-82 -161001638,86,16039768,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:16:04 PM,04/09/2016 01:16:04 PM,04/09/2016 01:16:28 PM,04/09/2016 01:16:44 PM,04/09/2016 01:22:28 PM,04/09/2016 01:27:17 PM,04/09/2016 02:01:26 PM,Code 2 Transport,04/09/2016 02:51:02 PM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",161001638-86 -143091587,E08,14109368,Medical Incident,11/05/2014,11/05/2014,11/05/2014 12:36:14 PM,11/05/2014 12:36:14 PM,11/05/2014 12:37:15 PM,11/05/2014 12:38:45 PM,11/05/2014 12:41:05 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Code 2 Transport,11/05/2014 01:11:43 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,A,E,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",143091587-E08 -160961230,74,16037958,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:34:42 AM,04/05/2016 10:34:42 AM,04/05/2016 10:36:03 AM,04/05/2016 10:36:10 AM,04/05/2016 10:39:20 AM,04/05/2016 10:51:13 AM,04/05/2016 11:12:34 AM,Code 2 Transport,04/05/2016 11:23:59 AM,HOWARD ST/3RD ST,San Francisco,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",160961230-74 -142753733,73,14096663,Medical Incident,10/02/2014,10/02/2014,10/02/2014 09:00:16 PM,10/02/2014 09:01:42 PM,10/02/2014 09:02:05 PM,10/02/2014 09:02:13 PM,10/02/2014 09:13:31 PM,10/02/2014 09:33:40 PM,10/02/2014 10:06:13 PM,Code 2 Transport,10/02/2014 10:18:15 PM,100 Block of JOOST AVE,San Francisco,94131,B09,26,8214,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,8,West of Twin Peaks,"(37.7324276673535, -122.438605252758)",142753733-73 -160941853,KM08,16037263,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:13:25 PM,04/03/2016 01:15:13 PM,04/03/2016 01:17:07 PM,04/03/2016 01:17:39 PM,04/03/2016 01:24:52 PM,04/03/2016 01:34:16 PM,04/03/2016 01:59:31 PM,Code 2 Transport,04/03/2016 02:26:22 PM,NATOMA ST/5TH ST,San Francisco,94103,B03,1,2245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.781925017269, -122.405466275848)",160941853-KM08 -142890998,E02,14101788,Other,10/16/2014,10/16/2014,10/16/2014 09:00:52 AM,10/16/2014 09:02:07 AM,10/16/2014 09:04:40 AM,10/16/2014 09:05:24 AM,10/16/2014 09:09:35 AM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Fire,10/16/2014 09:11:12 AM,WASHINGTON ST/STOCKTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",142890998-E02 -160980370,KM07,16038767,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:24:14 AM,04/07/2016 03:26:36 AM,04/07/2016 03:27:16 AM,04/07/2016 03:27:42 AM,04/07/2016 03:30:00 AM,04/07/2016 03:35:32 AM,04/07/2016 04:28:40 AM,Code 2 Transport,04/07/2016 04:38:10 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",160980370-KM07 -142533953,E09,14088495,Structure Fire,09/10/2014,09/10/2014,09/10/2014 10:21:13 PM,09/10/2014 10:21:13 PM,09/10/2014 10:21:18 PM,09/10/2014 10:22:37 PM,09/10/2014 10:23:41 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Fire,09/10/2014 10:24:21 PM,2700 Block of 25TH ST,San Francisco,94110,B10,9,2624,3,3,3,true,Alarm,1,ENGINE,1,10,10,Mission,"(37.7517018091907, -122.405708343282)",142533953-E09 -151932850,T13,15073754,Alarms,07/12/2015,07/12/2015,07/12/2015 06:06:29 PM,07/12/2015 06:07:13 PM,07/12/2015 06:07:36 PM,07/12/2015 06:09:16 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 06:10:28 PM,100 Block of STEUART ST,San Francisco,94105,B03,35,2111,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7926568376756, -122.39236449327)",151932850-T13 -161000076,AM18,16039559,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:27:02 AM,04/09/2016 12:27:15 AM,04/09/2016 12:28:04 AM,04/09/2016 12:28:41 AM,04/09/2016 12:35:22 AM,04/09/2016 12:59:39 AM,04/09/2016 01:24:24 AM,Code 2 Transport,04/09/2016 01:58:29 AM,4000 Block of MISSION ST,San Francisco,94112,B06,32,5633,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Bernal Heights,"(37.7321745845353, -122.427793514714)",161000076-AM18 -160991026,KM11,16039239,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:55:30 AM,04/08/2016 09:57:02 AM,04/08/2016 09:57:52 AM,04/08/2016 09:58:15 AM,04/08/2016 10:05:41 AM,04/08/2016 10:31:08 AM,04/08/2016 10:43:37 AM,Code 2 Transport,04/08/2016 11:32:15 AM,2200 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Japantown,"(37.7843705673053, -122.438841200784)",160991026-KM11 -141200389,E02,14040723,Alarms,04/30/2014,04/30/2014,04/30/2014 10:07:40 PM,04/30/2014 10:09:00 PM,04/30/2014 10:09:16 PM,04/30/2014 10:10:56 PM,04/30/2014 10:12:42 PM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Fire,04/30/2014 10:15:02 PM,700 Block of MONTGOMERY ST,SAN FRANCISCO,94111,B01,13,1232,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7959659233971, -122.403475165635)",141200389-E02 -141250287,E36,14042428,Medical Incident,05/05/2014,05/05/2014,05/05/2014 04:24:43 PM,05/05/2014 04:27:59 PM,05/05/2014 04:31:22 PM,05/05/2014 04:33:02 PM,05/05/2014 04:41:56 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Gone on Arrival,05/05/2014 04:42:05 PM,VALENCIA ST/16TH ST,SAN FRANCISCO,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",141250287-E36 -160932172,61,16036909,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:10:58 PM,04/02/2016 03:12:17 PM,04/02/2016 03:14:53 PM,04/02/2016 03:15:26 PM,04/02/2016 03:33:02 PM,04/02/2016 03:49:14 PM,04/02/2016 04:16:36 PM,Code 2 Transport,04/02/2016 05:08:19 PM,GRANT AV/PACIFIC AV,San Francisco,94133,B01,2,1312,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7969019046439, -122.406827678757)",160932172-61 -160982538,77,16038991,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:37:26 PM,04/07/2016 03:40:23 PM,04/07/2016 03:42:09 PM,04/07/2016 03:42:24 PM,04/07/2016 03:50:26 PM,04/07/2016 04:13:01 PM,04/07/2016 04:33:55 PM,Code 2 Transport,04/07/2016 04:47:03 PM,1200 Block of PAGE ST,San Francisco,94117,B05,21,4251,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7717293101583, -122.441377954936)",160982538-77 -153452198,62,15132839,Medical Incident,12/11/2015,12/11/2015,12/11/2015 02:40:42 PM,12/11/2015 02:40:42 PM,12/11/2015 02:41:47 PM,12/11/2015 02:42:02 PM,12/11/2015 02:57:12 PM,12/11/2015 03:11:31 PM,12/11/2015 03:20:58 PM,Code 3 Transport,12/11/2015 04:09:30 PM,13TH ST/FOLSOM ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7695911594816, -122.415577014994)",153452198-62 -152503173,E44,15095637,Medical Incident,09/07/2015,09/07/2015,09/07/2015 08:23:44 PM,09/07/2015 08:25:11 PM,09/07/2015 08:25:46 PM,09/07/2015 08:27:18 PM,09/07/2015 08:33:06 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Code 2 Transport,09/07/2015 08:44:04 PM,100 Block of HAHN ST,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7126910626884, -122.415580395245)",152503173-E44 -160993864,60,16039510,Traffic Collision,04/08/2016,04/08/2016,04/08/2016 10:35:11 PM,04/08/2016 10:35:11 PM,04/08/2016 10:36:23 PM,04/08/2016 10:36:34 PM,04/08/2016 10:47:35 PM,04/08/2016 11:11:45 PM,04/08/2016 11:24:35 PM,Other,04/09/2016 01:00:32 AM,5TH ST/TOWNSEND ST,San Francisco,94107,B03,8,2236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7753322431291, -122.397206310605)",160993864-60 -153003901,E29,15115304,Alarms,10/27/2015,10/27/2015,10/27/2015 11:21:52 PM,10/27/2015 11:23:15 PM,10/27/2015 11:24:08 PM,10/27/2015 11:25:32 PM,10/27/2015 11:28:02 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/27/2015 11:32:25 PM,100 Block of POTRERO AVE,San Francisco,94103,B02,29,2351,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission,"(37.7677134622868, -122.407818231121)",153003901-E29 -141631766,E32,14056199,Medical Incident,06/12/2014,06/12/2014,06/12/2014 01:45:38 PM,06/12/2014 01:48:26 PM,06/12/2014 01:49:12 PM,06/12/2014 01:49:54 PM,06/12/2014 01:55:50 PM,04/25/2016 01:16:49 PM,04/25/2016 01:16:49 PM,No Merit,06/12/2014 01:58:55 PM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",141631766-E32 -142201786,E03,14076350,Medical Incident,08/08/2014,08/08/2014,08/08/2014 01:33:41 PM,08/08/2014 01:34:28 PM,08/08/2014 01:35:40 PM,08/08/2014 01:35:40 PM,08/08/2014 01:37:21 PM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,Code 2 Transport,08/08/2014 01:41:58 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",142201786-E03 -143000666,E51,14105815,Alarms,10/27/2014,10/26/2014,10/27/2014 07:56:14 AM,10/27/2014 07:57:20 AM,10/27/2014 07:58:00 AM,10/27/2014 08:00:11 AM,10/27/2014 08:01:52 AM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Fire,10/27/2014 08:08:46 AM,100 Block of FISHER LOOP,Presidio,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.7998898584318, -122.461819826995)",143000666-E51 -143082115,E17,14109034,Medical Incident,11/04/2014,11/04/2014,11/04/2014 02:35:23 PM,11/04/2014 02:37:02 PM,11/04/2014 02:40:01 PM,11/04/2014 02:43:53 PM,11/04/2014 02:43:53 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 03:09:48 PM,1200 Block of LA SALLE AVE,San Francisco,94124,B10,17,668,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",143082115-E17 -160933628,62,16037060,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:02:32 PM,04/02/2016 10:03:59 PM,04/02/2016 10:04:35 PM,04/02/2016 10:05:08 PM,04/02/2016 10:09:50 PM,04/02/2016 10:24:24 PM,04/02/2016 10:50:50 PM,Code 2 Transport,04/02/2016 11:15:39 PM,1100 Block of FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7756232938088, -122.409165302353)",160933628-62 -153221276,54,15123810,Medical Incident,11/18/2015,11/18/2015,11/18/2015 10:16:53 AM,11/18/2015 10:17:40 AM,11/18/2015 10:18:08 AM,11/18/2015 10:18:39 AM,11/18/2015 10:25:59 AM,11/18/2015 10:40:08 AM,11/18/2015 10:59:03 AM,Code 2 Transport,11/18/2015 11:30:11 AM,100 Block of ARCH ST,San Francisco,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7133480410118, -122.467014365606)",153221276-54 -141383961,T01,14047495,Alarms,05/18/2014,05/18/2014,05/18/2014 11:48:53 PM,05/18/2014 11:49:55 PM,05/18/2014 11:50:07 PM,05/18/2014 11:51:40 PM,05/18/2014 11:54:03 PM,04/25/2016 01:17:15 PM,04/25/2016 01:17:15 PM,Fire,05/18/2014 11:58:30 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",141383961-T01 -151081760,KM11,15040907,Medical Incident,04/18/2015,04/18/2015,04/18/2015 01:16:14 PM,04/18/2015 01:18:08 PM,04/18/2015 01:18:19 PM,04/18/2015 01:19:04 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,04/25/2016 01:11:05 PM,No Merit,04/18/2015 01:25:51 PM,2000 Block of 46TH AVE,San Francisco,94116,B08,23,7663,3,3,3,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.748304163787, -122.5050122918)",151081760-KM11 -151041025,E18,15039282,Medical Incident,04/14/2015,04/14/2015,04/14/2015 09:46:09 AM,04/14/2015 09:47:42 AM,04/14/2015 09:49:02 AM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Code 2 Transport,04/14/2015 09:51:13 AM,600 Block of 33RD AVE,San Francisco,94121,B07,14,7244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7768393829407, -122.493175110923)",151041025-E18 -150982558,B01,15037155,Alarms,04/08/2015,04/08/2015,04/08/2015 04:32:32 PM,04/08/2015 04:33:43 PM,04/08/2015 04:34:05 PM,04/08/2015 04:35:47 PM,04/08/2015 04:37:06 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Fire,04/08/2015 04:51:25 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Alarm,1,CHIEF,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",150982558-B01 -151972021,KM08,15075154,Medical Incident,07/16/2015,07/16/2015,07/16/2015 02:39:03 PM,07/16/2015 02:39:13 PM,07/16/2015 02:39:25 PM,07/16/2015 02:40:21 PM,07/16/2015 02:43:20 PM,07/16/2015 02:52:02 PM,07/16/2015 02:59:07 PM,Code 2 Transport,07/16/2015 03:28:03 PM,900 Block of POLK ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",151972021-KM08 -141913314,E12,14066344,Medical Incident,07/10/2014,07/10/2014,07/10/2014 08:48:23 PM,07/10/2014 08:49:17 PM,07/10/2014 08:49:54 PM,07/10/2014 08:51:44 PM,07/10/2014 08:54:13 PM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Code 2 Transport,07/10/2014 09:08:56 PM,7TH AV/LINCOLN WY,San Francisco,94122,B08,22,7332,3,2,2,true,Non Life-threatening,1,ENGINE,1,7,5,Golden Gate Park,"(37.7660718301398, -122.464312454358)",141913314-E12 -143642188,E13,14130259,Traffic Collision,12/30/2014,12/30/2014,12/30/2014 03:46:11 PM,12/30/2014 03:46:11 PM,12/30/2014 03:46:28 PM,12/30/2014 03:47:16 PM,12/30/2014 03:52:53 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 04:00:58 PM,BUSH ST/KEARNY ST,San Francisco,94104,B01,13,1235,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",143642188-E13 -160963010,KM11,16038118,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:33:13 PM,04/05/2016 05:33:13 PM,04/05/2016 05:33:22 PM,04/05/2016 05:33:54 PM,04/05/2016 05:41:26 PM,04/05/2016 06:15:31 PM,04/05/2016 06:29:54 PM,Code 2 Transport,04/05/2016 07:02:20 PM,0 Block of EMERY LN,San Francisco,94133,B01,2,1333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",160963010-KM11 -160953344,65,16037763,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:05:19 PM,04/04/2016 07:05:19 PM,04/04/2016 07:08:20 PM,04/04/2016 07:08:36 PM,04/04/2016 07:21:34 PM,04/04/2016 07:46:50 PM,04/04/2016 08:11:58 PM,Code 2 Transport,04/04/2016 08:55:26 PM,17TH ST/DIAMOND ST,San Francisco,94114,B05,6,5253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.762354748364, -122.437342368442)",160953344-65 -160992555,52,16039388,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:32:26 PM,04/08/2016 04:32:26 PM,04/08/2016 04:33:01 PM,04/08/2016 04:33:08 PM,04/08/2016 04:47:19 PM,04/08/2016 05:07:39 PM,04/08/2016 05:29:06 PM,Code 2 Transport,04/08/2016 06:02:02 PM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",160992555-52 -151532626,AM16,15058380,Medical Incident,06/02/2015,06/02/2015,06/02/2015 04:59:17 PM,06/02/2015 04:59:17 PM,06/02/2015 04:59:40 PM,06/02/2015 05:00:02 PM,06/02/2015 05:26:03 PM,06/02/2015 05:45:13 PM,06/02/2015 06:34:13 PM,Code 2 Transport,06/02/2015 06:52:07 PM,22ND ST/CAPP ST,San Francisco,94110,B06,7,5472,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7555024984315, -122.417658993752)",151532626-AM16 -150583490,75,15022319,Medical Incident,02/27/2015,02/27/2015,02/27/2015 08:56:24 PM,02/27/2015 08:58:02 PM,02/27/2015 08:58:41 PM,02/27/2015 08:58:45 PM,02/27/2015 09:10:04 PM,02/27/2015 09:27:27 PM,02/27/2015 09:49:02 PM,Code 2 Transport,02/27/2015 10:06:40 PM,1300 Block of JUDAH ST,San Francisco,94122,B08,22,7371,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Inner Sunset,"(37.7618193942181, -122.476470689515)",150583490-75 -160973479,54,16038593,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:09:08 PM,04/06/2016 06:11:11 PM,04/06/2016 06:12:21 PM,04/06/2016 06:13:06 PM,04/06/2016 06:14:20 PM,04/06/2016 06:23:02 PM,04/06/2016 06:48:36 PM,Code 2 Transport,04/06/2016 07:22:38 PM,LARKIN ST/FERN ST,San Francisco,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7884323407324, -122.418559316151)",160973479-54 -160941654,KM04,16037251,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:11:49 PM,04/03/2016 12:12:37 PM,04/03/2016 12:12:50 PM,04/03/2016 12:13:26 PM,04/03/2016 12:18:19 PM,04/03/2016 12:44:09 PM,04/03/2016 12:57:38 PM,Code 2 Transport,04/03/2016 01:44:12 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160941654-KM04 -143552153,T03,14126948,Structure Fire,12/21/2014,12/21/2014,12/21/2014 02:14:09 PM,12/21/2014 02:14:31 PM,12/21/2014 02:14:40 PM,12/21/2014 02:15:49 PM,12/21/2014 02:16:33 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 02:22:02 PM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,false,Alarm,1,TRUCK,2,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",143552153-T03 -153280392,E33,15126123,Medical Incident,11/24/2015,11/23/2015,11/24/2015 05:39:31 AM,11/24/2015 05:40:44 AM,11/24/2015 05:40:53 AM,11/24/2015 05:42:55 AM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Code 2 Transport,11/24/2015 05:46:45 AM,200 Block of MONTICELLO ST,San Francisco,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7187646692644, -122.470673338489)",153280392-E33 -142383937,T05,14082972,Medical Incident,08/26/2014,08/26/2014,08/26/2014 11:25:19 PM,08/26/2014 11:26:46 PM,08/26/2014 11:27:25 PM,08/26/2014 11:28:40 PM,08/26/2014 11:33:43 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Code 2 Transport,08/26/2014 11:34:25 PM,WEBSTER ST/MCALLISTER ST,San Francisco,94117,B05,5,3521,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,2,5,Western Addition,"(37.7788509281441, -122.43004726646)",142383937-T05 -152843297,E05,15109189,Alarms,10/11/2015,10/11/2015,10/11/2015 07:08:36 PM,10/11/2015 07:10:27 PM,10/11/2015 07:10:37 PM,10/11/2015 07:11:14 PM,10/11/2015 07:13:21 PM,04/25/2016 01:07:49 PM,04/25/2016 01:07:49 PM,Fire,10/11/2015 07:25:10 PM,1000 Block of EDDY ST,San Francisco,94109,B02,5,3262,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",152843297-E05 -151861479,E38,15071010,Medical Incident,07/05/2015,07/05/2015,07/05/2015 11:02:21 AM,07/05/2015 11:03:01 AM,07/05/2015 11:03:46 AM,07/05/2015 11:04:06 AM,07/05/2015 11:06:49 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Code 2 Transport,07/05/2015 11:16:56 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,E,3,false,Potentially Life-Threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",151861479-E38 -153020362,B04,15115726,Alarms,10/29/2015,10/28/2015,10/29/2015 04:08:07 AM,10/29/2015 04:09:52 AM,10/29/2015 04:10:51 AM,10/29/2015 04:12:40 AM,10/29/2015 04:15:43 AM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/29/2015 04:19:55 AM,1800 Block of POST ST,San Francisco,94115,B04,5,3513,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.785207581828, -122.432213785968)",153020362-B04 -160964131,76,16038216,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:05:31 PM,04/05/2016 11:06:02 PM,04/05/2016 11:07:22 PM,04/05/2016 11:07:33 PM,04/05/2016 11:22:36 PM,04/05/2016 11:34:25 PM,04/05/2016 11:50:48 PM,Code 2 Transport,04/06/2016 12:02:22 AM,200 Block of BLK TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836778741421, -122.410928353347)",160964131-76 -153121491,E32,15119922,Medical Incident,11/08/2015,11/08/2015,11/08/2015 12:14:04 PM,11/08/2015 12:14:46 PM,11/08/2015 12:16:14 PM,11/08/2015 12:17:01 PM,11/08/2015 12:21:03 PM,04/25/2016 01:07:19 PM,04/25/2016 01:07:19 PM,Code 2 Transport,11/08/2015 12:46:07 PM,300 Block of ADDISON ST,San Francisco,94131,B06,26,8153,3,E,3,false,Potentially Life-Threatening,1,ENGINE,2,6,8,Glen Park,"(37.7400105468901, -122.435088097166)",153121491-E32 -141601448,E28,14055153,Medical Incident,06/09/2014,06/09/2014,06/09/2014 12:29:43 PM,06/09/2014 12:29:43 PM,06/09/2014 12:29:55 PM,06/09/2014 12:31:11 PM,06/09/2014 12:33:38 PM,04/25/2016 01:16:52 PM,04/25/2016 01:16:52 PM,Code 2 Transport,06/09/2014 12:59:42 PM,BEACH ST/MASON ST,San Francisco,94133,B01,28,1344,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8074825129146, -122.41397500769)",141601448-E28 -152033938,KM07,15077547,Medical Incident,07/22/2015,07/22/2015,07/22/2015 11:39:44 PM,07/22/2015 11:39:44 PM,07/22/2015 11:40:29 PM,07/22/2015 11:41:43 PM,07/22/2015 11:52:49 PM,07/23/2015 12:02:24 AM,07/23/2015 12:09:19 AM,Code 2 Transport,07/23/2015 01:12:40 AM,0 Block of ROSEMONT PL,San Francisco,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7683700727601, -122.425508057106)",152033938-KM07 -161000406,70,16039608,Traffic Collision,04/09/2016,04/08/2016,04/09/2016 03:05:46 AM,04/09/2016 03:07:04 AM,04/09/2016 03:09:18 AM,04/09/2016 03:09:18 AM,04/09/2016 03:15:31 AM,04/09/2016 03:21:35 AM,04/09/2016 03:42:44 AM,Code 2 Transport,04/09/2016 04:23:35 AM,2400 Block of 14TH AV,San Francisco,94116,B08,40,7355,2,3,3,true,Potentially Life-Threatening,1,MEDIC,4,8,7,West of Twin Peaks,"(37.7423541053888, -122.470238987635)",161000406-70 -151761555,T02,15067021,Alarms,06/25/2015,06/25/2015,06/25/2015 12:05:24 PM,06/25/2015 12:06:36 PM,06/25/2015 12:07:02 PM,06/25/2015 12:09:08 PM,06/25/2015 12:12:18 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,Fire,06/25/2015 12:30:23 PM,1000 Block of CHESTNUT ST,San Francisco,94109,B01,28,1613,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8028649959918, -122.420650668279)",151761555-T02 -150441517,E06,15017082,Medical Incident,02/13/2015,02/13/2015,02/13/2015 11:28:21 AM,02/13/2015 11:30:01 AM,02/13/2015 11:35:53 AM,02/13/2015 11:36:54 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/13/2015 11:52:32 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,4,2,9,Mission,"(37.7697208630457, -122.417949217834)",150441517-E06 -151362654,RS1,15051747,Structure Fire,05/16/2015,05/16/2015,05/16/2015 04:55:08 PM,05/16/2015 04:56:10 PM,05/16/2015 04:57:35 PM,05/16/2015 04:59:04 PM,05/16/2015 05:00:54 PM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Fire,05/16/2015 05:04:09 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,false,Alarm,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",151362654-RS1 -152682981,E29,15102792,Alarms,09/25/2015,09/25/2015,09/25/2015 06:00:17 PM,09/25/2015 06:01:39 PM,09/25/2015 06:02:38 PM,09/25/2015 06:05:03 PM,09/25/2015 06:22:10 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 06:39:12 PM,1500 Block of BRYANT ST,San Francisco,94103,B02,29,5222,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.767536533024, -122.410739256407)",152682981-E29 -152901926,KM08,15111430,Medical Incident,10/17/2015,10/17/2015,10/17/2015 01:26:16 PM,10/17/2015 01:29:01 PM,10/17/2015 01:29:39 PM,10/17/2015 01:31:04 PM,10/17/2015 01:37:29 PM,10/17/2015 01:48:51 PM,10/17/2015 02:05:17 PM,Code 2 Transport,10/17/2015 02:34:30 PM,1400 Block of SHRADER ST,San Francisco,94117,B05,12,5257,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7619427731413, -122.450726690787)",152901926-KM08 -152402365,D2,15091463,Structure Fire,08/28/2015,08/28/2015,08/28/2015 02:16:19 PM,08/28/2015 02:17:46 PM,08/28/2015 02:19:53 PM,08/28/2015 02:20:28 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Fire,08/28/2015 02:29:37 PM,2900 Block of SANTIAGO ST,San Francisco,94116,B08,18,7644,3,3,3,false,Alarm,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7438477705502, -122.498863304615)",152402365-D2 -152980633,AM02,15114310,Medical Incident,10/25/2015,10/24/2015,10/25/2015 05:55:40 AM,10/25/2015 05:57:06 AM,10/25/2015 05:57:29 AM,10/25/2015 05:58:09 AM,10/25/2015 06:05:26 AM,10/25/2015 06:23:23 AM,10/25/2015 06:39:32 AM,Code 2 Transport,10/25/2015 07:18:56 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",152980633-AM02 -161001535,AM10,16039751,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:33:06 PM,04/09/2016 12:35:17 PM,04/09/2016 12:35:45 PM,04/09/2016 12:36:07 PM,04/09/2016 12:40:30 PM,04/09/2016 01:04:54 PM,04/09/2016 01:24:10 PM,Code 2 Transport,04/09/2016 01:57:36 PM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",161001535-AM10 -150853038,E03,15032556,Medical Incident,03/26/2015,03/26/2015,03/26/2015 06:06:50 PM,03/26/2015 06:07:23 PM,03/26/2015 06:08:24 PM,03/26/2015 06:09:36 PM,03/26/2015 06:10:52 PM,03/26/2015 06:18:27 PM,03/26/2015 06:34:54 PM,Code 3 Transport,03/26/2015 06:52:00 PM,LARKIN ST/ELLIS ST,San Francisco,94109,B02,3,1643,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",150853038-E03 -160950716,KM09,16037542,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:17:35 AM,04/04/2016 08:19:22 AM,04/04/2016 08:21:06 AM,04/04/2016 08:23:27 AM,04/04/2016 08:35:24 AM,04/04/2016 09:04:56 AM,04/04/2016 09:32:05 AM,Code 2 Transport,04/04/2016 10:29:20 AM,200 Block of 9TH AVE,San Francisco,94118,B07,31,7136,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",160950716-KM09 -160960668,65,16037913,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:04:47 AM,04/05/2016 08:06:55 AM,04/05/2016 08:08:32 AM,04/05/2016 08:08:51 AM,04/05/2016 08:37:51 AM,04/05/2016 09:15:01 AM,04/05/2016 09:49:56 AM,Code 2 Transport,04/05/2016 10:02:20 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160960668-65 -160933206,AM20,16037015,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:53:48 PM,04/02/2016 07:53:48 PM,04/02/2016 07:55:55 PM,04/02/2016 07:56:23 PM,04/02/2016 08:13:02 PM,04/02/2016 08:27:03 PM,04/02/2016 08:44:59 PM,Code 2 Transport,04/02/2016 09:58:08 PM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7797671147527, -122.408298620023)",160933206-AM20 -143181535,AP,14112609,Aircraft Emergency,11/14/2014,11/14/2014,11/14/2014 11:59:15 AM,11/14/2014 11:59:15 AM,11/14/2014 11:59:15 AM,11/14/2014 11:59:15 AM,11/14/2014 11:59:15 AM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,Fire,11/14/2014 11:59:15 AM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Fire,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",143181535-AP -161002886,71,16039908,Citizen Assist / Service Call,04/09/2016,04/09/2016,04/09/2016 07:48:37 PM,04/09/2016 07:49:46 PM,04/09/2016 08:01:05 PM,04/09/2016 08:01:41 PM,04/09/2016 08:07:41 PM,04/09/2016 08:33:09 PM,04/09/2016 08:56:11 PM,Code 2 Transport,04/09/2016 09:27:04 PM,0 Block of WATTSON PL,San Francisco,94112,B09,43,6121,3,3,3,true,Alarm,1,MEDIC,2,9,11,Outer Mission,"(37.7235779760949, -122.437028124174)",161002886-71 -142623278,T12,14091753,Alarms,09/19/2014,09/19/2014,09/19/2014 07:46:11 PM,09/19/2014 07:48:14 PM,09/19/2014 07:48:25 PM,09/19/2014 07:54:01 PM,09/19/2014 07:54:01 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Fire,09/19/2014 08:03:52 PM,1800 Block of 9TH AVE,San Francisco,94122,B08,22,7336,3,3,3,false,Alarm,1,TRUCK,3,8,7,Inner Sunset,"(37.7537771563703, -122.465666708675)",142623278-T12 -160991186,77,16039253,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:43:22 AM,04/08/2016 10:45:09 AM,04/08/2016 10:45:19 AM,04/08/2016 10:46:40 AM,04/08/2016 10:52:14 AM,04/08/2016 11:17:43 AM,04/08/2016 11:59:15 AM,Code 2 Transport,04/08/2016 12:22:41 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160991186-77 -150671032,E03,15025553,Alarms,03/08/2015,03/08/2015,03/08/2015 10:20:43 AM,03/08/2015 10:22:09 AM,03/08/2015 10:22:20 AM,03/08/2015 10:24:22 AM,03/08/2015 10:28:12 AM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,Cancelled,03/08/2015 10:34:07 AM,1300 Block of MARKET ST,San Francisco,94102,B02,36,2338,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",150671032-E03 -160962693,74,16038087,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:22:06 PM,04/05/2016 04:23:39 PM,04/05/2016 04:24:44 PM,04/05/2016 04:25:20 PM,04/05/2016 04:33:33 PM,04/05/2016 04:51:30 PM,04/05/2016 05:23:38 PM,Code 2 Transport,04/05/2016 05:49:19 PM,700 Block of 9TH AVE,Treasure Isla,94118,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7742838362114, -122.467088086382)",160962693-74 -160991263,73,16039261,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:03:43 AM,04/08/2016 11:05:37 AM,04/08/2016 11:08:46 AM,04/08/2016 11:09:01 AM,04/08/2016 11:16:30 AM,04/08/2016 11:38:02 AM,04/08/2016 12:10:29 PM,Code 2 Transport,04/08/2016 12:59:11 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160991263-73 -153251432,E09,15125089,Alarms,11/21/2015,11/21/2015,11/21/2015 11:20:08 AM,11/21/2015 11:21:24 AM,11/21/2015 11:21:56 AM,11/21/2015 11:22:49 AM,11/21/2015 11:24:31 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Fire,11/21/2015 11:31:34 AM,2000 Block of EVANS AVE,San Francisco,94124,B10,9,6422,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7477614969563, -122.396439770818)",153251432-E09 -141402046,88,14048032,Medical Incident,05/20/2014,05/20/2014,05/20/2014 02:40:00 PM,05/20/2014 02:41:56 PM,05/20/2014 02:47:16 PM,05/20/2014 02:47:26 PM,05/20/2014 02:58:55 PM,05/20/2014 03:16:25 PM,05/20/2014 03:33:29 PM,Code 2 Transport,05/20/2014 03:34:16 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",141402046-88 -151153523,62,15043624,Medical Incident,04/25/2015,04/25/2015,04/25/2015 10:13:29 PM,04/25/2015 10:13:29 PM,04/25/2015 10:14:08 PM,04/25/2015 10:14:16 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,No Merit,04/25/2015 10:18:02 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151153523-62 -150373957,AM20,15014577,Medical Incident,02/06/2015,02/06/2015,02/06/2015 10:54:36 PM,02/06/2015 10:55:48 PM,02/06/2015 10:56:18 PM,02/06/2015 10:57:17 PM,02/06/2015 11:09:15 PM,04/25/2016 01:12:24 PM,04/25/2016 01:12:24 PM,No Merit,02/06/2015 11:21:29 PM,POST ST/MASON ST,San Francisco,94102,B01,1,1362,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7880821862879, -122.410056930949)",150373957-AM20 -143510176,67,14125212,Medical Incident,12/17/2014,12/16/2014,12/17/2014 01:58:00 AM,12/17/2014 02:01:14 AM,12/17/2014 02:01:59 AM,12/17/2014 02:02:50 AM,12/17/2014 02:11:20 AM,12/17/2014 02:31:54 AM,12/17/2014 02:38:05 AM,Code 2 Transport,12/17/2014 03:20:32 AM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7942850258424, -122.406574058341)",143510176-67 -152232527,78,15085048,Medical Incident,08/11/2015,08/11/2015,08/11/2015 03:42:42 PM,08/11/2015 03:43:28 PM,08/11/2015 03:43:43 PM,08/11/2015 03:44:03 PM,08/11/2015 03:53:58 PM,08/11/2015 04:01:58 PM,08/11/2015 04:08:32 PM,Code 2 Transport,08/11/2015 04:51:28 PM,1700 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2634,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7499142654366, -122.394328983742)",152232527-78 -160941868,50,16037266,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 01:18:54 PM,04/03/2016 01:18:54 PM,04/03/2016 01:20:15 PM,04/03/2016 01:20:23 PM,04/03/2016 01:34:48 PM,04/03/2016 01:55:47 PM,04/03/2016 02:42:51 PM,Code 2 Transport,04/03/2016 03:00:53 PM,CROSSOVER DR/19TH AV,San Francisco,94122,B08,22,7425,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,4,Sunset/Parkside,"(37.7654479866215, -122.477308393483)",160941868-50 -160922143,57,16036479,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:03:45 PM,04/01/2016 03:03:45 PM,04/01/2016 03:05:51 PM,04/01/2016 03:06:12 PM,04/01/2016 03:11:18 PM,04/01/2016 03:22:30 PM,04/01/2016 03:54:28 PM,Code 2 Transport,04/01/2016 04:42:18 PM,DIVISION ST/11TH ST,San Francisco,94103,B02,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7694111910912, -122.410931089145)",160922143-57 -151950177,B02,15074264,Medical Incident,07/14/2015,07/13/2015,07/14/2015 02:02:17 AM,07/14/2015 02:02:17 AM,07/14/2015 02:02:30 AM,07/14/2015 02:04:16 AM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,Cancelled,07/14/2015 02:08:35 AM,CAPP ST/20TH ST,San Francisco,94110,B06,7,5433,A,E,3,false,Potentially Life-Threatening,1,CHIEF,5,6,9,Mission,"(37.7586982725851, -122.417964706277)",151950177-B02 -141643521,E14,14056712,Medical Incident,06/13/2014,06/13/2014,06/13/2014 10:04:52 PM,06/13/2014 10:05:37 PM,06/13/2014 10:05:49 PM,06/13/2014 10:07:50 PM,06/13/2014 10:09:13 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Code 2 Transport,06/13/2014 10:22:50 PM,6300 Block of CALIFORNIA ST,San Francisco,94121,B07,14,7214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7838030202773, -122.485545885783)",141643521-E14 -160990422,KM03,16039189,Medical Incident,04/08/2016,04/07/2016,04/08/2016 05:31:23 AM,04/08/2016 05:32:31 AM,04/08/2016 05:32:40 AM,04/08/2016 05:33:10 AM,04/08/2016 05:38:40 AM,04/08/2016 05:59:29 AM,04/08/2016 06:17:10 AM,Code 2 Transport,04/08/2016 06:38:55 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160990422-KM03 -141530392,RC1,14052448,Medical Incident,06/02/2014,06/01/2014,06/02/2014 05:53:19 AM,06/02/2014 05:54:02 AM,06/02/2014 06:01:09 AM,06/02/2014 06:03:25 AM,06/02/2014 06:04:56 AM,06/02/2014 06:34:02 AM,06/02/2014 06:39:07 AM,Code 3 Transport,06/02/2014 06:53:01 AM,900 Block of MONTGOMERY ST,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,North Beach,"(37.7975870868314, -122.403804875894)",141530392-RC1 -161001939,89,16039800,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:52:28 PM,04/09/2016 02:54:23 PM,04/09/2016 02:54:49 PM,04/09/2016 02:56:50 PM,04/09/2016 03:23:25 PM,04/09/2016 03:31:17 PM,04/09/2016 03:53:11 PM,Code 2 Transport,04/09/2016 04:36:25 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",161001939-89 -151532055,E51,15058315,Medical Incident,06/02/2015,06/02/2015,06/02/2015 02:22:26 PM,06/02/2015 02:26:32 PM,06/02/2015 02:28:19 PM,06/02/2015 02:28:50 PM,06/02/2015 02:31:46 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/02/2015 03:05:18 PM,300 Block of FINLEY RD,Presidio,94129,B99,51,4631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio,"(37.7907112514893, -122.459579736296)",151532055-E51 -160932122,KM08,16036907,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:59:06 PM,04/02/2016 02:59:06 PM,04/02/2016 03:00:31 PM,04/02/2016 03:08:09 PM,04/02/2016 03:08:09 PM,04/02/2016 03:25:48 PM,04/02/2016 03:47:11 PM,Code 2 Transport,04/02/2016 04:11:56 PM,4200 Block of FOLSOM ST,San Francisco,94110,B06,32,5747,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,9,Bernal Heights,"(37.7340009567337, -122.413687558489)",160932122-KM08 -141971884,E36,14068234,Medical Incident,07/16/2014,07/16/2014,07/16/2014 01:26:30 PM,07/16/2014 01:29:20 PM,07/16/2014 01:29:38 PM,07/16/2014 01:30:57 PM,07/16/2014 01:34:25 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Against Medical Advice,07/16/2014 01:37:23 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Non Life-threatening,1,ENGINE,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",141971884-E36 -142630541,E29,14091878,Structure Fire,09/20/2014,09/19/2014,09/20/2014 04:10:21 AM,09/20/2014 04:10:21 AM,09/20/2014 04:11:24 AM,09/20/2014 04:12:47 AM,09/20/2014 04:15:02 AM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Fire,09/20/2014 04:15:14 AM,9TH ST/HARRISON ST,San Francisco,94103,B03,29,2333,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7725264425971, -122.410076850083)",142630541-E29 -160990101,78,16039158,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:51:07 AM,04/08/2016 12:54:40 AM,04/08/2016 12:54:57 AM,04/08/2016 12:55:07 AM,04/08/2016 01:00:27 AM,04/08/2016 01:28:45 AM,04/08/2016 01:39:39 AM,Code 2 Transport,04/08/2016 02:05:00 AM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",160990101-78 -160942810,KM12,16037365,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:50:23 PM,04/03/2016 05:52:12 PM,04/03/2016 05:54:36 PM,04/03/2016 05:55:27 PM,04/03/2016 06:06:03 PM,04/03/2016 06:47:21 PM,04/03/2016 06:47:36 PM,Code 2 Transport,04/03/2016 07:07:31 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160942810-KM12 -160972932,KM04,16038524,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 04:20:21 PM,04/06/2016 04:22:13 PM,04/06/2016 04:26:25 PM,04/06/2016 04:27:18 PM,04/06/2016 04:40:44 PM,04/06/2016 05:31:30 PM,04/06/2016 05:32:28 PM,Other,04/06/2016 06:15:09 PM,SOUTH VAN NESS AV/22ND ST,San Francisco,94110,B06,7,5455,2,2,2,false,Non Life-threatening,1,PRIVATE,3,6,9,Mission,"(37.7555682781294, -122.416566643053)",160972932-KM04 -160972010,74,16038422,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:01:02 PM,04/06/2016 01:01:02 PM,04/06/2016 01:02:01 PM,04/06/2016 01:02:08 PM,04/06/2016 01:08:18 PM,04/06/2016 01:21:39 PM,04/06/2016 01:43:51 PM,Code 2 Transport,04/06/2016 01:45:29 PM,WENTWORTH PL/WASHINGTON ST,San Francisco,94108,B01,13,1245,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7951982822872, -122.406045237964)",160972010-74 -141780347,E01,14061289,Medical Incident,06/27/2014,06/26/2014,06/27/2014 04:19:16 AM,06/27/2014 04:21:24 AM,06/27/2014 04:22:01 AM,06/27/2014 04:23:46 AM,06/27/2014 04:25:39 AM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Code 2 Transport,06/27/2014 04:36:31 AM,400 Block of TEHAMA ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.78023451932, -122.405564838884)",141780347-E01 -153162924,59,15121523,Medical Incident,11/12/2015,11/12/2015,11/12/2015 05:23:08 PM,11/12/2015 05:24:22 PM,11/12/2015 05:25:05 PM,11/12/2015 05:25:19 PM,11/12/2015 05:31:08 PM,11/12/2015 05:53:40 PM,11/12/2015 05:57:58 PM,Code 2 Transport,11/12/2015 06:30:11 PM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",153162924-59 -152213316,RS1,15084356,Medical Incident,08/09/2015,08/09/2015,08/09/2015 08:00:31 PM,08/09/2015 08:02:05 PM,08/09/2015 08:02:30 PM,08/09/2015 08:03:51 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Code 3 Transport,08/09/2015 08:06:43 PM,100 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7789597633583, -122.410718060304)",152213316-RS1 -152040156,57,15077564,Medical Incident,07/23/2015,07/22/2015,07/23/2015 01:18:37 AM,07/23/2015 01:20:00 AM,07/23/2015 01:20:19 AM,07/23/2015 01:20:53 AM,07/23/2015 01:32:02 AM,07/23/2015 01:36:21 AM,07/23/2015 01:54:31 AM,Code 2 Transport,07/23/2015 02:24:54 AM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",152040156-57 -160963726,68,16038183,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:43:23 PM,04/05/2016 08:44:11 PM,04/05/2016 08:44:39 PM,04/05/2016 08:45:37 PM,04/05/2016 08:53:47 PM,04/05/2016 09:12:18 PM,04/05/2016 09:32:06 PM,Code 2 Transport,04/05/2016 10:06:17 PM,1500 Block of FRANCISCO ST,San Francisco,94123,B04,16,3351,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8025340608773, -122.430687416035)",160963726-68 -160950806,62,16037550,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:49:09 AM,04/04/2016 08:49:09 AM,04/04/2016 08:49:13 AM,04/04/2016 08:49:20 AM,04/04/2016 09:31:36 AM,04/04/2016 09:34:19 AM,04/04/2016 09:31:37 AM,Code 2 Transport,04/04/2016 11:02:14 AM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",160950806-62 -141260111,88,14042653,Traffic Collision,05/06/2014,05/06/2014,05/06/2014 08:24:20 AM,05/06/2014 08:24:56 AM,05/06/2014 08:25:14 AM,05/06/2014 08:27:42 AM,05/06/2014 08:30:16 AM,05/06/2014 09:05:44 AM,05/06/2014 09:20:41 AM,Code 2 Transport,05/06/2014 10:25:50 AM,FULTON ST/WEBSTER ST,SAN FRANCISCO,94117,B05,5,3521,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7779192948104, -122.42984920232)",141260111-88 -143090028,AM24,14109212,Medical Incident,11/05/2014,11/04/2014,11/05/2014 12:14:44 AM,11/05/2014 12:14:44 AM,11/05/2014 12:14:58 AM,11/05/2014 12:15:44 AM,11/05/2014 12:26:10 AM,11/05/2014 12:33:15 AM,11/05/2014 01:02:38 AM,Code 2 Transport,11/05/2014 01:20:28 AM,3RD ST/STEVENSON ST,San Francisco,94103,B03,1,2211,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7870244175155, -122.403028194221)",143090028-AM24 -153010156,E26,15115328,Medical Incident,10/28/2015,10/27/2015,10/28/2015 01:19:16 AM,10/28/2015 01:21:08 AM,10/28/2015 01:21:32 AM,10/28/2015 01:23:31 AM,10/28/2015 01:26:27 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Against Medical Advice,10/28/2015 01:52:05 AM,5200 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",153010156-E26 -141352040,85,14046187,Medical Incident,05/15/2014,05/15/2014,05/15/2014 01:47:36 PM,05/15/2014 01:49:44 PM,05/15/2014 01:50:08 PM,05/15/2014 01:52:29 PM,05/15/2014 02:01:22 PM,05/15/2014 02:16:29 PM,05/15/2014 02:42:56 PM,Code 2 Transport,05/15/2014 03:21:07 PM,0 Block of ALPINE TER,San Francisco,94117,B05,6,5134,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7696195180952, -122.437747677878)",141352040-85 -141652443,T15,14056985,Citizen Assist / Service Call,06/14/2014,06/14/2014,06/14/2014 05:04:10 PM,06/14/2014 05:05:57 PM,06/14/2014 05:07:21 PM,06/14/2014 05:08:34 PM,06/14/2014 05:11:20 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Fire,06/14/2014 05:18:00 PM,1400 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8515,3,3,3,false,Alarm,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7281546742461, -122.456574518176)",141652443-T15 -141680374,E38,14057840,Alarms,06/17/2014,06/16/2014,06/17/2014 05:26:50 AM,06/17/2014 05:27:57 AM,06/17/2014 05:32:52 AM,06/17/2014 05:34:38 AM,06/17/2014 05:36:25 AM,04/25/2016 01:16:43 PM,04/25/2016 01:16:43 PM,Fire,06/17/2014 05:44:26 AM,2300 Block of PINE ST,San Francisco,94115,B04,38,3543,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7878999566909, -122.434481068996)",141680374-E38 -141060256,82,14035798,Medical Incident,04/16/2014,04/16/2014,04/16/2014 01:38:52 PM,04/16/2014 01:41:04 PM,04/16/2014 01:41:43 PM,04/16/2014 01:41:55 PM,04/16/2014 01:58:06 PM,04/16/2014 02:12:15 PM,04/16/2014 02:22:03 PM,Code 2 Transport,04/16/2014 03:20:54 PM,1300 Block of BOSWORTH ST,SAN FRANCISCO,94131,B09,26,8179,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7364473397419, -122.441834902263)",141060256-82 -150332856,74,15012847,Medical Incident,02/02/2015,02/02/2015,02/02/2015 06:12:06 PM,02/02/2015 06:13:48 PM,02/02/2015 06:14:11 PM,02/02/2015 06:14:28 PM,02/02/2015 06:34:03 PM,04/25/2016 01:12:29 PM,04/25/2016 01:12:29 PM,Patient Declined Transport,02/02/2015 06:54:31 PM,200 Block of 11TH ST,San Francisco,94103,B02,36,5114,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7729135734441, -122.415232222181)",150332856-74 -160982100,AM02,16038936,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:46:03 PM,04/07/2016 01:48:05 PM,04/07/2016 01:49:11 PM,04/07/2016 01:49:59 PM,04/07/2016 02:02:14 PM,04/07/2016 02:23:11 PM,04/07/2016 02:48:21 PM,Code 2 Transport,04/07/2016 03:33:53 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160982100-AM02 -152051290,D2,15078024,Structure Fire,07/24/2015,07/24/2015,07/24/2015 10:34:51 AM,07/24/2015 10:35:29 AM,07/24/2015 10:37:21 AM,07/24/2015 10:37:21 AM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,04/25/2016 01:09:18 PM,Fire,07/24/2015 10:40:25 AM,800 Block of STANYAN ST,San Francisco,94117,B05,12,4551,3,3,3,false,Alarm,1,CHIEF,11,5,5,Haight Ashbury,"(37.7668463317755, -122.453001181451)",152051290-D2 -143491379,72,14124599,Medical Incident,12/15/2014,12/15/2014,12/15/2014 11:49:01 AM,12/15/2014 11:52:23 AM,12/15/2014 11:54:42 AM,12/15/2014 11:55:07 AM,12/15/2014 12:07:30 PM,12/15/2014 12:24:47 PM,12/15/2014 12:38:25 PM,Code 2 Transport,12/15/2014 12:55:42 PM,16TH ST/CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",143491379-72 -152220460,AM02,15084476,Medical Incident,08/10/2015,08/09/2015,08/10/2015 06:11:33 AM,08/10/2015 06:15:39 AM,08/10/2015 06:15:59 AM,08/10/2015 06:16:33 AM,08/10/2015 06:22:00 AM,08/10/2015 06:48:44 AM,08/10/2015 07:18:12 AM,Code 2 Transport,08/10/2015 07:47:58 AM,MARKET ST/STEUART ST,San Francisco,94105,B01,13,1133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",152220460-AM02 -150583051,64,15022280,Medical Incident,02/27/2015,02/27/2015,02/27/2015 06:42:38 PM,02/27/2015 06:43:32 PM,02/27/2015 06:43:40 PM,02/27/2015 06:43:54 PM,02/27/2015 06:48:23 PM,02/27/2015 07:06:04 PM,02/27/2015 07:34:37 PM,Code 2 Transport,02/27/2015 08:03:44 PM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7600451698328, -122.423265598657)",150583051-64 -160930291,AM24,16036697,Structure Fire,04/02/2016,04/01/2016,04/02/2016 02:01:33 AM,04/02/2016 02:01:33 AM,04/02/2016 02:08:27 AM,04/02/2016 02:09:24 AM,04/02/2016 02:11:32 AM,04/02/2016 02:30:12 AM,04/02/2016 02:41:54 AM,Code 2 Transport,04/02/2016 03:18:36 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,false,Alarm,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160930291-AM24 -152121723,55,15080751,Medical Incident,07/31/2015,07/31/2015,07/31/2015 01:17:01 PM,07/31/2015 01:17:15 PM,07/31/2015 01:17:24 PM,07/31/2015 01:17:34 PM,07/31/2015 01:24:17 PM,07/31/2015 01:38:05 PM,07/31/2015 02:32:23 PM,Code 2 Transport,07/31/2015 02:59:22 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",152121723-55 -150781391,E01,15029866,Medical Incident,03/19/2015,03/19/2015,03/19/2015 10:39:45 AM,03/19/2015 10:40:41 AM,03/19/2015 10:41:52 AM,03/19/2015 10:42:22 AM,03/19/2015 10:42:22 AM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Code 2 Transport,03/19/2015 10:46:55 AM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",150781391-E01 -152673037,72,15102390,Medical Incident,09/24/2015,09/24/2015,09/24/2015 05:15:39 PM,09/24/2015 05:15:39 PM,09/24/2015 05:16:09 PM,09/24/2015 05:17:44 PM,09/24/2015 05:25:38 PM,09/24/2015 05:37:18 PM,09/24/2015 05:44:12 PM,Code 2 Transport,09/24/2015 06:18:15 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",152673037-72 -142191250,E15,14075947,Medical Incident,08/07/2014,08/07/2014,08/07/2014 11:09:53 AM,08/07/2014 11:11:57 AM,08/07/2014 11:12:24 AM,08/07/2014 11:13:10 AM,08/07/2014 11:17:14 AM,04/25/2016 01:15:48 PM,04/25/2016 01:15:48 PM,Code 2 Transport,08/07/2014 11:33:27 AM,300 Block of HOLLOWAY AVE,San Francisco,94112,B09,15,8473,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7217895414689, -122.456652046014)",142191250-E15 -160962947,54,16038109,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:19:16 PM,04/05/2016 05:19:16 PM,04/05/2016 05:19:26 PM,04/05/2016 05:19:35 PM,04/05/2016 05:25:17 PM,04/05/2016 05:59:00 PM,04/05/2016 06:08:22 PM,Code 2 Transport,04/05/2016 06:46:46 PM,2300 Block of FILBERT ST,San Francisco,94123,B04,16,3611,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.797652774687, -122.438136095814)",160962947-54 -153013823,79,15115625,Medical Incident,10/28/2015,10/28/2015,10/28/2015 08:49:01 PM,10/28/2015 08:49:01 PM,10/28/2015 09:01:42 PM,10/28/2015 09:01:42 PM,10/28/2015 09:11:58 PM,10/28/2015 09:25:45 PM,10/28/2015 09:34:18 PM,Code 2 Transport,10/28/2015 10:21:42 PM,5TH ST/CLARA ST,San Francisco,94107,B03,8,2243,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7794587157277, -122.40237749197)",153013823-79 -151630044,AM20,15062121,,06/12/2015,06/11/2015,06/12/2015 12:26:00 AM,06/12/2015 12:26:00 AM,06/12/2015 12:27:00 AM,06/12/2015 12:27:00 AM,06/12/2015 12:28:00 AM,04/25/2016 01:10:00 PM,04/25/2016 01:10:00 PM,SFPD,06/12/2015 12:29:00 AM,18TH ST/CHURCH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",151630044-AM20 -142253305,E31,14078266,Medical Incident,08/13/2014,08/13/2014,08/13/2014 07:53:10 PM,08/13/2014 07:57:46 PM,08/13/2014 07:59:51 PM,08/13/2014 08:00:54 PM,08/13/2014 08:02:43 PM,04/25/2016 01:15:41 PM,04/25/2016 01:15:41 PM,No Merit,08/13/2014 08:12:45 PM,12TH AV/GEARY BL,San Francisco,94118,B07,31,7141,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7807233526762, -122.470716748604)",142253305-E31 -152821558,E41,15108227,Medical Incident,10/09/2015,10/09/2015,10/09/2015 12:07:55 PM,10/09/2015 12:07:55 PM,10/09/2015 12:10:25 PM,10/09/2015 12:11:16 PM,10/09/2015 12:14:44 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Code 2 Transport,10/09/2015 12:32:54 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",152821558-E41 -151992613,E40,15075919,Medical Incident,07/18/2015,07/18/2015,07/18/2015 04:37:58 PM,07/18/2015 04:39:25 PM,07/18/2015 04:40:20 PM,07/18/2015 04:41:14 PM,07/18/2015 04:42:53 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Code 2 Transport,07/18/2015 04:58:04 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",151992613-E40 -150980427,61,15036972,Medical Incident,04/08/2015,04/07/2015,04/08/2015 06:41:08 AM,04/08/2015 06:41:08 AM,04/08/2015 06:41:42 AM,04/08/2015 06:41:51 AM,04/08/2015 06:49:34 AM,04/08/2015 07:05:41 AM,04/08/2015 07:50:34 AM,Code 2 Transport,04/08/2015 08:19:49 AM,FULTON ST/14TH AV,San Francisco,94118,B07,31,7144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7731144219056, -122.472297340928)",150980427-61 -150601739,KM04,15022925,Traffic Collision,03/01/2015,03/01/2015,03/01/2015 12:39:29 PM,03/01/2015 12:40:23 PM,03/01/2015 12:40:38 PM,03/01/2015 12:41:10 PM,03/01/2015 12:45:54 PM,03/01/2015 01:04:15 PM,03/01/2015 01:14:44 PM,Code 2 Transport,03/01/2015 01:47:18 PM,13TH ST/FOLSOM ST,San Francisco,94103,B02,36,5123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7695911594816, -122.415577014994)",150601739-KM04 -151561707,B10,15059511,Structure Fire,06/05/2015,06/05/2015,06/05/2015 12:43:22 PM,06/05/2015 12:43:22 PM,06/05/2015 12:43:30 PM,06/05/2015 12:45:47 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Fire,06/05/2015 12:48:32 PM,1200 Block of CAROLINA ST,San Francisco,94107,B10,37,256,3,3,3,false,Alarm,1,CHIEF,2,10,10,Potrero Hill,"(37.7526323138734, -122.398696830553)",151561707-B10 -142731412,BE1,14095682,Traffic Collision,09/30/2014,09/30/2014,09/30/2014 11:06:51 AM,09/30/2014 11:06:51 AM,09/30/2014 11:17:27 AM,09/30/2014 11:17:27 AM,09/30/2014 11:17:27 AM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Fire,09/30/2014 12:16:51 PM,CUMBERLAND ST/DOLORES ST,San Francisco,94110,B06,7,5445,2,2,2,false,Non Life-threatening,1,SUPPORT,3,6,8,Castro/Upper Market,"(37.7590293975402, -122.425843423554)",142731412-BE1 -160941191,KM06,16037210,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:00:00 AM,04/03/2016 10:03:01 AM,04/03/2016 10:03:39 AM,04/03/2016 10:04:08 AM,04/03/2016 10:20:51 AM,04/03/2016 10:42:35 AM,04/03/2016 11:03:52 AM,Code 2 Transport,04/03/2016 11:30:21 AM,400 Block of GREENWICH ST,San Francisco,94133,B01,28,1335,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.8025926398562, -122.407698526758)",160941191-KM06 -160931313,71,16036814,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:03:23 AM,04/02/2016 11:05:06 AM,04/02/2016 11:05:32 AM,04/02/2016 11:05:37 AM,04/02/2016 11:15:11 AM,04/02/2016 11:30:18 AM,04/02/2016 11:51:39 AM,Code 2 Transport,04/02/2016 12:11:23 PM,1800 Block of ALABAMA ST,San Francisco,94110,B10,9,5723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7440407303083, -122.410294185336)",160931313-71 -142870916,E17,14101077,Medical Incident,10/14/2014,10/14/2014,10/14/2014 09:05:05 AM,10/14/2014 09:07:01 AM,10/14/2014 09:07:49 AM,10/14/2014 09:09:56 AM,10/14/2014 09:12:55 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/14/2014 09:26:08 AM,BAYSHORE BL/FITZGERALD AV,San Francisco,94134,B10,17,6451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7269647590739, -122.401875118972)",142870916-E17 -152683423,75,15102833,Medical Incident,09/25/2015,09/25/2015,09/25/2015 08:03:03 PM,09/25/2015 08:04:41 PM,09/25/2015 08:04:53 PM,09/25/2015 08:05:00 PM,09/25/2015 08:09:29 PM,09/25/2015 08:16:28 PM,09/25/2015 08:46:58 PM,Code 2 Transport,09/25/2015 08:52:01 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",152683423-75 -152721263,RS2,15104098,Medical Incident,09/29/2015,09/29/2015,09/29/2015 10:43:09 AM,09/29/2015 10:44:45 AM,09/29/2015 10:45:00 AM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Code 2 Transport,09/29/2015 10:46:06 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",152721263-RS2 -160983046,67,16039047,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 06:01:06 PM,04/07/2016 06:01:06 PM,04/07/2016 06:01:20 PM,04/07/2016 06:02:01 PM,04/07/2016 06:02:57 PM,04/07/2016 06:23:29 PM,04/07/2016 06:37:50 PM,Code 2 Transport,04/07/2016 06:55:19 PM,16TH ST/DOLORES ST,San Francisco,94103,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7646456890217, -122.426381708495)",160983046-67 -160951525,AM06,16037603,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:49:38 AM,04/04/2016 11:49:56 AM,04/04/2016 11:51:06 AM,04/04/2016 11:52:35 AM,04/04/2016 11:57:58 AM,04/04/2016 12:16:21 PM,04/04/2016 12:57:05 PM,Code 2 Transport,04/04/2016 01:16:30 PM,200 Block of ATHENS ST,San Francisco,94112,B09,43,6155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.723939347671, -122.426606498513)",160951525-AM06 -152363868,58,15090092,Medical Incident,08/24/2015,08/24/2015,08/24/2015 09:09:54 PM,08/24/2015 09:10:08 PM,08/24/2015 09:11:50 PM,08/24/2015 09:11:58 PM,08/24/2015 09:22:28 PM,04/25/2016 01:08:44 PM,04/25/2016 01:08:44 PM,Medical Examiner,08/24/2015 09:22:56 PM,0 Block of ESQUINA DR,San Francisco,94134,B09,43,6246,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7094419771959, -122.421375208172)",152363868-58 -142932805,82,14103457,Alarms,10/20/2014,10/20/2014,10/20/2014 06:21:14 PM,10/20/2014 06:24:35 PM,10/20/2014 06:26:10 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 06:26:59 PM,200 Block of LAKE MERCED HILL ST,San Francisco,94132,B08,19,8777,3,3,3,true,Alarm,1,MEDIC,2,8,7,Lakeshore,"(37.7130437838335, -122.483644013853)",142932805-82 -153252514,AM08,15125191,Medical Incident,11/21/2015,11/21/2015,11/21/2015 04:04:55 PM,11/21/2015 04:05:53 PM,11/21/2015 04:09:37 PM,11/21/2015 04:10:13 PM,11/21/2015 04:25:30 PM,11/21/2015 04:40:44 PM,11/21/2015 05:05:25 PM,Code 2 Transport,11/21/2015 05:37:01 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",153252514-AM08 -143491632,T12,14124629,Medical Incident,12/15/2014,12/15/2014,12/15/2014 01:02:51 PM,12/15/2014 01:03:12 PM,12/15/2014 01:05:53 PM,12/15/2014 01:07:04 PM,12/15/2014 01:09:22 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,No Merit,12/15/2014 01:16:10 PM,500 Block of PARNASSUS AVE,San Francisco,94122,B05,12,7323,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",143491632-T12 -152651095,87,15101414,Medical Incident,09/22/2015,09/22/2015,09/22/2015 09:34:39 AM,09/22/2015 09:36:03 AM,09/22/2015 09:37:03 AM,09/22/2015 09:37:17 AM,09/22/2015 09:49:09 AM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,No Merit,09/22/2015 09:49:44 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",152651095-87 -141851112,B10,14063989,Other,07/04/2014,07/04/2014,07/04/2014 11:19:36 AM,07/04/2014 11:19:36 AM,07/04/2014 11:21:24 AM,07/04/2014 11:21:30 AM,07/04/2014 11:35:17 AM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Code 2 Transport,07/04/2014 12:03:05 PM,1000 Block of PENNSYLVANIA AVE,San Francisco,94107,B10,25,2612,3,3,3,false,Alarm,1,CHIEF,3,10,10,Potrero Hill,"(37.7528044929205, -122.39273368843)",141851112-B10 -141190353,T16,14040298,Citizen Assist / Service Call,04/29/2014,04/29/2014,04/29/2014 07:21:44 PM,04/29/2014 07:23:16 PM,04/29/2014 07:23:37 PM,04/29/2014 07:25:17 PM,04/29/2014 07:26:52 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Fire,04/29/2014 07:51:05 PM,2600 Block of GREENWICH ST,SAN FRANCISCO,94123,B04,16,4166,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.7980599014421, -122.443314080143)",141190353-T16 -142490898,E18,14086734,Medical Incident,09/06/2014,09/06/2014,09/06/2014 08:25:05 AM,09/06/2014 08:25:05 AM,09/06/2014 08:25:47 AM,09/06/2014 08:27:50 AM,09/06/2014 08:30:26 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/06/2014 08:57:41 AM,2400 Block of 27TH AVE,San Francisco,94116,B08,40,7466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7417422791405, -122.484128892254)",142490898-E18 -150130277,E08,15005010,Medical Incident,01/13/2015,01/12/2015,01/13/2015 02:43:46 AM,01/13/2015 02:46:34 AM,01/13/2015 02:50:45 AM,01/13/2015 02:52:43 AM,01/13/2015 02:54:56 AM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Code 2 Transport,01/13/2015 03:16:46 AM,200 Block of KING ST,San Francisco,94107,B03,8,2171,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",150130277-E08 -143272253,82,14115928,Medical Incident,11/23/2014,11/23/2014,11/23/2014 02:45:41 PM,11/23/2014 02:46:58 PM,11/23/2014 02:47:35 PM,11/23/2014 02:47:43 PM,11/23/2014 02:58:30 PM,11/23/2014 03:12:49 PM,11/23/2014 03:31:25 PM,Code 2 Transport,11/23/2014 03:57:48 PM,JUDAH ST/11TH AV,San Francisco,94122,B08,22,7334,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7620811129062, -122.468321004117)",143272253-82 -152212652,E20,15084297,Structure Fire,08/09/2015,08/09/2015,08/09/2015 05:13:14 PM,08/09/2015 05:14:11 PM,08/09/2015 05:14:50 PM,08/09/2015 05:16:22 PM,08/09/2015 05:22:26 PM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Fire,08/09/2015 05:47:19 PM,4500 Block of 18TH ST,San Francisco,94114,B05,24,5413,3,3,3,true,Fire,1,ENGINE,7,6,8,Castro/Upper Market,"(37.7604535146359, -122.441241695805)",152212652-E20 -160973260,61,16038559,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:23:50 PM,04/06/2016 05:24:09 PM,04/06/2016 05:26:04 PM,04/06/2016 05:26:04 PM,04/06/2016 05:31:02 PM,04/06/2016 05:46:42 PM,04/06/2016 06:31:27 PM,Code 2 Transport,04/06/2016 06:55:23 PM,0 Block of ATHENS ST,San Francisco,94112,B09,43,6146,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7272929954166, -122.424276475396)",160973260-61 -143450087,54,14122543,Medical Incident,12/11/2014,12/10/2014,12/11/2014 12:43:04 AM,12/11/2014 12:43:04 AM,12/11/2014 12:44:12 AM,12/11/2014 12:46:34 AM,12/11/2014 01:30:04 AM,12/11/2014 01:30:14 AM,12/11/2014 01:30:18 AM,Code 2 Transport,12/11/2014 02:01:28 AM,13TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",143450087-54 -160940108,63,16037103,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:32:42 AM,04/03/2016 12:34:17 AM,04/03/2016 12:34:46 AM,04/03/2016 12:35:03 AM,04/03/2016 01:04:14 AM,04/03/2016 01:09:44 AM,04/03/2016 01:27:24 AM,Code 2 Transport,04/03/2016 01:39:02 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160940108-63 -152080656,E28,15079169,Medical Incident,07/27/2015,07/26/2015,07/27/2015 07:34:10 AM,07/27/2015 07:34:55 AM,07/27/2015 07:35:21 AM,07/27/2015 07:36:18 AM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,Cancelled,07/27/2015 07:37:50 AM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8056674488919, -122.412766371216)",152080656-E28 -141420706,E13,14048594,Medical Incident,05/22/2014,05/22/2014,05/22/2014 08:08:06 AM,05/22/2014 08:10:43 AM,05/22/2014 08:11:05 AM,05/22/2014 08:11:21 AM,05/22/2014 08:14:35 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,No Merit,05/22/2014 08:23:20 AM,MARKET ST/SPEAR ST,San Francisco,94105,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",141420706-E13 -160942525,KM02,16037334,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:33:12 PM,04/03/2016 04:34:15 PM,04/03/2016 04:34:27 PM,04/03/2016 04:35:19 PM,04/03/2016 04:38:13 PM,04/03/2016 04:57:00 PM,04/03/2016 05:09:15 PM,Code 3 Transport,04/03/2016 05:40:47 PM,300 Block of FAXON AVE,San Francisco,94112,B09,15,8463,2,3,3,false,Non Life-threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209277240745, -122.460290446387)",160942525-KM02 -151832046,T19,15069878,Outside Fire,07/02/2015,07/02/2015,07/02/2015 01:27:41 PM,07/02/2015 01:28:52 PM,07/02/2015 01:30:08 PM,07/02/2015 01:31:25 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Fire,07/02/2015 01:34:59 PM,100 Block of ROLPH ST,San Francisco,94112,B09,43,6232,3,3,3,false,Fire,1,TRUCK,4,9,11,Excelsior,"(37.7149019427969, -122.439514308609)",151832046-T19 -152070867,68,15078804,Medical Incident,07/26/2015,07/26/2015,07/26/2015 08:22:13 AM,07/26/2015 08:24:03 AM,07/26/2015 08:24:23 AM,07/26/2015 08:25:10 AM,07/26/2015 08:37:02 AM,07/26/2015 08:45:47 AM,07/26/2015 08:59:08 AM,Code 2 Transport,07/26/2015 09:32:35 AM,18TH ST/VALENCIA ST,San Francisco,94110,B02,7,5423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7617009099893, -122.421578400735)",152070867-68 -141351966,T10,14046179,Structure Fire,05/15/2014,05/15/2014,05/15/2014 01:30:31 PM,05/15/2014 01:30:31 PM,05/15/2014 01:31:32 PM,05/15/2014 01:33:07 PM,05/15/2014 01:35:08 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Fire,05/15/2014 01:35:14 PM,100 Block of ANZA ST,San Francisco,94118,B05,10,4456,3,3,3,false,Alarm,1,TRUCK,2,5,1,Lone Mountain/USF,"(37.7810168561812, -122.448161393313)",141351966-T10 -141362395,55,14046622,Medical Incident,05/16/2014,05/16/2014,05/16/2014 04:35:15 PM,05/16/2014 04:37:09 PM,05/16/2014 04:37:49 PM,05/16/2014 04:38:00 PM,05/16/2014 04:41:02 PM,05/16/2014 04:53:48 PM,05/16/2014 05:26:40 PM,Code 2 Transport,05/16/2014 06:01:18 PM,1400 Block of FRANKLIN ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7880337548121, -122.423614357336)",141362395-55 -143171666,E11,14112267,Structure Fire,11/13/2014,11/13/2014,11/13/2014 12:31:53 PM,11/13/2014 12:31:53 PM,11/13/2014 12:32:01 PM,11/13/2014 12:34:17 PM,11/13/2014 12:34:17 PM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Fire,11/13/2014 12:41:08 PM,3300 Block of 23RD ST,San Francisco,94110,B06,11,552,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7536816295495, -122.420253564524)",143171666-E11 -142743076,81,14096194,Medical Incident,10/01/2014,10/01/2014,10/01/2014 06:24:45 PM,10/01/2014 06:25:09 PM,10/01/2014 06:25:58 PM,10/01/2014 06:26:04 PM,10/01/2014 06:31:02 PM,10/01/2014 06:48:17 PM,10/01/2014 07:12:31 PM,Code 2 Transport,10/01/2014 07:49:07 PM,JONES ST/JEFFERSON ST,San Francisco,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8080133240409, -122.417445939002)",142743076-81 -142113722,AP,14073316,Other,07/30/2014,07/30/2014,07/30/2014 10:37:26 PM,07/30/2014 10:37:26 PM,07/30/2014 10:37:26 PM,07/30/2014 10:37:26 PM,07/30/2014 10:37:26 PM,04/25/2016 01:15:56 PM,04/25/2016 01:15:56 PM,Fire,07/30/2014 10:38:15 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",142113722-AP -142813263,E15,14099011,Medical Incident,10/08/2014,10/08/2014,10/08/2014 08:04:23 PM,10/08/2014 08:06:22 PM,10/08/2014 08:06:42 PM,10/08/2014 08:08:10 PM,10/08/2014 08:10:54 PM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 08:20:51 PM,1400 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7290819702136, -122.434340378969)",142813263-E15 -150501154,AM08,15019260,Medical Incident,02/19/2015,02/19/2015,02/19/2015 10:18:54 AM,02/19/2015 10:21:09 AM,02/19/2015 10:22:05 AM,02/19/2015 10:23:03 AM,02/19/2015 10:27:37 AM,02/19/2015 10:31:43 AM,02/19/2015 10:44:47 AM,Code 2 Transport,02/19/2015 11:18:58 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",150501154-AM08 -143410775,E03,14121075,Outside Fire,12/07/2014,12/06/2014,12/07/2014 07:06:19 AM,12/07/2014 07:10:19 AM,12/07/2014 07:10:57 AM,12/07/2014 07:12:23 AM,12/07/2014 07:14:46 AM,04/25/2016 01:13:36 PM,04/25/2016 01:13:36 PM,Fire,12/07/2014 07:19:51 AM,800 Block of POLK ST,San Francisco,94109,B02,3,3116,3,3,3,true,Fire,1,ENGINE,1,2,6,Tenderloin,"(37.7842697641002, -122.419480276468)",143410775-E03 -143612122,E13,14129202,Medical Incident,12/27/2014,12/27/2014,12/27/2014 03:33:09 PM,12/27/2014 03:34:03 PM,12/27/2014 03:35:01 PM,12/27/2014 03:35:40 PM,12/27/2014 03:38:13 PM,04/25/2016 01:13:11 PM,04/25/2016 01:13:11 PM,Fire,12/27/2014 03:42:34 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",143612122-E13 -153162707,T06,15121504,Other,11/12/2015,11/12/2015,11/12/2015 04:26:52 PM,11/12/2015 04:36:05 PM,11/12/2015 04:36:36 PM,11/12/2015 04:37:50 PM,11/12/2015 04:40:51 PM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,Fire,11/12/2015 04:53:08 PM,1900 Block of MARKET ST,San Francisco,94102,B02,36,3416,3,3,3,false,Alarm,1,TRUCK,2,2,8,Hayes Valley,"(37.7702451976438, -122.425669041358)",153162707-T06 -160953190,87,16037747,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:25:53 PM,04/04/2016 06:26:46 PM,04/04/2016 06:28:04 PM,04/04/2016 06:28:28 PM,04/04/2016 06:34:33 PM,04/04/2016 06:53:26 PM,04/04/2016 07:27:02 PM,Code 2 Transport,04/04/2016 07:55:52 PM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",160953190-87 -142242738,E36,14077839,Medical Incident,08/12/2014,08/12/2014,08/12/2014 06:01:07 PM,08/12/2014 06:03:32 PM,08/12/2014 06:05:25 PM,08/12/2014 06:05:40 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Code 2 Transport,08/12/2014 06:14:20 PM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",142242738-E36 -142920455,T03,14102866,Citizen Assist / Service Call,10/19/2014,10/18/2014,10/19/2014 02:38:40 AM,10/19/2014 02:43:47 AM,10/19/2014 02:44:14 AM,10/19/2014 02:46:24 AM,10/19/2014 02:48:31 AM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Fire,10/19/2014 03:10:08 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",142920455-T03 -141841425,65,14063642,Medical Incident,07/03/2014,07/03/2014,07/03/2014 12:21:46 PM,07/03/2014 12:22:40 PM,07/03/2014 12:23:29 PM,07/03/2014 12:23:38 PM,07/03/2014 12:26:58 PM,07/03/2014 12:41:43 PM,07/03/2014 12:58:26 PM,Code 2 Transport,07/03/2014 01:26:27 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",141841425-65 -160974548,AM16,16038707,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:56:08 PM,04/06/2016 10:56:45 PM,04/06/2016 10:56:55 PM,04/06/2016 10:57:27 PM,04/06/2016 11:01:20 PM,04/06/2016 11:26:09 PM,04/06/2016 11:43:50 PM,Code 2 Transport,04/07/2016 12:12:48 AM,900 Block of GREEN ST,San Francisco,94133,B01,2,1441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",160974548-AM16 -153120160,B03,15119775,Alarms,11/08/2015,11/07/2015,11/08/2015 01:06:42 AM,11/08/2015 01:08:09 AM,11/08/2015 01:08:23 AM,11/08/2015 01:11:18 AM,11/08/2015 01:16:11 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/08/2015 01:56:53 AM,400 Block of BRYANT ST,San Francisco,94107,B03,8,2174,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7817993684645, -122.395335307159)",153120160-B03 -142502999,65,14087295,Medical Incident,09/07/2014,09/07/2014,09/07/2014 07:11:59 PM,09/07/2014 07:15:00 PM,09/07/2014 07:15:17 PM,09/07/2014 07:16:49 PM,09/07/2014 07:24:15 PM,09/07/2014 07:59:25 PM,09/07/2014 08:10:45 PM,Code 2 Transport,09/07/2014 08:28:05 PM,1500 Block of BRYANT ST,San Francisco,94103,B02,29,5222,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.767544783627, -122.410601263668)",142502999-65 -150562043,KM01,15021448,Medical Incident,02/25/2015,02/25/2015,02/25/2015 01:59:56 PM,02/25/2015 02:01:22 PM,02/25/2015 02:01:48 PM,02/25/2015 02:04:53 PM,02/25/2015 02:09:11 PM,02/25/2015 02:25:23 PM,02/25/2015 03:11:07 PM,Code 2 Transport,02/25/2015 03:15:23 PM,100 Block of CHURCH ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7690612353533, -122.429159883658)",150562043-KM01 -142090361,E11,14072314,Medical Incident,07/28/2014,07/27/2014,07/28/2014 04:19:02 AM,07/28/2014 04:19:46 AM,07/28/2014 04:20:07 AM,07/28/2014 04:21:32 AM,07/28/2014 04:24:23 AM,04/25/2016 01:15:59 PM,04/25/2016 01:15:59 PM,Code 2 Transport,07/28/2014 04:37:48 AM,SOUTH VAN NESS AV/CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7482121503815, -122.41586279408)",142090361-E11 -151733232,B07,15066204,Alarms,06/22/2015,06/22/2015,06/22/2015 09:21:33 PM,06/22/2015 09:23:17 PM,06/22/2015 09:23:38 PM,06/22/2015 09:24:56 PM,06/22/2015 09:28:09 PM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Fire,06/22/2015 09:31:59 PM,400 Block of 20TH AVE,San Francisco,94121,B07,14,7172,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7793747233139, -122.479242794814)",151733232-B07 -152393429,E36,15091169,Medical Incident,08/27/2015,08/27/2015,08/27/2015 07:19:43 PM,08/27/2015 07:21:43 PM,08/27/2015 07:21:57 PM,08/27/2015 07:23:22 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Code 2 Transport,08/27/2015 07:46:46 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",152393429-E36 -152832604,T10,15108724,Alarms,10/10/2015,10/10/2015,10/10/2015 03:53:01 PM,10/10/2015 03:54:02 PM,10/10/2015 03:54:09 PM,10/10/2015 03:56:22 PM,10/10/2015 03:58:45 PM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Fire,10/10/2015 04:08:38 PM,3300 Block of GEARY BLVD,San Francisco,94118,B07,10,4453,3,3,3,false,Alarm,1,TRUCK,1,7,2,Presidio Heights,"(37.7816501739638, -122.454753954171)",152832604-T10 -151642010,E36,15062757,Medical Incident,06/13/2015,06/13/2015,06/13/2015 02:47:44 PM,06/13/2015 02:47:44 PM,06/13/2015 02:48:12 PM,06/13/2015 02:48:16 PM,06/13/2015 02:51:24 PM,04/25/2016 01:10:01 PM,04/25/2016 01:10:01 PM,Patient Declined Transport,06/13/2015 02:56:13 PM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",151642010-E36 -160982674,53,16039007,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:13:36 PM,04/07/2016 04:13:36 PM,04/07/2016 04:39:49 PM,04/07/2016 04:40:01 PM,04/07/2016 05:01:58 PM,04/07/2016 05:16:33 PM,04/07/2016 05:48:49 PM,Code 2 Transport,04/07/2016 06:32:03 PM,300 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",160982674-53 -143550443,E43,14126784,Medical Incident,12/21/2014,12/20/2014,12/21/2014 02:48:59 AM,12/21/2014 02:48:59 AM,12/21/2014 02:50:15 AM,12/21/2014 02:52:09 AM,12/21/2014 02:55:16 AM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Code 2 Transport,12/21/2014 02:56:32 AM,MISSION ST/GENEVA AV,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",143550443-E43 -152301592,E11,15087756,Medical Incident,08/18/2015,08/18/2015,08/18/2015 12:45:21 PM,08/18/2015 12:46:29 PM,08/18/2015 12:46:41 PM,08/18/2015 12:47:25 PM,08/18/2015 12:50:10 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Code 2 Transport,08/18/2015 01:02:33 PM,3300 Block of 23RD ST,San Francisco,94110,B06,11,5512,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7537483769495, -122.419144470556)",152301592-E11 -152530462,E03,15096603,Alarms,09/10/2015,09/09/2015,09/10/2015 05:27:57 AM,09/10/2015 05:29:24 AM,09/10/2015 05:30:05 AM,09/10/2015 05:31:33 AM,09/10/2015 05:34:32 AM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,Fire,09/10/2015 05:38:37 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",152530462-E03 -152720270,63,15104008,Medical Incident,09/29/2015,09/28/2015,09/29/2015 03:06:06 AM,09/29/2015 03:06:06 AM,09/29/2015 03:07:13 AM,09/29/2015 03:07:31 AM,09/29/2015 03:13:51 AM,09/29/2015 03:19:14 AM,09/29/2015 03:24:13 AM,Code 2 Transport,09/29/2015 04:00:13 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291630976058, -122.382538001818)",152720270-63 -160993331,AM20,16039447,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:47:23 PM,04/08/2016 07:48:39 PM,04/08/2016 07:49:00 PM,04/08/2016 07:49:39 PM,04/08/2016 08:15:16 PM,04/08/2016 08:15:20 PM,04/08/2016 08:33:25 PM,Code 2 Transport,04/08/2016 09:07:07 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160993331-AM20 -141190267,B03,14040219,Alarms,04/29/2014,04/29/2014,04/29/2014 03:11:41 PM,04/29/2014 03:12:49 PM,04/29/2014 03:12:56 PM,04/29/2014 03:13:07 PM,04/29/2014 03:17:28 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Fire,04/29/2014 03:21:23 PM,0 Block of 3RD ST,SAN FRANCISCO,94103,B03,1,2211,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",141190267-B03 -151570478,KM07,15059810,Medical Incident,06/06/2015,06/05/2015,06/06/2015 03:53:34 AM,06/06/2015 03:56:25 AM,06/06/2015 03:59:05 AM,06/06/2015 04:00:36 AM,06/06/2015 04:08:31 AM,06/06/2015 04:22:34 AM,06/06/2015 04:37:55 AM,Code 2 Transport,06/06/2015 05:19:55 AM,400 Block of PARIS ST,San Francisco,94112,B09,43,6126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7215760816833, -122.434936472806)",151570478-KM07 -152423847,RC1,15092502,Medical Incident,08/30/2015,08/30/2015,08/30/2015 11:07:30 PM,08/30/2015 11:07:30 PM,08/30/2015 11:08:09 PM,08/30/2015 11:09:28 PM,08/30/2015 11:12:22 PM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Code 3 Transport,08/30/2015 11:21:57 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",152423847-RC1 -160970169,AM20,16038254,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:36:14 AM,04/06/2016 01:36:14 AM,04/06/2016 01:36:48 AM,04/06/2016 01:37:49 AM,04/06/2016 02:07:15 AM,04/06/2016 02:07:19 AM,04/06/2016 02:15:56 AM,Code 2 Transport,04/06/2016 02:38:28 AM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8083718016522, -122.414994322047)",160970169-AM20 -151913790,E05,15073050,Medical Incident,07/10/2015,07/10/2015,07/10/2015 09:16:04 PM,07/10/2015 09:16:28 PM,07/10/2015 09:16:43 PM,07/10/2015 09:16:57 PM,07/10/2015 09:20:04 PM,04/25/2016 01:09:32 PM,04/25/2016 01:09:32 PM,Code 2 Transport,07/10/2015 09:29:52 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",151913790-E05 -160930747,KM08,16036744,Medical Incident,04/02/2016,04/01/2016,04/02/2016 07:51:38 AM,04/02/2016 07:53:29 AM,04/02/2016 07:54:45 AM,04/02/2016 07:58:03 AM,04/02/2016 08:05:27 AM,04/02/2016 08:17:45 AM,04/02/2016 08:42:48 AM,Code 2 Transport,04/02/2016 09:21:53 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160930747-KM08 -160971606,KM06,16038386,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:32:21 AM,04/06/2016 11:33:56 AM,04/06/2016 11:36:34 AM,04/06/2016 11:37:47 AM,04/06/2016 11:40:31 AM,04/06/2016 12:07:53 PM,04/06/2016 12:17:47 PM,Code 2 Transport,04/06/2016 01:02:49 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160971606-KM06 -160982061,53,16038933,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:34:00 PM,04/07/2016 01:37:33 PM,04/07/2016 01:38:29 PM,04/07/2016 01:38:39 PM,04/07/2016 01:51:45 PM,04/07/2016 02:24:56 PM,04/07/2016 03:00:41 PM,Code 2 Transport,04/07/2016 03:24:10 PM,200 Block of WILSON ST,San Francisco,94112,B09,33,8364,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7093179070354, -122.461575199884)",160982061-53 -160951963,77,16037650,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:33:36 PM,04/04/2016 01:34:54 PM,04/04/2016 01:52:20 PM,04/04/2016 01:52:31 PM,04/04/2016 02:11:20 PM,04/04/2016 02:25:14 PM,04/04/2016 02:49:33 PM,Code 2 Transport,04/04/2016 03:21:35 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",160951963-77 -152650906,E01,15101404,Alarms,09/22/2015,09/22/2015,09/22/2015 08:47:44 AM,09/22/2015 08:48:59 AM,09/22/2015 08:49:34 AM,09/22/2015 08:50:03 AM,09/22/2015 08:51:56 AM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/22/2015 08:55:14 AM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7826425026927, -122.407832679288)",152650906-E01 -141420117,D2,14048543,Administrative,05/22/2014,05/21/2014,05/22/2014 12:56:33 AM,05/22/2014 12:57:17 AM,05/22/2014 12:57:27 AM,05/22/2014 12:57:27 AM,05/22/2014 12:57:42 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Other,05/22/2014 12:57:50 AM,1300 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,false,,1,CHIEF,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",141420117-D2 -150403763,E43,15015782,Medical Incident,02/09/2015,02/09/2015,02/09/2015 10:23:05 PM,02/09/2015 10:23:46 PM,02/09/2015 10:24:09 PM,02/09/2015 10:25:30 PM,02/09/2015 10:28:47 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/09/2015 10:34:44 PM,0 Block of ALLISON ST,San Francisco,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7141809805565, -122.442285746649)",150403763-E43 -143163017,E17,14112029,Medical Incident,11/12/2014,11/12/2014,11/12/2014 06:27:19 PM,11/12/2014 06:28:13 PM,11/12/2014 06:29:06 PM,11/12/2014 06:30:39 PM,11/12/2014 06:32:39 PM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Code 2 Transport,11/12/2014 06:44:23 PM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",143163017-E17 -141070254,E05,14036157,Medical Incident,04/17/2014,04/17/2014,04/17/2014 04:07:13 PM,04/17/2014 04:09:16 PM,04/17/2014 04:10:38 PM,04/17/2014 04:10:49 PM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,04/25/2016 01:17:50 PM,Against Medical Advice,04/17/2014 04:14:28 PM,CALIFORNIA ST/LAUREL ST,SAN FRANCISCO,94118,B05,10,4373,E,2,2,true,Non Life-threatening,1,ENGINE,5,7,2,Presidio Heights,"(37.7868376588545, -122.45011844217)",141070254-E05 -141743154,T14,14060177,Structure Fire,06/23/2014,06/23/2014,06/23/2014 09:13:30 PM,06/23/2014 09:13:47 PM,06/23/2014 09:16:12 PM,06/23/2014 09:17:50 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,Fire,06/23/2014 09:21:21 PM,19TH AV/IRVING ST,San Francisco,94122,B08,22,7424,3,3,3,false,Alarm,1,TRUCK,10,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",141743154-T14 -152250773,AM02,15085667,Medical Incident,08/13/2015,08/12/2015,08/13/2015 07:58:28 AM,08/13/2015 07:59:27 AM,08/13/2015 08:00:09 AM,08/13/2015 08:00:53 AM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Other,08/13/2015 08:08:06 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",152250773-AM02 -150833759,KM15,15031876,Medical Incident,03/24/2015,03/24/2015,03/24/2015 10:00:50 PM,03/24/2015 10:02:41 PM,03/24/2015 10:03:04 PM,03/24/2015 10:03:50 PM,03/24/2015 10:08:30 PM,03/24/2015 10:16:31 PM,03/24/2015 10:31:23 PM,Code 2 Transport,03/24/2015 10:45:06 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",150833759-KM15 -143023604,AM30,14106788,Medical Incident,10/29/2014,10/29/2014,10/29/2014 09:26:31 PM,10/29/2014 09:26:51 PM,10/29/2014 09:27:53 PM,10/29/2014 09:32:44 PM,10/29/2014 09:35:22 PM,10/29/2014 09:54:26 PM,10/29/2014 10:14:17 PM,Code 2 Transport,10/29/2014 10:42:53 PM,1200 Block of 18TH AVE,San Francisco,94122,B08,22,7367,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,4,Inner Sunset,"(37.7645566497921, -122.476051423463)",143023604-AM30 -160933357,KM07,16037033,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:38:14 PM,04/02/2016 08:40:14 PM,04/02/2016 08:41:09 PM,04/02/2016 08:41:38 PM,04/02/2016 08:49:30 PM,04/02/2016 08:53:33 PM,04/02/2016 09:05:34 PM,Code 2 Transport,04/02/2016 09:30:14 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160933357-KM07 -142131723,KM01,14073845,Medical Incident,08/01/2014,08/01/2014,08/01/2014 01:09:12 PM,08/01/2014 01:09:34 PM,08/01/2014 01:09:58 PM,08/01/2014 01:13:30 PM,08/01/2014 01:26:30 PM,08/01/2014 01:26:35 PM,08/01/2014 01:49:22 PM,Code 2 Transport,08/01/2014 02:04:55 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",142131723-KM01 -153391809,79,15130446,Other,12/05/2015,12/05/2015,12/05/2015 12:43:22 PM,12/05/2015 12:43:22 PM,12/05/2015 12:44:06 PM,12/05/2015 12:46:11 PM,12/05/2015 12:51:36 PM,12/05/2015 01:04:34 PM,12/05/2015 01:15:03 PM,Code 3 Transport,12/05/2015 02:18:47 PM,5300 Block of GEARY BLVD,San Francisco,94121,B07,31,7161,3,3,3,true,Alarm,1,MEDIC,3,7,1,Outer Richmond,"(37.7805803412447, -122.476708282444)",153391809-79 -150012657,53,15000415,Medical Incident,01/01/2015,01/01/2015,01/01/2015 04:54:13 PM,01/01/2015 04:54:13 PM,01/01/2015 04:57:26 PM,01/01/2015 04:57:51 PM,01/01/2015 05:07:36 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Patient Declined Transport,01/01/2015 05:36:46 PM,300 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1162,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",150012657-53 -150383281,E13,15014922,Medical Incident,02/07/2015,02/07/2015,02/07/2015 07:52:55 PM,02/07/2015 07:52:55 PM,02/07/2015 07:54:25 PM,02/07/2015 07:55:51 PM,02/07/2015 07:57:22 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Code 2 Transport,02/07/2015 08:03:37 PM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",150383281-E13 -152842427,E08,15109112,Traffic Collision,10/11/2015,10/11/2015,10/11/2015 03:34:01 PM,10/11/2015 03:34:01 PM,10/11/2015 03:34:44 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Code 2 Transport,10/11/2015 03:34:56 PM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,Financial District/South Beach,"(37.7877468463797, -122.396934740624)",152842427-E08 -151260079,E05,15047589,Medical Incident,05/06/2015,05/05/2015,05/06/2015 12:36:38 AM,05/06/2015 12:37:10 AM,05/06/2015 12:37:26 AM,05/06/2015 12:39:11 AM,05/06/2015 12:39:17 AM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 3 Transport,05/06/2015 12:50:52 AM,WEBSTER ST/TURK ST,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.780715573218, -122.430424414848)",151260079-E05 -152181823,E14,15083010,Medical Incident,08/06/2015,08/06/2015,08/06/2015 01:19:03 PM,08/06/2015 01:20:08 PM,08/06/2015 01:20:25 PM,08/06/2015 01:21:27 PM,08/06/2015 01:23:14 PM,04/25/2016 01:09:04 PM,04/25/2016 01:09:04 PM,Code 2 Transport,08/06/2015 01:35:35 PM,1800 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7822297310045, -122.47897570251)",152181823-E14 -152301763,E36,15087770,Medical Incident,08/18/2015,08/18/2015,08/18/2015 01:27:05 PM,08/18/2015 01:27:32 PM,08/18/2015 01:27:45 PM,08/18/2015 01:29:11 PM,08/18/2015 01:32:17 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Code 2 Transport,08/18/2015 01:43:13 PM,900 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,3411,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,5,Western Addition,"(37.7803481047255, -122.425362908015)",152301763-E36 -152782002,E41,15106688,Alarms,10/05/2015,10/05/2015,10/05/2015 02:12:54 PM,10/05/2015 02:16:23 PM,10/05/2015 02:18:38 PM,10/05/2015 02:18:38 PM,10/05/2015 02:20:17 PM,04/25/2016 01:07:57 PM,04/25/2016 01:07:57 PM,Fire,10/05/2015 02:32:17 PM,2000 Block of HYDE ST,San Francisco,94109,B01,41,1611,3,3,3,false,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.7998094709512, -122.419239608183)",152782002-E41 -161000022,KM09,16039551,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:07:30 AM,04/09/2016 12:07:30 AM,04/09/2016 12:08:06 AM,04/09/2016 12:09:44 AM,04/09/2016 12:15:30 AM,04/09/2016 12:31:11 AM,04/09/2016 12:51:03 AM,Code 2 Transport,04/09/2016 01:29:42 AM,POLK ST/BAY ST,San Francisco,94109,B01,28,3134,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8043549238836, -122.423466054216)",161000022-KM09 -142170997,55,14075177,Medical Incident,08/05/2014,08/05/2014,08/05/2014 10:17:39 AM,08/05/2014 10:18:14 AM,08/05/2014 10:19:09 AM,08/05/2014 10:19:32 AM,08/05/2014 10:25:01 AM,08/05/2014 10:42:26 AM,08/05/2014 11:25:09 AM,Code 2 Transport,08/05/2014 11:33:37 AM,1300 Block of FELL ST,San Francisco,94117,B05,21,4252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7736869919131, -122.440088215983)",142170997-55 -161001507,64,16039747,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:23:15 PM,04/09/2016 12:24:00 PM,04/09/2016 12:24:49 PM,04/09/2016 12:25:49 PM,04/09/2016 12:34:07 PM,04/09/2016 12:50:57 PM,04/09/2016 01:00:11 PM,Code 2 Transport,04/09/2016 01:26:14 PM,800 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7909306094565, -122.409788680324)",161001507-64 -161002875,AM12,16039906,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:45:50 PM,04/09/2016 07:46:48 PM,04/09/2016 07:47:12 PM,04/09/2016 07:48:36 PM,04/09/2016 07:54:31 PM,04/09/2016 08:25:26 PM,04/09/2016 09:07:58 PM,Code 2 Transport,04/09/2016 09:41:35 PM,100 Block of PINE ST,San Francisco,94111,B01,13,1136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.792387312641, -122.399186604536)",161002875-AM12 -143342720,E44,14118470,Structure Fire,11/30/2014,11/30/2014,11/30/2014 06:53:37 PM,11/30/2014 06:54:31 PM,11/30/2014 06:55:10 PM,11/30/2014 06:57:27 PM,11/30/2014 06:58:36 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,Fire,11/30/2014 07:05:06 PM,800 Block of COLBY ST,San Francisco,94134,B09,44,6322,3,3,3,false,Alarm,1,ENGINE,1,9,9,Portola,"(37.7199386133639, -122.410177936421)",143342720-E44 -150172076,70,15006760,Medical Incident,01/17/2015,01/17/2015,01/17/2015 02:40:51 PM,01/17/2015 02:40:51 PM,01/17/2015 02:40:51 PM,01/17/2015 02:40:51 PM,01/17/2015 02:40:51 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Fire,01/17/2015 02:42:26 PM,MISSION ST/NAGLEE AV,San Francisco,94112,B99,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7115920214903, -122.446091129597)",150172076-70 -142092847,E31,14072573,Administrative,07/28/2014,07/28/2014,07/28/2014 07:18:37 PM,07/28/2014 07:18:54 PM,07/28/2014 07:19:42 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Fire,07/28/2014 07:21:27 PM,400 Block of 12TH AVE,San Francisco,94118,B07,31,7146,3,3,3,false,,1,ENGINE,1,7,1,Inner Richmond,"(37.7797586065018, -122.470711254543)",142092847-E31 -152530248,E43,15096580,Traffic Collision,09/10/2015,09/09/2015,09/10/2015 02:06:36 AM,09/10/2015 02:06:36 AM,09/10/2015 02:07:05 AM,09/10/2015 02:09:34 AM,09/10/2015 02:13:06 AM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,Code 2 Transport,09/10/2015 02:19:55 AM,1500 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8271,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7275315597461, -122.43567234398)",152530248-E43 -152351008,RS2,15089520,Train / Rail Incident,08/23/2015,08/23/2015,08/23/2015 09:03:30 AM,08/23/2015 09:05:27 AM,08/23/2015 09:07:28 AM,08/23/2015 09:07:53 AM,08/23/2015 09:13:05 AM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Fire,08/23/2015 10:11:27 AM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Fire,1,RESCUE SQUAD,4,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",152351008-RS2 -151853290,GATR1,15070732,Medical Incident,07/04/2015,07/04/2015,07/04/2015 08:38:54 PM,07/04/2015 08:39:36 PM,07/04/2015 08:41:56 PM,07/04/2015 08:45:10 PM,07/04/2015 08:45:10 PM,04/25/2016 01:09:39 PM,04/25/2016 01:09:39 PM,Code 2 Transport,07/04/2015 08:53:43 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,false,Potentially Life-Threatening,1,SUPPORT,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",151853290-GATR1 -142102447,KM06,14072869,Medical Incident,07/29/2014,07/29/2014,07/29/2014 04:51:20 PM,07/29/2014 04:53:11 PM,07/29/2014 04:53:41 PM,07/29/2014 04:54:26 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,04/25/2016 01:15:57 PM,Patient Declined Transport,07/29/2014 05:03:04 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",142102447-KM06 -143291803,B01,14116663,Alarms,11/25/2014,11/25/2014,11/25/2014 12:54:19 PM,11/25/2014 12:55:34 PM,11/25/2014 12:55:40 PM,11/25/2014 12:57:12 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/25/2014 01:01:03 PM,100 Block of PINE ST,San Francisco,94111,B01,13,1136,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7922788577923, -122.399164588196)",143291803-B01 -161002929,75,16039912,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:59:57 PM,04/09/2016 08:02:22 PM,04/09/2016 08:02:38 PM,04/09/2016 08:02:50 PM,04/09/2016 08:12:40 PM,04/09/2016 08:19:03 PM,04/09/2016 08:29:11 PM,Code 2 Transport,04/09/2016 09:17:32 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",161002929-75 -160933528,79,16037053,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:39:37 PM,04/02/2016 09:40:18 PM,04/02/2016 09:40:27 PM,04/02/2016 09:40:33 PM,04/02/2016 09:42:32 PM,04/02/2016 09:54:43 PM,04/02/2016 10:33:47 PM,Code 2 Transport,04/02/2016 10:59:41 PM,400 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",160933528-79 -153051829,53,15117134,Medical Incident,11/01/2015,11/01/2015,11/01/2015 10:15:31 AM,11/01/2015 10:16:15 AM,11/01/2015 10:16:29 AM,11/01/2015 10:16:37 AM,11/01/2015 10:19:41 AM,11/01/2015 10:38:15 AM,11/01/2015 10:56:18 AM,Code 2 Transport,11/01/2015 11:48:26 AM,1100 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8473,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7228664396788, -122.456076821755)",153051829-53 -152221567,E14,15084571,Medical Incident,08/10/2015,08/10/2015,08/10/2015 12:25:06 PM,08/10/2015 12:25:06 PM,08/10/2015 12:25:18 PM,08/10/2015 12:26:29 PM,08/10/2015 12:29:47 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Code 2 Transport,08/10/2015 12:37:26 PM,700 Block of GREAT HWY,San Francisco,94121,B07,34,7316,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7740125883152, -122.511077438213)",152221567-E14 -153081278,E05,15118316,Structure Fire,11/04/2015,11/04/2015,11/04/2015 10:17:48 AM,11/04/2015 10:18:57 AM,11/04/2015 10:20:12 AM,11/04/2015 10:20:12 AM,11/04/2015 10:21:02 AM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Fire,11/04/2015 11:03:14 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",153081278-E05 -143261500,KM204,14115471,Medical Incident,11/22/2014,11/22/2014,11/22/2014 11:39:53 AM,11/22/2014 11:40:49 AM,11/22/2014 11:46:51 AM,11/22/2014 11:46:51 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Patient Declined Transport,11/22/2014 11:48:18 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,4,5,Western Addition,"(37.783815387293, -122.432878599409)",143261500-KM204 -160962686,55,16038085,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:22:14 PM,04/05/2016 04:22:55 PM,04/05/2016 04:36:54 PM,04/05/2016 04:37:02 PM,04/05/2016 04:44:05 PM,04/05/2016 05:13:51 PM,04/05/2016 04:44:05 PM,Code 2 Transport,04/05/2016 05:45:18 PM,400 Block of PARNASSUS AVE,San Francisco,94122,B05,12,5155,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",160962686-55 -153292617,KM06,15126692,Medical Incident,11/25/2015,11/25/2015,11/25/2015 04:06:43 PM,11/25/2015 04:09:26 PM,11/25/2015 04:11:30 PM,11/25/2015 04:12:16 PM,11/25/2015 04:21:43 PM,11/25/2015 04:55:04 PM,11/25/2015 05:08:27 PM,Code 2 Transport,11/25/2015 06:06:05 PM,300 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5741,2,3,3,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.737129343331, -122.417359895828)",153292617-KM06 -160971405,KM02,16038366,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:43:20 AM,04/06/2016 10:44:40 AM,04/06/2016 10:47:01 AM,04/06/2016 10:47:46 AM,04/06/2016 10:52:53 AM,04/06/2016 11:13:22 AM,04/06/2016 11:27:41 AM,Code 2 Transport,04/06/2016 12:01:37 PM,700 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1314,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7924557516623, -122.406339052802)",160971405-KM02 -152282666,RB1,15087076,Water Rescue,08/16/2015,08/16/2015,08/16/2015 05:11:11 PM,08/16/2015 05:14:18 PM,08/16/2015 05:16:11 PM,08/16/2015 05:21:40 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Patient Declined Transport,08/16/2015 06:04:10 PM,400 Block of SEACLIFF AVE,San Francisco,94121,B07,14,7232,3,3,3,false,Fire,1,SUPPORT,9,7,2,Seacliff,"(37.7875454268637, -122.490200284081)",152282666-RB1 -150413178,E44,15016108,Traffic Collision,02/10/2015,02/10/2015,02/10/2015 07:23:59 PM,02/10/2015 07:23:59 PM,02/10/2015 07:24:58 PM,02/10/2015 07:27:13 PM,02/10/2015 07:27:13 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Code 3 Transport,02/10/2015 07:47:26 PM,EXECUTIVE PARK BL/CRESCENT WY,San Francisco,94134,B10,44,6275,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7111697725514, -122.390835881597)",150413178-E44 -142253346,T17,14078268,Structure Fire,08/13/2014,08/13/2014,08/13/2014 08:10:48 PM,08/13/2014 08:10:48 PM,08/13/2014 08:11:28 PM,08/13/2014 08:16:31 PM,04/25/2016 01:15:41 PM,04/25/2016 01:15:41 PM,04/25/2016 01:15:41 PM,Fire,08/13/2014 08:20:12 PM,HUDSON AV/ARDATH CT,San Francisco,94124,B10,17,6624,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",142253346-T17 -152873122,88,15110384,Medical Incident,10/14/2015,10/14/2015,10/14/2015 05:02:08 PM,10/14/2015 05:03:01 PM,10/14/2015 05:03:11 PM,10/14/2015 05:03:20 PM,10/14/2015 05:09:17 PM,10/14/2015 05:22:27 PM,10/14/2015 05:36:23 PM,Code 2 Transport,10/14/2015 06:21:33 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",152873122-88 -153143094,75,15120780,Medical Incident,11/10/2015,11/10/2015,11/10/2015 06:28:30 PM,11/10/2015 06:28:30 PM,11/10/2015 06:28:53 PM,11/10/2015 06:29:31 PM,11/10/2015 06:35:55 PM,04/25/2016 01:07:17 PM,04/25/2016 01:07:17 PM,Patient Declined Transport,11/10/2015 06:40:07 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",153143094-75 -142231248,KM04,14077357,Medical Incident,08/11/2014,08/11/2014,08/11/2014 11:39:55 AM,08/11/2014 11:42:34 AM,08/11/2014 11:43:01 AM,08/11/2014 11:44:15 AM,08/11/2014 11:55:11 AM,08/11/2014 12:12:29 PM,08/11/2014 12:30:21 PM,Code 2 Transport,08/11/2014 01:41:31 PM,BALBOA ST/36TH AV,San Francisco,94121,B07,34,7254,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7757638040834, -122.496258762327)",142231248-KM04 -152242996,B06,15085478,Structure Fire,08/12/2015,08/12/2015,08/12/2015 05:58:05 PM,08/12/2015 05:58:32 PM,08/12/2015 05:59:35 PM,08/12/2015 06:01:11 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 06:05:42 PM,1400 Block of KIRKWOOD AVE,San Francisco,94124,B10,25,6467,3,3,3,false,Alarm,1,CHIEF,10,10,10,Bayview Hunters Point,"(37.7370092796022, -122.387724952664)",152242996-B06 -151811276,B07,15069068,Alarms,06/30/2015,06/30/2015,06/30/2015 11:15:45 AM,06/30/2015 11:16:50 AM,06/30/2015 11:19:32 AM,06/30/2015 11:21:00 AM,06/30/2015 11:25:22 AM,04/25/2016 01:09:43 PM,04/25/2016 01:09:43 PM,Fire,06/30/2015 11:34:25 AM,0 Block of ROSSI AVE,San Francisco,94118,B07,21,4557,3,3,3,false,Alarm,1,CHIEF,3,7,1,Lone Mountain/USF,"(37.779215348773, -122.45632948558)",151811276-B07 -153460670,T08,15133126,Structure Fire,12/12/2015,12/11/2015,12/12/2015 06:01:24 AM,12/12/2015 06:01:24 AM,12/12/2015 06:02:06 AM,12/12/2015 06:04:47 AM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,Fire,12/12/2015 06:05:59 AM,5TH ST/TOWNSEND ST,San Francisco,94107,B03,8,2236,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7753322431291, -122.397206310605)",153460670-T08 -160972465,AM02,16038469,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:35:32 PM,04/06/2016 02:39:10 PM,04/06/2016 02:39:40 PM,04/06/2016 02:41:26 PM,04/06/2016 03:29:05 PM,04/06/2016 03:29:09 PM,04/06/2016 03:29:28 PM,Code 2 Transport,04/06/2016 03:55:36 PM,0 Block of SANTA YNEZ AVE,San Francisco,94112,B09,15,8274,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7240297969149, -122.438972799349)",160972465-AM02 -160980479,KM07,16038780,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:49:33 AM,04/07/2016 04:50:51 AM,04/07/2016 04:51:13 AM,04/07/2016 04:51:48 AM,04/07/2016 05:08:00 AM,04/07/2016 05:11:13 AM,04/07/2016 05:31:41 AM,Code 2 Transport,04/07/2016 06:15:44 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160980479-KM07 -151453492,E19,15055353,Medical Incident,05/25/2015,05/25/2015,05/25/2015 11:10:33 PM,05/25/2015 11:11:09 PM,05/25/2015 11:12:16 PM,05/25/2015 11:13:58 PM,05/25/2015 11:19:28 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,Code 2 Transport,05/25/2015 11:28:06 PM,500 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",151453492-E19 -142850082,87,14100251,Medical Incident,10/12/2014,10/11/2014,10/12/2014 12:24:05 AM,10/12/2014 12:25:13 AM,10/12/2014 12:25:20 AM,10/12/2014 12:25:32 AM,10/12/2014 12:31:04 AM,10/12/2014 12:43:48 AM,10/12/2014 01:00:43 AM,Code 2 Transport,10/12/2014 01:25:08 AM,FILLMORE ST/GREEN ST,San Francisco,94123,B04,16,3551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7961582761838, -122.435301731687)",142850082-87 -150380020,B02,15014595,Structure Fire,02/07/2015,02/06/2015,02/07/2015 12:02:08 AM,02/07/2015 12:05:52 AM,02/07/2015 12:06:12 AM,02/07/2015 12:07:23 AM,02/07/2015 12:10:01 AM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Fire,02/07/2015 12:15:34 AM,0 Block of MAXWELL CT,San Francisco,94103,B02,6,5226,3,3,3,true,Alarm,1,CHIEF,2,2,8,Mission,"(37.7669025720969, -122.423141850936)",150380020-B02 -160921556,KM13,16036424,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:22:23 PM,04/01/2016 12:23:49 PM,04/01/2016 12:24:37 PM,04/01/2016 12:25:35 PM,04/01/2016 12:31:13 PM,04/01/2016 12:39:41 PM,04/01/2016 01:09:37 PM,Code 2 Transport,04/01/2016 01:48:22 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",160921556-KM13 -141060274,KM12,14035813,Medical Incident,04/16/2014,04/16/2014,04/16/2014 02:25:05 PM,04/16/2014 02:25:51 PM,04/16/2014 02:26:11 PM,04/16/2014 02:26:50 PM,04/16/2014 02:31:50 PM,04/25/2016 01:17:51 PM,04/25/2016 01:17:51 PM,Against Medical Advice,04/16/2014 03:29:45 PM,700 Block of THE EMBARCADERO,SAN FRANCISCO,94111,B01,13,915,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",141060274-KM12 -160963052,74,16038121,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:41:11 PM,04/05/2016 05:42:01 PM,04/05/2016 06:05:56 PM,04/05/2016 06:06:33 PM,04/05/2016 06:09:32 PM,04/05/2016 06:32:57 PM,04/05/2016 06:43:08 PM,Patient Declined Transport,04/05/2016 07:00:08 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160963052-74 -151523090,E18,15058012,Structure Fire,06/01/2015,06/01/2015,06/01/2015 07:21:52 PM,06/01/2015 07:21:52 PM,06/01/2015 07:22:03 PM,06/01/2015 07:22:53 PM,06/01/2015 07:24:27 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Fire,06/01/2015 07:24:57 PM,27TH AV/QUINTARA ST,San Francisco,94116,B08,18,7472,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7482671912272, -122.484653663644)",151523090-E18 -141483319,E40,14050995,Medical Incident,05/28/2014,05/28/2014,05/28/2014 09:11:12 PM,05/28/2014 09:12:28 PM,05/28/2014 09:13:02 PM,05/28/2014 09:15:04 PM,05/28/2014 09:17:34 PM,04/25/2016 01:17:05 PM,04/25/2016 01:17:05 PM,Code 2 Transport,05/28/2014 09:33:25 PM,1100 Block of TARAVAL ST,San Francisco,94116,B08,40,7416,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.742986949819, -122.478374336558)",141483319-E40 -141380482,E35,14047162,Medical Incident,05/18/2014,05/17/2014,05/18/2014 03:32:36 AM,05/18/2014 03:35:48 AM,05/18/2014 03:37:38 AM,05/18/2014 03:39:36 AM,05/18/2014 03:43:49 AM,05/18/2014 03:58:54 AM,04/25/2016 01:17:16 PM,Code 3 Transport,05/18/2014 04:23:17 AM,600 Block of FOLSOM ST,San Francisco,94107,B03,1,2147,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7850654631195, -122.397209533545)",141380482-E35 -142930401,RS2,14103224,Medical Incident,10/20/2014,10/19/2014,10/20/2014 04:56:54 AM,10/20/2014 04:56:54 AM,10/20/2014 04:57:43 AM,10/20/2014 05:00:19 AM,10/20/2014 05:01:41 AM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,Code 3 Transport,10/20/2014 05:15:14 AM,SYCAMORE ST/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7627128676897, -122.419443736852)",142930401-RS2 -141050267,E22,14035481,Structure Fire,04/15/2014,04/15/2014,04/15/2014 04:24:57 PM,04/15/2014 04:25:19 PM,04/15/2014 04:25:37 PM,04/15/2014 04:26:51 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 04:28:05 PM,2000 Block of 42ND AVE,SAN FRANCISCO,94116,B08,18,7634,3,3,3,false,Fire,1,ENGINE,15,8,4,Sunset/Parkside,"(37.7484879992501, -122.500860898167)",141050267-E22 -141320855,B01,14044862,Alarms,05/12/2014,05/12/2014,05/12/2014 09:14:24 AM,05/12/2014 09:15:41 AM,05/12/2014 09:16:01 AM,05/12/2014 09:17:20 AM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Fire,05/12/2014 09:24:36 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",141320855-B01 -160973601,76,16038609,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:35:36 PM,04/06/2016 06:37:02 PM,04/06/2016 07:06:52 PM,04/06/2016 07:06:58 PM,04/06/2016 07:20:03 PM,04/06/2016 07:29:29 PM,04/06/2016 07:35:35 PM,Code 2 Transport,04/06/2016 07:49:07 PM,100 Block of VAN NESS AVE,San Francisco,94102,B02,36,3166,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7768524577717, -122.419455012102)",160973601-76 -151011976,T02,15038236,Alarms,04/11/2015,04/11/2015,04/11/2015 02:28:29 PM,04/11/2015 02:29:41 PM,04/11/2015 02:30:11 PM,04/11/2015 02:31:14 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,04/25/2016 01:11:13 PM,Fire,04/11/2015 02:32:26 PM,1500 Block of HYDE ST,San Francisco,94109,B01,41,1565,3,3,3,false,Alarm,1,TRUCK,3,1,3,Russian Hill,"(37.7950241733506, -122.418134549676)",151011976-T02 -152433797,E07,15092869,Smoke Investigation (Outside),08/31/2015,08/31/2015,08/31/2015 09:09:33 PM,08/31/2015 09:09:47 PM,08/31/2015 09:10:38 PM,08/31/2015 09:11:38 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Fire,08/31/2015 09:17:43 PM,15TH ST/NOE ST,San Francisco,94114,B05,6,5232,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7658616276668, -122.433255474794)",152433797-E07 -152412630,E22,15091955,Medical Incident,08/29/2015,08/29/2015,08/29/2015 04:02:41 PM,08/29/2015 04:04:16 PM,08/29/2015 04:04:30 PM,08/29/2015 04:07:15 PM,08/29/2015 04:07:33 PM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,No Merit,08/29/2015 04:13:12 PM,9TH AV/LINCOLN WY,San Francisco,94122,B08,22,7333,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",152412630-E22 -151471878,89,15055962,Medical Incident,05/27/2015,05/27/2015,05/27/2015 01:14:00 PM,05/27/2015 01:14:26 PM,05/27/2015 01:14:36 PM,05/27/2015 01:14:48 PM,05/27/2015 01:20:45 PM,05/27/2015 01:40:21 PM,05/27/2015 02:06:03 PM,Code 2 Transport,05/27/2015 03:02:28 PM,VELASCO AV/RIO VERDE ST,San Francisco,94134,B09,44,6251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7087380347247, -122.415049085774)",151471878-89 -143630882,KM02,14129792,Medical Incident,12/29/2014,12/29/2014,12/29/2014 09:25:17 AM,12/29/2014 09:26:45 AM,12/29/2014 09:28:42 AM,12/29/2014 09:30:20 AM,12/29/2014 09:54:42 AM,12/29/2014 10:08:59 AM,12/29/2014 10:38:16 AM,Code 2 Transport,12/29/2014 11:15:12 AM,500 Block of 33RD AVE,San Francisco,94121,B07,14,7245,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7787282416429, -122.493301622886)",143630882-KM02 -160974048,76,16038650,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:22:17 PM,04/06/2016 08:26:09 PM,04/06/2016 08:27:04 PM,04/06/2016 08:27:11 PM,04/06/2016 08:31:18 PM,04/06/2016 08:39:43 PM,04/06/2016 08:45:37 PM,Code 2 Transport,04/06/2016 09:05:57 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160974048-76 -141430284,73,14048922,Medical Incident,05/23/2014,05/22/2014,05/23/2014 02:43:27 AM,05/23/2014 02:46:58 AM,05/23/2014 02:48:49 AM,05/23/2014 02:49:11 AM,05/23/2014 02:59:29 AM,05/23/2014 03:19:32 AM,05/23/2014 03:40:31 AM,Code 2 Transport,05/23/2014 04:14:15 AM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7649777859582, -122.466445638121)",141430284-73 -152614255,E21,15099960,Medical Incident,09/18/2015,09/18/2015,09/18/2015 10:54:11 PM,09/18/2015 10:54:21 PM,09/18/2015 10:55:08 PM,09/18/2015 10:56:32 PM,09/18/2015 10:58:36 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/18/2015 10:58:55 PM,900 Block of CENTRAL AVE,San Francisco,94115,B05,21,4363,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7783702231035, -122.445182906759)",152614255-E21 -141732511,E42,14059764,Medical Incident,06/22/2014,06/22/2014,06/22/2014 06:06:43 PM,06/22/2014 06:07:04 PM,06/22/2014 06:07:33 PM,06/22/2014 06:08:36 PM,06/22/2014 06:11:10 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Code 3 Transport,06/22/2014 06:50:36 PM,600 Block of THORNTON AVE,San Francisco,94124,B10,42,6447,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7313162270083, -122.400690668956)",141732511-E42 -143293868,E01,14116844,Traffic Collision,11/25/2014,11/25/2014,11/25/2014 11:13:18 PM,11/25/2014 11:13:18 PM,11/25/2014 11:13:54 PM,11/25/2014 11:14:15 PM,11/25/2014 11:16:25 PM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Gone on Arrival,11/25/2014 11:16:44 PM,MISSION ST/6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",143293868-E01 -160922625,AM26,16036531,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:04:44 PM,04/01/2016 05:06:32 PM,04/01/2016 05:07:25 PM,04/01/2016 05:08:07 PM,04/01/2016 05:17:53 PM,04/01/2016 05:39:40 PM,04/01/2016 05:54:50 PM,Code 2 Transport,04/01/2016 06:29:54 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160922625-AM26 -152272519,E07,15086620,Medical Incident,08/15/2015,08/15/2015,08/15/2015 03:25:55 PM,08/15/2015 03:25:55 PM,08/15/2015 03:27:44 PM,08/15/2015 03:27:53 PM,08/15/2015 03:30:34 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Code 2 Transport,08/15/2015 03:39:56 PM,1200 Block of 15TH ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7668153988578, -122.412689745025)",152272519-E07 -151671588,E09,15063844,Medical Incident,06/16/2015,06/16/2015,06/16/2015 01:00:52 PM,06/16/2015 01:00:52 PM,06/16/2015 01:02:20 PM,06/16/2015 01:03:19 PM,06/16/2015 01:05:20 PM,04/25/2016 01:09:58 PM,04/25/2016 01:09:58 PM,Fire,06/16/2015 01:09:30 PM,1200 Block of UTAH ST,San Francisco,94110,B10,9,2562,A,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Mission,"(37.7537047353826, -122.405323661789)",151671588-E09 -150373198,KM02,15014482,Medical Incident,02/06/2015,02/06/2015,02/06/2015 07:13:54 PM,02/06/2015 07:13:54 PM,02/06/2015 07:15:21 PM,02/06/2015 07:15:21 PM,02/06/2015 07:17:24 PM,02/06/2015 07:28:38 PM,02/06/2015 07:42:17 PM,Code 2 Transport,02/06/2015 08:21:46 PM,SHERMAN ST/FOLSOM ST,San Francisco,94103,B03,1,2313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7773996335317, -122.407014751383)",150373198-KM02 -141282871,E19,14043618,Medical Incident,05/08/2014,05/08/2014,05/08/2014 06:03:16 PM,05/08/2014 06:05:22 PM,05/08/2014 06:09:02 PM,05/08/2014 06:09:41 PM,05/08/2014 06:14:20 PM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 07:02:45 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",141282871-E19 -143651914,64,14130724,Medical Incident,12/31/2014,12/31/2014,12/31/2014 03:00:16 PM,12/31/2014 03:01:40 PM,12/31/2014 03:02:13 PM,12/31/2014 03:03:55 PM,12/31/2014 03:09:11 PM,12/31/2014 03:25:23 PM,12/31/2014 03:42:10 PM,Code 2 Transport,12/31/2014 04:21:35 PM,500 Block of 47TH AVE,San Francisco,94121,B07,34,7276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7780500044705, -122.508299698216)",143651914-64 -160981190,KM05,16038842,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:46:43 AM,04/07/2016 09:48:08 AM,04/07/2016 09:48:40 AM,04/07/2016 09:49:06 AM,04/07/2016 09:57:21 AM,04/07/2016 10:14:32 AM,04/07/2016 10:36:41 AM,Code 2 Transport,04/07/2016 11:15:17 AM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160981190-KM05 -160982828,63,16039024,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:53:35 PM,04/07/2016 04:54:25 PM,04/07/2016 04:54:44 PM,04/07/2016 04:55:01 PM,04/07/2016 05:09:10 PM,04/07/2016 05:20:30 PM,04/07/2016 05:56:52 PM,Code 2 Transport,04/07/2016 06:24:20 PM,300 Block of LA GRANDE AVE,San Francisco,94112,B09,43,6165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,McLaren Park,"(37.7197515959451, -122.425588438069)",160982828-63 -141473154,55,14050596,Traffic Collision,05/27/2014,05/27/2014,05/27/2014 07:02:45 PM,05/27/2014 07:02:45 PM,05/27/2014 07:03:07 PM,05/27/2014 07:03:23 PM,04/25/2016 01:17:06 PM,04/25/2016 01:17:06 PM,04/25/2016 01:17:06 PM,Patient Declined Transport,05/27/2014 07:12:08 PM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,13,1246,B,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7973530798881, -122.405824166189)",141473154-55 -160940815,84,16037188,Medical Incident,04/03/2016,04/02/2016,04/03/2016 07:23:47 AM,04/03/2016 07:26:06 AM,04/03/2016 07:26:45 AM,04/03/2016 07:29:27 AM,04/03/2016 07:47:01 AM,04/03/2016 08:05:52 AM,04/03/2016 08:39:25 AM,Code 2 Transport,04/03/2016 09:08:41 AM,2100 Block of 33RD AVE,San Francisco,94116,B08,18,7545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7470473149304, -122.491085954607)",160940815-84 -152834182,AM16,15108845,Medical Incident,10/10/2015,10/10/2015,10/10/2015 10:19:45 PM,10/10/2015 10:21:33 PM,10/10/2015 10:21:57 PM,10/10/2015 10:22:43 PM,10/10/2015 11:07:20 PM,10/10/2015 11:07:22 PM,10/10/2015 11:07:58 PM,Code 2 Transport,10/10/2015 11:13:28 PM,3300 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.775892549655, -122.49464338851)",152834182-AM16 -142800436,73,14098392,Medical Incident,10/07/2014,10/06/2014,10/07/2014 06:41:09 AM,10/07/2014 06:41:51 AM,10/07/2014 06:42:33 AM,10/07/2014 06:50:21 AM,10/07/2014 06:58:56 AM,10/07/2014 07:02:15 AM,10/07/2014 08:00:13 AM,Code 2 Transport,10/07/2014 08:24:56 AM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7754785492962, -122.415745332716)",142800436-73 -160970149,75,16038253,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:15:05 AM,04/06/2016 01:15:05 AM,04/06/2016 01:16:13 AM,04/06/2016 01:16:24 AM,04/06/2016 01:23:03 AM,04/06/2016 01:35:06 AM,04/06/2016 01:45:21 AM,Code 2 Transport,04/06/2016 02:16:41 AM,16TH ST/DOLORES ST,San Francisco,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7646456890217, -122.426381708495)",160970149-75 -143000738,E37,14105824,Structure Fire,10/27/2014,10/27/2014,10/27/2014 08:20:57 AM,10/27/2014 08:23:40 AM,10/27/2014 08:25:17 AM,10/27/2014 08:25:17 AM,10/27/2014 08:26:55 AM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Fire,10/27/2014 09:45:07 AM,2300 Block of 3RD ST,San Francisco,94107,B10,25,2533,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7592069260893, -122.388577089603)",143000738-E37 -151192178,E18,15045048,Medical Incident,04/29/2015,04/29/2015,04/29/2015 02:06:41 PM,04/29/2015 02:07:11 PM,04/29/2015 02:07:42 PM,04/29/2015 02:09:37 PM,04/29/2015 02:14:52 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Code 3 Transport,04/29/2015 03:39:56 PM,2900 Block of GREAT HWY,San Francisco,94132,B08,19,8712,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7297644793355, -122.506576531064)",151192178-E18 -141831169,89,14063252,Medical Incident,07/02/2014,07/02/2014,07/02/2014 10:31:46 AM,07/02/2014 10:32:52 AM,07/02/2014 10:33:38 AM,07/02/2014 10:33:48 AM,07/02/2014 10:50:46 AM,07/02/2014 11:04:48 AM,07/02/2014 11:23:07 AM,Code 2 Transport,07/02/2014 12:03:44 PM,500 Block of PACIFIC AVE,San Francisco,94133,B01,13,1246,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.797224260088, -122.404699326635)",141831169-89 -160931516,KM08,16036834,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:02:37 PM,04/02/2016 12:05:33 PM,04/02/2016 12:06:34 PM,04/02/2016 12:07:32 PM,04/02/2016 12:28:09 PM,04/02/2016 12:28:13 PM,04/02/2016 12:56:26 PM,Code 2 Transport,04/02/2016 01:15:30 PM,48TH AV/ORTEGA ST,San Francisco,94116,B08,23,7725,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.751003286283, -122.507416228519)",160931516-KM08 -141672058,E21,14057651,Medical Incident,06/16/2014,06/16/2014,06/16/2014 03:32:57 PM,06/16/2014 03:33:34 PM,06/16/2014 03:34:25 PM,06/16/2014 03:35:29 PM,06/16/2014 03:37:24 PM,04/25/2016 01:16:44 PM,04/25/2016 01:16:44 PM,No Merit,06/16/2014 03:40:38 PM,500 Block of DIVISADERO ST,San Francisco,94117,B05,21,4145,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7745415617003, -122.437589912285)",141672058-E21 -150360055,62,15013687,Medical Incident,02/05/2015,02/04/2015,02/05/2015 12:16:45 AM,02/05/2015 12:19:38 AM,02/05/2015 12:19:51 AM,02/05/2015 12:20:02 AM,02/05/2015 12:27:45 AM,02/05/2015 12:46:30 AM,02/05/2015 12:58:13 AM,Code 2 Transport,02/05/2015 01:25:57 AM,1400 Block of 48TH AVE,San Francisco,94122,B08,23,7723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7593947893332, -122.508071011138)",150360055-62 -152441098,64,15092989,Medical Incident,09/01/2015,09/01/2015,09/01/2015 09:26:22 AM,09/01/2015 09:28:01 AM,09/01/2015 09:28:32 AM,09/01/2015 09:28:42 AM,09/01/2015 09:54:29 AM,09/01/2015 10:00:54 AM,09/01/2015 10:33:39 AM,Code 2 Transport,09/01/2015 11:35:29 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",152441098-64 -153262001,E13,15125538,Medical Incident,11/22/2015,11/22/2015,11/22/2015 02:51:58 PM,11/22/2015 02:52:31 PM,11/22/2015 02:52:39 PM,11/22/2015 02:53:38 PM,11/22/2015 02:56:48 PM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,Code 2 Transport,11/22/2015 03:07:48 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",153262001-E13 -153280891,E29,15126162,Transfer,11/24/2015,11/24/2015,11/24/2015 09:02:30 AM,11/24/2015 09:02:36 AM,11/24/2015 09:07:12 AM,11/24/2015 09:07:40 AM,11/24/2015 09:15:17 AM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Patient Declined Transport,11/24/2015 09:23:01 AM,TERRY A FRANCOIS BL/ILLINOIS ST,San Francisco,94158,B03,4,2671,2,2,2,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7643793716071, -122.387916811135)",153280891-E29 -160942312,87,16037310,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:26:41 PM,04/03/2016 03:28:55 PM,04/03/2016 03:29:36 PM,04/03/2016 03:29:53 PM,04/03/2016 03:46:56 PM,04/03/2016 04:03:23 PM,04/03/2016 04:23:25 PM,Code 2 Transport,04/03/2016 05:09:09 PM,0 Block of WOODACRE DR,San Francisco,94132,B08,19,8452,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7328132822142, -122.472791037621)",160942312-87 -151153374,85,15043608,Medical Incident,04/25/2015,04/25/2015,04/25/2015 09:27:02 PM,04/25/2015 09:27:25 PM,04/25/2015 09:27:46 PM,04/25/2015 09:27:55 PM,04/25/2015 09:36:57 PM,04/25/2015 09:53:04 PM,04/25/2015 10:16:57 PM,Code 2 Transport,04/25/2015 10:54:38 PM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7174171049991, -122.480660975829)",151153374-85 -160951952,KM11,16037647,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:31:31 PM,04/04/2016 01:32:12 PM,04/04/2016 01:41:20 PM,04/04/2016 01:41:36 PM,04/04/2016 01:47:50 PM,04/04/2016 02:02:19 PM,04/04/2016 02:13:20 PM,Code 2 Transport,04/04/2016 02:47:35 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",160951952-KM11 -152643930,E02,15101263,Structure Fire,09/21/2015,09/21/2015,09/21/2015 08:41:00 PM,09/21/2015 08:42:00 PM,09/21/2015 08:42:15 PM,09/21/2015 08:43:50 PM,09/21/2015 08:46:06 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Fire,09/21/2015 08:46:23 PM,700 Block of HYDE ST,San Francisco,94109,B04,3,1557,3,3,3,true,Alarm,1,ENGINE,6,4,3,Nob Hill,"(37.7877028540247, -122.416801264327)",152643930-E02 -143442632,E43,14122401,Medical Incident,12/10/2014,12/10/2014,12/10/2014 04:18:59 PM,12/10/2014 04:19:40 PM,12/10/2014 04:21:03 PM,12/10/2014 04:26:55 PM,12/10/2014 04:26:55 PM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Code 3 Transport,12/10/2014 05:19:08 PM,100 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",143442632-E43 -160971723,65,16038400,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:56:59 AM,04/06/2016 11:59:27 AM,04/06/2016 12:00:03 PM,04/06/2016 12:00:22 PM,04/06/2016 12:11:07 PM,04/06/2016 12:22:32 PM,04/06/2016 12:37:59 PM,Code 2 Transport,04/06/2016 01:27:43 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",160971723-65 -152512100,E16,15095901,Structure Fire,09/08/2015,09/08/2015,09/08/2015 01:29:01 PM,09/08/2015 01:29:47 PM,09/08/2015 01:30:09 PM,09/08/2015 01:31:56 PM,09/08/2015 01:51:31 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Fire,09/08/2015 01:52:48 PM,1100 Block of BAY ST,San Francisco,94123,B04,16,3236,3,3,3,true,Alarm,1,ENGINE,6,4,2,Marina,"(37.8039665464038, -122.426081542745)",152512100-E16 -150920292,T01,15034830,Alarms,04/02/2015,04/01/2015,04/02/2015 03:29:47 AM,04/02/2015 03:31:39 AM,04/02/2015 03:31:44 AM,04/02/2015 03:34:16 AM,04/02/2015 03:36:41 AM,04/25/2016 01:11:24 PM,04/25/2016 01:11:24 PM,Fire,04/02/2015 03:44:41 AM,100 Block of 2ND ST,San Francisco,94105,B03,1,2145,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7878321941049, -122.399477770814)",150920292-T01 -141741426,65,14060021,Medical Incident,06/23/2014,06/23/2014,06/23/2014 12:23:36 PM,06/23/2014 12:23:36 PM,06/23/2014 12:25:10 PM,06/23/2014 12:25:10 PM,06/23/2014 12:28:34 PM,06/23/2014 01:17:52 PM,06/23/2014 01:18:05 PM,Code 2 Transport,06/23/2014 02:01:37 PM,POLK ST/WILLOW ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835677840088, -122.419273434964)",141741426-65 -151481374,RS1,15056301,Medical Incident,05/28/2015,05/28/2015,05/28/2015 11:25:48 AM,05/28/2015 11:26:51 AM,05/28/2015 11:27:26 AM,05/28/2015 11:27:47 AM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Against Medical Advice,05/28/2015 11:37:05 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",151481374-RS1 -151441262,E37,15054733,Medical Incident,05/24/2015,05/24/2015,05/24/2015 10:39:49 AM,05/24/2015 10:40:44 AM,05/24/2015 10:41:38 AM,05/24/2015 10:42:21 AM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,04/25/2016 01:10:25 PM,Code 2 Transport,05/24/2015 10:48:00 AM,1100 Block of WISCONSIN ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7531483460231, -122.39847312276)",151441262-E37 -152871890,E21,15110254,Alarms,10/14/2015,10/14/2015,10/14/2015 12:24:12 PM,10/14/2015 12:25:50 PM,10/14/2015 12:25:55 PM,10/14/2015 12:26:12 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Fire,10/14/2015 12:31:01 PM,100 Block of OAK ST,San Francisco,94102,B02,36,3266,3,3,3,true,Alarm,1,ENGINE,3,2,5,Hayes Valley,"(37.7751828010225, -122.421790707519)",152871890-E21 -150381520,72,15014747,Medical Incident,02/07/2015,02/07/2015,02/07/2015 11:51:25 AM,02/07/2015 11:54:19 AM,02/07/2015 11:55:29 AM,02/07/2015 11:55:49 AM,02/07/2015 12:07:23 PM,02/07/2015 12:08:39 PM,02/07/2015 12:14:50 PM,Code 2 Transport,02/07/2015 12:38:18 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",150381520-72 -141410357,67,14048223,Medical Incident,05/21/2014,05/20/2014,05/21/2014 04:57:43 AM,05/21/2014 04:58:44 AM,05/21/2014 05:01:30 AM,05/21/2014 05:02:59 AM,05/21/2014 05:09:08 AM,05/21/2014 05:19:06 AM,05/21/2014 05:23:52 AM,Code 2 Transport,05/21/2014 05:43:19 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563716216308, -122.416574134534)",141410357-67 -142072417,B09,14071762,Medical Incident,07/26/2014,07/26/2014,07/26/2014 04:40:07 PM,07/26/2014 04:40:07 PM,07/26/2014 04:43:00 PM,07/26/2014 04:43:05 PM,07/26/2014 04:44:14 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,Other,07/26/2014 05:45:25 PM,PAUL AV/SAN BRUNO AV,San Francisco,94134,B10,44,6326,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,10,9,Portola,"(37.7239199964679, -122.402060968175)",142072417-B09 -160930249,AM18,16036690,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:40:14 AM,04/02/2016 01:41:24 AM,04/02/2016 01:41:35 AM,04/02/2016 01:42:02 AM,04/02/2016 01:44:55 AM,04/02/2016 02:07:37 AM,04/02/2016 02:15:45 AM,Code 2 Transport,04/02/2016 02:46:10 AM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",160930249-AM18 -153350169,T13,15128647,Alarms,12/01/2015,11/30/2015,12/01/2015 01:46:19 AM,12/01/2015 01:48:00 AM,12/01/2015 01:48:37 AM,12/01/2015 01:50:23 AM,12/01/2015 01:53:49 AM,04/25/2016 01:06:54 PM,04/25/2016 01:06:54 PM,Fire,12/01/2015 02:05:11 AM,0 Block of KEARNY ST,San Francisco,94108,B01,1,1241,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7877942875414, -122.403529728368)",153350169-T13 -151201435,E02,15045351,Medical Incident,04/30/2015,04/30/2015,04/30/2015 11:20:13 AM,04/30/2015 11:21:42 AM,04/30/2015 11:22:22 AM,04/30/2015 11:23:26 AM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,No Merit,04/30/2015 11:25:47 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",151201435-E02 -143360565,AM02,14118967,Traffic Collision,12/02/2014,12/01/2014,12/02/2014 07:24:19 AM,12/02/2014 07:25:47 AM,12/02/2014 07:26:05 AM,12/02/2014 07:26:43 AM,12/02/2014 07:29:14 AM,12/02/2014 07:48:00 AM,12/02/2014 08:14:52 AM,Code 2 Transport,12/02/2014 08:31:42 AM,SPEAR ST/HARRISON ST,San Francisco,94105,B03,35,2113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7888377778921, -122.389428941783)",143360565-AM02 -152613337,E01,15099874,Traffic Collision,09/18/2015,09/18/2015,09/18/2015 06:49:08 PM,09/18/2015 06:49:38 PM,09/18/2015 06:50:30 PM,09/18/2015 06:52:18 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/18/2015 06:55:37 PM,TAYLOR ST/MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",152613337-E01 -160963979,70,16038200,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:10:43 PM,04/05/2016 10:14:07 PM,04/05/2016 10:15:13 PM,04/05/2016 10:15:48 PM,04/05/2016 10:19:18 PM,04/05/2016 10:40:26 PM,04/05/2016 11:17:18 PM,Code 2 Transport,04/05/2016 11:34:49 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160963979-70 -143350720,RC1,14118622,Medical Incident,12/01/2014,12/01/2014,12/01/2014 08:24:58 AM,12/01/2014 08:26:39 AM,12/01/2014 08:27:28 AM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,Code 2 Transport,12/01/2014 08:28:19 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",143350720-RC1 -141593222,68,14054996,Medical Incident,06/08/2014,06/08/2014,06/08/2014 10:21:45 PM,06/08/2014 10:24:37 PM,06/08/2014 10:35:30 PM,06/08/2014 10:35:38 PM,06/08/2014 10:43:05 PM,06/08/2014 10:58:11 PM,06/08/2014 11:05:22 PM,Code 2 Transport,06/08/2014 11:51:03 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",141593222-68 -150841940,AM02,15032056,Medical Incident,03/25/2015,03/25/2015,03/25/2015 01:14:41 PM,03/25/2015 01:15:34 PM,03/25/2015 01:15:50 PM,03/25/2015 01:17:06 PM,03/25/2015 01:20:37 PM,03/25/2015 01:29:34 PM,03/25/2015 01:50:27 PM,Code 2 Transport,03/25/2015 02:22:32 PM,500 Block of 34TH AVE,San Francisco,94121,B07,14,7245,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7786907477401, -122.494241004163)",150841940-AM02 -150081629,85,15003114,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:07:00 PM,01/08/2015 12:09:24 PM,01/08/2015 12:38:18 PM,01/08/2015 12:38:59 PM,01/08/2015 12:58:06 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Patient Declined Transport,01/08/2015 01:32:49 PM,0 Block of SOUTH PARK,San Francisco,94107,B02,8,2152,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",150081629-85 -160923604,60,16036621,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:42:44 PM,04/01/2016 09:45:14 PM,04/01/2016 09:45:41 PM,04/01/2016 09:45:47 PM,04/01/2016 09:57:36 PM,04/01/2016 10:19:05 PM,04/01/2016 10:27:49 PM,Code 2 Transport,04/01/2016 11:03:13 PM,MARKET ST/4TH ST,San Francisco,94103,B03,1,1322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160923604-60 -160933430,53,16037046,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:08:53 PM,04/02/2016 09:09:17 PM,04/02/2016 09:09:58 PM,04/02/2016 09:10:04 PM,04/02/2016 09:15:27 PM,04/02/2016 09:30:28 PM,04/02/2016 10:08:15 PM,Code 3 Transport,04/02/2016 10:35:49 PM,1200 Block of 48TH AVE,San Francisco,94122,B08,23,7721,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7631362332956, -122.508195889084)",160933430-53 -150742453,55,15028462,Medical Incident,03/15/2015,03/15/2015,03/15/2015 04:05:43 PM,03/15/2015 04:08:49 PM,03/15/2015 04:10:34 PM,03/15/2015 04:13:57 PM,03/15/2015 04:17:47 PM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Patient Declined Transport,03/15/2015 04:38:15 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150742453-55 -160953413,85,16037770,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:25:14 PM,04/04/2016 07:26:31 PM,04/04/2016 07:26:46 PM,04/04/2016 07:26:58 PM,04/04/2016 07:31:57 PM,04/04/2016 07:44:10 PM,04/04/2016 07:47:33 PM,Code 3 Transport,04/04/2016 08:42:39 PM,1100 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",160953413-85 -142171520,82,14075232,Medical Incident,08/05/2014,08/05/2014,08/05/2014 12:52:26 PM,08/05/2014 12:52:26 PM,08/05/2014 12:53:59 PM,08/05/2014 12:54:06 PM,08/05/2014 01:24:56 PM,04/25/2016 01:15:50 PM,04/25/2016 01:15:50 PM,Medical Examiner,08/05/2014 02:02:57 PM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,3,E,3,true,Potentially Life-Threatening,1,MEDIC,5,2,6,South of Market,"(37.7780365108208, -122.415429100912)",142171520-82 -141893447,82,14065641,Medical Incident,07/08/2014,07/08/2014,07/08/2014 08:37:29 PM,07/08/2014 08:39:41 PM,07/08/2014 08:51:01 PM,07/08/2014 08:51:09 PM,07/08/2014 09:07:08 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Patient Declined Transport,07/08/2014 09:24:59 PM,0 Block of SOUTH PARK,San Francisco,94107,B03,8,2153,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",141893447-82 -143360757,E02,14118996,Medical Incident,12/02/2014,12/02/2014,12/02/2014 08:46:44 AM,12/02/2014 08:48:01 AM,12/02/2014 09:00:43 AM,12/02/2014 09:02:18 AM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Code 2 Transport,12/02/2014 09:05:14 AM,1600 Block of GRANT AVE,San Francisco,94133,B01,28,1265,2,2,2,true,Non Life-threatening,1,ENGINE,3,1,3,North Beach,"(37.8018955776903, -122.407764273463)",143360757-E02 -152730536,T15,15104388,Alarms,09/30/2015,09/29/2015,09/30/2015 06:55:43 AM,09/30/2015 06:56:14 AM,09/30/2015 06:56:46 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/30/2015 06:57:56 AM,100 Block of APTOS AVE,San Francisco,94127,B09,15,853,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",152730536-T15 -152092818,AM08,15079741,Medical Incident,07/28/2015,07/28/2015,07/28/2015 05:25:04 PM,07/28/2015 05:26:08 PM,07/28/2015 05:26:55 PM,07/28/2015 05:27:47 PM,07/28/2015 05:44:11 PM,07/28/2015 05:57:07 PM,07/28/2015 06:07:04 PM,Code 2 Transport,07/28/2015 06:41:05 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.773955543025, -122.420958448413)",152092818-AM08 -153331971,KM08,15128111,Medical Incident,11/29/2015,11/29/2015,11/29/2015 03:46:14 PM,11/29/2015 03:48:31 PM,11/29/2015 03:51:11 PM,11/29/2015 03:53:03 PM,11/29/2015 04:05:25 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,No Merit,11/29/2015 04:22:15 PM,300 Block of 9TH AVE,San Francisco,94118,B07,31,7135,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7818377800951, -122.467627461804)",153331971-KM08 -151932511,87,15073724,Medical Incident,07/12/2015,07/12/2015,07/12/2015 04:34:43 PM,07/12/2015 04:37:36 PM,07/12/2015 04:37:47 PM,07/12/2015 04:38:14 PM,07/12/2015 04:50:55 PM,07/12/2015 05:09:22 PM,07/12/2015 05:22:45 PM,Code 2 Transport,07/12/2015 05:51:59 PM,2400 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8333,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7155539993329, -122.445057537091)",151932511-87 -160943287,75,16037418,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:38:25 PM,04/03/2016 08:39:16 PM,04/03/2016 08:39:31 PM,04/03/2016 08:39:43 PM,04/03/2016 08:46:08 PM,04/03/2016 08:59:00 PM,04/03/2016 09:21:17 PM,Code 2 Transport,04/03/2016 09:39:06 PM,100 Block of 28TH ST,San Francisco,94131,B06,11,5562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7454218862265, -122.425685856236)",160943287-75 -143342902,87,14118491,Medical Incident,11/30/2014,11/30/2014,11/30/2014 07:43:23 PM,11/30/2014 07:48:29 PM,11/30/2014 07:51:34 PM,11/30/2014 07:51:58 PM,11/30/2014 08:18:33 PM,11/30/2014 08:20:46 PM,04/25/2016 01:13:43 PM,Code 2 Transport,11/30/2014 08:46:27 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",143342902-87 -153481763,E11,15134073,Alarms,12/14/2015,12/14/2015,12/14/2015 01:01:27 PM,12/14/2015 01:02:37 PM,12/14/2015 01:02:52 PM,12/14/2015 01:04:49 PM,04/25/2016 01:06:38 PM,04/25/2016 01:06:38 PM,04/25/2016 01:06:38 PM,Fire,12/14/2015 01:10:24 PM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Alarm,1,ENGINE,3,6,9,Bernal Heights,"(37.7436052440139, -122.421251086174)",153481763-E11 -160972115,62,16038435,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:24:52 PM,04/06/2016 01:26:15 PM,04/06/2016 01:27:47 PM,04/06/2016 01:28:01 PM,04/06/2016 01:30:54 PM,04/06/2016 01:37:49 PM,04/06/2016 02:20:33 PM,Code 2 Transport,04/06/2016 03:00:27 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",160972115-62 -153311435,87,15127355,Medical Incident,11/27/2015,11/27/2015,11/27/2015 12:19:47 PM,11/27/2015 12:20:03 PM,11/27/2015 12:21:12 PM,11/27/2015 12:21:20 PM,11/27/2015 12:34:49 PM,11/27/2015 12:50:32 PM,11/27/2015 01:26:23 PM,Code 2 Transport,11/27/2015 02:20:32 PM,500 Block of FONT BLVD,San Francisco,94132,B08,19,8681,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7202157803025, -122.480295974155)",153311435-87 -150882167,88,15033629,Medical Incident,03/29/2015,03/29/2015,03/29/2015 02:33:00 PM,03/29/2015 02:33:33 PM,03/29/2015 02:34:02 PM,03/29/2015 02:34:54 PM,03/29/2015 02:36:57 PM,03/29/2015 02:51:56 PM,03/29/2015 02:59:17 PM,Code 2 Transport,03/29/2015 03:25:46 PM,1400 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7497020110556, -122.420499334167)",150882167-88 -142860375,D3,14100708,Structure Fire,10/13/2014,10/12/2014,10/13/2014 04:04:26 AM,10/13/2014 04:04:52 AM,10/13/2014 04:05:45 AM,10/13/2014 04:06:59 AM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Fire,10/13/2014 04:10:30 AM,18TH ST/DIAMOND ST,San Francisco,94114,B05,6,5415,3,3,3,false,Alarm,1,CHIEF,7,5,8,Castro/Upper Market,"(37.760758109732, -122.437190626277)",142860375-D3 -160923286,85,16036587,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:55:30 PM,04/01/2016 07:55:30 PM,04/01/2016 07:56:55 PM,04/01/2016 07:57:04 PM,04/01/2016 08:12:16 PM,04/01/2016 08:38:09 PM,04/01/2016 08:55:26 PM,Code 2 Transport,04/01/2016 09:25:10 PM,SILVER AV/PALOU AV,San Francisco,94124,B10,42,6431,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371561854175, -122.396515237254)",160923286-85 -141980961,T01,14068494,Medical Incident,07/17/2014,07/17/2014,07/17/2014 09:18:27 AM,07/17/2014 09:18:27 AM,07/17/2014 09:19:21 AM,07/17/2014 09:21:31 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 3 Transport,07/17/2014 09:21:34 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,E,E,3,false,Potentially Life-Threatening,1,TRUCK,5,3,6,South of Market,"(37.7813340573864, -122.399027495005)",141980961-T01 -142543605,E03,14088834,Medical Incident,09/11/2014,09/11/2014,09/11/2014 10:00:21 PM,09/11/2014 10:00:21 PM,09/11/2014 10:00:57 PM,09/11/2014 10:02:20 PM,09/11/2014 10:04:33 PM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Code 2 Transport,09/11/2014 10:15:23 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",142543605-E03 -152031944,88,15077341,Medical Incident,07/22/2015,07/22/2015,07/22/2015 01:55:13 PM,07/22/2015 01:57:16 PM,07/22/2015 01:58:50 PM,07/22/2015 02:01:57 PM,07/22/2015 02:02:06 PM,04/25/2016 01:09:20 PM,04/25/2016 01:09:20 PM,Unable to Locate,07/22/2015 02:11:09 PM,1200 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7912571694899, -122.414917737337)",152031944-88 -142421116,E01,14084183,Medical Incident,08/30/2014,08/30/2014,08/30/2014 10:21:30 AM,08/30/2014 10:23:41 AM,08/30/2014 10:26:37 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Unable to Locate,08/30/2014 10:27:59 AM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",142421116-E01 -142412182,E33,14083910,Medical Incident,08/29/2014,08/29/2014,08/29/2014 03:31:16 PM,08/29/2014 03:32:48 PM,08/29/2014 03:40:05 PM,08/29/2014 03:41:53 PM,08/29/2014 03:43:28 PM,04/25/2016 01:15:23 PM,04/25/2016 01:15:23 PM,Code 2 Transport,08/29/2014 03:46:53 PM,5800 Block of MISSION ST,San Francisco,94112,B09,33,6213,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7090590578532, -122.451746963381)",142412182-E33 -142203251,E43,14076480,Traffic Collision,08/08/2014,08/08/2014,08/08/2014 07:30:35 PM,08/08/2014 07:32:26 PM,08/08/2014 07:33:04 PM,08/08/2014 07:34:11 PM,08/08/2014 07:36:13 PM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,Code 2 Transport,08/08/2014 08:00:01 PM,CURTIS ST/BRUNSWICK ST,San Francisco,94112,B09,43,6222,2,2,2,false,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.711749776528, -122.439081694478)",142203251-E43 -151123280,61,15042448,Medical Incident,04/22/2015,04/22/2015,04/22/2015 06:47:51 PM,04/22/2015 06:50:28 PM,04/22/2015 06:51:13 PM,04/22/2015 06:51:21 PM,04/22/2015 07:08:19 PM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,No Merit,04/22/2015 07:34:05 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",151123280-61 -151633730,75,15062509,Medical Incident,06/12/2015,06/12/2015,06/12/2015 10:05:14 PM,06/12/2015 10:07:13 PM,06/12/2015 10:07:35 PM,06/12/2015 10:07:42 PM,06/12/2015 10:13:28 PM,06/12/2015 10:29:28 PM,06/12/2015 10:35:21 PM,Code 2 Transport,06/12/2015 11:06:51 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",151633730-75 -152994068,E15,15114975,Medical Incident,10/26/2015,10/26/2015,10/26/2015 11:19:16 PM,10/26/2015 11:19:24 PM,10/26/2015 11:19:38 PM,10/26/2015 11:22:10 PM,10/26/2015 11:26:16 PM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Code 3 Transport,10/26/2015 11:35:35 PM,400 Block of ALLISON ST,San Francisco,94112,B09,43,6228,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7096831224031, -122.440542779914)",152994068-E15 -160931234,KM12,16036801,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:39:50 AM,04/02/2016 10:39:50 AM,04/02/2016 10:40:05 AM,04/02/2016 10:41:12 AM,04/02/2016 10:50:28 AM,04/02/2016 11:01:17 AM,04/02/2016 11:17:27 AM,Code 2 Transport,04/02/2016 11:37:03 AM,1700 Block of FELL ST,San Francisco,94117,B05,21,4514,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7729471525997, -122.446710864606)",160931234-KM12 -143380912,KM10,14119886,Medical Incident,12/04/2014,12/04/2014,12/04/2014 08:44:52 AM,12/04/2014 08:47:43 AM,12/04/2014 08:58:07 AM,12/04/2014 08:58:41 AM,12/04/2014 09:14:02 AM,12/04/2014 09:24:17 AM,12/04/2014 09:34:00 AM,Code 2 Transport,12/04/2014 10:19:06 AM,HARRISON ST/14TH ST,San Francisco,94103,B02,36,5112,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7686712258347, -122.413396248713)",143380912-KM10 -141100194,AM28,14037122,Medical Incident,04/20/2014,04/20/2014,04/20/2014 02:57:06 PM,04/20/2014 02:57:45 PM,04/20/2014 03:13:25 PM,04/20/2014 03:13:25 PM,04/20/2014 03:13:25 PM,04/25/2016 01:17:47 PM,04/25/2016 01:17:47 PM,Patient Declined Transport,04/20/2014 03:13:31 PM,POST ST/WEBSTER ST,SAN FRANCISCO,94115,B04,5,3513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.7853726453487, -122.431366397986)",141100194-AM28 -153361322,84,15129170,Medical Incident,12/02/2015,12/02/2015,12/02/2015 10:40:43 AM,12/02/2015 10:40:43 AM,12/02/2015 10:41:06 AM,12/02/2015 10:41:14 AM,12/02/2015 10:45:36 AM,12/02/2015 11:07:21 AM,12/02/2015 11:24:03 AM,Code 2 Transport,12/02/2015 12:02:34 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",153361322-84 -160940179,76,16037113,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:59:47 AM,04/03/2016 01:01:40 AM,04/03/2016 01:03:03 AM,04/03/2016 01:03:10 AM,04/03/2016 01:07:22 AM,04/03/2016 01:15:15 AM,04/03/2016 01:17:45 AM,Code 2 Transport,04/03/2016 01:31:07 AM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",160940179-76 -153430068,E17,15131827,Medical Incident,12/09/2015,12/08/2015,12/09/2015 12:28:04 AM,12/09/2015 12:30:02 AM,12/09/2015 12:30:32 AM,12/09/2015 12:35:24 AM,12/09/2015 12:35:24 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 12:44:58 AM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",153430068-E17 -160971056,KM05,16038344,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:26:52 AM,04/06/2016 09:29:00 AM,04/06/2016 09:29:30 AM,04/06/2016 09:30:39 AM,04/06/2016 09:36:08 AM,04/06/2016 09:50:25 AM,04/06/2016 10:11:51 AM,Code 2 Transport,04/06/2016 10:44:13 AM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7626731562116, -122.431130525646)",160971056-KM05 -152874210,E03,15110465,Medical Incident,10/14/2015,10/14/2015,10/14/2015 10:08:00 PM,10/14/2015 10:08:00 PM,10/14/2015 10:08:46 PM,10/14/2015 10:09:29 PM,10/14/2015 10:12:30 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 10:20:12 PM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",152874210-E03 -151232097,56,15046706,Medical Incident,05/03/2015,05/03/2015,05/03/2015 03:32:14 PM,05/03/2015 03:33:49 PM,05/03/2015 03:34:42 PM,05/03/2015 03:35:04 PM,05/03/2015 03:44:14 PM,05/03/2015 04:25:05 PM,05/03/2015 04:50:41 PM,Code 2 Transport,05/03/2015 05:29:03 PM,800 Block of 34TH AVE,San Francisco,94121,B07,34,7252,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7730659199662, -122.493831266165)",151232097-56 -141200237,E36,14040586,Medical Incident,04/30/2014,04/30/2014,04/30/2014 02:52:02 PM,04/30/2014 02:53:40 PM,04/30/2014 02:55:25 PM,04/30/2014 02:57:14 PM,04/30/2014 03:01:03 PM,04/25/2016 01:17:36 PM,04/25/2016 01:17:36 PM,Code 2 Transport,04/30/2014 03:20:42 PM,200 Block of GOUGH ST,SAN FRANCISCO,94102,B02,36,3266,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.775244832582, -122.422713876818)",141200237-E36 -160964035,63,16038206,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:27:59 PM,04/05/2016 10:30:27 PM,04/05/2016 10:30:57 PM,04/05/2016 10:31:16 PM,04/05/2016 10:36:44 PM,04/05/2016 10:42:56 PM,04/05/2016 11:17:20 PM,Code 2 Transport,04/05/2016 11:47:35 PM,231-B 2ND AV,San Francisco,94118,B07,10,7114,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7840503667825, -122.460271225886)",160964035-63 -151503942,E36,15057286,Other,05/30/2015,05/30/2015,05/30/2015 11:50:15 PM,05/30/2015 11:51:05 PM,05/30/2015 11:51:52 PM,05/30/2015 11:54:15 PM,05/30/2015 11:56:22 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Cancelled,05/30/2015 11:57:19 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",151503942-E36 -141010370,RC2,14034260,Structure Fire,04/11/2014,04/11/2014,04/11/2014 10:52:14 PM,04/11/2014 10:53:37 PM,04/11/2014 10:58:19 PM,04/25/2016 01:17:56 PM,04/11/2014 10:58:28 PM,04/25/2016 01:17:56 PM,04/25/2016 01:17:56 PM,Code 2 Transport,04/11/2014 11:46:03 PM,400 Block of 3RD AVE,SAN FRANCISCO,94118,B07,31,7117,,3,3,true,Fire,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7801944963642, -122.461066150045)",141010370-RC2 -142910457,E21,14102512,Medical Incident,10/18/2014,10/17/2014,10/18/2014 03:05:12 AM,10/18/2014 03:07:01 AM,10/18/2014 03:07:54 AM,10/18/2014 03:08:56 AM,10/18/2014 03:11:10 AM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 3 Transport,10/18/2014 03:31:00 AM,900 Block of BUENAVISTAWEST AV,San Francisco,94117,B05,21,4353,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7699941054658, -122.44324157754)",142910457-E21 -143530505,67,14126025,Medical Incident,12/19/2014,12/18/2014,12/19/2014 06:47:00 AM,12/19/2014 06:48:07 AM,12/19/2014 06:50:39 AM,12/19/2014 06:50:49 AM,12/19/2014 07:07:12 AM,12/19/2014 07:16:21 AM,12/19/2014 07:39:33 AM,Code 2 Transport,12/19/2014 08:30:22 AM,POTRERO AV/16TH ST,San Francisco,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",143530505-67 -160933208,62,16037016,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:53:03 PM,04/02/2016 07:53:54 PM,04/02/2016 07:54:49 PM,04/02/2016 07:55:00 PM,04/02/2016 08:01:50 PM,04/02/2016 08:32:56 PM,04/02/2016 09:03:45 PM,Code 2 Transport,04/02/2016 09:28:11 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160933208-62 -151483682,58,15056502,Medical Incident,05/28/2015,05/28/2015,05/28/2015 10:16:35 PM,05/28/2015 10:17:48 PM,05/28/2015 10:19:42 PM,05/28/2015 10:19:42 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,04/25/2016 01:10:20 PM,Code 3 Transport,05/28/2015 10:20:45 PM,MARKET ST/CASTRO ST,San Francisco,94114,B05,6,5233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",151483682-58 -160993842,76,16039508,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:27:09 PM,04/08/2016 10:27:09 PM,04/08/2016 10:27:59 PM,04/08/2016 10:28:04 PM,04/08/2016 10:39:57 PM,04/08/2016 10:53:46 PM,04/08/2016 11:03:54 PM,Code 2 Transport,04/08/2016 11:27:27 PM,HAYES ST/PIERCE ST,San Francisco,94117,B05,21,3631,2,3,3,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7754168593305, -122.434483319865)",160993842-76 -141371930,D2,14046954,Structure Fire,05/17/2014,05/17/2014,05/17/2014 01:56:42 PM,05/17/2014 01:57:36 PM,05/17/2014 01:57:45 PM,05/17/2014 01:59:47 PM,05/17/2014 02:02:25 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,Fire,05/17/2014 02:10:43 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,false,Alarm,1,CHIEF,6,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",141371930-D2 -152073140,E09,15079014,Structure Fire,07/26/2015,07/26/2015,07/26/2015 07:15:22 PM,07/26/2015 07:15:22 PM,07/26/2015 07:15:45 PM,07/26/2015 07:16:50 PM,07/26/2015 07:18:28 PM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,Fire,07/26/2015 07:18:41 PM,QUINT ST/JERROLD AV,San Francisco,94124,B10,9,6443,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7409009621796, -122.393114979107)",152073140-E09 -160922661,84,16036534,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:12:26 PM,04/01/2016 05:13:24 PM,04/01/2016 05:14:07 PM,04/01/2016 05:14:21 PM,04/01/2016 05:17:18 PM,04/01/2016 05:55:43 PM,04/01/2016 06:17:06 PM,Code 2 Transport,04/01/2016 06:44:17 PM,17TH ST/FOLSOM ST,San Francisco,94110,B02,7,5245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.763696767377, -122.415155085854)",160922661-84 -161002685,89,16039882,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:41:02 PM,04/09/2016 06:41:35 PM,04/09/2016 06:42:02 PM,04/09/2016 06:42:15 PM,04/09/2016 06:50:57 PM,04/09/2016 07:01:14 PM,04/09/2016 07:14:20 PM,Code 2 Transport,04/09/2016 07:43:41 PM,0 Block of SHERMAN ST,San Francisco,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7766015774052, -122.405924386123)",161002685-89 -143322161,E10,14117755,Alarms,11/28/2014,11/28/2014,11/28/2014 04:49:37 PM,11/28/2014 04:51:00 PM,11/28/2014 04:51:09 PM,11/28/2014 04:54:17 PM,11/28/2014 04:54:17 PM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/28/2014 05:08:43 PM,0 Block of HEATHER AVE,San Francisco,94118,B05,10,4374,3,3,3,true,Alarm,1,ENGINE,1,5,2,Presidio Heights,"(37.7849091591108, -122.452936292976)",143322161-E10 -150452339,RS1,15017564,Structure Fire,02/14/2015,02/14/2015,02/14/2015 04:01:39 PM,02/14/2015 04:02:34 PM,02/14/2015 04:02:59 PM,02/14/2015 04:04:18 PM,02/14/2015 04:08:43 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 04:08:59 PM,1700 Block of UNION ST,San Francisco,94123,B04,16,3335,3,3,3,false,Alarm,1,RESCUE SQUAD,7,4,2,Marina,"(37.7979757626675, -122.428080525252)",150452339-RS1 -142771374,E08,14097328,Traffic Collision,10/04/2014,10/04/2014,10/04/2014 10:09:55 AM,10/04/2014 10:10:54 AM,10/04/2014 10:12:53 AM,10/04/2014 10:12:53 AM,10/04/2014 10:15:51 AM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Code 3 Transport,10/04/2014 10:44:07 AM,16TH ST/HARRISON ST,San Francisco,94110,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7654476102712, -122.413105244954)",142771374-E08 -151551489,KM04,15059067,Medical Incident,06/04/2015,06/04/2015,06/04/2015 11:31:29 AM,06/04/2015 11:31:57 AM,06/04/2015 11:32:30 AM,06/04/2015 11:33:48 AM,06/04/2015 11:48:38 AM,06/04/2015 12:17:30 PM,06/04/2015 12:29:37 PM,Code 2 Transport,06/04/2015 01:44:44 PM,800 Block of BEACH ST,San Francisco,94109,B01,28,3135,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,2,Russian Hill,"(37.8063833343464, -122.423031649739)",151551489-KM04 -160961952,88,16038030,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:29:32 PM,04/05/2016 01:29:32 PM,04/05/2016 01:31:36 PM,04/05/2016 01:31:47 PM,04/05/2016 01:44:59 PM,04/05/2016 02:01:21 PM,04/05/2016 02:13:25 PM,Code 2 Transport,04/05/2016 03:00:14 PM,WAWONA ST/15TH AV,San Francisco,94127,B08,39,7356,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7376489058712, -122.470962727821)",160961952-88 -141180338,E36,14039929,Medical Incident,04/28/2014,04/28/2014,04/28/2014 07:11:04 PM,04/28/2014 07:12:47 PM,04/28/2014 07:13:35 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Code 2 Transport,04/28/2014 07:14:27 PM,900 Block of EDDY ST,SAN FRANCISCO,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,5,Western Addition,"(37.782522418285, -122.423274430962)",141180338-E36 -150693098,E12,15026481,Outside Fire,03/10/2015,03/10/2015,03/10/2015 07:04:24 PM,03/10/2015 07:05:24 PM,03/10/2015 07:05:29 PM,03/10/2015 07:06:52 PM,03/10/2015 07:06:52 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 07:14:07 PM,0 Block of CARMEL ST,San Francisco,94117,B05,12,5256,3,3,3,true,Fire,1,ENGINE,1,5,5,Inner Sunset,"(37.7609149457937, -122.447023831964)",150693098-E12 -160942058,84,16037284,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:13:19 PM,04/03/2016 02:15:33 PM,04/03/2016 02:15:51 PM,04/03/2016 02:16:23 PM,04/03/2016 02:26:44 PM,04/03/2016 03:22:42 PM,04/03/2016 03:22:44 PM,Code 2 Transport,04/03/2016 03:51:41 PM,0 Block of ELK ST,San Francisco,94131,B06,26,8175,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7357104260855, -122.439799173378)",160942058-84 -143311599,T03,14117390,Other,11/27/2014,11/27/2014,11/27/2014 02:32:10 PM,11/27/2014 02:32:32 PM,11/27/2014 02:34:28 PM,11/27/2014 02:35:24 PM,11/27/2014 02:36:53 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Fire,11/27/2014 02:39:35 PM,POLK ST/EDDY ST,San Francisco,94109,B02,3,3114,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",143311599-T03 -153283535,64,15126405,Medical Incident,11/24/2015,11/24/2015,11/24/2015 08:23:48 PM,11/24/2015 08:26:17 PM,11/24/2015 08:27:47 PM,11/24/2015 08:27:55 PM,11/24/2015 08:33:28 PM,11/24/2015 08:48:47 PM,11/24/2015 09:00:57 PM,Code 2 Transport,11/24/2015 09:39:59 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",153283535-64 -142761792,E36,14096901,Medical Incident,10/03/2014,10/03/2014,10/03/2014 12:38:16 PM,10/03/2014 12:38:42 PM,10/03/2014 12:39:53 PM,10/03/2014 12:39:53 PM,10/03/2014 12:40:59 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Code 2 Transport,10/03/2014 12:53:06 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",142761792-E36 -150221759,T12,15008578,Traffic Collision,01/22/2015,01/22/2015,01/22/2015 01:16:56 PM,01/22/2015 01:16:56 PM,01/22/2015 01:18:29 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Other,01/22/2015 01:19:36 PM,1700 Block of 41ST AVE,San Francisco,94122,B08,18,7633,3,3,3,false,Potentially Life-Threatening,1,TRUCK,9,8,4,Sunset/Parkside,"(37.7541299376639, -122.500039850996)",150221759-T12 -153302414,E01,15127136,Medical Incident,11/26/2015,11/26/2015,11/26/2015 07:21:57 PM,11/26/2015 07:23:38 PM,11/26/2015 07:26:02 PM,11/26/2015 07:26:02 PM,11/26/2015 07:37:05 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,Code 2 Transport,11/26/2015 07:37:13 PM,0 Block of PERRY ST,San Francisco,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",153302414-E01 -142731676,KM12,14095704,Medical Incident,09/30/2014,09/30/2014,09/30/2014 12:25:14 PM,09/30/2014 12:27:02 PM,09/30/2014 12:27:47 PM,09/30/2014 12:28:32 PM,09/30/2014 12:49:25 PM,09/30/2014 01:07:54 PM,09/30/2014 01:28:25 PM,Code 2 Transport,09/30/2014 01:57:09 PM,1400 Block of SOMERSET ST,San Francisco,94134,B10,44,6265,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.71412193463, -122.402424966987)",142731676-KM12 -160953605,62,16037790,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:32:29 PM,04/04/2016 08:35:21 PM,04/04/2016 08:38:01 PM,04/04/2016 08:38:11 PM,04/04/2016 08:45:14 PM,04/04/2016 08:58:40 PM,04/04/2016 09:16:59 PM,Code 2 Transport,04/04/2016 09:46:03 PM,2700 Block of FOLSOM ST,San Francisco,94110,B06,7,5526,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7532984471084, -122.414228764111)",160953605-62 -160931221,62,16036800,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:34:05 AM,04/02/2016 10:35:48 AM,04/02/2016 10:36:28 AM,04/02/2016 10:36:53 AM,04/02/2016 10:55:47 AM,04/02/2016 11:15:28 AM,04/02/2016 11:42:01 AM,Code 2 Transport,04/02/2016 12:10:42 PM,400 Block of GROVE ST,San Francisco,94102,B02,36,3315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7777627622065, -122.423998389584)",160931221-62 -151510843,E03,15057402,Medical Incident,05/31/2015,05/31/2015,05/31/2015 08:36:09 AM,05/31/2015 08:38:08 AM,05/31/2015 08:38:16 AM,05/31/2015 08:40:18 AM,05/31/2015 08:41:51 AM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,No Merit,05/31/2015 08:55:36 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",151510843-E03 -160970145,64,16038251,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:13:30 AM,04/06/2016 01:13:30 AM,04/06/2016 01:13:30 AM,04/06/2016 01:13:30 AM,04/06/2016 01:13:30 AM,04/06/2016 01:46:15 AM,04/06/2016 01:53:32 AM,Code 2 Transport,04/06/2016 02:42:30 AM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B99,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",160970145-64 -152661923,E03,15101868,Medical Incident,09/23/2015,09/23/2015,09/23/2015 01:09:31 PM,09/23/2015 01:09:31 PM,09/23/2015 01:10:03 PM,09/23/2015 01:11:14 PM,09/23/2015 01:13:21 PM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,Code 2 Transport,09/23/2015 01:21:17 PM,400 Block of MCALLISTER ST,San Francisco,94102,B02,3,3112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",152661923-E03 -151402850,E05,15053261,Medical Incident,05/20/2015,05/20/2015,05/20/2015 05:32:16 PM,05/20/2015 05:33:00 PM,05/20/2015 05:33:33 PM,05/20/2015 05:34:48 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Code 2 Transport,05/20/2015 05:34:55 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",151402850-E05 -143161109,84,14111860,Medical Incident,11/12/2014,11/12/2014,11/12/2014 10:07:19 AM,11/12/2014 10:09:31 AM,11/12/2014 10:09:55 AM,11/12/2014 10:10:09 AM,11/12/2014 10:18:19 AM,11/12/2014 10:35:02 AM,11/12/2014 10:56:26 AM,Code 2 Transport,11/12/2014 11:29:38 AM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3311,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7730330183515, -122.422127579529)",143161109-84 -161001643,88,16039770,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:16:39 PM,04/09/2016 01:18:15 PM,04/09/2016 01:19:11 PM,04/09/2016 01:19:42 PM,04/09/2016 01:43:27 PM,04/09/2016 01:53:24 PM,04/09/2016 02:07:01 PM,Code 2 Transport,04/09/2016 02:40:56 PM,100 Block of ARMORY DR,San Francisco,94132,B08,19,8716,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7293138660089, -122.502677767441)",161001643-88 -150171878,B08,15006735,Alarms,01/17/2015,01/17/2015,01/17/2015 01:36:56 PM,01/17/2015 01:38:23 PM,01/17/2015 01:38:31 PM,01/17/2015 01:39:12 PM,01/17/2015 01:43:29 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Fire,01/17/2015 01:45:02 PM,2500 Block of JUDAH ST,San Francisco,94122,B08,18,7513,3,3,3,false,Alarm,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7612125537078, -122.489320068189)",150171878-B08 -141590810,B04,14054717,Gas Leak (Natural and LP Gases),06/08/2014,06/08/2014,06/08/2014 08:35:40 AM,06/08/2014 08:37:29 AM,06/08/2014 08:37:37 AM,06/08/2014 08:38:06 AM,06/08/2014 08:42:22 AM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Fire,06/08/2014 08:50:30 AM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,3,3,3,false,Alarm,1,CHIEF,3,5,5,Japantown,"(37.7848770596387, -122.442348914658)",141590810-B04 -142681683,E08,14093926,Alarms,09/25/2014,09/25/2014,09/25/2014 01:15:47 PM,09/25/2014 01:17:48 PM,09/25/2014 01:17:57 PM,09/25/2014 01:18:49 PM,09/25/2014 01:20:54 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Fire,09/25/2014 01:44:02 PM,500 Block of 3RD ST,San Francisco,94107,B03,8,2173,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7809200704439, -122.395242268798)",142681683-E08 -150770794,E07,15029430,Medical Incident,03/18/2015,03/18/2015,03/18/2015 08:12:46 AM,03/18/2015 08:14:35 AM,03/18/2015 08:15:41 AM,03/18/2015 08:16:57 AM,04/25/2016 01:11:39 PM,04/25/2016 01:11:39 PM,04/25/2016 01:11:39 PM,Code 2 Transport,03/18/2015 08:18:31 AM,200 Block of SHOTWELL ST,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7644380015359, -122.416376372761)",150770794-E07 -153423638,E08,15131764,Medical Incident,12/08/2015,12/08/2015,12/08/2015 08:53:06 PM,12/08/2015 08:53:06 PM,12/08/2015 08:55:10 PM,12/08/2015 08:57:27 PM,12/08/2015 08:59:00 PM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Code 2 Transport,12/08/2015 09:11:45 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",153423638-E08 -152723603,E16,15104284,Alarms,09/29/2015,09/29/2015,09/29/2015 08:52:23 PM,09/29/2015 08:53:57 PM,09/29/2015 08:54:24 PM,09/29/2015 08:55:50 PM,09/29/2015 08:56:52 PM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Fire,09/29/2015 09:17:01 PM,2100 Block of GREEN ST,San Francisco,94123,B04,16,3463,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7962082237995, -122.434468900005)",152723603-E16 -150623362,E02,15023809,Alarms,03/03/2015,03/03/2015,03/03/2015 07:34:18 PM,03/03/2015 07:35:42 PM,03/03/2015 07:36:05 PM,03/03/2015 07:37:18 PM,03/03/2015 07:40:52 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Fire,03/03/2015 07:56:07 PM,100 Block of GRANT AVE,San Francisco,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7884704854224, -122.405107875654)",150623362-E02 -160950081,AM16,16037476,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:46:46 AM,04/04/2016 12:48:13 AM,04/04/2016 12:48:31 AM,04/04/2016 12:49:05 AM,04/04/2016 12:52:24 AM,04/04/2016 01:05:59 AM,04/04/2016 01:23:26 AM,Code 2 Transport,04/04/2016 01:33:52 AM,600 Block of GEARY ST,San Francisco,94109,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",160950081-AM16 -141632555,E05,14056271,Medical Incident,06/12/2014,06/12/2014,06/12/2014 05:31:07 PM,06/12/2014 05:32:41 PM,06/12/2014 05:37:33 PM,06/12/2014 05:39:10 PM,06/12/2014 05:40:52 PM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/12/2014 06:16:38 PM,1700 Block of OFARRELL ST,San Francisco,94115,B04,5,3623,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",141632555-E05 -151712594,E18,15065434,Medical Incident,06/20/2015,06/20/2015,06/20/2015 05:49:58 PM,06/20/2015 05:53:07 PM,06/20/2015 05:53:33 PM,06/20/2015 05:54:34 PM,06/20/2015 05:57:51 PM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Code 2 Transport,06/20/2015 06:11:27 PM,1400 Block of 40TH AVE,San Francisco,94122,B08,23,7631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7597777456855, -122.499361901706)",151712594-E18 -152452789,T02,15093528,Structure Fire,09/02/2015,09/02/2015,09/02/2015 04:21:19 PM,09/02/2015 04:21:19 PM,09/02/2015 04:21:31 PM,09/02/2015 04:23:02 PM,09/02/2015 04:24:32 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/02/2015 04:24:35 PM,STOCKTON ST/WASHINGTON ST,San Francisco,94108,B01,2,1331,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",152452789-T02 -160930510,56,16036717,Medical Incident,04/02/2016,04/01/2016,04/02/2016 04:26:29 AM,04/02/2016 04:27:15 AM,04/02/2016 04:27:32 AM,04/02/2016 04:27:45 AM,04/02/2016 04:32:08 AM,04/02/2016 04:52:12 AM,04/02/2016 04:58:51 AM,Code 2 Transport,04/02/2016 05:30:47 AM,800 Block of MISSION ST,San Francisco,94103,B03,1,2213,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7842816168857, -122.404614647152)",160930510-56 -142661910,E16,14093123,Other,09/23/2014,09/23/2014,09/23/2014 01:50:39 PM,09/23/2014 01:52:32 PM,09/23/2014 02:14:44 PM,09/23/2014 02:16:37 PM,09/23/2014 02:35:30 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Fire,09/23/2014 03:11:33 PM,1600 Block of BATTERY CHAMBERLIN RD,Presidio,94129,B99,51,4630,3,3,3,true,Alarm,1,ENGINE,6,7,2,Presidio,"(37.7915253713789, -122.483480228628)",142661910-E16 -152853555,78,15109589,Medical Incident,10/12/2015,10/12/2015,10/12/2015 08:08:38 PM,10/12/2015 08:09:07 PM,10/12/2015 08:09:24 PM,10/12/2015 08:10:07 PM,10/12/2015 08:17:36 PM,10/12/2015 08:26:20 PM,10/12/2015 08:28:43 PM,Code 2 Transport,10/12/2015 09:06:48 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7700546614555, -122.446128431298)",152853555-78 -160943363,70,16037424,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:07:57 PM,04/03/2016 09:07:57 PM,04/03/2016 09:09:24 PM,04/03/2016 09:09:39 PM,04/03/2016 09:25:06 PM,04/03/2016 09:33:08 PM,04/03/2016 09:44:56 PM,Code 2 Transport,04/03/2016 10:18:46 PM,JENNINGS ST/DONNER AV,San Francisco,94124,B10,17,6537,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7232939196136, -122.392066575318)",160943363-70 -150212998,E17,15008316,Medical Incident,01/21/2015,01/21/2015,01/21/2015 06:20:46 PM,01/21/2015 06:23:42 PM,01/21/2015 06:25:55 PM,01/21/2015 06:27:55 PM,01/21/2015 06:31:59 PM,04/25/2016 01:12:42 PM,04/25/2016 01:12:42 PM,Code 2 Transport,01/21/2015 06:47:33 PM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",150212998-E17 -150911931,AM04,15034609,Medical Incident,04/01/2015,04/01/2015,04/01/2015 01:38:32 PM,04/01/2015 01:38:32 PM,04/01/2015 01:39:00 PM,04/01/2015 01:39:58 PM,04/01/2015 01:44:39 PM,04/01/2015 02:00:59 PM,04/01/2015 02:32:47 PM,Code 2 Transport,04/01/2015 03:00:51 PM,2500 Block of 40TH AVE,San Francisco,94116,B08,18,7617,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7392647601662, -122.497924563428)",150911931-AM04 -143511801,E36,14125386,Medical Incident,12/17/2014,12/17/2014,12/17/2014 12:52:50 PM,12/17/2014 12:54:38 PM,12/17/2014 12:55:09 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,04/25/2016 01:13:23 PM,Unable to Locate,12/17/2014 12:55:45 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,2,2,2,false,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",143511801-E36 -153293630,71,15126773,Medical Incident,11/25/2015,11/25/2015,11/25/2015 08:29:35 PM,11/25/2015 08:30:27 PM,11/25/2015 08:30:50 PM,11/25/2015 08:31:52 PM,11/25/2015 08:35:36 PM,11/25/2015 08:47:56 PM,11/25/2015 08:58:33 PM,Code 2 Transport,11/25/2015 09:22:21 PM,FOLSOM ST/21ST ST,San Francisco,94110,B06,7,5447,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7572976449633, -122.414541469066)",153293630-71 -150182135,KM02,15007151,Medical Incident,01/18/2015,01/18/2015,01/18/2015 03:41:10 PM,01/18/2015 03:42:54 PM,01/18/2015 03:43:42 PM,01/18/2015 03:44:12 PM,01/18/2015 03:45:24 PM,01/18/2015 04:09:08 PM,01/18/2015 04:31:35 PM,Code 2 Transport,01/18/2015 05:05:38 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",150182135-KM02 -160964045,68,16038208,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:29:46 PM,04/05/2016 10:32:20 PM,04/05/2016 10:32:26 PM,04/05/2016 10:32:37 PM,04/05/2016 10:34:54 PM,04/05/2016 10:48:53 PM,04/05/2016 10:55:25 PM,Code 2 Transport,04/05/2016 11:44:05 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160964045-68 -142393741,E01,14083304,Medical Incident,08/27/2014,08/27/2014,08/27/2014 10:40:36 PM,08/27/2014 10:40:36 PM,08/27/2014 10:41:04 PM,08/27/2014 10:43:15 PM,08/27/2014 10:45:59 PM,04/25/2016 01:15:25 PM,04/25/2016 01:15:25 PM,Code 2 Transport,08/27/2014 10:47:31 PM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",142393741-E01 -160930129,AM20,16036680,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:48:01 AM,04/02/2016 12:49:07 AM,04/02/2016 12:49:53 AM,04/02/2016 12:50:41 AM,04/02/2016 12:56:25 AM,04/02/2016 01:26:23 AM,04/02/2016 01:51:52 AM,Code 2 Transport,04/02/2016 02:31:58 AM,100 Block of VERNON ST,San Francisco,94132,B09,33,8411,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7151841543994, -122.46807546609)",160930129-AM20 -153473275,T16,15133854,Structure Fire,12/13/2015,12/13/2015,12/13/2015 09:25:32 PM,12/13/2015 09:25:32 PM,12/13/2015 09:25:47 PM,12/13/2015 09:26:54 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Fire,12/13/2015 09:28:22 PM,FILLMORE ST/UNION ST,San Francisco,94123,B04,16,3552,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.7970890002513, -122.435489829172)",153473275-T16 -142100295,T17,14072692,Structure Fire,07/29/2014,07/28/2014,07/29/2014 04:36:31 AM,07/29/2014 04:36:31 AM,07/29/2014 04:37:44 AM,07/29/2014 04:39:21 AM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Fire,07/29/2014 04:43:01 AM,100 Block of CASHMERE ST,San Francisco,94124,B10,25,6522,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",142100295-T17 -151463262,E01,15055686,Medical Incident,05/26/2015,05/26/2015,05/26/2015 07:40:41 PM,05/26/2015 07:42:01 PM,05/26/2015 07:43:26 PM,05/26/2015 07:45:21 PM,05/26/2015 07:49:01 PM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Code 2 Transport,05/26/2015 07:57:08 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",151463262-E01 -151060735,E04,15039951,Outside Fire,04/16/2015,04/16/2015,04/16/2015 08:16:20 AM,04/16/2015 08:17:55 AM,04/16/2015 08:18:03 AM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Fire,04/16/2015 08:19:47 AM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,3,3,3,false,Fire,1,ENGINE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",151060735-E04 -142733491,T12,14095875,Alarms,09/30/2014,09/30/2014,09/30/2014 09:11:01 PM,09/30/2014 09:12:36 PM,09/30/2014 09:12:54 PM,09/30/2014 09:15:03 PM,09/30/2014 09:19:33 PM,04/25/2016 01:14:49 PM,04/25/2016 01:14:49 PM,Fire,09/30/2014 09:26:34 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,false,Alarm,1,TRUCK,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",142733491-T12 -152682689,B02,15102768,Alarms,09/25/2015,09/25/2015,09/25/2015 04:42:55 PM,09/25/2015 04:45:12 PM,09/25/2015 04:45:16 PM,09/25/2015 04:47:23 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Fire,09/25/2015 04:48:08 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",152682689-B02 -142593407,E07,14090644,Outside Fire,09/16/2014,09/16/2014,09/16/2014 08:36:29 PM,09/16/2014 08:37:54 PM,09/16/2014 08:39:38 PM,09/16/2014 08:40:01 PM,09/16/2014 08:42:15 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Fire,09/16/2014 09:18:18 PM,500 Block of DOLORES ST,San Francisco,94114,B06,7,5435,3,3,3,true,Fire,1,ENGINE,2,6,8,Castro/Upper Market,"(37.759419804663, -122.426036566526)",142593407-E07 -141932690,E34,14067048,Medical Incident,07/12/2014,07/12/2014,07/12/2014 06:57:27 PM,07/12/2014 06:57:27 PM,07/12/2014 06:59:00 PM,07/12/2014 07:00:03 PM,07/12/2014 07:03:20 PM,04/25/2016 01:16:15 PM,04/25/2016 01:16:15 PM,Code 2 Transport,07/12/2014 07:34:27 PM,FULTON ST/43RD AV,San Francisco,94122,B07,34,7262,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7716893806494, -122.50347269064)",141932690-E34 -152211990,61,15084236,Medical Incident,08/09/2015,08/09/2015,08/09/2015 02:33:53 PM,08/09/2015 02:33:53 PM,08/09/2015 02:34:08 PM,08/09/2015 02:34:35 PM,08/09/2015 02:37:29 PM,08/09/2015 02:50:04 PM,08/09/2015 03:02:02 PM,Code 2 Transport,08/09/2015 03:41:17 PM,400 Block of GROVE ST,San Francisco,94102,B02,36,3315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7777627622065, -122.423998389584)",152211990-61 -142172228,83,14075287,Medical Incident,08/05/2014,08/05/2014,08/05/2014 04:13:37 PM,08/05/2014 04:14:09 PM,08/05/2014 04:21:41 PM,08/05/2014 04:22:16 PM,08/05/2014 04:30:20 PM,08/05/2014 04:44:44 PM,08/05/2014 05:14:55 PM,Code 2 Transport,08/05/2014 05:49:35 PM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7748170645635, -122.412845031536)",142172228-83 -160954074,76,16037825,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:03:24 PM,04/04/2016 11:04:53 PM,04/04/2016 11:05:09 PM,04/04/2016 11:05:33 PM,04/04/2016 11:10:06 PM,04/04/2016 11:30:23 PM,04/05/2016 12:08:01 AM,Code 2 Transport,04/05/2016 12:29:00 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160954074-76 -143642646,T17,14130326,Citizen Assist / Service Call,12/30/2014,12/30/2014,12/30/2014 05:18:07 PM,12/30/2014 05:23:38 PM,12/30/2014 05:24:05 PM,12/30/2014 05:26:47 PM,12/30/2014 05:41:28 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 05:42:09 PM,KEITH ST/HUDSON AV,San Francisco,94124,B10,25,6565,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7375142173662, -122.384046508774)",143642646-T17 -152432747,E17,15092787,Smoke Investigation (Outside),08/31/2015,08/31/2015,08/31/2015 04:47:43 PM,08/31/2015 04:49:00 PM,08/31/2015 04:49:48 PM,08/31/2015 04:50:59 PM,08/31/2015 04:54:18 PM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Fire,08/31/2015 05:13:04 PM,400 Block of BAYVIEW CIR,San Francisco,94124,B10,42,6494,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7328817611128, -122.39603203068)",152432747-E17 -160943354,71,16037422,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:01:56 PM,04/03/2016 09:04:56 PM,04/03/2016 09:05:12 PM,04/03/2016 09:05:47 PM,04/03/2016 09:14:37 PM,04/03/2016 09:47:30 PM,04/03/2016 10:04:31 PM,Code 2 Transport,04/03/2016 10:40:02 PM,500 Block of STAPLES AV,San Francisco,94112,B09,15,8233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7291779436625, -122.453210747646)",160943354-71 -160923101,AM16,16036567,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:55:15 PM,04/01/2016 06:55:15 PM,04/01/2016 06:56:11 PM,04/01/2016 06:56:33 PM,04/01/2016 07:04:51 PM,04/01/2016 07:19:07 PM,04/01/2016 07:40:36 PM,Code 2 Transport,04/01/2016 08:13:56 PM,LARKIN ST/MCALLISTER ST,San Francisco,94102,B02,36,1645,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",160923101-AM16 -160982029,62,16038930,Structure Fire,04/07/2016,04/07/2016,04/07/2016 01:27:19 PM,04/07/2016 01:27:43 PM,04/07/2016 01:28:06 PM,04/07/2016 01:29:09 PM,04/07/2016 01:34:24 PM,04/07/2016 01:59:27 PM,04/07/2016 02:36:25 PM,Code 2 Transport,04/07/2016 02:57:07 PM,100 Block of JULIAN AVE,San Francisco,94103,B02,6,5226,3,3,3,true,Fire,1,MEDIC,9,2,9,Mission,"(37.7657922226195, -122.420909958943)",160982029-62 -153081074,52,15118295,Medical Incident,11/04/2015,11/04/2015,11/04/2015 09:25:13 AM,11/04/2015 09:27:23 AM,11/04/2015 09:28:57 AM,11/04/2015 09:30:02 AM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,No Merit,11/04/2015 09:32:43 AM,100 Block of ORIZABA AVE,San Francisco,94112,B09,33,8375,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7118224553199, -122.462506537127)",153081074-52 -151030385,B02,15038823,Structure Fire,04/13/2015,04/12/2015,04/13/2015 04:38:12 AM,04/13/2015 04:39:45 AM,04/13/2015 04:40:06 AM,04/13/2015 04:41:15 AM,04/13/2015 04:44:45 AM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Fire,04/13/2015 04:50:11 AM,ROOSEVELT WY/LEVANT ST,San Francisco,94114,B05,6,5175,3,3,3,false,Alarm,1,CHIEF,2,5,8,Castro/Upper Market,"(37.7652950997532, -122.441931911631)",151030385-B02 -143273114,AR1,14116009,Structure Fire,11/23/2014,11/23/2014,11/23/2014 06:50:54 PM,11/23/2014 06:51:23 PM,11/23/2014 06:57:32 PM,11/23/2014 06:58:21 PM,11/23/2014 07:14:33 PM,04/25/2016 01:13:50 PM,04/25/2016 01:13:50 PM,Fire,11/23/2014 10:04:04 PM,400 Block of RANDOLPH ST,San Francisco,94132,B09,33,8416,3,3,3,false,Alarm,1,INVESTIGATION,3,9,11,Oceanview/Merced/Ingleside,"(37.7143315576982, -122.4666471648)",143273114-AR1 -151892687,E11,15072244,Medical Incident,07/08/2015,07/08/2015,07/08/2015 04:30:51 PM,07/08/2015 04:31:56 PM,07/08/2015 04:32:10 PM,07/08/2015 04:33:07 PM,07/08/2015 04:35:41 PM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Code 2 Transport,07/08/2015 04:48:35 PM,28TH ST/DOLORES ST,San Francisco,94110,B06,11,5577,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7454357192251, -122.424538966505)",151892687-E11 -160952743,56,16037706,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:39:09 PM,04/04/2016 04:39:09 PM,04/04/2016 04:40:14 PM,04/04/2016 04:40:36 PM,04/04/2016 04:45:46 PM,04/04/2016 04:57:20 PM,04/04/2016 05:04:18 PM,Code 3 Transport,04/04/2016 05:57:26 PM,3900 Block of 23RD ST,San Francisco,94114,B06,11,5514,A,E,3,true,Potentially Life-Threatening,1,MEDIC,5,6,8,Noe Valley,"(37.7531464685627, -122.430920904363)",160952743-56 -150490816,77,15018877,Medical Incident,02/18/2015,02/18/2015,02/18/2015 08:23:09 AM,02/18/2015 08:26:23 AM,02/18/2015 08:27:30 AM,02/18/2015 08:27:43 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Code 2 Transport,02/18/2015 08:29:56 AM,2ND ST/BRYANT ST,San Francisco,94107,B03,8,2151,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7830778523618, -122.393618077491)",150490816-77 -153112644,53,15119640,Medical Incident,11/07/2015,11/07/2015,11/07/2015 05:19:53 PM,11/07/2015 05:19:53 PM,11/07/2015 05:20:30 PM,11/07/2015 05:20:36 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Cancelled,11/07/2015 05:26:54 PM,0 Block of BRADY ST,San Francisco,94103,B02,36,5115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7725484288115, -122.420084353921)",153112644-53 -160940728,62,16037172,Medical Incident,04/03/2016,04/02/2016,04/03/2016 06:32:44 AM,04/03/2016 06:33:52 AM,04/03/2016 06:34:09 AM,04/03/2016 06:34:22 AM,04/03/2016 06:44:52 AM,04/03/2016 07:06:47 AM,04/03/2016 07:11:57 AM,Code 2 Transport,04/03/2016 07:44:06 AM,3RD AV/GEARY BL,San Francisco,94118,B07,31,7116,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.78116026165, -122.461062828563)",160940728-62 -142310769,E07,14080153,Medical Incident,08/19/2014,08/19/2014,08/19/2014 08:21:57 AM,08/19/2014 08:22:39 AM,08/19/2014 08:22:49 AM,08/19/2014 08:24:20 AM,08/19/2014 08:26:41 AM,04/25/2016 01:15:35 PM,04/25/2016 01:15:35 PM,Code 2 Transport,08/19/2014 08:31:30 AM,20TH ST/LEXINGTON ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7585447222443, -122.420506832893)",142310769-E07 -150313986,E07,15012192,Other,01/31/2015,01/31/2015,01/31/2015 11:46:30 PM,01/31/2015 11:47:08 PM,01/31/2015 11:47:27 PM,01/31/2015 11:47:48 PM,01/31/2015 11:48:42 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 11:59:53 PM,2100 Block of FOLSOM ST,San Francisco,94110,B02,7,5424,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7628937069404, -122.415145830574)",150313986-E07 -151662175,57,15063526,Medical Incident,06/15/2015,06/15/2015,06/15/2015 03:08:34 PM,06/15/2015 03:09:31 PM,06/15/2015 03:09:43 PM,06/15/2015 03:09:55 PM,06/15/2015 03:15:55 PM,06/15/2015 03:33:00 PM,06/15/2015 04:03:29 PM,Code 2 Transport,06/15/2015 04:10:11 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",151662175-57 -152202202,RC2,15083857,Medical Incident,08/08/2015,08/08/2015,08/08/2015 03:23:23 PM,08/08/2015 03:24:26 PM,08/08/2015 03:28:52 PM,08/08/2015 03:30:49 PM,08/08/2015 03:34:51 PM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Code 2 Transport,08/08/2015 03:35:41 PM,700 Block of 5TH AVE,San Francisco,94118,B07,31,7122,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7745856548117, -122.462813355104)",152202202-RC2 -143243444,T10,14114876,Structure Fire,11/20/2014,11/20/2014,11/20/2014 09:52:55 PM,11/20/2014 09:53:27 PM,11/20/2014 09:53:57 PM,11/20/2014 09:55:04 PM,11/20/2014 10:01:00 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Fire,11/20/2014 10:03:47 PM,3400 Block of PIERCE ST,San Francisco,94123,B04,16,3662,3,3,3,false,Alarm,1,TRUCK,8,4,2,Marina,"(37.8021393814199, -122.439755551629)",143243444-T10 -160953591,52,16037786,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:31:59 PM,04/04/2016 08:31:59 PM,04/04/2016 08:33:04 PM,04/04/2016 08:33:53 PM,04/04/2016 08:34:33 PM,04/04/2016 08:49:23 PM,04/04/2016 08:53:17 PM,Code 2 Transport,04/04/2016 09:42:35 PM,1500 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",160953591-52 -150592881,KM04,15022640,Medical Incident,02/28/2015,02/28/2015,02/28/2015 06:32:52 PM,02/28/2015 06:32:52 PM,02/28/2015 06:33:32 PM,02/28/2015 06:35:56 PM,02/28/2015 06:38:23 PM,02/28/2015 07:08:15 PM,02/28/2015 07:18:36 PM,Code 2 Transport,02/28/2015 07:47:47 PM,11TH ST/MARKET ST,San Francisco,94103,B02,36,5117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",150592881-KM04 -152303277,E01,15087905,Medical Incident,08/18/2015,08/18/2015,08/18/2015 07:55:30 PM,08/18/2015 07:57:03 PM,08/18/2015 07:58:12 PM,08/18/2015 07:59:10 PM,08/18/2015 08:02:40 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Code 3 Transport,08/18/2015 08:16:58 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",152303277-E01 -142011129,E09,14069530,Medical Incident,07/20/2014,07/20/2014,07/20/2014 10:55:29 AM,07/20/2014 10:55:44 AM,07/20/2014 11:02:55 AM,07/20/2014 11:03:56 AM,07/20/2014 11:05:52 AM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Medical Examiner,07/20/2014 11:22:51 AM,1700 Block of 25TH ST,San Francisco,94107,B10,37,2614,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7523945846734, -122.396035863128)",142011129-E09 -160933229,AM16,16037019,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:54:53 PM,04/02/2016 07:58:08 PM,04/02/2016 07:58:29 PM,04/02/2016 07:59:02 PM,04/02/2016 08:05:35 PM,04/02/2016 08:13:41 PM,04/02/2016 08:28:49 PM,Code 2 Transport,04/02/2016 09:15:25 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160933229-AM16 -160970460,62,16038284,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:53:55 AM,04/06/2016 05:55:13 AM,04/06/2016 05:57:15 AM,04/06/2016 05:57:24 AM,04/06/2016 06:00:43 AM,04/06/2016 06:22:53 AM,04/06/2016 06:44:24 AM,Code 2 Transport,04/06/2016 07:16:26 AM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,2,3,3,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",160970460-62 -152623143,E41,15100312,Alarms,09/19/2015,09/19/2015,09/19/2015 06:24:26 PM,09/19/2015 06:26:21 PM,09/19/2015 06:26:30 PM,09/19/2015 06:27:20 PM,09/19/2015 06:31:20 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Fire,09/19/2015 06:44:19 PM,200 Block of GREEN ST,San Francisco,94111,B01,28,1226,3,3,3,false,Alarm,1,ENGINE,2,1,3,North Beach,"(37.8001897775591, -122.403986863773)",152623143-E41 -141220009,77,14041166,Medical Incident,05/02/2014,05/01/2014,05/02/2014 12:40:13 AM,05/02/2014 12:41:29 AM,05/02/2014 12:41:45 AM,05/02/2014 12:42:11 AM,05/02/2014 12:45:52 AM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Patient Declined Transport,05/02/2014 12:50:44 AM,500 Block of 5TH ST,SAN FRANCISCO,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",141220009-77 -160953984,60,16037816,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:30:51 PM,04/04/2016 10:30:51 PM,04/04/2016 10:31:00 PM,04/04/2016 10:31:19 PM,04/04/2016 10:42:56 PM,04/04/2016 10:54:51 PM,04/04/2016 11:06:32 PM,Code 2 Transport,04/04/2016 11:48:01 PM,BRANNAN ST/8TH ST,San Francisco,94103,B03,29,2325,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7712963527723, -122.405424735702)",160953984-60 -161010794,85,16040103,Medical Incident,04/10/2016,04/09/2016,04/10/2016 07:39:08 AM,04/10/2016 07:39:08 AM,04/10/2016 07:39:17 AM,04/10/2016 07:39:24 AM,04/10/2016 07:43:41 AM,04/10/2016 08:01:06 AM,04/10/2016 08:12:34 AM,Code 2 Transport,04/10/2016 08:43:34 AM,MCALLISTER ST/LARKIN ST,San Francisco,94102,B02,03,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",161010794-85 -160973502,AM08,16038596,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:13:52 PM,04/06/2016 06:15:32 PM,04/06/2016 06:24:20 PM,04/06/2016 06:25:15 PM,04/06/2016 06:31:15 PM,04/06/2016 06:46:58 PM,04/06/2016 06:55:03 PM,Code 2 Transport,04/06/2016 07:29:53 PM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",160973502-AM08 -150080296,D2,15002968,Structure Fire,01/08/2015,01/07/2015,01/08/2015 02:40:09 AM,01/08/2015 02:46:44 AM,01/08/2015 02:47:29 AM,01/08/2015 02:48:48 AM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Fire,01/08/2015 02:53:47 AM,300 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,3,3,3,false,Alarm,1,CHIEF,7,1,3,Chinatown,"(37.7983830790911, -122.407521730924)",150080296-D2 -160963577,70,16038162,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:56:02 PM,04/05/2016 07:56:28 PM,04/05/2016 07:57:01 PM,04/05/2016 07:57:08 PM,04/05/2016 08:00:16 PM,04/05/2016 08:11:45 PM,04/05/2016 08:36:05 PM,Code 2 Transport,04/05/2016 08:51:31 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160963577-70 -152423111,T05,15092431,Alarms,08/30/2015,08/30/2015,08/30/2015 06:58:22 PM,08/30/2015 06:59:48 PM,08/30/2015 07:00:19 PM,08/30/2015 07:01:42 PM,08/30/2015 07:03:00 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 07:10:32 PM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",152423111-T05 -150322251,E38,15012409,Vehicle Fire,02/01/2015,02/01/2015,02/01/2015 02:55:00 PM,02/01/2015 02:56:22 PM,02/01/2015 02:56:26 PM,02/01/2015 02:57:27 PM,02/01/2015 03:00:15 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Fire,02/01/2015 03:03:51 PM,SUTTER ST/STEINER ST,San Francisco,94115,B04,38,3542,3,3,3,false,Fire,1,ENGINE,1,4,5,Pacific Heights,"(37.785876207366, -122.434917663413)",150322251-E38 -141020301,E44,14034543,Medical Incident,04/12/2014,04/12/2014,04/12/2014 06:36:19 PM,04/12/2014 06:37:51 PM,04/12/2014 06:38:36 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Code 2 Transport,04/12/2014 06:40:08 PM,0 Block of DIANA ST,SAN FRANCISCO,94124,B10,42,6474,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7303371702583, -122.396357565836)",141020301-E44 -143030764,RC3,14107000,Medical Incident,10/30/2014,10/29/2014,10/30/2014 05:44:19 AM,10/30/2014 05:48:08 AM,10/30/2014 05:48:19 AM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Medical Examiner,10/30/2014 05:50:33 AM,2700 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,4,2,Pacific Heights,"(37.7882270245748, -122.439617640821)",143030764-RC3 -160974370,KM03,16038689,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:06:02 PM,04/06/2016 10:06:02 PM,04/06/2016 10:07:02 PM,04/06/2016 10:07:23 PM,04/06/2016 10:20:49 PM,04/06/2016 10:37:27 PM,04/06/2016 10:47:16 PM,Code 2 Transport,04/06/2016 11:32:38 PM,300 Block of HANOVER ST,San Francisco,94112,B09,33,6215,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.708901685713, -122.443726889731)",160974370-KM03 -161003020,53,16039923,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:28:51 PM,04/09/2016 08:28:51 PM,04/09/2016 08:29:15 PM,04/09/2016 08:29:29 PM,04/09/2016 08:47:14 PM,04/09/2016 09:06:50 PM,04/09/2016 09:34:01 PM,Code 2 Transport,04/09/2016 10:11:58 PM,264-A 19TH AV,San Francisco,94121,B07,31,7164,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7832264447382, -122.478440779828)",161003020-53 -142913033,B02,14102749,Alarms,10/18/2014,10/18/2014,10/18/2014 06:41:38 PM,10/18/2014 06:43:14 PM,10/18/2014 06:43:40 PM,10/18/2014 06:45:01 PM,10/18/2014 06:47:23 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Fire,10/18/2014 06:56:27 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,3,3,3,false,Alarm,1,CHIEF,2,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",142913033-B02 -143051890,KM02,14107928,Medical Incident,11/01/2014,11/01/2014,11/01/2014 11:48:09 AM,11/01/2014 11:48:55 AM,11/01/2014 11:49:20 AM,11/01/2014 11:50:00 AM,11/01/2014 11:56:33 AM,11/01/2014 12:09:47 PM,11/01/2014 12:32:04 PM,Code 2 Transport,11/01/2014 01:23:30 PM,100 Block of POWELL ST,San Francisco,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",143051890-KM02 -161011259,86,16040155,Medical Incident,04/10/2016,04/10/2016,04/10/2016 10:50:11 AM,04/10/2016 10:51:52 AM,04/10/2016 10:52:10 AM,04/10/2016 10:53:11 AM,04/10/2016 11:24:58 AM,04/10/2016 11:25:05 AM,04/10/2016 12:01:10 PM,Code 2 Transport,04/10/2016 12:35:54 PM,2100 Block of CLEMENT ST,San Francisco,94121,B07,14,7175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7820751633481, -122.482193568097)",161011259-86 -160933813,70,16037070,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:54:40 PM,04/02/2016 10:55:35 PM,04/02/2016 10:56:11 PM,04/02/2016 10:56:22 PM,04/02/2016 11:02:42 PM,04/02/2016 11:15:12 PM,04/02/2016 11:25:11 PM,Code 2 Transport,04/02/2016 11:59:02 PM,2000 Block of 16TH AVE,San Francisco,94116,B08,40,7374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.749722183236, -122.472868824443)",160933813-70 -152421228,E21,15092260,Alarms,08/30/2015,08/30/2015,08/30/2015 10:04:51 AM,08/30/2015 10:06:07 AM,08/30/2015 10:06:26 AM,08/30/2015 10:07:50 AM,08/30/2015 10:09:33 AM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Fire,08/30/2015 10:22:43 AM,1500 Block of FELL ST,San Francisco,94117,B05,21,4356,3,3,3,false,Alarm,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7733723701041, -122.443401573539)",152421228-E21 -153444039,E07,15132626,Medical Incident,12/10/2015,12/10/2015,12/10/2015 11:11:35 PM,12/10/2015 11:11:35 PM,12/10/2015 11:12:28 PM,12/10/2015 11:13:44 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Code 2 Transport,12/10/2015 11:16:24 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",153444039-E07 -160972512,AM10,16038472,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:47:51 PM,04/06/2016 02:48:55 PM,04/06/2016 02:49:59 PM,04/06/2016 02:50:32 PM,04/06/2016 02:54:46 PM,04/06/2016 03:24:24 PM,04/06/2016 03:45:01 PM,Code 2 Transport,04/06/2016 04:13:43 PM,900 Block of CORBETT AVE,San Francisco,94131,B06,24,5374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Twin Peaks,"(37.7511253671014, -122.443835939422)",160972512-AM10 -152073423,53,15079048,Medical Incident,07/26/2015,07/26/2015,07/26/2015 08:43:26 PM,07/26/2015 08:43:34 PM,07/26/2015 08:43:49 PM,07/26/2015 08:47:48 PM,07/26/2015 08:47:48 PM,04/25/2016 01:09:15 PM,04/25/2016 01:09:15 PM,Against Medical Advice,07/26/2015 09:44:31 PM,1500 Block of LARKIN ST,San Francisco,94109,B04,41,1634,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7921398324466, -122.419380098357)",152073423-53 -160960368,52,16037884,Medical Incident,04/05/2016,04/04/2016,04/05/2016 05:05:39 AM,04/05/2016 05:07:18 AM,04/05/2016 05:07:59 AM,04/05/2016 05:08:09 AM,04/05/2016 05:16:54 AM,04/05/2016 05:31:55 AM,04/05/2016 05:36:47 AM,Code 2 Transport,04/05/2016 05:55:11 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160960368-52 -160970250,79,16038266,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:46:08 AM,04/06/2016 02:47:47 AM,04/06/2016 02:47:57 AM,04/06/2016 02:48:05 AM,04/06/2016 03:02:42 AM,04/06/2016 03:02:47 AM,04/06/2016 03:13:20 AM,Code 2 Transport,04/06/2016 03:37:07 AM,100 Block of VAN NESS AVE,San Francisco,94102,B02,36,3166,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7768524577717, -122.419455012102)",160970250-79 -160971973,AM14,16038419,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:52:00 PM,04/06/2016 12:52:00 PM,04/06/2016 12:52:27 PM,04/06/2016 12:53:03 PM,04/06/2016 12:59:09 PM,04/06/2016 01:16:58 PM,04/06/2016 01:39:27 PM,Code 2 Transport,04/06/2016 02:10:02 PM,1100 Block of BATTERY ST,San Francisco,94111,B01,13,1153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8018540856955, -122.401636127625)",160971973-AM14 -152623143,B01,15100312,Alarms,09/19/2015,09/19/2015,09/19/2015 06:24:26 PM,09/19/2015 06:26:21 PM,09/19/2015 06:26:30 PM,09/19/2015 06:27:43 PM,09/19/2015 06:31:30 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Fire,09/19/2015 06:44:19 PM,200 Block of GREEN ST,San Francisco,94111,B01,28,1226,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8001897775591, -122.403986863773)",152623143-B01 -150431839,KM09,15016719,Medical Incident,02/12/2015,02/12/2015,02/12/2015 01:01:12 PM,02/12/2015 01:02:10 PM,02/12/2015 01:05:05 PM,02/12/2015 01:05:33 PM,02/12/2015 01:16:44 PM,02/12/2015 01:40:23 PM,02/12/2015 02:05:14 PM,Code 2 Transport,02/12/2015 02:38:28 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",150431839-KM09 -160950045,AM20,16037472,Medical Incident,04/04/2016,04/03/2016,04/04/2016 12:29:35 AM,04/04/2016 12:29:35 AM,04/04/2016 12:30:19 AM,04/04/2016 12:31:20 AM,04/04/2016 12:41:17 AM,04/04/2016 01:04:55 AM,04/04/2016 01:11:24 AM,Code 3 Transport,04/04/2016 02:05:34 AM,20TH AV/ULLOA ST,San Francisco,94116,B08,40,7434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7411382289161, -122.4766300481)",160950045-AM20 -161010783,55,16040101,Medical Incident,04/10/2016,04/09/2016,04/10/2016 07:26:38 AM,04/10/2016 07:26:38 AM,04/10/2016 07:27:11 AM,04/10/2016 07:27:21 AM,04/10/2016 07:33:34 AM,04/10/2016 07:45:18 AM,04/10/2016 08:12:41 AM,Code 2 Transport,04/10/2016 09:00:03 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,01,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",161010783-55 -151041440,E14,15039320,Medical Incident,04/14/2015,04/14/2015,04/14/2015 11:50:34 AM,04/14/2015 11:51:08 AM,04/14/2015 11:51:33 AM,04/14/2015 11:53:01 AM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Code 2 Transport,04/14/2015 11:56:20 AM,500 Block of 24TH AVE,San Francisco,94121,B07,14,7213,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7791817647436, -122.483524577803)",151041440-E14 -153400182,62,15130681,Medical Incident,12/06/2015,12/05/2015,12/06/2015 12:57:35 AM,12/06/2015 12:59:30 AM,12/06/2015 12:59:45 AM,12/06/2015 01:03:11 AM,12/06/2015 01:06:52 AM,12/06/2015 01:28:07 AM,12/06/2015 01:38:55 AM,Code 2 Transport,12/06/2015 02:33:30 AM,3RD ST/HARRISON ST,San Francisco,94107,B03,8,2175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7825535920508, -122.397385539895)",153400182-62 -150350617,E22,15013375,Medical Incident,02/04/2015,02/03/2015,02/04/2015 07:03:20 AM,02/04/2015 07:05:44 AM,02/04/2015 07:05:55 AM,02/04/2015 07:08:25 AM,02/04/2015 07:10:32 AM,04/25/2016 01:12:27 PM,04/25/2016 01:12:27 PM,Code 2 Transport,02/04/2015 07:23:22 AM,LINCOLN WY/10TH AV,San Francisco,94122,B08,22,7333,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,5,Golden Gate Park,"(37.7658772470031, -122.467515104486)",150350617-E22 -160932308,AM10,16036925,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:50:26 PM,04/02/2016 03:50:26 PM,04/02/2016 03:50:31 PM,04/02/2016 03:52:08 PM,04/02/2016 03:54:10 PM,04/02/2016 04:09:19 PM,04/02/2016 04:30:59 PM,Code 2 Transport,04/02/2016 05:29:14 PM,500 Block of JESSIE ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7810630578351, -122.409767402824)",160932308-AM10 -141020275,E33,14034520,Medical Incident,04/12/2014,04/12/2014,04/12/2014 05:08:02 PM,04/12/2014 05:08:37 PM,04/12/2014 05:09:02 PM,04/12/2014 05:10:51 PM,04/12/2014 05:12:58 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Code 2 Transport,04/12/2014 05:18:21 PM,0 Block of LOBOS ST,SAN FRANCISCO,94112,B09,33,8372,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7148604733878, -122.454263242717)",141020275-E33 -160990394,89,16039187,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:57:53 AM,04/08/2016 04:57:53 AM,04/08/2016 04:58:27 AM,04/08/2016 04:58:36 AM,04/08/2016 05:05:24 AM,04/08/2016 05:20:37 AM,04/08/2016 05:33:26 AM,Code 2 Transport,04/08/2016 05:52:47 AM,1500 Block of DIVISADERO ST,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7840751928704, -122.439752776223)",160990394-89 -151550256,E18,15058958,Medical Incident,06/04/2015,06/03/2015,06/04/2015 02:41:11 AM,06/04/2015 02:43:15 AM,06/04/2015 02:43:47 AM,06/04/2015 02:45:51 AM,06/04/2015 02:49:10 AM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,Code 2 Transport,06/04/2015 03:00:39 AM,1300 Block of 41ST AVE,San Francisco,94122,B08,23,7631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7615947612234, -122.500563667351)",151550256-E18 -152742555,E07,15104967,Structure Fire,10/01/2015,10/01/2015,10/01/2015 03:46:28 PM,10/01/2015 03:46:28 PM,10/01/2015 03:46:52 PM,10/01/2015 03:47:28 PM,10/01/2015 03:49:30 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Fire,10/01/2015 03:50:07 PM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",152742555-E07 -142493104,76,14086928,Medical Incident,09/06/2014,09/06/2014,09/06/2014 07:37:02 PM,09/06/2014 07:38:06 PM,09/06/2014 07:38:18 PM,09/06/2014 07:38:32 PM,09/06/2014 07:47:38 PM,09/06/2014 08:01:26 PM,09/06/2014 08:28:13 PM,Code 2 Transport,09/06/2014 08:52:56 PM,700 Block of SUTTER ST,San Francisco,94109,B01,3,1463,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7887571187597, -122.412724440796)",142493104-76 -152131913,T17,15081130,Structure Fire,08/01/2015,08/01/2015,08/01/2015 01:54:08 PM,08/01/2015 01:55:28 PM,08/01/2015 01:55:34 PM,08/01/2015 01:57:07 PM,08/01/2015 01:59:17 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Fire,08/01/2015 02:08:23 PM,1400 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7232705740351, -122.393808114504)",152131913-T17 -150652442,E03,15024894,Medical Incident,03/06/2015,03/06/2015,03/06/2015 02:48:22 PM,03/06/2015 02:48:22 PM,03/06/2015 02:49:18 PM,03/06/2015 02:50:58 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Code 2 Transport,03/06/2015 02:58:39 PM,700 Block of TAYLOR ST,San Francisco,94109,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7892649467456, -122.412049085376)",150652442-E03 -160983539,KM03,16039096,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:19:43 PM,04/07/2016 08:20:06 PM,04/07/2016 08:20:22 PM,04/07/2016 08:20:41 PM,04/07/2016 08:31:38 PM,04/07/2016 08:39:10 PM,04/07/2016 08:49:34 PM,Code 2 Transport,04/07/2016 09:18:38 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160983539-KM03 -152471481,76,15094178,Medical Incident,09/04/2015,09/04/2015,09/04/2015 11:08:25 AM,09/04/2015 11:09:34 AM,09/04/2015 11:09:49 AM,09/04/2015 11:09:55 AM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Other,09/04/2015 11:11:55 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",152471481-76 -150243130,E17,15009458,Medical Incident,01/24/2015,01/24/2015,01/24/2015 09:13:00 PM,01/24/2015 09:14:29 PM,01/24/2015 09:14:48 PM,01/24/2015 09:17:04 PM,01/24/2015 09:19:58 PM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Code 2 Transport,01/24/2015 09:30:17 PM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7352738344938, -122.391413470729)",150243130-E17 -143002147,T19,14105949,Other,10/27/2014,10/27/2014,10/27/2014 02:41:44 PM,10/27/2014 02:42:07 PM,10/27/2014 02:43:35 PM,10/27/2014 02:44:32 PM,10/27/2014 02:46:51 PM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Fire,10/27/2014 03:06:56 PM,1500 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8815,3,3,3,false,Alarm,1,TRUCK,1,8,7,Sunset/Parkside,"(37.7307930146473, -122.48752297277)",143002147-T19 -141050217,RC1,14035443,Medical Incident,04/15/2014,04/15/2014,04/15/2014 02:22:57 PM,04/15/2014 02:24:35 PM,04/15/2014 02:29:12 PM,04/15/2014 02:29:12 PM,04/15/2014 02:32:09 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Code 2 Transport,04/15/2014 03:05:06 PM,700 Block of CLAY ST,SAN FRANCISCO,94108,B01,13,1313,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,1,3,Chinatown,"(37.794250188811, -122.405973153434)",141050217-RC1 -151600205,E06,15060996,Medical Incident,06/09/2015,06/08/2015,06/09/2015 02:29:57 AM,06/09/2015 02:30:27 AM,06/09/2015 02:30:52 AM,06/09/2015 02:31:29 AM,06/09/2015 02:37:51 AM,06/09/2015 02:39:42 AM,04/25/2016 01:10:06 PM,Code 3 Transport,06/09/2015 02:55:35 AM,VALENCIA ST/15TH ST,San Francisco,94103,B02,6,5226,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7665395771344, -122.422043813368)",151600205-E06 -150950894,60,15036024,Medical Incident,04/05/2015,04/05/2015,04/05/2015 09:19:45 AM,04/05/2015 09:22:13 AM,04/05/2015 09:22:27 AM,04/05/2015 09:22:44 AM,04/05/2015 09:38:16 AM,04/05/2015 09:53:47 AM,04/05/2015 10:18:28 AM,Code 2 Transport,04/05/2015 10:56:47 AM,100 Block of KISKA RD,San Francisco,94124,B10,17,6625,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7301576924252, -122.375989158092)",150950894-60 -143433746,75,14122107,Medical Incident,12/09/2014,12/09/2014,12/09/2014 08:16:18 PM,12/09/2014 08:17:51 PM,12/09/2014 08:18:11 PM,12/09/2014 08:18:30 PM,12/09/2014 08:29:39 PM,12/09/2014 08:59:53 PM,12/09/2014 09:17:54 PM,Code 2 Transport,12/09/2014 09:45:06 PM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",143433746-75 -160931656,62,16036846,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:39:45 PM,04/02/2016 12:40:20 PM,04/02/2016 12:41:29 PM,04/02/2016 12:41:36 PM,04/02/2016 12:47:19 PM,04/02/2016 01:07:20 PM,04/02/2016 01:32:45 PM,Code 2 Transport,04/02/2016 02:08:07 PM,400 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160931656-62 -160973990,KM03,16038646,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 08:07:26 PM,04/06/2016 08:09:08 PM,04/06/2016 08:09:29 PM,04/06/2016 08:10:13 PM,04/06/2016 08:17:18 PM,04/06/2016 08:39:07 PM,04/06/2016 08:59:07 PM,Code 2 Transport,04/06/2016 09:28:51 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160973990-KM03 -160982380,52,16038975,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:58:34 PM,04/07/2016 03:00:07 PM,04/07/2016 03:00:21 PM,04/07/2016 03:00:59 PM,04/07/2016 03:06:32 PM,04/07/2016 03:18:20 PM,04/07/2016 03:33:32 PM,Code 2 Transport,04/07/2016 03:36:23 PM,1300 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",160982380-52 -142071101,54,14071634,Medical Incident,07/26/2014,07/26/2014,07/26/2014 09:53:05 AM,07/26/2014 09:56:02 AM,07/26/2014 09:56:18 AM,07/26/2014 09:56:27 AM,07/26/2014 10:07:35 AM,07/26/2014 10:21:49 AM,07/26/2014 10:29:11 AM,Code 2 Transport,07/26/2014 10:42:00 AM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",142071101-54 -142711802,E03,14095039,Structure Fire,09/28/2014,09/28/2014,09/28/2014 01:46:33 PM,09/28/2014 01:46:33 PM,09/28/2014 01:46:42 PM,09/28/2014 01:47:31 PM,09/28/2014 01:49:15 PM,04/25/2016 01:14:51 PM,04/25/2016 01:14:51 PM,Fire,09/28/2014 01:49:50 PM,VAN NESS AV/GOLDEN GATE AV,San Francisco,94102,B02,36,3164,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",142711802-E03 -141452973,T01,14049927,Citizen Assist / Service Call,05/25/2014,05/25/2014,05/25/2014 08:34:44 PM,05/25/2014 08:37:34 PM,05/25/2014 08:37:47 PM,05/25/2014 08:40:05 PM,05/25/2014 08:42:08 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Fire,05/25/2014 09:02:49 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141452973-T01 -141763164,E36,14060876,Medical Incident,06/25/2014,06/25/2014,06/25/2014 07:38:07 PM,06/25/2014 07:38:58 PM,06/25/2014 07:39:48 PM,06/25/2014 07:40:59 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Code 2 Transport,06/25/2014 07:44:30 PM,500 Block of GROVE ST,San Francisco,94102,B02,36,3315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7774408255184, -122.425619373234)",141763164-E36 -151880161,58,15071661,Medical Incident,07/07/2015,07/06/2015,07/07/2015 01:23:47 AM,07/07/2015 01:24:19 AM,07/07/2015 01:25:15 AM,07/07/2015 01:25:21 AM,07/07/2015 01:32:31 AM,07/07/2015 01:51:18 AM,07/07/2015 02:03:01 AM,Code 2 Transport,07/07/2015 02:24:31 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",151880161-58 -152463557,E03,15093980,Medical Incident,09/03/2015,09/03/2015,09/03/2015 07:59:34 PM,09/03/2015 07:59:34 PM,09/03/2015 08:00:25 PM,09/03/2015 08:02:39 PM,09/03/2015 08:03:09 PM,04/25/2016 01:08:33 PM,04/25/2016 01:08:33 PM,Code 2 Transport,09/03/2015 08:06:22 PM,EDDY ST/CYRIL MAGNIN ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",152463557-E03 -141522283,E31,14052284,Medical Incident,06/01/2014,06/01/2014,06/01/2014 05:37:01 PM,06/01/2014 05:39:31 PM,06/01/2014 05:41:13 PM,06/01/2014 05:42:25 PM,06/01/2014 05:44:34 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Code 2 Transport,06/01/2014 06:37:44 PM,400 Block of 10TH AVE,San Francisco,94118,B07,31,7135,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7798628073822, -122.468425980116)",141522283-E31 -152661600,B10,15101831,Alarms,09/23/2015,09/23/2015,09/23/2015 11:41:57 AM,09/23/2015 11:43:11 AM,09/23/2015 11:43:25 AM,09/23/2015 11:43:42 AM,09/23/2015 11:46:52 AM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,No Merit,09/23/2015 11:56:01 AM,100 Block of NAPOLEON ST,San Francisco,94124,B10,9,6422,3,3,3,false,Alarm,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7469874361298, -122.399147231229)",152661600-B10 -141280636,E01,14043398,Medical Incident,05/08/2014,05/07/2014,05/08/2014 07:43:52 AM,05/08/2014 07:46:16 AM,05/08/2014 07:48:01 AM,05/08/2014 07:50:03 AM,05/08/2014 08:01:15 AM,04/25/2016 01:17:27 PM,04/25/2016 01:17:27 PM,Code 2 Transport,05/08/2014 08:14:28 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",141280636-E01 -161002401,AM12,16039852,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:13:52 PM,04/09/2016 05:15:12 PM,04/09/2016 05:15:35 PM,04/09/2016 05:16:25 PM,04/09/2016 05:20:51 PM,04/09/2016 05:29:21 PM,04/09/2016 05:51:43 PM,Code 2 Transport,04/09/2016 06:18:16 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",161002401-AM12 -152771077,E12,15106148,Medical Incident,10/04/2015,10/04/2015,10/04/2015 09:29:38 AM,10/04/2015 09:29:49 AM,10/04/2015 09:31:18 AM,10/04/2015 09:31:38 AM,10/04/2015 09:32:41 AM,04/25/2016 01:07:58 PM,04/25/2016 01:07:58 PM,Code 2 Transport,10/04/2015 09:42:36 AM,HAIGHT ST/COLE ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",152771077-E12 -160953087,76,16037739,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:04:57 PM,04/04/2016 06:05:19 PM,04/04/2016 06:05:45 PM,04/04/2016 06:05:53 PM,04/04/2016 06:13:14 PM,04/04/2016 06:31:54 PM,04/04/2016 06:54:39 PM,Code 2 Transport,04/04/2016 08:01:36 PM,1400 Block of HAMPSHIRE ST,San Francisco,94110,B06,9,5616,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7493153346241, -122.406755512994)",160953087-76 -141692006,KM04,14058379,Medical Incident,06/18/2014,06/18/2014,06/18/2014 02:50:08 PM,06/18/2014 02:53:07 PM,06/18/2014 02:53:24 PM,06/18/2014 02:54:14 PM,06/18/2014 02:59:02 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,No Merit,06/18/2014 03:07:31 PM,400 Block of LINDEN ST,San Francisco,94102,B02,36,3314,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7761535059822, -122.425377177116)",141692006-KM04 -150452124,E05,15017541,Medical Incident,02/14/2015,02/14/2015,02/14/2015 03:08:34 PM,02/14/2015 03:08:34 PM,02/14/2015 03:08:34 PM,02/14/2015 03:08:34 PM,02/14/2015 03:08:34 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Code 2 Transport,02/14/2015 03:29:54 PM,1400 Block of FILLMORE ST,San Francisco,94115,B04,5,3536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",150452124-E05 -160961546,61,16037986,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:50:16 AM,04/05/2016 11:52:17 AM,04/05/2016 11:52:45 AM,04/05/2016 11:52:53 AM,04/05/2016 11:57:27 AM,04/05/2016 12:08:15 PM,04/05/2016 12:18:21 PM,Code 2 Transport,04/05/2016 12:54:53 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",160961546-61 -142070672,E36,14071602,Structure Fire,07/26/2014,07/25/2014,07/26/2014 05:40:29 AM,07/26/2014 05:42:43 AM,07/26/2014 05:42:58 AM,07/26/2014 05:46:09 AM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,Fire,07/26/2014 07:35:22 AM,1400 Block of MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,false,Alarm,1,ENGINE,10,2,6,South of Market,"(37.7759986613945, -122.418004260708)",142070672-E36 -150300626,AM24,15011467,Medical Incident,01/30/2015,01/29/2015,01/30/2015 07:05:32 AM,01/30/2015 07:05:32 AM,01/30/2015 07:06:04 AM,01/30/2015 07:07:33 AM,01/30/2015 07:12:08 AM,01/30/2015 07:26:04 AM,01/30/2015 07:52:09 AM,Code 2 Transport,01/30/2015 08:26:31 AM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",150300626-AM24 -151942158,E10,15074051,Alarms,07/13/2015,07/13/2015,07/13/2015 02:40:33 PM,07/13/2015 02:41:12 PM,07/13/2015 02:41:24 PM,07/13/2015 02:43:23 PM,07/13/2015 02:44:53 PM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,Fire,07/13/2015 02:52:45 PM,3400 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4422,3,3,3,true,Alarm,1,ENGINE,2,4,2,Presidio Heights,"(37.7878174923685, -122.449468699027)",151942158-E10 -151933763,E31,15073834,Medical Incident,07/12/2015,07/12/2015,07/12/2015 11:01:16 PM,07/12/2015 11:02:37 PM,07/12/2015 11:02:55 PM,07/12/2015 11:04:02 PM,07/12/2015 11:06:06 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/12/2015 11:17:23 PM,400 Block of 14TH AVE,San Francisco,94118,B07,31,7146,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7796642527316, -122.472845331016)",151933763-E31 -152713528,T12,15103948,Structure Fire,09/28/2015,09/28/2015,09/28/2015 09:17:06 PM,09/28/2015 09:17:06 PM,09/28/2015 09:17:23 PM,09/28/2015 09:18:54 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Fire,09/28/2015 09:19:43 PM,STANYAN ST/FREDERICK ST,San Francisco,94117,B05,12,4551,3,3,3,false,Alarm,1,TRUCK,2,5,5,Haight Ashbury,"(37.766374073924, -122.452947033535)",152713528-T12 -160983093,KM05,16039054,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:09:46 PM,04/07/2016 06:11:21 PM,04/07/2016 06:11:54 PM,04/07/2016 06:12:35 PM,04/07/2016 06:23:15 PM,04/07/2016 06:39:11 PM,04/07/2016 07:21:06 PM,Code 2 Transport,04/07/2016 07:36:08 PM,100 Block of KING ST,San Francisco,94107,B03,8,2154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",160983093-KM05 -151003958,57,15038065,Medical Incident,04/10/2015,04/10/2015,04/10/2015 11:50:49 PM,04/10/2015 11:50:49 PM,04/10/2015 11:51:39 PM,04/10/2015 11:52:04 PM,04/10/2015 11:56:44 PM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,Patient Declined Transport,04/11/2015 12:29:37 AM,4800 Block of GEARY BLVD,San Francisco,94118,B07,31,7146,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7808276804129, -122.471256466777)",151003958-57 -160993799,78,16039503,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:07:51 PM,04/08/2016 10:07:51 PM,04/08/2016 10:16:04 PM,04/08/2016 10:16:14 PM,04/08/2016 10:29:36 PM,04/08/2016 10:47:01 PM,04/08/2016 10:56:53 PM,Code 2 Transport,04/08/2016 11:44:07 PM,0 Block of DORMAN AV,San Francisco,94124,B10,9,6426,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7397311188141, -122.402879180629)",160993799-78 -152482992,79,15094782,Medical Incident,09/05/2015,09/05/2015,09/05/2015 05:47:36 PM,09/05/2015 05:47:36 PM,09/05/2015 05:48:04 PM,09/05/2015 05:48:13 PM,09/05/2015 06:01:32 PM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Patient Declined Transport,09/05/2015 06:07:47 PM,1400 Block of HAMPSHIRE ST,San Francisco,94110,B10,9,2624,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Mission,"(37.749358536947, -122.406628311526)",152482992-79 -160931220,54,16036799,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:35:40 AM,04/02/2016 10:35:40 AM,04/02/2016 10:55:55 AM,04/02/2016 10:55:55 AM,04/02/2016 10:59:48 AM,04/02/2016 10:59:51 AM,04/02/2016 11:14:41 AM,Code 2 Transport,04/02/2016 11:33:47 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160931220-54 -142632528,87,14092081,Structure Fire,09/20/2014,09/20/2014,09/20/2014 05:09:59 PM,09/20/2014 05:10:36 PM,09/20/2014 05:10:47 PM,09/20/2014 05:10:56 PM,09/20/2014 05:15:21 PM,04/25/2016 01:15:00 PM,04/25/2016 01:15:00 PM,Fire,09/20/2014 05:20:02 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,3,3,3,true,Alarm,1,MEDIC,6,5,8,Castro/Upper Market,"(37.7623242063084, -122.43565391414)",142632528-87 -160950923,AM08,16037558,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:16:15 AM,04/04/2016 09:18:25 AM,04/04/2016 09:18:42 AM,04/04/2016 09:20:02 AM,04/04/2016 09:23:35 AM,04/04/2016 09:49:52 AM,04/04/2016 10:01:10 AM,Code 3 Transport,04/04/2016 10:33:34 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",160950923-AM08 -152271327,KM02,15086497,Medical Incident,08/15/2015,08/15/2015,08/15/2015 10:16:07 AM,08/15/2015 10:17:27 AM,08/15/2015 10:18:10 AM,08/15/2015 10:19:01 AM,08/15/2015 10:27:24 AM,08/15/2015 10:32:43 AM,08/15/2015 10:37:20 AM,Code 2 Transport,08/15/2015 10:51:53 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",152271327-KM02 -151792237,T18,15068279,Alarms,06/28/2015,06/28/2015,06/28/2015 02:57:24 PM,06/28/2015 02:58:40 PM,06/28/2015 02:58:46 PM,06/28/2015 03:00:55 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,Fire,06/28/2015 03:14:57 PM,1300 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,3,3,3,false,Alarm,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7427831125622, -122.480509766994)",151792237-T18 -160980606,AM02,16038791,Medical Incident,04/07/2016,04/06/2016,04/07/2016 06:43:46 AM,04/07/2016 06:45:55 AM,04/07/2016 06:46:59 AM,04/07/2016 06:47:10 AM,04/07/2016 06:55:18 AM,04/07/2016 07:00:03 AM,04/07/2016 07:17:25 AM,Code 2 Transport,04/07/2016 07:46:48 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160980606-AM02 -152703668,65,15103635,Medical Incident,09/27/2015,09/27/2015,09/27/2015 11:20:05 PM,09/27/2015 11:20:05 PM,09/27/2015 11:20:05 PM,09/27/2015 11:20:05 PM,09/27/2015 11:20:05 PM,09/27/2015 11:20:21 PM,09/27/2015 11:20:32 PM,Code 2 Transport,09/27/2015 11:50:11 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B99,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",152703668-65 -143581145,T03,14128084,Alarms,12/24/2014,12/24/2014,12/24/2014 10:44:24 AM,12/24/2014 10:46:04 AM,12/24/2014 10:46:11 AM,12/24/2014 10:46:48 AM,12/24/2014 10:49:11 AM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/24/2014 11:00:27 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",143581145-T03 -141691348,KM14,14058314,Medical Incident,06/18/2014,06/18/2014,06/18/2014 11:45:48 AM,06/18/2014 11:46:53 AM,06/18/2014 11:48:04 AM,06/18/2014 11:48:45 AM,06/18/2014 12:01:46 PM,04/25/2016 01:16:42 PM,04/25/2016 01:16:42 PM,Patient Declined Transport,06/18/2014 12:32:34 PM,100 Block of JULES AVE,San Francisco,94112,B09,15,8463,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209248245928, -122.461168962553)",141691348-KM14 -150092278,56,15003626,Medical Incident,01/09/2015,01/09/2015,01/09/2015 03:54:25 PM,01/09/2015 03:55:05 PM,01/09/2015 03:55:39 PM,01/09/2015 03:55:56 PM,01/09/2015 04:03:34 PM,01/09/2015 04:13:56 PM,01/09/2015 04:26:08 PM,Code 2 Transport,01/09/2015 05:11:12 PM,1500 Block of STOCKTON ST,San Francisco,94133,B01,28,1334,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.799975359605, -122.40903359976)",150092278-56 -160921595,85,16036432,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:35:08 PM,04/01/2016 12:36:29 PM,04/01/2016 12:37:04 PM,04/01/2016 12:37:14 PM,04/01/2016 12:43:26 PM,04/01/2016 12:54:48 PM,04/01/2016 01:26:47 PM,Code 2 Transport,04/01/2016 03:02:53 PM,0 Block of FREMONT ST,San Francisco,94105,B03,35,2126,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7911273215916, -122.397428020134)",160921595-85 -150123263,E05,15004897,Medical Incident,01/12/2015,01/12/2015,01/12/2015 08:01:28 PM,01/12/2015 08:02:39 PM,01/12/2015 08:03:03 PM,01/12/2015 08:03:51 PM,01/12/2015 08:05:49 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Code 2 Transport,01/12/2015 08:12:50 PM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",150123263-E05 -143460895,RS1,14123244,Medical Incident,12/12/2014,12/12/2014,12/12/2014 09:04:35 AM,12/12/2014 09:05:44 AM,12/12/2014 09:06:39 AM,12/12/2014 09:08:03 AM,12/12/2014 09:11:34 AM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Code 2 Transport,12/12/2014 09:21:44 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7786852295711, -122.405938165868)",143460895-RS1 -150061399,KM07,15002249,Medical Incident,01/06/2015,01/06/2015,01/06/2015 11:36:36 AM,01/06/2015 11:36:36 AM,01/06/2015 11:36:50 AM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Cancelled,01/06/2015 11:42:36 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",150061399-KM07 -143001173,E05,14105866,Alarms,10/27/2014,10/27/2014,10/27/2014 10:34:58 AM,10/27/2014 10:35:15 AM,10/27/2014 10:35:49 AM,10/27/2014 10:37:32 AM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,04/25/2016 01:14:20 PM,Fire,10/27/2014 10:39:43 AM,1500 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,4134,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",143001173-E05 -141160186,93,14039161,Medical Incident,04/26/2014,04/26/2014,04/26/2014 12:33:48 PM,04/26/2014 12:36:16 PM,04/26/2014 12:36:41 PM,04/26/2014 12:37:29 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Other,04/26/2014 12:40:06 PM,200 Block of VALENCIA ST,SAN FRANCISCO,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7690117510129, -122.422352223863)",141160186-93 -141941251,E38,14067259,Traffic Collision,07/13/2014,07/13/2014,07/13/2014 11:30:34 AM,07/13/2014 11:30:34 AM,07/13/2014 11:30:34 AM,07/13/2014 11:30:34 AM,07/13/2014 11:30:34 AM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Code 2 Transport,07/13/2014 11:46:13 AM,MARINA BL/LAGUNA ST,San Francisco,94123,B04,16,3452,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8051995453814, -122.432090718256)",141941251-E38 -152472558,83,15094297,Medical Incident,09/04/2015,09/04/2015,09/04/2015 03:18:38 PM,09/04/2015 03:20:21 PM,09/04/2015 03:20:58 PM,09/04/2015 03:21:06 PM,09/04/2015 03:25:17 PM,09/04/2015 03:38:29 PM,09/04/2015 03:52:52 PM,Code 2 Transport,09/04/2015 04:11:53 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.781960649289, -122.402224095303)",152472558-83 -141560325,84,14053543,Medical Incident,06/05/2014,06/04/2014,06/05/2014 04:28:46 AM,06/05/2014 04:28:46 AM,06/05/2014 04:30:16 AM,06/05/2014 04:30:29 AM,06/05/2014 04:45:33 AM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Patient Declined Transport,06/05/2014 05:18:48 AM,600 Block of STOCKTON ST,San Francisco,94108,B01,2,1325,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",141560325-84 -150133494,E17,15005322,Medical Incident,01/13/2015,01/13/2015,01/13/2015 08:30:35 PM,01/13/2015 08:32:01 PM,01/13/2015 08:32:58 PM,01/13/2015 08:34:31 PM,01/13/2015 08:36:46 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Code 2 Transport,01/13/2015 08:50:56 PM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7331435009212, -122.380990356551)",150133494-E17 -153302668,E03,15127173,Alarms,11/26/2015,11/26/2015,11/26/2015 09:33:55 PM,11/26/2015 09:35:49 PM,11/26/2015 09:36:15 PM,11/26/2015 09:37:13 PM,11/26/2015 09:39:27 PM,04/25/2016 01:06:58 PM,04/25/2016 01:06:58 PM,Fire,11/26/2015 09:44:37 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",153302668-E03 -153433147,T08,15132132,Alarms,12/09/2015,12/09/2015,12/09/2015 06:03:31 PM,12/09/2015 06:04:52 PM,12/09/2015 06:05:10 PM,12/09/2015 06:06:44 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/09/2015 06:10:58 PM,400 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7858304242786, -122.392540509238)",153433147-T08 -142550225,E19,14088884,Structure Fire,09/12/2014,09/11/2014,09/12/2014 01:55:38 AM,09/12/2014 01:56:56 AM,09/12/2014 01:57:15 AM,09/12/2014 01:58:36 AM,09/12/2014 02:02:22 AM,04/25/2016 01:15:09 PM,04/25/2016 01:15:09 PM,Fire,09/12/2014 02:14:20 AM,200 Block of LAKESHORE DR,San Francisco,94132,B08,19,8832,3,3,3,true,Alarm,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7305733491665, -122.497476010183)",142550225-E19 -160971055,89,16038343,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:27:16 AM,04/06/2016 09:28:57 AM,04/06/2016 09:30:50 AM,04/06/2016 09:37:06 AM,04/06/2016 09:59:13 AM,04/06/2016 09:59:14 AM,04/06/2016 10:29:03 AM,Code 2 Transport,04/06/2016 11:26:48 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160971055-89 -152740322,E32,15104752,Medical Incident,10/01/2015,09/30/2015,10/01/2015 02:48:34 AM,10/01/2015 02:49:17 AM,10/01/2015 02:49:54 AM,10/01/2015 02:51:44 AM,10/01/2015 02:52:35 AM,10/01/2015 03:24:14 AM,10/01/2015 03:24:14 AM,Code 3 Transport,10/01/2015 03:51:01 AM,0 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.737355217845, -122.424854520466)",152740322-E32 -161000222,78,16039582,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:24:48 AM,04/09/2016 01:28:10 AM,04/09/2016 01:29:07 AM,04/09/2016 01:29:14 AM,04/09/2016 01:39:07 AM,04/09/2016 01:54:22 AM,04/09/2016 02:12:27 AM,Code 2 Transport,04/09/2016 02:53:32 AM,JULIA ST/MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.778045328738, -122.41241334498)",161000222-78 -141170009,E09,14039356,Alarms,04/27/2014,04/26/2014,04/27/2014 12:35:08 AM,04/27/2014 12:36:40 AM,04/27/2014 12:36:46 AM,04/27/2014 12:38:13 AM,04/27/2014 12:40:31 AM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/27/2014 12:47:53 AM,500 Block of BARNEVELD AVE,SAN FRANCISCO,94124,B10,9,6427,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.74044593571, -122.404296869791)",141170009-E09 -152282949,AP,15087106,Other,08/16/2015,08/16/2015,08/16/2015 06:23:12 PM,08/16/2015 06:23:12 PM,08/16/2015 06:23:12 PM,08/16/2015 06:23:12 PM,08/16/2015 06:23:12 PM,04/25/2016 01:08:53 PM,04/25/2016 01:08:53 PM,Fire,08/16/2015 06:23:12 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B99,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",152282949-AP -142600338,T01,14090723,Structure Fire,09/17/2014,09/16/2014,09/17/2014 04:19:24 AM,09/17/2014 04:19:24 AM,09/17/2014 04:19:30 AM,09/17/2014 04:21:50 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 04:22:37 AM,6TH ST/HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",142600338-T01 -142982541,82,14105254,Medical Incident,10/25/2014,10/25/2014,10/25/2014 04:40:37 PM,10/25/2014 04:41:48 PM,10/25/2014 05:11:55 PM,10/25/2014 05:11:55 PM,10/25/2014 05:22:40 PM,10/25/2014 05:26:08 PM,10/25/2014 05:48:11 PM,Code 2 Transport,10/25/2014 06:28:28 PM,700 Block of INNES AVE,San Francisco,94124,B10,25,6663,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7304497726907, -122.372908002511)",142982541-82 -142641442,E18,14092341,Medical Incident,09/21/2014,09/21/2014,09/21/2014 11:51:02 AM,09/21/2014 11:53:54 AM,09/21/2014 11:54:24 AM,09/21/2014 11:56:18 AM,09/21/2014 12:02:40 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Code 2 Transport,09/21/2014 12:02:52 PM,GREAT HY/NORIEGA ST,San Francisco,94122,B08,23,7725,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7528302279051, -122.508432394418)",142641442-E18 -160923437,76,16036605,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:53:17 PM,04/01/2016 08:55:22 PM,04/01/2016 08:55:37 PM,04/01/2016 08:55:45 PM,04/01/2016 09:00:07 PM,04/01/2016 09:13:21 PM,04/01/2016 09:25:47 PM,Code 2 Transport,04/01/2016 09:52:24 PM,400 Block of ILLINOIS ST,San Francisco,94158,B03,4,2374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.7656728119264, -122.387971481588)",160923437-76 -143070191,77,14108469,Medical Incident,11/03/2014,11/02/2014,11/03/2014 01:52:16 AM,11/03/2014 01:55:26 AM,11/03/2014 01:55:55 AM,11/03/2014 01:56:10 AM,11/03/2014 01:59:02 AM,11/03/2014 02:10:18 AM,11/03/2014 02:21:18 AM,Code 2 Transport,11/03/2014 02:58:47 AM,HYDE ST/TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",143070191-77 -160971478,KM04,16038374,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:00:41 AM,04/06/2016 11:02:13 AM,04/06/2016 11:03:58 AM,04/06/2016 11:04:32 AM,04/06/2016 11:25:17 AM,04/06/2016 11:39:06 AM,04/06/2016 12:11:40 PM,Code 2 Transport,04/06/2016 12:46:01 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160971478-KM04 -153232657,E42,15124345,Medical Incident,11/19/2015,11/19/2015,11/19/2015 04:17:22 PM,11/19/2015 04:17:22 PM,11/19/2015 04:18:11 PM,11/19/2015 04:19:43 PM,11/19/2015 04:20:25 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Code 2 Transport,11/19/2015 04:32:26 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",153232657-E42 -141920243,E21,14066410,Alarms,07/11/2014,07/10/2014,07/11/2014 01:41:15 AM,07/11/2014 01:42:43 AM,07/11/2014 01:42:47 AM,07/11/2014 01:43:50 AM,07/11/2014 01:45:19 AM,04/25/2016 01:16:17 PM,04/25/2016 01:16:17 PM,Fire,07/11/2014 01:49:27 AM,1300 Block of FELL ST,San Francisco,94117,B05,21,4252,3,3,3,false,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7736869919131, -122.440088215983)",141920243-E21 -143021509,E01,14106598,Medical Incident,10/29/2014,10/29/2014,10/29/2014 12:10:30 PM,10/29/2014 12:10:38 PM,10/29/2014 12:10:44 PM,10/29/2014 12:10:57 PM,10/29/2014 12:13:48 PM,04/25/2016 01:14:18 PM,04/25/2016 01:14:18 PM,Code 2 Transport,10/29/2014 12:35:10 PM,MARKET ST/STOCKTON ST,San Francisco,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",143021509-E01 -150660393,E13,15025105,Medical Incident,03/07/2015,03/06/2015,03/07/2015 02:44:08 AM,03/07/2015 02:45:55 AM,03/07/2015 02:46:08 AM,03/07/2015 02:48:59 AM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Code 2 Transport,03/07/2015 02:52:45 AM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",150660393-E13 -160941990,KM02,16037275,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 01:53:22 PM,04/03/2016 01:53:22 PM,04/03/2016 01:53:39 PM,04/03/2016 01:54:31 PM,04/03/2016 01:57:36 PM,04/03/2016 02:26:14 PM,04/03/2016 02:34:27 PM,Code 3 Transport,04/03/2016 03:18:35 PM,5100 Block of MISSION ST,San Francisco,94112,B09,43,6176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7156913862181, -122.441681969143)",160941990-KM02 -161001570,KM08,16039756,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:46:51 PM,04/09/2016 12:48:18 PM,04/09/2016 12:48:36 PM,04/09/2016 12:49:06 PM,04/09/2016 01:18:55 PM,04/09/2016 01:47:31 PM,04/09/2016 01:59:14 PM,Code 2 Transport,04/09/2016 02:24:13 PM,200 Block of ANDERSON ST,San Francisco,94110,B06,32,5731,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7396333437351, -122.415157999099)",161001570-KM08 -150900247,E05,15034161,Medical Incident,03/31/2015,03/30/2015,03/31/2015 02:42:27 AM,03/31/2015 02:43:55 AM,03/31/2015 02:44:29 AM,03/31/2015 02:46:33 AM,03/31/2015 02:47:49 AM,03/31/2015 03:09:22 AM,03/31/2015 03:09:45 AM,Code 3 Transport,03/31/2015 03:13:54 AM,1300 Block of EDDY ST,San Francisco,94115,B05,5,3515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7818007316796, -122.429835978464)",150900247-E05 -150393213,E38,15015330,Medical Incident,02/08/2015,02/08/2015,02/08/2015 07:59:06 PM,02/08/2015 08:02:06 PM,02/08/2015 08:02:27 PM,02/08/2015 08:03:11 PM,02/08/2015 08:04:26 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Patient Declined Transport,02/08/2015 08:10:29 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",150393213-E38 -152532543,E02,15096776,Citizen Assist / Service Call,09/10/2015,09/10/2015,09/10/2015 03:53:39 PM,09/10/2015 03:53:39 PM,09/10/2015 03:55:12 PM,09/10/2015 03:56:12 PM,09/10/2015 04:00:08 PM,04/25/2016 01:08:25 PM,04/25/2016 01:08:25 PM,Fire,09/10/2015 04:00:16 PM,900 Block of UNION ST,San Francisco,94133,B01,28,1513,3,3,3,true,Alarm,1,ENGINE,2,1,3,Russian Hill,"(37.7997017701213, -122.414650950077)",152532543-E02 -160921452,79,16036416,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:52:44 AM,04/01/2016 11:54:01 AM,04/01/2016 11:54:28 AM,04/01/2016 11:54:39 AM,04/01/2016 11:59:23 AM,04/01/2016 12:21:37 PM,04/01/2016 12:32:02 PM,Code 2 Transport,04/01/2016 01:15:31 PM,HARRISON ST/16TH ST,San Francisco,94110,B02,29,5217,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7654476102712, -122.413105244954)",160921452-79 -160993130,76,16039428,Citizen Assist / Service Call,04/08/2016,04/08/2016,04/08/2016 06:47:56 PM,04/08/2016 06:50:13 PM,04/08/2016 06:51:35 PM,04/08/2016 06:51:41 PM,04/08/2016 06:59:52 PM,04/08/2016 07:23:46 PM,04/08/2016 07:23:58 PM,Code 2 Transport,04/08/2016 07:36:12 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,true,Alarm,1,MEDIC,2,2,6,Tenderloin,"(37.7844637837491, -122.417824560275)",160993130-76 -160932840,76,16036981,Medical Incident,04/02/2016,04/02/2016,04/02/2016 06:09:50 PM,04/02/2016 06:11:06 PM,04/02/2016 06:12:09 PM,04/02/2016 06:12:16 PM,04/02/2016 06:18:58 PM,04/02/2016 06:38:38 PM,04/02/2016 06:44:31 PM,Code 2 Transport,04/02/2016 07:08:34 PM,TAYLOR ST/TURK ST,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",160932840-76 -152851125,65,15109355,Medical Incident,10/12/2015,10/12/2015,10/12/2015 09:52:08 AM,10/12/2015 09:55:44 AM,10/12/2015 09:56:02 AM,10/12/2015 09:56:09 AM,10/12/2015 10:30:10 AM,10/12/2015 10:40:24 AM,10/12/2015 11:04:43 AM,Code 2 Transport,10/12/2015 11:32:48 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",152851125-65 -142340136,66,14081178,Medical Incident,08/22/2014,08/21/2014,08/22/2014 12:57:43 AM,08/22/2014 01:00:07 AM,08/22/2014 01:00:22 AM,08/22/2014 01:01:07 AM,08/22/2014 01:08:12 AM,08/22/2014 01:22:46 AM,08/22/2014 01:47:08 AM,Code 2 Transport,08/22/2014 02:25:09 AM,OFARRELL ST/CYRIL MAGNIN ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",142340136-66 -142303128,85,14080019,Medical Incident,08/18/2014,08/18/2014,08/18/2014 07:05:20 PM,08/18/2014 07:07:34 PM,08/18/2014 07:08:07 PM,08/18/2014 07:08:26 PM,08/18/2014 07:13:07 PM,08/18/2014 07:32:42 PM,08/18/2014 07:53:16 PM,Code 2 Transport,08/18/2014 08:25:20 PM,100 Block of ONONDAGA AVE,San Francisco,94112,B09,15,8277,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7225996028106, -122.440955205931)",142303128-85 -160943506,KM07,16037438,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:55:36 PM,04/03/2016 09:57:12 PM,04/03/2016 09:57:26 PM,04/03/2016 09:58:16 PM,04/03/2016 10:03:01 PM,04/03/2016 10:18:38 PM,04/03/2016 10:52:49 PM,Code 2 Transport,04/03/2016 11:11:07 PM,200 Block of MADISON ST,San Francisco,94134,B09,43,6153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7259789357251, -122.422657178254)",160943506-KM07 -152861605,AM04,15109826,Medical Incident,10/13/2015,10/13/2015,10/13/2015 11:38:46 AM,10/13/2015 11:40:44 AM,10/13/2015 11:41:41 AM,10/13/2015 11:46:58 AM,10/13/2015 11:46:58 AM,10/13/2015 12:20:40 PM,10/13/2015 12:45:52 PM,Code 2 Transport,10/13/2015 01:25:09 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",152861605-AM04 -160974536,81,16038706,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:50:49 PM,04/06/2016 10:52:55 PM,04/06/2016 10:53:07 PM,04/06/2016 10:53:16 PM,04/06/2016 11:24:39 PM,04/06/2016 11:26:41 PM,04/07/2016 12:12:18 AM,Code 2 Transport,04/07/2016 12:26:19 AM,100 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7727916205308, -122.424624269709)",160974536-81 -142662212,E29,14093144,Medical Incident,09/23/2014,09/23/2014,09/23/2014 03:04:16 PM,09/23/2014 03:06:04 PM,09/23/2014 03:06:25 PM,09/23/2014 03:07:09 PM,09/23/2014 03:13:02 PM,04/25/2016 01:14:57 PM,04/25/2016 01:14:57 PM,Code 2 Transport,09/23/2014 03:40:06 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",142662212-E29 -153441354,E09,15132382,Traffic Collision,12/10/2015,12/10/2015,12/10/2015 10:43:15 AM,12/10/2015 10:44:44 AM,12/10/2015 10:45:45 AM,12/10/2015 10:46:51 AM,12/10/2015 10:56:59 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Patient Declined Transport,12/10/2015 11:22:33 AM,100 Block of 9TH ST,San Francisco,94103,B10,9,6375,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7760543061938, -122.414393004759)",153441354-E09 -150773755,58,15029685,Medical Incident,03/18/2015,03/18/2015,03/18/2015 09:13:07 PM,03/18/2015 09:14:09 PM,03/18/2015 09:15:32 PM,03/18/2015 09:15:59 PM,03/18/2015 09:19:08 PM,03/18/2015 09:36:06 PM,03/18/2015 09:58:41 PM,Code 2 Transport,03/18/2015 10:09:50 PM,1200 Block of 15TH AVE,San Francisco,94122,B08,22,7366,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7646998273343, -122.472787133735)",150773755-58 -152432233,74,15092738,Medical Incident,08/31/2015,08/31/2015,08/31/2015 02:43:26 PM,08/31/2015 02:45:33 PM,08/31/2015 02:45:49 PM,08/31/2015 02:45:59 PM,08/31/2015 02:52:06 PM,08/31/2015 03:16:05 PM,08/31/2015 03:23:52 PM,Code 2 Transport,08/31/2015 03:39:50 PM,900 Block of HAIGHT ST,San Francisco,94117,B05,21,4246,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7712162010371, -122.437888283036)",152432233-74 -160974642,88,16038718,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:30:24 PM,04/06/2016 11:31:22 PM,04/06/2016 11:31:44 PM,04/06/2016 11:33:35 PM,04/06/2016 11:36:52 PM,04/06/2016 11:50:28 PM,04/07/2016 12:06:25 AM,Code 2 Transport,04/07/2016 12:38:04 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160974642-88 -151712530,77,15065428,Medical Incident,06/20/2015,06/20/2015,06/20/2015 05:33:01 PM,06/20/2015 05:35:50 PM,06/20/2015 05:36:06 PM,06/20/2015 05:36:26 PM,06/20/2015 05:43:55 PM,06/20/2015 05:49:33 PM,06/20/2015 06:11:34 PM,Code 2 Transport,06/20/2015 06:24:22 PM,1000 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",151712530-77 -143391054,E32,14120291,Medical Incident,12/05/2014,12/05/2014,12/05/2014 09:18:13 AM,12/05/2014 09:18:39 AM,12/05/2014 09:19:04 AM,12/05/2014 09:20:50 AM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,04/25/2016 01:13:38 PM,Code 2 Transport,12/05/2014 09:22:36 AM,0 Block of 30TH ST,San Francisco,94110,B06,32,5575,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7422802041277, -122.42262182889)",143391054-E32 -160930340,56,16036702,Medical Incident,04/02/2016,04/01/2016,04/02/2016 02:21:00 AM,04/02/2016 02:22:22 AM,04/02/2016 02:25:19 AM,04/02/2016 02:25:25 AM,04/02/2016 02:33:52 AM,04/02/2016 02:52:33 AM,04/02/2016 02:58:52 AM,Code 2 Transport,04/02/2016 03:28:25 AM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",160930340-56 -143240220,RC1,14114580,Medical Incident,11/20/2014,11/19/2014,11/20/2014 02:03:37 AM,11/20/2014 02:06:06 AM,11/20/2014 02:07:11 AM,11/20/2014 02:12:56 AM,11/20/2014 02:18:12 AM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Medical Examiner,11/20/2014 02:37:29 AM,TABER PL/JACK LONDON AL,San Francisco,94107,B03,8,2152,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Financial District/South Beach,"(37.7819421101543, -122.394407042244)",143240220-RC1 -150732446,52,15027998,Medical Incident,03/14/2015,03/14/2015,03/14/2015 03:33:09 PM,03/14/2015 03:33:09 PM,03/14/2015 03:35:04 PM,03/14/2015 03:35:14 PM,03/14/2015 03:56:52 PM,04/25/2016 01:11:44 PM,04/25/2016 01:11:44 PM,Patient Declined Transport,03/14/2015 04:17:13 PM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7796886144323, -122.408201798882)",150732446-52 -150822640,65,15031452,Medical Incident,03/23/2015,03/23/2015,03/23/2015 05:11:46 PM,03/23/2015 05:11:46 PM,03/23/2015 05:12:56 PM,03/23/2015 05:13:06 PM,03/23/2015 05:13:06 PM,04/25/2016 01:11:34 PM,04/25/2016 01:11:34 PM,Against Medical Advice,03/23/2015 06:27:47 PM,4TH ST/HARRISON ST,San Francisco,94107,B03,8,2216,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807914830651, -122.399616233554)",150822640-65 -142950406,66,14103917,Medical Incident,10/22/2014,10/21/2014,10/22/2014 05:07:48 AM,10/22/2014 05:10:24 AM,10/22/2014 05:10:50 AM,10/22/2014 05:11:27 AM,10/22/2014 05:18:33 AM,10/22/2014 05:53:31 AM,10/22/2014 06:13:23 AM,Code 2 Transport,10/22/2014 06:45:44 AM,3700 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7627665130308, -122.429612363376)",142950406-66 -160972232,61,16038448,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:50:46 PM,04/06/2016 01:51:48 PM,04/06/2016 01:52:25 PM,04/06/2016 01:52:34 PM,04/06/2016 01:56:27 PM,04/06/2016 02:12:42 PM,04/06/2016 02:39:32 PM,Code 2 Transport,04/06/2016 03:18:53 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7742496611166, -122.414204535023)",160972232-61 -151601139,76,15061087,Medical Incident,06/09/2015,06/09/2015,06/09/2015 10:34:01 AM,06/09/2015 10:35:05 AM,06/09/2015 10:35:25 AM,06/09/2015 10:35:35 AM,06/09/2015 10:41:04 AM,06/09/2015 10:59:42 AM,06/09/2015 11:14:47 AM,Code 2 Transport,06/09/2015 11:47:46 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",151601139-76 -160961430,81,16037975,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:22:57 AM,04/05/2016 11:25:52 AM,04/05/2016 11:26:14 AM,04/05/2016 11:28:40 AM,04/05/2016 11:41:18 AM,04/05/2016 11:45:27 AM,04/05/2016 12:08:30 PM,Code 2 Transport,04/05/2016 12:43:16 PM,2800 Block of CALIFORNIA ST,San Francisco,94115,B04,10,4233,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.78801561135, -122.441285735387)",160961430-81 -152400853,E39,15091341,Citizen Assist / Service Call,08/28/2015,08/28/2015,08/28/2015 08:06:34 AM,08/28/2015 08:07:40 AM,08/28/2015 08:08:50 AM,08/28/2015 08:09:45 AM,08/28/2015 08:15:50 AM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/28/2015 08:46:46 AM,0 Block of ROSEWOOD DR,San Francisco,94127,B09,39,8541,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7339375362462, -122.46018903916)",152400853-E39 -143452202,KM10,14122908,Medical Incident,12/11/2014,12/11/2014,12/11/2014 02:14:17 PM,12/11/2014 02:15:21 PM,12/11/2014 02:15:59 PM,12/11/2014 02:16:46 PM,12/11/2014 02:23:59 PM,12/11/2014 02:46:14 PM,12/11/2014 03:06:57 PM,Code 2 Transport,12/11/2014 03:41:16 PM,1000 Block of GOLDEN GATE AVE,San Francisco,94115,B02,5,3411,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",143452202-KM10 -151943807,78,15074217,Medical Incident,07/13/2015,07/13/2015,07/13/2015 09:57:30 PM,07/13/2015 09:59:28 PM,07/13/2015 10:00:50 PM,07/13/2015 10:01:35 PM,07/13/2015 10:12:07 PM,07/13/2015 10:30:22 PM,07/13/2015 10:49:12 PM,Code 2 Transport,07/13/2015 11:18:28 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",151943807-78 -153212170,56,15123476,Medical Incident,11/17/2015,11/17/2015,11/17/2015 02:13:16 PM,11/17/2015 02:15:19 PM,11/17/2015 02:17:38 PM,11/17/2015 02:17:38 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 02:24:42 PM,MISSION ST/GRACE ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,6,South of Market,"(37.7756072560706, -122.415484750494)",153212170-56 -151522225,KM02,15057923,Medical Incident,06/01/2015,06/01/2015,06/01/2015 03:32:09 PM,06/01/2015 03:32:09 PM,06/01/2015 03:34:43 PM,06/01/2015 03:35:16 PM,06/01/2015 03:37:37 PM,04/25/2016 01:10:16 PM,04/25/2016 01:10:16 PM,No Merit,06/01/2015 03:38:49 PM,1600 Block of PAGE ST,San Francisco,94117,B05,21,4513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7707784947492, -122.447934641901)",151522225-KM02 -152971207,55,15114002,Medical Incident,10/24/2015,10/24/2015,10/24/2015 10:10:45 AM,10/24/2015 10:13:09 AM,10/24/2015 10:14:17 AM,10/24/2015 10:15:29 AM,10/24/2015 10:27:05 AM,10/24/2015 10:49:10 AM,10/24/2015 11:02:55 AM,Code 2 Transport,10/24/2015 11:50:14 AM,200 Block of LOWELL ST,San Francisco,94112,B09,33,6215,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7089435673907, -122.444958461881)",152971207-55 -151462343,65,15055607,Medical Incident,05/26/2015,05/26/2015,05/26/2015 03:39:35 PM,05/26/2015 03:40:33 PM,05/26/2015 03:41:06 PM,05/26/2015 03:41:19 PM,05/26/2015 03:44:22 PM,05/26/2015 04:17:17 PM,05/26/2015 04:37:30 PM,Code 2 Transport,05/26/2015 05:12:27 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7769455318934, -122.416807079177)",151462343-65 -153212717,E12,15123529,Medical Incident,11/17/2015,11/17/2015,11/17/2015 04:31:45 PM,11/17/2015 04:34:17 PM,11/17/2015 04:35:19 PM,11/17/2015 04:36:11 PM,11/17/2015 04:39:43 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Medical Examiner,11/17/2015 05:14:38 PM,700 Block of 4TH AVE,San Francisco,94118,B07,31,7121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7746781793453, -122.461745676123)",153212717-E12 -142853212,KM11,14100571,Medical Incident,10/12/2014,10/12/2014,10/12/2014 07:07:10 PM,10/12/2014 07:09:30 PM,10/12/2014 07:10:23 PM,10/12/2014 07:12:48 PM,10/12/2014 07:32:20 PM,10/12/2014 07:32:22 PM,10/12/2014 07:48:17 PM,Code 2 Transport,10/12/2014 08:29:11 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",142853212-KM11 -160943138,62,16037395,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:39:30 PM,04/03/2016 07:40:57 PM,04/03/2016 07:41:34 PM,04/03/2016 07:44:54 PM,04/03/2016 07:57:24 PM,04/03/2016 08:16:51 PM,04/03/2016 08:39:39 PM,Code 2 Transport,04/03/2016 09:04:01 PM,0 Block of BEAUMONT AVE,San Francisco,94118,B07,10,4453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7807425792871, -122.455063675296)",160943138-62 -143403136,E28,14120888,Medical Incident,12/06/2014,12/06/2014,12/06/2014 07:25:39 PM,12/06/2014 07:26:02 PM,12/06/2014 07:26:39 PM,12/06/2014 07:27:51 PM,12/06/2014 07:29:04 PM,04/25/2016 01:13:36 PM,04/25/2016 01:13:36 PM,Code 2 Transport,12/06/2014 07:42:45 PM,600 Block of UNION ST,San Francisco,94133,B01,28,1334,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8003260482415, -122.40968720575)",143403136-E28 -152822833,B01,15108344,Alarms,10/09/2015,10/09/2015,10/09/2015 05:24:42 PM,10/09/2015 05:25:47 PM,10/09/2015 05:26:26 PM,10/09/2015 05:28:05 PM,10/09/2015 05:30:38 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Fire,10/09/2015 05:40:35 PM,0 Block of WAVERLY PL,San Francisco,94108,B01,2,1326,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7937477470757, -122.406800604626)",152822833-B01 -150391432,B07,15015162,Alarms,02/08/2015,02/08/2015,02/08/2015 11:07:38 AM,02/08/2015 11:08:52 AM,02/08/2015 11:09:01 AM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,04/25/2016 01:12:22 PM,Fire,02/08/2015 11:10:20 AM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,false,Alarm,1,CHIEF,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",150391432-B07 -160930950,75,16036770,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:13:48 AM,04/02/2016 09:13:48 AM,04/02/2016 09:14:21 AM,04/02/2016 09:14:34 AM,04/02/2016 09:23:11 AM,04/02/2016 09:36:41 AM,04/02/2016 09:49:28 AM,Code 2 Transport,04/02/2016 10:24:23 AM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160930950-75 -141712413,E11,14059108,Traffic Collision,06/20/2014,06/20/2014,06/20/2014 04:14:02 PM,06/20/2014 04:16:04 PM,06/20/2014 04:16:16 PM,06/20/2014 04:17:18 PM,06/20/2014 04:18:51 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Code 3 Transport,06/20/2014 04:34:08 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",141712413-E11 -152090930,E07,15079539,Medical Incident,07/28/2015,07/28/2015,07/28/2015 08:45:43 AM,07/28/2015 08:46:37 AM,07/28/2015 08:48:49 AM,07/28/2015 08:50:58 AM,07/28/2015 08:54:17 AM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/28/2015 09:04:04 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",152090930-E07 -151121888,AM02,15042322,Medical Incident,04/22/2015,04/22/2015,04/22/2015 01:03:31 PM,04/22/2015 01:05:08 PM,04/22/2015 01:07:18 PM,04/22/2015 01:08:28 PM,04/22/2015 01:12:58 PM,04/22/2015 01:38:19 PM,04/22/2015 02:10:24 PM,Code 2 Transport,04/22/2015 02:45:49 PM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",151121888-AM02 -150070680,89,15002582,Medical Incident,01/07/2015,01/06/2015,01/07/2015 07:56:21 AM,01/07/2015 07:56:57 AM,01/07/2015 07:57:15 AM,01/07/2015 07:57:55 AM,01/07/2015 08:02:34 AM,01/07/2015 08:11:08 AM,01/07/2015 08:38:17 AM,Code 2 Transport,01/07/2015 08:56:56 AM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7792067028319, -122.402159463556)",150070680-89 -143193346,E31,14113120,Gas Leak (Natural and LP Gases),11/15/2014,11/15/2014,11/15/2014 08:15:13 PM,11/15/2014 08:16:52 PM,11/15/2014 08:17:06 PM,11/15/2014 08:18:40 PM,11/15/2014 08:19:53 PM,04/25/2016 01:13:59 PM,04/25/2016 01:13:59 PM,Fire,11/15/2014 08:35:51 PM,400 Block of FUNSTON AVE,San Francisco,94118,B07,31,7146,3,3,3,false,Alarm,1,ENGINE,2,7,1,Inner Richmond,"(37.7797197447141, -122.47163791656)",143193346-E31 -151860199,T19,15070856,Alarms,07/05/2015,07/04/2015,07/05/2015 12:38:14 AM,07/05/2015 12:39:17 AM,07/05/2015 12:39:25 AM,07/05/2015 12:41:37 AM,07/05/2015 12:46:47 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 12:51:45 AM,100 Block of CAMBON DR,San Francisco,94132,B08,19,8428,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",151860199-T19 -150951029,E08,15036042,Medical Incident,04/05/2015,04/05/2015,04/05/2015 10:13:53 AM,04/05/2015 10:17:20 AM,04/05/2015 10:17:55 AM,04/05/2015 10:18:16 AM,04/05/2015 10:26:46 AM,04/25/2016 01:11:20 PM,04/25/2016 01:11:20 PM,Code 2 Transport,04/05/2015 11:03:04 AM,0 Block of BAYSIDE VILLAGE PL,San Francisco,94107,B03,8,2134,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.784851966461, -122.389795266719)",150951029-E08 -150981792,B01,15037082,Structure Fire,04/08/2015,04/08/2015,04/08/2015 01:14:20 PM,04/08/2015 01:15:07 PM,04/08/2015 01:16:00 PM,04/08/2015 01:17:22 PM,04/08/2015 01:20:59 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Fire,04/08/2015 02:11:30 PM,1200 Block of GREENWICH ST,San Francisco,94109,B01,41,1612,3,3,3,false,Alarm,1,CHIEF,4,1,2,Russian Hill,"(37.8009065560237, -122.420238670227)",150981792-B01 -142821404,E38,14099237,Medical Incident,10/09/2014,10/09/2014,10/09/2014 11:43:55 AM,10/09/2014 11:44:24 AM,10/09/2014 11:45:58 AM,10/09/2014 11:46:53 AM,10/09/2014 11:48:32 AM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,Against Medical Advice,10/09/2014 12:02:20 PM,1700 Block of CALIFORNIA ST,San Francisco,94109,B04,38,3155,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7903193034194, -122.4231629068)",142821404-E38 -152300640,54,15087667,Medical Incident,08/18/2015,08/17/2015,08/18/2015 07:56:20 AM,08/18/2015 07:56:20 AM,08/18/2015 07:57:36 AM,08/18/2015 08:00:48 AM,08/18/2015 08:17:12 AM,08/18/2015 08:25:36 AM,08/18/2015 08:25:36 AM,Code 2 Transport,08/18/2015 09:02:04 AM,PIERCE ST/HAIGHT ST,San Francisco,94117,B05,6,3635,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7716882728802, -122.433734773899)",152300640-54 -152872503,63,15110318,Medical Incident,10/14/2015,10/14/2015,10/14/2015 02:53:06 PM,10/14/2015 02:53:06 PM,10/14/2015 02:54:17 PM,10/14/2015 02:54:17 PM,10/14/2015 02:54:24 PM,10/14/2015 03:14:57 PM,10/14/2015 03:23:23 PM,Code 2 Transport,10/14/2015 03:56:51 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",152872503-63 -161002302,KM12,16039841,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:47:02 PM,04/09/2016 04:47:14 PM,04/09/2016 04:48:30 PM,04/09/2016 04:49:16 PM,04/09/2016 04:58:49 PM,04/09/2016 05:11:34 PM,04/09/2016 05:16:06 PM,Code 2 Transport,04/09/2016 05:48:19 PM,CEDAR ST/LARKIN ST,San Francisco,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7865659835783, -122.418178854944)",161002302-KM12 -160950492,53,16037524,Medical Incident,04/04/2016,04/03/2016,04/04/2016 06:48:38 AM,04/04/2016 06:50:04 AM,04/04/2016 06:50:21 AM,04/04/2016 06:50:28 AM,04/04/2016 06:54:24 AM,04/04/2016 07:17:02 AM,04/04/2016 07:38:18 AM,Code 2 Transport,04/04/2016 08:16:28 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160950492-53 -160990369,60,16039185,Medical Incident,04/08/2016,04/07/2016,04/08/2016 04:32:13 AM,04/08/2016 04:34:03 AM,04/08/2016 04:34:21 AM,04/08/2016 04:34:28 AM,04/08/2016 04:45:14 AM,04/08/2016 05:09:29 AM,04/08/2016 05:13:51 AM,Code 2 Transport,04/08/2016 05:59:29 AM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",160990369-60 -160963992,64,16038203,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:17:21 PM,04/05/2016 10:18:14 PM,04/05/2016 10:18:52 PM,04/05/2016 10:21:01 PM,04/05/2016 10:23:59 PM,04/05/2016 10:47:19 PM,04/05/2016 11:02:48 PM,Code 2 Transport,04/06/2016 12:12:56 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160963992-64 -142782940,RWC1,14097890,Water Rescue,10/05/2014,10/05/2014,10/05/2014 06:02:50 PM,10/05/2014 06:04:17 PM,10/05/2014 06:11:49 PM,10/05/2014 06:11:49 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Fire,10/05/2014 06:54:56 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,SUPPORT,13,7,2,Presidio,"(37.8066581989584, -122.47471662098)",142782940-RWC1 -142222214,E08,14077102,Medical Incident,08/10/2014,08/10/2014,08/10/2014 04:11:07 PM,08/10/2014 04:12:54 PM,08/10/2014 04:13:51 PM,08/10/2014 04:15:11 PM,08/10/2014 04:16:56 PM,04/25/2016 01:15:44 PM,04/25/2016 01:15:44 PM,Code 2 Transport,08/10/2014 04:23:01 PM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",142222214-E08 -151510667,74,15057378,Medical Incident,05/31/2015,05/30/2015,05/31/2015 06:34:10 AM,05/31/2015 06:37:27 AM,05/31/2015 06:39:13 AM,05/31/2015 06:39:13 AM,05/31/2015 06:45:42 AM,05/31/2015 07:07:01 AM,05/31/2015 07:31:27 AM,Code 2 Transport,05/31/2015 08:06:54 AM,200 Block of FARALLONES ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7139875097179, -122.460811423157)",151510667-74 -152934064,RS2,15112769,Structure Fire,10/20/2015,10/20/2015,10/20/2015 10:58:08 PM,10/20/2015 11:00:39 PM,10/20/2015 11:00:55 PM,10/20/2015 11:02:43 PM,10/20/2015 11:04:07 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Fire,10/20/2015 11:05:23 PM,500 Block of GUERRERO ST,San Francisco,94110,B02,7,5422,3,3,3,false,Alarm,1,RESCUE SQUAD,3,2,8,Mission,"(37.7623740658777, -122.4237632921)",152934064-RS2 -141850674,E05,14063935,Medical Incident,07/04/2014,07/04/2014,07/04/2014 08:03:29 AM,07/04/2014 08:04:40 AM,07/04/2014 08:04:58 AM,07/04/2014 08:05:47 AM,07/04/2014 08:08:09 AM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/04/2014 08:23:52 AM,2000 Block of SUTTER ST,San Francisco,94115,B04,38,3542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Japantown,"(37.7859265850289, -122.434083678259)",141850674-E05 -153430464,E03,15131877,Medical Incident,12/09/2015,12/08/2015,12/09/2015 06:10:55 AM,12/09/2015 06:13:29 AM,12/09/2015 06:14:09 AM,12/09/2015 06:16:07 AM,12/09/2015 06:18:54 AM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 06:45:13 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Japantown,"(37.7860447238816, -122.426514096484)",153430464-E03 -160922655,68,16036532,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:09:07 PM,04/01/2016 05:11:14 PM,04/01/2016 05:11:25 PM,04/01/2016 05:11:34 PM,04/01/2016 05:20:59 PM,04/01/2016 05:51:46 PM,04/01/2016 06:18:57 PM,Code 2 Transport,04/01/2016 06:53:24 PM,700 Block of LAKEVIEW AVE,San Francisco,94112,B09,33,8462,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7182804925223, -122.461738906058)",160922655-68 -150311288,56,15011929,Medical Incident,01/31/2015,01/31/2015,01/31/2015 10:58:43 AM,01/31/2015 11:00:06 AM,01/31/2015 11:07:34 AM,01/31/2015 11:07:41 AM,01/31/2015 11:29:51 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 2 Transport,01/31/2015 12:11:31 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",150311288-56 -152162100,KM06,15082282,Medical Incident,08/04/2015,08/04/2015,08/04/2015 02:56:24 PM,08/04/2015 02:56:39 PM,08/04/2015 02:56:56 PM,08/04/2015 02:58:47 PM,08/04/2015 03:03:49 PM,08/04/2015 03:40:29 PM,08/04/2015 03:40:39 PM,Code 2 Transport,08/04/2015 04:08:33 PM,7100 Block of GEARY BLVD,San Francisco,94121,B07,34,7255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7796854448315, -122.49598717999)",152162100-KM06 -151330803,B04,15050356,Structure Fire,05/13/2015,05/13/2015,05/13/2015 08:17:36 AM,05/13/2015 08:18:10 AM,05/13/2015 08:18:45 AM,05/13/2015 08:20:09 AM,05/13/2015 08:23:00 AM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Fire,05/13/2015 08:28:50 AM,1400 Block of HYDE ST,San Francisco,94109,B01,41,1564,3,3,3,false,Alarm,1,CHIEF,4,1,3,Russian Hill,"(37.7941341731235, -122.417955659155)",151330803-B04 -141691475,KM01,14058326,Medical Incident,06/18/2014,06/18/2014,06/18/2014 12:20:41 PM,06/18/2014 12:22:36 PM,06/18/2014 12:23:03 PM,06/18/2014 12:27:34 PM,06/18/2014 12:52:36 PM,06/18/2014 12:52:43 PM,06/18/2014 01:20:59 PM,Code 2 Transport,06/18/2014 01:43:08 PM,900 Block of JACKSON ST,San Francisco,94133,B01,2,1354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7955961513636, -122.41050106502)",141691475-KM01 -160952848,AM10,16037715,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:03:05 PM,04/04/2016 05:03:05 PM,04/04/2016 05:05:38 PM,04/04/2016 05:12:59 PM,04/04/2016 05:13:01 PM,04/04/2016 05:43:43 PM,04/04/2016 06:09:08 PM,Code 2 Transport,04/04/2016 06:32:54 PM,3900 Block of 23RD ST,San Francisco,94114,B06,11,5514,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7531464685627, -122.430920904363)",160952848-AM10 -161002337,62,16039844,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:59:29 PM,04/09/2016 05:00:10 PM,04/09/2016 05:00:34 PM,04/09/2016 05:00:44 PM,04/09/2016 05:04:53 PM,04/09/2016 05:15:50 PM,04/09/2016 05:28:59 PM,Code 2 Transport,04/09/2016 06:00:16 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",161002337-62 -152643339,E32,15101213,Medical Incident,09/21/2015,09/21/2015,09/21/2015 06:07:08 PM,09/21/2015 06:07:17 PM,09/21/2015 06:07:31 PM,09/21/2015 06:08:13 PM,09/21/2015 06:11:46 PM,04/25/2016 01:08:12 PM,04/25/2016 01:08:12 PM,Against Medical Advice,09/21/2015 06:21:29 PM,1300 Block of ALEMANY BLVD,San Francisco,94112,B09,32,8263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7294726964986, -122.433599162117)",152643339-E32 -143483752,E25,14124423,Medical Incident,12/14/2014,12/14/2014,12/14/2014 11:35:44 PM,12/14/2014 11:35:44 PM,12/14/2014 11:35:57 PM,12/14/2014 11:37:34 PM,12/14/2014 11:41:36 PM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,Code 2 Transport,12/14/2014 11:53:17 PM,INNES AV/DONAHUE ST,San Francisco,94124,B10,47,6721,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7288061449325, -122.370145383783)",143483752-E25 -151064081,57,15040275,Medical Incident,04/16/2015,04/16/2015,04/16/2015 10:58:08 PM,04/16/2015 10:59:25 PM,04/16/2015 11:00:07 PM,04/16/2015 11:00:16 PM,04/16/2015 11:03:32 PM,04/16/2015 11:15:35 PM,04/16/2015 11:21:07 PM,Code 2 Transport,04/17/2015 12:02:50 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",151064081-57 -152310911,84,15088039,Medical Incident,08/19/2015,08/19/2015,08/19/2015 09:01:29 AM,08/19/2015 09:02:22 AM,08/19/2015 09:02:59 AM,08/19/2015 09:03:35 AM,08/19/2015 09:08:16 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Patient Declined Transport,08/19/2015 09:12:38 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",152310911-84 -160954067,72,16037824,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:58:59 PM,04/04/2016 11:01:00 PM,04/04/2016 11:01:53 PM,04/04/2016 11:02:04 PM,04/04/2016 11:05:44 PM,04/05/2016 12:07:02 AM,04/05/2016 12:07:07 AM,Code 2 Transport,04/05/2016 12:38:30 AM,1300 Block of 37TH AVE,San Francisco,94122,B08,23,7571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7617778269302, -122.496418264934)",160954067-72 -150970751,B10,15036677,Structure Fire,04/07/2015,04/07/2015,04/07/2015 08:21:16 AM,04/07/2015 08:22:24 AM,04/07/2015 08:23:04 AM,04/07/2015 08:24:16 AM,04/07/2015 08:28:41 AM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Fire,04/07/2015 08:29:52 AM,600 Block of 27TH ST,San Francisco,94131,B06,26,5554,3,3,3,false,Alarm,1,CHIEF,5,6,8,Noe Valley,"(37.7463542503622, -122.435399737394)",150970751-B10 -143471265,RB1,14123736,Water Rescue,12/13/2014,12/13/2014,12/13/2014 10:16:46 AM,12/13/2014 10:17:22 AM,12/13/2014 10:24:34 AM,12/13/2014 10:26:55 AM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Fire,12/13/2014 10:37:59 AM,GREAT HY/QUINTARA ST,San Francisco,94116,B08,23,7726,3,3,3,false,Fire,1,SUPPORT,14,8,4,Sunset/Parkside,"(37.7472485360166, -122.507694893853)",143471265-RB1 -160952349,KM05,16037669,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:02:58 PM,04/04/2016 03:03:35 PM,04/04/2016 03:04:19 PM,04/04/2016 03:05:09 PM,04/04/2016 03:08:58 PM,04/04/2016 03:33:33 PM,04/04/2016 04:06:40 PM,Code 2 Transport,04/04/2016 04:54:06 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160952349-KM05 -161010377,64,16040041,Medical Incident,04/10/2016,04/09/2016,04/10/2016 02:20:23 AM,04/10/2016 02:20:39 AM,04/10/2016 02:21:36 AM,04/10/2016 02:22:10 AM,04/10/2016 02:30:27 AM,04/10/2016 02:54:50 AM,04/10/2016 02:58:50 AM,Code 2 Transport,04/10/2016 03:39:20 AM,0 Block of QUICKSTEP LN,San Francisco,94115,B04,05,3365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7832767200998, -122.428138545877)",161010377-64 -152541589,FD00A,15097085,,09/11/2015,09/11/2015,09/11/2015 12:07:52 PM,09/11/2015 12:07:52 PM,09/11/2015 12:18:31 PM,09/11/2015 12:18:31 PM,09/11/2015 12:18:31 PM,04/25/2016 01:08:24 PM,04/25/2016 01:08:24 PM,Fire,09/11/2015 12:18:41 PM,45TH AV/SLOAT BL,San Francisco,94132,B08,18,7711,2,2,2,false,Non Life-threatening,1,SUPPORT,2,8,4,Sunset/Parkside,"(37.7354664918076, -122.503104759024)",152541589-FD00A -153353019,52,15128930,Structure Fire,12/01/2015,12/01/2015,12/01/2015 05:42:26 PM,12/01/2015 05:43:17 PM,12/01/2015 05:43:31 PM,12/01/2015 05:43:52 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,Fire,12/01/2015 05:45:19 PM,1400 Block of 32ND AVE,San Francisco,94122,B08,23,7541,3,3,3,true,Alarm,1,MEDIC,11,8,4,Sunset/Parkside,"(37.7601552025292, -122.490789575329)",153353019-52 -151353597,E01,15051450,Structure Fire,05/15/2015,05/15/2015,05/15/2015 08:58:28 PM,05/15/2015 08:58:28 PM,05/15/2015 08:58:38 PM,05/15/2015 08:59:39 PM,05/15/2015 09:01:34 PM,04/25/2016 01:10:35 PM,04/25/2016 01:10:35 PM,No Merit,05/15/2015 09:02:13 PM,100 Block of 7TH ST,San Francisco,94103,B03,8,2312,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7790372933741, -122.41062000696)",151353597-E01 -141913439,55,14066353,Medical Incident,07/10/2014,07/10/2014,07/10/2014 09:33:17 PM,07/10/2014 09:33:17 PM,07/10/2014 09:35:11 PM,07/10/2014 09:36:12 PM,07/10/2014 09:46:09 PM,07/10/2014 10:02:45 PM,07/10/2014 10:18:12 PM,Code 2 Transport,07/10/2014 11:32:31 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",141913439-55 -160940608,57,16037154,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:41:18 AM,04/03/2016 04:41:46 AM,04/03/2016 04:41:56 AM,04/03/2016 04:42:39 AM,04/03/2016 04:51:00 AM,04/03/2016 05:10:05 AM,04/03/2016 05:38:53 AM,Code 2 Transport,04/03/2016 05:58:30 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160940608-57 -141312391,T06,14044656,Alarms,05/11/2014,05/11/2014,05/11/2014 05:52:15 PM,05/11/2014 05:53:34 PM,05/11/2014 05:54:10 PM,05/11/2014 05:56:29 PM,05/11/2014 05:57:29 PM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Fire,05/11/2014 06:05:39 PM,200 Block of STEINER ST,San Francisco,94117,B05,6,3633,3,3,3,false,Alarm,1,TRUCK,3,5,5,Haight Ashbury,"(37.7711888020343, -122.432019614304)",141312391-T06 -152900594,T14,15111302,Alarms,10/17/2015,10/16/2015,10/17/2015 04:19:29 AM,10/17/2015 04:20:24 AM,10/17/2015 04:20:32 AM,10/17/2015 04:23:06 AM,10/17/2015 04:27:47 AM,04/25/2016 01:07:43 PM,04/25/2016 01:07:43 PM,Fire,10/17/2015 04:32:42 AM,700 Block of 16TH AVE,San Francisco,94118,B07,31,715,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.773947007152, -122.474549425866)",152900594-T14 -160952738,KM09,16037704,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:37:12 PM,04/04/2016 04:38:28 PM,04/04/2016 04:38:51 PM,04/04/2016 04:39:59 PM,04/04/2016 04:45:22 PM,04/04/2016 05:21:19 PM,04/04/2016 05:38:47 PM,Code 2 Transport,04/04/2016 06:06:57 PM,800 Block of SILVER AVE,San Francisco,94134,B09,42,635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7291408602856, -122.418934279861)",160952738-KM09 -152570396,T13,15098136,Medical Incident,09/14/2015,09/13/2015,09/14/2015 05:06:35 AM,09/14/2015 05:07:00 AM,09/14/2015 05:08:17 AM,09/14/2015 05:10:00 AM,09/14/2015 05:11:59 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Code 2 Transport,09/14/2015 05:19:06 AM,200 Block of SANSOME ST,San Francisco,94104,B01,13,1165,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Financial District/South Beach,"(37.792575613742, -122.401098046872)",152570396-T13 -160922036,KM02,16036470,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:33:45 PM,04/01/2016 02:35:49 PM,04/01/2016 02:36:30 PM,04/01/2016 02:36:58 PM,04/01/2016 02:49:40 PM,04/01/2016 03:15:52 PM,04/01/2016 03:35:20 PM,Code 2 Transport,04/01/2016 04:05:15 PM,2600 Block of NORIEGA ST,San Francisco,94122,B08,18,7543,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7536105132475, -122.492015354093)",160922036-KM02 -142330405,AM18,14080818,Medical Incident,08/21/2014,08/20/2014,08/21/2014 05:05:16 AM,08/21/2014 05:10:06 AM,08/21/2014 05:12:06 AM,08/21/2014 05:13:00 AM,08/21/2014 05:23:33 AM,08/21/2014 05:47:01 AM,08/21/2014 05:55:48 AM,Code 2 Transport,08/21/2014 06:21:23 AM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",142330405-AM18 -141220230,B04,14041347,Alarms,05/02/2014,05/02/2014,05/02/2014 02:13:23 PM,05/02/2014 02:14:22 PM,05/02/2014 02:14:37 PM,05/02/2014 02:15:32 PM,05/02/2014 02:19:05 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 02:23:37 PM,900 Block of GEARY ST,SAN FRANCISCO,94109,B04,3,3116,3,3,3,false,Alarm,1,CHIEF,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",141220230-B04 -153003894,E08,15115303,Outside Fire,10/27/2015,10/27/2015,10/27/2015 11:20:48 PM,10/27/2015 11:21:18 PM,10/27/2015 11:21:45 PM,10/27/2015 11:22:52 PM,10/27/2015 11:25:27 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/27/2015 11:32:15 PM,100 Block of STILLMAN ST,San Francisco,94107,B03,8,2174,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7808261048723, -122.397440476002)",153003894-E08 -160950322,64,16037506,Medical Incident,04/04/2016,04/03/2016,04/04/2016 04:10:18 AM,04/04/2016 04:12:00 AM,04/04/2016 04:12:32 AM,04/04/2016 04:13:06 AM,04/04/2016 04:27:24 AM,04/04/2016 04:49:23 AM,04/04/2016 05:00:00 AM,Code 3 Transport,04/04/2016 05:40:04 AM,0 Block of MAJESTIC AVE,San Francisco,94112,B09,15,8317,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7176384872377, -122.451258431283)",160950322-64 -151022730,E01,15038676,Medical Incident,04/12/2015,04/12/2015,04/12/2015 06:29:20 PM,04/12/2015 06:32:34 PM,04/12/2015 06:33:12 PM,04/12/2015 06:33:54 PM,04/12/2015 06:36:39 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Code 3 Transport,04/12/2015 06:45:42 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",151022730-E01 -160974418,85,16038694,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:18:43 PM,04/06/2016 10:20:28 PM,04/06/2016 10:30:10 PM,04/06/2016 10:30:32 PM,04/06/2016 10:42:03 PM,04/06/2016 10:57:12 PM,04/06/2016 11:23:56 PM,Code 2 Transport,04/07/2016 12:00:34 AM,2400 Block of 28TH AVE,San Francisco,94116,B08,18,7522,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7416950719764, -122.485200987218)",160974418-85 -160954175,52,16037837,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:51:25 PM,04/04/2016 11:54:10 PM,04/04/2016 11:54:40 PM,04/04/2016 11:54:46 PM,04/05/2016 12:00:27 AM,04/05/2016 12:17:15 AM,04/05/2016 12:38:35 AM,Code 2 Transport,04/05/2016 01:03:10 AM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160954175-52 -141570821,E17,14053981,Structure Fire,06/06/2014,06/06/2014,06/06/2014 08:51:10 AM,06/06/2014 08:51:10 AM,06/06/2014 08:51:39 AM,06/06/2014 08:52:01 AM,06/06/2014 08:55:24 AM,04/25/2016 01:16:56 PM,04/25/2016 01:16:56 PM,Fire,06/06/2014 08:57:26 AM,GRIFFITH ST/GILMAN AV,San Francisco,94124,B10,17,6611,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7182356436301, -122.388136869889)",141570821-E17 -142980622,E36,14105073,Medical Incident,10/25/2014,10/24/2014,10/25/2014 04:32:32 AM,10/25/2014 04:32:32 AM,10/25/2014 04:32:57 AM,10/25/2014 04:34:53 AM,10/25/2014 04:40:06 AM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Code 2 Transport,10/25/2014 04:44:15 AM,LARKIN ST/FULTON ST,San Francisco,94102,B02,36,1645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",142980622-E36 -160933853,AM16,16037076,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:08:31 PM,04/02/2016 11:08:31 PM,04/02/2016 11:08:36 PM,04/02/2016 11:09:11 PM,04/02/2016 11:18:37 PM,04/02/2016 11:31:01 PM,04/02/2016 11:49:43 PM,Code 2 Transport,04/03/2016 12:23:04 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160933853-AM16 -151933143,E02,15073782,Medical Incident,07/12/2015,07/12/2015,07/12/2015 07:22:10 PM,07/12/2015 07:22:52 PM,07/12/2015 07:23:30 PM,07/12/2015 07:25:25 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/12/2015 07:27:46 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",151933143-E02 -152230817,E15,15084898,Traffic Collision,08/11/2015,08/11/2015,08/11/2015 08:22:04 AM,08/11/2015 08:27:01 AM,08/11/2015 08:27:10 AM,08/11/2015 08:31:19 AM,08/11/2015 08:31:25 AM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Patient Declined Transport,08/11/2015 08:47:38 AM,200 Block of SAN JOSE AVE,San Francisco,94110,B09,15,8313,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Mission,"(37.7512439644709, -122.421585334305)",152230817-E15 -150410479,E01,15015866,Medical Incident,02/10/2015,02/09/2015,02/10/2015 06:33:05 AM,02/10/2015 06:33:05 AM,02/10/2015 06:39:09 AM,02/10/2015 06:39:09 AM,02/10/2015 06:39:09 AM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/10/2015 07:45:01 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",150410479-E01 -142081261,E33,14072037,Medical Incident,07/27/2014,07/27/2014,07/27/2014 10:38:44 AM,07/27/2014 10:41:22 AM,07/27/2014 10:41:43 AM,07/27/2014 10:43:56 AM,07/27/2014 10:48:36 AM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Code 2 Transport,07/27/2014 11:06:35 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",142081261-E33 -160973230,68,16038555,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:17:34 PM,04/06/2016 05:18:16 PM,04/06/2016 05:19:51 PM,04/06/2016 05:20:20 PM,04/06/2016 05:33:31 PM,04/06/2016 05:49:28 PM,04/06/2016 06:24:04 PM,Code 2 Transport,04/06/2016 06:48:52 PM,600 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7798433146326, -122.510504603354)",160973230-68 -141321551,E03,14044926,Medical Incident,05/12/2014,05/12/2014,05/12/2014 12:36:15 PM,05/12/2014 12:37:09 PM,05/12/2014 12:38:50 PM,05/12/2014 12:39:41 PM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,04/25/2016 01:17:23 PM,Code 2 Transport,05/12/2014 12:54:03 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,E,3,false,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",141321551-E03 -142703080,E36,14094808,Medical Incident,09/27/2014,09/27/2014,09/27/2014 06:46:48 PM,09/27/2014 06:48:03 PM,09/27/2014 06:48:17 PM,09/27/2014 06:49:42 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 06:51:14 PM,300 Block of FELL ST,San Francisco,94102,B02,36,3314,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7759061463478, -122.423567115167)",142703080-E36 -152500779,67,15095394,Medical Incident,09/07/2015,09/07/2015,09/07/2015 08:31:08 AM,09/07/2015 08:32:55 AM,09/07/2015 08:36:13 AM,09/07/2015 08:42:09 AM,09/07/2015 08:45:02 AM,04/25/2016 01:08:29 PM,04/25/2016 01:08:29 PM,Fire,09/07/2015 08:50:42 AM,ELLIS ST/HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",152500779-67 -141670796,KM04,14057532,Medical Incident,06/16/2014,06/16/2014,06/16/2014 09:14:00 AM,06/16/2014 09:14:00 AM,06/16/2014 09:15:17 AM,06/16/2014 09:16:57 AM,06/16/2014 09:21:36 AM,06/16/2014 09:29:51 AM,06/16/2014 09:51:05 AM,Code 2 Transport,06/16/2014 10:17:09 AM,5TH ST/MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",141670796-KM04 -161002933,58,16039913,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:03:29 PM,04/09/2016 08:03:29 PM,04/09/2016 08:06:43 PM,04/09/2016 08:07:01 PM,04/09/2016 08:14:27 PM,04/09/2016 08:19:23 PM,04/09/2016 08:33:58 PM,Code 2 Transport,04/09/2016 09:16:46 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",161002933-58 -142202694,KM01,14076434,Medical Incident,08/08/2014,08/08/2014,08/08/2014 05:30:43 PM,08/08/2014 05:30:43 PM,08/08/2014 05:44:00 PM,08/08/2014 05:50:32 PM,08/08/2014 05:57:24 PM,08/08/2014 06:04:51 PM,08/08/2014 06:21:19 PM,Code 2 Transport,08/08/2014 06:46:04 PM,16TH ST/CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",142202694-KM01 -142770210,65,14097216,Medical Incident,10/04/2014,10/03/2014,10/04/2014 12:51:10 AM,10/04/2014 12:52:40 AM,10/04/2014 12:54:44 AM,10/04/2014 12:55:05 AM,10/04/2014 01:16:34 AM,10/04/2014 01:35:18 AM,10/04/2014 01:40:46 AM,Code 2 Transport,10/04/2014 02:28:18 AM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",142770210-65 -160943497,76,16037437,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:52:07 PM,04/03/2016 09:53:55 PM,04/03/2016 09:54:08 PM,04/03/2016 09:54:19 PM,04/03/2016 10:25:26 PM,04/03/2016 10:28:32 PM,04/03/2016 10:38:40 PM,Code 2 Transport,04/03/2016 11:18:00 PM,700 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7794115468887, -122.425174050161)",160943497-76 -142233238,E05,14077547,Medical Incident,08/11/2014,08/11/2014,08/11/2014 09:10:01 PM,08/11/2014 09:12:30 PM,08/11/2014 09:13:14 PM,08/11/2014 09:14:08 PM,08/11/2014 09:15:51 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Code 2 Transport,08/11/2014 09:26:07 PM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",142233238-E05 -150183306,60,15007278,Medical Incident,01/18/2015,01/18/2015,01/18/2015 10:13:39 PM,01/18/2015 10:16:22 PM,01/18/2015 10:17:15 PM,01/18/2015 10:17:28 PM,01/18/2015 10:26:09 PM,01/18/2015 10:38:05 PM,01/18/2015 11:08:56 PM,Code 2 Transport,01/18/2015 11:26:05 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",150183306-60 -142672449,53,14093564,Medical Incident,09/24/2014,09/24/2014,09/24/2014 03:32:55 PM,09/24/2014 03:33:40 PM,09/24/2014 03:34:09 PM,09/24/2014 03:34:19 PM,09/24/2014 03:45:26 PM,09/24/2014 04:03:47 PM,09/24/2014 04:39:51 PM,Code 2 Transport,09/24/2014 05:04:56 PM,200 Block of GUTTENBERG ST,San Francisco,94112,B09,43,6218,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.710266260591, -122.443104356111)",142672449-53 -143102218,82,14109763,Medical Incident,11/06/2014,11/06/2014,11/06/2014 02:59:46 PM,11/06/2014 03:01:07 PM,11/06/2014 03:03:03 PM,11/06/2014 03:03:53 PM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,No Merit,11/06/2014 03:06:48 PM,900 Block of CAPITOL AVE,San Francisco,94112,B09,33,8462,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7191266407655, -122.459261969444)",143102218-82 -160943165,78,16037399,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:50:36 PM,04/03/2016 07:50:55 PM,04/03/2016 07:51:19 PM,04/03/2016 07:51:27 PM,04/03/2016 08:14:54 PM,04/03/2016 08:14:56 PM,04/03/2016 08:27:35 PM,Code 2 Transport,04/03/2016 09:00:52 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160943165-78 -160973768,52,16038627,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:12:25 PM,04/06/2016 07:13:20 PM,04/06/2016 07:13:51 PM,04/06/2016 07:14:00 PM,04/06/2016 07:20:31 PM,04/06/2016 07:32:25 PM,04/06/2016 08:25:57 PM,Code 2 Transport,04/06/2016 08:51:11 PM,200 Block of HAMILTON ST,San Francisco,94134,B10,42,6342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7279029896841, -122.410205044034)",160973768-52 -160942563,75,16037338,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:44:20 PM,04/03/2016 04:44:20 PM,04/03/2016 04:44:53 PM,04/03/2016 04:45:17 PM,04/03/2016 04:53:43 PM,04/03/2016 05:05:31 PM,04/03/2016 05:22:43 PM,Code 2 Transport,04/03/2016 05:31:57 PM,400 Block of FRANKLIN ST,San Francisco,94102,B02,36,3214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7784801386574, -122.421683336458)",160942563-75 -141592829,E32,14054946,Medical Incident,06/08/2014,06/08/2014,06/08/2014 08:14:53 PM,06/08/2014 08:19:10 PM,06/08/2014 08:21:19 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,04/25/2016 01:16:53 PM,Code 2 Transport,06/08/2014 08:24:03 PM,BRAZIL AV/MISSION ST,San Francisco,94112,B09,43,6117,2,2,2,true,Non Life-threatening,1,ENGINE,4,9,11,Outer Mission,"(37.724682555301, -122.434798413615)",141592829-E32 -160971248,71,16038358,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:06:07 AM,04/06/2016 10:10:43 AM,04/06/2016 10:11:15 AM,04/06/2016 10:11:22 AM,04/06/2016 10:17:31 AM,04/06/2016 10:30:21 AM,04/06/2016 10:53:28 AM,Code 2 Transport,04/06/2016 11:10:33 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160971248-71 -141413592,85,14048517,Medical Incident,05/21/2014,05/21/2014,05/21/2014 10:33:59 PM,05/21/2014 10:36:14 PM,05/21/2014 10:38:13 PM,05/21/2014 10:40:30 PM,05/21/2014 10:47:17 PM,05/21/2014 11:03:09 PM,05/21/2014 11:31:35 PM,Code 2 Transport,05/22/2014 12:02:50 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7819536537257, -122.410041631816)",141413592-85 -143123763,85,14110708,Medical Incident,11/08/2014,11/08/2014,11/08/2014 10:26:21 PM,11/08/2014 10:26:48 PM,11/08/2014 10:41:07 PM,11/08/2014 10:41:17 PM,11/08/2014 10:46:39 PM,11/08/2014 11:11:52 PM,11/08/2014 11:14:37 PM,Code 3 Transport,11/09/2014 12:07:47 AM,1700 Block of GOLDEN GATE AVE,San Francisco,94115,B05,21,4242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7786720146338, -122.439393825172)",143123763-85 -152761980,E11,15105800,Traffic Collision,10/03/2015,10/03/2015,10/03/2015 01:54:42 PM,10/03/2015 01:54:42 PM,10/03/2015 01:55:01 PM,10/03/2015 01:56:30 PM,10/03/2015 01:57:52 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,No Merit,10/03/2015 02:01:32 PM,DOLORES ST/VALLEY ST,San Francisco,94110,B06,11,5576,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7446359985829, -122.424459210506)",152761980-E11 -152892798,71,15111120,Medical Incident,10/16/2015,10/16/2015,10/16/2015 05:05:04 PM,10/16/2015 05:08:19 PM,10/16/2015 05:08:50 PM,10/16/2015 05:09:09 PM,10/16/2015 05:30:42 PM,10/16/2015 05:41:10 PM,10/16/2015 05:52:23 PM,Code 2 Transport,10/16/2015 06:36:18 PM,300 Block of EXCELSIOR AVE,San Francisco,94112,B09,43,6133,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7248687518278, -122.430888833532)",152892798-71 -151421557,AM12,15053961,Medical Incident,05/22/2015,05/22/2015,05/22/2015 11:44:44 AM,05/22/2015 11:45:22 AM,05/22/2015 11:46:20 AM,05/22/2015 11:51:39 AM,05/22/2015 11:51:41 AM,05/22/2015 01:04:52 PM,05/22/2015 01:04:58 PM,Code 2 Transport,05/22/2015 01:11:40 PM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7892754139105, -122.407765078811)",151421557-AM12 -151800891,E33,15068639,Structure Fire,06/29/2015,06/29/2015,06/29/2015 08:55:41 AM,06/29/2015 08:56:03 AM,06/29/2015 08:56:18 AM,06/29/2015 08:57:06 AM,06/29/2015 08:59:06 AM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Code 2 Transport,06/29/2015 01:26:04 PM,1100 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8473,3,3,3,false,Fire,3,ENGINE,3,9,7,Oceanview/Merced/Ingleside,"(37.7228660555737, -122.456215121014)",151800891-E33 -160942679,KM06,16037354,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:15:25 PM,04/03/2016 05:15:25 PM,04/03/2016 05:15:45 PM,04/03/2016 05:16:12 PM,04/03/2016 05:22:55 PM,04/03/2016 05:42:56 PM,04/03/2016 05:52:43 PM,Code 2 Transport,04/03/2016 06:30:41 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160942679-KM06 -151882272,AM08,15071830,Medical Incident,07/07/2015,07/07/2015,07/07/2015 02:16:18 PM,07/07/2015 02:20:13 PM,07/07/2015 02:20:19 PM,07/07/2015 02:21:07 PM,07/07/2015 02:23:45 PM,04/25/2016 01:09:36 PM,04/25/2016 01:09:36 PM,Patient Declined Transport,07/07/2015 03:01:15 PM,300 Block of 10TH AVE,San Francisco,94118,B07,31,7141,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7817833010833, -122.468703263759)",151882272-AM08 -151193902,E14,15045195,Medical Incident,04/29/2015,04/29/2015,04/29/2015 10:29:30 PM,04/29/2015 10:30:32 PM,04/29/2015 10:31:15 PM,04/29/2015 10:32:30 PM,04/29/2015 10:33:42 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Medical Examiner,04/29/2015 11:10:58 PM,400 Block of 31ST AVE,San Francisco,94121,B07,14,7237,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",151193902-E14 -160971724,62,16038401,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:57:31 AM,04/06/2016 11:59:34 AM,04/06/2016 12:00:37 PM,04/06/2016 12:02:59 PM,04/06/2016 12:15:31 PM,04/06/2016 12:26:33 PM,04/06/2016 01:10:00 PM,Code 2 Transport,04/06/2016 01:16:02 PM,719-A UNION ST,San Francisco,94133,B01,28,1422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.8001349297204, -122.411218702709)",160971724-62 -152151011,RS1,15081757,Medical Incident,08/03/2015,08/03/2015,08/03/2015 09:15:25 AM,08/03/2015 09:16:40 AM,08/03/2015 09:20:02 AM,08/03/2015 09:20:54 AM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Code 2 Transport,08/03/2015 09:22:08 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",152151011-RS1 -153202945,81,15123155,Medical Incident,11/16/2015,11/16/2015,11/16/2015 06:03:53 PM,11/16/2015 06:07:22 PM,11/16/2015 06:08:35 PM,11/16/2015 06:08:58 PM,11/16/2015 06:20:56 PM,11/16/2015 06:38:04 PM,11/16/2015 06:59:35 PM,Code 2 Transport,11/16/2015 07:13:11 PM,0 Block of BELVEDERE ST,San Francisco,94117,B05,12,4532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7692041935605, -122.449481332809)",153202945-81 -153301594,E03,15127018,Medical Incident,11/26/2015,11/26/2015,11/26/2015 02:19:27 PM,11/26/2015 02:22:13 PM,11/26/2015 02:23:02 PM,11/26/2015 02:25:29 PM,11/26/2015 02:28:10 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Unable to Locate,11/26/2015 02:35:34 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",153301594-E03 -151600649,68,15061039,Medical Incident,06/09/2015,06/09/2015,06/09/2015 08:06:20 AM,06/09/2015 08:06:20 AM,06/09/2015 08:09:38 AM,06/09/2015 08:09:38 AM,06/09/2015 08:12:36 AM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Patient Declined Transport,06/09/2015 10:27:53 AM,3500 Block of 3RD ST,San Francisco,94124,B10,25,6525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7446864036072, -122.387362879495)",151600649-68 -150611195,87,15023218,Medical Incident,03/02/2015,03/02/2015,03/02/2015 10:38:24 AM,03/02/2015 10:38:24 AM,03/02/2015 10:39:13 AM,03/02/2015 10:40:24 AM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Other,03/02/2015 10:40:48 AM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",150611195-87 -142062283,E17,14071420,Medical Incident,07/25/2014,07/25/2014,07/25/2014 03:57:25 PM,07/25/2014 03:58:16 PM,07/25/2014 03:58:43 PM,07/25/2014 04:00:44 PM,07/25/2014 04:02:00 PM,04/25/2016 01:16:02 PM,04/25/2016 01:16:02 PM,Code 2 Transport,07/25/2014 04:18:24 PM,1200 Block of INGALLS ST,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7305663224371, -122.381859307677)",142062283-E17 -142981446,81,14105143,Medical Incident,10/25/2014,10/25/2014,10/25/2014 11:10:59 AM,10/25/2014 11:16:42 AM,10/25/2014 11:25:34 AM,10/25/2014 11:25:41 AM,10/25/2014 11:29:08 AM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Patient Declined Transport,10/25/2014 12:05:16 PM,TARAVAL ST/40TH AV,San Francisco,94116,B08,18,7621,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7420556772933, -122.498189525757)",142981446-81 -152830188,KM07,15108489,Medical Incident,10/10/2015,10/09/2015,10/10/2015 12:59:54 AM,10/10/2015 01:00:58 AM,10/10/2015 01:01:14 AM,10/10/2015 01:03:43 AM,10/10/2015 01:10:28 AM,10/10/2015 01:23:31 AM,10/10/2015 01:51:11 AM,Code 2 Transport,10/10/2015 02:20:48 AM,3300 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.775892549655, -122.49464338851)",152830188-KM07 -141531811,KM01,14052577,Medical Incident,06/02/2014,06/02/2014,06/02/2014 01:54:31 PM,06/02/2014 01:55:57 PM,06/02/2014 01:56:35 PM,06/02/2014 01:58:26 PM,06/02/2014 02:04:36 PM,06/02/2014 02:18:34 PM,06/02/2014 02:34:19 PM,Code 2 Transport,06/02/2014 03:03:13 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",141531811-KM01 -152442308,77,15093116,Medical Incident,09/01/2015,09/01/2015,09/01/2015 02:46:56 PM,09/01/2015 02:46:56 PM,09/01/2015 02:47:34 PM,09/01/2015 02:47:51 PM,09/01/2015 02:57:09 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Unable to Locate,09/01/2015 03:07:18 PM,1000 Block of GREAT HWY,San Francisco,94122,B08,23,7722,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",152442308-77 -151811109,67,15069048,Medical Incident,06/30/2015,06/30/2015,06/30/2015 10:20:22 AM,06/30/2015 10:22:26 AM,06/30/2015 10:22:35 AM,06/30/2015 10:22:41 AM,06/30/2015 10:23:57 AM,06/30/2015 10:32:18 AM,06/30/2015 10:46:08 AM,Code 2 Transport,06/30/2015 11:02:27 AM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",151811109-67 -151233463,64,15046827,Medical Incident,05/03/2015,05/03/2015,05/03/2015 10:40:20 PM,05/03/2015 10:41:35 PM,05/03/2015 10:42:03 PM,05/03/2015 10:42:19 PM,05/03/2015 10:52:13 PM,05/03/2015 11:32:00 PM,05/03/2015 11:42:00 PM,Code 2 Transport,05/04/2015 12:13:45 AM,900 Block of ALVARADO ST,San Francisco,94114,B06,24,5373,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7532139558843, -122.441434209988)",151233463-64 -161001642,54,16039769,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:16:10 PM,04/09/2016 01:18:00 PM,04/09/2016 01:20:31 PM,04/09/2016 01:20:40 PM,04/09/2016 01:39:45 PM,04/09/2016 01:54:02 PM,04/09/2016 02:29:10 PM,Code 2 Transport,04/09/2016 03:14:02 PM,BEACH ST/MASON ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8074825129146, -122.41397500769)",161001642-54 -160930517,60,16036719,Medical Incident,04/02/2016,04/01/2016,04/02/2016 04:34:39 AM,04/02/2016 04:35:43 AM,04/02/2016 04:35:51 AM,04/02/2016 04:36:50 AM,04/02/2016 04:45:52 AM,04/02/2016 05:05:18 AM,04/02/2016 05:17:02 AM,Code 2 Transport,04/02/2016 06:12:41 AM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",160930517-60 -160951272,KM12,16037578,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:42:53 AM,04/04/2016 10:44:28 AM,04/04/2016 10:44:45 AM,04/04/2016 10:45:44 AM,04/04/2016 10:51:51 AM,04/04/2016 11:09:12 AM,04/04/2016 11:29:22 AM,Code 2 Transport,04/04/2016 11:55:12 AM,9TH ST/MARKET ST,San Francisco,94103,B02,36,2337,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160951272-KM12 -141801238,T13,14062191,Structure Fire,06/29/2014,06/29/2014,06/29/2014 10:31:04 AM,06/29/2014 10:31:04 AM,06/29/2014 10:31:58 AM,06/29/2014 10:34:41 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Fire,06/29/2014 10:34:45 AM,KEARNY ST/SACRAMENTO ST,San Francisco,94104,B01,13,1244,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",141801238-T13 -143254086,53,14115307,Medical Incident,11/21/2014,11/21/2014,11/21/2014 11:51:46 PM,11/21/2014 11:52:27 PM,11/21/2014 11:52:53 PM,11/21/2014 11:53:21 PM,11/21/2014 11:53:49 PM,11/22/2014 12:02:09 AM,11/22/2014 12:28:16 AM,Code 2 Transport,11/22/2014 12:55:30 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",143254086-53 -160932853,52,16036982,Medical Incident,04/02/2016,04/02/2016,04/02/2016 06:12:18 PM,04/02/2016 06:13:35 PM,04/02/2016 06:14:21 PM,04/02/2016 06:14:43 PM,04/02/2016 06:19:10 PM,04/02/2016 06:34:12 PM,04/02/2016 06:51:24 PM,Code 3 Transport,04/02/2016 06:59:51 PM,800 Block of SHOTWELL ST,San Francisco,94110,B06,7,544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7548379824748, -122.415327726268)",160932853-52 -141540652,E37,14052831,Medical Incident,06/03/2014,06/02/2014,06/03/2014 07:54:23 AM,06/03/2014 07:54:23 AM,06/03/2014 07:54:40 AM,06/03/2014 07:56:15 AM,06/03/2014 07:58:51 AM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,Medical Examiner,06/03/2014 08:05:56 AM,IOWA ST/23RD ST,San Francisco,94107,B10,37,2535,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7551548898327, -122.391901127872)",141540652-E37 -142671235,E18,14093438,Medical Incident,09/24/2014,09/24/2014,09/24/2014 10:05:14 AM,09/24/2014 10:06:21 AM,09/24/2014 10:07:28 AM,09/24/2014 10:10:07 AM,09/24/2014 10:14:10 AM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Code 2 Transport,09/24/2014 10:21:00 AM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",142671235-E18 -141930163,E07,14066763,Alarms,07/12/2014,07/11/2014,07/12/2014 01:04:52 AM,07/12/2014 01:05:59 AM,07/12/2014 01:06:07 AM,07/12/2014 01:07:19 AM,07/12/2014 01:10:25 AM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,Fire,07/12/2014 01:35:31 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,2,2,9,Mission,"(37.7621440348149, -122.421551451612)",141930163-E07 -151000727,E01,15037753,Other,04/10/2015,04/10/2015,04/10/2015 08:28:22 AM,04/10/2015 08:34:09 AM,04/10/2015 08:39:44 AM,04/10/2015 08:39:44 AM,04/10/2015 08:39:46 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Fire,04/10/2015 08:41:22 AM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",151000727-E01 -141642751,E34,14056638,Medical Incident,06/13/2014,06/13/2014,06/13/2014 06:08:36 PM,06/13/2014 06:10:07 PM,06/13/2014 06:12:14 PM,06/13/2014 06:12:27 PM,06/13/2014 06:14:25 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Code 3 Transport,06/13/2014 06:26:26 PM,500 Block of 47TH AVE,San Francisco,94121,B07,34,7276,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7780500044705, -122.508299698216)",141642751-E34 -143631695,E08,14129861,Medical Incident,12/29/2014,12/29/2014,12/29/2014 01:25:58 PM,12/29/2014 01:29:05 PM,12/29/2014 01:30:58 PM,12/29/2014 01:36:21 PM,12/29/2014 01:36:21 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,No Merit,12/29/2014 01:39:50 PM,300 Block of BERRY ST,San Francisco,94158,B03,8,2235,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7731124835363, -122.39664007904)",143631695-E08 -160931069,AM08,16036781,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:47:13 AM,04/02/2016 09:49:45 AM,04/02/2016 09:50:02 AM,04/02/2016 09:51:00 AM,04/02/2016 09:53:21 AM,04/02/2016 10:14:25 AM,04/02/2016 10:40:55 AM,Code 2 Transport,04/02/2016 10:56:34 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160931069-AM08 -143471552,RWC1,14123764,Water Rescue,12/13/2014,12/13/2014,12/13/2014 12:01:59 PM,12/13/2014 12:02:32 PM,12/13/2014 12:03:58 PM,12/13/2014 12:05:35 PM,12/13/2014 12:22:14 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Code 2 Transport,12/13/2014 12:51:05 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Fire,1,SUPPORT,7,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",143471552-RWC1 -151033131,FD00A,15039071,,04/13/2015,04/13/2015,04/13/2015 06:34:22 PM,04/13/2015 06:39:13 PM,04/13/2015 07:30:41 PM,04/13/2015 07:30:41 PM,04/13/2015 07:30:41 PM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Code 2 Transport,04/13/2015 07:30:49 PM,0 Block of PIXLEY ST,San Francisco,94123,B04,16,3444,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,3,4,2,Marina,"(37.798746384821, -122.433297567626)",151033131-FD00A -160982525,AM02,16038989,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:34:46 PM,04/07/2016 03:35:45 PM,04/07/2016 03:36:41 PM,04/07/2016 03:37:35 PM,04/07/2016 03:44:46 PM,04/07/2016 04:00:07 PM,04/07/2016 04:08:37 PM,Code 2 Transport,04/07/2016 04:25:20 PM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7800578530259, -122.464142970045)",160982525-AM02 -150563419,E40,15021563,Medical Incident,02/25/2015,02/25/2015,02/25/2015 07:49:15 PM,02/25/2015 07:50:40 PM,02/25/2015 07:53:13 PM,02/25/2015 07:54:51 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,04/25/2016 01:12:02 PM,Patient Declined Transport,02/25/2015 07:57:00 PM,14TH AV/VICENTE ST,San Francisco,94127,B08,40,7357,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7395643288093, -122.469975195615)",150563419-E40 -151641149,KM11,15062663,Medical Incident,06/13/2015,06/13/2015,06/13/2015 10:19:02 AM,06/13/2015 10:20:42 AM,06/13/2015 10:21:01 AM,06/13/2015 10:21:34 AM,06/13/2015 10:21:44 AM,06/13/2015 10:48:03 AM,06/13/2015 11:00:23 AM,Code 2 Transport,06/13/2015 11:34:57 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",151641149-KM11 -151062553,E07,15040122,Alarms,04/16/2015,04/16/2015,04/16/2015 03:52:43 PM,04/16/2015 03:53:59 PM,04/16/2015 03:54:41 PM,04/16/2015 03:55:20 PM,04/16/2015 03:57:55 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Fire,04/16/2015 04:11:08 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",151062553-E07 -161002245,65,16039832,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:24:11 PM,04/09/2016 04:25:02 PM,04/09/2016 04:25:28 PM,04/09/2016 04:26:02 PM,04/09/2016 04:54:48 PM,04/09/2016 05:13:34 PM,04/09/2016 05:29:31 PM,Code 2 Transport,04/09/2016 05:53:32 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",161002245-65 -141310802,T03,14044500,Structure Fire,05/11/2014,05/11/2014,05/11/2014 08:28:53 AM,05/11/2014 08:28:53 AM,05/11/2014 08:29:17 AM,05/11/2014 08:30:14 AM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,04/25/2016 01:17:24 PM,Cancelled,05/11/2014 08:33:26 AM,HYDE ST/ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",141310802-T03 -153421038,E07,15131533,Medical Incident,12/08/2015,12/08/2015,12/08/2015 09:19:49 AM,12/08/2015 09:21:12 AM,12/08/2015 09:21:26 AM,12/08/2015 09:22:27 AM,12/08/2015 09:24:12 AM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Code 2 Transport,12/08/2015 10:06:21 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",153421038-E07 -160981471,52,16038876,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:04:29 AM,04/07/2016 11:07:15 AM,04/07/2016 11:07:54 AM,04/07/2016 11:16:12 AM,04/07/2016 11:20:19 AM,04/07/2016 11:43:01 AM,04/07/2016 12:03:34 PM,Code 2 Transport,04/07/2016 12:32:10 PM,3100 Block of BALBOA ST,San Francisco,94121,B07,14,7244,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7759901352962, -122.492505810279)",160981471-52 -151991583,61,15075829,Medical Incident,07/18/2015,07/18/2015,07/18/2015 12:01:26 PM,07/18/2015 12:02:45 PM,07/18/2015 12:03:34 PM,07/18/2015 12:03:45 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,No Merit,07/18/2015 12:14:25 PM,JUNIPERO SERRA BL/19TH AV,San Francisco,94132,B08,33,8422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Lakeshore,"(37.71717386983, -122.472572451935)",151991583-61 -160973257,KM05,16038558,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:23:45 PM,04/06/2016 05:23:45 PM,04/06/2016 05:25:04 PM,04/06/2016 05:26:35 PM,04/06/2016 05:42:22 PM,04/06/2016 05:54:50 PM,04/06/2016 06:31:15 PM,Code 2 Transport,04/06/2016 06:42:12 PM,2600 Block of 17TH AVE,San Francisco,94116,B08,40,7411,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7384875345339, -122.473157752879)",160973257-KM05 -161002152,AM08,16039823,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 04:00:55 PM,04/09/2016 04:02:09 PM,04/09/2016 04:03:08 PM,04/09/2016 04:04:01 PM,04/09/2016 04:12:24 PM,04/09/2016 04:24:55 PM,04/09/2016 04:42:09 PM,Code 2 Transport,04/09/2016 05:10:06 PM,0 Block of 0NB MARINA BL ON,Presidio,94123,B04,16,4323,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.8055133591227, -122.434812261281)",161002152-AM08 -141811198,T16,14062643,Citizen Assist / Service Call,06/30/2014,06/30/2014,06/30/2014 10:57:47 AM,06/30/2014 10:59:13 AM,06/30/2014 10:59:37 AM,06/30/2014 11:00:52 AM,06/30/2014 11:06:51 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 11:10:39 AM,MARINA BL/DIVISADERO ST,San Francisco,94123,B04,16,4214,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.8055811385957, -122.44398351784)",141811198-T16 -160993721,79,16039493,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:48:21 PM,04/08/2016 09:49:18 PM,04/08/2016 10:03:47 PM,04/08/2016 10:04:32 PM,04/08/2016 10:17:35 PM,04/08/2016 10:28:58 PM,04/08/2016 10:44:40 PM,Code 2 Transport,04/08/2016 11:08:13 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7844637837491, -122.417824560275)",160993721-79 -142160522,E07,14074791,Medical Incident,08/04/2014,08/03/2014,08/04/2014 06:48:12 AM,08/04/2014 06:48:27 AM,08/04/2014 06:49:06 AM,08/04/2014 06:50:17 AM,08/04/2014 06:52:50 AM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,Code 2 Transport,08/04/2014 07:00:26 AM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",142160522-E07 -143471802,64,14123795,Medical Incident,12/13/2014,12/13/2014,12/13/2014 01:07:36 PM,12/13/2014 01:09:03 PM,12/13/2014 01:09:38 PM,12/13/2014 01:09:48 PM,12/13/2014 01:26:53 PM,12/13/2014 01:49:36 PM,12/13/2014 02:12:54 PM,Code 2 Transport,12/13/2014 02:47:40 PM,100 Block of VICTORIA ST,San Francisco,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7136151594856, -122.465362817213)",143471802-64 -152110677,T02,15080257,Alarms,07/30/2015,07/29/2015,07/30/2015 07:29:28 AM,07/30/2015 07:30:42 AM,07/30/2015 07:30:59 AM,07/30/2015 07:33:11 AM,07/30/2015 07:35:17 AM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 07:44:14 AM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",152110677-T02 -160994079,64,16039540,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:36:20 PM,04/08/2016 11:39:57 PM,04/08/2016 11:40:26 PM,04/08/2016 11:40:42 PM,04/08/2016 11:49:55 PM,04/08/2016 11:59:54 PM,04/09/2016 12:26:50 AM,Code 2 Transport,04/09/2016 01:01:54 AM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",160994079-64 -143483320,KM02,14124381,Medical Incident,12/14/2014,12/14/2014,12/14/2014 08:47:38 PM,12/14/2014 08:51:09 PM,12/14/2014 08:51:26 PM,12/14/2014 08:52:06 PM,12/14/2014 08:59:34 PM,12/14/2014 09:07:11 PM,12/14/2014 09:29:15 PM,Code 2 Transport,12/14/2014 10:06:17 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7836127222201, -122.403258537277)",143483320-KM02 -160950384,KM03,16037514,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:26:03 AM,04/04/2016 05:29:00 AM,04/04/2016 05:30:02 AM,04/04/2016 05:30:02 AM,04/04/2016 05:40:41 AM,04/04/2016 06:01:09 AM,04/04/2016 06:11:12 AM,Code 2 Transport,04/04/2016 06:39:44 AM,0 Block of 3RD ST,San Francisco,94103,B03,1,2211,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",160950384-KM03 -153442263,E03,15132464,Medical Incident,12/10/2015,12/10/2015,12/10/2015 02:54:10 PM,12/10/2015 02:55:35 PM,12/10/2015 02:59:20 PM,12/10/2015 03:02:47 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/10/2015 03:09:31 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",153442263-E03 -141872186,T02,14064845,Medical Incident,07/06/2014,07/06/2014,07/06/2014 04:30:08 PM,07/06/2014 04:30:51 PM,07/06/2014 04:31:05 PM,07/06/2014 04:32:37 PM,07/06/2014 04:36:07 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Code 2 Transport,07/06/2014 04:43:58 PM,1000 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,North Beach,"(37.8041876050837, -122.415703120443)",141872186-T02 -160922187,67,16036485,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:12:42 PM,04/01/2016 03:13:33 PM,04/01/2016 03:15:17 PM,04/01/2016 03:15:25 PM,04/01/2016 03:23:04 PM,04/01/2016 03:42:47 PM,04/01/2016 03:53:09 PM,Code 2 Transport,04/01/2016 04:38:19 PM,2700 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",160922187-67 -152872540,E07,15110326,Medical Incident,10/14/2015,10/14/2015,10/14/2015 03:00:28 PM,10/14/2015 03:00:48 PM,10/14/2015 03:01:19 PM,10/14/2015 03:02:26 PM,10/14/2015 03:06:02 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 03:13:06 PM,300 Block of DOLORES ST,San Francisco,94110,B02,6,5251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.764312724903, -122.426194224065)",152872540-E07 -152011944,65,15076630,Medical Incident,07/20/2015,07/20/2015,07/20/2015 01:30:28 PM,07/20/2015 01:33:31 PM,07/20/2015 01:33:53 PM,07/20/2015 01:34:43 PM,07/20/2015 01:45:10 PM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Cancelled,07/20/2015 01:57:39 PM,HOWARD ST/3RD ST,San Francisco,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",152011944-65 -153350422,KM07,15128677,Medical Incident,12/01/2015,11/30/2015,12/01/2015 05:43:12 AM,12/01/2015 05:44:50 AM,12/01/2015 05:45:05 AM,12/01/2015 05:45:53 AM,12/01/2015 05:48:19 AM,04/25/2016 01:06:54 PM,04/25/2016 01:06:54 PM,Code 2 Transport,12/01/2015 06:44:18 AM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",153350422-KM07 -160931324,85,16036816,Traffic Collision,04/02/2016,04/02/2016,04/02/2016 11:04:48 AM,04/02/2016 11:07:42 AM,04/02/2016 11:28:42 AM,04/02/2016 11:28:42 AM,04/02/2016 11:40:13 AM,04/02/2016 11:40:16 AM,04/02/2016 12:19:47 PM,Code 2 Transport,04/02/2016 01:27:42 PM,FULTON ST/8TH AV,San Francisco,94122,B07,31,7133,2,2,2,true,Non Life-threatening,1,MEDIC,4,7,1,Inner Richmond,"(37.7733982051293, -122.4658831608)",160931324-85 -152433193,B03,15092823,Structure Fire,08/31/2015,08/31/2015,08/31/2015 06:21:05 PM,08/31/2015 06:21:51 PM,08/31/2015 06:23:14 PM,08/31/2015 06:24:37 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Fire,08/31/2015 06:26:55 PM,500 Block of AMADOR ST,San Francisco,94124,B10,25,6463,3,3,3,false,Alarm,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.745994401434, -122.383000828344)",152433193-B03 -150370017,E25,15014064,Alarms,02/06/2015,02/05/2015,02/06/2015 12:04:27 AM,02/06/2015 12:05:44 AM,02/06/2015 12:05:51 AM,02/06/2015 12:08:19 AM,02/06/2015 12:11:08 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/06/2015 12:17:43 AM,2000 Block of EVANS AVE,San Francisco,94124,B10,9,6422,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7477614969563, -122.396439770818)",150370017-E25 -152581813,AM12,15098659,Medical Incident,09/15/2015,09/15/2015,09/15/2015 12:22:54 PM,09/15/2015 12:24:35 PM,09/15/2015 12:26:07 PM,09/15/2015 12:27:15 PM,09/15/2015 12:30:51 PM,09/15/2015 12:53:40 PM,09/15/2015 01:10:44 PM,Code 2 Transport,09/15/2015 01:41:29 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",152581813-AM12 -152311191,B06,15088061,Alarms,08/19/2015,08/19/2015,08/19/2015 10:12:17 AM,08/19/2015 10:13:17 AM,08/19/2015 10:14:41 AM,08/19/2015 10:15:54 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Fire,08/19/2015 10:25:12 AM,100 Block of GRAYSTONE TER,San Francisco,94114,B05,24,5275,3,3,3,false,Alarm,1,CHIEF,3,6,8,Castro/Upper Market,"(37.7572594107459, -122.445435497389)",152311191-B06 -142050756,E03,14070879,Structure Fire,07/24/2014,07/23/2014,07/24/2014 07:48:58 AM,07/24/2014 07:48:58 AM,07/24/2014 07:49:35 AM,07/24/2014 07:51:43 AM,07/24/2014 07:53:38 AM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/24/2014 07:54:10 AM,1000 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",142050756-E03 -142513353,78,14087695,Medical Incident,09/08/2014,09/08/2014,09/08/2014 09:34:39 PM,09/08/2014 09:36:26 PM,09/08/2014 09:36:55 PM,09/08/2014 09:37:21 PM,09/08/2014 09:40:20 PM,09/08/2014 09:56:38 PM,09/08/2014 10:16:47 PM,Code 2 Transport,09/08/2014 10:25:59 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",142513353-78 -152273196,T03,15086668,Structure Fire,08/15/2015,08/15/2015,08/15/2015 06:11:05 PM,08/15/2015 06:11:05 PM,08/15/2015 06:11:31 PM,08/15/2015 06:12:52 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Fire,08/15/2015 06:15:11 PM,POWELL ST/OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Alarm,1,TRUCK,2,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",152273196-T03 -153361458,B03,15129189,Alarms,12/02/2015,12/02/2015,12/02/2015 11:14:40 AM,12/02/2015 11:16:22 AM,12/02/2015 11:17:34 AM,12/02/2015 11:19:23 AM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Fire,12/02/2015 11:21:54 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7889890278006, -122.392241749489)",153361458-B03 -153050451,60,15116951,Medical Incident,11/01/2015,10/31/2015,11/01/2015 01:39:57 AM,11/01/2015 01:40:19 AM,11/01/2015 01:40:55 AM,11/01/2015 01:42:03 AM,11/01/2015 01:50:14 AM,11/01/2015 01:01:11 AM,11/01/2015 01:01:12 AM,Code 2 Transport,11/01/2015 01:40:55 AM,KEITH ST/QUESADA AV,San Francisco,94124,B10,17,6551,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,10,10,Bayview Hunters Point,"(37.7312317894346, -122.38772939119)",153050451-60 -152503695,E26,15095685,Medical Incident,09/07/2015,09/07/2015,09/07/2015 11:16:03 PM,09/07/2015 11:16:13 PM,09/07/2015 11:16:27 PM,09/07/2015 11:18:49 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,04/25/2016 01:08:28 PM,Code 2 Transport,09/07/2015 11:19:14 PM,200 Block of SILVER AVE,San Francisco,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7294754378112, -122.432892177428)",152503695-E26 -152840716,78,15108963,Medical Incident,10/11/2015,10/10/2015,10/11/2015 05:17:25 AM,10/11/2015 05:19:15 AM,10/11/2015 05:19:50 AM,10/11/2015 05:20:07 AM,10/11/2015 05:26:48 AM,10/11/2015 05:33:27 AM,10/11/2015 05:39:48 AM,Code 2 Transport,10/11/2015 06:00:58 AM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",152840716-78 -160921316,KM09,16036401,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:11:58 AM,04/01/2016 11:13:46 AM,04/01/2016 11:14:24 AM,04/01/2016 11:14:57 AM,04/01/2016 11:22:00 AM,04/01/2016 11:44:38 AM,04/01/2016 11:53:18 AM,Code 2 Transport,04/01/2016 12:39:39 PM,GEARY BL/LAGUNA ST,San Francisco,94109,B04,3,3323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7849538777807, -122.427988928146)",160921316-KM09 -160950398,71,16037516,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:40:24 AM,04/04/2016 05:42:25 AM,04/04/2016 05:42:54 AM,04/04/2016 05:43:00 AM,04/04/2016 05:45:01 AM,04/04/2016 05:47:18 AM,04/04/2016 06:33:02 AM,Code 2 Transport,04/04/2016 06:46:00 AM,24TH ST/VERMONT ST,San Francisco,94107,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7531783675357, -122.403405609347)",160950398-71 -142601408,D2,14090804,Structure Fire,09/17/2014,09/17/2014,09/17/2014 11:20:53 AM,09/17/2014 11:21:22 AM,09/17/2014 11:22:26 AM,09/17/2014 11:23:45 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Fire,09/17/2014 11:28:38 AM,2400 Block of 43RD AVE,San Francisco,94116,B08,18,7643,3,3,3,false,Alarm,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7409765003941, -122.501407108268)",142601408-D2 -150311547,70,15011951,Medical Incident,01/31/2015,01/31/2015,01/31/2015 12:10:44 PM,01/31/2015 12:11:47 PM,01/31/2015 12:12:58 PM,01/31/2015 12:13:23 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Cancelled,01/31/2015 12:14:35 PM,CALIFORNIA ST/22ND AV,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7840282375156, -122.481791171826)",150311547-70 -160991481,64,16039276,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:09:49 PM,04/08/2016 12:10:53 PM,04/08/2016 12:11:09 PM,04/08/2016 12:12:15 PM,04/08/2016 12:17:22 PM,04/08/2016 12:26:46 PM,04/08/2016 12:53:39 PM,Code 2 Transport,04/08/2016 01:30:16 PM,2ND ST/MISSION ST,San Francisco,94105,B03,1,2145,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.788007159489, -122.39979802517)",160991481-64 -141420209,68,14048550,Medical Incident,05/22/2014,05/21/2014,05/22/2014 02:04:05 AM,05/22/2014 02:04:05 AM,05/22/2014 02:04:36 AM,05/22/2014 02:04:41 AM,05/22/2014 02:29:47 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Patient Declined Transport,05/22/2014 02:29:58 AM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",141420209-68 -151250275,E41,15047226,Alarms,05/05/2015,05/04/2015,05/05/2015 04:06:44 AM,05/05/2015 04:07:54 AM,05/05/2015 04:08:04 AM,05/05/2015 04:09:35 AM,05/05/2015 04:12:02 AM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Fire,05/05/2015 04:33:05 AM,500 Block of SUTTER ST,San Francisco,94108,B01,3,1412,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",151250275-E41 -160972971,56,16038530,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:28:56 PM,04/06/2016 04:28:56 PM,04/06/2016 04:33:16 PM,04/06/2016 04:33:30 PM,04/06/2016 04:43:56 PM,04/06/2016 04:54:31 PM,04/06/2016 05:21:22 PM,Code 2 Transport,04/06/2016 05:40:26 PM,PUEBLO ST/VELASCO AV,San Francisco,94134,B09,43,6247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7092328196087, -122.416808446994)",160972971-56 -152682810,77,15102780,Medical Incident,09/25/2015,09/25/2015,09/25/2015 05:13:06 PM,09/25/2015 05:14:33 PM,09/25/2015 05:15:52 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Code 2 Transport,09/25/2015 05:18:23 PM,900 Block of RUTLAND ST,San Francisco,94134,B09,44,6256,2,2,2,false,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7106276693523, -122.408217888233)",152682810-77 -150332774,T02,15012839,Alarms,02/02/2015,02/02/2015,02/02/2015 05:49:11 PM,02/02/2015 05:50:40 PM,02/02/2015 05:50:50 PM,02/02/2015 05:52:49 PM,02/02/2015 05:55:50 PM,04/25/2016 01:12:29 PM,04/25/2016 01:12:29 PM,Fire,02/02/2015 06:10:44 PM,200 Block of POST ST,San Francisco,94108,B01,1,1316,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7886509906461, -122.406006971458)",150332774-T02 -160933029,72,16036994,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:04:50 PM,04/02/2016 07:04:50 PM,04/02/2016 07:08:14 PM,04/02/2016 07:08:17 PM,04/02/2016 07:12:01 PM,04/02/2016 07:31:48 PM,04/02/2016 08:10:52 PM,Code 2 Transport,04/02/2016 08:53:43 PM,WASHINGTON ST/THE EMBARCADERO NOR,San Francisco,94111,B01,13,1116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7965582462412, -122.396189037335)",160933029-72 -151331074,RS2,15050377,Medical Incident,05/13/2015,05/13/2015,05/13/2015 09:26:52 AM,05/13/2015 09:27:19 AM,05/13/2015 09:30:27 AM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,04/25/2016 01:10:38 PM,Patient Declined Transport,05/13/2015 09:31:30 AM,200 Block of FILBERT ST,San Francisco,94133,B01,28,1225,3,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,7,1,3,North Beach,"(37.8020858209588, -122.403174666373)",151331074-RS2 -141792690,E29,14061886,Structure Fire,06/28/2014,06/28/2014,06/28/2014 05:49:31 PM,06/28/2014 05:49:56 PM,06/28/2014 05:51:08 PM,06/28/2014 05:52:08 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,04/25/2016 01:16:31 PM,Fire,06/28/2014 06:49:01 PM,3300 Block of 17TH ST,San Francisco,94110,B02,7,5247,3,3,3,false,Fire,1,ENGINE,11,2,9,Mission,"(37.7632828833773, -122.421077099957)",141792690-E29 -141971100,T09,14068168,Medical Incident,07/16/2014,07/16/2014,07/16/2014 09:33:25 AM,07/16/2014 09:35:26 AM,07/16/2014 09:36:16 AM,07/16/2014 09:37:07 AM,07/16/2014 09:39:37 AM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Code 2 Transport,07/16/2014 09:47:30 AM,1100 Block of YORK ST,San Francisco,94110,B06,9,5531,3,3,3,false,Non Life-threatening,1,TRUCK,1,6,9,Mission,"(37.7536568191077, -122.408196896475)",141971100-T09 -143650414,E36,14130537,Alarms,12/31/2014,12/30/2014,12/31/2014 05:32:02 AM,12/31/2014 05:32:02 AM,12/31/2014 05:32:20 AM,12/31/2014 05:34:14 AM,12/31/2014 05:37:03 AM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Fire,12/31/2014 05:58:49 AM,1600 Block of 16TH ST,San Francisco,94103,B02,29,2413,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission Bay,"(37.7659910693857, -122.403158787515)",143650414-E36 -160931733,KM02,16036855,Elevator / Escalator Rescue,04/02/2016,04/02/2016,04/02/2016 01:03:56 PM,04/02/2016 01:05:26 PM,04/02/2016 01:07:21 PM,04/02/2016 01:08:36 PM,04/02/2016 01:14:08 PM,04/02/2016 01:35:20 PM,04/02/2016 01:45:10 PM,Code 2 Transport,04/02/2016 02:08:51 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,false,Alarm,1,PRIVATE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160931733-KM02 -141532762,RS2,14052690,Medical Incident,06/02/2014,06/02/2014,06/02/2014 06:55:28 PM,06/02/2014 06:56:10 PM,06/02/2014 06:58:23 PM,06/02/2014 07:02:18 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Code 2 Transport,06/02/2014 07:02:20 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,255,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",141532762-RS2 -151721192,KM11,15065634,Medical Incident,06/21/2015,06/21/2015,06/21/2015 10:47:47 AM,06/21/2015 10:49:23 AM,06/21/2015 10:49:41 AM,06/21/2015 10:51:07 AM,06/21/2015 10:58:12 AM,06/21/2015 11:17:21 AM,06/21/2015 11:47:32 AM,Code 2 Transport,06/21/2015 12:28:00 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8084350175869, -122.410774214375)",151721192-KM11 -160983039,77,16039044,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:58:37 PM,04/07/2016 05:58:58 PM,04/07/2016 06:00:08 PM,04/07/2016 06:00:26 PM,04/07/2016 06:09:14 PM,04/07/2016 06:25:26 PM,04/07/2016 06:43:57 PM,Code 2 Transport,04/07/2016 07:31:07 PM,2300 Block of 44TH AV,San Francisco,94116,B08,18,7644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7427965808116, -122.502611747737)",160983039-77 -141850917,73,14063970,Medical Incident,07/04/2014,07/04/2014,07/04/2014 09:59:44 AM,07/04/2014 10:00:54 AM,07/04/2014 10:03:14 AM,07/04/2014 10:03:14 AM,07/04/2014 10:08:03 AM,04/25/2016 01:16:24 PM,04/25/2016 01:16:24 PM,Medical Examiner,07/04/2014 10:33:31 AM,1600 Block of 43RD AVE,San Francisco,94122,B08,23,7651,E,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7558907938511, -122.502453384004)",141850917-73 -161001661,50,16039773,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:19:59 PM,04/09/2016 01:22:11 PM,04/09/2016 01:22:31 PM,04/09/2016 01:22:39 PM,04/09/2016 01:26:29 PM,04/09/2016 01:54:54 PM,04/09/2016 02:02:34 PM,Code 2 Transport,04/09/2016 03:06:24 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",161001661-50 -151201993,79,15045407,Medical Incident,04/30/2015,04/30/2015,04/30/2015 01:40:22 PM,04/30/2015 01:40:39 PM,04/30/2015 01:40:56 PM,04/30/2015 01:41:32 PM,04/30/2015 01:50:54 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,No Merit,04/30/2015 01:58:08 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",151201993-79 -153160847,E03,15121336,Medical Incident,11/12/2015,11/12/2015,11/12/2015 08:45:57 AM,11/12/2015 08:49:54 AM,11/12/2015 08:50:39 AM,11/12/2015 08:51:46 AM,11/12/2015 08:59:15 AM,04/25/2016 01:07:15 PM,04/25/2016 01:07:15 PM,Code 2 Transport,11/12/2015 09:07:25 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",153160847-E03 -143233433,T03,14114530,Structure Fire,11/19/2014,11/19/2014,11/19/2014 09:48:38 PM,11/19/2014 09:49:44 PM,11/19/2014 09:50:18 PM,11/19/2014 09:51:14 PM,11/19/2014 09:55:04 PM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Code 2 Transport,11/19/2014 10:44:51 PM,1700 Block of FILBERT ST,San Francisco,94123,B04,16,3245,3,3,3,false,Fire,1,TRUCK,5,4,2,Marina,"(37.7990163402564, -122.428290722411)",143233433-T03 -151334109,T03,15050662,Structure Fire,05/13/2015,05/13/2015,05/13/2015 10:21:34 PM,05/13/2015 10:21:45 PM,05/13/2015 10:22:00 PM,05/13/2015 10:22:48 PM,05/13/2015 10:25:31 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Fire,05/13/2015 10:26:33 PM,1200 Block of SACRAMENTO ST,San Francisco,94108,B01,41,1465,3,3,3,false,Alarm,1,TRUCK,6,1,3,Nob Hill,"(37.7925017052559, -122.413482452376)",151334109-T03 -143551574,61,14126893,Medical Incident,12/21/2014,12/21/2014,12/21/2014 11:53:22 AM,12/21/2014 11:53:22 AM,12/21/2014 11:54:51 AM,12/21/2014 11:55:22 AM,12/21/2014 12:08:25 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Cancelled,12/21/2014 12:12:25 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",143551574-61 -150871330,56,15033186,Medical Incident,03/28/2015,03/28/2015,03/28/2015 10:57:23 AM,03/28/2015 10:58:57 AM,03/28/2015 10:59:27 AM,03/28/2015 11:00:01 AM,03/28/2015 11:15:18 AM,03/28/2015 11:29:47 AM,03/28/2015 11:46:04 AM,Code 2 Transport,03/28/2015 12:13:32 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",150871330-56 -141730051,E01,14059530,Medical Incident,06/22/2014,06/21/2014,06/22/2014 12:17:56 AM,06/22/2014 12:18:29 AM,06/22/2014 12:20:06 AM,06/22/2014 12:21:55 AM,04/25/2016 01:16:38 PM,04/25/2016 01:16:38 PM,04/25/2016 01:16:38 PM,Cancelled,06/22/2014 12:24:36 AM,0 Block of SUMNER ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7763307297964, -122.410457019853)",141730051-E01 -150893197,T17,15034080,Structure Fire,03/30/2015,03/30/2015,03/30/2015 08:43:01 PM,03/30/2015 08:43:12 PM,03/30/2015 08:43:25 PM,03/30/2015 08:43:39 PM,03/30/2015 08:45:18 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Fire,03/30/2015 08:45:32 PM,ARLETA AV/ALPHA ST,San Francisco,94134,B10,44,6267,3,3,3,false,Alarm,1,TRUCK,1,9,10,Visitacion Valley,"(37.713215734393, -122.404842431928)",150893197-T17 -141373812,E35,14047109,Medical Incident,05/17/2014,05/17/2014,05/17/2014 11:35:47 PM,05/17/2014 11:37:46 PM,05/17/2014 11:40:24 PM,05/17/2014 11:42:00 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,Code 2 Transport,05/17/2014 11:44:17 PM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",141373812-E35 -141401032,73,14047937,Medical Incident,05/20/2014,05/20/2014,05/20/2014 09:53:00 AM,05/20/2014 09:54:25 AM,05/20/2014 09:54:42 AM,05/20/2014 09:54:56 AM,05/20/2014 10:01:45 AM,05/20/2014 10:28:05 AM,04/25/2016 01:17:13 PM,Code 2 Transport,05/20/2014 11:15:07 AM,3900 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",141401032-73 -160941856,KM05,16037264,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:14:34 PM,04/03/2016 01:15:47 PM,04/03/2016 01:16:19 PM,04/03/2016 01:16:51 PM,04/03/2016 01:24:05 PM,04/03/2016 01:47:02 PM,04/03/2016 02:10:49 PM,Code 2 Transport,04/03/2016 02:41:55 PM,300 Block of RICHLAND AV,San Francisco,94110,B06,32,5644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Bernal Heights,"(37.7356359705253, -122.418465889447)",160941856-KM05 -160973487,88,16038594,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:13:13 PM,04/06/2016 06:13:13 PM,04/06/2016 06:15:31 PM,04/06/2016 06:15:40 PM,04/06/2016 06:25:26 PM,04/06/2016 06:43:25 PM,04/06/2016 06:52:33 PM,Code 2 Transport,04/06/2016 07:24:53 PM,1300 Block of 20TH AVE,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7625809452391, -122.478195483155)",160973487-88 -142771689,E13,14097367,Alarms,10/04/2014,10/04/2014,10/04/2014 11:53:17 AM,10/04/2014 11:54:27 AM,10/04/2014 11:54:40 AM,10/04/2014 11:55:15 AM,10/04/2014 11:57:17 AM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Fire,10/04/2014 12:05:51 PM,0 Block of SANSOME ST,San Francisco,94104,B01,13,1164,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",142771689-E13 -160960044,71,16037847,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:21:12 AM,04/05/2016 12:21:37 AM,04/05/2016 12:21:55 AM,04/05/2016 12:22:03 AM,04/05/2016 12:25:16 AM,04/05/2016 12:49:49 AM,04/05/2016 01:00:50 AM,Code 2 Transport,04/05/2016 01:36:08 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160960044-71 -160950418,AM02,16037520,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:58:01 AM,04/04/2016 05:58:49 AM,04/04/2016 05:59:26 AM,04/04/2016 06:00:04 AM,04/04/2016 06:06:19 AM,04/04/2016 06:22:55 AM,04/04/2016 06:42:06 AM,Code 2 Transport,04/04/2016 07:00:11 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160950418-AM02 -142202943,E29,14076459,Medical Incident,08/08/2014,08/08/2014,08/08/2014 06:22:21 PM,08/08/2014 06:23:29 PM,08/08/2014 06:23:53 PM,08/08/2014 06:25:19 PM,08/08/2014 06:28:03 PM,04/25/2016 01:15:46 PM,04/25/2016 01:15:46 PM,Code 2 Transport,08/08/2014 06:35:18 PM,400 Block of 10TH ST,San Francisco,94103,B02,29,2345,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7709248562482, -122.410555957263)",142202943-E29 -142832834,B03,14099769,Structure Fire,10/10/2014,10/10/2014,10/10/2014 06:22:26 PM,10/10/2014 06:23:12 PM,10/10/2014 06:24:23 PM,10/10/2014 06:24:33 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Fire,10/10/2014 06:30:18 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,3,3,3,false,Alarm,1,CHIEF,9,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",142832834-B03 -161003445,62,16039974,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:34:10 PM,04/09/2016 10:34:10 PM,04/09/2016 10:36:34 PM,04/09/2016 10:36:40 PM,04/09/2016 10:45:53 PM,04/09/2016 11:03:11 PM,04/09/2016 11:18:01 PM,Code 2 Transport,04/09/2016 11:50:31 PM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",161003445-62 -152153041,T09,15081947,Structure Fire,08/03/2015,08/03/2015,08/03/2015 05:49:24 PM,08/03/2015 05:49:24 PM,08/03/2015 05:49:30 PM,08/03/2015 05:51:18 PM,08/03/2015 05:52:18 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Fire,08/03/2015 05:52:55 PM,QUINT ST/JERROLD AV,San Francisco,94124,B10,9,6443,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7409009621796, -122.393114979107)",152153041-T09 -152602013,KM12,15099391,Medical Incident,09/17/2015,09/17/2015,09/17/2015 01:33:08 PM,09/17/2015 01:34:58 PM,09/17/2015 01:44:21 PM,09/17/2015 01:44:21 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Patient Declined Transport,09/17/2015 01:46:15 PM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,2,2,2,false,Non Life-threatening,1,PRIVATE,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",152602013-KM12 -143620933,E37,14129450,Medical Incident,12/28/2014,12/28/2014,12/28/2014 09:33:37 AM,12/28/2014 09:35:38 AM,12/28/2014 09:36:33 AM,12/28/2014 09:38:44 AM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Code 2 Transport,12/28/2014 09:49:54 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",143620933-E37 -142351667,E02,14081706,Structure Fire,08/23/2014,08/23/2014,08/23/2014 12:48:58 PM,08/23/2014 12:49:37 PM,08/23/2014 12:52:55 PM,08/23/2014 12:53:44 PM,08/23/2014 12:56:13 PM,04/25/2016 01:15:30 PM,04/25/2016 01:15:30 PM,Fire,08/23/2014 01:07:10 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,4,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",142351667-E02 -143181743,AM08,14112629,Medical Incident,11/14/2014,11/14/2014,11/14/2014 12:49:04 PM,11/14/2014 12:49:48 PM,11/14/2014 12:50:36 PM,11/14/2014 12:52:04 PM,11/14/2014 01:03:46 PM,11/14/2014 01:15:10 PM,11/14/2014 01:46:47 PM,Code 2 Transport,11/14/2014 02:20:00 PM,1400 Block of VAN DYKE AVE,San Francisco,94124,B10,17,6651,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7276164365297, -122.389570152393)",143181743-AM08 -152083364,B01,15079395,Outside Fire,07/27/2015,07/27/2015,07/27/2015 07:48:09 PM,07/27/2015 07:48:09 PM,07/27/2015 07:49:00 PM,07/27/2015 07:50:22 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/27/2015 07:53:23 PM,2000 Block of KEARNY ST,San Francisco,94133,B01,28,937,3,3,3,false,Alarm,1,CHIEF,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",152083364-B01 -160922178,E19,16036484,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:11:13 PM,04/01/2016 03:11:44 PM,04/01/2016 03:12:52 PM,04/01/2016 03:14:05 PM,04/01/2016 03:16:04 PM,04/01/2016 03:38:11 PM,04/01/2016 04:06:12 PM,Code 3 Transport,04/01/2016 04:26:49 PM,300 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8731,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7310536423783, -122.476383904851)",160922178-E19 -161001316,62,16039725,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:20:34 AM,04/09/2016 11:23:07 AM,04/09/2016 11:24:44 AM,04/09/2016 11:24:52 AM,04/09/2016 11:46:00 AM,04/09/2016 12:06:31 PM,04/09/2016 12:27:30 PM,Code 3 Transport,04/09/2016 12:55:49 PM,2400 Block of 40TH AVE,San Francisco,94116,B08,18,7636,2,E,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7411202245251, -122.498193339522)",161001316-62 -160942023,KM06,16037279,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:05:03 PM,04/03/2016 02:05:03 PM,04/03/2016 02:05:27 PM,04/03/2016 02:06:07 PM,04/03/2016 02:11:14 PM,04/03/2016 02:38:34 PM,04/03/2016 02:47:43 PM,Code 2 Transport,04/03/2016 03:40:50 PM,1300 Block of GREENWICH ST,San Francisco,94109,B01,16,3132,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Russian Hill,"(37.8007832193619, -122.421899178198)",160942023-KM06 -160991671,77,16039292,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:59:35 PM,04/08/2016 01:00:36 PM,04/08/2016 01:00:59 PM,04/08/2016 01:01:12 PM,04/08/2016 01:04:06 PM,04/08/2016 01:18:32 PM,04/08/2016 01:26:44 PM,Code 2 Transport,04/08/2016 02:02:44 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160991671-77 -160953563,82,16037783,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:22:56 PM,04/04/2016 08:22:56 PM,04/04/2016 08:22:56 PM,04/04/2016 08:22:56 PM,04/04/2016 08:22:56 PM,04/04/2016 08:40:44 PM,04/04/2016 08:53:24 PM,Code 2 Transport,04/04/2016 09:39:05 PM,3800 Block of 3RD ST,San Francisco,94124,B10,25,6457,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7422681434531, -122.387936728644)",160953563-82 -153464410,61,15133462,Medical Incident,12/12/2015,12/12/2015,12/12/2015 11:34:00 PM,12/12/2015 11:35:55 PM,12/12/2015 11:36:44 PM,12/12/2015 11:40:42 PM,12/12/2015 11:45:06 PM,12/12/2015 11:59:09 PM,12/13/2015 12:06:37 AM,Code 2 Transport,12/13/2015 12:42:11 AM,900 Block of MARKET ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",153464410-61 -160921838,89,16036453,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:38:59 PM,04/01/2016 01:41:26 PM,04/01/2016 01:42:20 PM,04/01/2016 01:42:36 PM,04/01/2016 01:56:37 PM,04/01/2016 02:27:22 PM,04/01/2016 02:58:42 PM,Code 2 Transport,04/01/2016 03:30:55 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160921838-89 -142433675,T08,14084841,Alarms,08/31/2014,08/31/2014,08/31/2014 11:41:17 PM,08/31/2014 11:42:23 PM,08/31/2014 11:43:48 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Fire,08/31/2014 11:45:32 PM,1100 Block of MISSION ST,San Francisco,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,4,2,6,South of Market,"(37.7785895740312, -122.411626152299)",142433675-T08 -151193045,82,15045121,Medical Incident,04/29/2015,04/29/2015,04/29/2015 05:53:39 PM,04/29/2015 05:54:49 PM,04/29/2015 05:59:38 PM,04/29/2015 05:59:38 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,No Merit,04/29/2015 06:05:19 PM,700 Block of 2ND ST,San Francisco,94107,B03,8,2154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,5,3,6,Mission Bay,"(37.78019523865, -122.390107968661)",151193045-82 -142821394,E20,14099234,Transfer,10/09/2014,10/09/2014,10/09/2014 11:42:43 AM,10/09/2014 11:42:43 AM,10/09/2014 11:43:13 AM,10/09/2014 11:44:40 AM,10/09/2014 11:46:51 AM,04/25/2016 01:14:39 PM,04/25/2016 01:14:39 PM,No Merit,10/09/2014 11:58:58 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",142821394-E20 -151242595,E07,15047080,Alarms,05/04/2015,05/04/2015,05/04/2015 05:13:24 PM,05/04/2015 05:14:45 PM,05/04/2015 05:15:25 PM,05/04/2015 05:16:47 PM,05/04/2015 05:18:36 PM,04/25/2016 01:10:47 PM,04/25/2016 01:10:47 PM,Fire,05/04/2015 05:20:52 PM,2400 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7580927746489, -122.414684745421)",151242595-E07 -143542217,B02,14126520,Alarms,12/20/2014,12/20/2014,12/20/2014 12:23:27 PM,12/20/2014 12:25:49 PM,12/20/2014 12:26:05 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Fire,12/20/2014 12:27:09 PM,600 Block of SCOTT ST,San Francisco,94117,B05,21,4136,3,3,3,false,Alarm,1,CHIEF,2,5,5,Hayes Valley,"(37.7756631447471, -122.436291871367)",143542217-B02 -161000514,83,16039624,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:23:15 AM,04/09/2016 04:24:58 AM,04/09/2016 04:25:14 AM,04/09/2016 04:25:37 AM,04/09/2016 04:30:30 AM,04/09/2016 04:47:20 AM,04/09/2016 05:13:35 AM,Code 2 Transport,04/09/2016 05:27:30 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",161000514-83 -143451437,70,14122801,Medical Incident,12/11/2014,12/11/2014,12/11/2014 10:34:02 AM,12/11/2014 10:34:46 AM,12/11/2014 10:35:05 AM,12/11/2014 10:35:30 AM,12/11/2014 10:40:21 AM,12/11/2014 10:52:48 AM,12/11/2014 11:06:41 AM,Code 2 Transport,12/11/2014 12:20:33 PM,1600 Block of QUESADA AVE,San Francisco,94124,B10,17,6535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7327119317696, -122.390462761272)",143451437-70 -151162165,E13,15043877,Medical Incident,04/26/2015,04/26/2015,04/26/2015 03:38:16 PM,04/26/2015 03:40:04 PM,04/26/2015 03:40:20 PM,04/26/2015 03:41:22 PM,04/26/2015 03:58:15 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Code 2 Transport,04/26/2015 04:03:09 PM,700 Block of KEARNY ST,San Francisco,94111,B01,13,1245,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",151162165-E13 -141433389,84,14049237,Medical Incident,05/23/2014,05/23/2014,05/23/2014 09:34:37 PM,05/23/2014 09:35:35 PM,05/23/2014 09:36:33 PM,05/23/2014 09:36:45 PM,05/23/2014 09:48:25 PM,05/23/2014 10:08:48 PM,05/23/2014 10:25:44 PM,Code 2 Transport,05/23/2014 10:51:53 PM,NORTH STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",141433389-84 -142230555,E24,14077299,Medical Incident,08/11/2014,08/10/2014,08/11/2014 07:21:45 AM,08/11/2014 07:23:15 AM,08/11/2014 07:23:48 AM,08/11/2014 07:25:27 AM,08/11/2014 07:28:39 AM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,No Merit,08/11/2014 07:31:10 AM,22ND ST/CASTRO ST,San Francisco,94114,B06,24,5466,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7544940096449, -122.43439413561)",142230555-E24 -151312179,64,15049752,Medical Incident,05/11/2015,05/11/2015,05/11/2015 02:48:56 PM,05/11/2015 02:50:56 PM,05/11/2015 03:01:33 PM,05/11/2015 03:01:49 PM,05/11/2015 03:17:02 PM,05/11/2015 03:24:42 PM,05/11/2015 03:47:29 PM,Code 2 Transport,05/11/2015 04:25:13 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7799892619986, -122.407376463936)",151312179-64 -160931383,65,16036821,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:23:20 AM,04/02/2016 11:25:33 AM,04/02/2016 11:52:43 AM,04/02/2016 11:53:28 AM,04/02/2016 12:01:45 PM,04/02/2016 12:36:11 PM,04/02/2016 01:00:18 PM,Code 2 Transport,04/02/2016 01:28:06 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160931383-65 -161002496,68,16039863,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:41:36 PM,04/09/2016 05:43:57 PM,04/09/2016 05:44:25 PM,04/09/2016 05:44:53 PM,04/09/2016 05:53:06 PM,04/09/2016 06:13:04 PM,04/09/2016 06:29:28 PM,Code 2 Transport,04/09/2016 07:04:23 PM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",161002496-68 -143641467,87,14130179,Medical Incident,12/30/2014,12/30/2014,12/30/2014 12:24:14 PM,12/30/2014 12:25:02 PM,12/30/2014 12:28:04 PM,12/30/2014 12:29:41 PM,12/30/2014 12:29:41 PM,12/30/2014 12:55:13 PM,12/30/2014 01:22:35 PM,Code 2 Transport,12/30/2014 01:58:33 PM,2300 Block of 43RD AVE,San Francisco,94116,B08,18,7644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7428445256261, -122.501538737612)",143641467-87 -142932859,T01,14103461,Alarms,10/20/2014,10/20/2014,10/20/2014 06:39:28 PM,10/20/2014 06:41:11 PM,10/20/2014 06:41:35 PM,10/20/2014 06:43:15 PM,10/20/2014 06:45:13 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 06:52:23 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",142932859-T01 -143232199,AM16,14114420,Medical Incident,11/19/2014,11/19/2014,11/19/2014 04:10:20 PM,11/19/2014 04:10:20 PM,11/19/2014 04:10:49 PM,11/19/2014 04:15:11 PM,11/19/2014 04:15:22 PM,11/19/2014 04:33:48 PM,11/19/2014 04:47:18 PM,Code 2 Transport,11/19/2014 05:25:42 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7734563328786, -122.421591110968)",143232199-AM16 -160981589,71,16038890,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:36:11 AM,04/07/2016 11:37:09 AM,04/07/2016 11:37:37 AM,04/07/2016 11:37:51 AM,04/07/2016 11:46:21 AM,04/07/2016 12:16:48 PM,04/07/2016 12:47:55 PM,Code 2 Transport,04/07/2016 01:55:34 PM,3400 Block of VAN NESS AV,San Francisco,94123,B04,28,3143,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Russian Hill,"(37.8070858944911, -122.426067255404)",160981589-71 -150471897,KM04,15018290,Medical Incident,02/16/2015,02/16/2015,02/16/2015 01:27:32 PM,02/16/2015 01:27:32 PM,02/16/2015 01:36:40 PM,02/16/2015 01:39:51 PM,02/16/2015 01:50:21 PM,02/16/2015 02:00:24 PM,02/16/2015 02:13:42 PM,Code 2 Transport,02/16/2015 02:42:22 PM,MARKET ST/LARKIN ST,San Francisco,94103,B02,36,1646,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",150471897-KM04 -143040849,RC1,14107395,Medical Incident,10/31/2014,10/31/2014,10/31/2014 09:00:32 AM,10/31/2014 09:00:32 AM,10/31/2014 09:06:03 AM,10/31/2014 09:06:03 AM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,Code 2 Transport,10/31/2014 09:08:15 AM,MARKET ST/SUTTER ST,San Francisco,94104,B01,13,1164,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Financial District/South Beach,"(37.7902901603061, -122.400152471245)",143040849-RC1 -141270014,B09,14042907,Alarms,05/07/2014,05/06/2014,05/07/2014 12:57:09 AM,05/07/2014 12:58:08 AM,05/07/2014 12:58:18 AM,05/07/2014 01:00:55 AM,05/07/2014 01:03:46 AM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Fire,05/07/2014 01:12:31 AM,3900 Block of ALEMANY BLVD,SAN FRANCISCO,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,2,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",141270014-B09 -151553891,85,15059318,Medical Incident,06/04/2015,06/04/2015,06/04/2015 10:55:21 PM,06/04/2015 10:55:21 PM,06/04/2015 10:56:11 PM,06/04/2015 10:56:54 PM,06/04/2015 11:09:52 PM,06/04/2015 11:24:05 PM,06/04/2015 11:35:39 PM,Code 2 Transport,06/05/2015 12:03:11 AM,FELL ST/ASHBURY ST,San Francisco,94117,B05,21,4514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.772790452811, -122.447497243592)",151553891-85 -141200217,E01,14040570,Alarms,04/30/2014,04/30/2014,04/30/2014 02:08:10 PM,04/30/2014 02:09:27 PM,04/30/2014 02:10:24 PM,04/30/2014 02:10:24 PM,04/30/2014 02:11:55 PM,04/25/2016 01:17:36 PM,04/25/2016 01:17:36 PM,Fire,04/30/2014 02:17:00 PM,700 Block of MARKET ST,SAN FRANCISCO,94108,B03,1,1322,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",141200217-E01 -150101285,E38,15003907,Medical Incident,01/10/2015,01/10/2015,01/10/2015 11:14:07 AM,01/10/2015 11:14:53 AM,01/10/2015 11:15:35 AM,01/10/2015 11:16:30 AM,01/10/2015 11:17:45 AM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,Code 3 Transport,01/10/2015 11:32:11 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",150101285-E38 -151034034,55,15039164,Medical Incident,04/13/2015,04/13/2015,04/13/2015 11:35:43 PM,04/13/2015 11:38:06 PM,04/13/2015 11:40:19 PM,04/13/2015 11:40:30 PM,04/14/2015 12:09:37 AM,04/25/2016 01:11:11 PM,04/25/2016 01:11:11 PM,Unable to Locate,04/14/2015 12:09:54 AM,HARRIET ST/AHERN WY,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7763129803883, -122.403959383179)",151034034-55 -152823915,E41,15108443,Medical Incident,10/09/2015,10/09/2015,10/09/2015 10:12:04 PM,10/09/2015 10:12:39 PM,10/09/2015 10:12:55 PM,10/09/2015 10:13:47 PM,10/09/2015 10:15:00 PM,04/25/2016 01:07:52 PM,04/25/2016 01:07:52 PM,Code 2 Transport,10/09/2015 10:18:59 PM,HYDE ST/CALIFORNIA ST,San Francisco,94109,B04,41,1562,3,E,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",152823915-E41 -150842256,77,15032089,Medical Incident,03/25/2015,03/25/2015,03/25/2015 02:29:28 PM,03/25/2015 02:31:08 PM,03/25/2015 02:31:40 PM,03/25/2015 02:32:27 PM,03/25/2015 02:35:57 PM,03/25/2015 03:07:00 PM,03/25/2015 03:51:51 PM,Code 2 Transport,03/25/2015 04:29:01 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",150842256-77 -150654002,E03,15025022,Medical Incident,03/06/2015,03/06/2015,03/06/2015 09:36:31 PM,03/06/2015 09:36:49 PM,03/06/2015 09:39:47 PM,03/06/2015 09:40:23 PM,03/06/2015 09:41:31 PM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Code 2 Transport,03/06/2015 09:42:51 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",150654002-E03 -150403441,E07,15015755,Medical Incident,02/09/2015,02/09/2015,02/09/2015 08:35:27 PM,02/09/2015 08:36:28 PM,02/09/2015 08:36:50 PM,02/09/2015 08:37:28 PM,02/09/2015 08:39:53 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/09/2015 08:46:00 PM,2800 Block of FOLSOM ST,San Francisco,94110,B06,7,5526,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.751708669465, -122.413936942101)",150403441-E07 -142432160,72,14084693,Traffic Collision,08/31/2014,08/31/2014,08/31/2014 03:59:45 PM,08/31/2014 03:59:45 PM,08/31/2014 04:00:28 PM,08/31/2014 04:01:04 PM,08/31/2014 04:05:45 PM,08/31/2014 04:18:19 PM,08/31/2014 04:28:16 PM,Code 2 Transport,08/31/2014 04:54:38 PM,14TH ST/WOODWARD ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682256253701, -122.420776616009)",142432160-72 -151571257,E24,15059886,Other,06/06/2015,06/06/2015,06/06/2015 10:46:08 AM,06/06/2015 10:46:08 AM,06/06/2015 10:46:08 AM,06/06/2015 10:46:08 AM,06/06/2015 10:46:08 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Fire,06/06/2015 11:31:58 AM,DANVERS ST/MARKET ST,San Francisco,94114,B06,24,5413,3,3,3,false,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7605092104224, -122.443517046069)",151571257-E24 -142461947,E07,14085690,Administrative,09/03/2014,09/03/2014,09/03/2014 01:21:09 PM,09/03/2014 01:21:17 PM,09/03/2014 01:26:31 PM,09/03/2014 01:27:15 PM,09/03/2014 01:27:15 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,Fire,09/03/2014 01:27:23 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",142461947-E07 -141710282,88,14058937,Medical Incident,06/20/2014,06/19/2014,06/20/2014 02:48:25 AM,06/20/2014 02:50:47 AM,06/20/2014 02:51:05 AM,06/20/2014 02:51:15 AM,06/20/2014 02:59:52 AM,06/20/2014 03:19:46 AM,06/20/2014 03:35:00 AM,Code 2 Transport,06/20/2014 04:22:30 AM,500 Block of BLANKEN AVE,San Francisco,94134,B10,44,6273,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7110441572788, -122.396932398875)",141710282-88 -160960808,AM08,16037923,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:45:42 AM,04/05/2016 08:47:12 AM,04/05/2016 08:47:28 AM,04/05/2016 08:48:03 AM,04/05/2016 08:48:03 AM,04/05/2016 09:25:28 AM,04/05/2016 09:51:53 AM,Code 2 Transport,04/05/2016 10:28:40 AM,100 Block of LEESE ST,San Francisco,94110,B06,32,5632,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.735541540271, -122.422981511864)",160960808-AM08 -151460572,63,15055423,Medical Incident,05/26/2015,05/25/2015,05/26/2015 07:35:39 AM,05/26/2015 07:37:29 AM,05/26/2015 07:37:37 AM,05/26/2015 07:37:47 AM,05/26/2015 07:45:39 AM,05/26/2015 07:55:30 AM,05/26/2015 08:23:38 AM,Code 2 Transport,05/26/2015 08:51:34 AM,2200 Block of NORIEGA ST,San Francisco,94122,B08,18,7515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7536898844301, -122.487719711365)",151460572-63 -142692189,E18,14094324,Medical Incident,09/26/2014,09/26/2014,09/26/2014 02:34:39 PM,09/26/2014 02:35:33 PM,09/26/2014 02:35:44 PM,09/26/2014 02:37:04 PM,09/26/2014 02:37:04 PM,09/26/2014 02:59:19 PM,09/26/2014 03:20:28 PM,Code 3 Transport,09/26/2014 03:26:19 PM,2300 Block of 38TH AVE,San Francisco,94116,B08,18,7621,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.743089809039, -122.496045390903)",142692189-E18 -160952720,82,16037702,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:34:26 PM,04/04/2016 04:34:26 PM,04/04/2016 04:35:03 PM,04/04/2016 04:35:08 PM,04/04/2016 04:37:23 PM,04/04/2016 04:52:49 PM,04/04/2016 05:14:25 PM,Code 2 Transport,04/04/2016 05:40:58 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160952720-82 -160931147,KM11,16036788,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:09:25 AM,04/02/2016 10:10:00 AM,04/02/2016 10:12:03 AM,04/02/2016 10:12:38 AM,04/02/2016 10:19:30 AM,04/02/2016 10:35:28 AM,04/02/2016 10:48:30 AM,Code 2 Transport,04/02/2016 11:30:43 AM,500 Block of CLIPPER ST,San Francisco,94114,B06,11,5545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,8,Noe Valley,"(37.7486412460099, -122.437154038433)",160931147-KM11 -153482375,E36,15134143,Medical Incident,12/14/2015,12/14/2015,12/14/2015 03:41:12 PM,12/14/2015 03:42:14 PM,12/14/2015 03:42:45 PM,12/14/2015 03:42:57 PM,12/14/2015 03:44:33 PM,04/25/2016 01:06:38 PM,04/25/2016 01:06:38 PM,Code 2 Transport,12/14/2015 03:56:42 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",153482375-E36 -153220178,E43,15123698,Medical Incident,11/18/2015,11/17/2015,11/18/2015 02:07:17 AM,11/18/2015 02:11:56 AM,11/18/2015 02:13:07 AM,11/18/2015 02:15:21 AM,11/18/2015 02:17:22 AM,04/25/2016 01:07:08 PM,04/25/2016 01:07:08 PM,Patient Declined Transport,11/18/2015 02:37:01 AM,600 Block of ROLPH ST,San Francisco,94112,B09,43,6226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7115337740541, -122.432290776934)",153220178-E43 -160943783,70,16037466,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:40:39 PM,04/03/2016 11:42:14 PM,04/03/2016 11:42:25 PM,04/03/2016 11:44:07 PM,04/03/2016 11:57:26 PM,04/04/2016 12:11:23 AM,04/04/2016 12:14:02 AM,Code 2 Transport,04/04/2016 12:35:54 AM,0 Block of DASHIELL HAMMETT ST,San Francisco,94108,B01,2,1361,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7907312387799, -122.408032993171)",160943783-70 -142342424,T15,14081388,Vehicle Fire,08/22/2014,08/22/2014,08/22/2014 04:18:13 PM,08/22/2014 04:18:44 PM,08/22/2014 04:18:54 PM,08/22/2014 04:20:39 PM,08/22/2014 04:22:47 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 04:24:35 PM,800 Block of GENEVA AVE,San Francisco,94112,B09,43,6175,3,3,3,false,Fire,1,TRUCK,2,9,11,Outer Mission,"(37.7174664800469, -122.442071515409)",142342424-T15 -141343458,B03,14045890,Structure Fire,05/14/2014,05/14/2014,05/14/2014 07:27:18 PM,05/14/2014 07:29:01 PM,05/14/2014 07:33:28 PM,05/14/2014 07:33:55 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Code 2 Transport,05/14/2014 07:35:22 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Alarm,1,CHIEF,9,3,6,South of Market,"(37.7815374331217, -122.409518341416)",141343458-B03 -142712552,E09,14095114,Medical Incident,09/28/2014,09/28/2014,09/28/2014 05:32:22 PM,09/28/2014 05:33:49 PM,09/28/2014 05:36:21 PM,09/28/2014 05:38:32 PM,09/28/2014 05:55:48 PM,04/25/2016 01:14:51 PM,04/25/2016 01:14:51 PM,Code 2 Transport,09/28/2014 06:33:53 PM,0 Block of OSCEOLA LN,San Francisco,94124,B10,17,6637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",142712552-E09 -142951966,E43,14104048,Medical Incident,10/22/2014,10/22/2014,10/22/2014 02:06:34 PM,10/22/2014 02:07:54 PM,10/22/2014 02:11:26 PM,10/22/2014 02:12:37 PM,10/22/2014 02:14:23 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Code 2 Transport,10/22/2014 02:30:02 PM,800 Block of PRAGUE ST,San Francisco,94112,B09,43,622,2,3,3,true,Non Life-threatening,1,ENGINE,2,9,11,Excelsior,"(37.7104309664976, -122.434220514636)",142951966-E43 -152660273,E34,15101703,Medical Incident,09/23/2015,09/22/2015,09/23/2015 02:58:08 AM,09/23/2015 02:58:35 AM,09/23/2015 02:59:23 AM,09/23/2015 03:02:30 AM,09/23/2015 03:03:39 AM,04/25/2016 01:08:11 PM,04/25/2016 01:08:11 PM,Code 2 Transport,09/23/2015 03:21:26 AM,5600 Block of ANZA ST,San Francisco,94121,B07,34,7276,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7771231360845, -122.508698316635)",152660273-E34 -153380627,E25,15129954,Medical Incident,12/04/2015,12/03/2015,12/04/2015 07:28:02 AM,12/04/2015 07:28:21 AM,12/04/2015 07:28:54 AM,12/04/2015 07:30:36 AM,12/04/2015 07:33:47 AM,04/25/2016 01:06:50 PM,04/25/2016 01:06:50 PM,Code 2 Transport,12/04/2015 07:37:45 AM,1600 Block of LA SALLE AVE,San Francisco,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7373109218109, -122.390232962318)",153380627-E25 -153044314,B01,15116877,Alarms,10/31/2015,10/31/2015,10/31/2015 11:03:42 PM,10/31/2015 11:04:56 PM,10/31/2015 11:05:43 PM,10/31/2015 11:06:50 PM,10/31/2015 11:10:07 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,Fire,10/31/2015 11:15:34 PM,400 Block of KEARNY ST,San Francisco,94108,B01,13,1240,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7921556124727, -122.404387410062)",153044314-B01 -160971957,KM05,16038417,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:47:27 PM,04/06/2016 12:48:05 PM,04/06/2016 12:48:29 PM,04/06/2016 12:49:05 PM,04/06/2016 12:52:10 PM,04/06/2016 01:04:00 PM,04/06/2016 01:49:24 PM,Code 2 Transport,04/06/2016 01:49:31 PM,400 Block of 30TH AVE,San Francisco,94121,B07,14,722,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",160971957-KM05 -150801694,55,15030646,Medical Incident,03/21/2015,03/21/2015,03/21/2015 01:11:47 PM,03/21/2015 01:12:43 PM,03/21/2015 01:13:30 PM,03/21/2015 01:16:03 PM,03/21/2015 01:33:39 PM,03/21/2015 01:33:41 PM,03/21/2015 01:39:29 PM,Code 2 Transport,03/21/2015 02:16:19 PM,FULTON ST/HYDE ST,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",150801694-55 -151332779,E09,15050537,Outside Fire,05/13/2015,05/13/2015,05/13/2015 04:29:36 PM,05/13/2015 04:30:51 PM,05/13/2015 04:32:58 PM,05/13/2015 04:34:19 PM,05/13/2015 04:35:41 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Fire,05/13/2015 04:37:52 PM,CESAR CHAVEZ ST/VERMONT ST,San Francisco,94124,B10,9,6821,3,3,3,true,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7494784599942, -122.402866310476)",151332779-E09 -160993764,53,16039501,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:01:35 PM,04/08/2016 10:01:35 PM,04/08/2016 10:13:57 PM,04/08/2016 10:17:52 PM,04/08/2016 10:17:52 PM,04/08/2016 10:24:46 PM,04/08/2016 10:57:03 PM,Code 2 Transport,04/08/2016 11:19:25 PM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",160993764-53 -152172222,E03,15082638,Medical Incident,08/05/2015,08/05/2015,08/05/2015 02:37:13 PM,08/05/2015 02:38:55 PM,08/05/2015 02:39:18 PM,08/05/2015 02:40:49 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,04/25/2016 01:09:05 PM,No Merit,08/05/2015 02:42:29 PM,LARKIN ST/GROVE ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",152172222-E03 -153301469,E26,15127000,Medical Incident,11/26/2015,11/26/2015,11/26/2015 01:29:53 PM,11/26/2015 01:31:45 PM,11/26/2015 01:32:26 PM,11/26/2015 01:35:10 PM,11/26/2015 01:38:22 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 3 Transport,11/26/2015 01:46:58 PM,700 Block of HOLLY PARK CIR,San Francisco,94110,B06,32,5646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7374570862058, -122.421089139711)",153301469-E26 -151741666,63,15066381,Traffic Collision,06/23/2015,06/23/2015,06/23/2015 12:29:41 PM,06/23/2015 12:29:41 PM,06/23/2015 12:30:17 PM,06/23/2015 12:30:42 PM,06/23/2015 12:31:14 PM,06/23/2015 12:53:27 PM,06/23/2015 01:32:31 PM,Code 2 Transport,06/23/2015 01:56:41 PM,SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7257926850407, -122.442387189271)",151741666-63 -150831649,57,15031721,Traffic Collision,03/24/2015,03/24/2015,03/24/2015 12:42:22 PM,03/24/2015 12:42:22 PM,03/24/2015 12:42:29 PM,03/24/2015 12:42:44 PM,03/24/2015 12:52:38 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Patient Declined Transport,03/24/2015 01:21:21 PM,3800 Block of MARKET ST,San Francisco,94131,B06,24,5276,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Twin Peaks,"(37.7528119669252, -122.442792603258)",150831649-57 -152313545,T09,15088280,Vehicle Fire,08/19/2015,08/19/2015,08/19/2015 08:16:53 PM,08/19/2015 08:17:22 PM,08/19/2015 08:17:34 PM,08/19/2015 08:18:41 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,Fire,08/19/2015 08:20:38 PM,0 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,3,3,3,false,Fire,1,TRUCK,2,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",152313545-T09 -142561567,RC1,14089395,Medical Incident,09/13/2014,09/13/2014,09/13/2014 11:49:28 AM,09/13/2014 11:52:01 AM,09/13/2014 11:52:59 AM,09/13/2014 11:52:59 AM,09/13/2014 11:52:59 AM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/13/2014 12:08:27 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",142561567-RC1 -153101069,57,15119094,Medical Incident,11/06/2015,11/06/2015,11/06/2015 10:03:13 AM,11/06/2015 10:03:43 AM,11/06/2015 10:04:50 AM,11/06/2015 10:05:24 AM,11/06/2015 10:27:25 AM,11/06/2015 10:34:52 AM,11/06/2015 11:03:58 AM,Code 2 Transport,11/06/2015 11:33:02 AM,500 Block of LELAND AVE,San Francisco,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7147054321972, -122.41512332127)",153101069-57 -141762304,65,14060787,Medical Incident,06/25/2014,06/25/2014,06/25/2014 03:43:33 PM,06/25/2014 03:44:01 PM,06/25/2014 03:50:11 PM,06/25/2014 03:50:26 PM,06/25/2014 04:00:19 PM,06/25/2014 04:17:50 PM,06/25/2014 05:02:43 PM,Code 2 Transport,06/25/2014 05:30:34 PM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",141762304-65 -150593793,E28,15022737,Administrative,02/28/2015,02/28/2015,02/28/2015 11:13:19 PM,02/28/2015 11:14:10 PM,02/28/2015 11:14:39 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Fire,02/28/2015 11:16:35 PM,1800 Block of STOCKTON ST,San Francisco,94133,B01,28,1335,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8027782547729, -122.409586942281)",150593793-E28 -152430031,T01,15092524,Alarms,08/31/2015,08/30/2015,08/31/2015 12:10:35 AM,08/31/2015 12:12:05 AM,08/31/2015 12:12:24 AM,08/31/2015 12:13:53 AM,08/31/2015 12:17:38 AM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Fire,08/31/2015 12:22:50 AM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",152430031-T01 -141761086,89,14060682,Traffic Collision,06/25/2014,06/25/2014,06/25/2014 10:03:56 AM,06/25/2014 10:04:01 AM,06/25/2014 10:15:09 AM,06/25/2014 10:25:09 AM,06/25/2014 10:32:40 AM,06/25/2014 10:45:18 AM,06/25/2014 10:58:37 AM,Code 2 Transport,06/25/2014 12:25:50 PM,SUNNYDALE AV/BAYSHORE BL,San Francisco,94134,B10,44,6254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,7,9,10,Bayview Hunters Point,"(37.7088536077159, -122.405109455132)",141761086-89 -151292318,72,15049015,Medical Incident,05/09/2015,05/09/2015,05/09/2015 03:34:42 PM,05/09/2015 03:36:34 PM,05/09/2015 03:36:56 PM,05/09/2015 03:37:09 PM,05/09/2015 03:44:34 PM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Against Medical Advice,05/09/2015 04:26:33 PM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",151292318-72 -160930901,61,16036764,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:55:20 AM,04/02/2016 08:56:18 AM,04/02/2016 08:56:29 AM,04/02/2016 08:56:38 AM,04/02/2016 09:02:23 AM,04/02/2016 09:27:34 AM,04/02/2016 09:42:40 AM,Code 2 Transport,04/02/2016 10:21:32 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160930901-61 -150832445,E05,15031771,Medical Incident,03/24/2015,03/24/2015,03/24/2015 04:08:51 PM,03/24/2015 04:09:25 PM,03/24/2015 04:10:57 PM,03/24/2015 04:11:06 PM,03/24/2015 04:14:07 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/24/2015 04:24:41 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",150832445-E05 -142531221,E37,14088243,Medical Incident,09/10/2014,09/10/2014,09/10/2014 10:28:49 AM,09/10/2014 10:30:32 AM,09/10/2014 10:31:29 AM,09/10/2014 10:32:19 AM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,04/25/2016 01:15:11 PM,Gone on Arrival,09/10/2014 10:37:07 AM,25TH ST/POTRERO AV,San Francisco,94110,B10,9,2624,2,2,2,false,Non Life-threatening,1,ENGINE,3,10,9,Mission,"(37.7517262101212, -122.406219413558)",142531221-E37 -160974667,KM07,16038722,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:38:02 PM,04/06/2016 11:39:55 PM,04/06/2016 11:40:38 PM,04/06/2016 11:41:29 PM,04/06/2016 11:45:28 PM,04/06/2016 11:50:40 PM,04/07/2016 12:04:15 AM,Code 2 Transport,04/07/2016 12:41:48 AM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",160974667-KM07 -152962147,RS2,15113737,Traffic Collision,10/23/2015,10/23/2015,10/23/2015 02:41:43 PM,10/23/2015 02:43:40 PM,10/23/2015 02:44:57 PM,10/23/2015 02:45:43 PM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,Code 2 Transport,10/23/2015 02:50:58 PM,500 Block of ARBALLO DR,San Francisco,94132,B08,19,8583,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,8,7,Lakeshore,"(37.7169177956994, -122.483309155838)",152962147-RS2 -150541810,KM02,15020762,Medical Incident,02/23/2015,02/23/2015,02/23/2015 12:57:04 PM,02/23/2015 12:58:13 PM,02/23/2015 12:58:50 PM,02/23/2015 12:58:50 PM,02/23/2015 01:05:06 PM,02/23/2015 01:17:28 PM,02/23/2015 01:44:13 PM,Code 2 Transport,02/23/2015 02:05:48 PM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",150541810-KM02 -150761209,68,15029100,Medical Incident,03/17/2015,03/17/2015,03/17/2015 10:30:18 AM,03/17/2015 10:30:39 AM,03/17/2015 10:31:34 AM,03/17/2015 10:31:44 AM,03/17/2015 10:40:59 AM,03/17/2015 11:11:22 AM,03/17/2015 11:39:15 AM,Code 2 Transport,03/17/2015 12:14:03 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",150761209-68 -160931564,79,16036837,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:15:10 PM,04/02/2016 12:16:02 PM,04/02/2016 12:16:28 PM,04/02/2016 12:16:38 PM,04/02/2016 12:22:14 PM,04/02/2016 01:07:54 PM,04/02/2016 01:19:23 PM,Code 3 Transport,04/02/2016 01:52:55 PM,100 Block of GENEBERN WY,San Francisco,94112,B06,32,5641,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.733180521508, -122.424988633946)",160931564-79 -152791414,E35,15107018,Medical Incident,10/06/2015,10/06/2015,10/06/2015 11:25:32 AM,10/06/2015 11:26:21 AM,10/06/2015 11:27:49 AM,10/06/2015 11:27:49 AM,10/06/2015 11:30:47 AM,04/25/2016 01:07:56 PM,04/25/2016 01:07:56 PM,Against Medical Advice,10/06/2015 11:39:06 AM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7867008144662, -122.393633802417)",152791414-E35 -153342683,AM08,15128494,Medical Incident,11/30/2015,11/30/2015,11/30/2015 05:23:47 PM,11/30/2015 05:25:36 PM,11/30/2015 05:25:43 PM,11/30/2015 05:26:18 PM,11/30/2015 05:34:42 PM,11/30/2015 05:54:51 PM,11/30/2015 06:07:24 PM,Code 3 Transport,11/30/2015 06:54:10 PM,4400 Block of BALBOA ST,San Francisco,94121,B07,34,7273,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7753538886432, -122.506424798012)",153342683-AM08 -153211789,T08,15123431,Structure Fire,11/17/2015,11/17/2015,11/17/2015 12:35:10 PM,11/17/2015 12:35:36 PM,11/17/2015 12:36:09 PM,11/17/2015 12:37:27 PM,11/17/2015 12:39:46 PM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 12:59:24 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,false,Alarm,1,TRUCK,4,3,6,South of Market,"(37.7820387146172, -122.40232147638)",153211789-T08 -142681406,E03,14093896,,09/25/2014,09/25/2014,09/25/2014 12:00:00 PM,09/25/2014 12:01:00 PM,09/25/2014 12:05:00 PM,09/25/2014 12:06:00 PM,09/25/2014 12:09:00 PM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,SFPD,09/25/2014 12:16:00 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",142681406-E03 -153151625,63,15121033,Medical Incident,11/11/2015,11/11/2015,11/11/2015 12:32:15 PM,11/11/2015 12:32:38 PM,11/11/2015 12:34:38 PM,11/11/2015 12:34:48 PM,11/11/2015 12:47:32 PM,11/11/2015 12:50:40 PM,11/11/2015 01:12:38 PM,Code 2 Transport,11/11/2015 01:54:57 PM,200 Block of ALLISON ST,San Francisco,94112,B09,43,6221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7117773963729, -122.441441540963)",153151625-63 -150090282,E06,15003417,Medical Incident,01/09/2015,01/08/2015,01/09/2015 02:52:52 AM,01/09/2015 02:53:36 AM,01/09/2015 02:53:54 AM,01/09/2015 02:56:01 AM,01/09/2015 02:58:10 AM,04/25/2016 01:12:56 PM,04/25/2016 01:12:56 PM,Code 2 Transport,01/09/2015 03:01:11 AM,300 Block of HAIGHT ST,San Francisco,94102,B02,6,3524,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7724746185561, -122.427991225235)",150090282-E06 -152880578,T18,15110547,Outside Fire,10/15/2015,10/14/2015,10/15/2015 06:58:57 AM,10/15/2015 07:01:28 AM,10/15/2015 07:02:20 AM,10/15/2015 07:04:30 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Fire,10/15/2015 07:09:39 AM,1300 Block of MARTIN LUTHER KING JR DR,San Francisco,94122,B08,22,7452,3,3,3,false,Fire,1,TRUCK,3,7,1,Golden Gate Park,"(37.7664824713851, -122.48669126531)",152880578-T18 -160943686,AM16,16037457,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:04:08 PM,04/03/2016 11:05:04 PM,04/03/2016 11:05:14 PM,04/03/2016 11:05:55 PM,04/03/2016 11:12:26 PM,04/03/2016 11:45:49 PM,04/03/2016 11:57:00 PM,Code 2 Transport,04/04/2016 12:30:13 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160943686-AM16 -150902601,KM10,15034348,Medical Incident,03/31/2015,03/31/2015,03/31/2015 04:51:43 PM,03/31/2015 04:55:26 PM,03/31/2015 04:55:43 PM,03/31/2015 04:56:17 PM,03/31/2015 05:05:11 PM,03/31/2015 05:19:01 PM,03/31/2015 05:49:22 PM,Code 2 Transport,03/31/2015 06:36:38 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",150902601-KM10 -151212914,RS1,15045980,Water Rescue,05/01/2015,05/01/2015,05/01/2015 05:56:45 PM,05/01/2015 05:58:25 PM,05/01/2015 06:00:31 PM,05/01/2015 06:01:06 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,04/25/2016 01:10:50 PM,Fire,05/01/2015 06:26:35 PM,900 Block of MARINE DR,Presidio,94129,B99,51,4628,3,3,3,false,Fire,1,RESCUE SQUAD,11,7,2,Presidio,"(37.8089767888005, -122.47460956271)",151212914-RS1 -161000385,78,16039606,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:49:16 AM,04/09/2016 02:51:25 AM,04/09/2016 02:53:59 AM,04/09/2016 02:54:11 AM,04/09/2016 03:07:30 AM,04/09/2016 03:38:05 AM,04/09/2016 03:55:04 AM,Code 2 Transport,04/09/2016 04:21:59 AM,2100 Block of GENEVA AVE,San Francisco,94134,B09,43,6246,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7085351675634, -122.420460511784)",161000385-78 -141831206,T03,14063257,Alarms,07/02/2014,07/02/2014,07/02/2014 10:45:32 AM,07/02/2014 10:47:40 AM,07/02/2014 10:48:03 AM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Other,07/02/2014 10:48:47 AM,400 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7898930161582, -122.407112815209)",141831206-T03 -160963631,79,16038169,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:12:35 PM,04/05/2016 08:12:35 PM,04/05/2016 08:12:42 PM,04/05/2016 08:12:59 PM,04/05/2016 08:16:30 PM,04/05/2016 08:36:54 PM,04/05/2016 08:45:49 PM,Code 2 Transport,04/05/2016 09:33:32 PM,GEARY BL/8TH AV,San Francisco,94118,B07,31,7135,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7809245879397, -122.466426902852)",160963631-79 -151410202,E01,15053410,Alarms,05/21/2015,05/20/2015,05/21/2015 01:56:41 AM,05/21/2015 01:58:41 AM,05/21/2015 02:00:09 AM,05/21/2015 02:03:00 AM,05/21/2015 02:05:11 AM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Fire,05/21/2015 02:22:54 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",151410202-E01 -142072643,E03,14071790,Medical Incident,07/26/2014,07/26/2014,07/26/2014 05:47:46 PM,07/26/2014 05:48:18 PM,07/26/2014 05:51:42 PM,07/26/2014 05:51:55 PM,07/26/2014 05:55:45 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,Code 2 Transport,07/26/2014 06:27:19 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",142072643-E03 -141250241,E03,14042385,Medical Incident,05/05/2014,05/05/2014,05/05/2014 02:08:26 PM,05/05/2014 02:09:05 PM,05/05/2014 02:09:30 PM,05/05/2014 02:10:00 PM,05/05/2014 02:12:13 PM,04/25/2016 01:17:30 PM,04/25/2016 01:17:30 PM,Code 2 Transport,05/05/2014 02:23:40 PM,600 Block of EDDY ST,SAN FRANCISCO,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",141250241-E03 -160980053,65,16038729,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:24:55 AM,04/07/2016 12:26:02 AM,04/07/2016 12:26:19 AM,04/07/2016 12:26:29 AM,04/07/2016 12:34:25 AM,04/07/2016 01:03:11 AM,04/07/2016 02:20:01 AM,Code 2 Transport,04/07/2016 02:29:58 AM,600 Block of 48TH AVE,San Francisco,94121,B07,34,7312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.77563546489, -122.509194725072)",160980053-65 -151993920,E34,15076039,Medical Incident,07/18/2015,07/18/2015,07/18/2015 10:48:16 PM,07/18/2015 10:49:04 PM,07/18/2015 10:49:40 PM,07/18/2015 10:50:46 PM,07/18/2015 10:53:35 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Code 2 Transport,07/18/2015 11:18:55 PM,800 Block of 41ST AVE,San Francisco,94121,B07,34,7262,2,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7727168918088, -122.501464297104)",151993920-E34 -160921357,KM12,16036404,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:23:12 AM,04/01/2016 11:25:28 AM,04/01/2016 11:26:09 AM,04/01/2016 11:26:47 AM,04/01/2016 11:35:02 AM,04/01/2016 11:58:54 AM,04/01/2016 12:12:56 PM,Code 2 Transport,04/01/2016 12:58:05 PM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160921357-KM12 -160993878,58,16039512,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:39:45 PM,04/08/2016 10:39:57 PM,04/08/2016 10:52:31 PM,04/08/2016 10:52:31 PM,04/08/2016 11:08:08 PM,04/08/2016 11:13:21 PM,04/08/2016 11:34:46 PM,Code 2 Transport,04/09/2016 12:12:40 AM,100 Block of ELMIRA ST,San Francisco,94124,B10,42,6364,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735315131937, -122.403595624573)",160993878-58 -160943123,76,16037392,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:34:23 PM,04/03/2016 07:37:04 PM,04/03/2016 07:37:14 PM,04/03/2016 07:38:16 PM,04/03/2016 07:53:07 PM,04/03/2016 08:28:06 PM,04/03/2016 08:36:17 PM,Code 2 Transport,04/03/2016 09:21:57 PM,0 Block of SOLA AVE,San Francisco,94116,B08,39,8624,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7479640067054, -122.460361522553)",160943123-76 -153072883,E34,15118077,Medical Incident,11/03/2015,11/03/2015,11/03/2015 04:46:03 PM,11/03/2015 04:47:14 PM,11/03/2015 04:47:44 PM,11/03/2015 04:48:44 PM,11/03/2015 04:51:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Code 2 Transport,11/03/2015 05:07:59 PM,4300 Block of BALBOA ST,San Francisco,94121,B07,34,7273,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7752931917775, -122.505346299871)",153072883-E34 -150550122,E11,15020979,Medical Incident,02/24/2015,02/23/2015,02/24/2015 01:01:54 AM,02/24/2015 01:04:28 AM,02/24/2015 01:04:42 AM,02/24/2015 01:06:05 AM,02/24/2015 01:08:15 AM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,Patient Declined Transport,02/24/2015 01:16:46 AM,SAN JOSE AV/28TH ST,San Francisco,94110,B06,11,5577,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7455788145196, -122.422218292303)",150550122-E11 -151423394,B01,15054143,Structure Fire,05/22/2015,05/22/2015,05/22/2015 07:25:55 PM,05/22/2015 07:25:55 PM,05/22/2015 07:26:11 PM,05/22/2015 07:27:28 PM,05/22/2015 07:29:21 PM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Fire,05/22/2015 07:34:30 PM,800 Block of BROADWAY,San Francisco,94133,B01,2,134,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7973761566581, -122.411122316679)",151423394-B01 -151551516,63,15059069,Medical Incident,06/04/2015,06/04/2015,06/04/2015 11:39:47 AM,06/04/2015 11:40:19 AM,06/04/2015 11:48:09 AM,06/04/2015 11:48:09 AM,06/04/2015 11:59:57 AM,06/04/2015 12:31:42 PM,06/04/2015 01:09:49 PM,Code 2 Transport,06/04/2015 01:50:15 PM,700 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6713,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",151551516-63 -142801421,RC3,14098466,Traffic Collision,10/07/2014,10/07/2014,10/07/2014 11:46:45 AM,10/07/2014 11:47:47 AM,10/07/2014 11:52:03 AM,10/07/2014 11:52:10 AM,10/07/2014 11:58:39 AM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Code 2 Transport,10/07/2014 11:59:26 AM,LAGUNA ST/FULTON ST,San Francisco,94102,B02,5,3412,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,5,Hayes Valley,"(37.778328563042, -122.426641497595)",142801421-RC3 -142321902,E02,14080608,Medical Incident,08/20/2014,08/20/2014,08/20/2014 01:38:33 PM,08/20/2014 01:39:37 PM,08/20/2014 01:40:36 PM,08/20/2014 01:41:14 PM,08/20/2014 01:45:45 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Medical Examiner,08/20/2014 02:18:50 PM,2000 Block of HYDE ST,San Francisco,94109,B01,41,1611,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.7998262980137, -122.419102797761)",142321902-E02 -160971088,KM04,16038348,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:35:08 AM,04/06/2016 09:35:35 AM,04/06/2016 09:36:26 AM,04/06/2016 09:37:26 AM,04/06/2016 09:52:15 AM,04/06/2016 09:52:46 AM,04/06/2016 10:04:39 AM,Code 2 Transport,04/06/2016 10:51:26 AM,PINE ST/OCTAVIA ST,San Francisco,94109,B04,38,3325,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.7887868948983, -122.427059673264)",160971088-KM04 -142850643,81,14100307,Medical Incident,10/12/2014,10/11/2014,10/12/2014 04:35:59 AM,10/12/2014 04:36:27 AM,10/12/2014 04:36:38 AM,10/12/2014 04:37:46 AM,10/12/2014 04:41:55 AM,10/12/2014 04:55:24 AM,10/12/2014 05:15:27 AM,Code 2 Transport,10/12/2014 05:27:44 AM,700 Block of KANSAS ST,San Francisco,94107,B10,37,2522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7602588003168, -122.403040580003)",142850643-81 -151031987,82,15038967,Medical Incident,04/13/2015,04/13/2015,04/13/2015 01:48:26 PM,04/13/2015 01:49:59 PM,04/13/2015 01:50:47 PM,04/13/2015 01:51:03 PM,04/13/2015 02:02:13 PM,04/13/2015 02:29:55 PM,04/13/2015 03:17:55 PM,Code 2 Transport,04/13/2015 03:32:25 PM,800 Block of TARAVAL ST,San Francisco,94116,B08,40,7376,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7430193724468, -122.475130331429)",151031987-82 -141540684,55,14052834,Medical Incident,06/03/2014,06/03/2014,06/03/2014 08:02:33 AM,06/03/2014 08:03:59 AM,06/03/2014 08:06:44 AM,06/03/2014 08:06:53 AM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,04/25/2016 01:16:59 PM,Unable to Locate,06/03/2014 08:16:04 AM,FERN ST/VAN NESS AV,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7880011777275, -122.421954907158)",141540684-55 -141911207,E12,14066166,Medical Incident,07/10/2014,07/10/2014,07/10/2014 10:21:29 AM,07/10/2014 10:24:40 AM,07/10/2014 10:32:03 AM,07/10/2014 10:32:17 AM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,04/25/2016 01:16:18 PM,Code 2 Transport,07/10/2014 10:38:35 AM,1200 Block of BRODERICK ST,San Francisco,94115,B05,10,4236,2,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Western Addition,"(37.7817829572775, -122.440805077382)",141911207-E12 -142941606,E08,14103677,Medical Incident,10/21/2014,10/21/2014,10/21/2014 12:22:56 PM,10/21/2014 12:24:31 PM,10/21/2014 12:24:56 PM,10/21/2014 12:26:04 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,Patient Declined Transport,10/21/2014 12:31:05 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",142941606-E08 -153201999,E02,15123062,Medical Incident,11/16/2015,11/16/2015,11/16/2015 02:03:47 PM,11/16/2015 02:04:12 PM,11/16/2015 02:04:46 PM,11/16/2015 02:06:24 PM,11/16/2015 02:09:29 PM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Code 2 Transport,11/16/2015 02:33:34 PM,GRANT AV/NORTH POINT ST,San Francisco,94133,B01,28,1262,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8071632523492, -122.408897336834)",153201999-E02 -143582720,75,14128230,Medical Incident,12/24/2014,12/24/2014,12/24/2014 07:18:59 PM,12/24/2014 07:20:07 PM,12/24/2014 07:20:39 PM,12/24/2014 07:20:48 PM,12/24/2014 07:29:28 PM,12/24/2014 07:35:46 PM,12/24/2014 07:42:03 PM,Code 2 Transport,12/24/2014 08:12:04 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",143582720-75 -151532620,E44,15058378,Outside Fire,06/02/2015,06/02/2015,06/02/2015 04:56:06 PM,06/02/2015 04:57:46 PM,06/02/2015 04:58:17 PM,06/02/2015 04:59:48 PM,06/02/2015 05:06:12 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Fire,06/02/2015 05:17:27 PM,400 Block of RAYMOND AVE,San Francisco,94134,B09,44,628,3,3,3,false,Fire,1,ENGINE,1,9,10,McLaren Park,"(37.7147287919997, -122.412436034218)",151532620-E44 -150280183,57,15010628,Medical Incident,01/28/2015,01/27/2015,01/28/2015 02:11:22 AM,01/28/2015 02:11:22 AM,01/28/2015 02:12:05 AM,01/28/2015 02:12:13 AM,01/28/2015 02:17:53 AM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,Patient Declined Transport,01/28/2015 02:34:29 AM,KEARNY ST/POST ST,San Francisco,94104,B01,1,1241,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7888944287124, -122.403660676968)",150280183-57 -143591154,T11,14128448,Alarms,12/25/2014,12/25/2014,12/25/2014 01:02:07 PM,12/25/2014 01:03:42 PM,12/25/2014 01:03:59 PM,12/25/2014 01:05:45 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Fire,12/25/2014 01:08:30 PM,0 Block of BERKELEY WAY,San Francisco,94131,B06,26,8173,3,3,3,false,Alarm,1,TRUCK,3,6,8,Glen Park,"(37.7387923508903, -122.437916930426)",143591154-T11 -151140740,E03,15042997,Medical Incident,04/24/2015,04/24/2015,04/24/2015 08:16:51 AM,04/24/2015 08:17:37 AM,04/24/2015 08:22:04 AM,04/24/2015 08:22:04 AM,04/24/2015 08:23:27 AM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,No Merit,04/24/2015 08:35:26 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",151140740-E03 -160993651,76,16039479,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:28:41 PM,04/08/2016 09:29:10 PM,04/08/2016 09:30:14 PM,04/08/2016 09:30:23 PM,04/08/2016 09:34:50 PM,04/08/2016 09:48:12 PM,04/08/2016 09:56:17 PM,Code 2 Transport,04/08/2016 10:27:13 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",160993651-76 -152880080,E42,15110495,Smoke Investigation (Outside),10/15/2015,10/14/2015,10/15/2015 12:30:35 AM,10/15/2015 12:31:39 AM,10/15/2015 12:32:05 AM,10/15/2015 12:34:38 AM,10/15/2015 12:38:12 AM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Fire,10/15/2015 01:40:00 AM,400 Block of OXFORD ST,San Francisco,94134,B09,43,6151,3,3,3,true,Alarm,1,ENGINE,1,9,9,Portola,"(37.7243497669411, -122.418705405465)",152880080-E42 -160941680,54,16037255,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:17:47 PM,04/03/2016 12:20:52 PM,04/03/2016 12:21:04 PM,04/03/2016 12:21:14 PM,04/03/2016 12:42:48 PM,04/03/2016 01:12:11 PM,04/03/2016 01:30:18 PM,Code 2 Transport,04/03/2016 02:13:35 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160941680-54 -142672340,E39,14093557,Medical Incident,09/24/2014,09/24/2014,09/24/2014 03:01:25 PM,09/24/2014 03:03:04 PM,09/24/2014 03:05:11 PM,09/24/2014 03:06:38 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 03:08:25 PM,2400 Block of MARKET ST,San Francisco,94114,B08,39,5259,2,2,2,true,Non Life-threatening,1,ENGINE,4,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",142672340-E39 -152830573,E35,15108542,Medical Incident,10/10/2015,10/09/2015,10/10/2015 03:50:03 AM,10/10/2015 03:54:43 AM,10/10/2015 03:55:11 AM,10/10/2015 03:57:19 AM,10/10/2015 04:02:37 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Code 2 Transport,10/10/2015 04:32:24 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7877468463797, -122.396934740624)",152830573-E35 -143543996,63,14126656,Medical Incident,12/20/2014,12/20/2014,12/20/2014 07:39:09 PM,12/20/2014 07:40:27 PM,12/20/2014 07:40:36 PM,12/20/2014 07:40:48 PM,12/20/2014 07:53:11 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Cancelled,12/20/2014 07:56:47 PM,0 Block of STERLING ST,San Francisco,94107,B03,8,2152,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7839848401345, -122.393109070293)",143543996-63 -141632976,89,14056313,Medical Incident,06/12/2014,06/12/2014,06/12/2014 07:35:35 PM,06/12/2014 07:35:35 PM,06/12/2014 07:50:32 PM,06/12/2014 07:50:42 PM,06/12/2014 08:06:32 PM,06/12/2014 08:32:25 PM,06/12/2014 08:51:46 PM,Code 2 Transport,06/12/2014 09:30:18 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",141632976-89 -153331790,E29,15128083,Structure Fire,11/29/2015,11/29/2015,11/29/2015 02:36:27 PM,11/29/2015 02:37:21 PM,11/29/2015 02:37:31 PM,11/29/2015 02:38:22 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Fire,11/29/2015 02:41:54 PM,23RD ST/HARRISON ST,San Francisco,94110,B06,7,5476,3,3,3,true,Alarm,1,ENGINE,10,6,9,Mission,"(37.7542303329372, -122.412047267054)",153331790-E29 -160963334,54,16038141,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:43:22 PM,04/05/2016 06:43:22 PM,04/05/2016 06:47:16 PM,04/05/2016 06:47:43 PM,04/05/2016 07:05:12 PM,04/05/2016 07:30:59 PM,04/05/2016 07:43:18 PM,Code 2 Transport,04/05/2016 08:10:51 PM,7TH ST/BRANNAN ST,San Francisco,94103,B03,8,2311,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7730511015721, -122.40320508207)",160963334-54 -160962719,KM04,16038092,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:30:06 PM,04/05/2016 04:30:06 PM,04/05/2016 04:31:17 PM,04/05/2016 04:31:40 PM,04/05/2016 04:46:51 PM,04/05/2016 05:03:02 PM,04/05/2016 05:23:23 PM,Code 2 Transport,04/05/2016 05:58:23 PM,400 Block of 19TH AVE,San Francisco,94121,B07,14,7165,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7794159427352, -122.478304610244)",160962719-KM04 -141700308,B03,14058565,Alarms,06/19/2014,06/18/2014,06/19/2014 03:58:41 AM,06/19/2014 04:00:03 AM,06/19/2014 04:00:12 AM,06/19/2014 04:02:34 AM,06/19/2014 04:07:32 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Fire,06/19/2014 04:07:38 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",141700308-B03 -143081634,RC3,14108984,Medical Incident,11/04/2014,11/04/2014,11/04/2014 12:32:09 PM,11/04/2014 12:32:47 PM,11/04/2014 12:33:44 PM,11/04/2014 12:35:20 PM,11/04/2014 12:36:05 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Medical Examiner,11/04/2014 01:22:46 PM,1400 Block of CHURCH ST,San Francisco,94131,B06,11,5547,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,8,Noe Valley,"(37.7480916389577, -122.427153088731)",143081634-RC3 -141000401,AP,14033937,Other,04/10/2014,04/10/2014,04/10/2014 10:21:46 PM,04/10/2014 10:21:46 PM,04/10/2014 10:21:46 PM,04/10/2014 10:21:46 PM,04/10/2014 10:21:46 PM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Fire,04/10/2014 10:22:07 PM,CALL BOX: SF INTERNATIONAL AIRPORT,,,B09,44,6913,,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",141000401-AP -142523199,82,14088095,Medical Incident,09/09/2014,09/09/2014,09/09/2014 08:31:47 PM,09/09/2014 08:32:22 PM,09/09/2014 08:32:46 PM,09/09/2014 08:33:41 PM,09/09/2014 08:36:23 PM,09/09/2014 09:10:08 PM,09/09/2014 09:22:35 PM,Code 2 Transport,09/09/2014 09:52:12 PM,600 Block of 10TH AVE,San Francisco,94118,B07,31,7134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7761033802138, -122.468294601251)",142523199-82 -151382604,E44,15052499,Medical Incident,05/18/2015,05/18/2015,05/18/2015 04:58:19 PM,05/18/2015 04:59:33 PM,05/18/2015 05:00:05 PM,05/18/2015 05:01:25 PM,05/18/2015 05:04:51 PM,04/25/2016 01:10:31 PM,04/25/2016 01:10:31 PM,Code 2 Transport,05/18/2015 05:07:40 PM,100 Block of SCHWERIN ST,San Francisco,94134,B09,44,6257,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7114235777776, -122.411060135574)",151382604-E44 -151091949,KM10,15041292,Medical Incident,04/19/2015,04/19/2015,04/19/2015 02:15:23 PM,04/19/2015 02:17:10 PM,04/19/2015 02:17:49 PM,04/19/2015 02:18:24 PM,04/19/2015 02:31:41 PM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,Against Medical Advice,04/19/2015 03:21:45 PM,300 Block of DE HARO ST,San Francisco,94103,B03,29,2413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission Bay,"(37.7654817940477, -122.401728756227)",151091949-KM10 -153011377,B10,15115434,Alarms,10/28/2015,10/28/2015,10/28/2015 10:39:03 AM,10/28/2015 10:40:51 AM,10/28/2015 10:41:27 AM,10/28/2015 10:42:06 AM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/28/2015 10:45:43 AM,400 Block of DONAHUE ST,Hunters Point,94124,B10,47,6721,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7274697355387, -122.371271384913)",153011377-B10 -152664324,AM16,15102094,Medical Incident,09/23/2015,09/23/2015,09/23/2015 11:40:04 PM,09/23/2015 11:41:43 PM,09/23/2015 11:42:16 PM,09/23/2015 11:43:27 PM,09/24/2015 12:20:49 AM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Other,09/24/2015 12:26:51 AM,JENNINGS ST/WALLACE AV,San Francisco,94124,B10,17,6651,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7264151508885, -122.38923775426)",152664324-AM16 -160993150,89,16039429,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:53:57 PM,04/08/2016 06:53:57 PM,04/08/2016 06:54:42 PM,04/08/2016 06:54:52 PM,04/08/2016 06:58:39 PM,04/08/2016 07:30:58 PM,04/08/2016 07:44:56 PM,Code 2 Transport,04/08/2016 08:17:14 PM,LAGUNA ST/HERMANN ST,San Francisco,94102,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7708685446413, -122.425135508368)",160993150-89 -143380113,53,14119801,Medical Incident,12/04/2014,12/03/2014,12/04/2014 12:48:56 AM,12/04/2014 12:48:56 AM,12/04/2014 12:49:14 AM,12/04/2014 12:49:23 AM,12/04/2014 12:57:59 AM,12/04/2014 01:15:16 AM,12/04/2014 01:19:46 AM,Code 2 Transport,12/04/2014 01:30:27 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",143380113-53 -150233110,KM14,15009048,Medical Incident,01/23/2015,01/23/2015,01/23/2015 07:26:04 PM,01/23/2015 07:27:15 PM,01/23/2015 07:27:40 PM,01/23/2015 07:28:25 PM,01/23/2015 07:33:36 PM,01/23/2015 07:53:42 PM,01/23/2015 08:05:51 PM,Code 2 Transport,01/23/2015 08:21:55 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",150233110-KM14 -152701872,E01,15103477,Medical Incident,09/27/2015,09/27/2015,09/27/2015 02:21:28 PM,09/27/2015 02:22:43 PM,09/27/2015 02:22:50 PM,09/27/2015 02:25:56 PM,09/27/2015 02:26:36 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Code 2 Transport,09/27/2015 02:33:14 PM,JESSIE ST/6TH ST,San Francisco,94103,B03,1,2251,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",152701872-E01 -143133346,71,14111048,Medical Incident,11/09/2014,11/09/2014,11/09/2014 10:22:29 PM,11/09/2014 10:23:16 PM,11/09/2014 10:24:02 PM,11/09/2014 10:24:16 PM,11/09/2014 10:31:21 PM,11/09/2014 10:36:56 PM,11/09/2014 10:54:38 PM,Code 2 Transport,11/09/2014 11:18:46 PM,1500 Block of LA SALLE AVE,San Francisco,94124,B10,17,6517,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7359790207517, -122.387994549073)",143133346-71 -153451986,T11,15132819,Structure Fire,12/11/2015,12/11/2015,12/11/2015 01:35:21 PM,12/11/2015 01:35:21 PM,12/11/2015 01:36:04 PM,12/11/2015 01:36:58 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Fire,12/11/2015 01:38:28 PM,24TH ST/CHURCH ST,San Francisco,94114,B06,11,5523,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",153451986-T11 -142592814,T13,14090591,Alarms,09/16/2014,09/16/2014,09/16/2014 05:40:36 PM,09/16/2014 05:41:55 PM,09/16/2014 05:44:03 PM,09/16/2014 05:44:45 PM,09/16/2014 05:48:25 PM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Fire,09/16/2014 06:01:07 PM,100 Block of CHESTNUT ST,San Francisco,94133,B01,28,1224,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8046380785616, -122.40638450904)",142592814-T13 -161000763,KM09,16039657,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:54:11 AM,04/09/2016 07:56:00 AM,04/09/2016 08:05:30 AM,04/09/2016 08:06:03 AM,04/09/2016 08:15:28 AM,04/09/2016 08:51:31 AM,04/09/2016 09:07:24 AM,Code 2 Transport,04/09/2016 09:50:09 AM,FOLSOM ST/THE EMBARCADERO SOU,San Francisco,94105,B03,35,2112,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7904750361941, -122.39055604599)",161000763-KM09 -143230980,E28,14114284,Medical Incident,11/19/2014,11/19/2014,11/19/2014 10:08:37 AM,11/19/2014 10:08:44 AM,11/19/2014 10:09:16 AM,11/19/2014 10:12:08 AM,11/19/2014 10:15:43 AM,04/25/2016 01:13:55 PM,04/25/2016 01:13:55 PM,Code 3 Transport,11/19/2014 10:16:32 AM,600 Block of CHESTNUT ST,San Francisco,94133,B01,28,1424,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8037059928604, -122.414061181051)",143230980-E28 -160950115,64,16037480,Medical Incident,04/04/2016,04/03/2016,04/04/2016 01:12:39 AM,04/04/2016 01:13:11 AM,04/04/2016 01:13:24 AM,04/04/2016 01:13:39 AM,04/04/2016 01:18:58 AM,04/04/2016 01:48:27 AM,04/04/2016 02:01:42 AM,Code 2 Transport,04/04/2016 02:48:16 AM,100 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7131278901995, -122.45753811019)",160950115-64 -152474536,70,15094475,Medical Incident,09/04/2015,09/04/2015,09/04/2015 11:33:01 PM,09/04/2015 11:35:16 PM,09/04/2015 11:35:35 PM,09/04/2015 11:36:01 PM,09/04/2015 11:41:54 PM,09/05/2015 12:05:17 AM,09/05/2015 12:11:12 AM,Code 2 Transport,09/05/2015 12:42:13 AM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",152474536-70 -152052817,72,15078167,Medical Incident,07/24/2015,07/24/2015,07/24/2015 05:14:45 PM,07/24/2015 05:15:25 PM,07/24/2015 05:15:47 PM,07/24/2015 05:16:28 PM,07/24/2015 05:19:31 PM,07/24/2015 05:29:06 PM,07/24/2015 05:46:10 PM,Code 3 Transport,07/24/2015 05:59:03 PM,JOHN F KENNEDY DR/36TH AV,San Francisco,94122,B07,34,7262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7699670033298, -122.495263464051)",152052817-72 -160993811,AM14,16039504,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:11:50 PM,04/08/2016 10:12:21 PM,04/08/2016 10:13:00 PM,04/08/2016 10:13:33 PM,04/08/2016 10:17:05 PM,04/08/2016 10:30:49 PM,04/08/2016 10:43:01 PM,Code 2 Transport,04/08/2016 11:00:18 PM,SUTTER ST/STOCKTON ST,San Francisco,94108,B01,1,1324,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",160993811-AM14 -142092715,68,14072558,Structure Fire,07/28/2014,07/28/2014,07/28/2014 06:40:32 PM,07/28/2014 06:41:43 PM,07/28/2014 06:49:01 PM,07/28/2014 06:49:10 PM,07/28/2014 06:50:27 PM,07/28/2014 07:02:14 PM,07/28/2014 07:18:47 PM,Fire,07/28/2014 08:02:57 PM,14TH ST/FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,true,Alarm,1,MEDIC,6,2,9,Mission,"(37.7685373884214, -122.415613781366)",142092715-68 -142200170,T03,14076181,Medical Incident,08/08/2014,08/07/2014,08/08/2014 01:22:14 AM,08/08/2014 01:24:53 AM,08/08/2014 01:25:13 AM,08/08/2014 01:27:07 AM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,04/25/2016 01:15:47 PM,Code 2 Transport,08/08/2014 01:27:58 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",142200170-T03 -151410964,B03,15053501,Alarms,05/21/2015,05/21/2015,05/21/2015 08:50:13 AM,05/21/2015 08:51:12 AM,05/21/2015 08:51:23 AM,05/21/2015 08:53:09 AM,05/21/2015 08:56:37 AM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 09:09:15 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.779911669335, -122.407474439624)",151410964-B03 -160953862,63,16037804,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:53:30 PM,04/04/2016 09:55:32 PM,04/04/2016 09:55:43 PM,04/04/2016 09:55:55 PM,04/04/2016 10:04:01 PM,04/04/2016 10:38:08 PM,04/04/2016 11:15:57 PM,Code 2 Transport,04/04/2016 11:55:34 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160953862-63 -152402522,64,15091477,Medical Incident,08/28/2015,08/28/2015,08/28/2015 02:55:22 PM,08/28/2015 02:55:44 PM,08/28/2015 02:56:25 PM,08/28/2015 02:56:36 PM,08/28/2015 03:03:12 PM,04/25/2016 01:08:40 PM,04/25/2016 01:08:40 PM,Patient Declined Transport,08/28/2015 04:15:50 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",152402522-64 -152290595,54,15087276,Traffic Collision,08/17/2015,08/16/2015,08/17/2015 07:04:58 AM,08/17/2015 07:04:58 AM,08/17/2015 07:05:04 AM,08/17/2015 07:05:22 AM,08/17/2015 07:12:12 AM,04/25/2016 01:08:52 PM,04/25/2016 01:08:52 PM,Against Medical Advice,08/17/2015 08:10:32 AM,RAYMOND AV/RUTLAND ST,San Francisco,94134,B10,44,6267,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.713225683669, -122.407056445013)",152290595-54 -150542368,E48,15020822,Traffic Collision,02/23/2015,02/23/2015,02/23/2015 03:19:15 PM,02/23/2015 03:21:29 PM,02/23/2015 03:22:41 PM,02/23/2015 03:23:43 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Cancelled,02/23/2015 03:23:50 PM,0 Block of FREMONT ST,San Francisco,94105,B03,48,2951,2,2,2,true,Non Life-threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",150542368-E48 -141973097,E02,14068336,Medical Incident,07/16/2014,07/16/2014,07/16/2014 06:58:56 PM,07/16/2014 06:59:58 PM,07/16/2014 07:06:40 PM,07/16/2014 07:08:36 PM,07/16/2014 07:09:02 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 2 Transport,07/16/2014 07:30:01 PM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",141973097-E02 -160984005,AM14,16039139,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:58:24 PM,04/07/2016 10:58:24 PM,04/07/2016 10:59:05 PM,04/07/2016 10:59:39 PM,04/07/2016 11:04:54 PM,04/07/2016 11:21:49 PM,04/07/2016 11:41:14 PM,Code 2 Transport,04/08/2016 12:10:23 AM,GREEN ST/MONTGOMERY ST,San Francisco,94133,B01,28,1226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8001042889247, -122.404240417655)",160984005-AM14 -142442328,E19,14085088,Structure Fire,09/01/2014,09/01/2014,09/01/2014 04:31:12 PM,09/01/2014 04:32:23 PM,09/01/2014 04:33:19 PM,09/01/2014 04:34:21 PM,09/01/2014 04:39:08 PM,04/25/2016 01:15:19 PM,04/25/2016 01:15:19 PM,Fire,09/01/2014 04:57:14 PM,600 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",142442328-E19 -150441013,T01,15017038,Alarms,02/13/2015,02/13/2015,02/13/2015 09:08:06 AM,02/13/2015 09:09:02 AM,02/13/2015 09:09:19 AM,02/13/2015 09:11:20 AM,02/13/2015 09:14:25 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Fire,02/13/2015 09:32:13 AM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",150441013-T01 -153034274,E25,15116458,Smoke Investigation (Outside),10/30/2015,10/30/2015,10/30/2015 11:33:00 PM,10/30/2015 11:34:58 PM,10/30/2015 11:36:54 PM,10/30/2015 11:38:19 PM,10/30/2015 11:43:19 PM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Fire,10/30/2015 11:43:22 PM,1300 Block of CESAR CHAVEZ ST,San Francisco,94124,B10,25,2635,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7500745703609, -122.390927671815)",153034274-E25 -160941931,71,16037270,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:38:50 PM,04/03/2016 01:39:00 PM,04/03/2016 01:39:28 PM,04/03/2016 01:39:40 PM,04/03/2016 02:04:28 PM,04/03/2016 02:04:33 PM,04/03/2016 02:15:10 PM,Code 2 Transport,04/03/2016 02:43:09 PM,300 Block of ELIZABETH ST,San Francisco,94114,B06,11,5514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Noe Valley,"(37.7523110363157, -122.428880466079)",160941931-71 -143453655,71,14123095,Medical Incident,12/11/2014,12/11/2014,12/11/2014 09:41:51 PM,12/11/2014 09:42:51 PM,12/11/2014 09:50:01 PM,12/11/2014 09:50:17 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Cancelled,12/11/2014 10:04:03 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",143453655-71 -152683959,FD00A,15102885,,09/25/2015,09/25/2015,09/25/2015 10:24:20 PM,09/25/2015 10:24:20 PM,09/25/2015 11:31:17 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,04/25/2016 01:08:08 PM,Code 2 Transport,09/25/2015 11:31:20 PM,1100 Block of PINE ST,San Francisco,94109,B01,41,1464,2,2,2,false,Non Life-threatening,1,SUPPORT,2,1,3,Nob Hill,"(37.7902802865906, -122.414916875484)",152683959-FD00A -153260107,AM24,15125340,Medical Incident,11/22/2015,11/21/2015,11/22/2015 12:39:07 AM,11/22/2015 12:41:57 AM,11/22/2015 12:42:35 AM,11/22/2015 12:44:33 AM,11/22/2015 12:58:32 AM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Gone on Arrival,11/22/2015 01:15:20 AM,400 Block of MASON ST,San Francisco,94102,B01,3,1411,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7877640990096, -122.409925328419)",153260107-AM24 -160993959,52,16039522,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:00:12 PM,04/08/2016 11:04:20 PM,04/08/2016 11:04:40 PM,04/08/2016 11:04:52 PM,04/08/2016 11:06:22 PM,04/08/2016 11:28:02 PM,04/08/2016 11:48:09 PM,Code 2 Transport,04/09/2016 12:23:31 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160993959-52 -150332261,KM12,15012781,Medical Incident,02/02/2015,02/02/2015,02/02/2015 03:20:37 PM,02/02/2015 03:20:44 PM,02/02/2015 03:21:08 PM,02/02/2015 03:21:17 PM,02/02/2015 03:42:33 PM,02/02/2015 03:42:38 PM,02/02/2015 04:23:40 PM,Code 2 Transport,02/02/2015 04:35:19 PM,0 Block of CLIPPER ST,San Francisco,94114,B06,11,5536,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7494200824928, -122.426066828895)",150332261-KM12 -151800282,KM07,15068571,Medical Incident,06/29/2015,06/28/2015,06/29/2015 02:39:15 AM,06/29/2015 02:40:33 AM,06/29/2015 02:40:40 AM,06/29/2015 02:41:41 AM,06/29/2015 02:45:07 AM,06/29/2015 03:04:31 AM,06/29/2015 03:10:00 AM,Code 2 Transport,06/29/2015 03:35:02 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",151800282-KM07 -161002228,58,16039831,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:17:50 PM,04/09/2016 04:21:43 PM,04/09/2016 04:21:54 PM,04/09/2016 04:22:32 PM,04/09/2016 04:29:57 PM,04/09/2016 04:37:43 PM,04/09/2016 04:49:07 PM,Code 2 Transport,04/09/2016 05:10:40 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",161002228-58 -142362060,E15,14082096,Smoke Investigation (Outside),08/24/2014,08/24/2014,08/24/2014 02:23:32 PM,08/24/2014 02:25:20 PM,08/24/2014 02:25:33 PM,08/24/2014 02:26:43 PM,08/24/2014 02:28:40 PM,04/25/2016 01:15:29 PM,04/25/2016 01:15:29 PM,Fire,08/24/2014 02:33:37 PM,ALEMANY BL/ONONDAGA AV,San Francisco,94112,B09,15,8274,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7216263841889, -122.438641759079)",142362060-E15 -151723139,70,15065826,Medical Incident,06/21/2015,06/21/2015,06/21/2015 08:57:00 PM,06/21/2015 08:57:00 PM,06/21/2015 08:57:18 PM,06/21/2015 08:57:38 PM,06/21/2015 09:11:58 PM,04/25/2016 01:09:53 PM,04/25/2016 01:09:53 PM,Patient Declined Transport,06/21/2015 10:00:46 PM,44TH AV/TARAVAL ST,San Francisco,94116,B08,18,7644,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7418617232147, -122.502476736682)",151723139-70 -160932513,54,16036949,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:49:23 PM,04/02/2016 04:50:15 PM,04/02/2016 04:50:32 PM,04/02/2016 04:51:19 PM,04/02/2016 04:57:04 PM,04/02/2016 05:36:09 PM,04/02/2016 05:33:17 PM,Code 2 Transport,04/02/2016 06:19:13 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160932513-54 -160933369,85,16037035,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:43:22 PM,04/02/2016 08:45:18 PM,04/02/2016 08:45:36 PM,04/02/2016 08:45:45 PM,04/02/2016 08:55:59 PM,04/02/2016 09:26:02 PM,04/02/2016 09:39:46 PM,Code 2 Transport,04/02/2016 10:32:48 PM,1900 Block of EDDY ST,San Francisco,94115,B05,21,4241,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7805348135093, -122.439769204544)",160933369-85 -141481160,77,14050779,Medical Incident,05/28/2014,05/28/2014,05/28/2014 10:26:29 AM,05/28/2014 10:27:57 AM,05/28/2014 10:28:14 AM,05/28/2014 10:30:19 AM,05/28/2014 10:37:07 AM,05/28/2014 11:03:08 AM,05/28/2014 11:41:46 AM,Code 2 Transport,05/28/2014 12:30:11 PM,1000 Block of NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",141481160-77 -142241467,E01,14077711,Medical Incident,08/12/2014,08/12/2014,08/12/2014 12:09:17 PM,08/12/2014 12:09:26 PM,08/12/2014 12:17:12 PM,08/12/2014 12:17:17 PM,08/12/2014 12:20:45 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Code 2 Transport,08/12/2014 12:22:49 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",142241467-E01 -150913495,53,15034747,Medical Incident,04/01/2015,04/01/2015,04/01/2015 08:41:03 PM,04/01/2015 08:41:47 PM,04/01/2015 08:42:00 PM,04/01/2015 08:42:33 PM,04/01/2015 08:46:24 PM,04/01/2015 09:15:45 PM,04/01/2015 09:48:51 PM,Code 2 Transport,04/01/2015 10:30:14 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",150913495-53 -143632902,T11,14129962,Structure Fire,12/29/2014,12/29/2014,12/29/2014 06:58:02 PM,12/29/2014 06:58:02 PM,12/29/2014 06:58:33 PM,12/29/2014 07:00:31 PM,12/29/2014 07:06:52 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Fire,12/29/2014 07:28:35 PM,500 Block of PORTOLA DR,San Francisco,94131,B06,39,866,3,3,3,false,Alarm,1,TRUCK,3,6,8,Glen Park,"(37.7455667070932, -122.451155727844)",143632902-T11 -151823878,E13,15069655,Medical Incident,07/01/2015,07/01/2015,07/01/2015 10:03:38 PM,07/01/2015 10:04:10 PM,07/01/2015 10:04:27 PM,07/01/2015 10:06:21 PM,07/01/2015 10:07:53 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Code 2 Transport,07/01/2015 10:26:15 PM,KEARNY ST/SACRAMENTO ST,San Francisco,94104,B01,13,1244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",151823878-E13 -160962013,AM10,16038035,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:40:47 PM,04/05/2016 01:42:51 PM,04/05/2016 01:44:46 PM,04/05/2016 01:45:29 PM,04/05/2016 02:17:22 PM,04/05/2016 02:17:24 PM,04/05/2016 02:53:44 PM,Code 2 Transport,04/05/2016 03:21:19 PM,900 Block of BRYANT ST,San Francisco,94103,B03,8,2311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7740297538027, -122.404968319078)",160962013-AM10 -160961134,AM10,16037949,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:10:34 AM,04/05/2016 10:14:44 AM,04/05/2016 10:15:27 AM,04/05/2016 10:16:29 AM,04/05/2016 10:19:18 AM,04/05/2016 10:53:16 AM,04/05/2016 11:33:19 AM,Code 2 Transport,04/05/2016 11:58:59 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7794880680759, -122.40694292477)",160961134-AM10 -141553487,75,14053468,Medical Incident,06/04/2014,06/04/2014,06/04/2014 09:50:00 PM,06/04/2014 09:50:56 PM,06/04/2014 09:52:39 PM,06/04/2014 09:53:34 PM,06/04/2014 09:56:37 PM,06/04/2014 10:10:37 PM,06/04/2014 10:20:33 PM,Code 2 Transport,06/04/2014 10:44:50 PM,1600 Block of CAYUGA AVE,San Francisco,94112,B09,33,8344,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.715925352275, -122.447178760466)",141553487-75 -143361033,85,14119025,Medical Incident,12/02/2014,12/02/2014,12/02/2014 10:19:28 AM,12/02/2014 10:20:47 AM,12/02/2014 10:21:25 AM,12/02/2014 10:21:34 AM,12/02/2014 10:24:23 AM,12/02/2014 10:39:35 AM,12/02/2014 10:59:04 AM,Code 2 Transport,12/02/2014 11:49:57 AM,1600 Block of BRYANT ST,San Francisco,94103,B02,29,5222,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7662587674103, -122.410479250127)",143361033-85 -161002335,89,16039843,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:58:58 PM,04/09/2016 04:59:36 PM,04/09/2016 04:59:59 PM,04/09/2016 05:01:51 PM,04/09/2016 05:03:51 PM,04/09/2016 05:05:47 PM,04/09/2016 05:16:39 PM,Code 2 Transport,04/09/2016 05:43:54 PM,0 Block of PERSIA AVE,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7229939497296, -122.435557066402)",161002335-89 -151970694,85,15075033,Medical Incident,07/16/2015,07/15/2015,07/16/2015 07:58:41 AM,07/16/2015 08:00:47 AM,07/16/2015 08:05:36 AM,07/16/2015 08:05:36 AM,07/16/2015 08:09:44 AM,07/16/2015 08:25:26 AM,07/16/2015 08:55:27 AM,Code 2 Transport,07/16/2015 09:38:09 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",151970694-85 -151500747,89,15057007,Medical Incident,05/30/2015,05/30/2015,05/30/2015 08:08:57 AM,05/30/2015 08:11:00 AM,05/30/2015 08:11:37 AM,05/30/2015 08:12:14 AM,05/30/2015 08:17:51 AM,05/30/2015 08:34:22 AM,05/30/2015 08:52:41 AM,Code 2 Transport,05/30/2015 09:29:54 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",151500747-89 -160922324,68,16036504,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:43:56 PM,04/01/2016 03:47:15 PM,04/01/2016 03:47:47 PM,04/01/2016 03:47:57 PM,04/01/2016 03:51:23 PM,04/01/2016 03:55:20 PM,04/01/2016 04:14:36 PM,Code 2 Transport,04/01/2016 05:02:42 PM,100 Block of KISKA RD,San Francisco,94124,B10,17,6625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",160922324-68 -152592780,E33,15099088,Medical Incident,09/16/2015,09/16/2015,09/16/2015 05:18:26 PM,09/16/2015 05:19:51 PM,09/16/2015 05:20:14 PM,09/16/2015 05:22:03 PM,09/16/2015 05:24:59 PM,04/25/2016 01:08:19 PM,04/25/2016 01:08:19 PM,Code 2 Transport,09/16/2015 05:33:35 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",152592780-E33 -152071219,84,15078823,Medical Incident,07/26/2015,07/26/2015,07/26/2015 10:28:58 AM,07/26/2015 10:30:44 AM,07/26/2015 10:33:01 AM,07/26/2015 10:33:20 AM,07/26/2015 10:38:19 AM,07/26/2015 10:45:46 AM,07/26/2015 11:06:13 AM,Code 2 Transport,07/26/2015 11:36:25 AM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",152071219-84 -160983685,61,16039110,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:06:44 PM,04/07/2016 09:08:42 PM,04/07/2016 09:08:57 PM,04/07/2016 09:09:34 PM,04/07/2016 09:17:57 PM,04/07/2016 09:32:27 PM,04/07/2016 09:47:01 PM,Code 2 Transport,04/07/2016 10:11:31 PM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5259,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",160983685-61 -151191563,54,15044976,Medical Incident,04/29/2015,04/29/2015,04/29/2015 11:33:58 AM,04/29/2015 11:34:19 AM,04/29/2015 11:34:42 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Code 2 Transport,04/29/2015 11:35:27 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",151191563-54 -150293883,KM03,15011379,Medical Incident,01/29/2015,01/29/2015,01/29/2015 11:41:53 PM,01/29/2015 11:43:47 PM,01/29/2015 11:45:31 PM,01/29/2015 11:46:37 PM,01/29/2015 11:53:02 PM,01/30/2015 12:15:27 AM,01/30/2015 12:38:39 AM,Code 2 Transport,01/30/2015 01:01:13 AM,1000 Block of POWELL ST,San Francisco,94108,B01,2,1355,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7942855985686, -122.409699641182)",150293883-KM03 -142764198,79,14097179,Medical Incident,10/03/2014,10/03/2014,10/03/2014 10:54:50 PM,10/03/2014 10:54:50 PM,10/03/2014 11:27:03 PM,10/03/2014 11:27:11 PM,10/03/2014 11:45:46 PM,10/03/2014 11:48:23 PM,10/04/2014 12:05:55 AM,Code 2 Transport,10/04/2014 12:45:47 AM,CASTILLO ST/VELASCO AV,San Francisco,94134,B09,43,6247,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7094714296635, -122.417656944074)",142764198-79 -160921415,65,16036410,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:41:33 AM,04/01/2016 11:43:46 AM,04/01/2016 11:44:57 AM,04/01/2016 11:45:06 AM,04/01/2016 11:54:24 AM,04/01/2016 12:06:48 PM,04/01/2016 12:38:54 PM,Code 2 Transport,04/01/2016 01:12:45 PM,500 Block of EDDY ST,San Francisco,94102,B02,3,1643,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",160921415-65 -142301260,E18,14079875,Medical Incident,08/18/2014,08/18/2014,08/18/2014 10:35:18 AM,08/18/2014 10:39:30 AM,08/18/2014 10:40:09 AM,08/18/2014 10:43:31 AM,08/18/2014 10:46:32 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Code 2 Transport,08/18/2014 11:00:19 AM,1800 Block of 48TH AVE,San Francisco,94122,B08,23,7725,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7519393941701, -122.50741193175)",142301260-E18 -151273844,86,15048340,Medical Incident,05/07/2015,05/07/2015,05/07/2015 09:55:48 PM,05/07/2015 09:56:05 PM,05/07/2015 09:56:22 PM,05/07/2015 09:56:35 PM,05/07/2015 10:00:47 PM,05/07/2015 10:25:52 PM,05/07/2015 10:36:04 PM,Code 2 Transport,05/07/2015 10:58:24 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",151273844-86 -160981808,67,16038908,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:27:47 PM,04/07/2016 12:29:03 PM,04/07/2016 12:29:42 PM,04/07/2016 12:29:55 PM,04/07/2016 12:37:26 PM,04/07/2016 12:56:18 PM,04/07/2016 01:31:55 PM,Code 2 Transport,04/07/2016 02:09:28 PM,2400 Block of 28TH AVE,San Francisco,94116,B08,18,7522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7416950719764, -122.485200987218)",160981808-67 -142491305,B03,14086761,Alarms,09/06/2014,09/06/2014,09/06/2014 10:59:55 AM,09/06/2014 11:01:23 AM,09/06/2014 11:01:42 AM,09/06/2014 11:01:58 AM,09/06/2014 11:08:38 AM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Fire,09/06/2014 11:24:32 AM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,false,Alarm,1,CHIEF,3,2,10,Mission,"(37.765718993574, -122.409520691153)",142491305-B03 -160973700,72,16038622,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:58:12 PM,04/06/2016 06:59:48 PM,04/06/2016 07:02:13 PM,04/06/2016 07:08:39 PM,04/06/2016 07:08:40 PM,04/06/2016 07:26:26 PM,04/06/2016 07:35:10 PM,Code 3 Transport,04/06/2016 08:30:46 PM,200 Block of ALPHA ST,San Francisco,94134,B10,44,6267,2,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7135034154294, -122.404588282011)",160973700-72 -161000271,AM18,16039590,Medical Incident,04/09/2016,04/08/2016,04/09/2016 01:59:31 AM,04/09/2016 02:02:22 AM,04/09/2016 02:06:16 AM,04/09/2016 02:07:05 AM,04/09/2016 02:21:44 AM,04/09/2016 02:38:25 AM,04/09/2016 02:49:15 AM,Code 2 Transport,04/09/2016 03:12:18 AM,1ST ST/JESSIE ST,San Francisco,94105,B03,13,2143,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7902287946656, -122.398159693162)",161000271-AM18 -153122832,58,15120038,Medical Incident,11/08/2015,11/08/2015,11/08/2015 07:21:43 PM,11/08/2015 07:24:35 PM,11/08/2015 07:24:57 PM,11/08/2015 07:25:21 PM,11/08/2015 07:29:40 PM,04/25/2016 01:07:19 PM,04/25/2016 01:07:19 PM,Patient Declined Transport,11/08/2015 08:19:43 PM,600 Block of 7TH AVE,San Francisco,94118,B07,31,7132,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7762562982269, -122.46494135115)",153122832-58 -152952435,E40,15113418,Medical Incident,10/22/2015,10/22/2015,10/22/2015 04:01:12 PM,10/22/2015 04:01:12 PM,10/22/2015 04:02:55 PM,10/22/2015 04:04:26 PM,10/22/2015 04:07:44 PM,04/25/2016 01:07:37 PM,04/25/2016 01:07:37 PM,Patient Declined Transport,10/22/2015 04:29:12 PM,200 Block of KENSINGTON WAY,San Francisco,94127,B08,39,8577,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7427618057134, -122.461688421967)",152952435-E40 -151300438,KM01,15049226,Medical Incident,05/10/2015,05/09/2015,05/10/2015 03:51:56 AM,05/10/2015 03:51:56 AM,05/10/2015 03:53:39 AM,05/10/2015 03:56:16 AM,05/10/2015 03:58:40 AM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Patient Declined Transport,05/10/2015 04:25:09 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",151300438-KM01 -153392586,E03,15130515,Alarms,12/05/2015,12/05/2015,12/05/2015 04:16:55 PM,12/05/2015 04:18:03 PM,12/05/2015 04:18:37 PM,12/05/2015 04:18:58 PM,12/05/2015 04:22:01 PM,04/25/2016 01:06:48 PM,04/25/2016 01:06:48 PM,Fire,12/05/2015 04:34:11 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",153392586-E03 -152103553,E21,15080151,Structure Fire,07/29/2015,07/29/2015,07/29/2015 09:01:04 PM,07/29/2015 09:01:04 PM,07/29/2015 09:02:11 PM,07/29/2015 09:03:06 PM,07/29/2015 09:04:53 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/29/2015 09:05:00 PM,BRODERICK ST/HAIGHT ST,San Francisco,94117,B05,21,4246,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7710564942104, -122.438709122602)",152103553-E21 -151153605,KM07,15043630,Medical Incident,04/25/2015,04/25/2015,04/25/2015 10:38:44 PM,04/25/2015 10:40:00 PM,04/25/2015 10:40:09 PM,04/25/2015 10:40:44 PM,04/25/2015 10:46:02 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,No Merit,04/25/2015 10:53:59 PM,900 Block of HYDE ST,San Francisco,94109,B04,3,1561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",151153605-KM07 -152474116,64,15094441,Traffic Collision,09/04/2015,09/04/2015,09/04/2015 09:52:26 PM,09/04/2015 09:54:42 PM,09/04/2015 09:55:04 PM,09/04/2015 09:56:08 PM,09/04/2015 10:01:11 PM,09/04/2015 10:37:35 PM,09/04/2015 10:48:08 PM,Code 2 Transport,09/04/2015 11:17:29 PM,1600 Block of PLYMOUTH AVE,San Francisco,94127,B09,15,8522,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7315966401409, -122.457500269837)",152474116-64 -160981654,KM10,16038897,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:53:10 AM,04/07/2016 11:53:10 AM,04/07/2016 12:00:43 PM,04/07/2016 12:01:50 PM,04/07/2016 12:24:40 PM,04/07/2016 12:41:33 PM,04/07/2016 01:09:13 PM,Code 2 Transport,04/07/2016 01:34:43 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160981654-KM10 -152840697,65,15108959,Medical Incident,10/11/2015,10/10/2015,10/11/2015 05:02:19 AM,10/11/2015 05:06:35 AM,10/11/2015 05:09:03 AM,10/11/2015 05:09:24 AM,10/11/2015 05:11:18 AM,10/11/2015 05:26:22 AM,10/11/2015 05:37:43 AM,Code 2 Transport,10/11/2015 05:52:21 AM,200 Block of 20TH AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7831899010435, -122.479652365289)",152840697-65 -151021780,D3,15038586,Structure Fire,04/12/2015,04/12/2015,04/12/2015 01:43:04 PM,04/12/2015 01:44:15 PM,04/12/2015 01:44:38 PM,04/12/2015 01:45:42 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,04/25/2016 01:11:12 PM,Fire,04/12/2015 01:48:47 PM,1900 Block of OCEAN AVE,San Francisco,94127,B09,15,8456,3,3,3,false,Alarm,1,CHIEF,10,9,7,West of Twin Peaks,"(37.7252945346576, -122.46256031901)",151021780-D3 -142673607,T13,14093682,Medical Incident,09/24/2014,09/24/2014,09/24/2014 08:40:32 PM,09/24/2014 08:42:15 PM,09/24/2014 08:44:29 PM,09/24/2014 08:45:59 PM,09/24/2014 08:48:24 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Code 2 Transport,09/24/2014 08:56:54 PM,600 Block of KEARNY ST,San Francisco,94108,B01,13,1244,2,E,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.7942286247262, -122.404821897781)",142673607-T13 -150764061,E36,15029338,Medical Incident,03/17/2015,03/17/2015,03/17/2015 10:59:18 PM,03/17/2015 11:00:30 PM,03/17/2015 11:00:42 PM,03/17/2015 11:02:19 PM,03/17/2015 11:04:09 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Code 2 Transport,03/17/2015 11:16:43 PM,400 Block of FELL ST,San Francisco,94102,B02,36,3314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.775693445214, -122.425208793392)",150764061-E36 -160983512,78,16039093,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:07:52 PM,04/07/2016 08:07:52 PM,04/07/2016 08:08:04 PM,04/07/2016 08:08:10 PM,04/07/2016 08:31:46 PM,04/07/2016 08:32:51 PM,04/07/2016 08:40:01 PM,Code 2 Transport,04/07/2016 09:11:58 PM,MARKET ST/LAGUNA ST,San Francisco,94103,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",160983512-78 -160961516,74,16037985,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:46:03 AM,04/05/2016 11:47:31 AM,04/05/2016 11:48:01 AM,04/05/2016 11:48:09 AM,04/05/2016 11:51:44 AM,04/05/2016 12:05:35 PM,04/05/2016 12:19:02 PM,Code 2 Transport,04/05/2016 12:40:14 PM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",160961516-74 -160941121,AM10,16037208,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:38:26 AM,04/03/2016 09:38:50 AM,04/03/2016 09:39:06 AM,04/03/2016 09:42:01 AM,04/03/2016 09:42:01 AM,04/03/2016 09:59:18 AM,04/03/2016 10:14:05 AM,Code 2 Transport,04/03/2016 10:52:52 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7649874026625, -122.421639212531)",160941121-AM10 -150310950,60,15011899,Medical Incident,01/31/2015,01/31/2015,01/31/2015 09:05:13 AM,01/31/2015 09:07:01 AM,01/31/2015 09:07:26 AM,01/31/2015 09:07:54 AM,01/31/2015 09:15:15 AM,01/31/2015 09:38:06 AM,01/31/2015 09:56:16 AM,Code 2 Transport,01/31/2015 10:25:31 AM,3RD ST/MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",150310950-60 -152093163,AM16,15079775,Medical Incident,07/28/2015,07/28/2015,07/28/2015 07:03:11 PM,07/28/2015 07:03:11 PM,07/28/2015 07:03:49 PM,07/28/2015 07:04:21 PM,07/28/2015 07:12:54 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,No Merit,07/28/2015 07:26:37 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",152093163-AM16 -152943421,72,15113125,Water Rescue,10/21/2015,10/21/2015,10/21/2015 07:58:30 PM,10/21/2015 08:01:28 PM,10/21/2015 08:02:44 PM,10/21/2015 08:03:21 PM,10/21/2015 08:14:35 PM,04/25/2016 01:07:38 PM,04/25/2016 01:07:38 PM,Fire,10/21/2015 08:56:13 PM,FS25,,94158,B03,4,2231,3,3,3,true,Fire,1,MEDIC,8,3,6,Mission Bay,"(37.7717396203256, -122.386663865791)",152943421-72 -153330285,E40,15127909,Medical Incident,11/29/2015,11/28/2015,11/29/2015 02:05:22 AM,11/29/2015 02:06:12 AM,11/29/2015 02:07:05 AM,11/29/2015 02:09:18 AM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,No Merit,11/29/2015 02:11:58 AM,27TH AV/TARAVAL ST,San Francisco,94116,B08,40,7471,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7426731137163, -122.484263608694)",153330285-E40 -141813738,66,14062849,Medical Incident,06/30/2014,06/30/2014,06/30/2014 11:02:35 PM,06/30/2014 11:03:11 PM,06/30/2014 11:03:48 PM,06/30/2014 11:05:06 PM,06/30/2014 11:07:23 PM,06/30/2014 11:22:53 PM,06/30/2014 11:37:43 PM,Code 2 Transport,07/01/2014 12:25:53 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",141813738-66 -142483861,E06,14086628,Medical Incident,09/05/2014,09/05/2014,09/05/2014 11:19:06 PM,09/05/2014 11:20:19 PM,09/05/2014 11:20:31 PM,09/05/2014 11:21:38 PM,09/05/2014 11:24:34 PM,04/25/2016 01:15:15 PM,04/25/2016 01:15:15 PM,Code 2 Transport,09/05/2014 11:27:44 PM,400 Block of GUERRERO ST,San Francisco,94110,B02,6,5235,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7635692964528, -122.423876975455)",142483861-E06 -151233333,RC3,15046814,Medical Incident,05/03/2015,05/03/2015,05/03/2015 09:59:18 PM,05/03/2015 10:00:00 PM,05/03/2015 10:12:41 PM,05/03/2015 10:13:55 PM,05/03/2015 10:17:09 PM,04/25/2016 01:10:48 PM,04/25/2016 01:10:48 PM,Against Medical Advice,05/03/2015 10:34:01 PM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7650513381945, -122.419668973861)",151233333-RC3 -141070354,E07,14036251,Medical Incident,04/17/2014,04/17/2014,04/17/2014 10:14:46 PM,04/17/2014 10:16:15 PM,04/17/2014 10:16:38 PM,04/17/2014 10:18:54 PM,04/17/2014 10:21:15 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Code 2 Transport,04/17/2014 10:26:41 PM,16TH ST/CAPP ST,SAN FRANCISCO,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",141070354-E07 -160980948,AM08,16038819,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:38:13 AM,04/07/2016 08:38:53 AM,04/07/2016 08:39:39 AM,04/07/2016 08:40:40 AM,04/07/2016 09:11:02 AM,04/07/2016 09:11:12 AM,04/07/2016 09:24:07 AM,Code 3 Transport,04/07/2016 10:04:06 AM,0 Block of RICO WAY,San Francisco,94123,B04,16,3563,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8050074623635, -122.439280584538)",160980948-AM08 -160983733,KM03,16039114,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:24:15 PM,04/07/2016 09:24:15 PM,04/07/2016 09:24:51 PM,04/07/2016 09:25:14 PM,04/07/2016 09:38:45 PM,04/07/2016 09:55:06 PM,04/07/2016 10:12:07 PM,Code 2 Transport,04/07/2016 10:41:47 PM,17TH ST/FLORIDA ST,San Francisco,94110,B02,29,5242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.76425158706, -122.411330180595)",160983733-KM03 -142703454,T01,14094837,Structure Fire,09/27/2014,09/27/2014,09/27/2014 08:41:49 PM,09/27/2014 08:42:40 PM,09/27/2014 08:43:27 PM,09/27/2014 08:44:36 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Fire,09/27/2014 09:31:08 PM,200 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Alarm,1,TRUCK,9,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",142703454-T01 -160923033,KM02,16036563,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:33:22 PM,04/01/2016 06:35:53 PM,04/01/2016 06:47:30 PM,04/01/2016 06:48:24 PM,04/01/2016 07:06:24 PM,04/01/2016 07:31:19 PM,04/01/2016 07:57:53 PM,Code 2 Transport,04/01/2016 08:22:11 PM,100 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7600276029721, -122.435966427346)",160923033-KM02 -143060564,E07,14108196,Medical Incident,11/02/2014,11/01/2014,11/02/2014 03:21:04 AM,11/02/2014 03:21:04 AM,11/02/2014 03:21:17 AM,11/02/2014 03:23:26 AM,11/02/2014 03:26:48 AM,04/25/2016 01:14:13 PM,04/25/2016 01:14:13 PM,No Merit,11/02/2014 03:28:14 AM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",143060564-E07 -142453353,82,14085488,Medical Incident,09/02/2014,09/02/2014,09/02/2014 08:02:42 PM,09/02/2014 08:04:52 PM,09/02/2014 08:05:41 PM,09/02/2014 08:05:49 PM,09/02/2014 08:10:55 PM,09/02/2014 08:20:46 PM,09/02/2014 08:27:16 PM,Code 2 Transport,09/02/2014 08:55:25 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7787626372516, -122.405839959524)",142453353-82 -142830796,E43,14099558,Medical Incident,10/10/2014,10/10/2014,10/10/2014 08:15:42 AM,10/10/2014 08:17:23 AM,10/10/2014 08:17:43 AM,10/10/2014 08:23:19 AM,10/10/2014 08:23:28 AM,04/25/2016 01:14:38 PM,04/25/2016 01:14:38 PM,Code 2 Transport,10/10/2014 08:43:15 AM,700 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7157877476846, -122.431679265077)",142830796-E43 -153081145,T03,15118302,Medical Incident,11/04/2015,11/04/2015,11/04/2015 09:44:21 AM,11/04/2015 09:45:23 AM,11/04/2015 09:46:22 AM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,04/25/2016 01:07:24 PM,Code 2 Transport,11/04/2015 09:49:10 AM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",153081145-T03 -161003047,76,16039927,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:37:39 PM,04/09/2016 08:40:37 PM,04/09/2016 08:41:05 PM,04/09/2016 08:41:22 PM,04/09/2016 09:03:05 PM,04/09/2016 09:06:51 PM,04/09/2016 09:15:19 PM,Code 2 Transport,04/09/2016 09:41:27 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",161003047-76 -151221895,SR1,15046300,Water Rescue,05/02/2015,05/02/2015,05/02/2015 02:29:43 PM,05/02/2015 02:30:50 PM,05/02/2015 02:34:26 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Fire,05/02/2015 02:36:59 PM,500 Block of SKYLINE BLVD,San Francisco,94132,B08,19,8772,3,3,3,false,Fire,1,SUPPORT,12,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",151221895-SR1 -150640045,T09,15024283,Other,03/05/2015,03/04/2015,03/05/2015 12:18:59 AM,03/05/2015 12:18:59 AM,03/05/2015 12:19:33 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Cancelled,03/05/2015 12:22:57 AM,2300 Block of 3RD ST,San Francisco,94107,B10,25,2533,3,3,3,false,Alarm,1,TRUCK,1,10,10,Potrero Hill,"(37.7592216556229, -122.388304288646)",150640045-T09 -142413007,E01,14083982,Medical Incident,08/29/2014,08/29/2014,08/29/2014 07:00:34 PM,08/29/2014 07:00:34 PM,08/29/2014 07:02:59 PM,08/29/2014 07:04:14 PM,08/29/2014 07:11:58 PM,04/25/2016 01:15:23 PM,04/25/2016 01:15:23 PM,Code 2 Transport,08/29/2014 07:33:46 PM,ELLIS ST/MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",142413007-E01 -152602192,B08,15099413,Alarms,09/17/2015,09/17/2015,09/17/2015 02:13:28 PM,09/17/2015 02:15:41 PM,09/17/2015 02:16:51 PM,09/17/2015 02:17:37 PM,09/17/2015 02:22:17 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Fire,09/17/2015 02:32:40 PM,4600 Block of OCEAN AVE,San Francisco,94132,B08,19,8814,3,3,3,false,Alarm,1,CHIEF,3,8,7,Sunset/Parkside,"(37.7320092887112, -122.492708907365)",152602192-B08 -152151759,B07,15081830,Alarms,08/03/2015,08/03/2015,08/03/2015 12:30:11 PM,08/03/2015 12:32:09 PM,08/03/2015 12:32:16 PM,08/03/2015 12:33:09 PM,08/03/2015 12:35:02 PM,04/25/2016 01:09:07 PM,04/25/2016 01:09:07 PM,Fire,08/03/2015 12:36:48 PM,100 Block of 6TH AVE,San Francisco,94118,B07,31,7126,3,3,3,false,Alarm,1,CHIEF,1,7,1,Inner Richmond,"(37.785829055853, -122.46470190439)",152151759-B07 -141970304,82,14068100,Medical Incident,07/16/2014,07/15/2014,07/16/2014 02:49:07 AM,07/16/2014 02:51:05 AM,07/16/2014 02:51:54 AM,07/16/2014 02:58:20 AM,07/16/2014 02:59:03 AM,07/16/2014 03:15:06 AM,07/16/2014 03:40:33 AM,Code 2 Transport,07/16/2014 04:14:34 AM,800 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7854130686566, -122.417880487161)",141970304-82 -160983612,66,16039103,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:45:46 PM,04/07/2016 08:46:33 PM,04/07/2016 08:49:52 PM,04/07/2016 08:49:52 PM,04/07/2016 08:54:48 PM,04/07/2016 09:27:35 PM,04/07/2016 09:57:44 PM,Code 2 Transport,04/07/2016 10:29:46 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160983612-66 -143093365,68,14109519,Medical Incident,11/05/2014,11/05/2014,11/05/2014 08:44:56 PM,11/05/2014 08:48:19 PM,11/05/2014 08:48:59 PM,11/05/2014 08:49:18 PM,11/05/2014 08:57:25 PM,04/25/2016 01:14:10 PM,04/25/2016 01:14:10 PM,Gone on Arrival,11/05/2014 09:01:40 PM,CHENERY ST/DIAMOND ST,San Francisco,94131,B06,26,8146,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7345078169797, -122.433879093161)",143093365-68 -142432670,E16,14084736,Structure Fire,08/31/2014,08/31/2014,08/31/2014 06:23:03 PM,08/31/2014 06:29:33 PM,08/31/2014 06:29:53 PM,08/31/2014 06:31:48 PM,08/31/2014 06:33:55 PM,04/25/2016 01:15:20 PM,04/25/2016 01:15:20 PM,Fire,08/31/2014 06:43:31 PM,2200 Block of BAY ST,San Francisco,94123,B04,16,4212,3,3,3,true,Fire,1,ENGINE,1,4,2,Marina,"(37.8016779500291, -122.444047061113)",142432670-E16 -152231014,E01,15084922,Medical Incident,08/11/2015,08/11/2015,08/11/2015 09:27:27 AM,08/11/2015 09:29:23 AM,08/11/2015 09:30:00 AM,08/11/2015 09:30:11 AM,08/11/2015 09:30:47 AM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Code 3 Transport,08/11/2015 09:48:44 AM,800 Block of FOLSOM ST,San Francisco,94107,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811056901316, -122.402224662374)",152231014-E01 -141781128,E40,14061359,Medical Incident,06/27/2014,06/27/2014,06/27/2014 11:07:50 AM,06/27/2014 11:10:02 AM,06/27/2014 11:10:59 AM,06/27/2014 11:12:17 AM,06/27/2014 11:16:39 AM,04/25/2016 01:16:32 PM,04/25/2016 01:16:32 PM,Code 2 Transport,06/27/2014 11:29:33 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",141781128-E40 -150230704,E51,15008830,Alarms,01/23/2015,01/23/2015,01/23/2015 08:23:15 AM,01/23/2015 08:24:39 AM,01/23/2015 08:25:08 AM,01/23/2015 08:27:00 AM,01/23/2015 08:27:49 AM,04/25/2016 01:12:40 PM,04/25/2016 01:12:40 PM,Fire,01/23/2015 08:36:26 AM,0 Block of KEYES AVE,Presidio,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.8007138815184, -122.455902073561)",150230704-E51 -160950312,AM24,16037504,Medical Incident,04/04/2016,04/03/2016,04/04/2016 04:06:32 AM,04/04/2016 04:06:32 AM,04/04/2016 04:08:29 AM,04/04/2016 04:09:09 AM,04/04/2016 04:48:36 AM,04/04/2016 04:48:39 AM,04/04/2016 05:07:00 AM,Code 2 Transport,04/04/2016 05:38:09 AM,0 Block of BACHE ST,San Francisco,94110,B06,32,5751,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7344393110914, -122.417593854342)",160950312-AM24 -141840254,E01,14063535,Medical Incident,07/03/2014,07/02/2014,07/03/2014 02:51:25 AM,07/03/2014 02:53:07 AM,07/03/2014 02:53:46 AM,07/03/2014 02:55:39 AM,07/03/2014 02:56:55 AM,04/25/2016 01:16:26 PM,04/25/2016 01:16:26 PM,Code 2 Transport,07/03/2014 03:05:52 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.78026973391, -122.406390271833)",141840254-E01 -142711203,81,14094988,Medical Incident,09/28/2014,09/28/2014,09/28/2014 10:14:54 AM,09/28/2014 10:16:22 AM,09/28/2014 10:16:39 AM,09/28/2014 10:16:48 AM,09/28/2014 10:20:51 AM,04/25/2016 01:14:51 PM,04/25/2016 01:14:51 PM,Fire,09/28/2014 10:22:22 AM,18TH ST/GUERRERO ST,San Francisco,94110,B02,7,5422,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7615656740721, -122.42380067092)",142711203-81 -160993831,70,16039506,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:17:59 PM,04/08/2016 10:18:48 PM,04/08/2016 10:25:07 PM,04/08/2016 10:27:48 PM,04/08/2016 10:31:10 PM,04/08/2016 10:49:22 PM,04/08/2016 11:01:44 PM,Code 2 Transport,04/08/2016 11:50:29 PM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160993831-70 -160992877,AM10,16039404,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:52:46 PM,04/08/2016 05:53:56 PM,04/08/2016 05:54:04 PM,04/08/2016 05:54:46 PM,04/08/2016 06:00:55 PM,04/08/2016 06:24:03 PM,04/08/2016 06:45:10 PM,Code 2 Transport,04/08/2016 07:24:18 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160992877-AM10 -153162617,KM11,15121500,Medical Incident,11/12/2015,11/12/2015,11/12/2015 04:12:56 PM,11/12/2015 04:12:56 PM,11/12/2015 04:13:53 PM,11/12/2015 04:15:19 PM,11/12/2015 04:28:37 PM,11/12/2015 04:52:39 PM,11/12/2015 05:13:50 PM,Code 2 Transport,11/12/2015 05:55:37 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",153162617-KM11 -143512268,E03,14125428,Medical Incident,12/17/2014,12/17/2014,12/17/2014 03:02:09 PM,12/17/2014 03:02:45 PM,12/17/2014 03:04:43 PM,12/17/2014 03:06:39 PM,12/17/2014 03:09:15 PM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Code 2 Transport,12/17/2014 03:14:57 PM,JONES ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",143512268-E03 -141523101,E07,14052373,Structure Fire,06/01/2014,06/01/2014,06/01/2014 10:16:24 PM,06/01/2014 10:16:24 PM,06/01/2014 10:16:35 PM,06/01/2014 10:17:34 PM,06/01/2014 10:19:04 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Fire,06/01/2014 10:19:31 PM,17TH ST/TREAT AV,San Francisco,94110,B02,7,5245,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.76382320884, -122.41358757035)",141523101-E07 -153030328,E10,15116078,Medical Incident,10/30/2015,10/29/2015,10/30/2015 02:59:08 AM,10/30/2015 02:59:08 AM,10/30/2015 02:59:55 AM,10/30/2015 03:02:43 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Patient Declined Transport,10/30/2015 03:06:24 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",153030328-E10 -161001368,50,16039733,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:40:54 AM,04/09/2016 11:40:54 AM,04/09/2016 11:41:05 AM,04/09/2016 11:41:12 AM,04/09/2016 11:49:33 AM,04/09/2016 12:07:39 PM,04/09/2016 12:21:29 PM,Code 2 Transport,04/09/2016 01:05:28 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",161001368-50 -152132853,74,15081220,Medical Incident,08/01/2015,08/01/2015,08/01/2015 06:15:27 PM,08/01/2015 06:15:27 PM,08/01/2015 06:15:27 PM,08/01/2015 06:15:27 PM,08/01/2015 06:15:27 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Against Medical Advice,08/01/2015 06:40:01 PM,2700 Block of 23RD ST,San Francisco,94110,B99,7,5476,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7544248344217, -122.407890478368)",152132853-74 -160931050,54,16036780,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:42:04 AM,04/02/2016 09:44:14 AM,04/02/2016 09:52:33 AM,04/02/2016 09:52:44 AM,04/02/2016 10:00:54 AM,04/02/2016 10:11:15 AM,04/02/2016 10:36:37 AM,Code 2 Transport,04/02/2016 10:49:41 AM,700 Block of FULTON ST,San Francisco,94102,B05,5,3521,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",160931050-54 -150462206,T02,15017944,Odor (Strange / Unknown),02/15/2015,02/15/2015,02/15/2015 02:54:39 PM,02/15/2015 02:57:30 PM,02/15/2015 02:58:24 PM,02/15/2015 03:02:35 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/15/2015 03:12:56 PM,STOCKTON ST/POST ST,San Francisco,94108,B01,1,1323,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7884994798068, -122.406771145217)",150462206-T02 -152453645,RC1,15093589,Medical Incident,09/02/2015,09/02/2015,09/02/2015 07:58:25 PM,09/02/2015 08:00:05 PM,09/02/2015 08:02:19 PM,09/02/2015 08:03:12 PM,09/02/2015 08:07:16 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Medical Examiner,09/02/2015 09:31:07 PM,500 Block of GRANT AVE,San Francisco,94108,B01,13,1314,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7921056209358, -122.405937157736)",152453645-RC1 -143210279,E03,14113532,Medical Incident,11/17/2014,11/16/2014,11/17/2014 03:22:00 AM,11/17/2014 03:24:08 AM,11/17/2014 03:24:32 AM,11/17/2014 03:26:52 AM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,Code 2 Transport,11/17/2014 03:40:30 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",143210279-E03 -142650696,RS1,14092615,Medical Incident,09/22/2014,09/22/2014,09/22/2014 08:00:49 AM,09/22/2014 08:02:11 AM,09/22/2014 08:02:59 AM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,04/25/2016 01:14:58 PM,Code 2 Transport,09/22/2014 08:04:52 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142650696-RS1 -142150208,71,14074412,Structure Fire,08/03/2014,08/02/2014,08/03/2014 01:24:06 AM,08/03/2014 01:24:42 AM,08/03/2014 01:24:51 AM,08/03/2014 01:25:09 AM,04/25/2016 01:15:52 PM,04/25/2016 01:15:52 PM,04/25/2016 01:15:52 PM,Other,08/03/2014 01:27:46 AM,COLUMBUS AV/MASON ST,San Francisco,94133,B01,28,1423,3,3,3,true,Alarm,1,MEDIC,5,1,3,Russian Hill,"(37.8021837702734, -122.41290808763)",142150208-71 -152691559,B04,15103066,Structure Fire,09/26/2015,09/26/2015,09/26/2015 11:56:15 AM,09/26/2015 11:56:15 AM,09/26/2015 11:56:37 AM,09/26/2015 11:57:26 AM,09/26/2015 12:00:26 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Fire,09/26/2015 12:09:59 PM,DIVISADERO ST/SUTTER ST,San Francisco,94115,B05,10,4155,3,3,3,false,Alarm,1,CHIEF,1,5,5,Japantown,"(37.7852475259262, -122.439872612659)",152691559-B04 -150101381,B03,15003918,Alarms,01/10/2015,01/10/2015,01/10/2015 11:46:46 AM,01/10/2015 11:48:05 AM,01/10/2015 11:48:56 AM,01/10/2015 11:50:33 AM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,04/25/2016 01:12:55 PM,Fire,01/10/2015 11:54:45 AM,300 Block of MISSION ST,San Francisco,94105,B03,35,2126,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",150101381-B03 -152410256,B01,15091727,Structure Fire,08/29/2015,08/28/2015,08/29/2015 01:24:08 AM,08/29/2015 01:24:52 AM,08/29/2015 01:25:10 AM,08/29/2015 01:26:16 AM,08/29/2015 01:29:58 AM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 01:33:12 AM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,false,Alarm,1,CHIEF,5,3,6,Tenderloin,"(37.7851245205483, -122.410307742137)",152410256-B01 -151803798,62,15068940,Medical Incident,06/29/2015,06/29/2015,06/29/2015 11:08:17 PM,06/29/2015 11:10:19 PM,06/29/2015 11:10:40 PM,06/29/2015 11:10:59 PM,06/29/2015 11:14:35 PM,06/29/2015 11:26:41 PM,06/29/2015 11:34:08 PM,Code 2 Transport,06/30/2015 12:07:39 AM,3900 Block of 17TH ST,San Francisco,94114,B05,6,5417,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.762462765244, -122.434659092708)",151803798-62 -153322662,77,15127774,Medical Incident,11/28/2015,11/28/2015,11/28/2015 05:44:19 PM,11/28/2015 05:46:38 PM,11/28/2015 05:47:26 PM,11/28/2015 05:50:08 PM,11/28/2015 06:00:48 PM,11/28/2015 06:08:42 PM,11/28/2015 06:26:33 PM,Code 2 Transport,11/28/2015 07:30:45 PM,500 Block of 35TH AVE,San Francisco,94121,B07,34,7251,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7786369475704, -122.495306373953)",153322662-77 -152071217,KM08,15078822,Medical Incident,07/26/2015,07/26/2015,07/26/2015 10:27:11 AM,07/26/2015 10:30:36 AM,07/26/2015 10:31:12 AM,07/26/2015 10:32:21 AM,07/26/2015 10:34:49 AM,07/26/2015 10:46:07 AM,07/26/2015 11:02:21 AM,Code 2 Transport,07/26/2015 11:35:56 AM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",152071217-KM08 -141170057,T01,14039400,Structure Fire,04/27/2014,04/26/2014,04/27/2014 04:01:25 AM,04/27/2014 04:01:25 AM,04/27/2014 04:01:34 AM,04/27/2014 04:04:10 AM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/27/2014 04:05:24 AM,800 Block of MARKET ST,SAN FRANCISCO,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",141170057-T01 -151173925,E03,15044437,Medical Incident,04/27/2015,04/27/2015,04/27/2015 11:29:29 PM,04/27/2015 11:30:48 PM,04/27/2015 11:30:58 PM,04/27/2015 11:32:28 PM,04/27/2015 11:34:22 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Code 2 Transport,04/27/2015 11:46:53 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",151173925-E03 -150123478,E38,15004929,Alarms,01/12/2015,01/12/2015,01/12/2015 09:14:20 PM,01/12/2015 09:15:44 PM,01/12/2015 09:15:55 PM,01/12/2015 09:17:15 PM,01/12/2015 09:19:09 PM,04/25/2016 01:12:52 PM,04/25/2016 01:12:52 PM,Fire,01/12/2015 09:24:17 PM,1600 Block of BROADWAY,San Francisco,94123,B04,38,3232,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7956860710912, -122.42424620746)",150123478-E38 -143400167,E21,14120571,Alarms,12/06/2014,12/05/2014,12/06/2014 12:59:09 AM,12/06/2014 01:01:15 AM,12/06/2014 01:01:44 AM,12/06/2014 01:02:48 AM,12/06/2014 01:05:49 AM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Fire,12/06/2014 01:12:18 AM,1700 Block of MCALLISTER ST,San Francisco,94117,B05,21,4254,3,3,3,false,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7774258159143, -122.440841432204)",143400167-E21 -142751218,B01,14096413,Other,10/02/2014,10/02/2014,10/02/2014 09:56:03 AM,10/02/2014 09:57:29 AM,10/02/2014 09:58:28 AM,10/02/2014 10:00:27 AM,10/02/2014 10:06:02 AM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Fire,10/02/2014 10:12:26 AM,0 Block of GRANT AVE,San Francisco,94108,B01,1,1321,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",142751218-B01 -152122030,E01,15080788,Medical Incident,07/31/2015,07/31/2015,07/31/2015 02:40:57 PM,07/31/2015 02:44:02 PM,07/31/2015 02:52:15 PM,07/31/2015 02:52:15 PM,07/31/2015 02:53:41 PM,04/25/2016 01:09:10 PM,04/25/2016 01:09:10 PM,Unable to Locate,07/31/2015 03:06:40 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",152122030-E01 -160943000,87,16037378,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:53:12 PM,04/03/2016 06:53:12 PM,04/03/2016 06:53:34 PM,04/03/2016 06:53:47 PM,04/03/2016 07:10:02 PM,04/03/2016 07:24:49 PM,04/03/2016 07:28:38 PM,Code 2 Transport,04/03/2016 08:08:00 PM,POLK ST/PINE ST,San Francisco,94109,B04,3,3122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",160943000-87 -151553088,AM08,15059233,Medical Incident,06/04/2015,06/04/2015,06/04/2015 06:38:24 PM,06/04/2015 06:38:57 PM,06/04/2015 06:40:14 PM,06/04/2015 06:40:45 PM,06/04/2015 06:49:25 PM,04/25/2016 01:10:12 PM,04/25/2016 01:10:12 PM,Other,06/04/2015 07:00:11 PM,1600 Block of GREAT HWY,San Francisco,94122,B08,23,7724,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7553466892581, -122.508687725993)",151553088-AM08 -142013323,84,14069721,Medical Incident,07/20/2014,07/20/2014,07/20/2014 11:00:23 PM,07/20/2014 11:00:23 PM,07/20/2014 11:01:38 PM,07/20/2014 11:01:49 PM,07/20/2014 11:07:45 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Patient Declined Transport,07/20/2014 11:38:57 PM,SOUTH VAN NESS AV/MISSION ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7730534532281, -122.418618217459)",142013323-84 -160921254,63,16036396,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:50:02 AM,04/01/2016 10:51:16 AM,04/01/2016 10:51:53 AM,04/01/2016 10:52:13 AM,04/01/2016 10:57:09 AM,04/01/2016 11:13:04 AM,04/01/2016 11:36:39 AM,Code 2 Transport,04/01/2016 12:00:29 PM,500 Block of RAMSELL ST,San Francisco,94132,B09,15,8435,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7206737484405, -122.466196907192)",160921254-63 -152120610,64,15080636,Medical Incident,07/31/2015,07/30/2015,07/31/2015 07:23:24 AM,07/31/2015 07:24:08 AM,07/31/2015 07:24:22 AM,07/31/2015 07:25:00 AM,07/31/2015 07:30:06 AM,07/31/2015 07:40:47 AM,07/31/2015 08:20:20 AM,Code 2 Transport,07/31/2015 08:41:27 AM,1100 Block of OAKDALE AVE,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",152120610-64 -150810978,72,15030977,Medical Incident,03/22/2015,03/22/2015,03/22/2015 09:36:02 AM,03/22/2015 09:36:02 AM,03/22/2015 09:37:55 AM,03/22/2015 09:38:26 AM,03/22/2015 09:45:38 AM,03/22/2015 09:59:50 AM,03/22/2015 10:11:17 AM,Code 2 Transport,03/22/2015 10:45:08 AM,0 Block of RUTH ST,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7232126211966, -122.436631289328)",150810978-72 -141811811,T17,14062697,Alarms,06/30/2014,06/30/2014,06/30/2014 01:50:51 PM,06/30/2014 01:52:20 PM,06/30/2014 01:52:38 PM,06/30/2014 01:54:09 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Fire,06/30/2014 01:57:45 PM,1500 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6324,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7245737128195, -122.401104242184)",141811811-T17 -150510142,E21,15019535,Medical Incident,02/20/2015,02/19/2015,02/20/2015 01:04:41 AM,02/20/2015 01:06:07 AM,02/20/2015 01:06:21 AM,02/20/2015 01:08:33 AM,02/20/2015 01:10:44 AM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Code 2 Transport,02/20/2015 01:12:00 AM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",150510142-E21 -151393576,E25,15052960,Electrical Hazard,05/19/2015,05/19/2015,05/19/2015 09:49:15 PM,05/19/2015 09:51:12 PM,05/19/2015 09:52:22 PM,05/19/2015 09:53:48 PM,05/19/2015 09:56:30 PM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/19/2015 10:04:39 PM,900 Block of MINNESOTA ST,San Francisco,94107,B10,37,2535,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",151393576-E25 -161000054,AM24,16039555,Medical Incident,04/09/2016,04/08/2016,04/09/2016 12:14:30 AM,04/09/2016 12:17:53 AM,04/09/2016 12:22:28 AM,04/09/2016 12:22:53 AM,04/09/2016 12:41:56 AM,04/09/2016 12:58:12 AM,04/09/2016 01:06:24 AM,Code 2 Transport,04/09/2016 01:39:31 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",161000054-AM24 -150274070,58,15010609,Medical Incident,01/27/2015,01/27/2015,01/27/2015 11:53:25 PM,01/27/2015 11:54:09 PM,01/27/2015 11:54:31 PM,01/27/2015 11:54:43 PM,01/27/2015 11:57:24 PM,01/28/2015 12:12:55 AM,01/28/2015 12:34:02 AM,Code 2 Transport,01/28/2015 01:07:00 AM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",150274070-58 -142520616,KM09,14087866,Medical Incident,09/09/2014,09/09/2014,09/09/2014 08:31:16 AM,09/09/2014 08:33:09 AM,09/09/2014 08:33:27 AM,09/09/2014 08:34:38 AM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,04/25/2016 01:15:12 PM,Unable to Locate,09/09/2014 08:43:09 AM,POTRERO AV/16TH ST,San Francisco,94103,B02,29,2351,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",142520616-KM09 -142562353,E39,14089469,Medical Incident,09/13/2014,09/13/2014,09/13/2014 03:42:13 PM,09/13/2014 03:43:39 PM,09/13/2014 03:47:11 PM,09/13/2014 03:48:49 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Code 2 Transport,09/13/2014 03:54:56 PM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",142562353-E39 -152550574,RC1,15097402,Medical Incident,09/12/2015,09/11/2015,09/12/2015 05:57:23 AM,09/12/2015 05:58:19 AM,09/12/2015 06:00:16 AM,09/12/2015 06:04:01 AM,09/12/2015 06:06:52 AM,04/25/2016 01:08:23 PM,04/25/2016 01:08:23 PM,Code 3 Transport,09/12/2015 06:17:26 AM,400 Block of PACIFIC AVE,San Francisco,94133,B01,13,1212,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,4,1,3,North Beach,"(37.7974015545937, -122.403291978554)",152550574-RC1 -160964217,AM20,16038231,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:43:03 PM,04/05/2016 11:43:03 PM,04/05/2016 11:44:14 PM,04/05/2016 11:45:13 PM,04/05/2016 11:47:34 PM,04/06/2016 12:08:10 AM,04/06/2016 12:15:05 AM,Code 2 Transport,04/06/2016 12:46:03 AM,LAGUNA ST/GROVE ST,San Francisco,94102,B02,36,3413,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7773881939183, -122.426452239181)",160964217-AM20 -151341965,E19,15050886,Medical Incident,05/14/2015,05/14/2015,05/14/2015 01:30:23 PM,05/14/2015 01:31:41 PM,05/14/2015 01:32:16 PM,05/14/2015 01:33:29 PM,05/14/2015 01:36:10 PM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,Code 2 Transport,05/14/2015 01:52:44 PM,ARELLANO AV/SERRANO DR,San Francisco,94132,B08,19,8682,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7201472076595, -122.479030446591)",151341965-E19 -161003584,70,16039985,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:07:48 PM,04/09/2016 11:07:48 PM,04/09/2016 11:08:49 PM,04/09/2016 11:08:59 PM,04/09/2016 11:20:30 PM,04/09/2016 11:32:15 PM,04/10/2016 12:27:05 AM,Code 2 Transport,04/10/2016 12:48:56 AM,600 Block of KEITH ST,San Francisco,94124,B10,25,6565,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371958241628, -122.382770663852)",161003584-70 -151102633,53,15041698,Medical Incident,04/20/2015,04/20/2015,04/20/2015 04:42:49 PM,04/20/2015 04:43:30 PM,04/20/2015 04:43:42 PM,04/20/2015 04:43:48 PM,04/20/2015 04:46:58 PM,04/20/2015 05:08:41 PM,04/20/2015 05:25:55 PM,Code 2 Transport,04/20/2015 05:57:00 PM,1700 Block of OAK ST,San Francisco,94117,B05,21,4524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.7718274800356, -122.448146140288)",151102633-53 -150051786,E03,15001858,Medical Incident,01/05/2015,01/05/2015,01/05/2015 01:09:15 PM,01/05/2015 01:11:19 PM,01/05/2015 01:11:32 PM,01/05/2015 01:12:33 PM,01/05/2015 01:15:35 PM,04/25/2016 01:13:01 PM,04/25/2016 01:13:01 PM,Code 2 Transport,01/05/2015 01:32:51 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",150051786-E03 -160981657,KM13,16038898,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:52:22 AM,04/07/2016 11:54:04 AM,04/07/2016 12:00:00 PM,04/07/2016 12:02:30 PM,04/07/2016 12:20:51 PM,04/07/2016 12:47:43 PM,04/07/2016 01:20:00 PM,Code 2 Transport,04/07/2016 01:55:40 PM,900 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160981657-KM13 -151270896,AM02,15048068,Medical Incident,05/07/2015,05/07/2015,05/07/2015 08:35:49 AM,05/07/2015 08:38:35 AM,05/07/2015 08:48:04 AM,05/07/2015 08:48:50 AM,05/07/2015 09:11:04 AM,05/07/2015 09:37:34 AM,05/07/2015 09:58:39 AM,Code 2 Transport,05/07/2015 10:24:54 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",151270896-AM02 -160962235,87,16038050,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:34:41 PM,04/05/2016 02:36:31 PM,04/05/2016 02:36:53 PM,04/05/2016 02:37:18 PM,04/05/2016 03:08:18 PM,04/05/2016 03:32:00 PM,04/05/2016 03:54:51 PM,Code 2 Transport,04/05/2016 04:42:34 PM,1400 Block of GRANT AVE,San Francisco,94133,B01,28,1266,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8001795612037, -122.40742149758)",160962235-87 -151182100,55,15044644,Medical Incident,04/28/2015,04/28/2015,04/28/2015 02:38:04 PM,04/28/2015 02:39:04 PM,04/28/2015 02:52:56 PM,04/28/2015 02:52:56 PM,04/28/2015 03:07:18 PM,04/28/2015 03:25:15 PM,04/28/2015 03:52:16 PM,Code 2 Transport,04/28/2015 04:13:02 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7770436202636, -122.413583483648)",151182100-55 -143123019,E38,14110637,Structure Fire,11/08/2014,11/08/2014,11/08/2014 07:08:14 PM,11/08/2014 07:08:14 PM,11/08/2014 07:08:40 PM,11/08/2014 07:09:23 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/08/2014 07:11:20 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,ENGINE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",143123019-E38 -150983517,T09,15037237,Structure Fire,04/08/2015,04/08/2015,04/08/2015 08:50:06 PM,04/08/2015 08:50:50 PM,04/08/2015 08:51:01 PM,04/08/2015 08:51:58 PM,04/25/2016 01:11:16 PM,04/25/2016 01:11:16 PM,04/25/2016 01:11:16 PM,Code 2 Transport,04/08/2015 09:05:35 PM,200 Block of TEDDY AVE,San Francisco,94134,B09,44,6311,3,3,3,false,Alarm,1,TRUCK,5,9,10,Visitacion Valley,"(37.7149172327739, -122.407517670009)",150983517-T09 -150832751,71,15031799,Medical Incident,03/24/2015,03/24/2015,03/24/2015 05:12:00 PM,03/24/2015 05:15:04 PM,03/24/2015 05:15:40 PM,03/24/2015 05:16:29 PM,03/24/2015 05:25:06 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 05:37:34 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",150832751-71 -151631203,FD00A,15062234,,06/12/2015,06/12/2015,06/12/2015 10:09:23 AM,06/12/2015 10:10:37 AM,06/12/2015 10:18:53 AM,06/12/2015 10:18:53 AM,06/12/2015 10:18:53 AM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/12/2015 10:18:56 AM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,3,3,3,false,Alarm,1,SUPPORT,2,5,5,Western Addition,"(37.7796580262541, -122.438306627071)",151631203-FD00A -160993746,68,16039498,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:53:55 PM,04/08/2016 09:55:53 PM,04/08/2016 10:00:06 PM,04/08/2016 10:00:06 PM,04/08/2016 10:05:14 PM,04/08/2016 10:38:40 PM,04/08/2016 11:18:42 PM,Code 2 Transport,04/08/2016 11:20:10 PM,1700 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",160993746-68 -141080314,T03,14036516,Medical Incident,04/18/2014,04/18/2014,04/18/2014 06:33:21 PM,04/18/2014 06:35:36 PM,04/18/2014 06:35:49 PM,04/18/2014 06:37:10 PM,04/18/2014 06:38:50 PM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,No Merit,04/18/2014 06:52:54 PM,1400 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3223,3,3,3,false,Non Life-threatening,1,TRUCK,1,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",141080314-T03 -160962377,56,16038062,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:09:28 PM,04/05/2016 03:11:04 PM,04/05/2016 03:11:46 PM,04/05/2016 03:12:25 PM,04/05/2016 03:25:53 PM,04/05/2016 03:43:20 PM,04/05/2016 04:03:59 PM,Code 2 Transport,04/05/2016 04:54:17 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",160962377-56 -150720791,88,15027407,Medical Incident,03/13/2015,03/13/2015,03/13/2015 08:12:45 AM,03/13/2015 08:12:45 AM,03/13/2015 08:13:21 AM,03/13/2015 08:13:55 AM,03/13/2015 08:42:21 AM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Patient Declined Transport,03/13/2015 08:58:22 AM,4600 Block of 3RD ST,San Francisco,94124,B10,17,6516,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360180524544, -122.390409391697)",150720791-88 -151161894,E02,15043849,Structure Fire,04/26/2015,04/26/2015,04/26/2015 02:14:15 PM,04/26/2015 02:14:18 PM,04/26/2015 02:14:26 PM,04/26/2015 02:16:29 PM,04/26/2015 02:17:25 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Cancelled,04/26/2015 02:18:19 PM,MASON ST/WASHINGTON ST,San Francisco,94108,B01,2,1415,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7945266519311, -122.41136404552)",151161894-E02 -160943449,57,16037432,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:37:14 PM,04/03/2016 09:37:45 PM,04/03/2016 09:38:01 PM,04/03/2016 09:38:10 PM,04/03/2016 09:40:47 PM,04/03/2016 10:12:41 PM,04/03/2016 10:37:12 PM,Code 2 Transport,04/03/2016 11:29:10 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",160943449-57 -153252707,74,15125206,Medical Incident,11/21/2015,11/21/2015,11/21/2015 04:49:41 PM,11/21/2015 04:50:29 PM,11/21/2015 04:51:22 PM,11/21/2015 04:51:52 PM,11/21/2015 04:55:09 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,No Merit,11/21/2015 04:59:06 PM,HARRIET ST/HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7793184597995, -122.407691082986)",153252707-74 -160951656,71,16037615,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:17:01 PM,04/04/2016 12:19:45 PM,04/04/2016 12:20:06 PM,04/04/2016 12:20:12 PM,04/04/2016 12:37:28 PM,04/04/2016 12:52:03 PM,04/04/2016 01:20:29 PM,Code 2 Transport,04/04/2016 01:41:41 PM,5100 Block of MISSION ST,San Francisco,94112,B09,43,6176,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7154728757373, -122.441686062166)",160951656-71 -160990881,AM06,16039225,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:06:02 AM,04/08/2016 09:06:44 AM,04/08/2016 09:07:27 AM,04/08/2016 09:08:41 AM,04/08/2016 09:13:18 AM,04/08/2016 09:24:03 AM,04/08/2016 09:35:33 AM,Code 3 Transport,04/08/2016 10:28:33 AM,0 Block of MIRABEL AVE,San Francisco,94110,B06,11,5657,2,A,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7464196657942, -122.416456065811)",160990881-AM06 -151771319,E34,15067338,Medical Incident,06/26/2015,06/26/2015,06/26/2015 10:49:39 AM,06/26/2015 10:49:39 AM,06/26/2015 10:49:59 AM,06/26/2015 10:50:38 AM,06/26/2015 10:53:33 AM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 10:55:27 AM,FULTON ST/LA PLAYA,San Francisco,94121,B07,34,7311,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7713960328361, -122.509894748816)",151771319-E34 -160940282,63,16037125,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:34:10 AM,04/03/2016 01:34:10 AM,04/03/2016 01:39:12 AM,04/03/2016 01:39:20 AM,04/03/2016 01:57:42 AM,04/03/2016 02:13:55 AM,04/03/2016 02:37:19 AM,Code 2 Transport,04/03/2016 02:49:34 AM,700 Block of TAYLOR ST,San Francisco,94109,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7892649467456, -122.412049085376)",160940282-63 -153463454,72,15133359,Medical Incident,12/12/2015,12/12/2015,12/12/2015 06:59:15 PM,12/12/2015 07:02:22 PM,12/12/2015 07:18:48 PM,12/12/2015 07:18:48 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Other,12/12/2015 07:19:43 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",153463454-72 -152332456,87,15088884,Medical Incident,08/21/2015,08/21/2015,08/21/2015 03:11:10 PM,08/21/2015 03:12:32 PM,08/21/2015 03:13:25 PM,08/21/2015 03:13:49 PM,08/21/2015 03:31:36 PM,08/21/2015 03:46:43 PM,08/21/2015 04:03:33 PM,Code 2 Transport,08/21/2015 04:48:09 PM,600 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",152332456-87 -160941548,AM02,16037242,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:36:33 AM,04/03/2016 11:36:33 AM,04/03/2016 11:37:13 AM,04/03/2016 11:38:00 AM,04/03/2016 11:49:25 AM,04/03/2016 11:58:55 AM,04/03/2016 12:33:09 PM,Code 2 Transport,04/03/2016 12:58:19 PM,LA PLAYA/JUDAH ST,San Francisco,94122,B08,23,7723,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7602823232257, -122.509141220867)",160941548-AM02 -151863001,72,15071150,Medical Incident,07/05/2015,07/05/2015,07/05/2015 07:04:44 PM,07/05/2015 07:04:44 PM,07/05/2015 07:06:46 PM,07/05/2015 07:07:11 PM,07/05/2015 07:09:28 PM,07/05/2015 07:38:10 PM,07/05/2015 08:02:43 PM,Code 2 Transport,07/05/2015 08:27:22 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",151863001-72 -160982120,56,16038938,Medical Incident,04/07/2016,04/07/2016,04/07/2016 01:53:58 PM,04/07/2016 01:54:30 PM,04/07/2016 01:54:49 PM,04/07/2016 01:55:36 PM,04/07/2016 02:20:13 PM,04/07/2016 02:36:20 PM,04/07/2016 02:49:38 PM,Code 2 Transport,04/07/2016 03:22:41 PM,500 Block of POST ST,San Francisco,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",160982120-56 -160972750,73,16038500,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:40:18 PM,04/06/2016 03:40:18 PM,04/06/2016 03:40:24 PM,04/06/2016 03:40:49 PM,04/06/2016 03:45:02 PM,04/06/2016 03:59:17 PM,04/06/2016 04:06:28 PM,Code 2 Transport,04/06/2016 04:31:02 PM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160972750-73 -160960631,53,16037911,Medical Incident,04/05/2016,04/04/2016,04/05/2016 07:52:20 AM,04/05/2016 07:53:30 AM,04/05/2016 07:54:50 AM,04/05/2016 07:55:00 AM,04/05/2016 08:14:28 AM,04/05/2016 08:35:52 AM,04/05/2016 08:57:28 AM,Code 2 Transport,04/05/2016 09:38:37 AM,100 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",160960631-53 -150333410,E17,15012907,Medical Incident,02/02/2015,02/02/2015,02/02/2015 09:04:22 PM,02/02/2015 09:05:02 PM,02/02/2015 09:05:41 PM,02/02/2015 09:07:07 PM,02/02/2015 09:09:38 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Code 2 Transport,02/02/2015 09:12:14 PM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",150333410-E17 -150810318,E32,15030888,Traffic Collision,03/22/2015,03/21/2015,03/22/2015 02:07:05 AM,03/22/2015 02:07:05 AM,03/22/2015 02:09:02 AM,03/22/2015 02:11:23 AM,03/22/2015 02:14:17 AM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,No Merit,03/22/2015 02:16:24 AM,0 Block of ADMIRAL AVE,San Francisco,94112,B09,32,8263,2,2,2,false,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7301242352377, -122.430492617968)",150810318-E32 -152892903,63,15111128,Medical Incident,10/16/2015,10/16/2015,10/16/2015 05:27:52 PM,10/16/2015 05:32:18 PM,10/16/2015 05:33:56 PM,10/16/2015 05:34:09 PM,10/16/2015 05:43:21 PM,04/25/2016 01:07:44 PM,04/25/2016 01:07:44 PM,Code 2 Transport,10/16/2015 05:44:40 PM,200 Block of THRIFT ST,San Francisco,94112,B09,33,8415,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7174874499717, -122.46143337515)",152892903-63 -153302446,86,15127139,Medical Incident,11/26/2015,11/26/2015,11/26/2015 07:36:37 PM,11/26/2015 07:38:20 PM,11/26/2015 07:38:32 PM,11/26/2015 07:38:45 PM,11/26/2015 07:49:01 PM,11/26/2015 08:06:48 PM,11/26/2015 08:35:08 PM,Code 2 Transport,11/26/2015 09:03:36 PM,3900 Block of NORIEGA ST,San Francisco,94122,B08,23,7662,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7528855969567, -122.505937216548)",153302446-86 -161002026,61,16039808,Medical Incident,04/09/2016,04/09/2016,04/09/2016 03:24:28 PM,04/09/2016 03:25:01 PM,04/09/2016 03:25:26 PM,04/09/2016 03:25:36 PM,04/09/2016 03:27:12 PM,04/09/2016 03:37:05 PM,04/09/2016 03:55:39 PM,Code 2 Transport,04/09/2016 04:36:44 PM,2400 Block of LOMBARD ST,San Francisco,94123,B04,16,4115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.799211828954, -122.441837584836)",161002026-61 -153443781,60,15132606,Medical Incident,12/10/2015,12/10/2015,12/10/2015 09:40:02 PM,12/10/2015 09:40:46 PM,12/10/2015 09:56:08 PM,12/10/2015 09:56:20 PM,12/10/2015 10:08:44 PM,12/10/2015 10:24:54 PM,12/10/2015 10:38:48 PM,Code 2 Transport,12/10/2015 11:00:30 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",153443781-60 -160951794,AM02,16037627,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:48:51 PM,04/04/2016 12:51:39 PM,04/04/2016 12:52:35 PM,04/04/2016 12:53:07 PM,04/04/2016 01:30:40 PM,04/04/2016 01:50:39 PM,04/04/2016 02:10:38 PM,Code 2 Transport,04/04/2016 02:51:01 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7642910155103, -122.418689416733)",160951794-AM02 -151742188,AM16,15066417,Traffic Collision,06/23/2015,06/23/2015,06/23/2015 02:48:07 PM,06/23/2015 02:49:02 PM,06/23/2015 02:49:38 PM,06/23/2015 02:50:59 PM,06/23/2015 02:58:22 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Patient Declined Transport,06/23/2015 03:42:57 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",151742188-AM16 -152922131,E18,15112238,Structure Fire,10/19/2015,10/19/2015,10/19/2015 02:48:56 PM,10/19/2015 02:48:56 PM,10/19/2015 02:49:09 PM,10/19/2015 02:49:57 PM,10/19/2015 02:55:17 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Fire,10/19/2015 03:12:28 PM,EUCALYPTUS DR/SYLVAN DR,San Francisco,94132,B08,19,8743,3,3,3,true,Alarm,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",152922131-E18 -143622700,T10,14129619,Alarms,12/28/2014,12/28/2014,12/28/2014 07:03:10 PM,12/28/2014 07:05:16 PM,12/28/2014 07:05:30 PM,12/28/2014 07:07:19 PM,12/28/2014 07:10:13 PM,04/25/2016 01:13:10 PM,04/25/2016 01:13:10 PM,Fire,12/28/2014 07:18:03 PM,0 Block of LOYOLA TER,San Francisco,94117,B05,21,4522,3,3,3,false,Alarm,1,TRUCK,2,5,1,Lone Mountain/USF,"(37.775869026469, -122.448995273702)",143622700-T10 -160984006,53,16039140,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 10:57:55 PM,04/07/2016 10:58:41 PM,04/07/2016 10:59:51 PM,04/07/2016 11:00:46 PM,04/07/2016 11:13:14 PM,04/07/2016 11:22:06 PM,04/08/2016 12:02:51 AM,Code 2 Transport,04/08/2016 12:37:53 AM,SAN BRUNO AV/CAMPBELL AV,San Francisco,94134,B10,44,6266,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7153903186308, -122.39954775395)",160984006-53 -142790038,59,14097995,Medical Incident,10/06/2014,10/05/2014,10/06/2014 12:15:07 AM,10/06/2014 12:16:12 AM,10/06/2014 12:16:49 AM,10/06/2014 12:17:19 AM,10/06/2014 12:24:28 AM,10/06/2014 12:37:18 AM,10/06/2014 12:45:10 AM,Code 2 Transport,10/06/2014 01:27:34 AM,13TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",142790038-59 -143631306,KM04,14129829,Medical Incident,12/29/2014,12/29/2014,12/29/2014 11:35:11 AM,12/29/2014 11:37:36 AM,12/29/2014 11:37:55 AM,12/29/2014 11:40:15 AM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Cancelled,12/29/2014 11:58:45 AM,1800 Block of 25TH ST,San Francisco,94107,B10,37,2615,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7521976465641, -122.397477711041)",143631306-KM04 -150963374,B07,15036552,Alarms,04/06/2015,04/06/2015,04/06/2015 09:19:23 PM,04/06/2015 09:23:16 PM,04/06/2015 09:23:25 PM,04/06/2015 09:25:34 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Fire,04/06/2015 09:51:57 PM,500 Block of 27TH AVE,San Francisco,94121,B07,14,7222,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7790279638161, -122.486876869791)",150963374-B07 -150160884,B10,15006235,Alarms,01/16/2015,01/16/2015,01/16/2015 08:58:45 AM,01/16/2015 09:00:03 AM,01/16/2015 09:00:50 AM,01/16/2015 09:02:06 AM,01/16/2015 09:06:40 AM,04/25/2016 01:12:48 PM,04/25/2016 01:12:48 PM,Fire,01/16/2015 09:07:39 AM,1100 Block of 26TH ST,San Francisco,94107,B10,25,2635,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7514316446928, -122.390804345826)",150160884-B10 -160973469,KM06,16038591,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:07:13 PM,04/06/2016 06:08:41 PM,04/06/2016 06:18:24 PM,04/06/2016 06:18:55 PM,04/06/2016 06:30:23 PM,04/06/2016 06:46:33 PM,04/06/2016 07:06:01 PM,Code 2 Transport,04/06/2016 07:25:56 PM,2800 Block of BALBOA ST,San Francisco,94121,B07,14,7225,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7761370214685, -122.489282129294)",160973469-KM06 -160930670,62,16036737,Medical Incident,04/02/2016,04/01/2016,04/02/2016 07:07:03 AM,04/02/2016 07:08:35 AM,04/02/2016 07:09:35 AM,04/02/2016 07:09:43 AM,04/02/2016 07:15:45 AM,04/02/2016 07:28:42 AM,04/02/2016 07:37:45 AM,Code 2 Transport,04/02/2016 08:11:20 AM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",160930670-62 -152922200,E01,15112245,Medical Incident,10/19/2015,10/19/2015,10/19/2015 03:07:48 PM,10/19/2015 03:07:48 PM,10/19/2015 03:08:26 PM,10/19/2015 03:10:50 PM,10/19/2015 03:10:50 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Patient Declined Transport,10/19/2015 03:13:53 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",152922200-E01 -160962818,KM02,16038098,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:50:28 PM,04/05/2016 04:52:23 PM,04/05/2016 04:52:45 PM,04/05/2016 04:53:28 PM,04/05/2016 05:02:38 PM,04/05/2016 05:23:29 PM,04/05/2016 05:50:29 PM,Code 2 Transport,04/05/2016 06:21:02 PM,4100 Block of NORIEGA ST,San Francisco,94122,B08,23,7725,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7527950009872, -122.507985239819)",160962818-KM02 -160980934,KM13,16038818,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:35:18 AM,04/07/2016 08:36:16 AM,04/07/2016 08:36:45 AM,04/07/2016 08:37:28 AM,04/07/2016 08:42:04 AM,04/07/2016 08:52:50 AM,04/07/2016 09:13:18 AM,Code 2 Transport,04/07/2016 09:56:42 AM,POLK ST/TURK ST,San Francisco,94102,B02,3,3114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7821692691963, -122.418993274637)",160980934-KM13 -143050927,55,14107841,Medical Incident,11/01/2014,10/31/2014,11/01/2014 04:29:56 AM,11/01/2014 04:30:52 AM,11/01/2014 04:31:51 AM,11/01/2014 04:32:27 AM,11/01/2014 04:36:52 AM,11/01/2014 04:54:12 AM,11/01/2014 04:57:25 AM,Code 2 Transport,11/01/2014 05:26:12 AM,LARKIN ST/ELLIS ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",143050927-55 -160953325,54,16037758,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:59:32 PM,04/04/2016 07:00:22 PM,04/04/2016 07:03:13 PM,04/04/2016 07:03:29 PM,04/04/2016 07:07:53 PM,04/04/2016 07:24:20 PM,04/04/2016 07:40:24 PM,Code 2 Transport,04/04/2016 07:52:48 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160953325-54 -142383918,E43,14082971,Medical Incident,08/26/2014,08/26/2014,08/26/2014 11:18:35 PM,08/26/2014 11:20:28 PM,08/26/2014 11:21:31 PM,08/26/2014 11:23:28 PM,08/26/2014 11:27:45 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Code 2 Transport,08/26/2014 11:34:47 PM,0 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",142383918-E43 -160991207,AM10,16039255,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:48:35 AM,04/08/2016 10:53:11 AM,04/08/2016 10:53:35 AM,04/08/2016 10:54:03 AM,04/08/2016 11:12:34 AM,04/08/2016 11:15:52 AM,04/08/2016 11:28:08 AM,Code 2 Transport,04/08/2016 11:58:05 AM,1300 Block of FAIRFAX AVE,San Francisco,94124,B10,25,6521,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.739663922403, -122.38438627487)",160991207-AM10 -161000517,89,16039625,Medical Incident,04/09/2016,04/08/2016,04/09/2016 04:26:00 AM,04/09/2016 04:27:06 AM,04/09/2016 04:28:07 AM,04/09/2016 04:28:19 AM,04/09/2016 04:37:21 AM,04/09/2016 05:01:19 AM,04/09/2016 05:16:17 AM,Code 2 Transport,04/09/2016 05:35:47 AM,0 Block of HOWARD ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7916972492914, -122.392134062208)",161000517-89 -150081752,E03,15003127,Medical Incident,01/08/2015,01/08/2015,01/08/2015 12:39:44 PM,01/08/2015 12:41:03 PM,01/08/2015 12:41:18 PM,01/08/2015 12:42:17 PM,01/08/2015 12:43:57 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 2 Transport,01/08/2015 12:53:10 PM,900 Block of HYDE ST,San Francisco,94109,B04,3,1561,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7895690055037, -122.417179187296)",150081752-E03 -160974101,AM16,16038660,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:39:16 PM,04/06/2016 08:39:54 PM,04/06/2016 08:40:21 PM,04/06/2016 08:41:01 PM,04/06/2016 08:43:27 PM,04/06/2016 09:20:44 PM,04/06/2016 09:30:11 PM,Code 2 Transport,04/06/2016 10:03:26 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160974101-AM16 -160952403,76,16037677,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:16:56 PM,04/04/2016 03:16:56 PM,04/04/2016 03:18:12 PM,04/04/2016 03:18:20 PM,04/04/2016 03:21:29 PM,04/04/2016 03:32:31 PM,04/04/2016 03:49:25 PM,Code 3 Transport,04/04/2016 04:36:43 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,A,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7662536102334, -122.425864046062)",160952403-76 -142341653,E43,14081318,Alarms,08/22/2014,08/22/2014,08/22/2014 12:22:30 PM,08/22/2014 12:24:18 PM,08/22/2014 12:24:37 PM,08/22/2014 12:25:18 PM,08/22/2014 12:27:48 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Fire,08/22/2014 12:34:52 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",142341653-E43 -160952656,52,16037695,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:19:11 PM,04/04/2016 04:19:11 PM,04/04/2016 04:19:55 PM,04/04/2016 04:20:04 PM,04/04/2016 04:23:34 PM,04/04/2016 04:38:20 PM,04/04/2016 04:47:34 PM,Code 2 Transport,04/04/2016 05:10:54 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160952656-52 -151130182,89,15042545,Medical Incident,04/23/2015,04/22/2015,04/23/2015 01:28:27 AM,04/23/2015 01:31:02 AM,04/23/2015 01:31:26 AM,04/23/2015 01:31:48 AM,04/23/2015 01:35:51 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,Patient Declined Transport,04/23/2015 02:00:30 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",151130182-89 -153120255,E21,15119782,Structure Fire,11/08/2015,11/07/2015,11/08/2015 01:55:30 AM,11/08/2015 01:57:11 AM,11/08/2015 01:57:53 AM,11/08/2015 01:59:04 AM,11/08/2015 02:00:30 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Fire,11/08/2015 02:03:25 AM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,3,3,3,false,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",153120255-E21 -152894247,AM20,15111245,Medical Incident,10/16/2015,10/16/2015,10/16/2015 11:35:34 PM,10/16/2015 11:38:06 PM,10/16/2015 11:38:37 PM,10/16/2015 11:38:59 PM,10/16/2015 11:47:41 PM,10/17/2015 12:12:11 AM,10/17/2015 12:24:00 AM,Code 3 Transport,10/17/2015 01:04:12 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",152894247-AM20 -142600336,67,14090722,Medical Incident,09/17/2014,09/16/2014,09/17/2014 04:16:03 AM,09/17/2014 04:16:30 AM,09/17/2014 04:16:50 AM,09/17/2014 04:17:01 AM,09/17/2014 04:30:50 AM,09/17/2014 04:45:34 AM,09/17/2014 05:01:15 AM,Code 2 Transport,09/17/2014 05:31:10 AM,3500 Block of ORTEGA ST,San Francisco,94122,B08,23,7646,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7513179271246, -122.501527685378)",142600336-67 -141762194,B02,14060776,Structure Fire,06/25/2014,06/25/2014,06/25/2014 03:12:14 PM,06/25/2014 03:14:03 PM,06/25/2014 03:14:33 PM,06/25/2014 03:15:51 PM,06/25/2014 03:18:54 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Code 3 Transport,06/25/2014 03:20:37 PM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,3,3,3,false,Alarm,1,CHIEF,5,2,5,Western Addition,"(37.7815345081004, -122.428135307501)",141762194-B02 -152230664,60,15084886,Medical Incident,08/11/2015,08/10/2015,08/11/2015 07:38:17 AM,08/11/2015 07:38:17 AM,08/11/2015 07:38:30 AM,08/11/2015 07:38:37 AM,08/11/2015 07:55:58 AM,04/25/2016 01:08:59 PM,04/25/2016 01:08:59 PM,Patient Declined Transport,08/11/2015 08:41:49 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",152230664-60 -160954163,55,16037834,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:41:44 PM,04/04/2016 11:44:04 PM,04/04/2016 11:44:17 PM,04/04/2016 11:44:32 PM,04/04/2016 11:49:08 PM,04/05/2016 12:00:12 AM,04/05/2016 12:10:29 AM,Code 2 Transport,04/05/2016 12:46:32 AM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",160954163-55 -143431113,E01,14121885,Medical Incident,12/09/2014,12/09/2014,12/09/2014 09:49:00 AM,12/09/2014 09:51:29 AM,12/09/2014 09:51:38 AM,12/09/2014 09:52:39 AM,12/09/2014 09:56:08 AM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,No Merit,12/09/2014 09:59:01 AM,2ND ST/STEVENSON ST,San Francisco,94105,B03,1,2144,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7888154965828, -122.400812304237)",143431113-E01 -161003271,AM24,16039953,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:49:34 PM,04/09/2016 09:49:34 PM,04/09/2016 09:50:14 PM,04/09/2016 09:51:31 PM,04/09/2016 09:54:42 PM,04/09/2016 10:05:18 PM,04/09/2016 10:15:52 PM,Code 2 Transport,04/09/2016 10:49:49 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",161003271-AM24 -160980486,85,16038781,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:56:03 AM,04/07/2016 04:57:01 AM,04/07/2016 04:57:11 AM,04/07/2016 04:57:18 AM,04/07/2016 05:00:56 AM,04/07/2016 05:20:31 AM,04/07/2016 05:34:02 AM,Code 2 Transport,04/07/2016 05:41:46 AM,100 Block of HEARST AV,San Francisco,94131,B09,26,8214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7306724174625, -122.440876078678)",160980486-85 -160940218,88,16037116,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:15:44 AM,04/03/2016 01:16:07 AM,04/03/2016 01:16:30 AM,04/03/2016 01:16:47 AM,04/03/2016 01:21:29 AM,04/03/2016 01:25:20 AM,04/03/2016 01:35:34 AM,Code 2 Transport,04/03/2016 02:23:28 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160940218-88 -161000885,86,16039670,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:47:52 AM,04/09/2016 08:48:37 AM,04/09/2016 08:51:14 AM,04/09/2016 08:51:14 AM,04/09/2016 08:57:05 AM,04/09/2016 09:10:23 AM,04/09/2016 09:27:38 AM,Code 2 Transport,04/09/2016 10:03:23 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",161000885-86 -150652649,B01,15024914,Alarms,03/06/2015,03/06/2015,03/06/2015 03:39:46 PM,03/06/2015 03:41:05 PM,03/06/2015 03:41:20 PM,03/06/2015 03:42:59 PM,03/06/2015 03:46:44 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Fire,03/06/2015 03:52:36 PM,2700 Block of TAYLOR ST,San Francisco,94133,B01,28,1433,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8077534960371, -122.415641041957)",150652649-B01 -141783183,76,14061565,Traffic Collision,06/27/2014,06/27/2014,06/27/2014 08:46:02 PM,06/27/2014 08:46:27 PM,06/27/2014 08:47:00 PM,06/27/2014 08:47:14 PM,06/27/2014 08:48:52 PM,04/25/2016 01:16:32 PM,04/25/2016 01:16:32 PM,Unable to Locate,06/27/2014 08:59:09 PM,POWELL ST/GEARY ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",141783183-76 -151521288,65,15057811,Medical Incident,06/01/2015,06/01/2015,06/01/2015 11:11:59 AM,06/01/2015 11:13:33 AM,06/01/2015 11:17:36 AM,06/01/2015 11:17:36 AM,06/01/2015 11:26:56 AM,06/01/2015 11:41:17 AM,06/01/2015 12:03:20 PM,Code 2 Transport,06/01/2015 12:31:15 PM,0 Block of LELAND AVE,San Francisco,94134,B10,44,6255,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7114374150913, -122.4042019699)",151521288-65 -152461391,T13,15093766,Structure Fire,09/03/2015,09/03/2015,09/03/2015 11:02:26 AM,09/03/2015 11:02:26 AM,09/03/2015 11:02:37 AM,09/03/2015 11:03:46 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Fire,09/03/2015 11:05:44 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7934507425915, -122.396414422165)",152461391-T13 -150182925,E34,15007230,Medical Incident,01/18/2015,01/18/2015,01/18/2015 08:02:42 PM,01/18/2015 08:04:59 PM,01/18/2015 08:05:53 PM,01/18/2015 08:08:28 PM,01/18/2015 08:09:16 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,Code 2 Transport,01/18/2015 08:26:08 PM,500 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7798321975251, -122.508894113463)",150182925-E34 -141120216,AR1,14037815,Structure Fire,04/22/2014,04/22/2014,04/22/2014 01:34:14 PM,04/22/2014 01:34:47 PM,04/22/2014 01:42:36 PM,04/22/2014 01:47:17 PM,04/22/2014 02:13:34 PM,04/25/2016 01:17:44 PM,04/25/2016 01:17:44 PM,Code 2 Transport,04/22/2014 06:53:09 PM,0 Block of WALTER ST,SAN FRANCISCO,94114,B05,6,5131,,3,3,false,Fire,1,INVESTIGATION,28,5,8,Castro/Upper Market,"(37.7683848780008, -122.432450783401)",141120216-AR1 -141370876,89,14046858,Medical Incident,05/17/2014,05/17/2014,05/17/2014 08:21:39 AM,05/17/2014 08:22:15 AM,05/17/2014 08:23:32 AM,05/17/2014 08:23:43 AM,05/17/2014 08:24:23 AM,05/17/2014 08:42:32 AM,05/17/2014 08:52:24 AM,Code 2 Transport,05/17/2014 09:27:57 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",141370876-89 -141160339,E42,14039295,Medical Incident,04/26/2014,04/26/2014,04/26/2014 08:37:20 PM,04/26/2014 08:38:36 PM,04/26/2014 08:39:35 PM,04/26/2014 08:41:12 PM,04/26/2014 08:45:10 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Code 2 Transport,04/26/2014 08:59:34 PM,300 Block of TEDDY AVE,SAN FRANCISCO,94134,B09,44,6312,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.715499055529, -122.409647993428)",141160339-E42 -142051722,T03,14070964,Medical Incident,07/24/2014,07/24/2014,07/24/2014 12:51:02 PM,07/24/2014 12:51:02 PM,07/24/2014 12:51:08 PM,07/24/2014 12:52:36 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,04/25/2016 01:16:03 PM,Code 2 Transport,07/24/2014 12:53:52 PM,500 Block of EDDY ST,San Francisco,94102,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",142051722-T03 -142220709,T06,14076975,Medical Incident,08/10/2014,08/09/2014,08/10/2014 07:30:46 AM,08/10/2014 07:31:32 AM,08/10/2014 07:33:53 AM,08/10/2014 07:36:04 AM,08/10/2014 07:37:29 AM,04/25/2016 01:15:44 PM,04/25/2016 01:15:44 PM,Code 2 Transport,08/10/2014 07:40:38 AM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",142220709-T06 -152413303,T08,15092017,Structure Fire,08/29/2015,08/29/2015,08/29/2015 06:48:44 PM,08/29/2015 06:50:09 PM,08/29/2015 06:50:28 PM,08/29/2015 06:53:39 PM,08/29/2015 06:53:39 PM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,Fire,08/29/2015 07:21:04 PM,100 Block of HENRY ADAMS ST,San Francisco,94103,B02,29,2355,3,3,3,false,Alarm,1,TRUCK,3,2,10,Mission Bay,"(37.7679576263106, -122.403747661473)",152413303-T08 -160983827,68,16039123,Traffic Collision,04/07/2016,04/07/2016,04/07/2016 09:55:52 PM,04/07/2016 09:55:52 PM,04/07/2016 09:56:12 PM,04/07/2016 09:56:23 PM,04/07/2016 10:03:20 PM,04/07/2016 10:21:27 PM,04/07/2016 10:30:18 PM,Code 2 Transport,04/07/2016 11:06:49 PM,VAN NESS AV/SUTTER ST,San Francisco,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",160983827-68 -141923876,T01,14066735,Structure Fire,07/11/2014,07/11/2014,07/11/2014 11:23:49 PM,07/11/2014 11:23:49 PM,07/11/2014 11:24:01 PM,07/11/2014 11:26:51 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,04/25/2016 01:16:16 PM,No Merit,07/11/2014 11:28:29 PM,STOCKTON ST/MARKET ST,San Francisco,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",141923876-T01 -160972681,62,16038493,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:23:34 PM,04/06/2016 03:25:56 PM,04/06/2016 03:26:13 PM,04/06/2016 03:26:23 PM,04/06/2016 03:33:03 PM,04/06/2016 03:45:30 PM,04/06/2016 03:50:45 PM,Code 2 Transport,04/06/2016 04:14:38 PM,GEARY BL/WEBSTER ST,San Francisco,94115,B04,5,3432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Japantown,"(37.7845682402461, -122.431204945516)",160972681-62 -151212717,E15,15045962,Medical Incident,05/01/2015,05/01/2015,05/01/2015 05:02:21 PM,05/01/2015 05:02:31 PM,05/01/2015 05:03:09 PM,05/01/2015 05:05:15 PM,05/01/2015 05:07:02 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Patient Declined Transport,05/01/2015 05:07:32 PM,300 Block of JULES AVE,San Francisco,94112,B09,15,8457,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7242989670231, -122.461184373042)",151212717-E15 -142102514,AM24,14072875,Medical Incident,07/29/2014,07/29/2014,07/29/2014 05:10:30 PM,07/29/2014 05:11:43 PM,07/29/2014 05:12:20 PM,07/29/2014 05:13:52 PM,07/29/2014 05:24:35 PM,07/29/2014 05:34:08 PM,07/29/2014 05:53:17 PM,Code 2 Transport,07/29/2014 06:26:49 PM,1900 Block of 14TH AVE,San Francisco,94116,B08,40,7368,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7517948389528, -122.470646308955)",142102514-AM24 -151263105,B03,15047888,Medical Incident,05/06/2015,05/06/2015,05/06/2015 06:30:55 PM,05/06/2015 06:30:55 PM,05/06/2015 06:31:25 PM,05/06/2015 06:31:41 PM,05/06/2015 06:36:58 PM,04/25/2016 01:10:45 PM,04/25/2016 01:10:45 PM,Code 2 Transport,05/06/2015 06:42:39 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,A,E,3,false,Potentially Life-Threatening,1,CHIEF,4,3,6,South of Market,"(37.7811458612596, -122.409026046516)",151263105-B03 -153463245,E17,15133346,Medical Incident,12/12/2015,12/12/2015,12/12/2015 06:17:44 PM,12/12/2015 06:17:44 PM,12/12/2015 06:18:57 PM,12/12/2015 06:20:54 PM,12/12/2015 06:25:55 PM,04/25/2016 01:06:40 PM,04/25/2016 01:06:40 PM,Code 2 Transport,12/12/2015 06:40:01 PM,0 Block of RAYMOND AVE,San Francisco,94134,B10,44,6255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121484523973, -122.404287839917)",153463245-E17 -141780325,B01,14061287,Alarms,06/27/2014,06/26/2014,06/27/2014 04:01:42 AM,06/27/2014 04:03:12 AM,06/27/2014 04:03:29 AM,06/27/2014 04:05:46 AM,06/27/2014 04:09:17 AM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/27/2014 04:12:00 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,false,Alarm,1,CHIEF,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",141780325-B01 -141332561,T08,14045407,Structure Fire,05/13/2014,05/13/2014,05/13/2014 04:55:18 PM,05/13/2014 04:55:18 PM,05/13/2014 04:57:58 PM,05/13/2014 05:00:05 PM,05/13/2014 05:00:18 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,Fire,05/13/2014 05:00:31 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",141332561-T08 -141341468,B03,14045687,Structure Fire,05/14/2014,05/14/2014,05/14/2014 11:17:11 AM,05/14/2014 11:17:59 AM,05/14/2014 11:18:35 AM,05/14/2014 11:20:32 AM,05/14/2014 11:29:57 AM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Fire,05/14/2014 11:53:36 AM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,false,Alarm,1,CHIEF,9,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",141341468-B03 -142604029,E01,14091082,Medical Incident,09/17/2014,09/17/2014,09/17/2014 11:31:44 PM,09/17/2014 11:32:38 PM,09/17/2014 11:34:03 PM,09/17/2014 11:35:01 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,No Merit,09/17/2014 11:43:16 PM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",142604029-E01 -161000630,75,16039637,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:25:06 AM,04/09/2016 06:26:15 AM,04/09/2016 06:26:28 AM,04/09/2016 06:26:51 AM,04/09/2016 06:29:39 AM,04/09/2016 06:37:23 AM,04/09/2016 06:56:30 AM,Code 2 Transport,04/09/2016 07:35:08 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",161000630-75 -142283697,B09,14079387,Gas Leak (Natural and LP Gases),08/16/2014,08/16/2014,08/16/2014 10:08:46 PM,08/16/2014 10:12:29 PM,08/16/2014 10:13:32 PM,08/16/2014 10:15:00 PM,08/16/2014 10:21:14 PM,04/25/2016 01:15:37 PM,04/25/2016 01:15:37 PM,Fire,08/16/2014 10:25:16 PM,300 Block of FONT BLVD,San Francisco,94132,B08,19,8423,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7170992839815, -122.476744283658)",142283697-B09 -143161370,E43,14111886,Medical Incident,11/12/2014,11/12/2014,11/12/2014 11:13:12 AM,11/12/2014 11:18:44 AM,11/12/2014 11:19:25 AM,11/12/2014 11:20:10 AM,11/12/2014 11:21:38 AM,04/25/2016 01:14:03 PM,04/25/2016 01:14:03 PM,Code 3 Transport,11/12/2014 11:32:26 AM,0 Block of CORDOVA ST,San Francisco,94112,B09,43,6224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7128542066496, -122.43602367503)",143161370-E43 -141040333,E41,14035218,Structure Fire,04/14/2014,04/14/2014,04/14/2014 08:47:35 PM,04/14/2014 08:48:16 PM,04/14/2014 08:48:25 PM,04/14/2014 08:49:08 PM,04/14/2014 08:51:41 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Fire,04/14/2014 08:58:22 PM,900 Block of BAY ST,SAN FRANCISCO,94109,B01,28,3134,3,3,3,false,Alarm,1,ENGINE,3,1,2,Russian Hill,"(37.8044682925217, -122.423012152019)",141040333-E41 -150611315,RS1,15023229,Medical Incident,03/02/2015,03/02/2015,03/02/2015 11:07:58 AM,03/02/2015 11:10:06 AM,03/02/2015 11:11:09 AM,03/02/2015 11:11:24 AM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Against Medical Advice,03/02/2015 11:12:35 AM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7742496611166, -122.414204535023)",150611315-RS1 -141432381,E05,14049135,Medical Incident,05/23/2014,05/23/2014,05/23/2014 04:29:31 PM,05/23/2014 04:29:31 PM,05/23/2014 04:30:52 PM,05/23/2014 04:31:54 PM,05/23/2014 04:35:19 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Code 2 Transport,05/23/2014 04:53:55 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",141432381-E05 -150701606,E05,15026714,Alarms,03/11/2015,03/11/2015,03/11/2015 12:11:42 PM,03/11/2015 12:13:02 PM,03/11/2015 12:13:27 PM,03/11/2015 12:14:43 PM,03/11/2015 12:16:03 PM,04/25/2016 01:11:47 PM,04/25/2016 01:11:47 PM,Fire,03/11/2015 12:21:48 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",150701606-E05 -151100258,E01,15041476,Medical Incident,04/20/2015,04/19/2015,04/20/2015 02:56:00 AM,04/20/2015 03:01:27 AM,04/20/2015 03:01:40 AM,04/20/2015 03:03:12 AM,04/20/2015 03:05:41 AM,04/25/2016 01:11:04 PM,04/25/2016 01:11:04 PM,No Merit,04/20/2015 03:06:40 AM,5TH ST/JESSIE ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7831577478943, -122.407015679867)",151100258-E01 -150133327,E18,15005304,Medical Incident,01/13/2015,01/13/2015,01/13/2015 07:34:35 PM,01/13/2015 07:38:17 PM,01/13/2015 07:46:15 PM,01/13/2015 07:47:35 PM,01/13/2015 07:52:14 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Code 2 Transport,01/13/2015 08:08:12 PM,1800 Block of VISITACION AVE,San Francisco,94134,B08,44,7523,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,McLaren Park,"(37.7162666820869, -122.414215025813)",150133327-E18 -160921837,86,16036452,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:38:35 PM,04/01/2016 01:41:21 PM,04/01/2016 01:41:43 PM,04/01/2016 01:42:04 PM,04/01/2016 01:52:03 PM,04/01/2016 02:05:17 PM,04/01/2016 02:26:36 PM,Code 2 Transport,04/01/2016 02:47:56 PM,600 Block of ANDOVER ST,San Francisco,94110,B06,32,5751,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7358356078054, -122.416669530055)",160921837-86 -141601144,KM04,14055130,Medical Incident,06/09/2014,06/09/2014,06/09/2014 11:09:05 AM,06/09/2014 11:09:33 AM,06/09/2014 11:10:38 AM,06/09/2014 11:12:42 AM,06/09/2014 11:15:15 AM,04/25/2016 01:16:52 PM,04/25/2016 01:16:52 PM,Patient Declined Transport,06/09/2014 11:54:38 AM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7584203036531, -122.418963082325)",141601144-KM04 -152720726,E28,15104044,Medical Incident,09/29/2015,09/29/2015,09/29/2015 08:15:14 AM,09/29/2015 08:15:16 AM,09/29/2015 08:15:48 AM,09/29/2015 08:16:35 AM,09/29/2015 08:19:52 AM,04/25/2016 01:08:04 PM,04/25/2016 01:08:04 PM,Code 2 Transport,09/29/2015 08:29:43 AM,MASON ST/LOMBARD ST,San Francisco,94133,B01,28,1423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8028276981651, -122.413034336779)",152720726-E28 -160933895,62,16037081,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:15:33 PM,04/02/2016 11:18:00 PM,04/02/2016 11:18:24 PM,04/02/2016 11:18:39 PM,04/02/2016 11:26:07 PM,04/02/2016 11:43:37 PM,04/03/2016 12:03:00 AM,Code 2 Transport,04/03/2016 12:35:57 AM,0 Block of HAIGHT ST,San Francisco,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7730003350445, -122.422982934489)",160933895-62 -150540773,E42,15020651,Medical Incident,02/23/2015,02/23/2015,02/23/2015 08:33:54 AM,02/23/2015 08:36:07 AM,02/23/2015 08:40:45 AM,02/23/2015 08:43:24 AM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Medical Examiner,02/23/2015 08:43:52 AM,100 Block of ELLERT ST,San Francisco,94110,B06,32,5742,E,E,3,true,Potentially Life-Threatening,1,ENGINE,5,6,9,Bernal Heights,"(37.7384112563215, -122.417199146201)",150540773-E42 -161001770,KM09,16039782,Medical Incident,04/09/2016,04/09/2016,04/09/2016 01:54:55 PM,04/09/2016 01:55:53 PM,04/09/2016 01:58:28 PM,04/09/2016 01:59:07 PM,04/09/2016 02:06:26 PM,04/09/2016 02:25:50 PM,04/09/2016 02:45:17 PM,Code 2 Transport,04/09/2016 03:19:51 PM,0 Block of RAMONA AVE,San Francisco,94103,B02,6,5214,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,2,8,Mission,"(37.7671451020863, -122.42534582533)",161001770-KM09 -152611849,E02,15099750,Medical Incident,09/18/2015,09/18/2015,09/18/2015 12:39:56 PM,09/18/2015 12:39:56 PM,09/18/2015 12:40:19 PM,09/18/2015 12:41:44 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/18/2015 12:44:53 PM,TAYLOR ST/JEFFERSON ST,San Francisco,94133,B01,28,1433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.808214052974, -122.41580242723)",152611849-E02 -161002372,79,16039848,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:09:15 PM,04/09/2016 05:09:15 PM,04/09/2016 05:10:43 PM,04/09/2016 05:10:51 PM,04/09/2016 05:28:11 PM,04/09/2016 05:48:43 PM,04/09/2016 05:56:53 PM,Code 2 Transport,04/09/2016 06:25:18 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",161002372-79 -160940688,AM22,16037166,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:51:27 AM,04/03/2016 05:54:28 AM,04/03/2016 05:55:10 AM,04/03/2016 05:56:13 AM,04/03/2016 05:59:32 AM,04/03/2016 06:12:42 AM,04/03/2016 06:26:37 AM,Code 3 Transport,04/03/2016 07:34:05 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",160940688-AM22 -142570994,E40,14089722,Medical Incident,09/14/2014,09/14/2014,09/14/2014 09:32:51 AM,09/14/2014 09:33:58 AM,09/14/2014 09:34:41 AM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Code 2 Transport,09/14/2014 09:43:06 AM,1700 Block of 22ND AVE,San Francisco,94122,B08,18,7446,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7550294506836, -122.479821287281)",142570994-E40 -143282502,72,14116369,Medical Incident,11/24/2014,11/24/2014,11/24/2014 04:05:27 PM,11/24/2014 04:07:41 PM,11/24/2014 04:09:18 PM,11/24/2014 04:09:44 PM,11/24/2014 04:12:50 PM,11/24/2014 04:26:15 PM,11/24/2014 04:46:38 PM,Code 2 Transport,11/24/2014 05:57:09 PM,1600 Block of GENEVA AVE,San Francisco,94112,B09,43,6172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7115816415732, -122.427965645504)",143282502-72 -151822534,E44,15069538,Gas Leak (Natural and LP Gases),07/01/2015,07/01/2015,07/01/2015 03:54:32 PM,07/01/2015 03:55:27 PM,07/01/2015 03:56:05 PM,07/01/2015 03:56:39 PM,07/01/2015 03:59:11 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Fire,07/01/2015 04:05:30 PM,200 Block of LELAND AVE,San Francisco,94134,B09,44,6256,3,3,3,false,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7126284936114, -122.407863164797)",151822534-E44 -160932044,82,16036897,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:33:10 PM,04/02/2016 02:35:19 PM,04/02/2016 02:42:04 PM,04/02/2016 02:42:10 PM,04/02/2016 02:48:52 PM,04/02/2016 03:07:27 PM,04/02/2016 03:27:50 PM,Code 2 Transport,04/02/2016 03:53:42 PM,1300 Block of 39TH AVE,San Francisco,94122,B08,23,7626,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7616832994128, -122.498558977966)",160932044-82 -142953678,E01,14104196,Alarms,10/22/2014,10/22/2014,10/22/2014 10:11:28 PM,10/22/2014 10:13:53 PM,10/22/2014 10:14:15 PM,10/22/2014 10:15:44 PM,10/22/2014 10:17:44 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Fire,10/22/2014 10:34:07 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",142953678-E01 -150621332,52,15023618,Medical Incident,03/03/2015,03/03/2015,03/03/2015 10:34:49 AM,03/03/2015 10:35:34 AM,03/03/2015 10:36:11 AM,03/03/2015 10:36:37 AM,03/03/2015 10:45:27 AM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,Patient Declined Transport,03/03/2015 11:14:14 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",150621332-52 -160942493,61,16037329,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:21:17 PM,04/03/2016 04:24:16 PM,04/03/2016 04:25:11 PM,04/03/2016 04:25:19 PM,04/03/2016 04:31:51 PM,04/03/2016 04:42:35 PM,04/03/2016 04:53:25 PM,Code 2 Transport,04/03/2016 05:20:54 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160942493-61 -152982398,KM01,15114487,Medical Incident,10/25/2015,10/25/2015,10/25/2015 04:43:39 PM,10/25/2015 04:46:18 PM,10/25/2015 04:48:39 PM,10/25/2015 04:49:22 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,No Merit,10/25/2015 04:56:18 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",152982398-KM01 -150692001,T01,15026373,Alarms,03/10/2015,03/10/2015,03/10/2015 02:29:00 PM,03/10/2015 02:30:30 PM,03/10/2015 02:30:44 PM,03/10/2015 02:31:52 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 02:32:53 PM,300 Block of PINE ST,San Francisco,94104,B01,13,1165,3,3,3,false,Alarm,1,TRUCK,5,1,3,Financial District/South Beach,"(37.7919141534886, -122.402017229103)",150692001-T01 -152971154,E21,15113995,Outside Fire,10/24/2015,10/24/2015,10/24/2015 09:50:09 AM,10/24/2015 09:51:55 AM,10/24/2015 09:52:07 AM,10/24/2015 09:52:26 AM,10/24/2015 09:57:12 AM,04/25/2016 01:07:36 PM,04/25/2016 01:07:36 PM,Fire,10/24/2015 10:00:20 AM,GROVE ST/BUCHANAN ST,San Francisco,94102,B02,5,3424,3,3,3,false,Fire,1,ENGINE,1,2,5,Hayes Valley,"(37.7771781151663, -122.42810097686)",152971154-E21 -160974267,86,16038679,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:34:01 PM,04/06/2016 09:34:47 PM,04/06/2016 09:35:43 PM,04/06/2016 09:36:00 PM,04/06/2016 09:43:09 PM,04/06/2016 09:49:26 PM,04/06/2016 10:02:32 PM,Code 2 Transport,04/06/2016 10:33:31 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160974267-86 -151952922,T06,15074497,Alarms,07/14/2015,07/14/2015,07/14/2015 05:59:06 PM,07/14/2015 06:01:10 PM,07/14/2015 06:01:21 PM,07/14/2015 06:02:45 PM,07/14/2015 06:04:00 PM,04/25/2016 01:09:28 PM,04/25/2016 01:09:28 PM,Fire,07/14/2015 06:12:31 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",151952922-T06 -153173465,AM20,15122006,Medical Incident,11/13/2015,11/13/2015,11/13/2015 07:26:12 PM,11/13/2015 07:27:02 PM,11/13/2015 07:28:02 PM,11/13/2015 07:28:48 PM,11/13/2015 07:38:43 PM,11/13/2015 07:52:29 PM,11/13/2015 08:29:20 PM,Code 2 Transport,11/13/2015 09:00:03 PM,100 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8199670399591, -122.37426944654)",153173465-AM20 -160970066,AM22,16038244,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:27:10 AM,04/06/2016 12:27:10 AM,04/06/2016 12:27:24 AM,04/06/2016 12:27:53 AM,04/06/2016 12:30:32 AM,04/06/2016 12:46:50 AM,04/06/2016 01:02:53 AM,Code 2 Transport,04/06/2016 01:55:13 AM,BUCHANAN ST/CHESTNUT ST,San Francisco,94123,B04,16,3445,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.8012356976907, -122.432957626885)",160970066-AM22 -143433115,B04,14122054,Gas Leak (Natural and LP Gases),12/09/2014,12/09/2014,12/09/2014 05:40:57 PM,12/09/2014 05:42:12 PM,12/09/2014 05:42:35 PM,12/09/2014 05:42:56 PM,12/09/2014 05:50:37 PM,04/25/2016 01:13:33 PM,04/25/2016 01:13:33 PM,Fire,12/09/2014 06:08:45 PM,1400 Block of WALLER ST,San Francisco,94117,B05,12,4512,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7690761306116, -122.447167289368)",143433115-B04 -160954124,KM07,16037832,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:19:12 PM,04/04/2016 11:23:30 PM,04/04/2016 11:24:09 PM,04/04/2016 11:24:41 PM,04/04/2016 11:27:44 PM,04/04/2016 11:37:48 PM,04/04/2016 11:46:09 PM,Code 2 Transport,04/05/2016 12:07:49 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160954124-KM07 -150312966,E43,15012088,Structure Fire,01/31/2015,01/31/2015,01/31/2015 06:44:48 PM,01/31/2015 06:45:38 PM,01/31/2015 06:46:15 PM,01/31/2015 06:47:10 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,01/31/2015 06:52:07 PM,0 Block of LIEBIG ST,San Francisco,94112,B09,33,8357,3,3,3,true,Alarm,1,ENGINE,8,9,11,Outer Mission,"(37.7089888345409, -122.456754288707)",150312966-E43 -143523171,E15,14125883,Medical Incident,12/18/2014,12/18/2014,12/18/2014 06:38:24 PM,12/18/2014 06:38:24 PM,12/18/2014 06:38:59 PM,12/18/2014 06:40:26 PM,12/18/2014 06:43:30 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Patient Declined Transport,12/18/2014 06:50:05 PM,300 Block of GARFIELD ST,San Francisco,94132,B09,33,8433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7197369271653, -122.465806378562)",143523171-E15 -153070629,59,15117865,Structure Fire,11/03/2015,11/02/2015,11/03/2015 07:30:22 AM,11/03/2015 07:31:15 AM,11/03/2015 07:31:48 AM,11/03/2015 07:31:56 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/03/2015 07:35:23 AM,LARCH ST/LAGUNA ST,San Francisco,94102,B02,5,3426,3,3,3,true,Alarm,1,MEDIC,5,2,5,Western Addition,"(37.7815822902533, -122.427298600182)",153070629-59 -160963841,72,16038193,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:23:14 PM,04/05/2016 09:23:39 PM,04/05/2016 09:23:51 PM,04/05/2016 09:24:15 PM,04/05/2016 09:28:58 PM,04/05/2016 09:54:26 PM,04/05/2016 10:12:46 PM,Code 2 Transport,04/05/2016 11:17:37 PM,3200 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7447384333683, -122.420517921043)",160963841-72 -141940413,85,14067163,Medical Incident,07/13/2014,07/12/2014,07/13/2014 02:36:39 AM,07/13/2014 02:36:39 AM,07/13/2014 02:36:51 AM,07/13/2014 02:37:16 AM,07/13/2014 02:49:16 AM,07/13/2014 03:05:23 AM,07/13/2014 03:15:16 AM,Code 2 Transport,07/13/2014 03:47:59 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",141940413-85 -160982257,77,16038961,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:27:10 PM,04/07/2016 02:27:10 PM,04/07/2016 02:28:07 PM,04/07/2016 02:28:25 PM,04/07/2016 02:37:10 PM,04/07/2016 02:46:05 PM,04/07/2016 03:03:52 PM,Code 2 Transport,04/07/2016 03:33:24 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160982257-77 -160960316,AM20,16037874,Medical Incident,04/05/2016,04/04/2016,04/05/2016 04:09:51 AM,04/05/2016 04:13:22 AM,04/05/2016 04:13:28 AM,04/05/2016 04:14:04 AM,04/05/2016 04:19:11 AM,04/05/2016 04:41:05 AM,04/05/2016 05:11:56 AM,Code 2 Transport,04/05/2016 05:12:07 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160960316-AM20 -152703430,E04,15103614,Medical Incident,09/27/2015,09/27/2015,09/27/2015 09:45:03 PM,09/27/2015 09:48:22 PM,09/27/2015 09:48:34 PM,09/27/2015 09:49:52 PM,09/27/2015 09:51:20 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Code 2 Transport,09/27/2015 09:54:58 PM,100 Block of CHANNEL,San Francisco,94158,B03,8,2226,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7743802809644, -122.390735918846)",152703430-E04 -152603673,75,15099545,Medical Incident,09/17/2015,09/17/2015,09/17/2015 08:46:10 PM,09/17/2015 08:46:10 PM,09/17/2015 08:48:14 PM,09/17/2015 08:48:21 PM,09/17/2015 09:02:14 PM,09/17/2015 09:12:02 PM,09/17/2015 09:19:53 PM,Code 2 Transport,09/17/2015 09:41:30 PM,1100 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,2,C,3,true,Non Life-threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",152603673-75 -142632787,T13,14092102,Alarms,09/20/2014,09/20/2014,09/20/2014 06:12:07 PM,09/20/2014 06:15:15 PM,09/20/2014 06:15:38 PM,09/20/2014 06:16:13 PM,09/20/2014 06:23:15 PM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Fire,09/20/2014 06:34:25 PM,0 Block of AUGUST ALY,San Francisco,94133,B01,2,1352,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7996793592902, -122.411464011148)",142632787-T13 -141220414,89,14041519,Medical Incident,05/02/2014,05/02/2014,05/02/2014 11:51:24 PM,05/02/2014 11:53:13 PM,05/02/2014 11:53:56 PM,05/02/2014 11:54:03 PM,05/03/2014 12:09:30 AM,05/03/2014 12:24:06 AM,05/03/2014 12:30:37 AM,Code 2 Transport,05/03/2014 12:57:19 AM,0 Block of ESSEX ST,SAN FRANCISCO,94105,B03,35,2136,,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",141220414-89 -161001255,85,16039715,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:59:59 AM,04/09/2016 11:01:35 AM,04/09/2016 11:07:57 AM,04/09/2016 11:08:23 AM,04/09/2016 11:24:03 AM,04/09/2016 11:34:02 AM,04/09/2016 11:55:32 AM,Code 3 Transport,04/09/2016 12:51:26 PM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",161001255-85 -160980269,71,16038751,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:21:55 AM,04/07/2016 02:22:57 AM,04/07/2016 02:23:16 AM,04/07/2016 02:23:22 AM,04/07/2016 02:31:16 AM,04/07/2016 02:56:37 AM,04/07/2016 03:27:30 AM,Code 2 Transport,04/07/2016 03:57:33 AM,4400 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",160980269-71 -160983642,KM07,16039105,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:55:54 PM,04/07/2016 08:56:59 PM,04/07/2016 08:57:17 PM,04/07/2016 08:58:20 PM,04/07/2016 09:06:01 PM,04/07/2016 09:26:31 PM,04/07/2016 09:55:34 PM,Code 2 Transport,04/07/2016 10:25:19 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160983642-KM07 -151662715,T15,15063571,Structure Fire,06/15/2015,06/15/2015,06/15/2015 05:40:18 PM,06/15/2015 05:40:18 PM,06/15/2015 05:40:31 PM,06/15/2015 05:40:50 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Fire,06/15/2015 05:47:18 PM,ATHENS ST/PERSIA AV,San Francisco,94112,B09,43,6156,3,3,3,false,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.7200903159964, -122.429599155572)",151662715-T15 -142572260,E01,14089845,Medical Incident,09/14/2014,09/14/2014,09/14/2014 04:59:20 PM,09/14/2014 05:01:15 PM,09/14/2014 05:03:01 PM,09/14/2014 05:05:27 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,04/25/2016 01:15:06 PM,Code 2 Transport,09/14/2014 05:11:21 PM,POWELL ST/GEARY ST,San Francisco,94102,B01,1,1363,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",142572260-E01 -160933107,AM22,16037007,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:26:33 PM,04/02/2016 07:26:55 PM,04/02/2016 07:27:21 PM,04/02/2016 07:28:00 PM,04/02/2016 07:32:34 PM,04/02/2016 07:49:43 PM,04/02/2016 08:06:45 PM,Code 2 Transport,04/02/2016 08:44:48 PM,400 Block of LIBERTY ST,San Francisco,94114,B06,11,5452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7569826190885, -122.432121595722)",160933107-AM22 -152464248,61,15094049,Medical Incident,09/03/2015,09/03/2015,09/03/2015 11:30:12 PM,09/03/2015 11:32:01 PM,09/03/2015 11:32:16 PM,09/03/2015 11:32:38 PM,09/03/2015 11:42:17 PM,09/03/2015 11:59:32 PM,09/04/2015 12:17:23 AM,Code 2 Transport,09/04/2015 12:49:24 AM,100 Block of TOPEKA AVE,San Francisco,94124,B10,42,6446,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7337492510332, -122.399013429976)",152464248-61 -160992093,AM16,16039335,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:42:38 PM,04/08/2016 02:43:58 PM,04/08/2016 02:46:50 PM,04/08/2016 02:47:15 PM,04/08/2016 03:02:23 PM,04/08/2016 03:12:15 PM,04/08/2016 03:21:33 PM,Code 2 Transport,04/08/2016 03:52:26 PM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",160992093-AM16 -160980266,AM20,16038750,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:18:27 AM,04/07/2016 02:20:28 AM,04/07/2016 02:20:57 AM,04/07/2016 02:21:49 AM,04/07/2016 02:25:17 AM,04/07/2016 02:35:07 AM,04/07/2016 02:51:50 AM,Code 2 Transport,04/07/2016 03:29:12 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160980266-AM20 -151753143,E03,15066828,Fuel Spill,06/24/2015,06/24/2015,06/24/2015 07:39:05 PM,06/24/2015 07:41:28 PM,06/24/2015 07:41:53 PM,06/24/2015 07:43:36 PM,06/24/2015 07:45:51 PM,04/25/2016 01:09:50 PM,04/25/2016 01:09:50 PM,Fire,06/24/2015 07:49:19 PM,800 Block of SUTTER ST,San Francisco,94109,B01,3,1463,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7885472961758, -122.414374370709)",151753143-E03 -142153186,E07,14074719,Medical Incident,08/03/2014,08/03/2014,08/03/2014 10:43:45 PM,08/03/2014 10:47:41 PM,08/03/2014 10:48:15 PM,08/03/2014 10:49:19 PM,08/03/2014 10:49:19 PM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,Patient Declined Transport,08/03/2014 10:56:54 PM,2900 Block of 18TH ST,San Francisco,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7616171946557, -122.411565020696)",142153186-E07 -141660302,E39,14057130,Medical Incident,06/15/2014,06/14/2014,06/15/2014 02:04:44 AM,06/15/2014 02:07:03 AM,06/15/2014 02:09:27 AM,06/15/2014 02:11:06 AM,06/15/2014 02:15:29 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Code 2 Transport,06/15/2014 02:32:10 AM,100 Block of MOLIMO DR,San Francisco,94127,B09,39,8253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7372399371982, -122.448567487126)",141660302-E39 -150983172,72,15037206,Medical Incident,04/08/2015,04/08/2015,04/08/2015 07:05:42 PM,04/08/2015 07:06:37 PM,04/08/2015 07:08:12 PM,04/08/2015 07:08:19 PM,04/08/2015 07:19:35 PM,04/08/2015 07:40:29 PM,04/08/2015 07:52:40 PM,Code 2 Transport,04/08/2015 08:27:31 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",150983172-72 -150843848,89,15032234,Medical Incident,03/25/2015,03/25/2015,03/25/2015 09:20:01 PM,03/25/2015 09:20:58 PM,03/25/2015 09:21:35 PM,03/25/2015 09:21:48 PM,03/25/2015 09:26:50 PM,03/25/2015 09:43:36 PM,03/25/2015 09:57:05 PM,Code 2 Transport,03/25/2015 10:38:37 PM,4200 Block of 22ND ST,San Francisco,94114,B06,24,5463,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7541420316645, -122.439312442583)",150843848-89 -151142240,E15,15043133,Medical Incident,04/24/2015,04/24/2015,04/24/2015 02:58:10 PM,04/24/2015 02:59:20 PM,04/24/2015 02:59:58 PM,04/24/2015 03:01:08 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Code 2 Transport,04/24/2015 03:04:23 PM,FARALLONES ST/CAPITOL AV,San Francisco,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.7140553033338, -122.45903538493)",151142240-E15 -151861267,E43,15070989,Citizen Assist / Service Call,07/05/2015,07/05/2015,07/05/2015 09:43:33 AM,07/05/2015 09:44:35 AM,07/05/2015 09:59:53 AM,07/05/2015 09:59:53 AM,07/05/2015 09:59:53 AM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Fire,07/05/2015 10:00:16 AM,2100 Block of THOMAS AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7357375877022, -122.400562306251)",151861267-E43 -160921450,84,16036415,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:53:54 AM,04/01/2016 11:53:54 AM,04/01/2016 11:53:54 AM,04/01/2016 11:53:54 AM,04/01/2016 11:53:54 AM,04/01/2016 11:59:33 AM,04/01/2016 12:27:41 PM,Code 2 Transport,04/01/2016 12:54:42 PM,GENEVA AV/MOSCOW ST,San Francisco,94134,B99,43,6173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7131431588266, -122.433706822023)",160921450-84 -141640194,E05,14056398,Medical Incident,06/13/2014,06/12/2014,06/13/2014 01:44:01 AM,06/13/2014 01:45:54 AM,06/13/2014 01:46:53 AM,06/13/2014 01:49:16 AM,06/13/2014 01:51:23 AM,04/25/2016 01:16:48 PM,04/25/2016 01:16:48 PM,Code 2 Transport,06/13/2014 01:59:17 AM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",141640194-E05 -160973192,KM11,16038553,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:10:42 PM,04/06/2016 05:11:23 PM,04/06/2016 05:11:50 PM,04/06/2016 05:12:40 PM,04/06/2016 05:17:27 PM,04/06/2016 05:31:51 PM,04/06/2016 05:53:00 PM,Code 2 Transport,04/06/2016 06:30:30 PM,100 Block of DIAMOND ST,San Francisco,94114,B05,6,5415,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7599536346651, -122.437183555035)",160973192-KM11 -141090373,68,14036945,Medical Incident,04/19/2014,04/19/2014,04/19/2014 10:57:13 PM,04/19/2014 10:57:13 PM,04/19/2014 10:57:33 PM,04/19/2014 10:57:49 PM,04/19/2014 11:10:51 PM,04/19/2014 11:23:37 PM,04/19/2014 11:38:57 PM,Code 2 Transport,04/20/2014 12:07:33 AM,100 Block of SHIPLEY ST,SAN FRANCISCO,94107,B03,1,2215,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807470349417, -122.401775669242)",141090373-68 -152383813,75,15090828,Medical Incident,08/26/2015,08/26/2015,08/26/2015 10:10:19 PM,08/26/2015 10:10:52 PM,08/26/2015 10:11:02 PM,08/26/2015 10:11:13 PM,08/26/2015 10:16:16 PM,08/26/2015 10:40:44 PM,08/26/2015 10:57:37 PM,Code 2 Transport,08/26/2015 11:51:48 PM,600 Block of KING ST,San Francisco,94107,B03,29,2275,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7705405549826, -122.401653062396)",152383813-75 -141180080,KM14,14039726,Medical Incident,04/28/2014,04/28/2014,04/28/2014 08:06:53 AM,04/28/2014 08:08:41 AM,04/28/2014 08:10:27 AM,04/28/2014 08:10:27 AM,04/28/2014 08:30:43 AM,04/28/2014 08:58:13 AM,04/28/2014 09:06:42 AM,Code 2 Transport,04/28/2014 09:30:47 AM,1100 Block of MARKET ST,,94102,B02,1,2309,,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",141180080-KM14 -160990053,52,16039153,Medical Incident,04/08/2016,04/07/2016,04/08/2016 12:20:57 AM,04/08/2016 12:20:57 AM,04/08/2016 12:21:22 AM,04/08/2016 12:21:40 AM,04/08/2016 12:31:52 AM,04/08/2016 12:44:45 AM,04/08/2016 01:03:51 AM,Code 2 Transport,04/08/2016 01:45:33 AM,MISSION ST/CASTLE MANOR AV,San Francisco,94112,B09,32,6113,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7292278459628, -122.430809258615)",160990053-52 -153201381,E11,15122998,Alarms,11/16/2015,11/16/2015,11/16/2015 11:12:11 AM,11/16/2015 11:13:41 AM,11/16/2015 11:14:35 AM,11/16/2015 11:15:20 AM,11/16/2015 11:19:07 AM,04/25/2016 01:07:10 PM,04/25/2016 01:07:10 PM,Fire,11/16/2015 11:22:35 AM,300 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5452,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7586437839521, -122.431292238826)",153201381-E11 -150752500,53,15028844,Medical Incident,03/16/2015,03/16/2015,03/16/2015 04:08:17 PM,03/16/2015 04:09:38 PM,03/16/2015 04:10:03 PM,03/16/2015 04:10:52 PM,03/16/2015 04:14:02 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,No Merit,03/16/2015 04:19:21 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",150752500-53 -141751550,E01,14060370,Other,06/24/2014,06/24/2014,06/24/2014 12:50:32 PM,06/24/2014 12:51:20 PM,06/24/2014 12:51:42 PM,06/24/2014 12:53:40 PM,06/24/2014 12:57:16 PM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,Fire,06/24/2014 01:00:08 PM,MCALLISTER ST/LARKIN ST,San Francisco,94102,B02,3,1553,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",141751550-E01 -160990180,85,16039168,Medical Incident,04/08/2016,04/07/2016,04/08/2016 01:42:14 AM,04/08/2016 01:42:14 AM,04/08/2016 01:42:47 AM,04/08/2016 01:43:09 AM,04/08/2016 01:47:04 AM,04/08/2016 01:57:37 AM,04/08/2016 02:14:54 AM,Code 2 Transport,04/08/2016 02:42:22 AM,1700 Block of BLK BRYANT ST,San Francisco,94103,B02,29,5242,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7656309356296, -122.410985492978)",160990180-85 -143282498,RS2,14116367,Structure Fire,11/24/2014,11/24/2014,11/24/2014 04:06:28 PM,11/24/2014 04:07:13 PM,11/24/2014 04:07:27 PM,11/24/2014 04:09:15 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/24/2014 04:12:39 PM,CLAYTON ST/FELL ST,San Francisco,94117,B05,21,4523,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",143282498-RS2 -142311894,KM15,14080249,Medical Incident,08/19/2014,08/19/2014,08/19/2014 01:51:02 PM,08/19/2014 01:53:08 PM,08/19/2014 01:53:35 PM,08/19/2014 01:54:43 PM,08/19/2014 02:13:32 PM,08/19/2014 02:36:40 PM,08/19/2014 02:56:38 PM,Code 2 Transport,08/19/2014 03:27:25 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",142311894-KM15 -151302808,75,15049456,Medical Incident,05/10/2015,05/10/2015,05/10/2015 08:06:37 PM,05/10/2015 08:08:05 PM,05/10/2015 08:08:20 PM,05/10/2015 08:08:46 PM,05/10/2015 08:23:23 PM,05/10/2015 08:26:45 PM,05/10/2015 08:38:10 PM,Code 2 Transport,05/10/2015 09:08:50 PM,4600 Block of BALBOA ST,San Francisco,94121,B07,34,7312,2,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7752560862249, -122.50856215551)",151302808-75 -141613478,67,14055672,Medical Incident,06/10/2014,06/10/2014,06/10/2014 10:46:22 PM,06/10/2014 10:46:22 PM,06/10/2014 11:04:41 PM,06/10/2014 11:04:41 PM,06/10/2014 11:12:18 PM,06/10/2014 11:21:22 PM,06/10/2014 11:37:00 PM,Code 2 Transport,06/11/2014 12:21:50 AM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,945,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8083718015584, -122.414994322457)",141613478-67 -153281155,B04,15126186,Alarms,11/24/2015,11/24/2015,11/24/2015 10:14:05 AM,11/24/2015 10:15:46 AM,11/24/2015 10:16:21 AM,11/24/2015 10:16:57 AM,11/24/2015 10:19:31 AM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Fire,11/24/2015 10:22:10 AM,300 Block of EUCLID AVE,San Francisco,94118,B05,10,4373,3,3,3,false,Alarm,1,CHIEF,3,5,2,Presidio Heights,"(37.7841473276603, -122.451429128226)",153281155-B04 -150452101,D2,15017535,Outside Fire,02/14/2015,02/14/2015,02/14/2015 02:59:59 PM,02/14/2015 03:00:36 PM,02/14/2015 03:01:50 PM,02/14/2015 03:02:54 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Fire,02/14/2015 03:06:28 PM,10TH AV/CALIFORNIA ST,San Francisco,94118,B07,31,7137,3,3,3,false,Fire,1,CHIEF,5,7,1,Inner Richmond,"(37.7846209046597, -122.468839736978)",150452101-D2 -141420373,E36,14048570,Structure Fire,05/22/2014,05/21/2014,05/22/2014 04:56:37 AM,05/22/2014 04:56:37 AM,05/22/2014 04:56:46 AM,05/22/2014 04:59:12 AM,05/22/2014 05:02:45 AM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/22/2014 05:08:12 AM,15TH ST/MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,false,Alarm,1,ENGINE,1,2,9,Mission,"(37.7666736014927, -122.419825235405)",141420373-E36 -150891323,E13,15033923,Medical Incident,03/30/2015,03/30/2015,03/30/2015 11:37:39 AM,03/30/2015 11:38:08 AM,03/30/2015 11:38:40 AM,03/30/2015 11:39:43 AM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,No Merit,03/30/2015 11:44:04 AM,0 Block of CLAY ST,San Francisco,94111,B01,13,1133,3,3,3,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.795488462612, -122.396159020859)",150891323-E13 -141220282,E08,14041392,Alarms,05/02/2014,05/02/2014,05/02/2014 04:30:14 PM,05/02/2014 04:30:59 PM,05/02/2014 04:31:37 PM,05/02/2014 04:33:45 PM,05/02/2014 04:35:51 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,No Merit,05/02/2014 04:53:27 PM,400 Block of ILLINOIS ST,SAN FRANCISCO,94158,B03,8,2374,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7656728122297, -122.387971482123)",141220282-E08 -150413278,E13,15016118,Medical Incident,02/10/2015,02/10/2015,02/10/2015 07:50:41 PM,02/10/2015 07:52:11 PM,02/10/2015 07:52:29 PM,02/10/2015 07:53:38 PM,02/10/2015 07:55:45 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,No Merit,02/10/2015 07:58:08 PM,MISSION ST/BEALE ST,San Francisco,94105,B03,35,2116,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7911528075814, -122.395813422768)",150413278-E13 -160962357,64,16038060,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:06:42 PM,04/05/2016 03:06:42 PM,04/05/2016 03:06:51 PM,04/05/2016 03:07:20 PM,04/05/2016 03:18:59 PM,04/05/2016 04:00:20 PM,04/05/2016 04:30:13 PM,Code 2 Transport,04/05/2016 04:53:44 PM,2300 Block of CHESTNUT ST,San Francisco,94123,B04,16,4211,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8000298508197, -122.442000780052)",160962357-64 -141290236,E34,14043753,Medical Incident,05/09/2014,05/08/2014,05/09/2014 02:27:22 AM,05/09/2014 02:28:30 AM,05/09/2014 02:29:40 AM,05/09/2014 02:32:04 AM,05/09/2014 02:34:36 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Code 2 Transport,05/09/2014 02:42:50 AM,7500 Block of GEARY BLVD,San Francisco,94121,B07,34,7264,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",141290236-E34 -150690031,KM07,15026198,Medical Incident,03/10/2015,03/09/2015,03/10/2015 12:10:35 AM,03/10/2015 12:10:35 AM,03/10/2015 12:11:12 AM,03/10/2015 12:12:33 AM,03/10/2015 12:17:32 AM,03/10/2015 12:27:46 AM,03/10/2015 12:36:29 AM,Code 2 Transport,03/10/2015 12:48:06 AM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",150690031-KM07 -151950451,AM24,15074296,Medical Incident,07/14/2015,07/13/2015,07/14/2015 06:20:56 AM,07/14/2015 06:23:26 AM,07/14/2015 06:24:44 AM,07/14/2015 06:26:29 AM,07/14/2015 06:29:30 AM,07/14/2015 06:48:03 AM,07/14/2015 07:02:32 AM,Code 2 Transport,07/14/2015 07:30:37 AM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5259,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",151950451-AM24 -150592371,T01,15022609,Structure Fire,02/28/2015,02/28/2015,02/28/2015 04:09:51 PM,02/28/2015 04:10:32 PM,02/28/2015 04:10:46 PM,02/28/2015 04:12:13 PM,02/28/2015 04:15:52 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Fire,02/28/2015 04:17:16 PM,1200 Block of BUSH ST,San Francisco,94109,B04,3,1636,3,3,3,false,Alarm,1,TRUCK,6,4,3,Nob Hill,"(37.788955611099, -122.417825829364)",150592371-T01 -143163872,E03,14112094,Structure Fire,11/12/2014,11/12/2014,11/12/2014 10:51:36 PM,11/12/2014 10:53:01 PM,11/12/2014 10:53:35 PM,11/12/2014 10:54:19 PM,11/12/2014 10:55:59 PM,04/25/2016 01:14:02 PM,04/25/2016 01:14:02 PM,Fire,11/12/2014 11:05:53 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",143163872-E03 -141780100,E01,14061267,Alarms,06/27/2014,06/26/2014,06/27/2014 12:53:05 AM,06/27/2014 12:55:29 AM,06/27/2014 12:55:36 AM,06/27/2014 12:57:42 AM,06/27/2014 01:00:10 AM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/27/2014 01:31:56 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.780906077687, -122.413401299155)",141780100-E01 -142883709,E08,14101669,Medical Incident,10/15/2014,10/15/2014,10/15/2014 09:49:57 PM,10/15/2014 09:51:16 PM,10/15/2014 09:52:37 PM,10/15/2014 09:52:46 PM,10/15/2014 09:54:24 PM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Code 2 Transport,10/15/2014 10:11:50 PM,3RD ST/PERRY ST,San Francisco,94107,B03,8,2174,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7821191215942, -122.396841427362)",142883709-E08 -152232859,B04,15085072,Alarms,08/11/2015,08/11/2015,08/11/2015 05:02:07 PM,08/11/2015 05:02:57 PM,08/11/2015 05:03:09 PM,08/11/2015 05:05:52 PM,08/11/2015 05:11:39 PM,04/25/2016 01:08:58 PM,04/25/2016 01:08:58 PM,Fire,08/11/2015 05:54:48 PM,300 Block of LOWER FORT MASON ST,Fort Mason,94123,B99,51,3343,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8058923703038, -122.431246520303)",152232859-B04 -151071605,E25,15040461,Medical Incident,04/17/2015,04/17/2015,04/17/2015 11:43:15 AM,04/17/2015 11:44:37 AM,04/17/2015 11:48:08 AM,04/17/2015 11:50:02 AM,04/17/2015 11:56:58 AM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,Code 2 Transport,04/17/2015 12:26:00 PM,2000 Block of EVANS AVE,San Francisco,94124,B10,9,6422,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7477614969563, -122.396439770818)",151071605-E25 -142293378,E03,14079717,Medical Incident,08/17/2014,08/17/2014,08/17/2014 08:56:02 PM,08/17/2014 08:57:56 PM,08/17/2014 08:58:49 PM,08/17/2014 08:59:21 PM,08/17/2014 09:02:13 PM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,No Merit,08/17/2014 09:04:56 PM,TURK ST/HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",142293378-E03 -143471908,62,14123806,Medical Incident,12/13/2014,12/13/2014,12/13/2014 01:43:55 PM,12/13/2014 01:44:48 PM,12/13/2014 01:45:29 PM,12/13/2014 01:45:46 PM,12/13/2014 01:50:41 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,Unable to Locate,12/13/2014 01:54:43 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",143471908-62 -143353646,53,14118875,Medical Incident,12/01/2014,12/01/2014,12/01/2014 09:32:06 PM,12/01/2014 09:32:06 PM,12/01/2014 09:32:40 PM,12/01/2014 09:32:50 PM,12/01/2014 09:38:06 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Unable to Locate,12/01/2014 09:40:18 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",143353646-53 -141641875,KM12,14056557,Medical Incident,06/13/2014,06/13/2014,06/13/2014 02:06:23 PM,06/13/2014 02:07:52 PM,06/13/2014 02:08:38 PM,06/13/2014 02:09:23 PM,06/13/2014 02:19:32 PM,06/13/2014 02:50:12 PM,06/13/2014 02:50:14 PM,Code 2 Transport,06/13/2014 03:22:16 PM,600 Block of FLORIDA ST,San Francisco,94110,B02,7,5426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7610597892071, -122.411095051828)",141641875-KM12 -152433690,BE1,15092859,Structure Fire,08/31/2015,08/31/2015,08/31/2015 08:36:28 PM,08/31/2015 08:36:41 PM,08/31/2015 08:47:44 PM,08/31/2015 08:50:36 PM,08/31/2015 09:01:54 PM,04/25/2016 01:08:36 PM,04/25/2016 01:08:36 PM,Fire,08/31/2015 11:03:33 PM,1000 Block of CLAYTON ST,San Francisco,94117,B05,12,5151,3,3,3,false,Fire,2,SUPPORT,20,5,5,Haight Ashbury,"(37.7639371081016, -122.447310588487)",152433690-BE1 -152874153,E44,15110459,Medical Incident,10/14/2015,10/14/2015,10/14/2015 09:49:28 PM,10/14/2015 09:49:46 PM,10/14/2015 09:51:01 PM,10/14/2015 09:52:18 PM,10/14/2015 09:56:53 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 10:05:26 PM,900 Block of OLMSTEAD ST,San Francisco,94134,B09,42,6321,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.7203295039017, -122.410958859199)",152874153-E44 -143121437,RS2,14110482,Traffic Collision,11/08/2014,11/08/2014,11/08/2014 11:49:38 AM,11/08/2014 11:49:38 AM,11/08/2014 11:51:49 AM,11/08/2014 11:53:03 AM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,04/25/2016 01:14:07 PM,Code 3 Transport,11/08/2014 12:04:00 PM,100 Block of VERMONT ST,San Francisco,94103,B02,29,2355,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,7,2,10,Mission,"(37.7678897698094, -122.404881386108)",143121437-RS2 -143122727,B01,14110611,Alarms,11/08/2014,11/08/2014,11/08/2014 05:53:01 PM,11/08/2014 05:54:03 PM,11/08/2014 05:54:25 PM,11/08/2014 05:54:35 PM,11/08/2014 05:57:21 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/08/2014 06:02:34 PM,300 Block of GRANT AVE,San Francisco,94108,B01,13,1315,3,3,3,false,Alarm,1,CHIEF,1,1,3,Financial District/South Beach,"(37.7903312930658, -122.405480762269)",143122727-B01 -160954121,AM20,16037830,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:21:08 PM,04/04/2016 11:21:08 PM,04/04/2016 11:21:35 PM,04/04/2016 11:22:50 PM,04/04/2016 11:28:46 PM,04/04/2016 11:49:50 PM,04/05/2016 12:10:51 AM,Code 2 Transport,04/05/2016 12:38:28 AM,STANFORD ST/TOWNSEND ST,San Francisco,94107,B03,8,2153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7801824494501, -122.391064585451)",160954121-AM20 -152671810,RS1,15102271,Medical Incident,09/24/2015,09/24/2015,09/24/2015 12:30:25 PM,09/24/2015 12:30:25 PM,09/24/2015 12:30:48 PM,09/24/2015 12:32:11 PM,09/24/2015 12:35:17 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,Code 2 Transport,09/24/2015 12:36:48 PM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",152671810-RS1 -151862188,E28,15071075,Medical Incident,07/05/2015,07/05/2015,07/05/2015 02:59:47 PM,07/05/2015 03:00:36 PM,07/05/2015 03:01:05 PM,07/05/2015 03:01:36 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,04/25/2016 01:09:38 PM,Code 2 Transport,07/05/2015 03:04:46 PM,COLUMBUS AV/LOMBARD ST,San Francisco,94133,B01,28,1423,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8027432009748, -122.413718749936)",151862188-E28 -160962628,KM11,16038079,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:12:21 PM,04/05/2016 04:13:13 PM,04/05/2016 04:13:25 PM,04/05/2016 04:13:57 PM,04/05/2016 04:19:05 PM,04/05/2016 04:41:34 PM,04/05/2016 04:59:11 PM,Code 2 Transport,04/05/2016 05:29:27 PM,400 Block of MANSELL ST,San Francisco,94134,B10,44,626,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,9,Portola,"(37.7204133129314, -122.406069423364)",160962628-KM11 -153362694,T01,15129312,Citizen Assist / Service Call,12/02/2015,12/02/2015,12/02/2015 04:29:23 PM,12/02/2015 04:30:35 PM,12/02/2015 04:56:17 PM,12/02/2015 04:58:54 PM,12/02/2015 05:04:44 PM,04/25/2016 01:06:52 PM,04/25/2016 01:06:52 PM,Fire,12/02/2015 06:09:29 PM,300 Block of BEALE ST,San Francisco,94105,B03,35,2122,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7880321954757, -122.392000314933)",153362694-T01 -160963686,63,16038178,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:30:28 PM,04/05/2016 08:31:12 PM,04/05/2016 08:31:19 PM,04/05/2016 08:32:16 PM,04/05/2016 08:36:13 PM,04/05/2016 08:56:18 PM,04/05/2016 09:18:51 PM,Code 2 Transport,04/05/2016 09:36:49 PM,1500 Block of POST ST,San Francisco,94109,B04,38,3364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160963686-63 -160921249,89,16036395,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:48:33 AM,04/01/2016 10:48:33 AM,04/01/2016 10:49:03 AM,04/01/2016 10:53:50 AM,04/01/2016 10:54:55 AM,04/01/2016 11:14:36 AM,04/01/2016 11:28:02 AM,Other,04/01/2016 12:38:42 PM,300 Block of AMBER DR,San Francisco,94131,B06,26,8164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7445636381979, -122.441704934967)",160921249-89 -142410389,67,14083726,Medical Incident,08/29/2014,08/28/2014,08/29/2014 03:37:49 AM,08/29/2014 03:39:15 AM,08/29/2014 03:39:26 AM,08/29/2014 03:41:32 AM,08/29/2014 03:48:56 AM,08/29/2014 04:20:28 AM,08/29/2014 04:52:17 AM,Code 2 Transport,08/29/2014 05:28:15 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",142410389-67 -160923017,58,16036560,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 06:31:37 PM,04/01/2016 06:32:20 PM,04/01/2016 06:46:10 PM,04/01/2016 06:46:10 PM,04/01/2016 06:46:10 PM,04/01/2016 07:18:44 PM,04/01/2016 07:23:05 PM,Other,04/01/2016 08:15:51 PM,CESAR CHAVEZ ST/YORK ST,San Francisco,94110,B06,9,5621,2,3,3,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7484050013611, -122.407882029523)",160923017-58 -151320112,E11,15049907,Medical Incident,05/12/2015,05/11/2015,05/12/2015 12:55:03 AM,05/12/2015 12:55:03 AM,05/12/2015 12:55:12 AM,05/12/2015 12:57:42 AM,05/12/2015 12:57:42 AM,04/25/2016 01:10:39 PM,04/25/2016 01:10:39 PM,Code 2 Transport,05/12/2015 01:07:08 AM,3900 Block of CESAR CHAVEZ ST,San Francisco,94131,B06,11,5547,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7476849416066, -122.428162883346)",151320112-E11 -160990009,72,16039151,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:59:21 PM,04/08/2016 12:02:21 AM,04/08/2016 12:02:34 AM,04/08/2016 12:02:44 AM,04/08/2016 12:20:40 AM,04/08/2016 12:34:29 AM,04/08/2016 12:46:16 AM,Code 2 Transport,04/08/2016 01:46:05 AM,VAN DYKE AV/KEITH ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7280990808493, -122.390547463769)",160990009-72 -160972676,KM06,16038492,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:23:17 PM,04/06/2016 03:24:55 PM,04/06/2016 03:25:10 PM,04/06/2016 03:25:41 PM,04/06/2016 03:30:12 PM,04/06/2016 03:45:43 PM,04/06/2016 03:57:29 PM,Code 2 Transport,04/06/2016 04:43:28 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160972676-KM06 -151711334,E31,15065309,Medical Incident,06/20/2015,06/20/2015,06/20/2015 11:27:43 AM,06/20/2015 11:31:34 AM,06/20/2015 11:32:39 AM,06/20/2015 11:33:10 AM,06/20/2015 11:37:31 AM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Code 2 Transport,06/20/2015 11:50:14 AM,1500 Block of CLEMENT ST,San Francisco,94118,B07,31,7153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7824864414047, -122.475775257372)",151711334-E31 -160983390,72,16039082,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:30:31 PM,04/07/2016 07:30:31 PM,04/07/2016 07:31:45 PM,04/07/2016 07:32:04 PM,04/07/2016 08:21:11 PM,04/07/2016 08:21:24 PM,04/07/2016 08:21:27 PM,Code 2 Transport,04/07/2016 09:20:03 PM,600 Block of 25TH ST,San Francisco,94124,B10,25,2732,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7529754653558, -122.384393472823)",160983390-72 -143471567,81,14123766,Medical Incident,12/13/2014,12/13/2014,12/13/2014 12:06:36 PM,12/13/2014 12:07:30 PM,12/13/2014 12:08:52 PM,12/13/2014 12:09:11 PM,12/13/2014 12:39:05 PM,12/13/2014 01:05:48 PM,12/13/2014 01:29:12 PM,Code 2 Transport,12/13/2014 02:12:42 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",143471567-81 -141000316,E25,14033859,Medical Incident,04/10/2014,04/10/2014,04/10/2014 05:51:44 PM,04/10/2014 05:53:11 PM,04/10/2014 05:54:49 PM,04/10/2014 05:56:32 PM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,04/25/2016 01:17:57 PM,Code 2 Transport,04/10/2014 05:59:00 PM,200 Block of ALEMANY BLVD,SAN FRANCISCO,94110,B10,25,2612,,3,3,false,Potentially Life-Threatening,1,ENGINE,3,10,9,Bernal Heights,"(37.7351501389095, -122.410360631063)",141000316-E25 -151061904,63,15040047,Medical Incident,04/16/2015,04/16/2015,04/16/2015 01:02:06 PM,04/16/2015 01:03:49 PM,04/16/2015 01:04:25 PM,04/16/2015 01:04:38 PM,04/16/2015 01:08:20 PM,04/25/2016 01:11:08 PM,04/25/2016 01:11:08 PM,Patient Declined Transport,04/16/2015 01:44:03 PM,22ND ST/FOLSOM ST,San Francisco,94110,B06,7,5473,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7556994645677, -122.414387602502)",151061904-63 -141800268,E18,14062061,Medical Incident,06/29/2014,06/28/2014,06/29/2014 01:24:49 AM,06/29/2014 01:28:18 AM,06/29/2014 01:30:14 AM,06/29/2014 01:35:18 AM,06/29/2014 01:35:18 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Patient Declined Transport,06/29/2014 01:38:05 AM,1700 Block of 42ND AVE,San Francisco,94122,B08,23,7651,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7540751309451, -122.501252648169)",141800268-E18 -142650391,74,14092595,Medical Incident,09/22/2014,09/21/2014,09/22/2014 04:37:37 AM,09/22/2014 04:39:05 AM,09/22/2014 04:40:40 AM,09/22/2014 04:40:57 AM,09/22/2014 04:51:12 AM,09/22/2014 05:17:39 AM,09/22/2014 05:31:11 AM,Code 2 Transport,09/22/2014 05:54:18 AM,100 Block of PRENTISS ST,San Francisco,94110,B10,32,5727,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7408152927988, -122.411946068655)",142650391-74 -152222177,T01,15084630,Medical Incident,08/10/2015,08/10/2015,08/10/2015 03:05:47 PM,08/10/2015 03:05:47 PM,08/10/2015 03:06:15 PM,08/10/2015 03:07:47 PM,08/10/2015 03:08:59 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Code 2 Transport,08/10/2015 03:21:30 PM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,A,E,3,false,Non Life-threatening,1,TRUCK,1,3,6,South of Market,"(37.7792067028319, -122.402159463556)",152222177-T01 -151202466,E08,15045480,Medical Incident,04/30/2015,04/30/2015,04/30/2015 03:35:47 PM,04/30/2015 03:36:18 PM,04/30/2015 03:38:37 PM,04/30/2015 03:39:39 PM,04/30/2015 03:43:29 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,No Merit,04/30/2015 03:47:16 PM,6TH ST/NATOMA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7801620260598, -122.407691417119)",151202466-E08 -151610760,E28,15061427,Medical Incident,06/10/2015,06/10/2015,06/10/2015 08:15:33 AM,06/10/2015 08:17:26 AM,06/10/2015 08:17:39 AM,06/10/2015 08:20:13 AM,06/10/2015 08:23:22 AM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,No Merit,06/10/2015 08:25:44 AM,BAY ST/STOCKTON ST,San Francisco,94133,B01,28,1341,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8060277167068, -122.410310842828)",151610760-E28 -160972065,54,16038428,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:12:26 PM,04/06/2016 01:13:40 PM,04/06/2016 01:15:01 PM,04/06/2016 01:16:21 PM,04/06/2016 01:26:35 PM,04/06/2016 01:37:20 PM,04/06/2016 01:46:24 PM,Code 2 Transport,04/06/2016 02:10:22 PM,KEARNY ST/GEARY ST,San Francisco,94108,B01,1,1241,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7879630907543, -122.403491776385)",160972065-54 -161000688,71,16039647,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:05:52 AM,04/09/2016 07:07:45 AM,04/09/2016 07:08:30 AM,04/09/2016 07:08:44 AM,04/09/2016 07:15:23 AM,04/09/2016 07:32:21 AM,04/09/2016 07:40:40 AM,Code 2 Transport,04/09/2016 08:07:58 AM,1100 Block of SCOTT ST,San Francisco,94115,B05,5,4133,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7803432529788, -122.437097623047)",161000688-71 -150971027,E37,15036694,Alarms,04/07/2015,04/07/2015,04/07/2015 09:52:32 AM,04/07/2015 09:53:41 AM,04/07/2015 09:53:47 AM,04/07/2015 09:55:27 AM,04/07/2015 09:57:26 AM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Fire,04/07/2015 10:05:40 AM,1000 Block of MISSISSIPPI ST,San Francisco,94107,B10,37,2614,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7529776205732, -122.393736653052)",150971027-E37 -160983687,76,16039111,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:09:48 PM,04/07/2016 09:09:48 PM,04/07/2016 09:10:03 PM,04/07/2016 09:11:10 PM,04/07/2016 09:15:31 PM,04/07/2016 09:18:03 PM,04/07/2016 09:25:20 PM,Code 2 Transport,04/07/2016 09:49:01 PM,100 Block of 7TH ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786395920196, -122.410120840963)",160983687-76 -160970578,71,16038292,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:03:59 AM,04/06/2016 07:03:59 AM,04/06/2016 07:04:14 AM,04/06/2016 07:04:33 AM,04/06/2016 07:15:26 AM,04/06/2016 07:32:05 AM,04/06/2016 07:54:22 AM,Code 2 Transport,04/06/2016 08:15:01 AM,2200 Block of LOMBARD ST,San Francisco,94123,B04,16,3566,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7994131607449, -122.438492113191)",160970578-71 -160991596,KM09,16039283,Medical Incident,04/08/2016,04/08/2016,04/08/2016 12:38:58 PM,04/08/2016 12:38:58 PM,04/08/2016 12:39:13 PM,04/08/2016 12:40:06 PM,04/08/2016 12:54:34 PM,04/08/2016 01:13:47 PM,04/08/2016 01:32:56 PM,Code 2 Transport,04/08/2016 02:04:44 PM,THE EMBARCADERO SOU/HOWARD ST,San Francisco,94105,B03,35,2131,2,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7918502464418, -122.391360186894)",160991596-KM09 -150680086,E05,15025830,Medical Incident,03/09/2015,03/08/2015,03/09/2015 12:50:06 AM,03/09/2015 12:52:00 AM,03/09/2015 12:52:38 AM,03/09/2015 12:54:20 AM,03/09/2015 12:55:25 AM,04/25/2016 01:11:50 PM,04/25/2016 01:11:50 PM,Fire,03/09/2015 01:04:22 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",150680086-E05 -142932415,E08,14103427,Structure Fire,10/20/2014,10/20/2014,10/20/2014 04:42:32 PM,10/20/2014 04:42:32 PM,10/20/2014 04:43:55 PM,10/20/2014 04:43:55 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/20/2014 04:45:19 PM,6TH ST/HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7797389055689, -122.407159489165)",142932415-E08 -160930776,75,16036747,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:03:47 AM,04/02/2016 08:06:58 AM,04/02/2016 08:09:58 AM,04/02/2016 08:10:53 AM,04/02/2016 08:21:56 AM,04/02/2016 08:27:25 AM,04/02/2016 08:34:04 AM,Code 2 Transport,04/02/2016 09:08:07 AM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160930776-75 -151170566,E36,15044108,Structure Fire,04/27/2015,04/26/2015,04/27/2015 07:11:24 AM,04/27/2015 07:11:24 AM,04/27/2015 07:13:52 AM,04/27/2015 07:16:23 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 07:24:19 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,3,3,3,true,Alarm,1,ENGINE,12,2,9,Mission,"(37.7642361189447, -122.419659842408)",151170566-E36 -152620922,E03,15100066,Medical Incident,09/19/2015,09/19/2015,09/19/2015 08:16:35 AM,09/19/2015 08:17:49 AM,09/19/2015 08:18:23 AM,09/19/2015 08:18:53 AM,09/19/2015 08:23:38 AM,04/25/2016 01:08:16 PM,04/25/2016 01:08:16 PM,Code 2 Transport,09/19/2015 08:27:45 AM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",152620922-E03 -160982431,76,16038980,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:11:38 PM,04/07/2016 03:12:20 PM,04/07/2016 03:12:43 PM,04/07/2016 03:12:49 PM,04/07/2016 03:18:53 PM,04/07/2016 03:27:35 PM,04/07/2016 03:41:29 PM,Code 2 Transport,04/07/2016 03:59:19 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160982431-76 -150172257,E07,15006774,Medical Incident,01/17/2015,01/17/2015,01/17/2015 03:34:05 PM,01/17/2015 03:36:29 PM,01/17/2015 03:37:36 PM,01/17/2015 03:39:07 PM,01/17/2015 03:40:36 PM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Code 2 Transport,01/17/2015 03:45:11 PM,FOLSOM ST/24TH ST,San Francisco,94110,B06,7,5526,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",150172257-E07 -151972339,76,15075186,Medical Incident,07/16/2015,07/16/2015,07/16/2015 04:03:16 PM,07/16/2015 04:04:33 PM,07/16/2015 04:05:16 PM,07/16/2015 04:05:41 PM,07/16/2015 04:08:28 PM,07/16/2015 04:17:51 PM,07/16/2015 04:39:39 PM,Code 2 Transport,07/16/2015 04:52:20 PM,300 Block of BARTLETT ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7513677227555, -122.419547489612)",151972339-76 -160952867,KM05,16037717,Medical Incident,04/04/2016,04/04/2016,04/04/2016 05:05:27 PM,04/04/2016 05:07:50 PM,04/04/2016 05:08:33 PM,04/04/2016 05:09:11 PM,04/04/2016 05:15:45 PM,04/04/2016 05:37:51 PM,04/04/2016 05:52:30 PM,Code 2 Transport,04/04/2016 06:15:23 PM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",160952867-KM05 -143501324,81,14124963,Medical Incident,12/16/2014,12/16/2014,12/16/2014 11:24:59 AM,12/16/2014 11:26:39 AM,12/16/2014 11:28:42 AM,12/16/2014 11:28:42 AM,12/16/2014 11:40:33 AM,04/25/2016 01:13:24 PM,04/25/2016 01:13:24 PM,Unable to Locate,12/16/2014 11:43:38 AM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695711762103, -122.449920089485)",143501324-81 -152093125,E37,15079770,Medical Incident,07/28/2015,07/28/2015,07/28/2015 06:50:06 PM,07/28/2015 06:51:12 PM,07/28/2015 06:53:52 PM,07/28/2015 07:01:48 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Patient Declined Transport,07/28/2015 07:03:25 PM,20TH ST/3RD ST,San Francisco,94107,B10,37,2665,2,2,2,false,Non Life-threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",152093125-E37 -141902251,75,14065884,Medical Incident,07/09/2014,07/09/2014,07/09/2014 03:27:38 PM,07/09/2014 03:28:37 PM,07/09/2014 03:29:09 PM,07/09/2014 03:29:18 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,04/25/2016 01:16:19 PM,Code 2 Transport,07/09/2014 03:31:00 PM,100 Block of WEBSTER ST,San Francisco,94117,B02,6,3524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Hayes Valley,"(37.7716078589058, -122.428729400943)",141902251-75 -160940396,62,16037132,Medical Incident,04/03/2016,04/02/2016,04/03/2016 02:22:02 AM,04/03/2016 02:22:02 AM,04/03/2016 02:22:54 AM,04/03/2016 02:23:04 AM,04/03/2016 02:39:32 AM,04/03/2016 02:59:57 AM,04/03/2016 03:24:06 AM,Code 2 Transport,04/03/2016 03:42:52 AM,FOLSOM ST/11TH ST,San Francisco,94103,B02,36,5114,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.771863706441, -122.414026708032)",160940396-62 -141240236,T11,14042075,Medical Incident,05/04/2014,05/04/2014,05/04/2014 05:01:36 PM,05/04/2014 05:03:34 PM,05/04/2014 05:04:31 PM,05/04/2014 05:06:53 PM,05/04/2014 05:08:25 PM,04/25/2016 01:17:31 PM,04/25/2016 01:17:31 PM,Code 2 Transport,05/04/2014 05:12:44 PM,1600 Block of VALENCIA ST,SAN FRANCISCO,94110,B06,11,5611,,3,3,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Bernal Heights,"(37.7459784515022, -122.420143715406)",141240236-T11 -150660733,E13,15025148,Structure Fire,03/07/2015,03/06/2015,03/07/2015 07:28:28 AM,03/07/2015 07:28:34 AM,03/07/2015 07:28:43 AM,03/07/2015 07:30:09 AM,03/07/2015 07:32:13 AM,04/25/2016 01:11:52 PM,04/25/2016 01:11:52 PM,Fire,03/07/2015 07:32:36 AM,DAVIS ST/BROADWAY,San Francisco,94111,B01,13,1131,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7988809653389, -122.398695702123)",150660733-E13 -152093137,87,15079772,Medical Incident,07/28/2015,07/28/2015,07/28/2015 06:53:26 PM,07/28/2015 06:54:46 PM,07/28/2015 06:55:31 PM,07/28/2015 06:55:51 PM,07/28/2015 07:05:01 PM,07/28/2015 07:08:24 PM,07/28/2015 07:20:26 PM,Code 2 Transport,07/28/2015 07:43:25 PM,2100 Block of MARKET ST,San Francisco,94114,B05,6,5231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",152093137-87 -160940557,60,16037148,Medical Incident,04/03/2016,04/02/2016,04/03/2016 03:55:37 AM,04/03/2016 03:55:37 AM,04/03/2016 03:56:04 AM,04/03/2016 03:56:19 AM,04/03/2016 04:03:20 AM,04/03/2016 04:27:04 AM,04/03/2016 04:35:20 AM,Code 2 Transport,04/03/2016 05:07:39 AM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",160940557-60 -152841422,E34,15109028,Traffic Collision,10/11/2015,10/11/2015,10/11/2015 11:00:24 AM,10/11/2015 11:00:24 AM,10/11/2015 11:01:14 AM,10/11/2015 11:01:53 AM,10/11/2015 11:03:20 AM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Patient Declined Transport,10/11/2015 11:25:35 AM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7723244294895, -122.510034921211)",152841422-E34 -150073222,E36,15002832,Alarms,01/07/2015,01/07/2015,01/07/2015 07:24:28 PM,01/07/2015 07:26:01 PM,01/07/2015 07:26:44 PM,01/07/2015 07:27:54 PM,01/07/2015 07:29:27 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Fire,01/07/2015 07:36:17 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7686566965213, -122.420075902774)",150073222-E36 -160930466,64,16036713,Medical Incident,04/02/2016,04/01/2016,04/02/2016 03:32:41 AM,04/02/2016 03:34:16 AM,04/02/2016 03:34:39 AM,04/02/2016 03:38:32 AM,04/02/2016 03:46:19 AM,04/02/2016 04:06:09 AM,04/02/2016 04:25:48 AM,Code 2 Transport,04/02/2016 04:52:39 AM,1600 Block of 9TH AVE,San Francisco,94122,B08,22,7335,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7575102196308, -122.465924011653)",160930466-64 -150320354,B04,15012223,Alarms,02/01/2015,01/31/2015,02/01/2015 02:04:54 AM,02/01/2015 02:06:07 AM,02/01/2015 02:06:19 AM,02/01/2015 02:07:59 AM,02/01/2015 02:15:35 AM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Fire,02/01/2015 02:21:20 AM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,3,3,3,false,Alarm,1,CHIEF,3,7,2,Presidio,"(37.8013251294544, -122.453498244358)",150320354-B04 -153391340,KM06,15130416,Medical Incident,12/05/2015,12/05/2015,12/05/2015 10:20:48 AM,12/05/2015 10:23:02 AM,12/05/2015 10:23:21 AM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Code 2 Transport,12/05/2015 10:24:11 AM,500 Block of 5TH ST,San Francisco,94107,B07,31,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",153391340-KM06 -160951915,57,16037642,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:23:34 PM,04/04/2016 01:23:34 PM,04/04/2016 01:49:39 PM,04/04/2016 01:49:50 PM,04/04/2016 02:09:48 PM,04/04/2016 02:31:54 PM,04/04/2016 02:49:28 PM,Code 2 Transport,04/04/2016 03:23:34 PM,1200 Block of LA PLAYA,San Francisco,94122,B08,23,7722,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7630908951705, -122.509266553866)",160951915-57 -152141474,73,15081468,Medical Incident,08/02/2015,08/02/2015,08/02/2015 12:04:19 PM,08/02/2015 12:05:46 PM,08/02/2015 12:06:23 PM,08/02/2015 12:06:59 PM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Cancelled,08/02/2015 12:10:50 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",152141474-73 -152401377,E05,15091373,Structure Fire,08/28/2015,08/28/2015,08/28/2015 10:15:17 AM,08/28/2015 10:18:36 AM,08/28/2015 10:19:17 AM,08/28/2015 10:19:35 AM,08/28/2015 10:21:02 AM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/28/2015 10:30:36 AM,ALICE B TOKLAS PL/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7854330360145, -122.419638990474)",152401377-E05 -161001004,74,16039681,Traffic Collision,04/09/2016,04/09/2016,04/09/2016 09:35:29 AM,04/09/2016 09:35:29 AM,04/09/2016 09:35:45 AM,04/09/2016 09:35:52 AM,04/09/2016 09:41:33 AM,04/09/2016 10:05:36 AM,04/09/2016 10:18:54 AM,Code 2 Transport,04/09/2016 10:55:04 AM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",161001004-74 -151523026,E11,15058000,Medical Incident,06/01/2015,06/01/2015,06/01/2015 07:03:41 PM,06/01/2015 07:04:22 PM,06/01/2015 07:06:34 PM,06/01/2015 07:06:34 PM,06/01/2015 07:08:49 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Code 3 Transport,06/01/2015 07:29:08 PM,1100 Block of GUERRERO ST,San Francisco,94110,B06,11,5524,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Mission,"(37.7527637339649, -122.423063371439)",151523026-E11 -160971500,KM11,16038377,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:06:18 AM,04/06/2016 11:06:49 AM,04/06/2016 11:07:40 AM,04/06/2016 11:08:37 AM,04/06/2016 11:15:32 AM,04/06/2016 11:54:32 AM,04/06/2016 12:14:48 PM,Code 2 Transport,04/06/2016 12:42:12 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160971500-KM11 -161003375,72,16039966,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:12:06 PM,04/09/2016 10:13:00 PM,04/09/2016 10:13:19 PM,04/09/2016 10:13:24 PM,04/09/2016 11:22:29 PM,04/09/2016 11:22:39 PM,04/09/2016 11:48:32 PM,Code 2 Transport,04/10/2016 12:30:59 AM,1600 Block of 10TH AVE,San Francisco,94122,B08,22,7335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7574688628424, -122.466858392243)",161003375-72 -150271088,88,15010349,Medical Incident,01/27/2015,01/27/2015,01/27/2015 09:55:57 AM,01/27/2015 09:56:43 AM,01/27/2015 09:57:04 AM,01/27/2015 10:03:13 AM,01/27/2015 10:08:06 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Patient Declined Transport,01/27/2015 11:19:37 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",150271088-88 -152213087,56,15084329,Medical Incident,08/09/2015,08/09/2015,08/09/2015 06:49:22 PM,08/09/2015 06:51:23 PM,08/09/2015 06:52:27 PM,08/09/2015 06:52:37 PM,08/09/2015 06:58:58 PM,08/09/2015 07:15:25 PM,08/09/2015 07:34:52 PM,Code 2 Transport,08/09/2015 08:10:10 PM,2100 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2631,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7495954457365, -122.399678768071)",152213087-56 -160960873,81,16037928,Medical Incident,04/05/2016,04/05/2016,04/05/2016 09:01:34 AM,04/05/2016 09:05:24 AM,04/05/2016 09:06:10 AM,04/05/2016 09:07:00 AM,04/05/2016 09:15:38 AM,04/05/2016 09:20:56 AM,04/05/2016 09:33:09 AM,Code 2 Transport,04/05/2016 09:50:37 AM,TURK ST/LARKIN ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.782378943359, -122.41733888153)",160960873-81 -141762874,T13,14060841,Structure Fire,06/25/2014,06/25/2014,06/25/2014 06:20:44 PM,06/25/2014 06:20:44 PM,06/25/2014 06:21:21 PM,06/25/2014 06:22:19 PM,06/25/2014 06:22:19 PM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Fire,06/25/2014 06:22:43 PM,500 Block of MARKET ST,San Francisco,94105,B03,1,2144,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",141762874-T13 -152633354,E43,15100817,Medical Incident,09/20/2015,09/20/2015,09/20/2015 07:43:40 PM,09/20/2015 07:46:48 PM,09/20/2015 07:50:13 PM,09/20/2015 07:51:17 PM,09/20/2015 07:55:28 PM,09/20/2015 08:10:35 PM,04/25/2016 01:08:14 PM,Code 3 Transport,09/20/2015 08:39:29 PM,1500 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",152633354-E43 -151270453,AM24,15048028,Medical Incident,05/07/2015,05/06/2015,05/07/2015 05:23:15 AM,05/07/2015 05:24:34 AM,05/07/2015 05:25:03 AM,05/07/2015 05:25:55 AM,05/07/2015 05:27:57 AM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Medical Examiner,05/07/2015 06:25:51 AM,600 Block of POST ST,San Francisco,94109,B01,3,1451,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7877566203397, -122.413055713332)",151270453-AM24 -152971232,KM02,15114004,Medical Incident,10/24/2015,10/24/2015,10/24/2015 10:20:49 AM,10/24/2015 10:20:49 AM,10/24/2015 10:21:13 AM,10/24/2015 10:22:23 AM,10/24/2015 10:28:21 AM,10/24/2015 10:34:53 AM,10/24/2015 11:08:15 AM,Code 2 Transport,10/24/2015 11:24:12 AM,500 Block of DAVIS ST,San Francisco,94111,B01,13,1132,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7979952301231, -122.398446080847)",152971232-KM02 -151823067,EMS10,15069585,Water Rescue,07/01/2015,07/01/2015,07/01/2015 05:56:12 PM,07/01/2015 05:57:51 PM,07/01/2015 06:01:54 PM,07/01/2015 06:01:54 PM,07/01/2015 06:15:06 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Medical Examiner,07/01/2015 06:24:34 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Fire,1,CHIEF,6,7,2,Presidio,"(37.8066581989584, -122.47471662098)",151823067-EMS10 -143080553,E17,14108884,Traffic Collision,11/04/2014,11/03/2014,11/04/2014 06:52:57 AM,11/04/2014 06:52:57 AM,11/04/2014 06:53:08 AM,11/04/2014 06:54:07 AM,11/04/2014 06:56:26 AM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 07:00:05 AM,OAKDALE AV/LANE ST,San Francisco,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7335339618641, -122.388481996795)",143080553-E17 -152042117,RS2,15077749,Medical Incident,07/23/2015,07/23/2015,07/23/2015 02:50:30 PM,07/23/2015 02:52:27 PM,07/23/2015 02:53:02 PM,07/23/2015 02:53:38 PM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,04/25/2016 01:09:19 PM,Code 2 Transport,07/23/2015 02:56:42 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",152042117-RS2 -160951990,63,16037652,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:39:23 PM,04/04/2016 01:39:23 PM,04/04/2016 01:48:08 PM,04/04/2016 01:48:36 PM,04/04/2016 02:13:55 PM,04/04/2016 02:43:03 PM,04/04/2016 02:59:59 PM,Code 2 Transport,04/04/2016 03:36:27 PM,300 Block of ARBALLO DR,San Francisco,94132,B08,19,8582,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",160951990-63 -152883638,E08,15110808,Medical Incident,10/15/2015,10/15/2015,10/15/2015 08:45:17 PM,10/15/2015 08:45:17 PM,10/15/2015 08:45:36 PM,10/15/2015 08:47:34 PM,10/15/2015 08:49:01 PM,04/25/2016 01:07:45 PM,04/25/2016 01:07:45 PM,Code 2 Transport,10/15/2015 08:56:47 PM,6TH ST/BRYANT ST,San Francisco,94107,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7760393195221, -122.402524096783)",152883638-E08 -161000707,KM08,16039649,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:19:59 AM,04/09/2016 07:20:21 AM,04/09/2016 07:20:46 AM,04/09/2016 07:23:05 AM,04/09/2016 07:28:25 AM,04/09/2016 07:48:00 AM,04/09/2016 08:05:57 AM,Code 2 Transport,04/09/2016 08:33:16 AM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",161000707-KM08 -160981483,54,16038879,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:08:18 AM,04/07/2016 11:10:22 AM,04/07/2016 11:11:43 AM,04/07/2016 11:11:55 AM,04/07/2016 11:18:31 AM,04/07/2016 11:30:14 AM,04/07/2016 11:51:46 AM,Code 2 Transport,04/07/2016 12:27:42 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160981483-54 -143423252,E03,14121673,Medical Incident,12/08/2014,12/08/2014,12/08/2014 06:59:51 PM,12/08/2014 07:01:23 PM,12/08/2014 07:04:50 PM,12/08/2014 07:04:50 PM,12/08/2014 07:09:58 PM,04/25/2016 01:13:34 PM,04/25/2016 01:13:34 PM,Code 2 Transport,12/08/2014 07:22:20 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",143423252-E03 -141403534,E23,14048157,Electrical Hazard,05/20/2014,05/20/2014,05/20/2014 10:27:29 PM,05/20/2014 10:29:16 PM,05/20/2014 10:29:31 PM,05/20/2014 10:31:03 PM,05/20/2014 10:39:47 PM,04/25/2016 01:17:13 PM,04/25/2016 01:17:13 PM,Fire,05/20/2014 11:21:54 PM,2100 Block of 46TH AVE,San Francisco,94116,B08,23,7714,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7464385384362, -122.504881060231)",141403534-E23 -150780522,61,15029789,Medical Incident,03/19/2015,03/18/2015,03/19/2015 06:00:05 AM,03/19/2015 06:01:28 AM,03/19/2015 06:01:40 AM,03/19/2015 06:01:59 AM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Code 2 Transport,03/19/2015 06:04:43 AM,900 Block of FOLSOM ST,San Francisco,94103,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7798915874961, -122.403958049432)",150780522-61 -142780639,B10,14097693,Alarms,10/05/2014,10/04/2014,10/05/2014 04:20:26 AM,10/05/2014 04:21:52 AM,10/05/2014 04:22:07 AM,10/05/2014 04:22:48 AM,10/05/2014 04:30:18 AM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Fire,10/05/2014 04:40:37 AM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",142780639-B10 -150412761,61,15016073,Structure Fire,02/10/2015,02/10/2015,02/10/2015 05:38:15 PM,02/10/2015 05:39:30 PM,02/10/2015 05:39:57 PM,02/10/2015 05:40:08 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,04/25/2016 01:12:19 PM,Fire,02/10/2015 05:47:38 PM,400 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2523,3,3,3,true,Alarm,1,MEDIC,5,10,10,Potrero Hill,"(37.7606006238505, -122.397379326161)",150412761-61 -141100237,E31,14037161,Medical Incident,04/20/2014,04/20/2014,04/20/2014 04:54:18 PM,04/20/2014 04:55:56 PM,04/20/2014 04:56:24 PM,04/20/2014 04:57:38 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,04/25/2016 01:17:46 PM,Code 2 Transport,04/20/2014 05:00:02 PM,CABRILLO ST/3RD AV,SAN FRANCISCO,94118,B07,31,7121,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7755169441237, -122.460660760765)",141100237-E31 -150783518,T07,15030040,Structure Fire,03/19/2015,03/19/2015,03/19/2015 07:59:14 PM,03/19/2015 07:59:22 PM,03/19/2015 07:59:27 PM,03/19/2015 08:00:42 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Fire,03/19/2015 08:02:27 PM,21ST ST/VALENCIA ST,San Francisco,94110,B06,7,5456,3,3,3,true,Alarm,1,TRUCK,2,6,9,Mission,"(37.7569020093743, -122.421117541576)",150783518-T07 -151381701,E02,15052418,Structure Fire,05/18/2015,05/18/2015,05/18/2015 12:58:12 PM,05/18/2015 12:58:12 PM,05/18/2015 12:59:08 PM,04/25/2016 01:10:32 PM,04/25/2016 01:10:32 PM,04/25/2016 01:10:32 PM,04/25/2016 01:10:32 PM,Fire,05/18/2015 01:02:24 PM,TAYLOR ST/BROADWAY ST,San Francisco,94133,B01,2,1442,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7970385137093, -122.413558545037)",151381701-E02 -160980868,73,16038816,Medical Incident,04/07/2016,04/07/2016,04/07/2016 08:18:52 AM,04/07/2016 08:18:52 AM,04/07/2016 08:19:31 AM,04/07/2016 08:19:52 AM,04/07/2016 08:19:52 AM,04/07/2016 09:06:32 AM,04/07/2016 09:30:49 AM,Code 2 Transport,04/07/2016 10:26:47 AM,3700 Block of NORIEGA ST,San Francisco,94122,B08,23,7662,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7529803535273, -122.503794258137)",160980868-73 -142780234,E01,14097655,Medical Incident,10/05/2014,10/04/2014,10/05/2014 01:09:07 AM,10/05/2014 01:09:07 AM,10/05/2014 01:10:40 AM,10/05/2014 01:10:40 AM,10/05/2014 01:13:43 AM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Code 2 Transport,10/05/2014 01:22:41 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",142780234-E01 -150792034,E02,15030313,Gas Leak (Natural and LP Gases),03/20/2015,03/20/2015,03/20/2015 02:29:41 PM,03/20/2015 02:31:05 PM,03/20/2015 02:33:30 PM,03/20/2015 02:35:13 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 02:35:42 PM,900 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Alarm,1,ENGINE,4,1,3,Nob Hill,"(37.7897956957533, -122.41539714915)",150792034-E02 -141210031,E11,14040775,Structure Fire,05/01/2014,04/30/2014,05/01/2014 03:06:18 AM,05/01/2014 03:06:55 AM,05/01/2014 03:07:26 AM,05/01/2014 03:08:53 AM,05/01/2014 03:10:26 AM,04/25/2016 01:17:35 PM,04/25/2016 01:17:35 PM,Fire,05/01/2014 03:18:48 AM,900 Block of VALENCIA ST,SAN FRANCISCO,94110,B06,7,5456,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7581042111797, -122.421163821698)",141210031-E11 -142590848,T12,14090396,Structure Fire,09/16/2014,09/16/2014,09/16/2014 08:56:30 AM,09/16/2014 08:57:19 AM,09/16/2014 08:57:58 AM,09/16/2014 08:59:18 AM,09/16/2014 09:05:01 AM,04/25/2016 01:15:04 PM,04/25/2016 01:15:04 PM,Fire,09/16/2014 09:14:06 AM,5200 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8162,3,3,3,false,Alarm,1,TRUCK,4,6,8,Glen Park,"(37.7442928064892, -122.439091578977)",142590848-T12 -150630630,B01,15023947,Alarms,03/04/2015,03/03/2015,03/04/2015 07:11:56 AM,03/04/2015 07:13:18 AM,03/04/2015 07:13:44 AM,03/04/2015 07:16:01 AM,03/04/2015 07:19:19 AM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Fire,03/04/2015 07:24:23 AM,1000 Block of VALLEJO ST,San Francisco,94133,B01,2,1441,3,3,3,false,Alarm,1,CHIEF,1,1,3,Nob Hill,"(37.7979035406044, -122.414605972129)",150630630-B01 -160982585,KM04,16038999,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:49:40 PM,04/07/2016 03:50:49 PM,04/07/2016 03:54:49 PM,04/07/2016 03:55:29 PM,04/07/2016 04:05:44 PM,04/07/2016 04:29:09 PM,04/07/2016 04:54:21 PM,Code 2 Transport,04/07/2016 05:38:13 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160982585-KM04 -143412584,E13,14121234,Medical Incident,12/07/2014,12/07/2014,12/07/2014 05:10:00 PM,12/07/2014 05:14:10 PM,12/07/2014 05:18:16 PM,12/07/2014 05:20:09 PM,12/07/2014 05:22:58 PM,04/25/2016 01:13:35 PM,04/25/2016 01:13:35 PM,Code 2 Transport,12/07/2014 05:31:22 PM,1000 Block of THE EMBARCADERO,San Francisco,94111,B01,13,927,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",143412584-E13 -151200177,B03,15045233,Alarms,04/30/2015,04/29/2015,04/30/2015 01:45:54 AM,04/30/2015 01:47:19 AM,04/30/2015 01:47:31 AM,04/30/2015 01:49:36 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/30/2015 01:53:45 AM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",151200177-B03 -142670291,E39,14093347,Alarms,09/24/2014,09/23/2014,09/24/2014 02:45:11 AM,09/24/2014 02:46:28 AM,09/24/2014 02:47:35 AM,09/24/2014 02:49:41 AM,09/24/2014 02:53:39 AM,04/25/2016 01:14:56 PM,04/25/2016 01:14:56 PM,Fire,09/24/2014 03:10:30 AM,400 Block of WAWONA ST,San Francisco,94132,B08,39,7356,3,3,3,true,Alarm,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7375196184662, -122.472621186741)",142670291-E39 -151570607,RC1,15059827,Vehicle Fire,06/06/2015,06/05/2015,06/06/2015 06:09:07 AM,06/06/2015 06:09:57 AM,06/06/2015 06:15:21 AM,06/06/2015 06:18:10 AM,06/06/2015 06:24:10 AM,04/25/2016 01:10:10 PM,04/25/2016 01:10:10 PM,Fire,06/06/2015 06:49:25 AM,300 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Fire,1,RESCUE CAPTAIN,4,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",151570607-RC1 -152761332,KM09,15105722,Medical Incident,10/03/2015,10/03/2015,10/03/2015 10:45:05 AM,10/03/2015 10:47:45 AM,10/03/2015 10:48:37 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Other,10/03/2015 10:49:11 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",152761332-KM09 -152663597,62,15102031,Medical Incident,09/23/2015,09/23/2015,09/23/2015 08:12:05 PM,09/23/2015 08:12:54 PM,09/23/2015 08:13:23 PM,09/23/2015 08:13:45 PM,09/23/2015 08:40:34 PM,04/25/2016 01:08:10 PM,04/25/2016 01:08:10 PM,Patient Declined Transport,09/23/2015 09:07:52 PM,STEUART ST/MISSION ST,San Francisco,94105,B03,35,2111,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",152663597-62 -160971208,53,16038355,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:59:55 AM,04/06/2016 10:02:32 AM,04/06/2016 10:07:21 AM,04/06/2016 10:07:42 AM,04/06/2016 10:20:53 AM,04/06/2016 10:49:05 AM,04/06/2016 11:29:00 AM,Code 2 Transport,04/06/2016 11:54:34 AM,0 Block of CHUMASERO DR,San Francisco,94132,B08,33,8422,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",160971208-53 -160980412,78,16038772,Medical Incident,04/07/2016,04/06/2016,04/07/2016 03:54:58 AM,04/07/2016 03:55:41 AM,04/07/2016 03:56:35 AM,04/07/2016 03:56:52 AM,04/07/2016 04:02:53 AM,04/07/2016 04:26:06 AM,04/07/2016 04:31:09 AM,Code 2 Transport,04/07/2016 05:11:18 AM,1700 Block of BRYANT ST,San Francisco,94110,B02,29,5242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7649537879117, -122.410494214244)",160980412-78 -151222892,T19,15046411,Alarms,05/02/2015,05/02/2015,05/02/2015 07:28:27 PM,05/02/2015 07:30:09 PM,05/02/2015 07:30:27 PM,05/02/2015 07:32:17 PM,05/02/2015 07:33:27 PM,04/25/2016 01:10:49 PM,04/25/2016 01:10:49 PM,Fire,05/02/2015 07:41:57 PM,200 Block of WINSTON DR,San Francisco,94132,B08,19,8862,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7269310558754, -122.477956520245)",151222892-T19 -143022665,88,14106698,Medical Incident,10/29/2014,10/29/2014,10/29/2014 05:39:07 PM,10/29/2014 05:39:36 PM,10/29/2014 05:40:21 PM,10/29/2014 05:41:08 PM,10/29/2014 05:46:18 PM,10/29/2014 05:58:48 PM,10/29/2014 06:18:31 PM,Code 2 Transport,10/29/2014 07:07:46 PM,BAYSHORE BL/CESAR CHAVEZ ST,San Francisco,94110,B10,9,6375,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7489710482463, -122.405626953003)",143022665-88 -160963020,86,16038119,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:35:45 PM,04/05/2016 05:35:45 PM,04/05/2016 05:35:50 PM,04/05/2016 05:36:17 PM,04/05/2016 05:46:55 PM,04/05/2016 05:57:43 PM,04/05/2016 06:22:08 PM,Code 2 Transport,04/05/2016 07:13:51 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160963020-86 -160960168,78,16037858,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:33:39 AM,04/05/2016 01:35:12 AM,04/05/2016 01:35:24 AM,04/05/2016 01:35:36 AM,04/05/2016 01:43:50 AM,04/05/2016 01:59:39 AM,04/05/2016 02:30:12 AM,Code 2 Transport,04/05/2016 02:53:54 AM,100 Block of PRECITA AVE,San Francisco,94110,B06,11,5664,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7471529746853, -122.417246254691)",160960168-78 -160923822,AM20,16036637,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:38:42 PM,04/01/2016 10:40:27 PM,04/01/2016 10:40:40 PM,04/01/2016 10:41:17 PM,04/01/2016 10:55:41 PM,04/01/2016 11:29:15 PM,04/01/2016 11:56:47 PM,Code 2 Transport,04/02/2016 12:37:43 AM,200 Block of SAN MARCOS AVE,San Francisco,94116,B08,39,8623,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7463859667322, -122.466443069131)",160923822-AM20 -160982424,KM05,16038979,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:09:35 PM,04/07/2016 03:11:19 PM,04/07/2016 03:11:45 PM,04/07/2016 03:14:16 PM,04/07/2016 03:19:42 PM,04/07/2016 03:39:58 PM,04/07/2016 03:51:58 PM,Code 2 Transport,04/07/2016 04:31:22 PM,2300 Block of POLK ST,San Francisco,94109,B04,41,3131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7983019573761, -122.422174014862)",160982424-KM05 -152743194,AM08,15105024,Medical Incident,10/01/2015,10/01/2015,10/01/2015 06:20:19 PM,10/01/2015 06:20:19 PM,10/01/2015 06:20:54 PM,10/01/2015 06:21:28 PM,10/01/2015 06:30:33 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Patient Declined Transport,10/01/2015 06:43:24 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",152743194-AM08 -143582219,E05,14128174,Medical Incident,12/24/2014,12/24/2014,12/24/2014 04:21:24 PM,12/24/2014 04:23:39 PM,12/24/2014 04:25:03 PM,12/24/2014 04:25:22 PM,12/24/2014 04:26:42 PM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,Code 2 Transport,12/24/2014 05:17:10 PM,1200 Block of EDDY ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",143582219-E05 -143642954,T05,14130374,Structure Fire,12/30/2014,12/30/2014,12/30/2014 06:34:31 PM,12/30/2014 06:34:31 PM,12/30/2014 06:35:03 PM,12/30/2014 06:35:16 PM,12/30/2014 06:39:56 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 06:42:30 PM,HYDE ST/ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",143642954-T05 -142223072,74,14077172,Medical Incident,08/10/2014,08/10/2014,08/10/2014 08:01:53 PM,08/10/2014 08:01:53 PM,08/10/2014 08:03:06 PM,08/10/2014 08:03:27 PM,08/10/2014 08:22:44 PM,04/25/2016 01:15:44 PM,04/25/2016 01:15:44 PM,Unable to Locate,08/10/2014 08:23:32 PM,800 Block of LISBON ST,San Francisco,94112,B09,43,6174,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7158405916513, -122.438322483619)",142223072-74 -151802361,T12,15068797,Structure Fire,06/29/2015,06/29/2015,06/29/2015 04:09:58 PM,06/29/2015 04:11:25 PM,06/29/2015 04:11:39 PM,06/29/2015 04:13:03 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Fire,06/29/2015 04:17:11 PM,1400 Block of 31ST AVE,San Francisco,94122,B08,18,7535,3,3,3,false,Alarm,1,TRUCK,8,8,4,Sunset/Parkside,"(37.7601963960987, -122.489856806327)",151802361-T12 -160993074,53,16039425,Medical Incident,04/08/2016,04/08/2016,04/08/2016 06:38:11 PM,04/08/2016 06:38:42 PM,04/08/2016 06:39:16 PM,04/08/2016 06:39:26 PM,04/08/2016 07:03:30 PM,04/08/2016 07:03:32 PM,04/08/2016 07:27:28 PM,Code 2 Transport,04/08/2016 07:31:10 PM,0 Block of ELGIN PARK,San Francisco,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7706495415688, -122.423294751714)",160993074-53 -160963477,KM11,16038153,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:21:17 PM,04/05/2016 07:24:57 PM,04/05/2016 07:28:08 PM,04/05/2016 07:29:00 PM,04/05/2016 07:31:38 PM,04/05/2016 07:47:40 PM,04/05/2016 08:23:32 PM,Code 2 Transport,04/05/2016 08:45:40 PM,700 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",160963477-KM11 -160992149,76,16039343,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:58:33 PM,04/08/2016 03:00:06 PM,04/08/2016 03:00:27 PM,04/08/2016 03:00:35 PM,04/08/2016 03:04:29 PM,04/08/2016 03:20:46 PM,04/08/2016 03:26:17 PM,Code 2 Transport,04/08/2016 04:06:23 PM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",160992149-76 -142291656,E07,14079576,Medical Incident,08/17/2014,08/17/2014,08/17/2014 12:26:15 PM,08/17/2014 12:27:26 PM,08/17/2014 12:28:51 PM,08/17/2014 12:30:30 PM,08/17/2014 12:34:13 PM,04/25/2016 01:15:37 PM,04/25/2016 01:15:37 PM,Code 2 Transport,08/17/2014 12:48:37 PM,2800 Block of 22ND ST,San Francisco,94110,B06,7,5474,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7559148150977, -122.411740426812)",142291656-E07 -152530034,T03,15096564,Medical Incident,09/10/2015,09/09/2015,09/10/2015 12:09:39 AM,09/10/2015 12:12:02 AM,09/10/2015 12:12:42 AM,09/10/2015 12:13:45 AM,09/10/2015 12:17:16 AM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,Code 2 Transport,09/10/2015 12:18:14 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",152530034-T03 -151834341,E09,15070070,Medical Incident,07/02/2015,07/02/2015,07/02/2015 11:21:54 PM,07/02/2015 11:22:54 PM,07/02/2015 11:23:32 PM,07/02/2015 11:25:32 PM,07/02/2015 11:28:24 PM,04/25/2016 01:09:41 PM,04/25/2016 01:09:41 PM,Code 2 Transport,07/02/2015 11:37:58 PM,3100 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7483773808375, -122.412579951922)",151834341-E09 -151000337,E07,15037714,Medical Incident,04/10/2015,04/09/2015,04/10/2015 04:13:32 AM,04/10/2015 04:14:21 AM,04/10/2015 04:16:07 AM,04/10/2015 04:18:04 AM,04/10/2015 04:22:53 AM,04/25/2016 01:11:15 PM,04/25/2016 01:11:15 PM,Code 2 Transport,04/10/2015 04:32:12 AM,2900 Block of 23RD ST,San Francisco,94110,B06,7,5476,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.754258922424, -122.410664828857)",151000337-E07 -160943554,72,16037445,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:15:26 PM,04/03/2016 10:15:44 PM,04/03/2016 10:16:14 PM,04/03/2016 10:16:22 PM,04/03/2016 10:25:59 PM,04/03/2016 10:32:34 PM,04/03/2016 11:03:02 PM,Code 2 Transport,04/03/2016 11:30:47 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160943554-72 -160973667,KM10,16038619,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:50:46 PM,04/06/2016 06:52:11 PM,04/06/2016 07:07:42 PM,04/06/2016 07:08:17 PM,04/06/2016 07:29:41 PM,04/06/2016 07:54:43 PM,04/06/2016 08:17:02 PM,Code 2 Transport,04/06/2016 08:49:52 PM,100 Block of RIVERTON DR,San Francisco,94132,B08,19,8742,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Sunset/Parkside,"(37.731499288175, -122.487171386918)",160973667-KM10 -160931968,65,16036890,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:11:48 PM,04/02/2016 02:12:12 PM,04/02/2016 02:18:28 PM,04/02/2016 02:19:02 PM,04/02/2016 02:23:30 PM,04/02/2016 02:46:42 PM,04/02/2016 03:00:17 PM,Code 2 Transport,04/02/2016 03:13:08 PM,MCALLISTER ST/HYDE ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160931968-65 -142882116,T03,14101550,Medical Incident,10/15/2014,10/15/2014,10/15/2014 02:24:06 PM,10/15/2014 02:25:14 PM,10/15/2014 02:25:47 PM,10/15/2014 02:27:09 PM,10/15/2014 02:29:11 PM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Patient Declined Transport,10/15/2014 02:32:47 PM,300 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",142882116-T03 -141580352,E16,14054304,Alarms,06/07/2014,06/06/2014,06/07/2014 03:08:20 AM,06/07/2014 03:09:39 AM,06/07/2014 03:10:08 AM,06/07/2014 03:12:01 AM,06/07/2014 03:13:09 AM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Fire,06/07/2014 03:27:14 AM,2100 Block of FILBERT ST,San Francisco,94123,B04,16,3462,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7981798327213, -122.434867916145)",141580352-E16 -152373057,E01,15090411,Medical Incident,08/25/2015,08/25/2015,08/25/2015 06:19:41 PM,08/25/2015 06:21:33 PM,08/25/2015 06:21:59 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Gone on Arrival,08/25/2015 06:22:56 PM,MASON ST/GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Tenderloin,"(37.787149142759, -122.409874017562)",152373057-E01 -152640529,T05,15100954,Other,09/21/2015,09/20/2015,09/21/2015 05:52:34 AM,09/21/2015 05:52:34 AM,09/21/2015 05:52:44 AM,09/21/2015 05:57:53 AM,09/21/2015 06:01:06 AM,04/25/2016 01:08:13 PM,04/25/2016 01:08:13 PM,Fire,09/21/2015 06:10:06 AM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",152640529-T05 -151492221,RC3,15056742,Citizen Assist / Service Call,05/29/2015,05/29/2015,05/29/2015 02:44:36 PM,05/29/2015 02:48:02 PM,05/29/2015 02:50:45 PM,05/29/2015 02:53:04 PM,05/29/2015 03:12:33 PM,04/25/2016 01:10:19 PM,04/25/2016 01:10:19 PM,Fire,05/29/2015 03:20:33 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",151492221-RC3 -152521681,E01,15096312,Medical Incident,09/09/2015,09/09/2015,09/09/2015 12:17:38 PM,09/09/2015 12:19:02 PM,09/09/2015 12:23:20 PM,09/09/2015 12:23:20 PM,09/09/2015 12:25:48 PM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,Cancelled,09/09/2015 12:27:11 PM,0 Block of 3RD ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7864240602838, -122.402348906735)",152521681-E01 -143180786,88,14112544,Medical Incident,11/14/2014,11/14/2014,11/14/2014 08:18:23 AM,11/14/2014 08:20:55 AM,11/14/2014 08:21:34 AM,11/14/2014 08:25:19 AM,11/14/2014 08:43:01 AM,11/14/2014 08:53:36 AM,11/14/2014 09:34:05 AM,Code 2 Transport,11/14/2014 09:38:28 AM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",143180786-88 -150543778,E35,15020944,Alarms,02/23/2015,02/23/2015,02/23/2015 09:57:24 PM,02/23/2015 09:58:49 PM,02/23/2015 09:59:03 PM,02/23/2015 10:00:55 PM,02/23/2015 10:02:52 PM,04/25/2016 01:12:04 PM,04/25/2016 01:12:04 PM,Fire,02/23/2015 10:19:52 PM,100 Block of SPEAR ST,San Francisco,94105,B03,35,2114,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7919628053601, -122.393243014407)",150543778-E35 -150721059,RC1,15027441,Medical Incident,03/13/2015,03/13/2015,03/13/2015 09:28:04 AM,03/13/2015 09:29:40 AM,03/13/2015 09:30:25 AM,03/13/2015 09:32:12 AM,03/13/2015 09:35:18 AM,04/25/2016 01:11:45 PM,04/25/2016 01:11:45 PM,Code 2 Transport,03/13/2015 09:39:57 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",150721059-RC1 -150712947,89,15027216,Medical Incident,03/12/2015,03/12/2015,03/12/2015 05:38:00 PM,03/12/2015 05:39:24 PM,03/12/2015 05:39:36 PM,03/12/2015 05:40:47 PM,03/12/2015 05:51:27 PM,03/12/2015 06:07:17 PM,03/12/2015 06:28:53 PM,Code 2 Transport,03/12/2015 06:50:36 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",150712947-89 -142792163,KM02,14098206,Medical Incident,10/06/2014,10/06/2014,10/06/2014 03:19:03 PM,10/06/2014 03:19:54 PM,10/06/2014 03:21:15 PM,10/06/2014 03:21:57 PM,10/06/2014 03:28:25 PM,10/06/2014 03:45:47 PM,10/06/2014 04:08:54 PM,Code 2 Transport,10/06/2014 04:27:15 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",142792163-KM02 -152923634,89,15112380,Medical Incident,10/19/2015,10/19/2015,10/19/2015 09:46:17 PM,10/19/2015 09:47:35 PM,10/19/2015 09:47:52 PM,10/19/2015 09:49:03 PM,10/19/2015 09:55:36 PM,10/19/2015 10:08:23 PM,10/19/2015 10:12:13 PM,Code 2 Transport,10/19/2015 10:49:16 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",152923634-89 -152562471,B07,15097979,Alarms,09/13/2015,09/13/2015,09/13/2015 04:49:41 PM,09/13/2015 04:51:30 PM,09/13/2015 04:51:40 PM,09/13/2015 04:52:30 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,04/25/2016 01:08:22 PM,Fire,09/13/2015 04:59:22 PM,100 Block of 27TH AVE,San Francisco,94121,B07,14,7217,3,3,3,false,Alarm,1,CHIEF,3,7,2,Seacliff,"(37.7865836559731, -122.487284964923)",152562471-B07 -151450278,KM06,15055018,Medical Incident,05/25/2015,05/24/2015,05/25/2015 02:22:46 AM,05/25/2015 02:23:51 AM,05/25/2015 02:24:23 AM,05/25/2015 02:25:06 AM,05/25/2015 02:29:34 AM,05/25/2015 02:47:10 AM,05/25/2015 02:52:35 AM,Code 2 Transport,05/25/2015 03:31:12 AM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.765718993574, -122.409520691153)",151450278-KM06 -152213212,T02,15084344,Alarms,08/09/2015,08/09/2015,08/09/2015 07:24:57 PM,08/09/2015 07:26:00 PM,08/09/2015 07:26:06 PM,08/09/2015 07:27:40 PM,08/09/2015 07:28:44 PM,04/25/2016 01:09:00 PM,04/25/2016 01:09:00 PM,Fire,08/09/2015 07:41:12 PM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",152213212-T02 -160970461,AM24,16038285,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:54:57 AM,04/06/2016 05:56:50 AM,04/06/2016 05:57:35 AM,04/06/2016 05:57:59 AM,04/06/2016 06:08:19 AM,04/06/2016 06:48:46 AM,04/06/2016 07:13:55 AM,Code 2 Transport,04/06/2016 08:00:55 AM,BAKER ST/BAY ST,San Francisco,94123,B04,16,4315,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8017873424756, -122.446609575987)",160970461-AM24 -142661266,67,14093052,Medical Incident,09/23/2014,09/23/2014,09/23/2014 11:07:38 AM,09/23/2014 11:08:07 AM,09/23/2014 11:08:53 AM,09/23/2014 11:11:24 AM,09/23/2014 11:16:03 AM,09/23/2014 11:39:20 AM,09/23/2014 11:57:58 AM,Code 2 Transport,09/23/2014 12:05:08 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",142661266-67 -160974562,AM24,16038709,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:00:19 PM,04/06/2016 11:01:15 PM,04/06/2016 11:02:30 PM,04/06/2016 11:04:40 PM,04/06/2016 11:25:31 PM,04/06/2016 11:25:42 PM,04/06/2016 11:38:52 PM,Code 2 Transport,04/07/2016 12:11:31 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160974562-AM24 -153283272,T02,15126383,Alarms,11/24/2015,11/24/2015,11/24/2015 07:03:51 PM,11/24/2015 07:06:03 PM,11/24/2015 07:06:32 PM,11/24/2015 07:08:10 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,04/25/2016 01:07:01 PM,Fire,11/24/2015 07:21:27 PM,1200 Block of WASHINGTON ST,San Francisco,94108,B01,41,1466,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.7942694224795, -122.41384044734)",153283272-T02 -161003062,56,16039930,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:43:02 PM,04/09/2016 08:43:58 PM,04/09/2016 08:44:32 PM,04/09/2016 08:44:53 PM,04/09/2016 08:46:47 PM,04/09/2016 09:11:53 PM,04/09/2016 09:21:41 PM,Code 2 Transport,04/09/2016 09:56:46 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",161003062-56 -161000615,88,16039636,Medical Incident,04/09/2016,04/08/2016,04/09/2016 06:11:25 AM,04/09/2016 06:12:31 AM,04/09/2016 06:13:05 AM,04/09/2016 06:13:32 AM,04/09/2016 06:29:20 AM,04/09/2016 06:43:36 AM,04/09/2016 06:59:51 AM,Code 2 Transport,04/09/2016 07:36:19 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",161000615-88 -142241427,B09,14077705,Structure Fire,08/12/2014,08/12/2014,08/12/2014 11:56:28 AM,08/12/2014 11:57:44 AM,08/12/2014 11:58:07 AM,08/12/2014 11:58:40 AM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,Fire,08/12/2014 12:02:01 PM,2000 Block of 18TH AVE,San Francisco,94116,B08,40,7374,3,3,3,false,Alarm,1,CHIEF,8,8,7,Inner Sunset,"(37.7496216661836, -122.475150816566)",142241427-B09 -161000318,AM20,16039596,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:20:46 AM,04/09/2016 02:21:03 AM,04/09/2016 02:21:22 AM,04/09/2016 02:21:59 AM,04/09/2016 02:24:52 AM,04/09/2016 02:45:21 AM,04/09/2016 03:08:25 AM,Code 2 Transport,04/09/2016 03:49:44 AM,1000 Block of GOLDEN GATE AVE,San Francisco,94115,B02,5,3411,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",161000318-AM20 -150102929,E15,15004095,Medical Incident,01/10/2015,01/10/2015,01/10/2015 07:03:34 PM,01/10/2015 07:04:41 PM,01/10/2015 07:04:52 PM,01/10/2015 07:06:18 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,04/25/2016 01:12:54 PM,Code 3 Transport,01/10/2015 07:10:19 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.7131061953593, -122.460796179398)",150102929-E15 -153070241,E13,15117827,Structure Fire,11/03/2015,11/02/2015,11/03/2015 02:39:27 AM,11/03/2015 02:39:27 AM,11/03/2015 02:39:41 AM,11/03/2015 02:41:01 AM,11/03/2015 02:43:31 AM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Fire,11/03/2015 02:44:08 AM,FRONT ST/SACRAMENTO ST,San Francisco,94111,B01,13,1141,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",153070241-E13 -160960841,64,16037925,Medical Incident,04/05/2016,04/05/2016,04/05/2016 08:53:00 AM,04/05/2016 08:55:30 AM,04/05/2016 08:55:56 AM,04/05/2016 08:56:28 AM,04/05/2016 09:14:04 AM,04/05/2016 09:37:16 AM,04/05/2016 09:58:03 AM,Code 2 Transport,04/05/2016 10:18:04 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160960841-64 -151073502,T07,15040664,Alarms,04/17/2015,04/17/2015,04/17/2015 08:19:35 PM,04/17/2015 08:20:38 PM,04/17/2015 08:20:57 PM,04/17/2015 08:22:18 PM,04/17/2015 08:25:39 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Fire,04/17/2015 08:30:49 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",151073502-T07 -143532797,KM15,14126261,Medical Incident,12/19/2014,12/19/2014,12/19/2014 06:00:59 PM,12/19/2014 06:01:39 PM,12/19/2014 06:02:33 PM,12/19/2014 06:03:08 PM,12/19/2014 06:06:34 PM,12/19/2014 06:20:32 PM,12/19/2014 06:44:05 PM,Code 2 Transport,12/19/2014 06:47:50 PM,CHURCH ST/DUBOCE AV,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",143532797-KM15 -151871954,E42,15071410,Medical Incident,07/06/2015,07/06/2015,07/06/2015 01:26:18 PM,07/06/2015 01:30:16 PM,07/06/2015 01:31:04 PM,07/06/2015 01:32:21 PM,07/06/2015 01:33:49 PM,04/25/2016 01:09:37 PM,04/25/2016 01:09:37 PM,Patient Declined Transport,07/06/2015 01:39:44 PM,100 Block of COLBY ST,San Francisco,94134,B09,42,6355,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,9,Portola,"(37.7283319628838, -122.413657198247)",151871954-E42 -151720957,KM09,15065614,Medical Incident,06/21/2015,06/21/2015,06/21/2015 09:08:15 AM,06/21/2015 09:08:55 AM,06/21/2015 09:09:36 AM,06/21/2015 09:10:05 AM,06/21/2015 09:23:34 AM,06/21/2015 09:31:13 AM,06/21/2015 09:42:57 AM,Code 2 Transport,06/21/2015 10:11:04 AM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",151720957-KM09 -151421364,B02,15053941,Structure Fire,05/22/2015,05/22/2015,05/22/2015 10:51:24 AM,05/22/2015 10:51:24 AM,05/22/2015 10:51:31 AM,05/22/2015 10:51:41 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Fire,05/22/2015 10:52:41 AM,1100 Block of MARKET ST,San Francisco,94102,B02,36,1552,3,3,3,false,Alarm,1,CHIEF,4,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",151421364-B02 -160953523,76,16037778,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:06:57 PM,04/04/2016 08:07:59 PM,04/04/2016 08:09:16 PM,04/04/2016 08:09:42 PM,04/04/2016 08:16:30 PM,04/04/2016 08:39:44 PM,04/04/2016 08:56:45 PM,Code 2 Transport,04/04/2016 09:38:27 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160953523-76 -160993663,AM20,16039482,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:30:52 PM,04/08/2016 09:32:36 PM,04/08/2016 09:33:27 PM,04/08/2016 09:33:57 PM,04/08/2016 09:47:39 PM,04/08/2016 10:08:24 PM,04/08/2016 10:43:23 PM,Code 2 Transport,04/08/2016 11:13:03 PM,1100 Block of HOLLISTER AVE,San Francisco,94124,B10,17,6612,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.720226117433, -122.393393791933)",160993663-AM20 -150462922,T19,15018030,Alarms,02/15/2015,02/15/2015,02/15/2015 06:14:52 PM,02/15/2015 06:16:25 PM,02/15/2015 06:16:48 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Fire,02/15/2015 06:18:08 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",150462922-T19 -150412831,82,15016080,Medical Incident,02/10/2015,02/10/2015,02/10/2015 05:53:12 PM,02/10/2015 05:55:41 PM,02/10/2015 05:56:15 PM,02/10/2015 05:56:22 PM,02/10/2015 06:16:09 PM,02/10/2015 06:34:26 PM,02/10/2015 06:39:20 PM,Code 2 Transport,02/10/2015 07:23:17 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",150412831-82 -152722524,64,15104209,Traffic Collision,09/29/2015,09/29/2015,09/29/2015 04:03:26 PM,09/29/2015 04:04:50 PM,09/29/2015 04:06:08 PM,09/29/2015 04:08:45 PM,09/29/2015 04:18:07 PM,09/29/2015 04:32:50 PM,09/29/2015 04:56:38 PM,Code 2 Transport,09/29/2015 05:43:54 PM,HARRISON ST/8TH ST,San Francisco,94103,B03,8,2312,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7737596997868, -122.408516330795)",152722524-64 -143282222,KM02,14116343,Medical Incident,11/24/2014,11/24/2014,11/24/2014 02:57:14 PM,11/24/2014 02:58:56 PM,11/24/2014 03:01:01 PM,11/24/2014 03:01:37 PM,11/24/2014 03:04:28 PM,11/24/2014 03:18:58 PM,11/24/2014 03:49:08 PM,Code 2 Transport,11/24/2014 04:03:00 PM,TAYLOR ST/ELLIS ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",143282222-KM02 -141501123,T02,14051489,Alarms,05/30/2014,05/30/2014,05/30/2014 10:58:05 AM,05/30/2014 10:59:14 AM,05/30/2014 10:59:47 AM,05/30/2014 11:00:29 AM,05/30/2014 11:01:07 AM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 11:05:58 AM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",141501123-T02 -151620178,E03,15061752,Medical Incident,06/11/2015,06/10/2015,06/11/2015 01:37:22 AM,06/11/2015 01:38:54 AM,06/11/2015 01:39:02 AM,06/11/2015 01:40:59 AM,06/11/2015 01:44:35 AM,04/25/2016 01:10:04 PM,04/25/2016 01:10:04 PM,Code 2 Transport,06/11/2015 01:51:19 AM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7854941424186, -122.408270724034)",151620178-E03 -152593101,KM11,15099113,Medical Incident,09/16/2015,09/16/2015,09/16/2015 06:42:06 PM,09/16/2015 06:43:16 PM,09/16/2015 06:43:39 PM,09/16/2015 06:44:12 PM,09/16/2015 06:54:38 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Against Medical Advice,09/16/2015 07:57:30 PM,2300 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3511,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7890127108804, -122.433440229295)",152593101-KM11 -142902000,KM10,14102278,Medical Incident,10/17/2014,10/17/2014,10/17/2014 02:30:07 PM,10/17/2014 02:31:40 PM,10/17/2014 02:31:47 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Code 2 Transport,10/17/2014 02:31:53 PM,2100 Block of WEBSTER ST,San Francisco,94115,B04,38,3466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Pacific Heights,"(37.7904907937316, -122.432404755801)",142902000-KM10 -142152715,T07,14074681,Alarms,08/03/2014,08/03/2014,08/03/2014 08:02:47 PM,08/03/2014 08:04:01 PM,08/03/2014 08:05:23 PM,08/03/2014 08:06:46 PM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,04/25/2016 01:15:51 PM,Fire,08/03/2014 08:12:13 PM,0 Block of HOFF ST,San Francisco,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7641898782543, -122.420437704275)",142152715-T07 -150582988,KM15,15022273,Medical Incident,02/27/2015,02/27/2015,02/27/2015 06:26:40 PM,02/27/2015 06:26:40 PM,02/27/2015 06:27:25 PM,02/27/2015 06:28:09 PM,02/27/2015 06:30:55 PM,02/27/2015 06:49:54 PM,02/27/2015 07:01:26 PM,Code 2 Transport,02/27/2015 07:26:11 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",150582988-KM15 -153352766,T07,15128908,Medical Incident,12/01/2015,12/01/2015,12/01/2015 04:46:10 PM,12/01/2015 04:46:59 PM,12/01/2015 04:49:18 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,Other,12/01/2015 04:49:44 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",153352766-T07 -151764086,E01,15067207,Medical Incident,06/25/2015,06/25/2015,06/25/2015 11:46:36 PM,06/25/2015 11:47:35 PM,06/25/2015 11:48:23 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,04/25/2016 01:09:49 PM,Medical Examiner,06/25/2015 11:49:04 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,E,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",151764086-E01 -151211365,E41,15045817,Medical Incident,05/01/2015,05/01/2015,05/01/2015 10:37:38 AM,05/01/2015 10:38:19 AM,05/01/2015 10:38:30 AM,05/01/2015 10:39:07 AM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,04/25/2016 01:10:51 PM,Medical Examiner,05/01/2015 10:41:32 AM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,E,E,3,false,Potentially Life-Threatening,1,ENGINE,4,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",151211365-E41 -161003075,62,16039931,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:44:27 PM,04/09/2016 08:47:15 PM,04/09/2016 08:50:35 PM,04/09/2016 08:50:42 PM,04/09/2016 08:59:50 PM,04/09/2016 09:23:31 PM,04/09/2016 09:59:54 PM,Code 2 Transport,04/09/2016 10:25:46 PM,2500 Block of VALLEJO ST,San Francisco,94123,B04,16,3654,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7947566019198, -122.439234819715)",161003075-62 -153211041,B07,15123346,Structure Fire,11/17/2015,11/17/2015,11/17/2015 09:39:13 AM,11/17/2015 09:39:13 AM,11/17/2015 09:40:39 AM,11/17/2015 09:41:54 AM,11/17/2015 09:50:06 AM,04/25/2016 01:07:09 PM,04/25/2016 01:07:09 PM,Fire,11/17/2015 09:50:18 AM,600 Block of 32ND AVE,San Francisco,94121,B07,14,724,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",153211041-B07 -160960554,KM08,16037902,Traffic Collision,04/05/2016,04/04/2016,04/05/2016 07:29:18 AM,04/05/2016 07:29:18 AM,04/05/2016 07:29:37 AM,04/05/2016 07:30:14 AM,04/05/2016 07:36:26 AM,04/05/2016 08:01:00 AM,04/05/2016 08:16:15 AM,Code 2 Transport,04/05/2016 08:40:57 AM,600 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7868166701711, -122.489937526821)",160960554-KM08 -152861239,E29,15109800,Medical Incident,10/13/2015,10/13/2015,10/13/2015 10:10:29 AM,10/13/2015 10:11:32 AM,10/13/2015 10:12:04 AM,10/13/2015 10:13:12 AM,10/13/2015 10:17:38 AM,04/25/2016 01:07:48 PM,04/25/2016 01:07:48 PM,Code 2 Transport,10/13/2015 10:34:14 AM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7788157426427, -122.409325210496)",152861239-E29 -152811286,AM04,15107777,Medical Incident,10/08/2015,10/08/2015,10/08/2015 10:23:57 AM,10/08/2015 10:27:21 AM,10/08/2015 10:27:35 AM,10/08/2015 10:28:19 AM,10/08/2015 10:39:54 AM,10/08/2015 10:54:03 AM,10/08/2015 11:36:29 AM,Code 2 Transport,10/08/2015 12:01:31 PM,900 Block of MARINE DR,Presidio,94129,B99,51,4628,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,2,Presidio,"(37.8089767888005, -122.47460956271)",152811286-AM04 -142600519,E13,14090736,Medical Incident,09/17/2014,09/16/2014,09/17/2014 06:45:58 AM,09/17/2014 06:47:15 AM,09/17/2014 06:48:08 AM,09/17/2014 06:49:42 AM,09/17/2014 06:51:56 AM,04/25/2016 01:15:03 PM,04/25/2016 01:15:03 PM,Code 2 Transport,09/17/2014 07:07:33 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",142600519-E13 -143041320,T03,14107461,Alarms,10/31/2014,10/31/2014,10/31/2014 11:46:06 AM,10/31/2014 11:47:11 AM,10/31/2014 11:47:30 AM,10/31/2014 11:50:16 AM,10/31/2014 11:53:08 AM,04/25/2016 01:14:16 PM,04/25/2016 01:14:16 PM,Fire,10/31/2014 11:53:13 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",143041320-T03 -143264058,E34,14115713,Structure Fire,11/22/2014,11/22/2014,11/22/2014 11:29:30 PM,11/22/2014 11:30:09 PM,11/22/2014 11:30:22 PM,11/22/2014 11:31:36 PM,11/22/2014 11:44:15 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Fire,11/22/2014 11:44:19 PM,2300 Block of CLEMENT ST,San Francisco,94121,B07,14,7175,3,3,3,false,Alarm,1,ENGINE,8,7,1,Outer Richmond,"(37.7819962396516, -122.484334834334)",143264058-E34 -160931877,61,16036877,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:44:28 PM,04/02/2016 01:44:28 PM,04/02/2016 01:45:35 PM,04/02/2016 01:45:43 PM,04/02/2016 01:48:27 PM,04/02/2016 02:02:05 PM,04/02/2016 02:39:37 PM,Code 2 Transport,04/02/2016 03:02:31 PM,CALIFORNIA ST/DRUMM ST,San Francisco,94111,B01,13,1134,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7936637772453, -122.396390415025)",160931877-61 -143572671,E05,14127834,Medical Incident,12/23/2014,12/23/2014,12/23/2014 04:25:14 PM,12/23/2014 04:25:38 PM,12/23/2014 04:25:58 PM,12/23/2014 04:27:11 PM,12/23/2014 04:28:54 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Code 2 Transport,12/23/2014 04:47:58 PM,LAGUNA ST/MCALLISTER ST,San Francisco,94102,B02,5,3412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7792579701506, -122.426828557488)",143572671-E05 -143081571,D3,14108973,Structure Fire,11/04/2014,11/04/2014,11/04/2014 12:13:22 PM,11/04/2014 12:13:33 PM,11/04/2014 12:14:16 PM,11/04/2014 12:14:30 PM,11/04/2014 12:23:03 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Fire,11/04/2014 12:31:23 PM,900 Block of CHENERY ST,San Francisco,94131,B06,26,8175,3,3,3,false,Alarm,1,CHIEF,9,6,8,Glen Park,"(37.735492369963, -122.438476731734)",143081571-D3 -143073078,77,14108762,Medical Incident,11/03/2014,11/03/2014,11/03/2014 07:45:05 PM,11/03/2014 07:46:59 PM,11/03/2014 07:47:15 PM,11/03/2014 07:47:35 PM,11/03/2014 07:53:22 PM,11/03/2014 08:17:08 PM,11/03/2014 08:24:38 PM,Code 2 Transport,11/03/2014 08:59:00 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",143073078-77 -151020188,71,15038431,Medical Incident,04/12/2015,04/11/2015,04/12/2015 01:02:48 AM,04/12/2015 01:02:48 AM,04/12/2015 01:03:50 AM,04/12/2015 01:04:09 AM,04/12/2015 01:10:23 AM,04/12/2015 01:18:12 AM,04/12/2015 01:27:04 AM,Code 3 Transport,04/12/2015 02:29:24 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7982249345487, -122.404282497745)",151020188-71 -152721767,87,15104141,Medical Incident,09/29/2015,09/29/2015,09/29/2015 12:46:55 PM,09/29/2015 12:49:28 PM,09/29/2015 12:49:53 PM,09/29/2015 12:50:01 PM,09/29/2015 12:54:30 PM,09/29/2015 01:16:19 PM,09/29/2015 01:35:50 PM,Code 2 Transport,09/29/2015 02:11:49 PM,3700 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7755874491042, -122.498916215286)",152721767-87 -160933383,76,16037037,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:46:14 PM,04/02/2016 08:47:45 PM,04/02/2016 08:48:32 PM,04/02/2016 08:48:42 PM,04/02/2016 08:56:28 PM,04/02/2016 09:15:53 PM,04/02/2016 09:25:32 PM,Code 2 Transport,04/02/2016 09:52:56 PM,1100 Block of FRANKLIN ST,San Francisco,94109,B04,3,3222,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7852397067254, -122.423049038172)",160933383-76 -143642496,T05,14130304,Citizen Assist / Service Call,12/30/2014,12/30/2014,12/30/2014 04:46:41 PM,12/30/2014 04:47:39 PM,12/30/2014 04:47:55 PM,12/30/2014 04:48:13 PM,12/30/2014 04:50:44 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Fire,12/30/2014 05:43:37 PM,SCOTT ST/TURK ST,San Francisco,94115,B05,5,4134,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7798673958952, -122.437071862847)",143642496-T05 -151403238,RS2,15053300,Other,05/20/2015,05/20/2015,05/20/2015 07:18:02 PM,05/20/2015 07:18:02 PM,05/20/2015 07:37:51 PM,05/20/2015 07:37:51 PM,05/20/2015 07:37:51 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Fire,05/20/2015 07:57:29 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,false,Alarm,1,RESCUE SQUAD,2,6,9,Mission,"(37.7596933117757, -122.414834950578)",151403238-RS2 -142581515,E37,14090097,Structure Fire,09/15/2014,09/15/2014,09/15/2014 12:25:28 PM,09/15/2014 12:25:28 PM,09/15/2014 12:25:41 PM,09/15/2014 12:27:02 PM,09/15/2014 12:29:20 PM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Fire,09/15/2014 12:39:44 PM,1200 Block of CAROLINA ST,San Francisco,94107,B10,37,256,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7526323138734, -122.398696830553)",142581515-E37 -152742610,T10,15104973,Medical Incident,10/01/2015,10/01/2015,10/01/2015 04:02:17 PM,10/01/2015 04:03:46 PM,10/01/2015 04:03:58 PM,10/01/2015 04:04:23 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Code 2 Transport,10/01/2015 04:05:00 PM,2300 Block of SUTTER ST,San Francisco,94115,B05,10,4155,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,5,2,Pacific Heights,"(37.7854076725191, -122.439050444523)",152742610-T10 -152882937,77,15110754,Medical Incident,10/15/2015,10/15/2015,10/15/2015 05:28:08 PM,10/15/2015 05:30:32 PM,10/15/2015 05:30:57 PM,10/15/2015 05:31:09 PM,10/15/2015 05:36:41 PM,10/15/2015 05:47:33 PM,10/15/2015 05:59:33 PM,Code 2 Transport,10/15/2015 06:21:57 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",152882937-77 -160973338,56,16038573,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:39:24 PM,04/06/2016 05:40:19 PM,04/06/2016 05:41:22 PM,04/06/2016 05:42:06 PM,04/06/2016 05:51:36 PM,04/06/2016 06:11:39 PM,04/06/2016 06:37:12 PM,Code 2 Transport,04/06/2016 07:02:17 PM,1300 Block of 27TH AVE,San Francisco,94122,B08,22,7511,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7622565136355, -122.485564556768)",160973338-56 -142021972,52,14069910,Medical Incident,07/21/2014,07/21/2014,07/21/2014 02:43:18 PM,07/21/2014 02:44:20 PM,07/21/2014 02:44:24 PM,07/21/2014 02:45:17 PM,07/21/2014 02:53:25 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Unable to Locate,07/21/2014 02:58:14 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",142021972-52 -142942227,52,14103725,Medical Incident,10/21/2014,10/21/2014,10/21/2014 03:01:19 PM,10/21/2014 03:03:20 PM,10/21/2014 03:04:49 PM,10/21/2014 03:06:18 PM,10/21/2014 03:11:46 PM,04/25/2016 01:14:26 PM,04/25/2016 01:14:26 PM,Patient Declined Transport,10/21/2014 04:06:04 PM,SACRAMENTO ST/POLK ST,San Francisco,94109,B04,41,3123,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7914958541783, -122.420873185108)",142942227-52 -160932408,KM08,16036936,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:20:08 PM,04/02/2016 04:21:18 PM,04/02/2016 04:21:39 PM,04/02/2016 04:22:06 PM,04/02/2016 04:29:18 PM,04/02/2016 04:51:42 PM,04/02/2016 05:16:41 PM,Code 2 Transport,04/02/2016 05:53:13 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",160932408-KM08 -160964034,KM03,16038205,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:28:32 PM,04/05/2016 10:29:59 PM,04/05/2016 10:30:14 PM,04/05/2016 10:31:04 PM,04/05/2016 10:35:53 PM,04/05/2016 10:48:31 PM,04/05/2016 11:02:52 PM,Code 2 Transport,04/05/2016 11:26:31 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160964034-KM03 -152581133,E12,15098587,Medical Incident,09/15/2015,09/15/2015,09/15/2015 09:45:06 AM,09/15/2015 09:45:25 AM,09/15/2015 09:45:46 AM,09/15/2015 09:47:55 AM,09/15/2015 09:50:45 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 2 Transport,09/15/2015 10:11:22 AM,1500 Block of MASONIC AVE,San Francisco,94117,B05,12,5141,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Haight Ashbury,"(37.7661440496945, -122.444450177181)",152581133-E12 -150503062,RC2,15019438,Medical Incident,02/19/2015,02/19/2015,02/19/2015 06:49:43 PM,02/19/2015 06:51:02 PM,02/19/2015 06:51:23 PM,02/19/2015 06:53:47 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Code 3 Transport,02/19/2015 06:54:20 PM,CHURCH ST/18TH ST,San Francisco,94114,B02,6,5421,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",150503062-RC2 -150532323,AM04,15020434,Medical Incident,02/22/2015,02/22/2015,02/22/2015 04:40:58 PM,02/22/2015 04:40:58 PM,02/22/2015 05:06:35 PM,02/22/2015 05:07:30 PM,02/22/2015 05:15:04 PM,04/25/2016 01:12:06 PM,04/25/2016 01:12:06 PM,Against Medical Advice,02/22/2015 06:12:05 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",150532323-AM04 -160931367,KM12,16036819,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:19:58 AM,04/02/2016 11:21:38 AM,04/02/2016 11:37:06 AM,04/02/2016 11:37:21 AM,04/02/2016 11:50:14 AM,04/02/2016 12:11:38 PM,04/02/2016 12:32:15 PM,Code 2 Transport,04/02/2016 12:52:12 PM,100 Block of CASTENADA AVE,San Francisco,94116,B08,39,8627,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7496244997415, -122.462027484211)",160931367-KM12 -150133598,64,15005336,Medical Incident,01/13/2015,01/13/2015,01/13/2015 09:07:27 PM,01/13/2015 09:11:44 PM,01/13/2015 09:12:23 PM,01/13/2015 09:12:37 PM,01/13/2015 09:16:11 PM,01/13/2015 09:31:33 PM,01/13/2015 09:35:12 PM,Code 2 Transport,01/13/2015 10:23:23 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",150133598-64 -151763899,53,15067196,Medical Incident,06/25/2015,06/25/2015,06/25/2015 10:42:20 PM,06/25/2015 10:45:18 PM,06/25/2015 10:45:33 PM,06/25/2015 10:45:44 PM,06/25/2015 10:49:40 PM,06/25/2015 10:58:38 PM,06/25/2015 11:08:38 PM,Code 2 Transport,06/25/2015 11:30:12 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",151763899-53 -141963175,B04,14068019,Alarms,07/15/2014,07/15/2014,07/15/2014 07:04:03 PM,07/15/2014 07:04:02 PM,07/15/2014 07:04:23 PM,07/15/2014 07:05:17 PM,07/15/2014 07:08:42 PM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Fire,07/15/2014 07:10:53 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",141963175-B04 -143462089,83,14123391,Medical Incident,12/12/2014,12/12/2014,12/12/2014 02:45:43 PM,12/12/2014 02:47:45 PM,12/12/2014 02:55:46 PM,12/12/2014 02:56:06 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Code 2 Transport,12/12/2014 02:56:08 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",143462089-83 -141741047,RC3,14059982,Medical Incident,06/23/2014,06/23/2014,06/23/2014 10:28:22 AM,06/23/2014 10:28:22 AM,06/23/2014 10:29:14 AM,06/23/2014 10:29:29 AM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,Patient Declined Transport,06/23/2014 10:35:25 AM,0 Block of GEORGE CT,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,10,10,Bayview Hunters Point,"(37.7307978040332, -122.382651551605)",141741047-RC3 -142803328,E13,14098632,Structure Fire,10/07/2014,10/07/2014,10/07/2014 09:17:59 PM,10/07/2014 09:17:59 PM,10/07/2014 09:18:10 PM,10/07/2014 09:19:02 PM,10/07/2014 09:21:37 PM,04/25/2016 01:14:41 PM,04/25/2016 01:14:41 PM,Fire,10/07/2014 09:22:48 PM,1ST ST/MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,true,Alarm,1,ENGINE,1,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",142803328-E13 -151041698,T08,15039349,Structure Fire,04/14/2015,04/14/2015,04/14/2015 01:03:55 PM,04/14/2015 01:04:20 PM,04/14/2015 01:05:01 PM,04/14/2015 01:06:46 PM,04/14/2015 01:09:47 PM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Fire,04/14/2015 01:13:33 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,5,3,6,South of Market,"(37.7850811742657, -122.406497767804)",151041698-T08 -141460721,87,14050070,Medical Incident,05/26/2014,05/26/2014,05/26/2014 08:32:50 AM,05/26/2014 08:34:27 AM,05/26/2014 08:34:58 AM,05/26/2014 08:35:17 AM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,04/25/2016 01:17:07 PM,Patient Declined Transport,05/26/2014 08:42:08 AM,24TH ST/UTAH ST,San Francisco,94110,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Mission,"(37.7530638329046, -122.405331103731)",141460721-87 -161003671,79,16039995,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:29:36 PM,04/09/2016 11:30:16 PM,04/09/2016 11:31:25 PM,04/09/2016 11:31:37 PM,04/09/2016 11:39:44 PM,04/09/2016 11:55:06 PM,04/10/2016 12:06:27 AM,Code 3 Transport,04/10/2016 01:05:16 AM,2300 Block of 32ND AVE,San Francisco,94116,B08,18,7531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7433678265215, -122.489754348894)",161003671-79 -160931890,85,16036878,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:46:39 PM,04/02/2016 01:48:16 PM,04/02/2016 01:52:08 PM,04/02/2016 01:52:16 PM,04/02/2016 01:59:24 PM,04/02/2016 02:19:43 PM,04/02/2016 03:09:34 PM,Code 2 Transport,04/02/2016 04:09:40 PM,1800 Block of ALABAMA ST,San Francisco,94110,B10,9,5723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7440407302527, -122.410294185886)",160931890-85 -141562903,B02,14053795,Alarms,06/05/2014,06/05/2014,06/05/2014 06:45:01 PM,06/05/2014 06:46:24 PM,06/05/2014 06:46:28 PM,06/05/2014 06:52:05 PM,06/05/2014 06:52:07 PM,04/25/2016 01:16:56 PM,04/25/2016 01:16:56 PM,Fire,06/05/2014 06:56:43 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,false,Alarm,1,CHIEF,3,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",141562903-B02 -152272575,E51,15086626,Alarms,08/15/2015,08/15/2015,08/15/2015 03:36:48 PM,08/15/2015 03:38:49 PM,08/15/2015 03:39:10 PM,08/15/2015 03:40:49 PM,08/15/2015 03:45:03 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Fire,08/15/2015 03:50:53 PM,1600 Block of BEACH ST,San Francisco,94123,B04,16,3556,3,3,3,true,Alarm,1,ENGINE,2,4,2,Marina,"(37.80469368505, -122.436278801878)",152272575-E51 -160930783,82,16036748,Medical Incident,04/02/2016,04/02/2016,04/02/2016 08:05:49 AM,04/02/2016 08:09:35 AM,04/02/2016 08:10:45 AM,04/02/2016 08:11:10 AM,04/02/2016 08:22:39 AM,04/02/2016 08:43:13 AM,04/02/2016 09:07:06 AM,Code 2 Transport,04/02/2016 09:38:50 AM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807300216, -122.378268018048)",160930783-82 -143451315,E09,14122777,Medical Incident,12/11/2014,12/11/2014,12/11/2014 09:57:23 AM,12/11/2014 09:59:00 AM,12/11/2014 10:02:02 AM,12/11/2014 10:03:01 AM,12/11/2014 10:07:42 AM,12/11/2014 10:24:59 AM,04/25/2016 01:13:31 PM,Code 3 Transport,12/11/2014 10:42:25 AM,200 Block of BRADFORD ST,San Francisco,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Bernal Heights,"(37.7385015279059, -122.409676930557)",143451315-E09 -152342955,E07,15089338,Structure Fire,08/22/2015,08/22/2015,08/22/2015 06:08:42 PM,08/22/2015 06:08:42 PM,08/22/2015 06:09:05 PM,08/22/2015 06:09:43 PM,08/22/2015 06:11:43 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Fire,08/22/2015 06:12:09 PM,18TH ST/MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",152342955-E07 -142983556,77,14105356,Medical Incident,10/25/2014,10/25/2014,10/25/2014 09:40:45 PM,10/25/2014 09:40:45 PM,10/25/2014 09:43:06 PM,10/25/2014 09:43:17 PM,10/25/2014 09:52:21 PM,10/25/2014 09:57:12 PM,10/25/2014 10:07:41 PM,Code 2 Transport,10/25/2014 10:23:52 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",142983556-77 -142562876,T01,14089518,Alarms,09/13/2014,09/13/2014,09/13/2014 06:07:13 PM,09/13/2014 06:08:38 PM,09/13/2014 06:09:06 PM,09/13/2014 06:10:44 PM,09/13/2014 06:13:20 PM,04/25/2016 01:15:07 PM,04/25/2016 01:15:07 PM,Fire,09/13/2014 06:21:18 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",142562876-T01 -160972740,81,16038497,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:36:14 PM,04/06/2016 03:37:56 PM,04/06/2016 03:40:00 PM,04/06/2016 03:40:06 PM,04/06/2016 03:44:05 PM,04/06/2016 03:48:03 PM,04/06/2016 04:30:00 PM,Code 2 Transport,04/06/2016 04:36:52 PM,1200 Block of 7TH AVE,San Francisco,94122,B08,22,7332,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7655176924661, -122.464198007052)",160972740-81 -153060230,E01,15117435,Medical Incident,11/02/2015,11/01/2015,11/02/2015 02:33:19 AM,11/02/2015 02:35:16 AM,11/02/2015 02:35:34 AM,11/02/2015 02:38:19 AM,11/02/2015 02:40:25 AM,04/25/2016 01:07:26 PM,04/25/2016 01:07:26 PM,Code 2 Transport,11/02/2015 02:42:28 AM,300 Block of 3RD ST,San Francisco,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7833526602624, -122.398485675312)",153060230-E01 -151973587,62,15075287,Medical Incident,07/16/2015,07/16/2015,07/16/2015 09:49:13 PM,07/16/2015 09:49:13 PM,07/16/2015 09:49:13 PM,07/16/2015 09:49:13 PM,07/16/2015 09:49:13 PM,07/16/2015 10:03:49 PM,07/16/2015 10:18:18 PM,Code 2 Transport,07/16/2015 10:39:09 PM,700 Block of MARKET ST,San Francisco,94108,B99,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",151973587-62 -152062267,E01,15078542,Medical Incident,07/25/2015,07/25/2015,07/25/2015 03:17:57 PM,07/25/2015 03:18:21 PM,07/25/2015 03:19:54 PM,07/25/2015 03:19:54 PM,07/25/2015 03:20:56 PM,04/25/2016 01:09:16 PM,04/25/2016 01:09:16 PM,No Merit,07/25/2015 03:21:49 PM,CLEMENTINA ST/6TH ST,San Francisco,94103,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.778942761412, -122.406162859193)",152062267-E01 -150151762,87,15005953,Medical Incident,01/15/2015,01/15/2015,01/15/2015 01:03:32 PM,01/15/2015 01:04:50 PM,01/15/2015 01:05:25 PM,01/15/2015 01:06:15 PM,01/15/2015 01:13:44 PM,01/15/2015 01:30:24 PM,01/15/2015 01:54:20 PM,Code 2 Transport,01/15/2015 02:27:47 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",150151762-87 -142452190,E34,14085391,Medical Incident,09/02/2014,09/02/2014,09/02/2014 02:33:25 PM,09/02/2014 02:35:20 PM,09/02/2014 02:35:49 PM,09/02/2014 02:36:56 PM,09/02/2014 02:38:33 PM,04/25/2016 01:15:18 PM,04/25/2016 01:15:18 PM,Code 2 Transport,09/02/2014 02:57:30 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",142452190-E34 -160942624,57,16037348,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:59:54 PM,04/03/2016 05:01:01 PM,04/03/2016 05:01:49 PM,04/03/2016 05:02:42 PM,04/03/2016 05:09:23 PM,04/03/2016 05:12:44 PM,04/03/2016 05:46:36 PM,Code 2 Transport,04/03/2016 06:22:43 PM,EVANS AV/CESAR CHAVEZ ST,San Francisco,94124,B10,9,6422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7496846238091, -122.397285418019)",160942624-57 -160974529,76,16038705,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:49:15 PM,04/06/2016 10:51:13 PM,04/06/2016 10:51:37 PM,04/06/2016 10:51:48 PM,04/06/2016 10:56:40 PM,04/06/2016 11:10:35 PM,04/06/2016 11:14:27 PM,Code 2 Transport,04/06/2016 11:36:46 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160974529-76 -153301795,56,15127054,Medical Incident,11/26/2015,11/26/2015,11/26/2015 03:36:07 PM,11/26/2015 03:38:35 PM,11/26/2015 03:40:06 PM,11/26/2015 03:40:50 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 2 Transport,11/26/2015 03:40:59 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7849474956973, -122.417785340586)",153301795-56 -153031010,62,15116141,Medical Incident,10/30/2015,10/30/2015,10/30/2015 09:13:16 AM,10/30/2015 09:13:16 AM,10/30/2015 09:14:06 AM,10/30/2015 09:14:28 AM,10/30/2015 09:26:11 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Patient Declined Transport,10/30/2015 09:50:16 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",153031010-62 -142202186,74,14076383,Medical Incident,08/08/2014,08/08/2014,08/08/2014 03:20:18 PM,08/08/2014 03:21:19 PM,08/08/2014 03:29:49 PM,08/08/2014 03:29:56 PM,08/08/2014 03:37:36 PM,08/08/2014 03:46:09 PM,08/08/2014 04:11:08 PM,Code 2 Transport,08/08/2014 04:12:29 PM,TURK BL/ROSELYN TR,San Francisco,94118,B05,21,4564,2,3,3,true,Non Life-threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.778277008364, -122.449767077852)",142202186-74 -161002505,AM18,16039864,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:47:45 PM,04/09/2016 05:47:45 PM,04/09/2016 05:48:07 PM,04/09/2016 05:49:35 PM,04/09/2016 05:53:56 PM,04/09/2016 06:07:36 PM,04/09/2016 06:20:38 PM,Code 2 Transport,04/09/2016 06:58:41 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7621440348149, -122.421551451612)",161002505-AM18 -153424128,D2,15131811,Structure Fire,12/08/2015,12/08/2015,12/08/2015 11:34:38 PM,12/08/2015 11:35:12 PM,12/08/2015 11:35:48 PM,12/08/2015 11:37:08 PM,12/08/2015 11:38:54 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Fire,12/08/2015 11:40:38 PM,FRANKLIN ST/FELL ST,San Francisco,94102,B02,36,3213,3,3,3,false,Alarm,1,CHIEF,4,2,5,Hayes Valley,"(37.7761587640112, -122.421148424067)",153424128-D2 -152302581,E13,15087835,Alarms,08/18/2015,08/18/2015,08/18/2015 04:45:01 PM,08/18/2015 04:46:31 PM,08/18/2015 04:47:07 PM,08/18/2015 04:48:25 PM,08/18/2015 04:50:31 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Fire,08/18/2015 04:56:26 PM,0 Block of SANSOME ST,San Francisco,94104,B01,13,1164,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",152302581-E13 -141260362,E01,14042849,Alarms,05/06/2014,05/06/2014,05/06/2014 08:24:36 PM,05/06/2014 08:25:45 PM,05/06/2014 08:27:39 PM,05/06/2014 08:29:07 PM,05/06/2014 08:31:17 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Fire,05/06/2014 08:34:18 PM,200 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",141260362-E01 -160963341,63,16038142,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:43:47 PM,04/05/2016 06:45:32 PM,04/05/2016 06:45:55 PM,04/05/2016 06:46:53 PM,04/05/2016 06:49:24 PM,04/05/2016 07:03:34 PM,04/05/2016 07:23:00 PM,Code 2 Transport,04/05/2016 07:51:18 PM,0 Block of SHERMAN ST,San Francisco,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7766015774052, -122.405924386123)",160963341-63 -151012295,78,15038262,Medical Incident,04/11/2015,04/11/2015,04/11/2015 03:59:11 PM,04/11/2015 03:59:11 PM,04/11/2015 03:59:47 PM,04/11/2015 03:59:55 PM,04/11/2015 04:03:33 PM,04/11/2015 04:11:51 PM,04/11/2015 04:43:58 PM,Code 2 Transport,04/11/2015 05:32:26 PM,MISSION ST/19TH ST,San Francisco,94110,B02,7,5433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",151012295-78 -160991861,63,16039315,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:45:08 PM,04/08/2016 01:48:42 PM,04/08/2016 01:48:53 PM,04/08/2016 01:49:06 PM,04/08/2016 01:55:14 PM,04/08/2016 02:42:51 PM,04/08/2016 03:01:16 PM,Code 2 Transport,04/08/2016 03:56:42 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160991861-63 -151421563,62,15053962,Medical Incident,05/22/2015,05/22/2015,05/22/2015 11:45:44 AM,05/22/2015 11:46:56 AM,05/22/2015 11:47:24 AM,05/22/2015 11:47:35 AM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,04/25/2016 01:10:27 PM,Patient Declined Transport,05/22/2015 11:49:24 AM,2400 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,2,2,2,true,Non Life-threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.7770932891379, -122.450891105827)",151421563-62 -160971653,71,16038390,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:42:36 AM,04/06/2016 11:44:04 AM,04/06/2016 11:44:13 AM,04/06/2016 11:44:33 AM,04/06/2016 11:50:03 AM,04/06/2016 12:03:59 PM,04/06/2016 12:14:21 PM,Code 2 Transport,04/06/2016 12:46:49 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160971653-71 -161000735,61,16039652,Medical Incident,04/09/2016,04/08/2016,04/09/2016 07:36:55 AM,04/09/2016 07:38:28 AM,04/09/2016 07:38:41 AM,04/09/2016 07:38:50 AM,04/09/2016 07:45:19 AM,04/09/2016 08:05:08 AM,04/09/2016 08:16:37 AM,Code 2 Transport,04/09/2016 08:30:35 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161000735-61 -160922791,71,16036543,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:36:32 PM,04/01/2016 05:38:53 PM,04/01/2016 05:40:22 PM,04/01/2016 05:40:34 PM,04/01/2016 06:01:15 PM,04/01/2016 06:09:40 PM,04/01/2016 06:23:33 PM,Code 2 Transport,04/01/2016 07:07:40 PM,DIVISADERO ST/OAK ST,San Francisco,94117,B05,21,4144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.773133492205, -122.437422938764)",160922791-71 -152991876,E11,15114778,Medical Incident,10/26/2015,10/26/2015,10/26/2015 01:06:32 PM,10/26/2015 01:08:03 PM,10/26/2015 01:18:23 PM,10/26/2015 01:19:24 PM,10/26/2015 01:22:13 PM,04/25/2016 01:07:34 PM,04/25/2016 01:07:34 PM,Code 2 Transport,10/26/2015 02:21:58 PM,2900 Block of 22ND ST,San Francisco,94110,B06,7,5473,2,3,3,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7557444481479, -122.412740693913)",152991876-E11 -150513360,E02,15019799,Medical Incident,02/20/2015,02/20/2015,02/20/2015 07:16:14 PM,02/20/2015 07:17:10 PM,02/20/2015 07:18:50 PM,02/20/2015 07:19:59 PM,02/20/2015 07:27:24 PM,04/25/2016 01:12:08 PM,04/25/2016 01:12:08 PM,Unable to Locate,02/20/2015 07:31:11 PM,MARKET ST/POWELL ST,San Francisco,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",150513360-E02 -143544782,E05,14126729,Medical Incident,12/20/2014,12/20/2014,12/20/2014 11:23:23 PM,12/20/2014 11:23:23 PM,12/20/2014 11:31:25 PM,12/20/2014 11:31:46 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,04/25/2016 01:13:19 PM,Code 2 Transport,12/20/2014 11:33:29 PM,1100 Block of POLK ST,San Francisco,94109,B04,3,3121,2,E,3,true,Potentially Life-Threatening,1,ENGINE,6,4,3,Nob Hill,"(37.7875270531816, -122.419999491247)",143544782-E05 -141721731,B08,14059363,Structure Fire,06/21/2014,06/21/2014,06/21/2014 01:18:55 PM,06/21/2014 01:20:24 PM,06/21/2014 01:21:33 PM,06/21/2014 01:22:30 PM,06/21/2014 01:28:53 PM,04/25/2016 01:16:38 PM,04/25/2016 01:16:38 PM,Fire,06/21/2014 01:36:07 PM,0 Block of DENSLOWE DR,San Francisco,94132,B08,19,8726,3,3,3,false,Alarm,1,CHIEF,4,9,7,West of Twin Peaks,"(37.7246736689793, -122.474242189275)",141721731-B08 -152913406,E12,15111976,Medical Incident,10/18/2015,10/18/2015,10/18/2015 09:36:47 PM,10/18/2015 09:38:03 PM,10/18/2015 09:39:12 PM,10/18/2015 09:39:21 PM,10/18/2015 09:42:06 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Against Medical Advice,10/18/2015 09:54:16 PM,700 Block of SHRADER ST,San Francisco,94117,B05,12,4546,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7679729379823, -122.45164990634)",152913406-E12 -160950393,78,16037515,Medical Incident,04/04/2016,04/03/2016,04/04/2016 05:36:19 AM,04/04/2016 05:37:34 AM,04/04/2016 05:37:57 AM,04/04/2016 05:38:03 AM,04/04/2016 05:44:07 AM,04/04/2016 05:57:17 AM,04/04/2016 06:14:24 AM,Code 2 Transport,04/04/2016 06:25:34 AM,2300 Block of 18TH AVE,San Francisco,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7440272934242, -122.474757875278)",160950393-78 -150712994,72,15027222,Traffic Collision,03/12/2015,03/12/2015,03/12/2015 05:46:57 PM,03/12/2015 05:46:57 PM,03/12/2015 05:47:11 PM,03/12/2015 05:47:35 PM,03/12/2015 06:15:31 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Against Medical Advice,03/12/2015 06:34:42 PM,FREMONT ST/HARRISON ST,San Francisco,94105,B03,35,2137,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.78676548234, -122.392052962945)",150712994-72 -152361741,E41,15089904,Medical Incident,08/24/2015,08/24/2015,08/24/2015 12:23:04 PM,08/24/2015 12:23:27 PM,08/24/2015 12:23:46 PM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,04/25/2016 01:08:45 PM,Code 2 Transport,08/24/2015 12:26:10 PM,1400 Block of VAN NESS AVE,San Francisco,94109,B04,3,3156,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,2,Western Addition,"(37.7886856403573, -122.422163486157)",152361741-E41 -151922858,77,15073396,Medical Incident,07/11/2015,07/11/2015,07/11/2015 05:58:35 PM,07/11/2015 05:59:49 PM,07/11/2015 06:00:18 PM,07/11/2015 06:00:29 PM,07/11/2015 06:03:19 PM,07/11/2015 06:39:50 PM,07/11/2015 06:49:06 PM,Code 2 Transport,07/11/2015 07:25:56 PM,1200 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7912571694899, -122.414917737337)",151922858-77 -151801651,2R01,15068726,,06/29/2015,06/29/2015,06/29/2015 12:55:19 PM,06/29/2015 12:55:53 PM,06/29/2015 01:05:57 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,04/25/2016 01:09:44 PM,Code 2 Transport,06/29/2015 01:07:30 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,ADMIN,0,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",151801651-2R01 -160974220,71,16038676,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:23:13 PM,04/06/2016 09:23:52 PM,04/06/2016 09:24:48 PM,04/06/2016 09:24:59 PM,04/06/2016 09:31:36 PM,04/06/2016 09:53:44 PM,04/06/2016 10:05:41 PM,Code 2 Transport,04/06/2016 10:34:11 PM,2700 Block of PINE ST,San Francisco,94115,B04,10,4156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7869521630601, -122.441071822801)",160974220-71 -150133327,68,15005304,Medical Incident,01/13/2015,01/13/2015,01/13/2015 07:34:35 PM,01/13/2015 07:38:17 PM,01/13/2015 07:39:47 PM,01/13/2015 07:39:56 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Code 2 Transport,01/13/2015 07:44:00 PM,1800 Block of VISITACION AVE,San Francisco,94134,B08,44,7523,2,2,2,true,Non Life-threatening,1,MEDIC,4,9,10,McLaren Park,"(37.7162666820869, -122.414215025813)",150133327-68 -160973619,KM05,16038613,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:39:37 PM,04/06/2016 06:40:10 PM,04/06/2016 06:44:40 PM,04/06/2016 06:44:40 PM,04/06/2016 06:49:12 PM,04/06/2016 06:55:49 PM,04/06/2016 07:23:57 PM,Code 2 Transport,04/06/2016 07:50:27 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160973619-KM05 -151071164,T11,15040415,Gas Leak (Natural and LP Gases),04/17/2015,04/17/2015,04/17/2015 09:50:20 AM,04/17/2015 09:51:53 AM,04/17/2015 09:52:05 AM,04/17/2015 09:54:39 AM,04/17/2015 10:04:04 AM,04/25/2016 01:11:07 PM,04/25/2016 01:11:07 PM,Fire,04/17/2015 10:22:57 AM,700 Block of CORBETT AVE,San Francisco,94131,B06,24,526,3,3,3,false,Alarm,1,TRUCK,2,6,8,Twin Peaks,"(37.7552854398529, -122.442400038837)",151071164-T11 -142893471,53,14102000,Medical Incident,10/16/2014,10/16/2014,10/16/2014 08:24:34 PM,10/16/2014 08:24:34 PM,10/16/2014 08:25:17 PM,10/16/2014 08:25:24 PM,10/16/2014 08:30:34 PM,10/16/2014 08:34:17 PM,10/16/2014 08:51:40 PM,Code 2 Transport,10/16/2014 09:11:37 PM,4TH ST/BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7757873146535, -122.393355126399)",142893471-53 -143563026,E42,14127475,Medical Incident,12/22/2014,12/22/2014,12/22/2014 05:55:33 PM,12/22/2014 05:56:11 PM,12/22/2014 06:06:20 PM,12/22/2014 06:08:17 PM,12/22/2014 06:11:09 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Code 2 Transport,12/22/2014 06:14:05 PM,200 Block of BANKS ST,San Francisco,94110,B10,32,5727,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,9,Bernal Heights,"(37.7397664770684, -122.412789358109)",143563026-E42 -160921757,64,16036446,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:20:24 PM,04/01/2016 01:21:15 PM,04/01/2016 01:21:31 PM,04/01/2016 01:21:55 PM,04/01/2016 01:26:09 PM,04/01/2016 01:34:38 PM,04/01/2016 01:47:32 PM,Code 2 Transport,04/01/2016 02:20:59 PM,1700 Block of LA SALLE AVE,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7381169167757, -122.391416846144)",160921757-64 -150290838,E15,15011070,Traffic Collision,01/29/2015,01/29/2015,01/29/2015 08:34:06 AM,01/29/2015 08:35:23 AM,01/29/2015 08:35:39 AM,01/29/2015 08:36:56 AM,01/29/2015 08:39:14 AM,04/25/2016 01:12:34 PM,04/25/2016 01:12:34 PM,Code 2 Transport,01/29/2015 08:46:43 AM,SAN JOSE AV/GENEVA AV,San Francisco,94112,B09,15,8311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",150290838-E15 -160950228,KM07,16037495,Medical Incident,04/04/2016,04/03/2016,04/04/2016 03:02:06 AM,04/04/2016 03:02:54 AM,04/04/2016 03:03:52 AM,04/04/2016 03:04:34 AM,04/04/2016 03:10:33 AM,04/04/2016 03:35:35 AM,04/04/2016 03:54:03 AM,Code 2 Transport,04/04/2016 04:27:57 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160950228-KM07 -142613340,RC2,14091388,Medical Incident,09/18/2014,09/18/2014,09/18/2014 07:15:35 PM,09/18/2014 07:16:29 PM,09/18/2014 07:21:11 PM,09/18/2014 07:21:11 PM,09/18/2014 07:23:05 PM,04/25/2016 01:15:01 PM,04/25/2016 01:15:01 PM,Code 2 Transport,09/18/2014 07:33:48 PM,600 Block of 27TH AVE,San Francisco,94121,B07,14,7222,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7771393848797, -122.486601211072)",142613340-RC2 -141660878,AM04,14057200,Traffic Collision,06/15/2014,06/15/2014,06/15/2014 09:29:51 AM,06/15/2014 09:30:47 AM,06/15/2014 09:35:09 AM,06/15/2014 09:35:09 AM,06/15/2014 09:50:32 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Patient Declined Transport,06/15/2014 09:52:32 AM,25TH AV/ANZA ST,San Francisco,94121,B07,14,7213,A,A,2,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7781658332143, -122.484595235477)",141660878-AM04 -143590595,B09,14128373,Structure Fire,12/25/2014,12/24/2014,12/25/2014 07:17:49 AM,12/25/2014 07:20:31 AM,12/25/2014 07:20:50 AM,12/25/2014 07:22:08 AM,12/25/2014 07:27:37 AM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,Fire,12/25/2014 07:39:40 AM,1600 Block of YORK ST,San Francisco,94110,B06,9,5672,3,3,3,false,Alarm,1,CHIEF,4,6,9,Bernal Heights,"(37.7472126200736, -122.406528665244)",143590595-B09 -141661085,E36,14057223,Structure Fire,06/15/2014,06/15/2014,06/15/2014 10:55:34 AM,06/15/2014 10:56:42 AM,06/15/2014 10:57:07 AM,06/15/2014 10:58:24 AM,06/15/2014 10:59:56 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Fire,06/15/2014 11:12:44 AM,500 Block of 14TH ST,San Francisco,94103,B02,6,5214,3,3,3,true,Alarm,1,ENGINE,3,2,8,Mission,"(37.7679989787163, -122.425450057275)",141661085-E36 -150450614,64,15017388,Medical Incident,02/14/2015,02/13/2015,02/14/2015 04:27:48 AM,02/14/2015 04:27:48 AM,02/14/2015 04:28:24 AM,02/14/2015 04:28:33 AM,02/14/2015 04:37:15 AM,02/14/2015 05:34:49 AM,02/14/2015 05:34:52 AM,Code 2 Transport,02/14/2015 05:35:00 AM,100 Block of LOUISBURG ST,San Francisco,94112,B09,15,8315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7210924859099, -122.449637733495)",150450614-64 -151412824,E02,15053671,Medical Incident,05/21/2015,05/21/2015,05/21/2015 04:45:49 PM,05/21/2015 04:47:38 PM,05/21/2015 04:48:44 PM,05/21/2015 04:49:36 PM,05/21/2015 04:56:34 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Patient Declined Transport,05/21/2015 05:07:53 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",151412824-E02 -150903325,78,15034408,Medical Incident,03/31/2015,03/31/2015,03/31/2015 08:06:57 PM,03/31/2015 08:08:30 PM,03/31/2015 08:11:38 PM,03/31/2015 08:11:45 PM,03/31/2015 08:35:33 PM,03/31/2015 08:46:52 PM,03/31/2015 09:06:20 PM,Code 2 Transport,03/31/2015 09:26:00 PM,1500 Block of 15TH AVE,San Francisco,94122,B08,22,7351,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7586227526525, -122.471702948704)",150903325-78 -160923548,85,16036614,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:27:44 PM,04/01/2016 09:29:13 PM,04/01/2016 09:29:40 PM,04/01/2016 09:29:48 PM,04/01/2016 09:46:11 PM,04/01/2016 09:58:54 PM,04/01/2016 10:23:35 PM,Code 2 Transport,04/01/2016 10:56:52 PM,400 Block of DETROIT ST,San Francisco,94112,B09,15,8222,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7308894613147, -122.444365830843)",160923548-85 -142403483,E17,14083650,Vehicle Fire,08/28/2014,08/28/2014,08/28/2014 09:48:07 PM,08/28/2014 09:48:54 PM,08/28/2014 09:49:04 PM,08/28/2014 09:50:18 PM,08/28/2014 09:53:28 PM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,Fire,08/28/2014 10:31:51 PM,700 Block of INGERSON AVE,San Francisco,94124,B10,17,6642,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7168759037258, -122.389247520149)",142403483-E17 -160982370,55,16038973,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:55:09 PM,04/07/2016 02:56:43 PM,04/07/2016 02:57:24 PM,04/07/2016 02:57:32 PM,04/07/2016 03:06:51 PM,04/07/2016 03:17:08 PM,04/07/2016 03:28:13 PM,Code 2 Transport,04/07/2016 04:07:22 PM,1400 Block of GRANT AVE,San Francisco,94133,B01,28,1266,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8001795612037, -122.40742149758)",160982370-55 -161001557,66,16039754,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:38:08 PM,04/09/2016 12:43:01 PM,04/09/2016 12:43:10 PM,04/09/2016 12:43:32 PM,04/09/2016 12:54:48 PM,04/09/2016 01:53:25 PM,04/09/2016 02:01:02 PM,Code 2 Transport,04/09/2016 02:26:08 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,2,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",161001557-66 -143260922,KM01,14115412,Medical Incident,11/22/2014,11/22/2014,11/22/2014 08:45:23 AM,11/22/2014 08:47:32 AM,11/22/2014 08:48:54 AM,11/22/2014 08:49:30 AM,11/22/2014 08:54:48 AM,11/22/2014 09:03:16 AM,11/22/2014 09:24:49 AM,Code 2 Transport,11/22/2014 10:00:08 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",143260922-KM01 -160962229,52,16038049,Medical Incident,04/05/2016,04/05/2016,04/05/2016 02:33:02 PM,04/05/2016 02:35:10 PM,04/05/2016 02:36:02 PM,04/05/2016 02:36:11 PM,04/05/2016 02:46:00 PM,04/05/2016 03:00:22 PM,04/05/2016 03:26:16 PM,Code 2 Transport,04/05/2016 03:51:20 PM,100 Block of MONETA WAY,San Francisco,94112,B09,33,8347,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7125970808133, -122.450510469126)",160962229-52 -160960290,KM07,16037870,Medical Incident,04/05/2016,04/04/2016,04/05/2016 03:44:29 AM,04/05/2016 03:45:46 AM,04/05/2016 03:46:05 AM,04/05/2016 03:47:23 AM,04/05/2016 03:59:39 AM,04/05/2016 04:15:42 AM,04/05/2016 04:32:51 AM,Code 2 Transport,04/05/2016 05:06:48 AM,0 Block of YERBA BUENA LN,San Francisco,94103,B03,1,2178,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7856865420014, -122.404306322623)",160960290-KM07 -160952435,85,16037678,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:22:39 PM,04/04/2016 03:25:24 PM,04/04/2016 03:26:20 PM,04/04/2016 03:26:27 PM,04/04/2016 03:38:28 PM,04/04/2016 04:07:37 PM,04/04/2016 04:20:56 PM,Code 2 Transport,04/04/2016 05:05:33 PM,400 Block of 18TH AVE,San Francisco,94121,B07,31,7161,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",160952435-85 -161001019,62,16039684,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:40:03 AM,04/09/2016 09:41:51 AM,04/09/2016 09:42:03 AM,04/09/2016 09:42:18 AM,04/09/2016 09:50:30 AM,04/09/2016 10:03:58 AM,04/09/2016 10:33:40 AM,Code 2 Transport,04/09/2016 11:13:27 AM,2100 Block of LEAVENWORTH ST,San Francisco,94109,B01,28,1532,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8007942724264, -122.417760921659)",161001019-62 -141391253,E03,14047628,Structure Fire,05/19/2014,05/19/2014,05/19/2014 11:14:50 AM,05/19/2014 11:16:13 AM,05/19/2014 11:16:56 AM,05/19/2014 11:19:43 AM,05/19/2014 11:19:43 AM,04/25/2016 01:17:14 PM,04/25/2016 01:17:14 PM,Fire,05/19/2014 11:39:27 AM,900 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,3,3,3,false,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7833939650918, -122.422536931307)",141391253-E03 -142410355,RC2,14083720,Medical Incident,08/29/2014,08/28/2014,08/29/2014 03:09:23 AM,08/29/2014 03:12:19 AM,08/29/2014 03:12:39 AM,08/29/2014 03:13:29 AM,08/29/2014 03:25:43 AM,04/25/2016 01:15:24 PM,04/25/2016 01:15:24 PM,Code 3 Transport,08/29/2014 03:28:04 AM,2900 Block of 19TH AVE,San Francisco,94132,B08,19,7413,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,7,West of Twin Peaks,"(37.7335450689603, -122.474892764584)",142410355-RC2 -151660723,82,15063389,Medical Incident,06/15/2015,06/15/2015,06/15/2015 08:23:30 AM,06/15/2015 08:25:06 AM,06/15/2015 08:25:15 AM,06/15/2015 08:25:44 AM,06/15/2015 08:30:13 AM,06/15/2015 08:50:34 AM,06/15/2015 09:15:55 AM,Code 2 Transport,06/15/2015 09:44:12 AM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",151660723-82 -143572122,E28,14127800,Alarms,12/23/2014,12/23/2014,12/23/2014 02:19:56 PM,12/23/2014 02:21:33 PM,12/23/2014 02:21:55 PM,12/23/2014 02:22:55 PM,12/23/2014 02:24:39 PM,04/25/2016 01:13:15 PM,04/25/2016 01:13:15 PM,Fire,12/23/2014 02:41:34 PM,300 Block of FRANCISCO ST,San Francisco,94133,B01,28,131,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8050285945628, -122.411146080313)",143572122-E28 -150540551,RS1,15020633,Structure Fire,02/23/2015,02/22/2015,02/23/2015 07:18:38 AM,02/23/2015 07:19:29 AM,02/23/2015 07:19:39 AM,02/23/2015 07:21:34 AM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,04/25/2016 01:12:05 PM,Fire,02/23/2015 07:26:15 AM,800 Block of 32ND AVE,San Francisco,94121,B07,14,7242,3,3,3,false,Alarm,1,RESCUE SQUAD,10,7,1,Outer Richmond,"(37.7731638886859, -122.491686815577)",150540551-RS1 -142810963,B02,14098787,Alarms,10/08/2014,10/08/2014,10/08/2014 09:31:11 AM,10/08/2014 09:32:40 AM,10/08/2014 09:33:14 AM,10/08/2014 09:38:42 AM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Fire,10/08/2014 09:42:02 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",142810963-B02 -143542893,KM01,14126565,Medical Incident,12/20/2014,12/20/2014,12/20/2014 03:05:20 PM,12/20/2014 03:06:26 PM,12/20/2014 03:07:22 PM,12/20/2014 03:08:04 PM,12/20/2014 03:11:24 PM,12/20/2014 03:26:07 PM,12/20/2014 03:41:54 PM,Code 2 Transport,12/20/2014 04:32:09 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",143542893-KM01 -152872368,E03,15110308,Medical Incident,10/14/2015,10/14/2015,10/14/2015 02:15:05 PM,10/14/2015 02:17:02 PM,10/14/2015 02:18:53 PM,10/14/2015 02:19:12 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,04/25/2016 01:07:46 PM,Code 2 Transport,10/14/2015 02:27:16 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",152872368-E03 -142042977,KM14,14070717,Water Rescue,07/23/2014,07/23/2014,07/23/2014 05:43:25 PM,07/23/2014 05:47:18 PM,07/23/2014 05:49:50 PM,07/23/2014 05:51:07 PM,07/23/2014 06:00:31 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Fire,07/23/2014 06:28:13 PM,300 Block of GREAT HWY,San Francisco,94121,B07,34,7314,3,3,3,false,Fire,1,PRIVATE,7,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",142042977-KM14 -143383466,E10,14120130,Medical Incident,12/04/2014,12/04/2014,12/04/2014 08:20:58 PM,12/04/2014 08:22:33 PM,12/04/2014 08:26:07 PM,12/04/2014 08:27:08 PM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,04/25/2016 01:13:39 PM,Code 2 Transport,12/04/2014 08:29:10 PM,400 Block of 41ST AVE,San Francisco,94121,B07,34,7264,2,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7803675145572, -122.502018689071)",143383466-E10 -141060362,AM08,14035893,Medical Incident,04/16/2014,04/16/2014,04/16/2014 07:12:03 PM,04/16/2014 07:13:37 PM,04/16/2014 07:16:13 PM,04/16/2014 07:16:47 PM,04/16/2014 07:28:28 PM,04/16/2014 07:41:42 PM,04/16/2014 08:19:04 PM,Code 2 Transport,04/16/2014 08:45:31 PM,700 Block of GEARY ST,SAN FRANCISCO,94109,B04,3,1556,,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",141060362-AM08 -142681115,E14,14093866,Medical Incident,09/25/2014,09/25/2014,09/25/2014 10:19:40 AM,09/25/2014 10:21:44 AM,09/25/2014 10:22:30 AM,09/25/2014 10:23:04 AM,09/25/2014 10:23:04 AM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Cancelled,09/25/2014 10:29:56 AM,4100 Block of CLEMENT ST,San Francisco,94121,B07,34,7265,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",142681115-E14 -151052816,E34,15039761,Outside Fire,04/15/2015,04/15/2015,04/15/2015 05:03:07 PM,04/15/2015 05:08:22 PM,04/15/2015 05:08:39 PM,04/15/2015 05:10:13 PM,04/15/2015 05:13:43 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Fire,04/15/2015 05:16:41 PM,3200 Block of CLEMENT ST,San Francisco,94121,B07,34,7247,3,3,3,false,Fire,1,ENGINE,1,7,1,Lincoln Park,"(37.781656621504, -122.493997393675)",151052816-E34 -152422677,B07,15092392,Traffic Collision,08/30/2015,08/30/2015,08/30/2015 05:07:17 PM,08/30/2015 05:07:58 PM,08/30/2015 05:08:22 PM,08/30/2015 05:09:32 PM,08/30/2015 05:15:38 PM,04/25/2016 01:08:38 PM,04/25/2016 01:08:38 PM,Code 2 Transport,08/30/2015 05:36:57 PM,LINCOLN WY/48TH AV,San Francisco,94122,B08,23,7722,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7640760213768, -122.508331368123)",152422677-B07 -152430466,E36,15092570,Medical Incident,08/31/2015,08/30/2015,08/31/2015 04:38:07 AM,08/31/2015 04:39:41 AM,08/31/2015 04:39:58 AM,08/31/2015 04:42:05 AM,08/31/2015 04:44:57 AM,04/25/2016 01:08:37 PM,04/25/2016 01:08:37 PM,Code 2 Transport,08/31/2015 04:49:51 AM,200 Block of LARKIN ST,San Francisco,94102,B02,36,1645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",152430466-E36 -152392444,E44,15091075,Vehicle Fire,08/27/2015,08/27/2015,08/27/2015 03:26:27 PM,08/27/2015 03:28:08 PM,08/27/2015 03:28:25 PM,08/27/2015 03:29:15 PM,08/27/2015 03:31:14 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/27/2015 03:50:58 PM,BAYSHORE BL/HESTER AV,San Francisco,94134,B10,44,6271,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7135840393129, -122.400016691724)",152392444-E44 -160932209,AM16,16036915,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:20:54 PM,04/02/2016 03:21:45 PM,04/02/2016 03:23:40 PM,04/02/2016 03:24:38 PM,04/02/2016 03:30:36 PM,04/02/2016 03:41:22 PM,04/02/2016 03:55:38 PM,Code 2 Transport,04/02/2016 04:33:28 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160932209-AM16 -142901829,E08,14102258,Other,10/17/2014,10/17/2014,10/17/2014 01:40:22 PM,10/17/2014 01:42:23 PM,10/17/2014 01:42:36 PM,10/17/2014 01:43:57 PM,10/17/2014 01:47:10 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Fire,10/17/2014 01:50:52 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7786852295711, -122.405938165868)",142901829-E08 -143523353,KM11,14125896,Medical Incident,12/18/2014,12/18/2014,12/18/2014 07:23:07 PM,12/18/2014 07:24:40 PM,12/18/2014 07:25:06 PM,12/18/2014 07:25:50 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,04/25/2016 01:13:21 PM,Code 2 Transport,12/18/2014 07:26:27 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",143523353-KM11 -143332199,RC3,14118064,Medical Incident,11/29/2014,11/29/2014,11/29/2014 03:42:53 PM,11/29/2014 03:42:53 PM,11/29/2014 03:43:14 PM,11/29/2014 03:43:24 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,Medical Examiner,11/29/2014 03:52:42 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",143332199-RC3 -143590271,E06,14128330,Structure Fire,12/25/2014,12/24/2014,12/25/2014 02:37:34 AM,12/25/2014 02:37:34 AM,12/25/2014 02:37:55 AM,12/25/2014 02:39:02 AM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,04/25/2016 01:13:14 PM,Fire,12/25/2014 02:51:39 AM,3700 Block of 18TH ST,San Francisco,94114,B06,6,541,3,3,3,true,Alarm,1,ENGINE,3,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",143590271-E06 -141660966,E13,14057213,Medical Incident,06/15/2014,06/15/2014,06/15/2014 10:04:30 AM,06/15/2014 10:05:04 AM,06/15/2014 10:06:15 AM,06/15/2014 10:07:06 AM,06/15/2014 10:08:30 AM,04/25/2016 01:16:45 PM,04/25/2016 01:16:45 PM,Code 2 Transport,06/15/2014 10:25:25 AM,CALIFORNIA ST/BATTERY ST,San Francisco,94111,B01,13,1162,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",141660966-E13 -160972658,56,16038491,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:20:43 PM,04/06/2016 03:22:13 PM,04/06/2016 03:22:22 PM,04/06/2016 03:22:57 PM,04/06/2016 03:29:33 PM,04/06/2016 03:44:26 PM,04/06/2016 04:03:20 PM,Code 2 Transport,04/06/2016 04:33:05 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",160972658-56 -152781826,E22,15106662,Medical Incident,10/05/2015,10/05/2015,10/05/2015 01:27:07 PM,10/05/2015 01:27:58 PM,10/05/2015 01:29:16 PM,10/05/2015 01:29:21 PM,10/05/2015 01:32:40 PM,04/25/2016 01:07:57 PM,04/25/2016 01:07:57 PM,Code 2 Transport,10/05/2015 01:33:01 PM,1700 Block of 8TH AVE,San Francisco,94122,B08,22,7336,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7556932552649, -122.464586495079)",152781826-E22 -141562965,66,14053800,Medical Incident,06/05/2014,06/05/2014,06/05/2014 07:01:03 PM,06/05/2014 07:02:21 PM,06/05/2014 07:02:55 PM,06/05/2014 07:03:26 PM,06/05/2014 07:07:29 PM,06/05/2014 07:27:38 PM,06/05/2014 08:00:14 PM,Code 2 Transport,06/05/2014 08:07:41 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",141562965-66 -160973149,55,16038547,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:01:22 PM,04/06/2016 05:04:28 PM,04/06/2016 05:04:52 PM,04/06/2016 05:05:25 PM,04/06/2016 05:09:21 PM,04/06/2016 05:16:42 PM,04/06/2016 05:24:40 PM,Code 2 Transport,04/06/2016 05:40:38 PM,0 Block of VAN NESS AVE,San Francisco,94102,B02,36,3211,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7756495714097, -122.419512541033)",160973149-55 -142102652,KM14,14072884,Medical Incident,07/29/2014,07/29/2014,07/29/2014 05:55:34 PM,07/29/2014 05:56:57 PM,07/29/2014 05:57:19 PM,07/29/2014 05:57:56 PM,07/29/2014 06:07:33 PM,07/29/2014 06:15:34 PM,07/29/2014 06:30:33 PM,Code 2 Transport,07/29/2014 06:51:28 PM,500 Block of BRYANT ST,San Francisco,94107,B03,8,2217,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7806714111875, -122.39656521118)",142102652-KM14 -143450245,T06,14122561,Citizen Assist / Service Call,12/11/2014,12/10/2014,12/11/2014 02:09:57 AM,12/11/2014 02:10:12 AM,12/11/2014 02:10:42 AM,12/11/2014 02:13:28 AM,12/11/2014 02:13:28 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Fire,12/11/2014 02:20:14 AM,SANCHEZ ST/MARKET ST,San Francisco,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7658679882367, -122.431025473299)",143450245-T06 -142173702,84,14075396,Medical Incident,08/05/2014,08/05/2014,08/05/2014 10:26:11 PM,08/05/2014 10:27:38 PM,08/05/2014 10:28:58 PM,08/05/2014 10:29:05 PM,08/05/2014 10:37:03 PM,08/05/2014 10:43:45 PM,08/05/2014 10:58:16 PM,Code 2 Transport,08/05/2014 11:32:50 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",142173702-84 -152202424,T08,15083881,Structure Fire,08/08/2015,08/08/2015,08/08/2015 04:25:35 PM,08/08/2015 04:25:50 PM,08/08/2015 04:26:08 PM,08/08/2015 04:27:57 PM,08/08/2015 04:31:10 PM,04/25/2016 01:09:02 PM,04/25/2016 01:09:02 PM,Fire,08/08/2015 04:34:23 PM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,5,3,6,South of Market,"(37.7810688918781, -122.407387172098)",152202424-T08 -153290415,RC2,15126495,Structure Fire,11/25/2015,11/24/2015,11/25/2015 06:19:18 AM,11/25/2015 06:20:04 AM,11/25/2015 06:25:12 AM,11/25/2015 06:27:28 AM,11/25/2015 06:34:43 AM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,Fire,11/25/2015 07:07:27 AM,1400 Block of 42ND AVE,San Francisco,94122,B08,23,7631,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,8,4,Sunset/Parkside,"(37.759683719968, -122.501503448088)",153290415-RC2 -160922816,52,16036545,Medical Incident,04/01/2016,04/01/2016,04/01/2016 05:43:58 PM,04/01/2016 05:43:58 PM,04/01/2016 05:45:42 PM,04/01/2016 05:46:06 PM,04/01/2016 06:00:55 PM,04/01/2016 06:21:30 PM,04/01/2016 06:37:25 PM,Code 2 Transport,04/01/2016 07:12:39 PM,WELSH ST/5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.777371993601, -122.399762587518)",160922816-52 -142701539,E40,14094681,Medical Incident,09/27/2014,09/27/2014,09/27/2014 11:31:12 AM,09/27/2014 11:31:12 AM,09/27/2014 11:31:12 AM,09/27/2014 11:31:12 AM,09/27/2014 11:31:12 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,Code 2 Transport,09/27/2014 11:56:34 AM,30TH AV/NORIEGA ST,San Francisco,94122,B08,18,7534,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7537209038952, -122.48826407821)",142701539-E40 -160942934,88,16037373,Medical Incident,04/03/2016,04/03/2016,04/03/2016 06:32:14 PM,04/03/2016 06:32:14 PM,04/03/2016 06:32:40 PM,04/03/2016 06:32:53 PM,04/03/2016 06:40:09 PM,04/03/2016 06:47:39 PM,04/03/2016 07:07:13 PM,Code 2 Transport,04/03/2016 07:46:27 PM,100 Block of SCHWERIN ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7114235777776, -122.411060135574)",160942934-88 -160973046,81,16038535,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:41:02 PM,04/06/2016 04:42:27 PM,04/06/2016 04:42:36 PM,04/06/2016 04:46:39 PM,04/06/2016 04:47:34 PM,04/06/2016 04:58:28 PM,04/06/2016 05:27:40 PM,Code 3 Transport,04/06/2016 05:58:40 PM,400 Block of 20TH AVE,San Francisco,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7793747233139, -122.479242794814)",160973046-81 -150263335,E06,15010178,Medical Incident,01/26/2015,01/26/2015,01/26/2015 07:44:44 PM,01/26/2015 07:46:53 PM,01/26/2015 07:47:40 PM,01/26/2015 07:49:03 PM,01/26/2015 07:50:27 PM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Code 3 Transport,01/26/2015 08:02:13 PM,GERMANIA ST/STEINER ST,San Francisco,94117,B05,6,3526,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7705009598645, -122.431810934846)",150263335-E06 -141532241,83,14052629,Medical Incident,06/02/2014,06/02/2014,06/02/2014 04:17:19 PM,06/02/2014 04:18:41 PM,06/02/2014 04:19:32 PM,06/02/2014 04:19:48 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,No Merit,06/02/2014 04:27:28 PM,600 Block of JOOST AVE,San Francisco,94127,B09,15,8241,3,3,3,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7322661984276, -122.450010655402)",141532241-83 -160923836,76,16036640,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:43:51 PM,04/01/2016 10:43:51 PM,04/01/2016 10:44:04 PM,04/01/2016 10:44:11 PM,04/01/2016 10:54:52 PM,04/01/2016 11:12:06 PM,04/01/2016 11:19:03 PM,Code 2 Transport,04/01/2016 11:51:08 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160923836-76 -152351891,E17,15089604,Medical Incident,08/23/2015,08/23/2015,08/23/2015 01:45:57 PM,08/23/2015 01:47:09 PM,08/23/2015 01:47:28 PM,08/23/2015 01:49:05 PM,08/23/2015 01:53:38 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Code 2 Transport,08/23/2015 02:09:41 PM,HARBOR RD/NORTHRIDGE RD,San Francisco,94124,B10,17,6633,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7310098713367, -122.376999546443)",152351891-E17 -150133438,RS2,15005316,Structure Fire,01/13/2015,01/13/2015,01/13/2015 08:16:00 PM,01/13/2015 08:16:56 PM,01/13/2015 08:17:22 PM,01/13/2015 08:18:30 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Fire,01/13/2015 08:22:32 PM,1800 Block of JEFFERSON ST,San Francisco,94123,B04,16,4112,3,3,3,false,Alarm,1,RESCUE SQUAD,9,4,2,Marina,"(37.8046896513344, -122.442947872587)",150133438-RS2 -143270515,84,14115774,Medical Incident,11/23/2014,11/22/2014,11/23/2014 03:00:30 AM,11/23/2014 03:03:19 AM,11/23/2014 03:06:32 AM,11/23/2014 03:06:37 AM,11/23/2014 03:18:31 AM,11/23/2014 03:48:35 AM,11/23/2014 04:07:05 AM,Code 2 Transport,11/23/2014 04:14:02 AM,400 Block of PENINSULA AVE,San Francisco,94134,B10,44,6272,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7102260075137, -122.399658103785)",143270515-84 -142901662,B06,14102237,Alarms,10/17/2014,10/17/2014,10/17/2014 12:51:02 PM,10/17/2014 12:52:12 PM,10/17/2014 12:52:59 PM,10/17/2014 12:54:44 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,04/25/2016 01:14:30 PM,Fire,10/17/2014 12:59:15 PM,100 Block of CASELLI AVE,San Francisco,94114,B06,24,5412,3,3,3,false,Alarm,1,CHIEF,3,6,8,Castro/Upper Market,"(37.7595848958756, -122.441893547895)",142901662-B06 -160980671,55,16038797,Medical Incident,04/07/2016,04/06/2016,04/07/2016 07:06:16 AM,04/07/2016 07:09:20 AM,04/07/2016 07:09:45 AM,04/07/2016 07:09:51 AM,04/07/2016 07:17:27 AM,04/07/2016 07:29:22 AM,04/07/2016 07:58:03 AM,Code 3 Transport,04/07/2016 08:45:18 AM,1900 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",160980671-55 -141160384,E21,14039340,Citizen Assist / Service Call,04/26/2014,04/26/2014,04/26/2014 11:22:33 PM,04/26/2014 11:23:31 PM,04/26/2014 11:26:46 PM,04/26/2014 11:27:51 PM,04/26/2014 11:30:21 PM,04/25/2016 01:17:40 PM,04/25/2016 01:17:40 PM,Fire,04/26/2014 11:33:11 PM,700 Block of PARKER AVE,SAN FRANCISCO,94118,B05,21,4542,3,3,3,false,Alarm,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7753639647551, -122.452955343611)",141160384-E21 -160921582,63,16036428,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:31:26 PM,04/01/2016 12:32:52 PM,04/01/2016 12:33:08 PM,04/01/2016 12:33:26 PM,04/01/2016 12:39:16 PM,04/01/2016 01:26:37 PM,04/01/2016 01:26:54 PM,Code 3 Transport,04/01/2016 01:57:59 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160921582-63 -152121062,E17,15080676,Citizen Assist / Service Call,07/31/2015,07/31/2015,07/31/2015 10:04:21 AM,07/31/2015 10:05:05 AM,07/31/2015 10:05:52 AM,07/31/2015 10:09:15 AM,07/31/2015 10:13:34 AM,04/25/2016 01:09:11 PM,04/25/2016 01:09:11 PM,Fire,07/31/2015 10:19:55 AM,700 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7168290872241, -122.396710749994)",152121062-E17 -143253976,B09,14115300,Structure Fire,11/21/2014,11/21/2014,11/21/2014 11:17:40 PM,11/21/2014 11:18:42 PM,11/21/2014 11:21:35 PM,11/21/2014 11:21:40 PM,11/21/2014 11:27:19 PM,04/25/2016 01:13:53 PM,04/25/2016 01:13:53 PM,Fire,11/21/2014 11:52:16 PM,100 Block of CAMBON DR,San Francisco,94132,B08,19,8428,3,3,3,false,Alarm,1,CHIEF,6,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",143253976-B09 -142082245,E06,14072129,Medical Incident,07/27/2014,07/27/2014,07/27/2014 04:02:52 PM,07/27/2014 04:06:16 PM,07/27/2014 04:06:43 PM,07/27/2014 04:07:46 PM,07/27/2014 04:12:35 PM,04/25/2016 01:16:00 PM,04/25/2016 01:16:00 PM,Code 2 Transport,07/27/2014 04:12:43 PM,COLE ST/HAIGHT ST,San Francisco,94117,B05,12,4533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",142082245-E06 -160970654,88,16038298,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:33:33 AM,04/06/2016 07:35:21 AM,04/06/2016 07:35:51 AM,04/06/2016 07:35:55 AM,04/06/2016 07:44:47 AM,04/06/2016 07:48:59 AM,04/06/2016 08:08:40 AM,Code 2 Transport,04/06/2016 08:39:11 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160970654-88 -150780572,AM24,15029796,Medical Incident,03/19/2015,03/18/2015,03/19/2015 06:24:27 AM,03/19/2015 06:28:09 AM,03/19/2015 06:29:16 AM,03/19/2015 06:30:19 AM,03/19/2015 06:40:08 AM,03/19/2015 06:51:33 AM,03/19/2015 07:03:19 AM,Code 2 Transport,03/19/2015 07:23:39 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",150780572-AM24 -151413476,E29,15053730,Fuel Spill,05/21/2015,05/21/2015,05/21/2015 07:32:11 PM,05/21/2015 07:32:11 PM,05/21/2015 07:32:42 PM,05/21/2015 07:34:46 PM,05/21/2015 07:37:08 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Fire,05/21/2015 07:43:51 PM,1000 Block of BRANNAN ST,San Francisco,94103,B02,29,2346,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7697790272579, -122.407245586705)",151413476-E29 -160923462,86,16036609,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:03:30 PM,04/01/2016 09:05:28 PM,04/01/2016 09:06:17 PM,04/01/2016 09:06:27 PM,04/01/2016 09:09:59 PM,04/01/2016 09:40:14 PM,04/01/2016 10:02:23 PM,Code 2 Transport,04/01/2016 10:29:38 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7824182864419, -122.403869611535)",160923462-86 -150281258,E43,15010715,Medical Incident,01/28/2015,01/28/2015,01/28/2015 10:25:45 AM,01/28/2015 10:28:07 AM,01/28/2015 10:28:26 AM,01/28/2015 10:32:10 AM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,04/25/2016 01:12:35 PM,Code 2 Transport,01/28/2015 10:37:03 AM,100 Block of BRITTON ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",150281258-E43 -152303133,T01,15087890,Alarms,08/18/2015,08/18/2015,08/18/2015 07:13:26 PM,08/18/2015 07:15:03 PM,08/18/2015 07:15:54 PM,08/18/2015 07:18:06 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Fire,08/18/2015 07:25:50 PM,600 Block of MARKET ST,San Francisco,94104,B03,1,2211,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",152303133-T01 -160981650,63,16038896,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:52:10 AM,04/07/2016 11:52:10 AM,04/07/2016 11:56:29 AM,04/07/2016 11:56:37 AM,04/07/2016 12:09:30 PM,04/07/2016 12:18:26 PM,04/07/2016 12:35:33 PM,Code 2 Transport,04/07/2016 12:54:41 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160981650-63 -160990596,KM13,16039204,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:28:36 AM,04/08/2016 07:29:05 AM,04/08/2016 07:29:32 AM,04/08/2016 07:29:34 AM,04/08/2016 07:34:45 AM,04/08/2016 07:55:25 AM,04/08/2016 08:17:03 AM,Code 2 Transport,04/08/2016 08:41:09 AM,400 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7785884194197, -122.424165131998)",160990596-KM13 -142971564,T01,14104753,Alarms,10/24/2014,10/24/2014,10/24/2014 12:17:10 PM,10/24/2014 12:19:31 PM,10/24/2014 12:19:44 PM,10/24/2014 12:21:52 PM,10/24/2014 12:24:55 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Fire,10/24/2014 12:27:43 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Alarm,1,TRUCK,1,2,6,South of Market,"(37.7771214885462, -122.413681109495)",142971564-T01 -152170933,E32,15082527,Electrical Hazard,08/05/2015,08/05/2015,08/05/2015 09:01:46 AM,08/05/2015 09:02:52 AM,08/05/2015 09:04:02 AM,08/05/2015 09:04:46 AM,08/05/2015 09:08:39 AM,04/25/2016 01:09:06 PM,04/25/2016 01:09:06 PM,Fire,08/05/2015 09:14:13 AM,200 Block of NEY ST,San Francisco,94112,B09,32,5682,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7302743599027, -122.424439950124)",152170933-E32 -150593704,E35,15022727,Medical Incident,02/28/2015,02/28/2015,02/28/2015 10:50:33 PM,02/28/2015 10:50:44 PM,02/28/2015 10:51:33 PM,02/28/2015 10:53:25 PM,02/28/2015 10:56:46 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Code 2 Transport,02/28/2015 11:00:36 PM,100 Block of THE EMBARCADERO,San Francisco,94111,B03,35,2131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7953080071145, -122.3938439729)",150593704-E35 -150734159,E05,15028184,Medical Incident,03/14/2015,03/14/2015,03/14/2015 10:23:55 PM,03/14/2015 10:24:10 PM,03/14/2015 10:25:10 PM,03/14/2015 10:26:42 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,04/25/2016 01:11:43 PM,Cancelled,03/14/2015 10:27:40 PM,500 Block of DIVISADERO ST,San Francisco,94117,B05,21,4145,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Hayes Valley,"(37.7745415617003, -122.437589912285)",150734159-E05 -160951389,62,16037594,Medical Incident,04/04/2016,04/04/2016,04/04/2016 11:17:45 AM,04/04/2016 11:18:01 AM,04/04/2016 11:18:27 AM,04/04/2016 11:18:53 AM,04/04/2016 11:21:31 AM,04/04/2016 11:37:37 AM,04/04/2016 11:21:31 AM,Code 2 Transport,04/04/2016 12:32:50 PM,200 Block of CAPP ST,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7627024067539, -122.418417366729)",160951389-62 -141770761,B06,14061011,Alarms,06/26/2014,06/26/2014,06/26/2014 08:42:19 AM,06/26/2014 08:43:43 AM,06/26/2014 08:44:55 AM,06/26/2014 08:45:49 AM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 08:51:29 AM,1400 Block of DIAMOND ST,San Francisco,94131,B06,26,5557,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7459652262236, -122.435734840559)",141770761-B06 -143183116,E24,14112740,Medical Incident,11/14/2014,11/14/2014,11/14/2014 06:35:27 PM,11/14/2014 06:35:46 PM,11/14/2014 06:36:24 PM,11/14/2014 06:37:41 PM,11/14/2014 06:39:57 PM,04/25/2016 01:14:00 PM,04/25/2016 01:14:00 PM,Code 2 Transport,11/14/2014 06:58:48 PM,100 Block of GRAND VIEW AVE,San Francisco,94131,B06,24,5463,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,8,Twin Peaks,"(37.7554585827955, -122.440403277833)",143183116-E24 -160923274,AM10,16036584,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:49:49 PM,04/01/2016 07:51:09 PM,04/01/2016 07:52:27 PM,04/01/2016 07:52:53 PM,04/01/2016 08:01:28 PM,04/01/2016 08:08:04 PM,04/01/2016 08:27:05 PM,Code 2 Transport,04/01/2016 08:34:30 PM,600 Block of PRECITA AVE,San Francisco,94110,B06,9,5621,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7478011070519, -122.409150981733)",160923274-AM10 -143082115,KM10,14109034,Medical Incident,11/04/2014,11/04/2014,11/04/2014 02:35:23 PM,11/04/2014 02:37:02 PM,11/04/2014 02:46:38 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,04/25/2016 01:14:11 PM,Code 2 Transport,11/04/2014 02:47:16 PM,1200 Block of LA SALLE AVE,San Francisco,94124,B10,17,668,2,2,2,false,Non Life-threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",143082115-KM10 -160942047,KM04,16037282,Medical Incident,04/03/2016,04/03/2016,04/03/2016 02:10:47 PM,04/03/2016 02:11:25 PM,04/03/2016 02:11:40 PM,04/03/2016 02:12:07 PM,04/03/2016 02:15:33 PM,04/03/2016 02:37:23 PM,04/03/2016 02:48:26 PM,Code 2 Transport,04/03/2016 03:45:05 PM,3800 Block of 22ND ST,San Francisco,94114,B06,24,5466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7545060743536, -122.433280576051)",160942047-KM04 -142533358,T13,14088440,Alarms,09/10/2014,09/10/2014,09/10/2014 07:18:39 PM,09/10/2014 07:19:32 PM,09/10/2014 07:20:09 PM,09/10/2014 07:22:30 PM,09/10/2014 07:26:11 PM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,Fire,09/10/2014 07:38:43 PM,200 Block of HARRISON ST,San Francisco,94105,B03,35,2123,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",142533358-T13 -141341468,E13,14045687,Structure Fire,05/14/2014,05/14/2014,05/14/2014 11:17:11 AM,05/14/2014 11:17:59 AM,05/14/2014 11:18:35 AM,05/14/2014 11:19:34 AM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,04/25/2016 01:17:20 PM,Fire,05/14/2014 11:21:59 AM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,false,Alarm,1,ENGINE,11,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",141341468-E13 -150202353,T19,15007889,Water Rescue,01/20/2015,01/20/2015,01/20/2015 03:50:57 PM,01/20/2015 03:53:38 PM,01/20/2015 03:54:12 PM,01/20/2015 03:57:43 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,No Merit,01/20/2015 04:39:36 PM,GREAT HY/SKYLINE BL,San Francisco,94132,B08,19,8713,3,3,3,false,Fire,1,TRUCK,13,8,7,Lakeshore,"(37.7252595509479, -122.503040635623)",150202353-T19 -160931982,AM02,16036892,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:16:11 PM,04/02/2016 02:16:56 PM,04/02/2016 02:28:58 PM,04/02/2016 02:28:58 PM,04/02/2016 02:30:33 PM,04/02/2016 02:41:13 PM,04/02/2016 03:07:38 PM,Code 2 Transport,04/02/2016 03:34:53 PM,200 Block of 15TH AVE,San Francisco,94118,B07,31,7153,2,2,2,false,Non Life-threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7834366116406, -122.474247157669)",160931982-AM02 -143612105,E20,14129200,Medical Incident,12/27/2014,12/27/2014,12/27/2014 03:30:18 PM,12/27/2014 03:30:18 PM,12/27/2014 03:31:09 PM,12/27/2014 03:32:30 PM,12/27/2014 03:34:54 PM,04/25/2016 01:13:11 PM,04/25/2016 01:13:11 PM,No Merit,12/27/2014 04:22:16 PM,0 Block of FOREST KNOLLS DR,San Francisco,94131,B08,20,5366,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7563421171606, -122.454841188545)",143612105-E20 -141891154,E21,14065452,Traffic Collision,07/08/2014,07/08/2014,07/08/2014 10:11:40 AM,07/08/2014 10:13:52 AM,07/08/2014 10:14:56 AM,07/08/2014 10:16:33 AM,07/08/2014 10:19:21 AM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Code 2 Transport,07/08/2014 10:28:18 AM,ASHBURY ST/FELL ST,San Francisco,94117,B05,21,4514,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.772790452811, -122.447497243592)",141891154-E21 -141871729,E10,14064791,Medical Incident,07/06/2014,07/06/2014,07/06/2014 02:07:05 PM,07/06/2014 02:07:05 PM,07/06/2014 02:07:57 PM,07/06/2014 02:09:29 PM,07/06/2014 02:11:24 PM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Medical Examiner,07/06/2014 02:47:33 PM,2500 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3616,,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7886466380145, -122.436318334702)",141871729-E10 -151532807,E13,15058391,Medical Incident,06/02/2015,06/02/2015,06/02/2015 05:41:13 PM,06/02/2015 05:42:44 PM,06/02/2015 05:43:33 PM,06/02/2015 05:44:32 PM,06/02/2015 05:46:01 PM,04/25/2016 01:10:14 PM,04/25/2016 01:10:14 PM,Code 2 Transport,06/02/2015 06:02:11 PM,CLAY ST/DRUMM ST,San Francisco,94111,B01,13,1133,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",151532807-E13 -143350367,KM03,14118589,Medical Incident,12/01/2014,11/30/2014,12/01/2014 05:04:08 AM,12/01/2014 05:05:44 AM,12/01/2014 05:05:56 AM,12/01/2014 05:07:21 AM,12/01/2014 05:11:28 AM,12/01/2014 05:19:53 AM,12/01/2014 05:30:32 AM,Code 2 Transport,12/01/2014 05:49:44 AM,CESAR CHAVEZ ST/FOLSOM ST,San Francisco,94110,B06,9,5622,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7482553292633, -122.413668845654)",143350367-KM03 -160971578,54,16038383,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:25:38 AM,04/06/2016 11:26:12 AM,04/06/2016 11:26:59 AM,04/06/2016 11:27:35 AM,04/06/2016 11:34:44 AM,04/06/2016 11:41:50 AM,04/06/2016 12:14:41 PM,Code 2 Transport,04/06/2016 01:12:07 PM,100 Block of KENWOOD WAY,San Francisco,94112,B09,15,8533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7281049342319, -122.461725604614)",160971578-54 -152210134,T13,15084040,Structure Fire,08/09/2015,08/08/2015,08/09/2015 12:50:07 AM,08/09/2015 12:51:40 AM,08/09/2015 12:52:33 AM,08/09/2015 12:54:39 AM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Fire,08/09/2015 12:57:03 AM,1400 Block of JONES ST,San Francisco,94109,B01,41,1466,3,3,3,false,Alarm,1,TRUCK,10,1,3,Nob Hill,"(37.7945402595974, -122.414804971391)",152210134-T13 -142683238,T06,14094071,Medical Incident,09/25/2014,09/25/2014,09/25/2014 08:07:12 PM,09/25/2014 08:08:47 PM,09/25/2014 08:09:16 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Code 2 Transport,09/25/2014 08:10:23 PM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Non Life-threatening,1,TRUCK,4,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",142683238-T06 -152460656,E17,15093703,Traffic Collision,09/03/2015,09/02/2015,09/03/2015 07:37:37 AM,09/03/2015 07:38:26 AM,09/03/2015 07:38:58 AM,09/03/2015 07:40:41 AM,09/03/2015 07:43:17 AM,04/25/2016 01:08:34 PM,04/25/2016 01:08:34 PM,Code 2 Transport,09/03/2015 07:55:49 AM,0 Block of ESPANOLA ST,San Francisco,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",152460656-E17 -143210248,KM03,14113529,Medical Incident,11/17/2014,11/16/2014,11/17/2014 02:52:27 AM,11/17/2014 02:55:05 AM,11/17/2014 02:55:18 AM,11/17/2014 02:55:59 AM,11/17/2014 03:06:18 AM,04/25/2016 01:13:58 PM,04/25/2016 01:13:58 PM,Against Medical Advice,11/17/2014 03:51:42 AM,700 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7206398514521, -122.411562850299)",143210248-KM03 -160962954,KM05,16038110,Medical Incident,04/05/2016,04/05/2016,04/05/2016 05:20:52 PM,04/05/2016 05:21:09 PM,04/05/2016 05:21:38 PM,04/05/2016 05:22:12 PM,04/05/2016 05:29:10 PM,04/05/2016 05:41:05 PM,04/05/2016 06:13:23 PM,Code 2 Transport,04/05/2016 07:07:24 PM,300 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7873084363522, -122.409061356434)",160962954-KM05 -160970479,53,16038286,Medical Incident,04/06/2016,04/05/2016,04/06/2016 06:09:47 AM,04/06/2016 06:09:47 AM,04/06/2016 06:10:09 AM,04/06/2016 06:10:17 AM,04/06/2016 06:16:51 AM,04/06/2016 06:42:12 AM,04/06/2016 07:04:10 AM,Code 2 Transport,04/06/2016 07:55:59 AM,0 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,4247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7705968082049, -122.439656029959)",160970479-53 -141350980,E18,14046083,Medical Incident,05/15/2014,05/15/2014,05/15/2014 09:10:46 AM,05/15/2014 09:11:21 AM,05/15/2014 09:12:31 AM,05/15/2014 09:15:12 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Code 2 Transport,05/15/2014 09:28:00 AM,CROSSOVER DR/MARTIN LUTHER KING DR,San Francisco,94122,B08,22,7425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,7,1,Golden Gate Park,"(37.7660624876111, -122.477362829088)",141350980-E18 -161001179,64,16039705,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:32:39 AM,04/09/2016 10:34:40 AM,04/09/2016 10:35:05 AM,04/09/2016 10:35:16 AM,04/09/2016 10:39:23 AM,04/09/2016 11:00:31 AM,04/09/2016 11:29:21 AM,Code 2 Transport,04/09/2016 12:02:16 PM,400 Block of JACKSON ST,San Francisco,94133,B01,13,1232,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7965767359425, -122.402670936518)",161001179-64 -141453028,87,14049934,Structure Fire,05/25/2014,05/25/2014,05/25/2014 08:51:45 PM,05/25/2014 08:51:45 PM,05/25/2014 08:57:41 PM,05/25/2014 08:57:48 PM,05/25/2014 09:02:10 PM,05/25/2014 09:15:12 PM,05/25/2014 09:33:58 PM,Code 2 Transport,05/25/2014 09:58:40 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,MEDIC,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",141453028-87 -151201630,E51,15045368,Medical Incident,04/30/2015,04/30/2015,04/30/2015 12:10:59 PM,04/30/2015 12:12:02 PM,04/30/2015 12:12:34 PM,04/30/2015 12:12:43 PM,04/30/2015 12:17:52 PM,04/25/2016 01:10:52 PM,04/25/2016 01:10:52 PM,Code 2 Transport,04/30/2015 12:29:57 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",151201630-E51 -152270413,T14,15086404,Structure Fire,08/15/2015,08/14/2015,08/15/2015 02:56:13 AM,08/15/2015 02:56:13 AM,08/15/2015 02:56:22 AM,08/15/2015 02:59:31 AM,08/15/2015 03:00:37 AM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Fire,08/15/2015 03:05:02 AM,400 Block of 30TH AVE,San Francisco,94121,B07,14,722,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",152270413-T14 -141412412,E01,14048400,Medical Incident,05/21/2014,05/21/2014,05/21/2014 04:15:07 PM,05/21/2014 04:18:02 PM,05/21/2014 04:18:36 PM,05/21/2014 04:19:52 PM,05/21/2014 04:21:58 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 04:38:00 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",141412412-E01 -160930138,60,16036682,Medical Incident,04/02/2016,04/01/2016,04/02/2016 12:51:55 AM,04/02/2016 12:51:55 AM,04/02/2016 12:52:16 AM,04/02/2016 12:52:39 AM,04/02/2016 01:02:41 AM,04/02/2016 01:30:51 AM,04/02/2016 01:47:51 AM,Code 2 Transport,04/02/2016 02:44:26 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160930138-60 -143110004,E14,14109962,Medical Incident,11/07/2014,11/06/2014,11/07/2014 12:02:51 AM,11/07/2014 12:03:56 AM,11/07/2014 12:04:10 AM,11/07/2014 12:05:54 AM,11/07/2014 12:08:41 AM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Medical Examiner,11/07/2014 12:26:56 AM,200 Block of 11TH AVE,San Francisco,94118,B07,31,7141,E,E,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Inner Richmond,"(37.7836405491389, -122.469769833287)",143110004-E14 -160931914,77,16036883,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:51:39 PM,04/02/2016 01:54:23 PM,04/02/2016 02:06:12 PM,04/02/2016 02:06:38 PM,04/02/2016 02:13:51 PM,04/02/2016 02:32:53 PM,04/02/2016 02:38:54 PM,Code 2 Transport,04/02/2016 03:22:11 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",160931914-77 -151820498,74,15069367,Structure Fire,07/01/2015,06/30/2015,07/01/2015 06:57:15 AM,07/01/2015 06:59:02 AM,07/01/2015 06:59:19 AM,07/01/2015 06:59:41 AM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,04/25/2016 01:09:42 PM,Fire,07/01/2015 07:05:56 AM,4200 Block of FOLSOM ST,San Francisco,94110,B06,32,5747,3,3,3,true,Alarm,1,MEDIC,7,6,9,Bernal Heights,"(37.7340090413625, -122.413825505409)",151820498-74 -160971383,84,16038364,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:36:50 AM,04/06/2016 10:37:41 AM,04/06/2016 10:37:54 AM,04/06/2016 10:38:06 AM,04/06/2016 10:45:53 AM,04/06/2016 11:12:29 AM,04/06/2016 11:29:05 AM,Code 2 Transport,04/06/2016 12:06:37 PM,3400 Block of 19TH AVE,San Francisco,94132,B08,19,8726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7259732123613, -122.474721241777)",160971383-84 -160963379,68,16038145,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:55:13 PM,04/05/2016 06:56:14 PM,04/05/2016 06:57:43 PM,04/05/2016 06:58:00 PM,04/05/2016 07:21:19 PM,04/05/2016 07:32:56 PM,04/05/2016 07:45:43 PM,Code 2 Transport,04/05/2016 08:20:00 PM,CABRILLO ST/7TH AV,San Francisco,94118,B07,31,7132,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7753209455444, -122.464942088513)",160963379-68 -152703482,E43,15103620,Medical Incident,09/27/2015,09/27/2015,09/27/2015 10:08:39 PM,09/27/2015 10:08:39 PM,09/27/2015 10:10:18 PM,09/27/2015 10:11:41 PM,09/27/2015 10:13:57 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Code 2 Transport,09/27/2015 10:23:05 PM,0 Block of ALLISON ST,San Francisco,94112,B09,43,6176,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7141809805565, -122.442285746649)",152703482-E43 -160990122,55,16039161,Medical Incident,04/08/2016,04/07/2016,04/08/2016 01:05:35 AM,04/08/2016 01:06:15 AM,04/08/2016 01:06:24 AM,04/08/2016 01:07:43 AM,04/08/2016 01:11:14 AM,04/08/2016 01:36:30 AM,04/08/2016 01:56:58 AM,Code 2 Transport,04/08/2016 02:42:23 AM,0 Block of VALLEY ST,San Francisco,94110,B06,11,5577,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Noe Valley,"(37.7446426352778, -122.423443750063)",160990122-55 -150781239,83,15029848,Medical Incident,03/19/2015,03/19/2015,03/19/2015 09:50:12 AM,03/19/2015 09:53:21 AM,03/19/2015 09:54:24 AM,03/19/2015 09:54:30 AM,03/19/2015 10:01:37 AM,03/19/2015 10:08:35 AM,03/19/2015 10:43:10 AM,Code 2 Transport,03/19/2015 10:47:01 AM,2400 Block of KEITH ST,San Francisco,94124,B10,17,6546,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",150781239-83 -152673026,79,15102387,Medical Incident,09/24/2015,09/24/2015,09/24/2015 05:13:11 PM,09/24/2015 05:13:11 PM,09/24/2015 05:13:49 PM,09/24/2015 05:13:56 PM,09/24/2015 05:19:22 PM,04/25/2016 01:08:09 PM,04/25/2016 01:08:09 PM,No Merit,09/24/2015 05:19:52 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",152673026-79 -160962661,68,16038081,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:17:11 PM,04/05/2016 04:18:27 PM,04/05/2016 04:26:14 PM,04/05/2016 04:26:45 PM,04/05/2016 04:43:18 PM,04/05/2016 05:03:12 PM,04/05/2016 05:31:43 PM,Code 2 Transport,04/05/2016 05:51:00 PM,1600 Block of OWENS ST,San Francisco,94158,B03,4,2265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7679924471876, -122.394391507395)",160962661-68 -143280809,54,14116194,Traffic Collision,11/24/2014,11/24/2014,11/24/2014 08:32:39 AM,11/24/2014 08:34:19 AM,11/24/2014 08:34:56 AM,11/24/2014 08:36:20 AM,11/24/2014 08:43:25 AM,11/24/2014 08:46:38 AM,11/24/2014 09:04:08 AM,Code 2 Transport,11/24/2014 09:19:26 AM,ALEMANY BL/SENECA AV,San Francisco,94112,B09,15,8331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Outer Mission,"(37.7186340567809, -122.441317764702)",143280809-54 -143520904,E13,14125697,Medical Incident,12/18/2014,12/18/2014,12/18/2014 08:56:42 AM,12/18/2014 08:59:49 AM,12/18/2014 09:00:13 AM,12/18/2014 09:01:18 AM,12/18/2014 09:03:44 AM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Code 2 Transport,12/18/2014 09:10:35 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",143520904-E13 -142581006,RC3,14090057,Medical Incident,09/15/2014,09/15/2014,09/15/2014 09:52:24 AM,09/15/2014 09:55:31 AM,09/15/2014 10:01:32 AM,09/15/2014 10:03:32 AM,09/15/2014 10:07:37 AM,04/25/2016 01:15:05 PM,04/25/2016 01:15:05 PM,Medical Examiner,09/15/2014 10:41:01 AM,100 Block of LANDERS ST,San Francisco,94114,B02,6,5234,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,2,8,Castro/Upper Market,"(37.7651080913316, -122.427584518743)",142581006-RC3 -160992045,AM14,16039331,Medical Incident,04/08/2016,04/08/2016,04/08/2016 02:29:39 PM,04/08/2016 02:31:07 PM,04/08/2016 02:32:28 PM,04/08/2016 02:33:07 PM,04/08/2016 02:38:58 PM,04/08/2016 02:54:38 PM,04/08/2016 03:10:02 PM,Code 2 Transport,04/08/2016 03:36:41 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",160992045-AM14 -153230233,E41,15124105,Structure Fire,11/19/2015,11/18/2015,11/19/2015 02:32:54 AM,11/19/2015 02:32:54 AM,11/19/2015 02:33:01 AM,11/19/2015 02:34:49 AM,11/19/2015 02:36:51 AM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Fire,11/19/2015 02:37:15 AM,MASON ST/SUTTER ST,San Francisco,94102,B01,3,1412,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.789016335554, -122.410242439308)",153230233-E41 -151772451,E05,15067443,Medical Incident,06/26/2015,06/26/2015,06/26/2015 04:04:59 PM,06/26/2015 04:05:16 PM,06/26/2015 04:05:45 PM,06/26/2015 04:06:56 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 04:07:25 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",151772451-E05 -152152584,78,15081907,Medical Incident,08/03/2015,08/03/2015,08/03/2015 03:46:29 PM,08/03/2015 03:48:57 PM,08/03/2015 03:49:11 PM,08/03/2015 03:49:39 PM,08/03/2015 04:00:14 PM,08/03/2015 04:11:18 PM,08/03/2015 04:23:51 PM,Code 2 Transport,08/03/2015 05:08:46 PM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",152152584-78 -160952360,56,16037671,Medical Incident,04/04/2016,04/04/2016,04/04/2016 03:06:11 PM,04/04/2016 03:07:12 PM,04/04/2016 03:08:26 PM,04/04/2016 03:08:36 PM,04/04/2016 03:12:08 PM,04/04/2016 03:31:30 PM,04/04/2016 03:42:01 PM,Code 2 Transport,04/04/2016 04:18:18 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160952360-56 -160953604,KM07,16037789,Medical Incident,04/04/2016,04/04/2016,04/04/2016 08:32:08 PM,04/04/2016 08:35:09 PM,04/04/2016 08:52:50 PM,04/04/2016 08:53:33 PM,04/04/2016 09:06:26 PM,04/04/2016 09:23:15 PM,04/04/2016 09:35:14 PM,Code 2 Transport,04/04/2016 09:55:27 PM,COLUMBUS AV/GRANT AV,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.7981520556113, -122.407082928114)",160953604-KM07 -142892395,76,14101924,Medical Incident,10/16/2014,10/16/2014,10/16/2014 03:37:10 PM,10/16/2014 03:40:20 PM,10/16/2014 03:42:03 PM,10/16/2014 03:42:17 PM,10/16/2014 03:45:33 PM,10/16/2014 04:06:23 PM,10/16/2014 04:44:42 PM,Code 2 Transport,10/16/2014 05:22:22 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786769584105, -122.408601057595)",142892395-76 -160991709,67,16039297,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:10:13 PM,04/08/2016 01:10:50 PM,04/08/2016 01:11:13 PM,04/08/2016 01:12:05 PM,04/08/2016 01:17:37 PM,04/08/2016 01:34:30 PM,04/08/2016 01:43:53 PM,Code 3 Transport,04/08/2016 02:41:02 PM,2400 Block of 19TH AVE,San Francisco,94116,B08,40,7415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7421133651274, -122.475733220027)",160991709-67 -142190745,KM09,14075891,Medical Incident,08/07/2014,08/07/2014,08/07/2014 08:16:58 AM,08/07/2014 08:19:15 AM,08/07/2014 08:19:24 AM,08/07/2014 08:20:07 AM,08/07/2014 08:28:19 AM,08/07/2014 09:09:29 AM,08/07/2014 09:20:06 AM,Code 2 Transport,08/07/2014 09:51:25 AM,1900 Block of BROADWAY,San Francisco,94123,B04,38,3355,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7950545006064, -122.429177912873)",142190745-KM09 -150033164,T03,15001272,Structure Fire,01/03/2015,01/03/2015,01/03/2015 08:54:50 PM,01/03/2015 08:55:21 PM,01/03/2015 08:55:39 PM,01/03/2015 08:56:50 PM,01/03/2015 08:58:03 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Fire,01/03/2015 09:10:44 PM,700 Block of SUTTER ST,San Francisco,94109,B01,3,1463,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",150033164-T03 -160974378,73,16038690,Medical Incident,04/06/2016,04/06/2016,04/06/2016 10:07:59 PM,04/06/2016 10:07:59 PM,04/06/2016 10:08:09 PM,04/06/2016 10:08:20 PM,04/06/2016 10:35:31 PM,04/06/2016 10:35:33 PM,04/06/2016 10:49:51 PM,Code 2 Transport,04/06/2016 11:22:39 PM,9TH ST/FOLSOM ST,San Francisco,94103,B03,29,2333,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7737693455048, -122.411610116682)",160974378-73 -151290176,E01,15048811,Medical Incident,05/09/2015,05/08/2015,05/09/2015 01:07:45 AM,05/09/2015 01:08:56 AM,05/09/2015 01:09:54 AM,05/09/2015 01:12:11 AM,05/09/2015 01:14:37 AM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Code 2 Transport,05/09/2015 01:19:21 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",151290176-E01 -151430597,RC3,15054281,Medical Incident,05/23/2015,05/22/2015,05/23/2015 04:46:51 AM,05/23/2015 04:47:47 AM,05/23/2015 04:54:15 AM,05/23/2015 04:55:23 AM,05/23/2015 05:03:58 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Code 2 Transport,05/23/2015 05:11:56 AM,600 Block of BURNETT AVE,San Francisco,94131,B06,24,5281,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Twin Peaks,"(37.7513305525726, -122.44446883035)",151430597-RC3 -150591010,E06,15022482,Alarms,02/28/2015,02/28/2015,02/28/2015 09:11:50 AM,02/28/2015 09:13:24 AM,02/28/2015 09:13:38 AM,02/28/2015 09:14:40 AM,02/28/2015 09:16:28 AM,04/25/2016 01:12:00 PM,04/25/2016 01:12:00 PM,Fire,02/28/2015 10:04:06 AM,MARKET ST/CASTRO ST,San Francisco,94114,B05,6,5233,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",150591010-E06 -141280711,AM06,14043407,Medical Incident,05/08/2014,05/08/2014,05/08/2014 08:11:33 AM,05/08/2014 08:13:30 AM,05/08/2014 08:55:30 AM,05/08/2014 08:55:30 AM,05/08/2014 09:13:17 AM,05/08/2014 09:30:08 AM,05/08/2014 09:39:34 AM,Code 2 Transport,05/08/2014 10:05:05 AM,100 Block of PAGE ST,San Francisco,94102,B02,36,3313,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",141280711-AM06 -142270622,E01,14078744,Medical Incident,08/15/2014,08/14/2014,08/15/2014 06:43:28 AM,08/15/2014 06:43:49 AM,08/15/2014 06:44:08 AM,08/15/2014 06:46:37 AM,08/15/2014 06:47:44 AM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Code 2 Transport,08/15/2014 06:56:41 AM,4TH ST/STOCKTON ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",142270622-E01 -151253386,RS2,15047510,Structure Fire,05/05/2015,05/05/2015,05/05/2015 07:35:34 PM,05/05/2015 07:35:53 PM,05/05/2015 07:36:13 PM,05/05/2015 07:36:57 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,04/25/2016 01:10:46 PM,Fire,05/05/2015 07:45:01 PM,1400 Block of 35TH AVE,San Francisco,94122,B08,18,7563,3,3,3,false,Alarm,1,RESCUE SQUAD,10,8,4,Sunset/Parkside,"(37.7600132948214, -122.494005782539)",151253386-RS2 -142952110,RS1,14104070,Traffic Collision,10/22/2014,10/22/2014,10/22/2014 02:50:50 PM,10/22/2014 02:51:04 PM,10/22/2014 02:51:15 PM,10/22/2014 02:52:52 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,04/25/2016 01:14:25 PM,Fire,10/22/2014 03:34:43 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",142952110-RS1 -150632611,E08,15024134,Medical Incident,03/04/2015,03/04/2015,03/04/2015 04:05:42 PM,03/04/2015 04:10:23 PM,03/04/2015 04:10:48 PM,03/04/2015 04:12:44 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,04/25/2016 01:11:55 PM,Code 2 Transport,03/04/2015 04:25:43 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",150632611-E08 -141960960,E07,14067830,Medical Incident,07/15/2014,07/15/2014,07/15/2014 09:20:38 AM,07/15/2014 09:22:12 AM,07/15/2014 09:23:29 AM,07/15/2014 09:25:45 AM,07/15/2014 09:30:03 AM,04/25/2016 01:16:13 PM,04/25/2016 01:16:13 PM,Code 2 Transport,07/15/2014 09:35:56 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",141960960-E07 -160980105,63,16038731,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:48:02 AM,04/07/2016 12:48:02 AM,04/07/2016 12:49:45 AM,04/07/2016 12:50:29 AM,04/07/2016 12:54:14 AM,04/07/2016 01:18:58 AM,04/07/2016 01:35:41 AM,Code 2 Transport,04/07/2016 02:06:06 AM,BROADWAY/POLK ST,San Francisco,94109,B01,41,1632,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7959454020039, -122.421768166879)",160980105-63 -160923984,AM24,16036652,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:29:01 PM,04/01/2016 11:33:19 PM,04/01/2016 11:33:35 PM,04/01/2016 11:39:30 PM,04/01/2016 11:43:57 PM,04/01/2016 11:50:18 PM,04/02/2016 12:01:29 AM,Code 2 Transport,04/02/2016 12:34:41 AM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",160923984-AM24 -141354180,E35,14046372,Medical Incident,05/15/2014,05/15/2014,05/15/2014 11:38:46 PM,05/15/2014 11:39:33 PM,05/15/2014 11:41:33 PM,05/15/2014 11:41:33 PM,05/15/2014 11:41:33 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Code 2 Transport,05/16/2014 12:03:16 AM,300 Block of THE EMBARCADERO,San Francisco,94111,B03,35,2112,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",141354180-E35 -152003648,KM03,15076391,Medical Incident,07/19/2015,07/19/2015,07/19/2015 09:43:58 PM,07/19/2015 09:45:41 PM,07/19/2015 09:45:59 PM,07/19/2015 09:46:51 PM,07/19/2015 10:03:54 PM,07/19/2015 10:04:01 PM,07/19/2015 10:16:54 PM,Code 2 Transport,07/19/2015 10:50:13 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",152003648-KM03 -160931859,56,16036874,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:38:05 PM,04/02/2016 01:39:34 PM,04/02/2016 01:46:42 PM,04/02/2016 01:47:12 PM,04/02/2016 02:00:31 PM,04/02/2016 02:14:50 PM,04/02/2016 02:45:42 PM,Code 2 Transport,04/02/2016 03:23:34 PM,11TH ST/MINNA ST,San Francisco,94103,B02,36,5114,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7739062505366, -122.416575670164)",160931859-56 -150692220,T06,15026396,Structure Fire,03/10/2015,03/10/2015,03/10/2015 03:30:11 PM,03/10/2015 03:30:44 PM,03/10/2015 03:31:22 PM,03/10/2015 03:32:27 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Fire,03/10/2015 03:34:20 PM,0 Block of DUBOCE AVE,San Francisco,94103,B02,36,5124,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7698769653623, -122.420425746328)",150692220-T06 -160921825,75,16036451,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:36:49 PM,04/01/2016 01:39:19 PM,04/01/2016 01:39:54 PM,04/01/2016 01:40:01 PM,04/01/2016 01:44:01 PM,04/01/2016 01:51:49 PM,04/01/2016 02:12:26 PM,Code 2 Transport,04/01/2016 02:38:09 PM,1100 Block of CAPP ST,San Francisco,94110,B06,11,5613,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7484635498318, -122.417383097943)",160921825-75 -151503164,62,15057218,Medical Incident,05/30/2015,05/30/2015,05/30/2015 07:44:18 PM,05/30/2015 07:44:18 PM,05/30/2015 07:44:37 PM,05/30/2015 07:44:47 PM,05/30/2015 07:52:06 PM,05/30/2015 08:25:44 PM,05/30/2015 08:38:17 PM,Other,05/30/2015 09:20:43 PM,600 Block of KEITH ST,San Francisco,94124,B10,25,6565,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371958243577, -122.382770664389)",151503164-62 -141573588,E44,14054266,Vehicle Fire,06/06/2014,06/06/2014,06/06/2014 11:09:00 PM,06/06/2014 11:10:00 PM,06/06/2014 11:10:07 PM,06/06/2014 11:11:38 PM,06/06/2014 11:14:03 PM,04/25/2016 01:16:55 PM,04/25/2016 01:16:55 PM,Fire,06/06/2014 11:55:04 PM,KEITH ST/KEY AV,San Francisco,94124,B10,44,6542,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7202867942492, -122.397568505773)",141573588-E44 -150153125,KM01,15006057,Medical Incident,01/15/2015,01/15/2015,01/15/2015 06:48:30 PM,01/15/2015 06:49:05 PM,01/15/2015 06:49:22 PM,01/15/2015 06:50:02 PM,01/15/2015 06:54:36 PM,01/15/2015 07:19:24 PM,01/15/2015 07:19:28 PM,Code 2 Transport,01/15/2015 08:00:28 PM,2100 Block of GROVE ST,San Francisco,94117,B05,21,4535,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7741989625507, -122.451998918385)",150153125-KM01 -152571250,54,15098214,Medical Incident,09/14/2015,09/14/2015,09/14/2015 10:14:24 AM,09/14/2015 10:15:54 AM,09/14/2015 10:16:11 AM,09/14/2015 10:16:27 AM,09/14/2015 10:25:18 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Other,09/14/2015 10:39:14 AM,0 Block of ESCONDIDO AVE,San Francisco,94132,B08,19,7551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7347016705244, -122.489917028744)",152571250-54 -142041455,68,14070586,Medical Incident,07/23/2014,07/23/2014,07/23/2014 11:27:45 AM,07/23/2014 11:28:50 AM,07/23/2014 11:29:47 AM,07/23/2014 11:29:56 AM,07/23/2014 11:53:40 AM,07/23/2014 12:07:02 PM,07/23/2014 12:34:57 PM,Code 2 Transport,07/23/2014 01:02:50 PM,MCALLISTER ST/HYDE ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",142041455-68 -152332457,E02,15088885,Alarms,08/21/2015,08/21/2015,08/21/2015 03:10:50 PM,08/21/2015 03:12:57 PM,08/21/2015 03:15:15 PM,08/21/2015 03:15:40 PM,08/21/2015 03:17:54 PM,04/25/2016 01:08:48 PM,04/25/2016 01:08:48 PM,Fire,08/21/2015 03:20:08 PM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7892188294799, -122.406842699035)",152332457-E02 -150602816,T12,15023016,Structure Fire,03/01/2015,03/01/2015,03/01/2015 05:37:07 PM,03/01/2015 05:38:14 PM,03/01/2015 05:38:33 PM,03/01/2015 05:39:39 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Fire,03/01/2015 05:46:10 PM,1700 Block of 20TH AVE,San Francisco,94122,B08,40,7422,3,3,3,false,Alarm,1,TRUCK,7,8,4,Sunset/Parkside,"(37.755123574931, -122.477683428402)",150602816-T12 -160990896,KM13,16039228,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:11:04 AM,04/08/2016 09:11:33 AM,04/08/2016 09:12:23 AM,04/08/2016 09:14:04 AM,04/08/2016 09:18:42 AM,04/08/2016 09:37:48 AM,04/08/2016 09:49:29 AM,Code 2 Transport,04/08/2016 10:20:35 AM,LEAVENWORTH ST/TURK ST,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160990896-KM13 -143031864,T03,14107115,Medical Incident,10/30/2014,10/30/2014,10/30/2014 12:00:10 PM,10/30/2014 12:01:07 PM,10/30/2014 12:02:53 PM,10/30/2014 12:02:53 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,04/25/2016 01:14:17 PM,Unable to Locate,10/30/2014 12:07:01 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7826266328595, -122.41915582123)",143031864-T03 -160964173,KM03,16038224,Medical Incident,04/05/2016,04/05/2016,04/05/2016 11:21:51 PM,04/05/2016 11:24:04 PM,04/05/2016 11:26:50 PM,04/05/2016 11:27:53 PM,04/05/2016 11:49:27 PM,04/05/2016 11:49:30 PM,04/05/2016 11:54:58 PM,Code 2 Transport,04/06/2016 12:18:49 AM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",160964173-KM03 -142750340,E15,14096339,Medical Incident,10/02/2014,10/01/2014,10/02/2014 03:11:21 AM,10/02/2014 03:14:48 AM,10/02/2014 03:17:29 AM,10/02/2014 03:20:21 AM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Code 2 Transport,10/02/2014 03:27:21 AM,1500 Block of OCEAN AVE,San Francisco,94112,B09,15,8474,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7245049424335, -122.458675264922)",142750340-E15 -141531659,E03,14052557,Alarms,06/02/2014,06/02/2014,06/02/2014 01:07:30 PM,06/02/2014 01:09:06 PM,06/02/2014 01:10:23 PM,06/02/2014 01:11:13 PM,06/02/2014 01:12:50 PM,04/25/2016 01:17:00 PM,04/25/2016 01:17:00 PM,Fire,06/02/2014 01:24:11 PM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",141531659-E03 -152092331,B01,15079688,Structure Fire,07/28/2015,07/28/2015,07/28/2015 03:21:40 PM,07/28/2015 03:22:06 PM,07/28/2015 03:23:07 PM,07/28/2015 03:23:51 PM,07/28/2015 03:25:28 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Code 2 Transport,07/28/2015 05:20:33 PM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Alarm,1,CHIEF,2,1,3,North Beach,"(37.7982249345487, -122.404282497745)",152092331-B01 -153224384,KM03,15124088,Medical Incident,11/18/2015,11/18/2015,11/18/2015 11:40:06 PM,11/18/2015 11:42:37 PM,11/18/2015 11:43:27 PM,11/18/2015 11:45:29 PM,11/18/2015 11:50:29 PM,11/19/2015 12:03:26 AM,11/19/2015 12:25:32 AM,Code 2 Transport,11/19/2015 01:13:11 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",153224384-KM03 -151181549,E22,15044596,Medical Incident,04/28/2015,04/28/2015,04/28/2015 12:08:55 PM,04/28/2015 12:10:18 PM,04/28/2015 12:10:51 PM,04/28/2015 12:11:48 PM,04/28/2015 12:14:55 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Patient Declined Transport,04/28/2015 12:17:07 PM,1200 Block of 28TH AVE,San Francisco,94122,B08,22,7512,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7640748354161, -122.486905503606)",151181549-E22 -141430333,T03,14048929,Medical Incident,05/23/2014,05/22/2014,05/23/2014 03:28:58 AM,05/23/2014 03:28:58 AM,05/23/2014 03:29:38 AM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,Code 2 Transport,05/23/2014 03:31:14 AM,POLK ST/GROVE ST,San Francisco,94102,B02,36,381,,E,3,false,Potentially Life-Threatening,1,TRUCK,5,2,6,Tenderloin,"(37.7784891171437, -122.418226581728)",141430333-T03 -150383915,74,15014994,Medical Incident,02/07/2015,02/07/2015,02/07/2015 11:01:53 PM,02/07/2015 11:03:24 PM,02/07/2015 11:04:27 PM,02/07/2015 11:04:35 PM,02/07/2015 11:13:52 PM,02/07/2015 11:37:52 PM,02/08/2015 12:00:59 AM,Code 2 Transport,02/08/2015 12:38:10 AM,600 Block of DWIGHT ST,San Francisco,94134,B09,42,6321,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7223051919109, -122.408505544416)",150383915-74 -161002154,KM06,16039824,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:01:57 PM,04/09/2016 04:02:56 PM,04/09/2016 04:04:07 PM,04/09/2016 04:04:46 PM,04/09/2016 04:20:41 PM,04/09/2016 04:35:16 PM,04/09/2016 04:43:24 PM,Code 2 Transport,04/09/2016 05:12:52 PM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",161002154-KM06 -143251120,E41,14115036,Citizen Assist / Service Call,11/21/2014,11/21/2014,11/21/2014 10:26:14 AM,11/21/2014 10:26:59 AM,11/21/2014 10:27:07 AM,11/21/2014 10:28:23 AM,11/21/2014 10:29:02 AM,04/25/2016 01:13:53 PM,04/25/2016 01:13:53 PM,Fire,11/21/2014 11:18:40 AM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",143251120-E41 -141510091,82,14051734,Medical Incident,05/31/2014,05/30/2014,05/31/2014 12:25:39 AM,05/31/2014 12:28:02 AM,05/31/2014 12:29:40 AM,05/31/2014 12:30:17 AM,05/31/2014 12:42:26 AM,04/25/2016 01:17:02 PM,04/25/2016 01:17:02 PM,Patient Declined Transport,05/31/2014 12:48:07 AM,1800 Block of MARKET ST,San Francisco,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7715743266843, -122.42361379771)",141510091-82 -160990920,52,16039231,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:19:23 AM,04/08/2016 09:21:14 AM,04/08/2016 09:22:04 AM,04/08/2016 09:22:13 AM,04/08/2016 09:31:49 AM,04/08/2016 09:48:38 AM,04/08/2016 10:17:33 AM,Code 2 Transport,04/08/2016 10:41:23 AM,300 Block of GRANT AVE,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7903312930658, -122.405480762269)",160990920-52 -160943390,KM03,16037426,Medical Incident,04/03/2016,04/03/2016,04/03/2016 09:14:11 PM,04/03/2016 09:16:26 PM,04/03/2016 09:16:46 PM,04/03/2016 09:21:24 PM,04/03/2016 09:21:26 PM,04/03/2016 09:33:50 PM,04/03/2016 09:58:30 PM,Code 2 Transport,04/03/2016 10:04:52 PM,CEDAR ST/POLK ST,San Francisco,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",160943390-KM03 -143500157,E07,14124842,Alarms,12/16/2014,12/15/2014,12/16/2014 01:55:04 AM,12/16/2014 01:56:31 AM,12/16/2014 01:56:40 AM,12/16/2014 01:59:34 AM,12/16/2014 02:01:54 AM,04/25/2016 01:13:24 PM,04/25/2016 01:13:24 PM,Fire,12/16/2014 02:04:39 AM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",143500157-E07 -151080024,79,15040727,Medical Incident,04/18/2015,04/17/2015,04/18/2015 12:08:21 AM,04/18/2015 12:08:21 AM,04/18/2015 12:09:05 AM,04/18/2015 12:09:21 AM,04/18/2015 12:13:30 AM,04/18/2015 12:19:47 AM,04/18/2015 12:49:54 AM,Code 2 Transport,04/18/2015 01:00:20 AM,8TH ST/TOWNSEND ST,San Francisco,94107,B03,29,2325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7700628654605, -122.403877700631)",151080024-79 -160993781,89,16039502,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:03:09 PM,04/08/2016 10:04:30 PM,04/08/2016 10:05:37 PM,04/08/2016 10:06:14 PM,04/08/2016 10:15:01 PM,04/08/2016 10:30:39 PM,04/08/2016 10:35:45 PM,Code 2 Transport,04/08/2016 11:01:26 PM,TAYLOR ST/PINE ST,San Francisco,94108,B01,41,1446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7906727830021, -122.412266188172)",160993781-89 -142833359,T03,14099816,Structure Fire,10/10/2014,10/10/2014,10/10/2014 09:25:51 PM,10/10/2014 09:25:51 PM,10/10/2014 09:26:13 PM,10/10/2014 09:27:14 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Fire,10/10/2014 09:28:55 PM,JONES ST/ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",142833359-T03 -141642629,88,14056622,Medical Incident,06/13/2014,06/13/2014,06/13/2014 05:36:31 PM,06/13/2014 05:38:15 PM,06/13/2014 05:41:27 PM,06/13/2014 05:41:40 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Unable to Locate,06/13/2014 05:53:56 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",141642629-88 -141100074,82,14037023,Medical Incident,04/20/2014,04/20/2014,04/20/2014 08:07:07 AM,04/20/2014 08:07:55 AM,04/20/2014 08:08:31 AM,04/20/2014 08:09:20 AM,04/20/2014 08:24:01 AM,04/20/2014 08:36:16 AM,04/20/2014 08:57:07 AM,Code 2 Transport,04/20/2014 09:27:15 AM,19TH AV/BUCKINGHAM WY,SAN FRANCISCO,94132,B08,19,8851,,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.725692147795, -122.475108832537)",141100074-82 -161003432,KM09,16039971,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:29:42 PM,04/09/2016 10:30:34 PM,04/09/2016 10:31:24 PM,04/09/2016 10:32:38 PM,04/09/2016 10:38:24 PM,04/09/2016 10:44:32 PM,04/09/2016 11:06:50 PM,Code 2 Transport,04/09/2016 11:20:14 PM,1400 Block of PINE ST,San Francisco,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",161003432-KM09 -160962710,AM16,16038090,Medical Incident,04/05/2016,04/05/2016,04/05/2016 04:26:27 PM,04/05/2016 04:28:12 PM,04/05/2016 04:32:11 PM,04/05/2016 04:32:40 PM,04/05/2016 04:44:51 PM,04/05/2016 04:57:14 PM,04/05/2016 05:22:03 PM,Code 2 Transport,04/05/2016 05:52:29 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160962710-AM16 -160991739,KM11,16039302,Medical Incident,04/08/2016,04/08/2016,04/08/2016 01:20:19 PM,04/08/2016 01:20:41 PM,04/08/2016 01:27:11 PM,04/08/2016 01:30:42 PM,04/08/2016 01:30:42 PM,04/08/2016 01:51:49 PM,04/08/2016 01:58:02 PM,Code 2 Transport,04/08/2016 02:23:38 PM,7TH ST/MISSION ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160991739-KM11 -152580827,T07,15098561,Alarms,09/15/2015,09/15/2015,09/15/2015 08:27:57 AM,09/15/2015 08:29:34 AM,09/15/2015 08:29:42 AM,09/15/2015 08:31:32 AM,09/15/2015 08:34:22 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Fire,09/15/2015 08:41:29 AM,400 Block of ALABAMA ST,San Francisco,94110,B02,7,5244,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7635505472738, -122.412302339229)",152580827-T07 -150471916,65,15018294,Structure Fire,02/16/2015,02/16/2015,02/16/2015 01:29:50 PM,02/16/2015 01:31:29 PM,02/16/2015 01:32:00 PM,02/16/2015 01:32:21 PM,04/25/2016 01:12:12 PM,04/25/2016 01:12:12 PM,04/25/2016 01:12:12 PM,Fire,02/16/2015 01:37:10 PM,100 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5646,3,3,3,true,Alarm,1,MEDIC,7,6,9,Bernal Heights,"(37.7373636780892, -122.422094532922)",150471916-65 -153470863,T06,15133586,Traffic Collision,12/13/2015,12/13/2015,12/13/2015 08:25:16 AM,12/13/2015 08:25:16 AM,12/13/2015 08:25:48 AM,12/13/2015 08:26:31 AM,12/13/2015 08:26:58 AM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Code 2 Transport,12/13/2015 12:19:24 PM,DUBOCE AV/SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7693209102526, -122.431356623822)",153470863-T06 -152812506,E14,15107908,Medical Incident,10/08/2015,10/08/2015,10/08/2015 03:47:52 PM,10/08/2015 03:49:39 PM,10/08/2015 03:53:33 PM,10/08/2015 03:55:22 PM,10/08/2015 03:59:09 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Medical Examiner,10/08/2015 04:21:03 PM,500 Block of 40TH AVE,San Francisco,94121,B07,34,7264,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7783895132557, -122.500800304869)",152812506-E14 -152622059,E01,15100174,Medical Incident,09/19/2015,09/19/2015,09/19/2015 01:56:32 PM,09/19/2015 01:57:54 PM,09/19/2015 01:58:09 PM,09/19/2015 01:59:14 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Cancelled,09/19/2015 02:09:33 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",152622059-E01 -151661957,60,15063505,Medical Incident,06/15/2015,06/15/2015,06/15/2015 02:05:34 PM,06/15/2015 02:08:10 PM,06/15/2015 02:08:56 PM,06/15/2015 02:09:23 PM,06/15/2015 02:22:57 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Patient Declined Transport,06/15/2015 03:11:31 PM,400 Block of SLOAT BLVD,San Francisco,94132,B08,19,8732,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Sunset/Parkside,"(37.7344879538632, -122.476637765637)",151661957-60 -150843260,E19,15032180,Medical Incident,03/25/2015,03/25/2015,03/25/2015 06:29:37 PM,03/25/2015 06:31:32 PM,03/25/2015 06:32:18 PM,03/25/2015 06:33:08 PM,03/25/2015 06:36:45 PM,04/25/2016 01:11:31 PM,04/25/2016 01:11:31 PM,Code 3 Transport,03/25/2015 06:43:52 PM,0 Block of JOSEPHA AVE,San Francisco,94132,B08,19,8481,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7167057551283, -122.47768004947)",150843260-E19 -160940005,52,16037092,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:00:12 AM,04/03/2016 12:01:59 AM,04/03/2016 12:03:10 AM,04/03/2016 12:03:20 AM,04/03/2016 12:15:10 AM,04/03/2016 12:42:02 AM,04/03/2016 12:58:42 AM,Code 2 Transport,04/03/2016 01:57:23 AM,500 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7803303915285, -122.420129233501)",160940005-52 -160923010,86,16036559,Medical Incident,04/01/2016,04/01/2016,04/01/2016 06:29:49 PM,04/01/2016 06:31:22 PM,04/01/2016 06:33:05 PM,04/01/2016 06:33:13 PM,04/01/2016 06:46:45 PM,04/01/2016 07:07:40 PM,04/01/2016 07:20:46 PM,Code 2 Transport,04/01/2016 07:48:51 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160923010-86 -142040228,B09,14070466,Medical Incident,07/23/2014,07/22/2014,07/23/2014 01:38:10 AM,07/23/2014 01:42:37 AM,07/23/2014 01:43:02 AM,07/23/2014 01:43:52 AM,07/23/2014 01:50:20 AM,04/25/2016 01:16:05 PM,04/25/2016 01:16:05 PM,Patient Declined Transport,07/23/2014 01:56:31 AM,1800 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",142040228-B09 -151411698,E05,15053565,Medical Incident,05/21/2015,05/21/2015,05/21/2015 12:22:08 PM,05/21/2015 12:24:07 PM,05/21/2015 12:25:08 PM,05/21/2015 12:26:36 PM,05/21/2015 12:29:12 PM,04/25/2016 01:10:28 PM,04/25/2016 01:10:28 PM,Code 2 Transport,05/21/2015 12:36:17 PM,2200 Block of OFARRELL ST,San Francisco,94115,B05,10,4236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",151411698-E05 -142771764,T07,14097373,Citizen Assist / Service Call,10/04/2014,10/04/2014,10/04/2014 12:13:07 PM,10/04/2014 12:14:10 PM,10/04/2014 12:14:19 PM,10/04/2014 12:15:29 PM,10/04/2014 12:17:06 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,Fire,10/04/2014 12:29:43 PM,MISSION ST/20TH ST,San Francisco,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",142771764-T07 -161002514,52,16039866,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:49:15 PM,04/09/2016 05:49:47 PM,04/09/2016 05:50:09 PM,04/09/2016 05:50:15 PM,04/09/2016 06:04:28 PM,04/09/2016 06:15:11 PM,04/09/2016 06:39:33 PM,Code 2 Transport,04/09/2016 07:05:34 PM,700 Block of FONT BLVD,San Francisco,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",161002514-52 -141230033,89,14041548,Medical Incident,05/03/2014,05/02/2014,05/03/2014 02:05:40 AM,05/03/2014 02:06:27 AM,05/03/2014 02:08:07 AM,05/03/2014 02:08:11 AM,05/03/2014 02:24:15 AM,05/03/2014 02:40:39 AM,05/03/2014 02:56:14 AM,Code 2 Transport,05/03/2014 03:25:53 AM,300 Block of TAYLOR ST,SAN FRANCISCO,94102,B01,1,1452,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",141230033-89 -161003201,64,16039945,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:29:40 PM,04/09/2016 09:29:40 PM,04/09/2016 09:30:06 PM,04/09/2016 09:30:16 PM,04/09/2016 09:42:54 PM,04/09/2016 09:54:28 PM,04/09/2016 10:05:40 PM,Code 2 Transport,04/09/2016 10:40:35 PM,1800 Block of GEARY BLVD,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7842501079896, -122.432035315509)",161003201-64 -161002272,74,16039839,Medical Incident,04/09/2016,04/09/2016,04/09/2016 04:32:23 PM,04/09/2016 04:33:20 PM,04/09/2016 04:36:15 PM,04/09/2016 04:37:23 PM,04/09/2016 04:46:44 PM,04/09/2016 04:55:53 PM,04/09/2016 05:19:16 PM,Code 2 Transport,04/09/2016 06:05:59 PM,100 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,3,3,true,Non Life-threatening,1,MEDIC,2,9,10,McLaren Park,"(37.7104146366126, -122.423115904861)",161002272-74 -160940593,KM07,16037152,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:25:19 AM,04/03/2016 04:25:19 AM,04/03/2016 04:29:42 AM,04/03/2016 04:30:21 AM,04/03/2016 04:38:26 AM,04/03/2016 04:51:26 AM,04/03/2016 05:00:57 AM,Code 2 Transport,04/03/2016 05:26:02 AM,200 Block of BROADWAY,San Francisco,94111,B01,13,1155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7984506502378, -122.401628969112)",160940593-KM07 -160942642,85,16037350,Medical Incident,04/03/2016,04/03/2016,04/03/2016 05:06:18 PM,04/03/2016 05:07:07 PM,04/03/2016 05:07:25 PM,04/03/2016 05:11:41 PM,04/03/2016 05:20:15 PM,04/03/2016 05:22:04 PM,04/03/2016 05:20:15 PM,Code 2 Transport,04/03/2016 06:17:48 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",160942642-85 -152242195,E02,15085393,Outside Fire,08/12/2015,08/12/2015,08/12/2015 02:23:19 PM,08/12/2015 02:23:26 PM,08/12/2015 02:28:03 PM,08/12/2015 02:28:03 PM,08/12/2015 02:29:29 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 02:30:13 PM,COLUMBUS AV/FILBERT ST,San Francisco,94133,B01,28,1351,3,3,3,true,Fire,1,ENGINE,1,1,3,Chinatown,"(37.8011251306762, -122.411376271747)",152242195-E02 -151631909,E19,15062328,Medical Incident,06/12/2015,06/12/2015,06/12/2015 01:34:26 PM,06/12/2015 01:35:15 PM,06/12/2015 01:36:02 PM,06/12/2015 01:36:55 PM,06/12/2015 01:41:04 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Code 2 Transport,06/12/2015 01:57:44 PM,100 Block of COUNTRY CLUB DR,San Francisco,94132,B08,19,8826,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.730788409194, -122.496687609617)",151631909-E19 -142122106,E03,14073519,Medical Incident,07/31/2014,07/31/2014,07/31/2014 02:40:43 PM,07/31/2014 02:42:19 PM,07/31/2014 02:42:48 PM,07/31/2014 02:43:17 PM,07/31/2014 02:48:21 PM,04/25/2016 01:15:55 PM,04/25/2016 01:15:55 PM,Code 2 Transport,07/31/2014 02:52:26 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",142122106-E03 -152482332,72,15094728,Medical Incident,09/05/2015,09/05/2015,09/05/2015 03:04:23 PM,09/05/2015 03:07:10 PM,09/05/2015 03:07:30 PM,09/05/2015 03:08:10 PM,09/05/2015 03:12:39 PM,09/05/2015 03:29:30 PM,09/05/2015 03:35:25 PM,Code 2 Transport,09/05/2015 04:12:20 PM,2400 Block of UNION ST,San Francisco,94123,B04,16,3655,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.796620178157, -122.43961153478)",152482332-72 -160974199,66,16038671,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:13:37 PM,04/06/2016 09:14:55 PM,04/06/2016 09:17:05 PM,04/06/2016 09:17:05 PM,04/06/2016 09:20:20 PM,04/06/2016 09:32:34 PM,04/06/2016 10:06:17 PM,Code 2 Transport,04/06/2016 10:30:51 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160974199-66 -160930336,78,16036700,Medical Incident,04/02/2016,04/01/2016,04/02/2016 02:21:02 AM,04/02/2016 02:21:02 AM,04/02/2016 02:22:44 AM,04/02/2016 02:24:35 AM,04/02/2016 02:32:19 AM,04/02/2016 02:53:40 AM,04/02/2016 03:23:42 AM,Code 2 Transport,04/02/2016 03:41:00 AM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7610397684815, -122.419213667994)",160930336-78 -150830526,T06,15031628,Alarms,03/24/2015,03/23/2015,03/24/2015 07:07:00 AM,03/24/2015 07:08:37 AM,03/24/2015 07:09:02 AM,03/24/2015 07:11:41 AM,03/24/2015 07:13:33 AM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 07:18:43 AM,CHURCH ST/MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",150830526-T06 -143101617,KM15,14109712,Medical Incident,11/06/2014,11/06/2014,11/06/2014 12:25:29 PM,11/06/2014 12:30:05 PM,11/06/2014 12:30:35 PM,11/06/2014 12:33:06 PM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,04/25/2016 01:14:09 PM,Unable to Locate,11/06/2014 12:38:22 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",143101617-KM15 -151844137,85,15070422,Medical Incident,07/03/2015,07/03/2015,07/03/2015 11:34:46 PM,07/03/2015 11:38:50 PM,07/03/2015 11:39:05 PM,07/03/2015 11:39:59 PM,07/03/2015 11:45:51 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Unable to Locate,07/03/2015 11:46:59 PM,16TH ST/SHOTWELL ST,San Francisco,94110,B02,7,5237,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7652494943866, -122.416387524486)",151844137-85 -151632722,E10,15062404,Medical Incident,06/12/2015,06/12/2015,06/12/2015 05:08:47 PM,06/12/2015 05:08:47 PM,06/12/2015 05:09:13 PM,06/12/2015 05:10:43 PM,06/12/2015 05:15:02 PM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,Code 2 Transport,06/12/2015 05:34:34 PM,LOMBARD ST/LYON ST,San Francisco,94123,B99,51,4611,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7984592319601, -122.447303042915)",151632722-E10 -152730674,E14,15104399,Medical Incident,09/30/2015,09/29/2015,09/30/2015 07:54:42 AM,09/30/2015 07:56:30 AM,09/30/2015 07:56:58 AM,09/30/2015 07:58:41 AM,09/30/2015 08:00:54 AM,04/25/2016 01:08:03 PM,04/25/2016 01:08:03 PM,Code 3 Transport,09/30/2015 08:14:29 AM,500 Block of 27TH AVE,San Francisco,94121,B07,14,7222,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7790343191537, -122.486738695304)",152730674-E14 -160942385,50,16037318,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:48:40 PM,04/03/2016 03:48:40 PM,04/03/2016 03:48:59 PM,04/03/2016 03:49:06 PM,04/03/2016 03:55:11 PM,04/03/2016 04:27:42 PM,04/03/2016 04:41:54 PM,Code 2 Transport,04/03/2016 05:45:34 PM,200 Block of 27TH AVE,San Francisco,94121,B07,14,7217,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Seacliff,"(37.7847139650563, -122.487287630184)",160942385-50 -160953211,KM04,16037750,Medical Incident,04/04/2016,04/04/2016,04/04/2016 06:32:48 PM,04/04/2016 06:33:14 PM,04/04/2016 06:33:54 PM,04/04/2016 06:34:30 PM,04/04/2016 06:36:12 PM,04/04/2016 06:51:16 PM,04/04/2016 07:06:39 PM,Code 2 Transport,04/04/2016 07:29:35 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160953211-KM04 -152410089,E09,15091710,Medical Incident,08/29/2015,08/28/2015,08/29/2015 12:26:29 AM,08/29/2015 12:26:29 AM,08/29/2015 12:26:47 AM,08/29/2015 12:31:43 AM,08/29/2015 12:31:43 AM,04/25/2016 01:08:39 PM,04/25/2016 01:08:39 PM,No Merit,08/29/2015 12:37:00 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",152410089-E09 -151571900,77,15059949,Medical Incident,06/06/2015,06/06/2015,06/06/2015 02:01:48 PM,06/06/2015 02:02:48 PM,06/06/2015 02:02:58 PM,06/06/2015 02:05:32 PM,06/06/2015 02:09:24 PM,06/06/2015 02:24:05 PM,06/06/2015 03:07:36 PM,Code 2 Transport,06/06/2015 03:28:20 PM,0 Block of DUKES CT,San Francisco,94124,B10,17,6517,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.737007707134, -122.38650210262)",151571900-77 -152301118,E19,15087707,Structure Fire,08/18/2015,08/18/2015,08/18/2015 10:15:13 AM,08/18/2015 10:15:58 AM,08/18/2015 10:16:40 AM,08/18/2015 10:17:07 AM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Fire,08/18/2015 01:40:25 PM,3600 Block of TARAVAL ST,San Francisco,94116,B08,18,7665,3,3,3,true,Fire,2,ENGINE,21,8,4,Sunset/Parkside,"(37.7416856071451, -122.505151778205)",152301118-E19 -152622464,E35,15100231,Water Rescue,09/19/2015,09/19/2015,09/19/2015 03:50:49 PM,09/19/2015 03:51:41 PM,09/19/2015 03:53:09 PM,09/19/2015 03:55:16 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,04/25/2016 01:08:15 PM,Unable to Locate,09/19/2015 04:01:47 PM,900 Block of 3RD ST,San Francisco,94158,B03,8,946,3,3,3,true,Fire,1,ENGINE,9,None,6,None,"(37.7765531472403, -122.390007762623)",152622464-E35 -160963521,KM02,16038158,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:35:44 PM,04/05/2016 07:37:26 PM,04/05/2016 07:38:00 PM,04/05/2016 07:38:50 PM,04/05/2016 07:58:07 PM,04/05/2016 07:58:08 PM,04/05/2016 08:28:49 PM,Code 2 Transport,04/05/2016 08:45:25 PM,CALL BOX:,Presidio,94129,B99,51,4617,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,2,Presidio,"(37.7905658380644, -122.481242453801)",160963521-KM02 -160963980,52,16038201,Medical Incident,04/05/2016,04/05/2016,04/05/2016 10:12:12 PM,04/05/2016 10:14:15 PM,04/05/2016 10:14:30 PM,04/05/2016 10:14:38 PM,04/05/2016 10:17:26 PM,04/05/2016 10:36:54 PM,04/05/2016 10:45:20 PM,Code 2 Transport,04/05/2016 11:43:19 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160963980-52 -141220293,T01,14041402,Structure Fire,05/02/2014,05/02/2014,05/02/2014 05:07:11 PM,05/02/2014 05:07:11 PM,05/02/2014 05:07:18 PM,05/02/2014 05:09:07 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 05:11:58 PM,10TH ST/MISSION ST,SAN FRANCISCO,94103,B02,36,2341,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7752720593077, -122.415908181241)",141220293-T01 -153450980,E25,15132729,Administrative,12/11/2015,12/11/2015,12/11/2015 08:52:01 AM,12/11/2015 08:52:10 AM,12/11/2015 08:53:27 AM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,04/25/2016 01:06:42 PM,Fire,12/11/2015 08:53:54 AM,3300 Block of 3RD ST,San Francisco,94124,B10,25,2641,3,3,3,false,,1,ENGINE,1,None,None,None,"(37.7475912199361, -122.387182780653)",153450980-E25 -150782008,64,15029912,Medical Incident,03/19/2015,03/19/2015,03/19/2015 01:22:07 PM,03/19/2015 01:22:52 PM,03/19/2015 01:23:10 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,04/25/2016 01:11:38 PM,Code 2 Transport,03/19/2015 01:25:35 PM,MARKET ST/LAGUNA ST,San Francisco,94103,B02,36,3416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7707477455746, -122.424852598702)",150782008-64 -150122967,54,15004866,Medical Incident,01/12/2015,01/12/2015,01/12/2015 06:23:14 PM,01/12/2015 06:24:40 PM,01/12/2015 06:41:54 PM,01/12/2015 06:44:12 PM,01/12/2015 06:44:12 PM,01/12/2015 06:53:45 PM,01/12/2015 07:15:40 PM,Code 2 Transport,01/12/2015 07:43:28 PM,1200 Block of MENDELL ST,San Francisco,94124,B10,17,6515,2,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7355718905805, -122.38955219063)",150122967-54 -160932470,53,16036943,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:32:08 PM,04/02/2016 04:33:06 PM,04/02/2016 04:35:15 PM,04/02/2016 04:35:28 PM,04/02/2016 04:44:46 PM,04/02/2016 04:54:00 PM,04/02/2016 05:19:43 PM,Code 2 Transport,04/02/2016 05:43:11 PM,500 Block of BURNETT AVE,San Francisco,94131,B06,24,5281,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Twin Peaks,"(37.7522092988242, -122.444482891572)",160932470-53 -142541148,72,14088622,Medical Incident,09/11/2014,09/11/2014,09/11/2014 10:24:07 AM,09/11/2014 10:25:21 AM,09/11/2014 10:25:53 AM,09/11/2014 10:26:05 AM,09/11/2014 10:30:44 AM,04/25/2016 01:15:10 PM,04/25/2016 01:15:10 PM,No Merit,09/11/2014 10:38:19 AM,700 Block of 8TH AVE,San Francisco,94118,B07,31,7132,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7743379667606, -122.465881851458)",142541148-72 -152520161,E15,15096179,Medical Incident,09/09/2015,09/08/2015,09/09/2015 01:04:05 AM,09/09/2015 01:04:38 AM,09/09/2015 01:04:46 AM,09/09/2015 01:08:14 AM,09/09/2015 01:08:39 AM,04/25/2016 01:08:27 PM,04/25/2016 01:08:27 PM,Code 2 Transport,09/09/2015 01:16:29 AM,200 Block of GRANADA AVE,San Francisco,94112,B09,15,8473,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7229722670575, -122.457235193832)",152520161-E15 -141250183,83,14042338,Medical Incident,05/05/2014,05/05/2014,05/05/2014 11:35:38 AM,05/05/2014 11:36:41 AM,05/05/2014 11:37:28 AM,05/05/2014 11:37:48 AM,05/05/2014 11:42:35 AM,05/05/2014 12:02:45 PM,05/05/2014 12:07:30 PM,Code 2 Transport,05/05/2014 12:30:20 PM,HYDE ST/GOLDEN GATE AV,SAN FRANCISCO,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",141250183-83 -160993373,76,16039451,Medical Incident,04/08/2016,04/08/2016,04/08/2016 07:56:22 PM,04/08/2016 07:58:04 PM,04/08/2016 07:58:52 PM,04/08/2016 07:59:00 PM,04/08/2016 08:02:47 PM,04/08/2016 08:07:54 PM,04/08/2016 08:21:59 PM,Code 2 Transport,04/08/2016 08:58:30 PM,FOLSOM ST/BEALE ST,San Francisco,94105,B03,35,2122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7886866619654, -122.392722833778)",160993373-76 -151452941,D2,15055302,Structure Fire,05/25/2015,05/25/2015,05/25/2015 08:03:32 PM,05/25/2015 08:04:18 PM,05/25/2015 08:04:41 PM,05/25/2015 08:05:53 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,Fire,05/25/2015 08:09:42 PM,900 Block of PINE ST,San Francisco,94108,B01,41,1413,3,3,3,false,Alarm,1,CHIEF,7,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",151452941-D2 -142272078,E19,14078882,Fuel Spill,08/15/2014,08/15/2014,08/15/2014 02:52:33 PM,08/15/2014 02:54:52 PM,08/15/2014 02:55:53 PM,08/15/2014 02:56:45 PM,08/15/2014 03:01:13 PM,04/25/2016 01:15:39 PM,04/25/2016 01:15:39 PM,Fire,08/15/2014 03:06:51 PM,19TH AV/HOLLOWAY AV,San Francisco,94132,B08,19,8751,3,3,3,true,Alarm,1,ENGINE,1,9,7,Lakeshore,"(37.7210572969552, -122.475221950242)",142272078-E19 -143260746,E05,14115388,Medical Incident,11/22/2014,11/21/2014,11/22/2014 07:17:21 AM,11/22/2014 07:17:47 AM,11/22/2014 07:18:36 AM,11/22/2014 07:20:25 AM,11/22/2014 07:21:33 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,Code 2 Transport,11/22/2014 07:44:31 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",143260746-E05 -160980449,71,16038775,Medical Incident,04/07/2016,04/06/2016,04/07/2016 04:20:11 AM,04/07/2016 04:20:11 AM,04/07/2016 04:20:36 AM,04/07/2016 04:20:56 AM,04/07/2016 04:23:34 AM,04/07/2016 04:27:07 AM,04/07/2016 04:44:02 AM,Code 2 Transport,04/07/2016 04:47:27 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160980449-71 -150380391,E10,15014629,Medical Incident,02/07/2015,02/06/2015,02/07/2015 02:44:36 AM,02/07/2015 02:46:39 AM,02/07/2015 02:46:46 AM,02/07/2015 02:48:59 AM,02/07/2015 02:50:25 AM,04/25/2016 01:12:23 PM,04/25/2016 01:12:23 PM,Code 2 Transport,02/07/2015 03:00:13 AM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7848770596387, -122.442348914658)",150380391-E10 -151072693,E32,15040589,Outside Fire,04/17/2015,04/17/2015,04/17/2015 04:36:26 PM,04/17/2015 04:37:38 PM,04/17/2015 04:37:43 PM,04/17/2015 04:41:06 PM,04/17/2015 04:41:06 PM,04/25/2016 01:11:06 PM,04/25/2016 01:11:06 PM,Fire,04/17/2015 04:45:01 PM,SILVER AV/ALEMANY BL,San Francisco,94112,B09,32,6113,3,3,3,false,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.7297755767155, -122.433386844031)",151072693-E32 -141731859,E33,14059706,Medical Incident,06/22/2014,06/22/2014,06/22/2014 02:47:55 PM,06/22/2014 02:48:13 PM,06/22/2014 02:49:04 PM,06/22/2014 02:50:43 PM,06/22/2014 02:53:15 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Against Medical Advice,06/22/2014 03:05:51 PM,100 Block of GOETHE ST,San Francisco,94112,B09,33,8364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7090126221049, -122.45976907124)",141731859-E33 -142751041,E42,14096397,Traffic Collision,10/02/2014,10/02/2014,10/02/2014 09:09:02 AM,10/02/2014 09:10:33 AM,10/02/2014 09:10:49 AM,10/02/2014 09:12:14 AM,10/02/2014 09:13:59 AM,04/25/2016 01:14:47 PM,04/25/2016 01:14:47 PM,Unable to Locate,10/02/2014 09:19:52 AM,100 Block of PAUL AVE,San Francisco,94124,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.722697633179, -122.397167021381)",142751041-E42 -141293115,E03,14044006,Structure Fire,05/09/2014,05/09/2014,05/09/2014 07:14:30 PM,05/09/2014 07:14:30 PM,05/09/2014 07:16:25 PM,05/09/2014 07:17:14 PM,05/09/2014 07:20:03 PM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Cancelled,05/09/2014 07:21:19 PM,STOCKTON ST/MARKET ST,San Francisco,94103,B03,1,1322,3,3,3,false,Alarm,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",141293115-E03 -141763867,81,14060932,Medical Incident,06/25/2014,06/25/2014,06/25/2014 11:40:29 PM,06/25/2014 11:40:29 PM,06/25/2014 11:40:53 PM,06/25/2014 11:41:04 PM,06/25/2014 11:46:32 PM,06/26/2014 12:02:08 AM,06/26/2014 12:04:36 AM,Code 2 Transport,06/26/2014 12:45:03 AM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",141763867-81 -160930202,52,16036686,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:16:33 AM,04/02/2016 01:16:33 AM,04/02/2016 01:21:38 AM,04/02/2016 01:21:38 AM,04/02/2016 01:30:06 AM,04/02/2016 01:48:38 AM,04/02/2016 02:07:00 AM,Code 2 Transport,04/02/2016 02:42:11 AM,200 Block of ALLISON ST,San Francisco,94112,B09,43,6221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7118122383608, -122.441310400337)",160930202-52 -150912250,60,15034637,Medical Incident,04/01/2015,04/01/2015,04/01/2015 02:59:41 PM,04/01/2015 03:02:24 PM,04/01/2015 03:02:49 PM,04/01/2015 03:02:59 PM,04/01/2015 03:19:09 PM,04/01/2015 03:41:48 PM,04/01/2015 04:00:42 PM,Code 2 Transport,04/01/2015 04:25:43 PM,1500 Block of 28TH AVE,San Francisco,94122,B08,18,7475,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7584772685573, -122.486377709798)",150912250-60 -142113384,T11,14073271,Structure Fire,07/30/2014,07/30/2014,07/30/2014 08:51:39 PM,07/30/2014 08:52:21 PM,07/30/2014 08:53:17 PM,07/30/2014 08:54:30 PM,07/30/2014 08:56:53 PM,04/25/2016 01:15:56 PM,04/25/2016 01:15:56 PM,Fire,07/30/2014 09:05:22 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,3,3,3,false,Alarm,1,TRUCK,1,6,8,Bernal Heights,"(37.7459390289798, -122.421805189275)",142113384-T11 -160922912,AM10,16036552,Traffic Collision,04/01/2016,04/01/2016,04/01/2016 06:07:01 PM,04/01/2016 06:07:01 PM,04/01/2016 06:07:17 PM,04/01/2016 06:07:50 PM,04/01/2016 06:14:36 PM,04/01/2016 06:19:56 PM,04/01/2016 06:31:01 PM,Code 3 Transport,04/01/2016 07:13:10 PM,LAGUNA ST/BROADWAY,San Francisco,94109,B04,38,3355,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Pacific Heights,"(37.7948949363979, -122.429989277715)",160922912-AM10 -150491344,52,15018915,Medical Incident,02/18/2015,02/18/2015,02/18/2015 10:32:04 AM,02/18/2015 10:32:34 AM,02/18/2015 10:34:57 AM,02/18/2015 10:35:31 AM,02/18/2015 10:51:01 AM,02/18/2015 11:33:56 AM,02/18/2015 11:33:59 AM,Code 2 Transport,02/18/2015 11:53:44 AM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.765718993574, -122.409520691153)",150491344-52 -153470393,88,15133519,Medical Incident,12/13/2015,12/12/2015,12/13/2015 02:40:06 AM,12/13/2015 02:40:51 AM,12/13/2015 02:41:12 AM,12/13/2015 02:41:28 AM,12/13/2015 02:42:36 AM,12/13/2015 02:56:28 AM,12/13/2015 03:14:13 AM,Code 2 Transport,12/13/2015 03:56:52 AM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",153470393-88 -141760270,85,14060604,Medical Incident,06/25/2014,06/24/2014,06/25/2014 03:11:40 AM,06/25/2014 03:14:13 AM,06/25/2014 03:16:09 AM,06/25/2014 03:16:30 AM,06/25/2014 03:29:34 AM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Patient Declined Transport,06/25/2014 04:21:00 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",141760270-85 -152000273,T11,15076084,Traffic Collision,07/19/2015,07/18/2015,07/19/2015 01:35:37 AM,07/19/2015 01:37:37 AM,07/19/2015 01:39:03 AM,07/19/2015 01:41:23 AM,07/19/2015 01:45:48 AM,04/25/2016 01:09:23 PM,04/25/2016 01:09:23 PM,Other,07/19/2015 02:14:45 AM,200 Block of OCEAN AVE,San Francisco,94112,B06,26,8146,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,9,11,Outer Mission,"(37.7232033054721, -122.442927356983)",152000273-T11 -151240397,KM07,15046892,Medical Incident,05/04/2015,05/03/2015,05/04/2015 06:13:17 AM,05/04/2015 06:13:17 AM,05/04/2015 06:13:33 AM,05/04/2015 06:14:10 AM,05/04/2015 06:20:33 AM,05/04/2015 06:31:33 AM,05/04/2015 06:42:51 AM,Code 2 Transport,05/04/2015 07:12:19 AM,100 Block of 2ND AVE,San Francisco,94118,B07,10,7114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7852692574959, -122.460358015278)",151240397-KM07 -141190217,68,14040172,Other,04/29/2014,04/29/2014,04/29/2014 01:10:23 PM,04/29/2014 01:11:55 PM,04/29/2014 01:19:38 PM,04/29/2014 01:20:08 PM,04/29/2014 01:23:30 PM,04/29/2014 01:48:59 PM,04/29/2014 02:14:37 PM,Code 2 Transport,04/29/2014 02:53:31 PM,0 Block of PARK HILL AVE,SAN FRANCISCO,94117,B05,21,5136,,3,3,true,Alarm,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7673531246888, -122.439155550726)",141190217-68 -160943133,KM12,16037393,Medical Incident,04/03/2016,04/03/2016,04/03/2016 07:38:52 PM,04/03/2016 07:39:46 PM,04/03/2016 07:39:57 PM,04/03/2016 07:40:29 PM,04/03/2016 07:43:36 PM,04/03/2016 07:54:06 PM,04/03/2016 08:04:49 PM,Code 2 Transport,04/03/2016 08:25:29 PM,MISSION ST/24TH ST,San Francisco,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160943133-KM12 -160970954,AM08,16038335,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:07:54 AM,04/06/2016 09:09:41 AM,04/06/2016 09:12:05 AM,04/06/2016 09:15:57 AM,04/06/2016 09:22:27 AM,04/06/2016 09:55:15 AM,04/06/2016 10:13:41 AM,Code 3 Transport,04/06/2016 11:06:52 AM,300 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,5,8,Castro/Upper Market,"(37.7668035178194, -122.440704687809)",160970954-AM08 -160960088,70,16037850,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:44:38 AM,04/05/2016 12:46:16 AM,04/05/2016 12:49:34 AM,04/05/2016 12:50:11 AM,04/05/2016 01:02:20 AM,04/05/2016 01:14:37 AM,04/05/2016 01:45:53 AM,Code 2 Transport,04/05/2016 02:22:16 AM,200 Block of DETROIT ST,San Francisco,94131,B09,15,8222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7294956324936, -122.444218631361)",160960088-70 -150211006,RS2,15008145,Structure Fire,01/21/2015,01/21/2015,01/21/2015 09:47:33 AM,01/21/2015 09:48:25 AM,01/21/2015 09:48:48 AM,01/21/2015 09:50:59 AM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Fire,01/21/2015 09:59:36 AM,1800 Block of 48TH AVE,San Francisco,94122,B08,23,7725,3,3,3,false,Fire,1,RESCUE SQUAD,10,8,4,Sunset/Parkside,"(37.7519393941701, -122.50741193175)",150211006-RS2 -151560982,74,15059443,Medical Incident,06/05/2015,06/05/2015,06/05/2015 09:31:06 AM,06/05/2015 09:32:25 AM,06/05/2015 09:32:40 AM,06/05/2015 09:32:55 AM,06/05/2015 09:46:53 AM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Medical Examiner,06/05/2015 10:22:16 AM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7984618025387, -122.410177852644)",151560982-74 -150693577,70,15026537,Medical Incident,03/10/2015,03/10/2015,03/10/2015 09:28:43 PM,03/10/2015 09:31:52 PM,03/10/2015 09:32:37 PM,03/10/2015 09:33:35 PM,03/10/2015 09:39:12 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,No Merit,03/10/2015 10:20:04 PM,100 Block of APPLETON AVE,San Francisco,94110,B06,32,5646,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",150693577-70 -143352791,T17,14118785,Alarms,12/01/2014,12/01/2014,12/01/2014 05:33:05 PM,12/01/2014 05:34:38 PM,12/01/2014 05:34:54 PM,12/01/2014 05:37:13 PM,12/01/2014 05:44:52 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,Fire,12/01/2014 06:03:27 PM,0 Block of MELRA CT,San Francisco,94134,B09,44,6253,3,3,3,false,Alarm,1,TRUCK,3,9,10,Visitacion Valley,"(37.7098764268239, -122.410689969891)",143352791-T17 -152301212,66,15087720,Medical Incident,08/18/2015,08/18/2015,08/18/2015 10:44:44 AM,08/18/2015 10:46:43 AM,08/18/2015 10:46:56 AM,08/18/2015 10:47:25 AM,08/18/2015 10:52:30 AM,08/18/2015 11:24:40 AM,08/18/2015 12:04:04 PM,Code 3 Transport,08/18/2015 12:44:54 PM,3100 Block of TARAVAL ST,San Francisco,94116,B08,18,7636,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7419281236536, -122.499793309862)",152301212-66 -151291467,RC3,15048941,Medical Incident,05/09/2015,05/09/2015,05/09/2015 11:33:18 AM,05/09/2015 11:33:59 AM,05/09/2015 11:35:23 AM,05/09/2015 11:35:34 AM,05/09/2015 11:45:48 AM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Code 3 Transport,05/09/2015 11:52:38 AM,100 Block of DUBLIN ST,San Francisco,94112,B09,43,6165,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7177507837412, -122.426921683599)",151291467-RC3 -141260194,E18,14042708,Electrical Hazard,05/06/2014,05/06/2014,05/06/2014 11:59:57 AM,05/06/2014 12:01:39 PM,05/06/2014 12:01:44 PM,05/06/2014 12:02:35 PM,05/06/2014 12:04:11 PM,04/25/2016 01:17:29 PM,04/25/2016 01:17:29 PM,Fire,05/06/2014 12:09:26 PM,2000 Block of 30TH AVE,SAN FRANCISCO,94116,B08,18,7516,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7490546568877, -122.488000185963)",141260194-E18 -160970692,AM06,16038303,Medical Incident,04/06/2016,04/05/2016,04/06/2016 07:45:29 AM,04/06/2016 07:46:52 AM,04/06/2016 07:50:17 AM,04/06/2016 07:50:48 AM,04/06/2016 08:10:28 AM,04/06/2016 08:22:33 AM,04/06/2016 08:39:23 AM,Code 2 Transport,04/06/2016 09:04:52 AM,MARKET ST/MAIN ST,San Francisco,94105,B01,13,1113,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7930970823054, -122.396504488933)",160970692-AM06 -150853348,72,15032586,Traffic Collision,03/26/2015,03/26/2015,03/26/2015 07:22:31 PM,03/26/2015 07:23:37 PM,03/26/2015 07:24:48 PM,03/26/2015 07:25:11 PM,03/26/2015 07:29:39 PM,03/26/2015 07:42:51 PM,03/26/2015 08:06:11 PM,Code 2 Transport,03/26/2015 08:29:29 PM,26TH AV/KIRKHAM ST,San Francisco,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7595012019911, -122.484365170611)",150853348-72 -141753580,E10,14060559,Medical Incident,06/24/2014,06/24/2014,06/24/2014 11:16:59 PM,06/24/2014 11:19:17 PM,06/24/2014 11:21:16 PM,06/24/2014 11:22:46 PM,06/24/2014 11:25:40 PM,04/25/2016 01:16:35 PM,04/25/2016 01:16:35 PM,Cancelled,06/24/2014 11:29:39 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,ENGINE,3,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",141753580-E10 -152772325,76,15106288,Medical Incident,10/04/2015,10/04/2015,10/04/2015 03:30:51 PM,10/04/2015 03:32:46 PM,10/04/2015 03:32:56 PM,10/04/2015 03:33:05 PM,10/04/2015 03:38:55 PM,10/04/2015 03:51:50 PM,10/04/2015 04:00:28 PM,Code 2 Transport,10/04/2015 04:44:05 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",152772325-76 -153451350,85,15132760,Medical Incident,12/11/2015,12/11/2015,12/11/2015 10:26:50 AM,12/11/2015 10:26:50 AM,12/11/2015 10:27:08 AM,12/11/2015 10:27:18 AM,12/11/2015 10:36:30 AM,12/11/2015 10:51:10 AM,12/11/2015 10:51:11 AM,Code 2 Transport,12/11/2015 11:41:47 AM,2200 Block of HAYES ST,San Francisco,94117,B05,21,4543,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",153451350-85 -160940163,71,16037110,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:54:34 AM,04/03/2016 12:55:11 AM,04/03/2016 12:55:19 AM,04/03/2016 12:55:28 AM,04/03/2016 01:10:57 AM,04/03/2016 01:40:02 AM,04/03/2016 01:51:35 AM,Code 2 Transport,04/03/2016 02:24:17 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,6,Tenderloin,"(37.7862508859711, -122.413133876591)",160940163-71 -160942499,KM08,16037330,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:24:30 PM,04/03/2016 04:25:26 PM,04/03/2016 04:26:16 PM,04/03/2016 04:27:19 PM,04/03/2016 04:33:12 PM,04/03/2016 04:48:21 PM,04/03/2016 05:01:46 PM,Code 2 Transport,04/03/2016 05:31:17 PM,TURK BL/KITTREDGE TR,San Francisco,94118,B05,21,4564,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7781645979681, -122.450654811306)",160942499-KM08 -141630368,73,14056089,Medical Incident,06/12/2014,06/11/2014,06/12/2014 05:34:52 AM,06/12/2014 05:36:29 AM,06/12/2014 05:38:41 AM,06/12/2014 05:40:38 AM,06/12/2014 05:48:34 AM,06/12/2014 06:11:07 AM,06/12/2014 06:50:21 AM,Code 2 Transport,06/12/2014 07:20:03 AM,CASTRO ST/MARKET ST,San Francisco,94114,B05,6,5253,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",141630368-73 -141712446,E31,14059112,Medical Incident,06/20/2014,06/20/2014,06/20/2014 04:24:12 PM,06/20/2014 04:24:29 PM,06/20/2014 04:24:44 PM,06/20/2014 04:25:47 PM,06/20/2014 04:29:26 PM,04/25/2016 01:16:39 PM,04/25/2016 01:16:39 PM,Code 2 Transport,06/20/2014 04:48:06 PM,3600 Block of FULTON ST,San Francisco,94118,B07,31,7144,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.773225431204, -122.468554367118)",141712446-E31 -151501782,T13,15057097,Structure Fire,05/30/2015,05/30/2015,05/30/2015 01:26:08 PM,05/30/2015 01:28:01 PM,05/30/2015 01:28:52 PM,05/30/2015 01:30:00 PM,05/30/2015 01:38:49 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Fire,05/30/2015 01:41:45 PM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,false,Alarm,1,TRUCK,5,1,3,Chinatown,"(37.796699717573, -122.408014703843)",151501782-T13 -150573913,E10,15021985,Medical Incident,02/26/2015,02/26/2015,02/26/2015 10:58:38 PM,02/26/2015 11:00:28 PM,02/26/2015 11:01:03 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Patient Declined Transport,02/26/2015 11:02:12 PM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7800578530259, -122.464142970045)",150573913-E10 -151492189,KM06,15056741,Medical Incident,05/29/2015,05/29/2015,05/29/2015 02:39:10 PM,05/29/2015 02:40:40 PM,05/29/2015 02:41:36 PM,05/29/2015 02:41:58 PM,05/29/2015 02:50:34 PM,05/29/2015 03:21:12 PM,05/29/2015 03:27:29 PM,Code 2 Transport,05/29/2015 04:31:57 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",151492189-KM06 -151991730,B01,15075844,Structure Fire,07/18/2015,07/18/2015,07/18/2015 12:35:33 PM,07/18/2015 12:38:38 PM,07/18/2015 12:38:51 PM,07/18/2015 12:39:32 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,No Merit,07/18/2015 12:44:15 PM,SOUTH PARK/3RD ST,San Francisco,94107,B03,8,2173,3,3,3,false,Alarm,1,CHIEF,11,3,6,South of Market,"(37.7807005594218, -122.395064952988)",151991730-B01 -150911716,72,15034593,Medical Incident,04/01/2015,04/01/2015,04/01/2015 12:43:50 PM,04/01/2015 12:43:50 PM,04/01/2015 12:58:55 PM,04/01/2015 12:59:30 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Patient Declined Transport,04/01/2015 01:16:48 PM,800 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",150911716-72 -151742480,FD00A,15066432,,06/23/2015,06/23/2015,06/23/2015 03:57:37 PM,06/23/2015 04:01:18 PM,06/23/2015 04:58:24 PM,06/23/2015 04:58:24 PM,06/23/2015 04:58:24 PM,04/25/2016 01:09:51 PM,04/25/2016 01:09:51 PM,Patient Declined Transport,06/23/2015 04:58:30 PM,1300 Block of 43RD AVE,San Francisco,94122,B08,23,7653,2,2,2,false,Non Life-threatening,1,SUPPORT,3,8,4,Sunset/Parkside,"(37.7614938129235, -122.502847511693)",151742480-FD00A -151161429,T11,15043804,Structure Fire,04/26/2015,04/26/2015,04/26/2015 11:49:22 AM,04/26/2015 11:49:27 AM,04/26/2015 11:49:49 AM,04/26/2015 11:50:35 AM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Fire,04/26/2015 12:03:05 PM,1200 Block of NOE ST,San Francisco,94114,B06,11,554,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7494248005842, -122.43174723)",151161429-T11 -150072333,T01,15002741,Medical Incident,01/07/2015,01/07/2015,01/07/2015 03:33:23 PM,01/07/2015 03:34:48 PM,01/07/2015 03:35:33 PM,01/07/2015 03:37:16 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,No Merit,01/07/2015 03:39:27 PM,LARKIN ST/FULTON ST,San Francisco,94102,B02,36,1645,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",150072333-T01 -160982545,72,16038992,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:39:46 PM,04/07/2016 03:42:05 PM,04/07/2016 03:44:19 PM,04/07/2016 03:44:34 PM,04/07/2016 03:52:40 PM,04/07/2016 04:10:09 PM,04/07/2016 04:44:22 PM,Code 2 Transport,04/07/2016 05:06:20 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,2,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7742496611166, -122.414204535023)",160982545-72 -151502232,E40,15057140,Structure Fire,05/30/2015,05/30/2015,05/30/2015 03:29:55 PM,05/30/2015 03:31:54 PM,05/30/2015 03:32:15 PM,05/30/2015 03:32:41 PM,05/30/2015 03:35:30 PM,04/25/2016 01:10:18 PM,04/25/2016 01:10:18 PM,Fire,05/30/2015 03:37:30 PM,21ST AV/SLOAT BL,San Francisco,94132,B08,19,8732,3,3,3,false,Alarm,1,ENGINE,4,8,7,Sunset/Parkside,"(37.7346176626069, -122.477080828344)",151502232-E40 -151143974,E16,15043278,Medical Incident,04/24/2015,04/24/2015,04/24/2015 10:57:25 PM,04/24/2015 10:58:14 PM,04/24/2015 10:58:30 PM,04/24/2015 10:59:21 PM,04/24/2015 11:00:46 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Code 3 Transport,04/24/2015 11:09:19 PM,2500 Block of GREENWICH ST,San Francisco,94123,B04,16,4166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.798163952853, -122.44162207097)",151143974-E16 -152550754,AM02,15097422,Medical Incident,09/12/2015,09/11/2015,09/12/2015 07:51:49 AM,09/12/2015 07:52:13 AM,09/12/2015 07:52:45 AM,09/12/2015 07:53:18 AM,09/12/2015 08:00:10 AM,09/12/2015 08:23:56 AM,09/12/2015 08:36:22 AM,Code 2 Transport,09/12/2015 09:17:23 AM,200 Block of BRADFORD ST,San Francisco,94110,B10,32,5735,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Bernal Heights,"(37.7392981093573, -122.409463425691)",152550754-AM02 -141150045,RS1,14038703,Structure Fire,04/25/2014,04/24/2014,04/25/2014 06:20:13 AM,04/25/2014 06:21:08 AM,04/25/2014 06:22:22 AM,04/25/2014 06:25:40 AM,04/25/2016 01:17:42 PM,04/25/2016 01:17:42 PM,04/25/2016 01:17:42 PM,Fire,04/25/2014 06:34:12 AM,500 Block of BANKS ST,SAN FRANCISCO,94110,B10,32,573,,3,3,false,Fire,1,RESCUE SQUAD,12,10,9,Bernal Heights,"(37.7364499536633, -122.412979790377)",141150045-RS1 -160953339,AM08,16037762,Medical Incident,04/04/2016,04/04/2016,04/04/2016 07:02:59 PM,04/04/2016 07:04:17 PM,04/04/2016 07:05:38 PM,04/04/2016 07:06:18 PM,04/04/2016 07:09:57 PM,04/04/2016 07:18:33 PM,04/04/2016 07:30:24 PM,Code 2 Transport,04/04/2016 07:48:18 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160953339-AM08 -151983695,70,15075621,Medical Incident,07/17/2015,07/17/2015,07/17/2015 08:32:34 PM,07/17/2015 08:35:33 PM,07/17/2015 08:35:49 PM,07/17/2015 08:36:11 PM,07/17/2015 08:43:32 PM,07/17/2015 09:02:47 PM,07/17/2015 09:15:12 PM,Code 2 Transport,07/17/2015 10:01:13 PM,900 Block of GRANT AVE,San Francisco,94108,B01,2,1312,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7955759617339, -122.406632308192)",151983695-70 -160992457,67,16039379,Medical Incident,04/08/2016,04/08/2016,04/08/2016 04:10:18 PM,04/08/2016 04:10:42 PM,04/08/2016 04:16:56 PM,04/08/2016 04:16:59 PM,04/08/2016 04:26:13 PM,04/08/2016 04:37:46 PM,04/08/2016 05:03:32 PM,Code 2 Transport,04/08/2016 05:30:43 PM,700 Block of 7TH AVE,San Francisco,94118,B07,31,7132,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",160992457-67 -160951808,79,16037630,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:52:18 PM,04/04/2016 12:53:57 PM,04/04/2016 12:55:22 PM,04/04/2016 12:55:37 PM,04/04/2016 01:03:06 PM,04/04/2016 01:15:18 PM,04/04/2016 01:24:34 PM,Code 2 Transport,04/04/2016 02:20:55 PM,4TH ST/FREELON ST,San Francisco,94107,B03,8,2217,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7787510516113, -122.397061718419)",160951808-79 -160981563,74,16038888,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:29:44 AM,04/07/2016 11:30:21 AM,04/07/2016 11:31:30 AM,04/07/2016 11:32:24 AM,04/07/2016 11:44:24 AM,04/07/2016 12:05:55 PM,04/07/2016 12:17:02 PM,Code 2 Transport,04/07/2016 12:56:28 PM,200 Block of BROADWAY,San Francisco,94111,B01,13,1155,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7984506502378, -122.401628969112)",160981563-74 -150232363,55,15008975,Medical Incident,01/23/2015,01/23/2015,01/23/2015 04:02:08 PM,01/23/2015 04:02:50 PM,01/23/2015 04:04:12 PM,01/23/2015 04:05:45 PM,01/23/2015 04:27:04 PM,01/23/2015 04:27:05 PM,01/23/2015 05:06:36 PM,Code 2 Transport,01/23/2015 05:43:57 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",150232363-55 -141692168,KM04,14058394,Traffic Collision,06/18/2014,06/18/2014,06/18/2014 03:40:56 PM,06/18/2014 03:41:54 PM,06/18/2014 03:42:17 PM,06/18/2014 03:43:21 PM,06/18/2014 03:46:32 PM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Patient Declined Transport,06/18/2014 04:18:37 PM,10TH ST/HARRISON ST,San Francisco,94103,B02,29,2344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7715786771769, -122.411277938324)",141692168-KM04 -152000059,RC3,15076058,Medical Incident,07/19/2015,07/18/2015,07/19/2015 12:11:56 AM,07/19/2015 12:13:21 AM,07/19/2015 12:33:23 AM,07/19/2015 12:35:32 AM,07/19/2015 12:47:04 AM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Other,07/19/2015 01:00:53 AM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7650513381945, -122.419668973861)",152000059-RC3 -142072766,B10,14071800,Alarms,07/26/2014,07/26/2014,07/26/2014 06:30:41 PM,07/26/2014 06:31:59 PM,07/26/2014 06:32:05 PM,07/26/2014 06:33:52 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,04/25/2016 01:16:01 PM,Fire,07/26/2014 06:36:33 PM,0 Block of PERALTA AVE,San Francisco,94110,B06,9,5671,3,3,3,false,Alarm,1,CHIEF,3,6,9,Bernal Heights,"(37.7479927009855, -122.405423607202)",142072766-B10 -141891208,AM08,14065455,Medical Incident,07/08/2014,07/08/2014,07/08/2014 10:24:35 AM,07/08/2014 10:27:59 AM,07/08/2014 10:28:33 AM,07/08/2014 10:29:33 AM,07/08/2014 10:38:50 AM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Cancelled,07/08/2014 10:38:58 AM,2300 Block of 21ST ST,San Francisco,94107,B10,9,2626,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7583116848372, -122.404384791763)",141891208-AM08 -141892871,66,14065589,Medical Incident,07/08/2014,07/08/2014,07/08/2014 05:47:05 PM,07/08/2014 05:49:23 PM,07/08/2014 05:50:13 PM,07/08/2014 05:50:47 PM,07/08/2014 05:57:40 PM,07/08/2014 06:22:04 PM,07/08/2014 06:51:39 PM,Code 2 Transport,07/08/2014 07:09:09 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",141892871-66 -160993993,62,16039525,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:13:33 PM,04/08/2016 11:15:23 PM,04/08/2016 11:18:14 PM,04/08/2016 11:18:28 PM,04/08/2016 11:36:49 PM,04/08/2016 11:54:16 PM,04/09/2016 12:12:54 AM,Code 2 Transport,04/09/2016 12:31:12 AM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8056674488919, -122.412766371216)",160993993-62 -153283829,AM18,15126436,Medical Incident,11/24/2015,11/24/2015,11/24/2015 10:10:39 PM,11/24/2015 10:11:14 PM,11/24/2015 10:11:34 PM,11/24/2015 10:13:13 PM,11/24/2015 10:18:32 PM,11/24/2015 10:44:19 PM,11/24/2015 10:56:26 PM,Code 2 Transport,11/24/2015 11:35:17 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",153283829-AM18 -160922368,KM13,16036509,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:01:45 PM,04/01/2016 04:02:24 PM,04/01/2016 04:03:44 PM,04/01/2016 04:04:18 PM,04/01/2016 04:12:18 PM,04/01/2016 04:18:50 PM,04/01/2016 04:37:09 PM,Code 2 Transport,04/01/2016 05:03:38 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2247,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160922368-KM13 -160924069,85,16036665,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:57:35 PM,04/01/2016 11:58:50 PM,04/01/2016 11:59:30 PM,04/01/2016 11:59:40 PM,04/02/2016 12:08:27 AM,04/02/2016 12:30:54 AM,04/02/2016 12:49:03 AM,Code 2 Transport,04/02/2016 01:24:01 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94116,B08,39,8624,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",160924069-85 -160980282,89,16038753,Medical Incident,04/07/2016,04/06/2016,04/07/2016 02:31:56 AM,04/07/2016 02:33:29 AM,04/07/2016 02:33:59 AM,04/07/2016 02:34:07 AM,04/07/2016 02:38:40 AM,04/07/2016 02:56:29 AM,04/07/2016 03:11:22 AM,Code 2 Transport,04/07/2016 03:45:32 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160980282-89 -150523170,85,15020149,Medical Incident,02/21/2015,02/21/2015,02/21/2015 07:07:23 PM,02/21/2015 07:08:29 PM,02/21/2015 07:09:25 PM,02/21/2015 07:09:33 PM,02/21/2015 07:19:29 PM,02/21/2015 07:32:01 PM,02/21/2015 07:57:18 PM,Code 2 Transport,02/21/2015 08:24:27 PM,300 Block of MORAGA ST,San Francisco,94122,B08,22,7343,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7566128040507, -122.466329999361)",150523170-85 -141370317,E28,14046783,Medical Incident,05/17/2014,05/16/2014,05/17/2014 02:02:58 AM,05/17/2014 02:04:05 AM,05/17/2014 02:04:28 AM,05/17/2014 02:06:43 AM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,Code 2 Transport,05/17/2014 02:09:09 AM,LOMBARD ST/LARKIN ST,San Francisco,94109,B01,41,1625,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,2,Russian Hill,"(37.8017584160095, -122.421257557973)",141370317-E28 -160970394,61,16038276,Medical Incident,04/06/2016,04/05/2016,04/06/2016 05:05:34 AM,04/06/2016 05:05:34 AM,04/06/2016 05:05:57 AM,04/06/2016 05:06:28 AM,04/06/2016 05:12:33 AM,04/06/2016 05:22:41 AM,04/06/2016 05:55:37 AM,Code 2 Transport,04/06/2016 06:28:28 AM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",160970394-61 -142672863,T16,14093604,Water Rescue,09/24/2014,09/24/2014,09/24/2014 05:24:42 PM,09/24/2014 05:24:42 PM,09/24/2014 05:29:01 PM,09/24/2014 05:30:50 PM,09/24/2014 05:53:44 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,Fire,09/24/2014 07:01:01 PM,300 Block of GREAT HWY,San Francisco,94121,B08,34,7314,3,3,3,false,Fire,1,TRUCK,14,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",142672863-T16 -161001844,75,16039791,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:22:47 PM,04/09/2016 02:22:47 PM,04/09/2016 02:23:06 PM,04/09/2016 02:23:12 PM,04/09/2016 02:34:19 PM,04/09/2016 02:37:58 PM,04/09/2016 02:51:08 PM,Code 2 Transport,04/09/2016 03:23:46 PM,13TH ST/TRAINOR ST,San Francisco,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7695357781802, -122.414494438911)",161001844-75 -161001920,76,16039796,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:47:29 PM,04/09/2016 02:49:15 PM,04/09/2016 02:49:42 PM,04/09/2016 02:49:48 PM,04/09/2016 02:56:28 PM,04/09/2016 03:03:29 PM,04/09/2016 03:14:30 PM,Code 2 Transport,04/09/2016 03:43:12 PM,2600 Block of LYON ST,San Francisco,94123,B04,16,4332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7951802111491, -122.446730665283)",161001920-76 -160923925,64,16036648,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:10:44 PM,04/01/2016 11:13:17 PM,04/01/2016 11:13:53 PM,04/01/2016 11:14:11 PM,04/01/2016 11:18:10 PM,04/01/2016 11:38:32 PM,04/02/2016 12:12:18 AM,Code 2 Transport,04/02/2016 12:35:47 AM,200 Block of 9TH AVE,San Francisco,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",160923925-64 -142791979,KM10,14098184,Medical Incident,10/06/2014,10/06/2014,10/06/2014 02:16:07 PM,10/06/2014 02:16:46 PM,10/06/2014 02:17:50 PM,10/06/2014 02:20:37 PM,10/06/2014 02:26:51 PM,10/06/2014 02:55:08 PM,10/06/2014 03:13:41 PM,Code 3 Transport,10/06/2014 03:56:26 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",142791979-KM10 -160974111,85,16038661,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 08:43:31 PM,04/06/2016 08:43:31 PM,04/06/2016 08:51:29 PM,04/06/2016 08:51:37 PM,04/06/2016 09:01:31 PM,04/06/2016 09:18:50 PM,04/06/2016 09:33:03 PM,Code 2 Transport,04/06/2016 10:16:36 PM,JUNIPERO SERRA BL/MERCEDES WY,San Francisco,94127,B09,19,8446,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7268240515521, -122.47205688367)",160974111-85 -150441081,E51,15017040,Medical Incident,02/13/2015,02/13/2015,02/13/2015 09:23:52 AM,02/13/2015 09:25:45 AM,02/13/2015 09:26:24 AM,02/13/2015 09:27:50 AM,02/13/2015 09:36:23 AM,04/25/2016 01:12:16 PM,04/25/2016 01:12:16 PM,Code 2 Transport,02/13/2015 11:06:31 AM,3400 Block of SCOTT ST,San Francisco,94123,B04,16,4114,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8015791056304, -122.441531958949)",150441081-E51 -143452223,E08,14122914,Medical Incident,12/11/2014,12/11/2014,12/11/2014 02:18:54 PM,12/11/2014 02:19:48 PM,12/11/2014 02:24:03 PM,12/11/2014 02:25:27 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Code 2 Transport,12/11/2014 02:47:42 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",143452223-E08 -141471057,AM04,14050384,Medical Incident,05/27/2014,05/27/2014,05/27/2014 09:47:10 AM,05/27/2014 09:47:52 AM,05/27/2014 09:48:36 AM,05/27/2014 09:49:28 AM,05/27/2014 09:53:44 AM,05/27/2014 10:19:21 AM,05/27/2014 10:22:16 AM,Code 2 Transport,05/27/2014 10:59:39 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",141471057-AM04 -143072702,E09,14108714,Traffic Collision,11/03/2014,11/03/2014,11/03/2014 05:52:33 PM,11/03/2014 05:55:14 PM,11/03/2014 06:02:13 PM,11/03/2014 06:03:25 PM,11/03/2014 06:16:43 PM,04/25/2016 01:14:12 PM,04/25/2016 01:14:12 PM,CHP,11/03/2014 06:20:29 PM,100 Block of AVENUE C,San Francisco,94130,B10,9,2626,2,2,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",143072702-E09 -143311599,E36,14117390,Other,11/27/2014,11/27/2014,11/27/2014 02:32:10 PM,11/27/2014 02:32:32 PM,11/27/2014 02:34:28 PM,11/27/2014 02:35:15 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Fire,11/27/2014 02:37:53 PM,POLK ST/EDDY ST,San Francisco,94109,B02,3,3114,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",143311599-E36 -160993726,52,16039495,Medical Incident,04/08/2016,04/08/2016,04/08/2016 09:50:16 PM,04/08/2016 09:50:55 PM,04/08/2016 09:53:54 PM,04/08/2016 09:54:03 PM,04/08/2016 10:00:53 PM,04/08/2016 10:15:50 PM,04/08/2016 10:42:15 PM,Code 2 Transport,04/08/2016 11:04:33 PM,1500 Block of GRANT AVE,San Francisco,94133,B01,28,1265,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8012484334227, -122.407775929611)",160993726-52 -151250734,62,15047269,Medical Incident,05/05/2015,05/05/2015,05/05/2015 08:23:42 AM,05/05/2015 08:24:33 AM,05/05/2015 08:27:32 AM,05/05/2015 08:27:32 AM,05/05/2015 08:33:12 AM,05/05/2015 08:42:28 AM,05/05/2015 09:22:32 AM,Code 2 Transport,05/05/2015 09:52:32 AM,2400 Block of KEITH ST,San Francisco,94124,B10,17,6546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",151250734-62 -160940778,88,16037182,Medical Incident,04/03/2016,04/02/2016,04/03/2016 06:58:19 AM,04/03/2016 07:00:42 AM,04/03/2016 07:01:04 AM,04/03/2016 07:01:13 AM,04/03/2016 07:04:57 AM,04/03/2016 07:27:23 AM,04/03/2016 07:31:59 AM,Code 3 Transport,04/03/2016 08:22:28 AM,1400 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",160940778-88 -141582110,84,14054478,Structure Fire,06/07/2014,06/07/2014,06/07/2014 03:59:10 PM,06/07/2014 03:59:48 PM,06/07/2014 04:00:43 PM,06/07/2014 04:00:55 PM,06/07/2014 04:05:25 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 04:07:21 PM,1400 Block of ANZA ST,San Francisco,94118,B07,31,7131,3,3,3,true,Alarm,1,MEDIC,6,7,1,Inner Richmond,"(37.7790598295311, -122.463606673844)",141582110-84 -152712057,E11,15103821,Medical Incident,09/28/2015,09/28/2015,09/28/2015 02:10:32 PM,09/28/2015 02:10:39 PM,09/28/2015 02:11:00 PM,09/28/2015 02:11:26 PM,09/28/2015 02:14:39 PM,04/25/2016 01:08:05 PM,04/25/2016 01:08:05 PM,Against Medical Advice,09/28/2015 02:33:06 PM,200 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5444,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7588840549508, -122.429141172461)",152712057-E11 -142140908,KM06,14074143,Medical Incident,08/02/2014,08/02/2014,08/02/2014 08:46:05 AM,08/02/2014 08:47:31 AM,08/02/2014 08:47:46 AM,08/02/2014 08:48:45 AM,08/02/2014 08:53:43 AM,08/02/2014 08:57:45 AM,08/02/2014 09:11:07 AM,Code 2 Transport,08/02/2014 10:09:24 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",142140908-KM06 -141750272,T11,14060240,Structure Fire,06/24/2014,06/23/2014,06/24/2014 03:49:53 AM,06/24/2014 03:49:53 AM,06/24/2014 03:50:29 AM,06/24/2014 03:52:14 AM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,Code 2 Transport,06/24/2014 03:54:27 AM,300 Block of 30TH ST,San Francisco,94131,B06,11,5574,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7421427387206, -122.426687551057)",141750272-T11 -151183400,E39,15044774,Medical Incident,04/28/2015,04/28/2015,04/28/2015 08:24:58 PM,04/28/2015 08:25:47 PM,04/28/2015 08:26:00 PM,04/28/2015 08:27:28 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,04/25/2016 01:10:54 PM,Code 2 Transport,04/28/2015 08:30:41 PM,1000 Block of CAPITOL AVE,San Francisco,94112,B09,15,8464,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Oceanview/Merced/Ingleside,"(37.7209306726237, -122.459270472767)",151183400-E39 -160943632,64,16037454,Medical Incident,04/03/2016,04/03/2016,04/03/2016 10:46:08 PM,04/03/2016 10:46:08 PM,04/03/2016 10:46:47 PM,04/03/2016 10:47:22 PM,04/03/2016 10:54:36 PM,04/03/2016 11:03:35 PM,04/03/2016 11:18:40 PM,Code 2 Transport,04/03/2016 11:36:35 PM,GENEVA AV/MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",160943632-64 -143491502,E18,14124614,Medical Incident,12/15/2014,12/15/2014,12/15/2014 12:22:44 PM,12/15/2014 12:26:37 PM,12/15/2014 12:27:14 PM,12/15/2014 12:28:39 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Code 2 Transport,12/15/2014 12:29:28 PM,700 Block of 27TH AVE,San Francisco,94121,B07,14,7223,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.775274399629, -122.486466775057)",143491502-E18 -160961762,82,16038008,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:43:43 PM,04/05/2016 12:44:53 PM,04/05/2016 12:47:32 PM,04/05/2016 12:56:16 PM,04/05/2016 01:13:08 PM,04/05/2016 01:44:10 PM,04/05/2016 01:41:07 PM,Code 2 Transport,04/05/2016 02:10:07 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160961762-82 -160974318,72,16038684,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:48:31 PM,04/06/2016 09:49:40 PM,04/06/2016 09:49:58 PM,04/06/2016 09:51:10 PM,04/06/2016 10:00:17 PM,04/06/2016 10:17:56 PM,04/06/2016 10:35:37 PM,Code 2 Transport,04/06/2016 11:07:10 PM,900 Block of PACIFIC AV,San Francisco,94133,B01,2,1416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964133979376, -122.410283359191)",160974318-72 -150611867,E13,15023295,Medical Incident,03/02/2015,03/02/2015,03/02/2015 01:51:02 PM,03/02/2015 01:51:15 PM,03/02/2015 01:51:45 PM,03/02/2015 01:52:43 PM,03/02/2015 01:54:38 PM,04/25/2016 01:11:57 PM,04/25/2016 01:11:57 PM,Unable to Locate,03/02/2015 01:59:28 PM,PINE ST/BATTERY ST,San Francisco,94111,B01,13,1136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7922579471835, -122.399763355201)",150611867-E13 -150831377,E01,15031698,Medical Incident,03/24/2015,03/24/2015,03/24/2015 11:32:19 AM,03/24/2015 11:32:38 AM,03/24/2015 11:34:06 AM,03/24/2015 11:34:31 AM,03/24/2015 11:41:31 AM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Code 2 Transport,03/24/2015 12:04:20 PM,500 Block of PINE ST,San Francisco,94108,B01,13,1243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.79153985856, -122.404971889407)",150831377-E01 -153003115,RS1,15115232,Structure Fire,10/27/2015,10/27/2015,10/27/2015 07:01:51 PM,10/27/2015 07:01:51 PM,10/27/2015 07:01:59 PM,10/27/2015 07:02:56 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Fire,10/27/2015 07:06:09 PM,700 Block of GROVE ST,San Francisco,94102,B02,5,3424,3,3,3,false,Alarm,1,RESCUE SQUAD,8,2,5,Hayes Valley,"(37.7769836058087, -122.429190835712)",153003115-RS1 -142710551,E17,14094923,Medical Incident,09/28/2014,09/27/2014,09/28/2014 03:49:39 AM,09/28/2014 03:49:56 AM,09/28/2014 03:50:05 AM,09/28/2014 03:52:22 AM,09/28/2014 03:55:59 AM,04/25/2016 01:14:51 PM,04/25/2016 01:14:51 PM,Code 2 Transport,09/28/2014 04:02:44 AM,3RD ST/WILLIAMS AV,San Francisco,94124,B10,17,6536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7292784549254, -122.392624534553)",142710551-E17 -160983688,AM20,16039112,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:08:27 PM,04/07/2016 09:09:57 PM,04/07/2016 09:10:33 PM,04/07/2016 09:11:09 PM,04/07/2016 09:15:42 PM,04/07/2016 09:46:14 PM,04/07/2016 10:05:30 PM,Code 3 Transport,04/07/2016 10:50:55 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,3,3,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160983688-AM20 -143131288,E06,14110873,Medical Incident,11/09/2014,11/09/2014,11/09/2014 11:05:34 AM,11/09/2014 11:06:59 AM,11/09/2014 11:07:19 AM,11/09/2014 11:11:06 AM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Code 2 Transport,11/09/2014 11:16:45 AM,LIBERTY ST/CASTRO ST,San Francisco,94114,B06,6,5443,2,2,2,false,Non Life-threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7568869049312, -122.434621577843)",143131288-E06 -160980491,53,16038782,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:01:38 AM,04/07/2016 05:02:12 AM,04/07/2016 05:02:20 AM,04/07/2016 05:02:29 AM,04/07/2016 05:07:45 AM,04/07/2016 05:30:04 AM,04/07/2016 05:49:12 AM,Code 2 Transport,04/07/2016 06:25:50 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160980491-53 -151541855,E18,15058677,Medical Incident,06/03/2015,06/03/2015,06/03/2015 01:05:06 PM,06/03/2015 01:05:28 PM,06/03/2015 01:05:45 PM,06/03/2015 01:07:07 PM,06/03/2015 01:09:09 PM,04/25/2016 01:10:13 PM,04/25/2016 01:10:13 PM,Code 2 Transport,06/03/2015 01:17:06 PM,2000 Block of 41ST AVE,San Francisco,94116,B08,18,7634,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7485355186812, -122.499788371286)",151541855-E18 -152321901,55,15088501,Medical Incident,08/20/2015,08/20/2015,08/20/2015 01:09:36 PM,08/20/2015 01:10:07 PM,08/20/2015 01:10:34 PM,08/20/2015 01:11:06 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,04/25/2016 01:08:49 PM,No Merit,08/20/2015 01:17:29 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",152321901-55 -143143048,E15,14111358,Alarms,11/10/2014,11/10/2014,11/10/2014 07:53:56 PM,11/10/2014 07:55:17 PM,11/10/2014 07:56:03 PM,11/10/2014 07:57:50 PM,11/10/2014 08:01:17 PM,04/25/2016 01:14:04 PM,04/25/2016 01:14:04 PM,Fire,11/10/2014 08:05:42 PM,0 Block of LOS PALMOS DR,San Francisco,94127,B09,15,8246,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7350155582705, -122.447470524539)",143143048-E15 -153170561,T15,15121722,Structure Fire,11/13/2015,11/12/2015,11/13/2015 05:56:37 AM,11/13/2015 05:56:37 AM,11/13/2015 05:57:32 AM,11/13/2015 06:00:06 AM,11/13/2015 06:03:21 AM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,Fire,11/13/2015 06:09:26 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,false,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",153170561-T15 -142391266,E22,14083080,Traffic Collision,08/27/2014,08/27/2014,08/27/2014 11:05:18 AM,08/27/2014 11:06:11 AM,08/27/2014 11:06:38 AM,08/27/2014 11:08:10 AM,08/27/2014 11:09:50 AM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Patient Declined Transport,08/27/2014 11:21:11 AM,1500 Block of 18TH AVE,San Francisco,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7589496557657, -122.475662134651)",142391266-E22 -161000587,62,16039632,Medical Incident,04/09/2016,04/08/2016,04/09/2016 05:31:13 AM,04/09/2016 05:32:38 AM,04/09/2016 05:32:49 AM,04/09/2016 05:33:09 AM,04/09/2016 05:39:53 AM,04/09/2016 06:14:38 AM,04/09/2016 06:41:08 AM,Code 2 Transport,04/09/2016 07:00:01 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",161000587-62 -151531583,E07,15058256,Medical Incident,06/02/2015,06/02/2015,06/02/2015 12:07:46 PM,06/02/2015 12:08:56 PM,06/02/2015 12:09:24 PM,06/02/2015 12:10:06 PM,06/02/2015 12:12:05 PM,04/25/2016 01:10:15 PM,04/25/2016 01:10:15 PM,Code 2 Transport,06/02/2015 12:19:09 PM,3300 Block of 20TH ST,San Francisco,94110,B06,7,5447,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7588083436412, -122.415229420851)",151531583-E07 -151400394,T17,15053043,Alarms,05/20/2015,05/19/2015,05/20/2015 05:40:04 AM,05/20/2015 05:41:13 AM,05/20/2015 05:41:28 AM,05/20/2015 05:43:37 AM,05/20/2015 05:52:26 AM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Fire,05/20/2015 06:47:14 AM,200 Block of EXECUTIVE PARK BLVD,San Francisco,94134,B10,44,6275,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7111243307685, -122.39173301635)",151400394-T17 -151640543,E15,15062605,Medical Incident,06/13/2015,06/12/2015,06/13/2015 05:41:54 AM,06/13/2015 05:42:44 AM,06/13/2015 05:43:00 AM,06/13/2015 05:45:47 AM,06/13/2015 05:48:36 AM,04/25/2016 01:10:02 PM,04/25/2016 01:10:02 PM,Against Medical Advice,06/13/2015 05:58:09 AM,0 Block of FARALLONES ST,San Francisco,94112,B09,33,8324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7141452033327, -122.454118358679)",151640543-E15 -150890659,FD00A,15033861,,03/30/2015,03/30/2015,03/30/2015 08:19:59 AM,03/30/2015 08:20:12 AM,03/30/2015 08:22:20 AM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,04/25/2016 01:11:27 PM,Fire,03/30/2015 08:22:39 AM,1200 Block of 3RD ST,San Francisco,94158,B03,8,2231,3,3,3,false,,1,SUPPORT,2,3,6,Mission Bay,"(37.7724682400061, -122.389517648036)",150890659-FD00A -151932376,T13,15073704,Vehicle Fire,07/12/2015,07/12/2015,07/12/2015 04:06:47 PM,07/12/2015 04:08:00 PM,07/12/2015 04:09:12 PM,07/12/2015 04:12:29 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 04:12:49 PM,STEUART ST/HOWARD ST,San Francisco,94105,B03,35,2111,3,3,3,false,Fire,1,TRUCK,2,3,6,Financial District/South Beach,"(37.792005700577, -122.391645799833)",151932376-T13 -143631463,E02,14129840,Medical Incident,12/29/2014,12/29/2014,12/29/2014 12:21:47 PM,12/29/2014 12:22:51 PM,12/29/2014 12:24:36 PM,12/29/2014 12:25:47 PM,12/29/2014 12:29:29 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,Code 2 Transport,12/29/2014 12:40:43 PM,2600 Block of MASON ST,San Francisco,94133,B01,28,1344,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8079431013757, -122.414138079819)",143631463-E02 -152310796,E43,15088035,Medical Incident,08/19/2015,08/19/2015,08/19/2015 08:28:55 AM,08/19/2015 08:29:32 AM,08/19/2015 08:29:45 AM,08/19/2015 08:30:44 AM,08/19/2015 08:34:11 AM,04/25/2016 01:08:50 PM,04/25/2016 01:08:50 PM,Code 2 Transport,08/19/2015 08:51:50 AM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",152310796-E43 -161000313,KM06,16039595,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:18:57 AM,04/09/2016 02:18:57 AM,04/09/2016 02:19:59 AM,04/09/2016 02:20:36 AM,04/09/2016 02:31:45 AM,04/09/2016 02:48:13 AM,04/09/2016 03:05:49 AM,Code 2 Transport,04/09/2016 03:53:05 AM,LA SALLE AV/NEWCOMB AV,San Francisco,94124,B10,17,6622,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7330708214796, -122.38500153982)",161000313-KM06 -150972070,E43,15036782,Medical Incident,04/07/2015,04/07/2015,04/07/2015 02:53:19 PM,04/07/2015 02:53:19 PM,04/07/2015 03:02:15 PM,04/07/2015 03:04:04 PM,04/07/2015 03:06:36 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/07/2015 03:15:09 PM,ALEMANY BL/ONONDAGA AV,San Francisco,94112,B09,15,8274,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7216263841889, -122.438641759079)",150972070-E43 -141701207,E13,14058650,Structure Fire,06/19/2014,06/19/2014,06/19/2014 11:02:56 AM,06/19/2014 11:03:07 AM,06/19/2014 11:03:45 AM,06/19/2014 11:03:56 AM,06/19/2014 11:07:02 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Fire,06/19/2014 11:07:08 AM,SANSOME ST/PINE ST,San Francisco,94104,B01,13,1165,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7921084008601, -122.400933083929)",141701207-E13 -152632953,72,15100780,Medical Incident,09/20/2015,09/20/2015,09/20/2015 05:59:58 PM,09/20/2015 06:01:15 PM,09/20/2015 06:03:24 PM,09/20/2015 06:03:55 PM,09/20/2015 06:19:45 PM,09/20/2015 06:19:46 PM,09/20/2015 06:43:34 PM,Code 2 Transport,09/20/2015 07:31:29 PM,1600 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7358945658935, -122.391072078488)",152632953-72 -143363755,T11,14119293,Alarms,12/02/2014,12/02/2014,12/02/2014 11:15:47 PM,12/02/2014 11:16:51 PM,12/02/2014 11:17:10 PM,12/02/2014 11:19:33 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,Fire,12/02/2014 11:29:14 PM,500 Block of GRAND VIEW AVE,San Francisco,94114,B06,24,5543,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7511853616935, -122.442744571978)",143363755-T11 -160982703,54,16039015,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:19:44 PM,04/07/2016 04:21:04 PM,04/07/2016 04:27:02 PM,04/07/2016 04:27:02 PM,04/07/2016 04:29:19 PM,04/07/2016 04:43:32 PM,04/07/2016 05:01:53 PM,Code 2 Transport,04/07/2016 05:27:46 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160982703-54 -160951662,77,16037616,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:20:59 PM,04/04/2016 12:20:59 PM,04/04/2016 12:30:05 PM,04/04/2016 12:30:07 PM,04/04/2016 12:30:19 PM,04/04/2016 12:43:10 PM,04/04/2016 01:11:31 PM,Code 2 Transport,04/04/2016 01:52:14 PM,HAIGHT ST/SHRADER ST,San Francisco,94117,B07,12,4545,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7693786636844, -122.451865726136)",160951662-77 -143320751,E12,14117630,Medical Incident,11/28/2014,11/28/2014,11/28/2014 08:41:03 AM,11/28/2014 08:41:17 AM,11/28/2014 08:41:39 AM,11/28/2014 08:42:43 AM,11/28/2014 08:45:27 AM,04/25/2016 01:13:46 PM,04/25/2016 01:13:46 PM,Code 2 Transport,11/28/2014 08:51:27 AM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7696117252991, -122.450474552631)",143320751-E12 -160962050,KM04,16038037,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:49:53 PM,04/05/2016 01:50:43 PM,04/05/2016 01:51:49 PM,04/05/2016 01:53:00 PM,04/05/2016 01:56:17 PM,04/05/2016 02:44:33 PM,04/05/2016 02:44:39 PM,Code 2 Transport,04/05/2016 03:44:41 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160962050-KM04 -160981498,AM08,16038882,Medical Incident,04/07/2016,04/07/2016,04/07/2016 11:14:17 AM,04/07/2016 11:15:01 AM,04/07/2016 11:16:58 AM,04/07/2016 11:20:31 AM,04/07/2016 11:24:34 AM,04/07/2016 11:46:19 AM,04/07/2016 12:00:00 PM,Code 2 Transport,04/07/2016 12:24:35 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7674693820862, -122.419972358911)",160981498-AM08 -150422923,E12,15016457,Structure Fire,02/11/2015,02/11/2015,02/11/2015 05:48:33 PM,02/11/2015 05:48:45 PM,02/11/2015 05:49:09 PM,02/11/2015 05:49:48 PM,02/11/2015 05:51:42 PM,04/25/2016 01:12:18 PM,04/25/2016 01:12:18 PM,Fire,02/11/2015 06:07:39 PM,4800 Block of 17TH ST,San Francisco,94117,B05,12,5257,3,3,3,true,Alarm,1,ENGINE,1,5,5,Inner Sunset,"(37.7615498630091, -122.449844912444)",150422923-E12 -141090071,E33,14036675,Medical Incident,04/19/2014,04/18/2014,04/19/2014 06:32:00 AM,04/19/2014 06:34:17 AM,04/19/2014 06:36:45 AM,04/19/2014 06:38:56 AM,04/19/2014 06:46:20 AM,04/25/2016 01:17:48 PM,04/25/2016 01:17:48 PM,Patient Declined Transport,04/19/2014 07:00:12 AM,100 Block of BRIGHT ST,SAN FRANCISCO,94132,B09,33,8375,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7134077846355, -122.463558451153)",141090071-E33 -143371092,T02,14119472,Alarms,12/03/2014,12/03/2014,12/03/2014 08:47:59 AM,12/03/2014 08:49:24 AM,12/03/2014 08:51:04 AM,12/03/2014 08:54:12 AM,12/03/2014 08:55:54 AM,04/25/2016 01:13:40 PM,04/25/2016 01:13:40 PM,Fire,12/03/2014 09:00:45 AM,800 Block of STOCKTON ST,San Francisco,94108,B01,2,1326,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7936278952214, -122.407746881294)",143371092-T02 -142732363,68,14095766,Medical Incident,09/30/2014,09/30/2014,09/30/2014 03:38:46 PM,09/30/2014 03:38:46 PM,09/30/2014 03:38:59 PM,09/30/2014 03:39:34 PM,09/30/2014 03:50:24 PM,09/30/2014 04:01:57 PM,09/30/2014 04:19:54 PM,Code 2 Transport,09/30/2014 05:31:13 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",142732363-68 -141353516,E41,14046326,Structure Fire,05/15/2014,05/15/2014,05/15/2014 08:07:31 PM,05/15/2014 08:08:26 PM,05/15/2014 08:09:06 PM,05/15/2014 08:10:16 PM,05/15/2014 08:11:37 PM,04/25/2016 01:17:18 PM,04/25/2016 01:17:18 PM,Fire,05/15/2014 08:26:22 PM,1300 Block of PACIFIC AVE,San Francisco,94109,B01,41,1565,3,3,3,false,Alarm,1,ENGINE,2,1,3,Russian Hill,"(37.7954904018711, -122.417638463771)",141353516-E41 -141501416,D2,14051518,Structure Fire,05/30/2014,05/30/2014,05/30/2014 12:23:05 PM,05/30/2014 12:24:04 PM,05/30/2014 12:24:37 PM,05/30/2014 12:27:16 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,04/25/2016 01:17:03 PM,Fire,05/30/2014 12:32:19 PM,100 Block of CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,false,Alarm,1,CHIEF,9,7,1,Inner Richmond,"(37.7830571301381, -122.460668346821)",141501416-D2 -152103415,E15,15080136,Odor (Strange / Unknown),07/29/2015,07/29/2015,07/29/2015 08:07:05 PM,07/29/2015 08:09:38 PM,07/29/2015 08:10:18 PM,07/29/2015 08:11:50 PM,07/29/2015 08:14:47 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/29/2015 08:25:08 PM,400 Block of MELROSE AVE,San Francisco,94127,B09,15,8241,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7337437306271, -122.451836824085)",152103415-E15 -160961826,KM02,16038018,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:02:34 PM,04/05/2016 01:02:52 PM,04/05/2016 01:03:18 PM,04/05/2016 01:03:53 PM,04/05/2016 01:05:18 PM,04/05/2016 01:29:01 PM,04/05/2016 02:26:11 PM,Code 2 Transport,04/05/2016 02:34:48 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160961826-KM02 -142891082,E05,14101800,Medical Incident,10/16/2014,10/16/2014,10/16/2014 09:24:12 AM,10/16/2014 09:25:48 AM,10/16/2014 09:38:46 AM,10/16/2014 09:40:54 AM,10/16/2014 09:42:24 AM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Code 2 Transport,10/16/2014 09:51:13 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,2,3,3,true,Non Life-threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",142891082-E05 -141702318,E11,14058765,Medical Incident,06/19/2014,06/19/2014,06/19/2014 04:21:00 PM,06/19/2014 04:22:11 PM,06/19/2014 04:26:06 PM,06/19/2014 04:26:06 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,04/25/2016 01:16:40 PM,Code 2 Transport,06/19/2014 04:38:13 PM,900 Block of DOLORES ST,San Francisco,94110,B06,11,5513,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,8,Mission,"(37.754237849245, -122.425238261655)",141702318-E11 -153301593,E05,15127017,Medical Incident,11/26/2015,11/26/2015,11/26/2015 02:21:33 PM,11/26/2015 02:21:58 PM,11/26/2015 02:22:33 PM,11/26/2015 02:23:27 PM,11/26/2015 02:24:29 PM,04/25/2016 01:06:59 PM,04/25/2016 01:06:59 PM,Code 2 Transport,11/26/2015 02:45:11 PM,1000 Block of GOLDEN GATE AVE,San Francisco,94115,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7799336918957, -122.428614022348)",153301593-E05 -161003028,KM09,16039924,Medical Incident,04/09/2016,04/09/2016,04/09/2016 08:32:04 PM,04/09/2016 08:32:58 PM,04/09/2016 08:34:55 PM,04/09/2016 08:35:55 PM,04/09/2016 08:44:01 PM,04/09/2016 09:04:09 PM,04/09/2016 09:27:24 PM,Code 2 Transport,04/09/2016 10:10:04 PM,1500 Block of 43RD AVE,San Francisco,94122,B08,23,7652,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7577643099664, -122.502585164302)",161003028-KM09 -153471846,E06,15133706,Medical Incident,12/13/2015,12/13/2015,12/13/2015 01:30:32 PM,12/13/2015 01:31:26 PM,12/13/2015 01:31:41 PM,12/13/2015 01:32:43 PM,12/13/2015 01:34:42 PM,04/25/2016 01:06:39 PM,04/25/2016 01:06:39 PM,Code 2 Transport,12/13/2015 02:12:19 PM,200 Block of DORLAND ST,San Francisco,94114,B02,6,5421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7620293658927, -122.429546492088)",153471846-E06 -142091641,KM09,14072445,Medical Incident,07/28/2014,07/28/2014,07/28/2014 01:27:09 PM,07/28/2014 01:27:27 PM,07/28/2014 01:28:32 PM,07/28/2014 01:29:09 PM,07/28/2014 01:33:38 PM,07/28/2014 01:47:08 PM,07/28/2014 01:51:23 PM,Code 3 Transport,07/28/2014 02:31:59 PM,900 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7897956957533, -122.41539714915)",142091641-KM09 -160992310,68,16039361,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:38:01 PM,04/08/2016 03:39:56 PM,04/08/2016 03:40:14 PM,04/08/2016 03:41:38 PM,04/08/2016 03:51:25 PM,04/08/2016 04:16:56 PM,04/08/2016 04:25:21 PM,Code 2 Transport,04/08/2016 05:13:15 PM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",160992310-68 -160983494,AM12,16039091,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:59:04 PM,04/07/2016 08:02:22 PM,04/07/2016 08:02:33 PM,04/07/2016 08:03:03 PM,04/07/2016 08:13:53 PM,04/07/2016 08:43:40 PM,04/07/2016 09:07:07 PM,Code 2 Transport,04/07/2016 09:37:23 PM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160983494-AM12 -152231190,67,15084941,Medical Incident,08/11/2015,08/11/2015,08/11/2015 10:16:34 AM,08/11/2015 10:16:46 AM,08/11/2015 10:18:21 AM,08/11/2015 10:18:48 AM,08/11/2015 10:44:51 AM,08/11/2015 10:44:52 AM,08/11/2015 10:53:18 AM,Code 2 Transport,08/11/2015 11:56:36 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",152231190-67 -153030211,E01,15116064,Medical Incident,10/30/2015,10/29/2015,10/30/2015 01:42:40 AM,10/30/2015 01:44:32 AM,10/30/2015 01:44:38 AM,10/30/2015 01:46:30 AM,10/30/2015 01:48:17 AM,04/25/2016 01:07:30 PM,04/25/2016 01:07:30 PM,Code 2 Transport,10/30/2015 01:54:12 AM,400 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7797818176702, -122.404993271058)",153030211-E01 -160964036,KM07,16038207,Industrial Accidents,04/05/2016,04/05/2016,04/05/2016 10:28:26 PM,04/05/2016 10:30:40 PM,04/05/2016 10:33:18 PM,04/05/2016 10:33:45 PM,04/05/2016 10:38:34 PM,04/05/2016 11:19:06 PM,04/05/2016 11:19:12 PM,Code 3 Transport,04/06/2016 12:32:43 AM,3RD ST/FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,false,Fire,1,PRIVATE,3,3,6,South of Market,"(37.7837849329145, -122.398930333419)",160964036-KM07 -150270817,T06,15010324,Alarms,01/27/2015,01/27/2015,01/27/2015 08:40:59 AM,01/27/2015 08:42:28 AM,01/27/2015 08:43:09 AM,01/27/2015 08:46:03 AM,01/27/2015 08:47:32 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Fire,01/27/2015 09:06:45 AM,700 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,3,3,3,false,Alarm,1,TRUCK,2,5,5,Haight Ashbury,"(37.7715296499469, -122.434542909739)",150270817-T06 -152083382,E03,15079396,Medical Incident,07/27/2015,07/27/2015,07/27/2015 07:56:51 PM,07/27/2015 07:57:55 PM,07/27/2015 07:58:09 PM,07/27/2015 07:59:43 PM,07/27/2015 08:00:34 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Code 2 Transport,07/27/2015 08:02:49 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",152083382-E03 -141700596,E32,14058599,Structure Fire,06/19/2014,06/18/2014,06/19/2014 07:38:40 AM,06/19/2014 07:38:40 AM,06/19/2014 07:38:45 AM,06/19/2014 07:40:28 AM,06/19/2014 07:44:06 AM,04/25/2016 01:16:41 PM,04/25/2016 01:16:41 PM,Fire,06/19/2014 07:52:10 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",141700596-E32 -142282048,84,14079251,Traffic Collision,08/16/2014,08/16/2014,08/16/2014 02:20:09 PM,08/16/2014 02:20:48 PM,08/16/2014 02:21:10 PM,08/16/2014 02:22:33 PM,08/16/2014 02:29:47 PM,08/16/2014 02:37:44 PM,08/16/2014 02:53:19 PM,Code 3 Transport,08/16/2014 04:03:42 PM,1100 Block of JOHN F KENNEDY DR,San Francisco,94122,B07,14,7211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7699644482679, -122.484935947228)",142282048-84 -160971926,AM02,16038414,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:41:56 PM,04/06/2016 12:42:19 PM,04/06/2016 12:44:10 PM,04/06/2016 12:45:59 PM,04/06/2016 12:52:33 PM,04/06/2016 01:20:26 PM,04/06/2016 01:41:57 PM,Code 2 Transport,04/06/2016 02:12:26 PM,3200 Block of CALIFORNIA ST,San Francisco,94118,B04,10,4421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7872098592651, -122.447641497264)",160971926-AM02 -151030295,AM20,15038811,Medical Incident,04/13/2015,04/12/2015,04/13/2015 03:14:23 AM,04/13/2015 03:16:46 AM,04/13/2015 03:17:22 AM,04/13/2015 03:18:25 AM,04/13/2015 03:24:25 AM,04/13/2015 03:35:24 AM,04/13/2015 03:40:55 AM,Code 2 Transport,04/13/2015 04:10:44 AM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",151030295-AM20 -153223718,T02,15124032,Alarms,11/18/2015,11/18/2015,11/18/2015 07:51:23 PM,11/18/2015 07:52:35 PM,11/18/2015 07:52:44 PM,11/18/2015 07:54:28 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,04/25/2016 01:07:07 PM,Fire,11/18/2015 07:58:11 PM,900 Block of CHESTNUT ST,San Francisco,94109,B01,28,1613,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8030283886099, -122.419434720235)",153223718-T02 -142933493,75,14103519,Traffic Collision,10/20/2014,10/20/2014,10/20/2014 10:12:41 PM,10/20/2014 10:19:03 PM,10/20/2014 10:21:19 PM,10/20/2014 10:21:31 PM,10/20/2014 10:31:34 PM,10/20/2014 10:46:34 PM,10/20/2014 10:54:01 PM,Code 2 Transport,10/20/2014 11:09:44 PM,200 Block of 13TH ST,San Francisco,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",142933493-75 -151143567,E44,15043241,Vehicle Fire,04/24/2015,04/24/2015,04/24/2015 08:58:47 PM,04/24/2015 08:59:17 PM,04/24/2015 08:59:49 PM,04/24/2015 09:02:38 PM,04/24/2015 09:02:38 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Fire,04/24/2015 09:51:08 PM,SAN BRUNO AV/HARKNESS AV,San Francisco,94134,B10,44,6317,3,3,3,false,Fire,1,ENGINE,1,10,10,Visitacion Valley,"(37.7179063109096, -122.400131476961)",151143567-E44 -141521551,E36,14052222,Medical Incident,06/01/2014,06/01/2014,06/01/2014 01:33:49 PM,06/01/2014 01:33:49 PM,06/01/2014 01:34:47 PM,06/01/2014 01:35:56 PM,06/01/2014 01:38:55 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,No Merit,06/01/2014 01:39:51 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,A,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",141521551-E36 -153383405,E01,15130219,Medical Incident,12/04/2015,12/04/2015,12/04/2015 07:40:45 PM,12/04/2015 07:43:27 PM,12/04/2015 07:43:51 PM,12/04/2015 07:45:19 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,04/25/2016 01:06:49 PM,Code 2 Transport,12/04/2015 07:49:52 PM,558-A NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.779308053036, -122.409163648556)",153383405-E01 -152750645,E31,15105214,Medical Incident,10/02/2015,10/01/2015,10/02/2015 07:04:26 AM,10/02/2015 07:04:26 AM,10/02/2015 07:04:44 AM,10/02/2015 07:06:14 AM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,04/25/2016 01:08:01 PM,Against Medical Advice,10/02/2015 07:12:36 AM,17TH ST/CAROLINA ST,San Francisco,94107,B07,29,2425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,3,10,Potrero Hill,"(37.7648975086548, -122.400633321358)",152750645-E31 -151662404,RC1,15063543,Traffic Collision,06/15/2015,06/15/2015,06/15/2015 04:14:25 PM,06/15/2015 04:14:55 PM,06/15/2015 04:15:43 PM,06/15/2015 04:16:51 PM,06/15/2015 04:19:03 PM,04/25/2016 01:09:59 PM,04/25/2016 01:09:59 PM,Code 2 Transport,06/15/2015 04:24:22 PM,MARKET ST/NEW MONTGOMERY ST,San Francisco,94105,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",151662404-RC1 -151843705,AM20,15070389,Medical Incident,07/03/2015,07/03/2015,07/03/2015 09:44:22 PM,07/03/2015 09:47:50 PM,07/03/2015 09:48:44 PM,07/03/2015 09:49:56 PM,07/03/2015 09:56:09 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Unable to Locate,07/03/2015 09:56:39 PM,STEINER ST/FULTON ST,San Francisco,94117,B05,5,3626,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.777490365503, -122.433218739321)",151843705-AM20 -160933795,76,16037068,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:50:01 PM,04/02/2016 10:50:43 PM,04/02/2016 10:51:03 PM,04/02/2016 10:51:12 PM,04/02/2016 10:55:54 PM,04/02/2016 11:07:33 PM,04/02/2016 11:12:23 PM,Code 2 Transport,04/02/2016 11:44:32 PM,1900 Block of VAN NESS AVE,San Francisco,94109,B04,41,3153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7935141253124, -122.422789161737)",160933795-76 -142553409,77,14089188,Medical Incident,09/12/2014,09/12/2014,09/12/2014 08:54:36 PM,09/12/2014 08:55:14 PM,09/12/2014 08:55:34 PM,09/12/2014 08:55:42 PM,09/12/2014 09:07:26 PM,04/25/2016 01:15:08 PM,04/25/2016 01:15:08 PM,Patient Declined Transport,09/12/2014 09:10:05 PM,100 Block of NORIEGA ST,San Francisco,94122,B08,22,7336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7547848935573, -122.465129645607)",142553409-77 -160982866,65,16039029,Medical Incident,04/07/2016,04/07/2016,04/07/2016 05:06:15 PM,04/07/2016 05:06:35 PM,04/07/2016 05:06:59 PM,04/07/2016 05:07:09 PM,04/07/2016 05:15:34 PM,04/07/2016 05:26:12 PM,04/07/2016 05:53:58 PM,Code 2 Transport,04/07/2016 06:17:24 PM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",160982866-65 -141933302,84,14067107,Medical Incident,07/12/2014,07/12/2014,07/12/2014 10:19:51 PM,07/12/2014 10:21:37 PM,07/12/2014 10:22:50 PM,07/12/2014 10:22:57 PM,07/12/2014 10:30:32 PM,07/12/2014 10:45:22 PM,07/12/2014 11:03:00 PM,Code 2 Transport,07/12/2014 11:26:50 PM,5TH ST/MARKET ST,San Francisco,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",141933302-84 -141040135,RA48,14035047,Traffic Collision,04/14/2014,04/14/2014,04/14/2014 10:43:52 AM,04/14/2014 10:47:12 AM,04/14/2014 10:52:59 AM,04/14/2014 10:52:59 AM,04/14/2014 11:22:54 AM,04/25/2016 01:17:53 PM,04/25/2016 01:17:53 PM,Patient Declined Transport,04/14/2014 11:53:13 AM,0 Block of 5TH ST,SAN FRANCISCO,94103,B03,8,2243,2,2,2,false,Non Life-threatening,1,MEDIC,4,3,6,South of Market,"(37.7831860531538, -122.407149119811)",141040135-RA48 -143563725,E02,14127540,Medical Incident,12/22/2014,12/22/2014,12/22/2014 08:54:21 PM,12/22/2014 08:55:42 PM,12/22/2014 08:58:06 PM,12/22/2014 08:58:39 PM,12/22/2014 09:01:14 PM,04/25/2016 01:13:16 PM,04/25/2016 01:13:16 PM,Code 2 Transport,12/22/2014 09:13:14 PM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7976703321108, -122.406492704819)",143563725-E02 -160973049,87,16038536,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:42:55 PM,04/06/2016 04:42:55 PM,04/06/2016 04:43:10 PM,04/06/2016 04:43:23 PM,04/06/2016 05:18:17 PM,04/06/2016 05:34:21 PM,04/06/2016 05:56:41 PM,Code 2 Transport,04/06/2016 06:02:39 PM,2800 Block of CALIFORNIA ST,San Francisco,94115,B04,10,4233,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.78801561135, -122.441285735387)",160973049-87 -160933091,70,16037003,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:23:51 PM,04/02/2016 07:23:51 PM,04/02/2016 07:24:36 PM,04/02/2016 07:24:49 PM,04/02/2016 07:29:31 PM,04/02/2016 07:40:18 PM,04/02/2016 07:56:43 PM,Code 2 Transport,04/02/2016 08:12:28 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160933091-70 -142743018,E20,14096189,Medical Incident,10/01/2014,10/01/2014,10/01/2014 06:08:11 PM,10/01/2014 06:09:51 PM,10/01/2014 06:14:20 PM,10/01/2014 06:18:48 PM,10/01/2014 06:18:51 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Code 2 Transport,10/01/2014 06:38:21 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",142743018-E20 -142773025,72,14097498,Medical Incident,10/04/2014,10/04/2014,10/04/2014 05:46:02 PM,10/04/2014 05:46:02 PM,10/04/2014 05:46:14 PM,10/04/2014 05:46:29 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,04/25/2016 01:14:44 PM,No Merit,10/04/2014 05:50:46 PM,900 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7871735250079, -122.417641342653)",142773025-72 -142930215,73,14103199,Medical Incident,10/20/2014,10/19/2014,10/20/2014 02:17:48 AM,10/20/2014 02:18:17 AM,10/20/2014 02:18:33 AM,10/20/2014 02:18:58 AM,10/20/2014 02:25:36 AM,10/20/2014 02:42:01 AM,10/20/2014 02:50:45 AM,Code 2 Transport,10/20/2014 03:15:04 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",142930215-73 -150721090,88,15027445,Medical Incident,03/13/2015,03/13/2015,03/13/2015 09:33:41 AM,03/13/2015 09:35:26 AM,03/13/2015 09:36:51 AM,03/13/2015 09:37:00 AM,03/13/2015 09:40:54 AM,03/13/2015 10:05:47 AM,03/13/2015 10:21:50 AM,Code 2 Transport,03/13/2015 10:49:50 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",150721090-88 -150972296,E11,15036803,Medical Incident,04/07/2015,04/07/2015,04/07/2015 04:01:43 PM,04/07/2015 04:02:29 PM,04/07/2015 04:02:45 PM,04/07/2015 04:03:43 PM,04/07/2015 04:05:41 PM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Code 2 Transport,04/07/2015 04:10:37 PM,1300 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7515676527812, -122.41625553265)",150972296-E11 -142781253,T03,14097752,Medical Incident,10/05/2014,10/05/2014,10/05/2014 10:06:35 AM,10/05/2014 10:07:36 AM,10/05/2014 10:07:53 AM,10/05/2014 10:08:22 AM,10/05/2014 10:11:37 AM,04/25/2016 01:14:43 PM,04/25/2016 01:14:43 PM,Code 3 Transport,10/05/2014 10:16:39 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",142781253-T03 -153371385,62,15129614,Medical Incident,12/03/2015,12/03/2015,12/03/2015 10:42:16 AM,12/03/2015 10:46:51 AM,12/03/2015 10:50:53 AM,12/03/2015 10:50:53 AM,12/03/2015 11:00:16 AM,04/25/2016 01:06:51 PM,04/25/2016 01:06:51 PM,Unable to Locate,12/03/2015 11:01:50 AM,EDDY ST/LARKIN ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",153371385-62 -150313319,E07,15012123,Medical Incident,01/31/2015,01/31/2015,01/31/2015 08:24:22 PM,01/31/2015 08:24:22 PM,01/31/2015 08:25:14 PM,01/31/2015 08:26:08 PM,01/31/2015 08:30:07 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,No Merit,01/31/2015 08:31:20 PM,CHURCH ST/CUMBERLAND ST,San Francisco,94114,B06,11,5444,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7588904965959, -122.428126284271)",150313319-E07 -151931670,E07,15073629,Alarms,07/12/2015,07/12/2015,07/12/2015 01:00:45 PM,07/12/2015 01:01:57 PM,07/12/2015 01:02:06 PM,07/12/2015 01:03:11 PM,07/12/2015 01:05:31 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Fire,07/12/2015 01:26:32 PM,1500 Block of FOLSOM ST,San Francisco,94103,B02,36,5121,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7716700767604, -122.414328770789)",151931670-E07 -153242666,E36,15124754,Medical Incident,11/20/2015,11/20/2015,11/20/2015 04:08:37 PM,11/20/2015 04:08:49 PM,11/20/2015 04:09:43 PM,11/20/2015 04:11:03 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Unable to Locate,11/20/2015 04:17:43 PM,LEAVENWORTH ST/MCALLISTER ST,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",153242666-E36 -142232566,E41,14077477,Medical Incident,08/11/2014,08/11/2014,08/11/2014 06:01:08 PM,08/11/2014 06:03:51 PM,08/11/2014 06:05:11 PM,08/11/2014 06:07:19 PM,08/11/2014 06:11:03 PM,04/25/2016 01:15:43 PM,04/25/2016 01:15:43 PM,Unable to Locate,08/11/2014 06:12:11 PM,FRANKLIN ST/CLAY ST,San Francisco,94109,B04,38,3225,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7919653673686, -122.424340517867)",142232566-E41 -151143893,T18,15043270,Structure Fire,04/24/2015,04/24/2015,04/24/2015 10:33:46 PM,04/24/2015 10:33:52 PM,04/24/2015 10:34:09 PM,04/24/2015 10:35:58 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,04/25/2016 01:10:59 PM,Fire,04/24/2015 10:37:25 PM,21ST AV/JUDAH ST,San Francisco,94122,B08,22,7426,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",151143893-T18 -152492331,EMS10,15095166,Medical Incident,09/06/2015,09/06/2015,09/06/2015 04:12:41 PM,09/06/2015 04:13:22 PM,09/06/2015 04:14:50 PM,09/06/2015 04:15:24 PM,09/06/2015 04:20:44 PM,04/25/2016 01:08:30 PM,04/25/2016 01:08:30 PM,Code 2 Transport,09/06/2015 04:35:22 PM,300 Block of JEFFERSON ST,San Francisco,94133,B01,28,947,2,3,3,false,Potentially Life-Threatening,1,CHIEF,2,1,3,North Beach,"(37.8079624466014, -122.418277044979)",152492331-EMS10 -152920392,71,15112056,Medical Incident,10/19/2015,10/18/2015,10/19/2015 05:39:13 AM,10/19/2015 05:40:58 AM,10/19/2015 05:41:57 AM,10/19/2015 05:42:08 AM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,04/25/2016 01:07:41 PM,Other,10/19/2015 05:44:02 AM,LA PLAYA/LINCOLN WY,San Francisco,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",152920392-71 -160951088,71,16037563,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:55:41 AM,04/04/2016 09:57:50 AM,04/04/2016 09:58:01 AM,04/04/2016 09:58:09 AM,04/04/2016 10:02:26 AM,04/04/2016 10:06:59 AM,04/04/2016 10:49:00 AM,Code 2 Transport,04/04/2016 11:28:17 AM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7649777859582, -122.466445638121)",160951088-71 -150313451,E07,15012136,Medical Incident,01/31/2015,01/31/2015,01/31/2015 09:05:44 PM,01/31/2015 09:08:08 PM,01/31/2015 09:08:42 PM,01/31/2015 09:10:21 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,04/25/2016 01:12:31 PM,Code 2 Transport,01/31/2015 09:28:43 PM,600 Block of SHOTWELL ST,San Francisco,94110,B06,7,5447,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.758027155218, -122.415771731954)",150313451-E07 -152933768,HT48,15112744,Alarms,10/20/2015,10/20/2015,10/20/2015 09:12:35 PM,10/20/2015 09:13:48 PM,10/20/2015 09:17:59 PM,10/20/2015 09:17:59 PM,10/20/2015 09:19:30 PM,04/25/2016 01:07:39 PM,04/25/2016 01:07:39 PM,Fire,10/20/2015 09:21:58 PM,300 Block of AVENUE H,Treasure Isla,94130,B03,48,2931,3,3,3,false,Alarm,1,SUPPORT,2,None,6,Treasure Island,"(37.8222647104202, -122.368044134136)",152933768-HT48 -161001567,KM12,16039755,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:46:34 PM,04/09/2016 12:46:57 PM,04/09/2016 12:47:24 PM,04/09/2016 12:47:48 PM,04/09/2016 01:12:41 PM,04/09/2016 01:24:01 PM,04/09/2016 01:44:22 PM,Code 2 Transport,04/09/2016 02:11:58 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",161001567-KM12 -160942435,KM05,16037324,Medical Incident,04/03/2016,04/03/2016,04/03/2016 04:03:53 PM,04/03/2016 04:05:00 PM,04/03/2016 04:05:48 PM,04/03/2016 04:06:31 PM,04/03/2016 04:10:36 PM,04/03/2016 04:28:35 PM,04/03/2016 04:43:05 PM,Code 2 Transport,04/03/2016 05:12:03 PM,CHURCH ST/HILL ST,San Francisco,94114,B06,11,5467,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7556902206459, -122.427813059384)",160942435-KM05 -150201633,AM02,15007821,Medical Incident,01/20/2015,01/20/2015,01/20/2015 12:22:43 PM,01/20/2015 12:23:48 PM,01/20/2015 12:25:12 PM,01/20/2015 12:26:28 PM,01/20/2015 12:32:42 PM,01/20/2015 12:49:51 PM,01/20/2015 01:35:54 PM,Code 2 Transport,01/20/2015 01:36:05 PM,200 Block of PRINCETON ST,San Francisco,94134,B09,42,6147,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,9,Portola,"(37.7268798759627, -122.415393783299)",150201633-AM02 -150502594,E01,15019402,Medical Incident,02/19/2015,02/19/2015,02/19/2015 04:45:17 PM,02/19/2015 04:48:54 PM,02/19/2015 04:49:54 PM,02/19/2015 04:51:02 PM,02/19/2015 04:59:38 PM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Code 2 Transport,02/19/2015 05:16:53 PM,MISSION ST/7TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",150502594-E01 -150872788,83,15033303,Medical Incident,03/28/2015,03/28/2015,03/28/2015 05:21:11 PM,03/28/2015 05:22:30 PM,03/28/2015 05:24:10 PM,03/28/2015 05:24:20 PM,03/28/2015 05:25:57 PM,04/25/2016 01:11:28 PM,04/25/2016 01:11:28 PM,Patient Declined Transport,03/28/2015 06:07:35 PM,2600 Block of PINE ST,San Francisco,94115,B04,10,4156,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7871644491834, -122.439404798679)",150872788-83 -153350946,AM02,15128729,Medical Incident,12/01/2015,12/01/2015,12/01/2015 09:05:26 AM,12/01/2015 09:07:06 AM,12/01/2015 09:07:34 AM,12/01/2015 09:08:24 AM,12/01/2015 09:20:04 AM,12/01/2015 09:46:47 AM,12/01/2015 10:06:25 AM,Code 2 Transport,12/01/2015 10:48:12 AM,0 Block of RIZAL ST,San Francisco,94107,B03,8,2175,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.781822111031, -122.399291985556)",153350946-AM02 -160950574,64,16037529,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:21:39 AM,04/04/2016 07:24:51 AM,04/04/2016 07:25:17 AM,04/04/2016 07:25:46 AM,04/04/2016 07:29:16 AM,04/04/2016 07:48:03 AM,04/04/2016 08:07:43 AM,Code 2 Transport,04/04/2016 08:29:03 AM,0 Block of VIRGINIA AVE,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7429496460829, -122.420904705802)",160950574-64 -142611991,77,14091277,Medical Incident,09/18/2014,09/18/2014,09/18/2014 01:36:14 PM,09/18/2014 01:36:31 PM,09/18/2014 01:36:44 PM,09/18/2014 01:38:49 PM,09/18/2014 01:56:38 PM,09/18/2014 01:56:45 PM,09/18/2014 02:21:55 PM,Code 2 Transport,09/18/2014 02:52:13 PM,500 Block of AMAZON AVE,San Francisco,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7155859094303, -122.435741243059)",142611991-77 -141943389,T03,14067430,Structure Fire,07/13/2014,07/13/2014,07/13/2014 11:33:37 PM,07/13/2014 11:33:37 PM,07/13/2014 11:33:49 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,04/25/2016 01:16:14 PM,Fire,07/13/2014 11:35:04 PM,LEAVENWORTH ST/UNITED NATIONS PZ,San Francisco,94102,B02,1,1551,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7799917401811, -122.413487401339)",141943389-T03 -142850333,E11,14100279,Medical Incident,10/12/2014,10/11/2014,10/12/2014 01:49:22 AM,10/12/2014 01:50:15 AM,10/12/2014 01:51:20 AM,10/12/2014 01:52:35 AM,10/12/2014 01:55:17 AM,04/25/2016 01:14:36 PM,04/25/2016 01:14:36 PM,Code 2 Transport,10/12/2014 02:07:01 AM,100 Block of APPLETON AVE,San Francisco,94110,B06,32,5646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",142850333-E11 -152290325,63,15087251,Medical Incident,08/17/2015,08/16/2015,08/17/2015 03:33:32 AM,08/17/2015 03:35:46 AM,08/17/2015 03:36:00 AM,08/17/2015 03:36:10 AM,08/17/2015 03:42:40 AM,04/25/2016 01:08:52 PM,04/25/2016 01:08:52 PM,Medical Examiner,08/17/2015 04:26:28 AM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,E,E,3,true,Non Life-threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7854941424186, -122.408270724034)",152290325-63 -160983276,66,16039072,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:53:04 PM,04/07/2016 06:55:13 PM,04/07/2016 06:55:42 PM,04/07/2016 06:57:10 PM,04/07/2016 07:04:06 PM,04/07/2016 07:36:36 PM,04/07/2016 08:11:10 PM,Code 2 Transport,04/07/2016 08:49:45 PM,400 Block of LINDEN ST,San Francisco,94102,B02,36,3314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7761535059822, -122.425377177116)",160983276-66 -141962800,E34,14067996,Alarms,07/15/2014,07/15/2014,07/15/2014 05:22:16 PM,07/15/2014 05:23:38 PM,07/15/2014 05:24:53 PM,07/15/2014 05:26:29 PM,07/15/2014 05:29:19 PM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Fire,07/15/2014 05:42:11 PM,800 Block of 28TH AVE,San Francisco,94121,B07,14,7223,3,3,3,false,Alarm,1,ENGINE,2,7,1,Outer Richmond,"(37.7733534217521, -122.487535190044)",141962800-E34 -152401441,T13,15091379,Structure Fire,08/28/2015,08/28/2015,08/28/2015 10:30:43 AM,08/28/2015 10:31:30 AM,08/28/2015 10:31:53 AM,08/28/2015 10:32:26 AM,08/28/2015 10:34:00 AM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/28/2015 10:52:52 AM,2ND ST/MISSION ST,San Francisco,94105,B03,1,2145,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.788007159489, -122.39979802517)",152401441-T13 -141822028,B01,14063017,Alarms,07/01/2014,07/01/2014,07/01/2014 02:49:21 PM,07/01/2014 02:50:27 PM,07/01/2014 02:51:16 PM,07/01/2014 02:53:03 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,04/25/2016 01:16:27 PM,Fire,07/01/2014 02:54:30 PM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",141822028-B01 -152830480,E03,15108529,Medical Incident,10/10/2015,10/09/2015,10/10/2015 03:00:44 AM,10/10/2015 03:02:10 AM,10/10/2015 03:02:28 AM,10/10/2015 03:04:02 AM,10/10/2015 03:06:15 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Code 2 Transport,10/10/2015 03:09:10 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",152830480-E03 -153040747,E02,15116552,Medical Incident,10/31/2015,10/30/2015,10/31/2015 05:51:40 AM,10/31/2015 05:54:35 AM,10/31/2015 05:55:15 AM,10/31/2015 05:57:31 AM,10/31/2015 06:00:54 AM,04/25/2016 01:07:29 PM,04/25/2016 01:07:29 PM,Code 2 Transport,10/31/2015 06:18:49 AM,0 Block of SHEPHARD PL,San Francisco,94108,B01,2,1415,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.794144828254, -122.411035917169)",153040747-E02 -161000158,79,16039570,Traffic Collision,04/09/2016,04/08/2016,04/09/2016 12:58:14 AM,04/09/2016 01:02:20 AM,04/09/2016 01:03:13 AM,04/09/2016 01:03:37 AM,04/09/2016 01:10:36 AM,04/09/2016 01:59:33 AM,04/09/2016 02:23:45 AM,Code 2 Transport,04/09/2016 03:18:24 AM,3300 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7482858766932, -122.417044258324)",161000158-79 -160960109,AM24,16037853,Medical Incident,04/05/2016,04/04/2016,04/05/2016 12:59:42 AM,04/05/2016 01:01:21 AM,04/05/2016 01:01:49 AM,04/05/2016 01:02:24 AM,04/05/2016 01:06:38 AM,04/05/2016 01:14:31 AM,04/05/2016 01:20:00 AM,Code 2 Transport,04/05/2016 01:52:05 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160960109-AM24 -141220077,82,14041227,Medical Incident,05/02/2014,05/01/2014,05/02/2014 07:30:40 AM,05/02/2014 07:31:10 AM,05/02/2014 07:35:22 AM,05/02/2014 07:35:22 AM,05/02/2014 08:02:41 AM,05/02/2014 08:03:14 AM,05/02/2014 08:26:35 AM,Code 2 Transport,05/02/2014 08:55:48 AM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",141220077-82 -152381975,AM08,15090658,Traffic Collision,08/26/2015,08/26/2015,08/26/2015 01:59:46 PM,08/26/2015 02:03:14 PM,08/26/2015 02:33:42 PM,08/26/2015 02:35:06 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,04/25/2016 01:08:43 PM,Other,08/26/2015 02:37:58 PM,HOLLOWAY AV/19TH AV,San Francisco,94132,B08,19,8751,2,2,2,false,Non Life-threatening,1,PRIVATE,5,9,7,Lakeshore,"(37.7210572969552, -122.475221950242)",152381975-AM08 -151332306,RS1,15050482,Medical Incident,05/13/2015,05/13/2015,05/13/2015 02:27:45 PM,05/13/2015 02:30:49 PM,05/13/2015 02:31:11 PM,05/13/2015 02:32:41 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,04/25/2016 01:10:37 PM,Code 3 Transport,05/13/2015 02:35:41 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",151332306-RS1 -160933417,70,16037043,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:01:55 PM,04/02/2016 09:03:21 PM,04/02/2016 09:04:58 PM,04/02/2016 09:07:19 PM,04/02/2016 09:10:10 PM,04/02/2016 09:21:33 PM,04/02/2016 09:27:52 PM,Code 2 Transport,04/02/2016 09:55:53 PM,1200 Block of LAGUNA ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7822812615868, -122.427511862361)",160933417-70 -152090258,E19,15079473,Gas Leak (Natural and LP Gases),07/28/2015,07/27/2015,07/28/2015 02:37:06 AM,07/28/2015 02:38:04 AM,07/28/2015 02:38:19 AM,07/28/2015 02:40:45 AM,07/28/2015 02:46:46 AM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Fire,07/28/2015 03:01:59 AM,300 Block of SHIELDS ST,San Francisco,94132,B09,33,8444,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7179700694997, -122.465789243584)",152090258-E19 -151400954,E10,15053088,Medical Incident,05/20/2015,05/20/2015,05/20/2015 09:19:06 AM,05/20/2015 09:20:45 AM,05/20/2015 09:20:55 AM,05/20/2015 09:21:55 AM,05/20/2015 09:23:51 AM,04/25/2016 01:10:30 PM,04/25/2016 01:10:30 PM,Code 2 Transport,05/20/2015 09:55:34 AM,0 Block of TAMALPAIS TER,San Francisco,94118,B05,21,4564,3,3,3,true,Non Life-threatening,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7779023473383, -122.44884956665)",151400954-E10 -141742694,E29,14060129,Medical Incident,06/23/2014,06/23/2014,06/23/2014 06:35:55 PM,06/23/2014 06:36:45 PM,06/23/2014 06:37:11 PM,06/23/2014 06:37:59 PM,06/23/2014 06:39:26 PM,04/25/2016 01:16:36 PM,04/25/2016 01:16:36 PM,No Merit,06/23/2014 06:45:52 PM,SAN BRUNO AV/ALAMEDA ST,San Francisco,94103,B02,29,2352,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.7684733919631, -122.405827564891)",141742694-E29 -160932268,76,16036919,Medical Incident,04/02/2016,04/02/2016,04/02/2016 03:39:18 PM,04/02/2016 03:41:09 PM,04/02/2016 03:42:13 PM,04/02/2016 03:42:20 PM,04/02/2016 03:54:22 PM,04/02/2016 03:54:23 PM,04/02/2016 03:58:19 PM,Code 2 Transport,04/02/2016 04:31:25 PM,CALIFORNIA ST/HYDE ST,San Francisco,94109,B01,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160932268-76 -160931456,67,16036829,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:50:50 AM,04/02/2016 11:50:50 AM,04/02/2016 12:12:11 PM,04/02/2016 12:12:35 PM,04/02/2016 12:18:59 PM,04/02/2016 12:33:42 PM,04/02/2016 01:07:22 PM,Code 2 Transport,04/02/2016 01:11:46 PM,21ST ST/CAPP ST,San Francisco,94110,B06,7,5455,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7571009328923, -122.417811900579)",160931456-67 -150292562,60,15011258,Medical Incident,01/29/2015,01/29/2015,01/29/2015 05:10:44 PM,01/29/2015 05:13:12 PM,01/29/2015 05:13:27 PM,01/29/2015 05:13:41 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,04/25/2016 01:12:33 PM,Code 3 Transport,01/29/2015 05:15:07 PM,1500 Block of 11TH AVE,San Francisco,94122,B08,22,7344,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7592873104181, -122.468056486172)",150292562-60 -151300709,B07,15049256,Alarms,05/10/2015,05/09/2015,05/10/2015 07:42:57 AM,05/10/2015 07:44:34 AM,05/10/2015 07:45:03 AM,05/10/2015 07:47:07 AM,05/10/2015 07:53:21 AM,04/25/2016 01:10:41 PM,04/25/2016 01:10:41 PM,Fire,05/10/2015 07:57:05 AM,200 Block of 29TH AVE,San Francisco,94121,B07,14,7227,3,3,3,false,Alarm,1,CHIEF,3,7,2,Seacliff,"(37.7843914755854, -122.489271547892)",151300709-B07 -150671678,KM01,15025617,Medical Incident,03/08/2015,03/08/2015,03/08/2015 01:48:46 PM,03/08/2015 01:49:15 PM,03/08/2015 01:56:32 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,Patient Declined Transport,03/08/2015 02:12:31 PM,COLE ST/CARL ST,San Francisco,94117,B05,12,5144,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,5,5,Haight Ashbury,"(37.7658000298196, -122.449958130403)",150671678-KM01 -143353338,E07,14118846,Medical Incident,12/01/2014,12/01/2014,12/01/2014 07:50:51 PM,12/01/2014 07:54:15 PM,12/01/2014 07:54:32 PM,12/01/2014 07:56:07 PM,12/01/2014 07:58:55 PM,04/25/2016 01:13:42 PM,04/25/2016 01:13:42 PM,No Merit,12/01/2014 08:01:23 PM,22ND ST/CAPP ST,San Francisco,94110,B06,7,5472,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7555024984315, -122.417658993752)",143353338-E07 -153441193,E42,15132359,Medical Incident,12/10/2015,12/10/2015,12/10/2015 10:01:04 AM,12/10/2015 10:02:19 AM,12/10/2015 10:03:15 AM,12/10/2015 10:03:31 AM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,04/25/2016 01:06:43 PM,Code 2 Transport,12/10/2015 10:04:06 AM,0 Block of TUCKER AV,San Francisco,94134,B09,44,6311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7154333562497, -122.404561161911)",153441193-E42 -143171629,88,14112266,Medical Incident,11/13/2014,11/13/2014,11/13/2014 12:22:21 PM,11/13/2014 12:23:45 PM,11/13/2014 12:23:59 PM,11/13/2014 12:24:34 PM,11/13/2014 12:25:39 PM,11/13/2014 12:46:19 PM,11/13/2014 01:01:28 PM,Code 2 Transport,11/13/2014 01:12:04 PM,300 Block of CORTLAND AVE,San Francisco,94110,B06,32,5652,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7392773970379, -122.418180028379)",143171629-88 -141291143,B07,14043846,Alarms,05/09/2014,05/09/2014,05/09/2014 10:10:22 AM,05/09/2014 10:11:30 AM,05/09/2014 10:13:46 AM,05/09/2014 10:16:05 AM,05/09/2014 10:27:21 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Fire,05/09/2014 10:27:38 AM,0 Block of ZOO RD,San Francisco,94132,B08,19,8716,3,3,3,false,Alarm,1,CHIEF,2,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",141291143-B07 -160921976,88,16036464,Medical Incident,04/01/2016,04/01/2016,04/01/2016 02:14:26 PM,04/01/2016 02:15:19 PM,04/01/2016 02:15:33 PM,04/01/2016 02:16:07 PM,04/01/2016 02:20:09 PM,04/01/2016 02:37:18 PM,04/01/2016 02:40:47 PM,Code 2 Transport,04/01/2016 03:25:27 PM,ALICE B TOKLAS PL/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7854330360145, -122.419638990474)",160921976-88 -150601144,76,15022870,Medical Incident,03/01/2015,03/01/2015,03/01/2015 09:44:27 AM,03/01/2015 09:45:50 AM,03/01/2015 09:46:56 AM,03/01/2015 09:47:05 AM,03/01/2015 10:00:28 AM,03/01/2015 10:11:11 AM,03/01/2015 10:42:33 AM,Code 2 Transport,03/01/2015 11:20:15 AM,700 Block of RHODE ISLAND ST,San Francisco,94107,B02,37,2455,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7603172235791, -122.402072482082)",150601144-76 -150012586,E11,15000405,Other,01/01/2015,01/01/2015,01/01/2015 04:36:30 PM,01/01/2015 04:36:30 PM,01/01/2015 04:43:16 PM,01/01/2015 04:44:11 PM,01/01/2015 04:48:11 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Fire,01/01/2015 05:12:04 PM,FOLSOM ST/RIPLEY ST,San Francisco,94110,B06,11,5663,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7441500449109, -122.413280063816)",150012586-E11 -161010453,AM20,16040051,Medical Incident,04/10/2016,04/09/2016,04/10/2016 02:48:46 AM,04/10/2016 02:50:13 AM,04/10/2016 02:50:48 AM,04/10/2016 02:51:36 AM,04/10/2016 03:02:27 AM,04/10/2016 03:23:59 AM,04/10/2016 03:50:00 AM,Code 2 Transport,04/10/2016 04:23:18 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.807027306345, -122.413812485246)",161010453-AM20 -142923365,67,14103154,Medical Incident,10/19/2014,10/19/2014,10/19/2014 09:20:42 PM,10/19/2014 09:21:44 PM,10/19/2014 09:21:57 PM,10/19/2014 09:22:51 PM,10/19/2014 09:26:17 PM,10/19/2014 09:45:22 PM,10/19/2014 10:13:20 PM,Code 2 Transport,10/19/2014 11:27:32 PM,1300 Block of 35TH AVE,San Francisco,94122,B08,23,7564,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7618785811402, -122.494136008724)",142923365-67 -153402110,E22,15130875,Medical Incident,12/06/2015,12/06/2015,12/06/2015 02:44:09 PM,12/06/2015 02:45:44 PM,12/06/2015 02:45:56 PM,12/06/2015 02:46:14 PM,12/06/2015 02:51:03 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,Code 2 Transport,12/06/2015 03:01:57 PM,1800 Block of 30TH AVE,San Francisco,94122,B08,18,7515,2,2,2,false,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7527846529683, -122.488272720267)",153402110-E22 -141373869,E13,14047116,Medical Incident,05/17/2014,05/17/2014,05/17/2014 11:57:36 PM,05/17/2014 11:58:09 PM,05/17/2014 11:59:28 PM,05/18/2014 12:01:07 AM,05/18/2014 12:05:42 AM,04/25/2016 01:17:16 PM,04/25/2016 01:17:16 PM,Code 2 Transport,05/18/2014 12:17:13 AM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",141373869-E13 -150163495,T15,15006472,Medical Incident,01/16/2015,01/16/2015,01/16/2015 09:25:53 PM,01/16/2015 09:27:20 PM,01/16/2015 09:27:35 PM,01/16/2015 09:29:04 PM,01/16/2015 09:32:19 PM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Code 2 Transport,01/16/2015 09:40:01 PM,900 Block of EDINBURGH ST,San Francisco,94112,B09,43,6174,E,E,3,false,Potentially Life-Threatening,1,TRUCK,1,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",150163495-T15 -160940662,71,16037161,Medical Incident,04/03/2016,04/02/2016,04/03/2016 05:19:26 AM,04/03/2016 05:20:14 AM,04/03/2016 05:23:12 AM,04/03/2016 05:23:12 AM,04/03/2016 05:34:14 AM,04/03/2016 05:52:56 AM,04/03/2016 05:58:36 AM,Code 2 Transport,04/03/2016 06:31:35 AM,1800 Block of BROADWAY,San Francisco,94123,B04,38,3251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.795265168848, -122.427533073347)",160940662-71 -160931872,88,16036876,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:42:16 PM,04/02/2016 01:43:19 PM,04/02/2016 01:53:37 PM,04/02/2016 01:53:49 PM,04/02/2016 02:00:09 PM,04/02/2016 02:27:08 PM,04/02/2016 02:52:37 PM,Code 2 Transport,04/02/2016 03:06:18 PM,100 Block of ELMIRA ST,San Francisco,94124,B10,42,6364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735315131937, -122.403595624573)",160931872-88 -141803062,E05,14062385,Medical Incident,06/29/2014,06/29/2014,06/29/2014 07:28:51 PM,06/29/2014 07:29:25 PM,06/29/2014 07:54:41 PM,06/29/2014 07:55:32 PM,04/25/2016 01:16:29 PM,04/25/2016 01:16:29 PM,04/25/2016 01:16:29 PM,Code 2 Transport,06/29/2014 08:29:18 PM,2300 Block of PINE ST,San Francisco,94115,B04,38,3543,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7878999566909, -122.434481068996)",141803062-E05 -141772284,E21,14061149,Alarms,06/26/2014,06/26/2014,06/26/2014 04:18:37 PM,06/26/2014 04:19:53 PM,06/26/2014 04:20:04 PM,06/26/2014 04:21:05 PM,06/26/2014 04:23:22 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 04:30:35 PM,2800 Block of TURK BLVD,San Francisco,94118,B05,21,4565,3,3,3,false,Alarm,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7778289303266, -122.452897856893)",141772284-E21 -150692881,54,15026454,Medical Incident,03/10/2015,03/10/2015,03/10/2015 06:10:26 PM,03/10/2015 06:10:26 PM,03/10/2015 06:24:51 PM,03/10/2015 06:24:51 PM,03/10/2015 06:35:16 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Patient Declined Transport,03/10/2015 07:12:26 PM,4TH ST/MISSION ST,San Francisco,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",150692881-54 -151120492,E01,15042225,Medical Incident,04/22/2015,04/21/2015,04/22/2015 06:28:26 AM,04/22/2015 06:29:47 AM,04/22/2015 06:30:05 AM,04/22/2015 06:32:55 AM,04/22/2015 06:45:30 AM,04/25/2016 01:11:02 PM,04/25/2016 01:11:02 PM,Code 2 Transport,04/22/2015 06:45:32 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",151120492-E01 -152152359,KM04,15081892,Medical Incident,08/03/2015,08/03/2015,08/03/2015 02:54:05 PM,08/03/2015 02:55:34 PM,08/03/2015 02:56:38 PM,08/03/2015 02:57:16 PM,08/03/2015 03:29:03 PM,08/03/2015 03:32:21 PM,08/03/2015 03:41:23 PM,Code 2 Transport,08/03/2015 04:23:49 PM,1500 Block of HYDE ST,San Francisco,94109,B01,41,1565,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.7950067697844, -122.418271236608)",152152359-KM04 -142852373,E01,14100491,Medical Incident,10/12/2014,10/12/2014,10/12/2014 03:54:54 PM,10/12/2014 03:57:47 PM,10/12/2014 03:58:31 PM,10/12/2014 03:59:09 PM,10/12/2014 03:59:11 PM,04/25/2016 01:14:35 PM,04/25/2016 01:14:35 PM,Gone on Arrival,10/12/2014 04:04:16 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",142852373-E01 -142771590,T13,14097356,Structure Fire,10/04/2014,10/04/2014,10/04/2014 11:19:33 AM,10/04/2014 11:19:33 AM,10/04/2014 11:20:27 AM,10/04/2014 11:21:24 AM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,04/25/2016 01:14:45 PM,Fire,10/04/2014 11:23:11 AM,500 Block of MARKET ST,San Francisco,94105,B03,1,2144,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",142771590-T13 -143481047,E34,14124172,Alarms,12/14/2014,12/14/2014,12/14/2014 09:22:57 AM,12/14/2014 09:25:20 AM,12/14/2014 09:25:44 AM,12/14/2014 09:27:29 AM,12/14/2014 09:30:12 AM,04/25/2016 01:13:26 PM,04/25/2016 01:13:26 PM,Fire,12/14/2014 09:36:54 AM,800 Block of 48TH AVE,San Francisco,94121,B07,34,7277,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7723803993002, -122.508821436971)",143481047-E34 -151372946,72,15052160,Medical Incident,05/17/2015,05/17/2015,05/17/2015 06:19:57 PM,05/17/2015 06:19:57 PM,05/17/2015 06:20:16 PM,05/17/2015 06:20:26 PM,05/17/2015 06:23:12 PM,05/17/2015 06:37:10 PM,05/17/2015 06:58:00 PM,Code 2 Transport,05/17/2015 07:18:49 PM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",151372946-72 -160943266,AM16,16037415,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:30:59 PM,04/03/2016 08:31:25 PM,04/03/2016 08:31:48 PM,04/03/2016 08:32:52 PM,04/03/2016 08:36:52 PM,04/03/2016 08:45:42 PM,04/03/2016 09:06:41 PM,Code 2 Transport,04/03/2016 09:23:56 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",160943266-AM16 -142262636,T16,14078579,Traffic Collision,08/14/2014,08/14/2014,08/14/2014 05:30:57 PM,08/14/2014 05:30:57 PM,08/14/2014 05:34:53 PM,08/14/2014 05:34:53 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,04/25/2016 01:15:40 PM,Patient Declined Transport,08/14/2014 05:35:56 PM,1100 Block of MASON ST,San Francisco,94108,B01,2,1415,2,2,2,false,Non Life-threatening,1,TRUCK,3,1,3,Nob Hill,"(37.7942845562863, -122.411386186498)",142262636-T16 -160931079,56,16036782,Medical Incident,04/02/2016,04/02/2016,04/02/2016 09:51:18 AM,04/02/2016 09:51:50 AM,04/02/2016 09:52:06 AM,04/02/2016 09:52:43 AM,04/02/2016 10:02:25 AM,04/02/2016 10:15:45 AM,04/02/2016 10:46:31 AM,Code 2 Transport,04/02/2016 11:45:48 AM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",160931079-56 -141493167,E08,14051313,Medical Incident,05/29/2014,05/29/2014,05/29/2014 07:47:19 PM,05/29/2014 07:50:27 PM,05/29/2014 07:51:49 PM,05/29/2014 07:53:37 PM,05/29/2014 07:57:30 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Code 2 Transport,05/29/2014 08:02:40 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",141493167-E08 -160971603,89,16038385,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:31:56 AM,04/06/2016 11:32:45 AM,04/06/2016 11:33:06 AM,04/06/2016 11:33:27 AM,04/06/2016 11:41:29 AM,04/06/2016 11:54:04 AM,04/06/2016 12:13:05 PM,Code 2 Transport,04/06/2016 12:43:12 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160971603-89 -160932763,AM16,16036972,Medical Incident,04/02/2016,04/02/2016,04/02/2016 05:46:26 PM,04/02/2016 05:47:45 PM,04/02/2016 06:09:30 PM,04/02/2016 06:09:30 PM,04/02/2016 06:17:23 PM,04/02/2016 06:37:49 PM,04/02/2016 06:54:48 PM,Code 2 Transport,04/02/2016 07:33:30 PM,15TH ST/CAPP ST,San Francisco,94103,B02,7,5225,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7667394820803, -122.418734448927)",160932763-AM16 -141771580,E07,14061094,Medical Incident,06/26/2014,06/26/2014,06/26/2014 12:53:47 PM,06/26/2014 12:54:11 PM,06/26/2014 12:54:37 PM,06/26/2014 12:55:31 PM,06/26/2014 12:57:15 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Code 3 Transport,06/26/2014 01:02:51 PM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",141771580-E07 -142611938,RS1,14091274,Structure Fire,09/18/2014,09/18/2014,09/18/2014 01:19:06 PM,09/18/2014 01:19:38 PM,09/18/2014 01:19:46 PM,09/18/2014 01:20:48 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,04/25/2016 01:15:02 PM,Fire,09/18/2014 01:24:55 PM,2100 Block of FILLMORE ST,San Francisco,94115,B04,38,3544,3,3,3,false,Alarm,1,RESCUE SQUAD,8,4,2,Pacific Heights,"(37.7893629585146, -122.434001717064)",142611938-RS1 -160943683,71,16037456,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:04:05 PM,04/03/2016 11:04:22 PM,04/03/2016 11:04:44 PM,04/03/2016 11:04:50 PM,04/03/2016 11:11:12 PM,04/03/2016 11:49:43 PM,04/04/2016 12:21:11 AM,Code 2 Transport,04/04/2016 12:33:07 AM,600 Block of CLARENDON AVE,San Francisco,94131,B08,20,5367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7519950375446, -122.458952047787)",160943683-71 -160922227,AM02,16036493,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:27:08 PM,04/01/2016 03:27:08 PM,04/01/2016 03:28:45 PM,04/01/2016 03:29:26 PM,04/01/2016 03:37:50 PM,04/01/2016 03:45:29 PM,04/01/2016 04:09:33 PM,Code 2 Transport,04/01/2016 04:25:56 PM,500 Block of VALENCIA ST,San Francisco,94103,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",160922227-AM02 -160940513,79,16037144,Medical Incident,04/03/2016,04/02/2016,04/03/2016 03:24:14 AM,04/03/2016 03:24:14 AM,04/03/2016 03:25:20 AM,04/03/2016 03:25:20 AM,04/03/2016 03:31:00 AM,04/03/2016 03:48:07 AM,04/03/2016 04:04:12 AM,Code 2 Transport,04/03/2016 04:23:01 AM,300 Block of 3RD ST,San Francisco,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7834301703176, -122.398387591798)",160940513-79 -161002645,75,16039878,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:28:23 PM,04/09/2016 06:28:23 PM,04/09/2016 06:28:47 PM,04/09/2016 06:29:14 PM,04/09/2016 06:35:06 PM,04/09/2016 06:45:29 PM,04/09/2016 07:22:44 PM,Code 2 Transport,04/09/2016 07:58:05 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.769082767924, -122.413353472663)",161002645-75 -160922458,KM12,16036514,Medical Incident,04/01/2016,04/01/2016,04/01/2016 04:22:37 PM,04/01/2016 04:24:25 PM,04/01/2016 04:24:50 PM,04/01/2016 04:25:40 PM,04/01/2016 04:36:20 PM,04/01/2016 04:54:02 PM,04/01/2016 05:11:14 PM,Code 2 Transport,04/01/2016 05:41:48 PM,ULLOA ST/FOREST SIDE AV,San Francisco,94127,B08,39,8614,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7415033476138, -122.468561096869)",160922458-KM12 -143012599,E03,14106336,Medical Incident,10/28/2014,10/28/2014,10/28/2014 05:35:43 PM,10/28/2014 05:36:02 PM,10/28/2014 05:36:31 PM,10/28/2014 05:37:34 PM,10/28/2014 05:38:51 PM,04/25/2016 01:14:19 PM,04/25/2016 01:14:19 PM,Code 2 Transport,10/28/2014 05:44:17 PM,CEDAR ST/LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7865659835783, -122.418178854944)",143012599-E03 -161001500,76,16039745,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:18:40 PM,04/09/2016 12:20:39 PM,04/09/2016 12:20:54 PM,04/09/2016 12:21:01 PM,04/09/2016 12:37:16 PM,04/09/2016 12:43:13 PM,04/09/2016 12:56:32 PM,Code 2 Transport,04/09/2016 01:05:01 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.773955543025, -122.420958448413)",161001500-76 -152301118,E34,15087707,Structure Fire,08/18/2015,08/18/2015,08/18/2015 10:15:13 AM,08/18/2015 10:15:58 AM,08/18/2015 10:30:20 AM,08/18/2015 10:30:20 AM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,04/25/2016 01:08:51 PM,Fire,08/18/2015 11:35:59 AM,3600 Block of TARAVAL ST,San Francisco,94116,B08,18,7665,3,3,3,false,Fire,2,ENGINE,24,8,4,Sunset/Parkside,"(37.7416856071451, -122.505151778205)",152301118-E34 -150982518,E28,15037152,Medical Incident,04/08/2015,04/08/2015,04/08/2015 04:24:11 PM,04/08/2015 04:24:26 PM,04/08/2015 04:24:50 PM,04/08/2015 04:26:39 PM,04/08/2015 04:28:06 PM,04/25/2016 01:11:17 PM,04/25/2016 01:11:17 PM,Code 2 Transport,04/08/2015 04:34:43 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",150982518-E28 -142891000,88,14101789,Medical Incident,10/16/2014,10/16/2014,10/16/2014 09:03:15 AM,10/16/2014 09:03:15 AM,10/16/2014 09:04:11 AM,10/16/2014 09:05:36 AM,10/16/2014 09:11:13 AM,04/25/2016 01:14:32 PM,04/25/2016 01:14:32 PM,Cancelled,10/16/2014 09:12:25 AM,16TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7651831353816, -122.417486597301)",142891000-88 -142391200,E08,14083074,Medical Incident,08/27/2014,08/27/2014,08/27/2014 10:38:22 AM,08/27/2014 10:39:52 AM,08/27/2014 10:40:45 AM,08/27/2014 10:41:00 AM,08/27/2014 10:44:11 AM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,No Merit,08/27/2014 10:53:10 AM,500 Block of BRANNAN ST,San Francisco,94107,B03,8,2241,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7774865325812, -122.397691886789)",142391200-E08 -150522558,E36,15020090,Structure Fire,02/21/2015,02/21/2015,02/21/2015 04:11:43 PM,02/21/2015 04:12:55 PM,02/21/2015 04:13:21 PM,02/21/2015 04:14:20 PM,02/21/2015 04:21:19 PM,04/25/2016 01:12:07 PM,04/25/2016 01:12:07 PM,Fire,02/21/2015 08:29:45 PM,1900 Block of 15TH ST,San Francisco,94114,B02,6,5227,3,3,3,true,Fire,3,ENGINE,8,2,8,Castro/Upper Market,"(37.7661073531609, -122.428282992711)",150522558-E36 -142761792,T06,14096901,Medical Incident,10/03/2014,10/03/2014,10/03/2014 12:38:16 PM,10/03/2014 12:38:42 PM,10/03/2014 12:39:09 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Code 2 Transport,10/03/2014 12:40:58 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",142761792-T06 -150603821,E03,15023098,Medical Incident,03/01/2015,03/01/2015,03/01/2015 10:57:38 PM,03/01/2015 10:57:38 PM,03/01/2015 10:58:22 PM,03/01/2015 11:00:11 PM,03/01/2015 11:01:25 PM,04/25/2016 01:11:58 PM,04/25/2016 01:11:58 PM,Code 2 Transport,03/01/2015 11:05:02 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",150603821-E03 -142940705,E06,14103599,Alarms,10/21/2014,10/20/2014,10/21/2014 07:51:27 AM,10/21/2014 07:52:59 AM,10/21/2014 07:53:55 AM,10/21/2014 07:56:04 AM,10/21/2014 07:57:36 AM,04/25/2016 01:14:27 PM,04/25/2016 01:14:27 PM,Fire,10/21/2014 08:06:41 AM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,false,Alarm,1,ENGINE,1,2,8,Mission,"(37.7662536102334, -122.425864046062)",142940705-E06 -150593763,E03,15022734,Medical Incident,02/28/2015,02/28/2015,02/28/2015 11:02:18 PM,02/28/2015 11:05:17 PM,02/28/2015 11:09:23 PM,02/28/2015 11:10:13 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Code 2 Transport,02/28/2015 11:11:20 PM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,E,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",150593763-E03 -160974705,60,16038726,Medical Incident,04/06/2016,04/06/2016,04/06/2016 11:54:31 PM,04/06/2016 11:55:35 PM,04/06/2016 11:55:42 PM,04/06/2016 11:56:26 PM,04/07/2016 12:01:25 AM,04/07/2016 12:03:58 AM,04/07/2016 12:34:06 AM,Code 2 Transport,04/07/2016 01:18:36 AM,MCKINNON AV/3RD ST,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7363901964496, -122.390145053188)",160974705-60 -150013166,E07,15000485,Medical Incident,01/01/2015,01/01/2015,01/01/2015 07:42:39 PM,01/01/2015 07:43:59 PM,01/01/2015 07:44:34 PM,01/01/2015 07:45:24 PM,01/01/2015 07:47:13 PM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Code 2 Transport,01/01/2015 08:02:48 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",150013166-E07 -141470061,84,14050304,Medical Incident,05/27/2014,05/26/2014,05/27/2014 12:28:22 AM,05/27/2014 12:28:57 AM,05/27/2014 12:29:32 AM,05/27/2014 12:29:56 AM,05/27/2014 12:33:55 AM,05/27/2014 12:52:45 AM,05/27/2014 01:15:01 AM,Code 2 Transport,05/27/2014 01:53:26 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141470061-84 -142292297,54,14079629,Medical Incident,08/17/2014,08/17/2014,08/17/2014 03:39:20 PM,08/17/2014 03:41:28 PM,08/17/2014 03:41:51 PM,08/17/2014 03:42:13 PM,08/17/2014 03:49:14 PM,08/17/2014 04:09:53 PM,08/17/2014 04:36:13 PM,Code 2 Transport,08/17/2014 05:07:18 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",142292297-54 -160941673,64,16037254,Medical Incident,04/03/2016,04/03/2016,04/03/2016 12:18:23 PM,04/03/2016 12:18:44 PM,04/03/2016 12:19:20 PM,04/03/2016 12:22:32 PM,04/03/2016 12:28:43 PM,04/03/2016 12:42:47 PM,04/03/2016 01:08:59 PM,Code 2 Transport,04/03/2016 02:02:27 PM,CESAR CHAVEZ ST/SOUTH VAN NESS AV,San Francisco,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7482121503815, -122.41586279408)",160941673-64 -160953950,65,16037814,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:21:32 PM,04/04/2016 10:21:32 PM,04/04/2016 10:23:33 PM,04/04/2016 10:23:33 PM,04/04/2016 10:33:45 PM,04/04/2016 10:49:20 PM,04/04/2016 11:05:53 PM,Other,04/04/2016 11:56:24 PM,INDUSTRIAL ST/BARNEVELD AV,San Francisco,94124,B10,42,6381,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7387125856838, -122.404257984683)",160953950-65 -151283570,63,15048737,Medical Incident,05/08/2015,05/08/2015,05/08/2015 09:24:15 PM,05/08/2015 09:26:39 PM,05/08/2015 09:26:59 PM,05/08/2015 09:27:14 PM,05/08/2015 09:34:23 PM,05/08/2015 09:51:55 PM,05/08/2015 10:15:56 PM,Code 2 Transport,05/08/2015 10:46:47 PM,100 Block of LOUISBURG ST,San Francisco,94112,B09,15,8315,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7210924859099, -122.449637733495)",151283570-63 -151532499,AM10,15058362,Medical Incident,06/02/2015,06/02/2015,06/02/2015 04:26:54 PM,06/02/2015 04:28:47 PM,06/02/2015 04:33:20 PM,06/02/2015 04:34:39 PM,06/02/2015 04:41:31 PM,06/02/2015 04:56:37 PM,06/02/2015 05:26:38 PM,Code 2 Transport,06/02/2015 05:53:13 PM,0 Block of DOLORES ST,San Francisco,94103,B02,6,5127,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7684229704131, -122.426590385503)",151532499-AM10 -153000464,AM24,15115024,Medical Incident,10/27/2015,10/26/2015,10/27/2015 05:45:32 AM,10/27/2015 05:47:11 AM,10/27/2015 05:47:31 AM,10/27/2015 05:48:10 AM,10/27/2015 05:51:36 AM,10/27/2015 06:14:30 AM,10/27/2015 06:33:41 AM,Code 2 Transport,10/27/2015 07:08:40 AM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",153000464-AM24 -160961789,61,16038013,Medical Incident,04/05/2016,04/05/2016,04/05/2016 12:54:32 PM,04/05/2016 12:54:57 PM,04/05/2016 12:56:01 PM,04/05/2016 12:56:08 PM,04/05/2016 01:05:56 PM,04/05/2016 01:45:11 PM,04/05/2016 02:09:16 PM,Code 2 Transport,04/05/2016 02:57:54 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160961789-61 -160963439,AM16,16038150,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:13:26 PM,04/05/2016 07:13:26 PM,04/05/2016 07:14:29 PM,04/05/2016 07:15:07 PM,04/05/2016 08:01:10 PM,04/05/2016 08:01:12 PM,04/05/2016 08:20:28 PM,Code 2 Transport,04/05/2016 08:56:58 PM,400 Block of 43RD AVE,San Francisco,94121,B07,34,7265,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7804126251317, -122.504177712633)",160963439-AM16 -160960278,79,16037867,Medical Incident,04/05/2016,04/04/2016,04/05/2016 03:33:46 AM,04/05/2016 03:33:46 AM,04/05/2016 03:33:55 AM,04/05/2016 03:34:07 AM,04/05/2016 03:40:47 AM,04/05/2016 03:56:48 AM,04/05/2016 04:13:31 AM,Code 2 Transport,04/05/2016 04:34:46 AM,WEST PORTAL AV/ULLOA ST,San Francisco,94127,B08,39,8611,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7408919760876, -122.465829021907)",160960278-79 -160930688,71,16036739,Medical Incident,04/02/2016,04/01/2016,04/02/2016 07:16:00 AM,04/02/2016 07:16:54 AM,04/02/2016 07:17:15 AM,04/02/2016 07:17:20 AM,04/02/2016 07:36:33 AM,04/02/2016 07:36:36 AM,04/02/2016 08:07:40 AM,Code 2 Transport,04/02/2016 08:09:30 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",160930688-71 -141220293,E36,14041402,Structure Fire,05/02/2014,05/02/2014,05/02/2014 05:07:11 PM,05/02/2014 05:07:11 PM,05/02/2014 05:07:18 PM,05/02/2014 05:08:13 PM,05/02/2014 05:11:31 PM,04/25/2016 01:17:33 PM,04/25/2016 01:17:33 PM,Fire,05/02/2014 05:12:06 PM,10TH ST/MISSION ST,SAN FRANCISCO,94103,B02,36,2341,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7752720593077, -122.415908181241)",141220293-E36 -141980700,T09,14068466,Structure Fire,07/17/2014,07/16/2014,07/17/2014 07:35:15 AM,07/17/2014 07:35:15 AM,07/17/2014 07:35:27 AM,07/17/2014 07:37:53 AM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Fire,07/17/2014 07:39:37 AM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,3,3,3,false,Alarm,1,TRUCK,2,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",141980700-T09 -150842386,70,15032106,Medical Incident,03/25/2015,03/25/2015,03/25/2015 03:04:17 PM,03/25/2015 03:06:19 PM,03/25/2015 03:06:51 PM,03/25/2015 03:08:24 PM,03/25/2015 03:15:36 PM,03/25/2015 03:26:57 PM,03/25/2015 03:34:15 PM,Code 2 Transport,03/25/2015 04:25:00 PM,200 Block of STANYAN ST,San Francisco,94118,B07,21,4557,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7766831964988, -122.454982834151)",150842386-70 -160931769,KM12,16036858,Medical Incident,04/02/2016,04/02/2016,04/02/2016 01:15:03 PM,04/02/2016 01:16:01 PM,04/02/2016 01:16:52 PM,04/02/2016 01:18:30 PM,04/02/2016 01:26:48 PM,04/02/2016 01:47:14 PM,04/02/2016 02:05:06 PM,Code 3 Transport,04/02/2016 02:39:05 PM,300 Block of SAWYER ST,San Francisco,94134,B09,44,6263,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,10,Visitacion Valley,"(37.7137624845835, -122.414066093052)",160931769-KM12 -150270128,T05,15010254,Alarms,01/27/2015,01/26/2015,01/27/2015 01:11:47 AM,01/27/2015 01:13:01 AM,01/27/2015 01:13:12 AM,01/27/2015 01:15:02 AM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,04/25/2016 01:12:36 PM,Fire,01/27/2015 01:18:08 AM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,3,3,3,true,Alarm,1,TRUCK,3,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",150270128-T05 -143241828,61,14114734,Medical Incident,11/20/2014,11/20/2014,11/20/2014 01:59:26 PM,11/20/2014 02:01:10 PM,11/20/2014 02:02:56 PM,11/20/2014 02:03:33 PM,11/20/2014 02:12:22 PM,04/25/2016 01:13:54 PM,04/25/2016 01:13:54 PM,Patient Declined Transport,11/20/2014 02:47:57 PM,MISSION ST/11TH ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",143241828-61 -142892610,E32,14101935,Outside Fire,10/16/2014,10/16/2014,10/16/2014 04:28:23 PM,10/16/2014 04:30:06 PM,10/16/2014 04:30:27 PM,10/16/2014 04:30:42 PM,10/16/2014 04:34:03 PM,04/25/2016 01:14:31 PM,04/25/2016 01:14:31 PM,Fire,10/16/2014 04:35:25 PM,MISSION ST/SILVER AV,San Francisco,94112,B09,32,6113,3,3,3,false,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",142892610-E32 -160952647,KM11,16037693,Medical Incident,04/04/2016,04/04/2016,04/04/2016 04:15:14 PM,04/04/2016 04:16:10 PM,04/04/2016 04:16:35 PM,04/04/2016 04:17:39 PM,04/04/2016 04:20:07 PM,04/04/2016 04:53:30 PM,04/04/2016 04:53:36 PM,Code 2 Transport,04/04/2016 05:27:59 PM,500 Block of KEARNY ST,San Francisco,94104,B01,13,1244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7931109185713, -122.404447655569)",160952647-KM11 -150642726,E01,15024539,Medical Incident,03/05/2015,03/05/2015,03/05/2015 04:45:59 PM,03/05/2015 04:47:55 PM,03/05/2015 04:48:04 PM,03/05/2015 04:50:56 PM,03/05/2015 04:58:43 PM,04/25/2016 01:11:54 PM,04/25/2016 01:11:54 PM,Fire,03/05/2015 05:04:48 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",150642726-E01 -151901401,E01,15072510,Medical Incident,07/09/2015,07/09/2015,07/09/2015 11:01:58 AM,07/09/2015 11:02:42 AM,07/09/2015 11:02:57 AM,07/09/2015 11:03:51 AM,07/09/2015 11:06:48 AM,04/25/2016 01:09:34 PM,04/25/2016 01:09:34 PM,Patient Declined Transport,07/09/2015 11:08:23 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",151901401-E01 -152021148,86,15076927,Medical Incident,07/21/2015,07/21/2015,07/21/2015 09:59:48 AM,07/21/2015 10:00:22 AM,07/21/2015 10:01:26 AM,07/21/2015 10:01:34 AM,07/21/2015 10:13:48 AM,07/21/2015 10:45:50 AM,07/21/2015 11:06:04 AM,Code 2 Transport,07/21/2015 11:54:00 AM,SAN BRUNO AV/ALAMEDA ST,San Francisco,94103,B02,29,2352,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7684733919631, -122.405827564891)",152021148-86 -141040064,68,14034996,Medical Incident,04/14/2014,04/14/2014,04/14/2014 08:09:49 AM,04/14/2014 08:09:52 AM,04/14/2014 08:11:26 AM,04/14/2014 08:11:34 AM,04/14/2014 08:25:30 AM,04/14/2014 08:45:24 AM,04/14/2014 09:06:44 AM,Code 2 Transport,04/14/2014 09:44:01 AM,200 Block of CUMBERLAND ST,SAN FRANCISCO,94114,B06,11,5444,,2,2,true,Non Life-threatening,1,MEDIC,3,6,8,Castro/Upper Market,"(37.7588840549508, -122.429141172461)",141040064-68 -160954014,62,16037820,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:40:16 PM,04/04/2016 10:40:16 PM,04/04/2016 10:40:53 PM,04/04/2016 10:41:01 PM,04/04/2016 10:58:27 PM,04/04/2016 11:14:36 PM,04/04/2016 11:34:29 PM,Code 2 Transport,04/05/2016 12:01:38 AM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160954014-62 -142883351,55,14101640,Medical Incident,10/15/2014,10/15/2014,10/15/2014 07:52:34 PM,10/15/2014 07:55:18 PM,10/15/2014 07:58:38 PM,10/15/2014 07:58:50 PM,10/15/2014 08:11:22 PM,10/15/2014 08:33:18 PM,10/15/2014 08:40:06 PM,Code 2 Transport,10/15/2014 09:12:02 PM,MISSION ST/SILVER AV,San Francisco,94112,B09,32,6113,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",142883351-55 -151991298,B09,15075800,Other,07/18/2015,07/18/2015,07/18/2015 10:34:40 AM,07/18/2015 10:34:40 AM,07/18/2015 10:35:43 AM,07/18/2015 10:35:51 AM,07/18/2015 10:44:22 AM,04/25/2016 01:09:24 PM,04/25/2016 01:09:24 PM,Fire,07/18/2015 12:17:04 PM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,3,3,3,false,Alarm,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",151991298-B09 -150753706,RC2,15028962,Medical Incident,03/16/2015,03/16/2015,03/16/2015 09:49:27 PM,03/16/2015 09:50:27 PM,03/16/2015 09:51:07 PM,03/16/2015 09:52:39 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Code 2 Transport,03/16/2015 09:53:38 PM,700 Block of 27TH AVE,San Francisco,94121,B07,14,7223,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.775274399629, -122.486466775057)",150753706-RC2 -152930391,KM07,15112456,Medical Incident,10/20/2015,10/19/2015,10/20/2015 04:39:30 AM,10/20/2015 04:40:12 AM,10/20/2015 04:40:27 AM,10/20/2015 04:40:52 AM,10/20/2015 04:46:54 AM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Patient Declined Transport,10/20/2015 04:49:55 AM,DIVISADERO ST/HAYES ST,San Francisco,94117,B05,21,4145,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7749919470007, -122.437798745964)",152930391-KM07 -142470961,E09,14085970,Medical Incident,09/04/2014,09/04/2014,09/04/2014 08:58:38 AM,09/04/2014 09:01:05 AM,09/04/2014 09:01:25 AM,09/04/2014 09:02:59 AM,09/04/2014 09:07:02 AM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Code 2 Transport,09/04/2014 09:13:44 AM,24TH ST/YORK ST,San Francisco,94110,B06,9,5531,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7528524062967, -122.408188967839)",142470961-E09 -153412141,RC1,15131245,Medical Incident,12/07/2015,12/07/2015,12/07/2015 02:19:25 PM,12/07/2015 02:20:06 PM,12/07/2015 02:20:59 PM,12/07/2015 02:21:49 PM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,04/25/2016 01:06:46 PM,No Merit,12/07/2015 02:25:37 PM,AUSTIN ST/VAN NESS AV,San Francisco,94109,B04,3,3122,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,2,Western Addition,"(37.7889426233667, -122.42214537963)",153412141-RC1 -151730258,KM06,15065906,Medical Incident,06/22/2015,06/21/2015,06/22/2015 03:04:17 AM,06/22/2015 03:04:51 AM,06/22/2015 03:05:20 AM,06/22/2015 03:05:56 AM,06/22/2015 03:10:01 AM,06/22/2015 03:18:50 AM,06/22/2015 03:25:35 AM,Code 2 Transport,06/22/2015 03:55:33 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",151730258-KM06 -151130246,E14,15042556,Medical Incident,04/23/2015,04/22/2015,04/23/2015 02:15:46 AM,04/23/2015 02:19:49 AM,04/23/2015 02:20:31 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,No Merit,04/23/2015 02:23:12 AM,500 Block of 47TH AVE,San Francisco,94121,B07,34,7276,3,3,3,true,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7780500044705, -122.508299698216)",151130246-E14 -152490558,63,15094988,Medical Incident,09/06/2015,09/05/2015,09/06/2015 03:57:29 AM,09/06/2015 03:57:29 AM,09/06/2015 03:58:47 AM,09/06/2015 03:58:57 AM,09/06/2015 04:05:19 AM,09/06/2015 04:16:39 AM,09/06/2015 04:21:47 AM,Code 2 Transport,09/06/2015 04:43:39 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7774997276449, -122.410999268699)",152490558-63 -152570528,T03,15098150,Alarms,09/14/2015,09/13/2015,09/14/2015 06:32:49 AM,09/14/2015 06:34:13 AM,09/14/2015 06:34:20 AM,09/14/2015 06:35:39 AM,09/14/2015 06:37:50 AM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,No Merit,09/14/2015 06:47:44 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,3,3,3,false,Alarm,1,TRUCK,3,4,5,Japantown,"(37.7860447238816, -122.426514096484)",152570528-T03 -153421314,65,15131546,Medical Incident,12/08/2015,12/08/2015,12/08/2015 10:33:11 AM,12/08/2015 10:33:43 AM,12/08/2015 10:34:01 AM,12/08/2015 10:35:21 AM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,04/25/2016 01:06:45 PM,Gone on Arrival,12/08/2015 10:38:40 AM,600 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1244,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.792508340252, -122.405025778458)",153421314-65 -160923276,61,16036585,Medical Incident,04/01/2016,04/01/2016,04/01/2016 07:50:15 PM,04/01/2016 07:51:29 PM,04/01/2016 07:51:45 PM,04/01/2016 07:53:57 PM,04/01/2016 08:01:04 PM,04/01/2016 08:18:59 PM,04/01/2016 08:25:48 PM,Code 3 Transport,04/01/2016 09:06:38 PM,100 Block of GLADSTONE DR,San Francisco,94134,B09,32,5684,3,3,3,true,Non Life-threatening,1,MEDIC,3,9,11,Excelsior,"(37.7292316529265, -122.42196809859)",160923276-61 -141020181,54,14034435,Medical Incident,04/12/2014,04/12/2014,04/12/2014 12:31:47 PM,04/12/2014 12:33:36 PM,04/12/2014 12:35:45 PM,04/12/2014 12:35:59 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Other,04/25/2016 01:17:55 PM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",141020181-54 -151040504,E36,15039232,Medical Incident,04/14/2015,04/13/2015,04/14/2015 06:50:01 AM,04/14/2015 06:50:17 AM,04/14/2015 06:50:26 AM,04/14/2015 06:52:20 AM,04/14/2015 06:55:14 AM,04/25/2016 01:11:10 PM,04/25/2016 01:11:10 PM,Code 3 Transport,04/14/2015 07:13:03 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",151040504-E36 -150051431,63,15001818,Medical Incident,01/05/2015,01/05/2015,01/05/2015 11:37:54 AM,01/05/2015 11:39:43 AM,01/05/2015 11:41:22 AM,01/05/2015 11:41:22 AM,01/05/2015 11:44:31 AM,01/05/2015 11:58:30 AM,01/05/2015 12:19:23 PM,Code 3 Transport,01/05/2015 12:28:00 PM,FILBERT ST/GRANT AV,San Francisco,94133,B01,28,1265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8015708251232, -122.407769591357)",150051431-63 -152061687,AM08,15078486,Medical Incident,07/25/2015,07/25/2015,07/25/2015 12:32:20 PM,07/25/2015 12:34:00 PM,07/25/2015 12:34:49 PM,07/25/2015 12:35:51 PM,07/25/2015 01:07:26 PM,07/25/2015 01:07:55 PM,04/25/2016 01:09:16 PM,Code 2 Transport,07/25/2015 01:29:04 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",152061687-AM08 -150071099,E13,15002614,Medical Incident,01/07/2015,01/07/2015,01/07/2015 09:56:07 AM,01/07/2015 09:58:04 AM,01/07/2015 09:58:47 AM,01/07/2015 09:59:31 AM,01/07/2015 10:03:49 AM,04/25/2016 01:12:59 PM,04/25/2016 01:12:59 PM,Code 2 Transport,01/07/2015 10:06:00 AM,100 Block of FREMONT ST,San Francisco,94105,B03,35,2126,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7894863287687, -122.395368983007)",150071099-E13 -160974368,57,16038688,Structure Fire,04/06/2016,04/06/2016,04/06/2016 10:05:47 PM,04/06/2016 10:05:47 PM,04/06/2016 10:11:48 PM,04/06/2016 10:12:06 PM,04/06/2016 10:17:15 PM,04/06/2016 10:33:09 PM,04/06/2016 10:52:08 PM,Code 2 Transport,04/06/2016 11:19:03 PM,24TH ST/ALABAMA ST,San Francisco,94110,B06,7,5527,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7526848900219, -122.410962662832)",160974368-57 -141050026,T14,14035290,Citizen Assist / Service Call,04/15/2014,04/14/2014,04/15/2014 02:56:11 AM,04/15/2014 02:57:40 AM,04/15/2014 02:58:17 AM,04/15/2014 03:01:25 AM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Fire,04/15/2014 03:04:16 AM,200 Block of 21ST AVE,SAN FRANCISCO,94121,B07,14,7173,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.7831476181283, -122.480588567897)",141050026-T14 -150011223,E32,15000242,Medical Incident,01/01/2015,12/31/2014,01/01/2015 07:05:14 AM,01/01/2015 07:06:59 AM,01/01/2015 07:07:41 AM,01/01/2015 07:09:44 AM,01/01/2015 07:12:04 AM,04/25/2016 01:13:05 PM,04/25/2016 01:13:05 PM,Code 2 Transport,01/01/2015 07:17:35 AM,100 Block of RICHLAND AVE,San Francisco,94110,B06,32,5632,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.736063156695, -122.423797717702)",150011223-E32 -150402316,E29,15015653,Medical Incident,02/09/2015,02/09/2015,02/09/2015 03:24:13 PM,02/09/2015 03:26:21 PM,02/09/2015 03:26:39 PM,02/09/2015 03:26:54 PM,02/09/2015 03:30:21 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Code 2 Transport,02/09/2015 03:43:49 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",150402316-E29 -150402039,T08,15015627,Structure Fire,02/09/2015,02/09/2015,02/09/2015 02:13:35 PM,02/09/2015 02:14:13 PM,02/09/2015 02:14:52 PM,02/09/2015 02:15:25 PM,02/09/2015 02:23:09 PM,04/25/2016 01:12:20 PM,04/25/2016 01:12:20 PM,Fire,02/09/2015 02:48:06 PM,300 Block of 20TH ST,San Francisco,94107,B10,25,970,3,3,3,false,Alarm,1,TRUCK,9,3,10,Potrero Hill,"(37.7606927106062, -122.386101233024)",150402039-T08 -160951198,61,16037571,Medical Incident,04/04/2016,04/04/2016,04/04/2016 10:23:53 AM,04/04/2016 10:25:44 AM,04/04/2016 10:26:29 AM,04/04/2016 10:26:38 AM,04/04/2016 10:38:39 AM,04/04/2016 10:48:54 AM,04/04/2016 11:02:02 AM,Code 2 Transport,04/04/2016 11:44:36 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160951198-61 -160972745,77,16038499,Medical Incident,04/06/2016,04/06/2016,04/06/2016 03:37:41 PM,04/06/2016 03:39:00 PM,04/06/2016 03:39:15 PM,04/06/2016 03:39:23 PM,04/06/2016 03:46:58 PM,04/06/2016 03:59:07 PM,04/06/2016 04:32:00 PM,Code 2 Transport,04/06/2016 05:15:00 PM,700 Block of 35TH AVE,San Francisco,94121,B07,34,7252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7748832270511, -122.495037870754)",160972745-77 -141070291,E38,14036192,Alarms,04/17/2014,04/17/2014,04/17/2014 05:46:20 PM,04/17/2014 05:47:34 PM,04/17/2014 05:48:05 PM,04/17/2014 05:49:17 PM,04/17/2014 05:51:02 PM,04/25/2016 01:17:49 PM,04/25/2016 01:17:49 PM,Fire,04/17/2014 06:07:42 PM,1600 Block of SUTTER ST,SAN FRANCISCO,94109,B04,38,3324,3,3,3,false,Alarm,1,ENGINE,2,4,5,Japantown,"(37.78676442656, -122.427490271072)",141070291-E38 -141850585,E29,14063929,Medical Incident,07/04/2014,07/03/2014,07/04/2014 07:10:02 AM,07/04/2014 07:11:29 AM,07/04/2014 07:32:17 AM,07/04/2014 07:33:21 AM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Patient Declined Transport,07/04/2014 07:35:12 AM,2200 Block of MARIPOSA ST,San Francisco,94110,B02,29,2422,2,2,2,false,Non Life-threatening,1,ENGINE,3,2,10,Potrero Hill,"(37.7633330615748, -122.405941784687)",141850585-E29 -142322903,T15,14080695,Structure Fire,08/20/2014,08/20/2014,08/20/2014 05:48:23 PM,08/20/2014 05:50:54 PM,08/20/2014 05:51:09 PM,08/20/2014 05:52:51 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,04/25/2016 01:15:33 PM,Fire,08/20/2014 05:57:13 PM,100 Block of SICKLES AVE,San Francisco,94112,B09,33,6213,3,3,3,false,Alarm,1,TRUCK,7,9,11,Outer Mission,"(37.7093841611046, -122.453617461387)",142322903-T15 -142971353,E36,14104733,Medical Incident,10/24/2014,10/24/2014,10/24/2014 11:08:19 AM,10/24/2014 11:09:05 AM,10/24/2014 11:09:37 AM,10/24/2014 11:10:07 AM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Code 2 Transport,10/24/2014 11:23:28 AM,300 Block of OCTAVIA ST,San Francisco,94102,B02,36,3314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7755247155908, -122.424508536202)",142971353-E36 -161002772,72,16039893,Medical Incident,04/09/2016,04/09/2016,04/09/2016 07:07:10 PM,04/09/2016 07:09:10 PM,04/09/2016 07:09:21 PM,04/09/2016 07:11:05 PM,04/09/2016 07:21:31 PM,04/09/2016 07:34:52 PM,04/09/2016 07:47:49 PM,Code 2 Transport,04/09/2016 08:15:32 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,2,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",161002772-72 -160992158,88,16039344,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:02:40 PM,04/08/2016 03:03:59 PM,04/08/2016 03:05:49 PM,04/08/2016 03:05:49 PM,04/08/2016 03:12:37 PM,04/08/2016 03:18:51 PM,04/08/2016 03:49:54 PM,Code 2 Transport,04/08/2016 04:49:12 PM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",160992158-88 -141971126,83,14068172,Medical Incident,07/16/2014,07/16/2014,07/16/2014 09:40:39 AM,07/16/2014 09:41:05 AM,07/16/2014 09:41:36 AM,07/16/2014 09:42:11 AM,07/16/2014 09:59:39 AM,04/25/2016 01:16:12 PM,04/25/2016 01:16:12 PM,Medical Examiner,07/16/2014 10:17:26 AM,0 Block of CLIPPER COVE WAY,Yerba Buena,94130,B03,48,2931,3,3,3,true,Non Life-threatening,1,MEDIC,4,None,6,Treasure Island,"(37.8163207162813, -122.370727071585)",141971126-83 -151950488,66,15074298,Structure Fire,07/14/2015,07/13/2015,07/14/2015 06:41:05 AM,07/14/2015 06:42:30 AM,07/14/2015 06:42:52 AM,07/14/2015 06:44:14 AM,07/14/2015 06:51:50 AM,04/25/2016 01:09:29 PM,04/25/2016 01:09:29 PM,Fire,07/14/2015 06:52:48 AM,NEWMAN ST/BENNINGTON ST,San Francisco,94110,B06,32,5742,3,3,3,true,Alarm,1,MEDIC,8,6,9,Bernal Heights,"(37.7378049507258, -122.417990072972)",151950488-66 -151603732,EMS10,15061310,Medical Incident,06/09/2015,06/09/2015,06/09/2015 09:34:15 PM,06/09/2015 09:34:59 PM,06/09/2015 09:39:33 PM,06/09/2015 09:39:33 PM,06/09/2015 09:40:56 PM,04/25/2016 01:10:05 PM,04/25/2016 01:10:05 PM,Code 2 Transport,06/09/2015 10:02:07 PM,18TH ST/SOUTH VAN NESS AV,San Francisco,94110,B02,7,5424,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,6,9,Mission,"(37.7619675295768, -122.417178937573)",151603732-EMS10 -141453497,77,14049973,Medical Incident,05/25/2014,05/25/2014,05/25/2014 11:02:53 PM,05/25/2014 11:04:20 PM,05/25/2014 11:06:15 PM,05/25/2014 11:06:52 PM,05/25/2014 11:11:00 PM,05/25/2014 11:35:59 PM,05/25/2014 11:52:56 PM,Code 2 Transport,05/26/2014 12:25:15 AM,1300 Block of JONES ST,San Francisco,94108,B01,41,1466,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7936750957454, -122.41449049505)",141453497-77 -152133735,E41,15081306,Medical Incident,08/01/2015,08/01/2015,08/01/2015 10:47:10 PM,08/01/2015 10:47:27 PM,08/01/2015 10:48:16 PM,08/01/2015 10:50:10 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,04/25/2016 01:09:09 PM,Code 2 Transport,08/01/2015 10:51:02 PM,LEAVENWORTH ST/BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",152133735-E41 -161003287,76,16039954,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:53:37 PM,04/09/2016 09:53:37 PM,04/09/2016 09:54:07 PM,04/09/2016 09:54:16 PM,04/09/2016 10:02:41 PM,04/09/2016 10:23:02 PM,04/09/2016 10:31:44 PM,Code 2 Transport,04/09/2016 11:05:12 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",161003287-76 -142420165,E36,14084088,Medical Incident,08/30/2014,08/29/2014,08/30/2014 12:52:59 AM,08/30/2014 12:56:02 AM,08/30/2014 12:56:14 AM,08/30/2014 12:57:48 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Other,08/30/2014 01:00:32 AM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,E,E,3,true,Potentially Life-Threatening,1,ENGINE,5,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",142420165-E36 -142300688,T13,14079823,Medical Incident,08/18/2014,08/17/2014,08/18/2014 07:50:19 AM,08/18/2014 07:51:18 AM,08/18/2014 07:53:08 AM,08/18/2014 07:55:21 AM,08/18/2014 07:58:14 AM,04/25/2016 01:15:36 PM,04/25/2016 01:15:36 PM,Code 2 Transport,08/18/2014 08:11:10 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",142300688-T13 -142922395,E07,14103077,Outside Fire,10/19/2014,10/19/2014,10/19/2014 04:15:14 PM,10/19/2014 04:15:14 PM,10/19/2014 04:15:25 PM,10/19/2014 04:15:33 PM,10/19/2014 04:16:37 PM,04/25/2016 01:14:28 PM,04/25/2016 01:14:28 PM,Fire,10/19/2014 04:18:16 PM,16TH ST/DOLORES ST,San Francisco,94103,B06,6,5235,3,3,3,true,Fire,1,ENGINE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",142922395-E07 -152592471,58,15099067,Medical Incident,09/16/2015,09/16/2015,09/16/2015 04:02:11 PM,09/16/2015 04:04:05 PM,09/16/2015 04:05:48 PM,09/16/2015 04:06:04 PM,09/16/2015 04:23:32 PM,09/16/2015 04:32:12 PM,09/16/2015 04:35:28 PM,Code 2 Transport,09/16/2015 05:02:26 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",152592471-58 -142323770,88,14080754,Medical Incident,08/20/2014,08/20/2014,08/20/2014 09:52:54 PM,08/20/2014 09:56:44 PM,08/20/2014 09:57:44 PM,08/20/2014 09:59:46 PM,08/20/2014 10:03:08 PM,08/20/2014 10:13:43 PM,08/20/2014 10:22:26 PM,Code 2 Transport,08/20/2014 10:48:24 PM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",142323770-88 -142133132,E19,14073981,Medical Incident,08/01/2014,08/01/2014,08/01/2014 08:21:08 PM,08/01/2014 08:22:45 PM,08/01/2014 08:23:02 PM,08/01/2014 08:23:51 PM,08/01/2014 08:31:23 PM,04/25/2016 01:15:54 PM,04/25/2016 01:15:54 PM,Fire,08/01/2014 08:38:01 PM,1500 Block of SLOAT BLVD,San Francisco,94132,B08,19,7552,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",142133132-E19 -142423709,54,14084445,Medical Incident,08/30/2014,08/30/2014,08/30/2014 10:49:37 PM,08/30/2014 10:52:03 PM,08/30/2014 10:53:41 PM,08/30/2014 10:55:55 PM,08/30/2014 11:04:54 PM,08/30/2014 11:23:22 PM,08/30/2014 11:43:15 PM,Code 3 Transport,08/31/2014 12:27:36 AM,3700 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8375,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7116460094192, -122.465708079897)",142423709-54 -142961445,77,14104360,Medical Incident,10/23/2014,10/23/2014,10/23/2014 11:31:31 AM,10/23/2014 11:33:36 AM,10/23/2014 11:33:57 AM,10/23/2014 11:34:04 AM,10/23/2014 11:39:06 AM,10/23/2014 12:06:57 PM,10/23/2014 12:40:50 PM,Code 2 Transport,10/23/2014 01:22:15 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",142961445-77 -143452486,E18,14122950,Electrical Hazard,12/11/2014,12/11/2014,12/11/2014 03:32:33 PM,12/11/2014 03:34:14 PM,12/11/2014 03:34:25 PM,12/11/2014 03:35:40 PM,12/11/2014 03:38:15 PM,04/25/2016 01:13:30 PM,04/25/2016 01:13:30 PM,Fire,12/11/2014 03:43:53 PM,26TH AV/QUINTARA ST,San Francisco,94116,B08,18,7472,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7483145142052, -122.48358179)",143452486-E18 -151922383,58,15073351,Medical Incident,07/11/2015,07/11/2015,07/11/2015 03:57:28 PM,07/11/2015 03:58:21 PM,07/11/2015 03:59:38 PM,07/11/2015 03:59:45 PM,07/11/2015 04:02:44 PM,07/11/2015 04:13:35 PM,07/11/2015 04:27:27 PM,Code 2 Transport,07/11/2015 04:55:31 PM,LARKIN ST/EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",151922383-58 -142380646,77,14082702,Medical Incident,08/26/2014,08/25/2014,08/26/2014 07:33:50 AM,08/26/2014 07:35:32 AM,08/26/2014 08:30:12 AM,08/26/2014 08:30:23 AM,08/26/2014 08:49:41 AM,08/26/2014 08:53:29 AM,08/26/2014 09:25:46 AM,Code 2 Transport,08/26/2014 09:59:05 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",142380646-77 -153002769,E18,15115200,Medical Incident,10/27/2015,10/27/2015,10/27/2015 05:09:59 PM,10/27/2015 05:14:29 PM,10/27/2015 05:15:07 PM,10/27/2015 05:16:27 PM,10/27/2015 05:21:42 PM,04/25/2016 01:07:32 PM,04/25/2016 01:07:32 PM,Code 2 Transport,10/27/2015 05:40:01 PM,2700 Block of 35TH AVE,San Francisco,94116,B08,18,7553,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7360599451453, -122.492331865053)",153002769-E18 -160970232,60,16038262,Medical Incident,04/06/2016,04/05/2016,04/06/2016 02:29:24 AM,04/06/2016 02:30:36 AM,04/06/2016 02:30:58 AM,04/06/2016 02:31:16 AM,04/06/2016 02:53:50 AM,04/06/2016 02:53:55 AM,04/06/2016 02:56:01 AM,Against Medical Advice,04/06/2016 03:31:46 AM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",160970232-60 -142241781,52,14077739,Medical Incident,08/12/2014,08/12/2014,08/12/2014 01:37:19 PM,08/12/2014 01:40:52 PM,08/12/2014 01:41:31 PM,08/12/2014 01:41:42 PM,08/12/2014 02:08:26 PM,04/25/2016 01:15:42 PM,04/25/2016 01:15:42 PM,No Merit,08/12/2014 02:15:40 PM,700 Block of GREAT HWY,San Francisco,94121,B07,34,7316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7740125883152, -122.511077438213)",142241781-52 -151361181,RS1,15051627,Water Rescue,05/16/2015,05/16/2015,05/16/2015 10:08:02 AM,05/16/2015 10:08:50 AM,05/16/2015 10:11:02 AM,05/16/2015 10:11:13 AM,05/16/2015 10:11:38 AM,04/25/2016 01:10:34 PM,04/25/2016 01:10:34 PM,Code 3 Transport,05/16/2015 10:22:51 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,false,Fire,1,RESCUE SQUAD,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",151361181-RS1 -160973620,77,16038614,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:39:50 PM,04/06/2016 06:40:22 PM,04/06/2016 06:49:10 PM,04/06/2016 06:49:29 PM,04/06/2016 06:51:09 PM,04/06/2016 06:57:39 PM,04/06/2016 07:15:26 PM,Code 2 Transport,04/06/2016 07:28:32 PM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",160973620-77 -141422777,E09,14048784,Medical Incident,05/22/2014,05/22/2014,05/22/2014 05:57:21 PM,05/22/2014 05:57:21 PM,05/22/2014 05:58:59 PM,05/22/2014 06:00:06 PM,05/22/2014 06:02:29 PM,04/25/2016 01:17:11 PM,04/25/2016 01:17:11 PM,Other,05/22/2014 06:39:48 PM,23RD ST/SAN BRUNO AV,San Francisco,94110,B10,37,2554,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Mission,"(37.7543957935287, -122.404484367196)",141422777-E09 -150393236,E08,15015334,Medical Incident,02/08/2015,02/08/2015,02/08/2015 08:10:12 PM,02/08/2015 08:10:20 PM,02/08/2015 08:11:37 PM,02/08/2015 08:11:37 PM,02/08/2015 08:12:38 PM,04/25/2016 01:12:21 PM,04/25/2016 01:12:21 PM,Code 2 Transport,02/08/2015 08:22:14 PM,5TH ST/BRANNAN ST,San Francisco,94107,B03,8,2241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7765683820103, -122.398755450545)",150393236-E08 -160950607,61,16037533,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:39:42 AM,04/04/2016 07:39:42 AM,04/04/2016 07:40:00 AM,04/04/2016 07:40:09 AM,04/04/2016 07:43:32 AM,04/04/2016 08:38:17 AM,04/04/2016 08:31:52 AM,Code 2 Transport,04/04/2016 08:57:46 AM,16TH ST/GUERRERO ST,San Francisco,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",160950607-61 -150140418,B02,15005428,Alarms,01/14/2015,01/13/2015,01/14/2015 05:29:00 AM,01/14/2015 05:30:17 AM,01/14/2015 05:31:59 AM,01/14/2015 05:33:55 AM,01/14/2015 05:36:38 AM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Fire,01/14/2015 05:46:36 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7764944808779, -122.411359138357)",150140418-B02 -150370226,RC3,15014085,Medical Incident,02/06/2015,02/05/2015,02/06/2015 01:41:57 AM,02/06/2015 01:43:28 AM,02/06/2015 01:43:40 AM,02/06/2015 01:45:43 AM,02/06/2015 01:49:55 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Code 2 Transport,02/06/2015 01:50:12 AM,400 Block of EXCELSIOR AVE,San Francisco,94112,B09,43,6133,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7245813287149, -122.430017030485)",150370226-RC3 -152862563,71,15109925,Medical Incident,10/13/2015,10/13/2015,10/13/2015 03:17:17 PM,10/13/2015 03:17:17 PM,10/13/2015 03:18:34 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,04/25/2016 01:07:47 PM,Code 2 Transport,10/13/2015 03:18:43 PM,3RD ST/STEVENSON ST,San Francisco,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,3,6,Financial District/South Beach,"(37.7870244175155, -122.403028194221)",152862563-71 -160963478,75,16038154,Medical Incident,04/05/2016,04/05/2016,04/05/2016 07:24:17 PM,04/05/2016 07:25:04 PM,04/05/2016 07:26:55 PM,04/05/2016 07:27:00 PM,04/05/2016 07:31:49 PM,04/05/2016 08:00:31 PM,04/05/2016 08:26:16 PM,Code 2 Transport,04/05/2016 08:53:30 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160963478-75 -142463546,B09,14085841,Alarms,09/03/2014,09/03/2014,09/03/2014 08:23:34 PM,09/03/2014 08:25:14 PM,09/03/2014 08:25:33 PM,09/03/2014 08:26:28 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Fire,09/03/2014 08:45:58 PM,1800 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,false,Alarm,1,CHIEF,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",142463546-B09 -150170921,E20,15006625,Citizen Assist / Service Call,01/17/2015,01/17/2015,01/17/2015 08:10:24 AM,01/17/2015 08:12:29 AM,01/17/2015 08:12:53 AM,01/17/2015 08:15:06 AM,01/17/2015 08:17:08 AM,04/25/2016 01:12:47 PM,04/25/2016 01:12:47 PM,Fire,01/17/2015 08:19:48 AM,200 Block of MARVIEW WAY,San Francisco,94114,B05,20,5264,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7564882720613, -122.449685843694)",150170921-E20 -142683179,E01,14094065,Medical Incident,09/25/2014,09/25/2014,09/25/2014 07:51:13 PM,09/25/2014 07:51:13 PM,09/25/2014 07:51:24 PM,09/25/2014 07:52:32 PM,09/25/2014 07:54:26 PM,04/25/2016 01:14:54 PM,04/25/2016 01:14:54 PM,Code 2 Transport,09/25/2014 07:59:13 PM,MARKET ST/6TH ST,San Francisco,94102,B02,1,1454,A,E,3,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",142683179-E01 -150911490,63,15034576,Medical Incident,04/01/2015,04/01/2015,04/01/2015 11:49:39 AM,04/01/2015 11:51:25 AM,04/01/2015 11:52:10 AM,04/01/2015 11:53:31 AM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,04/25/2016 01:11:25 PM,Code 2 Transport,04/01/2015 11:55:09 AM,2500 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6337,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7294190904862, -122.404411917151)",150911490-63 -143520636,68,14125672,Medical Incident,12/18/2014,12/17/2014,12/18/2014 07:39:21 AM,12/18/2014 07:41:56 AM,12/18/2014 07:51:20 AM,12/18/2014 07:51:20 AM,12/18/2014 07:55:43 AM,12/18/2014 08:30:45 AM,12/18/2014 08:39:50 AM,Code 2 Transport,12/18/2014 09:18:23 AM,0 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5135,3,3,3,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7705968083436, -122.439656029792)",143520636-68 -150082627,KM07,15003227,Medical Incident,01/08/2015,01/08/2015,01/08/2015 04:42:01 PM,01/08/2015 04:43:22 PM,01/08/2015 04:43:59 PM,01/08/2015 04:44:29 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,04/25/2016 01:12:57 PM,Code 3 Transport,01/08/2015 04:48:12 PM,1700 Block of 18TH AVE,San Francisco,94122,B08,40,7422,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,8,7,Inner Sunset,"(37.755224049837, -122.475402242227)",150082627-KM07 -150021187,E34,15000689,Electrical Hazard,01/02/2015,01/02/2015,01/02/2015 11:39:22 AM,01/02/2015 11:39:22 AM,01/02/2015 11:39:22 AM,01/02/2015 11:39:22 AM,01/02/2015 11:39:22 AM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Fire,01/02/2015 11:58:53 AM,800 Block of 46TH AVE,San Francisco,94121,B07,34,7277,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7724779182768, -122.506684203589)",150021187-E34 -160943800,62,16037468,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:48:29 PM,04/03/2016 11:49:55 PM,04/03/2016 11:50:18 PM,04/03/2016 11:50:23 PM,04/03/2016 11:55:19 PM,04/04/2016 12:11:03 AM,04/04/2016 12:18:29 AM,Code 2 Transport,04/04/2016 01:00:20 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160943800-62 -151884064,E12,15071986,Medical Incident,07/07/2015,07/07/2015,07/07/2015 09:45:46 PM,07/07/2015 09:46:47 PM,07/07/2015 09:47:43 PM,07/07/2015 09:49:05 PM,07/07/2015 09:53:02 PM,04/25/2016 01:09:35 PM,04/25/2016 01:09:35 PM,Code 2 Transport,07/07/2015 10:03:14 PM,2700 Block of MCALLISTER ST,San Francisco,94118,B07,21,4556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Lone Mountain/USF,"(37.7753072503421, -122.45744329965)",151884064-E12 -161000670,62,16039643,Traffic Collision,04/09/2016,04/08/2016,04/09/2016 06:57:22 AM,04/09/2016 06:59:21 AM,04/09/2016 07:01:55 AM,04/09/2016 07:02:29 AM,04/09/2016 07:12:27 AM,04/09/2016 07:27:22 AM,04/09/2016 07:35:21 AM,Code 2 Transport,04/09/2016 08:06:01 AM,200 Block of AVENUE C,San Francisco,94130,B09,32,5681,2,2,2,true,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8192257500347, -122.370976475899)",161000670-62 -143142566,77,14111319,Medical Incident,11/10/2014,11/10/2014,11/10/2014 05:24:36 PM,11/10/2014 05:27:14 PM,11/10/2014 05:34:21 PM,11/10/2014 05:34:55 PM,11/10/2014 05:41:07 PM,11/10/2014 06:00:03 PM,11/10/2014 06:40:46 PM,Code 2 Transport,11/10/2014 07:04:52 PM,400 Block of MANSELL ST,San Francisco,94134,B10,44,626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7204133129314, -122.406069423364)",143142566-77 -151393198,78,15052919,Medical Incident,05/19/2015,05/19/2015,05/19/2015 07:38:43 PM,05/19/2015 07:40:28 PM,05/19/2015 07:41:00 PM,05/19/2015 07:41:31 PM,05/19/2015 07:47:26 PM,05/19/2015 07:56:51 PM,05/19/2015 08:00:52 PM,Code 3 Transport,05/19/2015 08:46:45 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",151393198-78 -143310911,AM02,14117323,Medical Incident,11/27/2014,11/27/2014,11/27/2014 09:56:25 AM,11/27/2014 09:57:35 AM,11/27/2014 09:59:17 AM,11/27/2014 10:00:06 AM,11/27/2014 10:05:02 AM,11/27/2014 10:23:02 AM,11/27/2014 10:39:40 AM,Code 2 Transport,11/27/2014 11:01:43 AM,300 Block of CHURCH ST,San Francisco,94114,B02,6,5234,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7653229426081, -122.428673143078)",143310911-AM02 -142343266,RC2,14081456,Medical Incident,08/22/2014,08/22/2014,08/22/2014 07:56:41 PM,08/22/2014 07:58:52 PM,08/22/2014 09:36:33 PM,08/22/2014 09:36:33 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,04/25/2016 01:15:31 PM,Code 2 Transport,08/22/2014 09:37:50 PM,300 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7907285143037, -122.403840372288)",142343266-RC2 -160921588,KM02,16036431,Medical Incident,04/01/2016,04/01/2016,04/01/2016 12:30:55 PM,04/01/2016 12:34:14 PM,04/01/2016 12:35:34 PM,04/01/2016 12:36:01 PM,04/01/2016 12:43:30 PM,04/01/2016 01:10:44 PM,04/01/2016 01:32:03 PM,Code 2 Transport,04/01/2016 02:27:16 PM,100 Block of WESTGATE DR,San Francisco,94127,B09,15,8533,2,3,3,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7292259668238, -122.4650272665)",160921588-KM02 -143633617,65,14130018,Medical Incident,12/29/2014,12/29/2014,12/29/2014 11:16:45 PM,12/29/2014 11:20:16 PM,12/29/2014 11:20:42 PM,12/29/2014 11:20:54 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,04/25/2016 01:13:09 PM,No Merit,12/29/2014 11:30:40 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",143633617-65 -160970356,78,16038274,Medical Incident,04/06/2016,04/05/2016,04/06/2016 04:15:04 AM,04/06/2016 04:15:04 AM,04/06/2016 04:16:26 AM,04/06/2016 04:16:42 AM,04/06/2016 04:24:38 AM,04/06/2016 04:31:59 AM,04/06/2016 05:23:42 AM,Code 2 Transport,04/06/2016 05:50:38 AM,0 Block of LANDERS ST,San Francisco,94114,B02,6,5227,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.766987109811, -122.427857167521)",160970356-78 -150490017,E03,15018806,Administrative,02/18/2015,02/17/2015,02/18/2015 12:07:51 AM,02/18/2015 12:07:56 AM,02/18/2015 12:08:11 AM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,04/25/2016 01:12:11 PM,Fire,02/18/2015 12:08:35 AM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",150490017-E03 -150310242,T17,15011821,Structure Fire,01/31/2015,01/30/2015,01/31/2015 01:37:20 AM,01/31/2015 01:38:49 AM,01/31/2015 01:39:13 AM,01/31/2015 01:40:19 AM,01/31/2015 01:46:12 AM,04/25/2016 01:12:32 PM,04/25/2016 01:12:32 PM,Fire,01/31/2015 01:53:47 AM,200 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,false,Alarm,1,TRUCK,6,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",150310242-T17 -150253109,E06,15009784,Alarms,01/25/2015,01/25/2015,01/25/2015 08:10:15 PM,01/25/2015 08:12:16 PM,01/25/2015 08:12:29 PM,01/25/2015 08:13:35 PM,01/25/2015 08:15:16 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,Fire,01/25/2015 08:30:54 PM,3700 Block of 17TH ST,San Francisco,94114,B05,6,5252,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7627665130308, -122.429612363376)",150253109-E06 -160972205,52,16038445,Medical Incident,04/06/2016,04/06/2016,04/06/2016 01:46:50 PM,04/06/2016 01:46:50 PM,04/06/2016 01:47:12 PM,04/06/2016 01:47:21 PM,04/06/2016 01:51:36 PM,04/06/2016 02:04:04 PM,04/06/2016 02:30:06 PM,Code 2 Transport,04/06/2016 02:57:50 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160972205-52 -151470600,B09,15055835,Structure Fire,05/27/2015,05/26/2015,05/27/2015 07:22:28 AM,05/27/2015 07:22:28 AM,05/27/2015 07:22:33 AM,05/27/2015 07:23:26 AM,05/27/2015 07:28:43 AM,04/25/2016 01:10:22 PM,04/25/2016 01:10:22 PM,Fire,05/27/2015 07:34:32 AM,800 Block of PRAGUE ST,San Francisco,94112,B09,43,622,3,3,3,false,Alarm,1,CHIEF,2,9,11,Excelsior,"(37.7104309664976, -122.434220514636)",151470600-B09 -151981798,E21,15075452,Medical Incident,07/17/2015,07/17/2015,07/17/2015 01:06:41 PM,07/17/2015 01:06:48 PM,07/17/2015 01:08:29 PM,07/17/2015 01:09:49 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,04/25/2016 01:09:25 PM,Cancelled,07/17/2015 01:10:01 PM,500 Block of DIVISADERO ST,San Francisco,94117,B05,21,4145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7745125726593, -122.437820869473)",151981798-E21 -141981453,E17,14068535,Medical Incident,07/17/2014,07/17/2014,07/17/2014 11:58:38 AM,07/17/2014 11:59:15 AM,07/17/2014 11:59:51 AM,07/17/2014 12:01:29 PM,07/17/2014 12:03:58 PM,04/25/2016 01:16:11 PM,04/25/2016 01:16:11 PM,Code 2 Transport,07/17/2014 12:13:43 PM,1400 Block of MENDELL ST,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7342500709949, -122.3905725228)",141981453-E17 -143264148,E03,14115717,Medical Incident,11/22/2014,11/22/2014,11/22/2014 11:56:46 PM,11/22/2014 11:56:46 PM,11/22/2014 11:56:54 PM,11/22/2014 11:58:26 PM,11/23/2014 12:01:28 AM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Code 3 Transport,11/23/2014 12:09:32 AM,JONES ST/TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",143264148-E03 -151150626,AM02,15043378,Medical Incident,04/25/2015,04/24/2015,04/25/2015 06:52:23 AM,04/25/2015 06:53:05 AM,04/25/2015 06:53:19 AM,04/25/2015 06:54:10 AM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,04/25/2016 01:10:58 PM,Other,04/25/2015 06:55:49 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",151150626-AM02 -160951984,71,16037651,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:35:17 PM,04/04/2016 01:37:34 PM,04/04/2016 01:43:22 PM,04/04/2016 01:43:31 PM,04/04/2016 01:53:53 PM,04/04/2016 01:59:49 PM,04/04/2016 02:12:19 PM,Code 2 Transport,04/04/2016 02:59:31 PM,3500 Block of 17TH ST,San Francisco,94110,B02,6,5251,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7631541226795, -122.425099106789)",160951984-71 -161003446,77,16039975,Medical Incident,04/09/2016,04/09/2016,04/09/2016 10:34:19 PM,04/09/2016 10:34:19 PM,04/09/2016 10:37:18 PM,04/09/2016 10:37:35 PM,04/09/2016 10:48:04 PM,04/09/2016 10:54:30 PM,04/09/2016 11:09:57 PM,Code 2 Transport,04/09/2016 11:33:12 PM,ULLOA ST/KNOCKASH HL,San Francisco,94127,B08,39,8576,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7418772771925, -122.45662726884)",161003446-77 -142982793,RS2,14105289,Structure Fire,10/25/2014,10/25/2014,10/25/2014 05:44:45 PM,10/25/2014 05:45:57 PM,10/25/2014 05:46:20 PM,10/25/2014 05:47:20 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,04/25/2016 01:14:22 PM,Fire,10/25/2014 05:51:37 PM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Alarm,1,RESCUE SQUAD,9,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",142982793-RS2 -160963241,KM02,16038134,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:20:12 PM,04/05/2016 06:21:21 PM,04/05/2016 06:22:05 PM,04/05/2016 06:23:08 PM,04/05/2016 06:32:04 PM,04/05/2016 06:40:53 PM,04/05/2016 06:49:52 PM,Code 3 Transport,04/05/2016 07:26:24 PM,0 Block of FERNWOOD DR,San Francisco,94127,B09,39,8541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7336600028559, -122.461166385784)",160963241-KM02 -160960468,82,16037895,Medical Incident,04/05/2016,04/04/2016,04/05/2016 06:44:23 AM,04/05/2016 06:53:57 AM,04/05/2016 06:54:07 AM,04/05/2016 06:54:59 AM,04/05/2016 07:01:17 AM,04/05/2016 07:04:54 AM,04/05/2016 07:38:35 AM,Code 2 Transport,04/05/2016 07:38:42 AM,TURK ST/HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",160960468-82 -160922311,76,16036501,Medical Incident,04/01/2016,04/01/2016,04/01/2016 03:44:01 PM,04/01/2016 03:44:01 PM,04/01/2016 03:46:16 PM,04/01/2016 03:46:21 PM,04/01/2016 03:51:55 PM,04/01/2016 04:11:33 PM,04/01/2016 04:17:16 PM,Code 2 Transport,04/01/2016 04:40:42 PM,100 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",160922311-76 -152262516,E14,15086199,Medical Incident,08/14/2015,08/14/2015,08/14/2015 04:10:42 PM,08/14/2015 04:11:45 PM,08/14/2015 04:11:56 PM,08/14/2015 04:13:16 PM,08/14/2015 04:16:45 PM,04/25/2016 01:08:55 PM,04/25/2016 01:08:55 PM,Code 2 Transport,08/14/2015 04:31:51 PM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7728702084518, -122.498112678583)",152262516-E14 -151272723,E16,15048234,Gas Leak (Natural and LP Gases),05/07/2015,05/07/2015,05/07/2015 04:41:34 PM,05/07/2015 04:43:16 PM,05/07/2015 04:43:23 PM,05/07/2015 04:45:15 PM,05/07/2015 04:47:25 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Fire,05/07/2015 04:49:08 PM,FRANKLIN ST/CHESTNUT ST,San Francisco,94123,B04,16,3235,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8020718699266, -122.426377344364)",151272723-E16 -161002702,53,16039884,Medical Incident,04/09/2016,04/09/2016,04/09/2016 06:46:56 PM,04/09/2016 06:48:33 PM,04/09/2016 06:48:47 PM,04/09/2016 06:48:56 PM,04/09/2016 07:00:47 PM,04/09/2016 07:29:28 PM,04/09/2016 07:53:28 PM,Code 2 Transport,04/09/2016 08:03:49 PM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",161002702-53 -152311810,75,15088121,Medical Incident,08/19/2015,08/19/2015,08/19/2015 12:58:34 PM,08/19/2015 01:00:09 PM,08/19/2015 01:00:43 PM,08/19/2015 01:01:02 PM,08/19/2015 01:08:21 PM,08/19/2015 01:19:21 PM,08/19/2015 01:25:28 PM,Code 3 Transport,08/19/2015 02:18:01 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7205476379806, -122.437805967469)",152311810-75 -141273796,55,14043288,Structure Fire,05/07/2014,05/07/2014,05/07/2014 08:08:53 PM,05/07/2014 08:11:30 PM,05/07/2014 08:12:00 PM,05/07/2014 08:13:14 PM,05/07/2014 08:22:15 PM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Fire,05/07/2014 08:25:32 PM,500 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,3,3,3,false,Alarm,1,MEDIC,6,2,5,Western Addition,"(37.7805376097711, -122.420485127189)",141273796-55 -160992333,86,16039363,Medical Incident,04/08/2016,04/08/2016,04/08/2016 03:43:30 PM,04/08/2016 03:45:37 PM,04/08/2016 03:50:21 PM,04/08/2016 03:50:21 PM,04/08/2016 03:58:58 PM,04/08/2016 04:19:56 PM,04/08/2016 04:31:07 PM,Code 2 Transport,04/08/2016 05:27:38 PM,0 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7719978555919, -122.419959213851)",160992333-86 -150232380,T05,15008978,Other,01/23/2015,01/23/2015,01/23/2015 04:07:09 PM,01/23/2015 04:07:48 PM,01/23/2015 04:09:01 PM,01/23/2015 04:10:44 PM,01/23/2015 04:11:40 PM,04/25/2016 01:12:40 PM,04/25/2016 01:12:40 PM,Fire,01/23/2015 04:17:02 PM,MCALLISTER ST/FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",150232380-T05 -160973656,AM10,16038617,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:49:49 PM,04/06/2016 06:49:49 PM,04/06/2016 07:24:44 PM,04/06/2016 07:25:22 PM,04/06/2016 07:42:26 PM,04/06/2016 07:48:55 PM,04/06/2016 07:53:56 PM,Code 2 Transport,04/06/2016 08:26:26 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160973656-AM10 -143300893,T14,14116934,Alarms,11/26/2014,11/26/2014,11/26/2014 09:06:14 AM,11/26/2014 09:07:48 AM,11/26/2014 09:08:05 AM,11/26/2014 09:12:01 AM,11/26/2014 09:12:01 AM,04/25/2016 01:13:48 PM,04/25/2016 01:13:48 PM,Fire,11/26/2014 09:15:37 AM,6000 Block of GEARY BLVD,San Francisco,94121,B07,14,7213,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7802414186831, -122.484205434754)",143300893-T14 -141870746,T06,14064692,Alarms,07/06/2014,07/05/2014,07/06/2014 07:16:02 AM,07/06/2014 07:18:08 AM,07/06/2014 07:18:21 AM,07/06/2014 07:20:03 AM,07/06/2014 07:22:14 AM,04/25/2016 01:16:22 PM,04/25/2016 01:16:22 PM,Fire,07/06/2014 07:23:02 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.769431688682, -122.424669373999)",141870746-T06 -160933156,53,16037012,Medical Incident,04/02/2016,04/02/2016,04/02/2016 07:39:28 PM,04/02/2016 07:41:06 PM,04/02/2016 07:41:22 PM,04/02/2016 07:41:36 PM,04/02/2016 07:51:04 PM,04/02/2016 08:15:34 PM,04/02/2016 08:45:20 PM,Code 2 Transport,04/02/2016 09:09:00 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160933156-53 -143042668,E01,14107611,Medical Incident,10/31/2014,10/31/2014,10/31/2014 06:13:12 PM,10/31/2014 06:14:15 PM,10/31/2014 06:14:39 PM,10/31/2014 06:16:08 PM,10/31/2014 06:18:35 PM,04/25/2016 01:14:15 PM,04/25/2016 01:14:15 PM,Code 2 Transport,10/31/2014 06:38:41 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",143042668-E01 -141410902,86,14048272,Medical Incident,05/21/2014,05/21/2014,05/21/2014 09:14:04 AM,05/21/2014 09:14:31 AM,05/21/2014 09:15:29 AM,05/21/2014 09:15:48 AM,05/21/2014 09:21:56 AM,05/21/2014 09:27:08 AM,05/21/2014 09:53:31 AM,Code 2 Transport,05/21/2014 10:16:37 AM,1200 Block of REVERE AVE,San Francisco,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7279106754321, -122.383661848292)",141410902-86 -143581839,68,14128144,Traffic Collision,12/24/2014,12/24/2014,12/24/2014 02:14:29 PM,12/24/2014 02:17:08 PM,12/24/2014 02:17:19 PM,12/24/2014 02:17:43 PM,12/24/2014 02:20:50 PM,12/24/2014 02:56:44 PM,04/25/2016 01:13:14 PM,Code 2 Transport,12/24/2014 03:44:29 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",143581839-68 -150501446,E07,15019282,Medical Incident,02/19/2015,02/19/2015,02/19/2015 11:43:40 AM,02/19/2015 11:45:01 AM,02/19/2015 11:48:39 AM,02/19/2015 11:48:39 AM,02/19/2015 11:50:12 AM,04/25/2016 01:12:09 PM,04/25/2016 01:12:09 PM,Patient Declined Transport,02/19/2015 12:02:17 PM,18TH ST/FOLSOM ST,San Francisco,94110,B02,7,5424,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7620991621973, -122.414998618225)",150501446-E07 -143122291,65,14110573,Medical Incident,11/08/2014,11/08/2014,11/08/2014 03:56:44 PM,11/08/2014 03:56:44 PM,11/08/2014 03:57:04 PM,11/08/2014 03:57:35 PM,11/08/2014 04:19:21 PM,11/08/2014 04:19:39 PM,11/08/2014 04:35:16 PM,Code 2 Transport,11/08/2014 04:55:14 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",143122291-65 -151610108,88,15061361,Medical Incident,06/10/2015,06/09/2015,06/10/2015 01:02:20 AM,06/10/2015 01:03:19 AM,06/10/2015 01:03:46 AM,06/10/2015 01:03:59 AM,06/10/2015 01:10:21 AM,06/10/2015 01:25:20 AM,06/10/2015 01:44:54 AM,Code 2 Transport,06/10/2015 02:50:50 AM,1700 Block of TURK ST,San Francisco,94115,B05,5,4152,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7798704351211, -122.437493921383)",151610108-88 -141570138,78,14053909,Medical Incident,06/06/2014,06/05/2014,06/06/2014 01:08:13 AM,06/06/2014 01:10:11 AM,06/06/2014 01:11:32 AM,06/06/2014 01:15:57 AM,06/06/2014 01:30:49 AM,06/06/2014 02:01:17 AM,06/06/2014 02:09:37 AM,Code 2 Transport,06/06/2014 02:28:10 AM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",141570138-78 -150033189,RS1,15001274,Medical Incident,01/03/2015,01/03/2015,01/03/2015 09:03:23 PM,01/03/2015 09:03:23 PM,01/03/2015 09:03:56 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,04/25/2016 01:13:02 PM,Other,01/03/2015 09:04:40 PM,7TH ST/MISSION ST,San Francisco,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7792116845421, -122.4109365738)",150033189-RS1 -150750535,E10,15028665,Traffic Collision,03/16/2015,03/15/2015,03/16/2015 07:06:31 AM,03/16/2015 07:07:20 AM,03/16/2015 07:07:36 AM,03/16/2015 07:09:29 AM,03/16/2015 07:11:26 AM,04/25/2016 01:11:42 PM,04/25/2016 01:11:42 PM,Patient Declined Transport,03/16/2015 07:16:35 AM,ANZA ST/BLAKE ST,San Francisco,94118,B05,10,4457,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7806223148351, -122.450843847718)",150750535-E10 -150241277,E19,15009260,Medical Incident,01/24/2015,01/24/2015,01/24/2015 10:54:05 AM,01/24/2015 10:56:00 AM,01/24/2015 10:56:12 AM,01/24/2015 10:56:30 AM,01/24/2015 10:58:17 AM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Code 2 Transport,01/24/2015 11:13:50 AM,34TH AV/YORBA ST,San Francisco,94132,B08,19,7552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7353270196156, -122.491320517212)",150241277-E19 -141020286,T06,14034530,Structure Fire,04/12/2014,04/12/2014,04/12/2014 05:54:24 PM,04/12/2014 05:54:24 PM,04/12/2014 05:54:40 PM,04/12/2014 05:56:24 PM,04/12/2014 05:57:26 PM,04/25/2016 01:17:55 PM,04/25/2016 01:17:55 PM,Fire,04/12/2014 06:16:39 PM,300 Block of SANCHEZ ST,,94114,B05,6,525,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7635672604293, -122.43073545001)",141020286-T06 -141210363,E08,14041062,Traffic Collision,05/01/2014,05/01/2014,05/01/2014 06:38:22 PM,05/01/2014 06:40:23 PM,05/01/2014 06:41:50 PM,05/01/2014 06:43:02 PM,05/01/2014 06:48:23 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 2 Transport,05/01/2014 07:37:34 PM,300 Block of BRYANT ST,SAN FRANCISCO,94107,B03,35,2135,,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7839080570669, -122.392433239348)",141210363-E08 -150182217,E35,15007157,Traffic Collision,01/18/2015,01/18/2015,01/18/2015 04:06:14 PM,01/18/2015 04:11:37 PM,01/18/2015 04:12:17 PM,01/18/2015 04:13:53 PM,01/18/2015 04:17:36 PM,04/25/2016 01:12:45 PM,04/25/2016 01:12:45 PM,No Merit,01/18/2015 04:19:45 PM,300 Block of HOWARD ST,San Francisco,94105,B03,35,2124,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",150182217-E35 -153330596,53,15127955,Medical Incident,11/29/2015,11/28/2015,11/29/2015 06:15:07 AM,11/29/2015 06:16:04 AM,11/29/2015 06:16:23 AM,11/29/2015 06:16:55 AM,11/29/2015 06:27:31 AM,11/29/2015 06:46:06 AM,11/29/2015 06:58:58 AM,Code 2 Transport,11/29/2015 07:41:28 AM,400 Block of 32ND AVE,San Francisco,94121,B07,14,7237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7807150242831, -122.492234634841)",153330596-53 -141370536,82,14046815,Medical Incident,05/17/2014,05/16/2014,05/17/2014 04:13:49 AM,05/17/2014 04:13:49 AM,05/17/2014 04:18:27 AM,05/17/2014 04:19:20 AM,05/17/2014 04:34:52 AM,05/17/2014 04:56:21 AM,04/25/2016 01:17:17 PM,Code 2 Transport,05/17/2014 05:22:32 AM,200 Block of POWELL ST,San Francisco,94102,B01,1,1363,,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",141370536-82 -152692501,E44,15103153,Alarms,09/26/2015,09/26/2015,09/26/2015 04:07:17 PM,09/26/2015 04:09:54 PM,09/26/2015 04:12:03 PM,09/26/2015 04:13:37 PM,09/26/2015 04:17:19 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Fire,09/26/2015 04:41:12 PM,1500 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",152692501-E44 -153261217,E36,15125464,Traffic Collision,11/22/2015,11/22/2015,11/22/2015 10:50:40 AM,11/22/2015 10:50:40 AM,11/22/2015 10:51:26 AM,11/22/2015 10:53:27 AM,11/22/2015 10:56:56 AM,04/25/2016 01:07:03 PM,04/25/2016 01:07:03 PM,No Merit,11/22/2015 11:04:02 AM,SOUTH VAN NESS AV/MISSION ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7730534532281, -122.418618217459)",153261217-E36 -150621731,E16,15023659,Medical Incident,03/03/2015,03/03/2015,03/03/2015 12:28:41 PM,03/03/2015 12:29:58 PM,03/03/2015 12:30:10 PM,03/03/2015 12:31:16 PM,03/03/2015 12:32:04 PM,04/25/2016 01:11:56 PM,04/25/2016 01:11:56 PM,No Merit,03/03/2015 12:35:56 PM,MOULTON ST/WEBSTER ST,San Francisco,94123,B04,16,3444,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7996281993419, -122.434319173803)",150621731-E16 -141433643,T03,14049254,Alarms,05/23/2014,05/23/2014,05/23/2014 10:46:31 PM,05/23/2014 10:47:28 PM,05/23/2014 10:47:52 PM,05/23/2014 10:49:20 PM,05/23/2014 10:51:11 PM,04/25/2016 01:17:10 PM,04/25/2016 01:17:10 PM,Fire,05/23/2014 10:59:55 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Alarm,1,TRUCK,2,4,3,Nob Hill,"(37.7899917286128, -122.418035034103)",141433643-T03 -150142847,63,15005649,Medical Incident,01/14/2015,01/14/2015,01/14/2015 05:33:10 PM,01/14/2015 05:34:30 PM,01/14/2015 05:35:17 PM,01/14/2015 05:35:32 PM,01/14/2015 06:14:36 PM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Against Medical Advice,01/14/2015 06:35:19 PM,BATTERY ST/PINE ST,San Francisco,94111,B01,13,1163,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7922579471835, -122.399763355201)",150142847-63 -152981950,KM04,15114445,Medical Incident,10/25/2015,10/25/2015,10/25/2015 02:38:11 PM,10/25/2015 02:42:14 PM,10/25/2015 02:42:43 PM,10/25/2015 02:43:16 PM,04/25/2016 01:07:35 PM,04/25/2016 01:07:35 PM,04/25/2016 01:07:35 PM,Code 2 Transport,10/25/2015 02:44:18 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,false,Non Life-threatening,1,PRIVATE,3,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",152981950-KM04 -152650284,AM20,15101343,Medical Incident,09/22/2015,09/21/2015,09/22/2015 02:48:35 AM,09/22/2015 02:51:39 AM,09/22/2015 02:51:54 AM,09/22/2015 02:52:29 AM,09/22/2015 02:57:50 AM,09/22/2015 03:11:15 AM,09/22/2015 03:27:08 AM,Code 3 Transport,09/22/2015 04:08:15 AM,200 Block of BEALE ST,San Francisco,94105,B03,35,2122,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7892677162791, -122.393548600464)",152650284-AM20 -150970777,B03,15036679,Structure Fire,04/07/2015,04/07/2015,04/07/2015 08:32:27 AM,04/07/2015 08:33:22 AM,04/07/2015 08:33:43 AM,04/07/2015 08:34:50 AM,04/07/2015 08:37:33 AM,04/25/2016 01:11:18 PM,04/25/2016 01:11:18 PM,Fire,04/07/2015 08:44:52 AM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7774997276449, -122.410999268699)",150970777-B03 -143371458,72,14119506,Medical Incident,12/03/2014,12/03/2014,12/03/2014 10:29:58 AM,12/03/2014 10:29:58 AM,12/03/2014 10:30:33 AM,12/03/2014 10:31:29 AM,12/03/2014 10:34:43 AM,12/03/2014 10:55:24 AM,12/03/2014 11:18:02 AM,Code 2 Transport,12/03/2014 11:42:58 AM,0 Block of RANDALL ST,San Francisco,94131,B06,32,8112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7397726632436, -122.425034949068)",143371458-72 -141772175,T19,14061141,Alarms,06/26/2014,06/26/2014,06/26/2014 03:47:37 PM,06/26/2014 03:49:08 PM,06/26/2014 03:49:20 PM,06/26/2014 03:51:22 PM,06/26/2014 03:54:05 PM,04/25/2016 01:16:33 PM,04/25/2016 01:16:33 PM,Fire,06/26/2014 04:01:52 PM,300 Block of ARBALLO DR,San Francisco,94132,B08,19,8582,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",141772175-T19 -153243255,E41,15124820,Medical Incident,11/20/2015,11/20/2015,11/20/2015 06:17:41 PM,11/20/2015 06:19:02 PM,11/20/2015 06:27:07 PM,11/20/2015 06:27:16 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,04/25/2016 01:07:05 PM,Code 2 Transport,11/20/2015 06:29:21 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,ENGINE,4,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",153243255-E41 -141210441,RC3,14041131,Medical Incident,05/01/2014,05/01/2014,05/01/2014 10:09:27 PM,05/01/2014 10:09:59 PM,05/01/2014 10:10:55 PM,05/01/2014 10:12:08 PM,05/01/2014 10:17:57 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Code 3 Transport,05/01/2014 11:19:28 PM,500 Block of PARNASSUS AVE,SAN FRANCISCO,94131,B06,26,8175,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",141210441-RC3 -141412206,E39,14048380,Medical Incident,05/21/2014,05/21/2014,05/21/2014 03:16:13 PM,05/21/2014 03:16:46 PM,05/21/2014 03:17:26 PM,05/21/2014 03:18:51 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,04/25/2016 01:17:12 PM,Code 2 Transport,05/21/2014 03:32:54 PM,800 Block of ULLOA ST,San Francisco,94127,B08,39,8619,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7409217122072, -122.466013598224)",141412206-E39 -150151339,E02,15005919,Structure Fire,01/15/2015,01/15/2015,01/15/2015 11:14:12 AM,01/15/2015 11:14:33 AM,01/15/2015 11:14:49 AM,01/15/2015 11:17:00 AM,01/15/2015 11:17:33 AM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Fire,01/15/2015 11:34:54 AM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",150151339-E02 -160943225,79,16037411,Medical Incident,04/03/2016,04/03/2016,04/03/2016 08:09:53 PM,04/03/2016 08:11:06 PM,04/03/2016 08:11:21 PM,04/03/2016 08:11:34 PM,04/03/2016 08:14:55 PM,04/03/2016 08:36:22 PM,04/03/2016 08:51:45 PM,Code 2 Transport,04/03/2016 09:10:56 PM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7816136403158, -122.412054141237)",160943225-79 -142882967,71,14101611,Medical Incident,10/15/2014,10/15/2014,10/15/2014 05:54:26 PM,10/15/2014 05:57:54 PM,10/15/2014 05:58:18 PM,10/15/2014 05:58:29 PM,10/15/2014 06:08:28 PM,10/15/2014 06:40:48 PM,10/15/2014 07:04:27 PM,Code 2 Transport,10/15/2014 07:57:51 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",142882967-71 -150251706,E42,15009657,Medical Incident,01/25/2015,01/25/2015,01/25/2015 12:59:44 PM,01/25/2015 01:02:13 PM,01/25/2015 01:03:16 PM,01/25/2015 01:04:19 PM,01/25/2015 01:07:06 PM,04/25/2016 01:12:38 PM,04/25/2016 01:12:38 PM,Code 2 Transport,01/25/2015 01:11:43 PM,100 Block of BRUSSELS ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7301008339849, -122.406891125919)",150251706-E42 -142673354,74,14093649,Medical Incident,09/24/2014,09/24/2014,09/24/2014 07:27:00 PM,09/24/2014 07:27:46 PM,09/24/2014 07:28:11 PM,09/24/2014 07:28:21 PM,09/24/2014 07:45:19 PM,04/25/2016 01:14:55 PM,04/25/2016 01:14:55 PM,No Merit,09/24/2014 07:59:27 PM,GREAT HY/PACHECO ST,San Francisco,94116,B08,23,7726,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7491109380411, -122.507941547493)",142673354-74 -151031420,61,15038916,Medical Incident,04/13/2015,04/13/2015,04/13/2015 11:12:18 AM,04/13/2015 11:14:39 AM,04/13/2015 11:15:31 AM,04/13/2015 11:15:42 AM,04/13/2015 11:39:43 AM,04/13/2015 11:44:48 AM,04/13/2015 12:07:05 PM,Code 2 Transport,04/13/2015 12:30:51 PM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7613401387036, -122.46390786542)",151031420-61 -152611639,E01,15099727,Medical Incident,09/18/2015,09/18/2015,09/18/2015 11:41:06 AM,09/18/2015 11:41:55 AM,09/18/2015 11:42:09 AM,09/18/2015 11:42:29 AM,09/18/2015 11:42:37 AM,04/25/2016 01:08:17 PM,04/25/2016 01:08:17 PM,Code 2 Transport,09/18/2015 11:50:11 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",152611639-E01 -151110153,62,15041853,Medical Incident,04/21/2015,04/20/2015,04/21/2015 01:25:07 AM,04/21/2015 01:25:07 AM,04/21/2015 01:27:13 AM,04/21/2015 01:28:10 AM,04/21/2015 01:31:39 AM,04/21/2015 01:47:19 AM,04/21/2015 02:08:49 AM,Code 2 Transport,04/21/2015 02:36:13 AM,2400 Block of MARIPOSA ST,San Francisco,94110,B02,29,5243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Potrero Hill,"(37.7631000634463, -122.407798087313)",151110153-62 -152203428,T05,15083977,Alarms,08/08/2015,08/08/2015,08/08/2015 08:57:12 PM,08/08/2015 08:58:26 PM,08/08/2015 08:58:32 PM,08/08/2015 08:59:49 PM,08/08/2015 09:02:37 PM,04/25/2016 01:09:01 PM,04/25/2016 01:09:01 PM,Fire,08/08/2015 09:11:17 PM,1300 Block of HAYES ST,San Francisco,94117,B05,21,4244,3,3,3,false,Alarm,1,TRUCK,2,5,5,Hayes Valley,"(37.7749393187177, -122.438643513422)",152203428-T05 -151130246,85,15042556,Medical Incident,04/23/2015,04/22/2015,04/23/2015 02:15:46 AM,04/23/2015 02:19:49 AM,04/23/2015 02:20:31 AM,04/23/2015 02:21:27 AM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,04/25/2016 01:11:01 PM,No Merit,04/23/2015 02:23:02 AM,500 Block of 47TH AVE,San Francisco,94121,B07,34,7276,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7780500044705, -122.508299698216)",151130246-85 -153043135,E03,15116782,Medical Incident,10/31/2015,10/31/2015,10/31/2015 06:23:41 PM,10/31/2015 06:24:42 PM,10/31/2015 06:24:57 PM,10/31/2015 06:26:10 PM,10/31/2015 06:29:25 PM,04/25/2016 01:07:28 PM,04/25/2016 01:07:28 PM,Code 2 Transport,10/31/2015 06:35:42 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",153043135-E03 -160940053,57,16037097,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:15:51 AM,04/03/2016 12:17:00 AM,04/03/2016 12:17:38 AM,04/03/2016 12:20:43 AM,04/03/2016 12:26:33 AM,04/03/2016 12:43:25 AM,04/03/2016 01:14:23 AM,Code 2 Transport,04/03/2016 02:01:26 AM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160940053-57 -152142084,62,15081517,Medical Incident,08/02/2015,08/02/2015,08/02/2015 03:05:44 PM,08/02/2015 03:10:51 PM,08/02/2015 03:12:10 PM,08/02/2015 03:12:10 PM,08/02/2015 03:16:12 PM,08/02/2015 03:40:03 PM,08/02/2015 03:44:32 PM,Code 2 Transport,08/02/2015 03:59:30 PM,800 Block of GRANT AVE,San Francisco,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7947123862364, -122.406321854883)",152142084-62 -151170071,T07,15044048,Alarms,04/27/2015,04/26/2015,04/27/2015 12:34:49 AM,04/27/2015 12:37:23 AM,04/27/2015 12:37:40 AM,04/27/2015 12:39:46 AM,04/27/2015 12:42:09 AM,04/25/2016 01:10:56 PM,04/25/2016 01:10:56 PM,Fire,04/27/2015 12:51:30 AM,2600 Block of HARRISON ST,San Francisco,94110,B06,7,545,3,3,3,true,Alarm,1,TRUCK,3,6,9,Mission,"(37.7550273333694, -122.412191567954)",151170071-T07 -152842440,E03,15109113,Alarms,10/11/2015,10/11/2015,10/11/2015 03:35:26 PM,10/11/2015 03:37:12 PM,10/11/2015 03:37:30 PM,10/11/2015 03:39:19 PM,10/11/2015 03:39:58 PM,04/25/2016 01:07:50 PM,04/25/2016 01:07:50 PM,Fire,10/11/2015 03:44:29 PM,800 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",152842440-E03 -142742322,E05,14096116,Alarms,10/01/2014,10/01/2014,10/01/2014 03:07:19 PM,10/01/2014 03:09:05 PM,10/01/2014 03:09:16 PM,10/01/2014 03:09:34 PM,10/01/2014 03:12:34 PM,04/25/2016 01:14:48 PM,04/25/2016 01:14:48 PM,Fire,10/01/2014 03:15:53 PM,1000 Block of FULTON ST,San Francisco,94117,B05,5,3626,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7774397499102, -122.434052229996)",142742322-E05 -160950925,88,16037559,Medical Incident,04/04/2016,04/04/2016,04/04/2016 09:15:24 AM,04/04/2016 09:18:41 AM,04/04/2016 09:19:26 AM,04/04/2016 09:19:41 AM,04/04/2016 09:33:01 AM,04/04/2016 09:51:53 AM,04/04/2016 10:07:13 AM,Code 2 Transport,04/04/2016 10:30:02 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160950925-88 -160990725,85,16039210,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:14:21 AM,04/08/2016 08:14:44 AM,04/08/2016 08:14:57 AM,04/08/2016 08:15:13 AM,04/08/2016 08:22:59 AM,04/08/2016 08:44:15 AM,04/08/2016 09:19:44 AM,Code 2 Transport,04/08/2016 09:49:13 AM,1700 Block of 42ND AVE,San Francisco,94122,B08,23,7651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7540813159009, -122.501114509461)",160990725-85 -142211863,B02,14076737,Structure Fire,08/09/2014,08/09/2014,08/09/2014 01:32:58 PM,08/09/2014 01:39:00 PM,08/09/2014 01:39:22 PM,08/09/2014 01:40:29 PM,08/09/2014 01:44:29 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Fire,08/09/2014 01:53:38 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Alarm,1,CHIEF,7,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",142211863-B02 -150133080,E01,15005289,Medical Incident,01/13/2015,01/13/2015,01/13/2015 06:28:33 PM,01/13/2015 06:30:27 PM,01/13/2015 06:30:52 PM,01/13/2015 06:32:04 PM,01/13/2015 06:36:09 PM,04/25/2016 01:12:51 PM,04/25/2016 01:12:51 PM,Other,01/13/2015 06:39:33 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",150133080-E01 -142173089,T03,14075361,Alarms,08/05/2014,08/05/2014,08/05/2014 07:58:58 PM,08/05/2014 08:00:04 PM,08/05/2014 08:00:33 PM,08/05/2014 08:01:34 PM,08/05/2014 08:03:09 PM,04/25/2016 01:15:49 PM,04/25/2016 01:15:49 PM,Fire,08/05/2014 08:20:08 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",142173089-T03 -150151836,T19,15005959,Alarms,01/15/2015,01/15/2015,01/15/2015 01:21:09 PM,01/15/2015 01:22:24 PM,01/15/2015 01:22:46 PM,01/15/2015 01:24:58 PM,01/15/2015 01:27:38 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Fire,01/15/2015 01:30:40 PM,100 Block of CLEARFIELD DR,San Francisco,94132,B08,19,8816,3,3,3,false,Alarm,1,TRUCK,2,8,7,Sunset/Parkside,"(37.7313538777143, -122.491459945504)",150151836-T19 -160981737,62,16038903,Medical Incident,04/07/2016,04/07/2016,04/07/2016 12:09:46 PM,04/07/2016 12:14:27 PM,04/07/2016 12:14:46 PM,04/07/2016 12:15:07 PM,04/07/2016 12:21:12 PM,04/07/2016 12:33:33 PM,04/07/2016 12:35:09 PM,Code 2 Transport,04/07/2016 01:26:36 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",160981737-62 -141452373,T15,14049879,Alarms,05/25/2014,05/25/2014,05/25/2014 05:30:43 PM,05/25/2014 05:32:02 PM,05/25/2014 05:32:56 PM,05/25/2014 05:34:51 PM,05/25/2014 05:38:00 PM,04/25/2016 01:17:08 PM,04/25/2016 01:17:08 PM,Fire,05/25/2014 05:47:51 PM,0 Block of NORTHGATE DR,San Francisco,94127,B09,15,8547,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.729000241288, -122.461600642667)",141452373-T15 -150341557,B09,15013085,Alarms,02/03/2015,02/03/2015,02/03/2015 12:02:24 PM,02/03/2015 12:06:09 PM,02/03/2015 12:06:18 PM,02/03/2015 12:08:52 PM,02/03/2015 12:11:47 PM,04/25/2016 01:12:28 PM,04/25/2016 01:12:28 PM,Fire,02/03/2015 12:38:05 PM,0 Block of TINGLEY ST,San Francisco,94112,B09,32,6113,3,3,3,false,Alarm,1,CHIEF,1,9,11,Outer Mission,"(37.7287240447065, -122.43292780153)",150341557-B09 -160971776,57,16038402,Medical Incident,04/06/2016,04/06/2016,04/06/2016 12:10:54 PM,04/06/2016 12:12:32 PM,04/06/2016 12:12:45 PM,04/06/2016 12:12:56 PM,04/06/2016 12:18:34 PM,04/06/2016 12:40:41 PM,04/06/2016 01:18:28 PM,Code 2 Transport,04/06/2016 02:45:04 PM,500 Block of RAMSELL ST,San Francisco,94132,B09,15,8435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7206727205303, -122.466335197673)",160971776-57 -152750800,79,15105230,Medical Incident,10/02/2015,10/02/2015,10/02/2015 08:14:11 AM,10/02/2015 08:15:01 AM,10/02/2015 08:16:17 AM,10/02/2015 08:16:17 AM,10/02/2015 08:33:28 AM,10/02/2015 08:33:31 AM,04/25/2016 01:08:01 PM,Code 3 Transport,10/02/2015 09:07:37 AM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",152750800-79 -142791326,77,14098119,Medical Incident,10/06/2014,10/06/2014,10/06/2014 11:07:29 AM,10/06/2014 11:08:08 AM,10/06/2014 11:08:42 AM,10/06/2014 11:08:50 AM,10/06/2014 11:12:41 AM,10/06/2014 11:25:28 AM,10/06/2014 11:46:14 AM,Code 3 Transport,10/06/2014 12:23:32 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7662536102334, -122.425864046062)",142791326-77 -150372735,57,15014419,Traffic Collision,02/06/2015,02/06/2015,02/06/2015 05:19:09 PM,02/06/2015 05:19:09 PM,02/06/2015 05:20:55 PM,02/06/2015 05:20:55 PM,02/06/2015 05:25:54 PM,02/06/2015 05:46:48 PM,02/06/2015 06:10:57 PM,Code 2 Transport,02/06/2015 06:27:10 PM,MASON ST/ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",150372735-57 -151870023,79,15071227,Medical Incident,07/06/2015,07/05/2015,07/06/2015 12:10:39 AM,07/06/2015 12:11:54 AM,07/06/2015 12:12:33 AM,07/06/2015 12:12:49 AM,07/06/2015 12:16:36 AM,07/06/2015 12:33:47 AM,07/06/2015 12:55:02 AM,Code 3 Transport,07/06/2015 01:34:01 AM,1200 Block of HAIGHT ST,San Francisco,94117,B05,21,4353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",151870023-79 -160932998,63,16036989,Medical Incident,04/02/2016,04/02/2016,04/02/2016 06:53:13 PM,04/02/2016 06:55:08 PM,04/02/2016 06:56:18 PM,04/02/2016 06:56:29 PM,04/02/2016 07:18:21 PM,04/02/2016 07:18:23 PM,04/02/2016 07:47:46 PM,Code 2 Transport,04/02/2016 08:13:01 PM,2300 Block of TURK BLVD,San Francisco,94118,B05,21,4564,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7786159124271, -122.447529663824)",160932998-63 -150471471,2R01,15018250,,02/16/2015,02/16/2015,02/16/2015 11:29:00 AM,02/16/2015 11:31:03 AM,02/16/2015 11:40:14 AM,02/16/2015 11:40:14 AM,02/16/2015 11:40:14 AM,04/25/2016 01:12:12 PM,04/25/2016 01:12:12 PM,Fire,02/16/2015 11:40:19 AM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,false,Alarm,1,ADMIN,0,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",150471471-2R01 -153083533,E17,15118511,Structure Fire,11/04/2015,11/04/2015,11/04/2015 07:56:41 PM,11/04/2015 07:56:41 PM,11/04/2015 07:56:58 PM,11/04/2015 07:57:59 PM,11/04/2015 08:01:04 PM,04/25/2016 01:07:23 PM,04/25/2016 01:07:23 PM,Fire,11/04/2015 08:01:21 PM,HUDSON AV/CASHMERE ST,San Francisco,94124,B10,25,652,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",153083533-E17 -151731208,E36,15066015,Medical Incident,06/22/2015,06/22/2015,06/22/2015 11:01:15 AM,06/22/2015 11:02:07 AM,06/22/2015 11:02:31 AM,06/22/2015 11:02:40 AM,06/22/2015 11:05:38 AM,04/25/2016 01:09:52 PM,04/25/2016 01:09:52 PM,Code 2 Transport,06/22/2015 11:05:49 AM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",151731208-E36 -150240088,B04,15009131,Alarms,01/24/2015,01/23/2015,01/24/2015 12:31:43 AM,01/24/2015 12:31:59 AM,01/24/2015 12:32:14 AM,01/24/2015 12:34:16 AM,01/24/2015 12:38:41 AM,04/25/2016 01:12:39 PM,04/25/2016 01:12:39 PM,Fire,01/24/2015 12:48:08 AM,1500 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,4134,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",150240088-B04 -160933627,72,16037059,Medical Incident,04/02/2016,04/02/2016,04/02/2016 10:02:35 PM,04/02/2016 10:03:49 PM,04/02/2016 10:03:58 PM,04/02/2016 10:04:06 PM,04/02/2016 10:11:53 PM,04/02/2016 10:51:21 PM,04/02/2016 11:10:00 PM,Code 2 Transport,04/02/2016 11:58:56 PM,400 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160933627-72 -150802503,T02,15030732,Elevator / Escalator Rescue,03/21/2015,03/21/2015,03/21/2015 05:19:35 PM,03/21/2015 05:20:34 PM,03/21/2015 05:21:20 PM,03/21/2015 05:24:12 PM,03/21/2015 05:27:30 PM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Fire,03/21/2015 05:46:51 PM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.8061880612091, -122.416243833913)",150802503-T02 -160931586,AM10,16036841,Medical Incident,04/02/2016,04/02/2016,04/02/2016 12:21:13 PM,04/02/2016 12:22:04 PM,04/02/2016 12:22:33 PM,04/02/2016 12:23:15 PM,04/02/2016 12:29:48 PM,04/02/2016 12:36:58 PM,04/02/2016 12:46:33 PM,Code 2 Transport,04/02/2016 01:32:40 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",160931586-AM10 -160990587,88,16039202,Medical Incident,04/08/2016,04/07/2016,04/08/2016 07:23:37 AM,04/08/2016 07:26:34 AM,04/08/2016 07:27:02 AM,04/08/2016 07:27:22 AM,04/08/2016 07:36:49 AM,04/08/2016 07:53:11 AM,04/08/2016 08:17:41 AM,Code 2 Transport,04/08/2016 08:59:34 AM,700 Block of MISSOURI ST,San Francisco,94107,B10,37,2566,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7572927812087, -122.395771897356)",160990587-88 -142861223,RS2,14100789,Structure Fire,10/13/2014,10/13/2014,10/13/2014 10:47:41 AM,10/13/2014 10:55:17 AM,10/13/2014 10:55:22 AM,10/13/2014 10:56:56 AM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Fire,10/13/2014 10:59:08 AM,3500 Block of 25TH ST,San Francisco,94110,B06,11,5535,3,3,3,false,Alarm,1,RESCUE SQUAD,9,6,8,Mission,"(37.7504366313711, -122.420740954299)",142861223-RS2 -153342498,E01,15128482,Medical Incident,11/30/2015,11/30/2015,11/30/2015 04:39:18 PM,11/30/2015 04:39:18 PM,11/30/2015 04:40:40 PM,11/30/2015 04:40:40 PM,11/30/2015 04:44:02 PM,04/25/2016 01:06:55 PM,04/25/2016 01:06:55 PM,Code 2 Transport,11/30/2015 04:54:34 PM,NEW MONTGOMERY ST/MISSION ST,San Francisco,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",153342498-E01 -152052549,E38,15078150,Medical Incident,07/24/2015,07/24/2015,07/24/2015 04:15:31 PM,07/24/2015 04:16:55 PM,07/24/2015 04:17:37 PM,07/24/2015 04:19:04 PM,07/24/2015 04:20:45 PM,04/25/2016 01:09:17 PM,04/25/2016 01:09:17 PM,Code 3 Transport,07/24/2015 05:33:11 PM,2100 Block of PACIFIC AVE,San Francisco,94115,B04,38,3441,3,E,3,false,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.79392640977, -122.430637263038)",152052549-E38 -142383297,E13,14082916,Medical Incident,08/26/2014,08/26/2014,08/26/2014 07:55:44 PM,08/26/2014 07:58:10 PM,08/26/2014 08:02:19 PM,08/26/2014 08:03:23 PM,08/26/2014 08:06:42 PM,04/25/2016 01:15:26 PM,04/25/2016 01:15:26 PM,Code 2 Transport,08/26/2014 08:21:00 PM,300 Block of KEARNY ST,San Francisco,94108,B01,13,1243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",142383297-E13 -150760310,E28,15029017,Medical Incident,03/17/2015,03/16/2015,03/17/2015 03:48:46 AM,03/17/2015 03:48:46 AM,03/17/2015 03:49:38 AM,03/17/2015 03:50:51 AM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Code 2 Transport,03/17/2015 03:51:08 AM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",150760310-E28 -151692997,83,15064753,Medical Incident,06/18/2015,06/18/2015,06/18/2015 07:12:38 PM,06/18/2015 07:12:38 PM,06/18/2015 07:13:56 PM,06/18/2015 07:14:02 PM,06/18/2015 07:19:35 PM,04/25/2016 01:09:56 PM,04/25/2016 01:09:56 PM,Cancelled,06/18/2015 07:20:41 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",151692997-83 -152691830,E19,15103084,Medical Incident,09/26/2015,09/26/2015,09/26/2015 01:08:19 PM,09/26/2015 01:10:21 PM,09/26/2015 01:10:32 PM,09/26/2015 01:12:28 PM,09/26/2015 01:16:18 PM,04/25/2016 01:08:07 PM,04/25/2016 01:08:07 PM,Code 2 Transport,09/26/2015 01:31:51 PM,1500 Block of SLOAT BLVD,San Francisco,94132,B08,19,7552,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",152691830-E19 -150351708,57,15013453,Medical Incident,02/04/2015,02/04/2015,02/04/2015 11:53:44 AM,02/04/2015 11:54:47 AM,02/04/2015 11:55:20 AM,02/04/2015 11:57:55 AM,02/04/2015 12:04:00 PM,02/04/2015 12:09:07 PM,02/04/2015 12:55:39 PM,Code 2 Transport,02/04/2015 12:55:42 PM,DENSLOWE DR/HOLLOWAY AV,San Francisco,94132,B08,19,8751,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7211969232658, -122.474547326318)",150351708-57 -160991335,KM13,16039268,Medical Incident,04/08/2016,04/08/2016,04/08/2016 11:26:19 AM,04/08/2016 11:27:08 AM,04/08/2016 11:27:19 AM,04/08/2016 11:29:01 AM,04/08/2016 11:33:37 AM,04/08/2016 11:54:17 AM,04/08/2016 12:22:12 PM,Code 2 Transport,04/08/2016 01:00:04 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160991335-KM13 -150691829,E42,15026361,Medical Incident,03/10/2015,03/10/2015,03/10/2015 01:36:10 PM,03/10/2015 01:36:57 PM,03/10/2015 01:37:57 PM,03/10/2015 01:40:09 PM,03/10/2015 01:43:26 PM,04/25/2016 01:11:48 PM,04/25/2016 01:11:48 PM,Code 2 Transport,03/10/2015 01:53:07 PM,KEITH ST/WALLACE AV,San Francisco,94124,B10,17,6546,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7274763469348, -122.391107616278)",150691829-E42 -160941918,61,16037269,Medical Incident,04/03/2016,04/03/2016,04/03/2016 01:36:00 PM,04/03/2016 01:36:00 PM,04/03/2016 01:36:26 PM,04/03/2016 01:36:34 PM,04/03/2016 01:59:41 PM,04/03/2016 02:00:35 PM,04/03/2016 02:15:52 PM,Code 2 Transport,04/03/2016 02:54:07 PM,TURK ST/JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",160941918-61 -151281419,82,15048511,Medical Incident,05/08/2015,05/08/2015,05/08/2015 11:12:04 AM,05/08/2015 11:12:20 AM,05/08/2015 11:12:54 AM,05/08/2015 11:13:07 AM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,04/25/2016 01:10:43 PM,Cancelled,05/08/2015 11:14:57 AM,1000 Block of BALBOA ST,San Francisco,94118,B07,31,7145,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7770207365591, -122.469900954648)",151281419-82 -151430452,89,15054261,Medical Incident,05/23/2015,05/22/2015,05/23/2015 02:56:23 AM,05/23/2015 02:57:37 AM,05/23/2015 02:57:58 AM,05/23/2015 02:58:04 AM,05/23/2015 03:06:49 AM,05/23/2015 03:17:30 AM,05/23/2015 03:50:07 AM,Code 2 Transport,05/23/2015 04:07:22 AM,GRANT AV/GREEN ST,San Francisco,94133,B01,28,1266,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7997036751716, -122.407395244265)",151430452-89 -151711214,76,15065293,Medical Incident,06/20/2015,06/20/2015,06/20/2015 10:42:55 AM,06/20/2015 10:43:27 AM,06/20/2015 10:44:08 AM,06/20/2015 10:44:16 AM,06/20/2015 10:48:43 AM,06/20/2015 11:05:48 AM,06/20/2015 11:14:33 AM,Code 2 Transport,06/20/2015 11:36:30 AM,COLE ST/HAIGHT ST,San Francisco,94117,B05,12,4533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",151711214-76 -143270977,85,14115815,Traffic Collision,11/23/2014,11/23/2014,11/23/2014 08:21:17 AM,11/23/2014 08:21:17 AM,11/23/2014 08:22:40 AM,11/23/2014 08:23:11 AM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Code 2 Transport,11/23/2014 08:26:33 AM,BROTHERHOOD WY/ARCH ST,San Francisco,94132,B09,33,8375,2,2,2,true,Non Life-threatening,1,MEDIC,3,9,7,Oceanview/Merced/Ingleside,"(37.7124218732149, -122.467072688577)",143270977-85 -150020429,E14,15000613,Medical Incident,01/02/2015,01/01/2015,01/02/2015 06:57:37 AM,01/02/2015 06:58:20 AM,01/02/2015 07:01:26 AM,01/02/2015 07:04:21 AM,01/02/2015 07:06:32 AM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Code 2 Transport,01/02/2015 07:21:47 AM,400 Block of 36TH AVE,San Francisco,94121,B07,34,7255,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.780398447494, -122.496512969043)",150020429-E14 -150201454,E16,15007811,Medical Incident,01/20/2015,01/20/2015,01/20/2015 11:32:59 AM,01/20/2015 11:34:01 AM,01/20/2015 11:34:46 AM,01/20/2015 11:35:45 AM,01/20/2015 11:37:46 AM,04/25/2016 01:12:43 PM,04/25/2016 01:12:43 PM,Unable to Locate,01/20/2015 11:41:00 AM,2000 Block of CHESTNUT ST,San Francisco,94123,B04,16,3661,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8006947037442, -122.436775838314)",150201454-E16 -150440722,88,15017015,Medical Incident,02/13/2015,02/12/2015,02/13/2015 07:44:28 AM,02/13/2015 07:45:09 AM,02/13/2015 07:46:05 AM,02/13/2015 07:46:37 AM,02/13/2015 07:55:09 AM,02/13/2015 08:10:21 AM,02/13/2015 08:17:29 AM,Code 2 Transport,02/13/2015 08:56:06 AM,3400 Block of 16TH ST,San Francisco,94114,B02,6,5234,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7645393169701, -122.429051748947)",150440722-88 -141552658,E02,14053398,Water Rescue,06/04/2014,06/04/2014,06/04/2014 05:22:43 PM,06/04/2014 05:23:20 PM,06/04/2014 05:24:57 PM,06/04/2014 05:26:48 PM,06/04/2014 05:45:40 PM,04/25/2016 01:16:57 PM,04/25/2016 01:16:57 PM,Code 3 Transport,06/04/2014 06:46:18 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Fire,1,ENGINE,6,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",141552658-E02 -153410598,79,15131109,Medical Incident,12/07/2015,12/06/2015,12/07/2015 07:07:55 AM,12/07/2015 07:09:42 AM,12/07/2015 07:10:45 AM,12/07/2015 07:12:01 AM,12/07/2015 07:19:19 AM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,Patient Declined Transport,12/07/2015 07:38:35 AM,1600 Block of FULTON ST,San Francisco,94117,B05,21,4346,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7760670800915, -122.443945228823)",153410598-79 -143123019,T05,14110637,Structure Fire,11/08/2014,11/08/2014,11/08/2014 07:08:14 PM,11/08/2014 07:08:14 PM,11/08/2014 07:08:40 PM,11/08/2014 07:09:23 PM,11/08/2014 07:10:58 PM,04/25/2016 01:14:06 PM,04/25/2016 01:14:06 PM,Fire,11/08/2014 07:11:20 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",143123019-T05 -151711181,E01,15065288,Structure Fire,06/20/2015,06/20/2015,06/20/2015 10:28:36 AM,06/20/2015 10:29:45 AM,06/20/2015 10:30:00 AM,06/20/2015 10:33:03 AM,06/20/2015 10:33:20 AM,04/25/2016 01:09:54 PM,04/25/2016 01:09:54 PM,Fire,06/20/2015 10:38:37 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Fire,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",151711181-E01 -152702750,87,15103542,Medical Incident,09/27/2015,09/27/2015,09/27/2015 06:21:17 PM,09/27/2015 06:22:27 PM,09/27/2015 06:22:56 PM,09/27/2015 06:23:07 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,04/25/2016 01:08:06 PM,Code 2 Transport,09/27/2015 06:23:30 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,5,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",152702750-87 -151773884,RC2,15067557,Medical Incident,06/26/2015,06/26/2015,06/26/2015 10:56:02 PM,06/26/2015 10:56:02 PM,06/26/2015 10:56:34 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,04/25/2016 01:09:48 PM,Code 2 Transport,06/26/2015 10:59:04 PM,WEST PORTAL AV/VICENTE ST,San Francisco,94127,B08,39,8611,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,8,7,West of Twin Peaks,"(37.7397235005071, -122.466991014067)",151773884-RC2 -143400187,E17,14120573,Alarms,12/06/2014,12/05/2014,12/06/2014 01:07:52 AM,12/06/2014 01:08:31 AM,12/06/2014 01:08:38 AM,12/06/2014 01:10:30 AM,12/06/2014 01:13:48 AM,04/25/2016 01:13:37 PM,04/25/2016 01:13:37 PM,Fire,12/06/2014 01:28:16 AM,1500 Block of OAKDALE AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7341109185818, -122.389372863694)",143400187-E17 -152530873,E41,15096640,Medical Incident,09/10/2015,09/10/2015,09/10/2015 08:39:18 AM,09/10/2015 08:39:45 AM,09/10/2015 08:42:27 AM,09/10/2015 08:42:59 AM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,04/25/2016 01:08:26 PM,Code 2 Transport,09/10/2015 08:44:56 AM,1300 Block of JONES ST,San Francisco,94108,B01,41,1466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,1,3,Nob Hill,"(37.7936750957454, -122.41449049505)",152530873-E41 -152933664,52,15112736,Medical Incident,10/20/2015,10/20/2015,10/20/2015 08:37:54 PM,10/20/2015 08:39:06 PM,10/20/2015 08:39:24 PM,10/20/2015 08:39:30 PM,10/20/2015 08:43:30 PM,10/20/2015 08:53:36 PM,10/20/2015 09:10:58 PM,Code 2 Transport,10/20/2015 09:34:05 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",152933664-52 -153063420,E31,15117762,Medical Incident,11/02/2015,11/02/2015,11/02/2015 08:52:44 PM,11/02/2015 08:53:27 PM,11/02/2015 08:54:23 PM,11/02/2015 08:55:19 PM,11/02/2015 08:56:51 PM,04/25/2016 01:07:25 PM,04/25/2016 01:07:25 PM,Code 2 Transport,11/02/2015 09:03:07 PM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",153063420-E31 -160992682,54,16039395,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:06:49 PM,04/08/2016 05:07:29 PM,04/08/2016 05:07:42 PM,04/08/2016 05:07:53 PM,04/08/2016 05:16:50 PM,04/08/2016 05:31:32 PM,04/08/2016 05:43:27 PM,Code 2 Transport,04/08/2016 06:17:19 PM,500 Block of 20TH AVE,San Francisco,94121,B07,14,7165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7774741918641, -122.479242659231)",160992682-54 -160981268,AM08,16038852,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:07:17 AM,04/07/2016 10:08:16 AM,04/07/2016 10:08:52 AM,04/07/2016 10:09:53 AM,04/07/2016 10:30:39 AM,04/07/2016 10:30:40 AM,04/07/2016 10:43:57 AM,Code 2 Transport,04/07/2016 11:14:02 AM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160981268-AM08 -160973377,57,16038580,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:49:52 PM,04/06/2016 05:49:52 PM,04/06/2016 05:54:48 PM,04/06/2016 05:54:56 PM,04/06/2016 06:05:27 PM,04/06/2016 06:21:34 PM,04/06/2016 06:31:13 PM,Code 2 Transport,04/06/2016 06:47:32 PM,MASONIC AV/GEARY BL,San Francisco,94118,B05,10,4411,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",160973377-57 -141331231,E36,14045266,Alarms,05/13/2014,05/13/2014,05/13/2014 11:05:03 AM,05/13/2014 11:06:16 AM,05/13/2014 11:07:35 AM,05/13/2014 11:08:08 AM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,04/25/2016 01:17:22 PM,Fire,05/13/2014 11:48:28 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",141331231-E36 -142420484,AM20,14084125,Medical Incident,08/30/2014,08/29/2014,08/30/2014 04:17:15 AM,08/30/2014 04:17:22 AM,08/30/2014 04:18:16 AM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 04:19:14 AM,200 Block of MAIN ST,San Francisco,94105,B03,35,2117,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.78995234675, -122.392682318412)",142420484-AM20 -142700503,E13,14094569,Medical Incident,09/27/2014,09/26/2014,09/27/2014 03:09:46 AM,09/27/2014 03:09:46 AM,09/27/2014 03:26:29 AM,09/27/2014 03:28:18 AM,09/27/2014 03:32:03 AM,04/25/2016 01:14:52 PM,04/25/2016 01:14:52 PM,No Merit,09/27/2014 03:36:52 AM,MONTGOMERY ST/BROADWAY,San Francisco,94133,B01,13,1231,2,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.7982229704871, -122.403863019987)",142700503-E13 -150112910,B01,15004478,Alarms,01/11/2015,01/11/2015,01/11/2015 06:45:21 PM,01/11/2015 06:46:23 PM,01/11/2015 06:46:30 PM,01/11/2015 06:47:49 PM,01/11/2015 06:48:59 PM,04/25/2016 01:12:53 PM,04/25/2016 01:12:53 PM,Fire,01/11/2015 06:53:04 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Alarm,1,CHIEF,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",150112910-B01 -143371782,87,14119548,Medical Incident,12/03/2014,12/03/2014,12/03/2014 11:54:21 AM,12/03/2014 11:55:35 AM,12/03/2014 11:55:45 AM,12/03/2014 11:56:31 AM,12/03/2014 12:01:41 PM,12/03/2014 12:22:01 PM,12/03/2014 12:26:50 PM,Code 2 Transport,12/03/2014 01:04:02 PM,3500 Block of MISSION ST,San Francisco,94110,B06,32,5626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7393668849403, -122.423797447335)",143371782-87 -152242704,E34,15085448,Traffic Collision,08/12/2015,08/12/2015,08/12/2015 04:47:03 PM,08/12/2015 04:47:35 PM,08/12/2015 04:48:20 PM,08/12/2015 04:49:41 PM,08/12/2015 04:55:46 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Code 2 Transport,08/12/2015 05:09:41 PM,LA PLAYA/FULTON ST,San Francisco,94121,B07,34,7311,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7713960328361, -122.509894748816)",152242704-E34 -141800459,E07,14062096,Medical Incident,06/29/2014,06/28/2014,06/29/2014 02:42:02 AM,06/29/2014 02:43:30 AM,06/29/2014 02:44:54 AM,06/29/2014 02:47:10 AM,06/29/2014 02:50:03 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Code 2 Transport,06/29/2014 02:55:30 AM,12TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7700517185016, -122.413046080447)",141800459-E07 -151502733,KM06,15057179,Medical Incident,05/30/2015,05/30/2015,05/30/2015 05:47:57 PM,05/30/2015 05:49:25 PM,05/30/2015 05:50:13 PM,05/30/2015 05:51:21 PM,05/30/2015 05:55:44 PM,05/30/2015 06:26:17 PM,05/30/2015 06:39:37 PM,Code 2 Transport,05/30/2015 07:07:22 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",151502733-KM06 -150923654,T15,15035168,Elevator / Escalator Rescue,04/02/2015,04/02/2015,04/02/2015 09:48:27 PM,04/02/2015 09:50:05 PM,04/02/2015 09:50:11 PM,04/02/2015 09:51:54 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,04/25/2016 01:11:23 PM,Cancelled,04/02/2015 09:53:39 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,3,3,3,false,Alarm,1,TRUCK,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",150923654-T15 -160940066,79,16037098,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:16:54 AM,04/03/2016 12:19:02 AM,04/03/2016 12:19:20 AM,04/03/2016 12:19:26 AM,04/03/2016 12:22:52 AM,04/03/2016 12:32:10 AM,04/03/2016 12:55:15 AM,Code 2 Transport,04/03/2016 01:18:13 AM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160940066-79 -151931696,E08,15073633,Medical Incident,07/12/2015,07/12/2015,07/12/2015 01:09:02 PM,07/12/2015 01:09:02 PM,07/12/2015 01:09:20 PM,07/12/2015 01:10:26 PM,07/12/2015 01:19:43 PM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/12/2015 01:23:15 PM,2ND ST/KING ST,San Francisco,94107,B03,8,2154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",151931696-E08 -141290005,E12,14043723,Medical Incident,05/09/2014,05/08/2014,05/09/2014 12:04:01 AM,05/09/2014 12:04:01 AM,05/09/2014 12:04:21 AM,05/09/2014 12:06:48 AM,05/09/2014 12:09:11 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,No Merit,05/09/2014 12:12:26 AM,STANYAN ST/HAIGHT ST,San Francisco,94117,B05,12,4553,A,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",141290005-E12 -160983471,60,16039088,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:52:44 PM,04/07/2016 07:53:39 PM,04/07/2016 07:53:50 PM,04/07/2016 07:53:58 PM,04/07/2016 07:58:41 PM,04/07/2016 08:12:56 PM,04/07/2016 08:29:16 PM,Code 2 Transport,04/07/2016 09:12:57 PM,300 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7852582857699, -122.396251395987)",160983471-60 -141800313,B04,14062069,Alarms,06/29/2014,06/28/2014,06/29/2014 01:44:39 AM,06/29/2014 01:46:30 AM,06/29/2014 01:46:58 AM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,04/25/2016 01:16:30 PM,Other,06/29/2014 01:47:51 AM,400 Block of DUBOCE AVE,San Francisco,94117,B02,6,3525,3,3,3,false,Alarm,1,CHIEF,2,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",141800313-B04 -152812696,67,15107924,Medical Incident,10/08/2015,10/08/2015,10/08/2015 04:35:06 PM,10/08/2015 04:38:00 PM,10/08/2015 04:39:24 PM,10/08/2015 04:39:48 PM,10/08/2015 04:54:47 PM,10/08/2015 04:58:08 PM,10/08/2015 05:06:23 PM,Code 2 Transport,10/08/2015 05:34:20 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",152812696-67 -142640324,88,14092240,Medical Incident,09/21/2014,09/20/2014,09/21/2014 01:47:24 AM,09/21/2014 01:50:04 AM,09/21/2014 01:50:35 AM,09/21/2014 01:50:46 AM,09/21/2014 01:52:48 AM,04/25/2016 01:14:59 PM,04/25/2016 01:14:59 PM,Gone on Arrival,09/21/2014 01:56:58 AM,ISIS ST/12TH ST,San Francisco,94103,B02,36,5121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7706103591673, -122.414344257229)",142640324-88 -161001404,AM02,16039737,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:50:15 AM,04/09/2016 11:52:27 AM,04/09/2016 11:54:35 AM,04/09/2016 11:55:30 AM,04/09/2016 12:03:43 PM,04/09/2016 12:14:02 PM,04/09/2016 12:39:32 PM,Code 2 Transport,04/09/2016 01:06:18 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",161001404-AM02 -161001481,74,16039744,Medical Incident,04/09/2016,04/09/2016,04/09/2016 12:15:27 PM,04/09/2016 12:15:27 PM,04/09/2016 12:16:09 PM,04/09/2016 12:16:32 PM,04/09/2016 12:35:38 PM,04/09/2016 12:50:00 PM,04/09/2016 01:11:34 PM,Code 2 Transport,04/09/2016 01:34:29 PM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",161001481-74 -152602602,RS1,15099448,Medical Incident,09/17/2015,09/17/2015,09/17/2015 03:47:53 PM,09/17/2015 03:49:10 PM,09/17/2015 03:49:37 PM,09/17/2015 03:50:50 PM,09/17/2015 03:53:26 PM,04/25/2016 01:08:18 PM,04/25/2016 01:08:18 PM,Code 2 Transport,09/17/2015 03:56:47 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",152602602-RS1 -151283893,E01,15048770,Medical Incident,05/08/2015,05/08/2015,05/08/2015 11:05:08 PM,05/08/2015 11:07:06 PM,05/08/2015 11:07:16 PM,05/08/2015 11:08:28 PM,05/08/2015 11:12:07 PM,04/25/2016 01:10:42 PM,04/25/2016 01:10:42 PM,Code 3 Transport,05/08/2015 11:12:17 PM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",151283893-E01 -143460277,AM24,14123174,Medical Incident,12/12/2014,12/11/2014,12/12/2014 02:57:27 AM,12/12/2014 02:59:00 AM,12/12/2014 02:59:44 AM,12/12/2014 03:00:27 AM,12/12/2014 03:04:16 AM,12/12/2014 03:15:54 AM,12/12/2014 03:31:25 AM,Code 2 Transport,12/12/2014 04:06:14 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7786852295711, -122.405938165868)",143460277-AM24 -143140188,E03,14111089,Medical Incident,11/10/2014,11/09/2014,11/10/2014 02:09:37 AM,11/10/2014 02:11:01 AM,11/10/2014 02:11:09 AM,11/10/2014 02:12:53 AM,11/10/2014 02:15:14 AM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Code 2 Transport,11/10/2014 02:39:49 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7823453363836, -122.417150885287)",143140188-E03 -141401405,KM15,14047974,Medical Incident,05/20/2014,05/20/2014,05/20/2014 11:46:03 AM,05/20/2014 11:47:33 AM,05/20/2014 11:48:20 AM,05/20/2014 11:49:25 AM,05/20/2014 12:03:47 PM,05/20/2014 12:15:59 PM,05/20/2014 12:28:49 PM,Code 3 Transport,05/20/2014 01:01:54 PM,600 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7798433146326, -122.510504603354)",141401405-KM15 -143362367,T14,14119162,Citizen Assist / Service Call,12/02/2014,12/02/2014,12/02/2014 04:30:59 PM,12/02/2014 04:33:15 PM,12/02/2014 04:33:44 PM,12/02/2014 04:35:05 PM,12/02/2014 04:38:58 PM,04/25/2016 01:13:41 PM,04/25/2016 01:13:41 PM,Fire,12/02/2014 04:47:48 PM,800 Block of 32ND AVE,San Francisco,94121,B07,14,7242,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.773157559072, -122.491824979567)",143362367-T14 -160983359,AM08,16039080,Medical Incident,04/07/2016,04/07/2016,04/07/2016 07:18:33 PM,04/07/2016 07:20:06 PM,04/07/2016 07:20:27 PM,04/07/2016 07:21:00 PM,04/07/2016 07:26:59 PM,04/07/2016 07:47:38 PM,04/07/2016 08:13:54 PM,Code 2 Transport,04/07/2016 08:38:40 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160983359-AM08 -141240035,55,14041897,Medical Incident,05/04/2014,05/03/2014,05/04/2014 02:26:54 AM,05/04/2014 02:29:15 AM,05/04/2014 02:30:12 AM,05/04/2014 02:30:30 AM,05/04/2014 02:39:11 AM,05/04/2014 02:46:53 AM,05/04/2014 02:58:41 AM,Code 2 Transport,05/04/2014 03:27:04 AM,MASON ST/ELLIS ST,SAN FRANCISCO,94102,B03,1,1366,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",141240035-55 -150453795,E07,15017695,Medical Incident,02/14/2015,02/14/2015,02/14/2015 11:01:51 PM,02/14/2015 11:01:51 PM,02/14/2015 11:02:14 PM,02/14/2015 11:03:42 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,04/25/2016 01:12:14 PM,Code 2 Transport,02/14/2015 11:05:06 PM,19TH ST/MISSION ST,San Francisco,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7602353559327, -122.419206043807)",150453795-E07 -143513400,E03,14125518,Structure Fire,12/17/2014,12/17/2014,12/17/2014 07:21:44 PM,12/17/2014 07:23:00 PM,12/17/2014 07:32:50 PM,12/17/2014 07:33:00 PM,12/17/2014 07:35:14 PM,04/25/2016 01:13:22 PM,04/25/2016 01:13:22 PM,Fire,12/17/2014 08:19:36 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,2338,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",143513400-E03 -151452188,E35,15055224,Citizen Assist / Service Call,05/25/2015,05/25/2015,05/25/2015 04:13:40 PM,05/25/2015 04:14:39 PM,05/25/2015 04:14:48 PM,05/25/2015 04:16:21 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,04/25/2016 01:10:23 PM,Fire,05/25/2015 04:30:34 PM,500 Block of BEALE ST,San Francisco,94107,B03,8,2134,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7857367878809, -122.389124364412)",151452188-E35 -160923842,53,16036641,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:44:22 PM,04/01/2016 10:45:45 PM,04/01/2016 10:45:58 PM,04/01/2016 10:46:09 PM,04/01/2016 11:02:00 PM,04/01/2016 11:16:51 PM,04/01/2016 11:28:00 PM,Code 2 Transport,04/02/2016 12:08:20 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160923842-53 -151512980,E19,15057600,Medical Incident,05/31/2015,05/31/2015,05/31/2015 07:58:50 PM,05/31/2015 07:59:44 PM,05/31/2015 07:59:56 PM,05/31/2015 08:00:58 PM,05/31/2015 08:04:15 PM,04/25/2016 01:10:17 PM,04/25/2016 01:10:17 PM,Other,05/31/2015 08:21:50 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",151512980-E19 -152274241,75,15086762,Medical Incident,08/15/2015,08/15/2015,08/15/2015 10:59:38 PM,08/15/2015 11:01:03 PM,08/15/2015 11:02:06 PM,08/15/2015 11:02:29 PM,08/15/2015 11:02:29 PM,08/15/2015 11:13:53 PM,08/15/2015 11:29:43 PM,Code 2 Transport,08/15/2015 11:41:45 PM,0 Block of CASTRO ST,San Francisco,94114,B05,6,513,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",152274241-75 -160943727,53,16037460,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:15:12 PM,04/03/2016 11:18:05 PM,04/03/2016 11:18:33 PM,04/03/2016 11:18:45 PM,04/03/2016 11:35:10 PM,04/03/2016 11:46:08 PM,04/04/2016 12:11:46 AM,Code 2 Transport,04/04/2016 12:47:29 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160943727-53 -160930619,AM24,16036730,Medical Incident,04/02/2016,04/01/2016,04/02/2016 06:44:15 AM,04/02/2016 06:44:15 AM,04/02/2016 06:44:57 AM,04/02/2016 06:46:30 AM,04/02/2016 06:59:39 AM,04/02/2016 07:02:04 AM,04/02/2016 07:14:38 AM,Code 2 Transport,04/02/2016 07:44:52 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160930619-AM24 -141331914,88,14045345,Medical Incident,05/13/2014,05/13/2014,05/13/2014 02:03:53 PM,05/13/2014 02:06:59 PM,05/13/2014 02:15:06 PM,05/13/2014 02:15:06 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,No Merit,05/13/2014 02:18:15 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7769455318934, -122.416807079177)",141331914-88 -141030145,82,14034747,Medical Incident,04/13/2014,04/13/2014,04/13/2014 10:42:27 AM,04/13/2014 10:42:49 AM,04/13/2014 10:43:02 AM,04/13/2014 10:43:08 AM,04/13/2014 10:48:39 AM,04/25/2016 01:17:54 PM,04/25/2016 01:17:54 PM,Patient Declined Transport,04/13/2014 11:06:50 AM,2100 Block of 22ND ST,SAN FRANCISCO,94107,B10,37,2546,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7571494114577, -122.402322428099)",141030145-82 -150261349,61,15009972,Traffic Collision,01/26/2015,01/26/2015,01/26/2015 10:45:47 AM,01/26/2015 10:45:47 AM,01/26/2015 10:47:20 AM,01/26/2015 10:47:31 AM,01/26/2015 10:52:02 AM,01/26/2015 11:10:17 AM,01/26/2015 11:31:20 AM,Code 2 Transport,01/26/2015 11:46:29 AM,29TH ST/SAN JOSE AV,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7439422420021, -122.422669446432)",150261349-61 -151191642,E10,15044983,Gas Leak (Natural and LP Gases),04/29/2015,04/29/2015,04/29/2015 11:51:14 AM,04/29/2015 11:52:12 AM,04/29/2015 11:52:33 AM,04/29/2015 11:53:00 AM,04/29/2015 11:57:34 AM,04/25/2016 01:10:53 PM,04/25/2016 01:10:53 PM,Fire,04/29/2015 12:39:39 PM,MASONIC AV/HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",151191642-E10 -151341051,E29,15050792,Medical Incident,05/14/2015,05/14/2015,05/14/2015 09:31:53 AM,05/14/2015 09:32:36 AM,05/14/2015 09:33:27 AM,05/14/2015 09:34:39 AM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,04/25/2016 01:10:36 PM,Code 2 Transport,05/14/2015 09:39:31 AM,KEARNY ST/CLAY ST,San Francisco,94111,B01,13,1244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Chinatown,"(37.7944530044512, -122.404796473576)",151341051-E29 -150222408,E01,15008636,Medical Incident,01/22/2015,01/22/2015,01/22/2015 04:11:15 PM,01/22/2015 04:11:26 PM,01/22/2015 04:12:59 PM,01/22/2015 04:14:41 PM,01/22/2015 04:16:59 PM,04/25/2016 01:12:41 PM,04/25/2016 01:12:41 PM,Code 2 Transport,01/22/2015 04:29:57 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",150222408-E01 -160960188,KM07,16037861,Medical Incident,04/05/2016,04/04/2016,04/05/2016 01:47:14 AM,04/05/2016 01:49:07 AM,04/05/2016 01:49:21 AM,04/05/2016 01:50:35 AM,04/05/2016 01:53:44 AM,04/05/2016 02:22:16 AM,04/05/2016 02:27:54 AM,Code 2 Transport,04/05/2016 02:56:51 AM,0 Block of BLK GRANT AV,San Francisco,94108,B01,1,1321,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.787202625127, -122.404858516174)",160960188-KM07 -161003248,AM16,16039949,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:40:08 PM,04/09/2016 09:43:05 PM,04/09/2016 09:43:41 PM,04/09/2016 09:44:50 PM,04/09/2016 09:47:24 PM,04/09/2016 10:18:34 PM,04/09/2016 10:27:52 PM,Code 2 Transport,04/09/2016 10:55:50 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",161003248-AM16 -160990503,AM04,16039199,Medical Incident,04/08/2016,04/07/2016,04/08/2016 06:44:36 AM,04/08/2016 06:46:01 AM,04/08/2016 06:46:18 AM,04/08/2016 06:47:12 AM,04/08/2016 06:54:10 AM,04/08/2016 07:17:11 AM,04/08/2016 07:46:13 AM,Code 2 Transport,04/08/2016 08:12:32 AM,ARGUELLO BL/JACKSON ST,San Francisco,94118,B07,10,4443,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7893009490806, -122.459452536919)",160990503-AM04 -143350515,B10,14118605,Outside Fire,12/01/2014,11/30/2014,12/01/2014 07:09:16 AM,12/01/2014 07:10:47 AM,12/01/2014 07:10:55 AM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,04/25/2016 01:13:43 PM,Fire,12/01/2014 07:11:55 AM,PENNSYLVANIA AV/CESAR CHAVEZ ST,San Francisco,94124,B10,25,2635,3,3,3,false,Fire,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7500215081488, -122.392381993965)",143350515-B10 -152573911,E17,15098475,Medical Incident,09/14/2015,09/14/2015,09/14/2015 11:07:09 PM,09/14/2015 11:08:47 PM,09/14/2015 11:09:39 PM,09/14/2015 11:11:46 PM,09/14/2015 11:18:30 PM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 2 Transport,09/14/2015 11:42:26 PM,0 Block of REUEL CT,San Francisco,94124,B10,25,652,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",152573911-E17 -153402417,75,15130905,Medical Incident,12/06/2015,12/06/2015,12/06/2015 04:29:56 PM,12/06/2015 04:31:19 PM,12/06/2015 04:31:38 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,04/25/2016 01:06:47 PM,No Merit,12/06/2015 04:32:00 PM,BAYSHORE BL/PAUL AV,San Francisco,94124,B10,42,6324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7236162096696, -122.40078474994)",153402417-75 -150152031,T16,15005976,Alarms,01/15/2015,01/15/2015,01/15/2015 02:08:48 PM,01/15/2015 02:10:22 PM,01/15/2015 02:10:29 PM,01/15/2015 02:12:20 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,04/25/2016 01:12:49 PM,Fire,01/15/2015 02:14:56 PM,1400 Block of VALLEJO ST,San Francisco,94109,B04,41,3126,3,3,3,false,Alarm,1,TRUCK,3,4,3,Russian Hill,"(37.7970585479742, -122.421149855192)",150152031-T16 -141343976,RC1,14045939,Medical Incident,05/14/2014,05/14/2014,05/14/2014 09:53:58 PM,05/14/2014 09:55:10 PM,05/14/2014 09:57:14 PM,05/14/2014 09:59:25 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Code 2 Transport,05/14/2014 10:02:09 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7812234542945, -122.408928070797)",141343976-RC1 -151073207,56,15040631,Medical Incident,04/17/2015,04/17/2015,04/17/2015 06:52:29 PM,04/17/2015 06:52:29 PM,04/17/2015 06:54:10 PM,04/17/2015 06:54:48 PM,04/17/2015 06:59:58 PM,04/17/2015 07:15:39 PM,04/17/2015 07:38:42 PM,Code 2 Transport,04/17/2015 08:08:29 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",151073207-56 -152020316,E14,15076839,Alarms,07/21/2015,07/20/2015,07/21/2015 03:31:00 AM,07/21/2015 03:32:59 AM,07/21/2015 03:33:03 AM,07/21/2015 03:34:49 AM,07/21/2015 03:37:37 AM,04/25/2016 01:09:21 PM,04/25/2016 01:09:21 PM,Fire,07/21/2015 03:43:04 AM,300 Block of 31ST AVE,San Francisco,94121,B07,14,7237,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7826555337918, -122.491436722689)",152020316-E14 -143471679,E28,14123782,Medical Incident,12/13/2014,12/13/2014,12/13/2014 12:31:09 PM,12/13/2014 12:31:18 PM,12/13/2014 12:32:10 PM,12/13/2014 12:32:54 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,04/25/2016 01:13:28 PM,Code 2 Transport,12/13/2014 12:34:18 PM,200 Block of NORTH POINT ST,San Francisco,94133,B01,28,1262,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8068062377674, -122.411308750281)",143471679-E28 -160942274,85,16037307,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:16:25 PM,04/03/2016 03:18:07 PM,04/03/2016 03:18:24 PM,04/03/2016 03:18:35 PM,04/03/2016 03:23:52 PM,04/03/2016 03:40:20 PM,04/03/2016 04:04:55 PM,Code 2 Transport,04/03/2016 04:37:27 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160942274-85 -142003084,E07,14069366,Medical Incident,07/19/2014,07/19/2014,07/19/2014 08:38:27 PM,07/19/2014 08:39:13 PM,07/19/2014 08:40:07 PM,07/19/2014 08:41:10 PM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,04/25/2016 01:16:08 PM,Code 2 Transport,07/19/2014 08:51:45 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7594297986956, -122.419198310755)",142003084-E07 -150323393,RC1,15012529,Medical Incident,02/01/2015,02/01/2015,02/01/2015 09:13:35 PM,02/01/2015 09:14:26 PM,02/01/2015 09:17:22 PM,02/01/2015 09:17:45 PM,02/01/2015 09:20:46 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Code 2 Transport,02/01/2015 09:40:59 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",150323393-RC1 -153191737,T03,15122658,Structure Fire,11/15/2015,11/15/2015,11/15/2015 12:59:58 PM,11/15/2015 12:59:58 PM,11/15/2015 01:00:20 PM,11/15/2015 01:01:22 PM,11/15/2015 01:03:29 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Fire,11/15/2015 01:03:52 PM,TURK ST/HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",153191737-T03 -142812678,82,14098949,Medical Incident,10/08/2014,10/08/2014,10/08/2014 05:21:58 PM,10/08/2014 05:23:12 PM,10/08/2014 05:25:57 PM,10/08/2014 05:25:57 PM,10/08/2014 05:47:27 PM,10/08/2014 05:47:34 PM,10/08/2014 06:20:43 PM,Code 2 Transport,10/08/2014 06:31:37 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",142812678-82 -151843871,T01,15070409,Structure Fire,07/03/2015,07/03/2015,07/03/2015 10:28:19 PM,07/03/2015 10:28:57 PM,07/03/2015 10:29:04 PM,07/03/2015 10:30:36 PM,07/03/2015 10:37:57 PM,04/25/2016 01:09:40 PM,04/25/2016 01:09:40 PM,Fire,07/03/2015 10:38:03 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,10,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",151843871-T01 -150580015,T18,15021995,Citizen Assist / Service Call,02/27/2015,02/26/2015,02/27/2015 12:04:00 AM,02/27/2015 12:07:38 AM,02/27/2015 12:08:03 AM,02/27/2015 12:09:31 AM,02/27/2015 12:10:18 AM,04/25/2016 01:12:01 PM,04/25/2016 01:12:01 PM,Fire,02/27/2015 12:15:29 AM,1900 Block of 33RD AVE,San Francisco,94116,B08,18,7544,3,3,3,false,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7507821985032, -122.491209316977)",150580015-T18 -152591358,E09,15098983,Traffic Collision,09/16/2015,09/16/2015,09/16/2015 11:02:18 AM,09/16/2015 11:02:18 AM,09/16/2015 11:03:20 AM,09/16/2015 11:04:54 AM,09/16/2015 11:07:31 AM,04/25/2016 01:08:19 PM,04/25/2016 01:08:19 PM,Code 3 Transport,09/16/2015 11:36:46 AM,CESAR CHAVEZ ST/TENNESSEE ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7502059759559, -122.388507729538)",152591358-E09 -160972891,76,16038519,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:14:23 PM,04/06/2016 04:15:11 PM,04/06/2016 04:15:39 PM,04/06/2016 04:15:47 PM,04/06/2016 04:17:31 PM,04/06/2016 04:28:32 PM,04/06/2016 04:38:33 PM,Code 2 Transport,04/06/2016 05:00:35 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160972891-76 -150141678,E36,15005533,Medical Incident,01/14/2015,01/14/2015,01/14/2015 12:29:51 PM,01/14/2015 12:31:22 PM,01/14/2015 12:31:28 PM,01/14/2015 12:31:37 PM,01/14/2015 12:34:00 PM,04/25/2016 01:12:50 PM,04/25/2016 01:12:50 PM,Patient Declined Transport,01/14/2015 12:43:09 PM,200 Block of 7TH ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7774003641379, -122.408565501698)",150141678-E36 -153353228,E09,15128950,Medical Incident,12/01/2015,12/01/2015,12/01/2015 06:28:36 PM,12/01/2015 06:28:36 PM,12/01/2015 06:28:53 PM,12/01/2015 06:30:17 PM,12/01/2015 06:32:57 PM,04/25/2016 01:06:53 PM,04/25/2016 01:06:53 PM,Code 2 Transport,12/01/2015 06:46:51 PM,1200 Block of UTAH ST,San Francisco,94110,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Mission,"(37.7536963307706, -122.405461613953)",153353228-E09 -151732201,55,15066099,Medical Incident,06/22/2015,06/22/2015,06/22/2015 04:07:12 PM,06/22/2015 04:07:12 PM,06/22/2015 04:07:48 PM,06/22/2015 04:08:23 PM,06/22/2015 04:19:09 PM,06/22/2015 04:27:26 PM,06/22/2015 05:06:58 PM,Code 2 Transport,06/22/2015 05:28:24 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",151732201-55 -143142794,86,14111341,Medical Incident,11/10/2014,11/10/2014,11/10/2014 06:36:54 PM,11/10/2014 06:36:54 PM,11/10/2014 06:37:07 PM,11/10/2014 06:37:41 PM,11/10/2014 07:01:20 PM,11/10/2014 07:15:49 PM,11/10/2014 07:40:52 PM,Code 2 Transport,11/10/2014 08:05:55 PM,300 Block of 4TH ST,San Francisco,94107,B03,8,2216,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809657852438, -122.399932025045)",143142794-86 -161003579,89,16039984,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:00:32 PM,04/09/2016 11:05:17 PM,04/09/2016 11:07:09 PM,04/09/2016 11:07:32 PM,04/09/2016 11:19:38 PM,04/10/2016 12:02:34 AM,04/10/2016 12:02:37 AM,Code 2 Transport,04/10/2016 12:47:55 AM,1200 Block of LANE ST,San Francisco,94124,B10,17,6518,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7344575097582, -122.387566523779)",161003579-89 -153000783,E42,15115047,Medical Incident,10/27/2015,10/27/2015,10/27/2015 08:18:31 AM,10/27/2015 08:19:00 AM,10/27/2015 08:20:04 AM,10/27/2015 08:21:33 AM,10/27/2015 08:23:15 AM,04/25/2016 01:07:33 PM,04/25/2016 01:07:33 PM,Code 2 Transport,10/27/2015 08:34:44 AM,400 Block of ELMIRA ST,San Francisco,94124,B10,42,6361,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7314726661192, -122.403216466778)",153000783-E42 -143260593,KM07,14115362,Medical Incident,11/22/2014,11/21/2014,11/22/2014 05:11:52 AM,11/22/2014 05:15:06 AM,11/22/2014 05:15:49 AM,11/22/2014 05:16:14 AM,11/22/2014 05:19:41 AM,11/22/2014 05:25:24 AM,11/22/2014 05:46:45 AM,Code 2 Transport,11/22/2014 06:36:45 AM,800 Block of ATHENS ST,San Francisco,94112,B09,43,6173,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7150593394985, -122.433325173779)",143260593-KM07 -160970012,76,16038238,Medical Incident,04/06/2016,04/05/2016,04/06/2016 12:03:00 AM,04/06/2016 12:04:36 AM,04/06/2016 12:04:55 AM,04/06/2016 12:05:01 AM,04/06/2016 12:08:41 AM,04/06/2016 12:23:57 AM,04/06/2016 12:31:05 AM,Code 2 Transport,04/06/2016 01:14:51 AM,3RD ST/MARKET ST,San Francisco,94103,B03,1,2211,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",160970012-76 -142092335,E32,14072523,Medical Incident,07/28/2014,07/28/2014,07/28/2014 04:55:40 PM,07/28/2014 04:59:00 PM,07/28/2014 05:01:26 PM,07/28/2014 05:03:47 PM,07/28/2014 05:06:27 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Other,07/28/2014 05:34:07 PM,3400 Block of MISSION ST,San Francisco,94110,B06,32,5626,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7420041169835, -122.422286651689)",142092335-E32 -150210101,64,15008060,Medical Incident,01/21/2015,01/20/2015,01/21/2015 12:56:28 AM,01/21/2015 12:56:57 AM,01/21/2015 12:57:38 AM,01/21/2015 12:57:58 AM,01/21/2015 01:06:19 AM,01/21/2015 01:19:50 AM,01/21/2015 01:33:07 AM,Code 2 Transport,01/21/2015 02:11:32 AM,1100 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7875096258655, -122.420136159979)",150210101-64 -142920637,D3,14102894,Structure Fire,10/19/2014,10/18/2014,10/19/2014 04:27:59 AM,10/19/2014 04:33:47 AM,10/19/2014 04:34:37 AM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,04/25/2016 01:14:29 PM,Fire,10/19/2014 06:33:54 AM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,3,3,3,false,Alarm,1,CHIEF,8,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",142920637-D3 -141842085,E05,14063715,Medical Incident,07/03/2014,07/03/2014,07/03/2014 03:34:54 PM,07/03/2014 03:36:02 PM,07/03/2014 03:36:36 PM,07/03/2014 03:37:31 PM,07/03/2014 03:41:38 PM,04/25/2016 01:16:25 PM,04/25/2016 01:16:25 PM,Code 2 Transport,07/03/2014 03:54:33 PM,800 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7858627664608, -122.418110537872)",141842085-E05 -151303297,89,15049503,Medical Incident,05/10/2015,05/10/2015,05/10/2015 11:04:18 PM,05/10/2015 11:06:40 PM,05/10/2015 11:07:37 PM,05/10/2015 11:07:42 PM,05/10/2015 11:16:00 PM,05/10/2015 11:37:24 PM,05/10/2015 11:51:16 PM,Code 2 Transport,05/11/2015 12:29:09 AM,0 Block of 5TH ST,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7829835080746, -122.406698577014)",151303297-89 -141363945,E10,14046745,Medical Incident,05/16/2014,05/16/2014,05/16/2014 11:46:38 PM,05/16/2014 11:47:31 PM,05/16/2014 11:48:18 PM,05/16/2014 11:49:38 PM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,04/25/2016 01:17:17 PM,Cancelled,05/16/2014 11:50:58 PM,3700 Block of CALIFORNIA ST,San Francisco,94118,B07,10,449,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",141363945-E10 -153152662,E36,15121128,,11/11/2015,11/11/2015,11/11/2015 04:55:00 PM,11/11/2015 04:57:00 PM,11/11/2015 04:57:00 PM,11/11/2015 04:59:00 PM,11/11/2015 05:01:00 PM,04/25/2016 01:07:00 PM,04/25/2016 01:07:00 PM,SFPD,11/11/2015 05:03:00 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",153152662-E36 -152830203,E22,15108491,Medical Incident,10/10/2015,10/09/2015,10/10/2015 01:04:13 AM,10/10/2015 01:05:37 AM,10/10/2015 01:06:15 AM,10/10/2015 01:07:49 AM,10/10/2015 01:10:08 AM,04/25/2016 01:07:51 PM,04/25/2016 01:07:51 PM,Code 2 Transport,10/10/2015 01:17:02 AM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",152830203-E22 -143330387,E43,14117879,Other,11/29/2014,11/28/2014,11/29/2014 02:46:36 AM,11/29/2014 02:46:55 AM,11/29/2014 02:47:27 AM,11/29/2014 02:49:41 AM,11/29/2014 02:51:34 AM,04/25/2016 01:13:45 PM,04/25/2016 01:13:45 PM,Fire,11/29/2014 03:03:04 AM,800 Block of PRAGUE ST,San Francisco,94112,B09,43,622,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7104309664976, -122.434220514636)",143330387-E43 -153321745,E42,15127697,Traffic Collision,11/28/2015,11/28/2015,11/28/2015 01:24:08 PM,11/28/2015 01:25:00 PM,11/28/2015 01:25:49 PM,11/28/2015 01:29:46 PM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,04/25/2016 01:06:57 PM,Cancelled,11/28/2015 01:32:36 PM,100 Block of AVENUE C,San Francisco,94130,B10,42,6373,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",153321745-E42 -151790874,RC3,15068135,Medical Incident,06/28/2015,06/27/2015,06/28/2015 06:58:26 AM,06/28/2015 07:00:16 AM,06/28/2015 07:00:52 AM,06/28/2015 07:02:39 AM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,04/25/2016 01:09:46 PM,No Merit,06/28/2015 07:06:52 AM,LA SALLE AV/INGALLS ST,San Francisco,94124,B10,17,6637,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7305817194451, -122.381439390971)",151790874-RC3 -150390688,KM03,15015077,Medical Incident,02/08/2015,02/07/2015,02/08/2015 05:09:08 AM,02/08/2015 05:11:56 AM,02/08/2015 05:12:04 AM,02/08/2015 05:12:25 AM,02/08/2015 05:25:47 AM,02/08/2015 05:47:09 AM,04/25/2016 01:12:22 PM,Code 2 Transport,02/08/2015 06:48:25 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",150390688-KM03 -160940251,53,16037122,Medical Incident,04/03/2016,04/02/2016,04/03/2016 01:25:41 AM,04/03/2016 01:25:41 AM,04/03/2016 01:38:20 AM,04/03/2016 01:38:36 AM,04/03/2016 02:00:28 AM,04/03/2016 02:01:12 AM,04/03/2016 02:23:39 AM,Code 2 Transport,04/03/2016 02:58:06 AM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160940251-53 -142043497,E07,14070756,Medical Incident,07/23/2014,07/23/2014,07/23/2014 08:03:48 PM,07/23/2014 08:03:48 PM,07/23/2014 08:04:25 PM,07/23/2014 08:06:44 PM,07/23/2014 08:08:31 PM,04/25/2016 01:16:04 PM,04/25/2016 01:16:04 PM,Code 2 Transport,07/23/2014 08:14:08 PM,MISSION ST/18TH ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",142043497-E07 -160930284,79,16036696,Medical Incident,04/02/2016,04/01/2016,04/02/2016 01:57:17 AM,04/02/2016 01:58:27 AM,04/02/2016 01:58:57 AM,04/02/2016 01:59:09 AM,04/02/2016 02:03:15 AM,04/02/2016 02:23:35 AM,04/02/2016 02:41:05 AM,Code 3 Transport,04/02/2016 03:15:15 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160930284-79 -141600325,68,14055050,Medical Incident,06/09/2014,06/08/2014,06/09/2014 04:04:27 AM,06/09/2014 04:06:08 AM,06/09/2014 04:07:29 AM,06/09/2014 04:13:09 AM,06/09/2014 04:26:20 AM,06/09/2014 04:48:46 AM,06/09/2014 05:10:28 AM,Code 2 Transport,06/09/2014 05:13:51 AM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",141600325-68 -152200564,KM07,15083688,Medical Incident,08/08/2015,08/07/2015,08/08/2015 04:23:30 AM,08/08/2015 04:25:38 AM,08/08/2015 04:26:22 AM,08/08/2015 04:26:44 AM,08/08/2015 04:40:21 AM,08/08/2015 05:15:06 AM,08/08/2015 05:22:59 AM,Code 2 Transport,08/08/2015 06:30:15 AM,1700 Block of 15TH ST,San Francisco,94103,B02,6,5226,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7665569549171, -122.422667886722)",152200564-KM07 -161003591,86,16039986,Medical Incident,04/09/2016,04/09/2016,04/09/2016 11:08:57 PM,04/09/2016 11:09:38 PM,04/09/2016 11:29:03 PM,04/09/2016 11:29:16 PM,04/09/2016 11:30:15 PM,04/09/2016 11:45:19 PM,04/09/2016 11:59:06 PM,Code 2 Transport,04/10/2016 12:29:42 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7807920802753, -122.408385745499)",161003591-86 -142861845,E03,14100841,Medical Incident,10/13/2014,10/13/2014,10/13/2014 01:49:25 PM,10/13/2014 01:49:25 PM,10/13/2014 01:50:10 PM,10/13/2014 01:51:59 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,04/25/2016 01:14:34 PM,Code 2 Transport,10/13/2014 01:55:03 PM,FERN ST/VAN NESS AV,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Nob Hill,"(37.7880011777275, -122.421954907158)",142861845-E03 -150812426,E12,15031103,Medical Incident,03/22/2015,03/22/2015,03/22/2015 04:38:45 PM,03/22/2015 04:41:53 PM,03/22/2015 04:42:53 PM,03/22/2015 04:43:55 PM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,04/25/2016 01:11:35 PM,Code 2 Transport,03/22/2015 04:46:35 PM,19TH AV/IRVING ST,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",150812426-E12 -141040326,KM07,14035213,Medical Incident,04/14/2014,04/14/2014,04/14/2014 08:19:37 PM,04/14/2014 08:22:08 PM,04/14/2014 08:40:38 PM,04/14/2014 08:41:02 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,04/25/2016 01:17:52 PM,Unable to Locate,04/25/2016 01:17:52 PM,1600 Block of THE EMBARCADERONORTH ST,,94133,B01,28,941,1,1,2,false,Non Life-threatening,1,PRIVATE,4,1,3,North Beach,"(37.8084350175869, -122.410774214375)",141040326-KM07 -143140980,E41,14111176,Medical Incident,11/10/2014,11/10/2014,11/10/2014 09:36:19 AM,11/10/2014 09:38:38 AM,11/10/2014 09:39:26 AM,11/10/2014 09:42:40 AM,11/10/2014 09:46:30 AM,04/25/2016 01:14:05 PM,04/25/2016 01:14:05 PM,Code 2 Transport,11/10/2014 10:13:41 AM,1400 Block of PINE ST,San Francisco,94109,B04,3,3122,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",143140980-E41 -152092797,E01,15079737,Medical Incident,07/28/2015,07/28/2015,07/28/2015 05:19:08 PM,07/28/2015 05:20:41 PM,07/28/2015 05:21:40 PM,07/28/2015 05:23:08 PM,07/28/2015 05:31:39 PM,04/25/2016 01:09:13 PM,04/25/2016 01:09:13 PM,Code 2 Transport,07/28/2015 05:38:50 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",152092797-E01 -141220068,B02,14041222,Outside Fire,05/02/2014,05/01/2014,05/02/2014 07:15:48 AM,05/02/2014 07:18:25 AM,05/02/2014 07:18:44 AM,05/02/2014 07:22:13 AM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,04/25/2016 01:17:34 PM,Fire,05/02/2014 07:28:45 AM,GAMBIER ST/BURROWS ST,SAN FRANCISCO,94134,B09,43,6151,3,3,3,true,Fire,1,CHIEF,3,9,9,Excelsior,"(37.7244542152122, -122.420861151748)",141220068-B02 -141732091,E12,14059728,Outside Fire,06/22/2014,06/22/2014,06/22/2014 03:53:30 PM,06/22/2014 03:54:31 PM,06/22/2014 03:54:42 PM,06/22/2014 03:56:18 PM,06/22/2014 03:58:57 PM,04/25/2016 01:16:37 PM,04/25/2016 01:16:37 PM,Fire,06/22/2014 04:03:47 PM,4400 Block of 17TH ST,San Francisco,94114,B05,12,5255,3,3,3,true,Fire,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7620264632456, -122.443782630259)",141732091-E12 -153330794,RC1,15127987,Medical Incident,11/29/2015,11/29/2015,11/29/2015 08:24:15 AM,11/29/2015 08:26:53 AM,11/29/2015 08:27:21 AM,11/29/2015 08:30:29 AM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,04/25/2016 01:06:56 PM,Code 2 Transport,11/29/2015 08:34:18 AM,1200 Block of JONES ST,San Francisco,94109,B01,41,1465,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Nob Hill,"(37.7925546958216, -122.414405940495)",153330794-RC1 -143600348,66,14128664,Medical Incident,12/26/2014,12/25/2014,12/26/2014 04:47:22 AM,12/26/2014 04:48:55 AM,12/26/2014 04:49:27 AM,12/26/2014 04:50:42 AM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Code 2 Transport,12/26/2014 04:53:33 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",143600348-66 -152762237,B03,15105823,Structure Fire,10/03/2015,10/03/2015,10/03/2015 02:55:28 PM,10/03/2015 02:55:41 PM,10/03/2015 02:56:10 PM,10/03/2015 02:56:35 PM,10/03/2015 02:59:48 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Fire,10/03/2015 03:20:21 PM,200 Block of FREMONT ST,San Francisco,94105,B03,35,2137,3,3,3,false,Alarm,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7889437645084, -122.394688229661)",152762237-B03 -143220392,T01,14113893,Structure Fire,11/18/2014,11/17/2014,11/18/2014 05:46:24 AM,11/18/2014 05:46:24 AM,11/18/2014 05:46:34 AM,11/18/2014 05:48:00 AM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,04/25/2016 01:13:57 PM,Fire,11/18/2014 05:50:43 AM,3RD ST/HOWARD ST,San Francisco,94105,B03,1,2177,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",143220392-T01 -143460213,B03,14123163,Alarms,12/12/2014,12/11/2014,12/12/2014 02:06:13 AM,12/12/2014 02:06:43 AM,12/12/2014 02:07:24 AM,12/12/2014 02:09:19 AM,12/12/2014 02:12:27 AM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Fire,12/12/2014 02:13:41 AM,1600 Block of OWENS ST,San Francisco,94158,B03,29,2414,3,3,3,false,Alarm,1,CHIEF,2,3,6,Mission Bay,"(37.7680699628929, -122.394293450332)",143460213-B03 -150553681,71,15021246,Medical Incident,02/24/2015,02/24/2015,02/24/2015 09:15:57 PM,02/24/2015 09:18:09 PM,02/24/2015 09:18:37 PM,02/24/2015 09:19:03 PM,02/24/2015 09:29:52 PM,04/25/2016 01:12:03 PM,04/25/2016 01:12:03 PM,No Merit,02/24/2015 09:33:41 PM,0 Block of FARVIEW CT,San Francisco,94131,B08,20,5362,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7555539157621, -122.45016894149)",150553681-71 -160983118,65,16039056,Medical Incident,04/07/2016,04/07/2016,04/07/2016 06:14:41 PM,04/07/2016 06:18:26 PM,04/07/2016 06:19:38 PM,04/07/2016 06:23:26 PM,04/07/2016 06:34:29 PM,04/07/2016 06:38:41 PM,04/07/2016 07:04:26 PM,Code 2 Transport,04/07/2016 07:25:27 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",160983118-65 -143450271,KM07,14122563,Medical Incident,12/11/2014,12/10/2014,12/11/2014 02:24:45 AM,12/11/2014 02:24:45 AM,12/11/2014 02:29:20 AM,12/11/2014 02:30:22 AM,12/11/2014 02:31:56 AM,04/25/2016 01:13:31 PM,04/25/2016 01:13:31 PM,Patient Declined Transport,12/11/2014 03:18:42 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",143450271-KM07 -160980504,63,16038783,Medical Incident,04/07/2016,04/06/2016,04/07/2016 05:08:23 AM,04/07/2016 05:09:11 AM,04/07/2016 05:10:25 AM,04/07/2016 05:10:34 AM,04/07/2016 05:17:09 AM,04/07/2016 05:27:12 AM,04/07/2016 05:37:01 AM,Code 2 Transport,04/07/2016 06:09:43 AM,1600 Block of STEINER ST,San Francisco,94115,B04,5,3622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7845570453149, -122.434577795822)",160980504-63 -160940587,72,16037150,Medical Incident,04/03/2016,04/02/2016,04/03/2016 04:18:48 AM,04/03/2016 04:19:59 AM,04/03/2016 04:20:59 AM,04/03/2016 04:21:15 AM,04/03/2016 04:26:20 AM,04/03/2016 04:57:37 AM,04/03/2016 05:29:18 AM,Code 2 Transport,04/03/2016 05:59:06 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7877468463797, -122.396934740624)",160940587-72 -152063865,57,15078691,Medical Incident,07/25/2015,07/25/2015,07/25/2015 11:16:15 PM,07/25/2015 11:18:54 PM,07/25/2015 11:19:50 PM,07/25/2015 11:20:27 PM,07/25/2015 11:24:55 PM,07/25/2015 11:46:06 PM,07/26/2015 12:05:00 AM,Code 2 Transport,07/26/2015 12:32:00 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",152063865-57 -142421719,RS1,14084230,Medical Incident,08/30/2014,08/30/2014,08/30/2014 01:31:21 PM,08/30/2014 01:33:16 PM,08/30/2014 01:33:41 PM,08/30/2014 01:35:07 PM,08/30/2014 01:37:28 PM,04/25/2016 01:15:22 PM,04/25/2016 01:15:22 PM,Code 2 Transport,08/30/2014 01:38:32 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",142421719-RS1 -141652901,E06,14057029,Medical Incident,06/14/2014,06/14/2014,06/14/2014 07:07:53 PM,06/14/2014 07:11:38 PM,06/14/2014 07:12:27 PM,06/14/2014 07:13:50 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,04/25/2016 01:16:46 PM,Code 2 Transport,06/14/2014 07:16:06 PM,900 Block of BUENAVISTAWEST AV,San Francisco,94117,B05,21,4353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7699941054658, -122.44324157754)",141652901-E06 -143642850,RS1,14130365,Medical Incident,12/30/2014,12/30/2014,12/30/2014 06:10:15 PM,12/30/2014 06:10:54 PM,12/30/2014 06:11:26 PM,12/30/2014 06:11:50 PM,12/30/2014 06:15:17 PM,04/25/2016 01:13:08 PM,04/25/2016 01:13:08 PM,Code 2 Transport,12/30/2014 06:48:06 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",143642850-RS1 -151623499,E31,15062067,Structure Fire,06/11/2015,06/11/2015,06/11/2015 08:43:10 PM,06/11/2015 08:43:59 PM,06/11/2015 08:44:38 PM,06/11/2015 08:45:44 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/11/2015 08:49:58 PM,500 Block of 22ND AVE,San Francisco,94121,B07,14,7176,3,3,3,false,Alarm,1,ENGINE,7,7,1,Outer Richmond,"(37.7773769744836, -122.481382829615)",151623499-E31 -142212574,E01,14076785,Medical Incident,08/09/2014,08/09/2014,08/09/2014 04:48:43 PM,08/09/2014 04:48:55 PM,08/09/2014 04:51:12 PM,08/09/2014 04:51:12 PM,08/09/2014 04:56:13 PM,04/25/2016 01:15:45 PM,04/25/2016 01:15:45 PM,Patient Declined Transport,08/09/2014 05:14:47 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",142212574-E01 -141491956,E03,14051214,Medical Incident,05/29/2014,05/29/2014,05/29/2014 02:14:51 PM,05/29/2014 02:16:22 PM,05/29/2014 02:17:01 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,04/25/2016 01:17:04 PM,Code 2 Transport,05/29/2014 02:17:50 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7824182864419, -122.403869611535)",141491956-E03 -141561659,88,14053684,Traffic Collision,06/05/2014,06/05/2014,06/05/2014 01:02:33 PM,06/05/2014 01:03:47 PM,06/05/2014 01:06:33 PM,06/05/2014 01:07:00 PM,06/05/2014 01:26:51 PM,06/05/2014 01:27:14 PM,06/05/2014 01:34:19 PM,Code 3 Transport,06/05/2014 02:17:35 PM,14TH ST/VALENCIA ST,San Francisco,94103,B02,36,5215,A,A,2,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7681396851482, -122.422199175206)",141561659-88 -150082476,70,15003210,Medical Incident,01/08/2015,01/08/2015,01/08/2015 03:56:59 PM,01/08/2015 04:00:56 PM,01/08/2015 04:03:18 PM,01/08/2015 04:05:28 PM,01/08/2015 04:34:05 PM,01/08/2015 04:52:17 PM,01/08/2015 04:55:00 PM,Code 2 Transport,01/08/2015 05:42:07 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",150082476-70 -161003315,79,16039955,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:58:37 PM,04/09/2016 10:00:36 PM,04/09/2016 10:01:04 PM,04/09/2016 10:01:21 PM,04/09/2016 10:05:27 PM,04/09/2016 10:13:51 PM,04/09/2016 10:33:23 PM,Code 2 Transport,04/09/2016 11:05:48 PM,800 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",161003315-79 -150180827,64,15007023,Medical Incident,01/18/2015,01/17/2015,01/18/2015 07:55:54 AM,01/18/2015 07:56:21 AM,01/18/2015 07:57:27 AM,01/18/2015 07:57:38 AM,01/18/2015 08:08:42 AM,04/25/2016 01:12:46 PM,04/25/2016 01:12:46 PM,Patient Declined Transport,01/18/2015 08:45:00 AM,200 Block of MORSE ST,San Francisco,94112,B09,43,6222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7128440322007, -122.439693831099)",150180827-64 -141522840,B03,14052342,Fuel Spill,06/01/2014,06/01/2014,06/01/2014 08:38:58 PM,06/01/2014 08:42:01 PM,06/01/2014 08:43:21 PM,06/01/2014 08:45:11 PM,06/01/2014 08:50:56 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Fire,06/01/2014 09:00:37 PM,MISSION ST/14TH ST,San Francisco,94103,B02,36,5215,3,3,3,false,Alarm,1,CHIEF,3,2,9,Mission,"(37.7682736543413, -122.419981513232)",141522840-B03 -142771119,84,14097306,Medical Incident,10/04/2014,10/04/2014,10/04/2014 08:43:00 AM,10/04/2014 08:43:44 AM,10/04/2014 08:44:19 AM,10/04/2014 08:44:28 AM,10/04/2014 08:47:42 AM,10/04/2014 08:59:24 AM,10/04/2014 09:14:19 AM,Code 2 Transport,10/04/2014 09:57:25 AM,300 Block of 11TH ST,San Francisco,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7712855259531, -122.413204267102)",142771119-84 -141820628,E01,14062918,Medical Incident,07/01/2014,07/01/2014,07/01/2014 08:00:24 AM,07/01/2014 08:02:29 AM,07/01/2014 08:03:57 AM,07/01/2014 08:04:37 AM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,04/25/2016 01:16:28 PM,Other,07/01/2014 08:04:38 AM,TOWNSEND ST/4TH ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7770893320016, -122.394981482757)",141820628-E01 -150752744,57,15028871,Medical Incident,03/16/2015,03/16/2015,03/16/2015 05:10:44 PM,03/16/2015 05:12:22 PM,03/16/2015 05:12:31 PM,03/16/2015 05:13:50 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,04/25/2016 01:11:41 PM,Code 2 Transport,03/16/2015 05:17:56 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",150752744-57 -143332789,70,14118116,Medical Incident,11/29/2014,11/29/2014,11/29/2014 06:15:42 PM,11/29/2014 06:15:42 PM,11/29/2014 06:21:38 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,04/25/2016 01:13:44 PM,Code 2 Transport,11/29/2014 06:23:51 PM,11TH ST/HOWARD ST,San Francisco,94103,B02,36,5114,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7731005870473, -122.415561389884)",143332789-70 -150870510,E14,15033111,Medical Incident,03/28/2015,03/27/2015,03/28/2015 04:12:32 AM,03/28/2015 04:14:39 AM,03/28/2015 04:15:28 AM,03/28/2015 04:17:04 AM,03/28/2015 04:19:03 AM,04/25/2016 01:11:29 PM,04/25/2016 01:11:29 PM,Code 2 Transport,03/28/2015 04:30:21 AM,400 Block of 32ND AVE,San Francisco,94121,B07,14,7237,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7807150242831, -122.492234634841)",150870510-E14 -150542179,64,15020802,Medical Incident,02/23/2015,02/23/2015,02/23/2015 02:29:06 PM,02/23/2015 02:30:51 PM,02/23/2015 02:32:21 PM,02/23/2015 02:32:30 PM,02/23/2015 02:36:48 PM,02/23/2015 03:17:15 PM,02/23/2015 03:51:40 PM,Code 2 Transport,02/23/2015 04:25:58 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",150542179-64 -160952272,82,16037661,Medical Incident,04/04/2016,04/04/2016,04/04/2016 02:44:26 PM,04/04/2016 02:45:05 PM,04/04/2016 02:45:33 PM,04/04/2016 02:45:46 PM,04/04/2016 02:48:16 PM,04/04/2016 03:07:38 PM,04/04/2016 03:20:40 PM,Code 2 Transport,04/04/2016 03:53:04 PM,900 Block of FILLMORE ST,San Francisco,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",160952272-82 -152260304,B06,15086009,Alarms,08/14/2015,08/13/2015,08/14/2015 02:29:53 AM,08/14/2015 02:34:09 AM,08/14/2015 02:34:16 AM,08/14/2015 02:36:24 AM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,04/25/2016 01:08:56 PM,Fire,08/14/2015 02:42:10 AM,0 Block of WORTH ST,San Francisco,94114,B06,24,5463,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7547157749537, -122.439837135441)",152260304-B06 -150901093,E02,15034235,Administrative,03/31/2015,03/31/2015,03/31/2015 10:18:49 AM,03/31/2015 10:19:03 AM,03/31/2015 10:19:21 AM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,04/25/2016 01:11:26 PM,Fire,03/31/2015 10:19:52 AM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",150901093-E02 -152812969,B02,15107955,Structure Fire,10/08/2015,10/08/2015,10/08/2015 05:38:07 PM,10/08/2015 05:38:52 PM,10/08/2015 05:39:20 PM,10/08/2015 05:40:09 PM,10/08/2015 05:43:37 PM,04/25/2016 01:07:53 PM,04/25/2016 01:07:53 PM,Fire,10/08/2015 05:51:07 PM,HARRISON ST/18TH ST,San Francisco,94110,B02,7,5245,3,3,3,false,Alarm,1,CHIEF,7,6,9,Mission,"(37.7622292148634, -122.412843801327)",152812969-B02 -160990236,65,16039173,Medical Incident,04/08/2016,04/07/2016,04/08/2016 02:13:27 AM,04/08/2016 02:21:26 AM,04/08/2016 02:24:49 AM,04/08/2016 02:24:54 AM,04/08/2016 02:30:33 AM,04/08/2016 02:36:18 AM,04/08/2016 02:43:35 AM,Code 2 Transport,04/08/2016 03:53:40 AM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160990236-65 -161001828,66,16039788,Medical Incident,04/09/2016,04/09/2016,04/09/2016 02:15:42 PM,04/09/2016 02:17:52 PM,04/09/2016 02:26:34 PM,04/09/2016 02:26:46 PM,04/09/2016 02:47:33 PM,04/09/2016 03:11:17 PM,04/09/2016 03:20:38 PM,Code 2 Transport,04/09/2016 03:42:16 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",161001828-66 -153253108,E06,15125237,Medical Incident,11/21/2015,11/21/2015,11/21/2015 06:32:33 PM,11/21/2015 06:32:51 PM,11/21/2015 06:38:50 PM,11/21/2015 06:38:50 PM,11/21/2015 06:38:50 PM,04/25/2016 01:07:04 PM,04/25/2016 01:07:04 PM,Medical Examiner,11/21/2015 07:12:10 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",153253108-E06 -142833309,85,14099813,Medical Incident,10/10/2014,10/10/2014,10/10/2014 09:05:51 PM,10/10/2014 09:06:56 PM,10/10/2014 09:07:42 PM,10/10/2014 09:07:52 PM,10/10/2014 09:19:36 PM,10/10/2014 09:31:54 PM,10/10/2014 09:49:33 PM,Code 2 Transport,10/10/2014 10:38:01 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",142833309-85 -160924058,75,16036663,Medical Incident,04/01/2016,04/01/2016,04/01/2016 11:55:30 PM,04/01/2016 11:55:55 PM,04/01/2016 11:57:38 PM,04/01/2016 11:57:43 PM,04/02/2016 12:03:42 AM,04/02/2016 12:28:52 AM,04/02/2016 12:54:15 AM,Code 2 Transport,04/02/2016 01:23:20 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160924058-75 -143472516,E01,14123867,Medical Incident,12/13/2014,12/13/2014,12/13/2014 04:30:47 PM,12/13/2014 04:31:11 PM,12/13/2014 04:33:02 PM,12/13/2014 04:33:02 PM,12/13/2014 04:33:02 PM,04/25/2016 01:13:27 PM,04/25/2016 01:13:27 PM,Code 2 Transport,12/13/2014 04:46:32 PM,JESSIE WEST ST/JESSIE ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7835180383277, -122.406558654985)",143472516-E01 -152913337,64,15111967,Structure Fire,10/18/2015,10/18/2015,10/18/2015 09:14:54 PM,10/18/2015 09:16:01 PM,10/18/2015 09:16:24 PM,10/18/2015 09:17:37 PM,10/18/2015 09:19:51 PM,04/25/2016 01:07:42 PM,04/25/2016 01:07:42 PM,Fire,10/18/2015 09:44:00 PM,0 Block of LEE AVE,San Francisco,94112,B09,15,8466,3,3,3,true,Alarm,1,MEDIC,4,9,11,Oceanview/Merced/Ingleside,"(37.7191056377178, -122.454158087054)",152913337-64 -143303164,E28,14117143,Outside Fire,11/26/2014,11/26/2014,11/26/2014 07:20:13 PM,11/26/2014 07:20:13 PM,11/26/2014 07:20:50 PM,11/26/2014 07:22:36 PM,11/26/2014 07:23:56 PM,04/25/2016 01:13:47 PM,04/25/2016 01:13:47 PM,Fire,11/26/2014 07:26:19 PM,1600 Block of THE EMBARCADERONORTH ST,San Francisco,94133,B01,28,941,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8084350175869, -122.410774214375)",143303164-E28 -160933857,85,16037077,Medical Incident,04/02/2016,04/02/2016,04/02/2016 11:07:32 PM,04/02/2016 11:08:58 PM,04/02/2016 11:09:06 PM,04/02/2016 11:09:17 PM,04/02/2016 11:11:07 PM,04/02/2016 11:38:20 PM,04/02/2016 11:51:00 PM,Code 2 Transport,04/03/2016 12:31:08 AM,DUBOCE AV/13TH ST,San Francisco,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",160933857-85 -150832521,E06,15031777,Outside Fire,03/24/2015,03/24/2015,03/24/2015 04:23:38 PM,03/24/2015 04:24:09 PM,03/24/2015 04:25:41 PM,03/24/2015 04:26:25 PM,03/24/2015 04:29:36 PM,04/25/2016 01:11:33 PM,04/25/2016 01:11:33 PM,Fire,03/24/2015 04:34:49 PM,GUERRERO ST/MARKET ST,San Francisco,94103,B02,36,5126,3,3,3,true,Fire,1,ENGINE,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",150832521-E06 -151272503,T11,15048211,Alarms,05/07/2015,05/07/2015,05/07/2015 03:51:26 PM,05/07/2015 03:52:42 PM,05/07/2015 03:52:47 PM,05/07/2015 03:54:49 PM,05/07/2015 03:56:20 PM,04/25/2016 01:10:44 PM,04/25/2016 01:10:44 PM,Fire,05/07/2015 04:09:14 PM,4000 Block of CESAR CHAVEZ ST,San Francisco,94131,B06,11,5552,3,3,3,true,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7475540672318, -122.430378413852)",151272503-T11 -152172102,77,15082626,Medical Incident,08/05/2015,08/05/2015,08/05/2015 02:09:03 PM,08/05/2015 02:09:29 PM,08/05/2015 02:10:14 PM,08/05/2015 02:10:47 PM,08/05/2015 02:14:47 PM,08/05/2015 02:34:29 PM,08/05/2015 03:03:38 PM,Code 2 Transport,08/05/2015 03:33:01 PM,MISSION ST/9TH ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",152172102-77 -151623471,T12,15062063,Alarms,06/11/2015,06/11/2015,06/11/2015 08:30:12 PM,06/11/2015 08:31:28 PM,06/11/2015 08:31:57 PM,06/11/2015 08:33:24 PM,06/11/2015 08:34:45 PM,04/25/2016 01:10:03 PM,04/25/2016 01:10:03 PM,Fire,06/11/2015 09:00:55 PM,400 Block of PARNASSUS AVE,San Francisco,94122,B05,12,5155,3,3,3,false,Alarm,1,TRUCK,2,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",151623471-T12 -161000441,AM24,16039613,Medical Incident,04/09/2016,04/08/2016,04/09/2016 03:29:02 AM,04/09/2016 03:30:24 AM,04/09/2016 03:30:42 AM,04/09/2016 03:35:27 AM,04/09/2016 03:35:27 AM,04/09/2016 04:02:37 AM,04/09/2016 04:10:36 AM,Code 2 Transport,04/09/2016 04:57:55 AM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7815345081004, -122.428135307501)",161000441-AM24 -152011405,T13,15076569,Alarms,07/20/2015,07/20/2015,07/20/2015 11:14:37 AM,07/20/2015 11:16:37 AM,07/20/2015 11:17:14 AM,07/20/2015 11:18:35 AM,07/20/2015 11:21:49 AM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Fire,07/20/2015 11:29:07 AM,700 Block of MARKET ST,San Francisco,94108,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",152011405-T13 -160971197,57,16038353,Medical Incident,04/06/2016,04/06/2016,04/06/2016 09:58:35 AM,04/06/2016 09:59:46 AM,04/06/2016 10:00:40 AM,04/06/2016 10:01:15 AM,04/06/2016 10:05:29 AM,04/06/2016 10:19:35 AM,04/06/2016 10:59:51 AM,Code 2 Transport,04/06/2016 11:59:26 AM,MARKET ST/11TH ST,San Francisco,94103,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",160971197-57 -151011310,E05,15038189,Medical Incident,04/11/2015,04/11/2015,04/11/2015 11:29:57 AM,04/11/2015 11:29:57 AM,04/11/2015 11:31:00 AM,04/11/2015 11:31:23 AM,04/11/2015 11:35:28 AM,04/25/2016 01:11:14 PM,04/25/2016 01:11:14 PM,No Merit,04/11/2015 11:47:45 AM,STEINER ST/CALIFORNIA ST,San Francisco,94115,B04,38,3616,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7886969402203, -122.435485565193)",151011310-E05 -142093387,T48,14072623,Citizen Assist / Service Call,07/28/2014,07/28/2014,07/28/2014 10:04:37 PM,07/28/2014 10:09:54 PM,07/28/2014 10:10:01 PM,07/28/2014 10:11:16 PM,07/28/2014 10:21:36 PM,04/25/2016 01:15:58 PM,04/25/2016 01:15:58 PM,Fire,07/28/2014 10:36:40 PM,1200 Block of BAYSIDE DR,Treasure Islan,94130,B03,48,2931,3,3,3,false,Alarm,1,TRUCK,1,None,6,Treasure Island,"(37.8304547884044, -122.37629451046)",142093387-T48 -141523222,KM07,14052387,Medical Incident,06/01/2014,06/01/2014,06/01/2014 11:01:18 PM,06/01/2014 11:03:35 PM,06/01/2014 11:06:50 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,04/25/2016 01:17:01 PM,Code 2 Transport,06/01/2014 11:09:55 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",141523222-KM07 -160952015,66,16037653,Medical Incident,04/04/2016,04/04/2016,04/04/2016 01:46:02 PM,04/04/2016 01:46:19 PM,04/04/2016 01:46:50 PM,04/04/2016 01:46:58 PM,04/04/2016 01:52:13 PM,04/04/2016 02:19:06 PM,04/04/2016 02:46:19 PM,Code 2 Transport,04/04/2016 03:24:43 PM,0 Block of REARDON RD,San Francisco,94124,B10,17,6625,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294407135003, -122.377026608239)",160952015-66 -151161474,56,15043807,Medical Incident,04/26/2015,04/26/2015,04/26/2015 12:01:59 PM,04/26/2015 12:04:07 PM,04/26/2015 12:04:16 PM,04/26/2015 12:05:00 PM,04/26/2015 12:09:27 PM,04/26/2015 12:28:56 PM,04/26/2015 12:52:31 PM,Code 2 Transport,04/26/2015 01:26:12 PM,1900 Block of LOMBARD ST,San Francisco,94123,B04,16,3461,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8000395100176, -122.433559215501)",151161474-56 -151601520,89,15061124,Medical Incident,06/09/2015,06/09/2015,06/09/2015 11:57:32 AM,06/09/2015 11:58:11 AM,06/09/2015 11:59:32 AM,06/09/2015 12:00:14 PM,06/09/2015 12:04:25 PM,04/25/2016 01:10:06 PM,04/25/2016 01:10:06 PM,Patient Declined Transport,06/09/2015 01:29:24 PM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",151601520-89 -160981085,89,16038832,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:13:47 AM,04/07/2016 09:17:32 AM,04/07/2016 09:18:30 AM,04/07/2016 09:25:43 AM,04/07/2016 09:33:12 AM,04/07/2016 09:55:19 AM,04/07/2016 10:14:06 AM,Code 2 Transport,04/07/2016 11:01:43 AM,200 Block of WHEELER AVE,San Francisco,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7125510918772, -122.39957935978)",160981085-89 -160940010,76,16037093,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:00:47 AM,04/03/2016 12:02:58 AM,04/03/2016 12:04:11 AM,04/03/2016 12:04:21 AM,04/03/2016 12:10:37 AM,04/03/2016 12:30:54 AM,04/03/2016 12:40:40 AM,Code 2 Transport,04/03/2016 01:02:14 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160940010-76 -152082502,72,15079324,Medical Incident,07/27/2015,07/27/2015,07/27/2015 04:01:42 PM,07/27/2015 04:02:15 PM,07/27/2015 04:02:31 PM,07/27/2015 04:03:14 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,04/25/2016 01:09:14 PM,Medical Examiner,07/27/2015 04:05:05 PM,400 Block of ELLINGTON AVE,San Francisco,94112,B09,33,8346,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7115995575267, -122.447416245523)",152082502-72 -141651008,E26,14056849,Medical Incident,06/14/2014,06/14/2014,06/14/2014 09:27:24 AM,06/14/2014 09:27:46 AM,06/14/2014 09:28:19 AM,06/14/2014 09:29:12 AM,06/14/2014 09:31:54 AM,04/25/2016 01:16:47 PM,04/25/2016 01:16:47 PM,Code 2 Transport,06/14/2014 09:51:32 AM,600 Block of 28TH ST,San Francisco,94131,B06,26,5557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7446427404721, -122.436765635284)",141651008-E26 -151430487,T03,15054267,Other,05/23/2015,05/22/2015,05/23/2015 03:13:07 AM,05/23/2015 03:17:35 AM,05/23/2015 03:20:36 AM,05/23/2015 03:22:30 AM,05/23/2015 03:26:26 AM,04/25/2016 01:10:26 PM,04/25/2016 01:10:26 PM,Fire,05/23/2015 03:35:00 AM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",151430487-T03 -160972876,86,16038517,Medical Incident,04/06/2016,04/06/2016,04/06/2016 04:10:16 PM,04/06/2016 04:11:21 PM,04/06/2016 04:11:49 PM,04/06/2016 04:11:59 PM,04/06/2016 04:29:29 PM,04/06/2016 04:54:53 PM,04/06/2016 05:15:27 PM,Code 2 Transport,04/06/2016 05:51:43 PM,0 Block of 7TH AVE,San Francisco,94118,B07,31,7126,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Inner Richmond,"(37.7874460327418, -122.465750262786)",160972876-86 -141582460,T12,14054515,Structure Fire,06/07/2014,06/07/2014,06/07/2014 05:44:41 PM,06/07/2014 05:44:41 PM,06/07/2014 05:45:10 PM,06/07/2014 05:46:25 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,04/25/2016 01:16:54 PM,Fire,06/07/2014 05:49:02 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,false,Alarm,1,TRUCK,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",141582460-T12 -142971289,E03,14104724,Medical Incident,10/24/2014,10/24/2014,10/24/2014 10:44:45 AM,10/24/2014 10:45:46 AM,10/24/2014 10:46:30 AM,10/24/2014 10:49:02 AM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,04/25/2016 01:14:23 PM,Code 2 Transport,10/24/2014 10:58:09 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",142971289-E03 -150612040,E36,15023314,Traffic Collision,03/02/2015,03/02/2015,03/02/2015 02:28:11 PM,03/02/2015 02:29:14 PM,03/02/2015 02:30:43 PM,03/02/2015 02:32:53 PM,03/02/2015 02:35:55 PM,04/25/2016 01:11:57 PM,04/25/2016 01:11:57 PM,Code 2 Transport,03/02/2015 02:49:49 PM,SOUTH VAN NESS AV/13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.769815078903, -122.417753195885)",150612040-E36 -142840804,RC1,14099957,Medical Incident,10/11/2014,10/10/2014,10/11/2014 07:34:36 AM,10/11/2014 07:36:20 AM,10/11/2014 07:38:27 AM,10/11/2014 07:40:27 AM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,04/25/2016 01:14:37 PM,Medical Examiner,10/11/2014 07:46:54 AM,MARINA BL/CASA WY,San Francisco,94123,B04,16,3561,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.8060771983672, -122.439999322479)",142840804-RC1 -160973160,65,16038548,Medical Incident,04/06/2016,04/06/2016,04/06/2016 05:05:14 PM,04/06/2016 05:05:59 PM,04/06/2016 05:06:14 PM,04/06/2016 05:07:19 PM,04/06/2016 05:18:14 PM,04/06/2016 05:40:13 PM,04/06/2016 06:26:22 PM,Code 2 Transport,04/06/2016 06:45:48 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160973160-65 -153272071,E09,15125896,Medical Incident,11/23/2015,11/23/2015,11/23/2015 02:09:51 PM,11/23/2015 02:10:54 PM,11/23/2015 02:11:52 PM,11/23/2015 02:15:26 PM,11/23/2015 02:16:41 PM,04/25/2016 01:07:02 PM,04/25/2016 01:07:02 PM,Code 2 Transport,11/23/2015 02:30:11 PM,3000 Block of HARRISON ST,San Francisco,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7486195212612, -122.411584193034)",153272071-E09 -151692376,65,15064691,Medical Incident,06/18/2015,06/18/2015,06/18/2015 04:27:39 PM,06/18/2015 04:29:30 PM,06/18/2015 04:31:24 PM,06/18/2015 04:32:03 PM,06/18/2015 04:36:30 PM,06/18/2015 05:03:45 PM,06/18/2015 05:31:21 PM,Code 2 Transport,06/18/2015 05:48:44 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",151692376-65 -151322212,88,15050126,Medical Incident,05/12/2015,05/12/2015,05/12/2015 03:45:27 PM,05/12/2015 03:46:10 PM,05/12/2015 03:46:27 PM,05/12/2015 03:46:38 PM,05/12/2015 03:50:15 PM,05/12/2015 04:02:39 PM,04/25/2016 01:10:38 PM,Code 2 Transport,05/12/2015 04:30:56 PM,500 Block of CLAYTON ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7702730913586, -122.448605048056)",151322212-88 -143492588,RC3,14124733,Structure Fire,12/15/2014,12/15/2014,12/15/2014 05:55:44 PM,12/15/2014 05:56:04 PM,12/15/2014 06:02:16 PM,12/15/2014 06:04:18 PM,12/15/2014 06:08:51 PM,04/25/2016 01:13:25 PM,04/25/2016 01:13:25 PM,Fire,12/15/2014 06:14:43 PM,2800 Block of HARRISON ST,San Francisco,94110,B06,7,5533,3,3,3,true,Fire,1,RESCUE CAPTAIN,7,6,9,Mission,"(37.7518270551886, -122.411891999747)",143492588-RC3 -141902850,88,14065938,Medical Incident,07/09/2014,07/09/2014,07/09/2014 06:11:11 PM,07/09/2014 06:14:29 PM,07/09/2014 06:19:26 PM,07/09/2014 06:24:02 PM,07/09/2014 06:25:44 PM,07/09/2014 06:38:29 PM,07/09/2014 06:42:03 PM,Code 2 Transport,07/09/2014 07:05:43 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",141902850-88 -141920345,87,14066427,Medical Incident,07/11/2014,07/10/2014,07/11/2014 02:46:07 AM,07/11/2014 02:46:07 AM,07/11/2014 02:47:31 AM,07/11/2014 02:47:44 AM,07/11/2014 02:54:18 AM,07/11/2014 03:04:49 AM,07/11/2014 03:33:54 AM,Code 3 Transport,07/11/2014 03:54:03 AM,0 Block of 5TH ST,San Francisco,94103,B03,48,2951,A,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7831860531538, -122.407149119811)",141920345-87 -142722254,65,14095446,Medical Incident,09/29/2014,09/29/2014,09/29/2014 04:07:50 PM,09/29/2014 04:08:48 PM,09/29/2014 04:09:11 PM,09/29/2014 04:09:26 PM,09/29/2014 04:13:17 PM,09/29/2014 04:25:39 PM,09/29/2014 04:53:58 PM,Code 2 Transport,09/29/2014 05:23:20 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",142722254-65 -141932369,E14,14067017,Medical Incident,07/12/2014,07/12/2014,07/12/2014 05:25:12 PM,07/12/2014 05:28:58 PM,07/12/2014 05:29:14 PM,07/12/2014 05:30:10 PM,04/25/2016 01:16:15 PM,04/25/2016 01:16:15 PM,04/25/2016 01:16:15 PM,Code 2 Transport,07/12/2014 05:32:56 PM,4000 Block of BALBOA ST,San Francisco,94121,B07,34,7263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.775550100195, -122.502138435075)",141932369-E14 -152792422,E35,15107115,Traffic Collision,10/06/2015,10/06/2015,10/06/2015 03:32:24 PM,10/06/2015 03:32:52 PM,10/06/2015 03:33:36 PM,10/06/2015 03:34:38 PM,10/06/2015 03:36:53 PM,04/25/2016 01:07:55 PM,04/25/2016 01:07:55 PM,Unable to Locate,10/06/2015 03:40:41 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7853124134666, -122.394402139729)",152792422-E35 -152761051,RS1,15105695,Medical Incident,10/03/2015,10/03/2015,10/03/2015 09:17:24 AM,10/03/2015 09:18:36 AM,10/03/2015 09:19:16 AM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,04/25/2016 01:07:59 PM,Code 2 Transport,10/03/2015 09:21:38 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",152761051-RS1 -150760598,E22,15029043,Medical Incident,03/17/2015,03/16/2015,03/17/2015 07:42:09 AM,03/17/2015 07:44:01 AM,03/17/2015 07:44:46 AM,03/17/2015 07:45:56 AM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,04/25/2016 01:11:40 PM,Code 2 Transport,03/17/2015 08:04:24 AM,900 Block of LINCOLN WAY,San Francisco,94122,B08,22,7333,2,2,2,false,Non Life-threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7657522392824, -122.46804064381)",150760598-E22 -160981299,KM09,16038861,Medical Incident,04/07/2016,04/07/2016,04/07/2016 10:14:48 AM,04/07/2016 10:15:17 AM,04/07/2016 10:15:29 AM,04/07/2016 10:16:33 AM,04/07/2016 10:19:22 AM,04/07/2016 10:37:34 AM,04/07/2016 10:51:10 AM,Code 2 Transport,04/07/2016 11:30:36 AM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",160981299-KM09 -153102460,58,15119219,Medical Incident,11/06/2015,11/06/2015,11/06/2015 04:10:45 PM,11/06/2015 04:12:00 PM,11/06/2015 04:12:57 PM,11/06/2015 04:13:14 PM,11/06/2015 04:26:43 PM,11/06/2015 04:41:54 PM,11/06/2015 05:06:19 PM,Code 2 Transport,11/06/2015 05:41:32 PM,LELAND AV/ALPHA ST,San Francisco,94134,B10,44,6255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7119334722542, -122.405632132176)",153102460-58 -160982733,AM16,16039018,Medical Incident,04/07/2016,04/07/2016,04/07/2016 04:25:36 PM,04/07/2016 04:27:17 PM,04/07/2016 05:08:42 PM,04/07/2016 05:09:11 PM,04/07/2016 05:33:25 PM,04/07/2016 05:55:39 PM,04/07/2016 06:19:38 PM,Code 2 Transport,04/07/2016 06:42:49 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160982733-AM16 -150961886,E13,15036422,Alarms,04/06/2015,04/06/2015,04/06/2015 02:05:22 PM,04/06/2015 02:06:38 PM,04/06/2015 02:08:36 PM,04/06/2015 02:11:25 PM,04/25/2016 01:11:19 PM,04/25/2016 01:11:19 PM,04/25/2016 01:11:19 PM,Fire,04/06/2015 02:19:44 PM,0 Block of HARRISON ST,San Francisco,94105,B03,35,2113,3,3,3,true,Alarm,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7891695836335, -122.388910656461)",150961886-E13 -150792117,E41,15030319,Structure Fire,03/20/2015,03/20/2015,03/20/2015 02:52:16 PM,03/20/2015 02:52:50 PM,03/20/2015 02:53:24 PM,03/20/2015 02:54:13 PM,03/20/2015 02:56:53 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Fire,03/20/2015 03:01:12 PM,2400 Block of BUCHANAN ST,San Francisco,94115,B04,38,3436,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7924401819216, -122.431245878232)",150792117-E41 -150371045,T19,15014185,Alarms,02/06/2015,02/06/2015,02/06/2015 09:13:41 AM,02/06/2015 09:15:10 AM,02/06/2015 09:17:31 AM,02/06/2015 09:18:48 AM,02/06/2015 09:23:23 AM,04/25/2016 01:12:25 PM,04/25/2016 01:12:25 PM,Fire,02/06/2015 09:37:43 AM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",150371045-T19 -142760438,E43,14096765,Medical Incident,10/03/2014,10/02/2014,10/03/2014 03:37:14 AM,10/03/2014 03:38:21 AM,10/03/2014 03:38:30 AM,10/03/2014 03:42:01 AM,10/03/2014 03:42:01 AM,04/25/2016 01:14:46 PM,04/25/2016 01:14:46 PM,Code 2 Transport,10/03/2014 03:57:11 AM,200 Block of MUNICH ST,San Francisco,94112,B09,43,6163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7216798646494, -122.426299514964)",142760438-E43 -143260475,E05,14115353,Medical Incident,11/22/2014,11/21/2014,11/22/2014 03:24:05 AM,11/22/2014 03:25:17 AM,11/22/2014 03:26:16 AM,11/22/2014 03:28:04 AM,11/22/2014 03:29:37 AM,04/25/2016 01:13:52 PM,04/25/2016 01:13:52 PM,No Merit,11/22/2014 03:36:13 AM,TURK ST/FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",143260475-E05 -160973901,AM22,16038638,Medical Incident,04/06/2016,04/06/2016,04/06/2016 07:43:36 PM,04/06/2016 07:44:55 PM,04/06/2016 07:45:41 PM,04/06/2016 07:46:36 PM,04/06/2016 07:52:07 PM,04/06/2016 08:28:20 PM,04/06/2016 08:54:30 PM,Code 2 Transport,04/06/2016 09:12:30 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160973901-AM22 -142591564,AM12,14090468,Medical Incident,09/16/2014,09/16/2014,09/16/2014 12:16:51 PM,09/16/2014 12:18:12 PM,09/16/2014 12:19:01 PM,09/16/2014 12:19:45 PM,09/16/2014 12:26:42 PM,09/16/2014 12:35:08 PM,09/16/2014 12:51:56 PM,Code 2 Transport,09/16/2014 01:26:57 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",142591564-AM12 -151173715,FD00A,15044420,,04/27/2015,04/27/2015,04/27/2015 10:18:23 PM,04/27/2015 10:19:24 PM,04/27/2015 10:32:42 PM,04/27/2015 10:41:35 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Cancelled,04/27/2015 10:41:53 PM,100 Block of CLINTON PARK,San Francisco,94103,B02,36,5126,3,3,3,false,Non Life-threatening,1,SUPPORT,3,2,8,Mission,"(37.7692677111289, -122.423396856968)",151173715-FD00A -153120070,AM20,15119764,Medical Incident,11/08/2015,11/07/2015,11/08/2015 12:24:25 AM,11/08/2015 12:25:06 AM,11/08/2015 12:25:56 AM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,04/25/2016 01:07:20 PM,Code 2 Transport,11/08/2015 12:26:41 AM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",153120070-AM20 -153172054,T05,15121857,Structure Fire,11/13/2015,11/13/2015,11/13/2015 01:10:24 PM,11/13/2015 01:10:24 PM,11/13/2015 01:10:56 PM,11/13/2015 01:12:00 PM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,04/25/2016 01:07:14 PM,Fire,11/13/2015 01:23:07 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",153172054-T05 -142111693,AM08,14073122,Medical Incident,07/30/2014,07/30/2014,07/30/2014 01:05:33 PM,07/30/2014 01:06:08 PM,07/30/2014 01:07:17 PM,07/30/2014 01:12:32 PM,07/30/2014 01:16:46 PM,04/25/2016 01:15:56 PM,04/25/2016 01:15:56 PM,Patient Declined Transport,07/30/2014 01:42:03 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",142111693-AM08 -161002397,58,16039851,Medical Incident,04/09/2016,04/09/2016,04/09/2016 05:12:30 PM,04/09/2016 05:14:01 PM,04/09/2016 05:14:16 PM,04/09/2016 05:14:26 PM,04/09/2016 05:16:31 PM,04/09/2016 05:25:03 PM,04/09/2016 05:31:20 PM,Code 2 Transport,04/09/2016 06:06:40 PM,700 Block of CAPP ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7547064357942, -122.417513465479)",161002397-58 -152242656,E48,15085441,Structure Fire,08/12/2015,08/12/2015,08/12/2015 04:34:44 PM,08/12/2015 04:35:40 PM,08/12/2015 04:36:46 PM,08/12/2015 04:38:01 PM,08/12/2015 04:39:56 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 04:52:53 PM,1400 Block of STRIPED BASS ST,Treasure Isla,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,2,None,6,Treasure Island,"(37.8260094476557, -122.37612659823)",152242656-E48 -143651306,AR1,14130656,Structure Fire,12/31/2014,12/31/2014,12/31/2014 11:55:40 AM,12/31/2014 11:55:59 AM,12/31/2014 12:08:08 PM,12/31/2014 12:09:28 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,04/25/2016 01:13:07 PM,Fire,12/31/2014 02:30:26 PM,1300 Block of UNDERWOOD AVE,San Francisco,94124,B10,17,6653,3,3,3,false,Fire,2,INVESTIGATION,23,10,10,Bayview Hunters Point,"(37.7270915966656, -122.387216118798)",143651306-AR1 -160963386,72,16038147,Medical Incident,04/05/2016,04/05/2016,04/05/2016 06:57:11 PM,04/05/2016 06:57:11 PM,04/05/2016 06:59:27 PM,04/05/2016 06:59:27 PM,04/05/2016 07:13:42 PM,04/05/2016 07:31:37 PM,04/05/2016 07:48:02 PM,Code 2 Transport,04/05/2016 08:20:31 PM,MISSION ST/SANTA ROSA AV,San Francisco,94112,B09,43,6116,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7257617913569, -122.433982357283)",160963386-72 -152481257,B08,15094629,Alarms,09/05/2015,09/05/2015,09/05/2015 10:23:25 AM,09/05/2015 10:24:10 AM,09/05/2015 10:24:21 AM,09/05/2015 10:25:07 AM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,04/25/2016 01:08:31 PM,Fire,09/05/2015 10:31:21 AM,200 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8853,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",152481257-B08 -153013842,E36,15115630,Alarms,10/28/2015,10/28/2015,10/28/2015 08:55:06 PM,10/28/2015 08:56:31 PM,10/28/2015 08:58:54 PM,10/28/2015 09:00:41 PM,10/28/2015 09:01:44 PM,04/25/2016 01:07:31 PM,04/25/2016 01:07:31 PM,Fire,10/28/2015 09:09:53 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",153013842-E36 -160942413,KM04,16037321,Medical Incident,04/03/2016,04/03/2016,04/03/2016 03:56:15 PM,04/03/2016 03:57:55 PM,04/03/2016 03:58:11 PM,04/03/2016 03:58:32 PM,04/03/2016 04:03:51 PM,04/03/2016 04:28:07 PM,04/03/2016 05:07:23 PM,Code 2 Transport,04/03/2016 05:39:43 PM,600 Block of HEAD ST,San Francisco,94132,B09,33,8433,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7188076273319, -122.464519500184)",160942413-KM04 -160990857,AM04,16039223,Medical Incident,04/08/2016,04/08/2016,04/08/2016 08:59:10 AM,04/08/2016 08:59:45 AM,04/08/2016 09:00:15 AM,04/08/2016 09:00:18 AM,04/08/2016 09:08:36 AM,04/08/2016 09:17:22 AM,04/08/2016 09:40:31 AM,Code 3 Transport,04/08/2016 10:17:39 AM,MONTGOMERY ST/MARKET ST,San Francisco,94105,B01,13,1236,2,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",160990857-AM04 -160932020,79,16036895,Medical Incident,04/02/2016,04/02/2016,04/02/2016 02:28:22 PM,04/02/2016 02:31:16 PM,04/02/2016 02:42:38 PM,04/02/2016 02:42:44 PM,04/02/2016 02:57:27 PM,04/02/2016 03:09:57 PM,04/02/2016 03:25:29 PM,Code 2 Transport,04/02/2016 03:39:41 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160932020-79 -150792043,E13,15030315,Traffic Collision,03/20/2015,03/20/2015,03/20/2015 02:32:26 PM,03/20/2015 02:32:26 PM,03/20/2015 02:35:23 PM,03/20/2015 02:36:55 PM,03/20/2015 02:39:41 PM,04/25/2016 01:11:37 PM,04/25/2016 01:11:37 PM,Patient Declined Transport,03/20/2015 02:48:55 PM,SACRAMENTO ST/MONTGOMERY ST,San Francisco,94104,B01,13,1166,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7937798566723, -122.402957361388)",150792043-E13 -142430874,73,14084550,Medical Incident,08/31/2014,08/31/2014,08/31/2014 08:33:05 AM,08/31/2014 08:35:11 AM,08/31/2014 08:35:34 AM,08/31/2014 08:36:06 AM,08/31/2014 08:41:47 AM,04/25/2016 01:15:21 PM,04/25/2016 01:15:21 PM,Against Medical Advice,08/31/2014 09:38:32 AM,2300 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",142430874-73 -160974123,70,16038664,Medical Incident,04/06/2016,04/06/2016,04/06/2016 08:46:25 PM,04/06/2016 08:48:18 PM,04/06/2016 08:49:38 PM,04/06/2016 08:52:24 PM,04/06/2016 08:53:08 PM,04/06/2016 09:07:57 PM,04/06/2016 09:15:11 PM,Code 2 Transport,04/06/2016 09:44:24 PM,800 Block of JACKSON ST,San Francisco,94133,B01,2,1354,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7957574917838, -122.409220385191)",160974123-70 -152923471,T12,15112363,Other,10/19/2015,10/19/2015,10/19/2015 08:51:14 PM,10/19/2015 08:51:52 PM,10/19/2015 08:52:45 PM,10/19/2015 08:53:56 PM,10/19/2015 08:55:51 PM,04/25/2016 01:07:40 PM,04/25/2016 01:07:40 PM,Fire,10/19/2015 09:07:20 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",152923471-T12 -161000375,64,16039603,Medical Incident,04/09/2016,04/08/2016,04/09/2016 02:43:39 AM,04/09/2016 02:46:22 AM,04/09/2016 02:46:59 AM,04/09/2016 02:47:10 AM,04/09/2016 02:51:34 AM,04/09/2016 03:16:57 AM,04/09/2016 03:21:36 AM,Code 2 Transport,04/09/2016 03:54:50 AM,0 Block of WOODLAND AVE,San Francisco,94117,B05,12,5153,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7633699801685, -122.453383627614)",161000375-64 -142470636,T15,14085950,Structure Fire,09/04/2014,09/03/2014,09/04/2014 07:11:38 AM,09/04/2014 07:11:38 AM,09/04/2014 07:11:45 AM,09/04/2014 07:13:41 AM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,04/25/2016 01:15:17 PM,Fire,09/04/2014 07:20:38 AM,ROCKDALE DR/OMAR WY,San Francisco,94127,B09,39,8662,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7393078970174, -122.449569567755)",142470636-T15 -151560268,E12,15059371,Medical Incident,06/05/2015,06/04/2015,06/05/2015 02:51:15 AM,06/05/2015 02:52:11 AM,06/05/2015 02:53:23 AM,06/05/2015 02:55:39 AM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,04/25/2016 01:10:11 PM,Code 2 Transport,06/05/2015 02:58:47 AM,HAIGHT ST/ASHBURY ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7700076057236, -122.446933818288)",151560268-E12 -153193453,78,15122833,Medical Incident,11/15/2015,11/15/2015,11/15/2015 09:23:06 PM,11/15/2015 09:23:06 PM,11/15/2015 09:36:07 PM,11/15/2015 09:36:23 PM,11/15/2015 09:40:02 PM,11/15/2015 10:13:20 PM,11/15/2015 10:24:33 PM,Other,11/15/2015 11:52:36 PM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",153193453-78 -141892527,B01,14065567,Alarms,07/08/2014,07/08/2014,07/08/2014 04:20:05 PM,07/08/2014 04:22:36 PM,07/08/2014 04:23:28 PM,07/08/2014 04:24:32 PM,07/08/2014 04:29:21 PM,04/25/2016 01:16:20 PM,04/25/2016 01:16:20 PM,Fire,07/08/2014 04:33:05 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",141892527-B01 -152150186,T19,15081683,Alarms,08/03/2015,08/02/2015,08/03/2015 01:46:44 AM,08/03/2015 01:48:07 AM,08/03/2015 01:48:18 AM,08/03/2015 01:50:39 AM,08/03/2015 01:53:06 AM,04/25/2016 01:09:08 PM,04/25/2016 01:09:08 PM,Fire,08/03/2015 02:01:50 AM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",152150186-T19 -160982230,76,16038955,Medical Incident,04/07/2016,04/07/2016,04/07/2016 02:19:40 PM,04/07/2016 02:21:22 PM,04/07/2016 02:22:07 PM,04/07/2016 02:22:14 PM,04/07/2016 02:27:49 PM,04/07/2016 02:37:27 PM,04/07/2016 02:47:06 PM,Code 2 Transport,04/07/2016 03:12:01 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",160982230-76 -150071840,E37,15002690,Gas Leak (Natural and LP Gases),01/07/2015,01/07/2015,01/07/2015 01:14:54 PM,01/07/2015 01:17:06 PM,01/07/2015 01:17:44 PM,01/07/2015 01:18:28 PM,01/07/2015 01:22:04 PM,04/25/2016 01:12:58 PM,04/25/2016 01:12:58 PM,Fire,01/07/2015 02:28:19 PM,900 Block of MINNESOTA ST,San Francisco,94107,B10,37,2535,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",150071840-E37 -151173446,T03,15044387,Alarms,04/27/2015,04/27/2015,04/27/2015 08:31:02 PM,04/27/2015 08:31:36 PM,04/27/2015 08:32:04 PM,04/27/2015 08:33:04 PM,04/27/2015 08:34:38 PM,04/25/2016 01:10:55 PM,04/25/2016 01:10:55 PM,Fire,04/27/2015 08:34:51 PM,LEAVENWORTH ST/OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",151173446-T03 -152393331,B02,15091156,Alarms,08/27/2015,08/27/2015,08/27/2015 06:52:33 PM,08/27/2015 06:55:27 PM,08/27/2015 06:55:42 PM,08/27/2015 06:57:06 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,04/25/2016 01:08:41 PM,Fire,08/27/2015 07:04:05 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",152393331-B02 -142891238,76,14101813,Medical Incident,10/16/2014,10/16/2014,10/16/2014 10:06:29 AM,10/16/2014 10:06:44 AM,10/16/2014 10:06:51 AM,10/16/2014 10:07:04 AM,10/16/2014 10:18:44 AM,10/16/2014 10:26:43 AM,10/16/2014 11:04:38 AM,Code 2 Transport,10/16/2014 11:34:33 AM,700 Block of LA PLAYA,San Francisco,94121,B07,34,7312,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",142891238-76 -153191231,79,15122620,Structure Fire,11/15/2015,11/15/2015,11/15/2015 10:31:09 AM,11/15/2015 10:31:57 AM,11/15/2015 10:32:44 AM,11/15/2015 10:33:08 AM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,04/25/2016 01:07:11 PM,Fire,11/15/2015 10:41:27 AM,200 Block of DENSLOWE DR,San Francisco,94132,B08,19,8751,3,3,3,true,Alarm,1,MEDIC,5,9,7,West of Twin Peaks,"(37.7204827766558, -122.4745882975)",153191231-79 -141110046,89,14037331,Medical Incident,04/21/2014,04/20/2014,04/21/2014 04:06:15 AM,04/21/2014 04:06:54 AM,04/21/2014 04:07:23 AM,04/21/2014 04:07:33 AM,04/21/2014 04:14:03 AM,04/21/2014 04:36:11 AM,04/21/2014 04:56:46 AM,Code 2 Transport,04/21/2014 05:57:43 AM,2400 Block of SACRAMENTO ST,SAN FRANCISCO,94115,B04,38,3544,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",141110046-89 -141332106,E03,14045362,Alarms,05/13/2014,05/13/2014,05/13/2014 02:50:14 PM,05/13/2014 02:51:55 PM,05/13/2014 02:52:20 PM,05/13/2014 02:53:15 PM,05/13/2014 02:55:22 PM,04/25/2016 01:17:21 PM,04/25/2016 01:17:21 PM,Fire,05/13/2014 02:57:41 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,false,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",141332106-E03 -150671808,T05,15025640,Medical Incident,03/08/2015,03/08/2015,03/08/2015 02:31:08 PM,03/08/2015 02:31:55 PM,03/08/2015 02:32:41 PM,03/08/2015 02:33:44 PM,03/08/2015 02:38:12 PM,04/25/2016 01:11:51 PM,04/25/2016 01:11:51 PM,Duplicate,03/08/2015 02:38:24 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",150671808-T05 -143592228,KM15,14128575,Medical Incident,12/25/2014,12/25/2014,12/25/2014 08:19:59 PM,12/25/2014 08:24:26 PM,12/25/2014 08:25:08 PM,12/25/2014 08:26:24 PM,12/25/2014 08:31:20 PM,12/25/2014 08:46:06 PM,12/25/2014 08:55:38 PM,Code 2 Transport,12/25/2014 09:42:10 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7674778738529, -122.419834389169)",143592228-KM15 -141350005,RS1,14045976,Structure Fire,05/15/2014,05/14/2014,05/15/2014 12:00:57 AM,05/15/2014 12:02:32 AM,05/15/2014 12:03:51 AM,05/15/2014 12:05:48 AM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,04/25/2016 01:17:19 PM,Unable to Locate,05/15/2014 12:12:35 AM,1900 Block of WASHINGTON ST,San Francisco,94109,B04,38,3226,3,3,3,false,Alarm,1,RESCUE SQUAD,11,4,2,Pacific Heights,"(37.7927918347727, -122.425348410602)",141350005-RS1 -150712001,E37,15027125,Medical Incident,03/12/2015,03/12/2015,03/12/2015 01:57:14 PM,03/12/2015 01:57:54 PM,03/12/2015 01:58:09 PM,03/12/2015 01:58:56 PM,03/12/2015 02:01:35 PM,04/25/2016 01:11:46 PM,04/25/2016 01:11:46 PM,Code 3 Transport,03/12/2015 02:29:29 PM,600 Block of TEXAS ST,San Francisco,94107,B10,37,2541,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7592140683716, -122.395302149441)",150712001-E37 -151043721,B06,15039535,Structure Fire,04/14/2015,04/14/2015,04/14/2015 11:26:24 PM,04/14/2015 11:28:24 PM,04/14/2015 11:28:38 PM,04/14/2015 11:30:10 PM,04/14/2015 11:33:49 PM,04/25/2016 01:11:09 PM,04/25/2016 01:11:09 PM,Fire,04/14/2015 11:36:11 PM,2000 Block of 15TH ST,San Francisco,94114,B05,6,5231,3,3,3,false,Alarm,1,CHIEF,9,2,8,Castro/Upper Market,"(37.7661513078958, -122.42937789146)",151043721-B06 -141160019,E21,14039024,Administrative,04/26/2014,04/25/2014,04/26/2014 01:03:50 AM,04/26/2014 01:04:06 AM,04/26/2014 01:04:23 AM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,04/25/2016 01:17:41 PM,Other,04/26/2014 01:07:25 AM,1400 Block of GROVE ST,,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",141160019-E21 -160973672,63,16038620,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 06:48:57 PM,04/06/2016 06:52:50 PM,04/06/2016 06:54:31 PM,04/06/2016 06:54:46 PM,04/06/2016 07:00:14 PM,04/06/2016 07:26:21 PM,04/06/2016 07:44:05 PM,Code 2 Transport,04/06/2016 08:21:01 PM,1400 Block of BLK FELTON ST,San Francisco,94134,B09,43,6152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7266051369957, -122.417937968348)",160973672-63 -152242763,68,15085452,Water Rescue,08/12/2015,08/12/2015,08/12/2015 05:01:02 PM,08/12/2015 05:03:02 PM,08/12/2015 05:05:56 PM,08/12/2015 05:06:42 PM,08/12/2015 05:16:23 PM,04/25/2016 01:08:57 PM,04/25/2016 01:08:57 PM,Fire,08/12/2015 05:35:31 PM,100 Block of THE EMBARCADERO,San Francisco,94111,B03,35,912,3,3,3,true,Fire,1,MEDIC,6,1,3,Financial District/South Beach,"(37.7953057437548, -122.394651127667)",152242763-68 -143552153,RS1,14126948,Structure Fire,12/21/2014,12/21/2014,12/21/2014 02:14:09 PM,12/21/2014 02:14:31 PM,12/21/2014 02:14:40 PM,12/21/2014 02:16:49 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,04/25/2016 01:13:18 PM,Fire,12/21/2014 02:18:48 PM,700 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,false,Alarm,1,RESCUE SQUAD,10,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",143552153-RS1 -143282207,B01,14116341,Citizen Assist / Service Call,11/24/2014,11/24/2014,11/24/2014 02:52:26 PM,11/24/2014 02:54:14 PM,11/24/2014 02:59:10 PM,11/24/2014 02:59:37 PM,11/24/2014 02:59:37 PM,04/25/2016 01:13:49 PM,04/25/2016 01:13:49 PM,Fire,11/24/2014 03:18:19 PM,1100 Block of SACRAMENTO ST,San Francisco,94108,B01,41,1414,3,3,3,false,Alarm,1,CHIEF,1,1,3,Nob Hill,"(37.792652645298, -122.412300829421)",143282207-B01 -160943803,85,16037469,Medical Incident,04/03/2016,04/03/2016,04/03/2016 11:50:36 PM,04/03/2016 11:51:24 PM,04/03/2016 11:51:33 PM,04/03/2016 11:51:39 PM,04/03/2016 11:58:03 PM,04/04/2016 12:11:16 AM,04/04/2016 12:27:03 AM,Code 2 Transport,04/04/2016 12:45:34 AM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",160943803-85 -152572135,AM12,15098301,Medical Incident,09/14/2015,09/14/2015,09/14/2015 02:05:37 PM,09/14/2015 02:07:12 PM,09/14/2015 02:08:02 PM,09/14/2015 02:08:59 PM,09/14/2015 02:12:22 PM,04/25/2016 01:08:21 PM,04/25/2016 01:08:21 PM,Medical Examiner,09/14/2015 03:23:33 PM,3000 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6326,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.723359097822, -122.401902489608)",152572135-AM12 -160973533,89,16038599,Medical Incident,04/06/2016,04/06/2016,04/06/2016 06:17:07 PM,04/06/2016 06:20:48 PM,04/06/2016 06:40:50 PM,04/06/2016 06:41:32 PM,04/06/2016 06:41:32 PM,04/06/2016 07:03:48 PM,04/06/2016 07:22:15 PM,Code 2 Transport,04/06/2016 08:02:24 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160973533-89 -161003259,70,16039952,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:44:51 PM,04/09/2016 09:46:34 PM,04/09/2016 09:47:44 PM,04/09/2016 09:47:52 PM,04/09/2016 09:53:22 PM,04/09/2016 10:27:04 PM,04/09/2016 10:51:11 PM,Code 2 Transport,04/09/2016 11:06:26 PM,0 Block of LYELL ST,San Francisco,94112,B09,32,8136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,8,Outer Mission,"(37.7313118275068, -122.431604221964)",161003259-70 -160921821,54,16036450,Medical Incident,04/01/2016,04/01/2016,04/01/2016 01:38:33 PM,04/01/2016 01:38:33 PM,04/01/2016 01:38:52 PM,04/01/2016 01:39:07 PM,04/01/2016 01:42:35 PM,04/01/2016 01:51:05 PM,04/01/2016 02:04:58 PM,Code 2 Transport,04/01/2016 02:27:04 PM,6TH AV/CLEMENT ST,San Francisco,94118,B07,31,7125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7829399330612, -122.464425023808)",160921821-54 -143441554,E18,14122307,Medical Incident,12/10/2014,12/10/2014,12/10/2014 11:44:41 AM,12/10/2014 11:45:54 AM,12/10/2014 11:46:15 AM,12/10/2014 11:48:56 AM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Cancelled,12/10/2014 11:51:09 AM,2200 Block of 18TH AVE,San Francisco,94116,B08,40,7375,3,3,3,true,Non Life-threatening,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7458923054923, -122.474889607092)",143441554-E18 -160943604,AM20,16037452,Traffic Collision,04/03/2016,04/03/2016,04/03/2016 10:34:27 PM,04/03/2016 10:36:08 PM,04/03/2016 10:36:33 PM,04/03/2016 10:37:24 PM,04/03/2016 10:43:17 PM,04/03/2016 11:03:18 PM,04/03/2016 11:12:27 PM,Code 2 Transport,04/04/2016 12:05:21 AM,CALIFORNIA ST/SPRUCE ST,San Francisco,94118,B07,10,4431,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7864177314315, -122.453406647155)",160943604-AM20 -151162663,RC2,15043915,Traffic Collision,04/26/2015,04/26/2015,04/26/2015 05:57:19 PM,04/26/2015 05:57:19 PM,04/26/2015 05:59:06 PM,04/26/2015 06:01:21 PM,04/26/2015 06:03:04 PM,04/25/2016 01:10:57 PM,04/25/2016 01:10:57 PM,Code 2 Transport,04/26/2015 06:24:07 PM,GEARY BL/ARGUELLO BL,San Francisco,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",151162663-RC2 -142022244,E36,14069933,Medical Incident,07/21/2014,07/21/2014,07/21/2014 04:05:59 PM,07/21/2014 04:06:39 PM,07/21/2014 04:07:13 PM,07/21/2014 04:08:34 PM,07/21/2014 04:11:57 PM,04/25/2016 01:16:07 PM,04/25/2016 01:16:07 PM,Code 2 Transport,07/21/2014 04:29:59 PM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",142022244-E36 -153453124,E34,15132926,Medical Incident,12/11/2015,12/11/2015,12/11/2015 06:11:57 PM,12/11/2015 06:12:43 PM,12/11/2015 06:13:03 PM,12/11/2015 06:16:09 PM,12/11/2015 06:16:09 PM,04/25/2016 01:06:41 PM,04/25/2016 01:06:41 PM,Against Medical Advice,12/11/2015 06:32:00 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7756362224799, -122.49784817494)",153453124-E34 -160973270,74,16038561,Traffic Collision,04/06/2016,04/06/2016,04/06/2016 05:25:06 PM,04/06/2016 05:26:11 PM,04/06/2016 05:26:58 PM,04/06/2016 05:27:08 PM,04/06/2016 05:30:41 PM,04/06/2016 05:47:43 PM,04/06/2016 06:04:44 PM,Code 2 Transport,04/06/2016 07:27:25 PM,300 Block of BRANNAN ST,San Francisco,94107,B03,8,2153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7816734510841, -122.392394096489)",160973270-74 -141900045,AM18,14065691,Medical Incident,07/09/2014,07/08/2014,07/09/2014 12:26:08 AM,07/09/2014 12:27:28 AM,07/09/2014 12:28:58 AM,07/09/2014 12:28:58 AM,07/09/2014 12:31:45 AM,07/09/2014 12:41:56 AM,07/09/2014 12:52:17 AM,Code 3 Transport,07/09/2014 01:38:56 AM,0 Block of GROVE ST,San Francisco,94102,B02,36,1647,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",141900045-AM18 -151590354,63,15060591,Structure Fire,06/08/2015,06/07/2015,06/08/2015 03:31:40 AM,06/08/2015 03:35:54 AM,06/08/2015 03:36:15 AM,06/08/2015 03:36:27 AM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,04/25/2016 01:10:08 PM,Fire,06/08/2015 03:43:54 AM,2300 Block of LARKIN ST,San Francisco,94109,B01,41,1626,3,3,3,true,Alarm,1,MEDIC,11,1,2,Russian Hill,"(37.7994456951412, -122.420717422205)",151590354-63 -151792977,T08,15068381,Structure Fire,06/28/2015,06/28/2015,06/28/2015 05:54:48 PM,06/28/2015 05:54:48 PM,06/28/2015 05:55:04 PM,06/28/2015 05:55:35 PM,06/28/2015 05:57:26 PM,04/25/2016 01:09:45 PM,04/25/2016 01:09:45 PM,Fire,06/28/2015 05:58:19 PM,3RD ST/BRYANT ST,San Francisco,94107,B03,8,2174,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7813212571676, -122.395843500166)",151792977-T08 -150801233,RS1,15030609,Structure Fire,03/21/2015,03/21/2015,03/21/2015 10:55:57 AM,03/21/2015 10:57:02 AM,03/21/2015 10:57:50 AM,03/21/2015 10:58:02 AM,03/21/2015 11:03:07 AM,04/25/2016 01:11:36 PM,04/25/2016 01:11:36 PM,Fire,03/21/2015 11:10:24 AM,400 Block of LEAVENWORTH ST,San Francisco,94102,B04,3,1544,3,3,3,false,Alarm,1,RESCUE SQUAD,8,2,6,Tenderloin,"(37.7851285057104, -122.414455368715)",150801233-RS1 -150861854,FD00A,15032831,,03/27/2015,03/27/2015,03/27/2015 01:16:16 PM,03/27/2015 01:20:49 PM,03/27/2015 01:34:31 PM,03/27/2015 01:34:31 PM,03/27/2015 01:34:31 PM,04/25/2016 01:11:30 PM,04/25/2016 01:11:30 PM,Fire,03/27/2015 01:34:51 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,false,Alarm,1,SUPPORT,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",150861854-FD00A -142811165,E01,14098805,Medical Incident,10/08/2014,10/08/2014,10/08/2014 10:38:21 AM,10/08/2014 10:38:53 AM,10/08/2014 10:39:03 AM,10/08/2014 10:40:06 AM,10/08/2014 10:45:02 AM,04/25/2016 01:14:40 PM,04/25/2016 01:14:40 PM,Code 2 Transport,10/08/2014 10:54:57 AM,POWELL ST/GEARY ST,San Francisco,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",142811165-E01 -150592785,RS2,15022635,Structure Fire,02/28/2015,02/28/2015,02/28/2015 06:06:12 PM,02/28/2015 06:06:52 PM,02/28/2015 06:07:09 PM,02/28/2015 06:08:04 PM,02/28/2015 06:14:14 PM,04/25/2016 01:11:59 PM,04/25/2016 01:11:59 PM,Fire,02/28/2015 06:19:25 PM,2200 Block of REVERE AVE,San Francisco,94124,B10,42,6381,3,3,3,false,Fire,1,RESCUE SQUAD,8,10,10,Bayview Hunters Point,"(37.7385522672072, -122.402184369233)",150592785-RS2 -160972307,AM04,16038457,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:09:21 PM,04/06/2016 02:10:19 PM,04/06/2016 02:11:05 PM,04/06/2016 02:12:02 PM,04/06/2016 02:13:18 PM,04/06/2016 02:26:11 PM,04/06/2016 02:46:08 PM,Code 2 Transport,04/06/2016 03:12:05 PM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7530339738059, -122.418588598473)",160972307-AM04 -141190307,E06,14040257,Medical Incident,04/29/2014,04/29/2014,04/29/2014 05:31:36 PM,04/29/2014 05:32:02 PM,04/29/2014 05:32:26 PM,04/29/2014 05:33:35 PM,04/29/2014 05:36:01 PM,04/25/2016 01:17:37 PM,04/25/2016 01:17:37 PM,Code 2 Transport,04/29/2014 05:48:34 PM,300 Block of DOLORES ST,SAN FRANCISCO,94110,B02,6,5251,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7635158382169, -122.426118705944)",141190307-E06 -160990132,53,16039164,Medical Incident,04/08/2016,04/07/2016,04/08/2016 01:14:40 AM,04/08/2016 01:14:57 AM,04/08/2016 01:15:20 AM,04/08/2016 01:17:31 AM,04/08/2016 01:28:58 AM,04/08/2016 02:08:06 AM,04/08/2016 02:35:01 AM,Code 2 Transport,04/08/2016 03:12:27 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160990132-53 -151402084,RC3,15053196,Medical Incident,05/20/2015,05/20/2015,05/20/2015 02:25:39 PM,05/20/2015 02:26:39 PM,05/20/2015 02:27:49 PM,05/20/2015 02:28:56 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,04/25/2016 01:10:29 PM,Medical Examiner,05/20/2015 02:35:38 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,South of Market,"(37.7807144867659, -122.408483722327)",151402084-RC3 -150021270,E03,15000694,Medical Incident,01/02/2015,01/02/2015,01/02/2015 12:05:07 PM,01/02/2015 12:07:18 PM,01/02/2015 12:07:43 PM,01/02/2015 12:09:58 PM,01/02/2015 12:13:16 PM,04/25/2016 01:13:04 PM,04/25/2016 01:13:04 PM,Unable to Locate,01/02/2015 12:14:06 PM,BREEN PL/MCALLISTER ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7806149658662, -122.416138098643)",150021270-E03 -160972534,88,16038475,Medical Incident,04/06/2016,04/06/2016,04/06/2016 02:54:03 PM,04/06/2016 02:55:14 PM,04/06/2016 02:55:59 PM,04/06/2016 02:56:08 PM,04/06/2016 02:58:12 PM,04/06/2016 03:09:45 PM,04/06/2016 03:25:33 PM,Code 2 Transport,04/06/2016 03:56:01 PM,COLUMBIA SQUARE ST/FOLSOM ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7778565371375, -122.406436335794)",160972534-88 -160951724,KM12,16037622,Medical Incident,04/04/2016,04/04/2016,04/04/2016 12:31:53 PM,04/04/2016 12:33:07 PM,04/04/2016 12:33:34 PM,04/04/2016 12:34:09 PM,04/04/2016 12:39:11 PM,04/04/2016 12:49:08 PM,04/04/2016 01:09:11 PM,Code 2 Transport,04/04/2016 01:27:32 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160951724-KM12 -143112394,E34,14110185,Medical Incident,11/07/2014,11/07/2014,11/07/2014 03:53:56 PM,11/07/2014 03:55:18 PM,11/07/2014 03:56:02 PM,11/07/2014 03:59:15 PM,11/07/2014 03:59:15 PM,04/25/2016 01:14:08 PM,04/25/2016 01:14:08 PM,Code 2 Transport,11/07/2014 04:36:11 PM,500 Block of 45TH AVE,San Francisco,94121,B07,34,7274,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7781471959495, -122.506162501356)",143112394-E34 -150321970,FD00A,15012379,,02/01/2015,02/01/2015,02/01/2015 01:35:48 PM,02/01/2015 01:37:06 PM,02/01/2015 01:55:11 PM,02/01/2015 01:55:11 PM,02/01/2015 01:55:11 PM,04/25/2016 01:12:30 PM,04/25/2016 01:12:30 PM,Fire,02/01/2015 01:55:27 PM,0 Block of INA CT,San Francisco,94112,B09,43,6164,3,3,3,false,Alarm,1,SUPPORT,2,9,11,Excelsior,"(37.7235977410233, -122.424884406565)",150321970-FD00A -152272352,65,15086605,Medical Incident,08/15/2015,08/15/2015,08/15/2015 02:47:45 PM,08/15/2015 02:48:19 PM,08/15/2015 02:48:28 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,04/25/2016 01:08:54 PM,Cancelled,08/15/2015 02:48:57 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",152272352-65 -153433255,E17,15132141,Medical Incident,12/09/2015,12/09/2015,12/09/2015 06:29:24 PM,12/09/2015 06:30:59 PM,12/09/2015 06:31:19 PM,12/09/2015 06:32:44 PM,12/09/2015 06:37:29 PM,04/25/2016 01:06:44 PM,04/25/2016 01:06:44 PM,Code 2 Transport,12/09/2015 06:54:01 PM,0 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7201828007793, -122.385924774252)",153433255-E17 -152011461,E36,15076576,Medical Incident,07/20/2015,07/20/2015,07/20/2015 11:30:38 AM,07/20/2015 11:30:38 AM,07/20/2015 11:32:59 AM,07/20/2015 11:32:59 AM,07/20/2015 11:37:29 AM,04/25/2016 01:09:22 PM,04/25/2016 01:09:22 PM,Unable to Locate,07/20/2015 11:55:08 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",152011461-E36 -160970136,71,16038250,Medical Incident,04/06/2016,04/05/2016,04/06/2016 01:03:54 AM,04/06/2016 01:08:25 AM,04/06/2016 01:09:04 AM,04/06/2016 01:09:10 AM,04/06/2016 01:17:49 AM,04/06/2016 01:36:27 AM,04/06/2016 01:55:02 AM,Code 2 Transport,04/06/2016 02:32:13 AM,0 Block of RIZAL ST,San Francisco,94107,B03,8,2175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.781822111031, -122.399291985556)",160970136-71 -151781399,E06,15067714,Medical Incident,06/27/2015,06/27/2015,06/27/2015 10:54:43 AM,06/27/2015 10:56:42 AM,06/27/2015 10:57:22 AM,06/27/2015 10:58:54 AM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,04/25/2016 01:09:47 PM,No Merit,06/27/2015 11:03:04 AM,0 Block of BRADY ST,San Francisco,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Mission,"(37.773304948777, -122.421051947861)",151781399-E06 -160950544,AM02,16037527,Medical Incident,04/04/2016,04/03/2016,04/04/2016 07:09:29 AM,04/04/2016 07:10:04 AM,04/04/2016 07:10:21 AM,04/04/2016 07:11:01 AM,04/04/2016 07:14:18 AM,04/04/2016 07:24:32 AM,04/04/2016 07:55:34 AM,Code 2 Transport,04/04/2016 08:06:23 AM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160950544-AM02 -160981150,55,16038838,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:32:35 AM,04/07/2016 09:35:16 AM,04/07/2016 09:35:26 AM,04/07/2016 09:35:33 AM,04/07/2016 09:42:05 AM,04/07/2016 10:11:34 AM,04/07/2016 10:26:49 AM,Code 2 Transport,04/07/2016 11:02:17 AM,2200 Block of SCOTT ST,San Francisco,94115,B04,38,4124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7905184879495, -122.439291112504)",160981150-55 -153161754,75,15121422,Medical Incident,11/12/2015,11/12/2015,11/12/2015 12:29:35 PM,11/12/2015 12:31:21 PM,11/12/2015 12:33:03 PM,11/12/2015 12:33:21 PM,11/12/2015 12:41:20 PM,11/12/2015 12:51:58 PM,11/12/2015 01:18:12 PM,Code 2 Transport,11/12/2015 02:04:31 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",153161754-75 -161003196,52,16039944,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:27:15 PM,04/09/2016 09:27:15 PM,04/09/2016 09:27:27 PM,04/09/2016 09:27:39 PM,04/09/2016 09:32:00 PM,04/09/2016 09:47:13 PM,04/09/2016 09:53:25 PM,Code 2 Transport,04/09/2016 10:44:07 PM,24TH ST/TREAT AV,San Francisco,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7525727580898, -122.41299517484)",161003196-52 -141180167,FB1,14039781,Water Rescue,04/28/2014,04/28/2014,04/28/2014 11:09:16 AM,04/28/2014 11:09:16 AM,04/28/2014 11:17:12 AM,04/28/2014 11:18:14 AM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,04/25/2016 01:17:38 PM,Fire,04/28/2014 11:47:16 AM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,,94129,B99,51,4632,,3,3,false,Fire,1,SUPPORT,13,7,2,Presidio,"(37.8066581989584, -122.47471662098)",141180167-FB1 -142510595,77,14087443,Medical Incident,09/08/2014,09/07/2014,09/08/2014 07:44:28 AM,09/08/2014 07:51:16 AM,09/08/2014 07:51:28 AM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,04/25/2016 01:15:13 PM,Code 2 Transport,09/08/2014 07:51:40 AM,0 Block of KITTREDGE TER,San Francisco,94118,B05,21,4521,2,2,2,true,Non Life-threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.7776757933879, -122.450624807535)",142510595-77 -143600140,E15,14128640,Medical Incident,12/26/2014,12/25/2014,12/26/2014 01:40:48 AM,12/26/2014 01:42:24 AM,12/26/2014 01:42:37 AM,12/26/2014 01:44:43 AM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,04/25/2016 01:13:13 PM,Code 2 Transport,12/26/2014 01:46:49 AM,GENEVA AV/CAYUGA AV,San Francisco,94112,B09,15,8332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7189286736817, -122.443696071625)",143600140-E15 -143461170,T09,14123282,Alarms,12/12/2014,12/12/2014,12/12/2014 10:25:40 AM,12/12/2014 10:26:44 AM,12/12/2014 10:27:14 AM,12/12/2014 10:27:39 AM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,04/25/2016 01:13:29 PM,Fire,12/12/2014 10:42:53 AM,1900 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2634,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7497698839567, -122.396784716412)",143461170-T09 -152933354,63,15112696,Medical Incident,10/20/2015,10/20/2015,10/20/2015 07:00:06 PM,10/20/2015 07:02:05 PM,10/20/2015 07:02:48 PM,10/20/2015 07:03:14 PM,10/20/2015 07:05:50 PM,10/20/2015 07:24:21 PM,10/20/2015 07:37:17 PM,Code 2 Transport,10/20/2015 08:20:17 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7677413424145, -122.415468956066)",152933354-63 -141291123,T19,14043842,Structure Fire,05/09/2014,05/09/2014,05/09/2014 10:04:12 AM,05/09/2014 10:04:41 AM,05/09/2014 10:09:29 AM,05/09/2014 10:09:29 AM,05/09/2014 10:16:52 AM,04/25/2016 01:17:26 PM,04/25/2016 01:17:26 PM,Fire,05/09/2014 10:24:59 AM,2200 Block of 27TH AVE,San Francisco,94116,B08,40,7471,3,3,3,false,Alarm,1,TRUCK,5,8,4,Sunset/Parkside,"(37.7454676868028, -122.484528373552)",141291123-T19 -143601875,E01,14128829,Medical Incident,12/26/2014,12/26/2014,12/26/2014 03:49:51 PM,12/26/2014 03:50:32 PM,12/26/2014 03:50:57 PM,12/26/2014 03:51:05 PM,12/26/2014 03:51:53 PM,04/25/2016 01:13:12 PM,04/25/2016 01:13:12 PM,Code 2 Transport,12/26/2014 03:58:07 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",143601875-E01 -152580445,E08,15098535,Medical Incident,09/15/2015,09/14/2015,09/15/2015 06:00:41 AM,09/15/2015 06:01:00 AM,09/15/2015 06:01:18 AM,09/15/2015 06:03:25 AM,09/15/2015 06:04:55 AM,04/25/2016 01:08:20 PM,04/25/2016 01:08:20 PM,Code 2 Transport,09/15/2015 06:13:06 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",152580445-E08 -160962481,77,16038068,Medical Incident,04/05/2016,04/05/2016,04/05/2016 03:37:07 PM,04/05/2016 03:37:07 PM,04/05/2016 03:37:22 PM,04/05/2016 03:37:29 PM,04/05/2016 03:40:58 PM,04/05/2016 03:57:00 PM,04/05/2016 04:24:25 PM,Code 2 Transport,04/05/2016 04:48:13 PM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",160962481-77 -160980035,68,16038728,Medical Incident,04/07/2016,04/06/2016,04/07/2016 12:17:15 AM,04/07/2016 12:19:18 AM,04/07/2016 12:19:24 AM,04/07/2016 12:19:33 AM,04/07/2016 12:29:34 AM,04/07/2016 01:00:55 AM,04/07/2016 01:22:37 AM,Code 2 Transport,04/07/2016 02:09:48 AM,1100 Block of BROADWAY,San Francisco,94109,B04,41,1534,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7967543436034, -122.416027111974)",160980035-68 -152343452,B04,15089375,Alarms,08/22/2015,08/22/2015,08/22/2015 08:26:15 PM,08/22/2015 08:27:49 PM,08/22/2015 08:33:42 PM,08/22/2015 08:34:51 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,04/25/2016 01:08:46 PM,Fire,08/22/2015 08:38:05 PM,3100 Block of CLAY ST,San Francisco,94115,B04,10,4335,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7894069839183, -122.444949721778)",152343452-B04 -160940151,60,16037109,Medical Incident,04/03/2016,04/02/2016,04/03/2016 12:52:08 AM,04/03/2016 12:52:08 AM,04/03/2016 12:52:29 AM,04/03/2016 12:52:38 AM,04/03/2016 01:09:06 AM,04/03/2016 01:29:05 AM,04/03/2016 01:40:08 AM,Code 2 Transport,04/03/2016 02:40:54 AM,0 Block of LEDYARD ST,San Francisco,94124,B10,42,6363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332354676556, -122.402116556292)",160940151-60 -160932355,85,16036933,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:01:50 PM,04/02/2016 04:04:52 PM,04/02/2016 04:24:16 PM,04/02/2016 04:24:16 PM,04/02/2016 04:38:43 PM,04/02/2016 04:48:39 PM,04/02/2016 05:20:55 PM,Code 2 Transport,04/02/2016 05:53:02 PM,1700 Block of DIAMOND ST,San Francisco,94131,B06,26,5557,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7435786028451, -122.435650218165)",160932355-85 -143263796,KM15,14115690,Medical Incident,11/22/2014,11/22/2014,11/22/2014 10:19:59 PM,11/22/2014 10:20:35 PM,11/22/2014 10:20:59 PM,11/22/2014 10:21:34 PM,11/22/2014 10:25:32 PM,04/25/2016 01:13:51 PM,04/25/2016 01:13:51 PM,Cancelled,11/22/2014 10:36:42 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",143263796-KM15 -150644003,58,15024672,Medical Incident,03/05/2015,03/05/2015,03/05/2015 10:27:57 PM,03/05/2015 10:29:15 PM,03/05/2015 10:29:29 PM,03/05/2015 10:32:40 PM,03/05/2015 10:41:25 PM,04/25/2016 01:11:53 PM,04/25/2016 01:11:53 PM,Gone on Arrival,03/05/2015 10:46:18 PM,FRANKLIN ST/GROVE ST,San Francisco,94102,B02,36,3214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7780207607813, -122.421520699389)",150644003-58 -153301448,84,15126997,Medical Incident,11/26/2015,11/26/2015,11/26/2015 01:23:21 PM,11/26/2015 01:25:23 PM,11/26/2015 01:26:22 PM,11/26/2015 01:26:31 PM,11/26/2015 01:34:07 PM,11/26/2015 01:53:10 PM,11/26/2015 02:04:33 PM,Code 2 Transport,11/26/2015 02:58:42 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7658582826035, -122.419816092644)",153301448-84 -160992701,68,16039397,Medical Incident,04/08/2016,04/08/2016,04/08/2016 05:13:17 PM,04/08/2016 05:13:17 PM,04/08/2016 05:13:31 PM,04/08/2016 05:13:58 PM,04/08/2016 05:20:35 PM,04/08/2016 05:31:43 PM,04/08/2016 05:56:33 PM,Code 2 Transport,04/08/2016 06:43:02 PM,500 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7803303915285, -122.420129233501)",160992701-68 -141761363,E05,14060706,Traffic Collision,06/25/2014,06/25/2014,06/25/2014 11:27:38 AM,06/25/2014 11:27:38 AM,06/25/2014 11:30:45 AM,06/25/2014 11:30:45 AM,06/25/2014 11:31:22 AM,04/25/2016 01:16:34 PM,04/25/2016 01:16:34 PM,Patient Declined Transport,06/25/2014 11:32:33 AM,PINE ST/LAGUNA ST,San Francisco,94109,B04,38,3325,B,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7885770670933, -122.428712111002)",141761363-E05 -150952763,68,15036215,Medical Incident,04/05/2015,04/05/2015,04/05/2015 08:37:31 PM,04/05/2015 08:40:20 PM,04/05/2015 08:41:13 PM,04/05/2015 08:41:31 PM,04/05/2015 08:54:29 PM,04/05/2015 09:19:05 PM,04/05/2015 09:23:02 PM,Code 2 Transport,04/05/2015 10:10:25 PM,0 Block of GRATTAN ST,San Francisco,94117,B05,12,5161,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7640571293154, -122.448926080776)",150952763-68 -151940119,E01,15073857,Medical Incident,07/13/2015,07/12/2015,07/13/2015 12:50:33 AM,07/13/2015 12:52:00 AM,07/13/2015 12:53:19 AM,07/13/2015 12:55:16 AM,07/13/2015 12:58:09 AM,04/25/2016 01:09:30 PM,04/25/2016 01:09:30 PM,Code 2 Transport,07/13/2015 12:58:19 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",151940119-E01 -161001074,KM09,16039693,Medical Incident,04/09/2016,04/09/2016,04/09/2016 09:59:39 AM,04/09/2016 10:00:45 AM,04/09/2016 10:21:51 AM,04/09/2016 10:23:17 AM,04/09/2016 10:44:42 AM,04/09/2016 11:12:31 AM,04/09/2016 11:50:55 AM,Code 2 Transport,04/09/2016 12:20:06 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",161001074-KM09 -160991147,AM08,16039250,Medical Incident,04/08/2016,04/08/2016,04/08/2016 10:33:19 AM,04/08/2016 10:33:59 AM,04/08/2016 10:34:36 AM,04/08/2016 10:35:25 AM,04/08/2016 10:39:12 AM,04/08/2016 10:57:36 AM,04/08/2016 11:25:25 AM,Code 2 Transport,04/08/2016 11:50:26 AM,200 Block of SHOTWELL ST,San Francisco,94110,B02,7,5237,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7644380015359, -122.416376372761)",160991147-AM08 -160961851,57,16038020,Medical Incident,04/05/2016,04/05/2016,04/05/2016 01:06:45 PM,04/05/2016 01:08:11 PM,04/05/2016 01:12:50 PM,04/05/2016 01:13:32 PM,04/05/2016 01:32:46 PM,04/05/2016 02:57:06 PM,04/05/2016 02:57:08 PM,Code 2 Transport,04/05/2016 02:57:12 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160961851-57 -141272072,E22,14043141,Medical Incident,05/07/2014,05/07/2014,05/07/2014 12:05:37 PM,05/07/2014 12:06:49 PM,05/07/2014 12:10:37 PM,05/07/2014 12:12:52 PM,05/07/2014 12:15:30 PM,04/25/2016 01:17:28 PM,04/25/2016 01:17:28 PM,Against Medical Advice,05/07/2014 12:30:47 PM,1500 Block of 12TH AVE,San Francisco,94122,B08,22,735,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7592342080011, -122.469266161643)",141272072-E22 -152111499,T19,15080343,Vehicle Fire,07/30/2015,07/30/2015,07/30/2015 12:01:44 PM,07/30/2015 12:04:35 PM,07/30/2015 12:04:57 PM,07/30/2015 12:06:21 PM,07/30/2015 12:09:55 PM,04/25/2016 01:09:12 PM,04/25/2016 01:09:12 PM,Fire,07/30/2015 12:12:32 PM,JUNIPERO SERRA BL/HOLLOWAY AV,San Francisco,94127,B09,19,8437,3,3,3,false,Fire,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7215688596034, -122.472634533165)",152111499-T19 -150384112,KM07,15015009,Medical Incident,02/07/2015,02/07/2015,02/07/2015 11:56:53 PM,02/07/2015 11:57:26 PM,02/07/2015 11:57:49 PM,02/07/2015 11:58:57 PM,02/08/2015 12:07:59 AM,02/08/2015 12:08:00 AM,02/08/2015 12:10:30 AM,Code 2 Transport,02/08/2015 12:31:22 AM,700 Block of STANYAN ST,San Francisco,94117,B05,12,4552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",150384112-KM07 -143434064,B01,14122142,Other,12/09/2014,12/09/2014,12/09/2014 10:06:21 PM,12/09/2014 10:06:59 PM,12/09/2014 10:07:56 PM,12/09/2014 10:08:02 PM,12/09/2014 10:10:44 PM,04/25/2016 01:13:32 PM,04/25/2016 01:13:32 PM,Fire,12/09/2014 10:28:52 PM,400 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",143434064-B01 -160932422,67,16036937,Medical Incident,04/02/2016,04/02/2016,04/02/2016 04:23:04 PM,04/02/2016 04:25:20 PM,04/02/2016 04:25:56 PM,04/02/2016 04:26:03 PM,04/02/2016 04:31:34 PM,04/02/2016 04:36:27 PM,04/02/2016 05:00:22 PM,Code 2 Transport,04/02/2016 05:22:22 PM,1100 Block of TURK ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160932422-67 -150463932,62,15018127,Medical Incident,02/15/2015,02/15/2015,02/15/2015 11:43:00 PM,02/15/2015 11:43:00 PM,02/15/2015 11:43:28 PM,02/15/2015 11:43:59 PM,02/15/2015 11:46:49 PM,04/25/2016 01:12:13 PM,04/25/2016 01:12:13 PM,Patient Declined Transport,02/16/2015 12:33:12 AM,100 Block of HARTFORD ST,San Francisco,94114,B05,6,5417,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7601511990346, -122.433893032003)",150463932-62 -150450723,E23,15017405,Medical Incident,02/14/2015,02/13/2015,02/14/2015 06:46:21 AM,02/14/2015 06:46:50 AM,02/14/2015 06:47:03 AM,02/14/2015 06:48:25 AM,02/14/2015 06:53:10 AM,04/25/2016 01:12:15 PM,04/25/2016 01:12:15 PM,Code 3 Transport,02/14/2015 07:13:53 AM,2600 Block of IRVING ST,San Francisco,94122,B08,22,7511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.76321532639, -122.486238493419)",150450723-E23 -160981040,62,16038828,Medical Incident,04/07/2016,04/07/2016,04/07/2016 09:00:58 AM,04/07/2016 09:01:39 AM,04/07/2016 09:02:09 AM,04/07/2016 09:02:14 AM,04/07/2016 09:07:38 AM,04/07/2016 09:21:50 AM,04/07/2016 09:38:06 AM,Code 2 Transport,04/07/2016 10:16:27 AM,500 Block of 9TH ST,San Francisco,94103,B03,29,2331,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",160981040-62 -141050062,87,14035322,Medical Incident,04/15/2014,04/14/2014,04/15/2014 07:15:57 AM,04/15/2014 07:18:41 AM,04/15/2014 07:19:37 AM,04/15/2014 07:20:27 AM,04/15/2014 07:27:51 AM,04/15/2014 07:50:14 AM,04/15/2014 08:04:49 AM,Code 2 Transport,04/15/2014 08:52:29 AM,100 Block of MASON ST,SAN FRANCISCO,94102,B03,1,1366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",141050062-87 -160982477,62,16038984,Medical Incident,04/07/2016,04/07/2016,04/07/2016 03:23:41 PM,04/07/2016 03:23:41 PM,04/07/2016 03:25:16 PM,04/07/2016 03:25:29 PM,04/07/2016 03:42:15 PM,04/07/2016 03:46:31 PM,04/07/2016 04:06:36 PM,Code 2 Transport,04/07/2016 04:21:00 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160982477-62 -122450031,78,12080869,Medical Incident,09/01/2012,08/31/2012,09/01/2012 01:51:41 AM,09/01/2012 01:52:39 AM,09/01/2012 01:52:50 AM,09/01/2012 01:53:24 AM,09/01/2012 01:59:16 AM,09/01/2012 02:24:10 AM,09/01/2012 02:31:53 AM,Code 2 Transport,09/01/2012 03:15:47 AM,2400 Block of LARKIN ST,SF,94109,B01,41,1626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8003597667856, -122.421041385631)",122450031-78 -132230341,E03,13075458,Medical Incident,08/11/2013,08/11/2013,08/11/2013 10:12:19 PM,08/11/2013 10:15:09 PM,08/11/2013 10:15:26 PM,08/11/2013 10:16:58 PM,08/11/2013 10:20:10 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 10:25:03 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",132230341-E03 -103530118,E44,10113267,Vehicle Fire,12/19/2010,12/18/2010,12/19/2010 06:30:32 AM,12/19/2010 06:31:29 AM,12/19/2010 06:31:48 AM,12/19/2010 06:33:35 AM,12/19/2010 06:36:58 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/19/2010 07:01:15 AM,1300 Block of EGBERT AVE,SF,94124,B10,17,6615,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7221736000048, -122.391637312216)",103530118-E44 -130940389,E06,13031634,Structure Fire,04/04/2013,04/04/2013,04/04/2013 10:39:54 PM,04/04/2013 10:41:00 PM,04/04/2013 10:41:18 PM,04/04/2013 10:41:46 PM,04/04/2013 10:43:14 PM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/04/2013 10:54:54 PM,100 Block of NOE ST,SF,94114,B05,6,5212,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7662576774281, -122.433362682614)",130940389-E06 -120170144,E25,12005680,Administrative,01/17/2012,01/17/2012,01/17/2012 11:42:05 AM,01/17/2012 11:42:07 AM,01/17/2012 11:42:13 AM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 11:42:33 AM,3300 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,false,,1,ENGINE,1,None,None,None,"(37.7475912199361, -122.387182780653)",120170144-E25 -140890342,55,14030116,Medical Incident,03/30/2014,03/30/2014,03/30/2014 09:33:54 PM,03/30/2014 09:36:59 PM,03/30/2014 09:37:30 PM,03/30/2014 09:38:05 PM,03/30/2014 09:41:50 PM,03/30/2014 09:51:56 PM,03/30/2014 10:10:30 PM,Code 2 Transport,03/30/2014 10:39:49 PM,700 Block of HAIGHT ST,SAN FRANCISCO,94117,B05,21,4142,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7716381141296, -122.434564848231)",140890342-55 -123010002,T14,12099631,Alarms,10/27/2012,10/26/2012,10/27/2012 12:08:07 AM,10/27/2012 12:09:42 AM,10/27/2012 12:09:53 AM,10/27/2012 12:11:19 AM,10/27/2012 12:14:36 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:31:39 AM,3800 Block of BALBOA ST,SF,94121,B07,34,7263,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7755386590019, -122.499981004468)",123010002-T14 -121210163,KM05,12040169,Medical Incident,04/30/2012,04/30/2012,04/30/2012 12:38:39 PM,04/30/2012 12:40:11 PM,04/30/2012 12:40:24 PM,04/30/2012 12:41:03 PM,04/30/2012 12:53:41 PM,04/30/2012 01:07:05 PM,04/30/2012 01:20:41 PM,Code 2 Transport,04/30/2012 01:39:44 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121210163-KM05 -160732534,78,16029072,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:13:23 PM,03/13/2016 07:15:19 PM,03/13/2016 07:16:53 PM,03/13/2016 07:17:05 PM,03/13/2016 07:22:58 PM,03/13/2016 07:48:00 PM,03/13/2016 08:03:43 PM,Code 2 Transport,03/13/2016 08:42:50 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",160732534-78 -122110206,E35,12070109,Traffic Collision,07/29/2012,07/29/2012,07/29/2012 03:47:29 PM,07/29/2012 03:48:17 PM,07/29/2012 03:49:12 PM,07/29/2012 03:50:33 PM,07/29/2012 03:58:58 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 04:28:33 PM,300 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",122110206-E35 -110290045,E02,11009431,Traffic Collision,01/29/2011,01/28/2011,01/29/2011 02:27:08 AM,01/29/2011 02:27:08 AM,01/29/2011 02:28:00 AM,01/29/2011 02:30:10 AM,01/29/2011 02:41:40 AM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/29/2011 02:41:43 AM,COWELL PL/VALLEJO ST,SF,94111,B01,13,1213,2,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7994557113148, -122.40184382489)",110290045-E02 -120370391,AM14,12012525,Medical Incident,02/06/2012,02/06/2012,02/06/2012 11:05:23 PM,02/06/2012 11:06:33 PM,02/06/2012 11:07:06 PM,02/06/2012 11:07:58 PM,02/06/2012 11:12:20 PM,02/06/2012 11:19:47 PM,02/06/2012 11:38:12 PM,Code 2 Transport,02/07/2012 12:08:40 AM,WEBSTER ST/ELLIS ST,SF,94115,B04,5,3514,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7825698868934, -122.43079788324)",120370391-AM14 -160711265,53,16028191,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:57:16 AM,03/11/2016 10:57:35 AM,03/11/2016 10:59:44 AM,03/11/2016 10:59:55 AM,03/11/2016 11:10:31 AM,03/11/2016 11:29:54 AM,03/11/2016 11:44:45 AM,Code 2 Transport,03/11/2016 12:24:21 PM,SUTTER ST/JONES ST,San Francisco,94109,B01,3,1463,2,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7885982027896, -122.413541442382)",160711265-53 -111730104,88,11057011,Medical Incident,06/22/2011,06/22/2011,06/22/2011 09:03:53 AM,06/22/2011 09:04:57 AM,06/22/2011 09:05:33 AM,06/22/2011 09:09:19 AM,06/22/2011 09:14:41 AM,06/22/2011 09:28:01 AM,06/22/2011 09:42:49 AM,Code 2 Transport,06/22/2011 10:09:50 AM,1100 Block of MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",111730104-88 -160580246,59,16022964,Medical Incident,02/27/2016,02/26/2016,02/27/2016 01:40:34 AM,02/27/2016 01:41:45 AM,02/27/2016 01:42:03 AM,02/27/2016 01:42:09 AM,02/27/2016 01:51:38 AM,02/27/2016 02:24:39 AM,02/27/2016 02:45:32 AM,Code 2 Transport,02/27/2016 03:19:54 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160580246-59 -111570275,E03,11051981,Medical Incident,06/06/2011,06/06/2011,06/06/2011 04:39:02 PM,06/06/2011 04:39:33 PM,06/06/2011 04:39:45 PM,06/06/2011 04:41:30 PM,06/06/2011 04:42:56 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/06/2011 04:47:36 PM,600 Block of POST ST,SF,94102,B01,3,1451,E,E,3,true,,1,ENGINE,2,1,3,Tenderloin,"(37.7877770164282, -122.41201048788)",111570275-E03 -130250347,E02,13008762,Alarms,01/25/2013,01/25/2013,01/25/2013 07:27:26 PM,01/25/2013 07:28:49 PM,01/25/2013 07:28:56 PM,01/25/2013 07:30:35 PM,01/25/2013 07:31:42 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/25/2013 07:37:37 PM,800 Block of STOCKTON ST,SF,94108,B01,2,1326,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7936278952214, -122.407746881294)",130250347-E02 -132310332,E19,13078123,Traffic Collision,08/19/2013,08/19/2013,08/19/2013 06:32:32 PM,08/19/2013 06:33:32 PM,08/19/2013 06:35:30 PM,08/19/2013 06:36:47 PM,08/19/2013 06:39:41 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,No Merit,08/19/2013 06:42:58 PM,19TH AV/OCEAN AV,SF,94132,B08,19,7413,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7324561388297, -122.474954620812)",132310332-E19 -112760043,AM18,11091241,Medical Incident,10/03/2011,10/02/2011,10/03/2011 02:44:09 AM,10/03/2011 02:44:24 AM,10/03/2011 02:44:56 AM,10/03/2011 02:45:48 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 02:55:32 AM,1200 Block of HARRISON ST,SF,94103,B03,29,2333,3,2,2,false,,1,PRIVATE,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",112760043-AM18 -140320143,E16,14010801,Traffic Collision,02/01/2014,02/01/2014,02/01/2014 11:03:50 AM,02/01/2014 11:03:50 AM,02/01/2014 11:03:58 AM,02/01/2014 11:04:16 AM,02/01/2014 11:06:25 AM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 11:18:13 AM,VAN NESS AV/FRANCISCO ST,SF,94109,B04,16,3144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8032055067298, -122.424918803949)",140320143-E16 -112620172,D3,11086447,Structure Fire,09/19/2011,09/19/2011,09/19/2011 12:06:42 PM,09/19/2011 12:07:30 PM,09/19/2011 12:07:52 PM,09/19/2011 12:08:57 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 12:12:32 PM,1200 Block of MISSOURI ST,SF,94107,B10,9,2634,3,3,3,false,,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.7512947118368, -122.395516673668)",112620172-D3 -112170310,81,11071814,Medical Incident,08/05/2011,08/05/2011,08/05/2011 06:50:26 PM,08/05/2011 06:51:17 PM,08/05/2011 06:51:54 PM,08/05/2011 06:52:02 PM,08/05/2011 06:56:41 PM,08/05/2011 07:09:28 PM,08/05/2011 07:24:59 PM,Code 2 Transport,08/05/2011 08:05:01 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,E,3,true,,1,MEDIC,3,6,9,Mission,"(37.7562319946436, -122.418893283075)",112170310-81 -120620004,E11,12020230,Structure Fire,03/02/2012,03/01/2012,03/02/2012 12:32:05 AM,03/02/2012 12:35:43 AM,03/02/2012 12:36:00 AM,03/02/2012 12:37:17 AM,03/02/2012 12:40:35 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/02/2012 12:43:07 AM,3300 Block of 20TH ST,SF,94110,B06,7,5447,3,3,3,true,Fire,1,ENGINE,7,6,9,Mission,"(37.7588520014309, -122.416331137192)",120620004-E11 -113520281,KM04,11116942,Medical Incident,12/18/2011,12/18/2011,12/18/2011 06:05:20 PM,12/18/2011 06:05:52 PM,12/18/2011 06:06:08 PM,12/18/2011 06:08:12 PM,12/18/2011 06:15:02 PM,12/18/2011 06:33:39 PM,12/18/2011 06:52:21 PM,Code 2 Transport,12/18/2011 07:14:50 PM,0 Block of GRAFTON AVE,SF,94112,B09,15,8466,3,3,3,false,,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7199844662207, -122.453593851281)",113520281-KM04 -121100027,E07,12036250,Medical Incident,04/19/2012,04/18/2012,04/19/2012 02:56:51 AM,04/19/2012 02:57:16 AM,04/19/2012 02:57:29 AM,04/19/2012 02:58:58 AM,04/19/2012 03:01:23 AM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/19/2012 03:05:00 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",121100027-E07 -132890260,KM10,13098358,Medical Incident,10/16/2013,10/16/2013,10/16/2013 04:44:47 PM,10/16/2013 04:46:17 PM,10/16/2013 04:46:31 PM,10/16/2013 04:47:07 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 04:48:35 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",132890260-KM10 -132730051,67,13092673,Medical Incident,09/30/2013,09/29/2013,09/30/2013 03:22:24 AM,09/30/2013 03:22:47 AM,09/30/2013 03:23:06 AM,09/30/2013 03:23:29 AM,09/30/2013 03:42:31 AM,09/30/2013 04:22:02 AM,09/30/2013 04:53:33 AM,Code 2 Transport,09/30/2013 05:28:55 AM,POLK ST/SUTTER ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",132730051-67 -140940176,KM10,14031591,Medical Incident,04/04/2014,04/04/2014,04/04/2014 12:40:17 PM,04/04/2014 12:44:15 PM,04/04/2014 12:45:53 PM,04/04/2014 12:46:28 PM,04/04/2014 12:58:09 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,No Merit,04/04/2014 01:16:07 PM,1400 Block of BRODERICK ST,SAN FRANCISCO,94115,B05,10,4235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,2,Japantown,"(37.7838654796396, -122.441370226887)",140940176-KM10 -140290243,65,14009932,Medical Incident,01/29/2014,01/29/2014,01/29/2014 03:21:05 PM,01/29/2014 03:21:54 PM,01/29/2014 03:22:16 PM,01/29/2014 03:22:33 PM,01/29/2014 03:31:35 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Medical Examiner,01/29/2014 04:52:23 PM,300 Block of SCOTT ST,SF,94117,B05,21,4141,,E,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7728730905811, -122.435725726073)",140290243-65 -122940063,99,12097406,Medical Incident,10/20/2012,10/19/2012,10/20/2012 03:18:59 AM,10/20/2012 03:21:02 AM,10/20/2012 03:22:01 AM,10/20/2012 03:22:13 AM,10/20/2012 03:47:25 AM,10/20/2012 03:47:28 AM,10/20/2012 04:03:52 AM,Code 2 Transport,10/20/2012 04:24:02 AM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",122940063-99 -132640142,86,13089474,Medical Incident,09/21/2013,09/21/2013,09/21/2013 09:35:36 AM,09/21/2013 09:35:36 AM,09/21/2013 09:35:58 AM,09/21/2013 09:36:15 AM,09/21/2013 09:42:51 AM,09/21/2013 10:16:40 AM,09/21/2013 10:31:58 AM,Code 2 Transport,09/21/2013 11:02:42 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,2,2,2,false,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",132640142-86 -160670199,AM24,16026576,Medical Incident,03/07/2016,03/06/2016,03/07/2016 02:53:08 AM,03/07/2016 02:53:36 AM,03/07/2016 02:54:20 AM,03/07/2016 02:54:59 AM,03/07/2016 03:02:08 AM,03/07/2016 03:22:45 AM,03/07/2016 03:45:15 AM,Code 2 Transport,03/07/2016 04:11:32 AM,1700 Block of GRANT AVE,San Francisco,94133,B01,28,1264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8026749829679, -122.408060868534)",160670199-AM24 -160531162,KM08,16021153,Medical Incident,02/22/2016,02/22/2016,02/22/2016 10:23:42 AM,02/22/2016 10:31:55 AM,02/22/2016 10:32:27 AM,02/22/2016 10:32:27 AM,02/22/2016 10:40:02 AM,02/22/2016 10:56:24 AM,02/22/2016 11:15:05 AM,Code 2 Transport,02/22/2016 11:46:05 AM,FULTON ST/8TH AV,San Francisco,94122,B07,31,7133,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7733982051293, -122.4658831608)",160531162-KM08 -122080326,E35,12069283,Medical Incident,07/26/2012,07/26/2012,07/26/2012 10:40:51 PM,07/26/2012 10:46:52 PM,07/26/2012 10:47:25 PM,07/26/2012 10:48:50 PM,07/26/2012 10:51:20 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/26/2012 11:01:13 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",122080326-E35 -120400012,84,12013193,Medical Incident,02/09/2012,02/08/2012,02/09/2012 01:17:00 AM,02/09/2012 01:17:48 AM,02/09/2012 01:18:05 AM,02/09/2012 01:19:56 AM,02/09/2012 01:22:36 AM,02/09/2012 01:35:39 AM,02/09/2012 01:43:43 AM,Code 2 Transport,02/09/2012 02:08:35 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",120400012-84 -131220271,E08,13041092,Medical Incident,05/02/2013,05/02/2013,05/02/2013 02:22:46 PM,05/02/2013 02:24:56 PM,05/02/2013 02:26:03 PM,05/02/2013 02:26:18 PM,05/02/2013 02:30:18 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 02:52:56 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",131220271-E08 -133080324,B02,13104833,Alarms,11/04/2013,11/04/2013,11/04/2013 06:30:56 PM,11/04/2013 06:32:36 PM,11/04/2013 06:32:54 PM,11/04/2013 06:34:08 PM,11/04/2013 06:37:54 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Fire,11/04/2013 06:47:55 PM,700 Block of MCALLISTER ST,SF,94102,B02,5,3316,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7794115468887, -122.425174050161)",133080324-B02 -140310147,85,14010515,Traffic Collision,01/31/2014,01/31/2014,01/31/2014 12:49:48 PM,01/31/2014 12:50:15 PM,01/31/2014 12:51:45 PM,01/31/2014 12:52:56 PM,01/31/2014 12:59:03 PM,01/31/2014 01:44:29 PM,01/31/2014 01:58:18 PM,Other,01/31/2014 03:00:59 PM,LOMBARD ST/LAGUNA ST,SF,94123,B04,16,3352,,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8004692165623, -122.431115291336)",140310147-85 -121120184,E03,12037127,Structure Fire,04/21/2012,04/21/2012,04/21/2012 11:11:47 AM,04/21/2012 11:13:20 AM,04/21/2012 11:13:49 AM,04/21/2012 11:15:00 AM,04/21/2012 11:15:25 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 11:24:22 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Fire,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",121120184-E03 -160333038,71,16013134,Medical Incident,02/02/2016,02/02/2016,02/02/2016 07:30:16 PM,02/02/2016 07:32:18 PM,02/02/2016 07:35:01 PM,02/02/2016 07:35:08 PM,02/02/2016 07:48:30 PM,02/02/2016 07:58:04 PM,02/02/2016 08:11:18 PM,Code 2 Transport,02/02/2016 08:44:55 PM,5000 Block of ANZA ST,San Francisco,94121,B07,34,7267,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7774153923634, -122.502273715508)",160333038-71 -160363009,52,16014359,Medical Incident,02/05/2016,02/05/2016,02/05/2016 05:30:25 PM,02/05/2016 05:31:26 PM,02/05/2016 05:31:44 PM,02/05/2016 05:31:52 PM,02/05/2016 05:36:49 PM,02/05/2016 05:51:35 PM,02/05/2016 06:01:52 PM,Code 2 Transport,02/05/2016 06:29:15 PM,5TH ST/BRANNAN ST,San Francisco,94107,B03,8,2241,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7765683820103, -122.398755450545)",160363009-52 -160651328,71,16025898,Medical Incident,03/05/2016,03/05/2016,03/05/2016 11:28:00 AM,03/05/2016 11:28:00 AM,03/05/2016 11:28:25 AM,03/05/2016 11:28:41 AM,03/05/2016 11:33:50 AM,03/05/2016 11:47:48 AM,03/05/2016 12:16:28 PM,Code 2 Transport,03/05/2016 12:37:19 PM,VAN NESS AV/BUSH ST,San Francisco,94109,B04,3,3156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7884896423018, -122.421948587259)",160651328-71 -112430134,E38,11080089,Other,08/31/2011,08/31/2011,08/31/2011 10:16:41 AM,08/31/2011 10:21:22 AM,08/31/2011 10:21:39 AM,08/31/2011 10:22:21 AM,08/31/2011 10:25:49 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,08/31/2011 10:31:14 AM,2000 Block of FRANKLIN ST,SF,94109,B04,38,3226,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7932922930477, -122.424537680646)",112430134-E38 -102300144,B10,10072354,Alarms,08/18/2010,08/18/2010,08/18/2010 11:52:22 AM,08/18/2010 11:53:20 AM,08/18/2010 11:54:08 AM,08/18/2010 11:54:54 AM,08/18/2010 11:59:10 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Fire,08/18/2010 12:12:02 PM,300 Block of NEWHALL ST,SF,94124,B10,25,6457,3,3,3,false,,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7425496105821, -122.3854005001)",102300144-B10 -130010132,T02,13000086,Alarms,01/01/2013,12/31/2012,01/01/2013 01:59:29 AM,01/01/2013 02:02:36 AM,01/01/2013 02:05:13 AM,01/01/2013 02:08:44 AM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,01/01/2013 02:08:47 AM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",130010132-T02 -111580206,B04,11052256,HazMat,06/07/2011,06/07/2011,06/07/2011 02:20:05 PM,06/07/2011 02:21:47 PM,06/07/2011 02:22:24 PM,06/07/2011 02:23:49 PM,06/07/2011 02:26:44 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 02:37:19 PM,4400 Block of GEARY BLVD,SF,94118,B07,31,7135,3,3,3,false,,1,CHIEF,1,7,1,Inner Richmond,"(37.7810280644975, -122.466965657749)",111580206-B04 -122120037,KM04,12070258,Medical Incident,07/30/2012,07/29/2012,07/30/2012 04:20:53 AM,07/30/2012 04:21:09 AM,07/30/2012 04:23:18 AM,07/30/2012 04:24:42 AM,07/30/2012 04:24:23 AM,07/30/2012 04:44:39 AM,07/30/2012 04:49:30 AM,Code 3 Transport,07/30/2012 05:35:02 AM,MISSION ST/CLARION AL,SF,94110,B02,7,5423,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7630508400294, -122.419476288648)",122120037-KM04 -103120083,E14,10099975,Medical Incident,11/08/2010,11/08/2010,11/08/2010 08:21:20 AM,11/08/2010 08:21:36 AM,11/08/2010 08:23:36 AM,11/08/2010 08:24:31 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/08/2010 08:26:18 AM,GREAT HY/BALBOA ST,SF,94121,B07,34,7312,2,2,2,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7750759610096, -122.511294923938)",103120083-E14 -122760437,E02,12091346,Other,10/02/2012,10/02/2012,10/02/2012 10:20:46 PM,10/02/2012 10:20:46 PM,10/02/2012 10:20:46 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Fire,10/02/2012 10:35:26 PM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.7977530904723, -122.406401665376)",122760437-E02 -112960307,71,11098293,Medical Incident,10/23/2011,10/23/2011,10/23/2011 07:04:46 PM,10/23/2011 07:06:25 PM,10/23/2011 07:06:55 PM,10/23/2011 07:07:33 PM,10/23/2011 07:10:40 PM,10/23/2011 07:26:24 PM,10/23/2011 07:50:21 PM,Code 2 Transport,10/23/2011 08:15:54 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112960307-71 -123500044,93,12116920,Medical Incident,12/15/2012,12/14/2012,12/15/2012 02:39:42 AM,12/15/2012 02:40:44 AM,12/15/2012 02:47:23 AM,12/15/2012 02:48:05 AM,12/15/2012 03:05:44 AM,12/15/2012 03:20:18 AM,12/15/2012 03:32:23 AM,Code 2 Transport,12/15/2012 03:55:52 AM,BEACH ST/JONES ST,SF,94133,B01,28,1521,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8070725139897, -122.417260632444)",123500044-93 -160280479,55,16010968,Medical Incident,01/28/2016,01/27/2016,01/28/2016 06:34:12 AM,01/28/2016 06:35:56 AM,01/28/2016 06:37:04 AM,01/28/2016 06:38:04 AM,01/28/2016 06:54:46 AM,01/28/2016 07:21:28 AM,01/28/2016 08:07:22 AM,Code 2 Transport,01/28/2016 08:42:53 AM,200 Block of STRATFORD DR,San Francisco,94132,B09,19,8752,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7206719216771, -122.473717580095)",160280479-55 -160512494,58,16020546,Medical Incident,02/20/2016,02/20/2016,02/20/2016 05:41:41 PM,02/20/2016 05:43:13 PM,02/20/2016 05:43:30 PM,02/20/2016 05:43:43 PM,02/20/2016 05:48:57 PM,02/20/2016 05:59:32 PM,02/20/2016 06:12:52 PM,Code 2 Transport,02/20/2016 06:39:46 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",160512494-58 -121020318,66,12033935,Medical Incident,04/11/2012,04/11/2012,04/11/2012 08:54:22 PM,04/11/2012 08:54:59 PM,04/11/2012 08:55:19 PM,04/11/2012 08:56:11 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 08:57:27 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,A,A,2,true,Potentially Life-Threatening,1,MEDIC,7,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",121020318-66 -111810229,AP,11059760,Other,06/30/2011,06/30/2011,06/30/2011 03:00:40 PM,06/30/2011 03:00:40 PM,06/30/2011 03:00:40 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Fire,06/30/2011 03:00:49 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",111810229-AP -130590358,E12,13019962,Medical Incident,02/28/2013,02/28/2013,02/28/2013 11:04:00 PM,02/28/2013 11:04:00 PM,02/28/2013 11:04:32 PM,02/28/2013 11:06:07 PM,02/28/2013 11:09:10 PM,04/25/2016 01:54:04 PM,04/25/2016 01:54:04 PM,Other,02/28/2013 11:20:46 PM,1700 Block of OAK ST,SF,94117,B05,21,4524,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7717190060183, -122.44812427582)",130590358-E12 -113640338,E11,11121033,Medical Incident,12/30/2011,12/30/2011,12/30/2011 08:04:05 PM,12/30/2011 08:04:53 PM,12/30/2011 08:05:12 PM,12/30/2011 08:06:04 PM,12/30/2011 08:07:56 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,Other,12/30/2011 08:23:39 PM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7497020110556, -122.420499334167)",113640338-E11 -110320011,T15,11010350,Alarms,02/01/2011,01/31/2011,02/01/2011 01:18:29 AM,02/01/2011 01:18:50 AM,02/01/2011 01:19:11 AM,02/01/2011 01:20:37 AM,02/01/2011 01:23:18 AM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,02/01/2011 01:28:06 AM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,false,,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",110320011-T15 -110520044,B01,11017114,Alarms,02/21/2011,02/20/2011,02/21/2011 05:28:58 AM,02/21/2011 05:30:06 AM,02/21/2011 05:30:21 AM,02/21/2011 05:32:20 AM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 05:35:27 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,CHIEF,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",110520044-B01 -160270085,53,16010516,Medical Incident,01/27/2016,01/26/2016,01/27/2016 12:45:48 AM,01/27/2016 12:46:24 AM,01/27/2016 12:46:40 AM,01/27/2016 12:46:48 AM,01/27/2016 12:53:24 AM,01/27/2016 01:12:28 AM,01/27/2016 01:21:19 AM,Code 2 Transport,01/27/2016 02:06:52 AM,900 Block of FOLSOM ST,San Francisco,94103,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7798915874961, -122.403958049432)",160270085-53 -111880095,E32,11062088,Traffic Collision,07/07/2011,07/07/2011,07/07/2011 08:55:33 AM,07/07/2011 08:56:05 AM,07/07/2011 08:56:31 AM,07/07/2011 08:57:27 AM,07/07/2011 08:59:16 AM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/07/2011 09:24:02 AM,HIGHLAND AV/MISSION ST,SF,94110,B06,32,5631,3,3,3,true,,1,ENGINE,1,6,8,Bernal Heights,"(37.7374062487517, -122.424040149847)",111880095-E32 -133290153,E03,13111739,Outside Fire,11/25/2013,11/25/2013,11/25/2013 11:22:54 AM,11/25/2013 11:23:36 AM,11/25/2013 11:23:50 AM,11/25/2013 11:24:11 AM,11/25/2013 11:26:43 AM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Other,11/25/2013 11:28:54 AM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",133290153-E03 -160430108,71,16017099,Medical Incident,02/12/2016,02/11/2016,02/12/2016 12:47:17 AM,02/12/2016 12:52:42 AM,02/12/2016 12:53:11 AM,02/12/2016 12:53:30 AM,02/12/2016 01:01:20 AM,02/12/2016 01:18:33 AM,02/12/2016 01:27:52 AM,Code 2 Transport,02/12/2016 02:03:20 AM,1300 Block of POLK ST,San Francisco,94109,B04,3,3122,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",160430108-71 -110020201,RC2,11000678,Medical Incident,01/02/2011,01/02/2011,01/02/2011 02:04:35 PM,01/02/2011 02:05:13 PM,01/02/2011 02:05:24 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 02:11:48 PM,FULTON ST/33RD AV,SF,94121,B07,14,7243,3,3,3,true,,1,RESCUE CAPTAIN,4,7,1,Golden Gate Park,"(37.7721785309842, -122.492761385207)",110020201-RC2 -160863590,63,16034358,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:31:57 PM,03/26/2016 09:33:44 PM,03/26/2016 09:33:55 PM,03/26/2016 09:34:05 PM,03/26/2016 09:42:25 PM,03/26/2016 09:52:19 PM,03/26/2016 10:27:08 PM,Code 2 Transport,03/26/2016 10:50:35 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160863590-63 -133430204,B02,13116330,Alarms,12/09/2013,12/09/2013,12/09/2013 12:55:03 PM,12/09/2013 12:55:54 PM,12/09/2013 12:56:19 PM,12/09/2013 12:58:40 PM,12/09/2013 01:00:19 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/09/2013 01:03:39 PM,0 Block of HOFF ST,SF,94110,B02,7,5236,3,3,3,false,Alarm,1,CHIEF,2,2,9,Mission,"(37.7641898782543, -122.420437704275)",133430204-B02 -160900689,AM06,16035617,Medical Incident,03/30/2016,03/29/2016,03/30/2016 07:53:56 AM,03/30/2016 07:55:58 AM,03/30/2016 08:26:51 AM,03/30/2016 08:27:33 AM,03/30/2016 08:36:00 AM,03/30/2016 08:48:57 AM,03/30/2016 09:09:56 AM,Code 2 Transport,03/30/2016 09:46:53 AM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7661343875141, -122.421935077177)",160900689-AM06 -160432679,56,16017387,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:00:46 PM,02/12/2016 05:03:33 PM,02/12/2016 05:04:18 PM,02/12/2016 05:05:04 PM,02/12/2016 05:15:39 PM,02/12/2016 05:27:13 PM,02/12/2016 05:29:17 PM,Code 2 Transport,02/12/2016 05:56:00 PM,2400 Block of FULTON ST,San Francisco,94118,B07,21,4561,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7744861396627, -122.457337524606)",160432679-56 -140160197,KM04,14005476,Medical Incident,01/16/2014,01/16/2014,01/16/2014 12:55:31 PM,01/16/2014 12:57:55 PM,01/16/2014 01:00:53 PM,01/16/2014 01:01:52 PM,01/16/2014 01:28:10 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Against Medical Advice,01/16/2014 02:05:51 PM,200 Block of MINERVA ST,SF,94112,B09,33,8373,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7156918777367, -122.460860536014)",140160197-KM04 -140430201,E01,14014624,Medical Incident,02/12/2014,02/12/2014,02/12/2014 01:35:04 PM,02/12/2014 01:35:27 PM,02/12/2014 01:36:41 PM,02/12/2014 01:38:12 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 01:38:20 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",140430201-E01 -160312036,65,16012185,Medical Incident,01/31/2016,01/31/2016,01/31/2016 02:19:18 PM,01/31/2016 02:20:48 PM,01/31/2016 02:25:09 PM,01/31/2016 02:25:28 PM,01/31/2016 02:28:54 PM,01/31/2016 02:39:37 PM,01/31/2016 02:56:42 PM,Code 2 Transport,01/31/2016 03:32:25 PM,LINCOLN WY/47TH AV,San Francisco,94122,B08,23,7654,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,1,Golden Gate Park,"(37.764116211639, -122.507262464861)",160312036-65 -112840153,E42,11093980,Traffic Collision,10/11/2011,10/11/2011,10/11/2011 11:35:24 AM,10/11/2011 11:35:43 AM,10/11/2011 11:36:34 AM,04/25/2016 02:02:13 PM,10/11/2011 11:40:54 AM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 12:01:52 PM,1200 Block of QUESADA AVE,SF,94124,B10,17,6634,2,2,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7285368878908, -122.383099929789)",112840153-E42 -122410211,E28,12079782,Medical Incident,08/28/2012,08/28/2012,08/28/2012 02:51:44 PM,08/28/2012 02:56:28 PM,08/28/2012 02:56:41 PM,08/28/2012 02:57:51 PM,08/28/2012 03:00:09 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/28/2012 03:05:43 PM,2500 Block of MASON ST,SF,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",122410211-E28 -120050099,E44,12001665,Alarms,01/05/2012,01/05/2012,01/05/2012 08:56:04 AM,01/05/2012 08:57:12 AM,01/05/2012 08:57:45 AM,01/05/2012 08:58:09 AM,01/05/2012 09:02:03 AM,04/25/2016 02:00:47 PM,04/25/2016 02:00:47 PM,Fire,01/05/2012 09:25:47 AM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.712002001307, -122.407607975966)",120050099-E44 -160372547,KM11,16014771,Medical Incident,02/06/2016,02/06/2016,02/06/2016 03:53:29 PM,02/06/2016 03:53:29 PM,02/06/2016 03:54:35 PM,02/06/2016 03:54:40 PM,02/06/2016 04:04:56 PM,02/06/2016 04:19:11 PM,02/06/2016 04:40:19 PM,Code 2 Transport,02/06/2016 05:25:43 PM,0 Block of GROVE ST,San Francisco,94102,B99,36,1552,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160372547-KM11 -131100283,T19,13037102,Confined Space / Structure Collapse,04/20/2013,04/20/2013,04/20/2013 05:17:56 PM,04/20/2013 05:18:53 PM,04/20/2013 05:19:13 PM,04/20/2013 05:22:50 PM,04/20/2013 05:24:18 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/20/2013 05:32:34 PM,2200 Block of 16TH AVE,SF,94116,B08,40,7375,3,3,3,true,Fire,1,TRUCK,5,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",131100283-T19 -123100042,KM07,12103007,Medical Incident,11/05/2012,11/04/2012,11/05/2012 04:51:24 AM,11/05/2012 04:51:54 AM,11/05/2012 04:52:42 AM,11/05/2012 04:53:15 AM,11/05/2012 04:59:23 AM,11/05/2012 05:06:56 AM,11/05/2012 05:35:58 AM,Code 2 Transport,11/05/2012 05:55:59 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",123100042-KM07 -160374148,PT202,16014976,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:06:40 PM,02/06/2016 11:08:23 PM,02/06/2016 11:09:14 PM,02/06/2016 11:15:25 PM,02/06/2016 11:16:11 PM,02/06/2016 11:30:24 PM,02/07/2016 12:01:19 AM,Code 2 Transport,02/07/2016 01:03:38 AM,2700 Block of 24TH ST,San Francisco,94110,B06,9,5531,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7529342790976, -122.407745321325)",160374148-PT202 -131210329,87,13040775,Medical Incident,05/01/2013,05/01/2013,05/01/2013 06:51:28 PM,05/01/2013 06:52:45 PM,05/01/2013 06:53:25 PM,05/01/2013 06:53:46 PM,05/01/2013 06:57:03 PM,05/01/2013 07:11:52 PM,05/01/2013 07:28:55 PM,Code 2 Transport,05/01/2013 07:46:35 PM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",131210329-87 -160801557,AM02,16031794,Medical Incident,03/20/2016,03/20/2016,03/20/2016 12:14:50 PM,03/20/2016 12:15:50 PM,03/20/2016 12:16:15 PM,03/20/2016 12:16:52 PM,03/20/2016 12:18:52 PM,03/20/2016 12:37:43 PM,03/20/2016 01:03:19 PM,Code 2 Transport,03/20/2016 01:27:58 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",160801557-AM02 -122660176,E01,12087871,Medical Incident,09/22/2012,09/22/2012,09/22/2012 01:22:41 PM,09/22/2012 01:25:06 PM,09/22/2012 01:25:20 PM,04/25/2016 01:56:39 PM,09/22/2012 01:27:42 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 01:34:15 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",122660176-E01 -140250057,E38,14008458,Alarms,01/25/2014,01/24/2014,01/25/2014 04:48:17 AM,01/25/2014 04:50:01 AM,01/25/2014 04:50:09 AM,01/25/2014 04:52:33 AM,01/25/2014 04:54:15 AM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/25/2014 05:19:46 AM,2200 Block of SUTTER ST,SF,94115,B04,38,3646,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7856178085459, -122.437392724821)",140250057-E38 -160202297,89,16008056,Medical Incident,01/20/2016,01/20/2016,01/20/2016 03:03:47 PM,01/20/2016 03:05:33 PM,01/20/2016 03:06:47 PM,01/20/2016 03:06:52 PM,01/20/2016 03:13:34 PM,01/20/2016 03:28:51 PM,01/20/2016 03:44:28 PM,Code 2 Transport,01/20/2016 04:16:07 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160202297-89 -112020449,T08,11066860,Structure Fire,07/21/2011,07/21/2011,07/21/2011 11:43:44 PM,07/21/2011 11:43:44 PM,07/21/2011 11:44:03 PM,07/21/2011 11:45:28 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,07/21/2011 11:47:19 PM,4TH ST/BRYANT ST,SF,94107,B03,8,2217,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7795669099357, -122.398059940086)",112020449-T08 -112440047,B04,11080339,Traffic Collision,09/01/2011,08/31/2011,09/01/2011 05:35:53 AM,09/01/2011 05:36:50 AM,09/01/2011 05:37:15 AM,09/01/2011 05:39:26 AM,09/01/2011 05:45:35 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 05:54:10 AM,100 Block of RICHARDSON AVE,SF,94123,B04,16,4325,3,3,3,false,,1,CHIEF,2,4,2,Marina,"(37.7995738246664, -122.446103675048)",112440047-B04 -102350386,67,10074127,Medical Incident,08/23/2010,08/23/2010,08/23/2010 08:05:27 PM,08/23/2010 08:06:35 PM,08/23/2010 08:12:26 PM,08/23/2010 08:12:41 PM,08/23/2010 08:26:59 PM,08/23/2010 08:52:23 PM,08/23/2010 09:05:07 PM,Code 2 Transport,08/23/2010 09:32:50 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,2,2,2,true,,1,MEDIC,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",102350386-67 -120650245,60,12021536,Medical Incident,03/05/2012,03/05/2012,03/05/2012 03:42:27 PM,03/05/2012 03:44:23 PM,03/05/2012 03:44:42 PM,03/05/2012 03:44:53 PM,03/05/2012 03:53:17 PM,03/05/2012 04:12:23 PM,03/05/2012 04:30:16 PM,Code 2 Transport,03/05/2012 05:04:34 PM,0 Block of RUSSIA AVE,SF,94112,B09,43,6126,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7214392698455, -122.436731381634)",120650245-60 -123380254,E42,12112748,Medical Incident,12/03/2012,12/03/2012,12/03/2012 02:41:55 PM,12/03/2012 02:42:48 PM,12/03/2012 02:44:24 PM,12/03/2012 02:46:54 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 02:51:14 PM,INNES AV/DONAHUE ST,SF,94124,B10,25,6663,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7288061449325, -122.370145383783)",123380254-E42 -110260222,E03,11008604,Medical Incident,01/26/2011,01/26/2011,01/26/2011 02:15:49 PM,01/26/2011 02:17:30 PM,01/26/2011 02:18:02 PM,01/26/2011 02:19:33 PM,01/26/2011 02:21:43 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/26/2011 02:28:58 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,,1,ENGINE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",110260222-E03 -112670131,E15,11088180,Medical Incident,09/24/2011,09/24/2011,09/24/2011 09:52:10 AM,09/24/2011 09:52:58 AM,09/24/2011 09:53:44 AM,09/24/2011 09:59:53 AM,09/24/2011 10:03:15 AM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 10:06:17 AM,100 Block of LAKEVIEW AVE,SF,94112,B09,33,8325,2,3,3,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7167347566926, -122.451563721002)",112670131-E15 -112370040,94,11078088,Medical Incident,08/25/2011,08/24/2011,08/25/2011 03:01:06 AM,08/25/2011 03:03:59 AM,08/25/2011 03:04:09 AM,08/25/2011 03:04:20 AM,08/25/2011 03:16:00 AM,08/25/2011 03:19:37 AM,08/25/2011 03:48:55 AM,Code 2 Transport,08/25/2011 03:59:46 AM,200 Block of TURK ST,SF,94102,B03,1,1456,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",112370040-94 -110990018,66,11032731,Medical Incident,04/09/2011,04/08/2011,04/09/2011 01:06:19 AM,04/09/2011 01:09:52 AM,04/09/2011 01:11:38 AM,04/09/2011 01:11:47 AM,04/09/2011 01:17:06 AM,04/09/2011 01:34:44 AM,04/09/2011 01:50:55 AM,Code 2 Transport,04/09/2011 02:10:36 AM,100 Block of PERU AVE,SF,94112,B09,43,6132,1,1,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7280809000554, -122.428473813684)",110990018-66 -102830108,T13,10090005,Alarms,10/10/2010,10/10/2010,10/10/2010 09:48:23 AM,10/10/2010 09:49:24 AM,10/10/2010 09:49:35 AM,10/10/2010 09:50:14 AM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 09:50:30 AM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2144,3,3,3,false,,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",102830108-T13 -113050083,E03,11101193,Medical Incident,11/01/2011,10/31/2011,11/01/2011 06:24:16 AM,11/01/2011 06:26:54 AM,11/01/2011 06:27:09 AM,11/01/2011 06:29:09 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 06:30:26 AM,900 Block of EDDY ST,SF,94102,B02,5,3262,1,3,3,true,,1,ENGINE,3,2,5,Western Addition,"(37.782522418285, -122.423274430962)",113050083-E03 -121820154,KM15,12060580,Medical Incident,06/30/2012,06/30/2012,06/30/2012 11:23:28 AM,06/30/2012 11:28:03 AM,06/30/2012 11:29:48 AM,06/30/2012 11:30:28 AM,06/30/2012 11:34:31 AM,06/30/2012 11:56:38 AM,06/30/2012 12:09:29 PM,Code 2 Transport,06/30/2012 12:37:55 PM,300 Block of WALLER ST,SF,94117,B05,6,3526,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7712242757005, -122.429426469723)",121820154-KM15 -112480118,94,11081733,Medical Incident,09/05/2011,09/05/2011,09/05/2011 09:29:42 AM,09/05/2011 09:30:46 AM,09/05/2011 09:30:55 AM,09/05/2011 09:31:32 AM,09/05/2011 09:35:18 AM,09/05/2011 10:04:06 AM,09/05/2011 10:24:24 AM,Code 2 Transport,09/05/2011 11:00:51 AM,100 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7353538209895, -122.380382266471)",112480118-94 -132710106,B01,13092004,Medical Incident,09/28/2013,09/28/2013,09/28/2013 08:14:20 AM,09/28/2013 08:17:52 AM,09/28/2013 08:18:19 AM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/28/2013 08:20:57 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,,1,CHIEF,6,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",132710106-B01 -160110282,79,16004247,Medical Incident,01/11/2016,01/10/2016,01/11/2016 03:05:18 AM,01/11/2016 03:07:43 AM,01/11/2016 03:09:00 AM,01/11/2016 03:09:15 AM,01/11/2016 03:21:40 AM,01/11/2016 03:44:18 AM,01/11/2016 04:00:32 AM,Code 2 Transport,01/11/2016 04:15:20 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160110282-79 -112590055,54,11085292,Medical Incident,09/16/2011,09/15/2011,09/16/2011 06:02:32 AM,09/16/2011 06:03:31 AM,09/16/2011 06:04:04 AM,09/16/2011 06:06:21 AM,09/16/2011 06:07:20 AM,09/16/2011 06:14:54 AM,09/16/2011 06:22:06 AM,Code 2 Transport,09/16/2011 06:46:36 AM,600 Block of FLORIDA ST,SF,94110,B02,7,5426,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7610685432179, -122.410957120422)",112590055-54 -131200178,78,13040369,Medical Incident,04/30/2013,04/30/2013,04/30/2013 02:26:33 PM,04/30/2013 02:30:26 PM,04/30/2013 02:30:55 PM,04/30/2013 02:31:29 PM,04/30/2013 02:37:17 PM,04/30/2013 02:47:33 PM,04/30/2013 02:57:02 PM,Code 2 Transport,04/30/2013 03:24:05 PM,25TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7521940654679, -122.398452381695)",131200178-78 -80250214,ERS,8007913,,01/25/2008,01/25/2008,01/25/2008 01:47:49 PM,01/25/2008 01:47:57 PM,01/25/2008 01:48:31 PM,04/25/2016 03:35:51 PM,04/25/2016 03:35:51 PM,04/25/2016 03:35:51 PM,04/25/2016 03:35:51 PM,Other,01/25/2008 01:48:54 PM,900 Block of RANKIN ST,SF,94124,B10,9,6433,3,3,3,true,,1,ADMIN,0,10,10,Bayview Hunters Point,"(37.7406804919425, -122.396085269914)",080250214-ERS -160844422,70,16033591,Medical Incident,03/24/2016,03/24/2016,03/24/2016 11:36:21 PM,03/24/2016 11:38:13 PM,03/24/2016 11:38:32 PM,03/24/2016 11:38:40 PM,03/24/2016 11:43:53 PM,03/25/2016 12:05:41 AM,03/25/2016 12:39:30 AM,Code 2 Transport,03/25/2016 12:55:04 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160844422-70 -111840251,E42,11060836,Medical Incident,07/03/2011,07/03/2011,07/03/2011 03:29:34 PM,07/03/2011 03:30:55 PM,07/03/2011 03:31:11 PM,07/03/2011 03:32:01 PM,07/03/2011 03:34:44 PM,07/03/2011 04:05:24 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 04:25:56 PM,300 Block of HAMILTON ST,SF,94134,B10,42,6335,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7266668122361, -122.409840332676)",111840251-E42 -160123617,89,16004967,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:44:42 PM,01/12/2016 09:44:42 PM,01/12/2016 09:45:09 PM,01/12/2016 09:45:21 PM,01/12/2016 09:57:29 PM,01/12/2016 10:12:13 PM,01/12/2016 10:28:38 PM,Code 3 Transport,01/12/2016 11:16:40 PM,1800 Block of 43RD AVE,San Francisco,94122,B08,23,7646,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7521760478222, -122.502056597808)",160123617-89 -130320358,93,13011074,Medical Incident,02/01/2013,02/01/2013,02/01/2013 09:05:15 PM,02/01/2013 09:06:08 PM,02/01/2013 09:06:39 PM,02/01/2013 09:06:49 PM,02/01/2013 09:10:26 PM,02/01/2013 09:23:06 PM,02/01/2013 09:38:07 PM,Code 2 Transport,02/01/2013 09:57:52 PM,COLUMBUS AV/PACIFIC AV,SF,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7970645895846, -122.405512936752)",130320358-93 -160871305,89,16034537,Medical Incident,03/27/2016,03/27/2016,03/27/2016 10:53:47 AM,03/27/2016 10:55:30 AM,03/27/2016 10:56:06 AM,03/27/2016 10:56:20 AM,03/27/2016 11:05:00 AM,03/27/2016 11:23:17 AM,03/27/2016 11:43:27 AM,Code 2 Transport,03/27/2016 12:27:16 PM,300 Block of GUERRERO ST,San Francisco,94103,B02,6,5235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.76558714518, -122.424297645357)",160871305-89 -160070725,71,16002742,Medical Incident,01/07/2016,01/07/2016,01/07/2016 08:23:23 AM,01/07/2016 08:23:55 AM,01/07/2016 08:24:41 AM,01/07/2016 08:24:50 AM,01/07/2016 08:30:53 AM,01/07/2016 08:47:00 AM,01/07/2016 09:03:05 AM,Code 2 Transport,01/07/2016 09:24:18 AM,10TH ST/HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7740433259374, -122.414367692219)",160070725-71 -160582177,KM11,16023154,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:04:32 PM,02/27/2016 03:05:02 PM,02/27/2016 03:06:36 PM,02/27/2016 03:07:18 PM,02/27/2016 03:12:07 PM,02/27/2016 03:26:40 PM,02/27/2016 03:42:26 PM,Code 2 Transport,02/27/2016 04:19:43 PM,1500 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1535,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7952323460567, -122.416494402639)",160582177-KM11 -130200443,81,13007098,Medical Incident,01/20/2013,01/20/2013,01/20/2013 11:18:35 PM,01/20/2013 11:18:53 PM,01/20/2013 11:19:14 PM,01/20/2013 11:19:29 PM,01/20/2013 11:30:11 PM,01/20/2013 11:43:36 PM,01/21/2013 12:03:12 AM,Code 2 Transport,01/21/2013 12:29:56 AM,300 Block of VIENNA ST,SF,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7227804111928, -122.428602345947)",130200443-81 -123050264,E16,12101247,Medical Incident,10/31/2012,10/31/2012,10/31/2012 01:48:01 PM,10/31/2012 01:52:08 PM,10/31/2012 01:53:37 PM,10/31/2012 01:54:17 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 01:57:25 PM,NORTH POINT ST/POLK ST,SF,94109,B01,28,1623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.805286983829, -122.423655077131)",123050264-E16 -130170206,E36,13005795,Medical Incident,01/17/2013,01/17/2013,01/17/2013 01:51:42 PM,01/17/2013 01:53:48 PM,01/17/2013 01:54:41 PM,01/17/2013 01:56:26 PM,01/17/2013 02:02:05 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 02:03:59 PM,13TH ST/SOUTH VAN NESS AV,SF,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.769815078903, -122.417753195885)",130170206-E36 -160872705,75,16034660,Medical Incident,03/27/2016,03/27/2016,03/27/2016 05:35:12 PM,03/27/2016 05:35:50 PM,03/27/2016 05:36:33 PM,03/27/2016 05:37:35 PM,03/27/2016 05:45:26 PM,03/27/2016 05:57:21 PM,03/27/2016 06:30:49 PM,Code 2 Transport,03/27/2016 06:58:00 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160872705-75 -160871577,63,16034560,Medical Incident,03/27/2016,03/27/2016,03/27/2016 12:03:36 PM,03/27/2016 12:05:25 PM,03/27/2016 12:06:38 PM,03/27/2016 12:06:55 PM,03/27/2016 12:14:02 PM,03/27/2016 12:24:05 PM,03/27/2016 12:39:42 PM,Code 2 Transport,03/27/2016 01:11:33 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160871577-63 -110310194,86,11010169,Medical Incident,01/31/2011,01/31/2011,01/31/2011 01:04:34 PM,01/31/2011 01:05:37 PM,01/31/2011 01:05:50 PM,01/31/2011 01:07:06 PM,01/31/2011 01:11:11 PM,01/31/2011 01:21:49 PM,01/31/2011 02:09:27 PM,Code 2 Transport,01/31/2011 02:30:19 PM,1500 Block of BRODERICK ST,SF,94115,B05,10,4235,3,3,3,true,,1,MEDIC,2,5,5,Japantown,"(37.7845624883046, -122.441511182007)",110310194-86 -102610390,88,10082681,Medical Incident,09/18/2010,09/18/2010,09/18/2010 09:22:38 PM,09/18/2010 09:23:43 PM,09/18/2010 09:24:06 PM,09/18/2010 09:24:40 PM,09/18/2010 09:31:18 PM,09/18/2010 10:03:16 PM,09/18/2010 10:23:40 PM,Other,09/18/2010 10:50:35 PM,100 Block of YALE ST,SF,94134,B09,42,635,E,E,3,true,,1,MEDIC,1,9,9,Excelsior,"(37.7272689303445, -122.417723324333)",102610390-88 -103640033,E38,10116640,Medical Incident,12/30/2010,12/29/2010,12/30/2010 02:49:59 AM,12/30/2010 02:50:55 AM,12/30/2010 02:51:09 AM,12/30/2010 02:52:40 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/30/2010 02:53:36 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,1,2,false,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",103640033-E38 -110900142,T01,11029729,Structure Fire,03/31/2011,03/31/2011,03/31/2011 11:54:22 AM,03/31/2011 11:54:22 AM,03/31/2011 11:54:32 AM,03/31/2011 11:55:53 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Other,03/31/2011 11:59:03 AM,TAYLOR ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",110900142-T01 -160831200,85,16032902,Traffic Collision,03/23/2016,03/23/2016,03/23/2016 10:04:36 AM,03/23/2016 10:04:36 AM,03/23/2016 10:04:54 AM,03/23/2016 10:05:31 AM,03/23/2016 10:10:55 AM,03/23/2016 10:25:02 AM,03/23/2016 10:34:03 AM,Code 2 Transport,03/23/2016 11:15:41 AM,5TH AV/FULTON ST,San Francisco,94122,B07,31,7122,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7737597510029, -122.462683796008)",160831200-85 -160342159,54,16013450,Medical Incident,02/03/2016,02/03/2016,02/03/2016 03:14:31 PM,02/03/2016 03:15:27 PM,02/03/2016 03:15:35 PM,02/03/2016 03:15:44 PM,02/03/2016 03:19:28 PM,02/03/2016 03:43:37 PM,02/03/2016 03:50:17 PM,Code 2 Transport,02/03/2016 04:39:17 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160342159-54 -102330287,B09,10073437,Medical Incident,08/21/2010,08/21/2010,08/21/2010 09:50:08 PM,08/21/2010 09:51:36 PM,08/21/2010 09:52:06 PM,08/21/2010 09:53:17 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/21/2010 09:59:18 PM,HIGUERA AV/LAKE MERCED BL,SF,94132,B08,19,8775,E,E,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.718327591644, -122.485075948765)",102330287-B09 -160333011,75,16013132,Traffic Collision,02/02/2016,02/02/2016,02/02/2016 07:25:12 PM,02/02/2016 07:25:12 PM,02/02/2016 07:25:43 PM,02/02/2016 07:26:24 PM,02/02/2016 07:35:34 PM,02/02/2016 08:00:35 PM,02/02/2016 08:28:53 PM,Other,02/02/2016 09:13:51 PM,LOMBARD ST/BAKER ST,San Francisco,94123,B04,16,4223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.798626017147, -122.44597388598)",160333011-75 -123150136,76,12104791,Medical Incident,11/10/2012,11/10/2012,11/10/2012 10:55:48 AM,11/10/2012 10:58:02 AM,11/10/2012 10:58:40 AM,11/10/2012 11:00:43 AM,11/10/2012 11:12:57 AM,11/10/2012 11:33:48 AM,11/10/2012 11:47:51 AM,Code 2 Transport,11/10/2012 12:31:24 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",123150136-76 -160750848,55,16029634,Medical Incident,03/15/2016,03/15/2016,03/15/2016 09:02:36 AM,03/15/2016 09:04:55 AM,03/15/2016 09:09:27 AM,03/15/2016 09:11:12 AM,03/15/2016 09:35:10 AM,03/15/2016 10:22:22 AM,03/15/2016 10:04:18 AM,Code 2 Transport,03/15/2016 10:56:13 AM,0 Block of APPLETON AVE,San Francisco,94110,B06,32,5631,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7384512131926, -122.423134220791)",160750848-55 -160340188,KM03,16013222,Medical Incident,02/03/2016,02/02/2016,02/03/2016 02:11:36 AM,02/03/2016 02:14:03 AM,02/03/2016 02:14:11 AM,02/03/2016 02:14:50 AM,02/03/2016 02:21:30 AM,02/03/2016 02:29:07 AM,02/03/2016 02:44:47 AM,Code 2 Transport,02/03/2016 02:58:13 AM,0 Block of LENOX WAY,San Francisco,94127,B08,39,8617,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7417568103981, -122.465616085454)",160340188-KM03 -122570291,58,12085054,Medical Incident,09/13/2012,09/13/2012,09/13/2012 07:26:57 PM,09/13/2012 07:28:08 PM,09/13/2012 07:30:33 PM,09/13/2012 07:30:51 PM,09/13/2012 07:42:07 PM,09/13/2012 07:57:04 PM,09/13/2012 08:07:37 PM,Code 2 Transport,09/13/2012 08:34:08 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",122570291-58 -132000415,68,13068002,Medical Incident,07/19/2013,07/19/2013,07/19/2013 11:57:07 PM,07/19/2013 11:59:45 PM,07/20/2013 12:00:23 AM,07/20/2013 12:00:37 AM,07/20/2013 12:29:38 AM,07/20/2013 12:39:35 AM,07/20/2013 12:59:55 AM,Code 2 Transport,07/20/2013 01:35:28 AM,800 Block of THE EMBARCADERO,SF,94111,B03,35,940,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",132000415-68 -131960176,T06,13066525,Alarms,07/15/2013,07/15/2013,07/15/2013 01:13:21 PM,07/15/2013 01:15:39 PM,07/15/2013 01:16:03 PM,07/15/2013 01:17:43 PM,07/15/2013 01:21:00 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 01:23:58 PM,1700 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7721238465063, -122.422914601569)",131960176-T06 -130370346,88,13012842,Medical Incident,02/06/2013,02/06/2013,02/06/2013 10:13:52 PM,02/06/2013 10:23:41 PM,02/06/2013 10:24:06 PM,02/06/2013 10:24:49 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 10:31:35 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",130370346-88 -130130286,T16,13004521,Citizen Assist / Service Call,01/13/2013,01/13/2013,01/13/2013 04:42:15 PM,01/13/2013 04:43:45 PM,01/13/2013 04:43:55 PM,01/13/2013 04:44:29 PM,01/13/2013 04:46:59 PM,04/25/2016 01:54:49 PM,04/25/2016 01:54:49 PM,Fire,01/13/2013 04:50:08 PM,CHESTNUT ST/FILLMORE ST,SF,94123,B04,16,3554,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.800814143599, -122.436273910168)",130130286-T16 -102330182,87,10073339,Structure Fire,08/21/2010,08/21/2010,08/21/2010 01:54:21 PM,08/21/2010 01:55:06 PM,08/21/2010 01:55:21 PM,08/21/2010 01:56:04 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/21/2010 02:00:51 PM,500 Block of HAIGHT ST,SF,94117,B05,6,3633,3,3,3,true,,1,MEDIC,9,5,5,Hayes Valley,"(37.7719485300389, -122.431252160017)",102330182-87 -160722387,53,16028668,Medical Incident,03/12/2016,03/12/2016,03/12/2016 05:00:09 PM,03/12/2016 05:02:47 PM,03/12/2016 05:07:00 PM,03/12/2016 05:07:11 PM,03/12/2016 05:26:50 PM,03/12/2016 05:26:52 PM,03/12/2016 05:52:05 PM,Code 2 Transport,03/12/2016 06:30:15 PM,300 Block of 20TH ST,San Francisco,94107,B10,37,2722,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7605831645183, -122.386090882365)",160722387-53 -160062646,74,16002495,Traffic Collision,01/06/2016,01/06/2016,01/06/2016 04:53:14 PM,01/06/2016 04:54:33 PM,01/06/2016 04:56:08 PM,01/06/2016 04:56:08 PM,01/06/2016 05:00:21 PM,01/06/2016 05:08:56 PM,01/06/2016 05:26:53 PM,Code 3 Transport,01/06/2016 06:26:36 PM,40TH AV/FULTON ST,San Francisco,94122,B07,34,7261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7718363074154, -122.500257545705)",160062646-74 -102910327,T02,10092929,Alarms,10/18/2010,10/18/2010,10/18/2010 07:49:48 PM,10/18/2010 07:51:40 PM,10/18/2010 07:52:55 PM,10/18/2010 07:54:39 PM,10/18/2010 07:57:46 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/18/2010 08:04:57 PM,800 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,TRUCK,3,1,3,Nob Hill,"(37.7909306094565, -122.409788680324)",102910327-T02 -160551612,KM12,16021989,Medical Incident,02/24/2016,02/24/2016,02/24/2016 12:07:15 PM,02/24/2016 12:07:15 PM,02/24/2016 12:07:32 PM,02/24/2016 12:08:05 PM,02/24/2016 12:13:27 PM,02/24/2016 01:33:04 PM,02/24/2016 01:43:04 PM,Code 2 Transport,02/24/2016 02:07:29 PM,500 Block of 19TH AV,San Francisco,94121,B07,14,7165,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7775230001793, -122.478168809064)",160551612-KM12 -140380325,E31,14012948,Medical Incident,02/07/2014,02/07/2014,02/07/2014 07:38:18 PM,02/07/2014 07:38:55 PM,02/07/2014 07:39:13 PM,04/25/2016 01:48:20 PM,02/07/2014 07:40:14 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 08:04:55 PM,5200 Block of CALIFORNIA ST,SF,94118,B07,31,7147,3,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7844508005385, -122.473686618108)",140380325-E31 -160161475,KM02,16006404,Medical Incident,01/16/2016,01/16/2016,01/16/2016 12:02:40 PM,01/16/2016 12:02:40 PM,01/16/2016 12:04:16 PM,01/16/2016 12:06:47 PM,01/16/2016 12:11:30 PM,01/16/2016 12:33:23 PM,01/16/2016 12:57:14 PM,Code 3 Transport,01/16/2016 01:51:22 PM,100 Block of BRODERICK ST,San Francisco,94117,B05,21,4246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7715147030911, -122.438872422532)",160161475-KM02 -160252239,55,16009979,Train / Rail Incident,01/25/2016,01/25/2016,01/25/2016 03:00:23 PM,01/25/2016 03:00:23 PM,01/25/2016 03:54:10 PM,01/25/2016 03:54:35 PM,01/25/2016 04:05:23 PM,01/25/2016 04:25:14 PM,01/25/2016 04:50:08 PM,Code 2 Transport,01/25/2016 05:27:41 PM,BAYSHORE BL/TUNNEL AV,San Francisco,94134,B10,44,6271,3,3,3,true,,1,MEDIC,8,10,10,Bayview Hunters Point,"(37.7130579718754, -122.400658030863)",160252239-55 -131900116,E02,13064670,Medical Incident,07/09/2013,07/09/2013,07/09/2013 09:47:17 AM,07/09/2013 09:47:39 AM,07/09/2013 09:48:28 AM,07/09/2013 09:51:38 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 09:53:00 AM,FERN ST/POLK ST,SF,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",131900116-E02 -160121726,57,16004780,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:51:55 PM,01/12/2016 12:52:32 PM,01/12/2016 12:52:57 PM,01/12/2016 12:57:56 PM,01/12/2016 01:07:40 PM,01/12/2016 01:26:32 PM,01/12/2016 01:42:18 PM,Code 2 Transport,01/12/2016 02:22:10 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7677413424145, -122.415468956066)",160121726-57 -122890091,E10,12095543,Alarms,10/15/2012,10/15/2012,10/15/2012 08:32:01 AM,10/15/2012 08:33:45 AM,10/15/2012 08:33:57 AM,10/15/2012 08:34:55 AM,10/15/2012 08:37:36 AM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 08:45:59 AM,3000 Block of CLAY ST,SF,94115,B04,10,4232,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7896142778496, -122.443308741909)",122890091-E10 -160751975,84,16029731,Medical Incident,03/15/2016,03/15/2016,03/15/2016 01:48:18 PM,03/15/2016 01:49:43 PM,03/15/2016 01:52:19 PM,03/15/2016 01:52:40 PM,03/15/2016 01:59:14 PM,03/15/2016 02:14:01 PM,03/15/2016 02:29:33 PM,Code 2 Transport,03/15/2016 03:15:59 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160751975-84 -130450239,E22,13015298,Medical Incident,02/14/2013,02/14/2013,02/14/2013 02:18:40 PM,02/14/2013 02:20:11 PM,02/14/2013 02:20:36 PM,02/14/2013 02:25:34 PM,02/14/2013 02:30:22 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 02:32:20 PM,400 Block of PARNASSUS AVE,SF,94122,B05,12,5155,2,2,2,true,Non Life-threatening,1,ENGINE,2,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",130450239-E22 -160060417,70,16002267,Medical Incident,01/06/2016,01/05/2016,01/06/2016 05:33:23 AM,01/06/2016 05:35:52 AM,01/06/2016 05:36:39 AM,01/06/2016 05:36:51 AM,01/06/2016 05:49:18 AM,01/06/2016 05:53:58 AM,01/06/2016 06:04:01 AM,Code 2 Transport,01/06/2016 06:27:01 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",160060417-70 -111230294,AM04,11040718,Medical Incident,05/03/2011,05/03/2011,05/03/2011 05:14:18 PM,05/03/2011 05:17:34 PM,05/03/2011 05:20:46 PM,05/03/2011 05:23:02 PM,05/03/2011 05:34:48 PM,05/03/2011 05:39:17 PM,05/03/2011 05:51:51 PM,Code 2 Transport,05/03/2011 06:23:09 PM,200 Block of HYDE ST,SF,94102,B02,3,1554,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",111230294-AM04 -120250140,E01,12008361,Medical Incident,01/25/2012,01/25/2012,01/25/2012 10:34:12 AM,01/25/2012 10:35:58 AM,01/25/2012 10:36:24 AM,01/25/2012 10:36:52 AM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 10:37:49 AM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7762305177878, -122.414711004673)",120250140-E01 -133040034,E42,13103145,Medical Incident,10/31/2013,10/30/2013,10/31/2013 02:27:11 AM,10/31/2013 02:28:45 AM,10/31/2013 02:29:06 AM,10/31/2013 02:31:50 AM,10/31/2013 02:33:22 AM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/31/2013 02:44:00 AM,400 Block of BOWDOIN ST,SF,94134,B09,42,6355,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.729822574745, -122.412234829819)",133040034-E42 -102700394,AR1,10085836,Structure Fire,09/27/2010,09/27/2010,09/27/2010 11:32:42 PM,09/27/2010 11:33:14 PM,09/27/2010 11:34:58 PM,09/27/2010 11:57:45 PM,09/28/2010 12:11:51 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 02:01:20 AM,800 Block of DUNCAN ST,SF,94131,B06,26,5554,3,3,3,false,,1,INVESTIGATION,13,6,8,Noe Valley,"(37.7454166470082, -122.439016047236)",102700394-AR1 -132720378,93,13092621,Medical Incident,09/29/2013,09/29/2013,09/29/2013 11:55:41 PM,09/29/2013 11:56:18 PM,09/29/2013 11:56:35 PM,09/29/2013 11:56:52 PM,09/30/2013 12:10:28 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Patient Declined Transport,09/30/2013 12:34:51 AM,700 Block of NORIEGA ST,SF,94122,B08,40,7352,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7554265912421, -122.471450249914)",132720378-93 -140130095,E40,14004386,Traffic Collision,01/13/2014,01/13/2014,01/13/2014 08:51:20 AM,01/13/2014 08:51:55 AM,01/13/2014 08:52:17 AM,01/13/2014 08:53:26 AM,01/13/2014 08:56:06 AM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/13/2014 09:05:04 AM,21ST AV/NORIEGA ST,SF,94122,B08,40,7431,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7541457685622, -122.47861569327)",140130095-E40 -131640021,T07,13055589,Vehicle Fire,06/13/2013,06/12/2013,06/13/2013 02:03:33 AM,06/13/2013 02:05:35 AM,06/13/2013 02:05:45 AM,06/13/2013 02:08:07 AM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/13/2013 02:08:28 AM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,false,Fire,1,TRUCK,2,6,9,Mission,"(37.7619675295768, -122.417178937573)",131640021-T07 -111240165,92,11040952,Medical Incident,05/04/2011,05/04/2011,05/04/2011 11:59:23 AM,05/04/2011 12:00:15 PM,05/04/2011 12:00:26 PM,05/04/2011 12:00:58 PM,05/04/2011 12:05:15 PM,05/04/2011 12:24:49 PM,05/04/2011 12:45:23 PM,Code 2 Transport,05/04/2011 01:10:25 PM,SOUTH VAN NESS AV/MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",111240165-92 -113370295,T03,11111754,Structure Fire,12/03/2011,12/03/2011,12/03/2011 06:45:41 PM,12/03/2011 06:46:55 PM,12/03/2011 06:47:06 PM,12/03/2011 06:47:21 PM,12/03/2011 06:49:51 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/03/2011 06:57:58 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",113370295-T03 -160141523,KM05,16005543,Citizen Assist / Service Call,01/14/2016,01/14/2016,01/14/2016 11:50:51 AM,01/14/2016 11:53:15 AM,01/14/2016 11:59:57 AM,01/14/2016 12:02:48 PM,01/14/2016 12:08:23 PM,01/14/2016 12:24:17 PM,01/14/2016 12:40:54 PM,Code 3 Transport,01/14/2016 01:19:54 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Alarm,1,PRIVATE,3,1,3,North Beach,"(37.7979466732983, -122.406460643507)",160141523-KM05 -133040363,AM04,13103419,Medical Incident,10/31/2013,10/31/2013,10/31/2013 09:11:43 PM,10/31/2013 09:13:15 PM,10/31/2013 09:13:29 PM,10/31/2013 09:13:57 PM,10/31/2013 09:29:41 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Patient Declined Transport,10/31/2013 10:12:58 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",133040363-AM04 -112970394,D3,11098688,Traffic Collision,10/24/2011,10/24/2011,10/24/2011 09:02:40 PM,10/24/2011 09:05:38 PM,10/24/2011 09:06:42 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/24/2011 09:15:48 PM,600 Block of BLANKEN AV,SF,94134,B10,44,6275,3,3,3,false,,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.7108645212674, -122.395631081205)",112970394-D3 -160240649,85,16009448,Medical Incident,01/24/2016,01/23/2016,01/24/2016 06:34:23 AM,01/24/2016 06:35:25 AM,01/24/2016 06:36:14 AM,01/24/2016 06:36:28 AM,01/24/2016 06:41:33 AM,01/24/2016 07:01:06 AM,01/24/2016 07:05:47 AM,Code 2 Transport,01/24/2016 07:37:28 AM,3600 Block of MISSION ST,San Francisco,94110,B06,32,5631,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7381219971423, -122.423925391232)",160240649-85 -122180200,E37,12072323,Medical Incident,08/05/2012,08/05/2012,08/05/2012 01:48:02 PM,08/05/2012 01:50:20 PM,08/05/2012 01:50:34 PM,08/05/2012 01:52:01 PM,08/05/2012 01:53:24 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 02:03:53 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",122180200-E37 -131640312,96,13055818,Medical Incident,06/13/2013,06/13/2013,06/13/2013 06:20:19 PM,06/13/2013 06:20:41 PM,06/13/2013 06:24:48 PM,06/13/2013 06:24:52 PM,06/13/2013 06:31:17 PM,06/13/2013 06:36:33 PM,06/13/2013 06:55:23 PM,Code 2 Transport,06/13/2013 07:25:11 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",131640312-96 -110230139,E01,11007547,Medical Incident,01/23/2011,01/23/2011,01/23/2011 11:24:20 AM,01/23/2011 11:25:23 AM,01/23/2011 11:25:35 AM,01/23/2011 11:27:35 AM,01/23/2011 11:30:09 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/23/2011 11:36:49 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",110230139-E01 -160402203,75,16016082,Medical Incident,02/09/2016,02/09/2016,02/09/2016 02:41:09 PM,02/09/2016 02:43:46 PM,02/09/2016 02:44:00 PM,02/09/2016 02:44:05 PM,02/09/2016 02:54:47 PM,02/09/2016 03:06:41 PM,02/09/2016 03:50:25 PM,Code 2 Transport,02/09/2016 04:26:56 PM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6554,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",160402203-75 -122640262,RC2,12087248,Structure Fire,09/20/2012,09/20/2012,09/20/2012 03:53:55 PM,09/20/2012 03:55:10 PM,09/20/2012 03:55:26 PM,09/20/2012 03:59:48 PM,09/20/2012 04:03:09 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 04:17:34 PM,5000 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,true,Fire,1,RESCUE CAPTAIN,5,7,1,Outer Richmond,"(37.7807265018507, -122.473419262078)",122640262-RC2 -132740276,94,13093187,Traffic Collision,10/01/2013,10/01/2013,10/01/2013 06:03:42 PM,10/01/2013 06:05:32 PM,10/01/2013 06:05:51 PM,10/01/2013 06:06:00 PM,10/01/2013 06:14:04 PM,10/01/2013 06:23:47 PM,10/01/2013 06:31:16 PM,Code 2 Transport,10/01/2013 07:10:30 PM,23RD ST/DAKOTA ST,SF,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7547065816121, -122.396675359527)",132740276-94 -102790151,E07,10088677,Structure Fire,10/06/2010,10/06/2010,10/06/2010 12:21:30 PM,10/06/2010 12:23:02 PM,10/06/2010 12:23:21 PM,10/06/2010 12:24:05 PM,10/06/2010 12:26:59 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 12:44:24 PM,400 Block of KANSAS ST,SF,94107,B02,29,2422,3,3,3,true,,1,ENGINE,4,2,10,Potrero Hill,"(37.7640879187175, -122.403400751845)",102790151-E07 -160443110,62,16017827,Medical Incident,02/13/2016,02/13/2016,02/13/2016 07:36:33 PM,02/13/2016 07:37:16 PM,02/13/2016 07:37:35 PM,02/13/2016 07:37:47 PM,02/13/2016 07:56:50 PM,02/13/2016 08:25:34 PM,02/13/2016 08:53:17 PM,Code 2 Transport,02/13/2016 09:17:08 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160443110-62 -160032645,AM20,16001305,Medical Incident,01/03/2016,01/03/2016,01/03/2016 06:42:04 PM,01/03/2016 06:45:08 PM,01/03/2016 06:45:27 PM,01/03/2016 06:46:13 PM,01/03/2016 06:55:16 PM,01/03/2016 07:01:41 PM,01/03/2016 07:14:37 PM,Code 2 Transport,01/03/2016 07:39:02 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160032645-AM20 -160652686,53,16026029,Medical Incident,03/05/2016,03/05/2016,03/05/2016 06:10:15 PM,03/05/2016 06:10:15 PM,03/05/2016 06:10:53 PM,03/05/2016 06:11:08 PM,03/05/2016 06:14:37 PM,03/05/2016 06:34:28 PM,03/05/2016 06:46:22 PM,Code 2 Transport,03/05/2016 07:37:58 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160652686-53 -160220389,AM20,16008648,Medical Incident,01/22/2016,01/21/2016,01/22/2016 04:46:54 AM,01/22/2016 04:48:20 AM,01/22/2016 04:48:37 AM,01/22/2016 04:49:10 AM,01/22/2016 04:53:06 AM,01/22/2016 05:12:44 AM,01/22/2016 05:29:13 AM,Code 2 Transport,01/22/2016 06:08:51 AM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",160220389-AM20 -160250675,75,16009818,Medical Incident,01/25/2016,01/24/2016,01/25/2016 07:36:02 AM,01/25/2016 07:40:49 AM,01/25/2016 07:40:59 AM,01/25/2016 07:41:05 AM,01/25/2016 07:46:52 AM,01/25/2016 07:52:04 AM,01/25/2016 08:06:42 AM,Code 2 Transport,01/25/2016 08:48:09 AM,0 Block of JONES ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",160250675-75 -130230398,E35,13008119,Medical Incident,01/23/2013,01/23/2013,01/23/2013 10:02:04 PM,01/23/2013 10:04:27 PM,01/23/2013 10:04:52 PM,01/23/2013 10:06:04 PM,01/23/2013 10:07:54 PM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Other,01/23/2013 10:25:35 PM,0 Block of FOLSOM ST,SF,94105,B03,35,2112,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7904094440398, -122.390442861617)",130230398-E35 -110620028,87,11020249,Medical Incident,03/03/2011,03/02/2011,03/03/2011 03:48:18 AM,03/03/2011 03:50:41 AM,03/03/2011 03:50:55 AM,03/03/2011 03:51:43 AM,03/03/2011 03:56:05 AM,03/03/2011 04:11:16 AM,03/03/2011 04:31:20 AM,Code 2 Transport,03/03/2011 04:56:11 AM,1300 Block of WASHINGTON ST,SF,94109,B01,41,1466,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.79405405477, -122.415456646894)",110620028-87 -160893046,54,16035443,Medical Incident,03/29/2016,03/29/2016,03/29/2016 06:14:21 PM,03/29/2016 06:16:58 PM,03/29/2016 06:17:12 PM,03/29/2016 06:17:21 PM,03/29/2016 06:23:50 PM,03/29/2016 06:36:44 PM,03/29/2016 06:46:34 PM,Code 2 Transport,03/29/2016 07:07:56 PM,2300 Block of UNION ST,San Francisco,94123,B04,16,3655,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7967206605307, -122.437947593437)",160893046-54 -121760317,E01,12058620,Medical Incident,06/24/2012,06/24/2012,06/24/2012 06:18:52 PM,06/24/2012 06:19:33 PM,06/24/2012 06:20:43 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 06:20:47 PM,TAYLOR ST/TURK ST,SF,94102,B03,1,1365,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",121760317-E01 -131040112,E01,13034872,Structure Fire,04/14/2013,04/13/2013,04/14/2013 07:50:42 AM,04/14/2013 07:50:42 AM,04/14/2013 07:51:09 AM,04/14/2013 07:51:46 AM,04/14/2013 07:54:24 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 07:55:36 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131040112-E01 -113590051,T19,11119254,Alarms,12/25/2011,12/24/2011,12/25/2011 04:16:46 AM,12/25/2011 04:18:13 AM,12/25/2011 04:18:31 AM,12/25/2011 04:21:52 AM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,Other,12/25/2011 04:35:23 AM,0 Block of ZOO RD,SF,94132,B08,19,8716,3,3,3,false,,1,TRUCK,3,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",113590051-T19 -120250329,KM15,12008518,Medical Incident,01/25/2012,01/25/2012,01/25/2012 07:14:26 PM,01/25/2012 07:15:05 PM,01/25/2012 07:15:12 PM,01/25/2012 07:15:46 PM,01/25/2012 07:22:07 PM,01/25/2012 07:41:32 PM,01/25/2012 08:02:18 PM,Code 2 Transport,01/25/2012 08:31:02 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",120250329-KM15 -140580250,T13,14019617,Gas Leak (Natural and LP Gases),02/27/2014,02/27/2014,02/27/2014 03:54:07 PM,02/27/2014 03:55:43 PM,02/27/2014 03:56:20 PM,02/27/2014 03:57:59 PM,02/27/2014 03:59:37 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Fire,02/27/2014 04:18:58 PM,800 Block of SANSOME ST,SF,94133,B01,13,1212,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.7979585906161, -122.402203152588)",140580250-T13 -123480184,85,12116350,Medical Incident,12/13/2012,12/13/2012,12/13/2012 01:07:56 PM,12/13/2012 01:08:13 PM,12/13/2012 01:08:28 PM,12/13/2012 01:09:29 PM,12/13/2012 01:13:03 PM,12/13/2012 01:25:58 PM,12/13/2012 01:31:14 PM,Code 2 Transport,12/13/2012 02:07:48 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826266328595, -122.41915582123)",123480184-85 -132970120,KM01,13100826,Medical Incident,10/24/2013,10/24/2013,10/24/2013 10:29:29 AM,10/24/2013 10:30:51 AM,10/24/2013 10:32:49 AM,10/24/2013 10:33:48 AM,10/24/2013 10:40:20 AM,10/24/2013 10:51:22 AM,10/24/2013 11:06:33 AM,Code 2 Transport,10/24/2013 11:42:31 AM,300 Block of 7TH AVE,SF,94118,B07,31,7127,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.781931388363, -122.465353537218)",132970120-KM01 -113360305,AM08,11111328,Medical Incident,12/02/2011,12/02/2011,12/02/2011 03:30:39 PM,12/02/2011 03:30:40 PM,12/02/2011 03:30:40 PM,12/02/2011 03:35:41 PM,12/02/2011 03:39:28 PM,12/02/2011 03:50:10 PM,12/02/2011 04:06:20 PM,Code 2 Transport,12/02/2011 04:40:28 PM,3200 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,false,,1,PRIVATE,1,None,None,None,"(37.7475912199361, -122.387182780653)",113360305-AM08 -123580258,E01,12119930,Medical Incident,12/23/2012,12/23/2012,12/23/2012 06:10:51 PM,12/23/2012 06:12:12 PM,12/23/2012 06:12:30 PM,12/23/2012 06:13:22 PM,12/23/2012 06:14:53 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 06:17:22 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",123580258-E01 -113560200,E44,11118211,Medical Incident,12/22/2011,12/22/2011,12/22/2011 01:20:49 PM,12/22/2011 01:22:22 PM,12/22/2011 01:22:43 PM,12/22/2011 01:23:37 PM,12/22/2011 01:27:51 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 01:37:00 PM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,3,3,true,,1,ENGINE,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",113560200-E44 -110930185,E21,11030873,Structure Fire,04/03/2011,04/03/2011,04/03/2011 12:57:05 PM,04/03/2011 12:57:06 PM,04/03/2011 12:57:21 PM,04/03/2011 12:57:53 PM,04/03/2011 01:00:13 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Fire,04/03/2011 01:00:52 PM,STANYAN ST/FELL ST,SF,94122,B05,12,4554,3,3,3,false,,1,ENGINE,1,5,1,Golden Gate Park,"(37.7719304034998, -122.454083217642)",110930185-E21 -160873664,60,16034765,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:11:48 PM,03/27/2016 11:13:30 PM,03/27/2016 11:14:13 PM,03/27/2016 11:14:26 PM,03/27/2016 11:25:15 PM,03/27/2016 11:36:04 PM,03/27/2016 11:57:48 PM,Code 2 Transport,03/28/2016 12:27:52 AM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8061880612091, -122.416243833913)",160873664-60 -160433825,65,16017498,Traffic Collision,02/12/2016,02/12/2016,02/12/2016 10:33:23 PM,02/12/2016 10:33:23 PM,02/12/2016 10:34:19 PM,02/12/2016 10:34:58 PM,02/12/2016 10:42:22 PM,02/12/2016 10:50:50 PM,02/12/2016 10:57:22 PM,Code 2 Transport,02/12/2016 11:35:31 PM,MISSION ST/10TH ST,San Francisco,94103,B02,36,2341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7752720593077, -122.415908181241)",160433825-65 -122820329,T02,12093494,Alarms,10/08/2012,10/08/2012,10/08/2012 11:14:27 PM,10/08/2012 11:17:14 PM,10/08/2012 11:17:25 PM,10/08/2012 11:19:00 PM,10/08/2012 11:20:47 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/08/2012 11:26:11 PM,600 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",122820329-T02 -102640318,E07,10083670,Medical Incident,09/21/2010,09/21/2010,09/21/2010 07:15:30 PM,09/21/2010 07:17:04 PM,09/21/2010 07:18:21 PM,09/21/2010 07:19:12 PM,09/21/2010 07:21:36 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:25:04 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",102640318-E07 -160103108,AM20,16004171,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:19:42 PM,01/10/2016 08:22:01 PM,01/10/2016 08:22:21 PM,01/10/2016 08:22:52 PM,01/10/2016 08:33:15 PM,01/10/2016 08:57:50 PM,01/10/2016 09:04:08 PM,Code 2 Transport,01/10/2016 09:36:31 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160103108-AM20 -103550338,78,10114088,Medical Incident,12/21/2010,12/21/2010,12/21/2010 09:31:58 PM,12/21/2010 09:33:08 PM,12/21/2010 09:33:28 PM,12/21/2010 09:33:36 PM,12/21/2010 09:38:08 PM,12/21/2010 09:53:11 PM,12/21/2010 10:04:01 PM,Code 2 Transport,12/21/2010 10:39:22 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",103550338-78 -122180216,E03,12072339,Medical Incident,08/05/2012,08/05/2012,08/05/2012 02:34:00 PM,08/05/2012 02:34:39 PM,08/05/2012 02:35:01 PM,04/25/2016 01:57:23 PM,08/05/2012 02:38:25 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 02:44:13 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",122180216-E03 -132620203,E03,13088757,Medical Incident,09/19/2013,09/19/2013,09/19/2013 01:21:36 PM,09/19/2013 01:21:51 PM,09/19/2013 01:23:12 PM,09/19/2013 01:23:24 PM,09/19/2013 01:26:29 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 01:28:34 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",132620203-E03 -160821383,87,16032529,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:18:55 AM,03/22/2016 11:19:53 AM,03/22/2016 11:21:12 AM,03/22/2016 11:21:47 AM,03/22/2016 11:25:50 AM,03/22/2016 11:51:34 AM,03/22/2016 12:21:11 PM,Code 2 Transport,03/22/2016 12:44:08 PM,900 Block of 4TH ST,San Francisco,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7753672597362, -122.392898312211)",160821383-87 -130810081,E29,13027031,Alarms,03/22/2013,03/22/2013,03/22/2013 08:55:01 AM,03/22/2013 08:56:15 AM,03/22/2013 08:57:05 AM,03/22/2013 08:58:29 AM,03/22/2013 09:00:59 AM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 09:12:15 AM,1000 Block of MARIPOSA ST,SF,94107,B03,29,2431,3,3,3,true,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7639379043724, -122.394214130109)",130810081-E29 -160582246,55,16023165,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:22:40 PM,02/27/2016 03:22:40 PM,02/27/2016 03:24:44 PM,02/27/2016 03:24:51 PM,02/27/2016 03:38:40 PM,02/27/2016 04:25:20 PM,02/27/2016 04:48:38 PM,Code 2 Transport,02/27/2016 05:28:20 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160582246-55 -121120389,54,12037312,Citizen Assist / Service Call,04/21/2012,04/21/2012,04/21/2012 09:38:52 PM,04/21/2012 09:43:55 PM,04/21/2012 09:44:14 PM,04/21/2012 09:45:23 PM,04/21/2012 09:49:19 PM,04/21/2012 09:56:47 PM,04/21/2012 10:37:28 PM,Code 2 Transport,04/21/2012 11:05:25 PM,NATOMA ST/6TH ST,SF,94103,B03,1,2252,3,3,3,true,Alarm,1,MEDIC,2,3,6,South of Market,"(37.7801620260598, -122.407691417119)",121120389-54 -122850111,E07,12094201,Alarms,10/11/2012,10/11/2012,10/11/2012 09:49:10 AM,10/11/2012 09:50:43 AM,10/11/2012 09:51:27 AM,10/11/2012 09:52:32 AM,10/11/2012 09:56:20 AM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 10:08:44 AM,0 Block of LAPIDGE ST,SF,94110,B02,7,5422,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7608547542301, -122.422265847038)",122850111-E07 -160151543,63,16005974,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:55:14 AM,01/15/2016 11:56:13 AM,01/15/2016 11:57:02 AM,01/15/2016 11:57:22 AM,01/15/2016 12:05:38 PM,01/15/2016 12:13:25 PM,01/15/2016 12:42:23 PM,Code 2 Transport,01/15/2016 01:22:06 PM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",160151543-63 -130090240,68,13003146,Medical Incident,01/09/2013,01/09/2013,01/09/2013 03:09:04 PM,01/09/2013 03:11:12 PM,01/09/2013 03:11:54 PM,01/09/2013 03:12:02 PM,01/09/2013 03:22:00 PM,01/09/2013 03:41:16 PM,01/09/2013 03:54:14 PM,Code 2 Transport,01/09/2013 04:39:36 PM,100 Block of PAGE ST,SF,94102,B02,36,3313,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",130090240-68 -160331400,61,16012954,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:43:41 AM,02/02/2016 11:43:41 AM,02/02/2016 11:49:48 AM,02/02/2016 11:49:57 AM,02/02/2016 11:59:23 AM,02/02/2016 12:16:12 PM,02/02/2016 12:31:39 PM,Code 2 Transport,02/02/2016 01:18:39 PM,300 Block of BEACH ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8074334422166, -122.414806572943)",160331400-61 -113100137,E07,11102999,Medical Incident,11/06/2011,11/06/2011,11/06/2011 10:07:19 AM,11/06/2011 10:08:46 AM,11/06/2011 10:08:58 AM,11/06/2011 10:09:27 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/06/2011 10:23:28 AM,3200 Block of 21ST ST,SF,94110,B06,7,5456,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7570135247226, -122.420179949433)",113100137-E07 -160450374,AM20,16017968,Medical Incident,02/14/2016,02/13/2016,02/14/2016 02:09:04 AM,02/14/2016 02:10:23 AM,02/14/2016 02:11:24 AM,02/14/2016 02:12:28 AM,02/14/2016 02:17:45 AM,02/14/2016 02:33:09 AM,02/14/2016 02:44:42 AM,Code 2 Transport,02/14/2016 03:43:16 AM,11TH ST/FOLSOM ST,San Francisco,94103,B02,36,5114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.771863706441, -122.414026708032)",160450374-AM20 -131410148,T05,13047746,Medical Incident,05/21/2013,05/21/2013,05/21/2013 10:54:47 AM,05/21/2013 10:55:16 AM,05/21/2013 10:55:52 AM,05/21/2013 10:56:46 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 11:13:14 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",131410148-T05 -140660320,E14,14022411,Medical Incident,03/07/2014,03/07/2014,03/07/2014 05:45:24 PM,03/07/2014 05:46:18 PM,03/07/2014 05:47:50 PM,03/07/2014 05:49:33 PM,03/07/2014 05:51:15 PM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Medical Examiner,03/07/2014 06:49:32 PM,2700 Block of CLEMENT ST,SAN FRANCISCO,94121,B07,14,7221,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.781904591369, -122.488625014278)",140660320-E14 -160531776,KM06,16021214,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:43:24 PM,02/22/2016 01:44:13 PM,02/22/2016 01:44:48 PM,02/22/2016 01:45:37 PM,02/22/2016 01:50:51 PM,02/22/2016 02:15:01 PM,02/22/2016 02:50:32 PM,Code 2 Transport,02/22/2016 03:44:45 PM,0 Block of OTTAWA AVE,San Francisco,94112,B09,43,8334,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.714293589217, -122.444679395128)",160531776-KM06 -160383167,71,16015368,Medical Incident,02/07/2016,02/07/2016,02/07/2016 08:02:02 PM,02/07/2016 08:04:04 PM,02/07/2016 08:04:30 PM,02/07/2016 08:05:15 PM,02/07/2016 08:14:14 PM,02/07/2016 08:25:25 PM,02/07/2016 08:46:32 PM,Code 2 Transport,02/07/2016 09:16:59 PM,LAGUNA ST/EDDY ST,San Francisco,94102,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",160383167-71 -122700235,E32,12089169,Medical Incident,09/26/2012,09/26/2012,09/26/2012 04:42:07 PM,09/26/2012 04:43:53 PM,09/26/2012 04:44:07 PM,09/26/2012 04:46:06 PM,09/26/2012 04:48:34 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Unable to Locate,09/26/2012 04:52:53 PM,200 Block of KINGSTON ST,SF,94110,B06,32,5653,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7410008919832, -122.42064445241)",122700235-E32 -122940149,E03,12097476,Medical Incident,10/20/2012,10/20/2012,10/20/2012 10:48:35 AM,10/20/2012 10:49:17 AM,10/20/2012 10:49:54 AM,04/25/2016 01:56:12 PM,10/20/2012 10:51:45 AM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 10:56:06 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",122940149-E03 -112410336,E36,11079656,Traffic Collision,08/29/2011,08/29/2011,08/29/2011 09:25:20 PM,08/29/2011 09:25:30 PM,08/29/2011 09:25:44 PM,08/29/2011 09:26:38 PM,08/29/2011 09:28:31 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 09:44:54 PM,GUERRERO ST/MARKET ST,SF,94103,B02,36,3416,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",112410336-E36 -122900250,AM16,12096025,Medical Incident,10/16/2012,10/16/2012,10/16/2012 03:05:07 PM,10/16/2012 03:06:28 PM,10/16/2012 03:06:39 PM,10/16/2012 03:07:16 PM,10/16/2012 03:15:37 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Patient Declined Transport,10/16/2012 03:30:37 PM,0 Block of MILL ST,SF,94134,B10,44,6315,3,1,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Visitacion Valley,"(37.7189806372776, -122.405931149637)",122900250-AM16 -160670329,79,16026609,Medical Incident,03/07/2016,03/06/2016,03/07/2016 05:30:28 AM,03/07/2016 05:33:37 AM,03/07/2016 05:34:50 AM,03/07/2016 05:34:55 AM,03/07/2016 05:42:09 AM,03/07/2016 05:53:33 AM,03/07/2016 06:01:32 AM,Code 2 Transport,03/07/2016 06:26:10 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160670329-79 -132310011,E06,13077857,Medical Incident,08/19/2013,08/18/2013,08/19/2013 12:29:03 AM,08/19/2013 12:31:59 AM,08/19/2013 12:32:28 AM,08/19/2013 12:33:54 AM,08/19/2013 12:36:46 AM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,Other,08/19/2013 12:52:25 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",132310011-E06 -160632100,86,16025101,Medical Incident,03/03/2016,03/03/2016,03/03/2016 02:30:09 PM,03/03/2016 02:30:35 PM,03/03/2016 02:30:57 PM,03/03/2016 02:31:16 PM,03/03/2016 02:38:23 PM,03/03/2016 02:48:24 PM,03/03/2016 02:54:23 PM,Code 3 Transport,03/03/2016 04:00:10 PM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",160632100-86 -122680032,88,12088407,Medical Incident,09/24/2012,09/23/2012,09/24/2012 02:17:16 AM,09/24/2012 02:18:10 AM,09/24/2012 02:18:38 AM,09/24/2012 02:18:47 AM,09/24/2012 02:27:11 AM,09/24/2012 02:31:55 AM,09/24/2012 02:39:14 AM,Code 2 Transport,09/24/2012 02:57:32 AM,OAK ST/FRANKLIN ST,SF,94102,B02,36,3266,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.775232334473, -122.420959921668)",122680032-88 -110100330,T13,11003433,Elevator / Escalator Rescue,01/10/2011,01/10/2011,01/10/2011 06:22:02 PM,01/10/2011 06:24:24 PM,01/10/2011 06:24:29 PM,01/10/2011 06:25:31 PM,01/10/2011 06:27:44 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Fire,01/10/2011 06:40:28 PM,300 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7923662514696, -122.402737365621)",110100330-T13 -110970337,D2,11032260,Structure Fire,04/07/2011,04/07/2011,04/07/2011 05:45:12 PM,04/07/2011 05:49:46 PM,04/07/2011 05:50:12 PM,04/07/2011 05:51:15 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Other,04/07/2011 05:56:22 PM,2100 Block of CLEMENT ST,SF,94121,B07,14,7175,3,3,3,false,,1,CHIEF,8,7,1,Outer Richmond,"(37.7820751633481, -122.482193568097)",110970337-D2 -122840079,E41,12093869,Structure Fire,10/10/2012,10/10/2012,10/10/2012 09:11:35 AM,10/10/2012 09:11:36 AM,10/10/2012 09:11:45 AM,10/10/2012 09:12:57 AM,10/10/2012 09:14:42 AM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 09:15:04 AM,LEAVENWORTH ST/BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",122840079-E41 -112260040,E32,11074554,Traffic Collision,08/14/2011,08/13/2011,08/14/2011 02:45:22 AM,08/14/2011 02:46:26 AM,08/14/2011 02:47:08 AM,08/14/2011 02:48:42 AM,08/14/2011 02:49:56 AM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/14/2011 02:59:43 AM,MISSION ST/BOSWORTH ST,SF,94112,B06,32,5633,3,3,3,true,,1,ENGINE,1,6,8,Outer Mission,"(37.7336750178474, -122.426391166349)",112260040-E32 -130090123,T16,13003057,Medical Incident,01/09/2013,01/09/2013,01/09/2013 10:17:22 AM,01/09/2013 10:18:19 AM,01/09/2013 10:18:57 AM,01/09/2013 10:20:24 AM,01/09/2013 10:24:31 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 10:43:08 AM,3700 Block of BRODERICK ST,SF,94123,B04,16,4216,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,2,Marina,"(37.8048883733226, -122.445622996571)",130090123-T16 -130780020,D2,13025895,Structure Fire,03/19/2013,03/18/2013,03/19/2013 01:35:10 AM,03/19/2013 01:35:59 AM,03/19/2013 01:36:16 AM,03/19/2013 01:38:17 AM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/19/2013 01:43:07 AM,200 Block of ANZA ST,SF,94118,B05,10,4456,3,3,3,false,Fire,1,CHIEF,7,5,1,Lone Mountain/USF,"(37.7808387791397, -122.449570865244)",130780020-D2 -113010203,RC1,11099853,Medical Incident,10/28/2011,10/28/2011,10/28/2011 01:34:40 PM,10/28/2011 01:34:55 PM,10/28/2011 01:35:03 PM,04/25/2016 02:01:56 PM,10/28/2011 01:40:08 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 01:47:53 PM,POLK ST/POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,RESCUE CAPTAIN,3,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",113010203-RC1 -130880245,E05,13029421,Medical Incident,03/29/2013,03/29/2013,03/29/2013 02:22:25 PM,03/29/2013 02:24:25 PM,03/29/2013 02:24:52 PM,03/29/2013 02:26:48 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 02:27:08 PM,0 Block of DANIEL BURNHAM CT,SF,94109,B04,3,3161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Western Addition,"(37.7869107185707, -122.422525749968)",130880245-E05 -132990164,E15,13101566,Medical Incident,10/26/2013,10/26/2013,10/26/2013 11:23:04 AM,10/26/2013 11:23:37 AM,10/26/2013 11:24:26 AM,10/26/2013 11:26:00 AM,10/26/2013 11:30:55 AM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/26/2013 11:53:18 AM,300 Block of GUTTENBERG ST,SF,94112,B09,43,6231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7091043095113, -122.44247658842)",132990164-E15 -131590125,T17,13053969,Structure Fire,06/08/2013,06/08/2013,06/08/2013 10:06:12 AM,06/08/2013 10:06:12 AM,06/08/2013 10:06:19 AM,06/08/2013 10:08:16 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 10:10:56 AM,KEITH ST/NEWCOMB AV,SF,94124,B10,17,6516,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7331034788148, -122.38604554171)",131590125-T17 -130900298,94,13030221,Citizen Assist / Service Call,03/31/2013,03/31/2013,03/31/2013 08:10:45 PM,03/31/2013 08:13:52 PM,03/31/2013 08:22:29 PM,03/31/2013 08:22:54 PM,03/31/2013 08:29:20 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Fire,03/31/2013 08:38:06 PM,400 Block of GOLD MINE DR,SF,94131,B06,26,8153,3,3,3,true,Alarm,1,MEDIC,2,6,8,Glen Park,"(37.7394547622904, -122.437041860856)",130900298-94 -122810292,E16,12093083,Alarms,10/07/2012,10/07/2012,10/07/2012 05:48:28 PM,10/07/2012 05:49:46 PM,10/07/2012 05:49:54 PM,10/07/2012 05:50:54 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/07/2012 05:57:49 PM,900 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Alarm,1,ENGINE,4,1,3,Nob Hill,"(37.7922894208567, -122.410980459852)",122810292-E16 -160083412,58,16003391,Medical Incident,01/08/2016,01/08/2016,01/08/2016 07:51:02 PM,01/08/2016 07:53:21 PM,01/08/2016 07:53:58 PM,01/08/2016 07:54:09 PM,01/08/2016 08:07:24 PM,01/08/2016 08:14:29 PM,01/08/2016 08:32:33 PM,Code 2 Transport,01/08/2016 09:08:37 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160083412-58 -102350162,E16,10073931,Medical Incident,08/23/2010,08/23/2010,08/23/2010 12:16:02 PM,08/23/2010 12:16:31 PM,08/23/2010 12:18:00 PM,04/25/2016 02:08:57 PM,08/23/2010 12:24:58 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 12:46:15 PM,3700 Block of BUCHANAN ST,SF,94123,B04,16,3446,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8045420636578, -122.433697283061)",102350162-E16 -102590126,E36,10081772,Medical Incident,09/16/2010,09/16/2010,09/16/2010 09:38:40 AM,09/16/2010 09:39:56 AM,09/16/2010 09:40:20 AM,09/16/2010 09:40:42 AM,09/16/2010 09:42:22 AM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 10:03:04 AM,800 Block of TURK ST,SF,94102,B02,36,3216,3,1,2,true,,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",102590126-E36 -160270462,79,16010551,Medical Incident,01/27/2016,01/26/2016,01/27/2016 06:27:14 AM,01/27/2016 06:29:16 AM,01/27/2016 06:29:32 AM,01/27/2016 06:29:43 AM,01/27/2016 06:43:46 AM,01/27/2016 07:14:15 AM,01/27/2016 07:17:41 AM,Code 2 Transport,01/27/2016 07:46:00 AM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",160270462-79 -131180134,82,13039656,Medical Incident,04/28/2013,04/28/2013,04/28/2013 10:56:40 AM,04/28/2013 10:58:06 AM,04/28/2013 10:58:27 AM,04/28/2013 10:58:44 AM,04/28/2013 11:03:37 AM,04/28/2013 11:21:08 AM,04/28/2013 11:23:30 AM,Code 3 Transport,04/28/2013 12:01:37 PM,2600 Block of MCALLISTER ST,SF,94118,B07,21,4556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7756015496954, -122.45596736958)",131180134-82 -140800159,KM06,14027015,Traffic Collision,03/21/2014,03/21/2014,03/21/2014 12:06:36 PM,03/21/2014 12:06:47 PM,03/21/2014 12:07:10 PM,03/21/2014 12:07:57 PM,03/21/2014 12:13:07 PM,03/21/2014 12:17:03 PM,04/25/2016 01:47:38 PM,Code 3 Transport,03/21/2014 01:00:48 PM,MISSION ST/AMAZON AV,SAN FRANCISCO,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,11,Excelsior,"(37.7172446200647, -122.440417736667)",140800159-KM06 -133270252,T13,13111121,Structure Fire,11/23/2013,11/23/2013,11/23/2013 02:31:50 PM,11/23/2013 02:32:09 PM,11/23/2013 02:56:39 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,04/25/2016 01:49:37 PM,3600 Block of SACRAMENTO ST,SF,94118,B07,10,4432,3,3,3,false,Fire,3,TRUCK,35,7,2,Presidio Heights,"(37.7873936866832, -122.452758503157)",133270252-T13 -131810022,E01,13061475,Structure Fire,06/30/2013,06/29/2013,06/30/2013 01:08:31 AM,06/30/2013 01:08:31 AM,06/30/2013 01:08:39 AM,06/30/2013 01:11:01 AM,06/30/2013 01:12:58 AM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,Fire,06/30/2013 01:13:01 AM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Alarm,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",131810022-E01 -133510176,65,13119180,Medical Incident,12/17/2013,12/17/2013,12/17/2013 11:38:12 AM,12/17/2013 11:39:51 AM,12/17/2013 11:40:15 AM,12/17/2013 11:40:54 AM,12/17/2013 12:10:05 PM,12/17/2013 12:27:30 PM,12/17/2013 12:51:23 PM,Code 2 Transport,12/17/2013 01:19:15 PM,1700 Block of 20TH AVE,SF,94122,B08,40,7422,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.755123574931, -122.477683428402)",133510176-65 -133360306,E23,13113993,Medical Incident,12/02/2013,12/02/2013,12/02/2013 07:07:30 PM,12/02/2013 07:09:29 PM,12/02/2013 07:11:40 PM,12/02/2013 07:12:07 PM,12/02/2013 07:20:41 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/02/2013 07:40:25 PM,1300 Block of 48TH AVE,SF,94122,B08,23,7721,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.761256999261, -122.508202143455)",133360306-E23 -103000055,E34,10095677,Medical Incident,10/27/2010,10/26/2010,10/27/2010 05:59:45 AM,10/27/2010 06:00:11 AM,10/27/2010 06:00:59 AM,10/27/2010 06:02:31 AM,10/27/2010 06:03:40 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 06:12:01 AM,7500 Block of GEARY BLVD,SF,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.779202123681, -122.501331891706)",103000055-E34 -160562668,76,16022466,Medical Incident,02/25/2016,02/25/2016,02/25/2016 04:14:31 PM,02/25/2016 04:16:41 PM,02/25/2016 04:17:10 PM,02/25/2016 04:17:17 PM,02/25/2016 04:21:25 PM,02/25/2016 04:35:26 PM,02/25/2016 04:41:13 PM,Code 2 Transport,02/25/2016 05:21:09 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160562668-76 -102790153,E03,10088679,Medical Incident,10/06/2010,10/06/2010,10/06/2010 12:32:32 PM,10/06/2010 12:34:44 PM,10/06/2010 12:35:04 PM,10/06/2010 12:36:03 PM,10/06/2010 12:38:30 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 12:40:27 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102790153-E03 -112030177,E07,11067009,Medical Incident,07/22/2011,07/22/2011,07/22/2011 12:06:57 PM,07/22/2011 12:09:14 PM,07/22/2011 12:10:01 PM,07/22/2011 12:11:03 PM,07/22/2011 12:14:23 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,07/22/2011 12:24:09 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",112030177-E07 -133330190,E36,13112969,Medical Incident,11/29/2013,11/29/2013,11/29/2013 03:39:14 PM,11/29/2013 03:40:00 PM,11/29/2013 03:40:37 PM,11/29/2013 03:41:48 PM,11/29/2013 03:45:08 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/29/2013 03:47:43 PM,POLK ST/MARKET ST,SF,94103,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",133330190-E36 -112760250,E01,11091400,Medical Incident,10/03/2011,10/03/2011,10/03/2011 03:16:13 PM,10/03/2011 03:16:40 PM,10/03/2011 03:17:29 PM,10/03/2011 03:17:56 PM,10/03/2011 03:25:00 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 03:35:53 PM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,2,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",112760250-E01 -160562001,KM02,16022403,Medical Incident,02/25/2016,02/25/2016,02/25/2016 01:19:34 PM,02/25/2016 01:21:16 PM,02/25/2016 01:22:18 PM,02/25/2016 01:22:18 PM,02/25/2016 01:33:45 PM,02/25/2016 02:05:34 PM,02/25/2016 02:14:00 PM,Code 2 Transport,02/25/2016 02:47:01 PM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7927299343809, -122.40328650281)",160562001-KM02 -140690203,E28,14023298,Medical Incident,03/10/2014,03/10/2014,03/10/2014 02:20:55 PM,03/10/2014 02:22:47 PM,03/10/2014 03:33:41 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Code 2 Transport,03/10/2014 03:35:18 PM,900 Block of FILBERT ST,SAN FRANCISCO,94133,B01,28,1436,2,3,3,false,Potentially Life-Threatening,1,ENGINE,4,1,3,Russian Hill,"(37.8007755481201, -122.414600502925)",140690203-E28 -122360175,E01,12078184,Medical Incident,08/23/2012,08/23/2012,08/23/2012 01:27:11 PM,08/23/2012 01:28:13 PM,08/23/2012 01:28:26 PM,08/23/2012 01:29:52 PM,08/23/2012 01:32:18 PM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Other,08/23/2012 01:32:37 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122360175-E01 -160140951,87,16005495,Medical Incident,01/14/2016,01/14/2016,01/14/2016 09:07:24 AM,01/14/2016 09:08:15 AM,01/14/2016 09:09:21 AM,01/14/2016 09:09:35 AM,01/14/2016 09:16:58 AM,01/14/2016 09:42:32 AM,01/14/2016 10:04:13 AM,Code 2 Transport,01/14/2016 10:49:49 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160140951-87 -131780044,KM07,13060322,Traffic Collision,06/27/2013,06/26/2013,06/27/2013 05:46:35 AM,06/27/2013 05:47:05 AM,06/27/2013 05:47:24 AM,06/27/2013 05:47:53 AM,06/27/2013 05:52:14 AM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,No Merit,06/27/2013 06:27:15 AM,TAYLOR ST/OFARRELL ST,SF,94102,B01,1,1452,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",131780044-KM07 -131280226,AM08,13043298,Medical Incident,05/08/2013,05/08/2013,05/08/2013 02:28:30 PM,05/08/2013 02:30:40 PM,05/08/2013 02:31:10 PM,05/08/2013 02:31:42 PM,05/08/2013 02:38:14 PM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 02:40:35 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",131280226-AM08 -112020302,84,11066731,Medical Incident,07/21/2011,07/21/2011,07/21/2011 04:10:32 PM,07/21/2011 04:12:30 PM,07/21/2011 04:12:59 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,04/25/2016 02:03:33 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",112020302-84 -140210023,93,14007055,Medical Incident,01/21/2014,01/20/2014,01/21/2014 03:26:23 AM,01/21/2014 03:28:24 AM,01/21/2014 03:28:38 AM,01/21/2014 03:29:31 AM,01/21/2014 03:39:54 AM,01/21/2014 04:01:55 AM,01/21/2014 04:15:35 AM,Code 2 Transport,01/21/2014 04:40:15 AM,3400 Block of DIVISADERO ST,SF,94123,B04,16,4212,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8013645565357, -122.443197401003)",140210023-93 -140800026,RS1,14026909,Structure Fire,03/21/2014,03/20/2014,03/21/2014 02:32:23 AM,03/21/2014 02:34:55 AM,03/21/2014 02:35:40 AM,03/21/2014 02:37:56 AM,03/21/2014 02:40:12 AM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Fire,03/21/2014 02:44:13 AM,600 Block of ELLIS ST,SAN FRANCISCO,94109,B02,3,1555,3,3,3,false,Alarm,1,RESCUE SQUAD,5,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",140800026-RS1 -132570285,E22,13086988,Medical Incident,09/14/2013,09/14/2013,09/14/2013 05:13:01 PM,09/14/2013 05:14:26 PM,09/14/2013 05:14:56 PM,09/14/2013 05:16:10 PM,09/14/2013 05:20:42 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 05:27:59 PM,1900 Block of LINCOLN WAY,SF,94122,B08,22,7425,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7652848425129, -122.478853338879)",132570285-E22 -133130048,D3,13106259,Structure Fire,11/09/2013,11/08/2013,11/09/2013 02:35:11 AM,11/09/2013 02:36:55 AM,11/09/2013 02:37:31 AM,11/09/2013 02:39:35 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 02:45:48 AM,1500 Block of WALLACE AVE,SF,94124,B10,17,6546,3,3,3,false,Alarm,1,CHIEF,8,10,10,Bayview Hunters Point,"(37.7269904434139, -122.390132474192)",133130048-D3 -133560301,T14,13121124,Medical Incident,12/22/2013,12/22/2013,12/22/2013 06:17:21 PM,12/22/2013 06:18:13 PM,12/22/2013 06:18:49 PM,12/22/2013 06:20:04 PM,12/22/2013 06:25:52 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 06:33:43 PM,6900 Block of GEARY BLVD,SF,94121,B07,14,7245,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,7,1,Outer Richmond,"(37.7795631193905, -122.493834451444)",133560301-T14 -102640360,89,10083711,Medical Incident,09/21/2010,09/21/2010,09/21/2010 10:22:34 PM,09/21/2010 10:27:19 PM,09/21/2010 10:27:48 PM,04/25/2016 02:08:29 PM,09/21/2010 10:33:12 PM,09/21/2010 10:47:05 PM,09/21/2010 10:55:56 PM,Code 2 Transport,09/21/2010 11:10:16 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",102640360-89 -160393226,63,16015772,Medical Incident,02/08/2016,02/08/2016,02/08/2016 07:48:20 PM,02/08/2016 07:50:22 PM,02/08/2016 07:50:56 PM,02/08/2016 07:51:04 PM,02/08/2016 08:07:27 PM,02/08/2016 08:11:45 PM,02/08/2016 08:27:17 PM,Code 2 Transport,02/08/2016 09:43:03 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160393226-63 -140360306,68,14012320,Medical Incident,02/05/2014,02/05/2014,02/05/2014 09:18:52 PM,02/05/2014 09:19:40 PM,02/05/2014 09:20:05 PM,02/05/2014 09:21:16 PM,02/05/2014 09:23:46 PM,04/25/2016 01:48:22 PM,04/25/2016 01:48:22 PM,Other,02/05/2014 09:49:19 PM,300 Block of JULES AVE,SF,94112,B09,15,8457,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7242989670231, -122.461184373042)",140360306-68 -120100379,T03,12003646,Structure Fire,01/10/2012,01/10/2012,01/10/2012 10:38:46 PM,01/10/2012 10:38:48 PM,01/10/2012 10:39:06 PM,01/10/2012 10:40:19 PM,01/10/2012 10:41:13 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/10/2012 10:41:38 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,false,Alarm,1,TRUCK,2,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",120100379-T03 -121720312,D2,12057226,Structure Fire,06/20/2012,06/20/2012,06/20/2012 08:04:25 PM,06/20/2012 08:05:12 PM,06/20/2012 08:06:00 PM,06/20/2012 08:07:06 PM,06/20/2012 08:08:16 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 08:13:02 PM,1300 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Fire,1,CHIEF,2,5,5,Western Addition,"(37.7818977107871, -122.432353853525)",121720312-D2 -130960028,E22,13032051,Structure Fire,04/06/2013,04/05/2013,04/06/2013 01:26:41 AM,04/06/2013 01:26:41 AM,04/06/2013 01:27:19 AM,04/06/2013 01:28:19 AM,04/06/2013 01:29:49 AM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 01:30:14 AM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,false,Alarm,1,ENGINE,1,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",130960028-E22 -122090075,RC3,12069361,Medical Incident,07/27/2012,07/27/2012,07/27/2012 08:22:23 AM,07/27/2012 08:24:01 AM,07/27/2012 08:24:19 AM,07/27/2012 08:33:00 AM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 08:36:58 AM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",122090075-RC3 -111490196,B06,11049416,Odor (Strange / Unknown),05/29/2011,05/29/2011,05/29/2011 04:08:57 PM,05/29/2011 04:12:46 PM,05/29/2011 04:12:59 PM,05/29/2011 04:14:00 PM,05/29/2011 04:15:43 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 04:24:32 PM,200 Block of 27TH ST,SF,94131,B06,11,5556,3,3,3,false,,1,CHIEF,2,6,8,Noe Valley,"(37.7470197682877, -122.425834246256)",111490196-B06 -132420304,E16,13081726,Structure Fire,08/30/2013,08/30/2013,08/30/2013 04:35:51 PM,08/30/2013 04:35:52 PM,08/30/2013 04:36:27 PM,08/30/2013 04:37:24 PM,08/30/2013 04:40:22 PM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/30/2013 04:48:06 PM,1100 Block of FRANCISCO ST,SF,94109,B01,16,314,3,3,3,true,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.803363322315, -122.424107741649)",132420304-E16 -110590226,E41,11019419,Structure Fire,02/28/2011,02/28/2011,02/28/2011 03:27:04 PM,02/28/2011 03:27:04 PM,02/28/2011 03:27:44 PM,02/28/2011 03:28:57 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Other,02/28/2011 03:31:09 PM,1000 Block of LARKIN ST,SF,94109,B04,3,1641,3,3,3,false,,1,ENGINE,2,4,3,Nob Hill,"(37.7872535428993, -122.418386203087)",110590226-E41 -110440107,54,11014571,Medical Incident,02/13/2011,02/13/2011,02/13/2011 08:55:16 AM,02/13/2011 08:55:58 AM,02/13/2011 08:57:40 AM,02/13/2011 08:57:48 AM,02/13/2011 09:02:05 AM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 09:04:47 AM,EDDY ST/HYDE ST,SF,94102,B02,3,1545,1,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",110440107-54 -132940338,T15,13100119,Alarms,10/21/2013,10/21/2013,10/21/2013 07:59:22 PM,10/21/2013 07:59:52 PM,10/21/2013 08:00:13 PM,10/21/2013 08:01:14 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 08:02:29 PM,100 Block of EXCELSIOR AVE,SF,94112,B09,43,611,3,3,3,false,Alarm,1,TRUCK,3,9,11,Excelsior,"(37.7257265963084, -122.432419861004)",132940338-T15 -131000370,88,13033766,Traffic Collision,04/10/2013,04/10/2013,04/10/2013 08:56:16 PM,04/10/2013 08:58:03 PM,04/10/2013 08:58:59 PM,04/10/2013 08:59:06 PM,04/10/2013 09:17:24 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,No Merit,04/10/2013 09:41:55 PM,CALL BOX: FS YB-BLDG 213,OAK,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",131000370-88 -111120028,E01,11036870,Alarms,04/22/2011,04/21/2011,04/22/2011 01:40:43 AM,04/22/2011 01:42:07 AM,04/22/2011 01:42:18 AM,04/22/2011 01:43:42 AM,04/22/2011 01:46:22 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 01:51:25 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",111120028-E01 -113450319,E08,11114581,Medical Incident,12/11/2011,12/11/2011,12/11/2011 08:08:38 PM,12/11/2011 08:09:35 PM,12/11/2011 08:09:51 PM,12/11/2011 08:11:18 PM,12/11/2011 08:12:23 PM,12/11/2011 08:27:17 PM,12/11/2011 08:46:59 PM,Other,12/11/2011 08:57:07 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",113450319-E08 -160560773,KM09,16022284,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:18:24 AM,02/25/2016 08:21:43 AM,02/25/2016 08:22:06 AM,02/25/2016 08:22:37 AM,02/25/2016 08:38:38 AM,02/25/2016 08:58:49 AM,02/25/2016 09:12:21 AM,Code 2 Transport,02/25/2016 09:54:27 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7795675904232, -122.407474134598)",160560773-KM09 -110800269,KM11,11026431,Medical Incident,03/21/2011,03/21/2011,03/21/2011 03:44:37 PM,03/21/2011 03:46:12 PM,03/21/2011 03:47:41 PM,03/21/2011 03:48:46 PM,03/21/2011 03:49:50 PM,03/21/2011 04:18:55 PM,03/21/2011 04:35:51 PM,Code 2 Transport,03/21/2011 05:02:04 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,,1,PRIVATE,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",110800269-KM11 -120430304,KM15,12014508,Medical Incident,02/12/2012,02/12/2012,02/12/2012 08:36:32 PM,02/12/2012 08:37:31 PM,02/12/2012 08:37:55 PM,02/12/2012 08:38:30 PM,02/12/2012 08:44:10 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Patient Declined Transport,02/12/2012 08:50:46 PM,2000 Block of VAN NESS AVE,SF,94109,B04,41,3153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Pacific Heights,"(37.7943544378215, -122.423308835651)",120430304-KM15 -132130146,E01,13071938,Medical Incident,08/01/2013,08/01/2013,08/01/2013 12:26:24 PM,08/01/2013 12:27:37 PM,08/01/2013 12:28:15 PM,08/01/2013 12:29:14 PM,08/01/2013 12:39:03 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 12:48:41 PM,300 Block of MARKET ST,SF,94111,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7921324266791, -122.397911804174)",132130146-E01 -131680352,E03,13057206,Structure Fire,06/17/2013,06/17/2013,06/17/2013 10:22:21 PM,06/17/2013 10:22:21 PM,06/17/2013 10:22:37 PM,06/17/2013 10:22:57 PM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,Other,06/17/2013 10:23:27 PM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7779770860913, -122.409387007126)",131680352-E03 -160032733,79,16001319,Medical Incident,01/03/2016,01/03/2016,01/03/2016 07:11:08 PM,01/03/2016 07:11:51 PM,01/03/2016 07:11:59 PM,01/03/2016 07:12:15 PM,01/03/2016 07:18:13 PM,01/03/2016 07:46:14 PM,01/03/2016 07:52:33 PM,Code 2 Transport,01/03/2016 08:24:44 PM,COLE ST/CARL ST,San Francisco,94117,B05,12,5144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7658000298196, -122.449958130403)",160032733-79 -160150458,62,16005849,Medical Incident,01/15/2016,01/14/2016,01/15/2016 05:41:50 AM,01/15/2016 05:44:50 AM,01/15/2016 05:45:03 AM,01/15/2016 05:45:20 AM,01/15/2016 05:54:30 AM,01/15/2016 06:20:45 AM,01/15/2016 06:38:37 AM,Code 2 Transport,01/15/2016 06:59:42 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",160150458-62 -131100392,94,13037207,Medical Incident,04/20/2013,04/20/2013,04/20/2013 09:50:40 PM,04/20/2013 09:52:01 PM,04/20/2013 09:52:14 PM,04/20/2013 09:52:26 PM,04/20/2013 10:01:27 PM,04/20/2013 10:08:12 PM,04/20/2013 10:43:36 PM,Code 2 Transport,04/20/2013 11:10:18 PM,0 Block of TEDDY AVE,SF,94134,B10,44,6265,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.713430704116, -122.403252361212)",131100392-94 -160022648,88,16000842,Medical Incident,01/02/2016,01/02/2016,01/02/2016 06:07:02 PM,01/02/2016 06:08:53 PM,01/02/2016 06:09:24 PM,01/02/2016 06:09:53 PM,01/02/2016 06:21:28 PM,01/02/2016 06:42:48 PM,01/02/2016 07:04:28 PM,Code 2 Transport,01/02/2016 07:57:25 PM,1000 Block of HOLLISTER AVE,San Francisco,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7192584871254, -122.391450988401)",160022648-88 -160500106,63,16019930,Medical Incident,02/19/2016,02/18/2016,02/19/2016 12:57:39 AM,02/19/2016 12:57:39 AM,02/19/2016 12:57:39 AM,02/19/2016 12:57:39 AM,02/19/2016 12:57:39 AM,02/19/2016 01:15:05 AM,02/19/2016 01:20:47 AM,Code 2 Transport,02/19/2016 02:03:46 AM,9TH AV/JUDAH ST,San Francisco,94122,B99,22,7334,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7621750437096, -122.466180554463)",160500106-63 -160123245,53,16004912,Traffic Collision,01/12/2016,01/12/2016,01/12/2016 07:29:45 PM,01/12/2016 07:30:32 PM,01/12/2016 07:30:58 PM,01/12/2016 07:33:20 PM,01/12/2016 07:37:09 PM,01/12/2016 07:54:53 PM,01/12/2016 08:09:12 PM,Code 2 Transport,01/12/2016 09:02:20 PM,PACIFIC AV/TAYLOR ST,San Francisco,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7960835505361, -122.413366185175)",160123245-53 -120700150,T10,12023227,Alarms,03/10/2012,03/10/2012,03/10/2012 10:42:51 AM,03/10/2012 10:43:49 AM,03/10/2012 10:44:03 AM,03/10/2012 10:45:30 AM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,Other,03/10/2012 10:49:17 AM,2800 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7931736175933, -122.444028632879)",120700150-T10 -160301295,57,16011735,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:14:50 AM,01/30/2016 10:16:38 AM,01/30/2016 10:16:56 AM,01/30/2016 10:17:19 AM,01/30/2016 10:23:15 AM,01/30/2016 10:35:15 AM,01/30/2016 10:37:18 AM,Code 3 Transport,01/30/2016 11:15:35 AM,3500 Block of 23RD ST,San Francisco,94110,B06,11,5512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7535600538257, -122.422267918951)",160301295-57 -132470033,E11,13083214,Medical Incident,09/04/2013,09/03/2013,09/04/2013 03:29:56 AM,09/04/2013 03:30:16 AM,09/04/2013 03:30:29 AM,04/25/2016 01:50:58 PM,09/04/2013 03:34:08 AM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 03:40:32 AM,3300 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7482858766932, -122.417044258324)",132470033-E11 -120780253,E01,12025930,Structure Fire,03/18/2012,03/18/2012,03/18/2012 02:33:28 PM,03/18/2012 02:34:29 PM,03/18/2012 02:34:47 PM,03/18/2012 02:36:21 PM,03/18/2012 02:38:08 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/18/2012 02:45:59 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,Fire,1,ENGINE,3,3,6,South of Market,"(37.7806691632498, -122.401678045598)",120780253-E01 -110360318,T01,11011938,Elevator / Escalator Rescue,02/05/2011,02/05/2011,02/05/2011 04:55:03 PM,02/05/2011 04:56:57 PM,02/05/2011 04:58:05 PM,02/05/2011 05:00:17 PM,02/05/2011 05:02:12 PM,04/25/2016 02:06:14 PM,04/25/2016 02:06:14 PM,Other,02/05/2011 05:18:03 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",110360318-T01 -103200196,T07,10102566,Structure Fire,11/16/2010,11/16/2010,11/16/2010 12:43:51 PM,11/16/2010 12:43:52 PM,11/16/2010 12:44:06 PM,11/16/2010 12:45:51 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 12:47:50 PM,12TH ST/FOLSOM ST,SF,94103,B02,36,5121,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.7708961078752, -122.414996655724)",103200196-T07 -112710039,E06,11089423,Medical Incident,09/28/2011,09/27/2011,09/28/2011 04:52:21 AM,09/28/2011 04:53:13 AM,09/28/2011 04:53:40 AM,09/28/2011 04:56:17 AM,09/28/2011 04:57:33 AM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/28/2011 04:59:13 AM,15TH ST/CHURCH ST,SF,94114,B02,6,5227,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7661300154558, -122.428819146831)",112710039-E06 -131050185,E37,13035270,Medical Incident,04/15/2013,04/15/2013,04/15/2013 01:15:52 PM,04/15/2013 01:17:43 PM,04/15/2013 01:18:12 PM,04/15/2013 01:18:59 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 01:37:12 PM,1200 Block of CAROLINA ST,SF,94107,B10,37,256,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7526323138734, -122.398696830553)",131050185-E37 -160671664,88,16026761,Medical Incident,03/07/2016,03/07/2016,03/07/2016 01:42:40 PM,03/07/2016 01:42:40 PM,03/07/2016 01:44:33 PM,03/07/2016 01:44:44 PM,03/07/2016 01:51:48 PM,03/07/2016 02:00:53 PM,03/07/2016 02:12:08 PM,Code 2 Transport,03/07/2016 02:57:00 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160671664-88 -160783662,52,16031180,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:51:48 PM,03/18/2016 08:54:23 PM,03/18/2016 08:54:34 PM,03/18/2016 08:54:41 PM,03/18/2016 09:00:53 PM,03/18/2016 09:25:41 PM,03/18/2016 09:30:45 PM,Code 2 Transport,03/18/2016 10:30:25 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",160783662-52 -102270246,E16,10071512,Medical Incident,08/15/2010,08/15/2010,08/15/2010 04:39:05 PM,08/15/2010 04:40:04 PM,08/15/2010 04:41:09 PM,08/15/2010 04:42:10 PM,08/15/2010 04:43:53 PM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,Other,08/15/2010 04:54:16 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8008031731089, -122.436797742278)",102270246-E16 -122280246,E01,12075606,Medical Incident,08/15/2012,08/15/2012,08/15/2012 03:29:04 PM,08/15/2012 03:30:46 PM,08/15/2012 03:31:10 PM,08/15/2012 03:32:59 PM,08/15/2012 03:35:51 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Patient Declined Transport,08/15/2012 03:41:54 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",122280246-E01 -132150274,AM24,13072688,Medical Incident,08/03/2013,08/03/2013,08/03/2013 04:33:18 PM,08/03/2013 04:35:19 PM,08/03/2013 04:35:57 PM,08/03/2013 04:36:45 PM,08/03/2013 04:39:28 PM,08/03/2013 04:57:03 PM,08/03/2013 05:03:06 PM,Code 2 Transport,08/03/2013 05:20:00 PM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",132150274-AM24 -112230394,89,11073829,Medical Incident,08/11/2011,08/11/2011,08/11/2011 11:56:18 PM,08/11/2011 11:57:22 PM,08/11/2011 11:57:46 PM,08/11/2011 11:57:52 PM,08/11/2011 11:59:23 PM,08/12/2011 12:14:02 AM,08/12/2011 12:21:08 AM,Code 2 Transport,08/12/2011 12:52:31 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",112230394-89 -121530142,T01,12050603,Alarms,06/01/2012,06/01/2012,06/01/2012 12:25:01 PM,06/01/2012 12:26:26 PM,06/01/2012 12:26:38 PM,06/01/2012 12:28:33 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 12:36:06 PM,700 Block of MINNA ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,TRUCK,3,2,6,South of Market,"(37.7763745624994, -122.413346206384)",121530142-T01 -123230290,T13,12107510,Alarms,11/18/2012,11/18/2012,11/18/2012 08:00:32 PM,11/18/2012 08:02:09 PM,11/18/2012 08:02:16 PM,11/18/2012 08:03:46 PM,11/18/2012 08:05:47 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/18/2012 08:17:59 PM,0 Block of SANSOME ST,SF,94104,B01,13,1164,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",123230290-T13 -121660110,93,12054999,Medical Incident,06/14/2012,06/14/2012,06/14/2012 09:31:04 AM,06/14/2012 09:31:26 AM,06/14/2012 09:32:24 AM,04/25/2016 01:58:13 PM,06/14/2012 09:38:05 AM,06/14/2012 09:54:09 AM,06/14/2012 09:58:18 AM,Code 3 Transport,06/14/2012 10:47:06 AM,1400 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",121660110-93 -160251328,52,16009888,Medical Incident,01/25/2016,01/25/2016,01/25/2016 10:46:46 AM,01/25/2016 10:48:07 AM,01/25/2016 10:50:14 AM,01/25/2016 10:50:29 AM,01/25/2016 11:04:46 AM,01/25/2016 11:25:05 AM,01/25/2016 11:55:02 AM,Code 2 Transport,01/25/2016 01:12:48 PM,200 Block of PARIS ST,San Francisco,94112,B09,43,6127,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7246819549267, -122.432583397927)",160251328-52 -120990037,B09,12032690,Alarms,04/08/2012,04/07/2012,04/08/2012 03:00:39 AM,04/08/2012 03:01:52 AM,04/08/2012 03:02:21 AM,04/08/2012 03:03:29 AM,04/08/2012 03:08:30 AM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 03:21:51 AM,3900 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,2,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",120990037-B09 -160501171,83,16020035,Medical Incident,02/19/2016,02/19/2016,02/19/2016 10:31:45 AM,02/19/2016 10:33:53 AM,02/19/2016 10:34:14 AM,02/19/2016 10:34:26 AM,02/19/2016 10:38:07 AM,02/19/2016 10:46:31 AM,02/19/2016 10:57:38 AM,Code 2 Transport,02/19/2016 11:16:53 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160501171-83 -123140284,E44,12104577,Medical Incident,11/09/2012,11/09/2012,11/09/2012 05:23:33 PM,11/09/2012 05:24:20 PM,11/09/2012 05:24:29 PM,11/09/2012 05:25:21 PM,11/09/2012 05:28:55 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 05:47:03 PM,6200 Block of 3RD ST,SF,94124,B10,44,6544,3,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7213831461768, -122.396234473248)",123140284-E44 -120310221,E33,12010304,Medical Incident,01/31/2012,01/31/2012,01/31/2012 03:10:20 PM,01/31/2012 03:11:39 PM,01/31/2012 03:12:19 PM,01/31/2012 03:13:43 PM,01/31/2012 03:15:45 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/31/2012 04:02:06 PM,200 Block of VICTORIA ST,SF,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7152017916532, -122.465379533381)",120310221-E33 -112880250,T02,11095593,Elevator / Escalator Rescue,10/15/2011,10/15/2011,10/15/2011 03:57:14 PM,10/15/2011 03:58:25 PM,10/15/2011 03:58:32 PM,10/15/2011 03:59:52 PM,10/15/2011 04:02:18 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Fire,10/15/2011 04:38:12 PM,600 Block of JACKSON ST,SF,94133,B01,2,1312,3,3,3,false,,1,TRUCK,1,1,3,Chinatown,"(37.7961122899113, -122.405492182184)",112880250-T02 -130670283,78,13022405,Medical Incident,03/08/2013,03/08/2013,03/08/2013 04:39:00 PM,03/08/2013 04:40:34 PM,03/08/2013 04:40:58 PM,03/08/2013 04:41:17 PM,03/08/2013 04:44:06 PM,03/08/2013 05:02:02 PM,03/08/2013 05:20:42 PM,Code 2 Transport,03/08/2013 05:57:18 PM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",130670283-78 -120840285,64,12027989,Traffic Collision,03/24/2012,03/24/2012,03/24/2012 05:29:45 PM,03/24/2012 05:33:46 PM,03/24/2012 05:34:11 PM,03/24/2012 05:34:33 PM,03/24/2012 05:38:37 PM,03/24/2012 06:30:46 PM,03/24/2012 06:57:51 PM,Code 2 Transport,03/24/2012 07:19:08 PM,RICHARDSON AV/FRANCISCO ST,SF,94123,B04,16,4325,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8003858224919, -122.447130573329)",120840285-64 -130310386,68,13010746,Medical Incident,01/31/2013,01/31/2013,01/31/2013 09:51:54 PM,01/31/2013 09:54:15 PM,01/31/2013 09:55:03 PM,01/31/2013 09:55:20 PM,01/31/2013 10:07:33 PM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,01/31/2013 10:08:14 PM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,1,1,2,true,Non Life-threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",130310386-68 -131350338,E22,13045680,Medical Incident,05/15/2013,05/15/2013,05/15/2013 07:59:45 PM,05/15/2013 08:03:28 PM,05/15/2013 08:03:39 PM,05/15/2013 08:04:46 PM,05/15/2013 08:08:03 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 08:16:23 PM,1500 Block of 19TH AVE,SF,94122,B08,22,7423,E,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7588956344045, -122.476892326601)",131350338-E22 -160270682,KM03,16010571,Medical Incident,01/27/2016,01/27/2016,01/27/2016 08:05:19 AM,01/27/2016 08:07:04 AM,01/27/2016 08:07:57 AM,01/27/2016 08:08:55 AM,01/27/2016 08:24:45 AM,01/27/2016 08:47:47 AM,01/27/2016 09:06:35 AM,Code 2 Transport,01/27/2016 09:42:40 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160270682-KM03 -132340221,81,13079025,Medical Incident,08/22/2013,08/22/2013,08/22/2013 02:56:58 PM,08/22/2013 02:58:38 PM,08/22/2013 02:59:05 PM,08/22/2013 02:59:19 PM,08/22/2013 03:21:06 PM,08/22/2013 03:35:44 PM,08/22/2013 04:07:43 PM,Code 2 Transport,08/22/2013 04:12:23 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",132340221-81 -122360328,54,12078312,Medical Incident,08/23/2012,08/23/2012,08/23/2012 08:35:40 PM,08/23/2012 08:37:12 PM,08/23/2012 08:38:39 PM,08/23/2012 08:38:51 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/23/2012 08:43:39 PM,MARKET ST/NOE ST,SF,94114,B05,6,5231,2,2,2,true,Non Life-threatening,1,MEDIC,3,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",122360328-54 -160313661,88,16012371,Medical Incident,01/31/2016,01/31/2016,01/31/2016 10:09:21 PM,01/31/2016 10:12:09 PM,01/31/2016 10:13:54 PM,01/31/2016 10:13:54 PM,01/31/2016 10:21:34 PM,01/31/2016 10:40:26 PM,01/31/2016 10:55:22 PM,Code 2 Transport,01/31/2016 11:17:07 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160313661-88 -160843907,RC2,16033555,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:03:56 PM,03/24/2016 09:04:18 PM,03/24/2016 09:12:00 PM,03/24/2016 09:15:14 PM,03/24/2016 09:20:02 PM,03/24/2016 09:27:59 PM,03/24/2016 09:37:30 PM,Code 3 Transport,03/24/2016 09:56:27 PM,2100 Block of 30TH AVE,San Francisco,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7471894211891, -122.487870230981)",160843907-RC2 -111620329,E28,11053623,Structure Fire,06/11/2011,06/11/2011,06/11/2011 08:57:18 PM,06/11/2011 08:57:40 PM,06/11/2011 08:57:57 PM,06/11/2011 08:58:43 PM,06/11/2011 09:01:04 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Other,06/11/2011 09:08:23 PM,800 Block of GREEN ST,SF,94133,B01,2,1441,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7989374349507, -122.41309613453)",111620329-E28 -160681693,82,16027118,Medical Incident,03/08/2016,03/08/2016,03/08/2016 12:27:24 PM,03/08/2016 12:29:26 PM,03/08/2016 12:29:46 PM,03/08/2016 12:31:45 PM,03/08/2016 12:31:45 PM,03/08/2016 12:49:25 PM,03/08/2016 01:09:48 PM,Code 2 Transport,03/08/2016 01:46:33 PM,1800 Block of MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",160681693-82 -122330261,KM05,12077347,Medical Incident,08/20/2012,08/20/2012,08/20/2012 04:09:21 PM,08/20/2012 04:11:11 PM,08/20/2012 04:11:54 PM,08/20/2012 04:12:35 PM,08/20/2012 04:17:03 PM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Patient Declined Transport,08/20/2012 05:06:16 PM,1700 Block of FULTON ST,SF,94117,B05,21,4463,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",122330261-KM05 -113460262,E06,11114854,Alarms,12/12/2011,12/12/2011,12/12/2011 04:05:34 PM,12/12/2011 04:06:25 PM,12/12/2011 04:06:41 PM,12/12/2011 04:08:11 PM,12/12/2011 04:10:30 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 04:17:25 PM,CALL BOX: 17TH ST/DOUGLASS ST,SF,94114,B05,6,5254,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7623432510579, -122.438457516114)",113460262-E06 -103610270,B06,10115880,Alarms,12/27/2010,12/27/2010,12/27/2010 05:47:52 PM,12/27/2010 05:50:40 PM,12/27/2010 05:51:28 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,04/25/2016 02:06:54 PM,100 Block of MADRONE AVE,SF,94127,B08,39,8612,3,3,3,false,,1,CHIEF,4,8,7,West of Twin Peaks,"(37.7407800476092, -122.468014173503)",103610270-B06 -131330030,54,13044733,Medical Incident,05/13/2013,05/12/2013,05/13/2013 02:38:05 AM,05/13/2013 02:40:30 AM,05/13/2013 02:40:45 AM,05/13/2013 02:40:51 AM,05/13/2013 02:50:00 AM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Patient Declined Transport,05/13/2013 03:16:30 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.796699717573, -122.408014703843)",131330030-54 -160730927,KM09,16028929,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:55:33 AM,03/13/2016 10:57:53 AM,03/13/2016 10:58:38 AM,03/13/2016 10:59:12 AM,03/13/2016 11:07:15 AM,03/13/2016 11:21:29 AM,03/13/2016 11:40:08 AM,Code 2 Transport,03/13/2016 12:31:18 PM,600 Block of POST ST,San Francisco,94109,B01,3,1451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7878082243767, -122.412644332435)",160730927-KM09 -112720188,E01,11089950,Medical Incident,09/29/2011,09/29/2011,09/29/2011 01:32:31 PM,09/29/2011 01:33:31 PM,09/29/2011 01:34:14 PM,09/29/2011 01:35:12 PM,09/29/2011 01:37:57 PM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,Other,09/29/2011 01:51:47 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",112720188-E01 -121030285,E05,12034198,Medical Incident,04/12/2012,04/12/2012,04/12/2012 05:25:47 PM,04/12/2012 05:27:25 PM,04/12/2012 05:28:22 PM,04/12/2012 05:29:24 PM,04/12/2012 05:32:46 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 05:42:33 PM,100 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7681979747465, -122.429080297019)",121030285-E05 -131670361,T15,13056859,Citizen Assist / Service Call,06/16/2013,06/16/2013,06/16/2013 10:36:10 PM,06/16/2013 10:37:51 PM,06/16/2013 10:38:04 PM,06/16/2013 10:39:39 PM,06/16/2013 10:43:45 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/16/2013 11:28:23 PM,1600 Block of ALEMANY BLVD,SF,94112,B09,15,8271,3,3,3,false,Alarm,1,TRUCK,1,9,11,Outer Mission,"(37.7258258537122, -122.436633817346)",131670361-T15 -120800240,89,12026608,Medical Incident,03/20/2012,03/20/2012,03/20/2012 04:06:18 PM,03/20/2012 04:08:46 PM,03/20/2012 04:09:31 PM,03/20/2012 04:09:52 PM,03/20/2012 04:12:55 PM,03/20/2012 04:29:12 PM,03/20/2012 04:31:18 PM,Code 2 Transport,03/20/2012 04:55:35 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",120800240-89 -103480164,E24,10111573,Medical Incident,12/14/2010,12/14/2010,12/14/2010 10:34:25 AM,12/14/2010 10:35:19 AM,12/14/2010 10:36:28 AM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Other,12/14/2010 10:54:07 AM,1800 Block of CHURCH ST,SF,94131,B06,11,5574,3,3,3,true,,1,ENGINE,2,6,8,Glen Park,"(37.7409088718455, -122.426663868061)",103480164-E24 -122700286,85,12089215,Medical Incident,09/26/2012,09/26/2012,09/26/2012 06:56:19 PM,09/26/2012 06:56:59 PM,09/26/2012 06:57:33 PM,09/26/2012 06:57:45 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/26/2012 07:02:46 PM,1500 Block of CLAY ST,SF,94109,B04,41,1634,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.7928054657502, -122.41817897481)",122700286-85 -122630358,E32,12087021,Medical Incident,09/19/2012,09/19/2012,09/19/2012 10:26:13 PM,09/19/2012 10:27:04 PM,09/19/2012 10:27:12 PM,09/19/2012 10:29:30 PM,09/19/2012 10:32:31 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/19/2012 10:43:44 PM,400 Block of SILVER AVE,SF,94112,B09,32,6143,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7286839027571, -122.426197799663)",122630358-E32 -160420361,67,16016733,Traffic Collision,02/11/2016,02/10/2016,02/11/2016 04:52:38 AM,02/11/2016 04:52:38 AM,02/11/2016 04:53:22 AM,02/11/2016 04:53:41 AM,02/11/2016 04:57:05 AM,02/11/2016 05:17:13 AM,02/11/2016 05:27:28 AM,Code 2 Transport,02/11/2016 05:51:57 AM,LEAVENWORTH ST/FILBERT ST,San Francisco,94133,B01,28,1532,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8003407918188, -122.417586973965)",160420361-67 -160612464,76,16024387,Medical Incident,03/01/2016,03/01/2016,03/01/2016 04:58:01 PM,03/01/2016 05:01:29 PM,03/01/2016 05:02:01 PM,03/01/2016 05:02:08 PM,03/01/2016 05:07:06 PM,03/01/2016 05:14:43 PM,03/01/2016 05:33:27 PM,Code 2 Transport,03/01/2016 06:01:05 PM,300 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.798349938239, -122.403307985807)",160612464-76 -102730282,E18,10086764,Traffic Collision,09/30/2010,09/30/2010,09/30/2010 05:49:40 PM,09/30/2010 05:49:40 PM,09/30/2010 05:50:37 PM,09/30/2010 05:51:27 PM,09/30/2010 05:53:49 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Other,09/30/2010 06:21:17 PM,1800 Block of 28TH AVE,SF,94122,B08,18,7515,2,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7528861670691, -122.485984045503)",102730282-E18 -160560238,AM22,16022225,Medical Incident,02/25/2016,02/24/2016,02/25/2016 02:46:44 AM,02/25/2016 02:47:59 AM,02/25/2016 02:48:21 AM,02/25/2016 02:49:25 AM,02/25/2016 02:52:48 AM,02/25/2016 03:00:09 AM,02/25/2016 03:11:16 AM,Code 2 Transport,02/25/2016 03:48:46 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160560238-AM22 -131080188,96,13036307,Medical Incident,04/18/2013,04/18/2013,04/18/2013 01:02:11 PM,04/18/2013 01:04:12 PM,04/18/2013 01:06:06 PM,04/25/2016 01:53:15 PM,04/18/2013 01:06:51 PM,04/18/2013 01:22:49 PM,04/18/2013 01:43:54 PM,Code 2 Transport,04/18/2013 02:17:37 PM,600 Block of PORTOLA DR,SF,94127,B08,39,8661,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7452993390303, -122.451904398893)",131080188-96 -110050166,KM01,11001621,Medical Incident,01/05/2011,01/05/2011,01/05/2011 11:12:26 AM,01/05/2011 11:15:16 AM,01/05/2011 11:16:59 AM,01/05/2011 11:19:50 AM,01/05/2011 11:31:02 AM,01/05/2011 11:54:44 AM,01/05/2011 12:02:26 PM,Code 2 Transport,01/05/2011 12:39:04 PM,4000 Block of MISSION ST,SF,94112,B06,32,5633,2,2,2,false,,1,PRIVATE,1,9,8,Outer Mission,"(37.7322426255479, -122.4279021087)",110050166-KM01 -130070327,79,13002498,Medical Incident,01/07/2013,01/07/2013,01/07/2013 06:59:52 PM,01/07/2013 07:01:23 PM,01/07/2013 07:01:49 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,04/25/2016 01:54:55 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",130070327-79 -133080039,KM07,13104599,Medical Incident,11/04/2013,11/03/2013,11/04/2013 04:09:37 AM,11/04/2013 04:12:00 AM,11/04/2013 04:12:10 AM,11/04/2013 04:13:51 AM,11/04/2013 04:23:31 AM,11/04/2013 04:31:49 AM,11/04/2013 04:50:26 AM,Code 2 Transport,11/04/2013 05:25:04 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",133080039-KM07 -112670028,57,11088089,Medical Incident,09/24/2011,09/23/2011,09/24/2011 01:35:17 AM,09/24/2011 01:36:41 AM,09/24/2011 01:37:13 AM,09/24/2011 01:37:22 AM,09/24/2011 01:51:25 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,No Merit,09/24/2011 01:51:31 AM,800 Block of POST ST,SF,94109,B04,3,1543,1,1,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",112670028-57 -130270108,E41,13009243,Medical Incident,01/27/2013,01/27/2013,01/27/2013 09:02:53 AM,01/27/2013 09:05:21 AM,01/27/2013 09:05:32 AM,01/27/2013 09:06:12 AM,01/27/2013 09:10:37 AM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 09:18:51 AM,1100 Block of VALLEJO ST,SF,94109,B01,41,1512,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7976997248557, -122.416217993782)",130270108-E41 -132090332,E31,13070821,Other,07/28/2013,07/28/2013,07/28/2013 08:55:33 PM,07/28/2013 08:56:43 PM,07/28/2013 08:57:02 PM,07/28/2013 08:57:55 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,04/25/2016 01:51:35 PM,0 Block of COOK ST,SF,94118,B05,10,445,3,3,3,true,Alarm,1,ENGINE,2,5,2,Presidio Heights,"(37.7827442362846, -122.452392135111)",132090332-E31 -123230342,85,12107557,Medical Incident,11/18/2012,11/18/2012,11/18/2012 11:31:58 PM,11/18/2012 11:35:11 PM,11/18/2012 11:35:29 PM,11/18/2012 11:35:46 PM,11/18/2012 11:52:21 PM,11/19/2012 12:06:01 AM,11/19/2012 12:19:07 AM,Code 2 Transport,11/19/2012 12:52:21 AM,1100 Block of FITZGERALD AVE,SF,94124,B10,17,6615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7204964019129, -122.390342560546)",123230342-85 -160193517,AM24,16007800,Traffic Collision,01/19/2016,01/19/2016,01/19/2016 09:23:56 PM,01/19/2016 09:23:56 PM,01/19/2016 09:25:55 PM,01/19/2016 09:26:27 PM,01/19/2016 09:29:42 PM,01/19/2016 09:43:58 PM,01/19/2016 10:13:37 PM,Code 2 Transport,01/19/2016 10:37:12 PM,800 Block of OCEAN AVE,San Francisco,94112,B09,15,8472,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7228437407708, -122.450588711327)",160193517-AM24 -120440327,E17,12014830,Medical Incident,02/13/2012,02/13/2012,02/13/2012 11:43:42 PM,02/13/2012 11:44:20 PM,02/13/2012 11:44:44 PM,04/25/2016 02:00:09 PM,02/13/2012 11:45:13 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 11:53:22 PM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",120440327-E17 -122290038,87,12075760,Medical Incident,08/16/2012,08/15/2012,08/16/2012 03:38:29 AM,08/16/2012 03:40:36 AM,08/16/2012 03:42:41 AM,08/16/2012 03:43:15 AM,08/16/2012 04:00:42 AM,08/16/2012 04:04:19 AM,08/16/2012 04:24:08 AM,Code 2 Transport,08/16/2012 04:54:03 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",122290038-87 -131190399,E01,13040224,Structure Fire,04/29/2013,04/29/2013,04/29/2013 11:03:56 PM,04/29/2013 11:04:33 PM,04/29/2013 11:04:56 PM,04/29/2013 11:06:05 PM,04/29/2013 11:08:03 PM,04/25/2016 01:53:03 PM,04/25/2016 01:53:03 PM,Other,04/29/2013 11:11:09 PM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,4,2,6,Tenderloin,"(37.7832504150919, -122.414216002993)",131190399-E01 -160430839,85,16017205,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:51:38 AM,02/12/2016 08:53:05 AM,02/12/2016 08:53:30 AM,02/12/2016 08:53:42 AM,02/12/2016 08:58:47 AM,02/12/2016 09:15:57 AM,02/12/2016 09:36:43 AM,Code 2 Transport,02/12/2016 09:55:58 AM,300 Block of BEACON ST,San Francisco,94131,B06,26,8157,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Glen Park,"(37.7410466852293, -122.433829666381)",160430839-85 -102630068,D3,10083123,Industrial Accidents,09/20/2010,09/19/2010,09/20/2010 07:59:01 AM,09/20/2010 07:59:38 AM,09/20/2010 08:00:46 AM,04/25/2016 02:08:30 PM,09/20/2010 08:18:00 AM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 08:21:55 AM,16TH ST/OWENS ST,SF,94158,B03,29,2414,3,3,3,false,,1,CHIEF,5,3,6,Mission Bay,"(37.766691461354, -122.392661869743)",102630068-D3 -103460147,B02,10110917,Alarms,12/12/2010,12/12/2010,12/12/2010 10:54:23 AM,12/12/2010 10:55:25 AM,12/12/2010 10:55:34 AM,12/12/2010 10:56:22 AM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Fire,12/12/2010 11:10:10 AM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,3,3,3,false,,1,CHIEF,3,2,6,South of Market,"(37.7755676420155, -122.412334779681)",103460147-B02 -122150071,E08,12071268,Traffic Collision,08/02/2012,08/02/2012,08/02/2012 08:16:32 AM,08/02/2012 08:16:50 AM,08/02/2012 08:17:37 AM,08/02/2012 08:19:28 AM,08/02/2012 08:21:00 AM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/02/2012 08:30:15 AM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7732232142847, -122.402889298062)",122150071-E08 -133220287,94,13109435,Medical Incident,11/18/2013,11/18/2013,11/18/2013 07:54:18 PM,11/18/2013 07:54:57 PM,11/18/2013 07:55:19 PM,11/18/2013 07:55:44 PM,11/18/2013 08:00:36 PM,11/18/2013 08:37:03 PM,11/18/2013 08:47:05 PM,Code 2 Transport,11/18/2013 09:23:38 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",133220287-94 -121050071,E01,12034675,Medical Incident,04/14/2012,04/13/2012,04/14/2012 04:32:11 AM,04/14/2012 04:33:26 AM,04/14/2012 04:33:45 AM,04/14/2012 04:36:01 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 04:37:35 AM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",121050071-E01 -112320142,FB1,11076559,Water Rescue,08/20/2011,08/20/2011,08/20/2011 11:29:06 AM,08/20/2011 11:29:51 AM,08/20/2011 11:30:37 AM,08/20/2011 11:32:26 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 12:36:50 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,,1,SUPPORT,16,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",112320142-FB1 -130350020,54,13011852,Medical Incident,02/04/2013,02/03/2013,02/04/2013 01:38:01 AM,02/04/2013 01:38:22 AM,02/04/2013 01:38:39 AM,02/04/2013 01:38:47 AM,02/04/2013 01:40:04 AM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,Other,02/04/2013 01:40:36 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",130350020-54 -111970267,T18,11065082,Structure Fire,07/16/2011,07/16/2011,07/16/2011 05:56:07 PM,07/16/2011 05:57:08 PM,07/16/2011 05:57:25 PM,07/16/2011 05:57:52 PM,07/16/2011 06:04:47 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 06:21:46 PM,0 Block of VICENTE ST,SF,94127,B08,39,8612,3,3,3,false,,1,TRUCK,6,8,7,West of Twin Peaks,"(37.739532244052, -122.466523956195)",111970267-T18 -160782275,63,16031049,Medical Incident,03/18/2016,03/18/2016,03/18/2016 02:51:10 PM,03/18/2016 02:52:03 PM,03/18/2016 02:53:11 PM,03/18/2016 02:53:21 PM,03/18/2016 02:58:38 PM,03/18/2016 03:06:58 PM,03/18/2016 03:22:48 PM,Code 2 Transport,03/18/2016 03:39:17 PM,200 Block of BAY ST,San Francisco,94133,B01,28,1341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.805980597443, -122.411141131856)",160782275-63 -160040663,60,16001492,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:41:31 AM,01/04/2016 07:42:49 AM,01/04/2016 07:43:16 AM,01/04/2016 07:48:25 AM,01/04/2016 08:15:03 AM,01/04/2016 08:35:26 AM,01/04/2016 08:56:33 AM,Code 2 Transport,01/04/2016 09:39:04 AM,100 Block of FREMONT ST,San Francisco,94105,B03,35,2126,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7894863287687, -122.395368983007)",160040663-60 -131580011,T03,13053462,Medical Incident,06/07/2013,06/06/2013,06/07/2013 12:34:50 AM,06/07/2013 12:37:07 AM,06/07/2013 12:37:15 AM,06/07/2013 12:40:20 AM,06/07/2013 12:43:41 AM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/07/2013 12:51:53 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131580011-T03 -160211663,81,16008368,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:23:06 PM,01/21/2016 12:26:13 PM,01/21/2016 12:28:23 PM,01/21/2016 12:28:38 PM,01/21/2016 12:39:50 PM,01/21/2016 12:58:31 PM,01/21/2016 01:17:47 PM,Code 2 Transport,01/21/2016 01:50:13 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160211663-81 -110930189,E07,11030877,Medical Incident,04/03/2011,04/03/2011,04/03/2011 01:04:42 PM,04/03/2011 01:06:34 PM,04/03/2011 01:06:51 PM,04/25/2016 02:05:18 PM,04/03/2011 01:09:58 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 01:15:11 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",110930189-E07 -103500303,E05,10112347,Medical Incident,12/16/2010,12/16/2010,12/16/2010 06:01:59 PM,12/16/2010 06:04:28 PM,12/16/2010 06:04:40 PM,12/16/2010 06:05:39 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,12/16/2010 06:05:56 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,2,2,2,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",103500303-E05 -102730034,81,10086563,Medical Incident,09/30/2010,09/29/2010,09/30/2010 02:30:46 AM,09/30/2010 02:33:56 AM,09/30/2010 02:35:35 AM,09/30/2010 02:36:03 AM,09/30/2010 02:43:34 AM,09/30/2010 03:08:29 AM,09/30/2010 03:32:00 AM,Code 2 Transport,09/30/2010 03:51:58 AM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,true,,1,MEDIC,3,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",102730034-81 -140960314,66,14032425,Medical Incident,04/06/2014,04/06/2014,04/06/2014 07:06:56 PM,04/06/2014 07:07:07 PM,04/06/2014 07:07:38 PM,04/06/2014 07:07:54 PM,04/06/2014 07:12:19 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,No Merit,04/06/2014 07:13:21 PM,POWELL ST/OFARRELL ST,SAN FRANCISCO,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",140960314-66 -113190203,E41,11105954,Alarms,11/15/2011,11/15/2011,11/15/2011 12:49:09 PM,11/15/2011 12:50:18 PM,11/15/2011 12:51:48 PM,11/15/2011 12:52:47 PM,11/15/2011 12:54:16 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 12:56:51 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7912571694899, -122.414917737337)",113190203-E41 -110910037,E09,11030023,Vehicle Fire,04/01/2011,03/31/2011,04/01/2011 02:08:10 AM,04/01/2011 02:09:10 AM,04/01/2011 02:10:33 AM,04/01/2011 02:12:39 AM,04/01/2011 02:21:35 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 04:56:38 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",110910037-E09 -120100393,67,12003663,Medical Incident,01/10/2012,01/10/2012,01/10/2012 11:23:30 PM,01/10/2012 11:27:10 PM,01/11/2012 12:00:39 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,01/11/2012 12:16:23 AM,01/11/2012 12:22:21 AM,Other,01/11/2012 12:50:57 AM,800 Block of CLAY ST,SF,94108,B01,13,1313,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7941768903766, -122.407424090939)",120100393-67 -130330354,T18,13011440,Administrative,02/02/2013,02/02/2013,02/02/2013 10:07:42 PM,02/02/2013 10:07:49 PM,02/02/2013 10:10:06 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Fire,02/02/2013 10:10:39 PM,1900 Block of 32ND AVE,SF,94116,B08,18,7533,3,3,3,false,,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7508238719258, -122.490273641262)",130330354-T18 -121920310,E10,12064031,Alarms,07/10/2012,07/10/2012,07/10/2012 07:38:18 PM,07/10/2012 07:38:43 PM,07/10/2012 07:39:09 PM,07/10/2012 07:40:28 PM,07/10/2012 07:45:36 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 07:50:57 PM,1700 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,true,Alarm,1,ENGINE,3,5,2,Pacific Heights,"(37.7857001632116, -122.440081147256)",121920310-E10 -122190285,E25,12072736,Structure Fire,08/06/2012,08/06/2012,08/06/2012 05:43:15 PM,08/06/2012 05:43:18 PM,08/06/2012 05:43:27 PM,08/06/2012 05:45:03 PM,08/06/2012 05:49:36 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 06:35:58 PM,1300 Block of CARROLL AVE,SF,94124,B10,17,6615,3,3,3,false,Fire,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.7222787928885, -122.388729748672)",122190285-E25 -111220071,67,11040232,Medical Incident,05/02/2011,05/01/2011,05/02/2011 07:38:28 AM,05/02/2011 07:40:45 AM,05/02/2011 07:41:28 AM,05/02/2011 07:41:55 AM,05/02/2011 07:47:53 AM,05/02/2011 08:01:45 AM,05/02/2011 08:21:14 AM,Code 3 Transport,05/02/2011 08:48:33 AM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120385154865, -122.40773839531)",111220071-67 -130250388,67,13008800,Medical Incident,01/25/2013,01/25/2013,01/25/2013 10:02:25 PM,01/25/2013 10:03:14 PM,01/25/2013 10:04:30 PM,01/25/2013 10:04:36 PM,01/25/2013 10:06:42 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/25/2013 10:12:16 PM,1200 Block of SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7877066353114, -122.420948027457)",130250388-67 -132110012,54,13071227,Medical Incident,07/30/2013,07/29/2013,07/30/2013 12:38:02 AM,07/30/2013 12:38:37 AM,07/30/2013 12:39:21 AM,07/30/2013 12:39:40 AM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,Other,07/30/2013 12:47:59 AM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",132110012-54 -160750028,AM20,16029534,Medical Incident,03/15/2016,03/14/2016,03/15/2016 12:11:45 AM,03/15/2016 12:14:48 AM,03/15/2016 12:15:05 AM,03/15/2016 12:15:47 AM,03/15/2016 12:21:19 AM,03/15/2016 12:31:39 AM,03/15/2016 12:43:15 AM,Code 2 Transport,03/15/2016 01:10:43 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160750028-AM20 -140260252,RC1,14008971,Traffic Collision,01/26/2014,01/26/2014,01/26/2014 05:28:04 PM,01/26/2014 05:28:48 PM,01/26/2014 05:36:27 PM,01/26/2014 05:36:27 PM,01/26/2014 05:36:27 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/26/2014 06:21:04 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",140260252-RC1 -160090322,AM24,16003514,Medical Incident,01/09/2016,01/08/2016,01/09/2016 02:32:00 AM,01/09/2016 02:32:44 AM,01/09/2016 02:33:09 AM,01/09/2016 02:33:43 AM,01/09/2016 02:37:56 AM,01/09/2016 02:47:07 AM,01/09/2016 03:32:35 AM,Code 2 Transport,01/09/2016 03:41:06 AM,2400 Block of HARRISON ST,San Francisco,94110,B06,7,545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7582246777645, -122.412493470285)",160090322-AM24 -120630172,E41,12020737,Medical Incident,03/03/2012,03/03/2012,03/03/2012 11:19:16 AM,03/03/2012 11:19:43 AM,03/03/2012 11:20:26 AM,03/03/2012 11:21:14 AM,03/03/2012 11:24:17 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 11:39:34 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",120630172-E41 -130570300,AM10,13019270,Medical Incident,02/26/2013,02/26/2013,02/26/2013 09:18:47 PM,02/26/2013 09:20:24 PM,02/26/2013 09:20:57 PM,02/26/2013 09:21:46 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 09:28:11 PM,ARLINGTON ST/ROANOKE ST,SF,94131,B06,26,8127,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Glen Park,"(37.7350274204292, -122.429698639928)",130570300-AM10 -160561548,65,16022354,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:34:02 AM,02/25/2016 11:35:36 AM,02/25/2016 11:36:21 AM,02/25/2016 11:36:58 AM,02/25/2016 11:41:12 AM,02/25/2016 12:16:05 PM,02/25/2016 12:30:28 PM,Code 2 Transport,02/25/2016 01:18:19 PM,600 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",160561548-65 -110710039,RC1,11023240,Medical Incident,03/12/2011,03/11/2011,03/12/2011 02:04:14 AM,03/12/2011 02:05:16 AM,03/12/2011 02:05:29 AM,03/12/2011 02:07:42 AM,04/25/2016 02:05:40 PM,04/25/2016 02:05:40 PM,04/25/2016 02:05:40 PM,Other,03/12/2011 02:10:47 AM,300 Block of ELSIE ST,SF,94110,B06,32,5652,E,E,3,true,,1,RESCUE CAPTAIN,3,6,9,Bernal Heights,"(37.7385960565627, -122.420200231971)",110710039-RC1 -122020208,85,12067130,Medical Incident,07/20/2012,07/20/2012,07/20/2012 02:08:05 PM,07/20/2012 02:08:47 PM,07/20/2012 02:09:01 PM,07/20/2012 02:09:14 PM,07/20/2012 02:20:51 PM,07/20/2012 02:31:16 PM,07/20/2012 02:48:41 PM,Code 2 Transport,07/20/2012 03:10:37 PM,1500 Block of QUINT ST,SF,94124,B10,42,6444,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7368123534545, -122.396742313882)",122020208-85 -102260318,82,10071267,Medical Incident,08/14/2010,08/14/2010,08/14/2010 09:15:16 PM,08/14/2010 09:15:30 PM,08/14/2010 09:16:20 PM,08/14/2010 09:16:41 PM,08/14/2010 09:19:48 PM,08/14/2010 09:34:54 PM,08/14/2010 09:49:46 PM,Code 2 Transport,08/14/2010 10:17:12 PM,CALIFORNIA ST/6TH AV,SF,94118,B07,31,7125,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7849939711361, -122.464572158227)",102260318-82 -140040189,T10,14001450,Medical Incident,01/04/2014,01/04/2014,01/04/2014 01:03:46 PM,01/04/2014 01:04:09 PM,01/04/2014 01:10:17 PM,01/04/2014 01:10:17 PM,01/04/2014 01:10:17 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,Other,01/04/2014 01:22:58 PM,CLEMENT ST/18TH AV,SF,94121,B07,31,7162,,3,3,false,Potentially Life-Threatening,1,TRUCK,2,7,1,Outer Richmond,"(37.7823605680596, -122.477374310784)",140040189-T10 -140270362,55,14009360,Medical Incident,01/27/2014,01/27/2014,01/27/2014 10:30:56 PM,01/27/2014 10:31:54 PM,01/27/2014 10:33:41 PM,01/27/2014 10:33:41 PM,01/27/2014 10:37:20 PM,01/27/2014 10:48:28 PM,01/27/2014 10:52:38 PM,Code 2 Transport,01/27/2014 11:19:07 PM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",140270362-55 -131730367,E36,13058874,Medical Incident,06/22/2013,06/22/2013,06/22/2013 10:51:22 PM,06/22/2013 10:53:13 PM,06/22/2013 10:53:34 PM,06/22/2013 10:54:57 PM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Other,06/22/2013 10:57:09 PM,1700 Block of MISSION ST,SF,94103,B02,36,5124,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7695749975007, -122.420224560888)",131730367-E36 -121500094,E08,12049674,Traffic Collision,05/29/2012,05/29/2012,05/29/2012 08:52:48 AM,05/29/2012 08:53:44 AM,05/29/2012 08:54:46 AM,05/29/2012 08:56:50 AM,05/29/2012 09:01:26 AM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Patient Declined Transport,05/29/2012 09:11:58 AM,3RD ST/TERRY A FRANCOIS BL,SF,94158,B03,8,2171,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763001444296, -122.390025041862)",121500094-E08 -160350870,54,16013727,Medical Incident,02/04/2016,02/04/2016,02/04/2016 08:47:07 AM,02/04/2016 08:48:52 AM,02/04/2016 08:49:03 AM,02/04/2016 08:49:14 AM,02/04/2016 08:54:58 AM,02/04/2016 09:09:18 AM,02/04/2016 09:17:44 AM,Code 2 Transport,02/04/2016 09:39:25 AM,HYDE ST/EDDY ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",160350870-54 -112630114,E01,11086772,Medical Incident,09/20/2011,09/20/2011,09/20/2011 09:35:43 AM,09/20/2011 09:36:53 AM,09/20/2011 09:37:11 AM,09/20/2011 09:37:29 AM,09/20/2011 09:40:50 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/20/2011 09:47:47 AM,600 Block of NATOMA ST,SF,94103,B03,1,2314,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",112630114-E01 -160323358,64,16012746,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:37:25 PM,02/01/2016 08:39:24 PM,02/01/2016 08:39:37 PM,02/01/2016 08:39:46 PM,02/01/2016 08:43:51 PM,02/01/2016 09:04:50 PM,02/01/2016 09:11:04 PM,Code 2 Transport,02/01/2016 09:47:09 PM,600 Block of SUTTER ST,San Francisco,94108,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",160323358-64 -110920253,96,11030594,Medical Incident,04/02/2011,04/02/2011,04/02/2011 05:08:24 PM,04/02/2011 05:08:51 PM,04/02/2011 05:09:16 PM,04/02/2011 05:09:32 PM,04/02/2011 05:11:48 PM,04/02/2011 05:25:30 PM,04/02/2011 05:44:48 PM,Code 2 Transport,04/02/2011 06:12:13 PM,600 Block of DETROIT ST,SF,94127,B09,26,8216,3,3,3,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7327169390031, -122.44438653071)",110920253-96 -122180280,E01,12072399,Medical Incident,08/05/2012,08/05/2012,08/05/2012 05:18:10 PM,08/05/2012 05:20:21 PM,08/05/2012 05:20:30 PM,08/05/2012 05:20:41 PM,08/05/2012 05:23:29 PM,08/05/2012 05:53:44 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 06:04:05 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",122180280-E01 -130580415,RA48,13019648,Medical Incident,02/27/2013,02/27/2013,02/27/2013 11:15:26 PM,02/27/2013 11:15:51 PM,02/27/2013 11:16:20 PM,04/25/2016 01:54:05 PM,02/27/2013 11:21:33 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,02/27/2013 11:44:50 PM,1400 Block of STURGEON ST,TI,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8263703736705, -122.375421941102)",130580415-RA48 -123590054,B02,12120068,Alarms,12/24/2012,12/23/2012,12/24/2012 05:10:25 AM,12/24/2012 05:12:11 AM,12/24/2012 05:12:25 AM,12/24/2012 05:14:18 AM,12/24/2012 05:16:43 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 05:25:50 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",123590054-B02 -160733014,65,16029130,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:12:04 PM,03/13/2016 10:12:34 PM,03/13/2016 10:14:46 PM,03/13/2016 10:14:53 PM,03/13/2016 10:24:59 PM,03/13/2016 10:37:01 PM,03/13/2016 10:55:00 PM,Code 2 Transport,03/13/2016 11:27:12 PM,1300 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7221736000048, -122.391637312216)",160733014-65 -120950084,E44,12031389,Medical Incident,04/04/2012,04/04/2012,04/04/2012 09:13:32 AM,04/04/2012 09:14:05 AM,04/04/2012 09:14:17 AM,04/04/2012 09:21:50 AM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 09:23:46 AM,0 Block of DUKES CT,SF,94124,B10,17,6517,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.736996286224, -122.3867841243)",120950084-E44 -140260170,T13,14008900,Alarms,01/26/2014,01/26/2014,01/26/2014 01:37:22 PM,01/26/2014 01:38:34 PM,01/26/2014 01:38:41 PM,01/26/2014 01:40:54 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/26/2014 01:43:35 PM,300 Block of MAIN ST,SF,94105,B03,35,2117,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",140260170-T13 -133340270,82,13113320,Medical Incident,11/30/2013,11/30/2013,11/30/2013 05:26:33 PM,11/30/2013 05:27:47 PM,11/30/2013 05:28:49 PM,11/30/2013 05:28:58 PM,11/30/2013 05:41:39 PM,11/30/2013 05:49:48 PM,11/30/2013 06:10:51 PM,Code 2 Transport,11/30/2013 06:29:26 PM,LINCOLN WY/GREAT HY,SF,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",133340270-82 -160170404,AM20,16006683,Medical Incident,01/17/2016,01/16/2016,01/17/2016 02:58:43 AM,01/17/2016 03:00:11 AM,01/17/2016 03:01:34 AM,01/17/2016 03:02:25 AM,01/17/2016 03:03:02 AM,01/17/2016 03:25:16 AM,01/17/2016 03:29:40 AM,Code 2 Transport,01/17/2016 03:51:17 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160170404-AM20 -112400140,E28,11079166,Medical Incident,08/28/2011,08/28/2011,08/28/2011 10:15:44 AM,08/28/2011 10:16:32 AM,08/28/2011 10:17:38 AM,04/25/2016 02:02:57 PM,08/28/2011 10:19:55 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 10:30:15 AM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",112400140-E28 -122640129,E43,12087141,Structure Fire,09/20/2012,09/20/2012,09/20/2012 10:42:09 AM,09/20/2012 10:42:10 AM,09/20/2012 10:43:05 AM,09/20/2012 10:45:29 AM,09/20/2012 10:47:20 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 10:55:32 AM,1600 Block of SUNNYDALE AVE,SF,94134,B09,43,623,3,3,3,false,Alarm,1,ENGINE,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",122640129-E43 -130400223,E07,13013698,Medical Incident,02/09/2013,02/09/2013,02/09/2013 02:39:31 PM,02/09/2013 02:40:36 PM,02/09/2013 02:40:48 PM,02/09/2013 02:42:04 PM,02/09/2013 02:44:45 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,No Merit,02/09/2013 02:50:48 PM,0 Block of RONDEL PL,SF,94103,B02,7,5236,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643357809244, -122.421249543257)",130400223-E07 -160824107,55,16032786,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:23:06 PM,03/22/2016 11:23:06 PM,03/22/2016 11:31:27 PM,03/22/2016 11:31:44 PM,03/22/2016 11:38:03 PM,03/22/2016 11:46:44 PM,03/22/2016 11:59:51 PM,Code 2 Transport,03/23/2016 12:29:56 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160824107-55 -131680135,E03,13057000,Medical Incident,06/17/2013,06/17/2013,06/17/2013 11:16:38 AM,06/17/2013 11:18:16 AM,06/17/2013 11:19:01 AM,06/17/2013 11:19:28 AM,06/17/2013 11:22:45 AM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/17/2013 11:28:21 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",131680135-E03 -111360077,E36,11045197,Medical Incident,05/16/2011,05/16/2011,05/16/2011 08:09:22 AM,05/16/2011 08:10:44 AM,05/16/2011 08:11:12 AM,05/16/2011 08:12:20 AM,05/16/2011 08:14:40 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 08:30:10 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",111360077-E36 -160753639,KM03,16029888,Medical Incident,03/15/2016,03/15/2016,03/15/2016 08:56:04 PM,03/15/2016 08:58:58 PM,03/15/2016 09:00:10 PM,03/15/2016 09:02:15 PM,03/15/2016 09:11:22 PM,03/15/2016 09:21:06 PM,03/15/2016 09:51:52 PM,Code 2 Transport,03/15/2016 10:08:38 PM,600 Block of GREEN ST,San Francisco,94133,B01,2,1352,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7994506999766, -122.409839232069)",160753639-KM03 -160433777,AM16,16017494,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:23:14 PM,02/12/2016 10:23:14 PM,02/12/2016 10:23:44 PM,02/12/2016 10:28:51 PM,02/12/2016 10:40:38 PM,02/12/2016 10:40:40 PM,02/12/2016 11:28:58 PM,Code 2 Transport,02/13/2016 12:06:03 AM,700 Block of MADRID ST,San Francisco,94112,B09,43,6135,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7177587273743, -122.435803168491)",160433777-AM16 -122800034,E03,12092459,Medical Incident,10/06/2012,10/05/2012,10/06/2012 02:37:40 AM,10/06/2012 02:40:15 AM,10/06/2012 02:40:36 AM,10/06/2012 02:43:37 AM,10/06/2012 02:46:16 AM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,Other,10/06/2012 02:53:51 AM,300 Block of LEAVENWORTH ST,SF,94109,B04,3,1545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",122800034-E03 -123420291,E31,12114236,Alarms,12/07/2012,12/07/2012,12/07/2012 02:34:30 PM,12/07/2012 02:35:37 PM,12/07/2012 02:35:54 PM,12/07/2012 02:37:50 PM,12/07/2012 02:38:52 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 02:51:01 PM,400 Block of 18TH AVE,SF,94121,B07,31,7161,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",123420291-E31 -130390189,T08,13013307,Medical Incident,02/08/2013,02/08/2013,02/08/2013 12:07:10 PM,02/08/2013 12:07:10 PM,02/08/2013 12:07:31 PM,02/08/2013 12:08:32 PM,02/08/2013 12:11:47 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,No Merit,02/08/2013 12:16:45 PM,400 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,954,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,3,6,Mission Bay,"(37.7717396202959, -122.386663865791)",130390189-T08 -130760071,E14,13025293,Medical Incident,03/17/2013,03/16/2013,03/17/2013 04:37:08 AM,03/17/2013 04:38:27 AM,03/17/2013 04:38:49 AM,03/17/2013 04:40:42 AM,03/17/2013 04:42:11 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 04:47:44 AM,300 Block of 21ST AVE,SF,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7812431352608, -122.480589412063)",130760071-E14 -103500043,73,10112135,Medical Incident,12/16/2010,12/15/2010,12/16/2010 04:47:14 AM,12/16/2010 04:49:40 AM,12/16/2010 04:49:55 AM,12/16/2010 04:50:29 AM,12/16/2010 05:00:31 AM,12/16/2010 05:22:09 AM,12/16/2010 05:25:12 AM,Code 2 Transport,12/16/2010 05:41:46 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,2,2,2,true,,1,MEDIC,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",103500043-73 -111990149,E03,11065607,Medical Incident,07/18/2011,07/18/2011,07/18/2011 11:42:18 AM,07/18/2011 11:43:19 AM,07/18/2011 11:43:28 AM,07/18/2011 11:43:42 AM,07/18/2011 11:47:40 AM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/18/2011 11:47:47 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",111990149-E03 -123100239,83,12103167,Medical Incident,11/05/2012,11/05/2012,11/05/2012 03:17:57 PM,11/05/2012 03:19:23 PM,11/05/2012 03:19:31 PM,11/05/2012 03:19:53 PM,11/05/2012 03:25:36 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Patient Declined Transport,11/05/2012 03:40:18 PM,100 Block of BERTHA LN,SF,94124,B10,17,6631,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",123100239-83 -160521930,AM02,16020841,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:22:52 PM,02/21/2016 02:24:11 PM,02/21/2016 02:24:22 PM,02/21/2016 02:24:46 PM,02/21/2016 02:28:20 PM,02/21/2016 02:51:07 PM,02/21/2016 03:47:06 PM,Code 2 Transport,02/21/2016 03:47:09 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160521930-AM02 -110480019,54,11015738,Medical Incident,02/17/2011,02/16/2011,02/17/2011 02:09:57 AM,02/17/2011 02:11:34 AM,02/17/2011 02:11:49 AM,02/17/2011 02:11:59 AM,02/17/2011 02:29:43 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,No Merit,02/17/2011 02:37:58 AM,400 Block of EDINBURGH ST,SF,94112,B09,43,6141,1,1,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7220390695528, -122.431478554426)",110480019-54 -102710327,T15,10086112,Traffic Collision,09/28/2010,09/28/2010,09/28/2010 05:43:36 PM,09/28/2010 05:45:47 PM,09/28/2010 05:48:50 PM,09/28/2010 05:49:24 PM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 05:53:00 PM,200 Block of GENEVA AVE,SF,94112,B09,15,8313,3,3,3,false,,1,TRUCK,4,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",102710327-T15 -160250766,AM06,16009826,Medical Incident,01/25/2016,01/25/2016,01/25/2016 08:02:16 AM,01/25/2016 08:08:13 AM,01/25/2016 08:08:41 AM,01/25/2016 08:10:06 AM,01/25/2016 08:30:03 AM,01/25/2016 08:32:45 AM,01/25/2016 08:50:27 AM,Code 2 Transport,01/25/2016 09:21:20 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7812234542945, -122.408928070797)",160250766-AM06 -160662604,53,16026481,Medical Incident,03/06/2016,03/06/2016,03/06/2016 06:10:23 PM,03/06/2016 06:10:52 PM,03/06/2016 06:20:53 PM,03/06/2016 06:20:53 PM,03/06/2016 06:27:11 PM,03/06/2016 06:48:20 PM,03/06/2016 06:52:00 PM,Code 2 Transport,03/06/2016 07:30:08 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,E,3,true,Potentially Life-Threatening,1,MEDIC,4,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160662604-53 -102590256,B09,10081873,Alarms,09/16/2010,09/16/2010,09/16/2010 02:58:53 PM,09/16/2010 03:00:24 PM,09/16/2010 03:03:58 PM,09/16/2010 03:05:44 PM,09/16/2010 03:11:28 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Fire,09/16/2010 03:14:54 PM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,false,,1,CHIEF,2,9,10,Visitacion Valley,"(37.7101556026027, -122.41260428896)",102590256-B09 -112550185,E02,11084124,Medical Incident,09/12/2011,09/12/2011,09/12/2011 01:20:56 PM,09/12/2011 01:22:29 PM,09/12/2011 01:23:08 PM,09/12/2011 01:24:17 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Unable to Locate,09/12/2011 01:27:15 PM,MASON ST/PACIFIC AV,SF,94133,B01,2,1416,2,2,2,true,,1,ENGINE,2,1,3,Chinatown,"(37.7962907638042, -122.411718940358)",112550185-E02 -111370042,KM14,11045474,Medical Incident,05/17/2011,05/16/2011,05/17/2011 04:46:53 AM,05/17/2011 04:49:55 AM,05/17/2011 04:50:18 AM,05/17/2011 04:52:32 AM,05/17/2011 04:57:38 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 05:05:08 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,PRIVATE,4,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",111370042-KM14 -103130213,KM15,10100367,Medical Incident,11/09/2010,11/09/2010,11/09/2010 01:08:27 PM,11/09/2010 01:10:41 PM,11/09/2010 01:11:02 PM,11/09/2010 01:12:02 PM,11/09/2010 01:27:02 PM,11/09/2010 01:48:18 PM,11/09/2010 01:58:27 PM,Code 2 Transport,11/09/2010 02:12:41 PM,600 Block of WALLER ST,SF,94117,B05,6,3635,1,1,2,false,,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7707548733663, -122.433986798181)",103130213-KM15 -111990353,58,11065791,Medical Incident,07/18/2011,07/18/2011,07/18/2011 10:23:29 PM,07/18/2011 10:24:25 PM,07/18/2011 10:25:06 PM,07/18/2011 10:25:15 PM,07/18/2011 10:33:12 PM,07/18/2011 10:44:20 PM,07/18/2011 11:02:36 PM,Code 2 Transport,07/18/2011 11:24:53 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,1,1,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",111990353-58 -132920091,E43,13099294,Medical Incident,10/19/2013,10/19/2013,10/19/2013 08:22:52 AM,10/19/2013 08:23:23 AM,10/19/2013 08:23:38 AM,10/19/2013 08:24:51 AM,10/19/2013 08:27:47 AM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 08:39:10 AM,1800 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",132920091-E43 -103650362,E15,10117256,Medical Incident,12/31/2010,12/31/2010,12/31/2010 11:04:05 PM,12/31/2010 11:04:46 PM,12/31/2010 11:05:03 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 11:06:36 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,2,2,true,,1,ENGINE,2,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",103650362-E15 -113490144,KM15,11115770,Medical Incident,12/15/2011,12/15/2011,12/15/2011 12:24:17 PM,12/15/2011 12:25:09 PM,12/15/2011 12:25:38 PM,12/15/2011 12:26:13 PM,12/15/2011 12:29:34 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,04/25/2016 02:01:08 PM,3200 Block of VAN NESS AVE,SF,94109,B04,28,3143,3,3,3,false,,1,PRIVATE,2,1,2,Russian Hill,"(37.805550799113, -122.425219186379)",113490144-KM15 -160380949,63,16015123,Medical Incident,02/07/2016,02/06/2016,02/07/2016 07:57:25 AM,02/07/2016 07:58:55 AM,02/07/2016 08:00:08 AM,02/07/2016 08:00:20 AM,02/07/2016 08:09:57 AM,02/07/2016 08:15:11 AM,02/07/2016 08:31:13 AM,Code 2 Transport,02/07/2016 09:00:27 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",160380949-63 -120790056,E01,12026135,Medical Incident,03/19/2012,03/18/2012,03/19/2012 07:46:33 AM,03/19/2012 07:48:04 AM,03/19/2012 07:48:27 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 07:49:30 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Non Life-threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",120790056-E01 -122350053,B08,12077771,Smoke Investigation (Outside),08/22/2012,08/21/2012,08/22/2012 06:43:41 AM,08/22/2012 06:47:09 AM,08/22/2012 06:47:16 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Other,08/22/2012 06:49:43 AM,LINCOLN WY/19TH AV,SF,94122,B08,22,7425,3,3,3,false,Alarm,1,CHIEF,3,7,4,Sunset/Parkside,"(37.7654479866215, -122.477308393483)",122350053-B08 -140010148,KM15,14000121,Medical Incident,01/01/2014,12/31/2013,01/01/2014 02:03:16 AM,01/01/2014 02:04:14 AM,01/01/2014 02:06:59 AM,01/01/2014 02:06:59 AM,01/01/2014 02:06:59 AM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 02:36:35 AM,500 Block of MARKET ST,SF,94104,B03,1,2109,,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",140010148-KM15 -111810058,E10,11059638,Electrical Hazard,06/30/2011,06/29/2011,06/30/2011 06:36:52 AM,06/30/2011 06:38:38 AM,06/30/2011 06:38:51 AM,06/30/2011 06:40:01 AM,06/30/2011 06:42:47 AM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 06:47:03 AM,1300 Block of BAKER ST,SF,94115,B05,10,4261,3,3,3,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7833830060402, -122.442959503912)",111810058-E10 -120320262,B02,12010645,Structure Fire,02/01/2012,02/01/2012,02/01/2012 05:13:55 PM,02/01/2012 05:14:04 PM,02/01/2012 05:14:23 PM,02/01/2012 05:16:04 PM,02/01/2012 05:23:00 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 05:56:34 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Fire,1,CHIEF,9,1,6,Tenderloin,"(37.7858955061569, -122.412569415086)",120320262-B02 -131850275,B06,13063130,Alarms,07/04/2013,07/04/2013,07/04/2013 06:15:52 PM,07/04/2013 06:16:56 PM,07/04/2013 06:17:10 PM,07/04/2013 06:18:48 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 06:21:53 PM,700 Block of ELIZABETH ST,SF,94114,B06,24,5521,3,3,3,false,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7518395118288, -122.437458654662)",131850275-B06 -123240151,E16,12107694,Medical Incident,11/19/2012,11/19/2012,11/19/2012 10:59:49 AM,11/19/2012 11:02:18 AM,11/19/2012 11:02:51 AM,11/19/2012 11:05:55 AM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/19/2012 11:10:03 AM,3100 Block of STEINER ST,SF,94123,B04,16,3611,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,2,Marina,"(37.7985185653418, -122.437399034508)",123240151-E16 -160431110,KM09,16017225,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:08:56 AM,02/12/2016 10:08:56 AM,02/12/2016 10:09:20 AM,02/12/2016 10:09:54 AM,02/12/2016 10:13:40 AM,02/12/2016 10:22:21 AM,02/12/2016 10:46:53 AM,Code 3 Transport,02/12/2016 11:21:11 AM,JESSIE ST/6TH ST,San Francisco,94103,B03,1,2251,A,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7813981325639, -122.409245443953)",160431110-KM09 -123010034,RS1,12099662,Medical Incident,10/27/2012,10/26/2012,10/27/2012 01:42:24 AM,10/27/2012 01:44:15 AM,10/27/2012 01:44:55 AM,10/27/2012 01:47:06 AM,10/27/2012 01:49:42 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 01:57:09 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",123010034-RS1 -160800810,71,16031730,Medical Incident,03/20/2016,03/19/2016,03/20/2016 07:40:32 AM,03/20/2016 07:43:03 AM,03/20/2016 07:43:18 AM,03/20/2016 07:43:31 AM,03/20/2016 08:02:24 AM,03/20/2016 08:23:37 AM,03/20/2016 08:32:36 AM,Code 2 Transport,03/20/2016 09:05:04 AM,1600 Block of GREENWICH ST,San Francisco,94123,B04,16,3234,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7999975397541, -122.427205502151)",160800810-71 -140990083,94,14033351,Medical Incident,04/09/2014,04/09/2014,04/09/2014 08:00:30 AM,04/09/2014 08:01:34 AM,04/09/2014 08:01:46 AM,04/09/2014 08:01:59 AM,04/09/2014 08:27:09 AM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Against Medical Advice,04/09/2014 09:25:15 AM,1600 Block of 19TH AVE,SAN FRANCISCO,94122,B08,40,7422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",140990083-94 -160030624,AM04,16001075,Medical Incident,01/03/2016,01/02/2016,01/03/2016 06:09:52 AM,01/03/2016 06:11:20 AM,01/03/2016 06:11:49 AM,01/03/2016 06:12:45 AM,01/03/2016 06:17:32 AM,01/03/2016 06:31:22 AM,01/03/2016 06:45:18 AM,Code 2 Transport,01/03/2016 07:10:28 AM,1000 Block of SHOTWELL ST,San Francisco,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7516425997951, -122.41502434397)",160030624-AM04 -132710344,65,13092216,Medical Incident,09/28/2013,09/28/2013,09/28/2013 07:40:50 PM,09/28/2013 07:42:56 PM,09/28/2013 07:43:46 PM,09/28/2013 07:43:57 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,Other,09/28/2013 07:59:13 PM,300 Block of SUSSEX ST,SF,94131,B06,26,8175,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,8,Glen Park,"(37.737052558351, -122.438387531801)",132710344-65 -110740335,AP,11024464,Other,03/15/2011,03/15/2011,03/15/2011 07:08:02 PM,03/15/2011 07:08:03 PM,03/15/2011 07:08:03 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Fire,03/15/2011 07:08:19 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110740335-AP -103340207,E32,10106895,Administrative,11/30/2010,11/30/2010,11/30/2010 02:14:44 PM,11/30/2010 02:14:50 PM,11/30/2010 02:15:02 PM,11/30/2010 02:15:17 PM,11/30/2010 02:15:21 PM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Other,11/30/2010 02:15:24 PM,100 Block of PARK ST,SF,94110,B06,32,5646,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7365449385604, -122.422323583735)",103340207-E32 -160871879,79,16034585,Medical Incident,03/27/2016,03/27/2016,03/27/2016 01:35:08 PM,03/27/2016 01:37:23 PM,03/27/2016 01:37:36 PM,03/27/2016 01:37:52 PM,03/27/2016 01:58:58 PM,03/27/2016 02:07:35 PM,03/27/2016 02:22:37 PM,Code 2 Transport,03/27/2016 02:53:17 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",160871879-79 -133510321,75,13119300,Medical Incident,12/17/2013,12/17/2013,12/17/2013 05:07:44 PM,12/17/2013 05:09:07 PM,12/17/2013 05:10:26 PM,12/17/2013 05:11:36 PM,12/17/2013 05:17:23 PM,12/17/2013 05:26:34 PM,12/17/2013 05:41:42 PM,Code 2 Transport,12/17/2013 06:05:03 PM,500 Block of 42ND AVE,SF,94121,B07,34,7264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7782999043081, -122.502807516341)",133510321-75 -103530086,67,10113238,Medical Incident,12/19/2010,12/18/2010,12/19/2010 03:44:46 AM,12/19/2010 03:46:59 AM,12/19/2010 03:47:32 AM,12/19/2010 03:47:37 AM,12/19/2010 03:52:10 AM,12/19/2010 04:17:10 AM,12/19/2010 04:31:28 AM,Code 2 Transport,12/19/2010 04:58:35 AM,0 Block of HERMANN ST,SF,94102,B02,36,3416,3,3,3,true,,1,MEDIC,1,2,8,Hayes Valley,"(37.7707101221548, -122.425947237004)",103530086-67 -103410255,KM14,10109170,Medical Incident,12/07/2010,12/07/2010,12/07/2010 03:28:48 PM,12/07/2010 03:28:56 PM,12/07/2010 03:29:31 PM,12/07/2010 03:30:42 PM,12/07/2010 03:46:21 PM,12/07/2010 04:01:18 PM,12/07/2010 04:14:11 PM,Code 2 Transport,12/07/2010 04:49:21 PM,400 Block of 2ND ST,SF,94107,B03,8,2151,2,2,2,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7833293790422, -122.393835181842)",103410255-KM14 -130030089,E19,13000934,Alarms,01/03/2013,01/03/2013,01/03/2013 08:25:51 AM,01/03/2013 08:27:34 AM,01/03/2013 08:27:41 AM,01/03/2013 08:29:35 AM,01/03/2013 08:30:30 AM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 08:45:19 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",130030089-E19 -113430287,E36,11113825,Medical Incident,12/09/2011,12/09/2011,12/09/2011 04:02:48 PM,12/09/2011 04:04:21 PM,12/09/2011 04:04:31 PM,12/09/2011 04:06:35 PM,12/09/2011 04:08:03 PM,04/25/2016 02:01:14 PM,04/25/2016 02:01:14 PM,Other,12/09/2011 04:12:14 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",113430287-E36 -130480215,E33,13016409,Medical Incident,02/17/2013,02/17/2013,02/17/2013 01:45:50 PM,02/17/2013 01:46:32 PM,02/17/2013 01:46:42 PM,02/17/2013 01:47:59 PM,02/17/2013 01:50:01 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 01:56:34 PM,100 Block of CAINE AVE,SF,94112,B09,33,8325,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7157481523614, -122.451744181527)",130480215-E33 -120200349,B06,12006825,Alarms,01/20/2012,01/20/2012,01/20/2012 07:42:07 PM,01/20/2012 07:44:41 PM,01/20/2012 07:47:44 PM,01/20/2012 07:49:21 PM,01/20/2012 07:50:56 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 08:01:39 PM,200 Block of JERSEY ST,SF,94114,B06,11,5537,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7507499563424, -122.430690505695)",120200349-B06 -160601367,78,16023874,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:20:53 AM,02/29/2016 11:21:28 AM,02/29/2016 11:21:42 AM,02/29/2016 11:22:08 AM,02/29/2016 11:52:01 AM,02/29/2016 11:52:04 AM,02/29/2016 11:54:43 AM,Code 2 Transport,02/29/2016 12:38:48 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160601367-78 -160870727,63,16034482,Medical Incident,03/27/2016,03/26/2016,03/27/2016 06:47:06 AM,03/27/2016 06:47:51 AM,03/27/2016 06:48:04 AM,03/27/2016 06:48:15 AM,03/27/2016 06:57:51 AM,03/27/2016 07:04:03 AM,03/27/2016 07:29:01 AM,Code 2 Transport,03/27/2016 08:05:36 AM,100 Block of ALICE B TOKLAS PL,San Francisco,94109,B04,3,3116,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7852785985572, -122.420416785947)",160870727-63 -122130319,RC1,12070811,Medical Incident,07/31/2012,07/31/2012,07/31/2012 07:11:37 PM,07/31/2012 07:13:50 PM,07/31/2012 07:14:05 PM,07/31/2012 07:15:00 PM,07/31/2012 07:17:26 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Medical Examiner,07/31/2012 07:48:15 PM,1300 Block of BUSH ST,SF,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",122130319-RC1 -160180218,AM22,16007090,Medical Incident,01/18/2016,01/17/2016,01/18/2016 02:23:01 AM,01/18/2016 02:24:01 AM,01/18/2016 02:24:28 AM,01/18/2016 02:25:04 AM,01/18/2016 02:33:35 AM,01/18/2016 02:58:49 AM,01/18/2016 03:19:51 AM,Code 2 Transport,01/18/2016 03:55:56 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160180218-AM22 -130550219,E07,13018593,Alarms,02/24/2013,02/24/2013,02/24/2013 03:24:08 PM,02/24/2013 03:25:09 PM,02/24/2013 03:25:40 PM,02/24/2013 03:26:49 PM,02/24/2013 03:29:06 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Other,02/24/2013 03:43:56 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",130550219-E07 -130890305,E16,13029868,Traffic Collision,03/30/2013,03/30/2013,03/30/2013 07:21:49 PM,03/30/2013 07:23:02 PM,03/30/2013 07:25:01 PM,03/30/2013 07:26:50 PM,03/30/2013 07:31:40 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 07:41:42 PM,LYON ST/GORGAS AV,SF,94123,B04,16,4325,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio,"(37.8003236998029, -122.447613279358)",130890305-E16 -120770336,T11,12025641,Alarms,03/17/2012,03/17/2012,03/17/2012 08:50:27 PM,03/17/2012 08:51:35 PM,03/17/2012 08:51:45 PM,03/17/2012 08:53:06 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/17/2012 08:57:54 PM,2500 Block of DIAMOND ST,SF,94131,B06,26,8147,3,3,3,false,Alarm,1,TRUCK,3,6,8,Glen Park,"(37.7379235425973, -122.43473971073)",120770336-T11 -112670054,E14,11088114,Medical Incident,09/24/2011,09/23/2011,09/24/2011 03:03:00 AM,09/24/2011 03:04:53 AM,09/24/2011 03:05:14 AM,09/24/2011 03:06:40 AM,09/24/2011 03:09:24 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/24/2011 03:10:12 AM,7000 Block of CALIFORNIA ST,SF,94121,B07,14,7246,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7834657394823, -122.492996408284)",112670054-E14 -110700199,E02,11023033,Medical Incident,03/11/2011,03/11/2011,03/11/2011 01:14:46 PM,03/11/2011 01:16:33 PM,03/11/2011 01:16:51 PM,03/11/2011 01:18:16 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/11/2011 01:20:19 PM,TAYLOR ST/SUTTER ST,SF,94102,B01,3,1412,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",110700199-E02 -110050261,KM12,11001699,Medical Incident,01/05/2011,01/05/2011,01/05/2011 02:54:49 PM,01/05/2011 02:55:31 PM,01/05/2011 02:56:21 PM,01/05/2011 02:59:58 PM,01/05/2011 03:08:42 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Patient Declined Transport,01/05/2011 03:28:45 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",110050261-KM12 -112100140,E39,11069296,Alarms,07/29/2011,07/29/2011,07/29/2011 11:53:40 AM,07/29/2011 11:54:30 AM,07/29/2011 11:54:37 AM,07/29/2011 11:55:11 AM,07/29/2011 12:01:23 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 12:12:33 PM,100 Block of OMAR WAY,SF,94127,B09,39,8662,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7392682754414, -122.449999545348)",112100140-E39 -123260227,E05,12108490,Traffic Collision,11/21/2012,11/21/2012,11/21/2012 03:19:29 PM,11/21/2012 03:19:59 PM,11/21/2012 03:20:14 PM,11/21/2012 03:21:04 PM,11/21/2012 03:22:45 PM,04/25/2016 01:55:41 PM,04/25/2016 01:55:41 PM,Other,11/21/2012 03:33:00 PM,OFARRELL ST/FILLMORE ST,SF,94115,B05,5,3536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7832925916533, -122.432706179722)",123260227-E05 -122400352,D3,12079582,Structure Fire,08/27/2012,08/27/2012,08/27/2012 08:44:10 PM,08/27/2012 08:46:12 PM,08/27/2012 08:46:29 PM,08/27/2012 08:47:34 PM,08/27/2012 08:51:56 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Other,08/27/2012 08:55:04 PM,OAKDALE AV/NEWHALL ST,SF,94124,B10,17,6471,3,3,3,false,Fire,1,CHIEF,7,10,10,Bayview Hunters Point,"(37.7356609603453, -122.392213661868)",122400352-D3 -111000060,55,11033112,Medical Incident,04/10/2011,04/09/2011,04/10/2011 04:10:10 AM,04/10/2011 04:10:37 AM,04/10/2011 04:10:57 AM,04/10/2011 04:11:01 AM,04/10/2011 04:25:37 AM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Patient Declined Transport,04/10/2011 04:57:28 AM,900 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",111000060-55 -121090275,E29,12036128,Medical Incident,04/18/2012,04/18/2012,04/18/2012 05:45:31 PM,04/18/2012 05:46:54 PM,04/18/2012 05:47:14 PM,04/18/2012 05:47:52 PM,04/18/2012 05:49:13 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/18/2012 05:53:13 PM,16TH ST/BRYANT ST,SF,94110,B02,29,5241,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",121090275-E29 -110030181,B04,11000971,Structure Fire,01/03/2011,01/03/2011,01/03/2011 12:46:09 PM,01/03/2011 12:46:09 PM,01/03/2011 12:46:30 PM,01/03/2011 12:47:31 PM,01/03/2011 12:48:06 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Fire,01/03/2011 12:53:07 PM,2300 Block of BUCHANAN ST,SF,94115,B04,38,343,3,3,3,false,,1,CHIEF,1,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",110030181-B04 -130100038,E11,13003314,Medical Incident,01/10/2013,01/09/2013,01/10/2013 03:45:01 AM,01/10/2013 03:47:13 AM,01/10/2013 03:47:48 AM,01/10/2013 03:49:04 AM,01/10/2013 03:50:22 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/10/2013 03:59:37 AM,26TH ST/VALENCIA ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7489065309397, -122.420353712148)",130100038-E11 -111440304,57,11047958,Medical Incident,05/24/2011,05/24/2011,05/24/2011 06:58:29 PM,05/24/2011 06:59:56 PM,05/24/2011 07:00:52 PM,04/25/2016 02:04:28 PM,05/24/2011 07:24:48 PM,05/24/2011 07:27:21 PM,05/24/2011 07:35:41 PM,Code 2 Transport,05/24/2011 08:00:48 PM,WEBSTER ST/JACKSON ST,SF,94115,B04,38,3465,3,3,3,true,,1,MEDIC,3,4,2,Pacific Heights,"(37.7926799136599, -122.432917576713)",111440304-57 -130960011,KM15,13032035,Medical Incident,04/06/2013,04/05/2013,04/06/2013 12:23:19 AM,04/06/2013 12:24:55 AM,04/06/2013 12:25:21 AM,04/06/2013 12:25:57 AM,04/06/2013 12:30:28 AM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 12:36:17 AM,2000 Block of MARKET ST,SF,94114,B02,6,5213,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7683148008502, -122.427682264817)",130960011-KM15 -132300295,AM04,13077752,Medical Incident,08/18/2013,08/18/2013,08/18/2013 06:19:22 PM,08/18/2013 06:20:00 PM,08/18/2013 06:21:01 PM,08/18/2013 06:21:56 PM,08/18/2013 06:26:43 PM,08/18/2013 06:42:53 PM,08/18/2013 06:49:37 PM,Code 3 Transport,08/18/2013 07:36:33 PM,200 Block of TEDDY AVE,SF,94134,B09,44,6311,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7149172327739, -122.407517670009)",132300295-AM04 -111520049,E01,11050195,Alarms,06/01/2011,05/31/2011,06/01/2011 07:06:05 AM,06/01/2011 07:06:53 AM,06/01/2011 07:07:22 AM,06/01/2011 07:09:31 AM,06/01/2011 07:11:38 AM,04/25/2016 02:04:22 PM,04/25/2016 02:04:22 PM,Other,06/01/2011 07:21:02 AM,300 Block of STOCKTON ST,SF,94108,B01,1,1324,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",111520049-E01 -160591935,77,16023555,Medical Incident,02/28/2016,02/28/2016,02/28/2016 02:50:12 PM,02/28/2016 02:50:27 PM,02/28/2016 02:50:39 PM,02/28/2016 02:51:59 PM,02/28/2016 02:56:53 PM,02/28/2016 03:13:07 PM,02/28/2016 03:38:43 PM,Code 2 Transport,02/28/2016 04:16:52 PM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160591935-77 -160483085,79,16019446,Medical Incident,02/17/2016,02/17/2016,02/17/2016 05:57:08 PM,02/17/2016 05:57:08 PM,02/17/2016 05:57:43 PM,02/17/2016 05:57:55 PM,02/17/2016 06:14:37 PM,02/17/2016 06:33:58 PM,02/17/2016 06:58:00 PM,Code 2 Transport,02/17/2016 07:15:12 PM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",160483085-79 -160262090,75,16010330,Traffic Collision,01/26/2016,01/26/2016,01/26/2016 02:06:51 PM,01/26/2016 02:06:51 PM,01/26/2016 02:11:48 PM,01/26/2016 02:12:50 PM,01/26/2016 02:15:08 PM,01/26/2016 03:05:42 PM,01/26/2016 03:27:42 PM,Other,01/26/2016 04:25:14 PM,WASHINGTON ST/BATTERY ST,San Francisco,94111,B01,13,1142,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7958750038383, -122.400485537558)",160262090-75 -160730358,61,16028865,Medical Incident,03/13/2016,03/12/2016,03/13/2016 04:13:53 AM,03/13/2016 04:14:35 AM,03/13/2016 04:14:49 AM,03/13/2016 04:14:59 AM,03/13/2016 04:19:20 AM,03/13/2016 04:39:58 AM,03/13/2016 04:51:42 AM,Code 2 Transport,03/13/2016 05:40:51 AM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",160730358-61 -160843807,AM16,16033546,Medical Incident,03/24/2016,03/24/2016,03/24/2016 08:25:01 PM,03/24/2016 08:26:14 PM,03/24/2016 08:26:26 PM,03/24/2016 08:27:08 PM,03/24/2016 08:37:13 PM,03/24/2016 08:49:11 PM,03/24/2016 09:03:45 PM,Code 2 Transport,03/24/2016 09:20:28 PM,1700 Block of SILVER AVE,San Francisco,94124,B10,42,6364,3,3,3,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.733361342902, -122.403884306786)",160843807-AM16 -120690147,81,12022859,Medical Incident,03/09/2012,03/09/2012,03/09/2012 11:48:53 AM,03/09/2012 11:51:20 AM,03/09/2012 11:51:45 AM,03/09/2012 11:51:53 AM,03/09/2012 11:59:36 AM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Patient Declined Transport,03/09/2012 12:47:06 PM,0 Block of MUSIC CONCOURSE DR,SF,94118,B07,22,7744,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",120690147-81 -133470024,RS1,13117615,Structure Fire,12/13/2013,12/12/2013,12/13/2013 02:02:47 AM,12/13/2013 02:03:35 AM,12/13/2013 02:04:04 AM,12/13/2013 02:05:53 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/13/2013 02:10:16 AM,2300 Block of PACIFIC AVE,SF,94115,B04,38,3546,3,3,3,false,Alarm,1,RESCUE SQUAD,10,4,2,Pacific Heights,"(37.7935066493689, -122.433922048128)",133470024-RS1 -113130137,85,11103961,Medical Incident,11/09/2011,11/09/2011,11/09/2011 10:46:29 AM,11/09/2011 10:47:31 AM,11/09/2011 10:47:46 AM,11/09/2011 10:48:26 AM,11/09/2011 10:54:27 AM,11/09/2011 11:30:36 AM,11/09/2011 11:43:12 AM,Code 2 Transport,11/09/2011 12:20:54 PM,1700 Block of GENEVA AVE,SF,94134,B09,43,6245,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7118331290822, -122.427989009711)",113130137-85 -120040368,B06,12001568,Medical Incident,01/04/2012,01/04/2012,01/04/2012 11:18:48 PM,01/04/2012 11:19:43 PM,01/04/2012 11:20:02 PM,04/25/2016 02:00:47 PM,01/04/2012 11:23:30 PM,04/25/2016 02:00:47 PM,04/25/2016 02:00:47 PM,No Merit,01/04/2012 11:24:15 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,E,E,3,false,Potentially Life-Threatening,1,CHIEF,1,6,9,Mission,"(37.7490412884368, -122.418135251703)",120040368-B06 -160521121,89,16020758,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:09:16 AM,02/21/2016 10:10:38 AM,02/21/2016 10:10:49 AM,02/21/2016 10:11:06 AM,02/21/2016 10:15:16 AM,02/21/2016 10:39:44 AM,02/21/2016 10:50:58 AM,Code 2 Transport,02/21/2016 11:28:41 AM,0 Block of ROCKAWAY AVE,San Francisco,94127,B08,39,8671,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7433357896756, -122.456417640323)",160521121-89 -133460245,E03,13117439,Medical Incident,12/12/2013,12/12/2013,12/12/2013 03:08:47 PM,12/12/2013 03:10:19 PM,12/12/2013 03:10:39 PM,12/12/2013 03:10:53 PM,12/12/2013 03:14:22 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 03:21:06 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",133460245-E03 -140130291,D2,14004549,Structure Fire,01/13/2014,01/13/2014,01/13/2014 05:52:08 PM,01/13/2014 05:53:09 PM,01/13/2014 05:57:14 PM,01/13/2014 05:57:27 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/13/2014 06:00:03 PM,1600 Block of DIVISADERO ST,SF,94115,B05,10,4155,,3,3,false,Alarm,1,CHIEF,7,5,5,Japantown,"(37.7847687027421, -122.439893519511)",140130291-D2 -160152347,89,16006037,Traffic Collision,01/15/2016,01/15/2016,01/15/2016 03:16:12 PM,01/15/2016 03:17:19 PM,01/15/2016 03:17:56 PM,01/15/2016 03:18:19 PM,01/15/2016 03:29:34 PM,01/15/2016 03:39:13 PM,01/15/2016 03:56:22 PM,Code 2 Transport,01/15/2016 05:05:02 PM,100 Block of PAUL AVE,San Francisco,94124,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.722697633179, -122.397167021381)",160152347-89 -132110043,E32,13071257,Alarms,07/30/2013,07/29/2013,07/30/2013 05:10:12 AM,07/30/2013 05:11:40 AM,07/30/2013 05:11:49 AM,07/30/2013 05:13:14 AM,07/30/2013 05:15:35 AM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,Other,07/30/2013 05:19:06 AM,3300 Block of MISSION ST,SF,94110,B06,32,5625,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7429468259451, -122.421521421409)",132110043-E32 -131510198,E08,13051133,Medical Incident,05/31/2013,05/31/2013,05/31/2013 01:25:26 PM,05/31/2013 01:26:15 PM,05/31/2013 01:26:30 PM,05/31/2013 01:27:42 PM,05/31/2013 01:30:13 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 01:43:16 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",131510198-E08 -160623974,88,16024874,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:38:41 PM,03/02/2016 09:38:41 PM,03/02/2016 09:39:37 PM,03/02/2016 09:40:00 PM,03/02/2016 09:49:15 PM,03/02/2016 09:55:30 PM,03/02/2016 10:04:14 PM,Code 2 Transport,03/02/2016 10:28:26 PM,1200 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7884521578132, -122.420326993863)",160623974-88 -130260020,E07,13008846,Medical Incident,01/26/2013,01/25/2013,01/26/2013 01:08:22 AM,01/26/2013 01:08:54 AM,01/26/2013 01:09:12 AM,01/26/2013 01:10:36 AM,01/26/2013 01:12:49 AM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/26/2013 01:21:59 AM,3200 Block of 22ND ST,SF,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7553465863701, -122.419297189961)",130260020-E07 -120890330,94,12029595,Medical Incident,03/29/2012,03/29/2012,03/29/2012 09:29:21 PM,03/29/2012 09:33:30 PM,03/29/2012 09:33:37 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Other,04/25/2016 01:59:26 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,9,Mission,"(37.7642361189447, -122.419659842408)",120890330-94 -160121724,87,16004778,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:50:21 PM,01/12/2016 12:51:15 PM,01/12/2016 12:52:05 PM,01/12/2016 12:52:14 PM,01/12/2016 01:05:02 PM,01/12/2016 01:26:57 PM,01/12/2016 01:36:54 PM,Code 2 Transport,01/12/2016 02:13:12 PM,600 Block of POWELL ST,San Francisco,94108,B01,2,1361,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7904949923756, -122.408784626776)",160121724-87 -111480268,RS1,11049164,Medical Incident,05/28/2011,05/28/2011,05/28/2011 07:03:28 PM,05/28/2011 07:03:57 PM,05/28/2011 07:06:46 PM,04/25/2016 02:04:24 PM,05/28/2011 07:10:42 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/28/2011 07:12:05 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",111480268-RS1 -133310093,E44,13112295,Medical Incident,11/27/2013,11/27/2013,11/27/2013 08:55:45 AM,11/27/2013 08:57:03 AM,11/27/2013 08:57:17 AM,11/27/2013 08:59:44 AM,11/27/2013 09:03:23 AM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/27/2013 09:08:09 AM,200 Block of ARLETA AVE,SF,94134,B09,44,6312,3,3,3,true,Non Life-threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7141378430387, -122.40785339643)",133310093-E44 -140530328,82,14018081,,02/22/2014,02/22/2014,02/22/2014 08:58:00 PM,02/22/2014 08:59:00 PM,02/22/2014 08:59:00 PM,02/22/2014 09:00:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,SFPD,02/22/2014 09:05:00 PM,3800 Block of 3RD ST,SF,94124,B10,25,6457,2,2,2,false,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7422681434531, -122.387936728644)",140530328-82 -160502862,AM16,16020193,Medical Incident,02/19/2016,02/19/2016,02/19/2016 05:51:13 PM,02/19/2016 05:53:58 PM,02/19/2016 05:54:05 PM,02/19/2016 05:54:34 PM,02/19/2016 06:18:19 PM,02/19/2016 06:18:24 PM,02/19/2016 06:41:20 PM,Code 2 Transport,02/19/2016 06:56:37 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",160502862-AM16 -123010372,B02,12099963,HazMat,10/27/2012,10/27/2012,10/27/2012 10:33:05 PM,10/27/2012 10:35:14 PM,10/27/2012 10:35:39 PM,04/25/2016 01:56:05 PM,10/27/2012 11:26:43 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/27/2012 11:49:34 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,CHIEF,1,None,None,None,"(37.6168823239251, -122.384094238098)",123010372-B02 -160751257,KM13,16029665,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:47:09 AM,03/15/2016 10:48:50 AM,03/15/2016 10:49:57 AM,03/15/2016 10:50:40 AM,03/15/2016 11:04:36 AM,03/15/2016 11:30:39 AM,03/15/2016 12:11:10 PM,Code 2 Transport,03/15/2016 12:51:53 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160751257-KM13 -130850219,B07,13028402,Alarms,03/26/2013,03/26/2013,03/26/2013 02:50:41 PM,03/26/2013 02:51:46 PM,03/26/2013 02:54:31 PM,03/26/2013 02:57:04 PM,03/26/2013 02:59:02 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 03:03:33 PM,1800 Block of GOLDEN GATE AVE,SF,94115,B05,21,4242,3,3,3,false,Alarm,1,CHIEF,2,5,5,Western Addition,"(37.7784597347567, -122.44105052615)",130850219-B07 -120620299,RC1,12020488,Medical Incident,03/02/2012,03/02/2012,03/02/2012 06:20:28 PM,03/02/2012 06:21:50 PM,03/02/2012 06:23:00 PM,03/02/2012 06:34:35 PM,03/02/2012 06:36:54 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/02/2012 07:04:17 PM,3200 Block of OCTAVIA ST,SF,94123,B04,16,3341,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.8021273515424, -122.429692779866)",120620299-RC1 -160600708,88,16023794,Traffic Collision,02/29/2016,02/29/2016,02/29/2016 08:10:54 AM,02/29/2016 08:15:08 AM,02/29/2016 08:15:57 AM,02/29/2016 08:16:03 AM,02/29/2016 08:24:15 AM,02/29/2016 08:43:25 AM,02/29/2016 09:20:18 AM,Code 2 Transport,02/29/2016 10:08:53 AM,NEVADA ST/CRESCENT AV,San Francisco,94110,B10,32,5746,2,3,3,true,Non Life-threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7346384671452, -122.411826089605)",160600708-88 -123500263,T02,12117109,Alarms,12/15/2012,12/15/2012,12/15/2012 05:46:12 PM,12/15/2012 05:47:37 PM,12/15/2012 05:47:50 PM,12/15/2012 05:49:30 PM,12/15/2012 05:51:27 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 06:13:35 PM,1200 Block of GRANT AVE,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.7983293338887, -122.407047477146)",123500263-T02 -132470151,67,13083300,Medical Incident,09/04/2013,09/04/2013,09/04/2013 10:56:03 AM,09/04/2013 10:58:41 AM,09/04/2013 10:58:59 AM,09/04/2013 10:59:18 AM,09/04/2013 11:23:48 AM,09/04/2013 11:37:00 AM,09/04/2013 12:00:42 PM,Code 2 Transport,09/04/2013 12:37:48 PM,2600 Block of YORBA ST,SF,94116,B08,19,7614,3,3,3,true,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7346752562367, -122.494982313585)",132470151-67 -110560337,96,11018577,Medical Incident,02/25/2011,02/25/2011,02/25/2011 09:51:47 PM,02/25/2011 09:52:53 PM,02/25/2011 09:53:05 PM,02/25/2011 09:53:38 PM,02/25/2011 09:58:58 PM,02/25/2011 10:14:55 PM,02/25/2011 10:28:55 PM,Code 2 Transport,02/25/2011 10:49:10 PM,0 Block of MOUNT VERNON AVE,SF,94112,B09,43,6176,E,E,3,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7152959956202, -122.443476345825)",110560337-96 -112590409,E01,11085590,Medical Incident,09/16/2011,09/16/2011,09/16/2011 11:54:20 PM,09/16/2011 11:54:58 PM,09/16/2011 11:56:37 PM,09/16/2011 11:57:00 PM,09/16/2011 11:59:16 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 12:02:16 AM,EDDY ST/TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",112590409-E01 -131340388,92,13045369,Medical Incident,05/14/2013,05/14/2013,05/14/2013 08:36:26 PM,05/14/2013 08:37:15 PM,05/14/2013 08:37:19 PM,05/14/2013 08:38:23 PM,05/14/2013 08:41:35 PM,05/14/2013 08:57:00 PM,05/14/2013 09:11:31 PM,Code 2 Transport,05/14/2013 09:47:31 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7845808066125, -122.414593411257)",131340388-92 -130900071,E37,13030017,Medical Incident,03/31/2013,03/30/2013,03/31/2013 05:37:26 AM,03/31/2013 05:38:42 AM,03/31/2013 05:38:54 AM,03/31/2013 05:41:10 AM,03/31/2013 05:42:59 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 05:56:02 AM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",130900071-E37 -121190286,E10,12039567,Medical Incident,04/28/2012,04/28/2012,04/28/2012 06:25:59 PM,04/28/2012 06:26:59 PM,04/28/2012 06:27:10 PM,04/28/2012 06:29:16 PM,04/28/2012 06:30:16 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 06:42:31 PM,0 Block of MASONIC AVE,SF,94118,B05,10,4411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7837280171919, -122.447368375734)",121190286-E10 -121930067,T19,12064162,Alarms,07/11/2012,07/10/2012,07/11/2012 06:40:58 AM,07/11/2012 06:42:11 AM,07/11/2012 06:42:43 AM,07/11/2012 06:45:24 AM,07/11/2012 06:49:43 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 07:00:50 AM,3900 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,true,Alarm,1,TRUCK,2,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",121930067-T19 -121910358,E32,12063745,Alarms,07/09/2012,07/09/2012,07/09/2012 10:30:10 PM,07/09/2012 10:33:22 PM,07/09/2012 10:33:39 PM,07/09/2012 10:35:06 PM,07/09/2012 10:37:55 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/09/2012 10:45:34 PM,600 Block of PERALTA AVE,SF,94110,B10,32,5722,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7430294100029, -122.408794397348)",121910358-E32 -102320004,E01,10072875,Medical Incident,08/20/2010,08/19/2010,08/20/2010 12:43:08 AM,08/20/2010 12:44:01 AM,08/20/2010 12:44:29 AM,08/20/2010 12:45:31 AM,08/20/2010 12:47:06 AM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 12:51:31 AM,6TH ST/JESSIE ST,SF,94103,B03,1,2248,E,E,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7813981325639, -122.409245443953)",102320004-E01 -133440155,T09,13116630,Alarms,12/10/2013,12/10/2013,12/10/2013 10:38:36 AM,12/10/2013 10:39:53 AM,12/10/2013 10:40:55 AM,12/10/2013 10:43:13 AM,12/10/2013 10:47:29 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Fire,12/10/2013 11:08:25 AM,600 Block of CESAR CHAVEZ ST,SF,94124,B10,25,2733,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7504165712994, -122.384149714772)",133440155-T09 -140260112,B06,14008844,Structure Fire,01/26/2014,01/26/2014,01/26/2014 09:56:42 AM,01/26/2014 09:57:45 AM,01/26/2014 09:58:12 AM,01/26/2014 09:58:47 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 10:02:52 AM,1300 Block of VERMONT ST,SF,94110,B10,37,2556,3,3,3,false,Alarm,1,CHIEF,6,10,10,Mission,"(37.7525362611874, -122.40341546139)",140260112-B06 -140730323,96,14024762,Medical Incident,03/14/2014,03/14/2014,03/14/2014 06:24:47 PM,03/14/2014 06:27:37 PM,03/14/2014 06:46:54 PM,03/14/2014 06:47:03 PM,03/14/2014 07:12:42 PM,03/14/2014 07:21:33 PM,03/14/2014 07:24:19 PM,Code 2 Transport,03/14/2014 07:53:18 PM,0 Block of KEZAR DR,,94122,B05,12,7321,1,1,2,true,Non Life-threatening,1,MEDIC,2,7,5,Golden Gate Park,"(37.7695200227183, -122.45512727517)",140730323-96 -133030338,E43,13103056,Medical Incident,10/30/2013,10/30/2013,10/30/2013 07:44:08 PM,10/30/2013 07:44:53 PM,10/30/2013 07:45:05 PM,10/30/2013 07:46:22 PM,10/30/2013 07:48:29 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 07:58:21 PM,100 Block of BRUNSWICK ST,SF,94112,B09,43,6217,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.711494077513, -122.439826652302)",133030338-E43 -132200260,72,13074374,Medical Incident,08/08/2013,08/08/2013,08/08/2013 05:01:49 PM,08/08/2013 05:05:18 PM,08/08/2013 05:06:14 PM,08/08/2013 05:06:39 PM,08/08/2013 05:14:12 PM,08/08/2013 05:47:32 PM,08/08/2013 06:08:01 PM,Code 2 Transport,08/08/2013 06:38:36 PM,1900 Block of FUNSTON AVE,SF,94116,B08,40,7354,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7516485435297, -122.469586310392)",132200260-72 -160533137,62,16021363,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:05:34 PM,02/22/2016 08:07:17 PM,02/22/2016 08:08:12 PM,02/22/2016 08:10:26 PM,02/22/2016 08:15:38 PM,02/22/2016 08:32:22 PM,02/22/2016 08:46:43 PM,Code 2 Transport,02/22/2016 09:18:57 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160533137-62 -160522789,53,16020923,Medical Incident,02/21/2016,02/21/2016,02/21/2016 06:32:54 PM,02/21/2016 06:32:54 PM,02/21/2016 06:33:16 PM,02/21/2016 06:33:25 PM,02/21/2016 06:36:36 PM,02/21/2016 06:49:04 PM,02/21/2016 07:13:38 PM,Code 2 Transport,02/21/2016 07:22:21 PM,CALIFORNIA ST/POWELL ST,San Francisco,94108,B01,2,1356,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7920425145533, -122.409171362291)",160522789-53 -160842660,KM01,16033456,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:51:34 PM,03/24/2016 03:52:09 PM,03/24/2016 03:53:48 PM,03/24/2016 03:54:11 PM,03/24/2016 04:15:11 PM,03/24/2016 04:42:39 PM,03/24/2016 04:52:31 PM,Code 2 Transport,03/24/2016 05:36:38 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160842660-KM01 -121450133,E28,12048093,Medical Incident,05/24/2012,05/24/2012,05/24/2012 11:21:41 AM,05/24/2012 11:23:13 AM,05/24/2012 11:23:26 AM,05/24/2012 11:23:58 AM,05/24/2012 11:27:02 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 11:38:34 AM,1800 Block of THE EMBARCADERO,SF,94133,B01,28,935,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8088354051007, -122.414108783784)",121450133-E28 -160481297,59,16019297,Medical Incident,02/17/2016,02/17/2016,02/17/2016 10:47:09 AM,02/17/2016 10:47:32 AM,02/17/2016 10:48:00 AM,02/17/2016 10:48:07 AM,02/17/2016 11:04:45 AM,02/17/2016 11:09:24 AM,02/17/2016 11:27:08 AM,Code 2 Transport,02/17/2016 11:59:52 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",160481297-59 -160060026,61,16002214,Medical Incident,01/06/2016,01/05/2016,01/06/2016 12:10:55 AM,01/06/2016 12:12:01 AM,01/06/2016 12:12:10 AM,01/06/2016 12:12:18 AM,01/06/2016 12:15:52 AM,01/06/2016 12:29:42 AM,01/06/2016 12:31:53 AM,Code 2 Transport,01/06/2016 01:04:25 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160060026-61 -132910039,E29,13098894,Fuel Spill,10/18/2013,10/17/2013,10/18/2013 03:13:12 AM,10/18/2013 03:15:56 AM,10/18/2013 03:17:30 AM,10/18/2013 03:18:21 AM,10/18/2013 03:20:22 AM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Fire,10/18/2013 03:22:23 AM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",132910039-E29 -112340317,T14,11077362,Structure Fire,08/22/2011,08/22/2011,08/22/2011 08:33:34 PM,08/22/2011 08:33:35 PM,08/22/2011 08:33:40 PM,08/22/2011 08:34:44 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/22/2011 08:37:22 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",112340317-T14 -103560026,60,10114143,Medical Incident,12/22/2010,12/21/2010,12/22/2010 02:02:17 AM,12/22/2010 02:06:02 AM,12/22/2010 02:07:19 AM,04/25/2016 02:06:59 PM,12/22/2010 02:23:28 AM,12/22/2010 02:39:24 AM,12/22/2010 02:47:07 AM,Code 2 Transport,12/22/2010 03:01:51 AM,300 Block of JONES ST,SF,94102,B03,3,1461,2,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",103560026-60 -160563971,78,16022556,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:25:24 PM,02/25/2016 10:28:14 PM,02/25/2016 10:28:46 PM,02/25/2016 10:29:05 PM,02/25/2016 10:39:25 PM,02/25/2016 10:56:08 PM,02/25/2016 11:07:29 PM,Code 2 Transport,02/25/2016 11:46:49 PM,1500 Block of FILBERT ST,San Francisco,94123,B04,16,3234,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7994343376071, -122.425002999935)",160563971-78 -160761199,53,16030083,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:20:16 AM,03/16/2016 10:21:12 AM,03/16/2016 10:21:57 AM,03/16/2016 10:22:45 AM,03/16/2016 10:30:35 AM,03/16/2016 10:45:00 AM,03/16/2016 10:50:44 AM,Code 3 Transport,03/16/2016 11:48:17 AM,0 Block of CAPITOL AVE,San Francisco,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.710896081508, -122.458931105722)",160761199-53 -123490018,87,12116556,Medical Incident,12/14/2012,12/13/2012,12/14/2012 01:10:15 AM,12/14/2012 01:13:03 AM,12/14/2012 01:13:36 AM,12/14/2012 01:13:41 AM,12/14/2012 01:20:23 AM,12/14/2012 01:46:05 AM,12/14/2012 01:52:46 AM,Code 2 Transport,12/14/2012 02:10:42 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123490018-87 -160443557,52,16017875,Medical Incident,02/13/2016,02/13/2016,02/13/2016 09:31:42 PM,02/13/2016 09:34:38 PM,02/13/2016 09:36:45 PM,02/13/2016 09:37:01 PM,02/13/2016 09:44:39 PM,02/13/2016 10:01:12 PM,02/13/2016 10:25:44 PM,Code 2 Transport,02/13/2016 11:04:01 PM,300 Block of POPE ST,San Francisco,94112,B09,43,6217,2,3,3,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7108296390342, -122.439907176564)",160443557-52 -130580286,E05,13019532,Traffic Collision,02/27/2013,02/27/2013,02/27/2013 03:48:42 PM,02/27/2013 03:49:17 PM,02/27/2013 03:49:28 PM,02/27/2013 03:50:39 PM,02/27/2013 03:52:10 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,02/27/2013 04:02:02 PM,FULTON ST/GOUGH ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787473702584, -122.423354024639)",130580286-E05 -160473850,AM18,16019145,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:09:57 PM,02/16/2016 10:11:36 PM,02/16/2016 10:11:55 PM,02/16/2016 10:12:19 PM,02/16/2016 10:19:26 PM,02/16/2016 10:28:24 PM,02/16/2016 10:56:48 PM,Code 2 Transport,02/16/2016 11:04:34 PM,500 Block of CLEMENT ST,San Francisco,94118,B07,31,7127,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7829702934835, -122.464962699402)",160473850-AM18 -131050181,94,13035267,Medical Incident,04/15/2013,04/15/2013,04/15/2013 01:06:03 PM,04/15/2013 01:07:51 PM,04/15/2013 01:10:10 PM,04/15/2013 01:10:30 PM,04/15/2013 01:15:54 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 01:24:58 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",131050181-94 -133390106,E12,13114822,Medical Incident,12/05/2013,12/05/2013,12/05/2013 09:03:53 AM,12/05/2013 09:04:26 AM,12/05/2013 09:04:39 AM,12/05/2013 09:04:54 AM,12/05/2013 09:05:25 AM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 09:12:37 AM,CARL ST/COLE ST,SF,94117,B05,12,5144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7658000298196, -122.449958130403)",133390106-E12 -123430353,D2,12114771,Structure Fire,12/08/2012,12/08/2012,12/08/2012 08:51:47 PM,12/08/2012 08:52:50 PM,12/08/2012 08:52:57 PM,12/08/2012 08:54:45 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 08:58:59 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,false,Alarm,1,CHIEF,8,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",123430353-D2 -160332600,AM06,16013082,Medical Incident,02/02/2016,02/02/2016,02/02/2016 05:19:30 PM,02/02/2016 05:21:38 PM,02/02/2016 05:21:51 PM,02/02/2016 05:22:55 PM,02/02/2016 05:32:55 PM,02/02/2016 05:50:22 PM,02/02/2016 06:09:42 PM,Code 2 Transport,02/02/2016 06:42:32 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160332600-AM06 -131390373,E03,13047163,Medical Incident,05/19/2013,05/19/2013,05/19/2013 06:17:53 PM,05/19/2013 06:19:49 PM,05/19/2013 06:19:56 PM,05/19/2013 06:21:04 PM,05/19/2013 06:22:12 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 06:24:04 PM,GEARY BL/VAN NESS AV,SF,94109,B04,3,3161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",131390373-E03 -111280179,KM12,11042349,Medical Incident,05/08/2011,05/08/2011,05/08/2011 01:56:02 PM,05/08/2011 01:57:15 PM,05/08/2011 01:57:53 PM,05/08/2011 01:58:21 PM,05/08/2011 02:03:34 PM,05/08/2011 02:17:18 PM,04/25/2016 02:04:43 PM,Code 2 Transport,05/08/2011 02:24:43 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",111280179-KM12 -130900034,B09,13029981,Structure Fire,03/31/2013,03/30/2013,03/31/2013 01:58:15 AM,03/31/2013 01:59:33 AM,03/31/2013 01:59:47 AM,03/31/2013 02:01:41 AM,03/31/2013 02:07:04 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,04/25/2016 01:53:33 PM,2400 Block of 24TH ST,SF,94110,B10,9,2562,3,3,3,false,Alarm,1,CHIEF,5,10,10,Mission,"(37.7532046649447, -122.403889561898)",130900034-B09 -103490071,B10,10111844,Structure Fire,12/15/2010,12/15/2010,12/15/2010 08:15:22 AM,12/15/2010 08:17:12 AM,12/15/2010 08:18:20 AM,12/15/2010 08:19:49 AM,12/15/2010 08:22:59 AM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Fire,12/15/2010 08:35:30 AM,1500 Block of NEWHALL ST,SF,94124,B10,17,6471,3,3,3,false,,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7347575593913, -122.393114279913)",103490071-B10 -112620383,82,11086624,Medical Incident,09/19/2011,09/19/2011,09/19/2011 08:34:12 PM,09/19/2011 08:34:52 PM,09/19/2011 08:35:45 PM,09/19/2011 08:35:58 PM,09/19/2011 08:49:19 PM,09/19/2011 09:05:53 PM,09/19/2011 09:12:41 PM,Code 2 Transport,09/19/2011 09:26:47 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,1,1,2,true,,1,MEDIC,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",112620383-82 -160560236,52,16022224,Medical Incident,02/25/2016,02/24/2016,02/25/2016 02:44:42 AM,02/25/2016 02:46:22 AM,02/25/2016 02:50:30 AM,02/25/2016 02:51:06 AM,02/25/2016 02:57:00 AM,02/25/2016 03:09:34 AM,02/25/2016 03:20:48 AM,Code 2 Transport,02/25/2016 03:40:45 AM,400 Block of CLAY ST,San Francisco,94111,B01,13,1161,B,B,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7949611703009, -122.400911522038)",160560236-52 -110260279,E07,11008649,Traffic Collision,01/26/2011,01/26/2011,01/26/2011 05:13:10 PM,01/26/2011 05:14:19 PM,01/26/2011 05:14:40 PM,04/25/2016 02:06:24 PM,01/26/2011 05:21:10 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Patient Declined Transport,01/26/2011 05:26:30 PM,VALENCIA ST/14TH ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7681396851482, -122.422199175206)",110260279-E07 -123230044,E16,12107295,Alarms,11/18/2012,11/17/2012,11/18/2012 03:15:23 AM,11/18/2012 03:16:24 AM,11/18/2012 03:16:46 AM,11/18/2012 03:18:32 AM,11/18/2012 03:19:47 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/18/2012 03:21:33 AM,2100 Block of FILBERT ST,SF,94123,B04,16,3462,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7980713649895, -122.434846001062)",123230044-E16 -160471458,53,16018896,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:34:01 AM,02/16/2016 11:34:01 AM,02/16/2016 11:34:27 AM,02/16/2016 11:34:43 AM,02/16/2016 11:39:02 AM,02/16/2016 11:57:29 AM,02/16/2016 12:09:21 PM,Code 2 Transport,02/16/2016 01:04:55 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160471458-53 -132420026,82,13081498,Alarms,08/30/2013,08/29/2013,08/30/2013 02:16:32 AM,08/30/2013 02:17:51 AM,08/30/2013 02:26:55 AM,08/30/2013 02:27:34 AM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/30/2013 02:29:55 AM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,Alarm,1,MEDIC,4,6,8,Mission,"(37.7497020110556, -122.420499334167)",132420026-82 -160091401,82,16003625,Medical Incident,01/09/2016,01/09/2016,01/09/2016 11:50:46 AM,01/09/2016 11:52:37 AM,01/09/2016 11:52:47 AM,01/09/2016 11:54:32 AM,01/09/2016 12:03:29 PM,01/09/2016 12:21:27 PM,01/09/2016 12:36:13 PM,Code 2 Transport,01/09/2016 01:24:45 PM,2200 Block of 41ST AV,San Francisco,94116,B08,18,7635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7448061119266, -122.499528402657)",160091401-82 -160091837,KM07,16003666,Medical Incident,01/09/2016,01/09/2016,01/09/2016 01:50:01 PM,01/09/2016 01:50:11 PM,01/09/2016 01:50:31 PM,01/09/2016 01:50:52 PM,01/09/2016 01:59:10 PM,01/09/2016 02:25:12 PM,01/09/2016 02:35:25 PM,Code 2 Transport,01/09/2016 03:25:54 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160091837-KM07 -133100018,68,13105257,Other,11/06/2013,11/05/2013,11/06/2013 02:06:08 AM,11/06/2013 02:06:59 AM,11/06/2013 02:10:09 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,04/25/2016 01:49:54 PM,1900 Block of OCEAN AVE,SF,94127,B09,15,8455,3,3,3,false,Alarm,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7258420092206, -122.46408510437)",133100018-68 -130460129,E10,13015561,Medical Incident,02/15/2013,02/15/2013,02/15/2013 10:22:52 AM,02/15/2013 10:23:34 AM,02/15/2013 10:23:55 AM,02/15/2013 10:28:32 AM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 10:32:19 AM,PRESIDIO AV/GEARY BL,SF,94115,B05,10,4365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7824880307743, -122.445820511681)",130460129-E10 -122580199,T01,12085296,Vehicle Fire,09/14/2012,09/14/2012,09/14/2012 02:42:34 PM,09/14/2012 02:44:32 PM,09/14/2012 02:46:37 PM,09/14/2012 02:47:51 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/14/2012 02:50:40 PM,300 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,false,Fire,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",122580199-T01 -131010233,RC3,13033986,Medical Incident,04/11/2013,04/11/2013,04/11/2013 02:42:11 PM,04/11/2013 02:46:33 PM,04/11/2013 02:47:44 PM,04/11/2013 02:49:34 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/11/2013 02:50:14 PM,25TH ST/HARRISON ST,SF,94110,B06,7,5533,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7510338955654, -122.411746226036)",131010233-RC3 -160032766,AM16,16001324,Medical Incident,01/03/2016,01/03/2016,01/03/2016 07:22:40 PM,01/03/2016 07:25:11 PM,01/03/2016 07:25:45 PM,01/03/2016 07:26:20 PM,01/03/2016 07:36:03 PM,01/03/2016 07:47:05 PM,01/03/2016 07:57:41 PM,Code 2 Transport,01/03/2016 08:27:06 PM,OFARRELL ST/LEAVENWORTH ST,San Francisco,94109,B04,3,1544,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",160032766-AM16 -120780404,AM18,12026070,Medical Incident,03/18/2012,03/18/2012,03/18/2012 10:58:39 PM,03/18/2012 11:00:25 PM,03/18/2012 11:01:09 PM,03/18/2012 11:01:57 PM,03/18/2012 11:03:53 PM,03/18/2012 11:40:48 PM,03/19/2012 12:23:11 AM,Code 2 Transport,03/19/2012 12:38:49 AM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7896888465146, -122.412913104115)",120780404-AM18 -121310145,AM06,12043538,Medical Incident,05/10/2012,05/10/2012,05/10/2012 11:26:32 AM,05/10/2012 11:28:16 AM,05/10/2012 11:28:56 AM,05/10/2012 11:29:45 AM,05/10/2012 11:31:56 AM,05/10/2012 11:38:15 AM,05/10/2012 11:55:55 AM,Code 2 Transport,05/10/2012 12:32:19 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",121310145-AM06 -160143741,70,16005760,Medical Incident,01/14/2016,01/14/2016,01/14/2016 10:03:49 PM,01/14/2016 10:04:40 PM,01/14/2016 10:05:19 PM,01/14/2016 10:05:43 PM,01/14/2016 10:12:56 PM,01/14/2016 10:35:30 PM,01/14/2016 10:47:13 PM,Code 2 Transport,01/14/2016 11:18:43 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160143741-70 -160351970,KM05,16013839,Medical Incident,02/04/2016,02/04/2016,02/04/2016 01:44:35 PM,02/04/2016 01:45:12 PM,02/04/2016 01:46:26 PM,02/04/2016 01:46:54 PM,02/04/2016 01:52:23 PM,02/04/2016 02:12:59 PM,02/04/2016 02:26:12 PM,Code 2 Transport,02/04/2016 03:18:29 PM,300 Block of HAIGHT ST,San Francisco,94102,B02,6,3524,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7724746185561, -122.427991225235)",160351970-KM05 -120620053,E01,12020273,Medical Incident,03/02/2012,03/01/2012,03/02/2012 06:19:08 AM,03/02/2012 06:20:57 AM,03/02/2012 06:21:08 AM,03/02/2012 06:23:12 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/02/2012 06:29:56 AM,100 Block of CHESTNUT ST,SF,94133,B01,28,1254,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8045313245892, -122.406351854384)",120620053-E01 -130230303,KM14,13008036,Medical Incident,01/23/2013,01/23/2013,01/23/2013 05:12:16 PM,01/23/2013 05:13:09 PM,01/23/2013 05:14:12 PM,01/23/2013 05:15:05 PM,01/23/2013 05:23:18 PM,01/23/2013 05:39:09 PM,01/23/2013 06:02:12 PM,Code 2 Transport,01/23/2013 06:35:45 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",130230303-KM14 -111700350,T03,11056190,Alarms,06/19/2011,06/19/2011,06/19/2011 09:21:28 PM,06/19/2011 09:22:18 PM,06/19/2011 09:22:27 PM,04/25/2016 02:04:04 PM,06/19/2011 09:24:01 PM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,Other,06/19/2011 09:31:56 PM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,TRUCK,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",111700350-T03 -160373484,PT204,16014888,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:01:51 PM,02/06/2016 08:01:51 PM,02/06/2016 08:02:59 PM,02/06/2016 08:04:09 PM,02/06/2016 08:12:38 PM,02/06/2016 08:24:02 PM,02/06/2016 08:35:04 PM,Code 2 Transport,02/06/2016 09:18:51 PM,400 Block of PARIS ST,San Francisco,94112,B09,43,6126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7215760816833, -122.434936472806)",160373484-PT204 -133010301,KM06,13102376,Medical Incident,10/28/2013,10/28/2013,10/28/2013 04:38:20 PM,10/28/2013 04:40:18 PM,10/28/2013 04:40:45 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,04/25/2016 01:50:02 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",133010301-KM06 -112050146,T03,11067706,Structure Fire,07/24/2011,07/24/2011,07/24/2011 11:17:18 AM,07/24/2011 11:17:18 AM,07/24/2011 11:17:26 AM,07/24/2011 11:17:55 AM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/24/2011 11:20:12 AM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,false,,1,TRUCK,3,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",112050146-T03 -133050103,T05,13103567,Alarms,11/01/2013,10/31/2013,11/01/2013 07:43:57 AM,11/01/2013 07:45:42 AM,11/01/2013 07:46:38 AM,11/01/2013 07:47:24 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 07:51:49 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,Alarm,1,TRUCK,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",133050103-T05 -112010123,KM01,11066221,Medical Incident,07/20/2011,07/20/2011,07/20/2011 09:59:02 AM,07/20/2011 10:00:45 AM,07/20/2011 10:02:25 AM,07/20/2011 10:03:02 AM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/20/2011 10:05:00 AM,PARNASSUS AV/SHRADER ST,SF,94117,B05,12,5161,3,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7646823660448, -122.451213061284)",112010123-KM01 -102840016,E05,10090276,Medical Incident,10/11/2010,10/10/2010,10/11/2010 01:33:02 AM,10/11/2010 01:34:39 AM,10/11/2010 01:34:52 AM,10/11/2010 01:36:32 AM,10/11/2010 01:38:43 AM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/11/2010 01:47:07 AM,700 Block of GOUGH ST,SF,94102,B02,5,3263,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.780133899851, -122.42370447487)",102840016-E05 -131570073,B06,13053146,Structure Fire,06/06/2013,06/05/2013,06/06/2013 07:27:34 AM,06/06/2013 07:27:34 AM,06/06/2013 07:27:55 AM,06/06/2013 07:29:00 AM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/06/2013 08:10:17 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,556,3,3,3,false,Alarm,1,CHIEF,3,6,9,Mission,"(37.7597015509874, -122.414696971308)",131570073-B06 -160841360,AM02,16033332,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:36:15 AM,03/24/2016 10:39:02 AM,03/24/2016 10:39:26 AM,03/24/2016 10:40:03 AM,03/24/2016 10:42:32 AM,03/24/2016 11:05:55 AM,03/24/2016 11:35:41 AM,Code 3 Transport,03/24/2016 12:03:52 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160841360-AM02 -140450058,AM16,14015216,Medical Incident,02/14/2014,02/13/2014,02/14/2014 06:18:07 AM,02/14/2014 06:18:08 AM,02/14/2014 06:18:08 AM,02/14/2014 06:18:45 AM,02/14/2014 06:18:08 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 06:26:42 AM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",140450058-AM16 -160730069,RC1,16028830,Medical Incident,03/13/2016,03/12/2016,03/13/2016 12:25:17 AM,03/13/2016 12:26:21 AM,03/13/2016 12:28:51 AM,03/13/2016 12:30:28 AM,03/13/2016 12:33:04 AM,03/13/2016 12:45:53 AM,03/13/2016 12:51:33 AM,Code 3 Transport,03/13/2016 01:03:20 AM,600 Block of MISSION ST,San Francisco,94105,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",160730069-RC1 -122810356,83,12093141,Medical Incident,10/07/2012,10/07/2012,10/07/2012 09:00:17 PM,10/07/2012 09:01:02 PM,10/07/2012 09:01:41 PM,10/07/2012 09:02:52 PM,10/07/2012 09:06:49 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/07/2012 09:14:19 PM,3000 Block of 16TH ST,SF,94103,B04,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7648974062145, -122.421305285009)",122810356-83 -121660244,E03,12055105,Medical Incident,06/14/2012,06/14/2012,06/14/2012 03:05:55 PM,06/14/2012 03:08:03 PM,06/14/2012 03:08:50 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 03:12:38 PM,1500 Block of POLK ST,SF,94109,B04,41,3123,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7910457707698, -122.420711946021)",121660244-E03 -103420035,E03,10109348,Structure Fire,12/08/2010,12/07/2010,12/08/2010 02:17:58 AM,12/08/2010 02:17:59 AM,12/08/2010 02:18:09 AM,12/08/2010 02:19:14 AM,12/08/2010 02:20:59 AM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,Fire,12/08/2010 02:21:44 AM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",103420035-E03 -132300310,85,13077767,Medical Incident,08/18/2013,08/18/2013,08/18/2013 06:54:12 PM,08/18/2013 06:55:20 PM,08/18/2013 06:56:50 PM,04/25/2016 01:51:14 PM,08/18/2013 07:02:05 PM,08/18/2013 07:16:33 PM,08/18/2013 07:29:06 PM,Code 2 Transport,08/18/2013 08:00:11 PM,900 Block of SANSOME ST,SF,94133,B01,13,1213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7988972438755, -122.40239300645)",132300310-85 -132890122,RS1,13098247,Vehicle Fire,10/16/2013,10/16/2013,10/16/2013 10:22:28 AM,10/16/2013 10:24:15 AM,10/16/2013 10:25:59 AM,10/16/2013 10:26:36 AM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 10:28:33 AM,2800 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,false,Fire,1,RESCUE SQUAD,10,4,2,Pacific Heights,"(37.78801561135, -122.441285735387)",132890122-RS1 -132000310,86,13067900,Medical Incident,07/19/2013,07/19/2013,07/19/2013 06:14:17 PM,07/19/2013 06:15:10 PM,07/19/2013 06:23:21 PM,07/19/2013 06:23:33 PM,07/19/2013 06:55:36 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Against Medical Advice,07/19/2013 07:21:14 PM,DRUMM ST/SACRAMENTO ST,SF,94111,B01,13,1115,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7945882147944, -122.396585912894)",132000310-86 -160590047,AM16,16023337,Medical Incident,02/28/2016,02/27/2016,02/28/2016 12:17:29 AM,02/28/2016 12:17:29 AM,02/28/2016 12:18:05 AM,02/28/2016 12:18:40 AM,02/28/2016 12:22:02 AM,02/28/2016 12:46:27 AM,02/28/2016 01:01:11 AM,Code 2 Transport,02/28/2016 01:18:12 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160590047-AM16 -132230095,77,13075249,Medical Incident,08/11/2013,08/10/2013,08/11/2013 06:56:56 AM,08/11/2013 06:56:57 AM,08/11/2013 06:58:41 AM,08/11/2013 06:59:03 AM,08/11/2013 07:14:45 AM,08/11/2013 07:14:49 AM,08/11/2013 07:28:21 AM,Code 2 Transport,08/11/2013 07:53:09 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132230095-77 -102340053,72,10073517,Medical Incident,08/22/2010,08/21/2010,08/22/2010 04:01:01 AM,08/22/2010 04:01:51 AM,08/22/2010 04:02:03 AM,08/22/2010 04:02:45 AM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 04:08:01 AM,NEW MONTGOMERY ST/MISSION ST,SF,94105,B03,1,2145,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",102340053-72 -102830039,66,10089950,Medical Incident,10/10/2010,10/09/2010,10/10/2010 02:46:37 AM,10/10/2010 02:47:30 AM,10/10/2010 02:47:40 AM,10/10/2010 03:07:04 AM,10/10/2010 03:13:50 AM,10/10/2010 03:29:05 AM,10/10/2010 03:35:34 AM,Code 2 Transport,10/10/2010 03:53:51 AM,600 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7871900467437, -122.40093111397)",102830039-66 -110590195,87,11019393,Medical Incident,02/28/2011,02/28/2011,02/28/2011 02:20:33 PM,02/28/2011 02:20:59 PM,02/28/2011 02:21:16 PM,02/28/2011 02:21:44 PM,02/28/2011 02:29:12 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Gone on Arrival,02/28/2011 02:30:13 PM,JERROLD AV/3RD ST,SF,94124,B10,25,6467,3,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7387419299442, -122.389310056266)",110590195-87 -113060040,E01,11101547,Medical Incident,11/02/2011,11/01/2011,11/02/2011 05:24:32 AM,11/02/2011 05:26:51 AM,11/02/2011 05:27:16 AM,11/02/2011 05:29:53 AM,11/02/2011 05:32:34 AM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 05:32:41 AM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",113060040-E01 -160550212,75,16021853,Medical Incident,02/24/2016,02/23/2016,02/24/2016 02:25:09 AM,02/24/2016 02:26:34 AM,02/24/2016 02:26:45 AM,02/24/2016 02:27:15 AM,02/24/2016 02:31:18 AM,02/24/2016 02:47:38 AM,02/24/2016 03:00:22 AM,Code 2 Transport,02/24/2016 04:04:38 AM,2700 Block of TURK BLVD,San Francisco,94118,B05,21,4565,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.7780541111609, -122.451088072707)",160550212-75 -111020260,76,11033887,Water Rescue,04/12/2011,04/12/2011,04/12/2011 04:08:20 PM,04/12/2011 04:08:53 PM,04/12/2011 04:09:54 PM,04/12/2011 04:10:06 PM,04/12/2011 04:16:43 PM,04/12/2011 05:13:07 PM,04/12/2011 05:31:07 PM,Other,04/12/2011 06:08:07 PM,900 Block of 3RD ST,SF,94158,B03,8,946,3,3,3,true,,1,MEDIC,4,None,6,None,"(37.7765531472403, -122.390007762623)",111020260-76 -122700136,78,12089085,Medical Incident,09/26/2012,09/26/2012,09/26/2012 11:48:15 AM,09/26/2012 11:49:20 AM,09/26/2012 11:52:38 AM,09/26/2012 11:52:47 AM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,04/25/2016 01:56:36 PM,0 Block of WESTGATE DR,SF,94127,B09,15,8454,2,2,2,true,Non Life-threatening,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7278623231722, -122.466055833848)",122700136-78 -160570866,KM13,16022667,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:52:28 AM,02/26/2016 08:53:15 AM,02/26/2016 08:53:33 AM,02/26/2016 08:53:59 AM,02/26/2016 09:24:43 AM,02/26/2016 09:42:17 AM,02/26/2016 10:06:52 AM,Code 2 Transport,02/26/2016 10:33:00 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160570866-KM13 -160843907,E23,16033555,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:03:56 PM,03/24/2016 09:04:18 PM,03/24/2016 09:04:43 PM,03/24/2016 09:05:59 PM,03/24/2016 09:11:23 PM,03/24/2016 09:30:07 PM,03/24/2016 09:37:35 PM,Code 3 Transport,03/24/2016 10:05:43 PM,2100 Block of 30TH AVE,San Francisco,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7471894211891, -122.487870230981)",160843907-E23 -120010350,82,12000301,Medical Incident,01/01/2012,01/01/2012,01/01/2012 09:25:19 AM,01/01/2012 09:25:54 AM,01/01/2012 09:27:08 AM,01/01/2012 09:42:48 AM,04/25/2016 02:00:51 PM,01/01/2012 10:10:11 AM,01/01/2012 10:29:30 AM,Code 2 Transport,01/01/2012 10:57:43 AM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,2,2,false,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",120010350-82 -160040749,KM09,16001501,Medical Incident,01/04/2016,01/04/2016,01/04/2016 08:15:31 AM,01/04/2016 08:15:31 AM,01/04/2016 08:19:38 AM,01/04/2016 08:22:20 AM,01/04/2016 08:32:12 AM,01/04/2016 08:49:33 AM,01/04/2016 09:04:51 AM,Code 2 Transport,01/04/2016 09:40:23 AM,JEFFERSON ST/LEAVENWORTH ST,San Francisco,94109,B01,28,947,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",160040749-KM09 -160153714,85,16006169,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:12:16 PM,01/15/2016 09:14:13 PM,01/15/2016 09:15:34 PM,01/15/2016 09:18:38 PM,01/15/2016 09:33:20 PM,01/15/2016 09:33:22 PM,01/15/2016 09:58:48 PM,Code 2 Transport,01/15/2016 10:53:52 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160153714-85 -122380255,RC2,12078903,Medical Incident,08/25/2012,08/25/2012,08/25/2012 06:20:12 PM,08/25/2012 06:23:16 PM,08/25/2012 06:23:45 PM,08/25/2012 06:24:31 PM,08/25/2012 06:29:21 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 06:30:46 PM,9TH AV/JUDAH ST,SF,94122,B08,22,7334,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,5,Inner Sunset,"(37.7621750437096, -122.466180554463)",122380255-RC2 -123380401,B04,12112882,Alarms,12/03/2012,12/03/2012,12/03/2012 10:10:28 PM,12/03/2012 10:11:48 PM,12/03/2012 10:11:59 PM,12/03/2012 10:13:15 PM,12/03/2012 10:15:02 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/03/2012 10:23:25 PM,1800 Block of CLAY ST,SF,94109,B04,41,3154,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7921242439152, -122.423528289583)",123380401-B04 -102600016,64,10082027,Medical Incident,09/17/2010,09/16/2010,09/17/2010 01:15:10 AM,09/17/2010 01:15:48 AM,09/17/2010 01:16:04 AM,09/17/2010 01:16:58 AM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,No Merit,09/17/2010 01:30:03 AM,3RD ST/PAUL AV,SF,94124,B10,44,6544,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7224316058888, -122.395622760595)",102600016-64 -130700384,94,13023513,Medical Incident,03/11/2013,03/11/2013,03/11/2013 08:34:30 PM,03/11/2013 08:36:29 PM,03/11/2013 08:36:54 PM,03/11/2013 08:37:02 PM,03/11/2013 08:39:46 PM,03/11/2013 08:59:08 PM,03/11/2013 09:08:27 PM,Code 2 Transport,03/11/2013 09:45:08 PM,800 Block of ELLIS ST,SF,94109,B02,3,3115,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",130700384-94 -160283838,58,16011255,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:48:02 PM,01/28/2016 09:48:02 PM,01/28/2016 09:50:36 PM,01/28/2016 09:50:48 PM,01/28/2016 09:51:24 PM,01/28/2016 09:59:22 PM,01/28/2016 10:13:07 PM,Code 2 Transport,01/28/2016 10:58:52 PM,1800 Block of BUCHANAN ST,San Francisco,94115,B04,38,3433,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7869636391059, -122.430141994439)",160283838-58 -132730235,AM02,13092806,Medical Incident,09/30/2013,09/30/2013,09/30/2013 02:08:22 PM,09/30/2013 02:09:07 PM,09/30/2013 02:09:21 PM,09/30/2013 02:09:58 PM,09/30/2013 02:13:53 PM,09/30/2013 02:29:32 PM,09/30/2013 02:44:50 PM,Code 2 Transport,09/30/2013 03:15:59 PM,1000 Block of NEWHALL ST,SF,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7378858878982, -122.390296258832)",132730235-AM02 -131220005,87,13040861,Medical Incident,05/02/2013,05/01/2013,05/02/2013 12:04:52 AM,05/02/2013 12:05:56 AM,05/02/2013 12:06:25 AM,05/02/2013 12:10:21 AM,05/02/2013 12:11:50 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Medical Examiner,05/02/2013 01:01:04 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,E,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7980497141877, -122.406829909619)",131220005-87 -113010417,T06,11100030,Medical Incident,10/28/2011,10/28/2011,10/28/2011 11:20:55 PM,10/28/2011 11:21:52 PM,10/28/2011 11:22:04 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/28/2011 11:22:05 PM,200 Block of CASTRO ST,SF,94114,B05,6,5232,3,3,3,false,,1,TRUCK,4,5,8,Castro/Upper Market,"(37.7653228296334, -122.435502831181)",113010417-T06 -160491395,88,16019705,Medical Incident,02/18/2016,02/18/2016,02/18/2016 11:25:48 AM,02/18/2016 11:25:48 AM,02/18/2016 11:25:56 AM,02/18/2016 11:26:02 AM,02/18/2016 11:30:13 AM,02/18/2016 11:46:17 AM,02/18/2016 12:00:35 PM,Code 2 Transport,02/18/2016 12:30:21 PM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7173197736494, -122.434883626306)",160491395-88 -160823853,AM20,16032757,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:50:56 PM,03/22/2016 09:51:45 PM,03/22/2016 09:52:33 PM,03/22/2016 09:53:12 PM,03/22/2016 09:58:07 PM,03/22/2016 10:16:14 PM,03/22/2016 10:24:30 PM,Code 2 Transport,03/22/2016 11:01:46 PM,1500 Block of ORTEGA ST,San Francisco,94116,B08,18,7445,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7521561458521, -122.480089382952)",160823853-AM20 -110010114,T08,11000094,Medical Incident,01/01/2011,12/31/2010,01/01/2011 01:36:30 AM,01/01/2011 01:36:33 AM,01/01/2011 02:01:37 AM,01/01/2011 02:04:52 AM,01/01/2011 02:08:50 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 02:19:46 AM,800 Block of BRANNAN ST,SF,94103,B03,29,2325,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7722126507146, -122.404363751305)",110010114-T08 -110400249,E36,11013291,Medical Incident,02/09/2011,02/09/2011,02/09/2011 03:08:34 PM,02/09/2011 03:10:59 PM,02/09/2011 03:11:37 PM,02/09/2011 03:13:49 PM,02/09/2011 03:17:07 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 03:26:50 PM,500 Block of MINNA ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7791823933462, -122.409793939547)",110400249-E36 -110130273,T15,11004390,Structure Fire,01/13/2011,01/13/2011,01/13/2011 04:13:47 PM,01/13/2011 04:13:47 PM,01/13/2011 04:14:03 PM,01/13/2011 04:15:01 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Other,01/13/2011 04:21:21 PM,MISSION ST/BRAZIL AV,SF,94112,B09,43,6117,3,3,3,false,,1,TRUCK,2,9,11,Outer Mission,"(37.724682555301, -122.434798413615)",110130273-T15 -110560046,E08,11018340,Medical Incident,02/25/2011,02/24/2011,02/25/2011 05:32:41 AM,02/25/2011 05:34:51 AM,02/25/2011 05:35:24 AM,02/25/2011 05:37:00 AM,02/25/2011 05:40:26 AM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 05:43:41 AM,400 Block of HARRISON ST,SF,94105,B03,35,2136,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7864554404625, -122.392543645789)",110560046-E08 -160771360,54,16030527,Medical Incident,03/17/2016,03/17/2016,03/17/2016 10:48:59 AM,03/17/2016 10:50:30 AM,03/17/2016 10:51:13 AM,03/17/2016 10:51:32 AM,03/17/2016 11:02:49 AM,03/17/2016 11:32:24 AM,03/17/2016 11:54:17 AM,Code 2 Transport,03/17/2016 12:45:25 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160771360-54 -160810710,71,16032083,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:18:39 AM,03/21/2016 08:20:37 AM,03/21/2016 08:20:59 AM,03/21/2016 08:21:08 AM,03/21/2016 08:28:01 AM,03/21/2016 08:37:39 AM,03/21/2016 08:58:58 AM,Code 3 Transport,03/21/2016 09:48:46 AM,1600 Block of 35TH AVE,San Francisco,94122,B08,18,7562,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7562840764118, -122.493745024084)",160810710-71 -102950201,57,10094098,Medical Incident,10/22/2010,10/22/2010,10/22/2010 12:45:44 PM,10/22/2010 12:45:44 PM,10/22/2010 12:45:44 PM,04/25/2016 02:07:59 PM,10/22/2010 01:01:27 PM,10/22/2010 01:15:24 PM,10/22/2010 01:34:55 PM,Code 2 Transport,10/22/2010 01:36:25 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",102950201-57 -132490126,E03,13083980,Traffic Collision,09/06/2013,09/06/2013,09/06/2013 10:46:08 AM,09/06/2013 10:46:56 AM,09/06/2013 10:47:11 AM,09/06/2013 10:49:11 AM,09/06/2013 10:51:56 AM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/06/2013 11:02:46 AM,JONES ST/GOLDEN GATE AV,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",132490126-E03 -102900098,RC1,10092448,Structure Fire,10/17/2010,10/17/2010,10/17/2010 08:32:14 AM,10/17/2010 08:33:55 AM,10/17/2010 08:34:07 AM,10/17/2010 08:42:30 AM,10/17/2010 08:43:49 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 10:08:57 AM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,2,RESCUE CAPTAIN,10,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",102900098-RC1 -123580013,E03,12119699,Alarms,12/23/2012,12/22/2012,12/23/2012 01:15:58 AM,12/23/2012 01:17:29 AM,12/23/2012 01:17:46 AM,12/23/2012 01:18:51 AM,12/23/2012 01:20:38 AM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 01:26:37 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",123580013-E03 -131600206,E01,13054373,Medical Incident,06/09/2013,06/09/2013,06/09/2013 02:41:35 PM,06/09/2013 02:43:39 PM,06/09/2013 02:43:54 PM,06/09/2013 02:44:25 PM,06/09/2013 02:49:05 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 02:52:11 PM,4TH ST/MISSION ST,SF,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",131600206-E01 -120940003,E05,12031001,Medical Incident,04/03/2012,04/02/2012,04/03/2012 12:10:50 AM,04/03/2012 12:12:00 AM,04/03/2012 12:12:28 AM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,04/03/2012 12:25:49 AM,04/25/2016 01:59:21 PM,Other,04/03/2012 12:13:26 AM,1000 Block of MCALLISTER ST,SF,94102,B02,5,3425,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",120940003-E05 -131350258,E18,13045608,Structure Fire,05/15/2013,05/15/2013,05/15/2013 03:39:33 PM,05/15/2013 03:39:33 PM,05/15/2013 03:39:40 PM,05/15/2013 03:40:35 PM,05/15/2013 03:43:16 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 03:43:28 PM,41ST AV/NORIEGA ST,SF,94122,B08,18,7633,3,3,3,true,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7532010612329, -122.500044865619)",131350258-E18 -160291608,85,16011438,Medical Incident,01/29/2016,01/29/2016,01/29/2016 12:34:54 PM,01/29/2016 12:37:41 PM,01/29/2016 12:38:08 PM,01/29/2016 12:38:31 PM,01/29/2016 12:51:38 PM,01/29/2016 01:09:09 PM,01/29/2016 01:21:45 PM,Code 2 Transport,01/29/2016 01:56:01 PM,600 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.78147394156, -122.42068958116)",160291608-85 -132900179,83,13098628,Medical Incident,10/17/2013,10/17/2013,10/17/2013 11:44:41 AM,10/17/2013 11:45:49 AM,10/17/2013 11:46:23 AM,10/17/2013 11:46:53 AM,10/17/2013 11:51:46 AM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,No Merit,10/17/2013 11:59:22 AM,700 Block of 18TH AVE,SF,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",132900179-83 -103040270,E08,10097196,Water Rescue,10/31/2010,10/31/2010,10/31/2010 03:55:53 PM,10/31/2010 03:55:57 PM,10/31/2010 03:57:51 PM,10/31/2010 03:59:37 PM,10/31/2010 04:02:31 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 04:07:01 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,E,E,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8081576930541, -122.412496867032)",103040270-E08 -121810340,E02,12060404,Medical Incident,06/29/2012,06/29/2012,06/29/2012 09:01:30 PM,06/29/2012 09:03:12 PM,06/29/2012 09:03:43 PM,06/29/2012 09:04:13 PM,06/29/2012 09:06:06 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 09:13:06 PM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7983830790911, -122.407521730924)",121810340-E02 -132860344,E06,13097417,Structure Fire,10/13/2013,10/13/2013,10/13/2013 08:39:04 PM,10/13/2013 08:39:29 PM,10/13/2013 08:39:46 PM,10/13/2013 08:41:26 PM,10/13/2013 08:43:11 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/13/2013 08:58:09 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,4,2,6,Mission,"(37.7740948566882, -122.420001436964)",132860344-E06 -140870029,T06,14029149,Structure Fire,03/28/2014,03/27/2014,03/28/2014 03:23:56 AM,03/28/2014 03:27:24 AM,03/28/2014 03:27:49 AM,03/28/2014 03:29:53 AM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Fire,03/28/2014 03:35:26 AM,1800 Block of FOLSOM ST,SAN FRANCISCO,94103,B02,7,5216,3,3,3,false,Alarm,1,TRUCK,9,2,9,Mission,"(37.7677331022924, -122.415606951318)",140870029-T06 -113490072,99,11115726,Medical Incident,12/15/2011,12/15/2011,12/15/2011 08:58:29 AM,12/15/2011 08:59:44 AM,12/15/2011 09:00:03 AM,04/25/2016 02:01:09 PM,12/15/2011 09:03:50 AM,12/15/2011 09:38:42 AM,12/15/2011 09:51:50 AM,Code 2 Transport,12/15/2011 10:35:42 AM,1200 Block of TREAT AVE,SF,94110,B06,7,5533,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7501648383073, -122.412831855469)",113490072-99 -102400033,E41,10075583,Structure Fire,08/28/2010,08/27/2010,08/28/2010 02:21:41 AM,08/28/2010 02:22:24 AM,08/28/2010 02:22:34 AM,08/28/2010 02:23:26 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Other,08/28/2010 02:39:41 AM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,false,,1,ENGINE,10,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",102400033-E41 -110080140,E02,11002641,Alarms,01/08/2011,01/08/2011,01/08/2011 11:15:11 AM,01/08/2011 11:16:15 AM,01/08/2011 11:16:21 AM,01/08/2011 11:17:25 AM,01/08/2011 11:18:34 AM,04/25/2016 02:06:42 PM,04/25/2016 02:06:42 PM,Other,01/08/2011 11:24:38 AM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",110080140-E02 -133390031,82,13114762,Medical Incident,12/05/2013,12/04/2013,12/05/2013 02:08:51 AM,12/05/2013 02:12:04 AM,12/05/2013 02:13:25 AM,12/05/2013 02:13:34 AM,12/05/2013 02:18:02 AM,12/05/2013 02:41:58 AM,12/05/2013 03:03:47 AM,Code 2 Transport,12/05/2013 03:30:38 AM,300 Block of MCALLISTER ST,SF,94102,B02,3,3113,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7804194722111, -122.417784021678)",133390031-82 -160201141,KM11,16007960,Medical Incident,01/20/2016,01/20/2016,01/20/2016 09:53:40 AM,01/20/2016 09:55:04 AM,01/20/2016 09:55:50 AM,01/20/2016 09:56:43 AM,01/20/2016 10:12:41 AM,01/20/2016 10:27:20 AM,01/20/2016 10:34:09 AM,Code 2 Transport,01/20/2016 11:11:41 AM,1400 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",160201141-KM11 -160810829,79,16032089,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:52:10 AM,03/21/2016 08:52:10 AM,03/21/2016 08:52:32 AM,03/21/2016 08:52:37 AM,03/21/2016 09:07:27 AM,03/21/2016 09:20:10 AM,03/21/2016 09:35:49 AM,Code 2 Transport,03/21/2016 10:06:18 AM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",160810829-79 -93250246,B01,9098517,Alarms,11/21/2009,11/21/2009,11/21/2009 06:31:43 PM,11/21/2009 06:32:43 PM,11/21/2009 06:32:51 PM,11/21/2009 06:33:45 PM,11/21/2009 06:37:03 PM,04/25/2016 03:25:55 PM,04/25/2016 03:25:55 PM,Other,11/21/2009 06:40:20 PM,600 Block of SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",093250246-B01 -130050073,E14,13001636,Medical Incident,01/05/2013,01/04/2013,01/05/2013 06:01:05 AM,01/05/2013 06:02:33 AM,01/05/2013 06:03:15 AM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/05/2013 06:05:24 AM,700 Block of 31ST AVE,SF,94121,B07,14,7242,3,1,2,true,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7750790401889, -122.490749997534)",130050073-E14 -131360455,E03,13046107,Medical Incident,05/16/2013,05/16/2013,05/16/2013 11:22:55 PM,05/16/2013 11:24:14 PM,05/16/2013 11:25:01 PM,04/25/2016 01:52:46 PM,05/16/2013 11:26:53 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 11:34:37 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",131360455-E03 -160220293,KM03,16008640,Medical Incident,01/22/2016,01/21/2016,01/22/2016 03:07:24 AM,01/22/2016 03:09:43 AM,01/22/2016 03:10:00 AM,01/22/2016 03:10:34 AM,01/22/2016 03:17:04 AM,01/22/2016 03:35:27 AM,01/22/2016 04:00:46 AM,Code 2 Transport,01/22/2016 04:41:51 AM,1700 Block of 46TH AVE,San Francisco,94122,B08,23,7716,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7538946461848, -122.505539190392)",160220293-KM03 -102740307,AM14,10087106,Medical Incident,10/01/2010,10/01/2010,10/01/2010 06:32:02 PM,10/01/2010 06:32:02 PM,10/01/2010 06:34:16 PM,10/01/2010 06:35:11 PM,10/01/2010 06:35:18 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Against Medical Advice,10/01/2010 07:18:35 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",102740307-AM14 -112020381,B01,11066801,Alarms,07/21/2011,07/21/2011,07/21/2011 07:55:51 PM,07/21/2011 07:57:05 PM,07/21/2011 07:57:35 PM,07/21/2011 07:58:50 PM,07/21/2011 08:04:07 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Fire,07/21/2011 08:05:29 PM,700 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,,1,CHIEF,3,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",112020381-B01 -160210474,AM02,16008256,Medical Incident,01/21/2016,01/20/2016,01/21/2016 05:43:58 AM,01/21/2016 05:45:57 AM,01/21/2016 05:46:35 AM,01/21/2016 05:50:41 AM,01/21/2016 05:50:41 AM,01/21/2016 06:12:40 AM,01/21/2016 06:24:14 AM,Code 2 Transport,01/21/2016 06:58:51 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160210474-AM02 -140910059,E14,14030510,Citizen Assist / Service Call,04/01/2014,04/01/2014,04/01/2014 08:19:46 AM,04/01/2014 08:20:24 AM,04/01/2014 08:20:45 AM,04/01/2014 08:21:39 AM,04/01/2014 08:27:53 AM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,No Merit,04/01/2014 09:14:24 AM,0 Block of WEST CLAY ST,SAN FRANCISCO,94121,B07,14,7174,3,3,3,true,Alarm,1,ENGINE,1,7,2,Seacliff,"(37.7866682483222, -122.483103396659)",140910059-E14 -130660088,E01,13021965,Medical Incident,03/07/2013,03/07/2013,03/07/2013 08:07:05 AM,03/07/2013 08:08:57 AM,03/07/2013 08:09:28 AM,03/07/2013 08:11:45 AM,03/07/2013 08:15:07 AM,04/25/2016 01:53:57 PM,04/25/2016 01:53:57 PM,Other,03/07/2013 08:24:43 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",130660088-E01 -160063539,91,16002603,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:29:42 PM,01/06/2016 09:30:56 PM,01/06/2016 09:31:14 PM,01/06/2016 09:32:07 PM,01/06/2016 09:39:56 PM,01/06/2016 09:50:01 PM,01/06/2016 10:05:43 PM,Code 2 Transport,01/06/2016 10:55:46 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160063539-91 -111820051,E03,11059961,Structure Fire,07/01/2011,06/30/2011,07/01/2011 05:45:07 AM,07/01/2011 05:45:07 AM,07/01/2011 05:45:52 AM,07/01/2011 05:47:16 AM,07/01/2011 05:48:16 AM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,Other,07/01/2011 05:48:38 AM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",111820051-E03 -160113717,53,16004589,Medical Incident,01/11/2016,01/11/2016,01/11/2016 11:18:55 PM,01/11/2016 11:22:57 PM,01/11/2016 11:24:07 PM,01/11/2016 11:24:17 PM,01/11/2016 11:59:32 PM,01/11/2016 11:59:36 PM,01/12/2016 12:10:52 AM,Code 2 Transport,01/12/2016 01:15:36 AM,0 Block of CORWIN ST,San Francisco,94114,B06,24,5463,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Twin Peaks,"(37.7570531323914, -122.439618182524)",160113717-53 -160901451,AM02,16035681,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:07:06 AM,03/30/2016 11:09:07 AM,03/30/2016 11:09:45 AM,03/30/2016 11:10:09 AM,03/30/2016 11:18:56 AM,03/30/2016 11:30:50 AM,03/30/2016 11:38:45 AM,Code 2 Transport,03/30/2016 11:58:48 AM,1100 Block of STOCKTON ST,San Francisco,94133,B01,2,1332,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7962724916031, -122.408273698283)",160901451-AM02 -131140208,E17,13038458,Medical Incident,04/24/2013,04/24/2013,04/24/2013 01:50:40 PM,04/24/2013 01:52:14 PM,04/24/2013 02:04:05 PM,04/24/2013 02:05:24 PM,04/24/2013 02:07:15 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 02:22:35 PM,1600 Block of WALLACE AVE,SF,94124,B10,17,6546,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7280277124346, -122.391963404098)",131140208-E17 -133610238,75,13122721,Traffic Collision,12/27/2013,12/27/2013,12/27/2013 05:03:10 PM,12/27/2013 05:04:21 PM,12/27/2013 05:04:50 PM,12/27/2013 05:05:29 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 05:08:16 PM,7TH ST/TOWNSEND ST,SF,94107,B03,29,2275,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7718171244689, -122.401656683321)",133610238-75 -121440274,T17,12047904,Structure Fire,05/23/2012,05/23/2012,05/23/2012 06:55:14 PM,05/23/2012 06:55:14 PM,05/23/2012 06:55:23 PM,05/23/2012 06:56:45 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Other,05/23/2012 06:58:33 PM,INGALLS ST/DONNER AV,SF,94124,B10,17,6615,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7222249464794, -122.390183077962)",121440274-T17 -122120234,E31,12070405,Alarms,07/30/2012,07/30/2012,07/30/2012 02:52:02 PM,07/30/2012 02:53:29 PM,07/30/2012 02:53:56 PM,07/30/2012 02:55:27 PM,07/30/2012 02:57:29 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 03:00:41 PM,3800 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Alarm,1,ENGINE,2,7,1,Inner Richmond,"(37.7810653248447, -122.460519276842)",122120234-E31 -102990209,E03,10095479,Alarms,10/26/2010,10/26/2010,10/26/2010 01:38:04 PM,10/26/2010 01:38:04 PM,10/26/2010 01:38:31 PM,10/26/2010 01:39:04 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 01:39:18 PM,900 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,4,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",102990209-E03 -112620431,E21,11086662,Medical Incident,09/19/2011,09/19/2011,09/19/2011 10:51:31 PM,09/19/2011 10:52:58 PM,09/19/2011 10:53:38 PM,09/19/2011 10:55:42 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 10:56:12 PM,1300 Block of HAIGHT ST,SF,94117,B05,21,4466,3,3,3,false,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7703725071371, -122.444508010123)",112620431-E21 -122850233,57,12094305,Medical Incident,10/11/2012,10/11/2012,10/11/2012 03:09:16 PM,10/11/2012 03:11:50 PM,10/11/2012 03:13:12 PM,10/11/2012 03:14:00 PM,10/11/2012 03:38:08 PM,04/25/2016 01:56:21 PM,10/11/2012 04:01:26 PM,Code 2 Transport,10/11/2012 04:33:34 PM,1600 Block of MARKET ST,SF,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7741119199673, -122.420387092418)",122850233-57 -160063211,AM18,16002562,Medical Incident,01/06/2016,01/06/2016,01/06/2016 07:27:05 PM,01/06/2016 07:28:06 PM,01/06/2016 07:28:45 PM,01/06/2016 07:29:06 PM,01/06/2016 07:34:23 PM,01/06/2016 07:56:26 PM,01/06/2016 08:00:51 PM,Code 2 Transport,01/06/2016 08:32:40 PM,0 Block of PARAMOUNT TER,San Francisco,94118,B07,21,4556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Lone Mountain/USF,"(37.7762141292275, -122.455392870939)",160063211-AM18 -132980207,77,13101216,Medical Incident,10/25/2013,10/25/2013,10/25/2013 01:45:40 PM,10/25/2013 01:46:55 PM,10/25/2013 01:47:33 PM,10/25/2013 01:48:26 PM,10/25/2013 02:03:49 PM,10/25/2013 02:04:05 PM,10/25/2013 02:17:58 PM,Code 2 Transport,10/25/2013 02:42:20 PM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",132980207-77 -160250151,61,16009752,Medical Incident,01/25/2016,01/24/2016,01/25/2016 01:22:16 AM,01/25/2016 01:24:59 AM,01/25/2016 01:25:39 AM,01/25/2016 01:25:50 AM,01/25/2016 01:32:51 AM,01/25/2016 01:43:33 AM,01/25/2016 01:54:28 AM,Code 2 Transport,01/25/2016 02:35:32 AM,200 Block of SANSOME ST,San Francisco,94104,B01,13,1165,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.792575613742, -122.401098046872)",160250151-61 -130950084,E21,13031725,Medical Incident,04/05/2013,04/04/2013,04/05/2013 07:56:01 AM,04/05/2013 07:57:16 AM,04/05/2013 07:57:37 AM,04/05/2013 07:59:13 AM,04/05/2013 08:01:01 AM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,Other,04/05/2013 08:36:14 AM,300 Block of BAKER ST,SF,94117,B05,21,4252,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",130950084-E21 -140240379,E36,14008343,Outside Fire,01/24/2014,01/24/2014,01/24/2014 07:57:26 PM,01/24/2014 07:59:56 PM,01/24/2014 08:00:06 PM,04/25/2016 01:48:33 PM,01/24/2014 08:04:44 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Fire,01/24/2014 08:10:14 PM,13TH ST/HARRISON ST,SF,94103,B02,36,5112,3,3,3,true,Fire,1,ENGINE,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",140240379-E36 -160591781,85,16023536,Medical Incident,02/28/2016,02/28/2016,02/28/2016 02:02:02 PM,02/28/2016 02:03:51 PM,02/28/2016 02:04:15 PM,02/28/2016 02:05:00 PM,02/28/2016 02:10:54 PM,02/28/2016 02:29:08 PM,02/28/2016 02:32:18 PM,Code 2 Transport,02/28/2016 03:10:47 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160591781-85 -123650327,68,12122253,Medical Incident,12/30/2012,12/30/2012,12/30/2012 09:25:12 PM,12/30/2012 09:27:16 PM,12/30/2012 09:27:33 PM,12/30/2012 09:27:41 PM,12/30/2012 09:31:02 PM,04/25/2016 01:55:03 PM,04/25/2016 01:55:03 PM,Unable to Locate,12/30/2012 09:39:40 PM,500 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",123650327-68 -103350362,93,10107334,Medical Incident,12/01/2010,12/01/2010,12/01/2010 11:07:34 PM,12/01/2010 11:08:13 PM,12/01/2010 11:08:43 PM,12/01/2010 11:11:00 PM,12/01/2010 11:19:39 PM,12/01/2010 11:27:46 PM,12/01/2010 11:34:54 PM,Code 3 Transport,12/01/2010 11:49:46 PM,0 Block of TURNER TER,SF,94107,B10,37,2542,3,2,2,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7566399872109, -122.395114989)",103350362-93 -160731442,77,16028974,Medical Incident,03/13/2016,03/13/2016,03/13/2016 01:40:34 PM,03/13/2016 01:41:20 PM,03/13/2016 01:41:39 PM,03/13/2016 01:42:05 PM,03/13/2016 01:48:54 PM,03/13/2016 02:03:34 PM,03/13/2016 02:16:02 PM,Code 2 Transport,03/13/2016 02:52:51 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160731442-77 -112960379,E12,11098356,Smoke Investigation (Outside),10/23/2011,10/23/2011,10/23/2011 11:18:41 PM,10/23/2011 11:20:03 PM,10/23/2011 11:20:29 PM,10/23/2011 11:21:49 PM,10/23/2011 11:23:49 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/23/2011 11:37:39 PM,DOWNEY ST/WALLER ST,SF,94117,B05,12,4512,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7689694394914, -122.44756773844)",112960379-E12 -103490252,E19,10111980,Medical Incident,12/15/2010,12/15/2010,12/15/2010 04:47:59 PM,12/15/2010 04:48:48 PM,12/15/2010 04:49:24 PM,12/15/2010 04:49:49 PM,12/15/2010 04:52:12 PM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Other,12/15/2010 05:09:27 PM,100 Block of RIVERTON DR,SF,94132,B08,19,8742,3,3,3,true,,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7315055331837, -122.487033293313)",103490252-E19 -160413587,78,16016637,Medical Incident,02/10/2016,02/10/2016,02/10/2016 08:42:04 PM,02/10/2016 08:44:12 PM,02/10/2016 08:44:33 PM,02/10/2016 08:44:51 PM,02/10/2016 08:57:27 PM,02/10/2016 09:13:53 PM,02/10/2016 09:23:10 PM,Code 2 Transport,02/10/2016 10:05:25 PM,600 Block of PACIFIC AVE,San Francisco,94133,B01,13,1246,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",160413587-78 -130040061,93,13001257,Medical Incident,01/04/2013,01/03/2013,01/04/2013 05:37:19 AM,01/04/2013 05:38:44 AM,01/04/2013 05:39:38 AM,01/04/2013 05:39:54 AM,01/04/2013 05:49:48 AM,01/04/2013 06:00:59 AM,04/25/2016 01:54:58 PM,Code 2 Transport,01/04/2013 06:40:42 AM,0 Block of ESPANOLA ST,SF,94124,B10,17,6641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",130040061-93 -160732564,76,16029078,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:24:41 PM,03/13/2016 07:24:41 PM,03/13/2016 07:25:34 PM,03/13/2016 07:25:41 PM,03/13/2016 07:30:30 PM,03/13/2016 07:39:13 PM,03/13/2016 07:41:18 PM,Code 2 Transport,03/13/2016 08:00:21 PM,1400 Block of BRODERICK ST,San Francisco,94115,B05,10,4235,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,2,Japantown,"(37.7838654796396, -122.441370226887)",160732564-76 -133380171,E12,13114544,Medical Incident,12/04/2013,12/04/2013,12/04/2013 12:52:42 PM,12/04/2013 12:54:38 PM,12/04/2013 12:56:09 PM,12/04/2013 12:58:17 PM,12/04/2013 01:00:47 PM,12/04/2013 01:17:06 PM,12/04/2013 01:23:46 PM,Other,12/04/2013 01:28:18 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",133380171-E12 -132400242,T06,13081013,Alarms,08/28/2013,08/28/2013,08/28/2013 04:00:10 PM,08/28/2013 04:01:16 PM,08/28/2013 04:01:28 PM,08/28/2013 04:01:46 PM,08/28/2013 04:03:15 PM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,Other,08/28/2013 04:11:10 PM,200 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,false,Alarm,1,TRUCK,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",132400242-T06 -160153525,AM22,16006155,Medical Incident,01/15/2016,01/15/2016,01/15/2016 08:17:44 PM,01/15/2016 08:20:53 PM,01/15/2016 08:21:19 PM,01/15/2016 08:22:28 PM,01/15/2016 08:25:33 PM,01/15/2016 08:38:55 PM,01/15/2016 08:56:21 PM,Code 2 Transport,01/15/2016 09:20:50 PM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",160153525-AM22 -130890084,T03,13029675,Medical Incident,03/30/2013,03/29/2013,03/30/2013 07:30:21 AM,03/30/2013 07:31:15 AM,03/30/2013 07:31:34 AM,03/30/2013 07:33:53 AM,03/30/2013 07:36:10 AM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 07:38:32 AM,300 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",130890084-T03 -123470382,E03,12116182,Structure Fire,12/12/2012,12/12/2012,12/12/2012 11:00:21 PM,12/12/2012 11:00:21 PM,12/12/2012 11:00:42 PM,12/12/2012 11:01:16 PM,12/12/2012 11:02:50 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Fire,12/12/2012 11:03:09 PM,HYDE ST/ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",123470382-E03 -160030823,63,16001100,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:14:03 AM,01/03/2016 08:15:34 AM,01/03/2016 08:17:04 AM,01/03/2016 08:17:21 AM,01/03/2016 08:32:49 AM,01/03/2016 08:36:53 AM,01/03/2016 08:50:48 AM,Code 2 Transport,01/03/2016 09:28:50 AM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",160030823-63 -130750135,T03,13024989,Alarms,03/16/2013,03/16/2013,03/16/2013 11:23:22 AM,03/16/2013 11:23:22 AM,03/16/2013 11:24:12 AM,03/16/2013 11:25:19 AM,03/16/2013 11:27:45 AM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Fire,03/16/2013 11:28:31 AM,JONES ST/TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",130750135-T03 -160532815,53,16021334,Medical Incident,02/22/2016,02/22/2016,02/22/2016 06:17:43 PM,02/22/2016 06:17:43 PM,02/22/2016 06:19:54 PM,02/22/2016 06:20:27 PM,02/22/2016 06:46:43 PM,02/22/2016 07:00:29 PM,02/22/2016 07:21:43 PM,Code 2 Transport,02/22/2016 07:53:17 PM,WINSTON DR/BUCKINGHAM WY,San Francisco,94132,B08,19,8854,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7282105642636, -122.478697968283)",160532815-53 -130850238,KM01,13028420,Medical Incident,03/26/2013,03/26/2013,03/26/2013 03:35:42 PM,03/26/2013 03:35:59 PM,03/26/2013 03:36:11 PM,03/26/2013 03:36:48 PM,03/26/2013 03:48:16 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Code 2 Transport,03/26/2013 04:29:57 PM,3000 Block of FILLMORE ST,SF,94123,B04,16,3552,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.7975637588622, -122.435515673585)",130850238-KM01 -160241711,65,16009531,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:17:52 PM,01/24/2016 01:19:29 PM,01/24/2016 01:25:47 PM,01/24/2016 01:25:47 PM,01/24/2016 01:25:47 PM,01/24/2016 01:33:18 PM,01/24/2016 01:42:43 PM,Code 2 Transport,01/24/2016 02:18:41 PM,HAYES ST/LARKIN ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7777227510073, -122.416401071795)",160241711-65 -160420247,E03,16016718,Medical Incident,02/11/2016,02/10/2016,02/11/2016 03:02:37 AM,02/11/2016 03:04:24 AM,02/11/2016 03:04:52 AM,02/11/2016 03:06:48 AM,02/11/2016 03:09:31 AM,02/11/2016 03:51:25 AM,02/11/2016 03:59:10 AM,Code 3 Transport,02/11/2016 04:04:27 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160420247-E03 -102580299,E26,10081585,Alarms,09/15/2010,09/15/2010,09/15/2010 05:42:02 PM,09/15/2010 05:43:19 PM,09/15/2010 05:43:50 PM,04/25/2016 02:08:35 PM,09/15/2010 05:45:28 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,Other,09/15/2010 05:55:45 PM,0 Block of ORA WAY,SF,94131,B06,26,8154,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7414004640291, -122.437991835355)",102580299-E26 -110270011,95,11008753,Medical Incident,01/27/2011,01/26/2011,01/27/2011 01:12:35 AM,01/27/2011 01:13:55 AM,01/27/2011 01:14:42 AM,01/27/2011 01:15:31 AM,01/27/2011 01:21:50 AM,01/27/2011 01:28:58 AM,04/25/2016 02:06:24 PM,Code 2 Transport,01/27/2011 02:06:16 AM,200 Block of TALBERT ST,SF,94134,B09,44,6256,1,1,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7088095309172, -122.407183080746)",110270011-95 -110410362,E23,11013716,Medical Incident,02/10/2011,02/10/2011,02/10/2011 08:30:44 PM,02/10/2011 08:31:13 PM,02/10/2011 08:31:34 PM,02/10/2011 08:32:22 PM,02/10/2011 08:33:49 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 08:47:09 PM,1200 Block of 47TH AVE,SF,94122,B08,23,7721,3,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7631738408365, -122.507265410881)",110410362-E23 -132390164,E29,13080609,Medical Incident,08/27/2013,08/27/2013,08/27/2013 11:48:09 AM,08/27/2013 11:51:06 AM,08/27/2013 11:51:31 AM,08/27/2013 11:52:54 AM,08/27/2013 11:56:05 AM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 12:04:11 PM,1000 Block of WISCONSIN ST,SF,94107,B10,37,257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",132390164-E29 -132230325,84,13075445,Medical Incident,08/11/2013,08/11/2013,08/11/2013 09:09:31 PM,08/11/2013 09:11:54 PM,08/11/2013 09:12:03 PM,08/11/2013 09:12:26 PM,08/11/2013 09:16:14 PM,08/11/2013 09:29:08 PM,08/11/2013 09:36:25 PM,Code 2 Transport,08/11/2013 10:19:57 PM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7483773808375, -122.412579951922)",132230325-84 -131100343,E05,13037160,Traffic Collision,04/20/2013,04/20/2013,04/20/2013 07:31:39 PM,04/20/2013 07:32:16 PM,04/20/2013 07:32:29 PM,04/20/2013 07:33:35 PM,04/20/2013 07:36:17 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/20/2013 07:43:10 PM,MARKET ST/GUERRERO ST,SF,94103,B02,36,3416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7707477455746, -122.424852598702)",131100343-E05 -131270250,E26,13042980,Outside Fire,05/07/2013,05/07/2013,05/07/2013 03:38:06 PM,05/07/2013 03:39:25 PM,05/07/2013 03:39:53 PM,05/07/2013 03:40:58 PM,05/07/2013 03:42:21 PM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/07/2013 04:00:03 PM,600 Block of 29TH ST,SF,94131,B06,26,5565,3,3,3,true,Fire,1,ENGINE,1,6,8,Noe Valley,"(37.7433115636918, -122.433975828081)",131270250-E26 -160041057,KM09,16001534,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:45:12 AM,01/04/2016 09:45:32 AM,01/04/2016 09:46:00 AM,01/04/2016 09:48:14 AM,01/04/2016 09:48:14 AM,01/04/2016 10:01:01 AM,01/04/2016 10:08:38 AM,Code 2 Transport,01/04/2016 10:59:36 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160041057-KM09 -160882434,58,16035020,Traffic Collision,03/28/2016,03/28/2016,03/28/2016 03:48:53 PM,03/28/2016 03:48:53 PM,03/28/2016 03:49:00 PM,03/28/2016 03:49:06 PM,03/28/2016 04:12:21 PM,03/28/2016 04:12:23 PM,03/28/2016 04:33:32 PM,Code 2 Transport,03/28/2016 04:58:02 PM,POST ST/KEARNY ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7888944287124, -122.403660676968)",160882434-58 -123580323,E05,12119993,Medical Incident,12/23/2012,12/23/2012,12/23/2012 09:43:50 PM,12/23/2012 09:44:43 PM,12/23/2012 09:45:54 PM,12/23/2012 09:48:00 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/23/2012 09:50:30 PM,400 Block of BAKER ST,SF,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7750273737515, -122.441273561369)",123580323-E05 -160900952,KM06,16035641,Traffic Collision,03/30/2016,03/30/2016,03/30/2016 09:06:07 AM,03/30/2016 09:06:39 AM,03/30/2016 09:07:07 AM,03/30/2016 09:07:12 AM,03/30/2016 09:10:06 AM,03/30/2016 09:20:07 AM,03/30/2016 09:29:53 AM,Code 3 Transport,03/30/2016 11:46:55 AM,VAN NESS AV/VALLEJO ST,San Francisco,94109,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7966910574342, -122.423601299464)",160900952-KM06 -160722950,60,16028732,Medical Incident,03/12/2016,03/12/2016,03/12/2016 07:30:02 PM,03/12/2016 07:31:25 PM,03/12/2016 07:32:35 PM,03/12/2016 07:33:17 PM,03/12/2016 07:40:27 PM,03/12/2016 07:50:20 PM,03/12/2016 08:12:33 PM,Code 2 Transport,03/12/2016 08:45:24 PM,1200 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7246946719388, -122.456499413125)",160722950-60 -160381366,AM06,16015165,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:43:45 AM,02/07/2016 10:45:13 AM,02/07/2016 10:45:44 AM,02/07/2016 10:46:21 AM,02/07/2016 11:02:21 AM,02/07/2016 11:23:42 AM,02/07/2016 11:38:41 AM,Code 2 Transport,02/07/2016 12:11:26 PM,0 Block of 7TH AVE,San Francisco,94118,B07,31,7126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Inner Richmond,"(37.7874397335199, -122.465888456685)",160381366-AM06 -140760340,E15,14025854,Structure Fire,03/17/2014,03/17/2014,03/17/2014 08:03:10 PM,03/17/2014 08:04:00 PM,03/17/2014 08:04:47 PM,03/17/2014 08:06:16 PM,03/17/2014 08:10:30 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Fire,03/17/2014 08:11:02 PM,100 Block of BLYTHDALE AVE,SAN FRANCISCO,94134,B09,43,6244,3,3,3,true,Alarm,1,ENGINE,2,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",140760340-E15 -111260080,RC2,11041619,Traffic Collision,05/06/2011,05/05/2011,05/06/2011 07:51:35 AM,05/06/2011 07:52:43 AM,05/06/2011 07:55:11 AM,04/25/2016 02:04:45 PM,05/06/2011 07:59:07 AM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Patient Declined Transport,05/06/2011 08:12:32 AM,ARGUELLO BL/BALBOA ST,SF,94118,B07,31,7112,3,3,3,true,,1,RESCUE CAPTAIN,2,7,1,Lone Mountain/USF,"(37.777253917962, -122.458580630046)",111260080-RC2 -130480147,E01,13016351,Medical Incident,02/17/2013,02/17/2013,02/17/2013 10:17:39 AM,02/17/2013 10:18:15 AM,02/17/2013 10:18:24 AM,02/17/2013 10:18:49 AM,02/17/2013 10:22:07 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 10:32:49 AM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",130480147-E01 -132340351,93,13079139,Medical Incident,08/22/2013,08/22/2013,08/22/2013 09:59:07 PM,08/22/2013 10:00:42 PM,08/22/2013 10:01:14 PM,08/22/2013 10:01:46 PM,08/22/2013 10:13:18 PM,08/22/2013 10:35:08 PM,08/22/2013 11:09:35 PM,Code 2 Transport,08/22/2013 11:33:07 PM,2800 Block of MISSION ST,SF,94110,B06,11,5529,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",132340351-93 -113010378,E36,11099997,Traffic Collision,10/28/2011,10/28/2011,10/28/2011 09:28:03 PM,10/28/2011 09:28:03 PM,10/28/2011 09:28:08 PM,10/28/2011 09:29:19 PM,10/28/2011 09:30:39 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/28/2011 09:39:38 PM,MISSION ST/OTIS ST,SF,94103,B02,36,5125,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",113010378-E36 -133540182,54,13120257,Structure Fire,12/20/2013,12/20/2013,12/20/2013 11:26:03 AM,12/20/2013 11:28:44 AM,12/20/2013 11:29:09 AM,12/20/2013 11:30:25 AM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/20/2013 11:38:18 AM,300 Block of 10TH AVE,SF,94118,B07,31,7141,3,3,3,true,Alarm,1,MEDIC,7,7,1,Inner Richmond,"(37.7817833010833, -122.468703263759)",133540182-54 -123430361,E07,12114782,Traffic Collision,12/08/2012,12/08/2012,12/08/2012 09:15:45 PM,12/08/2012 09:16:56 PM,12/08/2012 09:19:26 PM,12/08/2012 09:19:58 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,No Merit,12/08/2012 09:22:34 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",123430361-E07 -160121326,52,16004743,Medical Incident,01/12/2016,01/12/2016,01/12/2016 11:01:20 AM,01/12/2016 11:02:57 AM,01/12/2016 11:03:53 AM,01/12/2016 11:04:13 AM,01/12/2016 11:11:05 AM,01/12/2016 11:31:37 AM,01/12/2016 11:51:22 AM,Code 2 Transport,01/12/2016 12:13:48 PM,2800 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6333,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7258169452923, -122.402916975907)",160121326-52 -160510948,55,16020407,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:34:56 AM,02/20/2016 09:35:35 AM,02/20/2016 09:36:08 AM,02/20/2016 09:36:15 AM,02/20/2016 09:54:41 AM,02/20/2016 10:02:30 AM,02/20/2016 10:09:02 AM,Code 2 Transport,02/20/2016 11:07:05 AM,800 Block of CLAYTON ST,San Francisco,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7656141997654, -122.447660896406)",160510948-55 -160282996,71,16011190,Medical Incident,01/28/2016,01/28/2016,01/28/2016 05:42:52 PM,01/28/2016 05:42:52 PM,01/28/2016 05:43:10 PM,01/28/2016 05:43:17 PM,01/28/2016 05:57:42 PM,01/28/2016 06:17:21 PM,01/28/2016 06:22:22 PM,Code 2 Transport,01/28/2016 07:05:33 PM,400 Block of CHURCH ST,San Francisco,94114,B02,6,523,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",160282996-71 -120970056,B01,12032012,Alarms,04/06/2012,04/05/2012,04/06/2012 07:12:23 AM,04/06/2012 07:13:31 AM,04/06/2012 07:13:45 AM,04/06/2012 07:14:57 AM,04/06/2012 07:20:00 AM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 07:22:53 AM,800 Block of BATTERY ST,SF,94111,B01,13,1155,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7990643005082, -122.401077389929)",120970056-B01 -120040234,89,12001447,Medical Incident,01/04/2012,01/04/2012,01/04/2012 03:30:30 PM,01/04/2012 03:31:20 PM,01/04/2012 03:32:22 PM,01/04/2012 03:32:32 PM,01/04/2012 03:36:49 PM,01/04/2012 03:48:52 PM,01/04/2012 04:09:08 PM,Code 2 Transport,01/04/2012 04:22:59 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",120040234-89 -160100705,79,16003942,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:19:32 AM,01/10/2016 07:20:47 AM,01/10/2016 07:21:18 AM,01/10/2016 07:21:52 AM,01/10/2016 07:32:41 AM,01/10/2016 08:15:41 AM,01/10/2016 08:27:43 AM,Code 2 Transport,01/10/2016 09:16:27 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160100705-79 -120830037,B09,12027448,Structure Fire,03/23/2012,03/22/2012,03/23/2012 04:24:36 AM,03/23/2012 04:25:48 AM,03/23/2012 04:26:07 AM,03/23/2012 04:27:40 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 04:30:33 AM,EVANS AV/NAPOLEON ST,SF,94124,B10,9,6422,3,3,3,false,Fire,1,CHIEF,12,10,10,Bayview Hunters Point,"(37.7472623482525, -122.396008614627)",120830037-B09 -160591541,89,16023513,Medical Incident,02/28/2016,02/28/2016,02/28/2016 12:40:27 PM,02/28/2016 12:41:05 PM,02/28/2016 12:41:50 PM,02/28/2016 12:41:57 PM,02/28/2016 12:43:18 PM,02/28/2016 12:53:42 PM,02/28/2016 12:58:58 PM,Code 2 Transport,02/28/2016 01:35:53 PM,MARKET ST/6TH ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160591541-89 -131140192,E15,13038445,Medical Incident,04/24/2013,04/24/2013,04/24/2013 01:10:25 PM,04/24/2013 01:10:50 PM,04/24/2013 01:17:34 PM,04/25/2016 01:53:08 PM,04/24/2013 01:17:34 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 01:29:27 PM,400 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7144912745705, -122.455997573047)",131140192-E15 -103480166,E16,10111576,Structure Fire,12/14/2010,12/14/2010,12/14/2010 10:44:25 AM,12/14/2010 10:44:26 AM,12/14/2010 10:44:49 AM,12/14/2010 10:47:22 AM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Fire,12/14/2010 10:48:37 AM,LEAVENWORTH ST/JEFFERSON ST,SF,94109,B01,28,1524,3,3,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",103480166-E16 -103470083,E03,10111199,Medical Incident,12/13/2010,12/13/2010,12/13/2010 08:43:41 AM,12/13/2010 08:44:36 AM,12/13/2010 08:45:06 AM,12/13/2010 08:47:48 AM,12/13/2010 08:50:49 AM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 09:04:13 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",103470083-E03 -122740348,55,12090533,Medical Incident,09/30/2012,09/30/2012,09/30/2012 08:39:45 PM,09/30/2012 08:40:42 PM,09/30/2012 08:40:52 PM,09/30/2012 08:41:04 PM,09/30/2012 08:44:25 PM,09/30/2012 08:57:28 PM,09/30/2012 09:06:00 PM,Code 2 Transport,09/30/2012 09:34:26 PM,800 Block of FOLSOM ST,SF,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811835585525, -122.402322293906)",122740348-55 -132720206,T12,13092467,Structure Fire,09/29/2013,09/29/2013,09/29/2013 01:53:26 PM,09/29/2013 01:53:26 PM,09/29/2013 01:53:32 PM,09/29/2013 01:54:45 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 01:57:07 PM,5TH AV/LINCOLN WY,SF,94122,B08,22,7325,3,3,3,false,Alarm,1,TRUCK,2,7,5,Inner Sunset,"(37.7661099231881, -122.462162119625)",132720206-T12 -110610086,RC1,11019928,Medical Incident,03/02/2011,03/02/2011,03/02/2011 08:03:37 AM,03/02/2011 08:05:10 AM,03/02/2011 08:06:26 AM,03/02/2011 08:14:36 AM,03/02/2011 08:19:58 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 08:48:34 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",110610086-RC1 -103280268,B01,10105140,Alarms,11/24/2010,11/24/2010,11/24/2010 06:45:19 PM,11/24/2010 06:46:26 PM,11/24/2010 06:46:42 PM,11/24/2010 06:48:14 PM,11/24/2010 06:49:28 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/24/2010 07:08:31 PM,600 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7948751336497, -122.403112031242)",103280268-B01 -130070204,AM12,13002387,Medical Incident,01/07/2013,01/07/2013,01/07/2013 01:18:46 PM,01/07/2013 01:20:13 PM,01/07/2013 01:20:36 PM,01/07/2013 01:21:21 PM,01/07/2013 01:28:07 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 02:12:56 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,1,1,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",130070204-AM12 -110280297,E36,11009319,Structure Fire,01/28/2011,01/28/2011,01/28/2011 07:25:14 PM,01/28/2011 07:25:14 PM,01/28/2011 07:25:29 PM,01/28/2011 07:26:35 PM,01/28/2011 07:28:51 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/28/2011 07:29:40 PM,100 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",110280297-E36 -160532048,87,16021249,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:54:23 PM,02/22/2016 02:55:41 PM,02/22/2016 02:56:26 PM,02/22/2016 02:56:36 PM,02/22/2016 03:00:57 PM,02/22/2016 03:17:56 PM,02/22/2016 03:52:44 PM,Code 2 Transport,02/22/2016 04:36:34 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160532048-87 -160671018,KM04,16026687,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:42:11 AM,03/07/2016 10:44:17 AM,03/07/2016 10:45:20 AM,03/07/2016 10:48:47 AM,03/07/2016 11:07:24 AM,03/07/2016 11:17:50 AM,03/07/2016 11:32:12 AM,Code 2 Transport,03/07/2016 11:58:08 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160671018-KM04 -113260265,B04,11108297,Alarms,11/22/2011,11/22/2011,11/22/2011 03:31:40 PM,11/22/2011 03:32:58 PM,11/22/2011 03:33:07 PM,11/22/2011 03:34:26 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 03:59:04 PM,3000 Block of CALIFORNIA ST,SF,94115,B04,10,4336,3,3,3,false,,1,CHIEF,3,4,2,Presidio Heights,"(37.7874884510221, -122.444566815099)",113260265-B04 -160891385,78,16035299,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:01:49 AM,03/29/2016 11:03:06 AM,03/29/2016 11:04:54 AM,03/29/2016 11:04:54 AM,03/29/2016 11:11:14 AM,03/29/2016 11:25:26 AM,03/29/2016 12:00:10 PM,Code 2 Transport,03/29/2016 12:19:09 PM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",160891385-78 -133090225,KM11,13105089,Medical Incident,11/05/2013,11/05/2013,11/05/2013 01:49:47 PM,11/05/2013 01:49:48 PM,11/05/2013 01:49:58 PM,11/05/2013 01:52:11 PM,11/05/2013 01:57:50 PM,11/05/2013 02:09:08 PM,11/05/2013 02:31:45 PM,Code 2 Transport,11/05/2013 03:20:10 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",133090225-KM11 -120510182,83,12016871,Medical Incident,02/20/2012,02/20/2012,02/20/2012 02:23:54 PM,02/20/2012 02:25:52 PM,02/20/2012 02:27:03 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 02:29:02 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,2,3,3,false,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7661343875141, -122.421935077177)",120510182-83 -160500662,64,16019993,Medical Incident,02/19/2016,02/18/2016,02/19/2016 07:53:14 AM,02/19/2016 07:54:29 AM,02/19/2016 07:55:09 AM,02/19/2016 07:56:08 AM,02/19/2016 08:07:13 AM,02/19/2016 08:27:21 AM,02/19/2016 08:56:09 AM,Code 2 Transport,02/19/2016 09:30:08 AM,200 Block of FARALLONES ST,San Francisco,94112,B09,33,8374,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7140973591305, -122.460812686036)",160500662-64 -102800320,58,10089123,Medical Incident,10/07/2010,10/07/2010,10/07/2010 08:21:14 PM,10/07/2010 08:23:01 PM,10/07/2010 08:23:22 PM,10/07/2010 08:23:34 PM,10/07/2010 08:29:23 PM,10/07/2010 08:48:09 PM,10/07/2010 08:58:39 PM,Code 2 Transport,10/07/2010 09:17:02 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,MEDIC,3,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",102800320-58 -112680215,E40,11088604,Structure Fire,09/25/2011,09/25/2011,09/25/2011 01:43:10 PM,09/25/2011 01:43:11 PM,09/25/2011 01:43:17 PM,09/25/2011 01:44:21 PM,09/25/2011 01:46:06 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Fire,09/25/2011 01:46:34 PM,25TH AV/TARAVAL ST,SF,94116,B08,40,7461,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7427672829659, -122.482121647462)",112680215-E40 -131420064,T02,13048046,Structure Fire,05/22/2013,05/21/2013,05/22/2013 06:26:30 AM,05/22/2013 06:27:51 AM,05/22/2013 06:28:25 AM,05/22/2013 06:30:16 AM,05/22/2013 06:32:12 AM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,Other,05/22/2013 06:36:50 AM,200 Block of BAY ST,SF,94133,B01,28,1341,3,3,3,false,Alarm,1,TRUCK,3,1,3,North Beach,"(37.8058720561285, -122.411119801648)",131420064-T02 -113250381,T13,11108103,Structure Fire,11/21/2011,11/21/2011,11/21/2011 11:21:34 PM,11/21/2011 11:21:34 PM,11/21/2011 11:21:45 PM,11/21/2011 11:23:53 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/21/2011 11:26:40 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7934507425915, -122.396414422165)",113250381-T13 -113490138,B03,11115765,Alarms,12/15/2011,12/15/2011,12/15/2011 11:49:24 AM,12/15/2011 11:50:46 AM,12/15/2011 11:51:01 AM,04/25/2016 02:01:08 PM,12/15/2011 11:54:50 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/15/2011 11:56:58 AM,700 Block of MINNA ST,SF,94103,B02,36,2318,3,3,3,false,,1,CHIEF,2,2,6,South of Market,"(37.7764525469621, -122.413443681945)",113490138-B03 -112380219,E31,11078572,Traffic Collision,08/26/2011,08/26/2011,08/26/2011 02:58:58 PM,08/26/2011 03:01:28 PM,08/26/2011 03:01:47 PM,08/26/2011 03:02:28 PM,08/26/2011 03:03:52 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 03:04:49 PM,PARK PRESIDIO BL/GEARY BL,SF,94118,B07,31,7146,3,3,3,false,,1,ENGINE,3,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",112380219-E31 -120640028,B03,12021004,Medical Incident,03/04/2012,03/03/2012,03/04/2012 01:46:44 AM,03/04/2012 01:49:18 AM,03/04/2012 01:50:01 AM,03/04/2012 01:52:00 AM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/04/2012 01:53:29 AM,800 Block of POST ST,SF,94109,B04,3,1543,E,E,3,false,Non Life-threatening,1,CHIEF,5,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",120640028-B03 -111690393,T13,11055889,Outside Fire,06/18/2011,06/18/2011,06/18/2011 11:49:53 PM,06/18/2011 11:49:54 PM,06/18/2011 11:50:26 PM,06/18/2011 11:52:07 PM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,Other,06/18/2011 11:56:41 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,,1,TRUCK,5,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",111690393-T13 -122670116,B09,12088158,Alarms,09/23/2012,09/23/2012,09/23/2012 09:45:59 AM,09/23/2012 09:47:14 AM,09/23/2012 09:47:48 AM,09/23/2012 09:48:54 AM,09/23/2012 09:56:32 AM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 09:58:41 AM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,Alarm,1,CHIEF,3,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",122670116-B09 -160392319,AM02,16015687,Medical Incident,02/08/2016,02/08/2016,02/08/2016 03:34:58 PM,02/08/2016 03:35:57 PM,02/08/2016 03:36:04 PM,02/08/2016 03:36:45 PM,02/08/2016 03:40:35 PM,02/08/2016 03:55:49 PM,02/08/2016 04:04:32 PM,Code 2 Transport,02/08/2016 04:31:21 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160392319-AM02 -112670018,E12,11088079,Administrative,09/24/2011,09/23/2011,09/24/2011 12:52:16 AM,09/24/2011 12:52:19 AM,09/24/2011 12:52:40 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/24/2011 12:53:04 AM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",112670018-E12 -121750286,E36,12058194,Medical Incident,06/23/2012,06/23/2012,06/23/2012 05:12:28 PM,06/23/2012 05:13:16 PM,06/23/2012 05:13:36 PM,06/23/2012 05:13:59 PM,06/23/2012 05:15:57 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 05:29:11 PM,0 Block of GROVE ST,SF,94102,B02,36,381,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",121750286-E36 -112190176,55,11072404,Medical Incident,08/07/2011,08/07/2011,08/07/2011 01:25:45 PM,08/07/2011 01:26:04 PM,08/07/2011 01:26:51 PM,08/07/2011 01:29:14 PM,08/07/2011 01:31:10 PM,08/07/2011 01:45:04 PM,08/07/2011 02:08:02 PM,Code 2 Transport,08/07/2011 02:42:41 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",112190176-55 -112500296,E02,11082550,Medical Incident,09/07/2011,09/07/2011,09/07/2011 06:34:59 PM,09/07/2011 06:36:52 PM,09/07/2011 06:36:58 PM,09/07/2011 06:38:34 PM,09/07/2011 06:40:01 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 06:54:58 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",112500296-E02 -140910275,B04,14030684,Medical Incident,04/01/2014,04/01/2014,04/01/2014 07:28:35 PM,04/01/2014 07:29:19 PM,04/01/2014 07:30:40 PM,04/01/2014 07:32:15 PM,04/01/2014 07:33:43 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,Code 2 Transport,04/01/2014 07:42:51 PM,1500 Block of BRODERICK ST,SAN FRANCISCO,94115,B05,10,4235,3,E,3,false,Potentially Life-Threatening,1,CHIEF,3,5,5,Japantown,"(37.7845624883046, -122.441511182007)",140910275-B04 -131070339,B04,13036100,Structure Fire,04/17/2013,04/17/2013,04/17/2013 07:34:36 PM,04/17/2013 07:36:23 PM,04/17/2013 07:36:31 PM,04/17/2013 07:38:04 PM,04/17/2013 07:41:11 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/17/2013 07:47:27 PM,700 Block of VAN NESS AVE,SF,94102,B02,3,3163,3,3,3,false,Alarm,1,CHIEF,8,2,6,Tenderloin,"(37.7824440383404, -122.420574545604)",131070339-B04 -91820356,E03,9054145,Alarms,07/01/2009,07/01/2009,07/01/2009 10:39:14 PM,07/01/2009 10:39:15 PM,07/01/2009 10:39:38 PM,07/01/2009 10:40:45 PM,07/01/2009 10:43:05 PM,04/25/2016 03:28:07 PM,04/25/2016 03:28:07 PM,Fire,07/01/2009 10:43:48 PM,JONES ST/TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",091820356-E03 -130900244,E42,13030171,Medical Incident,03/31/2013,03/31/2013,03/31/2013 05:07:58 PM,03/31/2013 05:08:17 PM,03/31/2013 05:08:53 PM,03/31/2013 05:10:10 PM,03/31/2013 05:12:31 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 05:29:36 PM,1900 Block of PALOU AVE,SF,94124,B10,42,6431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7376407906904, -122.397487086449)",130900244-E42 -121220055,81,12040393,Medical Incident,05/01/2012,04/30/2012,05/01/2012 07:25:17 AM,05/01/2012 07:26:58 AM,05/01/2012 07:27:11 AM,05/01/2012 07:27:29 AM,05/01/2012 07:39:03 AM,05/01/2012 07:47:19 AM,05/01/2012 08:21:45 AM,Code 2 Transport,05/01/2012 08:52:31 AM,2000 Block of CARROLL AVE,SF,94124,B10,42,6361,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7296942048902, -122.401806243154)",121220055-81 -130770257,D3,13025774,Structure Fire,03/18/2013,03/18/2013,03/18/2013 04:16:59 PM,03/18/2013 04:18:21 PM,03/18/2013 04:18:40 PM,03/18/2013 04:19:30 PM,03/18/2013 04:27:13 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 04:45:15 PM,100 Block of FARALLONES ST,SF,94112,B09,33,8372,3,3,3,false,Fire,1,CHIEF,8,9,11,Oceanview/Merced/Ingleside,"(37.714011115706, -122.457547777254)",130770257-D3 -111930165,T02,11063702,Alarms,07/12/2011,07/12/2011,07/12/2011 12:19:47 PM,07/12/2011 12:20:43 PM,07/12/2011 12:20:50 PM,07/12/2011 12:22:20 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,Other,07/12/2011 12:24:52 PM,200 Block of BEACH ST,SF,94133,B01,28,1344,3,3,3,false,,1,TRUCK,3,1,3,North Beach,"(37.8076407484143, -122.413163175978)",111930165-T02 -113010123,B02,11099792,Alarms,10/28/2011,10/28/2011,10/28/2011 10:16:30 AM,10/28/2011 10:17:32 AM,10/28/2011 10:18:25 AM,10/28/2011 10:19:09 AM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 10:23:00 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,,1,CHIEF,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",113010123-B02 -110810281,68,11026733,Structure Fire,03/22/2011,03/22/2011,03/22/2011 06:46:43 PM,03/22/2011 06:47:11 PM,03/22/2011 06:47:56 PM,03/22/2011 06:48:21 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 06:57:48 PM,1300 Block of 34TH AVE,SF,94122,B08,23,7564,3,3,3,true,,1,MEDIC,9,8,4,Sunset/Parkside,"(37.7619197513964, -122.49320253975)",110810281-68 -121570192,67,12051954,Medical Incident,06/05/2012,06/05/2012,06/05/2012 01:45:12 PM,06/05/2012 01:46:47 PM,06/05/2012 01:48:22 PM,06/05/2012 01:48:32 PM,06/05/2012 02:05:28 PM,04/25/2016 01:58:21 PM,06/05/2012 02:24:05 PM,No Merit,06/05/2012 02:37:25 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",121570192-67 -160662157,67,16026438,Medical Incident,03/06/2016,03/06/2016,03/06/2016 04:03:56 PM,03/06/2016 04:04:20 PM,03/06/2016 04:05:52 PM,03/06/2016 04:06:11 PM,03/06/2016 04:15:13 PM,03/06/2016 04:32:39 PM,03/06/2016 05:09:14 PM,Code 2 Transport,03/06/2016 05:54:35 PM,2400 Block of IRVING ST,San Francisco,94122,B08,22,7511,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7632001492367, -122.484086270841)",160662157-67 -133180215,77,13108103,Medical Incident,11/14/2013,11/14/2013,11/14/2013 01:41:38 PM,11/14/2013 01:42:17 PM,11/14/2013 01:42:49 PM,04/25/2016 01:49:46 PM,11/14/2013 01:49:57 PM,11/14/2013 02:05:15 PM,11/14/2013 02:54:44 PM,Code 2 Transport,11/14/2013 03:08:07 PM,100 Block of PHELAN AVE,SF,94112,B09,15,8233,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",133180215-77 -160863620,AM22,16034361,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:37:55 PM,03/26/2016 09:39:39 PM,03/26/2016 09:40:11 PM,03/26/2016 09:41:29 PM,03/26/2016 09:54:18 PM,03/26/2016 10:07:37 PM,03/26/2016 10:23:05 PM,Code 2 Transport,03/26/2016 10:48:22 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160863620-AM22 -122970245,T06,12098539,Vehicle Fire,10/23/2012,10/23/2012,10/23/2012 04:36:29 PM,10/23/2012 04:37:35 PM,10/23/2012 04:37:43 PM,10/23/2012 04:38:50 PM,10/23/2012 04:42:23 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 04:46:46 PM,800 Block of NOE ST,SF,94114,B06,24,5466,3,3,3,false,Fire,1,TRUCK,1,6,8,Noe Valley,"(37.7558203733016, -122.432361430986)",122970245-T06 -120210326,D3,12007245,Structure Fire,01/21/2012,01/21/2012,01/21/2012 06:18:48 PM,01/21/2012 06:20:09 PM,01/21/2012 06:20:51 PM,01/21/2012 06:24:19 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/21/2012 06:28:21 PM,5100 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,3,3,3,false,Fire,1,CHIEF,6,6,8,Noe Valley,"(37.7468468006918, -122.44040482926)",120210326-D3 -123070265,T15,12102079,Structure Fire,11/02/2012,11/02/2012,11/02/2012 04:18:41 PM,11/02/2012 04:19:29 PM,11/02/2012 04:19:52 PM,11/02/2012 04:22:05 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Other,11/02/2012 04:48:07 PM,100 Block of VERNON ST,SF,94132,B09,33,8411,3,3,3,false,Alarm,1,TRUCK,4,9,11,Oceanview/Merced/Ingleside,"(37.7151851228467, -122.467937184941)",123070265-T15 -132310265,77,13078071,Medical Incident,08/19/2013,08/19/2013,08/19/2013 03:36:58 PM,08/19/2013 03:37:09 PM,08/19/2013 03:50:36 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 03:52:58 PM,700 Block of NAPLES ST,SF,94112,B09,43,6136,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7169383088271, -122.434084553161)",132310265-77 -102820309,55,10089788,Medical Incident,10/09/2010,10/09/2010,10/09/2010 05:00:32 PM,10/09/2010 05:01:13 PM,10/09/2010 05:01:43 PM,10/09/2010 05:01:52 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Unable to Locate,10/09/2010 05:04:30 PM,MARKET ST/5TH ST,SF,94103,B03,1,1364,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",102820309-55 -112570333,93,11084879,Traffic Collision,09/14/2011,09/14/2011,09/14/2011 10:25:34 PM,09/14/2011 10:27:27 PM,09/14/2011 10:27:42 PM,09/14/2011 10:27:46 PM,09/14/2011 10:52:47 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Patient Declined Transport,09/14/2011 10:57:30 PM,BROADWAY/MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.7982229704871, -122.403863019987)",112570333-93 -112840231,RS1,11094049,Medical Incident,10/11/2011,10/11/2011,10/11/2011 02:05:31 PM,10/11/2011 02:06:08 PM,10/11/2011 02:07:13 PM,10/11/2011 02:07:24 PM,10/11/2011 02:11:03 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 02:21:10 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",112840231-RS1 -110850233,E43,11028067,Medical Incident,03/26/2011,03/26/2011,03/26/2011 02:45:32 PM,03/26/2011 02:47:22 PM,03/26/2011 02:47:40 PM,03/26/2011 02:49:20 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 02:49:44 PM,600 Block of MOSCOW ST,SF,94112,B09,43,6162,3,3,3,false,,1,ENGINE,3,9,11,Excelsior,"(37.7173988818662, -122.430625202739)",110850233-E43 -122710067,66,12089344,Traffic Collision,09/27/2012,09/27/2012,09/27/2012 08:22:33 AM,09/27/2012 08:23:29 AM,09/27/2012 08:23:52 AM,09/27/2012 08:24:03 AM,09/27/2012 08:29:04 AM,09/27/2012 08:47:36 AM,09/27/2012 08:52:05 AM,Code 2 Transport,09/27/2012 09:20:19 AM,7TH ST/BRANNAN ST,SF,94103,B03,8,2276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7730511015721, -122.40320508207)",122710067-66 -131120307,87,13037799,Medical Incident,04/22/2013,04/22/2013,04/22/2013 04:08:04 PM,04/22/2013 04:11:08 PM,04/22/2013 04:11:15 PM,04/22/2013 04:14:42 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/22/2013 04:22:06 PM,800 Block of 4TH ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7760987706343, -122.393645894609)",131120307-87 -103050119,E17,10097433,Structure Fire,11/01/2010,11/01/2010,11/01/2010 08:32:18 AM,11/01/2010 08:33:33 AM,11/01/2010 08:33:52 AM,11/01/2010 08:34:55 AM,11/01/2010 08:37:30 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 09:02:15 AM,2900 Block of ARELIOUS WALKER DR,SF,94124,B10,17,6611,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7175204188461, -122.386036613702)",103050119-E17 -102550256,86,10080707,Medical Incident,09/12/2010,09/12/2010,09/12/2010 08:05:39 PM,09/12/2010 08:06:34 PM,09/12/2010 08:06:52 PM,09/12/2010 08:07:16 PM,09/12/2010 08:11:58 PM,09/12/2010 08:20:57 PM,09/12/2010 08:27:40 PM,Code 2 Transport,09/12/2010 08:49:43 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",102550256-86 -122260334,82,12075049,Medical Incident,08/13/2012,08/13/2012,08/13/2012 07:54:29 PM,08/13/2012 07:56:48 PM,08/13/2012 07:57:46 PM,08/13/2012 07:58:00 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Unable to Locate,08/13/2012 08:08:10 PM,MISSION ST/8TH ST,SF,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",122260334-82 -112310312,E33,11076390,Medical Incident,08/19/2011,08/19/2011,08/19/2011 08:28:45 PM,08/19/2011 08:30:26 PM,08/19/2011 08:30:39 PM,08/19/2011 08:31:38 PM,08/19/2011 08:41:16 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 08:45:49 PM,ALEMANY BL/SAGAMORE ST,SF,94132,B09,33,8375,3,3,3,true,,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7114225423407, -122.463030028642)",112310312-E33 -120660261,T19,12021887,Alarms,03/06/2012,03/06/2012,03/06/2012 03:17:32 PM,03/06/2012 03:18:38 PM,03/06/2012 03:19:29 PM,03/06/2012 03:21:24 PM,03/06/2012 03:25:22 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 03:35:43 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",120660261-T19 -113620215,E13,11120278,Medical Incident,12/28/2011,12/28/2011,12/28/2011 02:14:21 PM,12/28/2011 02:15:47 PM,12/28/2011 02:16:04 PM,12/28/2011 02:16:21 PM,12/28/2011 02:20:49 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,No Merit,12/28/2011 02:22:32 PM,0 Block of SPOFFORD ST,SF,94108,B01,13,1313,2,2,2,true,,1,ENGINE,1,1,3,Chinatown,"(37.7945675420713, -122.407457808544)",113620215-E13 -123520307,RC2,12117844,Medical Incident,12/17/2012,12/17/2012,12/17/2012 05:29:32 PM,12/17/2012 05:29:56 PM,12/17/2012 05:30:40 PM,12/17/2012 05:30:55 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 05:35:12 PM,2000 Block of 36TH AVE,SF,94116,B08,18,7556,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7487764204802, -122.494293052572)",123520307-RC2 -113020287,E39,11100282,Medical Incident,10/29/2011,10/29/2011,10/29/2011 05:12:27 PM,10/29/2011 05:13:22 PM,10/29/2011 05:13:31 PM,10/29/2011 05:14:15 PM,10/29/2011 05:17:50 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Patient Declined Transport,10/29/2011 05:33:54 PM,200 Block of BELLA VISTA WAY,SF,94127,B09,39,8252,3,2,2,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7379099151773, -122.449732963987)",113020287-E39 -102450204,E20,10077334,Structure Fire,09/02/2010,09/02/2010,09/02/2010 11:39:43 AM,09/02/2010 11:42:06 AM,09/02/2010 11:42:27 AM,09/02/2010 11:43:24 AM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Other,09/02/2010 11:46:58 AM,2300 Block of 29TH AVE,SF,94116,B08,18,7522,3,3,3,true,,1,ENGINE,8,8,4,Sunset/Parkside,"(37.7435152572442, -122.486402984833)",102450204-E20 -112090003,E06,11068859,Alarms,07/28/2011,07/27/2011,07/28/2011 12:18:05 AM,07/28/2011 12:19:19 AM,07/28/2011 12:19:27 AM,07/28/2011 12:21:08 AM,07/28/2011 12:22:19 AM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 12:32:58 AM,400 Block of CHURCH ST,SF,94114,B02,6,523,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",112090003-E06 -110860373,B03,11028534,Alarms,03/27/2011,03/27/2011,03/27/2011 09:47:20 PM,03/27/2011 09:47:30 PM,03/27/2011 09:47:36 PM,03/27/2011 09:49:12 PM,03/27/2011 09:52:32 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,Fire,03/27/2011 09:59:53 PM,100 Block of SPEAR ST,SF,94105,B03,35,2114,3,3,3,false,,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7919628053601, -122.393243014407)",110860373-B03 -160672894,KM01,16026874,Medical Incident,03/07/2016,03/07/2016,03/07/2016 07:11:42 PM,03/07/2016 07:12:50 PM,03/07/2016 07:14:18 PM,03/07/2016 07:18:08 PM,03/07/2016 07:28:04 PM,03/07/2016 07:42:54 PM,03/07/2016 07:47:24 PM,Code 2 Transport,03/07/2016 08:04:02 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160672894-KM01 -112470032,E07,11081332,Medical Incident,09/04/2011,09/03/2011,09/04/2011 02:14:42 AM,09/04/2011 02:15:20 AM,09/04/2011 02:15:42 AM,09/04/2011 02:19:16 AM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Other,09/04/2011 02:19:18 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,2,2,true,,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",112470032-E07 -113410319,85,11113159,Medical Incident,12/07/2011,12/07/2011,12/07/2011 06:12:03 PM,12/07/2011 06:12:27 PM,12/07/2011 06:13:01 PM,12/07/2011 06:13:15 PM,12/07/2011 06:16:26 PM,12/07/2011 06:44:22 PM,12/07/2011 07:03:06 PM,Code 2 Transport,12/07/2011 07:32:02 PM,300 Block of CAPP ST,SF,94110,B06,7,5433,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7610971516416, -122.41826370633)",113410319-85 -132000398,79,13067986,Traffic Collision,07/19/2013,07/19/2013,07/19/2013 10:53:19 PM,07/19/2013 10:53:42 PM,07/19/2013 10:53:51 PM,07/19/2013 10:54:02 PM,07/19/2013 10:56:46 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Patient Declined Transport,07/19/2013 11:33:37 PM,VAN NESS AV/MCALLISTER ST,SF,94102,B02,36,3164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",132000398-79 -122630028,99,12086738,Medical Incident,09/19/2012,09/18/2012,09/19/2012 02:17:56 AM,09/19/2012 02:18:55 AM,09/19/2012 02:19:32 AM,09/19/2012 02:19:44 AM,09/19/2012 02:29:10 AM,09/19/2012 02:34:47 AM,09/19/2012 02:50:42 AM,Code 2 Transport,09/19/2012 03:08:16 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,1,2,false,Non Life-threatening,1,MEDIC,1,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",122630028-99 -130950332,94,13031939,Medical Incident,04/05/2013,04/05/2013,04/05/2013 06:45:53 PM,04/05/2013 06:47:25 PM,04/05/2013 06:49:43 PM,04/05/2013 06:49:56 PM,04/05/2013 07:19:54 PM,04/05/2013 07:33:43 PM,04/05/2013 07:41:19 PM,Code 2 Transport,04/05/2013 08:12:08 PM,0 Block of MASONIC AVE,SF,94118,B05,10,4411,3,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7837280171919, -122.447368375734)",130950332-94 -112860209,B04,11094756,Alarms,10/13/2011,10/13/2011,10/13/2011 12:46:28 PM,10/13/2011 12:48:04 PM,10/13/2011 12:48:17 PM,10/13/2011 12:49:27 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Fire,10/13/2011 01:00:53 PM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,3,3,false,,1,CHIEF,3,1,3,Financial District/South Beach,"(37.79330670928, -122.402930381265)",112860209-B04 -130450061,RC1,13015157,Medical Incident,02/14/2013,02/13/2013,02/14/2013 07:13:31 AM,02/14/2013 07:14:04 AM,02/14/2013 07:14:22 AM,02/14/2013 07:15:18 AM,02/14/2013 07:23:45 AM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Medical Examiner,02/14/2013 08:13:42 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",130450061-RC1 -111500312,B01,11049819,Alarms,05/30/2011,05/30/2011,05/30/2011 09:33:53 PM,05/30/2011 09:35:05 PM,05/30/2011 09:35:10 PM,05/30/2011 09:36:04 PM,05/30/2011 09:37:59 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Fire,05/30/2011 09:43:01 PM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,,1,CHIEF,2,1,3,North Beach,"(37.8055721065651, -122.414433429446)",111500312-B01 -130400052,AM18,13013548,Medical Incident,02/09/2013,02/08/2013,02/09/2013 02:35:21 AM,02/09/2013 02:35:52 AM,02/09/2013 02:36:11 AM,02/09/2013 02:36:52 AM,02/09/2013 02:47:03 AM,02/09/2013 03:04:11 AM,02/09/2013 03:17:48 AM,Code 2 Transport,02/09/2013 04:06:04 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",130400052-AM18 -111230065,E16,11040534,Structure Fire,05/03/2011,05/02/2011,05/03/2011 06:02:41 AM,05/03/2011 06:03:32 AM,05/03/2011 06:04:18 AM,05/03/2011 06:06:59 AM,05/03/2011 06:08:34 AM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,05/03/2011 06:11:07 AM,STEINER ST/UNION ST,SF,94123,B04,16,3611,3,3,3,true,,1,ENGINE,4,4,2,Marina,"(37.7968793413582, -122.437137701576)",111230065-E16 -123140160,E03,12104470,Medical Incident,11/09/2012,11/09/2012,11/09/2012 11:20:53 AM,11/09/2012 11:23:05 AM,11/09/2012 11:23:16 AM,11/09/2012 11:24:04 AM,11/09/2012 11:27:24 AM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/09/2012 11:35:17 AM,500 Block of POST ST,SF,94102,B01,3,1451,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",123140160-E03 -121100029,B07,12036251,Structure Fire,04/19/2012,04/18/2012,04/19/2012 03:14:02 AM,04/19/2012 03:15:51 AM,04/19/2012 03:16:12 AM,04/19/2012 03:17:10 AM,04/19/2012 03:21:17 AM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/19/2012 03:36:55 AM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,Fire,1,CHIEF,4,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",121100029-B07 -140320191,E44,14010844,Medical Incident,02/01/2014,02/01/2014,02/01/2014 01:38:52 PM,02/01/2014 01:39:38 PM,02/01/2014 01:40:00 PM,02/01/2014 01:41:48 PM,02/01/2014 01:44:45 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 01:50:35 PM,200 Block of HAMILTON ST,SF,94134,B10,42,6342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7279029896841, -122.410205044034)",140320191-E44 -160751150,65,16029658,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:21:35 AM,03/15/2016 10:21:35 AM,03/15/2016 10:23:44 AM,03/15/2016 10:23:57 AM,03/15/2016 10:27:45 AM,03/15/2016 10:45:01 AM,03/15/2016 11:04:18 AM,Code 2 Transport,03/15/2016 11:58:40 AM,LINCOLN WY/19TH AV,San Francisco,94122,B08,22,7367,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,4,Sunset/Parkside,"(37.7654479866215, -122.477308393483)",160751150-65 -111840112,T03,11060721,Alarms,07/03/2011,07/03/2011,07/03/2011 09:27:30 AM,07/03/2011 09:28:15 AM,07/03/2011 09:28:29 AM,07/03/2011 09:30:39 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 09:33:10 AM,1800 Block of BUSH ST,SF,94109,B04,38,3363,3,3,3,false,,1,TRUCK,3,4,5,Pacific Heights,"(37.7878107347911, -122.427705816518)",111840112-T03 -160813919,KM07,16032392,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:35:16 PM,03/21/2016 10:36:34 PM,03/21/2016 10:37:30 PM,03/21/2016 10:38:30 PM,03/21/2016 10:42:39 PM,03/21/2016 11:01:56 PM,03/21/2016 11:23:41 PM,Code 2 Transport,03/22/2016 12:10:52 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160813919-KM07 -122600219,AM04,12085977,Medical Incident,09/16/2012,09/16/2012,09/16/2012 04:30:45 PM,09/16/2012 04:32:34 PM,09/16/2012 04:33:18 PM,09/16/2012 04:34:05 PM,09/16/2012 04:36:55 PM,09/16/2012 05:05:29 PM,09/16/2012 05:05:41 PM,Code 3 Transport,09/16/2012 06:07:09 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",122600219-AM04 -123320152,E41,12110327,Medical Incident,11/27/2012,11/27/2012,11/27/2012 12:06:25 PM,11/27/2012 12:07:41 PM,11/27/2012 12:08:13 PM,11/27/2012 12:10:36 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/27/2012 12:13:16 PM,VAN NESS AV/PACIFIC AV,SF,94109,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,3,Russian Hill,"(37.7948173544208, -122.423227147276)",123320152-E41 -160410959,52,16016376,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:15:24 AM,02/10/2016 09:15:55 AM,02/10/2016 09:16:10 AM,02/10/2016 09:16:22 AM,02/10/2016 09:23:09 AM,02/10/2016 09:33:54 AM,02/10/2016 09:50:26 AM,Code 2 Transport,02/10/2016 10:10:15 AM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160410959-52 -140400111,KM10,14013506,Medical Incident,02/09/2014,02/08/2014,02/09/2014 07:39:43 AM,02/09/2014 07:41:28 AM,02/09/2014 07:41:55 AM,02/09/2014 07:42:32 AM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/09/2014 09:26:02 AM,600 Block of COMMERCIAL ST,SF,94111,B01,13,1233,,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.794064372319, -122.403868638307)",140400111-KM10 -132190360,85,13074097,Medical Incident,08/07/2013,08/07/2013,08/07/2013 08:16:55 PM,08/07/2013 08:19:16 PM,08/07/2013 08:19:58 PM,08/07/2013 08:20:28 PM,08/07/2013 08:27:08 PM,08/07/2013 08:37:08 PM,08/07/2013 08:42:42 PM,Code 2 Transport,08/07/2013 08:59:42 PM,GEARY ST/LARKIN ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",132190360-85 -160510344,62,16020339,Medical Incident,02/20/2016,02/19/2016,02/20/2016 02:49:06 AM,02/20/2016 02:49:22 AM,02/20/2016 02:49:42 AM,02/20/2016 02:49:50 AM,02/20/2016 02:59:52 AM,02/20/2016 03:25:25 AM,02/20/2016 03:58:08 AM,Code 2 Transport,02/20/2016 03:59:49 AM,100 Block of MERCURY ST,San Francisco,94124,B10,42,6447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7310022791009, -122.401104010815)",160510344-62 -111490052,E06,11049295,Medical Incident,05/29/2011,05/28/2011,05/29/2011 05:37:47 AM,05/29/2011 05:38:45 AM,05/29/2011 05:39:51 AM,05/29/2011 05:41:44 AM,05/29/2011 05:44:51 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 06:13:26 AM,100 Block of STATES ST,SF,94114,B05,6,5253,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",111490052-E06 -131140054,E21,13038334,Alarms,04/24/2013,04/23/2013,04/24/2013 06:54:41 AM,04/24/2013 06:55:37 AM,04/24/2013 06:55:59 AM,04/24/2013 06:56:43 AM,04/24/2013 07:01:10 AM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/24/2013 07:08:33 AM,CALL BOX: DUBOCE AV/BUENA VISTA EAST AV,SF,94117,B05,21,5135,3,3,3,false,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.7691273566993, -122.43556377085)",131140054-E21 -140170237,B04,14005871,Traffic Collision,01/17/2014,01/17/2014,01/17/2014 03:18:12 PM,01/17/2014 03:19:25 PM,01/17/2014 03:21:09 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 03:21:48 PM,BRODERICK ST/BUSH ST,SF,94115,B04,10,4234,,3,3,false,Potentially Life-Threatening,1,CHIEF,6,4,2,Pacific Heights,"(37.7859677452086, -122.441726319715)",140170237-B04 -140450360,E01,14015469,Structure Fire,02/14/2014,02/14/2014,02/14/2014 09:54:27 PM,02/14/2014 09:56:10 PM,02/14/2014 09:57:17 PM,02/14/2014 09:59:42 PM,02/14/2014 10:00:02 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 10:09:56 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",140450360-E01 -160902537,59,16035786,Medical Incident,03/30/2016,03/30/2016,03/30/2016 03:49:01 PM,03/30/2016 03:49:31 PM,03/30/2016 03:49:53 PM,03/30/2016 03:50:04 PM,03/30/2016 04:01:27 PM,03/30/2016 04:14:28 PM,03/30/2016 04:25:14 PM,Code 2 Transport,03/30/2016 05:08:55 PM,200 Block of CASHMERE ST,San Francisco,94124,B10,17,6517,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7362537955292, -122.387097160369)",160902537-59 -121980362,KM04,12065969,Medical Incident,07/16/2012,07/16/2012,07/16/2012 11:55:48 PM,07/16/2012 11:56:43 PM,07/16/2012 11:57:14 PM,07/16/2012 11:58:57 PM,07/17/2012 12:02:44 AM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Against Medical Advice,07/17/2012 12:38:56 AM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",121980362-KM04 -140410191,E12,14013927,Alarms,02/10/2014,02/10/2014,02/10/2014 12:04:27 PM,02/10/2014 12:04:47 PM,02/10/2014 12:04:56 PM,02/10/2014 12:05:26 PM,02/10/2014 12:08:13 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 12:15:24 PM,0 Block of IRVING ST,SF,94122,B05,12,7321,3,3,3,true,Alarm,1,ENGINE,1,5,5,Inner Sunset,"(37.7643374924183, -122.458207337502)",140410191-E12 -130010100,AM04,13000068,Medical Incident,01/01/2013,12/31/2012,01/01/2013 01:34:17 AM,01/01/2013 01:34:29 AM,01/01/2013 01:40:59 AM,01/01/2013 01:42:49 AM,01/01/2013 01:47:17 AM,01/01/2013 01:53:28 AM,04/25/2016 01:55:02 PM,Code 2 Transport,01/01/2013 01:55:08 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",130010100-AM04 -122320273,88,12077027,Medical Incident,08/19/2012,08/19/2012,08/19/2012 05:40:09 PM,08/19/2012 05:40:29 PM,08/19/2012 05:41:40 PM,08/19/2012 05:42:00 PM,08/19/2012 05:45:25 PM,08/19/2012 05:58:31 PM,08/19/2012 06:08:21 PM,Code 2 Transport,08/19/2012 06:35:14 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",122320273-88 -160603431,AM20,16024085,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:03:18 PM,02/29/2016 09:06:50 PM,02/29/2016 09:08:20 PM,02/29/2016 09:10:56 PM,02/29/2016 09:17:40 PM,02/29/2016 09:35:49 PM,02/29/2016 09:53:26 PM,Code 2 Transport,02/29/2016 10:13:26 PM,1500 Block of 48TH AVE,San Francisco,94122,B08,23,7717,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7575292588802, -122.507939651503)",160603431-AM20 -111790182,T16,11059113,Other,06/28/2011,06/28/2011,06/28/2011 01:45:48 PM,06/28/2011 01:46:35 PM,06/28/2011 01:46:43 PM,06/28/2011 01:49:31 PM,06/28/2011 01:54:36 PM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Fire,06/28/2011 02:03:36 PM,HYDE ST/GREEN ST,SF,94109,B01,41,1611,3,3,3,false,,1,TRUCK,1,1,3,Russian Hill,"(37.7982645786383, -122.418859875328)",111790182-T16 -131040179,T09,13034914,Structure Fire,04/14/2013,04/14/2013,04/14/2013 11:30:31 AM,04/14/2013 11:30:31 AM,04/14/2013 11:30:40 AM,04/14/2013 11:31:44 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 11:33:16 AM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",131040179-T09 -121730093,82,12057369,Traffic Collision,06/21/2012,06/21/2012,06/21/2012 08:13:59 AM,06/21/2012 08:14:10 AM,06/21/2012 08:14:32 AM,06/21/2012 08:15:02 AM,06/21/2012 08:21:04 AM,06/21/2012 08:27:47 AM,06/21/2012 08:44:17 AM,Code 2 Transport,06/21/2012 09:16:38 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",121730093-82 -102930276,78,10093520,Medical Incident,10/20/2010,10/20/2010,10/20/2010 04:59:57 PM,10/20/2010 05:02:16 PM,10/20/2010 05:08:15 PM,10/20/2010 05:09:36 PM,10/20/2010 05:28:52 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,No Merit,10/20/2010 05:28:58 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",102930276-78 -133470371,88,13117906,Medical Incident,12/13/2013,12/13/2013,12/13/2013 09:07:06 PM,12/13/2013 09:07:14 PM,12/13/2013 09:07:37 PM,12/13/2013 09:08:03 PM,12/13/2013 09:25:07 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 09:25:50 PM,MARKET ST/MASON ST,SF,94103,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",133470371-88 -131030336,KM07,13034722,Medical Incident,04/13/2013,04/13/2013,04/13/2013 09:01:50 PM,04/13/2013 09:04:26 PM,04/13/2013 09:06:07 PM,04/13/2013 09:10:01 PM,04/13/2013 09:12:34 PM,04/13/2013 10:04:21 PM,04/13/2013 10:11:03 PM,Code 2 Transport,04/13/2013 11:01:30 PM,3200 Block of LAGUNA ST,SF,94123,B04,16,3352,1,1,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.8012230960553, -122.431196838927)",131030336-KM07 -160643265,KM11,16025649,Medical Incident,03/04/2016,03/04/2016,03/04/2016 07:04:56 PM,03/04/2016 07:09:52 PM,03/04/2016 07:10:32 PM,03/04/2016 07:11:00 PM,03/04/2016 07:23:16 PM,03/04/2016 07:38:16 PM,03/04/2016 07:57:00 PM,Code 2 Transport,03/04/2016 08:27:18 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.769082767924, -122.413353472663)",160643265-KM11 -112740338,E40,11090747,Fuel Spill,10/01/2011,10/01/2011,10/01/2011 07:09:00 PM,10/01/2011 07:15:45 PM,10/01/2011 07:18:24 PM,10/01/2011 07:19:35 PM,10/01/2011 07:23:17 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Other,10/01/2011 07:31:03 PM,1800 Block of 19TH AVE,SF,94122,B08,40,7421,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7533043260005, -122.476491147806)",112740338-E40 -130930167,E07,13031122,Administrative,04/03/2013,04/03/2013,04/03/2013 12:26:43 PM,04/03/2013 12:26:58 PM,04/03/2013 12:27:09 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Other,04/03/2013 12:27:29 PM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",130930167-E07 -160232072,77,16009190,Medical Incident,01/23/2016,01/23/2016,01/23/2016 02:50:21 PM,01/23/2016 02:50:39 PM,01/23/2016 02:51:03 PM,01/23/2016 02:51:24 PM,01/23/2016 02:58:01 PM,01/23/2016 03:03:42 PM,01/23/2016 03:09:25 PM,Code 3 Transport,01/23/2016 04:00:13 PM,100 Block of HARBOR RD,San Francisco,94124,B10,17,6627,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160232072-77 -113350144,E43,11110869,Electrical Hazard,12/01/2011,12/01/2011,12/01/2011 11:20:36 AM,12/01/2011 11:23:54 AM,12/01/2011 11:24:17 AM,12/01/2011 11:26:16 AM,12/01/2011 11:28:36 AM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Fire,12/01/2011 11:41:46 AM,500 Block of LONDON ST,SF,94112,B09,43,6126,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7204577457452, -122.43703098791)",113350144-E43 -110060128,E41,11001927,Medical Incident,01/06/2011,01/06/2011,01/06/2011 09:49:52 AM,01/06/2011 09:51:21 AM,01/06/2011 09:51:31 AM,01/06/2011 09:52:45 AM,01/06/2011 09:54:10 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 10:04:36 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",110060128-E41 -110400234,96,11013278,Medical Incident,02/09/2011,02/09/2011,02/09/2011 02:19:31 PM,02/09/2011 02:21:44 PM,02/09/2011 02:22:15 PM,02/09/2011 02:22:51 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,04/25/2016 02:06:10 PM,900 Block of MARKET ST,SF,94102,B03,1,2247,3,3,3,true,,1,MEDIC,3,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",110400234-96 -132440106,85,13082286,Medical Incident,09/01/2013,09/01/2013,09/01/2013 09:43:14 AM,09/01/2013 09:48:37 AM,09/01/2013 09:48:56 AM,09/01/2013 09:49:28 AM,09/01/2013 10:08:03 AM,09/01/2013 10:15:11 AM,09/01/2013 10:40:01 AM,Code 2 Transport,09/01/2013 11:01:03 AM,1200 Block of HAIGHT ST,SF,94117,B05,21,4353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",132440106-85 -121850342,B06,12061757,Structure Fire,07/03/2012,07/03/2012,07/03/2012 08:11:37 PM,07/03/2012 08:12:42 PM,07/03/2012 08:13:14 PM,07/03/2012 08:14:19 PM,07/03/2012 08:16:18 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Other,07/03/2012 09:31:19 PM,3100 Block of 25TH ST,SF,94110,B06,7,5533,3,3,3,false,Fire,1,CHIEF,1,6,9,Mission,"(37.7510387026502, -122.412580809695)",121850342-B06 -111130045,82,11037228,Medical Incident,04/23/2011,04/22/2011,04/23/2011 03:14:55 AM,04/23/2011 03:17:46 AM,04/23/2011 03:20:11 AM,04/23/2011 03:20:50 AM,04/23/2011 03:32:32 AM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Unable to Locate,04/23/2011 03:49:26 AM,1600 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,1,1,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",111130045-82 -111210010,E36,11039793,Structure Fire,05/01/2011,04/30/2011,05/01/2011 12:24:35 AM,05/01/2011 12:24:44 AM,05/01/2011 12:25:18 AM,05/01/2011 12:26:11 AM,05/01/2011 12:27:17 AM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,05/01/2011 12:35:34 AM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7737629752818, -122.417960394107)",111210010-E36 -160040216,KM07,16001440,Medical Incident,01/04/2016,01/03/2016,01/04/2016 02:20:44 AM,01/04/2016 02:21:44 AM,01/04/2016 02:21:55 AM,01/04/2016 02:22:28 AM,01/04/2016 02:27:57 AM,01/04/2016 02:40:07 AM,01/04/2016 02:48:51 AM,Code 2 Transport,01/04/2016 03:22:20 AM,100 Block of COLUMBUS AVE,San Francisco,94133,B01,13,1246,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7965641992536, -122.404895799327)",160040216-KM07 -132330341,T19,13078805,Other,08/21/2013,08/21/2013,08/21/2013 08:30:38 PM,08/21/2013 08:31:48 PM,08/21/2013 08:33:17 PM,08/21/2013 08:34:26 PM,08/21/2013 08:40:12 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/21/2013 09:29:58 PM,300 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,3,3,3,false,Alarm,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7136355752601, -122.455988095026)",132330341-T19 -112790068,85,11092256,Medical Incident,10/06/2011,10/05/2011,10/06/2011 07:43:33 AM,10/06/2011 07:45:28 AM,10/06/2011 07:48:28 AM,10/06/2011 07:48:48 AM,10/06/2011 07:58:20 AM,10/06/2011 08:31:15 AM,10/06/2011 08:37:53 AM,Code 2 Transport,10/06/2011 09:12:10 AM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,2,2,2,false,,1,MEDIC,1,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",112790068-85 -120640289,E29,12021233,Other,03/04/2012,03/04/2012,03/04/2012 05:38:24 PM,03/04/2012 05:38:49 PM,03/04/2012 05:38:57 PM,03/04/2012 05:39:12 PM,03/04/2012 05:48:30 PM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Fire,03/04/2012 05:51:33 PM,SOUTH VAN NESS AV/15TH ST,SF,94103,B02,7,5225,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7668052440942, -122.417645453705)",120640289-E29 -113360053,54,11111120,Medical Incident,12/02/2011,12/01/2011,12/02/2011 05:02:44 AM,12/02/2011 05:04:25 AM,12/02/2011 05:04:57 AM,12/02/2011 05:05:41 AM,12/02/2011 05:15:30 AM,12/02/2011 05:32:38 AM,12/02/2011 06:23:35 AM,Code 2 Transport,12/02/2011 06:43:23 AM,200 Block of BEMIS ST,SF,94131,B06,26,8111,3,3,3,true,,1,MEDIC,2,6,8,Glen Park,"(37.7362600793533, -122.431968173638)",113360053-54 -122450070,B02,12080905,Alarms,09/01/2012,08/31/2012,09/01/2012 05:40:41 AM,09/01/2012 05:41:17 AM,09/01/2012 05:41:43 AM,09/01/2012 05:43:19 AM,09/01/2012 05:49:15 AM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Fire,09/01/2012 05:49:33 AM,200 Block of 7TH ST,SF,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7774003641379, -122.408565501698)",122450070-B02 -102900281,61,10092593,Medical Incident,10/17/2010,10/17/2010,10/17/2010 06:54:09 PM,10/17/2010 06:55:55 PM,10/17/2010 06:56:16 PM,10/17/2010 06:56:52 PM,10/17/2010 07:01:45 PM,10/17/2010 07:39:01 PM,10/17/2010 07:55:36 PM,Code 2 Transport,10/17/2010 08:27:09 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",102900281-61 -130730213,87,13024369,Medical Incident,03/14/2013,03/14/2013,03/14/2013 02:55:11 PM,03/14/2013 02:56:01 PM,03/14/2013 02:59:02 PM,03/14/2013 02:59:07 PM,03/14/2013 03:14:11 PM,03/14/2013 03:30:12 PM,03/14/2013 03:35:42 PM,Code 2 Transport,03/14/2013 04:09:52 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",130730213-87 -160210554,53,16008263,Medical Incident,01/21/2016,01/20/2016,01/21/2016 06:55:28 AM,01/21/2016 06:56:56 AM,01/21/2016 06:57:15 AM,01/21/2016 06:58:08 AM,01/21/2016 07:00:48 AM,01/21/2016 07:19:11 AM,01/21/2016 07:43:56 AM,Code 2 Transport,01/21/2016 08:24:15 AM,2300 Block of OAKDALE AVE,San Francisco,94124,B10,9,6377,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7414686184082, -122.402330684328)",160210554-53 -160322987,65,16012708,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:43:02 PM,02/01/2016 06:43:42 PM,02/01/2016 06:43:47 PM,02/01/2016 06:44:08 PM,02/01/2016 06:54:16 PM,02/01/2016 07:16:40 PM,02/01/2016 07:25:33 PM,Code 2 Transport,02/01/2016 08:02:16 PM,500 Block of MARKET ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",160322987-65 -160150175,64,16005811,Medical Incident,01/15/2016,01/14/2016,01/15/2016 01:12:28 AM,01/15/2016 01:12:28 AM,01/15/2016 01:13:21 AM,01/15/2016 01:13:30 AM,01/15/2016 01:25:23 AM,01/15/2016 01:52:21 AM,01/15/2016 02:02:52 AM,Code 2 Transport,01/15/2016 02:28:44 AM,SACRAMENTO ST/JONES ST,San Francisco,94108,B01,41,1465,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7923426085782, -122.414293265619)",160150175-64 -112060054,E10,11067969,Medical Incident,07/25/2011,07/24/2011,07/25/2011 06:14:48 AM,07/25/2011 06:15:39 AM,07/25/2011 06:16:35 AM,07/25/2011 06:18:13 AM,07/25/2011 06:20:50 AM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/25/2011 06:28:19 AM,2400 Block of POST ST,SF,94115,B05,10,4235,3,3,3,true,,1,ENGINE,1,5,2,Japantown,"(37.7839477290284, -122.442157843701)",112060054-E10 -113520154,89,11116833,Medical Incident,12/18/2011,12/18/2011,12/18/2011 10:21:04 AM,12/18/2011 10:22:02 AM,12/18/2011 10:22:46 AM,12/18/2011 10:23:22 AM,12/18/2011 10:33:21 AM,12/18/2011 10:48:42 AM,12/18/2011 11:16:53 AM,Code 3 Transport,12/18/2011 11:20:02 AM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",113520154-89 -160250328,61,16009776,Medical Incident,01/25/2016,01/24/2016,01/25/2016 03:32:10 AM,01/25/2016 03:33:17 AM,01/25/2016 03:34:20 AM,01/25/2016 03:34:39 AM,01/25/2016 03:43:41 AM,01/25/2016 04:11:14 AM,01/25/2016 04:15:58 AM,Code 2 Transport,01/25/2016 05:01:55 AM,1300 Block of CLAY ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7931726101237, -122.415302531795)",160250328-61 -123430055,T15,12114515,Structure Fire,12/08/2012,12/07/2012,12/08/2012 04:00:23 AM,12/08/2012 04:00:23 AM,12/08/2012 04:00:33 AM,12/08/2012 04:02:15 AM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/08/2012 04:04:21 AM,MISSION ST/OLIVER ST,SF,94112,B09,33,6212,3,3,3,false,Alarm,1,TRUCK,2,9,11,Outer Mission,"(37.7095433695086, -122.450498927736)",123430055-T15 -160564217,76,16022576,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:58:34 PM,02/25/2016 11:58:58 PM,02/25/2016 11:59:07 PM,02/25/2016 11:59:50 PM,02/26/2016 12:04:14 AM,02/26/2016 12:15:01 AM,02/26/2016 12:18:49 AM,Code 2 Transport,02/26/2016 12:55:45 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160564217-76 -122450031,E41,12080869,Medical Incident,09/01/2012,08/31/2012,09/01/2012 01:51:41 AM,09/01/2012 01:52:39 AM,09/01/2012 01:52:50 AM,09/01/2012 01:54:33 AM,09/01/2012 01:57:16 AM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,09/01/2012 02:06:29 AM,2400 Block of LARKIN ST,SF,94109,B01,41,1626,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8003597667856, -122.421041385631)",122450031-E41 -132720003,E05,13092300,Medical Incident,09/29/2013,09/28/2013,09/29/2013 12:06:04 AM,09/29/2013 12:06:04 AM,09/29/2013 12:06:12 AM,09/29/2013 12:07:31 AM,09/29/2013 12:09:37 AM,09/29/2013 12:19:37 AM,04/25/2016 01:50:32 PM,Other,09/29/2013 12:48:55 AM,1800 Block of EDDY ST,SF,94115,B05,5,4133,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7807493567341, -122.438104422838)",132720003-E05 -160522011,RC3,16020849,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:50:28 PM,02/21/2016 02:50:28 PM,02/21/2016 02:50:40 PM,02/21/2016 02:52:02 PM,02/21/2016 02:57:45 PM,02/21/2016 03:01:17 PM,02/21/2016 03:01:18 PM,Code 3 Transport,02/21/2016 03:26:09 PM,FILLMORE ST/GOLDEN GATE AV,San Francisco,94115,B05,5,3534,A,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,5,5,Western Addition,"(37.7795641471317, -122.431951803212)",160522011-RC3 -131460290,E28,13049605,Medical Incident,05/26/2013,05/26/2013,05/26/2013 04:34:36 PM,05/26/2013 04:35:16 PM,05/26/2013 04:35:40 PM,05/26/2013 04:37:25 PM,05/26/2013 04:40:34 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 05:25:38 PM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8054738067872, -122.407570127181)",131460290-E28 -122000206,67,12066483,Medical Incident,07/18/2012,07/18/2012,07/18/2012 12:56:08 PM,07/18/2012 12:57:46 PM,07/18/2012 12:59:02 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,Other,04/25/2016 01:57:40 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7610314429831, -122.419351642615)",122000206-67 -112500189,E11,11082467,Medical Incident,09/07/2011,09/07/2011,09/07/2011 01:33:57 PM,09/07/2011 01:35:24 PM,09/07/2011 01:35:34 PM,09/07/2011 01:36:48 PM,09/07/2011 01:38:44 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 01:43:44 PM,3400 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7550983758636, -122.42346407777)",112500189-E11 -110270157,E43,11008858,Medical Incident,01/27/2011,01/27/2011,01/27/2011 11:16:22 AM,01/27/2011 11:17:31 AM,01/27/2011 11:18:11 AM,01/27/2011 11:19:16 AM,01/27/2011 11:23:37 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/27/2011 11:37:30 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",110270157-E43 -160631663,67,16025063,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:29:11 PM,03/03/2016 12:33:21 PM,03/03/2016 12:34:06 PM,03/03/2016 12:34:56 PM,03/03/2016 12:47:18 PM,03/03/2016 01:17:49 PM,03/03/2016 01:25:28 PM,Code 2 Transport,03/03/2016 01:56:25 PM,LAGUNA ST/EDDY ST,San Francisco,94102,B02,5,3366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",160631663-67 -110330305,E03,11010917,Medical Incident,02/02/2011,02/02/2011,02/02/2011 05:33:49 PM,02/02/2011 05:34:35 PM,02/02/2011 05:35:15 PM,02/02/2011 05:36:29 PM,02/02/2011 05:39:45 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 05:54:56 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",110330305-E03 -113540127,77,11117490,Medical Incident,12/20/2011,12/20/2011,12/20/2011 09:58:15 AM,12/20/2011 09:58:49 AM,12/20/2011 09:59:03 AM,12/20/2011 09:59:17 AM,12/20/2011 10:02:33 AM,12/20/2011 10:22:26 AM,12/20/2011 10:47:54 AM,Code 2 Transport,12/20/2011 11:18:12 AM,PALOU AV/3RD ST,SF,94124,B10,17,6515,3,E,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",113540127-77 -160291956,57,16011464,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:03:36 PM,01/29/2016 02:05:38 PM,01/29/2016 02:06:24 PM,01/29/2016 02:10:40 PM,01/29/2016 02:37:50 PM,01/29/2016 02:55:19 PM,01/29/2016 02:59:13 PM,Code 2 Transport,01/29/2016 03:40:51 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160291956-57 -112170003,E01,11071554,Medical Incident,08/05/2011,08/04/2011,08/05/2011 12:10:51 AM,08/05/2011 12:12:45 AM,08/05/2011 12:13:25 AM,08/05/2011 12:14:49 AM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 12:16:01 AM,MISSION ST/6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",112170003-E01 -160080314,89,16003080,Medical Incident,01/08/2016,01/07/2016,01/08/2016 03:19:20 AM,01/08/2016 03:19:20 AM,01/08/2016 03:19:20 AM,01/08/2016 03:19:20 AM,01/08/2016 03:19:20 AM,01/08/2016 03:28:37 AM,01/08/2016 03:42:14 AM,Code 2 Transport,01/08/2016 04:11:14 AM,POTRERO AV/DIVISION ST,San Francisco,94103,B99,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7692440110755, -122.408007205849)",160080314-89 -130500072,88,13016920,Medical Incident,02/19/2013,02/19/2013,02/19/2013 09:21:00 AM,02/19/2013 09:22:54 AM,02/19/2013 09:25:30 AM,02/19/2013 09:25:54 AM,02/19/2013 09:38:17 AM,02/19/2013 10:00:19 AM,02/19/2013 10:34:02 AM,Code 2 Transport,02/19/2013 10:53:10 AM,800 Block of 32ND AVE,SF,94121,B07,14,7242,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.773157559072, -122.491824979567)",130500072-88 -110150242,E41,11005048,Medical Incident,01/15/2011,01/15/2011,01/15/2011 04:20:30 PM,01/15/2011 04:20:56 PM,01/15/2011 04:21:30 PM,01/15/2011 04:22:40 PM,01/15/2011 04:23:07 PM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Medical Examiner,01/15/2011 04:36:41 PM,1300 Block of WASHINGTON ST,SF,94109,B01,41,1466,E,E,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.79405405477, -122.415456646894)",110150242-E41 -102630329,E03,10083334,Medical Incident,09/20/2010,09/20/2010,09/20/2010 07:11:26 PM,09/20/2010 07:12:15 PM,09/20/2010 07:13:43 PM,09/20/2010 07:14:46 PM,09/20/2010 07:17:08 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 07:25:26 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7863257938335, -122.409145791731)",102630329-E03 -111800154,B02,11059405,Traffic Collision,06/29/2011,06/29/2011,06/29/2011 01:08:57 PM,06/29/2011 01:09:57 PM,06/29/2011 01:11:09 PM,06/29/2011 01:12:34 PM,06/29/2011 01:14:20 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/29/2011 01:24:40 PM,13TH ST/BERNICE ST,SF,94103,B02,36,5121,3,3,3,false,,1,CHIEF,2,2,6,Mission,"(37.7695368900031, -122.414122034863)",111800154-B02 -120740061,E15,12024455,Traffic Collision,03/14/2012,03/13/2012,03/14/2012 07:26:03 AM,03/14/2012 07:27:12 AM,03/14/2012 07:27:28 AM,03/14/2012 07:28:23 AM,03/14/2012 07:30:40 AM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/14/2012 07:42:21 AM,300 Block of SAINT CHARLES AV,SF,94132,B09,15,8313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7084397868315, -122.469157976649)",120740061-E15 -111000242,RC1,11033270,Traffic Collision,04/10/2011,04/10/2011,04/10/2011 03:55:04 PM,04/10/2011 03:56:09 PM,04/10/2011 03:56:25 PM,04/10/2011 04:02:22 PM,04/10/2011 04:02:43 PM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 04:14:39 PM,COLUMBUS AV/MONTGOMERY ST,SF,94111,B01,13,1232,3,3,3,true,,1,RESCUE CAPTAIN,2,1,3,Chinatown,"(37.7955318316824, -122.403316944977)",111000242-RC1 -160813158,KM12,16032311,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:37:27 PM,03/21/2016 06:37:27 PM,03/21/2016 06:37:34 PM,03/21/2016 06:38:36 PM,03/21/2016 06:42:03 PM,03/21/2016 06:47:24 PM,03/21/2016 07:04:55 PM,Code 2 Transport,03/21/2016 07:37:45 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160813158-KM12 -103500361,T08,10112399,Elevator / Escalator Rescue,12/16/2010,12/16/2010,12/16/2010 08:46:52 PM,12/16/2010 08:48:37 PM,12/16/2010 08:48:59 PM,12/16/2010 08:50:36 PM,12/16/2010 08:53:56 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,12/16/2010 10:02:05 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103500361-T08 -112070020,E13,11068245,Structure Fire,07/26/2011,07/25/2011,07/26/2011 01:15:16 AM,07/26/2011 01:15:59 AM,07/26/2011 01:17:45 AM,04/25/2016 02:03:29 PM,07/26/2011 01:22:36 AM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 02:53:51 AM,1100 Block of MONTGOMERY ST,SF,94133,B01,28,1226,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.7996469009289, -122.404078416323)",112070020-E13 -113330258,E41,11110373,Alarms,11/29/2011,11/29/2011,11/29/2011 05:12:20 PM,11/29/2011 05:13:29 PM,11/29/2011 05:14:20 PM,11/29/2011 05:16:14 PM,11/29/2011 05:19:36 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 05:23:03 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",113330258-E41 -140110070,E03,14003754,Medical Incident,01/11/2014,01/10/2014,01/11/2014 06:08:54 AM,01/11/2014 06:10:19 AM,01/11/2014 06:12:03 AM,01/11/2014 06:13:47 AM,01/11/2014 06:17:05 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/11/2014 06:27:25 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",140110070-E03 -91120071,B03,9033189,Alarms,04/22/2009,04/21/2009,04/22/2009 07:24:27 AM,04/22/2009 07:25:38 AM,04/22/2009 07:25:49 AM,04/22/2009 07:28:18 AM,04/22/2009 07:32:23 AM,04/25/2016 03:29:10 PM,04/25/2016 03:29:10 PM,Fire,04/22/2009 07:32:56 AM,1800 Block of BRYANT ST,SF,94110,B02,29,5242,3,3,3,true,,1,CHIEF,3,2,9,Mission,"(37.7636655981305, -122.41037293196)",091120071-B03 -132880305,B06,13098067,Alarms,10/15/2013,10/15/2013,10/15/2013 05:13:59 PM,10/15/2013 05:16:21 PM,10/15/2013 05:16:39 PM,10/15/2013 05:18:08 PM,10/15/2013 05:21:53 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Fire,10/15/2013 05:45:28 PM,600 Block of ALVARADO ST,SF,94114,B06,24,5515,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7536611563754, -122.435425173732)",132880305-B06 -122670186,T01,12088218,Elevator / Escalator Rescue,09/23/2012,09/23/2012,09/23/2012 01:24:19 PM,09/23/2012 01:25:19 PM,09/23/2012 01:25:32 PM,09/23/2012 01:27:24 PM,09/23/2012 01:29:38 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Fire,09/23/2012 01:35:55 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7795675906982, -122.407474134289)",122670186-T01 -130620171,E10,13020761,Medical Incident,03/03/2013,03/03/2013,03/03/2013 11:38:33 AM,03/03/2013 11:39:49 AM,03/03/2013 11:43:12 AM,03/03/2013 11:45:07 AM,03/03/2013 11:49:57 AM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,No Merit,03/03/2013 11:51:20 AM,SACRAMENTO ST/FILLMORE ST,SF,94115,B04,38,3544,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7898369713314, -122.43402709034)",130620171-E10 -160893416,68,16035469,Medical Incident,03/29/2016,03/29/2016,03/29/2016 07:54:21 PM,03/29/2016 07:55:53 PM,03/29/2016 07:56:21 PM,03/29/2016 07:57:16 PM,03/29/2016 07:59:49 PM,03/29/2016 08:10:01 PM,03/29/2016 08:35:10 PM,Code 2 Transport,03/29/2016 09:01:31 PM,400 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905619157295, -122.405159641603)",160893416-68 -131830221,E51,13062385,Medical Incident,07/02/2013,07/02/2013,07/02/2013 02:48:06 PM,07/02/2013 02:49:14 PM,07/02/2013 02:49:35 PM,07/02/2013 02:50:45 PM,07/02/2013 02:51:31 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 03:12:09 PM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio,"(37.8012720767056, -122.453377012346)",131830221-E51 -132570126,E06,13086866,Alarms,09/14/2013,09/14/2013,09/14/2013 09:14:58 AM,09/14/2013 09:16:36 AM,09/14/2013 09:16:46 AM,09/14/2013 09:18:28 AM,09/14/2013 09:21:45 AM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 09:37:08 AM,0 Block of PARK HILL AVE,SF,94117,B05,21,5136,3,3,3,true,Alarm,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7673531246888, -122.439155550726)",132570126-E06 -112600186,RC1,11085746,Medical Incident,09/17/2011,09/17/2011,09/17/2011 12:12:18 PM,09/17/2011 12:13:39 PM,09/17/2011 12:14:36 PM,09/17/2011 12:15:12 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 12:18:08 PM,OFARRELL ST/POLK ST,SF,94109,B04,3,1642,3,E,3,true,,1,RESCUE CAPTAIN,2,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",112600186-RC1 -110490345,B01,11016317,Structure Fire,02/18/2011,02/18/2011,02/18/2011 07:23:16 PM,02/18/2011 07:24:29 PM,02/18/2011 07:24:52 PM,02/18/2011 07:26:21 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 07:30:55 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,,1,CHIEF,10,3,6,South of Market,"(37.7791674218963, -122.406346425632)",110490345-B01 -112890146,85,11095844,Medical Incident,10/16/2011,10/16/2011,10/16/2011 10:39:04 AM,10/16/2011 10:40:25 AM,10/16/2011 10:40:59 AM,10/16/2011 10:41:16 AM,10/16/2011 10:41:51 AM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 10:41:59 AM,2300 Block of POLK ST,SF,94109,B04,41,3131,E,E,3,true,,1,MEDIC,1,4,3,Russian Hill,"(37.7983019573761, -122.422174014862)",112890146-85 -121910269,E43,12063666,Medical Incident,07/09/2012,07/09/2012,07/09/2012 05:39:17 PM,07/09/2012 05:39:49 PM,07/09/2012 05:40:01 PM,07/09/2012 05:40:09 PM,07/09/2012 05:42:15 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 05:50:30 PM,0 Block of MOUNT VERNON AVE,SF,94112,B09,43,6176,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7157777924445, -122.444279310961)",121910269-E43 -140410364,E06,14014076,Medical Incident,02/10/2014,02/10/2014,02/10/2014 07:09:32 PM,02/10/2014 07:10:07 PM,02/10/2014 07:10:15 PM,02/10/2014 07:11:09 PM,02/10/2014 07:13:29 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 07:23:07 PM,0 Block of DIAMOND ST,SF,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7613309248911, -122.437175681102)",140410364-E06 -132060312,58,13069841,Medical Incident,07/25/2013,07/25/2013,07/25/2013 07:14:32 PM,07/25/2013 07:15:33 PM,07/25/2013 07:15:48 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Other,07/25/2013 07:20:05 PM,500 Block of 24TH AVE,SF,94121,B07,14,7213,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7791756022124, -122.483662765837)",132060312-58 -102660165,71,10084157,Medical Incident,09/23/2010,09/23/2010,09/23/2010 01:20:14 PM,09/23/2010 01:20:42 PM,09/23/2010 01:21:00 PM,09/23/2010 01:21:13 PM,09/23/2010 01:26:12 PM,09/23/2010 01:40:22 PM,09/23/2010 02:04:44 PM,Code 2 Transport,09/23/2010 02:24:26 PM,300 Block of TEHAMA ST,SF,94103,B03,1,2214,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",102660165-71 -133250263,KM09,13110446,Medical Incident,11/21/2013,11/21/2013,11/21/2013 04:20:55 PM,11/21/2013 04:22:23 PM,11/21/2013 04:24:28 PM,11/21/2013 04:25:11 PM,11/21/2013 04:35:35 PM,11/21/2013 04:46:48 PM,11/21/2013 05:04:41 PM,Code 2 Transport,11/21/2013 05:45:11 PM,2600 Block of 47TH AVE,SF,94116,B08,23,7732,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7375390051116, -122.505326526722)",133250263-KM09 -160502451,87,16020157,Traffic Collision,02/19/2016,02/19/2016,02/19/2016 04:14:54 PM,02/19/2016 04:14:54 PM,02/19/2016 04:15:34 PM,02/19/2016 04:15:57 PM,02/19/2016 04:19:19 PM,02/19/2016 04:58:29 PM,02/19/2016 05:27:31 PM,Code 2 Transport,02/19/2016 06:58:29 PM,GENEVA AV/LOUISBURG ST,San Francisco,94112,B09,15,8313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7217524125404, -122.449295742251)",160502451-87 -123550288,E11,12118895,Medical Incident,12/20/2012,12/20/2012,12/20/2012 06:43:01 PM,12/20/2012 06:43:20 PM,12/20/2012 06:44:04 PM,12/20/2012 06:45:11 PM,12/20/2012 06:46:33 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 06:59:52 PM,3800 Block of 24TH ST,SF,94114,B06,11,5523,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7517260359895, -122.427997868834)",123550288-E11 -121810040,RT614,12060145,Structure Fire,06/29/2012,06/28/2012,06/29/2012 03:05:26 AM,06/29/2012 03:06:44 AM,06/29/2012 03:06:50 AM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/29/2012 03:21:10 AM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,false,Fire,1,PRIVATE,7,2,6,Tenderloin,"(37.7830416107165, -122.415856533326)",121810040-RT614 -110580119,79,11019038,Medical Incident,02/27/2011,02/27/2011,02/27/2011 09:07:52 AM,02/27/2011 09:11:21 AM,02/27/2011 09:11:51 AM,02/27/2011 09:12:08 AM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,Other,04/25/2016 02:05:53 PM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,E,3,true,,1,MEDIC,4,1,3,North Beach,"(37.7980228452184, -122.405863212632)",110580119-79 -160130798,84,16005095,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:30:27 AM,01/13/2016 08:31:53 AM,01/13/2016 08:32:22 AM,01/13/2016 08:32:31 AM,01/13/2016 08:46:31 AM,01/13/2016 09:05:41 AM,01/13/2016 09:16:54 AM,Code 2 Transport,01/13/2016 09:47:38 AM,0 Block of CLEARY CT,San Francisco,94109,B04,3,3323,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7841466012998, -122.426445754167)",160130798-84 -110990143,87,11032842,Medical Incident,04/09/2011,04/09/2011,04/09/2011 11:40:15 AM,04/09/2011 11:41:52 AM,04/09/2011 11:42:06 AM,04/09/2011 11:42:31 AM,04/09/2011 11:49:04 AM,04/09/2011 12:11:00 PM,04/09/2011 12:24:17 PM,Code 2 Transport,04/09/2011 12:59:47 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",110990143-87 -121940069,E23,12064463,Medical Incident,07/12/2012,07/11/2012,07/12/2012 06:54:24 AM,07/12/2012 06:56:28 AM,07/12/2012 06:56:55 AM,07/12/2012 06:59:49 AM,07/12/2012 07:03:16 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/12/2012 07:16:53 AM,4500 Block of ULLOA ST,SF,94116,B08,23,7712,3,1,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7399377568064, -122.505028594588)",121940069-E23 -160740089,72,16029162,Medical Incident,03/14/2016,03/13/2016,03/14/2016 12:54:15 AM,03/14/2016 12:55:27 AM,03/14/2016 12:56:12 AM,03/14/2016 12:56:37 AM,03/14/2016 01:02:17 AM,03/14/2016 01:17:08 AM,03/14/2016 01:24:28 AM,Code 2 Transport,03/14/2016 02:06:52 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160740089-72 -133240105,66,13109953,Medical Incident,11/20/2013,11/20/2013,11/20/2013 08:39:50 AM,11/20/2013 08:41:11 AM,11/20/2013 08:41:39 AM,11/20/2013 08:41:54 AM,11/20/2013 08:54:32 AM,11/20/2013 09:15:34 AM,11/20/2013 09:57:51 AM,Code 2 Transport,11/20/2013 10:24:59 AM,SUNNYDALE AV/HAHN ST,SF,94134,B09,43,6241,3,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7119145572968, -122.416000281038)",133240105-66 -120210094,T10,12007036,Other,01/21/2012,01/20/2012,01/21/2012 05:15:41 AM,01/21/2012 05:16:31 AM,01/21/2012 05:16:45 AM,01/21/2012 05:18:36 AM,01/21/2012 05:21:20 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 05:29:50 AM,3300 Block of JACKSON ST,SF,94118,B04,10,4415,3,3,3,false,Alarm,1,TRUCK,1,4,2,Presidio Heights,"(37.790557796957, -122.450021625754)",120210094-T10 -160210379,70,16008240,Medical Incident,01/21/2016,01/20/2016,01/21/2016 04:09:30 AM,01/21/2016 04:12:29 AM,01/21/2016 04:14:11 AM,01/21/2016 04:16:22 AM,01/21/2016 04:39:58 AM,01/21/2016 04:44:37 AM,01/21/2016 04:49:27 AM,Code 2 Transport,01/21/2016 05:23:47 AM,1000 Block of WEBSTER ST,San Francisco,94115,B05,5,3516,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7802682570275, -122.430178427024)",160210379-70 -130170195,T02,13005789,Alarms,01/17/2013,01/17/2013,01/17/2013 01:27:36 PM,01/17/2013 01:30:13 PM,01/17/2013 01:30:25 PM,01/17/2013 01:31:51 PM,01/17/2013 01:37:41 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 01:41:09 PM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,Alarm,1,TRUCK,3,None,3,North Beach,"(37.8081679785862, -122.416634717802)",130170195-T02 -133580050,E22,13121593,Medical Incident,12/24/2013,12/23/2013,12/24/2013 03:49:26 AM,12/24/2013 03:50:46 AM,12/24/2013 03:51:43 AM,12/24/2013 03:54:09 AM,12/24/2013 03:56:39 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 04:12:54 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,E,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",133580050-E22 -111080162,84,11035670,Medical Incident,04/18/2011,04/18/2011,04/18/2011 12:25:09 PM,04/18/2011 12:26:11 PM,04/18/2011 12:26:40 PM,04/18/2011 12:27:17 PM,04/18/2011 12:32:14 PM,04/18/2011 12:53:58 PM,04/18/2011 01:15:25 PM,Code 2 Transport,04/18/2011 01:43:26 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",111080162-84 -131350383,E07,13045722,Medical Incident,05/15/2013,05/15/2013,05/15/2013 11:43:21 PM,05/15/2013 11:43:21 PM,05/15/2013 11:45:29 PM,05/15/2013 11:46:56 PM,05/15/2013 11:50:59 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 11:58:58 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7677331022924, -122.415606951318)",131350383-E07 -160462845,83,16018607,Medical Incident,02/15/2016,02/15/2016,02/15/2016 05:47:02 PM,02/15/2016 05:47:02 PM,02/15/2016 05:47:36 PM,02/15/2016 05:48:04 PM,02/15/2016 05:48:32 PM,02/15/2016 06:03:12 PM,02/15/2016 06:39:38 PM,Code 2 Transport,02/15/2016 06:43:30 PM,1200 Block of 19TH AVE,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,4,Inner Sunset,"(37.7645085780924, -122.477112517357)",160462845-83 -121430132,T01,12047493,Medical Incident,05/22/2012,05/22/2012,05/22/2012 10:53:53 AM,05/22/2012 10:54:35 AM,05/22/2012 10:54:55 AM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 10:57:31 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,2,2,false,Non Life-threatening,1,TRUCK,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",121430132-T01 -113360377,RS1,11111391,Medical Incident,12/02/2011,12/02/2011,12/02/2011 06:27:14 PM,12/02/2011 06:28:20 PM,12/02/2011 06:28:57 PM,12/02/2011 06:29:29 PM,12/02/2011 06:32:06 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 06:41:11 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",113360377-RS1 -140320142,87,14010800,Medical Incident,02/01/2014,02/01/2014,02/01/2014 11:00:36 AM,02/01/2014 11:02:04 AM,02/01/2014 11:02:15 AM,02/01/2014 11:02:23 AM,02/01/2014 11:04:03 AM,02/01/2014 11:20:52 AM,02/01/2014 11:24:24 AM,Code 2 Transport,02/01/2014 12:01:57 PM,3400 Block of 25TH ST,SF,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7506771297941, -122.418579871188)",140320142-87 -122260390,E07,12075100,Medical Incident,08/13/2012,08/13/2012,08/13/2012 11:22:02 PM,08/13/2012 11:22:49 PM,08/13/2012 11:23:07 PM,08/13/2012 11:30:12 PM,08/13/2012 11:31:15 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 11:33:57 PM,800 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7595614667718, -122.417018134108)",122260390-E07 -160063609,88,16002612,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:56:44 PM,01/06/2016 09:57:48 PM,01/06/2016 09:58:02 PM,01/06/2016 09:58:11 PM,01/06/2016 10:10:08 PM,01/06/2016 10:20:47 PM,01/06/2016 10:29:18 PM,Code 2 Transport,01/06/2016 11:23:58 PM,3700 Block of BRODERICK ST,San Francisco,94123,B04,16,4216,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8048883733226, -122.445622996571)",160063609-88 -112900172,E22,11096202,Structure Fire,10/17/2011,10/17/2011,10/17/2011 12:39:26 PM,10/17/2011 12:40:16 PM,10/17/2011 12:40:46 PM,10/17/2011 12:41:37 PM,10/17/2011 12:45:13 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 01:24:58 PM,1800 Block of 15TH AVE,SF,94122,B08,40,7363,3,3,3,true,,1,ENGINE,1,8,7,Inner Sunset,"(37.7533964346425, -122.471992556576)",112900172-E22 -122620185,E29,12086519,Medical Incident,09/18/2012,09/18/2012,09/18/2012 01:59:17 PM,09/18/2012 01:59:50 PM,09/18/2012 02:00:05 PM,04/25/2016 01:56:43 PM,09/18/2012 02:03:21 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 02:09:41 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122620185-E29 -111170340,E10,11038757,Structure Fire,04/27/2011,04/27/2011,04/27/2011 09:50:12 PM,04/27/2011 09:50:37 PM,04/27/2011 09:50:48 PM,04/27/2011 09:52:13 PM,04/27/2011 09:54:53 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 09:58:36 PM,500 Block of PARKER AVE,SF,94118,B05,21,4542,3,3,3,true,,1,ENGINE,4,5,1,Lone Mountain/USF,"(37.7773488402616, -122.453218331294)",111170340-E10 -112530218,E11,11083480,Alarms,09/10/2011,09/10/2011,09/10/2011 12:40:05 PM,09/10/2011 12:41:22 PM,09/10/2011 12:42:22 PM,09/10/2011 12:44:15 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 12:59:31 PM,3300 Block of 25TH ST,SF,94110,B06,11,5534,3,3,3,true,,1,ENGINE,3,6,9,Mission,"(37.7506663720222, -122.416930970511)",112530218-E11 -160150146,89,16005807,Medical Incident,01/15/2016,01/14/2016,01/15/2016 12:56:45 AM,01/15/2016 12:57:53 AM,01/15/2016 12:58:56 AM,01/15/2016 12:59:03 AM,01/15/2016 01:07:59 AM,01/15/2016 01:26:03 AM,01/15/2016 01:40:48 AM,Code 2 Transport,01/15/2016 02:19:38 AM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",160150146-89 -102850099,B10,10090687,Gas Leak (Natural and LP Gases),10/12/2010,10/12/2010,10/12/2010 08:45:57 AM,10/12/2010 08:50:07 AM,10/12/2010 08:50:15 AM,10/12/2010 08:51:01 AM,10/12/2010 08:55:02 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 09:10:02 AM,1000 Block of 22ND ST,SF,94107,B10,37,2535,3,3,3,false,,1,CHIEF,1,10,10,Potrero Hill,"(37.7576843079875, -122.391648743155)",102850099-B10 -111800192,68,11059436,Medical Incident,06/29/2011,06/29/2011,06/29/2011 02:53:14 PM,06/29/2011 02:53:51 PM,06/29/2011 02:54:18 PM,06/29/2011 02:54:53 PM,06/29/2011 03:01:58 PM,06/29/2011 03:11:25 PM,06/29/2011 03:26:45 PM,Code 2 Transport,06/29/2011 04:17:56 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",111800192-68 -132100083,E05,13070937,Medical Incident,07/29/2013,07/28/2013,07/29/2013 06:35:17 AM,07/29/2013 06:35:56 AM,07/29/2013 06:36:22 AM,04/25/2016 01:51:35 PM,07/29/2013 06:39:53 AM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/29/2013 06:56:00 AM,GOUGH ST/GOLDEN GATE AV,SF,94102,B02,5,3263,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.780611620733, -122.423730984614)",132100083-E05 -121780181,T03,12059251,Alarms,06/26/2012,06/26/2012,06/26/2012 01:04:06 PM,06/26/2012 01:05:06 PM,06/26/2012 01:05:28 PM,06/26/2012 01:06:41 PM,06/26/2012 01:10:19 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 01:09:31 PM,800 Block of LEAVENWORTH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,TRUCK,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",121780181-T03 -140470074,T03,14015920,Medical Incident,02/16/2014,02/15/2014,02/16/2014 04:54:04 AM,02/16/2014 04:55:32 AM,02/16/2014 04:56:07 AM,02/16/2014 04:58:25 AM,02/16/2014 04:59:50 AM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 05:02:09 AM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",140470074-T03 -131280290,94,13043360,Medical Incident,05/08/2013,05/08/2013,05/08/2013 06:01:54 PM,05/08/2013 06:04:45 PM,05/08/2013 06:05:00 PM,05/08/2013 06:05:12 PM,05/08/2013 06:11:21 PM,05/08/2013 06:32:41 PM,05/08/2013 06:55:49 PM,Code 2 Transport,05/08/2013 07:18:41 PM,1800 Block of SAN JOSE AVE,SF,94112,B09,15,8266,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7286672520245, -122.440208285755)",131280290-94 -103090350,71,10099186,Medical Incident,11/05/2010,11/05/2010,11/05/2010 09:15:33 PM,11/05/2010 09:16:33 PM,11/05/2010 09:18:16 PM,11/05/2010 09:18:49 PM,11/05/2010 09:31:07 PM,11/05/2010 09:55:01 PM,11/05/2010 10:21:12 PM,Code 2 Transport,11/05/2010 10:48:16 PM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,3,3,true,,1,MEDIC,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",103090350-71 -120080051,54,12002653,Medical Incident,01/08/2012,01/07/2012,01/08/2012 02:36:24 AM,01/08/2012 02:36:48 AM,01/08/2012 02:37:26 AM,01/08/2012 02:37:33 AM,01/08/2012 02:42:31 AM,04/25/2016 02:00:44 PM,04/25/2016 02:00:44 PM,Patient Declined Transport,01/08/2012 03:00:51 AM,VAN NESS AV/GEARY BL,SF,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",120080051-54 -160813496,KM03,16032345,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:22:34 PM,03/21/2016 08:23:09 PM,03/21/2016 08:23:22 PM,03/21/2016 08:23:49 PM,03/21/2016 08:27:25 PM,03/21/2016 08:47:42 PM,03/21/2016 08:58:50 PM,Code 2 Transport,03/21/2016 09:33:13 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160813496-KM03 -160051663,88,16001996,Medical Incident,01/05/2016,01/05/2016,01/05/2016 12:43:08 PM,01/05/2016 12:45:06 PM,01/05/2016 12:45:11 PM,01/05/2016 12:46:28 PM,01/05/2016 12:59:32 PM,01/05/2016 01:11:55 PM,01/05/2016 01:36:03 PM,Against Medical Advice,01/05/2016 02:09:26 PM,4700 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7622214603037, -122.508737677632)",160051663-88 -131760311,B04,13059813,Alarms,06/25/2013,06/25/2013,06/25/2013 05:42:48 PM,06/25/2013 05:43:31 PM,06/25/2013 05:43:38 PM,06/25/2013 05:44:45 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,06/25/2013 05:51:00 PM,0 Block of MESA ST,PR,94129,B99,51,4626,3,3,3,false,Alarm,1,CHIEF,3,7,2,Presidio,"(37.7983024621122, -122.4571590461)",131760311-B04 -130300322,B03,13010339,Structure Fire,01/30/2013,01/30/2013,01/30/2013 05:34:11 PM,01/30/2013 05:35:51 PM,01/30/2013 05:36:26 PM,01/30/2013 05:38:18 PM,01/30/2013 05:40:32 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/30/2013 05:47:33 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,Alarm,1,CHIEF,5,3,6,South of Market,"(37.7823404680537, -122.40377191669)",130300322-B03 -120250321,E43,12008510,Medical Incident,01/25/2012,01/25/2012,01/25/2012 06:35:38 PM,01/25/2012 06:36:11 PM,01/25/2012 06:36:43 PM,01/25/2012 06:37:59 PM,01/25/2012 06:42:05 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 07:21:17 PM,1500 Block of BURROWS ST,SF,94134,B09,43,6151,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.7250411390585, -122.418375632082)",120250321-E43 -140150384,E05,14005304,Medical Incident,01/15/2014,01/15/2014,01/15/2014 09:36:07 PM,01/15/2014 09:36:20 PM,01/15/2014 09:36:54 PM,01/15/2014 09:38:14 PM,01/15/2014 09:39:55 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 09:44:23 PM,GOLDEN GATE AV/PIERCE ST,SF,94115,B05,5,3643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7791448777938, -122.435241012307)",140150384-E05 -160312763,87,16012265,Traffic Collision,01/31/2016,01/31/2016,01/31/2016 05:28:11 PM,01/31/2016 05:28:11 PM,01/31/2016 05:30:12 PM,01/31/2016 05:30:12 PM,01/31/2016 05:37:13 PM,01/31/2016 05:47:16 PM,01/31/2016 06:28:49 PM,Code 2 Transport,01/31/2016 06:37:53 PM,FELL ST/MASONIC AV,San Francisco,94117,B05,21,4356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",160312763-87 -132210120,85,13074575,Medical Incident,08/09/2013,08/09/2013,08/09/2013 11:24:29 AM,08/09/2013 11:25:58 AM,08/09/2013 11:26:16 AM,08/09/2013 11:26:39 AM,08/09/2013 11:34:41 AM,08/09/2013 11:49:04 AM,08/09/2013 12:07:37 PM,Code 2 Transport,08/09/2013 01:12:59 PM,SILVER AV/MISSION ST,SF,94112,B09,32,6113,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",132210120-85 -120850137,T01,12028202,Medical Incident,03/25/2012,03/25/2012,03/25/2012 11:18:01 AM,03/25/2012 11:18:35 AM,03/25/2012 11:19:16 AM,03/25/2012 11:20:29 AM,03/25/2012 11:21:59 AM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 11:28:12 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,E,1,2,false,Non Life-threatening,1,TRUCK,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",120850137-T01 -131620136,KM02,13055004,Medical Incident,06/11/2013,06/11/2013,06/11/2013 11:05:31 AM,06/11/2013 11:05:31 AM,06/11/2013 11:08:37 AM,04/25/2016 01:52:21 PM,06/11/2013 11:15:57 AM,06/11/2013 11:26:30 AM,06/11/2013 11:35:24 AM,Code 2 Transport,06/11/2013 12:07:00 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",131620136-KM02 -122490289,E10,12082450,Medical Incident,09/05/2012,09/05/2012,09/05/2012 07:30:48 PM,09/05/2012 07:32:57 PM,09/05/2012 07:36:51 PM,09/05/2012 07:38:02 PM,09/05/2012 07:42:47 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/05/2012 07:59:30 PM,600 Block of MASONIC AVE,SF,94117,B05,21,4463,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7753450059379, -122.446308915832)",122490289-E10 -140500158,T03,14016960,Administrative,02/19/2014,02/19/2014,02/19/2014 12:51:59 PM,02/19/2014 12:52:19 PM,02/19/2014 12:52:53 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Other,02/19/2014 12:53:19 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",140500158-T03 -160700506,AM24,16027733,Medical Incident,03/10/2016,03/09/2016,03/10/2016 06:58:51 AM,03/10/2016 07:01:19 AM,03/10/2016 07:02:15 AM,03/10/2016 07:02:56 AM,03/10/2016 07:08:20 AM,03/10/2016 07:31:52 AM,03/10/2016 07:47:38 AM,Code 2 Transport,03/10/2016 08:13:53 AM,400 Block of 20TH AV,San Francisco,94121,B07,14,7172,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7793747229345, -122.479242794921)",160700506-AM24 -132690364,B02,13091512,Alarms,09/26/2013,09/26/2013,09/26/2013 09:33:21 PM,09/26/2013 09:34:50 PM,09/26/2013 09:35:08 PM,09/26/2013 09:36:13 PM,09/26/2013 09:38:36 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/26/2013 09:43:33 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7777263414712, -122.409605982336)",132690364-B02 -131740079,E01,13058956,Medical Incident,06/23/2013,06/22/2013,06/23/2013 05:16:18 AM,06/23/2013 05:17:32 AM,06/23/2013 05:18:23 AM,06/23/2013 05:21:01 AM,06/23/2013 05:23:49 AM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Other,06/23/2013 05:31:33 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",131740079-E01 -130450396,E01,13015432,Medical Incident,02/14/2013,02/14/2013,02/14/2013 09:47:37 PM,02/14/2013 09:48:08 PM,02/14/2013 09:48:24 PM,02/14/2013 09:49:31 PM,02/14/2013 09:52:28 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/14/2013 09:59:48 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130450396-E01 -120600105,B03,12019690,Alarms,02/29/2012,02/29/2012,02/29/2012 09:31:24 AM,02/29/2012 09:32:36 AM,02/29/2012 09:33:52 AM,02/29/2012 09:34:36 AM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Other,02/29/2012 09:44:39 AM,200 Block of SAN BRUNO AVE,SF,94103,B02,29,2352,3,3,3,false,Alarm,1,CHIEF,3,2,10,Mission,"(37.7665461381925, -122.405715479775)",120600105-B03 -160592608,67,16023625,Medical Incident,02/28/2016,02/28/2016,02/28/2016 06:12:23 PM,02/28/2016 06:13:34 PM,02/28/2016 06:13:43 PM,02/28/2016 06:13:50 PM,02/28/2016 06:16:52 PM,02/28/2016 06:29:12 PM,02/28/2016 06:42:42 PM,Code 2 Transport,02/28/2016 07:27:52 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160592608-67 -160290393,64,16011322,Medical Incident,01/29/2016,01/28/2016,01/29/2016 04:55:51 AM,01/29/2016 04:55:51 AM,01/29/2016 04:56:48 AM,01/29/2016 04:57:45 AM,01/29/2016 05:04:30 AM,01/29/2016 05:18:52 AM,01/29/2016 05:39:53 AM,Code 2 Transport,01/29/2016 06:04:47 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",160290393-64 -123120027,B04,12103711,Structure Fire,11/07/2012,11/06/2012,11/07/2012 02:47:01 AM,11/07/2012 02:49:37 AM,11/07/2012 02:50:17 AM,11/07/2012 02:51:59 AM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/07/2012 03:22:22 AM,1700 Block of BEACH ST,SF,94123,B04,16,3564,3,3,3,false,Alarm,1,CHIEF,9,4,2,Marina,"(37.804214022581, -122.43864061945)",123120027-B04 -102720337,54,10086491,Medical Incident,09/29/2010,09/29/2010,09/29/2010 08:04:39 PM,09/29/2010 08:04:56 PM,09/29/2010 08:05:20 PM,09/29/2010 08:05:53 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Patient Declined Transport,09/29/2010 08:19:35 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",102720337-54 -160554186,AM24,16022189,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:13:22 PM,02/24/2016 11:14:57 PM,02/24/2016 11:16:07 PM,02/24/2016 11:16:39 PM,02/24/2016 11:21:19 PM,02/24/2016 11:44:01 PM,02/25/2016 12:13:23 AM,Code 2 Transport,02/25/2016 12:40:52 AM,2500 Block of GREENWICH ST,San Francisco,94123,B04,16,4166,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.798163952853, -122.44162207097)",160554186-AM24 -160542578,KM04,16021679,Medical Incident,02/23/2016,02/23/2016,02/23/2016 04:06:07 PM,02/23/2016 04:10:15 PM,02/23/2016 04:11:03 PM,02/23/2016 04:12:55 PM,02/23/2016 04:32:11 PM,02/23/2016 04:48:12 PM,02/23/2016 04:57:35 PM,Code 2 Transport,02/23/2016 05:51:44 PM,19TH ST/SAN CARLOS ST,San Francisco,94110,B06,7,5434,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7601889101757, -122.419974947649)",160542578-KM04 -123370168,E05,12112140,Alarms,12/02/2012,12/01/2012,12/02/2012 06:48:19 AM,12/02/2012 06:50:19 AM,12/02/2012 06:50:28 AM,12/02/2012 06:51:57 AM,12/02/2012 06:53:24 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 07:01:08 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",123370168-E05 -123540250,KM09,12118497,Medical Incident,12/19/2012,12/19/2012,12/19/2012 02:52:14 PM,12/19/2012 02:52:50 PM,12/19/2012 02:53:06 PM,12/19/2012 02:54:02 PM,12/19/2012 02:58:59 PM,12/19/2012 03:13:38 PM,12/19/2012 03:26:13 PM,Code 2 Transport,12/19/2012 03:47:27 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",123540250-KM09 -132360310,T05,13079752,Structure Fire,08/24/2013,08/24/2013,08/24/2013 09:54:08 PM,08/24/2013 09:54:28 PM,08/24/2013 09:54:56 PM,08/24/2013 09:56:02 PM,08/24/2013 09:58:18 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/24/2013 10:02:34 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,5,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",132360310-T05 -111870167,81,11061804,Medical Incident,07/06/2011,07/06/2011,07/06/2011 11:52:03 AM,07/06/2011 11:53:18 AM,07/06/2011 11:53:33 AM,07/06/2011 11:53:58 AM,07/06/2011 11:59:38 AM,07/06/2011 12:23:22 PM,07/06/2011 12:27:26 PM,Code 2 Transport,07/06/2011 12:58:44 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,2,2,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",111870167-81 -160101398,88,16004026,Medical Incident,01/10/2016,01/10/2016,01/10/2016 12:03:54 PM,01/10/2016 12:04:32 PM,01/10/2016 12:04:41 PM,01/10/2016 12:05:13 PM,01/10/2016 12:12:39 PM,01/10/2016 12:34:38 PM,01/10/2016 12:42:23 PM,Code 2 Transport,01/10/2016 01:19:55 PM,GEARY BL/GOUGH ST,San Francisco,94109,B04,3,3222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7853346212295, -122.4246870426)",160101398-88 -110730323,65,11024124,Traffic Collision,03/14/2011,03/14/2011,03/14/2011 06:52:34 PM,03/14/2011 06:53:36 PM,03/14/2011 06:54:08 PM,03/14/2011 06:54:38 PM,03/14/2011 06:56:51 PM,03/14/2011 07:21:48 PM,03/14/2011 07:32:55 PM,Code 2 Transport,03/14/2011 07:49:37 PM,LEAVENWORTH ST/MCALLISTER ST,SF,94102,B02,3,1553,2,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",110730323-65 -121800171,RA48,12059911,Medical Incident,06/28/2012,06/28/2012,06/28/2012 12:02:58 PM,06/28/2012 12:04:25 PM,06/28/2012 12:04:49 PM,06/28/2012 12:07:16 PM,06/28/2012 12:07:41 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/28/2012 01:05:54 PM,1400 Block of HALIBUT CT,TI,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",121800171-RA48 -132800184,KM02,13095284,Medical Incident,10/07/2013,10/07/2013,10/07/2013 12:32:10 PM,10/07/2013 12:32:30 PM,10/07/2013 12:33:01 PM,10/07/2013 12:33:38 PM,04/25/2016 01:50:23 PM,10/07/2013 12:55:22 PM,10/07/2013 01:06:36 PM,Code 2 Transport,10/07/2013 01:53:37 PM,4700 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7806274376634, -122.470163577078)",132800184-KM02 -112750368,83,11091172,Medical Incident,10/02/2011,10/02/2011,10/02/2011 09:25:25 PM,10/02/2011 09:27:02 PM,10/02/2011 09:27:16 PM,10/02/2011 09:27:53 PM,10/02/2011 09:34:09 PM,10/02/2011 09:44:31 PM,10/02/2011 10:00:09 PM,Code 2 Transport,10/02/2011 10:13:43 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",112750368-83 -121820257,E07,12060667,Odor (Strange / Unknown),06/30/2012,06/30/2012,06/30/2012 04:22:30 PM,06/30/2012 04:25:06 PM,06/30/2012 04:25:27 PM,06/30/2012 04:26:30 PM,06/30/2012 04:28:22 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,06/30/2012 05:08:55 PM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7576217212029, -122.418887293065)",121820257-E07 -160853509,KM07,16033946,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:19:47 PM,03/25/2016 08:21:32 PM,03/25/2016 08:22:20 PM,03/25/2016 08:23:06 PM,03/25/2016 08:28:59 PM,03/25/2016 08:36:06 PM,03/25/2016 08:46:15 PM,Code 2 Transport,03/25/2016 09:00:27 PM,FERN ST/VAN NESS AV,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Nob Hill,"(37.7880011777275, -122.421954907158)",160853509-KM07 -112500346,E19,11082591,Alarms,09/07/2011,09/07/2011,09/07/2011 10:10:28 PM,09/07/2011 10:12:35 PM,09/07/2011 10:12:53 PM,09/07/2011 10:14:44 PM,09/07/2011 10:16:55 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 10:26:36 PM,0 Block of HUNTINGTON DR,SF,94132,B08,19,8825,3,3,3,true,,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7308419657174, -122.495954672307)",112500346-E19 -160662227,KM06,16026441,Medical Incident,03/06/2016,03/06/2016,03/06/2016 04:13:49 PM,03/06/2016 04:21:26 PM,03/06/2016 04:24:13 PM,03/06/2016 04:24:53 PM,03/06/2016 04:35:05 PM,03/06/2016 05:06:50 PM,03/06/2016 05:50:13 PM,Code 2 Transport,03/06/2016 06:22:09 PM,0 Block of NORTON ST,San Francisco,94112,B09,43,6117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7250514707571, -122.435709128534)",160662227-KM06 -160463869,53,16018729,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:47:44 PM,02/15/2016 10:48:28 PM,02/15/2016 10:48:46 PM,02/15/2016 10:48:54 PM,02/15/2016 10:54:19 PM,02/15/2016 11:04:50 PM,02/15/2016 11:22:19 PM,Code 2 Transport,02/16/2016 12:02:00 AM,3100 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7483773808375, -122.412579951922)",160463869-53 -160700408,KM03,16027723,Medical Incident,03/10/2016,03/09/2016,03/10/2016 05:52:33 AM,03/10/2016 06:01:58 AM,03/10/2016 06:03:00 AM,03/10/2016 06:03:53 AM,03/10/2016 06:15:47 AM,03/10/2016 06:25:49 AM,03/10/2016 06:35:24 AM,Code 2 Transport,03/10/2016 06:58:13 AM,400 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7394012528109, -122.406844256277)",160700408-KM03 -102310335,T15,10072833,Odor (Strange / Unknown),08/19/2010,08/19/2010,08/19/2010 09:46:33 PM,08/19/2010 09:48:58 PM,08/19/2010 09:49:04 PM,08/19/2010 09:50:55 PM,08/19/2010 09:53:35 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 10:00:55 PM,300 Block of MONTEREY BLVD,SF,94131,B09,15,8221,3,3,3,false,,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7314701616832, -122.443153050662)",102310335-T15 -111740302,E33,11057493,Structure Fire,06/23/2011,06/23/2011,06/23/2011 08:26:40 PM,06/23/2011 08:26:40 PM,06/23/2011 08:27:27 PM,06/23/2011 08:29:44 PM,06/23/2011 08:30:29 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,06/23/2011 08:30:37 PM,MISSION ST/WHIPPLE AV,SF,94112,B09,33,6211,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7107485232235, -122.447672441304)",111740302-E33 -102600023,T16,10082033,Alarms,09/17/2010,09/16/2010,09/17/2010 01:35:16 AM,09/17/2010 01:36:19 AM,09/17/2010 01:36:26 AM,09/17/2010 01:38:15 AM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 01:43:34 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,false,,1,TRUCK,3,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",102600023-T16 -160351903,55,16013832,Medical Incident,02/04/2016,02/04/2016,02/04/2016 01:25:27 PM,02/04/2016 01:27:00 PM,02/04/2016 01:27:05 PM,02/04/2016 01:27:23 PM,02/04/2016 01:40:57 PM,02/04/2016 02:16:16 PM,02/04/2016 02:38:18 PM,Code 2 Transport,02/04/2016 03:29:56 PM,CESAR CHAVEZ ST/MISSION ST,San Francisco,94110,B06,11,5624,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7481656900206, -122.418221171762)",160351903-55 -160250581,79,16009808,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:49:54 AM,01/25/2016 06:51:27 AM,01/25/2016 06:51:37 AM,01/25/2016 06:51:43 AM,01/25/2016 06:56:42 AM,01/25/2016 07:38:39 AM,01/25/2016 07:48:18 AM,Code 3 Transport,01/25/2016 09:07:41 AM,0 Block of OLIVER ST,San Francisco,94112,B09,33,6212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7089572929212, -122.450109167213)",160250581-79 -122670241,54,12088271,Medical Incident,09/23/2012,09/23/2012,09/23/2012 04:19:01 PM,09/23/2012 04:22:25 PM,09/23/2012 04:28:38 PM,09/23/2012 04:28:48 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 04:38:35 PM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",122670241-54 -121050229,KM01,12034805,Medical Incident,04/14/2012,04/14/2012,04/14/2012 02:26:24 PM,04/14/2012 02:27:05 PM,04/14/2012 02:27:51 PM,04/14/2012 02:28:30 PM,04/14/2012 02:36:15 PM,04/14/2012 02:48:49 PM,04/14/2012 03:09:54 PM,Code 2 Transport,04/14/2012 03:36:29 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",121050229-KM01 -131880251,92,13064158,Medical Incident,07/07/2013,07/07/2013,07/07/2013 04:50:56 PM,07/07/2013 04:51:14 PM,07/07/2013 04:51:54 PM,07/07/2013 04:52:09 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,04/25/2016 01:51:54 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,2,2,false,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",131880251-92 -160180790,53,16007161,Medical Incident,01/18/2016,01/18/2016,01/18/2016 08:53:51 AM,01/18/2016 08:55:47 AM,01/18/2016 08:56:13 AM,01/18/2016 08:56:24 AM,01/18/2016 09:00:10 AM,01/18/2016 09:27:26 AM,01/18/2016 09:33:20 AM,Code 2 Transport,01/18/2016 10:37:02 AM,500 Block of HYDE ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7860096412795, -122.416458282406)",160180790-53 -122960128,E43,12098105,Structure Fire,10/22/2012,10/22/2012,10/22/2012 10:29:52 AM,10/22/2012 10:29:56 AM,10/22/2012 10:31:07 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 10:31:36 AM,200 Block of ONEIDA AVE,SF,94112,B09,15,828,3,3,3,false,Alarm,1,ENGINE,2,9,11,Outer Mission,"(37.7218642111521, -122.442994070235)",122960128-E43 -123390102,T05,12112997,Medical Incident,12/04/2012,12/04/2012,12/04/2012 09:36:43 AM,12/04/2012 09:37:47 AM,12/04/2012 09:38:46 AM,12/04/2012 09:41:59 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 09:42:10 AM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",123390102-T05 -130710231,E07,13023732,Medical Incident,03/12/2013,03/12/2013,03/12/2013 03:15:58 PM,03/12/2013 03:17:56 PM,03/12/2013 03:18:10 PM,03/12/2013 03:19:10 PM,03/12/2013 03:21:45 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,No Merit,03/12/2013 03:22:32 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",130710231-E07 -113600037,87,11119524,Medical Incident,12/26/2011,12/25/2011,12/26/2011 02:47:25 AM,12/26/2011 02:48:22 AM,12/26/2011 02:49:07 AM,12/26/2011 02:49:12 AM,12/26/2011 03:00:44 AM,12/26/2011 03:18:38 AM,12/26/2011 03:29:39 AM,Code 2 Transport,12/26/2011 04:03:11 AM,MORAGA ST/34TH AV,SF,94122,B08,18,7542,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7553984811476, -122.492675384053)",113600037-87 -131130362,T09,13038256,Structure Fire,04/23/2013,04/23/2013,04/23/2013 09:25:13 PM,04/23/2013 09:25:42 PM,04/23/2013 09:25:50 PM,04/23/2013 09:27:26 PM,04/23/2013 10:16:48 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Fire,04/23/2013 10:30:01 PM,600 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,false,Alarm,1,TRUCK,4,6,9,Bernal Heights,"(37.7389128649709, -122.4155498834)",131130362-T09 -120630178,E02,12020742,Alarms,03/03/2012,03/03/2012,03/03/2012 11:39:10 AM,03/03/2012 11:40:21 AM,03/03/2012 11:40:27 AM,03/03/2012 11:40:41 AM,03/03/2012 11:42:17 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 11:49:19 AM,0 Block of EMERY LN,SF,94133,B01,2,1333,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",120630178-E02 -132510287,D2,13084895,Structure Fire,09/08/2013,09/08/2013,09/08/2013 04:29:13 PM,09/08/2013 04:29:49 PM,09/08/2013 04:30:27 PM,09/08/2013 04:31:56 PM,09/08/2013 04:34:40 PM,04/25/2016 01:50:53 PM,04/25/2016 01:50:53 PM,Other,09/08/2013 04:36:58 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,CHIEF,7,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",132510287-D2 -121180011,E32,12038947,Medical Incident,04/27/2012,04/26/2012,04/27/2012 01:11:39 AM,04/27/2012 01:13:16 AM,04/27/2012 01:13:31 AM,04/27/2012 01:14:54 AM,04/27/2012 01:18:32 AM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,Other,04/27/2012 01:21:22 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",121180011-E32 -132680400,E06,13091166,Medical Incident,09/25/2013,09/25/2013,09/25/2013 09:15:20 PM,09/25/2013 09:16:44 PM,09/25/2013 09:18:00 PM,09/25/2013 09:19:27 PM,09/25/2013 09:30:02 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 09:30:30 PM,3600 Block of 17TH ST,SF,94114,B02,6,5251,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7628765970526, -122.427832473842)",132680400-E06 -160382785,72,16015323,Medical Incident,02/07/2016,02/07/2016,02/07/2016 05:58:31 PM,02/07/2016 06:00:24 PM,02/07/2016 06:01:04 PM,02/07/2016 06:01:10 PM,02/07/2016 06:05:05 PM,02/07/2016 06:14:03 PM,02/07/2016 06:27:03 PM,Code 2 Transport,02/07/2016 06:39:39 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160382785-72 -160252848,76,16010031,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:37:30 PM,01/25/2016 05:39:08 PM,01/25/2016 05:39:34 PM,01/25/2016 05:39:44 PM,01/25/2016 05:52:07 PM,01/25/2016 06:02:11 PM,01/25/2016 06:17:41 PM,Code 2 Transport,01/25/2016 06:46:08 PM,KEARNY ST/THE EMBARCADERO NOR,San Francisco,94133,B01,28,1255,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8069201392457, -122.407170160416)",160252848-76 -103360253,E03,10107537,Alarms,12/02/2010,12/02/2010,12/02/2010 03:56:11 PM,12/02/2010 03:57:12 PM,12/02/2010 03:57:25 PM,12/02/2010 03:58:25 PM,12/02/2010 04:00:14 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/02/2010 04:04:50 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",103360253-E03 -120740266,KM10,12024618,Medical Incident,03/14/2012,03/14/2012,03/14/2012 03:59:36 PM,03/14/2012 04:01:12 PM,03/14/2012 04:02:05 PM,03/14/2012 04:04:22 PM,03/14/2012 04:08:26 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,No Merit,03/14/2012 04:15:37 PM,1400 Block of PINE ST,SF,94109,B04,3,3122,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",120740266-KM10 -122820088,E03,12093273,Medical Incident,10/08/2012,10/08/2012,10/08/2012 08:58:47 AM,10/08/2012 09:02:40 AM,10/08/2012 09:04:30 AM,10/08/2012 09:07:10 AM,10/08/2012 09:07:15 AM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/08/2012 09:11:47 AM,LARKIN ST/OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",122820088-E03 -122130327,T18,12070821,Structure Fire,07/31/2012,07/31/2012,07/31/2012 08:03:55 PM,07/31/2012 08:04:09 PM,07/31/2012 08:04:44 PM,07/31/2012 08:05:51 PM,07/31/2012 08:10:05 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 08:12:36 PM,2000 Block of 17TH AVE,SF,94116,B08,40,7374,3,3,3,false,Fire,1,TRUCK,4,8,7,Inner Sunset,"(37.7496688750251, -122.474079548808)",122130327-T18 -131900130,77,13064678,Medical Incident,07/09/2013,07/09/2013,07/09/2013 10:01:25 AM,07/09/2013 10:02:04 AM,07/09/2013 10:02:19 AM,07/09/2013 10:03:31 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 10:05:51 AM,100 Block of SAN BENITO WAY,SF,94127,B08,39,8556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7339984907458, -122.466997609154)",131900130-77 -160471613,88,16018911,Medical Incident,02/16/2016,02/16/2016,02/16/2016 12:16:58 PM,02/16/2016 12:19:21 PM,02/16/2016 12:19:56 PM,02/16/2016 12:20:21 PM,02/16/2016 12:35:34 PM,02/16/2016 12:54:02 PM,02/16/2016 01:22:38 PM,Code 2 Transport,02/16/2016 02:16:56 PM,300 Block of WESTGATE DR,San Francisco,94127,B09,39,8536,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7312040896508, -122.464042980506)",160471613-88 -160310059,53,16012008,Medical Incident,01/31/2016,01/30/2016,01/31/2016 12:18:19 AM,01/31/2016 12:20:01 AM,01/31/2016 12:37:22 AM,01/31/2016 12:37:41 AM,01/31/2016 12:49:31 AM,01/31/2016 01:04:29 AM,01/31/2016 01:12:25 AM,Code 2 Transport,01/31/2016 02:09:51 AM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",160310059-53 -160602974,73,16024033,Traffic Collision,02/29/2016,02/29/2016,02/29/2016 06:46:34 PM,02/29/2016 06:46:34 PM,02/29/2016 06:46:34 PM,02/29/2016 06:46:34 PM,02/29/2016 06:46:34 PM,02/29/2016 07:21:04 PM,02/29/2016 07:39:04 PM,Code 2 Transport,02/29/2016 08:02:30 PM,LAGUNA HONDA BL/MERCED AV,San Francisco,94127,B08,20,8641,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7466425954476, -122.458696223627)",160602974-73 -160050178,KM03,16001826,Medical Incident,01/05/2016,01/04/2016,01/05/2016 01:56:51 AM,01/05/2016 01:58:16 AM,01/05/2016 01:58:37 AM,01/05/2016 01:59:06 AM,01/05/2016 02:05:30 AM,01/05/2016 02:32:35 AM,01/05/2016 02:49:53 AM,Code 2 Transport,01/05/2016 03:25:04 AM,100 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",160050178-KM03 -102900098,T01,10092448,Structure Fire,10/17/2010,10/17/2010,10/17/2010 08:32:14 AM,10/17/2010 08:33:55 AM,10/17/2010 08:34:07 AM,10/17/2010 08:35:41 AM,10/17/2010 08:37:55 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 12:25:12 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,false,,2,TRUCK,4,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",102900098-T01 -122530072,E41,12083566,Structure Fire,09/09/2012,09/08/2012,09/09/2012 05:09:10 AM,09/09/2012 05:09:11 AM,09/09/2012 05:09:24 AM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,Other,09/09/2012 05:10:35 AM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,false,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7832878520296, -122.408952160052)",122530072-E41 -121840145,E03,12061262,Medical Incident,07/02/2012,07/02/2012,07/02/2012 12:07:06 PM,07/02/2012 12:09:21 PM,07/02/2012 12:09:30 PM,07/02/2012 12:09:37 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 12:12:53 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",121840145-E03 -121670082,E17,12055316,Structure Fire,06/15/2012,06/15/2012,06/15/2012 09:26:38 AM,06/15/2012 09:27:57 AM,06/15/2012 09:28:31 AM,06/15/2012 09:30:03 AM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/15/2012 09:35:11 AM,600 Block of DARTMOUTH ST,SF,94134,B09,42,6321,3,3,3,true,Fire,1,ENGINE,7,9,9,Portola,"(37.7225903835958, -122.410184675078)",121670082-E17 -133280212,KM09,13111489,Medical Incident,11/24/2013,11/24/2013,11/24/2013 03:26:30 PM,11/24/2013 03:27:27 PM,11/24/2013 03:28:02 PM,11/24/2013 03:28:55 PM,11/24/2013 03:32:29 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 03:34:26 PM,400 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7864592940991, -122.411489016028)",133280212-KM09 -131390410,KM01,13047200,Traffic Collision,05/19/2013,05/19/2013,05/19/2013 08:09:32 PM,05/19/2013 08:09:32 PM,05/19/2013 08:10:01 PM,05/19/2013 08:11:26 PM,05/19/2013 08:16:49 PM,05/19/2013 08:31:41 PM,05/19/2013 08:47:51 PM,Code 2 Transport,05/19/2013 09:21:56 PM,STANYAN ST/FULTON ST,SF,94122,B07,21,4561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,5,7,1,Lone Mountain/USF,"(37.7747554836103, -122.454682645753)",131390410-KM01 -131850353,E22,13063193,Medical Incident,07/04/2013,07/04/2013,07/04/2013 09:40:04 PM,07/04/2013 09:40:52 PM,07/04/2013 09:41:05 PM,07/04/2013 09:42:52 PM,07/04/2013 09:45:39 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 09:46:28 PM,1200 Block of 26TH AVE,SF,94122,B08,22,7452,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7641771031678, -122.484623655457)",131850353-E22 -112240207,T02,11074009,Structure Fire,08/12/2011,08/12/2011,08/12/2011 01:16:45 PM,08/12/2011 01:16:45 PM,08/12/2011 01:16:56 PM,08/12/2011 01:18:29 PM,08/12/2011 01:20:16 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 01:25:02 PM,900 Block of WASHINGTON ST,SF,94108,B01,2,132,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7948784682471, -122.409042836272)",112240207-T02 -160811965,53,16032199,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:52:37 PM,03/21/2016 01:54:47 PM,03/21/2016 01:55:15 PM,03/21/2016 01:56:07 PM,03/21/2016 02:00:44 PM,03/21/2016 02:24:51 PM,03/21/2016 02:36:08 PM,Code 2 Transport,03/21/2016 03:18:49 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160811965-53 -102240330,95,10070673,Medical Incident,08/12/2010,08/12/2010,08/12/2010 09:15:53 PM,08/12/2010 09:19:20 PM,08/12/2010 09:19:41 PM,08/12/2010 09:20:08 PM,08/12/2010 09:27:42 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,No Merit,08/12/2010 09:32:06 PM,0 Block of RUTH ST,SF,94112,B09,43,6121,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7232126211966, -122.436631289328)",102240330-95 -160482301,88,16019384,Medical Incident,02/17/2016,02/17/2016,02/17/2016 02:35:06 PM,02/17/2016 02:35:47 PM,02/17/2016 02:37:00 PM,02/17/2016 02:37:12 PM,02/17/2016 02:41:58 PM,02/17/2016 03:03:38 PM,02/17/2016 03:17:37 PM,Code 2 Transport,02/17/2016 03:55:29 PM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",160482301-88 -160383090,70,16015362,Medical Incident,02/07/2016,02/07/2016,02/07/2016 07:43:45 PM,02/07/2016 07:43:45 PM,02/07/2016 07:44:07 PM,02/07/2016 07:44:17 PM,02/07/2016 07:49:10 PM,02/07/2016 08:03:59 PM,02/07/2016 08:07:58 PM,Code 2 Transport,02/07/2016 09:00:53 PM,MCALLISTER ST/HYDE ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160383090-70 -160761933,55,16030159,Medical Incident,03/16/2016,03/16/2016,03/16/2016 01:24:06 PM,03/16/2016 01:24:06 PM,03/16/2016 01:25:53 PM,03/16/2016 01:26:03 PM,03/16/2016 01:40:54 PM,03/16/2016 02:25:35 PM,03/16/2016 02:34:47 PM,Code 2 Transport,03/16/2016 03:24:12 PM,5800 Block of GEARY BL,San Francisco,94121,B07,14,7172,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7803347831588, -122.482059336192)",160761933-55 -131040026,79,13034790,Medical Incident,04/14/2013,04/13/2013,04/14/2013 01:13:16 AM,04/14/2013 01:13:47 AM,04/14/2013 01:14:10 AM,04/14/2013 01:14:22 AM,04/14/2013 01:22:20 AM,04/14/2013 01:33:28 AM,04/14/2013 01:41:23 AM,Code 2 Transport,04/14/2013 01:55:16 AM,BROADWAY/KEARNY ST,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7980169557217, -122.40547307119)",131040026-79 -110760051,E01,11024888,Medical Incident,03/17/2011,03/16/2011,03/17/2011 05:07:40 AM,03/17/2011 05:09:44 AM,03/17/2011 05:09:54 AM,03/17/2011 05:12:59 AM,03/17/2011 05:17:53 AM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 05:25:19 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,2,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",110760051-E01 -160241813,50,16009540,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:46:31 PM,01/24/2016 01:49:41 PM,01/24/2016 01:49:54 PM,01/24/2016 01:50:01 PM,01/24/2016 02:04:47 PM,01/24/2016 02:28:49 PM,01/24/2016 02:39:09 PM,Code 2 Transport,01/24/2016 03:34:38 PM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",160241813-50 -110850321,E03,11028154,Medical Incident,03/26/2011,03/26/2011,03/26/2011 07:01:43 PM,03/26/2011 07:02:00 PM,03/26/2011 07:13:16 PM,03/26/2011 07:13:30 PM,03/26/2011 07:15:45 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 07:53:15 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",110850321-E03 -112040391,E33,11067576,Medical Incident,07/23/2011,07/23/2011,07/23/2011 11:37:35 PM,07/23/2011 11:38:13 PM,07/23/2011 11:38:29 PM,07/23/2011 11:40:18 PM,07/23/2011 11:42:40 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 11:49:24 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7166586779316, -122.474310774336)",112040391-E33 -160153654,71,16006165,Medical Incident,01/15/2016,01/15/2016,01/15/2016 08:53:28 PM,01/15/2016 08:54:34 PM,01/15/2016 08:55:00 PM,01/15/2016 08:57:52 PM,01/15/2016 09:14:07 PM,01/15/2016 09:40:03 PM,01/15/2016 09:59:33 PM,Code 2 Transport,01/15/2016 10:49:25 PM,"13TH ST/GATEVIEW AV, TI",Treasure Isla,94130,B03,48,2931,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8281641396783, -122.377094979291)",160153654-71 -140290362,E24,14010045,Medical Incident,01/29/2014,01/29/2014,01/29/2014 10:42:57 PM,01/29/2014 10:45:25 PM,01/29/2014 10:45:50 PM,01/29/2014 10:47:41 PM,01/29/2014 10:49:36 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/29/2014 10:57:04 PM,21ST ST/DOUGLASS ST,SF,94114,B06,24,5463,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7554336380044, -122.438864310832)",140290362-E24 -102950366,E31,10094239,Alarms,10/22/2010,10/22/2010,10/22/2010 09:09:27 PM,10/22/2010 09:10:37 PM,10/22/2010 09:10:46 PM,10/22/2010 09:12:01 PM,10/22/2010 09:15:07 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/22/2010 09:25:35 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,3,3,3,true,,1,ENGINE,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",102950366-E31 -103090347,94,10099183,Medical Incident,11/05/2010,11/05/2010,11/05/2010 09:11:48 PM,11/05/2010 09:13:43 PM,11/05/2010 09:14:00 PM,11/05/2010 09:14:26 PM,11/05/2010 09:17:45 PM,11/05/2010 09:47:14 PM,11/05/2010 10:08:59 PM,Code 2 Transport,11/05/2010 10:38:37 PM,300 Block of GENNESSEE ST,SF,94112,B09,15,8234,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7311086806598, -122.451212894413)",103090347-94 -121260152,E01,12041850,Medical Incident,05/05/2012,05/05/2012,05/05/2012 10:06:00 AM,05/05/2012 10:06:13 AM,05/05/2012 10:06:40 AM,05/05/2012 10:09:58 AM,05/05/2012 10:11:21 AM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 10:17:09 AM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",121260152-E01 -112090269,E13,11069075,Medical Incident,07/28/2011,07/28/2011,07/28/2011 04:49:29 PM,07/28/2011 04:51:07 PM,07/28/2011 04:51:39 PM,07/28/2011 04:52:33 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 04:55:06 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",112090269-E13 -120820067,RC1,12027133,Medical Incident,03/22/2012,03/22/2012,03/22/2012 08:17:24 AM,03/22/2012 08:18:31 AM,03/22/2012 08:18:47 AM,03/22/2012 08:23:22 AM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Other,03/22/2012 08:24:53 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",120820067-RC1 -122880088,86,12095204,Medical Incident,10/14/2012,10/13/2012,10/14/2012 07:05:54 AM,10/14/2012 07:06:47 AM,10/14/2012 07:08:10 AM,10/14/2012 07:09:46 AM,10/14/2012 07:22:22 AM,10/14/2012 07:32:09 AM,10/14/2012 07:54:54 AM,Code 2 Transport,10/14/2012 08:31:48 AM,700 Block of STANYAN ST,SF,94117,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",122880088-86 -113030404,E22,11100745,Outside Fire,10/30/2011,10/30/2011,10/30/2011 09:15:42 PM,10/30/2011 09:16:58 PM,10/30/2011 09:17:11 PM,10/30/2011 09:18:04 PM,10/30/2011 09:21:06 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Fire,10/30/2011 09:25:11 PM,24TH AV/JUDAH ST,SF,94122,B08,22,7453,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614644208149, -122.48235209902)",113030404-E22 -103400266,E07,10108897,Medical Incident,12/06/2010,12/06/2010,12/06/2010 04:18:53 PM,12/06/2010 04:20:50 PM,12/06/2010 04:22:32 PM,12/06/2010 04:24:13 PM,12/06/2010 04:26:48 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Other,12/06/2010 04:48:27 PM,800 Block of POTRERO AVE,SF,94110,B10,7,255,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",103400266-E07 -160830380,KM07,16032838,Medical Incident,03/23/2016,03/22/2016,03/23/2016 04:42:19 AM,03/23/2016 04:42:19 AM,03/23/2016 04:42:57 AM,03/23/2016 04:51:21 AM,03/23/2016 04:58:32 AM,03/23/2016 05:11:44 AM,03/23/2016 05:24:11 AM,Code 2 Transport,03/23/2016 06:03:26 AM,TABER PL/3RD ST,San Francisco,94107,B03,8,2174,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7810621398035, -122.395517753822)",160830380-KM07 -122020085,AM02,12067031,Medical Incident,07/20/2012,07/19/2012,07/20/2012 07:03:58 AM,07/20/2012 07:04:34 AM,07/20/2012 07:05:57 AM,07/20/2012 07:06:52 AM,07/20/2012 07:11:49 AM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 07:54:40 AM,2500 Block of 47TH AVE,SF,94116,B08,23,7712,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.738928542073, -122.505563264161)",122020085-AM02 -132510088,E21,13084729,Medical Incident,09/08/2013,09/07/2013,09/08/2013 05:59:25 AM,09/08/2013 06:00:09 AM,09/08/2013 06:00:36 AM,09/08/2013 06:01:42 AM,09/08/2013 06:03:24 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 06:14:22 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",132510088-E21 -160340797,AM08,16013282,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:43:08 AM,02/03/2016 08:44:27 AM,02/03/2016 08:44:56 AM,02/03/2016 08:45:04 AM,02/03/2016 09:19:13 AM,02/03/2016 09:19:14 AM,02/03/2016 09:45:11 AM,Code 2 Transport,02/03/2016 10:01:45 AM,0 Block of COLLINS ST,San Francisco,94118,B05,10,4373,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.785277764485, -122.450305788594)",160340797-AM08 -160570617,79,16022639,Medical Incident,02/26/2016,02/25/2016,02/26/2016 07:24:35 AM,02/26/2016 07:26:12 AM,02/26/2016 07:26:37 AM,02/26/2016 07:26:47 AM,02/26/2016 07:46:09 AM,02/26/2016 08:12:32 AM,02/26/2016 08:39:49 AM,Code 2 Transport,02/26/2016 09:27:41 AM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",160570617-79 -121450192,E36,12048143,Citizen Assist / Service Call,05/24/2012,05/24/2012,05/24/2012 02:01:56 PM,05/24/2012 02:03:30 PM,05/24/2012 02:03:41 PM,05/24/2012 02:07:26 PM,05/24/2012 02:14:20 PM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,No Merit,05/24/2012 02:14:26 PM,MISSION ST/13TH ST,SF,94103,B02,36,5124,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",121450192-E36 -122200204,T14,12072993,Alarms,08/07/2012,08/07/2012,08/07/2012 03:39:46 PM,08/07/2012 03:40:41 PM,08/07/2012 03:41:09 PM,08/07/2012 03:42:10 PM,08/07/2012 03:45:13 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/07/2012 03:55:04 PM,3500 Block of BALBOA ST,SF,94121,B07,34,7254,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.775684774254, -122.496784770232)",122200204-T14 -122090336,T05,12069577,Gas Leak (Natural and LP Gases),07/27/2012,07/27/2012,07/27/2012 09:24:49 PM,07/27/2012 09:27:17 PM,07/27/2012 09:27:25 PM,07/27/2012 09:28:47 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 09:50:50 PM,600 Block of FULTON ST,SF,94102,B02,5,3424,3,3,3,false,Alarm,1,TRUCK,3,2,5,Hayes Valley,"(37.7780677663985, -122.428249599273)",122090336-T05 -120320298,E08,12010679,Structure Fire,02/01/2012,02/01/2012,02/01/2012 07:05:26 PM,02/01/2012 07:08:14 PM,02/01/2012 07:08:41 PM,02/01/2012 07:10:15 PM,02/01/2012 07:12:46 PM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/01/2012 07:22:28 PM,500 Block of 18TH ST,SF,94107,B03,29,2466,3,3,3,true,Fire,1,ENGINE,3,3,10,Potrero Hill,"(37.7631325072007, -122.388271828178)",120320298-E08 -160332024,88,16013022,Medical Incident,02/02/2016,02/02/2016,02/02/2016 02:37:20 PM,02/02/2016 02:37:20 PM,02/02/2016 02:38:45 PM,02/02/2016 02:39:24 PM,02/02/2016 02:42:48 PM,02/02/2016 03:00:18 PM,02/02/2016 03:07:28 PM,Code 2 Transport,02/02/2016 03:44:45 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160332024-88 -160860111,88,16034034,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:41:52 AM,03/26/2016 12:41:52 AM,03/26/2016 12:42:03 AM,03/26/2016 12:42:14 AM,03/26/2016 12:48:26 AM,03/26/2016 01:00:37 AM,03/26/2016 01:13:20 AM,Code 2 Transport,03/26/2016 01:45:32 AM,1200 Block of GILMAN AVE,San Francisco,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208340934162, -122.392843829472)",160860111-88 -160723495,AM22,16028801,Medical Incident,03/12/2016,03/12/2016,03/12/2016 10:33:59 PM,03/12/2016 10:34:41 PM,03/12/2016 10:34:57 PM,03/12/2016 10:35:45 PM,03/12/2016 10:45:22 PM,03/12/2016 11:02:51 PM,03/12/2016 11:22:50 PM,Code 2 Transport,03/13/2016 12:06:52 AM,2700 Block of 40TH AVE,San Francisco,94116,B08,18,7616,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7355376867029, -122.497802628088)",160723495-AM22 -160670215,55,16026580,Medical Incident,03/07/2016,03/06/2016,03/07/2016 03:09:15 AM,03/07/2016 03:10:50 AM,03/07/2016 03:11:35 AM,03/07/2016 03:12:00 AM,03/07/2016 03:19:17 AM,03/07/2016 03:36:40 AM,03/07/2016 03:47:38 AM,Code 2 Transport,03/07/2016 04:27:05 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160670215-55 -112550376,T10,11084285,Other,09/12/2011,09/12/2011,09/12/2011 11:33:34 PM,09/12/2011 11:34:01 PM,09/12/2011 11:34:50 PM,09/12/2011 11:36:30 PM,09/12/2011 11:39:44 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Fire,09/12/2011 11:49:07 PM,0 Block of TERRA VISTA AVE,SF,94115,B05,21,4256,3,3,3,false,,1,TRUCK,1,5,2,Lone Mountain/USF,"(37.7815553117613, -122.44255898267)",112550376-T10 -103630289,AM10,10116541,Medical Incident,12/29/2010,12/29/2010,12/29/2010 07:31:00 PM,12/29/2010 07:33:21 PM,12/29/2010 07:34:09 PM,12/29/2010 07:35:33 PM,12/29/2010 07:44:36 PM,12/29/2010 08:08:32 PM,12/29/2010 08:23:12 PM,Code 2 Transport,12/29/2010 08:56:20 PM,5800 Block of MISSION ST,SF,94112,B09,33,6213,3,3,3,false,,1,PRIVATE,1,9,11,Outer Mission,"(37.709160030699, -122.451801431228)",103630289-AM10 -160810886,52,16032096,Medical Incident,03/21/2016,03/21/2016,03/21/2016 09:08:25 AM,03/21/2016 09:09:17 AM,03/21/2016 09:23:36 AM,03/21/2016 09:23:45 AM,03/21/2016 09:26:22 AM,03/21/2016 09:50:05 AM,03/21/2016 10:09:42 AM,Code 2 Transport,03/21/2016 11:01:01 AM,0 Block of SOUTH VAN NESS AVE,San Francisco,94103,B02,36,5117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Mission,"(37.7741251002903, -122.418810211803)",160810886-52 -111720067,E01,11056635,Medical Incident,06/21/2011,06/20/2011,06/21/2011 07:30:57 AM,06/21/2011 07:31:27 AM,06/21/2011 07:31:41 AM,06/21/2011 07:32:45 AM,06/21/2011 07:36:23 AM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/21/2011 07:42:45 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",111720067-E01 -160370032,64,16014498,Medical Incident,02/06/2016,02/05/2016,02/06/2016 12:05:42 AM,02/06/2016 12:05:42 AM,02/06/2016 12:25:07 AM,02/06/2016 12:25:07 AM,02/06/2016 12:26:47 AM,02/06/2016 12:41:37 AM,02/06/2016 01:00:03 AM,Code 2 Transport,02/06/2016 02:09:28 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160370032-64 -111270123,E32,11041992,Administrative,05/07/2011,05/07/2011,05/07/2011 11:08:55 AM,05/07/2011 11:09:27 AM,05/07/2011 11:09:36 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/07/2011 11:11:45 AM,100 Block of PARK ST,SF,94110,B06,32,5646,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7365449385604, -122.422323583735)",111270123-E32 -110510225,79,11016922,Medical Incident,02/20/2011,02/20/2011,02/20/2011 02:31:15 PM,02/20/2011 02:31:31 PM,02/20/2011 02:32:26 PM,02/20/2011 02:33:05 PM,02/20/2011 02:35:44 PM,02/20/2011 02:51:35 PM,02/20/2011 03:01:37 PM,Code 2 Transport,02/20/2011 03:29:36 PM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,true,,1,MEDIC,1,1,3,Chinatown,"(37.7939808204935, -122.405476353162)",110510225-79 -111260142,E02,11041659,Medical Incident,05/06/2011,05/06/2011,05/06/2011 10:07:42 AM,05/06/2011 10:08:57 AM,05/06/2011 10:10:12 AM,05/06/2011 10:10:23 AM,05/06/2011 10:12:55 AM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 10:13:16 AM,ELLIS ST/MASON ST,SF,94102,B03,1,1366,E,3,3,true,,1,ENGINE,2,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",111260142-E02 -160013276,AM12,16000469,Medical Incident,01/01/2016,01/01/2016,01/01/2016 07:17:30 PM,01/01/2016 07:20:48 PM,01/01/2016 07:21:52 PM,01/01/2016 07:22:49 PM,01/01/2016 07:29:26 PM,01/01/2016 07:44:58 PM,01/01/2016 08:02:44 PM,Code 3 Transport,01/01/2016 08:42:06 PM,900 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160013276-AM12 -131380278,93,13046711,Medical Incident,05/18/2013,05/18/2013,05/18/2013 05:31:40 PM,05/18/2013 05:34:04 PM,05/18/2013 05:35:40 PM,05/18/2013 05:35:57 PM,05/18/2013 05:40:03 PM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,Unable to Locate,05/18/2013 05:42:21 PM,800 Block of CAPP ST,SF,94110,B06,7,5511,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7531080512306, -122.417362867532)",131380278-93 -160391101,87,16015547,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:51:17 AM,02/08/2016 09:53:41 AM,02/08/2016 09:53:56 AM,02/08/2016 09:54:23 AM,02/08/2016 09:56:17 AM,02/08/2016 10:21:09 AM,02/08/2016 10:47:12 AM,Code 2 Transport,02/08/2016 11:24:31 AM,19TH ST/VERMONT ST,San Francisco,94107,B10,29,2512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7608339060178, -122.404134492206)",160391101-87 -131750347,E16,13059522,Outside Fire,06/24/2013,06/24/2013,06/24/2013 09:59:32 PM,06/24/2013 09:59:59 PM,06/24/2013 10:00:51 PM,06/24/2013 10:01:57 PM,06/24/2013 10:03:27 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 10:05:06 PM,1700 Block of GREENWICH ST,SF,94123,B04,16,3336,3,3,3,true,Fire,1,ENGINE,1,4,2,Marina,"(37.7998384641503, -122.428456807722)",131750347-E16 -112700339,B03,11089349,Structure Fire,09/27/2011,09/27/2011,09/27/2011 08:38:40 PM,09/27/2011 08:39:25 PM,09/27/2011 08:39:36 PM,09/27/2011 08:41:06 PM,09/27/2011 08:47:56 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/27/2011 08:53:29 PM,2000 Block of ELLIS ST,SF,94115,B05,5,4153,3,3,3,false,,1,CHIEF,9,5,5,Western Addition,"(37.7814694551101, -122.439959733897)",112700339-B03 -122080262,E13,12069226,Alarms,07/26/2012,07/26/2012,07/26/2012 06:15:30 PM,07/26/2012 06:16:30 PM,07/26/2012 06:17:16 PM,04/25/2016 01:57:32 PM,07/26/2012 06:23:48 PM,04/25/2016 01:57:32 PM,04/25/2016 01:57:32 PM,Other,07/26/2012 06:27:55 PM,800 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,3,1,3,Chinatown,"(37.795777854883, -122.404981817889)",122080262-E13 -123250175,81,12108071,Traffic Collision,11/20/2012,11/20/2012,11/20/2012 12:23:44 PM,11/20/2012 12:24:32 PM,11/20/2012 12:24:49 PM,11/20/2012 12:25:11 PM,11/20/2012 12:29:13 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Against Medical Advice,11/20/2012 01:28:29 PM,18TH ST/FOLSOM ST,SF,94110,B02,7,5424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7620991621973, -122.414998618225)",123250175-81 -120650266,KM02,12021554,Medical Incident,03/05/2012,03/05/2012,03/05/2012 04:19:59 PM,03/05/2012 04:21:33 PM,03/05/2012 04:25:57 PM,03/05/2012 04:29:13 PM,03/05/2012 04:45:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/05/2012 05:14:41 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,1,1,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",120650266-KM02 -112990311,E41,11099286,Medical Incident,10/26/2011,10/26/2011,10/26/2011 07:29:51 PM,10/26/2011 07:30:18 PM,10/26/2011 07:30:32 PM,10/26/2011 07:31:19 PM,10/26/2011 07:33:07 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 07:39:05 PM,1900 Block of VAN NESS AVE,SF,94109,B04,41,3153,3,E,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7935141253124, -122.422789161737)",112990311-E41 -140970427,82,14032866,Medical Incident,04/07/2014,04/07/2014,04/07/2014 10:05:57 PM,04/07/2014 10:06:51 PM,04/07/2014 10:07:15 PM,04/07/2014 10:07:46 PM,04/07/2014 10:15:32 PM,04/07/2014 10:37:33 PM,04/07/2014 10:59:57 PM,Code 2 Transport,04/07/2014 11:11:18 PM,6TH ST/FOLSOM ST,SAN FRANCISCO,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7785051047871, -122.405615267864)",140970427-82 -160143469,KM03,16005734,Medical Incident,01/14/2016,01/14/2016,01/14/2016 08:37:33 PM,01/14/2016 08:37:33 PM,01/14/2016 08:37:49 PM,01/14/2016 08:43:57 PM,01/14/2016 08:47:03 PM,01/14/2016 08:56:30 PM,01/14/2016 09:01:30 PM,Code 2 Transport,01/14/2016 09:36:02 PM,GEARY ST/JONES ST,San Francisco,94102,B01,3,1462,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",160143469-KM03 -131850337,E17,13063178,Outside Fire,07/04/2013,07/04/2013,07/04/2013 09:06:57 PM,07/04/2013 09:08:12 PM,07/04/2013 09:08:42 PM,07/04/2013 09:10:17 PM,07/04/2013 09:12:29 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 09:26:59 PM,0 Block of LILLIAN ST,SF,94124,B10,17,6643,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7317329999215, -122.380841163763)",131850337-E17 -112230047,E21,11073545,Structure Fire,08/11/2011,08/10/2011,08/11/2011 04:58:50 AM,08/11/2011 04:59:47 AM,08/11/2011 05:00:03 AM,08/11/2011 05:01:12 AM,08/11/2011 05:03:24 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,08/11/2011 01:14:42 PM,1400 Block of HAIGHT ST,SF,94117,B05,21,4466,3,3,3,false,,2,ENGINE,2,5,5,Haight Ashbury,"(37.7700546614555, -122.446128431298)",112230047-E21 -133160193,E05,13107440,Medical Incident,11/12/2013,11/12/2013,11/12/2013 02:04:23 PM,11/12/2013 02:06:28 PM,11/12/2013 02:08:06 PM,11/12/2013 02:08:13 PM,11/12/2013 02:11:57 PM,11/12/2013 02:26:46 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 02:33:58 PM,1700 Block of SCOTT ST,SF,94115,B04,10,4126,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7859341652244, -122.438231787767)",133160193-E05 -160612220,60,16024367,Medical Incident,03/01/2016,03/01/2016,03/01/2016 03:53:25 PM,03/01/2016 03:55:50 PM,03/01/2016 03:56:01 PM,03/01/2016 03:56:31 PM,03/01/2016 04:05:46 PM,03/01/2016 04:23:35 PM,03/01/2016 04:40:43 PM,Code 2 Transport,03/01/2016 05:17:19 PM,CORTLAND AV/ELLSWORTH ST,San Francisco,94110,B06,32,5726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7388814911648, -122.414558860193)",160612220-60 -133000068,84,13101849,Medical Incident,10/27/2013,10/26/2013,10/27/2013 03:06:42 AM,10/27/2013 03:11:01 AM,10/27/2013 03:17:56 AM,10/27/2013 03:18:13 AM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/27/2013 03:18:32 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",133000068-84 -160761742,KM04,16030138,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:32:55 PM,03/16/2016 12:34:19 PM,03/16/2016 12:34:39 PM,03/16/2016 12:35:01 PM,03/16/2016 12:49:26 PM,03/16/2016 12:49:27 PM,03/16/2016 01:02:09 PM,Code 2 Transport,03/16/2016 01:42:10 PM,200 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",160761742-KM04 -160552088,52,16022035,Medical Incident,02/24/2016,02/24/2016,02/24/2016 02:03:53 PM,02/24/2016 02:04:38 PM,02/24/2016 02:09:27 PM,02/24/2016 02:09:27 PM,02/24/2016 02:13:14 PM,02/24/2016 02:34:28 PM,02/24/2016 02:40:42 PM,Code 2 Transport,02/24/2016 03:10:19 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160552088-52 -120710041,77,12023502,Medical Incident,03/11/2012,03/10/2012,03/11/2012 03:22:08 AM,03/11/2012 03:24:25 AM,03/11/2012 03:24:41 AM,03/11/2012 03:26:39 AM,03/11/2012 03:29:33 AM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,Patient Declined Transport,03/11/2012 03:43:23 AM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",120710041-77 -160480867,82,16019261,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:50:29 AM,02/17/2016 08:52:44 AM,02/17/2016 08:53:27 AM,02/17/2016 08:53:36 AM,02/17/2016 08:59:50 AM,02/17/2016 09:16:44 AM,02/17/2016 09:36:58 AM,Code 2 Transport,02/17/2016 10:10:33 AM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",160480867-82 -132020169,66,13068458,Medical Incident,07/21/2013,07/21/2013,07/21/2013 01:50:38 PM,07/21/2013 01:50:42 PM,07/21/2013 01:52:24 PM,07/21/2013 01:52:58 PM,07/21/2013 02:14:48 PM,07/21/2013 02:38:38 PM,07/21/2013 03:08:28 PM,Code 2 Transport,07/21/2013 03:36:41 PM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",132020169-66 -113050454,B06,11101502,Structure Fire,11/01/2011,11/01/2011,11/01/2011 10:54:21 PM,11/01/2011 10:55:13 PM,11/01/2011 10:55:46 PM,11/01/2011 10:57:05 PM,11/01/2011 11:03:37 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 11:43:14 PM,0 Block of GRAND VIEW TER,SF,94114,B06,24,5266,3,3,3,false,,1,CHIEF,4,6,8,Twin Peaks,"(37.7573748467105, -122.441147943974)",113050454-B06 -160750165,KM07,16029553,Medical Incident,03/15/2016,03/14/2016,03/15/2016 01:46:08 AM,03/15/2016 01:46:56 AM,03/15/2016 01:47:51 AM,03/15/2016 01:48:29 AM,03/15/2016 01:53:28 AM,03/15/2016 02:20:13 AM,03/15/2016 02:50:30 AM,Code 2 Transport,03/15/2016 03:42:06 AM,700 Block of LONDON ST,San Francisco,94112,B09,43,6125,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7175106231913, -122.439146338541)",160750165-KM07 -160401978,71,16016050,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:41:54 PM,02/09/2016 01:44:07 PM,02/09/2016 01:44:37 PM,02/09/2016 01:44:49 PM,02/09/2016 01:55:44 PM,02/09/2016 02:01:35 PM,02/09/2016 02:14:35 PM,Code 2 Transport,02/09/2016 02:38:50 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160401978-71 -111840162,E16,11060760,Medical Incident,07/03/2011,07/03/2011,07/03/2011 12:12:03 PM,07/03/2011 12:12:39 PM,07/03/2011 12:13:01 PM,07/03/2011 12:13:52 PM,07/03/2011 12:16:51 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:25:10 PM,1400 Block of LOMBARD ST,SF,94123,B04,16,3145,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8013151080574, -122.425387423643)",111840162-E16 -130600168,E29,13020107,Medical Incident,03/01/2013,03/01/2013,03/01/2013 12:11:02 PM,03/01/2013 12:12:31 PM,03/01/2013 12:12:47 PM,03/01/2013 12:12:58 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 12:19:27 PM,1200 Block of MARKET ST,SF,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7780365108208, -122.415429100912)",130600168-E29 -112830286,67,11093772,Medical Incident,10/10/2011,10/10/2011,10/10/2011 06:22:03 PM,10/10/2011 06:22:20 PM,10/10/2011 06:22:39 PM,10/10/2011 06:23:25 PM,10/10/2011 06:26:07 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,No Merit,10/10/2011 06:30:26 PM,POTRERO AV/24TH ST,SF,94110,B10,37,2554,3,3,3,true,,1,MEDIC,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",112830286-67 -123560165,E05,12119124,Medical Incident,12/21/2012,12/21/2012,12/21/2012 11:56:35 AM,12/21/2012 11:57:06 AM,12/21/2012 11:57:14 AM,12/21/2012 11:57:23 AM,12/21/2012 11:59:14 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 12:07:29 PM,1800 Block of GEARY BLVD,SF,94115,B04,5,3541,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7840473873954, -122.433701277792)",123560165-E05 -160640098,71,16025318,Medical Incident,03/04/2016,03/03/2016,03/04/2016 12:52:45 AM,03/04/2016 12:54:42 AM,03/04/2016 12:55:09 AM,03/04/2016 12:55:16 AM,03/04/2016 12:59:21 AM,03/04/2016 01:14:56 AM,03/04/2016 01:49:37 AM,Code 2 Transport,03/04/2016 02:34:18 AM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",160640098-71 -113230305,E13,11107405,Medical Incident,11/19/2011,11/19/2011,11/19/2011 08:40:43 PM,11/19/2011 08:41:09 PM,11/19/2011 08:42:18 PM,11/19/2011 08:43:15 PM,11/19/2011 08:45:06 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/19/2011 08:51:17 PM,PACIFIC AV/BATTERY ST,SF,94111,B01,13,1155,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7976541384354, -122.400863176615)",113230305-E13 -110950269,FB1,11031617,Water Rescue,04/05/2011,04/05/2011,04/05/2011 06:39:01 PM,04/05/2011 06:40:44 PM,04/05/2011 06:41:44 PM,04/05/2011 06:43:08 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,Other,04/05/2011 06:51:44 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,,1,SUPPORT,8,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",110950269-FB1 -112410273,85,11079598,Medical Incident,08/29/2011,08/29/2011,08/29/2011 06:19:37 PM,08/29/2011 06:19:38 PM,08/29/2011 06:20:44 PM,08/29/2011 06:21:10 PM,08/29/2011 06:30:45 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 06:33:21 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,2,2,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",112410273-85 -110060173,E29,11001959,Medical Incident,01/06/2011,01/06/2011,01/06/2011 11:51:33 AM,01/06/2011 11:53:00 AM,01/06/2011 11:53:43 AM,01/06/2011 11:53:52 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 11:58:25 AM,18TH ST/LEXINGTON ST,SF,94110,B02,7,5423,3,3,3,true,,1,ENGINE,4,6,9,Mission,"(37.7617474943191, -122.420812735606)",110060173-E29 -102390045,66,10075276,Medical Incident,08/27/2010,08/26/2010,08/27/2010 05:33:22 AM,08/27/2010 05:34:53 AM,08/27/2010 05:35:04 AM,08/27/2010 05:35:37 AM,08/27/2010 05:46:43 AM,08/27/2010 05:58:59 AM,08/27/2010 06:03:54 AM,Other,08/27/2010 06:26:57 AM,700 Block of STOCKTON ST,SF,94108,B01,2,1326,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7924812894581, -122.407636417801)",102390045-66 -140950098,55,14031874,Medical Incident,04/05/2014,04/04/2014,04/05/2014 07:56:48 AM,04/05/2014 07:58:52 AM,04/05/2014 08:00:02 AM,04/05/2014 08:00:23 AM,04/05/2014 08:05:18 AM,04/05/2014 08:15:27 AM,04/05/2014 08:20:26 AM,Code 2 Transport,04/05/2014 08:35:03 AM,CHURCH ST/VALLEY ST,SAN FRANCISCO,94131,B06,11,5563,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7444974074355, -122.426746185523)",140950098-55 -160782701,56,16031086,Medical Incident,03/18/2016,03/18/2016,03/18/2016 04:49:47 PM,03/18/2016 04:51:07 PM,03/18/2016 04:51:15 PM,03/18/2016 04:57:47 PM,03/18/2016 05:01:05 PM,03/18/2016 05:31:34 PM,03/18/2016 05:49:52 PM,Code 2 Transport,03/18/2016 06:52:31 PM,0 Block of TAPIA DR,San Francisco,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7218365399542, -122.480911501802)",160782701-56 -103060064,E38,10097796,Medical Incident,11/02/2010,11/01/2010,11/02/2010 01:32:21 AM,11/02/2010 01:32:54 AM,11/02/2010 01:35:02 AM,11/02/2010 01:36:36 AM,11/02/2010 01:39:33 AM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,04/25/2016 02:07:48 PM,1400 Block of GRANT AVE,SF,94133,B04,28,1266,3,3,3,false,,1,ENGINE,2,1,3,North Beach,"(37.8001795612037, -122.40742149758)",103060064-E38 -123330035,89,12110536,Medical Incident,11/28/2012,11/27/2012,11/28/2012 03:52:30 AM,11/28/2012 03:53:50 AM,11/28/2012 03:54:28 AM,11/28/2012 03:54:44 AM,11/28/2012 03:59:28 AM,11/28/2012 04:12:58 AM,04/25/2016 01:55:36 PM,Other,11/28/2012 04:39:42 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",123330035-89 -102350144,E10,10073914,Alarms,08/23/2010,08/23/2010,08/23/2010 11:28:35 AM,08/23/2010 11:30:06 AM,08/23/2010 11:30:09 AM,08/23/2010 11:30:44 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 11:36:13 AM,2900 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.7876971552244, -122.442920479782)",102350144-E10 -133070212,RS1,13104411,Medical Incident,11/03/2013,11/03/2013,11/03/2013 02:25:19 PM,11/03/2013 02:26:07 PM,11/03/2013 02:26:36 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/03/2013 02:30:17 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7799892619986, -122.407376463936)",133070212-RS1 -132730273,75,13092839,Medical Incident,09/30/2013,09/30/2013,09/30/2013 04:18:04 PM,09/30/2013 04:19:50 PM,09/30/2013 04:20:03 PM,09/30/2013 04:20:57 PM,09/30/2013 04:23:38 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 04:36:55 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",132730273-75 -160821647,AM10,16032549,Medical Incident,03/22/2016,03/22/2016,03/22/2016 12:19:29 PM,03/22/2016 12:19:51 PM,03/22/2016 12:20:14 PM,03/22/2016 12:20:57 PM,03/22/2016 12:25:32 PM,03/22/2016 12:44:49 PM,03/22/2016 01:15:34 PM,Code 2 Transport,03/22/2016 01:29:48 PM,1500 Block of 12TH AVE,San Francisco,94122,B08,22,735,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,7,Inner Sunset,"(37.7592342080011, -122.469266161643)",160821647-AM10 -111590270,E28,11052655,Outside Fire,06/08/2011,06/08/2011,06/08/2011 05:43:44 PM,06/08/2011 05:43:44 PM,06/08/2011 05:44:05 PM,06/08/2011 05:44:49 PM,06/08/2011 05:46:47 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/08/2011 05:48:34 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8081576930541, -122.412496867032)",111590270-E28 -110310286,E11,11010243,Medical Incident,01/31/2011,01/31/2011,01/31/2011 05:11:07 PM,01/31/2011 05:12:56 PM,01/31/2011 05:13:25 PM,01/31/2011 05:14:16 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,01/31/2011 05:28:06 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,true,,1,ENGINE,2,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",110310286-E11 -160022592,KM04,16000837,Medical Incident,01/02/2016,01/02/2016,01/02/2016 05:52:39 PM,01/02/2016 05:54:25 PM,01/02/2016 05:59:44 PM,01/02/2016 05:59:44 PM,01/02/2016 06:00:54 PM,01/02/2016 06:21:32 PM,01/02/2016 06:46:49 PM,Code 2 Transport,01/02/2016 07:36:53 PM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",160022592-KM04 -160151568,KM05,16005978,Medical Incident,01/15/2016,01/15/2016,01/15/2016 12:01:28 PM,01/15/2016 12:03:26 PM,01/15/2016 12:03:46 PM,01/15/2016 12:04:21 PM,01/15/2016 12:15:20 PM,01/15/2016 12:42:03 PM,01/15/2016 01:16:36 PM,Code 2 Transport,01/15/2016 01:42:50 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160151568-KM05 -160862112,75,16034213,Medical Incident,03/26/2016,03/26/2016,03/26/2016 02:48:55 PM,03/26/2016 02:49:39 PM,03/26/2016 02:49:59 PM,03/26/2016 02:50:06 PM,03/26/2016 03:09:53 PM,03/26/2016 03:09:56 PM,03/26/2016 03:20:48 PM,Code 2 Transport,03/26/2016 04:06:58 PM,0 Block of BEHR AVE,San Francisco,94131,B05,20,5278,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,7,Inner Sunset,"(37.7577470872448, -122.454867585838)",160862112-75 -140860288,T05,14029041,Medical Incident,03/27/2014,03/27/2014,03/27/2014 07:14:34 PM,03/27/2014 07:14:35 PM,03/27/2014 07:14:35 PM,03/27/2014 07:14:35 PM,03/27/2014 07:14:35 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 07:26:39 PM,HYDE ST/EDDY ST,,94102,B02,3,1545,,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",140860288-T05 -160200794,83,16007928,Medical Incident,01/20/2016,01/20/2016,01/20/2016 08:25:01 AM,01/20/2016 08:27:04 AM,01/20/2016 08:27:49 AM,01/20/2016 08:27:56 AM,01/20/2016 08:49:52 AM,01/20/2016 09:13:59 AM,01/20/2016 09:17:30 AM,Code 2 Transport,01/20/2016 09:41:30 AM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160200794-83 -133410172,T09,13115606,Medical Incident,12/07/2013,12/07/2013,12/07/2013 11:52:27 AM,12/07/2013 11:52:27 AM,12/07/2013 11:52:27 AM,12/07/2013 11:52:37 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,No Merit,12/07/2013 11:54:25 AM,BAYSHORE BL/CORTLAND AV,SF,94124,B10,42,6374,2,2,2,false,Non Life-threatening,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",133410172-T09 -110660237,E07,11021820,Medical Incident,03/07/2011,03/07/2011,03/07/2011 03:58:56 PM,03/07/2011 03:59:55 PM,03/07/2011 04:00:04 PM,03/07/2011 04:01:08 PM,03/07/2011 04:04:13 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/07/2011 04:14:55 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,1,2,true,,1,ENGINE,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",110660237-E07 -110160158,61,11005319,Medical Incident,01/16/2011,01/16/2011,01/16/2011 11:31:25 AM,01/16/2011 11:31:57 AM,01/16/2011 11:32:28 AM,01/16/2011 11:37:01 AM,01/16/2011 11:37:14 AM,01/16/2011 11:58:06 AM,01/16/2011 12:09:30 PM,Code 2 Transport,01/16/2011 12:37:36 PM,18TH ST/SANCHEZ ST,SF,94114,B05,6,5252,2,2,2,true,,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7611554774347, -122.430573567918)",110160158-61 -133550334,E10,13120790,Medical Incident,12/21/2013,12/21/2013,12/21/2013 06:15:09 PM,12/21/2013 06:16:29 PM,12/21/2013 06:24:01 PM,04/25/2016 01:49:08 PM,12/21/2013 06:27:01 PM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Other,12/21/2013 06:56:39 PM,3000 Block of CALIFORNIA ST,SF,94115,B04,10,4336,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7875969285825, -122.444588649572)",133550334-E10 -160461336,56,16018473,Medical Incident,02/15/2016,02/15/2016,02/15/2016 11:21:08 AM,02/15/2016 11:22:34 AM,02/15/2016 11:23:55 AM,02/15/2016 11:24:04 AM,02/15/2016 11:28:56 AM,02/15/2016 11:45:29 AM,02/15/2016 12:00:24 PM,Code 2 Transport,02/15/2016 12:44:05 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160461336-56 -140940211,E18,14031615,High Angle Rescue,04/04/2014,04/04/2014,04/04/2014 02:21:22 PM,04/04/2014 02:24:03 PM,04/04/2014 02:27:30 PM,04/04/2014 02:27:30 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Fire,04/04/2014 02:35:06 PM,1000 Block of POINT LOBOS AVE,SAN FRANCISCO,94121,B07,34,7314,3,3,3,true,Fire,1,ENGINE,12,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",140940211-E18 -160700856,AM04,16027760,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:04:35 AM,03/10/2016 09:05:13 AM,03/10/2016 09:06:04 AM,03/10/2016 09:07:23 AM,03/10/2016 09:11:50 AM,03/10/2016 09:26:50 AM,03/10/2016 09:48:55 AM,Code 2 Transport,03/10/2016 10:19:54 AM,1500 Block of SANSOME ST,San Francisco,94111,B01,13,1215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8046188570053, -122.403391370204)",160700856-AM04 -160102851,54,16004153,Medical Incident,01/10/2016,01/10/2016,01/10/2016 06:51:25 PM,01/10/2016 06:53:14 PM,01/10/2016 06:54:17 PM,01/10/2016 06:54:24 PM,01/10/2016 06:59:24 PM,01/10/2016 07:15:14 PM,01/10/2016 07:30:32 PM,Code 2 Transport,01/10/2016 07:52:48 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7904732830605, -122.406742211994)",160102851-54 -160421036,82,16016798,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:37:03 AM,02/11/2016 09:38:28 AM,02/11/2016 09:38:49 AM,02/11/2016 09:38:58 AM,02/11/2016 09:55:36 AM,02/11/2016 10:10:59 AM,02/11/2016 10:37:58 AM,Code 2 Transport,02/11/2016 11:07:47 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160421036-82 -160780327,73,16030878,Medical Incident,03/18/2016,03/17/2016,03/18/2016 02:39:12 AM,03/18/2016 02:41:53 AM,03/18/2016 02:42:56 AM,03/18/2016 02:45:35 AM,03/18/2016 02:45:35 AM,03/18/2016 02:59:37 AM,03/18/2016 03:08:52 AM,Code 2 Transport,03/18/2016 03:52:38 AM,900 Block of MARIN ST,San Francisco,94124,B10,25,2641,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7490388872094, -122.385953852775)",160780327-73 -160652235,58,16025977,Medical Incident,03/05/2016,03/05/2016,03/05/2016 03:56:42 PM,03/05/2016 03:58:09 PM,03/05/2016 03:59:09 PM,03/05/2016 03:59:18 PM,03/05/2016 04:02:31 PM,03/05/2016 04:11:46 PM,03/05/2016 04:33:28 PM,Code 2 Transport,03/05/2016 04:58:18 PM,300 Block of MISSION ST,San Francisco,94105,B03,35,2126,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",160652235-58 -131880256,B07,13064162,Alarms,07/07/2013,07/07/2013,07/07/2013 05:00:19 PM,07/07/2013 05:02:17 PM,07/07/2013 05:02:35 PM,07/07/2013 05:04:40 PM,07/07/2013 05:09:29 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 05:17:12 PM,1800 Block of OAK ST,SF,94117,B05,21,4524,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7715102072393, -122.449768153946)",131880256-B07 -123590013,E02,12120029,Alarms,12/24/2012,12/23/2012,12/24/2012 01:08:40 AM,12/24/2012 01:10:20 AM,12/24/2012 01:10:43 AM,12/24/2012 01:12:30 AM,12/24/2012 01:16:00 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 01:29:22 AM,300 Block of KEARNY ST,SF,94108,B01,13,1243,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",123590013-E02 -102480131,E42,10078319,Medical Incident,09/05/2010,09/05/2010,09/05/2010 10:19:48 AM,09/05/2010 10:20:31 AM,09/05/2010 10:21:02 AM,09/05/2010 10:22:41 AM,09/05/2010 10:26:08 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 10:40:47 AM,1700 Block of QUESADA AVE,SF,94124,B10,17,6514,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.733906254926, -122.392215307414)",102480131-E42 -160350157,68,16013643,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:13:39 AM,02/04/2016 01:13:39 AM,02/04/2016 01:15:43 AM,02/04/2016 01:15:43 AM,02/04/2016 01:18:50 AM,02/04/2016 01:22:46 AM,02/04/2016 01:32:47 AM,Code 2 Transport,02/04/2016 02:28:05 AM,200 Block of BROADWAY,San Francisco,94111,B01,13,1155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7984506502378, -122.401628969112)",160350157-68 -121940408,54,12064738,Traffic Collision,07/12/2012,07/12/2012,07/12/2012 10:05:08 PM,07/12/2012 10:05:17 PM,07/12/2012 10:06:49 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/12/2012 10:16:58 PM,PAGE ST/DIVISADERO ST,SF,94117,B05,21,4144,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",121940408-54 -111950260,E17,11064439,Medical Incident,07/14/2011,07/14/2011,07/14/2011 05:12:09 PM,07/14/2011 05:12:41 PM,07/14/2011 05:13:39 PM,04/25/2016 02:03:40 PM,07/14/2011 05:16:52 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 05:38:05 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",111950260-E17 -160772419,57,16030650,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:04:47 PM,03/17/2016 03:05:40 PM,03/17/2016 03:06:40 PM,03/17/2016 03:06:52 PM,03/17/2016 03:14:16 PM,03/17/2016 03:30:17 PM,03/17/2016 03:52:03 PM,Code 2 Transport,03/17/2016 04:47:45 PM,THE EMBARCADERO SOU/FOLSOM ST,San Francisco,94105,B03,35,2112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7904750361941, -122.39055604599)",160772419-57 -160661430,KM06,16026377,Medical Incident,03/06/2016,03/06/2016,03/06/2016 12:32:41 PM,03/06/2016 12:35:12 PM,03/06/2016 12:35:56 PM,03/06/2016 12:36:31 PM,03/06/2016 01:07:16 PM,03/06/2016 01:18:31 PM,03/06/2016 01:52:19 PM,Code 2 Transport,03/06/2016 02:15:13 PM,JEFFERSON ST/MASON ST,San Francisco,94133,B01,28,1344,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8084210588577, -122.414164435002)",160661430-KM06 -112460129,82,11081068,Medical Incident,09/03/2011,09/03/2011,09/03/2011 10:12:32 AM,09/03/2011 10:16:28 AM,09/03/2011 10:16:39 AM,09/03/2011 10:17:52 AM,09/03/2011 10:19:27 AM,09/03/2011 10:33:40 AM,09/03/2011 10:44:22 AM,Code 2 Transport,09/03/2011 11:05:52 AM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",112460129-82 -111220082,E12,11040239,Traffic Collision,05/02/2011,05/02/2011,05/02/2011 08:14:53 AM,05/02/2011 08:16:13 AM,05/02/2011 08:16:45 AM,05/02/2011 08:18:12 AM,05/02/2011 08:21:54 AM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,05/02/2011 08:30:26 AM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,3,3,3,true,,1,ENGINE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",111220082-E12 -122230038,87,12073811,Medical Incident,08/10/2012,08/09/2012,08/10/2012 03:29:18 AM,08/10/2012 03:31:01 AM,08/10/2012 03:31:21 AM,08/10/2012 03:31:31 AM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 03:33:05 AM,LAFAYETTE ST/HOWARD ST,SF,94103,B02,36,5114,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,6,Mission,"(37.7724561580729, -122.416303598047)",122230038-87 -131110049,E03,13037285,Structure Fire,04/21/2013,04/20/2013,04/21/2013 06:33:34 AM,04/21/2013 06:34:37 AM,04/21/2013 06:35:04 AM,04/21/2013 06:36:01 AM,04/21/2013 06:38:02 AM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 06:46:58 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131110049-E03 -110090167,E44,11002979,Alarms,01/09/2011,01/09/2011,01/09/2011 11:26:24 AM,01/09/2011 11:27:16 AM,01/09/2011 11:27:23 AM,01/09/2011 11:28:05 AM,01/09/2011 11:31:32 AM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/09/2011 11:42:23 AM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,true,,1,ENGINE,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",110090167-E44 -103430291,RS1,10109936,Medical Incident,12/09/2010,12/09/2010,12/09/2010 04:22:04 PM,12/09/2010 04:25:08 PM,12/09/2010 04:25:24 PM,12/09/2010 04:25:52 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 04:27:47 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,true,,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",103430291-RS1 -160462332,KM05,16018568,Medical Incident,02/15/2016,02/15/2016,02/15/2016 03:43:57 PM,02/15/2016 03:44:44 PM,02/15/2016 03:45:00 PM,02/15/2016 03:45:33 PM,02/15/2016 03:52:07 PM,02/15/2016 04:04:02 PM,02/15/2016 04:12:32 PM,Code 2 Transport,02/15/2016 05:02:52 PM,200 Block of CORTLAND AVE,San Francisco,94110,B06,32,5652,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7394642558981, -122.418843328142)",160462332-KM05 -103510089,67,10112517,Medical Incident,12/17/2010,12/17/2010,12/17/2010 07:59:01 AM,12/17/2010 08:00:10 AM,12/17/2010 08:00:49 AM,12/17/2010 08:02:24 AM,12/17/2010 08:12:49 AM,12/17/2010 08:41:42 AM,12/17/2010 08:45:11 AM,Code 2 Transport,12/17/2010 09:07:35 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,1,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7899917286128, -122.418035034103)",103510089-67 -122470282,99,12081812,Medical Incident,09/03/2012,09/03/2012,09/03/2012 09:17:43 PM,09/03/2012 09:17:51 PM,09/03/2012 09:18:20 PM,09/03/2012 09:18:48 PM,09/03/2012 09:26:57 PM,09/03/2012 09:47:22 PM,09/03/2012 09:58:54 PM,Code 2 Transport,09/03/2012 10:32:18 PM,500 Block of JONES ST,SF,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",122470282-99 -132260088,87,13076225,Medical Incident,08/14/2013,08/14/2013,08/14/2013 08:04:14 AM,08/14/2013 08:05:28 AM,08/14/2013 08:05:52 AM,08/14/2013 08:06:12 AM,08/14/2013 08:17:55 AM,08/14/2013 08:24:29 AM,08/14/2013 08:33:05 AM,Code 2 Transport,08/14/2013 08:59:54 AM,1100 Block of FOLSOM ST,SF,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7761748805979, -122.408661568722)",132260088-87 -121810236,T09,12060311,Structure Fire,06/29/2012,06/29/2012,06/29/2012 03:22:13 PM,06/29/2012 03:22:38 PM,06/29/2012 03:22:51 PM,06/29/2012 03:24:12 PM,06/29/2012 03:36:36 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 05:12:17 PM,100 Block of CHARTER OAK AVE,SF,94124,B10,42,6381,3,3,3,false,Fire,1,TRUCK,8,10,10,Bayview Hunters Point,"(37.7362893426109, -122.404797186551)",121810236-T09 -133440287,E01,13116741,Medical Incident,12/10/2013,12/10/2013,12/10/2013 04:07:21 PM,12/10/2013 04:08:02 PM,12/10/2013 04:08:13 PM,12/10/2013 04:09:30 PM,12/10/2013 04:11:02 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 04:19:22 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",133440287-E01 -102240065,T03,10070465,Alarms,08/12/2010,08/11/2010,08/12/2010 07:51:33 AM,08/12/2010 07:53:06 AM,08/12/2010 07:53:21 AM,08/12/2010 07:54:36 AM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,Other,08/12/2010 08:03:56 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,,1,TRUCK,3,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",102240065-T03 -112670314,E01,11088340,Medical Incident,09/24/2011,09/24/2011,09/24/2011 06:37:12 PM,09/24/2011 06:38:50 PM,09/24/2011 06:42:39 PM,09/24/2011 06:44:40 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 06:50:27 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,1,1,2,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",112670314-E01 -113480214,T15,11115479,Alarms,12/14/2011,12/14/2011,12/14/2011 01:31:41 PM,12/14/2011 01:32:31 PM,12/14/2011 01:32:40 PM,12/14/2011 01:34:03 PM,12/14/2011 01:36:34 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 01:45:35 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,false,,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",113480214-T15 -160613206,AM20,16024463,Medical Incident,03/01/2016,03/01/2016,03/01/2016 08:13:27 PM,03/01/2016 08:15:00 PM,03/01/2016 08:19:36 PM,03/01/2016 08:22:47 PM,03/01/2016 08:40:28 PM,03/01/2016 08:43:21 PM,03/01/2016 08:54:04 PM,Code 2 Transport,03/01/2016 09:18:48 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160613206-AM20 -131830246,E35,13062405,Traffic Collision,07/02/2013,07/02/2013,07/02/2013 03:47:24 PM,07/02/2013 03:47:52 PM,07/02/2013 03:48:12 PM,07/02/2013 03:49:46 PM,07/02/2013 03:50:35 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 03:55:54 PM,MISSION ST/5TH ST,SF,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",131830246-E35 -160060428,81,16002269,Medical Incident,01/06/2016,01/05/2016,01/06/2016 05:45:43 AM,01/06/2016 05:47:26 AM,01/06/2016 05:47:40 AM,01/06/2016 05:47:47 AM,01/06/2016 05:55:18 AM,01/06/2016 06:09:16 AM,01/06/2016 06:17:38 AM,Code 2 Transport,01/06/2016 06:46:13 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",160060428-81 -160831184,75,16032900,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:00:04 AM,03/23/2016 10:01:18 AM,03/23/2016 10:01:39 AM,03/23/2016 10:01:46 AM,03/23/2016 10:17:16 AM,03/23/2016 10:38:50 AM,03/23/2016 11:00:21 AM,Code 2 Transport,03/23/2016 11:39:10 AM,CALIFORNIA ST/BATTERY ST,San Francisco,94111,B01,13,1162,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",160831184-75 -111760241,54,11058056,Medical Incident,06/25/2011,06/25/2011,06/25/2011 03:27:54 PM,06/25/2011 03:28:29 PM,06/25/2011 03:28:45 PM,06/25/2011 03:31:05 PM,06/25/2011 03:35:54 PM,06/25/2011 03:45:31 PM,06/25/2011 03:49:12 PM,Code 2 Transport,06/25/2011 04:04:21 PM,PINE ST/HYDE ST,SF,94109,B04,41,1562,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",111760241-54 -121980042,E03,12065698,Medical Incident,07/16/2012,07/15/2012,07/16/2012 05:31:42 AM,07/16/2012 05:33:51 AM,07/16/2012 05:34:14 AM,07/16/2012 05:35:44 AM,07/16/2012 05:37:44 AM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 05:44:37 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",121980042-E03 -130640175,87,13021426,Medical Incident,03/05/2013,03/05/2013,03/05/2013 12:34:13 PM,03/05/2013 12:36:06 PM,03/05/2013 12:36:21 PM,03/05/2013 12:37:20 PM,03/05/2013 12:40:14 PM,03/05/2013 12:57:56 PM,03/05/2013 01:25:18 PM,Code 2 Transport,03/05/2013 02:03:54 PM,2000 Block of QUINTARA ST,SF,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7482038459873, -122.487333515729)",130640175-87 -160900238,56,16035553,Medical Incident,03/30/2016,03/29/2016,03/30/2016 02:30:39 AM,03/30/2016 02:31:12 AM,03/30/2016 02:31:45 AM,03/30/2016 02:32:47 AM,03/30/2016 02:43:11 AM,03/30/2016 03:04:52 AM,03/30/2016 03:27:23 AM,Code 2 Transport,03/30/2016 04:00:58 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160900238-56 -111780280,63,11058853,Medical Incident,06/27/2011,06/27/2011,06/27/2011 05:07:07 PM,06/27/2011 05:09:45 PM,06/27/2011 05:10:05 PM,06/27/2011 05:10:13 PM,06/27/2011 05:12:30 PM,06/27/2011 05:30:39 PM,06/27/2011 05:42:06 PM,Code 2 Transport,06/27/2011 06:04:59 PM,GENEVA AV/SAN JOSE AV,SF,94112,B09,15,8311,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",111780280-63 -102680339,E32,10085028,Outside Fire,09/25/2010,09/25/2010,09/25/2010 05:44:55 PM,09/25/2010 05:45:44 PM,09/25/2010 05:46:09 PM,09/25/2010 05:46:46 PM,09/25/2010 05:49:05 PM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 05:51:26 PM,MISSION ST/30TH ST,SF,94110,B06,32,5625,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",102680339-E32 -160180216,62,16007089,Traffic Collision,01/18/2016,01/17/2016,01/18/2016 02:22:24 AM,01/18/2016 02:22:24 AM,01/18/2016 02:23:39 AM,01/18/2016 02:23:39 AM,01/18/2016 02:27:14 AM,01/18/2016 03:02:59 AM,01/18/2016 03:08:13 AM,Code 2 Transport,01/18/2016 03:58:59 AM,1100 Block of FOLSOM ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7756232938088, -122.409165302353)",160180216-62 -160870236,KM07,16034426,Medical Incident,03/27/2016,03/26/2016,03/27/2016 01:26:55 AM,03/27/2016 01:27:23 AM,03/27/2016 01:27:37 AM,03/27/2016 01:28:09 AM,03/27/2016 01:36:07 AM,03/27/2016 01:44:18 AM,03/27/2016 02:18:29 AM,Code 2 Transport,03/27/2016 02:50:52 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160870236-KM07 -140760332,E06,14025846,Medical Incident,03/17/2014,03/17/2014,03/17/2014 07:39:43 PM,03/17/2014 07:40:54 PM,03/17/2014 07:41:11 PM,03/17/2014 07:42:04 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Code 2 Transport,03/17/2014 07:56:01 PM,2000 Block of MARKET ST,SAN FRANCISCO,94114,B02,6,5127,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",140760332-E06 -140670194,88,14022687,Medical Incident,03/08/2014,03/08/2014,03/08/2014 01:27:58 PM,03/08/2014 01:28:43 PM,03/08/2014 01:28:54 PM,03/08/2014 01:29:06 PM,03/08/2014 01:36:00 PM,03/08/2014 01:52:38 PM,03/08/2014 02:48:58 PM,Code 2 Transport,03/08/2014 03:07:30 PM,16TH ST/CAPP ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",140670194-88 -111700383,E07,11056220,Alarms,06/19/2011,06/19/2011,06/19/2011 11:22:37 PM,06/19/2011 11:23:50 PM,06/19/2011 11:24:04 PM,06/19/2011 11:25:38 PM,06/19/2011 11:28:22 PM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,Other,06/19/2011 11:37:59 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",111700383-E07 -112930343,T05,11097337,Structure Fire,10/20/2011,10/20/2011,10/20/2011 08:46:42 PM,10/20/2011 08:47:21 PM,10/20/2011 08:47:42 PM,10/20/2011 08:48:15 PM,10/20/2011 08:51:13 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 09:38:03 PM,2000 Block of PIERCE ST,SF,94115,B04,38,3652,3,3,3,false,,1,TRUCK,4,4,2,Pacific Heights,"(37.7887338405193, -122.437108977593)",112930343-T05 -112150382,AM04,11071152,Medical Incident,08/03/2011,08/03/2011,08/03/2011 10:09:30 PM,08/03/2011 10:10:16 PM,08/03/2011 10:12:14 PM,04/25/2016 02:03:20 PM,08/03/2011 10:15:11 PM,08/03/2011 10:34:28 PM,08/03/2011 10:46:16 PM,Code 2 Transport,08/03/2011 11:37:34 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,false,,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",112150382-AM04 -102540299,72,10080390,Traffic Collision,09/11/2010,09/11/2010,09/11/2010 06:18:15 PM,09/11/2010 06:18:15 PM,09/11/2010 06:19:14 PM,09/11/2010 06:19:21 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 06:20:52 PM,TURK ST/MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",102540299-72 -160240446,63,16009419,Medical Incident,01/24/2016,01/23/2016,01/24/2016 03:11:53 AM,01/24/2016 03:12:56 AM,01/24/2016 03:13:11 AM,01/24/2016 03:13:52 AM,01/24/2016 03:20:23 AM,01/24/2016 03:34:38 AM,01/24/2016 03:41:13 AM,Code 2 Transport,01/24/2016 04:00:31 AM,2ND ST/MARKET ST,San Francisco,94105,B03,1,2144,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",160240446-63 -132170340,E15,13073438,Outside Fire,08/05/2013,08/05/2013,08/05/2013 09:07:37 PM,08/05/2013 09:09:38 PM,08/05/2013 09:09:45 PM,08/05/2013 09:11:04 PM,08/05/2013 09:13:24 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 09:17:15 PM,100 Block of SAN JUAN AVE,SF,94112,B09,15,8275,3,3,3,true,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.7249393878258, -122.437476552213)",132170340-E15 -121700358,T07,12056581,Structure Fire,06/18/2012,06/18/2012,06/18/2012 09:40:16 PM,06/18/2012 09:41:05 PM,06/18/2012 09:41:28 PM,06/18/2012 09:43:43 PM,06/18/2012 09:44:47 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/18/2012 10:03:52 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,Fire,1,TRUCK,6,2,9,Mission,"(37.7642361189447, -122.419659842408)",121700358-T07 -102930297,E01,10093538,Medical Incident,10/20/2010,10/20/2010,10/20/2010 06:26:55 PM,10/20/2010 06:27:59 PM,10/20/2010 06:28:15 PM,10/20/2010 06:29:29 PM,10/20/2010 06:31:07 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/20/2010 06:40:10 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",102930297-E01 -160732487,AM14,16029067,Traffic Collision,03/13/2016,03/13/2016,03/13/2016 07:00:21 PM,03/13/2016 07:00:21 PM,03/13/2016 07:05:10 PM,03/13/2016 07:05:55 PM,03/13/2016 07:11:57 PM,03/13/2016 07:25:40 PM,03/13/2016 07:41:46 PM,Code 2 Transport,03/13/2016 08:09:32 PM,3RD AV/FULTON ST,San Francisco,94122,B07,31,7121,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7740311340131, -122.460552661372)",160732487-AM14 -110720102,E15,11023652,Medical Incident,03/13/2011,03/12/2011,03/13/2011 07:20:19 AM,03/13/2011 07:21:42 AM,03/13/2011 07:21:55 AM,03/13/2011 07:23:43 AM,03/13/2011 07:34:36 AM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/13/2011 07:36:28 AM,100 Block of APTOS AVE,SF,94127,B09,15,8535,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7292555680166, -122.466867374325)",110720102-E15 -132860030,85,13097142,Medical Incident,10/13/2013,10/12/2013,10/13/2013 02:13:00 AM,10/13/2013 02:14:23 AM,10/13/2013 02:15:26 AM,10/13/2013 02:15:54 AM,10/13/2013 02:20:41 AM,10/13/2013 02:30:23 AM,10/13/2013 02:43:40 AM,Code 2 Transport,10/13/2013 03:05:28 AM,400 Block of JESSIE ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7820442091855, -122.408519525275)",132860030-85 -131850367,AP,13063203,Other,07/04/2013,07/04/2013,07/04/2013 09:56:00 PM,07/04/2013 09:56:00 PM,07/04/2013 09:56:00 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Fire,07/04/2013 09:56:53 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",131850367-AP -121270276,KM14,12042359,Medical Incident,05/06/2012,05/06/2012,05/06/2012 05:52:48 PM,05/06/2012 05:53:11 PM,05/06/2012 05:55:26 PM,05/06/2012 05:57:53 PM,05/06/2012 06:05:35 PM,05/06/2012 06:16:59 PM,05/06/2012 06:31:54 PM,Code 2 Transport,05/06/2012 06:56:26 PM,1200 Block of FUNSTON AVE,SF,94122,B08,22,7346,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,5,Inner Sunset,"(37.7647970678672, -122.470592087691)",121270276-KM14 -160321736,53,16012584,Medical Incident,02/01/2016,02/01/2016,02/01/2016 01:04:26 PM,02/01/2016 01:05:39 PM,02/01/2016 01:05:57 PM,02/01/2016 01:06:10 PM,02/01/2016 01:12:34 PM,02/01/2016 01:20:05 PM,02/01/2016 01:44:40 PM,Code 3 Transport,02/01/2016 02:24:58 PM,BRODERICK ST/HAYES ST,San Francisco,94117,B05,21,4244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.774778236613, -122.4394662165)",160321736-53 -112130332,E40,11070414,Traffic Collision,08/01/2011,08/01/2011,08/01/2011 07:48:37 PM,08/01/2011 07:49:25 PM,08/01/2011 07:49:42 PM,08/01/2011 07:51:03 PM,08/01/2011 07:52:23 PM,04/25/2016 02:03:23 PM,04/25/2016 02:03:23 PM,Other,08/01/2011 08:27:26 PM,19TH AV/VICENTE ST,SF,94116,B08,40,7415,2,2,2,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.739325432683, -122.475409073617)",112130332-E40 -133140313,E05,13106874,Medical Incident,11/10/2013,11/10/2013,11/10/2013 09:41:25 PM,11/10/2013 09:42:09 PM,11/10/2013 09:42:44 PM,11/10/2013 09:43:39 PM,11/10/2013 09:45:06 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 09:58:47 PM,500 Block of FULTON ST,SF,94102,B02,5,3412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",133140313-E05 -123240369,T08,12107888,Alarms,11/19/2012,11/19/2012,11/19/2012 08:37:02 PM,11/19/2012 08:38:30 PM,11/19/2012 08:38:46 PM,11/19/2012 08:39:31 PM,11/19/2012 08:46:05 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/19/2012 08:57:09 PM,0 Block of CLEMENTINA ST,SF,94105,B03,35,2137,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7873695918922, -122.395351491841)",123240369-T08 -130160161,E42,13005428,Medical Incident,01/16/2013,01/16/2013,01/16/2013 01:03:02 PM,01/16/2013 01:04:26 PM,01/16/2013 01:05:44 PM,01/16/2013 01:06:55 PM,01/16/2013 01:09:16 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Other,01/16/2013 01:22:00 PM,100 Block of CAMBRIDGE ST,SF,94134,B09,42,635,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,9,Excelsior,"(37.7297394945048, -122.419529070231)",130160161-E42 -133120298,RC3,13106122,Medical Incident,11/08/2013,11/08/2013,11/08/2013 05:19:01 PM,11/08/2013 05:20:24 PM,11/08/2013 05:22:49 PM,11/08/2013 05:23:25 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 05:27:11 PM,0 Block of ARAGO ST,SF,94112,B09,15,8223,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7274170733857, -122.443122455556)",133120298-RC3 -130630100,E23,13021024,Alarms,03/04/2013,03/04/2013,03/04/2013 08:48:34 AM,03/04/2013 08:50:09 AM,03/04/2013 08:50:25 AM,03/04/2013 08:52:22 AM,03/04/2013 08:56:29 AM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 09:08:56 AM,2500 Block of 46TH AVE,SF,94116,B08,23,7712,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7389817886029, -122.504355407568)",130630100-E23 -121390374,81,12046337,Medical Incident,05/18/2012,05/18/2012,05/18/2012 11:23:59 PM,05/18/2012 11:24:16 PM,05/18/2012 11:25:01 PM,05/18/2012 11:25:22 PM,05/18/2012 11:28:36 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Patient Declined Transport,05/18/2012 11:53:02 PM,LARKIN ST/WILLOW ST,SF,94109,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7837775223432, -122.417618573606)",121390374-81 -121410219,AM26,12046875,Medical Incident,05/20/2012,05/20/2012,05/20/2012 01:35:59 PM,05/20/2012 01:35:59 PM,05/20/2012 01:42:23 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Unable to Locate,05/20/2012 01:47:38 PM,19TH AV/FULTON ST,SF,94121,B07,31,7156,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Golden Gate Park,"(37.7728636539809, -122.477766945719)",121410219-AM26 -122170091,E01,12071957,Medical Incident,08/04/2012,08/04/2012,08/04/2012 08:32:31 AM,08/04/2012 08:33:23 AM,08/04/2012 08:33:56 AM,08/04/2012 08:35:30 AM,08/04/2012 08:38:03 AM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,04/25/2016 01:57:24 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122170091-E01 -113550301,E42,11117972,Structure Fire,12/21/2011,12/21/2011,12/21/2011 06:34:55 PM,12/21/2011 06:35:26 PM,12/21/2011 06:35:38 PM,12/21/2011 06:36:24 PM,12/21/2011 06:39:13 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 07:39:18 PM,1100 Block of FITZGERALD AVE,SF,94124,B10,17,6615,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7204070192388, -122.390422960871)",113550301-E42 -122730036,T03,12089916,Structure Fire,09/29/2012,09/28/2012,09/29/2012 01:53:45 AM,09/29/2012 01:53:45 AM,09/29/2012 01:53:58 AM,09/29/2012 01:55:23 AM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/29/2012 01:56:22 AM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",122730036-T03 -160830132,68,16032807,Medical Incident,03/23/2016,03/22/2016,03/23/2016 01:18:11 AM,03/23/2016 01:18:11 AM,03/23/2016 01:18:22 AM,03/23/2016 01:18:29 AM,03/23/2016 01:43:31 AM,03/23/2016 01:43:38 AM,03/23/2016 01:43:38 AM,Code 2 Transport,03/23/2016 02:28:16 AM,2400 Block of HARRISON ST,San Francisco,94110,B06,7,545,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7582329952396, -122.412355500109)",160830132-68 -160592766,76,16023639,Medical Incident,02/28/2016,02/28/2016,02/28/2016 06:54:23 PM,02/28/2016 06:59:34 PM,02/28/2016 07:00:15 PM,02/28/2016 07:00:31 PM,02/28/2016 07:12:24 PM,02/28/2016 07:44:51 PM,02/28/2016 08:07:32 PM,Code 2 Transport,02/28/2016 09:01:44 PM,2900 Block of GRIFFITH ST,San Francisco,94124,B10,17,6642,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7165907184231, -122.389695949457)",160592766-76 -140990272,B02,14033492,Alarms,04/09/2014,04/09/2014,04/09/2014 03:27:49 PM,04/09/2014 03:29:15 PM,04/09/2014 03:29:29 PM,04/09/2014 03:30:10 PM,04/09/2014 03:33:56 PM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Fire,04/09/2014 03:35:38 PM,600 Block of STEINER ST,SAN FRANCISCO,94117,B05,21,3631,3,3,3,false,Alarm,1,CHIEF,3,5,5,Hayes Valley,"(37.7751510634662, -122.432804075352)",140990272-B02 -160022529,71,16000827,Medical Incident,01/02/2016,01/02/2016,01/02/2016 05:36:19 PM,01/02/2016 05:38:14 PM,01/02/2016 05:38:25 PM,01/02/2016 05:38:31 PM,01/02/2016 05:44:36 PM,01/02/2016 06:11:07 PM,01/02/2016 06:30:03 PM,Code 2 Transport,01/02/2016 07:03:59 PM,1100 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7204070192388, -122.390422960871)",160022529-71 -132770166,E05,13094064,Alarms,10/04/2013,10/04/2013,10/04/2013 11:29:03 AM,10/04/2013 11:30:17 AM,10/04/2013 11:30:26 AM,10/04/2013 11:30:57 AM,10/04/2013 11:34:05 AM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 11:39:32 AM,1500 Block of FILLMORE ST,SF,94115,B04,5,3541,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",132770166-E05 -113140177,RC1,11104326,Medical Incident,11/10/2011,11/10/2011,11/10/2011 01:07:09 PM,11/10/2011 01:07:39 PM,11/10/2011 01:07:54 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 01:13:51 PM,500 Block of CORBETT AVE,SF,94114,B05,24,528,3,3,3,true,,1,RESCUE CAPTAIN,5,6,8,Castro/Upper Market,"(37.757353945876, -122.444193161155)",113140177-RC1 -140150327,AM22,14005263,Medical Incident,01/15/2014,01/15/2014,01/15/2014 06:52:00 PM,01/15/2014 06:54:32 PM,01/15/2014 07:29:12 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 07:29:29 PM,ELLIS ST/WEBSTER ST,SF,94115,B04,5,3514,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7825698868934, -122.43079788324)",140150327-AM22 -160800708,AM02,16031720,Medical Incident,03/20/2016,03/19/2016,03/20/2016 06:33:12 AM,03/20/2016 06:33:12 AM,03/20/2016 06:33:27 AM,03/20/2016 06:34:24 AM,03/20/2016 06:37:00 AM,03/20/2016 06:52:12 AM,03/20/2016 07:05:24 AM,Code 2 Transport,03/20/2016 07:26:57 AM,20TH ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5447,A,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.758764228895, -122.416872482487)",160800708-AM02 -120670158,T07,12022180,Medical Incident,03/07/2012,03/07/2012,03/07/2012 10:26:51 AM,03/07/2012 10:27:15 AM,03/07/2012 10:27:29 AM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,04/25/2016 01:59:47 PM,24TH ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,3,2,2,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Mission,"(37.7523727894276, -122.416265511485)",120670158-T07 -110140141,T13,11004615,Structure Fire,01/14/2011,01/14/2011,01/14/2011 11:52:15 AM,01/14/2011 11:52:40 AM,01/14/2011 11:52:55 AM,01/14/2011 11:54:12 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 12:04:49 PM,700 Block of UNION ST,SF,94133,B01,28,1422,3,3,3,false,,1,TRUCK,11,1,3,Chinatown,"(37.800140039009, -122.412059325975)",110140141-T13 -130550008,E14,13018418,Medical Incident,02/24/2013,02/23/2013,02/24/2013 12:18:40 AM,02/24/2013 12:20:51 AM,02/24/2013 12:24:44 AM,02/24/2013 12:26:14 AM,02/24/2013 12:28:08 AM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/24/2013 12:32:48 AM,400 Block of 33RD AVE,SF,94121,B07,14,7245,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7806543965679, -122.493444371673)",130550008-E14 -133270055,E09,13110955,Medical Incident,11/23/2013,11/22/2013,11/23/2013 03:25:22 AM,11/23/2013 03:25:22 AM,11/23/2013 03:26:23 AM,11/23/2013 03:28:11 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 03:32:59 AM,2600 Block of BRYANT ST,SF,94110,B06,9,5532,3,3,3,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7520023380427, -122.408984897471)",133270055-E09 -130350049,54,13011878,Medical Incident,02/04/2013,02/03/2013,02/04/2013 03:33:28 AM,02/04/2013 03:34:43 AM,02/04/2013 03:34:59 AM,02/04/2013 03:35:09 AM,02/04/2013 03:39:04 AM,02/04/2013 03:56:01 AM,02/04/2013 03:59:52 AM,Code 2 Transport,02/04/2013 04:22:43 AM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",130350049-54 -121370236,83,12045559,Medical Incident,05/16/2012,05/16/2012,05/16/2012 01:40:35 PM,05/16/2012 01:40:56 PM,05/16/2012 01:42:02 PM,05/16/2012 01:42:08 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,04/25/2016 01:58:39 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",121370236-83 -122290213,77,12075898,Medical Incident,08/16/2012,08/16/2012,08/16/2012 01:52:12 PM,08/16/2012 01:53:21 PM,08/16/2012 01:53:46 PM,08/16/2012 01:54:06 PM,08/16/2012 01:58:09 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Against Medical Advice,08/16/2012 02:53:53 PM,800 Block of PENNSYLVANIA AVE,SF,94107,B10,37,2535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7563691529514, -122.393072356473)",122290213-77 -160390364,54,16015467,Medical Incident,02/08/2016,02/07/2016,02/08/2016 03:18:45 AM,02/08/2016 03:20:34 AM,02/08/2016 03:20:39 AM,02/08/2016 03:20:48 AM,02/08/2016 03:29:55 AM,02/08/2016 03:55:36 AM,02/08/2016 04:00:57 AM,Code 2 Transport,02/08/2016 04:34:27 AM,2100 Block of 32ND AVE,San Francisco,94116,B08,18,7532,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.747100816678, -122.489874704565)",160390364-54 -112260341,54,11074812,Medical Incident,08/14/2011,08/14/2011,08/14/2011 09:15:28 PM,08/14/2011 09:16:46 PM,08/14/2011 09:16:52 PM,08/14/2011 09:16:55 PM,08/14/2011 09:23:24 PM,08/14/2011 09:33:54 PM,08/14/2011 09:39:26 PM,Code 2 Transport,08/14/2011 09:54:13 PM,IVY ST/OCTAVIA ST,SF,94102,B02,36,3265,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7771396609894, -122.424717562867)",112260341-54 -121240225,B04,12041189,Alarms,05/03/2012,05/03/2012,05/03/2012 02:33:51 PM,05/03/2012 02:34:53 PM,05/03/2012 02:35:09 PM,05/03/2012 02:35:53 PM,05/03/2012 02:39:26 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 02:45:46 PM,3100 Block of WASHINGTON ST,SF,94115,B04,10,4265,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7901683360744, -122.445106098836)",121240225-B04 -132270099,82,13076552,Medical Incident,08/15/2013,08/15/2013,08/15/2013 09:36:05 AM,08/15/2013 09:37:27 AM,08/15/2013 09:37:52 AM,08/15/2013 09:38:02 AM,08/15/2013 09:43:30 AM,08/15/2013 10:10:54 AM,08/15/2013 10:14:23 AM,Code 2 Transport,08/15/2013 10:32:10 AM,100 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",132270099-82 -140260010,B02,14008754,Alarms,01/26/2014,01/25/2014,01/26/2014 12:20:43 AM,01/26/2014 12:22:49 AM,01/26/2014 12:22:58 AM,01/26/2014 12:24:34 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 12:27:46 AM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",140260010-B02 -160522963,76,16020942,Medical Incident,02/21/2016,02/21/2016,02/21/2016 07:24:04 PM,02/21/2016 07:24:04 PM,02/21/2016 07:24:39 PM,02/21/2016 07:24:47 PM,02/21/2016 07:27:42 PM,02/21/2016 07:35:40 PM,02/21/2016 07:43:05 PM,Code 2 Transport,02/21/2016 08:04:45 PM,HYDE ST/EDDY ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",160522963-76 -160681758,65,16027122,Medical Incident,03/08/2016,03/08/2016,03/08/2016 12:42:58 PM,03/08/2016 12:46:16 PM,03/08/2016 12:46:43 PM,03/08/2016 12:46:54 PM,03/08/2016 12:54:33 PM,03/08/2016 01:46:10 PM,03/08/2016 01:33:42 PM,Code 2 Transport,03/08/2016 02:07:06 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160681758-65 -131150252,B02,13038845,Alarms,04/25/2013,04/25/2013,04/25/2013 05:14:48 PM,04/25/2013 05:15:54 PM,04/25/2013 05:16:07 PM,04/25/2013 05:17:39 PM,04/25/2013 05:20:00 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Fire,04/25/2013 05:28:10 PM,200 Block of VALENCIA ST,SF,94103,B02,36,5126,3,3,3,false,Alarm,1,CHIEF,3,2,8,Mission,"(37.7690117510129, -122.422352223863)",131150252-B02 -131030164,E16,13034565,Medical Incident,04/13/2013,04/13/2013,04/13/2013 12:19:13 PM,04/13/2013 12:21:09 PM,04/13/2013 12:22:21 PM,04/13/2013 12:23:27 PM,04/13/2013 12:26:41 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/13/2013 12:33:54 PM,LOMBARD ST/POLK ST,SF,94109,B01,16,3133,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8015580514761, -122.422901799225)",131030164-E16 -131340047,77,13045096,Medical Incident,05/14/2013,05/13/2013,05/14/2013 05:32:08 AM,05/14/2013 05:32:41 AM,05/14/2013 05:35:31 AM,05/14/2013 05:36:35 AM,05/14/2013 05:42:09 AM,05/14/2013 05:51:41 AM,05/14/2013 05:58:34 AM,Code 2 Transport,05/14/2013 06:41:24 AM,1100 Block of FRANKLIN ST,SF,94109,B04,3,3222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7852397067254, -122.423049038172)",131340047-77 -112690060,E19,11088820,Medical Incident,09/26/2011,09/25/2011,09/26/2011 07:53:49 AM,09/26/2011 07:54:37 AM,09/26/2011 07:54:50 AM,09/26/2011 07:56:39 AM,09/26/2011 07:58:50 AM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/26/2011 08:11:23 AM,2900 Block of 25TH AVE,SF,94132,B08,19,8734,3,3,3,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7334328921172, -122.480992659737)",112690060-E19 -132880316,86,13098078,Traffic Collision,10/15/2013,10/15/2013,10/15/2013 05:40:31 PM,10/15/2013 05:44:15 PM,10/15/2013 05:47:52 PM,10/15/2013 05:48:08 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,04/25/2016 01:50:15 PM,GEARY ST/LEAVENWORTH ST,SF,94109,B04,3,1543,2,2,2,false,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",132880316-86 -102820417,E38,10089890,Other,10/09/2010,10/09/2010,10/09/2010 10:36:18 PM,10/09/2010 10:39:37 PM,10/09/2010 10:39:49 PM,10/09/2010 10:41:19 PM,10/09/2010 10:43:04 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Fire,10/09/2010 10:50:29 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,true,,1,ENGINE,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",102820417-E38 -131990277,E28,13067540,Medical Incident,07/18/2013,07/18/2013,07/18/2013 05:36:12 PM,07/18/2013 05:38:06 PM,07/18/2013 05:38:35 PM,07/18/2013 05:40:08 PM,07/18/2013 05:41:41 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/18/2013 06:01:57 PM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,3,3,3,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8054738067872, -122.407570127181)",131990277-E28 -110400014,56,11013102,Medical Incident,02/09/2011,02/08/2011,02/09/2011 12:42:54 AM,02/09/2011 12:43:16 AM,02/09/2011 12:43:44 AM,02/09/2011 12:44:02 AM,02/09/2011 01:01:58 AM,02/09/2011 01:10:05 AM,02/09/2011 01:20:38 AM,Code 2 Transport,02/09/2011 01:35:40 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7819536537257, -122.410041631816)",110400014-56 -160831496,AM02,16032920,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:19:19 AM,03/23/2016 11:21:33 AM,03/23/2016 11:22:24 AM,03/23/2016 11:23:08 AM,03/23/2016 11:35:27 AM,03/23/2016 12:04:22 PM,03/23/2016 12:08:40 PM,Code 2 Transport,03/23/2016 12:41:33 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160831496-AM02 -140040095,77,14001378,Medical Incident,01/04/2014,01/04/2014,01/04/2014 09:10:52 AM,01/04/2014 09:13:16 AM,01/04/2014 09:13:51 AM,01/04/2014 09:14:07 AM,01/04/2014 09:18:01 AM,01/04/2014 09:31:14 AM,01/04/2014 09:51:49 AM,Code 2 Transport,01/04/2014 10:02:42 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",140040095-77 -160081539,KM02,16003207,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:47:47 AM,01/08/2016 11:48:56 AM,01/08/2016 11:49:29 AM,01/08/2016 11:50:11 AM,01/08/2016 11:57:23 AM,01/08/2016 12:17:02 PM,01/08/2016 12:34:20 PM,Code 2 Transport,01/08/2016 01:18:56 PM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",160081539-KM02 -140970341,94,14032793,Traffic Collision,04/07/2014,04/07/2014,04/07/2014 05:59:23 PM,04/07/2014 06:01:51 PM,04/07/2014 06:02:13 PM,04/07/2014 06:02:19 PM,04/07/2014 06:21:15 PM,04/07/2014 06:41:06 PM,04/07/2014 06:51:40 PM,Code 2 Transport,04/07/2014 07:20:36 PM,MISSION ST/EXCELSIOR AV,SAN FRANCISCO,94112,B09,43,6116,,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7262362449736, -122.433623592293)",140970341-94 -160204015,61,16008206,Traffic Collision,01/20/2016,01/20/2016,01/20/2016 11:27:11 PM,01/20/2016 11:27:11 PM,01/20/2016 11:27:27 PM,01/20/2016 11:27:46 PM,01/20/2016 11:30:57 PM,01/21/2016 12:06:23 AM,01/21/2016 12:15:07 AM,Code 2 Transport,01/21/2016 01:00:43 AM,3RD ST/BRANNAN ST,San Francisco,94107,B03,8,2173,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7800897302982, -122.394300038467)",160204015-61 -132190058,KM15,13073859,Medical Incident,08/07/2013,08/06/2013,08/07/2013 05:43:07 AM,08/07/2013 05:43:48 AM,08/07/2013 05:44:04 AM,08/07/2013 05:46:03 AM,08/07/2013 05:50:57 AM,08/07/2013 06:05:26 AM,08/07/2013 06:12:19 AM,Code 2 Transport,08/07/2013 06:46:48 AM,1000 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",132190058-KM15 -132850242,E23,13096996,Water Rescue,10/12/2013,10/12/2013,10/12/2013 04:45:05 PM,10/12/2013 04:46:32 PM,10/12/2013 04:46:55 PM,10/12/2013 04:48:06 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/12/2013 04:49:43 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,Fire,1,ENGINE,13,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",132850242-E23 -140600236,72,14020301,Medical Incident,03/01/2014,03/01/2014,03/01/2014 03:34:10 PM,03/01/2014 03:38:04 PM,03/01/2014 03:38:36 PM,03/01/2014 03:38:57 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Other,03/01/2014 03:43:17 PM,8TH ST/MARKET ST,SF,94103,B02,36,1646,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",140600236-72 -140250345,T08,14008721,Structure Fire,01/25/2014,01/25/2014,01/25/2014 10:28:21 PM,01/25/2014 10:28:21 PM,01/25/2014 10:28:26 PM,01/25/2014 10:30:04 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/25/2014 10:31:42 PM,MAIN ST/BRYANT ST,SF,94105,B03,35,2121,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7868986775116, -122.388779437164)",140250345-T08 -160072780,54,16002942,Medical Incident,01/07/2016,01/07/2016,01/07/2016 05:23:51 PM,01/07/2016 05:25:23 PM,01/07/2016 05:26:25 PM,01/07/2016 05:27:26 PM,01/07/2016 06:01:19 PM,01/07/2016 06:27:52 PM,01/07/2016 06:27:52 PM,Code 2 Transport,01/07/2016 07:28:22 PM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",160072780-54 -133580088,E29,13121625,Alarms,12/24/2013,12/23/2013,12/24/2013 07:54:15 AM,12/24/2013 07:55:33 AM,12/24/2013 07:55:38 AM,12/24/2013 07:57:08 AM,12/24/2013 07:59:12 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 08:03:32 AM,1700 Block of BRYANT ST,SF,94110,B02,29,5242,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7649537879117, -122.410494214244)",133580088-E29 -112540278,E16,11083910,Vehicle Fire,09/11/2011,09/11/2011,09/11/2011 07:06:55 PM,09/11/2011 07:07:26 PM,09/11/2011 07:07:38 PM,09/11/2011 07:07:50 PM,09/11/2011 07:10:26 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Fire,09/11/2011 07:25:41 PM,GREENWICH ST/LARKIN ST,SF,94109,B01,16,3132,3,3,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8008338094257, -122.421063301693)",112540278-E16 -140760379,E37,14025891,Medical Incident,03/17/2014,03/17/2014,03/17/2014 10:09:33 PM,03/17/2014 10:10:01 PM,03/17/2014 10:10:36 PM,03/17/2014 10:12:34 PM,03/17/2014 10:15:43 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,No Merit,03/17/2014 10:20:54 PM,900 Block of SAN BRUNO AVE,SAN FRANCISCO,94110,B10,37,2551,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7572995523954, -122.404695924103)",140760379-E37 -112070228,KM12,11068414,Medical Incident,07/26/2011,07/26/2011,07/26/2011 03:27:48 PM,07/26/2011 03:28:30 PM,07/26/2011 03:29:11 PM,07/26/2011 03:31:28 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 03:31:34 PM,300 Block of PENNSYLVANIA AVE,SF,94107,B03,37,2463,3,3,3,false,,1,PRIVATE,3,10,10,Potrero Hill,"(37.7621200628306, -122.393481482232)",112070228-KM12 -133300261,E02,13112128,Medical Incident,11/26/2013,11/26/2013,11/26/2013 04:44:09 PM,11/26/2013 04:49:08 PM,11/26/2013 04:50:36 PM,11/26/2013 04:52:26 PM,11/26/2013 04:55:12 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,No Merit,11/26/2013 04:57:04 PM,TAYLOR ST/VALLEJO ST,SF,94133,B01,2,1421,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7979569524831, -122.413743553794)",133300261-E02 -130230314,AM12,13008044,Medical Incident,01/23/2013,01/23/2013,01/23/2013 05:42:18 PM,01/23/2013 05:42:47 PM,01/23/2013 05:43:19 PM,01/23/2013 05:43:52 PM,01/23/2013 05:49:23 PM,01/23/2013 06:03:27 PM,01/23/2013 06:13:39 PM,Code 3 Transport,01/23/2013 06:58:36 PM,300 Block of HEARST AVE,SF,94112,B09,15,8231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7306488156642, -122.445435598891)",130230314-AM12 -131380404,E41,13046830,Traffic Collision,05/18/2013,05/18/2013,05/18/2013 11:32:58 PM,05/18/2013 11:34:05 PM,05/18/2013 11:34:30 PM,05/18/2013 11:35:48 PM,05/18/2013 11:51:06 PM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,Other,05/18/2013 11:52:10 PM,VAN NESS AV/PACIFIC AV,SF,94109,B04,41,3152,2,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7948173544208, -122.423227147276)",131380404-E41 -160810493,71,16032065,Medical Incident,03/21/2016,03/20/2016,03/21/2016 06:38:43 AM,03/21/2016 06:39:55 AM,03/21/2016 06:41:21 AM,03/21/2016 06:41:26 AM,03/21/2016 06:48:11 AM,03/21/2016 07:08:45 AM,03/21/2016 07:27:37 AM,Code 2 Transport,03/21/2016 08:04:15 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160810493-71 -120050230,B04,12001773,Gas Leak (Natural and LP Gases),01/05/2012,01/05/2012,01/05/2012 03:00:00 PM,01/05/2012 03:06:33 PM,01/05/2012 03:06:42 PM,01/05/2012 03:08:28 PM,01/05/2012 03:13:16 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 03:23:50 PM,200 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.771818056558, -122.443998560298)",120050230-B04 -130870042,81,13028900,Citizen Assist / Service Call,03/28/2013,03/27/2013,03/28/2013 04:08:09 AM,03/28/2013 04:08:09 AM,03/28/2013 04:09:34 AM,03/28/2013 04:10:18 AM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/28/2013 04:15:06 AM,17TH ST/DOLORES ST,SF,94110,B02,6,5251,3,3,3,true,Alarm,1,MEDIC,2,2,8,Castro/Upper Market,"(37.763030871155, -122.426228479696)",130870042-81 -121350060,KM05,12044800,Medical Incident,05/14/2012,05/13/2012,05/14/2012 07:47:58 AM,05/14/2012 07:50:43 AM,05/14/2012 07:51:11 AM,05/14/2012 07:52:01 AM,05/14/2012 08:00:43 AM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/14/2012 08:21:15 AM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,E,2,2,false,Non Life-threatening,1,PRIVATE,3,1,3,North Beach,"(37.804809171271, -122.406795529826)",121350060-KM05 -160192029,62,16007663,Medical Incident,01/19/2016,01/19/2016,01/19/2016 02:10:08 PM,01/19/2016 02:10:08 PM,01/19/2016 02:10:41 PM,01/19/2016 02:10:54 PM,01/19/2016 02:13:49 PM,01/19/2016 02:40:00 PM,01/19/2016 02:53:54 PM,Code 2 Transport,01/19/2016 04:00:43 PM,CYRIL MAGNIN ST/MARKET ST,San Francisco,94103,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160192029-62 -113040145,B03,11100892,Alarms,10/31/2011,10/31/2011,10/31/2011 10:32:38 AM,10/31/2011 10:33:24 AM,10/31/2011 10:33:31 AM,10/31/2011 10:35:52 AM,10/31/2011 10:38:07 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Fire,10/31/2011 10:42:59 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",113040145-B03 -131560301,E40,13052997,Structure Fire,06/05/2013,06/05/2013,06/05/2013 05:41:17 PM,06/05/2013 05:42:42 PM,06/05/2013 05:43:07 PM,06/05/2013 05:45:47 PM,06/05/2013 05:54:33 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/05/2013 05:55:35 PM,1800 Block of 24TH AVE,SF,94122,B08,18,7455,3,3,3,false,Alarm,1,ENGINE,8,8,4,Sunset/Parkside,"(37.7530751501868, -122.481697901607)",131560301-E40 -133460387,E17,13117569,Medical Incident,12/12/2013,12/12/2013,12/12/2013 10:39:41 PM,12/12/2013 10:40:59 PM,12/12/2013 10:41:46 PM,12/12/2013 10:43:17 PM,12/12/2013 10:46:03 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 10:51:37 PM,LA SALLE AV/3RD ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7371695334489, -122.389864463351)",133460387-E17 -130750143,E18,13024996,Structure Fire,03/16/2013,03/16/2013,03/16/2013 11:52:58 AM,03/16/2013 11:53:46 AM,03/16/2013 11:54:00 AM,03/16/2013 11:56:07 AM,03/16/2013 12:00:04 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 12:03:47 PM,19TH AV/IRVING ST,SF,94122,B08,22,7424,3,3,3,true,Alarm,1,ENGINE,5,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",130750143-E18 -160851852,KM09,16033787,Medical Incident,03/25/2016,03/25/2016,03/25/2016 01:12:51 PM,03/25/2016 01:13:36 PM,03/25/2016 01:15:10 PM,03/25/2016 01:15:54 PM,03/25/2016 01:40:21 PM,03/25/2016 01:40:23 PM,03/25/2016 01:48:51 PM,Code 2 Transport,03/25/2016 02:26:49 PM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",160851852-KM09 -103490225,99,10111956,Medical Incident,12/15/2010,12/15/2010,12/15/2010 03:05:36 PM,12/15/2010 03:09:00 PM,12/15/2010 03:10:15 PM,12/15/2010 03:10:42 PM,12/15/2010 03:20:47 PM,12/15/2010 03:37:47 PM,12/15/2010 04:18:46 PM,Code 2 Transport,12/15/2010 04:25:37 PM,THE EMBARCADERO/WASHINGTON ST,SF,94111,B01,13,903,1,1,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7966828949467, -122.395405269908)",103490225-99 -130730271,E01,13024417,Medical Incident,03/14/2013,03/14/2013,03/14/2013 05:24:50 PM,03/14/2013 05:26:32 PM,03/14/2013 05:27:06 PM,03/14/2013 05:27:48 PM,03/14/2013 05:32:44 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 05:44:54 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",130730271-E01 -112580128,E39,11085004,Medical Incident,09/15/2011,09/15/2011,09/15/2011 10:40:45 AM,09/15/2011 10:41:19 AM,09/15/2011 10:42:37 AM,09/15/2011 10:45:32 AM,09/15/2011 10:48:38 AM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/15/2011 10:57:43 AM,0 Block of LENOX WAY,SF,94127,B08,39,861,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7430172936494, -122.464741958044)",112580128-E39 -160283856,88,16011256,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:52:12 PM,01/28/2016 09:53:27 PM,01/28/2016 09:53:49 PM,01/28/2016 09:54:02 PM,01/28/2016 09:58:17 PM,01/28/2016 10:18:03 PM,01/28/2016 10:26:07 PM,Code 2 Transport,01/28/2016 11:08:16 PM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",160283856-88 -111050067,T03,11034683,Structure Fire,04/15/2011,04/15/2011,04/15/2011 08:22:13 AM,04/15/2011 08:23:30 AM,04/15/2011 08:23:44 AM,04/15/2011 08:25:36 AM,04/15/2011 08:26:46 AM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/15/2011 08:38:41 AM,900 Block of OFARRELL ST,SF,94109,B04,3,3162,3,3,3,false,,1,TRUCK,3,2,6,Tenderloin,"(37.7848026049584, -122.420359587803)",111050067-T03 -112710213,E17,11089556,Medical Incident,09/28/2011,09/28/2011,09/28/2011 01:13:54 PM,09/28/2011 01:15:02 PM,09/28/2011 01:15:20 PM,09/28/2011 01:16:30 PM,09/28/2011 01:19:34 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 01:36:39 PM,0 Block of CASHMERE ST,SF,94124,B10,25,652,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",112710213-E17 -130200271,77,13006945,Medical Incident,01/20/2013,01/20/2013,01/20/2013 04:47:34 PM,01/20/2013 04:49:00 PM,01/20/2013 05:18:22 PM,01/20/2013 05:18:27 PM,01/20/2013 05:32:52 PM,01/20/2013 05:47:35 PM,01/20/2013 06:14:05 PM,Code 2 Transport,01/20/2013 06:45:23 PM,0 Block of FRANCE AVE,SF,94112,B09,43,6123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7198797644764, -122.437908601432)",130200271-77 -110130324,E22,11004437,Medical Incident,01/13/2011,01/13/2011,01/13/2011 07:06:51 PM,01/13/2011 07:07:26 PM,01/13/2011 07:07:58 PM,01/13/2011 07:09:20 PM,01/13/2011 07:14:37 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/13/2011 07:10:20 PM,1300 Block of 21ST AVE,SF,94122,B08,22,7426,3,3,3,false,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7625397133355, -122.479132257193)",110130324-E22 -132720117,T01,13092399,Structure Fire,09/29/2013,09/29/2013,09/29/2013 09:12:49 AM,09/29/2013 09:12:50 AM,09/29/2013 09:13:04 AM,09/29/2013 09:13:43 AM,09/29/2013 09:16:13 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 09:18:21 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",132720117-T01 -102480080,T03,10078278,Citizen Assist / Service Call,09/05/2010,09/04/2010,09/05/2010 07:06:35 AM,09/05/2010 07:07:24 AM,09/05/2010 07:07:44 AM,09/05/2010 07:08:39 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 07:20:29 AM,800 Block of FRANKLIN ST,SF,94102,B02,36,3216,3,3,3,false,,1,TRUCK,9,2,5,Western Addition,"(37.7819947126055, -122.422254006576)",102480080-T03 -132440237,85,13082394,Medical Incident,09/01/2013,09/01/2013,09/01/2013 04:21:36 PM,09/01/2013 04:21:51 PM,09/01/2013 04:22:14 PM,09/01/2013 04:22:29 PM,04/25/2016 01:51:00 PM,09/01/2013 04:39:43 PM,09/01/2013 05:01:23 PM,Code 2 Transport,09/01/2013 05:28:00 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7610397684815, -122.419213667994)",132440237-85 -160713465,83,16028391,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:43:53 PM,03/11/2016 09:44:34 PM,03/11/2016 09:44:50 PM,03/11/2016 09:45:07 PM,03/11/2016 09:55:00 PM,03/11/2016 10:08:36 PM,03/11/2016 10:21:22 PM,Code 2 Transport,03/11/2016 10:54:35 PM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160713465-83 -110410297,E38,11013665,Medical Incident,02/10/2011,02/10/2011,02/10/2011 04:54:30 PM,02/10/2011 04:55:20 PM,02/10/2011 05:01:29 PM,02/10/2011 05:03:16 PM,02/10/2011 05:22:30 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 05:22:44 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,false,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",110410297-E38 -160242473,KM04,16009604,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:03:04 PM,01/24/2016 05:03:04 PM,01/24/2016 05:03:39 PM,01/24/2016 05:04:04 PM,01/24/2016 05:08:34 PM,01/24/2016 05:54:16 PM,01/24/2016 06:12:22 PM,Code 2 Transport,01/24/2016 06:36:39 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160242473-KM04 -130540027,KM07,13018130,Medical Incident,02/23/2013,02/22/2013,02/23/2013 02:10:41 AM,02/23/2013 02:11:10 AM,02/23/2013 02:12:04 AM,02/23/2013 02:12:38 AM,02/23/2013 02:17:39 AM,02/23/2013 02:42:31 AM,02/23/2013 02:53:00 AM,Other,02/23/2013 03:53:16 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",130540027-KM07 -131900375,81,13064885,Medical Incident,07/09/2013,07/09/2013,07/09/2013 11:49:38 PM,07/09/2013 11:50:00 PM,07/09/2013 11:50:35 PM,07/09/2013 11:50:44 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,No Merit,07/10/2013 12:09:28 AM,0 Block of MAGELLAN AVE,SF,94116,B08,39,8627,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7489932050029, -122.460554951379)",131900375-81 -133190011,E05,13108249,Medical Incident,11/15/2013,11/14/2013,11/15/2013 12:56:48 AM,11/15/2013 12:57:25 AM,11/15/2013 12:57:43 AM,11/15/2013 12:59:36 AM,11/15/2013 01:01:17 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 01:11:31 AM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7795136005399, -122.432784844959)",133190011-E05 -112710265,T19,11089597,Medical Incident,09/28/2011,09/28/2011,09/28/2011 02:18:31 PM,09/28/2011 02:20:12 PM,09/28/2011 02:21:11 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 02:46:59 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,2,3,3,true,,1,TRUCK,3,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",112710265-T19 -130210228,AM16,13007299,Medical Incident,01/21/2013,01/21/2013,01/21/2013 03:07:59 PM,01/21/2013 03:10:25 PM,01/21/2013 03:11:59 PM,01/21/2013 03:12:41 PM,01/21/2013 03:20:21 PM,01/21/2013 03:36:26 PM,01/21/2013 03:37:40 PM,Code 3 Transport,01/21/2013 04:12:01 PM,800 Block of DE HARO ST,SF,94107,B10,37,2511,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Potrero Hill,"(37.7589370511593, -122.400966701986)",130210228-AM16 -131460287,E42,13049602,Medical Incident,05/26/2013,05/26/2013,05/26/2013 04:25:51 PM,05/26/2013 04:27:16 PM,05/26/2013 04:27:27 PM,04/25/2016 01:52:36 PM,05/26/2013 04:27:48 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 04:41:06 PM,SAN BRUNO AV/SILVER AV,SF,94134,B10,42,6362,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7324386586756, -122.405607549199)",131460287-E42 -103180312,B04,10102032,Structure Fire,11/14/2010,11/14/2010,11/14/2010 06:07:01 PM,11/14/2010 06:07:02 PM,11/14/2010 06:07:15 PM,11/14/2010 06:08:00 PM,11/14/2010 06:08:46 PM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 06:25:49 PM,2300 Block of BUCHANAN ST,SF,94115,B04,38,343,3,3,3,false,,1,CHIEF,1,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",103180312-B04 -132360210,55,13079661,Medical Incident,08/24/2013,08/24/2013,08/24/2013 04:33:50 PM,08/24/2013 04:35:54 PM,08/24/2013 04:36:45 PM,08/24/2013 04:37:08 PM,08/24/2013 04:53:45 PM,08/24/2013 05:23:32 PM,08/24/2013 05:33:42 PM,Code 2 Transport,08/24/2013 05:59:56 PM,BUSH ST/HYDE ST,SF,94109,B04,3,1561,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7891101748937, -122.417016879226)",132360210-55 -102370123,E28,10074672,Outside Fire,08/25/2010,08/25/2010,08/25/2010 09:44:14 AM,08/25/2010 09:44:14 AM,08/25/2010 09:45:17 AM,08/25/2010 09:45:28 AM,08/25/2010 09:48:06 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Fire,08/25/2010 10:13:04 AM,MARKET ST/BATTERY ST,SF,94104,B01,13,1163,3,3,3,false,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7908053759388, -122.399504510645)",102370123-E28 -130400396,E38,13013859,Medical Incident,02/09/2013,02/09/2013,02/09/2013 11:43:47 PM,02/09/2013 11:45:09 PM,02/09/2013 11:45:41 PM,02/09/2013 11:47:48 PM,02/09/2013 11:49:40 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/09/2013 11:55:33 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",130400396-E38 -160572557,56,16022835,Medical Incident,02/26/2016,02/26/2016,02/26/2016 04:35:19 PM,02/26/2016 04:35:54 PM,02/26/2016 04:36:28 PM,02/26/2016 04:37:08 PM,02/26/2016 04:43:44 PM,02/26/2016 05:00:43 PM,02/26/2016 05:16:13 PM,Code 3 Transport,02/26/2016 05:58:02 PM,5500 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7273180308836, -122.393270734468)",160572557-56 -130220059,E01,13007488,Medical Incident,01/22/2013,01/21/2013,01/22/2013 06:48:20 AM,01/22/2013 06:49:14 AM,01/22/2013 06:50:01 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 06:51:53 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",130220059-E01 -120080186,T18,12002771,Medical Incident,01/08/2012,01/08/2012,01/08/2012 12:27:50 PM,01/08/2012 12:29:15 PM,01/08/2012 12:33:18 PM,01/08/2012 12:48:40 PM,01/08/2012 12:50:17 PM,04/25/2016 02:00:44 PM,04/25/2016 02:00:44 PM,Other,01/08/2012 12:52:51 PM,1800 Block of 35TH AVE,SF,94122,B08,18,7561,2,2,2,false,Non Life-threatening,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7525463044622, -122.493622363454)",120080186-T18 -112040028,E03,11067266,Structure Fire,07/23/2011,07/22/2011,07/23/2011 01:06:55 AM,07/23/2011 01:06:56 AM,07/23/2011 01:07:19 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/23/2011 01:08:34 AM,POLK ST/SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",112040028-E03 -111240060,81,11040872,Medical Incident,05/04/2011,05/03/2011,05/04/2011 07:25:10 AM,05/04/2011 07:26:53 AM,05/04/2011 07:27:09 AM,05/04/2011 07:28:07 AM,05/04/2011 07:39:07 AM,05/04/2011 07:47:10 AM,05/04/2011 07:57:08 AM,Code 2 Transport,05/04/2011 08:15:31 AM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7854364798696, -122.41533612902)",111240060-81 -132580277,KM02,13087359,Medical Incident,09/15/2013,09/15/2013,09/15/2013 05:57:03 PM,09/15/2013 05:57:17 PM,09/15/2013 05:57:29 PM,09/15/2013 05:58:06 PM,09/15/2013 06:03:42 PM,09/15/2013 06:10:33 PM,09/15/2013 06:28:40 PM,Code 2 Transport,09/15/2013 06:54:56 PM,YERBA BUENA LN/MISSION ST,SF,94103,B03,1,2178,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7851218519914, -122.403501281439)",132580277-KM02 -113160005,B07,11104862,Structure Fire,11/12/2011,11/11/2011,11/12/2011 12:18:36 AM,11/12/2011 12:19:09 AM,11/12/2011 12:19:34 AM,11/12/2011 12:20:07 AM,11/12/2011 12:23:40 AM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/12/2011 12:28:52 AM,3600 Block of SACRAMENTO ST,SF,94118,B07,10,4432,3,3,3,false,,1,CHIEF,3,7,2,Presidio Heights,"(37.7875021792847, -122.452780220545)",113160005-B07 -132980382,E03,13101375,Medical Incident,10/25/2013,10/25/2013,10/25/2013 09:00:38 PM,10/25/2013 09:03:02 PM,10/25/2013 09:04:13 PM,10/25/2013 09:05:30 PM,10/25/2013 09:06:47 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 09:21:54 PM,1300 Block of VAN NESS AVE,SF,94109,B04,3,3156,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7882889208706, -122.421732731473)",132980382-E03 -133150374,E01,13107240,Medical Incident,11/11/2013,11/11/2013,11/11/2013 08:13:04 PM,11/11/2013 08:14:53 PM,11/11/2013 08:15:21 PM,11/11/2013 08:16:08 PM,11/11/2013 08:18:42 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/11/2013 08:26:47 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",133150374-E01 -140070117,T17,14002436,Structure Fire,01/07/2014,01/07/2014,01/07/2014 09:43:52 AM,01/07/2014 09:44:31 AM,01/07/2014 09:45:24 AM,01/07/2014 09:46:22 AM,01/07/2014 09:51:00 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 10:24:27 AM,AMADOR ST/ILLINOIS ST,SF,94124,B10,25,6462,,3,3,true,Alarm,1,TRUCK,5,10,10,Bayview Hunters Point,"(37.7457569905463, -122.386060186931)",140070117-T17 -121050056,66,12034662,Medical Incident,04/14/2012,04/13/2012,04/14/2012 03:05:17 AM,04/14/2012 03:06:31 AM,04/14/2012 03:07:24 AM,04/14/2012 03:07:34 AM,04/14/2012 03:09:44 AM,04/14/2012 03:46:54 AM,04/25/2016 01:59:11 PM,Patient Declined Transport,04/14/2012 03:48:13 AM,1200 Block of MARKET ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",121050056-66 -160470816,71,16018835,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:30:26 AM,02/16/2016 08:32:56 AM,02/16/2016 08:33:31 AM,02/16/2016 08:39:09 AM,02/16/2016 08:57:53 AM,02/16/2016 09:23:19 AM,02/16/2016 09:30:13 AM,Code 2 Transport,02/16/2016 10:04:25 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",160470816-71 -122280197,B03,12075565,Alarms,08/15/2012,08/15/2012,08/15/2012 01:26:28 PM,08/15/2012 01:27:38 PM,08/15/2012 01:29:16 PM,08/15/2012 01:30:48 PM,08/15/2012 01:33:40 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Fire,08/15/2012 01:42:17 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",122280197-B03 -103280152,E03,10105042,Structure Fire,11/24/2010,11/24/2010,11/24/2010 12:32:49 PM,11/24/2010 12:35:16 PM,11/24/2010 12:35:40 PM,11/24/2010 12:36:27 PM,11/24/2010 12:38:14 PM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/24/2010 12:39:22 PM,FRANKLIN ST/GOLDEN GATE AV,SF,94102,B02,36,3216,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7808210471753, -122.422086793996)",103280152-E03 -160803465,85,16031964,Medical Incident,03/20/2016,03/20/2016,03/20/2016 09:48:17 PM,03/20/2016 09:49:05 PM,03/20/2016 09:49:16 PM,03/20/2016 09:49:25 PM,03/20/2016 09:59:53 PM,03/20/2016 10:22:26 PM,03/20/2016 10:40:10 PM,Code 2 Transport,03/20/2016 11:20:14 PM,400 Block of 39TH AVE,San Francisco,94121,B07,34,7256,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7803621402602, -122.499869608562)",160803465-85 -160792188,KM11,16031441,Medical Incident,03/19/2016,03/19/2016,03/19/2016 02:39:55 PM,03/19/2016 02:41:43 PM,03/19/2016 02:42:16 PM,03/19/2016 02:42:36 PM,03/19/2016 02:52:46 PM,03/19/2016 03:06:03 PM,03/19/2016 03:25:20 PM,Code 2 Transport,03/19/2016 03:44:14 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7791285379843, -122.408030111231)",160792188-KM11 -160414073,72,16016678,Medical Incident,02/10/2016,02/10/2016,02/10/2016 11:40:36 PM,02/10/2016 11:43:21 PM,02/10/2016 11:43:28 PM,02/10/2016 11:43:57 PM,02/10/2016 11:48:53 PM,02/11/2016 12:11:01 AM,02/11/2016 12:15:22 AM,Code 2 Transport,02/11/2016 12:51:07 AM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160414073-72 -140800243,RS2,14027085,Medical Incident,03/21/2014,03/21/2014,03/21/2014 03:29:06 PM,03/21/2014 03:30:14 PM,03/21/2014 03:30:36 PM,03/21/2014 03:32:01 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Code 2 Transport,03/21/2014 03:32:07 PM,100 Block of CAPP ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,9,Mission,"(37.7642993402288, -122.418551435984)",140800243-RS2 -130550217,T07,13018592,Structure Fire,02/24/2013,02/24/2013,02/24/2013 03:16:36 PM,02/24/2013 03:16:36 PM,02/24/2013 03:16:47 PM,02/24/2013 03:17:37 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Other,02/24/2013 03:19:28 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",130550217-T07 -160682350,KM11,16027174,Medical Incident,03/08/2016,03/08/2016,03/08/2016 03:45:23 PM,03/08/2016 03:45:23 PM,03/08/2016 03:46:30 PM,03/08/2016 03:47:19 PM,03/08/2016 03:54:50 PM,03/08/2016 04:00:26 PM,03/08/2016 04:29:18 PM,Fire,03/08/2016 04:29:23 PM,10TH AV/CABRILLO ST,San Francisco,94118,B07,31,7134,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7751740093503, -122.468158436382)",160682350-KM11 -160801257,88,16031767,Medical Incident,03/20/2016,03/20/2016,03/20/2016 10:45:20 AM,03/20/2016 10:45:20 AM,03/20/2016 10:45:32 AM,03/20/2016 10:47:02 AM,03/20/2016 10:51:48 AM,03/20/2016 10:59:18 AM,03/20/2016 11:16:47 AM,Code 2 Transport,03/20/2016 11:48:32 AM,GREAT HY/SLOAT BL,San Francisco,94132,B08,23,7733,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",160801257-88 -121640177,82,12054393,Medical Incident,06/12/2012,06/12/2012,06/12/2012 12:51:14 PM,06/12/2012 12:52:52 PM,06/12/2012 12:53:19 PM,06/12/2012 12:53:38 PM,06/12/2012 12:57:39 PM,06/12/2012 01:08:33 PM,06/12/2012 01:28:43 PM,Code 2 Transport,06/12/2012 02:03:41 PM,200 Block of POTRERO AVE,SF,94103,B02,29,2351,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7664376828612, -122.407540732549)",121640177-82 -133580066,E17,13121607,Medical Incident,12/24/2013,12/23/2013,12/24/2013 05:48:56 AM,12/24/2013 05:49:36 AM,12/24/2013 05:50:03 AM,12/24/2013 05:52:15 AM,12/24/2013 05:55:28 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 06:10:36 AM,1000 Block of HOLLISTER AVE,SF,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7192584871254, -122.391450988401)",133580066-E17 -113150086,D3,11104610,Structure Fire,11/11/2011,11/11/2011,11/11/2011 09:25:19 AM,11/11/2011 09:26:05 AM,11/11/2011 09:26:15 AM,11/11/2011 09:27:10 AM,11/11/2011 09:35:06 AM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/11/2011 10:18:10 AM,100 Block of HOLLOWAY AVE,SF,94112,B09,15,8472,3,3,3,false,,1,CHIEF,7,9,7,Oceanview/Merced/Ingleside,"(37.721904919521, -122.454617025243)",113150086-D3 -122070105,E10,12068764,Structure Fire,07/25/2012,07/25/2012,07/25/2012 09:50:00 AM,07/25/2012 09:50:38 AM,07/25/2012 09:51:18 AM,07/25/2012 09:58:57 AM,07/25/2012 10:14:24 AM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Other,07/25/2012 11:18:08 AM,0 Block of CLEARY CT,SF,94109,B04,3,3323,3,3,3,true,Fire,2,ENGINE,22,2,5,Western Addition,"(37.7840380799334, -122.426424267514)",122070105-E10 -130690206,E07,13023063,Traffic Collision,03/10/2013,03/10/2013,03/10/2013 03:31:32 PM,03/10/2013 03:32:44 PM,03/10/2013 03:34:10 PM,04/25/2016 01:53:54 PM,03/10/2013 03:34:53 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 03:52:46 PM,FOLSOM ST/17TH ST,SF,94110,B02,7,5424,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.763696767377, -122.415155085854)",130690206-E07 -131630188,B04,13055379,Alarms,06/12/2013,06/12/2013,06/12/2013 12:39:16 PM,06/12/2013 12:40:57 PM,06/12/2013 12:41:33 PM,06/12/2013 12:42:35 PM,06/12/2013 12:45:44 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Fire,06/12/2013 12:48:37 PM,1200 Block of BUCHANAN ST,SF,94115,B02,5,3426,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7816468439098, -122.428929933146)",131630188-B04 -130910390,E33,13030633,Medical Incident,04/01/2013,04/01/2013,04/01/2013 10:08:49 PM,04/01/2013 10:09:53 PM,04/01/2013 10:10:22 PM,04/01/2013 10:11:42 PM,04/01/2013 10:13:34 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 10:36:59 PM,0 Block of LOBOS ST,SF,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7148604733878, -122.454263242717)",130910390-E33 -120620141,RC3,12020345,Medical Incident,03/02/2012,03/02/2012,03/02/2012 11:23:02 AM,03/02/2012 11:23:17 AM,03/02/2012 11:23:42 AM,03/02/2012 11:24:36 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/02/2012 11:26:17 AM,700 Block of OAK ST,SF,94117,B05,21,3632,E,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,4,5,5,Hayes Valley,"(37.7739224438476, -122.431657677759)",120620141-RC3 -111690027,T07,11055579,Alarms,06/18/2011,06/17/2011,06/18/2011 01:49:48 AM,06/18/2011 01:51:23 AM,06/18/2011 01:51:42 AM,06/18/2011 01:53:47 AM,06/18/2011 01:56:47 AM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,Other,06/18/2011 02:09:13 AM,800 Block of CAPP ST,SF,94110,B06,7,5511,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7531080512306, -122.417362867532)",111690027-T07 -120890297,73,12029564,Medical Incident,03/29/2012,03/29/2012,03/29/2012 07:25:07 PM,03/29/2012 07:25:46 PM,03/29/2012 07:26:58 PM,04/25/2016 01:59:26 PM,03/29/2012 07:28:36 PM,03/29/2012 07:39:41 PM,03/29/2012 07:51:40 PM,Code 2 Transport,03/29/2012 08:20:29 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",120890297-73 -160920040,52,16036277,Medical Incident,04/01/2016,03/31/2016,04/01/2016 12:13:50 AM,04/01/2016 12:16:36 AM,04/01/2016 12:17:18 AM,04/01/2016 12:17:25 AM,04/01/2016 12:39:58 AM,04/01/2016 12:53:14 AM,04/01/2016 01:41:07 AM,Code 2 Transport,04/01/2016 01:55:02 AM,2200 Block of GREAT HWY,San Francisco,94116,B08,23,7727,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7444693274003, -122.507247609437)",160920040-52 -130450348,83,13015385,Medical Incident,02/14/2013,02/14/2013,02/14/2013 06:33:44 PM,02/14/2013 06:33:58 PM,02/14/2013 06:35:13 PM,02/14/2013 06:35:20 PM,02/14/2013 06:45:26 PM,02/14/2013 07:01:24 PM,02/14/2013 07:17:44 PM,Code 2 Transport,02/14/2013 07:37:10 PM,300 Block of UTAH ST,SF,94103,B02,29,2416,3,2,2,true,Non Life-threatening,1,MEDIC,2,2,10,Mission,"(37.7651908103714, -122.406559981453)",130450348-83 -160010734,53,16000145,Traffic Collision,01/01/2016,12/31/2015,01/01/2016 02:49:10 AM,01/01/2016 02:49:10 AM,01/01/2016 02:49:46 AM,01/01/2016 02:50:09 AM,01/01/2016 03:02:21 AM,01/01/2016 03:18:37 AM,01/01/2016 03:37:50 AM,Code 2 Transport,01/01/2016 04:15:29 AM,DIVISADERO ST/BUSH ST,San Francisco,94115,B04,10,4156,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7861795834309, -122.440061198335)",160010734-53 -131330169,B06,13044843,Structure Fire,05/13/2013,05/13/2013,05/13/2013 11:46:47 AM,05/13/2013 11:48:11 AM,05/13/2013 11:48:34 AM,05/13/2013 11:49:25 AM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 11:51:29 AM,0 Block of BOYNTON CT,SF,94114,B02,6,5213,3,3,3,false,Alarm,1,CHIEF,11,2,8,Castro/Upper Market,"(37.7675039961094, -122.42996741289)",131330169-B06 -160512111,67,16020515,Medical Incident,02/20/2016,02/20/2016,02/20/2016 03:49:48 PM,02/20/2016 03:50:48 PM,02/20/2016 03:51:09 PM,02/20/2016 03:51:43 PM,02/20/2016 04:01:01 PM,02/20/2016 04:12:25 PM,02/20/2016 04:31:41 PM,Code 2 Transport,02/20/2016 05:04:23 PM,200 Block of DWIGHT ST,San Francisco,94134,B10,42,6327,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7233528790378, -122.404555581665)",160512111-67 -160560437,62,16022255,Medical Incident,02/25/2016,02/24/2016,02/25/2016 05:57:34 AM,02/25/2016 05:58:52 AM,02/25/2016 05:59:48 AM,02/25/2016 06:00:00 AM,02/25/2016 06:06:19 AM,02/25/2016 07:07:44 AM,02/25/2016 06:29:23 AM,Code 2 Transport,02/25/2016 07:08:00 AM,1800 Block of GOUGH ST,San Francisco,94109,B04,38,3254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7904044741806, -122.425777441689)",160560437-62 -133050153,83,13103604,Medical Incident,11/01/2013,11/01/2013,11/01/2013 09:37:20 AM,11/01/2013 09:38:32 AM,11/01/2013 09:39:15 AM,11/01/2013 09:39:54 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 09:46:33 AM,MISSION ST/NORTON ST,SF,94112,B09,43,6116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7245877059944, -122.434870379292)",133050153-83 -130010201,E22,13000139,Outside Fire,01/01/2013,12/31/2012,01/01/2013 03:20:45 AM,01/01/2013 03:22:46 AM,01/01/2013 03:23:02 AM,01/01/2013 03:25:13 AM,01/01/2013 03:30:17 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 03:33:15 AM,23RD AV/JUDAH ST,SF,94122,B08,22,7447,3,3,3,true,Fire,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7615116713333, -122.481278428106)",130010201-E22 -103590112,RC1,10115167,Medical Incident,12/25/2010,12/25/2010,12/25/2010 10:03:28 AM,12/25/2010 10:05:17 AM,12/25/2010 10:05:45 AM,12/25/2010 10:06:22 AM,12/25/2010 10:10:44 AM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Medical Examiner,12/25/2010 10:38:29 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,E,E,3,true,,1,RESCUE CAPTAIN,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",103590112-RC1 -123010167,87,12099777,Structure Fire,10/27/2012,10/27/2012,10/27/2012 12:03:54 PM,10/27/2012 12:04:57 PM,10/27/2012 12:05:10 PM,10/27/2012 12:05:21 PM,10/27/2012 12:10:56 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:20:56 PM,1800 Block of CLAY ST,SF,94109,B04,41,3154,3,3,3,true,Alarm,1,MEDIC,6,4,2,Pacific Heights,"(37.7921242439152, -122.423528289583)",123010167-87 -160760733,53,16030031,Traffic Collision,03/16/2016,03/16/2016,03/16/2016 08:14:26 AM,03/16/2016 08:14:26 AM,03/16/2016 08:14:53 AM,03/16/2016 08:15:16 AM,03/16/2016 08:26:12 AM,03/16/2016 08:58:27 AM,03/16/2016 09:26:29 AM,Code 2 Transport,03/16/2016 10:14:52 AM,29TH AV/KIRKHAM ST,San Francisco,94122,B08,18,7513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7593594216412, -122.487579499953)",160760733-53 -110270169,57,11008869,Medical Incident,01/27/2011,01/27/2011,01/27/2011 11:49:12 AM,01/27/2011 11:51:36 AM,01/27/2011 11:52:18 AM,01/27/2011 11:54:03 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,No Merit,01/27/2011 11:56:26 AM,1800 Block of LOMBARD ST,SF,94123,B04,16,3352,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.8002483466327, -122.431914332097)",110270169-57 -111700145,E16,11056009,Medical Incident,06/19/2011,06/19/2011,06/19/2011 11:16:38 AM,06/19/2011 11:17:07 AM,06/19/2011 11:17:32 AM,06/19/2011 11:18:33 AM,06/19/2011 11:20:03 AM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,No Merit,06/19/2011 11:23:41 AM,FILLMORE ST/BROADWAY,SF,94115,B04,16,3551,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7942660323757, -122.434919326625)",111700145-E16 -132540087,E03,13085727,Medical Incident,09/11/2013,09/11/2013,09/11/2013 08:19:50 AM,09/11/2013 08:23:24 AM,09/11/2013 08:24:00 AM,09/11/2013 08:26:04 AM,09/11/2013 08:29:21 AM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/11/2013 08:38:04 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",132540087-E03 -121770304,93,12058985,Traffic Collision,06/25/2012,06/25/2012,06/25/2012 05:51:48 PM,06/25/2012 05:53:40 PM,06/25/2012 05:53:56 PM,06/25/2012 05:54:02 PM,06/25/2012 05:58:29 PM,04/25/2016 01:58:01 PM,04/25/2016 01:58:01 PM,Against Medical Advice,06/25/2012 06:46:35 PM,PINE ST/MASON ST,SF,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7908806970808, -122.410622872864)",121770304-93 -111380208,T13,11045894,Medical Incident,05/18/2011,05/18/2011,05/18/2011 01:57:23 PM,05/18/2011 01:59:31 PM,05/18/2011 02:00:43 PM,05/18/2011 02:01:31 PM,05/18/2011 02:03:07 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 02:23:38 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,2,2,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",111380208-T13 -132370029,RC1,13079818,Medical Incident,08/25/2013,08/24/2013,08/25/2013 01:21:16 AM,08/25/2013 01:22:22 AM,08/25/2013 01:22:44 AM,08/25/2013 01:24:30 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/25/2013 01:24:34 AM,4TH ST/CHANNEL ST,SF,,B03,8,2225,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,None,"(37.7750268633971, -122.392346204303)",132370029-RC1 -133020155,E42,13102598,Structure Fire,10/29/2013,10/29/2013,10/29/2013 10:39:53 AM,10/29/2013 10:39:53 AM,10/29/2013 10:40:13 AM,10/29/2013 10:42:25 AM,10/29/2013 10:44:57 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Fire,10/29/2013 10:52:30 AM,400 Block of BURROWS ST,SF,94134,B10,42,633,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.7278769871167, -122.407535487433)",133020155-E42 -121030209,AM06,12034135,Medical Incident,04/12/2012,04/12/2012,04/12/2012 01:34:07 PM,04/12/2012 01:36:40 PM,04/12/2012 01:37:37 PM,04/12/2012 01:38:11 PM,04/12/2012 01:41:34 PM,04/12/2012 02:03:45 PM,04/12/2012 02:07:26 PM,Code 2 Transport,04/12/2012 03:05:03 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",121030209-AM06 -160301416,79,16011748,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:48:07 AM,01/30/2016 10:49:19 AM,01/30/2016 10:49:55 AM,01/30/2016 10:50:03 AM,01/30/2016 11:03:50 AM,01/30/2016 11:06:42 AM,01/30/2016 11:35:03 AM,Code 2 Transport,01/30/2016 11:51:05 AM,"CALIFORNIA AV/AVENUE C, TI",Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8180574123621, -122.370841165993)",160301416-79 -140600218,86,14020285,Medical Incident,03/01/2014,03/01/2014,03/01/2014 02:38:04 PM,03/01/2014 02:41:33 PM,03/01/2014 02:51:07 PM,03/01/2014 02:51:14 PM,03/01/2014 02:55:20 PM,03/01/2014 03:05:46 PM,03/01/2014 03:26:56 PM,Code 2 Transport,03/01/2014 03:58:52 PM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,,2,2,false,Non Life-threatening,1,MEDIC,3,2,6,South of Market,"(37.7779770860913, -122.409387007126)",140600218-86 -131140050,66,13038331,Medical Incident,04/24/2013,04/23/2013,04/24/2013 06:27:30 AM,04/24/2013 06:28:12 AM,04/24/2013 06:30:07 AM,04/24/2013 06:30:37 AM,04/24/2013 06:36:59 AM,04/24/2013 07:10:00 AM,04/24/2013 07:17:27 AM,Code 2 Transport,04/24/2013 07:56:25 AM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",131140050-66 -121600280,81,12053017,Medical Incident,06/08/2012,06/08/2012,06/08/2012 04:41:36 PM,06/08/2012 04:42:11 PM,06/08/2012 04:42:26 PM,06/08/2012 04:46:16 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,04/25/2016 01:58:18 PM,4300 Block of 20TH ST,SF,94114,B06,24,5442,3,2,2,true,Non Life-threatening,1,MEDIC,4,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",121600280-81 -130820294,E03,13027547,Medical Incident,03/23/2013,03/23/2013,03/23/2013 08:02:04 PM,03/23/2013 08:03:11 PM,03/23/2013 08:03:33 PM,03/23/2013 08:04:23 PM,03/23/2013 08:06:48 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Medical Examiner,03/23/2013 08:35:48 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",130820294-E03 -123660107,E36,12122384,Structure Fire,12/31/2012,12/31/2012,12/31/2012 09:45:39 AM,12/31/2012 09:45:53 AM,12/31/2012 09:46:23 AM,12/31/2012 09:48:39 AM,12/31/2012 09:49:07 AM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,12/31/2012 09:59:12 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123660107-E36 -132480071,E41,13083596,Citizen Assist / Service Call,09/05/2013,09/04/2013,09/05/2013 07:21:12 AM,09/05/2013 07:22:54 AM,09/05/2013 07:23:17 AM,09/05/2013 07:24:41 AM,09/05/2013 07:27:56 AM,04/25/2016 01:50:57 PM,04/25/2016 01:50:57 PM,Other,09/05/2013 07:36:07 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",132480071-E41 -111200229,E12,11039615,Alarms,04/30/2011,04/30/2011,04/30/2011 02:32:01 PM,04/30/2011 02:33:47 PM,04/30/2011 02:34:00 PM,04/30/2011 02:34:31 PM,04/30/2011 02:35:34 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 02:39:18 PM,1500 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",111200229-E12 -122670199,T13,12088229,Alarms,09/23/2012,09/23/2012,09/23/2012 02:06:53 PM,09/23/2012 02:08:02 PM,09/23/2012 02:08:11 PM,09/23/2012 02:09:51 PM,09/23/2012 02:12:17 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 02:16:51 PM,500 Block of MARKET ST,SF,94105,B03,13,2143,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",122670199-T13 -110500172,KM01,11016532,Medical Incident,02/19/2011,02/19/2011,02/19/2011 12:28:45 PM,02/19/2011 12:30:02 PM,02/19/2011 12:30:30 PM,02/19/2011 12:31:18 PM,02/19/2011 12:33:15 PM,02/19/2011 12:49:34 PM,02/19/2011 01:12:07 PM,Code 2 Transport,02/19/2011 01:37:31 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7838066631424, -122.409129633669)",110500172-KM01 -122680077,E08,12088449,Medical Incident,09/24/2012,09/23/2012,09/24/2012 07:12:54 AM,09/24/2012 07:14:19 AM,09/24/2012 07:14:50 AM,09/24/2012 07:16:45 AM,09/24/2012 07:32:34 AM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 07:38:10 AM,300 Block of 7TH ST,SF,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7765647940442, -122.407516832678)",122680077-E08 -130810285,E19,13027203,Traffic Collision,03/22/2013,03/22/2013,03/22/2013 06:15:15 PM,03/22/2013 06:15:15 PM,03/22/2013 06:16:17 PM,03/22/2013 06:17:03 PM,03/22/2013 06:21:36 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,No Merit,03/22/2013 06:45:07 PM,EUCALYPTUS DR/INVERNESS DR,SF,94132,B08,19,8735,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7311471287157, -122.482663607647)",130810285-E19 -132220028,66,13074834,Medical Incident,08/10/2013,08/09/2013,08/10/2013 01:42:35 AM,08/10/2013 01:42:40 AM,08/10/2013 01:44:07 AM,08/10/2013 01:44:17 AM,08/10/2013 01:47:04 AM,08/10/2013 01:57:46 AM,08/10/2013 02:12:54 AM,Code 3 Transport,08/10/2013 02:46:55 AM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",132220028-66 -131480393,KM15,13050353,Medical Incident,05/28/2013,05/28/2013,05/28/2013 11:13:05 PM,05/28/2013 11:15:06 PM,05/28/2013 11:15:46 PM,05/28/2013 11:16:39 PM,05/28/2013 11:26:50 PM,05/28/2013 11:42:13 PM,05/28/2013 11:55:35 PM,Code 2 Transport,05/29/2013 12:41:51 AM,300 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7826555337918, -122.491436722689)",131480393-KM15 -133540127,AM12,13120217,Medical Incident,12/20/2013,12/20/2013,12/20/2013 10:01:28 AM,12/20/2013 10:03:57 AM,12/20/2013 10:04:23 AM,12/20/2013 10:06:15 AM,12/20/2013 10:08:10 AM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/20/2013 10:08:26 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7628860418812, -122.419391026615)",133540127-AM12 -160873740,88,16034773,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:51:13 PM,03/27/2016 11:51:13 PM,03/27/2016 11:51:43 PM,03/27/2016 11:51:54 PM,03/27/2016 11:56:40 PM,03/28/2016 12:14:37 AM,03/28/2016 12:27:40 AM,Code 2 Transport,03/28/2016 01:09:58 AM,800 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.7589313181833, -122.421382559773)",160873740-88 -121530120,E03,12050583,Medical Incident,06/01/2012,06/01/2012,06/01/2012 11:23:30 AM,06/01/2012 11:24:24 AM,06/01/2012 11:24:46 AM,06/01/2012 11:27:39 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 11:31:14 AM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",121530120-E03 -132800213,E31,13095311,Medical Incident,10/07/2013,10/07/2013,10/07/2013 01:45:38 PM,10/07/2013 01:46:45 PM,10/07/2013 01:47:15 PM,10/07/2013 01:47:26 PM,10/07/2013 01:49:09 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/07/2013 02:02:14 PM,300 Block of 2ND AVE,SF,94118,B07,31,7116,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7821780951379, -122.459999332268)",132800213-E31 -110630010,KM11,11020551,Traffic Collision,03/04/2011,03/03/2011,03/04/2011 12:18:40 AM,03/04/2011 12:20:00 AM,03/04/2011 12:20:34 AM,03/04/2011 12:21:27 AM,03/04/2011 12:28:04 AM,03/04/2011 01:01:22 AM,03/04/2011 01:09:13 AM,Code 2 Transport,03/04/2011 01:44:03 AM,3600 Block of MARKET ST,SF,94131,B06,24,5266,3,3,3,false,,1,PRIVATE,2,6,8,Twin Peaks,"(37.7553957428473, -122.441235837423)",110630010-KM11 -130690188,E32,13023047,Medical Incident,03/10/2013,03/10/2013,03/10/2013 02:35:51 PM,03/10/2013 02:37:35 PM,03/10/2013 02:45:51 PM,03/10/2013 02:47:39 PM,03/10/2013 02:49:09 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 02:57:12 PM,CRESCENT AV/BANKS ST,SF,94110,B06,32,5747,1,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7347005989367, -122.413068634624)",130690188-E32 -133400183,E12,13115230,Structure Fire,12/06/2013,12/06/2013,12/06/2013 12:22:39 PM,12/06/2013 12:26:12 PM,12/06/2013 12:28:06 PM,12/06/2013 12:29:33 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:31:47 PM,100 Block of COLE ST,SF,94117,B05,21,4535,3,3,3,true,Alarm,1,ENGINE,6,5,5,Lone Mountain/USF,"(37.7737734460472, -122.451136840346)",133400183-E12 -133180283,84,13108158,Medical Incident,11/14/2013,11/14/2013,11/14/2013 05:25:52 PM,11/14/2013 05:26:59 PM,11/14/2013 05:27:57 PM,11/14/2013 05:28:57 PM,11/14/2013 05:31:49 PM,11/14/2013 05:47:02 PM,11/14/2013 06:10:54 PM,Code 2 Transport,11/14/2013 06:29:34 PM,1600 Block of SCOTT ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7849864733147, -122.438181369407)",133180283-84 -133560297,E08,13121120,Medical Incident,12/22/2013,12/22/2013,12/22/2013 06:05:44 PM,12/22/2013 06:05:53 PM,12/22/2013 06:06:25 PM,12/22/2013 06:07:17 PM,12/22/2013 06:09:32 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 06:17:50 PM,CALL BOX: 2ND ST/BRANNAN ST,SF,94107,B03,8,2153,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7817698612933, -122.392084902595)",133560297-E08 -122040016,92,12067672,Medical Incident,07/22/2012,07/21/2012,07/22/2012 12:29:29 AM,07/22/2012 12:30:55 AM,07/22/2012 12:32:02 AM,07/22/2012 12:32:12 AM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 12:40:57 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",122040016-92 -123350059,B02,12111209,Alarms,11/30/2012,11/29/2012,11/30/2012 03:13:36 AM,11/30/2012 03:15:01 AM,11/30/2012 03:15:06 AM,11/30/2012 03:17:00 AM,11/30/2012 03:26:24 AM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/30/2012 03:27:06 AM,200 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,false,Alarm,1,CHIEF,3,2,8,Mission,"(37.7668770284191, -122.424185302421)",123350059-B02 -160432857,71,16017407,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:49:45 PM,02/12/2016 05:50:30 PM,02/12/2016 05:51:34 PM,02/12/2016 05:51:43 PM,02/12/2016 05:56:07 PM,02/12/2016 06:04:33 PM,02/12/2016 06:22:58 PM,Code 2 Transport,02/12/2016 07:01:42 PM,TOWNSEND ST/3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7788517157298, -122.39274978786)",160432857-71 -120200204,85,12006704,Medical Incident,01/20/2012,01/20/2012,01/20/2012 01:59:04 PM,01/20/2012 02:00:33 PM,01/20/2012 02:00:58 PM,01/20/2012 02:01:20 PM,01/20/2012 02:15:09 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,No Merit,01/20/2012 02:20:36 PM,1000 Block of GOUGH ST,SF,94109,B02,5,3262,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7829471585085, -122.424133174538)",120200204-85 -123380183,93,12112690,Medical Incident,12/03/2012,12/03/2012,12/03/2012 12:08:17 PM,12/03/2012 12:09:00 PM,12/03/2012 12:11:14 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 12:13:43 PM,500 Block of 48TH AVE,SF,94121,B07,34,7313,3,2,2,true,Non Life-threatening,1,MEDIC,5,7,1,Outer Richmond,"(37.7780077592037, -122.509229146953)",123380183-93 -110560322,E10,11018565,Medical Incident,02/25/2011,02/25/2011,02/25/2011 08:28:23 PM,02/25/2011 08:30:33 PM,02/25/2011 08:31:11 PM,02/25/2011 08:31:58 PM,02/25/2011 08:35:05 PM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/25/2011 08:37:21 PM,700 Block of CLEMENT ST,SF,94118,B07,31,7127,3,3,3,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.782880670915, -122.467099725542)",110560322-E10 -132740184,E10,13093103,Medical Incident,10/01/2013,10/01/2013,10/01/2013 01:51:36 PM,10/01/2013 01:52:07 PM,10/01/2013 01:52:50 PM,10/01/2013 01:54:19 PM,10/01/2013 01:56:39 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 02:02:32 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",132740184-E10 -160221137,71,16008711,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:10:00 AM,01/22/2016 10:12:03 AM,01/22/2016 10:13:38 AM,01/22/2016 10:14:23 AM,01/22/2016 10:25:26 AM,01/22/2016 10:43:23 AM,01/22/2016 10:59:53 AM,Code 2 Transport,01/22/2016 11:37:32 AM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160221137-71 -160090856,AM08,16003569,Medical Incident,01/09/2016,01/09/2016,01/09/2016 08:56:25 AM,01/09/2016 08:57:26 AM,01/09/2016 08:58:55 AM,01/09/2016 08:59:38 AM,01/09/2016 09:02:59 AM,01/09/2016 09:21:49 AM,01/09/2016 09:30:05 AM,Code 2 Transport,01/09/2016 10:04:40 AM,2400 Block of HARRISON ST,San Francisco,94110,B06,7,545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7582246777645, -122.412493470285)",160090856-AM08 -133110356,E10,13105866,Medical Incident,11/07/2013,11/07/2013,11/07/2013 11:01:20 PM,11/07/2013 11:04:02 PM,11/07/2013 11:04:36 PM,11/07/2013 11:05:57 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/07/2013 11:06:35 PM,400 Block of 42ND AVE,SF,94121,B07,34,7265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,6,7,1,Outer Richmond,"(37.7803964224554, -122.502960268873)",133110356-E10 -160122765,62,16004858,Traffic Collision,01/12/2016,01/12/2016,01/12/2016 05:14:48 PM,01/12/2016 05:14:48 PM,01/12/2016 05:15:00 PM,01/12/2016 05:15:09 PM,01/12/2016 05:17:36 PM,01/12/2016 05:28:39 PM,01/12/2016 05:49:49 PM,Code 2 Transport,01/12/2016 06:32:24 PM,MONTGOMERY ST/SUTTER ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7900390948551, -122.40218964437)",160122765-62 -121060347,E23,12035279,Medical Incident,04/15/2012,04/15/2012,04/15/2012 08:59:28 PM,04/15/2012 09:00:04 PM,04/15/2012 09:00:35 PM,04/15/2012 09:02:11 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/15/2012 09:21:23 PM,2700 Block of JUDAH ST,SF,94122,B08,23,7541,3,2,2,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7611180469496, -122.491464026808)",121060347-E23 -111660337,E02,11054925,Structure Fire,06/15/2011,06/15/2011,06/15/2011 07:40:32 PM,06/15/2011 07:42:04 PM,06/15/2011 07:42:50 PM,06/15/2011 07:43:55 PM,06/15/2011 07:46:10 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/15/2011 07:47:54 PM,2600 Block of VAN NESS AVE,SF,94109,B04,16,3146,3,3,3,true,,1,ENGINE,3,4,2,Russian Hill,"(37.7999719435831, -122.424093828801)",111660337-E02 -160172978,AM18,16006979,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:01:16 PM,01/17/2016 08:04:44 PM,01/17/2016 08:09:34 PM,01/17/2016 08:10:00 PM,01/17/2016 08:17:25 PM,01/17/2016 08:23:34 PM,01/17/2016 08:32:38 PM,Code 2 Transport,01/17/2016 09:11:00 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160172978-AM18 -160692650,AM16,16027553,Medical Incident,03/09/2016,03/09/2016,03/09/2016 04:40:13 PM,03/09/2016 04:41:00 PM,03/09/2016 04:41:39 PM,03/09/2016 04:42:05 PM,03/09/2016 04:51:04 PM,03/09/2016 05:02:22 PM,03/09/2016 05:13:35 PM,Code 2 Transport,03/09/2016 05:31:39 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160692650-AM16 -160670026,KM07,16026553,Medical Incident,03/07/2016,03/06/2016,03/07/2016 12:12:55 AM,03/07/2016 12:13:49 AM,03/07/2016 12:14:16 AM,03/07/2016 12:14:45 AM,03/07/2016 12:27:02 AM,03/07/2016 12:48:07 AM,03/07/2016 01:30:44 AM,Code 2 Transport,03/07/2016 01:33:14 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160670026-KM07 -110560063,82,11018354,Medical Incident,02/25/2011,02/24/2011,02/25/2011 07:24:36 AM,02/25/2011 07:25:46 AM,02/25/2011 07:26:30 AM,02/25/2011 07:27:16 AM,02/25/2011 07:38:37 AM,02/25/2011 07:55:53 AM,02/25/2011 08:15:16 AM,Code 2 Transport,02/25/2011 08:28:39 AM,HOWARD ST/STEUART ST,SF,94105,B03,35,2114,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.792005700577, -122.391645799833)",110560063-82 -122440209,KM02,12080688,Medical Incident,08/31/2012,08/31/2012,08/31/2012 03:16:02 PM,08/31/2012 03:18:23 PM,08/31/2012 03:18:50 PM,08/31/2012 03:19:20 PM,08/31/2012 03:25:36 PM,08/31/2012 03:41:49 PM,08/31/2012 04:01:51 PM,Code 2 Transport,08/31/2012 04:18:27 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",122440209-KM02 -110170245,E05,11005718,Medical Incident,01/17/2011,01/17/2011,01/17/2011 06:53:51 PM,01/17/2011 06:55:47 PM,01/17/2011 06:56:52 PM,01/17/2011 06:57:41 PM,01/17/2011 06:59:19 PM,04/25/2016 02:06:33 PM,04/25/2016 02:06:33 PM,Other,01/17/2011 07:16:00 PM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",110170245-E05 -102500152,E16,10078972,Outside Fire,09/07/2010,09/07/2010,09/07/2010 12:34:54 PM,09/07/2010 12:35:20 PM,09/07/2010 12:36:05 PM,09/07/2010 12:36:51 PM,09/07/2010 12:38:16 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 12:43:06 PM,CHESTNUT ST/FILLMORE ST,SF,94123,B04,16,3554,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.800814143599, -122.436273910168)",102500152-E16 -160171438,79,16006828,Medical Incident,01/17/2016,01/17/2016,01/17/2016 12:02:26 PM,01/17/2016 12:04:31 PM,01/17/2016 12:06:07 PM,01/17/2016 12:06:19 PM,01/17/2016 12:17:00 PM,01/17/2016 12:22:18 PM,01/17/2016 12:36:47 PM,Code 2 Transport,01/17/2016 01:00:35 PM,0 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7264,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7796028187333, -122.503522163162)",160171438-79 -110910035,T06,11030021,Outside Fire,04/01/2011,03/31/2011,04/01/2011 02:06:35 AM,04/01/2011 02:07:47 AM,04/01/2011 02:08:04 AM,04/01/2011 02:09:31 AM,04/01/2011 02:12:14 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 02:26:36 AM,VALENCIA ST/15TH ST,SF,94103,B02,6,5226,3,3,3,false,,1,TRUCK,3,2,9,Mission,"(37.7665395771344, -122.422043813368)",110910035-T06 -160182267,56,16007299,Medical Incident,01/18/2016,01/18/2016,01/18/2016 04:32:53 PM,01/18/2016 04:34:54 PM,01/18/2016 04:35:07 PM,01/18/2016 04:35:30 PM,01/18/2016 04:45:32 PM,01/18/2016 04:53:15 PM,01/18/2016 05:08:58 PM,Code 2 Transport,01/18/2016 05:26:58 PM,300 Block of HEAD ST,San Francisco,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.713614800777, -122.464324485172)",160182267-56 -160042624,62,16001689,Medical Incident,01/04/2016,01/04/2016,01/04/2016 04:48:15 PM,01/04/2016 04:48:15 PM,01/04/2016 04:49:44 PM,01/04/2016 04:52:28 PM,01/04/2016 05:06:27 PM,01/04/2016 05:30:19 PM,01/04/2016 05:38:03 PM,Code 2 Transport,01/04/2016 06:05:29 PM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",160042624-62 -110430375,B01,11014424,Alarms,02/12/2011,02/12/2011,02/12/2011 07:47:23 PM,02/12/2011 07:48:32 PM,02/12/2011 07:49:24 PM,02/12/2011 07:50:44 PM,02/12/2011 07:56:10 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/12/2011 07:56:27 PM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,false,,1,CHIEF,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",110430375-B01 -130190290,E05,13006598,Medical Incident,01/19/2013,01/19/2013,01/19/2013 05:04:37 PM,01/19/2013 05:05:49 PM,01/19/2013 05:06:10 PM,01/19/2013 05:06:45 PM,01/19/2013 05:08:20 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 05:53:24 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",130190290-E05 -122720031,E05,12089622,Alarms,09/28/2012,09/27/2012,09/28/2012 04:15:17 AM,09/28/2012 04:16:18 AM,09/28/2012 04:16:36 AM,09/28/2012 04:18:04 AM,09/28/2012 04:20:26 AM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/28/2012 04:30:01 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",122720031-E05 -160043074,85,16001732,Medical Incident,01/04/2016,01/04/2016,01/04/2016 07:08:38 PM,01/04/2016 07:09:57 PM,01/04/2016 07:10:10 PM,01/04/2016 07:10:20 PM,01/04/2016 07:23:00 PM,01/04/2016 07:40:18 PM,01/04/2016 07:58:52 PM,Code 2 Transport,01/04/2016 08:44:52 PM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8259704739589, -122.377189270334)",160043074-85 -160640460,53,16025366,Medical Incident,03/04/2016,03/03/2016,03/04/2016 05:35:52 AM,03/04/2016 05:38:01 AM,03/04/2016 05:38:17 AM,03/04/2016 05:38:53 AM,03/04/2016 05:46:50 AM,03/04/2016 05:50:57 AM,03/04/2016 05:56:27 AM,Code 2 Transport,03/04/2016 06:21:18 AM,1500 Block of MCALLISTER ST,San Francisco,94115,B05,21,4151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7779545300539, -122.437542013129)",160640460-53 -132440263,E01,13082418,Medical Incident,09/01/2013,09/01/2013,09/01/2013 05:18:58 PM,09/01/2013 05:19:33 PM,09/01/2013 05:20:20 PM,09/01/2013 05:22:00 PM,09/01/2013 05:24:06 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 05:33:11 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",132440263-E01 -131320008,E36,13044443,Traffic Collision,05/12/2013,05/11/2013,05/12/2013 12:17:01 AM,05/12/2013 12:17:02 AM,05/12/2013 12:17:39 AM,05/12/2013 12:20:31 AM,05/12/2013 12:24:04 AM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 12:26:40 AM,MARKET ST/VALENCIA ST,SF,94103,B02,36,3311,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7725028174103, -122.422619692886)",131320008-E36 -132310162,E01,13077979,Medical Incident,08/19/2013,08/19/2013,08/19/2013 11:33:22 AM,08/19/2013 11:33:39 AM,08/19/2013 11:34:09 AM,08/19/2013 11:34:22 AM,08/19/2013 11:36:02 AM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 11:34:44 AM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",132310162-E01 -111500180,81,11049701,Medical Incident,05/30/2011,05/30/2011,05/30/2011 01:41:11 PM,05/30/2011 01:42:36 PM,05/30/2011 01:42:47 PM,05/30/2011 01:43:21 PM,05/30/2011 01:46:59 PM,05/30/2011 02:07:46 PM,05/30/2011 02:11:36 PM,Code 3 Transport,05/30/2011 02:31:34 PM,600 Block of JACKSON ST,SF,94108,B01,2,1312,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7959890845628, -122.406490877874)",111500180-81 -133170133,E14,13107690,Medical Incident,11/13/2013,11/13/2013,11/13/2013 10:37:05 AM,11/13/2013 10:37:37 AM,11/13/2013 10:38:52 AM,11/13/2013 10:39:23 AM,11/13/2013 10:42:20 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 10:47:48 AM,GEARY BL/15TH AV,SF,94118,B07,31,7153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7805753802673, -122.47398246915)",133170133-E14 -120560102,T19,12018429,Alarms,02/25/2012,02/25/2012,02/25/2012 10:02:48 AM,02/25/2012 10:03:33 AM,02/25/2012 10:04:02 AM,02/25/2012 10:05:22 AM,02/25/2012 10:09:50 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 10:16:23 AM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,TRUCK,1,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",120560102-T19 -160070478,75,16002709,Medical Incident,01/07/2016,01/06/2016,01/07/2016 06:40:40 AM,01/07/2016 06:43:06 AM,01/07/2016 06:43:46 AM,01/07/2016 06:43:55 AM,01/07/2016 06:49:11 AM,01/07/2016 07:21:19 AM,01/07/2016 07:36:52 AM,Code 2 Transport,01/07/2016 08:35:09 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",160070478-75 -133470104,B10,13117687,Alarms,12/13/2013,12/13/2013,12/13/2013 09:32:21 AM,12/13/2013 09:34:04 AM,12/13/2013 09:34:35 AM,12/13/2013 09:38:57 AM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 09:41:38 AM,200 Block of COLERIDGE ST,SF,94110,B06,32,5653,3,3,3,false,Alarm,1,CHIEF,2,6,9,Bernal Heights,"(37.7419452829468, -122.420774789624)",133470104-B10 -160853005,76,16033895,Medical Incident,03/25/2016,03/25/2016,03/25/2016 06:09:28 PM,03/25/2016 06:09:28 PM,03/25/2016 06:09:57 PM,03/25/2016 06:10:03 PM,03/25/2016 06:23:51 PM,03/25/2016 06:28:04 PM,03/25/2016 06:43:22 PM,Code 2 Transport,03/25/2016 07:03:06 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.78026973391, -122.406390271833)",160853005-76 -120010439,E08,12000381,Medical Incident,01/01/2012,01/01/2012,01/01/2012 02:06:43 PM,01/01/2012 02:09:03 PM,01/01/2012 02:09:23 PM,01/01/2012 02:10:59 PM,01/01/2012 02:14:36 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 02:19:40 PM,0 Block of DOW PL,SF,94107,B03,8,2151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7846075628072, -122.396165148347)",120010439-E08 -133070232,E03,13104429,Medical Incident,11/03/2013,11/03/2013,11/03/2013 03:27:15 PM,11/03/2013 03:28:09 PM,11/03/2013 03:28:21 PM,11/03/2013 03:29:36 PM,11/03/2013 03:31:19 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/03/2013 03:46:27 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",133070232-E03 -121310213,E05,12043598,Gas Leak (Natural and LP Gases),05/10/2012,05/10/2012,05/10/2012 02:15:09 PM,05/10/2012 02:17:47 PM,05/10/2012 02:17:56 PM,05/10/2012 02:18:59 PM,05/10/2012 02:20:41 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 02:30:09 PM,1400 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7793039657232, -122.434429450678)",121310213-E05 -113170270,E01,11105406,Medical Incident,11/13/2011,11/13/2011,11/13/2011 05:53:46 PM,11/13/2011 05:54:53 PM,11/13/2011 05:55:20 PM,11/13/2011 05:59:29 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 05:59:56 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,3,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",113170270-E01 -132440273,KM06,13082427,Medical Incident,09/01/2013,09/01/2013,09/01/2013 05:42:19 PM,09/01/2013 05:42:52 PM,09/01/2013 05:43:03 PM,09/01/2013 05:43:34 PM,09/01/2013 05:47:20 PM,09/01/2013 06:03:58 PM,09/01/2013 06:15:49 PM,Code 2 Transport,09/01/2013 06:30:01 PM,300 Block of KEARNY ST,SF,94104,B01,13,1243,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7912340846194, -122.40405694935)",132440273-KM06 -110310122,58,11010119,Medical Incident,01/31/2011,01/31/2011,01/31/2011 09:33:17 AM,01/31/2011 09:33:58 AM,01/31/2011 09:34:58 AM,01/31/2011 09:57:04 AM,01/31/2011 10:19:45 AM,01/31/2011 10:39:42 AM,01/31/2011 11:01:26 AM,Code 2 Transport,01/31/2011 11:23:06 AM,1400 Block of PORTOLA DR,SF,94127,B08,39,8562,3,3,3,true,,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7383833266709, -122.467301610982)",110310122-58 -102580184,AM06,10081498,Medical Incident,09/15/2010,09/15/2010,09/15/2010 01:10:17 PM,09/15/2010 01:10:48 PM,09/15/2010 01:14:20 PM,09/15/2010 01:15:40 PM,09/15/2010 01:24:32 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,Patient Declined Transport,09/15/2010 01:27:46 PM,EDDY ST/MASON ST,SF,94102,B03,1,1366,2,2,2,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",102580184-AM06 -160462974,AM16,16018624,Medical Incident,02/15/2016,02/15/2016,02/15/2016 06:17:03 PM,02/15/2016 06:18:39 PM,02/15/2016 06:19:59 PM,02/15/2016 06:20:55 PM,02/15/2016 06:30:08 PM,02/15/2016 06:38:40 PM,02/15/2016 07:08:28 PM,Code 2 Transport,02/15/2016 07:38:46 PM,100 Block of THORNTON AVE,San Francisco,94124,B10,17,6513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7308811280003, -122.393441784119)",160462974-AM16 -120210215,E41,12007144,Medical Incident,01/21/2012,01/21/2012,01/21/2012 12:50:25 PM,01/21/2012 12:51:24 PM,01/21/2012 12:53:40 PM,01/21/2012 12:54:36 PM,01/21/2012 12:55:59 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 01:02:00 PM,HYDE ST/CALIFORNIA ST,SF,94109,B01,41,1541,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",120210215-E41 -160764312,65,16030402,Medical Incident,03/16/2016,03/16/2016,03/16/2016 11:49:34 PM,03/16/2016 11:51:07 PM,03/16/2016 11:51:25 PM,03/16/2016 11:51:42 PM,03/16/2016 11:56:17 PM,03/16/2016 11:59:24 PM,03/17/2016 12:09:00 AM,Code 2 Transport,03/17/2016 12:42:07 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160764312-65 -120890184,78,12029464,Medical Incident,03/29/2012,03/29/2012,03/29/2012 01:33:48 PM,03/29/2012 01:34:57 PM,03/29/2012 01:35:20 PM,03/29/2012 01:36:09 PM,03/29/2012 01:40:38 PM,03/29/2012 01:57:05 PM,03/29/2012 02:12:04 PM,Code 2 Transport,03/29/2012 02:54:06 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",120890184-78 -113370357,E07,11111811,Medical Incident,12/03/2011,12/03/2011,12/03/2011 10:07:19 PM,12/03/2011 10:08:43 PM,12/03/2011 10:08:50 PM,04/25/2016 02:01:20 PM,12/03/2011 10:11:04 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/03/2011 10:12:29 PM,FOLSOM ST/21ST ST,SF,94110,B06,7,545,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7572976449633, -122.414541469066)",113370357-E07 -112240164,E34,11073970,Administrative,08/12/2011,08/12/2011,08/12/2011 11:26:33 AM,08/12/2011 11:26:34 AM,08/12/2011 11:27:47 AM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 11:30:49 AM,400 Block of 41ST AVE,SF,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",112240164-E34 -140980094,AM02,14032974,Medical Incident,04/08/2014,04/07/2014,04/08/2014 07:46:04 AM,04/08/2014 07:48:19 AM,04/08/2014 07:48:52 AM,04/08/2014 07:49:39 AM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,No Merit,04/08/2014 07:55:26 AM,3600 Block of CLAY ST,SAN FRANCISCO,94118,B07,10,4426,3,3,3,false,Non Life-threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7882786698444, -122.45293673498)",140980094-AM02 -160601986,50,16023925,Medical Incident,02/29/2016,02/29/2016,02/29/2016 02:20:38 PM,02/29/2016 02:22:07 PM,02/29/2016 02:22:30 PM,02/29/2016 02:22:39 PM,02/29/2016 02:41:50 PM,02/29/2016 02:53:10 PM,02/29/2016 03:01:33 PM,Code 2 Transport,02/29/2016 03:55:39 PM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2216,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7813340573864, -122.399027495005)",160601986-50 -132120192,KM04,13071666,Medical Incident,07/31/2013,07/31/2013,07/31/2013 02:03:45 PM,07/31/2013 02:05:38 PM,07/31/2013 02:06:04 PM,07/31/2013 02:06:41 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Patient Declined Transport,07/31/2013 03:02:36 PM,SANTOS ST/SUNNYDALE AV,SF,94134,B09,43,6241,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7123491478047, -122.418283422082)",132120192-KM04 -113170079,T08,11105232,Alarms,11/13/2011,11/12/2011,11/13/2011 04:08:19 AM,11/13/2011 04:09:14 AM,11/13/2011 04:09:38 AM,11/13/2011 04:11:33 AM,11/13/2011 04:14:37 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Other,11/13/2011 04:28:10 AM,700 Block of THE EMBARCADERO,SF,94111,B03,35,940,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.8023783666633, -122.400706378791)",113170079-T08 -133150094,E24,13106993,Odor (Strange / Unknown),11/11/2013,11/10/2013,11/11/2013 07:43:02 AM,11/11/2013 07:45:12 AM,11/11/2013 07:45:27 AM,11/11/2013 07:47:55 AM,11/11/2013 07:51:17 AM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Fire,11/11/2013 07:51:48 AM,EUREKA ST/21ST ST,SF,94114,B06,24,5463,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7558927079529, -122.437803352831)",133150094-E24 -140790188,53,14026722,Medical Incident,03/20/2014,03/20/2014,03/20/2014 01:08:30 PM,03/20/2014 01:10:53 PM,03/20/2014 01:13:03 PM,03/20/2014 01:13:38 PM,03/20/2014 01:41:51 PM,03/20/2014 01:49:46 PM,03/20/2014 02:10:07 PM,Code 2 Transport,03/20/2014 02:29:02 PM,1400 Block of HALIBUT CT,TREASURE ISLAN,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",140790188-53 -111460007,AM10,11048340,Medical Incident,05/26/2011,05/25/2011,05/26/2011 01:06:54 AM,05/26/2011 01:06:54 AM,05/26/2011 01:07:10 AM,05/26/2011 01:08:18 AM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,04/25/2016 02:04:27 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,E,E,3,false,,1,PRIVATE,5,1,3,Chinatown,"(37.7969072647197, -122.407234390471)",111460007-AM10 -102560046,E36,10080791,Traffic Collision,09/13/2010,09/12/2010,09/13/2010 06:07:24 AM,09/13/2010 06:07:24 AM,09/13/2010 06:07:45 AM,09/13/2010 06:09:10 AM,09/13/2010 06:10:06 AM,09/13/2010 06:29:30 AM,04/25/2016 02:08:37 PM,Other,09/13/2010 06:52:47 AM,HAYES ST/POLK ST,SF,94102,B02,36,1646,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7775117101895, -122.41804317004)",102560046-E36 -160760377,62,16029993,Medical Incident,03/16/2016,03/15/2016,03/16/2016 04:45:45 AM,03/16/2016 04:47:13 AM,03/16/2016 04:47:22 AM,03/16/2016 04:47:36 AM,03/16/2016 05:09:45 AM,03/16/2016 05:33:09 AM,03/16/2016 05:50:23 AM,Code 2 Transport,03/16/2016 06:28:49 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,false,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160760377-62 -120700038,T15,12023140,Vehicle Fire,03/10/2012,03/09/2012,03/10/2012 02:44:47 AM,03/10/2012 02:45:22 AM,03/10/2012 02:45:32 AM,03/10/2012 02:47:44 AM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/10/2012 02:51:58 AM,JOHN F SHELLEY DR/MANSELL ST,SF,94134,B09,43,6165,3,3,3,false,Fire,1,TRUCK,2,9,10,McLaren Park,"(37.7187660927383, -122.418512370999)",120700038-T15 -111100353,E36,11036447,Medical Incident,04/20/2011,04/20/2011,04/20/2011 07:39:46 PM,04/20/2011 07:40:29 PM,04/20/2011 07:40:43 PM,04/20/2011 07:44:06 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/20/2011 07:43:54 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,ENGINE,5,2,6,Mission,"(37.7726948236861, -122.422188261426)",111100353-E36 -122360321,93,12078306,Medical Incident,08/23/2012,08/23/2012,08/23/2012 08:10:26 PM,08/23/2012 08:12:06 PM,08/23/2012 08:12:27 PM,08/23/2012 08:12:40 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/23/2012 08:14:45 PM,0 Block of REGENT ST,SF,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.709691756097, -122.456407784485)",122360321-93 -160591952,75,16023557,Medical Incident,02/28/2016,02/28/2016,02/28/2016 02:57:37 PM,02/28/2016 02:58:12 PM,02/28/2016 02:58:58 PM,02/28/2016 02:59:06 PM,02/28/2016 03:03:29 PM,02/28/2016 03:14:26 PM,02/28/2016 03:19:46 PM,Code 3 Transport,02/28/2016 03:59:57 PM,500 Block of POST ST,San Francisco,94102,B01,3,1451,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",160591952-75 -113170202,E28,11105341,Medical Incident,11/13/2011,11/13/2011,11/13/2011 01:16:33 PM,11/13/2011 01:18:05 PM,11/13/2011 01:18:29 PM,11/13/2011 01:19:15 PM,11/13/2011 01:21:20 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 01:28:14 PM,1700 Block of MASON ST,SF,94133,B01,28,1422,3,3,3,false,,1,ENGINE,1,1,3,Chinatown,"(37.7994155542754, -122.412277228876)",113170202-E28 -160352920,AM06,16013929,Medical Incident,02/04/2016,02/04/2016,02/04/2016 05:45:46 PM,02/04/2016 05:47:07 PM,02/04/2016 05:47:57 PM,02/04/2016 05:49:08 PM,02/04/2016 05:52:36 PM,02/04/2016 06:07:29 PM,02/04/2016 06:21:05 PM,Code 2 Transport,02/04/2016 06:47:36 PM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160352920-AM06 -140230236,E05,14007907,Transfer,01/23/2014,01/23/2014,01/23/2014 04:14:27 PM,01/23/2014 04:16:11 PM,01/23/2014 04:16:58 PM,01/23/2014 04:18:34 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 04:20:49 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,,3,3,true,Alarm,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",140230236-E05 -130600308,72,13020228,Medical Incident,03/01/2013,03/01/2013,03/01/2013 06:54:29 PM,03/01/2013 06:55:29 PM,03/01/2013 06:55:40 PM,03/01/2013 06:57:48 PM,03/01/2013 07:06:50 PM,03/01/2013 07:34:18 PM,03/01/2013 08:14:35 PM,Code 2 Transport,03/01/2013 08:43:12 PM,0 Block of SEVILLE ST,SF,94112,B09,43,6225,3,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7119488065188, -122.434821997078)",130600308-72 -133400263,E18,13115303,Structure Fire,12/06/2013,12/06/2013,12/06/2013 03:44:36 PM,12/06/2013 03:44:36 PM,12/06/2013 03:44:55 PM,12/06/2013 03:46:11 PM,12/06/2013 03:48:37 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 03:49:09 PM,41ST AV/NORIEGA ST,SF,94122,B08,18,7633,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7532010612329, -122.500044865619)",133400263-E18 -160341491,63,16013355,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:55:59 AM,02/03/2016 11:58:38 AM,02/03/2016 11:59:03 AM,02/03/2016 11:59:19 AM,02/03/2016 12:12:40 PM,02/03/2016 12:29:34 PM,02/03/2016 12:54:22 PM,Code 2 Transport,02/03/2016 01:39:10 PM,0 Block of ALDER ST,San Francisco,94134,B10,44,6315,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7186946916863, -122.405134034244)",160341491-63 -111920392,AM14,11063557,Medical Incident,07/11/2011,07/11/2011,07/11/2011 11:01:08 PM,07/11/2011 11:01:33 PM,07/11/2011 11:03:20 PM,04/25/2016 02:03:43 PM,07/11/2011 11:06:22 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,04/25/2016 02:03:43 PM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,3,3,3,false,,1,PRIVATE,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",111920392-AM14 -160400636,71,16015911,Medical Incident,02/09/2016,02/08/2016,02/09/2016 07:48:36 AM,02/09/2016 07:48:36 AM,02/09/2016 07:48:50 AM,02/09/2016 07:49:02 AM,02/09/2016 07:56:45 AM,02/09/2016 08:08:11 AM,02/09/2016 08:10:42 AM,Code 2 Transport,02/09/2016 09:11:38 AM,900 Block of LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7863251027379, -122.418201870328)",160400636-71 -122960142,E15,12098115,Structure Fire,10/22/2012,10/22/2012,10/22/2012 10:50:38 AM,10/22/2012 10:50:38 AM,10/22/2012 10:51:02 AM,10/22/2012 10:52:53 AM,10/22/2012 10:53:57 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 11:06:57 AM,SAN JOSE AV/NIAGARA AV,SF,94112,B09,15,8312,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7194811206803, -122.447562061428)",122960142-E15 -160744162,89,16029528,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:25:54 PM,03/14/2016 11:28:40 PM,03/14/2016 11:28:47 PM,03/14/2016 11:28:55 PM,03/14/2016 11:34:48 PM,03/15/2016 12:04:47 AM,03/15/2016 12:25:00 AM,Code 2 Transport,03/15/2016 12:52:52 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",160744162-89 -102890254,63,10092233,Medical Incident,10/16/2010,10/16/2010,10/16/2010 03:25:57 PM,10/16/2010 03:27:32 PM,10/16/2010 03:27:46 PM,10/16/2010 03:28:07 PM,10/16/2010 03:34:05 PM,10/16/2010 03:43:21 PM,10/16/2010 03:56:35 PM,Code 2 Transport,10/16/2010 04:17:45 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",102890254-63 -133600187,E01,13122355,Medical Incident,12/26/2013,12/26/2013,12/26/2013 01:54:26 PM,12/26/2013 01:56:02 PM,12/26/2013 01:56:37 PM,12/26/2013 01:58:05 PM,12/26/2013 02:00:58 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 02:12:43 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",133600187-E01 -102530226,96,10079966,Medical Incident,09/10/2010,09/10/2010,09/10/2010 01:39:56 PM,09/10/2010 01:42:21 PM,09/10/2010 01:42:52 PM,09/10/2010 01:44:24 PM,09/10/2010 01:45:21 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,No Merit,09/10/2010 01:47:03 PM,EDDY ST/TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",102530226-96 -160693586,78,16027651,Traffic Collision,03/09/2016,03/09/2016,03/09/2016 09:14:48 PM,03/09/2016 09:14:48 PM,03/09/2016 09:15:09 PM,03/09/2016 09:16:01 PM,03/09/2016 09:30:37 PM,03/09/2016 09:30:40 PM,03/09/2016 10:14:45 PM,Code 2 Transport,03/09/2016 10:15:11 PM,1300 Block of TURK ST,San Francisco,94115,B04,5,3535,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",160693586-78 -131900014,66,13064597,Medical Incident,07/09/2013,07/08/2013,07/09/2013 01:18:42 AM,07/09/2013 01:19:20 AM,07/09/2013 01:20:28 AM,07/09/2013 01:20:32 AM,07/09/2013 01:21:55 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Patient Declined Transport,07/09/2013 01:51:19 AM,OFARRELL ST/JONES ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",131900014-66 -131990173,E44,13067450,Citizen Assist / Service Call,07/18/2013,07/18/2013,07/18/2013 01:04:49 PM,07/18/2013 01:06:52 PM,07/18/2013 01:07:16 PM,07/18/2013 01:09:36 PM,07/18/2013 01:10:55 PM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 01:14:46 PM,1000 Block of GOETTINGEN ST,SF,94134,B10,44,6313,3,3,3,true,Alarm,1,ENGINE,1,10,10,Portola,"(37.7190470338959, -122.403385740748)",131990173-E44 -111890234,E02,11062522,Medical Incident,07/08/2011,07/08/2011,07/08/2011 02:45:51 PM,07/08/2011 02:47:19 PM,07/08/2011 02:47:35 PM,07/08/2011 02:49:06 PM,07/08/2011 02:51:12 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,Other,07/08/2011 03:08:51 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7901567744673, -122.40836738789)",111890234-E02 -102910343,B03,10092941,Alarms,10/18/2010,10/18/2010,10/18/2010 08:35:13 PM,10/18/2010 08:36:43 PM,10/18/2010 08:36:52 PM,10/18/2010 08:38:38 PM,10/18/2010 08:41:37 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/18/2010 08:43:18 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",102910343-B03 -120020102,T08,12000668,Structure Fire,01/02/2012,01/02/2012,01/02/2012 10:22:10 AM,01/02/2012 10:22:29 AM,01/02/2012 10:23:03 AM,01/02/2012 10:23:32 AM,01/02/2012 10:25:12 AM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/02/2012 11:42:53 AM,600 Block of BRANNAN ST,SF,94107,B03,8,2256,3,3,3,false,Fire,1,TRUCK,1,3,6,South of Market,"(37.7757275043463, -122.399917352122)",120020102-T08 -140800253,E11,14027095,Medical Incident,03/21/2014,03/21/2014,03/21/2014 03:59:29 PM,03/21/2014 04:01:51 PM,03/21/2014 04:02:23 PM,03/21/2014 04:03:34 PM,03/21/2014 04:05:50 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Code 2 Transport,03/21/2014 04:13:07 PM,SAN JOSE AV/ALVARADO ST,SAN FRANCISCO,94110,B06,11,5471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7544656208221, -122.421476521356)",140800253-E11 -133420260,E12,13116031,Structure Fire,12/08/2013,12/08/2013,12/08/2013 04:08:57 PM,12/08/2013 04:09:39 PM,12/08/2013 04:10:14 PM,12/08/2013 04:12:06 PM,12/08/2013 04:13:52 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 04:27:26 PM,1400 Block of 12TH AVE,SF,94122,B08,22,7347,3,3,3,true,Alarm,1,ENGINE,3,8,7,Inner Sunset,"(37.7610993407265, -122.469396572212)",133420260-E12 -102870003,55,10091362,Medical Incident,10/14/2010,10/13/2010,10/14/2010 12:14:54 AM,10/14/2010 12:15:40 AM,10/14/2010 12:16:44 AM,10/14/2010 12:16:54 AM,10/14/2010 12:22:00 AM,04/25/2016 02:08:06 PM,04/25/2016 02:08:06 PM,No Merit,10/14/2010 12:46:14 AM,TRUMBULL ST/CRAUT ST,SF,94112,B09,32,5635,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7307887440015, -122.428389946598)",102870003-55 -122320291,E37,12077045,Medical Incident,08/19/2012,08/19/2012,08/19/2012 06:24:27 PM,08/19/2012 06:25:23 PM,08/19/2012 06:25:46 PM,08/19/2012 06:27:56 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 06:29:24 PM,400 Block of 24TH ST,SF,94107,B10,25,2732,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7541797062971, -122.385016109823)",122320291-E37 -122710157,67,12089420,Medical Incident,09/27/2012,09/27/2012,09/27/2012 01:11:46 PM,09/27/2012 01:11:50 PM,09/27/2012 01:12:27 PM,09/27/2012 01:12:55 PM,09/27/2012 01:15:50 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,No Merit,09/27/2012 01:18:14 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",122710157-67 -140060065,AM16,14002031,Medical Incident,01/06/2014,01/05/2014,01/06/2014 06:34:57 AM,01/06/2014 06:36:49 AM,01/06/2014 06:55:21 AM,01/06/2014 06:55:21 AM,01/06/2014 06:57:10 AM,01/06/2014 07:02:55 AM,01/06/2014 07:20:40 AM,Code 2 Transport,01/06/2014 07:54:56 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",140060065-AM16 -120140367,75,12004937,Medical Incident,01/14/2012,01/14/2012,01/14/2012 11:47:28 PM,01/14/2012 11:47:28 PM,01/14/2012 11:47:28 PM,01/15/2012 12:35:04 AM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 12:53:23 AM,POST ST/HYDE ST,SF,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,4,4,3,Nob Hill,"(37.7872452103353, -122.41663869807)",120140367-75 -103580230,KM04,10114968,Medical Incident,12/24/2010,12/24/2010,12/24/2010 05:05:30 PM,12/24/2010 05:07:32 PM,12/24/2010 05:08:16 PM,04/25/2016 02:06:57 PM,12/24/2010 05:17:31 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Gone on Arrival,12/24/2010 05:21:59 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",103580230-KM04 -160642955,78,16025607,Medical Incident,03/04/2016,03/04/2016,03/04/2016 05:47:21 PM,03/04/2016 05:47:21 PM,03/04/2016 05:48:21 PM,03/04/2016 05:50:12 PM,03/04/2016 05:53:25 PM,03/04/2016 06:12:05 PM,03/04/2016 06:27:08 PM,Code 2 Transport,03/04/2016 07:03:33 PM,CAPP ST/16TH ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",160642955-78 -131350323,E03,13045667,Alarms,05/15/2013,05/15/2013,05/15/2013 07:20:02 PM,05/15/2013 07:21:04 PM,05/15/2013 07:21:13 PM,05/15/2013 07:22:14 PM,05/15/2013 07:23:39 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 07:29:55 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",131350323-E03 -112240383,E15,11074156,Medical Incident,08/12/2011,08/12/2011,08/12/2011 10:24:38 PM,08/12/2011 10:26:36 PM,08/12/2011 10:27:10 PM,08/12/2011 10:28:39 PM,08/12/2011 10:30:32 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 10:37:06 PM,ALEMANY BL/HARRINGTON ST,SF,94112,B09,15,8271,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7260584866086, -122.436273176842)",112240383-E15 -110470101,E03,11015472,Alarms,02/16/2011,02/16/2011,02/16/2011 09:15:40 AM,02/16/2011 09:17:28 AM,02/16/2011 09:17:35 AM,02/16/2011 09:20:16 AM,02/16/2011 09:22:48 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 09:35:00 AM,100 Block of LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",110470101-E03 -131990065,54,13067365,Medical Incident,07/18/2013,07/18/2013,07/18/2013 08:07:56 AM,07/18/2013 08:08:21 AM,07/18/2013 08:08:52 AM,07/18/2013 08:10:48 AM,07/18/2013 08:23:51 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,No Merit,07/18/2013 08:30:48 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",131990065-54 -120210222,E34,12007150,Water Rescue,01/21/2012,01/21/2012,01/21/2012 01:25:36 PM,01/21/2012 01:25:36 PM,01/21/2012 01:25:36 PM,01/21/2012 01:26:51 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 01:36:44 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,13,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120210222-E34 -130370293,E05,13012791,Structure Fire,02/06/2013,02/06/2013,02/06/2013 07:04:01 PM,02/06/2013 07:04:01 PM,02/06/2013 07:04:21 PM,02/06/2013 07:04:55 PM,02/06/2013 07:06:00 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 07:06:26 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",130370293-E05 -122750406,E38,12090931,Medical Incident,10/01/2012,10/01/2012,10/01/2012 09:14:52 PM,10/01/2012 09:16:01 PM,10/01/2012 09:21:19 PM,10/01/2012 09:23:22 PM,10/01/2012 09:25:47 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/01/2012 09:38:09 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",122750406-E38 -110540253,KM12,11017872,Medical Incident,02/23/2011,02/23/2011,02/23/2011 03:36:34 PM,02/23/2011 03:37:42 PM,02/23/2011 03:38:25 PM,04/25/2016 02:05:56 PM,02/23/2011 03:43:14 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,Patient Declined Transport,02/23/2011 03:44:48 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,false,,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",110540253-KM12 -132720149,E07,13092419,Medical Incident,09/29/2013,09/29/2013,09/29/2013 10:43:37 AM,09/29/2013 10:44:23 AM,09/29/2013 10:44:41 AM,09/29/2013 10:44:48 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 11:05:35 AM,100 Block of 14TH ST,SF,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7684930896863, -122.417260010771)",132720149-E07 -120280155,AM02,12009384,Medical Incident,01/28/2012,01/28/2012,01/28/2012 12:30:23 PM,01/28/2012 12:30:23 PM,01/28/2012 12:30:23 PM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,01/28/2012 12:38:01 PM,01/28/2012 12:57:34 PM,Code 2 Transport,01/28/2012 01:27:36 PM,MARKET ST/4TH ST,SF,94103,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",120280155-AM02 -111970173,B08,11064997,Structure Fire,07/16/2011,07/16/2011,07/16/2011 12:53:36 PM,07/16/2011 12:55:26 PM,07/16/2011 12:55:44 PM,07/16/2011 12:56:39 PM,07/16/2011 01:01:52 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 01:02:41 PM,500 Block of SHIELDS ST,SF,94132,B09,33,8444,3,3,3,false,,1,CHIEF,3,9,11,Oceanview/Merced/Ingleside,"(37.7179581035039, -122.467587189551)",111970173-B08 -160143571,78,16005749,Medical Incident,01/14/2016,01/14/2016,01/14/2016 09:12:06 PM,01/14/2016 09:14:38 PM,01/14/2016 09:25:06 PM,01/14/2016 09:25:06 PM,01/14/2016 09:40:16 PM,01/14/2016 09:58:24 PM,01/14/2016 10:05:48 PM,Code 2 Transport,01/14/2016 10:49:44 PM,23RD AV/IRVING ST,San Francisco,94122,B08,22,7451,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7633730938478, -122.481408835625)",160143571-78 -123580125,55,12119806,Medical Incident,12/23/2012,12/23/2012,12/23/2012 12:07:20 PM,12/23/2012 12:08:08 PM,12/23/2012 12:08:21 PM,12/23/2012 12:08:36 PM,12/23/2012 12:12:57 PM,12/23/2012 12:36:44 PM,12/23/2012 01:17:24 PM,Code 2 Transport,12/23/2012 01:51:21 PM,2100 Block of 46TH AVE,SF,94116,B08,23,7714,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7464385384362, -122.504881060231)",123580125-55 -120670207,E17,12022222,Gas Leak (Natural and LP Gases),03/07/2012,03/07/2012,03/07/2012 12:32:34 PM,03/07/2012 12:34:00 PM,03/07/2012 12:34:10 PM,03/07/2012 12:36:03 PM,03/07/2012 12:38:20 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Fire,03/07/2012 12:52:31 PM,0 Block of CERES ST,SF,94124,B10,17,6513,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7302170309802, -122.394251598498)",120670207-E17 -160612118,KM09,16024356,Medical Incident,03/01/2016,03/01/2016,03/01/2016 03:26:45 PM,03/01/2016 03:27:37 PM,03/01/2016 03:27:57 PM,03/01/2016 03:31:03 PM,03/01/2016 03:35:27 PM,03/01/2016 03:46:08 PM,03/01/2016 04:01:03 PM,Code 2 Transport,03/01/2016 04:39:58 PM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7826425026927, -122.407832679288)",160612118-KM09 -160663234,68,16026541,Medical Incident,03/06/2016,03/06/2016,03/06/2016 10:50:14 PM,03/06/2016 10:50:14 PM,03/06/2016 10:50:37 PM,03/06/2016 10:50:49 PM,03/06/2016 10:59:17 PM,03/06/2016 11:27:38 PM,03/06/2016 11:43:07 PM,Code 2 Transport,03/07/2016 12:18:23 AM,STOCKTON ST/CALIFORNIA ST,San Francisco,94108,B01,2,1325,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7922511619052, -122.407518951828)",160663234-68 -121320162,T01,12043893,Structure Fire,05/11/2012,05/11/2012,05/11/2012 11:38:48 AM,05/11/2012 11:38:49 AM,05/11/2012 11:39:51 AM,05/11/2012 11:39:58 AM,05/11/2012 11:40:29 AM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 11:40:42 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",121320162-T01 -160544102,53,16021808,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:45:27 PM,02/23/2016 10:45:27 PM,02/23/2016 10:45:44 PM,02/23/2016 10:45:54 PM,02/23/2016 11:06:54 PM,02/23/2016 11:07:07 PM,02/23/2016 11:17:14 PM,Code 2 Transport,02/24/2016 01:00:27 AM,BEAVER ST/NOE ST,San Francisco,94114,B05,6,5212,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7650606520299, -122.433178636444)",160544102-53 -103650332,KM15,10117226,Medical Incident,12/31/2010,12/31/2010,12/31/2010 09:30:30 PM,12/31/2010 09:31:12 PM,12/31/2010 09:31:31 PM,12/31/2010 09:32:53 PM,12/31/2010 09:42:37 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Patient Declined Transport,12/31/2010 09:51:14 PM,400 Block of 15TH AVE,SF,94118,B07,31,7154,3,2,2,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",103650332-KM15 -113330075,E13,11110238,Medical Incident,11/29/2011,11/29/2011,11/29/2011 08:26:11 AM,11/29/2011 08:27:01 AM,11/29/2011 08:27:49 AM,11/29/2011 08:28:50 AM,11/29/2011 08:29:52 AM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 08:33:54 AM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",113330075-E13 -123390136,KM09,12113021,Medical Incident,12/04/2012,12/04/2012,12/04/2012 10:37:08 AM,12/04/2012 10:37:08 AM,12/04/2012 10:37:35 AM,12/04/2012 10:38:42 AM,12/04/2012 10:41:07 AM,12/04/2012 10:57:21 AM,12/04/2012 11:12:19 AM,Code 2 Transport,12/04/2012 11:39:02 AM,400 Block of TURK ST,SF,94102,B02,3,1554,E,E,3,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",123390136-KM09 -113330294,82,11110403,Medical Incident,11/29/2011,11/29/2011,11/29/2011 07:13:02 PM,11/29/2011 07:14:32 PM,11/29/2011 07:15:30 PM,11/29/2011 07:15:39 PM,11/29/2011 07:20:58 PM,11/29/2011 07:36:40 PM,11/29/2011 07:43:55 PM,Code 2 Transport,11/29/2011 08:20:00 PM,400 Block of BRANNAN ST,SF,94107,B03,8,2173,1,1,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7799151588929, -122.394619010251)",113330294-82 -160183579,62,16007428,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:32:05 PM,01/18/2016 11:32:52 PM,01/18/2016 11:33:02 PM,01/18/2016 11:33:07 PM,01/18/2016 11:37:15 PM,01/18/2016 11:53:38 PM,01/19/2016 12:03:58 AM,Code 2 Transport,01/19/2016 12:53:46 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160183579-62 -160733223,60,16029147,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:45:08 PM,03/13/2016 11:46:48 PM,03/13/2016 11:57:02 PM,03/13/2016 11:57:21 PM,03/14/2016 12:14:53 AM,03/14/2016 12:45:58 AM,03/14/2016 01:03:48 AM,Code 2 Transport,03/14/2016 01:33:27 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160733223-60 -160871789,50,16034577,Medical Incident,03/27/2016,03/27/2016,03/27/2016 01:08:17 PM,03/27/2016 01:08:43 PM,03/27/2016 01:09:53 PM,03/27/2016 01:10:25 PM,03/27/2016 01:19:37 PM,03/27/2016 01:37:52 PM,03/27/2016 02:00:58 PM,Code 2 Transport,03/27/2016 02:34:12 PM,200 Block of COLUMBUS AVE,San Francisco,94133,B01,13,1246,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.7973530798881, -122.405824166189)",160871789-50 -160192719,62,16007730,Medical Incident,01/19/2016,01/19/2016,01/19/2016 05:14:31 PM,01/19/2016 05:15:02 PM,01/19/2016 05:15:27 PM,01/19/2016 05:15:35 PM,01/19/2016 05:19:05 PM,01/19/2016 05:43:28 PM,01/19/2016 05:55:13 PM,Code 2 Transport,01/19/2016 06:43:42 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",160192719-62 -160823179,KM12,16032697,Medical Incident,03/22/2016,03/22/2016,03/22/2016 06:25:22 PM,03/22/2016 06:26:47 PM,03/22/2016 06:27:18 PM,03/22/2016 06:28:02 PM,03/22/2016 06:34:45 PM,03/22/2016 07:02:37 PM,03/22/2016 07:14:41 PM,Code 2 Transport,03/22/2016 07:50:54 PM,1600 Block of 27TH AVE,San Francisco,94122,B08,18,7474,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.756662640048, -122.485172373799)",160823179-KM12 -110940141,92,11031164,Medical Incident,04/04/2011,04/04/2011,04/04/2011 11:10:32 AM,04/04/2011 11:12:16 AM,04/04/2011 11:12:37 AM,04/04/2011 11:12:52 AM,04/04/2011 11:20:49 AM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Unable to Locate,04/04/2011 11:20:52 AM,EDDY ST/PIERCE ST,SF,94115,B05,5,3624,2,2,2,true,,1,MEDIC,2,5,5,Western Addition,"(37.7810093448177, -122.435616262656)",110940141-92 -111350366,70,11045073,Medical Incident,05/15/2011,05/15/2011,05/15/2011 07:27:31 PM,05/15/2011 07:29:46 PM,05/15/2011 07:30:09 PM,05/15/2011 07:30:19 PM,05/15/2011 07:42:14 PM,05/15/2011 08:07:55 PM,05/15/2011 08:12:04 PM,Code 2 Transport,05/15/2011 08:36:53 PM,2700 Block of 24TH ST,SF,94110,B06,9,5531,1,1,2,true,,1,MEDIC,1,6,9,Mission,"(37.7529342790976, -122.407745321325)",111350366-70 -160670879,59,16026669,Medical Incident,03/07/2016,03/07/2016,03/07/2016 09:59:37 AM,03/07/2016 09:59:37 AM,03/07/2016 10:00:04 AM,03/07/2016 10:00:17 AM,03/07/2016 10:13:05 AM,03/07/2016 10:29:29 AM,03/07/2016 10:29:29 AM,Code 2 Transport,03/07/2016 11:21:25 AM,GRANT AV/SUTTER ST,San Francisco,94108,B01,1,1316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",160670879-59 -120560041,96,12018381,Medical Incident,02/25/2012,02/24/2012,02/25/2012 03:59:31 AM,02/25/2012 04:05:14 AM,02/25/2012 04:05:40 AM,02/25/2012 04:06:18 AM,02/25/2012 04:10:29 AM,02/25/2012 04:31:30 AM,02/25/2012 04:55:19 AM,Code 2 Transport,02/25/2012 05:15:03 AM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",120560041-96 -110880257,T06,11029107,Structure Fire,03/29/2011,03/29/2011,03/29/2011 03:52:42 PM,03/29/2011 03:54:25 PM,03/29/2011 03:55:04 PM,03/29/2011 03:56:45 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 04:23:09 PM,300 Block of HAIGHT ST,SF,94102,B02,6,3524,3,3,3,false,,1,TRUCK,9,2,5,Hayes Valley,"(37.7724746185561, -122.427991225235)",110880257-T06 -160761773,61,16030142,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:41:28 PM,03/16/2016 12:42:03 PM,03/16/2016 12:42:46 PM,03/16/2016 12:43:20 PM,03/16/2016 12:54:06 PM,03/16/2016 01:17:02 PM,03/16/2016 01:31:12 PM,Code 2 Transport,03/16/2016 02:19:21 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160761773-61 -160493941,KM03,16019914,Medical Incident,02/18/2016,02/18/2016,02/18/2016 11:04:52 PM,02/18/2016 11:04:52 PM,02/18/2016 11:05:23 PM,02/18/2016 11:05:52 PM,02/18/2016 11:16:57 PM,02/18/2016 11:30:12 PM,02/18/2016 11:43:02 PM,Code 2 Transport,02/19/2016 12:30:42 AM,7TH ST/HOOPER ST,San Francisco,94158,B03,29,2272,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7690413801142, -122.398179220088)",160493941-KM03 -122800222,E17,12092623,Medical Incident,10/06/2012,10/06/2012,10/06/2012 02:15:31 PM,10/06/2012 02:16:08 PM,10/06/2012 02:16:25 PM,10/06/2012 02:16:48 PM,10/06/2012 02:18:56 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/06/2012 02:35:01 PM,5500 Block of 3RD ST,SF,94124,B10,17,6537,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7273180308836, -122.393270734468)",122800222-E17 -111810293,T05,11059818,Alarms,06/30/2011,06/30/2011,06/30/2011 05:46:56 PM,06/30/2011 05:48:16 PM,06/30/2011 05:48:30 PM,06/30/2011 05:49:45 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 05:54:35 PM,2100 Block of BUSH ST,SF,94115,B04,38,3512,3,3,3,false,,1,TRUCK,3,4,5,Pacific Heights,"(37.7870349820474, -122.432911990737)",111810293-T05 -160073287,AM10,16002979,Medical Incident,01/07/2016,01/07/2016,01/07/2016 07:28:34 PM,01/07/2016 07:32:21 PM,01/07/2016 07:32:53 PM,01/07/2016 07:33:15 PM,01/07/2016 07:38:29 PM,01/07/2016 07:50:24 PM,01/07/2016 08:04:11 PM,Code 2 Transport,01/07/2016 08:26:15 PM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",160073287-AM10 -111530131,E01,11050547,Medical Incident,06/02/2011,06/02/2011,06/02/2011 11:33:17 AM,06/02/2011 11:34:01 AM,06/02/2011 11:34:49 AM,06/02/2011 11:35:37 AM,06/02/2011 11:37:51 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/02/2011 11:41:28 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",111530131-E01 -122440337,B01,12080807,Structure Fire,08/31/2012,08/31/2012,08/31/2012 09:34:46 PM,08/31/2012 09:34:46 PM,08/31/2012 09:35:30 PM,08/31/2012 09:36:58 PM,08/31/2012 09:40:21 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,08/31/2012 09:44:43 PM,600 Block of MARKET ST,SF,94105,B03,1,2158,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",122440337-B01 -112390307,T19,11078979,Structure Fire,08/27/2011,08/27/2011,08/27/2011 07:45:36 PM,08/27/2011 07:45:36 PM,08/27/2011 07:46:11 PM,08/27/2011 07:47:25 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 08:02:01 PM,EUCALYPTUS DR/SYLVAN DR,SF,94132,B08,19,8743,3,3,3,false,,1,TRUCK,3,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",112390307-T19 -133360162,T10,13113869,Other,12/02/2013,12/02/2013,12/02/2013 11:57:01 AM,12/02/2013 11:57:26 AM,12/02/2013 11:57:33 AM,12/02/2013 11:58:01 AM,12/02/2013 12:04:17 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/02/2013 12:36:57 PM,2900 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,false,Alarm,1,TRUCK,1,4,2,Pacific Heights,"(37.7878056330668, -122.442942313047)",133360162-T10 -121500178,AM16,12049741,Medical Incident,05/29/2012,05/29/2012,05/29/2012 01:29:36 PM,05/29/2012 01:30:13 PM,05/29/2012 01:30:29 PM,05/29/2012 01:31:17 PM,05/29/2012 01:37:27 PM,05/29/2012 01:43:41 PM,05/29/2012 02:09:07 PM,Code 2 Transport,05/29/2012 02:50:49 PM,400 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,954,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7717396202959, -122.386663865791)",121500178-AM16 -132120219,B03,13071689,Alarms,07/31/2013,07/31/2013,07/31/2013 03:03:03 PM,07/31/2013 03:03:59 PM,07/31/2013 03:04:05 PM,07/31/2013 03:04:35 PM,07/31/2013 03:07:26 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,07/31/2013 03:18:41 PM,100 Block of SPEAR ST,SF,94105,B03,35,2114,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7919628053601, -122.393243014407)",132120219-B03 -120210174,T08,12007103,Citizen Assist / Service Call,01/21/2012,01/21/2012,01/21/2012 11:01:56 AM,01/21/2012 11:05:17 AM,01/21/2012 11:05:52 AM,01/21/2012 11:06:27 AM,01/21/2012 11:12:17 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 12:28:31 PM,BRYANT ST/10TH ST,SF,94103,B02,29,2345,3,3,3,false,Alarm,1,TRUCK,1,2,6,Mission,"(37.7703485160634, -122.409735890482)",120210174-T08 -112620353,T05,11086596,Alarms,09/19/2011,09/19/2011,09/19/2011 06:48:26 PM,09/19/2011 06:49:19 PM,09/19/2011 06:49:33 PM,09/19/2011 06:50:33 PM,09/19/2011 06:53:03 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 07:02:06 PM,1000 Block of TURK ST,SF,94102,B02,5,3426,3,3,3,false,,1,TRUCK,2,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",112620353-T05 -131920356,RC3,13065492,Medical Incident,07/11/2013,07/11/2013,07/11/2013 10:43:26 PM,07/11/2013 10:43:42 PM,07/11/2013 10:56:09 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/11/2013 10:56:38 PM,500 Block of CASTRO ST,SF,94114,B06,6,5437,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,6,8,Castro/Upper Market,"(37.7600850560594, -122.434996193094)",131920356-RC3 -131290361,E41,13043753,Structure Fire,05/09/2013,05/09/2013,05/09/2013 10:40:26 PM,05/09/2013 10:40:27 PM,05/09/2013 10:40:32 PM,05/09/2013 10:42:06 PM,05/09/2013 10:42:53 PM,04/25/2016 01:52:52 PM,04/25/2016 01:52:52 PM,Other,05/09/2013 10:43:45 PM,LEAVENWORTH ST/BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7893198481175, -122.41537192252)",131290361-E41 -123570036,93,12119380,Traffic Collision,12/22/2012,12/21/2012,12/22/2012 02:24:13 AM,12/22/2012 02:24:40 AM,12/22/2012 02:30:57 AM,12/22/2012 02:31:28 AM,12/22/2012 02:42:46 AM,12/22/2012 03:06:10 AM,12/22/2012 03:10:36 AM,Code 2 Transport,12/22/2012 03:46:35 AM,SOUTH VAN NESS AV/16TH ST,SF,94110,B02,7,5225,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7651831353816, -122.417486597301)",123570036-93 -61980418,B03,6055612,Alarms,07/17/2006,07/17/2006,07/17/2006 09:58:00 PM,07/17/2006 09:59:44 PM,07/17/2006 10:00:29 PM,07/17/2006 10:01:26 PM,04/25/2016 03:43:41 PM,04/25/2016 03:43:41 PM,07/17/2006 10:05:17 PM,Fire,07/17/2006 10:09:44 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,CHIEF,3,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",061980418-B03 -103010174,67,10096095,Structure Fire,10/28/2010,10/28/2010,10/28/2010 11:11:52 AM,10/28/2010 11:12:18 AM,10/28/2010 11:12:32 AM,10/28/2010 11:12:45 AM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Other,10/28/2010 11:18:12 AM,500 Block of TAYLOR ST,SF,94102,B01,3,1451,3,3,3,true,,1,MEDIC,9,1,3,Tenderloin,"(37.7874020700273, -122.411538882795)",103010174-67 -122140350,87,12071159,Structure Fire,08/01/2012,08/01/2012,08/01/2012 08:47:36 PM,08/01/2012 08:48:20 PM,08/01/2012 08:48:47 PM,08/01/2012 08:48:56 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/01/2012 08:54:49 PM,400 Block of ATHENS ST,SF,94112,B09,43,6156,3,3,3,true,Fire,1,MEDIC,8,9,11,Excelsior,"(37.7208342283008, -122.428956362457)",122140350-87 -131890163,B03,13064406,Structure Fire,07/08/2013,07/08/2013,07/08/2013 12:26:37 PM,07/08/2013 12:27:20 PM,07/08/2013 12:28:11 PM,07/08/2013 12:28:56 PM,07/08/2013 12:33:11 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/08/2013 12:51:51 PM,0 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,false,Fire,1,CHIEF,4,2,6,Mission,"(37.7696282820303, -122.415196230714)",131890163-B03 -123450334,E22,12115448,Medical Incident,12/10/2012,12/10/2012,12/10/2012 05:30:56 PM,12/10/2012 05:31:47 PM,12/10/2012 05:32:37 PM,12/10/2012 05:34:15 PM,12/10/2012 05:37:54 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 05:38:11 PM,1500 Block of 20TH AVE,SF,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7588490098905, -122.47794097509)",123450334-E22 -160702089,64,16027894,Medical Incident,03/10/2016,03/10/2016,03/10/2016 02:43:08 PM,03/10/2016 02:46:29 PM,03/10/2016 02:47:18 PM,03/10/2016 02:47:37 PM,03/10/2016 02:59:06 PM,03/10/2016 03:19:31 PM,03/10/2016 03:24:17 PM,Code 2 Transport,03/10/2016 04:11:57 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160702089-64 -110290073,RC3,11009454,Medical Incident,01/29/2011,01/28/2011,01/29/2011 04:31:38 AM,01/29/2011 04:32:20 AM,01/29/2011 04:32:46 AM,01/29/2011 04:34:45 AM,01/29/2011 04:40:32 AM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Medical Examiner,01/29/2011 05:40:14 AM,5700 Block of MISSION ST,SF,94112,B09,33,6212,E,E,3,true,,1,RESCUE CAPTAIN,2,9,11,Excelsior,"(37.709762526111, -122.449674980499)",110290073-RC3 -120370051,E23,12012245,Medical Incident,02/06/2012,02/05/2012,02/06/2012 04:31:38 AM,02/06/2012 04:33:30 AM,02/06/2012 04:33:42 AM,02/06/2012 04:35:19 AM,02/06/2012 04:38:15 AM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/06/2012 04:50:08 AM,2000 Block of 48TH AVE,SF,94116,B08,23,7726,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7482090997643, -122.507153975636)",120370051-E23 -112480267,KM12,11081867,Medical Incident,09/05/2011,09/05/2011,09/05/2011 05:31:11 PM,09/05/2011 05:32:14 PM,09/05/2011 05:33:00 PM,09/05/2011 05:35:44 PM,09/05/2011 05:48:01 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 05:49:05 PM,0 Block of NAVY RD,SF,94124,B10,17,6646,3,2,2,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7294990859712, -122.379424889828)",112480267-KM12 -131310337,T01,13044361,Alarms,05/11/2013,05/11/2013,05/11/2013 07:23:15 PM,05/11/2013 07:23:58 PM,05/11/2013 07:24:05 PM,05/11/2013 07:25:18 PM,05/11/2013 07:28:21 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 07:30:25 PM,500 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7887066123323, -122.399010207568)",131310337-T01 -112990336,D2,11099310,Structure Fire,10/26/2011,10/26/2011,10/26/2011 08:41:36 PM,10/26/2011 08:42:21 PM,10/26/2011 08:42:59 PM,10/26/2011 08:50:28 PM,10/26/2011 08:50:29 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/26/2011 09:01:11 PM,500 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,false,,1,CHIEF,7,7,1,Outer Richmond,"(37.7788847355525, -122.48995472763)",112990336-D2 -140060094,E01,14002059,Medical Incident,01/06/2014,01/06/2014,01/06/2014 08:19:39 AM,01/06/2014 08:20:25 AM,01/06/2014 08:21:03 AM,01/06/2014 08:22:53 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 08:27:24 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",140060094-E01 -120480037,E07,12015800,Medical Incident,02/17/2012,02/16/2012,02/17/2012 03:24:54 AM,02/17/2012 03:26:08 AM,02/17/2012 03:26:15 AM,02/17/2012 03:28:41 AM,02/17/2012 03:30:22 AM,04/25/2016 02:00:06 PM,04/25/2016 02:00:06 PM,Other,02/17/2012 03:35:31 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",120480037-E07 -111280172,67,11042343,Medical Incident,05/08/2011,05/08/2011,05/08/2011 01:26:00 PM,05/08/2011 01:26:26 PM,05/08/2011 01:27:21 PM,05/08/2011 01:27:51 PM,05/08/2011 01:29:41 PM,05/08/2011 01:41:01 PM,05/08/2011 01:44:49 PM,Code 2 Transport,05/08/2011 02:08:37 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7829058754034, -122.40679650522)",111280172-67 -120780183,B01,12025870,Alarms,03/18/2012,03/18/2012,03/18/2012 10:59:13 AM,03/18/2012 11:00:06 AM,03/18/2012 11:00:14 AM,03/18/2012 11:01:40 AM,03/18/2012 11:06:14 AM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Fire,03/18/2012 11:07:04 AM,2100 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8004518556001, -122.438685860986)",120780183-B01 -122150237,RC2,12071402,Structure Fire,08/02/2012,08/02/2012,08/02/2012 04:13:18 PM,08/02/2012 04:14:13 PM,08/02/2012 04:14:48 PM,08/02/2012 04:32:48 PM,08/02/2012 04:34:35 PM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Other,08/02/2012 04:37:06 PM,400 Block of 15TH AVE,SF,94118,B07,31,7154,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",122150237-RC2 -103220315,73,10103324,Medical Incident,11/18/2010,11/18/2010,11/18/2010 10:01:40 PM,11/18/2010 10:02:16 PM,11/18/2010 10:03:14 PM,11/18/2010 10:03:28 PM,11/18/2010 10:05:54 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Patient Declined Transport,11/18/2010 10:34:14 PM,VAN NESS AV/BROADWAY,SF,94109,B04,41,3152,3,3,3,true,,1,MEDIC,1,4,2,Russian Hill,"(37.7957371093016, -122.423413055255)",103220315-73 -160502960,KM05,16020201,Medical Incident,02/19/2016,02/19/2016,02/19/2016 06:16:03 PM,02/19/2016 06:17:03 PM,02/19/2016 06:17:34 PM,02/19/2016 06:18:10 PM,02/19/2016 06:22:46 PM,02/19/2016 06:39:00 PM,02/19/2016 06:48:08 PM,Code 2 Transport,02/19/2016 07:33:18 PM,5200 Block of GEARY BLVD,San Francisco,94118,B07,31,7161,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7803793292954, -122.475616326182)",160502960-KM05 -160531757,AM12,16021212,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:39:11 PM,02/22/2016 01:39:11 PM,02/22/2016 01:41:03 PM,02/22/2016 01:41:03 PM,02/22/2016 01:46:09 PM,02/22/2016 02:20:31 PM,02/22/2016 02:45:32 PM,Code 2 Transport,02/22/2016 03:32:49 PM,DUBOCE AV/MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",160531757-AM12 -132500245,B06,13084445,Structure Fire,09/07/2013,09/07/2013,09/07/2013 02:08:29 PM,09/07/2013 02:10:19 PM,09/07/2013 02:10:48 PM,09/07/2013 02:11:40 PM,09/07/2013 02:15:13 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/07/2013 02:17:33 PM,PANORAMA DR/STARVIEW WY,SF,94131,B08,20,5351,3,3,3,false,Alarm,1,CHIEF,3,8,7,Twin Peaks,"(37.7493507775156, -122.452122625081)",132500245-B06 -160402828,62,16016141,Medical Incident,02/09/2016,02/09/2016,02/09/2016 05:16:04 PM,02/09/2016 05:17:08 PM,02/09/2016 05:17:29 PM,02/09/2016 05:18:11 PM,02/09/2016 05:20:43 PM,02/09/2016 05:41:37 PM,02/09/2016 06:02:24 PM,Code 2 Transport,02/09/2016 06:33:39 PM,CALL BOX:,San Francisco,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774313652297, -122.416313424899)",160402828-62 -113200358,RC1,11106425,Structure Fire,11/16/2011,11/16/2011,11/16/2011 08:13:29 PM,11/16/2011 08:14:00 PM,11/16/2011 08:14:29 PM,11/16/2011 08:20:41 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/16/2011 08:22:06 PM,1400 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,true,,1,RESCUE CAPTAIN,12,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",113200358-RC1 -131170075,E03,13039270,Medical Incident,04/27/2013,04/27/2013,04/27/2013 08:12:13 AM,04/27/2013 08:12:44 AM,04/27/2013 08:13:29 AM,04/27/2013 08:15:48 AM,04/27/2013 08:16:52 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,No Merit,04/27/2013 08:22:09 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131170075-E03 -113180295,KM14,11105739,Medical Incident,11/14/2011,11/14/2011,11/14/2011 07:24:48 PM,11/14/2011 07:25:15 PM,11/14/2011 07:25:48 PM,11/14/2011 07:26:28 PM,11/14/2011 07:31:17 PM,11/14/2011 07:53:11 PM,11/14/2011 08:17:24 PM,Code 2 Transport,11/14/2011 08:20:08 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,false,,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",113180295-KM14 -160021971,82,16000770,Medical Incident,01/02/2016,01/02/2016,01/02/2016 02:58:52 PM,01/02/2016 03:04:16 PM,01/02/2016 03:04:45 PM,01/02/2016 03:06:00 PM,01/02/2016 03:10:36 PM,01/02/2016 03:19:13 PM,01/02/2016 03:33:53 PM,Code 2 Transport,01/02/2016 04:03:05 PM,900 Block of INNES AVE,San Francisco,94124,B10,25,6632,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7322910475588, -122.376157905497)",160021971-82 -102970099,T17,10094682,Structure Fire,10/24/2010,10/23/2010,10/24/2010 05:28:36 AM,10/24/2010 05:28:36 AM,10/24/2010 05:29:03 AM,10/24/2010 05:29:17 AM,10/24/2010 05:37:25 AM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 05:40:01 AM,0 Block of DELTA ST,SF,94134,B10,44,631,3,3,3,false,,1,TRUCK,2,9,10,McLaren Park,"(37.7188676788814, -122.406889004331)",102970099-T17 -131320211,T09,13044611,Structure Fire,05/12/2013,05/12/2013,05/12/2013 04:43:56 PM,05/12/2013 04:44:57 PM,05/12/2013 04:49:02 PM,05/12/2013 04:50:25 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 04:52:34 PM,600 Block of MINNESOTA ST,SF,94107,B03,29,2465,3,3,3,false,Alarm,1,TRUCK,10,10,10,Potrero Hill,"(37.7622933026628, -122.390566952855)",131320211-T09 -112420231,E26,11079858,Medical Incident,08/30/2011,08/30/2011,08/30/2011 04:00:58 PM,08/30/2011 04:04:04 PM,08/30/2011 04:04:23 PM,08/30/2011 04:08:34 PM,08/30/2011 04:13:05 PM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Other,08/30/2011 04:27:50 PM,0 Block of ROTTECK ST,SF,94112,B09,32,8136,2,3,3,true,,1,ENGINE,1,9,8,Outer Mission,"(37.731544719756, -122.43064603478)",112420231-E26 -111770384,75,11058541,Medical Incident,06/26/2011,06/26/2011,06/26/2011 07:58:25 PM,06/26/2011 07:59:25 PM,06/26/2011 08:00:10 PM,06/26/2011 08:02:44 PM,06/26/2011 08:06:10 PM,06/26/2011 08:19:43 PM,06/26/2011 08:34:59 PM,Code 2 Transport,06/26/2011 08:55:41 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",111770384-75 -160860740,KM08,16034094,Medical Incident,03/26/2016,03/25/2016,03/26/2016 07:39:23 AM,03/26/2016 07:40:53 AM,03/26/2016 07:41:20 AM,03/26/2016 07:41:38 AM,03/26/2016 07:50:27 AM,03/26/2016 08:09:38 AM,03/26/2016 08:30:39 AM,Code 2 Transport,03/26/2016 09:04:20 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160860740-KM08 -121210227,E29,12040224,Structure Fire,04/30/2012,04/30/2012,04/30/2012 03:40:15 PM,04/30/2012 03:40:15 PM,04/30/2012 03:40:27 PM,04/30/2012 03:42:38 PM,04/30/2012 03:45:29 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 03:46:10 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Alarm,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",121210227-E29 -130820141,D2,13027413,Structure Fire,03/23/2013,03/23/2013,03/23/2013 11:14:20 AM,03/23/2013 11:16:01 AM,03/23/2013 11:16:26 AM,03/23/2013 11:16:34 AM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Other,03/23/2013 11:21:02 AM,1300 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,false,Alarm,1,CHIEF,5,1,3,Nob Hill,"(37.7956209485751, -122.411654341848)",130820141-D2 -140280149,RC3,14009501,Medical Incident,01/28/2014,01/28/2014,01/28/2014 11:10:38 AM,01/28/2014 11:11:56 AM,01/28/2014 11:14:08 AM,01/28/2014 11:15:18 AM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/28/2014 11:21:22 AM,LOWELL ST/MISSION ST,SF,94112,B09,33,6211,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7114361500207, -122.446383346595)",140280149-RC3 -121800021,AM10,12059786,Medical Incident,06/28/2012,06/27/2012,06/28/2012 01:23:43 AM,06/28/2012 01:24:36 AM,06/28/2012 01:25:27 AM,06/28/2012 01:26:19 AM,06/28/2012 01:27:46 AM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/28/2012 01:57:47 AM,MARKET ST/7TH ST,SF,94103,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",121800021-AM10 -111120158,E15,11036977,Medical Incident,04/22/2011,04/22/2011,04/22/2011 11:08:25 AM,04/22/2011 11:09:37 AM,04/22/2011 11:10:00 AM,04/25/2016 02:04:59 PM,04/22/2011 11:10:49 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 11:14:18 AM,OCEAN AV/PHELAN AV,SF,94112,B09,15,8224,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7230802451635, -122.452331558779)",111120158-E15 -140700227,KM06,14023646,Traffic Collision,03/11/2014,03/11/2014,03/11/2014 02:53:43 PM,03/11/2014 02:56:38 PM,03/11/2014 02:57:20 PM,03/11/2014 02:58:16 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Other,03/11/2014 03:09:47 PM,100 Block of MISSION ST,SAN FRANCISCO,94105,B10,9,2626,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7921507122354, -122.394451120982)",140700227-KM06 -120320312,87,12010691,Medical Incident,02/01/2012,02/01/2012,02/01/2012 08:00:09 PM,02/01/2012 08:02:34 PM,02/01/2012 08:03:29 PM,02/01/2012 08:03:50 PM,02/01/2012 08:17:00 PM,02/01/2012 08:34:03 PM,02/01/2012 09:01:42 PM,Code 2 Transport,02/01/2012 09:24:58 PM,3300 Block of MISSION ST,SF,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",120320312-87 -120550029,KM07,12018035,Medical Incident,02/24/2012,02/23/2012,02/24/2012 03:45:07 AM,02/24/2012 03:45:19 AM,02/24/2012 03:47:15 AM,02/24/2012 03:48:15 AM,02/24/2012 03:50:47 AM,02/24/2012 03:59:03 AM,02/24/2012 04:07:43 AM,Code 2 Transport,02/24/2012 04:49:09 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",120550029-KM07 -140240350,66,14008314,Medical Incident,01/24/2014,01/24/2014,01/24/2014 06:23:07 PM,01/24/2014 06:24:21 PM,01/24/2014 06:24:28 PM,01/24/2014 06:24:43 PM,01/24/2014 06:32:00 PM,01/24/2014 06:53:07 PM,01/24/2014 07:27:04 PM,Code 2 Transport,01/24/2014 08:01:41 PM,1200 Block of QUESADA AVE,SF,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.728626266314, -122.383019514156)",140240350-66 -112270230,E05,11075060,Medical Incident,08/15/2011,08/15/2011,08/15/2011 01:55:13 PM,08/15/2011 01:55:31 PM,08/15/2011 01:56:18 PM,08/15/2011 01:58:45 PM,08/15/2011 02:00:41 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 02:14:37 PM,500 Block of BAKER ST,SF,94117,B05,21,4243,3,3,3,true,,1,ENGINE,2,5,5,Hayes Valley,"(37.775978571838, -122.441325869621)",112270230-E05 -140200348,92,14007005,Medical Incident,01/20/2014,01/20/2014,01/20/2014 09:24:18 PM,01/20/2014 09:25:25 PM,01/20/2014 09:25:55 PM,01/20/2014 09:26:23 PM,01/20/2014 09:29:40 PM,01/20/2014 09:54:35 PM,01/20/2014 10:07:16 PM,Code 2 Transport,01/20/2014 10:42:03 PM,BAYSHORE BL/BLANKEN AV,SF,94134,B10,44,6271,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7122508633321, -122.401914747165)",140200348-92 -140840198,E03,14028323,Medical Incident,03/25/2014,03/25/2014,03/25/2014 02:04:19 PM,03/25/2014 02:06:51 PM,03/25/2014 02:10:09 PM,03/25/2014 02:12:11 PM,03/25/2014 02:17:26 PM,04/25/2016 01:47:34 PM,04/25/2016 01:47:34 PM,Code 2 Transport,03/25/2014 02:35:10 PM,LARKIN ST/MCALLISTER ST,SAN FRANCISCO,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7804703413414, -122.416947606226)",140840198-E03 -110220355,E32,11007419,Medical Incident,01/22/2011,01/22/2011,01/22/2011 11:45:01 PM,01/22/2011 11:46:28 PM,01/22/2011 11:47:05 PM,01/22/2011 11:48:32 PM,01/22/2011 11:52:55 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/23/2011 12:06:55 AM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",110220355-E32 -113210174,E01,11106618,Medical Incident,11/17/2011,11/17/2011,11/17/2011 11:51:51 AM,11/17/2011 11:52:18 AM,11/17/2011 11:52:32 AM,04/25/2016 02:01:36 PM,11/17/2011 11:56:25 AM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/17/2011 12:16:59 PM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",113210174-E01 -120410316,57,12013776,Medical Incident,02/10/2012,02/10/2012,02/10/2012 06:43:00 PM,02/10/2012 06:44:03 PM,02/10/2012 06:44:14 PM,02/10/2012 06:45:09 PM,02/10/2012 06:48:10 PM,02/10/2012 07:15:54 PM,02/10/2012 07:27:02 PM,Code 2 Transport,02/10/2012 07:56:03 PM,GEARY ST/LARKIN ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",120410316-57 -122910091,AM04,12096271,Medical Incident,10/17/2012,10/17/2012,10/17/2012 09:00:43 AM,10/17/2012 09:02:00 AM,10/17/2012 09:02:14 AM,10/17/2012 09:02:54 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 09:08:10 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",122910091-AM04 -102900221,B10,10092541,Structure Fire,10/17/2010,10/17/2010,10/17/2010 03:47:30 PM,10/17/2010 03:48:07 PM,10/17/2010 03:48:26 PM,10/17/2010 03:49:41 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/17/2010 03:54:56 PM,100 Block of AMES ST,SF,94110,B06,11,5471,3,3,3,false,,1,CHIEF,10,6,8,Mission,"(37.7543400236443, -122.423609999458)",102900221-B10 -102530189,E03,10079933,Medical Incident,09/10/2010,09/10/2010,09/10/2010 12:25:00 PM,09/10/2010 12:26:24 PM,09/10/2010 12:26:45 PM,09/10/2010 12:27:46 PM,09/10/2010 12:29:18 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 12:31:43 PM,OFARRELL ST/VAN NESS AV,SF,94109,B04,3,3162,3,2,2,true,,1,ENGINE,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",102530189-E03 -110100292,78,11003400,Medical Incident,01/10/2011,01/10/2011,01/10/2011 04:20:27 PM,01/10/2011 04:23:16 PM,01/10/2011 04:26:02 PM,01/10/2011 04:27:08 PM,01/10/2011 04:29:54 PM,01/10/2011 04:51:27 PM,01/10/2011 05:18:06 PM,Code 2 Transport,01/10/2011 05:46:11 PM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,1,1,2,true,,1,MEDIC,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",110100292-78 -160852089,62,16033808,Medical Incident,03/25/2016,03/25/2016,03/25/2016 02:10:45 PM,03/25/2016 02:11:31 PM,03/25/2016 02:11:54 PM,03/25/2016 02:12:05 PM,03/25/2016 02:15:21 PM,03/25/2016 02:24:27 PM,03/25/2016 02:36:57 PM,Code 2 Transport,03/25/2016 02:59:54 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160852089-62 -123410336,T06,12113903,Structure Fire,12/06/2012,12/06/2012,12/06/2012 06:50:10 PM,12/06/2012 06:50:10 PM,12/06/2012 06:50:42 PM,12/06/2012 06:51:44 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/06/2012 06:52:37 PM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,3,3,3,false,Alarm,1,TRUCK,3,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",123410336-T06 -140090344,RC3,14003264,Medical Incident,01/09/2014,01/09/2014,01/09/2014 07:15:35 PM,01/09/2014 07:16:18 PM,01/09/2014 07:22:04 PM,01/09/2014 07:23:17 PM,01/09/2014 07:29:25 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 07:52:46 PM,5800 Block of MISSION ST,SF,94112,B09,33,6213,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7090590578532, -122.451746963381)",140090344-RC3 -160510286,AM22,16020329,Medical Incident,02/20/2016,02/19/2016,02/20/2016 02:22:12 AM,02/20/2016 02:22:38 AM,02/20/2016 02:22:57 AM,02/20/2016 02:28:15 AM,02/20/2016 02:28:15 AM,02/20/2016 02:44:56 AM,02/20/2016 02:54:17 AM,Code 2 Transport,02/20/2016 03:27:19 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160510286-AM22 -110280351,72,11009372,Medical Incident,01/28/2011,01/28/2011,01/28/2011 10:47:21 PM,01/28/2011 10:48:17 PM,01/28/2011 10:48:43 PM,01/28/2011 10:49:14 PM,01/28/2011 10:51:05 PM,01/28/2011 11:17:30 PM,01/28/2011 11:24:32 PM,Code 2 Transport,01/29/2011 12:00:11 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",110280351-72 -160373344,55,16014865,Medical Incident,02/06/2016,02/06/2016,02/06/2016 07:23:22 PM,02/06/2016 07:23:22 PM,02/06/2016 07:44:45 PM,02/06/2016 07:44:58 PM,02/06/2016 07:53:51 PM,02/06/2016 08:00:10 PM,02/06/2016 08:32:38 PM,Code 2 Transport,02/06/2016 08:58:42 PM,0 Block of MISSION ST,San Francisco,94105,B03,35,2131,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7934607105517, -122.392791521307)",160373344-55 -120620005,54,12020231,Medical Incident,03/02/2012,03/01/2012,03/02/2012 12:36:37 AM,03/02/2012 12:38:20 AM,03/02/2012 12:38:33 AM,03/02/2012 12:38:39 AM,03/02/2012 12:56:49 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Unable to Locate,03/02/2012 12:58:00 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",120620005-54 -160471201,59,16018876,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:22:14 AM,02/16/2016 10:22:42 AM,02/16/2016 10:23:12 AM,02/16/2016 10:23:32 AM,02/16/2016 10:30:36 AM,02/16/2016 10:54:11 AM,02/16/2016 11:05:08 AM,Code 2 Transport,02/16/2016 11:55:08 AM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160471201-59 -160081623,62,16003214,Medical Incident,01/08/2016,01/08/2016,01/08/2016 12:11:52 PM,01/08/2016 12:12:15 PM,01/08/2016 12:12:24 PM,01/08/2016 12:12:35 PM,01/08/2016 12:27:17 PM,01/08/2016 12:45:55 PM,01/08/2016 12:52:13 PM,Code 2 Transport,01/08/2016 01:40:00 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160081623-62 -130480017,E43,13016236,Medical Incident,02/17/2013,02/16/2013,02/17/2013 12:52:05 AM,02/17/2013 12:52:41 AM,02/17/2013 12:53:07 AM,02/17/2013 12:54:54 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 12:55:49 AM,4600 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7235480520195, -122.435740203607)",130480017-E43 -122430101,77,12080291,Medical Incident,08/30/2012,08/30/2012,08/30/2012 10:03:01 AM,08/30/2012 10:04:59 AM,08/30/2012 10:06:18 AM,08/30/2012 10:08:50 AM,08/30/2012 10:35:49 AM,08/30/2012 10:37:16 AM,08/30/2012 11:09:19 AM,Code 2 Transport,08/30/2012 11:30:53 AM,0 Block of LA AVANZADA,SF,94131,B08,20,5365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7559493215982, -122.452288235801)",122430101-77 -160662869,55,16026502,Medical Incident,03/06/2016,03/06/2016,03/06/2016 07:56:04 PM,03/06/2016 07:56:04 PM,03/06/2016 07:57:30 PM,03/06/2016 07:57:46 PM,03/06/2016 08:11:52 PM,03/06/2016 08:31:01 PM,03/06/2016 08:44:26 PM,Code 2 Transport,03/06/2016 09:16:00 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160662869-55 -160131875,61,16005200,Medical Incident,01/13/2016,01/13/2016,01/13/2016 12:47:37 PM,01/13/2016 12:49:59 PM,01/13/2016 12:50:21 PM,01/13/2016 12:54:37 PM,01/13/2016 01:00:25 PM,01/13/2016 01:33:01 PM,01/13/2016 01:35:30 PM,Code 2 Transport,01/13/2016 02:26:00 PM,400 Block of BURNETT AVE,San Francisco,94131,B06,24,526,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Twin Peaks,"(37.7548846133242, -122.444053347531)",160131875-61 -121420264,E11,12047307,Medical Incident,05/21/2012,05/21/2012,05/21/2012 04:56:27 PM,05/21/2012 04:58:37 PM,05/21/2012 04:59:08 PM,05/21/2012 05:00:15 PM,05/21/2012 05:01:40 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/21/2012 05:05:12 PM,26TH ST/VALENCIA ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7489065309397, -122.420353712148)",121420264-E11 -160451618,AM02,16018113,Medical Incident,02/14/2016,02/14/2016,02/14/2016 12:49:02 PM,02/14/2016 12:49:02 PM,02/14/2016 12:49:47 PM,02/14/2016 12:50:20 PM,02/14/2016 01:00:02 PM,02/14/2016 01:08:56 PM,02/14/2016 01:30:03 PM,Code 2 Transport,02/14/2016 02:05:39 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160451618-AM02 -112570033,81,11084626,Medical Incident,09/14/2011,09/13/2011,09/14/2011 04:08:50 AM,09/14/2011 04:12:31 AM,09/14/2011 04:12:54 AM,09/14/2011 04:13:10 AM,09/14/2011 04:19:09 AM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,No Merit,09/14/2011 04:31:21 AM,1500 Block of RIVERA ST,SF,94116,B08,40,7457,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7465272204538, -122.482922001832)",112570033-81 -132990073,KM15,13101494,Medical Incident,10/26/2013,10/25/2013,10/26/2013 05:25:45 AM,10/26/2013 05:27:04 AM,10/26/2013 05:28:10 AM,10/26/2013 05:28:45 AM,10/26/2013 05:34:32 AM,10/26/2013 05:43:07 AM,04/25/2016 01:50:05 PM,Code 2 Transport,10/26/2013 06:30:46 AM,300 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7869126924267, -122.409756223507)",132990073-KM15 -121350056,E07,12044796,Medical Incident,05/14/2012,05/13/2012,05/14/2012 07:35:51 AM,05/14/2012 07:36:58 AM,05/14/2012 07:37:14 AM,05/14/2012 07:38:05 AM,05/14/2012 07:41:54 AM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/14/2012 07:49:04 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",121350056-E07 -123070026,94,12101876,Medical Incident,11/02/2012,11/01/2012,11/02/2012 03:11:40 AM,11/02/2012 03:12:56 AM,11/02/2012 03:13:11 AM,11/02/2012 03:13:24 AM,11/02/2012 03:21:01 AM,11/02/2012 03:36:36 AM,11/02/2012 03:46:32 AM,Code 2 Transport,11/02/2012 04:05:11 AM,HEMLOCK ST/POLK ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",123070026-94 -120550330,B06,12018288,Traffic Collision,02/24/2012,02/24/2012,02/24/2012 09:08:44 PM,02/24/2012 09:09:45 PM,02/24/2012 09:10:06 PM,02/24/2012 09:11:06 PM,02/24/2012 09:15:09 PM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 10:34:53 PM,200 Block of GENEVA AVE,SF,94112,B09,26,8261,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",120550330-B06 -130500199,79,13017023,Medical Incident,02/19/2013,02/19/2013,02/19/2013 05:00:17 PM,02/19/2013 05:00:24 PM,02/19/2013 05:01:12 PM,02/19/2013 05:01:31 PM,02/19/2013 05:08:33 PM,02/19/2013 05:23:14 PM,02/19/2013 05:36:27 PM,Code 2 Transport,02/19/2013 06:02:40 PM,200 Block of TRUMBULL ST,SF,94112,B09,32,5682,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7308771945638, -122.42503204848)",130500199-79 -123520152,E38,12117713,Medical Incident,12/17/2012,12/17/2012,12/17/2012 10:58:37 AM,12/17/2012 10:59:53 AM,12/17/2012 11:00:14 AM,12/17/2012 11:01:05 AM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 11:04:02 AM,2700 Block of SACRAMENTO ST,SF,94115,B04,38,3652,E,E,3,false,Potentially Life-Threatening,1,ENGINE,4,4,2,Pacific Heights,"(37.7893692243324, -122.438150656399)",123520152-E38 -160473345,AM12,16019088,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:49:54 PM,02/16/2016 07:51:10 PM,02/16/2016 07:51:47 PM,02/16/2016 07:52:38 PM,02/16/2016 08:00:43 PM,02/16/2016 08:23:25 PM,02/16/2016 08:45:28 PM,Code 2 Transport,02/16/2016 09:12:14 PM,2400 Block of GOLDEN GATE AVE,San Francisco,94117,B05,21,4521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7770932891379, -122.450891105827)",160473345-AM12 -120510167,E33,12016858,Structure Fire,02/20/2012,02/20/2012,02/20/2012 01:29:52 PM,02/20/2012 01:29:52 PM,02/20/2012 01:30:23 PM,02/20/2012 01:31:15 PM,02/20/2012 01:32:47 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 01:33:28 PM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",120510167-E33 -122150101,E06,12071292,Medical Incident,08/02/2012,08/02/2012,08/02/2012 09:55:16 AM,08/02/2012 09:55:54 AM,08/02/2012 09:56:40 AM,08/02/2012 09:58:17 AM,08/02/2012 10:00:42 AM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/02/2012 10:06:53 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",122150101-E06 -123580260,T18,12119933,Structure Fire,12/23/2012,12/23/2012,12/23/2012 06:17:49 PM,12/23/2012 06:18:06 PM,12/23/2012 06:18:15 PM,12/23/2012 06:18:40 PM,12/23/2012 06:21:29 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 06:35:26 PM,1600 Block of 41ST AVE,SF,94122,B08,23,7632,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7559877084081, -122.500308008266)",123580260-T18 -160752746,58,16029796,Medical Incident,03/15/2016,03/15/2016,03/15/2016 04:46:09 PM,03/15/2016 04:46:22 PM,03/15/2016 04:46:57 PM,03/15/2016 04:47:19 PM,03/15/2016 04:51:58 PM,03/15/2016 05:08:03 PM,03/15/2016 05:25:03 PM,Code 2 Transport,03/15/2016 06:05:07 PM,500 Block of DIVISADERO ST,San Francisco,94117,B05,21,4145,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7745125726593, -122.437820869473)",160752746-58 -160211900,64,16008391,Medical Incident,01/21/2016,01/21/2016,01/21/2016 01:19:38 PM,01/21/2016 01:20:53 PM,01/21/2016 01:21:16 PM,01/21/2016 01:21:24 PM,01/21/2016 01:27:42 PM,01/21/2016 01:46:08 PM,01/21/2016 02:01:48 PM,Code 2 Transport,01/21/2016 02:50:20 PM,200 Block of MARKET ST,San Francisco,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7926791171072, -122.396853499969)",160211900-64 -122720165,T02,12089731,Alarms,09/28/2012,09/28/2012,09/28/2012 01:22:08 PM,09/28/2012 01:23:15 PM,09/28/2012 01:23:30 PM,09/28/2012 01:25:00 PM,09/28/2012 01:27:22 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/28/2012 01:33:43 PM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Alarm,1,TRUCK,3,1,3,North Beach,"(37.7980228452184, -122.405863212632)",122720165-T02 -111090307,75,11036109,Traffic Collision,04/19/2011,04/19/2011,04/19/2011 07:37:33 PM,04/19/2011 07:38:45 PM,04/19/2011 07:38:54 PM,04/19/2011 07:39:59 PM,04/19/2011 07:44:37 PM,04/19/2011 07:58:49 PM,04/19/2011 08:23:52 PM,Code 2 Transport,04/19/2011 08:43:46 PM,GOUGH ST/HAIGHT ST,SF,94102,B02,36,3311,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7731517441996, -122.422229369585)",111090307-75 -160201352,61,16007971,Medical Incident,01/20/2016,01/20/2016,01/20/2016 10:44:29 AM,01/20/2016 10:45:52 AM,01/20/2016 10:46:39 AM,01/20/2016 10:46:46 AM,01/20/2016 10:52:28 AM,01/20/2016 10:58:18 AM,01/20/2016 11:09:22 AM,Code 2 Transport,01/20/2016 12:05:32 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",160201352-61 -160192628,84,16007721,Medical Incident,01/19/2016,01/19/2016,01/19/2016 04:51:27 PM,01/19/2016 04:53:13 PM,01/19/2016 04:53:28 PM,01/19/2016 04:53:43 PM,01/19/2016 05:00:40 PM,01/19/2016 05:41:13 PM,01/19/2016 05:50:40 PM,Code 2 Transport,01/19/2016 06:32:43 PM,2500 Block of 33RD AVE,San Francisco,94116,B08,18,7546,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7395892026861, -122.490566076286)",160192628-84 -123560360,D2,12119306,Structure Fire,12/21/2012,12/21/2012,12/21/2012 09:37:44 PM,12/21/2012 09:38:21 PM,12/21/2012 09:38:35 PM,12/21/2012 09:39:03 PM,12/21/2012 09:43:44 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/21/2012 09:45:10 PM,HOWARD ST/7TH ST,SF,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,9,2,6,South of Market,"(37.7779770860913, -122.409387007126)",123560360-D2 -132590164,B01,13087595,Alarms,09/16/2013,09/16/2013,09/16/2013 11:51:30 AM,09/16/2013 11:52:00 AM,09/16/2013 11:52:30 AM,09/16/2013 11:53:20 AM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Other,09/16/2013 12:00:47 PM,500 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7904732830605, -122.406742211994)",132590164-B01 -160323802,AM24,16012789,Medical Incident,02/01/2016,02/01/2016,02/01/2016 10:58:22 PM,02/01/2016 10:59:13 PM,02/01/2016 10:59:25 PM,02/01/2016 10:59:56 PM,02/01/2016 11:03:18 PM,02/01/2016 11:12:24 PM,02/01/2016 11:25:44 PM,Code 2 Transport,02/01/2016 11:53:31 PM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",160323802-AM24 -140070290,E08,14002581,Alarms,01/07/2014,01/07/2014,01/07/2014 06:27:00 PM,01/07/2014 06:27:01 PM,01/07/2014 06:29:17 PM,01/07/2014 06:29:17 PM,01/07/2014 06:29:24 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Fire,01/07/2014 06:29:41 PM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7779770860913, -122.409387007126)",140070290-E08 -140730340,B07,14024778,Alarms,03/14/2014,03/14/2014,03/14/2014 07:08:37 PM,03/14/2014 07:09:51 PM,03/14/2014 07:10:04 PM,03/14/2014 07:11:35 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Fire,03/14/2014 07:14:30 PM,0 Block of PARKER AVE,SAN FRANCISCO,94118,B07,10,4436,3,3,3,false,Alarm,1,CHIEF,3,7,2,Presidio Heights,"(37.7851338249754, -122.454765226355)",140730340-B07 -160863213,88,16034316,Medical Incident,03/26/2016,03/26/2016,03/26/2016 07:31:47 PM,03/26/2016 07:33:50 PM,03/26/2016 07:35:00 PM,03/26/2016 07:40:02 PM,03/26/2016 07:43:15 PM,03/26/2016 07:59:46 PM,03/26/2016 08:06:04 PM,Code 2 Transport,03/26/2016 08:31:15 PM,100 Block of HANCOCK ST,San Francisco,94114,B06,6,5436,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7603452099153, -122.431611636471)",160863213-88 -140850194,E07,14028637,Medical Incident,03/26/2014,03/26/2014,03/26/2014 01:19:28 PM,03/26/2014 01:20:34 PM,03/26/2014 01:24:27 PM,03/26/2014 01:24:27 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/26/2014 01:25:11 PM,2800 Block of FOLSOM ST,SAN FRANCISCO,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,6,9,Mission,"(37.7516999794245, -122.414074863195)",140850194-E07 -120370007,E16,12012209,Medical Incident,02/06/2012,02/05/2012,02/06/2012 12:17:47 AM,02/06/2012 12:19:12 AM,02/06/2012 12:26:57 AM,02/06/2012 12:28:44 AM,02/06/2012 12:30:03 AM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/06/2012 12:34:48 AM,0 Block of MALLORCA WAY,SF,94123,B04,16,3554,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8021383459598, -122.437516019025)",120370007-E16 -120500228,65,12016568,Medical Incident,02/19/2012,02/19/2012,02/19/2012 04:08:35 PM,02/19/2012 04:09:43 PM,02/19/2012 04:10:00 PM,02/19/2012 04:10:33 PM,02/19/2012 04:24:16 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Patient Declined Transport,02/19/2012 05:07:42 PM,1100 Block of GREAT HWY,SF,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",120500228-65 -111190154,E03,11039228,Medical Incident,04/29/2011,04/29/2011,04/29/2011 12:54:56 PM,04/29/2011 12:55:30 PM,04/29/2011 12:56:49 PM,04/29/2011 12:58:03 PM,04/29/2011 12:58:56 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 01:10:47 PM,900 Block of LARKIN ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7863251027379, -122.418201870328)",111190154-E03 -160833328,52,16033084,Traffic Collision,03/23/2016,03/23/2016,03/23/2016 06:27:23 PM,03/23/2016 06:28:14 PM,03/23/2016 06:28:33 PM,03/23/2016 06:28:40 PM,03/23/2016 06:39:10 PM,03/23/2016 06:46:55 PM,03/23/2016 07:17:44 PM,Code 2 Transport,03/23/2016 07:45:48 PM,CHESTNUT ST/FRANKLIN ST,San Francisco,94123,B04,16,3235,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8020718699266, -122.426377344364)",160833328-52 -123100320,87,12103243,Medical Incident,11/05/2012,11/05/2012,11/05/2012 07:10:33 PM,11/05/2012 07:12:43 PM,11/05/2012 07:13:23 PM,11/05/2012 07:13:32 PM,11/05/2012 07:17:02 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 07:27:09 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123100320-87 -130270261,E33,13009368,Medical Incident,01/27/2013,01/27/2013,01/27/2013 04:45:20 PM,01/27/2013 04:47:08 PM,01/27/2013 04:48:35 PM,01/27/2013 04:49:51 PM,01/27/2013 04:55:17 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/27/2013 05:15:03 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",130270261-E33 -130230070,KM04,13007850,Medical Incident,01/23/2013,01/22/2013,01/23/2013 07:25:59 AM,01/23/2013 07:27:44 AM,01/23/2013 07:28:24 AM,01/23/2013 07:29:36 AM,01/23/2013 07:38:58 AM,01/23/2013 07:53:56 AM,01/23/2013 08:05:41 AM,Code 2 Transport,01/23/2013 08:42:44 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",130230070-KM04 -122890180,E36,12095613,Medical Incident,10/15/2012,10/15/2012,10/15/2012 12:46:01 PM,10/15/2012 12:47:07 PM,10/15/2012 12:47:38 PM,10/15/2012 12:49:04 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 12:52:04 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7760099210785, -122.412889415461)",122890180-E36 -132160219,E28,13073020,Traffic Collision,08/04/2013,08/04/2013,08/04/2013 04:41:32 PM,08/04/2013 04:41:50 PM,08/04/2013 04:42:16 PM,08/04/2013 04:43:31 PM,08/04/2013 04:45:50 PM,08/04/2013 05:14:09 PM,04/25/2016 01:51:28 PM,Other,08/04/2013 05:54:30 PM,500 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8062966202775, -122.416265019979)",132160219-E28 -133140038,67,13106636,Medical Incident,11/10/2013,11/09/2013,11/10/2013 02:42:32 AM,11/10/2013 02:44:30 AM,11/10/2013 02:44:43 AM,11/10/2013 02:44:51 AM,11/10/2013 03:01:16 AM,11/10/2013 03:29:25 AM,11/10/2013 03:36:59 AM,Code 2 Transport,11/10/2013 04:05:46 AM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",133140038-67 -160841900,75,16033384,Medical Incident,03/24/2016,03/24/2016,03/24/2016 12:49:27 PM,03/24/2016 12:50:59 PM,03/24/2016 12:52:52 PM,03/24/2016 12:53:06 PM,03/24/2016 01:04:50 PM,03/24/2016 01:16:50 PM,03/24/2016 01:33:12 PM,Code 2 Transport,03/24/2016 02:14:06 PM,200 Block of FUNSTON AVE,Fort Mason,94118,B99,51,3344,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.783539430447, -122.471914385852)",160841900-75 -131850177,E40,13063053,Electrical Hazard,07/04/2013,07/04/2013,07/04/2013 01:08:05 PM,07/04/2013 01:09:51 PM,07/04/2013 01:10:06 PM,07/04/2013 01:11:02 PM,07/04/2013 01:13:14 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Fire,07/04/2013 01:36:10 PM,14TH AV/TARAVAL ST,SF,94116,B08,40,7355,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.743289169982, -122.470234912852)",131850177-E40 -111090303,68,11036105,Medical Incident,04/19/2011,04/19/2011,04/19/2011 07:19:48 PM,04/19/2011 07:21:25 PM,04/19/2011 07:21:34 PM,04/19/2011 07:23:08 PM,04/19/2011 07:40:07 PM,04/19/2011 07:59:26 PM,04/19/2011 08:22:45 PM,Code 2 Transport,04/19/2011 08:44:57 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",111090303-68 -160860139,75,16034038,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:56:55 AM,03/26/2016 12:58:26 AM,03/26/2016 12:58:34 AM,03/26/2016 12:58:40 AM,03/26/2016 01:07:57 AM,03/26/2016 01:31:49 AM,03/26/2016 01:47:48 AM,Code 2 Transport,03/26/2016 02:24:39 AM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160860139-75 -160463496,AM20,16018679,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:48:12 PM,02/15/2016 08:48:50 PM,02/15/2016 08:49:21 PM,02/15/2016 08:50:24 PM,02/15/2016 09:02:25 PM,02/15/2016 09:02:27 PM,02/15/2016 09:22:27 PM,Code 2 Transport,02/15/2016 09:45:40 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",160463496-AM20 -140020072,B02,14000579,Alarms,01/02/2014,01/01/2014,01/02/2014 06:38:44 AM,01/02/2014 06:41:31 AM,01/02/2014 06:42:09 AM,01/02/2014 06:43:37 AM,01/02/2014 06:47:52 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Fire,01/02/2014 06:56:24 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",140020072-B02 -160730222,60,16028857,Medical Incident,03/13/2016,03/12/2016,03/13/2016 01:48:44 AM,03/13/2016 01:48:44 AM,03/13/2016 01:49:05 AM,03/13/2016 01:49:24 AM,03/13/2016 01:58:34 AM,03/13/2016 03:15:27 AM,03/13/2016 03:21:53 AM,Code 2 Transport,03/13/2016 04:12:20 AM,400 Block of 7TH AV,San Francisco,94118,B07,31,7131,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800008159621, -122.46535084744)",160730222-60 -132390175,82,13080613,Structure Fire,08/27/2013,08/27/2013,08/27/2013 11:58:23 AM,08/27/2013 11:59:49 AM,08/27/2013 12:00:59 PM,08/27/2013 12:01:27 PM,08/27/2013 12:07:12 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 12:29:00 PM,0 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,true,Fire,1,MEDIC,5,6,9,Bernal Heights,"(37.7446306934522, -122.419200129034)",132390175-82 -122590026,87,12085487,Traffic Collision,09/15/2012,09/14/2012,09/15/2012 01:06:22 AM,09/15/2012 01:07:30 AM,09/15/2012 01:09:14 AM,09/15/2012 01:09:19 AM,09/15/2012 01:10:52 AM,09/15/2012 01:25:30 AM,09/15/2012 01:30:01 AM,Code 2 Transport,09/15/2012 02:01:05 AM,GRANT AV/BUSH ST,SF,94108,B01,13,1315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905652365323, -122.405573746363)",122590026-87 -121130092,B01,12037445,Alarms,04/22/2012,04/22/2012,04/22/2012 08:01:36 AM,04/22/2012 08:04:03 AM,04/22/2012 08:04:43 AM,04/22/2012 08:06:39 AM,04/22/2012 08:10:54 AM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 08:14:41 AM,200 Block of CLAY ST,SF,94111,B01,13,1133,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7951839313126, -122.398551121673)",121130092-B01 -121180076,66,12039003,Medical Incident,04/27/2012,04/26/2012,04/27/2012 07:08:06 AM,04/27/2012 07:10:36 AM,04/27/2012 07:10:51 AM,04/27/2012 07:11:31 AM,04/27/2012 07:32:28 AM,04/27/2012 07:46:06 AM,04/27/2012 08:17:38 AM,Code 2 Transport,04/27/2012 08:40:49 AM,MARINA BL/FILLMORE ST,SF,94123,B04,16,3561,3,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8064017799399, -122.437461293752)",121180076-66 -160062362,74,16002465,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:41:51 PM,01/06/2016 03:42:10 PM,01/06/2016 03:42:36 PM,01/06/2016 03:42:47 PM,01/06/2016 03:48:00 PM,01/06/2016 04:08:50 PM,01/06/2016 04:19:12 PM,Code 2 Transport,01/06/2016 04:55:41 PM,1300 Block of 20TH AV,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7625869727053, -122.478057316831)",160062362-74 -130620072,KM07,13020682,Medical Incident,03/03/2013,03/02/2013,03/03/2013 05:05:38 AM,03/03/2013 05:06:36 AM,03/03/2013 05:06:55 AM,03/03/2013 05:08:05 AM,03/03/2013 05:16:00 AM,03/03/2013 05:32:07 AM,03/03/2013 05:43:40 AM,Code 3 Transport,03/03/2013 06:26:35 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",130620072-KM07 -140370302,KM10,14012615,Medical Incident,02/06/2014,02/06/2014,02/06/2014 06:28:30 PM,02/06/2014 06:30:04 PM,02/06/2014 06:30:25 PM,02/06/2014 06:30:53 PM,02/06/2014 06:43:29 PM,02/06/2014 06:51:45 PM,04/25/2016 01:48:21 PM,Code 2 Transport,02/06/2014 07:13:22 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",140370302-KM10 -160760741,73,16030034,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:18:09 AM,03/16/2016 08:18:20 AM,03/16/2016 08:18:35 AM,03/16/2016 08:18:43 AM,03/16/2016 08:22:05 AM,03/16/2016 08:40:12 AM,03/16/2016 09:00:04 AM,Code 2 Transport,03/16/2016 09:58:12 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160760741-73 -132720324,E41,13092574,Medical Incident,09/29/2013,09/29/2013,09/29/2013 08:05:47 PM,09/29/2013 08:08:01 PM,09/29/2013 08:08:36 PM,09/29/2013 08:09:17 PM,09/29/2013 08:13:01 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 08:22:02 PM,900 Block of MASON ST,SF,94108,B01,41,1414,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",132720324-E41 -102930045,E39,10093335,Medical Incident,10/20/2010,10/19/2010,10/20/2010 06:22:37 AM,10/20/2010 06:24:53 AM,10/20/2010 06:25:45 AM,10/20/2010 06:29:27 AM,10/20/2010 06:32:29 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 06:33:44 AM,700 Block of SANTIAGO ST,SF,94116,B08,40,7416,3,3,3,true,,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7449962176955, -122.475267384046)",102930045-E39 -113300051,77,11109328,Medical Incident,11/26/2011,11/25/2011,11/26/2011 06:15:48 AM,11/26/2011 06:16:45 AM,11/26/2011 06:17:29 AM,04/25/2016 02:01:28 PM,11/26/2011 06:18:43 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/26/2011 06:30:00 AM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,1,1,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",113300051-77 -121590351,E16,12052761,Medical Incident,06/07/2012,06/07/2012,06/07/2012 11:25:47 PM,06/07/2012 11:26:30 PM,06/07/2012 11:26:50 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/07/2012 11:29:32 PM,2200 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.8002979847002, -122.439895933785)",121590351-E16 -110930059,E05,11030771,Medical Incident,04/03/2011,04/02/2011,04/03/2011 04:30:14 AM,04/03/2011 04:30:39 AM,04/03/2011 04:31:10 AM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 04:32:21 AM,1100 Block of STEINER ST,SF,94115,B05,5,3625,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7798293492878, -122.433621914349)",110930059-E05 -132840363,87,13096777,Medical Incident,10/11/2013,10/11/2013,10/11/2013 10:35:37 PM,10/11/2013 10:39:03 PM,10/11/2013 10:42:50 PM,10/11/2013 10:43:02 PM,10/11/2013 10:50:09 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,No Merit,10/11/2013 10:52:41 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,E,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",132840363-87 -122830065,E08,12093557,Structure Fire,10/09/2012,10/08/2012,10/09/2012 07:49:07 AM,10/09/2012 07:50:50 AM,10/09/2012 07:51:16 AM,10/09/2012 07:53:02 AM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 07:59:08 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,10,3,6,South of Market,"(37.7807144867659, -122.408483722327)",122830065-E08 -113540079,E22,11117453,Medical Incident,12/20/2011,12/19/2011,12/20/2011 06:37:15 AM,12/20/2011 06:39:33 AM,12/20/2011 06:41:05 AM,12/20/2011 06:43:10 AM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,Other,12/20/2011 06:43:48 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,true,,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",113540079-E22 -131640352,66,13055852,Traffic Collision,06/13/2013,06/13/2013,06/13/2013 08:35:56 PM,06/13/2013 08:36:05 PM,06/13/2013 08:36:20 PM,06/13/2013 08:37:19 PM,06/13/2013 08:41:29 PM,06/13/2013 08:53:18 PM,06/13/2013 09:03:12 PM,Code 2 Transport,06/13/2013 08:36:21 PM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",131640352-66 -160473209,64,16019073,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:08:00 PM,02/16/2016 07:11:08 PM,02/16/2016 07:11:19 PM,02/16/2016 07:11:28 PM,02/16/2016 07:40:00 PM,02/16/2016 07:41:04 PM,02/16/2016 07:45:35 PM,Code 2 Transport,02/16/2016 08:15:30 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160473209-64 -160323267,76,16012734,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:05:09 PM,02/01/2016 08:05:09 PM,02/01/2016 08:05:40 PM,02/01/2016 08:05:52 PM,02/01/2016 08:17:01 PM,02/01/2016 08:30:47 PM,02/01/2016 08:38:22 PM,Code 2 Transport,02/01/2016 08:57:31 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160323267-76 -132120237,85,13071707,Medical Incident,07/31/2013,07/31/2013,07/31/2013 03:48:17 PM,07/31/2013 03:48:29 PM,07/31/2013 03:48:56 PM,07/31/2013 03:49:06 PM,07/31/2013 03:58:45 PM,07/31/2013 04:20:13 PM,07/31/2013 04:41:17 PM,Code 2 Transport,07/31/2013 05:26:37 PM,CHESTNUT ST/FILLMORE ST,SF,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.800814143599, -122.436273910168)",132120237-85 -140290014,67,14009747,Medical Incident,01/29/2014,01/28/2014,01/29/2014 12:50:48 AM,01/29/2014 12:55:12 AM,01/29/2014 12:57:35 AM,01/29/2014 12:57:41 AM,01/29/2014 01:08:32 AM,01/29/2014 01:21:02 AM,01/29/2014 01:23:29 AM,Code 2 Transport,01/29/2014 01:33:45 AM,1400 Block of POWELL ST,SF,94133,B01,2,1353,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",140290014-67 -122520167,T02,12083319,Alarms,09/08/2012,09/08/2012,09/08/2012 01:15:09 PM,09/08/2012 01:15:59 PM,09/08/2012 01:16:34 PM,09/08/2012 01:18:57 PM,09/08/2012 01:21:22 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/08/2012 01:25:40 PM,200 Block of BAY ST,SF,94133,B01,28,1341,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8058720561285, -122.411119801648)",122520167-T02 -110830432,83,11027495,Traffic Collision,03/24/2011,03/24/2011,03/24/2011 10:33:54 PM,03/24/2011 10:34:55 PM,03/24/2011 10:35:17 PM,03/24/2011 10:35:40 PM,03/24/2011 10:41:16 PM,03/24/2011 10:46:32 PM,03/24/2011 10:55:53 PM,Other,03/24/2011 11:52:34 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,MEDIC,3,1,3,Tenderloin,"(37.7863257938335, -122.409145791731)",110830432-83 -111460280,KM11,11048567,Medical Incident,05/26/2011,05/26/2011,05/26/2011 06:42:54 PM,05/26/2011 06:51:45 PM,05/26/2011 06:52:32 PM,05/26/2011 06:52:40 PM,05/26/2011 07:02:02 PM,05/26/2011 07:17:25 PM,05/26/2011 07:38:42 PM,Code 2 Transport,05/26/2011 08:09:47 PM,100 Block of BRAZIL AVE,SF,94112,B09,43,6127,1,1,2,false,,1,PRIVATE,1,9,11,Excelsior,"(37.7240773628608, -122.433668179488)",111460280-KM11 -140150271,KM02,14005203,Medical Incident,01/15/2014,01/15/2014,01/15/2014 04:43:41 PM,01/15/2014 04:44:20 PM,01/15/2014 04:44:46 PM,01/15/2014 04:45:25 PM,01/15/2014 04:51:46 PM,01/15/2014 04:56:22 PM,01/15/2014 05:14:24 PM,Code 2 Transport,01/15/2014 05:37:08 PM,800 Block of LARKIN ST,SF,94109,B04,3,1642,,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7858799812295, -122.417973829928)",140150271-KM02 -112200090,E03,11072623,Medical Incident,08/08/2011,08/08/2011,08/08/2011 09:23:16 AM,08/08/2011 09:24:06 AM,08/08/2011 09:24:42 AM,08/08/2011 09:25:48 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 09:28:55 AM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,4,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",112200090-E03 -160620695,61,16024598,Medical Incident,03/02/2016,03/02/2016,03/02/2016 08:07:21 AM,03/02/2016 08:08:54 AM,03/02/2016 08:09:10 AM,03/02/2016 08:09:32 AM,03/02/2016 08:20:46 AM,03/02/2016 08:42:50 AM,03/02/2016 09:13:02 AM,Code 2 Transport,03/02/2016 09:51:14 AM,1200 Block of MARINER DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8291421801997, -122.374351232073)",160620695-61 -113410285,T13,11113125,Medical Incident,12/07/2011,12/07/2011,12/07/2011 04:26:48 PM,12/07/2011 04:27:36 PM,12/07/2011 04:28:28 PM,04/25/2016 02:01:16 PM,12/07/2011 04:31:40 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/07/2011 04:31:52 PM,MONTGOMERY ST/CLAY ST,SF,94111,B01,13,1233,3,E,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7946662813797, -122.403139296426)",113410285-T13 -123410017,E36,12113638,Structure Fire,12/06/2012,12/05/2012,12/06/2012 12:33:03 AM,12/06/2012 12:33:03 AM,12/06/2012 12:33:37 AM,12/06/2012 12:34:25 AM,12/06/2012 12:36:32 AM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Fire,12/06/2012 12:37:30 AM,200 Block of LARKIN ST,SF,94102,B02,36,1645,3,3,3,false,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7800186669161, -122.416926174949)",123410017-E36 -122760259,E03,12091182,Structure Fire,10/02/2012,10/02/2012,10/02/2012 02:21:59 PM,10/02/2012 02:21:59 PM,10/02/2012 02:22:17 PM,10/02/2012 02:22:29 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 02:22:54 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,Alarm,1,ENGINE,3,1,6,South of Market,"(37.7857439877905, -122.405831012392)",122760259-E03 -112270399,T02,11075206,Alarms,08/15/2011,08/15/2011,08/15/2011 10:09:21 PM,08/15/2011 10:10:43 PM,08/15/2011 10:10:51 PM,08/15/2011 10:12:37 PM,08/15/2011 10:14:04 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 10:18:16 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",112270399-T02 -123320129,T03,12110304,Structure Fire,11/27/2012,11/27/2012,11/27/2012 11:07:05 AM,11/27/2012 11:07:05 AM,11/27/2012 11:07:19 AM,11/27/2012 11:07:35 AM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/27/2012 11:11:08 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",123320129-T03 -160740048,71,16029158,Medical Incident,03/14/2016,03/13/2016,03/14/2016 12:23:50 AM,03/14/2016 12:23:50 AM,03/14/2016 12:23:50 AM,03/14/2016 12:23:50 AM,03/14/2016 12:23:50 AM,03/14/2016 12:31:33 AM,03/14/2016 12:38:13 AM,Code 2 Transport,03/14/2016 01:31:30 AM,500 Block of HAIGHT ST,San Francisco,94117,B99,6,3633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7720569992233, -122.431274062525)",160740048-71 -112620327,72,11086571,Medical Incident,09/19/2011,09/19/2011,09/19/2011 05:36:51 PM,09/19/2011 05:38:00 PM,09/19/2011 05:38:35 PM,09/19/2011 05:38:41 PM,09/19/2011 05:41:58 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Patient Declined Transport,09/19/2011 06:11:36 PM,0 Block of MUSIC CONCOURSE DR,SF,94118,B07,22,7744,3,2,2,true,,1,MEDIC,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",112620327-72 -160082871,KM01,16003333,Medical Incident,01/08/2016,01/08/2016,01/08/2016 05:32:09 PM,01/08/2016 05:33:19 PM,01/08/2016 05:33:39 PM,01/08/2016 05:34:12 PM,01/08/2016 05:38:21 PM,01/08/2016 05:47:26 PM,01/08/2016 06:31:28 PM,Code 2 Transport,01/08/2016 07:00:38 PM,900 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6361,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7318146531856, -122.403993066647)",160082871-KM01 -160030493,52,16001054,Medical Incident,01/03/2016,01/02/2016,01/03/2016 04:23:19 AM,01/03/2016 04:23:19 AM,01/03/2016 04:30:57 AM,01/03/2016 04:30:57 AM,01/03/2016 04:43:45 AM,01/03/2016 04:51:36 AM,01/03/2016 05:05:23 AM,Code 2 Transport,01/03/2016 05:40:09 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160030493-52 -123040061,89,12100794,Medical Incident,10/30/2012,10/29/2012,10/30/2012 07:42:08 AM,10/30/2012 07:43:33 AM,10/30/2012 07:45:29 AM,10/30/2012 07:46:05 AM,10/30/2012 08:09:24 AM,10/30/2012 08:31:31 AM,10/30/2012 09:00:44 AM,Code 2 Transport,10/30/2012 09:38:46 AM,0 Block of OCEAN AVE,SF,94112,B09,43,6121,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.723809628217, -122.436744444673)",123040061-89 -120460185,T01,12015297,Structure Fire,02/15/2012,02/15/2012,02/15/2012 01:08:11 PM,02/15/2012 01:08:11 PM,02/15/2012 01:08:45 PM,02/15/2012 01:10:27 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 01:12:38 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",120460185-T01 -112320233,T02,11076636,Alarms,08/20/2011,08/20/2011,08/20/2011 03:55:03 PM,08/20/2011 03:55:59 PM,08/20/2011 03:56:19 PM,08/20/2011 03:58:12 PM,08/20/2011 04:02:42 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 04:03:25 PM,1100 Block of VALLEJO ST,SF,94109,B01,41,1512,3,3,3,false,,1,TRUCK,3,1,3,Nob Hill,"(37.7976997248557, -122.416217993782)",112320233-T02 -160423564,85,16017036,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:03:54 PM,02/11/2016 09:06:05 PM,02/11/2016 09:06:34 PM,02/11/2016 09:06:44 PM,02/11/2016 09:14:46 PM,02/11/2016 09:28:40 PM,02/11/2016 09:35:33 PM,Code 2 Transport,02/11/2016 09:54:51 PM,TAYLOR ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1454,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160423564-85 -160120542,52,16004671,Medical Incident,01/12/2016,01/11/2016,01/12/2016 07:06:14 AM,01/12/2016 07:06:46 AM,01/12/2016 07:11:14 AM,01/12/2016 07:11:22 AM,01/12/2016 07:27:43 AM,01/12/2016 07:48:55 AM,01/12/2016 08:02:32 AM,Code 2 Transport,01/12/2016 08:25:01 AM,500 Block of 5TH ST,San Francisco,94107,B07,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160120542-52 -120110065,KM05,12003723,Medical Incident,01/11/2012,01/11/2012,01/11/2012 08:10:55 AM,01/11/2012 08:12:17 AM,01/11/2012 08:12:31 AM,01/11/2012 08:13:57 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 08:14:28 AM,0 Block of ATHENS ST,SF,94112,B09,43,6146,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,9,11,Excelsior,"(37.7272366570079, -122.424157740245)",120110065-KM05 -132810134,E11,13095561,Medical Incident,10/08/2013,10/08/2013,10/08/2013 10:14:42 AM,10/08/2013 10:15:13 AM,10/08/2013 10:15:33 AM,10/08/2013 10:16:02 AM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/08/2013 10:20:32 AM,1500 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7485117389211, -122.420385246318)",132810134-E11 -130020150,E41,13000609,Medical Incident,01/02/2013,01/02/2013,01/02/2013 10:53:44 AM,01/02/2013 10:55:21 AM,01/02/2013 10:58:09 AM,01/02/2013 10:59:29 AM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 11:09:06 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",130020150-E41 -160741032,61,16029258,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:38:20 AM,03/14/2016 09:39:38 AM,03/14/2016 09:40:08 AM,03/14/2016 09:40:24 AM,03/14/2016 09:45:31 AM,03/14/2016 10:03:50 AM,03/14/2016 10:10:18 AM,Code 2 Transport,03/14/2016 10:41:21 AM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7546409372119, -122.418601779487)",160741032-61 -122410013,B07,12079628,Medical Incident,08/28/2012,08/27/2012,08/28/2012 12:53:26 AM,08/28/2012 12:54:12 AM,08/28/2012 12:54:31 AM,08/28/2012 12:57:03 AM,08/28/2012 12:57:25 AM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Other,08/28/2012 01:02:37 AM,10TH AV/GEARY BL,SF,94118,B07,31,7141,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,7,1,Inner Richmond,"(37.780822030508, -122.468563870264)",122410013-B07 -121200275,KM12,12039918,Medical Incident,04/29/2012,04/29/2012,04/29/2012 05:10:21 PM,04/29/2012 05:12:53 PM,04/29/2012 05:18:57 PM,04/29/2012 05:23:13 PM,04/29/2012 05:24:26 PM,04/29/2012 05:35:14 PM,04/29/2012 05:38:05 PM,Code 2 Transport,04/29/2012 05:58:38 PM,1300 Block of MISSION ST,SF,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7757095884786, -122.41525748686)",121200275-KM12 -140020302,72,14000772,Medical Incident,01/02/2014,01/02/2014,01/02/2014 04:34:34 PM,01/02/2014 04:35:11 PM,01/02/2014 04:35:43 PM,01/02/2014 04:36:25 PM,01/02/2014 04:47:42 PM,01/02/2014 05:02:48 PM,01/02/2014 05:05:03 PM,Code 2 Transport,01/02/2014 05:26:46 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",140020302-72 -132680254,E03,13091037,Medical Incident,09/25/2013,09/25/2013,09/25/2013 03:33:05 PM,09/25/2013 03:34:26 PM,09/25/2013 03:35:24 PM,04/25/2016 01:50:35 PM,09/25/2013 03:37:44 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 03:47:32 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",132680254-E03 -112270177,AM06,11075014,Medical Incident,08/15/2011,08/15/2011,08/15/2011 11:46:41 AM,08/15/2011 11:47:49 AM,08/15/2011 11:48:16 AM,08/15/2011 11:50:08 AM,08/15/2011 11:55:59 AM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 11:59:32 AM,1100 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,false,,1,PRIVATE,3,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",112270177-AM06 -131240221,93,13041842,Medical Incident,05/04/2013,05/04/2013,05/04/2013 02:06:22 PM,05/04/2013 02:09:48 PM,05/04/2013 02:11:34 PM,05/04/2013 02:12:28 PM,05/04/2013 02:30:17 PM,05/04/2013 02:43:58 PM,05/04/2013 02:55:11 PM,Code 2 Transport,05/04/2013 03:25:18 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131240221-93 -160513409,89,16020626,Medical Incident,02/20/2016,02/20/2016,02/20/2016 10:39:27 PM,02/20/2016 10:41:51 PM,02/20/2016 10:43:10 PM,02/20/2016 10:43:17 PM,02/20/2016 11:06:07 PM,02/20/2016 11:21:27 PM,02/21/2016 12:17:30 AM,Code 2 Transport,02/21/2016 12:26:59 AM,100 Block of LANGTON ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7755325814084, -122.407486364653)",160513409-89 -113260142,E44,11108207,Medical Incident,11/22/2011,11/22/2011,11/22/2011 10:18:18 AM,11/22/2011 10:19:53 AM,11/22/2011 10:20:10 AM,11/22/2011 10:21:22 AM,11/22/2011 10:25:17 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 10:48:10 AM,2600 Block of BAY SHORE BLVD,SF,94134,B10,44,6254,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7085901437558, -122.405053904887)",113260142-E44 -103130315,72,10100456,Medical Incident,11/09/2010,11/09/2010,11/09/2010 06:30:11 PM,11/09/2010 06:31:20 PM,11/09/2010 06:33:04 PM,11/09/2010 06:33:10 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,04/25/2016 02:07:40 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103130315-72 -133340214,KM01,13113269,Medical Incident,11/30/2013,11/30/2013,11/30/2013 03:06:56 PM,11/30/2013 03:07:32 PM,11/30/2013 03:07:56 PM,11/30/2013 03:08:33 PM,11/30/2013 03:19:47 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Patient Declined Transport,11/30/2013 03:48:13 PM,700 Block of TARAVAL ST,SF,94116,B08,40,7376,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7431749483835, -122.47409244345)",133340214-KM01 -160590262,64,16023357,Medical Incident,02/28/2016,02/27/2016,02/28/2016 01:49:28 AM,02/28/2016 01:50:42 AM,02/28/2016 01:50:55 AM,02/28/2016 01:51:22 AM,02/28/2016 01:55:46 AM,02/28/2016 02:02:35 AM,02/28/2016 02:12:18 AM,Code 2 Transport,02/28/2016 03:09:08 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160590262-64 -160720763,55,16028506,Medical Incident,03/12/2016,03/11/2016,03/12/2016 07:48:01 AM,03/12/2016 07:50:03 AM,03/12/2016 07:51:47 AM,03/12/2016 07:52:42 AM,03/12/2016 08:01:09 AM,03/12/2016 08:17:39 AM,03/12/2016 08:20:11 AM,Code 2 Transport,03/12/2016 08:50:08 AM,SACRAMENTO ST/LEAVENWORTH ST,San Francisco,94109,B01,41,1465,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7921329427396, -122.415936219557)",160720763-55 -122670230,85,12088259,Medical Incident,09/23/2012,09/23/2012,09/23/2012 04:05:02 PM,09/23/2012 04:05:53 PM,09/23/2012 04:06:09 PM,09/23/2012 04:06:29 PM,09/23/2012 04:09:55 PM,09/23/2012 04:27:32 PM,09/23/2012 05:25:33 PM,Code 2 Transport,09/23/2012 05:32:37 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122670230-85 -111000011,E01,11033064,Medical Incident,04/10/2011,04/09/2011,04/10/2011 12:14:41 AM,04/10/2011 12:16:15 AM,04/10/2011 12:18:16 AM,04/10/2011 12:19:29 AM,04/10/2011 12:22:39 AM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/10/2011 12:34:06 AM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",111000011-E01 -160371778,KM02,16014681,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:18:40 PM,02/06/2016 12:19:25 PM,02/06/2016 12:19:43 PM,02/06/2016 12:21:12 PM,02/06/2016 12:28:25 PM,02/06/2016 12:41:11 PM,02/06/2016 12:47:57 PM,Code 3 Transport,02/06/2016 01:34:38 PM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160371778-KM02 -140080051,E01,14002711,Alarms,01/08/2014,01/07/2014,01/08/2014 04:47:58 AM,01/08/2014 04:49:18 AM,01/08/2014 04:49:27 AM,04/25/2016 01:48:50 PM,01/08/2014 04:53:46 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/08/2014 05:02:51 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",140080051-E01 -111860078,89,11061388,Medical Incident,07/05/2011,07/04/2011,07/05/2011 05:53:51 AM,07/05/2011 05:55:20 AM,07/05/2011 05:57:02 AM,07/05/2011 05:57:46 AM,07/05/2011 06:02:53 AM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Patient Declined Transport,07/05/2011 06:17:52 AM,BROADWAY/COLUMBUS AV,SF,94133,B01,2,1311,1,1,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",111860078-89 -132240281,E39,13075709,Citizen Assist / Service Call,08/12/2013,08/12/2013,08/12/2013 05:36:05 PM,08/12/2013 05:38:15 PM,08/12/2013 05:38:29 PM,08/12/2013 05:39:41 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,Other,08/12/2013 05:41:21 PM,100 Block of WEST PORTAL AVE,SF,94127,B08,39,8612,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",132240281-E39 -113250043,T08,11107814,Structure Fire,11/21/2011,11/20/2011,11/21/2011 07:07:47 AM,11/21/2011 07:07:47 AM,11/21/2011 07:07:56 AM,11/21/2011 07:09:08 AM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,Other,11/21/2011 07:11:05 AM,3RD ST/BRANNAN ST,SF,94107,B03,8,2173,3,3,3,true,,1,TRUCK,2,3,6,South of Market,"(37.7800897302982, -122.394300038467)",113250043-T08 -110750196,E25,11024686,Medical Incident,03/16/2011,03/16/2011,03/16/2011 01:59:27 PM,03/16/2011 02:00:02 PM,03/16/2011 02:00:24 PM,03/16/2011 02:01:28 PM,03/16/2011 02:03:05 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Other,03/16/2011 02:13:53 PM,3RD ST/EVANS AV,SF,94124,B10,25,6457,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",110750196-E25 -103330236,E32,10106621,Smoke Investigation (Outside),11/29/2010,11/29/2010,11/29/2010 03:47:45 PM,11/29/2010 03:49:44 PM,11/29/2010 03:49:53 PM,11/29/2010 03:50:28 PM,11/29/2010 03:55:24 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Fire,11/29/2010 04:23:28 PM,200 Block of AVENUE C,SF,94130,B09,32,5681,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8192257500347, -122.370976475899)",103330236-E32 -111310291,E19,11043382,Outside Fire,05/11/2011,05/11/2011,05/11/2011 05:56:28 PM,05/11/2011 05:57:24 PM,05/11/2011 05:58:19 PM,05/11/2011 05:59:54 PM,05/11/2011 06:07:41 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Fire,05/11/2011 06:07:42 PM,19TH AV/HOLLOWAY AV,SF,94132,B08,19,8751,3,3,3,true,,1,ENGINE,1,9,7,Lakeshore,"(37.7210572969552, -122.475221950242)",111310291-E19 -121770114,88,12058832,Medical Incident,06/25/2012,06/25/2012,06/25/2012 09:58:09 AM,06/25/2012 10:00:27 AM,06/25/2012 10:00:49 AM,06/25/2012 10:01:02 AM,06/25/2012 10:07:28 AM,06/25/2012 10:20:41 AM,06/25/2012 10:31:46 AM,Code 2 Transport,06/25/2012 10:45:36 AM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",121770114-88 -160752379,88,16029770,Medical Incident,03/15/2016,03/15/2016,03/15/2016 03:19:47 PM,03/15/2016 03:21:11 PM,03/15/2016 03:22:03 PM,03/15/2016 03:22:26 PM,03/15/2016 03:30:36 PM,03/15/2016 03:46:13 PM,03/15/2016 04:01:43 PM,Code 2 Transport,03/15/2016 04:46:22 PM,7000 Block of CALIFORNIA ST,San Francisco,94121,B07,14,7246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7834657394823, -122.492996408284)",160752379-88 -122690209,AM06,12088879,Medical Incident,09/25/2012,09/25/2012,09/25/2012 04:02:11 PM,09/25/2012 04:05:22 PM,09/25/2012 04:06:09 PM,09/25/2012 04:07:02 PM,09/25/2012 04:10:41 PM,09/25/2012 04:23:04 PM,09/25/2012 04:31:25 PM,Code 2 Transport,09/25/2012 05:02:59 PM,1700 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7913381286071, -122.421683207706)",122690209-AM06 -112270001,B10,11074862,Structure Fire,08/15/2011,08/14/2011,08/15/2011 12:08:02 AM,08/15/2011 12:09:19 AM,08/15/2011 12:09:47 AM,08/15/2011 12:12:14 AM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/15/2011 12:17:28 AM,600 Block of SAN JOSE AVE,SF,94110,B06,11,5577,3,3,3,false,,1,CHIEF,10,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",112270001-B10 -160671870,61,16026784,Medical Incident,03/07/2016,03/07/2016,03/07/2016 02:29:52 PM,03/07/2016 02:31:15 PM,03/07/2016 02:32:29 PM,03/07/2016 02:32:43 PM,03/07/2016 02:44:24 PM,03/07/2016 03:07:26 PM,03/07/2016 03:11:13 PM,Code 2 Transport,03/07/2016 03:54:49 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160671870-61 -131440371,T13,13048994,Alarms,05/24/2013,05/24/2013,05/24/2013 09:15:23 PM,05/24/2013 09:16:39 PM,05/24/2013 09:16:50 PM,05/24/2013 09:17:53 PM,05/24/2013 09:21:52 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:37 PM,Other,05/24/2013 09:25:28 PM,500 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7904631779771, -122.405941469147)",131440371-T13 -122740160,87,12090368,Medical Incident,09/30/2012,09/30/2012,09/30/2012 12:19:24 PM,09/30/2012 12:19:37 PM,09/30/2012 12:20:10 PM,09/30/2012 12:22:18 PM,09/30/2012 12:25:54 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,No Merit,09/30/2012 12:56:50 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",122740160-87 -122110222,B01,12070124,Structure Fire,07/29/2012,07/29/2012,07/29/2012 05:03:56 PM,07/29/2012 05:05:20 PM,07/29/2012 05:05:31 PM,07/29/2012 05:07:54 PM,07/29/2012 05:11:03 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 05:12:37 PM,0 Block of HOWARD ST,SF,94105,B03,35,2114,3,3,3,false,Fire,1,CHIEF,5,3,6,Financial District/South Beach,"(37.7916972492914, -122.392134062208)",122110222-B01 -103110317,54,10099862,Medical Incident,11/07/2010,11/07/2010,11/07/2010 08:06:13 PM,11/07/2010 08:07:30 PM,11/07/2010 08:07:49 PM,11/07/2010 08:08:07 PM,11/07/2010 08:13:07 PM,11/07/2010 08:41:48 PM,11/07/2010 09:07:26 PM,Code 2 Transport,11/07/2010 09:28:43 PM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,2,2,true,,1,MEDIC,1,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",103110317-54 -131270153,72,13042898,Medical Incident,05/07/2013,05/07/2013,05/07/2013 12:20:57 PM,05/07/2013 12:22:10 PM,05/07/2013 12:22:36 PM,05/07/2013 12:22:59 PM,05/07/2013 12:28:49 PM,05/07/2013 12:45:22 PM,05/07/2013 12:55:52 PM,Code 2 Transport,05/07/2013 01:33:23 PM,700 Block of THE EMBARCADERO,SF,94111,B01,13,915,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",131270153-72 -160870533,AM20,16034459,Medical Incident,03/27/2016,03/26/2016,03/27/2016 03:50:04 AM,03/27/2016 03:50:04 AM,03/27/2016 03:50:48 AM,03/27/2016 03:51:21 AM,03/27/2016 04:07:24 AM,03/27/2016 04:15:47 AM,03/27/2016 04:24:45 AM,Code 2 Transport,03/27/2016 05:05:16 AM,3RD ST/EVANS AV,San Francisco,94124,B10,25,6457,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",160870533-AM20 -160083829,52,16003440,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:09:49 PM,01/08/2016 10:12:40 PM,01/08/2016 10:12:59 PM,01/08/2016 10:13:10 PM,01/08/2016 10:27:18 PM,01/08/2016 10:40:22 PM,01/08/2016 10:42:07 PM,Code 2 Transport,01/08/2016 11:30:27 PM,1200 Block of 3RD AVE,San Francisco,94122,B05,12,7324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7647847701511, -122.459989357925)",160083829-52 -121540217,B02,12051010,Structure Fire,06/02/2012,06/02/2012,06/02/2012 02:53:14 PM,06/02/2012 02:54:38 PM,06/02/2012 02:54:56 PM,06/02/2012 02:56:37 PM,06/02/2012 02:57:12 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 03:12:10 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Fire,1,CHIEF,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121540217-B02 -110170007,E05,11005504,Alarms,01/17/2011,01/16/2011,01/17/2011 12:55:28 AM,01/17/2011 12:58:25 AM,01/17/2011 12:58:36 AM,01/17/2011 12:59:50 AM,01/17/2011 01:01:20 AM,04/25/2016 02:06:33 PM,04/25/2016 02:06:33 PM,Other,01/17/2011 01:06:59 AM,600 Block of LARCH ST,SF,94115,B02,5,3426,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",110170007-E05 -160263400,AM14,16010453,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:05:43 PM,01/26/2016 08:07:07 PM,01/26/2016 08:09:08 PM,01/26/2016 08:09:48 PM,01/26/2016 08:18:37 PM,01/26/2016 08:40:23 PM,01/26/2016 08:59:56 PM,Code 2 Transport,01/26/2016 09:41:44 PM,1200 Block of 44TH AVE,San Francisco,94122,B08,23,7654,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7633235426802, -122.503913503953)",160263400-AM14 -132970110,E03,13100820,Medical Incident,10/24/2013,10/24/2013,10/24/2013 10:09:09 AM,10/24/2013 10:09:37 AM,10/24/2013 10:09:50 AM,10/24/2013 10:10:26 AM,10/24/2013 10:14:43 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 10:17:14 AM,1600 Block of POST ST,SF,94115,B04,38,3364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Japantown,"(37.7856200211531, -122.428953785897)",132970110-E03 -160051595,65,16001984,Medical Incident,01/05/2016,01/05/2016,01/05/2016 12:24:30 PM,01/05/2016 12:25:11 PM,01/05/2016 12:25:28 PM,01/05/2016 12:25:35 PM,01/05/2016 12:28:34 PM,01/05/2016 12:49:07 PM,01/05/2016 01:12:23 PM,Code 2 Transport,01/05/2016 01:43:15 PM,1400 Block of WALLER ST,San Francisco,94117,B05,12,4512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.768862804, -122.44796773714)",160051595-65 -130050189,E05,13001719,Medical Incident,01/05/2013,01/05/2013,01/05/2013 12:28:21 PM,01/05/2013 12:29:51 PM,01/05/2013 12:30:11 PM,01/05/2013 12:31:15 PM,01/05/2013 12:33:41 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/05/2013 12:49:43 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",130050189-E05 -112600270,E05,11085816,Alarms,09/17/2011,09/17/2011,09/17/2011 03:42:23 PM,09/17/2011 03:43:10 PM,09/17/2011 03:43:26 PM,09/17/2011 03:44:51 PM,09/17/2011 03:45:26 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 03:54:08 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",112600270-E05 -160090864,66,16003570,Medical Incident,01/09/2016,01/09/2016,01/09/2016 08:56:26 AM,01/09/2016 09:00:50 AM,01/09/2016 09:01:13 AM,01/09/2016 09:01:40 AM,01/09/2016 09:09:42 AM,01/09/2016 10:38:01 AM,01/09/2016 10:50:18 AM,Code 2 Transport,01/09/2016 11:44:48 AM,0 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7264,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.779712004387, -122.503506925042)",160090864-66 -160870794,57,16034488,Medical Incident,03/27/2016,03/26/2016,03/27/2016 07:17:58 AM,03/27/2016 07:17:58 AM,03/27/2016 07:18:36 AM,03/27/2016 07:18:49 AM,03/27/2016 07:27:44 AM,03/27/2016 07:44:08 AM,03/27/2016 08:04:44 AM,Code 2 Transport,03/27/2016 08:22:14 AM,1000 Block of GEARY ST,San Francisco,94109,B02,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7857350982042, -122.420555240691)",160870794-57 -113640334,E08,11121030,Alarms,12/30/2011,12/30/2011,12/30/2011 07:56:45 PM,12/30/2011 07:57:23 PM,12/30/2011 07:58:01 PM,04/25/2016 02:00:53 PM,12/30/2011 08:01:15 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,Other,12/30/2011 08:11:33 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",113640334-E08 -160723051,70,16028750,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:03:50 PM,03/12/2016 08:04:08 PM,03/12/2016 08:17:20 PM,03/12/2016 08:17:32 PM,03/12/2016 08:20:37 PM,03/12/2016 08:36:28 PM,03/12/2016 08:49:18 PM,Code 2 Transport,03/12/2016 09:13:15 PM,1400 Block of VALENCIA ST,San Francisco,94110,B06,11,5535,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7497103477225, -122.420361382547)",160723051-70 -113260303,E09,11108328,Structure Fire,11/22/2011,11/22/2011,11/22/2011 05:37:32 PM,11/22/2011 05:38:19 PM,11/22/2011 05:38:30 PM,11/22/2011 05:39:28 PM,11/22/2011 05:42:10 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 05:47:24 PM,1300 Block of NEWHALL ST,SF,94124,B10,17,6471,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7359424972351, -122.391874407163)",113260303-E09 -102440049,E33,10076869,Medical Incident,09/01/2010,08/31/2010,09/01/2010 05:49:41 AM,09/01/2010 05:50:41 AM,09/01/2010 05:51:03 AM,09/01/2010 05:53:12 AM,09/01/2010 05:56:43 AM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,09/01/2010 06:15:23 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",102440049-E33 -121490306,E36,12049567,Structure Fire,05/28/2012,05/28/2012,05/28/2012 10:12:21 PM,05/28/2012 10:12:58 PM,05/28/2012 10:13:06 PM,05/28/2012 10:15:44 PM,05/28/2012 10:15:53 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 10:36:04 PM,1000 Block of NATOMA ST,SF,94103,B02,36,5114,3,3,3,true,Fire,1,ENGINE,1,2,6,Mission,"(37.7726058799466, -122.41701596481)",121490306-E36 -121750438,T07,12058331,Structure Fire,06/23/2012,06/23/2012,06/23/2012 11:37:22 PM,06/23/2012 11:37:23 PM,06/23/2012 11:37:39 PM,06/23/2012 11:39:46 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 11:41:09 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,false,Alarm,1,TRUCK,2,2,6,Mission,"(37.7726641818375, -122.418338317697)",121750438-T07 -120880130,KM02,12029141,Medical Incident,03/28/2012,03/28/2012,03/28/2012 10:54:34 AM,03/28/2012 10:57:33 AM,03/28/2012 10:57:57 AM,03/28/2012 10:58:38 AM,03/28/2012 11:06:11 AM,03/28/2012 11:30:10 AM,03/28/2012 11:45:44 AM,Code 2 Transport,03/28/2012 12:10:35 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",120880130-KM02 -122770189,87,12091521,Medical Incident,10/03/2012,10/03/2012,10/03/2012 12:03:30 PM,10/03/2012 12:05:15 PM,10/03/2012 12:06:02 PM,10/03/2012 12:06:48 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,04/25/2016 01:56:29 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122770189-87 -102530290,B07,10080026,Gas Leak (Natural and LP Gases),09/10/2010,09/10/2010,09/10/2010 04:44:25 PM,09/10/2010 04:46:58 PM,09/10/2010 04:47:03 PM,09/10/2010 04:49:56 PM,09/10/2010 04:51:15 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 05:02:00 PM,4300 Block of GEARY BLVD,SF,94118,B07,31,7135,3,3,3,false,,1,CHIEF,2,7,1,Inner Richmond,"(37.780820131608, -122.465882659599)",102530290-B07 -112280274,KM11,11075439,Medical Incident,08/16/2011,08/16/2011,08/16/2011 06:06:32 PM,08/16/2011 06:08:33 PM,08/16/2011 06:17:04 PM,08/16/2011 06:17:33 PM,08/16/2011 06:21:45 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Patient Declined Transport,08/16/2011 06:36:12 PM,OFARRELL ST/LEAVENWORTH ST,SF,94109,B04,3,1544,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",112280274-KM11 -160600046,57,16023718,Medical Incident,02/29/2016,02/28/2016,02/29/2016 12:18:35 AM,02/29/2016 12:20:14 AM,02/29/2016 12:21:55 AM,02/29/2016 12:22:37 AM,02/29/2016 12:26:16 AM,02/29/2016 12:36:24 AM,02/29/2016 12:40:33 AM,Code 3 Transport,02/29/2016 01:43:27 AM,3400 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7601573650684, -122.41958524775)",160600046-57 -132460347,E13,13083140,Medical Incident,09/03/2013,09/03/2013,09/03/2013 07:55:03 PM,09/03/2013 07:55:34 PM,09/03/2013 07:55:52 PM,09/03/2013 07:56:29 PM,09/03/2013 07:58:06 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/03/2013 08:12:50 PM,600 Block of DAVIS ST,SF,94111,B01,13,1131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7979952301231, -122.398446080847)",132460347-E13 -110720070,B02,11023626,Alarms,03/13/2011,03/12/2011,03/13/2011 04:28:13 AM,03/13/2011 04:30:01 AM,03/13/2011 04:30:24 AM,03/13/2011 04:32:14 AM,03/13/2011 04:37:14 AM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/13/2011 04:41:02 AM,100 Block of FREDERICK ST,SF,94117,B05,12,5143,3,3,3,false,,1,CHIEF,3,5,5,Haight Ashbury,"(37.7674287653791, -122.445149029242)",110720070-B02 -130400062,E08,13013557,Alarms,02/09/2013,02/08/2013,02/09/2013 03:22:21 AM,02/09/2013 03:23:51 AM,02/09/2013 03:23:57 AM,02/09/2013 03:24:56 AM,02/09/2013 03:27:29 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 03:32:45 AM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",130400062-E08 -160582965,77,16023237,Medical Incident,02/27/2016,02/27/2016,02/27/2016 06:28:01 PM,02/27/2016 06:29:37 PM,02/27/2016 06:31:03 PM,02/27/2016 06:31:18 PM,02/27/2016 06:37:05 PM,02/27/2016 06:51:38 PM,02/27/2016 06:59:53 PM,Code 2 Transport,02/27/2016 07:23:05 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160582965-77 -132040332,E07,13069222,Medical Incident,07/23/2013,07/23/2013,07/23/2013 07:35:34 PM,07/23/2013 07:37:48 PM,07/23/2013 07:38:23 PM,07/23/2013 07:39:25 PM,07/23/2013 07:43:11 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,No Merit,07/23/2013 07:47:18 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",132040332-E07 -132220346,67,13075102,Medical Incident,08/10/2013,08/10/2013,08/10/2013 08:25:49 PM,08/10/2013 08:29:28 PM,08/10/2013 08:30:10 PM,08/10/2013 08:30:43 PM,08/10/2013 08:35:48 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,Gone on Arrival,08/10/2013 08:38:24 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,1,1,2,false,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",132220346-67 -160032043,AM16,16001241,Medical Incident,01/03/2016,01/03/2016,01/03/2016 03:57:10 PM,01/03/2016 03:57:53 PM,01/03/2016 03:58:14 PM,01/03/2016 04:01:20 PM,01/03/2016 04:06:27 PM,01/03/2016 04:14:44 PM,01/03/2016 04:34:20 PM,Code 2 Transport,01/03/2016 05:00:33 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160032043-AM16 -112030165,E01,11066997,Medical Incident,07/22/2011,07/22/2011,07/22/2011 11:23:11 AM,07/22/2011 11:24:24 AM,07/22/2011 11:24:37 AM,07/22/2011 11:26:27 AM,07/22/2011 11:29:10 AM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,07/22/2011 11:39:24 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7803099082814, -122.407975093043)",112030165-E01 -132450174,KM10,13082666,Medical Incident,09/02/2013,09/02/2013,09/02/2013 12:26:16 PM,09/02/2013 12:27:41 PM,09/02/2013 12:28:33 PM,09/02/2013 12:29:05 PM,09/02/2013 12:35:34 PM,09/02/2013 12:50:07 PM,09/02/2013 01:04:37 PM,Code 2 Transport,09/02/2013 01:54:13 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",132450174-KM10 -122230109,E13,12073869,Medical Incident,08/10/2012,08/10/2012,08/10/2012 09:35:06 AM,08/10/2012 09:35:54 AM,08/10/2012 09:37:19 AM,08/10/2012 09:39:17 AM,08/10/2012 09:39:47 AM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 09:55:09 AM,100 Block of CLAY ST,SF,94111,B01,13,1133,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7953352957642, -122.397362199177)",122230109-E13 -132970086,E15,13100801,Medical Incident,10/24/2013,10/24/2013,10/24/2013 09:03:54 AM,10/24/2013 09:04:48 AM,10/24/2013 09:05:11 AM,04/25/2016 01:50:07 PM,10/24/2013 09:06:01 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 09:24:12 AM,0 Block of ASHTON AVE,SF,94112,B09,15,8434,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7193876630599, -122.462323615589)",132970086-E15 -111570368,55,11052066,Medical Incident,06/06/2011,06/06/2011,06/06/2011 09:39:42 PM,06/06/2011 09:42:47 PM,06/06/2011 09:43:05 PM,06/06/2011 09:43:12 PM,06/06/2011 09:51:09 PM,06/06/2011 10:02:58 PM,06/06/2011 10:21:55 PM,Code 2 Transport,06/06/2011 10:39:31 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",111570368-55 -112650442,74,11087715,Medical Incident,09/22/2011,09/22/2011,09/22/2011 10:39:42 PM,09/22/2011 10:42:22 PM,09/22/2011 10:42:37 PM,09/22/2011 10:43:36 PM,09/22/2011 10:45:52 PM,09/22/2011 11:10:44 PM,09/22/2011 11:16:01 PM,Code 2 Transport,09/22/2011 11:30:34 PM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",112650442-74 -110720107,58,11023656,Medical Incident,03/13/2011,03/12/2011,03/13/2011 07:49:20 AM,03/13/2011 07:50:31 AM,03/13/2011 07:50:52 AM,03/13/2011 07:51:08 AM,03/13/2011 07:55:07 AM,03/13/2011 08:23:05 AM,03/13/2011 08:28:37 AM,Code 2 Transport,03/13/2011 09:04:41 AM,1800 Block of CHESTNUT ST,SF,94123,B04,16,3445,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8010769361014, -122.433769037511)",110720107-58 -160782333,82,16031056,Medical Incident,03/18/2016,03/18/2016,03/18/2016 03:06:32 PM,03/18/2016 03:06:58 PM,03/18/2016 03:07:16 PM,03/18/2016 03:08:32 PM,03/18/2016 03:20:53 PM,03/18/2016 03:35:05 PM,03/18/2016 03:54:37 PM,Code 2 Transport,03/18/2016 04:22:25 PM,2400 Block of LOMBARD ST,San Francisco,94123,B04,16,4115,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7990040267659, -122.441795241204)",160782333-82 -160211660,KM09,16008367,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:24:33 PM,01/21/2016 12:25:24 PM,01/21/2016 12:27:06 PM,01/21/2016 12:27:06 PM,01/21/2016 12:36:58 PM,01/21/2016 12:48:36 PM,01/21/2016 12:56:08 PM,Code 2 Transport,01/21/2016 01:33:28 PM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,9,6375,2,2,2,false,Non Life-threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7442404121423, -122.40429562467)",160211660-KM09 -112740195,83,11090614,Medical Incident,10/01/2011,10/01/2011,10/01/2011 12:50:16 PM,10/01/2011 12:52:01 PM,10/01/2011 12:52:12 PM,10/01/2011 12:53:26 PM,10/01/2011 01:00:48 PM,10/01/2011 01:09:44 PM,10/01/2011 01:29:42 PM,Code 2 Transport,10/01/2011 01:52:56 PM,100 Block of ADDISON ST,SF,94131,B06,26,8122,E,E,3,true,,1,MEDIC,3,6,8,Glen Park,"(37.7378218134824, -122.432398313711)",112740195-83 -132070373,E08,13070250,Medical Incident,07/26/2013,07/26/2013,07/26/2013 11:46:40 PM,07/26/2013 11:49:04 PM,07/26/2013 11:49:27 PM,07/26/2013 11:51:43 PM,07/26/2013 11:53:32 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/27/2013 12:00:13 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132070373-E08 -140110270,94,14003923,Medical Incident,01/11/2014,01/11/2014,01/11/2014 07:08:20 PM,01/11/2014 07:09:00 PM,01/11/2014 07:09:25 PM,01/11/2014 07:09:30 PM,01/11/2014 07:22:09 PM,04/25/2016 01:48:46 PM,04/25/2016 01:48:46 PM,Other,01/11/2014 08:39:27 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",140110270-94 -110450385,59,11015101,Medical Incident,02/14/2011,02/14/2011,02/14/2011 10:42:59 PM,02/14/2011 10:43:49 PM,02/14/2011 10:44:16 PM,02/14/2011 10:45:13 PM,02/14/2011 10:44:29 PM,02/14/2011 11:15:36 PM,02/14/2011 11:22:19 PM,Code 2 Transport,02/14/2011 11:54:24 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",110450385-59 -160530684,53,16021102,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:19:22 AM,02/22/2016 08:20:51 AM,02/22/2016 08:22:25 AM,02/22/2016 08:22:34 AM,02/22/2016 08:29:16 AM,02/22/2016 08:50:01 AM,02/22/2016 08:56:54 AM,Code 2 Transport,02/22/2016 09:39:13 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160530684-53 -131390396,66,13047186,Medical Incident,05/19/2013,05/19/2013,05/19/2013 07:29:44 PM,05/19/2013 07:31:45 PM,05/19/2013 07:32:14 PM,05/19/2013 07:32:32 PM,05/19/2013 07:42:51 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 08:33:32 PM,500 Block of 9TH ST,SF,94103,B03,29,2331,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",131390396-66 -102840117,E36,10090368,Medical Incident,10/11/2010,10/11/2010,10/11/2010 09:47:20 AM,10/11/2010 09:49:47 AM,10/11/2010 10:02:03 AM,10/11/2010 10:03:33 AM,10/11/2010 10:05:01 AM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Other,10/11/2010 10:18:03 AM,12TH ST/MARKET ST,SF,94103,B02,36,3212,1,1,2,true,,1,ENGINE,1,2,6,Mission,"(37.7743586748127, -122.420254280324)",102840117-E36 -160793493,79,16031548,Medical Incident,03/19/2016,03/19/2016,03/19/2016 07:41:50 PM,03/19/2016 07:42:59 PM,03/19/2016 07:43:38 PM,03/19/2016 07:44:02 PM,03/19/2016 07:49:33 PM,03/19/2016 08:00:48 PM,03/19/2016 08:30:49 PM,Code 2 Transport,03/19/2016 09:27:41 PM,800 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.8024220415516, -122.413358845822)",160793493-79 -130790184,78,13026397,Medical Incident,03/20/2013,03/20/2013,03/20/2013 01:15:52 PM,03/20/2013 01:18:06 PM,03/20/2013 01:19:33 PM,03/20/2013 01:19:56 PM,03/20/2013 01:25:27 PM,03/20/2013 01:32:39 PM,03/20/2013 01:53:50 PM,Code 2 Transport,03/20/2013 02:09:49 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7845808066125, -122.414593411257)",130790184-78 -112970066,E43,11098427,Medical Incident,10/24/2011,10/23/2011,10/24/2011 07:12:39 AM,10/24/2011 07:13:26 AM,10/24/2011 07:13:41 AM,10/24/2011 07:15:24 AM,10/24/2011 07:17:51 AM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 07:26:41 AM,200 Block of CONCORD ST,SF,94112,B09,43,6231,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7100041242948, -122.441693918266)",112970066-E43 -160173093,53,16006992,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:35:32 PM,01/17/2016 08:41:12 PM,01/17/2016 08:41:58 PM,01/17/2016 08:42:09 PM,01/17/2016 08:46:32 PM,01/17/2016 09:20:50 PM,01/17/2016 09:26:07 PM,Code 2 Transport,01/17/2016 10:10:14 PM,MASONIC AV/HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160173093-53 -102930361,E05,10093597,Medical Incident,10/20/2010,10/20/2010,10/20/2010 10:43:21 PM,10/20/2010 10:46:04 PM,10/20/2010 10:47:02 PM,10/20/2010 10:48:06 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/20/2010 11:05:04 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,3,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",102930361-E05 -121050127,B04,12034718,Alarms,04/14/2012,04/14/2012,04/14/2012 09:38:17 AM,04/14/2012 09:40:04 AM,04/14/2012 09:40:22 AM,04/14/2012 09:40:58 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 09:46:01 AM,3500 Block of CLAY ST,SF,94118,B07,10,4426,3,3,3,false,Alarm,1,CHIEF,2,7,2,Presidio Heights,"(37.7884880782921, -122.451292376621)",121050127-B04 -112450290,E43,11080851,Medical Incident,09/02/2011,09/02/2011,09/02/2011 05:18:32 PM,09/02/2011 05:18:53 PM,09/02/2011 05:19:20 PM,09/02/2011 05:20:38 PM,09/02/2011 05:21:58 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 05:31:23 PM,1100 Block of RUSSIA AVE,SF,94112,B09,43,6162,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7172355261764, -122.427935917515)",112450290-E43 -160061011,63,16002324,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:40:36 AM,01/06/2016 09:42:52 AM,01/06/2016 09:43:03 AM,01/06/2016 09:44:01 AM,01/06/2016 09:47:32 AM,01/06/2016 10:07:12 AM,01/06/2016 10:48:38 AM,Code 2 Transport,01/06/2016 11:02:24 AM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160061011-63 -120120045,59,12003998,Medical Incident,01/12/2012,01/11/2012,01/12/2012 04:33:19 AM,01/12/2012 04:34:17 AM,01/12/2012 04:34:32 AM,01/12/2012 04:35:27 AM,01/12/2012 04:38:54 AM,01/12/2012 04:59:26 AM,01/12/2012 05:13:52 AM,Code 2 Transport,01/12/2012 05:33:48 AM,200 Block of OCTAVIA ST,SF,94102,B02,36,3313,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745930151123, -122.424320630004)",120120045-59 -120090365,AM10,12003265,Medical Incident,01/09/2012,01/09/2012,01/09/2012 08:21:51 PM,01/09/2012 08:22:31 PM,01/09/2012 08:23:03 PM,01/09/2012 08:23:53 PM,01/09/2012 08:27:24 PM,01/09/2012 08:44:45 PM,01/09/2012 09:01:32 PM,Code 2 Transport,01/09/2012 09:31:02 PM,300 Block of GRAFTON AVE,SF,94112,B09,15,8464,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7199768471741, -122.456645658566)",120090365-AM10 -130910323,AM08,13030568,Medical Incident,04/01/2013,04/01/2013,04/01/2013 06:42:39 PM,04/01/2013 06:45:44 PM,04/01/2013 06:47:03 PM,04/01/2013 06:52:21 PM,04/01/2013 06:58:13 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Medical Examiner,04/01/2013 07:41:13 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",130910323-AM08 -111470012,E10,11048646,Medical Incident,05/27/2011,05/26/2011,05/27/2011 01:02:23 AM,05/27/2011 01:03:06 AM,05/27/2011 01:03:35 AM,05/27/2011 01:05:32 AM,05/27/2011 01:08:01 AM,04/25/2016 02:04:26 PM,04/25/2016 02:04:26 PM,Other,05/27/2011 01:15:34 AM,1400 Block of BRODERICK ST,SF,94115,B05,10,4235,3,3,3,true,,1,ENGINE,1,5,2,Japantown,"(37.7838654796396, -122.441370226887)",111470012-E10 -160900652,KM08,16035611,Medical Incident,03/30/2016,03/29/2016,03/30/2016 07:41:22 AM,03/30/2016 07:42:02 AM,03/30/2016 07:42:27 AM,03/30/2016 07:42:36 AM,03/30/2016 08:02:14 AM,03/30/2016 08:02:16 AM,03/30/2016 08:18:57 AM,Code 2 Transport,03/30/2016 08:39:27 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160900652-KM08 -120740048,89,12024445,Medical Incident,03/14/2012,03/13/2012,03/14/2012 05:54:38 AM,03/14/2012 05:55:13 AM,03/14/2012 05:57:09 AM,03/14/2012 05:57:38 AM,03/14/2012 06:17:56 AM,03/14/2012 06:25:48 AM,03/14/2012 06:42:16 AM,Code 2 Transport,03/14/2012 07:03:00 AM,0 Block of JONES ST,SF,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",120740048-89 -130780409,E28,13026226,Outside Fire,03/19/2013,03/19/2013,03/19/2013 10:11:14 PM,03/19/2013 10:11:15 PM,03/19/2013 10:11:31 PM,03/19/2013 10:13:31 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 10:17:57 PM,1300 Block of THE EMBARCADERO,SF,94111,B01,28,929,3,3,3,false,Alarm,1,ENGINE,2,1,3,North Beach,"(37.8060708761545, -122.404376747731)",130780409-E28 -121340285,T18,12044706,Structure Fire,05/13/2012,05/13/2012,05/13/2012 08:30:12 PM,05/13/2012 08:31:54 PM,05/13/2012 08:32:14 PM,05/13/2012 08:34:46 PM,05/13/2012 08:37:14 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 09:00:45 PM,3400 Block of TARAVAL ST,SF,94116,B08,18,7665,3,3,3,false,Fire,1,TRUCK,5,8,4,Sunset/Parkside,"(37.7417826200945, -122.503008914688)",121340285-T18 -160483881,KM07,16019528,Medical Incident,02/17/2016,02/17/2016,02/17/2016 09:51:56 PM,02/17/2016 09:53:17 PM,02/17/2016 09:54:25 PM,02/17/2016 09:55:01 PM,02/17/2016 10:01:08 PM,02/17/2016 10:24:29 PM,02/17/2016 10:31:00 PM,Code 3 Transport,02/17/2016 11:24:42 PM,900 Block of GREENWICH ST,San Francisco,94133,B01,28,1514,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Russian Hill,"(37.8015015067263, -122.415530627533)",160483881-KM07 -123150307,AM12,12104945,Medical Incident,11/10/2012,11/10/2012,11/10/2012 07:09:21 PM,11/10/2012 07:11:20 PM,11/10/2012 07:12:58 PM,11/10/2012 07:14:03 PM,11/10/2012 07:20:54 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,No Merit,11/10/2012 07:28:07 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",123150307-AM12 -122680034,93,12088409,Medical Incident,09/24/2012,09/23/2012,09/24/2012 02:19:15 AM,09/24/2012 02:21:03 AM,09/24/2012 02:21:45 AM,04/25/2016 01:56:37 PM,09/24/2012 02:22:12 AM,09/24/2012 02:48:01 AM,09/24/2012 02:52:52 AM,Code 2 Transport,09/24/2012 03:14:37 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",122680034-93 -131540107,E36,13052094,Medical Incident,06/03/2013,06/03/2013,06/03/2013 09:10:15 AM,06/03/2013 09:10:43 AM,06/03/2013 09:11:01 AM,06/03/2013 09:13:24 AM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/03/2013 09:15:26 AM,1200 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",131540107-E36 -160340543,63,16013260,Medical Incident,02/03/2016,02/02/2016,02/03/2016 07:12:47 AM,02/03/2016 07:14:16 AM,02/03/2016 07:15:23 AM,02/03/2016 07:15:34 AM,02/03/2016 07:32:09 AM,02/03/2016 07:44:58 AM,02/03/2016 08:23:34 AM,Code 2 Transport,02/03/2016 08:53:44 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160340543-63 -130920112,AM12,13030746,Medical Incident,04/02/2013,04/02/2013,04/02/2013 09:47:31 AM,04/02/2013 09:49:12 AM,04/02/2013 09:49:47 AM,04/02/2013 09:50:28 AM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,Unable to Locate,04/02/2013 10:01:52 AM,500 Block of BRANNAN ST,SF,94107,B03,8,2241,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7774865325812, -122.397691886789)",130920112-AM12 -140950296,RC1,14032043,Medical Incident,04/05/2014,04/05/2014,04/05/2014 05:41:53 PM,04/05/2014 05:43:19 PM,04/05/2014 05:46:37 PM,04/05/2014 05:48:15 PM,04/05/2014 05:51:17 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Code 2 Transport,04/05/2014 06:08:16 PM,800 Block of JACKSON ST,SAN FRANCISCO,94108,B01,2,136,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",140950296-RC1 -122310300,E01,12076711,Medical Incident,08/18/2012,08/18/2012,08/18/2012 07:42:00 PM,08/18/2012 07:42:45 PM,08/18/2012 07:45:02 PM,08/18/2012 07:45:50 PM,08/18/2012 07:49:13 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 07:55:25 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122310300-E01 -131020031,KM15,13034154,Medical Incident,04/12/2013,04/11/2013,04/12/2013 03:32:36 AM,04/12/2013 03:34:26 AM,04/12/2013 03:35:22 AM,04/12/2013 03:37:44 AM,04/12/2013 03:44:42 AM,04/12/2013 03:57:37 AM,04/12/2013 04:14:59 AM,Code 2 Transport,04/12/2013 04:51:05 AM,0 Block of MAXWELL CT,SF,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Mission,"(37.7669025720969, -122.423141850936)",131020031-KM15 -140810292,RC3,14027458,Medical Incident,03/22/2014,03/22/2014,03/22/2014 06:53:47 PM,03/22/2014 06:54:06 PM,03/22/2014 07:02:24 PM,03/22/2014 07:03:02 PM,03/22/2014 07:11:12 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Code 2 Transport,03/22/2014 07:32:55 PM,200 Block of HAHN ST,SAN FRANCISCO,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",140810292-RC3 -120200210,95,12006706,Medical Incident,01/20/2012,01/20/2012,01/20/2012 02:09:38 PM,01/20/2012 02:10:15 PM,01/20/2012 02:10:25 PM,01/20/2012 02:10:34 PM,01/20/2012 02:14:22 PM,01/20/2012 02:38:15 PM,01/20/2012 02:51:44 PM,Code 2 Transport,01/20/2012 03:23:58 PM,IRVING ST/14TH AV,SF,94122,B08,22,7366,3,2,2,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7638016485067, -122.471667792686)",120200210-95 -160190385,AM24,16007475,Medical Incident,01/19/2016,01/18/2016,01/19/2016 04:23:05 AM,01/19/2016 04:25:53 AM,01/19/2016 04:26:09 AM,01/19/2016 04:26:51 AM,01/19/2016 04:36:47 AM,01/19/2016 05:02:00 AM,01/19/2016 05:35:17 AM,Code 2 Transport,01/19/2016 05:54:17 AM,100 Block of COLBY ST,San Francisco,94134,B09,42,6355,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7282977345446, -122.41378862357)",160190385-AM24 -102600158,RC1,10082148,Medical Incident,09/17/2010,09/17/2010,09/17/2010 12:00:27 PM,09/17/2010 12:02:31 PM,09/17/2010 12:03:44 PM,09/17/2010 12:07:00 PM,09/17/2010 12:09:44 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 12:18:09 PM,800 Block of CLAY ST,SF,94108,B01,13,1313,E,E,3,true,,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7942850258424, -122.406574058341)",102600158-RC1 -132460247,D3,13083053,Structure Fire,09/03/2013,09/03/2013,09/03/2013 03:30:24 PM,09/03/2013 03:31:22 PM,09/03/2013 03:31:45 PM,09/03/2013 03:32:50 PM,09/03/2013 03:37:57 PM,04/25/2016 01:50:59 PM,04/25/2016 01:50:59 PM,Other,09/03/2013 03:39:49 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,false,Alarm,1,CHIEF,8,3,6,South of Market,"(37.7821372491619, -122.397814506334)",132460247-D3 -160442207,KM05,16017741,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:43:41 PM,02/13/2016 03:44:37 PM,02/13/2016 03:45:36 PM,02/13/2016 03:46:13 PM,02/13/2016 03:56:10 PM,02/13/2016 04:09:44 PM,02/13/2016 04:29:46 PM,Code 2 Transport,02/13/2016 05:23:16 PM,100 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7373636780892, -122.422094532922)",160442207-KM05 -130130081,B01,13004339,Alarms,01/13/2013,01/12/2013,01/13/2013 03:40:37 AM,01/13/2013 03:42:04 AM,01/13/2013 03:43:06 AM,01/13/2013 03:45:24 AM,01/13/2013 03:46:26 AM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/13/2013 03:49:39 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,CHIEF,2,1,3,North Beach,"(37.7980497141877, -122.406829909619)",130130081-B01 -160743540,67,16029467,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:15:28 PM,03/14/2016 08:15:57 PM,03/14/2016 08:16:59 PM,03/14/2016 08:17:10 PM,03/14/2016 08:27:25 PM,03/14/2016 08:51:23 PM,03/14/2016 08:56:33 PM,Code 2 Transport,03/14/2016 09:32:17 PM,1300 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3625,2,2,2,false,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7795136005399, -122.432784844959)",160743540-67 -113060294,E19,11101738,Structure Fire,11/02/2011,11/02/2011,11/02/2011 05:13:46 PM,11/02/2011 05:13:46 PM,11/02/2011 05:13:51 PM,11/02/2011 05:13:59 PM,11/02/2011 05:15:32 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Fire,11/02/2011 05:16:12 PM,39TH AV/SLOAT BL,SF,94132,B08,19,7615,3,3,3,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7337708444532, -122.496635995855)",113060294-E19 -120360164,74,12011975,Medical Incident,02/05/2012,02/05/2012,02/05/2012 11:27:14 AM,02/05/2012 11:27:49 AM,02/05/2012 11:28:07 AM,02/05/2012 11:28:20 AM,02/05/2012 11:30:07 AM,02/05/2012 11:47:32 AM,02/05/2012 11:57:14 AM,Code 2 Transport,02/05/2012 12:29:57 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",120360164-74 -110880170,T19,11029039,Odor (Strange / Unknown),03/29/2011,03/29/2011,03/29/2011 12:08:52 PM,03/29/2011 12:12:24 PM,03/29/2011 12:12:41 PM,03/29/2011 12:13:51 PM,03/29/2011 12:16:01 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 12:28:55 PM,0 Block of MELBA AVE,SF,94132,B08,19,8733,3,3,3,false,,1,TRUCK,2,8,7,Sunset/Parkside,"(37.731861855303, -122.478229737952)",110880170-T19 -123240245,T06,12107777,Structure Fire,11/19/2012,11/19/2012,11/19/2012 02:36:07 PM,11/19/2012 02:36:07 PM,11/19/2012 02:36:32 PM,11/19/2012 02:37:25 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Fire,11/19/2012 02:39:27 PM,16TH ST/GUERRERO ST,SF,94103,B02,6,5235,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.7647834522541, -122.424102685064)",123240245-T06 -102590174,E42,10081799,Medical Incident,09/16/2010,09/16/2010,09/16/2010 11:11:06 AM,09/16/2010 11:11:23 AM,09/16/2010 11:11:38 AM,09/16/2010 11:12:11 AM,09/16/2010 11:16:50 AM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 11:17:15 AM,300 Block of SILVER AVE,SF,94112,B09,32,6113,3,3,3,true,,1,ENGINE,3,9,11,Excelsior,"(37.7285946897788, -122.428439970042)",102590174-E42 -102420090,89,10076251,Traffic Collision,08/30/2010,08/30/2010,08/30/2010 09:16:36 AM,08/30/2010 09:17:32 AM,08/30/2010 09:17:45 AM,08/30/2010 09:18:12 AM,08/30/2010 09:22:43 AM,08/30/2010 09:40:10 AM,08/30/2010 09:43:11 AM,Code 2 Transport,08/30/2010 10:12:07 AM,TURK BL/STANYAN BL,SF,94118,B07,21,4557,2,2,2,true,,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7775992781141, -122.455216941832)",102420090-89 -160293081,89,16011545,Medical Incident,01/29/2016,01/29/2016,01/29/2016 07:29:22 PM,01/29/2016 07:30:22 PM,01/29/2016 07:30:51 PM,01/29/2016 07:31:34 PM,01/29/2016 07:36:47 PM,01/29/2016 07:49:42 PM,01/29/2016 08:05:17 PM,Code 2 Transport,01/29/2016 08:42:16 PM,9TH ST/MCLEA CT,San Francisco,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7717321060888, -122.409083148236)",160293081-89 -160320416,AM02,16012446,Medical Incident,02/01/2016,01/31/2016,02/01/2016 05:26:01 AM,02/01/2016 05:28:18 AM,02/01/2016 05:28:43 AM,02/01/2016 05:29:38 AM,02/01/2016 05:40:38 AM,02/01/2016 05:47:01 AM,02/01/2016 06:04:32 AM,Code 2 Transport,02/01/2016 06:42:58 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160320416-AM02 -160533041,89,16021350,Medical Incident,02/22/2016,02/22/2016,02/22/2016 07:22:07 PM,02/22/2016 07:24:05 PM,02/22/2016 07:25:01 PM,02/22/2016 07:25:13 PM,02/22/2016 07:34:04 PM,02/22/2016 07:49:13 PM,02/22/2016 08:08:54 PM,Code 2 Transport,02/22/2016 08:19:53 PM,BOSWORTH ST/DIAMOND ST,San Francisco,94131,B06,26,8146,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",160533041-89 -132770049,55,13093974,Medical Incident,10/04/2013,10/03/2013,10/04/2013 04:30:18 AM,10/04/2013 04:32:20 AM,10/04/2013 04:32:39 AM,10/04/2013 04:34:04 AM,10/04/2013 04:33:45 AM,10/04/2013 05:08:21 AM,10/04/2013 05:25:44 AM,Code 2 Transport,10/04/2013 05:41:37 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",132770049-55 -160051822,KM08,16002008,Medical Incident,01/05/2016,01/05/2016,01/05/2016 01:24:58 PM,01/05/2016 01:26:57 PM,01/05/2016 01:27:22 PM,01/05/2016 01:28:13 PM,01/05/2016 01:36:42 PM,01/05/2016 01:53:17 PM,01/05/2016 02:17:54 PM,Code 2 Transport,01/05/2016 02:58:58 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160051822-KM08 -160894021,88,16035529,Citizen Assist / Service Call,03/29/2016,03/29/2016,03/29/2016 11:11:06 PM,03/29/2016 11:13:21 PM,03/29/2016 11:24:20 PM,03/29/2016 11:24:28 PM,03/29/2016 11:30:43 PM,03/29/2016 11:55:23 PM,03/30/2016 12:25:11 AM,Code 2 Transport,03/30/2016 01:01:52 AM,900 Block of PERSIA AVE,San Francisco,94112,B09,43,6156,3,3,3,true,Alarm,1,MEDIC,2,9,11,Excelsior,"(37.7194711719256, -122.428434619546)",160894021-88 -160140164,89,16005409,Medical Incident,01/14/2016,01/13/2016,01/14/2016 01:42:56 AM,01/14/2016 01:44:03 AM,01/14/2016 01:45:07 AM,01/14/2016 01:45:24 AM,01/14/2016 01:51:38 AM,01/14/2016 02:11:03 AM,01/14/2016 02:23:12 AM,Code 2 Transport,01/14/2016 02:56:40 AM,100 Block of CAMBON DR,San Francisco,94132,B08,19,8428,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",160140164-89 -140840292,88,14028406,Medical Incident,03/25/2014,03/25/2014,03/25/2014 07:04:17 PM,03/25/2014 07:04:43 PM,03/25/2014 07:05:55 PM,03/25/2014 07:06:28 PM,03/25/2014 07:10:46 PM,03/25/2014 07:29:21 PM,03/25/2014 08:01:13 PM,Code 2 Transport,03/25/2014 08:18:52 PM,MISSION ST/18TH ST,SAN FRANCISCO,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",140840292-88 -112620357,54,11086600,Medical Incident,09/19/2011,09/19/2011,09/19/2011 07:09:11 PM,09/19/2011 07:10:06 PM,09/19/2011 07:10:51 PM,09/19/2011 07:11:19 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 07:11:49 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,MEDIC,4,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",112620357-54 -113420247,T03,11113443,Medical Incident,12/08/2011,12/08/2011,12/08/2011 03:38:36 PM,12/08/2011 03:40:14 PM,12/08/2011 03:40:27 PM,12/08/2011 03:41:33 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/08/2011 03:44:29 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",113420247-T03 -160121267,60,16004737,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:44:33 AM,01/12/2016 10:45:09 AM,01/12/2016 10:46:08 AM,01/12/2016 10:46:18 AM,01/12/2016 10:51:22 AM,01/12/2016 11:05:59 AM,01/12/2016 11:08:03 AM,Code 2 Transport,01/12/2016 11:48:34 AM,3600 Block of 26TH ST,San Francisco,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7488664417822, -122.421932997192)",160121267-60 -132450375,81,13082844,Medical Incident,09/02/2013,09/02/2013,09/02/2013 11:21:01 PM,09/02/2013 11:21:30 PM,09/02/2013 11:21:46 PM,09/02/2013 11:21:56 PM,09/02/2013 11:23:27 PM,09/02/2013 11:42:30 PM,09/03/2013 12:03:55 AM,Code 2 Transport,09/03/2013 12:12:18 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",132450375-81 -160362343,62,16014295,Medical Incident,02/05/2016,02/05/2016,02/05/2016 02:36:42 PM,02/05/2016 02:37:51 PM,02/05/2016 02:39:37 PM,02/05/2016 02:39:37 PM,02/05/2016 02:47:14 PM,02/05/2016 03:10:06 PM,02/05/2016 03:32:07 PM,Code 2 Transport,02/05/2016 03:58:25 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160362343-62 -122570140,E13,12084915,Medical Incident,09/13/2012,09/13/2012,09/13/2012 11:48:06 AM,09/13/2012 11:49:21 AM,09/13/2012 11:50:20 AM,09/13/2012 11:50:33 AM,09/13/2012 12:00:15 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Patient Declined Transport,09/13/2012 11:57:05 AM,PACIFIC AV/SANSOME ST,SF,94111,B01,13,1212,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.797504944425, -122.402040985024)",122570140-E13 -123330137,E23,12110620,Electrical Hazard,11/28/2012,11/28/2012,11/28/2012 10:38:29 AM,11/28/2012 10:40:33 AM,11/28/2012 10:41:09 AM,11/28/2012 10:42:10 AM,11/28/2012 10:51:27 AM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Fire,11/28/2012 10:53:05 AM,42ND AV/ORTEGA ST,SF,94116,B08,23,7646,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7512863954104, -122.500987488737)",123330137-E23 -122880074,E44,12095190,Medical Incident,10/14/2012,10/13/2012,10/14/2012 05:42:43 AM,10/14/2012 05:43:53 AM,10/14/2012 05:44:12 AM,10/14/2012 05:46:05 AM,10/14/2012 05:49:58 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 06:10:05 AM,0 Block of HERITAGE LN,SF,94134,B09,44,6252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7098510364224, -122.412232276093)",122880074-E44 -132770266,E05,13094145,Medical Incident,10/04/2013,10/04/2013,10/04/2013 02:59:28 PM,10/04/2013 03:01:05 PM,10/04/2013 03:01:34 PM,10/04/2013 03:02:27 PM,10/04/2013 03:03:52 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 03:08:07 PM,1200 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7809536061691, -122.432303015867)",132770266-E05 -120330353,T03,12011058,Structure Fire,02/02/2012,02/02/2012,02/02/2012 08:47:36 PM,02/02/2012 08:47:36 PM,02/02/2012 08:47:51 PM,02/02/2012 08:48:54 PM,02/02/2012 08:49:56 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/02/2012 08:50:09 PM,VAN NESS AV/BUSH ST,SF,94109,B04,3,3156,3,3,3,false,Alarm,1,TRUCK,1,4,2,Nob Hill,"(37.7884896423018, -122.421948587259)",120330353-T03 -121030397,T16,12034304,Alarms,04/12/2012,04/12/2012,04/12/2012 11:53:04 PM,04/12/2012 11:55:56 PM,04/12/2012 11:56:06 PM,04/12/2012 11:58:11 PM,04/13/2012 12:02:54 AM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/13/2012 12:08:14 AM,1000 Block of CHESTNUT ST,SF,94109,B01,28,1613,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8027567621753, -122.420626980703)",121030397-T16 -160912123,75,16036108,Medical Incident,03/31/2016,03/31/2016,03/31/2016 02:47:51 PM,03/31/2016 02:50:10 PM,03/31/2016 02:50:29 PM,03/31/2016 02:50:35 PM,03/31/2016 03:03:13 PM,03/31/2016 03:18:08 PM,03/31/2016 03:48:50 PM,Code 2 Transport,03/31/2016 04:03:48 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160912123-75 -160160388,71,16006280,Medical Incident,01/16/2016,01/15/2016,01/16/2016 03:08:01 AM,01/16/2016 03:08:01 AM,01/16/2016 03:08:12 AM,01/16/2016 03:08:17 AM,01/16/2016 03:15:20 AM,01/16/2016 03:33:51 AM,01/16/2016 03:33:51 AM,Code 2 Transport,01/16/2016 04:27:42 AM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160160388-71 -112700045,E36,11089122,Medical Incident,09/27/2011,09/26/2011,09/27/2011 06:34:11 AM,09/27/2011 06:34:52 AM,09/27/2011 06:35:31 AM,09/27/2011 06:36:52 AM,09/27/2011 06:39:08 AM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/27/2011 06:56:09 AM,0 Block of JULIAN AVE,SF,94103,B02,36,5215,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7673951722732, -122.421202249523)",112700045-E36 -112090264,E06,11069070,Medical Incident,07/28/2011,07/28/2011,07/28/2011 04:30:30 PM,07/28/2011 04:35:55 PM,07/28/2011 04:36:40 PM,07/28/2011 04:37:54 PM,07/28/2011 04:39:38 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 04:57:05 PM,100 Block of COLLINGWOOD ST,SF,94114,B05,6,5415,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7600276029721, -122.435966427346)",112090264-E06 -160010334,53,16000059,Medical Incident,01/01/2016,12/31/2015,01/01/2016 01:11:17 AM,01/01/2016 01:13:37 AM,01/01/2016 01:17:58 AM,01/01/2016 01:18:23 AM,01/01/2016 01:23:21 AM,01/01/2016 01:41:08 AM,01/01/2016 02:11:25 AM,Code 2 Transport,01/01/2016 02:44:40 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160010334-53 -121940034,E03,12064430,Medical Incident,07/12/2012,07/11/2012,07/12/2012 02:27:41 AM,07/12/2012 02:29:14 AM,07/12/2012 02:29:47 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/12/2012 02:30:44 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",121940034-E03 -160213580,82,16008536,Medical Incident,01/21/2016,01/21/2016,01/21/2016 07:59:52 PM,01/21/2016 08:01:32 PM,01/21/2016 08:02:25 PM,01/21/2016 08:02:59 PM,01/21/2016 08:06:45 PM,01/21/2016 08:18:27 PM,01/21/2016 08:22:18 PM,Code 2 Transport,01/21/2016 09:02:27 PM,1900 Block of POST ST,San Francisco,94115,B04,5,3622,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7850500973338, -122.434328328397)",160213580-82 -160840407,AM22,16033243,Medical Incident,03/24/2016,03/23/2016,03/24/2016 05:05:12 AM,03/24/2016 05:06:22 AM,03/24/2016 05:07:27 AM,03/24/2016 05:08:09 AM,03/24/2016 05:20:21 AM,03/24/2016 05:27:01 AM,03/24/2016 05:33:43 AM,Code 2 Transport,03/24/2016 06:12:55 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",160840407-AM22 -110510209,E13,11016908,Medical Incident,02/20/2011,02/20/2011,02/20/2011 01:43:54 PM,02/20/2011 01:44:42 PM,02/20/2011 01:44:52 PM,02/20/2011 01:45:54 PM,02/20/2011 01:47:49 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 02:04:13 PM,700 Block of CLAY ST,SF,94108,B01,13,1313,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.794250188811, -122.405973153434)",110510209-E13 -112040223,55,11067425,Medical Incident,07/23/2011,07/23/2011,07/23/2011 03:13:25 PM,07/23/2011 03:14:19 PM,07/23/2011 03:14:46 PM,07/23/2011 03:14:58 PM,07/23/2011 03:16:49 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 03:19:53 PM,200 Block of SHIPLEY ST,SF,94107,B03,1,2244,3,E,3,true,,1,MEDIC,1,3,6,South of Market,"(37.779377841254, -122.403313163388)",112040223-55 -102730168,B06,10086668,Explosion,09/30/2010,09/30/2010,09/30/2010 12:01:45 PM,09/30/2010 12:04:11 PM,09/30/2010 12:04:54 PM,09/30/2010 12:06:27 PM,09/30/2010 12:10:12 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Other,09/30/2010 12:14:18 PM,5300 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,false,,1,CHIEF,3,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",102730168-B06 -160502978,BT01,16020207,Medical Incident,02/19/2016,02/19/2016,02/19/2016 06:19:32 PM,02/19/2016 06:21:42 PM,02/19/2016 06:44:04 PM,02/19/2016 06:44:04 PM,02/19/2016 07:12:53 PM,02/19/2016 07:12:56 PM,02/19/2016 07:37:17 PM,Code 2 Transport,02/19/2016 08:20:02 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,4,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160502978-BT01 -140670217,66,14022708,Medical Incident,03/08/2014,03/08/2014,03/08/2014 02:49:19 PM,03/08/2014 02:50:45 PM,03/08/2014 02:51:32 PM,03/08/2014 02:52:43 PM,03/08/2014 03:01:32 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Patient Declined Transport,03/08/2014 04:18:29 PM,1100 Block of HOWARD ST,SAN FRANCISCO,94103,B03,1,2314,3,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",140670217-66 -112010340,E36,11066396,Structure Fire,07/20/2011,07/20/2011,07/20/2011 06:30:28 PM,07/20/2011 06:31:33 PM,07/20/2011 06:31:47 PM,07/20/2011 06:35:38 PM,07/20/2011 06:38:19 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/20/2011 09:15:57 PM,400 Block of WALLER ST,SF,94117,B05,6,3526,3,3,3,true,,2,ENGINE,8,5,5,Hayes Valley,"(37.7711232914316, -122.431093526308)",112010340-E36 -122950036,81,12097716,Medical Incident,10/21/2012,10/20/2012,10/21/2012 01:54:31 AM,10/21/2012 01:56:52 AM,10/21/2012 02:01:19 AM,10/21/2012 02:01:29 AM,10/21/2012 02:15:25 AM,10/21/2012 02:21:54 AM,10/21/2012 02:38:12 AM,Code 2 Transport,10/21/2012 03:05:22 AM,200 Block of 13TH ST,SF,94103,B02,36,5123,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",122950036-81 -160130814,67,16005099,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:36:25 AM,01/13/2016 08:38:36 AM,01/13/2016 08:41:49 AM,01/13/2016 08:41:49 AM,01/13/2016 08:52:04 AM,01/13/2016 09:06:25 AM,01/13/2016 09:11:42 AM,Code 2 Transport,01/13/2016 10:14:28 AM,14TH ST/MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",160130814-67 -123140313,55,12104603,Medical Incident,11/09/2012,11/09/2012,11/09/2012 06:30:43 PM,11/09/2012 06:31:33 PM,11/09/2012 06:39:13 PM,11/09/2012 06:45:19 PM,11/09/2012 06:57:31 PM,11/09/2012 07:09:42 PM,11/09/2012 07:28:37 PM,Code 2 Transport,11/09/2012 08:00:44 PM,0 Block of HARDING RD,SF,94132,B08,19,8713,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248174091742, -122.497764890771)",123140313-55 -133410142,FB1,13115578,Other,12/07/2013,12/07/2013,12/07/2013 10:15:48 AM,12/07/2013 10:15:48 AM,12/07/2013 10:15:48 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/07/2013 10:18:35 AM,3200 Block of VAN NESS AVE,SF,94109,B04,28,3143,3,3,3,false,Alarm,1,SUPPORT,1,1,2,Russian Hill,"(37.805550799113, -122.425219186379)",133410142-FB1 -122750039,66,12090618,Medical Incident,10/01/2012,09/30/2012,10/01/2012 02:47:21 AM,10/01/2012 02:48:09 AM,10/01/2012 02:48:22 AM,10/01/2012 02:49:02 AM,10/01/2012 02:54:12 AM,10/01/2012 03:20:50 AM,10/01/2012 03:37:57 AM,Code 2 Transport,10/01/2012 04:00:25 AM,300 Block of CORNWALL ST,SF,94118,B07,31,7125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7848265144375, -122.462945569942)",122750039-66 -102830383,68,10090232,Medical Incident,10/10/2010,10/10/2010,10/10/2010 10:03:03 PM,10/10/2010 10:03:53 PM,10/10/2010 10:04:01 PM,10/10/2010 10:04:44 PM,10/10/2010 10:09:57 PM,10/10/2010 10:30:34 PM,10/10/2010 10:57:24 PM,Code 2 Transport,10/10/2010 11:27:42 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",102830383-68 -132260057,89,13076197,Medical Incident,08/14/2013,08/13/2013,08/14/2013 05:28:40 AM,08/14/2013 05:29:16 AM,08/14/2013 05:29:33 AM,08/14/2013 05:30:14 AM,08/14/2013 05:35:09 AM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Patient Declined Transport,08/14/2013 05:47:47 AM,800 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7591210187575, -122.390401159216)",132260057-89 -160410408,81,16016309,Medical Incident,02/10/2016,02/09/2016,02/10/2016 05:29:48 AM,02/10/2016 05:30:38 AM,02/10/2016 05:31:38 AM,02/10/2016 05:31:52 AM,02/10/2016 05:38:45 AM,02/10/2016 05:53:33 AM,02/10/2016 06:04:13 AM,Code 2 Transport,02/10/2016 06:37:41 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160410408-81 -121580122,T08,12052230,Medical Incident,06/06/2012,06/06/2012,06/06/2012 10:25:27 AM,06/06/2012 10:27:34 AM,06/06/2012 10:32:23 AM,06/06/2012 10:33:07 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/06/2012 10:33:37 AM,600 Block of NELSON RISING LN,SF,94158,B03,8,2264,2,2,2,false,Potentially Life-Threatening,1,TRUCK,3,3,6,Mission Bay,"(37.7695557600647, -122.391895275784)",121580122-T08 -160242656,50,16009618,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:47:33 PM,01/24/2016 05:47:33 PM,01/24/2016 05:48:55 PM,01/24/2016 05:49:01 PM,01/24/2016 06:08:20 PM,01/24/2016 06:21:45 PM,01/24/2016 06:38:48 PM,Code 2 Transport,01/24/2016 06:57:55 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160242656-50 -160861930,KM04,16034192,Medical Incident,03/26/2016,03/26/2016,03/26/2016 02:01:36 PM,03/26/2016 02:01:36 PM,03/26/2016 02:02:51 PM,03/26/2016 02:03:17 PM,03/26/2016 02:09:38 PM,03/26/2016 02:24:33 PM,03/26/2016 02:44:49 PM,Code 2 Transport,03/26/2016 03:18:58 PM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",160861930-KM04 -160240889,86,16009469,Medical Incident,01/24/2016,01/24/2016,01/24/2016 08:48:43 AM,01/24/2016 08:50:31 AM,01/24/2016 08:50:54 AM,01/24/2016 08:51:05 AM,01/24/2016 09:10:22 AM,01/24/2016 09:32:28 AM,01/24/2016 09:51:58 AM,Code 2 Transport,01/24/2016 10:22:50 AM,900 Block of POWELL ST,San Francisco,94108,B01,2,1355,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",160240889-86 -102310030,T07,10072584,Alarms,08/19/2010,08/18/2010,08/19/2010 04:22:50 AM,08/19/2010 04:23:42 AM,08/19/2010 04:23:52 AM,08/19/2010 04:25:59 AM,08/19/2010 04:28:05 AM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/19/2010 04:34:26 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,TRUCK,2,2,9,Mission,"(37.7628776667056, -122.419528998826)",102310030-T07 -131760274,89,13059783,Medical Incident,06/25/2013,06/25/2013,06/25/2013 04:11:23 PM,06/25/2013 04:12:35 PM,06/25/2013 04:14:45 PM,06/25/2013 04:14:50 PM,06/25/2013 04:28:17 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,No Merit,06/25/2013 04:37:57 PM,200 Block of BARNEVELD AVE,SF,94124,B10,9,6412,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7450485716234, -122.402839684407)",131760274-89 -121470032,55,12048679,Structure Fire,05/26/2012,05/25/2012,05/26/2012 03:06:55 AM,05/26/2012 03:07:26 AM,05/26/2012 03:08:02 AM,05/26/2012 03:10:17 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/26/2012 03:18:42 AM,100 Block of MONTEREY BLVD,SF,94131,B09,26,8214,3,3,3,true,Fire,1,MEDIC,10,9,7,West of Twin Peaks,"(37.7316893715611, -122.438596825877)",121470032-55 -132930075,E15,13099631,Medical Incident,10/20/2013,10/19/2013,10/20/2013 07:17:45 AM,10/20/2013 07:18:08 AM,10/20/2013 07:18:50 AM,10/20/2013 07:21:04 AM,10/20/2013 07:23:21 AM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/20/2013 07:25:23 AM,100 Block of OCEAN AVE,SF,94112,B09,15,8274,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7234953610946, -122.440465803423)",132930075-E15 -121540244,E07,12051037,Outside Fire,06/02/2012,06/02/2012,06/02/2012 04:20:15 PM,06/02/2012 04:22:29 PM,06/02/2012 04:22:47 PM,06/02/2012 04:24:05 PM,06/02/2012 04:30:02 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Fire,06/02/2012 04:31:12 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Fire,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",121540244-E07 -113380223,E09,11112045,Medical Incident,12/04/2011,12/04/2011,12/04/2011 01:58:35 PM,12/04/2011 02:00:32 PM,12/04/2011 02:00:45 PM,12/04/2011 02:01:35 PM,12/04/2011 02:03:15 PM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/04/2011 02:09:42 PM,2900 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5621,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7484547781028, -122.408302107239)",113380223-E09 -112390297,B01,11078969,Alarms,08/27/2011,08/27/2011,08/27/2011 07:01:53 PM,08/27/2011 07:02:39 PM,08/27/2011 07:02:53 PM,08/27/2011 07:05:20 PM,08/27/2011 07:05:25 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 07:07:38 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,,1,CHIEF,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",112390297-B01 -160380681,54,16015091,Medical Incident,02/07/2016,02/06/2016,02/07/2016 04:31:34 AM,02/07/2016 04:33:56 AM,02/07/2016 04:34:16 AM,02/07/2016 04:34:34 AM,02/07/2016 04:38:37 AM,02/07/2016 05:12:03 AM,02/07/2016 05:12:13 AM,Code 2 Transport,02/07/2016 05:49:50 AM,HAIGHT ST/COLE ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",160380681-54 -102690315,83,10085418,Medical Incident,09/26/2010,09/26/2010,09/26/2010 06:31:00 PM,09/26/2010 06:31:03 PM,09/26/2010 06:31:46 PM,09/26/2010 06:32:07 PM,09/26/2010 06:48:51 PM,09/26/2010 07:06:35 PM,09/26/2010 07:19:48 PM,Code 2 Transport,09/26/2010 07:46:51 PM,4200 Block of JUDAH ST,SF,94122,B08,23,7723,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7604082847224, -122.507537232671)",102690315-83 -131940104,78,13065891,Medical Incident,07/13/2013,07/13/2013,07/13/2013 09:51:46 AM,07/13/2013 09:53:37 AM,07/13/2013 09:53:57 AM,07/13/2013 09:54:23 AM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,No Merit,07/13/2013 10:00:30 AM,OAK ST/VAN NESS AV,SF,94102,B02,36,3211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7754222208411, -122.419396890552)",131940104-78 -160831910,75,16032951,Medical Incident,03/23/2016,03/23/2016,03/23/2016 01:00:51 PM,03/23/2016 01:02:21 PM,03/23/2016 01:02:58 PM,03/23/2016 01:03:16 PM,03/23/2016 01:17:54 PM,03/23/2016 01:26:01 PM,03/23/2016 01:42:32 PM,Code 2 Transport,03/23/2016 02:06:51 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160831910-75 -102760365,56,10087894,Medical Incident,10/03/2010,10/03/2010,10/03/2010 09:11:02 PM,10/03/2010 09:14:49 PM,10/03/2010 09:15:43 PM,10/03/2010 09:16:02 PM,10/03/2010 09:22:02 PM,10/03/2010 09:38:34 PM,10/03/2010 10:22:23 PM,Code 2 Transport,10/03/2010 10:50:18 PM,300 Block of 6TH ST,SF,94107,B03,1,2253,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7783257854366, -122.405292833796)",102760365-56 -160603178,60,16024057,Medical Incident,02/29/2016,02/29/2016,02/29/2016 07:41:15 PM,02/29/2016 07:44:01 PM,02/29/2016 07:44:25 PM,02/29/2016 07:44:41 PM,02/29/2016 07:48:14 PM,02/29/2016 07:57:09 PM,02/29/2016 08:11:37 PM,Code 2 Transport,02/29/2016 08:58:55 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",160603178-60 -122760002,E16,12090965,Electrical Hazard,10/02/2012,10/01/2012,10/02/2012 12:11:30 AM,10/02/2012 12:15:46 AM,10/02/2012 12:16:31 AM,10/02/2012 12:18:17 AM,10/02/2012 12:23:22 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 12:38:12 AM,3500 Block of BAKER ST,SF,94123,B04,16,4316,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8037419514407, -122.447072180508)",122760002-E16 -102380363,E41,10075211,Structure Fire,08/26/2010,08/26/2010,08/26/2010 09:27:26 PM,08/26/2010 09:27:27 PM,08/26/2010 09:27:32 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 09:29:10 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,ENGINE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",102380363-E41 -133150201,86,13107080,Medical Incident,11/11/2013,11/11/2013,11/11/2013 11:59:43 AM,11/11/2013 11:59:43 AM,11/11/2013 12:00:16 PM,11/11/2013 12:00:37 PM,11/11/2013 12:09:34 PM,11/11/2013 12:30:33 PM,11/11/2013 12:51:59 PM,Code 2 Transport,11/11/2013 01:23:33 PM,100 Block of LOBOS ST,SF,94112,B09,33,8372,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7148631962455, -122.457556576704)",133150201-86 -122020137,E22,12067072,Medical Incident,07/20/2012,07/20/2012,07/20/2012 10:04:17 AM,07/20/2012 10:05:50 AM,07/20/2012 10:06:15 AM,07/20/2012 10:07:26 AM,07/20/2012 10:10:17 AM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 10:29:09 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",122020137-E22 -110380208,KM02,11012597,Traffic Collision,02/07/2011,02/07/2011,02/07/2011 12:12:26 PM,02/07/2011 12:12:45 PM,02/07/2011 12:14:44 PM,02/07/2011 12:15:21 PM,02/07/2011 12:19:35 PM,02/07/2011 12:42:38 PM,02/07/2011 12:59:35 PM,Code 2 Transport,02/07/2011 01:29:35 PM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,2,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",110380208-KM02 -113440076,E03,11114033,Medical Incident,12/10/2011,12/09/2011,12/10/2011 06:58:37 AM,12/10/2011 06:59:15 AM,12/10/2011 06:59:54 AM,04/25/2016 02:01:14 PM,12/10/2011 07:04:57 AM,04/25/2016 02:01:14 PM,04/25/2016 02:01:14 PM,Other,12/10/2011 07:01:52 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",113440076-E03 -113240071,82,11107518,Medical Incident,11/20/2011,11/19/2011,11/20/2011 04:33:23 AM,11/20/2011 04:33:47 AM,11/20/2011 04:34:27 AM,11/20/2011 04:34:46 AM,11/20/2011 04:44:24 AM,11/20/2011 05:05:23 AM,11/20/2011 05:21:50 AM,Code 2 Transport,11/20/2011 05:35:43 AM,100 Block of DELTA ST,SF,94134,B10,44,6311,3,3,3,true,,1,MEDIC,2,9,10,McLaren Park,"(37.7161899028319, -122.40823080546)",113240071-82 -160421032,59,16016797,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:34:03 AM,02/11/2016 09:37:20 AM,02/11/2016 09:37:40 AM,02/11/2016 09:39:46 AM,02/11/2016 09:48:27 AM,02/11/2016 09:59:52 AM,02/11/2016 10:20:02 AM,Code 2 Transport,02/11/2016 11:01:41 AM,500 Block of ALEMANY SB BL,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7321672240642, -122.421283760907)",160421032-59 -140560047,E51,14018790,Structure Fire,02/25/2014,02/24/2014,02/25/2014 05:04:34 AM,02/25/2014 05:05:24 AM,02/25/2014 05:06:26 AM,02/25/2014 05:08:28 AM,02/25/2014 05:11:23 AM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,Fire,02/25/2014 05:12:38 AM,0 Block of CERVANTES BLVD,SF,94123,B04,16,3564,3,3,3,true,Fire,1,ENGINE,4,4,2,Marina,"(37.8036341301778, -122.438303387855)",140560047-E51 -102800062,E36,10088915,Medical Incident,10/07/2010,10/06/2010,10/07/2010 07:21:33 AM,10/07/2010 07:23:03 AM,10/07/2010 07:23:26 AM,10/07/2010 07:24:46 AM,10/07/2010 07:25:33 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/07/2010 07:28:40 AM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",102800062-E36 -132010164,E13,13068143,Alarms,07/20/2013,07/20/2013,07/20/2013 11:25:25 AM,07/20/2013 11:26:39 AM,07/20/2013 11:26:46 AM,07/20/2013 11:27:25 AM,07/20/2013 11:27:38 AM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 11:39:58 AM,500 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",132010164-E13 -103650246,T03,10117147,Structure Fire,12/31/2010,12/31/2010,12/31/2010 05:30:38 PM,12/31/2010 05:30:38 PM,12/31/2010 05:30:50 PM,12/31/2010 05:31:48 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 05:33:43 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",103650246-T03 -102970223,E21,10094793,Medical Incident,10/24/2010,10/24/2010,10/24/2010 11:57:47 AM,10/24/2010 11:59:12 AM,10/24/2010 11:59:32 AM,10/24/2010 12:02:34 PM,10/24/2010 12:06:39 PM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 12:16:36 PM,3000 Block of TURK BLVD,SF,94118,B07,21,4557,3,3,3,false,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7776036224907, -122.455644134908)",102970223-E21 -112740085,79,11090529,Medical Incident,10/01/2011,09/30/2011,10/01/2011 05:40:56 AM,10/01/2011 05:41:56 AM,10/01/2011 05:43:13 AM,10/01/2011 05:43:26 AM,10/01/2011 05:45:28 AM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Patient Declined Transport,10/01/2011 06:25:01 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,MEDIC,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",112740085-79 -122920183,RC2,12096740,Structure Fire,10/18/2012,10/18/2012,10/18/2012 12:10:17 PM,10/18/2012 12:10:55 PM,10/18/2012 12:11:01 PM,10/18/2012 12:20:28 PM,10/18/2012 12:26:05 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 12:30:58 PM,1100 Block of SCOTT ST,SF,94115,B05,5,4133,3,3,3,true,Fire,1,RESCUE CAPTAIN,7,5,5,Western Addition,"(37.7803432529788, -122.437097623047)",122920183-RC2 -123590194,E03,12120195,Alarms,12/24/2012,12/24/2012,12/24/2012 02:21:42 PM,12/24/2012 02:23:19 PM,12/24/2012 02:23:31 PM,12/24/2012 02:24:17 PM,12/24/2012 02:33:00 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 02:41:34 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",123590194-E03 -160472250,KM11,16018973,Medical Incident,02/16/2016,02/16/2016,02/16/2016 02:54:23 PM,02/16/2016 02:54:23 PM,02/16/2016 02:58:07 PM,02/16/2016 02:58:44 PM,02/16/2016 03:06:59 PM,02/16/2016 03:14:42 PM,02/16/2016 03:30:46 PM,Code 2 Transport,02/16/2016 03:54:37 PM,OFARRELL ST/POLK ST,San Francisco,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",160472250-KM11 -120200409,65,12006877,Medical Incident,01/20/2012,01/20/2012,01/20/2012 09:46:30 PM,01/20/2012 09:48:07 PM,01/20/2012 09:48:18 PM,01/20/2012 09:48:51 PM,01/20/2012 09:56:17 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Unable to Locate,01/20/2012 10:00:32 PM,EDDY ST/MASON ST,SF,94102,B03,1,1366,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",120200409-65 -140070211,77,14002508,Medical Incident,01/07/2014,01/07/2014,01/07/2014 01:27:47 PM,01/07/2014 01:28:28 PM,01/07/2014 01:29:28 PM,01/07/2014 01:30:03 PM,01/07/2014 01:52:57 PM,01/07/2014 02:04:11 PM,01/07/2014 02:35:52 PM,Code 2 Transport,01/07/2014 02:43:10 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",140070211-77 -132840120,E03,13096563,Medical Incident,10/11/2013,10/11/2013,10/11/2013 10:23:23 AM,10/11/2013 10:24:19 AM,10/11/2013 10:24:28 AM,10/11/2013 10:24:37 AM,10/11/2013 10:28:08 AM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/11/2013 10:47:26 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132840120-E03 -131430301,E23,13048597,Structure Fire,05/23/2013,05/23/2013,05/23/2013 06:02:27 PM,05/23/2013 06:03:46 PM,05/23/2013 06:04:10 PM,05/23/2013 06:05:12 PM,05/23/2013 06:06:23 PM,04/25/2016 01:52:39 PM,04/25/2016 01:52:39 PM,Other,05/23/2013 08:18:01 PM,4300 Block of KIRKHAM ST,SF,94122,B08,23,7717,3,3,3,false,Fire,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7585441184385, -122.507405939677)",131430301-E23 -112680176,99,11088568,Medical Incident,09/25/2011,09/25/2011,09/25/2011 12:02:48 PM,09/25/2011 12:03:28 PM,09/25/2011 12:03:45 PM,09/25/2011 12:03:53 PM,09/25/2011 12:10:54 PM,09/25/2011 12:22:36 PM,09/25/2011 12:48:30 PM,Code 2 Transport,09/25/2011 01:00:40 PM,200 Block of MUNICH ST,SF,94112,B09,43,6163,3,3,3,true,,1,MEDIC,1,9,11,Excelsior,"(37.721623443374, -122.426180850853)",112680176-99 -122700199,E38,12089136,Citizen Assist / Service Call,09/26/2012,09/26/2012,09/26/2012 03:11:30 PM,09/26/2012 03:12:24 PM,09/26/2012 03:12:33 PM,09/26/2012 03:13:40 PM,09/26/2012 03:15:12 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/26/2012 03:17:38 PM,SACRAMENTO ST/FILLMORE ST,SF,94115,B04,38,3544,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7898369713314, -122.43402709034)",122700199-E38 -111580248,E12,11052294,Alarms,06/07/2011,06/07/2011,06/07/2011 03:52:21 PM,06/07/2011 03:53:23 PM,06/07/2011 03:53:29 PM,06/07/2011 03:54:55 PM,06/07/2011 03:57:10 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/07/2011 04:00:08 PM,1500 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7699569621575, -122.447767291261)",111580248-E12 -111680182,B06,11055394,Structure Fire,06/17/2011,06/17/2011,06/17/2011 01:41:30 PM,06/17/2011 01:42:26 PM,06/17/2011 01:42:50 PM,06/17/2011 01:43:23 PM,06/17/2011 01:47:08 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 01:55:42 PM,500 Block of CHURCH ST,SF,94114,B02,6,5421,3,3,3,false,,1,CHIEF,6,2,8,Castro/Upper Market,"(37.7624845773087, -122.428538964654)",111680182-B06 -160812196,59,16032225,Medical Incident,03/21/2016,03/21/2016,03/21/2016 02:51:09 PM,03/21/2016 02:51:46 PM,03/21/2016 02:52:15 PM,03/21/2016 02:53:06 PM,03/21/2016 03:14:54 PM,03/21/2016 03:31:01 PM,03/21/2016 03:47:57 PM,Code 2 Transport,03/21/2016 04:19:10 PM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160812196-59 -131730068,94,13058607,Medical Incident,06/22/2013,06/21/2013,06/22/2013 07:18:55 AM,06/22/2013 07:20:01 AM,06/22/2013 07:20:17 AM,06/22/2013 07:20:27 AM,04/25/2016 01:52:10 PM,06/22/2013 07:40:01 AM,06/22/2013 07:51:38 AM,Code 2 Transport,06/22/2013 08:19:53 AM,100 Block of APTOS AVE,SF,94127,B09,15,8535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7292555680166, -122.466867374325)",131730068-94 -160192074,KM04,16007666,Medical Incident,01/19/2016,01/19/2016,01/19/2016 02:19:08 PM,01/19/2016 02:21:16 PM,01/19/2016 02:21:33 PM,01/19/2016 02:21:59 PM,01/19/2016 02:35:22 PM,01/19/2016 02:49:31 PM,01/19/2016 03:10:57 PM,Code 2 Transport,01/19/2016 03:37:49 PM,CYRIL MAGNIN ST/MARKET ST,San Francisco,94103,B03,1,1364,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160192074-KM04 -103160337,RA48,10101411,Traffic Collision,11/12/2010,11/12/2010,11/12/2010 08:41:49 PM,11/12/2010 08:42:34 PM,11/12/2010 08:43:10 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,Other,11/12/2010 08:50:07 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,,1,MEDIC,4,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",103160337-RA48 -160393345,68,16015786,Medical Incident,02/08/2016,02/08/2016,02/08/2016 08:23:48 PM,02/08/2016 08:25:20 PM,02/08/2016 08:25:47 PM,02/08/2016 08:26:42 PM,02/08/2016 08:40:09 PM,02/08/2016 08:59:15 PM,02/08/2016 09:20:00 PM,Code 2 Transport,02/08/2016 09:58:25 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160393345-68 -131730346,81,13058855,Medical Incident,06/22/2013,06/22/2013,06/22/2013 09:26:18 PM,06/22/2013 09:28:17 PM,06/22/2013 09:32:42 PM,06/22/2013 09:32:47 PM,06/22/2013 09:38:11 PM,06/22/2013 09:48:34 PM,06/22/2013 10:15:13 PM,Code 2 Transport,06/22/2013 10:16:28 PM,900 Block of POLK ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",131730346-81 -140630397,B04,14021465,Alarms,03/04/2014,03/04/2014,03/04/2014 10:23:36 PM,03/04/2014 10:25:11 PM,03/04/2014 10:25:45 PM,03/04/2014 10:27:03 PM,03/04/2014 10:30:37 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 10:31:36 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",140630397-B04 -140790179,KM10,14026712,Medical Incident,03/20/2014,03/20/2014,03/20/2014 12:40:43 PM,03/20/2014 12:41:51 PM,03/20/2014 12:42:22 PM,03/20/2014 12:44:36 PM,03/20/2014 12:47:08 PM,03/20/2014 01:11:04 PM,04/25/2016 01:47:39 PM,Code 2 Transport,03/20/2014 01:49:52 PM,2100 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5822,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7632442446227, -122.419425525666)",140790179-KM10 -131540383,88,13052334,Structure Fire,06/03/2013,06/03/2013,06/03/2013 09:32:19 PM,06/03/2013 09:33:31 PM,06/03/2013 09:34:02 PM,06/03/2013 09:34:14 PM,06/03/2013 09:36:26 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 09:40:18 PM,26TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,true,Alarm,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7510546072658, -122.398340781947)",131540383-88 -160742230,57,16029376,Medical Incident,03/14/2016,03/14/2016,03/14/2016 02:43:32 PM,03/14/2016 02:43:45 PM,03/14/2016 02:44:51 PM,03/14/2016 02:45:04 PM,03/14/2016 02:47:44 PM,03/14/2016 03:09:02 PM,03/14/2016 03:11:54 PM,Code 3 Transport,03/14/2016 04:19:16 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160742230-57 -110730160,T13,11023990,Structure Fire,03/14/2011,03/14/2011,03/14/2011 11:31:57 AM,03/14/2011 11:32:58 AM,03/14/2011 11:33:32 AM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 11:47:19 AM,100 Block of DRUMM ST,SF,94111,B01,13,1115,3,3,3,false,,1,TRUCK,9,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",110730160-T13 -132100297,B02,13071120,Alarms,07/29/2013,07/29/2013,07/29/2013 05:06:24 PM,07/29/2013 05:07:35 PM,07/29/2013 05:08:11 PM,07/29/2013 05:09:07 PM,07/29/2013 05:12:35 PM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,Other,07/29/2013 05:15:18 PM,900 Block of PIERCE ST,SF,94115,B05,5,3642,3,3,3,false,Alarm,1,CHIEF,2,5,5,Western Addition,"(37.7786701136711, -122.435215027214)",132100297-B02 -121550054,E03,12051207,Medical Incident,06/03/2012,06/02/2012,06/03/2012 02:55:26 AM,06/03/2012 02:56:05 AM,06/03/2012 02:56:32 AM,06/03/2012 02:57:39 AM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 02:59:17 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",121550054-E03 -122740046,55,12090268,Traffic Collision,09/30/2012,09/29/2012,09/30/2012 03:53:07 AM,09/30/2012 03:53:41 AM,09/30/2012 03:54:15 AM,04/25/2016 01:56:32 PM,09/30/2012 04:02:02 AM,09/30/2012 04:10:22 AM,09/30/2012 04:21:23 AM,Code 2 Transport,09/30/2012 03:54:40 AM,100 Block of PAUL AVE,SF,94124,B09,44,6311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.722697633179, -122.397167021381)",122740046-55 -111830211,E22,11060460,Smoke Investigation (Outside),07/02/2011,07/02/2011,07/02/2011 03:31:11 PM,07/02/2011 03:31:56 PM,07/02/2011 03:32:52 PM,07/02/2011 03:34:49 PM,07/02/2011 03:35:52 PM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,07/02/2011 03:37:48 PM,1500 Block of 19TH AVE,SF,94122,B08,22,7423,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7588956344045, -122.476892326601)",111830211-E22 -111440250,T05,11047913,Medical Incident,05/24/2011,05/24/2011,05/24/2011 04:49:44 PM,05/24/2011 04:51:57 PM,05/24/2011 04:53:49 PM,05/24/2011 04:55:39 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/24/2011 04:56:56 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,false,,1,TRUCK,3,2,5,Western Addition,"(37.781585403105, -122.423090188841)",111440250-T05 -160751494,87,16029689,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:45:55 AM,03/15/2016 11:46:46 AM,03/15/2016 11:46:59 AM,03/15/2016 11:47:06 AM,03/15/2016 11:49:16 AM,03/15/2016 12:07:21 PM,03/15/2016 12:22:51 PM,Code 2 Transport,03/15/2016 12:50:24 PM,15TH ST/NOE ST,San Francisco,94114,B05,6,5232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7658616276668, -122.433255474794)",160751494-87 -140960028,75,14032176,Medical Incident,04/06/2014,04/05/2014,04/06/2014 01:27:42 AM,04/06/2014 01:29:21 AM,04/06/2014 01:30:44 AM,04/06/2014 01:30:52 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Other,04/25/2016 01:47:22 PM,KANSAS ST/24TH ST,SAN FRANCISCO,94107,B10,37,2622,E,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7532360272665, -122.402436075845)",140960028-75 -160462634,65,16018595,Medical Incident,02/15/2016,02/15/2016,02/15/2016 05:00:56 PM,02/15/2016 05:01:26 PM,02/15/2016 05:01:50 PM,02/15/2016 05:01:59 PM,02/15/2016 05:10:56 PM,02/15/2016 05:14:15 PM,02/15/2016 05:19:28 PM,Code 2 Transport,02/15/2016 06:07:22 PM,MARKET ST/OFARRELL ST,San Francisco,94103,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,6,Financial District/South Beach,"(37.7867305655456, -122.4045833182)",160462634-65 -110990058,B04,11032769,Structure Fire,04/09/2011,04/08/2011,04/09/2011 04:12:25 AM,04/09/2011 04:13:06 AM,04/09/2011 04:13:34 AM,04/09/2011 04:14:56 AM,04/09/2011 04:17:51 AM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/09/2011 05:27:55 AM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,,1,CHIEF,6,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",110990058-B04 -160061718,54,16002395,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:42:23 PM,01/06/2016 12:43:55 PM,01/06/2016 12:44:11 PM,01/06/2016 12:44:20 PM,01/06/2016 12:50:00 PM,01/06/2016 01:31:31 PM,01/06/2016 01:51:56 PM,Code 2 Transport,01/06/2016 02:04:06 PM,200 Block of GARFIELD ST,San Francisco,94132,B09,33,8433,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7196338742624, -122.464908315092)",160061718-54 -140550229,E41,14018614,Medical Incident,02/24/2014,02/24/2014,02/24/2014 03:23:35 PM,02/24/2014 03:24:09 PM,02/24/2014 03:24:32 PM,04/25/2016 01:48:02 PM,02/24/2014 03:27:08 PM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,Code 2 Transport,02/24/2014 03:36:04 PM,HYDE ST/UNION ST,SF,94109,B01,41,1611,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.7991984384536, -122.419048780367)",140550229-E41 -121080030,E05,12035648,Alarms,04/17/2012,04/16/2012,04/17/2012 04:26:17 AM,04/17/2012 04:27:23 AM,04/17/2012 04:27:31 AM,04/17/2012 04:29:18 AM,04/17/2012 04:31:56 AM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,Other,04/17/2012 04:34:01 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,true,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",121080030-E05 -133410285,68,13115708,Medical Incident,12/07/2013,12/07/2013,12/07/2013 05:33:45 PM,12/07/2013 05:34:39 PM,12/07/2013 05:35:33 PM,12/07/2013 05:35:54 PM,12/07/2013 05:53:53 PM,12/07/2013 06:01:50 PM,12/07/2013 06:10:02 PM,Code 2 Transport,12/07/2013 06:25:15 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",133410285-68 -140010389,E10,14000319,Structure Fire,01/01/2014,01/01/2014,01/01/2014 01:06:47 PM,01/01/2014 01:06:47 PM,01/01/2014 01:07:20 PM,01/01/2014 01:08:25 PM,01/01/2014 01:10:46 PM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 01:11:25 PM,2400 Block of LYON ST,SF,94123,B04,10,4333,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7932944271794, -122.446448206967)",140010389-E10 -140210158,E22,14007163,Medical Incident,01/21/2014,01/21/2014,01/21/2014 12:40:44 PM,01/21/2014 12:42:10 PM,01/21/2014 12:42:39 PM,01/21/2014 12:43:55 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/21/2014 12:44:25 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",140210158-E22 -123000254,57,12099501,Medical Incident,10/26/2012,10/26/2012,10/26/2012 05:06:26 PM,10/26/2012 05:10:31 PM,10/26/2012 05:12:47 PM,10/26/2012 05:13:06 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/26/2012 05:20:46 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",123000254-57 -160492704,57,16019805,Medical Incident,02/18/2016,02/18/2016,02/18/2016 04:52:36 PM,02/18/2016 04:53:30 PM,02/18/2016 04:53:51 PM,02/18/2016 04:54:00 PM,02/18/2016 05:01:23 PM,02/18/2016 05:07:13 PM,02/18/2016 05:30:58 PM,Code 2 Transport,02/18/2016 06:28:48 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160492704-57 -160823838,88,16032755,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:47:01 PM,03/22/2016 09:48:45 PM,03/22/2016 09:50:10 PM,03/22/2016 09:50:57 PM,03/22/2016 10:01:52 PM,03/22/2016 10:11:39 PM,03/22/2016 10:18:35 PM,Code 2 Transport,03/22/2016 10:55:12 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7622785491179, -122.419332516291)",160823838-88 -160843847,53,16033548,Medical Incident,03/24/2016,03/24/2016,03/24/2016 08:40:50 PM,03/24/2016 08:41:53 PM,03/24/2016 08:42:18 PM,03/24/2016 08:42:26 PM,03/24/2016 08:44:50 PM,03/24/2016 09:08:02 PM,03/24/2016 09:26:43 PM,Code 2 Transport,03/24/2016 10:06:09 PM,300 Block of BAY SHORE BLVD,San Francisco,94110,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",160843847-53 -130900361,85,13030276,Medical Incident,03/31/2013,03/31/2013,03/31/2013 11:26:28 PM,03/31/2013 11:28:34 PM,03/31/2013 11:28:58 PM,03/31/2013 11:29:08 PM,03/31/2013 11:37:22 PM,04/01/2013 12:50:41 AM,04/01/2013 01:01:20 AM,Code 2 Transport,04/01/2013 01:32:49 AM,1700 Block of BUSH ST,SF,94109,B04,38,3255,1,1,2,false,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",130900361-85 -160793070,79,16031502,Medical Incident,03/19/2016,03/19/2016,03/19/2016 05:52:03 PM,03/19/2016 05:52:15 PM,03/19/2016 05:52:57 PM,03/19/2016 05:53:10 PM,03/19/2016 06:02:51 PM,03/19/2016 06:24:55 PM,03/19/2016 06:49:18 PM,Code 2 Transport,03/19/2016 07:35:23 PM,800 Block of GARFIELD ST,San Francisco,94132,B09,19,8447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7197041547524, -122.470302710071)",160793070-79 -160680897,62,16027044,Medical Incident,03/08/2016,03/08/2016,03/08/2016 09:13:43 AM,03/08/2016 09:13:43 AM,03/08/2016 09:14:04 AM,03/08/2016 09:14:18 AM,03/08/2016 09:22:40 AM,03/08/2016 09:42:24 AM,03/08/2016 09:47:23 AM,Code 2 Transport,03/08/2016 10:14:09 AM,200 Block of ASHBURY ST,San Francisco,94117,B05,21,4514,2,3,3,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7732528987589, -122.447660921878)",160680897-62 -160531829,AM06,16021221,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:57:00 PM,02/22/2016 01:57:40 PM,02/22/2016 01:58:37 PM,02/22/2016 01:59:42 PM,02/22/2016 02:03:14 PM,02/22/2016 02:26:26 PM,02/22/2016 02:36:58 PM,Code 2 Transport,02/22/2016 03:25:12 PM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160531829-AM06 -110680187,E02,11022363,Medical Incident,03/09/2011,03/09/2011,03/09/2011 12:23:36 PM,03/09/2011 12:24:32 PM,03/09/2011 12:24:45 PM,03/09/2011 12:25:02 PM,03/09/2011 12:25:56 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/09/2011 12:32:07 PM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,2,2,true,,1,ENGINE,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",110680187-E02 -122410046,KM07,12079658,Medical Incident,08/28/2012,08/27/2012,08/28/2012 05:49:36 AM,08/28/2012 05:51:14 AM,08/28/2012 05:52:03 AM,08/28/2012 05:54:10 AM,08/28/2012 06:00:12 AM,08/28/2012 06:17:31 AM,08/28/2012 06:20:12 AM,Other,08/28/2012 06:47:48 AM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",122410046-KM07 -132280213,E36,13076973,Medical Incident,08/16/2013,08/16/2013,08/16/2013 01:04:31 PM,08/16/2013 01:07:17 PM,08/16/2013 01:07:31 PM,08/16/2013 01:09:04 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,Other,08/16/2013 01:12:09 PM,3200 Block of 17TH ST,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7635887638425, -122.417913861876)",132280213-E36 -122820069,E08,12093256,Medical Incident,10/08/2012,10/08/2012,10/08/2012 08:02:33 AM,10/08/2012 08:03:57 AM,10/08/2012 08:04:32 AM,10/08/2012 08:06:20 AM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/08/2012 08:07:04 AM,200 Block of 2ND ST,SF,94105,B03,1,2147,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7861900595825, -122.397420430314)",122820069-E08 -160160552,KM03,16006301,Medical Incident,01/16/2016,01/15/2016,01/16/2016 04:31:16 AM,01/16/2016 04:33:21 AM,01/16/2016 04:35:34 AM,01/16/2016 04:36:22 AM,01/16/2016 04:56:25 AM,01/16/2016 05:03:54 AM,01/16/2016 05:14:57 AM,Code 2 Transport,01/16/2016 05:35:39 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160160552-KM03 -122540036,E01,12083845,Medical Incident,09/10/2012,09/09/2012,09/10/2012 04:03:36 AM,09/10/2012 04:04:33 AM,09/10/2012 04:05:23 AM,09/10/2012 04:06:57 AM,09/10/2012 04:10:12 AM,04/25/2016 01:56:50 PM,04/25/2016 01:56:50 PM,Other,09/10/2012 04:12:34 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",122540036-E01 -160391958,KM09,16015649,Medical Incident,02/08/2016,02/08/2016,02/08/2016 01:56:53 PM,02/08/2016 01:59:37 PM,02/08/2016 02:00:58 PM,02/08/2016 02:01:45 PM,02/08/2016 02:21:40 PM,02/08/2016 02:21:47 PM,02/08/2016 02:40:19 PM,Code 2 Transport,02/08/2016 03:32:35 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160391958-KM09 -131310373,81,13044395,Medical Incident,05/11/2013,05/11/2013,05/11/2013 09:07:04 PM,05/11/2013 09:08:06 PM,05/11/2013 09:08:15 PM,05/11/2013 09:12:04 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 09:13:38 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",131310373-81 -140160252,E07,14005526,Medical Incident,01/16/2014,01/16/2014,01/16/2014 03:13:41 PM,01/16/2014 03:14:25 PM,01/16/2014 03:16:52 PM,01/16/2014 03:16:52 PM,01/16/2014 03:17:28 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/16/2014 03:28:42 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",140160252-E07 -160742835,59,16029418,Medical Incident,03/14/2016,03/14/2016,03/14/2016 05:06:29 PM,03/14/2016 05:06:29 PM,03/14/2016 05:07:07 PM,03/14/2016 05:07:20 PM,03/14/2016 05:20:03 PM,03/14/2016 05:32:41 PM,03/14/2016 06:03:06 PM,Code 2 Transport,03/14/2016 06:28:36 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160742835-59 -111700256,75,11056106,Medical Incident,06/19/2011,06/19/2011,06/19/2011 05:00:16 PM,06/19/2011 05:01:36 PM,06/19/2011 05:02:03 PM,06/19/2011 05:02:56 PM,06/19/2011 05:25:37 PM,06/19/2011 05:29:39 PM,06/19/2011 05:55:38 PM,Code 2 Transport,06/19/2011 06:23:43 PM,300 Block of SLOAT BLVD,SF,94132,B08,19,7436,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7347800299939, -122.476102308906)",111700256-75 -102420282,RC1,10076403,Medical Incident,08/30/2010,08/30/2010,08/30/2010 05:35:56 PM,08/30/2010 05:36:37 PM,08/30/2010 05:36:47 PM,04/25/2016 02:08:49 PM,08/30/2010 05:39:03 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,No Merit,08/30/2010 05:42:11 PM,VAN NESS AV/MCALLISTER ST,SF,94102,B02,36,3164,3,3,3,true,,1,RESCUE CAPTAIN,1,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",102420282-RC1 -110510259,E28,11016953,Medical Incident,02/20/2011,02/20/2011,02/20/2011 04:14:27 PM,02/20/2011 04:16:00 PM,02/20/2011 04:17:49 PM,02/20/2011 04:19:09 PM,02/20/2011 04:23:57 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 04:44:04 PM,0 Block of BRET HARTE TER,SF,94133,B01,28,1526,1,1,2,false,,1,ENGINE,1,1,2,Russian Hill,"(37.8045693116127, -122.417633453434)",110510259-E28 -140460251,E31,14015719,Medical Incident,02/15/2014,02/15/2014,02/15/2014 03:53:11 PM,02/15/2014 03:54:28 PM,02/15/2014 03:54:54 PM,02/15/2014 03:55:55 PM,02/15/2014 03:58:12 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 03:59:26 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",140460251-E31 -130960283,AM22,13032265,Medical Incident,04/06/2013,04/06/2013,04/06/2013 05:16:18 PM,04/06/2013 05:19:54 PM,04/06/2013 05:20:21 PM,04/06/2013 05:21:18 PM,04/06/2013 05:32:34 PM,04/06/2013 05:53:55 PM,04/06/2013 06:03:52 PM,Code 2 Transport,04/06/2013 06:46:12 PM,1200 Block of MASON ST,SF,94108,B01,2,1415,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7949762517322, -122.411384437499)",130960283-AM22 -121480270,B02,12049190,Structure Fire,05/27/2012,05/27/2012,05/27/2012 05:45:42 PM,05/27/2012 05:46:58 PM,05/27/2012 05:47:24 PM,05/27/2012 05:49:41 PM,05/27/2012 05:56:27 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/27/2012 06:41:50 PM,1200 Block of 38TH AVE,SF,94122,B08,23,7565,3,3,3,false,Fire,1,CHIEF,4,8,4,Sunset/Parkside,"(37.7636013251799, -122.497619164338)",121480270-B02 -112860342,E03,11094866,Medical Incident,10/13/2011,10/13/2011,10/13/2011 05:50:49 PM,10/13/2011 05:52:36 PM,10/13/2011 05:53:03 PM,10/13/2011 05:54:08 PM,10/13/2011 05:57:15 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 06:02:48 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",112860342-E03 -160193886,64,16007824,Medical Incident,01/19/2016,01/19/2016,01/19/2016 11:35:17 PM,01/19/2016 11:35:17 PM,01/19/2016 11:35:28 PM,01/19/2016 11:35:51 PM,01/19/2016 11:40:13 PM,01/19/2016 11:59:40 PM,01/20/2016 12:14:32 AM,Code 2 Transport,01/20/2016 01:14:22 AM,1600 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.7743083992665, -122.443590663405)",160193886-64 -110170077,AM12,11005570,Citizen Assist / Service Call,01/17/2011,01/17/2011,01/17/2011 09:41:02 AM,01/17/2011 09:42:40 AM,01/17/2011 09:42:47 AM,01/17/2011 09:55:53 AM,01/17/2011 10:02:02 AM,01/17/2011 10:15:55 AM,01/17/2011 10:28:09 AM,Code 2 Transport,01/17/2011 11:15:33 AM,1400 Block of CHURCH ST,SF,94131,B06,11,5547,3,3,3,false,,1,PRIVATE,2,6,8,Noe Valley,"(37.7472920159432, -122.427075838614)",110170077-AM12 -112070350,E43,11068530,Medical Incident,07/26/2011,07/26/2011,07/26/2011 11:42:37 PM,07/26/2011 11:43:35 PM,07/26/2011 11:43:48 PM,07/26/2011 11:45:32 PM,07/26/2011 11:48:02 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/26/2011 11:58:11 PM,0 Block of CONCORD ST,SF,94112,B09,43,6221,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.713681459918, -122.443166498675)",112070350-E43 -133010397,84,13102449,Medical Incident,10/28/2013,10/28/2013,10/28/2013 09:53:18 PM,10/28/2013 09:55:26 PM,10/28/2013 09:55:47 PM,10/28/2013 09:56:07 PM,10/28/2013 10:03:00 PM,10/28/2013 10:13:08 PM,10/28/2013 10:24:42 PM,Code 2 Transport,10/28/2013 11:27:20 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",133010397-84 -111750229,E03,11057720,Medical Incident,06/24/2011,06/24/2011,06/24/2011 02:44:21 PM,06/24/2011 02:45:44 PM,06/24/2011 02:49:16 PM,06/24/2011 02:50:47 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Other,06/24/2011 02:50:53 PM,KEARNY ST/NORTH POINT ST,SF,94133,B01,28,1255,1,1,2,true,,1,ENGINE,3,1,3,North Beach,"(37.8073794582677, -122.407303657354)",111750229-E03 -120670076,89,12022124,Medical Incident,03/07/2012,03/06/2012,03/07/2012 07:19:58 AM,03/07/2012 07:20:10 AM,03/07/2012 07:20:36 AM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/07/2012 07:25:07 AM,CHESTNUT ST/LARKIN ST,SF,94109,B04,28,1613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,2,Russian Hill,"(37.8026949243643, -122.42148036462)",120670076-89 -130160181,83,13005440,Medical Incident,01/16/2013,01/16/2013,01/16/2013 01:40:50 PM,01/16/2013 01:42:24 PM,01/16/2013 01:42:59 PM,01/16/2013 01:44:00 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Other,04/25/2016 01:54:47 PM,200 Block of 18TH AVE,SF,94121,B07,31,7162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7832883734669, -122.477510920465)",130160181-83 -140320403,E28,14011040,Gas Leak (Natural and LP Gases),02/01/2014,02/01/2014,02/01/2014 11:33:52 PM,02/01/2014 11:39:03 PM,02/01/2014 11:39:11 PM,02/01/2014 11:40:49 PM,02/01/2014 11:42:17 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/01/2014 11:46:19 PM,1500 Block of STOCKTON ST,SF,94133,B01,28,1334,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.799975359605, -122.40903359976)",140320403-E28 -110120052,85,11003878,Medical Incident,01/12/2011,01/11/2011,01/12/2011 06:19:29 AM,01/12/2011 06:20:55 AM,01/12/2011 06:21:18 AM,01/12/2011 06:21:52 AM,01/12/2011 06:26:23 AM,01/12/2011 06:45:53 AM,01/12/2011 06:57:45 AM,Code 2 Transport,01/12/2011 07:12:25 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",110120052-85 -130530046,68,13017807,Medical Incident,02/22/2013,02/21/2013,02/22/2013 05:50:12 AM,02/22/2013 05:50:35 AM,02/22/2013 05:52:28 AM,02/22/2013 05:54:23 AM,02/22/2013 05:58:36 AM,02/22/2013 06:09:02 AM,04/25/2016 01:54:10 PM,Code 3 Transport,02/22/2013 06:44:11 AM,1400 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7282421265503, -122.389005419337)",130530046-68 -120180328,RC3,12006168,Medical Incident,01/18/2012,01/18/2012,01/18/2012 08:39:48 PM,01/18/2012 08:40:06 PM,01/18/2012 08:40:34 PM,04/25/2016 02:00:34 PM,01/18/2012 08:44:02 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Other,01/18/2012 08:58:24 PM,29TH ST/MISSION ST,SF,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,9,Bernal Heights,"(37.7440376332296, -122.420893660653)",120180328-RC3 -160011449,88,16000258,Medical Incident,01/01/2016,01/01/2016,01/01/2016 09:17:08 AM,01/01/2016 09:17:08 AM,01/01/2016 09:18:29 AM,01/01/2016 09:18:32 AM,01/01/2016 09:22:18 AM,01/01/2016 09:54:40 AM,01/01/2016 10:10:06 AM,Code 2 Transport,01/01/2016 10:54:14 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160011449-88 -110480032,E32,11015751,Traffic Collision,02/17/2011,02/16/2011,02/17/2011 04:58:07 AM,02/17/2011 04:58:08 AM,02/17/2011 04:58:40 AM,02/17/2011 05:00:06 AM,02/17/2011 05:03:44 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/17/2011 05:17:01 AM,200 Block of ALEMANY BLVD,SF,94110,B09,32,5681,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7351501389095, -122.410360631063)",110480032-E32 -140970139,83,14032636,Medical Incident,04/07/2014,04/07/2014,04/07/2014 09:45:09 AM,04/07/2014 09:45:09 AM,04/07/2014 09:48:27 AM,04/07/2014 09:48:50 AM,04/07/2014 10:10:03 AM,04/07/2014 10:20:20 AM,04/07/2014 10:46:00 AM,Code 2 Transport,04/07/2014 11:14:56 AM,1300 Block of TURK ST,,94115,B05,5,3535,,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",140970139-83 -133530207,E17,13119930,Alarms,12/19/2013,12/19/2013,12/19/2013 01:47:30 PM,12/19/2013 01:48:53 PM,12/19/2013 01:49:17 PM,12/19/2013 01:49:59 PM,12/19/2013 01:52:21 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Fire,12/19/2013 01:54:57 PM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7344812749194, -122.391912066975)",133530207-E17 -160513328,71,16020623,Medical Incident,02/20/2016,02/20/2016,02/20/2016 10:09:04 PM,02/20/2016 10:10:43 PM,02/20/2016 10:10:52 PM,02/20/2016 10:12:33 PM,02/20/2016 10:17:29 PM,02/20/2016 10:35:22 PM,02/20/2016 11:06:18 PM,Code 2 Transport,02/20/2016 11:25:37 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160513328-71 -160530735,AM04,16021105,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:34:04 AM,02/22/2016 08:35:00 AM,02/22/2016 08:36:00 AM,02/22/2016 08:36:48 AM,02/22/2016 08:40:52 AM,02/22/2016 08:53:12 AM,02/22/2016 08:57:16 AM,Code 3 Transport,02/22/2016 09:32:59 AM,1000 Block of STANYAN ST,San Francisco,94117,B05,12,5153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7649673884697, -122.452732198466)",160530735-AM04 -160660298,AM20,16026240,Traffic Collision,03/06/2016,03/05/2016,03/06/2016 02:18:37 AM,03/06/2016 02:18:37 AM,03/06/2016 02:21:44 AM,03/06/2016 02:22:26 AM,03/06/2016 02:29:59 AM,03/06/2016 03:02:35 AM,03/06/2016 03:19:30 AM,Code 2 Transport,03/06/2016 04:11:45 AM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.781585403105, -122.423090188841)",160660298-AM20 -160140408,63,16005440,Medical Incident,01/14/2016,01/13/2016,01/14/2016 05:30:58 AM,01/14/2016 05:31:30 AM,01/14/2016 05:31:47 AM,01/14/2016 05:31:59 AM,01/14/2016 05:44:49 AM,01/14/2016 05:49:04 AM,01/14/2016 06:08:30 AM,Code 2 Transport,01/14/2016 06:22:54 AM,100 Block of BERTITA ST,San Francisco,94112,B09,15,8331,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7187468512865, -122.440406418549)",160140408-63 -112970419,E29,11098711,Other,10/24/2011,10/24/2011,10/24/2011 10:33:33 PM,10/24/2011 10:35:46 PM,10/24/2011 10:36:38 PM,10/24/2011 10:38:16 PM,10/24/2011 10:41:18 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/24/2011 11:08:15 PM,300 Block of 9TH ST,SF,94103,B03,29,2333,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.773140269804, -122.410930916401)",112970419-E29 -160400547,AM02,16015899,Medical Incident,02/09/2016,02/08/2016,02/09/2016 07:16:41 AM,02/09/2016 07:17:17 AM,02/09/2016 07:17:31 AM,02/09/2016 07:18:35 AM,02/09/2016 07:25:28 AM,02/09/2016 07:29:14 AM,02/09/2016 07:35:11 AM,Code 3 Transport,02/09/2016 08:20:13 AM,0 Block of QUINT ST,San Francisco,94124,B10,25,6441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7459906821684, -122.388651348688)",160400547-AM02 -160223448,58,16008925,Medical Incident,01/22/2016,01/22/2016,01/22/2016 08:29:20 PM,01/22/2016 08:32:36 PM,01/22/2016 08:33:03 PM,01/22/2016 08:33:14 PM,01/22/2016 08:39:18 PM,01/22/2016 08:49:33 PM,01/22/2016 08:55:03 PM,Code 2 Transport,01/22/2016 09:31:52 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",160223448-58 -160411656,67,16016440,Medical Incident,02/10/2016,02/10/2016,02/10/2016 12:18:03 PM,02/10/2016 12:18:49 PM,02/10/2016 12:19:20 PM,02/10/2016 12:19:31 PM,02/10/2016 12:33:23 PM,02/10/2016 12:54:31 PM,02/10/2016 01:06:32 PM,Code 2 Transport,02/10/2016 02:02:43 PM,BURNETT AV/PORTOLA DR,San Francisco,94131,B06,24,5354,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Twin Peaks,"(37.7469453737892, -122.444847224654)",160411656-67 -121100389,92,12036558,Medical Incident,04/19/2012,04/19/2012,04/19/2012 10:50:57 PM,04/19/2012 10:52:57 PM,04/19/2012 10:54:34 PM,04/19/2012 10:54:59 PM,04/19/2012 11:06:45 PM,04/19/2012 11:44:11 PM,04/20/2012 12:18:43 AM,Code 2 Transport,04/20/2012 12:47:35 AM,1200 Block of REVERE AVE,SF,94124,B10,17,6634,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7280000551487, -122.383581434035)",121100389-92 -113310214,58,11109740,Medical Incident,11/27/2011,11/27/2011,11/27/2011 05:02:47 PM,11/27/2011 05:05:03 PM,11/27/2011 05:05:18 PM,11/27/2011 05:05:46 PM,11/27/2011 05:09:12 PM,11/27/2011 05:35:54 PM,11/27/2011 05:45:19 PM,Code 2 Transport,11/27/2011 06:07:30 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",113310214-58 -130510328,E10,13017377,Transfer,02/20/2013,02/20/2013,02/20/2013 07:12:37 PM,02/20/2013 07:13:47 PM,02/20/2013 07:14:31 PM,02/20/2013 07:15:42 PM,02/20/2013 07:17:37 PM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Fire,02/20/2013 07:24:43 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Alarm,1,ENGINE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",130510328-E10 -123550263,E01,12118870,Medical Incident,12/20/2012,12/20/2012,12/20/2012 05:44:08 PM,12/20/2012 05:44:08 PM,12/20/2012 05:44:19 PM,12/20/2012 05:46:17 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 05:49:11 PM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",123550263-E01 -112070208,T01,11068398,Structure Fire,07/26/2011,07/26/2011,07/26/2011 02:37:08 PM,07/26/2011 02:37:08 PM,07/26/2011 02:37:29 PM,07/26/2011 02:39:11 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 02:40:21 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112070208-T01 -120630232,KM12,12020784,Medical Incident,03/03/2012,03/03/2012,03/03/2012 02:01:59 PM,03/03/2012 02:03:12 PM,03/03/2012 02:04:01 PM,03/03/2012 02:04:31 PM,03/03/2012 02:08:45 PM,03/03/2012 02:16:17 PM,03/03/2012 02:21:20 PM,Code 2 Transport,03/03/2012 02:46:37 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",120630232-KM12 -120990347,T13,12032957,Other,04/08/2012,04/08/2012,04/08/2012 10:38:52 PM,04/08/2012 10:40:48 PM,04/08/2012 10:41:30 PM,04/08/2012 10:42:12 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Fire,04/08/2012 10:53:31 PM,800 Block of SANSOME ST,SF,94133,B01,13,1212,3,3,3,false,Alarm,1,TRUCK,1,1,3,North Beach,"(37.7979585906161, -122.402203152588)",120990347-T13 -121310219,T14,12043602,Water Rescue,05/10/2012,05/10/2012,05/10/2012 02:26:47 PM,05/10/2012 02:28:47 PM,05/10/2012 02:31:12 PM,05/10/2012 02:32:13 PM,05/10/2012 02:37:47 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 04:32:03 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Fire,1,TRUCK,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",121310219-T14 -160660154,60,16026220,Medical Incident,03/06/2016,03/05/2016,03/06/2016 01:02:25 AM,03/06/2016 01:02:25 AM,03/06/2016 01:03:30 AM,03/06/2016 01:04:15 AM,03/06/2016 01:07:06 AM,03/06/2016 01:22:47 AM,03/06/2016 01:31:58 AM,Code 3 Transport,03/06/2016 02:18:57 AM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7854941424186, -122.408270724034)",160660154-60 -111180005,T11,11038786,Structure Fire,04/28/2011,04/27/2011,04/28/2011 12:37:58 AM,04/28/2011 12:37:58 AM,04/28/2011 12:38:10 AM,04/28/2011 12:40:10 AM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/28/2011 12:41:38 AM,24TH ST/CHURCH ST,SF,94114,B06,11,5523,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",111180005-T11 -121900247,KM14,12063364,Medical Incident,07/08/2012,07/08/2012,07/08/2012 05:47:36 PM,07/08/2012 05:47:45 PM,07/08/2012 05:48:30 PM,07/08/2012 05:49:04 PM,07/08/2012 05:54:58 PM,07/08/2012 06:24:32 PM,07/08/2012 06:37:06 PM,Code 2 Transport,07/08/2012 07:21:58 PM,100 Block of SPEAR ST,SF,94105,B03,35,2114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7918853862733, -122.393341223517)",121900247-KM14 -160343257,93,16013574,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:19:57 PM,02/03/2016 08:19:57 PM,02/03/2016 08:20:38 PM,02/03/2016 08:20:58 PM,02/03/2016 08:33:48 PM,02/03/2016 08:52:14 PM,02/03/2016 08:54:51 PM,Code 2 Transport,02/03/2016 09:43:42 PM,0 Block of PLEASANT ST,San Francisco,94108,B01,41,1444,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7929424178136, -122.413571583181)",160343257-93 -111180342,B03,11039069,Alarms,04/28/2011,04/28/2011,04/28/2011 08:42:26 PM,04/28/2011 08:45:42 PM,04/28/2011 08:46:52 PM,04/28/2011 08:48:05 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 08:49:04 PM,0 Block of SAINT FRANCIS PL,SF,94107,B03,1,2176,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7831676638716, -122.397825495268)",111180342-B03 -160142248,KM02,16005620,Medical Incident,01/14/2016,01/14/2016,01/14/2016 03:06:02 PM,01/14/2016 03:08:42 PM,01/14/2016 03:09:22 PM,01/14/2016 03:09:45 PM,01/14/2016 03:16:04 PM,01/14/2016 03:44:43 PM,01/14/2016 03:57:37 PM,Code 2 Transport,01/14/2016 04:38:31 PM,1300 Block of IRVING ST,San Francisco,94122,B08,22,7366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,5,Inner Sunset,"(37.7638318338265, -122.472232573432)",160142248-KM02 -160243116,53,16009669,Medical Incident,01/24/2016,01/24/2016,01/24/2016 07:59:21 PM,01/24/2016 08:01:51 PM,01/24/2016 08:02:16 PM,01/24/2016 08:02:30 PM,01/24/2016 08:17:44 PM,01/24/2016 08:31:07 PM,01/24/2016 08:39:13 PM,Code 2 Transport,01/24/2016 09:12:33 PM,OFARRELL ST/MASON ST,San Francisco,94102,B03,1,1363,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862026638911, -122.409683072135)",160243116-53 -123010370,AM10,12099962,Medical Incident,10/27/2012,10/27/2012,10/27/2012 10:28:28 PM,10/27/2012 10:28:28 PM,10/27/2012 10:28:28 PM,10/27/2012 10:29:33 PM,10/27/2012 10:31:31 PM,10/27/2012 10:37:24 PM,10/27/2012 10:51:08 PM,Code 2 Transport,10/27/2012 11:10:09 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",123010370-AM10 -131520359,E19,13051662,Medical Incident,06/01/2013,06/01/2013,06/01/2013 11:13:55 PM,06/01/2013 11:14:58 PM,06/01/2013 11:15:45 PM,06/01/2013 11:17:40 PM,06/01/2013 11:20:42 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 11:50:47 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",131520359-E19 -121670266,E10,12055472,Fuel Spill,06/15/2012,06/15/2012,06/15/2012 05:38:55 PM,06/15/2012 05:41:44 PM,06/15/2012 05:44:03 PM,06/15/2012 05:45:13 PM,06/15/2012 05:49:19 PM,04/25/2016 01:58:11 PM,04/25/2016 01:58:11 PM,Other,06/15/2012 06:03:01 PM,PINE ST/DIVISADERO ST,SF,94115,B04,10,4156,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7871124551408, -122.440249955385)",121670266-E10 -160203924,AM16,16008200,Medical Incident,01/20/2016,01/20/2016,01/20/2016 10:48:17 PM,01/20/2016 10:50:07 PM,01/20/2016 10:50:54 PM,01/20/2016 10:51:22 PM,01/20/2016 10:58:48 PM,01/20/2016 11:02:29 PM,01/20/2016 11:21:01 PM,Code 2 Transport,01/20/2016 11:57:26 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160203924-AM16 -130900053,E22,13030000,Medical Incident,03/31/2013,03/30/2013,03/31/2013 03:31:17 AM,03/31/2013 03:33:25 AM,03/31/2013 03:33:38 AM,03/31/2013 03:37:18 AM,03/31/2013 03:39:17 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 03:40:45 AM,1300 Block of 24TH AVE,SF,94122,B08,22,7451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.762398164889, -122.48234823338)",130900053-E22 -160201869,AM14,16008011,Medical Incident,01/20/2016,01/20/2016,01/20/2016 01:10:44 PM,01/20/2016 01:11:20 PM,01/20/2016 01:11:32 PM,01/20/2016 01:12:11 PM,01/20/2016 01:18:18 PM,01/20/2016 01:35:48 PM,01/20/2016 02:00:08 PM,Code 2 Transport,01/20/2016 02:35:15 PM,300 Block of BERRY ST,San Francisco,94158,B03,8,2235,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7731124835363, -122.39664007904)",160201869-AM14 -160431429,83,16017259,Medical Incident,02/12/2016,02/12/2016,02/12/2016 11:35:48 AM,02/12/2016 11:36:55 AM,02/12/2016 11:37:28 AM,02/12/2016 11:37:47 AM,02/12/2016 11:40:42 AM,02/12/2016 11:57:49 AM,02/12/2016 12:04:09 PM,Code 2 Transport,02/12/2016 12:50:24 PM,1600 Block of UNION ST,San Francisco,94123,B04,16,3233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7982932964322, -122.4264581931)",160431429-83 -111010286,T08,11033602,Alarms,04/11/2011,04/11/2011,04/11/2011 06:37:39 PM,04/11/2011 06:39:22 PM,04/11/2011 06:39:31 PM,04/11/2011 06:40:54 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/11/2011 06:42:57 PM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",111010286-T08 -122760094,89,12091047,Medical Incident,10/02/2012,10/02/2012,10/02/2012 08:44:44 AM,10/02/2012 08:45:20 AM,10/02/2012 08:46:40 AM,10/02/2012 08:46:46 AM,10/02/2012 09:00:30 AM,10/02/2012 09:28:29 AM,10/02/2012 09:51:59 AM,Code 2 Transport,10/02/2012 09:58:37 AM,1600 Block of 26TH AVE,SF,94122,B08,18,7454,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7567038230665, -122.484238383037)",122760094-89 -160420650,55,16016762,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:54:25 AM,02/11/2016 07:56:58 AM,02/11/2016 07:57:12 AM,02/11/2016 07:57:43 AM,02/11/2016 08:16:25 AM,02/11/2016 08:45:10 AM,02/11/2016 08:53:42 AM,Code 2 Transport,02/11/2016 09:37:56 AM,1200 Block of HAIGHT ST,San Francisco,94117,B05,21,4353,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",160420650-55 -131760211,E23,13059730,Other,06/25/2013,06/25/2013,06/25/2013 01:36:24 PM,06/25/2013 01:36:24 PM,06/25/2013 01:36:24 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,04/25/2016 01:52:07 PM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",131760211-E23 -111360317,85,11045394,Medical Incident,05/16/2011,05/16/2011,05/16/2011 08:50:37 PM,05/16/2011 08:52:16 PM,05/16/2011 08:52:36 PM,05/16/2011 08:53:40 PM,05/16/2011 09:00:53 PM,05/16/2011 09:09:21 PM,05/16/2011 09:21:11 PM,Code 2 Transport,05/16/2011 09:51:07 PM,400 Block of NEVADA ST,SF,94110,B10,32,5736,3,3,3,true,,1,MEDIC,2,10,9,Bernal Heights,"(37.7363710737067, -122.411602118744)",111360317-85 -110730195,E22,11024015,Medical Incident,03/14/2011,03/14/2011,03/14/2011 12:50:43 PM,03/14/2011 12:53:20 PM,03/14/2011 12:54:29 PM,03/14/2011 12:55:06 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 12:56:09 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,3,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110730195-E22 -111050222,KM14,11034800,Medical Incident,04/15/2011,04/15/2011,04/15/2011 03:37:33 PM,04/15/2011 03:39:21 PM,04/15/2011 03:40:05 PM,04/15/2011 03:40:49 PM,04/15/2011 03:48:06 PM,04/15/2011 04:03:22 PM,04/15/2011 04:10:45 PM,Code 2 Transport,04/15/2011 04:34:46 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,1,1,2,false,,1,PRIVATE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",111050222-KM14 -121840022,E03,12061155,Alarms,07/02/2012,07/01/2012,07/02/2012 02:01:02 AM,07/02/2012 02:02:00 AM,07/02/2012 02:02:30 AM,07/02/2012 02:03:55 AM,07/02/2012 02:05:37 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/02/2012 02:18:50 AM,500 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",121840022-E03 -130530338,E15,13018044,Medical Incident,02/22/2013,02/22/2013,02/22/2013 08:38:24 PM,02/22/2013 08:39:59 PM,02/22/2013 08:40:36 PM,04/25/2016 01:54:10 PM,02/22/2013 08:43:15 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Other,02/22/2013 08:49:30 PM,SAN JOSE AV/GENEVA AV,SF,94112,B09,15,8311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",130530338-E15 -120540022,E29,12017701,Medical Incident,02/23/2012,02/22/2012,02/23/2012 02:20:04 AM,02/23/2012 02:21:31 AM,02/23/2012 02:21:52 AM,02/23/2012 02:27:45 AM,02/23/2012 02:29:54 AM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 02:33:26 AM,2300 Block of 16TH ST,SF,94103,B02,29,5241,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission,"(37.765718993574, -122.409520691153)",120540022-E29 -132650219,AM02,13089923,Medical Incident,09/22/2013,09/22/2013,09/22/2013 02:04:11 PM,09/22/2013 02:05:52 PM,09/22/2013 02:18:34 PM,04/25/2016 01:50:38 PM,09/22/2013 02:33:55 PM,09/22/2013 02:41:48 PM,09/22/2013 03:03:43 PM,Code 2 Transport,09/22/2013 03:41:02 PM,1500 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",132650219-AM02 -121080155,81,12035731,Medical Incident,04/17/2012,04/17/2012,04/17/2012 12:12:35 PM,04/17/2012 12:12:57 PM,04/17/2012 12:13:23 PM,04/17/2012 12:14:01 PM,04/17/2012 12:30:14 PM,04/17/2012 12:41:26 PM,04/17/2012 01:00:42 PM,Code 2 Transport,04/17/2012 01:56:39 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",121080155-81 -103380341,D3,10108273,Structure Fire,12/04/2010,12/04/2010,12/04/2010 06:50:30 PM,12/04/2010 06:50:56 PM,12/04/2010 06:51:06 PM,12/04/2010 06:51:52 PM,12/04/2010 06:57:15 PM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Other,12/04/2010 07:15:14 PM,1400 Block of INNES AVE,SF,94124,B10,25,6532,3,3,3,false,,1,CHIEF,7,10,10,Bayview Hunters Point,"(37.7379931180342, -122.386085138149)",103380341-D3 -132390249,KM10,13080674,Medical Incident,08/27/2013,08/27/2013,08/27/2013 04:03:28 PM,08/27/2013 04:04:07 PM,08/27/2013 04:06:44 PM,08/27/2013 04:07:33 PM,08/27/2013 04:09:20 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Patient Declined Transport,08/27/2013 04:41:19 PM,16TH ST/CAPP ST,SF,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7651099559558, -122.418698427046)",132390249-KM10 -132330315,86,13078781,Traffic Collision,08/21/2013,08/21/2013,08/21/2013 07:31:32 PM,08/21/2013 07:32:26 PM,08/21/2013 07:34:29 PM,08/21/2013 07:35:06 PM,08/21/2013 08:00:43 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Against Medical Advice,08/21/2013 08:22:25 PM,SOUTH VAN NESS AV/16TH ST,SF,94110,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7651831353816, -122.417486597301)",132330315-86 -121430180,T19,12047532,Alarms,05/22/2012,05/22/2012,05/22/2012 12:47:18 PM,05/22/2012 12:48:52 PM,05/22/2012 12:49:01 PM,05/22/2012 12:50:21 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 12:51:33 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",121430180-T19 -130280232,E05,13009636,Medical Incident,01/28/2013,01/28/2013,01/28/2013 01:53:34 PM,01/28/2013 01:56:13 PM,01/28/2013 01:56:27 PM,01/28/2013 01:57:50 PM,01/28/2013 01:59:56 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 02:20:53 PM,1900 Block of POST ST,SF,94115,B04,5,3622,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Japantown,"(37.7850500973338, -122.434328328397)",130280232-E05 -160572590,82,16022836,Medical Incident,02/26/2016,02/26/2016,02/26/2016 04:45:31 PM,02/26/2016 04:45:31 PM,02/26/2016 04:46:01 PM,02/26/2016 04:46:07 PM,02/26/2016 04:50:12 PM,02/26/2016 05:25:59 PM,02/26/2016 05:33:22 PM,Code 2 Transport,02/26/2016 06:08:16 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",160572590-82 -160801511,54,16031790,Medical Incident,03/20/2016,03/20/2016,03/20/2016 12:00:38 PM,03/20/2016 12:01:29 PM,03/20/2016 12:01:38 PM,03/20/2016 12:04:10 PM,03/20/2016 12:12:04 PM,03/20/2016 12:24:34 PM,03/20/2016 12:33:45 PM,Code 2 Transport,03/20/2016 01:01:22 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160801511-54 -121380362,E43,12046003,Traffic Collision,05/17/2012,05/17/2012,05/17/2012 11:43:19 PM,05/17/2012 11:44:28 PM,05/17/2012 11:45:35 PM,05/17/2012 11:46:55 PM,05/17/2012 11:48:53 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/17/2012 11:51:20 PM,MISSION ST/ONONDAGA AV,SF,94112,B09,43,6123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7211635493758, -122.437461137723)",121380362-E43 -102500295,E37,10079091,Medical Incident,09/07/2010,09/07/2010,09/07/2010 07:31:30 PM,09/07/2010 07:32:08 PM,09/07/2010 07:32:21 PM,09/07/2010 07:33:02 PM,09/07/2010 07:34:54 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 07:46:05 PM,25TH ST/DAKOTA ST,SF,94107,B10,37,2614,3,3,3,false,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7524268010539, -122.394586978991)",102500295-E37 -160630014,AM16,16024908,Medical Incident,03/03/2016,03/02/2016,03/03/2016 12:05:11 AM,03/03/2016 12:06:49 AM,03/03/2016 12:07:22 AM,03/03/2016 12:07:50 AM,03/03/2016 12:11:25 AM,03/03/2016 12:26:09 AM,03/03/2016 12:39:36 AM,Code 2 Transport,03/03/2016 01:10:16 AM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",160630014-AM16 -160352016,77,16013846,Traffic Collision,02/04/2016,02/04/2016,02/04/2016 01:54:02 PM,02/04/2016 01:55:43 PM,02/04/2016 01:56:21 PM,02/04/2016 01:56:32 PM,02/04/2016 02:08:07 PM,02/04/2016 02:22:31 PM,02/04/2016 03:05:39 PM,Code 2 Transport,02/04/2016 04:10:23 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B99,51,4616,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160352016-77 -160800681,KM07,16031717,Medical Incident,03/20/2016,03/19/2016,03/20/2016 06:19:30 AM,03/20/2016 06:20:53 AM,03/20/2016 06:21:10 AM,03/20/2016 06:23:30 AM,03/20/2016 06:30:27 AM,03/20/2016 06:59:30 AM,03/20/2016 07:11:48 AM,Code 2 Transport,03/20/2016 07:32:53 AM,1400 Block of JONES ST,San Francisco,94109,B01,41,1466,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7945402595974, -122.414804971391)",160800681-KM07 -112490381,81,11082295,Medical Incident,09/06/2011,09/06/2011,09/06/2011 09:13:18 PM,09/06/2011 09:14:26 PM,09/06/2011 09:15:24 PM,04/25/2016 02:02:48 PM,09/06/2011 09:23:40 PM,09/06/2011 09:33:39 PM,09/06/2011 09:40:49 PM,Code 3 Transport,09/06/2011 10:21:32 PM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7739392650435, -122.412947871011)",112490381-81 -132640312,E33,13089615,Medical Incident,09/21/2013,09/21/2013,09/21/2013 05:17:42 PM,09/21/2013 05:19:59 PM,09/21/2013 05:20:42 PM,09/21/2013 05:22:19 PM,09/21/2013 05:26:30 PM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/21/2013 05:59:53 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",132640312-E33 -133120118,RS1,13105969,Medical Incident,11/08/2013,11/08/2013,11/08/2013 10:07:40 AM,11/08/2013 10:10:48 AM,11/08/2013 10:11:18 AM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/08/2013 10:17:41 AM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7806691632498, -122.401678045598)",133120118-RS1 -123380218,T07,12112721,Alarms,12/03/2012,12/03/2012,12/03/2012 01:29:12 PM,12/03/2012 01:31:17 PM,12/03/2012 01:31:30 PM,12/03/2012 01:33:26 PM,12/03/2012 01:36:43 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 01:37:58 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Alarm,1,TRUCK,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",123380218-T07 -131390358,93,13047148,Medical Incident,05/19/2013,05/19/2013,05/19/2013 05:38:50 PM,05/19/2013 05:40:19 PM,05/19/2013 05:40:44 PM,05/19/2013 05:41:08 PM,05/19/2013 05:45:06 PM,05/19/2013 06:19:07 PM,05/19/2013 06:46:06 PM,Code 2 Transport,05/19/2013 07:18:14 PM,2500 Block of TAYLOR ST,SF,94133,B01,28,1433,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8058891270864, -122.415268200841)",131390358-93 -123440089,KM15,12114908,Medical Incident,12/09/2012,12/08/2012,12/09/2012 05:55:53 AM,12/09/2012 05:56:28 AM,12/09/2012 05:56:45 AM,12/09/2012 05:57:46 AM,12/09/2012 06:02:53 AM,12/09/2012 06:25:35 AM,12/09/2012 06:35:29 AM,Code 2 Transport,12/09/2012 07:01:27 AM,4800 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7213272618826, -122.437216421378)",123440089-KM15 -160373325,54,16014863,Medical Incident,02/06/2016,02/06/2016,02/06/2016 07:17:51 PM,02/06/2016 07:18:17 PM,02/06/2016 07:20:57 PM,02/06/2016 07:21:04 PM,02/06/2016 07:34:36 PM,02/06/2016 07:56:59 PM,02/06/2016 08:05:00 PM,Code 2 Transport,02/06/2016 08:35:27 PM,MARKET ST/4TH ST,San Francisco,94103,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160373325-54 -160320884,60,16012498,Traffic Collision,02/01/2016,02/01/2016,02/01/2016 09:15:28 AM,02/01/2016 09:16:41 AM,02/01/2016 09:18:48 AM,02/01/2016 09:19:09 AM,02/01/2016 09:38:59 AM,02/01/2016 09:56:34 AM,02/01/2016 10:20:28 AM,Code 2 Transport,02/01/2016 10:58:18 AM,WINDING WY/DRAKE ST,San Francisco,94112,B09,43,6227,2,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7092985956416, -122.435967963898)",160320884-60 -160521406,KM02,16020788,Medical Incident,02/21/2016,02/21/2016,02/21/2016 11:48:54 AM,02/21/2016 11:49:30 AM,02/21/2016 11:50:00 AM,02/21/2016 11:51:30 AM,02/21/2016 11:57:50 AM,02/21/2016 12:07:29 PM,02/21/2016 12:15:01 PM,Code 3 Transport,02/21/2016 01:09:09 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815063666429, -122.407932868203)",160521406-KM02 -120690279,B07,12022972,Water Rescue,03/09/2012,03/09/2012,03/09/2012 05:35:24 PM,03/09/2012 05:41:39 PM,03/09/2012 05:45:05 PM,03/09/2012 05:46:09 PM,03/09/2012 05:51:18 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:16:40 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,CHIEF,4,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120690279-B07 -111900324,E14,11062956,Structure Fire,07/09/2011,07/09/2011,07/09/2011 11:08:30 PM,07/09/2011 11:08:30 PM,07/09/2011 11:09:07 PM,07/09/2011 11:10:38 PM,07/09/2011 11:15:09 PM,04/25/2016 02:03:44 PM,04/25/2016 02:03:44 PM,Other,07/09/2011 11:42:19 PM,600 Block of 6TH AVE,SF,94118,B07,31,719,3,3,3,true,,1,ENGINE,3,7,1,Inner Richmond,"(37.776298721061, -122.464012148208)",111900324-E14 -121760180,68,12058493,Medical Incident,06/24/2012,06/24/2012,06/24/2012 11:37:10 AM,06/24/2012 11:38:44 AM,06/24/2012 11:40:08 AM,06/24/2012 11:40:15 AM,06/24/2012 11:42:28 AM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Patient Declined Transport,06/24/2012 11:47:16 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",121760180-68 -110710255,E09,11023409,Medical Incident,03/12/2011,03/12/2011,03/12/2011 02:42:08 PM,03/12/2011 02:43:15 PM,03/12/2011 02:43:51 PM,03/12/2011 02:46:03 PM,03/12/2011 02:47:18 PM,04/25/2016 02:05:40 PM,04/25/2016 02:05:40 PM,Other,03/12/2011 02:49:12 PM,24TH ST/POTRERO AV,SF,94110,B10,37,2554,3,3,3,true,,1,ENGINE,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",110710255-E09 -120200290,B02,12006770,Alarms,01/20/2012,01/20/2012,01/20/2012 05:24:13 PM,01/20/2012 05:26:29 PM,01/20/2012 05:26:40 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 05:28:25 PM,0 Block of LAFAYETTE ST,SF,94103,B02,36,5116,3,3,3,false,Alarm,1,CHIEF,2,2,6,Mission,"(37.7730197753185, -122.417140617088)",120200290-B02 -160792244,88,16031448,Medical Incident,03/19/2016,03/19/2016,03/19/2016 02:55:19 PM,03/19/2016 02:56:24 PM,03/19/2016 02:56:46 PM,03/19/2016 02:56:58 PM,03/19/2016 03:03:29 PM,03/19/2016 03:06:14 PM,03/19/2016 03:37:18 PM,Code 2 Transport,03/19/2016 03:56:10 PM,0 Block of HENRY ST,San Francisco,94114,B05,6,5212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7666743527306, -122.432217940341)",160792244-88 -140180254,RC1,14006240,Medical Incident,01/18/2014,01/18/2014,01/18/2014 03:43:23 PM,01/18/2014 03:43:53 PM,01/18/2014 03:45:40 PM,01/18/2014 03:47:04 PM,01/18/2014 03:49:22 PM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/18/2014 03:53:53 PM,800 Block of FILBERT ST,SF,94133,B01,28,1436,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Russian Hill,"(37.8008073855557, -122.413470318933)",140180254-RC1 -160153734,89,16006172,Alarms,01/15/2016,01/15/2016,01/15/2016 09:20:29 PM,01/15/2016 09:22:23 PM,01/15/2016 09:44:50 PM,01/15/2016 09:45:00 PM,01/15/2016 09:50:00 PM,01/15/2016 10:09:13 PM,01/15/2016 10:23:28 PM,Code 2 Transport,01/15/2016 11:07:29 PM,1200 Block of PAGE ST,San Francisco,94117,B05,21,4251,3,3,3,true,Alarm,1,MEDIC,4,5,5,Haight Ashbury,"(37.7716208307015, -122.441356135466)",160153734-89 -122160275,E35,12071750,Alarms,08/03/2012,08/03/2012,08/03/2012 04:33:32 PM,08/03/2012 04:34:27 PM,08/03/2012 04:34:42 PM,08/03/2012 04:35:45 PM,08/03/2012 04:37:30 PM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,08/03/2012 05:18:53 PM,300 Block of SPEAR ST,SF,94105,B03,35,2113,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7894924999912, -122.390150869347)",122160275-E35 -123590083,E17,12120096,Medical Incident,12/24/2012,12/24/2012,12/24/2012 08:14:16 AM,12/24/2012 08:15:53 AM,12/24/2012 08:16:04 AM,12/24/2012 08:17:15 AM,12/24/2012 08:21:03 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 08:35:51 AM,0 Block of LATONA ST,SF,94124,B10,17,6514,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316182572491, -122.392627218053)",123590083-E17 -130280276,E16,13009676,Medical Incident,01/28/2013,01/28/2013,01/28/2013 04:06:41 PM,01/28/2013 04:08:11 PM,01/28/2013 04:08:28 PM,01/28/2013 04:09:59 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/28/2013 04:14:05 PM,1800 Block of BROADWAY,SF,94123,B04,38,3251,3,3,3,true,Non Life-threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.795265168848, -122.427533073347)",130280276-E16 -133400074,T02,13115148,Alarms,12/06/2013,12/05/2013,12/06/2013 07:23:01 AM,12/06/2013 07:24:22 AM,12/06/2013 07:24:34 AM,12/06/2013 07:26:55 AM,12/06/2013 07:29:12 AM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 07:31:26 AM,500 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7905223625299, -122.407233499106)",133400074-T02 -122200272,85,12073048,Medical Incident,08/07/2012,08/07/2012,08/07/2012 07:26:04 PM,08/07/2012 07:26:24 PM,08/07/2012 07:27:22 PM,08/07/2012 07:31:14 PM,08/07/2012 07:39:40 PM,04/25/2016 01:57:20 PM,04/25/2016 01:57:20 PM,Patient Declined Transport,08/07/2012 08:09:31 PM,1400 Block of OAKDALE AVE,SF,94124,B10,17,6534,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7330447252069, -122.387509881021)",122200272-85 -110180195,E07,11005949,Medical Incident,01/18/2011,01/18/2011,01/18/2011 03:15:35 PM,01/18/2011 03:16:54 PM,01/18/2011 03:18:59 PM,01/18/2011 03:19:59 PM,01/18/2011 03:22:18 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 03:34:09 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",110180195-E07 -160251729,89,16009928,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:41:28 PM,01/25/2016 12:41:28 PM,01/25/2016 12:42:05 PM,01/25/2016 12:47:23 PM,01/25/2016 12:47:23 PM,01/25/2016 01:01:33 PM,01/25/2016 01:19:33 PM,Code 2 Transport,01/25/2016 02:06:36 PM,OCTAVIA ST/OAK ST,San Francisco,94102,B02,36,3313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748247940204, -122.42413649936)",160251729-89 -121910298,E16,12063693,Water Rescue,07/09/2012,07/09/2012,07/09/2012 07:17:35 PM,07/09/2012 07:18:29 PM,07/09/2012 07:19:56 PM,07/09/2012 07:22:44 PM,07/09/2012 07:25:12 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 08:02:29 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",121910298-E16 -160692432,KM06,16027535,Medical Incident,03/09/2016,03/09/2016,03/09/2016 03:46:55 PM,03/09/2016 03:48:28 PM,03/09/2016 03:48:55 PM,03/09/2016 03:49:35 PM,03/09/2016 03:59:22 PM,03/09/2016 04:15:55 PM,03/09/2016 04:26:37 PM,Code 2 Transport,03/09/2016 04:52:05 PM,SUTTER ST/STEINER ST,San Francisco,94115,B04,38,3542,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.785876207366, -122.434917663413)",160692432-KM06 -160611217,62,16024265,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:09:12 AM,03/01/2016 11:10:50 AM,03/01/2016 11:11:13 AM,03/01/2016 11:11:30 AM,03/01/2016 11:19:54 AM,03/01/2016 11:48:44 AM,03/01/2016 11:55:00 AM,Code 2 Transport,03/01/2016 12:48:03 PM,400 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7822197133681, -122.458997620661)",160611217-62 -130730002,E26,13024201,Medical Incident,03/14/2013,03/13/2013,03/14/2013 12:10:22 AM,03/14/2013 12:13:06 AM,03/14/2013 12:13:17 AM,03/14/2013 12:15:21 AM,03/14/2013 12:20:17 AM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 12:39:21 AM,300 Block of SURREY ST,SF,94131,B06,26,8175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7359619969006, -122.436901828092)",130730002-E26 -160902877,67,16035814,Medical Incident,03/30/2016,03/30/2016,03/30/2016 05:04:34 PM,03/30/2016 05:07:34 PM,03/30/2016 05:10:46 PM,03/30/2016 05:10:46 PM,03/30/2016 05:15:01 PM,03/30/2016 05:27:47 PM,03/30/2016 05:51:08 PM,Code 2 Transport,03/30/2016 06:31:18 PM,3900 Block of 17TH ST,San Francisco,94114,B05,6,5417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,8,Castro/Upper Market,"(37.762462765244, -122.434659092708)",160902877-67 -111160321,E38,11038389,Medical Incident,04/26/2011,04/26/2011,04/26/2011 06:08:37 PM,04/26/2011 06:09:03 PM,04/26/2011 06:09:22 PM,04/26/2011 06:10:02 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 06:10:43 PM,1500 Block of POLK ST,SF,94109,B04,41,3123,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7910283417383, -122.420848621038)",111160321-E38 -132370045,E21,13079833,Medical Incident,08/25/2013,08/24/2013,08/25/2013 02:34:55 AM,08/25/2013 02:36:00 AM,08/25/2013 02:36:21 AM,04/25/2016 01:51:08 PM,08/25/2013 02:40:20 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/25/2013 02:53:10 AM,2300 Block of GOLDEN GATE AVE,SF,94117,B05,21,4521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",132370045-E21 -133040052,B02,13103162,Alarms,10/31/2013,10/30/2013,10/31/2013 06:03:57 AM,10/31/2013 06:04:33 AM,10/31/2013 06:04:54 AM,10/31/2013 06:06:41 AM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/31/2013 06:07:17 AM,400 Block of PARNASSUS AVE,SF,94131,B05,12,5156,3,3,3,false,Alarm,1,CHIEF,3,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",133040052-B02 -140930360,E44,14031424,Medical Incident,04/03/2014,04/03/2014,04/03/2014 09:14:52 PM,04/03/2014 09:18:20 PM,04/03/2014 09:33:45 PM,04/03/2014 09:35:27 PM,04/03/2014 09:37:59 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Code 2 Transport,04/03/2014 10:18:18 PM,2800 Block of SAN BRUNO AVE,SAN FRANCISCO,94134,B10,42,6333,,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7258169452923, -122.402916975907)",140930360-E44 -120500126,KM11,12016479,Medical Incident,02/19/2012,02/19/2012,02/19/2012 10:48:05 AM,02/19/2012 10:49:16 AM,02/19/2012 10:49:26 AM,02/19/2012 10:50:50 AM,02/19/2012 10:58:18 AM,02/19/2012 11:13:30 AM,02/19/2012 11:19:49 AM,Code 2 Transport,02/19/2012 11:47:59 AM,600 Block of FREDERICK ST,SF,94117,B05,12,4551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7659077959827, -122.456186927179)",120500126-KM11 -160163677,76,16006615,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:28:17 PM,01/16/2016 10:29:10 PM,01/16/2016 10:29:20 PM,01/16/2016 10:29:39 PM,01/16/2016 10:32:09 PM,01/16/2016 10:58:06 PM,01/16/2016 11:05:58 PM,Code 2 Transport,01/16/2016 11:55:51 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160163677-76 -131250129,T15,13042193,Medical Incident,05/05/2013,05/05/2013,05/05/2013 11:23:07 AM,05/05/2013 11:23:38 AM,05/05/2013 11:23:56 AM,05/05/2013 11:24:44 AM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 11:26:42 AM,100 Block of PINEHURST WAY,SF,94127,B09,15,8533,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,9,7,West of Twin Peaks,"(37.7289560592075, -122.464431116104)",131250129-T15 -141000148,E24,14033728,Alarms,04/10/2014,04/10/2014,04/10/2014 10:39:28 AM,04/10/2014 10:41:17 AM,04/10/2014 10:41:41 AM,04/10/2014 10:42:48 AM,04/10/2014 10:46:51 AM,04/25/2016 01:47:17 PM,04/25/2016 01:47:17 PM,Fire,04/10/2014 11:12:54 AM,4200 Block of 24TH ST,SAN FRANCISCO,94114,B06,24,5521,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7511432503724, -122.437391428378)",141000148-E24 -160802179,KM13,16031847,Medical Incident,03/20/2016,03/20/2016,03/20/2016 03:20:21 PM,03/20/2016 03:22:03 PM,03/20/2016 03:22:30 PM,03/20/2016 03:23:38 PM,03/20/2016 03:29:58 PM,03/20/2016 03:44:59 PM,03/20/2016 04:06:42 PM,Code 2 Transport,03/20/2016 04:24:20 PM,800 Block of GROVE ST,San Francisco,94117,B05,5,3533,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.776813620463, -122.430524683537)",160802179-KM13 -133120005,E41,13105880,Medical Incident,11/08/2013,11/07/2013,11/08/2013 12:19:44 AM,11/08/2013 12:21:39 AM,11/08/2013 12:21:54 AM,11/08/2013 12:23:52 AM,11/08/2013 12:26:18 AM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/08/2013 12:57:47 AM,1100 Block of PINE ST,SF,94109,B01,41,1464,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7903887572034, -122.414938763678)",133120005-E41 -160772652,77,16030673,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:57:08 PM,03/17/2016 03:58:07 PM,03/17/2016 04:04:10 PM,03/17/2016 04:04:15 PM,03/17/2016 04:15:18 PM,03/17/2016 04:37:07 PM,03/17/2016 04:41:48 PM,Code 2 Transport,03/17/2016 05:23:18 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160772652-77 -131590334,E29,13054155,Medical Incident,06/08/2013,06/08/2013,06/08/2013 08:57:10 PM,06/08/2013 08:59:43 PM,06/08/2013 09:00:11 PM,06/08/2013 09:01:00 PM,06/08/2013 09:04:51 PM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/08/2013 09:20:06 PM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,29,2671,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",131590334-E29 -160113094,53,16004539,Medical Incident,01/11/2016,01/11/2016,01/11/2016 07:40:21 PM,01/11/2016 07:40:57 PM,01/11/2016 07:41:14 PM,01/11/2016 07:41:43 PM,01/11/2016 07:47:41 PM,01/11/2016 08:30:41 PM,01/11/2016 08:33:31 PM,Code 2 Transport,01/11/2016 09:14:02 PM,100 Block of BRIDGEVIEW DR,San Francisco,94124,B10,42,6453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7354461848762, -122.396787161495)",160113094-53 -112370420,E38,11078396,Structure Fire,08/25/2011,08/25/2011,08/25/2011 11:41:00 PM,08/25/2011 11:42:01 PM,08/25/2011 11:43:14 PM,08/25/2011 11:45:15 PM,08/25/2011 11:48:54 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/25/2011 11:54:52 PM,0 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,true,,1,ENGINE,8,7,2,Presidio Heights,"(37.7848461901191, -122.4580614633)",112370420-E38 -160823813,53,16032754,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:37:47 PM,03/22/2016 09:39:16 PM,03/22/2016 09:39:26 PM,03/22/2016 09:39:32 PM,03/22/2016 09:58:02 PM,03/22/2016 10:13:39 PM,03/22/2016 10:32:25 PM,Code 2 Transport,03/22/2016 10:54:09 PM,2000 Block of POLK ST,San Francisco,94109,B04,41,3125,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",160823813-53 -110910214,B08,11030171,Medical Incident,04/01/2011,04/01/2011,04/01/2011 01:52:39 PM,04/01/2011 01:54:59 PM,04/01/2011 01:55:19 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 02:03:30 PM,2400 Block of 20TH AVE,SF,94116,B08,40,7434,E,E,3,false,,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7420735738087, -122.476628267314)",110910214-B08 -160043073,88,16001731,Medical Incident,01/04/2016,01/04/2016,01/04/2016 07:07:17 PM,01/04/2016 07:09:12 PM,01/04/2016 07:09:19 PM,01/04/2016 07:09:29 PM,01/04/2016 07:23:18 PM,01/04/2016 07:46:35 PM,01/04/2016 08:08:37 PM,Code 2 Transport,01/04/2016 08:58:43 PM,SAN BRUNO AV/FELTON ST,San Francisco,94134,B10,42,6337,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7300371964722, -122.404592619044)",160043073-88 -111930161,88,11063698,Medical Incident,07/12/2011,07/12/2011,07/12/2011 12:00:25 PM,07/12/2011 12:05:41 PM,07/12/2011 12:06:56 PM,07/12/2011 12:07:27 PM,07/12/2011 12:12:35 PM,07/12/2011 12:21:30 PM,07/12/2011 12:32:53 PM,Code 2 Transport,07/12/2011 01:05:56 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",111930161-88 -111550280,KM11,11051306,Traffic Collision,06/04/2011,06/04/2011,06/04/2011 04:52:40 PM,06/04/2011 04:54:26 PM,06/04/2011 04:54:43 PM,06/04/2011 04:55:24 PM,06/04/2011 04:57:26 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Patient Declined Transport,06/04/2011 05:27:57 PM,19TH ST/VALENCIA ST,SF,94110,B06,7,5434,3,3,3,false,,1,PRIVATE,2,6,8,Mission,"(37.7601012942817, -122.42142521264)",111550280-KM11 -123100169,E03,12103106,Alarms,11/05/2012,11/05/2012,11/05/2012 11:50:56 AM,11/05/2012 11:52:08 AM,11/05/2012 11:52:39 AM,11/05/2012 11:53:17 AM,11/05/2012 11:55:59 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 11:59:29 AM,200 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7897614265442, -122.404814371149)",123100169-E03 -112370155,KM01,11078171,Medical Incident,08/25/2011,08/25/2011,08/25/2011 10:21:03 AM,08/25/2011 10:21:39 AM,08/25/2011 10:23:11 AM,08/25/2011 10:24:04 AM,08/25/2011 10:30:18 AM,08/25/2011 10:45:08 AM,08/25/2011 10:50:05 AM,Code 2 Transport,08/25/2011 11:28:04 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",112370155-KM01 -113120312,E22,11103753,Medical Incident,11/08/2011,11/08/2011,11/08/2011 06:19:37 PM,11/08/2011 06:20:26 PM,11/08/2011 06:21:06 PM,11/08/2011 06:22:10 PM,11/08/2011 06:22:49 PM,11/08/2011 06:35:14 PM,04/25/2016 02:01:44 PM,Other,11/08/2011 06:56:23 PM,1200 Block of 16TH AVE,SF,94122,B08,22,7367,3,E,3,false,,1,ENGINE,1,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",113120312-E22 -130160049,66,13005339,Medical Incident,01/16/2013,01/15/2013,01/16/2013 07:35:37 AM,01/16/2013 07:37:15 AM,01/16/2013 07:37:36 AM,01/16/2013 07:39:43 AM,01/16/2013 07:59:18 AM,01/16/2013 08:13:06 AM,01/16/2013 08:59:52 AM,Code 2 Transport,01/16/2013 09:24:58 AM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",130160049-66 -123200263,KM12,12106443,Medical Incident,11/15/2012,11/15/2012,11/15/2012 04:41:32 PM,11/15/2012 04:41:32 PM,11/15/2012 04:41:32 PM,11/15/2012 04:43:35 PM,11/15/2012 04:57:50 PM,11/15/2012 05:04:47 PM,11/15/2012 05:18:41 PM,Code 2 Transport,11/15/2012 05:32:56 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",123200263-KM12 -130280268,E48,13009671,Medical Incident,01/28/2013,01/28/2013,01/28/2013 03:40:20 PM,01/28/2013 03:40:44 PM,01/28/2013 03:43:15 PM,01/28/2013 03:45:47 PM,01/28/2013 03:48:08 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/28/2013 04:49:47 PM,1200 Block of BAYSIDE DR,TI,94130,B03,48,2931,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8304547884044, -122.37629451046)",130280268-E48 -131540359,E01,13052310,Alarms,06/03/2013,06/03/2013,06/03/2013 07:31:57 PM,06/03/2013 07:32:47 PM,06/03/2013 07:33:07 PM,04/25/2016 01:52:28 PM,06/03/2013 07:34:51 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 08:05:20 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",131540359-E01 -123020265,57,12100233,Water Rescue,10/28/2012,10/28/2012,10/28/2012 04:41:15 PM,10/28/2012 04:43:26 PM,10/28/2012 04:44:14 PM,10/28/2012 04:45:00 PM,10/28/2012 04:53:52 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 05:02:05 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,MEDIC,6,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",123020265-57 -160403915,KM03,16016247,Medical Incident,02/09/2016,02/09/2016,02/09/2016 11:19:10 PM,02/09/2016 11:19:10 PM,02/09/2016 11:27:31 PM,02/09/2016 11:28:05 PM,02/09/2016 11:32:11 PM,02/09/2016 11:48:26 PM,02/10/2016 12:23:36 AM,Code 2 Transport,02/10/2016 12:41:17 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7799892619986, -122.407376463936)",160403915-KM03 -133490204,T03,13118490,Medical Incident,12/15/2013,12/15/2013,12/15/2013 01:15:18 PM,12/15/2013 01:16:35 PM,12/15/2013 01:17:08 PM,12/15/2013 01:18:12 PM,12/15/2013 01:19:31 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 01:34:41 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",133490204-T03 -113070344,82,11102126,Medical Incident,11/03/2011,11/03/2011,11/03/2011 07:24:32 PM,11/03/2011 07:25:01 PM,11/03/2011 07:26:51 PM,11/03/2011 07:26:59 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,04/25/2016 02:01:49 PM,PINE ST/POLK ST,SF,94109,B04,3,3122,3,3,3,true,,1,MEDIC,3,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",113070344-82 -123120220,T12,12103858,Structure Fire,11/07/2012,11/07/2012,11/07/2012 02:23:57 PM,11/07/2012 02:23:57 PM,11/07/2012 02:24:02 PM,11/07/2012 02:25:56 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 02:29:25 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,false,Alarm,1,TRUCK,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",123120220-T12 -133440020,E14,13116534,Medical Incident,12/10/2013,12/09/2013,12/10/2013 01:40:48 AM,12/10/2013 01:43:58 AM,12/10/2013 01:46:37 AM,12/10/2013 01:48:13 AM,12/10/2013 01:52:41 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 02:04:57 AM,200 Block of 25TH AVE,SF,94121,B07,14,7214,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7848109228763, -122.485148529498)",133440020-E14 -103290222,B04,10105413,Structure Fire,11/25/2010,11/25/2010,11/25/2010 05:08:15 PM,11/25/2010 05:09:16 PM,11/25/2010 05:09:48 PM,11/25/2010 05:10:39 PM,11/25/2010 05:13:31 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/25/2010 05:16:27 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,false,,1,CHIEF,6,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",103290222-B04 -123510005,87,12117240,Medical Incident,12/16/2012,12/15/2012,12/16/2012 12:02:33 AM,12/16/2012 12:07:22 AM,12/16/2012 12:11:05 AM,12/16/2012 12:11:12 AM,12/16/2012 12:19:18 AM,12/16/2012 12:42:11 AM,12/16/2012 12:50:03 AM,Code 2 Transport,12/16/2012 01:16:50 AM,200 Block of LARKIN ST,SF,94102,B02,36,1645,1,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",123510005-87 -111100177,79,11036308,Medical Incident,04/20/2011,04/20/2011,04/20/2011 12:10:38 PM,04/20/2011 12:11:40 PM,04/20/2011 12:11:56 PM,04/20/2011 12:12:09 PM,04/20/2011 12:17:30 PM,04/20/2011 12:31:12 PM,04/20/2011 12:50:39 PM,Code 2 Transport,04/20/2011 01:06:16 PM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,3,2,2,true,,1,MEDIC,2,1,3,North Beach,"(37.8061515935611, -122.418537074676)",111100177-79 -160112464,87,16004474,Medical Incident,01/11/2016,01/11/2016,01/11/2016 04:38:45 PM,01/11/2016 04:40:26 PM,01/11/2016 04:40:56 PM,01/11/2016 04:41:06 PM,01/11/2016 04:47:12 PM,01/11/2016 05:09:37 PM,01/11/2016 05:23:38 PM,Code 2 Transport,01/11/2016 05:51:40 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160112464-87 -130500191,KM06,13017017,Medical Incident,02/19/2013,02/19/2013,02/19/2013 04:39:59 PM,02/19/2013 04:42:09 PM,02/19/2013 04:46:50 PM,02/19/2013 04:47:05 PM,02/19/2013 04:53:09 PM,02/19/2013 05:08:08 PM,02/19/2013 05:20:55 PM,Code 2 Transport,02/19/2013 05:40:59 PM,200 Block of SHOTWELL ST,SF,94110,B02,7,5237,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7644380015359, -122.416376372761)",130500191-KM06 -130240144,57,13008259,Medical Incident,01/24/2013,01/24/2013,01/24/2013 10:32:29 AM,01/24/2013 10:34:40 AM,01/24/2013 10:36:20 AM,01/24/2013 10:36:56 AM,01/24/2013 10:40:57 AM,01/24/2013 10:55:43 AM,01/24/2013 11:18:02 AM,Code 2 Transport,01/24/2013 11:39:30 AM,3300 Block of 26TH ST,SF,94110,B06,11,5613,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7490035566606, -122.417846229862)",130240144-57 -160642611,KM04,16025576,Medical Incident,03/04/2016,03/04/2016,03/04/2016 04:18:07 PM,03/04/2016 04:19:20 PM,03/04/2016 04:20:54 PM,03/04/2016 04:21:27 PM,03/04/2016 04:39:17 PM,03/04/2016 05:02:05 PM,03/04/2016 05:36:52 PM,Code 2 Transport,03/04/2016 06:12:02 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160642611-KM04 -160773295,67,16030737,Medical Incident,03/17/2016,03/17/2016,03/17/2016 06:19:40 PM,03/17/2016 06:21:03 PM,03/17/2016 06:21:45 PM,03/17/2016 06:22:07 PM,03/17/2016 06:50:30 PM,03/17/2016 07:00:37 PM,03/17/2016 07:37:17 PM,Code 2 Transport,03/17/2016 07:44:15 PM,1600 Block of SCOTT ST,San Francisco,94115,B04,10,4131,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7849864733147, -122.438181369407)",160773295-67 -102570155,77,10081168,Medical Incident,09/14/2010,09/14/2010,09/14/2010 11:48:14 AM,09/14/2010 11:49:50 AM,09/14/2010 11:50:16 AM,09/14/2010 11:50:31 AM,09/14/2010 11:57:40 AM,09/14/2010 12:04:07 PM,09/14/2010 12:19:39 PM,Code 2 Transport,09/14/2010 12:47:17 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",102570155-77 -160692141,75,16027510,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:33:37 PM,03/09/2016 02:34:37 PM,03/09/2016 02:35:05 PM,03/09/2016 02:35:21 PM,03/09/2016 02:40:05 PM,03/09/2016 02:51:55 PM,03/09/2016 02:58:53 PM,Code 2 Transport,03/09/2016 03:33:26 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",160692141-75 -132320254,RS2,13078411,Outside Fire,08/20/2013,08/20/2013,08/20/2013 04:25:18 PM,08/20/2013 04:27:46 PM,08/20/2013 04:28:53 PM,08/20/2013 04:30:49 PM,04/25/2016 01:51:12 PM,04/25/2016 01:51:12 PM,04/25/2016 01:51:12 PM,Other,08/20/2013 04:32:48 PM,QUINT ST/OAKDALE AV,SF,94124,B10,42,6444,3,3,3,false,Fire,1,RESCUE SQUAD,10,10,10,Bayview Hunters Point,"(37.7377840563551, -122.395944826657)",132320254-RS2 -130010162,E14,13000116,Medical Incident,01/01/2013,12/31/2012,01/01/2013 02:30:28 AM,01/01/2013 02:31:45 AM,01/01/2013 02:39:28 AM,01/01/2013 02:40:59 AM,01/01/2013 02:42:51 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 02:53:00 AM,23RD AV/CLEMENT ST,SF,94121,B07,14,7175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7821217588227, -122.482735196985)",130010162-E14 -102950350,KM11,10094225,Medical Incident,10/22/2010,10/22/2010,10/22/2010 07:48:08 PM,10/22/2010 07:49:36 PM,10/22/2010 07:51:38 PM,10/22/2010 07:52:57 PM,10/22/2010 07:58:44 PM,10/22/2010 08:20:08 PM,10/22/2010 08:34:55 PM,Code 2 Transport,10/22/2010 09:03:04 PM,500 Block of HOWARD ST,SF,94105,B03,35,2141,2,2,2,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",102950350-KM11 -110380428,93,11012783,Medical Incident,02/07/2011,02/07/2011,02/07/2011 11:41:09 PM,02/07/2011 11:43:26 PM,02/07/2011 11:43:39 PM,02/07/2011 11:43:51 PM,02/07/2011 11:46:49 PM,02/07/2011 11:59:00 PM,02/08/2011 12:02:25 AM,Code 2 Transport,02/08/2011 12:21:07 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",110380428-93 -160512867,58,16020577,Medical Incident,02/20/2016,02/20/2016,02/20/2016 07:44:30 PM,02/20/2016 07:44:33 PM,02/20/2016 07:45:23 PM,02/20/2016 07:45:39 PM,02/20/2016 07:52:55 PM,02/20/2016 08:02:45 PM,02/20/2016 08:10:31 PM,Code 3 Transport,02/20/2016 08:54:08 PM,400 Block of 21ST AVE,San Francisco,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7793232485951, -122.480311461587)",160512867-58 -133320074,AM16,13112597,Medical Incident,11/28/2013,11/28/2013,11/28/2013 08:32:36 AM,11/28/2013 08:36:00 AM,11/28/2013 08:37:04 AM,11/28/2013 08:39:28 AM,11/28/2013 08:42:33 AM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,No Merit,11/28/2013 08:51:10 AM,1600 Block of GEARY BL,SF,94115,B04,38,3364,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.7848966681924, -122.429629258891)",133320074-AM16 -160340300,AM20,16013233,Medical Incident,02/03/2016,02/02/2016,02/03/2016 03:45:03 AM,02/03/2016 03:47:52 AM,02/03/2016 03:48:24 AM,02/03/2016 03:50:21 AM,02/03/2016 03:55:34 AM,02/03/2016 04:19:52 AM,02/03/2016 04:34:03 AM,Code 2 Transport,02/03/2016 04:59:35 AM,500 Block of CAPP ST,San Francisco,94110,B06,7,5446,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7578954435745, -122.417957286582)",160340300-AM20 -121200036,RS1,12039707,Medical Incident,04/29/2012,04/28/2012,04/29/2012 01:30:32 AM,04/29/2012 01:32:02 AM,04/29/2012 01:32:38 AM,04/29/2012 01:36:48 AM,04/29/2012 01:38:02 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 01:41:47 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",121200036-RS1 -160413516,58,16016631,Medical Incident,02/10/2016,02/10/2016,02/10/2016 08:14:57 PM,02/10/2016 08:17:05 PM,02/10/2016 08:17:33 PM,02/10/2016 08:17:39 PM,02/10/2016 08:17:39 PM,02/10/2016 08:48:59 PM,02/10/2016 09:26:30 PM,Code 2 Transport,02/10/2016 09:58:18 PM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",160413516-58 -131860404,E11,13063617,Other,07/05/2013,07/05/2013,07/05/2013 10:12:29 PM,07/05/2013 10:12:29 PM,07/05/2013 10:12:29 PM,04/25/2016 01:51:56 PM,04/25/2016 01:51:56 PM,04/25/2016 01:51:56 PM,04/25/2016 01:51:56 PM,Patient Declined Transport,07/05/2013 10:13:06 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",131860404-E11 -111920401,AM18,11063565,Medical Incident,07/11/2011,07/11/2011,07/11/2011 11:39:27 PM,07/11/2011 11:41:57 PM,07/11/2011 11:42:09 PM,07/11/2011 11:42:55 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Fire,07/12/2011 12:28:42 AM,100 Block of EXCELSIOR AVE,SF,94112,B09,43,6116,1,1,2,false,,1,PRIVATE,1,9,11,Excelsior,"(37.7256323988738, -122.432491023889)",111920401-AM18 -131130215,E01,13038122,Medical Incident,04/23/2013,04/23/2013,04/23/2013 02:23:36 PM,04/23/2013 02:27:06 PM,04/23/2013 02:28:04 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/25/2016 01:53:09 PM,MISSION ST/9TH ST,SF,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,ENGINE,3,2,6,South of Market,"(37.7762305177878, -122.414711004673)",131130215-E01 -103650238,T08,10117139,Structure Fire,12/31/2010,12/31/2010,12/31/2010 04:59:45 PM,12/31/2010 04:59:45 PM,12/31/2010 05:00:22 PM,12/31/2010 05:01:15 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 05:04:23 PM,MAIN ST/BRYANT ST,SF,94105,B03,35,2121,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7868986775116, -122.388779437164)",103650238-T08 -133000120,E31,13101895,Medical Incident,10/27/2013,10/26/2013,10/27/2013 07:22:02 AM,10/27/2013 07:23:43 AM,10/27/2013 07:24:06 AM,10/27/2013 07:25:43 AM,10/27/2013 07:31:27 AM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,No Merit,10/27/2013 07:31:38 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Non Life-threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",133000120-E31 -111030227,RS2,11034167,Structure Fire,04/13/2011,04/13/2011,04/13/2011 02:42:32 PM,04/13/2011 02:44:00 PM,04/13/2011 02:44:28 PM,04/13/2011 02:46:49 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/13/2011 02:49:18 PM,300 Block of RUSSIA AVE,SF,94112,B09,43,6126,3,3,3,false,,1,RESCUE SQUAD,10,9,11,Excelsior,"(37.7202067899323, -122.434420669446)",111030227-RS2 -120800137,E21,12026516,Medical Incident,03/20/2012,03/20/2012,03/20/2012 11:26:50 AM,03/20/2012 11:27:08 AM,03/20/2012 11:27:19 AM,04/25/2016 01:59:35 PM,03/20/2012 11:41:14 AM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/20/2012 12:55:39 PM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7695711762103, -122.449920089485)",120800137-E21 -160300458,70,16011661,Medical Incident,01/30/2016,01/29/2016,01/30/2016 03:23:55 AM,01/30/2016 03:24:53 AM,01/30/2016 03:25:40 AM,01/30/2016 03:25:45 AM,01/30/2016 03:30:42 AM,01/30/2016 03:45:31 AM,01/30/2016 03:52:54 AM,Code 2 Transport,01/30/2016 04:47:39 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160300458-70 -111230200,E11,11040637,Medical Incident,05/03/2011,05/03/2011,05/03/2011 01:56:38 PM,05/03/2011 01:58:21 PM,05/03/2011 01:59:42 PM,05/03/2011 02:01:05 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 02:03:48 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,2,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",111230200-E11 -160730485,AM02,16028881,Medical Incident,03/13/2016,03/12/2016,03/13/2016 06:08:45 AM,03/13/2016 06:09:44 AM,03/13/2016 06:10:23 AM,03/13/2016 06:11:03 AM,03/13/2016 06:14:13 AM,03/13/2016 06:37:53 AM,03/13/2016 06:52:23 AM,Code 2 Transport,03/13/2016 07:21:11 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",160730485-AM02 -111360349,E03,11045425,Medical Incident,05/16/2011,05/16/2011,05/16/2011 10:37:28 PM,05/16/2011 10:38:40 PM,05/16/2011 10:38:57 PM,05/16/2011 10:40:03 PM,05/16/2011 10:41:28 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/16/2011 10:45:52 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",111360349-E03 -121150181,54,12038142,Medical Incident,04/24/2012,04/24/2012,04/24/2012 01:26:09 PM,04/24/2012 01:26:50 PM,04/24/2012 01:27:00 PM,04/24/2012 01:27:12 PM,04/24/2012 01:29:50 PM,04/24/2012 01:59:43 PM,04/24/2012 02:24:29 PM,Code 2 Transport,04/24/2012 03:25:40 PM,100 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",121150181-54 -122780352,99,12092050,Medical Incident,10/04/2012,10/04/2012,10/04/2012 09:29:21 PM,10/04/2012 09:31:09 PM,10/04/2012 09:33:41 PM,10/04/2012 09:33:57 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Unable to Locate,10/04/2012 09:49:30 PM,1000 Block of HARRISON ST,SF,94103,B03,8,2254,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7770983962506, -122.404388964595)",122780352-99 -111270220,KM01,11042077,Structure Fire,05/07/2011,05/07/2011,05/07/2011 03:53:27 PM,05/07/2011 03:53:27 PM,05/07/2011 03:54:17 PM,05/07/2011 03:59:32 PM,05/07/2011 04:03:07 PM,05/07/2011 04:13:39 PM,05/07/2011 04:36:19 PM,Code 2 Transport,05/07/2011 05:14:11 PM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7802649718101, -122.40338721034)",111270220-KM01 -140440431,E08,14015165,Medical Incident,02/13/2014,02/13/2014,02/13/2014 11:28:13 PM,02/13/2014 11:29:13 PM,02/13/2014 11:34:17 PM,02/13/2014 11:35:38 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 11:50:31 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",140440431-E08 -132150334,E36,13072742,Medical Incident,08/03/2013,08/03/2013,08/03/2013 07:18:48 PM,08/03/2013 07:20:22 PM,08/03/2013 07:22:51 PM,08/03/2013 07:24:43 PM,08/03/2013 07:26:55 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,No Merit,08/03/2013 07:29:19 PM,0 Block of VALENCIA ST,SF,94103,B02,36,3311,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7720472598025, -122.422586141904)",132150334-E36 -160521160,88,16020763,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:26:11 AM,02/21/2016 10:26:11 AM,02/21/2016 10:27:00 AM,02/21/2016 10:27:07 AM,02/21/2016 10:35:48 AM,02/21/2016 10:50:14 AM,02/21/2016 11:15:16 AM,Code 2 Transport,02/21/2016 11:42:01 AM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160521160-88 -122910384,99,12096526,Structure Fire,10/17/2012,10/17/2012,10/17/2012 07:58:16 PM,10/17/2012 07:58:50 PM,10/17/2012 07:59:02 PM,10/17/2012 07:59:36 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 08:06:57 PM,0 Block of KISSLING ST,SF,94103,B02,36,5114,3,3,3,true,Alarm,1,MEDIC,12,2,6,South of Market,"(37.7728460200861, -122.414655134668)",122910384-99 -160051793,55,16002005,Medical Incident,01/05/2016,01/05/2016,01/05/2016 01:18:03 PM,01/05/2016 01:18:51 PM,01/05/2016 01:19:32 PM,01/05/2016 01:19:46 PM,01/05/2016 01:28:32 PM,01/05/2016 01:46:19 PM,01/05/2016 02:01:03 PM,Code 2 Transport,01/05/2016 02:54:17 PM,700 Block of NORTH POINT ST,San Francisco,94109,B01,28,1525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.805880116434, -122.419554681648)",160051793-55 -110330397,E41,11011003,Medical Incident,02/02/2011,02/02/2011,02/02/2011 10:14:48 PM,02/02/2011 10:21:26 PM,02/02/2011 10:21:59 PM,02/02/2011 10:22:47 PM,02/02/2011 10:25:05 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 10:30:49 PM,JACKSON ST/VAN NESS AV,SF,94109,B04,41,3153,3,3,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7939350051074, -122.423048803014)",110330397-E41 -133570351,89,13121510,Medical Incident,12/23/2013,12/23/2013,12/23/2013 09:44:39 PM,12/23/2013 09:44:48 PM,12/23/2013 09:45:08 PM,12/23/2013 09:45:17 PM,12/23/2013 09:53:40 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,No Merit,12/23/2013 10:01:04 PM,100 Block of RALSTON ST,SF,94132,B09,33,8411,E,E,3,false,Potentially Life-Threatening,1,MEDIC,4,9,11,Oceanview/Merced/Ingleside,"(37.7151777593562, -122.468838490776)",133570351-89 -110820080,E12,11026864,Medical Incident,03/23/2011,03/22/2011,03/23/2011 07:34:47 AM,03/23/2011 07:35:22 AM,03/23/2011 07:35:36 AM,03/23/2011 07:36:26 AM,03/23/2011 07:40:25 AM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/23/2011 07:52:46 AM,500 Block of PARNASSUS AVE,SF,94122,B05,12,7323,E,E,3,true,,1,ENGINE,2,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",110820080-E12 -133200036,KM15,13108602,Medical Incident,11/16/2013,11/15/2013,11/16/2013 03:40:05 AM,11/16/2013 03:42:52 AM,11/16/2013 03:43:42 AM,11/16/2013 03:44:29 AM,11/16/2013 03:53:30 AM,11/16/2013 04:03:00 AM,11/16/2013 04:10:46 AM,Code 2 Transport,11/16/2013 04:36:11 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",133200036-KM15 -111820242,58,11060120,Medical Incident,07/01/2011,07/01/2011,07/01/2011 02:22:30 PM,07/01/2011 02:22:49 PM,07/01/2011 02:24:28 PM,04/25/2016 02:03:53 PM,07/01/2011 02:38:37 PM,07/01/2011 02:48:59 PM,07/01/2011 03:02:26 PM,Code 2 Transport,07/01/2011 03:31:11 PM,600 Block of TERESITA BLVD,SF,94127,B09,39,8245,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7374074387293, -122.446456076302)",111820242-58 -121060128,E39,12035085,Medical Incident,04/15/2012,04/15/2012,04/15/2012 10:32:41 AM,04/15/2012 10:35:46 AM,04/15/2012 10:36:19 AM,04/15/2012 10:37:16 AM,04/15/2012 10:41:21 AM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/15/2012 11:05:41 AM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",121060128-E39 -160722207,AM08,16028656,Water Rescue,03/12/2016,03/12/2016,03/12/2016 04:03:59 PM,03/12/2016 04:05:45 PM,03/12/2016 04:06:22 PM,03/12/2016 04:06:56 PM,03/12/2016 04:31:40 PM,03/12/2016 05:07:08 PM,03/12/2016 05:27:06 PM,Code 2 Transport,03/12/2016 05:58:08 PM,900 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,2,3,3,false,Fire,1,PRIVATE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160722207-AM08 -113280184,55,11108891,Medical Incident,11/24/2011,11/24/2011,11/24/2011 03:29:36 PM,11/24/2011 03:31:45 PM,11/24/2011 03:31:53 PM,11/24/2011 03:32:11 PM,11/24/2011 03:41:00 PM,11/24/2011 04:03:27 PM,11/24/2011 04:12:52 PM,Code 2 Transport,11/24/2011 03:44:05 PM,700 Block of 4TH ST,SF,94107,B03,8,2224,2,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",113280184-55 -160650739,82,16025850,Medical Incident,03/05/2016,03/04/2016,03/05/2016 07:29:35 AM,03/05/2016 07:31:01 AM,03/05/2016 07:31:38 AM,03/05/2016 07:32:07 AM,03/05/2016 07:41:01 AM,03/05/2016 07:58:40 AM,03/05/2016 08:16:39 AM,Code 2 Transport,03/05/2016 08:49:35 AM,200 Block of ALABAMA ST,San Francisco,94103,B02,29,5241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7671584949516, -122.41250540209)",160650739-82 -110560064,E10,11018356,Medical Incident,02/25/2011,02/24/2011,02/25/2011 07:26:15 AM,02/25/2011 07:27:36 AM,02/25/2011 07:28:40 AM,02/25/2011 07:30:42 AM,02/25/2011 07:33:17 AM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 07:42:40 AM,200 Block of 9TH AVE,SF,94118,B07,31,7136,3,3,3,true,,1,ENGINE,4,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",110560064-E10 -123390257,KM10,12113117,Medical Incident,12/04/2012,12/04/2012,12/04/2012 03:47:47 PM,12/04/2012 03:48:46 PM,12/04/2012 03:49:14 PM,12/04/2012 03:50:22 PM,12/04/2012 03:57:37 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 04:05:02 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",123390257-KM10 -130890385,E41,13029941,Alarms,03/30/2013,03/30/2013,03/30/2013 11:19:52 PM,03/30/2013 11:20:55 PM,03/30/2013 11:21:06 PM,03/30/2013 11:22:24 PM,03/30/2013 11:23:40 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 11:34:14 PM,900 Block of MASON ST,SF,94108,B01,41,1414,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",130890385-E41 -123150048,E36,12104724,Alarms,11/10/2012,11/09/2012,11/10/2012 03:29:57 AM,11/10/2012 03:31:34 AM,11/10/2012 03:32:30 AM,11/10/2012 03:34:20 AM,11/10/2012 03:36:09 AM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/10/2012 03:46:43 AM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,false,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.777460008139, -122.418879416566)",123150048-E36 -131830273,T01,13062428,Structure Fire,07/02/2013,07/02/2013,07/02/2013 05:15:20 PM,07/02/2013 05:16:05 PM,07/02/2013 05:16:39 PM,07/02/2013 05:17:58 PM,07/02/2013 05:19:09 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Other,07/02/2013 06:09:47 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Fire,1,TRUCK,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",131830273-T01 -132170147,B03,13073271,Alarms,08/05/2013,08/05/2013,08/05/2013 11:22:59 AM,08/05/2013 11:23:52 AM,08/05/2013 11:24:08 AM,08/05/2013 11:25:08 AM,08/05/2013 11:27:29 AM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 11:30:42 AM,0 Block of SOUTH PARK,SF,94107,B03,8,2153,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",132170147-B03 -120830359,AP,12027715,Other,03/23/2012,03/23/2012,03/23/2012 09:51:16 PM,03/23/2012 09:51:16 PM,03/23/2012 09:51:16 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Fire,03/23/2012 09:52:36 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120830359-AP -133000146,82,13101915,Medical Incident,10/27/2013,10/27/2013,10/27/2013 09:16:02 AM,10/27/2013 09:17:24 AM,10/27/2013 09:18:05 AM,10/27/2013 09:18:25 AM,10/27/2013 09:21:28 AM,10/27/2013 09:41:37 AM,04/25/2016 01:50:04 PM,Code 2 Transport,10/27/2013 10:21:50 AM,2000 Block of 19TH AVE,SF,94116,B08,40,7417,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",133000146-82 -122090141,B07,12069409,Alarms,07/27/2012,07/27/2012,07/27/2012 12:01:29 PM,07/27/2012 12:02:26 PM,07/27/2012 12:02:37 PM,07/27/2012 12:04:47 PM,07/27/2012 12:05:07 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 12:14:07 PM,4100 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,false,Alarm,1,CHIEF,1,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",122090141-B07 -160560923,KM08,16022302,Medical Incident,02/25/2016,02/25/2016,02/25/2016 09:06:53 AM,02/25/2016 09:07:04 AM,02/25/2016 09:08:08 AM,02/25/2016 09:08:40 AM,02/25/2016 09:15:00 AM,02/25/2016 09:40:17 AM,02/25/2016 10:00:58 AM,Code 2 Transport,02/25/2016 10:23:03 AM,1600 Block of LAKE ST,San Francisco,94121,B07,31,7163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7860492011386, -122.477105652462)",160560923-KM08 -160843877,KM03,16033551,Traffic Collision,03/24/2016,03/24/2016,03/24/2016 08:52:48 PM,03/24/2016 08:52:48 PM,03/24/2016 08:53:32 PM,03/24/2016 08:54:00 PM,03/24/2016 08:57:27 PM,03/24/2016 09:14:09 PM,03/24/2016 09:24:26 PM,Code 2 Transport,03/24/2016 10:00:10 PM,VAN NESS AV/SUTTER ST,San Francisco,94109,B04,3,3161,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",160843877-KM03 -112200249,E02,11072746,Structure Fire,08/08/2011,08/08/2011,08/08/2011 04:41:00 PM,08/08/2011 04:41:00 PM,08/08/2011 04:41:10 PM,08/08/2011 04:42:24 PM,08/08/2011 04:44:19 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Fire,08/08/2011 04:45:05 PM,KEARNY ST/VALLEJO ST,SF,94133,B01,2,1251,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.7989693078073, -122.405645269993)",112200249-E02 -122550131,E19,12084234,Alarms,09/11/2012,09/11/2012,09/11/2012 10:24:08 AM,09/11/2012 10:25:22 AM,09/11/2012 10:25:41 AM,09/11/2012 10:27:37 AM,09/11/2012 10:28:43 AM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 11:06:24 AM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",122550131-E19 -130490316,E31,13016825,Medical Incident,02/18/2013,02/18/2013,02/18/2013 08:02:01 PM,02/18/2013 08:02:21 PM,02/18/2013 08:02:53 PM,02/18/2013 08:03:18 PM,02/18/2013 08:04:33 PM,04/25/2016 01:54:13 PM,04/25/2016 01:54:13 PM,Other,02/18/2013 08:12:26 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,3,1,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",130490316-E31 -160600284,KM03,16023746,Medical Incident,02/29/2016,02/28/2016,02/29/2016 03:23:13 AM,02/29/2016 03:24:34 AM,02/29/2016 03:24:52 AM,02/29/2016 03:25:18 AM,02/29/2016 03:33:14 AM,02/29/2016 03:47:17 AM,02/29/2016 03:55:01 AM,Code 2 Transport,02/29/2016 04:18:23 AM,HYDE ST/MCALLISTER ST,San Francisco,94102,B02,36,1552,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160600284-KM03 -160062198,62,16002449,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:58:08 PM,01/06/2016 02:58:08 PM,01/06/2016 02:58:32 PM,01/06/2016 02:59:06 PM,01/06/2016 03:04:59 PM,01/06/2016 03:17:43 PM,01/06/2016 03:28:49 PM,Code 2 Transport,01/06/2016 03:57:00 PM,3100 Block of 16TH ST,San Francisco,94110,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7648333975842, -122.422364680364)",160062198-62 -113100273,RC3,11103125,Medical Incident,11/06/2011,11/06/2011,11/06/2011 06:55:25 PM,11/06/2011 06:56:57 PM,11/06/2011 06:57:14 PM,11/06/2011 06:57:24 PM,11/06/2011 07:04:10 PM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Medical Examiner,11/06/2011 08:17:43 PM,0 Block of MINERVA ST,SF,94112,B09,33,8372,E,E,3,true,,1,RESCUE CAPTAIN,3,9,11,Oceanview/Merced/Ingleside,"(37.7158849109873, -122.454797121611)",113100273-RC3 -133180219,E01,13108106,Medical Incident,11/14/2013,11/14/2013,11/14/2013 01:50:02 PM,11/14/2013 01:51:28 PM,11/14/2013 01:51:49 PM,11/14/2013 01:52:36 PM,11/14/2013 01:55:43 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,Other,11/14/2013 02:07:22 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",133180219-E01 -123650341,T16,12122267,Structure Fire,12/30/2012,12/30/2012,12/30/2012 10:51:06 PM,12/30/2012 10:51:07 PM,12/30/2012 10:51:17 PM,12/30/2012 10:52:34 PM,04/25/2016 01:55:03 PM,04/25/2016 01:55:03 PM,04/25/2016 01:55:03 PM,Other,12/30/2012 10:53:59 PM,FILLMORE ST/UNION ST,SF,94123,B04,16,3552,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.7970890002513, -122.435489829172)",123650341-T16 -160201738,AM04,16008002,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:35:38 PM,01/20/2016 12:36:15 PM,01/20/2016 12:36:43 PM,01/20/2016 12:37:55 PM,01/20/2016 12:42:47 PM,01/20/2016 12:54:54 PM,01/20/2016 01:27:54 PM,Code 2 Transport,01/20/2016 01:50:55 PM,300 Block of BRANNAN ST,San Francisco,94107,B03,8,2173,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7805681903473, -122.393792694416)",160201738-AM04 -120100140,E15,12003440,Medical Incident,01/10/2012,01/10/2012,01/10/2012 11:13:02 AM,01/10/2012 11:14:02 AM,01/10/2012 11:14:44 AM,01/10/2012 11:16:03 AM,01/10/2012 11:18:04 AM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/10/2012 11:23:30 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",120100140-E15 -112650300,E01,11087593,Medical Incident,09/22/2011,09/22/2011,09/22/2011 04:26:18 PM,09/22/2011 04:26:50 PM,09/22/2011 04:27:28 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,Other,09/22/2011 04:31:28 PM,200 Block of GEARY ST,SF,94102,B01,1,1323,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",112650300-E01 -160321252,67,16012530,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:08:04 AM,02/01/2016 11:08:04 AM,02/01/2016 11:09:29 AM,02/01/2016 11:09:39 AM,02/01/2016 11:12:49 AM,02/01/2016 11:28:14 AM,02/01/2016 11:38:48 AM,Code 2 Transport,02/01/2016 12:06:53 PM,1200 Block of MARKET ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",160321252-67 -130380251,75,13013044,Medical Incident,02/07/2013,02/07/2013,02/07/2013 04:14:56 PM,02/07/2013 04:15:48 PM,02/07/2013 04:16:51 PM,02/07/2013 04:19:53 PM,02/07/2013 04:19:59 PM,02/07/2013 04:31:29 PM,02/07/2013 04:40:22 PM,Code 2 Transport,02/07/2013 05:26:47 PM,200 Block of SHOTWELL ST,SF,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7644380015359, -122.416376372761)",130380251-75 -160510023,AM20,16020303,Medical Incident,02/20/2016,02/19/2016,02/20/2016 12:07:04 AM,02/20/2016 12:07:04 AM,02/20/2016 12:07:31 AM,02/20/2016 12:08:30 AM,02/20/2016 12:15:56 AM,02/20/2016 12:49:10 AM,02/20/2016 01:00:42 AM,Code 2 Transport,02/20/2016 01:45:02 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160510023-AM20 -103620238,E08,10116158,Medical Incident,12/28/2010,12/28/2010,12/28/2010 04:59:40 PM,12/28/2010 05:00:25 PM,12/28/2010 05:02:23 PM,12/28/2010 05:03:31 PM,12/28/2010 05:05:44 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,No Merit,12/28/2010 05:10:03 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103620238-E08 -140760323,58,14025838,Medical Incident,03/17/2014,03/17/2014,03/17/2014 07:04:03 PM,03/17/2014 07:05:26 PM,03/17/2014 07:14:28 PM,03/17/2014 07:14:28 PM,03/17/2014 07:18:47 PM,03/17/2014 07:34:44 PM,03/17/2014 07:50:40 PM,Code 2 Transport,03/17/2014 08:10:03 PM,3000 Block of 23RD ST,SAN FRANCISCO,94110,B06,7,5477,1,1,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7542522286171, -122.412599303181)",140760323-58 -123210123,B01,12106640,Alarms,11/16/2012,11/16/2012,11/16/2012 10:46:07 AM,11/16/2012 10:47:26 AM,11/16/2012 10:48:01 AM,11/16/2012 10:48:15 AM,11/16/2012 10:53:02 AM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/16/2012 10:58:49 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",123210123-B01 -113350187,RC3,11110907,Medical Incident,12/01/2011,12/01/2011,12/01/2011 01:23:12 PM,12/01/2011 01:24:54 PM,12/01/2011 01:25:19 PM,12/01/2011 01:28:37 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,12/01/2011 01:28:51 PM,16TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,E,3,true,,1,RESCUE CAPTAIN,3,2,8,Mission,"(37.7649173790256, -122.421886447232)",113350187-RC3 -122260343,E07,12075058,Medical Incident,08/13/2012,08/13/2012,08/13/2012 08:10:21 PM,08/13/2012 08:12:15 PM,08/13/2012 08:12:50 PM,08/13/2012 08:13:39 PM,08/13/2012 08:15:56 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 08:32:46 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7581042111797, -122.421163821698)",122260343-E07 -133140044,D2,13106641,Structure Fire,11/10/2013,11/09/2013,11/10/2013 03:24:42 AM,11/10/2013 03:25:44 AM,11/10/2013 03:31:45 AM,11/10/2013 03:34:09 AM,11/10/2013 03:36:49 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/10/2013 04:08:55 AM,2000 Block of BROADWAY,SF,94123,B04,38,3355,3,3,3,false,Alarm,1,CHIEF,7,4,2,Pacific Heights,"(37.7948438279361, -122.430822602721)",133140044-D2 -131770367,T14,13060241,Structure Fire,06/26/2013,06/26/2013,06/26/2013 09:23:21 PM,06/26/2013 09:25:00 PM,06/26/2013 09:25:29 PM,06/26/2013 09:26:41 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 09:36:48 PM,2400 Block of LAKE ST,SF,94121,B07,14,7217,3,3,3,false,Alarm,1,TRUCK,5,7,1,Outer Richmond,"(37.7856667322606, -122.485681909658)",131770367-T14 -160562801,AM16,16022474,Medical Incident,02/25/2016,02/25/2016,02/25/2016 04:49:26 PM,02/25/2016 04:49:26 PM,02/25/2016 04:49:45 PM,02/25/2016 04:50:27 PM,02/25/2016 04:52:19 PM,02/25/2016 05:04:29 PM,02/25/2016 05:17:50 PM,Code 2 Transport,02/25/2016 05:41:35 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160562801-AM16 -112540114,E38,11083763,Administrative,09/11/2011,09/11/2011,09/11/2011 10:00:33 AM,09/11/2011 10:00:35 AM,09/11/2011 10:00:41 AM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Other,09/11/2011 10:01:07 AM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",112540114-E38 -110550132,E06,11018081,Medical Incident,02/24/2011,02/24/2011,02/24/2011 10:28:13 AM,02/24/2011 10:30:01 AM,02/24/2011 10:30:15 AM,02/24/2011 10:35:29 AM,02/24/2011 10:31:19 AM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,Other,02/24/2011 10:42:11 AM,0 Block of BELCHER ST,SF,94114,B05,6,5131,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7685230217392, -122.430233400692)",110550132-E06 -133460159,B01,13117364,Alarms,12/12/2013,12/12/2013,12/12/2013 10:57:45 AM,12/12/2013 10:58:59 AM,12/12/2013 11:00:05 AM,12/12/2013 11:00:44 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 11:07:13 AM,100 Block of POST ST,SF,94108,B03,1,1316,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7887963252862, -122.403991276137)",133460159-B01 -160572912,60,16022867,Medical Incident,02/26/2016,02/26/2016,02/26/2016 06:08:14 PM,02/26/2016 06:10:28 PM,02/26/2016 06:10:41 PM,02/26/2016 06:11:08 PM,02/26/2016 06:33:14 PM,02/26/2016 06:46:02 PM,02/26/2016 07:03:58 PM,Code 2 Transport,02/26/2016 07:33:53 PM,100 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",160572912-60 -160502069,RC2,16020122,Medical Incident,02/19/2016,02/19/2016,02/19/2016 02:29:42 PM,02/19/2016 02:29:52 PM,02/19/2016 02:32:31 PM,02/19/2016 02:32:31 PM,02/19/2016 02:33:06 PM,02/19/2016 02:46:59 PM,02/19/2016 02:54:07 PM,Code 2 Transport,02/19/2016 03:09:26 PM,900 Block of CABRILLO ST,San Francisco,94118,B07,31,7143,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,7,1,Inner Richmond,"(37.7752045181889, -122.468696622564)",160502069-RC2 -112780275,E21,11092105,Medical Incident,10/05/2011,10/05/2011,10/05/2011 05:36:09 PM,10/05/2011 05:38:37 PM,10/05/2011 05:39:31 PM,10/05/2011 05:40:23 PM,10/05/2011 05:40:58 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 05:44:46 PM,500 Block of BAKER ST,SF,94117,B05,21,4243,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.775978571838, -122.441325869621)",112780275-E21 -133410333,E43,13115752,Traffic Collision,12/07/2013,12/07/2013,12/07/2013 08:05:43 PM,12/07/2013 08:06:25 PM,12/07/2013 08:06:36 PM,12/07/2013 08:08:00 PM,12/07/2013 08:10:06 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/07/2013 08:13:28 PM,MISSION ST/GENEVA AV,SF,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",133410333-E43 -102720168,E05,10086350,Medical Incident,09/29/2010,09/29/2010,09/29/2010 12:02:35 PM,09/29/2010 12:03:59 PM,09/29/2010 12:04:10 PM,09/29/2010 12:04:53 PM,09/29/2010 12:07:21 PM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Other,09/29/2010 12:09:02 PM,1000 Block of HAYES ST,SF,94117,B05,21,363,3,3,3,true,,1,ENGINE,2,5,5,Hayes Valley,"(37.7754672344817, -122.433645632366)",102720168-E05 -160330358,78,16012842,Medical Incident,02/02/2016,02/01/2016,02/02/2016 04:17:37 AM,02/02/2016 04:21:12 AM,02/02/2016 04:21:47 AM,02/02/2016 04:21:58 AM,02/02/2016 04:24:18 AM,02/02/2016 04:51:10 AM,02/02/2016 04:57:38 AM,Code 2 Transport,02/02/2016 05:29:35 AM,LARKIN ST/GROVE ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160330358-78 -122310299,T03,12076709,Medical Incident,08/18/2012,08/18/2012,08/18/2012 07:37:51 PM,08/18/2012 07:38:28 PM,08/18/2012 07:40:19 PM,08/18/2012 07:41:38 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 07:42:25 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",122310299-T03 -112960208,T07,11098203,Structure Fire,10/23/2011,10/23/2011,10/23/2011 01:55:35 PM,10/23/2011 01:55:35 PM,10/23/2011 01:55:53 PM,10/23/2011 01:56:49 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 01:59:13 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",112960208-T07 -123050290,AM20,12101267,Medical Incident,10/31/2012,10/31/2012,10/31/2012 02:37:42 PM,10/31/2012 02:41:20 PM,10/31/2012 02:43:00 PM,10/31/2012 02:43:51 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,04/25/2016 01:56:01 PM,ELLIS ST/HYDE ST,SF,94109,B02,3,1555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",123050290-AM20 -160022327,76,16000805,Medical Incident,01/02/2016,01/02/2016,01/02/2016 04:44:26 PM,01/02/2016 04:45:24 PM,01/02/2016 04:46:50 PM,01/02/2016 04:46:50 PM,01/02/2016 04:56:14 PM,01/02/2016 05:16:47 PM,01/02/2016 05:27:42 PM,Code 2 Transport,01/02/2016 05:58:42 PM,700 Block of FOLSOM ST,San Francisco,94103,B03,1,2176,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7832536611671, -122.399701172169)",160022327-76 -112390155,E03,11078849,Structure Fire,08/27/2011,08/27/2011,08/27/2011 11:31:47 AM,08/27/2011 11:31:48 AM,08/27/2011 11:31:58 AM,08/27/2011 11:33:05 AM,08/27/2011 11:33:45 AM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Fire,08/27/2011 11:34:26 AM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",112390155-E03 -120360009,55,12011847,Medical Incident,02/05/2012,02/04/2012,02/05/2012 12:38:45 AM,02/05/2012 12:39:07 AM,02/05/2012 12:39:29 AM,02/05/2012 12:41:20 AM,02/05/2012 12:48:55 AM,02/05/2012 01:09:09 AM,02/05/2012 01:24:09 AM,Code 2 Transport,02/05/2012 01:57:50 AM,MISSION ST/4TH ST,SF,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",120360009-55 -121050372,77,12034937,Medical Incident,04/14/2012,04/14/2012,04/14/2012 10:05:00 PM,04/14/2012 10:06:15 PM,04/14/2012 10:06:43 PM,04/14/2012 10:06:57 PM,04/14/2012 10:10:20 PM,04/14/2012 10:21:29 PM,04/14/2012 10:30:50 PM,Code 3 Transport,04/14/2012 11:03:24 PM,1000 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7962956458196, -122.41212224482)",121050372-77 -160761282,AM02,16030095,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:41:18 AM,03/16/2016 10:42:09 AM,03/16/2016 10:42:27 AM,03/16/2016 10:43:07 AM,03/16/2016 10:50:56 AM,03/16/2016 11:18:27 AM,03/16/2016 11:36:19 AM,Code 2 Transport,03/16/2016 12:39:23 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160761282-AM02 -160411950,86,16016471,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:32:18 PM,02/10/2016 01:34:12 PM,02/10/2016 01:34:36 PM,02/10/2016 01:34:46 PM,02/10/2016 01:41:21 PM,02/10/2016 01:55:48 PM,02/10/2016 02:02:53 PM,Code 2 Transport,02/10/2016 02:54:37 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160411950-86 -111500120,AM02,11049648,Medical Incident,05/30/2011,05/30/2011,05/30/2011 10:50:14 AM,05/30/2011 10:50:34 AM,05/30/2011 10:51:07 AM,05/30/2011 10:51:38 AM,05/30/2011 10:53:43 AM,05/30/2011 11:05:54 AM,05/30/2011 11:19:27 AM,Code 2 Transport,05/30/2011 11:50:23 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",111500120-AM02 -110150107,E36,11004937,Medical Incident,01/15/2011,01/15/2011,01/15/2011 09:13:23 AM,01/15/2011 09:13:43 AM,01/15/2011 09:14:59 AM,01/15/2011 09:15:30 AM,01/15/2011 09:17:58 AM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 09:27:50 AM,7TH ST/STEVENSON ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",110150107-E36 -112180150,92,11072030,Medical Incident,08/06/2011,08/06/2011,08/06/2011 10:25:55 AM,08/06/2011 10:26:35 AM,08/06/2011 10:26:56 AM,08/06/2011 10:27:06 AM,08/06/2011 10:35:51 AM,08/06/2011 10:51:41 AM,08/06/2011 11:06:28 AM,Code 2 Transport,08/06/2011 11:30:36 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7642444942899, -122.419521866555)",112180150-92 -121110391,T01,12036895,Structure Fire,04/20/2012,04/20/2012,04/20/2012 08:54:18 PM,04/20/2012 08:54:19 PM,04/20/2012 08:54:27 PM,04/20/2012 08:55:54 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/20/2012 08:57:46 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",121110391-T01 -140280091,77,14009455,Medical Incident,01/28/2014,01/28/2014,01/28/2014 08:57:45 AM,01/28/2014 09:00:00 AM,01/28/2014 09:02:09 AM,01/28/2014 09:02:24 AM,01/28/2014 09:06:14 AM,01/28/2014 09:15:03 AM,01/28/2014 09:56:22 AM,Code 2 Transport,01/28/2014 10:13:13 AM,400 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7810688918781, -122.407387172098)",140280091-77 -102750242,T03,10087411,Medical Incident,10/02/2010,10/02/2010,10/02/2010 03:52:31 PM,10/02/2010 03:52:58 PM,10/02/2010 03:53:47 PM,10/02/2010 03:54:34 PM,10/02/2010 03:57:20 PM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,No Merit,10/02/2010 03:59:12 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",102750242-T03 -111770295,E10,11058456,Medical Incident,06/26/2011,06/26/2011,06/26/2011 04:52:14 PM,06/26/2011 04:52:43 PM,06/26/2011 04:54:30 PM,06/26/2011 04:55:25 PM,06/26/2011 04:58:45 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,06/26/2011 05:31:57 PM,3900 Block of WASHINGTON ST,SF,94118,B07,10,4442,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7884881831157, -122.458299804342)",111770295-E10 -160493007,86,16019829,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:00:57 PM,02/18/2016 06:03:01 PM,02/18/2016 06:05:25 PM,02/18/2016 06:06:35 PM,02/18/2016 06:25:18 PM,02/18/2016 06:52:30 PM,02/18/2016 07:13:14 PM,Code 2 Transport,02/18/2016 08:06:22 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160493007-86 -132970021,89,13100745,Medical Incident,10/24/2013,10/23/2013,10/24/2013 01:20:31 AM,10/24/2013 01:22:01 AM,10/24/2013 01:22:11 AM,10/24/2013 01:22:30 AM,10/24/2013 01:25:35 AM,10/24/2013 01:37:33 AM,10/24/2013 01:39:22 AM,Code 2 Transport,10/24/2013 02:00:19 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132970021-89 -160721688,AM04,16028597,Medical Incident,03/12/2016,03/12/2016,03/12/2016 01:19:37 PM,03/12/2016 01:20:33 PM,03/12/2016 01:21:05 PM,03/12/2016 01:21:44 PM,03/12/2016 01:44:46 PM,03/12/2016 01:58:17 PM,03/12/2016 02:14:18 PM,Code 2 Transport,03/12/2016 02:37:54 PM,POLK ST/DR TOM WADDELL PL,San Francisco,94102,B02,36,381,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7777435982818, -122.418161507408)",160721688-AM04 -112640072,T13,11087108,Alarms,09/21/2011,09/20/2011,09/21/2011 06:52:59 AM,09/21/2011 06:54:07 AM,09/21/2011 06:54:26 AM,09/21/2011 06:56:25 AM,09/21/2011 06:59:01 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/21/2011 07:00:24 AM,100 Block of MISSION ST,SF,94105,B03,35,2116,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7921507122354, -122.394451120982)",112640072-T13 -160823887,72,16032758,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:00:43 PM,03/22/2016 10:01:41 PM,03/22/2016 10:01:57 PM,03/22/2016 10:02:05 PM,03/22/2016 10:09:48 PM,03/22/2016 10:32:00 PM,03/22/2016 10:55:58 PM,Code 2 Transport,03/22/2016 11:27:11 PM,0 Block of CRESCIO CT,San Francisco,94112,B09,33,6214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7096536255367, -122.447597719879)",160823887-72 -102440212,KM04,10076996,Medical Incident,09/01/2010,09/01/2010,09/01/2010 01:09:11 PM,09/01/2010 01:09:30 PM,09/01/2010 01:11:53 PM,09/01/2010 01:12:23 PM,04/25/2016 02:08:48 PM,09/01/2010 01:26:11 PM,09/01/2010 01:40:00 PM,Code 2 Transport,09/01/2010 02:02:05 PM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,PRIVATE,2,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",102440212-KM04 -160691632,65,16027462,Medical Incident,03/09/2016,03/09/2016,03/09/2016 12:24:27 PM,03/09/2016 12:25:27 PM,03/09/2016 12:25:48 PM,03/09/2016 12:25:56 PM,03/09/2016 12:28:57 PM,03/09/2016 12:57:19 PM,03/09/2016 01:03:33 PM,Code 2 Transport,03/09/2016 01:42:51 PM,1300 Block of LAGUNA ST,San Francisco,94115,B04,5,3365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.783446475399, -122.427749887673)",160691632-65 -132870131,KM02,13097574,Medical Incident,10/14/2013,10/14/2013,10/14/2013 10:34:44 AM,10/14/2013 10:36:58 AM,10/14/2013 10:37:16 AM,10/14/2013 10:38:05 AM,10/14/2013 10:42:17 AM,10/14/2013 11:00:49 AM,10/14/2013 11:19:14 AM,Code 2 Transport,10/14/2013 11:56:58 AM,0 Block of FALMOUTH ST,SF,94107,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7792615020796, -122.404108332253)",132870131-KM02 -120890363,AM04,12029624,Medical Incident,03/29/2012,03/29/2012,03/29/2012 11:13:57 PM,03/29/2012 11:15:27 PM,03/29/2012 11:15:40 PM,03/29/2012 11:16:51 PM,03/29/2012 11:19:38 PM,03/29/2012 11:33:51 PM,03/29/2012 11:57:37 PM,Code 2 Transport,03/30/2012 12:53:59 AM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",120890363-AM04 -132400312,T05,13081071,Medical Incident,08/28/2013,08/28/2013,08/28/2013 07:39:25 PM,08/28/2013 07:39:25 PM,08/28/2013 07:53:47 PM,08/28/2013 07:54:03 PM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,Other,08/28/2013 07:54:04 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,2,2,2,false,Non Life-threatening,1,TRUCK,4,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",132400312-T05 -160033414,53,16001413,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:41:11 PM,01/03/2016 11:41:11 PM,01/03/2016 11:42:33 PM,01/03/2016 11:42:41 PM,01/03/2016 11:51:44 PM,01/04/2016 12:03:23 AM,01/04/2016 12:06:13 AM,Code 2 Transport,01/04/2016 01:01:26 AM,MISSION ST/30TH ST,San Francisco,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",160033414-53 -121370377,E08,12045677,Medical Incident,05/16/2012,05/16/2012,05/16/2012 09:32:39 PM,05/16/2012 09:34:11 PM,05/16/2012 09:34:30 PM,05/16/2012 09:37:21 PM,05/16/2012 09:41:57 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Gone on Arrival,05/16/2012 09:46:59 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",121370377-E08 -160230066,68,16008995,Medical Incident,01/23/2016,01/22/2016,01/23/2016 12:27:05 AM,01/23/2016 12:29:11 AM,01/23/2016 12:29:42 AM,01/23/2016 12:29:49 AM,01/23/2016 12:34:00 AM,01/23/2016 12:43:42 AM,01/23/2016 01:08:12 AM,Code 2 Transport,01/23/2016 01:14:19 AM,1000 Block of FOLSOM ST,San Francisco,94103,B03,1,2253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.778254811523, -122.405834032593)",160230066-68 -130110005,E33,13003601,Medical Incident,01/11/2013,01/10/2013,01/11/2013 12:14:08 AM,01/11/2013 12:16:01 AM,01/11/2013 12:17:06 AM,01/11/2013 12:19:49 AM,01/11/2013 12:22:51 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/11/2013 12:28:20 AM,0 Block of CAINE AVE,SF,94112,B09,33,8325,1,1,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7173223519869, -122.450447683229)",130110005-E33 -102860173,E12,10091113,Medical Incident,10/13/2010,10/13/2010,10/13/2010 11:28:04 AM,10/13/2010 11:28:31 AM,10/13/2010 11:29:11 AM,10/13/2010 11:42:56 AM,10/13/2010 11:32:03 AM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Other,10/13/2010 11:59:16 AM,1800 Block of WALLER ST,SF,94122,B05,12,4552,3,3,3,true,,1,ENGINE,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",102860173-E12 -110110257,86,11003737,Medical Incident,01/11/2011,01/11/2011,01/11/2011 05:28:29 PM,01/11/2011 05:30:47 PM,01/11/2011 05:31:25 PM,01/11/2011 05:31:32 PM,01/11/2011 05:45:16 PM,01/11/2011 06:17:44 PM,01/11/2011 06:48:51 PM,Code 2 Transport,01/11/2011 06:59:31 PM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",110110257-86 -110480158,B06,11015849,Alarms,02/17/2011,02/17/2011,02/17/2011 11:36:43 AM,02/17/2011 11:38:19 AM,02/17/2011 11:39:16 AM,02/17/2011 11:40:48 AM,02/17/2011 11:44:16 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 11:46:16 AM,3100 Block of 21ST ST,SF,94110,B06,7,5455,3,3,3,false,,1,CHIEF,2,6,9,Mission,"(37.7571885589512, -122.417270975533)",110480158-B06 -111530311,E08,11050687,Medical Incident,06/02/2011,06/02/2011,06/02/2011 09:23:56 PM,06/02/2011 09:26:35 PM,06/02/2011 09:26:43 PM,06/02/2011 09:27:44 PM,06/02/2011 09:30:42 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/02/2011 09:40:00 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",111530311-E08 -111950073,93,11064286,Medical Incident,07/14/2011,07/14/2011,07/14/2011 08:46:35 AM,07/14/2011 08:48:29 AM,07/14/2011 08:48:41 AM,07/14/2011 08:49:05 AM,07/14/2011 08:53:01 AM,07/14/2011 09:06:22 AM,07/14/2011 09:21:13 AM,Code 2 Transport,07/14/2011 10:04:05 AM,500 Block of CORDOVA ST,SF,94112,B09,43,6227,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7092363469161, -122.43447833859)",111950073-93 -160880889,54,16034863,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:42:02 AM,03/28/2016 08:44:12 AM,03/28/2016 08:44:36 AM,03/28/2016 08:44:51 AM,03/28/2016 08:51:02 AM,03/28/2016 08:59:34 AM,03/28/2016 09:19:56 AM,Code 2 Transport,03/28/2016 09:49:06 AM,0 Block of MCLEA CT,San Francisco,94103,B03,29,2333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7720751846477, -122.408746829681)",160880889-54 -132180340,77,13073749,Medical Incident,08/06/2013,08/06/2013,08/06/2013 08:13:50 PM,08/06/2013 08:14:43 PM,08/06/2013 08:15:02 PM,08/06/2013 08:15:12 PM,08/06/2013 08:16:58 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,No Merit,08/06/2013 08:19:51 PM,700 Block of YORK ST,SF,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,10,Mission,"(37.7598991684509, -122.408899306076)",132180340-77 -111280044,E08,11042238,Medical Incident,05/08/2011,05/07/2011,05/08/2011 03:10:05 AM,05/08/2011 03:11:24 AM,05/08/2011 03:12:20 AM,04/25/2016 02:04:44 PM,05/08/2011 03:13:05 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/08/2011 03:19:21 AM,0 Block of BLUXOME ST,SF,94107,B03,8,2223,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",111280044-E08 -102300106,KM02,10072328,Medical Incident,08/18/2010,08/18/2010,08/18/2010 09:56:03 AM,08/18/2010 09:56:45 AM,08/18/2010 09:58:49 AM,08/18/2010 10:00:27 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,04/25/2016 02:09:02 PM,2100 Block of WEBSTER ST,SF,94115,B04,38,347,3,3,3,false,,1,PRIVATE,3,4,2,Pacific Heights,"(37.7904733870686, -122.432541434801)",102300106-KM02 -102430038,T17,10076522,Alarms,08/31/2010,08/30/2010,08/31/2010 03:14:17 AM,08/31/2010 03:14:50 AM,08/31/2010 03:15:04 AM,08/31/2010 03:16:20 AM,08/31/2010 03:19:50 AM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/31/2010 03:36:21 AM,100 Block of WHITNEY YOUNG CIR,SF,94124,B10,17,1100,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7360363462118, -122.385908786754)",102430038-T17 -140100130,85,14003440,Medical Incident,01/10/2014,01/10/2014,01/10/2014 10:11:32 AM,01/10/2014 10:12:42 AM,01/10/2014 10:13:00 AM,01/10/2014 10:13:26 AM,01/10/2014 10:19:20 AM,01/10/2014 10:38:09 AM,01/10/2014 10:52:30 AM,Code 2 Transport,01/10/2014 11:32:45 AM,0 Block of 4TH ST,SF,94103,B03,1,2213,,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7846551607137, -122.404580497913)",140100130-85 -120580152,E38,12019087,Alarms,02/27/2012,02/27/2012,02/27/2012 11:17:33 AM,02/27/2012 11:18:48 AM,02/27/2012 11:19:26 AM,02/27/2012 11:20:29 AM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/27/2012 11:27:27 AM,3500 Block of JACKSON ST,SF,94118,B07,10,4425,3,3,3,true,Alarm,1,ENGINE,3,7,2,Presidio Heights,"(37.7901389360239, -122.453311569564)",120580152-E38 -111150169,E13,11037932,Medical Incident,04/25/2011,04/25/2011,04/25/2011 12:00:34 PM,04/25/2011 12:01:44 PM,04/25/2011 12:02:11 PM,04/25/2011 12:05:08 PM,04/25/2011 12:08:35 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 12:20:06 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,1,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",111150169-E13 -120050297,E03,12001836,Medical Incident,01/05/2012,01/05/2012,01/05/2012 06:18:58 PM,01/05/2012 06:19:56 PM,01/05/2012 06:20:08 PM,01/05/2012 06:21:42 PM,01/05/2012 06:23:44 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 06:31:19 PM,500 Block of TAYLOR ST,SF,94102,B01,3,1451,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7870711373734, -122.411612352697)",120050297-E03 -132540018,E02,13085669,Medical Incident,09/11/2013,09/10/2013,09/11/2013 01:13:20 AM,09/11/2013 01:13:35 AM,09/11/2013 01:16:01 AM,09/11/2013 01:18:23 AM,09/11/2013 01:20:13 AM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/11/2013 01:29:24 AM,PACIFIC AV/LARKIN ST,SF,94109,B01,41,1565,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Russian Hill,"(37.7952376597822, -122.419935637635)",132540018-E02 -131940021,88,13065822,Medical Incident,07/13/2013,07/12/2013,07/13/2013 01:50:24 AM,07/13/2013 01:54:26 AM,07/13/2013 01:55:02 AM,07/13/2013 01:55:41 AM,07/13/2013 02:03:51 AM,07/13/2013 02:22:20 AM,07/13/2013 02:30:59 AM,Code 2 Transport,07/13/2013 03:05:21 AM,200 Block of BERRY ST,SF,94158,B03,8,2225,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",131940021-88 -103070324,72,10098334,Medical Incident,11/03/2010,11/03/2010,11/03/2010 02:31:11 PM,11/03/2010 02:32:29 PM,11/03/2010 02:36:33 PM,11/03/2010 02:36:50 PM,11/03/2010 03:02:03 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Patient Declined Transport,11/03/2010 03:17:17 PM,700 Block of JERROLD AVE,SF,94124,B10,17,6713,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7296708213986, -122.373440500902)",103070324-72 -121640115,55,12054340,Medical Incident,06/12/2012,06/12/2012,06/12/2012 10:22:22 AM,06/12/2012 10:23:06 AM,06/12/2012 10:24:37 AM,06/12/2012 10:25:12 AM,06/12/2012 10:33:02 AM,06/12/2012 10:41:07 AM,04/25/2016 01:58:15 PM,Code 2 Transport,06/12/2012 11:21:17 AM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",121640115-55 -133470016,RC1,13117607,Medical Incident,12/13/2013,12/12/2013,12/13/2013 12:38:47 AM,12/13/2013 12:39:58 AM,12/13/2013 12:40:22 AM,12/13/2013 12:42:21 AM,12/13/2013 12:44:44 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/13/2013 01:11:53 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",133470016-RC1 -160783832,76,16031199,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:51:00 PM,03/18/2016 09:52:59 PM,03/18/2016 09:53:12 PM,03/18/2016 09:53:27 PM,03/18/2016 09:59:56 PM,03/18/2016 10:12:26 PM,03/18/2016 10:31:20 PM,Code 2 Transport,03/18/2016 11:07:57 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8082633159603, -122.414972542075)",160783832-76 -103280021,99,10104941,Traffic Collision,11/24/2010,11/23/2010,11/24/2010 01:59:09 AM,11/24/2010 02:00:34 AM,11/24/2010 02:00:58 AM,11/24/2010 02:01:36 AM,11/24/2010 02:07:29 AM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/24/2010 02:09:14 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,,1,MEDIC,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",103280021-99 -121170013,E31,12038637,Medical Incident,04/26/2012,04/25/2012,04/26/2012 01:13:16 AM,04/26/2012 01:14:08 AM,04/26/2012 01:14:25 AM,04/26/2012 01:16:28 AM,04/26/2012 01:18:56 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/26/2012 01:32:08 AM,300 Block of LAKE ST,SF,94118,B07,31,712,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",121170013-E31 -122490123,E29,12082300,Alarms,09/05/2012,09/05/2012,09/05/2012 11:07:28 AM,09/05/2012 11:08:15 AM,09/05/2012 11:08:22 AM,09/05/2012 11:08:57 AM,09/05/2012 11:14:51 AM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/05/2012 11:20:26 AM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,29,2671,3,3,3,true,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",122490123-E29 -160061775,71,16002403,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:59:18 PM,01/06/2016 12:59:46 PM,01/06/2016 01:00:51 PM,01/06/2016 01:01:06 PM,01/06/2016 01:06:37 PM,01/06/2016 01:34:00 PM,01/06/2016 01:55:22 PM,Cancelled,01/06/2016 02:51:49 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160061775-71 -131730182,89,13058706,Medical Incident,06/22/2013,06/22/2013,06/22/2013 01:23:10 PM,06/22/2013 01:25:24 PM,06/22/2013 01:34:20 PM,06/22/2013 01:34:27 PM,06/22/2013 01:43:05 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,No Merit,06/22/2013 01:52:22 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",131730182-89 -160153444,88,16006144,Medical Incident,01/15/2016,01/15/2016,01/15/2016 07:52:16 PM,01/15/2016 07:57:29 PM,01/15/2016 07:58:06 PM,01/15/2016 07:58:19 PM,01/15/2016 08:12:41 PM,01/15/2016 08:34:04 PM,01/15/2016 08:43:33 PM,Code 2 Transport,01/15/2016 09:24:54 PM,2200 Block of SUTTER ST,San Francisco,94115,B04,38,3646,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.78550932218, -122.437370954133)",160153444-88 -113380404,88,11112209,Structure Fire,12/04/2011,12/04/2011,12/04/2011 11:51:27 PM,12/04/2011 11:51:58 PM,12/04/2011 11:52:16 PM,12/04/2011 11:53:46 PM,12/05/2011 12:00:56 AM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/05/2011 12:03:51 AM,600 Block of BELVEDERE ST,SF,94117,B05,12,5163,3,3,3,true,,1,MEDIC,8,5,5,Inner Sunset,"(37.7613379968875, -122.447634223922)",113380404-88 -120810158,68,12026860,Medical Incident,03/21/2012,03/21/2012,03/21/2012 11:05:10 AM,03/21/2012 11:06:35 AM,03/21/2012 11:06:45 AM,03/21/2012 11:07:12 AM,03/21/2012 11:19:09 AM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 12:21:32 PM,1600 Block of KIRKHAM ST,SF,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7598158024694, -122.478474857717)",120810158-68 -120550096,84,12018084,Medical Incident,02/24/2012,02/24/2012,02/24/2012 09:48:30 AM,02/24/2012 09:50:34 AM,02/24/2012 09:51:09 AM,02/24/2012 09:52:39 AM,02/24/2012 09:54:36 AM,02/24/2012 10:18:14 AM,02/24/2012 10:21:56 AM,Code 2 Transport,02/24/2012 10:57:27 AM,200 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",120550096-84 -133500080,E44,13118739,Traffic Collision,12/16/2013,12/16/2013,12/16/2013 08:38:40 AM,12/16/2013 08:38:40 AM,12/16/2013 08:40:45 AM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,12/16/2013 08:51:47 AM,CORTLAND AV/BAYSHORE BL,SF,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",133500080-E44 -120850162,B01,12028226,Structure Fire,03/25/2012,03/25/2012,03/25/2012 12:33:04 PM,03/25/2012 12:34:15 PM,03/25/2012 12:34:34 PM,03/25/2012 12:36:18 PM,03/25/2012 12:39:53 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 12:52:30 PM,200 Block of POST ST,SF,94108,B01,1,1316,3,3,3,false,Fire,1,CHIEF,4,1,3,Financial District/South Beach,"(37.7885424853863, -122.405985351484)",120850162-B01 -160882965,KM12,16035064,Medical Incident,03/28/2016,03/28/2016,03/28/2016 05:48:22 PM,03/28/2016 05:49:51 PM,03/28/2016 05:50:15 PM,03/28/2016 05:51:25 PM,03/28/2016 05:56:06 PM,03/28/2016 06:21:34 PM,03/28/2016 06:43:36 PM,Code 2 Transport,03/28/2016 07:19:55 PM,600 Block of SUTTER ST,San Francisco,94102,B01,3,1412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",160882965-KM12 -122160264,RC3,12071741,Medical Incident,08/03/2012,08/03/2012,08/03/2012 03:58:20 PM,08/03/2012 03:59:14 PM,08/03/2012 03:59:59 PM,08/03/2012 04:02:49 PM,08/03/2012 04:17:53 PM,08/03/2012 04:46:56 PM,08/03/2012 05:09:56 PM,Other,08/03/2012 05:33:55 PM,300 Block of TEDDY AVE,SF,94134,B09,44,6312,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,9,10,Visitacion Valley,"(37.7153951688857, -122.409692952213)",122160264-RC3 -160633788,55,16025281,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:19:27 PM,03/03/2016 10:21:37 PM,03/03/2016 10:23:36 PM,03/03/2016 10:24:10 PM,03/03/2016 10:35:47 PM,03/03/2016 10:51:07 PM,03/03/2016 10:55:09 PM,Code 2 Transport,03/03/2016 11:36:11 PM,600 Block of KIRKHAM ST,San Francisco,94122,B08,22,7344,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7602959513935, -122.467660056198)",160633788-55 -131650050,E43,13055937,Structure Fire,06/14/2013,06/13/2013,06/14/2013 04:51:34 AM,06/14/2013 04:52:04 AM,06/14/2013 04:52:35 AM,06/14/2013 04:57:20 AM,06/14/2013 04:58:54 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 05:07:25 AM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",131650050-E43 -112540340,79,11083967,Medical Incident,09/11/2011,09/11/2011,09/11/2011 10:39:45 PM,09/11/2011 10:39:45 PM,09/11/2011 10:41:39 PM,09/11/2011 10:42:08 PM,09/11/2011 10:44:41 PM,09/11/2011 11:03:16 PM,09/11/2011 11:19:58 PM,Code 2 Transport,09/11/2011 11:28:42 PM,500 Block of POLK ST,SF,94102,B02,3,3114,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7814617494262, -122.418923247363)",112540340-79 -160763579,75,16030324,Medical Incident,03/16/2016,03/16/2016,03/16/2016 07:49:59 PM,03/16/2016 07:52:51 PM,03/16/2016 07:53:48 PM,03/16/2016 07:54:05 PM,03/16/2016 08:08:13 PM,03/16/2016 08:19:15 PM,03/16/2016 08:53:43 PM,Code 2 Transport,03/16/2016 09:16:39 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160763579-75 -160753656,86,16029894,Medical Incident,03/15/2016,03/15/2016,03/15/2016 09:00:46 PM,03/15/2016 09:03:39 PM,03/15/2016 09:04:07 PM,03/15/2016 09:04:18 PM,03/15/2016 09:11:51 PM,03/15/2016 09:43:46 PM,03/15/2016 10:03:15 PM,Code 2 Transport,03/15/2016 10:30:10 PM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160753656-86 -110160130,T03,11005293,Structure Fire,01/16/2011,01/16/2011,01/16/2011 09:44:22 AM,01/16/2011 09:44:22 AM,01/16/2011 09:44:48 AM,01/16/2011 09:44:57 AM,01/16/2011 09:47:00 AM,04/25/2016 02:06:34 PM,04/25/2016 02:06:34 PM,Other,01/16/2011 09:47:56 AM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",110160130-T03 -120410329,RC2,12013789,Medical Incident,02/10/2012,02/10/2012,02/10/2012 07:38:58 PM,02/10/2012 07:41:10 PM,02/10/2012 07:41:50 PM,02/10/2012 07:42:36 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 07:48:11 PM,GEARY BL/STEINER ST,SF,94115,B04,5,3623,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",120410329-RC2 -112300076,93,11075871,Medical Incident,08/18/2011,08/18/2011,08/18/2011 08:29:16 AM,08/18/2011 08:29:25 AM,08/18/2011 08:30:00 AM,08/18/2011 08:30:37 AM,08/18/2011 08:33:55 AM,08/18/2011 08:43:24 AM,08/18/2011 09:06:03 AM,Code 2 Transport,08/18/2011 09:23:41 AM,500 Block of BRYANT ST,SF,94107,B03,8,2217,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7800081293648, -122.397404037953)",112300076-93 -121680407,E23,12055919,Medical Incident,06/16/2012,06/16/2012,06/16/2012 09:57:09 PM,06/16/2012 09:57:42 PM,06/16/2012 09:58:05 PM,06/16/2012 09:59:28 PM,06/16/2012 10:02:00 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/16/2012 10:16:37 PM,2000 Block of 44TH AVE,SF,94116,B08,23,7663,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7483991491732, -122.502868007927)",121680407-E23 -122100195,E43,12069775,Medical Incident,07/28/2012,07/28/2012,07/28/2012 02:05:08 PM,07/28/2012 02:05:40 PM,07/28/2012 02:06:04 PM,07/28/2012 02:06:57 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 02:08:20 PM,4900 Block of MISSION ST,SF,94112,B09,43,6123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7197055234678, -122.438684868139)",122100195-E43 -112430077,E37,11080054,Confined Space / Structure Collapse,08/31/2011,08/30/2011,08/31/2011 07:58:17 AM,08/31/2011 07:58:56 AM,08/31/2011 08:00:25 AM,08/31/2011 08:02:14 AM,08/31/2011 08:04:40 AM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Other,08/31/2011 09:01:07 AM,3RD ST/19TH ST,SF,94107,B10,37,2471,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7617664453969, -122.388684017473)",112430077-E37 -120330330,E17,12011039,Medical Incident,02/02/2012,02/02/2012,02/02/2012 07:16:36 PM,02/02/2012 07:20:02 PM,02/02/2012 07:22:41 PM,02/02/2012 07:23:57 PM,02/02/2012 07:24:39 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/02/2012 07:33:00 PM,1700 Block of REVERE AVE,SF,94124,B10,17,6514,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.733154464931, -122.392672357808)",120330330-E17 -122570011,E02,12084809,Medical Incident,09/13/2012,09/12/2012,09/13/2012 01:33:46 AM,09/13/2012 01:34:31 AM,09/13/2012 01:34:45 AM,09/13/2012 01:36:46 AM,09/13/2012 01:37:54 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/13/2012 01:47:04 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",122570011-E02 -110890321,B02,11029508,Administrative,03/30/2011,03/30/2011,03/30/2011 06:24:26 PM,03/30/2011 06:24:28 PM,03/30/2011 06:24:41 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 06:25:09 PM,100 Block of OAK ST,SF,94102,B02,36,3266,3,3,3,false,,1,CHIEF,1,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",110890321-B02 -131730134,85,13058662,Medical Incident,06/22/2013,06/22/2013,06/22/2013 11:45:48 AM,06/22/2013 11:46:56 AM,06/22/2013 11:47:15 AM,06/22/2013 11:47:34 AM,06/22/2013 11:54:59 AM,06/22/2013 12:15:50 PM,04/25/2016 01:52:10 PM,Patient Declined Transport,06/22/2013 12:34:14 PM,100 Block of CORA ST,SF,94134,B09,44,6253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.710878454701, -122.409122191393)",131730134-85 -140430268,T19,14014685,Alarms,02/12/2014,02/12/2014,02/12/2014 04:48:15 PM,02/12/2014 04:49:15 PM,02/12/2014 04:49:32 PM,02/12/2014 04:50:48 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 05:09:36 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",140430268-T19 -111530054,89,11050486,Medical Incident,06/02/2011,06/01/2011,06/02/2011 06:42:54 AM,06/02/2011 06:43:31 AM,06/02/2011 06:44:17 AM,06/02/2011 06:44:37 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/02/2011 06:49:08 AM,3RD ST/NEWCOMB AV,SF,94124,B10,17,6515,2,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",111530054-89 -131630177,T11,13055370,Medical Incident,06/12/2013,06/12/2013,06/12/2013 12:14:36 PM,06/12/2013 12:15:55 PM,06/12/2013 12:16:06 PM,06/12/2013 12:16:38 PM,06/12/2013 12:18:49 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/12/2013 12:26:23 PM,1400 Block of GUERRERO ST,SF,94110,B06,11,5612,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,6,8,Mission,"(37.74840056927, -122.422415578627)",131630177-T11 -111600184,99,11052888,Other,06/09/2011,06/09/2011,06/09/2011 02:47:18 PM,06/09/2011 02:47:41 PM,06/09/2011 02:47:54 PM,06/09/2011 03:08:19 PM,06/09/2011 03:15:23 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Medical Examiner,06/09/2011 03:46:43 PM,600 Block of OAK ST,SF,94117,B02,5,3523,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",111600184-99 -140930041,67,14031157,Medical Incident,04/03/2014,04/02/2014,04/03/2014 03:33:47 AM,04/03/2014 03:34:53 AM,04/03/2014 03:37:27 AM,04/03/2014 03:37:43 AM,04/03/2014 03:44:51 AM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,No Merit,04/03/2014 03:49:52 AM,0 Block of SANCHEZ ST,SAN FRANCISCO,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",140930041-67 -131870332,E03,13063921,Medical Incident,07/06/2013,07/06/2013,07/06/2013 10:05:37 PM,07/06/2013 10:07:33 PM,07/06/2013 10:08:34 PM,07/06/2013 10:09:58 PM,07/06/2013 10:12:48 PM,04/25/2016 01:51:55 PM,04/25/2016 01:51:55 PM,Other,07/06/2013 10:20:27 PM,PINE ST/OCTAVIA ST,SF,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7887868948983, -122.427059673264)",131870332-E03 -113500359,E02,11116260,Structure Fire,12/16/2011,12/16/2011,12/16/2011 08:59:54 PM,12/16/2011 08:59:54 PM,12/16/2011 09:00:08 PM,12/16/2011 09:01:26 PM,12/16/2011 09:02:41 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 09:03:33 PM,STOCKTON ST/WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",113500359-E02 -133370322,E02,13114345,Medical Incident,12/03/2013,12/03/2013,12/03/2013 08:26:30 PM,12/03/2013 08:27:57 PM,12/03/2013 08:28:18 PM,12/03/2013 08:29:59 PM,12/03/2013 08:31:47 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 08:50:45 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.790399423659, -122.407326986498)",133370322-E02 -130190063,82,13006416,Medical Incident,01/19/2013,01/18/2013,01/19/2013 03:47:28 AM,01/19/2013 03:49:03 AM,01/19/2013 03:49:26 AM,01/19/2013 03:49:49 AM,01/19/2013 03:53:55 AM,01/19/2013 04:04:10 AM,01/19/2013 04:15:08 AM,Code 2 Transport,01/19/2013 04:42:08 AM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",130190063-82 -160710734,AM02,16028126,Medical Incident,03/11/2016,03/11/2016,03/11/2016 08:07:43 AM,03/11/2016 08:10:17 AM,03/11/2016 08:11:09 AM,03/11/2016 08:12:12 AM,03/11/2016 08:29:15 AM,03/11/2016 08:39:58 AM,03/11/2016 08:50:49 AM,Code 2 Transport,03/11/2016 09:31:15 AM,3RD ST/MARIN ST,San Francisco,94124,B10,25,2641,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7490047598095, -122.387456311596)",160710734-AM02 -160561570,AM02,16022358,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:38:01 AM,02/25/2016 11:39:45 AM,02/25/2016 11:40:09 AM,02/25/2016 11:40:44 AM,02/25/2016 11:46:29 AM,02/25/2016 12:02:20 PM,02/25/2016 12:18:45 PM,Code 2 Transport,02/25/2016 12:41:02 PM,0 Block of YALE ST,San Francisco,94134,B09,42,6145,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7284797955023, -122.418077727084)",160561570-AM02 -111300197,E02,11042972,Medical Incident,05/10/2011,05/10/2011,05/10/2011 02:05:17 PM,05/10/2011 02:05:49 PM,05/10/2011 02:06:19 PM,05/10/2011 02:06:23 PM,05/10/2011 02:07:35 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 02:20:08 PM,900 Block of CLAY ST,SF,94108,B01,2,1355,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7939540872148, -122.40830087345)",111300197-E02 -122570356,B06,12085117,Structure Fire,09/13/2012,09/13/2012,09/13/2012 11:26:19 PM,09/13/2012 11:28:14 PM,09/13/2012 11:28:36 PM,09/13/2012 11:30:24 PM,09/13/2012 11:38:40 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Fire,09/14/2012 12:05:17 AM,FOLSOM ST/PRECITA AV,SF,94110,B06,11,5664,3,3,3,false,Fire,1,CHIEF,9,6,9,Bernal Heights,"(37.7471710211027, -122.413571133066)",122570356-B06 -122410258,E39,12079824,Medical Incident,08/28/2012,08/28/2012,08/28/2012 05:30:17 PM,08/28/2012 05:30:38 PM,08/28/2012 05:31:01 PM,08/28/2012 05:33:49 PM,08/28/2012 05:35:31 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/28/2012 05:48:39 PM,100 Block of JUANITA WAY,SF,94127,B08,39,8671,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.742588476821, -122.454535746044)",122410258-E39 -140780098,KM09,14026319,Medical Incident,03/19/2014,03/19/2014,03/19/2014 08:52:34 AM,03/19/2014 08:53:44 AM,03/19/2014 08:55:12 AM,03/19/2014 08:55:12 AM,03/19/2014 09:02:37 AM,03/19/2014 09:15:23 AM,03/19/2014 09:32:49 AM,Code 3 Transport,03/19/2014 10:19:43 AM,2800 Block of BALBOA ST,SAN FRANCISCO,94121,B07,14,7225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7760273500609, -122.489274152829)",140780098-KM09 -133360086,81,13113813,Medical Incident,12/02/2013,12/02/2013,12/02/2013 08:50:50 AM,12/02/2013 08:56:22 AM,12/02/2013 08:57:04 AM,12/02/2013 08:57:10 AM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,No Merit,12/02/2013 09:13:02 AM,BERRY ST/6TH ST,SF,94107,B03,8,2262,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7722719339526, -122.397801139789)",133360086-81 -120860166,E10,12028544,Medical Incident,03/26/2012,03/26/2012,03/26/2012 12:45:29 PM,03/26/2012 12:45:56 PM,03/26/2012 12:46:26 PM,03/26/2012 12:48:14 PM,03/26/2012 12:52:13 PM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 01:01:22 PM,LOMBARD ST/BAKER ST,SF,94123,B04,16,4223,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.798626017147, -122.44597388598)",120860166-E10 -160582499,82,16023190,Medical Incident,02/27/2016,02/27/2016,02/27/2016 04:39:02 PM,02/27/2016 04:39:02 PM,02/27/2016 04:39:25 PM,02/27/2016 04:39:35 PM,02/27/2016 04:46:40 PM,02/27/2016 05:59:04 PM,02/27/2016 05:15:18 PM,Code 2 Transport,02/27/2016 06:41:59 PM,600 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Lone Mountain/USF,"(37.7786738326671, -122.458615664849)",160582499-82 -130800007,E02,13026600,Medical Incident,03/21/2013,03/20/2013,03/21/2013 12:51:57 AM,03/21/2013 12:53:03 AM,03/21/2013 12:55:31 AM,03/21/2013 12:57:20 AM,03/21/2013 12:59:03 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 01:08:41 AM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7980228452184, -122.405863212632)",130800007-E02 -133170067,T10,13107638,Structure Fire,11/13/2013,11/12/2013,11/13/2013 07:52:52 AM,11/13/2013 07:52:56 AM,11/13/2013 07:56:59 AM,11/13/2013 08:00:37 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 08:02:37 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,Alarm,1,TRUCK,10,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",133170067-T10 -110020075,B01,11000578,Odor (Strange / Unknown),01/02/2011,01/01/2011,01/02/2011 07:49:52 AM,01/02/2011 07:51:57 AM,01/02/2011 07:52:16 AM,01/02/2011 07:55:03 AM,01/02/2011 07:57:55 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Fire,01/02/2011 08:01:49 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,CHIEF,3,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",110020075-B01 -140600148,88,14020225,Medical Incident,03/01/2014,03/01/2014,03/01/2014 11:15:45 AM,03/01/2014 11:16:03 AM,03/01/2014 11:16:15 AM,03/01/2014 11:16:48 AM,03/01/2014 11:27:14 AM,03/01/2014 11:42:12 AM,03/01/2014 12:15:31 PM,Code 2 Transport,03/01/2014 12:53:25 PM,MCKINNON AV/NEWHALL ST,SF,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7369067562737, -122.391087499642)",140600148-88 -111360284,T18,11045363,Structure Fire,05/16/2011,05/16/2011,05/16/2011 06:28:50 PM,05/16/2011 06:29:35 PM,05/16/2011 06:29:46 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 06:37:06 PM,800 Block of 35TH AVE,SF,94121,B07,34,7252,3,3,3,false,,1,TRUCK,11,7,1,Outer Richmond,"(37.7730169846783, -122.494902095099)",111360284-T18 -103130295,E11,10100439,Electrical Hazard,11/09/2010,11/09/2010,11/09/2010 05:32:36 PM,11/09/2010 05:36:03 PM,11/09/2010 05:36:09 PM,11/09/2010 05:37:09 PM,11/09/2010 05:38:31 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/09/2010 05:45:59 PM,1700 Block of CHURCH ST,SF,94131,B06,11,5563,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7432943274696, -122.426701243282)",103130295-E11 -120860076,E08,12028475,Medical Incident,03/26/2012,03/26/2012,03/26/2012 08:23:15 AM,03/26/2012 08:24:12 AM,03/26/2012 08:24:47 AM,03/26/2012 08:26:22 AM,03/26/2012 08:30:32 AM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 08:39:23 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",120860076-E08 -113130089,E07,11103927,Medical Incident,11/09/2011,11/09/2011,11/09/2011 08:48:49 AM,11/09/2011 08:51:05 AM,11/09/2011 08:52:19 AM,11/09/2011 08:53:16 AM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,Other,11/09/2011 08:55:09 AM,500 Block of CAPP ST,SF,94110,B06,7,5446,2,2,2,true,,1,ENGINE,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",113130089-E07 -102460235,75,10077770,Medical Incident,09/03/2010,09/03/2010,09/03/2010 02:39:04 PM,09/03/2010 02:43:32 PM,09/03/2010 02:43:45 PM,09/03/2010 02:43:57 PM,09/03/2010 02:48:45 PM,09/03/2010 03:00:48 PM,09/03/2010 03:24:47 PM,Code 2 Transport,09/03/2010 03:30:02 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",102460235-75 -112180063,71,11071962,Medical Incident,08/06/2011,08/05/2011,08/06/2011 03:40:05 AM,08/06/2011 03:41:07 AM,08/06/2011 03:41:40 AM,08/06/2011 03:42:21 AM,08/06/2011 03:50:21 AM,08/06/2011 04:16:06 AM,08/06/2011 04:29:52 AM,Code 2 Transport,08/06/2011 05:22:12 AM,0 Block of SADOWA ST,SF,94112,B09,33,8371,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7123801092231, -122.455356032884)",112180063-71 -102810022,E25,10089182,Medical Incident,10/08/2010,10/07/2010,10/08/2010 01:52:52 AM,10/08/2010 01:53:44 AM,10/08/2010 01:54:37 AM,10/08/2010 01:56:22 AM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,Other,10/08/2010 02:20:50 AM,200 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,false,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.735189226844, -122.378938285616)",102810022-E25 -102400309,E14,10075804,Medical Incident,08/28/2010,08/28/2010,08/28/2010 07:44:46 PM,08/28/2010 07:46:52 PM,08/28/2010 07:47:25 PM,08/28/2010 07:48:19 PM,08/28/2010 07:51:03 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/28/2010 08:02:48 PM,3600 Block of BALBOA ST,SF,94121,B07,34,7254,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7756362224799, -122.49784817494)",102400309-E14 -160682111,67,16027151,Medical Incident,03/08/2016,03/08/2016,03/08/2016 02:32:05 PM,03/08/2016 02:32:29 PM,03/08/2016 02:32:52 PM,03/08/2016 02:34:09 PM,03/08/2016 02:38:14 PM,03/08/2016 02:59:33 PM,03/08/2016 03:07:52 PM,Code 2 Transport,03/08/2016 04:06:53 PM,1200 Block of 21ST AVE,San Francisco,94122,B08,22,7425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7644122532353, -122.479263390257)",160682111-67 -131930249,E11,13065707,Medical Incident,07/12/2013,07/12/2013,07/12/2013 05:23:35 PM,07/12/2013 05:24:21 PM,07/12/2013 05:29:00 PM,07/12/2013 05:30:30 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 05:33:34 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7562319946436, -122.418893283075)",131930249-E11 -111640191,KM04,11054134,Medical Incident,06/13/2011,06/13/2011,06/13/2011 01:14:47 PM,06/13/2011 01:17:22 PM,06/13/2011 01:17:45 PM,06/13/2011 01:18:14 PM,06/13/2011 01:23:14 PM,06/13/2011 01:39:59 PM,06/13/2011 01:52:12 PM,Code 2 Transport,06/13/2011 02:15:34 PM,400 Block of TURK ST,SF,94102,B02,3,1554,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",111640191-KM04 -130360235,B06,13012410,Structure Fire,02/05/2013,02/05/2013,02/05/2013 02:54:38 PM,02/05/2013 02:54:39 PM,02/05/2013 02:54:58 PM,02/05/2013 02:56:39 PM,02/05/2013 02:58:24 PM,04/25/2016 01:54:26 PM,04/25/2016 01:54:26 PM,Other,02/05/2013 02:59:13 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,false,Alarm,1,CHIEF,3,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",130360235-B06 -160782314,89,16031053,Traffic Collision,03/18/2016,03/18/2016,03/18/2016 03:01:45 PM,03/18/2016 03:02:13 PM,03/18/2016 03:02:19 PM,03/18/2016 03:04:55 PM,03/18/2016 03:09:18 PM,03/18/2016 03:18:36 PM,03/18/2016 03:24:28 PM,Code 3 Transport,03/18/2016 04:24:19 PM,PRECITA AV/FOLSOM ST,San Francisco,94110,B06,11,5664,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7471710211027, -122.413571133066)",160782314-89 -130960145,KM10,13032142,Medical Incident,04/06/2013,04/06/2013,04/06/2013 11:22:26 AM,04/06/2013 11:24:45 AM,04/06/2013 11:25:16 AM,04/06/2013 11:27:27 AM,04/06/2013 11:37:22 AM,04/06/2013 11:48:18 AM,04/06/2013 12:00:10 PM,Code 2 Transport,04/06/2013 12:22:56 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",130960145-KM10 -111300384,AM10,11043136,Medical Incident,05/10/2011,05/10/2011,05/10/2011 10:55:55 PM,05/10/2011 11:00:45 PM,05/10/2011 11:01:54 PM,05/10/2011 11:02:27 PM,05/10/2011 11:16:00 PM,05/10/2011 11:32:16 PM,05/10/2011 11:42:48 PM,Code 2 Transport,05/11/2011 12:12:19 AM,3900 Block of 3RD ST,SF,94124,B10,25,6457,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",111300384-AM10 -102730297,T06,10086775,Structure Fire,09/30/2010,09/30/2010,09/30/2010 06:09:41 PM,09/30/2010 06:09:41 PM,09/30/2010 06:10:57 PM,09/30/2010 06:11:28 PM,09/30/2010 06:14:29 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Other,09/30/2010 06:23:47 PM,400 Block of CHURCH ST,SF,94114,B02,6,523,3,3,3,false,,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",102730297-T06 -133400363,E02,13115397,Medical Incident,12/06/2013,12/06/2013,12/06/2013 08:16:56 PM,12/06/2013 08:18:16 PM,12/06/2013 08:18:42 PM,12/06/2013 08:20:19 PM,12/06/2013 08:22:04 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/06/2013 08:36:06 PM,0 Block of SAINT LOUIS ALY,SF,94133,B01,2,1312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7957591714395, -122.40697039667)",133400363-E02 -112770057,B03,11091597,Alarms,10/04/2011,10/03/2011,10/04/2011 07:20:53 AM,10/04/2011 07:22:19 AM,10/04/2011 07:22:31 AM,10/04/2011 07:23:22 AM,10/04/2011 07:26:39 AM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Fire,10/04/2011 07:31:29 AM,0 Block of FEDERAL ST,SF,94107,B03,8,2134,3,3,3,false,,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7837299529024, -122.391814164258)",112770057-B03 -160761259,57,16030090,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:34:12 AM,03/16/2016 10:37:02 AM,03/16/2016 10:38:09 AM,03/16/2016 10:38:21 AM,03/16/2016 10:55:02 AM,03/16/2016 11:05:05 AM,03/16/2016 11:22:43 AM,Code 2 Transport,03/16/2016 11:58:01 AM,VAN NESS AV/MARKET ST,San Francisco,94103,B02,36,3211,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",160761259-57 -120030324,79,12001159,Medical Incident,01/03/2012,01/03/2012,01/03/2012 06:48:01 PM,01/03/2012 06:48:24 PM,01/03/2012 06:48:40 PM,01/03/2012 06:49:18 PM,01/03/2012 06:58:41 PM,01/03/2012 07:15:45 PM,01/03/2012 07:34:08 PM,Code 2 Transport,01/03/2012 08:01:52 PM,2000 Block of PALOU AVE,SF,94124,B10,42,6431,E,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7387006494945, -122.399352673031)",120030324-79 -121900024,RS2,12063165,Medical Incident,07/08/2012,07/07/2012,07/08/2012 01:28:47 AM,07/08/2012 01:29:06 AM,07/08/2012 01:31:12 AM,07/08/2012 01:32:51 AM,07/08/2012 01:34:34 AM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/08/2012 01:35:52 AM,3200 Block of 17TH ST,SF,94110,B02,7,5246,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7635887638425, -122.417913861876)",121900024-RS2 -120950309,63,12031587,Medical Incident,04/04/2012,04/04/2012,04/04/2012 09:12:31 PM,04/04/2012 09:15:10 PM,04/04/2012 09:16:06 PM,04/04/2012 09:18:58 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 09:23:40 PM,2500 Block of MASON ST,SF,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.807027306345, -122.413812485246)",120950309-63 -120970193,E11,12032128,Structure Fire,04/06/2012,04/06/2012,04/06/2012 01:31:59 PM,04/06/2012 01:31:59 PM,04/06/2012 01:32:18 PM,04/06/2012 01:33:26 PM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 01:34:12 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Alarm,1,ENGINE,3,6,9,Mission,"(37.7490412884368, -122.418135251703)",120970193-E11 -121350014,RC3,12044758,Medical Incident,05/14/2012,05/13/2012,05/14/2012 01:32:10 AM,05/14/2012 01:33:24 AM,05/14/2012 01:33:40 AM,05/14/2012 01:35:38 AM,05/14/2012 01:41:55 AM,05/14/2012 01:53:23 AM,05/14/2012 02:00:14 AM,Other,05/14/2012 02:27:27 AM,900 Block of LE CONTE AVE,SF,94124,B10,44,6575,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7180638579899, -122.396004115789)",121350014-RC3 -122310219,D3,12076635,Other,08/18/2012,08/18/2012,08/18/2012 04:37:36 PM,08/18/2012 04:39:44 PM,08/18/2012 04:41:26 PM,04/25/2016 01:57:10 PM,08/18/2012 04:59:19 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 05:49:57 PM,100 Block of HUNTERS POINT EXPY,SF,94124,B10,17,6617,3,3,3,false,Potentially Life-Threatening,1,CHIEF,12,10,10,Bayview Hunters Point,"(37.7108679832889, -122.381545416429)",122310219-D3 -110840058,RS1,11027562,Medical Incident,03/25/2011,03/24/2011,03/25/2011 04:13:09 AM,03/25/2011 04:14:56 AM,03/25/2011 04:15:25 AM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,Other,04/25/2016 02:05:28 PM,400 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,,1,RESCUE SQUAD,3,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",110840058-RS1 -160832708,KM13,16033032,Medical Incident,03/23/2016,03/23/2016,03/23/2016 04:10:34 PM,03/23/2016 04:12:35 PM,03/23/2016 04:12:52 PM,03/23/2016 04:13:11 PM,03/23/2016 04:22:51 PM,03/23/2016 04:43:07 PM,03/23/2016 05:01:50 PM,Code 2 Transport,03/23/2016 05:14:30 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160832708-KM13 -121160082,E29,12038365,Traffic Collision,04/25/2012,04/25/2012,04/25/2012 08:43:45 AM,04/25/2012 08:43:45 AM,04/25/2012 08:44:03 AM,04/25/2012 08:45:37 AM,04/25/2012 08:55:20 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Unable to Locate,04/25/2012 08:56:47 AM,4TH ST/KING ST,SF,94107,B03,8,2236,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",121160082-E29 -160500347,79,16019953,Medical Incident,02/19/2016,02/18/2016,02/19/2016 04:00:54 AM,02/19/2016 04:02:40 AM,02/19/2016 04:03:25 AM,02/19/2016 04:04:15 AM,02/19/2016 04:13:15 AM,02/19/2016 04:22:11 AM,02/19/2016 04:24:03 AM,Code 2 Transport,02/19/2016 04:36:30 AM,0 Block of 8TH ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7778103407202, -122.413699499217)",160500347-79 -113010135,E03,11099800,Medical Incident,10/28/2011,10/28/2011,10/28/2011 10:37:51 AM,10/28/2011 10:40:59 AM,10/28/2011 10:43:11 AM,10/28/2011 10:43:17 AM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 10:47:36 AM,HEMLOCK ST/POLK ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",113010135-E03 -111480216,E05,11049115,Medical Incident,05/28/2011,05/28/2011,05/28/2011 04:24:57 PM,05/28/2011 04:26:56 PM,05/28/2011 04:27:26 PM,05/28/2011 04:28:39 PM,05/28/2011 04:29:26 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,05/28/2011 04:33:05 PM,WEBSTER ST/MCALLISTER ST,SF,94117,B02,5,3425,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7788509281441, -122.43004726646)",111480216-E05 -131410165,RS2,13047758,Citizen Assist / Service Call,05/21/2013,05/21/2013,05/21/2013 11:44:14 AM,05/21/2013 11:44:15 AM,05/21/2013 11:50:48 AM,05/21/2013 11:53:14 AM,05/21/2013 11:57:58 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 12:17:36 PM,100 Block of OAK ST,SF,94102,B02,36,3266,3,3,3,false,Alarm,1,RESCUE SQUAD,1,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",131410165-RS2 -130530227,66,13017941,Medical Incident,02/22/2013,02/22/2013,02/22/2013 02:22:47 PM,02/22/2013 02:25:24 PM,02/22/2013 02:26:23 PM,02/22/2013 02:27:20 PM,02/22/2013 02:37:03 PM,02/22/2013 02:52:16 PM,02/22/2013 03:18:07 PM,Code 2 Transport,02/22/2013 04:04:03 PM,800 Block of HAYES ST,SF,94117,B02,5,3522,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",130530227-66 -112410063,AM16,11079433,Medical Incident,08/29/2011,08/29/2011,08/29/2011 08:23:43 AM,08/29/2011 08:25:49 AM,08/29/2011 08:26:01 AM,08/29/2011 08:26:46 AM,08/29/2011 08:38:35 AM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Medical Examiner,08/29/2011 09:50:59 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,false,,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",112410063-AM16 -122860308,B04,12094715,Alarms,10/12/2012,10/12/2012,10/12/2012 08:04:11 PM,10/12/2012 08:05:00 PM,10/12/2012 08:05:16 PM,10/12/2012 08:06:20 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 08:07:02 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,false,Alarm,1,CHIEF,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",122860308-B04 -160031578,61,16001187,Medical Incident,01/03/2016,01/03/2016,01/03/2016 01:24:27 PM,01/03/2016 01:26:47 PM,01/03/2016 01:27:07 PM,01/03/2016 01:27:16 PM,01/03/2016 01:30:13 PM,01/03/2016 01:51:36 PM,01/03/2016 02:09:38 PM,Code 2 Transport,01/03/2016 02:48:30 PM,200 Block of CLAYTON ST,San Francisco,94117,B05,21,4523,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7730602068761, -122.449166125148)",160031578-61 -112610018,T19,11085998,Traffic Collision,09/18/2011,09/17/2011,09/18/2011 01:04:38 AM,09/18/2011 01:06:28 AM,09/18/2011 01:07:42 AM,04/25/2016 02:02:37 PM,09/18/2011 01:12:31 AM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/18/2011 01:33:32 AM,200 Block of WINSTON DR,SF,94132,B08,19,8862,2,2,2,false,,1,TRUCK,2,8,7,Lakeshore,"(37.7269310558754, -122.477956520245)",112610018-T19 -123300278,E40,12109801,Medical Incident,11/25/2012,11/25/2012,11/25/2012 06:02:30 PM,11/25/2012 06:04:58 PM,11/25/2012 06:08:36 PM,11/25/2012 06:09:56 PM,11/25/2012 06:10:15 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 06:15:15 PM,1800 Block of IRVING ST,SF,94122,B08,22,7424,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.763591973361, -122.477686297417)",123300278-E40 -132330309,89,13078775,Medical Incident,08/21/2013,08/21/2013,08/21/2013 07:10:13 PM,08/21/2013 07:12:19 PM,08/21/2013 07:13:06 PM,08/21/2013 07:13:15 PM,08/21/2013 07:18:25 PM,08/21/2013 07:36:28 PM,08/21/2013 07:41:36 PM,Code 2 Transport,08/21/2013 08:12:50 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",132330309-89 -160033427,62,16001416,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:43:29 PM,01/03/2016 11:46:35 PM,01/03/2016 11:46:41 PM,01/03/2016 11:47:04 PM,01/03/2016 11:56:59 PM,01/04/2016 12:17:04 AM,01/04/2016 12:32:48 AM,Code 2 Transport,01/04/2016 01:29:22 AM,800 Block of INNES AVE,San Francisco,94124,B10,25,6632,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7314216570538, -122.374864504136)",160033427-62 -110260298,E13,11008666,Administrative,01/26/2011,01/26/2011,01/26/2011 06:44:09 PM,01/26/2011 06:44:13 PM,01/26/2011 06:44:25 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/26/2011 06:45:27 PM,500 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",110260298-E13 -140960348,E13,14032459,Alarms,04/06/2014,04/06/2014,04/06/2014 08:49:23 PM,04/06/2014 08:50:17 PM,04/06/2014 08:50:48 PM,04/06/2014 08:51:41 PM,04/06/2014 08:53:37 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,Fire,04/06/2014 09:02:20 PM,200 Block of CALIFORNIA ST,SAN FRANCISCO,94111,B01,13,1162,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7933383335289, -122.399381167233)",140960348-E13 -160813293,76,16032328,Medical Incident,03/21/2016,03/21/2016,03/21/2016 07:12:30 PM,03/21/2016 07:13:33 PM,03/21/2016 07:13:57 PM,03/21/2016 07:14:05 PM,03/21/2016 07:18:36 PM,03/21/2016 07:27:15 PM,03/21/2016 07:29:32 PM,Code 2 Transport,03/21/2016 07:47:26 PM,1200 Block of VAN NESS AVE,San Francisco,94109,B04,3,3161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7868516471087, -122.421441956086)",160813293-76 -132300150,78,13077628,Medical Incident,08/18/2013,08/18/2013,08/18/2013 10:53:16 AM,08/18/2013 10:54:47 AM,08/18/2013 10:58:35 AM,08/18/2013 10:59:27 AM,08/18/2013 11:11:14 AM,08/18/2013 11:29:15 AM,08/18/2013 11:57:58 AM,Code 2 Transport,08/18/2013 12:28:58 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132300150-78 -160530655,67,16021098,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:11:11 AM,02/22/2016 08:11:34 AM,02/22/2016 08:12:04 AM,02/22/2016 08:12:28 AM,02/22/2016 08:17:46 AM,02/22/2016 08:32:52 AM,02/22/2016 08:55:03 AM,Code 2 Transport,02/22/2016 09:38:18 AM,1700 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",160530655-67 -103080165,E09,10098672,Traffic Collision,11/04/2010,11/04/2010,11/04/2010 11:10:15 AM,11/04/2010 11:12:12 AM,11/04/2010 11:13:00 AM,11/04/2010 11:13:33 AM,11/04/2010 11:15:53 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Fire,11/04/2010 11:24:25 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,2,2,2,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",103080165-E09 -111730144,T15,11057042,Medical Incident,06/22/2011,06/22/2011,06/22/2011 11:22:09 AM,06/22/2011 11:23:39 AM,06/22/2011 11:23:49 AM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 11:25:11 AM,2200 Block of OCEAN AVE,SF,94127,B09,15,8454,3,3,3,false,,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7279994078445, -122.467653269644)",111730144-T15 -112900360,74,11096353,Medical Incident,10/17/2011,10/17/2011,10/17/2011 07:33:09 PM,10/17/2011 07:34:04 PM,10/17/2011 07:34:33 PM,10/17/2011 07:35:01 PM,10/17/2011 07:43:00 PM,10/17/2011 07:57:41 PM,10/17/2011 08:06:45 PM,Code 2 Transport,10/17/2011 08:43:24 PM,0 Block of STATES ST,SF,94114,B05,6,5176,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",112900360-74 -112170282,RC3,11071787,Medical Incident,08/05/2011,08/05/2011,08/05/2011 05:42:07 PM,08/05/2011 05:43:25 PM,08/05/2011 05:44:27 PM,08/05/2011 05:46:02 PM,08/05/2011 05:48:33 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 05:54:26 PM,BRYANT ST/24TH ST,SF,94110,B06,9,5532,3,E,3,true,,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7527955849274, -122.409129910252)",112170282-RC3 -130250214,AM02,13008644,Medical Incident,01/25/2013,01/25/2013,01/25/2013 01:46:11 PM,01/25/2013 01:49:07 PM,01/25/2013 01:49:44 PM,04/25/2016 01:54:37 PM,01/25/2013 01:53:36 PM,01/25/2013 02:16:44 PM,01/25/2013 02:56:41 PM,Code 2 Transport,01/25/2013 03:00:25 PM,700 Block of 7TH AVE,SF,94118,B07,31,7132,1,1,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7744079426209, -122.464807789845)",130250214-AM02 -160323905,78,16012793,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:32:27 PM,02/01/2016 11:35:58 PM,02/01/2016 11:36:12 PM,02/01/2016 11:37:13 PM,02/01/2016 11:41:18 PM,02/02/2016 12:03:54 AM,02/02/2016 12:22:57 AM,Code 2 Transport,02/02/2016 12:27:32 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160323905-78 -112910036,E44,11096460,Medical Incident,10/18/2011,10/17/2011,10/18/2011 03:06:00 AM,10/18/2011 03:07:49 AM,10/18/2011 03:08:20 AM,10/18/2011 03:09:54 AM,10/18/2011 03:11:37 AM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/18/2011 03:35:54 AM,3100 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7220016138662, -122.401341444894)",112910036-E44 -132190249,T14,13074000,Alarms,08/07/2013,08/07/2013,08/07/2013 03:29:05 PM,08/07/2013 03:30:16 PM,08/07/2013 03:30:24 PM,08/07/2013 03:32:05 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,Other,08/07/2013 03:36:22 PM,3100 Block of FULTON ST,SF,94122,B07,31,7133,3,3,3,false,Alarm,1,TRUCK,3,7,1,Inner Richmond,"(37.7734767861199, -122.465348329956)",132190249-T14 -160810421,70,16032057,Medical Incident,03/21/2016,03/20/2016,03/21/2016 05:45:33 AM,03/21/2016 05:45:48 AM,03/21/2016 05:46:10 AM,03/21/2016 05:46:32 AM,03/21/2016 05:54:36 AM,03/21/2016 06:07:20 AM,03/21/2016 06:13:03 AM,Code 2 Transport,03/21/2016 06:31:12 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160810421-70 -102290167,E13,10072045,Medical Incident,08/17/2010,08/17/2010,08/17/2010 12:37:10 PM,08/17/2010 12:37:40 PM,08/17/2010 12:37:57 PM,08/17/2010 12:39:04 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 12:56:17 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,2,2,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",102290167-E13 -122050142,E09,12068136,Medical Incident,07/23/2012,07/23/2012,07/23/2012 10:53:00 AM,07/23/2012 10:53:40 AM,07/23/2012 10:54:11 AM,07/23/2012 11:00:31 AM,07/23/2012 11:03:28 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/23/2012 11:03:53 AM,1700 Block of MCKINNON AVE,SF,94124,B10,25,6455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7374788316121, -122.391986352639)",122050142-E09 -122760407,E01,12091316,Medical Incident,10/02/2012,10/02/2012,10/02/2012 08:32:09 PM,10/02/2012 08:32:41 PM,10/02/2012 08:33:17 PM,10/02/2012 08:34:02 PM,10/02/2012 08:36:00 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/02/2012 08:43:24 PM,MINNA ST/NEW MONTGOMERY ST,SF,94105,B03,1,2157,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7870107876875, -122.399974961899)",122760407-E01 -112410288,E02,11079612,Structure Fire,08/29/2011,08/29/2011,08/29/2011 07:09:43 PM,08/29/2011 07:09:43 PM,08/29/2011 07:09:48 PM,08/29/2011 07:11:28 PM,08/29/2011 07:12:08 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 07:12:26 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",112410288-E02 -140180227,93,14006213,Medical Incident,01/18/2014,01/18/2014,01/18/2014 02:21:49 PM,01/18/2014 02:24:09 PM,01/18/2014 02:24:27 PM,01/18/2014 02:24:56 PM,01/18/2014 02:29:03 PM,01/18/2014 02:55:14 PM,01/18/2014 03:11:07 PM,Code 2 Transport,01/18/2014 03:27:51 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",140180227-93 -123010224,78,12099828,Medical Incident,10/27/2012,10/27/2012,10/27/2012 03:39:52 PM,10/27/2012 03:40:43 PM,10/27/2012 03:40:54 PM,10/27/2012 03:42:14 PM,10/27/2012 04:01:08 PM,10/27/2012 04:22:11 PM,10/27/2012 04:34:54 PM,Code 2 Transport,10/27/2012 04:58:35 PM,700 Block of JERROLD AVE,SF,94124,B10,17,6713,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.729760366784, -122.37336037863)",123010224-78 -123310348,86,12110153,Medical Incident,11/26/2012,11/26/2012,11/26/2012 07:50:03 PM,11/26/2012 07:50:42 PM,11/26/2012 07:51:14 PM,11/26/2012 07:51:41 PM,11/26/2012 07:54:41 PM,11/26/2012 08:11:21 PM,11/26/2012 08:29:35 PM,Code 2 Transport,11/26/2012 08:56:22 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",123310348-86 -160320155,AM20,16012408,Medical Incident,02/01/2016,01/31/2016,02/01/2016 01:21:40 AM,02/01/2016 01:22:49 AM,02/01/2016 01:23:19 AM,02/01/2016 01:27:06 AM,02/01/2016 01:27:06 AM,02/01/2016 01:48:17 AM,02/01/2016 01:59:15 AM,Code 2 Transport,02/01/2016 02:16:52 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160320155-AM20 -103320177,61,10106282,Medical Incident,11/28/2010,11/28/2010,11/28/2010 01:54:13 PM,11/28/2010 01:55:37 PM,11/28/2010 01:56:57 PM,11/28/2010 01:59:28 PM,11/28/2010 02:06:34 PM,11/28/2010 02:11:26 PM,11/28/2010 02:39:01 PM,Code 2 Transport,11/28/2010 03:04:07 PM,500 Block of SIMONDS LOOP,PR,94129,B99,51,4624,3,3,3,true,,1,MEDIC,2,7,2,Presidio,"(37.7958433120603, -122.450061104126)",103320177-61 -132900221,E01,13098666,Medical Incident,10/17/2013,10/17/2013,10/17/2013 01:16:36 PM,10/17/2013 01:17:01 PM,10/17/2013 01:17:29 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 01:18:45 PM,1100 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7795310846627, -122.413542548681)",132900221-E01 -120620342,72,12020532,Medical Incident,03/02/2012,03/02/2012,03/02/2012 09:09:13 PM,03/02/2012 09:11:29 PM,03/02/2012 09:12:06 PM,03/02/2012 09:12:23 PM,03/02/2012 09:24:22 PM,03/02/2012 09:28:40 PM,03/02/2012 09:35:54 PM,Code 2 Transport,03/02/2012 09:49:33 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,1,1,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",120620342-72 -113250264,63,11107997,Medical Incident,11/21/2011,11/21/2011,11/21/2011 04:07:52 PM,11/21/2011 04:08:29 PM,11/21/2011 04:08:51 PM,11/21/2011 04:09:13 PM,11/21/2011 04:11:30 PM,11/21/2011 04:36:02 PM,11/21/2011 04:45:59 PM,Code 2 Transport,11/21/2011 05:14:42 PM,MISSION ST/22ND ST,SF,94110,B06,7,5472,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",113250264-63 -131980012,E05,13067009,Medical Incident,07/17/2013,07/16/2013,07/17/2013 01:21:16 AM,07/17/2013 01:22:30 AM,07/17/2013 01:22:54 AM,04/25/2016 01:51:46 PM,07/17/2013 01:25:53 AM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/17/2013 02:06:07 AM,900 Block of FILLMORE ST,SF,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",131980012-E05 -133020058,E16,13102524,Alarms,10/29/2013,10/28/2013,10/29/2013 05:51:53 AM,10/29/2013 05:55:09 AM,10/29/2013 05:55:25 AM,10/29/2013 05:56:44 AM,10/29/2013 05:59:09 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/29/2013 06:04:08 AM,2100 Block of BAY ST,SF,94123,B04,16,4212,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8019985558598, -122.442402224418)",133020058-E16 -121490021,T15,12049321,Alarms,05/28/2012,05/27/2012,05/28/2012 01:11:00 AM,05/28/2012 01:13:42 AM,05/28/2012 01:14:04 AM,05/28/2012 01:15:36 AM,05/28/2012 01:18:59 AM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/28/2012 01:23:19 AM,2600 Block of SAN JOSE AVE,SF,94112,B09,33,8324,3,3,3,false,Alarm,1,TRUCK,2,9,11,Oceanview/Merced/Ingleside,"(37.7148239714274, -122.451612665285)",121490021-T15 -160121285,82,16004739,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:48:51 AM,01/12/2016 10:50:18 AM,01/12/2016 10:50:26 AM,01/12/2016 10:50:52 AM,01/12/2016 10:55:25 AM,01/12/2016 11:07:55 AM,01/12/2016 11:12:33 AM,Code 2 Transport,01/12/2016 11:53:02 AM,100 Block of PARNASSUS AVE,San Francisco,94117,B05,12,5153,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.764541634292, -122.451880232062)",160121285-82 -102660232,KM04,10084210,Medical Incident,09/23/2010,09/23/2010,09/23/2010 03:44:04 PM,09/23/2010 03:45:00 PM,09/23/2010 03:45:55 PM,09/23/2010 03:46:34 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 03:47:36 PM,1700 Block of 4TH ST,SF,94158,B03,8,2366,3,2,2,false,,1,PRIVATE,3,3,6,Mission Bay,"(37.7672859751392, -122.390912786614)",102660232-KM04 -132070013,B03,13069931,Traffic Collision,07/26/2013,07/25/2013,07/26/2013 01:18:13 AM,07/26/2013 01:25:16 AM,07/26/2013 01:26:04 AM,07/26/2013 01:28:51 AM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/26/2013 01:30:03 AM,100 Block of 10TH ST,SF,94103,B02,29,2345,2,3,3,false,Potentially Life-Threatening,1,CHIEF,7,2,6,South of Market,"(37.7750968170762, -122.415590844463)",132070013-B03 -131650022,E01,13055911,Medical Incident,06/14/2013,06/13/2013,06/14/2013 01:53:51 AM,06/14/2013 01:54:33 AM,06/14/2013 01:56:10 AM,06/14/2013 01:56:54 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 01:57:29 AM,LEAVENWORTH ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",131650022-E01 -121490280,AM14,12049544,Traffic Collision,05/28/2012,05/28/2012,05/28/2012 08:11:46 PM,05/28/2012 08:15:07 PM,05/28/2012 08:16:31 PM,05/28/2012 08:17:20 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 08:26:02 PM,100 Block of 9TH ST,SF,94103,B03,29,2324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7760543061938, -122.414393004759)",121490280-AM14 -130290041,AR1,13009820,Medical Incident,01/29/2013,01/28/2013,01/29/2013 03:21:46 AM,01/29/2013 03:21:46 AM,01/29/2013 03:21:46 AM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Fire,01/29/2013 04:01:17 AM,1400 Block of FOLSOM ST,SF,94103,B02,36,2343,2,2,2,false,Non Life-threatening,1,INVESTIGATION,1,2,6,South of Market,"(37.7725383928592, -122.413073151419)",130290041-AR1 -160133598,63,16005337,Medical Incident,01/13/2016,01/13/2016,01/13/2016 07:34:52 PM,01/13/2016 07:36:00 PM,01/13/2016 07:36:20 PM,01/13/2016 07:36:33 PM,01/13/2016 07:40:08 PM,01/13/2016 08:11:10 PM,01/13/2016 08:36:53 PM,Code 2 Transport,01/13/2016 09:27:23 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160133598-63 -113440112,88,11114064,Medical Incident,12/10/2011,12/10/2011,12/10/2011 10:00:03 AM,12/10/2011 10:01:26 AM,12/10/2011 10:01:54 AM,12/10/2011 10:02:04 AM,12/10/2011 10:04:59 AM,12/10/2011 10:16:28 AM,12/10/2011 10:29:16 AM,Code 2 Transport,12/10/2011 11:09:18 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",113440112-88 -120770266,RC1,12025575,Medical Incident,03/17/2012,03/17/2012,03/17/2012 05:18:26 PM,03/17/2012 05:21:57 PM,03/17/2012 05:23:48 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 05:40:24 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",120770266-RC1 -102370009,RC1,10074585,Medical Incident,08/25/2010,08/24/2010,08/25/2010 01:04:37 AM,08/25/2010 01:04:46 AM,08/25/2010 01:04:54 AM,08/25/2010 01:13:37 AM,08/25/2010 01:16:15 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/25/2010 01:23:36 AM,400 Block of BEALE ST,SF,94105,B03,35,2123,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",102370009-RC1 -160790544,79,16031312,Medical Incident,03/19/2016,03/18/2016,03/19/2016 05:13:51 AM,03/19/2016 05:17:09 AM,03/19/2016 05:17:35 AM,03/19/2016 05:17:47 AM,03/19/2016 05:21:32 AM,03/19/2016 05:37:19 AM,03/19/2016 05:45:48 AM,Code 2 Transport,03/19/2016 06:07:16 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160790544-79 -130010069,E08,13000048,Outside Fire,01/01/2013,12/31/2012,01/01/2013 01:12:01 AM,01/01/2013 01:15:01 AM,01/01/2013 01:15:49 AM,01/01/2013 01:16:06 AM,01/01/2013 01:19:23 AM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Fire,01/01/2013 01:22:06 AM,100 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2157,3,3,3,true,Fire,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868609000277, -122.399689492621)",130010069-E08 -133600276,T05,13122435,Structure Fire,12/26/2013,12/26/2013,12/26/2013 06:19:10 PM,12/26/2013 06:19:11 PM,12/26/2013 06:19:36 PM,12/26/2013 06:20:23 PM,12/26/2013 06:21:04 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 06:21:21 PM,WEBSTER ST/EDDY ST,SF,94115,B05,5,3515,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7816455834376, -122.430609199134)",133600276-T05 -160772417,KM04,16030648,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:04:19 PM,03/17/2016 03:05:17 PM,03/17/2016 03:05:52 PM,03/17/2016 03:06:42 PM,03/17/2016 03:12:12 PM,03/17/2016 03:22:32 PM,03/17/2016 04:11:54 PM,Code 2 Transport,03/17/2016 04:35:04 PM,2400 Block of 20TH AVE,San Francisco,94116,B08,40,7434,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7420735738087, -122.476628267314)",160772417-KM04 -111030294,RC2,11034226,Medical Incident,04/13/2011,04/13/2011,04/13/2011 05:53:17 PM,04/13/2011 05:54:17 PM,04/13/2011 05:54:36 PM,04/25/2016 02:05:07 PM,04/13/2011 06:04:22 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/13/2011 06:14:15 PM,0 Block of 16TH AVE,SF,94118,B07,31,7152,3,3,3,true,,1,RESCUE CAPTAIN,3,7,2,Seacliff,"(37.786484631376, -122.475456277492)",111030294-RC2 -103480272,KM05,10111659,Traffic Collision,12/14/2010,12/14/2010,12/14/2010 04:01:13 PM,12/14/2010 04:02:17 PM,12/14/2010 04:03:18 PM,12/14/2010 04:04:19 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Other,12/14/2010 04:09:32 PM,"CALL BOX: JOHN DALY BL/MISSION ST,DC",DC,,B09,33,9922,2,2,2,false,,1,PRIVATE,2,None,None,None,"(37.7049649190377, -122.462393901191)",103480272-KM05 -110450002,E03,11014782,Structure Fire,02/14/2011,02/13/2011,02/14/2011 12:05:59 AM,02/14/2011 12:06:28 AM,02/14/2011 12:06:52 AM,02/14/2011 12:13:20 AM,02/14/2011 12:15:32 AM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 12:30:46 AM,500 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,true,,1,ENGINE,10,1,3,Financial District/South Beach,"(37.7904631779771, -122.405941469147)",110450002-E03 -140980432,E33,14033240,Medical Incident,04/08/2014,04/08/2014,04/08/2014 08:50:03 PM,04/08/2014 08:50:26 PM,04/08/2014 08:51:21 PM,04/08/2014 08:52:22 PM,04/08/2014 08:56:40 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Code 3 Transport,04/08/2014 09:41:09 PM,200 Block of GUTTENBERG ST,SAN FRANCISCO,94112,B09,43,6218,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7096059467883, -122.442898080759)",140980432-E33 -160851195,56,16033709,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:02:26 AM,03/25/2016 10:03:12 AM,03/25/2016 10:03:51 AM,03/25/2016 10:04:00 AM,03/25/2016 10:08:54 AM,03/25/2016 10:33:09 AM,03/25/2016 10:45:07 AM,Code 2 Transport,03/25/2016 11:58:08 AM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",160851195-56 -130630401,T13,13021270,Alarms,03/04/2013,03/04/2013,03/04/2013 10:36:18 PM,03/04/2013 10:36:18 PM,03/04/2013 10:36:24 PM,03/04/2013 10:37:43 PM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 10:38:57 PM,500 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,true,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7944499888874, -122.40302477249)",130630401-T13 -131830297,KM04,13062452,Medical Incident,07/02/2013,07/02/2013,07/02/2013 06:26:47 PM,07/02/2013 06:26:47 PM,07/02/2013 06:27:21 PM,07/02/2013 06:28:03 PM,07/02/2013 06:31:23 PM,07/02/2013 06:43:10 PM,07/02/2013 06:47:14 PM,Code 2 Transport,07/02/2013 07:30:59 PM,2200 Block of CLAY ST,SF,94115,B04,38,3361,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7912883093306, -122.430102988109)",131830297-KM04 -111280020,E01,11042213,Medical Incident,05/08/2011,05/07/2011,05/08/2011 01:08:00 AM,05/08/2011 01:08:58 AM,05/08/2011 01:09:04 AM,05/08/2011 01:10:24 AM,05/08/2011 01:12:23 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/08/2011 01:21:46 AM,500 Block of HOWARD ST,SF,94105,B03,1,2146,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7869461751428, -122.398143526066)",111280020-E01 -120210257,72,12007183,Explosion,01/21/2012,01/21/2012,01/21/2012 03:19:16 PM,01/21/2012 03:19:32 PM,01/21/2012 03:20:09 PM,01/21/2012 03:20:28 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 03:24:43 PM,200 Block of SHIPLEY ST,SF,94107,B03,1,2244,3,3,3,true,Fire,1,MEDIC,5,3,6,South of Market,"(37.779377841254, -122.403313163388)",120210257-72 -110480146,E01,11015840,Medical Incident,02/17/2011,02/17/2011,02/17/2011 11:24:33 AM,02/17/2011 11:25:12 AM,02/17/2011 11:25:31 AM,02/17/2011 11:28:00 AM,02/17/2011 11:31:51 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 11:48:48 AM,400 Block of SUTTER ST,SF,94108,B01,1,1324,3,2,2,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",110480146-E01 -160411140,KM04,16016392,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:56:45 AM,02/10/2016 09:58:51 AM,02/10/2016 09:59:42 AM,02/10/2016 10:00:23 AM,02/10/2016 10:00:35 AM,02/10/2016 10:24:39 AM,02/10/2016 10:45:21 AM,Code 2 Transport,02/10/2016 11:16:00 AM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160411140-KM04 -140690007,B03,14023145,Alarms,03/10/2014,03/09/2014,03/10/2014 12:46:24 AM,03/10/2014 12:47:52 AM,03/10/2014 12:48:00 AM,03/10/2014 12:49:56 AM,03/10/2014 12:52:27 AM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Fire,03/10/2014 12:56:54 AM,0 Block of PERRY ST,SAN FRANCISCO,94107,B03,8,2175,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",140690007-B03 -160853753,86,16033971,Medical Incident,03/25/2016,03/25/2016,03/25/2016 09:23:24 PM,03/25/2016 09:24:00 PM,03/25/2016 09:24:46 PM,03/25/2016 09:26:38 PM,03/25/2016 09:28:59 PM,03/25/2016 09:46:29 PM,03/25/2016 10:00:35 PM,Code 2 Transport,03/25/2016 10:29:26 PM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7888365626691, -122.426230394716)",160853753-86 -160411858,52,16016460,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:09:34 PM,02/10/2016 01:10:22 PM,02/10/2016 01:11:05 PM,02/10/2016 01:11:22 PM,02/10/2016 01:17:53 PM,02/10/2016 01:50:08 PM,02/10/2016 02:03:22 PM,Code 2 Transport,02/10/2016 02:48:05 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",160411858-52 -113560172,E02,11118184,Medical Incident,12/22/2011,12/22/2011,12/22/2011 12:03:59 PM,12/22/2011 12:06:52 PM,12/22/2011 12:08:00 PM,12/22/2011 12:09:53 PM,12/22/2011 12:13:13 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 12:16:10 PM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",113560172-E02 -120660276,77,12021904,Medical Incident,03/06/2012,03/06/2012,03/06/2012 03:50:23 PM,03/06/2012 03:52:47 PM,03/06/2012 03:53:21 PM,03/06/2012 04:12:52 PM,03/06/2012 04:15:39 PM,03/06/2012 04:33:25 PM,03/06/2012 04:44:54 PM,Code 2 Transport,03/06/2012 05:20:49 PM,1400 Block of VALLEJO ST,SF,94109,B04,41,3126,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7969500797697, -122.42112794236)",120660276-77 -110430301,64,11014361,Medical Incident,02/12/2011,02/12/2011,02/12/2011 04:37:16 PM,02/12/2011 04:39:01 PM,02/12/2011 04:42:13 PM,02/12/2011 04:43:14 PM,02/12/2011 04:54:40 PM,02/12/2011 05:09:30 PM,02/12/2011 05:18:02 PM,Code 2 Transport,02/12/2011 05:41:06 PM,FELL ST/CLAYTON ST,SF,94117,B05,21,4523,1,1,2,true,,1,MEDIC,2,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",110430301-64 -140900202,87,14030312,Medical Incident,03/31/2014,03/31/2014,03/31/2014 02:25:27 PM,03/31/2014 02:25:27 PM,03/31/2014 02:25:27 PM,03/31/2014 02:25:27 PM,03/31/2014 02:25:27 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Patient Declined Transport,03/31/2014 03:02:26 PM,POWELL ST/SUTTER ST,,94108,B01,1,1362,,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",140900202-87 -130040258,E07,13001408,Medical Incident,01/04/2013,01/04/2013,01/04/2013 03:00:11 PM,01/04/2013 03:01:17 PM,01/04/2013 03:02:13 PM,01/04/2013 03:03:58 PM,01/04/2013 03:06:30 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 03:15:22 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",130040258-E07 -160611321,AM02,16024277,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:38:46 AM,03/01/2016 11:38:46 AM,03/01/2016 11:39:09 AM,03/01/2016 11:40:25 AM,03/01/2016 11:43:19 AM,03/01/2016 12:03:18 PM,03/01/2016 12:44:33 PM,Code 3 Transport,03/01/2016 01:17:03 PM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160611321-AM02 -132900030,E09,13098507,Smoke Investigation (Outside),10/17/2013,10/16/2013,10/17/2013 02:46:32 AM,10/17/2013 02:50:20 AM,10/17/2013 02:50:33 AM,10/17/2013 02:52:41 AM,10/17/2013 02:54:46 AM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 03:07:23 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,Alarm,1,ENGINE,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",132900030-E09 -112470340,88,11081582,Medical Incident,09/04/2011,09/04/2011,09/04/2011 07:51:40 PM,09/04/2011 07:52:22 PM,09/04/2011 07:52:42 PM,09/04/2011 07:52:54 PM,09/04/2011 07:57:44 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 08:31:03 PM,400 Block of PACIFIC AVE,SF,94133,B01,13,1212,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.7974015545937, -122.403291978554)",112470340-88 -110810095,T11,11026597,Alarms,03/22/2011,03/22/2011,03/22/2011 09:54:25 AM,03/22/2011 09:56:18 AM,03/22/2011 09:56:33 AM,03/22/2011 09:57:05 AM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 09:59:12 AM,600 Block of DOUGLASS ST,SF,94114,B06,24,5516,3,3,3,false,,1,TRUCK,3,6,8,Noe Valley,"(37.7538270549227, -122.438810909092)",110810095-T11 -160691791,54,16027479,Medical Incident,03/09/2016,03/09/2016,03/09/2016 01:04:28 PM,03/09/2016 01:06:01 PM,03/09/2016 01:07:15 PM,03/09/2016 01:07:41 PM,03/09/2016 01:27:52 PM,03/09/2016 01:44:43 PM,03/09/2016 01:52:12 PM,Code 2 Transport,03/09/2016 02:50:38 PM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7546325890357, -122.41873973942)",160691791-54 -160121621,56,16004763,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:25:12 PM,01/12/2016 12:27:24 PM,01/12/2016 12:28:38 PM,01/12/2016 12:29:14 PM,01/12/2016 12:39:16 PM,01/12/2016 12:58:35 PM,01/12/2016 01:02:03 PM,Code 2 Transport,01/12/2016 01:33:14 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160121621-56 -112440348,B01,11080593,Alarms,09/01/2011,09/01/2011,09/01/2011 09:58:53 PM,09/01/2011 09:59:55 PM,09/01/2011 10:00:01 PM,09/01/2011 10:01:28 PM,09/01/2011 10:04:43 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 10:12:03 PM,300 Block of CALIFORNIA ST,SF,94104,B01,13,1162,3,3,3,false,,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7931889329334, -122.40055351578)",112440348-B01 -103250078,B03,10104093,Medical Incident,11/21/2010,11/20/2010,11/21/2010 06:00:34 AM,11/21/2010 06:02:44 AM,11/21/2010 06:03:08 AM,11/21/2010 06:04:12 AM,11/21/2010 06:13:56 AM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,11/21/2010 07:52:08 AM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,,1,CHIEF,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",103250078-B03 -131480339,E20,13050303,Structure Fire,05/28/2013,05/28/2013,05/28/2013 07:12:51 PM,05/28/2013 07:13:26 PM,05/28/2013 07:13:56 PM,05/28/2013 07:15:11 PM,05/28/2013 07:17:30 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/28/2013 07:30:17 PM,500 Block of DELLBROOK AVE,SF,94131,B08,20,5365,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.755861282798, -122.453721421816)",131480339-E20 -123310047,B04,12109921,Gas Leak (Natural and LP Gases),11/26/2012,11/25/2012,11/26/2012 04:33:59 AM,11/26/2012 04:35:33 AM,11/26/2012 04:36:35 AM,11/26/2012 04:38:13 AM,11/26/2012 04:39:59 AM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/26/2012 05:20:35 AM,2500 Block of PINE ST,SF,94115,B04,38,3651,3,3,3,false,Alarm,1,CHIEF,1,4,5,Pacific Heights,"(37.7873744593954, -122.437747647167)",123310047-B04 -132150064,E01,13072502,Structure Fire,08/03/2013,08/02/2013,08/03/2013 04:03:18 AM,08/03/2013 04:05:14 AM,08/03/2013 04:05:32 AM,08/03/2013 04:07:38 AM,08/03/2013 04:10:09 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/03/2013 04:11:44 AM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,Alarm,1,ENGINE,5,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",132150064-E01 -103120138,E25,10100010,Medical Incident,11/08/2010,11/08/2010,11/08/2010 10:33:48 AM,11/08/2010 10:34:19 AM,11/08/2010 10:34:48 AM,11/08/2010 10:35:02 AM,11/08/2010 10:38:21 AM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 10:43:40 AM,2300 Block of 3RD ST,SF,94107,B10,25,2533,3,2,2,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7592069260893, -122.388577089603)",103120138-E25 -122820275,E17,12093443,Medical Incident,10/08/2012,10/08/2012,10/08/2012 06:41:54 PM,10/08/2012 06:44:25 PM,10/08/2012 06:44:51 PM,04/25/2016 01:56:23 PM,10/08/2012 06:49:48 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/08/2012 06:52:56 PM,0 Block of MIDDLE POINT RD,SF,94124,B10,25,6556,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7357585640379, -122.379345378835)",122820275-E17 -160423642,KM03,16017044,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:28:13 PM,02/11/2016 09:30:47 PM,02/11/2016 09:31:59 PM,02/11/2016 09:32:32 PM,02/11/2016 09:39:26 PM,02/11/2016 09:46:54 PM,02/11/2016 10:05:44 PM,Code 2 Transport,02/11/2016 10:45:39 PM,LARKIN ST/MARKET ST,San Francisco,94103,B02,36,1646,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160423642-KM03 -140960065,E06,14032209,Alarms,04/06/2014,04/05/2014,04/06/2014 03:29:27 AM,04/06/2014 03:30:52 AM,04/06/2014 03:30:58 AM,04/06/2014 03:33:17 AM,04/06/2014 03:34:28 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Fire,04/06/2014 03:40:34 AM,500 Block of SOUTH VAN NESS AVE,SAN FRANCISCO,94110,B02,7,5246,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",140960065-E06 -160572109,85,16022790,Medical Incident,02/26/2016,02/26/2016,02/26/2016 02:34:35 PM,02/26/2016 02:37:40 PM,02/26/2016 02:38:53 PM,02/26/2016 02:39:27 PM,02/26/2016 02:45:06 PM,02/26/2016 03:16:04 PM,02/26/2016 03:27:58 PM,Code 2 Transport,02/26/2016 04:27:59 PM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",160572109-85 -123290025,KM07,12109279,Medical Incident,11/24/2012,11/23/2012,11/24/2012 01:54:52 AM,11/24/2012 01:56:57 AM,11/24/2012 01:59:03 AM,11/24/2012 01:59:32 AM,11/24/2012 02:17:06 AM,11/24/2012 02:33:28 AM,04/25/2016 01:55:39 PM,Code 2 Transport,11/24/2012 03:43:59 AM,1200 Block of 42ND AVE,SF,94122,B08,23,7627,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7634207297587, -122.501766533727)",123290025-KM07 -123310262,E05,12110080,Medical Incident,11/26/2012,11/26/2012,11/26/2012 03:22:46 PM,11/26/2012 03:23:11 PM,11/26/2012 03:23:34 PM,11/26/2012 03:24:29 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 03:29:07 PM,500 Block of STEVENSON ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7809266852586, -122.410870424137)",123310262-E05 -102770040,82,10087963,Medical Incident,10/04/2010,10/03/2010,10/04/2010 05:41:08 AM,10/04/2010 05:43:43 AM,10/04/2010 05:44:04 AM,10/04/2010 05:44:52 AM,10/04/2010 06:06:21 AM,10/04/2010 06:17:33 AM,10/04/2010 06:22:07 AM,Code 2 Transport,10/04/2010 06:58:00 AM,1600 Block of 25TH ST,SF,94107,B10,37,2614,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7524526055, -122.395072614857)",102770040-82 -160091904,52,16003673,Medical Incident,01/09/2016,01/09/2016,01/09/2016 02:06:11 PM,01/09/2016 02:07:45 PM,01/09/2016 02:07:55 PM,01/09/2016 02:08:04 PM,01/09/2016 02:14:21 PM,01/09/2016 02:28:08 PM,01/09/2016 02:51:57 PM,Code 2 Transport,01/09/2016 03:30:15 PM,600 Block of ALABAMA ST,San Francisco,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7610105720239, -122.411919466827)",160091904-52 -113440129,KM14,11114077,Water Rescue,12/10/2011,12/10/2011,12/10/2011 11:01:31 AM,12/10/2011 11:03:21 AM,12/10/2011 11:04:09 AM,12/10/2011 11:05:58 AM,12/10/2011 11:17:55 AM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 11:24:04 AM,900 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,,1,PRIVATE,9,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",113440129-KM14 -112040363,85,11067550,Medical Incident,07/23/2011,07/23/2011,07/23/2011 09:57:17 PM,07/23/2011 09:58:38 PM,07/23/2011 09:59:07 PM,07/23/2011 09:59:15 PM,07/23/2011 10:07:28 PM,07/23/2011 10:32:29 PM,07/23/2011 10:50:04 PM,Code 2 Transport,07/23/2011 11:13:18 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,true,,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",112040363-85 -110780072,E10,11025589,Structure Fire,03/19/2011,03/18/2011,03/19/2011 07:26:12 AM,03/19/2011 07:27:07 AM,03/19/2011 07:27:33 AM,03/19/2011 07:28:04 AM,03/19/2011 07:30:30 AM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Fire,03/19/2011 07:47:54 AM,200 Block of PARKER AVE,SF,94118,B07,10,4453,3,3,3,true,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.780912636628, -122.454081993476)",110780072-E10 -112910233,59,11096604,Medical Incident,10/18/2011,10/18/2011,10/18/2011 02:00:03 PM,10/18/2011 02:00:34 PM,10/18/2011 02:15:37 PM,10/18/2011 02:21:02 PM,10/18/2011 02:24:39 PM,10/18/2011 02:43:55 PM,10/18/2011 02:53:35 PM,Other,10/18/2011 03:32:03 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",112910233-59 -110400035,E13,11013121,Medical Incident,02/09/2011,02/08/2011,02/09/2011 03:03:11 AM,02/09/2011 03:03:33 AM,02/09/2011 03:03:59 AM,02/09/2011 03:08:42 AM,02/09/2011 03:11:26 AM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 03:26:10 AM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8054738067872, -122.407570127181)",110400035-E13 -160033104,70,16001373,Medical Incident,01/03/2016,01/03/2016,01/03/2016 09:33:14 PM,01/03/2016 09:35:40 PM,01/03/2016 09:36:02 PM,01/03/2016 09:36:16 PM,01/03/2016 09:42:01 PM,01/03/2016 10:03:00 PM,01/03/2016 10:03:06 PM,Code 2 Transport,01/03/2016 10:30:20 PM,FOLSOM ST/4TH ST,San Francisco,94107,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7820242662358, -122.401159719509)",160033104-70 -123040250,T03,12100953,Structure Fire,10/30/2012,10/30/2012,10/30/2012 05:32:44 PM,10/30/2012 05:32:44 PM,10/30/2012 05:33:20 PM,10/30/2012 05:33:28 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Fire,10/30/2012 05:36:05 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",123040250-T03 -111340192,79,11044577,Medical Incident,05/14/2011,05/14/2011,05/14/2011 02:11:33 PM,05/14/2011 02:11:59 PM,05/14/2011 02:12:19 PM,04/25/2016 02:04:38 PM,05/14/2011 02:25:53 PM,05/14/2011 03:11:28 PM,05/14/2011 03:30:25 PM,Code 2 Transport,05/14/2011 04:18:03 PM,400 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7232,3,2,2,true,,1,MEDIC,2,7,2,Seacliff,"(37.7875603847719, -122.487923755449)",111340192-79 -140370243,84,14012562,Medical Incident,02/06/2014,02/06/2014,02/06/2014 03:56:06 PM,02/06/2014 03:57:11 PM,02/06/2014 03:59:16 PM,02/06/2014 03:59:26 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 05:03:06 PM,1400 Block of ALABAMA ST,SF,94110,B06,9,5615,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7489077084041, -122.41053305539)",140370243-84 -112430094,T01,11080067,Citizen Assist / Service Call,08/31/2011,08/31/2011,08/31/2011 09:12:12 AM,08/31/2011 09:13:57 AM,08/31/2011 09:14:22 AM,08/31/2011 09:15:58 AM,08/31/2011 09:20:13 AM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Fire,08/31/2011 09:28:43 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",112430094-T01 -160431891,61,16017312,Medical Incident,02/12/2016,02/12/2016,02/12/2016 01:43:22 PM,02/12/2016 01:45:22 PM,02/12/2016 01:45:52 PM,02/12/2016 01:47:39 PM,02/12/2016 01:53:38 PM,02/12/2016 02:13:07 PM,02/12/2016 02:43:29 PM,Code 2 Transport,02/12/2016 03:31:46 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160431891-61 -160603515,77,16024092,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:32:42 PM,02/29/2016 09:32:42 PM,02/29/2016 09:32:56 PM,02/29/2016 09:33:14 PM,02/29/2016 09:36:13 PM,02/29/2016 09:40:33 PM,02/29/2016 10:10:37 PM,Code 2 Transport,02/29/2016 10:47:48 PM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",160603515-77 -160420144,52,16016699,Medical Incident,02/11/2016,02/10/2016,02/11/2016 01:17:50 AM,02/11/2016 01:19:51 AM,02/11/2016 01:20:12 AM,02/11/2016 01:20:20 AM,02/11/2016 01:24:07 AM,02/11/2016 01:38:43 AM,02/11/2016 01:49:52 AM,Code 2 Transport,02/11/2016 02:15:35 AM,24TH ST/FLORIDA ST,San Francisco,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7527390254513, -122.410066406492)",160420144-52 -111090072,E15,11035910,Structure Fire,04/19/2011,04/19/2011,04/19/2011 09:17:55 AM,04/19/2011 09:17:55 AM,04/19/2011 09:18:28 AM,04/19/2011 09:18:52 AM,04/19/2011 09:21:58 AM,04/25/2016 02:05:02 PM,04/25/2016 02:05:02 PM,Other,04/19/2011 09:32:32 AM,200 Block of ONEIDA AVE,SF,94112,B09,15,828,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7218642111521, -122.442994070235)",111090072-E15 -120890367,AM14,12029628,Structure Fire,03/29/2012,03/29/2012,03/29/2012 11:28:25 PM,03/29/2012 11:28:26 PM,03/29/2012 11:28:34 PM,03/29/2012 11:32:17 PM,03/29/2012 11:38:45 PM,03/29/2012 11:50:10 PM,03/30/2012 12:07:27 AM,Code 2 Transport,03/30/2012 12:07:30 AM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,false,Alarm,1,PRIVATE,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",120890367-AM14 -160633297,68,16025220,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:28:13 PM,03/03/2016 07:28:13 PM,03/03/2016 07:30:19 PM,03/03/2016 07:30:27 PM,03/03/2016 07:32:58 PM,03/03/2016 07:40:47 PM,03/03/2016 08:11:22 PM,Code 2 Transport,03/03/2016 08:37:15 PM,JONES ST/MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811361605292, -122.412024075557)",160633297-68 -121180425,RS1,12039292,Structure Fire,04/27/2012,04/27/2012,04/27/2012 10:18:49 PM,04/27/2012 10:21:36 PM,04/27/2012 10:22:27 PM,04/27/2012 10:24:04 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 10:30:13 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,false,Fire,1,RESCUE SQUAD,8,2,6,Tenderloin,"(37.7855029033652, -122.414807788747)",121180425-RS1 -133260115,T14,13110657,Alarms,11/22/2013,11/22/2013,11/22/2013 10:24:42 AM,11/22/2013 10:25:42 AM,11/22/2013 10:25:53 AM,11/22/2013 10:26:25 AM,11/22/2013 10:30:55 AM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 10:34:48 AM,700 Block of 45TH AVE,SF,94121,B07,34,7273,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7743931351454, -122.505746558846)",133260115-T14 -160290744,53,16011358,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:21:07 AM,01/29/2016 08:22:10 AM,01/29/2016 08:29:04 AM,01/29/2016 08:29:18 AM,01/29/2016 08:34:36 AM,01/29/2016 08:57:07 AM,01/29/2016 09:19:54 AM,Code 2 Transport,01/29/2016 10:01:45 AM,1200 Block of FLORIDA ST,San Francisco,94110,B06,7,5527,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7519378906971, -122.410059383052)",160290744-53 -140100198,AM20,14003493,Medical Incident,01/10/2014,01/10/2014,01/10/2014 12:31:17 PM,01/10/2014 12:32:14 PM,01/10/2014 12:32:33 PM,01/10/2014 12:33:12 PM,01/10/2014 12:43:24 PM,01/10/2014 12:48:09 PM,01/10/2014 01:32:12 PM,Code 2 Transport,01/10/2014 02:15:43 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.78076369834, -122.491163848059)",140100198-AM20 -130250206,E44,13008637,Medical Incident,01/25/2013,01/25/2013,01/25/2013 01:11:36 PM,01/25/2013 01:13:25 PM,01/25/2013 01:15:17 PM,01/25/2013 01:16:18 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,No Merit,01/25/2013 01:16:51 PM,BAYSHORE BL/SUNNYDALE AV,SF,94134,B10,44,6254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Bayview Hunters Point,"(37.7088536077159, -122.405109455132)",130250206-E44 -121010240,E11,12033529,Medical Incident,04/10/2012,04/10/2012,04/10/2012 03:27:22 PM,04/10/2012 03:29:44 PM,04/10/2012 03:30:24 PM,04/10/2012 03:30:56 PM,04/10/2012 03:36:21 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 03:49:05 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7490412884368, -122.418135251703)",121010240-E11 -160680411,65,16026994,Medical Incident,03/08/2016,03/07/2016,03/08/2016 06:19:22 AM,03/08/2016 06:22:32 AM,03/08/2016 06:22:47 AM,03/08/2016 06:23:22 AM,03/08/2016 06:37:16 AM,03/08/2016 06:39:49 AM,03/08/2016 06:51:07 AM,Code 2 Transport,03/08/2016 07:03:58 AM,3RD ST/QUESADA AV,San Francisco,94124,B10,17,6514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7332232631153, -122.391244493226)",160680411-65 -111760248,E37,11058063,Outside Fire,06/25/2011,06/25/2011,06/25/2011 03:49:07 PM,06/25/2011 03:49:08 PM,06/25/2011 03:49:48 PM,06/25/2011 03:51:57 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 03:55:12 PM,900 Block of 3RD ST,SF,94158,B03,8,946,3,3,3,true,,1,ENGINE,4,None,6,None,"(37.7765531472403, -122.390007762623)",111760248-E37 -160640409,KM03,16025358,Medical Incident,03/04/2016,03/03/2016,03/04/2016 04:49:19 AM,03/04/2016 04:51:10 AM,03/04/2016 04:51:32 AM,03/04/2016 04:52:08 AM,03/04/2016 05:01:32 AM,03/04/2016 05:20:11 AM,03/04/2016 05:39:11 AM,Code 2 Transport,03/04/2016 06:21:38 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160640409-KM03 -112100227,T01,11069370,Alarms,07/29/2011,07/29/2011,07/29/2011 05:36:26 PM,07/29/2011 05:37:31 PM,07/29/2011 05:38:29 PM,07/29/2011 05:40:09 PM,07/29/2011 05:42:30 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 05:49:30 PM,0 Block of COLUMBIA SQUARE ST,SF,94103,B03,1,2253,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7772769755923, -122.405617030416)",112100227-T01 -122620140,E12,12086479,Alarms,09/18/2012,09/18/2012,09/18/2012 11:37:35 AM,09/18/2012 11:38:05 AM,09/18/2012 11:39:17 AM,09/18/2012 11:39:38 AM,09/18/2012 11:41:51 AM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 11:48:00 AM,400 Block of PARNASSUS AVE,SF,94122,B05,12,5155,3,3,3,true,Alarm,1,ENGINE,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",122620140-E12 -122740279,E03,12090468,Medical Incident,09/30/2012,09/30/2012,09/30/2012 05:17:14 PM,09/30/2012 05:17:49 PM,09/30/2012 05:18:23 PM,09/30/2012 05:18:30 PM,09/30/2012 05:18:55 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,Other,09/30/2012 05:27:36 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",122740279-E03 -130980058,E31,13032758,Citizen Assist / Service Call,04/08/2013,04/07/2013,04/08/2013 03:50:22 AM,04/08/2013 03:51:54 AM,04/08/2013 03:52:34 AM,04/08/2013 03:54:36 AM,04/08/2013 03:56:04 AM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Other,04/08/2013 04:03:41 AM,1700 Block of CLEMENT ST,SF,94121,B07,31,7164,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7823892979181, -122.47791315608)",130980058-E31 -160133264,74,16005303,Medical Incident,01/13/2016,01/13/2016,01/13/2016 06:12:04 PM,01/13/2016 06:12:04 PM,01/13/2016 06:18:36 PM,01/13/2016 06:18:36 PM,01/13/2016 06:23:21 PM,01/13/2016 06:42:01 PM,01/13/2016 06:42:02 PM,Code 2 Transport,01/13/2016 07:28:53 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160133264-74 -130540158,E09,13018237,Medical Incident,02/23/2013,02/23/2013,02/23/2013 01:17:58 PM,02/23/2013 01:18:19 PM,02/23/2013 01:19:39 PM,02/23/2013 01:20:29 PM,02/23/2013 01:22:55 PM,02/23/2013 01:39:01 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 01:54:00 PM,2400 Block of 24TH ST,SF,94110,B10,9,2562,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Mission,"(37.7530951176845, -122.403879225833)",130540158-E09 -113160178,77,11105004,Medical Incident,11/12/2011,11/12/2011,11/12/2011 02:38:25 PM,11/12/2011 02:38:42 PM,11/12/2011 02:39:30 PM,11/12/2011 02:40:19 PM,11/12/2011 02:41:37 PM,11/12/2011 03:06:30 PM,11/12/2011 03:37:31 PM,Code 2 Transport,11/12/2011 03:54:52 PM,1800 Block of STOCKTON ST,SF,94133,B01,28,1335,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8027782547729, -122.409586942281)",113160178-77 -140590223,B03,14019924,Alarms,02/28/2014,02/28/2014,02/28/2014 02:09:53 PM,02/28/2014 02:09:53 PM,02/28/2014 02:10:03 PM,02/28/2014 02:12:08 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Fire,02/28/2014 02:12:51 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",140590223-B03 -132160157,RS1,13072965,Structure Fire,08/04/2013,08/04/2013,08/04/2013 12:53:19 PM,08/04/2013 12:54:32 PM,08/04/2013 12:54:47 PM,08/04/2013 12:55:35 PM,08/04/2013 01:02:17 PM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/04/2013 01:07:09 PM,900 Block of GREENWICH ST,SF,94133,B01,28,1514,3,3,3,false,Alarm,1,RESCUE SQUAD,9,1,3,Russian Hill,"(37.8015015067263, -122.415530627533)",132160157-RS1 -130970088,T12,13032458,Other,04/07/2013,04/06/2013,04/07/2013 07:11:58 AM,04/07/2013 07:12:20 AM,04/07/2013 07:12:42 AM,04/07/2013 07:14:36 AM,04/07/2013 07:19:24 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Fire,04/07/2013 07:27:05 AM,100 Block of MARTIN LUTHER KING JR DR,SF,94122,B07,12,7743,3,3,3,false,Alarm,1,TRUCK,1,7,5,Golden Gate Park,"(37.7669591119289, -122.462470187645)",130970088-T12 -103010327,T12,10096215,Structure Fire,10/28/2010,10/28/2010,10/28/2010 05:31:39 PM,10/28/2010 05:33:14 PM,10/28/2010 05:33:26 PM,10/28/2010 05:34:30 PM,10/28/2010 06:46:45 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/28/2010 07:23:23 PM,300 Block of PANORAMA DR,SF,94131,B08,20,5351,3,3,3,false,,1,TRUCK,12,8,7,Twin Peaks,"(37.7502932901072, -122.452197020154)",103010327-T12 -160221157,73,16008714,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:18:49 AM,01/22/2016 10:18:49 AM,01/22/2016 10:19:24 AM,01/22/2016 10:19:34 AM,01/22/2016 10:35:29 AM,01/22/2016 10:56:10 AM,01/22/2016 11:08:19 AM,Code 2 Transport,01/22/2016 11:47:11 AM,2500 Block of HARRISON ST,San Francisco,94110,B06,7,545,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7566269297106, -122.412341955639)",160221157-73 -121250038,85,12041390,Medical Incident,05/04/2012,05/03/2012,05/04/2012 05:01:41 AM,05/04/2012 05:04:30 AM,05/04/2012 05:06:22 AM,05/04/2012 05:06:35 AM,05/04/2012 05:10:03 AM,05/04/2012 05:19:28 AM,05/04/2012 05:24:19 AM,Code 2 Transport,05/04/2012 05:30:23 AM,JONES ST/MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811361605292, -122.412024075557)",121250038-85 -160280128,52,16010935,Medical Incident,01/28/2016,01/27/2016,01/28/2016 01:13:10 AM,01/28/2016 01:14:25 AM,01/28/2016 01:14:44 AM,01/28/2016 01:14:50 AM,01/28/2016 01:33:11 AM,01/28/2016 01:54:24 AM,01/28/2016 02:19:38 AM,Code 2 Transport,01/28/2016 03:14:45 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",160280128-52 -160253081,73,16010062,Medical Incident,01/25/2016,01/25/2016,01/25/2016 06:49:39 PM,01/25/2016 06:49:39 PM,01/25/2016 07:06:12 PM,01/25/2016 07:06:21 PM,01/25/2016 07:12:49 PM,01/25/2016 07:16:32 PM,01/25/2016 07:27:33 PM,Code 2 Transport,01/25/2016 08:10:54 PM,FILLMORE ST/BAY ST,San Francisco,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.8026284241178, -122.436693347158)",160253081-73 -133350156,88,13113552,Medical Incident,12/01/2013,12/01/2013,12/01/2013 12:03:25 PM,12/01/2013 12:03:47 PM,12/01/2013 12:04:31 PM,12/01/2013 12:04:43 PM,12/01/2013 12:11:52 PM,12/01/2013 12:26:00 PM,12/01/2013 12:41:35 PM,Code 2 Transport,12/01/2013 01:14:30 PM,MARKET ST/VALENCIA ST,SF,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7725028174103, -122.422619692886)",133350156-88 -160703732,65,16028041,Medical Incident,03/10/2016,03/10/2016,03/10/2016 10:39:28 PM,03/10/2016 10:39:28 PM,03/10/2016 10:39:46 PM,03/10/2016 10:40:04 PM,03/10/2016 10:45:24 PM,03/10/2016 11:10:48 PM,03/10/2016 11:23:22 PM,Code 2 Transport,03/11/2016 12:57:40 AM,200 Block of SAN CARLOS ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7593905432915, -122.41983909787)",160703732-65 -123450367,B03,12115479,Alarms,12/10/2012,12/10/2012,12/10/2012 07:08:29 PM,12/10/2012 07:10:02 PM,12/10/2012 07:10:13 PM,12/10/2012 07:11:45 PM,12/10/2012 07:16:15 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Fire,12/10/2012 07:18:29 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7760099210785, -122.412889415461)",123450367-B03 -140500030,E05,14016862,Medical Incident,02/19/2014,02/18/2014,02/19/2014 04:36:18 AM,02/19/2014 04:37:03 AM,02/19/2014 04:37:24 AM,02/19/2014 04:39:34 AM,02/19/2014 04:41:55 AM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,Code 2 Transport,02/19/2014 04:57:25 AM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",140500030-E05 -132080285,AM18,13070503,Medical Incident,07/27/2013,07/27/2013,07/27/2013 09:10:46 PM,07/27/2013 09:13:04 PM,07/27/2013 09:14:11 PM,07/27/2013 09:14:46 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,04/25/2016 01:51:36 PM,FRANKLIN ST/HICKORY ST,SF,94102,B02,36,3213,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7756952315928, -122.421053261418)",132080285-AM18 -120620294,E15,12020485,Medical Incident,03/02/2012,03/02/2012,03/02/2012 06:12:45 PM,03/02/2012 06:13:16 PM,03/02/2012 06:13:40 PM,03/02/2012 06:13:51 PM,03/02/2012 06:16:44 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/02/2012 06:41:02 PM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",120620294-E15 -132080287,E31,13070504,Medical Incident,07/27/2013,07/27/2013,07/27/2013 09:16:42 PM,07/27/2013 09:17:28 PM,07/27/2013 09:17:39 PM,07/27/2013 09:18:38 PM,07/27/2013 09:20:48 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/27/2013 09:37:21 PM,5200 Block of GEARY BLVD,SF,94118,B07,31,7161,3,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7803793292954, -122.475616326182)",132080287-E31 -112760214,E23,11091375,Medical Incident,10/03/2011,10/03/2011,10/03/2011 01:38:05 PM,10/03/2011 01:38:17 PM,10/03/2011 01:39:01 PM,10/03/2011 01:39:57 PM,10/03/2011 01:41:41 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,No Merit,10/03/2011 02:03:44 PM,1700 Block of 43RD AVE,SF,94122,B08,23,7651,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7540326780595, -122.502185504543)",112760214-E23 -123130028,E36,12104015,Medical Incident,11/08/2012,11/07/2012,11/08/2012 02:11:28 AM,11/08/2012 02:12:19 AM,11/08/2012 02:12:36 AM,11/08/2012 02:15:21 AM,11/08/2012 02:16:50 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/08/2012 02:22:15 AM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",123130028-E36 -130090368,E07,13003265,Explosion,01/09/2013,01/09/2013,01/09/2013 10:57:20 PM,01/09/2013 10:59:45 PM,01/09/2013 11:00:45 PM,01/09/2013 11:03:08 PM,01/09/2013 11:03:46 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 11:14:50 PM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7576134671742, -122.419025267752)",130090368-E07 -160473270,55,16019079,Explosion,02/16/2016,02/16/2016,02/16/2016 07:26:49 PM,02/16/2016 07:28:49 PM,02/16/2016 07:31:01 PM,02/16/2016 07:31:16 PM,02/16/2016 07:40:46 PM,02/16/2016 08:06:46 PM,02/16/2016 08:17:34 PM,Code 2 Transport,02/16/2016 08:41:00 PM,500 Block of NEVADA ST,San Francisco,94110,B10,32,5746,3,3,3,true,Fire,1,MEDIC,5,10,9,Bernal Heights,"(37.7352159283229, -122.411843888216)",160473270-55 -160401999,AM02,16016058,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:48:53 PM,02/09/2016 01:50:05 PM,02/09/2016 01:52:07 PM,02/09/2016 01:55:58 PM,02/09/2016 01:57:40 PM,02/09/2016 02:14:26 PM,02/09/2016 02:33:09 PM,Code 2 Transport,02/09/2016 03:11:18 PM,5400 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7162,2,3,3,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7842404537542, -122.475899821678)",160401999-AM02 -160080061,76,16003051,Medical Incident,01/08/2016,01/07/2016,01/08/2016 12:32:21 AM,01/08/2016 12:34:07 AM,01/08/2016 12:35:53 AM,01/08/2016 12:39:41 AM,01/08/2016 12:45:26 AM,01/08/2016 01:04:37 AM,01/08/2016 01:14:52 AM,Code 2 Transport,01/08/2016 02:27:12 AM,1000 Block of MONTEREY BLVD,San Francisco,94127,B09,15,8522,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7308474511279, -122.459712653409)",160080061-76 -112600311,E36,11085854,High Angle Rescue,09/17/2011,09/17/2011,09/17/2011 05:16:04 PM,09/17/2011 05:16:47 PM,09/17/2011 05:17:27 PM,04/25/2016 02:02:37 PM,09/17/2011 05:18:41 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 05:22:44 PM,300 Block of LARKIN ST,SF,94102,B02,3,1644,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7809676399552, -122.416978283011)",112600311-E36 -133440314,B03,13116766,Alarms,12/10/2013,12/10/2013,12/10/2013 05:26:36 PM,12/10/2013 05:29:04 PM,12/10/2013 05:29:19 PM,12/10/2013 05:31:19 PM,12/10/2013 05:33:58 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 05:48:26 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7806691632498, -122.401678045598)",133440314-B03 -160100586,88,16003929,Medical Incident,01/10/2016,01/09/2016,01/10/2016 05:38:06 AM,01/10/2016 05:39:25 AM,01/10/2016 05:40:00 AM,01/10/2016 05:40:17 AM,01/10/2016 05:47:01 AM,01/10/2016 06:00:06 AM,01/10/2016 06:08:42 AM,Code 2 Transport,01/10/2016 06:39:13 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160100586-88 -160861911,77,16034188,Medical Incident,03/26/2016,03/26/2016,03/26/2016 01:54:23 PM,03/26/2016 01:55:29 PM,03/26/2016 01:55:44 PM,03/26/2016 01:56:05 PM,03/26/2016 02:01:15 PM,03/26/2016 02:24:48 PM,03/26/2016 02:36:24 PM,Code 2 Transport,03/26/2016 03:25:00 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160861911-77 -160271283,KM11,16010623,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:47:05 AM,01/27/2016 10:48:34 AM,01/27/2016 10:49:14 AM,01/27/2016 10:50:09 AM,01/27/2016 10:54:57 AM,01/27/2016 11:10:32 AM,01/27/2016 11:25:36 AM,Code 2 Transport,01/27/2016 11:44:46 AM,900 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160271283-KM11 -132400151,E33,13080931,Medical Incident,08/28/2013,08/28/2013,08/28/2013 11:38:50 AM,08/28/2013 11:42:12 AM,08/28/2013 11:43:21 AM,08/28/2013 11:44:34 AM,08/28/2013 11:46:58 AM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/28/2013 11:59:22 AM,5500 Block of MISSION ST,SF,94112,B09,33,6177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7120147227325, -122.445301042421)",132400151-E33 -120270248,59,12009115,Medical Incident,01/27/2012,01/27/2012,01/27/2012 03:13:19 PM,01/27/2012 03:15:06 PM,01/27/2012 03:15:25 PM,01/27/2012 03:18:17 PM,01/27/2012 03:25:07 PM,01/27/2012 03:37:29 PM,01/27/2012 04:07:24 PM,Code 2 Transport,01/27/2012 04:48:38 PM,100 Block of SOUTHPARK AV,SF,94107,B03,8,2173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7813440864506, -122.394434280881)",120270248-59 -112670140,E01,11088186,Medical Incident,09/24/2011,09/24/2011,09/24/2011 10:19:35 AM,09/24/2011 10:20:15 AM,09/24/2011 10:20:29 AM,09/24/2011 10:21:19 AM,09/24/2011 10:25:08 AM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 10:38:05 AM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",112670140-E01 -133510431,93,13119401,Structure Fire,12/17/2013,12/17/2013,12/17/2013 10:56:31 PM,12/17/2013 10:57:20 PM,12/17/2013 10:57:39 PM,12/17/2013 10:58:06 PM,12/17/2013 11:04:02 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/17/2013 11:04:52 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Alarm,1,MEDIC,9,3,6,South of Market,"(37.7803475492385, -122.406487967809)",133510431-93 -132810279,FHT22,13095681,Administrative,10/08/2013,10/08/2013,10/08/2013 04:53:14 PM,10/08/2013 04:53:16 PM,10/08/2013 04:54:26 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,04/25/2016 01:50:21 PM,1000 Block of TURK ST,SF,94102,B02,5,3367,3,3,3,false,,1,SUPPORT,1,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",132810279-FHT22 -160844256,59,16033578,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:45:52 PM,03/24/2016 10:46:34 PM,03/24/2016 10:46:51 PM,03/24/2016 10:47:25 PM,03/24/2016 10:50:22 PM,03/24/2016 11:10:24 PM,03/24/2016 11:22:48 PM,Code 3 Transport,03/24/2016 11:44:53 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160844256-59 -131180090,KM12,13039624,Water Rescue,04/28/2013,04/28/2013,04/28/2013 08:33:37 AM,04/28/2013 08:35:30 AM,04/28/2013 08:37:09 AM,04/28/2013 08:38:26 AM,04/28/2013 08:45:47 AM,04/28/2013 09:04:06 AM,04/28/2013 09:22:53 AM,Code 2 Transport,04/28/2013 10:00:01 AM,900 Block of MARINE DR,PR,94129,B99,51,4628,3,3,3,false,Fire,1,PRIVATE,6,7,2,Presidio,"(37.8089767888005, -122.47460956271)",131180090-KM12 -160193475,70,16007795,Medical Incident,01/19/2016,01/19/2016,01/19/2016 09:09:27 PM,01/19/2016 09:10:17 PM,01/19/2016 09:10:29 PM,01/19/2016 09:11:17 PM,01/19/2016 09:13:38 PM,01/19/2016 09:30:03 PM,01/19/2016 09:34:03 PM,Code 2 Transport,01/19/2016 09:54:57 PM,0 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7548646812511, -122.42138676208)",160193475-70 -160511800,67,16020493,Medical Incident,02/20/2016,02/20/2016,02/20/2016 02:11:04 PM,02/20/2016 02:12:31 PM,02/20/2016 02:18:41 PM,02/20/2016 02:18:56 PM,02/20/2016 02:25:07 PM,02/20/2016 02:39:16 PM,02/20/2016 03:28:49 PM,Code 2 Transport,02/20/2016 03:29:22 PM,1200 Block of HAMPSHIRE ST,San Francisco,94110,B06,9,5531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Mission,"(37.7521125682968, -122.407146114914)",160511800-67 -123440018,E05,12114846,Medical Incident,12/09/2012,12/08/2012,12/09/2012 12:50:28 AM,12/09/2012 12:52:26 AM,12/09/2012 12:54:54 AM,12/09/2012 12:55:54 AM,12/09/2012 12:57:58 AM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/09/2012 01:09:47 AM,ELLIS ST/STEINER ST,SF,94115,B04,5,3623,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7821509104559, -122.434161776634)",123440018-E05 -133060189,RS2,13104042,Structure Fire,11/02/2013,11/02/2013,11/02/2013 01:26:34 PM,11/02/2013 01:27:31 PM,11/02/2013 01:27:53 PM,11/02/2013 01:29:19 PM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,Other,11/02/2013 01:37:30 PM,1200 Block of 14TH AVE,SF,94122,B08,22,7346,3,3,3,false,Alarm,1,RESCUE SQUAD,9,7,5,Inner Sunset,"(37.7647478412807, -122.471664663461)",133060189-RS2 -112560069,E15,11084346,Medical Incident,09/13/2011,09/12/2011,09/13/2011 07:29:49 AM,09/13/2011 07:31:03 AM,09/13/2011 07:31:11 AM,04/25/2016 02:02:42 PM,09/13/2011 07:32:46 AM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Other,09/13/2011 08:06:33 AM,200 Block of LEE AVE,SF,94112,B09,15,8472,3,3,3,true,,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7226539396892, -122.454180300555)",112560069-E15 -131850399,HT48,13063232,Outside Fire,07/04/2013,07/04/2013,07/04/2013 10:38:32 PM,07/04/2013 10:41:02 PM,07/04/2013 10:42:09 PM,07/04/2013 10:42:42 PM,07/04/2013 10:46:29 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Fire,07/04/2013 10:56:06 PM,1200 Block of NORTHPOINT DR,TI,94130,B03,48,2931,3,3,3,false,Fire,1,SUPPORT,1,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",131850399-HT48 -103540195,AM14,10113659,Medical Incident,12/20/2010,12/20/2010,12/20/2010 02:25:41 PM,12/20/2010 02:26:22 PM,12/20/2010 02:27:00 PM,12/20/2010 02:28:09 PM,12/20/2010 02:32:53 PM,12/20/2010 03:07:34 PM,12/20/2010 03:15:16 PM,Code 2 Transport,12/20/2010 04:18:28 PM,600 Block of TENNESSEE ST,SF,94107,B03,29,2465,3,3,3,false,,1,PRIVATE,2,3,10,Potrero Hill,"(37.7636272287453, -122.389723389973)",103540195-AM14 -103610207,E05,10115826,Medical Incident,12/27/2010,12/27/2010,12/27/2010 02:23:32 PM,12/27/2010 02:24:30 PM,12/27/2010 02:25:13 PM,12/27/2010 02:26:14 PM,12/27/2010 02:26:51 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,12/27/2010 02:40:06 PM,WEBSTER ST/GEARY BL,SF,94115,B04,5,3541,3,3,3,true,,1,ENGINE,1,4,5,Japantown,"(37.7845682402461, -122.431204945516)",103610207-E05 -112170390,E40,11071886,Structure Fire,08/05/2011,08/05/2011,08/05/2011 10:36:48 PM,08/05/2011 10:38:32 PM,08/05/2011 10:38:40 PM,08/05/2011 10:40:29 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/05/2011 11:08:28 PM,1400 Block of 17TH AVE,SF,94122,B08,22,7371,3,3,3,false,,1,ENGINE,5,8,7,Inner Sunset,"(37.7608577152876, -122.474858703379)",112170390-E40 -122630079,78,12086785,Medical Incident,09/19/2012,09/19/2012,09/19/2012 08:50:05 AM,09/19/2012 08:51:20 AM,09/19/2012 08:51:49 AM,09/19/2012 08:52:00 AM,09/19/2012 09:01:04 AM,09/19/2012 09:11:48 AM,09/19/2012 09:29:27 AM,Code 2 Transport,09/19/2012 10:13:37 AM,600 Block of AVENUE M,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8258558602509, -122.367277592222)",122630079-78 -160431842,62,16017310,Medical Incident,02/12/2016,02/12/2016,02/12/2016 01:29:33 PM,02/12/2016 01:29:33 PM,02/12/2016 01:30:31 PM,02/12/2016 01:30:46 PM,02/12/2016 01:40:45 PM,02/12/2016 01:54:26 PM,02/12/2016 02:10:07 PM,Code 2 Transport,02/12/2016 03:04:30 PM,MYRTLE ST/LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7856417088638, -122.417996270411)",160431842-62 -121150001,66,12037999,Medical Incident,04/23/2012,04/23/2012,04/23/2012 11:58:54 PM,04/24/2012 12:00:08 AM,04/24/2012 12:01:05 AM,04/24/2012 12:01:40 AM,04/24/2012 12:15:36 AM,04/24/2012 12:40:00 AM,04/24/2012 12:54:35 AM,Code 2 Transport,04/24/2012 01:39:41 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",121150001-66 -112990280,E10,11099259,Medical Incident,10/26/2011,10/26/2011,10/26/2011 06:07:30 PM,10/26/2011 06:10:31 PM,10/26/2011 06:11:34 PM,10/26/2011 06:12:41 PM,10/26/2011 06:14:50 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 06:28:33 PM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,,1,ENGINE,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",112990280-E10 -111770064,92,11058283,Medical Incident,06/26/2011,06/25/2011,06/26/2011 04:22:34 AM,06/26/2011 04:26:06 AM,06/26/2011 04:26:39 AM,06/26/2011 04:26:48 AM,06/26/2011 04:40:08 AM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Against Medical Advice,06/26/2011 05:58:34 AM,200 Block of 2ND AVE,SF,94118,B07,10,7114,2,2,2,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7840744655349, -122.460134299272)",111770064-92 -160093319,58,16003804,Medical Incident,01/09/2016,01/09/2016,01/09/2016 09:05:58 PM,01/09/2016 09:06:38 PM,01/09/2016 09:10:53 PM,01/09/2016 09:11:02 PM,01/09/2016 09:25:05 PM,01/09/2016 09:45:11 PM,01/09/2016 10:01:49 PM,Code 2 Transport,01/09/2016 10:32:31 PM,500 Block of 35TH AVE,San Francisco,94121,B07,34,7251,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7786310322767, -122.495444578363)",160093319-58 -121340323,93,12044744,Medical Incident,05/13/2012,05/13/2012,05/13/2012 11:43:34 PM,05/13/2012 11:44:01 PM,05/13/2012 11:44:30 PM,04/25/2016 01:58:42 PM,05/13/2012 11:48:20 PM,05/13/2012 11:57:56 PM,05/14/2012 12:23:18 AM,Code 2 Transport,05/14/2012 01:02:42 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",121340323-93 -160610420,84,16024184,Medical Incident,03/01/2016,02/29/2016,03/01/2016 05:57:47 AM,03/01/2016 05:58:35 AM,03/01/2016 05:59:12 AM,03/01/2016 05:59:38 AM,03/01/2016 06:03:47 AM,03/01/2016 06:15:44 AM,03/01/2016 06:22:07 AM,Code 3 Transport,03/01/2016 06:58:47 AM,0 Block of DARTMOUTH ST,San Francisco,94134,B09,42,6367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,9,Portola,"(37.7305890628092, -122.41357463398)",160610420-84 -160573524,70,16022907,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:27:24 PM,02/26/2016 09:29:24 PM,02/26/2016 09:29:36 PM,02/26/2016 09:30:06 PM,02/26/2016 09:37:24 PM,02/26/2016 10:03:33 PM,02/26/2016 10:25:23 PM,Code 2 Transport,02/26/2016 11:17:36 PM,100 Block of NAGLEE AVE,San Francisco,94112,B09,33,8346,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7128915614462, -122.447808078871)",160573524-70 -121320324,T01,12044040,Structure Fire,05/11/2012,05/11/2012,05/11/2012 07:35:04 PM,05/11/2012 07:35:04 PM,05/11/2012 07:35:12 PM,05/11/2012 07:36:30 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 07:38:28 PM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",121320324-T01 -160363730,61,16014433,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:50:36 PM,02/05/2016 08:50:36 PM,02/05/2016 08:50:46 PM,02/05/2016 08:50:46 PM,02/05/2016 08:54:40 PM,02/05/2016 09:11:17 PM,02/05/2016 09:27:09 PM,Code 2 Transport,02/05/2016 09:50:35 PM,MARKET ST/BEALE ST,San Francisco,94105,B99,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Financial District/South Beach,"(37.7924055206042, -122.397383447066)",160363730-61 -113620053,B08,11120141,Structure Fire,12/28/2011,12/27/2011,12/28/2011 06:21:43 AM,12/28/2011 06:23:03 AM,12/28/2011 06:23:22 AM,12/28/2011 06:25:24 AM,12/28/2011 06:28:36 AM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 06:43:07 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,,1,CHIEF,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",113620053-B08 -123170135,AM08,12105462,Medical Incident,11/12/2012,11/12/2012,11/12/2012 11:56:06 AM,11/12/2012 11:57:28 AM,11/12/2012 11:57:38 AM,11/12/2012 11:58:27 AM,11/12/2012 12:05:17 PM,11/12/2012 12:35:28 PM,11/12/2012 01:03:49 PM,Code 2 Transport,11/12/2012 01:45:44 PM,0 Block of SAN PABLO AVE,SF,94127,B08,39,8565,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.73959485255, -122.462100133243)",123170135-AM08 -160712927,77,16028331,Medical Incident,03/11/2016,03/11/2016,03/11/2016 06:39:25 PM,03/11/2016 06:41:03 PM,03/11/2016 06:41:57 PM,03/11/2016 06:42:08 PM,03/11/2016 06:51:10 PM,03/11/2016 07:00:58 PM,03/11/2016 07:20:07 PM,Code 2 Transport,03/11/2016 07:41:25 PM,0 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7844552383777, -122.40891208737)",160712927-77 -140700044,54,14023500,Medical Incident,03/11/2014,03/10/2014,03/11/2014 05:02:48 AM,03/11/2014 05:02:49 AM,03/11/2014 05:03:15 AM,03/11/2014 05:03:34 AM,03/11/2014 05:13:40 AM,03/11/2014 05:29:50 AM,03/11/2014 05:43:04 AM,Code 2 Transport,03/11/2014 05:58:51 AM,1100 Block of FILLMORE ST,,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",140700044-54 -113340143,E22,11110575,Medical Incident,11/30/2011,11/30/2011,11/30/2011 12:20:08 PM,11/30/2011 12:21:38 PM,11/30/2011 12:21:52 PM,04/25/2016 02:01:24 PM,11/30/2011 12:24:54 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/30/2011 12:25:04 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,false,,1,ENGINE,2,8,5,Inner Sunset,"(37.7631968207196, -122.464176094005)",113340143-E22 -160253844,73,16010137,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:04:21 PM,01/25/2016 11:05:22 PM,01/25/2016 11:06:08 PM,01/25/2016 11:06:22 PM,01/25/2016 11:13:09 PM,01/25/2016 11:16:28 PM,01/25/2016 11:26:33 PM,Code 2 Transport,01/26/2016 12:03:52 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160253844-73 -110450337,E08,11015057,Structure Fire,02/14/2011,02/14/2011,02/14/2011 08:01:52 PM,02/14/2011 08:01:52 PM,02/14/2011 08:02:10 PM,02/14/2011 08:04:30 PM,02/14/2011 08:04:54 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 08:05:33 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",110450337-E08 -160273143,KM05,16010816,Medical Incident,01/27/2016,01/27/2016,01/27/2016 06:34:29 PM,01/27/2016 06:34:56 PM,01/27/2016 06:35:12 PM,01/27/2016 06:36:02 PM,01/27/2016 06:39:45 PM,01/27/2016 07:02:06 PM,01/27/2016 07:12:12 PM,Code 2 Transport,01/27/2016 07:38:29 PM,200 Block of 19TH AV,San Francisco,94121,B07,31,7164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7832443396993, -122.478442077915)",160273143-KM05 -140620381,B04,14021123,Alarms,03/03/2014,03/03/2014,03/03/2014 11:35:00 PM,03/03/2014 11:36:19 PM,03/03/2014 11:38:37 PM,03/03/2014 11:39:44 PM,03/03/2014 11:41:37 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Fire,03/03/2014 11:50:13 PM,1300 Block of GOUGH ST,SF,94109,B04,3,3256,3,3,3,false,Alarm,1,CHIEF,1,4,2,Western Addition,"(37.7857740861424, -122.424704369163)",140620381-B04 -132950166,53,13100299,Medical Incident,10/22/2013,10/22/2013,10/22/2013 01:03:27 PM,10/22/2013 01:04:29 PM,10/22/2013 01:04:50 PM,10/22/2013 01:04:58 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/22/2013 01:14:40 PM,25TH ST/HAMPSHIRE ST,SF,94110,B10,9,2624,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7513102329158, -122.407139008213)",132950166-53 -102300242,T08,10072435,Structure Fire,08/18/2010,08/18/2010,08/18/2010 03:50:34 PM,08/18/2010 03:50:34 PM,08/18/2010 03:50:42 PM,08/18/2010 03:51:48 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/18/2010 03:54:12 PM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7772727011897, -122.404070256526)",102300242-T08 -131250014,AM18,13042093,Medical Incident,05/05/2013,05/04/2013,05/05/2013 12:47:05 AM,05/05/2013 12:50:23 AM,05/05/2013 12:50:30 AM,05/05/2013 12:51:37 AM,05/05/2013 12:56:22 AM,05/05/2013 01:03:33 AM,05/05/2013 01:25:53 AM,Code 2 Transport,05/05/2013 01:55:06 AM,REVERE AV/JENNINGS ST,SF,94124,B10,17,6571,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7295427123834, -122.38641847796)",131250014-AM18 -122310063,AM16,12076502,Medical Incident,08/18/2012,08/17/2012,08/18/2012 07:01:19 AM,08/18/2012 07:03:00 AM,08/18/2012 07:03:12 AM,08/18/2012 07:03:47 AM,08/18/2012 07:05:42 AM,08/18/2012 07:28:05 AM,08/18/2012 07:55:14 AM,Code 2 Transport,08/18/2012 07:55:18 AM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",122310063-AM16 -131440118,E42,13048772,Traffic Collision,05/24/2013,05/24/2013,05/24/2013 10:35:40 AM,05/24/2013 10:36:35 AM,05/24/2013 10:38:19 AM,05/24/2013 10:38:42 AM,05/24/2013 10:40:40 AM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Other,05/24/2013 11:00:20 AM,SAN BRUNO AV/GAVEN ST,SF,94134,B10,42,6366,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7340177516286, -122.406515383742)",131440118-E42 -160751475,81,16029685,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:39:56 AM,03/15/2016 11:42:52 AM,03/15/2016 11:43:05 AM,03/15/2016 11:43:16 AM,03/15/2016 11:50:37 AM,03/15/2016 12:11:39 PM,03/15/2016 12:16:53 PM,Code 2 Transport,03/15/2016 12:52:14 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160751475-81 -103050281,E06,10097566,Medical Incident,11/01/2010,11/01/2010,11/01/2010 03:42:30 PM,11/01/2010 03:44:11 PM,11/01/2010 03:45:36 PM,11/01/2010 03:46:25 PM,11/01/2010 03:48:08 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/01/2010 04:34:11 PM,3800 Block of 18TH ST,SF,94114,B02,6,5421,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",103050281-E06 -130100274,AM12,13003502,Odor (Strange / Unknown),01/10/2013,01/10/2013,01/10/2013 06:26:46 PM,01/10/2013 06:27:53 PM,01/10/2013 06:29:15 PM,01/10/2013 06:30:20 PM,01/10/2013 06:32:27 PM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,No Merit,01/10/2013 06:43:02 PM,1100 Block of PLYMOUTH AVE,SF,94112,B09,15,8473,3,3,3,false,Alarm,1,PRIVATE,3,9,7,Oceanview/Merced/Ingleside,"(37.7228664396788, -122.456076821755)",130100274-AM12 -160270995,87,16010595,Medical Incident,01/27/2016,01/27/2016,01/27/2016 09:27:27 AM,01/27/2016 09:30:09 AM,01/27/2016 09:30:24 AM,01/27/2016 09:30:38 AM,01/27/2016 09:51:05 AM,01/27/2016 10:06:01 AM,01/27/2016 10:48:10 AM,Code 2 Transport,01/27/2016 11:28:11 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160270995-87 -102850293,61,10090818,Medical Incident,10/12/2010,10/12/2010,10/12/2010 03:07:51 PM,10/12/2010 03:08:10 PM,10/12/2010 03:09:13 PM,10/12/2010 03:09:53 PM,10/12/2010 03:13:05 PM,10/12/2010 03:35:51 PM,10/12/2010 04:10:24 PM,Code 2 Transport,10/12/2010 04:12:26 PM,POLK ST/OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",102850293-61 -110980330,93,11032614,Medical Incident,04/08/2011,04/08/2011,04/08/2011 05:38:50 PM,04/08/2011 05:38:59 PM,04/08/2011 05:39:07 PM,04/08/2011 05:39:19 PM,04/08/2011 05:42:49 PM,04/08/2011 05:54:42 PM,04/08/2011 06:35:47 PM,Code 2 Transport,04/08/2011 06:50:59 PM,7TH AV/IRVING ST,SF,94122,B08,22,7332,3,3,3,true,,1,MEDIC,2,7,5,Inner Sunset,"(37.7641308708366, -122.46417202271)",110980330-93 -130690201,B01,13023058,Structure Fire,03/10/2013,03/10/2013,03/10/2013 03:04:42 PM,03/10/2013 03:05:12 PM,03/10/2013 03:05:27 PM,03/10/2013 03:06:31 PM,03/10/2013 03:13:08 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 03:33:26 PM,1300 Block of FOLSOM ST,SF,94103,B02,36,2343,3,3,3,false,Fire,1,CHIEF,10,2,6,South of Market,"(37.7730095075911, -122.41247584547)",130690201-B01 -140560045,68,14018788,Medical Incident,02/25/2014,02/24/2014,02/25/2014 04:47:23 AM,02/25/2014 04:49:16 AM,02/25/2014 04:51:00 AM,02/25/2014 04:51:32 AM,02/25/2014 05:11:38 AM,02/25/2014 05:11:50 AM,02/25/2014 05:22:17 AM,Code 2 Transport,02/25/2014 05:55:44 AM,0 Block of GEARY ST,SF,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",140560045-68 -160330389,64,16012844,Medical Incident,02/02/2016,02/01/2016,02/02/2016 04:54:28 AM,02/02/2016 04:55:48 AM,02/02/2016 04:56:49 AM,02/02/2016 04:56:59 AM,02/02/2016 05:05:47 AM,02/02/2016 05:24:46 AM,02/02/2016 05:31:58 AM,Code 2 Transport,02/02/2016 05:58:28 AM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",160330389-64 -160783912,81,16031206,Medical Incident,03/18/2016,03/18/2016,03/18/2016 10:18:42 PM,03/18/2016 10:20:48 PM,03/18/2016 10:21:02 PM,03/18/2016 10:21:15 PM,03/18/2016 10:25:31 PM,03/18/2016 10:50:47 PM,03/18/2016 11:32:32 PM,Code 2 Transport,03/19/2016 12:02:56 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160783912-81 -102650273,T02,10083960,Structure Fire,09/22/2010,09/22/2010,09/22/2010 06:43:52 PM,09/22/2010 06:44:23 PM,09/22/2010 06:44:54 PM,09/22/2010 06:46:33 PM,09/22/2010 06:49:29 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 06:49:37 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,TRUCK,5,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",102650273-T02 -132210258,T03,13074689,Medical Incident,08/09/2013,08/09/2013,08/09/2013 04:59:34 PM,08/09/2013 05:01:49 PM,08/09/2013 05:04:29 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 05:06:09 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132210258-T03 -121350196,E01,12044898,Medical Incident,05/14/2012,05/14/2012,05/14/2012 01:13:12 PM,05/14/2012 01:15:11 PM,05/14/2012 01:15:26 PM,04/25/2016 01:58:41 PM,05/14/2012 01:20:45 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 01:23:58 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",121350196-E01 -131460262,E25,13049577,Water Rescue,05/26/2013,05/26/2013,05/26/2013 03:11:44 PM,05/26/2013 03:14:28 PM,05/26/2013 03:16:05 PM,05/26/2013 03:17:42 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 03:37:37 PM,3200 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,false,Fire,1,ENGINE,13,None,None,None,"(37.7475912199361, -122.387182780653)",131460262-E25 -112700326,E13,11089338,Medical Incident,09/27/2011,09/27/2011,09/27/2011 08:06:27 PM,09/27/2011 08:06:47 PM,09/27/2011 08:07:16 PM,09/27/2011 08:08:21 PM,09/27/2011 08:09:42 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/27/2011 08:26:55 PM,1000 Block of MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.7986889731495, -122.404026438275)",112700326-E13 -131390225,RC3,13047031,Medical Incident,05/19/2013,05/19/2013,05/19/2013 12:45:31 PM,05/19/2013 12:46:37 PM,05/19/2013 12:49:03 PM,05/19/2013 12:50:15 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 12:52:53 PM,2500 Block of 38TH AVE,SF,94116,B08,18,7617,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7393527217346, -122.495923100907)",131390225-RC3 -160553876,72,16022162,Medical Incident,02/24/2016,02/24/2016,02/24/2016 09:25:52 PM,02/24/2016 09:26:06 PM,02/24/2016 09:26:24 PM,02/24/2016 09:26:34 PM,02/24/2016 09:31:22 PM,02/24/2016 09:44:09 PM,02/24/2016 09:55:29 PM,Code 2 Transport,02/24/2016 10:31:03 PM,600 Block of RUSSIA AV,San Francisco,94112,B09,43,6137,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7190602135406, -122.432020660339)",160553876-72 -130420123,83,13014274,Medical Incident,02/11/2013,02/11/2013,02/11/2013 10:30:12 AM,02/11/2013 10:32:33 AM,02/11/2013 10:33:02 AM,02/11/2013 10:33:10 AM,02/11/2013 10:41:42 AM,02/11/2013 10:48:13 AM,02/11/2013 11:12:06 AM,Code 2 Transport,02/11/2013 11:49:05 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964729931252, -122.410712303092)",130420123-83 -111300369,E38,11043121,Medical Incident,05/10/2011,05/10/2011,05/10/2011 09:58:16 PM,05/10/2011 09:59:27 PM,05/10/2011 10:00:24 PM,05/10/2011 10:01:37 PM,05/10/2011 10:02:38 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 10:13:32 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",111300369-E38 -121330358,B02,12044426,Medical Incident,05/12/2012,05/12/2012,05/12/2012 10:47:57 PM,05/12/2012 10:50:55 PM,05/12/2012 10:55:52 PM,05/12/2012 11:01:53 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 11:02:35 PM,200 Block of CAPP ST,SF,94110,B02,7,5246,2,E,3,false,Non Life-threatening,1,CHIEF,4,2,9,Mission,"(37.7627024067539, -122.418417366729)",121330358-B02 -132190420,B10,13074154,Structure Fire,08/07/2013,08/07/2013,08/07/2013 11:48:48 PM,08/07/2013 11:49:54 PM,08/07/2013 11:50:05 PM,08/07/2013 11:50:50 PM,08/07/2013 11:54:03 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,Other,08/07/2013 11:55:33 PM,700 Block of MARIPOSA ST,SF,94107,B03,29,2436,3,3,3,false,Alarm,1,CHIEF,2,3,10,Potrero Hill,"(37.7641163227718, -122.391293792303)",132190420-B10 -132680340,RA48,13091115,Traffic Collision,09/25/2013,09/25/2013,09/25/2013 06:31:42 PM,09/25/2013 06:34:03 PM,09/25/2013 06:39:45 PM,09/25/2013 06:45:37 PM,09/25/2013 06:52:07 PM,09/25/2013 07:12:11 PM,09/25/2013 07:57:19 PM,Code 2 Transport,09/25/2013 08:29:36 PM,FREMONT ST/HOWARD ST,SF,94105,B03,35,2124,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7892346992583, -122.395150932922)",132680340-RA48 -123570099,T01,12119440,Structure Fire,12/22/2012,12/22/2012,12/22/2012 08:55:05 AM,12/22/2012 08:55:06 AM,12/22/2012 08:55:21 AM,12/22/2012 08:57:10 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Fire,12/22/2012 08:59:45 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",123570099-T01 -130980198,T05,13032861,Citizen Assist / Service Call,04/08/2013,04/08/2013,04/08/2013 11:45:03 AM,04/08/2013 11:46:15 AM,04/08/2013 11:47:04 AM,04/08/2013 11:48:05 AM,04/08/2013 11:51:47 AM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Fire,04/08/2013 11:57:06 AM,0 Block of CHURCH ST,SF,94114,B02,6,3525,3,3,3,false,Alarm,1,TRUCK,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",130980198-T05 -140600320,B10,14020375,Outside Fire,03/01/2014,03/01/2014,03/01/2014 06:45:03 PM,03/01/2014 06:46:29 PM,03/01/2014 06:47:42 PM,03/01/2014 06:48:47 PM,03/01/2014 06:52:23 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Fire,03/01/2014 07:11:25 PM,2200 Block of MCKINNON AVE,SF,94124,B10,9,6414,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7426900432691, -122.401170881941)",140600320-B10 -113060233,E03,11101690,Alarms,11/02/2011,11/02/2011,11/02/2011 02:25:42 PM,11/02/2011 02:26:16 PM,11/02/2011 02:26:28 PM,11/02/2011 02:27:44 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/02/2011 02:30:50 PM,300 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,2,1,3,Tenderloin,"(37.7873084363522, -122.409061356434)",113060233-E03 -160400059,KM07,16015846,Medical Incident,02/09/2016,02/08/2016,02/09/2016 12:35:32 AM,02/09/2016 12:36:19 AM,02/09/2016 12:36:46 AM,02/09/2016 12:37:19 AM,02/09/2016 12:41:00 AM,02/09/2016 01:05:27 AM,02/09/2016 01:09:41 AM,Code 3 Transport,02/09/2016 01:55:02 AM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",160400059-KM07 -121600061,E10,12052825,Medical Incident,06/08/2012,06/07/2012,06/08/2012 06:51:14 AM,06/08/2012 06:51:45 AM,06/08/2012 06:52:08 AM,06/08/2012 06:55:12 AM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/08/2012 06:55:42 AM,200 Block of 21ST AVE,SF,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7831476181283, -122.480588567897)",121600061-E10 -130610164,55,13020446,Medical Incident,03/02/2013,03/02/2013,03/02/2013 11:35:56 AM,03/02/2013 11:40:00 AM,03/02/2013 11:40:30 AM,03/02/2013 11:40:44 AM,03/02/2013 12:02:56 PM,03/02/2013 12:16:24 PM,03/02/2013 12:37:34 PM,Code 2 Transport,03/02/2013 01:06:29 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",130610164-55 -122470042,E05,12081592,Medical Incident,09/03/2012,09/02/2012,09/03/2012 03:43:04 AM,09/03/2012 03:44:35 AM,09/03/2012 03:45:01 AM,09/03/2012 03:46:30 AM,09/03/2012 03:48:34 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 03:53:55 AM,GEARY BL/FILLMORE ST,SF,94115,B04,5,3541,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",122470042-E05 -113140186,T01,11104332,Alarms,11/10/2011,11/10/2011,11/10/2011 01:25:59 PM,11/10/2011 01:27:15 PM,11/10/2011 01:27:51 PM,11/10/2011 01:29:46 PM,11/10/2011 01:38:13 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 01:38:16 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,3,3,false,,1,TRUCK,3,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",113140186-T01 -160582604,74,16023204,Medical Incident,02/27/2016,02/27/2016,02/27/2016 05:02:17 PM,02/27/2016 05:03:50 PM,02/27/2016 05:03:58 PM,02/27/2016 05:04:43 PM,02/27/2016 05:12:22 PM,02/27/2016 05:32:07 PM,02/27/2016 05:37:33 PM,Code 2 Transport,02/27/2016 06:12:21 PM,800 Block of JUDAH ST,San Francisco,94122,B08,22,7347,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7620593970413, -122.471008400176)",160582604-74 -110910065,E10,11030049,Alarms,04/01/2011,03/31/2011,04/01/2011 05:00:01 AM,04/01/2011 05:03:14 AM,04/01/2011 05:03:27 AM,04/01/2011 05:04:42 AM,04/01/2011 05:06:55 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 05:20:48 AM,2900 Block of JACKSON ST,SF,94115,B04,10,4231,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7912587185112, -122.443641577281)",110910065-E10 -120130170,KM10,12004432,Medical Incident,01/13/2012,01/13/2012,01/13/2012 01:29:55 PM,01/13/2012 01:31:46 PM,01/13/2012 01:32:20 PM,01/13/2012 01:33:40 PM,01/13/2012 01:36:28 PM,01/13/2012 01:49:56 PM,01/13/2012 02:03:31 PM,Code 2 Transport,01/13/2012 02:51:05 PM,0 Block of 6TH AVE,SF,94118,B07,31,7126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Inner Richmond,"(37.7875271472845, -122.464686124564)",120130170-KM10 -113070246,E01,11102040,Medical Incident,11/03/2011,11/03/2011,11/03/2011 03:21:14 PM,11/03/2011 03:21:55 PM,11/03/2011 03:22:17 PM,11/03/2011 03:23:11 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/03/2011 03:26:02 PM,700 Block of MISSION ST,SF,94103,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",113070246-E01 -131580337,AM18,13053745,Medical Incident,06/07/2013,06/07/2013,06/07/2013 06:26:56 PM,06/07/2013 06:28:04 PM,06/07/2013 07:18:56 PM,04/25/2016 01:52:24 PM,06/07/2013 07:35:37 PM,06/07/2013 07:44:04 PM,06/07/2013 08:05:13 PM,Code 2 Transport,06/07/2013 08:25:49 PM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",131580337-AM18 -160911832,53,16036080,Medical Incident,03/31/2016,03/31/2016,03/31/2016 01:30:03 PM,03/31/2016 01:30:55 PM,03/31/2016 01:31:47 PM,03/31/2016 01:31:59 PM,03/31/2016 01:39:46 PM,03/31/2016 01:58:26 PM,03/31/2016 02:35:16 PM,Code 2 Transport,03/31/2016 03:15:30 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",160911832-53 -160140305,60,16005425,Medical Incident,01/14/2016,01/13/2016,01/14/2016 03:39:54 AM,01/14/2016 03:44:12 AM,01/14/2016 03:45:26 AM,01/14/2016 03:46:56 AM,01/14/2016 03:50:14 AM,01/14/2016 04:07:47 AM,01/14/2016 04:11:43 AM,Code 2 Transport,01/14/2016 04:51:44 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160140305-60 -160013807,AM24,16000530,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:28:11 PM,01/01/2016 10:29:26 PM,01/01/2016 10:29:59 PM,01/01/2016 10:30:51 PM,01/01/2016 10:34:50 PM,01/01/2016 10:46:17 PM,01/01/2016 11:11:53 PM,Code 2 Transport,01/01/2016 11:38:23 PM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",160013807-AM24 -133250275,82,13110456,Medical Incident,11/21/2013,11/21/2013,11/21/2013 04:54:54 PM,11/21/2013 04:56:38 PM,11/21/2013 04:57:00 PM,11/21/2013 04:57:37 PM,11/21/2013 05:03:52 PM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Patient Declined Transport,11/21/2013 05:13:13 PM,1600 Block of 46TH AVE,SF,94122,B08,23,7661,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7557590650712, -122.505669034322)",133250275-82 -160900320,AM22,16035567,Medical Incident,03/30/2016,03/29/2016,03/30/2016 03:27:42 AM,03/30/2016 03:30:13 AM,03/30/2016 03:30:23 AM,03/30/2016 03:31:08 AM,03/30/2016 03:35:43 AM,03/30/2016 04:12:59 AM,03/30/2016 04:13:07 AM,Code 2 Transport,03/30/2016 04:45:50 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160900320-AM22 -140770367,94,14026227,Medical Incident,03/18/2014,03/18/2014,03/18/2014 10:25:54 PM,03/18/2014 10:26:38 PM,03/18/2014 10:29:24 PM,03/18/2014 10:29:24 PM,03/18/2014 10:30:13 PM,03/18/2014 10:44:19 PM,03/18/2014 10:57:09 PM,Code 2 Transport,03/18/2014 11:18:56 PM,0 Block of CASHMERE ST,SAN FRANCISCO,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",140770367-94 -113560111,T16,11118136,Alarms,12/22/2011,12/22/2011,12/22/2011 09:29:02 AM,12/22/2011 09:30:50 AM,12/22/2011 09:31:00 AM,12/22/2011 09:32:27 AM,12/22/2011 09:39:08 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/22/2011 09:40:24 AM,2600 Block of DIVISADERO ST,SF,94115,B04,16,4164,3,3,3,false,,1,TRUCK,3,4,2,Pacific Heights,"(37.7939198042244, -122.441548284941)",113560111-T16 -140830298,96,14028092,Medical Incident,03/24/2014,03/24/2014,03/24/2014 07:56:34 PM,03/24/2014 07:57:19 PM,03/24/2014 07:57:50 PM,03/24/2014 07:58:21 PM,03/24/2014 08:02:39 PM,03/24/2014 08:18:44 PM,03/24/2014 08:46:19 PM,Code 2 Transport,03/24/2014 09:13:19 PM,0 Block of PERRY ST,SAN FRANCISCO,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",140830298-96 -113530195,E31,11117204,Medical Incident,12/19/2011,12/19/2011,12/19/2011 01:42:00 PM,12/19/2011 01:43:09 PM,12/19/2011 01:43:15 PM,12/19/2011 01:44:00 PM,12/19/2011 01:46:19 PM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 01:56:55 PM,900 Block of CLEMENT ST,SF,94118,B07,31,7141,3,3,3,false,,1,ENGINE,1,7,1,Inner Richmond,"(37.7826715765978, -122.469233229833)",113530195-E31 -113290169,E07,11109157,Medical Incident,11/25/2011,11/25/2011,11/25/2011 03:33:29 PM,11/25/2011 03:34:24 PM,11/25/2011 03:34:50 PM,11/25/2011 03:35:59 PM,11/25/2011 03:36:53 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 04:02:36 PM,2300 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",113290169-E07 -140160239,E28,14005514,Medical Incident,01/16/2014,01/16/2014,01/16/2014 02:42:40 PM,01/16/2014 02:44:15 PM,01/16/2014 02:44:49 PM,01/16/2014 02:46:20 PM,01/16/2014 02:48:16 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/16/2014 03:21:15 PM,200 Block of CHESTNUT ST,SF,94133,B01,28,1254,,3,3,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8044102456887, -122.407535183574)",140160239-E28 -122110019,55,12069948,Medical Incident,07/29/2012,07/28/2012,07/29/2012 01:36:26 AM,07/29/2012 01:39:38 AM,07/29/2012 01:39:45 AM,07/29/2012 01:39:57 AM,07/29/2012 01:47:45 AM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Patient Declined Transport,07/29/2012 01:56:06 AM,600 Block of SPRUCE ST,SF,94118,B05,10,4374,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.782894976739, -122.453342258883)",122110019-55 -111100131,E03,11036269,Medical Incident,04/20/2011,04/20/2011,04/20/2011 09:58:26 AM,04/20/2011 09:58:45 AM,04/20/2011 09:59:21 AM,04/20/2011 09:59:47 AM,04/20/2011 10:04:57 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 10:13:16 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",111100131-E03 -123560301,E03,12119250,Medical Incident,12/21/2012,12/21/2012,12/21/2012 06:07:40 PM,12/21/2012 06:08:45 PM,12/21/2012 06:09:41 PM,12/21/2012 06:10:42 PM,12/21/2012 06:11:50 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 06:24:46 PM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",123560301-E03 -130930275,KM01,13031216,Medical Incident,04/03/2013,04/03/2013,04/03/2013 05:24:44 PM,04/03/2013 05:26:50 PM,04/03/2013 05:28:14 PM,04/03/2013 05:29:52 PM,04/03/2013 05:32:18 PM,04/03/2013 06:00:02 PM,04/03/2013 06:18:52 PM,Code 3 Transport,04/03/2013 06:41:12 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",130930275-KM01 -102670035,E05,10084372,Alarms,09/24/2010,09/23/2010,09/24/2010 03:14:18 AM,09/24/2010 03:15:23 AM,09/24/2010 03:15:49 AM,09/24/2010 03:17:19 AM,09/24/2010 03:18:58 AM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/24/2010 03:23:07 AM,1000 Block of EDDY ST,SF,94109,B02,5,3262,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",102670035-E05 -103520235,61,10113009,Medical Incident,12/18/2010,12/18/2010,12/18/2010 02:48:52 PM,12/18/2010 02:50:49 PM,12/18/2010 02:51:13 PM,12/18/2010 02:51:33 PM,12/18/2010 02:57:32 PM,12/18/2010 03:11:29 PM,12/18/2010 03:32:25 PM,Code 2 Transport,12/18/2010 03:58:33 PM,COLUMBUS AV/GREENWICH ST,SF,94133,B01,28,1423,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.8019306357162, -122.412541279347)",103520235-61 -130240158,E05,13008266,Medical Incident,01/24/2013,01/24/2013,01/24/2013 10:54:30 AM,01/24/2013 10:56:19 AM,01/24/2013 10:57:22 AM,01/24/2013 11:00:09 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 11:23:53 AM,0 Block of QUICKSTEP LN,SF,94115,B04,5,3365,3,1,2,true,Non Life-threatening,1,ENGINE,2,2,5,Western Addition,"(37.7832767200998, -122.428138545877)",130240158-E05 -132380164,B02,13080270,Medical Incident,08/26/2013,08/26/2013,08/26/2013 11:10:09 AM,08/26/2013 11:11:42 AM,08/26/2013 11:12:25 AM,08/26/2013 11:13:19 AM,08/26/2013 11:16:07 AM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Other,08/26/2013 11:16:20 AM,300 Block of TURK ST,SF,94102,B02,3,1554,A,A,2,false,Potentially Life-Threatening,1,CHIEF,2,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",132380164-B02 -160283401,63,16011220,Medical Incident,01/28/2016,01/28/2016,01/28/2016 07:27:37 PM,01/28/2016 07:29:10 PM,01/28/2016 07:29:46 PM,01/28/2016 07:29:59 PM,01/28/2016 07:40:54 PM,01/28/2016 08:02:36 PM,01/28/2016 08:11:17 PM,Code 2 Transport,01/28/2016 08:45:28 PM,200 Block of SACRAMENTO ST,San Francisco,94111,B01,13,1141,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7943049802149, -122.398372284213)",160283401-63 -160863760,AM14,16034377,Medical Incident,03/26/2016,03/26/2016,03/26/2016 10:19:46 PM,03/26/2016 10:21:44 PM,03/26/2016 10:22:10 PM,03/26/2016 10:23:09 PM,03/26/2016 10:29:37 PM,03/26/2016 10:41:30 PM,03/26/2016 10:50:33 PM,Code 3 Transport,03/26/2016 11:44:10 PM,600 Block of FILBERT ST,San Francisco,94133,B01,28,1351,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8013244963183, -122.410204322135)",160863760-AM14 -132490210,82,13084046,Traffic Collision,09/06/2013,09/06/2013,09/06/2013 02:12:55 PM,09/06/2013 02:12:55 PM,09/06/2013 02:13:26 PM,09/06/2013 02:13:58 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/06/2013 02:21:19 PM,FELL ST/MASONIC AV,SF,94117,B05,21,4356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",132490210-82 -110490018,82,11016055,Medical Incident,02/18/2011,02/17/2011,02/18/2011 01:08:31 AM,02/18/2011 01:10:49 AM,02/18/2011 01:18:23 AM,02/18/2011 01:18:47 AM,02/18/2011 01:33:22 AM,02/18/2011 01:53:11 AM,02/18/2011 02:05:00 AM,Code 2 Transport,02/18/2011 02:48:21 AM,0 Block of KAREN CT,SF,94134,B10,42,6331,2,2,2,true,,1,MEDIC,1,10,9,Portola,"(37.7234814213797, -122.4068026167)",110490018-82 -122420201,E09,12080058,Medical Incident,08/29/2012,08/29/2012,08/29/2012 01:55:23 PM,08/29/2012 01:55:42 PM,08/29/2012 01:55:59 PM,08/29/2012 01:57:32 PM,08/29/2012 01:56:49 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/29/2012 02:21:39 PM,1500 Block of TREAT AVE,SF,94110,B06,9,5665,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.74569101483, -122.412507178665)",122420201-E09 -160092500,66,16003718,Medical Incident,01/09/2016,01/09/2016,01/09/2016 04:55:16 PM,01/09/2016 04:55:46 PM,01/09/2016 04:56:01 PM,01/09/2016 04:56:16 PM,01/09/2016 05:09:20 PM,01/09/2016 05:09:27 PM,01/09/2016 05:22:33 PM,Code 2 Transport,01/09/2016 06:13:56 PM,500 Block of 3RD ST,San Francisco,94107,B03,8,2173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7805661978095, -122.394799124177)",160092500-66 -130590332,E15,13019936,Medical Incident,02/28/2013,02/28/2013,02/28/2013 08:46:16 PM,02/28/2013 08:47:05 PM,02/28/2013 08:47:28 PM,02/28/2013 08:48:55 PM,02/28/2013 08:51:50 PM,04/25/2016 01:54:04 PM,04/25/2016 01:54:04 PM,Other,02/28/2013 09:06:20 PM,300 Block of COLON AVE,SF,94127,B09,15,8522,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7318075852003, -122.456786902063)",130590332-E15 -103200185,87,10102558,Medical Incident,11/16/2010,11/16/2010,11/16/2010 12:22:58 PM,11/16/2010 12:23:26 PM,11/16/2010 12:23:42 PM,11/16/2010 12:25:43 PM,11/16/2010 12:29:40 PM,11/16/2010 12:50:02 PM,11/16/2010 12:58:51 PM,Code 2 Transport,11/16/2010 01:47:32 PM,200 Block of HARBOR RD,SF,94124,B10,17,6627,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",103200185-87 -160840740,KM08,16033279,Medical Incident,03/24/2016,03/24/2016,03/24/2016 08:07:08 AM,03/24/2016 08:09:07 AM,03/24/2016 08:09:53 AM,03/24/2016 08:11:28 AM,03/24/2016 08:31:28 AM,03/24/2016 08:45:18 AM,03/24/2016 09:07:22 AM,Code 2 Transport,03/24/2016 09:46:05 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160840740-KM08 -122540236,E21,12084008,Structure Fire,09/10/2012,09/10/2012,09/10/2012 03:53:48 PM,09/10/2012 03:53:49 PM,09/10/2012 03:53:58 PM,09/10/2012 03:54:17 PM,09/10/2012 03:56:32 PM,04/25/2016 01:56:50 PM,04/25/2016 01:56:50 PM,Other,09/10/2012 04:04:54 PM,400 Block of STANYAN ST,SF,94117,B05,21,455,3,3,3,false,Alarm,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",122540236-E21 -131280042,KM07,13043161,Medical Incident,05/08/2013,05/07/2013,05/08/2013 03:36:44 AM,05/08/2013 03:38:32 AM,05/08/2013 03:38:49 AM,05/08/2013 03:39:52 AM,05/08/2013 03:41:52 AM,05/08/2013 04:02:23 AM,05/08/2013 04:05:24 AM,Code 2 Transport,05/08/2013 04:33:15 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",131280042-KM07 -110130354,E38,11004465,Vehicle Fire,01/13/2011,01/13/2011,01/13/2011 08:25:02 PM,01/13/2011 08:25:57 PM,01/13/2011 08:26:05 PM,01/13/2011 08:26:46 PM,01/13/2011 08:27:57 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Fire,01/13/2011 08:31:51 PM,CALIFORNIA ST/LAGUNA ST,SF,94109,B04,38,3362,3,3,3,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7895337395648, -122.428905310397)",110130354-E38 -160293866,68,16011603,Medical Incident,01/29/2016,01/29/2016,01/29/2016 11:15:38 PM,01/29/2016 11:18:49 PM,01/29/2016 11:19:11 PM,01/29/2016 11:19:20 PM,01/29/2016 11:33:35 PM,01/29/2016 11:46:59 PM,01/30/2016 12:03:07 AM,Code 2 Transport,01/30/2016 12:43:28 AM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",160293866-68 -120280048,E33,12009292,Medical Incident,01/28/2012,01/27/2012,01/28/2012 03:00:26 AM,01/28/2012 03:01:20 AM,01/28/2012 03:01:40 AM,01/28/2012 03:06:32 AM,01/28/2012 03:07:49 AM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/28/2012 03:14:04 AM,200 Block of LOBOS ST,SF,94112,B09,33,8415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7149510870481, -122.460827575743)",120280048-E33 -121510040,E03,12049926,Medical Incident,05/30/2012,05/29/2012,05/30/2012 03:57:55 AM,05/30/2012 03:58:39 AM,05/30/2012 03:59:00 AM,05/30/2012 04:00:41 AM,05/30/2012 04:02:52 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/30/2012 04:13:03 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",121510040-E03 -132230241,B08,13075368,Outside Fire,08/11/2013,08/11/2013,08/11/2013 03:49:45 PM,08/11/2013 03:51:28 PM,08/11/2013 03:52:19 PM,08/11/2013 03:53:26 PM,08/11/2013 03:57:29 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 04:26:45 PM,25TH AV/MARTIN LUTHER KING DR,SF,94122,B08,22,7452,3,3,3,false,Fire,1,CHIEF,2,7,1,Golden Gate Park,"(37.76677018548, -122.482371855409)",132230241-B08 -132820388,RC1,13096136,Medical Incident,10/09/2013,10/09/2013,10/09/2013 09:38:07 PM,10/09/2013 09:39:16 PM,10/09/2013 09:39:28 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/09/2013 09:46:17 PM,200 Block of JONES ST,SF,94102,B03,1,1456,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",132820388-RC1 -111930142,E02,11063684,Medical Incident,07/12/2011,07/12/2011,07/12/2011 11:13:26 AM,07/12/2011 11:14:23 AM,07/12/2011 11:16:16 AM,07/12/2011 11:17:42 AM,07/12/2011 11:20:10 AM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,No Merit,07/12/2011 11:29:12 AM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8070220097095, -122.418095295202)",111930142-E02 -110210341,E07,11007091,Medical Incident,01/21/2011,01/21/2011,01/21/2011 10:23:32 PM,01/21/2011 10:24:23 PM,01/21/2011 10:25:17 PM,04/25/2016 02:06:29 PM,01/21/2011 10:26:39 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/21/2011 10:29:44 PM,700 Block of VALENCIA ST,SF,94110,B06,7,5434,3,3,3,true,,1,ENGINE,2,6,8,Mission,"(37.760896938598, -122.421570792932)",110210341-E07 -140290321,RS1,14010006,Structure Fire,01/29/2014,01/29/2014,01/29/2014 07:30:54 PM,01/29/2014 07:31:37 PM,01/29/2014 07:32:14 PM,01/29/2014 07:33:54 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/29/2014 07:35:52 PM,600 Block of 41ST AVE,SF,94121,B07,34,7263,3,3,3,false,Alarm,1,RESCUE SQUAD,10,7,1,Outer Richmond,"(37.7764556121722, -122.501596303357)",140290321-RS1 -160461287,82,16018466,Traffic Collision,02/15/2016,02/15/2016,02/15/2016 11:08:53 AM,02/15/2016 11:08:53 AM,02/15/2016 11:10:45 AM,02/15/2016 11:11:12 AM,02/15/2016 11:13:52 AM,02/15/2016 11:33:07 AM,02/15/2016 11:40:47 AM,Code 3 Transport,02/15/2016 12:29:27 PM,ELLINGTON AV/MOUNT VERNON AV,San Francisco,94112,B09,43,6176,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7150420552704, -122.443255963332)",160461287-82 -140900097,T16,14030224,Structure Fire,03/31/2014,03/31/2014,03/31/2014 08:51:33 AM,03/31/2014 08:54:36 AM,03/31/2014 08:55:15 AM,03/31/2014 08:56:18 AM,03/31/2014 09:01:05 AM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Fire,03/31/2014 09:12:50 AM,2600 Block of GREEN ST,SAN FRANCISCO,94123,B04,16,4225,3,3,3,false,Alarm,1,TRUCK,5,4,2,Marina,"(37.7952685164754, -122.442748791929)",140900097-T16 -111460157,T15,11048460,Structure Fire,05/26/2011,05/26/2011,05/26/2011 12:53:23 PM,05/26/2011 12:54:03 PM,05/26/2011 12:54:21 PM,05/26/2011 12:55:53 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,05/26/2011 12:59:15 PM,5700 Block of MISSION ST,SF,94112,B09,33,6212,3,3,3,false,,1,TRUCK,9,9,11,Outer Mission,"(37.7098635927288, -122.449729173956)",111460157-T15 -120570061,T14,12018703,Structure Fire,02/26/2012,02/25/2012,02/26/2012 03:20:35 AM,02/26/2012 03:20:35 AM,02/26/2012 03:20:41 AM,02/26/2012 03:22:40 AM,02/26/2012 03:23:38 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/26/2012 03:23:42 AM,27TH AV/ANZA ST,SF,94121,B07,14,7222,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7780687428375, -122.486737519689)",120570061-T14 -140920317,B01,14031022,Alarms,04/02/2014,04/02/2014,04/02/2014 05:49:15 PM,04/02/2014 05:50:15 PM,04/02/2014 05:50:30 PM,04/02/2014 05:51:26 PM,04/02/2014 05:53:39 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,Fire,04/02/2014 06:26:50 PM,800 Block of KEARNY ST,SAN FRANCISCO,94111,B01,13,1245,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.795777854883, -122.404981817889)",140920317-B01 -111860390,67,11061642,Medical Incident,07/05/2011,07/05/2011,07/05/2011 09:18:41 PM,07/05/2011 09:19:06 PM,07/05/2011 09:19:57 PM,07/05/2011 09:20:06 PM,07/05/2011 09:24:28 PM,07/05/2011 09:39:25 PM,07/05/2011 09:48:51 PM,Code 2 Transport,07/05/2011 10:11:54 PM,1800 Block of 26TH ST,SF,94107,B10,37,2615,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.751171434556, -122.397379770345)",111860390-67 -91300238,PIO2,9038514,,05/10/2009,05/10/2009,05/10/2009 04:19:51 PM,05/10/2009 04:24:39 PM,05/10/2009 04:25:08 PM,04/25/2016 03:28:54 PM,04/25/2016 03:28:54 PM,04/25/2016 03:28:54 PM,04/25/2016 03:28:54 PM,Other,05/10/2009 05:09:59 PM,0 Block of HARDING RD,SF,94132,B08,19,8713,E,E,3,false,,1,ADMIN,0,8,7,Lakeshore,"(37.7248174091742, -122.497764890771)",091300238-PIO2 -133640260,E40,13123663,Structure Fire,12/30/2013,12/30/2013,12/30/2013 04:18:53 PM,12/30/2013 04:19:15 PM,12/30/2013 04:19:30 PM,12/30/2013 04:20:37 PM,12/30/2013 04:24:15 PM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,Other,12/30/2013 04:27:00 PM,2200 Block of VICENTE ST,SF,94116,B08,18,7547,3,3,3,false,Alarm,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7385835946707, -122.490974207999)",133640260-E40 -111210407,73,11040142,Medical Incident,05/01/2011,05/01/2011,05/01/2011 09:39:58 PM,05/01/2011 09:47:25 PM,05/01/2011 09:48:17 PM,05/01/2011 09:48:25 PM,05/01/2011 10:03:02 PM,05/01/2011 10:12:14 PM,05/01/2011 10:18:10 PM,Code 2 Transport,05/01/2011 10:38:22 PM,0 Block of FRONT ST,SF,94111,B01,13,1136,1,1,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7920192720524, -122.39857867407)",111210407-73 -160160097,KM03,16006230,Medical Incident,01/16/2016,01/15/2016,01/16/2016 12:45:59 AM,01/16/2016 12:45:59 AM,01/16/2016 12:46:19 AM,01/16/2016 12:48:30 AM,01/16/2016 12:54:18 AM,01/16/2016 01:15:01 AM,01/16/2016 01:31:20 AM,Code 2 Transport,01/16/2016 02:22:22 AM,0 Block of SERRANO DR,San Francisco,94132,B08,19,8426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7199994990403, -122.475913774808)",160160097-KM03 -121720125,E31,12057061,Medical Incident,06/20/2012,06/20/2012,06/20/2012 10:26:16 AM,06/20/2012 10:27:05 AM,06/20/2012 10:28:47 AM,06/20/2012 10:30:59 AM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,Other,06/20/2012 10:32:08 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Non Life-threatening,1,ENGINE,4,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",121720125-E31 -120610364,T08,12020210,Structure Fire,03/01/2012,03/01/2012,03/01/2012 10:46:36 PM,03/01/2012 10:47:32 PM,03/01/2012 10:47:47 PM,03/01/2012 10:49:15 PM,03/01/2012 10:56:04 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Fire,03/01/2012 11:03:56 PM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,false,Fire,1,TRUCK,7,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",120610364-T08 -112220059,E48,11073232,Alarms,08/10/2011,08/09/2011,08/10/2011 07:10:10 AM,08/10/2011 07:10:57 AM,08/10/2011 07:11:15 AM,08/10/2011 07:12:29 AM,08/10/2011 07:15:30 AM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 07:25:25 AM,200 Block of CALIFORNIA AVE,TI,94130,B03,48,2931,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8185164804515, -122.369756931422)",112220059-E48 -111680048,T12,11055291,Structure Fire,06/17/2011,06/16/2011,06/17/2011 04:31:34 AM,06/17/2011 04:31:34 AM,06/17/2011 04:31:46 AM,06/17/2011 04:33:24 AM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 04:37:23 AM,9TH AV/NORIEGA ST,SF,94122,B08,22,7336,3,3,3,false,,1,TRUCK,2,8,7,Inner Sunset,"(37.7547092825423, -122.465662091491)",111680048-T12 -160492993,71,16019827,Medical Incident,02/18/2016,02/18/2016,02/18/2016 05:57:05 PM,02/18/2016 05:58:53 PM,02/18/2016 05:59:03 PM,02/18/2016 05:59:12 PM,02/18/2016 06:01:30 PM,02/18/2016 06:08:05 PM,02/18/2016 06:31:41 PM,Code 2 Transport,02/18/2016 07:06:36 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160492993-71 -160070409,71,16002697,Medical Incident,01/07/2016,01/06/2016,01/07/2016 05:46:53 AM,01/07/2016 05:46:53 AM,01/07/2016 05:47:34 AM,01/07/2016 05:47:53 AM,01/07/2016 05:51:35 AM,01/07/2016 06:03:07 AM,01/07/2016 06:09:47 AM,Code 2 Transport,01/07/2016 06:48:20 AM,1100 Block of STANYAN ST,San Francisco,94117,B07,12,5261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",160070409-71 -113580359,58,11119184,Medical Incident,12/24/2011,12/24/2011,12/24/2011 10:05:37 PM,12/24/2011 10:06:29 PM,12/24/2011 10:06:40 PM,12/24/2011 10:06:51 PM,12/24/2011 10:16:13 PM,12/24/2011 10:28:40 PM,12/24/2011 11:05:51 PM,Code 2 Transport,12/24/2011 11:29:01 PM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,3,2,2,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",113580359-58 -140730314,94,14024754,Medical Incident,03/14/2014,03/14/2014,03/14/2014 05:58:58 PM,03/14/2014 06:01:12 PM,03/14/2014 06:15:34 PM,03/14/2014 06:15:41 PM,03/14/2014 06:47:01 PM,03/14/2014 06:59:31 PM,03/14/2014 07:15:14 PM,Code 2 Transport,03/14/2014 07:36:18 PM,48TH AV/ORTEGA ST,SAN FRANCISCO,94116,B08,23,7725,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.751003286283, -122.507416228519)",140730314-94 -133380083,E42,13114467,Structure Fire,12/04/2013,12/04/2013,12/04/2013 09:03:08 AM,12/04/2013 09:03:55 AM,12/04/2013 09:08:02 AM,12/04/2013 09:09:27 AM,12/04/2013 09:14:23 AM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 09:28:20 AM,100 Block of MADRID ST,SF,94112,B09,43,6132,3,3,3,true,Fire,1,ENGINE,9,9,11,Excelsior,"(37.7270917743498, -122.428757548678)",133380083-E42 -160563484,76,16022524,Medical Incident,02/25/2016,02/25/2016,02/25/2016 07:55:33 PM,02/25/2016 07:56:07 PM,02/25/2016 07:56:19 PM,02/25/2016 07:56:26 PM,02/25/2016 08:12:35 PM,02/25/2016 08:22:35 PM,02/25/2016 08:29:22 PM,Code 2 Transport,02/25/2016 08:44:08 PM,KING ST/2ND ST,San Francisco,94107,B03,8,2154,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",160563484-76 -140920222,E17,14030941,Medical Incident,04/02/2014,04/02/2014,04/02/2014 01:36:24 PM,04/02/2014 01:37:59 PM,04/02/2014 01:38:07 PM,04/02/2014 01:39:25 PM,04/02/2014 01:41:41 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,Code 2 Transport,04/02/2014 01:53:34 PM,1600 Block of NEWCOMB AVE,SAN FRANCISCO,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7359839996322, -122.390991750862)",140920222-E17 -160380685,52,16015093,Medical Incident,02/07/2016,02/06/2016,02/07/2016 04:34:34 AM,02/07/2016 04:36:19 AM,02/07/2016 04:38:48 AM,02/07/2016 04:38:48 AM,02/07/2016 04:42:05 AM,02/07/2016 04:52:14 AM,02/07/2016 05:01:42 AM,Code 2 Transport,02/07/2016 05:49:59 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160380685-52 -160750774,71,16029623,Medical Incident,03/15/2016,03/15/2016,03/15/2016 08:38:40 AM,03/15/2016 08:39:10 AM,03/15/2016 08:39:19 AM,03/15/2016 08:39:24 AM,03/15/2016 08:43:34 AM,03/15/2016 08:59:52 AM,03/15/2016 09:04:33 AM,Code 2 Transport,03/15/2016 09:29:58 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160750774-71 -132760034,E06,13093616,Medical Incident,10/03/2013,10/02/2013,10/03/2013 03:11:02 AM,10/03/2013 03:12:01 AM,10/03/2013 03:12:29 AM,10/03/2013 03:14:31 AM,10/03/2013 03:16:17 AM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,Other,10/03/2013 03:19:03 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",132760034-E06 -110460267,E03,11015299,Structure Fire,02/15/2011,02/15/2011,02/15/2011 05:14:03 PM,02/15/2011 05:14:04 PM,02/15/2011 05:14:14 PM,02/15/2011 05:15:05 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 05:15:25 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",110460267-E03 -160153122,86,16006108,Medical Incident,01/15/2016,01/15/2016,01/15/2016 06:23:36 PM,01/15/2016 06:25:17 PM,01/15/2016 06:27:09 PM,01/15/2016 06:27:17 PM,01/15/2016 06:44:29 PM,01/15/2016 06:57:51 PM,01/15/2016 07:13:58 PM,Code 2 Transport,01/15/2016 07:56:09 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160153122-86 -160424039,88,16017092,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:55:44 PM,02/12/2016 12:01:00 AM,02/12/2016 12:02:34 AM,02/12/2016 12:02:46 AM,02/12/2016 12:14:11 AM,02/12/2016 12:24:32 AM,02/12/2016 12:39:08 AM,Code 2 Transport,02/12/2016 01:14:51 AM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,2,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",160424039-88 -130750222,94,13025064,Outside Fire,03/16/2013,03/16/2013,03/16/2013 03:35:34 PM,03/16/2013 03:37:22 PM,03/16/2013 03:39:00 PM,03/16/2013 03:39:26 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 03:39:58 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Fire,1,MEDIC,12,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",130750222-94 -113000394,99,11099682,Medical Incident,10/27/2011,10/27/2011,10/27/2011 11:00:25 PM,10/27/2011 11:01:13 PM,10/27/2011 11:01:23 PM,10/27/2011 11:01:50 PM,10/27/2011 11:02:47 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Patient Declined Transport,10/27/2011 11:24:38 PM,400 Block of GEARY ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",113000394-99 -112260034,94,11074549,Medical Incident,08/14/2011,08/13/2011,08/14/2011 02:27:54 AM,08/14/2011 02:29:09 AM,08/14/2011 02:29:15 AM,08/14/2011 02:29:29 AM,08/14/2011 02:31:21 AM,08/14/2011 03:05:55 AM,08/14/2011 03:19:55 AM,Code 2 Transport,08/14/2011 03:57:32 AM,VALENCIA ST/16TH ST,SF,94103,B02,6,5226,3,3,3,true,,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",112260034-94 -112330154,E01,11076913,Medical Incident,08/21/2011,08/21/2011,08/21/2011 11:15:03 AM,08/21/2011 11:15:41 AM,08/21/2011 11:16:08 AM,08/21/2011 11:19:14 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 11:21:54 AM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,3,2,6,South of Market,"(37.7795310846627, -122.413542548681)",112330154-E01 -110790249,87,11026092,Medical Incident,03/20/2011,03/20/2011,03/20/2011 03:10:24 PM,03/20/2011 03:11:00 PM,03/20/2011 03:11:53 PM,03/20/2011 03:12:00 PM,03/20/2011 03:14:31 PM,03/20/2011 03:55:48 PM,03/20/2011 04:11:08 PM,Code 2 Transport,03/20/2011 04:46:54 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",110790249-87 -120840024,89,12027766,Medical Incident,03/24/2012,03/23/2012,03/24/2012 01:07:49 AM,03/24/2012 01:07:49 AM,03/24/2012 01:08:36 AM,03/24/2012 01:11:01 AM,03/24/2012 01:14:07 AM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Patient Declined Transport,03/24/2012 01:34:13 AM,1200 Block of 2ND AVE,SF,94122,B05,12,7324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.76483812796, -122.458778713748)",120840024-89 -112610022,E08,11086002,Other,09/18/2011,09/17/2011,09/18/2011 01:22:32 AM,09/18/2011 01:22:36 AM,09/18/2011 01:22:41 AM,09/18/2011 01:24:56 AM,09/18/2011 01:26:09 AM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/18/2011 01:29:21 AM,400 Block of BRANNAN ST,SF,94107,B03,8,2223,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.778772691441, -122.395868429958)",112610022-E08 -113400337,E02,11112819,Alarms,12/06/2011,12/06/2011,12/06/2011 06:57:56 PM,12/06/2011 06:59:07 PM,12/06/2011 06:59:19 PM,12/06/2011 07:00:12 PM,12/06/2011 07:04:09 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/06/2011 07:10:13 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",113400337-E02 -112680333,72,11088716,Medical Incident,09/25/2011,09/25/2011,09/25/2011 08:11:45 PM,09/25/2011 08:12:30 PM,09/25/2011 08:12:42 PM,09/25/2011 08:12:58 PM,09/25/2011 08:16:42 PM,09/25/2011 08:38:39 PM,09/25/2011 08:44:04 PM,Code 2 Transport,09/25/2011 09:05:24 PM,300 Block of LAGUNA HONDA BLVD,SF,94116,B08,20,8649,3,2,2,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",112680333-72 -140540214,KM14,14018313,Medical Incident,02/23/2014,02/23/2014,02/23/2014 04:22:46 PM,02/23/2014 04:25:05 PM,02/23/2014 04:27:16 PM,02/23/2014 04:27:44 PM,02/23/2014 04:29:51 PM,02/23/2014 04:52:27 PM,02/23/2014 05:00:08 PM,Code 2 Transport,02/23/2014 05:23:21 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",140540214-KM14 -130940386,E05,13031631,Medical Incident,04/04/2013,04/04/2013,04/04/2013 10:28:42 PM,04/04/2013 10:30:59 PM,04/04/2013 10:32:06 PM,04/04/2013 10:33:15 PM,04/04/2013 10:35:52 PM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/04/2013 10:54:31 PM,600 Block of DIVISADERO ST,SF,94117,B05,21,4146,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Hayes Valley,"(37.775474331091, -122.437778722849)",130940386-E05 -160613676,82,16024505,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:55:07 PM,03/01/2016 10:55:07 PM,03/01/2016 10:55:53 PM,03/01/2016 10:56:24 PM,03/01/2016 11:09:08 PM,03/01/2016 11:25:33 PM,03/01/2016 11:37:46 PM,Code 2 Transport,03/02/2016 12:18:07 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160613676-82 -160772679,84,16030678,Medical Incident,03/17/2016,03/17/2016,03/17/2016 04:04:38 PM,03/17/2016 04:05:15 PM,03/17/2016 04:05:23 PM,03/17/2016 04:05:37 PM,03/17/2016 04:08:04 PM,03/17/2016 04:37:57 PM,03/17/2016 04:49:07 PM,Code 2 Transport,03/17/2016 05:32:42 PM,1500 Block of DIVISADERO ST,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7840751928704, -122.439752776223)",160772679-84 -160641168,57,16025436,Medical Incident,03/04/2016,03/04/2016,03/04/2016 09:51:42 AM,03/04/2016 09:52:39 AM,03/04/2016 09:54:25 AM,03/04/2016 09:54:38 AM,03/04/2016 10:00:18 AM,03/04/2016 10:19:27 AM,03/04/2016 10:27:32 AM,Code 2 Transport,03/04/2016 11:27:15 AM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",160641168-57 -112710252,KM12,11089586,Medical Incident,09/28/2011,09/28/2011,09/28/2011 02:03:14 PM,09/28/2011 02:04:54 PM,09/28/2011 02:05:23 PM,04/25/2016 02:02:26 PM,09/28/2011 02:17:27 PM,09/28/2011 02:27:25 PM,09/28/2011 02:42:29 PM,Code 2 Transport,09/28/2011 02:09:27 PM,TURK ST/LARKIN ST,SF,94102,B02,3,1554,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.782378943359, -122.41733888153)",112710252-KM12 -122820245,B04,12093414,Alarms,10/08/2012,10/08/2012,10/08/2012 04:51:25 PM,10/08/2012 04:52:35 PM,10/08/2012 04:53:56 PM,10/08/2012 04:55:00 PM,10/08/2012 04:57:32 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Fire,10/08/2012 05:05:20 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,false,Alarm,1,CHIEF,3,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",122820245-B04 -122280332,E14,12075682,Medical Incident,08/15/2012,08/15/2012,08/15/2012 07:44:30 PM,08/15/2012 07:46:47 PM,08/15/2012 07:47:08 PM,08/15/2012 07:48:02 PM,08/15/2012 07:50:33 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 08:18:56 PM,200 Block of 22ND AVE,SF,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7830973893224, -122.481656432472)",122280332-E14 -120150192,T13,12005107,Structure Fire,01/15/2012,01/15/2012,01/15/2012 02:08:30 PM,01/15/2012 02:10:49 PM,01/15/2012 02:10:59 PM,01/15/2012 02:43:18 PM,01/15/2012 02:49:26 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 03:24:22 PM,0 Block of VANDEWATER ST,SF,94133,B01,28,131,3,3,3,false,Fire,1,TRUCK,4,1,3,North Beach,"(37.8053109379125, -122.412698359147)",120150192-T13 -112020306,E08,11066735,Gas Leak (Natural and LP Gases),07/21/2011,07/21/2011,07/21/2011 04:27:38 PM,07/21/2011 04:31:31 PM,07/21/2011 04:31:39 PM,07/21/2011 04:32:05 PM,07/21/2011 04:36:25 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,No Merit,07/21/2011 04:39:37 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",112020306-E08 -112110202,E34,11069650,Traffic Collision,07/30/2011,07/30/2011,07/30/2011 02:34:20 PM,07/30/2011 02:34:57 PM,07/30/2011 02:35:40 PM,07/30/2011 02:37:06 PM,07/30/2011 02:38:37 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,Other,07/30/2011 02:52:48 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",112110202-E34 -121480204,E01,12049132,Medical Incident,05/27/2012,05/27/2012,05/27/2012 02:05:12 PM,05/27/2012 02:05:50 PM,05/27/2012 02:06:17 PM,04/25/2016 01:58:29 PM,05/27/2012 02:12:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/27/2012 02:35:20 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.779050608887, -122.407932562167)",121480204-E01 -131950022,E23,13066117,Medical Incident,07/14/2013,07/13/2013,07/14/2013 01:34:55 AM,07/14/2013 01:36:01 AM,07/14/2013 01:36:19 AM,07/14/2013 01:37:49 AM,07/14/2013 01:40:34 AM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/14/2013 01:46:51 AM,1500 Block of 43RD AVE,SF,94122,B08,23,7652,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7577643099664, -122.502585164302)",131950022-E23 -160450908,89,16018044,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:27:22 AM,02/14/2016 08:27:22 AM,02/14/2016 08:28:27 AM,02/14/2016 08:28:36 AM,02/14/2016 08:37:19 AM,02/14/2016 08:46:21 AM,02/14/2016 08:57:08 AM,Code 2 Transport,02/14/2016 09:36:04 AM,175-D LOEHR ST,San Francisco,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.711400304499, -122.413971257366)",160450908-89 -160580969,61,16023054,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:53:50 AM,02/27/2016 08:55:24 AM,02/27/2016 08:55:50 AM,02/27/2016 08:56:38 AM,02/27/2016 09:00:34 AM,02/27/2016 09:12:43 AM,02/27/2016 09:20:28 AM,Code 2 Transport,02/27/2016 10:19:53 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160580969-61 -112970403,T13,11098696,Alarms,10/24/2011,10/24/2011,10/24/2011 09:30:45 PM,10/24/2011 09:31:15 PM,10/24/2011 09:31:23 PM,10/24/2011 09:33:15 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/24/2011 10:22:39 PM,200 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7897518225049, -122.404013943546)",112970403-T13 -132720059,E10,13092352,Medical Incident,09/29/2013,09/28/2013,09/29/2013 04:03:01 AM,09/29/2013 04:05:47 AM,09/29/2013 04:09:23 AM,09/29/2013 04:12:00 AM,09/29/2013 04:14:45 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 04:30:00 AM,2100 Block of POST ST,SF,94115,B04,10,4131,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",132720059-E10 -160511509,79,16020454,Medical Incident,02/20/2016,02/20/2016,02/20/2016 12:33:03 PM,02/20/2016 12:35:06 PM,02/20/2016 12:37:40 PM,02/20/2016 12:40:30 PM,02/20/2016 12:59:05 PM,02/20/2016 01:14:13 PM,02/20/2016 01:42:58 PM,Code 2 Transport,02/20/2016 02:34:21 PM,700 Block of FILBERT ST,San Francisco,94133,B01,28,1351,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.8011213328276, -122.411852515751)",160511509-79 -130010111,99,13000077,Medical Incident,01/01/2013,12/31/2012,01/01/2013 01:44:45 AM,01/01/2013 01:46:56 AM,01/01/2013 01:52:52 AM,01/01/2013 01:53:09 AM,01/01/2013 02:00:07 AM,01/01/2013 02:15:26 AM,01/01/2013 02:40:14 AM,Code 2 Transport,01/01/2013 03:07:21 AM,2000 Block of 42ND AVE,SF,94116,B08,18,7634,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7484941198711, -122.500722763552)",130010111-99 -140830339,77,14028129,Medical Incident,03/24/2014,03/24/2014,03/24/2014 10:08:19 PM,03/24/2014 10:08:56 PM,03/24/2014 10:09:20 PM,03/24/2014 10:10:11 PM,03/24/2014 10:12:37 PM,04/25/2016 01:47:34 PM,04/25/2016 01:47:34 PM,Other,03/24/2014 11:12:40 PM,500 Block of SOUTH VAN NESS AVE,SAN FRANCISCO,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",140830339-77 -133460352,E19,13117537,Medical Incident,12/12/2013,12/12/2013,12/12/2013 07:55:36 PM,12/12/2013 07:58:11 PM,12/12/2013 07:59:48 PM,12/12/2013 08:02:34 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 08:19:22 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",133460352-E19 -140580235,66,14019606,Medical Incident,02/27/2014,02/27/2014,02/27/2014 03:24:30 PM,02/27/2014 03:25:17 PM,02/27/2014 03:25:48 PM,02/27/2014 03:25:55 PM,02/27/2014 03:32:02 PM,02/27/2014 03:53:23 PM,02/27/2014 04:10:36 PM,Code 2 Transport,02/27/2014 04:40:45 PM,4500 Block of CABRILLO ST,SF,94121,B07,34,7277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7734373755219, -122.507358715889)",140580235-66 -111800135,KM05,11059388,Medical Incident,06/29/2011,06/29/2011,06/29/2011 11:46:51 AM,06/29/2011 11:48:44 AM,06/29/2011 11:52:23 AM,06/29/2011 11:57:17 AM,06/29/2011 12:10:18 PM,06/29/2011 12:24:41 PM,06/29/2011 12:47:35 PM,Code 2 Transport,06/29/2011 01:02:21 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,false,,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",111800135-KM05 -122670009,T05,12088067,Structure Fire,09/23/2012,09/22/2012,09/23/2012 12:13:39 AM,09/23/2012 12:13:39 AM,09/23/2012 12:14:32 AM,09/23/2012 12:15:56 AM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 12:17:09 AM,BAKER ST/GROVE ST,SF,94117,B05,21,4253,3,3,3,false,Alarm,1,TRUCK,2,5,5,Lone Mountain/USF,"(37.7755046857272, -122.441300062684)",122670009-T05 -110910340,E31,11030273,Medical Incident,04/01/2011,04/01/2011,04/01/2011 06:14:02 PM,04/01/2011 06:14:42 PM,04/01/2011 06:14:56 PM,04/01/2011 06:15:17 PM,04/01/2011 06:17:12 PM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,Other,04/01/2011 06:27:00 PM,100 Block of 8TH AVE,SF,94118,B07,31,7126,E,E,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7856386364347, -122.466831479708)",110910340-E31 -160310082,85,16012012,Medical Incident,01/31/2016,01/30/2016,01/31/2016 12:26:58 AM,01/31/2016 12:29:10 AM,01/31/2016 12:30:13 AM,01/31/2016 12:30:28 AM,01/31/2016 12:35:37 AM,01/31/2016 01:02:09 AM,01/31/2016 01:09:20 AM,Code 2 Transport,01/31/2016 01:42:20 AM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160310082-85 -132900428,T48,13098852,Medical Incident,10/17/2013,10/17/2013,10/17/2013 11:38:25 PM,10/17/2013 11:39:37 PM,10/17/2013 11:39:58 PM,10/17/2013 11:41:46 PM,10/17/2013 11:46:39 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/17/2013 11:54:35 PM,400 Block of CALIFORNIA AVE,TI,94130,B03,48,2931,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,None,6,Treasure Island,"(37.819133465858, -122.368294852041)",132900428-T48 -122660244,85,12087929,Medical Incident,09/22/2012,09/22/2012,09/22/2012 05:11:38 PM,09/22/2012 05:14:25 PM,09/22/2012 05:14:54 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,04/25/2016 01:56:39 PM,200 Block of KING ST,SF,94107,B03,8,2171,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",122660244-85 -131010347,E10,13034085,Medical Incident,04/11/2013,04/11/2013,04/11/2013 08:43:36 PM,04/11/2013 08:44:52 PM,04/11/2013 08:45:23 PM,04/11/2013 08:46:40 PM,04/11/2013 08:49:04 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/11/2013 09:03:32 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",131010347-E10 -123460278,E03,12115786,Medical Incident,12/11/2012,12/11/2012,12/11/2012 05:32:09 PM,12/11/2012 05:33:36 PM,12/11/2012 05:33:51 PM,12/11/2012 05:36:10 PM,12/11/2012 05:38:14 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 05:38:28 PM,400 Block of LEAVENWORTH ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",123460278-E03 -113060357,E01,11101793,Medical Incident,11/02/2011,11/02/2011,11/02/2011 08:21:24 PM,11/02/2011 08:22:27 PM,11/02/2011 08:22:48 PM,11/02/2011 08:32:55 PM,11/02/2011 08:25:14 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/02/2011 08:41:38 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",113060357-E01 -133250242,E08,13110428,Medical Incident,11/21/2013,11/21/2013,11/21/2013 03:38:55 PM,11/21/2013 03:40:39 PM,11/21/2013 04:06:29 PM,04/25/2016 01:49:39 PM,11/21/2013 04:06:35 PM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Other,11/21/2013 03:53:03 PM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",133250242-E08 -111390217,E41,11046235,Medical Incident,05/19/2011,05/19/2011,05/19/2011 02:33:16 PM,05/19/2011 02:36:12 PM,05/19/2011 02:36:44 PM,05/19/2011 02:40:50 PM,05/19/2011 02:43:01 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 02:48:41 PM,VAN NESS AV/POST ST,SF,94109,B04,3,3161,1,1,2,false,,1,ENGINE,1,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",111390217-E41 -110970128,E41,11032104,Medical Incident,04/07/2011,04/07/2011,04/07/2011 10:13:06 AM,04/07/2011 10:13:19 AM,04/07/2011 10:14:10 AM,04/07/2011 10:14:58 AM,04/07/2011 10:16:37 AM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Unable to Locate,04/07/2011 10:19:16 AM,LEAVENWORTH ST/POST ST,SF,94109,B01,3,1543,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7874538432357, -122.414995423077)",110970128-E41 -122400326,E33,12079556,Citizen Assist / Service Call,08/27/2012,08/27/2012,08/27/2012 06:39:14 PM,08/27/2012 06:40:35 PM,08/27/2012 06:40:51 PM,08/27/2012 06:42:33 PM,08/27/2012 06:46:38 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Fire,08/27/2012 06:56:45 PM,0 Block of FLORENTINE AVE,SF,94112,B09,33,6177,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7126535594539, -122.443570221099)",122400326-E33 -160572420,79,16022826,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:57:13 PM,02/26/2016 03:59:37 PM,02/26/2016 04:00:37 PM,02/26/2016 04:00:54 PM,02/26/2016 04:27:09 PM,02/26/2016 04:27:10 PM,02/26/2016 04:28:52 PM,Code 2 Transport,02/26/2016 04:43:14 PM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7848770596387, -122.442348914658)",160572420-79 -120940253,E02,12031211,Medical Incident,04/03/2012,04/03/2012,04/03/2012 05:03:34 PM,04/03/2012 05:03:52 PM,04/03/2012 05:04:32 PM,04/25/2016 01:59:21 PM,04/03/2012 05:05:05 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 05:28:30 PM,1300 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",120940253-E02 -112900278,E39,11096278,Medical Incident,10/17/2011,10/17/2011,10/17/2011 03:48:26 PM,10/17/2011 03:49:33 PM,10/17/2011 03:49:55 PM,10/17/2011 03:51:08 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 04:16:15 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",112900278-E39 -110900136,E08,11029724,Medical Incident,03/31/2011,03/31/2011,03/31/2011 11:32:12 AM,03/31/2011 11:32:15 AM,03/31/2011 11:33:42 AM,04/25/2016 02:05:21 PM,03/31/2011 11:34:52 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Other,03/31/2011 11:43:39 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",110900136-E08 -132600444,75,13088190,Medical Incident,09/17/2013,09/17/2013,09/17/2013 09:30:45 PM,09/17/2013 09:30:45 PM,09/17/2013 09:38:47 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,09/17/2013 09:47:12 PM,09/17/2013 10:04:49 PM,Other,09/17/2013 10:28:40 PM,FRANK NORRIS ST/POLK ST,SF,94109,B04,3,3122,E,E,3,true,Potentially Life-Threatening,1,MEDIC,7,4,3,Nob Hill,"(37.7891650930566, -122.420401246671)",132600444-75 -160910941,AM10,16036009,Medical Incident,03/31/2016,03/31/2016,03/31/2016 09:24:55 AM,03/31/2016 09:26:13 AM,03/31/2016 09:29:09 AM,03/31/2016 09:29:45 AM,03/31/2016 09:38:53 AM,03/31/2016 09:41:10 AM,03/31/2016 10:01:11 AM,Code 2 Transport,03/31/2016 10:35:05 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160910941-AM10 -131690053,68,13057268,Medical Incident,06/18/2013,06/17/2013,06/18/2013 05:27:43 AM,06/18/2013 05:30:16 AM,06/18/2013 05:31:23 AM,06/18/2013 05:31:48 AM,06/18/2013 05:35:47 AM,06/18/2013 05:47:48 AM,06/18/2013 06:02:10 AM,Code 3 Transport,06/18/2013 06:33:03 AM,3500 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7393668849403, -122.423797447335)",131690053-68 -123630042,AM22,12121345,Medical Incident,12/28/2012,12/27/2012,12/28/2012 03:58:23 AM,12/28/2012 04:03:10 AM,12/28/2012 04:03:31 AM,12/28/2012 04:04:08 AM,12/28/2012 04:17:05 AM,12/28/2012 04:54:43 AM,12/28/2012 05:07:12 AM,Code 2 Transport,12/28/2012 05:44:46 AM,1000 Block of FRANKLIN ST,SF,94109,B02,3,3221,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",123630042-AM22 -111170334,T06,11038752,Structure Fire,04/27/2011,04/27/2011,04/27/2011 09:16:01 PM,04/27/2011 09:16:01 PM,04/27/2011 09:16:27 PM,04/27/2011 09:18:47 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 09:19:19 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.7741251002903, -122.418810211803)",111170334-T06 -160120465,65,16004660,Medical Incident,01/12/2016,01/11/2016,01/12/2016 06:19:56 AM,01/12/2016 06:20:30 AM,01/12/2016 06:20:40 AM,01/12/2016 06:20:51 AM,01/12/2016 06:28:21 AM,01/12/2016 06:50:55 AM,01/12/2016 07:04:49 AM,Code 2 Transport,01/12/2016 07:49:12 AM,2800 Block of SAN BRUNO AV,San Francisco,94134,B10,42,6333,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7258169457763, -122.402916975917)",160120465-65 -120660020,55,12021693,Medical Incident,03/06/2012,03/05/2012,03/06/2012 03:08:07 AM,03/06/2012 03:09:43 AM,03/06/2012 03:11:22 AM,03/06/2012 03:13:41 AM,03/06/2012 03:14:45 AM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,No Merit,03/06/2012 03:28:12 AM,400 Block of HOLLOWAY AVE,SF,94112,B09,15,8473,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7218966114781, -122.457673471885)",120660020-55 -103060236,E01,10097941,Medical Incident,11/02/2010,11/02/2010,11/02/2010 01:03:43 PM,11/02/2010 01:03:59 PM,11/02/2010 01:04:22 PM,11/02/2010 01:05:40 PM,11/02/2010 01:08:46 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 01:10:47 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",103060236-E01 -160682011,AM08,16027144,Medical Incident,03/08/2016,03/08/2016,03/08/2016 02:01:17 PM,03/08/2016 02:02:17 PM,03/08/2016 02:03:19 PM,03/08/2016 02:04:08 PM,03/08/2016 02:08:03 PM,03/08/2016 02:28:34 PM,03/08/2016 02:39:53 PM,Code 2 Transport,03/08/2016 02:59:38 PM,1500 Block of SACRAMENTO ST,San Francisco,94109,B01,41,1563,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7918676063561, -122.418413462356)",160682011-AM08 -122610318,55,12086348,Structure Fire,09/17/2012,09/17/2012,09/17/2012 11:11:35 PM,09/17/2012 11:12:11 PM,09/17/2012 11:12:47 PM,09/17/2012 11:14:32 PM,09/17/2012 11:19:24 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/17/2012 11:19:45 PM,500 Block of SCOTT ST,SF,94117,B05,21,4136,3,3,3,true,Fire,1,MEDIC,8,5,5,Hayes Valley,"(37.7747500421845, -122.435966327435)",122610318-55 -122810332,T13,12093119,Elevator / Escalator Rescue,10/07/2012,10/07/2012,10/07/2012 07:37:06 PM,10/07/2012 07:39:51 PM,10/07/2012 07:39:56 PM,10/07/2012 07:41:43 PM,10/07/2012 07:43:41 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Fire,10/07/2012 07:57:49 PM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",122810332-T13 -102910356,B01,10092953,Medical Incident,10/18/2010,10/18/2010,10/18/2010 09:41:23 PM,10/18/2010 09:42:17 PM,10/18/2010 09:43:26 PM,10/18/2010 09:45:25 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/18/2010 09:46:43 PM,700 Block of LEAVENWORTH ST,SF,94109,B04,3,1543,E,E,3,false,,1,CHIEF,4,4,3,Nob Hill,"(37.7879121402994, -122.415158673267)",102910356-B01 -131330072,E03,13044773,Medical Incident,05/13/2013,05/12/2013,05/13/2013 07:23:36 AM,05/13/2013 07:23:52 AM,05/13/2013 07:24:48 AM,05/13/2013 07:25:58 AM,05/13/2013 07:29:53 AM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/13/2013 07:33:55 AM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",131330072-E03 -112330261,83,11077010,Medical Incident,08/21/2011,08/21/2011,08/21/2011 04:43:50 PM,08/21/2011 04:44:25 PM,08/21/2011 04:44:49 PM,08/21/2011 04:45:17 PM,08/21/2011 04:56:26 PM,08/21/2011 05:32:43 PM,08/21/2011 05:53:32 PM,Code 2 Transport,08/21/2011 06:18:34 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",112330261-83 -131770230,RS2,13060117,Medical Incident,06/26/2013,06/26/2013,06/26/2013 01:59:09 PM,06/26/2013 02:01:32 PM,06/26/2013 02:01:50 PM,06/26/2013 02:02:51 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 02:04:14 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",131770230-RS2 -133560284,KM02,13121109,Medical Incident,12/22/2013,12/22/2013,12/22/2013 05:09:28 PM,12/22/2013 05:10:51 PM,12/22/2013 05:11:26 PM,12/22/2013 05:11:54 PM,12/22/2013 05:22:07 PM,12/22/2013 05:34:50 PM,12/22/2013 05:46:26 PM,Code 2 Transport,12/22/2013 06:17:53 PM,25TH ST/SOUTH VAN NESS AV,SF,94110,B06,11,5534,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7507710880586, -122.416107621606)",133560284-KM02 -120050363,KM07,12001899,Medical Incident,01/05/2012,01/05/2012,01/05/2012 10:35:50 PM,01/05/2012 10:38:15 PM,01/05/2012 10:40:07 PM,01/05/2012 10:40:13 PM,01/05/2012 10:50:41 PM,01/05/2012 11:02:36 PM,01/05/2012 11:07:47 PM,Code 2 Transport,01/05/2012 11:36:11 PM,1100 Block of SCOTT ST,SF,94115,B05,5,4133,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7803259118056, -122.437234296615)",120050363-KM07 -111570151,T09,11051883,Alarms,06/06/2011,06/06/2011,06/06/2011 10:57:24 AM,06/06/2011 10:58:38 AM,06/06/2011 10:58:48 AM,06/06/2011 10:59:57 AM,06/06/2011 11:03:23 AM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 11:08:09 AM,1500 Block of INDIANA ST,SF,94107,B10,25,2635,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.750758868663, -122.390429362473)",111570151-T09 -111040197,95,11034486,Medical Incident,04/14/2011,04/14/2011,04/14/2011 02:10:04 PM,04/14/2011 02:10:47 PM,04/14/2011 02:11:21 PM,04/14/2011 02:11:53 PM,04/14/2011 02:17:22 PM,04/14/2011 02:41:05 PM,04/14/2011 02:52:43 PM,Code 2 Transport,04/14/2011 03:17:36 PM,2700 Block of DIAMOND ST,SF,94131,B06,26,8146,3,3,3,true,,1,MEDIC,2,6,8,Glen Park,"(37.7347861527161, -122.433850481856)",111040197-95 -113150160,RC1,11104676,Medical Incident,11/11/2011,11/11/2011,11/11/2011 12:45:20 PM,11/11/2011 12:45:59 PM,11/11/2011 12:46:12 PM,04/25/2016 02:01:41 PM,11/11/2011 12:49:26 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/11/2011 12:53:19 PM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,true,,1,RESCUE CAPTAIN,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",113150160-RC1 -160650957,66,16025870,Medical Incident,03/05/2016,03/05/2016,03/05/2016 09:06:53 AM,03/05/2016 09:08:31 AM,03/05/2016 09:09:41 AM,03/05/2016 09:09:56 AM,03/05/2016 09:14:07 AM,03/05/2016 09:28:34 AM,03/05/2016 09:37:13 AM,Code 2 Transport,03/05/2016 10:14:40 AM,1500 Block of HAYES ST,San Francisco,94117,B05,21,4351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7744089216996, -122.441921717893)",160650957-66 -102500289,74,10079086,Medical Incident,09/07/2010,09/07/2010,09/07/2010 07:16:57 PM,09/07/2010 07:17:34 PM,09/07/2010 07:19:33 PM,09/07/2010 07:19:48 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,04/25/2016 02:08:42 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,2,2,2,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",102500289-74 -120160253,T10,12005471,Alarms,01/16/2012,01/16/2012,01/16/2012 06:03:45 PM,01/16/2012 06:04:34 PM,01/16/2012 06:04:40 PM,01/16/2012 06:06:28 PM,01/16/2012 06:08:34 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/16/2012 06:20:21 PM,3000 Block of JACKSON ST,SF,94115,B04,10,4334,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7910493414671, -122.4452866003)",120160253-T10 -103460068,T01,10110854,Medical Incident,12/12/2010,12/11/2010,12/12/2010 04:06:02 AM,12/12/2010 04:08:19 AM,12/12/2010 04:11:18 AM,12/12/2010 04:12:28 AM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 04:13:34 AM,1200 Block of MARKET ST,SF,94103,B02,36,2337,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",103460068-T01 -103400025,E03,10108710,Medical Incident,12/06/2010,12/05/2010,12/06/2010 02:30:10 AM,12/06/2010 02:31:04 AM,12/06/2010 02:32:28 AM,12/06/2010 02:34:17 AM,12/06/2010 02:36:10 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/06/2010 02:47:08 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",103400025-E03 -113060236,E38,11101692,Medical Incident,11/02/2011,11/02/2011,11/02/2011 02:28:23 PM,11/02/2011 02:29:39 PM,11/02/2011 02:30:32 PM,11/02/2011 02:30:51 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/02/2011 02:33:04 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,ENGINE,3,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",113060236-E38 -160530139,60,16021038,Medical Incident,02/22/2016,02/21/2016,02/22/2016 01:38:34 AM,02/22/2016 01:39:55 AM,02/22/2016 01:40:06 AM,02/22/2016 01:41:41 AM,02/22/2016 01:51:05 AM,02/22/2016 02:12:19 AM,02/22/2016 02:15:12 AM,Code 2 Transport,02/22/2016 03:09:14 AM,0 Block of BEULAH ST,San Francisco,94117,B05,12,4546,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7675371399742, -122.450899914559)",160530139-60 -120320288,89,12010669,Medical Incident,02/01/2012,02/01/2012,02/01/2012 06:18:17 PM,02/01/2012 06:19:02 PM,02/01/2012 06:19:38 PM,04/25/2016 02:00:21 PM,02/01/2012 06:24:41 PM,02/01/2012 07:01:14 PM,02/01/2012 07:32:57 PM,Code 2 Transport,02/01/2012 07:41:58 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",120320288-89 -120670076,E03,12022124,Medical Incident,03/07/2012,03/06/2012,03/07/2012 07:19:58 AM,03/07/2012 07:20:10 AM,03/07/2012 07:20:36 AM,03/07/2012 07:21:09 AM,03/07/2012 07:26:06 AM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/07/2012 07:28:42 AM,CHESTNUT ST/LARKIN ST,SF,94109,B04,28,1613,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8026949243643, -122.42148036462)",120670076-E03 -103200098,KM14,10102499,Medical Incident,11/16/2010,11/16/2010,11/16/2010 08:41:41 AM,11/16/2010 08:43:18 AM,11/16/2010 08:43:59 AM,11/16/2010 08:50:05 AM,11/16/2010 09:00:01 AM,11/16/2010 09:06:57 AM,11/16/2010 09:13:55 AM,Code 2 Transport,11/16/2010 09:35:54 AM,1400 Block of TREAT WAY,SF,94110,B06,7,5533,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7486593822992, -122.412687632433)",103200098-KM14 -123200197,T01,12106388,Alarms,11/15/2012,11/15/2012,11/15/2012 01:45:30 PM,11/15/2012 01:46:23 PM,11/15/2012 01:47:25 PM,11/15/2012 01:48:52 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 01:52:26 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",123200197-T01 -132340356,RC1,13079144,Medical Incident,08/22/2013,08/22/2013,08/22/2013 10:15:11 PM,08/22/2013 10:17:20 PM,08/22/2013 10:18:12 PM,08/22/2013 10:18:54 PM,08/22/2013 10:24:15 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,08/22/2013 10:24:39 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",132340356-RC1 -160882438,AM16,16035021,Medical Incident,03/28/2016,03/28/2016,03/28/2016 03:47:52 PM,03/28/2016 03:50:26 PM,03/28/2016 03:51:05 PM,03/28/2016 03:51:05 PM,03/28/2016 04:23:46 PM,03/28/2016 04:23:48 PM,03/28/2016 04:54:53 PM,Code 2 Transport,03/28/2016 05:16:01 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160882438-AM16 -160603044,E06,16024040,Medical Incident,02/29/2016,02/29/2016,02/29/2016 07:02:21 PM,02/29/2016 07:02:38 PM,02/29/2016 07:03:35 PM,02/29/2016 07:04:56 PM,02/29/2016 07:34:19 PM,02/29/2016 07:35:11 PM,02/29/2016 08:06:40 PM,Code 3 Transport,02/29/2016 08:08:11 PM,300 Block of DOUGLASS ST,San Francisco,94114,B06,24,5441,3,E,3,true,Potentially Life-Threatening,1,ENGINE,4,6,8,Castro/Upper Market,"(37.7581620645375, -122.439025114623)",160603044-E06 -123360341,T01,12111859,Structure Fire,12/01/2012,12/01/2012,12/01/2012 07:22:52 PM,12/01/2012 07:22:53 PM,12/01/2012 07:23:25 PM,12/01/2012 07:23:58 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 07:24:41 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",123360341-T01 -111570320,E01,11052023,Medical Incident,06/06/2011,06/06/2011,06/06/2011 06:17:23 PM,06/06/2011 06:18:14 PM,06/06/2011 06:18:43 PM,06/06/2011 06:19:02 PM,06/06/2011 06:20:23 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/06/2011 06:33:01 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",111570320-E01 -121230379,RS1,12041003,Medical Incident,05/02/2012,05/02/2012,05/02/2012 11:27:39 PM,05/02/2012 11:28:59 PM,05/02/2012 11:29:22 PM,05/02/2012 11:30:07 PM,04/25/2016 01:58:53 PM,04/25/2016 01:58:53 PM,04/25/2016 01:58:53 PM,Other,05/02/2012 11:30:42 PM,0 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7795700115888, -122.411484015918)",121230379-RS1 -120570310,68,12018918,Medical Incident,02/26/2012,02/26/2012,02/26/2012 09:01:20 PM,02/26/2012 09:03:14 PM,02/26/2012 09:04:07 PM,02/26/2012 09:04:23 PM,02/26/2012 09:07:02 PM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Against Medical Advice,02/26/2012 10:05:14 PM,1400 Block of 20TH AVE,SF,94122,B08,22,7426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7607217462219, -122.47793023848)",120570310-68 -122180238,93,12072359,Medical Incident,08/05/2012,08/05/2012,08/05/2012 03:19:41 PM,08/05/2012 03:21:21 PM,08/05/2012 03:22:00 PM,08/05/2012 03:22:33 PM,08/05/2012 03:25:45 PM,08/05/2012 03:47:40 PM,08/05/2012 04:06:58 PM,Code 2 Transport,08/05/2012 04:33:58 PM,1000 Block of LAGUNA ST,SF,94115,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806464131859, -122.427178095031)",122180238-93 -133280228,T08,13111504,Alarms,11/24/2013,11/24/2013,11/24/2013 04:13:34 PM,11/24/2013 04:14:43 PM,11/24/2013 04:15:21 PM,11/24/2013 04:16:34 PM,11/24/2013 04:19:49 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 04:30:44 PM,100 Block of KING ST,SF,94107,B03,8,2154,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",133280228-T08 -160170502,AM22,16006699,Medical Incident,01/17/2016,01/16/2016,01/17/2016 04:27:45 AM,01/17/2016 04:30:43 AM,01/17/2016 04:32:02 AM,01/17/2016 04:32:56 AM,01/17/2016 04:39:40 AM,01/17/2016 04:58:15 AM,01/17/2016 05:06:28 AM,Code 2 Transport,01/17/2016 05:39:09 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160170502-AM22 -160450801,61,16018024,Medical Incident,02/14/2016,02/13/2016,02/14/2016 07:29:36 AM,02/14/2016 07:30:06 AM,02/14/2016 07:30:56 AM,02/14/2016 07:31:06 AM,02/14/2016 07:40:43 AM,02/14/2016 07:57:16 AM,02/14/2016 08:09:32 AM,Code 2 Transport,02/14/2016 08:46:32 AM,0 Block of DE LONG ST,San Francisco,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7096061746136, -122.459869387331)",160450801-61 -130800156,E12,13026717,Medical Incident,03/21/2013,03/21/2013,03/21/2013 11:20:39 AM,03/21/2013 11:20:57 AM,03/21/2013 11:21:15 AM,03/21/2013 11:22:06 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 11:24:52 AM,7TH AV/HUGO ST,SF,94122,B08,22,7332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,5,Inner Sunset,"(37.7650667712969, -122.464237375405)",130800156-E12 -121080096,E28,12035695,Medical Incident,04/17/2012,04/17/2012,04/17/2012 09:49:57 AM,04/17/2012 09:50:46 AM,04/17/2012 09:51:05 AM,04/17/2012 09:51:49 AM,04/17/2012 09:54:18 AM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,Other,04/17/2012 10:08:47 AM,0 Block of JEFFERSON ST,SF,94133,B01,28,943,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8084686918657, -122.4133334279)",121080096-E28 -160462365,KM06,16018571,Medical Incident,02/15/2016,02/15/2016,02/15/2016 03:51:01 PM,02/15/2016 03:53:18 PM,02/15/2016 03:56:41 PM,02/15/2016 03:59:09 PM,02/15/2016 04:06:14 PM,02/15/2016 04:31:39 PM,02/15/2016 04:39:39 PM,Code 2 Transport,02/15/2016 05:10:29 PM,BRYANT ST/10TH ST,San Francisco,94103,B02,29,2345,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7703485160634, -122.409735890482)",160462365-KM06 -160453024,65,16018267,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:04:55 PM,02/14/2016 08:05:58 PM,02/14/2016 08:06:15 PM,02/14/2016 08:09:27 PM,02/14/2016 08:23:32 PM,02/14/2016 08:46:26 PM,02/14/2016 09:04:52 PM,Code 2 Transport,02/14/2016 09:52:35 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160453024-65 -120170146,E25,12005682,Administrative,01/17/2012,01/17/2012,01/17/2012 11:53:38 AM,01/17/2012 11:53:41 AM,01/17/2012 11:53:47 AM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 11:54:07 AM,3300 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,false,,1,ENGINE,1,None,None,None,"(37.7475912199361, -122.387182780653)",120170146-E25 -110770248,68,11025393,Medical Incident,03/18/2011,03/18/2011,03/18/2011 02:47:14 PM,03/18/2011 02:48:25 PM,03/18/2011 02:50:02 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,04/25/2016 02:05:34 PM,0 Block of NEWTON ST,SF,94112,B09,43,6232,3,1,2,true,,1,MEDIC,3,9,11,Excelsior,"(37.7139749867897, -122.438812291753)",110770248-68 -120870235,E10,12028923,Medical Incident,03/27/2012,03/27/2012,03/27/2012 04:47:42 PM,03/27/2012 04:49:36 PM,03/27/2012 04:49:55 PM,03/27/2012 04:55:35 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 04:57:38 PM,2300 Block of GOLDEN GATE AVE,SF,94117,B05,21,4521,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,1,Lone Mountain/USF,"(37.7773216006661, -122.449116002905)",120870235-E10 -112900310,E21,11096306,Medical Incident,10/17/2011,10/17/2011,10/17/2011 05:12:45 PM,10/17/2011 05:14:07 PM,10/17/2011 05:14:16 PM,10/17/2011 05:15:20 PM,10/17/2011 05:16:08 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/17/2011 05:21:49 PM,500 Block of BRODERICK ST,SF,94117,B05,21,4244,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7752371573517, -122.439629672801)",112900310-E21 -121460015,66,12048327,Medical Incident,05/25/2012,05/24/2012,05/25/2012 01:45:11 AM,05/25/2012 01:48:27 AM,05/25/2012 01:49:58 AM,05/25/2012 01:50:12 AM,05/25/2012 01:58:09 AM,05/25/2012 02:10:58 AM,05/25/2012 02:24:51 AM,Code 2 Transport,05/25/2012 02:47:59 AM,300 Block of 5TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7820328555271, -122.463211509933)",121460015-66 -131130013,85,13037953,Medical Incident,04/23/2013,04/22/2013,04/23/2013 12:42:51 AM,04/23/2013 12:44:00 AM,04/23/2013 12:44:53 AM,04/23/2013 12:45:14 AM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/23/2013 12:49:51 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",131130013-85 -140430037,E01,14014494,Medical Incident,02/12/2014,02/11/2014,02/12/2014 03:57:58 AM,02/12/2014 03:58:25 AM,02/12/2014 03:58:42 AM,02/12/2014 04:01:37 AM,02/12/2014 04:05:00 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/12/2014 04:10:27 AM,MISSION ST/MINT ST,SF,94103,B03,1,2246,,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7821907203873, -122.407164382984)",140430037-E01 -122750208,KM11,12090760,Medical Incident,10/01/2012,10/01/2012,10/01/2012 01:36:15 PM,10/01/2012 01:37:07 PM,10/01/2012 01:42:12 PM,10/01/2012 01:43:24 PM,10/01/2012 01:53:03 PM,10/01/2012 02:22:48 PM,10/01/2012 02:32:17 PM,Code 2 Transport,10/01/2012 03:14:49 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",122750208-KM11 -120580104,KM01,12019049,Medical Incident,02/27/2012,02/27/2012,02/27/2012 09:37:29 AM,02/27/2012 09:38:50 AM,02/27/2012 09:39:09 AM,02/27/2012 09:41:33 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/27/2012 09:45:38 AM,2300 Block of BUSH ST,SF,94115,B04,38,3621,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7866515636074, -122.435915167438)",120580104-KM01 -160743583,61,16029473,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:27:42 PM,03/14/2016 08:28:01 PM,03/14/2016 08:28:21 PM,03/14/2016 08:28:31 PM,03/14/2016 08:33:29 PM,03/14/2016 08:54:28 PM,03/14/2016 09:02:39 PM,Code 2 Transport,03/14/2016 09:26:58 PM,0 Block of ORD CT,San Francisco,94114,B05,6,5254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7639122101336, -122.440890904618)",160743583-61 -133260227,68,13110751,Medical Incident,11/22/2013,11/22/2013,11/22/2013 02:29:52 PM,11/22/2013 02:30:28 PM,11/22/2013 02:31:56 PM,11/22/2013 02:32:59 PM,11/22/2013 02:48:37 PM,11/22/2013 03:14:28 PM,11/22/2013 03:25:45 PM,Code 2 Transport,11/22/2013 04:09:44 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7573058647401, -122.42108671773)",133260227-68 -121510115,E02,12049984,Medical Incident,05/30/2012,05/30/2012,05/30/2012 10:41:46 AM,05/30/2012 10:42:33 AM,05/30/2012 10:42:42 AM,05/30/2012 10:43:39 AM,05/30/2012 10:44:57 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/30/2012 11:06:31 AM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",121510115-E02 -102410256,E36,10076082,Medical Incident,08/29/2010,08/29/2010,08/29/2010 05:42:43 PM,08/29/2010 05:43:19 PM,08/29/2010 05:47:27 PM,04/25/2016 02:08:50 PM,08/29/2010 05:51:07 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/29/2010 06:08:51 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,false,,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",102410256-E36 -112450367,T13,11080920,Structure Fire,09/02/2011,09/02/2011,09/02/2011 09:21:19 PM,09/02/2011 09:21:19 PM,09/02/2011 09:21:25 PM,09/02/2011 09:22:22 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 09:24:34 PM,DAVIS ST/CLAY ST,SF,94111,B01,13,1133,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7953129409013, -122.397974750623)",112450367-T13 -122310173,77,12076592,Medical Incident,08/18/2012,08/18/2012,08/18/2012 01:52:53 PM,08/18/2012 01:54:49 PM,08/18/2012 01:55:07 PM,08/18/2012 01:55:13 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 02:00:19 PM,2500 Block of MASON ST,SF,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.807027306345, -122.413812485246)",122310173-77 -112410281,T03,11079606,Structure Fire,08/29/2011,08/29/2011,08/29/2011 06:43:41 PM,08/29/2011 06:43:42 PM,08/29/2011 06:43:52 PM,08/29/2011 06:46:38 PM,08/29/2011 06:47:02 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 06:47:23 PM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",112410281-T03 -130330369,99,13011451,Medical Incident,02/02/2013,02/02/2013,02/02/2013 11:20:28 PM,02/02/2013 11:21:43 PM,02/02/2013 11:22:01 PM,02/02/2013 11:22:15 PM,02/02/2013 11:25:58 PM,02/02/2013 11:45:08 PM,02/02/2013 11:53:55 PM,Code 2 Transport,02/03/2013 12:15:29 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",130330369-99 -103040122,B03,10097076,Alarms,10/31/2010,10/30/2010,10/31/2010 06:00:50 AM,10/31/2010 06:02:26 AM,10/31/2010 06:03:14 AM,10/31/2010 06:05:23 AM,10/31/2010 06:08:58 AM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 06:12:40 AM,FOLSOM ST/SPEAR ST,SF,94105,B03,35,2112,3,3,3,false,,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7900698004723, -122.390971017685)",103040122-B03 -160692057,56,16027499,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:13:16 PM,03/09/2016 02:14:15 PM,03/09/2016 02:14:40 PM,03/09/2016 02:15:40 PM,03/09/2016 02:20:14 PM,03/09/2016 02:38:54 PM,03/09/2016 03:06:23 PM,Code 2 Transport,03/09/2016 03:43:20 PM,1800 Block of 8TH AVE,San Francisco,94122,B08,22,7336,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7538219826393, -122.464595321074)",160692057-56 -103550193,E12,10113965,Structure Fire,12/21/2010,12/21/2010,12/21/2010 01:45:46 PM,12/21/2010 01:45:47 PM,12/21/2010 01:46:21 PM,12/21/2010 01:47:00 PM,12/21/2010 01:47:59 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 01:48:24 PM,STANYAN ST/FREDERICK ST,SF,94117,B05,12,4551,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.766374073924, -122.452947033535)",103550193-E12 -112330262,T03,11077011,Structure Fire,08/21/2011,08/21/2011,08/21/2011 04:50:03 PM,08/21/2011 04:50:04 PM,08/21/2011 04:50:09 PM,08/21/2011 04:51:30 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 04:53:41 PM,200 Block of LARKIN ST,SF,94102,B02,36,1645,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7800186669161, -122.416926174949)",112330262-T03 -133340036,E02,13113119,Structure Fire,11/30/2013,11/29/2013,11/30/2013 02:08:19 AM,11/30/2013 02:08:19 AM,11/30/2013 02:08:26 AM,11/30/2013 02:10:06 AM,11/30/2013 02:11:17 AM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Fire,11/30/2013 02:11:38 AM,STOCKTON ST/PACIFIC AV,SF,94133,B01,2,1332,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7967039027671, -122.40843088815)",133340036-E02 -132390353,85,13080766,Medical Incident,08/27/2013,08/27/2013,08/27/2013 09:04:15 PM,08/27/2013 09:04:53 PM,08/27/2013 09:05:06 PM,08/27/2013 09:05:17 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/27/2013 09:06:04 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,2,2,true,Non Life-threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",132390353-85 -102790011,E08,10088568,Alarms,10/06/2010,10/05/2010,10/06/2010 01:17:51 AM,10/06/2010 01:18:40 AM,10/06/2010 01:19:07 AM,10/06/2010 01:21:23 AM,10/06/2010 01:24:26 AM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,Other,10/06/2010 01:45:25 AM,600 Block of 16TH ST,SF,94158,B03,8,2364,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7668017295742, -122.391734694389)",102790011-E08 -120160085,68,12005329,Medical Incident,01/16/2012,01/16/2012,01/16/2012 09:30:01 AM,01/16/2012 09:31:29 AM,01/16/2012 09:31:46 AM,01/16/2012 09:32:06 AM,04/25/2016 02:00:36 PM,01/16/2012 10:05:41 AM,01/16/2012 10:12:04 AM,Code 2 Transport,01/16/2012 10:35:34 AM,400 Block of SOUTH VAN NESS AVE,SF,94103,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7662744315825, -122.417662868855)",120160085-68 -110510124,74,11016842,Medical Incident,02/20/2011,02/20/2011,02/20/2011 09:21:27 AM,02/20/2011 09:22:11 AM,02/20/2011 09:24:14 AM,02/20/2011 09:24:28 AM,02/20/2011 09:29:32 AM,02/20/2011 09:53:12 AM,02/20/2011 10:05:47 AM,Code 2 Transport,02/20/2011 10:38:19 AM,100 Block of TRUMBULL ST,SF,94112,B09,32,5635,3,1,2,true,,1,MEDIC,2,9,11,Excelsior,"(37.7309007796408, -122.427270591087)",110510124-74 -103370296,E06,10107899,Medical Incident,12/03/2010,12/03/2010,12/03/2010 06:56:26 PM,12/03/2010 06:57:16 PM,12/03/2010 06:57:55 PM,12/03/2010 06:59:05 PM,12/03/2010 07:00:13 PM,04/25/2016 02:07:18 PM,04/25/2016 02:07:18 PM,No Merit,12/03/2010 07:02:44 PM,200 Block of FILLMORE ST,SF,94117,B05,6,3526,3,3,3,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7718667121551, -122.430462821161)",103370296-E06 -110800153,B10,11026351,Traffic Collision,03/21/2011,03/21/2011,03/21/2011 10:30:23 AM,03/21/2011 10:30:24 AM,03/21/2011 10:31:54 AM,03/21/2011 10:32:07 AM,03/21/2011 10:35:19 AM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 11:19:46 AM,3RD ST/23RD ST,SF,94107,B10,25,2574,3,3,3,false,,1,CHIEF,4,10,10,Potrero Hill,"(37.7553898860696, -122.388001122896)",110800153-B10 -112750338,E17,11091147,Vehicle Fire,10/02/2011,10/02/2011,10/02/2011 08:00:13 PM,10/02/2011 08:01:10 PM,10/02/2011 08:01:21 PM,10/02/2011 08:02:09 PM,10/02/2011 08:04:50 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/02/2011 08:30:58 PM,1100 Block of THOMAS AVE,SF,94124,B10,17,6653,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7256842076572, -122.382834220833)",112750338-E17 -131420069,B10,13048051,Medical Incident,05/22/2013,05/21/2013,05/22/2013 06:44:18 AM,05/22/2013 06:45:18 AM,05/22/2013 06:58:06 AM,05/22/2013 06:58:10 AM,05/22/2013 07:03:56 AM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,Other,05/22/2013 07:17:49 AM,1300 Block of ARMSTRONG AVE,SF,94124,B10,17,6652,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7235252688106, -122.387602130906)",131420069-B10 -160274146,85,16010911,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:45:25 PM,01/27/2016 11:45:56 PM,01/27/2016 11:46:35 PM,01/27/2016 11:46:41 PM,01/27/2016 11:54:18 PM,01/28/2016 12:16:42 AM,01/28/2016 12:26:28 AM,Code 2 Transport,01/28/2016 01:08:11 AM,1300 Block of 31ST AVE,San Francisco,94122,B08,23,7536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7620615488511, -122.489987687831)",160274146-85 -102340280,T18,10073708,Medical Incident,08/22/2010,08/22/2010,08/22/2010 06:09:44 PM,08/22/2010 06:10:18 PM,08/22/2010 06:10:58 PM,08/22/2010 06:11:47 PM,08/22/2010 06:13:24 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:57 PM,Other,08/22/2010 06:32:27 PM,2900 Block of PACHECO ST,SF,94116,B08,18,7544,3,2,2,true,,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7498790783583, -122.491752271532)",102340280-T18 -120540376,79,12017989,Medical Incident,02/23/2012,02/23/2012,02/23/2012 10:10:07 PM,02/23/2012 10:11:42 PM,02/23/2012 10:11:56 PM,02/23/2012 10:12:29 PM,02/23/2012 10:16:41 PM,02/23/2012 10:33:16 PM,02/23/2012 10:55:05 PM,Code 2 Transport,02/24/2012 12:02:23 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",120540376-79 -133010211,67,13102307,Medical Incident,10/28/2013,10/28/2013,10/28/2013 12:40:53 PM,10/28/2013 12:41:26 PM,10/28/2013 12:43:15 PM,10/28/2013 12:44:13 PM,10/28/2013 12:51:07 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/28/2013 12:53:49 PM,3500 Block of 23RD ST,SF,94110,B06,11,5512,E,2,2,true,Non Life-threatening,1,MEDIC,3,6,8,Mission,"(37.7535600538257, -122.422267918951)",133010211-67 -160764213,AM22,16030391,Medical Incident,03/16/2016,03/16/2016,03/16/2016 11:14:46 PM,03/16/2016 11:14:46 PM,03/16/2016 11:14:59 PM,03/16/2016 11:15:36 PM,03/16/2016 11:29:30 PM,03/16/2016 11:50:27 PM,03/17/2016 12:08:45 AM,Code 2 Transport,03/17/2016 12:36:10 AM,0 Block of EMERY LN,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",160764213-AM22 -122300265,77,12076288,Medical Incident,08/17/2012,08/17/2012,08/17/2012 03:07:20 PM,08/17/2012 03:09:29 PM,08/17/2012 03:09:38 PM,08/17/2012 03:10:19 PM,08/17/2012 03:25:33 PM,08/17/2012 04:01:17 PM,08/17/2012 04:23:59 PM,Code 2 Transport,08/17/2012 04:43:28 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",122300265-77 -132290213,67,13077319,Traffic Collision,08/17/2013,08/17/2013,08/17/2013 01:27:40 PM,08/17/2013 01:28:28 PM,08/17/2013 01:29:19 PM,08/17/2013 01:29:52 PM,08/17/2013 01:43:16 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Patient Declined Transport,08/17/2013 02:10:43 PM,TAYLOR ST/CHESTNUT ST,SF,94133,B01,28,1434,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8035423241693, -122.414876785081)",132290213-67 -120810332,AM10,12027012,Medical Incident,03/21/2012,03/21/2012,03/21/2012 07:45:44 PM,03/21/2012 07:47:51 PM,03/21/2012 07:48:21 PM,03/21/2012 07:48:53 PM,03/21/2012 07:57:09 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Gone on Arrival,03/21/2012 08:03:34 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",120810332-AM10 -133270389,E18,13111248,Medical Incident,11/23/2013,11/23/2013,11/23/2013 08:47:51 PM,11/23/2013 08:49:56 PM,11/23/2013 08:50:03 PM,11/23/2013 08:51:01 PM,11/23/2013 08:56:03 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 09:02:08 PM,4300 Block of JUDAH ST,SF,94122,B08,23,7723,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7603609128578, -122.508608240441)",133270389-E18 -160412771,66,16016558,Medical Incident,02/10/2016,02/10/2016,02/10/2016 05:04:19 PM,02/10/2016 05:06:28 PM,02/10/2016 05:08:22 PM,02/10/2016 05:08:39 PM,02/10/2016 05:35:15 PM,02/10/2016 06:00:38 PM,02/10/2016 06:18:18 PM,Code 2 Transport,02/10/2016 07:04:24 PM,1500 Block of PERSHING DR,Presidio,94129,B99,51,4617,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.7928431532625, -122.477522249769)",160412771-66 -120430293,E03,12014497,Medical Incident,02/12/2012,02/12/2012,02/12/2012 07:47:32 PM,02/12/2012 07:49:55 PM,02/12/2012 07:50:13 PM,02/12/2012 07:51:33 PM,02/12/2012 07:53:09 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/12/2012 08:08:52 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",120430293-E03 -121850278,86,12061699,Medical Incident,07/03/2012,07/03/2012,07/03/2012 04:41:21 PM,07/03/2012 04:43:41 PM,07/03/2012 04:45:41 PM,07/03/2012 04:45:55 PM,07/03/2012 04:54:40 PM,07/03/2012 05:11:25 PM,07/03/2012 05:56:00 PM,Code 2 Transport,07/03/2012 06:01:09 PM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",121850278-86 -131750032,66,13059255,Medical Incident,06/24/2013,06/23/2013,06/24/2013 03:42:22 AM,06/24/2013 03:42:55 AM,06/24/2013 03:43:18 AM,06/24/2013 03:43:38 AM,06/24/2013 03:48:19 AM,06/24/2013 04:07:20 AM,06/24/2013 04:21:10 AM,Code 2 Transport,06/24/2013 04:51:55 AM,600 Block of STEINER ST,SF,94117,B05,21,3631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.7751510634662, -122.432804075352)",131750032-66 -160263489,53,16010464,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:40:02 PM,01/26/2016 08:41:37 PM,01/26/2016 08:42:10 PM,01/26/2016 08:42:23 PM,01/26/2016 08:50:42 PM,01/26/2016 09:01:08 PM,01/26/2016 09:06:29 PM,Code 2 Transport,01/26/2016 09:58:40 PM,2100 Block of POLK ST,San Francisco,94109,B04,41,3126,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7964138831057, -122.421932885069)",160263489-53 -140540191,T19,14018294,Gas Leak (Natural and LP Gases),02/23/2014,02/23/2014,02/23/2014 02:59:27 PM,02/23/2014 03:00:17 PM,02/23/2014 03:00:57 PM,02/23/2014 03:01:55 PM,02/23/2014 03:04:57 PM,04/25/2016 01:48:04 PM,04/25/2016 01:48:04 PM,Fire,02/23/2014 03:27:09 PM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",140540191-T19 -160153442,85,16006143,Medical Incident,01/15/2016,01/15/2016,01/15/2016 07:53:56 PM,01/15/2016 07:56:57 PM,01/15/2016 07:57:41 PM,01/15/2016 07:57:56 PM,01/15/2016 08:04:38 PM,01/15/2016 08:24:15 PM,01/15/2016 08:26:52 PM,Code 2 Transport,01/15/2016 08:42:39 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160153442-85 -121370073,E19,12045431,Alarms,05/16/2012,05/15/2012,05/16/2012 07:05:02 AM,05/16/2012 07:06:31 AM,05/16/2012 07:07:00 AM,05/16/2012 07:08:59 AM,05/16/2012 07:11:30 AM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,Other,05/16/2012 07:34:22 AM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",121370073-E19 -132460049,E41,13082898,Electrical Hazard,09/03/2013,09/02/2013,09/03/2013 05:58:12 AM,09/03/2013 06:00:58 AM,09/03/2013 06:01:23 AM,09/03/2013 06:03:05 AM,09/03/2013 06:06:10 AM,04/25/2016 01:50:59 PM,04/25/2016 01:50:59 PM,Fire,09/03/2013 06:17:08 AM,1900 Block of HYDE ST,SF,94109,B01,41,1611,3,3,3,true,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.7986550933007, -122.418868737628)",132460049-E41 -160091221,77,16003606,Medical Incident,01/09/2016,01/09/2016,01/09/2016 11:03:19 AM,01/09/2016 11:04:36 AM,01/09/2016 11:04:58 AM,01/09/2016 11:06:05 AM,01/09/2016 11:09:17 AM,01/09/2016 11:23:20 AM,01/09/2016 11:39:47 AM,Code 2 Transport,01/09/2016 12:06:30 PM,1300 Block of 30TH AVE,San Francisco,94122,B08,23,7536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7621150161966, -122.488775364037)",160091221-77 -113520359,99,11117013,Medical Incident,12/18/2011,12/18/2011,12/18/2011 09:26:39 PM,12/18/2011 09:27:43 PM,12/18/2011 09:27:58 PM,12/18/2011 09:28:49 PM,12/18/2011 09:29:51 PM,12/18/2011 09:51:56 PM,12/18/2011 10:13:03 PM,Code 2 Transport,12/18/2011 10:21:55 PM,2200 Block of BAY ST,SF,94123,B04,16,4212,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8016779500291, -122.444047061113)",113520359-99 -133350135,B07,13113533,Water Rescue,12/01/2013,12/01/2013,12/01/2013 10:48:00 AM,12/01/2013 10:49:43 AM,12/01/2013 10:51:22 AM,12/01/2013 10:51:42 AM,12/01/2013 10:56:02 AM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,12/01/2013 11:03:44 AM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,Fire,1,CHIEF,3,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",133350135-B07 -160502970,53,16020205,Medical Incident,02/19/2016,02/19/2016,02/19/2016 06:20:39 PM,02/19/2016 06:20:39 PM,02/19/2016 06:21:32 PM,02/19/2016 06:21:44 PM,02/19/2016 06:39:40 PM,02/19/2016 06:39:42 PM,02/19/2016 06:52:57 PM,Code 2 Transport,02/19/2016 07:34:33 PM,LEAVENWORTH ST/POST ST,San Francisco,94109,B04,3,1543,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7874538432357, -122.414995423077)",160502970-53 -113410213,B09,11113067,Alarms,12/07/2011,12/07/2011,12/07/2011 12:47:48 PM,12/07/2011 12:48:33 PM,12/07/2011 12:48:46 PM,12/07/2011 12:50:12 PM,12/07/2011 12:56:31 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/07/2011 01:07:53 PM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,false,,1,CHIEF,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",113410213-B09 -160773291,88,16030736,Medical Incident,03/17/2016,03/17/2016,03/17/2016 06:19:39 PM,03/17/2016 06:20:31 PM,03/17/2016 06:21:59 PM,03/17/2016 06:21:59 PM,03/17/2016 06:21:59 PM,03/17/2016 06:38:41 PM,03/17/2016 06:59:47 PM,Code 2 Transport,03/17/2016 07:51:21 PM,CESAR CHAVEZ ST/VALENCIA ST,San Francisco,94110,B06,11,555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7481252844229, -122.420278831044)",160773291-88 -160253526,75,16010117,Medical Incident,01/25/2016,01/25/2016,01/25/2016 09:10:59 PM,01/25/2016 09:14:03 PM,01/25/2016 09:14:15 PM,01/25/2016 09:14:23 PM,01/25/2016 09:31:49 PM,01/25/2016 09:44:37 PM,01/25/2016 10:06:38 PM,Code 2 Transport,01/25/2016 10:47:58 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160253526-75 -102370198,KM05,10074728,Medical Incident,08/25/2010,08/25/2010,08/25/2010 12:48:19 PM,08/25/2010 12:49:37 PM,08/25/2010 12:50:25 PM,08/25/2010 12:51:13 PM,08/25/2010 12:54:46 PM,08/25/2010 01:19:33 PM,08/25/2010 01:21:39 PM,Code 2 Transport,08/25/2010 01:47:38 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,PRIVATE,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",102370198-KM05 -112650392,E07,11087671,Traffic Collision,09/22/2011,09/22/2011,09/22/2011 08:27:21 PM,09/22/2011 08:27:21 PM,09/22/2011 08:28:08 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,Other,09/22/2011 08:30:19 PM,VALENCIA ST/24TH ST,SF,94110,B06,11,5512,3,3,3,true,,1,ENGINE,3,6,9,Mission,"(37.7521036457482, -122.420664802284)",112650392-E07 -120350365,59,12011792,Medical Incident,02/04/2012,02/04/2012,02/04/2012 09:29:55 PM,02/04/2012 09:30:43 PM,02/04/2012 09:30:53 PM,02/04/2012 09:30:58 PM,04/25/2016 02:00:17 PM,02/04/2012 09:52:03 PM,02/04/2012 10:08:24 PM,Code 2 Transport,02/04/2012 10:31:25 PM,1400 Block of SANCHEZ ST,SF,94131,B06,11,5552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7463573166581, -122.429223693855)",120350365-59 -160052900,AM06,16002112,Medical Incident,01/05/2016,01/05/2016,01/05/2016 06:10:43 PM,01/05/2016 06:12:46 PM,01/05/2016 06:13:26 PM,01/05/2016 06:14:10 PM,01/05/2016 06:25:21 PM,01/05/2016 06:35:33 PM,01/05/2016 06:56:18 PM,Code 2 Transport,01/05/2016 07:17:08 PM,1700 Block of VALLEJO ST,San Francisco,94123,B04,38,3232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7963225459704, -122.426060344087)",160052900-AM06 -160330580,65,16012862,Medical Incident,02/02/2016,02/01/2016,02/02/2016 07:20:07 AM,02/02/2016 07:21:39 AM,02/02/2016 07:22:04 AM,02/02/2016 07:22:12 AM,02/02/2016 07:33:16 AM,02/02/2016 08:02:46 AM,02/02/2016 08:30:13 AM,Code 2 Transport,02/02/2016 09:03:24 AM,200 Block of ARBOR ST,San Francisco,94131,B06,26,8174,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Glen Park,"(37.7375186872074, -122.437845566806)",160330580-65 -120990184,E21,12032812,Medical Incident,04/08/2012,04/08/2012,04/08/2012 02:48:39 PM,04/08/2012 02:49:05 PM,04/08/2012 02:49:13 PM,04/08/2012 02:49:37 PM,04/08/2012 02:51:59 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 02:58:07 PM,0 Block of SHRADER ST,SF,94117,B05,21,4542,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",120990184-E21 -160061758,57,16002401,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:54:19 PM,01/06/2016 12:56:33 PM,01/06/2016 01:00:52 PM,01/06/2016 01:01:04 PM,01/06/2016 01:18:33 PM,01/06/2016 01:24:19 PM,01/06/2016 01:41:18 PM,Code 2 Transport,01/06/2016 02:23:55 PM,2300 Block of STOCKTON ST,San Francisco,94133,B01,28,1262,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8074362035545, -122.410522944209)",160061758-57 -112020144,E15,11066605,Alarms,07/21/2011,07/21/2011,07/21/2011 10:29:54 AM,07/21/2011 10:30:48 AM,07/21/2011 10:31:05 AM,07/21/2011 10:31:46 AM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/21/2011 10:50:46 AM,4100 Block of 19TH AVE,SF,94132,B09,33,8417,3,3,3,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7140861959195, -122.469495385338)",112020144-E15 -112970405,73,11098698,Medical Incident,10/24/2011,10/24/2011,10/24/2011 09:36:45 PM,10/24/2011 09:37:31 PM,10/24/2011 09:37:40 PM,10/24/2011 09:37:49 PM,10/24/2011 09:42:18 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,No Merit,10/24/2011 09:56:22 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",112970405-73 -102970020,87,10094608,Medical Incident,10/24/2010,10/23/2010,10/24/2010 01:01:24 AM,10/24/2010 01:02:09 AM,10/24/2010 01:02:47 AM,10/24/2010 01:03:10 AM,10/24/2010 01:11:52 AM,10/24/2010 01:34:49 AM,10/24/2010 01:49:58 AM,Code 2 Transport,10/24/2010 02:05:42 AM,400 Block of STOCKTON ST,SF,94108,B01,1,1324,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7899091346907, -122.406975887776)",102970020-87 -103430004,56,10109696,Medical Incident,12/09/2010,12/08/2010,12/09/2010 12:08:25 AM,12/09/2010 12:09:28 AM,12/09/2010 12:09:59 AM,12/09/2010 12:11:20 AM,12/09/2010 12:17:38 AM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/09/2010 12:23:07 AM,2800 Block of MISSION ST,SF,94110,B06,11,5529,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",103430004-56 -110080219,92,11002704,Medical Incident,01/08/2011,01/08/2011,01/08/2011 02:30:00 PM,01/08/2011 02:30:39 PM,01/08/2011 02:31:20 PM,01/08/2011 02:31:35 PM,01/08/2011 02:35:02 PM,01/08/2011 03:01:17 PM,01/08/2011 03:21:31 PM,Code 2 Transport,01/08/2011 03:53:18 PM,700 Block of 11TH AVE,SF,94118,B07,31,7143,3,3,3,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.7741941609941, -122.469090601937)",110080219-92 -111060116,RC1,11035021,Medical Incident,04/16/2011,04/16/2011,04/16/2011 09:47:24 AM,04/16/2011 09:47:42 AM,04/16/2011 09:47:56 AM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/16/2011 10:02:19 AM,400 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7810688918781, -122.407387172098)",111060116-RC1 -160312294,AM08,16012210,Medical Incident,01/31/2016,01/31/2016,01/31/2016 03:19:25 PM,01/31/2016 03:19:25 PM,01/31/2016 04:04:16 PM,01/31/2016 04:04:48 PM,01/31/2016 04:12:19 PM,01/31/2016 04:22:53 PM,01/31/2016 04:33:22 PM,Code 2 Transport,01/31/2016 05:06:57 PM,700 Block of CAPP ST,San Francisco,94110,B06,7,5472,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7547064357942, -122.417513465479)",160312294-AM08 -102410040,72,10075906,Medical Incident,08/29/2010,08/28/2010,08/29/2010 03:01:59 AM,08/29/2010 03:04:39 AM,08/29/2010 03:08:10 AM,08/29/2010 03:08:19 AM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,04/25/2016 02:08:51 PM,300 Block of RICHLAND AVE,SF,94110,B06,32,5644,1,3,3,true,,1,MEDIC,3,6,9,Bernal Heights,"(37.7357456024866, -122.418457095156)",102410040-72 -132880085,AM04,13097904,Medical Incident,10/15/2013,10/14/2013,10/15/2013 07:53:55 AM,10/15/2013 07:57:08 AM,10/15/2013 07:58:09 AM,10/15/2013 07:59:06 AM,10/15/2013 08:02:48 AM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,No Merit,10/15/2013 08:13:21 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",132880085-AM04 -122700061,E19,12089029,Medical Incident,09/26/2012,09/26/2012,09/26/2012 08:11:59 AM,09/26/2012 08:13:28 AM,09/26/2012 08:13:48 AM,09/26/2012 08:15:19 AM,09/26/2012 08:18:04 AM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,09/26/2012 08:31:12 AM,2900 Block of 26TH AVE,SF,94132,B08,19,8735,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.733423029706, -122.482013815028)",122700061-E19 -133000235,T03,13101988,Structure Fire,10/27/2013,10/27/2013,10/27/2013 02:45:49 PM,10/27/2013 02:46:18 PM,10/27/2013 02:46:44 PM,04/25/2016 01:50:03 PM,10/27/2013 02:49:20 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 02:52:22 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",133000235-T03 -122880184,B08,12095284,Gas Leak (Natural and LP Gases),10/14/2012,10/14/2012,10/14/2012 01:12:00 PM,10/14/2012 01:13:36 PM,10/14/2012 01:13:45 PM,10/14/2012 01:17:36 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 01:21:21 PM,TARAVAL ST/19TH AV,SF,94116,B08,40,7376,3,3,3,false,Alarm,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7430518135439, -122.475644467981)",122880184-B08 -113040157,E37,11100902,Medical Incident,10/31/2011,10/31/2011,10/31/2011 11:22:40 AM,10/31/2011 11:22:48 AM,10/31/2011 11:22:58 AM,10/31/2011 11:24:28 AM,10/31/2011 11:26:46 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 11:38:18 AM,200 Block of CONNECTICUT ST,SF,94107,B03,37,2462,3,3,3,true,,1,ENGINE,1,3,10,Potrero Hill,"(37.7631535261451, -122.397622855701)",113040157-E37 -120790199,68,12026242,Medical Incident,03/19/2012,03/19/2012,03/19/2012 12:54:16 PM,03/19/2012 12:57:32 PM,03/19/2012 12:57:49 PM,03/19/2012 12:58:07 PM,03/19/2012 01:08:40 PM,03/19/2012 01:28:01 PM,03/19/2012 01:50:20 PM,Code 2 Transport,03/19/2012 02:12:26 PM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",120790199-68 -113020381,E01,11100367,Medical Incident,10/29/2011,10/29/2011,10/29/2011 10:52:34 PM,10/29/2011 10:54:04 PM,10/29/2011 10:54:20 PM,10/29/2011 10:54:30 PM,10/29/2011 10:54:55 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/29/2011 11:09:18 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,,1,ENGINE,1,3,3,Tenderloin,"(37.7854941424186, -122.408270724034)",113020381-E01 -132640249,E14,13089560,Structure Fire,09/21/2013,09/21/2013,09/21/2013 02:01:11 PM,09/21/2013 02:01:12 PM,09/21/2013 02:02:05 PM,09/21/2013 02:04:54 PM,09/21/2013 02:05:49 PM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Fire,09/21/2013 02:19:57 PM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",132640249-E14 -113430148,AM16,11113712,Medical Incident,12/09/2011,12/09/2011,12/09/2011 10:35:53 AM,12/09/2011 10:37:09 AM,12/09/2011 10:37:55 AM,04/25/2016 02:01:14 PM,12/09/2011 10:50:17 AM,12/09/2011 11:09:40 AM,04/25/2016 02:01:14 PM,Code 2 Transport,12/09/2011 11:42:37 AM,1500 Block of 21ST AVE,SF,94122,B08,22,7427,3,3,3,false,,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7588080678008, -122.478870866013)",113430148-AM16 -113300212,E01,11109468,Medical Incident,11/26/2011,11/26/2011,11/26/2011 05:59:59 PM,11/26/2011 06:01:31 PM,11/26/2011 06:01:51 PM,04/25/2016 02:01:27 PM,11/26/2011 06:04:02 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/26/2011 06:08:17 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",113300212-E01 -122360096,89,12078125,Medical Incident,08/23/2012,08/23/2012,08/23/2012 10:03:13 AM,08/23/2012 10:05:32 AM,08/23/2012 10:05:42 AM,04/25/2016 01:57:06 PM,08/23/2012 10:10:24 AM,08/23/2012 10:39:53 AM,08/23/2012 10:43:31 AM,Code 2 Transport,08/23/2012 11:30:35 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",122360096-89 -111140289,D2,11037777,Structure Fire,04/24/2011,04/24/2011,04/24/2011 09:40:54 PM,04/24/2011 09:42:23 PM,04/24/2011 09:42:42 PM,04/24/2011 09:43:43 PM,04/24/2011 09:44:30 PM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 10:02:36 PM,1400 Block of EDDY ST,SF,94115,B05,5,3515,3,3,3,false,,1,CHIEF,2,5,5,Western Addition,"(37.7815912239311, -122.431479968624)",111140289-D2 -132060012,E01,13069612,Medical Incident,07/25/2013,07/24/2013,07/25/2013 01:06:46 AM,07/25/2013 01:08:11 AM,07/25/2013 01:09:02 AM,07/25/2013 01:10:35 AM,07/25/2013 01:12:12 AM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Other,07/25/2013 01:21:42 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",132060012-E01 -110510008,KM11,11016736,Medical Incident,02/20/2011,02/19/2011,02/20/2011 12:28:20 AM,02/20/2011 12:29:18 AM,02/20/2011 12:30:16 AM,02/20/2011 12:30:57 AM,02/20/2011 12:34:29 AM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Patient Declined Transport,02/20/2011 12:39:35 AM,200 Block of CAPP ST,SF,94110,B02,7,5246,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7627024067539, -122.418417366729)",110510008-KM11 -160191662,60,16007629,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:38:49 PM,01/19/2016 12:40:26 PM,01/19/2016 12:40:46 PM,01/19/2016 12:41:17 PM,01/19/2016 12:45:51 PM,01/19/2016 01:06:41 PM,01/19/2016 01:12:13 PM,Code 2 Transport,01/19/2016 01:53:54 PM,100 Block of OAK ST,San Francisco,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",160191662-60 -103140297,B04,10100771,Alarms,11/10/2010,11/10/2010,11/10/2010 06:00:30 PM,11/10/2010 06:01:36 PM,11/10/2010 06:02:04 PM,11/10/2010 06:03:03 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,Other,11/10/2010 06:12:42 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.8058923703038, -122.431246520303)",103140297-B04 -133140023,RS1,13106621,Structure Fire,11/10/2013,11/09/2013,11/10/2013 01:34:27 AM,11/10/2013 01:35:43 AM,11/10/2013 01:36:36 AM,11/10/2013 01:38:17 AM,11/10/2013 01:41:56 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/10/2013 02:02:28 AM,1300 Block of CLAY ST,SF,94109,B01,41,1536,3,3,3,false,Alarm,1,RESCUE SQUAD,8,1,3,Nob Hill,"(37.7931726101237, -122.415302531795)",133140023-RS1 -110560241,T07,11018493,Alarms,02/25/2011,02/25/2011,02/25/2011 04:14:19 PM,02/25/2011 04:15:08 PM,02/25/2011 04:15:35 PM,02/25/2011 04:18:38 PM,02/25/2011 04:20:06 PM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/25/2011 04:28:07 PM,0 Block of ISIS ST,SF,94103,B02,36,5121,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.7701114351492, -122.414683702768)",110560241-T07 -123090399,E41,12102938,Medical Incident,11/04/2012,11/04/2012,11/04/2012 09:27:05 PM,11/04/2012 09:29:37 PM,11/04/2012 09:29:46 PM,11/04/2012 09:30:44 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 09:32:09 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,E,3,3,false,Potentially Life-Threatening,1,ENGINE,4,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",123090399-E41 -121930263,B08,12064309,Other,07/11/2012,07/11/2012,07/11/2012 04:44:35 PM,07/11/2012 04:45:09 PM,07/11/2012 04:46:09 PM,07/11/2012 04:46:49 PM,07/11/2012 04:52:11 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 05:51:29 PM,31ST AV/ORTEGA ST,SF,94116,B08,18,7533,3,3,3,false,Alarm,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7518068712257, -122.489193567556)",121930263-B08 -103040270,B02,10097196,Water Rescue,10/31/2010,10/31/2010,10/31/2010 03:55:53 PM,10/31/2010 03:55:57 PM,10/31/2010 03:57:51 PM,10/31/2010 04:00:22 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 04:02:17 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,E,E,3,false,,1,CHIEF,16,1,3,North Beach,"(37.8081576930541, -122.412496867032)",103040270-B02 -130520227,82,13017613,Medical Incident,02/21/2013,02/21/2013,02/21/2013 02:37:41 PM,02/21/2013 02:39:16 PM,02/21/2013 02:56:23 PM,02/21/2013 02:56:40 PM,02/21/2013 03:06:12 PM,02/21/2013 03:24:14 PM,02/21/2013 03:30:46 PM,Code 2 Transport,02/21/2013 04:05:50 PM,200 Block of VICTORIA ST,SF,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7152017916532, -122.465379533381)",130520227-82 -123350309,E12,12111419,Administrative,11/30/2012,11/30/2012,11/30/2012 03:27:47 PM,11/30/2012 03:27:58 PM,11/30/2012 03:28:58 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,11/30/2012 03:29:41 PM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",123350309-E12 -160553721,AM18,16022148,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:35:43 PM,02/24/2016 08:35:43 PM,02/24/2016 08:36:59 PM,02/24/2016 08:37:24 PM,02/24/2016 08:46:20 PM,02/24/2016 09:13:18 PM,02/24/2016 09:21:39 PM,Code 2 Transport,02/24/2016 10:02:36 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160553721-AM18 -110020198,RC2,11000675,Medical Incident,01/02/2011,01/02/2011,01/02/2011 01:55:17 PM,01/02/2011 01:55:41 PM,01/02/2011 01:55:53 PM,01/02/2011 01:58:33 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 02:01:56 PM,2500 Block of 25TH AVE,SF,94116,B08,40,7462,3,3,3,true,,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7399677614762, -122.481993144476)",110020198-RC2 -160441351,71,16017661,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:30:56 AM,02/13/2016 11:33:39 AM,02/13/2016 11:34:01 AM,02/13/2016 11:34:18 AM,02/13/2016 11:53:01 AM,02/13/2016 12:04:40 PM,02/13/2016 12:10:58 PM,Code 2 Transport,02/13/2016 01:13:27 PM,2400 Block of HARRISON ST,San Francisco,94110,B06,7,545,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7582246777645, -122.412493470285)",160441351-71 -103180115,94,10101875,Medical Incident,11/14/2010,11/14/2010,11/14/2010 08:39:19 AM,11/14/2010 08:40:04 AM,11/14/2010 08:40:18 AM,11/14/2010 08:43:44 AM,11/14/2010 08:55:50 AM,11/14/2010 09:00:59 AM,11/14/2010 09:30:24 AM,Code 2 Transport,11/14/2010 09:50:55 AM,800 Block of GARFIELD ST,SF,94132,B09,19,8447,3,2,2,true,,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7197041547524, -122.470302710071)",103180115-94 -160210947,71,16008299,Medical Incident,01/21/2016,01/21/2016,01/21/2016 09:13:57 AM,01/21/2016 09:14:37 AM,01/21/2016 09:15:08 AM,01/21/2016 09:17:03 AM,01/21/2016 09:23:58 AM,01/21/2016 09:43:27 AM,01/21/2016 09:56:48 AM,Code 2 Transport,01/21/2016 10:49:27 AM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7695797471896, -122.419876917134)",160210947-71 -120620381,E43,12020568,Medical Incident,03/02/2012,03/02/2012,03/02/2012 10:40:19 PM,03/02/2012 10:44:17 PM,03/02/2012 10:44:26 PM,04/25/2016 01:59:52 PM,03/02/2012 10:47:56 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/02/2012 11:33:39 PM,1300 Block of GENEVA AVE,SF,94112,B09,43,6173,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7132022363182, -122.434194120521)",120620381-E43 -113070176,E28,11101982,Administrative,11/03/2011,11/03/2011,11/03/2011 12:41:33 PM,11/03/2011 12:41:36 PM,11/03/2011 12:42:15 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/03/2011 12:42:40 PM,1800 Block of STOCKTON ST,SF,94133,B01,28,1335,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8027782547729, -122.409586942281)",113070176-E28 -131470276,AM04,13049966,Medical Incident,05/27/2013,05/27/2013,05/27/2013 08:18:55 PM,05/27/2013 08:20:01 PM,05/27/2013 08:20:56 PM,05/27/2013 08:21:39 PM,05/27/2013 08:24:37 PM,05/27/2013 08:41:47 PM,05/27/2013 08:59:59 PM,Code 2 Transport,05/27/2013 09:40:14 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",131470276-AM04 -102760237,E11,10087777,Medical Incident,10/03/2010,10/03/2010,10/03/2010 02:57:20 PM,10/03/2010 02:58:35 PM,10/03/2010 02:59:20 PM,10/03/2010 03:00:08 PM,10/03/2010 03:02:05 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 03:16:58 PM,1200 Block of VALENCIA ST,SF,94110,B06,11,5512,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7528993636297, -122.420807462822)",102760237-E11 -160920547,64,16036336,Medical Incident,04/01/2016,03/31/2016,04/01/2016 07:02:38 AM,04/01/2016 07:04:48 AM,04/01/2016 07:06:33 AM,04/01/2016 07:06:56 AM,04/01/2016 07:30:32 AM,04/01/2016 07:44:42 AM,04/01/2016 08:11:49 AM,Patient Declined Transport,04/01/2016 08:45:25 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160920547-64 -160720281,KM07,16028451,Medical Incident,03/12/2016,03/11/2016,03/12/2016 01:57:12 AM,03/12/2016 01:59:09 AM,03/12/2016 02:01:34 AM,03/12/2016 02:01:52 AM,03/12/2016 02:11:08 AM,03/12/2016 02:28:24 AM,03/12/2016 02:34:36 AM,Code 2 Transport,03/12/2016 02:52:24 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160720281-KM07 -113630059,92,11120494,Medical Incident,12/29/2011,12/28/2011,12/29/2011 07:42:07 AM,12/29/2011 07:42:45 AM,12/29/2011 07:42:57 AM,12/29/2011 07:43:15 AM,12/29/2011 07:52:30 AM,12/29/2011 08:04:02 AM,12/29/2011 08:14:57 AM,Code 2 Transport,12/29/2011 08:41:12 AM,4000 Block of 19TH ST,SF,94114,B06,6,5437,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7593350322467, -122.433185899608)",113630059-92 -140320075,E14,14010752,Smoke Investigation (Outside),02/01/2014,01/31/2014,02/01/2014 07:25:50 AM,02/01/2014 07:25:50 AM,02/01/2014 07:45:22 AM,02/01/2014 07:45:45 AM,02/01/2014 07:57:53 AM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Fire,02/01/2014 09:45:50 AM,CALL BOX: PALACE OF LEGION OF HONOR,SF,94121,B07,34,7235,,3,3,true,Alarm,1,ENGINE,3,7,1,Lincoln Park,"(37.7849108847772, -122.499514565485)",140320075-E14 -123450362,B09,12115475,Alarms,12/10/2012,12/10/2012,12/10/2012 06:56:28 PM,12/10/2012 06:56:32 PM,12/10/2012 06:56:38 PM,12/10/2012 06:57:47 PM,12/10/2012 07:03:44 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 07:04:02 PM,200 Block of ARLETA AVE,SF,94134,B09,44,6312,3,3,3,false,Alarm,1,CHIEF,2,9,10,Visitacion Valley,"(37.7141378430387, -122.40785339643)",123450362-B09 -103450154,87,10110554,Medical Incident,12/11/2010,12/11/2010,12/11/2010 10:26:37 AM,12/11/2010 10:27:25 AM,12/11/2010 10:28:14 AM,12/11/2010 10:28:32 AM,12/11/2010 10:35:11 AM,12/11/2010 10:59:40 AM,12/11/2010 11:09:25 AM,Code 2 Transport,12/11/2010 11:38:04 AM,300 Block of 21ST AVE,SF,94121,B07,14,7172,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7812431352608, -122.480589412063)",103450154-87 -160821920,50,16032577,Medical Incident,03/22/2016,03/22/2016,03/22/2016 01:28:22 PM,03/22/2016 01:28:22 PM,03/22/2016 01:28:40 PM,03/22/2016 01:28:50 PM,03/22/2016 01:37:27 PM,03/22/2016 01:47:18 PM,03/22/2016 02:05:14 PM,Code 2 Transport,03/22/2016 02:49:58 PM,100 Block of SANTOS ST,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",160821920-50 -112030447,86,11067239,Medical Incident,07/22/2011,07/22/2011,07/22/2011 11:52:32 PM,07/22/2011 11:53:48 PM,07/22/2011 11:55:30 PM,07/22/2011 11:55:40 PM,07/23/2011 12:03:27 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Patient Declined Transport,07/23/2011 12:24:06 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,1,1,2,true,,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",112030447-86 -120480184,D2,12015910,Structure Fire,02/17/2012,02/17/2012,02/17/2012 01:27:04 PM,02/17/2012 01:27:42 PM,02/17/2012 01:27:59 PM,02/17/2012 01:28:11 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/17/2012 01:36:18 PM,1300 Block of 31ST AVE,SF,94122,B08,23,7536,3,3,3,false,Fire,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7620676593975, -122.489849528292)",120480184-D2 -112440178,T03,11080440,Structure Fire,09/01/2011,09/01/2011,09/01/2011 12:53:34 PM,09/01/2011 12:53:35 PM,09/01/2011 12:53:51 PM,09/01/2011 12:54:50 PM,09/01/2011 12:55:57 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 12:56:01 PM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,,1,TRUCK,2,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",112440178-T03 -132170157,E11,13073279,Medical Incident,08/05/2013,08/05/2013,08/05/2013 12:23:03 PM,08/05/2013 12:23:19 PM,08/05/2013 12:24:01 PM,08/05/2013 12:25:25 PM,08/05/2013 12:26:27 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Patient Declined Transport,08/05/2013 12:36:16 PM,24TH ST/DOLORES ST,SF,94110,B06,11,5523,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.751841785704, -122.4251525443)",132170157-E11 -160232986,52,16009279,Medical Incident,01/23/2016,01/23/2016,01/23/2016 06:51:19 PM,01/23/2016 06:51:19 PM,01/23/2016 06:52:32 PM,01/23/2016 06:52:41 PM,01/23/2016 07:10:06 PM,01/23/2016 07:34:46 PM,01/23/2016 07:56:28 PM,Code 2 Transport,01/23/2016 08:34:23 PM,1200 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7211257483752, -122.389791072632)",160232986-52 -160151114,AM10,16005918,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:04:03 AM,01/15/2016 10:04:03 AM,01/15/2016 10:05:03 AM,01/15/2016 10:05:42 AM,01/15/2016 10:15:41 AM,01/15/2016 10:21:46 AM,01/15/2016 10:37:04 AM,Code 2 Transport,01/15/2016 11:00:21 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160151114-AM10 -113610231,E06,11119992,Medical Incident,12/27/2011,12/27/2011,12/27/2011 04:37:05 PM,12/27/2011 04:38:20 PM,12/27/2011 04:38:32 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 04:40:24 PM,16TH ST/VALENCIA ST,SF,94103,B02,6,5226,2,2,2,true,,1,ENGINE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",113610231-E06 -130720331,E38,13024119,Alarms,03/13/2013,03/13/2013,03/13/2013 06:40:32 PM,03/13/2013 06:41:29 PM,03/13/2013 06:41:42 PM,03/13/2013 06:42:46 PM,03/13/2013 06:44:05 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 06:45:28 PM,2400 Block of BUCHANAN ST,SF,94115,B04,38,3436,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7924401819216, -122.431245878232)",130720331-E38 -160703668,52,16028040,Medical Incident,03/10/2016,03/10/2016,03/10/2016 10:18:45 PM,03/10/2016 10:18:45 PM,03/10/2016 10:19:39 PM,03/10/2016 10:19:48 PM,03/10/2016 10:24:50 PM,03/10/2016 10:49:27 PM,03/10/2016 11:01:25 PM,Code 2 Transport,03/10/2016 11:36:44 PM,LAGUNA ST/PAGE ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7736662295799, -122.42570021092)",160703668-52 -160010547,AM20,16000110,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:02:26 AM,01/01/2016 02:05:21 AM,01/01/2016 02:06:00 AM,01/01/2016 02:12:54 AM,01/01/2016 02:32:33 AM,01/01/2016 02:32:36 AM,01/01/2016 02:54:44 AM,Code 2 Transport,01/01/2016 03:38:24 AM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",160010547-AM20 -130390049,E17,13013195,Medical Incident,02/08/2013,02/07/2013,02/08/2013 04:03:24 AM,02/08/2013 04:04:19 AM,02/08/2013 04:05:34 AM,02/08/2013 04:07:53 AM,02/08/2013 04:11:35 AM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Other,02/08/2013 04:16:26 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",130390049-E17 -121200257,T01,12039898,Alarms,04/29/2012,04/29/2012,04/29/2012 04:06:54 PM,04/29/2012 04:06:55 PM,04/29/2012 04:11:49 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 04:12:02 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",121200257-T01 -133530384,T02,13120085,Structure Fire,12/19/2013,12/19/2013,12/19/2013 10:22:41 PM,12/19/2013 10:24:15 PM,12/19/2013 10:24:56 PM,12/19/2013 10:26:35 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/19/2013 10:29:38 PM,500 Block of JACKSON ST,SF,94111,B01,13,1232,3,3,3,false,Alarm,1,TRUCK,9,1,3,Chinatown,"(37.7962022664393, -122.404766823685)",133530384-T02 -133540319,E17,13120375,Alarms,12/20/2013,12/20/2013,12/20/2013 05:00:25 PM,12/20/2013 05:02:00 PM,12/20/2013 05:02:17 PM,12/20/2013 05:04:26 PM,12/20/2013 05:06:21 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Other,12/20/2013 05:06:59 PM,800 Block of JAMESTOWN AVE,SF,94124,B10,17,6642,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7172230540399, -122.391149944463)",133540319-E17 -160443246,KM03,16017842,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:15:23 PM,02/13/2016 08:16:00 PM,02/13/2016 08:20:24 PM,02/13/2016 08:20:24 PM,02/13/2016 08:29:02 PM,02/13/2016 08:43:12 PM,02/13/2016 08:58:06 PM,Code 2 Transport,02/13/2016 09:36:26 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160443246-KM03 -131690274,E34,13057445,Alarms,06/18/2013,06/18/2013,06/18/2013 03:24:28 PM,06/18/2013 03:25:01 PM,06/18/2013 03:25:10 PM,06/18/2013 03:26:12 PM,06/18/2013 03:29:53 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 04:33:34 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,Alarm,1,ENGINE,1,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",131690274-E34 -121110317,E22,12036827,Traffic Collision,04/20/2012,04/20/2012,04/20/2012 05:26:39 PM,04/20/2012 05:26:39 PM,04/20/2012 05:27:02 PM,04/20/2012 05:28:28 PM,04/20/2012 05:31:59 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Patient Declined Transport,04/20/2012 05:56:47 PM,1600 Block of 12TH AVE,SF,94122,B08,22,735,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.757368162237, -122.469135934359)",121110317-E22 -132510023,E07,13084670,Medical Incident,09/08/2013,09/07/2013,09/08/2013 01:13:52 AM,09/08/2013 01:14:27 AM,09/08/2013 01:17:16 AM,09/08/2013 01:18:15 AM,09/08/2013 01:20:20 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 01:21:59 AM,17TH ST/MISSION ST,SF,94110,B02,7,5246,2,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7634292740134, -122.419512736792)",132510023-E07 -160301526,88,16011762,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:13:21 AM,01/30/2016 11:14:03 AM,01/30/2016 11:14:17 AM,01/30/2016 11:14:35 AM,01/30/2016 11:27:04 AM,01/30/2016 11:43:24 AM,01/30/2016 11:51:33 AM,Code 2 Transport,01/30/2016 12:29:56 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",160301526-88 -160281878,KM09,16011096,Medical Incident,01/28/2016,01/28/2016,01/28/2016 01:28:15 PM,01/28/2016 01:29:39 PM,01/28/2016 01:30:44 PM,01/28/2016 01:32:14 PM,01/28/2016 01:35:10 PM,01/28/2016 01:55:16 PM,01/28/2016 02:12:28 PM,Code 2 Transport,01/28/2016 03:01:47 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160281878-KM09 -131130267,E07,13038168,Medical Incident,04/23/2013,04/23/2013,04/23/2013 04:18:33 PM,04/23/2013 04:20:55 PM,04/23/2013 04:21:56 PM,04/23/2013 04:22:49 PM,04/23/2013 04:27:16 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 04:27:20 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7610397684815, -122.419213667994)",131130267-E07 -110490181,KM04,11016174,Medical Incident,02/18/2011,02/18/2011,02/18/2011 11:59:37 AM,02/18/2011 12:00:42 PM,02/18/2011 12:01:11 PM,02/18/2011 12:02:07 PM,02/18/2011 12:11:14 PM,02/18/2011 12:19:51 PM,02/18/2011 12:28:35 PM,Code 2 Transport,02/18/2011 01:03:48 PM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,2,2,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",110490181-KM04 -112370254,T09,11078246,Structure Fire,08/25/2011,08/25/2011,08/25/2011 02:53:42 PM,08/25/2011 02:55:44 PM,08/25/2011 02:55:58 PM,08/25/2011 02:56:55 PM,08/25/2011 03:01:48 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 03:03:34 PM,2100 Block of 3RD ST,SF,94107,B03,29,2466,3,3,3,false,,1,TRUCK,9,10,10,Potrero Hill,"(37.7624014116489, -122.388831971629)",112370254-T09 -160882637,KM05,16035034,Medical Incident,03/28/2016,03/28/2016,03/28/2016 04:38:04 PM,03/28/2016 04:38:59 PM,03/28/2016 04:39:37 PM,03/28/2016 04:39:50 PM,03/28/2016 04:42:55 PM,03/28/2016 05:11:18 PM,03/28/2016 05:30:15 PM,Code 2 Transport,03/28/2016 06:12:16 PM,2000 Block of FILLMORE ST,San Francisco,94115,B04,38,3543,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.788419608317, -122.433811733571)",160882637-KM05 -160362585,AM12,16014323,Medical Incident,02/05/2016,02/05/2016,02/05/2016 03:32:28 PM,02/05/2016 03:33:44 PM,02/05/2016 03:45:59 PM,02/05/2016 03:47:40 PM,02/05/2016 04:02:42 PM,02/05/2016 04:11:42 PM,02/05/2016 04:33:13 PM,Code 2 Transport,02/05/2016 04:59:17 PM,200 Block of MAIN ST,San Francisco,94105,B99,35,2117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7900295956883, -122.392583899031)",160362585-AM12 -131810352,86,13061720,Medical Incident,06/30/2013,06/30/2013,06/30/2013 06:04:34 PM,06/30/2013 06:05:19 PM,06/30/2013 06:05:34 PM,06/30/2013 06:06:37 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,06/30/2013 06:11:19 PM,KINGSTON ST/MISSION ST,SF,94110,B06,32,5626,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7417604896051, -122.422366461844)",131810352-86 -160181391,56,16007209,Medical Incident,01/18/2016,01/18/2016,01/18/2016 12:08:13 PM,01/18/2016 12:10:37 PM,01/18/2016 12:11:11 PM,01/18/2016 12:11:23 PM,01/18/2016 12:16:08 PM,01/18/2016 12:30:29 PM,01/18/2016 12:41:44 PM,Code 2 Transport,01/18/2016 01:12:44 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",160181391-56 -111850308,E14,11061249,Traffic Collision,07/04/2011,07/04/2011,07/04/2011 08:33:47 PM,07/04/2011 08:35:23 PM,07/04/2011 08:36:43 PM,07/04/2011 08:37:25 PM,07/04/2011 08:40:09 PM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/04/2011 08:54:28 PM,JOHN F KENNEDY DR/TRANSVERSE DR,SF,94122,B07,14,7211,3,3,3,true,,1,ENGINE,1,7,1,Golden Gate Park,"(37.7704958787466, -122.479895426837)",111850308-E14 -130650086,E10,13021684,Medical Incident,03/06/2013,03/06/2013,03/06/2013 08:51:14 AM,03/06/2013 08:52:13 AM,03/06/2013 08:56:25 AM,03/06/2013 08:57:37 AM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,Other,03/06/2013 09:03:11 AM,300 Block of PARNASSUS AVE,SF,94117,B05,12,5155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Inner Sunset,"(37.7640840126749, -122.45593384681)",130650086-E10 -131460115,T17,13049453,Medical Incident,05/26/2013,05/25/2013,05/26/2013 07:54:28 AM,05/26/2013 07:54:52 AM,05/26/2013 07:55:38 AM,05/26/2013 07:57:06 AM,05/26/2013 08:03:25 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 08:03:37 AM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,3,2,2,false,Potentially Life-Threatening,1,TRUCK,1,10,9,Portola,"(37.7246523794049, -122.402288649686)",131460115-T17 -160563658,85,16022539,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:50:23 PM,02/25/2016 08:52:35 PM,02/25/2016 08:53:02 PM,02/25/2016 08:56:34 PM,02/25/2016 09:12:13 PM,02/25/2016 09:23:46 PM,02/25/2016 09:44:24 PM,Code 2 Transport,02/25/2016 10:25:32 PM,1900 Block of FELL ST,San Francisco,94117,B05,21,4534,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7725275124637, -122.449976001198)",160563658-85 -140090020,AM18,14003009,Medical Incident,01/09/2014,01/08/2014,01/09/2014 01:31:12 AM,01/09/2014 01:33:01 AM,01/09/2014 01:33:48 AM,01/09/2014 01:34:53 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/09/2014 01:44:40 AM,900 Block of EDDY ST,SF,94102,B02,5,3262,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",140090020-AM18 -132200192,T02,13074318,Vehicle Fire,08/08/2013,08/08/2013,08/08/2013 02:06:06 PM,08/08/2013 02:06:45 PM,08/08/2013 02:07:05 PM,08/08/2013 02:08:53 PM,08/08/2013 02:13:32 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 02:23:19 PM,BUSH ST/KEARNY ST,SF,94104,B01,13,1235,3,3,3,true,Fire,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",132200192-T02 -120680183,T17,12022574,Medical Incident,03/08/2012,03/08/2012,03/08/2012 01:53:36 PM,03/08/2012 01:54:26 PM,03/08/2012 01:55:26 PM,03/08/2012 01:56:46 PM,03/08/2012 01:59:05 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/08/2012 02:00:33 PM,1700 Block of YOSEMITE AVE,SF,94124,B10,17,6512,2,2,2,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7284996658469, -122.39444320706)",120680183-T17 -121910220,T07,12063621,Traffic Collision,07/09/2012,07/09/2012,07/09/2012 02:50:26 PM,07/09/2012 02:50:26 PM,07/09/2012 02:50:38 PM,07/09/2012 02:51:51 PM,07/09/2012 02:53:35 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 02:55:43 PM,18TH ST/VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,6,8,Mission,"(37.7617009099893, -122.421578400735)",121910220-T07 -133420296,84,13116064,Medical Incident,12/08/2013,12/08/2013,12/08/2013 05:52:31 PM,12/08/2013 05:53:45 PM,12/08/2013 05:54:36 PM,12/08/2013 05:54:59 PM,12/08/2013 05:58:11 PM,12/08/2013 06:07:52 PM,12/08/2013 06:18:59 PM,Code 2 Transport,12/08/2013 06:39:43 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",133420296-84 -160643053,KM01,16025619,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:11:27 PM,03/04/2016 06:13:08 PM,03/04/2016 06:16:31 PM,03/04/2016 06:17:57 PM,03/04/2016 06:24:29 PM,03/04/2016 06:36:33 PM,03/04/2016 06:54:21 PM,Code 2 Transport,03/04/2016 07:29:03 PM,2600 Block of UNION ST,San Francisco,94123,B04,16,4165,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.7961970378403, -122.442936823219)",160643053-KM01 -140670336,T13,14022812,Administrative,03/08/2014,03/08/2014,03/08/2014 09:13:31 PM,03/08/2014 09:13:37 PM,03/08/2014 09:13:49 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Other,03/08/2014 09:14:16 PM,500 Block of SANSOME ST,,94111,B01,13,1211,3,3,3,false,,1,TRUCK,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",140670336-T13 -111920286,E08,11063461,Alarms,07/11/2011,07/11/2011,07/11/2011 04:40:29 PM,07/11/2011 04:41:51 PM,07/11/2011 04:42:24 PM,07/11/2011 04:43:54 PM,07/11/2011 04:46:10 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 04:53:08 PM,300 Block of 7TH ST,SF,94103,B03,8,2312,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7759488172418, -122.406743783137)",111920286-E08 -130760159,KM02,13025368,Traffic Collision,03/17/2013,03/17/2013,03/17/2013 11:14:12 AM,03/17/2013 11:15:51 AM,03/17/2013 11:18:12 AM,03/17/2013 11:18:45 AM,03/17/2013 11:26:43 AM,03/17/2013 11:47:35 AM,03/17/2013 12:05:02 PM,Code 2 Transport,03/17/2013 12:42:51 PM,VAN NESS AV/FELL ST,SF,94102,B02,36,3166,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7763688687361, -122.419506294961)",130760159-KM02 -160410295,79,16016292,Medical Incident,02/10/2016,02/09/2016,02/10/2016 03:34:54 AM,02/10/2016 03:37:35 AM,02/10/2016 03:37:57 AM,02/10/2016 03:38:27 AM,02/10/2016 03:42:44 AM,02/10/2016 03:54:52 AM,02/10/2016 04:02:28 AM,Code 2 Transport,02/10/2016 04:26:41 AM,SHOTWELL ST/18TH ST,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7620340026529, -122.416077987511)",160410295-79 -132350020,55,13079184,Medical Incident,08/23/2013,08/22/2013,08/23/2013 01:41:45 AM,08/23/2013 01:42:22 AM,08/23/2013 01:42:45 AM,08/23/2013 01:43:35 AM,08/23/2013 01:51:24 AM,08/23/2013 02:03:36 AM,08/23/2013 02:19:46 AM,Other,08/23/2013 02:47:46 AM,2500 Block of 29TH AVE,SF,94116,B08,18,7523,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7397784337446, -122.486279174188)",132350020-55 -160093633,58,16003836,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:52:53 PM,01/09/2016 10:52:53 PM,01/09/2016 10:53:11 PM,01/09/2016 10:53:23 PM,01/09/2016 10:58:53 PM,01/09/2016 11:21:31 PM,01/09/2016 11:36:39 PM,Code 2 Transport,01/10/2016 12:17:51 AM,2400 Block of LOMBARD ST,San Francisco,94123,B04,16,4223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7990040267659, -122.441795241204)",160093633-58 -133190083,B04,13108314,Alarms,11/15/2013,11/15/2013,11/15/2013 08:25:56 AM,11/15/2013 08:27:01 AM,11/15/2013 08:27:17 AM,11/15/2013 08:28:57 AM,11/15/2013 08:31:39 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Fire,11/15/2013 08:38:44 AM,1600 Block of CLAY ST,SF,94109,B04,41,1634,3,3,3,false,Alarm,1,CHIEF,2,4,3,Nob Hill,"(37.792433934443, -122.420216385348)",133190083-B04 -123530307,94,12118202,Medical Incident,12/18/2012,12/18/2012,12/18/2012 05:55:49 PM,12/18/2012 05:57:38 PM,12/18/2012 05:59:46 PM,12/18/2012 06:00:31 PM,12/18/2012 06:12:49 PM,12/18/2012 06:37:37 PM,12/18/2012 07:11:17 PM,Code 2 Transport,12/18/2012 07:41:38 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",123530307-94 -111420006,60,11047031,Medical Incident,05/22/2011,05/21/2011,05/22/2011 12:25:51 AM,05/22/2011 12:25:51 AM,05/22/2011 12:25:51 AM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,No Merit,05/22/2011 12:33:10 AM,POWELL ST/ELLIS ST,SF,94102,B03,1,1322,2,2,2,true,,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",111420006-60 -121260148,B01,12041847,Gas Leak (Natural and LP Gases),05/05/2012,05/05/2012,05/05/2012 09:50:14 AM,05/05/2012 09:50:49 AM,05/05/2012 09:54:06 AM,05/05/2012 09:56:03 AM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 10:01:49 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,Alarm,1,CHIEF,4,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",121260148-B01 -112210221,92,11073034,Medical Incident,08/09/2011,08/09/2011,08/09/2011 03:38:11 PM,08/09/2011 03:38:55 PM,08/09/2011 03:39:19 PM,08/09/2011 03:39:59 PM,08/09/2011 03:46:41 PM,08/09/2011 04:12:47 PM,08/09/2011 04:41:29 PM,Code 2 Transport,08/09/2011 05:03:58 PM,0 Block of LAFAYETTE ST,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7730197753185, -122.417140617088)",112210221-92 -160470602,65,16018812,Medical Incident,02/16/2016,02/15/2016,02/16/2016 07:31:57 AM,02/16/2016 07:32:14 AM,02/16/2016 07:32:30 AM,02/16/2016 07:33:02 AM,02/16/2016 07:37:55 AM,02/16/2016 07:46:43 AM,02/16/2016 08:00:13 AM,Code 2 Transport,02/16/2016 08:34:57 AM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842224754433, -122.404037898963)",160470602-65 -102880241,66,10091876,Medical Incident,10/15/2010,10/15/2010,10/15/2010 02:25:52 PM,10/15/2010 02:25:53 PM,10/15/2010 02:27:32 PM,10/15/2010 02:27:51 PM,10/15/2010 02:34:58 PM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,No Merit,10/15/2010 02:47:26 PM,OFARRELL ST/JONES ST,SF,94102,B01,1,1452,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",102880241-66 -131410251,E33,13047829,Structure Fire,05/21/2013,05/21/2013,05/21/2013 02:45:12 PM,05/21/2013 02:45:59 PM,05/21/2013 02:46:18 PM,05/21/2013 02:46:36 PM,05/21/2013 02:49:03 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 03:20:59 PM,900 Block of PLYMOUTH AVE,SF,94112,B09,33,8465,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7191348850556, -122.456051369735)",131410251-E33 -160683124,68,16027218,Medical Incident,03/08/2016,03/08/2016,03/08/2016 07:09:17 PM,03/08/2016 07:09:17 PM,03/08/2016 07:09:29 PM,03/08/2016 07:09:46 PM,03/08/2016 07:21:12 PM,03/08/2016 07:40:07 PM,03/08/2016 07:58:51 PM,Code 2 Transport,03/08/2016 08:39:01 PM,HOLLOWAY AV/GRANADA AV,San Francisco,94112,B09,15,8473,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7218430766394, -122.457163086453)",160683124-68 -103110129,E41,10099689,Citizen Assist / Service Call,11/07/2010,11/07/2010,11/07/2010 09:22:42 AM,11/07/2010 09:23:13 AM,11/07/2010 09:23:24 AM,11/07/2010 09:24:50 AM,11/07/2010 09:28:11 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 09:58:59 AM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",103110129-E41 -133180311,77,13108184,Traffic Collision,11/14/2013,11/14/2013,11/14/2013 07:19:45 PM,11/14/2013 07:20:23 PM,11/14/2013 07:23:58 PM,11/14/2013 07:24:37 PM,11/14/2013 07:43:27 PM,11/14/2013 08:04:26 PM,11/14/2013 08:19:32 PM,Code 2 Transport,11/14/2013 09:02:42 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",133180311-77 -131000026,68,13033473,Medical Incident,04/10/2013,04/09/2013,04/10/2013 01:33:34 AM,04/10/2013 01:34:20 AM,04/10/2013 01:35:24 AM,04/10/2013 01:35:43 AM,04/10/2013 01:40:27 AM,04/10/2013 02:06:04 AM,04/10/2013 02:15:05 AM,Code 3 Transport,04/10/2013 02:30:45 AM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,3,E,3,false,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",131000026-68 -103110362,E01,10099905,Medical Incident,11/07/2010,11/07/2010,11/07/2010 11:48:45 PM,11/07/2010 11:50:20 PM,11/07/2010 11:50:58 PM,04/25/2016 02:07:42 PM,11/07/2010 11:54:20 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,No Merit,11/07/2010 11:57:05 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",103110362-E01 -120090023,60,12002974,Medical Incident,01/09/2012,01/08/2012,01/09/2012 01:09:28 AM,01/09/2012 01:10:15 AM,01/09/2012 01:10:55 AM,01/09/2012 01:11:13 AM,01/09/2012 01:15:33 AM,01/09/2012 01:37:02 AM,01/09/2012 01:55:21 AM,Code 2 Transport,01/09/2012 02:13:28 AM,2000 Block of 36TH AVE,SF,94116,B08,18,7556,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7487764204802, -122.494293052572)",120090023-60 -160331794,KM12,16012993,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:34:42 PM,02/02/2016 01:36:13 PM,02/02/2016 01:36:53 PM,02/02/2016 01:37:26 PM,02/02/2016 01:42:12 PM,02/02/2016 01:55:18 PM,02/02/2016 02:14:47 PM,Code 2 Transport,02/02/2016 02:41:57 PM,ALBION ST/16TH ST,San Francisco,94110,B02,6,5235,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7648432997817, -122.42311242302)",160331794-KM12 -160860095,AM16,16034032,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:35:55 AM,03/26/2016 12:35:55 AM,03/26/2016 12:36:17 AM,03/26/2016 12:36:50 AM,03/26/2016 12:39:01 AM,03/26/2016 12:47:19 AM,03/26/2016 01:00:44 AM,Code 2 Transport,03/26/2016 01:12:28 AM,2200 Block of LOMBARD ST,San Francisco,94123,B04,16,3566,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7994131607449, -122.438492113191)",160860095-AM16 -112360222,B01,11077916,Medical Incident,08/24/2011,08/24/2011,08/24/2011 02:58:10 PM,08/24/2011 02:58:37 PM,08/24/2011 02:59:43 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 03:01:43 PM,BUSH ST/JONES ST,SF,94109,B01,41,1446,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7895293173979, -122.413728390683)",112360222-B01 -111410347,94,11047007,Medical Incident,05/21/2011,05/21/2011,05/21/2011 10:16:41 PM,05/21/2011 10:17:28 PM,05/21/2011 10:17:35 PM,05/21/2011 10:18:42 PM,05/21/2011 10:43:08 PM,05/21/2011 10:54:43 PM,05/21/2011 11:20:37 PM,Code 2 Transport,05/21/2011 11:49:12 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111410347-94 -123070052,KM12,12101902,Medical Incident,11/02/2012,11/01/2012,11/02/2012 06:52:07 AM,11/02/2012 06:53:44 AM,11/02/2012 06:57:20 AM,11/02/2012 06:58:03 AM,11/02/2012 07:10:08 AM,11/02/2012 07:22:03 AM,11/02/2012 07:27:03 AM,Code 2 Transport,11/02/2012 07:46:51 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",123070052-KM12 -110890026,E39,11029259,Medical Incident,03/30/2011,03/29/2011,03/30/2011 01:31:53 AM,03/30/2011 01:33:08 AM,03/30/2011 01:34:07 AM,03/30/2011 01:38:20 AM,03/30/2011 01:42:12 AM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/30/2011 01:48:43 AM,300 Block of RIVERA ST,SF,94116,B08,40,736,3,3,3,true,,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7471157595497, -122.469677402377)",110890026-E39 -121860282,E02,12062044,Medical Incident,07/04/2012,07/04/2012,07/04/2012 07:15:06 PM,07/04/2012 07:17:18 PM,07/04/2012 07:18:17 PM,07/04/2012 07:19:39 PM,07/04/2012 07:22:07 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 07:39:19 PM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",121860282-E02 -160340027,62,16013201,Medical Incident,02/03/2016,02/02/2016,02/03/2016 12:10:36 AM,02/03/2016 12:13:38 AM,02/03/2016 12:14:46 AM,02/03/2016 12:14:53 AM,02/03/2016 12:18:12 AM,02/03/2016 12:37:14 AM,02/03/2016 12:46:13 AM,Code 2 Transport,02/03/2016 01:33:12 AM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7562319946436, -122.418893283075)",160340027-62 -131630028,E38,13055249,Alarms,06/12/2013,06/11/2013,06/12/2013 03:27:05 AM,06/12/2013 03:29:03 AM,06/12/2013 03:32:20 AM,06/12/2013 03:33:54 AM,06/12/2013 03:36:41 AM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/12/2013 03:43:15 AM,1600 Block of VALLEJO ST,SF,94123,B04,38,3232,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7966404164544, -122.424436547538)",131630028-E38 -131570256,85,13053288,Medical Incident,06/06/2013,06/06/2013,06/06/2013 02:37:34 PM,06/06/2013 02:39:35 PM,06/06/2013 02:47:31 PM,06/06/2013 02:47:45 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/06/2013 02:48:40 PM,1000 Block of WASHINGTON ST,SF,94108,B01,2,1415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Nob Hill,"(37.7945246981773, -122.410940056689)",131570256-85 -103050212,54,10097505,Traffic Collision,11/01/2010,11/01/2010,11/01/2010 12:59:21 PM,11/01/2010 01:01:37 PM,11/01/2010 01:02:12 PM,11/01/2010 01:02:21 PM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 01:03:38 PM,2ND ST/MARKET ST,SF,94105,B01,13,1236,2,2,2,true,,1,MEDIC,5,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",103050212-54 -131510126,E28,13051074,Medical Incident,05/31/2013,05/31/2013,05/31/2013 10:28:30 AM,05/31/2013 10:29:27 AM,05/31/2013 10:30:10 AM,05/31/2013 10:31:08 AM,05/31/2013 10:35:51 AM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/31/2013 10:39:00 AM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,North Beach,"(37.8069135411381, -122.418073383892)",131510126-E28 -123540237,E02,12118484,Medical Incident,12/19/2012,12/19/2012,12/19/2012 02:24:40 PM,12/19/2012 02:26:32 PM,12/19/2012 02:26:50 PM,12/19/2012 02:26:57 PM,12/19/2012 02:29:00 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 02:45:40 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",123540237-E02 -122960389,E16,12098337,Structure Fire,10/22/2012,10/22/2012,10/22/2012 11:09:02 PM,10/22/2012 11:11:24 PM,10/22/2012 11:11:31 PM,10/22/2012 11:13:15 PM,10/22/2012 11:14:38 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 11:25:58 PM,2100 Block of BAY ST,SF,94123,B04,16,4212,3,3,3,true,Alarm,1,ENGINE,2,4,2,Marina,"(37.8018900896797, -122.442380292662)",122960389-E16 -160020521,53,16000624,Medical Incident,01/02/2016,01/01/2016,01/02/2016 06:03:11 AM,01/02/2016 06:04:05 AM,01/02/2016 06:04:14 AM,01/02/2016 06:04:37 AM,01/02/2016 06:10:17 AM,01/02/2016 06:29:00 AM,01/02/2016 06:41:53 AM,Code 2 Transport,01/02/2016 07:08:31 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160020521-53 -160222881,68,16008871,Medical Incident,01/22/2016,01/22/2016,01/22/2016 05:53:33 PM,01/22/2016 05:53:59 PM,01/22/2016 05:54:05 PM,01/22/2016 05:54:11 PM,01/22/2016 05:58:43 PM,01/22/2016 06:14:58 PM,01/22/2016 06:21:48 PM,Code 2 Transport,01/22/2016 07:18:40 PM,1600 Block of CHESTNUT ST,San Francisco,94123,B04,16,3341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8014951929088, -122.430478137381)",160222881-68 -133020032,AM18,13102500,Medical Incident,10/29/2013,10/28/2013,10/29/2013 02:25:48 AM,10/29/2013 02:27:05 AM,10/29/2013 02:29:11 AM,10/29/2013 02:30:03 AM,10/29/2013 02:34:33 AM,10/29/2013 02:48:55 AM,10/29/2013 02:58:25 AM,Code 2 Transport,10/29/2013 03:45:02 AM,0 Block of WOODWARD ST,SF,94103,B02,36,5215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7690757517644, -122.420788636046)",133020032-AM18 -131510282,KM11,13051210,Other,05/31/2013,05/31/2013,05/31/2013 04:56:43 PM,05/31/2013 04:57:30 PM,05/31/2013 05:25:25 PM,04/25/2016 01:52:31 PM,05/31/2013 05:44:24 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 06:38:46 PM,100 Block of SANTA CLARA AVE,SF,94127,B08,39,8563,3,3,3,false,Alarm,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7370526756963, -122.465928356313)",131510282-KM11 -103250331,T17,10104309,Alarms,11/21/2010,11/21/2010,11/21/2010 09:36:36 PM,11/21/2010 09:39:35 PM,11/21/2010 09:40:03 PM,11/21/2010 09:41:33 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 09:51:40 PM,100 Block of SEAL COVE TER,SF,94134,B10,44,6275,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7116736840708, -122.394421970949)",103250331-T17 -131330293,AR1,13044947,Other,05/13/2013,05/13/2013,05/13/2013 04:46:06 PM,05/13/2013 04:46:06 PM,05/13/2013 04:46:06 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 05:10:33 PM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,3,3,3,false,Alarm,1,INVESTIGATION,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",131330293-AR1 -133040036,KM15,13103147,Medical Incident,10/31/2013,10/30/2013,10/31/2013 02:28:21 AM,10/31/2013 02:29:54 AM,10/31/2013 02:31:12 AM,10/31/2013 02:32:03 AM,10/31/2013 02:39:21 AM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/31/2013 02:54:24 AM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",133040036-KM15 -160041841,87,16001609,Medical Incident,01/04/2016,01/04/2016,01/04/2016 01:27:01 PM,01/04/2016 01:28:29 PM,01/04/2016 01:30:11 PM,01/04/2016 01:30:20 PM,01/04/2016 01:46:47 PM,01/04/2016 02:11:05 PM,01/04/2016 02:28:54 PM,Code 2 Transport,01/04/2016 02:58:12 PM,200 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7863257938335, -122.409145791731)",160041841-87 -123110177,E01,12103469,Medical Incident,11/06/2012,11/06/2012,11/06/2012 12:01:36 PM,11/06/2012 12:02:59 PM,11/06/2012 12:03:11 PM,04/25/2016 01:55:55 PM,11/06/2012 12:06:19 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/06/2012 12:15:37 PM,100 Block of STOCKTON ST,SF,94108,B01,1,1323,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7871003167622, -122.406426031165)",123110177-E01 -160371558,53,16014651,Vehicle Fire,02/06/2016,02/06/2016,02/06/2016 11:15:38 AM,02/06/2016 11:17:53 AM,02/06/2016 11:20:04 AM,02/06/2016 11:20:23 AM,02/06/2016 11:46:12 AM,02/06/2016 11:58:45 AM,02/06/2016 12:12:12 PM,Code 2 Transport,02/06/2016 01:03:50 PM,0 Block of FREMONT ST,San Francisco,94105,B03,48,2951,2,3,3,true,Fire,1,MEDIC,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",160371558-53 -160100102,AM22,16003863,Medical Incident,01/10/2016,01/09/2016,01/10/2016 12:35:06 AM,01/10/2016 12:38:09 AM,01/10/2016 12:38:30 AM,01/10/2016 12:39:34 AM,01/10/2016 12:50:02 AM,01/10/2016 01:09:19 AM,01/10/2016 01:16:35 AM,Code 2 Transport,01/10/2016 01:41:01 AM,1700 Block of 9TH AVE,San Francisco,94122,B08,22,7336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,7,Inner Sunset,"(37.7556485755578, -122.465656908973)",160100102-AM22 -160723560,88,16028809,Medical Incident,03/12/2016,03/12/2016,03/12/2016 10:58:37 PM,03/12/2016 10:58:37 PM,03/12/2016 10:59:36 PM,03/12/2016 10:59:42 PM,03/12/2016 11:11:38 PM,03/12/2016 11:17:45 PM,03/12/2016 11:33:07 PM,Code 2 Transport,03/13/2016 12:00:03 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",160723560-88 -160060659,64,16002300,Medical Incident,01/06/2016,01/05/2016,01/06/2016 07:59:45 AM,01/06/2016 08:01:09 AM,01/06/2016 08:01:42 AM,01/06/2016 08:01:52 AM,01/06/2016 08:19:28 AM,01/06/2016 08:35:05 AM,01/06/2016 08:45:54 AM,Code 2 Transport,01/06/2016 09:17:13 AM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",160060659-64 -112270085,AM02,11074940,Medical Incident,08/15/2011,08/15/2011,08/15/2011 08:06:06 AM,08/15/2011 08:07:23 AM,08/15/2011 08:08:05 AM,08/15/2011 08:08:55 AM,08/15/2011 08:19:37 AM,08/15/2011 08:54:22 AM,08/15/2011 09:18:34 AM,Code 2 Transport,08/15/2011 10:01:48 AM,400 Block of CORTLAND AVE,SF,94110,B06,32,5732,1,1,2,false,,1,PRIVATE,1,6,9,Bernal Heights,"(37.7391460959559, -122.416820868342)",112270085-AM02 -140620158,T03,14020924,Medical Incident,03/03/2014,03/03/2014,03/03/2014 12:27:05 PM,03/03/2014 12:27:45 PM,03/03/2014 12:27:50 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,Code 2 Transport,03/03/2014 12:29:09 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,1,6,Tenderloin,"(37.7858955061569, -122.412569415086)",140620158-T03 -112870403,65,11095336,Medical Incident,10/14/2011,10/14/2011,10/14/2011 09:14:17 PM,10/14/2011 09:15:30 PM,10/14/2011 09:16:04 PM,10/14/2011 09:18:31 PM,10/14/2011 09:20:24 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,No Merit,10/14/2011 09:36:16 PM,11TH ST/MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7743252876501, -122.417104135862)",112870403-65 -160233085,71,16009287,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:16:00 PM,01/23/2016 07:17:23 PM,01/23/2016 07:17:35 PM,01/23/2016 07:17:46 PM,01/23/2016 07:23:43 PM,01/23/2016 07:45:56 PM,01/23/2016 07:53:46 PM,Code 2 Transport,01/23/2016 08:22:49 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",160233085-71 -123400088,E25,12113346,Smoke Investigation (Outside),12/05/2012,12/04/2012,12/05/2012 07:48:39 AM,12/05/2012 07:54:05 AM,12/05/2012 07:55:50 AM,12/05/2012 07:56:01 AM,12/05/2012 07:59:30 AM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,Other,12/05/2012 08:09:17 AM,25TH ST/IOWA ST,SF,94107,B10,25,2612,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7526042202194, -122.391655551528)",123400088-E25 -120300025,66,12009866,Medical Incident,01/30/2012,01/29/2012,01/30/2012 02:44:23 AM,01/30/2012 02:44:23 AM,01/30/2012 02:44:23 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,01/30/2012 02:54:36 AM,01/30/2012 03:12:39 AM,Code 2 Transport,01/30/2012 03:29:36 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",120300025-66 -133610061,E13,13122569,Alarms,12/27/2013,12/26/2013,12/27/2013 07:19:05 AM,12/27/2013 07:21:03 AM,12/27/2013 07:21:13 AM,12/27/2013 07:22:28 AM,12/27/2013 07:29:03 AM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 08:20:30 AM,500 Block of MARKET ST,SF,94104,B01,13,1236,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",133610061-E13 -113550349,E11,11118020,Alarms,12/21/2011,12/21/2011,12/21/2011 09:45:20 PM,12/21/2011 09:47:40 PM,12/21/2011 09:47:45 PM,12/21/2011 09:49:40 PM,12/21/2011 09:50:45 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 10:00:57 PM,300 Block of 27TH ST,SF,94131,B06,11,5552,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7468845306883, -122.428085949623)",113550349-E11 -110270260,E28,11008939,Alarms,01/27/2011,01/27/2011,01/27/2011 02:53:56 PM,01/27/2011 02:55:39 PM,01/27/2011 02:55:44 PM,01/27/2011 02:57:09 PM,01/27/2011 02:59:02 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 03:05:03 PM,1300 Block of GRANT AVE,SF,94133,B01,28,1266,3,3,3,false,,1,ENGINE,2,1,3,North Beach,"(37.799231230896, -122.407369153529)",110270260-E28 -140570113,93,14019166,Medical Incident,02/26/2014,02/26/2014,02/26/2014 09:07:53 AM,02/26/2014 09:08:39 AM,02/26/2014 09:08:54 AM,02/26/2014 09:09:04 AM,02/26/2014 09:19:21 AM,02/26/2014 09:37:16 AM,02/26/2014 09:59:19 AM,Code 2 Transport,02/26/2014 10:32:58 AM,600 Block of 2ND ST,SF,94107,B03,8,2153,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7811877689642, -122.391351449722)",140570113-93 -120400205,60,12013353,Medical Incident,02/09/2012,02/09/2012,02/09/2012 02:36:40 PM,02/09/2012 02:36:52 PM,02/09/2012 02:37:42 PM,02/09/2012 02:38:42 PM,02/09/2012 02:50:28 PM,02/09/2012 03:01:17 PM,02/09/2012 03:10:20 PM,Code 2 Transport,02/09/2012 03:29:17 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",120400205-60 -112180367,89,11072226,Medical Incident,08/06/2011,08/06/2011,08/06/2011 10:30:28 PM,08/06/2011 10:30:49 PM,08/06/2011 10:31:07 PM,08/06/2011 10:31:18 PM,08/06/2011 10:37:33 PM,08/06/2011 10:51:16 PM,08/06/2011 10:59:42 PM,Code 3 Transport,08/06/2011 11:51:23 PM,19TH ST/CHURCH ST,SF,94114,B06,6,5436,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7596916254318, -122.428202324383)",112180367-89 -113610288,AM18,11120045,Medical Incident,12/27/2011,12/27/2011,12/27/2011 08:27:53 PM,12/27/2011 08:30:12 PM,12/27/2011 08:30:55 PM,12/27/2011 08:31:40 PM,12/27/2011 08:37:52 PM,12/27/2011 08:59:53 PM,12/27/2011 09:25:54 PM,Code 2 Transport,12/27/2011 09:35:37 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,PRIVATE,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",113610288-AM18 -110060043,RC3,11001867,Medical Incident,01/06/2011,01/05/2011,01/06/2011 04:09:53 AM,01/06/2011 04:10:34 AM,01/06/2011 04:10:48 AM,01/06/2011 04:12:49 AM,01/06/2011 04:17:30 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 04:19:50 AM,1600 Block of MISSION ST,SF,94103,B02,36,5116,A,A,2,true,,1,RESCUE CAPTAIN,5,2,6,Mission,"(37.7720141510333, -122.419088601412)",110060043-RC3 -131480075,BE1,13050084,Administrative,05/28/2013,05/27/2013,05/28/2013 07:42:22 AM,05/28/2013 07:42:27 AM,05/28/2013 07:43:10 AM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Fire,05/28/2013 07:43:38 AM,2500 Block of 25TH ST,SF,94110,B10,9,2624,3,3,3,false,,1,SUPPORT,1,10,10,Mission,"(37.751818803934, -122.403759348047)",131480075-BE1 -122250014,E51,12074475,Alarms,08/12/2012,08/11/2012,08/12/2012 01:11:17 AM,08/12/2012 01:12:22 AM,08/12/2012 01:13:23 AM,08/12/2012 01:15:33 AM,08/12/2012 01:16:50 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 01:34:19 AM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",122250014-E51 -132900275,E07,13098716,Medical Incident,10/17/2013,10/17/2013,10/17/2013 03:27:11 PM,10/17/2013 03:29:23 PM,10/17/2013 03:29:45 PM,10/17/2013 03:30:43 PM,10/17/2013 03:34:51 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 03:34:54 PM,11TH ST/MISSION ST,SF,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7743252876501, -122.417104135862)",132900275-E07 -160631938,70,16025089,Medical Incident,03/03/2016,03/03/2016,03/03/2016 01:46:36 PM,03/03/2016 01:47:51 PM,03/03/2016 01:48:19 PM,03/03/2016 01:48:38 PM,03/03/2016 01:50:28 PM,03/03/2016 02:08:41 PM,03/03/2016 02:25:47 PM,Code 2 Transport,03/03/2016 03:07:30 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",160631938-70 -160912049,79,16036096,Medical Incident,03/31/2016,03/31/2016,03/31/2016 02:28:54 PM,03/31/2016 02:29:08 PM,03/31/2016 02:29:34 PM,03/31/2016 02:30:01 PM,03/31/2016 02:34:45 PM,03/31/2016 02:53:44 PM,03/31/2016 03:16:23 PM,Code 2 Transport,03/31/2016 03:54:05 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160912049-79 -111790045,E34,11058996,Medical Incident,06/28/2011,06/27/2011,06/28/2011 05:23:32 AM,06/28/2011 05:24:09 AM,06/28/2011 05:24:54 AM,06/28/2011 05:26:51 AM,06/28/2011 05:29:40 AM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Other,06/28/2011 05:39:38 AM,800 Block of 36TH AVE,SF,94121,B07,34,7252,3,E,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7729614523582, -122.496112754911)",111790045-E34 -102620051,E10,10082774,Structure Fire,09/19/2010,09/18/2010,09/19/2010 02:52:55 AM,09/19/2010 02:53:07 AM,09/19/2010 02:53:20 AM,09/19/2010 02:54:41 AM,04/25/2016 02:08:31 PM,04/25/2016 02:08:31 PM,04/25/2016 02:08:31 PM,Other,09/19/2010 03:08:44 AM,1700 Block of OFARRELL ST,SF,94115,B04,5,3623,3,3,3,true,,1,ENGINE,9,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",102620051-E10 -160551912,AM08,16022019,Medical Incident,02/24/2016,02/24/2016,02/24/2016 01:19:35 PM,02/24/2016 01:20:20 PM,02/24/2016 01:21:04 PM,02/24/2016 01:21:50 PM,02/24/2016 01:25:52 PM,02/24/2016 01:38:42 PM,02/24/2016 01:55:50 PM,Code 2 Transport,02/24/2016 02:38:30 PM,1600 Block of DIVISADERO ST,San Francisco,94115,B05,10,4155,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7847979838284, -122.439663867351)",160551912-AM08 -103030097,82,10096728,Medical Incident,10/30/2010,10/29/2010,10/30/2010 07:30:15 AM,10/30/2010 07:33:02 AM,10/30/2010 07:33:30 AM,10/30/2010 07:33:48 AM,10/30/2010 07:46:22 AM,10/30/2010 08:06:53 AM,10/30/2010 08:15:45 AM,Code 2 Transport,10/30/2010 09:00:57 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103030097-82 -160872601,62,16034654,Medical Incident,03/27/2016,03/27/2016,03/27/2016 04:58:50 PM,03/27/2016 05:01:32 PM,03/27/2016 05:02:29 PM,03/27/2016 05:06:18 PM,03/27/2016 05:18:52 PM,03/27/2016 05:24:08 PM,03/27/2016 05:44:07 PM,Code 2 Transport,03/27/2016 06:25:23 PM,20TH ST/MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",160872601-62 -103000267,E51,10095836,Alarms,10/27/2010,10/27/2010,10/27/2010 05:10:12 PM,10/27/2010 05:11:13 PM,10/27/2010 05:11:27 PM,10/27/2010 05:13:05 PM,10/27/2010 05:16:19 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 05:23:57 PM,0 Block of MESA ST,PR,94129,B99,51,4626,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.7983594309985, -122.457277417246)",103000267-E51 -120210250,E03,12007176,Structure Fire,01/21/2012,01/21/2012,01/21/2012 03:06:28 PM,01/21/2012 03:07:17 PM,01/21/2012 03:07:47 PM,01/21/2012 03:08:14 PM,01/21/2012 03:09:33 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 03:22:43 PM,600 Block of POST ST,SF,94109,B01,3,1451,3,3,3,true,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7877566203397, -122.413055713332)",120210250-E03 -122200228,E18,12073011,Medical Incident,08/07/2012,08/07/2012,08/07/2012 04:51:20 PM,08/07/2012 04:51:20 PM,08/07/2012 04:51:20 PM,08/07/2012 04:54:53 PM,08/07/2012 04:57:55 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/07/2012 05:02:27 PM,1400 Block of 37TH AVE,SF,94122,B08,23,7571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7599127190458, -122.496287224652)",122200228-E18 -120150336,E01,12005245,Medical Incident,01/15/2012,01/15/2012,01/15/2012 11:26:27 PM,01/15/2012 11:27:46 PM,01/15/2012 11:28:34 PM,01/15/2012 11:29:43 PM,01/15/2012 11:31:59 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/15/2012 11:34:07 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",120150336-E01 -130300010,85,13010084,Medical Incident,01/30/2013,01/29/2013,01/30/2013 12:46:14 AM,01/30/2013 12:47:30 AM,01/30/2013 12:47:49 AM,01/30/2013 12:48:08 AM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,04/25/2016 01:54:33 PM,400 Block of MISSISSIPPI ST,SF,94107,B10,37,2474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7607753106683, -122.394482044355)",130300010-85 -112510003,96,11082618,Medical Incident,09/08/2011,09/07/2011,09/08/2011 12:17:19 AM,09/08/2011 12:17:40 AM,09/08/2011 12:18:26 AM,09/08/2011 12:18:52 AM,09/08/2011 12:23:05 AM,09/08/2011 12:40:11 AM,09/08/2011 01:01:25 AM,Other,09/08/2011 01:13:45 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,2,2,true,,1,MEDIC,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",112510003-96 -113600071,87,11119555,Medical Incident,12/26/2011,12/25/2011,12/26/2011 07:12:49 AM,12/26/2011 07:13:49 AM,12/26/2011 07:14:01 AM,12/26/2011 07:14:11 AM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Patient Declined Transport,12/26/2011 07:21:21 AM,4300 Block of MISSION ST,SF,94112,B09,32,6113,3,3,3,false,,1,MEDIC,2,9,11,Outer Mission,"(37.728524805863, -122.431600311794)",113600071-87 -111760328,94,11058136,Traffic Collision,06/25/2011,06/25/2011,06/25/2011 07:07:44 PM,06/25/2011 07:09:24 PM,06/25/2011 07:10:36 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,04/25/2016 02:03:59 PM,JONES ST/OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,4,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",111760328-94 -122290224,E36,12075909,Medical Incident,08/16/2012,08/16/2012,08/16/2012 02:28:50 PM,08/16/2012 02:30:51 PM,08/16/2012 02:31:23 PM,08/16/2012 02:32:50 PM,08/16/2012 02:34:42 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Other,08/16/2012 02:37:56 PM,11TH ST/HOWARD ST,SF,94103,B02,36,5114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7731005870473, -122.415561389884)",122290224-E36 -160773134,79,16030722,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:42:41 PM,03/17/2016 05:42:41 PM,03/17/2016 05:44:08 PM,03/17/2016 05:44:16 PM,03/17/2016 05:55:06 PM,03/17/2016 06:03:55 PM,03/17/2016 06:15:46 PM,Code 2 Transport,03/17/2016 06:59:20 PM,500 Block of MOSCOW ST,San Francisco,94112,B09,43,6156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7189014577271, -122.429331927849)",160773134-79 -121880133,E36,12062594,Medical Incident,07/06/2012,07/06/2012,07/06/2012 10:46:08 AM,07/06/2012 10:47:58 AM,07/06/2012 10:48:17 AM,07/06/2012 10:48:31 AM,07/06/2012 10:51:28 AM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/06/2012 10:57:40 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",121880133-E36 -111440035,E03,11047743,Structure Fire,05/24/2011,05/23/2011,05/24/2011 05:34:37 AM,05/24/2011 05:34:38 AM,05/24/2011 05:35:15 AM,05/24/2011 05:37:21 AM,05/24/2011 05:39:04 AM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/24/2011 05:39:41 AM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",111440035-E03 -132240156,54,13075613,Medical Incident,08/12/2013,08/12/2013,08/12/2013 11:49:09 AM,08/12/2013 11:51:03 AM,08/12/2013 11:51:22 AM,08/12/2013 11:51:30 AM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,Other,04/25/2016 01:51:20 PM,MISSION ST/EXCELSIOR AV,SF,94112,B09,43,6116,3,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7262362449736, -122.433623592293)",132240156-54 -160140350,AM20,16005433,Medical Incident,01/14/2016,01/13/2016,01/14/2016 04:27:21 AM,01/14/2016 04:27:51 AM,01/14/2016 04:28:17 AM,01/14/2016 04:29:29 AM,01/14/2016 04:32:31 AM,01/14/2016 04:45:18 AM,01/14/2016 04:50:06 AM,Code 2 Transport,01/14/2016 05:15:38 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160140350-AM20 -112500077,T03,11082389,Medical Incident,09/07/2011,09/07/2011,09/07/2011 08:24:07 AM,09/07/2011 08:25:24 AM,09/07/2011 08:26:04 AM,09/07/2011 08:26:33 AM,09/07/2011 08:30:36 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 08:40:29 AM,1900 Block of FRANKLIN ST,SF,94109,B04,38,3226,3,2,2,false,,1,TRUCK,1,4,2,Pacific Heights,"(37.7923946747257, -122.424497572162)",112500077-T03 -113620262,KM14,11120321,Medical Incident,12/28/2011,12/28/2011,12/28/2011 04:14:58 PM,12/28/2011 04:17:12 PM,12/28/2011 04:17:53 PM,12/28/2011 04:18:29 PM,12/28/2011 04:22:19 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Patient Declined Transport,12/28/2011 04:59:18 PM,400 Block of SUTTER ST,SF,94108,B01,1,1324,2,2,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",113620262-KM14 -140790268,E05,14026789,Medical Incident,03/20/2014,03/20/2014,03/20/2014 04:36:06 PM,03/20/2014 04:37:50 PM,03/20/2014 04:38:18 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/20/2014 04:39:13 PM,1500 Block of GROVE ST,SAN FRANCISCO,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7754543454069, -122.442133697759)",140790268-E05 -133610305,KM15,13122784,Medical Incident,12/27/2013,12/27/2013,12/27/2013 08:13:27 PM,12/27/2013 08:15:34 PM,12/27/2013 08:17:30 PM,12/27/2013 08:18:29 PM,12/27/2013 08:31:41 PM,12/27/2013 08:49:39 PM,12/27/2013 08:55:11 PM,Code 2 Transport,12/27/2013 09:26:54 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133610305-KM15 -160041058,87,16001535,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:44:20 AM,01/04/2016 09:45:58 AM,01/04/2016 09:46:43 AM,01/04/2016 09:46:58 AM,01/04/2016 09:50:53 AM,01/04/2016 10:08:39 AM,01/04/2016 10:22:49 AM,Code 2 Transport,01/04/2016 10:53:46 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160041058-87 -160832962,68,16033055,Medical Incident,03/23/2016,03/23/2016,03/23/2016 05:08:44 PM,03/23/2016 05:09:23 PM,03/23/2016 05:09:48 PM,03/23/2016 05:10:21 PM,03/23/2016 05:13:15 PM,03/23/2016 05:36:07 PM,03/23/2016 05:54:23 PM,Code 2 Transport,03/23/2016 06:16:19 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",160832962-68 -131840365,E14,13062849,Medical Incident,07/03/2013,07/03/2013,07/03/2013 09:33:47 PM,07/03/2013 09:35:01 PM,07/03/2013 09:35:36 PM,07/03/2013 09:36:38 PM,07/03/2013 09:39:22 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/03/2013 09:49:55 PM,2000 Block of LAKE ST,SF,94121,B07,14,7174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Seacliff,"(37.7859640347416, -122.48139868398)",131840365-E14 -112080026,55,11068563,Medical Incident,07/27/2011,07/26/2011,07/27/2011 02:07:02 AM,07/27/2011 02:09:02 AM,07/27/2011 02:09:08 AM,04/25/2016 02:03:28 PM,07/27/2011 02:10:56 AM,07/27/2011 02:25:16 AM,07/27/2011 02:39:11 AM,Code 2 Transport,07/27/2011 03:12:49 AM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",112080026-55 -120100280,E01,12003556,Alarms,01/10/2012,01/10/2012,01/10/2012 05:45:21 PM,01/10/2012 05:46:14 PM,01/10/2012 05:46:19 PM,01/10/2012 05:47:24 PM,01/10/2012 05:51:38 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/10/2012 05:56:24 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",120100280-E01 -112320105,E43,11076529,Medical Incident,08/20/2011,08/20/2011,08/20/2011 09:40:55 AM,08/20/2011 09:41:23 AM,08/20/2011 09:42:03 AM,08/20/2011 09:42:44 AM,08/20/2011 09:47:44 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 09:57:34 AM,100 Block of TRUMBULL ST,SF,94112,B09,32,5635,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7307911496885, -122.427261743133)",112320105-E43 -160531338,65,16021172,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:31:52 AM,02/22/2016 11:35:43 AM,02/22/2016 11:36:03 AM,02/22/2016 11:36:14 AM,02/22/2016 11:40:25 AM,02/22/2016 12:07:19 PM,02/22/2016 12:21:59 PM,Code 2 Transport,02/22/2016 01:23:42 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160531338-65 -133370005,B06,13114076,Alarms,12/03/2013,12/02/2013,12/03/2013 12:47:17 AM,12/03/2013 12:47:17 AM,12/03/2013 12:47:25 AM,12/03/2013 12:48:58 AM,12/03/2013 12:51:30 AM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 01:03:20 AM,2800 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,false,Alarm,1,CHIEF,1,6,9,Mission,"(37.7514438314246, -122.41829760412)",133370005-B06 -160260338,KM03,16010180,Medical Incident,01/26/2016,01/25/2016,01/26/2016 03:33:42 AM,01/26/2016 03:33:42 AM,01/26/2016 03:34:42 AM,01/26/2016 03:36:23 AM,01/26/2016 03:42:08 AM,01/26/2016 03:56:36 AM,01/26/2016 04:25:34 AM,Code 2 Transport,01/26/2016 05:06:10 AM,17TH ST/MISSION ST,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7634292740134, -122.419512736792)",160260338-KM03 -102750392,AM10,10087542,Medical Incident,10/02/2010,10/02/2010,10/02/2010 09:51:58 PM,10/02/2010 09:53:27 PM,10/02/2010 09:54:44 PM,10/02/2010 09:55:06 PM,10/02/2010 10:04:37 PM,10/02/2010 10:21:13 PM,10/02/2010 10:28:00 PM,Code 2 Transport,10/02/2010 10:56:40 PM,1100 Block of SCOTT ST,SF,94115,B05,5,4133,2,2,2,false,,1,PRIVATE,1,5,5,Western Addition,"(37.7803259118056, -122.437234296615)",102750392-AM10 -133240172,AM06,13110013,Medical Incident,11/20/2013,11/20/2013,11/20/2013 11:14:58 AM,11/20/2013 11:15:49 AM,11/20/2013 11:16:29 AM,11/20/2013 11:17:09 AM,11/20/2013 11:24:02 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,No Merit,11/20/2013 11:26:09 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",133240172-AM06 -160141363,55,16005527,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:12:46 AM,01/14/2016 11:15:02 AM,01/14/2016 11:15:49 AM,01/14/2016 11:16:57 AM,01/14/2016 11:33:17 AM,01/14/2016 12:24:53 PM,01/14/2016 12:24:55 PM,Code 2 Transport,01/14/2016 12:59:04 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160141363-55 -102250304,E06,10070966,Medical Incident,08/13/2010,08/13/2010,08/13/2010 10:09:26 PM,08/13/2010 10:10:08 PM,08/13/2010 10:10:25 PM,08/13/2010 10:11:23 PM,08/13/2010 10:13:18 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 10:23:04 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",102250304-E06 -160300209,65,16011632,Medical Incident,01/30/2016,01/29/2016,01/30/2016 01:19:39 AM,01/30/2016 01:20:19 AM,01/30/2016 01:20:27 AM,01/30/2016 01:20:51 AM,01/30/2016 01:27:40 AM,01/30/2016 01:48:31 AM,01/30/2016 02:03:13 AM,Code 2 Transport,01/30/2016 03:30:40 AM,4700 Block of BALBOA ST,San Francisco,94121,B07,34,7312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7752070093177, -122.50963436518)",160300209-65 -102680463,RC1,10085135,Medical Incident,09/25/2010,09/25/2010,09/25/2010 10:36:06 PM,09/25/2010 10:37:34 PM,09/25/2010 10:37:45 PM,09/25/2010 10:41:21 PM,09/25/2010 10:45:30 PM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,09/25/2010 10:48:56 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,E,3,true,,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7792116845421, -122.4109365738)",102680463-RC1 -120490166,E42,12016203,Medical Incident,02/18/2012,02/18/2012,02/18/2012 12:48:44 PM,02/18/2012 12:51:05 PM,02/18/2012 12:51:48 PM,02/18/2012 12:53:58 PM,02/18/2012 12:55:06 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/18/2012 01:15:31 PM,0 Block of VENUS ST,SF,94124,B10,42,6473,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7319521055953, -122.396831724328)",120490166-E42 -111190064,E29,11039155,Medical Incident,04/29/2011,04/29/2011,04/29/2011 08:31:52 AM,04/29/2011 08:33:17 AM,04/29/2011 08:33:43 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 08:34:58 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,2,2,true,,1,ENGINE,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",111190064-E29 -160912503,71,16036147,Medical Incident,03/31/2016,03/31/2016,03/31/2016 04:30:38 PM,03/31/2016 04:33:20 PM,03/31/2016 04:34:44 PM,03/31/2016 04:35:07 PM,03/31/2016 04:53:35 PM,03/31/2016 05:05:07 PM,03/31/2016 05:42:34 PM,Code 2 Transport,03/31/2016 06:07:41 PM,700 Block of HEAD ST,San Francisco,94132,B09,33,8433,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7206866121124, -122.464403388281)",160912503-71 -111300092,RC3,11042898,Traffic Collision,05/10/2011,05/10/2011,05/10/2011 08:58:26 AM,05/10/2011 08:58:40 AM,05/10/2011 08:58:51 AM,05/10/2011 09:22:15 AM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Other,05/10/2011 09:23:15 AM,DIAMOND HEIGHTS BL/BERKELEY WY,SF,94131,B06,26,8174,3,3,3,true,,1,RESCUE CAPTAIN,3,6,8,Glen Park,"(37.7386884239445, -122.439549049648)",111300092-RC3 -122180080,94,12072220,Medical Incident,08/05/2012,08/04/2012,08/05/2012 04:08:39 AM,08/05/2012 04:09:10 AM,08/05/2012 04:09:22 AM,08/05/2012 04:09:47 AM,08/05/2012 04:14:41 AM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Patient Declined Transport,08/05/2012 04:49:37 AM,2600 Block of FOLSOM ST,SF,94110,B06,7,5473,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7548949878371, -122.414379534587)",122180080-94 -122190342,KM07,12072789,Medical Incident,08/06/2012,08/06/2012,08/06/2012 08:47:41 PM,08/06/2012 08:48:41 PM,08/06/2012 08:48:54 PM,08/06/2012 08:50:15 PM,08/06/2012 08:53:17 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Patient Declined Transport,08/06/2012 09:28:06 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.787352867216, -122.399071684966)",122190342-KM07 -112240380,RB1,11074153,Water Rescue,08/12/2011,08/12/2011,08/12/2011 10:09:22 PM,08/12/2011 10:11:40 PM,08/12/2011 10:15:06 PM,08/12/2011 10:21:42 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 11:56:40 PM,CALL BOX: 1 ANGEL ISLAND DR,AI,,B99,94,AI02,3,3,3,false,,1,SUPPORT,4,None,None,None,"(37.8544643401172, -122.421080465833)",112240380-RB1 -111140037,E01,11037550,Medical Incident,04/24/2011,04/23/2011,04/24/2011 02:43:23 AM,04/24/2011 02:44:21 AM,04/24/2011 02:44:28 AM,04/24/2011 02:46:15 AM,04/24/2011 02:47:19 AM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 02:47:50 AM,CLEMENTINA ST/3RD ST,SF,94105,B03,1,2176,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842136382775, -122.399459825894)",111140037-E01 -132630047,E03,13088993,Medical Incident,09/20/2013,09/19/2013,09/20/2013 03:22:44 AM,09/20/2013 03:23:14 AM,09/20/2013 03:23:59 AM,09/20/2013 03:25:34 AM,09/20/2013 03:28:20 AM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 03:37:00 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",132630047-E03 -133170238,E01,13107781,Alarms,11/13/2013,11/13/2013,11/13/2013 03:27:22 PM,11/13/2013 03:28:12 PM,11/13/2013 03:29:48 PM,04/25/2016 01:49:47 PM,11/13/2013 03:37:55 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 03:38:00 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",133170238-E01 -120110126,E08,12003766,Medical Incident,01/11/2012,01/11/2012,01/11/2012 11:46:02 AM,01/11/2012 11:46:17 AM,01/11/2012 11:46:27 AM,01/11/2012 11:49:46 AM,01/11/2012 11:50:32 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 12:00:25 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",120110126-E08 -160062968,76,16002539,Medical Incident,01/06/2016,01/06/2016,01/06/2016 06:11:27 PM,01/06/2016 06:13:08 PM,01/06/2016 06:27:30 PM,01/06/2016 06:28:08 PM,01/06/2016 06:42:02 PM,01/06/2016 06:47:03 PM,01/06/2016 06:58:02 PM,Code 2 Transport,01/06/2016 07:23:46 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160062968-76 -110890426,92,11029608,Medical Incident,03/30/2011,03/30/2011,03/30/2011 11:42:15 PM,03/30/2011 11:43:09 PM,03/30/2011 11:45:55 PM,03/30/2011 11:46:38 PM,03/30/2011 11:56:52 PM,03/31/2011 12:30:47 AM,03/31/2011 12:47:29 AM,Code 2 Transport,03/31/2011 01:15:43 AM,2600 Block of 17TH AVE,SF,94116,B08,40,7411,1,1,2,true,,1,MEDIC,1,8,7,West of Twin Peaks,"(37.738481429132, -122.473295868437)",110890426-92 -102900247,B02,10092565,Alarms,10/17/2010,10/17/2010,10/17/2010 05:20:36 PM,10/17/2010 05:21:11 PM,10/17/2010 05:21:23 PM,10/17/2010 05:22:29 PM,10/17/2010 05:25:06 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/17/2010 05:40:14 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,,1,CHIEF,2,2,9,Mission,"(37.7661343875141, -122.421935077177)",102900247-B02 -160481787,82,16019334,Medical Incident,02/17/2016,02/17/2016,02/17/2016 12:34:52 PM,02/17/2016 12:36:33 PM,02/17/2016 12:37:04 PM,02/17/2016 12:37:17 PM,02/17/2016 12:45:35 PM,02/17/2016 01:02:31 PM,02/17/2016 01:13:07 PM,Code 2 Transport,02/17/2016 02:03:46 PM,WEST PORTAL AV/14TH AV,San Francisco,94127,B08,39,8612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7379698827734, -122.469056677033)",160481787-82 -140550149,MA1,14018541,Structure Fire,02/24/2014,02/24/2014,02/24/2014 11:52:34 AM,02/24/2014 11:53:10 AM,02/24/2014 11:57:17 AM,02/24/2014 11:58:24 AM,02/24/2014 12:40:25 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Duplicate,02/24/2014 02:02:58 PM,2100 Block of JERROLD AVE,SF,94124,B10,9,6421,,3,3,false,Fire,3,SUPPORT,33,10,10,Bayview Hunters Point,"(37.7444944575453, -122.399569364044)",140550149-MA1 -160271474,71,16010645,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:33:39 AM,01/27/2016 11:34:16 AM,01/27/2016 11:34:24 AM,01/27/2016 11:34:35 AM,01/27/2016 11:37:41 AM,01/27/2016 11:57:26 AM,01/27/2016 12:12:39 PM,Code 2 Transport,01/27/2016 12:56:26 PM,FOLSOM ST/6TH ST,San Francisco,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",160271474-71 -102420301,E36,10076418,Medical Incident,08/30/2010,08/30/2010,08/30/2010 06:16:23 PM,08/30/2010 06:17:17 PM,08/30/2010 06:17:26 PM,08/30/2010 06:18:48 PM,08/30/2010 06:20:40 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/30/2010 06:39:31 PM,600 Block of LAGUNA ST,SF,94102,B02,36,3413,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",102420301-E36 -140230326,E05,14007984,Medical Incident,01/23/2014,01/23/2014,01/23/2014 09:17:39 PM,01/23/2014 09:20:03 PM,01/23/2014 09:20:36 PM,01/23/2014 09:23:00 PM,01/23/2014 09:24:59 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 09:35:56 PM,1400 Block of LAGUNA ST,SF,94115,B04,5,3365,,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Western Addition,"(37.7844305228999, -122.427952216938)",140230326-E05 -120560053,B01,12018393,Alarms,02/25/2012,02/24/2012,02/25/2012 05:59:10 AM,02/25/2012 06:00:14 AM,02/25/2012 06:00:26 AM,02/25/2012 06:02:56 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 06:10:24 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.7980497141877, -122.406829909619)",120560053-B01 -120630391,RC1,12020928,Structure Fire,03/03/2012,03/03/2012,03/03/2012 09:36:34 PM,03/03/2012 09:37:01 PM,03/03/2012 09:37:18 PM,03/03/2012 10:01:55 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/03/2012 09:59:25 PM,1800 Block of OAKDALE AVE,SF,94124,B10,42,6444,3,3,3,true,Fire,3,RESCUE CAPTAIN,46,10,10,Bayview Hunters Point,"(37.7375042189557, -122.395572399938)",120630391-RC1 -130640265,E01,13021494,Structure Fire,03/05/2013,03/05/2013,03/05/2013 04:43:39 PM,03/05/2013 04:43:39 PM,03/05/2013 04:43:49 PM,03/05/2013 04:44:03 PM,04/25/2016 01:53:59 PM,04/25/2016 01:53:59 PM,04/25/2016 01:53:59 PM,Other,03/05/2013 04:47:07 PM,MASON ST/ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,2,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",130640265-E01 -121080244,E17,12035808,Other,04/17/2012,04/17/2012,04/17/2012 04:31:05 PM,04/17/2012 04:32:57 PM,04/17/2012 04:33:41 PM,04/17/2012 04:34:45 PM,04/17/2012 04:37:26 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/17/2012 04:47:50 PM,1500 Block of NEWCOMB AVE,SF,94124,B10,17,6534,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7347423942103, -122.388800065466)",121080244-E17 -133150057,93,13106958,Traffic Collision,11/11/2013,11/10/2013,11/11/2013 05:32:48 AM,11/11/2013 05:34:47 AM,11/11/2013 05:38:27 AM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,11/11/2013 05:58:12 AM,11/11/2013 06:06:00 AM,Code 2 Transport,11/11/2013 06:34:51 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",133150057-93 -121890242,RC2,12063015,Medical Incident,07/07/2012,07/07/2012,07/07/2012 04:00:36 PM,07/07/2012 04:01:39 PM,07/07/2012 04:02:14 PM,07/07/2012 04:02:20 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/07/2012 04:06:30 PM,1600 Block of 48TH AVE,SF,94122,B08,23,7724,E,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7556706107482, -122.507670205519)",121890242-RC2 -160783018,67,16031117,Medical Incident,03/18/2016,03/18/2016,03/18/2016 05:55:17 PM,03/18/2016 05:55:50 PM,03/18/2016 06:00:43 PM,03/18/2016 06:00:43 PM,03/18/2016 06:13:46 PM,03/18/2016 06:25:45 PM,03/18/2016 07:01:05 PM,Code 2 Transport,03/18/2016 07:32:08 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160783018-67 -120920125,KM15,12030402,Medical Incident,04/01/2012,04/01/2012,04/01/2012 09:08:10 AM,04/01/2012 09:09:09 AM,04/01/2012 09:09:53 AM,04/01/2012 09:18:45 AM,04/01/2012 09:20:25 AM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,Patient Declined Transport,04/01/2012 09:38:30 AM,1800 Block of POLK ST,SF,94109,B04,41,3124,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7936924481231, -122.421385557378)",120920125-KM15 -160892673,66,16035407,Medical Incident,03/29/2016,03/29/2016,03/29/2016 04:39:02 PM,03/29/2016 04:40:41 PM,03/29/2016 04:41:05 PM,03/29/2016 04:41:17 PM,03/29/2016 04:59:55 PM,03/29/2016 05:19:02 PM,03/29/2016 06:06:27 PM,Code 3 Transport,03/29/2016 06:39:46 PM,0 Block of GOULD ST,San Francisco,94124,B10,44,6323,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7220246314295, -122.398063263582)",160892673-66 -160290665,85,16011346,Medical Incident,01/29/2016,01/28/2016,01/29/2016 07:58:59 AM,01/29/2016 08:00:18 AM,01/29/2016 08:00:38 AM,01/29/2016 08:00:56 AM,01/29/2016 08:04:12 AM,01/29/2016 08:31:04 AM,01/29/2016 08:47:22 AM,Code 2 Transport,01/29/2016 09:35:35 AM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7796175741202, -122.473838626607)",160290665-85 -113100221,RC1,11103077,Medical Incident,11/06/2011,11/06/2011,11/06/2011 03:24:11 PM,11/06/2011 03:24:39 PM,11/06/2011 03:24:52 PM,11/06/2011 03:39:18 PM,11/06/2011 03:45:17 PM,11/06/2011 04:03:45 PM,04/25/2016 02:01:46 PM,Other,11/06/2011 04:30:11 PM,1700 Block of NORTH POINT ST,SF,94123,B04,16,3455,3,3,3,true,,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.8036586225471, -122.436019366977)",113100221-RC1 -130660165,E03,13022024,Medical Incident,03/07/2013,03/07/2013,03/07/2013 12:11:31 PM,03/07/2013 12:15:15 PM,03/07/2013 12:17:06 PM,03/07/2013 12:18:00 PM,03/07/2013 12:19:35 PM,04/25/2016 01:53:57 PM,04/25/2016 01:53:57 PM,Other,03/07/2013 12:21:03 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",130660165-E03 -102780097,KM04,10088307,Medical Incident,10/05/2010,10/05/2010,10/05/2010 08:52:02 AM,10/05/2010 08:52:44 AM,10/05/2010 08:52:54 AM,10/05/2010 08:54:05 AM,10/05/2010 08:56:30 AM,10/05/2010 09:09:02 AM,10/05/2010 09:21:45 AM,Code 2 Transport,10/05/2010 09:42:33 AM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,false,,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7695711762103, -122.449920089485)",102780097-KM04 -160441274,AM08,16017654,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:08:21 AM,02/13/2016 11:12:34 AM,02/13/2016 11:13:20 AM,02/13/2016 11:14:02 AM,02/13/2016 11:33:58 AM,02/13/2016 11:45:06 AM,02/13/2016 11:57:51 AM,Code 2 Transport,02/13/2016 12:15:31 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160441274-AM08 -160903320,62,16035847,Medical Incident,03/30/2016,03/30/2016,03/30/2016 06:58:46 PM,03/30/2016 06:59:30 PM,03/30/2016 06:59:54 PM,03/30/2016 07:00:01 PM,03/30/2016 07:02:45 PM,03/30/2016 07:18:19 PM,03/30/2016 07:38:54 PM,Code 2 Transport,03/30/2016 08:21:29 PM,HAIGHT ST/MASONIC AV,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",160903320-62 -130560339,T05,13019000,Alarms,02/25/2013,02/25/2013,02/25/2013 08:55:34 PM,02/25/2013 08:57:05 PM,02/25/2013 08:57:13 PM,02/25/2013 08:57:51 PM,02/25/2013 09:01:43 PM,04/25/2016 01:54:07 PM,04/25/2016 01:54:07 PM,Other,02/25/2013 09:10:52 PM,0 Block of COOK ST,SF,94118,B05,10,445,3,3,3,true,Alarm,1,TRUCK,1,5,2,Presidio Heights,"(37.7827442362846, -122.452392135111)",130560339-T05 -160023195,85,16000917,Medical Incident,01/02/2016,01/02/2016,01/02/2016 08:54:38 PM,01/02/2016 08:54:48 PM,01/02/2016 09:03:45 PM,01/02/2016 09:03:56 PM,01/02/2016 09:16:33 PM,01/02/2016 09:30:01 PM,01/02/2016 09:49:38 PM,Code 2 Transport,01/02/2016 10:26:47 PM,1300 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",160023195-85 -160033314,85,16001399,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:50:41 PM,01/03/2016 10:51:53 PM,01/03/2016 10:53:37 PM,01/03/2016 10:54:10 PM,01/03/2016 11:07:12 PM,01/03/2016 11:27:49 PM,01/03/2016 11:36:40 PM,Code 2 Transport,01/04/2016 12:18:55 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160033314-85 -131830307,E28,13062461,Other,07/02/2013,07/02/2013,07/02/2013 06:58:43 PM,07/02/2013 07:00:15 PM,07/02/2013 07:00:36 PM,07/02/2013 07:01:39 PM,07/02/2013 07:03:32 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Fire,07/02/2013 07:09:20 PM,GRANT AV/NORTH POINT ST,SF,94133,B01,28,1255,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8071632523492, -122.408897336834)",131830307-E28 -160873067,KM11,16034704,Medical Incident,03/27/2016,03/27/2016,03/27/2016 07:32:22 PM,03/27/2016 07:34:25 PM,03/27/2016 07:35:40 PM,03/27/2016 07:36:04 PM,03/27/2016 07:46:53 PM,03/27/2016 08:08:38 PM,03/27/2016 08:15:06 PM,Code 2 Transport,03/27/2016 08:39:16 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",160873067-KM11 -160111666,AM08,16004394,Medical Incident,01/11/2016,01/11/2016,01/11/2016 01:03:22 PM,01/11/2016 01:04:26 PM,01/11/2016 01:04:49 PM,01/11/2016 01:05:44 PM,01/11/2016 01:10:51 PM,01/11/2016 01:26:01 PM,01/11/2016 01:35:25 PM,Code 2 Transport,01/11/2016 02:37:11 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",160111666-AM08 -121450138,E36,12048097,Medical Incident,05/24/2012,05/24/2012,05/24/2012 11:33:20 AM,05/24/2012 11:34:05 AM,05/24/2012 11:34:17 AM,05/24/2012 11:36:22 AM,05/24/2012 11:38:47 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 11:38:53 AM,8TH ST/MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",121450138-E36 -140420277,E03,14014351,Medical Incident,02/11/2014,02/11/2014,02/11/2014 04:51:03 PM,02/11/2014 04:52:20 PM,02/11/2014 04:52:36 PM,02/11/2014 04:53:29 PM,02/11/2014 04:55:17 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/11/2014 04:58:54 PM,VAN NESS AV/ELLIS ST,SF,94109,B04,3,3162,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7838241173643, -122.421008360007)",140420277-E03 -112160348,E07,11071480,Medical Incident,08/04/2011,08/04/2011,08/04/2011 07:56:22 PM,08/04/2011 07:56:23 PM,08/04/2011 07:56:39 PM,08/04/2011 07:57:44 PM,08/04/2011 07:58:54 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,04/25/2016 02:03:19 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,2,2,true,,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",112160348-E07 -160373925,PT204,16014951,Medical Incident,02/06/2016,02/06/2016,02/06/2016 10:02:33 PM,02/06/2016 10:02:56 PM,02/06/2016 10:05:59 PM,02/06/2016 10:06:39 PM,02/06/2016 10:19:25 PM,02/06/2016 10:22:03 PM,02/06/2016 10:39:31 PM,Code 2 Transport,02/06/2016 11:30:56 PM,1000 Block of GILMAN AVE,San Francisco,94124,B10,17,6611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7187222856771, -122.389118324965)",160373925-PT204 -131370031,88,13046143,Medical Incident,05/17/2013,05/16/2013,05/17/2013 02:14:07 AM,05/17/2013 02:16:25 AM,05/17/2013 02:16:53 AM,05/17/2013 02:17:00 AM,05/17/2013 02:21:22 AM,05/17/2013 02:32:32 AM,05/17/2013 02:37:06 AM,Code 2 Transport,05/17/2013 03:06:58 AM,2200 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7994131607449, -122.438492113191)",131370031-88 -113510426,66,11116690,Medical Incident,12/17/2011,12/17/2011,12/17/2011 11:24:55 PM,12/17/2011 11:25:35 PM,12/17/2011 11:26:38 PM,12/17/2011 11:26:47 PM,12/17/2011 11:44:47 PM,12/17/2011 11:58:42 PM,12/18/2011 12:14:49 AM,Code 2 Transport,12/18/2011 12:42:01 AM,1100 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7904931635277, -122.414117159154)",113510426-66 -123410173,55,12113765,Medical Incident,12/06/2012,12/06/2012,12/06/2012 11:17:05 AM,12/06/2012 11:19:21 AM,12/06/2012 11:20:25 AM,12/06/2012 11:21:10 AM,12/06/2012 11:25:19 AM,12/06/2012 11:41:48 AM,12/06/2012 11:55:54 AM,Code 2 Transport,12/06/2012 12:23:18 PM,1200 Block of FITZGERALD AVE,SF,94124,B10,17,6614,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7215500486273, -122.392199018387)",123410173-55 -132250417,E03,13076134,Medical Incident,08/13/2013,08/13/2013,08/13/2013 10:37:31 PM,08/13/2013 10:40:44 PM,08/13/2013 10:41:02 PM,08/13/2013 10:41:16 PM,08/13/2013 10:43:27 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 10:52:12 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132250417-E03 -133320065,E36,13112591,Medical Incident,11/28/2013,11/27/2013,11/28/2013 07:47:52 AM,11/28/2013 07:48:13 AM,11/28/2013 07:48:43 AM,11/28/2013 07:50:13 AM,11/28/2013 07:53:32 AM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/28/2013 08:00:52 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",133320065-E36 -102780106,B10,10088315,Traffic Collision,10/05/2010,10/05/2010,10/05/2010 09:07:03 AM,10/05/2010 09:07:55 AM,10/05/2010 09:08:46 AM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,Other,04/25/2016 02:08:15 PM,3RD ST/EVANS AV,SF,94124,B10,25,6457,3,3,3,false,,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",102780106-B10 -160241692,81,16009529,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:13:07 PM,01/24/2016 01:15:21 PM,01/24/2016 01:15:51 PM,01/24/2016 01:16:02 PM,01/24/2016 01:21:31 PM,01/24/2016 01:40:43 PM,01/24/2016 01:53:32 PM,Code 2 Transport,01/24/2016 02:35:59 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160241692-81 -121390355,KM07,12046318,Medical Incident,05/18/2012,05/18/2012,05/18/2012 10:07:04 PM,05/18/2012 10:09:01 PM,05/18/2012 10:10:47 PM,05/18/2012 10:11:56 PM,05/18/2012 10:24:00 PM,05/18/2012 10:34:09 PM,05/18/2012 10:52:04 PM,Code 2 Transport,05/18/2012 11:33:33 PM,3RD ST/16TH ST,SF,94158,B03,8,2364,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7669034802392, -122.389099105579)",121390355-KM07 -160221214,AM02,16008722,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:30:21 AM,01/22/2016 10:32:27 AM,01/22/2016 10:37:20 AM,01/22/2016 10:38:07 AM,01/22/2016 10:44:46 AM,01/22/2016 10:57:14 AM,01/22/2016 11:17:02 AM,Code 2 Transport,01/22/2016 12:02:50 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",160221214-AM02 -132650150,D3,13089862,Structure Fire,09/22/2013,09/22/2013,09/22/2013 10:37:24 AM,09/22/2013 10:38:43 AM,09/22/2013 10:38:59 AM,09/22/2013 10:40:00 AM,09/22/2013 10:42:07 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/22/2013 10:55:39 AM,300 Block of SAN CARLOS ST,SF,94110,B06,7,5446,3,3,3,false,Alarm,1,CHIEF,3,6,9,Mission,"(37.7577905970019, -122.419696229317)",132650150-D3 -130250160,89,13008600,Medical Incident,01/25/2013,01/25/2013,01/25/2013 11:37:05 AM,01/25/2013 11:38:18 AM,01/25/2013 11:39:04 AM,01/25/2013 11:39:14 AM,01/25/2013 11:44:15 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/25/2013 12:06:39 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",130250160-89 -110770366,E08,11025498,Medical Incident,03/18/2011,03/18/2011,03/18/2011 09:59:51 PM,03/18/2011 10:02:07 PM,03/18/2011 10:03:16 PM,03/18/2011 10:04:06 PM,03/18/2011 10:07:28 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 10:33:46 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",110770366-E08 -160442229,AM02,16017745,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:49:38 PM,02/13/2016 03:51:17 PM,02/13/2016 03:51:45 PM,02/13/2016 03:52:25 PM,02/13/2016 03:56:25 PM,02/13/2016 04:22:29 PM,02/13/2016 04:30:25 PM,Code 2 Transport,02/13/2016 04:39:34 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160442229-AM02 -123020108,67,12100092,Medical Incident,10/28/2012,10/27/2012,10/28/2012 06:08:00 AM,10/28/2012 06:08:00 AM,10/28/2012 06:08:51 AM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,04/25/2016 01:56:05 PM,100 Block of FELTON ST,SF,94134,B10,42,6341,1,1,2,true,Non Life-threatening,1,MEDIC,3,10,9,Portola,"(37.7296995803959, -122.406105145502)",123020108-67 -110510338,E18,11017019,Medical Incident,02/20/2011,02/20/2011,02/20/2011 07:55:49 PM,02/20/2011 07:56:45 PM,02/20/2011 07:57:06 PM,02/20/2011 07:59:58 PM,02/20/2011 08:02:53 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 08:19:41 PM,1600 Block of 41ST AVE,SF,94122,B08,23,7632,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7559938310566, -122.500169860871)",110510338-E18 -140100029,B07,14003367,Alarms,01/10/2014,01/09/2014,01/10/2014 03:06:31 AM,01/10/2014 03:08:34 AM,01/10/2014 03:09:01 AM,01/10/2014 03:10:55 AM,01/10/2014 03:13:42 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 03:26:58 AM,3100 Block of FULTON ST,SF,94122,B07,31,7133,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7734767861199, -122.465348329956)",140100029-B07 -160471554,79,16018905,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:58:34 AM,02/16/2016 12:00:32 PM,02/16/2016 12:00:56 PM,02/16/2016 12:01:02 PM,02/16/2016 12:02:40 PM,02/16/2016 12:13:47 PM,02/16/2016 12:20:18 PM,Patient Declined Transport,02/16/2016 12:38:13 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160471554-79 -160601698,74,16023898,Medical Incident,02/29/2016,02/29/2016,02/29/2016 12:54:05 PM,02/29/2016 12:54:05 PM,02/29/2016 12:54:54 PM,02/29/2016 12:55:01 PM,02/29/2016 12:57:49 PM,02/29/2016 01:12:21 PM,02/29/2016 01:25:58 PM,Code 2 Transport,02/29/2016 01:51:00 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160601698-74 -132850265,93,13097018,Medical Incident,10/12/2013,10/12/2013,10/12/2013 05:46:06 PM,10/12/2013 05:47:29 PM,10/12/2013 05:48:15 PM,10/12/2013 05:48:54 PM,10/12/2013 05:54:27 PM,10/12/2013 06:19:26 PM,10/12/2013 06:25:42 PM,Code 2 Transport,10/12/2013 06:54:07 PM,1000 Block of NOE ST,SF,94114,B06,11,5522,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",132850265-93 -160774342,58,16030827,Medical Incident,03/17/2016,03/17/2016,03/17/2016 11:11:03 PM,03/17/2016 11:11:03 PM,03/17/2016 11:11:53 PM,03/17/2016 11:12:13 PM,03/17/2016 11:17:03 PM,03/17/2016 11:30:07 PM,03/18/2016 12:09:35 AM,Code 2 Transport,03/18/2016 12:59:31 AM,500 Block of STEVENSON ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7808489821495, -122.410772584803)",160774342-58 -123530033,87,12117982,Structure Fire,12/18/2012,12/17/2012,12/18/2012 02:50:35 AM,12/18/2012 02:51:16 AM,12/18/2012 02:51:30 AM,12/18/2012 02:53:45 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 02:58:02 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Alarm,1,MEDIC,11,3,6,South of Market,"(37.7803475492385, -122.406487967809)",123530033-87 -160420247,60,16016718,Medical Incident,02/11/2016,02/10/2016,02/11/2016 03:02:37 AM,02/11/2016 03:04:24 AM,02/11/2016 03:04:52 AM,02/11/2016 03:05:06 AM,02/11/2016 03:09:45 AM,02/11/2016 03:51:07 AM,02/11/2016 03:57:03 AM,Code 3 Transport,02/11/2016 05:08:35 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160420247-60 -110130056,AM16,11004211,Medical Incident,01/13/2011,01/12/2011,01/13/2011 06:06:55 AM,01/13/2011 06:07:29 AM,01/13/2011 06:09:13 AM,01/13/2011 06:09:58 AM,01/13/2011 06:28:28 AM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Patient Declined Transport,01/13/2011 06:31:35 AM,900 Block of GOETTINGEN ST,SF,94134,B10,44,626,2,2,2,false,,1,PRIVATE,1,10,10,Portola,"(37.720395497495, -122.403937540892)",110130056-AM16 -140190064,E06,14006437,Medical Incident,01/19/2014,01/18/2014,01/19/2014 03:27:06 AM,01/19/2014 03:28:22 AM,01/19/2014 03:29:47 AM,01/19/2014 03:32:52 AM,01/19/2014 03:33:15 AM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/19/2014 03:36:59 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",140190064-E06 -133450306,B06,13117093,Structure Fire,12/11/2013,12/11/2013,12/11/2013 04:27:23 PM,12/11/2013 04:27:52 PM,12/11/2013 04:28:19 PM,12/11/2013 04:30:00 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,Other,12/11/2013 04:34:51 PM,500 Block of NEVADA ST,SF,94110,B10,32,5746,3,3,3,false,Alarm,1,CHIEF,6,10,9,Bernal Heights,"(37.7352159283229, -122.411843888216)",133450306-B06 -160441163,52,16017638,Medical Incident,02/13/2016,02/13/2016,02/13/2016 10:32:24 AM,02/13/2016 10:36:35 AM,02/13/2016 10:36:47 AM,02/13/2016 10:36:53 AM,02/13/2016 10:45:15 AM,02/13/2016 10:52:55 AM,02/13/2016 11:08:07 AM,Code 2 Transport,02/13/2016 11:45:38 AM,1900 Block of KIRKHAM ST,San Francisco,94122,B08,22,7447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7596742271899, -122.481688176679)",160441163-52 -103280196,96,10105079,Medical Incident,11/24/2010,11/24/2010,11/24/2010 02:37:50 PM,11/24/2010 02:39:16 PM,11/24/2010 02:40:20 PM,11/24/2010 02:40:48 PM,11/24/2010 02:41:29 PM,11/24/2010 03:08:07 PM,11/24/2010 03:20:01 PM,Code 2 Transport,11/24/2010 03:41:08 PM,1000 Block of LEAVENWORTH ST,SF,94109,B01,41,1541,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7907216617507, -122.415722994443)",103280196-96 -122360020,77,12078059,Structure Fire,08/23/2012,08/22/2012,08/23/2012 01:53:36 AM,08/23/2012 01:54:08 AM,08/23/2012 01:54:30 AM,08/23/2012 01:55:00 AM,08/23/2012 02:02:52 AM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Other,08/23/2012 02:03:46 AM,300 Block of NOE ST,SF,94114,B05,6,5233,3,3,3,true,Fire,1,MEDIC,7,5,8,Castro/Upper Market,"(37.7634109532229, -122.432957006653)",122360020-77 -113630039,73,11120478,Medical Incident,12/29/2011,12/28/2011,12/29/2011 04:46:19 AM,12/29/2011 04:46:34 AM,12/29/2011 04:46:42 AM,12/29/2011 04:48:05 AM,12/29/2011 04:53:04 AM,12/29/2011 04:59:14 AM,12/29/2011 05:03:34 AM,Code 2 Transport,12/29/2011 05:30:17 AM,1100 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7517406897648, -122.396529537539)",113630039-73 -111950149,T01,11064348,Structure Fire,07/14/2011,07/14/2011,07/14/2011 12:20:17 PM,07/14/2011 12:20:18 PM,07/14/2011 12:20:35 PM,07/14/2011 12:23:44 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 12:24:01 PM,8TH ST/MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",111950149-T01 -121660217,83,12055085,Medical Incident,06/14/2012,06/14/2012,06/14/2012 02:02:38 PM,06/14/2012 02:05:10 PM,06/14/2012 02:05:22 PM,06/14/2012 02:06:20 PM,06/14/2012 02:10:14 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 02:15:09 PM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7881178022274, -122.401226932683)",121660217-83 -121190042,E01,12039364,Structure Fire,04/28/2012,04/27/2012,04/28/2012 02:40:34 AM,04/28/2012 02:40:35 AM,04/28/2012 02:40:49 AM,04/28/2012 02:41:02 AM,04/28/2012 02:41:55 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Fire,04/28/2012 02:42:04 AM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7820242662358, -122.401159719509)",121190042-E01 -120080218,64,12002799,Medical Incident,01/08/2012,01/08/2012,01/08/2012 02:11:40 PM,01/08/2012 02:12:06 PM,01/08/2012 02:12:28 PM,01/08/2012 02:26:27 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/08/2012 02:28:32 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,E,E,3,false,Potentially Life-Threatening,1,MEDIC,6,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",120080218-64 -160651737,74,16025935,Medical Incident,03/05/2016,03/05/2016,03/05/2016 01:26:25 PM,03/05/2016 01:27:50 PM,03/05/2016 01:28:31 PM,03/05/2016 01:28:54 PM,03/05/2016 01:46:52 PM,03/05/2016 02:20:37 PM,03/05/2016 02:38:17 PM,Code 2 Transport,03/05/2016 03:31:57 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160651737-74 -133510078,T16,13119103,Alarms,12/17/2013,12/16/2013,12/17/2013 07:00:58 AM,12/17/2013 07:02:26 AM,12/17/2013 07:02:52 AM,12/17/2013 07:04:58 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 07:09:21 AM,100 Block of FISHER LOOP,PR,94129,B99,51,4626,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.7998898584318, -122.461819826995)",133510078-T16 -160520497,KM03,16020690,Medical Incident,02/21/2016,02/20/2016,02/21/2016 03:35:03 AM,02/21/2016 03:35:44 AM,02/21/2016 03:35:57 AM,02/21/2016 03:36:20 AM,02/21/2016 03:42:37 AM,02/21/2016 03:53:21 AM,02/21/2016 04:03:27 AM,Code 2 Transport,02/21/2016 04:43:54 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160520497-KM03 -160871551,75,16034556,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:58:42 AM,03/27/2016 12:00:24 PM,03/27/2016 12:01:54 PM,03/27/2016 12:02:16 PM,03/27/2016 12:10:20 PM,03/27/2016 12:21:21 PM,03/27/2016 12:37:41 PM,Code 2 Transport,03/27/2016 01:03:16 PM,700 Block of BROTHERHOOD WAY,San Francisco,94132,B08,33,8776,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.712805610441, -122.472725300838)",160871551-75 -160020508,65,16000623,Medical Incident,01/02/2016,01/01/2016,01/02/2016 05:47:51 AM,01/02/2016 05:47:51 AM,01/02/2016 05:49:49 AM,01/02/2016 05:49:49 AM,01/02/2016 05:52:40 AM,01/02/2016 06:37:30 AM,01/02/2016 06:46:08 AM,Code 2 Transport,01/02/2016 07:34:39 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",160020508-65 -113540395,E02,11117723,Medical Incident,12/20/2011,12/20/2011,12/20/2011 11:37:18 PM,12/20/2011 11:38:11 PM,12/20/2011 11:38:28 PM,12/20/2011 11:41:58 PM,12/20/2011 11:44:10 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,Other,12/20/2011 11:44:45 PM,HYDE ST/CLAY ST,SF,94109,B01,41,1536,3,E,3,true,,1,ENGINE,3,1,3,Nob Hill,"(37.7928036424376, -122.417759120819)",113540395-E02 -123420362,FB1,12114299,Water Rescue,12/07/2012,12/07/2012,12/07/2012 03:57:40 PM,12/07/2012 03:58:30 PM,12/07/2012 03:59:53 PM,12/07/2012 04:05:49 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/07/2012 04:27:53 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,SUPPORT,14,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",123420362-FB1 -112020021,94,11066510,Medical Incident,07/21/2011,07/20/2011,07/21/2011 01:58:35 AM,07/21/2011 02:00:21 AM,07/21/2011 02:00:29 AM,07/21/2011 02:00:43 AM,07/21/2011 02:02:42 AM,07/21/2011 02:20:47 AM,07/21/2011 02:28:20 AM,Code 2 Transport,07/21/2011 02:42:59 AM,0 Block of CASA WAY,SF,94123,B04,16,3563,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8055868215911, -122.439120724665)",112020021-94 -120730351,E29,12024367,Alarms,03/13/2012,03/13/2012,03/13/2012 09:20:43 PM,03/13/2012 09:21:59 PM,03/13/2012 09:22:08 PM,03/13/2012 09:23:54 PM,03/13/2012 09:24:50 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 09:32:47 PM,2400 Block of MARIPOSA ST,SF,94110,B02,29,5243,3,3,3,true,Alarm,1,ENGINE,1,2,10,Potrero Hill,"(37.7631000634463, -122.407798087313)",120730351-E29 -123650098,E12,12122054,Medical Incident,12/30/2012,12/30/2012,12/30/2012 08:12:35 AM,12/30/2012 08:12:58 AM,12/30/2012 08:13:18 AM,12/30/2012 08:14:58 AM,12/30/2012 08:18:02 AM,04/25/2016 01:55:03 PM,04/25/2016 01:55:03 PM,Other,12/30/2012 08:34:35 AM,2000 Block of OAK ST,SF,94117,B05,12,4544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7710632919476, -122.453062881382)",123650098-E12 -140180261,82,14006246,Medical Incident,01/18/2014,01/18/2014,01/18/2014 04:06:33 PM,01/18/2014 04:07:32 PM,01/18/2014 04:08:12 PM,01/18/2014 04:08:16 PM,01/18/2014 04:17:07 PM,01/18/2014 04:33:49 PM,01/18/2014 04:54:13 PM,Code 2 Transport,01/18/2014 05:16:09 PM,900 Block of YORK ST,SF,94110,B06,7,5474,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7568570579716, -122.408506271146)",140180261-82 -160851314,66,16033727,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:36:45 AM,03/25/2016 10:39:37 AM,03/25/2016 10:40:10 AM,03/25/2016 10:40:21 AM,03/25/2016 10:52:40 AM,03/25/2016 11:16:24 AM,03/25/2016 11:36:03 AM,Code 2 Transport,03/25/2016 12:35:09 PM,TEHAMA ST/6TH ST,San Francisco,94103,B03,1,2245,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7793146738209, -122.406628200775)",160851314-66 -133420241,93,13116017,Medical Incident,12/08/2013,12/08/2013,12/08/2013 02:20:31 PM,12/08/2013 02:21:19 PM,12/08/2013 02:21:30 PM,12/08/2013 02:21:55 PM,12/08/2013 02:30:09 PM,12/08/2013 03:01:29 PM,12/08/2013 03:24:02 PM,Code 2 Transport,12/08/2013 03:48:30 PM,400 Block of VICTORIA ST,SF,94132,B09,33,8444,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7188021317353, -122.465280431039)",133420241-93 -110690152,KM02,11022665,Medical Incident,03/10/2011,03/10/2011,03/10/2011 11:35:25 AM,03/10/2011 11:35:58 AM,03/10/2011 11:36:49 AM,03/10/2011 11:37:37 AM,03/10/2011 11:41:52 AM,03/10/2011 11:57:10 AM,03/10/2011 12:15:51 PM,Code 2 Transport,03/10/2011 12:46:42 PM,VAN NESS AV/OFARRELL ST,SF,94109,B04,3,3162,3,3,3,false,,1,PRIVATE,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",110690152-KM02 -130010564,E17,13000467,Medical Incident,01/01/2013,01/01/2013,01/01/2013 10:23:49 PM,01/01/2013 10:24:27 PM,01/01/2013 10:25:56 PM,01/01/2013 10:27:38 PM,01/01/2013 10:29:56 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/01/2013 10:39:50 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316639968394, -122.38316735998)",130010564-E17 -131770405,75,13060277,Medical Incident,06/26/2013,06/26/2013,06/26/2013 11:17:57 PM,06/26/2013 11:18:43 PM,06/26/2013 11:19:32 PM,06/26/2013 11:19:50 PM,06/26/2013 11:27:02 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Patient Declined Transport,06/26/2013 11:48:08 PM,100 Block of LANGTON ST,SF,94103,B03,8,2312,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755325814084, -122.407486364653)",131770405-75 -140130110,E35,14004399,Medical Incident,01/13/2014,01/13/2014,01/13/2014 09:33:20 AM,01/13/2014 09:34:00 AM,01/13/2014 09:35:01 AM,01/13/2014 09:36:26 AM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/13/2014 09:53:29 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",140130110-E35 -160530318,70,16021056,Medical Incident,02/22/2016,02/21/2016,02/22/2016 04:38:22 AM,02/22/2016 04:39:46 AM,02/22/2016 04:41:40 AM,02/22/2016 04:41:53 AM,02/22/2016 04:56:01 AM,02/22/2016 05:18:06 AM,02/22/2016 05:36:38 AM,Code 2 Transport,02/22/2016 06:29:20 AM,0 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",160530318-70 -121460096,94,12048392,Medical Incident,05/25/2012,05/25/2012,05/25/2012 10:13:59 AM,05/25/2012 10:15:28 AM,05/25/2012 10:15:38 AM,05/25/2012 10:16:04 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Other,05/25/2012 10:21:06 AM,GENEVA AV/ATHENS ST,SF,94112,B09,43,6173,3,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7134759484794, -122.434541126439)",121460096-94 -140460151,94,14015634,Medical Incident,02/15/2014,02/15/2014,02/15/2014 11:07:14 AM,02/15/2014 11:07:57 AM,02/15/2014 11:08:12 AM,02/15/2014 11:08:21 AM,02/15/2014 11:11:16 AM,02/15/2014 11:27:41 AM,02/15/2014 11:40:39 AM,Code 2 Transport,02/15/2014 12:16:18 PM,100 Block of DELANO AVE,SF,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258307699304, -122.440937734179)",140460151-94 -132360080,E07,13079565,Medical Incident,08/24/2013,08/24/2013,08/24/2013 09:21:01 AM,08/24/2013 09:22:14 AM,08/24/2013 09:22:29 AM,08/24/2013 09:24:23 AM,08/24/2013 09:26:50 AM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/24/2013 09:29:06 AM,24TH ST/FLORIDA ST,SF,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7527390254513, -122.410066406492)",132360080-E07 -131450325,RC3,13049331,Medical Incident,05/25/2013,05/25/2013,05/25/2013 10:22:10 PM,05/25/2013 10:22:43 PM,05/25/2013 10:23:11 PM,05/25/2013 10:28:13 PM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,Other,05/25/2013 10:28:45 PM,700 Block of BARNEVELD AVE,SF,94134,B10,42,6366,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,9,Portola,"(37.7340230602944, -122.407626522365)",131450325-RC3 -132790071,KM07,13094794,Medical Incident,10/06/2013,10/05/2013,10/06/2013 03:12:04 AM,10/06/2013 03:12:16 AM,10/06/2013 03:13:27 AM,10/06/2013 03:14:00 AM,10/06/2013 03:14:55 AM,10/06/2013 03:43:41 AM,10/06/2013 04:14:48 AM,Code 2 Transport,10/06/2013 04:43:13 AM,600 Block of FULTON ST,SF,94102,B02,5,3412,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",132790071-KM07 -160641375,71,16025456,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:42:25 AM,03/04/2016 10:42:25 AM,03/04/2016 10:42:49 AM,03/04/2016 10:43:00 AM,03/04/2016 10:48:44 AM,03/04/2016 11:09:26 AM,03/04/2016 11:43:08 AM,Code 2 Transport,03/04/2016 11:57:28 AM,0 Block of BLK MARKET ST,San Francisco,94111,B01,13,1133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7953080071442, -122.3938439729)",160641375-71 -102750299,65,10087461,Medical Incident,10/02/2010,10/02/2010,10/02/2010 06:22:08 PM,10/02/2010 06:22:24 PM,10/02/2010 06:23:48 PM,10/02/2010 06:23:58 PM,04/25/2016 02:08:18 PM,10/02/2010 06:38:52 PM,10/02/2010 07:03:37 PM,Code 2 Transport,10/02/2010 07:12:06 PM,GRANT AV/OFARRELL ST,SF,94103,B01,1,1321,3,3,3,true,,1,MEDIC,2,1,6,Financial District/South Beach,"(37.7867305655456, -122.4045833182)",102750299-65 -112490204,B08,11082142,Alarms,09/06/2011,09/06/2011,09/06/2011 01:47:48 PM,09/06/2011 01:49:03 PM,09/06/2011 01:49:23 PM,09/06/2011 01:50:20 PM,09/06/2011 01:52:36 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 02:31:07 PM,1800 Block of 30TH AVE,SF,94122,B08,18,7515,3,3,3,false,,1,CHIEF,1,8,4,Sunset/Parkside,"(37.7527846529683, -122.488272720267)",112490204-B08 -133160089,T10,13107354,Alarms,11/12/2013,11/12/2013,11/12/2013 09:39:35 AM,11/12/2013 09:40:46 AM,11/12/2013 09:41:06 AM,11/12/2013 09:42:18 AM,11/12/2013 09:44:32 AM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 09:46:13 AM,3300 Block of CALIFORNIA ST,SF,94118,B04,10,4421,3,3,3,true,Alarm,1,TRUCK,1,4,2,Presidio Heights,"(37.7869977461494, -122.449304455831)",133160089-T10 -160670641,AM02,16026636,Citizen Assist / Service Call,03/07/2016,03/07/2016,03/07/2016 08:49:18 AM,03/07/2016 08:49:18 AM,03/07/2016 08:49:18 AM,03/07/2016 08:49:18 AM,03/07/2016 08:49:18 AM,03/07/2016 08:12:00 AM,03/07/2016 08:34:00 AM,Code 2 Transport,03/07/2016 09:03:11 AM,100 Block of TURK ST,San Francisco,94102,B99,1,1456,3,3,3,false,Alarm,1,PRIVATE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160670641-AM02 -112480204,E36,11081807,Medical Incident,09/05/2011,09/05/2011,09/05/2011 02:12:03 PM,09/05/2011 02:13:04 PM,09/05/2011 02:13:43 PM,09/05/2011 02:14:59 PM,09/05/2011 02:15:53 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 02:29:23 PM,100 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",112480204-E36 -133320299,E03,13112789,Medical Incident,11/28/2013,11/28/2013,11/28/2013 11:00:29 PM,11/28/2013 11:02:54 PM,11/28/2013 11:04:40 PM,11/28/2013 11:05:53 PM,11/28/2013 11:08:24 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 11:27:21 PM,800 Block of BUSH ST,SF,94108,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",133320299-E03 -113490057,T01,11115712,Alarms,12/15/2011,12/14/2011,12/15/2011 07:16:19 AM,12/15/2011 07:17:44 AM,12/15/2011 07:17:52 AM,12/15/2011 07:20:06 AM,12/15/2011 07:22:48 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Fire,12/15/2011 07:28:44 AM,600 Block of FOLSOM ST,SF,94105,B03,1,2176,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7842647352821, -122.398419741529)",113490057-T01 -160741588,AM12,16029322,Medical Incident,03/14/2016,03/14/2016,03/14/2016 12:06:18 PM,03/14/2016 12:07:13 PM,03/14/2016 12:07:30 PM,03/14/2016 12:08:20 PM,03/14/2016 12:11:59 PM,03/14/2016 12:31:11 PM,03/14/2016 12:56:59 PM,Code 2 Transport,03/14/2016 01:35:49 PM,800 Block of LONDON ST,San Francisco,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7165210081561, -122.439990506306)",160741588-AM12 -132620301,KM14,13088844,Medical Incident,09/19/2013,09/19/2013,09/19/2013 05:36:38 PM,09/19/2013 05:37:51 PM,09/19/2013 05:38:15 PM,09/19/2013 05:40:34 PM,09/19/2013 05:42:52 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 05:43:56 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",132620301-KM14 -160571386,62,16022719,Medical Incident,02/26/2016,02/26/2016,02/26/2016 11:23:32 AM,02/26/2016 11:23:32 AM,02/26/2016 11:23:50 AM,02/26/2016 11:23:59 AM,02/26/2016 11:35:26 AM,02/26/2016 11:53:39 AM,02/26/2016 12:09:52 PM,Code 2 Transport,02/26/2016 12:39:49 PM,5TH ST/HOWARD ST,San Francisco,94103,B03,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160571386-62 -102670267,AM06,10084579,Medical Incident,09/24/2010,09/24/2010,09/24/2010 04:55:55 PM,09/24/2010 04:58:59 PM,09/24/2010 05:00:44 PM,04/25/2016 02:08:26 PM,09/24/2010 05:21:43 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Fire,09/24/2010 05:40:11 PM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,1,1,2,false,,1,PRIVATE,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",102670267-AM06 -130240258,E01,13008347,Medical Incident,01/24/2013,01/24/2013,01/24/2013 03:05:18 PM,01/24/2013 03:08:20 PM,01/24/2013 03:09:02 PM,01/24/2013 03:09:21 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,04/25/2016 01:54:38 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",130240258-E01 -120750114,84,12024852,Medical Incident,03/15/2012,03/15/2012,03/15/2012 09:28:15 AM,03/15/2012 09:28:55 AM,03/15/2012 09:29:07 AM,03/15/2012 09:33:03 AM,03/15/2012 09:32:19 AM,03/15/2012 10:02:02 AM,03/15/2012 10:19:53 AM,Code 2 Transport,03/15/2012 10:33:14 AM,400 Block of PARNASSUS AVE,SF,94122,B05,12,5155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",120750114-84 -160371751,KM11,16014677,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:09:20 PM,02/06/2016 12:12:27 PM,02/06/2016 12:12:51 PM,02/06/2016 12:13:58 PM,02/06/2016 12:24:13 PM,02/06/2016 12:45:11 PM,02/06/2016 12:57:38 PM,Code 2 Transport,02/06/2016 01:33:32 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160371751-KM11 -110710402,E13,11023541,Medical Incident,03/12/2011,03/12/2011,03/12/2011 10:46:29 PM,03/12/2011 10:47:34 PM,03/12/2011 10:47:44 PM,03/12/2011 10:49:34 PM,03/12/2011 10:51:03 PM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/12/2011 10:58:34 PM,JACKSON ST/DAVIS CT,SF,94111,B01,13,1132,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7970920526909, -122.398333149181)",110710402-E13 -112800216,E07,11092697,Traffic Collision,10/07/2011,10/07/2011,10/07/2011 02:16:22 PM,10/07/2011 02:17:02 PM,10/07/2011 02:17:50 PM,10/07/2011 02:18:42 PM,10/07/2011 02:20:20 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 02:32:55 PM,15TH ST/SOUTH VAN NESS AV,SF,94103,B02,7,5225,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7668052440942, -122.417645453705)",112800216-E07 -103190151,KM01,10102220,Medical Incident,11/15/2010,11/15/2010,11/15/2010 10:47:09 AM,11/15/2010 10:50:26 AM,11/15/2010 10:51:08 AM,04/25/2016 02:07:35 PM,11/15/2010 10:51:58 AM,11/15/2010 11:11:42 AM,11/15/2010 11:19:00 AM,Code 2 Transport,11/15/2010 11:43:53 AM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",103190151-KM01 -132100025,94,13070890,Medical Incident,07/29/2013,07/28/2013,07/29/2013 01:15:19 AM,07/29/2013 01:16:29 AM,07/29/2013 01:16:44 AM,07/29/2013 01:17:00 AM,07/29/2013 01:20:31 AM,07/29/2013 01:41:12 AM,07/29/2013 01:53:04 AM,Code 2 Transport,07/29/2013 02:23:39 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132100025-94 -130490151,E05,13016680,Medical Incident,02/18/2013,02/18/2013,02/18/2013 11:19:49 AM,02/18/2013 11:21:29 AM,02/18/2013 11:22:03 AM,02/18/2013 11:22:30 AM,02/18/2013 11:28:18 AM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/18/2013 11:36:47 AM,1700 Block of ELLIS ST,SF,94115,B05,5,3644,1,1,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7820998518656, -122.434998734545)",130490151-E05 -112120210,T06,11069978,Structure Fire,07/31/2011,07/31/2011,07/31/2011 02:43:47 PM,07/31/2011 02:43:48 PM,07/31/2011 02:44:11 PM,07/31/2011 02:45:37 PM,07/31/2011 02:50:04 PM,04/25/2016 02:03:24 PM,04/25/2016 02:03:24 PM,Other,07/31/2011 02:56:21 PM,3700 Block of 18TH ST,SF,94114,B06,6,541,3,3,3,false,,1,TRUCK,3,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",112120210-T06 -110430305,T01,11014366,Structure Fire,02/12/2011,02/12/2011,02/12/2011 04:54:11 PM,02/12/2011 04:55:34 PM,02/12/2011 04:55:46 PM,02/12/2011 05:02:05 PM,02/12/2011 05:35:25 PM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 05:38:17 PM,0 Block of MAIDEN LN,SF,94108,B01,1,1241,3,3,3,false,,1,TRUCK,9,1,3,Financial District/South Beach,"(37.7882745438187, -122.404344705962)",110430305-T01 -112340007,74,11077120,Medical Incident,08/22/2011,08/21/2011,08/22/2011 01:15:25 AM,08/22/2011 01:16:09 AM,08/22/2011 01:17:10 AM,08/22/2011 01:23:23 AM,08/22/2011 01:28:36 AM,08/22/2011 01:56:34 AM,08/22/2011 02:04:55 AM,Code 2 Transport,08/22/2011 02:35:02 AM,1700 Block of FUNSTON AVE,SF,94122,B08,22,7351,3,3,3,true,,1,MEDIC,3,8,7,Inner Sunset,"(37.755914152239, -122.469972651637)",112340007-74 -110200214,T16,11006621,Other,01/20/2011,01/20/2011,01/20/2011 01:08:47 PM,01/20/2011 01:09:45 PM,01/20/2011 01:09:56 PM,01/20/2011 01:11:35 PM,01/20/2011 01:17:22 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Fire,01/20/2011 01:23:02 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",110200214-T16 -160751639,84,16029700,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:27:25 PM,03/15/2016 12:28:17 PM,03/15/2016 12:28:30 PM,03/15/2016 12:28:48 PM,03/15/2016 12:34:59 PM,03/15/2016 12:46:11 PM,03/15/2016 12:57:48 PM,Code 2 Transport,03/15/2016 01:38:19 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7323409564372, -122.406116198284)",160751639-84 -120170157,E19,12005691,Medical Incident,01/17/2012,01/17/2012,01/17/2012 12:14:18 PM,01/17/2012 12:15:36 PM,01/17/2012 12:15:46 PM,01/17/2012 12:16:49 PM,01/17/2012 12:18:07 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 12:34:15 PM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",120170157-E19 -160201674,KM11,16007993,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:18:06 PM,01/20/2016 12:18:06 PM,01/20/2016 12:18:33 PM,01/20/2016 12:19:52 PM,01/20/2016 12:29:52 PM,01/20/2016 12:41:27 PM,01/20/2016 12:59:26 PM,Code 2 Transport,01/20/2016 01:34:14 PM,NEW MONTGOMERY ST/JESSIE ST,San Francisco,94105,B03,1,2158,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7878896127727, -122.401043044615)",160201674-KM11 -140250192,E41,14008578,Other,01/25/2014,01/25/2014,01/25/2014 02:19:03 PM,01/25/2014 02:19:03 PM,01/25/2014 02:19:03 PM,01/25/2014 02:19:03 PM,01/25/2014 02:19:03 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Fire,01/25/2014 02:28:09 PM,1600 Block of PACIFIC AVE,SF,94109,B04,41,3125,,3,3,false,Alarm,1,ENGINE,1,4,3,Russian Hill,"(37.7948681239822, -122.422393955327)",140250192-E41 -111580153,T03,11052214,Structure Fire,06/07/2011,06/07/2011,06/07/2011 12:49:04 PM,06/07/2011 12:49:04 PM,06/07/2011 12:50:23 PM,06/07/2011 12:51:30 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 12:51:45 PM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",111580153-T03 -132110337,E03,13071510,Structure Fire,07/30/2013,07/30/2013,07/30/2013 11:55:53 PM,07/30/2013 11:57:01 PM,07/30/2013 11:59:49 PM,07/31/2013 12:00:34 AM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 12:04:51 AM,700 Block of GOLDEN GATE AVE,SF,94102,B02,5,326,3,3,3,true,Alarm,1,ENGINE,8,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",132110337-E03 -140190132,94,14006495,Medical Incident,01/19/2014,01/19/2014,01/19/2014 10:14:20 AM,01/19/2014 10:17:05 AM,01/19/2014 10:17:45 AM,01/19/2014 10:17:56 AM,01/19/2014 10:32:38 AM,01/19/2014 10:47:38 AM,01/19/2014 11:05:56 AM,Code 2 Transport,01/19/2014 11:47:21 AM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7755676420155, -122.412334779681)",140190132-94 -112390276,B01,11078949,Alarms,08/27/2011,08/27/2011,08/27/2011 05:52:37 PM,08/27/2011 05:53:26 PM,08/27/2011 05:53:35 PM,08/27/2011 05:54:31 PM,08/27/2011 05:57:53 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 06:03:06 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,,1,CHIEF,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",112390276-B01 -113650040,KM04,11121138,Medical Incident,12/31/2011,12/30/2011,12/31/2011 01:33:19 AM,12/31/2011 01:34:25 AM,12/31/2011 01:35:56 AM,12/31/2011 01:36:59 AM,12/31/2011 01:40:53 AM,12/31/2011 01:55:50 AM,12/31/2011 02:10:09 AM,Code 2 Transport,12/31/2011 02:38:59 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",113650040-KM04 -130760090,67,13025310,Medical Incident,03/17/2013,03/16/2013,03/17/2013 07:11:41 AM,03/17/2013 07:12:35 AM,03/17/2013 07:13:13 AM,03/17/2013 07:13:20 AM,03/17/2013 07:16:18 AM,03/17/2013 07:31:12 AM,03/17/2013 07:49:57 AM,Code 2 Transport,03/17/2013 07:55:48 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",130760090-67 -113110325,E36,11103458,Traffic Collision,11/07/2011,11/07/2011,11/07/2011 08:18:46 PM,11/07/2011 08:20:31 PM,11/07/2011 08:21:01 PM,11/07/2011 08:22:33 PM,11/07/2011 08:23:21 PM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,Other,11/07/2011 08:31:34 PM,SOUTH VAN NESS AV/13TH ST,SF,94103,B02,36,5123,3,3,3,false,,1,ENGINE,1,2,6,Mission,"(37.769815078903, -122.417753195885)",113110325-E36 -110510221,T07,11016919,Citizen Assist / Service Call,02/20/2011,02/20/2011,02/20/2011 02:20:57 PM,02/20/2011 02:22:06 PM,02/20/2011 02:22:15 PM,02/20/2011 02:23:39 PM,02/20/2011 02:26:05 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Fire,02/20/2011 02:33:21 PM,MISSION ST/20TH ST,SF,94110,B06,7,5446,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",110510221-T07 -160683438,55,16027246,Medical Incident,03/08/2016,03/08/2016,03/08/2016 08:50:01 PM,03/08/2016 08:51:37 PM,03/08/2016 08:52:05 PM,03/08/2016 08:52:19 PM,03/08/2016 09:07:26 PM,03/08/2016 09:29:24 PM,03/08/2016 09:38:36 PM,Code 2 Transport,03/08/2016 10:01:12 PM,LEAVENWORTH ST/JEFFERSON ST,San Francisco,94109,B01,28,1524,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8078031175114, -122.419086068099)",160683438-55 -120010308,E16,12000261,Alarms,01/01/2012,12/31/2011,01/01/2012 06:41:43 AM,01/01/2012 06:42:54 AM,01/01/2012 06:44:34 AM,01/01/2012 06:45:59 AM,01/01/2012 06:51:52 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 06:53:21 AM,2600 Block of LOMBARD ST,SF,94123,B04,16,4223,3,3,3,true,Alarm,1,ENGINE,2,4,2,Marina,"(37.7986478736776, -122.445370366641)",120010308-E16 -130970100,B07,13032470,Structure Fire,04/07/2013,04/07/2013,04/07/2013 08:24:11 AM,04/07/2013 08:26:22 AM,04/07/2013 08:26:52 AM,04/07/2013 08:28:32 AM,04/07/2013 08:35:15 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 08:38:02 AM,JUDAH ST/46TH AV,SF,94122,B08,23,7655,3,3,3,false,Alarm,1,CHIEF,6,8,4,Sunset/Parkside,"(37.7604244274632, -122.505928109422)",130970100-B07 -160910074,54,16035923,Medical Incident,03/31/2016,03/30/2016,03/31/2016 12:36:57 AM,03/31/2016 12:36:57 AM,03/31/2016 12:37:21 AM,03/31/2016 12:37:55 AM,03/31/2016 12:49:53 AM,03/31/2016 01:00:39 AM,03/31/2016 01:11:41 AM,Code 2 Transport,03/31/2016 01:53:01 AM,0 Block of BACHE ST,San Francisco,94110,B06,32,5751,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7344393110914, -122.417593854342)",160910074-54 -103600257,68,10115613,Medical Incident,12/26/2010,12/26/2010,12/26/2010 08:54:34 PM,12/26/2010 08:57:41 PM,12/26/2010 08:58:05 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,04/25/2016 02:06:55 PM,0 Block of EDGAR AVE,SF,94112,B09,15,8471,2,2,2,false,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7208956020171, -122.452236185324)",103600257-68 -111880323,E09,11062281,Medical Incident,07/07/2011,07/07/2011,07/07/2011 08:50:31 PM,07/07/2011 08:51:40 PM,07/07/2011 08:51:50 PM,07/07/2011 08:53:00 PM,07/07/2011 08:54:50 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,No Merit,07/07/2011 09:02:06 PM,FLORIDA ST/PRECITA AV,SF,94110,B06,9,5621,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.747553213579, -122.409571728298)",111880323-E09 -123370586,E21,12112529,Medical Incident,12/02/2012,12/02/2012,12/02/2012 11:45:59 PM,12/02/2012 11:46:34 PM,12/02/2012 11:46:45 PM,04/25/2016 01:55:30 PM,12/02/2012 11:49:29 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/02/2012 11:58:10 PM,500 Block of CENTRAL AVE,SF,94117,B05,21,4361,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7746264390362, -122.444430401392)",123370586-E21 -131410205,T02,13047792,Alarms,05/21/2013,05/21/2013,05/21/2013 01:26:30 PM,05/21/2013 01:27:35 PM,05/21/2013 01:27:39 PM,05/21/2013 01:28:29 PM,05/21/2013 01:29:15 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Fire,05/21/2013 01:33:47 PM,2200 Block of JONES ST,SF,94133,B01,28,151,3,3,3,false,Alarm,1,TRUCK,1,1,3,Russian Hill,"(37.8019369945594, -122.416296996585)",131410205-T02 -121030133,E01,12034072,Medical Incident,04/12/2012,04/12/2012,04/12/2012 10:00:40 AM,04/12/2012 10:02:21 AM,04/12/2012 10:02:51 AM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/12/2012 10:05:26 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",121030133-E01 -160330240,78,16012826,Medical Incident,02/02/2016,02/01/2016,02/02/2016 02:36:44 AM,02/02/2016 02:37:59 AM,02/02/2016 02:38:10 AM,02/02/2016 02:39:05 AM,02/02/2016 02:46:07 AM,02/02/2016 03:05:02 AM,02/02/2016 03:15:52 AM,Code 2 Transport,02/02/2016 04:07:39 AM,BRANNAN ST/8TH ST,San Francisco,94103,B03,29,2325,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7712963527723, -122.405424735702)",160330240-78 -160833565,KM11,16033109,Traffic Collision,03/23/2016,03/23/2016,03/23/2016 07:32:38 PM,03/23/2016 07:32:38 PM,03/23/2016 07:33:26 PM,03/23/2016 07:34:11 PM,03/23/2016 07:39:23 PM,03/23/2016 08:13:13 PM,03/23/2016 08:48:38 PM,Code 2 Transport,03/23/2016 08:51:58 PM,LOMBARD ST/COLUMBUS AV,San Francisco,94133,B01,28,1423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8027432009748, -122.413718749936)",160833565-KM11 -132520035,E32,13085058,Medical Incident,09/09/2013,09/08/2013,09/09/2013 03:10:23 AM,09/09/2013 03:13:04 AM,09/09/2013 03:13:32 AM,09/09/2013 03:15:43 AM,09/09/2013 03:16:44 AM,04/25/2016 01:50:53 PM,04/25/2016 01:50:53 PM,Other,09/09/2013 03:23:00 AM,30TH ST/MISSION ST,SF,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",132520035-E32 -160681818,60,16027124,Medical Incident,03/08/2016,03/08/2016,03/08/2016 01:02:46 PM,03/08/2016 01:03:25 PM,03/08/2016 01:03:47 PM,03/08/2016 01:03:59 PM,03/08/2016 01:11:44 PM,03/08/2016 01:31:57 PM,03/08/2016 01:45:38 PM,Code 2 Transport,03/08/2016 02:25:47 PM,0 Block of ELLIS ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7856720367472, -122.406852525575)",160681818-60 -140940145,55,14031563,Structure Fire,04/04/2014,04/04/2014,04/04/2014 11:24:29 AM,04/04/2014 11:25:23 AM,04/04/2014 11:27:42 AM,04/04/2014 11:27:42 AM,04/04/2014 11:33:35 AM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Fire,04/04/2014 11:41:02 AM,100 Block of MASON ST,SAN FRANCISCO,94102,B03,1,1366,,3,3,true,Fire,1,MEDIC,7,3,3,Tenderloin,"(37.7848247766053, -122.409335015482)",140940145-55 -131840263,66,13062758,Medical Incident,07/03/2013,07/03/2013,07/03/2013 04:12:40 PM,07/03/2013 04:14:40 PM,07/03/2013 04:15:36 PM,04/25/2016 01:51:59 PM,07/03/2013 04:19:17 PM,07/03/2013 04:22:30 PM,07/03/2013 04:47:41 PM,Code 2 Transport,07/03/2013 05:02:12 PM,GOUGH ST/MCALLISTER ST,SF,94102,B02,5,3316,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7796735861193, -122.423541306846)",131840263-66 -122020053,B04,12067000,Structure Fire,07/20/2012,07/19/2012,07/20/2012 03:46:21 AM,07/20/2012 03:47:04 AM,07/20/2012 03:47:19 AM,07/20/2012 03:48:58 AM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 03:52:15 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,false,Fire,1,CHIEF,10,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",122020053-B04 -112200265,E19,11072760,Medical Incident,08/08/2011,08/08/2011,08/08/2011 05:25:50 PM,08/08/2011 05:29:46 PM,08/08/2011 05:31:16 PM,08/08/2011 05:32:31 PM,08/08/2011 05:35:14 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 06:11:00 PM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",112200265-E19 -110870195,82,11028730,Medical Incident,03/28/2011,03/28/2011,03/28/2011 01:21:32 PM,03/28/2011 01:22:19 PM,03/28/2011 01:33:15 PM,03/28/2011 01:43:03 PM,04/25/2016 02:05:24 PM,03/28/2011 01:54:53 PM,03/28/2011 02:14:45 PM,Code 2 Transport,03/28/2011 02:30:26 PM,HOWARD ST/MAIN ST,SF,94105,B03,35,2114,3,2,2,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",110870195-82 -133030015,T17,13102805,Citizen Assist / Service Call,10/30/2013,10/29/2013,10/30/2013 01:31:31 AM,10/30/2013 01:32:44 AM,10/30/2013 01:32:54 AM,10/30/2013 01:35:13 AM,10/30/2013 01:40:28 AM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/30/2013 02:28:20 AM,100 Block of CRESCENT WAY,SF,94134,B10,17,6576,3,3,3,true,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7111340886592, -122.389340428123)",133030015-T17 -131510242,58,13051172,Medical Incident,05/31/2013,05/31/2013,05/31/2013 03:06:22 PM,05/31/2013 03:08:11 PM,05/31/2013 03:09:45 PM,05/31/2013 03:09:54 PM,05/31/2013 03:20:38 PM,05/31/2013 03:42:43 PM,05/31/2013 03:50:07 PM,Code 2 Transport,05/31/2013 04:10:59 PM,0 Block of HERMANN ST,SF,94102,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7707101221548, -122.425947237004)",131510242-58 -110980184,95,11032495,Medical Incident,04/08/2011,04/08/2011,04/08/2011 12:02:12 PM,04/08/2011 12:03:24 PM,04/08/2011 12:04:31 PM,04/08/2011 12:07:55 PM,04/25/2016 02:05:12 PM,04/25/2016 02:05:12 PM,04/25/2016 02:05:12 PM,Other,04/08/2011 12:10:29 PM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,1,2,6,Mission,"(37.7738670346175, -122.417523396516)",110980184-95 -113630077,E36,11120510,Traffic Collision,12/29/2011,12/29/2011,12/29/2011 09:05:14 AM,12/29/2011 09:06:01 AM,12/29/2011 09:07:10 AM,12/29/2011 09:07:58 AM,12/29/2011 09:10:40 AM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/29/2011 09:19:27 AM,8TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7762213544451, -122.411606113878)",113630077-E36 -160801161,KM06,16031761,Medical Incident,03/20/2016,03/20/2016,03/20/2016 10:08:02 AM,03/20/2016 10:10:13 AM,03/20/2016 10:10:29 AM,03/20/2016 10:10:58 AM,03/20/2016 10:30:14 AM,03/20/2016 10:40:28 AM,03/20/2016 10:59:14 AM,Code 2 Transport,03/20/2016 11:54:07 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160801161-KM06 -103380368,AM10,10108299,Medical Incident,12/04/2010,12/04/2010,12/04/2010 07:42:54 PM,12/04/2010 07:45:40 PM,12/04/2010 07:46:42 PM,12/04/2010 07:49:07 PM,12/04/2010 07:50:41 PM,12/04/2010 08:00:40 PM,12/04/2010 08:10:49 PM,Code 2 Transport,12/04/2010 08:26:14 PM,MISSION ST/4TH ST,SF,94103,B03,1,2213,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",103380368-AM10 -121390197,54,12046172,Watercraft in Distress,05/18/2012,05/18/2012,05/18/2012 02:04:53 PM,05/18/2012 02:06:38 PM,05/18/2012 02:08:03 PM,05/18/2012 02:08:39 PM,05/18/2012 02:18:55 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/18/2012 02:22:33 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,MEDIC,6,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121390197-54 -120590128,FB1,12019384,Alarms,02/28/2012,02/28/2012,02/28/2012 10:47:25 AM,02/28/2012 10:48:17 AM,02/28/2012 10:49:08 AM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/28/2012 10:57:45 AM,100 Block of JENNINGS ST,SF,94124,B10,25,996,3,3,3,false,Alarm,1,SUPPORT,5,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",120590128-FB1 -160702372,55,16027917,Medical Incident,03/10/2016,03/10/2016,03/10/2016 04:03:03 PM,03/10/2016 04:06:44 PM,03/10/2016 04:07:08 PM,03/10/2016 04:11:28 PM,03/10/2016 04:24:29 PM,03/10/2016 04:40:34 PM,03/10/2016 05:11:33 PM,Code 2 Transport,03/10/2016 05:49:15 PM,1500 Block of 45TH AVE,San Francisco,94122,B08,23,7661,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7576702834334, -122.504728868209)",160702372-55 -110120201,83,11003995,Medical Incident,01/12/2011,01/12/2011,01/12/2011 01:46:10 PM,01/12/2011 01:46:32 PM,01/12/2011 01:47:12 PM,01/12/2011 01:47:28 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Patient Declined Transport,01/12/2011 01:51:49 PM,BUSH ST/TAYLOR ST,SF,94108,B01,41,1446,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7897399070402, -122.412075869047)",110120201-83 -160863344,64,16034337,Traffic Collision,03/26/2016,03/26/2016,03/26/2016 08:13:13 PM,03/26/2016 08:15:21 PM,03/26/2016 08:15:37 PM,03/26/2016 08:16:02 PM,03/26/2016 08:23:16 PM,03/26/2016 08:43:27 PM,03/26/2016 08:59:23 PM,Code 2 Transport,03/26/2016 09:57:48 PM,WILLIAMS AV/NEPTUNE ST,San Francisco,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.729909884432, -122.397176877944)",160863344-64 -130660047,87,13021928,Medical Incident,03/07/2013,03/06/2013,03/07/2013 03:08:01 AM,03/07/2013 03:08:56 AM,03/07/2013 03:09:09 AM,03/07/2013 03:09:33 AM,03/07/2013 03:16:05 AM,03/07/2013 03:26:56 AM,03/07/2013 03:39:28 AM,Code 2 Transport,03/07/2013 04:19:39 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",130660047-87 -111350020,KM15,11044756,Medical Incident,05/15/2011,05/14/2011,05/15/2011 12:42:07 AM,05/15/2011 12:45:23 AM,05/15/2011 12:45:50 AM,05/15/2011 12:46:35 AM,05/15/2011 12:57:14 AM,05/15/2011 01:10:47 AM,05/15/2011 01:21:40 AM,Code 2 Transport,05/15/2011 01:56:30 AM,1000 Block of PALOU AVE,SF,94124,B10,17,6647,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7281870279805, -122.380818341183)",111350020-KM15 -113010341,E42,11099963,Medical Incident,10/28/2011,10/28/2011,10/28/2011 07:43:36 PM,10/28/2011 07:44:58 PM,10/28/2011 07:45:12 PM,10/28/2011 07:46:59 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 07:47:59 PM,SOMERSET ST/SAN BRUNO AV,SF,94134,B10,44,6266,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7135082040895, -122.402095796282)",113010341-E42 -160633230,64,16025211,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:11:24 PM,03/03/2016 07:11:24 PM,03/03/2016 07:12:21 PM,03/03/2016 07:13:04 PM,03/03/2016 07:20:29 PM,03/03/2016 07:32:29 PM,03/03/2016 08:02:17 PM,Code 2 Transport,03/03/2016 08:28:15 PM,SUTTER ST/LAGUNA ST,San Francisco,94115,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7867126546212, -122.428335613395)",160633230-64 -120970030,E14,12031991,Medical Incident,04/06/2012,04/05/2012,04/06/2012 03:14:20 AM,04/06/2012 03:17:54 AM,04/06/2012 03:18:40 AM,04/06/2012 03:20:22 AM,04/06/2012 03:22:41 AM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 03:47:30 AM,300 Block of 24TH AVE,SF,94121,B07,14,7174,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7830068611029, -122.483800844392)",120970030-E14 -120290088,KM10,12009664,Medical Incident,01/29/2012,01/29/2012,01/29/2012 08:36:06 AM,01/29/2012 08:36:20 AM,01/29/2012 08:36:30 AM,01/29/2012 08:37:22 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 08:41:36 AM,10TH ST/HARRISON ST,SF,94103,B02,29,2344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7715786771769, -122.411277938324)",120290088-KM10 -140410293,RS1,14014011,Traffic Collision,02/10/2014,02/10/2014,02/10/2014 04:03:32 PM,02/10/2014 04:03:55 PM,02/10/2014 04:04:11 PM,02/10/2014 04:04:52 PM,02/10/2014 04:05:23 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 04:17:54 PM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",140410293-RS1 -111330114,E08,11044006,Medical Incident,05/13/2011,05/13/2011,05/13/2011 11:02:10 AM,05/13/2011 11:02:37 AM,05/13/2011 11:04:10 AM,05/13/2011 11:09:24 AM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 11:09:25 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",111330114-E08 -131470116,E23,13049827,Administrative,05/27/2013,05/27/2013,05/27/2013 10:35:08 AM,05/27/2013 10:35:11 AM,05/27/2013 10:35:16 AM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,Fire,05/27/2013 10:35:43 AM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",131470116-E23 -160571031,AM02,16022683,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:40:26 AM,02/26/2016 09:40:49 AM,02/26/2016 09:41:05 AM,02/26/2016 09:42:01 AM,02/26/2016 10:06:14 AM,02/26/2016 10:06:17 AM,02/26/2016 10:21:12 AM,Code 2 Transport,02/26/2016 11:09:02 AM,1400 Block of LA PLAYA,San Francisco,94122,B08,23,7723,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7593365475949, -122.509005317749)",160571031-AM02 -103180246,75,10101974,Medical Incident,11/14/2010,11/14/2010,11/14/2010 03:42:40 PM,11/14/2010 03:43:01 PM,11/14/2010 03:43:22 PM,11/14/2010 03:44:04 PM,11/14/2010 03:47:05 PM,11/14/2010 04:08:19 PM,11/14/2010 04:27:56 PM,Code 2 Transport,11/14/2010 05:04:16 PM,3300 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7482858766932, -122.417044258324)",103180246-75 -140580305,RS1,14019668,Medical Incident,02/27/2014,02/27/2014,02/27/2014 07:06:55 PM,02/27/2014 07:07:38 PM,02/27/2014 07:10:02 PM,02/27/2014 07:10:43 PM,02/27/2014 07:15:07 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Code 2 Transport,02/27/2014 07:17:49 PM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2158,3,3,3,false,Non Life-threatening,1,RESCUE SQUAD,1,3,6,Financial District/South Beach,"(37.7881178022274, -122.401226932683)",140580305-RS1 -111150198,83,11037953,Medical Incident,04/25/2011,04/25/2011,04/25/2011 01:04:03 PM,04/25/2011 01:04:41 PM,04/25/2011 01:05:03 PM,04/25/2011 01:05:28 PM,04/25/2011 01:06:23 PM,04/25/2011 01:24:07 PM,04/25/2011 01:33:09 PM,Code 2 Transport,04/25/2016 02:04:56 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",111150198-83 -131510358,54,13051283,Medical Incident,05/31/2013,05/31/2013,05/31/2013 08:05:59 PM,05/31/2013 08:05:59 PM,05/31/2013 08:05:59 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,05/31/2013 08:15:41 PM,05/31/2013 08:31:16 PM,Code 2 Transport,05/31/2013 09:07:12 PM,MISSION ST/7TH ST,SF,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",131510358-54 -160831341,63,16032910,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:41:30 AM,03/23/2016 10:42:47 AM,03/23/2016 10:43:02 AM,03/23/2016 10:48:25 AM,03/23/2016 10:50:20 AM,03/23/2016 11:24:56 AM,03/23/2016 11:45:18 AM,Code 2 Transport,03/23/2016 12:24:35 PM,300 Block of HEAD ST,San Francisco,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.713614800777, -122.464324485172)",160831341-63 -110630303,E36,11020797,Medical Incident,03/04/2011,03/04/2011,03/04/2011 04:47:27 PM,03/04/2011 04:48:12 PM,03/04/2011 04:49:21 PM,03/04/2011 04:50:04 PM,03/04/2011 04:51:00 PM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Other,03/04/2011 04:53:56 PM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",110630303-E36 -160854305,KM07,16034021,Traffic Collision,03/25/2016,03/25/2016,03/25/2016 11:48:20 PM,03/25/2016 11:49:09 PM,03/25/2016 11:50:00 PM,03/25/2016 11:50:34 PM,03/25/2016 11:57:01 PM,03/26/2016 12:06:13 AM,03/26/2016 12:16:38 AM,Code 2 Transport,03/26/2016 12:50:02 AM,KING ST/3RD ST,San Francisco,94107,B03,8,2154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",160854305-KM07 -123540078,57,12118363,Medical Incident,12/19/2012,12/18/2012,12/19/2012 07:08:06 AM,12/19/2012 07:10:28 AM,12/19/2012 07:10:54 AM,12/19/2012 07:11:11 AM,12/19/2012 07:35:16 AM,12/19/2012 07:43:00 AM,12/19/2012 07:55:02 AM,Code 2 Transport,12/19/2012 08:15:44 AM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",123540078-57 -122440183,FB1,12080663,Structure Fire,08/31/2012,08/31/2012,08/31/2012 01:33:23 PM,08/31/2012 01:36:09 PM,08/31/2012 01:36:39 PM,08/31/2012 01:40:02 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,Other,08/31/2012 01:45:01 PM,1200 Block of BAYSIDE DR,TI,94130,B03,48,2931,3,3,3,false,Fire,1,SUPPORT,10,None,6,Treasure Island,"(37.8304547884044, -122.37629451046)",122440183-FB1 -120990169,KM04,12032799,Medical Incident,04/08/2012,04/08/2012,04/08/2012 01:52:33 PM,04/08/2012 01:54:20 PM,04/08/2012 01:55:48 PM,04/08/2012 01:56:41 PM,04/08/2012 02:05:43 PM,04/08/2012 02:23:26 PM,04/08/2012 02:47:56 PM,Code 2 Transport,04/08/2012 03:10:27 PM,22ND ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7555682781294, -122.416566643053)",120990169-KM04 -132620137,E03,13088701,Medical Incident,09/19/2013,09/19/2013,09/19/2013 11:02:20 AM,09/19/2013 11:03:55 AM,09/19/2013 11:05:28 AM,09/19/2013 11:05:41 AM,09/19/2013 11:07:06 AM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 11:16:46 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",132620137-E03 -112780031,T02,11091911,Alarms,10/05/2011,10/04/2011,10/05/2011 02:56:25 AM,10/05/2011 02:57:59 AM,10/05/2011 02:58:06 AM,10/05/2011 03:00:13 AM,10/05/2011 03:05:03 AM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 03:14:25 AM,500 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.8061880612091, -122.416243833913)",112780031-T02 -110490317,AM18,11016292,Medical Incident,02/18/2011,02/18/2011,02/18/2011 06:07:18 PM,02/18/2011 06:08:13 PM,02/18/2011 06:10:06 PM,02/18/2011 06:11:30 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 06:12:22 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,E,3,false,,1,PRIVATE,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110490317-AM18 -122870097,66,12094866,Medical Incident,10/13/2012,10/13/2012,10/13/2012 09:20:09 AM,10/13/2012 09:22:44 AM,10/13/2012 09:23:02 AM,10/13/2012 09:24:29 AM,10/13/2012 09:33:03 AM,10/13/2012 09:51:26 AM,10/13/2012 10:18:07 AM,Code 2 Transport,10/13/2012 10:52:35 AM,2800 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5621,1,1,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.748477075368, -122.40726616693)",122870097-66 -160343735,57,16013620,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:03:26 PM,02/03/2016 11:03:26 PM,02/03/2016 11:04:16 PM,02/03/2016 11:04:28 PM,02/03/2016 11:19:05 PM,02/03/2016 11:35:33 PM,02/03/2016 11:48:11 PM,Code 2 Transport,02/04/2016 12:15:03 AM,2300 Block of 19TH AVE,San Francisco,94116,B08,40,7416,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7439803947416, -122.475835562635)",160343735-57 -132120233,81,13071703,Medical Incident,07/31/2013,07/31/2013,07/31/2013 03:41:43 PM,07/31/2013 03:43:37 PM,07/31/2013 03:43:51 PM,07/31/2013 03:44:04 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,No Merit,07/31/2013 03:54:16 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",132120233-81 -122670287,E28,12088312,Medical Incident,09/23/2012,09/23/2012,09/23/2012 06:48:43 PM,09/23/2012 06:49:41 PM,09/23/2012 06:49:55 PM,09/23/2012 06:51:11 PM,09/23/2012 06:53:06 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 07:01:31 PM,2500 Block of LEAVENWORTH ST,SF,94133,B01,28,1526,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8045432977742, -122.418367647759)",122670287-E28 -130180183,KM09,13006126,Medical Incident,01/18/2013,01/18/2013,01/18/2013 11:23:53 AM,01/18/2013 11:25:16 AM,01/18/2013 11:25:34 AM,01/18/2013 11:26:15 AM,01/18/2013 11:31:11 AM,01/18/2013 11:54:54 AM,01/18/2013 12:14:14 PM,Code 2 Transport,01/18/2013 01:06:01 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",130180183-KM09 -160363035,AM18,16014365,Medical Incident,02/05/2016,02/05/2016,02/05/2016 05:37:04 PM,02/05/2016 05:37:04 PM,02/05/2016 05:37:42 PM,02/05/2016 05:38:22 PM,02/05/2016 05:42:07 PM,02/05/2016 05:50:23 PM,02/05/2016 06:12:44 PM,Code 2 Transport,02/05/2016 06:47:39 PM,400 Block of BLK 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7791933366686, -122.402142725311)",160363035-AM18 -122460351,E41,12081504,Structure Fire,09/02/2012,09/02/2012,09/02/2012 07:54:18 PM,09/02/2012 07:54:19 PM,09/02/2012 07:54:27 PM,09/02/2012 07:55:04 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 07:55:23 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",122460351-E41 -160222749,75,16008859,Medical Incident,01/22/2016,01/22/2016,01/22/2016 05:17:02 PM,01/22/2016 05:18:57 PM,01/22/2016 05:19:05 PM,01/22/2016 05:19:17 PM,01/22/2016 05:49:44 PM,01/22/2016 06:14:17 PM,01/22/2016 06:27:53 PM,Code 2 Transport,01/22/2016 07:05:38 PM,0 Block of BELDEN ST,San Francisco,94104,B01,13,1235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7912793098409, -122.403701987134)",160222749-75 -160652788,74,16026041,Medical Incident,03/05/2016,03/05/2016,03/05/2016 06:35:53 PM,03/05/2016 06:38:47 PM,03/05/2016 06:38:55 PM,03/05/2016 06:39:13 PM,03/05/2016 06:45:26 PM,03/05/2016 07:01:59 PM,03/05/2016 07:19:58 PM,Code 2 Transport,03/05/2016 07:29:52 PM,0 Block of ARELLANO AVE,San Francisco,94132,B08,19,8682,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7205184723741, -122.479077069353)",160652788-74 -130280079,T02,13009519,Alarms,01/28/2013,01/28/2013,01/28/2013 08:37:56 AM,01/28/2013 08:37:57 AM,01/28/2013 08:38:13 AM,01/28/2013 08:40:39 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 08:43:59 AM,100 Block of PINE ST,SF,94111,B01,13,1136,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.792387312641, -122.399186604536)",130280079-T02 -132870016,84,13097478,Medical Incident,10/14/2013,10/13/2013,10/14/2013 01:15:34 AM,10/14/2013 01:15:44 AM,10/14/2013 01:19:16 AM,10/14/2013 01:19:34 AM,10/14/2013 01:33:14 AM,10/14/2013 02:10:57 AM,10/14/2013 02:28:10 AM,Code 2 Transport,10/14/2013 02:50:26 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",132870016-84 -132350264,E33,13079373,Electrical Hazard,08/23/2013,08/23/2013,08/23/2013 04:34:30 PM,08/23/2013 04:35:51 PM,08/23/2013 04:42:04 PM,08/23/2013 04:43:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,04/25/2016 01:51:09 PM,ALLISON ST/BRUNSWICK ST,SF,94112,B09,43,6221,3,3,3,true,Alarm,1,ENGINE,2,9,11,Excelsior,"(37.7112111560219, -122.441130267918)",132350264-E33 -131650084,D2,13055971,Structure Fire,06/14/2013,06/13/2013,06/14/2013 07:37:59 AM,06/14/2013 07:41:41 AM,06/14/2013 07:41:50 AM,06/14/2013 07:42:31 AM,06/14/2013 07:47:07 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 08:06:34 AM,100 Block of BELVEDERE ST,SF,94117,B05,12,4532,3,3,3,false,Alarm,1,CHIEF,5,5,5,Haight Ashbury,"(37.7677916966538, -122.449332294394)",131650084-D2 -132980248,E03,13101255,Alarms,10/25/2013,10/25/2013,10/25/2013 03:35:39 PM,10/25/2013 03:36:37 PM,10/25/2013 03:37:12 PM,10/25/2013 03:39:48 PM,10/25/2013 03:40:07 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 03:51:13 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.788031406746, -122.410889094263)",132980248-E03 -111000152,T18,11033189,Structure Fire,04/10/2011,04/10/2011,04/10/2011 11:43:21 AM,04/10/2011 11:44:32 AM,04/10/2011 11:44:45 AM,04/10/2011 11:46:16 AM,04/10/2011 11:50:32 AM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 12:25:48 PM,1300 Block of 20TH AVE,SF,94122,B08,22,7424,3,3,3,false,,1,TRUCK,4,8,4,Sunset/Parkside,"(37.7625809452391, -122.478195483155)",111000152-T18 -103570268,E44,10114644,Medical Incident,12/23/2010,12/23/2010,12/23/2010 04:51:50 PM,12/23/2010 04:52:21 PM,12/23/2010 04:52:30 PM,12/23/2010 04:52:41 PM,12/23/2010 04:55:22 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/23/2010 05:22:36 PM,100 Block of DELTA ST,SF,94134,B09,44,6311,3,3,3,true,,1,ENGINE,1,9,10,McLaren Park,"(37.7161899028319, -122.40823080546)",103570268-E44 -102620280,72,10082969,Medical Incident,09/19/2010,09/19/2010,09/19/2010 05:44:23 PM,09/19/2010 05:45:48 PM,09/19/2010 05:46:41 PM,09/19/2010 05:46:48 PM,09/19/2010 05:58:30 PM,04/25/2016 02:08:31 PM,04/25/2016 02:08:31 PM,Other,09/19/2010 05:59:41 PM,1500 Block of PERSHING DR,PR,94129,B99,51,4617,3,2,2,true,,1,MEDIC,1,7,2,Presidio,"(37.7928431535117, -122.477522249527)",102620280-72 -121770302,B04,12058983,Structure Fire,06/25/2012,06/25/2012,06/25/2012 05:37:47 PM,06/25/2012 05:38:42 PM,06/25/2012 05:38:57 PM,06/25/2012 05:40:03 PM,06/25/2012 05:43:14 PM,04/25/2016 01:58:01 PM,04/25/2016 01:58:01 PM,Other,06/25/2012 05:48:12 PM,1600 Block of JONES ST,SF,94109,B01,41,1511,3,3,3,false,Fire,1,CHIEF,4,1,3,Nob Hill,"(37.7960882125241, -122.415118210717)",121770302-B04 -102460373,B01,10077895,Alarms,09/03/2010,09/03/2010,09/03/2010 09:50:35 PM,09/03/2010 09:51:50 PM,09/03/2010 09:51:57 PM,09/03/2010 09:53:14 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/03/2010 09:58:03 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,CHIEF,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",102460373-B01 -160112200,55,16004451,Medical Incident,01/11/2016,01/11/2016,01/11/2016 03:29:26 PM,01/11/2016 03:29:26 PM,01/11/2016 03:29:45 PM,01/11/2016 03:29:53 PM,01/11/2016 03:40:10 PM,01/11/2016 03:57:19 PM,01/11/2016 04:09:37 PM,Code 2 Transport,01/11/2016 05:04:54 PM,1200 Block of MASONIC AVE,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.769728147466, -122.44532047465)",160112200-55 -160363715,68,16014431,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:40:25 PM,02/05/2016 08:46:43 PM,02/05/2016 08:47:06 PM,02/05/2016 08:47:21 PM,02/05/2016 08:57:01 PM,02/05/2016 09:07:08 PM,02/05/2016 09:20:18 PM,Code 2 Transport,02/05/2016 09:46:46 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160363715-68 -122470009,79,12081561,Medical Incident,09/03/2012,09/02/2012,09/03/2012 12:43:15 AM,09/03/2012 12:45:49 AM,09/03/2012 12:46:05 AM,09/03/2012 12:46:27 AM,09/03/2012 12:54:15 AM,09/03/2012 01:03:15 AM,09/03/2012 01:15:22 AM,Code 2 Transport,09/03/2012 01:49:18 AM,900 Block of DIVISADERO ST,SF,94115,B05,21,4151,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7782753692428, -122.438338701655)",122470009-79 -160101871,55,16004058,Medical Incident,01/10/2016,01/10/2016,01/10/2016 02:14:42 PM,01/10/2016 02:16:09 PM,01/10/2016 02:16:29 PM,01/10/2016 02:16:40 PM,01/10/2016 02:34:28 PM,01/10/2016 03:04:57 PM,01/10/2016 03:36:13 PM,Code 2 Transport,01/10/2016 04:49:35 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160101871-55 -123530155,83,12118072,Medical Incident,12/18/2012,12/18/2012,12/18/2012 11:37:24 AM,12/18/2012 11:38:03 AM,12/18/2012 11:38:25 AM,12/18/2012 11:38:31 AM,12/18/2012 11:42:43 AM,12/18/2012 12:01:55 PM,12/18/2012 12:08:03 PM,Code 2 Transport,12/18/2012 12:30:29 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",123530155-83 -140930388,T16,14031445,Alarms,04/03/2014,04/03/2014,04/03/2014 11:13:27 PM,04/03/2014 11:14:59 PM,04/03/2014 11:24:02 PM,04/03/2014 11:25:54 PM,04/03/2014 11:41:08 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Fire,04/03/2014 11:41:11 PM,300 Block of LOWER FORT MASON ST,FORT MASON,94123,B01,51,3343,3,3,3,false,Alarm,1,TRUCK,4,4,2,Marina,"(37.8058923703038, -122.431246520303)",140930388-T16 -160151085,67,16005912,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:49:21 AM,01/15/2016 09:54:07 AM,01/15/2016 09:54:23 AM,01/15/2016 09:55:26 AM,01/15/2016 10:00:40 AM,01/15/2016 10:21:43 AM,01/15/2016 10:42:48 AM,Code 2 Transport,01/15/2016 11:09:38 AM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.717376392628, -122.435002134703)",160151085-67 -160210944,62,16008298,Medical Incident,01/21/2016,01/21/2016,01/21/2016 09:11:24 AM,01/21/2016 09:13:33 AM,01/21/2016 09:18:37 AM,01/21/2016 09:18:37 AM,01/21/2016 09:27:09 AM,01/21/2016 09:44:24 AM,01/21/2016 09:52:18 AM,Code 2 Transport,01/21/2016 10:33:34 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160210944-62 -123210292,B01,12106775,Alarms,11/16/2012,11/16/2012,11/16/2012 06:07:17 PM,11/16/2012 06:08:22 PM,11/16/2012 06:09:29 PM,11/16/2012 06:09:45 PM,11/16/2012 06:10:26 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/16/2012 06:13:45 PM,0 Block of EMERY LN,SF,94133,B01,2,1333,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7987139952195, -122.409618331107)",123210292-B01 -103140142,E34,10100640,Traffic Collision,11/10/2010,11/10/2010,11/10/2010 10:57:36 AM,11/10/2010 10:58:54 AM,11/10/2010 10:59:15 AM,11/10/2010 10:59:26 AM,11/10/2010 11:03:54 AM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/10/2010 11:15:57 AM,POINT LOBOS AV/42ND AV,SF,94121,B07,34,7265,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.77960973574, -122.502972263941)",103140142-E34 -121790203,E11,12059621,Medical Incident,06/27/2012,06/27/2012,06/27/2012 01:17:17 PM,06/27/2012 01:18:09 PM,06/27/2012 01:18:41 PM,06/27/2012 01:19:24 PM,06/27/2012 01:21:20 PM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/27/2012 01:46:41 PM,200 Block of 30TH ST,SF,94131,B06,11,5574,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.742133681941, -122.425018174758)",121790203-E11 -160542148,AM08,16021635,Medical Incident,02/23/2016,02/23/2016,02/23/2016 02:26:07 PM,02/23/2016 02:26:07 PM,02/23/2016 02:26:40 PM,02/23/2016 02:27:22 PM,02/23/2016 02:43:59 PM,02/23/2016 02:44:04 PM,02/23/2016 02:53:50 PM,Code 2 Transport,02/23/2016 03:19:59 PM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,A,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",160542148-AM08 -111940122,KM12,11064000,Medical Incident,07/13/2011,07/13/2011,07/13/2011 10:46:34 AM,07/13/2011 10:46:59 AM,07/13/2011 10:47:56 AM,07/13/2011 10:50:10 AM,07/13/2011 10:53:30 AM,07/13/2011 11:01:10 AM,07/13/2011 11:11:22 AM,Code 2 Transport,07/13/2011 11:33:24 AM,600 Block of SHRADER ST,SF,94117,B05,12,4545,3,3,3,false,,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7689208501165, -122.451702521894)",111940122-KM12 -112700380,B10,11089384,Odor (Strange / Unknown),09/27/2011,09/27/2011,09/27/2011 10:27:44 PM,09/27/2011 10:30:08 PM,09/27/2011 10:30:25 PM,09/27/2011 10:32:04 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Fire,09/27/2011 10:41:24 PM,100 Block of CLEO RAND AVE,SF,94124,B10,25,6666,3,3,3,false,,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7291145750944, -122.371202591843)",112700380-B10 -113650131,B08,11121219,Alarms,12/31/2011,12/31/2011,12/31/2011 10:45:40 AM,12/31/2011 10:46:46 AM,12/31/2011 10:47:15 AM,12/31/2011 10:50:41 AM,12/31/2011 10:55:19 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 10:58:39 AM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",113650131-B08 -131350319,T17,13045662,Alarms,05/15/2013,05/15/2013,05/15/2013 06:51:24 PM,05/15/2013 06:52:52 PM,05/15/2013 06:53:31 PM,05/15/2013 06:55:33 PM,05/15/2013 06:57:46 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 07:08:31 PM,1000 Block of GILMAN AVE,SF,94124,B10,17,6611,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7187222856771, -122.389118324965)",131350319-T17 -133320225,T03,13112723,Citizen Assist / Service Call,11/28/2013,11/28/2013,11/28/2013 06:16:32 PM,11/28/2013 06:17:55 PM,11/28/2013 06:18:07 PM,11/28/2013 06:19:32 PM,11/28/2013 06:24:05 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Fire,11/28/2013 06:30:34 PM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",133320225-T03 -160103458,88,16004201,Medical Incident,01/10/2016,01/10/2016,01/10/2016 10:27:45 PM,01/10/2016 10:30:21 PM,01/10/2016 10:30:59 PM,01/10/2016 10:31:15 PM,01/10/2016 10:41:45 PM,01/10/2016 10:53:48 PM,01/10/2016 11:04:02 PM,Code 2 Transport,01/10/2016 11:37:29 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160103458-88 -160281851,60,16011092,Medical Incident,01/28/2016,01/28/2016,01/28/2016 01:23:02 PM,01/28/2016 01:23:11 PM,01/28/2016 01:23:46 PM,01/28/2016 01:24:23 PM,01/28/2016 01:33:04 PM,01/28/2016 01:44:13 PM,01/28/2016 02:00:38 PM,Code 2 Transport,01/28/2016 02:44:52 PM,6TH ST/NATOMA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7801620260598, -122.407691417119)",160281851-60 -111230037,B01,11040507,Structure Fire,05/03/2011,05/02/2011,05/03/2011 03:07:44 AM,05/03/2011 03:09:15 AM,05/03/2011 03:09:31 AM,05/03/2011 03:12:22 AM,05/03/2011 03:16:25 AM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Fire,05/03/2011 03:46:17 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,CHIEF,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",111230037-B01 -112640324,E02,11087295,Medical Incident,09/21/2011,09/21/2011,09/21/2011 06:37:15 PM,09/21/2011 06:38:00 PM,09/21/2011 06:38:28 PM,09/21/2011 06:39:48 PM,09/21/2011 06:41:45 PM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/21/2011 07:05:24 PM,700 Block of WASHINGTON ST,SF,94133,B01,13,1245,E,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7953293080075, -122.405411518793)",112640324-E02 -160301675,62,16011776,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:51:43 AM,01/30/2016 11:52:37 AM,01/30/2016 11:53:53 AM,01/30/2016 11:58:53 AM,01/30/2016 12:03:21 PM,01/30/2016 12:22:03 PM,01/30/2016 12:34:19 PM,Code 2 Transport,01/30/2016 01:27:58 PM,1300 Block of 38TH AVE,San Francisco,94122,B08,23,7626,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7617367287526, -122.497349537472)",160301675-62 -140720371,68,14024466,Medical Incident,03/13/2014,03/13/2014,03/13/2014 09:54:31 PM,03/13/2014 09:56:07 PM,03/13/2014 09:56:19 PM,03/13/2014 09:56:25 PM,03/13/2014 10:00:38 PM,03/13/2014 10:21:38 PM,03/13/2014 10:42:44 PM,Code 2 Transport,03/13/2014 11:00:46 PM,600 Block of SUTTER ST,SAN FRANCISCO,94102,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",140720371-68 -133090299,AM12,13105153,Medical Incident,11/05/2013,11/05/2013,11/05/2013 05:00:11 PM,11/05/2013 05:01:38 PM,11/05/2013 05:01:50 PM,11/05/2013 05:03:03 PM,11/05/2013 05:07:00 PM,11/05/2013 05:14:00 PM,11/05/2013 05:30:17 PM,Code 2 Transport,11/05/2013 06:02:49 PM,600 Block of STANYAN ST,SF,94117,B05,12,4553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",133090299-AM12 -160891936,54,16035343,Medical Incident,03/29/2016,03/29/2016,03/29/2016 01:16:03 PM,03/29/2016 01:17:29 PM,03/29/2016 01:17:44 PM,03/29/2016 01:17:58 PM,03/29/2016 01:24:10 PM,03/29/2016 01:38:32 PM,03/29/2016 01:53:54 PM,Code 2 Transport,03/29/2016 02:31:37 PM,200 Block of OAK ST,San Francisco,94102,B02,36,3266,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748685141021, -122.4233563121)",160891936-54 -112030277,E09,11067091,Medical Incident,07/22/2011,07/22/2011,07/22/2011 04:39:06 PM,07/22/2011 04:39:09 PM,07/22/2011 04:39:23 PM,07/22/2011 04:42:20 PM,07/22/2011 04:42:22 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/22/2011 04:57:24 PM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",112030277-E09 -160102375,66,16004108,Medical Incident,01/10/2016,01/10/2016,01/10/2016 04:35:04 PM,01/10/2016 04:37:20 PM,01/10/2016 04:37:55 PM,01/10/2016 04:38:03 PM,01/10/2016 04:41:17 PM,01/10/2016 05:03:22 PM,01/10/2016 05:03:22 PM,Code 2 Transport,01/10/2016 05:53:18 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160102375-66 -120840341,D2,12028038,Structure Fire,03/24/2012,03/24/2012,03/24/2012 08:34:31 PM,03/24/2012 08:36:39 PM,03/24/2012 08:36:46 PM,03/24/2012 08:39:02 PM,03/24/2012 08:41:08 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/24/2012 08:44:04 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Fire,1,CHIEF,10,3,6,South of Market,"(37.7816150265786, -122.40942036456)",120840341-D2 -113490173,95,11115795,Medical Incident,12/15/2011,12/15/2011,12/15/2011 01:39:31 PM,12/15/2011 01:40:46 PM,12/15/2011 01:41:06 PM,12/15/2011 01:42:39 PM,12/15/2011 01:44:14 PM,12/15/2011 02:01:31 PM,12/15/2011 02:15:01 PM,Code 2 Transport,12/15/2011 02:50:27 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",113490173-95 -112500012,T01,11082332,Alarms,09/07/2011,09/06/2011,09/07/2011 12:59:09 AM,09/07/2011 12:59:28 AM,09/07/2011 01:00:07 AM,09/07/2011 01:01:35 AM,09/07/2011 01:04:12 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 01:09:15 AM,1200 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",112500012-T01 -133650158,82,13123920,Outside Fire,12/31/2013,12/31/2013,12/31/2013 11:40:21 AM,12/31/2013 11:40:21 AM,12/31/2013 11:42:02 AM,12/31/2013 11:42:12 AM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Other,12/31/2013 11:47:05 AM,12TH ST/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,Fire,1,MEDIC,2,2,6,Mission,"(37.7743586748127, -122.420254280324)",133650158-82 -111840298,E06,11060877,Medical Incident,07/03/2011,07/03/2011,07/03/2011 05:59:14 PM,07/03/2011 05:59:44 PM,07/03/2011 06:00:23 PM,07/03/2011 06:02:27 PM,07/03/2011 06:03:31 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 06:05:53 PM,DOLORES ST/16TH ST,SF,94103,B02,6,5234,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",111840298-E06 -121970085,E03,12065434,Medical Incident,07/15/2012,07/14/2012,07/15/2012 06:27:00 AM,07/15/2012 06:28:46 AM,07/15/2012 06:29:32 AM,07/15/2012 06:31:36 AM,07/15/2012 06:35:02 AM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/15/2012 07:08:39 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",121970085-E03 -102250305,89,10070967,Medical Incident,08/13/2010,08/13/2010,08/13/2010 10:12:10 PM,08/13/2010 10:14:03 PM,08/13/2010 10:14:25 PM,08/13/2010 10:14:48 PM,08/13/2010 10:20:18 PM,08/13/2010 10:38:11 PM,08/13/2010 10:52:56 PM,Code 2 Transport,08/13/2010 11:23:36 PM,500 Block of 22ND AVE,SF,94121,B07,14,7176,3,3,3,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7773769744836, -122.481382829615)",102250305-89 -120810129,77,12026841,Medical Incident,03/21/2012,03/21/2012,03/21/2012 09:52:14 AM,03/21/2012 09:52:55 AM,03/21/2012 09:54:32 AM,03/21/2012 10:01:08 AM,03/21/2012 10:01:10 AM,03/21/2012 10:26:16 AM,03/21/2012 10:56:03 AM,Code 2 Transport,03/21/2012 11:26:26 AM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",120810129-77 -122900111,T13,12095912,Structure Fire,10/16/2012,10/16/2012,10/16/2012 09:13:54 AM,10/16/2012 09:13:54 AM,10/16/2012 09:14:23 AM,10/16/2012 09:15:54 AM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/16/2012 09:17:38 AM,600 Block of MERCHANT ST,SF,94111,B01,13,124,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7949086758744, -122.404037735679)",122900111-T13 -130790348,B04,13026544,Alarms,03/20/2013,03/20/2013,03/20/2013 09:09:48 PM,03/20/2013 09:10:22 PM,03/20/2013 09:10:31 PM,03/20/2013 09:11:47 PM,03/20/2013 09:22:34 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 09:23:10 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.8059843486439, -122.431322222994)",130790348-B04 -103060197,85,10097909,Medical Incident,11/02/2010,11/02/2010,11/02/2010 10:56:38 AM,11/02/2010 10:57:27 AM,11/02/2010 10:57:44 AM,11/02/2010 10:58:26 AM,11/02/2010 11:18:56 AM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,No Merit,11/02/2010 11:36:33 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",103060197-85 -112870318,65,11095255,Medical Incident,10/14/2011,10/14/2011,10/14/2011 04:40:46 PM,10/14/2011 04:43:54 PM,10/14/2011 04:44:34 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,04/25/2016 02:02:10 PM,1800 Block of 22ND AVE,SF,94122,B08,40,7431,3,3,3,true,,1,MEDIC,4,8,4,Sunset/Parkside,"(37.753163589686, -122.479691469824)",112870318-65 -111920304,T03,11063476,Vehicle Fire,07/11/2011,07/11/2011,07/11/2011 05:35:41 PM,07/11/2011 05:37:30 PM,07/11/2011 05:39:48 PM,07/11/2011 05:41:13 PM,07/11/2011 05:42:10 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 05:50:19 PM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,3,3,3,false,,1,TRUCK,2,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",111920304-T03 -111460176,89,11048474,Medical Incident,05/26/2011,05/26/2011,05/26/2011 01:33:22 PM,05/26/2011 01:36:10 PM,05/26/2011 01:36:30 PM,05/26/2011 01:36:59 PM,05/26/2011 01:42:44 PM,04/25/2016 02:04:26 PM,04/25/2016 02:04:26 PM,Against Medical Advice,05/26/2011 02:39:58 PM,600 Block of TOWNSEND ST,SF,94103,B03,29,2275,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7709789357353, -122.402816011063)",111460176-89 -140280339,E03,14009662,Medical Incident,01/28/2014,01/28/2014,01/28/2014 07:32:29 PM,01/28/2014 07:34:52 PM,01/28/2014 07:35:01 PM,01/28/2014 07:36:44 PM,01/28/2014 07:38:18 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/28/2014 07:57:18 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",140280339-E03 -122550070,66,12084188,Medical Incident,09/11/2012,09/10/2012,09/11/2012 07:46:55 AM,09/11/2012 07:49:16 AM,09/11/2012 07:49:43 AM,09/11/2012 07:50:15 AM,09/11/2012 08:03:11 AM,09/11/2012 08:17:32 AM,04/25/2016 01:56:49 PM,Code 2 Transport,09/11/2012 09:17:10 AM,0 Block of FLORENTINE AVE,SF,94112,B09,33,6177,3,1,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7126176750656, -122.443700918136)",122550070-66 -113350305,E15,11111012,Traffic Collision,12/01/2011,12/01/2011,12/01/2011 07:40:00 PM,12/01/2011 07:40:57 PM,12/01/2011 07:41:45 PM,12/01/2011 07:43:17 PM,12/01/2011 07:46:44 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/01/2011 08:23:48 PM,NAPLES ST/EXCELSIOR AV,SF,94112,B09,43,6155,3,2,2,true,,1,ENGINE,2,9,11,Excelsior,"(37.7239545736182, -122.428836527871)",113350305-E15 -102570276,E18,10081273,Citizen Assist / Service Call,09/14/2010,09/14/2010,09/14/2010 05:15:56 PM,09/14/2010 05:17:37 PM,09/14/2010 05:17:56 PM,09/14/2010 05:18:33 PM,09/14/2010 05:23:14 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Fire,09/14/2010 05:31:59 PM,2500 Block of 24TH AVE,SF,94116,B08,40,7442,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7400213164931, -122.480783251007)",102570276-E18 -112950080,67,11097766,Medical Incident,10/22/2011,10/21/2011,10/22/2011 07:50:24 AM,10/22/2011 07:52:55 AM,10/22/2011 07:54:37 AM,10/22/2011 07:54:51 AM,10/22/2011 08:07:58 AM,10/22/2011 08:22:30 AM,10/22/2011 08:41:15 AM,Code 2 Transport,10/22/2011 08:59:47 AM,200 Block of JONES ST,SF,94102,B03,1,1456,1,1,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",112950080-67 -122590269,T01,12085696,Alarms,09/15/2012,09/15/2012,09/15/2012 07:18:30 PM,09/15/2012 07:20:13 PM,09/15/2012 07:20:20 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,04/25/2016 01:56:45 PM,700 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,Alarm,1,TRUCK,5,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",122590269-T01 -160393679,88,16015813,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:09:07 PM,02/08/2016 10:10:26 PM,02/08/2016 10:13:26 PM,02/08/2016 10:13:26 PM,02/08/2016 10:18:44 PM,02/08/2016 10:40:12 PM,02/08/2016 11:02:52 PM,Code 2 Transport,02/08/2016 11:51:44 PM,1400 Block of MCKINNON AVE,San Francisco,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.734591007984, -122.386906044806)",160393679-88 -112170329,E02,11071829,Medical Incident,08/05/2011,08/05/2011,08/05/2011 08:14:53 PM,08/05/2011 08:14:54 PM,08/05/2011 08:15:41 PM,08/05/2011 08:19:33 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 08:27:54 PM,2300 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8062826874223, -122.412114085659)",112170329-E02 -130200385,E41,13007042,Medical Incident,01/20/2013,01/20/2013,01/20/2013 08:50:36 PM,01/20/2013 08:50:37 PM,01/20/2013 08:51:36 PM,01/20/2013 08:52:13 PM,01/20/2013 08:54:51 PM,04/25/2016 01:54:42 PM,04/25/2016 01:54:42 PM,Other,01/20/2013 08:59:09 PM,POLK ST/SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7914958541783, -122.420873185108)",130200385-E41 -120440002,E01,12014549,Traffic Collision,02/12/2012,02/12/2012,02/12/2012 11:58:15 PM,02/13/2012 12:02:34 AM,02/13/2012 12:02:54 AM,02/13/2012 12:04:40 AM,02/13/2012 12:07:00 AM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 12:16:14 AM,SUTTER ST/POWELL ST,SF,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",120440002-E01 -103350179,B08,10107179,Alarms,12/01/2010,12/01/2010,12/01/2010 12:54:50 PM,12/01/2010 12:56:08 PM,12/01/2010 12:56:19 PM,12/01/2010 12:57:33 PM,12/01/2010 01:02:24 PM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Fire,12/01/2010 01:04:10 PM,0 Block of MENDOSA AVE,SF,94116,B08,39,8625,3,3,3,false,,1,CHIEF,2,8,7,West of Twin Peaks,"(37.7487814892995, -122.465776705043)",103350179-B08 -160460854,AM02,16018432,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:50:16 AM,02/15/2016 08:51:20 AM,02/15/2016 08:51:56 AM,02/15/2016 08:53:36 AM,02/15/2016 09:05:07 AM,02/15/2016 09:24:32 AM,02/15/2016 09:54:23 AM,Code 2 Transport,02/15/2016 10:35:46 AM,100 Block of CAINE AVE,San Francisco,94112,B09,33,8325,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7157481523614, -122.451744181527)",160460854-AM02 -133130113,RWC2,13106321,Water Rescue,11/09/2013,11/09/2013,11/09/2013 08:09:27 AM,11/09/2013 08:10:52 AM,11/09/2013 08:12:10 AM,11/09/2013 08:14:42 AM,11/09/2013 08:18:13 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 08:21:21 AM,200 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,948,3,3,3,false,Fire,1,SUPPORT,5,3,6,Mission Bay,"(37.7757198568858, -122.387651994804)",133130113-RWC2 -160070335,79,16002691,Medical Incident,01/07/2016,01/06/2016,01/07/2016 04:20:57 AM,01/07/2016 04:22:31 AM,01/07/2016 04:22:40 AM,01/07/2016 04:23:10 AM,01/07/2016 04:27:35 AM,01/07/2016 04:34:52 AM,01/07/2016 04:46:58 AM,Code 2 Transport,01/07/2016 05:01:36 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160070335-79 -160303906,57,16011980,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:34:07 PM,01/30/2016 10:34:07 PM,01/30/2016 10:34:34 PM,01/30/2016 10:34:46 PM,01/30/2016 10:34:46 PM,01/30/2016 11:02:06 PM,01/30/2016 11:12:32 PM,Code 2 Transport,01/30/2016 11:30:40 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3219,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160303906-57 -121920029,81,12063786,Medical Incident,07/10/2012,07/09/2012,07/10/2012 03:27:22 AM,07/10/2012 03:28:59 AM,07/10/2012 03:29:37 AM,07/10/2012 03:32:55 AM,07/10/2012 03:43:12 AM,07/10/2012 04:17:10 AM,07/10/2012 04:35:09 AM,Code 2 Transport,07/10/2012 05:00:26 AM,1100 Block of CHURCH ST,SF,94114,B06,11,5523,3,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7528749335192, -122.427474292895)",121920029-81 -121060372,71,12035301,Medical Incident,04/15/2012,04/15/2012,04/15/2012 11:45:56 PM,04/15/2012 11:48:06 PM,04/15/2012 11:48:37 PM,04/15/2012 11:49:00 PM,04/15/2012 11:54:53 PM,04/16/2012 12:17:52 AM,04/16/2012 12:23:38 AM,Code 2 Transport,04/16/2012 12:43:10 AM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",121060372-71 -123590052,E03,12120066,Medical Incident,12/24/2012,12/23/2012,12/24/2012 04:36:22 AM,12/24/2012 04:39:55 AM,12/24/2012 04:40:21 AM,12/24/2012 04:42:00 AM,12/24/2012 04:45:29 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 04:57:18 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",123590052-E03 -160800396,56,16031683,Medical Incident,03/20/2016,03/19/2016,03/20/2016 02:24:32 AM,03/20/2016 02:27:07 AM,03/20/2016 02:31:03 AM,03/20/2016 02:31:27 AM,03/20/2016 02:48:03 AM,03/20/2016 03:03:59 AM,03/20/2016 03:11:43 AM,Code 2 Transport,03/20/2016 03:43:29 AM,0 Block of HUNTERS POINT BLVD,San Francisco,94124,B10,25,6632,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7330182195682, -122.376944786094)",160800396-56 -160431723,71,16017302,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:55:01 PM,02/12/2016 12:55:51 PM,02/12/2016 12:56:04 PM,02/12/2016 12:56:43 PM,02/12/2016 12:59:38 PM,02/12/2016 01:20:51 PM,02/12/2016 01:39:57 PM,Code 2 Transport,02/12/2016 02:19:28 PM,2800 Block of YORBA ST,San Francisco,94116,B08,19,7615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7345860862244, -122.49712884674)",160431723-71 -121120006,E01,12036969,Structure Fire,04/21/2012,04/20/2012,04/21/2012 12:13:36 AM,04/21/2012 12:13:36 AM,04/21/2012 12:13:42 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 12:15:23 AM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",121120006-E01 -133440253,E03,13116709,Structure Fire,12/10/2013,12/10/2013,12/10/2013 02:40:58 PM,12/10/2013 02:41:30 PM,12/10/2013 02:42:00 PM,12/10/2013 02:42:52 PM,12/10/2013 02:45:33 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 03:08:26 PM,200 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,Alarm,1,ENGINE,5,1,3,Financial District/South Beach,"(37.7898602960519, -122.404035815683)",133440253-E03 -112580079,KM12,11084974,Medical Incident,09/15/2011,09/15/2011,09/15/2011 08:38:49 AM,09/15/2011 08:40:53 AM,09/15/2011 08:41:06 AM,09/15/2011 08:42:10 AM,09/15/2011 08:47:53 AM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/15/2011 08:48:10 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,false,,1,PRIVATE,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",112580079-KM12 -131900217,83,13064740,Medical Incident,07/09/2013,07/09/2013,07/09/2013 01:28:29 PM,07/09/2013 01:29:03 PM,07/09/2013 01:30:20 PM,07/09/2013 01:30:26 PM,07/09/2013 01:33:08 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Unable to Locate,07/09/2013 01:36:52 PM,300 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869126924267, -122.409756223507)",131900217-83 -132180219,E36,13073641,Medical Incident,08/06/2013,08/06/2013,08/06/2013 02:43:41 PM,08/06/2013 02:44:37 PM,08/06/2013 02:45:17 PM,08/06/2013 02:47:04 PM,08/06/2013 02:49:16 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 02:57:31 PM,1400 Block of MARKET ST,SF,94102,B02,36,3211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",132180219-E36 -122880346,T07,12095426,Alarms,10/14/2012,10/14/2012,10/14/2012 09:14:16 PM,10/14/2012 09:14:16 PM,10/14/2012 09:14:50 PM,10/14/2012 09:15:58 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 09:19:42 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",122880346-T07 -132210037,81,13074516,Medical Incident,08/09/2013,08/08/2013,08/09/2013 06:27:35 AM,08/09/2013 06:28:28 AM,08/09/2013 06:28:52 AM,08/09/2013 06:29:17 AM,08/09/2013 06:33:56 AM,08/09/2013 06:59:38 AM,08/09/2013 07:06:22 AM,Code 3 Transport,08/09/2013 08:15:29 AM,300 Block of YERBA BUENA AVE,SF,94127,B09,39,8525,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7331192687821, -122.458740644298)",132210037-81 -140820288,89,14027793,Structure Fire,03/23/2014,03/23/2014,03/23/2014 08:40:33 PM,03/23/2014 08:41:28 PM,03/23/2014 08:41:38 PM,03/23/2014 08:41:52 PM,04/25/2016 01:47:35 PM,04/25/2016 01:47:35 PM,04/25/2016 01:47:35 PM,Fire,03/23/2014 08:49:36 PM,500 Block of TERRY A FRANCOIS BLVD,SAN FRANCISCO,94158,B03,8,948,3,3,3,true,Alarm,1,MEDIC,12,3,6,Mission Bay,"(37.7699167000745, -122.386442168137)",140820288-89 -113070404,AM18,11102182,Medical Incident,11/03/2011,11/03/2011,11/03/2011 11:57:34 PM,11/03/2011 11:57:53 PM,11/03/2011 11:58:44 PM,11/03/2011 11:59:14 PM,11/04/2011 12:02:47 AM,11/04/2011 12:32:16 AM,11/04/2011 12:39:25 AM,Code 3 Transport,11/04/2011 01:31:40 AM,WILLIAMS AV/REDDY ST,SF,94124,B10,17,6512,3,3,3,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7296542206566, -122.395376933981)",113070404-AM18 -112070232,RC2,11068418,Medical Incident,07/26/2011,07/26/2011,07/26/2011 03:42:07 PM,07/26/2011 03:42:50 PM,07/26/2011 03:43:28 PM,07/26/2011 03:48:33 PM,07/26/2011 03:59:29 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 04:23:24 PM,1400 Block of 21ST AVE,SF,94122,B08,22,7426,3,3,3,true,,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7606747175008, -122.479001684778)",112070232-RC2 -122890173,E01,12095606,Medical Incident,10/15/2012,10/15/2012,10/15/2012 12:32:52 PM,10/15/2012 12:35:01 PM,10/15/2012 12:35:32 PM,04/25/2016 01:56:18 PM,10/15/2012 12:42:24 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 12:43:36 PM,ELIM AL/1ST ST,SF,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7900526671441, -122.39793857229)",122890173-E01 -123600083,KM06,12120432,Medical Incident,12/25/2012,12/25/2012,12/25/2012 09:35:38 AM,12/25/2012 09:36:21 AM,12/25/2012 09:36:33 AM,12/25/2012 09:37:39 AM,12/25/2012 09:41:41 AM,12/25/2012 10:00:07 AM,12/25/2012 10:09:59 AM,Code 2 Transport,12/25/2012 10:45:25 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123600083-KM06 -120190199,B02,12006361,Alarms,01/19/2012,01/19/2012,01/19/2012 12:39:51 PM,01/19/2012 12:40:30 PM,01/19/2012 12:40:38 PM,01/19/2012 12:41:54 PM,01/19/2012 12:46:19 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 12:46:47 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,Alarm,1,CHIEF,3,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",120190199-B02 -160451009,82,16018053,Medical Incident,02/14/2016,02/14/2016,02/14/2016 09:18:18 AM,02/14/2016 09:21:36 AM,02/14/2016 09:21:48 AM,02/14/2016 09:22:46 AM,02/14/2016 09:26:43 AM,02/14/2016 09:53:37 AM,02/14/2016 10:06:23 AM,Code 2 Transport,02/14/2016 10:37:26 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7764944808779, -122.411359138357)",160451009-82 -160592774,KM12,16023641,Medical Incident,02/28/2016,02/28/2016,02/28/2016 07:00:21 PM,02/28/2016 07:02:46 PM,02/28/2016 07:02:58 PM,02/28/2016 07:03:21 PM,02/28/2016 07:13:57 PM,02/28/2016 07:26:03 PM,02/28/2016 07:43:10 PM,Code 2 Transport,02/28/2016 08:24:39 PM,LA PLAYA/CABRILLO ST,San Francisco,94121,B07,34,7312,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160592774-KM12 -112060174,E08,11068060,Medical Incident,07/25/2011,07/25/2011,07/25/2011 01:03:36 PM,07/25/2011 01:04:11 PM,07/25/2011 01:04:58 PM,07/25/2011 01:05:26 PM,07/25/2011 01:08:05 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/25/2011 01:16:21 PM,600 Block of 16TH ST,SF,94158,B03,8,2364,3,3,3,true,,1,ENGINE,1,3,6,Potrero Hill,"(37.7666921828262, -122.391724348278)",112060174-E08 -111440354,AM04,11047999,Medical Incident,05/24/2011,05/24/2011,05/24/2011 09:36:01 PM,05/24/2011 09:37:03 PM,05/24/2011 09:38:04 PM,05/24/2011 09:38:36 PM,05/24/2011 09:41:13 PM,05/24/2011 10:06:13 PM,05/24/2011 10:21:50 PM,Code 2 Transport,05/24/2011 11:04:01 PM,2500 Block of 23RD AVE,SF,94116,B08,40,7442,3,3,3,false,,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7400685754574, -122.479713963677)",111440354-AM04 -160843158,KM01,16033502,Medical Incident,03/24/2016,03/24/2016,03/24/2016 05:34:18 PM,03/24/2016 05:36:31 PM,03/24/2016 05:36:49 PM,03/24/2016 05:37:30 PM,03/24/2016 06:08:12 PM,03/24/2016 06:08:14 PM,03/24/2016 06:27:58 PM,Code 2 Transport,03/24/2016 07:07:24 PM,100 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7934880846575, -122.398205964751)",160843158-KM01 -160790538,64,16031309,Medical Incident,03/19/2016,03/18/2016,03/19/2016 05:11:35 AM,03/19/2016 05:11:35 AM,03/19/2016 05:14:18 AM,03/19/2016 05:14:41 AM,03/19/2016 05:20:59 AM,03/19/2016 05:37:14 AM,03/19/2016 05:44:48 AM,Code 2 Transport,03/19/2016 05:58:58 AM,500 Block of MADRID ST,San Francisco,94112,B09,43,6134,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.720812463136, -122.433336306308)",160790538-64 -133180290,E09,13108167,Medical Incident,11/14/2013,11/14/2013,11/14/2013 05:56:41 PM,11/14/2013 05:57:52 PM,11/14/2013 06:03:26 PM,11/14/2013 06:04:53 PM,11/14/2013 06:09:52 PM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/14/2013 06:29:29 PM,1200 Block of HAMPSHIRE ST,SF,94110,B06,9,5531,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Mission,"(37.7521125682968, -122.407146114914)",133180290-E09 -112240266,B10,11074055,Alarms,08/12/2011,08/12/2011,08/12/2011 03:36:05 PM,08/12/2011 03:36:57 PM,08/12/2011 03:37:14 PM,08/12/2011 03:38:22 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 03:40:27 PM,1600 Block of DONNER AVE,SF,94124,B10,17,6537,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7245894559218, -122.394230463021)",112240266-B10 -112580148,AM02,11085013,Medical Incident,09/15/2011,09/15/2011,09/15/2011 11:15:57 AM,09/15/2011 11:17:47 AM,09/15/2011 11:18:23 AM,09/15/2011 11:18:56 AM,09/15/2011 11:29:00 AM,09/15/2011 11:47:51 AM,09/15/2011 12:06:29 PM,Code 2 Transport,09/15/2011 12:20:25 PM,300 Block of POST ST,SF,94108,B01,1,1362,1,1,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7884505799048, -122.407597246833)",112580148-AM02 -132690220,T16,13091377,Medical Incident,09/26/2013,09/26/2013,09/26/2013 01:56:08 PM,09/26/2013 01:57:23 PM,09/26/2013 01:57:59 PM,09/26/2013 01:58:41 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/26/2013 01:59:34 PM,2100 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,2,Marina,"(37.8005603246335, -122.438707766533)",132690220-T16 -111960089,E44,11064627,Medical Incident,07/15/2011,07/15/2011,07/15/2011 09:50:41 AM,07/15/2011 09:51:15 AM,07/15/2011 09:51:24 AM,07/15/2011 09:52:47 AM,07/15/2011 09:58:09 AM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 10:08:32 AM,FITZGERALD AV/3RD ST,SF,94124,B10,44,6544,3,2,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7232223346375, -122.395264648192)",111960089-E44 -130340213,KM01,13011637,Medical Incident,02/03/2013,02/03/2013,02/03/2013 03:14:10 PM,02/03/2013 03:15:44 PM,02/03/2013 03:15:53 PM,02/03/2013 03:16:31 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 03:18:59 PM,900 Block of INGERSON AVE,SF,94124,B10,17,6642,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7183658404174, -122.391545031556)",130340213-KM01 -111690381,55,11055878,Medical Incident,06/18/2011,06/18/2011,06/18/2011 10:52:39 PM,06/18/2011 10:54:50 PM,06/18/2011 10:54:58 PM,06/18/2011 10:55:11 PM,06/18/2011 10:57:44 PM,06/18/2011 11:07:40 PM,06/18/2011 11:13:48 PM,Code 2 Transport,06/18/2011 11:39:28 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7530339738059, -122.418588598473)",111690381-55 -110860147,RC1,11028342,Medical Incident,03/27/2011,03/27/2011,03/27/2011 09:41:17 AM,03/27/2011 09:41:59 AM,03/27/2011 09:42:09 AM,03/27/2011 09:43:49 AM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,Other,03/27/2011 09:57:19 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,E,3,true,,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7803875013555, -122.407877117352)",110860147-RC1 -122390343,67,12079283,Traffic Collision,08/26/2012,08/26/2012,08/26/2012 11:36:37 PM,08/26/2012 11:40:04 PM,08/26/2012 11:41:22 PM,08/26/2012 11:41:31 PM,08/26/2012 11:43:36 PM,08/26/2012 11:58:30 PM,08/27/2012 12:02:38 AM,Code 2 Transport,08/27/2012 12:26:29 AM,VAN NESS AV/CLAY ST,SF,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7921746447197, -122.4226941645)",122390343-67 -123660093,AM04,12122374,Medical Incident,12/31/2012,12/31/2012,12/31/2012 09:05:53 AM,12/31/2012 09:08:02 AM,12/31/2012 09:10:19 AM,12/31/2012 09:10:54 AM,12/31/2012 09:12:06 AM,12/31/2012 09:20:38 AM,12/31/2012 09:28:36 AM,Code 2 Transport,12/31/2012 10:10:19 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,1,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",123660093-AM04 -113640174,E19,11120886,Medical Incident,12/30/2011,12/30/2011,12/30/2011 11:40:37 AM,12/30/2011 11:41:28 AM,12/30/2011 11:41:53 AM,12/30/2011 11:42:32 AM,12/30/2011 11:45:39 AM,12/30/2011 12:11:46 PM,12/30/2011 12:38:18 PM,Other,12/30/2011 12:51:54 PM,100 Block of TAPIA DR,SF,94132,B08,19,8581,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7205844550743, -122.4812606101)",113640174-E19 -123350360,92,12111458,Medical Incident,11/30/2012,11/30/2012,11/30/2012 05:52:13 PM,11/30/2012 05:54:46 PM,11/30/2012 05:55:25 PM,11/30/2012 05:59:36 PM,11/30/2012 06:08:05 PM,11/30/2012 06:17:00 PM,11/30/2012 06:38:13 PM,Code 2 Transport,11/30/2012 07:14:55 PM,2300 Block of 16TH ST,SF,94103,B02,29,5241,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",123350360-92 -160723026,84,16028746,Medical Incident,03/12/2016,03/12/2016,03/12/2016 07:53:21 PM,03/12/2016 07:55:21 PM,03/12/2016 07:55:40 PM,03/12/2016 07:56:18 PM,03/12/2016 08:05:07 PM,03/12/2016 08:14:16 PM,03/12/2016 08:19:08 PM,Code 2 Transport,03/12/2016 09:15:45 PM,TOWNSEND ST/3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7788517157298, -122.39274978786)",160723026-84 -133410151,E23,13115586,Electrical Hazard,12/07/2013,12/07/2013,12/07/2013 10:52:51 AM,12/07/2013 10:54:13 AM,12/07/2013 10:54:45 AM,12/07/2013 10:55:53 AM,12/07/2013 11:02:40 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Fire,12/07/2013 11:16:01 AM,33RD AV/KIRKHAM ST,SF,94122,B08,18,7535,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7591701671233, -122.491866953608)",133410151-E23 -160271432,82,16010640,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:23:36 AM,01/27/2016 11:25:28 AM,01/27/2016 11:25:55 AM,01/27/2016 11:26:10 AM,01/27/2016 11:36:57 AM,01/27/2016 11:45:53 AM,01/27/2016 12:13:53 PM,Code 2 Transport,01/27/2016 12:59:55 PM,100 Block of REY ST,San Francisco,94134,B09,44,6257,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7116474138214, -122.411861229575)",160271432-82 -110220083,E03,11007189,Traffic Collision,01/22/2011,01/22/2011,01/22/2011 08:26:47 AM,01/22/2011 08:27:46 AM,01/22/2011 08:29:05 AM,01/22/2011 08:30:28 AM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/22/2011 08:34:23 AM,POLK ST/TURK ST,SF,94102,B02,3,3114,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7821692691963, -122.418993274637)",110220083-E03 -160651640,KM08,16025927,Medical Incident,03/05/2016,03/05/2016,03/05/2016 01:05:16 PM,03/05/2016 01:05:16 PM,03/05/2016 01:05:31 PM,03/05/2016 01:06:07 PM,03/05/2016 01:15:52 PM,03/05/2016 01:33:54 PM,03/05/2016 01:42:20 PM,Code 2 Transport,03/05/2016 02:24:08 PM,1100 Block of FILLMORE ST,San Francisco,94115,B05,16,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160651640-KM08 -160123662,64,16004970,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:00:26 PM,01/12/2016 10:02:11 PM,01/12/2016 10:03:50 PM,01/12/2016 10:03:58 PM,01/12/2016 10:15:14 PM,01/12/2016 10:33:10 PM,01/12/2016 10:50:48 PM,Code 2 Transport,01/12/2016 11:39:28 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160123662-64 -103380264,KM05,10108201,Medical Incident,12/04/2010,12/04/2010,12/04/2010 03:10:13 PM,12/04/2010 03:11:05 PM,12/04/2010 03:12:37 PM,04/25/2016 02:07:17 PM,12/04/2010 03:14:15 PM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Patient Declined Transport,12/04/2010 03:22:52 PM,MISSION ST/11TH ST,SF,94103,B02,36,5116,3,3,3,false,,1,PRIVATE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",103380264-KM05 -160143458,85,16005733,Medical Incident,01/14/2016,01/14/2016,01/14/2016 08:35:01 PM,01/14/2016 08:35:43 PM,01/14/2016 08:36:26 PM,01/14/2016 08:36:42 PM,01/14/2016 08:40:41 PM,01/14/2016 08:49:49 PM,01/14/2016 09:00:19 PM,Code 2 Transport,01/14/2016 09:47:44 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",160143458-85 -112160231,96,11071375,Medical Incident,08/04/2011,08/04/2011,08/04/2011 01:52:00 PM,08/04/2011 01:54:24 PM,08/04/2011 01:54:47 PM,08/04/2011 01:54:57 PM,08/04/2011 02:00:19 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Patient Declined Transport,08/04/2011 02:04:31 PM,VALENCIA ST/24TH ST,SF,94110,B06,11,5512,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7521036457482, -122.420664802284)",112160231-96 -122770219,93,12091545,Medical Incident,10/03/2012,10/03/2012,10/03/2012 01:02:01 PM,10/03/2012 01:03:27 PM,10/03/2012 01:04:28 PM,10/03/2012 01:06:42 PM,10/03/2012 01:15:49 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 01:52:50 PM,1600 Block of JERROLD AVE,SF,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7392528787496, -122.390329445004)",122770219-93 -111380115,E05,11045822,Medical Incident,05/18/2011,05/18/2011,05/18/2011 10:13:30 AM,05/18/2011 10:15:13 AM,05/18/2011 10:15:37 AM,05/18/2011 10:16:10 AM,05/18/2011 10:17:43 AM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Medical Examiner,05/18/2011 10:53:16 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,E,2,2,true,,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",111380115-E05 -123140089,KM09,12104414,Medical Incident,11/09/2012,11/09/2012,11/09/2012 08:17:55 AM,11/09/2012 08:19:41 AM,11/09/2012 08:20:18 AM,11/09/2012 08:21:15 AM,11/09/2012 08:26:59 AM,11/09/2012 08:49:54 AM,11/09/2012 09:06:50 AM,Code 2 Transport,11/09/2012 09:45:49 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",123140089-KM09 -160890168,KM07,16035178,Medical Incident,03/29/2016,03/28/2016,03/29/2016 01:42:13 AM,03/29/2016 01:45:32 AM,03/29/2016 01:45:51 AM,03/29/2016 01:46:51 AM,03/29/2016 01:49:48 AM,03/29/2016 02:16:52 AM,03/29/2016 02:24:10 AM,Code 2 Transport,03/29/2016 02:56:19 AM,0 Block of SUTTER ST,San Francisco,94104,B01,13,1164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7902143401629, -122.400344691288)",160890168-KM07 -112610374,E21,11086313,Alarms,09/18/2011,09/18/2011,09/18/2011 11:45:37 PM,09/18/2011 11:47:31 PM,09/18/2011 11:47:47 PM,04/25/2016 02:02:36 PM,09/18/2011 11:48:54 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,09/19/2011 12:02:35 AM,900 Block of HAIGHT ST,SF,94117,B05,21,4246,3,3,3,false,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7712162010371, -122.437888283036)",112610374-E21 -160690035,57,16027296,Medical Incident,03/09/2016,03/08/2016,03/09/2016 12:14:00 AM,03/09/2016 12:15:36 AM,03/09/2016 12:16:23 AM,03/09/2016 12:17:02 AM,03/09/2016 12:24:55 AM,03/09/2016 12:39:24 AM,03/09/2016 12:46:02 AM,Code 3 Transport,03/09/2016 01:35:01 AM,200 Block of LELAND AVE,San Francisco,94134,B09,44,6256,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7127325080264, -122.40781867808)",160690035-57 -110060053,89,11001877,Medical Incident,01/06/2011,01/05/2011,01/06/2011 05:31:33 AM,01/06/2011 05:31:54 AM,01/06/2011 05:35:41 AM,01/06/2011 05:36:40 AM,01/06/2011 05:49:36 AM,01/06/2011 06:17:18 AM,01/06/2011 06:24:34 AM,Code 2 Transport,01/06/2011 06:54:18 AM,GONZALEZ DR/CRESPI DR,SF,94132,B08,19,8426,2,2,2,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7200053522662, -122.475739974303)",110060053-89 -160103172,76,16004175,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:46:28 PM,01/10/2016 08:46:28 PM,01/10/2016 08:46:43 PM,01/10/2016 08:47:00 PM,01/10/2016 09:03:15 PM,01/10/2016 09:03:18 PM,01/10/2016 09:14:08 PM,Code 2 Transport,01/10/2016 10:08:20 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160103172-76 -103180328,E09,10102045,Structure Fire,11/14/2010,11/14/2010,11/14/2010 07:02:34 PM,11/14/2010 07:02:34 PM,11/14/2010 07:02:42 PM,11/14/2010 07:03:28 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:36 PM,04/25/2016 02:07:35 PM,Fire,11/14/2010 07:06:46 PM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",103180328-E09 -111210048,79,11039829,Traffic Collision,05/01/2011,04/30/2011,05/01/2011 03:27:23 AM,05/01/2011 03:31:08 AM,05/01/2011 03:31:20 AM,05/01/2011 03:32:00 AM,05/01/2011 03:34:49 AM,05/01/2011 03:49:45 AM,05/01/2011 04:02:33 AM,Code 2 Transport,05/01/2011 04:28:50 AM,14TH ST/FOLSOM ST,SF,94103,B02,7,5216,2,2,2,true,,1,MEDIC,1,2,9,Mission,"(37.7685373884214, -122.415613781366)",111210048-79 -160562326,79,16022436,Medical Incident,02/25/2016,02/25/2016,02/25/2016 02:48:24 PM,02/25/2016 02:50:13 PM,02/25/2016 02:52:59 PM,02/25/2016 02:53:12 PM,02/25/2016 03:06:36 PM,02/25/2016 03:26:10 PM,02/25/2016 03:26:11 PM,Code 2 Transport,02/25/2016 04:12:52 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160562326-79 -160840685,71,16033276,Medical Incident,03/24/2016,03/23/2016,03/24/2016 07:52:49 AM,03/24/2016 07:53:10 AM,03/24/2016 07:56:06 AM,03/24/2016 07:56:15 AM,03/24/2016 08:24:22 AM,03/24/2016 08:24:24 AM,03/24/2016 08:36:57 AM,Code 2 Transport,03/24/2016 09:22:20 AM,200 Block of OAK ST,San Francisco,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7749769803202, -122.423378234109)",160840685-71 -160593116,57,16023692,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:12:13 PM,02/28/2016 09:13:02 PM,02/28/2016 09:14:12 PM,02/28/2016 09:14:38 PM,02/28/2016 09:22:13 PM,02/28/2016 09:44:47 PM,02/28/2016 10:04:08 PM,Code 2 Transport,02/28/2016 10:46:05 PM,300 Block of BERRY ST,San Francisco,94107,B03,8,2235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7731903116558, -122.396737748695)",160593116-57 -140740348,E06,14025151,Medical Incident,03/15/2014,03/15/2014,03/15/2014 06:42:30 PM,03/15/2014 06:42:49 PM,03/15/2014 06:45:39 PM,03/15/2014 06:46:49 PM,03/15/2014 06:48:49 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Code 2 Transport,03/15/2014 07:03:58 PM,4100 Block of 18TH ST,SAN FRANCISCO,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7608016861704, -122.435552336885)",140740348-E06 -112320365,T11,11076754,Structure Fire,08/20/2011,08/20/2011,08/20/2011 10:10:51 PM,08/20/2011 10:10:51 PM,08/20/2011 10:11:28 PM,08/20/2011 10:12:37 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/20/2011 10:13:40 PM,26TH ST/NOE ST,SF,94131,B06,11,5546,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7482294752655, -122.431556650558)",112320365-T11 -112020330,86,11066754,Medical Incident,07/21/2011,07/21/2011,07/21/2011 05:35:55 PM,07/21/2011 05:36:54 PM,07/21/2011 05:36:59 PM,07/21/2011 05:37:56 PM,07/21/2011 05:41:40 PM,07/21/2011 06:24:03 PM,07/21/2011 06:26:55 PM,Code 2 Transport,07/21/2011 06:59:34 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,1,MEDIC,2,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",112020330-86 -160800207,KM03,16031658,Medical Incident,03/20/2016,03/19/2016,03/20/2016 01:07:29 AM,03/20/2016 01:08:02 AM,03/20/2016 01:08:39 AM,03/20/2016 01:14:50 AM,03/20/2016 01:14:50 AM,03/20/2016 01:33:43 AM,03/20/2016 01:56:12 AM,Code 2 Transport,03/20/2016 02:22:26 AM,700 Block of VERMONT ST,San Francisco,94107,B10,29,2512,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7601922919616, -122.404141528417)",160800207-KM03 -113380059,E01,11111902,Alarms,12/04/2011,12/03/2011,12/04/2011 03:31:37 AM,12/04/2011 03:33:18 AM,12/04/2011 03:33:22 AM,12/04/2011 03:34:47 AM,12/04/2011 03:36:35 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/04/2011 03:40:13 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",113380059-E01 -131680193,77,13057050,Medical Incident,06/17/2013,06/17/2013,06/17/2013 02:11:28 PM,06/17/2013 02:12:20 PM,06/17/2013 02:12:39 PM,06/17/2013 02:12:53 PM,06/17/2013 02:14:05 PM,06/17/2013 02:31:58 PM,06/17/2013 02:46:09 PM,Code 2 Transport,06/17/2013 03:15:01 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",131680193-77 -160212622,56,16008454,Medical Incident,01/21/2016,01/21/2016,01/21/2016 04:14:32 PM,01/21/2016 04:15:36 PM,01/21/2016 04:16:19 PM,01/21/2016 04:16:45 PM,01/21/2016 04:18:41 PM,01/21/2016 04:39:27 PM,01/21/2016 04:59:38 PM,Code 2 Transport,01/21/2016 05:00:13 PM,600 Block of BUSH ST,San Francisco,94108,B01,2,1361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7902443778978, -122.407673839506)",160212622-56 -131250089,94,13042165,Structure Fire,05/05/2013,05/05/2013,05/05/2013 08:23:22 AM,05/05/2013 08:24:26 AM,05/05/2013 08:24:48 AM,05/05/2013 08:25:26 AM,05/05/2013 08:32:43 AM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 08:33:43 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,Alarm,1,MEDIC,8,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",131250089-94 -160431160,62,16017231,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:21:37 AM,02/12/2016 10:22:53 AM,02/12/2016 10:24:17 AM,02/12/2016 10:25:30 AM,02/12/2016 10:46:49 AM,02/12/2016 10:46:51 AM,02/12/2016 10:46:52 AM,Code 2 Transport,02/12/2016 11:31:16 AM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160431160-62 -102310288,96,10072788,Medical Incident,08/19/2010,08/19/2010,08/19/2010 06:09:00 PM,08/19/2010 06:10:44 PM,08/19/2010 06:10:52 PM,08/19/2010 06:11:21 PM,08/19/2010 06:12:22 PM,08/19/2010 06:32:19 PM,08/19/2010 06:43:03 PM,Code 2 Transport,08/19/2010 07:15:26 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102310288-96 -130750297,E11,13025131,Medical Incident,03/16/2013,03/16/2013,03/16/2013 07:11:03 PM,03/16/2013 07:11:50 PM,03/16/2013 07:12:15 PM,03/16/2013 07:13:45 PM,03/16/2013 07:14:40 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 07:27:23 PM,1300 Block of GUERRERO ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7495652201329, -122.422767132358)",130750297-E11 -160032249,76,16001267,Medical Incident,01/03/2016,01/03/2016,01/03/2016 04:51:26 PM,01/03/2016 04:52:28 PM,01/03/2016 04:55:16 PM,01/03/2016 04:56:30 PM,01/03/2016 05:10:55 PM,01/03/2016 05:21:21 PM,01/03/2016 05:47:27 PM,Code 2 Transport,01/03/2016 06:19:03 PM,0 Block of CONKLING ST,San Francisco,94124,B10,42,6363,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7356059585517, -122.401828773082)",160032249-76 -113080099,E01,11102256,Outside Fire,11/04/2011,11/04/2011,11/04/2011 09:15:28 AM,11/04/2011 09:15:28 AM,11/04/2011 09:17:54 AM,11/04/2011 09:18:59 AM,11/04/2011 09:23:04 AM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/04/2011 09:24:57 AM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",113080099-E01 -160884098,71,16035163,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:46:32 PM,03/28/2016 11:47:03 PM,03/28/2016 11:47:30 PM,03/28/2016 11:47:38 PM,03/28/2016 11:53:54 PM,03/29/2016 12:22:01 AM,03/29/2016 12:46:00 AM,Code 2 Transport,03/29/2016 01:14:41 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160884098-71 -121230132,KM15,12040781,Medical Incident,05/02/2012,05/02/2012,05/02/2012 10:38:27 AM,05/02/2012 10:39:53 AM,05/02/2012 10:41:21 AM,05/02/2012 10:42:00 AM,05/02/2012 10:50:45 AM,05/02/2012 11:00:36 AM,05/02/2012 11:12:05 AM,Code 2 Transport,05/02/2012 11:29:03 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",121230132-KM15 -111420353,E09,11047332,Structure Fire,05/22/2011,05/22/2011,05/22/2011 09:02:29 PM,05/22/2011 09:03:00 PM,05/22/2011 09:04:04 PM,05/22/2011 09:05:15 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,Other,05/22/2011 09:10:20 PM,0 Block of REBECCA LN,SF,94124,B10,25,6565,3,3,3,true,,1,ENGINE,9,10,10,Bayview Hunters Point,"(37.7375379622203, -122.382681028874)",111420353-E09 -102360035,E01,10074206,Medical Incident,08/24/2010,08/23/2010,08/24/2010 03:13:08 AM,08/24/2010 03:16:45 AM,08/24/2010 03:17:03 AM,08/24/2010 03:19:42 AM,08/24/2010 03:22:36 AM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 03:34:11 AM,ELLIS ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",102360035-E01 -110690247,E26,11022746,Medical Incident,03/10/2011,03/10/2011,03/10/2011 03:17:45 PM,03/10/2011 03:19:43 PM,03/10/2011 03:19:52 PM,03/10/2011 03:20:38 PM,03/10/2011 03:23:30 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 03:33:34 PM,0 Block of MOFFITT ST,SF,94131,B06,26,8111,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7371435128093, -122.432773119399)",110690247-E26 -102870140,77,10091471,Medical Incident,10/14/2010,10/14/2010,10/14/2010 10:24:01 AM,10/14/2010 10:26:28 AM,10/14/2010 10:26:50 AM,10/14/2010 10:27:03 AM,10/14/2010 10:31:47 AM,10/14/2010 10:52:19 AM,10/14/2010 11:04:31 AM,Code 2 Transport,10/14/2010 11:45:56 AM,600 Block of NATOMA ST,SF,94103,B03,1,2314,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",102870140-77 -122950213,T03,12097875,Alarms,10/21/2012,10/21/2012,10/21/2012 03:18:54 PM,10/21/2012 03:20:15 PM,10/21/2012 03:20:53 PM,10/21/2012 03:22:16 PM,10/21/2012 03:23:37 PM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,Other,10/21/2012 03:27:37 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",122950213-T03 -121190242,B06,12039526,Structure Fire,04/28/2012,04/28/2012,04/28/2012 04:19:55 PM,04/28/2012 04:20:28 PM,04/28/2012 04:20:49 PM,04/28/2012 04:21:39 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 04:26:44 PM,0 Block of BERTHA LN,SF,94124,B10,17,6631,3,3,3,false,Fire,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",121190242-B06 -133470317,E40,13117859,Structure Fire,12/13/2013,12/13/2013,12/13/2013 06:36:02 PM,12/13/2013 06:37:19 PM,12/13/2013 06:38:09 PM,12/13/2013 06:39:22 PM,12/13/2013 06:41:37 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 06:42:53 PM,1100 Block of KIRKHAM ST,SF,94122,B08,22,7365,3,3,3,true,Alarm,1,ENGINE,2,8,7,Inner Sunset,"(37.7599474160093, -122.473045360566)",133470317-E40 -131150193,E11,13038791,Structure Fire,04/25/2013,04/25/2013,04/25/2013 02:52:12 PM,04/25/2013 02:52:12 PM,04/25/2013 02:52:21 PM,04/25/2013 02:54:11 PM,04/25/2013 02:55:23 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Fire,04/25/2013 02:56:03 PM,3300 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7482858766932, -122.417044258324)",131150193-E11 -160150158,58,16005808,Medical Incident,01/15/2016,01/14/2016,01/15/2016 01:01:09 AM,01/15/2016 01:02:29 AM,01/15/2016 01:02:46 AM,01/15/2016 01:02:54 AM,01/15/2016 01:08:39 AM,01/15/2016 01:28:08 AM,01/15/2016 01:40:12 AM,Code 2 Transport,01/15/2016 02:28:52 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160150158-58 -120030399,68,12001231,Medical Incident,01/03/2012,01/03/2012,01/03/2012 11:18:36 PM,01/03/2012 11:18:36 PM,01/03/2012 11:18:56 PM,01/03/2012 11:19:03 PM,01/03/2012 11:23:32 PM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,Other,01/03/2012 11:28:00 PM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",120030399-68 -132660068,E01,13090153,Medical Incident,09/23/2013,09/22/2013,09/23/2013 07:08:08 AM,09/23/2013 07:09:58 AM,09/23/2013 07:10:24 AM,09/23/2013 07:14:54 AM,09/23/2013 07:15:01 AM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/23/2013 07:32:56 AM,200 Block of POWELL ST,SF,94102,B01,1,1363,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",132660068-E01 -130690336,94,13023179,Medical Incident,03/10/2013,03/10/2013,03/10/2013 11:30:56 PM,03/10/2013 11:33:54 PM,03/10/2013 11:34:24 PM,03/10/2013 11:34:30 PM,03/10/2013 11:47:37 PM,03/11/2013 12:03:08 AM,03/11/2013 12:24:45 AM,Code 2 Transport,03/11/2013 12:49:10 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",130690336-94 -110870240,E11,11028764,Medical Incident,03/28/2011,03/28/2011,03/28/2011 02:50:34 PM,03/28/2011 02:51:13 PM,03/28/2011 02:51:42 PM,03/28/2011 02:52:48 PM,03/28/2011 02:54:31 PM,04/25/2016 02:05:24 PM,04/25/2016 02:05:24 PM,Unable to Locate,03/28/2011 02:59:28 PM,2800 Block of MISSION ST,SF,94110,B06,11,5529,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",110870240-E11 -160711127,71,16028178,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:23:03 AM,03/11/2016 10:23:03 AM,03/11/2016 10:24:44 AM,03/11/2016 10:24:53 AM,03/11/2016 10:52:41 AM,03/11/2016 11:09:19 AM,03/11/2016 11:18:28 AM,Code 2 Transport,03/11/2016 11:51:07 AM,2800 Block of WEBSTER ST,San Francisco,94123,B04,16,3463,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7968236106157, -122.433820658901)",160711127-71 -111050169,E22,11034760,Medical Incident,04/15/2011,04/15/2011,04/15/2011 01:13:44 PM,04/15/2011 01:14:29 PM,04/15/2011 01:14:46 PM,04/15/2011 01:15:33 PM,04/15/2011 01:17:27 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/15/2011 01:22:24 PM,1400 Block of 20TH AVE,SF,94122,B08,22,7426,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7607159070903, -122.478068414702)",111050169-E22 -111150336,E41,11038069,Medical Incident,04/25/2011,04/25/2011,04/25/2011 08:05:29 PM,04/25/2011 08:06:37 PM,04/25/2011 08:07:03 PM,04/25/2011 08:07:56 PM,04/25/2011 08:09:15 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 08:31:07 PM,1300 Block of JONES ST,SF,94109,B01,41,1466,2,2,2,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",111150336-E41 -120340289,T12,12011354,Odor (Strange / Unknown),02/03/2012,02/03/2012,02/03/2012 05:56:46 PM,02/03/2012 05:59:52 PM,02/03/2012 06:00:06 PM,02/03/2012 06:01:38 PM,02/03/2012 06:06:34 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/03/2012 06:07:09 PM,CABRILLO ST/4TH AV,SF,94118,B07,31,7121,3,3,3,false,Alarm,1,TRUCK,3,7,1,Inner Richmond,"(37.7754673991123, -122.461733426921)",120340289-T12 -111960312,79,11064820,Medical Incident,07/15/2011,07/15/2011,07/15/2011 08:39:19 PM,07/15/2011 08:40:52 PM,07/15/2011 08:47:05 PM,07/15/2011 08:47:26 PM,07/15/2011 08:51:28 PM,07/15/2011 09:09:08 PM,07/15/2011 09:20:43 PM,Code 2 Transport,07/15/2011 09:29:06 PM,0 Block of FELL ST,SF,94102,B02,36,3111,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7765490444685, -122.418502503449)",111960312-79 -132530327,E35,13085609,Alarms,09/10/2013,09/10/2013,09/10/2013 08:01:15 PM,09/10/2013 08:02:11 PM,09/10/2013 08:03:08 PM,09/10/2013 08:03:52 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 08:05:39 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,true,Alarm,1,ENGINE,3,1,3,North Beach,"(37.8069201392161, -122.407170160416)",132530327-E35 -110610222,84,11020028,Medical Incident,03/02/2011,03/02/2011,03/02/2011 01:41:33 PM,03/02/2011 01:43:49 PM,03/02/2011 01:44:15 PM,03/02/2011 01:55:13 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 02:02:01 PM,500 Block of MARKET ST,SF,94105,B03,13,2143,2,2,2,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",110610222-84 -112980285,E03,11098935,Medical Incident,10/25/2011,10/25/2011,10/25/2011 05:05:07 PM,10/25/2011 05:06:30 PM,10/25/2011 05:07:17 PM,10/25/2011 05:09:03 PM,10/25/2011 05:10:37 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 05:11:46 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",112980285-E03 -160240104,53,16009387,Medical Incident,01/24/2016,01/23/2016,01/24/2016 12:28:09 AM,01/24/2016 12:32:02 AM,01/24/2016 12:32:09 AM,01/24/2016 12:40:48 AM,01/24/2016 12:50:24 AM,01/24/2016 01:01:50 AM,01/24/2016 01:11:08 AM,Code 2 Transport,01/24/2016 01:59:36 AM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8056674488919, -122.412766371216)",160240104-53 -160082524,74,16003312,Medical Incident,01/08/2016,01/08/2016,01/08/2016 04:08:06 PM,01/08/2016 04:08:43 PM,01/08/2016 04:09:24 PM,01/08/2016 04:09:46 PM,01/08/2016 04:13:40 PM,01/08/2016 04:29:23 PM,01/08/2016 04:37:48 PM,Code 2 Transport,01/08/2016 05:16:26 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160082524-74 -113650255,T01,11121335,Structure Fire,12/31/2011,12/31/2011,12/31/2011 05:08:39 PM,12/31/2011 05:08:39 PM,12/31/2011 05:08:59 PM,12/31/2011 05:09:51 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 05:12:04 PM,8TH ST/MISSION ST,SF,94103,B02,36,2318,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",113650255-T01 -103360144,AM04,10107453,Medical Incident,12/02/2010,12/02/2010,12/02/2010 11:09:59 AM,12/02/2010 11:10:55 AM,12/02/2010 11:11:12 AM,12/02/2010 11:11:56 AM,12/02/2010 11:15:14 AM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Unable to Locate,12/02/2010 11:19:04 AM,HYDE ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",103360144-AM04 -130140187,B01,13004777,Structure Fire,01/14/2013,01/14/2013,01/14/2013 12:21:46 PM,01/14/2013 12:22:13 PM,01/14/2013 12:23:07 PM,01/14/2013 12:24:22 PM,01/14/2013 12:27:04 PM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,Other,01/14/2013 12:29:55 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,false,Alarm,1,CHIEF,7,4,3,Nob Hill,"(37.7882286861562, -122.415995198292)",130140187-B01 -160750363,88,16029577,Traffic Collision,03/15/2016,03/14/2016,03/15/2016 04:44:36 AM,03/15/2016 04:45:07 AM,03/15/2016 04:45:49 AM,03/15/2016 04:46:16 AM,03/15/2016 04:52:51 AM,03/15/2016 05:06:57 AM,03/15/2016 05:15:18 AM,Code 2 Transport,03/15/2016 06:01:06 AM,BRIDGEVIEW DR/TOPEKA AV,San Francisco,94124,B10,42,6453,3,A,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332781171067, -122.397689471749)",160750363-88 -123120291,E17,12103918,Gas Leak (Natural and LP Gases),11/07/2012,11/07/2012,11/07/2012 06:11:50 PM,11/07/2012 06:12:42 PM,11/07/2012 06:12:56 PM,11/07/2012 06:13:19 PM,11/07/2012 06:16:08 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Fire,11/07/2012 06:33:13 PM,100 Block of NAUTILUS DR,SF,94124,B10,17,6665,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.728115531126, -122.372708921939)",123120291-E17 -110780158,82,11025650,Medical Incident,03/19/2011,03/19/2011,03/19/2011 12:33:21 PM,03/19/2011 12:34:06 PM,03/19/2011 12:34:31 PM,03/19/2011 12:34:52 PM,03/19/2011 12:44:28 PM,03/19/2011 01:26:02 PM,03/19/2011 01:41:51 PM,Code 2 Transport,03/19/2011 02:15:07 PM,100 Block of RANDOLPH ST,SF,94132,B09,33,8415,2,2,2,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7142424042046, -122.46394955837)",110780158-82 -130960255,E40,13032238,Medical Incident,04/06/2013,04/06/2013,04/06/2013 04:14:16 PM,04/06/2013 04:15:14 PM,04/06/2013 04:16:23 PM,04/06/2013 04:17:08 PM,04/06/2013 04:18:30 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 04:35:03 PM,1900 Block of 18TH AVE,SF,94116,B08,40,7421,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.751487490245, -122.475280555805)",130960255-E40 -131450017,AM18,13049051,Medical Incident,05/25/2013,05/24/2013,05/25/2013 12:46:53 AM,05/25/2013 12:47:59 AM,05/25/2013 12:48:53 AM,05/25/2013 12:49:11 AM,05/25/2013 12:54:20 AM,05/25/2013 01:03:03 AM,05/25/2013 01:24:41 AM,Other,05/25/2013 01:55:53 AM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",131450017-AM18 -160092691,KM04,16003739,Medical Incident,01/09/2016,01/09/2016,01/09/2016 05:42:04 PM,01/09/2016 05:43:23 PM,01/09/2016 05:43:36 PM,01/09/2016 05:44:02 PM,01/09/2016 05:52:49 PM,01/09/2016 06:25:41 PM,01/09/2016 06:57:48 PM,Code 2 Transport,01/09/2016 07:41:38 PM,800 Block of TREAT AVE,San Francisco,94110,B06,7,545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7565605303297, -122.413439435953)",160092691-KM04 -122760273,54,12091194,Medical Incident,10/02/2012,10/02/2012,10/02/2012 02:51:20 PM,10/02/2012 02:52:01 PM,10/02/2012 02:52:19 PM,10/02/2012 02:52:42 PM,10/02/2012 02:56:41 PM,10/02/2012 03:07:45 PM,10/02/2012 03:35:34 PM,Code 3 Transport,10/02/2012 04:25:05 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7969072647197, -122.407234390471)",122760273-54 -111120236,E21,11037041,Electrical Hazard,04/22/2011,04/22/2011,04/22/2011 03:04:11 PM,04/22/2011 03:06:28 PM,04/22/2011 03:07:41 PM,04/22/2011 03:08:40 PM,04/22/2011 03:10:41 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Fire,04/22/2011 03:49:28 PM,700 Block of MASONIC AVE,SF,94117,B05,21,4464,3,3,3,false,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7744120636071, -122.446119399788)",111120236-E21 -160142900,75,16005678,Medical Incident,01/14/2016,01/14/2016,01/14/2016 05:49:02 PM,01/14/2016 05:49:02 PM,01/14/2016 05:49:48 PM,01/14/2016 05:49:56 PM,01/14/2016 06:11:24 PM,01/14/2016 06:16:41 PM,01/14/2016 06:44:12 PM,Code 2 Transport,01/14/2016 07:16:49 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",160142900-75 -122010042,82,12066699,Medical Incident,07/19/2012,07/18/2012,07/19/2012 04:25:33 AM,07/19/2012 04:25:56 AM,07/19/2012 04:26:12 AM,07/19/2012 04:26:27 AM,07/19/2012 04:35:10 AM,07/19/2012 04:47:05 AM,07/19/2012 04:53:53 AM,Code 2 Transport,07/19/2012 05:14:20 AM,300 Block of KANSAS ST,SF,94103,B02,29,2422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission Bay,"(37.7653660705573, -122.403654060689)",122010042-82 -112370349,T01,11078332,Alarms,08/25/2011,08/25/2011,08/25/2011 07:41:28 PM,08/25/2011 07:42:25 PM,08/25/2011 07:42:39 PM,08/25/2011 07:44:00 PM,08/25/2011 07:50:53 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 07:51:10 PM,1000 Block of MARKET ST,SF,94103,B03,1,1454,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7812876870909, -122.411318055371)",112370349-T01 -140370107,T12,14012442,Other,02/06/2014,02/06/2014,02/06/2014 09:12:30 AM,02/06/2014 09:12:49 AM,02/06/2014 09:12:58 AM,02/06/2014 09:14:25 AM,02/06/2014 09:18:55 AM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 09:32:44 AM,500 Block of PARNASSUS AVE,SF,94122,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",140370107-T12 -112670274,KM11,11088303,Traffic Collision,09/24/2011,09/24/2011,09/24/2011 04:50:21 PM,09/24/2011 04:51:24 PM,09/24/2011 04:51:34 PM,09/24/2011 04:52:43 PM,09/24/2011 05:01:31 PM,09/24/2011 05:09:48 PM,09/24/2011 05:32:19 PM,Code 2 Transport,09/24/2011 05:45:43 PM,JEFFERSON ST/HYDE ST,SF,94109,B03,28,1616,3,3,3,false,,1,PRIVATE,2,1,2,Russian Hill,"(37.8075901055183, -122.420743268989)",112670274-KM11 -140390400,E39,14013378,Medical Incident,02/08/2014,02/08/2014,02/08/2014 10:26:39 PM,02/08/2014 10:27:55 PM,02/08/2014 10:28:41 PM,02/08/2014 10:30:48 PM,02/08/2014 10:33:43 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/08/2014 10:55:04 PM,0 Block of SAN LORENZO WAY,SF,94127,B08,39,8565,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7389777646184, -122.464255454182)",140390400-E39 -102540303,T08,10080393,Structure Fire,09/11/2010,09/11/2010,09/11/2010 06:23:42 PM,09/11/2010 06:24:12 PM,09/11/2010 06:24:38 PM,09/11/2010 06:25:42 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 06:29:42 PM,600 Block of CAROLINA ST,SF,94107,B10,37,2511,3,3,3,false,,1,TRUCK,10,10,10,Potrero Hill,"(37.7599841937391, -122.400091939843)",102540303-T08 -160691448,KM06,16027444,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:35:59 AM,03/09/2016 11:37:45 AM,03/09/2016 11:37:51 AM,03/09/2016 11:38:38 AM,03/09/2016 11:43:34 AM,03/09/2016 11:50:35 AM,03/09/2016 12:09:01 PM,Code 2 Transport,03/09/2016 12:26:47 PM,GOLDEN GATE AV/HYDE ST,San Francisco,94102,B02,1,1546,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",160691448-KM06 -112350324,94,11077665,Medical Incident,08/23/2011,08/23/2011,08/23/2011 06:19:18 PM,08/23/2011 06:20:11 PM,08/23/2011 06:21:04 PM,08/23/2011 06:21:35 PM,08/23/2011 06:29:10 PM,08/23/2011 06:52:08 PM,08/23/2011 07:07:49 PM,Code 2 Transport,08/23/2011 07:38:55 PM,4700 Block of BALBOA ST,SF,94121,B07,34,7312,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7752070093177, -122.50963436518)",112350324-94 -160130308,AM24,16005038,Medical Incident,01/13/2016,01/12/2016,01/13/2016 03:43:07 AM,01/13/2016 03:44:39 AM,01/13/2016 03:45:31 AM,01/13/2016 03:46:02 AM,01/13/2016 03:51:20 AM,01/13/2016 04:00:40 AM,01/13/2016 04:11:18 AM,Code 2 Transport,01/13/2016 04:25:10 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160130308-AM24 -140240436,E39,14008395,Traffic Collision,01/24/2014,01/24/2014,01/24/2014 11:18:30 PM,01/24/2014 11:19:19 PM,01/24/2014 11:20:55 PM,04/25/2016 01:48:33 PM,01/24/2014 11:23:45 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/24/2014 11:29:01 PM,PORTOLA DR/14TH AV,SF,94127,B08,39,8562,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7374171488633, -122.468309607404)",140240436-E39 -122580048,68,12085174,Medical Incident,09/14/2012,09/13/2012,09/14/2012 05:09:29 AM,09/14/2012 05:10:32 AM,09/14/2012 05:10:44 AM,09/14/2012 05:13:01 AM,09/14/2012 05:16:00 AM,09/14/2012 05:38:32 AM,09/14/2012 05:49:36 AM,Code 2 Transport,09/14/2012 06:17:05 AM,500 Block of 27TH ST,SF,94131,B06,11,5553,3,3,3,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7464538550572, -122.432847009979)",122580048-68 -122710084,E23,12089359,Traffic Collision,09/27/2012,09/27/2012,09/27/2012 09:16:59 AM,09/27/2012 09:18:31 AM,09/27/2012 09:18:40 AM,09/27/2012 09:21:47 AM,09/27/2012 09:26:01 AM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/27/2012 10:36:45 AM,QUINTARA ST/43RD AV,SF,94116,B08,23,7645,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7475097223048, -122.501798056136)",122710084-E23 -122590234,E11,12085666,Traffic Collision,09/15/2012,09/15/2012,09/15/2012 05:00:09 PM,09/15/2012 05:00:09 PM,09/15/2012 05:00:40 PM,09/15/2012 05:01:54 PM,09/15/2012 05:03:59 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/15/2012 06:00:52 PM,MISSION ST/PRECITA AV,SF,94110,B06,11,5624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7467751413326, -122.419121300777)",122590234-E11 -111380183,B08,11045876,Traffic Collision,05/18/2011,05/18/2011,05/18/2011 01:20:15 PM,05/18/2011 01:22:03 PM,05/18/2011 01:22:26 PM,05/18/2011 01:23:42 PM,05/18/2011 01:32:47 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 02:08:38 PM,SKYLINE BL/FORT FUNSTON RD,SF,94132,B08,19,8772,3,3,3,false,,1,CHIEF,4,8,7,Lakeshore,"(37.7136941259081, -122.498357018484)",111380183-B08 -121880156,T15,12062610,Structure Fire,07/06/2012,07/06/2012,07/06/2012 11:46:11 AM,07/06/2012 11:47:45 AM,07/06/2012 11:48:12 AM,07/06/2012 11:48:37 AM,07/06/2012 11:49:33 AM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/06/2012 12:04:06 PM,0 Block of OCEAN AVE,SF,94112,B09,43,6121,3,3,3,false,Fire,1,TRUCK,1,9,11,Outer Mission,"(37.723809628217, -122.436744444673)",121880156-T15 -110720033,T01,11023593,Medical Incident,03/13/2011,03/12/2011,03/13/2011 01:45:00 AM,03/13/2011 01:47:15 AM,03/13/2011 01:50:35 AM,03/13/2011 01:52:09 AM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/13/2011 01:55:43 AM,MARKET ST/CYRIL MAGNIN ST,SF,94103,B03,1,1366,3,3,3,false,,1,TRUCK,5,3,6,South of Market,"(37.7839914857614, -122.408066547804)",110720033-T01 -160502498,55,16020162,Medical Incident,02/19/2016,02/19/2016,02/19/2016 04:23:03 PM,02/19/2016 04:24:57 PM,02/19/2016 04:25:24 PM,02/19/2016 04:25:34 PM,02/19/2016 04:32:33 PM,02/19/2016 05:46:22 PM,02/19/2016 05:46:22 PM,Code 3 Transport,02/19/2016 06:01:15 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160502498-55 -130800122,E35,13026692,Alarms,03/21/2013,03/21/2013,03/21/2013 10:05:16 AM,03/21/2013 10:06:45 AM,03/21/2013 10:08:27 AM,03/21/2013 10:09:12 AM,03/21/2013 10:13:12 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 10:38:03 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,Alarm,1,ENGINE,1,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",130800122-E35 -121410238,AM30,12046890,Medical Incident,05/20/2012,05/20/2012,05/20/2012 02:16:14 PM,05/20/2012 02:17:21 PM,05/20/2012 02:18:17 PM,05/20/2012 02:19:24 PM,05/20/2012 02:20:16 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,No Merit,05/20/2012 02:27:50 PM,OAK ST/STANYAN ST,SF,94117,B05,12,4554,3,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Golden Gate Park,"(37.7714283936706, -122.453979521283)",121410238-AM30 -130560271,E43,13018943,Medical Incident,02/25/2013,02/25/2013,02/25/2013 05:03:53 PM,02/25/2013 05:04:08 PM,02/25/2013 05:04:22 PM,02/25/2013 05:05:49 PM,02/25/2013 05:09:30 PM,04/25/2016 01:54:07 PM,04/25/2016 01:54:07 PM,Other,02/25/2013 05:09:49 PM,100 Block of ELLINGTON AVE,SF,94112,B09,43,8334,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7145087398157, -122.44369163229)",130560271-E43 -103520069,T02,10112877,Structure Fire,12/18/2010,12/17/2010,12/18/2010 07:17:54 AM,12/18/2010 07:17:54 AM,12/18/2010 07:18:04 AM,12/18/2010 07:18:43 AM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,Other,12/18/2010 07:25:54 AM,STOCKTON ST/PACIFIC AV,SF,94133,B01,2,1332,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7967039027671, -122.40843088815)",103520069-T02 -120680348,E01,12022719,Medical Incident,03/08/2012,03/08/2012,03/08/2012 10:04:07 PM,03/08/2012 10:05:19 PM,03/08/2012 10:06:05 PM,03/08/2012 10:07:35 PM,03/08/2012 10:09:48 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/08/2012 11:16:30 PM,500 Block of NATOMA ST,SF,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7788157426427, -122.409325210496)",120680348-E01 -133190288,E05,13108468,Medical Incident,11/15/2013,11/15/2013,11/15/2013 04:45:06 PM,11/15/2013 04:45:16 PM,11/15/2013 04:45:55 PM,11/15/2013 04:47:09 PM,11/15/2013 04:50:19 PM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 04:58:32 PM,PRESIDIO AV/SUTTER ST,SF,94115,B05,10,4366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,2,Presidio Heights,"(37.7844383111695, -122.446247221402)",133190288-E05 -120450112,E36,12014914,Medical Incident,02/14/2012,02/14/2012,02/14/2012 10:08:03 AM,02/14/2012 10:08:38 AM,02/14/2012 10:09:10 AM,02/14/2012 10:09:51 AM,02/14/2012 10:11:30 AM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 10:15:49 AM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",120450112-E36 -160770324,70,16030434,Medical Incident,03/17/2016,03/16/2016,03/17/2016 03:28:05 AM,03/17/2016 03:30:18 AM,03/17/2016 03:31:38 AM,03/17/2016 03:31:47 AM,03/17/2016 03:45:18 AM,03/17/2016 04:16:56 AM,03/17/2016 04:42:53 AM,Code 2 Transport,03/17/2016 05:02:21 AM,1100 Block of 4TH ST,San Francisco,94158,B03,4,2226,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7731448011713, -122.391472934142)",160770324-70 -160793874,61,16031587,Medical Incident,03/19/2016,03/19/2016,03/19/2016 09:24:48 PM,03/19/2016 09:27:25 PM,03/19/2016 09:28:10 PM,03/19/2016 09:28:28 PM,03/19/2016 09:34:50 PM,03/19/2016 10:04:24 PM,03/19/2016 10:21:48 PM,Code 2 Transport,03/19/2016 10:57:34 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160793874-61 -160051201,67,16001946,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:39:09 AM,01/05/2016 10:42:00 AM,01/05/2016 10:43:03 AM,01/05/2016 10:44:06 AM,01/05/2016 11:03:36 AM,01/05/2016 11:19:26 AM,01/05/2016 11:22:29 AM,Code 2 Transport,01/05/2016 12:16:34 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160051201-67 -121990231,KM01,12066163,Medical Incident,07/17/2012,07/17/2012,07/17/2012 02:46:29 PM,07/17/2012 02:48:02 PM,07/17/2012 02:48:28 PM,07/17/2012 02:49:09 PM,07/17/2012 02:56:14 PM,07/17/2012 03:23:05 PM,07/17/2012 03:37:58 PM,Code 3 Transport,07/17/2012 04:28:13 PM,2600 Block of OCEAN AVE,SF,94132,B08,19,8452,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7318468298435, -122.473738730856)",121990231-KM01 -121960001,75,12065047,Medical Incident,07/14/2012,07/13/2012,07/14/2012 12:08:23 AM,07/14/2012 12:08:41 AM,07/14/2012 12:09:29 AM,07/14/2012 12:09:48 AM,07/14/2012 12:18:13 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Patient Declined Transport,07/14/2012 12:37:01 AM,1200 Block of FITZGERALD AVE,SF,94124,B10,17,6614,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7214606647015, -122.392279417619)",121960001-75 -130270107,KM09,13009242,Medical Incident,01/27/2013,01/27/2013,01/27/2013 08:58:10 AM,01/27/2013 08:59:37 AM,01/27/2013 09:00:04 AM,01/27/2013 09:00:40 AM,01/27/2013 09:05:38 AM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,No Merit,01/27/2013 09:10:19 AM,600 Block of OCTAVIA ST,SF,94102,B02,36,3315,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7778281589189, -122.424924726831)",130270107-KM09 -131130189,E10,13038100,Medical Incident,04/23/2013,04/23/2013,04/23/2013 01:14:47 PM,04/23/2013 01:15:48 PM,04/23/2013 01:16:07 PM,04/23/2013 01:17:30 PM,04/23/2013 01:21:25 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 01:37:18 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",131130189-E10 -160553921,52,16022165,Medical Incident,02/24/2016,02/24/2016,02/24/2016 09:33:41 PM,02/24/2016 09:34:53 PM,02/24/2016 09:35:13 PM,02/24/2016 09:35:22 PM,02/24/2016 09:43:02 PM,02/24/2016 09:54:17 PM,02/24/2016 10:14:10 PM,Code 2 Transport,02/24/2016 10:56:51 PM,800 Block of FELL ST,San Francisco,94117,B05,5,3532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7748519703665, -122.431841130973)",160553921-52 -112600281,57,11085827,Medical Incident,09/17/2011,09/17/2011,09/17/2011 04:12:54 PM,09/17/2011 04:13:31 PM,09/17/2011 04:13:45 PM,09/17/2011 04:14:05 PM,09/17/2011 04:20:15 PM,09/17/2011 04:28:45 PM,09/17/2011 04:59:20 PM,Code 2 Transport,09/17/2011 05:34:30 PM,100 Block of HIGHLAND AVE,SF,94110,B06,32,5646,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7372540256563, -122.422102908674)",112600281-57 -122320025,66,12076809,Medical Incident,08/19/2012,08/18/2012,08/19/2012 01:17:28 AM,08/19/2012 01:20:28 AM,08/19/2012 01:21:22 AM,08/19/2012 01:21:29 AM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,04/25/2016 01:57:10 PM,CHESTNUT ST/FILLMORE ST,SF,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.800814143599, -122.436273910168)",122320025-66 -120780222,T16,12025907,Citizen Assist / Service Call,03/18/2012,03/18/2012,03/18/2012 01:14:29 PM,03/18/2012 01:14:41 PM,03/18/2012 01:14:52 PM,03/18/2012 01:16:03 PM,03/18/2012 01:18:50 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/18/2012 01:22:56 PM,2300 Block of BAY ST,SF,94123,B04,16,4315,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.8015761215605, -122.445722371236)",120780222-T16 -103310050,E03,10105855,Medical Incident,11/27/2010,11/26/2010,11/27/2010 03:54:06 AM,11/27/2010 03:56:17 AM,11/27/2010 03:56:46 AM,11/27/2010 03:58:40 AM,11/27/2010 04:05:22 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 04:35:29 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",103310050-E03 -122850356,E17,12094421,Medical Incident,10/11/2012,10/11/2012,10/11/2012 09:21:21 PM,10/11/2012 09:23:39 PM,10/11/2012 09:24:07 PM,10/11/2012 09:25:28 PM,10/11/2012 09:27:27 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Patient Declined Transport,10/11/2012 09:39:40 PM,1300 Block of EGBERT AVE,SF,94124,B10,17,6615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7221736000048, -122.391637312216)",122850356-E17 -133360198,T02,13113900,Structure Fire,12/02/2013,12/02/2013,12/02/2013 01:51:11 PM,12/02/2013 01:51:11 PM,12/02/2013 01:52:18 PM,12/02/2013 01:53:30 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/02/2013 01:55:08 PM,GRANT AV/JACKSON ST,SF,94133,B01,2,1312,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",133360198-T02 -160080251,52,16003072,Medical Incident,01/08/2016,01/07/2016,01/08/2016 02:28:06 AM,01/08/2016 02:30:41 AM,01/08/2016 02:31:11 AM,01/08/2016 02:31:26 AM,01/08/2016 02:38:34 AM,01/08/2016 02:46:28 AM,01/08/2016 02:59:23 AM,Code 2 Transport,01/08/2016 03:27:06 AM,1600 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",160080251-52 -130260186,KM14,13008983,Medical Incident,01/26/2013,01/26/2013,01/26/2013 01:11:37 PM,01/26/2013 01:12:11 PM,01/26/2013 01:12:23 PM,01/26/2013 01:12:57 PM,01/26/2013 01:15:40 PM,01/26/2013 01:39:37 PM,01/26/2013 02:15:23 PM,Code 2 Transport,01/26/2013 02:15:33 PM,22ND ST/VALENCIA ST,SF,94110,B06,7,5456,3,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Mission,"(37.7552947827711, -122.420964094826)",130260186-KM14 -110230243,RS1,11007644,Medical Incident,01/23/2011,01/23/2011,01/23/2011 05:34:58 PM,01/23/2011 05:36:05 PM,01/23/2011 05:36:35 PM,01/23/2011 05:37:33 PM,01/23/2011 05:40:35 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/23/2011 05:42:48 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",110230243-RS1 -160910937,57,16036007,Medical Incident,03/31/2016,03/31/2016,03/31/2016 09:25:18 AM,03/31/2016 09:25:23 AM,03/31/2016 09:33:01 AM,03/31/2016 09:33:01 AM,03/31/2016 09:33:01 AM,03/31/2016 09:43:28 AM,03/31/2016 10:18:53 AM,Code 2 Transport,03/31/2016 10:32:14 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",160910937-57 -103020286,E43,10096578,Medical Incident,10/29/2010,10/29/2010,10/29/2010 08:18:05 PM,10/29/2010 08:19:03 PM,10/29/2010 08:19:36 PM,10/29/2010 08:20:37 PM,10/29/2010 08:23:02 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/29/2010 08:33:17 PM,200 Block of MADRID ST,SF,94112,B09,43,6133,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7254752089817, -122.429807319916)",103020286-E43 -131940278,RC3,13066038,Medical Incident,07/13/2013,07/13/2013,07/13/2013 06:52:18 PM,07/13/2013 06:53:44 PM,07/13/2013 06:54:05 PM,07/13/2013 06:54:23 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 06:58:35 PM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,None,3,North Beach,"(37.8081679785862, -122.416634717802)",131940278-RC3 -160441819,KM02,16017708,Medical Incident,02/13/2016,02/13/2016,02/13/2016 01:47:39 PM,02/13/2016 01:49:00 PM,02/13/2016 01:50:08 PM,02/13/2016 01:50:08 PM,02/13/2016 01:53:05 PM,02/13/2016 02:18:26 PM,02/13/2016 02:44:30 PM,Code 3 Transport,02/13/2016 03:35:36 PM,TURK ST/TAYLOR ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",160441819-KM02 -130880077,T03,13029285,Alarms,03/29/2013,03/29/2013,03/29/2013 08:03:58 AM,03/29/2013 08:03:58 AM,03/29/2013 08:04:38 AM,03/29/2013 08:06:49 AM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 08:09:29 AM,TAYLOR ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",130880077-T03 -112490332,T08,11082245,Structure Fire,09/06/2011,09/06/2011,09/06/2011 07:10:01 PM,09/06/2011 07:10:01 PM,09/06/2011 07:10:58 PM,04/25/2016 02:02:48 PM,09/06/2011 07:14:22 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 07:14:40 PM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",112490332-T08 -133580358,T07,13121873,Alarms,12/24/2013,12/24/2013,12/24/2013 10:41:50 PM,12/24/2013 10:43:43 PM,12/24/2013 10:43:49 PM,12/24/2013 10:45:51 PM,12/24/2013 10:47:27 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/24/2013 10:56:46 PM,900 Block of TREAT AVE,SF,94110,B06,7,5477,3,3,3,true,Alarm,1,TRUCK,2,6,9,Mission,"(37.7549694072958, -122.413148488063)",133580358-T07 -160490070,65,16019565,Medical Incident,02/18/2016,02/17/2016,02/18/2016 12:30:39 AM,02/18/2016 12:37:46 AM,02/18/2016 12:37:51 AM,02/18/2016 12:38:31 AM,02/18/2016 12:50:51 AM,02/18/2016 01:01:30 AM,02/18/2016 01:16:13 AM,Code 2 Transport,02/18/2016 01:43:57 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160490070-65 -160231407,63,16009123,Medical Incident,01/23/2016,01/23/2016,01/23/2016 11:36:05 AM,01/23/2016 11:38:40 AM,01/23/2016 11:39:14 AM,01/23/2016 11:39:27 AM,01/23/2016 11:40:30 AM,01/23/2016 11:55:41 AM,01/23/2016 12:14:07 PM,Code 2 Transport,01/23/2016 12:52:51 PM,9TH ST/MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",160231407-63 -102750002,E33,10087206,Medical Incident,10/02/2010,10/01/2010,10/02/2010 12:01:08 AM,10/02/2010 12:02:16 AM,10/02/2010 12:02:45 AM,10/02/2010 12:04:11 AM,10/02/2010 12:06:52 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 12:17:54 AM,100 Block of GOETHE ST,SF,94112,B09,33,8364,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7090126221049, -122.45976907124)",102750002-E33 -112320037,KM07,11076469,Traffic Collision,08/20/2011,08/19/2011,08/20/2011 03:27:37 AM,08/20/2011 03:33:38 AM,08/20/2011 03:34:41 AM,08/20/2011 03:35:23 AM,08/20/2011 03:50:13 AM,08/20/2011 04:32:30 AM,08/20/2011 04:38:39 AM,Code 2 Transport,08/20/2011 05:12:11 AM,300 Block of DIVISION ST,SF,94103,B02,29,2345,2,3,3,false,,1,PRIVATE,1,2,10,Mission,"(37.7690697135105, -122.409528901583)",112320037-KM07 -160610379,AM20,16024177,Medical Incident,03/01/2016,02/29/2016,03/01/2016 05:12:09 AM,03/01/2016 05:13:51 AM,03/01/2016 05:14:41 AM,03/01/2016 05:15:20 AM,03/01/2016 05:20:58 AM,03/01/2016 05:33:07 AM,03/01/2016 05:44:42 AM,Code 2 Transport,03/01/2016 05:44:52 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",160610379-AM20 -131000200,82,13033612,Traffic Collision,04/10/2013,04/10/2013,04/10/2013 12:49:28 PM,04/10/2013 12:50:10 PM,04/10/2013 12:50:27 PM,04/10/2013 12:50:34 PM,04/10/2013 12:57:31 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/10/2013 12:59:16 PM,900 Block of BRANNAN ST,SF,94103,B03,29,2330,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7707119826907, -122.406261949572)",131000200-82 -112460028,81,11080984,Medical Incident,09/03/2011,09/02/2011,09/03/2011 01:34:43 AM,09/03/2011 01:35:29 AM,09/03/2011 01:36:29 AM,09/03/2011 01:36:54 AM,09/03/2011 01:44:40 AM,09/03/2011 02:05:49 AM,09/03/2011 02:15:42 AM,Other,09/03/2011 02:47:05 AM,2500 Block of MASON ST,SF,94133,B01,28,1425,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.807027306345, -122.413812485246)",112460028-81 -120450221,B06,12015000,Alarms,02/14/2012,02/14/2012,02/14/2012 02:37:24 PM,02/14/2012 02:38:04 PM,02/14/2012 02:38:19 PM,02/14/2012 02:39:58 PM,02/14/2012 02:41:16 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Fire,02/14/2012 02:44:34 PM,0 Block of ARLINGTON ST,SF,94131,B06,32,8112,3,3,3,false,Alarm,1,CHIEF,1,6,8,Glen Park,"(37.7394484132871, -122.424741266112)",120450221-B06 -130580161,KM14,13019430,Medical Incident,02/27/2013,02/27/2013,02/27/2013 11:42:42 AM,02/27/2013 11:44:56 AM,02/27/2013 11:45:26 AM,02/27/2013 11:46:11 AM,04/25/2016 01:54:05 PM,02/27/2013 12:09:14 PM,04/25/2016 01:54:05 PM,Code 2 Transport,02/27/2013 01:00:51 PM,200 Block of 21ST AVE,SF,94121,B07,14,7173,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",130580161-KM14 -131710291,E06,13058145,Transfer,06/20/2013,06/20/2013,06/20/2013 05:54:23 PM,06/20/2013 05:55:06 PM,06/20/2013 05:56:12 PM,06/20/2013 05:57:41 PM,06/20/2013 05:59:55 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,Code 2 Transport,06/20/2013 06:15:45 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7694504462794, -122.424435244186)",131710291-E06 -133460206,T12,13117404,Citizen Assist / Service Call,12/12/2013,12/12/2013,12/12/2013 12:46:53 PM,12/12/2013 12:48:16 PM,12/12/2013 12:48:58 PM,12/12/2013 12:49:52 PM,12/12/2013 12:51:45 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Fire,12/12/2013 12:55:33 PM,PARNASSUS AV/HILLWAY AV,SF,94131,B05,12,5155,3,3,3,false,Alarm,1,TRUCK,1,5,7,Inner Sunset,"(37.7638146894796, -122.456669911754)",133460206-T12 -120930267,T11,12030874,Medical Incident,04/02/2012,04/02/2012,04/02/2012 04:07:03 PM,04/02/2012 04:09:30 PM,04/02/2012 04:09:59 PM,04/02/2012 04:13:05 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Other,04/02/2012 04:15:34 PM,0 Block of LILAC ST,SF,94110,B06,11,5525,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,6,9,Mission,"(37.7514765377591, -122.417732620708)",120930267-T11 -122930122,E03,12097088,Medical Incident,10/19/2012,10/19/2012,10/19/2012 08:58:54 AM,10/19/2012 09:01:28 AM,10/19/2012 09:05:23 AM,04/25/2016 01:56:13 PM,10/19/2012 09:09:30 AM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 09:19:25 AM,0 Block of MASON ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",122930122-E03 -103360311,E08,10107590,Medical Incident,12/02/2010,12/02/2010,12/02/2010 06:51:35 PM,12/02/2010 06:52:35 PM,12/02/2010 06:53:34 PM,12/02/2010 06:54:54 PM,12/02/2010 06:56:58 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/02/2010 07:07:22 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",103360311-E08 -110260309,87,11008677,Medical Incident,01/26/2011,01/26/2011,01/26/2011 06:57:13 PM,01/26/2011 06:58:00 PM,01/26/2011 06:58:08 PM,01/26/2011 06:58:48 PM,01/26/2011 07:01:10 PM,01/26/2011 07:18:10 PM,01/26/2011 07:28:29 PM,Code 2 Transport,01/26/2011 07:50:49 PM,600 Block of STEVENSON ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7795231711615, -122.412639291793)",110260309-87 -121210178,E29,12040180,Medical Incident,04/30/2012,04/30/2012,04/30/2012 01:13:59 PM,04/30/2012 01:14:34 PM,04/30/2012 01:15:03 PM,04/30/2012 01:18:23 PM,04/30/2012 01:20:00 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 01:28:57 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7697208630457, -122.417949217834)",121210178-E29 -130320378,E15,13011092,Gas Leak (Natural and LP Gases),02/01/2013,02/01/2013,02/01/2013 09:55:23 PM,02/01/2013 09:57:48 PM,02/01/2013 09:59:11 PM,02/01/2013 09:59:54 PM,02/01/2013 10:01:55 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/01/2013 10:37:52 PM,100 Block of JULES AVE,SF,94112,B09,15,8463,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209248245928, -122.461168962553)",130320378-E15 -140100215,E21,14003509,Medical Incident,01/10/2014,01/10/2014,01/10/2014 01:17:53 PM,01/10/2014 01:21:25 PM,01/10/2014 01:22:18 PM,01/10/2014 01:23:08 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/10/2014 01:25:43 PM,400 Block of STANYAN ST,SF,94117,B05,21,455,E,E,3,false,Potentially Life-Threatening,1,ENGINE,4,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",140100215-E21 -111010287,78,11033603,Medical Incident,04/11/2011,04/11/2011,04/11/2011 06:43:52 PM,04/11/2011 06:45:35 PM,04/11/2011 06:46:07 PM,04/11/2011 06:46:59 PM,04/11/2011 06:50:45 PM,04/11/2011 07:11:44 PM,04/11/2011 07:24:12 PM,Code 2 Transport,04/11/2011 08:05:39 PM,200 Block of LONDON ST,SF,94112,B09,43,6116,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7250653489969, -122.433386010652)",111010287-78 -133120219,E18,13106051,Medical Incident,11/08/2013,11/08/2013,11/08/2013 02:02:43 PM,11/08/2013 02:03:32 PM,11/08/2013 02:07:48 PM,11/08/2013 02:08:49 PM,11/08/2013 02:11:31 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Medical Examiner,11/08/2013 03:18:27 PM,1900 Block of 46TH AVE,SF,94116,B08,23,7715,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7501609656807, -122.505281479896)",133120219-E18 -160611346,77,16024282,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:43:39 AM,03/01/2016 11:46:01 AM,03/01/2016 12:10:42 PM,03/01/2016 12:10:56 PM,03/01/2016 12:15:44 PM,03/01/2016 12:19:31 PM,03/01/2016 12:23:03 PM,Code 2 Transport,03/01/2016 12:47:25 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160611346-77 -132580249,B04,13087334,Structure Fire,09/15/2013,09/15/2013,09/15/2013 04:06:17 PM,09/15/2013 04:06:59 PM,09/15/2013 04:07:35 PM,09/15/2013 04:08:36 PM,09/15/2013 04:10:36 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/15/2013 04:26:29 PM,1900 Block of WASHINGTON ST,SF,94109,B04,38,3226,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7927918347727, -122.425348410602)",132580249-B04 -160381567,63,16015188,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:42:30 AM,02/07/2016 11:45:57 AM,02/07/2016 11:47:43 AM,02/07/2016 11:47:53 AM,02/07/2016 12:04:11 PM,02/07/2016 12:08:41 PM,02/07/2016 12:32:17 PM,Code 2 Transport,02/07/2016 01:19:51 PM,100 Block of KIRKWOOD AVE,San Francisco,94124,B10,17,6665,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7285505716064, -122.372721993356)",160381567-63 -131180345,RS1,13039843,Medical Incident,04/28/2013,04/28/2013,04/28/2013 09:15:10 PM,04/28/2013 09:16:25 PM,04/28/2013 09:16:44 PM,04/28/2013 09:18:11 PM,04/28/2013 09:20:43 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/28/2013 09:31:09 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131180345-RS1 -111750236,E15,11057724,Medical Incident,06/24/2011,06/24/2011,06/24/2011 02:59:48 PM,06/24/2011 03:00:20 PM,06/24/2011 03:00:53 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,No Merit,06/24/2011 03:09:53 PM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,2,2,2,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",111750236-E15 -131570266,T02,13053296,Water Rescue,06/06/2013,06/06/2013,06/06/2013 03:07:19 PM,06/06/2013 03:08:20 PM,06/06/2013 03:09:06 PM,06/06/2013 03:11:26 PM,06/06/2013 03:15:16 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/06/2013 03:15:44 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,true,Fire,1,TRUCK,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",131570266-T02 -132670126,RC3,13090585,Medical Incident,09/24/2013,09/24/2013,09/24/2013 10:56:16 AM,09/24/2013 10:57:54 AM,09/24/2013 10:59:28 AM,09/24/2013 11:00:03 AM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/24/2013 11:04:52 AM,4800 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7805793273051, -122.471239503183)",132670126-RC3 -160141530,52,16005544,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:52:01 AM,01/14/2016 11:54:41 AM,01/14/2016 11:55:04 AM,01/14/2016 11:55:23 AM,01/14/2016 12:18:31 PM,01/14/2016 12:29:41 PM,01/14/2016 12:47:18 PM,Code 2 Transport,01/14/2016 01:27:08 PM,5TH ST/WELSH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.777371993601, -122.399762587518)",160141530-52 -160680398,AM02,16026992,Medical Incident,03/08/2016,03/07/2016,03/08/2016 06:10:43 AM,03/08/2016 06:11:53 AM,03/08/2016 06:12:09 AM,03/08/2016 06:12:55 AM,03/08/2016 06:17:35 AM,03/08/2016 06:40:30 AM,03/08/2016 07:18:36 AM,Code 2 Transport,03/08/2016 07:53:55 AM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8046368314261, -122.414251200714)",160680398-AM02 -113360466,59,11111472,Medical Incident,12/02/2011,12/02/2011,12/02/2011 10:31:40 PM,12/02/2011 10:33:24 PM,12/02/2011 10:40:21 PM,12/02/2011 10:43:22 PM,12/02/2011 10:49:51 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Patient Declined Transport,12/02/2011 11:29:34 PM,1300 Block of EGBERT AVE,SF,94124,B10,17,6615,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7221736000048, -122.391637312216)",113360466-59 -140630221,B10,14021303,Alarms,03/04/2014,03/04/2014,03/04/2014 02:05:28 PM,03/04/2014 02:05:28 PM,03/04/2014 02:05:43 PM,03/04/2014 02:08:55 PM,03/04/2014 02:11:49 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 02:12:23 PM,1100 Block of INGERSON AVE,SF,94124,B10,44,6575,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7205336865226, -122.395602639303)",140630221-B10 -111640302,RC2,11054222,Medical Incident,06/13/2011,06/13/2011,06/13/2011 06:02:30 PM,06/13/2011 06:04:01 PM,06/13/2011 06:05:55 PM,06/13/2011 06:10:44 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,Other,06/13/2011 06:11:03 PM,7900 Block of GEARY BLVD,SF,94121,B07,34,7274,3,E,3,true,,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7790745212569, -122.504546749316)",111640302-RC2 -103340019,54,10106747,Medical Incident,11/30/2010,11/29/2010,11/30/2010 01:55:38 AM,11/30/2010 01:56:31 AM,11/30/2010 01:57:06 AM,11/30/2010 01:57:59 AM,11/30/2010 01:59:33 AM,11/30/2010 02:07:11 AM,11/30/2010 02:20:25 AM,Other,11/30/2010 03:19:50 AM,4100 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7399568110921, -122.389027814103)",103340019-54 -121380147,78,12045817,Medical Incident,05/17/2012,05/17/2012,05/17/2012 11:17:03 AM,05/17/2012 11:20:01 AM,05/17/2012 11:20:26 AM,05/17/2012 11:20:38 AM,05/17/2012 11:23:10 AM,05/17/2012 11:40:09 AM,05/17/2012 11:53:46 AM,Code 2 Transport,05/17/2012 12:40:00 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",121380147-78 -160450519,75,16017983,Medical Incident,02/14/2016,02/13/2016,02/14/2016 03:20:14 AM,02/14/2016 03:20:34 AM,02/14/2016 03:21:14 AM,02/14/2016 03:21:41 AM,02/14/2016 03:25:32 AM,02/14/2016 03:38:20 AM,02/14/2016 03:39:38 AM,Code 2 Transport,02/14/2016 04:29:57 AM,700 Block of VAN NESS AVE,San Francisco,94102,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824440383404, -122.420574545604)",160450519-75 -123360086,B01,12111638,Fuel Spill,12/01/2012,12/01/2012,12/01/2012 07:57:37 AM,12/01/2012 08:01:28 AM,12/01/2012 08:01:34 AM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,12/01/2012 08:04:25 AM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,Alarm,1,CHIEF,2,3,3,Financial District/South Beach,"(37.7864582323625, -122.407206735701)",123360086-B01 -160881318,KM11,16034898,Medical Incident,03/28/2016,03/28/2016,03/28/2016 10:45:17 AM,03/28/2016 10:45:54 AM,03/28/2016 10:46:39 AM,03/28/2016 10:47:14 AM,03/28/2016 10:55:12 AM,03/28/2016 11:15:33 AM,03/28/2016 11:29:05 AM,Code 2 Transport,03/28/2016 11:57:38 AM,WASHINGTON ST/WALTER U LUM PL,San Francisco,94108,B01,13,1245,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7952232343029, -122.405845728924)",160881318-KM11 -121400159,KM12,12046477,Medical Incident,05/19/2012,05/19/2012,05/19/2012 12:03:33 PM,05/19/2012 12:04:33 PM,05/19/2012 12:05:10 PM,05/19/2012 12:05:45 PM,05/19/2012 12:08:18 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/19/2012 12:13:24 PM,SOUTH VAN NESS AV/23RD ST,SF,94110,B06,7,5511,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7539677697092, -122.416413490249)",121400159-KM12 -160630848,AM06,16024984,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:38:24 AM,03/03/2016 08:38:49 AM,03/03/2016 08:39:29 AM,03/03/2016 08:40:05 AM,03/03/2016 09:04:40 AM,03/03/2016 09:04:47 AM,03/03/2016 09:17:00 AM,Code 2 Transport,03/03/2016 09:45:04 AM,500 Block of CASTRO ST,San Francisco,94114,B06,6,5437,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7600850560594, -122.434996193094)",160630848-AM06 -111930240,B02,11063763,Alarms,07/12/2011,07/12/2011,07/12/2011 03:54:31 PM,07/12/2011 03:56:29 PM,07/12/2011 03:56:52 PM,07/12/2011 03:58:07 PM,07/12/2011 04:03:04 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,Other,07/12/2011 04:10:36 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,false,,1,CHIEF,3,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",111930240-B02 -132480140,AM06,13083645,Medical Incident,09/05/2013,09/05/2013,09/05/2013 10:38:22 AM,09/05/2013 10:39:11 AM,09/05/2013 10:40:14 AM,09/05/2013 10:40:58 AM,09/05/2013 10:42:56 AM,04/25/2016 01:50:57 PM,04/25/2016 01:50:57 PM,Other,09/05/2013 10:45:15 AM,20TH ST/MISSION ST,SF,94110,B06,7,5446,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",132480140-AM06 -113480401,D3,11115648,Structure Fire,12/14/2011,12/14/2011,12/14/2011 11:17:03 PM,12/14/2011 11:17:52 PM,12/14/2011 11:18:34 PM,12/14/2011 11:20:41 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 11:25:03 PM,0 Block of CAMELLIA AVE,SF,94112,B09,32,6113,3,3,3,false,,1,CHIEF,7,9,11,Outer Mission,"(37.7300279058626, -122.431228703307)",113480401-D3 -140190368,RC1,14006700,Medical Incident,01/19/2014,01/19/2014,01/19/2014 10:44:20 PM,01/19/2014 10:44:49 PM,01/19/2014 10:48:10 PM,01/19/2014 10:48:15 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/19/2014 10:49:24 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",140190368-RC1 -140860176,94,14028942,Medical Incident,03/27/2014,03/27/2014,03/27/2014 01:40:59 PM,03/27/2014 01:42:34 PM,03/27/2014 01:42:57 PM,03/27/2014 01:43:45 PM,03/27/2014 01:47:13 PM,03/27/2014 02:12:01 PM,03/27/2014 02:43:58 PM,Code 3 Transport,03/27/2014 03:10:02 PM,1500 Block of 7TH AVE,SAN FRANCISCO,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",140860176-94 -102610001,93,10082347,Medical Incident,09/18/2010,09/17/2010,09/18/2010 12:02:44 AM,09/18/2010 12:03:45 AM,09/18/2010 12:03:59 AM,09/18/2010 12:06:09 AM,09/18/2010 12:08:40 AM,09/18/2010 12:14:11 AM,09/18/2010 12:32:35 AM,Other,09/18/2010 12:49:31 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",102610001-93 -160890171,AM20,16035179,Medical Incident,03/29/2016,03/28/2016,03/29/2016 01:46:22 AM,03/29/2016 01:47:37 AM,03/29/2016 01:47:51 AM,03/29/2016 01:48:38 AM,03/29/2016 01:53:10 AM,03/29/2016 02:13:19 AM,03/29/2016 02:35:09 AM,Code 2 Transport,03/29/2016 02:55:50 AM,300 Block of 26TH AVE,San Francisco,94121,B07,14,7214,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7829074057708, -122.485947937388)",160890171-AM20 -121530128,E36,12050592,Medical Incident,06/01/2012,06/01/2012,06/01/2012 11:34:27 AM,06/01/2012 11:35:51 AM,06/01/2012 11:36:15 AM,06/01/2012 11:36:42 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 11:39:10 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121530128-E36 -112320207,T05,11076613,Structure Fire,08/20/2011,08/20/2011,08/20/2011 02:34:40 PM,08/20/2011 02:34:41 PM,08/20/2011 02:34:49 PM,08/20/2011 02:35:40 PM,08/20/2011 02:38:10 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 02:38:13 PM,SCOTT ST/FULTON ST,SF,94117,B05,21,4135,3,3,3,false,,1,TRUCK,2,5,5,Western Addition,"(37.777068080574, -122.436507231271)",112320207-T05 -121690249,B03,12056177,Alarms,06/17/2012,06/17/2012,06/17/2012 04:57:58 PM,06/17/2012 04:58:52 PM,06/17/2012 04:58:59 PM,06/17/2012 05:01:20 PM,06/17/2012 05:06:29 PM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/17/2012 05:37:00 PM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",121690249-B03 -160630843,52,16024983,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:35:27 AM,03/03/2016 08:37:35 AM,03/03/2016 08:40:29 AM,03/03/2016 08:40:39 AM,03/03/2016 09:02:06 AM,03/03/2016 09:12:56 AM,03/03/2016 09:52:57 AM,Code 2 Transport,03/03/2016 10:20:32 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160630843-52 -121690318,86,12056241,Medical Incident,06/17/2012,06/17/2012,06/17/2012 09:27:30 PM,06/17/2012 09:33:10 PM,06/17/2012 09:33:24 PM,06/17/2012 09:33:40 PM,06/17/2012 09:37:32 PM,06/17/2012 09:41:11 PM,06/17/2012 09:57:23 PM,Code 2 Transport,06/17/2012 10:02:16 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",121690318-86 -112650330,AM12,11087616,Medical Incident,09/22/2011,09/22/2011,09/22/2011 05:26:12 PM,09/22/2011 05:26:12 PM,09/22/2011 05:26:12 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,09/22/2011 05:38:12 PM,09/22/2011 05:51:06 PM,Code 2 Transport,09/22/2011 06:23:55 PM,POLK ST/POST ST,SF,94109,B04,3,1641,3,3,3,false,,1,PRIVATE,1,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",112650330-AM12 -102520329,E02,10079748,Medical Incident,09/09/2010,09/09/2010,09/09/2010 09:20:36 PM,09/09/2010 09:21:21 PM,09/09/2010 09:21:32 PM,09/09/2010 09:23:47 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/09/2010 09:24:12 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",102520329-E02 -131770082,67,13060001,Medical Incident,06/26/2013,06/25/2013,06/26/2013 07:07:55 AM,06/26/2013 07:09:34 AM,06/26/2013 07:09:54 AM,06/26/2013 07:10:39 AM,06/26/2013 07:15:26 AM,06/26/2013 07:31:18 AM,06/26/2013 07:46:09 AM,Code 2 Transport,06/26/2013 08:35:02 AM,0 Block of SEYMOUR ST,SF,94115,B05,5,4134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7792900134424, -122.437869182837)",131770082-67 -111780082,RC2,11058701,Medical Incident,06/27/2011,06/26/2011,06/27/2011 07:55:01 AM,06/27/2011 07:56:57 AM,06/27/2011 08:00:49 AM,06/27/2011 08:22:10 AM,06/27/2011 08:35:03 AM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 09:41:41 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,1,1,2,true,,1,RESCUE CAPTAIN,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",111780082-RC2 -122290043,KM04,12075765,Medical Incident,08/16/2012,08/15/2012,08/16/2012 04:23:51 AM,08/16/2012 04:24:38 AM,08/16/2012 04:26:01 AM,08/16/2012 04:26:43 AM,08/16/2012 04:36:17 AM,08/16/2012 05:22:02 AM,08/16/2012 05:52:35 AM,Code 2 Transport,08/16/2012 06:33:33 AM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",122290043-KM04 -121490013,54,12049314,Medical Incident,05/28/2012,05/27/2012,05/28/2012 12:50:24 AM,05/28/2012 12:51:04 AM,05/28/2012 12:51:32 AM,05/28/2012 12:51:54 AM,05/28/2012 12:55:56 AM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Gone on Arrival,05/28/2012 01:00:29 AM,2800 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7879071323042, -122.441263904457)",121490013-54 -121240319,B09,12041275,Alarms,05/03/2012,05/03/2012,05/03/2012 06:46:00 PM,05/03/2012 06:47:34 PM,05/03/2012 06:47:44 PM,05/03/2012 06:48:37 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 06:50:43 PM,300 Block of RALSTON ST,SF,94132,B09,33,8431,3,3,3,false,Alarm,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7187762303119, -122.469015203072)",121240319-B09 -123360450,E22,12111963,Medical Incident,12/01/2012,12/01/2012,12/01/2012 11:18:24 PM,12/01/2012 11:19:00 PM,12/01/2012 11:19:15 PM,12/01/2012 11:20:28 PM,12/01/2012 11:23:54 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 11:33:15 PM,1400 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",123360450-E22 -160483597,65,16019504,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:20:16 PM,02/17/2016 08:20:16 PM,02/17/2016 08:20:36 PM,02/17/2016 08:20:45 PM,02/17/2016 08:29:33 PM,02/17/2016 08:53:43 PM,02/17/2016 08:59:13 PM,Code 2 Transport,02/17/2016 09:15:00 PM,MISSION ST/7TH ST,San Francisco,94103,B02,1,2315,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160483597-65 -111780034,74,11058658,Medical Incident,06/27/2011,06/26/2011,06/27/2011 02:21:58 AM,06/27/2011 02:22:57 AM,06/27/2011 02:25:40 AM,06/27/2011 02:25:54 AM,06/27/2011 02:36:48 AM,06/27/2011 02:40:24 AM,06/27/2011 02:51:16 AM,Code 2 Transport,06/27/2011 03:22:22 AM,3RD ST/MARIPOSA ST,SF,94107,B03,29,2671,2,2,2,true,,1,MEDIC,1,3,10,Potrero Hill,"(37.7643218361157, -122.388851284628)",111780034-74 -140310068,E16,14010449,Medical Incident,01/31/2014,01/31/2014,01/31/2014 08:28:46 AM,01/31/2014 08:29:45 AM,01/31/2014 08:30:09 AM,01/31/2014 08:31:21 AM,01/31/2014 08:34:36 AM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/31/2014 08:36:43 AM,CHESTNUT ST/BUCHANAN ST,SF,94123,B04,16,3445,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8012356976907, -122.432957626885)",140310068-E16 -132570364,E03,13087063,Citizen Assist / Service Call,09/14/2013,09/14/2013,09/14/2013 08:50:07 PM,09/14/2013 08:52:35 PM,09/14/2013 08:54:01 PM,09/14/2013 08:55:41 PM,09/14/2013 09:00:00 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 09:17:13 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",132570364-E03 -140130257,E38,14004518,Traffic Collision,01/13/2014,01/13/2014,01/13/2014 04:11:41 PM,01/13/2014 04:12:47 PM,01/13/2014 04:13:18 PM,01/13/2014 04:14:07 PM,01/13/2014 04:16:21 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/13/2014 04:34:27 PM,POST ST/BUCHANAN ST,SF,94115,B04,38,3364,,2,2,false,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7855638462164, -122.429782593528)",140130257-E38 -110090084,E21,11002920,Medical Incident,01/09/2011,01/08/2011,01/09/2011 05:46:30 AM,01/09/2011 05:47:10 AM,01/09/2011 05:47:44 AM,04/25/2016 02:06:41 PM,01/09/2011 05:50:06 AM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/09/2011 06:00:02 AM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",110090084-E21 -103380251,E37,10108190,Medical Incident,12/04/2010,12/04/2010,12/04/2010 02:32:25 PM,12/04/2010 02:37:26 PM,12/04/2010 02:37:46 PM,12/04/2010 02:39:20 PM,04/25/2016 02:07:18 PM,04/25/2016 02:07:18 PM,12/04/2010 02:40:48 PM,Other,12/04/2010 02:44:34 PM,300 Block of TEXAS ST,SF,94107,B03,37,2462,3,3,3,true,,1,ENGINE,3,10,10,Potrero Hill,"(37.7620024484897, -122.395430669934)",103380251-E37 -110250288,96,11008289,Medical Incident,01/25/2011,01/25/2011,01/25/2011 02:21:46 PM,01/25/2011 02:24:48 PM,01/25/2011 02:25:03 PM,01/25/2011 02:25:37 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 02:25:47 PM,1400 Block of POST ST,SF,94109,B04,3,3256,3,3,3,true,,1,MEDIC,4,4,5,Japantown,"(37.7860447238816, -122.426514096484)",110250288-96 -112890247,KM04,11095932,Medical Incident,10/16/2011,10/16/2011,10/16/2011 04:30:02 PM,10/16/2011 04:30:39 PM,10/16/2011 04:30:52 PM,10/16/2011 04:31:31 PM,10/16/2011 04:37:49 PM,10/16/2011 04:47:56 PM,10/16/2011 04:59:26 PM,Code 2 Transport,10/16/2011 05:10:53 PM,1500 Block of STOCKTON ST,SF,94133,B01,28,1334,3,2,2,false,,1,PRIVATE,2,1,3,North Beach,"(37.799975359605, -122.40903359976)",112890247-KM04 -131600353,T03,13054514,Medical Incident,06/09/2013,06/09/2013,06/09/2013 10:53:24 PM,06/09/2013 10:53:45 PM,06/09/2013 10:54:17 PM,06/09/2013 10:55:21 PM,06/09/2013 10:57:17 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 10:58:12 PM,EDDY ST/POLK ST,SF,94109,B02,3,1643,E,E,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",131600353-T03 -160100704,85,16003941,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:18:47 AM,01/10/2016 07:19:40 AM,01/10/2016 07:20:04 AM,01/10/2016 07:20:24 AM,01/10/2016 07:27:01 AM,01/10/2016 08:00:21 AM,01/10/2016 08:14:33 AM,Code 2 Transport,01/10/2016 08:55:30 AM,1300 Block of TURK ST,San Francisco,94115,B05,5,3535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7806601476493, -122.431293406332)",160100704-85 -121630252,79,12054095,Medical Incident,06/11/2012,06/11/2012,06/11/2012 03:43:14 PM,06/11/2012 03:44:36 PM,06/11/2012 03:46:37 PM,06/11/2012 03:47:40 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 04:04:04 PM,39TH AV/ORTEGA ST,SF,94116,B08,18,7623,3,1,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7514263278688, -122.497770413464)",121630252-79 -160110393,55,16004258,Medical Incident,01/11/2016,01/10/2016,01/11/2016 04:35:39 AM,01/11/2016 04:36:25 AM,01/11/2016 04:36:47 AM,01/11/2016 04:37:00 AM,01/11/2016 04:41:31 AM,01/11/2016 04:50:57 AM,01/11/2016 04:56:33 AM,Code 2 Transport,01/11/2016 05:28:13 AM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160110393-55 -111550375,91,11051394,Medical Incident,06/04/2011,06/04/2011,06/04/2011 10:08:44 PM,06/04/2011 10:11:31 PM,06/04/2011 10:11:40 PM,06/04/2011 10:12:18 PM,06/04/2011 10:18:00 PM,06/04/2011 10:24:03 PM,06/04/2011 10:56:50 PM,Code 2 Transport,06/04/2011 11:24:50 PM,200 Block of GRATTAN ST,SF,94117,B05,12,5161,E,E,3,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7638103010058, -122.451732067242)",111550375-91 -112730245,KM15,11090291,Medical Incident,09/30/2011,09/30/2011,09/30/2011 03:29:40 PM,09/30/2011 03:30:46 PM,09/30/2011 03:31:21 PM,09/30/2011 03:32:16 PM,09/30/2011 03:38:31 PM,09/30/2011 03:52:33 PM,09/30/2011 04:00:19 PM,Code 3 Transport,09/30/2011 04:27:15 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,2,2,false,,1,PRIVATE,2,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112730245-KM15 -130430099,T01,13014565,Traffic Collision,02/12/2013,02/12/2013,02/12/2013 09:43:57 AM,02/12/2013 09:46:41 AM,02/12/2013 09:47:19 AM,02/12/2013 09:49:00 AM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,02/12/2013 10:06:35 AM,FOLSOM ST/8TH ST,SF,94103,B02,29,2322,3,3,3,false,Potentially Life-Threatening,1,TRUCK,6,2,6,South of Market,"(37.7749917920342, -122.41006277143)",130430099-T01 -112330074,99,11076854,Medical Incident,08/21/2011,08/20/2011,08/21/2011 05:00:04 AM,08/21/2011 05:01:38 AM,08/21/2011 05:02:47 AM,08/21/2011 05:06:06 AM,04/25/2016 02:03:04 PM,08/21/2011 05:29:22 AM,08/21/2011 05:37:36 AM,Code 2 Transport,08/21/2011 06:02:42 AM,100 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,true,,1,MEDIC,3,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",112330074-99 -160012431,86,16000374,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:11:46 PM,01/01/2016 03:13:44 PM,01/01/2016 03:14:10 PM,01/01/2016 03:14:22 PM,01/01/2016 03:19:51 PM,01/01/2016 03:43:23 PM,01/01/2016 03:56:02 PM,Code 2 Transport,01/01/2016 04:24:57 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",160012431-86 -123530110,B09,12118039,Medical Incident,12/18/2012,12/18/2012,12/18/2012 09:40:37 AM,12/18/2012 09:41:11 AM,12/18/2012 09:41:26 AM,12/18/2012 10:04:55 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 10:08:45 AM,2200 Block of SAN JOSE AVE,SF,94112,B09,15,8322,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,9,11,Outer Mission,"(37.7212067336397, -122.446289443865)",123530110-B09 -160572842,56,16022859,Medical Incident,02/26/2016,02/26/2016,02/26/2016 05:52:59 PM,02/26/2016 05:53:31 PM,02/26/2016 05:59:10 PM,02/26/2016 05:59:43 PM,02/26/2016 06:04:56 PM,02/26/2016 06:25:17 PM,02/26/2016 06:39:18 PM,Code 2 Transport,02/26/2016 07:21:43 PM,0 Block of POST ST,San Francisco,94104,B01,13,1236,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7889013532379, -122.403161222429)",160572842-56 -160503068,AM20,16020215,Medical Incident,02/19/2016,02/19/2016,02/19/2016 06:43:11 PM,02/19/2016 06:43:11 PM,02/19/2016 06:45:28 PM,02/19/2016 06:46:16 PM,02/19/2016 07:11:10 PM,02/19/2016 07:27:03 PM,02/19/2016 07:48:47 PM,Code 2 Transport,02/19/2016 08:16:13 PM,BRYANT ST/RINCON ST,San Francisco,94107,B03,35,2135,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7842053064379, -122.392118767755)",160503068-AM20 -110420318,AM12,11014020,Medical Incident,02/11/2011,02/11/2011,02/11/2011 06:25:32 PM,02/11/2011 06:26:12 PM,02/11/2011 06:27:19 PM,02/11/2011 06:27:39 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 06:28:05 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,false,,1,PRIVATE,3,2,6,Mission,"(37.7726948236861, -122.422188261426)",110420318-AM12 -113100094,88,11102964,Medical Incident,11/06/2011,11/05/2011,11/06/2011 07:34:34 AM,11/06/2011 07:35:57 AM,11/06/2011 07:36:18 AM,11/06/2011 07:36:54 AM,11/06/2011 07:39:52 AM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,Other,04/25/2016 02:01:47 PM,2400 Block of FULTON ST,SF,94118,B07,21,4561,3,3,3,true,,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7744861396627, -122.457337524606)",113100094-88 -130130205,E19,13004444,Medical Incident,01/13/2013,01/13/2013,01/13/2013 12:34:16 PM,01/13/2013 12:35:53 PM,01/13/2013 12:36:44 PM,01/13/2013 12:37:48 PM,01/13/2013 12:40:23 PM,04/25/2016 01:54:49 PM,04/25/2016 01:54:49 PM,Other,01/13/2013 12:55:12 PM,0 Block of DENSLOWE DR,SF,94132,B08,19,8726,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7235639281803, -122.47418852958)",130130205-E19 -160490842,AM08,16019653,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:58:16 AM,02/18/2016 09:00:19 AM,02/18/2016 09:01:28 AM,02/18/2016 09:02:11 AM,02/18/2016 09:10:47 AM,02/18/2016 09:21:28 AM,02/18/2016 09:52:03 AM,Code 2 Transport,02/18/2016 10:29:03 AM,1200 Block of NORTHPOINT DR,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",160490842-AM08 -132790445,E44,13095125,Medical Incident,10/06/2013,10/06/2013,10/06/2013 10:36:29 PM,10/06/2013 10:37:35 PM,10/06/2013 10:38:03 PM,10/06/2013 10:39:32 PM,10/06/2013 10:44:20 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/06/2013 10:51:12 PM,300 Block of BOWDOIN ST,SF,94134,B09,42,6367,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,9,Portola,"(37.7304539029728, -122.412804596546)",132790445-E44 -110520105,E33,11017162,Traffic Collision,02/21/2011,02/21/2011,02/21/2011 10:08:06 AM,02/21/2011 10:08:06 AM,02/21/2011 10:10:08 AM,02/21/2011 10:10:56 AM,02/21/2011 10:12:22 AM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 10:25:58 AM,FONT BL/CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7150113911845, -122.472990955765)",110520105-E33 -160320190,AM22,16012414,Medical Incident,02/01/2016,01/31/2016,02/01/2016 01:43:27 AM,02/01/2016 01:44:02 AM,02/01/2016 01:44:26 AM,02/01/2016 01:44:59 AM,02/01/2016 01:46:28 AM,02/01/2016 02:06:10 AM,02/01/2016 02:16:49 AM,Code 2 Transport,02/01/2016 02:47:11 AM,MISSION ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160320190-AM22 -160411451,89,16016418,Medical Incident,02/10/2016,02/10/2016,02/10/2016 11:23:06 AM,02/10/2016 11:23:06 AM,02/10/2016 11:23:38 AM,02/10/2016 11:25:53 AM,02/10/2016 11:28:03 AM,02/10/2016 11:46:23 AM,02/10/2016 12:03:54 PM,Code 2 Transport,02/10/2016 12:55:35 PM,6TH ST/TEHAMA ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7793146738209, -122.406628200775)",160411451-89 -103430081,E17,10109764,Medical Incident,12/09/2010,12/08/2010,12/09/2010 07:16:00 AM,12/09/2010 07:17:30 AM,12/09/2010 07:17:57 AM,12/09/2010 07:19:34 AM,12/09/2010 07:21:25 AM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/09/2010 07:35:56 AM,0 Block of ROSIE LEE LN,SF,94124,B10,17,6643,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.732100392944, -122.380819683606)",103430081-E17 -131780368,92,13060596,Medical Incident,06/27/2013,06/27/2013,06/27/2013 09:06:27 PM,06/27/2013 09:08:48 PM,06/27/2013 09:09:22 PM,06/27/2013 09:09:55 PM,04/25/2016 01:52:04 PM,06/27/2013 09:30:03 PM,06/27/2013 09:41:44 PM,Code 2 Transport,06/27/2013 10:26:58 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",131780368-92 -160592835,52,16023653,Medical Incident,02/28/2016,02/28/2016,02/28/2016 07:20:00 PM,02/28/2016 07:20:40 PM,02/28/2016 07:21:12 PM,02/28/2016 07:21:37 PM,02/28/2016 07:26:22 PM,02/28/2016 07:46:42 PM,02/28/2016 08:00:17 PM,Code 3 Transport,02/28/2016 08:48:24 PM,0 Block of HARRIET ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786617943902, -122.406969944087)",160592835-52 -140940177,66,14031590,Medical Incident,04/04/2014,04/04/2014,04/04/2014 12:44:14 PM,04/04/2014 12:44:40 PM,04/04/2014 12:45:25 PM,04/04/2014 12:45:39 PM,04/04/2014 12:49:19 PM,04/04/2014 01:16:28 PM,04/04/2014 01:21:02 PM,Code 2 Transport,04/04/2014 01:49:53 PM,1400 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3223,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",140940177-66 -160853663,52,16033964,Medical Incident,03/25/2016,03/25/2016,03/25/2016 09:00:55 PM,03/25/2016 09:02:58 PM,03/25/2016 09:05:44 PM,03/25/2016 09:05:57 PM,03/25/2016 09:24:17 PM,03/25/2016 09:30:58 PM,03/25/2016 10:02:03 PM,Code 2 Transport,03/25/2016 10:30:49 PM,200 Block of BEACH ST,San Francisco,94133,B01,28,1344,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8076407484143, -122.413163175978)",160853663-52 -160321430,61,16012551,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:50:17 AM,02/01/2016 11:50:39 AM,02/01/2016 11:52:03 AM,02/01/2016 11:52:14 AM,02/01/2016 11:59:55 AM,02/01/2016 12:14:25 PM,02/01/2016 12:42:25 PM,Code 2 Transport,02/01/2016 01:00:23 PM,2100 Block of 21ST AVE,San Francisco,94116,B08,40,7433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7476211083783, -122.478090222642)",160321430-61 -123090124,KM10,12102695,Medical Incident,11/04/2012,11/03/2012,11/04/2012 07:26:13 AM,11/04/2012 07:27:46 AM,11/04/2012 07:28:17 AM,04/25/2016 01:55:57 PM,11/04/2012 07:31:37 AM,11/04/2012 07:55:39 AM,11/04/2012 07:58:50 AM,Code 2 Transport,11/04/2012 08:40:17 AM,2200 Block of PACIFIC AVE,SF,94115,B04,38,3441,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7937165642364, -122.432279480256)",123090124-KM10 -160711475,AM02,16028210,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:56:58 AM,03/11/2016 11:58:52 AM,03/11/2016 11:59:57 AM,03/11/2016 12:00:35 PM,03/11/2016 12:06:40 PM,03/11/2016 12:24:08 PM,03/11/2016 12:30:07 PM,Code 2 Transport,03/11/2016 01:29:50 PM,WEBSTER ST/JACKSON ST,San Francisco,94115,B04,38,3465,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7926799136599, -122.432917576713)",160711475-AM02 -122710297,RC2,12089540,Medical Incident,09/27/2012,09/27/2012,09/27/2012 08:42:42 PM,09/27/2012 08:42:45 PM,09/27/2012 08:43:33 PM,04/25/2016 01:56:34 PM,09/27/2012 08:53:13 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/27/2012 09:12:36 PM,400 Block of 42ND AVE,SF,94121,B07,34,7265,3,1,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7803900796193, -122.503098446489)",122710297-RC2 -140380266,E31,14012894,Medical Incident,02/07/2014,02/07/2014,02/07/2014 03:57:52 PM,02/07/2014 04:00:06 PM,02/07/2014 04:00:36 PM,02/07/2014 04:02:10 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 04:07:12 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,ENGINE,2,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",140380266-E31 -130360079,E18,13012286,Medical Incident,02/05/2013,02/05/2013,02/05/2013 08:41:36 AM,02/05/2013 08:42:03 AM,02/05/2013 08:42:51 AM,02/05/2013 08:44:00 AM,02/05/2013 08:47:10 AM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/05/2013 09:04:23 AM,2300 Block of 33RD AVE,SF,94116,B08,18,7546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7433206398772, -122.490826168304)",130360079-E18 -131310182,T11,13044225,Structure Fire,05/11/2013,05/11/2013,05/11/2013 11:38:38 AM,05/11/2013 11:40:27 AM,05/11/2013 11:41:04 AM,05/11/2013 11:43:14 AM,05/11/2013 11:45:49 AM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 12:07:11 PM,1000 Block of DOLORES ST,SF,94114,B06,11,5513,3,3,3,false,Alarm,1,TRUCK,4,6,8,Noe Valley,"(37.7526291900462, -122.425380466691)",131310182-T11 -130540334,55,13018386,Medical Incident,02/23/2013,02/23/2013,02/23/2013 09:33:05 PM,02/23/2013 09:35:06 PM,02/23/2013 09:35:20 PM,02/23/2013 09:36:32 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 09:41:41 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",130540334-55 -130910101,E09,13030372,Other,04/01/2013,04/01/2013,04/01/2013 09:11:17 AM,04/01/2013 09:12:02 AM,04/01/2013 09:12:16 AM,04/01/2013 09:13:20 AM,04/01/2013 09:15:56 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 09:30:20 AM,EVANS AV/CESAR CHAVEZ ST,SF,94124,B10,9,6422,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7496846238091, -122.397285418019)",130910101-E09 -120440286,E36,12014791,Medical Incident,02/13/2012,02/13/2012,02/13/2012 08:12:49 PM,02/13/2012 08:13:46 PM,02/13/2012 08:14:12 PM,02/13/2012 08:15:44 PM,02/13/2012 08:18:37 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 08:24:50 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",120440286-E36 -110130153,E01,11004286,Medical Incident,01/13/2011,01/13/2011,01/13/2011 11:08:04 AM,01/13/2011 11:09:04 AM,01/13/2011 11:09:19 AM,01/13/2011 11:10:28 AM,01/13/2011 11:13:27 AM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Other,01/13/2011 11:23:54 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",110130153-E01 -131810362,66,13061726,Medical Incident,06/30/2013,06/30/2013,06/30/2013 06:19:23 PM,06/30/2013 06:20:27 PM,06/30/2013 06:21:48 PM,06/30/2013 06:24:14 PM,06/30/2013 06:25:37 PM,06/30/2013 06:34:28 PM,06/30/2013 06:57:40 PM,Code 2 Transport,06/30/2013 07:09:27 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7643732096664, -122.417478491468)",131810362-66 -112040233,91,11067431,Medical Incident,07/23/2011,07/23/2011,07/23/2011 03:22:44 PM,07/23/2011 03:23:35 PM,07/23/2011 03:23:44 PM,07/23/2011 03:24:45 PM,07/23/2011 03:31:42 PM,07/23/2011 03:56:47 PM,07/23/2011 04:21:24 PM,Code 2 Transport,07/23/2011 04:53:55 PM,100 Block of JULIAN AVE,SF,94103,B02,6,5226,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7657922226195, -122.420909958943)",112040233-91 -160020032,65,16000560,Medical Incident,01/02/2016,01/01/2016,01/02/2016 12:14:34 AM,01/02/2016 12:15:54 AM,01/02/2016 12:16:50 AM,01/02/2016 12:16:54 AM,01/02/2016 12:24:21 AM,01/02/2016 12:34:38 AM,01/02/2016 12:47:38 AM,Code 2 Transport,01/02/2016 01:15:03 AM,0 Block of 10TH ST,San Francisco,94103,B02,36,2338,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7762695066166, -122.41725760507)",160020032-65 -160542629,KM03,16021681,Medical Incident,02/23/2016,02/23/2016,02/23/2016 04:22:10 PM,02/23/2016 04:23:00 PM,02/23/2016 04:23:47 PM,02/23/2016 04:24:31 PM,02/23/2016 04:38:17 PM,02/23/2016 05:00:34 PM,02/23/2016 05:37:21 PM,Code 2 Transport,02/23/2016 06:08:54 PM,1400 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.770198458048, -122.389578265491)",160542629-KM03 -160341105,57,16013317,Medical Incident,02/03/2016,02/03/2016,02/03/2016 10:14:19 AM,02/03/2016 10:16:36 AM,02/03/2016 10:17:07 AM,02/03/2016 10:17:44 AM,02/03/2016 10:27:35 AM,02/03/2016 10:40:44 AM,02/03/2016 11:00:06 AM,Code 2 Transport,02/03/2016 12:00:24 PM,1300 Block of SHAFTER AVE,San Francisco,94124,B10,17,6653,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7284340200521, -122.386011314511)",160341105-57 -160061728,62,16002396,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:44:22 PM,01/06/2016 12:45:51 PM,01/06/2016 12:46:33 PM,01/06/2016 12:46:47 PM,01/06/2016 12:51:32 PM,01/06/2016 01:07:01 PM,01/06/2016 01:39:38 PM,Code 2 Transport,01/06/2016 02:20:34 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160061728-62 -103310251,79,10106021,Medical Incident,11/27/2010,11/27/2010,11/27/2010 06:15:38 PM,11/27/2010 06:17:12 PM,11/27/2010 06:17:24 PM,04/25/2016 02:07:24 PM,11/27/2010 06:21:56 PM,11/27/2010 06:51:14 PM,11/27/2010 07:03:41 PM,Code 2 Transport,11/27/2010 07:32:20 PM,200 Block of GEARY ST,SF,94102,B01,1,1323,3,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",103310251-79 -160343619,52,16013604,Medical Incident,02/03/2016,02/03/2016,02/03/2016 10:22:03 PM,02/03/2016 10:23:38 PM,02/03/2016 10:23:44 PM,02/03/2016 10:23:53 PM,02/03/2016 10:25:13 PM,02/03/2016 10:35:31 PM,02/03/2016 10:40:36 PM,Code 2 Transport,02/03/2016 11:21:35 PM,POLK ST/PINE ST,San Francisco,94109,B04,3,3122,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",160343619-52 -110260248,75,11008620,Medical Incident,01/26/2011,01/26/2011,01/26/2011 03:39:25 PM,01/26/2011 03:41:28 PM,01/26/2011 03:41:55 PM,01/26/2011 03:42:57 PM,01/26/2011 03:50:51 PM,01/26/2011 04:09:59 PM,01/26/2011 04:20:16 PM,Code 2 Transport,01/26/2011 05:50:05 PM,5200 Block of MISSION ST,SF,94112,B09,43,6176,3,3,3,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7150747131897, -122.442226397949)",110260248-75 -110390058,59,11012836,Medical Incident,02/08/2011,02/07/2011,02/08/2011 05:53:17 AM,02/08/2011 05:54:06 AM,02/08/2011 05:54:16 AM,02/08/2011 05:54:31 AM,04/25/2016 02:06:11 PM,02/08/2011 06:16:43 AM,02/08/2011 06:29:42 AM,Code 2 Transport,02/08/2011 06:45:12 AM,3300 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,2,2,true,,1,MEDIC,2,6,9,Mission,"(37.7482858766932, -122.417044258324)",110390058-59 -160613743,53,16024509,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:23:38 PM,03/01/2016 11:23:38 PM,03/01/2016 11:24:34 PM,03/01/2016 11:24:44 PM,03/01/2016 11:25:44 PM,03/01/2016 11:42:42 PM,03/02/2016 12:06:15 AM,Code 2 Transport,03/02/2016 12:40:36 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160613743-53 -131950238,E19,13066283,Medical Incident,07/14/2013,07/14/2013,07/14/2013 04:04:19 PM,07/14/2013 04:05:07 PM,07/14/2013 04:05:23 PM,07/14/2013 04:06:22 PM,07/14/2013 04:11:52 PM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Other,07/14/2013 04:25:31 PM,19TH AV/SLOAT BL,SF,94132,B08,19,7413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",131950238-E19 -123010199,88,12099805,Medical Incident,10/27/2012,10/27/2012,10/27/2012 02:15:41 PM,10/27/2012 02:17:10 PM,10/27/2012 02:17:25 PM,10/27/2012 02:18:16 PM,10/27/2012 02:29:04 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,No Merit,10/27/2012 02:29:42 PM,4000 Block of 18TH ST,SF,94114,B05,6,5417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7610427981277, -122.433353754785)",123010199-88 -122180249,92,12072369,Medical Incident,08/05/2012,08/05/2012,08/05/2012 04:06:11 PM,08/05/2012 04:06:40 PM,08/05/2012 04:07:17 PM,08/05/2012 04:07:34 PM,04/25/2016 01:57:22 PM,08/05/2012 04:30:41 PM,08/05/2012 04:55:03 PM,Code 2 Transport,08/05/2012 05:22:37 PM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",122180249-92 -132640004,E01,13089354,Medical Incident,09/21/2013,09/20/2013,09/21/2013 12:16:52 AM,09/21/2013 12:17:50 AM,09/21/2013 12:20:11 AM,09/21/2013 12:22:44 AM,09/21/2013 12:24:55 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Other,09/21/2013 12:36:08 AM,1100 Block of FOLSOM ST,SF,94103,B03,1,2313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7758744053821, -122.408847431908)",132640004-E01 -160813690,65,16032365,Medical Incident,03/21/2016,03/21/2016,03/21/2016 09:26:57 PM,03/21/2016 09:28:00 PM,03/21/2016 09:28:10 PM,03/21/2016 09:28:19 PM,03/21/2016 09:58:15 PM,03/21/2016 09:58:21 PM,03/21/2016 10:08:26 PM,Code 3 Transport,03/21/2016 10:52:11 PM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",160813690-65 -160222442,77,16008833,Medical Incident,01/22/2016,01/22/2016,01/22/2016 04:06:06 PM,01/22/2016 04:08:05 PM,01/22/2016 04:17:20 PM,01/22/2016 04:17:32 PM,01/22/2016 04:40:23 PM,01/22/2016 05:29:57 PM,01/22/2016 05:30:05 PM,Code 2 Transport,01/22/2016 06:20:48 PM,400 Block of LOMBARD ST,San Francisco,94133,B01,28,1264,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8032803607212, -122.408937098242)",160222442-77 -102590330,E29,10081938,Medical Incident,09/16/2010,09/16/2010,09/16/2010 06:28:47 PM,09/16/2010 06:29:32 PM,09/16/2010 06:30:24 PM,09/16/2010 06:32:46 PM,09/16/2010 06:34:30 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 06:42:41 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,true,,1,ENGINE,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",102590330-E29 -160663086,AM20,16026528,Medical Incident,03/06/2016,03/06/2016,03/06/2016 09:31:47 PM,03/06/2016 09:32:05 PM,03/06/2016 09:33:58 PM,03/06/2016 09:33:58 PM,03/06/2016 09:34:31 PM,03/06/2016 09:56:57 PM,03/06/2016 10:12:24 PM,Code 2 Transport,03/06/2016 11:01:45 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160663086-AM20 -121040016,63,12034320,Medical Incident,04/13/2012,04/12/2012,04/13/2012 02:08:54 AM,04/13/2012 02:09:21 AM,04/13/2012 02:09:44 AM,04/25/2016 01:59:12 PM,04/13/2012 02:12:59 AM,04/13/2012 02:37:57 AM,04/13/2012 02:58:41 AM,Code 2 Transport,04/13/2012 03:14:02 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121040016-63 -123650031,57,12121990,Medical Incident,12/30/2012,12/29/2012,12/30/2012 01:40:31 AM,12/30/2012 01:41:16 AM,12/30/2012 01:44:08 AM,12/30/2012 01:44:27 AM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/30/2012 01:46:37 AM,2500 Block of SAN JOSE AVE,SF,94112,B09,33,8325,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7175145654024, -122.449359068183)",123650031-57 -112620357,E05,11086600,Medical Incident,09/19/2011,09/19/2011,09/19/2011 07:09:11 PM,09/19/2011 07:10:06 PM,09/19/2011 07:10:51 PM,09/19/2011 07:11:53 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 07:13:02 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",112620357-E05 -132820057,88,13095849,Medical Incident,10/09/2013,10/08/2013,10/09/2013 07:39:18 AM,10/09/2013 07:40:32 AM,10/09/2013 07:41:07 AM,10/09/2013 07:41:21 AM,10/09/2013 07:48:03 AM,10/09/2013 08:06:34 AM,10/09/2013 08:35:14 AM,Code 2 Transport,10/09/2013 08:58:13 AM,3300 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Portola,"(37.7197749568073, -122.400653137346)",132820057-88 -160860630,AM02,16034085,Medical Incident,03/26/2016,03/25/2016,03/26/2016 06:21:35 AM,03/26/2016 06:22:21 AM,03/26/2016 06:23:49 AM,03/26/2016 06:24:53 AM,03/26/2016 06:31:05 AM,03/26/2016 06:41:04 AM,03/26/2016 07:02:27 AM,Code 2 Transport,03/26/2016 07:21:28 AM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",160860630-AM02 -160842613,AM16,16033449,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:39:55 PM,03/24/2016 03:42:10 PM,03/24/2016 03:42:51 PM,03/24/2016 03:43:16 PM,03/24/2016 03:50:38 PM,03/24/2016 04:00:03 PM,03/24/2016 04:20:57 PM,Code 2 Transport,03/24/2016 04:41:10 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160842613-AM16 -132920340,66,13099512,Medical Incident,10/19/2013,10/19/2013,10/19/2013 08:27:05 PM,10/19/2013 08:28:48 PM,10/19/2013 08:29:01 PM,10/19/2013 08:29:09 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/19/2013 08:35:31 PM,300 Block of BERRY ST,SF,94158,B03,8,2235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7731124835363, -122.39664007904)",132920340-66 -122660066,RS1,12087781,Structure Fire,09/22/2012,09/21/2012,09/22/2012 04:20:03 AM,09/22/2012 04:20:48 AM,09/22/2012 04:21:11 AM,09/22/2012 04:24:17 AM,09/22/2012 04:26:58 AM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 04:32:11 AM,500 Block of NELSON RISING LN,SF,94158,B03,8,2264,3,3,3,false,Fire,1,RESCUE SQUAD,5,3,6,Mission Bay,"(37.7696540760545, -122.390263313432)",122660066-RS1 -113220383,55,11107130,Medical Incident,11/18/2011,11/18/2011,11/18/2011 11:44:25 PM,11/18/2011 11:45:20 PM,11/18/2011 11:46:30 PM,11/18/2011 11:46:47 PM,11/18/2011 11:49:30 PM,11/19/2011 12:19:49 AM,11/19/2011 12:19:57 AM,Code 2 Transport,11/19/2011 12:24:47 AM,1300 Block of 4TH AVE,SF,94122,B05,12,7324,3,3,3,true,,1,MEDIC,1,5,5,Inner Sunset,"(37.7634528101504, -122.460831251397)",113220383-55 -110430080,E42,11014179,Vehicle Fire,02/12/2011,02/11/2011,02/12/2011 04:06:43 AM,02/12/2011 04:07:32 AM,02/12/2011 04:07:46 AM,02/12/2011 04:09:23 AM,02/12/2011 04:13:21 AM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 04:41:56 AM,100 Block of OLMSTEAD ST,SF,94134,B10,44,6325,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7223957274277, -122.403067855257)",110430080-E42 -112210187,T13,11073001,Alarms,08/09/2011,08/09/2011,08/09/2011 02:03:55 PM,08/09/2011 02:04:49 PM,08/09/2011 02:05:34 PM,04/25/2016 02:03:15 PM,08/09/2011 02:07:57 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 02:30:41 PM,200 Block of FRONT ST,SF,94111,B01,13,1141,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7936101605254, -122.398762705491)",112210187-T13 -123640256,94,12121869,Medical Incident,12/29/2012,12/29/2012,12/29/2012 06:12:28 PM,12/29/2012 06:13:32 PM,12/29/2012 06:13:44 PM,12/29/2012 06:14:07 PM,12/29/2012 06:16:14 PM,12/29/2012 06:36:32 PM,12/29/2012 06:50:53 PM,Code 2 Transport,12/29/2012 07:07:38 PM,HOWARD ST/6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7797389055689, -122.407159489165)",123640256-94 -160090579,75,16003544,Medical Incident,01/09/2016,01/08/2016,01/09/2016 06:17:16 AM,01/09/2016 06:21:52 AM,01/09/2016 06:22:23 AM,01/09/2016 06:22:43 AM,01/09/2016 06:31:59 AM,01/09/2016 06:36:20 AM,01/09/2016 06:48:42 AM,Code 2 Transport,01/09/2016 07:30:15 AM,3000 Block of SAN JOSE AVE,San Francisco,94112,B09,33,8371,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7098606715103, -122.457422352481)",160090579-75 -123570291,68,12119604,Medical Incident,12/22/2012,12/22/2012,12/22/2012 05:41:41 PM,12/22/2012 05:42:54 PM,12/22/2012 05:44:35 PM,12/22/2012 05:44:46 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 05:51:07 PM,SUTTER ST/FILLMORE ST,SF,94115,B04,38,3542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7860854281172, -122.43327157966)",123570291-68 -110540008,55,11017688,Medical Incident,02/23/2011,02/22/2011,02/23/2011 12:49:25 AM,02/23/2011 12:50:21 AM,02/23/2011 12:50:42 AM,02/23/2011 12:51:21 AM,02/23/2011 01:00:33 AM,02/23/2011 01:38:01 AM,02/23/2011 01:41:43 AM,Code 2 Transport,02/23/2011 02:01:43 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,2,2,true,,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",110540008-55 -121300198,KM11,12043269,Medical Incident,05/09/2012,05/09/2012,05/09/2012 02:01:29 PM,05/09/2012 02:03:32 PM,05/09/2012 02:04:23 PM,05/09/2012 02:05:12 PM,05/09/2012 02:08:38 PM,05/09/2012 02:23:08 PM,05/09/2012 02:48:12 PM,Code 2 Transport,05/09/2012 03:19:21 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",121300198-KM11 -160822506,76,16032639,Medical Incident,03/22/2016,03/22/2016,03/22/2016 03:54:18 PM,03/22/2016 03:54:46 PM,03/22/2016 03:54:55 PM,03/22/2016 03:55:01 PM,03/22/2016 04:22:35 PM,03/22/2016 04:22:36 PM,03/22/2016 04:32:31 PM,Code 2 Transport,03/22/2016 05:21:43 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160822506-76 -110520261,KM04,11017292,Medical Incident,02/21/2011,02/21/2011,02/21/2011 05:50:28 PM,02/21/2011 05:51:52 PM,02/21/2011 05:52:37 PM,02/21/2011 05:53:06 PM,02/21/2011 05:57:00 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,No Merit,02/21/2011 05:59:51 PM,200 Block of BEACH ST,SF,94133,B01,28,1344,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8076407484143, -122.413163175978)",110520261-KM04 -130830299,82,13027872,Traffic Collision,03/24/2013,03/24/2013,03/24/2013 09:09:53 PM,03/24/2013 09:09:54 PM,03/24/2013 09:10:15 PM,03/24/2013 09:10:27 PM,03/24/2013 09:12:22 PM,03/24/2013 09:34:08 PM,03/24/2013 09:57:28 PM,Code 2 Transport,03/24/2013 10:22:12 PM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7572324112144, -122.415626198524)",130830299-82 -140590092,54,14019817,Medical Incident,02/28/2014,02/28/2014,02/28/2014 08:28:18 AM,02/28/2014 08:29:42 AM,02/28/2014 08:30:09 AM,02/28/2014 08:30:33 AM,02/28/2014 08:36:27 AM,02/28/2014 08:59:35 AM,02/28/2014 09:08:21 AM,Code 2 Transport,02/28/2014 09:33:37 AM,800 Block of GRANT AVE,SF,94108,B01,13,1313,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7947123862364, -122.406321854883)",140590092-54 -122080166,65,12069146,Medical Incident,07/26/2012,07/26/2012,07/26/2012 01:42:12 PM,07/26/2012 01:43:37 PM,07/26/2012 01:44:16 PM,07/26/2012 01:44:30 PM,04/25/2016 01:57:32 PM,07/26/2012 02:09:40 PM,07/26/2012 02:27:24 PM,Code 2 Transport,07/26/2012 02:51:27 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122080166-65 -130670230,E02,13022364,Medical Incident,03/08/2013,03/08/2013,03/08/2013 02:07:17 PM,03/08/2013 02:08:34 PM,03/08/2013 02:08:45 PM,03/08/2013 02:10:40 PM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,Other,03/08/2013 02:10:56 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",130670230-E02 -131500022,B07,13050678,Structure Fire,05/30/2013,05/29/2013,05/30/2013 02:18:14 AM,05/30/2013 02:19:09 AM,05/30/2013 02:19:29 AM,05/30/2013 02:21:34 AM,05/30/2013 02:23:51 AM,04/25/2016 01:52:33 PM,04/25/2016 01:52:33 PM,Other,05/30/2013 02:44:05 AM,300 Block of 20TH AVE,SF,94121,B07,31,7164,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7812947288475, -122.479518403401)",131500022-B07 -121830119,68,12060913,Medical Incident,07/01/2012,07/01/2012,07/01/2012 10:23:33 AM,07/01/2012 10:24:22 AM,07/01/2012 10:24:46 AM,07/01/2012 10:24:53 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,04/25/2016 01:57:55 PM,0 Block of EXETER ST,SF,94124,B10,44,6323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7221852157054, -122.398743727923)",121830119-68 -160661476,KM12,16026383,Medical Incident,03/06/2016,03/06/2016,03/06/2016 12:46:40 PM,03/06/2016 12:49:59 PM,03/06/2016 12:50:12 PM,03/06/2016 12:50:58 PM,03/06/2016 12:55:19 PM,03/06/2016 01:32:25 PM,03/06/2016 01:39:06 PM,Code 2 Transport,03/06/2016 02:17:40 PM,800 Block of LINCOLN WAY,San Francisco,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,5,Inner Sunset,"(37.7657995781914, -122.466969885427)",160661476-KM12 -110050087,64,11001569,Medical Incident,01/05/2011,01/05/2011,01/05/2011 08:50:52 AM,01/05/2011 08:52:35 AM,01/05/2011 08:52:41 AM,01/05/2011 08:52:51 AM,01/05/2011 09:04:23 AM,01/05/2011 09:16:08 AM,01/05/2011 09:39:23 AM,Code 2 Transport,01/05/2011 10:17:07 AM,1200 Block of 15TH AVE,SF,94122,B08,22,7366,3,3,3,true,,1,MEDIC,4,7,5,Inner Sunset,"(37.7646936953691, -122.472925297334)",110050087-64 -121060160,E32,12035112,Other,04/15/2012,04/15/2012,04/15/2012 12:22:20 PM,04/15/2012 12:22:53 PM,04/15/2012 12:23:06 PM,04/15/2012 12:24:21 PM,04/15/2012 12:28:23 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Fire,04/15/2012 12:36:26 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",121060160-E32 -121030377,B06,12034284,Alarms,04/12/2012,04/12/2012,04/12/2012 10:23:24 PM,04/12/2012 10:24:04 PM,04/12/2012 10:26:05 PM,04/12/2012 10:27:40 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Fire,04/12/2012 10:31:08 PM,2000 Block of MCKINNON AVE,SF,94124,B10,9,6425,3,3,3,false,Alarm,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.7406547375245, -122.397601427995)",121030377-B06 -160400440,88,16015894,Medical Incident,02/09/2016,02/08/2016,02/09/2016 06:07:30 AM,02/09/2016 06:07:51 AM,02/09/2016 06:08:07 AM,02/09/2016 06:08:31 AM,02/09/2016 06:12:27 AM,02/09/2016 06:28:51 AM,02/09/2016 06:37:02 AM,Code 2 Transport,02/09/2016 07:10:35 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160400440-88 -111920276,E10,11063452,Structure Fire,07/11/2011,07/11/2011,07/11/2011 04:28:39 PM,07/11/2011 04:28:40 PM,07/11/2011 04:29:57 PM,07/11/2011 04:31:03 PM,07/11/2011 04:32:18 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Fire,07/11/2011 04:33:06 PM,PRESIDIO AV/SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7881864604507, -122.446974166005)",111920276-E10 -160472272,AM02,16018977,Medical Incident,02/16/2016,02/16/2016,02/16/2016 02:59:28 PM,02/16/2016 03:00:22 PM,02/16/2016 03:01:16 PM,02/16/2016 03:02:03 PM,02/16/2016 03:21:42 PM,02/16/2016 03:21:46 PM,02/16/2016 03:37:25 PM,Code 2 Transport,02/16/2016 04:02:55 PM,600 Block of FILBERT ST,San Francisco,94133,B01,28,1351,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8013244963183, -122.410204322135)",160472272-AM02 -103060013,E32,10097757,Outside Fire,11/02/2010,11/01/2010,11/02/2010 12:15:13 AM,11/02/2010 12:15:57 AM,11/02/2010 12:20:29 AM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Fire,11/02/2010 12:32:25 AM,3RD ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",103060013-E32 -160010607,70,16000124,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:16:36 AM,01/01/2016 02:19:23 AM,01/01/2016 02:38:40 AM,01/01/2016 02:38:49 AM,01/01/2016 02:44:51 AM,01/01/2016 02:58:03 AM,01/01/2016 03:07:42 AM,Code 2 Transport,01/01/2016 03:35:47 AM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160010607-70 -123030100,KM04,12100435,Medical Incident,10/29/2012,10/28/2012,10/29/2012 01:35:17 AM,10/29/2012 01:36:38 AM,10/29/2012 01:40:55 AM,10/29/2012 01:41:40 AM,10/29/2012 01:48:51 AM,10/29/2012 02:06:19 AM,10/29/2012 02:11:53 AM,Code 2 Transport,10/29/2012 03:04:06 AM,400 Block of LARKIN ST,SF,94102,B02,3,1644,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",123030100-KM04 -160482330,79,16019387,Medical Incident,02/17/2016,02/17/2016,02/17/2016 02:44:58 PM,02/17/2016 02:45:04 PM,02/17/2016 02:47:37 PM,02/17/2016 02:47:37 PM,02/17/2016 02:51:27 PM,02/17/2016 03:08:03 PM,02/17/2016 03:22:28 PM,Code 2 Transport,02/17/2016 03:51:27 PM,1800 Block of GREEN ST,San Francisco,94123,B04,16,3354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.7969417340573, -122.429558903607)",160482330-79 -111440215,E03,11047881,Alarms,05/24/2011,05/24/2011,05/24/2011 03:07:42 PM,05/24/2011 03:08:27 PM,05/24/2011 03:08:34 PM,05/24/2011 03:09:47 PM,05/24/2011 03:10:40 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/24/2011 03:14:21 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",111440215-E03 -131530054,E21,13051723,Medical Incident,06/02/2013,06/01/2013,06/02/2013 04:24:05 AM,06/02/2013 04:24:37 AM,06/02/2013 04:25:35 AM,06/02/2013 04:26:42 AM,06/02/2013 04:28:10 AM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/02/2013 04:33:43 AM,400 Block of CENTRAL AVE,SF,94117,B05,21,4356,3,1,2,false,Non Life-threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7736894298686, -122.444242063533)",131530054-E21 -132150150,72,13072575,Medical Incident,08/03/2013,08/03/2013,08/03/2013 10:50:49 AM,08/03/2013 10:52:19 AM,08/03/2013 10:53:02 AM,08/03/2013 10:53:12 AM,08/03/2013 10:56:17 AM,08/03/2013 11:13:14 AM,08/03/2013 11:27:17 AM,Code 2 Transport,08/03/2013 11:50:44 AM,200 Block of DIVISADERO ST,SF,94117,B05,21,4144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7717213027751, -122.437252069809)",132150150-72 -112400369,E43,11079367,Alarms,08/28/2011,08/28/2011,08/28/2011 11:49:19 PM,08/28/2011 11:50:46 PM,08/28/2011 11:51:08 PM,08/28/2011 11:52:32 PM,08/28/2011 11:55:15 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/29/2011 12:51:31 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,3,3,false,,1,ENGINE,1,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",112400369-E43 -122630282,E15,12086949,Medical Incident,09/19/2012,09/19/2012,09/19/2012 06:25:51 PM,09/19/2012 06:27:20 PM,09/19/2012 06:29:14 PM,09/19/2012 06:30:44 PM,09/19/2012 06:41:00 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/19/2012 06:55:56 PM,MISSION ST/LAWRENCE AV,SF,94112,B09,33,6212,1,1,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7094127425805, -122.450883665039)",122630282-E15 -140170355,B02,14005976,Structure Fire,01/17/2014,01/17/2014,01/17/2014 09:28:46 PM,01/17/2014 09:29:54 PM,01/17/2014 09:30:27 PM,01/17/2014 09:31:11 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 09:35:22 PM,500 Block of SHOTWELL ST,SF,94110,B06,7,5433,3,3,3,false,Alarm,1,CHIEF,9,6,9,Mission,"(37.7596276927046, -122.415923018403)",140170355-B02 -140710129,77,14023920,Medical Incident,03/12/2014,03/12/2014,03/12/2014 09:53:57 AM,03/12/2014 09:54:17 AM,03/12/2014 09:55:44 AM,03/12/2014 09:55:56 AM,03/12/2014 10:04:14 AM,03/12/2014 10:10:03 AM,03/12/2014 10:45:19 AM,Code 2 Transport,03/12/2014 10:57:53 AM,400 Block of TURK ST,SAN FRANCISCO,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",140710129-77 -160661557,74,16026389,Medical Incident,03/06/2016,03/06/2016,03/06/2016 01:16:29 PM,03/06/2016 01:16:29 PM,03/06/2016 01:17:13 PM,03/06/2016 01:17:35 PM,03/06/2016 01:21:39 PM,03/06/2016 01:32:13 PM,03/06/2016 02:02:40 PM,Code 2 Transport,03/06/2016 02:40:42 PM,900 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7897784507453, -122.415533858364)",160661557-74 -160793223,85,16031520,Medical Incident,03/19/2016,03/19/2016,03/19/2016 06:29:38 PM,03/19/2016 06:30:15 PM,03/19/2016 06:30:25 PM,03/19/2016 06:30:48 PM,03/19/2016 06:36:39 PM,03/19/2016 06:59:12 PM,03/19/2016 07:03:42 PM,Code 2 Transport,03/19/2016 07:32:26 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160793223-85 -121870307,83,12062398,Medical Incident,07/05/2012,07/05/2012,07/05/2012 05:29:27 PM,07/05/2012 05:30:24 PM,07/05/2012 05:32:18 PM,07/05/2012 05:32:38 PM,07/05/2012 05:43:37 PM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,No Merit,07/05/2012 05:45:25 PM,3400 Block of 16TH ST,SF,94114,B02,6,5234,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7643418581632, -122.430494795393)",121870307-83 -160662259,53,16026447,Medical Incident,03/06/2016,03/06/2016,03/06/2016 04:30:10 PM,03/06/2016 04:30:41 PM,03/06/2016 04:31:21 PM,03/06/2016 04:31:35 PM,03/06/2016 04:42:47 PM,03/06/2016 04:58:31 PM,03/06/2016 05:18:57 PM,Code 2 Transport,03/06/2016 06:16:09 PM,800 Block of GENEVA AVE,San Francisco,94112,B09,43,6175,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7168169212828, -122.441408157149)",160662259-53 -120830084,E06,12027489,Medical Incident,03/23/2012,03/23/2012,03/23/2012 09:16:53 AM,03/23/2012 09:17:11 AM,03/23/2012 09:18:07 AM,03/23/2012 09:18:50 AM,03/23/2012 09:22:19 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 09:32:02 AM,CASTRO ST/19TH ST,SF,94114,B06,6,5437,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7592891718036, -122.434853683247)",120830084-E06 -132500450,93,13084625,Medical Incident,09/07/2013,09/07/2013,09/07/2013 10:26:00 PM,09/07/2013 10:28:04 PM,09/07/2013 10:28:39 PM,09/07/2013 10:28:56 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,04/25/2016 01:50:54 PM,400 Block of 10TH AVE,SF,94118,B07,31,7135,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7798565842319, -122.468564165185)",132500450-93 -111720287,E07,11056819,Medical Incident,06/21/2011,06/21/2011,06/21/2011 04:51:55 PM,06/21/2011 04:52:07 PM,06/21/2011 04:52:36 PM,06/21/2011 04:53:43 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/21/2011 04:56:26 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",111720287-E07 -132920169,T19,13099358,Alarms,10/19/2013,10/19/2013,10/19/2013 12:54:22 PM,10/19/2013 12:55:51 PM,10/19/2013 12:56:01 PM,10/19/2013 01:01:56 PM,10/19/2013 01:04:01 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 01:47:57 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",132920169-T19 -122800440,D2,12092820,Structure Fire,10/06/2012,10/06/2012,10/06/2012 10:51:32 PM,10/06/2012 10:52:39 PM,10/06/2012 10:52:47 PM,10/06/2012 10:53:44 PM,10/06/2012 10:57:35 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/06/2012 11:00:51 PM,1700 Block of ANZA ST,SF,94118,B07,31,7131,3,3,3,false,Alarm,1,CHIEF,4,7,1,Inner Richmond,"(37.7790247032693, -122.466824984734)",122800440-D2 -112920301,T01,11096983,Structure Fire,10/19/2011,10/19/2011,10/19/2011 06:39:13 PM,10/19/2011 06:39:14 PM,10/19/2011 06:39:20 PM,10/19/2011 06:41:57 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/19/2011 06:43:48 PM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",112920301-T01 -160360140,AM24,16014069,Medical Incident,02/05/2016,02/04/2016,02/05/2016 12:56:38 AM,02/05/2016 12:58:21 AM,02/05/2016 12:59:29 AM,02/05/2016 01:00:29 AM,02/05/2016 01:13:36 AM,02/05/2016 01:23:13 AM,02/05/2016 01:36:31 AM,Code 2 Transport,02/05/2016 02:04:17 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160360140-AM24 -160482773,85,16019425,Medical Incident,02/17/2016,02/17/2016,02/17/2016 04:40:23 PM,02/17/2016 04:40:23 PM,02/17/2016 04:40:59 PM,02/17/2016 04:42:18 PM,02/17/2016 04:44:51 PM,02/17/2016 04:51:05 PM,02/17/2016 05:00:36 PM,Code 2 Transport,02/17/2016 05:32:32 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160482773-85 -122670283,81,12088309,Medical Incident,09/23/2012,09/23/2012,09/23/2012 06:37:15 PM,09/23/2012 06:38:55 PM,09/23/2012 06:41:38 PM,09/23/2012 06:41:46 PM,09/23/2012 07:05:52 PM,09/23/2012 07:17:57 PM,09/23/2012 07:31:36 PM,Code 2 Transport,09/23/2012 07:47:06 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",122670283-81 -121860218,AM20,12061991,Medical Incident,07/04/2012,07/04/2012,07/04/2012 04:31:12 PM,07/04/2012 04:31:12 PM,07/04/2012 04:31:12 PM,07/04/2012 04:33:44 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 04:37:49 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",121860218-AM20 -130790346,RC1,13026542,Medical Incident,03/20/2013,03/20/2013,03/20/2013 09:05:19 PM,03/20/2013 09:06:30 PM,03/20/2013 09:06:42 PM,03/20/2013 09:07:26 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 09:14:41 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",130790346-RC1 -161012945,64,16040297,Medical Incident,04/10/2016,04/10/2016,04/10/2016 07:07:32 PM,04/10/2016 07:09:03 PM,04/10/2016 07:09:19 PM,04/10/2016 07:09:38 PM,04/10/2016 07:20:09 PM,04/10/2016 07:33:24 PM,04/10/2016 07:45:00 PM,Code 2 Transport,04/10/2016 08:13:25 PM,2700 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Portola,"(37.7270507466082, -122.403281820851)",161012945-64 -130370281,E10,13012780,Traffic Collision,02/06/2013,02/06/2013,02/06/2013 06:22:55 PM,02/06/2013 06:23:38 PM,02/06/2013 06:24:12 PM,02/06/2013 06:26:03 PM,02/06/2013 06:27:55 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 06:38:55 PM,GEARY BL/ARGUELLO BL,SF,94118,B07,31,7113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",130370281-E10 -160881047,KM05,16034880,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:30:34 AM,03/28/2016 09:31:35 AM,03/28/2016 09:32:05 AM,03/28/2016 09:32:05 AM,03/28/2016 09:52:36 AM,03/28/2016 09:59:54 AM,03/28/2016 10:16:17 AM,Code 2 Transport,03/28/2016 10:45:24 AM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160881047-KM05 -103070201,RS1,10098252,Medical Incident,11/03/2010,11/03/2010,11/03/2010 11:47:26 AM,11/03/2010 11:47:26 AM,11/03/2010 11:47:26 AM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Other,04/25/2016 02:07:46 PM,MARKET ST/4TH ST,SF,94103,B03,1,1322,3,3,3,false,,1,RESCUE SQUAD,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",103070201-RS1 -131820113,E44,13061943,Medical Incident,07/01/2013,07/01/2013,07/01/2013 09:24:32 AM,07/01/2013 09:25:27 AM,07/01/2013 09:26:03 AM,07/01/2013 09:26:22 AM,07/01/2013 09:30:38 AM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,07/01/2013 09:50:07 AM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",131820113-E44 -111860310,E20,11061570,Medical Incident,07/05/2011,07/05/2011,07/05/2011 05:04:17 PM,07/05/2011 05:05:40 PM,07/05/2011 05:06:27 PM,07/05/2011 05:07:27 PM,07/05/2011 05:10:17 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 05:26:19 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",111860310-E20 -102290081,55,10071982,Medical Incident,08/17/2010,08/17/2010,08/17/2010 08:54:06 AM,08/17/2010 08:55:45 AM,08/17/2010 08:56:03 AM,08/17/2010 08:56:20 AM,08/17/2010 09:04:37 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Patient Declined Transport,08/17/2010 09:31:32 AM,100 Block of GRATTAN ST,SF,94117,B05,12,516,2,2,2,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7638803864645, -122.450310275747)",102290081-55 -123420483,E36,12114409,Medical Incident,12/07/2012,12/07/2012,12/07/2012 09:36:06 PM,12/07/2012 09:36:50 PM,12/07/2012 09:37:06 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/07/2012 09:50:07 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",123420483-E36 -120320069,E01,12010484,Medical Incident,02/01/2012,02/01/2012,02/01/2012 08:29:48 AM,02/01/2012 08:30:38 AM,02/01/2012 08:30:51 AM,02/01/2012 08:32:26 AM,02/01/2012 08:39:42 AM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 08:48:21 AM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",120320069-E01 -121790194,85,12059617,Structure Fire,06/27/2012,06/27/2012,06/27/2012 12:50:22 PM,06/27/2012 12:51:17 PM,06/27/2012 12:51:39 PM,04/25/2016 01:57:59 PM,06/27/2012 12:55:31 PM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/27/2012 12:57:55 PM,100 Block of MARINA BLVD,SF,94123,B04,16,3452,3,3,3,true,Fire,1,MEDIC,2,4,2,Marina,"(37.8055133588924, -122.434812260931)",121790194-85 -132530345,D2,13085623,Structure Fire,09/10/2013,09/10/2013,09/10/2013 09:38:42 PM,09/10/2013 09:40:50 PM,09/10/2013 09:40:56 PM,09/10/2013 09:42:20 PM,09/10/2013 09:44:03 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 09:55:27 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,CHIEF,5,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",132530345-D2 -160670960,79,16026677,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:23:09 AM,03/07/2016 10:23:24 AM,03/07/2016 10:23:42 AM,03/07/2016 10:24:21 AM,03/07/2016 10:27:47 AM,03/07/2016 10:47:32 AM,03/07/2016 10:47:32 AM,Code 2 Transport,03/07/2016 11:21:04 AM,100 Block of SUTTER ST,San Francisco,94104,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7898368259498, -122.403344544792)",160670960-79 -160322930,55,16012700,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:27:46 PM,02/01/2016 06:28:19 PM,02/01/2016 06:28:36 PM,02/01/2016 06:29:02 PM,02/01/2016 06:39:39 PM,02/01/2016 06:59:08 PM,02/01/2016 06:59:09 PM,Code 2 Transport,02/01/2016 08:24:22 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160322930-55 -131160235,E01,13039128,Medical Incident,04/26/2013,04/26/2013,04/26/2013 06:51:46 PM,04/26/2013 06:53:08 PM,04/26/2013 06:53:22 PM,04/26/2013 06:55:13 PM,04/26/2013 06:56:33 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 07:00:52 PM,HARRISON ST/5TH ST,SF,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",131160235-E01 -123290006,66,12109260,Medical Incident,11/24/2012,11/23/2012,11/24/2012 12:33:36 AM,11/24/2012 12:36:44 AM,11/24/2012 12:37:09 AM,11/24/2012 12:37:40 AM,04/25/2016 01:55:39 PM,11/24/2012 12:58:45 AM,11/24/2012 01:12:44 AM,Code 2 Transport,11/24/2012 01:54:45 AM,BUSH ST/POLK ST,SF,94109,B04,3,1636,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",123290006-66 -160134045,65,16005380,Medical Incident,01/13/2016,01/13/2016,01/13/2016 10:07:01 PM,01/13/2016 10:08:42 PM,01/13/2016 10:12:21 PM,01/13/2016 10:12:28 PM,01/13/2016 10:25:01 PM,01/13/2016 10:42:28 PM,01/13/2016 10:58:43 PM,Code 2 Transport,01/13/2016 11:16:09 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160134045-65 -131370254,E44,13046327,Traffic Collision,05/17/2013,05/17/2013,05/17/2013 03:49:00 PM,05/17/2013 03:50:00 PM,05/17/2013 03:50:31 PM,05/17/2013 03:51:04 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/17/2013 04:07:41 PM,100 Block of ALEMANY BLVD,SF,94110,B10,42,6361,2,2,2,true,Non Life-threatening,1,ENGINE,3,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",131370254-E44 -123130091,55,12104068,Medical Incident,11/08/2012,11/08/2012,11/08/2012 08:36:20 AM,11/08/2012 08:38:27 AM,11/08/2012 08:39:05 AM,11/08/2012 08:39:36 AM,04/25/2016 01:55:54 PM,11/08/2012 08:51:16 AM,11/08/2012 09:32:55 AM,Code 3 Transport,11/08/2012 10:03:59 AM,1000 Block of WISCONSIN ST,SF,94107,B10,37,257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",123130091-55 -160563332,88,16022521,Medical Incident,02/25/2016,02/25/2016,02/25/2016 06:57:36 PM,02/25/2016 06:59:28 PM,02/25/2016 06:59:50 PM,02/25/2016 06:59:58 PM,02/25/2016 07:23:47 PM,02/25/2016 07:40:56 PM,02/25/2016 08:38:43 PM,Code 2 Transport,02/25/2016 08:52:27 PM,200 Block of LEE AVE,San Francisco,94112,B09,15,8472,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7226544394721, -122.454042001381)",160563332-88 -123450301,E11,12115419,Administrative,12/10/2012,12/10/2012,12/10/2012 03:35:42 PM,12/10/2012 03:35:48 PM,12/10/2012 03:35:59 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Fire,12/10/2012 03:36:26 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",123450301-E11 -131950305,T13,13066343,Fuel Spill,07/14/2013,07/14/2013,07/14/2013 08:31:46 PM,07/14/2013 08:33:40 PM,07/14/2013 08:34:37 PM,07/14/2013 08:36:40 PM,07/14/2013 08:41:40 PM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Fire,07/14/2013 08:57:45 PM,0 Block of FRANCISCO ST,SF,94133,B01,28,1223,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8056494557581, -122.406167794377)",131950305-T13 -110910047,94,11030032,Medical Incident,04/01/2011,03/31/2011,04/01/2011 03:09:31 AM,04/01/2011 03:10:32 AM,04/01/2011 03:11:01 AM,04/01/2011 03:11:15 AM,04/01/2011 03:16:50 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Patient Declined Transport,04/01/2011 03:24:51 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110910047-94 -160182972,62,16007366,Medical Incident,01/18/2016,01/18/2016,01/18/2016 07:57:06 PM,01/18/2016 07:58:10 PM,01/18/2016 07:58:59 PM,01/18/2016 07:59:05 PM,01/18/2016 08:07:12 PM,01/18/2016 08:30:26 PM,01/18/2016 08:39:02 PM,Code 2 Transport,01/18/2016 09:18:50 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160182972-62 -160790198,71,16031258,Medical Incident,03/19/2016,03/18/2016,03/19/2016 01:17:18 AM,03/19/2016 01:18:56 AM,03/19/2016 01:19:03 AM,03/19/2016 01:19:11 AM,03/19/2016 01:25:13 AM,03/19/2016 01:54:17 AM,03/19/2016 02:06:47 AM,Code 2 Transport,03/19/2016 02:37:55 AM,300 Block of ROOSEVELT WAY,San Francisco,94117,B05,6,5175,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7653378532182, -122.441583738163)",160790198-71 -103430309,77,10109953,Medical Incident,12/09/2010,12/09/2010,12/09/2010 04:56:18 PM,12/09/2010 04:58:11 PM,12/09/2010 04:58:21 PM,12/09/2010 04:58:33 PM,12/09/2010 05:06:39 PM,12/09/2010 05:32:39 PM,12/09/2010 05:58:52 PM,Code 2 Transport,12/09/2010 06:22:53 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",103430309-77 -121100335,T16,12036508,Structure Fire,04/19/2012,04/19/2012,04/19/2012 07:33:30 PM,04/19/2012 07:34:23 PM,04/19/2012 07:34:39 PM,04/19/2012 07:35:26 PM,04/19/2012 08:11:12 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/19/2012 08:16:36 PM,1700 Block of GREEN ST,SF,94123,B04,38,3246,3,3,3,false,Fire,1,TRUCK,8,4,2,Marina,"(37.797150187503, -122.427913713585)",121100335-T16 -160193822,65,16007820,Medical Incident,01/19/2016,01/19/2016,01/19/2016 11:13:49 PM,01/19/2016 11:14:36 PM,01/19/2016 11:14:43 PM,01/19/2016 11:14:53 PM,01/19/2016 11:19:33 PM,01/19/2016 11:38:20 PM,01/19/2016 11:55:51 PM,Code 2 Transport,01/20/2016 12:33:42 AM,1200 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6614,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7214606647015, -122.392279417619)",160193822-65 -120820386,E07,12027400,Medical Incident,03/22/2012,03/22/2012,03/22/2012 10:26:46 PM,03/22/2012 10:27:15 PM,03/22/2012 10:27:31 PM,03/22/2012 10:28:14 PM,03/22/2012 10:29:36 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/22/2012 10:34:05 PM,700 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7611631165644, -122.417171363688)",120820386-E07 -130270160,67,13009281,Medical Incident,01/27/2013,01/27/2013,01/27/2013 11:25:31 AM,01/27/2013 11:26:37 AM,01/27/2013 11:28:20 AM,01/27/2013 11:28:33 AM,01/27/2013 11:35:15 AM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 11:36:17 AM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",130270160-67 -110330030,94,11010693,Medical Incident,02/02/2011,02/01/2011,02/02/2011 02:47:08 AM,02/02/2011 02:47:27 AM,02/02/2011 02:47:52 AM,02/02/2011 02:48:15 AM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/02/2011 02:51:44 AM,600 Block of GEARY ST,SF,94109,B01,3,1462,3,3,3,true,,1,MEDIC,2,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",110330030-94 -140340305,B07,14011606,Alarms,02/03/2014,02/03/2014,02/03/2014 07:34:35 PM,02/03/2014 07:35:46 PM,02/03/2014 07:35:52 PM,02/03/2014 07:37:04 PM,02/03/2014 07:41:33 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Other,02/03/2014 07:55:16 PM,300 Block of CARL ST,SF,94117,B05,12,5145,3,3,3,false,Alarm,1,CHIEF,3,5,5,Inner Sunset,"(37.7651369312226, -122.455592494845)",140340305-B07 -160053411,71,16002165,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:44:34 PM,01/05/2016 08:47:05 PM,01/05/2016 08:47:14 PM,01/05/2016 08:47:49 PM,01/05/2016 08:56:17 PM,01/05/2016 09:09:33 PM,01/05/2016 09:32:33 PM,Code 2 Transport,01/05/2016 10:09:40 PM,4400 Block of CABRILLO ST,San Francisco,94121,B07,34,7277,3,3,3,true,Non Life-threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7733768091246, -122.506280175439)",160053411-71 -112170291,T16,11071795,Alarms,08/05/2011,08/05/2011,08/05/2011 05:57:10 PM,08/05/2011 05:58:07 PM,08/05/2011 05:58:11 PM,08/05/2011 05:59:48 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 06:11:07 PM,1300 Block of FILBERT ST,SF,94109,B01,41,1626,3,3,3,false,,1,TRUCK,3,4,2,Russian Hill,"(37.7998522915729, -122.421714875982)",112170291-T16 -140310067,E01,14010448,Medical Incident,01/31/2014,01/31/2014,01/31/2014 08:27:10 AM,01/31/2014 08:29:05 AM,01/31/2014 08:29:17 AM,01/31/2014 08:29:41 AM,01/31/2014 08:34:42 AM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/31/2014 08:36:05 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",140310067-E01 -160101237,74,16004004,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:15:11 AM,01/10/2016 11:17:02 AM,01/10/2016 11:18:13 AM,01/10/2016 11:18:28 AM,01/10/2016 11:23:05 AM,01/10/2016 11:34:14 AM,01/10/2016 11:44:23 AM,Code 2 Transport,01/10/2016 12:17:48 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",160101237-74 -123630344,B03,12121616,Alarms,12/28/2012,12/28/2012,12/28/2012 09:45:36 PM,12/28/2012 09:47:11 PM,12/28/2012 09:47:18 PM,12/28/2012 09:48:23 PM,12/28/2012 09:51:13 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 10:02:45 PM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",123630344-B03 -132740259,53,13093172,Medical Incident,10/01/2013,10/01/2013,10/01/2013 05:03:01 PM,10/01/2013 05:04:19 PM,10/01/2013 05:04:33 PM,10/01/2013 05:04:49 PM,10/01/2013 05:05:50 PM,10/01/2013 05:09:20 PM,10/01/2013 05:38:24 PM,Code 2 Transport,10/01/2013 05:51:28 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",132740259-53 -160630941,63,16024992,Medical Incident,03/03/2016,03/03/2016,03/03/2016 09:07:08 AM,03/03/2016 09:08:34 AM,03/03/2016 09:09:43 AM,03/03/2016 09:09:51 AM,03/03/2016 09:16:03 AM,03/03/2016 09:20:24 AM,03/03/2016 09:54:07 AM,Code 2 Transport,03/03/2016 10:29:32 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",160630941-63 -102290264,E38,10072126,Structure Fire,08/17/2010,08/17/2010,08/17/2010 05:23:04 PM,08/17/2010 05:23:04 PM,08/17/2010 05:23:16 PM,08/17/2010 05:25:21 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 05:26:31 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",102290264-E38 -160783893,64,16031202,Medical Incident,03/18/2016,03/18/2016,03/18/2016 10:11:55 PM,03/18/2016 10:13:33 PM,03/18/2016 10:13:47 PM,03/18/2016 10:14:06 PM,03/18/2016 10:22:30 PM,03/18/2016 10:53:20 PM,03/18/2016 11:12:07 PM,Code 2 Transport,03/18/2016 11:33:23 PM,600 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7627737268131, -122.417186682545)",160783893-64 -133510189,82,13119192,Medical Incident,12/17/2013,12/17/2013,12/17/2013 12:07:51 PM,12/17/2013 12:09:38 PM,12/17/2013 12:10:08 PM,12/17/2013 12:10:18 PM,12/17/2013 12:14:21 PM,12/17/2013 12:25:31 PM,12/17/2013 12:58:28 PM,Code 2 Transport,12/17/2013 01:02:32 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",133510189-82 -131610169,RS1,13054678,Outside Fire,06/10/2013,06/10/2013,06/10/2013 11:41:59 AM,06/10/2013 11:44:32 AM,06/10/2013 11:45:08 AM,06/10/2013 11:48:39 AM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,Other,06/10/2013 11:50:47 AM,HYDE ST/WASHINGTON ST,SF,94109,B01,41,1564,3,3,3,false,Fire,1,RESCUE SQUAD,10,1,3,Russian Hill,"(37.7936837835099, -122.417935757999)",131610169-RS1 -130250047,E33,13008524,Medical Incident,01/25/2013,01/24/2013,01/25/2013 04:23:09 AM,01/25/2013 04:23:43 AM,01/25/2013 04:24:29 AM,01/25/2013 04:26:29 AM,01/25/2013 04:29:03 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/25/2013 04:39:03 AM,600 Block of MORSE ST,SF,94112,B09,33,6216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7114316290849, -122.445165391423)",130250047-E33 -132260050,T08,13076189,Citizen Assist / Service Call,08/14/2013,08/13/2013,08/14/2013 04:56:16 AM,08/14/2013 04:58:14 AM,08/14/2013 05:01:20 AM,08/14/2013 05:03:16 AM,08/14/2013 05:08:25 AM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Fire,08/14/2013 05:23:42 AM,500 Block of BEALE ST,SF,94107,B03,8,2134,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7857367878809, -122.389124364412)",132260050-T08 -132570411,E03,13087105,Medical Incident,09/14/2013,09/14/2013,09/14/2013 11:14:31 PM,09/14/2013 11:15:53 PM,09/14/2013 11:16:13 PM,09/14/2013 11:17:30 PM,09/14/2013 11:18:27 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 11:30:03 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132570411-E03 -120830140,AM04,12027523,Medical Incident,03/23/2012,03/23/2012,03/23/2012 11:04:35 AM,03/23/2012 11:05:13 AM,03/23/2012 11:05:39 AM,03/23/2012 11:06:47 AM,03/23/2012 11:09:42 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Against Medical Advice,03/23/2012 11:49:11 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",120830140-AM04 -140310040,81,14010426,Medical Incident,01/31/2014,01/30/2014,01/31/2014 06:24:15 AM,01/31/2014 06:25:18 AM,01/31/2014 06:25:51 AM,01/31/2014 06:26:00 AM,01/31/2014 06:33:46 AM,01/31/2014 06:49:37 AM,01/31/2014 06:53:26 AM,Code 2 Transport,01/31/2014 07:17:45 AM,2300 Block of MARKET ST,SF,94114,B05,6,5252,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",140310040-81 -120220273,74,12007574,Medical Incident,01/22/2012,01/22/2012,01/22/2012 07:18:42 PM,01/22/2012 07:19:14 PM,01/22/2012 07:19:50 PM,01/22/2012 07:20:04 PM,01/22/2012 07:30:37 PM,01/22/2012 08:03:13 PM,01/22/2012 08:21:04 PM,Code 2 Transport,01/22/2012 08:48:08 PM,2200 Block of 23RD ST,SF,94107,B10,37,2556,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7544865703941, -122.402068206398)",120220273-74 -132450122,E14,13082628,Medical Incident,09/02/2013,09/02/2013,09/02/2013 09:43:07 AM,09/02/2013 09:45:31 AM,09/02/2013 09:46:38 AM,09/02/2013 09:47:49 AM,09/02/2013 09:50:08 AM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/02/2013 10:17:04 AM,500 Block of 24TH AVE,SF,94121,B07,14,7213,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7791817647436, -122.483524577803)",132450122-E14 -123370523,E33,12112471,Medical Incident,12/02/2012,12/02/2012,12/02/2012 08:23:05 PM,12/02/2012 08:24:32 PM,12/02/2012 08:25:24 PM,12/02/2012 08:26:40 PM,12/02/2012 08:30:17 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 08:46:36 PM,3100 Block of SAN JOSE AVE,SF,94112,B09,33,8357,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7086867675388, -122.458479919748)",123370523-E33 -122260323,E01,12075038,Medical Incident,08/13/2012,08/13/2012,08/13/2012 07:02:22 PM,08/13/2012 07:03:40 PM,08/13/2012 07:03:50 PM,08/13/2012 07:04:55 PM,08/13/2012 07:07:50 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 07:09:26 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",122260323-E01 -160162728,79,16006525,Medical Incident,01/16/2016,01/16/2016,01/16/2016 05:36:20 PM,01/16/2016 05:38:40 PM,01/16/2016 05:39:04 PM,01/16/2016 05:39:15 PM,01/16/2016 05:51:51 PM,01/16/2016 06:08:52 PM,01/16/2016 06:34:37 PM,Code 2 Transport,01/16/2016 07:15:48 PM,0 Block of MERCURY ST,San Francisco,94124,B10,42,6447,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7319018847034, -122.401643423217)",160162728-79 -160582326,58,16023175,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:38:47 PM,02/27/2016 03:41:35 PM,02/27/2016 03:41:51 PM,02/27/2016 03:42:09 PM,02/27/2016 03:46:53 PM,02/27/2016 04:29:17 PM,02/27/2016 04:54:58 PM,Code 2 Transport,02/27/2016 05:40:10 PM,0 Block of BADEN ST,San Francisco,94131,B09,26,8214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7305229024283, -122.439666849771)",160582326-58 -132430206,83,13082004,Medical Incident,08/31/2013,08/31/2013,08/31/2013 12:42:34 PM,08/31/2013 12:44:25 PM,08/31/2013 12:44:45 PM,08/31/2013 12:44:54 PM,08/31/2013 12:49:03 PM,08/31/2013 01:02:40 PM,08/31/2013 01:13:01 PM,Code 2 Transport,08/31/2013 01:35:13 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",132430206-83 -110520234,E05,11017272,Medical Incident,02/21/2011,02/21/2011,02/21/2011 04:27:47 PM,02/21/2011 04:28:13 PM,02/21/2011 04:29:19 PM,02/21/2011 04:34:27 PM,02/21/2011 04:36:17 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 04:39:29 PM,2000 Block of BUCHANAN ST,SF,94115,B04,38,3434,3,3,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.7888376257468, -122.430521781174)",110520234-E05 -140460041,E48,14015540,Other,02/15/2014,02/14/2014,02/15/2014 02:29:34 AM,02/15/2014 02:36:49 AM,02/15/2014 02:37:24 AM,02/15/2014 02:39:10 AM,02/15/2014 02:41:49 AM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/15/2014 02:56:43 AM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,1,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",140460041-E48 -160572079,79,16022785,Medical Incident,02/26/2016,02/26/2016,02/26/2016 02:29:25 PM,02/26/2016 02:29:34 PM,02/26/2016 02:30:05 PM,02/26/2016 02:31:09 PM,02/26/2016 02:31:21 PM,02/26/2016 03:03:56 PM,02/26/2016 03:26:08 PM,Code 2 Transport,02/26/2016 03:47:30 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160572079-79 -160484163,79,16019553,Medical Incident,02/17/2016,02/17/2016,02/17/2016 11:36:41 PM,02/17/2016 11:39:06 PM,02/17/2016 11:39:21 PM,02/17/2016 11:39:35 PM,02/18/2016 12:06:01 AM,02/18/2016 12:06:03 AM,02/18/2016 12:10:03 AM,Code 3 Transport,02/18/2016 12:59:58 AM,0 Block of PARKER AVE,San Francisco,94118,B07,10,4436,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7851338249754, -122.454765226355)",160484163-79 -110650231,72,11021492,Medical Incident,03/06/2011,03/06/2011,03/06/2011 02:17:20 PM,03/06/2011 02:19:47 PM,03/06/2011 02:20:05 PM,03/06/2011 02:20:22 PM,03/06/2011 02:27:32 PM,03/06/2011 02:53:40 PM,03/06/2011 02:58:23 PM,Code 3 Transport,03/06/2011 03:26:12 PM,1200 Block of HAIGHT ST,SF,94117,B05,21,4353,1,1,2,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",110650231-72 -131110116,KM01,13037339,Medical Incident,04/21/2013,04/21/2013,04/21/2013 11:22:14 AM,04/21/2013 11:26:09 AM,04/21/2013 11:26:32 AM,04/21/2013 11:27:05 AM,04/21/2013 11:35:57 AM,04/21/2013 11:53:14 AM,04/21/2013 11:59:07 AM,Code 2 Transport,04/21/2013 12:26:55 PM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",131110116-KM01 -160853374,59,16033923,Medical Incident,03/25/2016,03/25/2016,03/25/2016 07:42:33 PM,03/25/2016 07:42:33 PM,03/25/2016 07:42:43 PM,03/25/2016 07:42:54 PM,03/25/2016 07:50:48 PM,03/25/2016 08:01:43 PM,03/25/2016 08:08:59 PM,Code 2 Transport,03/25/2016 08:41:24 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160853374-59 -140670068,E09,14022594,Medical Incident,03/08/2014,03/07/2014,03/08/2014 06:50:29 AM,03/08/2014 06:52:19 AM,03/08/2014 06:53:40 AM,03/08/2014 06:55:58 AM,03/08/2014 06:58:05 AM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Unable to Locate,03/08/2014 07:01:23 AM,100 Block of VERMONT ST,SAN FRANCISCO,94103,B02,29,2422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Mission Bay,"(37.76789826103, -122.404743414302)",140670068-E09 -160100867,71,16003967,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:52:33 AM,01/10/2016 08:53:56 AM,01/10/2016 08:57:58 AM,01/10/2016 08:58:38 AM,01/10/2016 09:02:26 AM,01/10/2016 09:17:33 AM,01/10/2016 09:30:09 AM,Code 2 Transport,01/10/2016 10:24:29 AM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160100867-71 -131520123,67,13051446,Medical Incident,06/01/2013,06/01/2013,06/01/2013 10:16:11 AM,06/01/2013 10:16:29 AM,06/01/2013 10:17:02 AM,06/01/2013 10:17:19 AM,06/01/2013 10:25:06 AM,06/01/2013 10:45:48 AM,06/01/2013 10:57:56 AM,Code 2 Transport,06/01/2013 11:27:34 AM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",131520123-67 -132970155,T01,13100852,Structure Fire,10/24/2013,10/24/2013,10/24/2013 12:07:39 PM,10/24/2013 12:08:32 PM,10/24/2013 12:08:54 PM,10/24/2013 12:11:56 PM,10/24/2013 12:13:19 PM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 12:14:27 PM,400 Block of GEARY ST,SF,94102,B01,1,1452,3,3,3,false,Fire,1,TRUCK,7,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",132970155-T01 -120640029,E36,12021006,Medical Incident,03/04/2012,03/03/2012,03/04/2012 01:54:09 AM,03/04/2012 01:54:22 AM,03/04/2012 01:55:26 AM,03/04/2012 01:55:41 AM,03/04/2012 01:58:23 AM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,04/25/2016 01:59:51 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",120640029-E36 -132070318,67,13070200,Medical Incident,07/26/2013,07/26/2013,07/26/2013 08:25:33 PM,07/26/2013 08:26:34 PM,07/26/2013 08:28:26 PM,07/26/2013 08:28:55 PM,07/26/2013 08:40:52 PM,07/26/2013 08:58:20 PM,07/26/2013 09:18:39 PM,Code 2 Transport,07/26/2013 10:05:22 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",132070318-67 -132620271,79,13088816,Medical Incident,09/19/2013,09/19/2013,09/19/2013 04:10:54 PM,09/19/2013 04:12:19 PM,09/19/2013 04:12:30 PM,09/19/2013 04:13:07 PM,09/19/2013 04:21:18 PM,09/19/2013 04:41:23 PM,09/19/2013 05:23:18 PM,Code 2 Transport,09/19/2013 05:34:07 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",132620271-79 -113170084,96,11105237,Medical Incident,11/13/2011,11/12/2011,11/13/2011 05:12:14 AM,11/13/2011 05:12:58 AM,11/13/2011 05:13:10 AM,11/13/2011 05:13:36 AM,11/13/2011 05:37:56 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Patient Declined Transport,11/13/2011 05:42:41 AM,300 Block of BRAZIL AVE,SF,94112,B09,43,6127,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7233114402099, -122.432068293948)",113170084-96 -102250183,E15,10070852,Medical Incident,08/13/2010,08/13/2010,08/13/2010 03:28:12 PM,08/13/2010 03:28:46 PM,08/13/2010 03:29:44 PM,08/13/2010 03:30:50 PM,08/13/2010 03:34:07 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Patient Declined Transport,08/13/2010 03:47:22 PM,MISSION ST/SENECA AV,SF,94112,B09,15,8331,3,2,2,true,,1,ENGINE,1,9,11,Excelsior,"(37.7176653093755, -122.440106606888)",102250183-E15 -133350053,68,13113462,Medical Incident,12/01/2013,11/30/2013,12/01/2013 04:04:00 AM,12/01/2013 04:05:00 AM,12/01/2013 04:05:25 AM,12/01/2013 04:05:33 AM,12/01/2013 04:11:23 AM,12/01/2013 04:32:59 AM,12/01/2013 04:45:05 AM,Code 2 Transport,12/01/2013 05:15:23 AM,0 Block of GARCIA AVE,SF,94127,B08,39,8643,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7448291585327, -122.459128981675)",133350053-68 -160610743,73,16024219,Medical Incident,03/01/2016,03/01/2016,03/01/2016 08:27:57 AM,03/01/2016 08:32:25 AM,03/01/2016 08:32:56 AM,03/01/2016 08:34:20 AM,03/01/2016 08:51:50 AM,03/01/2016 08:56:22 AM,03/01/2016 09:13:14 AM,Code 2 Transport,03/01/2016 09:35:30 AM,MISSION ST/RUSSIA AV,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7215750031455, -122.437149523285)",160610743-73 -160721926,79,16028624,Medical Incident,03/12/2016,03/12/2016,03/12/2016 02:41:04 PM,03/12/2016 02:41:04 PM,03/12/2016 02:41:22 PM,03/12/2016 02:41:28 PM,03/12/2016 02:44:38 PM,03/12/2016 03:01:06 PM,03/12/2016 03:21:43 PM,Code 2 Transport,03/12/2016 03:55:15 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160721926-79 -121600296,AM06,12053032,Medical Incident,06/08/2012,06/08/2012,06/08/2012 05:25:38 PM,06/08/2012 05:27:21 PM,06/08/2012 05:30:41 PM,06/08/2012 05:31:19 PM,06/08/2012 05:48:51 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,No Merit,06/08/2012 06:02:30 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",121600296-AM06 -160342929,53,16013534,Medical Incident,02/03/2016,02/03/2016,02/03/2016 06:47:46 PM,02/03/2016 06:48:19 PM,02/03/2016 06:48:58 PM,02/03/2016 06:49:36 PM,02/03/2016 07:19:27 PM,02/03/2016 07:19:28 PM,02/03/2016 07:32:47 PM,Code 2 Transport,02/03/2016 08:04:22 PM,1000 Block of IRVING ST,San Francisco,94122,B08,22,7345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7638646243098, -122.468982718399)",160342929-53 -130740375,T14,13024844,Alarms,03/15/2013,03/15/2013,03/15/2013 09:55:40 PM,03/15/2013 09:58:45 PM,03/15/2013 09:59:52 PM,03/15/2013 10:01:45 PM,03/15/2013 10:04:28 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 10:20:22 PM,600 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7232,3,3,3,false,Alarm,1,TRUCK,1,7,2,Seacliff,"(37.7862422734629, -122.490358509112)",130740375-T14 -160701697,56,16027856,Medical Incident,03/10/2016,03/10/2016,03/10/2016 12:56:36 PM,03/10/2016 12:58:08 PM,03/10/2016 12:58:33 PM,03/10/2016 12:58:45 PM,03/10/2016 01:08:37 PM,03/10/2016 01:22:31 PM,03/10/2016 01:53:14 PM,Code 2 Transport,03/10/2016 02:08:14 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160701697-56 -132970337,E03,13101006,Medical Incident,10/24/2013,10/24/2013,10/24/2013 08:13:02 PM,10/24/2013 08:14:41 PM,10/24/2013 08:14:52 PM,10/24/2013 08:15:52 PM,10/24/2013 08:18:38 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/24/2013 08:19:24 PM,HYDE ST/TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",132970337-E03 -131580445,78,13053845,Medical Incident,06/07/2013,06/07/2013,06/07/2013 11:15:18 PM,06/07/2013 11:17:00 PM,06/07/2013 11:18:01 PM,06/07/2013 11:19:18 PM,06/07/2013 11:24:25 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Patient Declined Transport,06/08/2013 12:09:43 AM,1200 Block of NEWHALL ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7365653368668, -122.391311377651)",131580445-78 -160563147,AM16,16022501,Medical Incident,02/25/2016,02/25/2016,02/25/2016 06:04:19 PM,02/25/2016 06:05:15 PM,02/25/2016 06:05:43 PM,02/25/2016 06:06:27 PM,02/25/2016 06:18:23 PM,02/25/2016 06:39:46 PM,02/25/2016 07:04:24 PM,Code 2 Transport,02/25/2016 07:32:22 PM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",160563147-AM16 -160430527,53,16017174,Medical Incident,02/12/2016,02/11/2016,02/12/2016 07:02:35 AM,02/12/2016 07:04:53 AM,02/12/2016 07:05:52 AM,02/12/2016 07:06:03 AM,02/12/2016 07:13:21 AM,02/12/2016 07:41:41 AM,02/12/2016 07:57:43 AM,Code 2 Transport,02/12/2016 08:47:21 AM,2000 Block of FRANKLIN ST,San Francisco,94109,B04,38,3226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7932751428357, -122.424674415127)",160430527-53 -111780221,91,11058805,Structure Fire,06/27/2011,06/27/2011,06/27/2011 02:29:50 PM,06/27/2011 02:30:52 PM,06/27/2011 02:31:24 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 02:37:20 PM,1500 Block of SACRAMENTO ST,SF,94109,B01,41,1563,3,3,3,true,,1,MEDIC,7,1,3,Nob Hill,"(37.7917592754649, -122.418390500192)",111780221-91 -160181084,75,16007184,Medical Incident,01/18/2016,01/18/2016,01/18/2016 10:27:33 AM,01/18/2016 10:28:42 AM,01/18/2016 10:28:54 AM,01/18/2016 10:29:07 AM,01/18/2016 10:35:10 AM,01/18/2016 10:42:25 AM,01/18/2016 10:42:25 AM,Code 2 Transport,01/18/2016 11:45:25 AM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",160181084-75 -160100794,75,16003953,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:18:17 AM,01/10/2016 08:19:44 AM,01/10/2016 08:20:15 AM,01/10/2016 08:20:27 AM,01/10/2016 08:29:41 AM,01/10/2016 08:44:23 AM,01/10/2016 09:02:08 AM,Code 2 Transport,01/10/2016 09:46:22 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7613401387036, -122.46390786542)",160100794-75 -111780213,T06,11058797,Structure Fire,06/27/2011,06/27/2011,06/27/2011 01:55:11 PM,06/27/2011 01:55:11 PM,06/27/2011 01:55:24 PM,06/27/2011 01:56:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 01:59:13 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",111780213-T06 -110790370,86,11026205,Medical Incident,03/20/2011,03/20/2011,03/20/2011 10:19:14 PM,03/20/2011 10:19:53 PM,03/20/2011 10:20:09 PM,03/20/2011 10:20:23 PM,03/20/2011 10:22:32 PM,03/20/2011 10:47:34 PM,03/20/2011 10:58:37 PM,Code 2 Transport,03/21/2011 12:00:01 AM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",110790370-86 -160560280,70,16022234,Medical Incident,02/25/2016,02/24/2016,02/25/2016 03:16:55 AM,02/25/2016 03:16:55 AM,02/25/2016 03:19:44 AM,02/25/2016 03:22:32 AM,02/25/2016 03:26:01 AM,02/25/2016 03:40:12 AM,02/25/2016 03:48:08 AM,Code 2 Transport,02/25/2016 04:29:06 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160560280-70 -120440020,93,12014567,Medical Incident,02/13/2012,02/12/2012,02/13/2012 02:03:00 AM,02/13/2012 02:04:38 AM,02/13/2012 02:04:51 AM,02/13/2012 02:04:57 AM,02/13/2012 02:25:01 AM,02/13/2012 02:44:23 AM,02/13/2012 02:51:16 AM,Code 2 Transport,02/13/2012 03:15:07 AM,600 Block of LAGUNA ST,SF,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",120440020-93 -103550160,E36,10113938,Medical Incident,12/21/2010,12/21/2010,12/21/2010 12:25:37 PM,12/21/2010 12:28:16 PM,12/21/2010 12:28:35 PM,04/25/2016 02:07:00 PM,12/21/2010 12:30:01 PM,04/25/2016 02:07:00 PM,12/21/2010 12:31:13 PM,Other,12/21/2010 01:16:34 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,,1,ENGINE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",103550160-E36 -120940303,73,12031257,Medical Incident,04/03/2012,04/03/2012,04/03/2012 07:16:42 PM,04/03/2012 07:17:07 PM,04/03/2012 07:17:56 PM,04/03/2012 07:22:03 PM,04/25/2016 01:59:21 PM,04/03/2012 07:43:59 PM,04/03/2012 08:10:36 PM,Code 2 Transport,04/03/2012 08:25:55 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",120940303-73 -160291972,52,16011466,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:07:06 PM,01/29/2016 02:08:49 PM,01/29/2016 02:09:52 PM,01/29/2016 02:10:27 PM,01/29/2016 02:20:58 PM,01/29/2016 02:29:19 PM,01/29/2016 02:46:28 PM,Code 2 Transport,01/29/2016 03:28:49 PM,0 Block of DEDMAN CT,San Francisco,94124,B10,25,6522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7368469604958, -122.384907106098)",160291972-52 -160671092,62,16026699,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:04:11 AM,03/07/2016 11:06:10 AM,03/07/2016 11:11:11 AM,03/07/2016 11:12:08 AM,03/07/2016 11:21:47 AM,03/07/2016 11:39:11 AM,03/07/2016 12:05:29 PM,Code 2 Transport,03/07/2016 12:41:01 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160671092-62 -102830060,73,10089970,Medical Incident,10/10/2010,10/09/2010,10/10/2010 04:42:45 AM,10/10/2010 04:44:01 AM,10/10/2010 04:44:20 AM,10/10/2010 04:45:03 AM,10/10/2010 04:49:10 AM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Unable to Locate,10/10/2010 04:55:07 AM,1200 Block of MISSION ST,SF,94103,B02,36,2336,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",102830060-73 -110730019,89,11023885,Medical Incident,03/14/2011,03/13/2011,03/14/2011 01:57:51 AM,03/14/2011 01:58:09 AM,03/14/2011 01:58:33 AM,03/14/2011 01:59:09 AM,03/14/2011 02:02:42 AM,03/14/2011 02:17:22 AM,03/14/2011 02:28:07 AM,Code 2 Transport,03/14/2011 03:04:15 AM,GOUGH ST/PACIFIC AV,SF,94109,B04,38,3251,3,3,3,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.7943975481114, -122.426514001375)",110730019-89 -121970287,E32,12065604,Medical Incident,07/15/2012,07/15/2012,07/15/2012 07:39:13 PM,07/15/2012 07:43:40 PM,07/15/2012 07:44:33 PM,07/15/2012 07:46:01 PM,07/15/2012 07:47:58 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/15/2012 07:51:12 PM,MISSION ST/CORTLAND AV,SF,94110,B06,32,5626,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7410274087506, -122.422840577347)",121970287-E32 -160470927,AM02,16018846,Medical Incident,02/16/2016,02/16/2016,02/16/2016 09:02:40 AM,02/16/2016 09:05:57 AM,02/16/2016 09:06:40 AM,02/16/2016 09:07:04 AM,02/16/2016 09:21:22 AM,02/16/2016 09:40:06 AM,02/16/2016 10:21:37 AM,Code 2 Transport,02/16/2016 10:41:35 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160470927-AM02 -133490322,T16,13118597,Alarms,12/15/2013,12/15/2013,12/15/2013 06:45:27 PM,12/15/2013 06:47:41 PM,12/15/2013 06:47:51 PM,12/15/2013 06:49:13 PM,12/15/2013 06:52:10 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 06:53:41 PM,3200 Block of GOUGH ST,SF,94123,B04,16,3243,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8032501811991, -122.428373636509)",133490322-T16 -130400381,E09,13013845,Medical Incident,02/09/2013,02/09/2013,02/09/2013 10:18:25 PM,02/09/2013 10:19:10 PM,02/09/2013 10:19:27 PM,02/09/2013 10:21:19 PM,02/09/2013 10:23:41 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/09/2013 10:27:01 PM,3000 Block of 26TH ST,SF,94110,B06,9,5615,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7495721300101, -122.410215105411)",130400381-E09 -160403649,AM20,16016225,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:42:14 PM,02/09/2016 09:42:14 PM,02/09/2016 09:47:16 PM,02/09/2016 09:47:38 PM,02/09/2016 09:54:15 PM,02/09/2016 09:59:34 PM,02/09/2016 10:12:42 PM,Code 2 Transport,02/09/2016 10:33:24 PM,500 Block of VISITACION AVE,San Francisco,94134,B10,44,6255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7104941857085, -122.404740399674)",160403649-AM20 -160711985,65,16028259,Medical Incident,03/11/2016,03/11/2016,03/11/2016 02:15:23 PM,03/11/2016 02:17:13 PM,03/11/2016 02:17:21 PM,03/11/2016 02:18:05 PM,03/11/2016 02:27:46 PM,03/11/2016 02:29:16 PM,03/11/2016 03:05:10 PM,Code 2 Transport,03/11/2016 03:28:32 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760543061938, -122.414393004759)",160711985-65 -160891444,82,16035307,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:18:36 AM,03/29/2016 11:19:34 AM,03/29/2016 11:19:56 AM,03/29/2016 11:19:56 AM,03/29/2016 11:52:27 AM,03/29/2016 11:52:29 AM,03/29/2016 12:20:17 PM,Code 2 Transport,03/29/2016 12:48:37 PM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160891444-82 -133390290,T03,13114969,Alarms,12/05/2013,12/05/2013,12/05/2013 05:17:56 PM,12/05/2013 05:19:02 PM,12/05/2013 05:19:11 PM,12/05/2013 05:20:53 PM,12/05/2013 05:22:35 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 05:32:55 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7855629695287, -122.412993783039)",133390290-T03 -110450374,RC1,11015092,Medical Incident,02/14/2011,02/14/2011,02/14/2011 10:21:48 PM,02/14/2011 10:22:46 PM,02/14/2011 10:23:20 PM,02/14/2011 10:26:43 PM,02/14/2011 10:32:26 PM,02/14/2011 10:57:00 PM,02/14/2011 11:08:51 PM,Other,02/14/2011 11:34:28 PM,1500 Block of FILBERT ST,SF,94123,B04,16,3146,3,E,3,false,,1,RESCUE CAPTAIN,2,4,2,Marina,"(37.7993258680494, -122.424981100027)",110450374-RC1 -160610191,56,16024155,Medical Incident,03/01/2016,02/29/2016,03/01/2016 02:06:20 AM,03/01/2016 02:06:20 AM,03/01/2016 02:08:02 AM,03/01/2016 02:08:12 AM,03/01/2016 02:11:26 AM,03/01/2016 02:19:04 AM,03/01/2016 02:47:22 AM,Code 2 Transport,03/01/2016 03:22:01 AM,0 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8611,B,B,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7403329886376, -122.466448582438)",160610191-56 -122600046,E13,12085820,Structure Fire,09/16/2012,09/15/2012,09/16/2012 02:32:10 AM,09/16/2012 02:32:10 AM,09/16/2012 02:32:38 AM,09/16/2012 02:34:41 AM,09/16/2012 02:37:31 AM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 02:37:38 AM,GRANT AV/CLAY ST,SF,94108,B01,13,1313,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7942636257508, -122.406304988112)",122600046-E13 -122610288,RS1,12086320,Structure Fire,09/17/2012,09/17/2012,09/17/2012 08:28:33 PM,09/17/2012 08:29:40 PM,09/17/2012 08:29:45 PM,09/17/2012 08:33:30 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,Other,09/17/2012 08:38:49 PM,400 Block of SHRADER ST,SF,94117,B05,12,4544,3,3,3,false,Fire,1,RESCUE SQUAD,9,5,5,Haight Ashbury,"(37.7707625335991, -122.452216807745)",122610288-RS1 -102350411,RC2,10074145,Medical Incident,08/23/2010,08/23/2010,08/23/2010 09:11:16 PM,08/23/2010 09:11:16 PM,08/23/2010 09:11:54 PM,08/23/2010 09:13:01 PM,08/23/2010 09:16:47 PM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/23/2010 09:18:22 PM,2200 Block of GOLDEN GATE AVE,SF,94118,B05,21,4462,E,E,3,true,,1,RESCUE CAPTAIN,2,5,1,Lone Mountain/USF,"(37.7776618791276, -122.447335399434)",102350411-RC2 -160421274,KM09,16016813,Traffic Collision,02/11/2016,02/11/2016,02/11/2016 10:39:20 AM,02/11/2016 10:39:52 AM,02/11/2016 10:40:05 AM,02/11/2016 10:40:43 AM,02/11/2016 10:52:41 AM,02/11/2016 10:52:43 AM,02/11/2016 11:06:31 AM,Code 3 Transport,02/11/2016 12:04:16 PM,800 Block of CHESTNUT ST,San Francisco,94133,B01,28,1515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,2,Russian Hill,"(37.8032958939244, -122.417342092418)",160421274-KM09 -160453316,61,16018307,Medical Incident,02/14/2016,02/14/2016,02/14/2016 09:42:24 PM,02/14/2016 09:42:24 PM,02/14/2016 09:42:49 PM,02/14/2016 09:43:07 PM,02/14/2016 09:49:33 PM,02/14/2016 10:05:47 PM,02/14/2016 10:12:34 PM,Code 2 Transport,02/14/2016 10:41:38 PM,1500 Block of 19TH AVE,San Francisco,94122,B08,22,7423,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7589078873421, -122.476606690049)",160453316-61 -160021376,71,16000717,Medical Incident,01/02/2016,01/02/2016,01/02/2016 12:06:41 PM,01/02/2016 12:07:02 PM,01/02/2016 12:07:22 PM,01/02/2016 12:07:32 PM,01/02/2016 12:11:14 PM,01/02/2016 12:42:24 PM,01/02/2016 12:51:17 PM,Code 2 Transport,01/02/2016 01:32:55 PM,0 Block of OCEAN AVE,San Francisco,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7237942596577, -122.435907357723)",160021376-71 -130790219,68,13026427,Medical Incident,03/20/2013,03/20/2013,03/20/2013 02:49:51 PM,03/20/2013 02:50:17 PM,03/20/2013 02:51:02 PM,03/20/2013 02:51:43 PM,03/20/2013 03:29:10 PM,03/20/2013 03:29:40 PM,03/20/2013 04:07:45 PM,Code 2 Transport,03/20/2013 04:29:56 PM,100 Block of LARKIN ST,SF,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",130790219-68 -130390252,B09,13013364,Other,02/08/2013,02/08/2013,02/08/2013 03:12:11 PM,02/08/2013 03:13:03 PM,02/08/2013 03:13:14 PM,02/08/2013 03:17:16 PM,02/08/2013 03:57:00 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Other,02/08/2013 04:23:14 PM,SILVER AV/MISSION ST,SF,94112,B09,32,6113,3,3,3,false,Alarm,1,CHIEF,1,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",130390252-B09 -102410329,64,10076146,Medical Incident,08/29/2010,08/29/2010,08/29/2010 08:57:37 PM,08/29/2010 08:59:22 PM,08/29/2010 09:00:45 PM,04/25/2016 02:08:50 PM,08/29/2010 09:10:28 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,No Merit,08/29/2010 09:23:34 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",102410329-64 -140050197,E36,14001815,Medical Incident,01/05/2014,01/05/2014,01/05/2014 01:50:52 PM,01/05/2014 01:50:52 PM,01/05/2014 01:53:33 PM,01/05/2014 01:54:44 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 02:00:15 PM,FULTON ST/OCTAVIA ST,SF,94102,B02,36,3264,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7785379278328, -122.424998168099)",140050197-E36 -130220037,E36,13007468,Medical Incident,01/22/2013,01/21/2013,01/22/2013 03:25:43 AM,01/22/2013 03:27:35 AM,01/22/2013 03:29:04 AM,01/22/2013 03:32:26 AM,01/22/2013 03:33:18 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 03:41:07 AM,1200 Block of MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",130220037-E36 -123600306,88,12120622,Medical Incident,12/25/2012,12/25/2012,12/25/2012 09:40:12 PM,12/25/2012 09:42:18 PM,12/25/2012 09:43:24 PM,12/25/2012 09:43:33 PM,12/25/2012 09:46:59 PM,12/25/2012 09:59:04 PM,12/25/2012 10:12:19 PM,Code 2 Transport,12/25/2012 10:58:00 PM,2800 Block of VAN NESS AVE,SF,94123,B04,16,3145,2,3,3,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8017750305034, -122.424806563149)",123600306-88 -112050340,E44,11067880,Medical Incident,07/24/2011,07/24/2011,07/24/2011 09:27:04 PM,07/24/2011 09:27:52 PM,07/24/2011 09:28:02 PM,07/24/2011 09:28:52 PM,07/24/2011 09:33:15 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/24/2011 09:54:20 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",112050340-E44 -110840312,RC1,11027776,Medical Incident,03/25/2011,03/25/2011,03/25/2011 06:02:56 PM,03/25/2011 06:04:56 PM,03/25/2011 06:05:47 PM,04/25/2016 02:05:27 PM,03/25/2011 06:11:13 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 06:20:23 PM,200 Block of RITCH ST,SF,94107,B03,8,2174,3,3,3,true,,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.780239398249, -122.395660355295)",110840312-RC1 -111800003,T07,11059278,Structure Fire,06/29/2011,06/28/2011,06/29/2011 12:08:37 AM,06/29/2011 12:08:38 AM,06/29/2011 12:08:53 AM,06/29/2011 12:10:47 AM,06/29/2011 12:13:11 AM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/29/2011 12:40:32 AM,2400 Block of 22ND ST,SF,94110,B10,37,2551,3,3,3,false,,1,TRUCK,3,10,10,Potrero Hill,"(37.7569910867324, -122.405001139718)",111800003-T07 -130470139,B01,13015960,Fuel Spill,02/16/2013,02/16/2013,02/16/2013 09:04:49 AM,02/16/2013 09:07:41 AM,02/16/2013 09:08:36 AM,02/16/2013 09:10:30 AM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/16/2013 09:27:23 AM,400 Block of SPEAR ST,SF,94105,B03,35,2113,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.788336837763, -122.388899507163)",130470139-B01 -160701984,52,16027882,Medical Incident,03/10/2016,03/10/2016,03/10/2016 02:13:59 PM,03/10/2016 02:15:39 PM,03/10/2016 02:17:29 PM,03/10/2016 02:17:38 PM,03/10/2016 02:26:56 PM,03/10/2016 02:46:49 PM,03/10/2016 02:53:02 PM,Code 2 Transport,03/10/2016 03:15:06 PM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",160701984-52 -160322371,67,16012640,Medical Incident,02/01/2016,02/01/2016,02/01/2016 03:55:09 PM,02/01/2016 03:55:35 PM,02/01/2016 03:55:46 PM,02/01/2016 03:56:51 PM,02/01/2016 03:59:06 PM,02/01/2016 04:11:56 PM,02/01/2016 04:22:16 PM,Code 2 Transport,02/01/2016 05:03:27 PM,3300 Block of 22ND ST,San Francisco,94110,B06,11,5471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7552738020119, -122.422313025926)",160322371-67 -132790056,E01,13094781,Medical Incident,10/06/2013,10/05/2013,10/06/2013 02:16:31 AM,10/06/2013 02:18:13 AM,10/06/2013 02:18:46 AM,10/06/2013 02:19:44 AM,10/06/2013 02:23:02 AM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/06/2013 02:25:07 AM,1200 Block of MARKET ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7780365108208, -122.415429100912)",132790056-E01 -140950330,58,14032073,Medical Incident,04/05/2014,04/05/2014,04/05/2014 07:52:58 PM,04/05/2014 07:53:27 PM,04/05/2014 07:53:35 PM,04/05/2014 07:53:59 PM,04/05/2014 07:59:14 PM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,No Merit,04/05/2014 08:01:50 PM,900 Block of HAMPSHIRE ST,SAN FRANCISCO,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Potrero Hill,"(37.7569109782313, -122.407609182364)",140950330-58 -113140232,E12,11104368,Medical Incident,11/10/2011,11/10/2011,11/10/2011 03:08:44 PM,11/10/2011 03:09:38 PM,11/10/2011 03:09:53 PM,11/10/2011 03:10:45 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,No Merit,11/10/2011 03:23:29 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",113140232-E12 -132270308,AM14,13076706,Medical Incident,08/15/2013,08/15/2013,08/15/2013 06:56:08 PM,08/15/2013 06:57:05 PM,08/15/2013 06:57:31 PM,08/15/2013 06:58:28 PM,08/15/2013 07:02:48 PM,08/15/2013 07:15:11 PM,08/15/2013 07:29:48 PM,Code 2 Transport,08/15/2013 08:04:35 PM,MISSION ST/15TH ST,SF,94103,B02,36,5279,3,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7666736014927, -122.419825235405)",132270308-AM14 -123320158,E17,12110333,Medical Incident,11/27/2012,11/27/2012,11/27/2012 12:25:11 PM,11/27/2012 12:25:46 PM,11/27/2012 12:25:56 PM,11/27/2012 12:27:30 PM,11/27/2012 12:29:26 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/27/2012 12:40:19 PM,0 Block of HUDSON AVE,SF,94124,B10,17,6626,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324208265708, -122.379091692307)",123320158-E17 -132910184,B07,13099000,Structure Fire,10/18/2013,10/18/2013,10/18/2013 12:00:08 PM,10/18/2013 12:01:06 PM,10/18/2013 12:01:22 PM,10/18/2013 12:02:33 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/18/2013 12:06:39 PM,2800 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,false,Alarm,1,CHIEF,8,4,2,Pacific Heights,"(37.78801561135, -122.441285735387)",132910184-B07 -130290201,E08,13009936,Structure Fire,01/29/2013,01/29/2013,01/29/2013 01:06:08 PM,01/29/2013 01:08:08 PM,01/29/2013 01:08:20 PM,01/29/2013 01:09:27 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/29/2013 01:26:46 PM,0 Block of CLARENCE PL,SF,94107,B03,8,2172,3,3,3,true,Alarm,1,ENGINE,10,3,6,Financial District/South Beach,"(37.7796198209959, -122.39254196336)",130290201-E08 -160522829,89,16020927,Medical Incident,02/21/2016,02/21/2016,02/21/2016 06:39:24 PM,02/21/2016 06:42:37 PM,02/21/2016 06:43:00 PM,02/21/2016 06:45:21 PM,02/21/2016 06:55:55 PM,02/21/2016 07:11:23 PM,02/21/2016 07:27:48 PM,Code 2 Transport,02/21/2016 07:53:27 PM,0 Block of POPE ST,San Francisco,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7150417603203, -122.441705850451)",160522829-89 -160862297,KM12,16034228,Medical Incident,03/26/2016,03/26/2016,03/26/2016 03:33:17 PM,03/26/2016 03:38:23 PM,03/26/2016 03:38:53 PM,03/26/2016 03:40:02 PM,03/26/2016 03:44:42 PM,03/26/2016 04:03:11 PM,03/26/2016 04:23:38 PM,Code 2 Transport,03/26/2016 04:53:47 PM,200 Block of AMHERST ST,San Francisco,94134,B09,42,6147,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7265412602599, -122.416188644141)",160862297-KM12 -110230046,T10,11007469,Alarms,01/23/2011,01/22/2011,01/23/2011 03:34:41 AM,01/23/2011 03:36:03 AM,01/23/2011 03:37:02 AM,01/23/2011 03:38:35 AM,01/23/2011 03:41:35 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/23/2011 03:52:12 AM,2900 Block of CLAY ST,SF,94115,B04,10,4232,3,3,3,false,,1,TRUCK,2,4,2,Pacific Heights,"(37.7897133756957, -122.441630202765)",110230046-T10 -160603795,70,16024125,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:11:58 PM,02/29/2016 11:13:57 PM,02/29/2016 11:14:21 PM,02/29/2016 11:14:59 PM,02/29/2016 11:39:25 PM,02/29/2016 11:39:34 PM,02/29/2016 11:49:38 PM,Code 2 Transport,03/01/2016 12:26:05 AM,400 Block of JESSIE ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7820442091855, -122.408519525275)",160603795-70 -102310166,KM01,10072686,Medical Incident,08/19/2010,08/19/2010,08/19/2010 12:24:20 PM,08/19/2010 12:25:39 PM,08/19/2010 12:25:49 PM,08/19/2010 12:26:13 PM,08/19/2010 12:31:49 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Patient Declined Transport,08/19/2010 12:52:23 PM,MISSION ST/22ND ST,SF,94110,B06,7,5472,2,2,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",102310166-KM01 -121540323,E01,12051110,Outside Fire,06/02/2012,06/02/2012,06/02/2012 09:08:46 PM,06/02/2012 09:10:33 PM,06/02/2012 09:10:54 PM,04/25/2016 01:58:24 PM,06/02/2012 09:13:05 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 09:16:51 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,Fire,1,ENGINE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",121540323-E01 -132790375,84,13095062,Medical Incident,10/06/2013,10/06/2013,10/06/2013 07:32:24 PM,10/06/2013 07:32:59 PM,10/06/2013 07:35:36 PM,10/06/2013 07:36:04 PM,10/06/2013 07:39:21 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/06/2013 07:41:45 PM,1000 Block of GUERRERO ST,SF,94110,B06,11,5471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7539748976935, -122.422954531475)",132790375-84 -160823767,79,16032751,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:25:12 PM,03/22/2016 09:25:45 PM,03/22/2016 09:25:56 PM,03/22/2016 09:27:58 PM,03/22/2016 09:31:51 PM,03/22/2016 09:49:41 PM,03/22/2016 09:58:26 PM,Code 2 Transport,03/22/2016 10:27:32 PM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",160823767-79 -110390145,RS2,11012899,Structure Fire,02/08/2011,02/08/2011,02/08/2011 11:28:37 AM,02/08/2011 11:29:57 AM,02/08/2011 11:30:13 AM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 11:36:28 AM,3600 Block of FOLSOM ST,SF,94110,B06,32,5717,3,3,3,false,,1,RESCUE SQUAD,9,10,9,Bernal Heights,"(37.7408768610165, -122.413190763492)",110390145-RS2 -120410140,E13,12013622,Medical Incident,02/10/2012,02/10/2012,02/10/2012 10:48:55 AM,02/10/2012 10:50:28 AM,02/10/2012 10:51:32 AM,02/10/2012 10:51:43 AM,02/10/2012 10:54:40 AM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 11:10:09 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",120410140-E13 -140290371,85,14010052,Medical Incident,01/29/2014,01/29/2014,01/29/2014 11:25:10 PM,01/29/2014 11:26:14 PM,01/29/2014 11:26:30 PM,01/29/2014 11:26:58 PM,01/29/2014 11:33:06 PM,01/29/2014 11:43:01 PM,01/29/2014 11:53:44 PM,Code 2 Transport,01/30/2014 12:09:08 AM,HOLLOWAY AV/CARDENAS AV,SF,94132,B08,19,8751,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7207728020227, -122.477020857984)",140290371-85 -113480157,RS1,11115432,Medical Incident,12/14/2011,12/14/2011,12/14/2011 10:54:38 AM,12/14/2011 10:55:25 AM,12/14/2011 10:55:31 AM,12/14/2011 10:55:43 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 10:59:40 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,3,3,false,,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7734664897325, -122.413546904215)",113480157-RS1 -160182090,AM04,16007279,Medical Incident,01/18/2016,01/18/2016,01/18/2016 03:39:27 PM,01/18/2016 03:39:27 PM,01/18/2016 03:40:01 PM,01/18/2016 03:41:07 PM,01/18/2016 03:43:09 PM,01/18/2016 03:58:17 PM,01/18/2016 04:19:12 PM,Code 2 Transport,01/18/2016 04:48:38 PM,TURK ST/LAGUNA ST,San Francisco,94102,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7811171261872, -122.427202758133)",160182090-AM04 -121880058,E01,12062537,Structure Fire,07/06/2012,07/05/2012,07/06/2012 06:35:59 AM,07/06/2012 06:36:00 AM,07/06/2012 06:36:19 AM,07/06/2012 06:37:06 AM,07/06/2012 06:39:42 AM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/06/2012 06:40:10 AM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",121880058-E01 -120330365,AM10,12011068,Medical Incident,02/02/2012,02/02/2012,02/02/2012 09:10:33 PM,02/02/2012 09:16:10 PM,02/02/2012 09:16:29 PM,02/02/2012 09:17:03 PM,02/02/2012 09:22:06 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,No Merit,02/02/2012 10:00:19 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",120330365-AM10 -103560014,E03,10114131,Medical Incident,12/22/2010,12/21/2010,12/22/2010 12:43:21 AM,12/22/2010 12:43:46 AM,12/22/2010 12:44:06 AM,12/22/2010 12:45:18 AM,12/22/2010 12:48:16 AM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,No Merit,12/22/2010 12:52:11 AM,200 Block of JONES ST,SF,94102,B03,1,1456,3,2,2,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",103560014-E03 -113170327,KM07,11105463,Medical Incident,11/13/2011,11/13/2011,11/13/2011 09:26:05 PM,11/13/2011 09:26:47 PM,11/13/2011 09:26:58 PM,11/13/2011 09:28:29 PM,11/13/2011 09:41:15 PM,11/13/2011 09:56:15 PM,11/13/2011 10:20:40 PM,Code 2 Transport,11/13/2011 09:42:42 PM,0 Block of ACEVEDO AVE,SF,94132,B08,19,8582,3,3,3,false,,1,PRIVATE,2,8,7,Lakeshore,"(37.7197628609881, -122.483852302758)",113170327-KM07 -121740195,68,12057778,Medical Incident,06/22/2012,06/22/2012,06/22/2012 02:23:22 PM,06/22/2012 02:24:06 PM,06/22/2012 02:24:13 PM,06/22/2012 02:24:21 PM,06/22/2012 02:27:00 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,No Merit,06/22/2012 02:34:38 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642910155103, -122.418689416733)",121740195-68 -140180065,E07,14006079,Structure Fire,01/18/2014,01/17/2014,01/18/2014 03:37:20 AM,01/18/2014 03:40:52 AM,01/18/2014 03:43:27 AM,01/18/2014 03:45:05 AM,01/18/2014 03:48:03 AM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/18/2014 04:05:08 AM,POTRERO AV/22ND ST,SF,94110,B10,7,2553,3,3,3,true,Alarm,1,ENGINE,1,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",140180065-E07 -160281120,83,16011029,Medical Incident,01/28/2016,01/28/2016,01/28/2016 10:06:13 AM,01/28/2016 10:08:08 AM,01/28/2016 10:08:14 AM,01/28/2016 10:08:21 AM,01/28/2016 10:19:00 AM,01/28/2016 10:45:54 AM,01/28/2016 10:55:32 AM,Code 2 Transport,01/28/2016 12:09:51 PM,FELL ST/DIVISADERO ST,San Francisco,94117,B05,21,4145,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7740616455365, -122.437610622947)",160281120-83 -122450091,KM09,12080925,Medical Incident,09/01/2012,09/01/2012,09/01/2012 08:46:16 AM,09/01/2012 08:46:34 AM,09/01/2012 08:46:54 AM,09/01/2012 08:47:23 AM,09/01/2012 08:50:03 AM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,No Merit,09/01/2012 08:54:17 AM,16TH ST/JULIAN AV,SF,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7649768996733, -122.420901272002)",122450091-KM09 -113200373,E05,11106438,Medical Incident,11/16/2011,11/16/2011,11/16/2011 08:38:01 PM,11/16/2011 08:39:53 PM,11/16/2011 08:40:32 PM,11/16/2011 08:42:07 PM,11/16/2011 08:44:23 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/16/2011 08:54:02 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",113200373-E05 -130930390,E07,13031315,Medical Incident,04/03/2013,04/03/2013,04/03/2013 11:40:04 PM,04/03/2013 11:42:05 PM,04/03/2013 11:42:25 PM,04/03/2013 11:44:01 PM,04/03/2013 11:46:19 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Other,04/03/2013 11:52:46 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,1,1,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",130930390-E07 -131140220,E18,13038467,Structure Fire,04/24/2013,04/24/2013,04/24/2013 02:34:32 PM,04/24/2013 02:34:32 PM,04/24/2013 02:34:37 PM,04/24/2013 02:35:53 PM,04/24/2013 02:38:14 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 02:38:39 PM,39TH AV/SANTIAGO ST,SF,94116,B08,18,7621,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7439739942875, -122.497248181236)",131140220-E18 -113570199,E01,11118598,Medical Incident,12/23/2011,12/23/2011,12/23/2011 10:27:51 AM,12/23/2011 10:30:14 AM,12/23/2011 10:32:01 AM,12/23/2011 10:33:00 AM,12/23/2011 10:38:44 AM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 10:40:06 AM,3RD ST/HOWARD ST,SF,94105,B03,1,2177,2,2,2,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",113570199-E01 -121450107,T19,12048073,Alarms,05/24/2012,05/24/2012,05/24/2012 10:09:37 AM,05/24/2012 10:10:47 AM,05/24/2012 10:10:52 AM,05/24/2012 10:11:58 AM,05/24/2012 10:12:39 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 10:17:38 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",121450107-T19 -133450189,55,13117004,Medical Incident,12/11/2013,12/11/2013,12/11/2013 12:04:57 PM,12/11/2013 12:06:35 PM,12/11/2013 12:09:16 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,Other,12/11/2013 12:09:43 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,1,1,2,true,Non Life-threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133450189-55 -132620073,E21,13088658,Medical Incident,09/19/2013,09/19/2013,09/19/2013 08:32:40 AM,09/19/2013 08:34:26 AM,09/19/2013 08:34:53 AM,09/19/2013 08:35:38 AM,09/19/2013 08:38:25 AM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 08:52:57 AM,MASONIC AV/OAK ST,SF,94117,B05,21,4465,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Golden Gate Park,"(37.7720803934485, -122.445716664284)",132620073-E21 -121700313,87,12056538,Medical Incident,06/18/2012,06/18/2012,06/18/2012 07:11:32 PM,06/18/2012 07:12:41 PM,06/18/2012 07:12:56 PM,06/18/2012 07:13:05 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,04/25/2016 01:58:08 PM,300 Block of SUTTER ST,SF,94108,B01,1,1324,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,1,3,Financial District/South Beach,"(37.7895868780225, -122.406188769255)",121700313-87 -160302784,88,16011874,Medical Incident,01/30/2016,01/30/2016,01/30/2016 05:02:27 PM,01/30/2016 05:04:12 PM,01/30/2016 05:07:11 PM,01/30/2016 05:07:20 PM,01/30/2016 05:15:00 PM,01/30/2016 05:22:55 PM,01/30/2016 05:47:43 PM,Code 2 Transport,01/30/2016 06:24:19 PM,100 Block of GIRARD ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7303933049122, -122.40577188604)",160302784-88 -113290198,E18,11109183,Medical Incident,11/25/2011,11/25/2011,11/25/2011 05:08:24 PM,11/25/2011 05:10:05 PM,11/25/2011 05:10:31 PM,11/25/2011 05:11:39 PM,11/25/2011 05:13:36 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 05:28:29 PM,1700 Block of 36TH AVE,SF,94122,B08,18,7562,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.754372387681, -122.494686607082)",113290198-E18 -160162934,58,16006542,Medical Incident,01/16/2016,01/16/2016,01/16/2016 06:36:51 PM,01/16/2016 06:38:10 PM,01/16/2016 06:38:26 PM,01/16/2016 06:38:32 PM,01/16/2016 06:53:42 PM,01/16/2016 07:13:29 PM,01/16/2016 07:33:02 PM,Code 2 Transport,01/16/2016 08:04:39 PM,400 Block of EUCALYPTUS DR,San Francisco,94132,B08,19,8733,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7310685242349, -122.477740350434)",160162934-58 -121040157,B02,12034436,Alarms,04/13/2012,04/13/2012,04/13/2012 12:57:23 PM,04/13/2012 12:58:37 PM,04/13/2012 12:58:44 PM,04/13/2012 12:59:14 PM,04/13/2012 01:04:35 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Fire,04/13/2012 01:08:40 PM,1100 Block of MARIPOSA ST,SF,94107,B03,29,2431,3,3,3,false,Alarm,1,CHIEF,2,3,10,Potrero Hill,"(37.7639902811821, -122.39520057273)",121040157-B02 -160703843,KM03,16028051,Medical Incident,03/10/2016,03/10/2016,03/10/2016 11:25:57 PM,03/10/2016 11:25:57 PM,03/10/2016 11:26:17 PM,03/10/2016 11:26:45 PM,03/10/2016 11:34:13 PM,03/10/2016 11:52:37 PM,03/10/2016 11:59:45 PM,Code 2 Transport,03/11/2016 12:30:42 AM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7769455318934, -122.416807079177)",160703843-KM03 -133550191,E16,13120664,Gas Leak (Natural and LP Gases),12/21/2013,12/21/2013,12/21/2013 12:17:43 PM,12/21/2013 12:19:41 PM,12/21/2013 12:19:47 PM,12/21/2013 12:23:08 PM,12/21/2013 12:21:11 PM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,No Merit,12/21/2013 12:25:47 PM,2800 Block of GREENWICH ST,SF,94123,B04,16,4313,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7975481450568, -122.446460905905)",133550191-E16 -160330132,88,16012811,Medical Incident,02/02/2016,02/01/2016,02/02/2016 01:08:45 AM,02/02/2016 01:10:59 AM,02/02/2016 01:11:10 AM,02/02/2016 01:11:25 AM,02/02/2016 01:19:01 AM,02/02/2016 01:33:51 AM,02/02/2016 01:44:42 AM,Code 2 Transport,02/02/2016 02:24:12 AM,100 Block of COLE ST,San Francisco,94117,B05,21,4535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7737734460472, -122.451136840346)",160330132-88 -160910425,75,16035964,Medical Incident,03/31/2016,03/30/2016,03/31/2016 05:32:16 AM,03/31/2016 05:33:02 AM,03/31/2016 05:34:46 AM,03/31/2016 05:34:53 AM,03/31/2016 05:37:09 AM,03/31/2016 05:52:03 AM,03/31/2016 06:36:10 AM,Code 3 Transport,03/31/2016 06:48:34 AM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160910425-75 -130010492,T01,13000407,Structure Fire,01/01/2013,01/01/2013,01/01/2013 06:52:49 PM,01/01/2013 06:52:49 PM,01/01/2013 06:52:55 PM,01/01/2013 06:54:36 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 06:56:34 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",130010492-T01 -133050254,68,13103683,Medical Incident,11/01/2013,11/01/2013,11/01/2013 01:15:40 PM,11/01/2013 01:16:13 PM,11/01/2013 01:17:48 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/01/2013 01:18:45 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7661259454801, -122.42207304894)",133050254-68 -103610327,E41,10115932,Medical Incident,12/27/2010,12/27/2010,12/27/2010 09:16:38 PM,12/27/2010 09:18:09 PM,12/27/2010 09:18:37 PM,12/27/2010 09:19:46 PM,12/27/2010 09:21:34 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,12/27/2010 09:22:05 PM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,false,,1,ENGINE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",103610327-E41 -110600297,E03,11019781,Medical Incident,03/01/2011,03/01/2011,03/01/2011 06:37:05 PM,03/01/2011 06:38:58 PM,03/01/2011 06:39:18 PM,03/01/2011 06:41:46 PM,03/01/2011 06:47:15 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 06:53:29 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",110600297-E03 -130820306,E23,13027556,Structure Fire,03/23/2013,03/23/2013,03/23/2013 08:34:37 PM,03/23/2013 08:35:26 PM,03/23/2013 08:35:35 PM,03/23/2013 08:36:33 PM,03/23/2013 08:39:29 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Other,03/23/2013 08:56:12 PM,2200 Block of JUDAH ST,SF,94122,B08,18,7513,3,3,3,false,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7612443851836, -122.486100308846)",130820306-E23 -160340296,KM07,16013232,Medical Incident,02/03/2016,02/02/2016,02/03/2016 03:38:22 AM,02/03/2016 03:38:56 AM,02/03/2016 03:39:07 AM,02/03/2016 03:42:38 AM,02/03/2016 03:45:16 AM,02/03/2016 04:09:02 AM,02/03/2016 04:23:36 AM,Code 2 Transport,02/03/2016 04:53:23 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160340296-KM07 -160682078,65,16027148,Medical Incident,03/08/2016,03/08/2016,03/08/2016 02:21:46 PM,03/08/2016 02:23:33 PM,03/08/2016 02:26:50 PM,03/08/2016 02:26:50 PM,03/08/2016 02:32:38 PM,03/08/2016 02:51:07 PM,03/08/2016 03:10:42 PM,Code 2 Transport,03/08/2016 03:29:44 PM,VAN NESS AV/GOLDEN GATE AV,San Francisco,94102,B02,36,3164,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",160682078-65 -120520258,AM02,12017236,Medical Incident,02/21/2012,02/21/2012,02/21/2012 04:14:40 PM,02/21/2012 04:15:29 PM,02/21/2012 04:15:43 PM,02/21/2012 04:16:05 PM,02/21/2012 04:18:26 PM,02/21/2012 04:27:57 PM,02/21/2012 04:38:33 PM,Code 2 Transport,02/21/2012 05:06:39 PM,VALENCIA ST/18TH ST,SF,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Mission,"(37.7617009099893, -122.421578400735)",120520258-AM02 -160353821,KM06,16014022,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:00:17 PM,02/04/2016 10:00:48 PM,02/04/2016 10:00:56 PM,02/04/2016 10:01:17 PM,02/04/2016 10:14:21 PM,02/04/2016 10:27:01 PM,02/04/2016 10:47:43 PM,Code 2 Transport,02/04/2016 11:01:28 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160353821-KM06 -113170166,B10,11105308,Other,11/13/2011,11/13/2011,11/13/2011 11:19:28 AM,11/13/2011 11:20:57 AM,11/13/2011 11:21:19 AM,11/13/2011 11:22:36 AM,11/13/2011 11:21:58 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Fire,11/13/2011 12:33:58 PM,800 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,3,3,false,,1,CHIEF,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",113170166-B10 -111780389,96,11058945,Medical Incident,06/27/2011,06/27/2011,06/27/2011 11:05:09 PM,06/27/2011 11:06:12 PM,06/27/2011 11:06:44 PM,06/27/2011 11:07:07 PM,06/27/2011 11:12:05 PM,06/27/2011 11:39:16 PM,06/27/2011 11:49:17 PM,Code 2 Transport,06/28/2011 12:24:22 AM,600 Block of FULTON ST,SF,94102,B02,5,3412,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7781781708138, -122.428256337547)",111780389-96 -121160269,T05,12038517,Alarms,04/25/2012,04/25/2012,04/25/2012 05:00:20 PM,04/25/2012 05:02:36 PM,04/25/2012 05:04:53 PM,04/25/2012 05:06:18 PM,04/25/2012 05:07:52 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/25/2012 05:10:34 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",121160269-T05 -110600338,E10,11019820,Traffic Collision,03/01/2011,03/01/2011,03/01/2011 08:30:41 PM,03/01/2011 08:31:26 PM,03/01/2011 08:39:02 PM,03/01/2011 08:39:18 PM,03/01/2011 08:40:00 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/01/2011 08:42:38 PM,GEARY BL/PALM AV,SF,94118,B07,10,4446,3,3,3,true,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7813145853948, -122.457733042674)",110600338-E10 -133370208,AM02,13114242,Medical Incident,12/03/2013,12/03/2013,12/03/2013 01:42:23 PM,12/03/2013 01:43:22 PM,12/03/2013 01:43:40 PM,12/03/2013 01:44:58 PM,12/03/2013 01:49:30 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 01:52:59 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",133370208-AM02 -103650330,T05,10117223,Alarms,12/31/2010,12/31/2010,12/31/2010 09:24:53 PM,12/31/2010 09:26:35 PM,12/31/2010 09:27:23 PM,12/31/2010 09:27:54 PM,12/31/2010 09:28:55 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 09:35:55 PM,1100 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,false,,1,TRUCK,1,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",103650330-T05 -121300217,E02,12043288,Medical Incident,05/09/2012,05/09/2012,05/09/2012 02:48:55 PM,05/09/2012 02:50:37 PM,05/09/2012 02:55:19 PM,05/09/2012 02:56:00 PM,05/09/2012 02:57:03 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,No Merit,05/09/2012 02:59:28 PM,400 Block of BUSH ST,SF,94108,B01,13,1315,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7906704035857, -122.405181396784)",121300217-E02 -112420228,T13,11079854,Medical Incident,08/30/2011,08/30/2011,08/30/2011 03:53:45 PM,08/30/2011 03:54:34 PM,08/30/2011 03:54:52 PM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Other,08/30/2011 03:56:25 PM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,E,E,3,false,,1,TRUCK,5,1,3,Financial District/South Beach,"(37.7930615497479, -122.401553026249)",112420228-T13 -160730902,KM06,16028926,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:44:54 AM,03/13/2016 10:44:54 AM,03/13/2016 10:45:03 AM,03/13/2016 10:45:38 AM,03/13/2016 10:50:33 AM,03/13/2016 11:09:50 AM,03/13/2016 11:26:29 AM,Code 2 Transport,03/13/2016 12:01:57 PM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160730902-KM06 -160823480,AM20,16032724,Medical Incident,03/22/2016,03/22/2016,03/22/2016 07:53:19 PM,03/22/2016 07:55:40 PM,03/22/2016 07:56:39 PM,03/22/2016 07:57:26 PM,03/22/2016 08:12:06 PM,03/22/2016 08:25:57 PM,03/22/2016 08:42:20 PM,Code 2 Transport,03/22/2016 09:10:53 PM,600 Block of VAN NESS AVE,San Francisco,94102,B02,36,3164,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.78147394156, -122.42068958116)",160823480-AM20 -140400261,75,14013639,Medical Incident,02/09/2014,02/09/2014,02/09/2014 03:29:37 PM,02/09/2014 03:29:57 PM,02/09/2014 03:30:57 PM,02/09/2014 03:31:51 PM,02/09/2014 03:38:16 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Against Medical Advice,02/09/2014 04:34:37 PM,0 Block of ARNOLD AVE,SF,94110,B06,32,5644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7345537872053, -122.419581868301)",140400261-75 -160903980,60,16035901,Medical Incident,03/30/2016,03/30/2016,03/30/2016 10:27:33 PM,03/30/2016 10:29:42 PM,03/30/2016 10:29:57 PM,03/30/2016 10:30:08 PM,03/30/2016 10:35:16 PM,03/30/2016 10:41:19 PM,03/30/2016 10:52:04 PM,Code 2 Transport,03/30/2016 11:37:05 PM,100 Block of LOWER TER,San Francisco,94114,B05,12,5167,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7633286063641, -122.442889335026)",160903980-60 -140120184,B10,14004154,Alarms,01/12/2014,01/12/2014,01/12/2014 02:21:09 PM,01/12/2014 02:22:18 PM,01/12/2014 02:23:23 PM,01/12/2014 02:24:31 PM,01/12/2014 02:27:14 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 02:44:25 PM,2700 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,3,3,3,false,Alarm,1,CHIEF,2,10,9,Portola,"(37.7270168369018, -122.403413375689)",140120184-B10 -132200017,94,13074173,Medical Incident,08/08/2013,08/07/2013,08/08/2013 02:06:09 AM,08/08/2013 02:06:46 AM,08/08/2013 02:07:22 AM,08/08/2013 02:07:32 AM,08/08/2013 02:14:28 AM,08/08/2013 02:31:15 AM,08/08/2013 03:11:24 AM,Code 2 Transport,08/08/2013 03:27:22 AM,BAYSHORE BL/SUNNYDALE AV,SF,94134,B10,44,6254,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Bayview Hunters Point,"(37.7088536077159, -122.405109455132)",132200017-94 -160122619,57,16004846,Medical Incident,01/12/2016,01/12/2016,01/12/2016 04:39:12 PM,01/12/2016 04:39:28 PM,01/12/2016 04:40:03 PM,01/12/2016 04:40:12 PM,01/12/2016 04:51:13 PM,01/12/2016 05:05:28 PM,01/12/2016 05:18:22 PM,Code 2 Transport,01/12/2016 06:06:50 PM,100 Block of DALEWOOD WY,San Francisco,94127,B09,39,8257,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7378822528922, -122.456603666093)",160122619-57 -121660051,E06,12054955,Alarms,06/14/2012,06/13/2012,06/14/2012 05:48:53 AM,06/14/2012 05:50:24 AM,06/14/2012 05:50:35 AM,04/25/2016 01:58:13 PM,06/14/2012 05:54:37 AM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Other,06/14/2012 05:59:16 AM,100 Block of DOLORES ST,SF,94103,B02,6,5227,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7666816346904, -122.42642250825)",121660051-E06 -111890137,96,11062446,Medical Incident,07/08/2011,07/08/2011,07/08/2011 10:34:48 AM,07/08/2011 10:36:13 AM,07/08/2011 10:37:11 AM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,Other,04/25/2016 02:03:46 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,1,1,2,false,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",111890137-96 -120890319,E42,12029584,Medical Incident,03/29/2012,03/29/2012,03/29/2012 08:51:48 PM,03/29/2012 08:52:33 PM,03/29/2012 08:53:23 PM,03/29/2012 08:53:34 PM,03/29/2012 08:56:28 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Other,03/29/2012 09:03:43 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",120890319-E42 -102520262,KM04,10079685,Medical Incident,09/09/2010,09/09/2010,09/09/2010 05:46:59 PM,09/09/2010 05:49:39 PM,09/09/2010 05:50:16 PM,09/09/2010 05:50:52 PM,09/09/2010 05:52:34 PM,09/09/2010 06:07:45 PM,09/09/2010 06:17:02 PM,Code 2 Transport,09/09/2010 06:43:11 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,,1,PRIVATE,1,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",102520262-KM04 -112010278,E12,11066338,Medical Incident,07/20/2011,07/20/2011,07/20/2011 03:50:43 PM,07/20/2011 03:52:07 PM,07/20/2011 03:53:19 PM,07/20/2011 03:54:24 PM,07/20/2011 03:56:24 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/20/2011 04:00:46 PM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",112010278-E12 -112000062,94,11065861,Medical Incident,07/19/2011,07/18/2011,07/19/2011 07:34:31 AM,07/19/2011 07:34:52 AM,07/19/2011 07:35:08 AM,07/19/2011 07:35:24 AM,07/19/2011 07:41:15 AM,07/19/2011 07:54:27 AM,07/19/2011 08:16:46 AM,Code 2 Transport,07/19/2011 08:46:59 AM,700 Block of FOERSTER ST,SF,94127,B09,15,8247,3,3,3,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7350921935101, -122.448959925357)",112000062-94 -102620269,79,10082959,Medical Incident,09/19/2010,09/19/2010,09/19/2010 05:19:02 PM,09/19/2010 05:21:18 PM,09/19/2010 05:21:45 PM,09/19/2010 05:22:52 PM,09/19/2010 05:42:55 PM,09/19/2010 05:49:22 PM,09/19/2010 06:12:24 PM,Code 2 Transport,09/19/2010 06:28:58 PM,1000 Block of LE CONTE AVE,SF,94124,B10,44,6575,3,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",102620269-79 -160073268,78,16002977,Medical Incident,01/07/2016,01/07/2016,01/07/2016 07:24:22 PM,01/07/2016 07:27:38 PM,01/07/2016 07:28:17 PM,01/07/2016 07:28:21 PM,01/07/2016 07:35:08 PM,01/07/2016 07:57:49 PM,01/07/2016 08:05:58 PM,Code 2 Transport,01/07/2016 08:36:42 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160073268-78 -140400115,83,14013510,Medical Incident,02/09/2014,02/08/2014,02/09/2014 07:56:54 AM,02/09/2014 07:58:58 AM,02/09/2014 08:01:26 AM,02/09/2014 08:02:13 AM,02/09/2014 08:13:37 AM,02/09/2014 08:24:01 AM,02/09/2014 08:43:11 AM,Code 2 Transport,02/09/2014 08:55:58 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7799892619986, -122.407376463936)",140400115-83 -122180176,T05,12072305,Structure Fire,08/05/2012,08/05/2012,08/05/2012 12:48:14 PM,08/05/2012 12:49:43 PM,08/05/2012 12:50:21 PM,08/05/2012 12:51:15 PM,08/05/2012 12:54:28 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 12:59:48 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,Fire,1,TRUCK,6,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",122180176-T05 -132960226,E38,13100640,Medical Incident,10/23/2013,10/23/2013,10/23/2013 04:33:06 PM,10/23/2013 04:34:02 PM,10/23/2013 04:34:29 PM,10/23/2013 04:35:40 PM,10/23/2013 04:37:11 PM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/23/2013 04:51:51 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",132960226-E38 -160183041,68,16007374,Medical Incident,01/18/2016,01/18/2016,01/18/2016 08:21:32 PM,01/18/2016 08:22:47 PM,01/18/2016 08:23:09 PM,01/18/2016 08:24:26 PM,01/18/2016 08:31:21 PM,01/18/2016 08:44:09 PM,01/18/2016 09:06:02 PM,Code 2 Transport,01/18/2016 09:18:23 PM,1400 Block of GUERRERO ST,San Francisco,94110,B06,11,5612,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.74840056927, -122.422415578627)",160183041-68 -160631155,AM06,16025013,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:01:50 AM,03/03/2016 10:01:50 AM,03/03/2016 10:02:14 AM,03/03/2016 10:03:42 AM,03/03/2016 10:11:48 AM,03/03/2016 10:26:51 AM,03/03/2016 10:44:48 AM,Code 2 Transport,03/03/2016 11:23:02 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160631155-AM06 -132410071,67,13081199,Medical Incident,08/29/2013,08/29/2013,08/29/2013 08:03:50 AM,08/29/2013 08:04:20 AM,08/29/2013 08:05:04 AM,08/29/2013 08:05:17 AM,08/29/2013 08:22:07 AM,08/29/2013 08:27:07 AM,08/29/2013 08:41:06 AM,Code 2 Transport,08/29/2013 09:09:42 AM,1100 Block of MARKET ST,SF,94103,B02,36,2316,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",132410071-67 -120960064,83,12031692,Medical Incident,04/05/2012,04/05/2012,04/05/2012 08:06:17 AM,04/05/2012 08:06:31 AM,04/05/2012 08:08:18 AM,04/05/2012 08:09:11 AM,04/05/2012 08:08:39 AM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,No Merit,04/05/2012 08:25:51 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",120960064-83 -111420363,79,11047341,Medical Incident,05/22/2011,05/22/2011,05/22/2011 09:38:43 PM,05/22/2011 09:39:17 PM,05/22/2011 09:40:08 PM,05/22/2011 09:40:22 PM,05/22/2011 09:59:16 PM,05/22/2011 10:09:34 PM,05/22/2011 10:17:27 PM,Code 2 Transport,05/22/2011 10:31:56 PM,100 Block of 3RD ST,SF,94103,B03,1,2177,2,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",111420363-79 -160891054,AM10,16035270,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:39:11 AM,03/29/2016 09:41:09 AM,03/29/2016 09:44:18 AM,03/29/2016 09:44:52 AM,03/29/2016 10:00:46 AM,03/29/2016 10:15:57 AM,03/29/2016 10:25:06 AM,Code 2 Transport,03/29/2016 10:46:18 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160891054-AM10 -110940378,91,11031373,Medical Incident,04/04/2011,04/04/2011,04/04/2011 09:51:34 PM,04/04/2011 09:52:33 PM,04/04/2011 09:52:56 PM,04/04/2011 09:53:19 PM,04/04/2011 09:58:39 PM,04/04/2011 10:10:20 PM,04/04/2011 10:21:11 PM,Code 2 Transport,04/04/2011 10:33:30 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,1,2,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",110940378-91 -113470124,RC3,11115064,Medical Incident,12/13/2011,12/13/2011,12/13/2011 10:16:13 AM,12/13/2011 10:17:01 AM,12/13/2011 10:17:38 AM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,Other,12/13/2011 10:21:08 AM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,E,3,true,,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",113470124-RC3 -133270237,E28,13111108,Medical Incident,11/23/2013,11/23/2013,11/23/2013 01:42:09 PM,11/23/2013 01:44:44 PM,11/23/2013 01:45:23 PM,11/23/2013 01:46:54 PM,11/23/2013 02:00:30 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 02:14:49 PM,GRANT AV/BEACH ST,SF,94133,B01,28,939,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8081107530325, -122.409050496518)",133270237-E28 -122000100,E15,12066402,Medical Incident,07/18/2012,07/18/2012,07/18/2012 09:16:48 AM,07/18/2012 09:18:39 AM,07/18/2012 09:19:06 AM,07/18/2012 09:21:03 AM,07/18/2012 09:22:27 AM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,Other,07/18/2012 10:33:07 AM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",122000100-E15 -111560159,E19,11051554,Medical Incident,06/05/2011,06/05/2011,06/05/2011 10:22:22 AM,06/05/2011 10:22:48 AM,06/05/2011 10:23:30 AM,06/05/2011 10:24:00 AM,06/05/2011 10:28:01 AM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 10:43:16 AM,3000 Block of 24TH AVE,SF,94132,B08,19,8734,3,2,2,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7318322915175, -122.479994321927)",111560159-E19 -131350016,E38,13045428,Medical Incident,05/15/2013,05/14/2013,05/15/2013 02:20:19 AM,05/15/2013 02:23:13 AM,05/15/2013 02:24:04 AM,05/15/2013 02:25:41 AM,05/15/2013 02:27:40 AM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,Other,05/15/2013 02:30:40 AM,CALIFORNIA ST/FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7901604705365, -122.423974966155)",131350016-E38 -123010261,E28,12099860,Medical Incident,10/27/2012,10/27/2012,10/27/2012 05:21:39 PM,10/27/2012 05:22:39 PM,10/27/2012 05:23:07 PM,10/27/2012 05:24:16 PM,10/27/2012 05:26:17 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/27/2012 05:46:30 PM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,3,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8084350175869, -122.410774214375)",123010261-E28 -110160113,85,11005283,Medical Incident,01/16/2011,01/16/2011,01/16/2011 08:59:07 AM,01/16/2011 09:00:05 AM,01/16/2011 09:01:36 AM,01/16/2011 09:01:44 AM,01/16/2011 09:17:21 AM,04/25/2016 02:06:34 PM,04/25/2016 02:06:34 PM,Patient Declined Transport,01/16/2011 09:24:50 AM,0 Block of MISSION ROCK ST,SF,94158,B03,8,2231,2,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7731157627784, -122.38857804747)",110160113-85 -160351296,72,16013778,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:43:56 AM,02/04/2016 10:45:32 AM,02/04/2016 10:45:51 AM,02/04/2016 10:46:05 AM,02/04/2016 11:03:19 AM,02/04/2016 11:14:56 AM,02/04/2016 11:51:23 AM,Code 2 Transport,02/04/2016 12:30:37 PM,FOLSOM ST/7TH ST,San Francisco,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7767461078644, -122.407842061292)",160351296-72 -103230051,54,10103377,Medical Incident,11/19/2010,11/18/2010,11/19/2010 07:37:22 AM,11/19/2010 07:38:24 AM,11/19/2010 07:38:52 AM,11/19/2010 07:39:01 AM,11/19/2010 07:45:20 AM,11/19/2010 08:16:43 AM,11/19/2010 08:32:44 AM,Code 2 Transport,11/19/2010 08:55:17 AM,100 Block of WESTGATE DR,SF,94127,B09,15,8533,1,1,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7292259664459, -122.465027266985)",103230051-54 -110300032,54,11009725,Medical Incident,01/30/2011,01/29/2011,01/30/2011 01:46:10 AM,01/30/2011 01:47:22 AM,01/30/2011 01:48:23 AM,01/30/2011 01:48:35 AM,01/30/2011 01:55:53 AM,01/30/2011 02:16:24 AM,01/30/2011 02:42:14 AM,Code 2 Transport,01/30/2011 02:53:40 AM,700 Block of HARRISON ST,SF,94107,B03,8,2175,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",110300032-54 -160730528,62,16028886,Medical Incident,03/13/2016,03/12/2016,03/13/2016 07:05:42 AM,03/13/2016 07:07:22 AM,03/13/2016 07:07:46 AM,03/13/2016 07:07:53 AM,03/13/2016 07:11:48 AM,03/13/2016 07:33:18 AM,03/13/2016 08:05:44 AM,Code 2 Transport,03/13/2016 08:31:17 AM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",160730528-62 -160250558,AM04,16009803,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:40:40 AM,01/25/2016 06:40:40 AM,01/25/2016 06:41:02 AM,01/25/2016 06:42:12 AM,01/25/2016 06:44:37 AM,01/25/2016 07:08:59 AM,01/25/2016 07:23:51 AM,Code 2 Transport,01/25/2016 08:01:01 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.760933256599, -122.433343331476)",160250558-AM04 -160840873,83,16033287,Medical Incident,03/24/2016,03/24/2016,03/24/2016 08:42:06 AM,03/24/2016 08:42:06 AM,03/24/2016 08:42:06 AM,03/24/2016 08:42:06 AM,03/24/2016 08:42:06 AM,03/24/2016 08:54:17 AM,03/24/2016 09:19:57 AM,Code 2 Transport,03/24/2016 10:12:35 AM,SAN BRUNO AV/24TH ST,San Francisco,94110,B10,37,2554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7531214131675, -122.404363176874)",160840873-83 -121680078,82,12055646,Medical Incident,06/16/2012,06/15/2012,06/16/2012 05:25:12 AM,06/16/2012 05:26:30 AM,06/16/2012 05:27:32 AM,06/16/2012 05:30:30 AM,06/16/2012 05:34:16 AM,06/16/2012 05:44:34 AM,06/16/2012 05:51:13 AM,Code 3 Transport,06/16/2012 06:51:26 AM,0 Block of HOLLOWAY AVE,SF,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7217978029767, -122.453603333077)",121680078-82 -130770002,75,13025573,Medical Incident,03/18/2013,03/17/2013,03/18/2013 12:12:07 AM,03/18/2013 12:12:34 AM,03/18/2013 12:13:03 AM,03/18/2013 12:13:09 AM,03/18/2013 12:16:44 AM,03/18/2013 12:30:07 AM,03/18/2013 12:40:37 AM,Code 2 Transport,03/18/2013 01:18:25 AM,SUTTER ST/VAN NESS AV,SF,94109,B04,3,3156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",130770002-75 -120870333,E06,12029017,Structure Fire,03/27/2012,03/27/2012,03/27/2012 10:08:17 PM,03/27/2012 10:09:13 PM,03/27/2012 10:09:36 PM,03/27/2012 10:10:25 PM,03/27/2012 10:11:58 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 10:40:01 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,Fire,1,ENGINE,1,2,8,Mission,"(37.7683208883339, -122.4243245293)",120870333-E06 -131880028,78,13063973,Medical Incident,07/07/2013,07/06/2013,07/07/2013 01:16:24 AM,07/07/2013 01:17:55 AM,07/07/2013 01:18:48 AM,07/07/2013 01:19:44 AM,07/07/2013 01:24:03 AM,07/07/2013 01:35:44 AM,07/07/2013 01:49:41 AM,Code 2 Transport,07/07/2013 02:26:25 AM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",131880028-78 -123430182,E03,12114619,Medical Incident,12/08/2012,12/08/2012,12/08/2012 12:21:16 PM,12/08/2012 12:22:23 PM,12/08/2012 12:22:32 PM,12/08/2012 12:23:43 PM,12/08/2012 12:28:56 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 12:32:32 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",123430182-E03 -120180341,E19,12006180,Medical Incident,01/18/2012,01/18/2012,01/18/2012 09:25:55 PM,01/18/2012 09:26:59 PM,01/18/2012 09:28:21 PM,01/18/2012 09:29:32 PM,01/18/2012 09:32:20 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Other,01/18/2012 09:34:43 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,E,E,3,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",120180341-E19 -160753084,75,16029833,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:05:43 PM,03/15/2016 06:06:38 PM,03/15/2016 06:08:11 PM,03/15/2016 06:08:26 PM,03/15/2016 06:15:01 PM,03/15/2016 06:36:44 PM,03/15/2016 07:02:33 PM,Code 2 Transport,03/15/2016 07:49:20 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160753084-75 -130010080,E01,13000056,Medical Incident,01/01/2013,12/31/2012,01/01/2013 01:21:00 AM,01/01/2013 01:22:04 AM,01/01/2013 01:22:45 AM,01/01/2013 01:22:49 AM,01/01/2013 01:24:38 AM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,01/01/2013 01:36:46 AM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",130010080-E01 -120140268,E43,12004847,Medical Incident,01/14/2012,01/14/2012,01/14/2012 06:28:51 PM,01/14/2012 06:30:01 PM,01/14/2012 06:32:28 PM,01/14/2012 06:33:41 PM,01/14/2012 06:35:29 PM,04/25/2016 02:00:38 PM,04/25/2016 02:00:38 PM,Other,01/14/2012 06:55:15 PM,500 Block of LONDON ST,SF,94112,B09,43,6126,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7204577457452, -122.43703098791)",120140268-E43 -160350153,57,16013642,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:08:10 AM,02/04/2016 01:10:47 AM,02/04/2016 01:12:30 AM,02/04/2016 01:12:39 AM,02/04/2016 01:22:45 AM,02/04/2016 01:42:07 AM,02/04/2016 01:58:56 AM,Code 2 Transport,02/04/2016 02:46:44 AM,200 Block of JOOST AVE,San Francisco,94131,B09,26,8214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7323075322144, -122.440886977076)",160350153-57 -131890148,T03,13064392,Alarms,07/08/2013,07/08/2013,07/08/2013 11:52:18 AM,07/08/2013 11:53:43 AM,07/08/2013 11:53:56 AM,07/08/2013 11:55:27 AM,07/08/2013 11:56:39 AM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/08/2013 12:02:57 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",131890148-T03 -122680259,KM14,12088597,Medical Incident,09/24/2012,09/24/2012,09/24/2012 04:27:54 PM,09/24/2012 04:29:27 PM,09/24/2012 04:29:53 PM,09/24/2012 04:30:54 PM,09/24/2012 04:35:26 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 04:36:04 PM,1200 Block of 5TH AVE,SF,94122,B08,22,7325,3,3,3,false,Non Life-threatening,1,PRIVATE,2,7,5,Inner Sunset,"(37.7646902615433, -122.462132322215)",122680259-KM14 -102900079,89,10092432,Medical Incident,10/17/2010,10/16/2010,10/17/2010 05:47:34 AM,10/17/2010 05:47:56 AM,10/17/2010 05:48:27 AM,10/17/2010 05:49:46 AM,10/17/2010 05:57:01 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Medical Examiner,10/17/2010 07:00:12 AM,500 Block of VICTORIA ST,SF,94132,B09,33,8433,3,E,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.720680386401, -122.465304898322)",102900079-89 -122630064,B10,12086773,Structure Fire,09/19/2012,09/18/2012,09/19/2012 07:55:02 AM,09/19/2012 07:55:58 AM,09/19/2012 07:56:06 AM,09/19/2012 07:58:10 AM,09/19/2012 08:04:49 AM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/19/2012 08:45:57 AM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Fire,1,CHIEF,7,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",122630064-B10 -160304192,62,16011999,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:54:56 PM,01/30/2016 11:56:25 PM,01/30/2016 11:56:57 PM,01/30/2016 11:57:07 PM,01/30/2016 11:57:41 PM,01/31/2016 12:21:21 AM,01/31/2016 12:31:13 AM,Code 2 Transport,01/31/2016 01:12:31 AM,VAN NESS AV/BAY ST,San Francisco,94109,B04,16,3144,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8041458445112, -122.425109522103)",160304192-62 -160643941,KM03,16025717,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:19:40 PM,03/04/2016 10:22:15 PM,03/04/2016 10:22:56 PM,03/04/2016 10:23:34 PM,03/04/2016 10:27:39 PM,03/04/2016 10:51:01 PM,03/04/2016 11:05:10 PM,Code 2 Transport,03/04/2016 11:47:28 PM,700 Block of PINE ST,San Francisco,94108,B01,2,1325,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7910926840668, -122.408507461375)",160643941-KM03 -132650293,T12,13089993,Structure Fire,09/22/2013,09/22/2013,09/22/2013 05:12:03 PM,09/22/2013 05:12:03 PM,09/22/2013 05:12:19 PM,09/22/2013 05:13:24 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/22/2013 05:16:00 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,true,Alarm,1,TRUCK,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",132650293-T12 -103460049,E38,10110837,Medical Incident,12/12/2010,12/11/2010,12/12/2010 02:39:22 AM,12/12/2010 02:40:20 AM,12/12/2010 02:41:26 AM,12/12/2010 02:42:36 AM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 02:44:26 AM,1800 Block of SACRAMENTO ST,SF,94109,B04,38,3225,3,3,3,false,,1,ENGINE,2,4,2,Pacific Heights,"(37.7911308532822, -122.423327343761)",103460049-E38 -102920207,T03,10093135,Medical Incident,10/19/2010,10/19/2010,10/19/2010 01:49:31 PM,10/19/2010 01:50:11 PM,10/19/2010 01:52:49 PM,10/19/2010 01:53:42 PM,10/19/2010 01:54:05 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/19/2010 02:04:08 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,,1,TRUCK,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",102920207-T03 -123170085,E11,12105422,Medical Incident,11/12/2012,11/12/2012,11/12/2012 09:42:54 AM,11/12/2012 09:45:22 AM,11/12/2012 09:45:33 AM,11/12/2012 09:47:04 AM,11/12/2012 09:50:10 AM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,Other,11/12/2012 10:06:08 AM,3400 Block of 21ST ST,SF,94110,B06,11,5457,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7567725305382, -122.42418316648)",123170085-E11 -113030254,E05,11100611,Medical Incident,10/30/2011,10/30/2011,10/30/2011 01:50:24 PM,10/30/2011 01:51:53 PM,10/30/2011 01:52:11 PM,10/30/2011 01:53:00 PM,10/30/2011 01:54:31 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 02:01:40 PM,800 Block of HAYES ST,SF,94117,B02,5,3522,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",113030254-E05 -130020282,AM12,13000719,Medical Incident,01/02/2013,01/02/2013,01/02/2013 04:42:22 PM,01/02/2013 04:43:07 PM,01/02/2013 04:43:16 PM,01/02/2013 04:43:54 PM,01/02/2013 04:49:23 PM,01/02/2013 05:01:47 PM,01/02/2013 05:22:51 PM,Code 3 Transport,01/02/2013 06:04:10 PM,1900 Block of IRVING ST,SF,94122,B08,22,7424,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7634362445898, -122.478724842422)",130020282-AM12 -102500307,AM10,10079104,Medical Incident,09/07/2010,09/07/2010,09/07/2010 08:06:48 PM,09/07/2010 08:19:02 PM,09/07/2010 08:21:19 PM,09/07/2010 08:21:50 PM,09/07/2010 08:26:43 PM,09/07/2010 08:36:40 PM,09/07/2010 08:41:34 PM,Code 2 Transport,09/07/2010 09:09:14 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102500307-AM10 -110200145,RS2,11006561,Medical Incident,01/20/2011,01/20/2011,01/20/2011 10:32:25 AM,01/20/2011 10:33:11 AM,01/20/2011 10:34:12 AM,01/20/2011 10:35:28 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 10:36:43 AM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,false,,1,RESCUE SQUAD,3,6,9,Mission,"(37.7562319946436, -122.418893283075)",110200145-RS2 -112370019,55,11078067,Medical Incident,08/25/2011,08/24/2011,08/25/2011 01:09:06 AM,08/25/2011 01:10:11 AM,08/25/2011 01:10:17 AM,08/25/2011 01:10:26 AM,08/25/2011 01:14:24 AM,08/25/2011 01:23:15 AM,08/25/2011 01:51:29 AM,Code 2 Transport,08/25/2011 01:52:10 AM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",112370019-55 -140260040,E06,14008783,Medical Incident,01/26/2014,01/25/2014,01/26/2014 02:26:43 AM,01/26/2014 02:27:22 AM,01/26/2014 02:28:13 AM,01/26/2014 02:30:05 AM,01/26/2014 02:34:08 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 02:49:54 AM,100 Block of ERIE ST,SF,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7690216140989, -122.419573920622)",140260040-E06 -140150014,T03,14004997,Alarms,01/15/2014,01/14/2014,01/15/2014 01:08:42 AM,01/15/2014 01:10:42 AM,01/15/2014 01:10:51 AM,01/15/2014 01:12:49 AM,01/15/2014 01:15:07 AM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/15/2014 01:18:21 AM,600 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",140150014-T03 -103210349,73,10103017,Traffic Collision,11/17/2010,11/17/2010,11/17/2010 09:11:54 PM,11/17/2010 09:14:05 PM,11/17/2010 09:16:41 PM,11/17/2010 09:20:14 PM,11/17/2010 09:29:08 PM,11/17/2010 09:49:44 PM,11/17/2010 09:59:50 PM,Other,11/17/2010 10:29:22 PM,VERMONT ST/MARIPOSA ST,SF,94107,B02,29,2422,2,2,2,true,,1,MEDIC,2,2,10,Potrero Hill,"(37.7633817546821, -122.404371726256)",103210349-73 -160780650,65,16030919,Medical Incident,03/18/2016,03/17/2016,03/18/2016 07:09:27 AM,03/18/2016 07:10:36 AM,03/18/2016 07:10:51 AM,03/18/2016 07:12:44 AM,03/18/2016 07:16:50 AM,03/18/2016 07:24:56 AM,03/18/2016 07:54:42 AM,Code 2 Transport,03/18/2016 08:29:41 AM,0 Block of FAIRFIELD WY,San Francisco,94127,B09,15,8455,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7267682846432, -122.463249795079)",160780650-65 -160442300,KM13,16017753,Medical Incident,02/13/2016,02/13/2016,02/13/2016 04:08:52 PM,02/13/2016 04:10:56 PM,02/13/2016 04:16:05 PM,02/13/2016 04:16:05 PM,02/13/2016 04:26:00 PM,02/13/2016 04:45:32 PM,02/13/2016 05:19:32 PM,Code 2 Transport,02/13/2016 05:47:51 PM,23RD ST/MISSION ST,San Francisco,94110,B06,7,5511,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7538365885417, -122.418593946321)",160442300-KM13 -121830330,B01,12061101,Alarms,07/01/2012,07/01/2012,07/01/2012 09:29:28 PM,07/01/2012 09:31:15 PM,07/01/2012 09:31:53 PM,07/01/2012 09:33:08 PM,07/01/2012 09:35:43 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 09:41:03 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",121830330-B01 -131140309,81,13038538,Traffic Collision,04/24/2013,04/24/2013,04/24/2013 05:36:43 PM,04/24/2013 05:37:57 PM,04/24/2013 05:39:03 PM,04/24/2013 05:39:37 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 05:45:43 PM,2500 Block of OCEAN AVE,SF,94132,B08,19,8452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7314853147957, -122.472647880057)",131140309-81 -160893999,85,16035526,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:04:28 PM,03/29/2016 11:05:23 PM,03/29/2016 11:05:38 PM,03/29/2016 11:05:52 PM,03/29/2016 11:11:49 PM,03/29/2016 11:29:52 PM,03/29/2016 11:48:17 PM,Code 2 Transport,03/30/2016 12:18:24 AM,0 Block of CLARENCE PL,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7796198209959, -122.39254196336)",160893999-85 -132750214,E09,13093443,Medical Incident,10/02/2013,10/02/2013,10/02/2013 02:20:06 PM,10/02/2013 02:20:50 PM,10/02/2013 02:20:58 PM,10/02/2013 02:22:18 PM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,Other,10/02/2013 02:22:30 PM,0 Block of WESTBROOK CT,SF,94124,B10,17,6624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.7350385061864, -122.382425286055)",132750214-E09 -120880076,KM04,12029102,Medical Incident,03/28/2012,03/28/2012,03/28/2012 08:20:03 AM,03/28/2012 08:21:30 AM,03/28/2012 08:21:58 AM,03/28/2012 08:22:27 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 08:29:10 AM,STOCKTON ST/FILBERT ST,SF,94133,B01,28,1265,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8013706557311, -122.409369119363)",120880076-KM04 -121390219,94,12046193,Medical Incident,05/18/2012,05/18/2012,05/18/2012 02:59:56 PM,05/18/2012 03:00:36 PM,05/18/2012 03:02:02 PM,05/18/2012 03:02:17 PM,05/18/2012 03:05:38 PM,05/18/2012 04:06:17 PM,05/18/2012 04:33:52 PM,Code 2 Transport,05/18/2012 05:13:50 PM,1800 Block of WALLER ST,SF,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",121390219-94 -133620176,AM06,13122989,Medical Incident,12/28/2013,12/28/2013,12/28/2013 01:03:10 PM,12/28/2013 01:05:07 PM,12/28/2013 01:05:22 PM,12/28/2013 01:05:55 PM,12/28/2013 01:07:23 PM,12/28/2013 01:34:13 PM,12/28/2013 02:04:32 PM,Code 2 Transport,12/28/2013 02:19:25 PM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",133620176-AM06 -160382837,KM15,16015331,Medical Incident,02/07/2016,02/07/2016,02/07/2016 06:17:34 PM,02/07/2016 06:17:34 PM,02/07/2016 06:17:47 PM,02/07/2016 06:18:18 PM,02/07/2016 06:28:14 PM,02/07/2016 06:48:40 PM,02/07/2016 07:03:56 PM,Code 2 Transport,02/07/2016 07:34:47 PM,SUTTER ST/BAKER ST,San Francisco,94115,B05,10,4262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Japantown,"(37.7848266848436, -122.443182551307)",160382837-KM15 -132600297,E06,13088055,Medical Incident,09/17/2013,09/17/2013,09/17/2013 02:53:38 PM,09/17/2013 02:54:04 PM,09/17/2013 02:54:59 PM,09/17/2013 02:55:32 PM,09/17/2013 02:57:34 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 03:08:39 PM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",132600297-E06 -120870238,E05,12028926,Medical Incident,03/27/2012,03/27/2012,03/27/2012 04:54:50 PM,03/27/2012 04:56:45 PM,03/27/2012 04:57:18 PM,03/27/2012 04:58:59 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 05:02:02 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",120870238-E05 -110520053,D2,11017123,Structure Fire,02/21/2011,02/20/2011,02/21/2011 06:41:26 AM,02/21/2011 06:42:17 AM,02/21/2011 06:42:27 AM,02/21/2011 06:48:17 AM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 06:57:45 AM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,false,,1,CHIEF,8,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",110520053-D2 -123000347,T05,12099585,Alarms,10/26/2012,10/26/2012,10/26/2012 09:10:34 PM,10/26/2012 09:12:17 PM,10/26/2012 09:14:15 PM,10/26/2012 09:15:48 PM,10/26/2012 09:16:54 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/26/2012 09:27:55 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",123000347-T05 -160143931,KM07,16005775,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:00:18 PM,01/14/2016 11:01:40 PM,01/14/2016 11:02:03 PM,01/14/2016 11:02:48 PM,01/14/2016 11:06:42 PM,01/14/2016 11:28:09 PM,01/14/2016 11:48:39 PM,Code 2 Transport,01/15/2016 12:22:11 AM,1600 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,5,Japantown,"(37.78676442656, -122.427490271072)",160143931-KM07 -122100271,89,12069839,Medical Incident,07/28/2012,07/28/2012,07/28/2012 06:21:31 PM,07/28/2012 06:21:44 PM,07/28/2012 06:23:59 PM,07/28/2012 06:27:56 PM,07/28/2012 06:36:24 PM,07/28/2012 06:51:23 PM,07/28/2012 07:02:38 PM,Code 2 Transport,07/28/2012 07:24:10 PM,700 Block of BRUNSWICK ST,SF,94112,B09,33,6214,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7087500759547, -122.44878758765)",122100271-89 -131940210,77,13065976,Medical Incident,07/13/2013,07/13/2013,07/13/2013 02:58:25 PM,07/13/2013 03:00:06 PM,07/13/2013 03:06:51 PM,04/25/2016 01:51:49 PM,07/13/2013 03:18:17 PM,07/13/2013 03:23:30 PM,07/13/2013 04:08:25 PM,Code 2 Transport,07/13/2013 04:29:07 PM,30TH AV/NORIEGA ST,SF,94122,B08,18,7515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7537209038952, -122.48826407821)",131940210-77 -160290885,77,16011368,Medical Incident,01/29/2016,01/29/2016,01/29/2016 09:05:17 AM,01/29/2016 09:06:14 AM,01/29/2016 09:06:27 AM,01/29/2016 09:06:32 AM,01/29/2016 09:17:00 AM,01/29/2016 09:33:52 AM,01/29/2016 09:49:43 AM,Code 2 Transport,01/29/2016 10:22:25 AM,600 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8044727215137, -122.415562636307)",160290885-77 -123190154,81,12106037,Medical Incident,11/14/2012,11/14/2012,11/14/2012 11:59:00 AM,11/14/2012 12:01:04 PM,11/14/2012 12:01:14 PM,11/14/2012 12:01:57 PM,11/14/2012 12:10:27 PM,11/14/2012 12:18:18 PM,11/14/2012 12:32:32 PM,Code 2 Transport,11/14/2012 12:53:55 PM,0 Block of HILIRITAS AVE,SF,94131,B06,26,8173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7377605783425, -122.437589315586)",123190154-81 -140050325,T18,14001928,Structure Fire,01/05/2014,01/05/2014,01/05/2014 08:34:02 PM,01/05/2014 08:34:02 PM,01/05/2014 08:34:15 PM,01/05/2014 08:35:12 PM,01/05/2014 08:39:55 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 09:29:25 PM,35TH AV/ULLOA ST,SF,94116,B08,18,7554,,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7404272387736, -122.492706079257)",140050325-T18 -110500275,E43,11016608,Medical Incident,02/19/2011,02/19/2011,02/19/2011 04:48:53 PM,02/19/2011 04:50:23 PM,02/19/2011 04:51:27 PM,02/19/2011 04:52:29 PM,02/19/2011 04:55:24 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 05:18:30 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,2,2,2,false,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",110500275-E43 -160581196,KM11,16023072,Medical Incident,02/27/2016,02/27/2016,02/27/2016 10:04:11 AM,02/27/2016 10:07:29 AM,02/27/2016 10:08:07 AM,02/27/2016 10:08:46 AM,02/27/2016 10:12:01 AM,02/27/2016 10:31:34 AM,02/27/2016 11:06:57 AM,Code 2 Transport,02/27/2016 11:16:51 AM,100 Block of FELL ST,San Francisco,94102,B02,36,3213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.776209592511, -122.420316348058)",160581196-KM11 -140430214,93,14014636,Medical Incident,02/12/2014,02/12/2014,02/12/2014 02:06:26 PM,02/12/2014 02:07:04 PM,02/12/2014 02:12:37 PM,02/12/2014 02:13:01 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 02:28:48 PM,300 Block of FONT BLVD,SF,94132,B08,19,8424,,2,2,true,Non Life-threatening,1,MEDIC,3,8,7,Lakeshore,"(37.7170992839815, -122.476744283658)",140430214-93 -111120357,E19,11037151,Medical Incident,04/22/2011,04/22/2011,04/22/2011 09:45:33 PM,04/22/2011 09:47:05 PM,04/22/2011 09:47:39 PM,04/22/2011 09:48:40 PM,04/22/2011 09:52:30 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/22/2011 10:09:40 PM,300 Block of MONTICELLO ST,SF,94132,B09,19,8447,3,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7206423559304, -122.470696370154)",111120357-E19 -160723401,53,16028790,Medical Incident,03/12/2016,03/12/2016,03/12/2016 10:06:09 PM,03/12/2016 10:08:43 PM,03/12/2016 10:08:56 PM,03/12/2016 10:09:07 PM,03/12/2016 10:22:05 PM,03/12/2016 10:39:17 PM,03/12/2016 10:52:56 PM,Code 2 Transport,03/12/2016 11:21:46 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160723401-53 -160622056,75,16024714,Medical Incident,03/02/2016,03/02/2016,03/02/2016 01:36:11 PM,03/02/2016 01:38:46 PM,03/02/2016 01:39:04 PM,03/02/2016 01:39:12 PM,03/02/2016 01:43:25 PM,03/02/2016 01:59:04 PM,03/02/2016 02:10:23 PM,Code 2 Transport,03/02/2016 03:04:42 PM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160622056-75 -120720168,E43,12023903,Alarms,03/12/2012,03/12/2012,03/12/2012 12:06:06 PM,03/12/2012 12:06:40 PM,03/12/2012 12:06:50 PM,03/12/2012 12:07:47 PM,03/12/2012 12:12:28 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/12/2012 12:23:55 PM,1600 Block of BIRCHWOOD CT,SF,94134,B09,43,6238,3,3,3,false,Alarm,1,ENGINE,2,9,10,Excelsior,"(37.7085411828665, -122.425872234963)",120720168-E43 -160413720,55,16016647,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:29:11 PM,02/10/2016 09:29:11 PM,02/10/2016 09:29:18 PM,02/10/2016 09:29:44 PM,02/10/2016 09:40:22 PM,02/10/2016 09:49:43 PM,02/10/2016 09:58:31 PM,Code 2 Transport,02/10/2016 10:35:16 PM,19TH ST/VALENCIA ST,San Francisco,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.7601012942817, -122.42142521264)",160413720-55 -160262961,AM12,16010408,Medical Incident,01/26/2016,01/26/2016,01/26/2016 05:51:12 PM,01/26/2016 05:53:16 PM,01/26/2016 05:54:02 PM,01/26/2016 06:01:51 PM,01/26/2016 06:06:53 PM,01/26/2016 06:56:32 PM,01/26/2016 07:26:09 PM,Code 2 Transport,01/26/2016 08:08:39 PM,ANNIE ST/STEVENSON ST,San Francisco,94105,B03,1,2158,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.787617863969, -122.402289884758)",160262961-AM12 -111070181,E06,11035394,Medical Incident,04/17/2011,04/17/2011,04/17/2011 01:11:48 PM,04/17/2011 01:14:13 PM,04/17/2011 01:14:47 PM,04/17/2011 01:15:50 PM,04/17/2011 01:17:30 PM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 01:35:06 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",111070181-E06 -132580389,B01,13087464,Traffic Collision,09/15/2013,09/15/2013,09/15/2013 11:46:28 PM,09/15/2013 11:47:01 PM,09/16/2013 12:03:14 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/16/2013 12:04:33 AM,BROADWAY/MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,false,Potentially Life-Threatening,1,CHIEF,5,1,3,North Beach,"(37.7982229704871, -122.403863019987)",132580389-B01 -132330140,T08,13078634,Alarms,08/21/2013,08/21/2013,08/21/2013 11:16:05 AM,08/21/2013 11:16:57 AM,08/21/2013 11:17:02 AM,08/21/2013 11:19:34 AM,08/21/2013 11:19:36 AM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/21/2013 11:33:48 AM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",132330140-T08 -133490053,E01,13118376,Alarms,12/15/2013,12/14/2013,12/15/2013 04:14:37 AM,12/15/2013 04:15:35 AM,12/15/2013 04:15:42 AM,12/15/2013 04:17:38 AM,12/15/2013 04:19:08 AM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 04:27:37 AM,400 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7798600031214, -122.405090496364)",133490053-E01 -112470195,E43,11081454,Medical Incident,09/04/2011,09/04/2011,09/04/2011 01:02:26 PM,09/04/2011 01:02:35 PM,09/04/2011 01:02:51 PM,09/04/2011 01:04:08 PM,09/04/2011 01:06:00 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 01:10:39 PM,0 Block of ROLPH ST,SF,94112,B09,43,6232,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7151664289006, -122.440103953539)",112470195-E43 -132640046,E10,13089392,Alarms,09/21/2013,09/20/2013,09/21/2013 02:37:40 AM,09/21/2013 02:39:59 AM,09/21/2013 02:40:14 AM,09/21/2013 02:42:07 AM,09/21/2013 02:44:34 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Fire,09/21/2013 02:49:24 AM,2100 Block of OFARRELL ST,SF,94115,B05,10,4236,3,3,3,true,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7823990960607, -122.440141299748)",132640046-E10 -133080006,KM07,13104568,Medical Incident,11/04/2013,11/03/2013,11/04/2013 12:03:47 AM,11/04/2013 12:04:06 AM,11/04/2013 12:04:52 AM,11/04/2013 12:06:09 AM,11/04/2013 12:12:48 AM,11/04/2013 12:35:07 AM,11/04/2013 01:06:50 AM,Code 3 Transport,11/04/2013 01:57:48 AM,1700 Block of NEWCOMB AVE,SF,94124,B10,17,6515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7367746861465, -122.39262575818)",133080006-KM07 -103150274,93,10101075,Medical Incident,11/11/2010,11/11/2010,11/11/2010 06:44:17 PM,11/11/2010 06:45:09 PM,11/11/2010 06:45:57 PM,11/11/2010 06:46:24 PM,11/11/2010 06:49:13 PM,11/11/2010 07:07:31 PM,11/11/2010 07:35:14 PM,Code 2 Transport,11/11/2010 08:07:25 PM,1100 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7547638628686, -122.416559046903)",103150274-93 -160831599,84,16032925,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:44:07 AM,03/23/2016 11:45:04 AM,03/23/2016 11:45:33 AM,03/23/2016 11:45:41 AM,03/23/2016 11:58:40 AM,03/23/2016 12:13:27 PM,03/23/2016 12:32:33 PM,Code 2 Transport,03/23/2016 01:15:10 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160831599-84 -140150030,B03,14005012,Medical Incident,01/15/2014,01/14/2014,01/15/2014 02:50:22 AM,01/15/2014 02:50:39 AM,01/15/2014 02:53:02 AM,01/15/2014 02:55:22 AM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/15/2014 02:59:23 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,,E,3,false,Potentially Life-Threatening,1,CHIEF,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",140150030-B03 -111850097,92,11061073,Medical Incident,07/04/2011,07/04/2011,07/04/2011 09:11:25 AM,07/04/2011 09:11:41 AM,07/04/2011 09:12:23 AM,07/04/2011 09:13:18 AM,07/04/2011 09:25:51 AM,07/04/2011 09:33:05 AM,07/04/2011 09:37:54 AM,Code 2 Transport,07/04/2011 10:04:02 AM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",111850097-92 -140250119,T05,14008511,Alarms,01/25/2014,01/25/2014,01/25/2014 10:09:12 AM,01/25/2014 10:10:44 AM,01/25/2014 10:11:04 AM,01/25/2014 10:12:57 AM,01/25/2014 10:15:58 AM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/25/2014 10:24:54 AM,1700 Block of SUTTER ST,SF,94115,B04,38,3433,3,3,3,false,Alarm,1,TRUCK,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",140250119-T05 -123630342,E19,12121614,Traffic Collision,12/28/2012,12/28/2012,12/28/2012 09:38:10 PM,12/28/2012 09:38:57 PM,12/28/2012 09:39:29 PM,12/28/2012 09:40:27 PM,12/28/2012 09:43:55 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 10:26:53 PM,0 Block of HIGUERA AVE,SF,94132,B08,19,8583,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.718486831483, -122.483889856765)",123630342-E19 -131180333,66,13039831,Medical Incident,04/28/2013,04/28/2013,04/28/2013 08:38:27 PM,04/28/2013 08:40:30 PM,04/28/2013 08:40:39 PM,04/28/2013 08:40:45 PM,04/28/2013 08:44:39 PM,04/28/2013 08:55:43 PM,04/28/2013 09:11:36 PM,Code 3 Transport,04/28/2013 09:36:57 PM,300 Block of BUENAVISTAEAST AV,SF,94117,B05,21,5136,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7667916111324, -122.440720545257)",131180333-66 -160644146,AM16,16025733,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:13:20 PM,03/04/2016 11:14:40 PM,03/04/2016 11:15:04 PM,03/04/2016 11:15:51 PM,03/04/2016 11:29:32 PM,03/04/2016 11:37:52 PM,03/05/2016 12:02:48 AM,Code 2 Transport,03/05/2016 12:17:55 AM,BROADWAY/KEARNY ST,San Francisco,94133,B01,13,1231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7980169557217, -122.40547307119)",160644146-AM16 -140140286,AP,14004880,Other,01/14/2014,01/14/2014,01/14/2014 05:15:34 PM,01/14/2014 05:15:34 PM,01/14/2014 05:15:34 PM,01/14/2014 05:15:34 PM,01/14/2014 05:15:34 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Fire,01/14/2014 05:16:04 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",140140286-AP -132840214,AM16,13096643,Medical Incident,10/11/2013,10/11/2013,10/11/2013 03:19:05 PM,10/11/2013 03:19:30 PM,10/11/2013 03:20:09 PM,10/11/2013 03:21:31 PM,10/11/2013 03:26:12 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/11/2013 04:59:23 PM,FOLSOM ST/SHERMAN ST,SF,94103,B03,1,2313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7773996335317, -122.407014751383)",132840214-AM16 -121830227,T03,12061005,Structure Fire,07/01/2012,07/01/2012,07/01/2012 04:16:19 PM,07/01/2012 04:16:20 PM,07/01/2012 04:18:13 PM,07/01/2012 04:19:04 PM,07/01/2012 04:22:10 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 04:34:50 PM,1400 Block of JACKSON ST,SF,94109,B01,41,163,3,3,3,false,Alarm,1,TRUCK,2,1,3,Russian Hill,"(37.7944063708533, -122.418921298898)",121830227-T03 -120610075,E41,12019962,Medical Incident,03/01/2012,02/29/2012,03/01/2012 07:33:46 AM,03/01/2012 07:34:05 AM,03/01/2012 07:34:34 AM,03/01/2012 07:36:08 AM,03/01/2012 07:39:10 AM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,Other,03/01/2012 07:47:40 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",120610075-E41 -132970083,AM24,13100799,Medical Incident,10/24/2013,10/24/2013,10/24/2013 08:54:14 AM,10/24/2013 08:56:37 AM,10/24/2013 09:01:58 AM,10/24/2013 09:02:30 AM,10/24/2013 09:05:48 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Patient Declined Transport,10/24/2013 09:19:45 AM,1200 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",132970083-AM24 -140730112,E05,14024585,Medical Incident,03/14/2014,03/14/2014,03/14/2014 10:29:31 AM,03/14/2014 10:31:19 AM,03/14/2014 10:31:47 AM,03/14/2014 10:32:01 AM,03/14/2014 10:33:51 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Code 2 Transport,03/14/2014 10:37:15 AM,1400 Block of TURK ST,SAN FRANCISCO,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",140730112-E05 -111680303,T15,11055497,Structure Fire,06/17/2011,06/17/2011,06/17/2011 08:12:10 PM,06/17/2011 08:12:44 PM,06/17/2011 08:13:03 PM,06/17/2011 08:14:38 PM,06/17/2011 08:19:00 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 09:03:57 PM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,,1,TRUCK,2,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",111680303-T15 -112530191,E01,11083463,Medical Incident,09/10/2011,09/10/2011,09/10/2011 11:49:03 AM,09/10/2011 11:49:53 AM,09/10/2011 11:50:26 AM,09/10/2011 11:50:58 AM,09/10/2011 11:53:30 AM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 12:02:32 PM,100 Block of GEARY ST,SF,94108,B01,1,1323,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7877209923178, -122.405826623955)",112530191-E01 -160624210,71,16024893,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:56:15 PM,03/02/2016 10:56:15 PM,03/02/2016 10:56:33 PM,03/02/2016 10:56:40 PM,03/02/2016 11:05:01 PM,03/02/2016 11:15:57 PM,03/02/2016 11:26:53 PM,Code 2 Transport,03/02/2016 11:48:11 PM,HYDE ST/GREEN ST,San Francisco,94109,B01,41,1566,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7982645786383, -122.418859875328)",160624210-71 -122640140,86,12087150,Medical Incident,09/20/2012,09/20/2012,09/20/2012 10:59:14 AM,09/20/2012 11:03:25 AM,09/20/2012 11:03:36 AM,09/20/2012 11:03:51 AM,09/20/2012 11:09:22 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 11:16:32 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",122640140-86 -132000194,E01,13067796,Medical Incident,07/19/2013,07/19/2013,07/19/2013 12:58:58 PM,07/19/2013 12:59:39 PM,07/19/2013 01:09:21 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 01:13:42 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",132000194-E01 -122870228,E03,12094979,Administrative,10/13/2012,10/13/2012,10/13/2012 03:48:25 PM,10/13/2012 03:48:35 PM,10/13/2012 03:48:53 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/13/2012 03:49:23 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",122870228-E03 -113600306,AM18,11119767,Alarms,12/26/2011,12/26/2011,12/26/2011 09:44:25 PM,12/26/2011 09:45:41 PM,12/26/2011 09:45:53 PM,12/26/2011 09:59:25 PM,12/26/2011 10:01:29 PM,12/26/2011 10:06:21 PM,12/26/2011 10:18:26 PM,Code 2 Transport,12/26/2011 10:43:46 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,,1,PRIVATE,3,2,9,Mission,"(37.7661343875141, -122.421935077177)",113600306-AM18 -160711222,67,16028183,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:42:54 AM,03/11/2016 10:47:42 AM,03/11/2016 10:48:10 AM,03/11/2016 10:48:30 AM,03/11/2016 11:10:45 AM,03/11/2016 11:30:29 AM,03/11/2016 11:54:54 AM,Code 2 Transport,03/11/2016 12:22:08 PM,500 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2523,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7586965959617, -122.397057095842)",160711222-67 -102950276,E42,10094157,Medical Incident,10/22/2010,10/22/2010,10/22/2010 03:52:17 PM,10/22/2010 03:52:54 PM,10/22/2010 03:53:58 PM,10/22/2010 03:54:55 PM,10/22/2010 03:56:59 PM,04/25/2016 02:07:59 PM,04/25/2016 02:07:59 PM,Other,10/22/2010 04:04:25 PM,300 Block of HOLYOKE ST,SF,94134,B10,42,6336,3,3,3,true,,1,ENGINE,2,10,9,Portola,"(37.7269588163542, -122.408723672542)",102950276-E42 -160090385,72,16003519,Medical Incident,01/09/2016,01/08/2016,01/09/2016 03:19:23 AM,01/09/2016 03:23:30 AM,01/09/2016 03:23:39 AM,01/09/2016 03:23:59 AM,01/09/2016 03:34:33 AM,01/09/2016 03:52:11 AM,01/09/2016 04:11:43 AM,Code 2 Transport,01/09/2016 05:51:13 AM,1100 Block of OAKDALE AVE,San Francisco,94124,B10,17,6572,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",160090385-72 -113030313,99,11100663,Medical Incident,10/30/2011,10/30/2011,10/30/2011 04:55:34 PM,10/30/2011 04:58:38 PM,10/30/2011 05:00:58 PM,10/30/2011 05:03:26 PM,04/25/2016 02:01:54 PM,10/30/2011 05:21:30 PM,04/25/2016 02:01:54 PM,Code 2 Transport,10/30/2011 05:51:45 PM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,1,1,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",113030313-99 -140540291,E38,14018384,Outside Fire,02/23/2014,02/23/2014,02/23/2014 09:26:57 PM,02/23/2014 09:27:29 PM,02/23/2014 09:27:50 PM,02/23/2014 09:29:03 PM,02/23/2014 09:31:29 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Fire,02/23/2014 09:47:42 PM,1500 Block of FILLMORE ST,SF,94115,B04,5,3541,3,3,3,false,Fire,1,ENGINE,1,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",140540291-E38 -120680149,E08,12022542,Medical Incident,03/08/2012,03/08/2012,03/08/2012 12:10:12 PM,03/08/2012 12:10:47 PM,03/08/2012 12:11:09 PM,03/08/2012 12:12:06 PM,03/08/2012 12:14:35 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Gone on Arrival,03/08/2012 12:16:05 PM,600 Block of DELANCEY ST,SF,94107,B03,8,2134,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7832783844185, -122.389331467635)",120680149-E08 -140570407,77,14019411,Medical Incident,02/26/2014,02/26/2014,02/26/2014 11:00:42 PM,02/26/2014 11:00:57 PM,02/26/2014 11:01:17 PM,02/26/2014 11:01:32 PM,02/26/2014 11:09:02 PM,02/26/2014 11:28:58 PM,02/26/2014 11:41:20 PM,Code 2 Transport,02/27/2014 12:02:24 AM,1800 Block of MISSION ST,SF,94103,B02,36,5215,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7674693820862, -122.419972358911)",140570407-77 -140100111,B01,14003427,Alarms,01/10/2014,01/10/2014,01/10/2014 09:44:14 AM,01/10/2014 09:46:05 AM,01/10/2014 09:46:29 AM,01/10/2014 09:46:40 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 09:53:03 AM,800 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,Alarm,1,CHIEF,3,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",140100111-B01 -160113103,52,16004541,Medical Incident,01/11/2016,01/11/2016,01/11/2016 07:41:36 PM,01/11/2016 07:42:59 PM,01/11/2016 07:43:46 PM,01/11/2016 07:43:55 PM,01/11/2016 07:47:06 PM,01/11/2016 08:04:38 PM,01/11/2016 08:10:18 PM,Code 2 Transport,01/11/2016 08:32:30 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160113103-52 -160460942,82,16018440,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:21:36 AM,02/15/2016 09:22:58 AM,02/15/2016 09:23:15 AM,02/15/2016 09:24:21 AM,02/15/2016 09:28:48 AM,02/15/2016 09:38:59 AM,02/15/2016 10:02:32 AM,Code 2 Transport,02/15/2016 10:46:31 AM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7686566965213, -122.420075902774)",160460942-82 -160530395,79,16021071,Medical Incident,02/22/2016,02/21/2016,02/22/2016 05:59:21 AM,02/22/2016 05:59:21 AM,02/22/2016 06:00:00 AM,02/22/2016 06:00:21 AM,02/22/2016 06:18:02 AM,02/22/2016 06:18:04 AM,02/22/2016 06:24:08 AM,Code 2 Transport,02/22/2016 06:56:28 AM,SANSOME ST/BUSH ST,San Francisco,94104,B01,13,1164,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7911771722795, -122.400744022695)",160530395-79 -160741414,57,16029306,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:21:26 AM,03/14/2016 11:21:26 AM,03/14/2016 11:26:12 AM,03/14/2016 11:27:42 AM,03/14/2016 11:37:36 AM,03/14/2016 11:52:18 AM,03/14/2016 12:03:58 PM,Code 2 Transport,03/14/2016 12:58:56 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7787238368762, -122.415620668816)",160741414-57 -140370230,E31,14012549,Traffic Collision,02/06/2014,02/06/2014,02/06/2014 03:22:45 PM,02/06/2014 03:23:49 PM,02/06/2014 03:24:13 PM,02/06/2014 03:25:30 PM,02/06/2014 03:29:09 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 03:37:13 PM,4800 Block of CALIFORNIA ST,SF,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7846516816454, -122.469377719742)",140370230-E31 -123640270,75,12121882,Medical Incident,12/29/2012,12/29/2012,12/29/2012 07:09:46 PM,12/29/2012 07:10:45 PM,12/29/2012 07:11:33 PM,12/29/2012 07:13:49 PM,12/29/2012 07:14:33 PM,12/29/2012 07:25:46 PM,12/29/2012 07:48:46 PM,Code 2 Transport,12/29/2012 08:08:30 PM,2000 Block of POLK ST,SF,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.795477682108, -122.421743807239)",123640270-75 -140480252,E16,14016412,Medical Incident,02/17/2014,02/17/2014,02/17/2014 05:39:55 PM,02/17/2014 05:41:20 PM,02/17/2014 05:42:18 PM,02/17/2014 05:44:05 PM,02/17/2014 05:48:28 PM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,Code 2 Transport,02/17/2014 05:57:26 PM,500 Block of JEFFERSON ST,SF,94109,B03,28,1616,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.8075778308713, -122.42129191667)",140480252-E16 -121000167,D2,12033120,Structure Fire,04/09/2012,04/09/2012,04/09/2012 12:02:13 PM,04/09/2012 12:03:40 PM,04/09/2012 12:04:21 PM,04/09/2012 12:06:43 PM,04/09/2012 12:08:39 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 12:09:07 PM,400 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,false,Fire,1,CHIEF,8,2,6,Tenderloin,"(37.7851285057104, -122.414455368715)",121000167-D2 -160253081,75,16010062,Medical Incident,01/25/2016,01/25/2016,01/25/2016 06:49:39 PM,01/25/2016 06:49:39 PM,01/25/2016 06:55:06 PM,01/25/2016 06:55:12 PM,01/25/2016 07:00:36 PM,01/25/2016 07:16:25 PM,01/25/2016 07:26:12 PM,Code 2 Transport,01/25/2016 08:49:32 PM,FILLMORE ST/BAY ST,San Francisco,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8026284241178, -122.436693347158)",160253081-75 -122230254,93,12073988,Medical Incident,08/10/2012,08/10/2012,08/10/2012 03:28:45 PM,08/10/2012 03:28:45 PM,08/10/2012 03:28:45 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,08/10/2012 04:08:34 PM,04/25/2016 01:57:18 PM,Code 2 Transport,08/10/2012 04:52:43 PM,FOLSOM ST/6TH ST,SF,94107,B03,1,2253,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",122230254-93 -122820038,88,12093231,Structure Fire,10/08/2012,10/07/2012,10/08/2012 03:29:26 AM,10/08/2012 03:30:05 AM,10/08/2012 03:30:20 AM,10/08/2012 03:30:52 AM,10/08/2012 03:33:27 AM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/08/2012 04:05:27 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Fire,1,MEDIC,2,3,6,South of Market,"(37.7819536537257, -122.410041631816)",122820038-88 -110920229,86,11030572,Medical Incident,04/02/2011,04/02/2011,04/02/2011 03:56:18 PM,04/02/2011 03:57:55 PM,04/02/2011 03:58:27 PM,04/02/2011 03:58:39 PM,04/02/2011 04:04:57 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,No Merit,04/02/2011 04:12:42 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",110920229-86 -121050296,E43,12034864,Medical Incident,04/14/2012,04/14/2012,04/14/2012 06:24:58 PM,04/14/2012 06:25:51 PM,04/14/2012 06:26:28 PM,04/14/2012 06:27:33 PM,04/14/2012 06:41:07 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Other,04/14/2012 06:41:09 PM,4600 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,Non Life-threatening,1,ENGINE,2,9,11,Excelsior,"(37.7234913181355, -122.435621772842)",121050296-E43 -160823563,KM12,16032732,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:15:44 PM,03/22/2016 08:17:34 PM,03/22/2016 08:18:11 PM,03/22/2016 08:19:51 PM,03/22/2016 08:24:23 PM,03/22/2016 09:01:32 PM,03/22/2016 09:09:21 PM,Code 3 Transport,03/22/2016 09:51:30 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160823563-KM12 -113040028,E05,11100801,Medical Incident,10/31/2011,10/30/2011,10/31/2011 02:21:54 AM,10/31/2011 02:22:29 AM,10/31/2011 02:22:41 AM,10/31/2011 02:24:20 AM,10/31/2011 02:25:37 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 02:29:44 AM,700 Block of WEBSTER ST,SF,94117,B05,5,3521,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7774337931846, -122.429916785858)",113040028-E05 -130120227,E29,13004125,Medical Incident,01/12/2013,01/12/2013,01/12/2013 03:28:30 PM,01/12/2013 03:29:32 PM,01/12/2013 03:29:55 PM,01/12/2013 03:31:18 PM,01/12/2013 03:35:04 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Patient Declined Transport,01/12/2013 03:48:42 PM,3RD ST/20TH ST,SF,94107,B03,29,2466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",130120227-E29 -160912680,82,16036166,Medical Incident,03/31/2016,03/31/2016,03/31/2016 05:11:49 PM,03/31/2016 05:11:49 PM,03/31/2016 05:12:18 PM,03/31/2016 05:12:25 PM,03/31/2016 05:15:56 PM,03/31/2016 05:26:31 PM,03/31/2016 05:32:55 PM,Code 2 Transport,03/31/2016 06:14:47 PM,22ND ST/VALENCIA ST,San Francisco,94110,B06,11,5471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7552947827711, -122.420964094826)",160912680-82 -133290070,B02,13111675,Alarms,11/25/2013,11/24/2013,11/25/2013 06:29:39 AM,11/25/2013 06:30:45 AM,11/25/2013 06:30:49 AM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Other,11/25/2013 06:33:06 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,CHIEF,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",133290070-B02 -121670187,T19,12055402,Citizen Assist / Service Call,06/15/2012,06/15/2012,06/15/2012 02:05:51 PM,06/15/2012 02:07:18 PM,06/15/2012 02:07:50 PM,06/15/2012 02:08:40 PM,06/15/2012 02:12:08 PM,04/25/2016 01:58:11 PM,04/25/2016 01:58:11 PM,Fire,06/15/2012 02:29:22 PM,GONZALEZ DR/ARBALLO DR,SF,94132,B08,19,8583,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7175845910265, -122.483205246473)",121670187-T19 -140630325,E40,14021393,Gas Leak (Natural and LP Gases),03/04/2014,03/04/2014,03/04/2014 06:43:32 PM,03/04/2014 06:45:20 PM,03/04/2014 06:47:58 PM,03/04/2014 06:47:58 PM,03/04/2014 06:49:55 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 07:03:21 PM,2300 Block of 26TH AVE,SF,94116,B08,40,7471,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7436506098669, -122.483326415854)",140630325-E40 -121740072,AM06,12057675,Medical Incident,06/22/2012,06/22/2012,06/22/2012 08:46:36 AM,06/22/2012 08:47:50 AM,06/22/2012 08:48:09 AM,06/22/2012 08:48:43 AM,06/22/2012 08:56:19 AM,06/22/2012 09:04:38 AM,06/22/2012 09:11:12 AM,Code 2 Transport,06/22/2012 09:48:01 AM,3300 Block of MISSION ST,SF,94110,B06,32,5625,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",121740072-AM06 -140010051,E02,14000037,Medical Incident,01/01/2014,12/31/2013,01/01/2014 12:32:41 AM,01/01/2014 12:34:11 AM,01/01/2014 12:36:11 AM,01/01/2014 12:36:56 AM,01/01/2014 12:39:49 AM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 12:40:11 AM,400 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",140010051-E02 -160051106,61,16001934,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:15:15 AM,01/05/2016 10:17:10 AM,01/05/2016 10:17:23 AM,01/05/2016 10:22:09 AM,01/05/2016 10:25:06 AM,01/05/2016 10:41:18 AM,01/05/2016 10:46:33 AM,Code 3 Transport,01/05/2016 11:25:27 AM,400 Block of FREDERICK ST,San Francisco,94117,B05,12,5144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7666059778585, -122.450710275679)",160051106-61 -160360080,64,16014065,Medical Incident,02/05/2016,02/04/2016,02/05/2016 12:30:32 AM,02/05/2016 12:31:52 AM,02/05/2016 12:32:32 AM,02/05/2016 12:32:52 AM,02/05/2016 12:42:28 AM,02/05/2016 01:15:13 AM,02/05/2016 01:19:48 AM,Code 2 Transport,02/05/2016 02:39:49 AM,MISSION ST/5TH ST,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160360080-64 -160142905,58,16005679,Medical Incident,01/14/2016,01/14/2016,01/14/2016 05:49:38 PM,01/14/2016 05:49:38 PM,01/14/2016 05:50:49 PM,01/14/2016 05:50:59 PM,01/14/2016 05:54:09 PM,01/14/2016 06:11:40 PM,01/14/2016 06:20:48 PM,Code 2 Transport,01/14/2016 07:13:02 PM,700 Block of POLK ST,San Francisco,94109,B02,3,3115,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838069204559, -122.41925042197)",160142905-58 -132820043,B02,13095839,Medical Incident,10/09/2013,10/08/2013,10/09/2013 06:08:53 AM,10/09/2013 06:09:16 AM,10/09/2013 06:12:41 AM,10/09/2013 06:15:06 AM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/09/2013 06:16:05 AM,1000 Block of MARKET ST,SF,94103,B03,1,2248,3,E,3,false,Potentially Life-Threatening,1,CHIEF,3,3,6,South of Market,"(37.7812876870909, -122.411318055371)",132820043-B02 -123020238,AM16,12100206,Medical Incident,10/28/2012,10/28/2012,10/28/2012 02:50:39 PM,10/28/2012 02:51:54 PM,10/28/2012 02:52:11 PM,10/28/2012 02:52:43 PM,10/28/2012 02:56:45 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Patient Declined Transport,10/28/2012 03:00:13 PM,MISSION ST/20TH ST,SF,94110,B06,7,5446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",123020238-AM16 -160380567,71,16015077,Medical Incident,02/07/2016,02/06/2016,02/07/2016 03:26:55 AM,02/07/2016 03:27:47 AM,02/07/2016 03:28:21 AM,02/07/2016 03:28:29 AM,02/07/2016 03:32:51 AM,02/07/2016 03:49:43 AM,02/07/2016 04:05:02 AM,Code 2 Transport,02/07/2016 04:30:19 AM,2100 Block of OFARRELL ST,San Francisco,94115,B05,10,4236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7822906196571, -122.44011945632)",160380567-71 -160470758,KM09,16018830,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:17:33 AM,02/16/2016 08:18:40 AM,02/16/2016 08:20:09 AM,02/16/2016 08:20:32 AM,02/16/2016 08:32:33 AM,02/16/2016 08:51:41 AM,02/16/2016 09:07:09 AM,Code 2 Transport,02/16/2016 09:54:59 AM,BUENA VISTA AV W/CENTRAL AV,San Francisco,94117,B05,21,4354,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7689442347451, -122.443356053923)",160470758-KM09 -160382572,50,16015304,Medical Incident,02/07/2016,02/07/2016,02/07/2016 04:37:43 PM,02/07/2016 04:37:56 PM,02/07/2016 04:38:14 PM,02/07/2016 04:38:22 PM,02/07/2016 04:46:39 PM,02/07/2016 05:06:12 PM,02/07/2016 05:12:02 PM,Code 2 Transport,02/07/2016 05:52:09 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",160382572-50 -120030042,E01,12000920,Alarms,01/03/2012,01/02/2012,01/03/2012 04:13:32 AM,01/03/2012 04:14:59 AM,01/03/2012 04:16:09 AM,01/03/2012 04:17:36 AM,01/03/2012 04:20:26 AM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/03/2012 04:28:01 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,B,B,2,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",120030042-E01 -140540249,E21,14018346,Medical Incident,02/23/2014,02/23/2014,02/23/2014 06:54:49 PM,02/23/2014 06:55:12 PM,02/23/2014 06:55:27 PM,02/23/2014 06:56:39 PM,02/23/2014 06:58:59 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Code 2 Transport,02/23/2014 07:12:11 PM,0 Block of SHRADER ST,SF,94117,B05,21,4542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",140540249-E21 -140860058,T05,14028854,Structure Fire,03/27/2014,03/27/2014,03/27/2014 08:17:28 AM,03/27/2014 08:17:28 AM,03/27/2014 08:17:36 AM,03/27/2014 08:18:19 AM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 08:21:17 AM,FILLMORE ST/FELL ST,SAN FRANCISCO,94117,B05,5,3532,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.774902830471, -122.431011539466)",140860058-T05 -122920322,93,12096863,Medical Incident,10/18/2012,10/18/2012,10/18/2012 05:38:58 PM,10/18/2012 05:39:55 PM,10/18/2012 05:40:40 PM,10/18/2012 05:41:06 PM,10/18/2012 05:51:15 PM,10/18/2012 06:03:31 PM,10/18/2012 06:16:38 PM,Code 2 Transport,10/18/2012 06:34:33 PM,100 Block of LELAND AVE,SF,94134,B09,44,6256,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121574282644, -122.40604991915)",122920322-93 -160090436,85,16003526,Medical Incident,01/09/2016,01/08/2016,01/09/2016 04:13:43 AM,01/09/2016 04:15:47 AM,01/09/2016 04:16:10 AM,01/09/2016 04:16:33 AM,01/09/2016 04:31:56 AM,01/09/2016 04:50:01 AM,01/09/2016 05:05:32 AM,Code 2 Transport,01/09/2016 05:30:20 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160090436-85 -160143688,65,16005755,Medical Incident,01/14/2016,01/14/2016,01/14/2016 09:45:06 PM,01/14/2016 09:46:51 PM,01/14/2016 09:47:22 PM,01/14/2016 09:47:31 PM,01/14/2016 09:58:44 PM,01/14/2016 10:17:09 PM,01/14/2016 10:38:27 PM,Code 2 Transport,01/14/2016 11:12:31 PM,0 Block of DIAZ AVE,San Francisco,94132,B08,19,8424,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7181624969759, -122.476290287585)",160143688-65 -120900146,E01,12029761,Medical Incident,03/30/2012,03/30/2012,03/30/2012 11:07:14 AM,03/30/2012 11:07:50 AM,03/30/2012 11:08:12 AM,03/30/2012 11:09:51 AM,03/30/2012 11:12:09 AM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,Other,03/30/2012 11:13:49 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",120900146-E01 -160040361,72,16001463,Medical Incident,01/04/2016,01/03/2016,01/04/2016 04:20:20 AM,01/04/2016 04:20:20 AM,01/04/2016 04:21:13 AM,01/04/2016 04:21:20 AM,01/04/2016 04:39:11 AM,01/04/2016 05:16:36 AM,01/04/2016 05:20:17 AM,Code 2 Transport,01/04/2016 06:12:21 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160040361-72 -110650353,88,11021607,Medical Incident,03/06/2011,03/06/2011,03/06/2011 09:20:54 PM,03/06/2011 09:21:29 PM,03/06/2011 09:22:49 PM,03/06/2011 09:23:46 PM,03/06/2011 09:25:00 PM,03/06/2011 09:50:08 PM,03/06/2011 10:06:07 PM,Code 2 Transport,03/06/2011 10:43:40 PM,0 Block of GENEVA AVE,SF,94112,B09,15,8313,3,3,3,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7224526962267, -122.451312748281)",110650353-88 -133480086,B07,13118033,Alarms,12/14/2013,12/13/2013,12/14/2013 07:13:13 AM,12/14/2013 07:14:31 AM,12/14/2013 07:14:45 AM,12/14/2013 07:16:43 AM,12/14/2013 07:20:25 AM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 07:21:12 AM,1000 Block of LAKE ST,SF,94118,B07,31,7137,3,3,3,false,Alarm,1,CHIEF,2,7,2,Inner Richmond,"(37.7864670277445, -122.470583232165)",133480086-B07 -160220895,77,16008687,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:06:10 AM,01/22/2016 09:07:01 AM,01/22/2016 09:07:45 AM,01/22/2016 09:07:53 AM,01/22/2016 09:17:49 AM,01/22/2016 09:56:28 AM,01/22/2016 10:12:32 AM,Code 2 Transport,01/22/2016 10:43:41 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160220895-77 -102370082,E01,10074647,Medical Incident,08/25/2010,08/25/2010,08/25/2010 08:27:17 AM,08/25/2010 08:28:36 AM,08/25/2010 08:29:11 AM,08/25/2010 08:30:14 AM,08/25/2010 08:33:50 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,No Merit,08/25/2010 08:36:07 AM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7864070156063, -122.408499456394)",102370082-E01 -160491005,KM08,16019671,Medical Incident,02/18/2016,02/18/2016,02/18/2016 09:43:15 AM,02/18/2016 09:44:58 AM,02/18/2016 09:46:07 AM,02/18/2016 09:46:47 AM,02/18/2016 09:52:26 AM,02/18/2016 10:20:21 AM,02/18/2016 10:50:14 AM,Code 2 Transport,02/18/2016 11:15:21 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160491005-KM08 -160123602,63,16004965,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:37:04 PM,01/12/2016 09:38:39 PM,01/12/2016 09:39:16 PM,01/12/2016 09:39:35 PM,01/12/2016 09:46:32 PM,01/12/2016 10:12:27 PM,01/12/2016 10:30:14 PM,Code 2 Transport,01/12/2016 11:18:19 PM,1700 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",160123602-63 -120320290,T15,12010671,Alarms,02/01/2012,02/01/2012,02/01/2012 06:26:01 PM,02/01/2012 06:28:05 PM,02/01/2012 06:28:11 PM,02/01/2012 06:29:34 PM,02/01/2012 06:31:36 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Fire,02/01/2012 06:46:00 PM,900 Block of CAYUGA AVE,SF,94112,B09,15,8274,3,3,3,false,Alarm,1,TRUCK,1,9,11,Outer Mission,"(37.7223768275227, -122.439495398905)",120320290-T15 -133270108,T03,13111004,Alarms,11/23/2013,11/22/2013,11/23/2013 07:35:00 AM,11/23/2013 07:36:58 AM,11/23/2013 07:37:04 AM,11/23/2013 07:38:37 AM,11/23/2013 07:40:58 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 07:53:03 AM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",133270108-T03 -113300281,E31,11109529,Medical Incident,11/26/2011,11/26/2011,11/26/2011 10:25:27 PM,11/26/2011 10:27:02 PM,11/26/2011 10:27:48 PM,11/26/2011 10:29:40 PM,11/26/2011 10:32:09 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/26/2011 10:51:36 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",113300281-E31 -113570263,93,11118655,Medical Incident,12/23/2011,12/23/2011,12/23/2011 01:06:34 PM,12/23/2011 01:06:59 PM,12/23/2011 01:07:10 PM,12/23/2011 01:09:52 PM,12/23/2011 01:23:35 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Patient Declined Transport,12/23/2011 01:53:32 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7562319946436, -122.418893283075)",113570263-93 -131860097,T07,13063363,Administrative,07/05/2013,07/05/2013,07/05/2013 08:26:01 AM,07/05/2013 08:26:04 AM,07/05/2013 08:26:20 AM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/05/2013 08:26:49 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",131860097-T07 -130250410,89,13008820,Medical Incident,01/25/2013,01/25/2013,01/25/2013 11:12:40 PM,01/25/2013 11:17:09 PM,01/25/2013 11:17:39 PM,01/25/2013 11:17:50 PM,01/25/2013 11:38:56 PM,01/25/2013 11:46:12 PM,01/25/2013 11:59:47 PM,Code 2 Transport,01/26/2013 12:36:02 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130250410-89 -110840039,AM18,11027543,Medical Incident,03/25/2011,03/24/2011,03/25/2011 02:35:27 AM,03/25/2011 02:35:27 AM,03/25/2011 02:35:27 AM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,03/25/2011 02:38:20 AM,03/25/2011 02:44:52 AM,Code 2 Transport,03/25/2011 03:09:42 AM,OFARRELL ST/POWELL ST,SF,94102,B01,1,1363,2,2,2,false,,1,PRIVATE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",110840039-AM18 -140300185,E01,14010208,Medical Incident,01/30/2014,01/30/2014,01/30/2014 12:35:11 PM,01/30/2014 12:36:30 PM,01/30/2014 12:38:50 PM,01/30/2014 12:38:50 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/30/2014 12:41:18 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",140300185-E01 -121460124,T07,12048417,Structure Fire,05/25/2012,05/25/2012,05/25/2012 11:33:20 AM,05/25/2012 11:33:20 AM,05/25/2012 11:34:09 AM,05/25/2012 11:35:17 AM,05/25/2012 11:38:49 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Other,05/25/2012 11:39:21 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,false,Alarm,1,TRUCK,1,2,6,Mission,"(37.7726641818375, -122.418338317697)",121460124-T07 -110510196,83,11016895,Medical Incident,02/20/2011,02/20/2011,02/20/2011 01:04:21 PM,02/20/2011 01:05:12 PM,02/20/2011 01:05:23 PM,02/20/2011 01:05:35 PM,02/20/2011 01:08:56 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,No Merit,02/20/2011 01:11:04 PM,7TH ST/STEVENSON ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",110510196-83 -133560369,E03,13121186,Medical Incident,12/22/2013,12/22/2013,12/22/2013 09:35:55 PM,12/22/2013 09:37:00 PM,12/22/2013 09:39:44 PM,12/22/2013 09:41:23 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 09:42:27 PM,1300 Block of LARKIN ST,SF,94109,B04,41,1635,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",133560369-E03 -120430129,T01,12014353,Citizen Assist / Service Call,02/12/2012,02/12/2012,02/12/2012 09:33:17 AM,02/12/2012 09:36:50 AM,02/12/2012 09:37:04 AM,02/12/2012 09:38:09 AM,02/12/2012 09:40:41 AM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/12/2012 09:44:59 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120430129-T01 -120330035,72,12010778,Medical Incident,02/02/2012,02/01/2012,02/02/2012 04:07:16 AM,02/02/2012 04:10:57 AM,02/02/2012 04:11:12 AM,02/02/2012 04:11:34 AM,02/02/2012 04:23:26 AM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Patient Declined Transport,02/02/2012 04:27:12 AM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",120330035-72 -131080079,88,13036223,Medical Incident,04/18/2013,04/18/2013,04/18/2013 08:00:32 AM,04/18/2013 08:02:42 AM,04/18/2013 08:02:52 AM,04/18/2013 08:03:00 AM,04/18/2013 08:21:28 AM,04/18/2013 08:39:12 AM,04/18/2013 09:09:46 AM,Code 2 Transport,04/18/2013 09:42:04 AM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",131080079-88 -160731595,AM06,16028989,Medical Incident,03/13/2016,03/13/2016,03/13/2016 02:26:53 PM,03/13/2016 02:27:06 PM,03/13/2016 02:27:15 PM,03/13/2016 02:27:58 PM,03/13/2016 02:31:21 PM,03/13/2016 02:42:07 PM,03/13/2016 03:20:43 PM,Code 2 Transport,03/13/2016 03:52:39 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160731595-AM06 -103410316,79,10109220,Structure Fire,12/07/2010,12/07/2010,12/07/2010 06:16:28 PM,12/07/2010 06:17:08 PM,12/07/2010 06:18:18 PM,12/07/2010 06:18:29 PM,12/07/2010 06:28:09 PM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,Other,12/07/2010 06:30:23 PM,700 Block of PINE ST,SF,94108,B01,2,1325,3,3,3,true,,1,MEDIC,9,1,3,Nob Hill,"(37.7910926840668, -122.408507461375)",103410316-79 -160871197,AM02,16034526,Medical Incident,03/27/2016,03/27/2016,03/27/2016 10:12:46 AM,03/27/2016 10:15:00 AM,03/27/2016 10:16:28 AM,03/27/2016 10:17:03 AM,03/27/2016 10:24:47 AM,03/27/2016 10:42:20 AM,03/27/2016 11:16:17 AM,Code 2 Transport,03/27/2016 11:35:29 AM,0 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8146405483206, -122.370773674411)",160871197-AM02 -120070299,88,12002517,Medical Incident,01/07/2012,01/07/2012,01/07/2012 07:22:13 PM,01/07/2012 07:23:20 PM,01/07/2012 07:24:02 PM,01/07/2012 07:26:04 PM,01/07/2012 07:32:05 PM,01/07/2012 07:41:27 PM,01/07/2012 07:58:30 PM,Code 2 Transport,01/07/2012 08:28:21 PM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",120070299-88 -160051100,KM09,16001933,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:14:23 AM,01/05/2016 10:15:38 AM,01/05/2016 10:15:50 AM,01/05/2016 10:20:27 AM,01/05/2016 10:26:49 AM,01/05/2016 10:34:44 AM,01/05/2016 10:47:48 AM,Code 2 Transport,01/05/2016 11:30:26 AM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160051100-KM09 -160873360,63,16034742,Medical Incident,03/27/2016,03/27/2016,03/27/2016 09:26:45 PM,03/27/2016 09:28:51 PM,03/27/2016 09:35:00 PM,03/27/2016 09:35:15 PM,03/27/2016 09:52:06 PM,03/27/2016 10:14:18 PM,03/27/2016 10:54:10 PM,Code 2 Transport,03/27/2016 11:08:47 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160873360-63 -160251943,79,16009957,Medical Incident,01/25/2016,01/25/2016,01/25/2016 01:35:40 PM,01/25/2016 01:37:06 PM,01/25/2016 01:39:17 PM,01/25/2016 01:39:23 PM,01/25/2016 01:48:46 PM,01/25/2016 01:55:16 PM,01/25/2016 02:00:53 PM,Code 2 Transport,01/25/2016 02:21:09 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160251943-79 -110100322,E02,11003426,Medical Incident,01/10/2011,01/10/2011,01/10/2011 05:59:17 PM,01/10/2011 06:00:03 PM,01/10/2011 06:01:11 PM,01/10/2011 06:02:27 PM,01/10/2011 06:04:18 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/10/2011 06:14:51 PM,1000 Block of STOCKTON ST,SF,94108,B01,2,1331,3,2,2,true,,1,ENGINE,1,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",110100322-E02 -120060019,B01,12001931,Alarms,01/06/2012,01/05/2012,01/06/2012 01:14:34 AM,01/06/2012 01:15:57 AM,01/06/2012 01:16:08 AM,01/06/2012 01:17:51 AM,01/06/2012 01:24:33 AM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Fire,01/06/2012 01:28:41 AM,0 Block of GEARY ST,SF,94108,B01,1,1241,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",120060019-B01 -130610042,54,13020345,Medical Incident,03/02/2013,03/01/2013,03/02/2013 02:43:54 AM,03/02/2013 02:46:47 AM,03/02/2013 02:48:32 AM,04/25/2016 01:54:03 PM,03/02/2013 02:50:30 AM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Medical Examiner,03/02/2013 03:30:02 AM,900 Block of SACRAMENTO ST,SF,94108,B01,2,1326,E,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",130610042-54 -140470338,RS2,14016150,Structure Fire,02/16/2014,02/16/2014,02/16/2014 08:51:31 PM,02/16/2014 08:54:14 PM,02/16/2014 08:54:26 PM,02/16/2014 08:55:51 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 08:59:20 PM,600 Block of KEITH ST,SF,94124,B10,25,6565,,3,3,false,Alarm,1,RESCUE SQUAD,9,10,10,Bayview Hunters Point,"(37.7371958243577, -122.382770664389)",140470338-RS2 -102480267,79,10078442,Traffic Collision,09/05/2010,09/05/2010,09/05/2010 05:53:32 PM,09/05/2010 05:54:33 PM,09/05/2010 05:55:03 PM,09/05/2010 05:56:42 PM,09/05/2010 06:03:06 PM,09/05/2010 06:10:50 PM,09/05/2010 06:17:25 PM,Code 3 Transport,09/05/2010 06:50:29 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,true,,1,MEDIC,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",102480267-79 -113440116,KM12,11114068,Medical Incident,12/10/2011,12/10/2011,12/10/2011 10:13:58 AM,12/10/2011 10:15:13 AM,12/10/2011 10:15:47 AM,12/10/2011 10:16:22 AM,12/10/2011 10:19:11 AM,12/10/2011 10:41:01 AM,12/10/2011 10:48:30 AM,Code 2 Transport,12/10/2011 11:34:38 AM,GEARY BL/LAGUNA ST,SF,94109,B04,5,3432,3,3,3,false,,1,PRIVATE,2,4,5,Western Addition,"(37.7849538777807, -122.427988928146)",113440116-KM12 -132140095,E10,13072197,Medical Incident,08/02/2013,08/02/2013,08/02/2013 09:22:57 AM,08/02/2013 09:23:47 AM,08/02/2013 09:24:05 AM,08/02/2013 09:24:17 AM,08/02/2013 09:26:38 AM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/02/2013 09:45:28 AM,2700 Block of PINE ST,SF,94115,B04,10,4156,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7869521630601, -122.441071822801)",132140095-E10 -102570301,78,10081296,Medical Incident,09/14/2010,09/14/2010,09/14/2010 06:31:30 PM,09/14/2010 06:33:16 PM,09/14/2010 06:34:41 PM,09/14/2010 06:35:12 PM,09/14/2010 06:47:10 PM,09/14/2010 07:16:36 PM,09/14/2010 07:42:37 PM,Code 2 Transport,09/14/2010 08:16:19 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,1,1,2,true,,1,MEDIC,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",102570301-78 -103260240,D3,10104530,Vehicle Fire,11/22/2010,11/22/2010,11/22/2010 04:37:58 PM,11/22/2010 04:39:20 PM,11/22/2010 04:39:48 PM,11/22/2010 04:41:57 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/22/2010 04:44:58 PM,100 Block of WHITNEY YOUNG CIR,SF,94124,B10,17,1100,3,3,3,false,,1,CHIEF,8,10,10,Bayview Hunters Point,"(37.7360363462118, -122.385908786754)",103260240-D3 -123170263,E42,12105579,Medical Incident,11/12/2012,11/12/2012,11/12/2012 07:37:36 PM,11/12/2012 07:38:32 PM,11/12/2012 07:38:47 PM,11/12/2012 07:40:25 PM,11/12/2012 07:43:20 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/12/2012 08:01:26 PM,800 Block of DARTMOUTH ST,SF,94134,B09,44,6322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Portola,"(37.7201607242618, -122.409329987788)",123170263-E42 -130520202,E10,13017590,Medical Incident,02/21/2013,02/21/2013,02/21/2013 01:43:50 PM,02/21/2013 01:45:14 PM,02/21/2013 01:46:37 PM,02/21/2013 01:47:46 PM,02/21/2013 01:50:20 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,02/21/2013 01:57:16 PM,4000 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7812175298072, -122.46268182082)",130520202-E10 -160053707,KM07,16002199,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:44:37 PM,01/05/2016 10:44:37 PM,01/05/2016 10:45:30 PM,01/05/2016 10:46:01 PM,01/05/2016 10:52:50 PM,01/05/2016 11:14:27 PM,01/05/2016 11:27:43 PM,Code 2 Transport,01/06/2016 12:01:29 AM,HOWARD ST/6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",160053707-KM07 -121500172,E01,12049736,Medical Incident,05/29/2012,05/29/2012,05/29/2012 12:45:24 PM,05/29/2012 12:48:01 PM,05/29/2012 12:48:12 PM,05/29/2012 12:49:54 PM,05/29/2012 12:53:14 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/29/2012 12:55:12 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",121500172-E01 -122720327,94,12089882,Medical Incident,09/28/2012,09/28/2012,09/28/2012 11:52:26 PM,09/28/2012 11:52:55 PM,09/28/2012 11:53:05 PM,09/28/2012 11:53:14 PM,09/28/2012 11:57:31 PM,09/29/2012 12:19:17 AM,09/29/2012 12:41:11 AM,Code 2 Transport,09/29/2012 12:57:14 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",122720327-94 -131080197,KM09,13036314,Medical Incident,04/18/2013,04/18/2013,04/18/2013 01:23:40 PM,04/18/2013 01:25:27 PM,04/18/2013 01:26:08 PM,04/18/2013 01:26:54 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/18/2013 01:33:25 PM,600 Block of 22ND AVE,SF,94121,B07,14,7171,3,3,3,false,Non Life-threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7755129398051, -122.481248939147)",131080197-KM09 -160612215,AM16,16024366,Medical Incident,03/01/2016,03/01/2016,03/01/2016 03:54:13 PM,03/01/2016 03:54:18 PM,03/01/2016 03:54:55 PM,03/01/2016 03:56:11 PM,03/01/2016 03:58:40 PM,03/01/2016 04:07:42 PM,03/01/2016 04:19:19 PM,Code 2 Transport,03/01/2016 04:45:38 PM,500 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",160612215-AM16 -160190052,AM20,16007441,Medical Incident,01/19/2016,01/18/2016,01/19/2016 12:25:34 AM,01/19/2016 12:26:23 AM,01/19/2016 12:26:36 AM,01/19/2016 12:27:22 AM,01/19/2016 12:34:17 AM,01/19/2016 12:57:50 AM,01/19/2016 01:13:55 AM,Code 2 Transport,01/19/2016 01:38:19 AM,400 Block of 34TH AVE,San Francisco,94121,B07,34,7247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7806166653743, -122.494381116106)",160190052-AM20 -140880264,E07,14029719,Medical Incident,03/29/2014,03/29/2014,03/29/2014 05:41:10 PM,03/29/2014 05:41:10 PM,03/29/2014 05:43:53 PM,03/29/2014 05:45:13 PM,03/29/2014 05:49:14 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,Patient Declined Transport,03/29/2014 05:59:34 PM,14TH ST/TRAINOR ST,SAN FRANCISCO,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7686021960262, -122.414540072103)",140880264-E07 -113490206,T12,11115820,Traffic Collision,12/15/2011,12/15/2011,12/15/2011 03:20:15 PM,12/15/2011 03:20:21 PM,12/15/2011 03:20:44 PM,04/25/2016 02:01:08 PM,12/15/2011 03:25:41 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/15/2011 03:26:35 PM,MASONIC AV/WALLER ST,SF,94117,B05,21,4466,3,3,3,false,,1,TRUCK,4,5,5,Haight Ashbury,"(37.7692842278909, -122.445105981116)",113490206-T12 -140340085,E29,14011418,Alarms,02/03/2014,02/03/2014,02/03/2014 08:48:43 AM,02/03/2014 08:48:43 AM,02/03/2014 08:48:56 AM,02/03/2014 08:50:42 AM,02/03/2014 08:52:25 AM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 08:59:43 AM,100 Block of VERMONT ST,SF,94103,B02,29,2355,3,3,3,true,Alarm,1,ENGINE,2,2,10,Mission Bay,"(37.76789826103, -122.404743414302)",140340085-E29 -112400041,E01,11079081,Medical Incident,08/28/2011,08/27/2011,08/28/2011 02:05:33 AM,08/28/2011 02:08:07 AM,08/28/2011 02:09:23 AM,04/25/2016 02:02:57 PM,08/28/2011 02:12:00 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,No Merit,08/28/2011 02:18:55 AM,4TH ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",112400041-E01 -160681201,KM11,16027080,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:21:21 AM,03/08/2016 10:28:36 AM,03/08/2016 10:30:13 AM,03/08/2016 10:30:52 AM,03/08/2016 10:47:08 AM,03/08/2016 11:01:25 AM,03/08/2016 11:23:08 AM,Code 2 Transport,03/08/2016 11:41:47 AM,1000 Block of CAPITOL AVE,San Francisco,94112,B09,15,8464,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209306726237, -122.459270472767)",160681201-KM11 -131150178,T14,13038779,Citizen Assist / Service Call,04/25/2013,04/25/2013,04/25/2013 02:26:55 PM,04/25/2013 02:27:37 PM,04/25/2013 02:27:57 PM,04/25/2013 02:29:08 PM,04/25/2013 02:30:52 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 02:55:44 PM,500 Block of 24TH AVE,SF,94121,B07,14,7213,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.7791817647436, -122.483524577803)",131150178-T14 -131990224,T03,13067495,Medical Incident,07/18/2013,07/18/2013,07/18/2013 02:52:38 PM,07/18/2013 02:53:46 PM,07/18/2013 02:54:46 PM,07/18/2013 02:55:58 PM,07/18/2013 02:59:00 PM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 03:04:36 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",131990224-T03 -131870277,E05,13063877,Administrative,07/06/2013,07/06/2013,07/06/2013 07:35:08 PM,07/06/2013 07:35:14 PM,07/06/2013 07:35:24 PM,04/25/2016 01:51:55 PM,04/25/2016 01:51:55 PM,04/25/2016 01:51:55 PM,04/25/2016 01:51:55 PM,Other,07/06/2013 07:36:33 PM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",131870277-E05 -110050201,E11,11001651,Medical Incident,01/05/2011,01/05/2011,01/05/2011 12:50:10 PM,01/05/2011 12:50:32 PM,01/05/2011 12:50:56 PM,01/05/2011 12:51:40 PM,01/05/2011 12:53:26 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 12:57:09 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.749836317622, -122.418280538883)",110050201-E11 -110910080,87,11030059,Medical Incident,04/01/2011,03/31/2011,04/01/2011 07:18:35 AM,04/01/2011 07:19:48 AM,04/01/2011 07:20:17 AM,04/01/2011 07:21:16 AM,04/01/2011 07:33:45 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Medical Examiner,04/01/2011 08:00:48 AM,600 Block of MASON ST,SF,94108,B01,3,1412,E,E,3,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7894926602391, -122.41026951897)",110910080-87 -122290204,T07,12075892,Alarms,08/16/2012,08/16/2012,08/16/2012 01:30:05 PM,08/16/2012 01:30:59 PM,08/16/2012 01:32:20 PM,08/16/2012 01:35:19 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Other,08/16/2012 01:36:00 PM,0 Block of LIBERTY ST,SF,94110,B06,7,5456,3,3,3,false,Alarm,1,TRUCK,3,6,8,Mission,"(37.7575809773167, -122.422275311384)",122290204-T07 -140630071,E01,14021193,Medical Incident,03/04/2014,03/03/2014,03/04/2014 07:43:43 AM,03/04/2014 07:44:07 AM,03/04/2014 07:48:27 AM,04/25/2016 01:47:55 PM,03/04/2014 07:48:27 AM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Code 2 Transport,03/04/2014 07:53:29 AM,0 Block of MORRIS ST,SF,94107,B03,8,2254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.777123803141, -122.402705469681)",140630071-E01 -160680093,61,16026958,Traffic Collision,03/08/2016,03/07/2016,03/08/2016 12:42:59 AM,03/08/2016 12:42:59 AM,03/08/2016 12:43:33 AM,03/08/2016 12:44:04 AM,03/08/2016 12:45:52 AM,03/08/2016 01:16:02 AM,03/08/2016 01:16:22 AM,Code 2 Transport,03/08/2016 02:18:54 AM,HOWARD ST/MAIN ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160680093-61 -103110268,E07,10099816,Medical Incident,11/07/2010,11/07/2010,11/07/2010 05:10:18 PM,11/07/2010 05:10:43 PM,11/07/2010 05:11:11 PM,11/07/2010 05:12:28 PM,11/07/2010 05:14:24 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 05:20:43 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",103110268-E07 -131590060,E15,13053916,Medical Incident,06/08/2013,06/07/2013,06/08/2013 04:57:48 AM,06/08/2013 04:59:40 AM,06/08/2013 05:00:30 AM,06/08/2013 05:02:18 AM,06/08/2013 05:04:47 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 05:13:32 AM,100 Block of FOERSTER ST,SF,94112,B09,15,8232,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7294777509193, -122.448783037809)",131590060-E15 -132780432,67,13094723,Medical Incident,10/05/2013,10/05/2013,10/05/2013 11:43:52 PM,10/05/2013 11:45:46 PM,10/05/2013 11:46:05 PM,10/05/2013 11:46:13 PM,10/05/2013 11:57:53 PM,10/06/2013 12:15:02 AM,10/06/2013 12:32:03 AM,Code 2 Transport,10/06/2013 12:51:21 AM,1800 Block of GENEVA AVE,SF,94134,B09,43,6245,2,2,2,false,Non Life-threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7097139615877, -122.423915088819)",132780432-67 -130510039,E08,13017152,Medical Incident,02/20/2013,02/19/2013,02/20/2013 04:23:36 AM,02/20/2013 04:25:27 AM,02/20/2013 04:25:53 AM,02/20/2013 04:28:30 AM,02/20/2013 04:30:13 AM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Other,02/20/2013 04:34:18 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130510039-E08 -122540010,E36,12083824,Medical Incident,09/10/2012,09/09/2012,09/10/2012 12:57:12 AM,09/10/2012 12:59:29 AM,09/10/2012 01:00:22 AM,09/10/2012 01:02:30 AM,09/10/2012 01:04:37 AM,04/25/2016 01:56:50 PM,04/25/2016 01:56:50 PM,Other,09/10/2012 01:14:03 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",122540010-E36 -102420248,KM14,10076372,Medical Incident,08/30/2010,08/30/2010,08/30/2010 03:42:59 PM,08/30/2010 03:45:44 PM,08/30/2010 03:46:03 PM,08/30/2010 03:46:38 PM,08/30/2010 03:51:51 PM,08/30/2010 04:10:49 PM,08/30/2010 04:20:09 PM,Code 2 Transport,08/30/2010 04:36:36 PM,600 Block of CLARENDON AVE,SF,94131,B08,20,535,3,3,3,false,,1,PRIVATE,2,8,7,Inner Sunset,"(37.7519950375446, -122.458952047787)",102420248-KM14 -130180305,86,13006235,Medical Incident,01/18/2013,01/18/2013,01/18/2013 04:54:48 PM,01/18/2013 04:56:23 PM,01/18/2013 05:08:11 PM,04/25/2016 01:54:44 PM,01/18/2013 05:12:18 PM,01/18/2013 05:22:01 PM,01/18/2013 05:31:27 PM,Code 2 Transport,01/18/2013 06:14:16 PM,900 Block of GUERRERO ST,SF,94110,B06,11,5471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7559629467017, -122.423368898448)",130180305-86 -110200306,T12,11006699,Structure Fire,01/20/2011,01/20/2011,01/20/2011 05:20:02 PM,01/20/2011 05:20:59 PM,01/20/2011 05:21:27 PM,01/20/2011 05:22:20 PM,01/20/2011 05:29:27 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 05:32:44 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,TRUCK,3,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110200306-T12 -113180249,65,11105698,Traffic Collision,11/14/2011,11/14/2011,11/14/2011 04:45:15 PM,11/14/2011 04:52:44 PM,11/14/2011 04:54:06 PM,11/14/2011 04:55:18 PM,11/14/2011 05:15:16 PM,11/14/2011 05:27:02 PM,11/14/2011 05:44:14 PM,Code 2 Transport,11/14/2011 06:24:22 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,2,2,2,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",113180249-65 -102440063,E03,10076881,Medical Incident,09/01/2010,08/31/2010,09/01/2010 07:15:46 AM,09/01/2010 07:16:25 AM,09/01/2010 07:16:44 AM,09/01/2010 07:18:31 AM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,09/01/2010 07:20:11 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",102440063-E03 -120990344,E24,12032955,Medical Incident,04/08/2012,04/08/2012,04/08/2012 10:33:58 PM,04/08/2012 10:34:17 PM,04/08/2012 10:34:43 PM,04/08/2012 10:36:03 PM,04/08/2012 10:38:25 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 10:41:20 PM,CORBETT AV/MARS ST,SF,94114,B05,24,5265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7605139661297, -122.444350392988)",120990344-E24 -112510066,T16,11082672,Alarms,09/08/2011,09/07/2011,09/08/2011 06:24:00 AM,09/08/2011 06:25:15 AM,09/08/2011 06:25:29 AM,09/08/2011 06:26:59 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 06:29:12 AM,2200 Block of VALLEJO ST,SF,94123,B04,16,3551,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.7953847417128, -122.434302143729)",112510066-T16 -111600044,E03,11052782,Alarms,06/09/2011,06/08/2011,06/09/2011 05:26:38 AM,06/09/2011 05:27:41 AM,06/09/2011 05:27:57 AM,06/09/2011 05:30:21 AM,06/09/2011 05:31:55 AM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 05:38:08 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",111600044-E03 -123600178,85,12120506,Medical Incident,12/25/2012,12/25/2012,12/25/2012 02:14:13 PM,12/25/2012 02:15:05 PM,12/25/2012 02:15:16 PM,12/25/2012 02:16:04 PM,12/25/2012 02:18:24 PM,12/25/2012 02:33:32 PM,12/25/2012 02:46:18 PM,Code 2 Transport,12/25/2012 03:16:05 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",123600178-85 -160400995,AM10,16015942,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:31:33 AM,02/09/2016 09:31:33 AM,02/09/2016 09:31:56 AM,02/09/2016 09:32:14 AM,02/09/2016 09:50:47 AM,02/09/2016 09:50:50 AM,02/09/2016 10:15:45 AM,Code 2 Transport,02/09/2016 10:28:38 AM,0 Block of CAMPTON PL,San Francisco,94108,B01,1,1316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7891339288301, -122.406092232969)",160400995-AM10 -122350243,79,12077925,Medical Incident,08/22/2012,08/22/2012,08/22/2012 04:54:59 PM,08/22/2012 04:59:01 PM,08/22/2012 05:00:16 PM,08/22/2012 05:01:16 PM,08/22/2012 05:08:02 PM,08/22/2012 05:30:45 PM,08/22/2012 05:54:33 PM,Code 2 Transport,08/22/2012 06:12:02 PM,0 Block of TURK ST,SF,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122350243-79 -131190141,E37,13040005,Citizen Assist / Service Call,04/29/2013,04/29/2013,04/29/2013 09:53:55 AM,04/29/2013 09:55:14 AM,04/29/2013 09:55:29 AM,04/29/2013 09:55:52 AM,04/29/2013 09:59:59 AM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Fire,04/29/2013 10:03:46 AM,UTAH ST/23RD ST,SF,94110,B10,37,2554,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.754337232305, -122.405454171915)",131190141-E37 -130540256,T02,13018324,Structure Fire,02/23/2013,02/23/2013,02/23/2013 05:44:38 PM,02/23/2013 05:44:39 PM,02/23/2013 05:45:04 PM,02/23/2013 05:46:51 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 05:47:46 PM,STOCKTON ST/BAY ST,SF,94133,B01,28,1341,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8060277167068, -122.410310842828)",130540256-T02 -110280274,RC2,11009297,Watercraft in Distress,01/28/2011,01/28/2011,01/28/2011 05:54:48 PM,01/28/2011 05:56:07 PM,01/28/2011 05:56:22 PM,01/28/2011 05:59:19 PM,01/28/2011 06:06:29 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/28/2011 06:41:14 PM,500 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",110280274-RC2 -160423465,66,16017025,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:35:12 PM,02/11/2016 08:35:12 PM,02/11/2016 08:36:07 PM,02/11/2016 08:36:30 PM,02/11/2016 08:43:13 PM,02/11/2016 09:25:36 PM,02/11/2016 09:25:37 PM,Code 2 Transport,02/11/2016 10:28:04 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160423465-66 -102640053,E33,10083447,Medical Incident,09/21/2010,09/20/2010,09/21/2010 06:49:21 AM,09/21/2010 06:50:07 AM,09/21/2010 06:50:24 AM,09/21/2010 06:52:08 AM,09/21/2010 06:54:10 AM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:11:02 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,E,E,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",102640053-E33 -160483116,KM03,16019449,Medical Incident,02/17/2016,02/17/2016,02/17/2016 06:06:05 PM,02/17/2016 06:06:55 PM,02/17/2016 06:07:20 PM,02/17/2016 06:07:57 PM,02/17/2016 06:13:35 PM,02/17/2016 06:32:12 PM,02/17/2016 06:40:41 PM,Code 2 Transport,02/17/2016 07:18:12 PM,0 Block of WESTERN SHORE LN,San Francisco,94115,B04,5,3432,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7840488621731, -122.428507259493)",160483116-KM03 -112950242,E02,11097894,Medical Incident,10/22/2011,10/22/2011,10/22/2011 04:32:19 PM,10/22/2011 04:33:11 PM,10/22/2011 04:34:51 PM,10/22/2011 04:36:22 PM,10/22/2011 04:39:09 PM,10/22/2011 04:59:43 PM,10/22/2011 05:26:27 PM,Other,10/22/2011 05:30:08 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,E,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",112950242-E02 -160533074,79,16021355,Medical Incident,02/22/2016,02/22/2016,02/22/2016 07:36:15 PM,02/22/2016 07:38:20 PM,02/22/2016 07:38:37 PM,02/22/2016 07:44:08 PM,02/22/2016 07:50:31 PM,02/22/2016 08:02:12 PM,02/22/2016 08:14:41 PM,Code 2 Transport,02/22/2016 08:45:36 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160533074-79 -110560006,96,11018302,Medical Incident,02/25/2011,02/24/2011,02/25/2011 12:21:51 AM,02/25/2011 12:23:42 AM,02/25/2011 12:24:40 AM,02/25/2011 12:25:41 AM,02/25/2011 12:30:23 AM,02/25/2011 12:39:49 AM,02/25/2011 01:10:31 AM,Code 2 Transport,02/25/2011 01:23:55 AM,HAIGHT ST/CLAYTON ST,SF,94117,B05,12,4525,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",110560006-96 -160130740,63,16005088,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:11:57 AM,01/13/2016 08:14:17 AM,01/13/2016 08:15:04 AM,01/13/2016 08:16:30 AM,01/13/2016 08:27:50 AM,01/13/2016 08:50:12 AM,01/13/2016 09:09:22 AM,Code 2 Transport,01/13/2016 09:49:56 AM,500 Block of ELLINGTON AVE,San Francisco,94112,B09,33,6211,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.710553884695, -122.448747668125)",160130740-63 -103190161,E09,10102230,Medical Incident,11/15/2010,11/15/2010,11/15/2010 11:19:44 AM,11/15/2010 11:20:35 AM,11/15/2010 11:21:31 AM,11/15/2010 11:22:27 AM,11/15/2010 11:34:57 AM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 11:45:13 AM,1300 Block of NEWHALL ST,SF,94124,B10,17,6471,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7359424972351, -122.391874407163)",103190161-E09 -122650130,85,12087507,Medical Incident,09/21/2012,09/21/2012,09/21/2012 11:42:00 AM,09/21/2012 11:43:37 AM,09/21/2012 11:43:45 AM,09/21/2012 11:44:21 AM,09/21/2012 11:55:41 AM,09/21/2012 12:19:08 PM,09/21/2012 12:33:43 PM,Code 2 Transport,09/21/2012 01:14:21 PM,1200 Block of MARKET ST,SF,94103,B02,36,2337,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",122650130-85 -140850058,E10,14028526,Medical Incident,03/26/2014,03/25/2014,03/26/2014 07:09:18 AM,03/26/2014 07:09:38 AM,03/26/2014 07:10:35 AM,03/26/2014 07:11:21 AM,03/26/2014 07:15:29 AM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/26/2014 07:44:03 AM,200 Block of 9TH AVE,SAN FRANCISCO,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",140850058-E10 -121600305,E44,12053041,Medical Incident,06/08/2012,06/08/2012,06/08/2012 05:50:09 PM,06/08/2012 05:52:32 PM,06/08/2012 05:53:09 PM,06/08/2012 05:55:35 PM,06/08/2012 06:00:47 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,06/08/2012 06:02:00 PM,BROOKDALE AV/BLYTHDALE AV,SF,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7113166944432, -122.422240832139)",121600305-E44 -160413362,70,16016612,Medical Incident,02/10/2016,02/10/2016,02/10/2016 07:30:19 PM,02/10/2016 07:30:56 PM,02/10/2016 07:31:36 PM,02/10/2016 07:31:44 PM,02/10/2016 07:44:14 PM,02/10/2016 08:01:41 PM,02/10/2016 08:33:04 PM,Code 2 Transport,02/10/2016 08:50:39 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160413362-70 -110200137,E10,11006557,Structure Fire,01/20/2011,01/20/2011,01/20/2011 10:23:31 AM,01/20/2011 10:23:42 AM,01/20/2011 10:25:20 AM,01/20/2011 10:25:33 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 10:26:57 AM,3900 Block of SACRAMENTO ST,SF,94118,B07,10,444,3,3,3,true,,1,ENGINE,2,7,2,Presidio Heights,"(37.7868299907171, -122.458076168664)",110200137-E10 -133100143,B06,13105360,Medical Incident,11/06/2013,11/06/2013,11/06/2013 11:38:49 AM,11/06/2013 11:39:30 AM,11/06/2013 11:45:32 AM,04/25/2016 01:49:53 PM,11/06/2013 12:00:13 PM,04/25/2016 01:49:53 PM,04/25/2016 01:49:53 PM,Other,11/06/2013 12:01:00 PM,300 Block of LAIDLEY ST,SF,94131,B06,26,8127,3,E,3,false,Potentially Life-Threatening,1,CHIEF,4,6,8,Glen Park,"(37.7372888006621, -122.428846489541)",133100143-B06 -122480046,E03,12081878,Medical Incident,09/04/2012,09/03/2012,09/04/2012 03:37:03 AM,09/04/2012 03:38:18 AM,09/04/2012 03:38:34 AM,09/04/2012 03:41:34 AM,09/04/2012 03:42:26 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/04/2012 03:44:08 AM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",122480046-E03 -160393451,54,16015795,Medical Incident,02/08/2016,02/08/2016,02/08/2016 08:53:06 PM,02/08/2016 08:54:08 PM,02/08/2016 08:54:50 PM,02/08/2016 08:55:02 PM,02/08/2016 08:59:14 PM,02/08/2016 09:56:50 PM,02/08/2016 09:59:23 PM,Code 2 Transport,02/08/2016 10:35:45 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160393451-54 -130030209,E06,13001029,Medical Incident,01/03/2013,01/03/2013,01/03/2013 01:28:59 PM,01/03/2013 01:29:35 PM,01/03/2013 01:29:57 PM,01/03/2013 01:31:37 PM,01/03/2013 01:32:49 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 01:34:56 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",130030209-E06 -103560074,E06,10114183,Medical Incident,12/22/2010,12/22/2010,12/22/2010 08:25:36 AM,12/22/2010 08:26:59 AM,12/22/2010 08:28:51 AM,12/22/2010 08:30:05 AM,12/22/2010 08:33:43 AM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,Other,12/22/2010 08:41:42 AM,1600 Block of MISSION ST,SF,94103,B02,36,5124,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7703629020559, -122.419794421077)",103560074-E06 -133320303,E16,13112794,Medical Incident,11/28/2013,11/28/2013,11/28/2013 11:11:18 PM,11/28/2013 11:13:37 PM,11/28/2013 11:13:49 PM,11/28/2013 11:15:21 PM,11/28/2013 11:18:26 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 11:29:00 PM,2900 Block of BAKER ST,SF,94123,B04,16,4313,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7981492207549, -122.445948017405)",133320303-E16 -121710115,E39,12056699,Administrative,06/19/2012,06/19/2012,06/19/2012 09:32:56 AM,06/19/2012 09:32:58 AM,06/19/2012 09:34:06 AM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/19/2012 09:40:44 AM,1000 Block of PORTOLA DR,SF,94127,B08,39,8572,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7404960254393, -122.458524519728)",121710115-E39 -140930126,E03,14031222,Medical Incident,04/03/2014,04/03/2014,04/03/2014 10:29:37 AM,04/03/2014 10:30:56 AM,04/03/2014 10:31:45 AM,04/03/2014 10:31:59 AM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,Code 2 Transport,04/03/2014 10:34:23 AM,200 Block of 10TH ST,SAN FRANCISCO,94103,B02,36,2342,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7734664897325, -122.413546904215)",140930126-E03 -103470242,KM14,10111313,Medical Incident,12/13/2010,12/13/2010,12/13/2010 02:44:02 PM,12/13/2010 02:47:43 PM,12/13/2010 02:49:28 PM,12/13/2010 02:50:17 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Patient Declined Transport,12/13/2010 03:16:10 PM,500 Block of 28TH AVE,SF,94121,B07,14,7226,3,3,3,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7789805573402, -122.487944517456)",103470242-KM14 -110280029,E01,11009104,Alarms,01/28/2011,01/27/2011,01/28/2011 03:53:16 AM,01/28/2011 03:54:17 AM,01/28/2011 03:54:29 AM,01/28/2011 03:56:32 AM,01/28/2011 03:59:20 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 04:05:34 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110280029-E01 -112920109,E29,11096831,Medical Incident,10/19/2011,10/19/2011,10/19/2011 09:20:55 AM,10/19/2011 09:21:55 AM,10/19/2011 09:22:07 AM,10/19/2011 09:24:41 AM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/19/2011 09:28:24 AM,1200 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,3,2,6,South of Market,"(37.7770436202636, -122.413583483648)",112920109-E29 -160812311,61,16032237,Medical Incident,03/21/2016,03/21/2016,03/21/2016 03:20:24 PM,03/21/2016 03:21:38 PM,03/21/2016 03:22:02 PM,03/21/2016 03:22:15 PM,03/21/2016 03:26:15 PM,03/21/2016 03:40:21 PM,03/21/2016 03:51:42 PM,Code 2 Transport,03/21/2016 04:19:52 PM,600 Block of HOLLY PARK CIR,San Francisco,94110,B06,32,564,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7368887944401, -122.421170118394)",160812311-61 -112000298,RC3,11066045,Medical Incident,07/19/2011,07/19/2011,07/19/2011 06:54:48 PM,07/19/2011 06:55:30 PM,07/19/2011 06:56:04 PM,07/19/2011 06:56:32 PM,07/19/2011 07:03:23 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/19/2011 07:24:06 PM,2400 Block of KEITH ST,SF,94124,B10,17,6546,3,E,3,true,,1,RESCUE CAPTAIN,2,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",112000298-RC3 -130050316,E32,13001838,Medical Incident,01/05/2013,01/05/2013,01/05/2013 06:41:42 PM,01/05/2013 06:42:13 PM,01/05/2013 06:43:26 PM,01/05/2013 06:44:54 PM,01/05/2013 06:47:26 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/05/2013 07:04:16 PM,200 Block of CHENERY ST,SF,94131,B06,32,8113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7377199867519, -122.426819638194)",130050316-E32 -103490336,E29,10112055,Structure Fire,12/15/2010,12/15/2010,12/15/2010 08:55:21 PM,12/15/2010 08:55:38 PM,12/15/2010 08:55:57 PM,12/15/2010 08:59:32 PM,12/15/2010 09:02:29 PM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Other,12/15/2010 09:14:57 PM,100 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,true,,1,ENGINE,6,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",103490336-E29 -160460899,89,16018436,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:04:02 AM,02/15/2016 09:06:17 AM,02/15/2016 09:07:28 AM,02/15/2016 09:07:39 AM,02/15/2016 09:18:19 AM,02/15/2016 09:40:47 AM,02/15/2016 10:04:42 AM,Code 2 Transport,02/15/2016 10:56:58 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160460899-89 -160840096,KM07,16033205,Medical Incident,03/24/2016,03/23/2016,03/24/2016 12:44:18 AM,03/24/2016 12:49:46 AM,03/24/2016 12:50:43 AM,03/24/2016 12:52:47 AM,03/24/2016 01:04:25 AM,03/24/2016 01:18:58 AM,03/24/2016 01:39:17 AM,Code 2 Transport,03/24/2016 02:09:02 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160840096-KM07 -121220038,66,12040379,Medical Incident,05/01/2012,04/30/2012,05/01/2012 05:51:50 AM,05/01/2012 05:52:50 AM,05/01/2012 05:53:24 AM,05/01/2012 05:53:36 AM,05/01/2012 05:58:51 AM,05/01/2012 06:14:51 AM,05/01/2012 06:19:22 AM,Code 3 Transport,05/01/2012 07:05:06 AM,1100 Block of FOLSOM ST,SF,94103,B02,29,2322,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7752603293476, -122.409820946894)",121220038-66 -122020313,RWC2,12067216,Water Rescue,07/20/2012,07/20/2012,07/20/2012 06:51:06 PM,07/20/2012 06:51:27 PM,07/20/2012 06:51:58 PM,07/20/2012 06:59:40 PM,07/20/2012 07:16:58 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 07:29:18 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,SUPPORT,8,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122020313-RWC2 -110950311,B08,11031656,Structure Fire,04/05/2011,04/05/2011,04/05/2011 08:52:08 PM,04/05/2011 08:53:09 PM,04/05/2011 08:53:54 PM,04/06/2011 03:55:21 AM,04/06/2011 04:06:54 AM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,Other,04/06/2011 08:40:24 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,3,CHIEF,37,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",110950311-B08 -140280078,D2,14009444,Structure Fire,01/28/2014,01/28/2014,01/28/2014 08:37:47 AM,01/28/2014 08:38:14 AM,01/28/2014 08:38:42 AM,01/28/2014 08:40:27 AM,01/28/2014 08:42:31 AM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/28/2014 08:43:13 AM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,false,Alarm,1,CHIEF,5,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",140280078-D2 -160190353,82,16007470,Medical Incident,01/19/2016,01/18/2016,01/19/2016 04:00:47 AM,01/19/2016 04:01:42 AM,01/19/2016 04:04:41 AM,01/19/2016 04:04:59 AM,01/19/2016 04:16:39 AM,01/19/2016 04:20:38 AM,01/19/2016 04:34:27 AM,Code 2 Transport,01/19/2016 05:08:20 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160190353-82 -160751479,56,16029687,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:42:31 AM,03/15/2016 11:43:38 AM,03/15/2016 11:45:19 AM,03/15/2016 11:46:18 AM,03/15/2016 11:50:10 AM,03/15/2016 12:02:53 PM,03/15/2016 12:07:48 PM,Code 3 Transport,03/15/2016 01:11:21 PM,400 Block of DEWEY BLVD,San Francisco,94116,B08,20,8641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7463886812531, -122.460229338032)",160751479-56 -160403121,55,16016168,Medical Incident,02/09/2016,02/09/2016,02/09/2016 06:41:53 PM,02/09/2016 06:44:26 PM,02/09/2016 06:45:20 PM,02/09/2016 06:45:42 PM,02/09/2016 06:50:27 PM,02/09/2016 07:00:17 PM,02/09/2016 07:03:01 PM,Code 2 Transport,02/09/2016 07:36:10 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160403121-55 -112610075,86,11086050,Medical Incident,09/18/2011,09/17/2011,09/18/2011 05:35:28 AM,09/18/2011 05:35:28 AM,09/18/2011 05:36:12 AM,09/18/2011 05:37:08 AM,09/18/2011 05:46:53 AM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/18/2011 06:45:44 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,E,E,3,false,,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",112610075-86 -122900162,54,12095949,Medical Incident,10/16/2012,10/16/2012,10/16/2012 10:49:49 AM,10/16/2012 10:51:13 AM,10/16/2012 10:53:11 AM,10/16/2012 10:53:28 AM,10/16/2012 11:06:54 AM,10/16/2012 11:25:36 AM,10/16/2012 11:52:43 AM,Code 2 Transport,10/16/2012 12:27:43 PM,CALIFORNIA ST/10TH AV,SF,94118,B07,31,7136,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7846209046597, -122.468839736978)",122900162-54 -113260053,E17,11108154,Medical Incident,11/22/2011,11/21/2011,11/22/2011 06:29:39 AM,11/22/2011 06:31:30 AM,11/22/2011 06:32:50 AM,11/22/2011 06:35:07 AM,11/22/2011 06:38:17 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 06:38:19 AM,4900 Block of 3RD ST,SF,94124,B10,17,6514,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7336495044123, -122.391238077668)",113260053-E17 -110820182,B02,11026943,Structure Fire,03/23/2011,03/23/2011,03/23/2011 12:38:04 PM,03/23/2011 12:38:21 PM,03/23/2011 12:38:49 PM,03/23/2011 12:40:36 PM,03/23/2011 12:43:35 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 12:44:24 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",110820182-B02 -102420215,E03,10076341,Medical Incident,08/30/2010,08/30/2010,08/30/2010 02:23:17 PM,08/30/2010 02:24:18 PM,08/30/2010 02:25:20 PM,08/30/2010 02:26:15 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/30/2010 02:27:06 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,3,3,true,,1,ENGINE,3,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",102420215-E03 -103590025,RC3,10115092,Medical Incident,12/25/2010,12/24/2010,12/25/2010 01:20:19 AM,12/25/2010 01:21:22 AM,12/25/2010 01:21:30 AM,04/25/2016 02:06:56 PM,12/25/2010 01:24:04 AM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 01:35:16 AM,3100 Block of 24TH ST,SF,94110,B06,7,5526,3,3,3,true,,1,RESCUE CAPTAIN,1,6,9,Mission,"(37.7524609846175, -122.415724213925)",103590025-RC3 -113370237,75,11111697,Medical Incident,12/03/2011,12/03/2011,12/03/2011 04:09:38 PM,12/03/2011 04:11:31 PM,12/03/2011 04:11:45 PM,12/03/2011 04:12:03 PM,12/03/2011 04:16:56 PM,12/03/2011 04:37:41 PM,12/03/2011 04:54:56 PM,Code 2 Transport,12/03/2011 05:20:09 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",113370237-75 -123540241,T14,12118489,High Angle Rescue,12/19/2012,12/19/2012,12/19/2012 02:28:10 PM,12/19/2012 02:30:27 PM,12/19/2012 02:35:31 PM,04/25/2016 01:55:14 PM,12/19/2012 02:44:23 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 02:56:18 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Fire,1,TRUCK,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",123540241-T14 -131880079,KM09,13064021,Medical Incident,07/07/2013,07/06/2013,07/07/2013 07:29:58 AM,07/07/2013 07:31:32 AM,07/07/2013 07:31:54 AM,07/07/2013 07:32:54 AM,07/07/2013 07:37:14 AM,07/07/2013 08:09:48 AM,07/07/2013 08:16:55 AM,Code 2 Transport,07/07/2013 08:46:48 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131880079-KM09 -140620212,E06,14020973,Medical Incident,03/03/2014,03/03/2014,03/03/2014 02:26:45 PM,03/03/2014 02:28:28 PM,03/03/2014 02:31:31 PM,03/03/2014 02:32:34 PM,03/03/2014 02:35:04 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Code 2 Transport,03/03/2014 02:46:25 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7694867849847, -122.429522203036)",140620212-E06 -122190052,E31,12072550,Medical Incident,08/06/2012,08/05/2012,08/06/2012 05:57:50 AM,08/06/2012 05:59:21 AM,08/06/2012 06:00:55 AM,08/06/2012 06:02:53 AM,08/06/2012 06:06:43 AM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/06/2012 06:08:15 AM,300 Block of 3RD AVE,SF,94118,B07,31,7116,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7821271171767, -122.461066067245)",122190052-E31 -132350083,AM02,13079235,Medical Incident,08/23/2013,08/23/2013,08/23/2013 08:24:32 AM,08/23/2013 08:25:57 AM,08/23/2013 08:26:12 AM,08/23/2013 08:27:30 AM,08/23/2013 08:32:55 AM,08/23/2013 08:44:44 AM,08/23/2013 09:04:08 AM,Code 2 Transport,08/23/2013 09:35:42 AM,700 Block of DOLORES ST,SF,94110,B06,11,5457,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Mission,"(37.7570397158911, -122.425508651188)",132350083-AM02 -160173542,AM20,16007051,Medical Incident,01/17/2016,01/17/2016,01/17/2016 11:30:42 PM,01/17/2016 11:35:59 PM,01/17/2016 11:36:23 PM,01/17/2016 11:36:58 PM,01/17/2016 11:38:09 PM,01/17/2016 11:55:36 PM,01/18/2016 12:15:56 AM,Code 2 Transport,01/18/2016 12:46:24 AM,MISSION ST/PERSIA AV,San Francisco,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",160173542-AM20 -113180253,E43,11105700,Medical Incident,11/14/2011,11/14/2011,11/14/2011 05:04:00 PM,11/14/2011 05:04:49 PM,11/14/2011 05:05:07 PM,11/14/2011 05:06:27 PM,11/14/2011 05:09:17 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Gone on Arrival,11/14/2011 05:11:08 PM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",113180253-E43 -130260377,E08,13009145,Medical Incident,01/26/2013,01/26/2013,01/26/2013 11:47:51 PM,01/26/2013 11:49:11 PM,01/26/2013 11:49:27 PM,01/26/2013 11:51:40 PM,01/26/2013 11:56:57 PM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 12:17:48 AM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7848984736106, -122.389669866427)",130260377-E08 -160544061,88,16021805,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:31:10 PM,02/23/2016 10:32:10 PM,02/23/2016 10:32:38 PM,02/23/2016 10:33:01 PM,02/23/2016 10:47:22 PM,02/23/2016 10:51:20 PM,02/23/2016 11:11:26 PM,Code 2 Transport,02/23/2016 11:39:36 PM,1200 Block of MARINER DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",160544061-88 -132970056,87,13100774,Medical Incident,10/24/2013,10/23/2013,10/24/2013 07:06:34 AM,10/24/2013 07:07:48 AM,10/24/2013 07:11:02 AM,10/24/2013 07:11:08 AM,10/24/2013 07:23:09 AM,10/24/2013 07:35:01 AM,10/24/2013 07:47:50 AM,Code 3 Transport,10/24/2013 08:15:30 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",132970056-87 -132900376,75,13098807,Medical Incident,10/17/2013,10/17/2013,10/17/2013 08:34:36 PM,10/17/2013 08:34:43 PM,10/17/2013 08:38:59 PM,10/17/2013 08:40:23 PM,10/17/2013 08:52:51 PM,10/17/2013 09:04:48 PM,10/17/2013 09:12:46 PM,Code 2 Transport,10/17/2013 09:44:27 PM,SHOTWELL ST/21ST ST,SF,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",132900376-75 -160603167,79,16024054,Medical Incident,02/29/2016,02/29/2016,02/29/2016 07:41:33 PM,02/29/2016 07:41:33 PM,02/29/2016 07:43:08 PM,02/29/2016 07:44:47 PM,02/29/2016 07:47:54 PM,02/29/2016 08:04:03 PM,02/29/2016 08:12:44 PM,Code 2 Transport,02/29/2016 09:06:05 PM,MARKET ST/4TH ST,San Francisco,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160603167-79 -132630026,E20,13088974,Medical Incident,09/20/2013,09/19/2013,09/20/2013 01:48:14 AM,09/20/2013 01:49:32 AM,09/20/2013 01:50:07 AM,09/20/2013 01:52:28 AM,09/20/2013 01:55:20 AM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 01:59:51 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",132630026-E20 -140730005,T12,14024500,Medical Incident,03/14/2014,03/13/2014,03/14/2014 12:07:39 AM,03/14/2014 12:08:40 AM,03/14/2014 12:10:44 AM,03/14/2014 12:11:49 AM,03/14/2014 12:14:39 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Code 2 Transport,03/14/2014 12:30:57 AM,400 Block of PARNASSUS AVE,,94131,B05,12,5156,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",140730005-T12 -122830273,E03,12093727,Medical Incident,10/09/2012,10/09/2012,10/09/2012 06:07:58 PM,10/09/2012 06:09:32 PM,10/09/2012 06:10:13 PM,10/09/2012 06:11:39 PM,10/09/2012 06:14:16 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 06:22:10 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122830273-E03 -131580034,T03,13053483,,06/07/2013,06/06/2013,06/07/2013 02:28:00 AM,06/07/2013 02:29:00 AM,06/07/2013 02:30:00 AM,06/07/2013 02:32:00 AM,06/07/2013 02:34:00 AM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,SFPD,06/07/2013 02:35:00 AM,600 Block of POST ST,SF,94109,B01,3,1451,3,3,3,false,Alarm,1,TRUCK,1,1,3,Nob Hill,"(37.7878328256481, -122.412448213375)",131580034-T03 -111580069,B02,11052149,Alarms,06/07/2011,06/07/2011,06/07/2011 08:01:55 AM,06/07/2011 08:03:43 AM,06/07/2011 08:04:14 AM,06/07/2011 08:04:58 AM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 08:08:49 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,,1,CHIEF,3,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",111580069-B02 -110610095,E01,11019934,Medical Incident,03/02/2011,03/02/2011,03/02/2011 08:38:00 AM,03/02/2011 08:39:53 AM,03/02/2011 08:40:29 AM,03/02/2011 08:44:13 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 08:48:02 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",110610095-E01 -110340083,E13,11011091,Medical Incident,02/03/2011,02/03/2011,02/03/2011 08:23:10 AM,02/03/2011 08:24:07 AM,02/03/2011 08:25:02 AM,02/03/2011 08:27:26 AM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/03/2011 08:31:36 AM,2100 Block of LEAVENWORTH ST,SF,94133,B01,28,1532,3,3,3,true,,1,ENGINE,5,1,2,Russian Hill,"(37.8008138657608, -122.417624696225)",110340083-E13 -160813404,AM20,16032339,Medical Incident,03/21/2016,03/21/2016,03/21/2016 07:50:21 PM,03/21/2016 07:50:21 PM,03/21/2016 07:50:32 PM,03/21/2016 07:50:59 PM,03/21/2016 08:10:12 PM,03/21/2016 08:19:11 PM,03/21/2016 08:38:20 PM,Code 2 Transport,03/21/2016 09:05:33 PM,2100 Block of 41ST AVE,San Francisco,94116,B08,18,7635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7466748453073, -122.49952072067)",160813404-AM20 -111770170,65,11058368,Medical Incident,06/26/2011,06/26/2011,06/26/2011 12:39:00 PM,06/26/2011 12:40:35 PM,06/26/2011 12:41:48 PM,06/26/2011 12:42:44 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,04/25/2016 02:03:58 PM,6TH AV/FULTON ST,SF,94122,B07,31,7122,1,1,2,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.7736240632884, -122.463749209233)",111770170-65 -122490348,T14,12082501,Traffic Collision,09/05/2012,09/05/2012,09/05/2012 10:56:01 PM,09/05/2012 11:02:32 PM,09/05/2012 11:06:32 PM,09/05/2012 11:08:06 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/05/2012 11:13:27 PM,"CALL BOX: HWY 1 NB/HWY 1 SB,SF",SF,94129,B99,51,4620,3,3,3,false,Potentially Life-Threatening,1,TRUCK,5,7,2,Presidio,"(37.8048627925036, -122.448508102413)",122490348-T14 -122290352,AM10,12076023,Medical Incident,08/16/2012,08/16/2012,08/16/2012 08:49:21 PM,08/16/2012 08:49:58 PM,08/16/2012 08:50:24 PM,08/16/2012 08:51:07 PM,08/16/2012 08:55:28 PM,08/16/2012 09:09:48 PM,08/16/2012 09:14:32 PM,Code 2 Transport,08/16/2012 09:52:52 PM,2900 Block of CLAY ST,SF,94115,B04,10,4232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7897133756957, -122.441630202765)",122290352-AM10 -111290094,79,11042590,Medical Incident,05/09/2011,05/09/2011,05/09/2011 09:49:28 AM,05/09/2011 09:50:17 AM,05/09/2011 09:51:05 AM,05/09/2011 09:51:22 AM,05/09/2011 09:56:50 AM,05/09/2011 10:18:59 AM,05/09/2011 10:45:33 AM,Code 2 Transport,05/09/2011 11:21:32 AM,0 Block of CASTLE MANOR AVE,SF,94112,B09,32,6113,3,2,2,true,,1,MEDIC,2,9,11,Outer Mission,"(37.7295020424492, -122.431143124523)",111290094-79 -133200275,RC1,13108806,Medical Incident,11/16/2013,11/16/2013,11/16/2013 05:55:32 PM,11/16/2013 05:56:16 PM,11/16/2013 06:03:47 PM,11/16/2013 06:03:59 PM,11/16/2013 06:08:44 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 06:30:36 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",133200275-RC1 -160590535,56,16023387,Medical Incident,02/28/2016,02/27/2016,02/28/2016 04:28:12 AM,02/28/2016 04:28:43 AM,02/28/2016 04:29:05 AM,02/28/2016 04:29:17 AM,02/28/2016 04:39:18 AM,02/28/2016 04:53:27 AM,02/28/2016 05:00:08 AM,Code 2 Transport,02/28/2016 05:38:11 AM,1400 Block of SHRADER ST,San Francisco,94117,B05,12,5257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7619427731413, -122.450726690787)",160590535-56 -131160182,87,13039080,Medical Incident,04/26/2013,04/26/2013,04/26/2013 03:49:37 PM,04/26/2013 03:50:34 PM,04/26/2013 03:50:52 PM,04/26/2013 03:50:59 PM,04/26/2013 03:54:31 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,No Merit,04/26/2013 04:04:01 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",131160182-87 -133570225,82,13121404,Medical Incident,12/23/2013,12/23/2013,12/23/2013 03:30:18 PM,12/23/2013 03:30:57 PM,12/23/2013 03:31:42 PM,12/23/2013 03:31:52 PM,12/23/2013 03:38:14 PM,12/23/2013 03:53:22 PM,12/23/2013 04:11:54 PM,Code 2 Transport,12/23/2013 04:44:54 PM,300 Block of CRESCENT AVE,SF,94110,B06,32,5644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7350224531807, -122.418407537757)",133570225-82 -112320189,T09,11076599,Other,08/20/2011,08/20/2011,08/20/2011 01:23:43 PM,08/20/2011 01:24:00 PM,08/20/2011 01:24:50 PM,08/20/2011 01:25:42 PM,08/20/2011 01:31:27 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Fire,08/20/2011 01:46:53 PM,0 Block of REDDY ST,SF,94124,B10,17,6513,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7303641478199, -122.395285364874)",112320189-T09 -132740308,81,13093216,Medical Incident,10/01/2013,10/01/2013,10/01/2013 08:21:51 PM,10/01/2013 08:22:17 PM,10/01/2013 08:22:32 PM,10/01/2013 08:22:38 PM,10/01/2013 08:34:15 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Medical Examiner,10/01/2013 08:58:20 PM,1400 Block of UNION ST,SF,94109,B04,41,3131,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Russian Hill,"(37.7987112536807, -122.423170500234)",132740308-81 -122770347,83,12091655,Medical Incident,10/03/2012,10/03/2012,10/03/2012 05:28:26 PM,10/03/2012 05:34:00 PM,10/03/2012 05:34:25 PM,10/03/2012 05:48:33 PM,10/03/2012 05:58:06 PM,10/03/2012 06:18:44 PM,10/03/2012 06:25:24 PM,Code 3 Transport,10/03/2012 07:09:19 PM,300 Block of DOLORES ST,SF,94110,B02,6,5251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7635158382169, -122.426118705944)",122770347-83 -133240367,E06,13110185,Medical Incident,11/20/2013,11/20/2013,11/20/2013 08:41:26 PM,11/20/2013 08:42:57 PM,11/20/2013 08:43:17 PM,11/20/2013 08:44:45 PM,11/20/2013 08:45:18 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 08:48:56 PM,100 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7676129046208, -122.429027687111)",133240367-E06 -130300089,KM09,13010150,Medical Incident,01/30/2013,01/30/2013,01/30/2013 08:42:03 AM,01/30/2013 08:43:01 AM,01/30/2013 08:43:15 AM,01/30/2013 08:44:24 AM,01/30/2013 08:48:46 AM,01/30/2013 08:57:56 AM,01/30/2013 09:09:12 AM,Code 2 Transport,01/30/2013 09:43:27 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7768521020734, -122.410711239368)",130300089-KM09 -120730233,59,12024264,Structure Fire,03/13/2012,03/13/2012,03/13/2012 02:43:24 PM,03/13/2012 02:43:52 PM,03/13/2012 02:44:06 PM,03/13/2012 02:44:39 PM,03/13/2012 02:48:31 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 03:02:35 PM,1600 Block of JONES ST,SF,94109,B01,41,1511,3,3,3,true,Fire,1,MEDIC,5,1,3,Nob Hill,"(37.7960882125241, -122.415118210717)",120730233-59 -110970047,79,11032043,Medical Incident,04/07/2011,04/06/2011,04/07/2011 05:35:18 AM,04/07/2011 05:36:18 AM,04/07/2011 05:38:03 AM,04/07/2011 05:39:11 AM,04/07/2011 05:53:16 AM,04/07/2011 06:22:06 AM,04/07/2011 06:35:39 AM,Code 2 Transport,04/07/2011 07:12:30 AM,100 Block of NAUTILUS DR,SF,94124,B10,17,6665,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.728115531126, -122.372708921939)",110970047-79 -102820206,E06,10089699,Alarms,10/09/2010,10/09/2010,10/09/2010 12:49:40 PM,10/09/2010 12:50:52 PM,10/09/2010 12:51:06 PM,04/25/2016 02:08:11 PM,10/09/2010 12:51:32 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 01:00:20 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",102820206-E06 -112810092,E34,11092934,Other,10/08/2011,10/07/2011,10/08/2011 07:14:17 AM,10/08/2011 07:17:53 AM,10/08/2011 07:18:16 AM,10/08/2011 07:19:18 AM,10/08/2011 07:22:09 AM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Other,10/08/2011 07:41:11 AM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",112810092-E34 -160081303,52,16003183,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:41:52 AM,01/08/2016 10:42:03 AM,01/08/2016 10:42:08 AM,01/08/2016 10:42:28 AM,01/08/2016 10:49:07 AM,01/08/2016 11:02:31 AM,01/08/2016 11:31:22 AM,Code 2 Transport,01/08/2016 12:24:56 PM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7120147227325, -122.445301042421)",160081303-52 -123310221,E03,12110046,Medical Incident,11/26/2012,11/26/2012,11/26/2012 01:20:59 PM,11/26/2012 01:21:29 PM,11/26/2012 01:21:43 PM,11/26/2012 01:23:19 PM,11/26/2012 01:25:13 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 01:27:20 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,2,2,true,Non Life-threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",123310221-E03 -130420204,AM02,13014341,Medical Incident,02/11/2013,02/11/2013,02/11/2013 02:16:35 PM,02/11/2013 02:17:48 PM,02/11/2013 02:18:12 PM,02/11/2013 02:19:52 PM,02/11/2013 02:21:00 PM,02/11/2013 02:49:12 PM,02/11/2013 03:06:08 PM,Code 2 Transport,02/11/2013 03:45:49 PM,2100 Block of PACIFIC AVE,SF,94115,B04,38,3441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7938179536129, -122.430615255773)",130420204-AM02 -110940149,E29,11031170,Medical Incident,04/04/2011,04/04/2011,04/04/2011 11:29:24 AM,04/04/2011 11:30:07 AM,04/04/2011 11:31:37 AM,04/04/2011 11:32:52 AM,04/04/2011 11:34:45 AM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/04/2011 11:39:58 AM,ALAMEDA ST/HARRISON ST,SF,94103,B02,29,5217,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7680228226343, -122.413341004599)",110940149-E29 -160301342,65,16011743,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:28:23 AM,01/30/2016 10:28:50 AM,01/30/2016 10:30:01 AM,01/30/2016 10:30:51 AM,01/30/2016 10:37:18 AM,01/30/2016 10:56:57 AM,01/30/2016 11:12:08 AM,Code 2 Transport,01/30/2016 10:47:34 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160301342-65 -140270310,B03,14009312,Alarms,01/27/2014,01/27/2014,01/27/2014 07:29:09 PM,01/27/2014 07:30:20 PM,01/27/2014 07:30:39 PM,01/27/2014 07:32:01 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/27/2014 07:35:40 PM,300 Block of HOWARD ST,SF,94105,B03,35,2124,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",140270310-B03 -160050403,71,16001858,Medical Incident,01/05/2016,01/04/2016,01/05/2016 05:24:38 AM,01/05/2016 05:26:11 AM,01/05/2016 05:27:05 AM,01/05/2016 05:27:12 AM,01/05/2016 05:30:57 AM,01/05/2016 05:52:49 AM,01/05/2016 05:56:36 AM,Code 3 Transport,01/05/2016 07:16:48 AM,500 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7834675310494, -122.416716373273)",160050403-71 -160242565,71,16009610,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:24:11 PM,01/24/2016 05:26:19 PM,01/24/2016 05:26:48 PM,01/24/2016 05:27:01 PM,01/24/2016 05:34:44 PM,01/24/2016 05:54:00 PM,01/24/2016 06:00:03 PM,Code 2 Transport,01/24/2016 06:33:48 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160242565-71 -160790630,53,16031319,Medical Incident,03/19/2016,03/18/2016,03/19/2016 06:17:45 AM,03/19/2016 06:17:45 AM,03/19/2016 06:17:45 AM,03/19/2016 06:17:45 AM,03/19/2016 06:17:45 AM,03/19/2016 06:34:31 AM,03/19/2016 06:39:29 AM,Code 3 Transport,03/19/2016 08:16:19 AM,500 Block of ELLIS ST,San Francisco,94109,B99,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784585134714, -122.415436031905)",160790630-53 -120250019,T11,12008264,Vehicle Fire,01/25/2012,01/24/2012,01/25/2012 01:52:44 AM,01/25/2012 01:53:13 AM,01/25/2012 01:53:25 AM,01/25/2012 01:55:16 AM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 02:01:59 AM,JAMESTOWN AV/3RD ST,SF,94124,B10,44,6544,3,3,3,false,Fire,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7202309128081, -122.396617028166)",120250019-T11 -140510261,KM10,14017329,Medical Incident,02/20/2014,02/20/2014,02/20/2014 03:01:41 PM,02/20/2014 03:02:13 PM,02/20/2014 03:04:08 PM,02/20/2014 03:04:35 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,No Merit,02/20/2014 03:09:41 PM,GUERRERO ST/25TH ST,SF,94110,B06,11,5612,3,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Mission,"(37.7503722415105, -122.422725612019)",140510261-KM10 -140690374,E32,14023452,Medical Incident,03/10/2014,03/10/2014,03/10/2014 11:24:36 PM,03/10/2014 11:26:29 PM,03/10/2014 11:26:42 PM,03/10/2014 11:28:23 PM,03/10/2014 11:30:26 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Fire,03/10/2014 11:39:39 PM,100 Block of LEESE ST,SAN FRANCISCO,94110,B06,32,5632,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.735541540271, -122.422981511864)",140690374-E32 -110110068,T07,11003586,Structure Fire,01/11/2011,01/10/2011,01/11/2011 07:33:01 AM,01/11/2011 07:33:02 AM,01/11/2011 07:33:38 AM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/11/2011 07:36:33 AM,17TH ST/POTRERO AV,SF,94110,B02,29,2416,3,3,3,false,,1,TRUCK,2,2,10,Potrero Hill,"(37.764487829529, -122.407419738574)",110110068-T07 -160883319,62,16035089,Medical Incident,03/28/2016,03/28/2016,03/28/2016 07:18:01 PM,03/28/2016 07:19:33 PM,03/28/2016 07:19:57 PM,03/28/2016 07:21:22 PM,03/28/2016 07:27:28 PM,03/28/2016 07:39:10 PM,03/28/2016 08:03:10 PM,Code 2 Transport,03/28/2016 08:24:47 PM,FELL ST/CLAYTON ST,San Francisco,94117,B05,21,4514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",160883319-62 -120210048,E22,12006993,Structure Fire,01/21/2012,01/20/2012,01/21/2012 02:06:01 AM,01/21/2012 02:06:01 AM,01/21/2012 02:06:37 AM,01/21/2012 02:08:53 AM,01/21/2012 02:10:08 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 02:11:18 AM,23RD AV/IRVING ST,SF,94122,B08,22,7451,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7633730938478, -122.481408835625)",120210048-E22 -132470092,AM06,13083262,Medical Incident,09/04/2013,09/04/2013,09/04/2013 08:39:29 AM,09/04/2013 08:41:19 AM,09/04/2013 08:42:22 AM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 08:46:48 AM,2500 Block of UNION ST,SF,94123,B04,16,4165,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.7964095174587, -122.441267032271)",132470092-AM06 -130770355,E01,13025859,Traffic Collision,03/18/2013,03/18/2013,03/18/2013 09:42:55 PM,03/18/2013 09:44:29 PM,03/18/2013 09:44:51 PM,03/18/2013 09:45:21 PM,03/18/2013 09:46:30 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,No Merit,03/18/2013 09:48:36 PM,MISSION ST/4TH ST,SF,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",130770355-E01 -112400064,85,11079106,Medical Incident,08/28/2011,08/27/2011,08/28/2011 04:47:22 AM,08/28/2011 04:48:22 AM,08/28/2011 04:48:52 AM,08/28/2011 04:49:27 AM,08/28/2011 04:52:52 AM,08/28/2011 05:21:34 AM,08/28/2011 05:43:47 AM,Code 2 Transport,08/28/2011 06:26:55 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",112400064-85 -102880106,66,10091781,Medical Incident,10/15/2010,10/15/2010,10/15/2010 09:07:49 AM,10/15/2010 09:09:30 AM,10/15/2010 09:23:36 AM,10/15/2010 09:24:24 AM,10/15/2010 09:32:46 AM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,No Merit,10/15/2010 09:34:20 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",102880106-66 -160150104,76,16005801,Medical Incident,01/15/2016,01/14/2016,01/15/2016 12:38:55 AM,01/15/2016 12:40:26 AM,01/15/2016 12:42:06 AM,01/15/2016 12:42:14 AM,01/15/2016 12:49:13 AM,01/15/2016 01:27:16 AM,01/15/2016 01:27:16 AM,Code 2 Transport,01/15/2016 02:25:15 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160150104-76 -160221902,71,16008789,Medical Incident,01/22/2016,01/22/2016,01/22/2016 01:38:27 PM,01/22/2016 01:40:08 PM,01/22/2016 01:40:27 PM,01/22/2016 01:40:41 PM,01/22/2016 01:48:28 PM,01/22/2016 02:02:59 PM,01/22/2016 02:17:13 PM,Code 2 Transport,01/22/2016 03:02:07 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160221902-71 -140450148,83,14015284,Medical Incident,02/14/2014,02/14/2014,02/14/2014 11:44:38 AM,02/14/2014 11:45:10 AM,02/14/2014 11:45:20 AM,02/14/2014 11:45:57 AM,02/14/2014 11:49:36 AM,02/14/2014 12:08:53 PM,02/14/2014 12:28:02 PM,Code 2 Transport,02/14/2014 12:51:42 PM,2300 Block of 24TH AVE,SF,94116,B08,40,7461,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",140450148-83 -132710209,E08,13092090,Alarms,09/28/2013,09/28/2013,09/28/2013 01:32:49 PM,09/28/2013 01:34:09 PM,09/28/2013 01:34:16 PM,09/28/2013 01:35:26 PM,09/28/2013 01:37:46 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,Other,09/28/2013 01:44:38 PM,200 Block of BRANNAN ST,SF,94107,B03,8,2153,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7821111449736, -122.391644053588)",132710209-E08 -160023162,71,16000908,Medical Incident,01/02/2016,01/02/2016,01/02/2016 08:40:45 PM,01/02/2016 08:40:45 PM,01/02/2016 08:41:10 PM,01/02/2016 08:41:17 PM,01/02/2016 08:57:37 PM,01/02/2016 09:10:43 PM,01/02/2016 09:27:08 PM,Code 2 Transport,01/02/2016 10:08:30 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160023162-71 -140810185,94,14027361,Medical Incident,03/22/2014,03/22/2014,03/22/2014 01:24:39 PM,03/22/2014 01:26:36 PM,03/22/2014 01:27:09 PM,03/22/2014 01:27:38 PM,03/22/2014 01:35:58 PM,03/22/2014 01:50:53 PM,03/22/2014 02:04:32 PM,Code 2 Transport,03/22/2014 02:40:13 PM,5TH ST/BRYANT ST,SAN FRANCISCO,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",140810185-94 -112220200,92,11073343,Medical Incident,08/10/2011,08/10/2011,08/10/2011 02:08:53 PM,08/10/2011 02:10:13 PM,08/10/2011 02:10:45 PM,08/10/2011 02:11:34 PM,08/10/2011 02:20:12 PM,08/10/2011 02:39:27 PM,08/10/2011 03:03:20 PM,Code 2 Transport,08/10/2011 03:30:01 PM,2ND ST/KING ST,SF,94107,B03,8,2154,2,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",112220200-92 -160163832,79,16006630,Medical Incident,01/16/2016,01/16/2016,01/16/2016 11:18:12 PM,01/16/2016 11:18:12 PM,01/16/2016 11:18:58 PM,01/16/2016 11:19:07 PM,01/16/2016 11:23:24 PM,01/16/2016 11:39:54 PM,01/16/2016 11:48:58 PM,Code 2 Transport,01/17/2016 12:38:30 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160163832-79 -122930290,E11,12097224,Medical Incident,10/19/2012,10/19/2012,10/19/2012 04:26:41 PM,10/19/2012 04:28:34 PM,10/19/2012 04:28:45 PM,10/19/2012 04:29:51 PM,10/19/2012 04:31:38 PM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 04:43:05 PM,1300 Block of GUERRERO ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7495652201329, -122.422767132358)",122930290-E11 -160310631,79,16012083,Medical Incident,01/31/2016,01/30/2016,01/31/2016 05:48:46 AM,01/31/2016 05:50:10 AM,01/31/2016 05:52:17 AM,01/31/2016 05:52:31 AM,01/31/2016 05:58:28 AM,01/31/2016 06:11:43 AM,01/31/2016 06:24:32 AM,Code 2 Transport,01/31/2016 06:42:43 AM,0 Block of LUPINE AVE,San Francisco,94118,B05,10,4371,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7843470944743, -122.448345278471)",160310631-79 -103460214,T03,10110974,Medical Incident,12/12/2010,12/12/2010,12/12/2010 01:46:18 PM,12/12/2010 01:47:11 PM,12/12/2010 01:47:42 PM,12/12/2010 01:48:23 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 01:48:33 PM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,false,,1,TRUCK,3,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",103460214-T03 -103630290,72,10116542,Medical Incident,12/29/2010,12/29/2010,12/29/2010 07:36:03 PM,12/29/2010 07:36:36 PM,12/29/2010 07:36:52 PM,12/29/2010 07:36:58 PM,12/29/2010 07:38:39 PM,12/29/2010 07:51:29 PM,12/29/2010 08:06:34 PM,Code 2 Transport,12/29/2010 08:25:29 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,3,3,true,,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",103630290-72 -130490038,88,13016590,Medical Incident,02/18/2013,02/17/2013,02/18/2013 03:21:33 AM,02/18/2013 03:23:15 AM,02/18/2013 03:23:38 AM,02/18/2013 03:23:46 AM,02/18/2013 03:32:10 AM,02/18/2013 03:49:06 AM,02/18/2013 04:22:52 AM,Code 2 Transport,02/18/2013 04:23:24 AM,0 Block of POTOMAC ST,SF,94117,B05,6,3635,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",130490038-88 -160793457,AM10,16031544,Medical Incident,03/19/2016,03/19/2016,03/19/2016 07:27:10 PM,03/19/2016 07:28:32 PM,03/19/2016 07:30:15 PM,03/19/2016 07:30:15 PM,03/19/2016 07:38:46 PM,03/19/2016 08:03:23 PM,03/19/2016 08:17:11 PM,Code 2 Transport,03/19/2016 08:30:19 PM,400 Block of 44TH AVE,San Francisco,94121,B07,34,7265,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7804413495185, -122.505111371544)",160793457-AM10 -132660139,KM10,13090210,Medical Incident,09/23/2013,09/23/2013,09/23/2013 10:22:30 AM,09/23/2013 10:22:33 AM,09/23/2013 10:23:29 AM,09/23/2013 10:25:19 AM,09/23/2013 10:30:52 AM,09/23/2013 10:33:58 AM,09/23/2013 10:44:32 AM,Code 3 Transport,09/23/2013 11:33:17 AM,JONES ST/OFARRELL ST,SF,94102,B01,1,1452,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",132660139-KM10 -110800244,KM15,11026412,Medical Incident,03/21/2011,03/21/2011,03/21/2011 02:39:58 PM,03/21/2011 02:40:36 PM,03/21/2011 02:41:15 PM,03/21/2011 02:41:37 PM,03/21/2011 02:48:42 PM,03/21/2011 03:14:17 PM,03/21/2011 03:21:07 PM,Code 2 Transport,03/21/2011 03:57:31 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,1,1,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",110800244-KM15 -160740573,57,16029222,Medical Incident,03/14/2016,03/13/2016,03/14/2016 07:31:48 AM,03/14/2016 07:33:29 AM,03/14/2016 07:35:11 AM,03/14/2016 07:35:27 AM,03/14/2016 07:50:09 AM,03/14/2016 08:15:05 AM,03/14/2016 08:17:37 AM,Code 2 Transport,03/14/2016 09:12:44 AM,1300 Block of UTAH ST,San Francisco,94110,B10,9,2562,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7524211883021, -122.405338378285)",160740573-57 -113510062,E13,11116376,Medical Incident,12/17/2011,12/16/2011,12/17/2011 03:10:31 AM,12/17/2011 03:11:34 AM,12/17/2011 03:11:44 AM,12/17/2011 03:12:52 AM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/17/2011 03:14:06 AM,GRANT AV/SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",113510062-E13 -111850266,T14,11061215,Structure Fire,07/04/2011,07/04/2011,07/04/2011 06:17:34 PM,07/04/2011 06:17:34 PM,07/04/2011 06:19:44 PM,07/04/2011 06:21:32 PM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/04/2011 06:23:04 PM,7TH AV/CLEMENT ST,SF,94118,B07,31,7127,3,3,3,false,,1,TRUCK,2,7,1,Inner Richmond,"(37.7828909801953, -122.465492390241)",111850266-T14 -111840012,T03,11060628,Structure Fire,07/03/2011,07/02/2011,07/03/2011 12:44:31 AM,07/03/2011 12:45:39 AM,07/03/2011 12:45:56 AM,07/03/2011 12:47:10 AM,07/03/2011 12:49:10 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:55:40 AM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7832504150919, -122.414216002993)",111840012-T03 -132530024,E36,13085359,Medical Incident,09/10/2013,09/09/2013,09/10/2013 01:50:21 AM,09/10/2013 01:52:24 AM,09/10/2013 01:53:39 AM,09/10/2013 01:55:19 AM,09/10/2013 02:01:54 AM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Other,09/10/2013 02:17:26 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132530024-E36 -131930268,82,13065725,Traffic Collision,07/12/2013,07/12/2013,07/12/2013 06:03:42 PM,07/12/2013 06:05:04 PM,07/12/2013 06:06:31 PM,07/12/2013 06:06:44 PM,07/12/2013 06:08:23 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Against Medical Advice,07/12/2013 06:38:50 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",131930268-82 -121810113,T03,12060202,Structure Fire,06/29/2012,06/29/2012,06/29/2012 09:25:45 AM,06/29/2012 09:25:45 AM,06/29/2012 09:25:55 AM,06/29/2012 09:27:41 AM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/29/2012 09:30:58 AM,LEAVENWORTH ST/UNITED NATIONS PZ,SF,94102,B02,1,1551,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7799917401811, -122.413487401339)",121810113-T03 -131850297,96,13063146,Medical Incident,07/04/2013,07/04/2013,07/04/2013 07:00:32 PM,07/04/2013 07:00:50 PM,07/04/2013 07:02:22 PM,07/04/2013 07:03:02 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 07:07:26 PM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",131850297-96 -160920274,72,16036301,Medical Incident,04/01/2016,03/31/2016,04/01/2016 02:54:11 AM,04/01/2016 02:56:59 AM,04/01/2016 02:58:48 AM,04/01/2016 02:58:57 AM,04/01/2016 03:18:18 AM,04/01/2016 03:42:06 AM,04/01/2016 03:52:07 AM,Code 2 Transport,04/01/2016 04:30:04 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",160920274-72 -160443354,88,16017856,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:39:04 PM,02/13/2016 08:40:03 PM,02/13/2016 08:42:50 PM,02/13/2016 08:42:56 PM,02/13/2016 08:47:10 PM,02/13/2016 09:04:22 PM,02/13/2016 09:20:02 PM,Code 2 Transport,02/13/2016 09:51:05 PM,1100 Block of ANZA ST,San Francisco,94118,B07,31,7117,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7793134946516, -122.460399718452)",160443354-88 -160463154,61,16018644,Medical Incident,02/15/2016,02/15/2016,02/15/2016 07:05:45 PM,02/15/2016 07:07:47 PM,02/15/2016 07:20:34 PM,02/15/2016 07:20:41 PM,02/15/2016 07:23:05 PM,02/15/2016 07:27:33 PM,02/15/2016 07:57:06 PM,Code 2 Transport,02/15/2016 08:09:30 PM,0 Block of CASHMERE ST,San Francisco,94124,B10,25,652,2,2,2,true,Non Life-threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",160463154-61 -133160019,KM07,13107299,Medical Incident,11/12/2013,11/11/2013,11/12/2013 02:43:51 AM,11/12/2013 02:45:06 AM,11/12/2013 02:45:22 AM,11/12/2013 02:48:30 AM,11/12/2013 02:54:19 AM,11/12/2013 03:01:19 AM,11/12/2013 03:22:37 AM,Code 2 Transport,11/12/2013 03:58:40 AM,100 Block of DEL VALE AVE,SF,94127,B09,39,8655,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7410104111605, -122.447086821857)",133160019-KM07 -160283504,88,16011230,Medical Incident,01/28/2016,01/28/2016,01/28/2016 07:56:32 PM,01/28/2016 07:59:16 PM,01/28/2016 07:59:34 PM,01/28/2016 08:00:06 PM,01/28/2016 08:05:17 PM,01/28/2016 08:26:22 PM,01/28/2016 08:40:58 PM,Code 2 Transport,01/28/2016 09:20:47 PM,1100 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Mission,"(37.7536444586415, -122.406325430802)",160283504-88 -122430104,E51,12080294,Medical Incident,08/30/2012,08/30/2012,08/30/2012 10:13:32 AM,08/30/2012 10:14:02 AM,08/30/2012 10:14:18 AM,08/30/2012 10:14:32 AM,08/30/2012 10:16:46 AM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/30/2012 10:30:02 AM,0 Block of YACHT RD,SF,94123,B04,16,4215,3,2,2,true,Non Life-threatening,1,ENGINE,1,None,2,Marina,"(37.8067582085576, -122.446916219003)",122430104-E51 -133260125,E05,13110664,Medical Incident,11/22/2013,11/22/2013,11/22/2013 10:43:15 AM,11/22/2013 10:44:27 AM,11/22/2013 10:44:35 AM,11/22/2013 10:44:42 AM,11/22/2013 10:46:21 AM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 10:53:02 AM,900 Block of MCALLISTER ST,SF,94102,B02,5,3425,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",133260125-E05 -121800343,T06,12060066,Alarms,06/28/2012,06/28/2012,06/28/2012 08:12:45 PM,06/28/2012 08:12:45 PM,06/28/2012 08:13:31 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/28/2012 08:17:00 PM,18TH ST/NOE ST,SF,94114,B05,6,5417,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7610213118677, -122.432793506002)",121800343-T06 -140440398,E05,14015134,Structure Fire,02/13/2014,02/13/2014,02/13/2014 08:49:48 PM,02/13/2014 08:49:48 PM,02/13/2014 08:50:07 PM,02/13/2014 08:51:03 PM,02/13/2014 08:52:01 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Fire,02/13/2014 08:52:35 PM,1100 Block of STEINER ST,SF,94115,B05,5,3625,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7798293492878, -122.433621914349)",140440398-E05 -160252605,56,16010017,Medical Incident,01/25/2016,01/25/2016,01/25/2016 04:33:40 PM,01/25/2016 04:33:40 PM,01/25/2016 04:35:03 PM,01/25/2016 04:35:51 PM,01/25/2016 04:38:03 PM,01/25/2016 04:51:06 PM,01/25/2016 05:11:13 PM,Code 2 Transport,01/25/2016 05:54:10 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160252605-56 -103230244,T11,10103516,Alarms,11/19/2010,11/19/2010,11/19/2010 03:37:12 PM,11/19/2010 03:37:12 PM,11/19/2010 03:37:18 PM,11/19/2010 03:40:07 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Other,11/19/2010 03:42:36 PM,22ND ST/FOLSOM ST,SF,94110,B06,7,5473,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7556994645677, -122.414387602502)",103230244-T11 -160582312,89,16023173,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:35:36 PM,02/27/2016 03:37:46 PM,02/27/2016 03:39:19 PM,02/27/2016 03:39:35 PM,02/27/2016 03:46:50 PM,02/27/2016 04:03:16 PM,02/27/2016 04:20:43 PM,Code 2 Transport,02/27/2016 05:17:32 PM,CARL ST/CLAYTON ST,San Francisco,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.766072216976, -122.447823791012)",160582312-89 -140010418,E03,14000347,Medical Incident,01/01/2014,01/01/2014,01/01/2014 02:21:45 PM,01/01/2014 02:22:58 PM,01/01/2014 02:23:50 PM,01/01/2014 02:24:51 PM,01/01/2014 02:26:08 PM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 02:41:56 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",140010418-E03 -160021918,KM06,16000766,Medical Incident,01/02/2016,01/02/2016,01/02/2016 02:48:21 PM,01/02/2016 02:50:43 PM,01/02/2016 02:53:17 PM,01/02/2016 02:53:45 PM,01/02/2016 03:04:49 PM,01/02/2016 03:17:06 PM,01/02/2016 03:30:03 PM,Code 2 Transport,01/02/2016 04:05:13 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160021918-KM06 -103230113,AM04,10103420,Medical Incident,11/19/2010,11/19/2010,11/19/2010 10:34:36 AM,11/19/2010 10:37:38 AM,11/19/2010 10:38:46 AM,11/19/2010 10:39:33 AM,11/19/2010 10:46:51 AM,11/19/2010 11:20:09 AM,11/19/2010 11:32:30 AM,Code 2 Transport,11/19/2010 12:11:42 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,false,,1,PRIVATE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",103230113-AM04 -120350222,E36,12011660,Structure Fire,02/04/2012,02/04/2012,02/04/2012 02:48:21 PM,02/04/2012 02:48:21 PM,02/04/2012 02:48:34 PM,02/04/2012 02:49:35 PM,02/04/2012 02:50:55 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Fire,02/04/2012 02:51:44 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",120350222-E36 -160032065,54,16001243,Medical Incident,01/03/2016,01/03/2016,01/03/2016 04:00:04 PM,01/03/2016 04:02:33 PM,01/03/2016 04:04:07 PM,01/03/2016 04:06:43 PM,01/03/2016 04:20:31 PM,01/03/2016 04:46:49 PM,01/03/2016 04:57:59 PM,Code 2 Transport,01/03/2016 05:47:14 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7771214885462, -122.413681109495)",160032065-54 -130190290,55,13006598,Medical Incident,01/19/2013,01/19/2013,01/19/2013 05:04:37 PM,01/19/2013 05:05:49 PM,01/19/2013 05:06:10 PM,01/19/2013 05:06:30 PM,01/19/2013 05:10:43 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 05:23:34 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,E,3,false,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",130190290-55 -121880133,93,12062594,Medical Incident,07/06/2012,07/06/2012,07/06/2012 10:46:08 AM,07/06/2012 10:47:58 AM,07/06/2012 10:48:17 AM,07/06/2012 10:48:36 AM,07/06/2012 10:51:28 AM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/06/2012 11:37:29 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",121880133-93 -120140336,E03,12004907,Medical Incident,01/14/2012,01/14/2012,01/14/2012 10:31:07 PM,01/14/2012 10:34:06 PM,01/14/2012 10:35:31 PM,01/14/2012 10:36:54 PM,01/14/2012 10:40:00 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/14/2012 10:44:18 PM,400 Block of TURK ST,SF,94102,B02,3,1554,1,1,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",120140336-E03 -140650337,82,14022083,Medical Incident,03/06/2014,03/06/2014,03/06/2014 07:11:46 PM,03/06/2014 07:14:36 PM,03/06/2014 07:23:39 PM,03/06/2014 07:23:39 PM,03/06/2014 07:23:43 PM,03/06/2014 07:34:12 PM,03/06/2014 07:59:43 PM,Code 2 Transport,03/06/2014 08:14:47 PM,GUERRERO ST/19TH ST,SAN FRANCISCO,94110,B06,7,5434,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7599673760707, -122.423641307645)",140650337-82 -132140180,E05,13072258,Medical Incident,08/02/2013,08/02/2013,08/02/2013 01:06:12 PM,08/02/2013 01:07:32 PM,08/02/2013 01:08:27 PM,08/02/2013 01:09:35 PM,08/02/2013 01:10:28 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/02/2013 01:24:30 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",132140180-E05 -111640282,64,11054209,Medical Incident,06/13/2011,06/13/2011,06/13/2011 05:22:36 PM,06/13/2011 05:23:22 PM,06/13/2011 05:23:57 PM,06/13/2011 05:25:57 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,Other,06/13/2011 05:30:10 PM,OCTAVIA ST/PACIFIC AV,SF,94109,B04,38,3332,3,2,2,true,,1,MEDIC,2,4,2,Pacific Heights,"(37.794187399512, -122.428159052346)",111640282-64 -160311584,55,16012154,Medical Incident,01/31/2016,01/31/2016,01/31/2016 12:25:46 PM,01/31/2016 12:26:02 PM,01/31/2016 12:26:17 PM,01/31/2016 12:27:46 PM,01/31/2016 12:29:50 PM,01/31/2016 12:58:17 PM,01/31/2016 01:18:57 PM,Code 2 Transport,01/31/2016 02:17:21 PM,3200 Block of BAKER ST,San Francisco,94123,B04,16,4315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8009437239624, -122.446507731772)",160311584-55 -160160626,79,16006312,Medical Incident,01/16/2016,01/15/2016,01/16/2016 05:53:29 AM,01/16/2016 05:53:29 AM,01/16/2016 05:53:49 AM,01/16/2016 05:54:01 AM,01/16/2016 06:05:09 AM,01/16/2016 06:15:54 AM,01/16/2016 06:29:13 AM,Code 2 Transport,01/16/2016 07:01:54 AM,MAIN ST/HOWARD ST,San Francisco,94105,B03,35,2116,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160160626-79 -110420118,AP,11013863,Other,02/11/2011,02/11/2011,02/11/2011 09:37:16 AM,02/11/2011 09:37:17 AM,02/11/2011 09:37:17 AM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Fire,02/11/2011 09:37:53 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110420118-AP -160600459,75,16023766,Medical Incident,02/29/2016,02/28/2016,02/29/2016 06:31:12 AM,02/29/2016 06:31:47 AM,02/29/2016 06:32:14 AM,02/29/2016 06:32:24 AM,02/29/2016 06:36:06 AM,02/29/2016 06:44:44 AM,02/29/2016 07:03:37 AM,Code 2 Transport,02/29/2016 07:38:08 AM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",160600459-75 -160863228,76,16034317,Medical Incident,03/26/2016,03/26/2016,03/26/2016 07:37:11 PM,03/26/2016 07:38:51 PM,03/26/2016 07:39:14 PM,03/26/2016 07:39:23 PM,03/26/2016 07:42:14 PM,03/26/2016 07:55:39 PM,03/26/2016 08:02:36 PM,Code 2 Transport,03/26/2016 08:29:51 PM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",160863228-76 -112700244,E41,11089271,Administrative,09/27/2011,09/27/2011,09/27/2011 04:07:30 PM,09/27/2011 04:07:38 PM,09/27/2011 04:07:47 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/27/2011 04:08:27 PM,1300 Block of LEAVENWORTH ST,SF,94109,B01,41,1536,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",112700244-E41 -132270389,T07,13076775,Alarms,08/15/2013,08/15/2013,08/15/2013 10:37:29 PM,08/15/2013 10:38:50 PM,08/15/2013 10:40:09 PM,08/15/2013 10:42:00 PM,08/15/2013 10:43:31 PM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Other,08/15/2013 10:50:32 PM,600 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,false,Alarm,1,TRUCK,1,6,8,Mission,"(37.7607732622482, -122.423603676841)",132270389-T07 -140870387,94,14029454,Medical Incident,03/28/2014,03/28/2014,03/28/2014 10:03:16 PM,03/28/2014 10:03:55 PM,03/28/2014 10:04:03 PM,03/28/2014 10:04:19 PM,03/28/2014 10:36:56 PM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,Medical Examiner,03/28/2014 11:21:37 PM,5600 Block of 3RD ST,SAN FRANCISCO,94124,B10,17,6537,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",140870387-94 -160051477,73,16001969,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:53:09 AM,01/05/2016 11:53:09 AM,01/05/2016 12:04:08 PM,01/05/2016 12:04:08 PM,01/05/2016 12:04:15 PM,01/05/2016 12:12:15 PM,01/05/2016 12:29:58 PM,Code 2 Transport,01/05/2016 01:28:15 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160051477-73 -121030375,B01,12034283,Electrical Hazard,04/12/2012,04/12/2012,04/12/2012 10:20:30 PM,04/12/2012 10:23:22 PM,04/12/2012 10:25:20 PM,04/12/2012 10:27:19 PM,04/12/2012 10:28:59 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 10:37:27 PM,700 Block of FILBERT ST,SF,94133,B01,28,1351,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.8010412948727, -122.412494211161)",121030375-B01 -122050059,E19,12068073,Medical Incident,07/23/2012,07/22/2012,07/23/2012 06:14:14 AM,07/23/2012 06:15:10 AM,07/23/2012 06:15:37 AM,07/23/2012 06:17:26 AM,07/23/2012 06:19:26 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Patient Declined Transport,07/23/2012 06:40:30 AM,CALL BOX: LAKE MERCED BL/WINSTON DR,SF,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7270760964512, -122.483810669613)",122050059-E19 -160171293,71,16006810,Medical Incident,01/17/2016,01/17/2016,01/17/2016 11:22:27 AM,01/17/2016 11:25:19 AM,01/17/2016 11:26:13 AM,01/17/2016 11:28:02 AM,01/17/2016 11:34:27 AM,01/17/2016 11:55:12 AM,01/17/2016 12:05:07 PM,Code 2 Transport,01/17/2016 12:32:43 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160171293-71 -120740391,84,12024731,Medical Incident,03/14/2012,03/14/2012,03/14/2012 10:10:28 PM,03/14/2012 10:11:16 PM,03/14/2012 10:12:24 PM,03/14/2012 10:12:32 PM,03/14/2012 10:17:32 PM,03/14/2012 10:53:25 PM,03/14/2012 10:53:27 PM,Code 2 Transport,03/14/2012 11:17:58 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",120740391-84 -133550198,67,13120671,Medical Incident,12/21/2013,12/21/2013,12/21/2013 12:30:24 PM,12/21/2013 12:32:18 PM,12/21/2013 12:32:41 PM,12/21/2013 12:32:53 PM,12/21/2013 12:39:34 PM,12/21/2013 12:47:53 PM,12/21/2013 01:14:16 PM,Code 2 Transport,12/21/2013 01:30:04 PM,HOWARD ST/5TH ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",133550198-67 -123100394,AM10,12103318,Medical Incident,11/05/2012,11/05/2012,11/05/2012 11:37:34 PM,11/05/2012 11:38:12 PM,11/05/2012 11:38:20 PM,04/25/2016 01:55:56 PM,11/05/2012 11:50:02 PM,11/06/2012 12:12:46 AM,11/06/2012 12:22:12 AM,Code 2 Transport,11/06/2012 01:06:22 AM,400 Block of VALLEJO ST,SF,94133,B01,2,1251,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.7990880661395, -122.405149956265)",123100394-AM10 -112160119,96,11071282,Medical Incident,08/04/2011,08/04/2011,08/04/2011 09:01:59 AM,08/04/2011 09:02:47 AM,08/04/2011 09:03:00 AM,08/04/2011 09:11:16 AM,08/04/2011 09:22:02 AM,08/04/2011 09:52:40 AM,08/04/2011 10:12:27 AM,Code 2 Transport,08/04/2011 11:02:28 AM,6800 Block of GEARY BLVD,SF,94121,B07,14,7245,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7795992276272, -122.49275286314)",112160119-96 -160190323,85,16007467,Medical Incident,01/19/2016,01/18/2016,01/19/2016 03:39:58 AM,01/19/2016 03:40:26 AM,01/19/2016 03:40:39 AM,01/19/2016 03:40:53 AM,01/19/2016 03:45:02 AM,01/19/2016 04:12:44 AM,01/19/2016 04:18:08 AM,Code 2 Transport,01/19/2016 04:58:01 AM,1500 Block of EDDY ST,San Francisco,94115,B05,5,3624,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",160190323-85 -160143722,63,16005759,Medical Incident,01/14/2016,01/14/2016,01/14/2016 09:56:40 PM,01/14/2016 09:59:05 PM,01/14/2016 09:59:19 PM,01/14/2016 10:00:46 PM,01/14/2016 10:13:19 PM,01/14/2016 10:34:19 PM,01/14/2016 10:34:19 PM,Code 2 Transport,01/14/2016 11:11:48 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",160143722-63 -131250259,E33,13042312,Medical Incident,05/05/2013,05/05/2013,05/05/2013 05:55:04 PM,05/05/2013 05:56:37 PM,05/05/2013 05:57:34 PM,05/05/2013 05:58:52 PM,05/05/2013 06:07:23 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 06:18:39 PM,400 Block of VIDAL DR,SF,94132,B08,19,8583,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7167402896688, -122.484627525859)",131250259-E33 -122360227,KM10,12078226,Medical Incident,08/23/2012,08/23/2012,08/23/2012 03:35:26 PM,08/23/2012 03:37:18 PM,08/23/2012 03:37:49 PM,08/23/2012 03:38:20 PM,08/23/2012 03:45:18 PM,08/23/2012 03:56:16 PM,08/23/2012 04:11:39 PM,Code 2 Transport,08/23/2012 04:50:51 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",122360227-KM10 -113160168,KM01,11104995,Medical Incident,11/12/2011,11/12/2011,11/12/2011 02:08:36 PM,11/12/2011 02:09:49 PM,11/12/2011 02:10:01 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/12/2011 02:12:28 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,,1,PRIVATE,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",113160168-KM01 -160130078,62,16005007,Medical Incident,01/13/2016,01/12/2016,01/13/2016 12:42:00 AM,01/13/2016 12:43:37 AM,01/13/2016 12:43:44 AM,01/13/2016 12:43:51 AM,01/13/2016 12:49:57 AM,01/13/2016 01:02:41 AM,01/13/2016 01:06:38 AM,Code 2 Transport,01/13/2016 01:41:36 AM,300 Block of ANZA ST,San Francisco,94118,B05,10,4457,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7806329174566, -122.450319766912)",160130078-62 -110720307,84,11023826,Medical Incident,03/13/2011,03/13/2011,03/13/2011 07:22:25 PM,03/13/2011 07:24:14 PM,03/13/2011 07:24:28 PM,03/13/2011 07:29:48 PM,03/13/2011 07:25:32 PM,03/13/2011 07:59:24 PM,03/13/2011 08:38:14 PM,Code 2 Transport,03/13/2011 09:02:06 PM,CALL BOX: GOLDEN GATE BRIDGE TOLL PLAZA,PR,94129,B99,51,4616,3,3,3,true,,1,MEDIC,1,7,2,Presidio,"(37.8067660300626, -122.472829211656)",110720307-84 -112490090,E24,11082049,Traffic Collision,09/06/2011,09/06/2011,09/06/2011 09:01:10 AM,09/06/2011 09:02:45 AM,09/06/2011 09:02:56 AM,09/06/2011 09:05:37 AM,09/06/2011 09:08:23 AM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/06/2011 09:31:08 AM,0 Block of PORTOLA DR,SF,94131,B06,24,5374,2,2,2,true,,1,ENGINE,1,6,8,Twin Peaks,"(37.750259745443, -122.443876943037)",112490090-E24 -103580049,B10,10114806,Alarms,12/24/2010,12/23/2010,12/24/2010 03:53:10 AM,12/24/2010 03:56:07 AM,12/24/2010 03:56:14 AM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Fire,12/24/2010 03:58:20 AM,100 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,false,,1,CHIEF,2,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",103580049-B10 -160241352,KM13,16009501,Medical Incident,01/24/2016,01/24/2016,01/24/2016 11:29:01 AM,01/24/2016 11:31:29 AM,01/24/2016 11:31:57 AM,01/24/2016 11:32:25 AM,01/24/2016 11:42:30 AM,01/24/2016 11:49:15 AM,01/24/2016 12:13:06 PM,Code 2 Transport,01/24/2016 12:52:53 PM,MISSION ST/NIAGARA AV,San Francisco,94112,B09,43,6176,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7155726994788, -122.441691157652)",160241352-KM13 -160290357,74,16011318,Medical Incident,01/29/2016,01/28/2016,01/29/2016 04:22:02 AM,01/29/2016 04:24:49 AM,01/29/2016 04:26:44 AM,01/29/2016 04:26:57 AM,01/29/2016 04:34:59 AM,01/29/2016 04:46:29 AM,01/29/2016 04:54:17 AM,Code 2 Transport,01/29/2016 05:17:02 AM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7979466732983, -122.406460643507)",160290357-74 -160570957,75,16022675,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:19:17 AM,02/26/2016 09:21:23 AM,02/26/2016 09:21:41 AM,02/26/2016 09:21:46 AM,02/26/2016 09:26:39 AM,02/26/2016 09:42:51 AM,02/26/2016 09:52:43 AM,Code 2 Transport,02/26/2016 10:34:47 AM,1800 Block of PINE ST,San Francisco,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",160570957-75 -110260147,B06,11008553,Alarms,01/26/2011,01/26/2011,01/26/2011 11:28:35 AM,01/26/2011 11:29:54 AM,01/26/2011 11:32:04 AM,01/26/2011 11:33:30 AM,01/26/2011 11:35:52 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Fire,01/26/2011 11:36:14 AM,3300 Block of 19TH ST,SF,94110,B06,7,5433,3,3,3,false,,1,CHIEF,2,6,9,Mission,"(37.7603888134229, -122.417577215102)",110260147-B06 -122250133,B09,12074584,Structure Fire,08/12/2012,08/12/2012,08/12/2012 11:27:37 AM,08/12/2012 11:28:30 AM,08/12/2012 11:28:41 AM,08/12/2012 11:30:17 AM,08/12/2012 11:33:44 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Fire,08/12/2012 11:43:12 AM,0 Block of BRENTWOOD AVE,SF,94127,B09,39,8524,3,3,3,false,Fire,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7338873877064, -122.455146012166)",122250133-B09 -160191626,AM02,16007627,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:31:29 PM,01/19/2016 12:31:29 PM,01/19/2016 12:31:39 PM,01/19/2016 12:32:03 PM,01/19/2016 12:37:36 PM,01/19/2016 01:06:11 PM,01/19/2016 01:34:47 PM,Code 2 Transport,01/19/2016 01:54:54 PM,VAN NESS AV/EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",160191626-AM02 -111440022,B10,11047730,Alarms,05/24/2011,05/23/2011,05/24/2011 03:17:20 AM,05/24/2011 03:18:17 AM,05/24/2011 03:18:30 AM,05/24/2011 03:20:39 AM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/24/2011 03:24:19 AM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7192849941403, -122.388335559443)",111440022-B10 -113450208,88,11114477,Medical Incident,12/11/2011,12/11/2011,12/11/2011 01:23:37 PM,12/11/2011 01:25:02 PM,12/11/2011 01:25:37 PM,12/11/2011 01:26:14 PM,04/25/2016 02:01:12 PM,04/25/2016 02:01:12 PM,04/25/2016 02:01:12 PM,No Merit,12/11/2011 01:31:26 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",113450208-88 -131320221,89,13044620,Medical Incident,05/12/2013,05/12/2013,05/12/2013 05:22:48 PM,05/12/2013 05:23:17 PM,05/12/2013 05:23:28 PM,05/12/2013 05:24:07 PM,04/25/2016 01:52:50 PM,05/12/2013 05:36:38 PM,05/12/2013 05:50:25 PM,Code 2 Transport,05/12/2013 06:23:22 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",131320221-89 -112830083,95,11093592,Medical Incident,10/10/2011,10/10/2011,10/10/2011 08:57:06 AM,10/10/2011 08:57:58 AM,10/10/2011 08:58:23 AM,10/10/2011 08:59:29 AM,10/10/2011 09:06:07 AM,10/10/2011 09:22:19 AM,10/10/2011 09:34:23 AM,Code 2 Transport,10/10/2011 10:06:32 AM,500 Block of VIENNA ST,SF,94112,B09,43,6156,3,3,3,true,,1,MEDIC,1,9,11,Excelsior,"(37.7197250928414, -122.431057873329)",112830083-95 -111180272,E12,11039000,Medical Incident,04/28/2011,04/28/2011,04/28/2011 05:46:32 PM,04/28/2011 05:47:01 PM,04/28/2011 05:47:17 PM,04/28/2011 05:48:15 PM,04/28/2011 05:49:49 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 05:54:42 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",111180272-E12 -160400082,60,16015850,Medical Incident,02/09/2016,02/08/2016,02/09/2016 12:42:20 AM,02/09/2016 12:48:53 AM,02/09/2016 12:49:12 AM,02/09/2016 12:49:22 AM,02/09/2016 12:58:56 AM,02/09/2016 01:25:00 AM,02/09/2016 01:39:53 AM,Code 2 Transport,02/09/2016 02:57:16 AM,100 Block of BRITTON ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",160400082-60 -112020303,E16,11066732,Medical Incident,07/21/2011,07/21/2011,07/21/2011 04:13:19 PM,07/21/2011 04:14:34 PM,07/21/2011 04:15:23 PM,07/21/2011 04:15:53 PM,07/21/2011 04:20:30 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Unable to Locate,07/21/2011 04:20:33 PM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",112020303-E16 -140090204,E05,14003151,Structure Fire,01/09/2014,01/09/2014,01/09/2014 12:55:51 PM,01/09/2014 12:56:22 PM,01/09/2014 12:56:52 PM,01/09/2014 12:58:28 PM,01/09/2014 01:00:05 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 01:13:22 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,,3,3,true,Alarm,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",140090204-E05 -160723014,89,16028744,Medical Incident,03/12/2016,03/12/2016,03/12/2016 07:50:00 PM,03/12/2016 07:50:00 PM,03/12/2016 07:51:25 PM,03/12/2016 07:51:37 PM,03/12/2016 08:04:26 PM,03/12/2016 08:15:13 PM,03/12/2016 08:25:38 PM,Code 2 Transport,03/12/2016 09:17:14 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",160723014-89 -110030034,E32,11000858,Structure Fire,01/03/2011,01/02/2011,01/03/2011 02:57:09 AM,01/03/2011 02:57:09 AM,01/03/2011 02:57:47 AM,01/03/2011 02:58:44 AM,01/03/2011 03:00:55 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Fire,01/03/2011 03:02:55 AM,VIRGINIA AV/WINFIELD ST,SF,94110,B06,32,5654,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7420845445914, -122.418914134493)",110030034-E32 -113440341,E11,11114268,Medical Incident,12/10/2011,12/10/2011,12/10/2011 09:32:05 PM,12/10/2011 09:33:35 PM,12/10/2011 09:34:01 PM,12/10/2011 09:35:30 PM,12/10/2011 09:38:36 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 09:39:50 PM,24TH ST/SHOTWELL ST,SF,94110,B06,7,544,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.752439647175, -122.415172290461)",113440341-E11 -122900217,D3,12095995,Structure Fire,10/16/2012,10/16/2012,10/16/2012 01:21:21 PM,10/16/2012 01:23:17 PM,10/16/2012 01:23:39 PM,10/16/2012 01:24:10 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Other,10/16/2012 01:29:48 PM,0 Block of ORA WAY,SF,94131,B06,26,8154,3,3,3,false,Alarm,1,CHIEF,5,6,8,Glen Park,"(37.7414013070575, -122.437853503826)",122900217-D3 -103140187,T15,10100680,Structure Fire,11/10/2010,11/10/2010,11/10/2010 01:00:33 PM,11/10/2010 01:00:33 PM,11/10/2010 01:00:53 PM,11/10/2010 01:02:02 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,Other,11/10/2010 01:03:28 PM,OCEAN AV/HOWTH ST,SF,94112,B09,15,8314,3,3,3,false,,1,TRUCK,2,9,7,West of Twin Peaks,"(37.7229613197443, -122.449558618759)",103140187-T15 -111870036,E36,11061704,Medical Incident,07/06/2011,07/05/2011,07/06/2011 02:19:12 AM,07/06/2011 02:20:25 AM,07/06/2011 02:20:40 AM,07/06/2011 02:22:35 AM,07/06/2011 02:24:55 AM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 02:32:47 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,1,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",111870036-E36 -160472275,KM03,16018978,Medical Incident,02/16/2016,02/16/2016,02/16/2016 02:59:19 PM,02/16/2016 03:01:15 PM,02/16/2016 03:02:03 PM,02/16/2016 03:02:48 PM,02/16/2016 03:10:54 PM,02/16/2016 03:31:16 PM,02/16/2016 04:13:48 PM,Code 2 Transport,02/16/2016 04:43:35 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",160472275-KM03 -113560366,E10,11118346,Gas Leak (Natural and LP Gases),12/22/2011,12/22/2011,12/22/2011 07:28:20 PM,12/22/2011 07:30:02 PM,12/22/2011 07:32:19 PM,12/22/2011 07:34:25 PM,12/22/2011 07:36:00 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Fire,12/22/2011 07:41:38 PM,GEARY BL/WOOD ST,SF,94118,B05,10,4455,3,3,3,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7823143742059, -122.449079404794)",113560366-E10 -160730878,KM04,16028924,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:31:08 AM,03/13/2016 10:33:24 AM,03/13/2016 10:33:34 AM,03/13/2016 10:33:56 AM,03/13/2016 10:42:36 AM,03/13/2016 10:52:45 AM,03/13/2016 11:01:54 AM,Code 2 Transport,03/13/2016 11:47:15 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160730878-KM04 -121630111,E22,12053971,Traffic Collision,06/11/2012,06/11/2012,06/11/2012 09:35:12 AM,06/11/2012 09:36:36 AM,06/11/2012 09:37:04 AM,06/11/2012 09:39:01 AM,06/11/2012 09:40:36 AM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/11/2012 09:54:55 AM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7631968207196, -122.464176094005)",121630111-E22 -160480386,89,16019225,Medical Incident,02/17/2016,02/16/2016,02/17/2016 05:02:14 AM,02/17/2016 05:04:05 AM,02/17/2016 05:04:28 AM,02/17/2016 05:05:02 AM,02/17/2016 05:12:40 AM,02/17/2016 05:16:13 AM,02/17/2016 05:25:18 AM,Code 2 Transport,02/17/2016 05:36:33 AM,FULTON ST/36TH AV,San Francisco,94121,B07,34,7253,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7720320135861, -122.495972014737)",160480386-89 -160670272,AM20,16026595,Medical Incident,03/07/2016,03/06/2016,03/07/2016 04:20:10 AM,03/07/2016 04:22:05 AM,03/07/2016 04:22:25 AM,03/07/2016 04:23:04 AM,03/07/2016 04:27:46 AM,03/07/2016 04:32:57 AM,03/07/2016 04:40:27 AM,Code 2 Transport,03/07/2016 05:06:59 AM,600 Block of MASON ST,San Francisco,94108,B01,3,1412,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7894926602391, -122.41026951897)",160670272-AM20 -103500239,B10,10112289,Structure Fire,12/16/2010,12/16/2010,12/16/2010 02:50:54 PM,12/16/2010 02:51:50 PM,12/16/2010 02:52:08 PM,12/16/2010 02:53:03 PM,12/16/2010 02:59:17 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,12/16/2010 03:02:54 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,CHIEF,8,2,8,Mission,"(37.7641044099588, -122.42187797405)",103500239-B10 -160553426,89,16022123,Medical Incident,02/24/2016,02/24/2016,02/24/2016 07:09:11 PM,02/24/2016 07:10:19 PM,02/24/2016 07:10:38 PM,02/24/2016 07:10:48 PM,02/24/2016 07:18:37 PM,02/24/2016 07:33:50 PM,02/24/2016 07:51:31 PM,Code 2 Transport,02/24/2016 08:32:51 PM,3000 Block of OCTAVIA ST,San Francisco,94123,B04,16,3336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8002245379297, -122.429448885727)",160553426-89 -121300063,E05,12043162,Structure Fire,05/09/2012,05/08/2012,05/09/2012 07:18:43 AM,05/09/2012 07:18:44 AM,05/09/2012 07:19:09 AM,05/09/2012 07:21:00 AM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,No Merit,05/09/2012 07:22:07 AM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,Alarm,1,ENGINE,2,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",121300063-E05 -112490054,E44,11082024,Medical Incident,09/06/2011,09/05/2011,09/06/2011 06:47:55 AM,09/06/2011 06:51:23 AM,09/06/2011 06:52:10 AM,09/06/2011 06:53:43 AM,09/06/2011 06:55:28 AM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/06/2011 07:14:45 AM,3100 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7220016138662, -122.401341444894)",112490054-E44 -103340117,67,10106826,Medical Incident,11/30/2010,11/30/2010,11/30/2010 10:25:26 AM,11/30/2010 10:28:11 AM,11/30/2010 10:29:04 AM,11/30/2010 10:29:28 AM,11/30/2010 10:39:37 AM,11/30/2010 10:59:07 AM,11/30/2010 11:16:18 AM,Code 2 Transport,11/30/2010 11:42:03 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",103340117-67 -110120236,E17,11004023,Medical Incident,01/12/2011,01/12/2011,01/12/2011 03:15:47 PM,01/12/2011 03:16:42 PM,01/12/2011 03:17:27 PM,01/12/2011 03:18:18 PM,01/12/2011 03:19:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/12/2011 03:33:52 PM,1900 Block of JENNINGS ST,SF,94124,B10,17,6651,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7279483238307, -122.387773887929)",110120236-E17 -130980062,85,13032761,Medical Incident,04/08/2013,04/07/2013,04/08/2013 04:45:53 AM,04/08/2013 04:48:52 AM,04/08/2013 04:49:00 AM,04/08/2013 04:49:38 AM,04/08/2013 05:00:20 AM,04/08/2013 05:24:15 AM,04/08/2013 05:33:49 AM,Code 2 Transport,04/08/2013 05:46:03 AM,400 Block of OXFORD ST,SF,94134,B09,43,6151,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7243497669411, -122.418705405465)",130980062-85 -113100257,KM12,11103109,Medical Incident,11/06/2011,11/06/2011,11/06/2011 06:04:13 PM,11/06/2011 06:05:17 PM,11/06/2011 06:05:56 PM,11/06/2011 06:06:34 PM,11/06/2011 06:08:34 PM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Medical Examiner,11/06/2011 07:07:39 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,E,3,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",113100257-KM12 -122310200,E02,12076617,Medical Incident,08/18/2012,08/18/2012,08/18/2012 03:25:12 PM,08/18/2012 03:28:04 PM,08/18/2012 03:28:25 PM,08/18/2012 03:31:00 PM,08/18/2012 03:34:06 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,No Merit,08/18/2012 03:36:41 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7882286861562, -122.415995198292)",122310200-E02 -120570061,E14,12018703,Structure Fire,02/26/2012,02/25/2012,02/26/2012 03:20:35 AM,02/26/2012 03:20:35 AM,02/26/2012 03:20:41 AM,02/26/2012 03:22:32 AM,02/26/2012 03:23:09 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Fire,02/26/2012 03:23:44 AM,27TH AV/ANZA ST,SF,94121,B07,14,7222,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7780687428375, -122.486737519689)",120570061-E14 -132440281,T11,13082435,Structure Fire,09/01/2013,09/01/2013,09/01/2013 05:59:36 PM,09/01/2013 05:59:36 PM,09/01/2013 05:59:46 PM,09/01/2013 06:01:11 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 06:04:13 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",132440281-T11 -122680241,RC2,12088581,Medical Incident,09/24/2012,09/24/2012,09/24/2012 03:00:07 PM,09/24/2012 03:01:40 PM,09/24/2012 03:01:52 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 03:03:32 PM,100 Block of 11TH AVE,SF,94118,B07,31,7137,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,4,7,1,Inner Richmond,"(37.785508135607, -122.469906706802)",122680241-RC2 -110330382,T10,11010988,Structure Fire,02/02/2011,02/02/2011,02/02/2011 09:17:30 PM,02/02/2011 09:18:31 PM,02/02/2011 09:18:43 PM,02/02/2011 09:20:05 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 09:41:09 PM,300 Block of 26TH AVE,SF,94121,B07,14,7214,3,3,3,false,,1,TRUCK,8,7,1,Outer Richmond,"(37.7829074057708, -122.485947937388)",110330382-T10 -111670275,RC1,11055212,Medical Incident,06/16/2011,06/16/2011,06/16/2011 08:55:51 PM,06/16/2011 08:56:56 PM,06/16/2011 08:57:54 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/16/2011 09:12:43 PM,HOWARD ST/9TH ST,SF,94103,B02,36,2335,3,3,3,true,,1,RESCUE CAPTAIN,3,2,6,South of Market,"(37.7749917496069, -122.413161109659)",111670275-RC1 -130150113,RS1,13005057,Medical Incident,01/15/2013,01/15/2013,01/15/2013 10:19:49 AM,01/15/2013 10:21:15 AM,01/15/2013 10:21:45 AM,01/15/2013 10:22:54 AM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,Other,04/25/2016 01:54:48 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130150113-RS1 -140810377,E06,14027535,Medical Incident,03/22/2014,03/22/2014,03/22/2014 11:24:12 PM,03/22/2014 11:25:19 PM,03/22/2014 11:25:33 PM,03/22/2014 11:26:53 PM,03/22/2014 11:30:16 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,No Merit,03/22/2014 11:33:07 PM,20TH ST/NOE ST,SAN FRANCISCO,94114,B06,6,5443,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7578205155162, -122.432484166392)",140810377-E06 -133290245,E36,13111821,Structure Fire,11/25/2013,11/25/2013,11/25/2013 04:39:53 PM,11/25/2013 04:39:54 PM,11/25/2013 04:40:24 PM,11/25/2013 04:41:16 PM,11/25/2013 04:43:50 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Fire,11/25/2013 04:44:25 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,false,Alarm,1,ENGINE,1,2,6,Mission,"(37.7741251002903, -122.418810211803)",133290245-E36 -120830172,92,12027553,Medical Incident,03/23/2012,03/23/2012,03/23/2012 12:35:43 PM,03/23/2012 12:36:04 PM,03/23/2012 12:36:41 PM,03/23/2012 12:36:49 PM,03/23/2012 12:40:36 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 12:50:44 PM,2200 Block of 40TH AVE,SF,94116,B08,18,7635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7448594798228, -122.498317584595)",120830172-92 -123180116,AM20,12105711,Medical Incident,11/13/2012,11/13/2012,11/13/2012 09:52:00 AM,11/13/2012 09:53:17 AM,11/13/2012 09:53:42 AM,11/13/2012 09:54:25 AM,11/13/2012 09:57:37 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,No Merit,11/13/2012 10:02:36 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",123180116-AM20 -120290122,E16,12009691,Medical Incident,01/29/2012,01/29/2012,01/29/2012 11:15:12 AM,01/29/2012 11:17:17 AM,01/29/2012 11:17:35 AM,01/29/2012 11:19:12 AM,01/29/2012 11:20:16 AM,01/29/2012 11:34:16 AM,04/25/2016 02:00:23 PM,Other,01/29/2012 12:08:59 PM,2200 Block of UNION ST,SF,94123,B04,16,3552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7970384069746, -122.43632472497)",120290122-E16 -110070168,86,11002309,Medical Incident,01/07/2011,01/07/2011,01/07/2011 12:36:31 PM,01/07/2011 12:38:20 PM,01/07/2011 12:38:37 PM,01/07/2011 12:38:47 PM,01/07/2011 12:41:54 PM,01/07/2011 01:02:49 PM,01/07/2011 01:30:44 PM,Code 2 Transport,01/07/2011 01:58:36 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",110070168-86 -113080129,92,11102276,Medical Incident,11/04/2011,11/04/2011,11/04/2011 10:15:25 AM,11/04/2011 10:16:14 AM,11/04/2011 10:17:46 AM,11/04/2011 10:26:41 AM,11/04/2011 10:37:46 AM,11/04/2011 10:51:40 AM,11/04/2011 11:08:58 AM,Code 2 Transport,11/04/2011 11:32:52 AM,2100 Block of 29TH AVE,SF,94116,B08,18,7521,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7472368216522, -122.486797278692)",113080129-92 -130210107,E13,13007197,Alarms,01/21/2013,01/21/2013,01/21/2013 09:41:51 AM,01/21/2013 09:41:52 AM,01/21/2013 09:42:01 AM,01/21/2013 09:43:46 AM,01/21/2013 09:45:45 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Fire,01/21/2013 09:56:11 AM,900 Block of KEARNY ST,SF,94133,B01,13,1246,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",130210107-E13 -131530050,84,13051719,Medical Incident,06/02/2013,06/01/2013,06/02/2013 04:03:08 AM,06/02/2013 04:07:24 AM,06/02/2013 04:08:28 AM,06/02/2013 04:10:20 AM,06/02/2013 04:15:12 AM,06/02/2013 04:42:55 AM,06/02/2013 04:51:35 AM,Code 2 Transport,06/02/2013 05:26:52 AM,FRANKLIN ST/FUNSTON ST,FM,94123,B04,51,3344,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.807083060201, -122.427776678697)",131530050-84 -121290356,B04,12043084,Gas Leak (Natural and LP Gases),05/08/2012,05/08/2012,05/08/2012 09:37:53 PM,05/08/2012 09:39:54 PM,05/08/2012 09:40:02 PM,05/08/2012 09:41:22 PM,05/08/2012 09:44:13 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Fire,05/08/2012 09:54:44 PM,1400 Block of SACRAMENTO ST,SF,94109,B01,41,1563,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.7920595166394, -122.41694742808)",121290356-B04 -123040234,59,12100939,Medical Incident,10/30/2012,10/30/2012,10/30/2012 04:59:23 PM,10/30/2012 05:00:10 PM,10/30/2012 05:01:38 PM,10/30/2012 05:01:54 PM,10/30/2012 05:10:13 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Patient Declined Transport,10/30/2012 05:41:47 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",123040234-59 -102400121,E06,10075654,Medical Incident,08/28/2010,08/28/2010,08/28/2010 10:29:32 AM,08/28/2010 10:30:02 AM,08/28/2010 10:30:36 AM,04/25/2016 02:08:52 PM,08/28/2010 10:33:40 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Other,08/28/2010 10:42:52 AM,DUBOCE AV/FILLMORE ST,SF,94114,B02,6,3525,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7694079208278, -122.429905644885)",102400121-E06 -121560319,AM14,12051760,Medical Incident,06/04/2012,06/04/2012,06/04/2012 08:35:34 PM,06/04/2012 08:38:11 PM,06/04/2012 08:38:43 PM,06/04/2012 08:39:21 PM,06/04/2012 08:42:50 PM,06/04/2012 08:48:26 PM,06/04/2012 08:57:40 PM,Code 2 Transport,06/04/2012 09:19:03 PM,MISSION ST/9TH ST,SF,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",121560319-AM14 -121210152,E05,12040158,Medical Incident,04/30/2012,04/30/2012,04/30/2012 12:13:15 PM,04/30/2012 12:13:20 PM,04/30/2012 12:13:34 PM,04/30/2012 12:14:01 PM,04/30/2012 12:16:41 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 12:30:19 PM,400 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7813958668825, -122.417987996268)",121210152-E05 -140940229,E14,14031631,Medical Incident,04/04/2014,04/04/2014,04/04/2014 03:23:22 PM,04/04/2014 03:25:01 PM,04/04/2014 03:30:08 PM,04/04/2014 03:31:08 PM,04/04/2014 03:34:13 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Code 2 Transport,04/04/2014 03:36:07 PM,700 Block of 18TH AVE,SAN FRANCISCO,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",140940229-E14 -123030436,E07,12100723,Medical Incident,10/29/2012,10/29/2012,10/29/2012 11:07:18 PM,10/29/2012 11:07:23 PM,10/29/2012 11:08:56 PM,10/29/2012 11:11:10 PM,10/29/2012 11:13:22 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 11:21:16 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",123030436-E07 -122700346,RC1,12089270,Medical Incident,09/26/2012,09/26/2012,09/26/2012 10:35:39 PM,09/26/2012 10:36:31 PM,09/26/2012 10:37:43 PM,09/26/2012 10:38:39 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/26/2012 10:41:15 PM,VAN NESS AV/GROVE ST,SF,94102,B02,36,3165,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",122700346-RC1 -131560168,E03,13052887,Traffic Collision,06/05/2013,06/05/2013,06/05/2013 12:16:24 PM,06/05/2013 12:17:03 PM,06/05/2013 12:17:14 PM,06/05/2013 12:17:39 PM,06/05/2013 12:20:24 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/05/2013 12:30:05 PM,800 Block of VAN NESS AVE,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7831032668735, -122.420996914)",131560168-E03 -160323343,63,16012744,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:33:51 PM,02/01/2016 08:33:51 PM,02/01/2016 08:34:07 PM,02/01/2016 08:34:26 PM,02/01/2016 08:42:26 PM,02/01/2016 08:52:35 PM,02/01/2016 08:58:53 PM,Code 2 Transport,02/01/2016 09:26:56 PM,FUNSTON AV/CALIFORNIA ST,San Francisco,94118,B07,31,7147,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7844763087646, -122.472051926542)",160323343-63 -131160283,B06,13039173,Alarms,04/26/2013,04/26/2013,04/26/2013 09:20:43 PM,04/26/2013 09:27:23 PM,04/26/2013 09:27:37 PM,04/26/2013 09:28:37 PM,04/26/2013 09:32:13 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 09:32:33 PM,3300 Block of 25TH ST,SF,94110,B06,11,5534,3,3,3,false,Alarm,1,CHIEF,3,6,9,Mission,"(37.7506663720222, -122.416930970511)",131160283-B06 -110300111,E14,11009794,Medical Incident,01/30/2011,01/30/2011,01/30/2011 08:01:19 AM,01/30/2011 08:01:51 AM,01/30/2011 08:02:17 AM,01/30/2011 08:03:04 AM,01/30/2011 08:05:19 AM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Medical Examiner,01/30/2011 08:47:04 AM,3300 Block of ANZA ST,SF,94121,B07,14,7176,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7782449088312, -122.484064260478)",110300111-E14 -120270092,E38,12008982,Medical Incident,01/27/2012,01/27/2012,01/27/2012 08:41:16 AM,01/27/2012 08:42:09 AM,01/27/2012 08:42:43 AM,01/27/2012 08:44:24 AM,01/27/2012 08:46:04 AM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Other,01/27/2012 08:52:28 AM,BUSH ST/FRANKLIN ST,SF,94109,B04,38,3224,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7882797328681, -122.423594074468)",120270092-E38 -140260108,E19,14008840,Medical Incident,01/26/2014,01/26/2014,01/26/2014 09:38:03 AM,01/26/2014 09:39:05 AM,01/26/2014 09:39:40 AM,01/26/2014 09:40:19 AM,01/26/2014 09:43:53 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 09:52:52 AM,2900 Block of 25TH AVE,SF,94132,B08,19,8734,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7334328921172, -122.480992659737)",140260108-E19 -121220068,E03,12040405,Medical Incident,05/01/2012,05/01/2012,05/01/2012 08:07:44 AM,05/01/2012 08:09:24 AM,05/01/2012 08:09:43 AM,05/01/2012 08:10:54 AM,05/01/2012 08:12:40 AM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,Other,05/01/2012 08:16:02 AM,800 Block of LEAVENWORTH ST,SF,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",121220068-E03 -131460195,B04,13049520,Alarms,05/26/2013,05/26/2013,05/26/2013 11:30:12 AM,05/26/2013 11:31:33 AM,05/26/2013 11:31:41 AM,05/26/2013 11:31:59 AM,05/26/2013 11:34:23 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 11:38:58 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,Alarm,1,CHIEF,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",131460195-B04 -140740292,66,14025105,Medical Incident,03/15/2014,03/15/2014,03/15/2014 04:31:23 PM,03/15/2014 04:32:49 PM,03/15/2014 04:34:05 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,No Merit,03/15/2014 04:34:13 PM,600 Block of FILBERT ST,SAN FRANCISCO,94133,B01,28,1351,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8013244963183, -122.410204322135)",140740292-66 -113650117,82,11121209,Medical Incident,12/31/2011,12/31/2011,12/31/2011 09:50:54 AM,12/31/2011 09:51:45 AM,12/31/2011 09:52:41 AM,12/31/2011 09:53:08 AM,12/31/2011 10:04:19 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Against Medical Advice,12/31/2011 11:01:14 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,2,2,2,true,,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",113650117-82 -111190034,E03,11039131,Medical Incident,04/29/2011,04/28/2011,04/29/2011 05:00:07 AM,04/29/2011 05:00:56 AM,04/29/2011 05:01:15 AM,04/29/2011 05:02:53 AM,04/29/2011 05:05:13 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 05:16:36 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",111190034-E03 -131100283,B09,13037102,Confined Space / Structure Collapse,04/20/2013,04/20/2013,04/20/2013 05:17:56 PM,04/20/2013 05:18:53 PM,04/20/2013 05:19:13 PM,04/20/2013 05:20:34 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/20/2013 05:26:03 PM,2200 Block of 16TH AVE,SF,94116,B08,40,7375,3,3,3,false,Fire,1,CHIEF,9,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",131100283-B09 -121610101,E18,12053238,Medical Incident,06/09/2012,06/09/2012,06/09/2012 09:41:11 AM,06/09/2012 09:41:43 AM,06/09/2012 09:42:02 AM,06/09/2012 09:42:18 AM,06/09/2012 09:45:05 AM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,06/09/2012 09:54:29 AM,1800 Block of 24TH AVE,SF,94122,B08,18,7455,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7530690887832, -122.481836048422)",121610101-E18 -160500431,62,16019965,Medical Incident,02/19/2016,02/18/2016,02/19/2016 05:47:46 AM,02/19/2016 05:49:34 AM,02/19/2016 05:50:30 AM,02/19/2016 05:50:40 AM,02/19/2016 06:06:01 AM,02/19/2016 06:20:54 AM,02/19/2016 06:27:01 AM,Code 2 Transport,02/19/2016 07:15:23 AM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",160500431-62 -120200107,E22,12006619,Medical Incident,01/20/2012,01/20/2012,01/20/2012 09:35:34 AM,01/20/2012 09:35:55 AM,01/20/2012 09:36:24 AM,01/20/2012 09:38:44 AM,01/20/2012 09:39:18 AM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 09:46:59 AM,1200 Block of FUNSTON AVE,SF,94122,B08,22,7346,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7647909798939, -122.470730253887)",120200107-E22 -121670116,RC1,12055340,Traffic Collision,06/15/2012,06/15/2012,06/15/2012 10:39:36 AM,06/15/2012 10:39:36 AM,06/15/2012 10:39:36 AM,04/25/2016 01:58:12 PM,06/15/2012 10:47:29 AM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/15/2012 10:55:44 AM,POLK ST/LOMBARD ST,SF,94109,B01,16,3133,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,1,2,Russian Hill,"(37.8015580514761, -122.422901799225)",121670116-RC1 -102630146,E02,10083179,Fuel Spill,09/20/2010,09/20/2010,09/20/2010 11:30:18 AM,09/20/2010 11:31:25 AM,09/20/2010 11:31:34 AM,09/20/2010 11:31:44 AM,09/20/2010 11:34:02 AM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Fire,09/20/2010 11:39:51 AM,800 Block of CALIFORNIA ST,SF,94108,B01,2,1356,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7922694289836, -122.407814772426)",102630146-E02 -133030070,94,13102847,Medical Incident,10/30/2013,10/30/2013,10/30/2013 08:53:14 AM,10/30/2013 08:55:05 AM,10/30/2013 08:55:56 AM,10/30/2013 08:56:11 AM,10/30/2013 09:11:19 AM,10/30/2013 09:20:59 AM,10/30/2013 09:36:57 AM,Code 2 Transport,10/30/2013 10:08:02 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",133030070-94 -110440237,87,11014664,Water Rescue,02/13/2011,02/13/2011,02/13/2011 03:23:02 PM,02/13/2011 03:26:42 PM,02/13/2011 03:27:08 PM,02/13/2011 03:27:17 PM,02/13/2011 03:32:34 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 03:48:03 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,,1,MEDIC,5,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",110440237-87 -111720059,AM02,11056627,Medical Incident,06/21/2011,06/20/2011,06/21/2011 06:44:31 AM,06/21/2011 06:45:39 AM,06/21/2011 06:46:25 AM,06/21/2011 06:47:21 AM,04/25/2016 02:04:03 PM,06/21/2011 07:07:03 AM,06/21/2011 07:17:33 AM,Code 2 Transport,06/21/2011 07:56:47 AM,200 Block of PRECITA AVE,SF,94110,B06,11,5664,3,3,3,false,,1,PRIVATE,2,6,9,Bernal Heights,"(37.7473189471178, -122.414189809933)",111720059-AM02 -160181381,KM12,16007208,Medical Incident,01/18/2016,01/18/2016,01/18/2016 12:07:57 PM,01/18/2016 12:08:47 PM,01/18/2016 12:09:31 PM,01/18/2016 12:10:10 PM,01/18/2016 12:17:01 PM,01/18/2016 12:40:22 PM,01/18/2016 01:32:35 PM,Code 2 Transport,01/18/2016 01:42:12 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160181381-KM12 -112010187,E16,11066267,Administrative,07/20/2011,07/20/2011,07/20/2011 12:08:18 PM,07/20/2011 12:08:20 PM,07/20/2011 12:08:45 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Fire,07/20/2011 12:09:41 PM,2200 Block of GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7987927965073, -122.436679384834)",112010187-E16 -140340170,E05,14011485,Medical Incident,02/03/2014,02/03/2014,02/03/2014 12:31:39 PM,02/03/2014 12:34:15 PM,02/03/2014 12:34:27 PM,02/03/2014 12:35:28 PM,02/03/2014 12:39:08 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 12:53:57 PM,600 Block of DIVISADERO ST,SF,94117,B05,21,4146,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7754436617793, -122.438015276303)",140340170-E05 -132150224,T08,13072644,Alarms,08/03/2013,08/03/2013,08/03/2013 02:17:26 PM,08/03/2013 02:18:33 PM,08/03/2013 02:18:47 PM,08/03/2013 02:20:10 PM,08/03/2013 02:22:26 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 02:26:51 PM,0 Block of SOUTH PARK,SF,94107,B03,8,2153,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",132150224-T08 -120010587,B06,12000511,Alarms,01/01/2012,01/01/2012,01/01/2012 08:06:37 PM,01/01/2012 08:07:13 PM,01/01/2012 08:07:32 PM,01/01/2012 08:08:50 PM,01/01/2012 08:11:01 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 08:14:29 PM,1700 Block of DOLORES ST,SF,94131,B06,32,5575,3,3,3,false,Alarm,1,CHIEF,2,6,8,Glen Park,"(37.7412877667335, -122.424293822177)",120010587-B06 -160423725,60,16017055,Medical Incident,02/11/2016,02/11/2016,02/11/2016 09:55:51 PM,02/11/2016 09:56:55 PM,02/11/2016 09:57:08 PM,02/11/2016 09:57:18 PM,02/11/2016 10:05:50 PM,02/11/2016 10:33:47 PM,02/11/2016 10:51:57 PM,Code 3 Transport,02/11/2016 11:29:21 PM,100 Block of MERCURY ST,San Francisco,94124,B10,42,6447,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731034748631, -122.400971874885)",160423725-60 -160380306,86,16015042,Medical Incident,02/07/2016,02/06/2016,02/07/2016 01:44:48 AM,02/07/2016 01:46:59 AM,02/07/2016 01:47:22 AM,02/07/2016 01:47:41 AM,02/07/2016 01:54:14 AM,02/07/2016 02:05:28 AM,02/07/2016 02:16:03 AM,Code 2 Transport,02/07/2016 02:28:12 AM,200 Block of PARIS ST,San Francisco,94112,B09,43,6127,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7246819545863, -122.432583397897)",160380306-86 -160200840,62,16007932,Medical Incident,01/20/2016,01/20/2016,01/20/2016 08:37:37 AM,01/20/2016 08:38:11 AM,01/20/2016 08:42:17 AM,01/20/2016 08:42:17 AM,01/20/2016 09:03:03 AM,01/20/2016 09:04:28 AM,01/20/2016 09:21:38 AM,Code 2 Transport,01/20/2016 10:00:23 AM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160200840-62 -140980304,E43,14033118,Outside Fire,04/08/2014,04/08/2014,04/08/2014 03:25:48 PM,04/08/2014 03:27:21 PM,04/08/2014 03:28:32 PM,04/08/2014 03:30:10 PM,04/08/2014 03:30:48 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Fire,04/08/2014 03:31:27 PM,PERSIA AV/MOSCOW ST,SAN FRANCISCO,94112,B09,43,6156,3,3,3,false,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7197115927597, -122.42880461288)",140980304-E43 -111810328,E43,11059852,Medical Incident,06/30/2011,06/30/2011,06/30/2011 07:21:24 PM,06/30/2011 07:22:10 PM,06/30/2011 07:22:27 PM,06/30/2011 07:23:31 PM,06/30/2011 07:26:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 07:39:10 PM,100 Block of SANTOS ST,SF,94134,B09,43,6244,3,3,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",111810328-E43 -132670038,89,13090522,Medical Incident,09/24/2013,09/23/2013,09/24/2013 05:20:13 AM,09/24/2013 05:20:46 AM,09/24/2013 05:21:15 AM,09/24/2013 05:21:23 AM,09/24/2013 05:25:12 AM,09/24/2013 05:37:57 AM,09/24/2013 05:48:51 AM,Code 2 Transport,09/24/2013 05:58:46 AM,700 Block of NAPLES ST,SF,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7169949183795, -122.434203067739)",132670038-89 -113260051,E38,11108153,Medical Incident,11/22/2011,11/21/2011,11/22/2011 06:15:51 AM,11/22/2011 06:16:43 AM,11/22/2011 06:16:57 AM,11/22/2011 06:19:25 AM,11/22/2011 06:21:41 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 06:37:54 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",113260051-E38 -122100318,E31,12069884,Medical Incident,07/28/2012,07/28/2012,07/28/2012 08:50:28 PM,07/28/2012 08:50:55 PM,07/28/2012 08:51:26 PM,07/28/2012 08:52:19 PM,07/28/2012 08:53:50 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 08:58:52 PM,15TH AV/GEARY BL,SF,94118,B07,31,7153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7805753802673, -122.47398246915)",122100318-E31 -160132263,66,16005217,Traffic Collision,01/13/2016,01/13/2016,01/13/2016 02:16:42 PM,01/13/2016 02:16:42 PM,01/13/2016 02:16:53 PM,01/13/2016 02:17:38 PM,01/13/2016 02:27:37 PM,01/13/2016 02:27:39 PM,01/13/2016 02:34:09 PM,Other,01/13/2016 03:52:15 PM,GOLDEN GATE AV/VAN NESS AV,San Francisco,94102,B02,36,3164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",160132263-66 -140800298,92,14027129,Medical Incident,03/21/2014,03/21/2014,03/21/2014 06:14:05 PM,03/21/2014 06:16:14 PM,03/21/2014 06:17:06 PM,03/21/2014 06:17:13 PM,03/21/2014 06:35:51 PM,03/21/2014 06:53:24 PM,03/21/2014 07:09:53 PM,Code 2 Transport,03/21/2014 07:51:03 PM,0 Block of PROSPER ST,SAN FRANCISCO,94114,B05,6,5252,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7635094241678, -122.431691552356)",140800298-92 -160461796,89,16018521,Medical Incident,02/15/2016,02/15/2016,02/15/2016 01:32:27 PM,02/15/2016 01:33:57 PM,02/15/2016 01:35:53 PM,02/15/2016 01:36:01 PM,02/15/2016 01:39:04 PM,02/15/2016 02:01:53 PM,02/15/2016 02:33:03 PM,Code 2 Transport,02/15/2016 03:23:57 PM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8084325058333, -122.410757587167)",160461796-89 -160790071,52,16031248,Medical Incident,03/19/2016,03/18/2016,03/19/2016 12:29:46 AM,03/19/2016 12:31:33 AM,03/19/2016 12:32:39 AM,03/19/2016 12:32:46 AM,03/19/2016 12:42:29 AM,03/19/2016 12:48:52 AM,03/19/2016 01:02:47 AM,Code 2 Transport,03/19/2016 01:46:41 AM,1100 Block of TENNESSEE ST,San Francisco,94107,B10,25,2533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.757124167273, -122.38910828352)",160790071-52 -160790208,58,16031261,Medical Incident,03/19/2016,03/18/2016,03/19/2016 01:24:00 AM,03/19/2016 01:25:04 AM,03/19/2016 01:26:00 AM,03/19/2016 01:26:07 AM,03/19/2016 01:36:50 AM,03/19/2016 01:36:52 AM,03/19/2016 01:59:23 AM,Code 2 Transport,03/19/2016 02:23:17 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160790208-58 -130770350,E01,13025855,Medical Incident,03/18/2013,03/18/2013,03/18/2013 09:18:29 PM,03/18/2013 09:19:33 PM,03/18/2013 09:19:51 PM,03/18/2013 09:20:34 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 09:22:47 PM,400 Block of STEVENSON ST,SF,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7826802418766, -122.408637266636)",130770350-E01 -160801269,52,16031769,Medical Incident,03/20/2016,03/20/2016,03/20/2016 10:48:01 AM,03/20/2016 10:48:30 AM,03/20/2016 10:48:48 AM,03/20/2016 10:48:55 AM,03/20/2016 10:53:10 AM,03/20/2016 11:03:58 AM,03/20/2016 11:25:58 AM,Code 2 Transport,03/20/2016 12:04:48 PM,LARKIN ST/GROVE ST,San Francisco,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160801269-52 -103320063,83,10106181,Medical Incident,11/28/2010,11/27/2010,11/28/2010 05:36:59 AM,11/28/2010 05:37:40 AM,11/28/2010 05:37:58 AM,04/25/2016 02:07:23 PM,11/28/2010 05:38:02 AM,11/28/2010 06:09:43 AM,11/28/2010 06:29:55 AM,Code 2 Transport,11/28/2010 06:38:48 AM,1300 Block of MISSION ST,SF,94103,B02,36,2336,2,2,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7757095884786, -122.41525748686)",103320063-83 -160193307,KM07,16007785,Medical Incident,01/19/2016,01/19/2016,01/19/2016 08:05:47 PM,01/19/2016 08:05:47 PM,01/19/2016 08:06:01 PM,01/19/2016 08:06:32 PM,01/19/2016 08:11:01 PM,01/19/2016 08:22:53 PM,01/19/2016 08:31:57 PM,Code 3 Transport,01/19/2016 09:30:08 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160193307-KM07 -113250092,89,11107857,Medical Incident,11/21/2011,11/21/2011,11/21/2011 09:23:16 AM,11/21/2011 09:24:16 AM,11/21/2011 09:24:27 AM,11/21/2011 09:24:39 AM,11/21/2011 09:37:24 AM,11/21/2011 10:05:37 AM,11/21/2011 10:12:54 AM,Code 2 Transport,11/21/2011 10:41:00 AM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,3,3,3,true,,1,MEDIC,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",113250092-89 -111310284,T08,11043376,Medical Incident,05/11/2011,05/11/2011,05/11/2011 05:44:56 PM,05/11/2011 05:48:05 PM,05/11/2011 05:48:44 PM,05/11/2011 05:51:07 PM,05/11/2011 05:52:59 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/11/2011 05:58:25 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111310284-T08 -160352366,66,16013874,Medical Incident,02/04/2016,02/04/2016,02/04/2016 03:22:54 PM,02/04/2016 03:23:14 PM,02/04/2016 03:24:02 PM,02/04/2016 03:24:12 PM,02/04/2016 03:42:44 PM,02/04/2016 03:57:28 PM,02/04/2016 04:23:28 PM,Code 2 Transport,02/04/2016 05:28:33 PM,0 Block of HAWTHORNE ST,San Francisco,94105,B03,1,2177,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7852440203445, -122.39863943141)",160352366-66 -120630143,B08,12020713,Alarms,03/03/2012,03/03/2012,03/03/2012 09:56:41 AM,03/03/2012 09:58:23 AM,03/03/2012 09:58:40 AM,03/03/2012 10:02:08 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 10:05:54 AM,0 Block of SPRINGFIELD DR,SF,94132,B08,19,8742,3,3,3,false,Alarm,1,CHIEF,2,8,7,Sunset/Parkside,"(37.7327647658373, -122.488007999144)",120630143-B08 -131690154,AM20,13057353,Citizen Assist / Service Call,06/18/2013,06/18/2013,06/18/2013 10:25:44 AM,06/18/2013 10:27:18 AM,06/18/2013 10:47:08 AM,06/18/2013 10:47:51 AM,06/18/2013 10:54:05 AM,06/18/2013 10:55:52 AM,06/18/2013 11:17:26 AM,Code 2 Transport,06/18/2013 11:45:13 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131690154-AM20 -160853391,70,16033928,Medical Incident,03/25/2016,03/25/2016,03/25/2016 07:45:42 PM,03/25/2016 07:45:42 PM,03/25/2016 07:47:28 PM,03/25/2016 07:47:40 PM,03/25/2016 07:52:17 PM,03/25/2016 08:06:15 PM,03/25/2016 08:15:22 PM,Code 2 Transport,03/25/2016 08:46:54 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784481757201, -122.417688009568)",160853391-70 -160420077,KM07,16016692,Medical Incident,02/11/2016,02/10/2016,02/11/2016 12:41:11 AM,02/11/2016 12:41:11 AM,02/11/2016 12:41:44 AM,02/11/2016 12:42:04 AM,02/11/2016 12:47:39 AM,02/11/2016 01:07:01 AM,02/11/2016 01:12:58 AM,Code 2 Transport,02/11/2016 01:37:45 AM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5259,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",160420077-KM07 -122750244,89,12090788,Medical Incident,10/01/2012,10/01/2012,10/01/2012 02:55:12 PM,10/01/2012 02:56:25 PM,10/01/2012 02:56:48 PM,10/01/2012 02:56:56 PM,10/01/2012 03:11:09 PM,10/01/2012 03:26:14 PM,10/01/2012 03:38:21 PM,Code 2 Transport,10/01/2012 03:43:55 PM,FILBERT ST/STOCKTON ST,SF,94133,B01,28,1265,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8013706557311, -122.409369119363)",122750244-89 -120420401,E28,12014224,Medical Incident,02/11/2012,02/11/2012,02/11/2012 10:44:08 PM,02/11/2012 10:45:11 PM,02/11/2012 10:45:50 PM,02/11/2012 10:47:17 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/11/2012 10:47:39 PM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,2,2,true,Non Life-threatening,1,ENGINE,2,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",120420401-E28 -132550101,82,13086119,Medical Incident,09/12/2013,09/12/2013,09/12/2013 09:42:55 AM,09/12/2013 09:43:57 AM,09/12/2013 09:44:16 AM,09/12/2013 09:46:39 AM,09/12/2013 09:55:44 AM,09/12/2013 10:19:06 AM,09/12/2013 10:41:01 AM,Code 2 Transport,09/12/2013 11:06:45 AM,500 Block of BATTERY ST,SF,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7963352483576, -122.400515223296)",132550101-82 -121390025,55,12046030,Medical Incident,05/18/2012,05/17/2012,05/18/2012 02:01:24 AM,05/18/2012 02:02:26 AM,05/18/2012 02:02:39 AM,05/18/2012 02:03:04 AM,05/18/2012 02:07:30 AM,05/18/2012 02:20:59 AM,05/18/2012 02:30:21 AM,Code 2 Transport,05/18/2012 03:01:58 AM,200 Block of 7TH ST,SF,94103,B03,1,2314,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7773228349255, -122.408663553867)",121390025-55 -103130081,T08,10100272,Alarms,11/09/2010,11/09/2010,11/09/2010 08:09:13 AM,11/09/2010 08:10:11 AM,11/09/2010 08:10:40 AM,11/09/2010 08:12:47 AM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/09/2010 08:13:18 AM,0 Block of MOSS ST,SF,94103,B03,1,2313,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7778360253922, -122.408013948834)",103130081-T08 -121440143,60,12047796,Medical Incident,05/23/2012,05/23/2012,05/23/2012 12:07:47 PM,05/23/2012 12:08:12 PM,05/23/2012 12:08:39 PM,05/23/2012 12:09:02 PM,05/23/2012 12:14:29 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Patient Declined Transport,05/23/2012 01:00:42 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",121440143-60 -110910313,E16,11030247,Alarms,04/01/2011,04/01/2011,04/01/2011 05:08:56 PM,04/01/2011 05:10:24 PM,04/01/2011 05:11:02 PM,04/25/2016 02:05:19 PM,04/01/2011 05:16:39 PM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,Other,04/01/2011 05:28:14 PM,2000 Block of GREENWICH ST,SF,94123,B04,16,3444,3,3,3,true,,1,ENGINE,3,4,2,Marina,"(37.7992109753413, -122.4333916159)",110910313-E16 -131500158,E16,13050795,Medical Incident,05/30/2013,05/30/2013,05/30/2013 12:54:58 PM,05/30/2013 12:55:51 PM,05/30/2013 12:55:57 PM,05/30/2013 12:56:54 PM,05/30/2013 12:58:43 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/30/2013 01:11:41 PM,400 Block of MARINA BLVD,SF,94123,B04,16,3664,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8060526415245, -122.441125158357)",131500158-E16 -122680105,AM06,12088473,Medical Incident,09/24/2012,09/24/2012,09/24/2012 09:03:43 AM,09/24/2012 09:05:41 AM,09/24/2012 09:06:37 AM,09/24/2012 09:07:08 AM,09/24/2012 09:11:17 AM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Unable to Locate,09/24/2012 09:16:31 AM,6TH ST/MISSION ST,SF,94103,B03,1,2251,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",122680105-AM06 -112300222,55,11075983,Medical Incident,08/18/2011,08/18/2011,08/18/2011 02:43:03 PM,08/18/2011 02:43:03 PM,08/18/2011 02:43:18 PM,08/18/2011 02:44:25 PM,08/18/2011 02:48:39 PM,08/18/2011 03:09:08 PM,08/18/2011 03:27:43 PM,Code 2 Transport,08/18/2011 04:07:27 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",112300222-55 -103410377,E08,10109279,Medical Incident,12/07/2010,12/07/2010,12/07/2010 09:32:14 PM,12/07/2010 09:32:47 PM,12/07/2010 09:33:21 PM,12/07/2010 09:34:37 PM,12/07/2010 09:36:22 PM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,Other,12/07/2010 10:09:40 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,E,E,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103410377-E08 -160091877,KM06,16003670,Medical Incident,01/09/2016,01/09/2016,01/09/2016 01:59:14 PM,01/09/2016 02:01:03 PM,01/09/2016 02:01:10 PM,01/09/2016 02:01:39 PM,01/09/2016 02:06:27 PM,01/09/2016 02:21:44 PM,01/09/2016 02:32:54 PM,Code 2 Transport,01/09/2016 03:01:49 PM,VALENCIA ST/MCCOPPIN ST,San Francisco,94103,B02,36,5115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.771595101522, -122.422526345115)",160091877-KM06 -112210371,E33,11073171,Medical Incident,08/09/2011,08/09/2011,08/09/2011 10:50:51 PM,08/09/2011 10:52:00 PM,08/09/2011 10:52:45 PM,08/09/2011 10:54:15 PM,08/09/2011 10:56:36 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 11:06:02 PM,0 Block of LIEBIG ST,SF,94112,B09,33,8357,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7089054042414, -122.456844244926)",112210371-E33 -113220118,RC1,11106899,Medical Incident,11/18/2011,11/18/2011,11/18/2011 09:53:00 AM,11/18/2011 09:53:40 AM,11/18/2011 09:54:01 AM,04/25/2016 02:01:35 PM,11/18/2011 09:58:40 AM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/18/2011 10:25:40 AM,1000 Block of FOLSOM ST,SF,94103,B03,1,2313,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7772505337639, -122.407105401515)",113220118-RC1 -140420389,89,14014454,Medical Incident,02/11/2014,02/11/2014,02/11/2014 10:52:30 PM,02/11/2014 10:52:51 PM,02/11/2014 10:53:13 PM,02/11/2014 10:53:21 PM,02/11/2014 11:00:28 PM,02/11/2014 11:15:11 PM,02/11/2014 11:23:50 PM,Code 2 Transport,02/11/2014 11:51:52 PM,23RD ST/MISSION ST,SF,94110,B06,7,5511,,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7538365885417, -122.418593946321)",140420389-89 -160720361,55,16028457,Medical Incident,03/12/2016,03/11/2016,03/12/2016 02:34:11 AM,03/12/2016 02:35:25 AM,03/12/2016 02:35:36 AM,03/12/2016 02:35:59 AM,03/12/2016 02:42:07 AM,03/12/2016 02:52:44 AM,03/12/2016 03:05:03 AM,Code 3 Transport,03/12/2016 03:53:45 AM,0 Block of CORTLAND AVE,San Francisco,94110,B06,32,5626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7404496865399, -122.421267489131)",160720361-55 -111940022,E14,11063916,Medical Incident,07/13/2011,07/12/2011,07/13/2011 01:40:48 AM,07/13/2011 01:41:05 AM,07/13/2011 01:41:26 AM,07/13/2011 01:43:12 AM,07/13/2011 01:45:12 AM,07/13/2011 02:07:02 AM,07/13/2011 02:22:29 AM,Other,07/13/2011 02:27:31 AM,600 Block of 28TH AVE,SF,94121,B07,14,7222,3,2,2,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7770909548072, -122.487668111689)",111940022-E14 -133330052,T01,13112849,Structure Fire,11/29/2013,11/28/2013,11/29/2013 05:01:53 AM,11/29/2013 05:02:34 AM,11/29/2013 05:02:59 AM,11/29/2013 05:05:34 AM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/29/2013 05:14:38 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Alarm,1,TRUCK,5,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",133330052-T01 -131850198,E08,13063070,Medical Incident,07/04/2013,07/04/2013,07/04/2013 01:52:30 PM,07/04/2013 01:53:03 PM,07/04/2013 01:56:08 PM,07/04/2013 01:56:13 PM,07/04/2013 01:58:07 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,No Merit,07/04/2013 02:07:12 PM,400 Block of LEAVENWORTH ST,SF,94109,B04,3,1544,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",131850198-E08 -131770179,AM02,13060079,Medical Incident,06/26/2013,06/26/2013,06/26/2013 11:58:07 AM,06/26/2013 11:59:42 AM,06/26/2013 12:00:53 PM,06/26/2013 12:02:01 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 12:09:07 PM,YERBA BUENA LN/MARKET ST,SF,94103,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7863286819182, -122.405013220269)",131770179-AM02 -160630618,85,16024964,Medical Incident,03/03/2016,03/02/2016,03/03/2016 07:19:11 AM,03/03/2016 07:21:22 AM,03/03/2016 07:21:35 AM,03/03/2016 07:21:52 AM,03/03/2016 07:42:26 AM,03/03/2016 07:48:32 AM,03/03/2016 08:34:03 AM,Code 2 Transport,03/03/2016 09:21:17 AM,900 Block of MOSCOW ST,San Francisco,94134,B09,43,6161,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7137720840432, -122.433201119396)",160630618-85 -122110268,83,12070163,Medical Incident,07/29/2012,07/29/2012,07/29/2012 06:51:08 PM,07/29/2012 06:52:34 PM,07/29/2012 06:53:35 PM,07/29/2012 06:53:47 PM,07/29/2012 07:03:15 PM,07/29/2012 07:12:06 PM,07/29/2012 07:39:57 PM,Code 3 Transport,07/29/2012 08:17:34 PM,UNION ST/MASON ST,SF,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.8000323990065, -122.412471378823)",122110268-83 -110580207,E41,11019101,Medical Incident,02/27/2011,02/27/2011,02/27/2011 01:54:57 PM,02/27/2011 01:58:29 PM,02/27/2011 01:59:03 PM,02/27/2011 02:03:48 PM,02/27/2011 02:05:21 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,Other,02/27/2011 02:18:26 PM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,1,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",110580207-E41 -112140014,AM18,11070485,Medical Incident,08/02/2011,08/01/2011,08/02/2011 12:58:56 AM,08/02/2011 12:59:27 AM,08/02/2011 01:00:37 AM,08/02/2011 01:01:02 AM,08/02/2011 01:05:59 AM,08/02/2011 01:22:40 AM,08/02/2011 01:35:23 AM,Code 2 Transport,08/02/2011 02:37:08 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,false,,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",112140014-AM18 -112520403,B01,11083275,Alarms,09/09/2011,09/09/2011,09/09/2011 09:00:45 PM,09/09/2011 09:02:36 PM,09/09/2011 09:02:45 PM,09/09/2011 09:04:06 PM,09/09/2011 09:06:53 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Other,09/09/2011 09:12:15 PM,600 Block of SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",112520403-B01 -140810307,77,14027473,Medical Incident,03/22/2014,03/22/2014,03/22/2014 07:33:14 PM,03/22/2014 07:35:10 PM,03/22/2014 07:35:21 PM,03/22/2014 07:35:40 PM,04/25/2016 01:47:36 PM,03/22/2014 07:56:50 PM,03/22/2014 08:10:11 PM,Code 2 Transport,03/22/2014 08:39:43 PM,200 Block of MENDELL ST,SAN FRANCISCO,94124,B10,25,6464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7415509093402, -122.384053888031)",140810307-77 -130310069,E08,13010475,Medical Incident,01/31/2013,01/30/2013,01/31/2013 06:37:50 AM,01/31/2013 06:38:32 AM,01/31/2013 06:38:50 AM,01/31/2013 06:40:30 AM,01/31/2013 06:42:58 AM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 06:54:58 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130310069-E08 -103520195,E43,10112978,Medical Incident,12/18/2010,12/18/2010,12/18/2010 01:10:36 PM,12/18/2010 01:11:15 PM,12/18/2010 01:11:21 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,Other,04/25/2016 02:07:03 PM,100 Block of OTSEGO AVE,SF,94112,B09,15,8275,3,3,3,true,,1,ENGINE,4,9,11,Outer Mission,"(37.7253605704115, -122.44007723688)",103520195-E43 -132620081,E19,13088664,Medical Incident,09/19/2013,09/19/2013,09/19/2013 08:52:20 AM,09/19/2013 08:55:49 AM,09/19/2013 08:56:39 AM,09/19/2013 08:58:58 AM,09/19/2013 09:11:25 AM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 10:33:42 AM,500 Block of SKYLINE BLVD,SF,94132,B08,19,8772,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",132620081-E19 -133650328,82,13124065,Medical Incident,12/31/2013,12/31/2013,12/31/2013 07:57:18 PM,12/31/2013 07:58:47 PM,12/31/2013 07:59:23 PM,12/31/2013 07:59:31 PM,12/31/2013 08:05:58 PM,12/31/2013 08:25:00 PM,12/31/2013 08:28:14 PM,Code 2 Transport,12/31/2013 08:45:19 PM,2200 Block of 23RD ST,SF,94107,B10,37,2556,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7545961089907, -122.402078694131)",133650328-82 -111210398,99,11040133,Medical Incident,05/01/2011,05/01/2011,05/01/2011 09:17:58 PM,05/01/2011 09:20:36 PM,05/01/2011 09:22:32 PM,05/01/2011 09:23:10 PM,05/01/2011 09:30:02 PM,05/01/2011 09:36:09 PM,05/01/2011 09:47:10 PM,Code 2 Transport,05/01/2011 10:15:34 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,1,1,2,true,,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",111210398-99 -160010571,KM02,16000119,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:11:13 AM,01/01/2016 02:12:49 AM,01/01/2016 02:13:23 AM,01/01/2016 02:14:22 AM,01/01/2016 02:17:17 AM,01/01/2016 02:43:29 AM,01/01/2016 03:04:20 AM,Code 2 Transport,01/01/2016 03:29:46 AM,700 Block of 10TH AVE,San Francisco,94118,B07,31,7143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7742357906662, -122.4681602608)",160010571-KM02 -131150308,E06,13038894,Outside Fire,04/25/2013,04/25/2013,04/25/2013 08:59:01 PM,04/25/2013 09:02:17 PM,04/25/2013 09:02:32 PM,04/25/2013 09:02:49 PM,04/25/2013 09:04:14 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 09:05:34 PM,0 Block of CASTRO ST,SF,94114,B05,6,513,3,3,3,true,Fire,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",131150308-E06 -140710046,E01,14023855,Medical Incident,03/12/2014,03/11/2014,03/12/2014 04:22:44 AM,03/12/2014 04:24:23 AM,03/12/2014 04:27:08 AM,03/12/2014 04:29:58 AM,03/12/2014 04:33:27 AM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Code 2 Transport,03/12/2014 04:47:31 AM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",140710046-E01 -140860190,E13,14028954,Alarms,03/27/2014,03/27/2014,03/27/2014 02:04:31 PM,03/27/2014 02:05:23 PM,03/27/2014 02:06:25 PM,03/27/2014 02:07:27 PM,03/27/2014 02:12:06 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 02:23:22 PM,800 Block of MARKET ST,SAN FRANCISCO,94103,B03,1,2212,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",140860190-E13 -113650411,E22,11121453,Medical Incident,12/31/2011,12/31/2011,12/31/2011 11:37:06 PM,12/31/2011 11:38:00 PM,12/31/2011 11:38:22 PM,12/31/2011 11:39:54 PM,12/31/2011 11:43:03 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 11:47:28 PM,1600 Block of 11TH AVE,SF,94122,B08,22,7343,3,3,3,false,,1,ENGINE,1,8,7,Inner Sunset,"(37.7574215512605, -122.46792691091)",113650411-E22 -160402867,59,16016147,Medical Incident,02/09/2016,02/09/2016,02/09/2016 05:26:36 PM,02/09/2016 05:28:12 PM,02/09/2016 05:28:38 PM,02/09/2016 05:28:47 PM,02/09/2016 05:35:23 PM,02/09/2016 05:42:01 PM,02/09/2016 06:03:36 PM,Code 2 Transport,02/09/2016 06:29:55 PM,2400 Block of 33RD AVE,San Francisco,94116,B08,18,7546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7414530173202, -122.4906959863)",160402867-59 -132500445,79,13084620,Medical Incident,09/07/2013,09/07/2013,09/07/2013 10:07:01 PM,09/07/2013 10:08:11 PM,09/07/2013 10:08:36 PM,09/07/2013 10:09:14 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/07/2013 10:17:55 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",132500445-79 -160613450,KM03,16024491,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:37:50 PM,03/01/2016 09:39:19 PM,03/01/2016 09:48:34 PM,03/01/2016 09:49:09 PM,03/01/2016 09:54:08 PM,03/01/2016 09:58:04 PM,03/01/2016 10:04:14 PM,Code 2 Transport,03/01/2016 10:30:01 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160613450-KM03 -112840194,75,11094017,Medical Incident,10/11/2011,10/11/2011,10/11/2011 01:00:41 PM,10/11/2011 01:01:14 PM,10/11/2011 01:01:43 PM,10/11/2011 01:02:07 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Patient Declined Transport,10/11/2011 01:04:11 PM,SOUTHWOOD DR/MIRAMAR AV,SF,94112,B09,15,8474,3,2,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7250722342187, -122.45819375978)",112840194-75 -103500341,72,10112385,Medical Incident,12/16/2010,12/16/2010,12/16/2010 08:07:48 PM,12/16/2010 08:08:21 PM,12/16/2010 08:11:34 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,04/25/2016 02:07:05 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,2,2,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",103500341-72 -132360222,89,13079672,Traffic Collision,08/24/2013,08/24/2013,08/24/2013 05:13:29 PM,08/24/2013 05:14:21 PM,08/24/2013 05:14:48 PM,08/24/2013 05:14:53 PM,08/24/2013 05:19:16 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Against Medical Advice,08/24/2013 06:00:40 PM,TOWNSEND ST/LUSK ST,SF,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7779771315092, -122.393857288686)",132360222-89 -160624234,AM20,16024895,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:00:23 PM,03/02/2016 11:05:32 PM,03/02/2016 11:06:56 PM,03/02/2016 11:07:32 PM,03/02/2016 11:17:46 PM,03/02/2016 11:35:40 PM,03/03/2016 12:01:17 AM,Code 2 Transport,03/03/2016 12:30:48 AM,100 Block of CRESPI DR,San Francisco,94132,B08,19,8426,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7188273542437, -122.476730070107)",160624234-AM20 -120450081,E29,12014896,Electrical Hazard,02/14/2012,02/14/2012,02/14/2012 08:46:25 AM,02/14/2012 08:49:19 AM,02/14/2012 08:49:24 AM,02/14/2012 08:52:33 AM,02/14/2012 08:52:35 AM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 08:57:09 AM,16TH ST/BRYANT ST,SF,94110,B02,29,5241,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",120450081-E29 -160161927,87,16006443,Medical Incident,01/16/2016,01/16/2016,01/16/2016 02:03:10 PM,01/16/2016 02:04:46 PM,01/16/2016 02:09:11 PM,01/16/2016 02:09:22 PM,01/16/2016 02:24:35 PM,01/16/2016 02:41:04 PM,01/16/2016 03:09:37 PM,Code 2 Transport,01/16/2016 03:43:28 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",160161927-87 -120650322,60,12021605,Medical Incident,03/05/2012,03/05/2012,03/05/2012 06:31:19 PM,03/05/2012 06:31:48 PM,03/05/2012 06:32:03 PM,03/05/2012 06:32:31 PM,03/05/2012 06:37:46 PM,03/05/2012 07:01:02 PM,03/05/2012 07:22:10 PM,Code 2 Transport,03/05/2012 07:48:24 PM,100 Block of NEVADA ST,SF,94110,B10,32,5725,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7406199018401, -122.411367403815)",120650322-60 -121210331,T03,12040320,Structure Fire,04/30/2012,04/30/2012,04/30/2012 09:42:08 PM,04/30/2012 09:42:09 PM,04/30/2012 09:42:35 PM,04/30/2012 09:43:49 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 09:47:17 PM,0 Block of VAN NESS AVE,SF,94102,B02,36,3211,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7752607728259, -122.419431229777)",121210331-T03 -140180247,77,14006233,Medical Incident,01/18/2014,01/18/2014,01/18/2014 03:22:20 PM,01/18/2014 03:23:16 PM,01/18/2014 03:24:07 PM,01/18/2014 03:24:28 PM,01/18/2014 03:33:54 PM,01/18/2014 03:50:58 PM,01/18/2014 03:57:13 PM,Code 3 Transport,01/18/2014 04:26:01 PM,5TH ST/HOWARD ST,SF,94103,B03,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",140180247-77 -120960356,54,12031946,Medical Incident,04/05/2012,04/05/2012,04/05/2012 10:14:29 PM,04/05/2012 10:20:34 PM,04/05/2012 10:21:44 PM,04/05/2012 10:22:03 PM,04/05/2012 10:35:01 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Patient Declined Transport,04/05/2012 10:57:45 PM,2200 Block of GREAT HWY,SF,94116,B08,23,7727,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7444693274003, -122.507247609437)",120960356-54 -160781938,63,16031025,Medical Incident,03/18/2016,03/18/2016,03/18/2016 01:17:22 PM,03/18/2016 01:19:10 PM,03/18/2016 01:19:41 PM,03/18/2016 01:19:52 PM,03/18/2016 01:31:30 PM,03/18/2016 01:47:29 PM,03/18/2016 02:06:28 PM,Code 2 Transport,03/18/2016 02:43:50 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160781938-63 -140140227,E36,14004829,Medical Incident,01/14/2014,01/14/2014,01/14/2014 02:49:36 PM,01/14/2014 02:51:35 PM,01/14/2014 02:52:06 PM,01/14/2014 02:53:17 PM,01/14/2014 02:57:53 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/14/2014 03:04:47 PM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",140140227-E36 -110220153,B01,11007246,Alarms,01/22/2011,01/22/2011,01/22/2011 12:54:33 PM,01/22/2011 12:57:15 PM,01/22/2011 12:57:30 PM,01/22/2011 12:58:42 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,04/25/2016 02:06:28 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,false,,1,CHIEF,1,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",110220153-B01 -160380774,75,16015104,Medical Incident,02/07/2016,02/06/2016,02/07/2016 05:50:32 AM,02/07/2016 05:54:45 AM,02/07/2016 05:56:37 AM,02/07/2016 05:56:42 AM,02/07/2016 06:00:41 AM,02/07/2016 06:11:54 AM,02/07/2016 06:27:33 AM,Code 2 Transport,02/07/2016 07:05:52 AM,KEARNY ST/SUTTER ST,San Francisco,94108,B01,13,1242,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7898293371562, -122.403841564352)",160380774-75 -110430293,E15,11014354,Traffic Collision,02/12/2011,02/12/2011,02/12/2011 04:32:30 PM,02/12/2011 04:33:52 PM,02/12/2011 04:34:09 PM,04/25/2016 02:06:07 PM,02/12/2011 04:36:41 PM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 04:38:22 PM,OCEAN AV/FAXON AV,SF,94112,B09,15,8456,3,3,3,true,,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7247488498899, -122.460234460402)",110430293-E15 -131220030,93,13040886,Medical Incident,05/02/2013,05/01/2013,05/02/2013 01:44:38 AM,05/02/2013 01:45:37 AM,05/02/2013 01:52:23 AM,05/02/2013 01:52:43 AM,05/02/2013 01:55:37 AM,05/02/2013 02:10:21 AM,05/02/2013 02:38:43 AM,Code 2 Transport,05/02/2013 03:16:33 AM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",131220030-93 -113560168,E38,11118181,Structure Fire,12/22/2011,12/22/2011,12/22/2011 11:52:54 AM,12/22/2011 11:53:42 AM,12/22/2011 11:54:25 AM,12/22/2011 11:55:18 AM,12/22/2011 11:58:33 AM,12/23/2011 07:27:32 AM,12/23/2011 07:33:42 AM,Other,12/22/2011 03:23:24 PM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,true,,5,ENGINE,4,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",113560168-E38 -160163549,70,16006603,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:48:17 PM,01/16/2016 09:49:27 PM,01/16/2016 09:50:07 PM,01/16/2016 09:50:15 PM,01/16/2016 09:57:56 PM,01/16/2016 10:02:47 PM,01/16/2016 10:30:43 PM,Code 2 Transport,01/16/2016 11:05:40 PM,2600 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",160163549-70 -131950052,76,13066143,Medical Incident,07/14/2013,07/13/2013,07/14/2013 03:57:35 AM,07/14/2013 03:58:51 AM,07/14/2013 03:58:59 AM,07/14/2013 03:59:49 AM,07/14/2013 04:08:12 AM,07/14/2013 04:15:05 AM,07/14/2013 04:20:21 AM,Code 2 Transport,07/14/2013 04:29:53 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,2,2,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964729931252, -122.410712303092)",131950052-76 -160042260,54,16001653,Medical Incident,01/04/2016,01/04/2016,01/04/2016 03:15:42 PM,01/04/2016 03:16:31 PM,01/04/2016 03:17:30 PM,01/04/2016 03:18:13 PM,01/04/2016 03:21:41 PM,01/04/2016 03:41:30 PM,01/04/2016 03:41:36 PM,Code 2 Transport,01/04/2016 04:20:55 PM,2100 Block of WEBSTER ST,San Francisco,94115,B04,38,3466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7904907937316, -122.432404755801)",160042260-54 -133040355,E08,13103411,Alarms,10/31/2013,10/31/2013,10/31/2013 08:54:40 PM,10/31/2013 08:55:54 PM,10/31/2013 08:56:02 PM,10/31/2013 08:57:21 PM,10/31/2013 08:58:53 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,10/31/2013 09:20:58 PM,200 Block of BRANNAN ST,SF,94107,B03,8,2153,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7821111449736, -122.391644053588)",133040355-E08 -160550693,71,16021912,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:02:04 AM,02/24/2016 08:03:46 AM,02/24/2016 08:06:17 AM,02/24/2016 08:06:39 AM,02/24/2016 08:12:23 AM,02/24/2016 08:34:16 AM,02/24/2016 08:37:37 AM,Code 2 Transport,02/24/2016 09:22:15 AM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",160550693-71 -112970162,T13,11098489,Citizen Assist / Service Call,10/24/2011,10/24/2011,10/24/2011 11:07:18 AM,10/24/2011 11:07:30 AM,10/24/2011 11:07:42 AM,10/24/2011 11:10:11 AM,10/24/2011 11:16:16 AM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,No Merit,10/24/2011 11:16:29 AM,MISSION ST/BEALE ST,SF,94105,B03,35,2126,3,3,3,false,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7911528075814, -122.395813422768)",112970162-T13 -112370276,KM10,11078267,Medical Incident,08/25/2011,08/25/2011,08/25/2011 04:00:20 PM,08/25/2011 04:00:46 PM,08/25/2011 04:01:17 PM,08/25/2011 04:02:57 PM,08/25/2011 04:06:22 PM,08/25/2011 04:26:49 PM,08/25/2011 04:36:03 PM,Code 2 Transport,08/25/2011 04:46:26 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112370276-KM10 -133550154,AM06,13120634,Medical Incident,12/21/2013,12/21/2013,12/21/2013 10:40:37 AM,12/21/2013 10:41:47 AM,12/21/2013 10:42:24 AM,12/21/2013 10:43:05 AM,12/21/2013 10:51:35 AM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Patient Declined Transport,12/21/2013 11:21:53 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",133550154-AM06 -121320266,E14,12043986,Medical Incident,05/11/2012,05/11/2012,05/11/2012 04:30:38 PM,05/11/2012 04:32:46 PM,05/11/2012 04:33:43 PM,05/11/2012 04:34:54 PM,05/11/2012 04:36:06 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 04:59:38 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.78076369834, -122.491163848059)",121320266-E14 -160113472,70,16004567,Medical Incident,01/11/2016,01/11/2016,01/11/2016 10:01:38 PM,01/11/2016 10:01:38 PM,01/11/2016 10:01:46 PM,01/11/2016 10:01:57 PM,01/11/2016 10:04:54 PM,01/11/2016 10:36:57 PM,01/11/2016 10:51:17 PM,Code 2 Transport,01/11/2016 11:37:04 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160113472-70 -133600007,T11,13122200,Alarms,12/26/2013,12/25/2013,12/26/2013 12:19:29 AM,12/26/2013 12:22:15 AM,12/26/2013 12:22:28 AM,12/26/2013 12:24:54 AM,12/26/2013 12:27:06 AM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 12:39:23 AM,1000 Block of DIAMOND ST,SF,94114,B06,11,5545,3,3,3,false,Alarm,1,TRUCK,2,6,8,Noe Valley,"(37.7491581967167, -122.436171440121)",133600007-T11 -120140204,KM05,12004792,Medical Incident,01/14/2012,01/14/2012,01/14/2012 03:40:29 PM,01/14/2012 03:41:10 PM,01/14/2012 03:42:06 PM,01/14/2012 03:42:42 PM,01/14/2012 03:49:12 PM,01/14/2012 03:57:50 PM,01/14/2012 04:03:49 PM,Code 2 Transport,01/14/2012 04:52:22 PM,1200 Block of WILLARD ST,SF,94117,B05,12,5145,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7656904785056, -122.454566783502)",120140204-KM05 -160920834,AM06,16036368,Medical Incident,04/01/2016,04/01/2016,04/01/2016 08:38:05 AM,04/01/2016 08:38:05 AM,04/01/2016 08:38:58 AM,04/01/2016 08:42:13 AM,04/01/2016 08:43:15 AM,04/01/2016 08:51:30 AM,04/01/2016 09:09:15 AM,Code 2 Transport,04/01/2016 09:33:55 AM,300 Block of CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7829589368788, -122.462810653671)",160920834-AM06 -110390089,E13,11012855,Outside Fire,02/08/2011,02/08/2011,02/08/2011 08:45:26 AM,02/08/2011 08:46:08 AM,02/08/2011 08:46:32 AM,02/08/2011 08:47:33 AM,02/08/2011 08:50:16 AM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Fire,02/08/2011 08:54:41 AM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7895797011957, -122.402025244971)",110390089-E13 -130610355,55,13020606,Medical Incident,03/02/2013,03/02/2013,03/02/2013 10:52:35 PM,03/02/2013 10:55:23 PM,03/02/2013 10:55:47 PM,03/02/2013 10:56:47 PM,03/02/2013 11:17:08 PM,03/02/2013 11:43:10 PM,03/02/2013 11:52:53 PM,Code 2 Transport,03/03/2013 12:30:16 AM,1300 Block of WEBSTER ST,SF,94115,B04,5,3514,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",130610355-55 -131100283,E18,13037102,Confined Space / Structure Collapse,04/20/2013,04/20/2013,04/20/2013 05:17:56 PM,04/20/2013 05:18:53 PM,04/20/2013 05:19:13 PM,04/20/2013 05:20:25 PM,04/20/2013 05:23:30 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/20/2013 05:28:41 PM,2200 Block of 16TH AVE,SF,94116,B08,40,7375,3,3,3,true,Fire,1,ENGINE,4,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",131100283-E18 -113530091,E10,11117117,Alarms,12/19/2011,12/19/2011,12/19/2011 08:48:42 AM,12/19/2011 08:49:57 AM,12/19/2011 08:50:32 AM,12/19/2011 08:51:51 AM,12/19/2011 08:54:26 AM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 09:07:42 AM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",113530091-E10 -110410095,AM02,11013506,Medical Incident,02/10/2011,02/10/2011,02/10/2011 09:08:52 AM,02/10/2011 09:09:29 AM,02/10/2011 09:09:41 AM,02/10/2011 09:10:22 AM,02/10/2011 09:15:23 AM,02/10/2011 09:28:34 AM,02/10/2011 09:33:43 AM,Code 2 Transport,02/10/2011 10:14:12 AM,2300 Block of 15TH ST,SF,94114,B05,6,5232,2,2,2,false,,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.765621923455, -122.436286419227)",110410095-AM02 -160170830,77,16006747,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:39:42 AM,01/17/2016 08:40:16 AM,01/17/2016 08:40:58 AM,01/17/2016 08:41:08 AM,01/17/2016 08:47:45 AM,01/17/2016 08:59:58 AM,01/17/2016 09:09:12 AM,Code 2 Transport,01/17/2016 10:09:36 AM,400 Block of DAVIS CT,San Francisco,94111,B01,13,1132,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7967073395076, -122.398186156213)",160170830-77 -113120164,T07,11103629,Structure Fire,11/08/2011,11/08/2011,11/08/2011 12:14:52 PM,11/08/2011 12:14:52 PM,11/08/2011 12:15:39 PM,11/08/2011 12:15:52 PM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,Other,11/08/2011 12:19:48 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",113120164-T07 -122360070,AM06,12078105,Medical Incident,08/23/2012,08/23/2012,08/23/2012 08:50:50 AM,08/23/2012 08:51:36 AM,08/23/2012 08:51:56 AM,08/23/2012 08:52:29 AM,08/23/2012 08:58:05 AM,08/23/2012 09:04:26 AM,08/23/2012 09:30:27 AM,Code 2 Transport,08/23/2012 09:51:43 AM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",122360070-AM06 -160033037,72,16001366,Medical Incident,01/03/2016,01/03/2016,01/03/2016 09:09:48 PM,01/03/2016 09:12:15 PM,01/03/2016 09:12:35 PM,01/03/2016 09:12:42 PM,01/03/2016 09:32:00 PM,01/03/2016 10:08:16 PM,01/03/2016 10:25:23 PM,Code 2 Transport,01/03/2016 11:04:33 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160033037-72 -131800123,67,13061151,Medical Incident,06/29/2013,06/29/2013,06/29/2013 10:03:56 AM,06/29/2013 10:04:50 AM,06/29/2013 10:05:04 AM,06/29/2013 10:05:17 AM,06/29/2013 10:08:31 AM,06/29/2013 10:26:03 AM,06/29/2013 10:28:26 AM,Code 2 Transport,06/29/2013 10:59:42 AM,1700 Block of SUTTER ST,SF,94115,B04,38,3433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",131800123-67 -120660343,91,12021967,Medical Incident,03/06/2012,03/06/2012,03/06/2012 06:33:13 PM,03/06/2012 06:33:43 PM,03/06/2012 06:36:21 PM,03/06/2012 06:38:51 PM,03/06/2012 06:45:08 PM,03/06/2012 06:52:50 PM,03/06/2012 07:17:46 PM,Code 2 Transport,03/06/2012 08:08:09 PM,3600 Block of 18TH ST,SF,94110,B02,7,5422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7615831835858, -122.424418053226)",120660343-91 -112410030,RS2,11079401,Structure Fire,08/29/2011,08/28/2011,08/29/2011 02:31:44 AM,08/29/2011 02:31:44 AM,08/29/2011 02:31:58 AM,08/29/2011 02:33:28 AM,08/29/2011 02:35:20 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/29/2011 02:38:09 AM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,RESCUE SQUAD,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",112410030-RS2 -102650331,T05,10084016,Outside Fire,09/22/2010,09/22/2010,09/22/2010 10:21:57 PM,09/22/2010 10:21:57 PM,09/22/2010 10:21:57 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Fire,09/22/2010 10:29:11 PM,1500 Block of FILLMORE ST,SF,94115,B04,5,3541,3,3,3,false,,1,TRUCK,1,4,5,Western Addition,"(37.783815387293, -122.432878599409)",102650331-T05 -160261686,56,16010294,Medical Incident,01/26/2016,01/26/2016,01/26/2016 12:11:08 PM,01/26/2016 12:14:08 PM,01/26/2016 12:14:48 PM,01/26/2016 12:15:05 PM,01/26/2016 12:18:01 PM,01/26/2016 12:35:43 PM,01/26/2016 12:45:23 PM,Code 3 Transport,01/26/2016 01:35:38 PM,2500 Block of 17TH AVE,San Francisco,94116,B08,40,7411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7403538496203, -122.473288578352)",160261686-56 -131230097,AM04,13041361,Medical Incident,05/03/2013,05/03/2013,05/03/2013 08:07:12 AM,05/03/2013 08:11:22 AM,05/03/2013 08:11:40 AM,05/03/2013 08:13:02 AM,05/03/2013 08:26:26 AM,05/03/2013 08:30:16 AM,04/25/2016 01:53:00 PM,Code 2 Transport,05/03/2013 09:11:29 AM,12TH ST/MARKET ST,SF,94103,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7743586748127, -122.420254280324)",131230097-AM04 -160032965,61,16001354,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:40:12 PM,01/03/2016 08:40:12 PM,01/03/2016 08:40:45 PM,01/03/2016 08:40:52 PM,01/03/2016 08:46:47 PM,01/03/2016 09:16:37 PM,01/03/2016 09:29:17 PM,Code 2 Transport,01/03/2016 10:15:59 PM,1000 Block of GOETTINGEN ST,San Francisco,94134,B10,44,6313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Portola,"(37.7190814709175, -122.403254417719)",160032965-61 -133630053,T13,13123200,Alarms,12/29/2013,12/28/2013,12/29/2013 04:29:40 AM,12/29/2013 04:30:59 AM,12/29/2013 04:31:14 AM,12/29/2013 04:32:43 AM,12/29/2013 04:36:19 AM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/29/2013 04:51:15 AM,1100 Block of BATTERY ST,SF,94111,B01,13,1153,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.8018375690837, -122.401773002011)",133630053-T13 -160511776,82,16020491,Medical Incident,02/20/2016,02/20/2016,02/20/2016 02:04:25 PM,02/20/2016 02:05:22 PM,02/20/2016 02:07:40 PM,02/20/2016 02:07:50 PM,02/20/2016 02:14:27 PM,02/20/2016 02:37:15 PM,02/20/2016 03:01:32 PM,Code 2 Transport,02/20/2016 03:48:36 PM,4600 Block of 3RD ST,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7359613392217, -122.390148045197)",160511776-82 -112800110,E33,11092615,Alarms,10/07/2011,10/07/2011,10/07/2011 09:03:10 AM,10/07/2011 09:04:33 AM,10/07/2011 09:05:14 AM,10/07/2011 09:06:45 AM,10/07/2011 09:08:37 AM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 09:15:08 AM,100 Block of MAJESTIC AVE,SF,94112,B09,15,8317,B,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.716193796294, -122.452468823829)",112800110-E33 -110890393,76,11029579,Medical Incident,03/30/2011,03/30/2011,03/30/2011 10:14:50 PM,03/30/2011 10:15:27 PM,03/30/2011 10:15:55 PM,03/30/2011 10:16:19 PM,03/30/2011 10:22:41 PM,03/30/2011 10:51:44 PM,03/30/2011 10:56:06 PM,Code 3 Transport,03/30/2011 11:59:18 PM,1500 Block of 15TH AVE,SF,94122,B08,22,7351,E,3,3,true,,1,MEDIC,3,8,7,Inner Sunset,"(37.7586227526525, -122.471702948704)",110890393-76 -160261106,77,16010244,Medical Incident,01/26/2016,01/26/2016,01/26/2016 09:38:02 AM,01/26/2016 09:39:00 AM,01/26/2016 09:39:05 AM,01/26/2016 09:39:45 AM,01/26/2016 09:46:44 AM,01/26/2016 10:15:51 AM,01/26/2016 10:33:02 AM,Code 2 Transport,01/26/2016 11:20:10 AM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160261106-77 -103120182,E28,10100048,Medical Incident,11/08/2010,11/08/2010,11/08/2010 12:36:20 PM,11/08/2010 12:39:46 PM,11/08/2010 12:40:41 PM,11/08/2010 12:41:20 PM,11/08/2010 12:42:49 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 12:46:32 PM,200 Block of BAY ST,SF,94133,B01,28,1341,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.805980597443, -122.411141131856)",103120182-E28 -102280105,E13,10071717,Outside Fire,08/16/2010,08/16/2010,08/16/2010 10:03:25 AM,08/16/2010 10:06:33 AM,08/16/2010 10:07:03 AM,08/16/2010 10:07:13 AM,08/16/2010 10:09:24 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/16/2010 10:16:01 AM,MARKET ST/MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",102280105-E13 -133480415,78,13118315,Medical Incident,12/14/2013,12/14/2013,12/14/2013 11:12:54 PM,12/14/2013 11:15:39 PM,12/14/2013 11:16:02 PM,12/14/2013 11:16:11 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,04/25/2016 01:49:15 PM,22ND ST/BRYANT ST,SF,94110,B06,7,5474,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7559984420071, -122.409433069774)",133480415-78 -112400232,B09,11079240,Medical Incident,08/28/2011,08/28/2011,08/28/2011 04:05:44 PM,08/28/2011 04:06:33 PM,08/28/2011 04:06:59 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 04:10:09 PM,500 Block of SKYLINE BLVD,SF,94132,B08,19,8772,3,3,3,false,,1,CHIEF,9,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",112400232-B09 -160471427,87,16018893,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:23:00 AM,02/16/2016 11:23:59 AM,02/16/2016 11:24:14 AM,02/16/2016 11:24:46 AM,02/16/2016 11:39:29 AM,02/16/2016 12:02:37 PM,02/16/2016 12:06:02 PM,Code 2 Transport,02/16/2016 12:37:22 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160471427-87 -160320447,71,16012451,Medical Incident,02/01/2016,01/31/2016,02/01/2016 06:00:00 AM,02/01/2016 06:02:01 AM,02/01/2016 06:02:41 AM,02/01/2016 06:03:00 AM,02/01/2016 06:11:52 AM,02/01/2016 06:28:04 AM,02/01/2016 06:28:05 AM,Code 2 Transport,02/01/2016 07:13:26 AM,4400 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",160320447-71 -123560053,E17,12119031,Medical Incident,12/21/2012,12/20/2012,12/21/2012 04:17:03 AM,12/21/2012 04:18:07 AM,12/21/2012 04:18:30 AM,12/21/2012 04:21:08 AM,12/21/2012 04:22:48 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 04:30:15 AM,1500 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7293017723841, -122.390876776583)",123560053-E17 -121640047,81,12054292,Medical Incident,06/12/2012,06/11/2012,06/12/2012 06:38:14 AM,06/12/2012 06:41:02 AM,06/12/2012 06:41:33 AM,06/12/2012 06:41:48 AM,06/12/2012 06:53:30 AM,06/12/2012 07:12:16 AM,06/12/2012 07:25:36 AM,Code 2 Transport,06/12/2012 07:43:42 AM,800 Block of CAPP ST,SF,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.753099980747, -122.417500851184)",121640047-81 -160451395,KM08,16018094,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 11:39:57 AM,02/14/2016 11:39:57 AM,02/14/2016 11:40:41 AM,02/14/2016 11:41:21 AM,02/14/2016 11:48:54 AM,02/14/2016 12:18:08 PM,02/14/2016 12:32:08 PM,Code 2 Transport,02/14/2016 01:01:39 PM,7TH ST/BRANNAN ST,San Francisco,94103,B03,8,2311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7730511015721, -122.40320508207)",160451395-KM08 -122830173,E38,12093639,Structure Fire,10/09/2012,10/09/2012,10/09/2012 01:02:03 PM,10/09/2012 01:02:52 PM,10/09/2012 01:03:08 PM,10/09/2012 01:04:05 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 01:24:45 PM,3200 Block of SACRAMENTO ST,SF,94115,B04,10,4412,3,3,3,false,Alarm,1,ENGINE,9,4,2,Presidio Heights,"(37.7882208815731, -122.446270384367)",122830173-E38 -130900341,RS2,13030259,Structure Fire,03/31/2013,03/31/2013,03/31/2013 10:14:06 PM,03/31/2013 10:16:12 PM,03/31/2013 10:16:45 PM,03/31/2013 10:17:46 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 10:19:00 PM,3100 Block of BRODERICK ST,SF,94123,B04,16,4223,3,3,3,false,Alarm,1,RESCUE SQUAD,11,4,2,Marina,"(37.799286568083, -122.444348958408)",130900341-RS2 -110040362,E31,11001447,Medical Incident,01/04/2011,01/04/2011,01/04/2011 09:03:49 PM,01/04/2011 09:04:29 PM,01/04/2011 09:05:17 PM,01/04/2011 09:06:25 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/04/2011 09:08:18 PM,CLEMENT ST/6TH AV,SF,94118,B07,31,7125,3,3,3,false,,1,ENGINE,2,7,1,Inner Richmond,"(37.7829399330612, -122.464425023808)",110040362-E31 -160053523,55,16002175,Medical Incident,01/05/2016,01/05/2016,01/05/2016 09:24:51 PM,01/05/2016 09:28:42 PM,01/05/2016 09:29:21 PM,01/05/2016 09:29:29 PM,01/05/2016 09:40:19 PM,01/05/2016 10:22:03 PM,01/05/2016 10:33:44 PM,Code 2 Transport,01/05/2016 11:02:23 PM,800 Block of CORBETT AVE,San Francisco,94131,B06,24,5273,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Twin Peaks,"(37.753396813252, -122.443420334793)",160053523-55 -132640078,T01,13089422,Traffic Collision,09/21/2013,09/20/2013,09/21/2013 05:31:18 AM,09/21/2013 05:33:57 AM,09/21/2013 05:35:04 AM,09/21/2013 05:37:25 AM,09/21/2013 05:40:56 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Other,09/21/2013 05:41:17 AM,3RD ST/KEARNY ST,SF,94103,B01,1,1241,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",132640078-T01 -130180333,E08,13006261,Medical Incident,01/18/2013,01/18/2013,01/18/2013 06:17:47 PM,01/18/2013 06:20:37 PM,01/18/2013 06:23:04 PM,01/18/2013 06:25:06 PM,01/18/2013 06:28:05 PM,04/25/2016 01:54:44 PM,04/25/2016 01:54:44 PM,Other,01/18/2013 06:45:25 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",130180333-E08 -133480419,E26,13118319,Gas Leak (Natural and LP Gases),12/14/2013,12/14/2013,12/14/2013 11:33:12 PM,12/14/2013 11:34:18 PM,12/14/2013 11:34:25 PM,12/14/2013 11:35:39 PM,12/14/2013 11:41:12 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,No Merit,12/14/2013 11:44:21 PM,2300 Block of CASTRO ST,SF,94131,B06,26,5565,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.742895594432, -122.433422735149)",133480419-E26 -112880118,KM04,11095486,Medical Incident,10/15/2011,10/15/2011,10/15/2011 09:12:32 AM,10/15/2011 09:13:43 AM,10/15/2011 09:14:02 AM,10/15/2011 09:15:08 AM,10/15/2011 09:18:48 AM,10/15/2011 09:35:40 AM,10/15/2011 09:54:33 AM,Code 2 Transport,10/15/2011 10:24:29 AM,2300 Block of STOCKTON ST,SF,94133,B01,28,1262,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8074362035545, -122.410522944209)",112880118-KM04 -130720276,E11,13024073,Alarms,03/13/2013,03/13/2013,03/13/2013 04:36:56 PM,03/13/2013 04:38:20 PM,03/13/2013 04:38:26 PM,03/13/2013 04:39:55 PM,03/13/2013 04:41:05 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 04:46:20 PM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,Alarm,1,ENGINE,2,6,8,Mission,"(37.7497020110556, -122.420499334167)",130720276-E11 -133600154,E01,13122324,Medical Incident,12/26/2013,12/26/2013,12/26/2013 12:44:18 PM,12/26/2013 12:45:01 PM,12/26/2013 12:45:46 PM,12/26/2013 12:48:27 PM,12/26/2013 12:51:08 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 01:00:24 PM,800 Block of MISSION ST,SF,94103,B03,1,2213,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7842037411779, -122.404517022534)",133600154-E01 -160431498,61,16017271,Medical Incident,02/12/2016,02/12/2016,02/12/2016 11:56:47 AM,02/12/2016 11:57:30 AM,02/12/2016 12:06:31 PM,02/12/2016 12:07:11 PM,02/12/2016 12:11:51 PM,02/12/2016 12:26:56 PM,02/12/2016 12:35:37 PM,Code 2 Transport,02/12/2016 01:16:40 PM,ALAMEDA ST/SAN BRUNO AV,San Francisco,94103,B02,29,2355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7684733919631, -122.405827564891)",160431498-61 -131460351,E36,13049660,Medical Incident,05/26/2013,05/26/2013,05/26/2013 07:51:55 PM,05/26/2013 07:53:45 PM,05/26/2013 07:54:24 PM,04/25/2016 01:52:36 PM,05/26/2013 07:58:03 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,No Merit,05/26/2013 07:59:03 PM,600 Block of POLK ST,SF,94102,B02,3,3114,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",131460351-E36 -131030144,82,13034547,Medical Incident,04/13/2013,04/13/2013,04/13/2013 11:30:01 AM,04/13/2013 11:31:38 AM,04/13/2013 11:33:34 AM,04/13/2013 11:33:52 AM,04/13/2013 11:37:28 AM,04/13/2013 11:50:04 AM,04/13/2013 12:04:04 PM,Code 3 Transport,04/13/2013 12:32:50 PM,0 Block of GETZ ST,SF,94112,B09,15,8316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7196511650139, -122.452655533755)",131030144-82 -160213812,64,16008562,Medical Incident,01/21/2016,01/21/2016,01/21/2016 09:22:25 PM,01/21/2016 09:24:32 PM,01/21/2016 09:24:59 PM,01/21/2016 09:25:14 PM,01/21/2016 09:46:04 PM,01/21/2016 09:46:07 PM,01/21/2016 09:49:44 PM,Code 3 Transport,01/21/2016 10:31:33 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160213812-64 -140340090,E18,14011423,Medical Incident,02/03/2014,02/03/2014,02/03/2014 09:10:12 AM,02/03/2014 09:12:02 AM,02/03/2014 09:12:17 AM,02/03/2014 09:14:40 AM,02/03/2014 09:17:38 AM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 09:50:08 AM,2500 Block of 43RD AVE,SF,94116,B08,18,7643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7391172735262, -122.501276104969)",140340090-E18 -121200322,E02,12039961,Medical Incident,04/29/2012,04/29/2012,04/29/2012 07:53:20 PM,04/29/2012 07:54:17 PM,04/29/2012 07:54:29 PM,04/29/2012 07:55:49 PM,04/29/2012 07:57:29 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 08:08:17 PM,900 Block of STOCKTON ST,SF,94108,B01,2,1331,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7944918953607, -122.408059565419)",121200322-E02 -140450021,B01,14015185,Alarms,02/14/2014,02/13/2014,02/14/2014 01:32:52 AM,02/14/2014 01:33:57 AM,02/14/2014 01:34:07 AM,02/14/2014 01:36:09 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 01:43:45 AM,1500 Block of GRANT AVE,SF,94133,B01,28,1265,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8012484334227, -122.407775929611)",140450021-B01 -160101522,62,16004039,Medical Incident,01/10/2016,01/10/2016,01/10/2016 12:39:55 PM,01/10/2016 12:41:09 PM,01/10/2016 12:41:49 PM,01/10/2016 12:42:15 PM,01/10/2016 12:46:54 PM,01/10/2016 01:01:39 PM,01/10/2016 01:20:53 PM,Code 2 Transport,01/10/2016 01:58:30 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160101522-62 -160443360,71,16017857,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:41:46 PM,02/13/2016 08:41:46 PM,02/13/2016 08:48:21 PM,02/13/2016 08:48:28 PM,02/13/2016 08:52:55 PM,02/13/2016 08:58:06 PM,02/13/2016 09:04:31 PM,Code 3 Transport,02/13/2016 09:53:46 PM,KIRKWOOD AV/MENDELL ST,San Francisco,94124,B10,25,6467,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7371063767658, -122.388090826716)",160443360-71 -111860305,85,11061565,Medical Incident,07/05/2011,07/05/2011,07/05/2011 04:49:24 PM,07/05/2011 04:50:00 PM,07/05/2011 04:50:44 PM,07/05/2011 05:40:36 PM,07/05/2011 05:51:18 PM,07/05/2011 06:08:37 PM,07/05/2011 06:44:00 PM,Code 2 Transport,07/05/2011 07:20:29 PM,300 Block of BALTIMORE WAY,SF,94112,B09,43,6228,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7087981055096, -122.437985362628)",111860305-85 -160202460,AM12,16008065,Traffic Collision,01/20/2016,01/20/2016,01/20/2016 03:43:18 PM,01/20/2016 03:43:50 PM,01/20/2016 03:44:11 PM,01/20/2016 03:45:20 PM,01/20/2016 03:49:39 PM,01/20/2016 03:56:22 PM,01/20/2016 04:21:46 PM,Code 2 Transport,01/20/2016 05:05:34 PM,3400 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8375,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,9,7,Oceanview/Merced/Ingleside,"(37.7111805030976, -122.463037208217)",160202460-AM12 -132110243,KM06,13071423,Medical Incident,07/30/2013,07/30/2013,07/30/2013 06:07:00 PM,07/30/2013 06:07:50 PM,07/30/2013 06:08:47 PM,07/30/2013 06:10:37 PM,07/30/2013 06:17:38 PM,07/30/2013 06:28:12 PM,07/30/2013 06:42:17 PM,Code 2 Transport,07/30/2013 07:16:43 PM,2300 Block of 20TH AVE,SF,94116,B08,40,7416,3,3,3,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7439329817378, -122.476899160931)",132110243-KM06 -133120241,82,13106071,Medical Incident,11/08/2013,11/08/2013,11/08/2013 02:57:30 PM,11/08/2013 02:58:45 PM,11/08/2013 02:59:09 PM,11/08/2013 02:59:47 PM,11/08/2013 03:07:21 PM,11/08/2013 03:17:01 PM,11/08/2013 03:34:10 PM,Code 2 Transport,11/08/2013 03:58:48 PM,200 Block of COLE ST,SF,94117,B05,21,4534,3,1,2,true,Non Life-threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7728331542136, -122.450948593554)",133120241-82 -160723094,62,16028758,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:16:48 PM,03/12/2016 08:18:23 PM,03/12/2016 08:39:02 PM,03/12/2016 08:39:44 PM,03/12/2016 08:50:57 PM,03/12/2016 08:59:55 PM,03/12/2016 09:19:10 PM,Code 2 Transport,03/12/2016 09:40:54 PM,200 Block of ASHTON AVE,San Francisco,94112,B09,15,8434,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7224246331182, -122.462198993823)",160723094-62 -160453153,55,16018288,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:49:08 PM,02/14/2016 08:49:08 PM,02/14/2016 09:08:22 PM,02/14/2016 09:08:22 PM,02/14/2016 09:08:22 PM,02/14/2016 09:17:03 PM,02/14/2016 09:21:36 PM,Code 2 Transport,02/14/2016 10:05:08 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160453153-55 -130920145,AM02,13030768,Medical Incident,04/02/2013,04/02/2013,04/02/2013 11:03:57 AM,04/02/2013 11:04:34 AM,04/02/2013 11:04:46 AM,04/02/2013 11:05:54 AM,04/02/2013 11:20:46 AM,04/02/2013 11:26:29 AM,04/02/2013 11:48:59 AM,Code 2 Transport,04/02/2013 12:13:04 PM,700 Block of BUSH ST,SF,94108,B01,2,1361,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",130920145-AM02 -131400353,E17,13047545,Medical Incident,05/20/2013,05/20/2013,05/20/2013 06:17:17 PM,05/20/2013 06:17:34 PM,05/20/2013 06:17:58 PM,05/20/2013 06:19:07 PM,05/20/2013 06:21:33 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/20/2013 06:54:00 PM,4600 Block of 3RD ST,SF,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7359613392217, -122.390148045197)",131400353-E17 -132040151,E36,13069066,Medical Incident,07/23/2013,07/23/2013,07/23/2013 11:33:31 AM,07/23/2013 11:35:17 AM,07/23/2013 11:36:07 AM,04/25/2016 01:51:40 PM,07/23/2013 11:43:13 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 11:47:22 AM,700 Block of GOLDEN GATE AVE,SF,94102,B02,5,326,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",132040151-E36 -123010174,E03,12099783,Outside Fire,10/27/2012,10/27/2012,10/27/2012 12:21:05 PM,10/27/2012 12:22:15 PM,10/27/2012 12:22:35 PM,10/27/2012 12:23:28 PM,10/27/2012 12:28:25 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:29:36 PM,600 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,true,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",123010174-E03 -123050446,E07,12101411,Medical Incident,10/31/2012,10/31/2012,10/31/2012 07:44:07 PM,10/31/2012 07:46:06 PM,10/31/2012 07:46:51 PM,10/31/2012 07:47:56 PM,10/31/2012 07:50:34 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 08:08:17 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",123050446-E07 -133440422,E12,13116864,Alarms,12/10/2013,12/10/2013,12/10/2013 11:54:29 PM,12/10/2013 11:56:03 PM,12/10/2013 11:56:23 PM,12/10/2013 11:57:57 PM,12/10/2013 11:59:23 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/11/2013 12:13:14 AM,1200 Block of ARGUELLO BLVD,SF,94122,B05,12,7321,3,3,3,true,Alarm,1,ENGINE,1,5,5,Inner Sunset,"(37.7656812762554, -122.457848242832)",133440422-E12 -160380380,AM10,16015054,Medical Incident,02/07/2016,02/06/2016,02/07/2016 02:10:30 AM,02/07/2016 02:13:01 AM,02/07/2016 02:13:21 AM,02/07/2016 02:14:54 AM,02/07/2016 02:24:23 AM,02/07/2016 02:29:56 AM,02/07/2016 02:39:09 AM,Code 2 Transport,02/07/2016 02:58:09 AM,1200 Block of COLUMBUS AVE,San Francisco,94133,B01,28,1525,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8056147061622, -122.417757636198)",160380380-AM10 -113360352,T01,11111366,Alarms,12/02/2011,12/02/2011,12/02/2011 05:21:30 PM,12/02/2011 05:22:42 PM,12/02/2011 05:22:58 PM,04/25/2016 02:01:21 PM,12/02/2011 05:26:52 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 05:31:07 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",113360352-T01 -122250185,E14,12074630,Alarms,08/12/2012,08/12/2012,08/12/2012 02:17:42 PM,08/12/2012 02:18:24 PM,08/12/2012 02:18:35 PM,08/12/2012 02:19:40 PM,08/12/2012 02:20:16 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 02:28:28 PM,400 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7849036811274, -122.416234049056)",122250185-E14 -131590092,E12,13053947,Medical Incident,06/08/2013,06/08/2013,06/08/2013 07:58:25 AM,06/08/2013 08:01:04 AM,06/08/2013 08:01:30 AM,06/08/2013 08:03:21 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 08:06:35 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",131590092-E12 -111490295,E21,11049508,Medical Incident,05/29/2011,05/29/2011,05/29/2011 09:23:55 PM,05/29/2011 09:26:38 PM,05/29/2011 09:27:00 PM,05/29/2011 09:27:54 PM,05/29/2011 09:27:57 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/29/2011 09:36:26 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",111490295-E21 -160741308,61,16029296,Medical Incident,03/14/2016,03/14/2016,03/14/2016 10:50:23 AM,03/14/2016 10:51:30 AM,03/14/2016 10:52:56 AM,03/14/2016 10:53:26 AM,03/14/2016 10:59:34 AM,03/14/2016 11:08:55 AM,03/14/2016 11:30:08 AM,Code 2 Transport,03/14/2016 12:14:58 PM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160741308-61 -160061460,54,16002372,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:35:47 AM,01/06/2016 11:36:43 AM,01/06/2016 11:37:33 AM,01/06/2016 11:38:02 AM,01/06/2016 11:38:41 AM,01/06/2016 11:44:22 AM,01/06/2016 11:52:53 AM,Code 2 Transport,01/06/2016 12:28:23 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7649874026625, -122.421639212531)",160061460-54 -160093069,85,16003766,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:28:17 PM,01/09/2016 07:31:57 PM,01/09/2016 07:32:37 PM,01/09/2016 07:32:48 PM,01/09/2016 07:43:37 PM,01/09/2016 08:05:27 PM,01/09/2016 08:23:57 PM,Code 2 Transport,01/09/2016 09:09:57 PM,0 Block of POPE ST,San Francisco,94112,B09,43,6176,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7150417603203, -122.441705850451)",160093069-85 -113610202,E05,11119964,Medical Incident,12/27/2011,12/27/2011,12/27/2011 02:52:35 PM,12/27/2011 02:53:30 PM,12/27/2011 02:54:03 PM,12/27/2011 02:54:59 PM,12/27/2011 02:56:22 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 03:08:20 PM,1700 Block of POST ST,SF,94115,B04,5,3513,3,2,2,true,,1,ENGINE,1,4,5,Japantown,"(37.7854139465586, -122.430564088684)",113610202-E05 -160591418,AM12,16023498,Medical Incident,02/28/2016,02/28/2016,02/28/2016 12:00:38 PM,02/28/2016 12:00:38 PM,02/28/2016 12:01:12 PM,02/28/2016 12:01:36 PM,02/28/2016 12:11:46 PM,02/28/2016 12:22:20 PM,02/28/2016 12:28:36 PM,Code 2 Transport,02/28/2016 01:01:37 PM,10TH AV/CABRILLO ST,San Francisco,94118,B07,31,7134,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7751740093503, -122.468158436382)",160591418-AM12 -160840619,AM02,16033270,Medical Incident,03/24/2016,03/23/2016,03/24/2016 07:29:18 AM,03/24/2016 07:31:17 AM,03/24/2016 07:31:31 AM,03/24/2016 07:32:38 AM,03/24/2016 07:43:54 AM,03/24/2016 08:07:45 AM,03/24/2016 08:21:45 AM,Code 2 Transport,03/24/2016 09:07:01 AM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7756362224799, -122.49784817494)",160840619-AM02 -132610353,B09,13088514,Alarms,09/18/2013,09/18/2013,09/18/2013 06:47:31 PM,09/18/2013 06:49:01 PM,09/18/2013 06:49:44 PM,09/18/2013 06:51:13 PM,09/18/2013 06:56:49 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 07:16:20 PM,3900 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,3,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",132610353-B09 -133640342,E15,13123741,Structure Fire,12/30/2013,12/30/2013,12/30/2013 08:09:41 PM,12/30/2013 08:10:24 PM,12/30/2013 08:10:41 PM,12/30/2013 08:12:47 PM,12/30/2013 08:52:36 PM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,Other,12/30/2013 08:54:47 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,true,Fire,1,ENGINE,12,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",133640342-E15 -112500213,E02,11082487,Medical Incident,09/07/2011,09/07/2011,09/07/2011 02:19:58 PM,09/07/2011 02:20:56 PM,09/07/2011 02:21:46 PM,09/07/2011 02:23:22 PM,09/07/2011 02:25:01 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 02:30:17 PM,900 Block of STOCKTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",112500213-E02 -113030059,E51,11100449,Medical Incident,10/30/2011,10/29/2011,10/30/2011 01:47:30 AM,10/30/2011 01:48:08 AM,10/30/2011 01:49:01 AM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 02:01:39 AM,ALHAMBRA ST/AVILA ST,SF,94123,B04,16,4114,3,3,3,false,,1,ENGINE,2,4,2,Marina,"(37.8012813200849, -122.440508601156)",113030059-E51 -133420088,E02,13115885,Structure Fire,12/08/2013,12/07/2013,12/08/2013 06:45:15 AM,12/08/2013 06:45:41 AM,12/08/2013 06:46:06 AM,12/08/2013 06:47:45 AM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 06:58:38 AM,1300 Block of HYDE ST,SF,94109,B01,41,1564,3,3,3,true,Alarm,1,ENGINE,9,1,3,Russian Hill,"(37.793235074749, -122.417915793747)",133420088-E02 -112290321,T08,11075787,Alarms,08/17/2011,08/17/2011,08/17/2011 09:56:42 PM,08/17/2011 09:58:07 PM,08/17/2011 09:58:54 PM,08/17/2011 10:00:05 PM,08/17/2011 10:02:08 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 10:10:39 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,false,,1,TRUCK,3,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",112290321-T08 -160263250,79,16010434,Medical Incident,01/26/2016,01/26/2016,01/26/2016 07:16:00 PM,01/26/2016 07:17:54 PM,01/26/2016 07:18:37 PM,01/26/2016 07:19:03 PM,01/26/2016 07:24:43 PM,01/26/2016 07:41:59 PM,01/26/2016 08:00:03 PM,Code 2 Transport,01/26/2016 08:38:09 PM,1700 Block of DIAMOND ST,San Francisco,94131,B06,26,5557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7435786028451, -122.435650218165)",160263250-79 -160423006,66,16016976,Medical Incident,02/11/2016,02/11/2016,02/11/2016 06:06:31 PM,02/11/2016 06:06:31 PM,02/11/2016 06:06:31 PM,02/11/2016 06:06:31 PM,02/11/2016 06:06:31 PM,02/11/2016 06:13:06 PM,02/11/2016 06:15:24 PM,Code 2 Transport,02/11/2016 07:21:22 PM,22ND ST/POTRERO AV,San Francisco,94110,B99,7,5474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",160423006-66 -160773363,66,16030745,Medical Incident,03/17/2016,03/17/2016,03/17/2016 06:38:17 PM,03/17/2016 06:38:17 PM,03/17/2016 06:45:50 PM,03/17/2016 06:46:13 PM,03/17/2016 07:13:39 PM,03/17/2016 07:35:55 PM,03/17/2016 08:02:54 PM,Code 2 Transport,03/17/2016 09:11:44 PM,GOLDEN GATE AV/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",160773363-66 -160273193,76,16010820,Medical Incident,01/27/2016,01/27/2016,01/27/2016 06:48:01 PM,01/27/2016 06:49:37 PM,01/27/2016 06:50:47 PM,01/27/2016 06:50:53 PM,01/27/2016 06:53:09 PM,01/27/2016 06:59:54 PM,01/27/2016 07:17:33 PM,Code 2 Transport,01/27/2016 08:04:58 PM,CYRIL MAGNIN ST/ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7853882479724, -122.408667084184)",160273193-76 -133030048,94,13102834,Medical Incident,10/30/2013,10/29/2013,10/30/2013 06:39:38 AM,10/30/2013 06:40:58 AM,10/30/2013 06:41:10 AM,10/30/2013 06:41:19 AM,10/30/2013 06:48:06 AM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Patient Declined Transport,10/30/2013 07:26:22 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",133030048-94 -121410092,RS1,12046770,Medical Incident,05/20/2012,05/19/2012,05/20/2012 07:46:14 AM,05/20/2012 07:47:42 AM,05/20/2012 07:48:27 AM,05/20/2012 07:51:12 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 07:53:01 AM,0 Block of MOSS ST,SF,94103,B03,1,2313,3,1,2,false,Non Life-threatening,1,RESCUE SQUAD,4,3,6,South of Market,"(37.7778360253922, -122.408013948834)",121410092-RS1 -111350121,BIKE3,11044853,,05/15/2011,05/15/2011,05/15/2011 09:15:31 AM,05/15/2011 09:15:47 AM,05/15/2011 09:16:30 AM,05/15/2011 09:20:20 AM,05/15/2011 09:31:55 AM,04/25/2016 02:04:37 PM,04/25/2016 02:04:37 PM,Patient Declined Transport,05/15/2011 10:05:17 AM,MAIN ST/FOLSOM ST,SF,94105,B03,35,2117,3,3,3,false,,1,ADMIN,0,3,6,Financial District/South Beach,"(37.7893692677435, -122.391858291445)",111350121-BIKE3 -160370158,83,16014511,Medical Incident,02/06/2016,02/05/2016,02/06/2016 12:43:12 AM,02/06/2016 12:43:12 AM,02/06/2016 12:43:37 AM,02/06/2016 12:43:45 AM,02/06/2016 12:55:51 AM,02/06/2016 01:16:14 AM,02/06/2016 01:53:03 AM,Code 2 Transport,02/06/2016 02:21:06 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160370158-83 -110330278,KM11,11010893,Medical Incident,02/02/2011,02/02/2011,02/02/2011 04:20:48 PM,02/02/2011 04:23:19 PM,02/02/2011 04:24:23 PM,02/02/2011 04:25:22 PM,02/02/2011 04:28:28 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 04:30:03 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",110330278-KM11 -113360474,E03,11111476,Alarms,12/02/2011,12/02/2011,12/02/2011 10:41:32 PM,12/02/2011 10:44:36 PM,12/02/2011 10:44:53 PM,04/25/2016 02:01:21 PM,12/02/2011 10:47:52 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 10:53:35 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",113360474-E03 -112180362,92,11072221,Medical Incident,08/06/2011,08/06/2011,08/06/2011 10:11:52 PM,08/06/2011 10:12:12 PM,08/06/2011 10:15:13 PM,08/06/2011 10:15:33 PM,08/06/2011 10:26:40 PM,08/06/2011 10:38:16 PM,08/06/2011 10:52:40 PM,Code 2 Transport,08/06/2011 11:15:12 PM,1700 Block of GENEVA AVE,SF,94134,B09,43,6245,2,2,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7118331290822, -122.427989009711)",112180362-92 -130390013,KM07,13013162,Medical Incident,02/08/2013,02/07/2013,02/08/2013 12:46:38 AM,02/08/2013 12:50:19 AM,02/08/2013 12:51:06 AM,02/08/2013 12:51:51 AM,02/08/2013 01:02:17 AM,02/08/2013 01:26:06 AM,02/08/2013 01:34:48 AM,Code 2 Transport,02/08/2013 02:10:15 AM,1100 Block of DIAMOND ST,SF,94114,B06,11,5545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7483583081639, -122.43609745796)",130390013-KM07 -111110270,E14,11036730,Medical Incident,04/21/2011,04/21/2011,04/21/2011 04:53:48 PM,04/21/2011 04:55:47 PM,04/21/2011 04:57:22 PM,04/21/2011 04:58:54 PM,04/21/2011 05:00:35 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/21/2011 05:16:10 PM,500 Block of 22ND AVE,SF,94121,B07,14,7176,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7773832279544, -122.481244651778)",111110270-E14 -121030175,T11,12034110,Alarms,04/12/2012,04/12/2012,04/12/2012 12:28:01 PM,04/12/2012 12:29:01 PM,04/12/2012 12:29:33 PM,04/12/2012 12:31:24 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 12:43:51 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",121030175-T11 -140070081,RC3,14002411,Medical Incident,01/07/2014,01/06/2014,01/07/2014 07:55:54 AM,01/07/2014 07:57:28 AM,01/07/2014 07:58:37 AM,01/07/2014 08:00:28 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 08:03:33 AM,500 Block of VERMONT ST,SF,94107,B10,29,2512,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,10,Potrero Hill,"(37.7627433423105, -122.404384264447)",140070081-RC3 -102740334,AM10,10087133,Medical Incident,10/01/2010,10/01/2010,10/01/2010 08:00:28 PM,10/01/2010 08:03:36 PM,10/01/2010 08:04:15 PM,10/01/2010 08:05:23 PM,10/01/2010 08:10:28 PM,10/01/2010 08:36:34 PM,10/01/2010 08:41:37 PM,Code 3 Transport,10/01/2010 09:19:14 PM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8053652773346, -122.407548697025)",102740334-AM10 -160062371,AM14,16002469,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:44:07 PM,01/06/2016 03:44:07 PM,01/06/2016 03:44:49 PM,01/06/2016 03:51:58 PM,01/06/2016 03:55:17 PM,01/06/2016 04:12:23 PM,01/06/2016 04:23:38 PM,Code 2 Transport,01/06/2016 04:58:44 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160062371-AM14 -160271899,89,16010682,Medical Incident,01/27/2016,01/27/2016,01/27/2016 01:21:29 PM,01/27/2016 01:24:36 PM,01/27/2016 01:24:56 PM,01/27/2016 01:25:10 PM,01/27/2016 01:34:24 PM,01/27/2016 01:52:43 PM,01/27/2016 02:15:58 PM,Code 2 Transport,01/27/2016 02:54:48 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160271899-89 -160232407,87,16009222,Medical Incident,01/23/2016,01/23/2016,01/23/2016 04:30:34 PM,01/23/2016 04:32:50 PM,01/23/2016 04:34:11 PM,01/23/2016 04:35:33 PM,01/23/2016 04:56:06 PM,01/23/2016 05:33:02 PM,01/23/2016 05:56:16 PM,Code 2 Transport,01/23/2016 06:19:18 PM,2700 Block of FILBERT ST,San Francisco,94123,B04,16,4224,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.7968094788109, -122.444763056233)",160232407-87 -160011733,AM08,16000305,Medical Incident,01/01/2016,01/01/2016,01/01/2016 11:20:20 AM,01/01/2016 11:22:11 AM,01/01/2016 11:22:47 AM,01/01/2016 11:23:28 AM,01/01/2016 11:30:07 AM,01/01/2016 11:33:38 AM,01/01/2016 11:51:01 AM,Code 2 Transport,01/01/2016 12:10:47 PM,1600 Block of KEITH ST,San Francisco,94124,B10,17,6551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7309508792927, -122.388067096627)",160011733-AM08 -140090182,E07,14003128,Medical Incident,01/09/2014,01/09/2014,01/09/2014 11:52:05 AM,01/09/2014 11:52:34 AM,01/09/2014 11:53:31 AM,01/09/2014 11:54:40 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 11:56:50 AM,1000 Block of VALENCIA ST,SF,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7556941430248, -122.421071601169)",140090182-E07 -160153168,58,16006115,Traffic Collision,01/15/2016,01/15/2016,01/15/2016 06:35:57 PM,01/15/2016 06:36:29 PM,01/15/2016 06:37:07 PM,01/15/2016 06:37:14 PM,01/15/2016 06:40:18 PM,01/15/2016 06:58:48 PM,01/15/2016 07:16:22 PM,Code 3 Transport,01/15/2016 08:10:52 PM,3RD AV/CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7830874411642, -122.461207474578)",160153168-58 -133250147,AM08,13110353,Medical Incident,11/21/2013,11/21/2013,11/21/2013 11:25:38 AM,11/21/2013 11:26:19 AM,11/21/2013 11:26:57 AM,11/21/2013 11:27:15 AM,11/21/2013 11:29:53 AM,11/21/2013 11:47:17 AM,11/21/2013 11:55:43 AM,Code 2 Transport,11/21/2013 12:39:11 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",133250147-AM08 -132070012,78,13069930,Medical Incident,07/26/2013,07/25/2013,07/26/2013 01:04:52 AM,07/26/2013 01:08:52 AM,07/26/2013 01:09:11 AM,07/26/2013 01:10:09 AM,07/26/2013 01:18:25 AM,07/26/2013 01:47:50 AM,07/26/2013 01:51:49 AM,Code 2 Transport,07/26/2013 02:14:53 AM,1400 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",132070012-78 -160350202,58,16013649,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:37:48 AM,02/04/2016 01:37:48 AM,02/04/2016 01:38:50 AM,02/04/2016 01:38:57 AM,02/04/2016 01:42:19 AM,02/04/2016 01:50:51 AM,02/04/2016 02:02:36 AM,Code 2 Transport,02/04/2016 02:28:28 AM,BROADWAY/GRANT AV,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",160350202-58 -103550150,E05,10113929,Medical Incident,12/21/2010,12/21/2010,12/21/2010 11:47:12 AM,12/21/2010 11:48:41 AM,12/21/2010 11:49:17 AM,12/21/2010 11:49:55 AM,12/21/2010 11:51:35 AM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 12:05:52 PM,1100 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",103550150-E05 -102820223,T10,10089711,Structure Fire,10/09/2010,10/09/2010,10/09/2010 01:27:33 PM,10/09/2010 01:29:03 PM,10/09/2010 01:29:21 PM,10/09/2010 01:30:20 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 01:34:36 PM,500 Block of 11TH AVE,SF,94118,B07,31,7142,3,3,3,false,,1,TRUCK,9,7,1,Inner Richmond,"(37.7779228408214, -122.469358764286)",102820223-T10 -160783443,63,16031162,Traffic Collision,03/18/2016,03/18/2016,03/18/2016 07:50:29 PM,03/18/2016 07:50:29 PM,03/18/2016 07:53:48 PM,03/18/2016 07:53:48 PM,03/18/2016 07:55:31 PM,03/18/2016 08:07:12 PM,03/18/2016 08:18:48 PM,Code 2 Transport,03/18/2016 09:08:21 PM,VAN NESS AV/GROVE ST,San Francisco,94102,B02,36,3165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",160783443-63 -160682228,70,16027162,Medical Incident,03/08/2016,03/08/2016,03/08/2016 03:08:53 PM,03/08/2016 03:11:23 PM,03/08/2016 03:12:07 PM,03/08/2016 03:12:43 PM,03/08/2016 03:16:22 PM,03/08/2016 03:46:18 PM,03/08/2016 03:54:43 PM,Code 2 Transport,03/08/2016 04:42:04 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160682228-70 -123040251,92,12100954,Medical Incident,10/30/2012,10/30/2012,10/30/2012 05:33:39 PM,10/30/2012 05:34:07 PM,10/30/2012 05:35:40 PM,10/30/2012 05:35:46 PM,10/30/2012 05:40:23 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/30/2012 06:15:54 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",123040251-92 -132490288,D3,13084113,Structure Fire,09/06/2013,09/06/2013,09/06/2013 05:30:30 PM,09/06/2013 05:31:30 PM,09/06/2013 05:31:51 PM,09/06/2013 05:32:21 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/06/2013 05:42:36 PM,400 Block of SAINT FRANCIS BLVD,SF,94127,B08,39,8556,3,3,3,false,Alarm,1,CHIEF,3,9,7,West of Twin Peaks,"(37.7348628619405, -122.466687433139)",132490288-D3 -120460245,E37,12015346,Medical Incident,02/15/2012,02/15/2012,02/15/2012 03:23:51 PM,02/15/2012 03:24:19 PM,02/15/2012 03:24:43 PM,02/15/2012 03:26:20 PM,02/15/2012 03:26:55 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 03:42:17 PM,1000 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",120460245-E37 -113180248,77,11105697,Traffic Collision,11/14/2011,11/14/2011,11/14/2011 04:51:39 PM,11/14/2011 04:52:41 PM,11/14/2011 04:53:06 PM,11/14/2011 04:53:26 PM,11/14/2011 04:55:29 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Patient Declined Transport,11/14/2011 04:53:56 PM,HOWARD ST/10TH ST,SF,94103,B02,36,2342,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7740433259374, -122.414367692219)",113180248-77 -122990083,E02,12099015,Traffic Collision,10/25/2012,10/25/2012,10/25/2012 08:02:49 AM,10/25/2012 08:06:58 AM,10/25/2012 08:07:21 AM,10/25/2012 08:09:55 AM,10/25/2012 08:10:41 AM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/25/2012 08:21:44 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",122990083-E02 -113000042,77,11099401,Medical Incident,10/27/2011,10/26/2011,10/27/2011 04:54:46 AM,10/27/2011 04:55:49 AM,10/27/2011 04:56:01 AM,10/27/2011 04:56:10 AM,10/27/2011 05:03:38 AM,10/27/2011 05:33:34 AM,10/27/2011 05:53:11 AM,Code 2 Transport,10/27/2011 06:35:23 AM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",113000042-77 -160012822,KM02,16000424,Medical Incident,01/01/2016,01/01/2016,01/01/2016 05:04:39 PM,01/01/2016 05:08:24 PM,01/01/2016 05:08:52 PM,01/01/2016 05:10:27 PM,01/01/2016 05:18:21 PM,01/01/2016 05:28:57 PM,01/01/2016 06:24:59 PM,Code 2 Transport,01/01/2016 06:36:45 PM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",160012822-KM02 -160541821,50,16021595,Medical Incident,02/23/2016,02/23/2016,02/23/2016 01:00:43 PM,02/23/2016 01:00:43 PM,02/23/2016 01:00:58 PM,02/23/2016 01:01:06 PM,02/23/2016 01:34:09 PM,02/23/2016 02:24:21 PM,02/23/2016 02:31:35 PM,Code 2 Transport,02/23/2016 03:12:51 PM,100 Block of AVENUE C,San Francisco,94130,B02,29,2345,2,2,2,true,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",160541821-50 -160373372,KM11,16014870,Medical Incident,02/06/2016,02/06/2016,02/06/2016 07:29:30 PM,02/06/2016 07:30:56 PM,02/06/2016 07:36:06 PM,02/06/2016 07:37:17 PM,02/06/2016 07:47:21 PM,02/06/2016 08:06:10 PM,02/06/2016 08:22:51 PM,Code 2 Transport,02/06/2016 08:56:09 PM,300 Block of 11TH AVE,San Francisco,94118,B07,31,7141,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7817321022893, -122.469767595348)",160373372-KM11 -112010134,KM04,11066226,Medical Incident,07/20/2011,07/20/2011,07/20/2011 10:14:03 AM,07/20/2011 10:16:23 AM,07/20/2011 10:16:41 AM,07/20/2011 10:17:56 AM,04/25/2016 02:03:35 PM,07/20/2011 10:36:02 AM,07/20/2011 10:51:06 AM,Code 2 Transport,07/20/2011 11:28:26 AM,1600 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7306779819765, -122.391641186978)",112010134-KM04 -160683550,68,16027260,Medical Incident,03/08/2016,03/08/2016,03/08/2016 09:33:48 PM,03/08/2016 09:34:06 PM,03/08/2016 09:34:29 PM,03/08/2016 09:34:52 PM,03/08/2016 09:39:38 PM,03/08/2016 10:00:28 PM,03/08/2016 10:19:29 PM,Code 2 Transport,03/08/2016 11:02:50 PM,300 Block of VIENNA ST,San Francisco,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7228366904256, -122.428721117908)",160683550-68 -110790133,T12,11025993,Other,03/20/2011,03/20/2011,03/20/2011 08:54:53 AM,03/20/2011 08:59:03 AM,03/20/2011 08:59:24 AM,03/20/2011 09:03:07 AM,03/20/2011 09:07:46 AM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,Fire,03/20/2011 09:24:44 AM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,2,2,2,false,,1,TRUCK,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",110790133-T12 -123230034,T17,12107284,Other,11/18/2012,11/17/2012,11/18/2012 02:20:50 AM,11/18/2012 02:21:36 AM,11/18/2012 02:21:52 AM,11/18/2012 02:25:08 AM,11/18/2012 02:33:49 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/18/2012 02:51:24 AM,400 Block of AMHERST ST,SF,94134,B09,42,6345,3,3,3,false,Alarm,1,TRUCK,1,9,9,Portola,"(37.7239558999741, -122.415120744965)",123230034-T17 -121190058,78,12039378,Medical Incident,04/28/2012,04/27/2012,04/28/2012 03:46:33 AM,04/28/2012 03:47:43 AM,04/28/2012 03:48:09 AM,04/28/2012 03:48:16 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 03:48:32 AM,1800 Block of EDDY ST,SF,94115,B05,5,4133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7806409046944, -122.43808239162)",121190058-78 -121800319,85,12060044,Medical Incident,06/28/2012,06/28/2012,06/28/2012 07:01:27 PM,06/28/2012 07:01:27 PM,06/28/2012 07:02:58 PM,06/28/2012 07:03:13 PM,06/28/2012 07:12:24 PM,06/28/2012 07:23:00 PM,06/28/2012 07:50:20 PM,Code 2 Transport,06/28/2012 08:03:07 PM,2100 Block of JENNINGS ST,SF,94124,B10,17,6651,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",121800319-85 -160770082,89,16030409,Medical Incident,03/17/2016,03/16/2016,03/17/2016 12:27:05 AM,03/17/2016 12:29:21 AM,03/17/2016 12:29:34 AM,03/17/2016 12:29:48 AM,03/17/2016 12:45:26 AM,03/17/2016 01:21:07 AM,03/17/2016 01:35:33 AM,Code 2 Transport,03/17/2016 02:22:16 AM,1200 Block of NAPLES ST,San Francisco,94112,B09,43,6223,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7114246696099, -122.438083624487)",160770082-89 -103250198,E01,10104196,Alarms,11/21/2010,11/21/2010,11/21/2010 01:54:32 PM,11/21/2010 01:54:58 PM,11/21/2010 01:55:03 PM,11/21/2010 01:55:56 PM,11/21/2010 01:58:08 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,04/25/2016 02:07:29 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",103250198-E01 -160331684,AM02,16012985,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:01:21 PM,02/02/2016 01:01:21 PM,02/02/2016 01:02:31 PM,02/02/2016 01:03:06 PM,02/02/2016 01:15:35 PM,02/02/2016 01:27:57 PM,02/02/2016 01:35:35 PM,Code 2 Transport,02/02/2016 02:06:37 PM,MARKET ST/MASON ST,San Francisco,94103,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",160331684-AM02 -111100405,KM12,11036494,Traffic Collision,04/20/2011,04/20/2011,04/20/2011 10:22:48 PM,04/20/2011 10:26:58 PM,04/20/2011 10:27:41 PM,04/20/2011 10:28:37 PM,04/20/2011 10:31:57 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Unable to Locate,04/20/2011 10:35:54 PM,300 Block of LAGUNA HONDA BLVD,SF,94116,B08,20,8649,2,2,2,false,,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",111100405-KM12 -103380202,87,10108144,Medical Incident,12/04/2010,12/04/2010,12/04/2010 12:05:13 PM,12/04/2010 12:06:48 PM,12/04/2010 12:07:56 PM,12/04/2010 12:08:03 PM,12/04/2010 12:11:06 PM,12/04/2010 12:23:01 PM,12/04/2010 12:31:58 PM,Code 2 Transport,12/04/2010 01:02:07 PM,600 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7627654072931, -122.417324660706)",103380202-87 -140020122,66,14000621,Medical Incident,01/02/2014,01/02/2014,01/02/2014 08:59:18 AM,01/02/2014 09:01:46 AM,01/02/2014 09:02:24 AM,01/02/2014 09:03:18 AM,01/02/2014 09:07:58 AM,01/02/2014 09:27:52 AM,01/02/2014 10:00:05 AM,Code 2 Transport,01/02/2014 10:31:03 AM,200 Block of STILLINGS AVE,SF,94131,B09,15,8246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7346080418784, -122.444845866242)",140020122-66 -121590251,E03,12052669,Alarms,06/07/2012,06/07/2012,06/07/2012 05:17:41 PM,06/07/2012 05:18:21 PM,06/07/2012 05:18:42 PM,06/07/2012 05:19:42 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/07/2012 05:22:42 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",121590251-E03 -160700914,89,16027769,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:20:01 AM,03/10/2016 09:20:42 AM,03/10/2016 09:20:55 AM,03/10/2016 09:21:03 AM,03/10/2016 09:23:34 AM,03/10/2016 09:35:18 AM,03/10/2016 09:47:13 AM,Code 2 Transport,03/10/2016 10:22:20 AM,600 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7627737268131, -122.417186682545)",160700914-89 -160562891,63,16022480,Medical Incident,02/25/2016,02/25/2016,02/25/2016 05:08:25 PM,02/25/2016 05:08:25 PM,02/25/2016 05:08:36 PM,02/25/2016 05:08:49 PM,02/25/2016 05:12:30 PM,02/25/2016 05:23:52 PM,02/25/2016 05:47:09 PM,Code 2 Transport,02/25/2016 06:26:14 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160562891-63 -160832278,88,16032992,Medical Incident,03/23/2016,03/23/2016,03/23/2016 02:27:06 PM,03/23/2016 02:27:24 PM,03/23/2016 02:28:58 PM,03/23/2016 02:29:11 PM,03/23/2016 02:33:45 PM,03/23/2016 02:56:28 PM,03/23/2016 03:11:23 PM,Code 2 Transport,03/23/2016 04:00:44 PM,300 Block of AMBER DR,San Francisco,94131,B06,26,8164,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Glen Park,"(37.7445636381979, -122.441704934967)",160832278-88 -140290289,E15,14009975,Medical Incident,01/29/2014,01/29/2014,01/29/2014 05:35:32 PM,01/29/2014 05:36:06 PM,01/29/2014 05:38:41 PM,01/29/2014 05:40:49 PM,01/29/2014 05:43:37 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/29/2014 06:18:59 PM,MISSION ST/GENEVA AV,SF,94112,B09,43,6175,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",140290289-E15 -140770009,96,14025921,Traffic Collision,03/18/2014,03/17/2014,03/18/2014 12:55:10 AM,03/18/2014 12:55:10 AM,03/18/2014 12:55:36 AM,03/18/2014 12:56:54 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Other,03/18/2014 12:58:14 AM,14TH ST/SOUTH VAN NESS AV,SAN FRANCISCO,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7684052696119, -122.417802155227)",140770009-96 -160891077,71,16035272,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:45:43 AM,03/29/2016 09:46:41 AM,03/29/2016 09:46:56 AM,03/29/2016 09:47:09 AM,03/29/2016 09:52:06 AM,03/29/2016 09:58:33 AM,03/29/2016 10:00:49 AM,Code 2 Transport,03/29/2016 10:33:53 AM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",160891077-71 -160413379,68,16016616,Medical Incident,02/10/2016,02/10/2016,02/10/2016 07:34:26 PM,02/10/2016 07:35:46 PM,02/10/2016 07:36:34 PM,02/10/2016 07:36:45 PM,02/10/2016 07:41:48 PM,02/10/2016 07:53:48 PM,02/10/2016 08:11:42 PM,Code 3 Transport,02/10/2016 08:50:24 PM,TAYLOR ST/THE EMBARCADERO NOR,San Francisco,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8085905137399, -122.415923448242)",160413379-68 -160522984,60,16020944,Medical Incident,02/21/2016,02/21/2016,02/21/2016 07:29:18 PM,02/21/2016 07:29:38 PM,02/21/2016 07:30:10 PM,02/21/2016 07:30:17 PM,02/21/2016 07:39:43 PM,02/21/2016 08:05:07 PM,02/21/2016 08:15:42 PM,Code 2 Transport,02/21/2016 08:55:22 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160522984-60 -130480056,E11,13016274,Medical Incident,02/17/2013,02/16/2013,02/17/2013 02:47:35 AM,02/17/2013 02:47:59 AM,02/17/2013 02:48:26 AM,02/17/2013 02:49:53 AM,02/17/2013 02:51:28 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 03:00:07 AM,23RD ST/DOLORES ST,SF,94110,B06,11,5513,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7534315922902, -122.425302617555)",130480056-E11 -102280157,55,10071757,Medical Incident,08/16/2010,08/16/2010,08/16/2010 12:11:49 PM,08/16/2010 12:16:19 PM,08/16/2010 12:16:34 PM,08/16/2010 12:17:10 PM,08/16/2010 12:30:20 PM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Medical Examiner,08/16/2010 12:50:30 PM,700 Block of BROADWAY,SF,94133,B01,2,1353,2,2,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7974024321534, -122.409965345352)",102280157-55 -131330154,E01,13044829,Medical Incident,05/13/2013,05/13/2013,05/13/2013 11:17:10 AM,05/13/2013 11:19:08 AM,05/13/2013 11:19:37 AM,05/13/2013 11:20:01 AM,05/13/2013 11:24:28 AM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 11:45:06 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",131330154-E01 -132900378,E13,13098809,Medical Incident,10/17/2013,10/17/2013,10/17/2013 08:40:47 PM,10/17/2013 08:42:22 PM,10/17/2013 08:42:49 PM,10/17/2013 08:44:06 PM,10/17/2013 08:47:48 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,No Merit,10/17/2013 08:51:56 PM,400 Block of THE EMBARCADERO,SF,94111,B01,13,907,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",132900378-E13 -120110252,T19,12003869,Alarms,01/11/2012,01/11/2012,01/11/2012 06:11:12 PM,01/11/2012 06:11:40 PM,01/11/2012 06:12:27 PM,01/11/2012 06:14:00 PM,01/11/2012 06:17:31 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 06:28:16 PM,500 Block of ARCH ST,SF,94132,B09,33,8432,3,3,3,false,Alarm,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7206675759732, -122.467099843315)",120110252-T19 -120150017,E17,12004952,Medical Incident,01/15/2012,01/14/2012,01/15/2012 12:42:19 AM,01/15/2012 12:44:16 AM,01/15/2012 12:46:12 AM,01/15/2012 12:48:53 AM,01/15/2012 12:52:36 AM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 01:04:11 AM,1700 Block of YOSEMITE AVE,SF,94124,B10,17,6512,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7284996658469, -122.39444320706)",120150017-E17 -160650230,53,16025777,Medical Incident,03/05/2016,03/04/2016,03/05/2016 01:36:27 AM,03/05/2016 01:37:18 AM,03/05/2016 01:37:31 AM,03/05/2016 01:37:41 AM,03/05/2016 01:40:44 AM,03/05/2016 01:57:40 AM,03/05/2016 02:38:09 AM,Code 2 Transport,03/05/2016 03:03:01 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160650230-53 -160572352,59,16022819,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:40:45 PM,02/26/2016 03:40:45 PM,02/26/2016 03:41:29 PM,02/26/2016 03:41:56 PM,02/26/2016 03:45:40 PM,02/26/2016 03:55:56 PM,02/26/2016 04:20:48 PM,Code 2 Transport,02/26/2016 04:59:38 PM,1100 Block of GOUGH ST,San Francisco,94109,B04,3,3261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.784358514886, -122.424559253604)",160572352-59 -112820280,91,11093414,Medical Incident,10/09/2011,10/09/2011,10/09/2011 05:18:44 PM,10/09/2011 05:19:12 PM,10/09/2011 05:19:35 PM,10/09/2011 05:20:22 PM,10/09/2011 05:26:21 PM,10/09/2011 05:47:31 PM,10/09/2011 05:55:58 PM,Code 2 Transport,10/09/2011 06:22:58 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",112820280-91 -160881570,KM11,16034935,Medical Incident,03/28/2016,03/28/2016,03/28/2016 12:01:10 PM,03/28/2016 12:01:39 PM,03/28/2016 12:02:00 PM,03/28/2016 12:02:32 PM,03/28/2016 12:06:10 PM,03/28/2016 12:10:46 PM,03/28/2016 12:15:42 PM,Code 3 Transport,03/28/2016 12:52:14 PM,MARINA BL/SCOTT ST,San Francisco,94123,B04,16,4111,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8057862730196, -122.442209784032)",160881570-KM11 -102300056,B09,10072297,Alarms,08/18/2010,08/17/2010,08/18/2010 07:24:55 AM,08/18/2010 07:26:22 AM,08/18/2010 07:26:37 AM,08/18/2010 07:27:53 AM,08/18/2010 07:30:52 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Fire,08/18/2010 07:34:55 AM,100 Block of HAROLD AVE,SF,94112,B09,15,8466,3,3,3,false,,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7209471302595, -122.453165419355)",102300056-B09 -113240140,E02,11107575,Medical Incident,11/20/2011,11/20/2011,11/20/2011 11:03:47 AM,11/20/2011 11:04:24 AM,11/20/2011 11:04:40 AM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 11:04:44 AM,BROADWAY/STOCKTON ST,SF,94133,B01,2,1311,3,2,2,true,,1,ENGINE,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",113240140-E02 -122750130,55,12090696,Medical Incident,10/01/2012,10/01/2012,10/01/2012 10:29:49 AM,10/01/2012 10:31:38 AM,10/01/2012 10:32:11 AM,10/01/2012 10:33:40 AM,10/01/2012 10:46:07 AM,10/01/2012 11:12:10 AM,10/01/2012 11:41:48 AM,Code 2 Transport,10/01/2012 11:43:33 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",122750130-55 -140720127,55,14024270,Medical Incident,03/13/2014,03/13/2014,03/13/2014 09:41:30 AM,03/13/2014 09:44:32 AM,03/13/2014 09:46:20 AM,03/13/2014 09:46:37 AM,03/13/2014 09:51:45 AM,03/13/2014 10:16:40 AM,03/13/2014 10:37:43 AM,Code 2 Transport,03/13/2014 10:55:32 AM,500 Block of 5TH ST,SAN FRANCISCO,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",140720127-55 -132880175,B03,13097965,Structure Fire,10/15/2013,10/15/2013,10/15/2013 11:25:59 AM,10/15/2013 11:26:57 AM,10/15/2013 11:27:42 AM,10/15/2013 11:28:54 AM,10/15/2013 11:30:55 AM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,10/15/2013 11:38:31 AM,1900 Block of 18TH ST,SF,94107,B02,37,2455,3,3,3,false,Alarm,1,CHIEF,1,10,10,Potrero Hill,"(37.7622049152778, -122.401820320601)",132880175-B03 -113320317,B01,11110091,Structure Fire,11/28/2011,11/28/2011,11/28/2011 06:16:15 PM,11/28/2011 06:17:53 PM,11/28/2011 06:18:10 PM,11/28/2011 06:19:04 PM,11/28/2011 06:21:07 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/28/2011 06:31:29 PM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,,1,CHIEF,1,1,3,Nob Hill,"(37.7917657997993, -122.407489250227)",113320317-B01 -113430236,E44,11113783,Medical Incident,12/09/2011,12/09/2011,12/09/2011 01:47:27 PM,12/09/2011 01:47:55 PM,12/09/2011 01:48:19 PM,12/09/2011 01:49:10 PM,12/09/2011 01:52:07 PM,04/25/2016 02:01:14 PM,04/25/2016 02:01:14 PM,Other,12/09/2011 02:09:37 PM,SAN BRUNO AV/SILLIMAN ST,SF,94134,B10,42,6362,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7312369255307, -122.405085875862)",113430236-E44 -140270184,82,14009197,Medical Incident,01/27/2014,01/27/2014,01/27/2014 01:16:26 PM,01/27/2014 01:17:20 PM,01/27/2014 01:17:32 PM,01/27/2014 01:17:38 PM,01/27/2014 01:20:31 PM,01/27/2014 01:44:27 PM,01/27/2014 01:50:42 PM,Code 2 Transport,01/27/2014 02:31:21 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",140270184-82 -112370306,KM10,11078292,Medical Incident,08/25/2011,08/25/2011,08/25/2011 05:18:31 PM,08/25/2011 05:20:32 PM,08/25/2011 05:21:19 PM,08/25/2011 05:22:07 PM,08/25/2011 05:27:53 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Unable to Locate,08/25/2011 05:28:29 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7829058754034, -122.40679650522)",112370306-KM10 -140870057,E13,14029175,Medical Incident,03/28/2014,03/27/2014,03/28/2014 06:56:07 AM,03/28/2014 06:56:24 AM,03/28/2014 06:56:35 AM,03/28/2014 06:58:17 AM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Other,03/28/2014 07:01:02 AM,700 Block of MISSION ST,,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",140870057-E13 -160491154,75,16019680,Traffic Collision,02/18/2016,02/18/2016,02/18/2016 10:24:00 AM,02/18/2016 10:24:14 AM,02/18/2016 10:24:25 AM,02/18/2016 10:24:31 AM,02/18/2016 10:29:18 AM,02/18/2016 10:42:14 AM,02/18/2016 11:20:12 AM,Code 2 Transport,02/18/2016 11:27:31 AM,BUSH ST/SCOTT ST,San Francisco,94115,B04,10,4126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.78639167377, -122.438393883002)",160491154-75 -140020418,E39,14000876,Structure Fire,01/02/2014,01/02/2014,01/02/2014 10:59:56 PM,01/02/2014 11:02:08 PM,01/02/2014 11:02:50 PM,01/02/2014 11:04:44 PM,01/02/2014 11:07:50 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/02/2014 11:26:30 PM,200 Block of MARIETTA DR,SF,94127,B09,39,8654,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.738687302848, -122.44337815957)",140020418-E39 -132170013,66,13073166,Medical Incident,08/05/2013,08/04/2013,08/05/2013 01:04:54 AM,08/05/2013 01:05:15 AM,08/05/2013 01:06:01 AM,08/05/2013 01:07:17 AM,08/05/2013 01:14:09 AM,08/05/2013 01:41:30 AM,08/05/2013 01:49:20 AM,Code 2 Transport,08/05/2013 02:21:49 AM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",132170013-66 -132620084,81,13088667,Medical Incident,09/19/2013,09/19/2013,09/19/2013 09:01:23 AM,09/19/2013 09:03:54 AM,09/19/2013 09:04:23 AM,09/19/2013 09:04:30 AM,09/19/2013 09:11:54 AM,09/19/2013 09:21:07 AM,09/19/2013 09:36:36 AM,Code 2 Transport,09/19/2013 10:06:38 AM,200 Block of CORBETT AVE,SF,94114,B05,24,5265,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7609447758024, -122.444219219303)",132620084-81 -120710326,84,12023740,Medical Incident,03/11/2012,03/11/2012,03/11/2012 09:49:05 PM,03/11/2012 09:49:05 PM,03/11/2012 09:49:05 PM,03/11/2012 09:52:55 PM,04/25/2016 01:59:43 PM,03/11/2012 10:07:25 PM,03/11/2012 10:32:35 PM,Code 3 Transport,03/11/2012 11:10:39 PM,STOCKTON ST/BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",120710326-84 -160141412,88,16005533,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:27:05 AM,01/14/2016 11:27:45 AM,01/14/2016 11:28:03 AM,01/14/2016 11:28:09 AM,01/14/2016 11:32:10 AM,01/14/2016 11:48:26 AM,01/14/2016 12:06:53 PM,Code 2 Transport,01/14/2016 12:51:58 PM,900 Block of DE HARO ST,San Francisco,94107,B10,37,2511,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7589370511593, -122.400966701986)",160141412-88 -121220215,KM15,12040521,Medical Incident,05/01/2012,05/01/2012,05/01/2012 03:05:07 PM,05/01/2012 03:06:27 PM,05/01/2012 03:06:47 PM,05/01/2012 03:09:05 PM,05/01/2012 03:20:05 PM,05/01/2012 03:41:20 PM,05/01/2012 03:47:14 PM,Code 2 Transport,05/01/2012 04:13:23 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",121220215-KM15 -120810290,E01,12026971,Medical Incident,03/21/2012,03/21/2012,03/21/2012 05:09:17 PM,03/21/2012 05:10:12 PM,03/21/2012 05:10:19 PM,03/21/2012 05:11:26 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Other,03/21/2012 05:11:39 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",120810290-E01 -110920059,89,11030424,Medical Incident,04/02/2011,04/01/2011,04/02/2011 03:22:26 AM,04/02/2011 03:24:39 AM,04/02/2011 03:25:12 AM,04/02/2011 03:25:26 AM,04/02/2011 03:28:34 AM,04/02/2011 03:48:31 AM,04/02/2011 04:04:09 AM,Other,04/02/2011 04:19:17 AM,100 Block of ALPINE TER,SF,94117,B05,6,5134,3,3,3,true,,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681326738343, -122.437454372806)",110920059-89 -133430355,T11,13116463,Structure Fire,12/09/2013,12/09/2013,12/09/2013 08:22:03 PM,12/09/2013 08:22:04 PM,12/09/2013 08:22:15 PM,12/09/2013 08:23:28 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/09/2013 08:25:36 PM,20TH ST/CHURCH ST,SF,94114,B06,11,5444,3,3,3,false,Alarm,1,TRUCK,2,6,8,Castro/Upper Market,"(37.7580887566543, -122.428050185674)",133430355-T11 -160290695,52,16011350,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:07:00 AM,01/29/2016 08:08:43 AM,01/29/2016 08:09:10 AM,01/29/2016 08:09:22 AM,01/29/2016 08:20:50 AM,01/29/2016 08:33:56 AM,01/29/2016 08:40:08 AM,Code 2 Transport,01/29/2016 09:12:45 AM,3100 Block of 23RD ST,San Francisco,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7539458833911, -122.415861589966)",160290695-52 -131000239,KM04,13033646,Medical Incident,04/10/2013,04/10/2013,04/10/2013 02:23:24 PM,04/10/2013 02:24:58 PM,04/10/2013 02:25:14 PM,04/10/2013 02:29:31 PM,04/10/2013 02:34:08 PM,04/10/2013 03:00:19 PM,04/10/2013 03:13:04 PM,Code 2 Transport,04/10/2013 03:54:20 PM,3300 Block of IRVING ST,SF,94122,B08,23,7564,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.762774823205, -122.493730777688)",131000239-KM04 -160563166,KM13,16022505,Medical Incident,02/25/2016,02/25/2016,02/25/2016 06:09:56 PM,02/25/2016 06:12:07 PM,02/25/2016 06:12:31 PM,02/25/2016 06:13:29 PM,02/25/2016 06:25:39 PM,02/25/2016 06:46:04 PM,02/25/2016 07:10:13 PM,Code 2 Transport,02/25/2016 07:41:01 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160563166-KM13 -130490048,E33,13016600,Medical Incident,02/18/2013,02/17/2013,02/18/2013 04:44:11 AM,02/18/2013 04:46:12 AM,02/18/2013 04:48:02 AM,02/18/2013 04:49:39 AM,02/18/2013 04:53:51 AM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/18/2013 05:03:35 AM,400 Block of VICTORIA ST,SF,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7188021317353, -122.465280431039)",130490048-E33 -132960187,T10,13100605,Alarms,10/23/2013,10/23/2013,10/23/2013 02:27:02 PM,10/23/2013 02:28:19 PM,10/23/2013 02:28:34 PM,10/23/2013 02:29:28 PM,10/23/2013 02:32:37 PM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/23/2013 02:35:56 PM,2800 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,false,Alarm,1,TRUCK,2,4,2,Pacific Heights,"(37.7931736175933, -122.444028632879)",132960187-T10 -160590113,KM07,16023346,Medical Incident,02/28/2016,02/27/2016,02/28/2016 12:41:20 AM,02/28/2016 12:45:20 AM,02/28/2016 12:45:42 AM,02/28/2016 12:46:12 AM,02/28/2016 12:49:57 AM,02/28/2016 01:31:55 AM,02/28/2016 02:08:25 AM,Code 2 Transport,02/28/2016 02:14:44 AM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",160590113-KM07 -102250094,82,10070775,Medical Incident,08/13/2010,08/13/2010,08/13/2010 09:59:37 AM,08/13/2010 10:02:14 AM,08/13/2010 10:02:46 AM,08/13/2010 10:03:43 AM,08/13/2010 10:09:22 AM,08/13/2010 10:26:17 AM,08/13/2010 10:48:47 AM,Code 2 Transport,08/13/2010 11:11:29 AM,1200 Block of YORK ST,SF,94110,B06,9,5531,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7520504579835, -122.408181888121)",102250094-82 -160363358,59,16014399,Medical Incident,02/05/2016,02/05/2016,02/05/2016 07:11:15 PM,02/05/2016 07:11:15 PM,02/05/2016 07:23:12 PM,02/05/2016 07:23:26 PM,02/05/2016 07:36:45 PM,02/05/2016 07:48:22 PM,02/05/2016 08:12:04 PM,Code 2 Transport,02/05/2016 08:44:24 PM,800 Block of HOWARD ST,San Francisco,94103,B99,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,4,3,6,South of Market,"(37.7824182864419, -122.403869611535)",160363358-59 -130970121,81,13032484,Medical Incident,04/07/2013,04/07/2013,04/07/2013 09:43:02 AM,04/07/2013 09:43:04 AM,04/07/2013 09:43:14 AM,04/07/2013 09:45:08 AM,04/07/2013 09:49:11 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 09:49:45 AM,MARINA BL/LAGUNA ST,SF,94123,B04,16,3452,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.8051995453814, -122.432090718256)",130970121-81 -102550278,78,10080726,Medical Incident,09/12/2010,09/12/2010,09/12/2010 09:52:58 PM,09/12/2010 09:52:58 PM,09/12/2010 09:53:22 PM,09/12/2010 09:53:51 PM,09/12/2010 09:55:31 PM,09/12/2010 10:08:36 PM,09/12/2010 10:23:44 PM,Code 2 Transport,09/12/2010 11:17:11 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",102550278-78 -160562255,AM16,16022425,Medical Incident,02/25/2016,02/25/2016,02/25/2016 02:26:15 PM,02/25/2016 02:29:10 PM,02/25/2016 02:33:01 PM,02/25/2016 02:33:38 PM,02/25/2016 02:41:11 PM,02/25/2016 03:14:44 PM,02/25/2016 03:25:35 PM,Code 2 Transport,02/25/2016 03:33:29 PM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7800574377607, -122.408673540372)",160562255-AM16 -160162927,87,16006541,Medical Incident,01/16/2016,01/16/2016,01/16/2016 06:35:33 PM,01/16/2016 06:35:55 PM,01/16/2016 06:36:39 PM,01/16/2016 06:36:53 PM,01/16/2016 06:36:53 PM,01/16/2016 06:48:27 PM,01/16/2016 07:05:04 PM,Code 2 Transport,01/16/2016 07:31:04 PM,18TH ST/VALENCIA ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7617009099893, -122.421578400735)",160162927-87 -132330357,E13,13078818,Alarms,08/21/2013,08/21/2013,08/21/2013 09:28:35 PM,08/21/2013 09:30:16 PM,08/21/2013 09:31:10 PM,08/21/2013 09:32:36 PM,08/21/2013 09:35:01 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/21/2013 09:50:59 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",132330357-E13 -111340019,E03,11044446,Structure Fire,05/14/2011,05/13/2011,05/14/2011 01:27:54 AM,05/14/2011 01:27:54 AM,05/14/2011 01:28:02 AM,04/25/2016 02:04:38 PM,05/14/2011 01:31:37 AM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,Other,05/14/2011 01:32:16 AM,LEAVENWORTH ST/GOLDEN GATE AV,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",111340019-E03 -121320114,D3,12043857,Structure Fire,05/11/2012,05/11/2012,05/11/2012 09:14:06 AM,05/11/2012 09:14:48 AM,05/11/2012 09:15:06 AM,05/11/2012 09:15:49 AM,05/11/2012 09:17:51 AM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 09:31:12 AM,900 Block of CAPP ST,SF,94110,B06,11,5525,3,3,3,false,Fire,1,CHIEF,2,6,9,Mission,"(37.7515098435706, -122.417210393088)",121320114-D3 -113060193,T08,11101658,Alarms,11/02/2011,11/02/2011,11/02/2011 01:08:52 PM,11/02/2011 01:09:57 PM,11/02/2011 01:10:08 PM,11/02/2011 01:12:06 PM,11/02/2011 01:14:52 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 01:17:42 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7813340573864, -122.399027495005)",113060193-T08 -132580361,E36,13087438,Structure Fire,09/15/2013,09/15/2013,09/15/2013 10:16:11 PM,09/15/2013 10:16:11 PM,09/15/2013 10:16:28 PM,09/15/2013 10:17:37 PM,09/15/2013 10:19:43 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Fire,09/15/2013 10:19:59 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",132580361-E36 -132210256,E01,13074691,Traffic Collision,08/09/2013,08/09/2013,08/09/2013 04:59:10 PM,08/09/2013 05:00:38 PM,08/09/2013 05:09:27 PM,08/09/2013 05:09:57 PM,08/09/2013 05:15:17 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,No Merit,08/09/2013 05:17:04 PM,FOLSOM ST/SPEAR ST,SF,94105,B03,35,2112,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7900698004723, -122.390971017685)",132210256-E01 -120300267,78,12010072,Medical Incident,01/30/2012,01/30/2012,01/30/2012 07:42:45 PM,01/30/2012 07:43:23 PM,01/30/2012 07:44:11 PM,01/30/2012 07:44:23 PM,01/30/2012 07:48:59 PM,01/30/2012 08:13:06 PM,01/30/2012 08:34:06 PM,Code 2 Transport,01/30/2012 08:54:37 PM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",120300267-78 -120670108,E10,12022146,Medical Incident,03/07/2012,03/07/2012,03/07/2012 08:44:46 AM,03/07/2012 08:46:59 AM,03/07/2012 08:47:19 AM,03/07/2012 08:48:52 AM,03/07/2012 08:51:53 AM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,03/07/2012 08:54:16 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",120670108-E10 -112570226,T10,11084777,Vehicle Fire,09/14/2011,09/14/2011,09/14/2011 04:23:30 PM,09/14/2011 04:25:47 PM,09/14/2011 04:26:08 PM,09/14/2011 04:27:08 PM,09/14/2011 04:30:21 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/14/2011 04:47:24 PM,BROADWAY/DIVISADERO ST,SF,94115,B04,10,4226,3,3,3,false,,1,TRUCK,2,4,2,Pacific Heights,"(37.7934365906493, -122.441520477479)",112570226-T10 -130910051,E48,13030334,Alarms,04/01/2013,03/31/2013,04/01/2013 06:24:54 AM,04/01/2013 06:24:54 AM,04/01/2013 06:25:08 AM,04/25/2016 01:53:32 PM,04/01/2013 06:29:47 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 06:33:44 AM,500 Block of AVENUE D,TI,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,1,None,6,Treasure Island,"(37.8228150466613, -122.371860211672)",130910051-E48 -111770299,KM12,11058460,Medical Incident,06/26/2011,06/26/2011,06/26/2011 05:02:51 PM,06/26/2011 05:05:16 PM,06/26/2011 05:10:17 PM,06/26/2011 05:10:49 PM,06/26/2011 05:19:49 PM,06/26/2011 05:46:27 PM,06/26/2011 06:12:03 PM,Code 2 Transport,06/26/2011 06:19:21 PM,600 Block of 18TH AVE,SF,94121,B07,31,7157,2,2,2,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7757145343646, -122.476828115824)",111770299-KM12 -112740282,E33,11090694,Medical Incident,10/01/2011,10/01/2011,10/01/2011 04:31:04 PM,10/01/2011 04:37:52 PM,10/01/2011 04:38:30 PM,10/01/2011 04:39:59 PM,10/01/2011 04:42:25 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Patient Declined Transport,10/01/2011 05:19:08 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",112740282-E33 -111700185,E38,11056041,Medical Incident,06/19/2011,06/19/2011,06/19/2011 01:06:09 PM,06/19/2011 01:06:41 PM,06/19/2011 01:06:54 PM,06/19/2011 01:07:53 PM,06/19/2011 01:09:55 PM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,Other,06/19/2011 01:17:13 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,E,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",111700185-E38 -130340291,B04,13011709,Structure Fire,02/03/2013,02/03/2013,02/03/2013 06:50:30 PM,02/03/2013 06:51:57 PM,02/03/2013 06:52:14 PM,02/03/2013 06:52:57 PM,02/03/2013 06:56:05 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 07:03:32 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,CHIEF,4,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",130340291-B04 -112130342,T10,11070424,Structure Fire,08/01/2011,08/01/2011,08/01/2011 08:18:47 PM,08/01/2011 08:20:07 PM,08/01/2011 08:20:23 PM,08/01/2011 08:21:37 PM,08/01/2011 08:26:56 PM,04/25/2016 02:03:23 PM,04/25/2016 02:03:23 PM,Other,08/01/2011 08:37:02 PM,0 Block of TOLEDO WAY,SF,94123,B04,16,3565,3,3,3,false,,1,TRUCK,8,4,2,Marina,"(37.8011950731509, -122.438465461238)",112130342-T10 -103430312,E31,10109956,Alarms,12/09/2010,12/09/2010,12/09/2010 05:02:36 PM,12/09/2010 05:03:37 PM,12/09/2010 05:03:41 PM,12/09/2010 05:04:37 PM,12/09/2010 05:06:57 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 05:29:21 PM,4100 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",103430312-E31 -123370436,59,12112388,Medical Incident,12/02/2012,12/02/2012,12/02/2012 04:03:14 PM,12/02/2012 04:04:11 PM,12/02/2012 04:05:11 PM,12/02/2012 04:05:42 PM,12/02/2012 04:08:12 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,No Merit,12/02/2012 04:10:49 PM,POLK ST/MCALLISTER ST,SF,94102,B02,3,3113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",123370436-59 -120110162,E01,12003796,Alarms,01/11/2012,01/11/2012,01/11/2012 01:29:46 PM,01/11/2012 01:30:11 PM,01/11/2012 01:30:16 PM,01/11/2012 01:31:15 PM,01/11/2012 01:34:18 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Fire,01/11/2012 01:35:28 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",120110162-E01 -122430184,E22,12080361,Medical Incident,08/30/2012,08/30/2012,08/30/2012 02:16:32 PM,08/30/2012 02:17:44 PM,08/30/2012 02:18:01 PM,08/30/2012 02:19:01 PM,08/30/2012 02:21:01 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/30/2012 02:50:35 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,5,Inner Sunset,"(37.7632029010129, -122.464037930237)",122430184-E22 -111340176,E28,11044566,Medical Incident,05/14/2011,05/14/2011,05/14/2011 01:36:39 PM,05/14/2011 01:37:38 PM,05/14/2011 01:37:55 PM,05/14/2011 01:38:52 PM,05/14/2011 01:41:08 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,Other,05/14/2011 01:47:48 PM,0 Block of TELEGRAPH HILL BLVD,SF,94133,B01,28,1253,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8022505061483, -122.405471739992)",111340176-E28 -132080189,87,13070409,Medical Incident,07/27/2013,07/27/2013,07/27/2013 02:12:30 PM,07/27/2013 02:12:59 PM,07/27/2013 02:13:14 PM,07/27/2013 02:13:29 PM,07/27/2013 02:18:27 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Patient Declined Transport,07/27/2013 02:58:07 PM,3000 Block of 16TH ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7649119117282, -122.421065182856)",132080189-87 -133090342,E21,13105189,Other,11/05/2013,11/05/2013,11/05/2013 07:04:51 PM,11/05/2013 07:08:43 PM,11/05/2013 07:09:21 PM,04/25/2016 01:49:54 PM,11/05/2013 07:13:06 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,No Merit,11/05/2013 07:23:40 PM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",133090342-E21 -122370324,59,12078639,Citizen Assist / Service Call,08/24/2012,08/24/2012,08/24/2012 09:14:28 PM,08/24/2012 09:16:44 PM,08/24/2012 09:17:04 PM,08/24/2012 09:17:27 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/24/2012 09:17:30 PM,100 Block of HAROLD AVE,SF,94112,B09,15,8466,3,3,3,true,Alarm,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7209475450544, -122.453027122282)",122370324-59 -122840204,E03,12093973,Medical Incident,10/10/2012,10/10/2012,10/10/2012 03:17:08 PM,10/10/2012 03:18:01 PM,10/10/2012 03:18:11 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 03:20:49 PM,400 Block of TURK ST,SF,94102,B02,3,1554,E,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",122840204-E03 -160410955,67,16016374,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:12:20 AM,02/10/2016 09:15:08 AM,02/10/2016 09:15:32 AM,02/10/2016 09:15:53 AM,02/10/2016 09:20:59 AM,02/10/2016 09:46:33 AM,02/10/2016 10:08:44 AM,Code 2 Transport,02/10/2016 11:26:55 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7824182864419, -122.403869611535)",160410955-67 -160181280,62,16007200,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:38:56 AM,01/18/2016 11:39:37 AM,01/18/2016 11:39:56 AM,01/18/2016 11:40:27 AM,01/18/2016 11:45:53 AM,01/18/2016 12:01:58 PM,01/18/2016 12:38:47 PM,Code 2 Transport,01/18/2016 01:20:15 PM,300 Block of COUNTRY CLUB DR,San Francisco,94132,B08,19,8824,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Sunset/Parkside,"(37.7329008058597, -122.495408075928)",160181280-62 -133580143,KM12,13121671,Medical Incident,12/24/2013,12/24/2013,12/24/2013 10:20:02 AM,12/24/2013 10:21:42 AM,12/24/2013 10:22:03 AM,12/24/2013 10:22:47 AM,12/24/2013 10:26:13 AM,12/24/2013 10:58:36 AM,12/24/2013 11:10:26 AM,Code 2 Transport,12/24/2013 11:52:35 AM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",133580143-KM12 -160411981,59,16016475,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:42:03 PM,02/10/2016 01:42:47 PM,02/10/2016 01:43:33 PM,02/10/2016 01:43:39 PM,02/10/2016 01:49:15 PM,02/10/2016 02:01:55 PM,02/10/2016 02:05:58 PM,Code 2 Transport,02/10/2016 03:17:00 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160411981-59 -160544034,55,16021803,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:21:24 PM,02/23/2016 10:23:41 PM,02/23/2016 10:24:00 PM,02/23/2016 10:30:21 PM,02/23/2016 10:31:32 PM,02/23/2016 10:35:08 PM,02/23/2016 10:47:57 PM,Code 2 Transport,02/23/2016 11:15:27 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160544034-55 -103570077,55,10114487,Medical Incident,12/23/2010,12/22/2010,12/23/2010 07:17:15 AM,12/23/2010 07:18:02 AM,12/23/2010 07:18:40 AM,12/23/2010 07:18:51 AM,12/23/2010 07:47:34 AM,12/23/2010 07:47:39 AM,12/23/2010 07:47:43 AM,Code 2 Transport,12/23/2010 08:10:19 AM,1100 Block of TURK ST,SF,94115,B02,5,3426,E,E,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",103570077-55 -160810603,89,16032078,Medical Incident,03/21/2016,03/20/2016,03/21/2016 07:33:15 AM,03/21/2016 07:34:31 AM,03/21/2016 07:34:42 AM,03/21/2016 07:38:47 AM,03/21/2016 07:48:42 AM,03/21/2016 08:03:21 AM,03/21/2016 08:51:14 AM,Code 2 Transport,03/21/2016 09:21:19 AM,800 Block of SUNNYDALE AVE,San Francisco,94134,B09,44,6253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7101776912471, -122.410035415886)",160810603-89 -123380327,92,12112811,Medical Incident,12/03/2012,12/03/2012,12/03/2012 05:52:28 PM,12/03/2012 05:53:49 PM,12/03/2012 05:59:21 PM,12/03/2012 06:01:35 PM,12/03/2012 06:18:37 PM,12/03/2012 06:38:16 PM,12/03/2012 07:02:09 PM,Code 2 Transport,12/03/2012 07:32:59 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",123380327-92 -112530114,B07,11083408,Structure Fire,09/10/2011,09/10/2011,09/10/2011 09:02:59 AM,09/10/2011 09:03:44 AM,09/10/2011 09:04:03 AM,09/10/2011 09:05:32 AM,09/10/2011 09:10:36 AM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 09:20:27 AM,300 Block of 2ND AVE,SF,94118,B07,31,7116,3,3,3,false,,1,CHIEF,4,7,1,Inner Richmond,"(37.7821718692732, -122.460137520882)",112530114-B07 -140100227,E19,14003521,Traffic Collision,01/10/2014,01/10/2014,01/10/2014 01:47:33 PM,01/10/2014 01:49:51 PM,01/10/2014 01:51:31 PM,01/10/2014 01:51:53 PM,01/10/2014 01:58:28 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,No Merit,01/10/2014 02:08:20 PM,LAKE MERCED BL/STATE DR,SF,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",140100227-E19 -130260153,B03,13008954,Alarms,01/26/2013,01/26/2013,01/26/2013 11:30:35 AM,01/26/2013 11:32:00 AM,01/26/2013 11:32:12 AM,01/26/2013 11:32:38 AM,01/26/2013 11:37:46 AM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/26/2013 11:42:38 AM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",130260153-B03 -110830081,E03,11027202,Medical Incident,03/24/2011,03/23/2011,03/24/2011 07:53:19 AM,03/24/2011 07:54:19 AM,03/24/2011 07:55:17 AM,03/24/2011 07:57:26 AM,03/24/2011 08:01:37 AM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/24/2011 08:21:43 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",110830081-E03 -160781386,AM06,16030983,Medical Incident,03/18/2016,03/18/2016,03/18/2016 10:44:01 AM,03/18/2016 10:46:33 AM,03/18/2016 11:28:19 AM,03/18/2016 11:28:59 AM,03/18/2016 11:35:17 AM,03/18/2016 11:49:18 AM,03/18/2016 12:04:26 PM,Code 2 Transport,03/18/2016 12:50:15 PM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160781386-AM06 -120360382,T16,12012170,Gas Leak (Natural and LP Gases),02/05/2012,02/05/2012,02/05/2012 09:54:07 PM,02/05/2012 09:55:32 PM,02/05/2012 09:55:57 PM,02/05/2012 09:57:24 PM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/05/2012 10:12:26 PM,2800 Block of VAN NESS AVE,SF,94123,B04,16,3145,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.8017750305034, -122.424806563149)",120360382-T16 -160370503,53,16014546,Medical Incident,02/06/2016,02/05/2016,02/06/2016 02:45:28 AM,02/06/2016 02:45:28 AM,02/06/2016 02:45:50 AM,02/06/2016 02:46:01 AM,02/06/2016 02:59:00 AM,02/06/2016 03:07:20 AM,02/06/2016 03:17:43 AM,Code 2 Transport,02/06/2016 03:30:28 AM,3800 Block of ALEMANY BLVD,San Francisco,94132,B09,33,8412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7115186082108, -122.466572433425)",160370503-53 -102850123,E36,10090701,Medical Incident,10/12/2010,10/12/2010,10/12/2010 09:43:27 AM,10/12/2010 09:46:19 AM,10/12/2010 09:46:46 AM,10/12/2010 09:47:46 AM,10/12/2010 09:49:57 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 09:57:01 AM,600 Block of MCALLISTER ST,SF,94102,B02,36,3215,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7797276571513, -122.422705150216)",102850123-E36 -122900059,99,12095870,Medical Incident,10/16/2012,10/15/2012,10/16/2012 05:01:56 AM,10/16/2012 05:03:09 AM,10/16/2012 05:03:33 AM,10/16/2012 05:03:51 AM,10/16/2012 05:19:15 AM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Patient Declined Transport,10/16/2012 05:51:10 AM,1500 Block of 27TH AVE,SF,94122,B08,18,7475,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7585246809255, -122.485302914204)",122900059-99 -122370159,AM04,12078490,Medical Incident,08/24/2012,08/24/2012,08/24/2012 01:27:14 PM,08/24/2012 01:28:47 PM,08/24/2012 01:29:06 PM,08/24/2012 01:30:18 PM,08/24/2012 01:39:50 PM,08/24/2012 01:51:03 PM,08/24/2012 02:19:14 PM,Code 2 Transport,08/24/2012 02:47:14 PM,3100 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7524180928571, -122.414623849785)",122370159-AM04 -110890374,E11,11029560,Traffic Collision,03/30/2011,03/30/2011,03/30/2011 09:21:35 PM,03/30/2011 09:23:05 PM,03/30/2011 09:23:20 PM,03/30/2011 09:24:08 PM,03/30/2011 09:26:25 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 09:37:26 PM,0 Block of TIFFANY AVE,SF,94110,B06,11,5611,3,3,3,true,,1,ENGINE,1,6,8,Bernal Heights,"(37.7452607746654, -122.421228786449)",110890374-E11 -160033195,62,16001381,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:09:13 PM,01/03/2016 10:09:13 PM,01/03/2016 10:09:46 PM,01/03/2016 10:11:12 PM,01/03/2016 10:13:02 PM,01/03/2016 10:16:37 PM,01/03/2016 10:34:42 PM,Code 3 Transport,01/03/2016 11:25:20 PM,19TH ST/FOLSOM ST,San Francisco,94110,B06,7,5432,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7604988732472, -122.414841891781)",160033195-62 -111070337,E36,11035537,Odor (Strange / Unknown),04/17/2011,04/17/2011,04/17/2011 11:22:01 PM,04/17/2011 11:26:22 PM,04/17/2011 11:26:36 PM,04/17/2011 11:28:13 PM,04/17/2011 11:29:40 PM,04/25/2016 02:05:03 PM,04/25/2016 02:05:03 PM,Other,04/17/2011 11:33:02 PM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7720650956074, -122.416549895826)",111070337-E36 -110050322,KM12,11001753,Medical Incident,01/05/2011,01/05/2011,01/05/2011 06:16:32 PM,01/05/2011 06:19:12 PM,01/05/2011 06:20:53 PM,01/05/2011 06:22:06 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/05/2011 06:22:14 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,false,,1,PRIVATE,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",110050322-KM12 -130380189,E02,13013000,Structure Fire,02/07/2013,02/07/2013,02/07/2013 01:25:48 PM,02/07/2013 01:25:48 PM,02/07/2013 01:26:00 PM,02/07/2013 01:26:57 PM,02/07/2013 01:27:38 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Fire,02/07/2013 01:28:08 PM,MASON ST/PACIFIC AV,SF,94133,B01,2,1416,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7962907638042, -122.411718940358)",130380189-E02 -160460485,57,16018402,Medical Incident,02/15/2016,02/14/2016,02/15/2016 04:56:22 AM,02/15/2016 04:57:19 AM,02/15/2016 04:57:28 AM,02/15/2016 04:57:36 AM,02/15/2016 04:57:36 AM,02/15/2016 05:04:43 AM,02/15/2016 05:15:03 AM,Code 2 Transport,02/15/2016 05:32:36 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160460485-57 -112200062,E01,11072603,Medical Incident,08/08/2011,08/08/2011,08/08/2011 08:02:50 AM,08/08/2011 08:05:24 AM,08/08/2011 08:05:53 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 08:07:10 AM,0 Block of ELLIS ST,SF,94102,B03,1,1322,1,1,2,true,,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7856720367472, -122.406852525575)",112200062-E01 -132520248,E12,13085232,Other,09/09/2013,09/09/2013,09/09/2013 03:51:27 PM,09/09/2013 03:52:59 PM,09/09/2013 03:53:29 PM,09/09/2013 03:54:42 PM,09/09/2013 03:56:59 PM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Fire,09/09/2013 04:29:55 PM,500 Block of PARNASSUS AVE,SF,94131,B05,12,7323,3,3,3,true,Alarm,1,ENGINE,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",132520248-E12 -160193565,AM18,16007807,Medical Incident,01/19/2016,01/19/2016,01/19/2016 09:39:34 PM,01/19/2016 09:39:34 PM,01/19/2016 09:40:02 PM,01/19/2016 09:40:32 PM,01/19/2016 09:43:36 PM,01/19/2016 09:53:16 PM,01/19/2016 10:16:35 PM,Code 2 Transport,01/19/2016 10:32:34 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160193565-AM18 -160552499,AM12,16022059,Medical Incident,02/24/2016,02/24/2016,02/24/2016 03:49:02 PM,02/24/2016 03:49:30 PM,02/24/2016 03:50:02 PM,02/24/2016 03:50:14 PM,02/24/2016 03:53:38 PM,02/24/2016 04:13:48 PM,02/24/2016 04:36:55 PM,Code 2 Transport,02/24/2016 04:56:41 PM,600 Block of FOLSOM ST,San Francisco,94105,B03,1,2176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7842647352821, -122.398419741529)",160552499-AM12 -110480332,E01,11015991,Medical Incident,02/17/2011,02/17/2011,02/17/2011 08:20:20 PM,02/17/2011 08:21:18 PM,02/17/2011 08:22:02 PM,02/17/2011 08:23:08 PM,02/17/2011 08:26:00 PM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 08:33:06 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",110480332-E01 -160230712,55,16009069,Medical Incident,01/23/2016,01/22/2016,01/23/2016 06:47:42 AM,01/23/2016 06:50:14 AM,01/23/2016 06:51:05 AM,01/23/2016 06:51:16 AM,01/23/2016 07:09:12 AM,01/23/2016 07:38:54 AM,01/23/2016 08:12:57 AM,Code 2 Transport,01/23/2016 09:07:32 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160230712-55 -130630229,T07,13021122,Structure Fire,03/04/2013,03/04/2013,03/04/2013 01:56:29 PM,03/04/2013 01:56:37 PM,03/04/2013 01:57:03 PM,03/04/2013 01:58:22 PM,03/04/2013 02:00:23 PM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 02:11:58 PM,3500 Block of 17TH ST,SF,94110,B02,6,5251,3,3,3,false,Alarm,1,TRUCK,6,2,8,Mission,"(37.7630445848394, -122.425088617925)",130630229-T07 -112120382,99,11070130,Traffic Collision,07/31/2011,07/31/2011,07/31/2011 11:07:43 PM,07/31/2011 11:08:20 PM,07/31/2011 11:08:35 PM,07/31/2011 11:09:05 PM,07/31/2011 11:14:54 PM,07/31/2011 11:19:19 PM,07/31/2011 11:38:06 PM,Code 2 Transport,07/31/2011 11:55:19 PM,GEARY BL/4TH AV,SF,94118,B07,31,7116,3,3,3,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.781110995698, -122.462139277182)",112120382-99 -121680125,E36,12055690,Medical Incident,06/16/2012,06/16/2012,06/16/2012 09:23:54 AM,06/16/2012 09:25:41 AM,06/16/2012 09:26:51 AM,06/16/2012 09:32:51 AM,06/16/2012 09:39:48 AM,04/25/2016 01:58:11 PM,04/25/2016 01:58:11 PM,Other,06/16/2012 10:30:32 AM,600 Block of VAN NESS AVE,SF,94102,B02,36,3164,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.78147394156, -122.42068958116)",121680125-E36 -111670111,E02,11055067,Medical Incident,06/16/2011,06/16/2011,06/16/2011 11:17:40 AM,06/16/2011 11:18:38 AM,06/16/2011 11:19:27 AM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/16/2011 11:21:15 AM,600 Block of JACKSON ST,SF,94108,B01,2,1312,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.796045564581, -122.406033060722)",111670111-E02 -160910191,KM03,16035937,Medical Incident,03/31/2016,03/30/2016,03/31/2016 01:41:42 AM,03/31/2016 01:46:03 AM,03/31/2016 01:46:27 AM,03/31/2016 01:47:05 AM,03/31/2016 01:55:45 AM,03/31/2016 02:06:29 AM,03/31/2016 02:12:46 AM,Code 2 Transport,03/31/2016 02:51:14 AM,1700 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",160910191-KM03 -111160168,KM02,11038265,Medical Incident,04/26/2011,04/26/2011,04/26/2011 12:06:23 PM,04/26/2011 12:07:06 PM,04/26/2011 12:07:43 PM,04/26/2011 12:08:31 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 12:17:27 PM,1700 Block of 44TH AVE,SF,94122,B08,23,7651,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7539955074466, -122.503258318497)",111160168-KM02 -113630055,57,11120491,Medical Incident,12/29/2011,12/28/2011,12/29/2011 07:21:25 AM,12/29/2011 07:21:56 AM,12/29/2011 07:22:01 AM,12/29/2011 07:25:46 AM,12/29/2011 07:34:16 AM,12/29/2011 07:48:38 AM,12/29/2011 08:13:31 AM,Code 2 Transport,12/29/2011 07:26:49 AM,0 Block of SUTTER ST,SF,94104,B01,13,1164,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7902143401629, -122.400344691288)",113630055-57 -130250085,E09,13008558,Medical Incident,01/25/2013,01/25/2013,01/25/2013 08:19:04 AM,01/25/2013 08:20:14 AM,01/25/2013 08:26:42 AM,01/25/2013 08:28:26 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/25/2013 08:28:52 AM,0 Block of WATCHMAN WAY,SF,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7553520145946, -122.395257871762)",130250085-E09 -160641380,AM10,16025459,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:43:08 AM,03/04/2016 10:44:45 AM,03/04/2016 10:45:40 AM,03/04/2016 10:46:59 AM,03/04/2016 11:05:31 AM,03/04/2016 11:24:15 AM,03/04/2016 11:32:41 AM,Code 2 Transport,03/04/2016 12:10:34 PM,0 Block of JUSTIN DR,San Francisco,94110,B06,32,5641,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7341616600707, -122.422534504294)",160641380-AM10 -160891610,88,16035319,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:57:13 AM,03/29/2016 11:57:13 AM,03/29/2016 11:57:27 AM,03/29/2016 11:58:01 AM,03/29/2016 12:05:17 PM,03/29/2016 12:14:42 PM,03/29/2016 12:49:19 PM,Code 2 Transport,03/29/2016 01:24:24 PM,ILLINOIS ST/25TH ST,San Francisco,94107,B10,25,2611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7528903784862, -122.386811649355)",160891610-88 -130040118,E19,13001301,Medical Incident,01/04/2013,01/04/2013,01/04/2013 09:20:24 AM,01/04/2013 09:21:22 AM,01/04/2013 09:21:37 AM,01/04/2013 09:24:31 AM,01/04/2013 09:26:47 AM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 09:36:54 AM,300 Block of MONTICELLO ST,SF,94132,B09,19,8447,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7206411715909, -122.470834659184)",130040118-E19 -132380272,E13,13080365,Citizen Assist / Service Call,08/26/2013,08/26/2013,08/26/2013 04:34:58 PM,08/26/2013 04:36:24 PM,08/26/2013 04:36:31 PM,08/26/2013 04:37:29 PM,08/26/2013 04:40:09 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 04:54:16 PM,SANSOME ST/BUSH ST,SF,94104,B01,13,1165,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7911771722795, -122.400744022695)",132380272-E13 -160252669,67,16010021,Medical Incident,01/25/2016,01/25/2016,01/25/2016 04:49:00 PM,01/25/2016 04:49:18 PM,01/25/2016 04:49:42 PM,01/25/2016 04:50:56 PM,01/25/2016 04:58:22 PM,01/25/2016 05:10:02 PM,01/25/2016 05:34:43 PM,Code 2 Transport,01/25/2016 06:01:10 PM,1000 Block of BRYANT ST,San Francisco,94103,B03,29,2324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7716586752225, -122.407967687961)",160252669-67 -130670090,E01,13022254,Medical Incident,03/08/2013,03/08/2013,03/08/2013 08:50:40 AM,03/08/2013 08:51:40 AM,03/08/2013 08:52:09 AM,03/08/2013 08:52:13 AM,03/08/2013 08:58:01 AM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,Other,03/08/2013 09:02:56 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",130670090-E01 -121430029,T14,12047415,Structure Fire,05/22/2012,05/21/2012,05/22/2012 02:55:38 AM,05/22/2012 02:55:38 AM,05/22/2012 02:57:12 AM,05/22/2012 02:59:12 AM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 03:01:43 AM,43RD AV/CABRILLO ST,SF,94121,B07,34,7271,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7735543246091, -122.503608585374)",121430029-T14 -102440151,B02,10076950,Alarms,09/01/2010,09/01/2010,09/01/2010 10:52:32 AM,09/01/2010 10:53:49 AM,09/01/2010 10:54:10 AM,09/01/2010 10:54:56 AM,09/01/2010 11:03:14 AM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Fire,09/01/2010 11:03:46 AM,1300 Block of GROVE ST,SF,94117,B05,21,4146,3,3,3,false,,1,CHIEF,3,5,5,Hayes Valley,"(37.7758737369893, -122.438834116222)",102440151-B02 -160800139,79,16031647,Medical Incident,03/20/2016,03/19/2016,03/20/2016 12:41:51 AM,03/20/2016 12:42:53 AM,03/20/2016 12:43:15 AM,03/20/2016 12:43:28 AM,03/20/2016 12:58:35 AM,03/20/2016 01:12:42 AM,03/20/2016 01:25:03 AM,Code 2 Transport,03/20/2016 02:18:43 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",160800139-79 -121920038,67,12063795,Medical Incident,07/10/2012,07/09/2012,07/10/2012 04:09:12 AM,07/10/2012 04:13:26 AM,07/10/2012 04:14:46 AM,04/25/2016 01:57:47 PM,07/10/2012 04:16:14 AM,07/10/2012 04:22:02 AM,07/10/2012 04:49:35 AM,Other,07/10/2012 05:16:49 AM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",121920038-67 -140160361,T01,14005623,Alarms,01/16/2014,01/16/2014,01/16/2014 07:59:35 PM,01/16/2014 08:00:32 PM,01/16/2014 08:00:58 PM,01/16/2014 08:02:38 PM,01/16/2014 08:05:37 PM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,Other,01/16/2014 08:09:06 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",140160361-T01 -111170245,75,11038669,Medical Incident,04/27/2011,04/27/2011,04/27/2011 04:01:20 PM,04/27/2011 04:03:40 PM,04/27/2011 04:05:54 PM,04/27/2011 04:06:55 PM,04/27/2011 04:12:42 PM,04/27/2011 04:21:19 PM,04/27/2011 04:29:28 PM,Code 2 Transport,04/27/2011 04:56:34 PM,200 Block of STANYAN ST,SF,94118,B07,21,4557,2,2,2,true,,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7766831964988, -122.454982834151)",111170245-75 -120930131,KM01,12030760,Medical Incident,04/02/2012,04/02/2012,04/02/2012 10:57:14 AM,04/02/2012 10:59:40 AM,04/02/2012 11:00:15 AM,04/02/2012 11:01:59 AM,04/02/2012 11:07:22 AM,04/02/2012 11:29:10 AM,04/02/2012 11:41:21 AM,Code 2 Transport,04/02/2012 12:13:16 PM,600 Block of JACKSON ST,SF,94108,B01,2,1312,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.796045564581, -122.406033060722)",120930131-KM01 -111530219,E51,11050605,Medical Incident,06/02/2011,06/02/2011,06/02/2011 03:47:59 PM,06/02/2011 03:48:30 PM,06/02/2011 03:49:19 PM,06/02/2011 03:51:04 PM,06/02/2011 03:52:05 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/02/2011 04:03:48 PM,1100 Block of GORGAS AVE,PR,94129,B99,51,4633,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8013852174477, -122.44962260299)",111530219-E51 -160483655,60,16019512,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:36:16 PM,02/17/2016 08:37:01 PM,02/17/2016 08:37:24 PM,02/17/2016 08:38:02 PM,02/17/2016 08:44:01 PM,02/17/2016 09:13:24 PM,02/17/2016 09:16:42 PM,Code 2 Transport,02/17/2016 09:53:59 PM,100 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7524546394883, -122.421643731762)",160483655-60 -132350032,55,13079195,Medical Incident,08/23/2013,08/22/2013,08/23/2013 03:09:27 AM,08/23/2013 03:10:28 AM,08/23/2013 03:10:41 AM,08/23/2013 03:11:30 AM,08/23/2013 03:20:33 AM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,08/23/2013 03:29:15 AM,400 Block of 15TH AVE,SF,94118,B07,31,7154,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7796175741202, -122.473838626607)",132350032-55 -160613609,84,16024503,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:30:03 PM,03/01/2016 10:31:02 PM,03/01/2016 10:32:30 PM,03/01/2016 10:32:50 PM,03/01/2016 10:47:52 PM,03/01/2016 11:09:17 PM,03/01/2016 11:38:49 PM,Code 2 Transport,03/02/2016 12:13:17 AM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160613609-84 -121930355,78,12064390,Medical Incident,07/11/2012,07/11/2012,07/11/2012 10:40:46 PM,07/11/2012 10:42:49 PM,07/11/2012 10:45:57 PM,07/11/2012 10:47:02 PM,07/11/2012 10:49:36 PM,07/11/2012 11:10:49 PM,07/11/2012 11:17:20 PM,Code 2 Transport,07/11/2012 11:51:46 PM,100 Block of CLINTON PARK,SF,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7692677111289, -122.423396856968)",121930355-78 -111840042,E01,11060657,Alarms,07/03/2011,07/02/2011,07/03/2011 02:22:41 AM,07/03/2011 02:24:09 AM,07/03/2011 02:24:19 AM,07/03/2011 02:25:40 AM,07/03/2011 02:26:48 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 02:36:58 AM,300 Block of 3RD ST,SF,94107,B03,1,2176,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7833526602624, -122.398485675312)",111840042-E01 -113420056,RS2,11113295,Structure Fire,12/08/2011,12/07/2011,12/08/2011 06:25:54 AM,12/08/2011 06:28:48 AM,12/08/2011 06:28:55 AM,12/08/2011 06:31:09 AM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/08/2011 06:36:42 AM,500 Block of BURNETT AVE,SF,94131,B06,24,5281,3,3,3,false,,1,RESCUE SQUAD,10,6,8,Twin Peaks,"(37.7522092988242, -122.444482891572)",113420056-RS2 -120220151,RS1,12007474,Structure Fire,01/22/2012,01/22/2012,01/22/2012 11:26:39 AM,01/22/2012 11:27:55 AM,01/22/2012 11:28:55 AM,01/22/2012 11:30:27 AM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/22/2012 11:46:59 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Fire,1,RESCUE SQUAD,8,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",120220151-RS1 -111840085,E44,11060698,Medical Incident,07/03/2011,07/03/2011,07/03/2011 07:57:39 AM,07/03/2011 08:00:16 AM,07/03/2011 08:00:51 AM,07/03/2011 08:01:54 AM,07/03/2011 08:06:34 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 08:17:58 AM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",111840085-E44 -131010052,E01,13033852,Medical Incident,04/11/2013,04/10/2013,04/11/2013 06:22:11 AM,04/11/2013 06:24:09 AM,04/11/2013 06:24:38 AM,04/11/2013 06:26:53 AM,04/11/2013 06:30:47 AM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Unable to Locate,04/11/2013 06:32:00 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7832777786539, -122.409831752766)",131010052-E01 -140600227,54,14020293,Medical Incident,03/01/2014,03/01/2014,03/01/2014 03:08:16 PM,03/01/2014 03:08:51 PM,03/01/2014 03:09:09 PM,03/01/2014 03:09:17 PM,03/01/2014 03:23:46 PM,04/25/2016 01:47:57 PM,03/01/2014 03:47:45 PM,Code 2 Transport,03/01/2014 04:22:51 PM,3100 Block of DIVISADERO ST,SF,94123,B04,16,4166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7985647213485, -122.442489560521)",140600227-54 -130350395,E12,13012164,Medical Incident,02/04/2013,02/04/2013,02/04/2013 08:34:05 PM,02/04/2013 08:34:53 PM,02/04/2013 08:36:28 PM,02/04/2013 08:37:28 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/04/2013 08:42:57 PM,500 Block of CASTRO ST,SF,94114,B06,6,5437,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,6,8,Castro/Upper Market,"(37.7600930498172, -122.434858190165)",130350395-E12 -110760262,E01,11025037,Structure Fire,03/17/2011,03/17/2011,03/17/2011 03:17:36 PM,03/17/2011 03:17:36 PM,03/17/2011 03:18:09 PM,04/25/2016 02:05:35 PM,03/17/2011 03:20:46 PM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 03:21:20 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",110760262-E01 -110210344,RS2,11007094,Medical Incident,01/21/2011,01/21/2011,01/21/2011 10:43:15 PM,01/21/2011 10:44:51 PM,01/21/2011 10:45:35 PM,01/21/2011 10:46:20 PM,01/21/2011 10:48:47 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/21/2011 10:50:30 PM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,false,,1,RESCUE SQUAD,1,6,9,Mission,"(37.752766726673, -122.410519781929)",110210344-RS2 -140910241,KM14,14030656,Medical Incident,04/01/2014,04/01/2014,04/01/2014 05:33:58 PM,04/01/2014 05:34:41 PM,04/01/2014 05:37:21 PM,04/01/2014 05:39:23 PM,04/01/2014 05:45:08 PM,04/01/2014 06:03:15 PM,04/01/2014 06:15:58 PM,Other,04/01/2014 06:28:20 PM,EDDY ST/TAYLOR ST,SAN FRANCISCO,94102,B03,1,1453,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",140910241-KM14 -113380029,E26,11111872,Alarms,12/04/2011,12/03/2011,12/04/2011 01:46:09 AM,12/04/2011 01:47:44 AM,12/04/2011 01:47:49 AM,12/04/2011 01:49:22 AM,12/04/2011 01:52:20 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/04/2011 01:59:24 AM,0 Block of WILDER ST,SF,94131,B06,26,8146,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7340899662655, -122.433410011879)",113380029-E26 -140710349,E06,14024102,Gas Leak (Natural and LP Gases),03/12/2014,03/12/2014,03/12/2014 07:11:05 PM,03/12/2014 07:12:27 PM,03/12/2014 07:12:42 PM,03/12/2014 07:13:38 PM,03/12/2014 07:15:49 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Fire,03/12/2014 07:29:11 PM,0 Block of BEAVER ST,SAN FRANCISCO,94114,B05,6,5233,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7650483291206, -122.434292441696)",140710349-E06 -121310345,77,12043718,Medical Incident,05/10/2012,05/10/2012,05/10/2012 09:15:35 PM,05/10/2012 09:18:34 PM,05/10/2012 09:18:53 PM,05/10/2012 09:19:18 PM,05/10/2012 09:29:05 PM,05/10/2012 09:49:07 PM,05/10/2012 09:54:51 PM,Code 2 Transport,05/10/2012 10:26:10 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",121310345-77 -160453415,58,16018319,Medical Incident,02/14/2016,02/14/2016,02/14/2016 10:16:57 PM,02/14/2016 10:17:26 PM,02/14/2016 10:17:34 PM,02/14/2016 10:17:46 PM,02/14/2016 10:23:04 PM,02/14/2016 10:36:53 PM,02/14/2016 10:45:58 PM,Code 3 Transport,02/14/2016 11:33:31 PM,700 Block of 21ST AVE,San Francisco,94121,B07,14,7167,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7736958053498, -122.480041380237)",160453415-58 -160102071,AM16,16004083,Medical Incident,01/10/2016,01/10/2016,01/10/2016 03:08:55 PM,01/10/2016 03:10:46 PM,01/10/2016 03:12:23 PM,01/10/2016 03:12:47 PM,01/10/2016 03:24:51 PM,01/10/2016 03:37:02 PM,01/10/2016 03:50:52 PM,Code 2 Transport,01/10/2016 04:13:51 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7765080370233, -122.414457764634)",160102071-AM16 -113470382,84,11115286,Medical Incident,12/13/2011,12/13/2011,12/13/2011 09:51:16 PM,12/13/2011 09:53:03 PM,12/13/2011 09:59:41 PM,12/13/2011 10:05:00 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,Other,12/13/2011 10:05:47 PM,200 Block of CAMERON WAY,SF,94124,B10,17,6613,2,2,2,true,,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.720440433346, -122.388366313776)",113470382-84 -160782740,82,16031091,Medical Incident,03/18/2016,03/18/2016,03/18/2016 04:55:08 PM,03/18/2016 04:58:10 PM,03/18/2016 04:59:41 PM,03/18/2016 04:59:51 PM,03/18/2016 05:02:41 PM,03/18/2016 05:10:22 PM,03/18/2016 05:28:37 PM,Code 2 Transport,03/18/2016 05:52:23 PM,RINGOLD ST/8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7745521642917, -122.409519522231)",160782740-82 -112000302,93,11066048,Medical Incident,07/19/2011,07/19/2011,07/19/2011 07:05:19 PM,07/19/2011 07:06:04 PM,07/19/2011 07:07:08 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/19/2011 07:08:18 PM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,true,,1,MEDIC,5,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",112000302-93 -111950206,T01,11064391,Alarms,07/14/2011,07/14/2011,07/14/2011 02:37:11 PM,07/14/2011 02:38:05 PM,07/14/2011 02:38:21 PM,07/14/2011 02:41:02 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 02:43:19 PM,600 Block of THE EMBARCADERO,SF,94111,B03,35,936,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",111950206-T01 -102650058,86,10083781,Medical Incident,09/22/2010,09/21/2010,09/22/2010 07:30:34 AM,09/22/2010 07:32:50 AM,09/22/2010 07:36:40 AM,09/22/2010 07:37:05 AM,09/22/2010 07:44:14 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Unable to Locate,09/22/2010 07:51:09 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",102650058-86 -130810243,E11,13027163,Medical Incident,03/22/2013,03/22/2013,03/22/2013 04:28:28 PM,03/22/2013 04:29:39 PM,03/22/2013 04:30:23 PM,03/22/2013 04:32:21 PM,03/22/2013 04:33:06 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 04:41:58 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.749836317622, -122.418280538883)",130810243-E11 -102330318,E08,10073468,Medical Incident,08/21/2010,08/21/2010,08/21/2010 11:52:27 PM,08/21/2010 11:53:14 PM,08/21/2010 11:53:38 PM,08/21/2010 11:55:22 PM,08/21/2010 11:58:06 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/21/2010 11:58:34 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7801303744947, -122.409871449933)",102330318-E08 -110780335,E14,11025798,Traffic Collision,03/19/2011,03/19/2011,03/19/2011 09:08:49 PM,03/19/2011 09:08:49 PM,03/19/2011 09:13:58 PM,03/19/2011 09:14:49 PM,03/19/2011 09:16:48 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 09:30:42 PM,25TH AV/BALBOA ST,SF,94121,B07,14,7212,2,2,2,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7763021660202, -122.484460651611)",110780335-E14 -133280302,T12,13111572,Structure Fire,11/24/2013,11/24/2013,11/24/2013 08:31:10 PM,11/24/2013 08:31:42 PM,11/24/2013 08:31:53 PM,11/24/2013 08:33:21 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 08:44:51 PM,1100 Block of PAGE ST,SF,94117,B05,21,4251,3,3,3,false,Alarm,1,TRUCK,8,5,5,Haight Ashbury,"(37.7719389863749, -122.439733696285)",133280302-T12 -110970229,65,11032175,Medical Incident,04/07/2011,04/07/2011,04/07/2011 01:39:43 PM,04/07/2011 01:41:59 PM,04/07/2011 01:43:05 PM,04/07/2011 01:43:19 PM,04/07/2011 01:46:40 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,No Merit,04/07/2011 01:49:05 PM,VAN NESS AV/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,,1,MEDIC,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",110970229-65 -103440390,94,10110382,Traffic Collision,12/10/2010,12/10/2010,12/10/2010 09:10:27 PM,12/10/2010 09:10:27 PM,12/10/2010 09:11:30 PM,12/10/2010 09:11:51 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,No Merit,12/10/2010 09:13:56 PM,500 Block of 6TH ST,SF,94103,B03,8,2256,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7753853083573, -122.401801880226)",103440390-94 -122380083,E17,12078760,Medical Incident,08/25/2012,08/24/2012,08/25/2012 07:32:52 AM,08/25/2012 07:34:28 AM,08/25/2012 07:35:59 AM,08/25/2012 07:37:20 AM,08/25/2012 07:39:13 AM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 07:59:32 AM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7290589753437, -122.385447178388)",122380083-E17 -120810256,D3,12026941,Structure Fire,03/21/2012,03/21/2012,03/21/2012 03:22:23 PM,03/21/2012 03:22:47 PM,03/21/2012 03:23:04 PM,03/21/2012 03:24:44 PM,03/21/2012 03:33:47 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 04:22:56 PM,2000 Block of TARAVAL ST,SF,94116,B08,18,7522,3,3,3,false,Fire,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7425630700828, -122.488015677623)",120810256-D3 -160752832,53,16029801,Medical Incident,03/15/2016,03/15/2016,03/15/2016 05:01:17 PM,03/15/2016 05:03:16 PM,03/15/2016 05:03:54 PM,03/15/2016 05:04:09 PM,03/15/2016 05:10:20 PM,03/15/2016 05:30:03 PM,03/15/2016 05:36:05 PM,Code 2 Transport,03/15/2016 06:29:00 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160752832-53 -160880937,AM28,16034869,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:00:05 AM,03/28/2016 09:00:38 AM,03/28/2016 09:01:25 AM,03/28/2016 09:01:29 AM,03/28/2016 09:08:24 AM,03/28/2016 09:27:35 AM,03/28/2016 09:32:56 AM,Code 2 Transport,03/28/2016 09:56:11 AM,100 Block of CORTLAND AVE,San Francisco,94110,B06,32,5652,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Bernal Heights,"(37.7398228694927, -122.420029084534)",160880937-AM28 -160552375,74,16022053,Medical Incident,02/24/2016,02/24/2016,02/24/2016 03:15:21 PM,02/24/2016 03:16:52 PM,02/24/2016 03:17:07 PM,02/24/2016 03:17:07 PM,02/24/2016 03:29:07 PM,02/24/2016 03:40:35 PM,02/24/2016 03:51:27 PM,Code 2 Transport,02/24/2016 04:10:14 PM,"LINCOLN BL/GRAHAM ST, PR",Presidio,94129,B99,51,4612,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.801503377222, -122.456178490518)",160552375-74 -132050344,E24,13069550,Medical Incident,07/24/2013,07/24/2013,07/24/2013 08:16:12 PM,07/24/2013 08:16:31 PM,07/24/2013 08:17:15 PM,07/24/2013 08:18:41 PM,07/24/2013 08:20:38 PM,04/25/2016 01:51:39 PM,04/25/2016 01:51:39 PM,Other,07/24/2013 08:33:54 PM,500 Block of HILL ST,SF,94114,B06,24,5466,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7554105525414, -122.433367007382)",132050344-E24 -102300044,65,10072286,Medical Incident,08/18/2010,08/17/2010,08/18/2010 06:13:32 AM,08/18/2010 06:15:04 AM,08/18/2010 06:15:24 AM,08/18/2010 06:15:46 AM,08/18/2010 06:29:36 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Gone on Arrival,08/18/2010 06:33:05 AM,900 Block of LARKIN ST,SF,94109,B04,3,1641,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7863419196668, -122.418065082006)",102300044-65 -112590221,59,11085419,Medical Incident,09/16/2011,09/16/2011,09/16/2011 01:56:56 PM,09/16/2011 01:59:11 PM,09/16/2011 02:01:03 PM,09/16/2011 02:01:16 PM,09/16/2011 02:12:07 PM,09/16/2011 02:37:47 PM,09/16/2011 03:10:03 PM,Code 2 Transport,09/16/2011 03:26:32 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",112590221-59 -160461478,59,16018492,Medical Incident,02/15/2016,02/15/2016,02/15/2016 12:06:50 PM,02/15/2016 12:07:57 PM,02/15/2016 12:09:32 PM,02/15/2016 12:09:57 PM,02/15/2016 12:18:57 PM,02/15/2016 12:39:03 PM,02/15/2016 01:10:16 PM,Code 2 Transport,02/15/2016 01:33:10 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.765718993574, -122.409520691153)",160461478-59 -133510359,94,13119335,Medical Incident,12/17/2013,12/17/2013,12/17/2013 06:25:51 PM,12/17/2013 06:28:45 PM,12/17/2013 06:34:16 PM,12/17/2013 06:34:24 PM,12/17/2013 06:41:20 PM,12/17/2013 07:03:21 PM,12/17/2013 07:37:10 PM,Code 2 Transport,12/17/2013 08:07:10 PM,4400 Block of 3RD ST,SF,94124,B10,25,6467,2,2,2,false,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",133510359-94 -110400237,E01,11013279,Medical Incident,02/09/2011,02/09/2011,02/09/2011 02:32:22 PM,02/09/2011 02:33:17 PM,02/09/2011 02:33:43 PM,02/09/2011 02:35:35 PM,02/09/2011 02:39:46 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 02:44:12 PM,900 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7871735250079, -122.417641342653)",110400237-E01 -123520162,E01,12117721,Citizen Assist / Service Call,12/17/2012,12/17/2012,12/17/2012 11:32:55 AM,12/17/2012 11:33:37 AM,12/17/2012 11:33:56 AM,12/17/2012 11:34:19 AM,12/17/2012 11:39:25 AM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 11:40:44 AM,0 Block of 2ND ST,SF,94105,B03,1,2144,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7885900724805, -122.40062712039)",123520162-E01 -140220287,B10,14007605,Structure Fire,01/22/2014,01/22/2014,01/22/2014 06:01:41 PM,01/22/2014 06:02:31 PM,01/22/2014 06:02:49 PM,01/22/2014 06:03:04 PM,01/22/2014 06:05:53 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/22/2014 06:13:59 PM,1000 Block of OAKDALE AVE,SF,94124,B10,17,6647,A,A,2,false,Alarm,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7288155676841, -122.380327013416)",140220287-B10 -121080270,E13,12035831,Traffic Collision,04/17/2012,04/17/2012,04/17/2012 05:46:36 PM,04/17/2012 05:46:49 PM,04/17/2012 05:47:08 PM,04/17/2012 05:48:32 PM,04/17/2012 05:49:25 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/17/2012 05:58:07 PM,SANSOME ST/CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7930602991213, -122.401126343901)",121080270-E13 -131510323,E03,13051248,Medical Incident,05/31/2013,05/31/2013,05/31/2013 06:29:54 PM,05/31/2013 06:30:17 PM,05/31/2013 06:33:07 PM,04/25/2016 01:52:31 PM,05/31/2013 06:35:35 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 06:37:35 PM,GROVE ST/HYDE ST,SF,94103,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",131510323-E03 -160602850,56,16024019,Medical Incident,02/29/2016,02/29/2016,02/29/2016 06:14:17 PM,02/29/2016 06:14:54 PM,02/29/2016 06:16:46 PM,02/29/2016 06:16:54 PM,02/29/2016 06:27:32 PM,02/29/2016 07:15:15 PM,02/29/2016 07:15:18 PM,Code 2 Transport,02/29/2016 07:40:55 PM,1300 Block of 47TH AVE,San Francisco,94122,B08,23,7721,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.761310398748, -122.506995622889)",160602850-56 -140570357,E28,14019367,Structure Fire,02/26/2014,02/26/2014,02/26/2014 07:43:01 PM,02/26/2014 07:44:25 PM,02/26/2014 07:45:34 PM,02/26/2014 07:46:18 PM,02/26/2014 07:47:43 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/26/2014 07:59:51 PM,400 Block of UNION ST,SF,94133,B01,28,1252,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8008450193266, -122.406384274278)",140570357-E28 -113360172,E03,11111216,Medical Incident,12/02/2011,12/02/2011,12/02/2011 10:36:17 AM,12/02/2011 10:37:40 AM,12/02/2011 10:37:58 AM,12/02/2011 10:39:12 AM,12/02/2011 10:45:25 AM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/02/2011 11:03:00 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",113360172-E03 -160854278,78,16034018,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:41:18 PM,03/25/2016 11:41:18 PM,03/25/2016 11:42:01 PM,03/25/2016 11:42:09 PM,03/25/2016 11:49:25 PM,03/26/2016 12:22:33 AM,03/26/2016 12:32:15 AM,Code 2 Transport,03/26/2016 01:36:58 AM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160854278-78 -140240204,T11,14008189,Gas Leak (Natural and LP Gases),01/24/2014,01/24/2014,01/24/2014 12:25:39 PM,01/24/2014 12:26:47 PM,01/24/2014 12:27:06 PM,01/24/2014 12:30:07 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/24/2014 12:32:46 PM,300 Block of BOCANA ST,SF,94110,B06,32,5742,,3,3,false,Alarm,1,TRUCK,3,6,9,Bernal Heights,"(37.7388924845152, -122.41876726644)",140240204-T11 -130760289,92,13025477,Medical Incident,03/17/2013,03/17/2013,03/17/2013 05:49:09 PM,03/17/2013 05:51:17 PM,03/17/2013 05:51:36 PM,03/17/2013 05:51:55 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 05:52:52 PM,DAVIS ST/WASHINGTON ST,SF,94111,B01,13,1116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7961860716176, -122.398152068472)",130760289-92 -110030222,T01,11001003,Medical Incident,01/03/2011,01/03/2011,01/03/2011 02:50:14 PM,01/03/2011 02:50:44 PM,01/03/2011 02:51:01 PM,01/03/2011 02:52:58 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 02:54:56 PM,200 Block of GEARY ST,SF,94108,B01,1,1323,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",110030222-T01 -123220098,T01,12106967,Structure Fire,11/17/2012,11/16/2012,11/17/2012 06:38:54 AM,11/17/2012 06:38:54 AM,11/17/2012 06:38:59 AM,11/17/2012 06:40:57 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/17/2012 06:41:12 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",123220098-T01 -131900011,E22,13064594,Medical Incident,07/09/2013,07/08/2013,07/09/2013 01:08:05 AM,07/09/2013 01:09:22 AM,07/09/2013 01:09:37 AM,07/09/2013 01:10:41 AM,07/09/2013 01:14:18 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 01:19:42 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",131900011-E22 -160230338,79,16009024,Medical Incident,01/23/2016,01/22/2016,01/23/2016 02:12:57 AM,01/23/2016 02:12:57 AM,01/23/2016 02:20:22 AM,01/23/2016 02:21:31 AM,01/23/2016 02:29:01 AM,01/23/2016 02:37:05 AM,01/23/2016 03:02:52 AM,Code 2 Transport,01/23/2016 03:48:15 AM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160230338-79 -160361907,64,16014253,Medical Incident,02/05/2016,02/05/2016,02/05/2016 12:47:56 PM,02/05/2016 12:50:24 PM,02/05/2016 12:51:05 PM,02/05/2016 12:51:15 PM,02/05/2016 12:59:58 PM,02/05/2016 01:35:00 PM,02/05/2016 02:21:40 PM,Code 2 Transport,02/05/2016 02:56:00 PM,2400 Block of 41ST AVE,San Francisco,94116,B08,18,7636,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7410783762927, -122.499127726885)",160361907-64 -111660195,AM02,11054800,Medical Incident,06/15/2011,06/15/2011,06/15/2011 01:21:53 PM,06/15/2011 01:23:03 PM,06/15/2011 01:28:03 PM,06/15/2011 01:29:09 PM,06/15/2011 01:35:30 PM,06/15/2011 01:44:08 PM,06/15/2011 02:02:37 PM,Code 2 Transport,06/15/2011 02:22:49 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",111660195-AM02 -121840322,89,12061414,Medical Incident,07/02/2012,07/02/2012,07/02/2012 08:23:53 PM,07/02/2012 08:24:47 PM,07/02/2012 08:25:20 PM,07/02/2012 08:25:46 PM,07/02/2012 08:29:58 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 09:10:01 PM,3000 Block of 25TH ST,SF,94110,B06,7,5533,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7511731433127, -122.410367728863)",121840322-89 -130840212,B09,13028070,Structure Fire,03/25/2013,03/25/2013,03/25/2013 02:27:26 PM,03/25/2013 02:27:27 PM,03/25/2013 02:28:10 PM,03/25/2013 02:30:58 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,Other,03/25/2013 02:36:41 PM,100 Block of EXCELSIOR AVE,SF,94112,B09,43,611,3,3,3,false,Alarm,1,CHIEF,3,9,11,Excelsior,"(37.7257265963084, -122.432419861004)",130840212-B09 -112530281,RC2,11083538,Medical Incident,09/10/2011,09/10/2011,09/10/2011 03:33:43 PM,09/10/2011 03:34:40 PM,09/10/2011 03:34:49 PM,04/25/2016 02:02:44 PM,09/10/2011 03:44:27 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 03:52:11 PM,200 Block of 26TH AVE,SF,94121,B07,14,7217,3,3,3,true,,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7847684584929, -122.486087154239)",112530281-RC2 -121300196,82,12043268,Medical Incident,05/09/2012,05/09/2012,05/09/2012 02:01:50 PM,05/09/2012 02:02:49 PM,05/09/2012 02:03:05 PM,05/09/2012 02:04:41 PM,05/09/2012 02:08:46 PM,05/09/2012 02:25:41 PM,05/09/2012 02:35:39 PM,Code 2 Transport,05/09/2012 03:04:56 PM,16TH ST/CAPP ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7651099559558, -122.418698427046)",121300196-82 -120640123,E25,12021090,Structure Fire,03/04/2012,03/04/2012,03/04/2012 09:31:31 AM,03/04/2012 09:35:55 AM,03/04/2012 09:36:03 AM,03/04/2012 09:37:00 AM,03/04/2012 09:39:07 AM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Other,03/04/2012 09:41:06 AM,1800 Block of 25TH ST,SF,94107,B10,37,2615,3,3,3,false,Fire,1,ENGINE,2,10,10,Potrero Hill,"(37.7521976465641, -122.397477711041)",120640123-E25 -130130283,KM04,13004519,Medical Incident,01/13/2013,01/13/2013,01/13/2013 04:31:45 PM,01/13/2013 04:31:45 PM,01/13/2013 04:32:11 PM,01/13/2013 04:33:03 PM,01/13/2013 04:35:51 PM,01/13/2013 04:54:59 PM,01/13/2013 05:06:18 PM,Code 2 Transport,01/13/2013 05:57:27 PM,BROADWAY/ROMOLO ST,SF,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.797920272656, -122.406231390351)",130130283-KM04 -120210183,B01,12007112,Gas Leak (Natural and LP Gases),01/21/2012,01/21/2012,01/21/2012 11:35:28 AM,01/21/2012 11:37:33 AM,01/21/2012 11:37:49 AM,01/21/2012 11:39:00 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 11:46:48 AM,800 Block of CALIFORNIA ST,SF,94108,B01,2,1356,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7922140838535, -122.408238372566)",120210183-B01 -111860371,E28,11061625,Structure Fire,07/05/2011,07/05/2011,07/05/2011 08:13:45 PM,07/05/2011 08:14:46 PM,07/05/2011 08:15:39 PM,07/05/2011 08:16:25 PM,07/05/2011 08:19:43 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 08:30:01 PM,1700 Block of LEAVENWORTH ST,SF,94109,B01,41,1534,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.7968145839692, -122.416953634734)",111860371-E28 -112260145,E17,11074641,Medical Incident,08/14/2011,08/14/2011,08/14/2011 12:03:18 PM,08/14/2011 12:04:11 PM,08/14/2011 12:04:31 PM,08/14/2011 12:05:17 PM,08/14/2011 12:06:47 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 12:17:58 PM,5400 Block of 3RD ST,SF,94124,B10,17,6536,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7280754569094, -122.392931662742)",112260145-E17 -160400333,65,16015884,Medical Incident,02/09/2016,02/08/2016,02/09/2016 04:30:02 AM,02/09/2016 04:30:02 AM,02/09/2016 04:30:45 AM,02/09/2016 04:30:50 AM,02/09/2016 04:33:04 AM,02/09/2016 04:57:28 AM,02/09/2016 05:02:28 AM,Code 2 Transport,02/09/2016 05:41:21 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160400333-65 -120640197,79,12021150,Medical Incident,03/04/2012,03/04/2012,03/04/2012 01:09:20 PM,03/04/2012 01:11:10 PM,03/04/2012 01:13:16 PM,03/04/2012 01:13:27 PM,03/04/2012 01:43:03 PM,03/04/2012 01:43:21 PM,03/04/2012 01:57:04 PM,Code 2 Transport,03/04/2012 02:31:44 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",120640197-79 -140800324,E21,14027154,Structure Fire,03/21/2014,03/21/2014,03/21/2014 08:08:57 PM,03/21/2014 08:10:19 PM,03/21/2014 08:11:16 PM,03/21/2014 08:12:19 PM,03/21/2014 08:13:43 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Fire,03/21/2014 08:16:08 PM,1400 Block of GOLDEN GATE AVE,SAN FRANCISCO,94115,B05,5,3625,3,3,3,false,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7793039657232, -122.434429450678)",140800324-E21 -131110194,E33,13037405,Medical Incident,04/21/2013,04/21/2013,04/21/2013 02:49:07 PM,04/21/2013 02:49:37 PM,04/21/2013 02:50:11 PM,04/21/2013 02:51:50 PM,04/21/2013 02:54:53 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 03:02:52 PM,200 Block of BYXBEE ST,SF,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7187705572293, -122.469775794648)",131110194-E33 -133390392,79,13115060,Medical Incident,12/05/2013,12/05/2013,12/05/2013 10:25:11 PM,12/05/2013 10:27:11 PM,12/05/2013 10:27:50 PM,12/05/2013 10:28:25 PM,12/05/2013 10:33:27 PM,12/05/2013 10:42:57 PM,12/05/2013 10:50:12 PM,Code 2 Transport,12/05/2013 11:10:24 PM,VAN NESS AV/CLAY ST,SF,94109,B04,41,3154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7921746447197, -122.4226941645)",133390392-79 -110080308,E18,11002788,Medical Incident,01/08/2011,01/08/2011,01/08/2011 07:50:48 PM,01/08/2011 07:51:14 PM,01/08/2011 07:51:27 PM,01/08/2011 07:52:37 PM,01/08/2011 07:55:44 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/08/2011 08:16:14 PM,2500 Block of 34TH AVE,SF,94116,B08,18,7554,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7395472638893, -122.491499679744)",110080308-E18 -123570122,T19,12119456,Alarms,12/22/2012,12/22/2012,12/22/2012 10:04:18 AM,12/22/2012 10:06:28 AM,12/22/2012 10:06:39 AM,12/22/2012 10:07:09 AM,12/22/2012 10:11:48 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 10:24:43 AM,300 Block of VICTORIA ST,SF,94132,B09,33,841,3,3,3,true,Alarm,1,TRUCK,2,9,11,Oceanview/Merced/Ingleside,"(37.7170173593096, -122.46540070392)",123570122-T19 -160692163,79,16027514,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:39:23 PM,03/09/2016 02:39:23 PM,03/09/2016 02:39:58 PM,03/09/2016 02:40:07 PM,03/09/2016 03:03:50 PM,03/09/2016 03:12:23 PM,03/09/2016 03:40:02 PM,Code 2 Transport,03/09/2016 04:04:10 PM,0 Block of LESSING ST,San Francisco,94112,B09,33,8357,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.708552084986, -122.455626998702)",160692163-79 -110120211,B07,11004003,Structure Fire,01/12/2011,01/12/2011,01/12/2011 02:07:18 PM,01/12/2011 02:07:26 PM,01/12/2011 02:07:41 PM,01/12/2011 02:08:28 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/12/2011 02:13:40 PM,4500 Block of ANZA ST,SF,94121,B07,34,725,3,3,3,false,,1,CHIEF,2,7,1,Outer Richmond,"(37.7775489727741, -122.496913014025)",110120211-B07 -131070075,T03,13035881,Structure Fire,04/17/2013,04/17/2013,04/17/2013 08:26:38 AM,04/17/2013 08:26:38 AM,04/17/2013 08:27:09 AM,04/17/2013 08:29:17 AM,04/25/2016 01:53:16 PM,04/25/2016 01:53:16 PM,04/25/2016 01:53:16 PM,Other,04/17/2013 08:30:31 AM,400 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,false,Alarm,1,TRUCK,2,1,3,Tenderloin,"(37.787297919885, -122.409833940233)",131070075-T03 -160350957,52,16013733,Medical Incident,02/04/2016,02/04/2016,02/04/2016 09:20:09 AM,02/04/2016 09:20:09 AM,02/04/2016 09:20:30 AM,02/04/2016 09:20:38 AM,02/04/2016 09:28:19 AM,02/04/2016 09:45:04 AM,02/04/2016 10:02:24 AM,Code 2 Transport,02/04/2016 11:12:04 AM,1200 Block of DOLORES ST,San Francisco,94110,B06,11,5536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7498423670065, -122.424811056864)",160350957-52 -160770102,63,16030413,Medical Incident,03/17/2016,03/16/2016,03/17/2016 12:32:11 AM,03/17/2016 12:38:25 AM,03/17/2016 12:40:00 AM,03/17/2016 12:40:11 AM,03/17/2016 12:58:46 AM,03/17/2016 01:07:03 AM,03/17/2016 01:12:58 AM,Code 2 Transport,03/17/2016 01:45:41 AM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",160770102-63 -160641691,52,16025502,Medical Incident,03/04/2016,03/04/2016,03/04/2016 12:11:46 PM,03/04/2016 12:13:25 PM,03/04/2016 12:13:42 PM,03/04/2016 12:13:49 PM,03/04/2016 12:26:47 PM,03/04/2016 12:49:36 PM,03/04/2016 01:16:42 PM,Code 2 Transport,03/04/2016 01:51:15 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B99,51,4616,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160641691-52 -130020078,E51,13000560,Medical Incident,01/02/2013,01/02/2013,01/02/2013 08:03:38 AM,01/02/2013 08:04:59 AM,01/02/2013 08:05:14 AM,01/02/2013 08:06:32 AM,01/02/2013 08:10:22 AM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 08:29:30 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",130020078-E51 -160561608,KM02,16022361,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:47:19 AM,02/25/2016 11:49:40 AM,02/25/2016 11:50:00 AM,02/25/2016 11:50:08 AM,02/25/2016 12:06:05 PM,02/25/2016 12:06:07 PM,02/25/2016 12:18:21 PM,Code 2 Transport,02/25/2016 12:47:37 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160561608-KM02 -112660139,T15,11087850,Alarms,09/23/2011,09/23/2011,09/23/2011 10:54:19 AM,09/23/2011 10:57:28 AM,09/23/2011 10:57:52 AM,09/23/2011 10:59:33 AM,09/23/2011 11:04:11 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 11:17:44 AM,300 Block of NAYLOR ST,SF,94112,B09,43,6233,3,3,3,false,,1,TRUCK,3,9,11,Excelsior,"(37.7095014922438, -122.432140574524)",112660139-T15 -160013387,70,16000478,Medical Incident,01/01/2016,01/01/2016,01/01/2016 07:59:56 PM,01/01/2016 08:01:18 PM,01/01/2016 08:02:46 PM,01/01/2016 08:02:59 PM,01/01/2016 08:25:58 PM,01/01/2016 08:37:06 PM,01/01/2016 08:44:48 PM,Code 2 Transport,01/01/2016 09:12:15 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,3,3,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160013387-70 -120130067,E05,12004345,Medical Incident,01/13/2012,01/12/2012,01/13/2012 07:27:27 AM,01/13/2012 07:28:17 AM,01/13/2012 07:28:27 AM,01/13/2012 07:29:15 AM,01/13/2012 07:32:16 AM,04/25/2016 02:00:39 PM,04/25/2016 02:00:39 PM,Other,01/13/2012 07:40:41 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",120130067-E05 -132800153,AM12,13095255,Medical Incident,10/07/2013,10/07/2013,10/07/2013 11:07:07 AM,10/07/2013 11:08:38 AM,10/07/2013 11:08:54 AM,10/07/2013 11:09:27 AM,10/07/2013 11:13:46 AM,10/07/2013 11:31:13 AM,10/07/2013 11:42:16 AM,Code 2 Transport,10/07/2013 12:13:00 PM,7TH ST/BRYANT ST,SF,94103,B03,8,2311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7742810407569, -122.404748493756)",132800153-AM12 -120110049,83,12003707,Medical Incident,01/11/2012,01/10/2012,01/11/2012 06:46:59 AM,01/11/2012 06:47:20 AM,01/11/2012 06:47:54 AM,01/11/2012 06:48:16 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 06:52:11 AM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",120110049-83 -130850063,T07,13028287,Alarms,03/26/2013,03/25/2013,03/26/2013 06:52:04 AM,03/26/2013 06:53:15 AM,03/26/2013 06:54:16 AM,03/26/2013 06:56:43 AM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 07:00:33 AM,1700 Block of HARRISON ST,SF,94103,B02,36,5112,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.769082767924, -122.413353472663)",130850063-T07 -140080242,E03,14002860,Medical Incident,01/08/2014,01/08/2014,01/08/2014 02:39:44 PM,01/08/2014 02:40:59 PM,01/08/2014 02:45:45 PM,01/08/2014 02:45:45 PM,01/08/2014 02:45:45 PM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/08/2014 02:53:37 PM,JONES ST/EDDY ST,SF,94102,B03,3,1461,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",140080242-E03 -112250093,T07,11074268,Structure Fire,08/13/2011,08/13/2011,08/13/2011 08:43:18 AM,08/13/2011 08:43:19 AM,08/13/2011 08:43:27 AM,08/13/2011 08:44:40 AM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 08:47:23 AM,23RD ST/FLORIDA ST,SF,94110,B06,7,5476,3,3,3,true,,1,TRUCK,2,6,9,Mission,"(37.7543406157026, -122.410219926643)",112250093-T07 -160410381,88,16016304,Medical Incident,02/10/2016,02/09/2016,02/10/2016 04:56:48 AM,02/10/2016 04:58:11 AM,02/10/2016 04:59:04 AM,02/10/2016 04:59:19 AM,02/10/2016 05:09:08 AM,02/10/2016 05:19:50 AM,02/10/2016 05:41:29 AM,Code 2 Transport,02/10/2016 06:11:33 AM,MAIN ST/FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7893692677435, -122.391858291445)",160410381-88 -113290228,E01,11109213,Medical Incident,11/25/2011,11/25/2011,11/25/2011 06:58:43 PM,11/25/2011 06:58:56 PM,11/25/2011 06:59:03 PM,11/25/2011 06:59:53 PM,11/25/2011 07:03:23 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 07:10:37 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",113290228-E01 -141000138,RS1,14033721,Medical Incident,04/10/2014,04/10/2014,04/10/2014 10:20:26 AM,04/10/2014 10:22:50 AM,04/10/2014 10:23:44 AM,04/10/2014 10:24:57 AM,04/10/2014 10:27:00 AM,04/25/2016 01:47:17 PM,04/25/2016 01:47:17 PM,Code 2 Transport,04/10/2014 10:29:51 AM,1200 Block of FOLSOM ST,SAN FRANCISCO,94103,B02,29,2322,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,South of Market,"(37.7743416410507, -122.410787635785)",141000138-RS1 -160390549,57,16015490,Medical Incident,02/08/2016,02/07/2016,02/08/2016 06:15:23 AM,02/08/2016 06:16:46 AM,02/08/2016 06:16:58 AM,02/08/2016 06:17:04 AM,02/08/2016 06:21:01 AM,02/08/2016 06:53:07 AM,02/08/2016 07:12:37 AM,Code 2 Transport,02/08/2016 08:00:47 AM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160390549-57 -140680237,E51,14023059,Alarms,03/09/2014,03/09/2014,03/09/2014 06:17:46 PM,03/09/2014 06:18:30 PM,03/09/2014 06:18:44 PM,03/09/2014 06:20:20 PM,03/09/2014 06:25:42 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Fire,03/09/2014 06:33:16 PM,900 Block of MARINE DR,,94129,B99,51,4628,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.8089767888005, -122.47460956271)",140680237-E51 -132210160,85,13074605,Medical Incident,08/09/2013,08/09/2013,08/09/2013 01:18:50 PM,08/09/2013 01:21:24 PM,08/09/2013 01:22:37 PM,08/09/2013 01:24:09 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 01:40:55 PM,ELLIS ST/TAYLOR ST,SF,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",132210160-85 -131480243,B07,13050216,Alarms,05/28/2013,05/28/2013,05/28/2013 02:31:29 PM,05/28/2013 02:32:23 PM,05/28/2013 02:32:44 PM,05/28/2013 02:34:06 PM,05/28/2013 02:38:42 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/28/2013 02:45:51 PM,0 Block of 25TH AVE,SF,94121,B07,14,7216,3,3,3,false,Alarm,1,CHIEF,2,7,2,Seacliff,"(37.7885162445141, -122.484799797447)",131480243-B07 -132790266,KM02,13094963,Medical Incident,10/06/2013,10/06/2013,10/06/2013 02:56:21 PM,10/06/2013 02:56:36 PM,10/06/2013 02:56:45 PM,10/06/2013 02:59:20 PM,10/06/2013 03:04:37 PM,10/06/2013 03:33:36 PM,10/06/2013 03:43:07 PM,Code 2 Transport,10/06/2013 04:20:23 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",132790266-KM02 -120790347,T10,12026366,Medical Incident,03/19/2012,03/19/2012,03/19/2012 07:58:35 PM,03/19/2012 08:00:15 PM,03/19/2012 08:01:15 PM,03/19/2012 08:18:16 PM,03/19/2012 08:23:57 PM,03/19/2012 09:15:28 PM,03/19/2012 09:15:50 PM,Other,03/19/2012 09:36:21 PM,600 Block of CENTRAL AVE,SF,94117,B05,21,4361,2,2,2,false,Non Life-threatening,1,TRUCK,3,5,5,Lone Mountain/USF,"(37.7755599914695, -122.444618039254)",120790347-T10 -111320042,88,11043510,Medical Incident,05/12/2011,05/11/2011,05/12/2011 04:08:42 AM,05/12/2011 04:09:44 AM,05/12/2011 04:10:04 AM,05/12/2011 04:11:11 AM,05/12/2011 04:13:31 AM,05/12/2011 04:29:40 AM,05/12/2011 04:43:02 AM,Code 2 Transport,05/12/2011 04:56:22 AM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2144,3,3,3,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",111320042-88 -132110072,AM02,13071284,Medical Incident,07/30/2013,07/30/2013,07/30/2013 08:53:01 AM,07/30/2013 08:55:12 AM,07/30/2013 08:55:22 AM,07/30/2013 08:56:28 AM,07/30/2013 09:03:35 AM,07/30/2013 09:19:29 AM,07/30/2013 09:32:24 AM,Code 2 Transport,07/30/2013 10:09:22 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",132110072-AM02 -102370406,E05,10074904,Medical Incident,08/25/2010,08/25/2010,08/25/2010 10:10:50 PM,08/25/2010 10:11:27 PM,08/25/2010 10:12:22 PM,08/25/2010 10:13:05 PM,08/25/2010 10:15:27 PM,08/25/2010 10:42:19 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 10:59:01 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",102370406-E05 -140480240,KM02,14016401,Medical Incident,02/17/2014,02/17/2014,02/17/2014 04:54:23 PM,02/17/2014 04:55:47 PM,02/17/2014 04:59:03 PM,02/17/2014 04:59:08 PM,02/17/2014 05:02:22 PM,02/17/2014 05:20:07 PM,02/17/2014 05:32:56 PM,Code 2 Transport,02/17/2014 06:05:27 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",140480240-KM02 -110070390,E43,11002502,Structure Fire,01/07/2011,01/07/2011,01/07/2011 10:18:28 PM,01/07/2011 10:18:28 PM,01/07/2011 10:19:05 PM,01/07/2011 10:20:03 PM,01/07/2011 10:21:40 PM,04/25/2016 02:06:42 PM,04/25/2016 02:06:42 PM,Other,01/07/2011 10:22:16 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",110070390-E43 -103260137,T01,10104445,Medical Incident,11/22/2010,11/22/2010,11/22/2010 11:44:56 AM,11/22/2010 11:45:15 AM,11/22/2010 11:45:35 AM,04/25/2016 02:07:29 PM,11/22/2010 11:48:21 AM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/22/2010 11:55:34 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,TRUCK,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",103260137-T01 -122200331,B10,12073099,Alarms,08/07/2012,08/07/2012,08/07/2012 10:29:06 PM,08/07/2012 10:30:45 PM,08/07/2012 10:30:51 PM,08/07/2012 10:32:30 PM,08/07/2012 10:35:05 PM,04/25/2016 01:57:20 PM,04/25/2016 01:57:20 PM,Other,08/07/2012 10:38:44 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Alarm,1,CHIEF,3,10,9,Potrero Hill,"(37.7572895904578, -122.406870402082)",122200331-B10 -130680234,89,13022712,Medical Incident,03/09/2013,03/09/2013,03/09/2013 02:39:54 PM,03/09/2013 02:41:04 PM,03/09/2013 02:41:27 PM,03/09/2013 02:41:50 PM,03/09/2013 02:46:36 PM,03/09/2013 02:56:56 PM,03/09/2013 03:33:16 PM,Code 2 Transport,03/09/2013 04:00:43 PM,200 Block of SILLIMAN ST,SF,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7306413240459, -122.407586652172)",130680234-89 -160170944,75,16006761,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:28:27 AM,01/17/2016 09:28:47 AM,01/17/2016 09:29:08 AM,01/17/2016 09:29:22 AM,01/17/2016 09:32:39 AM,01/17/2016 09:42:10 AM,01/17/2016 09:46:03 AM,Code 2 Transport,01/17/2016 10:22:22 AM,300 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.773615083674, -122.426539772799)",160170944-75 -130480272,E01,13016454,Alarms,02/17/2013,02/17/2013,02/17/2013 04:52:39 PM,02/17/2013 04:53:44 PM,02/17/2013 04:53:53 PM,02/17/2013 04:54:28 PM,02/17/2013 04:56:02 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 04:59:32 PM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,false,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",130480272-E01 -122060115,T11,12068430,Structure Fire,07/24/2012,07/24/2012,07/24/2012 09:50:18 AM,07/24/2012 09:50:19 AM,07/24/2012 09:50:29 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 09:52:27 AM,600 Block of DOUGLASS ST,SF,94114,B06,24,551,3,3,3,false,Alarm,1,TRUCK,3,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",122060115-T11 -132990382,79,13101764,Medical Incident,10/26/2013,10/26/2013,10/26/2013 10:33:07 PM,10/26/2013 10:33:50 PM,10/26/2013 10:34:15 PM,10/26/2013 10:34:22 PM,10/26/2013 10:41:33 PM,10/26/2013 11:02:19 PM,10/26/2013 11:22:12 PM,Code 2 Transport,10/26/2013 11:55:23 PM,1600 Block of BURROWS ST,SF,94134,B09,43,6151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7248899795012, -122.419403015501)",132990382-79 -160861486,KM04,16034149,Medical Incident,03/26/2016,03/26/2016,03/26/2016 11:54:47 AM,03/26/2016 11:57:41 AM,03/26/2016 12:00:16 PM,03/26/2016 12:00:41 PM,03/26/2016 12:37:23 PM,03/26/2016 12:47:26 PM,03/26/2016 01:06:38 PM,Code 3 Transport,03/26/2016 02:00:39 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",160861486-KM04 -123070065,55,12101914,Traffic Collision,11/02/2012,11/02/2012,11/02/2012 08:01:30 AM,11/02/2012 08:04:05 AM,11/02/2012 08:06:32 AM,11/02/2012 08:06:55 AM,11/02/2012 08:11:20 AM,11/02/2012 08:21:37 AM,11/02/2012 08:38:37 AM,Code 2 Transport,11/02/2012 09:12:56 AM,PAGE ST/SCOTT ST,SF,94117,B05,21,4141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7724179298954, -122.435563320266)",123070065-55 -131850185,AR1,13063060,Structure Fire,07/04/2013,07/04/2013,07/04/2013 01:25:09 PM,07/04/2013 01:25:49 PM,07/04/2013 01:34:54 PM,07/04/2013 01:35:28 PM,07/04/2013 02:01:33 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/04/2013 04:01:48 PM,2000 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,false,Fire,2,INVESTIGATION,22,4,5,Pacific Heights,"(37.788526928751, -122.429544952632)",131850185-AR1 -122640076,E03,12087107,Medical Incident,09/20/2012,09/20/2012,09/20/2012 08:02:01 AM,09/20/2012 08:02:30 AM,09/20/2012 08:03:12 AM,09/20/2012 08:05:12 AM,09/20/2012 08:07:42 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 08:15:32 AM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",122640076-E03 -130160026,E18,13005322,Citizen Assist / Service Call,01/16/2013,01/15/2013,01/16/2013 04:05:23 AM,01/16/2013 04:06:57 AM,01/16/2013 04:07:37 AM,01/16/2013 04:09:56 AM,01/16/2013 04:13:18 AM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Fire,01/16/2013 04:18:10 AM,2300 Block of 41ST AVE,SF,94116,B08,18,7636,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7429402394464, -122.499396716387)",130160026-E18 -160431638,65,16017287,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:32:39 PM,02/12/2016 12:34:14 PM,02/12/2016 12:35:39 PM,02/12/2016 12:35:45 PM,02/12/2016 12:47:34 PM,02/12/2016 01:00:17 PM,02/12/2016 01:10:03 PM,Code 2 Transport,02/12/2016 01:54:19 PM,500 Block of HYDE ST,San Francisco,94109,B04,3,1556,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7860270930908, -122.416321620855)",160431638-65 -160540846,75,16021499,Medical Incident,02/23/2016,02/23/2016,02/23/2016 08:57:43 AM,02/23/2016 08:59:39 AM,02/23/2016 09:03:29 AM,02/23/2016 09:03:35 AM,02/23/2016 09:22:18 AM,02/23/2016 09:37:10 AM,02/23/2016 09:46:18 AM,Code 2 Transport,02/23/2016 10:14:57 AM,600 Block of SHOTWELL ST,San Francisco,94110,B06,7,5447,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.758027155218, -122.415771731954)",160540846-75 -120340043,66,12011145,Traffic Collision,02/03/2012,02/02/2012,02/03/2012 04:41:33 AM,02/03/2012 04:42:44 AM,02/03/2012 04:43:31 AM,02/03/2012 04:43:55 AM,02/03/2012 04:44:26 AM,02/03/2012 05:16:08 AM,02/03/2012 05:33:04 AM,Code 2 Transport,02/03/2012 06:09:04 AM,2300 Block of 19TH AVE,SF,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7439803947416, -122.475835562635)",120340043-66 -111140300,B07,11037788,Structure Fire,04/24/2011,04/24/2011,04/24/2011 11:07:37 PM,04/24/2011 11:07:38 PM,04/24/2011 11:07:47 PM,04/24/2011 11:10:24 PM,04/24/2011 11:13:05 PM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 11:25:55 PM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,false,,1,CHIEF,3,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",111140300-B07 -160861291,64,16034133,Medical Incident,03/26/2016,03/26/2016,03/26/2016 11:00:20 AM,03/26/2016 11:03:15 AM,03/26/2016 11:03:21 AM,03/26/2016 11:04:51 AM,03/26/2016 11:25:13 AM,03/26/2016 11:29:00 AM,03/26/2016 11:46:58 AM,Code 2 Transport,03/26/2016 12:35:17 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160861291-64 -140440431,E48,14015165,Medical Incident,02/13/2014,02/13/2014,02/13/2014 11:28:13 PM,02/13/2014 11:29:13 PM,02/13/2014 11:29:33 PM,02/13/2014 11:31:52 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 11:47:30 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",140440431-E48 -160772310,54,16030635,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:37:36 PM,03/17/2016 02:37:36 PM,03/17/2016 02:44:37 PM,03/17/2016 02:44:45 PM,03/17/2016 03:14:15 PM,03/17/2016 03:25:14 PM,03/17/2016 03:49:48 PM,Code 2 Transport,03/17/2016 04:36:29 PM,ASHBURY ST/HAIGHT ST,San Francisco,94117,B05,21,4513,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7700076057236, -122.446933818288)",160772310-54 -102750079,E06,10087276,Medical Incident,10/02/2010,10/01/2010,10/02/2010 05:50:47 AM,10/02/2010 05:53:23 AM,10/02/2010 05:53:44 AM,10/02/2010 05:56:14 AM,10/02/2010 05:58:00 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 06:06:30 AM,4200 Block of 18TH ST,SF,94114,B05,6,5415,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7607362893717, -122.436647049644)",102750079-E06 -110100082,B08,11003236,Alarms,01/10/2011,01/10/2011,01/10/2011 08:27:49 AM,01/10/2011 08:29:44 AM,01/10/2011 08:29:57 AM,01/10/2011 08:30:59 AM,01/10/2011 08:37:19 AM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 08:49:05 AM,0 Block of MERCED AVE,SF,94116,B08,39,8642,3,3,3,false,,1,CHIEF,2,8,7,West of Twin Peaks,"(37.7460893096921, -122.459502530505)",110100082-B08 -133320122,E42,13112641,Traffic Collision,11/28/2013,11/28/2013,11/28/2013 12:21:05 PM,11/28/2013 12:22:56 PM,11/28/2013 12:24:06 PM,11/28/2013 12:25:08 PM,11/28/2013 12:27:55 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 12:39:17 PM,300 Block of BAY SHORE BLVD,SF,94110,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",133320122-E42 -160842698,KM08,16033459,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:57:06 PM,03/24/2016 03:59:11 PM,03/24/2016 04:02:55 PM,03/24/2016 04:03:21 PM,03/24/2016 05:06:29 PM,03/24/2016 05:06:41 PM,03/24/2016 05:06:47 PM,Code 2 Transport,03/24/2016 05:06:51 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160842698-KM08 -160780413,AM18,16030891,Medical Incident,03/18/2016,03/17/2016,03/18/2016 03:34:48 AM,03/18/2016 03:35:42 AM,03/18/2016 03:36:36 AM,03/18/2016 03:37:17 AM,03/18/2016 03:39:15 AM,03/18/2016 04:05:11 AM,03/18/2016 04:08:38 AM,Code 2 Transport,03/18/2016 04:42:58 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160780413-AM18 -111780155,E07,11058752,Administrative,06/27/2011,06/27/2011,06/27/2011 11:47:06 AM,06/27/2011 11:47:08 AM,06/27/2011 11:47:28 AM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 11:47:57 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",111780155-E07 -121020099,63,12033752,Medical Incident,04/11/2012,04/11/2012,04/11/2012 09:10:27 AM,04/11/2012 09:12:44 AM,04/11/2012 09:13:04 AM,04/11/2012 09:15:36 AM,04/11/2012 09:15:38 AM,04/11/2012 09:30:45 AM,04/11/2012 09:54:12 AM,Code 2 Transport,04/11/2012 10:41:22 AM,2100 Block of 24TH AVE,SF,94116,B08,40,7444,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7474792137801, -122.481306264779)",121020099-63 -110310043,65,11010061,Medical Incident,01/31/2011,01/30/2011,01/31/2011 05:12:14 AM,01/31/2011 05:13:25 AM,01/31/2011 05:13:34 AM,01/31/2011 05:13:56 AM,01/31/2011 05:39:47 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Patient Declined Transport,01/31/2011 06:01:12 AM,1500 Block of ALABAMA ST,SF,94110,B06,9,5622,2,2,2,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.7478373921928, -122.410430755915)",110310043-65 -160691748,62,16027476,Medical Incident,03/09/2016,03/09/2016,03/09/2016 12:52:59 PM,03/09/2016 12:54:14 PM,03/09/2016 12:54:26 PM,03/09/2016 12:54:59 PM,03/09/2016 01:02:00 PM,03/09/2016 01:19:11 PM,03/09/2016 01:33:14 PM,Code 2 Transport,03/09/2016 02:13:00 PM,2800 Block of JONES ST,San Francisco,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8075344387594, -122.417421684552)",160691748-62 -133580316,68,13121831,Medical Incident,12/24/2013,12/24/2013,12/24/2013 07:48:36 PM,12/24/2013 07:50:53 PM,12/24/2013 07:51:23 PM,12/24/2013 07:51:35 PM,12/24/2013 07:59:28 PM,12/24/2013 08:23:40 PM,12/24/2013 08:40:37 PM,Code 2 Transport,12/24/2013 09:06:27 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",133580316-68 -111380141,AM06,11045841,Medical Incident,05/18/2011,05/18/2011,05/18/2011 11:11:07 AM,05/18/2011 11:15:42 AM,05/18/2011 11:15:54 AM,05/18/2011 11:17:58 AM,05/18/2011 11:24:10 AM,05/18/2011 11:48:50 AM,05/18/2011 12:11:38 PM,Code 2 Transport,05/18/2011 12:51:03 PM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,3,3,3,false,,1,PRIVATE,2,3,6,Mission Bay,"(37.7816167926008, -122.389091822357)",111380141-AM06 -120220012,E07,12007350,Medical Incident,01/22/2012,01/21/2012,01/22/2012 12:34:02 AM,01/22/2012 12:36:51 AM,01/22/2012 12:36:59 AM,01/22/2012 12:38:11 AM,01/22/2012 12:40:22 AM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/22/2012 12:44:26 AM,3200 Block of 22ND ST,SF,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7554560834882, -122.419308328755)",120220012-E07 -122880268,B04,12095356,Citizen Assist / Service Call,10/14/2012,10/14/2012,10/14/2012 05:21:43 PM,10/14/2012 05:23:15 PM,10/14/2012 05:23:36 PM,10/14/2012 05:24:32 PM,10/14/2012 05:27:01 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Fire,10/14/2012 05:37:50 PM,1600 Block of STEINER ST,SF,94115,B04,5,3622,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.7845570453149, -122.434577795822)",122880268-B04 -160761326,75,16030099,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:53:47 AM,03/16/2016 10:53:47 AM,03/16/2016 10:54:37 AM,03/16/2016 10:55:43 AM,03/16/2016 11:01:05 AM,03/16/2016 11:02:56 AM,03/16/2016 11:49:22 AM,Code 2 Transport,03/16/2016 11:59:45 AM,GROVE ST/POLK ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7784891171437, -122.418226581728)",160761326-75 -120210060,88,12007003,Medical Incident,01/21/2012,01/20/2012,01/21/2012 02:40:49 AM,01/21/2012 02:43:11 AM,01/21/2012 02:43:23 AM,01/21/2012 02:43:54 AM,01/21/2012 02:45:03 AM,01/21/2012 03:07:11 AM,01/21/2012 03:21:12 AM,Code 2 Transport,01/21/2012 03:59:39 AM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",120210060-88 -110670235,T14,11022105,Medical Incident,03/08/2011,03/08/2011,03/08/2011 03:42:08 PM,03/08/2011 03:42:47 PM,03/08/2011 03:44:05 PM,03/08/2011 03:44:56 PM,03/08/2011 03:46:26 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 04:07:26 PM,500 Block of 27TH AVE,SF,94121,B07,14,7222,3,3,3,false,,1,TRUCK,1,7,1,Outer Richmond,"(37.7790279638161, -122.486876869791)",110670235-T14 -121360026,55,12045085,Medical Incident,05/15/2012,05/14/2012,05/15/2012 04:51:51 AM,05/15/2012 04:54:33 AM,05/15/2012 04:55:10 AM,05/15/2012 04:55:24 AM,05/15/2012 05:05:31 AM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,No Merit,05/15/2012 05:15:40 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",121360026-55 -110910255,E07,11030203,Medical Incident,04/01/2011,04/01/2011,04/01/2011 03:18:58 PM,04/01/2011 03:19:23 PM,04/01/2011 03:20:13 PM,04/01/2011 03:21:10 PM,04/01/2011 03:23:02 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 03:27:59 PM,18TH ST/BRYANT ST,SF,94110,B02,7,5426,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7617594196716, -122.410118192354)",110910255-E07 -130830093,B08,13027690,Administrative,03/24/2013,03/24/2013,03/24/2013 09:11:21 AM,03/24/2013 09:11:56 AM,03/24/2013 09:12:10 AM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Fire,03/24/2013 09:12:35 AM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,false,,1,CHIEF,1,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",130830093-B08 -121590234,E21,12052655,Citizen Assist / Service Call,06/07/2012,06/07/2012,06/07/2012 04:46:10 PM,06/07/2012 04:46:51 PM,06/07/2012 04:47:58 PM,06/07/2012 04:49:14 PM,06/07/2012 04:52:00 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Fire,06/07/2012 05:06:19 PM,FULTON ST/MASONIC AV,SF,94117,B05,21,4463,3,3,3,false,Alarm,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",121590234-E21 -110980222,KM11,11032521,Medical Incident,04/08/2011,04/08/2011,04/08/2011 01:25:46 PM,04/08/2011 01:26:21 PM,04/08/2011 01:26:51 PM,04/08/2011 01:27:32 PM,04/08/2011 01:39:49 PM,04/08/2011 02:08:01 PM,04/08/2011 02:27:28 PM,Code 2 Transport,04/08/2011 02:56:46 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",110980222-KM11 -160501281,RC3,16020044,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:02:29 AM,02/19/2016 11:03:48 AM,02/19/2016 11:11:17 AM,02/19/2016 11:11:36 AM,02/19/2016 11:25:29 AM,02/19/2016 11:49:00 AM,02/19/2016 11:49:00 AM,Code 2 Transport,02/19/2016 12:00:12 PM,700 Block of 18TH AV,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,7,1,Outer Richmond,"(37.7738426838977, -122.476830962581)",160501281-RC3 -160672995,59,16026889,Medical Incident,03/07/2016,03/07/2016,03/07/2016 07:47:34 PM,03/07/2016 07:48:53 PM,03/07/2016 07:49:14 PM,03/07/2016 07:49:27 PM,03/07/2016 08:03:18 PM,03/07/2016 08:30:37 PM,03/07/2016 08:49:54 PM,Code 2 Transport,03/07/2016 09:15:14 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160672995-59 -110830088,66,11027211,Traffic Collision,03/24/2011,03/24/2011,03/24/2011 08:11:37 AM,03/24/2011 08:12:35 AM,03/24/2011 08:21:53 AM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,04/25/2016 02:05:29 PM,BRYANT ST/6TH ST,SF,94107,B03,8,2255,1,1,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7760393195221, -122.402524096783)",110830088-66 -103610064,KM11,10115712,Medical Incident,12/27/2010,12/27/2010,12/27/2010 08:34:28 AM,12/27/2010 08:36:29 AM,12/27/2010 08:39:07 AM,12/27/2010 08:39:36 AM,12/27/2010 08:49:07 AM,12/27/2010 09:03:11 AM,12/27/2010 09:15:02 AM,Code 2 Transport,12/27/2010 09:39:18 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103610064-KM11 -133170050,E05,13107622,Medical Incident,11/13/2013,11/12/2013,11/13/2013 06:07:54 AM,11/13/2013 06:08:48 AM,11/13/2013 06:09:06 AM,11/13/2013 06:10:49 AM,11/13/2013 06:11:52 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 06:34:11 AM,1300 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",133170050-E05 -121070023,E14,12035324,Administrative,04/16/2012,04/15/2012,04/16/2012 02:09:33 AM,04/16/2012 02:09:36 AM,04/16/2012 02:09:58 AM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/16/2012 02:10:24 AM,500 Block of 26TH AVE,SF,94121,B07,14,7213,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",121070023-E14 -160610024,56,16024140,Medical Incident,03/01/2016,02/29/2016,03/01/2016 12:11:16 AM,03/01/2016 12:14:43 AM,03/01/2016 12:16:05 AM,03/01/2016 12:16:14 AM,03/01/2016 12:25:00 AM,03/01/2016 12:30:17 AM,03/01/2016 12:49:38 AM,Code 2 Transport,03/01/2016 01:34:06 AM,200 Block of BEACH ST,San Francisco,94133,B01,28,1344,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8076407484143, -122.413163175978)",160610024-56 -160223508,86,16008931,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:00:07 PM,01/22/2016 09:01:44 PM,01/22/2016 09:02:11 PM,01/22/2016 09:02:33 PM,01/22/2016 09:02:33 PM,01/22/2016 09:12:21 PM,01/22/2016 09:22:12 PM,Code 3 Transport,01/22/2016 10:31:08 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160223508-86 -132030328,E29,13068903,Administrative,07/22/2013,07/22/2013,07/22/2013 08:34:14 PM,07/22/2013 08:34:16 PM,07/22/2013 08:34:38 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,Fire,07/22/2013 08:38:23 PM,200 Block of VERMONT ST,SF,94103,B02,29,2422,3,3,3,true,,1,ENGINE,1,2,10,Mission Bay,"(37.7666119536778, -122.404617787649)",132030328-E29 -110230255,86,11007651,Medical Incident,01/23/2011,01/23/2011,01/23/2011 06:13:55 PM,01/23/2011 06:16:14 PM,01/23/2011 06:16:59 PM,01/23/2011 06:17:35 PM,01/23/2011 06:28:14 PM,01/23/2011 06:28:17 PM,01/23/2011 06:40:35 PM,Code 2 Transport,01/23/2011 06:50:50 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",110230255-86 -103430209,E36,10109862,Structure Fire,12/09/2010,12/09/2010,12/09/2010 12:42:02 PM,12/09/2010 12:42:02 PM,12/09/2010 12:42:10 PM,12/09/2010 12:42:59 PM,12/09/2010 12:46:17 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Fire,12/09/2010 12:47:01 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,,1,ENGINE,1,2,9,Mission,"(37.7666736014927, -122.419825235405)",103430209-E36 -112590390,85,11085574,Medical Incident,09/16/2011,09/16/2011,09/16/2011 11:10:38 PM,09/16/2011 11:11:35 PM,09/16/2011 11:12:36 PM,09/16/2011 11:13:18 PM,09/16/2011 11:24:18 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,No Merit,09/16/2011 11:51:00 PM,SACRAMENTO ST/POWELL ST,SF,94108,B01,2,1355,3,2,2,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7929707720805, -122.409361286661)",112590390-85 -103340247,72,10106923,Medical Incident,11/30/2010,11/30/2010,11/30/2010 03:53:50 PM,11/30/2010 03:54:16 PM,11/30/2010 03:55:25 PM,11/30/2010 03:55:55 PM,11/30/2010 03:59:54 PM,11/30/2010 04:22:06 PM,11/30/2010 04:31:12 PM,Code 2 Transport,11/30/2010 04:58:48 PM,2200 Block of BRYANT ST,SF,94110,B06,7,5474,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7580257466594, -122.409534922253)",103340247-72 -160732679,KM11,16029091,Medical Incident,03/13/2016,03/13/2016,03/13/2016 08:09:25 PM,03/13/2016 08:10:46 PM,03/13/2016 08:12:37 PM,03/13/2016 08:13:05 PM,03/13/2016 08:34:35 PM,03/13/2016 08:47:06 PM,03/13/2016 09:07:23 PM,Code 2 Transport,03/13/2016 09:27:33 PM,700 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",160732679-KM11 -131790464,B02,13061042,Alarms,06/28/2013,06/28/2013,06/28/2013 11:39:46 PM,06/28/2013 11:41:02 PM,06/28/2013 11:41:18 PM,06/28/2013 11:43:23 PM,06/28/2013 11:46:15 PM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/28/2013 11:58:50 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7764944808779, -122.411359138357)",131790464-B02 -131840411,88,13062892,Medical Incident,07/03/2013,07/03/2013,07/03/2013 11:40:53 PM,07/03/2013 11:40:53 PM,07/03/2013 11:42:22 PM,07/03/2013 11:42:28 PM,07/03/2013 11:48:28 PM,07/03/2013 11:53:36 PM,07/04/2013 12:01:04 AM,Code 2 Transport,07/04/2013 12:29:07 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",131840411-88 -123100086,T01,12103044,Alarms,11/05/2012,11/05/2012,11/05/2012 08:18:43 AM,11/05/2012 08:20:27 AM,11/05/2012 08:20:33 AM,11/05/2012 08:22:21 AM,11/05/2012 08:26:57 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 08:24:35 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",123100086-T01 -120110210,E38,12003830,Medical Incident,01/11/2012,01/11/2012,01/11/2012 03:29:39 PM,01/11/2012 03:30:58 PM,01/11/2012 03:31:18 PM,01/11/2012 03:32:18 PM,01/11/2012 03:33:46 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 03:50:50 PM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,2,2,false,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7915320518223, -122.424182651752)",120110210-E38 -140470041,E39,14015892,Medical Incident,02/16/2014,02/15/2014,02/16/2014 02:09:26 AM,02/16/2014 02:11:47 AM,02/16/2014 02:13:35 AM,02/16/2014 02:15:06 AM,02/16/2014 02:24:52 AM,02/16/2014 02:45:16 AM,02/16/2014 02:59:37 AM,Other,02/16/2014 03:09:19 AM,1900 Block of 43RD AVE,SF,94116,B08,23,7646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7503116383635, -122.501926047564)",140470041-E39 -103440382,78,10110375,Medical Incident,12/10/2010,12/10/2010,12/10/2010 08:46:37 PM,12/10/2010 08:47:22 PM,12/10/2010 08:52:18 PM,12/10/2010 08:52:27 PM,12/10/2010 09:03:47 PM,12/10/2010 09:18:39 PM,12/10/2010 09:27:54 PM,Code 2 Transport,12/10/2010 09:52:29 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",103440382-78 -110250114,B06,11008163,Alarms,01/25/2011,01/25/2011,01/25/2011 08:55:55 AM,01/25/2011 08:57:14 AM,01/25/2011 08:57:22 AM,01/25/2011 08:59:05 AM,01/25/2011 09:04:13 AM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Fire,01/25/2011 09:04:20 AM,0 Block of SURREY ST,SF,94131,B06,26,8146,3,3,3,false,,1,CHIEF,3,6,8,Glen Park,"(37.7358169787493, -122.433728428894)",110250114-B06 -122760237,54,12091160,Medical Incident,10/02/2012,10/02/2012,10/02/2012 01:44:37 PM,10/02/2012 01:45:37 PM,10/02/2012 01:46:03 PM,10/02/2012 01:46:21 PM,10/02/2012 01:49:53 PM,10/02/2012 02:01:42 PM,10/02/2012 02:34:38 PM,Code 2 Transport,10/02/2012 02:52:36 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",122760237-54 -120770130,T01,12025451,Medical Incident,03/17/2012,03/17/2012,03/17/2012 11:11:04 AM,03/17/2012 11:11:16 AM,03/17/2012 11:11:33 AM,03/17/2012 11:11:52 AM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 11:14:52 AM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,South of Market,"(37.7779770860913, -122.409387007126)",120770130-T01 -160820648,75,16032480,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:03:43 AM,03/22/2016 08:04:18 AM,03/22/2016 08:04:56 AM,03/22/2016 08:05:11 AM,03/22/2016 08:25:29 AM,03/22/2016 08:34:43 AM,03/22/2016 08:54:41 AM,Code 2 Transport,03/22/2016 09:47:02 AM,300 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7301742032908, -122.399430890336)",160820648-75 -120300219,T16,12010027,Structure Fire,01/30/2012,01/30/2012,01/30/2012 03:57:24 PM,01/30/2012 03:57:55 PM,01/30/2012 03:58:10 PM,01/30/2012 03:59:13 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/30/2012 04:05:15 PM,3000 Block of SACRAMENTO ST,SF,94115,B04,10,4264,3,3,3,false,Fire,1,TRUCK,6,4,2,Pacific Heights,"(37.788729694614, -122.443129710334)",120300219-T16 -110410286,B01,11013653,Alarms,02/10/2011,02/10/2011,02/10/2011 04:30:04 PM,02/10/2011 04:30:11 PM,02/10/2011 04:30:18 PM,02/10/2011 04:30:52 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 04:37:01 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,,1,CHIEF,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",110410286-B01 -121320031,66,12043782,Medical Incident,05/11/2012,05/10/2012,05/11/2012 02:30:36 AM,05/11/2012 02:31:20 AM,05/11/2012 02:31:31 AM,05/11/2012 02:31:57 AM,05/11/2012 02:51:37 AM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Patient Declined Transport,05/11/2012 03:14:25 AM,1700 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7551853287083, -122.476356264125)",121320031-66 -112640272,94,11087247,Medical Incident,09/21/2011,09/21/2011,09/21/2011 04:09:37 PM,09/21/2011 04:10:17 PM,09/21/2011 04:10:38 PM,09/21/2011 04:10:42 PM,09/21/2011 04:12:46 PM,09/21/2011 04:35:25 PM,09/21/2011 04:44:22 PM,Code 2 Transport,09/21/2011 05:23:28 PM,LARKIN ST/FULTON ST,SF,94102,B02,1,1551,3,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",112640272-94 -160420164,AM20,16016703,Medical Incident,02/11/2016,02/10/2016,02/11/2016 01:34:56 AM,02/11/2016 01:35:52 AM,02/11/2016 01:36:44 AM,02/11/2016 01:37:20 AM,02/11/2016 01:40:07 AM,02/11/2016 01:54:59 AM,02/11/2016 02:25:24 AM,Code 2 Transport,02/11/2016 02:45:25 AM,MISSION ST/9TH ST,San Francisco,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",160420164-AM20 -121260384,E07,12042050,Medical Incident,05/05/2012,05/05/2012,05/05/2012 09:01:18 PM,05/05/2012 09:07:43 PM,05/05/2012 09:08:20 PM,05/05/2012 09:09:34 PM,05/05/2012 09:13:19 PM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 09:23:08 PM,500 Block of DOLORES ST,SF,94114,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7606186794333, -122.426153349478)",121260384-E07 -131530339,E13,13051979,Medical Incident,06/02/2013,06/02/2013,06/02/2013 10:13:30 PM,06/02/2013 10:14:18 PM,06/02/2013 10:14:52 PM,06/02/2013 10:16:34 PM,06/02/2013 10:18:00 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 10:26:24 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",131530339-E13 -123070119,KM10,12101958,Medical Incident,11/02/2012,11/02/2012,11/02/2012 10:16:08 AM,11/02/2012 10:17:28 AM,11/02/2012 10:18:41 AM,11/02/2012 10:20:03 AM,11/02/2012 10:25:18 AM,11/02/2012 10:43:38 AM,11/02/2012 10:48:55 AM,Code 2 Transport,11/02/2012 11:25:26 AM,1400 Block of DIVISADERO ST,SF,94115,B05,10,4154,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7828972510359, -122.439273399197)",123070119-KM10 -140620013,93,14020808,Medical Incident,03/03/2014,03/02/2014,03/03/2014 01:30:47 AM,03/03/2014 01:31:36 AM,03/03/2014 01:31:52 AM,03/03/2014 01:32:01 AM,03/03/2014 01:40:11 AM,03/03/2014 01:52:45 AM,03/03/2014 01:56:16 AM,Code 3 Transport,03/03/2014 02:39:54 AM,100 Block of PUTNAM ST,SF,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7375380639723, -122.410869557896)",140620013-93 -113060173,KM14,11101639,Medical Incident,11/02/2011,11/02/2011,11/02/2011 11:55:19 AM,11/02/2011 11:56:45 AM,11/02/2011 11:57:03 AM,11/02/2011 11:57:57 AM,11/02/2011 12:03:39 PM,11/02/2011 12:18:38 PM,11/02/2011 12:37:40 PM,Code 2 Transport,11/02/2011 01:09:08 PM,800 Block of JAMESTOWN AVE,SF,94124,B10,17,6642,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7165720054615, -122.390307055412)",113060173-KM14 -140290261,KM02,14009949,Medical Incident,01/29/2014,01/29/2014,01/29/2014 04:17:57 PM,01/29/2014 04:20:18 PM,01/29/2014 04:20:50 PM,01/29/2014 04:21:08 PM,04/25/2016 01:48:28 PM,01/29/2014 04:44:13 PM,01/29/2014 04:57:57 PM,Code 2 Transport,01/29/2014 05:29:06 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7683208883339, -122.4243245293)",140290261-KM02 -140160195,86,14005473,Medical Incident,01/16/2014,01/16/2014,01/16/2014 12:53:55 PM,01/16/2014 12:56:05 PM,01/16/2014 12:56:31 PM,01/16/2014 12:56:41 PM,01/16/2014 12:59:19 PM,01/16/2014 01:09:00 PM,01/16/2014 01:11:51 PM,Code 2 Transport,01/16/2014 01:31:15 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",140160195-86 -102450017,77,10077195,Medical Incident,09/02/2010,09/01/2010,09/02/2010 12:45:56 AM,09/02/2010 12:46:10 AM,09/02/2010 12:47:12 AM,09/02/2010 12:47:23 AM,09/02/2010 12:50:53 AM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Patient Declined Transport,09/02/2010 01:23:45 AM,INGALLS ST/THOMAS AV,SF,94124,B10,17,6653,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272332288185, -122.385682204312)",102450017-77 -121510018,92,12049904,Medical Incident,05/30/2012,05/29/2012,05/30/2012 01:32:34 AM,05/30/2012 01:35:47 AM,05/30/2012 01:35:55 AM,05/30/2012 01:36:14 AM,05/30/2012 01:47:11 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,No Merit,05/30/2012 01:51:49 AM,MARKET ST/DRUMM ST,SF,94105,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",121510018-92 -120010563,E43,12000490,Outside Fire,01/01/2012,01/01/2012,01/01/2012 07:04:24 PM,01/01/2012 07:05:08 PM,01/01/2012 07:05:17 PM,01/01/2012 07:06:34 PM,01/01/2012 07:10:10 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 07:15:43 PM,BLYTHDALE AV/HAHN ST,SF,94134,B09,43,6244,3,3,3,false,Fire,1,ENGINE,1,9,10,Visitacion Valley,"(37.7104731740666, -122.416648462101)",120010563-E43 -120130041,54,12004321,Medical Incident,01/13/2012,01/12/2012,01/13/2012 03:07:47 AM,01/13/2012 03:09:10 AM,01/13/2012 03:09:25 AM,01/13/2012 03:10:44 AM,01/13/2012 03:18:50 AM,01/13/2012 03:24:51 AM,01/13/2012 03:35:06 AM,Other,01/13/2012 03:52:26 AM,17TH ST/NOE ST,SF,94114,B05,6,5252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7626181998668, -122.432949138311)",120130041-54 -122650172,RS1,12087544,Structure Fire,09/21/2012,09/21/2012,09/21/2012 02:03:25 PM,09/21/2012 02:04:00 PM,09/21/2012 02:04:31 PM,09/21/2012 02:04:51 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 02:06:52 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,false,Fire,1,RESCUE SQUAD,9,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",122650172-RS1 -132140228,93,13072298,Traffic Collision,08/02/2013,08/02/2013,08/02/2013 03:01:09 PM,08/02/2013 03:01:46 PM,08/02/2013 03:02:38 PM,08/02/2013 03:02:54 PM,08/02/2013 03:09:27 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Patient Declined Transport,08/02/2013 03:34:27 PM,200 Block of TURK ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",132140228-93 -111390066,99,11046118,Medical Incident,05/19/2011,05/18/2011,05/19/2011 07:22:39 AM,05/19/2011 07:26:12 AM,05/19/2011 07:27:04 AM,05/19/2011 07:27:15 AM,05/19/2011 07:39:57 AM,05/19/2011 08:01:31 AM,05/19/2011 08:23:36 AM,Code 2 Transport,05/19/2011 08:49:03 AM,2400 Block of 30TH AVE,SF,94116,B08,18,7522,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7416007589044, -122.487342350654)",111390066-99 -132220039,KM07,13074843,Medical Incident,08/10/2013,08/09/2013,08/10/2013 02:27:22 AM,08/10/2013 02:27:39 AM,08/10/2013 02:28:54 AM,08/10/2013 02:29:47 AM,08/10/2013 02:36:34 AM,08/10/2013 02:48:38 AM,08/10/2013 02:56:07 AM,Code 2 Transport,08/10/2013 03:23:41 AM,7TH ST/STEVENSON ST,SF,94103,B02,36,2316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",132220039-KM07 -131800312,KM14,13061314,Medical Incident,06/29/2013,06/29/2013,06/29/2013 05:18:48 PM,06/29/2013 05:19:16 PM,06/29/2013 05:22:08 PM,06/29/2013 05:22:16 PM,06/29/2013 05:30:28 PM,06/29/2013 05:38:10 PM,06/29/2013 05:48:14 PM,Code 2 Transport,06/29/2013 06:21:39 PM,1100 Block of MARKET ST,SF,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7807642254398, -122.412320907436)",131800312-KM14 -110330302,B04,11010914,Structure Fire,02/02/2011,02/02/2011,02/02/2011 05:24:52 PM,02/02/2011 05:26:04 PM,02/02/2011 05:26:57 PM,02/02/2011 05:27:39 PM,02/02/2011 05:36:55 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 05:44:38 PM,400 Block of 44TH AVE,SF,94121,B07,34,7265,3,3,3,false,,1,CHIEF,7,7,1,Outer Richmond,"(37.7804351598877, -122.505249560078)",110330302-B04 -131990069,E03,13067369,Medical Incident,07/18/2013,07/18/2013,07/18/2013 08:26:42 AM,07/18/2013 08:27:18 AM,07/18/2013 08:27:42 AM,07/18/2013 08:29:31 AM,07/18/2013 08:32:41 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 08:35:43 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",131990069-E03 -133550007,B01,13120514,Alarms,12/21/2013,12/20/2013,12/21/2013 12:20:41 AM,12/21/2013 12:22:44 AM,12/21/2013 12:22:50 AM,12/21/2013 12:25:07 AM,12/21/2013 12:28:13 AM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Other,12/21/2013 12:38:12 AM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8083718015584, -122.414994322457)",133550007-B01 -121810320,T05,12060384,Structure Fire,06/29/2012,06/29/2012,06/29/2012 07:53:55 PM,06/29/2012 07:53:55 PM,06/29/2012 07:54:02 PM,06/29/2012 07:54:57 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 07:57:01 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,2,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",121810320-T05 -131910068,RC2,13064951,Traffic Collision,07/10/2013,07/10/2013,07/10/2013 08:26:39 AM,07/10/2013 08:29:26 AM,07/10/2013 08:36:23 AM,04/25/2016 01:51:52 PM,07/10/2013 08:38:51 AM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/10/2013 08:45:55 AM,15TH AV/GEARY BL,SF,94118,B07,31,7153,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7805753802673, -122.47398246915)",131910068-RC2 -160564004,AM24,16022559,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:38:05 PM,02/25/2016 10:38:48 PM,02/25/2016 10:39:28 PM,02/25/2016 10:39:34 PM,02/25/2016 10:48:17 PM,02/25/2016 11:06:47 PM,02/25/2016 11:28:54 PM,Code 2 Transport,02/25/2016 11:51:07 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",160564004-AM24 -160071309,E17,16002794,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:56:54 AM,01/07/2016 10:57:28 AM,01/07/2016 10:57:44 AM,01/07/2016 10:59:08 AM,01/07/2016 11:04:05 AM,01/07/2016 11:21:37 AM,01/07/2016 11:21:37 AM,Code 3 Transport,01/07/2016 11:46:38 AM,0 Block of COMMER CT,San Francisco,94124,B10,17,6622,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7326384270488, -122.384953741035)",160071309-E17 -130480343,T03,13016523,Structure Fire,02/17/2013,02/17/2013,02/17/2013 08:49:48 PM,02/17/2013 08:49:49 PM,02/17/2013 08:49:54 PM,02/17/2013 08:50:58 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 08:52:53 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",130480343-T03 -123230197,E40,12107425,Structure Fire,11/18/2012,11/18/2012,11/18/2012 01:57:21 PM,11/18/2012 01:57:56 PM,11/18/2012 01:58:08 PM,11/18/2012 02:22:56 PM,11/18/2012 02:25:42 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/18/2012 02:49:32 PM,400 Block of 47TH AVE,SF,94121,B07,34,7313,3,3,3,true,Fire,2,ENGINE,17,7,1,Outer Richmond,"(37.7794650987686, -122.508402914078)",123230197-E40 -132820249,AM12,13096011,Traffic Collision,10/09/2013,10/09/2013,10/09/2013 03:25:42 PM,10/09/2013 03:26:25 PM,10/09/2013 03:26:38 PM,10/09/2013 03:27:35 PM,10/09/2013 03:32:55 PM,10/09/2013 03:54:25 PM,10/09/2013 04:30:13 PM,Other,10/09/2013 05:17:40 PM,2400 Block of KEITH ST,SF,94124,B10,17,6546,2,3,3,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7259450297872, -122.392569985783)",132820249-AM12 -121020187,RC3,12033821,Medical Incident,04/11/2012,04/11/2012,04/11/2012 01:31:39 PM,04/11/2012 01:32:52 PM,04/11/2012 01:33:07 PM,04/25/2016 01:59:13 PM,04/11/2012 01:35:35 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 01:41:56 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7498446220826, -122.418142583283)",121020187-RC3 -133390222,KM04,13114911,Medical Incident,12/05/2013,12/05/2013,12/05/2013 01:53:49 PM,12/05/2013 01:54:01 PM,12/05/2013 01:55:30 PM,12/05/2013 01:55:57 PM,12/05/2013 02:09:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 02:16:18 PM,700 Block of MARKET ST,SF,94108,B03,1,1322,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",133390222-KM04 -102420169,T02,10076307,Alarms,08/30/2010,08/30/2010,08/30/2010 12:09:08 PM,08/30/2010 12:09:58 PM,08/30/2010 12:10:26 PM,08/30/2010 12:11:27 PM,08/30/2010 12:13:36 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Fire,08/30/2010 12:18:59 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,false,,1,TRUCK,1,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",102420169-T02 -160410308,55,16016294,Medical Incident,02/10/2016,02/09/2016,02/10/2016 03:48:39 AM,02/10/2016 03:51:07 AM,02/10/2016 03:51:24 AM,02/10/2016 03:51:47 AM,02/10/2016 04:06:14 AM,02/10/2016 04:23:58 AM,02/10/2016 04:52:43 AM,Code 2 Transport,02/10/2016 05:29:40 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160410308-55 -113010270,T13,11099900,Medical Incident,10/28/2011,10/28/2011,10/28/2011 03:31:26 PM,10/28/2011 03:32:32 PM,10/28/2011 03:32:53 PM,10/28/2011 03:33:40 PM,10/28/2011 03:36:30 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 03:41:39 PM,100 Block of CLAY ST,SF,94111,B01,13,1133,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7953352957642, -122.397362199177)",113010270-T13 -160273989,62,16010894,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:43:50 PM,01/27/2016 10:46:35 PM,01/27/2016 10:47:54 PM,01/27/2016 10:48:01 PM,01/27/2016 10:55:48 PM,01/27/2016 11:19:44 PM,01/27/2016 11:34:53 PM,Code 2 Transport,01/28/2016 12:13:04 AM,1400 Block of OAKDALE AVE,San Francisco,94124,B10,17,6534,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.732955634816, -122.387590806117)",160273989-62 -121940070,93,12064464,Medical Incident,07/12/2012,07/11/2012,07/12/2012 07:07:02 AM,07/12/2012 07:07:47 AM,07/12/2012 07:08:05 AM,07/12/2012 07:08:16 AM,07/12/2012 07:10:50 AM,07/12/2012 07:30:51 AM,07/12/2012 07:55:44 AM,Code 2 Transport,07/12/2012 08:28:55 AM,700 Block of NAPLES ST,SF,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7169949183795, -122.434203067739)",121940070-93 -131960140,AM16,13066495,Medical Incident,07/15/2013,07/15/2013,07/15/2013 11:25:35 AM,07/15/2013 11:27:56 AM,07/15/2013 11:28:10 AM,07/15/2013 11:28:44 AM,07/15/2013 11:37:28 AM,07/15/2013 12:00:51 PM,07/15/2013 12:19:25 PM,Code 2 Transport,07/15/2013 12:57:04 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",131960140-AM16 -122660232,E23,12087921,Medical Incident,09/22/2012,09/22/2012,09/22/2012 04:40:45 PM,09/22/2012 04:41:14 PM,09/22/2012 04:41:35 PM,09/22/2012 04:43:13 PM,09/22/2012 04:44:02 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 04:56:59 PM,1300 Block of 48TH AVE,SF,94122,B08,23,7721,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.761256999261, -122.508202143455)",122660232-E23 -102490033,87,10078563,Medical Incident,09/06/2010,09/05/2010,09/06/2010 02:43:00 AM,09/06/2010 02:43:52 AM,09/06/2010 02:44:30 AM,09/06/2010 02:44:38 AM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Other,04/25/2016 02:08:43 PM,1400 Block of HALIBUT CT,TI,94130,B03,48,2931,2,2,2,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",102490033-87 -160371680,64,16014668,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:51:17 AM,02/06/2016 11:52:34 AM,02/06/2016 11:54:16 AM,02/06/2016 11:54:16 AM,02/06/2016 11:58:39 AM,02/06/2016 12:15:39 PM,02/06/2016 12:49:48 PM,Code 2 Transport,02/06/2016 01:42:58 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",160371680-64 -120610020,87,12019911,Medical Incident,03/01/2012,02/29/2012,03/01/2012 01:27:23 AM,03/01/2012 01:28:15 AM,03/01/2012 01:28:28 AM,03/01/2012 01:32:01 AM,03/01/2012 01:36:12 AM,03/01/2012 01:58:52 AM,03/01/2012 02:09:03 AM,Code 2 Transport,03/01/2012 02:35:51 AM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",120610020-87 -132660299,E09,13090345,Structure Fire,09/23/2013,09/23/2013,09/23/2013 04:55:41 PM,09/23/2013 04:56:33 PM,09/23/2013 04:58:03 PM,09/23/2013 04:58:11 PM,09/23/2013 05:00:22 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/23/2013 05:02:30 PM,INGALLS ST/HOLLISTER AV,SF,94124,B10,17,6612,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.719739950078, -122.392418231567)",132660299-E09 -102750202,T17,10087376,Structure Fire,10/02/2010,10/02/2010,10/02/2010 01:54:39 PM,10/02/2010 01:55:15 PM,10/02/2010 01:55:26 PM,10/02/2010 01:55:56 PM,10/02/2010 01:57:42 PM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 03:00:58 PM,1400 Block of QUESADA AVE,SF,94124,B10,17,6571,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7306545900477, -122.386831266157)",102750202-T17 -123400209,E19,12113437,Medical Incident,12/05/2012,12/05/2012,12/05/2012 12:17:23 PM,12/05/2012 12:17:47 PM,12/05/2012 12:18:03 PM,12/05/2012 12:19:04 PM,12/05/2012 12:21:29 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,Other,12/05/2012 12:32:31 PM,19TH AV/SLOAT BL,SF,94132,B08,19,7413,3,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",123400209-E19 -131270183,E03,13042921,Medical Incident,05/07/2013,05/07/2013,05/07/2013 01:17:56 PM,05/07/2013 01:20:08 PM,05/07/2013 01:20:28 PM,05/07/2013 01:22:04 PM,05/07/2013 01:26:15 PM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/07/2013 01:45:42 PM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",131270183-E03 -122470154,88,12081692,Medical Incident,09/03/2012,09/03/2012,09/03/2012 01:31:18 PM,09/03/2012 01:32:03 PM,09/03/2012 01:32:21 PM,09/03/2012 01:34:15 PM,09/03/2012 01:40:45 PM,09/03/2012 01:58:31 PM,09/03/2012 02:08:59 PM,Code 2 Transport,09/03/2012 02:31:00 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",122470154-88 -130920296,KM10,13030895,Medical Incident,04/02/2013,04/02/2013,04/02/2013 06:13:37 PM,04/02/2013 06:15:08 PM,04/02/2013 06:16:12 PM,04/02/2013 06:17:17 PM,04/02/2013 06:45:20 PM,04/02/2013 07:14:03 PM,04/02/2013 07:49:28 PM,Code 2 Transport,04/02/2013 08:23:26 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",130920296-KM10 -103500218,E20,10112272,Structure Fire,12/16/2010,12/16/2010,12/16/2010 02:02:25 PM,12/16/2010 02:04:29 PM,12/16/2010 02:04:45 PM,12/16/2010 02:05:08 PM,12/16/2010 02:10:36 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,12/16/2010 02:11:19 PM,1400 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,true,,1,ENGINE,5,5,5,Inner Sunset,"(37.7614340333644, -122.46176630545)",103500218-E20 -160572639,KM09,16022838,Medical Incident,02/26/2016,02/26/2016,02/26/2016 04:56:17 PM,02/26/2016 04:57:40 PM,02/26/2016 04:58:26 PM,02/26/2016 04:58:56 PM,02/26/2016 05:06:31 PM,02/26/2016 05:59:50 PM,02/26/2016 06:10:41 PM,Code 2 Transport,02/26/2016 06:53:49 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160572639-KM09 -123550375,E01,12118979,Traffic Collision,12/20/2012,12/20/2012,12/20/2012 11:37:08 PM,12/20/2012 11:37:08 PM,12/20/2012 11:37:36 PM,04/25/2016 01:55:12 PM,12/20/2012 11:38:47 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/20/2012 11:48:47 PM,HOWARD ST/3RD ST,SF,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",123550375-E01 -131670054,88,13056590,Traffic Collision,06/16/2013,06/15/2013,06/16/2013 03:31:43 AM,06/16/2013 03:32:41 AM,06/16/2013 03:34:02 AM,06/16/2013 03:34:09 AM,06/16/2013 03:45:16 AM,06/16/2013 04:09:29 AM,06/16/2013 04:39:54 AM,Code 2 Transport,06/16/2013 05:04:59 AM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",131670054-88 -113550250,RC1,11117926,Medical Incident,12/21/2011,12/21/2011,12/21/2011 03:57:23 PM,12/21/2011 03:58:16 PM,12/21/2011 03:58:50 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 04:09:29 PM,2ND ST/MARKET ST,SF,94105,B01,13,1236,3,3,3,true,,1,RESCUE CAPTAIN,3,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",113550250-RC1 -160123327,89,16004924,Medical Incident,01/12/2016,01/12/2016,01/12/2016 07:52:28 PM,01/12/2016 07:54:05 PM,01/12/2016 07:54:21 PM,01/12/2016 07:54:35 PM,01/12/2016 07:58:35 PM,01/12/2016 08:14:02 PM,01/12/2016 08:24:03 PM,Code 2 Transport,01/12/2016 09:12:56 PM,1700 Block of 30TH AVE,San Francisco,94122,B08,18,7534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7546573305147, -122.488255857222)",160123327-89 -132780429,E15,13094720,Medical Incident,10/05/2013,10/05/2013,10/05/2013 11:34:02 PM,10/05/2013 11:34:44 PM,10/05/2013 11:36:30 PM,10/05/2013 11:38:26 PM,10/05/2013 11:41:28 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 11:51:07 PM,300 Block of EDINBURGH ST,SF,94112,B09,43,6133,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7235354635326, -122.430183371542)",132780429-E15 -113040125,82,11100881,Administrative,10/31/2011,10/31/2011,10/31/2011 09:57:32 AM,10/31/2011 09:57:40 AM,10/31/2011 09:58:10 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 09:58:45 AM,1000 Block of TURK ST,SF,94102,B02,5,3367,3,3,3,true,,1,MEDIC,1,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",113040125-82 -160570008,89,16022580,Medical Incident,02/26/2016,02/25/2016,02/26/2016 12:03:55 AM,02/26/2016 12:03:55 AM,02/26/2016 12:06:24 AM,02/26/2016 12:06:33 AM,02/26/2016 12:10:19 AM,02/26/2016 12:33:36 AM,02/26/2016 12:54:57 AM,Code 2 Transport,02/26/2016 01:08:50 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160570008-89 -110700058,E42,11022928,Structure Fire,03/11/2011,03/10/2011,03/11/2011 07:08:42 AM,03/11/2011 07:09:11 AM,03/11/2011 07:09:21 AM,03/11/2011 07:10:19 AM,03/11/2011 07:13:00 AM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/11/2011 07:20:53 AM,5200 Block of 3RD ST,SF,94124,B10,17,6536,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7303863717611, -122.392379661468)",110700058-E42 -120710161,E39,12023596,Medical Incident,03/11/2012,03/11/2012,03/11/2012 11:57:59 AM,03/11/2012 11:59:19 AM,03/11/2012 12:01:23 PM,03/11/2012 12:02:13 PM,03/11/2012 12:03:29 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/11/2012 12:06:46 PM,800 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",120710161-E39 -132960128,AM02,13100556,Medical Incident,10/23/2013,10/23/2013,10/23/2013 10:43:08 AM,10/23/2013 10:43:35 AM,10/23/2013 10:43:49 AM,10/23/2013 10:44:34 AM,10/23/2013 10:46:08 AM,10/23/2013 11:03:39 AM,10/23/2013 11:41:38 AM,Code 2 Transport,10/23/2013 12:02:20 PM,100 Block of 10TH AVE,SF,94118,B07,31,7137,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7855485905185, -122.468976308915)",132960128-AM02 -132740325,68,13093233,Medical Incident,10/01/2013,10/01/2013,10/01/2013 09:53:13 PM,10/01/2013 09:55:18 PM,10/01/2013 09:55:40 PM,10/01/2013 09:55:52 PM,10/01/2013 09:58:09 PM,10/01/2013 10:21:51 PM,10/01/2013 10:41:21 PM,Code 2 Transport,10/01/2013 11:08:32 PM,2300 Block of JUDAH ST,SF,94122,B08,18,7513,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.761197258065, -122.487170195963)",132740325-68 -132080313,68,13070525,Medical Incident,07/27/2013,07/27/2013,07/27/2013 10:46:39 PM,07/27/2013 10:48:02 PM,07/27/2013 10:48:10 PM,07/27/2013 10:50:57 PM,07/27/2013 11:06:35 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Patient Declined Transport,07/28/2013 12:04:00 AM,4400 Block of IRVING ST,SF,94122,B08,23,7721,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",132080313-68 -160143887,58,16005769,Medical Incident,01/14/2016,01/14/2016,01/14/2016 10:45:37 PM,01/14/2016 10:47:56 PM,01/14/2016 10:48:10 PM,01/14/2016 10:48:32 PM,01/14/2016 10:59:27 PM,01/14/2016 11:14:43 PM,01/14/2016 11:29:33 PM,Code 2 Transport,01/15/2016 12:11:52 AM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",160143887-58 -160142102,52,16005604,Medical Incident,01/14/2016,01/14/2016,01/14/2016 02:22:24 PM,01/14/2016 02:22:34 PM,01/14/2016 02:23:01 PM,01/14/2016 02:23:11 PM,01/14/2016 02:27:14 PM,01/14/2016 02:38:01 PM,01/14/2016 02:45:42 PM,Code 2 Transport,01/14/2016 03:27:18 PM,200 Block of VERNON ST,San Francisco,94132,B09,33,8411,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7170020878157, -122.467957341983)",160142102-52 -160262370,89,16010349,Medical Incident,01/26/2016,01/26/2016,01/26/2016 03:22:20 PM,01/26/2016 03:22:20 PM,01/26/2016 03:24:16 PM,01/26/2016 03:24:47 PM,01/26/2016 03:25:51 PM,01/26/2016 03:53:34 PM,01/26/2016 03:53:35 PM,Code 2 Transport,01/26/2016 04:51:39 PM,21ST ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",160262370-89 -123100280,E33,12103207,Traffic Collision,11/05/2012,11/05/2012,11/05/2012 05:30:41 PM,11/05/2012 05:31:31 PM,11/05/2012 05:31:48 PM,11/05/2012 05:32:36 PM,11/05/2012 05:35:10 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 05:49:54 PM,BROTHERHOOD WY/ARCH ST,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7124218732149, -122.467072688577)",123100280-E33 -113620102,E36,11120180,Medical Incident,12/28/2011,12/28/2011,12/28/2011 09:29:58 AM,12/28/2011 09:33:18 AM,12/28/2011 09:33:25 AM,12/28/2011 09:35:50 AM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 09:39:11 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,,1,ENGINE,3,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",113620102-E36 -160253670,71,16010124,Medical Incident,01/25/2016,01/25/2016,01/25/2016 09:57:46 PM,01/25/2016 10:00:21 PM,01/25/2016 10:01:44 PM,01/25/2016 10:01:50 PM,01/25/2016 10:07:29 PM,01/25/2016 10:17:49 PM,01/25/2016 10:26:22 PM,Code 2 Transport,01/25/2016 11:01:19 PM,24TH ST/TREAT AV,San Francisco,94110,B06,7,5527,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7525727580898, -122.41299517484)",160253670-71 -140630090,AM06,14021207,Medical Incident,03/04/2014,03/04/2014,03/04/2014 08:33:00 AM,03/04/2014 08:34:27 AM,03/04/2014 08:35:47 AM,03/04/2014 08:36:23 AM,04/25/2016 01:47:55 PM,03/04/2014 08:55:49 AM,03/04/2014 09:09:47 AM,Code 2 Transport,03/04/2014 09:30:32 AM,100 Block of MASON ST,SF,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",140630090-AM06 -131820152,E38,13061975,Medical Incident,07/01/2013,07/01/2013,07/01/2013 10:34:49 AM,07/01/2013 10:36:57 AM,07/01/2013 10:37:02 AM,07/01/2013 10:38:28 AM,07/01/2013 10:41:42 AM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,07/01/2013 10:41:47 AM,1700 Block of PACIFIC AVE,SF,94109,B04,38,3231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.7947665561905, -122.424060519207)",131820152-E38 -131320246,E29,13044641,Traffic Collision,05/12/2013,05/12/2013,05/12/2013 06:55:13 PM,05/12/2013 06:56:16 PM,05/12/2013 06:56:34 PM,05/12/2013 06:57:12 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 06:58:31 PM,BRYANT ST/16TH ST,SF,94110,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,10,Mission,"(37.7656058395036, -122.410486689194)",131320246-E29 -160280970,53,16011019,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:27:25 AM,01/28/2016 09:29:34 AM,01/28/2016 09:30:14 AM,01/28/2016 09:30:23 AM,01/28/2016 09:45:15 AM,01/28/2016 10:05:41 AM,01/28/2016 10:16:13 AM,Code 2 Transport,01/28/2016 10:58:18 AM,100 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,2,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",160280970-53 -102570153,T01,10081164,Traffic Collision,09/14/2010,09/14/2010,09/14/2010 11:43:18 AM,09/14/2010 11:43:18 AM,09/14/2010 11:43:18 AM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Other,09/14/2010 11:48:05 AM,OFARRELL ST/JONES ST,SF,94102,B01,1,1452,2,2,2,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",102570153-T01 -133010283,E44,13102364,Medical Incident,10/28/2013,10/28/2013,10/28/2013 03:53:26 PM,10/28/2013 03:55:46 PM,10/28/2013 03:56:32 PM,10/28/2013 03:57:46 PM,10/28/2013 04:03:24 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/28/2013 04:36:29 PM,0 Block of MCCARTHY AVE,SF,94134,B09,44,6248,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7102584419985, -122.414143576191)",133010283-E44 -112700059,E34,11089131,Medical Incident,09/27/2011,09/27/2011,09/27/2011 08:36:51 AM,09/27/2011 08:37:48 AM,09/27/2011 08:38:38 AM,09/27/2011 08:39:19 AM,09/27/2011 08:43:11 AM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/27/2011 09:00:08 AM,800 Block of LA PLAYA,SF,94121,B07,34,7311,A,A,2,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",112700059-E34 -121250106,54,12041442,Medical Incident,05/04/2012,05/04/2012,05/04/2012 09:57:50 AM,05/04/2012 09:58:58 AM,05/04/2012 09:59:08 AM,05/04/2012 09:59:14 AM,05/04/2012 10:03:54 AM,05/04/2012 10:16:20 AM,05/04/2012 10:42:28 AM,Code 2 Transport,05/04/2012 10:51:16 AM,500 Block of JESSIE ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7809852231357, -122.409669731425)",121250106-54 -160474106,71,16019171,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:49:50 PM,02/16/2016 11:52:04 PM,02/16/2016 11:52:57 PM,02/16/2016 11:53:14 PM,02/17/2016 12:04:18 AM,02/17/2016 12:22:31 AM,02/17/2016 12:31:44 AM,Code 2 Transport,02/17/2016 01:10:39 AM,MASON ST/BEACH ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8074825129146, -122.41397500769)",160474106-71 -160711620,KM11,16028225,Medical Incident,03/11/2016,03/11/2016,03/11/2016 12:35:32 PM,03/11/2016 12:36:29 PM,03/11/2016 12:36:59 PM,03/11/2016 12:37:30 PM,03/11/2016 12:47:01 PM,03/11/2016 01:19:14 PM,03/11/2016 01:19:20 PM,Code 2 Transport,03/11/2016 01:42:25 PM,800 Block of TURK ST,San Francisco,94102,B02,36,3216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",160711620-KM11 -122060106,E23,12068424,Medical Incident,07/24/2012,07/24/2012,07/24/2012 09:27:49 AM,07/24/2012 09:29:33 AM,07/24/2012 09:30:05 AM,07/24/2012 09:32:00 AM,07/24/2012 09:34:52 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 09:48:18 AM,1300 Block of 27TH AVE,SF,94122,B08,22,7511,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7622565136355, -122.485564556768)",122060106-E23 -160101714,52,16004048,Medical Incident,01/10/2016,01/10/2016,01/10/2016 01:34:59 PM,01/10/2016 01:36:32 PM,01/10/2016 01:36:53 PM,01/10/2016 01:37:43 PM,01/10/2016 01:41:07 PM,01/10/2016 01:58:29 PM,01/10/2016 02:01:30 PM,Code 2 Transport,01/10/2016 02:41:39 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7867794977083, -122.450948438002)",160101714-52 -102770196,RC1,10088084,Traffic Collision,10/04/2010,10/04/2010,10/04/2010 02:55:47 PM,10/04/2010 02:58:06 PM,10/04/2010 02:58:44 PM,10/04/2010 03:00:51 PM,10/04/2010 03:05:00 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/04/2010 03:20:26 PM,1700 Block of WASHINGTON ST,SF,94109,B04,41,3124,3,3,3,true,,1,RESCUE CAPTAIN,3,4,3,Russian Hill,"(37.7932081770216, -122.422061502625)",102770196-RC1 -160460330,55,16018375,Medical Incident,02/15/2016,02/14/2016,02/15/2016 03:00:23 AM,02/15/2016 03:00:23 AM,02/15/2016 03:00:57 AM,02/15/2016 03:01:13 AM,02/15/2016 03:18:04 AM,02/15/2016 03:30:16 AM,02/15/2016 03:47:10 AM,Code 2 Transport,02/15/2016 04:25:06 AM,"13TH ST/GATEVIEW AV, TI",Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8281641396783, -122.377094979291)",160460330-55 -102280023,86,10071655,Medical Incident,08/16/2010,08/15/2010,08/16/2010 01:58:43 AM,08/16/2010 01:59:35 AM,08/16/2010 02:00:08 AM,08/16/2010 02:01:23 AM,08/16/2010 02:06:22 AM,08/16/2010 02:28:54 AM,08/16/2010 02:39:19 AM,Code 2 Transport,08/16/2010 03:10:18 AM,600 Block of 45TH AVE,SF,94121,B07,34,7273,3,2,2,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7762535401496, -122.506022206848)",102280023-86 -130010138,B03,13000091,Alarms,01/01/2013,12/31/2012,01/01/2013 02:10:08 AM,01/01/2013 02:11:32 AM,01/01/2013 02:11:42 AM,01/01/2013 02:12:28 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 02:16:13 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,Alarm,1,CHIEF,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",130010138-B03 -160503180,76,16020227,Medical Incident,02/19/2016,02/19/2016,02/19/2016 07:10:09 PM,02/19/2016 07:11:31 PM,02/19/2016 07:12:00 PM,02/19/2016 07:12:19 PM,02/19/2016 07:24:51 PM,02/19/2016 07:27:58 PM,02/19/2016 07:41:32 PM,Code 2 Transport,02/19/2016 07:42:15 PM,800 Block of DIVISADERO ST,San Francisco,94117,B05,21,4151,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7773095022254, -122.438391268776)",160503180-76 -160203470,68,16008156,Medical Incident,01/20/2016,01/20/2016,01/20/2016 08:17:42 PM,01/20/2016 08:18:58 PM,01/20/2016 08:19:55 PM,01/20/2016 08:20:07 PM,01/20/2016 08:30:26 PM,01/20/2016 08:50:27 PM,01/20/2016 08:57:14 PM,Code 2 Transport,01/20/2016 09:43:31 PM,0 Block of OLYMPIA WAY,San Francisco,94131,B08,20,5351,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7512804251875, -122.452533549405)",160203470-68 -110910294,87,11030235,Medical Incident,04/01/2011,04/01/2011,04/01/2011 04:43:45 PM,04/01/2011 04:43:45 PM,04/01/2011 04:43:45 PM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,04/01/2011 05:06:51 PM,04/01/2011 05:12:29 PM,Code 2 Transport,04/01/2011 05:41:49 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",110910294-87 -160370411,71,16014533,Medical Incident,02/06/2016,02/05/2016,02/06/2016 02:08:36 AM,02/06/2016 02:10:54 AM,02/06/2016 02:11:33 AM,02/06/2016 02:12:08 AM,02/06/2016 02:20:05 AM,02/06/2016 02:34:03 AM,02/06/2016 02:42:06 AM,Code 2 Transport,02/06/2016 03:14:01 AM,3800 Block of 19TH AVE,San Francisco,94132,B08,19,8427,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7184242151546, -122.473530814265)",160370411-71 -160392600,KM12,16015710,Medical Incident,02/08/2016,02/08/2016,02/08/2016 04:50:55 PM,02/08/2016 04:51:58 PM,02/08/2016 04:52:52 PM,02/08/2016 04:55:11 PM,02/08/2016 05:01:39 PM,02/08/2016 05:15:10 PM,02/08/2016 05:56:17 PM,Code 2 Transport,02/08/2016 06:36:32 PM,2900 Block of DIAMOND ST,San Francisco,94131,B09,26,8269,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",160392600-KM12 -160083538,60,16003407,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:37:02 PM,01/08/2016 08:37:20 PM,01/08/2016 08:38:19 PM,01/08/2016 08:38:28 PM,01/08/2016 08:45:27 PM,01/08/2016 08:53:07 PM,01/08/2016 09:44:28 PM,Code 2 Transport,01/08/2016 10:30:31 PM,0 Block of SAN BENITO WY,San Francisco,94127,B08,39,8563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7360173089353, -122.467155770861)",160083538-60 -132150280,E09,13072694,Medical Incident,08/03/2013,08/03/2013,08/03/2013 04:46:04 PM,08/03/2013 04:49:55 PM,08/03/2013 04:50:20 PM,08/03/2013 04:51:25 PM,08/03/2013 04:55:41 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 05:06:11 PM,CESAR CHAVEZ ST/FOLSOM ST,SF,94110,B06,9,5622,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7482553292633, -122.413668845654)",132150280-E09 -140160361,E01,14005623,Alarms,01/16/2014,01/16/2014,01/16/2014 07:59:35 PM,01/16/2014 08:00:32 PM,01/16/2014 08:00:58 PM,01/16/2014 08:01:27 PM,01/16/2014 08:04:19 PM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,Other,01/16/2014 08:08:43 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",140160361-E01 -160721865,75,16028614,Medical Incident,03/12/2016,03/12/2016,03/12/2016 02:18:27 PM,03/12/2016 02:19:06 PM,03/12/2016 02:19:22 PM,03/12/2016 02:19:34 PM,03/12/2016 02:24:38 PM,03/12/2016 02:51:54 PM,03/12/2016 03:04:13 PM,Code 2 Transport,03/12/2016 03:50:57 PM,1400 Block of FILLMORE ST,San Francisco,94115,B05,5,3536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",160721865-75 -160431910,63,16017314,Medical Incident,02/12/2016,02/12/2016,02/12/2016 01:47:48 PM,02/12/2016 01:49:19 PM,02/12/2016 01:49:45 PM,02/12/2016 01:50:15 PM,02/12/2016 01:59:17 PM,02/12/2016 02:33:06 PM,02/12/2016 02:57:23 PM,Code 2 Transport,02/12/2016 03:33:05 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7186167492521, -122.396976655931)",160431910-63 -160170822,74,16006746,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:37:00 AM,01/17/2016 08:37:46 AM,01/17/2016 08:38:09 AM,01/17/2016 08:39:00 AM,01/17/2016 08:42:41 AM,01/17/2016 08:58:43 AM,01/17/2016 09:13:27 AM,Code 2 Transport,01/17/2016 09:45:56 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160170822-74 -160051858,89,16002011,Medical Incident,01/05/2016,01/05/2016,01/05/2016 01:34:50 PM,01/05/2016 01:36:32 PM,01/05/2016 01:37:07 PM,01/05/2016 01:37:38 PM,01/05/2016 01:44:12 PM,01/05/2016 02:28:54 PM,01/05/2016 02:28:59 PM,Code 2 Transport,01/05/2016 02:59:52 PM,600 Block of GEARY ST,San Francisco,94102,B01,3,1462,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7865705542086, -122.413973061638)",160051858-89 -140460310,T13,14015772,Elevator / Escalator Rescue,02/15/2014,02/15/2014,02/15/2014 07:21:23 PM,02/15/2014 07:22:33 PM,02/15/2014 07:22:42 PM,02/15/2014 07:23:59 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Fire,02/15/2014 08:18:53 PM,0 Block of GRANT AVE,SF,94108,B01,1,1321,,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",140460310-T13 -160120943,60,16004698,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:19:58 AM,01/12/2016 09:22:45 AM,01/12/2016 09:22:55 AM,01/12/2016 09:24:40 AM,01/12/2016 09:33:11 AM,01/12/2016 09:47:42 AM,01/12/2016 10:03:48 AM,Code 2 Transport,01/12/2016 10:43:36 AM,400 Block of VICTORIA ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7188013889707, -122.465418721432)",160120943-60 -160121760,KM04,16004784,Medical Incident,01/12/2016,01/12/2016,01/12/2016 01:01:36 PM,01/12/2016 01:02:28 PM,01/12/2016 01:04:35 PM,01/12/2016 01:05:17 PM,01/12/2016 01:13:35 PM,01/12/2016 01:38:06 PM,01/12/2016 01:52:37 PM,Code 2 Transport,01/12/2016 02:15:20 PM,0 Block of ELGIN PK,San Francisco,94103,B02,36,5126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7706578719824, -122.423156759842)",160121760-KM04 -140010566,E01,14000478,Alarms,01/01/2014,01/01/2014,01/01/2014 09:27:13 PM,01/01/2014 09:29:22 PM,01/01/2014 09:29:34 PM,01/01/2014 09:30:12 PM,01/01/2014 09:32:27 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/01/2014 09:39:25 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.781960649289, -122.402224095303)",140010566-E01 -160331190,KM04,16012921,Medical Incident,02/02/2016,02/02/2016,02/02/2016 10:38:45 AM,02/02/2016 10:39:50 AM,02/02/2016 10:40:36 AM,02/02/2016 10:41:08 AM,02/02/2016 10:44:27 AM,02/02/2016 10:56:24 AM,02/02/2016 11:00:37 AM,Code 2 Transport,02/02/2016 11:49:29 AM,2200 Block of OFARRELL ST,San Francisco,94115,B05,10,4236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",160331190-KM04 -121530189,E17,12050643,Structure Fire,06/01/2012,06/01/2012,06/01/2012 02:21:02 PM,06/01/2012 02:21:03 PM,06/01/2012 02:21:10 PM,06/01/2012 02:22:00 PM,06/01/2012 02:24:57 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 02:25:16 PM,HUDSON AV/ARDATH CT,SF,94124,B10,17,6624,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",121530189-E17 -140400315,66,14013688,Traffic Collision,02/09/2014,02/09/2014,02/09/2014 06:05:47 PM,02/09/2014 06:05:47 PM,02/09/2014 06:07:19 PM,02/09/2014 06:07:24 PM,02/09/2014 06:10:16 PM,02/09/2014 06:27:52 PM,02/09/2014 07:17:18 PM,Code 2 Transport,02/09/2014 07:27:50 PM,900 Block of HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7812278491456, -122.405374893272)",140400315-66 -133390359,93,13115033,Medical Incident,12/05/2013,12/05/2013,12/05/2013 08:59:55 PM,12/05/2013 09:02:50 PM,12/05/2013 09:11:49 PM,12/05/2013 09:12:13 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 09:29:43 PM,1100 Block of MARKET ST,SF,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",133390359-93 -111550396,RC3,11051413,Medical Incident,06/04/2011,06/04/2011,06/04/2011 11:25:56 PM,06/04/2011 11:28:03 PM,06/04/2011 11:28:31 PM,04/25/2016 02:04:18 PM,06/04/2011 11:35:19 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 12:00:04 AM,22ND ST/MISSION ST,SF,94110,B06,7,5472,2,2,2,true,,1,RESCUE CAPTAIN,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",111550396-RC3 -131160226,E18,13039120,Medical Incident,04/26/2013,04/26/2013,04/26/2013 06:18:09 PM,04/26/2013 06:19:41 PM,04/26/2013 06:24:24 PM,04/26/2013 06:26:19 PM,04/26/2013 06:28:44 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 06:55:54 PM,2600 Block of JUDAH ST,SF,94122,B08,23,7541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7611653096685, -122.490391943862)",131160226-E18 -160123689,AM24,16004976,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:13:20 PM,01/12/2016 10:13:20 PM,01/12/2016 10:15:06 PM,01/12/2016 10:15:42 PM,01/12/2016 10:20:31 PM,01/12/2016 10:41:43 PM,01/12/2016 10:53:16 PM,Code 2 Transport,01/12/2016 11:12:13 PM,1900 Block of MISSION ST,San Francisco,94103,B02,36,5279,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",160123689-AM24 -130370208,E34,13012713,Medical Incident,02/06/2013,02/06/2013,02/06/2013 02:19:37 PM,02/06/2013 02:21:58 PM,02/06/2013 02:22:13 PM,02/06/2013 02:23:08 PM,02/06/2013 02:27:36 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 02:32:49 PM,FULTON ST/GREAT HY,SF,94121,B08,23,7722,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7713424988011, -122.511053754552)",130370208-E34 -130420230,KM09,13014361,Medical Incident,02/11/2013,02/11/2013,02/11/2013 02:59:59 PM,02/11/2013 03:03:17 PM,02/11/2013 03:05:03 PM,02/11/2013 03:05:30 PM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,Patient Declined Transport,02/11/2013 03:19:33 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",130420230-KM09 -140190337,RS1,14006672,Medical Incident,01/19/2014,01/19/2014,01/19/2014 09:27:54 PM,01/19/2014 09:28:31 PM,01/19/2014 09:29:26 PM,01/19/2014 09:31:13 PM,01/19/2014 09:34:28 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/19/2014 09:37:07 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",140190337-RS1 -102450431,RC3,10077518,Medical Incident,09/02/2010,09/02/2010,09/02/2010 07:47:36 PM,09/02/2010 07:49:09 PM,09/02/2010 07:50:15 PM,09/02/2010 07:52:34 PM,09/02/2010 08:00:15 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/02/2010 08:07:47 PM,0 Block of TEDDY AVE,SF,94134,B10,44,6265,3,3,3,true,,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.713430704116, -122.403252361212)",102450431-RC3 -122030146,RS2,12067433,HazMat,07/21/2012,07/21/2012,07/21/2012 11:00:03 AM,07/21/2012 11:00:51 AM,07/21/2012 11:02:42 AM,07/21/2012 11:03:03 AM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 11:10:48 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",122030146-RS2 -102360450,E43,10074531,Medical Incident,08/24/2010,08/24/2010,08/24/2010 09:30:16 PM,08/24/2010 09:31:50 PM,08/24/2010 09:34:42 PM,08/24/2010 09:35:54 PM,08/24/2010 09:37:14 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/24/2010 09:56:34 PM,1000 Block of BRAZIL AVE,SF,94112,B09,43,6163,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7207283438447, -122.426391940904)",102360450-E43 -130340055,D2,13011512,Structure Fire,02/03/2013,02/02/2013,02/03/2013 03:33:48 AM,02/03/2013 03:34:39 AM,02/03/2013 03:36:12 AM,02/03/2013 03:38:37 AM,02/03/2013 03:40:14 AM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 03:42:51 AM,1700 Block of TURK ST,SF,94115,B05,5,4152,3,3,3,false,Alarm,1,CHIEF,5,5,5,Western Addition,"(37.7797619094783, -122.43747246849)",130340055-D2 -132960303,KM07,13100711,Medical Incident,10/23/2013,10/23/2013,10/23/2013 09:30:57 PM,10/23/2013 09:31:20 PM,10/23/2013 09:31:28 PM,10/23/2013 09:33:01 PM,10/23/2013 09:34:37 PM,10/23/2013 09:49:19 PM,10/23/2013 09:59:45 PM,Code 2 Transport,10/23/2013 10:35:10 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",132960303-KM07 -110300332,82,11009984,Medical Incident,01/30/2011,01/30/2011,01/30/2011 08:13:29 PM,01/30/2011 08:15:16 PM,01/30/2011 08:15:22 PM,01/30/2011 08:15:53 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/30/2011 08:17:18 PM,1100 Block of DE HARO ST,SF,94107,B10,37,2561,3,1,2,true,,1,MEDIC,3,10,10,Potrero Hill,"(37.7559025882179, -122.400816594989)",110300332-82 -110530371,92,11017678,Medical Incident,02/22/2011,02/22/2011,02/22/2011 10:59:20 PM,02/22/2011 11:01:13 PM,02/22/2011 11:01:32 PM,02/22/2011 11:01:55 PM,02/22/2011 11:05:11 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 11:09:42 PM,COLE ST/HAIGHT ST,SF,94117,B05,12,4545,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",110530371-92 -160053858,85,16002205,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:36:00 PM,01/05/2016 11:36:47 PM,01/05/2016 11:37:09 PM,01/05/2016 11:37:31 PM,01/05/2016 11:40:30 PM,01/05/2016 11:51:03 PM,01/05/2016 11:53:38 PM,Code 2 Transport,01/06/2016 12:30:30 AM,CEDAR ST/POLK ST,San Francisco,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",160053858-85 -113280090,71,11108805,Medical Incident,11/24/2011,11/24/2011,11/24/2011 09:32:00 AM,11/24/2011 09:32:24 AM,11/24/2011 09:34:13 AM,04/25/2016 02:01:29 PM,11/24/2011 09:37:07 AM,11/24/2011 09:57:19 AM,11/24/2011 10:23:14 AM,Code 2 Transport,11/24/2011 10:40:33 AM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7732180675925, -122.421522300696)",113280090-71 -160083066,58,16003360,Medical Incident,01/08/2016,01/08/2016,01/08/2016 06:19:38 PM,01/08/2016 06:20:12 PM,01/08/2016 06:20:55 PM,01/08/2016 06:21:10 PM,01/08/2016 06:27:02 PM,01/08/2016 06:43:43 PM,01/08/2016 06:56:48 PM,Code 2 Transport,01/08/2016 07:34:17 PM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7851245205483, -122.410307742137)",160083066-58 -160632504,89,16025148,Medical Incident,03/03/2016,03/03/2016,03/03/2016 04:12:36 PM,03/03/2016 04:14:29 PM,03/03/2016 04:14:43 PM,03/03/2016 04:15:42 PM,03/03/2016 04:25:24 PM,03/03/2016 05:02:53 PM,03/03/2016 05:18:33 PM,Code 2 Transport,03/03/2016 05:36:57 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160632504-89 -130240112,E03,13008238,Medical Incident,01/24/2013,01/24/2013,01/24/2013 09:42:58 AM,01/24/2013 09:43:57 AM,01/24/2013 09:44:03 AM,01/24/2013 09:44:18 AM,01/24/2013 09:45:39 AM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,No Merit,01/24/2013 09:49:57 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",130240112-E03 -140630267,E01,14021342,Medical Incident,03/04/2014,03/04/2014,03/04/2014 04:02:00 PM,03/04/2014 04:03:05 PM,03/04/2014 04:04:43 PM,03/04/2014 04:04:43 PM,03/04/2014 04:06:46 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,No Merit,03/04/2014 04:07:33 PM,100 Block of LANGTON ST,SF,94103,B03,8,2312,3,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7755325814084, -122.407486364653)",140630267-E01 -160152159,62,16006021,Medical Incident,01/15/2016,01/15/2016,01/15/2016 02:30:02 PM,01/15/2016 02:30:02 PM,01/15/2016 02:31:07 PM,01/15/2016 02:31:28 PM,01/15/2016 02:44:32 PM,01/15/2016 03:09:23 PM,01/15/2016 03:16:33 PM,Code 2 Transport,01/15/2016 03:43:25 PM,2700 Block of GOLDEN GATE AVE,San Francisco,94118,B07,21,4557,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7769799077667, -122.455945571982)",160152159-62 -110370028,87,11012063,Medical Incident,02/06/2011,02/05/2011,02/06/2011 01:33:14 AM,02/06/2011 01:35:07 AM,02/06/2011 01:35:23 AM,02/06/2011 01:35:51 AM,02/06/2011 01:39:13 AM,02/06/2011 01:53:01 AM,02/06/2011 01:56:17 AM,Code 2 Transport,02/06/2011 02:12:58 AM,GOLDEN GATE AV/ARGUELLO BL,SF,94118,B07,31,7112,3,3,3,true,,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.77619040409, -122.45850463571)",110370028-87 -131860285,87,13063519,Medical Incident,07/05/2013,07/05/2013,07/05/2013 04:39:41 PM,07/05/2013 04:41:31 PM,07/05/2013 04:43:34 PM,07/05/2013 04:44:38 PM,07/05/2013 04:48:43 PM,07/05/2013 05:09:42 PM,07/05/2013 05:24:24 PM,Code 2 Transport,07/05/2013 06:04:26 PM,500 Block of CABRILLO ST,SF,94118,B07,31,7132,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7752901183585, -122.464404888544)",131860285-87 -130680418,AM18,13022880,Medical Incident,03/09/2013,03/09/2013,03/09/2013 11:34:06 PM,03/09/2013 11:36:35 PM,03/09/2013 11:36:56 PM,03/09/2013 11:37:47 PM,03/09/2013 11:49:13 PM,03/09/2013 11:56:02 PM,03/10/2013 12:04:39 AM,Other,03/10/2013 12:42:44 AM,100 Block of LEXINGTON ST,SF,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7609516880998, -122.420667147384)",130680418-AM18 -120860304,B07,12028660,Structure Fire,03/26/2012,03/26/2012,03/26/2012 07:45:42 PM,03/26/2012 07:46:07 PM,03/26/2012 07:46:32 PM,03/26/2012 07:47:28 PM,03/26/2012 07:51:58 PM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 08:10:10 PM,1800 Block of DIVISADERO ST,SF,94115,B04,10,4156,3,3,3,false,Fire,1,CHIEF,8,4,2,Pacific Heights,"(37.7866611138334, -122.440038591399)",120860304-B07 -113110296,83,11103435,Medical Incident,11/07/2011,11/07/2011,11/07/2011 06:59:42 PM,11/07/2011 07:00:23 PM,11/07/2011 07:00:33 PM,11/07/2011 07:01:08 PM,11/07/2011 07:09:46 PM,11/07/2011 07:29:55 PM,11/07/2011 07:39:32 PM,Code 2 Transport,11/07/2011 07:49:21 PM,0 Block of BEALE ST,SF,94105,B03,13,2125,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7917404337271, -122.396647503187)",113110296-83 -160333028,70,16013133,Medical Incident,02/02/2016,02/02/2016,02/02/2016 07:28:08 PM,02/02/2016 07:28:28 PM,02/02/2016 07:30:49 PM,02/02/2016 07:31:00 PM,02/02/2016 07:34:44 PM,02/02/2016 07:41:39 PM,02/02/2016 08:01:39 PM,Code 3 Transport,02/02/2016 08:15:29 PM,EGBERT AV/INGALLS ST,San Francisco,94124,B10,17,6615,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7215998531098, -122.390745341619)",160333028-70 -130820047,T02,13027345,Structure Fire,03/23/2013,03/22/2013,03/23/2013 02:50:44 AM,03/23/2013 02:51:59 AM,03/23/2013 02:52:14 AM,03/23/2013 02:53:58 AM,03/23/2013 02:56:46 AM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Other,03/23/2013 04:00:58 AM,500 Block of COMMERCIAL ST,SF,94111,B01,13,1166,3,3,3,false,Fire,1,TRUCK,4,1,3,Chinatown,"(37.7943201279675, -122.402666683256)",130820047-T02 -160720264,83,16028449,Medical Incident,03/12/2016,03/11/2016,03/12/2016 01:51:29 AM,03/12/2016 01:52:14 AM,03/12/2016 01:53:13 AM,03/12/2016 01:53:32 AM,03/12/2016 02:07:13 AM,03/12/2016 02:27:41 AM,03/12/2016 02:36:42 AM,Code 2 Transport,03/12/2016 03:05:34 AM,0 Block of GLADSTONE DR,San Francisco,94134,B09,32,5685,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Excelsior,"(37.7303887830591, -122.420169515514)",160720264-83 -103000119,T08,10095719,Traffic Collision,10/27/2010,10/27/2010,10/27/2010 10:13:28 AM,10/27/2010 10:14:59 AM,10/27/2010 10:15:25 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 10:39:18 AM,TOWNSEND ST/4TH ST,SF,94107,B03,8,2224,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7770893320016, -122.394981482757)",103000119-T08 -132090261,E18,13070756,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:39:40 PM,07/28/2013 04:41:49 PM,07/28/2013 04:42:35 PM,07/28/2013 04:43:39 PM,07/28/2013 04:48:18 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 04:53:30 PM,2500 Block of 41ST AVE,SF,94116,B08,18,7637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392114618851, -122.499135486789)",132090261-E18 -122270095,78,12075189,Medical Incident,08/14/2012,08/14/2012,08/14/2012 10:11:19 AM,08/14/2012 10:12:21 AM,08/14/2012 10:12:47 AM,08/14/2012 10:13:09 AM,08/14/2012 10:25:15 AM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Patient Declined Transport,08/14/2012 10:54:05 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",122270095-78 -160662746,68,16026490,Medical Incident,03/06/2016,03/06/2016,03/06/2016 06:57:15 PM,03/06/2016 06:58:16 PM,03/06/2016 06:58:40 PM,03/06/2016 06:58:54 PM,03/06/2016 07:00:30 PM,03/06/2016 07:16:17 PM,03/06/2016 07:20:46 PM,Code 2 Transport,03/06/2016 07:58:09 PM,1300 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",160662746-68 -102430104,99,10076571,Medical Incident,08/31/2010,08/31/2010,08/31/2010 09:20:53 AM,08/31/2010 09:23:33 AM,08/31/2010 09:23:56 AM,08/31/2010 09:26:07 AM,08/31/2010 09:29:08 AM,08/31/2010 09:46:56 AM,08/31/2010 10:04:18 AM,Code 2 Transport,08/31/2010 10:35:15 AM,4400 Block of IRVING ST,SF,94122,B08,23,7721,3,3,3,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",102430104-99 -111740245,AM08,11057448,Medical Incident,06/23/2011,06/23/2011,06/23/2011 05:11:06 PM,06/23/2011 05:12:57 PM,06/23/2011 05:13:32 PM,06/23/2011 05:14:18 PM,06/23/2011 05:20:28 PM,06/23/2011 05:42:43 PM,06/23/2011 05:51:03 PM,Code 2 Transport,06/23/2011 06:25:24 PM,600 Block of LYON ST,SF,94117,B05,21,4346,1,1,2,false,,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7767038929732, -122.443158415512)",111740245-AM08 -121410229,59,12046881,Medical Incident,05/20/2012,05/20/2012,05/20/2012 01:55:22 PM,05/20/2012 01:55:39 PM,05/20/2012 01:55:53 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 01:59:47 PM,100 Block of JOHN F KENNEDY DR,SF,94122,B05,12,4554,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7711332354432, -122.457507583541)",121410229-59 -160111168,52,16004339,Medical Incident,01/11/2016,01/11/2016,01/11/2016 10:38:57 AM,01/11/2016 10:40:21 AM,01/11/2016 10:41:20 AM,01/11/2016 10:41:43 AM,01/11/2016 10:51:23 AM,01/11/2016 11:23:39 AM,01/11/2016 11:40:48 AM,Code 2 Transport,01/11/2016 12:08:10 PM,1600 Block of BRYANT ST,San Francisco,94103,B02,29,5222,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7662587674103, -122.410479250127)",160111168-52 -111620350,83,11053643,Medical Incident,06/11/2011,06/11/2011,06/11/2011 10:01:17 PM,06/11/2011 10:02:42 PM,06/11/2011 10:02:49 PM,06/11/2011 10:02:58 PM,06/11/2011 10:08:11 PM,06/11/2011 10:16:05 PM,06/11/2011 10:33:02 PM,Code 2 Transport,06/11/2011 10:49:59 PM,HARRIET ST/HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7793184597995, -122.407691082986)",111620350-83 -160213572,78,16008535,Medical Incident,01/21/2016,01/21/2016,01/21/2016 07:58:37 PM,01/21/2016 07:58:37 PM,01/21/2016 07:59:17 PM,01/21/2016 08:00:32 PM,01/21/2016 08:08:38 PM,01/21/2016 08:29:33 PM,01/21/2016 08:51:28 PM,Code 2 Transport,01/21/2016 09:28:58 PM,200 Block of PRAGUE ST,San Francisco,94112,B09,43,6165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7181331423578, -122.427722716773)",160213572-78 -140380126,KM01,14012773,Medical Incident,02/07/2014,02/07/2014,02/07/2014 10:24:23 AM,02/07/2014 10:26:28 AM,02/07/2014 10:27:24 AM,02/07/2014 10:28:02 AM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 10:28:35 AM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",140380126-KM01 -133070160,E02,13104362,Medical Incident,11/03/2013,11/03/2013,11/03/2013 11:22:05 AM,11/03/2013 11:28:56 AM,11/03/2013 11:30:32 AM,11/03/2013 11:34:49 AM,11/03/2013 11:35:50 AM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/03/2013 11:48:12 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",133070160-E02 -160732860,AM14,16029118,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:28:53 PM,03/13/2016 09:28:53 PM,03/13/2016 09:33:05 PM,03/13/2016 09:33:28 PM,03/13/2016 09:38:28 PM,03/13/2016 09:59:31 PM,03/13/2016 10:22:44 PM,Code 2 Transport,03/13/2016 10:44:33 PM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",160732860-AM14 -131930244,E48,13065702,Traffic Collision,07/12/2013,07/12/2013,07/12/2013 05:18:04 PM,07/12/2013 05:19:32 PM,07/12/2013 05:20:08 PM,07/12/2013 05:22:02 PM,07/12/2013 05:33:43 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 06:06:37 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",131930244-E48 -160011401,75,16000249,Medical Incident,01/01/2016,01/01/2016,01/01/2016 08:53:26 AM,01/01/2016 08:54:38 AM,01/01/2016 08:54:57 AM,01/01/2016 08:55:02 AM,01/01/2016 09:09:03 AM,01/01/2016 09:53:30 AM,01/01/2016 10:32:27 AM,Code 2 Transport,01/01/2016 11:17:14 AM,500 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",160011401-75 -133270403,E29,13111262,Medical Incident,11/23/2013,11/23/2013,11/23/2013 09:27:20 PM,11/23/2013 09:27:43 PM,11/23/2013 09:38:56 PM,11/23/2013 09:40:15 PM,11/23/2013 09:41:51 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 10:03:34 PM,0 Block of CAROLINA ST,SF,94107,B03,29,2362,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,10,Mission Bay,"(37.7679387012306, -122.400989022999)",133270403-E29 -160162305,58,16006479,Medical Incident,01/16/2016,01/16/2016,01/16/2016 03:52:38 PM,01/16/2016 03:54:44 PM,01/16/2016 03:55:03 PM,01/16/2016 03:55:13 PM,01/16/2016 04:04:14 PM,01/16/2016 04:19:39 PM,01/16/2016 04:28:37 PM,Code 2 Transport,01/16/2016 04:53:16 PM,100 Block of BOSWORTH ST,San Francisco,94112,B06,32,5633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,8,Outer Mission,"(37.7334588269513, -122.428119241701)",160162305-58 -103530040,E16,10113195,Medical Incident,12/19/2010,12/18/2010,12/19/2010 01:25:22 AM,12/19/2010 01:26:27 AM,12/19/2010 01:27:31 AM,12/19/2010 01:29:00 AM,12/19/2010 01:31:37 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,No Merit,12/19/2010 01:40:09 AM,3600 Block of BUCHANAN ST,SF,94123,B04,16,3446,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8035364991115, -122.433494688087)",103530040-E16 -111290134,RC1,11042619,Medical Incident,05/09/2011,05/09/2011,05/09/2011 12:02:35 PM,05/09/2011 12:04:17 PM,05/09/2011 12:04:29 PM,05/09/2011 12:05:50 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Other,05/09/2011 12:33:58 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,E,2,2,true,,1,RESCUE CAPTAIN,2,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",111290134-RC1 -160292159,74,16011481,Medical Incident,01/29/2016,01/29/2016,01/29/2016 03:02:21 PM,01/29/2016 03:03:07 PM,01/29/2016 03:03:21 PM,01/29/2016 03:03:43 PM,01/29/2016 03:05:17 PM,01/29/2016 03:13:17 PM,01/29/2016 03:23:03 PM,Code 2 Transport,01/29/2016 04:09:48 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160292159-74 -112630164,E03,11086803,Medical Incident,09/20/2011,09/20/2011,09/20/2011 10:57:47 AM,09/20/2011 11:00:01 AM,09/20/2011 11:00:38 AM,09/20/2011 11:02:02 AM,09/20/2011 11:01:57 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/20/2011 11:08:48 AM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,,1,ENGINE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",112630164-E03 -160133089,58,16005288,Medical Incident,01/13/2016,01/13/2016,01/13/2016 05:25:57 PM,01/13/2016 05:31:41 PM,01/13/2016 05:32:01 PM,01/13/2016 05:32:19 PM,01/13/2016 05:32:22 PM,01/13/2016 05:37:45 PM,01/13/2016 05:50:28 PM,Code 2 Transport,01/13/2016 06:08:09 PM,900 Block of BRANNAN ST,San Francisco,94103,B03,29,2330,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7707119826907, -122.406261949572)",160133089-58 -160193589,KM03,16007808,Medical Incident,01/19/2016,01/19/2016,01/19/2016 09:46:40 PM,01/19/2016 09:47:31 PM,01/19/2016 09:47:49 PM,01/19/2016 09:48:20 PM,01/19/2016 09:52:50 PM,01/19/2016 10:15:05 PM,01/19/2016 10:20:35 PM,Code 2 Transport,01/19/2016 10:48:59 PM,1900 Block of VAN NESS AVE,San Francisco,94109,B04,41,3153,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Russian Hill,"(37.7935141253124, -122.422789161737)",160193589-KM03 -160643170,65,16025637,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:42:56 PM,03/04/2016 06:42:56 PM,03/04/2016 06:45:22 PM,03/04/2016 06:51:49 PM,03/04/2016 07:07:51 PM,03/04/2016 07:22:53 PM,03/04/2016 08:04:05 PM,Code 2 Transport,03/04/2016 08:47:09 PM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",160643170-65 -140130222,T01,14004487,Citizen Assist / Service Call,01/13/2014,01/13/2014,01/13/2014 02:18:27 PM,01/13/2014 02:19:18 PM,01/13/2014 02:19:28 PM,01/13/2014 02:21:12 PM,01/13/2014 02:23:01 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Fire,01/13/2014 02:26:46 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",140130222-T01 -111870246,67,11061872,Medical Incident,07/06/2011,07/06/2011,07/06/2011 03:25:06 PM,07/06/2011 03:26:14 PM,07/06/2011 03:26:46 PM,07/06/2011 03:27:21 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 03:30:39 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,MEDIC,3,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",111870246-67 -112660121,E02,11087836,Medical Incident,09/23/2011,09/23/2011,09/23/2011 10:12:48 AM,09/23/2011 10:15:17 AM,09/23/2011 10:16:08 AM,09/23/2011 10:17:06 AM,09/23/2011 10:20:00 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 10:38:47 AM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7950325698412, -122.407793068572)",112660121-E02 -122100348,E35,12069911,Alarms,07/28/2012,07/28/2012,07/28/2012 10:34:02 PM,07/28/2012 10:35:16 PM,07/28/2012 10:35:31 PM,07/28/2012 10:36:22 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 10:58:20 PM,200 Block of THE EMBARCADERO,SF,94111,B01,13,903,3,3,3,true,Alarm,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",122100348-E35 -123160063,T02,12105064,Alarms,11/11/2012,11/10/2012,11/11/2012 05:35:28 AM,11/11/2012 05:37:25 AM,11/11/2012 05:37:52 AM,11/11/2012 05:39:57 AM,11/11/2012 05:42:14 AM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/11/2012 05:45:58 AM,800 Block of COLUMBUS AVE,SF,94133,B01,28,1423,3,3,3,false,Alarm,1,TRUCK,3,1,3,Russian Hill,"(37.8024220415516, -122.413358845822)",123160063-T02 -160061335,64,16002356,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:01:01 AM,01/06/2016 11:01:34 AM,01/06/2016 11:02:30 AM,01/06/2016 11:02:55 AM,01/06/2016 11:08:45 AM,01/06/2016 11:28:50 AM,01/06/2016 11:37:32 AM,Code 2 Transport,01/06/2016 12:18:43 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",160061335-64 -160140174,AM18,16005410,Medical Incident,01/14/2016,01/13/2016,01/14/2016 01:46:44 AM,01/14/2016 01:48:21 AM,01/14/2016 01:48:40 AM,01/14/2016 01:49:06 AM,01/14/2016 01:54:03 AM,01/14/2016 02:08:47 AM,01/14/2016 02:28:02 AM,Code 2 Transport,01/14/2016 02:52:39 AM,0 Block of SALMON ST,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7965569039211, -122.412544215854)",160140174-AM18 -133270252,B07,13111121,Structure Fire,11/23/2013,11/23/2013,11/23/2013 02:31:50 PM,11/23/2013 02:32:09 PM,11/23/2013 02:32:23 PM,11/23/2013 02:32:59 PM,11/23/2013 02:41:31 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 04:39:10 PM,3600 Block of SACRAMENTO ST,SF,94118,B07,10,4432,3,3,3,false,Fire,3,CHIEF,9,7,2,Presidio Heights,"(37.7873936866832, -122.452758503157)",133270252-B07 -121100319,AM14,12036493,Medical Incident,04/19/2012,04/19/2012,04/19/2012 06:53:53 PM,04/19/2012 06:55:29 PM,04/19/2012 06:55:44 PM,04/19/2012 06:56:24 PM,04/19/2012 07:06:36 PM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/19/2012 07:43:15 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",121100319-AM14 -130400252,KM06,13013726,Medical Incident,02/09/2013,02/09/2013,02/09/2013 04:01:50 PM,02/09/2013 04:03:54 PM,02/09/2013 04:04:27 PM,02/09/2013 04:06:10 PM,02/09/2013 04:10:38 PM,02/09/2013 04:41:50 PM,02/09/2013 04:57:46 PM,Code 2 Transport,02/09/2013 05:29:47 PM,GOUGH ST/HAIGHT ST,SF,94102,B02,36,3311,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7731517441996, -122.422229369585)",130400252-KM06 -160813122,53,16032304,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:29:55 PM,03/21/2016 06:30:40 PM,03/21/2016 06:32:23 PM,03/21/2016 06:32:33 PM,03/21/2016 06:37:01 PM,03/21/2016 06:47:07 PM,03/21/2016 07:20:52 PM,Code 2 Transport,03/21/2016 07:45:41 PM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160813122-53 -111220147,92,11040289,Medical Incident,05/02/2011,05/02/2011,05/02/2011 10:43:52 AM,05/02/2011 10:44:58 AM,05/02/2011 10:45:28 AM,05/02/2011 10:45:48 AM,05/02/2011 10:51:59 AM,05/02/2011 11:12:42 AM,05/02/2011 11:41:02 AM,Code 2 Transport,05/02/2011 12:08:37 PM,900 Block of SCOTT ST,SF,94115,B05,5,4134,3,1,2,true,,1,MEDIC,2,5,5,Western Addition,"(37.7784807630017, -122.436722297211)",111220147-92 -130760156,KM01,13025363,Structure Fire,03/17/2013,03/17/2013,03/17/2013 11:12:44 AM,03/17/2013 11:12:45 AM,03/17/2013 11:14:34 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,No Merit,03/17/2013 11:15:29 AM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,false,Alarm,1,PRIVATE,3,3,6,South of Market,"(37.7820242662358, -122.401159719509)",130760156-KM01 -102720203,92,10086382,Medical Incident,09/29/2010,09/29/2010,09/29/2010 01:34:05 PM,09/29/2010 01:35:33 PM,09/29/2010 01:35:56 PM,09/29/2010 01:36:21 PM,09/29/2010 01:45:23 PM,09/29/2010 02:05:46 PM,09/29/2010 02:24:40 PM,Code 2 Transport,09/29/2010 02:45:46 PM,0 Block of MASON ST,SF,94102,B03,1,1365,1,1,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",102720203-92 -110920036,76,11030404,Medical Incident,04/02/2011,04/01/2011,04/02/2011 01:36:00 AM,04/02/2011 01:36:30 AM,04/02/2011 01:36:54 AM,04/02/2011 01:39:56 AM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,Other,04/25/2016 02:05:19 PM,100 Block of HOLLOWAY AVE,SF,94112,B09,15,8472,3,2,2,true,,1,MEDIC,3,9,7,Oceanview/Merced/Ingleside,"(37.721904919521, -122.454617025243)",110920036-76 -160341136,KM12,16013322,Medical Incident,02/03/2016,02/03/2016,02/03/2016 10:25:02 AM,02/03/2016 10:26:04 AM,02/03/2016 10:27:31 AM,02/03/2016 10:28:32 AM,02/03/2016 10:32:15 AM,02/03/2016 10:46:48 AM,02/03/2016 11:36:41 AM,Code 2 Transport,02/03/2016 11:50:20 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160341136-KM12 -110270296,T18,11008972,Medical Incident,01/27/2011,01/27/2011,01/27/2011 04:46:42 PM,01/27/2011 04:47:29 PM,01/27/2011 04:49:17 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 04:50:29 PM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,false,,1,TRUCK,4,8,4,Sunset/Parkside,"(37.7444820263748, -122.506894604858)",110270296-T18 -160192416,56,16007704,Medical Incident,01/19/2016,01/19/2016,01/19/2016 04:01:36 PM,01/19/2016 04:01:36 PM,01/19/2016 04:02:10 PM,01/19/2016 04:02:38 PM,01/19/2016 04:20:18 PM,01/19/2016 04:36:35 PM,01/19/2016 04:53:37 PM,Code 2 Transport,01/19/2016 05:19:37 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160192416-56 -120690265,E38,12022960,Medical Incident,03/09/2012,03/09/2012,03/09/2012 05:08:08 PM,03/09/2012 05:10:24 PM,03/09/2012 05:11:00 PM,03/09/2012 05:12:11 PM,03/09/2012 05:14:08 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,No Merit,03/09/2012 05:15:46 PM,1700 Block of SUTTER ST,SF,94115,B04,38,3433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",120690265-E38 -103110313,B03,10099858,Alarms,11/07/2010,11/07/2010,11/07/2010 07:53:41 PM,11/07/2010 07:55:22 PM,11/07/2010 07:55:32 PM,11/07/2010 07:56:47 PM,11/07/2010 07:59:22 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Fire,11/07/2010 08:03:15 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,false,,1,CHIEF,3,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",103110313-B03 -111050316,KM14,11034884,Traffic Collision,04/15/2011,04/15/2011,04/15/2011 08:37:19 PM,04/15/2011 08:38:24 PM,04/15/2011 08:38:46 PM,04/15/2011 08:39:36 PM,04/15/2011 08:46:19 PM,04/15/2011 09:00:38 PM,04/15/2011 09:05:28 PM,Code 2 Transport,04/15/2011 09:24:20 PM,IRVING ST/7TH AV,SF,94122,B08,22,7332,3,3,3,false,,1,PRIVATE,3,7,5,Inner Sunset,"(37.7641308708366, -122.46417202271)",111050316-KM14 -110320078,AM16,11010406,Medical Incident,02/01/2011,02/01/2011,02/01/2011 09:07:31 AM,02/01/2011 09:12:45 AM,02/01/2011 09:13:00 AM,02/01/2011 09:13:50 AM,02/01/2011 09:21:40 AM,02/01/2011 09:32:57 AM,02/01/2011 09:56:52 AM,Code 2 Transport,02/01/2011 10:27:37 AM,600 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,false,,1,PRIVATE,2,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",110320078-AM16 -111210129,B01,11039897,Alarms,05/01/2011,05/01/2011,05/01/2011 10:10:57 AM,05/01/2011 10:11:23 AM,05/01/2011 10:11:39 AM,05/01/2011 10:11:59 AM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Fire,05/01/2011 10:18:47 AM,600 Block of GEARY ST,SF,94109,B01,3,1462,3,3,3,false,,1,CHIEF,3,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",111210129-B01 -133580195,D3,13121719,Structure Fire,12/24/2013,12/24/2013,12/24/2013 01:25:00 PM,12/24/2013 01:25:56 PM,12/24/2013 01:26:23 PM,12/24/2013 01:27:40 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 01:30:58 PM,700 Block of VIENNA ST,SF,94112,B09,43,6157,3,3,3,false,Alarm,1,CHIEF,7,9,11,Excelsior,"(37.7165548488902, -122.433283057417)",133580195-D3 -120100375,E41,12003642,Structure Fire,01/10/2012,01/10/2012,01/10/2012 10:24:00 PM,01/10/2012 10:24:41 PM,01/10/2012 10:24:56 PM,01/10/2012 10:26:21 PM,01/10/2012 10:27:27 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 03:07:25 AM,800 Block of CLAY ST,SF,94108,B01,13,1313,3,3,3,false,Fire,1,ENGINE,1,1,3,Chinatown,"(37.7941136505366, -122.407046655058)",120100375-E41 -112270353,E07,11075162,Medical Incident,08/15/2011,08/15/2011,08/15/2011 07:18:04 PM,08/15/2011 07:19:39 PM,08/15/2011 07:19:57 PM,08/15/2011 07:20:57 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 07:27:01 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",112270353-E07 -120620334,84,12020523,Medical Incident,03/02/2012,03/02/2012,03/02/2012 08:32:51 PM,03/02/2012 08:33:49 PM,03/02/2012 08:34:07 PM,03/02/2012 08:34:18 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/02/2012 08:35:40 PM,0 Block of WALTER ST,SF,94114,B05,6,5131,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,5,8,Castro/Upper Market,"(37.7683848780008, -122.432450783401)",120620334-84 -122560016,T15,12084506,Structure Fire,09/12/2012,09/11/2012,09/12/2012 01:22:28 AM,09/12/2012 01:22:29 AM,09/12/2012 01:22:34 AM,09/12/2012 01:24:39 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 01:31:50 AM,100 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,false,Fire,1,TRUCK,5,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",122560016-T15 -160281508,52,16011061,Medical Incident,01/28/2016,01/28/2016,01/28/2016 11:50:51 AM,01/28/2016 11:54:21 AM,01/28/2016 11:54:26 AM,01/28/2016 11:54:38 AM,01/28/2016 12:03:25 PM,01/28/2016 12:15:45 PM,01/28/2016 12:34:28 PM,Code 2 Transport,01/28/2016 01:06:07 PM,1900 Block of FRANKLIN ST,San Francisco,94109,B04,38,3226,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.792412107081, -122.424360895464)",160281508-52 -160010219,KM08,16000037,Medical Incident,01/01/2016,12/31/2015,01/01/2016 12:47:44 AM,01/01/2016 12:48:18 AM,01/01/2016 01:23:06 AM,01/01/2016 01:23:26 AM,01/01/2016 01:34:10 AM,01/01/2016 01:42:30 AM,01/01/2016 01:56:41 AM,Code 2 Transport,01/01/2016 02:09:36 AM,400 Block of GOUGH ST,San Francisco,94102,B02,36,3265,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7771077210197, -122.42309400129)",160010219-KM08 -112430303,E02,11080224,Medical Incident,08/31/2011,08/31/2011,08/31/2011 06:24:28 PM,08/31/2011 06:27:08 PM,08/31/2011 06:27:18 PM,08/31/2011 06:27:50 PM,08/31/2011 06:48:07 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,08/31/2011 07:08:27 PM,400 Block of DAVIS CT,SF,94111,B01,13,1132,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7967073395076, -122.398186156213)",112430303-E02 -132840286,E32,13096710,Gas Leak (Natural and LP Gases),10/11/2013,10/11/2013,10/11/2013 06:56:33 PM,10/11/2013 06:58:22 PM,10/11/2013 06:58:36 PM,10/11/2013 07:01:01 PM,10/11/2013 07:03:02 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/11/2013 07:11:02 PM,100 Block of CHENERY ST,SF,94131,B06,32,8113,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7393855820858, -122.425747964011)",132840286-E32 -160271638,53,16010661,Medical Incident,01/27/2016,01/27/2016,01/27/2016 12:18:17 PM,01/27/2016 12:19:05 PM,01/27/2016 12:19:50 PM,01/27/2016 12:23:14 PM,01/27/2016 12:26:23 PM,01/27/2016 12:44:22 PM,01/27/2016 12:53:05 PM,Code 2 Transport,01/27/2016 01:34:47 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160271638-53 -160023549,KM07,16000961,Medical Incident,01/02/2016,01/02/2016,01/02/2016 10:57:35 PM,01/02/2016 10:58:16 PM,01/02/2016 10:58:33 PM,01/02/2016 10:59:54 PM,01/02/2016 11:04:54 PM,01/02/2016 11:30:43 PM,01/03/2016 12:09:23 AM,Code 2 Transport,01/03/2016 12:43:15 AM,1300 Block of 31ST AVE,San Francisco,94122,B08,23,7536,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7620676593975, -122.489849528292)",160023549-KM07 -130540117,KM01,13018203,Medical Incident,02/23/2013,02/23/2013,02/23/2013 10:53:30 AM,02/23/2013 10:54:57 AM,02/23/2013 10:55:08 AM,02/23/2013 10:57:55 AM,02/23/2013 11:04:51 AM,02/23/2013 11:18:18 AM,02/23/2013 11:35:43 AM,Code 2 Transport,02/23/2013 11:59:12 AM,0 Block of TURK ST,SF,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",130540117-KM01 -160523590,64,16021012,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:46:04 PM,02/21/2016 10:46:04 PM,02/21/2016 10:46:12 PM,02/21/2016 10:46:44 PM,02/21/2016 10:50:13 PM,02/21/2016 11:04:34 PM,02/21/2016 11:08:08 PM,Code 2 Transport,02/21/2016 11:53:26 PM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7693981235751, -122.451276976837)",160523590-64 -133520390,82,13119739,Medical Incident,12/18/2013,12/18/2013,12/18/2013 09:33:23 PM,12/18/2013 09:36:11 PM,12/18/2013 09:36:31 PM,12/18/2013 09:36:41 PM,12/18/2013 09:51:10 PM,12/18/2013 10:06:10 PM,12/18/2013 10:39:34 PM,Code 2 Transport,12/18/2013 11:04:09 PM,NEW MONTGOMERY ST/MISSION ST,SF,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",133520390-82 -123160252,E36,12105223,Medical Incident,11/11/2012,11/11/2012,11/11/2012 04:53:14 PM,11/11/2012 04:55:50 PM,11/11/2012 04:56:19 PM,11/11/2012 04:57:15 PM,11/11/2012 04:58:34 PM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,Other,11/11/2012 04:58:56 PM,SOUTH VAN NESS AV/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7751470741622, -122.419255607214)",123160252-E36 -122310369,RC1,12076774,Medical Incident,08/18/2012,08/18/2012,08/18/2012 11:13:33 PM,08/18/2012 11:14:53 PM,08/18/2012 11:15:11 PM,08/18/2012 11:22:35 PM,08/18/2012 11:26:47 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/19/2012 12:12:10 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122310369-RC1 -160393444,71,16015793,Medical Incident,02/08/2016,02/08/2016,02/08/2016 08:49:49 PM,02/08/2016 08:52:42 PM,02/08/2016 08:53:01 PM,02/08/2016 08:53:08 PM,02/08/2016 08:56:17 PM,02/08/2016 09:14:07 PM,02/08/2016 09:22:53 PM,Code 2 Transport,02/08/2016 09:59:00 PM,1300 Block of 5TH AVE,San Francisco,94122,B08,12,7326,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7632907518666, -122.462034637217)",160393444-71 -112750360,T02,11091164,Structure Fire,10/02/2011,10/02/2011,10/02/2011 08:59:52 PM,10/02/2011 09:01:49 PM,10/02/2011 09:01:55 PM,10/02/2011 09:03:21 PM,10/02/2011 09:10:25 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/02/2011 09:14:01 PM,1200 Block of JONES ST,SF,94109,B01,41,1465,3,3,3,false,,1,TRUCK,7,1,3,Nob Hill,"(37.7925546958216, -122.414405940495)",112750360-T02 -121490095,E07,12049391,Medical Incident,05/28/2012,05/28/2012,05/28/2012 08:42:43 AM,05/28/2012 08:44:21 AM,05/28/2012 08:46:10 AM,05/28/2012 08:47:53 AM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/28/2012 08:50:04 AM,1000 Block of YORK ST,SF,94110,B06,7,5474,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7552580412955, -122.408352038428)",121490095-E07 -120980298,E01,12032600,Medical Incident,04/07/2012,04/07/2012,04/07/2012 08:24:52 PM,04/07/2012 08:26:02 PM,04/07/2012 08:26:52 PM,04/07/2012 08:28:06 PM,04/07/2012 08:29:46 PM,04/25/2016 01:59:17 PM,04/25/2016 01:59:17 PM,No Merit,04/07/2012 08:33:06 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",120980298-E01 -122070068,78,12068737,Traffic Collision,07/25/2012,07/24/2012,07/25/2012 07:41:46 AM,07/25/2012 07:43:02 AM,07/25/2012 07:43:15 AM,04/25/2016 01:57:33 PM,07/25/2012 07:44:18 AM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,No Merit,07/25/2012 07:49:50 AM,GOUGH ST/HAYES ST,SF,94102,B02,36,3265,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7768835259362, -122.422978150089)",122070068-78 -160372900,KM05,16014812,Medical Incident,02/06/2016,02/06/2016,02/06/2016 05:21:37 PM,02/06/2016 05:23:49 PM,02/06/2016 05:24:48 PM,02/06/2016 05:25:21 PM,02/06/2016 05:36:54 PM,02/06/2016 05:40:03 PM,02/06/2016 06:17:23 PM,Code 2 Transport,02/06/2016 06:40:37 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160372900-KM05 -110240286,58,11007951,Medical Incident,01/24/2011,01/24/2011,01/24/2011 03:47:27 PM,01/24/2011 03:48:46 PM,01/24/2011 03:51:23 PM,01/24/2011 03:51:36 PM,01/24/2011 04:06:12 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/24/2011 04:40:00 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",110240286-58 -130570318,E20,13019288,Structure Fire,02/26/2013,02/26/2013,02/26/2013 10:47:47 PM,02/26/2013 10:49:34 PM,02/26/2013 10:49:56 PM,02/26/2013 10:51:34 PM,02/26/2013 10:53:49 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 10:57:39 PM,1400 Block of 10TH AVE,SF,94122,B08,22,7334,3,3,3,true,Alarm,1,ENGINE,3,8,7,Inner Sunset,"(37.7611931997962, -122.467256491478)",130570318-E20 -111360153,RC2,11045256,Medical Incident,05/16/2011,05/16/2011,05/16/2011 11:43:43 AM,05/16/2011 11:45:54 AM,05/16/2011 11:46:03 AM,04/25/2016 02:04:36 PM,05/16/2011 12:01:23 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 12:17:28 PM,900 Block of POWELL ST,SF,94108,B01,2,1355,3,3,3,true,,1,RESCUE CAPTAIN,5,1,3,Chinatown,"(37.793420180327, -122.409388683)",111360153-RC2 -122660263,E09,12087946,Medical Incident,09/22/2012,09/22/2012,09/22/2012 06:17:45 PM,09/22/2012 06:18:54 PM,09/22/2012 06:20:46 PM,09/22/2012 06:22:27 PM,09/22/2012 06:25:21 PM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 06:36:10 PM,24TH ST/HARRISON ST,SF,94110,B06,7,5533,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7526285917569, -122.41189982284)",122660263-E09 -133310344,B04,13112515,Alarms,11/27/2013,11/27/2013,11/27/2013 10:22:45 PM,11/27/2013 10:23:30 PM,11/27/2013 10:23:41 PM,11/27/2013 10:23:48 PM,11/27/2013 10:26:59 PM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/27/2013 10:36:43 PM,1700 Block of STEINER ST,SF,94115,B04,5,3622,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.785401441104, -122.434892168522)",133310344-B04 -121020157,83,12033796,Medical Incident,04/11/2012,04/11/2012,04/11/2012 12:02:47 PM,04/11/2012 12:03:43 PM,04/11/2012 12:04:03 PM,04/25/2016 01:59:13 PM,04/11/2012 12:04:15 PM,04/11/2012 12:18:40 PM,04/11/2012 12:56:47 PM,Code 2 Transport,04/11/2012 01:30:05 PM,800 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",121020157-83 -130520096,55,13017508,Medical Incident,02/21/2013,02/21/2013,02/21/2013 09:18:53 AM,02/21/2013 09:21:17 AM,02/21/2013 09:22:47 AM,02/21/2013 09:23:20 AM,02/21/2013 09:40:25 AM,02/21/2013 10:04:50 AM,02/21/2013 10:17:36 AM,Code 2 Transport,02/21/2013 10:55:17 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",130520096-55 -111860344,RS1,11061600,Medical Incident,07/05/2011,07/05/2011,07/05/2011 06:42:31 PM,07/05/2011 06:43:34 PM,07/05/2011 06:43:53 PM,07/05/2011 06:44:41 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 06:44:53 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,E,E,3,false,,1,RESCUE SQUAD,4,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",111860344-RS1 -132090171,86,13070672,Medical Incident,07/28/2013,07/28/2013,07/28/2013 12:04:22 PM,07/28/2013 12:04:36 PM,07/28/2013 12:05:28 PM,07/28/2013 12:05:37 PM,07/28/2013 12:10:59 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 12:30:16 PM,100 Block of DELANO AVE,SF,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.72589949077, -122.441045636439)",132090171-86 -120890340,AM10,12029604,Medical Incident,03/29/2012,03/29/2012,03/29/2012 09:55:40 PM,03/29/2012 09:55:52 PM,03/29/2012 09:57:29 PM,03/29/2012 09:58:21 PM,03/29/2012 10:10:04 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Patient Declined Transport,03/29/2012 10:16:32 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",120890340-AM10 -132850116,KM01,13096896,Medical Incident,10/12/2013,10/12/2013,10/12/2013 09:27:29 AM,10/12/2013 09:29:55 AM,10/12/2013 09:30:10 AM,10/12/2013 09:31:02 AM,10/12/2013 09:45:25 AM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Code 2 Transport,10/12/2013 11:01:18 AM,400 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",132850116-KM01 -132610273,T12,13088445,Vehicle Fire,09/18/2013,09/18/2013,09/18/2013 03:29:50 PM,09/18/2013 03:32:12 PM,09/18/2013 03:32:42 PM,09/18/2013 03:33:57 PM,09/18/2013 03:38:00 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 03:49:22 PM,7TH AV/LAWTON ST,SF,94122,B08,20,5377,3,3,3,false,Fire,1,TRUCK,2,8,7,Inner Sunset,"(37.7585381820078, -122.463781526954)",132610273-T12 -132280335,E06,13077083,Medical Incident,08/16/2013,08/16/2013,08/16/2013 06:16:33 PM,08/16/2013 06:18:01 PM,08/16/2013 06:20:38 PM,08/16/2013 06:21:59 PM,08/16/2013 06:24:29 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,Other,08/16/2013 06:55:16 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",132280335-E06 -103270268,RS1,10104837,Medical Incident,11/23/2010,11/23/2010,11/23/2010 05:12:17 PM,11/23/2010 05:12:29 PM,11/23/2010 05:12:44 PM,11/23/2010 05:13:48 PM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/23/2010 05:17:43 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,false,,1,RESCUE SQUAD,3,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",103270268-RS1 -113130067,88,11103907,Medical Incident,11/09/2011,11/08/2011,11/09/2011 07:19:07 AM,11/09/2011 07:20:45 AM,11/09/2011 07:21:01 AM,11/09/2011 07:21:12 AM,11/09/2011 07:27:27 AM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,Patient Declined Transport,11/09/2011 08:01:44 AM,2100 Block of 15TH AVE,SF,94116,B08,40,7362,E,E,3,true,,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7479066424618, -122.471615319161)",113130067-88 -70410380,B01,7012241,Alarms,02/10/2007,02/10/2007,02/10/2007 09:59:14 PM,02/10/2007 10:01:01 PM,02/10/2007 10:01:40 PM,02/10/2007 10:02:59 PM,02/10/2007 10:05:43 PM,04/25/2016 03:40:45 PM,04/25/2016 03:40:45 PM,Fire,02/10/2007 10:08:44 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,,1,CHIEF,2,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",070410380-B01 -121960081,E08,12065121,Outside Fire,07/14/2012,07/13/2012,07/14/2012 07:33:10 AM,07/14/2012 07:33:36 AM,07/14/2012 07:33:53 AM,07/14/2012 07:35:26 AM,07/14/2012 07:38:33 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/14/2012 07:40:39 AM,400 Block of THE EMBARCADERO,SF,94111,B03,35,926,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",121960081-E08 -131640269,T10,13055782,Alarms,06/13/2013,06/13/2013,06/13/2013 04:19:00 PM,06/13/2013 04:19:57 PM,06/13/2013 04:20:13 PM,06/13/2013 04:21:33 PM,06/13/2013 04:24:01 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/13/2013 04:24:39 PM,2900 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,false,Alarm,1,TRUCK,2,4,2,Pacific Heights,"(37.792966929515, -122.445655531194)",131640269-T10 -130880259,T13,13029431,Structure Fire,03/29/2013,03/29/2013,03/29/2013 02:47:08 PM,03/29/2013 02:49:18 PM,03/29/2013 02:49:44 PM,03/29/2013 02:51:10 PM,03/29/2013 02:52:25 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 03:00:32 PM,200 Block of MONTGOMERY ST,SF,94104,B01,13,1235,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7914249452441, -122.402544180964)",130880259-T13 -160813198,KM04,16032317,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:49:00 PM,03/21/2016 06:49:00 PM,03/21/2016 06:49:39 PM,03/21/2016 06:50:09 PM,03/21/2016 06:59:29 PM,03/21/2016 07:26:11 PM,03/21/2016 07:43:39 PM,Code 2 Transport,03/21/2016 08:01:34 PM,DRUMM ST/WASHINGTON ST,San Francisco,94111,B01,13,1116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7963468590371, -122.396957840177)",160813198-KM04 -102410167,E32,10076007,Medical Incident,08/29/2010,08/29/2010,08/29/2010 12:00:11 PM,08/29/2010 12:00:45 PM,08/29/2010 12:01:56 PM,08/29/2010 12:02:44 PM,08/29/2010 12:06:06 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/29/2010 12:20:08 PM,0 Block of GORHAM ST,SF,94112,B09,32,8262,3,3,3,true,,1,ENGINE,1,9,8,Outer Mission,"(37.7306016782661, -122.434476602758)",102410167-E32 -122250182,T09,12074627,Alarms,08/12/2012,08/12/2012,08/12/2012 02:05:41 PM,08/12/2012 02:06:43 PM,08/12/2012 02:06:55 PM,08/12/2012 02:09:34 PM,08/12/2012 02:12:11 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 02:22:57 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,false,Alarm,1,TRUCK,1,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",122250182-T09 -130300053,E40,13010121,Medical Incident,01/30/2013,01/29/2013,01/30/2013 06:26:00 AM,01/30/2013 06:26:52 AM,01/30/2013 06:28:08 AM,01/30/2013 06:30:06 AM,01/30/2013 06:32:05 AM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/30/2013 06:38:52 AM,2400 Block of 21ST AVE,SF,94116,B08,40,7434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7420261736385, -122.477700687178)",130300053-E40 -121550024,77,12051180,Medical Incident,06/03/2012,06/02/2012,06/03/2012 01:02:42 AM,06/03/2012 01:04:36 AM,06/03/2012 01:04:50 AM,06/03/2012 01:04:56 AM,06/03/2012 01:10:26 AM,06/03/2012 01:28:19 AM,06/03/2012 01:41:05 AM,Code 2 Transport,06/03/2012 02:02:40 AM,100 Block of EDDY ST,SF,94102,B02,1,1453,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",121550024-77 -132250207,E32,13075962,Traffic Collision,08/13/2013,08/13/2013,08/13/2013 01:19:50 PM,08/13/2013 01:19:50 PM,08/13/2013 01:20:02 PM,08/13/2013 01:22:00 PM,08/13/2013 01:22:52 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Patient Declined Transport,08/13/2013 01:36:29 PM,SAN JOSE AV/30TH ST,SF,94110,B06,32,5575,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7422945337206, -122.42328556238)",132250207-E32 -122400184,T09,12079434,Alarms,08/27/2012,08/27/2012,08/27/2012 01:19:03 PM,08/27/2012 01:19:49 PM,08/27/2012 01:20:04 PM,08/27/2012 01:21:51 PM,08/27/2012 01:25:30 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Other,08/27/2012 01:32:05 PM,600 Block of PENNSYLVANIA AVE,SF,94107,B10,37,2535,3,3,3,false,Alarm,1,TRUCK,3,10,10,Potrero Hill,"(37.7589304768709, -122.393174690888)",122400184-T09 -160283963,74,16011264,Medical Incident,01/28/2016,01/28/2016,01/28/2016 10:24:52 PM,01/28/2016 10:27:46 PM,01/28/2016 10:28:02 PM,01/28/2016 10:28:32 PM,01/28/2016 10:37:55 PM,01/28/2016 10:57:25 PM,01/28/2016 11:05:19 PM,Code 2 Transport,01/28/2016 11:41:37 PM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",160283963-74 -140430275,B03,14014692,Structure Fire,02/12/2014,02/12/2014,02/12/2014 05:01:01 PM,02/12/2014 05:02:00 PM,02/12/2014 05:02:37 PM,02/12/2014 05:02:48 PM,02/12/2014 05:10:52 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 05:21:36 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,,3,3,false,Alarm,1,CHIEF,7,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",140430275-B03 -120340394,RS1,12011446,Medical Incident,02/03/2012,02/03/2012,02/03/2012 11:04:12 PM,02/03/2012 11:05:52 PM,02/03/2012 11:06:10 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/03/2012 11:07:30 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7804785121736, -122.412512257219)",120340394-RS1 -160433399,61,16017459,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:28:49 PM,02/12/2016 08:28:49 PM,02/12/2016 08:29:05 PM,02/12/2016 08:29:30 PM,02/12/2016 08:37:46 PM,02/12/2016 08:55:39 PM,02/12/2016 09:06:38 PM,Code 2 Transport,02/12/2016 09:52:10 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160433399-61 -160844287,76,16033580,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:52:52 PM,03/24/2016 10:53:28 PM,03/24/2016 10:53:59 PM,03/24/2016 10:54:08 PM,03/24/2016 10:56:55 PM,03/24/2016 11:12:26 PM,03/24/2016 11:47:18 PM,Code 2 Transport,03/25/2016 12:26:48 AM,1100 Block of COLE ST,San Francisco,94117,B05,12,5162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7636044323739, -122.449585085069)",160844287-76 -121390183,T05,12046163,Structure Fire,05/18/2012,05/18/2012,05/18/2012 01:32:11 PM,05/18/2012 01:32:40 PM,05/18/2012 01:33:10 PM,05/18/2012 01:36:29 PM,05/18/2012 01:41:49 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/18/2012 02:05:57 PM,700 Block of 20TH AVE,SF,94121,B07,31,7166,3,3,3,false,Fire,1,TRUCK,6,7,1,Outer Richmond,"(37.7737446916601, -122.478973407699)",121390183-T05 -110980342,76,11032623,Medical Incident,04/08/2011,04/08/2011,04/08/2011 06:05:45 PM,04/08/2011 06:06:39 PM,04/08/2011 06:07:14 PM,04/08/2011 06:07:24 PM,04/08/2011 06:08:42 PM,04/08/2011 06:32:42 PM,04/08/2011 06:37:48 PM,Code 2 Transport,04/08/2011 07:17:27 PM,100 Block of 2ND AVE,SF,94118,B07,31,7115,E,3,3,true,,1,MEDIC,1,7,2,Inner Richmond,"(37.786199008882, -122.460425315638)",110980342-76 -160690303,AM24,16027317,Medical Incident,03/09/2016,03/08/2016,03/09/2016 03:44:58 AM,03/09/2016 03:44:58 AM,03/09/2016 03:45:12 AM,03/09/2016 03:46:55 AM,03/09/2016 03:49:25 AM,03/09/2016 04:15:16 AM,03/09/2016 04:20:56 AM,Code 2 Transport,03/09/2016 04:52:12 AM,1800 Block of VALLEJO ST,San Francisco,94123,B04,38,3334,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7961133405999, -122.427704312117)",160690303-AM24 -140940181,94,14031594,Medical Incident,04/04/2014,04/04/2014,04/04/2014 12:55:34 PM,04/04/2014 12:56:28 PM,04/04/2014 12:58:09 PM,04/04/2014 12:58:09 PM,04/04/2014 12:59:35 PM,04/04/2014 01:14:11 PM,04/04/2014 01:24:10 PM,Code 2 Transport,04/04/2014 01:54:01 PM,200 Block of DOLORES ST,SAN FRANCISCO,94114,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",140940181-94 -131840152,T14,13062662,Citizen Assist / Service Call,07/03/2013,07/03/2013,07/03/2013 11:45:45 AM,07/03/2013 11:49:09 AM,07/03/2013 11:57:09 AM,04/25/2016 01:51:59 PM,07/03/2013 11:59:39 AM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Other,07/03/2013 12:07:23 PM,GEARY BL/33RD AV,SF,94121,B07,14,7245,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7796883694276, -122.493297257775)",131840152-T14 -160050718,61,16001885,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:17:53 AM,01/05/2016 08:19:18 AM,01/05/2016 08:19:37 AM,01/05/2016 08:19:43 AM,01/05/2016 08:40:57 AM,01/05/2016 09:11:45 AM,01/05/2016 09:33:53 AM,Code 2 Transport,01/05/2016 10:11:21 AM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",160050718-61 -160262870,71,16010396,Medical Incident,01/26/2016,01/26/2016,01/26/2016 05:25:15 PM,01/26/2016 05:26:40 PM,01/26/2016 05:32:01 PM,01/26/2016 05:32:09 PM,01/26/2016 06:00:54 PM,01/26/2016 06:12:13 PM,01/26/2016 06:48:08 PM,Code 2 Transport,01/26/2016 07:18:01 PM,100 Block of VALE AVE,San Francisco,94132,B08,19,7464,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7348479600179, -122.48403223577)",160262870-71 -160900147,89,16035545,Medical Incident,03/30/2016,03/29/2016,03/30/2016 01:19:02 AM,03/30/2016 01:19:02 AM,03/30/2016 01:19:38 AM,03/30/2016 01:19:58 AM,03/30/2016 01:26:36 AM,03/30/2016 01:50:18 AM,03/30/2016 02:04:06 AM,Code 2 Transport,03/30/2016 02:31:18 AM,300 Block of VIENNA ST,San Francisco,94112,B09,43,6155,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7227804111928, -122.428602345947)",160900147-89 -131960260,E33,13066600,Medical Incident,07/15/2013,07/15/2013,07/15/2013 05:46:14 PM,07/15/2013 05:49:27 PM,07/15/2013 05:49:34 PM,07/15/2013 05:51:12 PM,07/15/2013 05:53:46 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 06:04:39 PM,LOBOS ST/PLYMOUTH AV,SF,94112,B09,33,8372,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7149046737385, -122.456071999233)",131960260-E33 -112040265,79,11067458,Medical Incident,07/23/2011,07/23/2011,07/23/2011 05:14:21 PM,07/23/2011 05:15:39 PM,07/23/2011 05:16:14 PM,07/23/2011 05:16:26 PM,07/23/2011 05:24:41 PM,04/25/2016 02:03:31 PM,07/23/2011 05:41:59 PM,Code 2 Transport,07/23/2011 05:54:48 PM,0 Block of WAVERLY PL,SF,94108,B01,2,1326,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7937477470757, -122.406800604626)",112040265-79 -120390359,E17,12013152,Odor (Strange / Unknown),02/08/2012,02/08/2012,02/08/2012 10:32:36 PM,02/08/2012 10:39:38 PM,02/08/2012 10:39:51 PM,02/08/2012 10:40:48 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/08/2012 10:45:50 PM,100 Block of CRESCENT WAY,SF,94134,B10,17,6576,3,3,3,true,Alarm,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7111340886592, -122.389340428123)",120390359-E17 -123620071,E36,12121063,Alarms,12/27/2012,12/26/2012,12/27/2012 07:26:47 AM,12/27/2012 07:29:04 AM,12/27/2012 07:29:38 AM,12/27/2012 07:31:59 AM,12/27/2012 07:34:02 AM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Other,12/27/2012 07:40:47 AM,200 Block of VALENCIA ST,SF,94103,B02,36,5126,3,3,3,false,Alarm,1,ENGINE,2,2,8,Mission,"(37.7690117510129, -122.422352223863)",123620071-E36 -160340365,63,16013238,Medical Incident,02/03/2016,02/02/2016,02/03/2016 05:03:49 AM,02/03/2016 05:05:21 AM,02/03/2016 05:07:47 AM,02/03/2016 05:07:56 AM,02/03/2016 05:16:22 AM,02/03/2016 05:19:36 AM,02/03/2016 05:24:27 AM,Code 2 Transport,02/03/2016 05:48:37 AM,100 Block of HANCOCK ST,San Francisco,94114,B06,6,5436,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7603452094605, -122.431611636946)",160340365-63 -103470075,B10,10111193,Medical Incident,12/13/2010,12/12/2010,12/13/2010 07:57:12 AM,12/13/2010 07:58:37 AM,12/13/2010 07:58:51 AM,12/13/2010 08:01:52 AM,12/13/2010 08:06:05 AM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 08:17:53 AM,800 Block of SILVER AVE,SF,94134,B09,42,635,3,2,2,true,,1,CHIEF,2,9,9,Excelsior,"(37.7290310292149, -122.418931444009)",103470075-B10 -112460301,86,11081225,Medical Incident,09/03/2011,09/03/2011,09/03/2011 07:19:56 PM,09/03/2011 07:20:10 PM,09/03/2011 07:22:17 PM,09/03/2011 07:22:36 PM,09/03/2011 07:34:11 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Patient Declined Transport,09/03/2011 07:42:50 PM,1100 Block of FITZGERALD AVE,SF,94124,B10,17,6615,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7204964019129, -122.390342560546)",112460301-86 -103540223,E03,10113681,Medical Incident,12/20/2010,12/20/2010,12/20/2010 03:44:15 PM,12/20/2010 03:45:13 PM,12/20/2010 03:45:25 PM,12/20/2010 03:46:30 PM,12/20/2010 03:48:35 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,Other,12/20/2010 03:49:50 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",103540223-E03 -110670275,E10,11022140,Medical Incident,03/08/2011,03/08/2011,03/08/2011 05:36:32 PM,03/08/2011 05:37:36 PM,03/08/2011 05:37:59 PM,03/08/2011 05:39:26 PM,03/08/2011 05:40:57 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 05:59:35 PM,0 Block of HEATHER AVE,SF,94118,B05,10,4374,3,3,3,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7849179152553, -122.452798317588)",110670275-E10 -130080348,82,13002883,Medical Incident,01/08/2013,01/08/2013,01/08/2013 07:22:29 PM,01/08/2013 07:23:00 PM,01/08/2013 07:23:27 PM,01/08/2013 07:24:27 PM,01/08/2013 07:29:29 PM,01/08/2013 07:47:41 PM,01/08/2013 07:55:08 PM,Code 2 Transport,01/08/2013 08:30:07 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",130080348-82 -160350339,75,16013667,Medical Incident,02/04/2016,02/03/2016,02/04/2016 03:27:33 AM,02/04/2016 03:28:02 AM,02/04/2016 03:29:09 AM,02/04/2016 03:29:18 AM,02/04/2016 03:36:44 AM,02/04/2016 03:57:31 AM,02/04/2016 04:03:42 AM,Code 2 Transport,02/04/2016 04:27:18 AM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7351844916326, -122.391493955999)",160350339-75 -160070592,52,16002725,Traffic Collision,01/07/2016,01/06/2016,01/07/2016 07:41:50 AM,01/07/2016 07:41:50 AM,01/07/2016 07:42:11 AM,01/07/2016 07:42:24 AM,01/07/2016 07:47:37 AM,01/07/2016 08:04:08 AM,01/07/2016 08:38:08 AM,Code 2 Transport,01/07/2016 09:38:44 AM,RICHARDSON AV/FRANCISCO ST,San Francisco,94123,B04,16,4314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8003858224919, -122.447130573329)",160070592-52 -110380137,E01,11012547,Medical Incident,02/07/2011,02/07/2011,02/07/2011 09:42:29 AM,02/07/2011 09:44:24 AM,02/07/2011 09:44:32 AM,02/07/2011 09:45:36 AM,02/07/2011 09:49:44 AM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,Other,02/07/2011 10:01:40 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",110380137-E01 -123130383,E07,12104305,Structure Fire,11/08/2012,11/08/2012,11/08/2012 09:18:01 PM,11/08/2012 09:21:09 PM,11/08/2012 09:21:35 PM,11/08/2012 09:23:04 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 09:28:07 PM,100 Block of JERSEY ST,SF,94114,B06,11,5523,3,3,3,true,Alarm,1,ENGINE,8,6,8,Noe Valley,"(37.7508076657844, -122.427904931391)",123130383-E07 -120460290,KM15,12015389,Medical Incident,02/15/2012,02/15/2012,02/15/2012 05:45:32 PM,02/15/2012 05:46:00 PM,02/15/2012 05:46:17 PM,02/15/2012 05:47:01 PM,02/15/2012 05:48:45 PM,02/15/2012 05:58:45 PM,02/15/2012 06:05:41 PM,Code 2 Transport,02/15/2012 06:30:42 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",120460290-KM15 -160442186,KM09,16017738,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:36:35 PM,02/13/2016 03:39:35 PM,02/13/2016 03:40:14 PM,02/13/2016 03:40:55 PM,02/13/2016 03:46:54 PM,02/13/2016 04:05:20 PM,02/13/2016 04:10:30 PM,Code 3 Transport,02/13/2016 04:48:30 PM,1000 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",160442186-KM09 -133020019,E02,13102488,Medical Incident,10/29/2013,10/28/2013,10/29/2013 01:16:52 AM,10/29/2013 01:17:21 AM,10/29/2013 01:18:00 AM,10/29/2013 01:20:06 AM,10/29/2013 01:23:36 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/29/2013 01:24:17 AM,GEARY ST/TAYLOR ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7869397066362, -122.411515768512)",133020019-E02 -160811157,71,16032117,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:22:24 AM,03/21/2016 10:23:49 AM,03/21/2016 10:24:08 AM,03/21/2016 10:24:25 AM,03/21/2016 10:29:58 AM,03/21/2016 10:41:53 AM,03/21/2016 10:56:13 AM,Code 2 Transport,03/21/2016 11:20:18 AM,2000 Block of SILVER AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360541412918, -122.399492021329)",160811157-71 -130550162,E29,13018544,Medical Incident,02/24/2013,02/24/2013,02/24/2013 11:21:57 AM,02/24/2013 11:23:10 AM,02/24/2013 11:23:26 AM,02/24/2013 11:24:55 AM,02/24/2013 11:26:32 AM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Unable to Locate,02/24/2013 11:30:49 AM,9TH ST/FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7737693455048, -122.411610116682)",130550162-E29 -120770009,E03,12025349,Structure Fire,03/17/2012,03/16/2012,03/17/2012 12:30:32 AM,03/17/2012 12:30:32 AM,03/17/2012 12:30:39 AM,03/17/2012 12:30:47 AM,03/17/2012 12:32:26 AM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 12:32:59 AM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",120770009-E03 -140830194,54,14027997,Medical Incident,03/24/2014,03/24/2014,03/24/2014 02:28:06 PM,03/24/2014 02:30:44 PM,03/24/2014 02:31:08 PM,03/24/2014 02:31:37 PM,03/24/2014 02:37:29 PM,03/24/2014 02:56:27 PM,03/24/2014 03:09:26 PM,Code 2 Transport,03/24/2014 03:31:21 PM,2200 Block of OFARRELL ST,SAN FRANCISCO,94115,B05,10,4236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",140830194-54 -103180053,77,10101824,Medical Incident,11/14/2010,11/13/2010,11/14/2010 02:39:04 AM,11/14/2010 02:40:32 AM,11/14/2010 02:41:01 AM,04/25/2016 02:07:36 PM,11/14/2010 02:47:28 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Patient Declined Transport,11/14/2010 02:48:14 AM,SAN JOSE AV/24TH ST,SF,94110,B06,11,5524,3,3,3,true,,1,MEDIC,2,6,8,Mission,"(37.7520468115771, -122.4215951516)",103180053-77 -121390036,85,12046041,Medical Incident,05/18/2012,05/17/2012,05/18/2012 03:16:50 AM,05/18/2012 03:18:49 AM,05/18/2012 03:19:02 AM,05/18/2012 03:19:53 AM,05/18/2012 03:29:37 AM,05/18/2012 03:46:47 AM,05/18/2012 04:23:56 AM,Code 2 Transport,05/18/2012 04:57:51 AM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",121390036-85 -102360112,T05,10074265,Medical Incident,08/24/2010,08/24/2010,08/24/2010 09:28:42 AM,08/24/2010 09:29:51 AM,08/24/2010 09:30:11 AM,08/24/2010 09:31:36 AM,08/24/2010 09:34:19 AM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 09:45:47 AM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,false,,1,TRUCK,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",102360112-T05 -102500213,E15,10079021,Medical Incident,09/07/2010,09/07/2010,09/07/2010 03:22:00 PM,09/07/2010 03:22:38 PM,09/07/2010 03:23:29 PM,09/07/2010 03:27:22 PM,09/07/2010 03:28:07 PM,04/25/2016 02:08:42 PM,09/07/2010 03:28:21 PM,Other,09/07/2010 03:28:41 PM,MISSION ST/NORTON ST,SF,94112,B09,43,6116,3,3,3,true,,1,ENGINE,3,9,11,Outer Mission,"(37.7245877059944, -122.434870379292)",102500213-E15 -112170371,E01,11071869,Medical Incident,08/05/2011,08/05/2011,08/05/2011 09:52:11 PM,08/05/2011 09:54:11 PM,08/05/2011 09:54:22 PM,08/05/2011 09:56:02 PM,08/05/2011 09:58:31 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/05/2011 10:05:42 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,E,E,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",112170371-E01 -130370320,E21,13012816,Citizen Assist / Service Call,02/06/2013,02/06/2013,02/06/2013 08:36:24 PM,02/06/2013 08:38:35 PM,02/06/2013 08:38:39 PM,02/06/2013 08:39:34 PM,02/06/2013 08:40:44 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 08:52:02 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,3,3,true,Alarm,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",130370320-E21 -122750405,E17,12090928,Medical Incident,10/01/2012,10/01/2012,10/01/2012 09:16:01 PM,10/01/2012 09:16:01 PM,10/01/2012 09:16:20 PM,10/01/2012 09:17:55 PM,10/01/2012 09:20:43 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/01/2012 09:31:03 PM,HOLLISTER AV/INGALLS ST,SF,94124,B10,17,6612,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.719739950078, -122.392418231567)",122750405-E17 -132290201,E41,13077312,Structure Fire,08/17/2013,08/17/2013,08/17/2013 01:03:05 PM,08/17/2013 01:03:05 PM,08/17/2013 01:03:51 PM,08/17/2013 01:04:40 PM,08/17/2013 01:08:02 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Other,08/17/2013 01:08:19 PM,HYDE ST/PINE ST,SF,94109,B04,41,1562,3,3,3,false,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",132290201-E41 -160602835,79,16024016,Medical Incident,02/29/2016,02/29/2016,02/29/2016 06:07:12 PM,02/29/2016 06:11:15 PM,02/29/2016 06:12:34 PM,02/29/2016 06:12:41 PM,02/29/2016 06:29:19 PM,02/29/2016 06:52:15 PM,02/29/2016 07:06:33 PM,Code 2 Transport,02/29/2016 07:36:02 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160602835-79 -160850499,78,16033652,Medical Incident,03/25/2016,03/24/2016,03/25/2016 05:44:58 AM,03/25/2016 05:46:53 AM,03/25/2016 05:47:57 AM,03/25/2016 05:49:06 AM,03/25/2016 06:07:25 AM,03/25/2016 06:07:30 AM,03/25/2016 06:11:12 AM,Code 2 Transport,03/25/2016 06:23:53 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",160850499-78 -122960052,KM15,12098040,Medical Incident,10/22/2012,10/21/2012,10/22/2012 06:07:40 AM,10/22/2012 06:09:24 AM,10/22/2012 06:09:50 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,04/25/2016 01:56:10 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",122960052-KM15 -120650056,83,12021385,Medical Incident,03/05/2012,03/04/2012,03/05/2012 06:15:02 AM,03/05/2012 06:17:12 AM,03/05/2012 06:18:00 AM,04/25/2016 01:59:50 PM,03/05/2012 06:27:32 AM,03/05/2012 06:39:19 AM,03/05/2012 06:57:11 AM,Code 2 Transport,03/05/2012 07:11:33 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",120650056-83 -160670269,AM24,16026594,Medical Incident,03/07/2016,03/06/2016,03/07/2016 04:17:32 AM,03/07/2016 04:20:05 AM,03/07/2016 04:20:33 AM,03/07/2016 04:21:04 AM,03/07/2016 04:54:35 AM,03/07/2016 04:54:41 AM,03/07/2016 05:13:07 AM,Code 2 Transport,03/07/2016 05:43:23 AM,2200 Block of BRYANT ST,San Francisco,94110,B06,7,5474,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7580152328846, -122.409672653063)",160670269-AM24 -102880382,66,10092002,Medical Incident,10/15/2010,10/15/2010,10/15/2010 10:26:14 PM,10/15/2010 10:27:59 PM,10/15/2010 10:28:30 PM,10/15/2010 10:28:46 PM,04/25/2016 02:08:05 PM,10/15/2010 10:58:05 PM,10/15/2010 11:07:41 PM,Code 2 Transport,10/15/2010 11:26:52 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,,1,MEDIC,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",102880382-66 -160622850,83,16024781,Medical Incident,03/02/2016,03/02/2016,03/02/2016 04:37:25 PM,03/02/2016 04:41:11 PM,03/02/2016 04:41:28 PM,03/02/2016 04:41:47 PM,03/02/2016 04:47:43 PM,03/02/2016 04:59:37 PM,03/02/2016 05:02:48 PM,Code 2 Transport,03/02/2016 05:24:43 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160622850-83 -112840016,E15,11093872,Alarms,10/11/2011,10/10/2011,10/11/2011 01:35:17 AM,10/11/2011 01:36:17 AM,10/11/2011 01:36:23 AM,10/11/2011 01:38:32 AM,10/11/2011 01:39:42 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/11/2011 01:48:12 AM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,true,,1,ENGINE,3,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",112840016-E15 -122410215,93,12079786,Medical Incident,08/28/2012,08/28/2012,08/28/2012 03:22:52 PM,08/28/2012 03:22:52 PM,08/28/2012 03:23:04 PM,08/28/2012 03:23:15 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/28/2012 03:26:37 PM,300 Block of 16TH AVE,SF,94118,B07,31,7153,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7814963327329, -122.475090529222)",122410215-93 -140500140,E17,14016941,Medical Incident,02/19/2014,02/19/2014,02/19/2014 11:37:16 AM,02/19/2014 11:39:16 AM,02/19/2014 11:40:23 AM,02/19/2014 11:41:21 AM,02/19/2014 11:43:33 AM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,Code 2 Transport,02/19/2014 11:56:33 AM,0 Block of ESPANOLA ST,SF,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7310696411386, -122.379978569038)",140500140-E17 -133610003,E18,13122519,Medical Incident,12/27/2013,12/26/2013,12/27/2013 12:05:55 AM,12/27/2013 12:07:54 AM,12/27/2013 12:09:54 AM,12/27/2013 12:11:28 AM,12/27/2013 12:15:32 AM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 12:24:13 AM,2000 Block of 37TH AVE,SF,94116,B08,18,757,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7487247711275, -122.495504020186)",133610003-E18 -122680044,89,12088419,Medical Incident,09/24/2012,09/23/2012,09/24/2012 04:29:08 AM,09/24/2012 04:30:09 AM,09/24/2012 04:32:15 AM,09/24/2012 04:32:40 AM,09/24/2012 04:43:19 AM,09/24/2012 05:06:13 AM,09/24/2012 05:19:08 AM,Code 2 Transport,09/24/2012 05:44:45 AM,0 Block of CLARENCE PL,SF,94107,B03,8,2172,3,2,2,false,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7796198209959, -122.39254196336)",122680044-89 -122950031,75,12097713,Medical Incident,10/21/2012,10/20/2012,10/21/2012 01:51:19 AM,10/21/2012 01:51:53 AM,10/21/2012 01:56:47 AM,10/21/2012 01:57:09 AM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,Other,04/25/2016 01:56:11 PM,16TH ST/HOFF ST,SF,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7649962714721, -122.420580608279)",122950031-75 -131400281,E31,13047482,Alarms,05/20/2013,05/20/2013,05/20/2013 03:01:32 PM,05/20/2013 03:01:32 PM,05/20/2013 03:02:39 PM,05/20/2013 03:04:22 PM,05/20/2013 03:07:04 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,Other,05/20/2013 03:09:33 PM,2300 Block of LAKE ST,SF,94121,B07,14,7174,3,3,3,false,Alarm,1,ENGINE,3,7,1,Outer Richmond,"(37.7857154333963, -122.484609916211)",131400281-E31 -160331812,87,16012995,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:37:31 PM,02/02/2016 01:41:27 PM,02/02/2016 01:41:39 PM,02/02/2016 01:41:48 PM,02/02/2016 01:49:20 PM,02/02/2016 02:07:09 PM,02/02/2016 02:27:34 PM,Code 2 Transport,02/02/2016 03:07:44 PM,1700 Block of CLAY ST,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7922247161992, -122.421862574917)",160331812-87 -112120327,E36,11070082,Structure Fire,07/31/2011,07/31/2011,07/31/2011 08:30:55 PM,07/31/2011 08:32:03 PM,07/31/2011 08:32:19 PM,07/31/2011 08:33:12 PM,07/31/2011 08:35:09 PM,04/25/2016 02:03:24 PM,04/25/2016 02:03:24 PM,Other,07/31/2011 08:45:16 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,4,3,6,South of Market,"(37.7816150265786, -122.40942036456)",112120327-E36 -140410028,E42,14013793,Medical Incident,02/10/2014,02/09/2014,02/10/2014 02:01:01 AM,02/10/2014 02:03:41 AM,02/10/2014 02:04:47 AM,02/10/2014 02:06:46 AM,02/10/2014 02:09:04 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 02:12:50 AM,0 Block of ORSI CIR,SF,94124,B10,42,6475,3,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7282562424282, -122.397373960343)",140410028-E42 -133460348,E05,13117530,Medical Incident,12/12/2013,12/12/2013,12/12/2013 07:49:20 PM,12/12/2013 07:50:05 PM,12/12/2013 07:51:29 PM,12/12/2013 07:52:33 PM,12/12/2013 07:54:41 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 08:06:21 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",133460348-E05 -131110212,KM09,13037421,Medical Incident,04/21/2013,04/21/2013,04/21/2013 03:38:07 PM,04/21/2013 03:39:35 PM,04/21/2013 03:41:54 PM,04/25/2016 01:53:11 PM,04/21/2013 03:44:25 PM,04/21/2013 04:04:58 PM,04/21/2013 04:18:06 PM,Code 2 Transport,04/21/2013 04:45:55 PM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",131110212-KM09 -131000298,T03,13033702,Alarms,04/10/2013,04/10/2013,04/10/2013 05:30:16 PM,04/10/2013 05:31:02 PM,04/10/2013 05:31:29 PM,04/10/2013 05:33:00 PM,04/10/2013 05:34:02 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/10/2013 05:40:46 PM,1400 Block of POST ST,SF,94109,B04,3,3256,3,3,3,false,Alarm,1,TRUCK,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",131000298-T03 -160541152,73,16021522,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:13:53 AM,02/23/2016 10:17:16 AM,02/23/2016 10:17:31 AM,02/23/2016 10:18:35 AM,02/23/2016 10:25:00 AM,02/23/2016 10:51:01 AM,02/23/2016 11:10:48 AM,Code 2 Transport,02/23/2016 11:59:12 AM,300 Block of GAVEN ST,San Francisco,94134,B09,42,6367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7323061102001, -122.412177293202)",160541152-73 -122180088,T03,12072228,Structure Fire,08/05/2012,08/04/2012,08/05/2012 05:17:47 AM,08/05/2012 05:19:06 AM,08/05/2012 05:19:34 AM,04/25/2016 01:57:23 PM,08/05/2012 05:23:02 AM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 05:21:24 AM,500 Block of TAYLOR ST,SF,94102,B01,3,1451,3,3,3,false,Fire,1,TRUCK,6,1,3,Tenderloin,"(37.7870711373734, -122.411612352697)",122180088-T03 -103450142,RC2,10110544,Medical Incident,12/11/2010,12/11/2010,12/11/2010 09:55:52 AM,12/11/2010 09:56:10 AM,12/11/2010 09:56:52 AM,04/25/2016 02:07:10 PM,12/11/2010 10:15:52 AM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 10:22:40 AM,300 Block of 4TH AVE,SF,94118,B07,31,7116,3,2,2,true,,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7820715174889, -122.46227811275)",103450142-RC2 -110030004,B06,11000830,Structure Fire,01/03/2011,01/02/2011,01/03/2011 12:36:26 AM,01/03/2011 12:39:19 AM,01/03/2011 12:39:31 AM,01/03/2011 12:41:20 AM,01/03/2011 12:47:33 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 12:47:41 AM,0 Block of TOPEKA AVE,SF,94124,B10,42,6454,3,3,3,false,,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7345854632984, -122.40017736431)",110030004-B06 -160144032,78,16005789,Medical Incident,01/14/2016,01/14/2016,01/14/2016 11:39:15 PM,01/14/2016 11:41:20 PM,01/14/2016 11:41:50 PM,01/14/2016 11:41:57 PM,01/14/2016 11:47:13 PM,01/15/2016 12:10:21 AM,01/15/2016 12:24:13 AM,Code 2 Transport,01/15/2016 01:02:18 AM,1100 Block of ALEMANY BLVD,San Francisco,94112,B09,32,8263,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7307340737815, -122.430215543295)",160144032-78 -160052715,59,16002097,Medical Incident,01/05/2016,01/05/2016,01/05/2016 05:20:53 PM,01/05/2016 05:21:40 PM,01/05/2016 05:24:40 PM,01/05/2016 05:24:40 PM,01/05/2016 05:25:05 PM,01/05/2016 05:29:32 PM,01/05/2016 05:35:23 PM,Code 2 Transport,01/05/2016 06:16:06 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160052715-59 -131770004,E01,13059934,Medical Incident,06/26/2013,06/25/2013,06/26/2013 12:19:29 AM,06/26/2013 12:20:23 AM,06/26/2013 12:21:03 AM,06/26/2013 12:22:54 AM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 12:24:46 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",131770004-E01 -130770043,E37,13025610,Medical Incident,03/18/2013,03/17/2013,03/18/2013 06:38:25 AM,03/18/2013 06:39:10 AM,03/18/2013 06:39:27 AM,03/18/2013 06:41:31 AM,03/18/2013 06:44:14 AM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 06:54:28 AM,300 Block of TEXAS ST,SF,94107,B03,37,2462,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7620024484897, -122.395430669934)",130770043-E37 -130290067,89,13009837,Medical Incident,01/29/2013,01/28/2013,01/29/2013 07:15:50 AM,01/29/2013 07:15:50 AM,01/29/2013 07:17:06 AM,01/29/2013 07:19:31 AM,01/29/2013 07:26:55 AM,01/29/2013 07:44:42 AM,01/29/2013 07:59:36 AM,Code 2 Transport,01/29/2013 08:41:40 AM,DUBOCE AV/GUERRERO ST,SF,94103,B02,36,3416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7697346970054, -122.424581089509)",130290067-89 -120820353,88,12027373,Medical Incident,03/22/2012,03/22/2012,03/22/2012 08:50:05 PM,03/22/2012 08:54:10 PM,03/22/2012 09:01:23 PM,03/22/2012 09:01:44 PM,03/22/2012 09:04:58 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Patient Declined Transport,03/22/2012 09:29:47 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",120820353-88 -130420296,67,13014418,Medical Incident,02/11/2013,02/11/2013,02/11/2013 06:23:29 PM,02/11/2013 06:24:46 PM,02/11/2013 06:26:10 PM,02/11/2013 06:28:29 PM,02/11/2013 06:34:39 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Patient Declined Transport,02/11/2013 07:14:14 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2253,3,E,3,false,Potentially Life-Threatening,1,MEDIC,4,3,6,South of Market,"(37.7789337876718, -122.404974448604)",130420296-67 -132240273,89,13075702,Medical Incident,08/12/2013,08/12/2013,08/12/2013 05:04:52 PM,08/12/2013 05:07:41 PM,08/12/2013 05:07:49 PM,08/12/2013 05:08:36 PM,08/12/2013 05:14:57 PM,08/12/2013 05:30:32 PM,08/12/2013 05:44:14 PM,Code 2 Transport,08/12/2013 06:05:20 PM,1200 Block of MCALLISTER ST,SF,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7785814907258, -122.432596251801)",132240273-89 -120200004,E13,12006526,Medical Incident,01/20/2012,01/19/2012,01/20/2012 12:14:34 AM,01/20/2012 12:17:31 AM,01/20/2012 12:17:38 AM,01/20/2012 12:19:22 AM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,No Merit,01/20/2012 12:26:21 AM,400 Block of BUSH ST,SF,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.79063603614, -122.404572712944)",120200004-E13 -132510052,54,13084696,Medical Incident,09/08/2013,09/07/2013,09/08/2013 02:37:55 AM,09/08/2013 02:38:33 AM,09/08/2013 02:38:59 AM,09/08/2013 02:39:05 AM,09/08/2013 02:45:15 AM,09/08/2013 02:59:04 AM,09/08/2013 03:09:20 AM,Code 2 Transport,09/08/2013 03:38:02 AM,100 Block of FELL ST,SF,94102,B02,36,3213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7762095925877, -122.420316347942)",132510052-54 -120460337,84,12015431,Medical Incident,02/15/2012,02/15/2012,02/15/2012 08:02:02 PM,02/15/2012 08:03:28 PM,02/15/2012 08:04:47 PM,02/15/2012 08:05:12 PM,02/15/2012 08:08:15 PM,02/15/2012 08:18:34 PM,02/15/2012 08:27:40 PM,Code 2 Transport,02/15/2012 08:50:49 PM,800 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7828439870217, -122.421651290681)",120460337-84 -103010079,85,10096032,Medical Incident,10/28/2010,10/27/2010,10/28/2010 06:56:35 AM,10/28/2010 06:58:26 AM,10/28/2010 07:04:28 AM,04/25/2016 02:07:53 PM,10/28/2010 07:04:49 AM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Patient Declined Transport,10/28/2010 07:17:32 AM,500 Block of MARINA BLVD,SF,94123,B04,16,4214,2,2,2,true,,1,MEDIC,1,4,2,Marina,"(37.8056112135177, -122.443084504712)",103010079-85 -132890117,E22,13098243,Medical Incident,10/16/2013,10/16/2013,10/16/2013 10:10:51 AM,10/16/2013 10:12:40 AM,10/16/2013 10:13:16 AM,10/16/2013 10:13:40 AM,10/16/2013 10:17:55 AM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 10:29:53 AM,400 Block of LINCOLN WAY,SF,94122,B08,22,7325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,5,Inner Sunset,"(37.7659817250869, -122.46269332684)",132890117-E22 -102860150,T08,10091096,Medical Incident,10/13/2010,10/13/2010,10/13/2010 10:52:49 AM,10/13/2010 10:53:46 AM,10/13/2010 10:54:13 AM,10/13/2010 10:55:36 AM,10/13/2010 10:59:36 AM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Other,10/13/2010 11:09:31 AM,400 Block of 3RD ST,SF,94107,B03,8,2174,3,3,3,true,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7823750775991, -122.397064398742)",102860150-T08 -133480354,T05,13118257,Alarms,12/14/2013,12/14/2013,12/14/2013 07:58:53 PM,12/14/2013 07:58:53 PM,12/14/2013 07:59:12 PM,12/14/2013 08:00:16 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 08:01:19 PM,1200 Block of ELLIS ST,SF,94109,B02,5,3322,3,3,3,false,Alarm,1,TRUCK,2,2,5,Western Addition,"(37.783247213368, -122.425950407809)",133480354-T05 -131760352,T07,13059852,Alarms,06/25/2013,06/25/2013,06/25/2013 07:26:25 PM,06/25/2013 07:30:53 PM,06/25/2013 07:31:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,04/25/2016 01:52:07 PM,2900 Block of FOLSOM ST,SF,94110,B06,7,5614,3,3,3,false,Alarm,1,TRUCK,4,6,9,Mission,"(37.7501075458546, -122.413779228888)",131760352-T07 -113140268,T18,11104400,Water Rescue,11/10/2011,11/10/2011,11/10/2011 04:39:20 PM,11/10/2011 04:40:30 PM,11/10/2011 04:41:54 PM,11/10/2011 04:44:54 PM,11/10/2011 04:52:29 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 05:25:24 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,,1,TRUCK,10,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",113140268-T18 -103440098,E41,10110146,Medical Incident,12/10/2010,12/10/2010,12/10/2010 08:06:26 AM,12/10/2010 08:06:59 AM,12/10/2010 08:07:17 AM,12/10/2010 08:09:07 AM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 08:11:43 AM,1500 Block of GREEN ST,SF,94123,B04,41,3151,E,E,3,false,,1,ENGINE,5,4,2,Marina,"(37.7975667094658, -122.4246258292)",103440098-E41 -132440304,92,13082457,Medical Incident,09/01/2013,09/01/2013,09/01/2013 07:05:08 PM,09/01/2013 07:06:59 PM,09/01/2013 07:10:38 PM,09/01/2013 07:10:53 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 07:17:12 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",132440304-92 -133300010,E06,13111924,Medical Incident,11/26/2013,11/25/2013,11/26/2013 12:58:19 AM,11/26/2013 01:00:12 AM,11/26/2013 01:00:36 AM,11/26/2013 01:04:00 AM,11/26/2013 01:05:36 AM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Other,11/26/2013 01:13:58 AM,100 Block of PIERCE ST,SF,94117,B05,6,3635,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7712130941184, -122.433709296631)",133300010-E06 -160760357,53,16029988,Medical Incident,03/16/2016,03/15/2016,03/16/2016 04:21:47 AM,03/16/2016 04:24:08 AM,03/16/2016 04:24:58 AM,03/16/2016 04:26:09 AM,03/16/2016 04:32:50 AM,03/16/2016 05:00:17 AM,03/16/2016 05:12:18 AM,Code 2 Transport,03/16/2016 05:37:07 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5239,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",160760357-53 -111270066,92,11041950,Medical Incident,05/07/2011,05/06/2011,05/07/2011 07:24:45 AM,05/07/2011 07:25:30 AM,05/07/2011 07:25:43 AM,05/07/2011 07:26:35 AM,05/07/2011 07:29:12 AM,05/07/2011 07:58:12 AM,05/07/2011 08:13:56 AM,Code 3 Transport,05/07/2011 08:47:15 AM,600 Block of CLEMENT ST,SF,94118,B07,31,7127,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7829250555392, -122.466030904754)",111270066-92 -103590057,E28,10115120,Medical Incident,12/25/2010,12/24/2010,12/25/2010 04:41:52 AM,12/25/2010 04:42:54 AM,12/25/2010 04:43:40 AM,12/25/2010 04:45:12 AM,12/25/2010 04:49:09 AM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 05:00:55 AM,1000 Block of FRANCISCO ST,SF,94109,B01,28,1624,3,3,3,false,,1,ENGINE,2,1,2,Russian Hill,"(37.8035711866539, -122.422453107864)",103590057-E28 -112960157,E31,11098166,Medical Incident,10/23/2011,10/23/2011,10/23/2011 10:48:39 AM,10/23/2011 10:49:23 AM,10/23/2011 10:49:29 AM,10/23/2011 10:49:51 AM,10/23/2011 10:52:09 AM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 11:00:28 AM,600 Block of 15TH AVE,SF,94118,B07,31,7155,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7758570932691, -122.473699636265)",112960157-E31 -160891964,52,16035348,Medical Incident,03/29/2016,03/29/2016,03/29/2016 01:23:00 PM,03/29/2016 01:23:24 PM,03/29/2016 01:23:39 PM,03/29/2016 01:23:58 PM,03/29/2016 01:30:24 PM,03/29/2016 01:48:01 PM,03/29/2016 02:32:12 PM,Code 2 Transport,03/29/2016 02:53:05 PM,1400 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",160891964-52 -102270229,78,10071497,Medical Incident,08/15/2010,08/15/2010,08/15/2010 03:42:02 PM,08/15/2010 03:44:57 PM,08/15/2010 03:45:22 PM,08/15/2010 03:45:44 PM,08/15/2010 03:50:38 PM,08/15/2010 04:19:22 PM,08/15/2010 04:23:32 PM,Code 2 Transport,08/15/2010 04:58:48 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",102270229-78 -110510325,E28,11017008,Structure Fire,02/20/2011,02/20/2011,02/20/2011 06:53:20 PM,02/20/2011 06:53:20 PM,02/20/2011 06:53:33 PM,02/20/2011 06:54:18 PM,02/20/2011 06:56:37 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 06:57:02 PM,3000 Block of POLK ST,SF,94109,B01,28,3134,3,3,3,false,,1,ENGINE,1,1,2,Russian Hill,"(37.8048296798807, -122.423492217164)",110510325-E28 -160291603,61,16011437,Medical Incident,01/29/2016,01/29/2016,01/29/2016 12:34:25 PM,01/29/2016 12:35:41 PM,01/29/2016 12:36:26 PM,01/29/2016 12:36:33 PM,01/29/2016 12:47:08 PM,01/29/2016 01:14:46 PM,01/29/2016 01:20:02 PM,Code 2 Transport,01/29/2016 01:43:23 PM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7530339738059, -122.418588598473)",160291603-61 -72030215,AP,7058407,Other,07/22/2007,07/22/2007,07/22/2007 02:16:50 PM,07/22/2007 02:16:50 PM,07/22/2007 02:16:50 PM,04/25/2016 03:38:28 PM,04/25/2016 03:38:28 PM,04/25/2016 03:38:28 PM,04/25/2016 03:38:28 PM,Fire,07/22/2007 02:33:45 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",072030215-AP -131600178,E36,13054345,Medical Incident,06/09/2013,06/09/2013,06/09/2013 01:09:51 PM,06/09/2013 01:10:46 PM,06/09/2013 01:10:59 PM,06/09/2013 01:13:05 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 01:15:04 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",131600178-E36 -123020388,MP32,12100336,Outside Fire,10/28/2012,10/28/2012,10/28/2012 10:18:51 PM,10/28/2012 10:19:51 PM,10/28/2012 10:21:26 PM,10/28/2012 10:22:30 PM,10/28/2012 10:51:31 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 11:04:13 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,false,Fire,1,SUPPORT,3,6,9,Mission,"(37.7530339738059, -122.418588598473)",123020388-MP32 -102790328,68,10088835,Medical Incident,10/06/2010,10/06/2010,10/06/2010 09:12:15 PM,10/06/2010 09:13:56 PM,10/06/2010 09:14:19 PM,10/06/2010 09:14:36 PM,10/06/2010 09:19:45 PM,10/06/2010 09:44:12 PM,10/06/2010 10:02:25 PM,Code 2 Transport,10/06/2010 10:50:30 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",102790328-68 -132210315,66,13074739,Medical Incident,08/09/2013,08/09/2013,08/09/2013 07:56:35 PM,08/09/2013 07:57:15 PM,08/09/2013 07:57:50 PM,08/09/2013 07:58:00 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 08:01:24 PM,400 Block of LIBERTY ST,SF,94114,B06,11,5452,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7571444493487, -122.431267699117)",132210315-66 -133570064,E20,13121273,Medical Incident,12/23/2013,12/22/2013,12/23/2013 07:40:22 AM,12/23/2013 07:41:58 AM,12/23/2013 07:42:09 AM,12/23/2013 07:43:10 AM,12/23/2013 07:45:36 AM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 08:13:30 AM,0 Block of OLYMPIA WAY,SF,94131,B08,20,5351,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7512804251875, -122.452533549405)",133570064-E20 -120060350,KM04,12002224,Medical Incident,01/06/2012,01/06/2012,01/06/2012 09:34:17 PM,01/06/2012 09:34:47 PM,01/06/2012 09:35:48 PM,01/06/2012 09:36:27 PM,01/06/2012 09:43:34 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,No Merit,01/06/2012 09:45:45 PM,1200 Block of STANYAN ST,SF,94117,B05,12,5261,3,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Inner Sunset,"(37.7604839722785, -122.451687109267)",120060350-KM04 -123520013,E03,12117609,Alarms,12/17/2012,12/16/2012,12/17/2012 01:33:21 AM,12/17/2012 01:35:28 AM,12/17/2012 01:35:45 AM,04/25/2016 01:55:16 PM,12/17/2012 01:37:24 AM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 01:46:02 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",123520013-E03 -110640302,99,11021174,Medical Incident,03/05/2011,03/05/2011,03/05/2011 05:18:46 PM,03/05/2011 05:19:30 PM,03/05/2011 05:19:58 PM,03/05/2011 05:21:16 PM,03/05/2011 05:24:48 PM,03/05/2011 05:35:55 PM,03/05/2011 05:40:21 PM,Code 3 Transport,03/05/2011 06:20:58 PM,BRYANT ST/24TH ST,SF,94110,B06,9,5532,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7527955849274, -122.409129910252)",110640302-99 -110280106,E10,11009159,Medical Incident,01/28/2011,01/28/2011,01/28/2011 10:11:09 AM,01/28/2011 10:13:48 AM,01/28/2011 10:13:57 AM,01/28/2011 10:15:31 AM,01/28/2011 10:17:52 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 10:39:17 AM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,3,3,3,true,,1,ENGINE,1,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",110280106-E10 -121170061,E42,12038676,Medical Incident,04/26/2012,04/25/2012,04/26/2012 07:55:41 AM,04/26/2012 07:55:55 AM,04/26/2012 07:56:26 AM,04/26/2012 07:58:35 AM,04/26/2012 08:01:23 AM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,Other,04/26/2012 08:07:41 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",121170061-E42 -121990193,E10,12066130,Medical Incident,07/17/2012,07/17/2012,07/17/2012 01:03:36 PM,07/17/2012 01:05:31 PM,07/17/2012 01:07:28 PM,07/17/2012 01:08:50 PM,07/17/2012 01:10:48 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 01:29:30 PM,POST ST/SCOTT ST,SF,94115,B04,10,4131,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7845309189576, -122.438019671354)",121990193-E10 -120760227,84,12025264,Medical Incident,03/16/2012,03/16/2012,03/16/2012 06:52:52 PM,03/16/2012 06:53:40 PM,03/16/2012 06:53:56 PM,03/16/2012 06:54:25 PM,03/16/2012 06:57:35 PM,03/16/2012 07:11:40 PM,03/16/2012 07:28:17 PM,Code 2 Transport,03/16/2012 08:03:39 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",120760227-84 -140450044,E16,14015205,Alarms,02/14/2014,02/13/2014,02/14/2014 03:43:35 AM,02/14/2014 03:45:30 AM,02/14/2014 03:45:46 AM,02/14/2014 03:48:23 AM,02/14/2014 03:48:49 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 03:56:22 AM,2300 Block of CHESTNUT ST,SF,94123,B04,16,4211,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8001383201841, -122.44202268807)",140450044-E16 -131370292,B03,13046362,Structure Fire,05/17/2013,05/17/2013,05/17/2013 05:47:42 PM,05/17/2013 05:49:09 PM,05/17/2013 05:50:40 PM,05/17/2013 05:53:45 PM,05/17/2013 06:00:39 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/17/2013 08:17:44 PM,1100 Block of KEPPLER CT,TI,94130,B03,48,2931,3,3,3,false,Fire,1,CHIEF,5,None,6,Treasure Island,"(37.827591247874, -122.37675005814)",131370292-B03 -121070315,89,12035564,Medical Incident,04/16/2012,04/16/2012,04/16/2012 06:48:22 PM,04/16/2012 06:49:57 PM,04/16/2012 06:53:14 PM,04/16/2012 06:53:22 PM,04/16/2012 06:57:50 PM,04/16/2012 07:15:19 PM,04/16/2012 07:23:00 PM,Code 2 Transport,04/16/2012 07:50:39 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",121070315-89 -121610350,82,12053460,Medical Incident,06/09/2012,06/09/2012,06/09/2012 11:02:07 PM,06/09/2012 11:03:02 PM,06/09/2012 11:04:37 PM,06/09/2012 11:05:01 PM,06/09/2012 11:15:47 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Against Medical Advice,06/09/2012 11:51:12 PM,LA PLAYA ST/LINCOLN WY,SF,94122,B08,23,7722,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",121610350-82 -122550192,E16,12084290,Medical Incident,09/11/2012,09/11/2012,09/11/2012 12:44:19 PM,09/11/2012 12:45:48 PM,09/11/2012 12:47:40 PM,09/11/2012 12:48:01 PM,09/11/2012 12:54:50 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 01:08:44 PM,VAN NESS AV/CHESTNUT ST,SF,94109,B04,16,3144,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,2,Marina,"(37.8022809826088, -122.424731260608)",122550192-E16 -110120119,RS2,11003926,Structure Fire,01/12/2011,01/12/2011,01/12/2011 10:18:06 AM,01/12/2011 10:18:20 AM,01/12/2011 10:18:39 AM,01/12/2011 10:21:03 AM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/12/2011 10:25:55 AM,0 Block of CHENERY ST,SF,94131,B06,11,5574,3,3,3,false,,1,RESCUE SQUAD,5,6,8,Glen Park,"(37.7409632777896, -122.425764645931)",110120119-RS2 -120550030,E01,12018036,Medical Incident,02/24/2012,02/23/2012,02/24/2012 03:56:16 AM,02/24/2012 03:57:24 AM,02/24/2012 03:57:31 AM,02/24/2012 03:59:31 AM,02/24/2012 04:01:04 AM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 04:13:33 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",120550030-E01 -160501057,KM04,16020028,Medical Incident,02/19/2016,02/19/2016,02/19/2016 10:03:19 AM,02/19/2016 10:04:41 AM,02/19/2016 10:05:09 AM,02/19/2016 10:05:43 AM,02/19/2016 10:12:22 AM,02/19/2016 10:27:13 AM,02/19/2016 10:54:03 AM,Code 2 Transport,02/19/2016 11:17:17 AM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160501057-KM04 -102380384,54,10075227,Medical Incident,08/26/2010,08/26/2010,08/26/2010 11:15:37 PM,08/26/2010 11:18:12 PM,08/26/2010 11:19:15 PM,08/26/2010 11:19:58 PM,08/26/2010 11:20:47 PM,08/26/2010 11:36:14 PM,08/26/2010 11:43:10 PM,Other,08/27/2010 12:10:28 AM,21ST ST/FOLSOM ST,SF,94110,B06,7,545,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7572976449633, -122.414541469066)",102380384-54 -131740153,AM06,13059023,Medical Incident,06/23/2013,06/23/2013,06/23/2013 10:21:06 AM,06/23/2013 10:22:11 AM,06/23/2013 10:22:40 AM,06/23/2013 10:23:14 AM,06/23/2013 10:28:32 AM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Other,06/23/2013 10:29:52 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",131740153-AM06 -132100367,FB1,13071186,Alarms,07/29/2013,07/29/2013,07/29/2013 09:19:59 PM,07/29/2013 09:20:48 PM,07/29/2013 09:21:38 PM,07/29/2013 09:22:36 PM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,04/25/2016 01:51:34 PM,Other,07/29/2013 09:40:56 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Alarm,1,SUPPORT,3,1,3,North Beach,"(37.8069201392161, -122.407170160416)",132100367-FB1 -132660317,E18,13090363,Administrative,09/23/2013,09/23/2013,09/23/2013 05:38:32 PM,09/23/2013 05:38:37 PM,09/23/2013 05:38:58 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Fire,09/23/2013 05:39:26 PM,1900 Block of 32ND AVE,SF,94116,B08,18,7533,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7508238719258, -122.490273641262)",132660317-E18 -123050160,B02,12101178,Alarms,10/31/2012,10/31/2012,10/31/2012 11:21:32 AM,10/31/2012 11:22:13 AM,10/31/2012 11:22:42 AM,10/31/2012 11:23:50 AM,10/31/2012 11:29:06 AM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/31/2012 11:34:02 AM,200 Block of TOWNSEND ST,SF,94107,B03,8,2224,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7775721706078, -122.394468197247)",123050160-B02 -160470822,65,16018836,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:33:28 AM,02/16/2016 08:34:57 AM,02/16/2016 08:35:18 AM,02/16/2016 08:35:24 AM,02/16/2016 08:49:39 AM,02/16/2016 08:52:22 AM,02/16/2016 09:17:17 AM,Code 2 Transport,02/16/2016 09:53:59 AM,FOLSOM ST/6TH ST,San Francisco,94107,B03,1,2253,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",160470822-65 -113650135,E08,11121223,Medical Incident,12/31/2011,12/31/2011,12/31/2011 10:51:23 AM,12/31/2011 10:51:23 AM,12/31/2011 10:51:23 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Fire,12/31/2011 10:55:01 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",113650135-E08 -82680155,T03,8082106,Alarms,09/24/2008,09/24/2008,09/24/2008 12:21:05 PM,09/24/2008 12:22:18 PM,09/24/2008 12:22:30 PM,09/24/2008 12:24:35 PM,09/24/2008 12:26:14 PM,04/25/2016 03:32:15 PM,04/25/2016 03:32:15 PM,Other,09/24/2008 12:27:15 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,false,,1,TRUCK,3,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",082680155-T03 -160810508,88,16032067,Medical Incident,03/21/2016,03/20/2016,03/21/2016 06:49:13 AM,03/21/2016 06:49:13 AM,03/21/2016 06:49:54 AM,03/21/2016 06:50:11 AM,03/21/2016 07:01:03 AM,03/21/2016 07:25:43 AM,03/21/2016 07:54:17 AM,Code 2 Transport,03/21/2016 08:29:16 AM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160810508-88 -133010135,E17,13102247,Other,10/28/2013,10/28/2013,10/28/2013 10:22:23 AM,10/28/2013 10:22:23 AM,10/28/2013 10:22:23 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Fire,10/28/2013 10:23:48 AM,1900 Block of KEITH ST,SF,94124,B10,17,6547,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7290092439057, -122.389643750938)",133010135-E17 -111990169,T01,11065626,Medical Incident,07/18/2011,07/18/2011,07/18/2011 12:33:13 PM,07/18/2011 12:33:30 PM,07/18/2011 12:33:43 PM,07/18/2011 12:36:59 PM,07/18/2011 12:37:08 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/18/2011 12:46:10 PM,700 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",111990169-T01 -160630983,54,16024999,Medical Incident,03/03/2016,03/03/2016,03/03/2016 09:17:42 AM,03/03/2016 09:18:57 AM,03/03/2016 09:21:13 AM,03/03/2016 09:22:11 AM,03/03/2016 09:40:42 AM,03/03/2016 09:50:38 AM,03/03/2016 10:22:40 AM,Code 2 Transport,03/03/2016 11:01:30 AM,20TH ST/PENNSYLVANIA AV,San Francisco,94107,B10,37,2474,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7602019146285, -122.393364731973)",160630983-54 -140770025,E14,14025937,Medical Incident,03/18/2014,03/17/2014,03/18/2014 02:36:06 AM,03/18/2014 02:37:29 AM,03/18/2014 02:37:40 AM,03/18/2014 02:39:32 AM,03/18/2014 02:45:19 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Code 2 Transport,03/18/2014 02:51:43 AM,800 Block of LA PLAYA,SAN FRANCISCO,94121,B07,34,7311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",140770025-E14 -160671015,75,16026685,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:42:24 AM,03/07/2016 10:43:12 AM,03/07/2016 10:44:38 AM,03/07/2016 10:50:46 AM,03/07/2016 10:50:46 AM,03/07/2016 11:01:34 AM,03/07/2016 11:01:34 AM,Code 2 Transport,03/07/2016 12:22:50 PM,2600 Block of BRYANT ST,San Francisco,94110,B06,9,5532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7519940443041, -122.4091228581)",160671015-75 -102650134,T18,10083842,Structure Fire,09/22/2010,09/22/2010,09/22/2010 11:52:50 AM,09/22/2010 11:53:16 AM,09/22/2010 11:53:35 AM,09/22/2010 11:53:58 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 11:58:08 AM,1400 Block of 43RD AVE,SF,94122,B08,23,7652,3,3,3,true,,1,TRUCK,11,8,4,Sunset/Parkside,"(37.7596364119694, -122.50257826597)",102650134-T18 -112790269,T15,11092424,Other,10/06/2011,10/06/2011,10/06/2011 05:12:05 PM,10/06/2011 05:12:29 PM,10/06/2011 05:12:35 PM,10/06/2011 05:14:08 PM,10/06/2011 05:18:04 PM,04/25/2016 02:02:18 PM,04/25/2016 02:02:18 PM,Fire,10/06/2011 05:33:42 PM,200 Block of MONTEREY BLVD,SF,94131,B09,26,8214,3,3,3,false,,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7316806819241, -122.440884413372)",112790269-T15 -111900112,T05,11062769,Citizen Assist / Service Call,07/09/2011,07/09/2011,07/09/2011 10:43:30 AM,07/09/2011 10:45:23 AM,07/09/2011 10:45:35 AM,07/09/2011 10:45:53 AM,07/09/2011 10:50:11 AM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Fire,07/09/2011 10:57:14 AM,1500 Block of HAYES ST,SF,94117,B05,21,4351,3,3,3,false,,1,TRUCK,1,5,5,Lone Mountain/USF,"(37.7744089216996, -122.441921717893)",111900112-T05 -160750163,76,16029552,Medical Incident,03/15/2016,03/14/2016,03/15/2016 01:45:12 AM,03/15/2016 01:46:14 AM,03/15/2016 01:46:51 AM,03/15/2016 01:46:57 AM,03/15/2016 01:49:18 AM,03/15/2016 01:55:13 AM,03/15/2016 02:03:48 AM,Code 2 Transport,03/15/2016 02:30:47 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160750163-76 -121990031,KM04,12065998,Medical Incident,07/17/2012,07/16/2012,07/17/2012 02:52:30 AM,07/17/2012 02:53:00 AM,07/17/2012 02:53:17 AM,07/17/2012 02:55:05 AM,07/17/2012 03:04:00 AM,07/17/2012 03:21:02 AM,07/17/2012 04:01:44 AM,Code 2 Transport,07/17/2012 04:23:48 AM,0 Block of SOUTH PARK,SF,94107,B03,8,2153,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",121990031-KM04 -140590223,E35,14019924,Alarms,02/28/2014,02/28/2014,02/28/2014 02:09:53 PM,02/28/2014 02:09:53 PM,02/28/2014 02:10:03 PM,02/28/2014 02:11:36 PM,02/28/2014 02:15:12 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Fire,02/28/2014 02:15:14 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",140590223-E35 -120810215,79,12026910,Medical Incident,03/21/2012,03/21/2012,03/21/2012 01:22:33 PM,03/21/2012 01:24:54 PM,03/21/2012 01:25:51 PM,03/21/2012 01:28:35 PM,03/21/2012 01:37:00 PM,03/21/2012 01:52:15 PM,03/21/2012 02:14:01 PM,Code 2 Transport,03/21/2012 02:34:21 PM,100 Block of VALLEJO ST,SF,94111,B01,13,1144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7995522033261, -122.40064216163)",120810215-79 -160142818,59,16005667,Medical Incident,01/14/2016,01/14/2016,01/14/2016 05:26:48 PM,01/14/2016 05:29:44 PM,01/14/2016 05:30:02 PM,01/14/2016 05:30:13 PM,01/14/2016 05:32:19 PM,01/14/2016 05:42:21 PM,01/14/2016 05:42:22 PM,Code 2 Transport,01/14/2016 06:31:07 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160142818-59 -160570005,65,16022579,Medical Incident,02/26/2016,02/25/2016,02/26/2016 12:02:37 AM,02/26/2016 12:03:28 AM,02/26/2016 12:03:41 AM,02/26/2016 12:03:49 AM,02/26/2016 12:08:19 AM,02/26/2016 12:33:16 AM,02/26/2016 12:37:08 AM,Code 2 Transport,02/26/2016 01:17:32 AM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",160570005-65 -110810242,E37,11026701,Structure Fire,03/22/2011,03/22/2011,03/22/2011 04:46:24 PM,03/22/2011 04:46:55 PM,03/22/2011 04:47:50 PM,03/22/2011 04:48:43 PM,03/22/2011 04:50:57 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 04:54:49 PM,2400 Block of 24TH ST,SF,94110,B10,9,2562,3,3,3,true,,1,ENGINE,3,10,10,Mission,"(37.7530951176845, -122.403879225833)",110810242-E37 -160220958,82,16008692,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:21:12 AM,01/22/2016 09:22:38 AM,01/22/2016 09:22:52 AM,01/22/2016 09:27:11 AM,01/22/2016 09:31:01 AM,01/22/2016 09:45:45 AM,01/22/2016 09:59:07 AM,Code 2 Transport,01/22/2016 10:55:22 AM,2200 Block of NORIEGA ST,San Francisco,94122,B08,18,7515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7536898844301, -122.487719711365)",160220958-82 -160672696,KM12,16026850,Medical Incident,03/07/2016,03/07/2016,03/07/2016 06:15:37 PM,03/07/2016 06:17:08 PM,03/07/2016 06:17:31 PM,03/07/2016 06:18:10 PM,03/07/2016 06:32:12 PM,03/07/2016 06:44:17 PM,03/07/2016 07:10:10 PM,Code 2 Transport,03/07/2016 07:31:38 PM,GEARY BL/18TH AV,San Francisco,94121,B07,31,7161,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7804396365064, -122.477239888569)",160672696-KM12 -160214053,78,16008586,Medical Incident,01/21/2016,01/21/2016,01/21/2016 10:36:18 PM,01/21/2016 10:37:55 PM,01/21/2016 10:38:26 PM,01/21/2016 10:38:42 PM,01/21/2016 10:47:40 PM,01/21/2016 11:08:57 PM,01/21/2016 11:23:17 PM,Code 2 Transport,01/21/2016 11:48:42 PM,400 Block of 27TH ST,San Francisco,94131,B06,11,5552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7467511523129, -122.430307966306)",160214053-78 -113350162,E09,11110882,Structure Fire,12/01/2011,12/01/2011,12/01/2011 11:59:19 AM,12/01/2011 11:59:32 AM,12/01/2011 11:59:45 AM,04/25/2016 02:01:23 PM,12/01/2011 12:02:25 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,12/01/2011 01:16:44 PM,JERROLD AV/BARNEVELD AV,SF,94124,B10,9,6412,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7463340944535, -122.402698013436)",113350162-E09 -160120277,88,16004628,Medical Incident,01/12/2016,01/11/2016,01/12/2016 03:10:56 AM,01/12/2016 03:12:11 AM,01/12/2016 03:12:27 AM,01/12/2016 03:12:51 AM,01/12/2016 03:17:31 AM,01/12/2016 03:35:39 AM,01/12/2016 03:40:42 AM,Code 2 Transport,01/12/2016 03:58:05 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160120277-88 -160383634,71,16015411,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:37:12 PM,02/07/2016 10:38:26 PM,02/07/2016 10:38:44 PM,02/07/2016 10:38:51 PM,02/07/2016 10:42:22 PM,02/07/2016 10:54:35 PM,02/07/2016 11:03:43 PM,Code 2 Transport,02/07/2016 11:32:26 PM,POLK ST/SUTTER ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",160383634-71 -131690236,84,13057412,Medical Incident,06/18/2013,06/18/2013,06/18/2013 01:35:04 PM,06/18/2013 01:37:01 PM,06/18/2013 01:37:18 PM,06/18/2013 01:38:52 PM,06/18/2013 01:47:11 PM,06/18/2013 01:59:02 PM,06/18/2013 02:13:40 PM,Code 2 Transport,06/18/2013 02:43:33 PM,DONNER AV/PHELPS ST,SF,94124,B10,42,6452,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7285844467526, -122.401394587249)",131690236-84 -111410112,99,11046799,Medical Incident,05/21/2011,05/21/2011,05/21/2011 09:58:22 AM,05/21/2011 10:00:48 AM,05/21/2011 10:01:01 AM,05/21/2011 10:01:12 AM,05/21/2011 10:06:09 AM,05/21/2011 10:27:51 AM,05/21/2011 10:36:24 AM,Code 3 Transport,05/21/2011 11:15:36 AM,0 Block of PERRY ST,SF,94107,B03,8,2175,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",111410112-99 -160570684,88,16022646,Medical Incident,02/26/2016,02/25/2016,02/26/2016 07:52:14 AM,02/26/2016 07:54:17 AM,02/26/2016 07:54:41 AM,02/26/2016 07:55:26 AM,02/26/2016 08:23:39 AM,02/26/2016 08:35:43 AM,02/26/2016 08:46:38 AM,Code 2 Transport,02/26/2016 09:16:27 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160570684-88 -160872169,54,16034607,Medical Incident,03/27/2016,03/27/2016,03/27/2016 02:55:50 PM,03/27/2016 02:55:50 PM,03/27/2016 03:17:13 PM,03/27/2016 03:17:13 PM,03/27/2016 03:17:13 PM,03/27/2016 03:17:23 PM,03/27/2016 03:53:50 PM,Code 2 Transport,03/27/2016 04:22:55 PM,MASON ST/EDDY ST,San Francisco,94102,B02,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160872169-54 -160851845,AM10,16033786,Medical Incident,03/25/2016,03/25/2016,03/25/2016 01:09:14 PM,03/25/2016 01:11:44 PM,03/25/2016 01:12:12 PM,03/25/2016 01:12:40 PM,03/25/2016 01:20:45 PM,03/25/2016 01:40:17 PM,03/25/2016 02:10:23 PM,Code 2 Transport,03/25/2016 02:43:08 PM,1800 Block of 35TH AVE,San Francisco,94122,B08,18,7561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7525523796805, -122.493484218573)",160851845-AM10 -131920159,E41,13065314,Medical Incident,07/11/2013,07/11/2013,07/11/2013 12:05:32 PM,07/11/2013 12:06:03 PM,07/11/2013 12:06:24 PM,07/11/2013 12:07:15 PM,07/11/2013 12:09:58 PM,04/25/2016 01:51:51 PM,04/25/2016 01:51:51 PM,Other,07/11/2013 12:22:57 PM,1500 Block of CLAY ST,SF,94109,B04,41,1634,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7927001851609, -122.419000308188)",131920159-E41 -121870019,E37,12062166,Medical Incident,07/05/2012,07/04/2012,07/05/2012 12:48:06 AM,07/05/2012 12:48:35 AM,07/05/2012 12:48:51 AM,07/05/2012 12:50:10 AM,07/05/2012 12:52:09 AM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/05/2012 01:08:14 AM,900 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",121870019-E37 -132070017,84,13069936,Medical Incident,07/26/2013,07/25/2013,07/26/2013 01:36:39 AM,07/26/2013 01:39:21 AM,07/26/2013 01:43:11 AM,07/26/2013 01:43:27 AM,07/26/2013 01:55:17 AM,07/26/2013 02:11:31 AM,07/26/2013 02:26:48 AM,Code 2 Transport,07/26/2013 03:01:21 AM,2000 Block of 32ND AVE,SF,94116,B08,18,7544,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.748966040304, -122.490004708306)",132070017-84 -112720001,E33,11089794,Medical Incident,09/29/2011,09/28/2011,09/29/2011 12:07:28 AM,09/29/2011 12:11:04 AM,09/29/2011 12:11:29 AM,09/29/2011 12:12:28 AM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/29/2011 12:13:03 AM,100 Block of BROAD ST,SF,94112,B09,33,8374,3,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7131278901995, -122.45753811019)",112720001-E33 -160560188,KM03,16022216,Medical Incident,02/25/2016,02/24/2016,02/25/2016 01:55:22 AM,02/25/2016 01:56:03 AM,02/25/2016 01:56:18 AM,02/25/2016 01:56:54 AM,02/25/2016 02:00:15 AM,02/25/2016 02:19:48 AM,02/25/2016 02:27:16 AM,Code 2 Transport,02/25/2016 02:16:13 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160560188-KM03 -160650649,88,16025845,Medical Incident,03/05/2016,03/04/2016,03/05/2016 06:41:51 AM,03/05/2016 06:44:11 AM,03/05/2016 06:44:22 AM,03/05/2016 06:44:45 AM,03/05/2016 06:53:08 AM,03/05/2016 07:09:49 AM,03/05/2016 07:33:30 AM,Code 2 Transport,03/05/2016 08:09:58 AM,2000 Block of SLOAT BLVD,San Francisco,94116,B08,19,7615,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.73396905737, -122.495544493871)",160650649-88 -132160005,85,13072834,Medical Incident,08/04/2013,08/03/2013,08/04/2013 12:16:28 AM,08/04/2013 12:17:54 AM,08/04/2013 12:18:17 AM,08/04/2013 12:18:26 AM,08/04/2013 12:25:27 AM,08/04/2013 12:37:24 AM,08/04/2013 12:42:25 AM,Code 2 Transport,08/04/2013 01:08:28 AM,STOCKTON ST/SUTTER ST,SF,94108,B01,1,1324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",132160005-85 -131570106,KM12,13053174,Medical Incident,06/06/2013,06/06/2013,06/06/2013 09:24:33 AM,06/06/2013 09:24:49 AM,06/06/2013 09:25:46 AM,06/06/2013 09:26:22 AM,06/06/2013 09:30:31 AM,06/06/2013 09:45:09 AM,06/06/2013 10:10:22 AM,Code 2 Transport,06/06/2013 10:33:40 AM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",131570106-KM12 -133140242,T05,13106806,Elevator / Escalator Rescue,11/10/2013,11/10/2013,11/10/2013 05:19:47 PM,11/10/2013 05:20:27 PM,11/10/2013 05:20:48 PM,11/10/2013 05:21:57 PM,11/10/2013 05:24:13 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 06:00:00 PM,1100 Block of EDDY ST,SF,94109,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",133140242-T05 -133560359,D3,13121176,Structure Fire,12/22/2013,12/22/2013,12/22/2013 09:04:54 PM,12/22/2013 09:05:16 PM,12/22/2013 09:05:44 PM,12/22/2013 09:06:26 PM,12/22/2013 09:08:04 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 09:10:58 PM,900 Block of CAPP ST,SF,94110,B06,11,5525,3,3,3,false,Alarm,1,CHIEF,1,6,9,Mission,"(37.7515098435706, -122.417210393088)",133560359-D3 -160170122,68,16006648,Medical Incident,01/17/2016,01/16/2016,01/17/2016 12:54:52 AM,01/17/2016 12:55:16 AM,01/17/2016 12:55:49 AM,01/17/2016 12:55:58 AM,01/17/2016 01:00:11 AM,01/17/2016 01:15:35 AM,01/17/2016 01:35:57 AM,Code 2 Transport,01/17/2016 02:31:05 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160170122-68 -131460303,E10,13049617,Alarms,05/26/2013,05/26/2013,05/26/2013 05:28:25 PM,05/26/2013 05:30:02 PM,05/26/2013 05:30:09 PM,05/26/2013 05:31:28 PM,05/26/2013 05:33:55 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 05:58:58 PM,3600 Block of JACKSON ST,SF,94118,B07,10,4434,3,3,3,true,Alarm,1,ENGINE,2,7,2,Presidio Heights,"(37.7898207701933, -122.454936092555)",131460303-E10 -122750418,T03,12090941,Alarms,10/01/2012,10/01/2012,10/01/2012 10:02:12 PM,10/01/2012 10:03:14 PM,10/01/2012 10:03:18 PM,10/01/2012 10:04:38 PM,10/01/2012 10:07:33 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/01/2012 10:21:01 PM,1900 Block of CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7899016100477, -122.426449179757)",122750418-T03 -160350095,72,16013637,Medical Incident,02/04/2016,02/03/2016,02/04/2016 12:50:45 AM,02/04/2016 12:50:45 AM,02/04/2016 12:50:59 AM,02/04/2016 12:51:30 AM,02/04/2016 12:54:23 AM,02/04/2016 01:06:28 AM,02/04/2016 01:16:02 AM,Code 2 Transport,02/04/2016 02:07:04 AM,11TH AV/GEARY BL,San Francisco,94118,B07,31,7141,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7807687380348, -122.469627030052)",160350095-72 -112150089,E36,11070905,Medical Incident,08/03/2011,08/03/2011,08/03/2011 08:52:07 AM,08/03/2011 08:53:58 AM,08/03/2011 08:55:40 AM,08/03/2011 08:56:55 AM,08/03/2011 09:00:14 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Other,08/03/2011 09:09:33 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",112150089-E36 -113320298,E43,11110072,Medical Incident,11/28/2011,11/28/2011,11/28/2011 05:15:06 PM,11/28/2011 05:16:03 PM,11/28/2011 05:16:15 PM,11/28/2011 05:17:19 PM,11/28/2011 05:19:59 PM,04/25/2016 02:01:26 PM,04/25/2016 02:01:26 PM,Other,11/28/2011 05:21:49 PM,300 Block of OXFORD ST,SF,94134,B09,43,6152,3,3,3,false,,1,ENGINE,1,9,9,Excelsior,"(37.72555008701, -122.419202552102)",113320298-E43 -160382083,82,16015247,Medical Incident,02/07/2016,02/07/2016,02/07/2016 02:09:59 PM,02/07/2016 02:13:41 PM,02/07/2016 02:16:40 PM,02/07/2016 02:18:47 PM,02/07/2016 02:27:31 PM,02/07/2016 02:35:54 PM,02/07/2016 02:58:18 PM,Code 2 Transport,02/07/2016 03:06:16 PM,0 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7202829536688, -122.3858679491)",160382083-82 -131920123,E03,13065284,Medical Incident,07/11/2013,07/11/2013,07/11/2013 10:38:13 AM,07/11/2013 10:39:08 AM,07/11/2013 10:39:28 AM,04/25/2016 01:51:51 PM,04/25/2016 01:51:51 PM,04/25/2016 01:51:51 PM,04/25/2016 01:51:51 PM,Other,04/25/2016 01:51:51 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",131920123-E03 -131140135,T02,13038393,Structure Fire,04/24/2013,04/24/2013,04/24/2013 10:50:02 AM,04/24/2013 10:50:33 AM,04/24/2013 10:58:15 AM,04/24/2013 11:00:23 AM,04/24/2013 11:21:33 AM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 01:10:34 PM,2000 Block of VALLEJO ST,SF,94123,B04,38,3442,3,3,3,false,Fire,3,TRUCK,27,4,2,Marina,"(37.7958030542042, -122.431016298283)",131140135-T02 -102260089,92,10071076,Medical Incident,08/14/2010,08/14/2010,08/14/2010 08:12:03 AM,08/14/2010 08:12:31 AM,08/14/2010 08:13:20 AM,08/14/2010 08:15:27 AM,08/14/2010 08:20:29 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 08:32:58 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,E,3,true,,1,MEDIC,3,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",102260089-92 -111750326,E41,11057803,Gas Leak (Natural and LP Gases),06/24/2011,06/24/2011,06/24/2011 06:42:28 PM,06/24/2011 06:44:01 PM,06/24/2011 06:44:09 PM,06/24/2011 06:45:53 PM,06/24/2011 06:47:34 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Fire,06/24/2011 06:55:25 PM,700 Block of TAYLOR ST,SF,94108,B01,41,1446,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7892825039082, -122.411912440084)",111750326-E41 -131360402,84,13046056,Medical Incident,05/16/2013,05/16/2013,05/16/2013 08:29:23 PM,05/16/2013 08:30:12 PM,05/16/2013 08:32:04 PM,05/16/2013 08:32:22 PM,05/16/2013 08:36:43 PM,05/16/2013 09:01:09 PM,05/16/2013 09:07:35 PM,Code 2 Transport,05/16/2013 09:35:23 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",131360402-84 -160522669,68,16020913,Medical Incident,02/21/2016,02/21/2016,02/21/2016 05:58:54 PM,02/21/2016 05:59:25 PM,02/21/2016 06:00:35 PM,02/21/2016 06:00:42 PM,02/21/2016 06:07:09 PM,02/21/2016 06:34:50 PM,02/21/2016 07:01:55 PM,Code 2 Transport,02/21/2016 07:31:01 PM,1300 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7874978906623, -122.422591786822)",160522669-68 -123090353,T17,12102894,Smoke Investigation (Outside),11/04/2012,11/04/2012,11/04/2012 07:02:33 PM,11/04/2012 07:06:11 PM,11/04/2012 07:06:28 PM,11/04/2012 07:08:27 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 07:12:32 PM,HAWES ST/GILMAN AV,SF,94124,B10,17,6613,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7192984667192, -122.390019685834)",123090353-T17 -113220291,E03,11107047,Medical Incident,11/18/2011,11/18/2011,11/18/2011 05:56:24 PM,11/18/2011 05:56:58 PM,11/18/2011 05:58:08 PM,11/18/2011 05:58:57 PM,11/18/2011 06:03:07 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/18/2011 06:19:33 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",113220291-E03 -111010338,E37,11033651,Medical Incident,04/11/2011,04/11/2011,04/11/2011 09:38:02 PM,04/11/2011 09:38:02 PM,04/11/2011 09:38:14 PM,04/11/2011 09:39:05 PM,04/11/2011 09:40:12 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/11/2011 09:56:41 PM,20TH ST/ARKANSAS ST,SF,94107,B10,37,2543,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.759908951077, -122.398215564881)",111010338-E37 -113610052,92,11119845,Medical Incident,12/27/2011,12/26/2011,12/27/2011 06:54:53 AM,12/27/2011 06:56:14 AM,12/27/2011 06:56:26 AM,12/27/2011 06:56:38 AM,12/27/2011 07:02:16 AM,12/27/2011 07:21:20 AM,12/27/2011 07:39:14 AM,Code 2 Transport,12/27/2011 08:09:58 AM,23RD ST/3RD ST,SF,94107,B10,25,2574,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7553898860696, -122.388001122896)",113610052-92 -102730348,81,10086825,Medical Incident,09/30/2010,09/30/2010,09/30/2010 08:43:21 PM,09/30/2010 08:44:09 PM,09/30/2010 08:45:19 PM,09/30/2010 08:45:57 PM,09/30/2010 09:07:20 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Against Medical Advice,09/30/2010 09:45:15 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7795675906982, -122.407474134289)",102730348-81 -103090392,E22,10099226,Medical Incident,11/05/2010,11/05/2010,11/05/2010 11:18:11 PM,11/05/2010 11:19:04 PM,11/05/2010 11:19:44 PM,11/05/2010 11:21:39 PM,11/05/2010 11:23:31 PM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Other,11/05/2010 11:35:25 PM,1200 Block of 8TH AVE,SF,94122,B08,22,7333,3,3,3,true,,1,ENGINE,1,7,5,Inner Sunset,"(37.7650238192143, -122.465379845146)",103090392-E22 -121460234,AM02,12048513,Medical Incident,05/25/2012,05/25/2012,05/25/2012 04:10:11 PM,05/25/2012 04:10:49 PM,05/25/2012 04:12:52 PM,05/25/2012 04:13:44 PM,05/25/2012 04:25:12 PM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,No Merit,05/25/2012 04:39:44 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",121460234-AM02 -130200123,B09,13006816,Alarms,01/20/2013,01/20/2013,01/20/2013 10:11:42 AM,01/20/2013 10:14:12 AM,01/20/2013 10:14:18 AM,01/20/2013 10:15:08 AM,01/20/2013 10:19:15 AM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/20/2013 10:34:37 AM,400 Block of CAPISTRANO AVE,SF,94112,B09,15,8274,3,3,3,false,Alarm,1,CHIEF,2,9,11,Outer Mission,"(37.7248259518745, -122.439059619898)",130200123-B09 -112940029,KM15,11097402,Medical Incident,10/21/2011,10/20/2011,10/21/2011 02:25:10 AM,10/21/2011 02:27:00 AM,10/21/2011 02:27:12 AM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,04/25/2016 02:02:03 PM,1400 Block of HALIBUT CT,TI,94130,B03,48,2931,3,3,3,false,,1,PRIVATE,3,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",112940029-KM15 -160172633,76,16006935,Medical Incident,01/17/2016,01/17/2016,01/17/2016 06:07:32 PM,01/17/2016 06:08:24 PM,01/17/2016 06:08:39 PM,01/17/2016 06:08:50 PM,01/17/2016 06:13:35 PM,01/17/2016 06:37:35 PM,01/17/2016 06:46:18 PM,Code 2 Transport,01/17/2016 07:18:56 PM,700 Block of MISSOURI ST,San Francisco,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",160172633-76 -160890869,AM06,16035251,Traffic Collision,03/29/2016,03/29/2016,03/29/2016 08:51:33 AM,03/29/2016 08:53:47 AM,03/29/2016 08:55:36 AM,03/29/2016 08:56:04 AM,03/29/2016 09:05:20 AM,03/29/2016 09:18:14 AM,03/29/2016 09:42:50 AM,Code 2 Transport,03/29/2016 10:05:43 AM,LARKIN ST/GOLDEN GATE AV,San Francisco,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160890869-AM06 -132570183,89,13086908,Medical Incident,09/14/2013,09/14/2013,09/14/2013 12:39:47 PM,09/14/2013 12:40:36 PM,09/14/2013 12:40:49 PM,09/14/2013 12:41:30 PM,09/14/2013 12:43:37 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 01:19:00 PM,3400 Block of 17TH ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7633263261041, -122.42222016397)",132570183-89 -140700356,T05,14023760,Structure Fire,03/11/2014,03/11/2014,03/11/2014 08:08:16 PM,03/11/2014 08:08:47 PM,03/11/2014 08:20:52 PM,03/11/2014 08:20:52 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Fire,03/11/2014 09:59:25 PM,2400 Block of TURK BLVD,SAN FRANCISCO,94118,B05,21,4564,3,3,3,false,Fire,1,TRUCK,13,5,1,Lone Mountain/USF,"(37.7783909910658, -122.448427563637)",140700356-T05 -123450175,89,12115313,Medical Incident,12/10/2012,12/10/2012,12/10/2012 10:57:01 AM,12/10/2012 11:00:37 AM,12/10/2012 11:00:52 AM,12/10/2012 11:04:57 AM,12/10/2012 11:06:06 AM,12/10/2012 11:20:21 AM,12/10/2012 11:39:08 AM,Code 2 Transport,12/10/2012 12:21:04 PM,1500 Block of WASHINGTON ST,SF,94109,B01,41,1564,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7936295411336, -122.418768796913)",123450175-89 -132520161,E12,13085157,Medical Incident,09/09/2013,09/09/2013,09/09/2013 11:15:58 AM,09/09/2013 11:19:00 AM,09/09/2013 11:19:11 AM,09/09/2013 11:19:57 AM,09/09/2013 11:23:56 AM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Fire,09/09/2013 11:26:52 AM,0 Block of WOODLAND AVE,SF,94117,B05,12,5153,3,3,3,true,Non Life-threatening,1,ENGINE,2,5,5,Inner Sunset,"(37.7633869789929, -122.453246918213)",132520161-E12 -140440229,KM11,14014991,Medical Incident,02/13/2014,02/13/2014,02/13/2014 12:53:39 PM,02/13/2014 12:56:06 PM,02/13/2014 01:01:44 PM,02/13/2014 01:03:35 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 01:05:04 PM,300 Block of HYDE ST,SF,94109,B02,3,1555,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7839735143019, -122.416045465656)",140440229-KM11 -102610382,56,10082675,Medical Incident,09/18/2010,09/18/2010,09/18/2010 09:01:59 PM,09/18/2010 09:02:59 PM,09/18/2010 09:08:27 PM,09/18/2010 09:08:31 PM,09/18/2010 09:27:52 PM,09/18/2010 09:34:54 PM,09/18/2010 09:43:19 PM,Code 2 Transport,09/18/2010 10:14:17 PM,3RD ST/KING ST,SF,94107,B03,8,2154,2,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",102610382-56 -110940097,84,11031134,Structure Fire,04/04/2011,04/04/2011,04/04/2011 09:25:41 AM,04/04/2011 09:26:33 AM,04/04/2011 09:26:55 AM,04/04/2011 09:27:45 AM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/25/2016 02:05:17 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,MEDIC,7,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",110940097-84 -110610173,72,11019992,Medical Incident,03/02/2011,03/02/2011,03/02/2011 11:47:38 AM,03/02/2011 11:49:08 AM,03/02/2011 11:49:55 AM,03/02/2011 11:50:05 AM,03/02/2011 11:58:49 AM,03/02/2011 12:17:58 PM,03/02/2011 12:30:12 PM,Code 2 Transport,03/02/2011 12:48:55 PM,700 Block of EDINBURGH ST,SF,94112,B09,43,6135,2,2,2,true,,1,MEDIC,2,9,11,Excelsior,"(37.7173763924342, -122.43500213442)",110610173-72 -123560133,AM06,12119096,Structure Fire,12/21/2012,12/21/2012,12/21/2012 10:54:44 AM,12/21/2012 10:54:44 AM,12/21/2012 10:55:40 AM,12/21/2012 11:01:26 AM,12/21/2012 11:03:18 AM,12/21/2012 11:10:53 AM,12/21/2012 11:24:43 AM,Code 2 Transport,12/21/2012 11:46:06 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Alarm,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",123560133-AM06 -160393914,AM16,16015829,Medical Incident,02/08/2016,02/08/2016,02/08/2016 11:28:27 PM,02/08/2016 11:29:22 PM,02/08/2016 11:29:51 PM,02/08/2016 11:30:37 PM,02/08/2016 11:34:50 PM,02/08/2016 11:51:07 PM,02/09/2016 12:09:33 AM,Code 2 Transport,02/09/2016 12:36:26 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160393914-AM16 -110960157,92,11031815,Medical Incident,04/06/2011,04/06/2011,04/06/2011 11:35:45 AM,04/06/2011 11:37:47 AM,04/06/2011 11:37:58 AM,04/06/2011 11:38:08 AM,04/06/2011 11:48:47 AM,04/06/2011 12:05:42 PM,04/06/2011 12:30:35 PM,Code 2 Transport,04/06/2011 12:53:58 PM,200 Block of SAGAMORE ST,SF,94112,B09,33,8375,2,2,2,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7113251139189, -122.460533946078)",110960157-92 -111550227,54,11051263,Medical Incident,06/04/2011,06/04/2011,06/04/2011 02:18:07 PM,06/04/2011 02:19:32 PM,06/04/2011 02:21:52 PM,04/25/2016 02:04:18 PM,06/04/2011 02:36:49 PM,06/04/2011 03:06:40 PM,06/04/2011 03:30:42 PM,Code 2 Transport,06/04/2011 03:51:41 PM,MISSION ST/BOSWORTH ST,SF,94112,B06,32,5633,2,2,2,true,,1,MEDIC,1,6,8,Outer Mission,"(37.7336750178474, -122.426391166349)",111550227-54 -132380227,RC1,13080325,Medical Incident,08/26/2013,08/26/2013,08/26/2013 02:37:57 PM,08/26/2013 02:39:57 PM,08/26/2013 02:40:06 PM,08/26/2013 02:40:52 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 02:44:00 PM,0 Block of MASON ST,SF,94102,B03,1,1365,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",132380227-RC1 -160233426,61,16009323,Medical Incident,01/23/2016,01/23/2016,01/23/2016 09:05:29 PM,01/23/2016 09:06:02 PM,01/23/2016 09:06:26 PM,01/23/2016 09:06:33 PM,01/23/2016 09:09:00 PM,01/23/2016 09:27:23 PM,01/23/2016 09:40:27 PM,Code 2 Transport,01/23/2016 10:12:42 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160233426-61 -140410006,B10,14013771,Alarms,02/10/2014,02/09/2014,02/10/2014 12:17:13 AM,02/10/2014 12:17:17 AM,02/10/2014 12:17:51 AM,02/10/2014 12:19:34 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Fire,02/10/2014 12:30:05 AM,1200 Block of CAROLINA ST,SF,94107,B10,37,256,3,3,3,false,Alarm,1,CHIEF,3,10,10,Potrero Hill,"(37.7526323138734, -122.398696830553)",140410006-B10 -133050139,RC2,13103593,Medical Incident,11/01/2013,11/01/2013,11/01/2013 09:11:17 AM,11/01/2013 09:15:00 AM,11/01/2013 09:17:48 AM,04/25/2016 01:49:59 PM,11/01/2013 09:21:34 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 09:31:39 AM,800 Block of JOHN F KENNEDY DR,SF,94118,B07,31,7144,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,1,7,1,Golden Gate Park,"(37.7715939641615, -122.476848787477)",133050139-RC2 -132980326,E10,13101322,Medical Incident,10/25/2013,10/25/2013,10/25/2013 06:48:55 PM,10/25/2013 06:49:22 PM,10/25/2013 06:49:38 PM,10/25/2013 06:51:01 PM,10/25/2013 06:52:28 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 07:01:08 PM,GEARY BL/MASONIC AV,SF,94118,B05,10,4455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",132980326-E10 -160210389,57,16008241,Medical Incident,01/21/2016,01/20/2016,01/21/2016 04:19:55 AM,01/21/2016 04:19:55 AM,01/21/2016 04:20:24 AM,01/21/2016 04:20:36 AM,01/21/2016 04:27:55 AM,01/21/2016 04:50:47 AM,01/21/2016 04:59:17 AM,Code 2 Transport,01/21/2016 05:43:32 AM,1300 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",160210389-57 -112670385,85,11088403,Medical Incident,09/24/2011,09/24/2011,09/24/2011 11:37:24 PM,09/24/2011 11:37:42 PM,09/24/2011 11:37:54 PM,09/24/2011 11:38:43 PM,09/24/2011 11:46:52 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Patient Declined Transport,09/25/2011 12:07:09 AM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3661,2,2,2,true,,1,MEDIC,1,4,2,Marina,"(37.8006947037442, -122.436775838314)",112670385-85 -160742083,71,16029365,Medical Incident,03/14/2016,03/14/2016,03/14/2016 02:07:32 PM,03/14/2016 02:09:00 PM,03/14/2016 02:09:49 PM,03/14/2016 02:12:39 PM,03/14/2016 02:27:25 PM,03/14/2016 02:42:06 PM,03/14/2016 03:15:18 PM,Code 2 Transport,03/14/2016 03:34:06 PM,0 Block of TAYLOR ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",160742083-71 -160660176,79,16026222,Medical Incident,03/06/2016,03/05/2016,03/06/2016 01:10:12 AM,03/06/2016 01:13:08 AM,03/06/2016 01:13:17 AM,03/06/2016 01:13:33 AM,03/06/2016 01:18:21 AM,03/06/2016 01:39:09 AM,03/06/2016 01:48:02 AM,Code 2 Transport,03/06/2016 02:13:45 AM,200 Block of PLYMOUTH AVE,San Francisco,94112,B09,33,8371,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7127562217408, -122.456118377299)",160660176-79 -160651758,KM09,16025939,Medical Incident,03/05/2016,03/05/2016,03/05/2016 01:33:01 PM,03/05/2016 01:34:47 PM,03/05/2016 01:35:11 PM,03/05/2016 01:35:50 PM,03/05/2016 01:45:25 PM,03/05/2016 02:09:28 PM,03/05/2016 02:30:59 PM,Code 2 Transport,03/05/2016 03:07:56 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160651758-KM09 -160392566,61,16015707,Medical Incident,02/08/2016,02/08/2016,02/08/2016 04:43:33 PM,02/08/2016 04:44:23 PM,02/08/2016 04:45:16 PM,02/08/2016 04:45:26 PM,02/08/2016 04:49:05 PM,02/08/2016 04:54:31 PM,02/08/2016 05:17:43 PM,Code 2 Transport,02/08/2016 05:30:17 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160392566-61 -160420525,AM24,16016749,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:01:58 AM,02/11/2016 07:02:04 AM,02/11/2016 07:02:18 AM,02/11/2016 07:02:41 AM,02/11/2016 07:07:37 AM,02/11/2016 07:23:31 AM,02/11/2016 07:47:49 AM,Code 2 Transport,02/11/2016 08:10:13 AM,1000 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7282764057526, -122.380737923208)",160420525-AM24 -160583585,AM24,16023299,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:32:17 PM,02/27/2016 09:33:29 PM,02/27/2016 09:33:50 PM,02/27/2016 09:34:32 PM,02/27/2016 09:47:55 PM,02/27/2016 10:02:19 PM,02/27/2016 10:31:57 PM,Code 2 Transport,02/27/2016 10:59:29 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160583585-AM24 -123440298,E48,12115091,Medical Incident,12/09/2012,12/09/2012,12/09/2012 06:07:44 PM,12/09/2012 06:10:10 PM,12/09/2012 06:12:03 PM,12/09/2012 06:13:27 PM,12/09/2012 06:16:47 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 07:21:02 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,1,1,2,true,Potentially Life-Threatening,1,ENGINE,2,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",123440298-E48 -160511751,75,16020486,Medical Incident,02/20/2016,02/20/2016,02/20/2016 01:56:15 PM,02/20/2016 01:56:15 PM,02/20/2016 01:56:52 PM,02/20/2016 01:56:59 PM,02/20/2016 02:01:02 PM,02/20/2016 02:08:59 PM,02/20/2016 02:16:56 PM,Code 3 Transport,02/20/2016 03:17:13 PM,200 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",160511751-75 -112620408,E29,11086641,Medical Incident,09/19/2011,09/19/2011,09/19/2011 09:32:03 PM,09/19/2011 09:32:55 PM,09/19/2011 09:33:20 PM,09/19/2011 09:34:46 PM,09/19/2011 09:39:13 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 09:52:43 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",112620408-E29 -140100095,E13,14003419,Traffic Collision,01/10/2014,01/10/2014,01/10/2014 08:44:41 AM,01/10/2014 08:46:32 AM,01/10/2014 08:48:18 AM,01/10/2014 08:49:12 AM,01/10/2014 08:51:49 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 09:14:26 AM,MARKET ST/DRUMM ST,SF,94105,B01,13,1113,,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",140100095-E13 -111450098,T16,11048110,Structure Fire,05/25/2011,05/25/2011,05/25/2011 09:44:08 AM,05/25/2011 09:44:08 AM,05/25/2011 09:45:21 AM,04/25/2016 02:04:28 PM,05/25/2011 09:46:46 AM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/25/2011 09:52:29 AM,1600 Block of UNION ST,SF,94123,B04,16,323,3,3,3,false,,1,TRUCK,1,4,2,Marina,"(37.7981848264843, -122.426436289929)",111450098-T16 -123300036,E02,12109597,Medical Incident,11/25/2012,11/24/2012,11/25/2012 02:15:44 AM,11/25/2012 02:19:14 AM,11/25/2012 02:19:51 AM,11/25/2012 02:24:48 AM,11/25/2012 02:27:33 AM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 03:14:14 AM,1800 Block of MASON ST,SF,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Russian Hill,"(37.8006355477605, -122.412663134779)",123300036-E02 -111550051,54,11051106,Medical Incident,06/04/2011,06/03/2011,06/04/2011 02:42:32 AM,06/04/2011 02:44:06 AM,06/04/2011 02:44:26 AM,06/04/2011 02:44:37 AM,06/04/2011 02:47:52 AM,06/04/2011 02:53:47 AM,06/04/2011 03:05:14 AM,Code 2 Transport,06/04/2011 03:40:15 AM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,E,E,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",111550051-54 -130960331,T01,13032308,Medical Incident,04/06/2013,04/06/2013,04/06/2013 07:40:43 PM,04/06/2013 07:42:09 PM,04/06/2013 07:42:49 PM,04/06/2013 07:44:03 PM,04/06/2013 07:46:20 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 07:47:30 PM,100 Block of 8TH ST,SF,94103,B02,36,2318,E,E,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,South of Market,"(37.7764024031307, -122.411931056039)",130960331-T01 -140600233,84,14020298,Medical Incident,03/01/2014,03/01/2014,03/01/2014 03:33:42 PM,03/01/2014 03:33:49 PM,03/01/2014 03:34:14 PM,03/01/2014 03:34:25 PM,03/01/2014 03:39:03 PM,03/01/2014 03:52:09 PM,03/01/2014 04:17:20 PM,Code 2 Transport,03/01/2014 04:35:46 PM,MARKET ST/4TH ST,SF,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",140600233-84 -113110093,RC3,11103278,Medical Incident,11/07/2011,11/07/2011,11/07/2011 08:37:39 AM,11/07/2011 08:38:36 AM,11/07/2011 08:38:50 AM,11/07/2011 08:39:36 AM,11/07/2011 08:48:58 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 09:14:53 AM,900 Block of HAYES ST,SF,94117,B05,21,3631,E,E,3,true,,1,RESCUE CAPTAIN,4,5,5,Hayes Valley,"(37.7756759873352, -122.432003180405)",113110093-RC3 -110460324,70,11015353,Medical Incident,02/15/2011,02/15/2011,02/15/2011 08:56:18 PM,02/15/2011 08:58:01 PM,02/15/2011 08:59:10 PM,02/15/2011 08:59:39 PM,02/15/2011 09:08:44 PM,02/15/2011 09:38:28 PM,02/15/2011 09:53:04 PM,Code 2 Transport,02/15/2011 10:10:56 PM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",110460324-70 -133310193,KM04,13112375,Medical Incident,11/27/2013,11/27/2013,11/27/2013 02:38:30 PM,11/27/2013 02:38:38 PM,11/27/2013 02:38:55 PM,11/27/2013 02:39:36 PM,11/27/2013 02:40:59 PM,11/27/2013 02:57:37 PM,11/27/2013 03:07:49 PM,Code 2 Transport,11/27/2013 03:35:09 PM,MISSION ST/MINT ST,SF,94103,B03,1,2246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7821907203873, -122.407164382984)",133310193-KM04 -160140042,63,16005403,Medical Incident,01/14/2016,01/13/2016,01/14/2016 12:19:52 AM,01/14/2016 12:22:09 AM,01/14/2016 12:22:43 AM,01/14/2016 12:25:33 AM,01/14/2016 12:45:24 AM,01/14/2016 01:00:47 AM,01/14/2016 01:06:58 AM,Code 2 Transport,01/14/2016 01:47:37 AM,100 Block of NUEVA AVE,San Francisco,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7121182087675, -122.39706939553)",160140042-63 -102260063,T01,10071052,Alarms,08/14/2010,08/13/2010,08/14/2010 04:20:22 AM,08/14/2010 04:21:23 AM,08/14/2010 04:21:30 AM,08/14/2010 04:23:22 AM,08/14/2010 04:26:20 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 04:28:08 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7764944808779, -122.411359138357)",102260063-T01 -122760376,E32,12091286,Medical Incident,10/02/2012,10/02/2012,10/02/2012 06:50:03 PM,10/02/2012 06:50:56 PM,10/02/2012 06:52:36 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/02/2012 07:18:06 PM,BRAZIL AV/PARIS ST,SF,94112,B09,43,6127,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7239324379329, -122.433231487752)",122760376-E32 -110610287,E07,11020081,Medical Incident,03/02/2011,03/02/2011,03/02/2011 04:12:11 PM,03/02/2011 04:14:31 PM,03/02/2011 04:15:41 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,04/25/2016 02:05:50 PM,16TH ST/SHOTWELL ST,SF,94110,B02,7,5237,3,3,3,true,,1,ENGINE,3,2,9,Mission,"(37.7652494943866, -122.416387524486)",110610287-E07 -133050153,E43,13103604,Medical Incident,11/01/2013,11/01/2013,11/01/2013 09:37:20 AM,11/01/2013 09:38:32 AM,11/01/2013 09:39:15 AM,11/01/2013 09:41:45 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 09:43:46 AM,MISSION ST/NORTON ST,SF,94112,B09,43,6116,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7245877059944, -122.434870379292)",133050153-E43 -131950056,KM04,13066147,Medical Incident,07/14/2013,07/13/2013,07/14/2013 04:43:36 AM,07/14/2013 04:43:50 AM,07/14/2013 04:43:59 AM,07/14/2013 04:45:02 AM,07/14/2013 04:48:15 AM,07/14/2013 05:02:19 AM,07/14/2013 05:08:53 AM,Code 2 Transport,07/14/2013 05:30:11 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",131950056-KM04 -121200221,KM07,12039861,Medical Incident,04/29/2012,04/29/2012,04/29/2012 01:40:56 PM,04/29/2012 01:42:15 PM,04/29/2012 01:44:09 PM,04/25/2016 01:58:56 PM,04/29/2012 01:53:57 PM,04/29/2012 02:06:19 PM,04/29/2012 02:11:27 PM,Code 2 Transport,04/29/2012 02:27:31 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,1,1,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7855029033652, -122.414807788747)",121200221-KM07 -160783720,72,16031187,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:13:33 PM,03/18/2016 09:15:09 PM,03/18/2016 09:16:20 PM,03/18/2016 09:16:20 PM,03/18/2016 09:20:42 PM,03/18/2016 09:33:04 PM,03/18/2016 09:52:32 PM,Code 2 Transport,03/18/2016 10:27:41 PM,1800 Block of FELL ST,San Francisco,94117,B05,21,4514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7727389080619, -122.448331268843)",160783720-72 -160361194,82,16014178,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:36:23 AM,02/05/2016 09:38:21 AM,02/05/2016 09:55:22 AM,02/05/2016 09:55:30 AM,02/05/2016 10:09:22 AM,02/05/2016 10:21:05 AM,02/05/2016 10:33:55 AM,Code 2 Transport,02/05/2016 11:29:16 AM,200 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",160361194-82 -130180297,75A,13006229,,01/18/2013,01/18/2013,01/18/2013 04:29:22 PM,01/18/2013 04:33:15 PM,01/18/2013 04:42:07 PM,04/25/2016 01:54:44 PM,04/25/2016 01:54:44 PM,01/18/2013 04:42:42 PM,01/18/2013 05:02:10 PM,Code 2 Transport,01/18/2013 05:02:13 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,false,Potentially Life-Threatening,1,ADMIN,0,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",130180297-75A -131170105,B04,13039290,Alarms,04/27/2013,04/27/2013,04/27/2013 10:05:33 AM,04/27/2013 10:06:56 AM,04/27/2013 10:07:12 AM,04/27/2013 10:07:42 AM,04/27/2013 10:14:25 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/27/2013 10:19:49 AM,1000 Block of MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.7987062146615, -122.403889712511)",131170105-B04 -123570159,E31,12119484,Structure Fire,12/22/2012,12/22/2012,12/22/2012 11:11:20 AM,12/22/2012 11:12:01 AM,12/22/2012 11:12:21 AM,12/22/2012 11:13:25 AM,12/22/2012 11:16:52 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 12:07:56 PM,2100 Block of BALBOA ST,SF,94121,B07,14,7171,3,3,3,false,Alarm,1,ENGINE,5,7,1,Outer Richmond,"(37.7764791578621, -122.481786615604)",123570159-E31 -132640434,T03,13089726,Alarms,09/21/2013,09/21/2013,09/21/2013 11:36:09 PM,09/21/2013 11:36:39 PM,09/21/2013 11:36:51 PM,09/21/2013 11:38:32 PM,09/21/2013 11:41:45 PM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/21/2013 11:54:36 PM,100 Block of VAN NESS AVE,SF,94102,B02,36,3166,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7768157174869, -122.419744829745)",132640434-T03 -110250468,89,11008447,Medical Incident,01/25/2011,01/25/2011,01/25/2011 10:48:17 PM,01/25/2011 10:48:24 PM,01/25/2011 10:48:57 PM,01/25/2011 10:49:24 PM,01/25/2011 10:52:32 PM,01/25/2011 11:11:06 PM,01/25/2011 11:16:33 PM,Code 2 Transport,01/25/2011 11:51:20 PM,JACKSON ST/VAN NESS AV,SF,94109,B04,41,3153,3,3,3,true,,1,MEDIC,2,4,3,Russian Hill,"(37.7939350051074, -122.423048803014)",110250468-89 -121360076,KM04,12045125,Traffic Collision,05/15/2012,05/15/2012,05/15/2012 08:49:15 AM,05/15/2012 08:51:36 AM,05/15/2012 08:52:21 AM,05/15/2012 08:55:14 AM,05/15/2012 08:56:44 AM,05/15/2012 09:13:51 AM,05/15/2012 09:23:28 AM,Code 2 Transport,05/15/2012 10:04:33 AM,1000 Block of PAGE ST,SF,94117,B05,21,4144,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7720428462416, -122.438055986147)",121360076-KM04 -123130039,88,12104025,Medical Incident,11/08/2012,11/07/2012,11/08/2012 03:27:16 AM,11/08/2012 03:28:03 AM,11/08/2012 03:28:27 AM,11/08/2012 03:28:49 AM,11/08/2012 03:36:58 AM,11/08/2012 03:51:07 AM,11/08/2012 04:03:56 AM,Code 2 Transport,11/08/2012 04:27:20 AM,1100 Block of BURROWS ST,SF,94134,B09,42,6147,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7260211735388, -122.415744681638)",123130039-88 -130090241,88,13003147,Medical Incident,01/09/2013,01/09/2013,01/09/2013 03:15:08 PM,01/09/2013 03:16:28 PM,01/09/2013 03:18:12 PM,01/09/2013 03:18:12 PM,01/09/2013 03:26:31 PM,01/09/2013 03:41:30 PM,01/09/2013 04:05:09 PM,Code 2 Transport,01/09/2013 04:26:00 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",130090241-88 -132890271,E43,13098370,Structure Fire,10/16/2013,10/16/2013,10/16/2013 05:16:31 PM,10/16/2013 05:16:32 PM,10/16/2013 05:17:43 PM,10/16/2013 05:18:58 PM,10/16/2013 05:22:02 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 05:22:31 PM,SANTA ROSA AV/CAYUGA AV,SF,94112,B09,15,8265,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7271683911386, -122.436805492694)",132890271-E43 -113350096,55,11110831,Medical Incident,12/01/2011,12/01/2011,12/01/2011 08:28:25 AM,12/01/2011 08:28:25 AM,12/01/2011 08:28:42 AM,12/01/2011 08:30:47 AM,12/01/2011 08:34:18 AM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Unable to Locate,12/01/2011 08:36:04 AM,EDDY ST/JONES ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",113350096-55 -110550088,AM04,11018049,Medical Incident,02/24/2011,02/24/2011,02/24/2011 08:11:58 AM,02/24/2011 08:13:12 AM,02/24/2011 08:13:36 AM,02/24/2011 08:14:04 AM,02/24/2011 08:17:44 AM,02/24/2011 08:24:26 AM,02/24/2011 08:37:17 AM,Code 2 Transport,02/24/2011 09:34:59 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",110550088-AM04 -133420176,E44,13115957,Medical Incident,12/08/2013,12/08/2013,12/08/2013 11:26:26 AM,12/08/2013 11:28:42 AM,12/08/2013 11:28:50 AM,12/08/2013 11:29:28 AM,12/08/2013 11:34:06 AM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 11:53:01 AM,100 Block of TEDDY AVE,SF,94134,B10,44,6267,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7141788044851, -122.405486549146)",133420176-E44 -110340155,74,11011144,Medical Incident,02/03/2011,02/03/2011,02/03/2011 11:07:36 AM,02/03/2011 11:10:22 AM,02/03/2011 11:11:11 AM,02/03/2011 11:11:22 AM,02/03/2011 11:14:57 AM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/03/2011 11:15:06 AM,GOLDEN GATE AV/HYDE ST,SF,94102,B02,1,1546,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",110340155-74 -160712818,68,16028321,Medical Incident,03/11/2016,03/11/2016,03/11/2016 06:03:53 PM,03/11/2016 06:07:09 PM,03/11/2016 06:07:35 PM,03/11/2016 06:08:01 PM,03/11/2016 06:11:58 PM,03/11/2016 06:29:39 PM,03/11/2016 06:41:53 PM,Code 2 Transport,03/11/2016 07:16:34 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",160712818-68 -102680238,E09,10084935,Medical Incident,09/25/2010,09/25/2010,09/25/2010 02:17:48 PM,09/25/2010 02:18:24 PM,09/25/2010 02:18:43 PM,09/25/2010 02:20:00 PM,09/25/2010 02:22:02 PM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 02:43:01 PM,25TH ST/YORK ST,SF,94110,B10,9,2624,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7512568012893, -122.408036849181)",102680238-E09 -110010516,B02,11000439,Structure Fire,01/01/2011,01/01/2011,01/01/2011 07:47:19 PM,01/01/2011 07:49:01 PM,01/01/2011 07:50:05 PM,01/01/2011 07:50:16 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/01/2011 07:52:09 PM,200 Block of 4TH AVE,SF,94118,B07,31,7125,3,3,3,false,,1,CHIEF,11,7,1,Inner Richmond,"(37.7839758040017, -122.462278443811)",110010516-B02 -122470045,T03,12081595,Structure Fire,09/03/2012,09/02/2012,09/03/2012 03:59:58 AM,09/03/2012 03:59:59 AM,09/03/2012 04:00:07 AM,09/03/2012 04:01:52 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 04:02:41 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",122470045-T03 -121400316,E20,12046623,Medical Incident,05/19/2012,05/19/2012,05/19/2012 08:10:59 PM,05/19/2012 08:12:59 PM,05/19/2012 08:23:31 PM,05/19/2012 08:24:47 PM,05/19/2012 08:28:19 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Medical Examiner,05/19/2012 09:17:50 PM,1300 Block of 5TH AVE,SF,94122,B08,12,7326,2,E,3,true,Potentially Life-Threatening,1,ENGINE,2,8,5,Inner Sunset,"(37.7632907518666, -122.462034637217)",121400316-E20 -133580042,T01,13121585,Medical Incident,12/24/2013,12/23/2013,12/24/2013 03:14:41 AM,12/24/2013 03:16:30 AM,12/24/2013 03:16:47 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 03:18:27 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,TRUCK,3,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",133580042-T01 -160460123,68,16018350,Medical Incident,02/15/2016,02/14/2016,02/15/2016 12:44:44 AM,02/15/2016 12:45:35 AM,02/15/2016 12:45:50 AM,02/15/2016 12:46:11 AM,02/15/2016 12:59:01 AM,02/15/2016 01:23:10 AM,02/15/2016 01:34:37 AM,Code 2 Transport,02/15/2016 02:28:45 AM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160460123-68 -103380095,94,10108063,Medical Incident,12/04/2010,12/03/2010,12/04/2010 06:15:59 AM,12/04/2010 06:17:42 AM,12/04/2010 06:18:14 AM,12/04/2010 06:18:19 AM,12/04/2010 06:27:10 AM,12/04/2010 06:43:08 AM,12/04/2010 06:54:40 AM,Code 2 Transport,12/04/2010 07:05:02 AM,2100 Block of JONES ST,SF,94133,B01,28,1514,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8012382200659, -122.416153828777)",103380095-94 -90030397,T01,9001029,Other,01/03/2009,01/03/2009,01/03/2009 10:26:25 PM,01/03/2009 10:26:25 PM,01/03/2009 10:26:39 PM,01/03/2009 10:28:29 PM,01/03/2009 10:30:57 PM,04/25/2016 03:30:43 PM,04/25/2016 03:30:43 PM,Fire,01/03/2009 11:15:47 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",090030397-T01 -123280016,65,12108942,Medical Incident,11/23/2012,11/22/2012,11/23/2012 01:13:44 AM,11/23/2012 01:15:27 AM,11/23/2012 01:16:10 AM,11/23/2012 01:16:30 AM,11/23/2012 01:19:14 AM,11/23/2012 01:31:24 AM,11/23/2012 01:37:03 AM,Code 2 Transport,11/23/2012 02:15:40 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7563716216308, -122.416574134534)",123280016-65 -113260088,AM16,11108180,Medical Incident,11/22/2011,11/22/2011,11/22/2011 08:37:44 AM,11/22/2011 08:39:04 AM,11/22/2011 08:39:20 AM,11/22/2011 08:40:47 AM,11/22/2011 08:46:01 AM,11/22/2011 09:03:16 AM,11/22/2011 09:20:22 AM,Code 3 Transport,11/22/2011 09:48:02 AM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,PRIVATE,2,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",113260088-AM16 -102370296,B03,10074806,Explosion,08/25/2010,08/25/2010,08/25/2010 04:48:23 PM,08/25/2010 04:48:23 PM,08/25/2010 04:49:51 PM,08/25/2010 04:51:15 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 05:13:54 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,false,,1,CHIEF,8,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",102370296-B03 -103040077,RC1,10097034,Traffic Collision,10/31/2010,10/30/2010,10/31/2010 02:41:31 AM,10/31/2010 02:42:28 AM,10/31/2010 02:44:26 AM,04/25/2016 02:07:50 PM,10/31/2010 02:58:50 AM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 03:18:58 AM,MURRAY ST/MISSION ST,SF,94112,B06,32,5633,2,2,2,true,,1,RESCUE CAPTAIN,4,6,8,Outer Mission,"(37.7336750178474, -122.426391166349)",103040077-RC1 -160032983,63,16001358,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:45:45 PM,01/03/2016 08:47:22 PM,01/03/2016 08:47:40 PM,01/03/2016 08:47:49 PM,01/03/2016 08:51:11 PM,01/03/2016 09:09:12 PM,01/03/2016 09:14:57 PM,Code 3 Transport,01/03/2016 10:19:30 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7786674439132, -122.411723778126)",160032983-63 -160063367,71,16002584,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:18:26 PM,01/06/2016 08:18:26 PM,01/06/2016 08:19:54 PM,01/06/2016 08:20:02 PM,01/06/2016 08:32:04 PM,01/06/2016 09:05:17 PM,01/06/2016 09:17:13 PM,Code 2 Transport,01/06/2016 09:51:48 PM,BAY ST/TAYLOR ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054171711156, -122.415241486546)",160063367-71 -132760235,E28,13093774,Medical Incident,10/03/2013,10/03/2013,10/03/2013 03:34:39 PM,10/03/2013 03:35:04 PM,10/03/2013 03:38:11 PM,10/03/2013 03:38:42 PM,10/03/2013 03:41:23 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/03/2013 03:53:20 PM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,3,3,false,Non Life-threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",132760235-E28 -140960145,T03,14032274,Structure Fire,04/06/2014,04/06/2014,04/06/2014 10:24:03 AM,04/06/2014 10:26:13 AM,04/06/2014 10:26:39 AM,04/06/2014 10:27:18 AM,04/06/2014 10:29:50 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Fire,04/06/2014 10:33:10 AM,900 Block of FRANKLIN ST,SAN FRANCISCO,94109,B02,3,3221,3,3,3,false,Alarm,1,TRUCK,5,2,5,Western Addition,"(37.7833939650918, -122.422536931307)",140960145-T03 -112030410,E41,11067209,Medical Incident,07/22/2011,07/22/2011,07/22/2011 10:38:17 PM,07/22/2011 10:38:34 PM,07/22/2011 10:39:01 PM,07/22/2011 10:39:44 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/22/2011 10:42:07 PM,CALIFORNIA ST/DRUMM ST,SF,94111,B01,13,1134,3,3,3,true,,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7936637772453, -122.396390415025)",112030410-E41 -160062098,KM11,16002438,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:26:11 PM,01/06/2016 02:26:11 PM,01/06/2016 02:26:37 PM,01/06/2016 02:27:57 PM,01/06/2016 02:39:28 PM,01/06/2016 02:51:24 PM,01/06/2016 03:07:51 PM,Code 2 Transport,01/06/2016 03:16:50 PM,GENEVA AV/SANTOS ST,San Francisco,94134,B09,43,6246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,None,10,None,"(37.7083112668674, -122.420083068533)",160062098-KM11 -130330256,E38,13011346,Alarms,02/02/2013,02/02/2013,02/02/2013 04:21:53 PM,02/02/2013 04:23:43 PM,02/02/2013 04:23:51 PM,04/25/2016 01:54:30 PM,02/02/2013 04:27:57 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/02/2013 04:33:29 PM,2100 Block of PACIFIC AVE,SF,94115,B04,38,3441,3,3,3,false,Alarm,1,ENGINE,2,4,2,Pacific Heights,"(37.7938179536129, -122.430615255773)",130330256-E38 -131080340,E14,13036446,Alarms,04/18/2013,04/18/2013,04/18/2013 10:14:01 PM,04/18/2013 10:17:15 PM,04/18/2013 10:17:31 PM,04/18/2013 10:18:54 PM,04/18/2013 10:19:58 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Other,04/18/2013 10:36:32 PM,6100 Block of GEARY BLVD,SF,94121,B07,14,7213,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7799407052952, -122.485259397508)",131080340-E14 -112880330,E06,11095666,Medical Incident,10/15/2011,10/15/2011,10/15/2011 08:19:32 PM,10/15/2011 08:20:37 PM,10/15/2011 08:20:48 PM,10/15/2011 08:22:19 PM,10/15/2011 08:24:19 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/15/2011 08:27:04 PM,400 Block of GUERRERO ST,SF,94110,B02,6,5235,3,2,2,true,,1,ENGINE,2,2,8,Mission,"(37.7639686067199, -122.424148251747)",112880330-E06 -103160148,AM02,10101254,Medical Incident,11/12/2010,11/12/2010,11/12/2010 11:44:47 AM,11/12/2010 11:45:40 AM,11/12/2010 11:46:24 AM,11/12/2010 11:47:10 AM,11/12/2010 11:50:47 AM,11/12/2010 12:10:38 PM,11/12/2010 12:20:10 PM,Code 2 Transport,11/12/2010 01:01:56 PM,3200 Block of 23RD ST,SF,94110,B06,7,5511,3,3,3,false,,1,PRIVATE,3,6,9,Mission,"(37.7539240929444, -122.418055151685)",103160148-AM02 -130520291,83,13017670,Medical Incident,02/21/2013,02/21/2013,02/21/2013 05:11:20 PM,02/21/2013 05:15:42 PM,02/21/2013 05:16:31 PM,02/21/2013 05:16:37 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,04/25/2016 01:54:11 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",130520291-83 -160182383,89,16007307,Medical Incident,01/18/2016,01/18/2016,01/18/2016 05:02:41 PM,01/18/2016 05:03:33 PM,01/18/2016 05:03:52 PM,01/18/2016 05:04:22 PM,01/18/2016 05:07:14 PM,01/18/2016 05:28:15 PM,01/18/2016 05:40:37 PM,Code 2 Transport,01/18/2016 06:15:15 PM,600 Block of MASON ST,Presidio,94108,B99,51,4614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",160182383-89 -160302195,52,16011820,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:25:42 PM,01/30/2016 02:26:29 PM,01/30/2016 02:26:57 PM,01/30/2016 02:27:06 PM,01/30/2016 02:32:47 PM,01/30/2016 02:58:20 PM,01/30/2016 03:07:02 PM,Code 3 Transport,01/30/2016 03:36:48 PM,3700 Block of MARKET ST,San Francisco,94131,B06,24,5266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Twin Peaks,"(37.7541193149868, -122.441983746422)",160302195-52 -140140324,85,14004911,Medical Incident,01/14/2014,01/14/2014,01/14/2014 06:58:57 PM,01/14/2014 07:01:47 PM,01/14/2014 07:02:21 PM,01/14/2014 07:02:38 PM,01/14/2014 07:11:59 PM,01/14/2014 07:41:39 PM,01/14/2014 07:50:38 PM,Code 2 Transport,01/14/2014 08:36:40 PM,0 Block of 30TH ST,SF,94110,B06,32,5575,,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7422802041277, -122.42262182889)",140140324-85 -112150164,E02,11070957,Fuel Spill,08/03/2011,08/03/2011,08/03/2011 11:52:14 AM,08/03/2011 11:53:55 AM,08/03/2011 11:54:14 AM,08/03/2011 11:54:47 AM,08/03/2011 11:56:58 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Fire,08/03/2011 12:03:03 PM,VALLEJO ST/MASON ST,SF,94133,B01,2,1421,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7981652396811, -122.412095885993)",112150164-E02 -130320339,92,13011056,Medical Incident,02/01/2013,02/01/2013,02/01/2013 07:55:04 PM,02/01/2013 07:56:28 PM,02/01/2013 07:56:55 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/01/2013 07:57:03 PM,0 Block of PARKER AVE,SF,94118,B07,10,4436,2,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,2,Presidio Heights,"(37.7851399842228, -122.454627027921)",130320339-92 -133020379,AM04,13102793,Structure Fire,10/29/2013,10/29/2013,10/29/2013 11:43:56 PM,10/29/2013 11:44:45 PM,10/29/2013 11:45:09 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/29/2013 11:45:20 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,PRIVATE,11,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",133020379-AM04 -160543520,50,16021756,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:46:03 PM,02/23/2016 07:47:23 PM,02/23/2016 07:47:40 PM,02/23/2016 07:48:09 PM,02/23/2016 08:05:04 PM,02/23/2016 08:05:49 PM,02/23/2016 08:28:29 PM,Code 2 Transport,02/23/2016 09:03:10 PM,0 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",160543520-50 -160772188,77,16030621,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:06:53 PM,03/17/2016 02:06:53 PM,03/17/2016 02:14:08 PM,03/17/2016 02:14:22 PM,03/17/2016 02:20:07 PM,03/17/2016 02:39:39 PM,03/17/2016 03:30:47 PM,Code 2 Transport,03/17/2016 04:03:07 PM,HYDE ST/CALIFORNIA ST,San Francisco,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160772188-77 -120610372,E03,12020216,Medical Incident,03/01/2012,03/01/2012,03/01/2012 11:08:39 PM,03/01/2012 11:09:00 PM,03/01/2012 11:09:40 PM,03/01/2012 11:11:15 PM,03/01/2012 11:14:33 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/01/2012 11:18:32 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",120610372-E03 -111480302,RC2,11049193,Medical Incident,05/28/2011,05/28/2011,05/28/2011 08:26:41 PM,05/28/2011 08:28:00 PM,05/28/2011 08:28:13 PM,05/28/2011 08:30:15 PM,05/28/2011 08:34:55 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/28/2011 08:49:20 PM,200 Block of CLAYTON ST,SF,94117,B05,21,4523,3,3,3,true,,1,RESCUE CAPTAIN,2,5,5,Lone Mountain/USF,"(37.7730602068761, -122.449166125148)",111480302-RC2 -160040681,KM13,16001493,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:49:38 AM,01/04/2016 07:51:31 AM,01/04/2016 07:52:52 AM,01/04/2016 07:53:46 AM,01/04/2016 08:10:06 AM,01/04/2016 08:36:55 AM,01/04/2016 09:01:55 AM,Code 2 Transport,01/04/2016 09:40:59 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160040681-KM13 -113440255,E17,11114187,Structure Fire,12/10/2011,12/10/2011,12/10/2011 05:39:06 PM,12/10/2011 05:39:06 PM,12/10/2011 05:39:24 PM,12/10/2011 05:40:22 PM,12/10/2011 05:42:24 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 05:43:15 PM,HUDSON AV/ARDATH CT,SF,94124,B10,17,6624,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",113440255-E17 -112000368,KM04,11066110,Medical Incident,07/19/2011,07/19/2011,07/19/2011 10:55:52 PM,07/19/2011 10:57:18 PM,07/19/2011 10:57:28 PM,07/19/2011 10:58:44 PM,07/19/2011 11:07:34 PM,07/19/2011 11:27:17 PM,07/19/2011 11:59:23 PM,Code 2 Transport,07/20/2011 12:10:47 AM,FOLSOM ST/2ND ST,SF,94107,B03,1,2147,3,3,3,false,,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",112000368-KM04 -102750030,54,10087233,Medical Incident,10/02/2010,10/01/2010,10/02/2010 01:29:39 AM,10/02/2010 01:30:54 AM,10/02/2010 01:31:36 AM,10/02/2010 01:32:17 AM,10/02/2010 01:37:53 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 01:37:58 AM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",102750030-54 -111540340,E01,11051024,Medical Incident,06/03/2011,06/03/2011,06/03/2011 10:13:13 PM,06/03/2011 10:15:44 PM,06/03/2011 10:16:02 PM,04/25/2016 02:04:19 PM,06/03/2011 10:18:54 PM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,Other,06/03/2011 10:29:32 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",111540340-E01 -121250032,E13,12041384,Alarms,05/04/2012,05/03/2012,05/04/2012 03:43:10 AM,05/04/2012 03:44:15 AM,05/04/2012 03:44:21 AM,05/04/2012 03:45:51 AM,05/04/2012 03:47:34 AM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/04/2012 04:06:31 AM,200 Block of JACKSON ST,SF,94111,B01,13,1156,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7969058696574, -122.400105396177)",121250032-E13 -111040028,T06,11034340,Alarms,04/14/2011,04/13/2011,04/14/2011 02:12:21 AM,04/14/2011 02:13:05 AM,04/14/2011 02:13:32 AM,04/14/2011 02:15:57 AM,04/14/2011 02:17:54 AM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/14/2011 02:22:28 AM,200 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,false,,1,TRUCK,3,2,8,Castro/Upper Market,"(37.766007030875, -122.426668982689)",111040028-T06 -131890146,E13,13064390,Medical Incident,07/08/2013,07/08/2013,07/08/2013 11:48:10 AM,07/08/2013 11:49:10 AM,07/08/2013 11:49:50 AM,07/08/2013 11:50:30 AM,07/08/2013 11:52:58 AM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/08/2013 11:59:58 AM,0 Block of SABIN PL,SF,94108,B01,13,1314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Chinatown,"(37.7925872402584, -122.406836777622)",131890146-E13 -110500012,89,11016400,Medical Incident,02/19/2011,02/18/2011,02/19/2011 12:35:39 AM,02/19/2011 12:36:26 AM,02/19/2011 12:37:04 AM,02/19/2011 12:37:27 AM,02/19/2011 12:44:03 AM,02/19/2011 12:57:29 AM,02/19/2011 01:05:55 AM,Code 2 Transport,02/19/2011 01:37:53 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",110500012-89 -102910264,62,10092869,Medical Incident,10/18/2010,10/18/2010,10/18/2010 03:56:29 PM,10/18/2010 03:57:06 PM,10/18/2010 03:57:18 PM,10/18/2010 03:57:30 PM,10/18/2010 04:01:19 PM,10/18/2010 04:18:49 PM,10/18/2010 04:29:27 PM,Code 2 Transport,10/18/2010 04:58:12 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",102910264-62 -131210188,E15,13040650,Medical Incident,05/01/2013,05/01/2013,05/01/2013 12:11:21 PM,05/01/2013 12:13:10 PM,05/01/2013 12:14:17 PM,05/01/2013 12:17:47 PM,05/01/2013 12:18:49 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,05/01/2013 12:37:05 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",131210188-E15 -102900318,E43,10092629,Medical Incident,10/17/2010,10/17/2010,10/17/2010 09:09:05 PM,10/17/2010 09:09:50 PM,10/17/2010 09:09:58 PM,10/17/2010 09:11:04 PM,10/17/2010 09:13:44 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/17/2010 09:31:46 PM,0 Block of FRANCIS ST,SF,94112,B09,43,6116,3,3,3,true,,1,ENGINE,2,9,11,Outer Mission,"(37.7271236130882, -122.434343494063)",102900318-E43 -111380286,E01,11045966,Alarms,05/18/2011,05/18/2011,05/18/2011 06:06:39 PM,05/18/2011 06:07:44 PM,05/18/2011 06:08:12 PM,05/18/2011 06:08:30 PM,05/18/2011 06:10:27 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 06:15:43 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7829835080746, -122.406698577014)",111380286-E01 -111300017,78,11042836,Medical Incident,05/10/2011,05/09/2011,05/10/2011 02:12:42 AM,05/10/2011 02:13:07 AM,05/10/2011 02:13:20 AM,05/10/2011 02:14:38 AM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Other,05/10/2011 02:15:43 AM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,,1,MEDIC,3,2,9,Mission,"(37.7650413541786, -122.420746190588)",111300017-78 -130160359,E08,13005599,Medical Incident,01/16/2013,01/16/2013,01/16/2013 10:01:13 PM,01/16/2013 10:03:59 PM,01/16/2013 10:04:29 PM,01/16/2013 10:06:42 PM,01/16/2013 10:08:59 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/16/2013 10:11:57 PM,500 Block of 3RD ST,SF,94107,B03,8,2173,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7805661978095, -122.394799124177)",130160359-E08 -140310011,E31,14010399,Medical Incident,01/31/2014,01/30/2014,01/31/2014 02:04:34 AM,01/31/2014 02:05:31 AM,01/31/2014 02:06:02 AM,01/31/2014 02:07:17 AM,01/31/2014 02:09:29 AM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/31/2014 02:20:57 AM,4TH AV/GEARY BL,SF,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.781110995698, -122.462139277182)",140310011-E31 -133610235,83,13122719,Medical Incident,12/27/2013,12/27/2013,12/27/2013 04:54:11 PM,12/27/2013 04:54:42 PM,12/27/2013 04:56:07 PM,12/27/2013 04:56:15 PM,12/27/2013 05:01:32 PM,12/27/2013 05:44:36 PM,12/27/2013 06:15:00 PM,Code 2 Transport,12/27/2013 06:35:46 PM,3200 Block of MISSION ST,SF,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",133610235-83 -110120018,94,11003849,Medical Incident,01/12/2011,01/11/2011,01/12/2011 02:10:23 AM,01/12/2011 02:10:53 AM,01/12/2011 02:11:58 AM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,04/25/2016 02:06:38 PM,1000 Block of PINE ST,SF,94109,B01,41,1464,2,2,2,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7906221863031, -122.413101980649)",110120018-94 -110070112,E32,11002265,Alarms,01/07/2011,01/07/2011,01/07/2011 10:00:02 AM,01/07/2011 10:02:05 AM,01/07/2011 10:02:18 AM,01/07/2011 10:02:36 AM,01/07/2011 10:07:00 AM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/07/2011 10:14:53 AM,4300 Block of MISSION ST,SF,94112,B09,32,6113,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7273796970352, -122.432642958112)",110070112-E32 -132950310,E23,13100425,Medical Incident,10/22/2013,10/22/2013,10/22/2013 09:44:30 PM,10/22/2013 09:45:45 PM,10/22/2013 09:46:00 PM,10/22/2013 09:47:12 PM,10/22/2013 09:50:07 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/22/2013 10:06:28 PM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",132950310-E23 -122100134,AM06,12069722,Medical Incident,07/28/2012,07/28/2012,07/28/2012 10:35:56 AM,07/28/2012 10:36:23 AM,07/28/2012 10:37:08 AM,07/28/2012 10:37:39 AM,07/28/2012 10:48:40 AM,07/28/2012 10:58:34 AM,07/28/2012 11:10:40 AM,Code 2 Transport,07/28/2012 11:45:39 AM,14TH ST/SOUTH VAN NESS AV,SF,94103,B02,36,5215,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7684052696119, -122.417802155227)",122100134-AM06 -160131066,62,16005127,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:40:42 AM,01/13/2016 09:42:56 AM,01/13/2016 09:43:31 AM,01/13/2016 09:43:46 AM,01/13/2016 09:48:14 AM,01/13/2016 10:15:24 AM,01/13/2016 10:36:43 AM,Code 2 Transport,01/13/2016 11:17:09 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160131066-62 -110150230,E05,11005037,Medical Incident,01/15/2011,01/15/2011,01/15/2011 03:20:39 PM,01/15/2011 03:21:14 PM,01/15/2011 03:22:32 PM,01/15/2011 03:23:35 PM,01/15/2011 03:25:09 PM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 03:33:03 PM,FILLMORE ST/OFARRELL ST,SF,94115,B04,5,3541,3,3,3,true,,1,ENGINE,1,4,5,Western Addition,"(37.7832925916533, -122.432706179722)",110150230-E05 -111600123,64,11052844,Medical Incident,06/09/2011,06/09/2011,06/09/2011 11:36:20 AM,06/09/2011 11:36:58 AM,06/09/2011 11:37:41 AM,06/09/2011 11:43:33 AM,06/09/2011 11:48:46 AM,06/09/2011 12:12:16 PM,06/09/2011 12:31:10 PM,Code 2 Transport,06/09/2011 01:14:55 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",111600123-64 -160883159,60,16035077,Medical Incident,03/28/2016,03/28/2016,03/28/2016 06:32:15 PM,03/28/2016 06:33:04 PM,03/28/2016 06:33:36 PM,03/28/2016 06:33:56 PM,03/28/2016 06:38:49 PM,03/28/2016 06:53:10 PM,03/28/2016 07:24:06 PM,Code 2 Transport,03/28/2016 08:01:17 PM,0 Block of BRIGHTON AVE,San Francisco,94112,B09,33,8465,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7191365323626, -122.455045708672)",160883159-60 -160021846,53,16000757,Medical Incident,01/02/2016,01/02/2016,01/02/2016 02:25:11 PM,01/02/2016 02:26:51 PM,01/02/2016 02:28:30 PM,01/02/2016 02:28:51 PM,01/02/2016 02:36:18 PM,01/02/2016 03:04:48 PM,01/02/2016 03:17:58 PM,Code 2 Transport,01/02/2016 03:34:50 PM,300 Block of 5TH AVE,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7820265124689, -122.463349690466)",160021846-53 -130870271,T07,13029090,Structure Fire,03/28/2013,03/28/2013,03/28/2013 05:15:04 PM,03/28/2013 05:16:34 PM,03/28/2013 05:16:58 PM,03/28/2013 05:18:09 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 05:22:17 PM,1700 Block of SANCHEZ ST,SF,94131,B06,11,5564,3,3,3,false,Alarm,1,TRUCK,9,6,8,Glen Park,"(37.7410415331282, -122.428754803621)",130870271-T07 -122800356,E13,12092744,Medical Incident,10/06/2012,10/06/2012,10/06/2012 07:19:58 PM,10/06/2012 07:23:53 PM,10/06/2012 07:24:32 PM,04/25/2016 01:56:25 PM,10/06/2012 07:27:53 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/06/2012 08:05:06 PM,0 Block of SPOFFORD ST,SF,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7945862444358, -122.407321394337)",122800356-E13 -111360205,E07,11045300,Medical Incident,05/16/2011,05/16/2011,05/16/2011 02:37:28 PM,05/16/2011 02:38:30 PM,05/16/2011 02:38:39 PM,05/16/2011 02:39:03 PM,05/16/2011 02:39:52 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 02:51:26 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",111360205-E07 -110840059,84,11027563,Medical Incident,03/25/2011,03/24/2011,03/25/2011 04:28:10 AM,03/25/2011 04:30:54 AM,03/25/2011 04:32:05 AM,03/25/2011 04:32:18 AM,03/25/2011 04:39:22 AM,03/25/2011 04:42:48 AM,04/25/2016 02:05:28 PM,Code 2 Transport,03/25/2011 05:06:48 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110840059-84 -112040031,E03,11067269,Structure Fire,07/23/2011,07/22/2011,07/23/2011 01:30:03 AM,07/23/2011 01:30:03 AM,07/23/2011 01:30:12 AM,07/23/2011 01:32:00 AM,07/23/2011 01:33:06 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Fire,07/23/2011 01:33:30 AM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",112040031-E03 -130760311,75,13025498,Medical Incident,03/17/2013,03/17/2013,03/17/2013 06:55:14 PM,03/17/2013 06:55:54 PM,03/17/2013 06:56:38 PM,03/17/2013 06:57:27 PM,03/17/2013 07:00:54 PM,03/17/2013 07:08:55 PM,03/17/2013 07:22:59 PM,Code 2 Transport,03/17/2013 08:02:27 PM,900 Block of HAIGHT ST,SF,94117,B05,21,4246,3,3,3,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7711077229875, -122.437866452972)",130760311-75 -120120316,55,12004222,Medical Incident,01/12/2012,01/12/2012,01/12/2012 07:45:00 PM,01/12/2012 07:46:41 PM,01/12/2012 07:46:58 PM,01/12/2012 07:47:13 PM,01/12/2012 08:04:43 PM,01/12/2012 08:13:54 PM,01/12/2012 08:31:48 PM,Code 2 Transport,01/12/2012 08:48:53 PM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",120120316-55 -140430273,KM01,14014690,Medical Incident,02/12/2014,02/12/2014,02/12/2014 04:58:11 PM,02/12/2014 04:59:20 PM,02/12/2014 04:59:47 PM,02/12/2014 05:01:59 PM,02/12/2014 05:09:14 PM,02/12/2014 05:18:20 PM,02/12/2014 06:00:35 PM,Code 2 Transport,02/12/2014 06:31:04 PM,400 Block of BEALE ST,SF,94105,B03,35,2123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",140430273-KM01 -121750363,RS2,12058258,Structure Fire,06/23/2012,06/23/2012,06/23/2012 07:51:22 PM,06/23/2012 07:53:37 PM,06/23/2012 07:53:54 PM,06/23/2012 07:55:34 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 07:57:23 PM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,false,Fire,1,RESCUE SQUAD,10,5,5,Western Addition,"(37.7789870702557, -122.436051970399)",121750363-RS2 -122680050,T01,12088427,Alarms,09/24/2012,09/23/2012,09/24/2012 05:12:22 AM,09/24/2012 05:12:23 AM,09/24/2012 05:15:52 AM,09/24/2012 05:16:21 AM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 05:17:11 AM,600 Block of MARKET ST,SF,94105,B03,1,2211,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",122680050-T01 -130540155,E29,13018234,Medical Incident,02/23/2013,02/23/2013,02/23/2013 01:12:47 PM,02/23/2013 01:13:59 PM,02/23/2013 01:15:07 PM,02/23/2013 01:15:55 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 01:19:13 PM,1700 Block of 20TH ST,SF,94107,B10,37,2521,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Potrero Hill,"(37.7599345049981, -122.398703844399)",130540155-E29 -133390114,65,13114830,Medical Incident,12/05/2013,12/05/2013,12/05/2013 09:21:09 AM,12/05/2013 09:23:07 AM,12/05/2013 09:23:19 AM,12/05/2013 09:23:51 AM,12/05/2013 09:44:45 AM,12/05/2013 10:05:28 AM,12/05/2013 10:35:37 AM,Code 2 Transport,12/05/2013 11:18:19 AM,200 Block of DRAKE ST,SF,94112,B09,43,6227,1,1,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7088523788624, -122.435412990003)",133390114-65 -132800209,T05,13095308,Medical Incident,10/07/2013,10/07/2013,10/07/2013 01:39:41 PM,10/07/2013 01:40:24 PM,10/07/2013 01:40:38 PM,10/07/2013 01:41:48 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/07/2013 01:55:22 PM,0 Block of SEYMOUR ST,SF,94115,B05,5,4134,E,E,3,true,Potentially Life-Threatening,1,TRUCK,5,5,5,Western Addition,"(37.7792900134424, -122.437869182837)",132800209-T05 -120850356,57,12028403,Medical Incident,03/25/2012,03/25/2012,03/25/2012 11:14:35 PM,03/25/2012 11:15:25 PM,03/25/2012 11:16:02 PM,03/25/2012 11:16:08 PM,03/25/2012 11:18:31 PM,03/25/2012 11:29:10 PM,03/25/2012 11:37:40 PM,Code 2 Transport,03/25/2012 11:54:16 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",120850356-57 -160220171,53,16008622,Medical Incident,01/22/2016,01/21/2016,01/22/2016 01:35:30 AM,01/22/2016 01:38:30 AM,01/22/2016 01:38:51 AM,01/22/2016 01:41:13 AM,01/22/2016 01:43:50 AM,01/22/2016 01:58:19 AM,01/22/2016 02:32:57 AM,Code 2 Transport,01/22/2016 03:36:21 AM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160220171-53 -160182499,53,16007317,Medical Incident,01/18/2016,01/18/2016,01/18/2016 05:31:23 PM,01/18/2016 05:32:39 PM,01/18/2016 05:34:48 PM,01/18/2016 05:35:04 PM,01/18/2016 05:58:09 PM,01/18/2016 06:21:24 PM,01/18/2016 06:34:50 PM,Code 2 Transport,01/18/2016 07:17:23 PM,200 Block of HARRISON ST,San Francisco,94105,B03,35,2123,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",160182499-53 -140580165,E36,14019545,Alarms,02/27/2014,02/27/2014,02/27/2014 12:16:42 PM,02/27/2014 12:19:03 PM,02/27/2014 12:19:19 PM,02/27/2014 12:20:49 PM,02/27/2014 12:22:49 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/27/2014 12:32:59 PM,0 Block of MCCOPPIN ST,SF,94103,B02,36,5125,3,3,3,true,Alarm,1,ENGINE,3,2,6,Mission,"(37.7715636917588, -122.422131789635)",140580165-E36 -140330278,B03,14011292,Alarms,02/02/2014,02/02/2014,02/02/2014 07:46:21 PM,02/02/2014 07:47:09 PM,02/02/2014 07:47:15 PM,02/02/2014 07:48:24 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/02/2014 07:51:03 PM,900 Block of HARRISON ST,SF,94107,B03,8,2243,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7784155560729, -122.402721814145)",140330278-B03 -160343153,AM22,16013556,Medical Incident,02/03/2016,02/03/2016,02/03/2016 07:47:52 PM,02/03/2016 07:48:27 PM,02/03/2016 07:49:14 PM,02/03/2016 07:49:58 PM,02/03/2016 07:57:52 PM,02/03/2016 08:22:19 PM,02/03/2016 08:37:12 PM,Code 2 Transport,02/03/2016 09:14:57 PM,5300 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",160343153-AM22 -112750261,T17,11091073,Structure Fire,10/02/2011,10/02/2011,10/02/2011 04:51:14 PM,10/02/2011 04:54:00 PM,10/02/2011 04:54:40 PM,10/02/2011 04:56:45 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,Other,10/02/2011 04:59:00 PM,EVANS AV/PHELPS ST,SF,94124,B10,25,6457,3,3,3,false,,1,TRUCK,6,10,10,Bayview Hunters Point,"(37.7429806182434, -122.388455028839)",112750261-T17 -103080114,E07,10098633,Medical Incident,11/04/2010,11/04/2010,11/04/2010 09:35:24 AM,11/04/2010 09:36:43 AM,11/04/2010 09:37:23 AM,11/04/2010 09:38:26 AM,11/04/2010 09:39:43 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 09:42:28 AM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,1,2,true,,1,ENGINE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",103080114-E07 -132630343,E08,13089247,Medical Incident,09/20/2013,09/20/2013,09/20/2013 06:39:12 PM,09/20/2013 06:39:23 PM,09/20/2013 06:39:56 PM,09/20/2013 06:41:18 PM,09/20/2013 06:45:15 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 06:59:40 PM,3RD ST/HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",132630343-E08 -120490200,E17,12016232,Medical Incident,02/18/2012,02/18/2012,02/18/2012 02:26:46 PM,02/18/2012 02:27:28 PM,02/18/2012 02:27:58 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/18/2012 02:28:53 PM,1300 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",120490200-E17 -160872315,82,16034622,Medical Incident,03/27/2016,03/27/2016,03/27/2016 03:34:55 PM,03/27/2016 03:35:34 PM,03/27/2016 03:36:07 PM,03/27/2016 03:36:36 PM,03/27/2016 03:53:22 PM,03/27/2016 03:53:23 PM,03/27/2016 04:03:54 PM,Code 3 Transport,03/27/2016 05:15:23 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160872315-82 -112180013,T01,11071914,Alarms,08/06/2011,08/05/2011,08/06/2011 12:27:29 AM,08/06/2011 12:28:32 AM,08/06/2011 12:28:44 AM,08/06/2011 12:30:43 AM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/06/2011 12:33:44 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7801303744947, -122.409871449933)",112180013-T01 -160882746,87,16035041,Medical Incident,03/28/2016,03/28/2016,03/28/2016 05:00:45 PM,03/28/2016 05:01:40 PM,03/28/2016 05:02:09 PM,03/28/2016 05:03:09 PM,03/28/2016 05:06:45 PM,03/28/2016 05:22:48 PM,03/28/2016 05:32:52 PM,Code 2 Transport,03/28/2016 05:45:06 PM,700 Block of MARKET ST,San Francisco,94108,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",160882746-87 -160220118,71,16008615,Medical Incident,01/22/2016,01/21/2016,01/22/2016 01:08:37 AM,01/22/2016 01:09:17 AM,01/22/2016 01:09:31 AM,01/22/2016 01:09:37 AM,01/22/2016 01:12:14 AM,01/22/2016 01:27:28 AM,01/22/2016 01:31:23 AM,Code 2 Transport,01/22/2016 02:08:48 AM,1100 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",160220118-71 -120030360,88,12001193,Medical Incident,01/03/2012,01/03/2012,01/03/2012 08:54:03 PM,01/03/2012 08:54:49 PM,01/03/2012 08:55:27 PM,01/03/2012 08:56:00 PM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,Other,01/03/2012 09:00:28 PM,32ND AV/TARAVAL ST,SF,94116,B08,18,7546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.742437436698, -122.489620234677)",120030360-88 -131910221,E31,13065068,Alarms,07/10/2013,07/10/2013,07/10/2013 03:03:57 PM,07/10/2013 03:08:59 PM,07/10/2013 03:09:17 PM,07/10/2013 03:10:35 PM,07/10/2013 03:12:40 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/10/2013 03:16:50 PM,100 Block of 11TH AVE,SF,94118,B07,31,7137,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7855017910126, -122.470044893397)",131910221-E31 -113350298,99,11111006,Traffic Collision,12/01/2011,12/01/2011,12/01/2011 07:27:13 PM,12/01/2011 07:27:41 PM,12/01/2011 07:27:58 PM,12/01/2011 07:31:53 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/01/2011 07:34:52 PM,FULTON ST/7TH AV,SF,94122,B07,31,7122,3,3,3,true,,1,MEDIC,4,7,1,Golden Gate Park,"(37.7734887431391, -122.464811669746)",113350298-99 -122520147,RC1,12083303,Medical Incident,09/08/2012,09/08/2012,09/08/2012 12:26:16 PM,09/08/2012 12:26:43 PM,09/08/2012 12:26:55 PM,09/08/2012 01:05:46 PM,09/08/2012 01:08:51 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/08/2012 01:32:56 PM,BUSH ST/HYDE ST,SF,94109,B04,3,1561,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,4,3,Nob Hill,"(37.7891101748937, -122.417016879226)",122520147-RC1 -112960066,75,11098097,Medical Incident,10/23/2011,10/22/2011,10/23/2011 02:57:03 AM,10/23/2011 02:57:59 AM,10/23/2011 02:59:03 AM,10/23/2011 02:59:57 AM,10/23/2011 03:10:27 AM,10/23/2011 03:21:19 AM,10/23/2011 03:31:36 AM,Code 2 Transport,10/23/2011 03:46:34 AM,2700 Block of 41ST AVE,SF,94116,B08,19,7641,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7354674300338, -122.498871451486)",112960066-75 -133490105,T10,13118411,Citizen Assist / Service Call,12/15/2013,12/15/2013,12/15/2013 09:23:29 AM,12/15/2013 09:25:13 AM,12/15/2013 09:25:34 AM,12/15/2013 09:26:11 AM,12/15/2013 09:29:41 AM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 09:44:59 AM,3600 Block of WASHINGTON ST,SF,94118,B07,10,4433,3,3,3,false,Alarm,1,TRUCK,1,7,2,Presidio Heights,"(37.7891489677203, -122.453112381719)",133490105-T10 -160770590,73,16030466,Medical Incident,03/17/2016,03/16/2016,03/17/2016 07:22:06 AM,03/17/2016 07:22:06 AM,03/17/2016 07:22:28 AM,03/17/2016 07:23:05 AM,03/17/2016 07:27:57 AM,03/17/2016 07:52:31 AM,03/17/2016 07:59:51 AM,Code 2 Transport,03/17/2016 09:19:17 AM,16TH ST/POTRERO AV,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",160770590-73 -121330365,77,12044430,Medical Incident,05/12/2012,05/12/2012,05/12/2012 11:01:49 PM,05/12/2012 11:03:37 PM,05/12/2012 11:04:39 PM,05/12/2012 11:04:56 PM,05/12/2012 11:13:09 PM,05/12/2012 11:31:04 PM,05/12/2012 11:43:22 PM,Code 2 Transport,05/13/2012 12:09:02 AM,VALENCIA ST/16TH ST,SF,94103,B02,6,5226,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",121330365-77 -160030647,89,16001080,Medical Incident,01/03/2016,01/02/2016,01/03/2016 06:29:46 AM,01/03/2016 06:30:11 AM,01/03/2016 06:30:25 AM,01/03/2016 06:32:21 AM,01/03/2016 06:44:55 AM,01/03/2016 07:10:43 AM,01/03/2016 07:24:04 AM,Code 2 Transport,01/03/2016 08:08:57 AM,4300 Block of KIRKHAM ST,San Francisco,94122,B08,23,7717,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7585441184385, -122.507405939677)",160030647-89 -160151958,85,16006004,Medical Incident,01/15/2016,01/15/2016,01/15/2016 01:30:49 PM,01/15/2016 01:32:23 PM,01/15/2016 01:32:38 PM,01/15/2016 01:32:52 PM,01/15/2016 01:36:54 PM,01/15/2016 02:01:59 PM,01/15/2016 02:06:19 PM,Code 2 Transport,01/15/2016 03:07:31 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160151958-85 -160180314,70,16007104,Medical Incident,01/18/2016,01/17/2016,01/18/2016 03:55:01 AM,01/18/2016 03:56:31 AM,01/18/2016 03:57:56 AM,01/18/2016 03:58:03 AM,01/18/2016 04:14:29 AM,01/18/2016 04:36:33 AM,01/18/2016 05:05:37 AM,Code 2 Transport,01/18/2016 05:47:05 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",160180314-70 -111370214,94,11045595,Medical Incident,05/17/2011,05/17/2011,05/17/2011 02:30:08 PM,05/17/2011 02:31:02 PM,05/17/2011 02:34:57 PM,05/17/2011 02:35:16 PM,05/17/2011 02:55:10 PM,05/17/2011 03:15:41 PM,05/17/2011 03:32:51 PM,Code 2 Transport,05/17/2011 03:50:59 PM,2500 Block of 34TH AVE,SF,94116,B08,18,7554,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7395410667651, -122.491637791609)",111370214-94 -131530288,RC2,13051930,Medical Incident,06/02/2013,06/02/2013,06/02/2013 07:13:04 PM,06/02/2013 07:14:01 PM,06/02/2013 07:14:27 PM,06/02/2013 07:15:12 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 07:22:00 PM,200 Block of QUINTARA ST,SF,94116,B08,40,7341,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,7,West of Twin Peaks,"(37.7489484740015, -122.467927498142)",131530288-RC2 -121090142,E08,12036015,Medical Incident,04/18/2012,04/18/2012,04/18/2012 11:24:01 AM,04/18/2012 11:24:52 AM,04/18/2012 11:24:58 AM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/25/2016 01:59:07 PM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7749917920342, -122.41006277143)",121090142-E08 -130600052,E06,13020016,Medical Incident,03/01/2013,02/28/2013,03/01/2013 05:28:10 AM,03/01/2013 05:28:37 AM,03/01/2013 05:28:57 AM,03/01/2013 05:30:24 AM,03/01/2013 05:35:45 AM,04/25/2016 01:54:04 PM,04/25/2016 01:54:04 PM,Medical Examiner,03/01/2013 05:56:39 AM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,E,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",130600052-E06 -112900167,B10,11096197,Alarms,10/17/2011,10/17/2011,10/17/2011 12:26:43 PM,10/17/2011 12:27:37 PM,10/17/2011 12:27:55 PM,10/17/2011 12:29:06 PM,10/17/2011 12:34:39 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 12:40:22 PM,100 Block of JENNINGS ST,SF,94124,B10,25,996,3,3,3,false,,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",112900167-B10 -160823779,KM03,16032753,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:27:24 PM,03/22/2016 09:27:52 PM,03/22/2016 09:28:25 PM,03/22/2016 09:29:15 PM,03/22/2016 09:32:19 PM,03/22/2016 09:54:05 PM,03/22/2016 10:04:34 PM,Code 2 Transport,03/22/2016 10:50:57 PM,3600 Block of BUCHANAN ST,San Francisco,94123,B04,16,3446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8035364991115, -122.433494688087)",160823779-KM03 -160122940,KM09,16004878,Medical Incident,01/12/2016,01/12/2016,01/12/2016 05:58:56 PM,01/12/2016 05:59:51 PM,01/12/2016 06:00:13 PM,01/12/2016 06:02:14 PM,01/12/2016 06:07:26 PM,01/12/2016 06:13:40 PM,01/12/2016 06:34:54 PM,Code 2 Transport,01/12/2016 07:02:09 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160122940-KM09 -160201064,70,16007955,Medical Incident,01/20/2016,01/20/2016,01/20/2016 09:37:25 AM,01/20/2016 09:38:09 AM,01/20/2016 09:38:59 AM,01/20/2016 09:39:13 AM,01/20/2016 09:42:18 AM,01/20/2016 09:59:14 AM,01/20/2016 10:05:37 AM,Code 2 Transport,01/20/2016 10:24:13 AM,1000 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",160201064-70 -140170071,AM24,14005737,Medical Incident,01/17/2014,01/16/2014,01/17/2014 07:34:42 AM,01/17/2014 07:35:58 AM,01/17/2014 07:36:11 AM,01/17/2014 07:36:46 AM,01/17/2014 07:53:17 AM,01/17/2014 08:14:00 AM,01/17/2014 08:30:00 AM,Code 2 Transport,01/17/2014 08:48:58 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",140170071-AM24 -140430348,RS1,14014758,Structure Fire,02/12/2014,02/12/2014,02/12/2014 07:59:52 PM,02/12/2014 08:00:15 PM,02/12/2014 08:00:47 PM,02/12/2014 08:01:51 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/12/2014 08:03:54 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,,3,3,false,Alarm,1,RESCUE SQUAD,12,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",140430348-RS1 -110380050,E09,11012476,Medical Incident,02/07/2011,02/06/2011,02/07/2011 03:32:20 AM,02/07/2011 03:34:58 AM,02/07/2011 03:35:20 AM,02/07/2011 03:36:39 AM,02/07/2011 03:41:58 AM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,Patient Declined Transport,02/07/2011 03:55:40 AM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",110380050-E09 -160292663,74,16011511,Medical Incident,01/29/2016,01/29/2016,01/29/2016 05:20:41 PM,01/29/2016 05:24:02 PM,01/29/2016 05:25:04 PM,01/29/2016 05:25:24 PM,01/29/2016 05:34:05 PM,01/29/2016 05:44:48 PM,01/29/2016 05:47:53 PM,Code 2 Transport,01/29/2016 06:18:01 PM,1100 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",160292663-74 -132260171,84,13076285,Medical Incident,08/14/2013,08/14/2013,08/14/2013 12:13:55 PM,08/14/2013 12:15:13 PM,08/14/2013 12:15:36 PM,04/25/2016 01:51:18 PM,08/14/2013 12:28:09 PM,08/14/2013 12:42:48 PM,08/14/2013 01:07:15 PM,Code 2 Transport,08/14/2013 01:15:03 PM,100 Block of ALBION ST,SF,94110,B02,7,5247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7636452868367, -122.422667774315)",132260171-84 -131520299,68,13051603,Medical Incident,06/01/2013,06/01/2013,06/01/2013 08:03:28 PM,06/01/2013 08:04:27 PM,06/01/2013 08:04:31 PM,06/01/2013 08:04:41 PM,06/01/2013 08:19:48 PM,06/01/2013 08:48:40 PM,06/01/2013 09:03:22 PM,Code 2 Transport,06/01/2013 09:31:59 PM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,2,2,2,false,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",131520299-68 -160603462,KM03,16024088,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:16:05 PM,02/29/2016 09:16:55 PM,02/29/2016 09:17:32 PM,02/29/2016 09:18:45 PM,02/29/2016 09:26:11 PM,02/29/2016 09:34:19 PM,02/29/2016 09:43:21 PM,Code 2 Transport,02/29/2016 10:10:41 PM,SANSOME ST/CALIFORNIA ST,San Francisco,94104,B01,13,1165,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7930602991213, -122.401126343901)",160603462-KM03 -160903597,87,16035873,Medical Incident,03/30/2016,03/30/2016,03/30/2016 08:25:58 PM,03/30/2016 08:26:55 PM,03/30/2016 08:27:05 PM,03/30/2016 08:27:21 PM,03/30/2016 08:30:05 PM,03/30/2016 08:47:44 PM,03/30/2016 09:01:20 PM,Code 2 Transport,03/30/2016 09:34:17 PM,CALEDONIA ST/16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7649478897256, -122.421381476722)",160903597-87 -102980020,E39,10095029,Medical Incident,10/25/2010,10/24/2010,10/25/2010 01:38:19 AM,10/25/2010 01:38:54 AM,10/25/2010 01:39:21 AM,10/25/2010 01:41:29 AM,10/25/2010 01:44:56 AM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Other,10/25/2010 02:16:28 AM,400 Block of MOLIMO DR,SF,94127,B09,39,8664,3,2,2,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7390149956143, -122.451430035548)",102980020-E39 -122950290,92,12097946,Medical Incident,10/21/2012,10/21/2012,10/21/2012 08:27:33 PM,10/21/2012 08:28:27 PM,10/21/2012 08:29:19 PM,10/21/2012 08:29:36 PM,10/21/2012 08:37:01 PM,10/21/2012 08:49:58 PM,10/21/2012 09:16:46 PM,Code 2 Transport,10/21/2012 09:50:06 PM,100 Block of GOLD MINE DR,SF,94131,B06,26,8161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7425307657935, -122.439090339796)",122950290-92 -132660293,89,13090338,Medical Incident,09/23/2013,09/23/2013,09/23/2013 04:43:59 PM,09/23/2013 04:44:47 PM,09/23/2013 04:45:03 PM,09/23/2013 04:45:52 PM,09/23/2013 05:08:45 PM,09/23/2013 05:13:45 PM,09/23/2013 05:52:42 PM,Code 2 Transport,09/23/2013 06:01:06 PM,700 Block of MARKET ST,SF,94108,B03,1,1322,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",132660293-89 -160570648,75,16022642,Medical Incident,02/26/2016,02/25/2016,02/26/2016 07:38:11 AM,02/26/2016 07:38:44 AM,02/26/2016 07:41:11 AM,02/26/2016 07:41:21 AM,02/26/2016 07:43:14 AM,02/26/2016 07:44:40 AM,02/26/2016 07:52:13 AM,Code 2 Transport,02/26/2016 08:47:15 AM,300 Block of BAY SHORE BLVD,San Francisco,94110,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",160570648-75 -160781070,KM04,16030955,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:22:27 AM,03/18/2016 09:23:37 AM,03/18/2016 09:24:10 AM,03/18/2016 09:24:40 AM,03/18/2016 09:30:46 AM,03/18/2016 09:43:48 AM,03/18/2016 10:05:37 AM,Code 2 Transport,03/18/2016 10:57:13 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160781070-KM04 -133650040,84,13123821,Medical Incident,12/31/2013,12/30/2013,12/31/2013 03:03:41 AM,12/31/2013 03:04:40 AM,12/31/2013 03:05:09 AM,12/31/2013 03:05:19 AM,12/31/2013 03:10:18 AM,12/31/2013 03:27:31 AM,12/31/2013 03:38:01 AM,Code 3 Transport,12/31/2013 04:14:35 AM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",133650040-84 -160013222,72,16000463,Traffic Collision,01/01/2016,01/01/2016,01/01/2016 07:03:17 PM,01/01/2016 07:04:31 PM,01/01/2016 07:06:06 PM,01/01/2016 07:06:16 PM,01/01/2016 07:13:32 PM,01/01/2016 07:24:15 PM,01/01/2016 07:41:53 PM,Code 2 Transport,01/01/2016 08:22:23 PM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",160013222-72 -160890760,KM13,16035236,Medical Incident,03/29/2016,03/29/2016,03/29/2016 08:21:13 AM,03/29/2016 08:22:37 AM,03/29/2016 08:23:06 AM,03/29/2016 08:24:47 AM,03/29/2016 08:34:24 AM,03/29/2016 08:55:42 AM,03/29/2016 09:17:53 AM,Code 2 Transport,03/29/2016 09:59:18 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160890760-KM13 -160013747,AM20,16000526,Traffic Collision,01/01/2016,01/01/2016,01/01/2016 10:10:42 PM,01/01/2016 10:10:42 PM,01/01/2016 10:11:53 PM,01/01/2016 10:11:53 PM,01/01/2016 10:14:19 PM,01/01/2016 10:26:50 PM,01/01/2016 10:44:34 PM,Code 2 Transport,01/01/2016 11:29:41 PM,BUSH ST/POLK ST,San Francisco,94109,B01,3,1636,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",160013747-AM20 -122550003,89,12084128,Medical Incident,09/11/2012,09/10/2012,09/11/2012 12:03:48 AM,09/11/2012 12:07:18 AM,09/11/2012 12:07:45 AM,09/11/2012 12:08:07 AM,09/11/2012 12:13:51 AM,09/11/2012 12:32:36 AM,09/11/2012 12:38:28 AM,Code 2 Transport,09/11/2012 01:01:55 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,1,1,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",122550003-89 -103500272,E37,10112317,Alarms,12/16/2010,12/16/2010,12/16/2010 04:11:11 PM,12/16/2010 04:12:41 PM,12/16/2010 04:13:36 PM,12/16/2010 04:14:57 PM,12/16/2010 04:16:46 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Fire,12/16/2010 04:24:13 PM,100 Block of TURQUOISE WAY,SF,94131,B10,26,8164,3,3,3,false,,1,ENGINE,1,6,8,Glen Park,"(37.7435345441074, -122.444884466475)",103500272-E37 -121520331,B10,12050466,Gas Leak (Natural and LP Gases),05/31/2012,05/31/2012,05/31/2012 10:00:42 PM,05/31/2012 10:02:22 PM,05/31/2012 10:03:12 PM,05/31/2012 10:05:26 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 10:11:56 PM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7298790936901, -122.382178424141)",121520331-B10 -140520090,E02,14017544,Medical Incident,02/21/2014,02/21/2014,02/21/2014 08:59:57 AM,02/21/2014 09:02:26 AM,02/21/2014 09:02:50 AM,04/25/2016 01:48:06 PM,02/21/2014 09:08:01 AM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Code 2 Transport,02/21/2014 09:12:01 AM,1000 Block of WASHINGTON ST,SF,94108,B01,2,1415,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7946592682333, -122.409885879605)",140520090-E02 -120770024,T05,12025364,Alarms,03/17/2012,03/16/2012,03/17/2012 01:57:05 AM,03/17/2012 01:57:24 AM,03/17/2012 01:57:46 AM,03/17/2012 01:58:34 AM,03/17/2012 02:00:41 AM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 02:09:42 AM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7794051372088, -122.432762898818)",120770024-T05 -102450381,E05,10077472,Medical Incident,09/02/2010,09/02/2010,09/02/2010 05:51:04 PM,09/02/2010 05:52:33 PM,09/02/2010 05:54:34 PM,09/02/2010 05:55:03 PM,09/02/2010 05:57:58 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/02/2010 06:31:48 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",102450381-E05 -120750097,55,12024837,Medical Incident,03/15/2012,03/15/2012,03/15/2012 08:42:09 AM,03/15/2012 08:43:08 AM,03/15/2012 08:43:40 AM,03/15/2012 08:44:57 AM,03/15/2012 08:50:33 AM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 09:08:15 AM,WILLOW ST/POLK ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835677840088, -122.419273434964)",120750097-55 -111070237,65,11035442,Medical Incident,04/17/2011,04/17/2011,04/17/2011 04:48:18 PM,04/17/2011 04:49:00 PM,04/17/2011 04:49:38 PM,04/17/2011 04:50:04 PM,04/17/2011 04:56:34 PM,04/17/2011 05:10:28 PM,04/17/2011 05:20:33 PM,Code 2 Transport,04/17/2011 05:48:27 PM,600 Block of FREDERICK ST,SF,94117,B05,12,4551,3,3,3,true,,1,MEDIC,2,5,5,Inner Sunset,"(37.7659077959827, -122.456186927179)",111070237-65 -132120298,86,13071762,Medical Incident,07/31/2013,07/31/2013,07/31/2013 07:14:45 PM,07/31/2013 07:15:05 PM,07/31/2013 07:15:35 PM,07/31/2013 07:15:43 PM,07/31/2013 07:30:36 PM,07/31/2013 07:57:43 PM,07/31/2013 08:06:13 PM,Code 2 Transport,07/31/2013 08:30:32 PM,1500 Block of 15TH ST,SF,94103,B02,7,5225,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7667276112047, -122.418018847374)",132120298-86 -121780286,AM08,12059341,Medical Incident,06/26/2012,06/26/2012,06/26/2012 05:45:01 PM,06/26/2012 05:47:28 PM,06/26/2012 05:48:22 PM,06/26/2012 05:48:53 PM,06/26/2012 05:53:19 PM,06/26/2012 06:30:00 PM,06/26/2012 06:30:05 PM,Code 2 Transport,06/26/2012 06:50:10 PM,2500 Block of VAN NESS AVE,SF,94109,B04,16,3146,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Russian Hill,"(37.7990402347578, -122.42390548516)",121780286-AM08 -132170063,E08,13073211,Vehicle Fire,08/05/2013,08/04/2013,08/05/2013 05:46:14 AM,08/05/2013 05:47:03 AM,08/05/2013 05:58:14 AM,04/25/2016 01:51:28 PM,08/05/2013 06:12:10 AM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/05/2013 06:56:37 AM,0 Block of 4TH ST,SF,94103,B03,8,2216,3,3,3,true,Fire,1,ENGINE,5,3,6,South of Market,"(37.7846551607137, -122.404580497913)",132170063-E08 -130170283,B04,13005865,Structure Fire,01/17/2013,01/17/2013,01/17/2013 04:22:41 PM,01/17/2013 04:23:55 PM,01/17/2013 04:24:05 PM,01/17/2013 04:24:14 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,Other,01/17/2013 04:30:01 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,Alarm,1,CHIEF,10,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",130170283-B04 -130870366,94,13029180,Medical Incident,03/28/2013,03/28/2013,03/28/2013 09:31:26 PM,03/28/2013 09:33:23 PM,03/28/2013 09:40:16 PM,03/28/2013 09:42:24 PM,03/28/2013 09:48:49 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Unable to Locate,03/28/2013 10:06:56 PM,0 Block of CERES ST,SF,94124,B10,17,6513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7302365980257, -122.394387701957)",130870366-94 -140800126,E06,14026986,Medical Incident,03/21/2014,03/21/2014,03/21/2014 10:29:09 AM,03/21/2014 10:30:58 AM,03/21/2014 10:31:20 AM,03/21/2014 10:31:37 AM,03/21/2014 10:36:10 AM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/21/2014 10:41:44 AM,2100 Block of MARKET ST,SAN FRANCISCO,94114,B05,6,5231,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",140800126-E06 -122500354,KM12,12082819,Medical Incident,09/06/2012,09/06/2012,09/06/2012 10:16:14 PM,09/06/2012 10:17:43 PM,09/06/2012 10:18:25 PM,09/06/2012 10:19:10 PM,09/06/2012 10:27:45 PM,09/06/2012 10:47:27 PM,09/06/2012 11:10:20 PM,Code 2 Transport,09/06/2012 11:35:23 PM,2300 Block of 45TH AVE,SF,94116,B08,18,7665,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7427486659291, -122.503683862385)",122500354-KM12 -160163657,64,16006614,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:19:46 PM,01/16/2016 10:20:55 PM,01/16/2016 10:23:42 PM,01/16/2016 10:26:19 PM,01/16/2016 10:26:21 PM,01/16/2016 10:41:39 PM,01/16/2016 10:47:58 PM,Code 2 Transport,01/16/2016 11:26:43 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160163657-64 -123550311,KM01,12118917,Medical Incident,12/20/2012,12/20/2012,12/20/2012 07:33:39 PM,12/20/2012 07:35:47 PM,12/20/2012 07:39:00 PM,12/20/2012 07:39:46 PM,12/20/2012 07:56:23 PM,12/20/2012 08:04:06 PM,12/20/2012 08:42:50 PM,Code 2 Transport,12/20/2012 09:12:02 PM,100 Block of WAYLAND ST,SF,94134,B10,42,6333,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,9,Portola,"(37.7262511420614, -122.403579973371)",123550311-KM01 -160362872,88,16014349,Medical Incident,02/05/2016,02/05/2016,02/05/2016 04:52:34 PM,02/05/2016 04:54:28 PM,02/05/2016 04:54:55 PM,02/05/2016 04:55:42 PM,02/05/2016 05:00:33 PM,02/05/2016 05:11:15 PM,02/05/2016 05:53:37 PM,Code 2 Transport,02/05/2016 06:18:25 PM,200 Block of WEST POINT RD,San Francisco,94124,B10,25,6556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.735189226844, -122.378938285616)",160362872-88 -140410160,B04,14013900,Alarms,02/10/2014,02/10/2014,02/10/2014 11:11:16 AM,02/10/2014 11:13:47 AM,02/10/2014 11:14:09 AM,02/10/2014 11:15:09 AM,02/10/2014 11:18:06 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 11:23:56 AM,3000 Block of PINE ST,SF,94115,B05,10,4411,3,3,3,false,Alarm,1,CHIEF,1,5,2,Presidio Heights,"(37.7863373698888, -122.445898510181)",140410160-B04 -111390278,E21,11046288,Medical Incident,05/19/2011,05/19/2011,05/19/2011 05:55:26 PM,05/19/2011 05:57:09 PM,05/19/2011 05:57:33 PM,05/19/2011 05:58:45 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 06:07:54 PM,2100 Block of FULTON ST,SF,94117,B05,21,4542,3,3,3,false,,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7749288006082, -122.452895831839)",111390278-E21 -120420044,E28,12013914,Medical Incident,02/11/2012,02/10/2012,02/11/2012 02:35:35 AM,02/11/2012 02:37:36 AM,02/11/2012 02:38:29 AM,02/11/2012 02:40:13 AM,02/11/2012 02:42:22 AM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 02:51:11 AM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8061515935611, -122.418537074676)",120420044-E28 -123390419,E41,12113263,HazMat,12/04/2012,12/04/2012,12/04/2012 11:55:27 PM,12/04/2012 11:58:36 PM,12/05/2012 12:00:05 AM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,Other,12/05/2012 12:01:29 AM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Alarm,1,ENGINE,10,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",123390419-E41 -103480241,E15,10111634,Medical Incident,12/14/2010,12/14/2010,12/14/2010 02:21:20 PM,12/14/2010 02:23:30 PM,12/14/2010 02:24:00 PM,12/14/2010 02:24:54 PM,12/14/2010 02:26:38 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Other,12/14/2010 02:32:02 PM,SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7257926850407, -122.442387189271)",103480241-E15 -111260248,E42,11041738,Administrative,05/06/2011,05/06/2011,05/06/2011 02:44:05 PM,05/06/2011 02:44:08 PM,05/06/2011 02:44:20 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 02:44:43 PM,2400 Block of SAN BRUNO AVE,SF,94134,B10,42,6362,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7318198889718, -122.405412091734)",111260248-E42 -112980129,E36,11098815,Medical Incident,10/25/2011,10/25/2011,10/25/2011 10:03:56 AM,10/25/2011 10:05:33 AM,10/25/2011 10:05:50 AM,10/25/2011 10:06:49 AM,10/25/2011 10:08:54 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 10:29:23 AM,MISSION ST/11TH ST,SF,94103,B02,36,5116,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",112980129-E36 -122280351,D2,12075699,Structure Fire,08/15/2012,08/15/2012,08/15/2012 09:21:52 PM,08/15/2012 09:24:11 PM,08/15/2012 09:25:52 PM,08/15/2012 09:26:45 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 09:30:07 PM,5400 Block of FULTON ST,SF,94121,B07,14,7224,3,3,3,false,Fire,1,CHIEF,6,7,1,Outer Richmond,"(37.772355745851, -122.490082156003)",122280351-D2 -132440046,E28,13082231,Medical Incident,09/01/2013,08/31/2013,09/01/2013 03:01:45 AM,09/01/2013 03:04:08 AM,09/01/2013 03:04:24 AM,09/01/2013 03:06:36 AM,09/01/2013 03:08:00 AM,04/25/2016 01:51:01 PM,04/25/2016 01:51:01 PM,Other,09/01/2013 03:23:04 AM,0 Block of TUSCANY ALY,SF,94133,B01,28,1346,E,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8029221138638, -122.410369328084)",132440046-E28 -121630220,T01,12054068,Structure Fire,06/11/2012,06/11/2012,06/11/2012 02:18:02 PM,06/11/2012 02:18:02 PM,06/11/2012 02:18:09 PM,06/11/2012 02:19:36 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 02:22:08 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",121630220-T01 -160912349,79,16036133,Medical Incident,03/31/2016,03/31/2016,03/31/2016 03:53:54 PM,03/31/2016 03:56:18 PM,03/31/2016 03:58:35 PM,03/31/2016 03:59:03 PM,03/31/2016 04:02:40 PM,03/31/2016 04:34:12 PM,03/31/2016 05:01:50 PM,Code 2 Transport,03/31/2016 05:35:45 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7842371111665, -122.440760813886)",160912349-79 -130450112,E13,13015196,Smoke Investigation (Outside),02/14/2013,02/14/2013,02/14/2013 09:50:04 AM,02/14/2013 09:51:24 AM,02/14/2013 09:51:45 AM,02/14/2013 09:52:01 AM,02/14/2013 09:55:16 AM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 09:58:08 AM,PINE ST/FRONT ST,SF,94111,B01,13,1136,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.792408220321, -122.398587836325)",130450112-E13 -102850047,E10,10090646,Medical Incident,10/12/2010,10/11/2010,10/12/2010 05:17:18 AM,10/12/2010 05:20:21 AM,10/12/2010 05:20:32 AM,10/12/2010 05:22:13 AM,10/12/2010 05:24:39 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 05:32:19 AM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,3,3,3,false,,1,ENGINE,1,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",102850047-E10 -132850242,B07,13096996,Water Rescue,10/12/2013,10/12/2013,10/12/2013 04:45:05 PM,10/12/2013 04:46:32 PM,10/12/2013 04:46:55 PM,10/12/2013 04:48:33 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/12/2013 04:50:10 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,false,Fire,1,CHIEF,8,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",132850242-B07 -122830350,E42,12093798,Medical Incident,10/09/2012,10/09/2012,10/09/2012 10:49:40 PM,10/09/2012 10:49:56 PM,10/09/2012 10:50:14 PM,10/09/2012 10:51:58 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/09/2012 10:52:47 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,1,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",122830350-E42 -132430344,E08,13082129,Medical Incident,08/31/2013,08/31/2013,08/31/2013 08:22:21 PM,08/31/2013 08:24:22 PM,08/31/2013 08:26:01 PM,08/31/2013 08:27:10 PM,08/31/2013 08:28:52 PM,04/25/2016 01:51:01 PM,04/25/2016 01:51:01 PM,Other,08/31/2013 08:40:14 PM,500 Block of BRANNAN ST,SF,94107,B03,8,2241,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7774865325812, -122.397691886789)",132430344-E08 -112440212,E21,11080471,Medical Incident,09/01/2011,09/01/2011,09/01/2011 02:20:46 PM,09/01/2011 02:21:27 PM,09/01/2011 02:28:10 PM,09/01/2011 02:29:27 PM,09/01/2011 02:29:41 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 02:51:39 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,2,2,true,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",112440212-E21 -112250061,E02,11074237,Medical Incident,08/13/2011,08/12/2011,08/13/2011 04:46:40 AM,08/13/2011 04:46:52 AM,08/13/2011 04:47:07 AM,08/13/2011 04:49:20 AM,08/13/2011 04:50:19 AM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/13/2011 05:13:07 AM,700 Block of JACKSON ST,SF,94108,B01,2,1312,3,E,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7958643090999, -122.40748710994)",112250061-E02 -160082268,AM02,16003292,Medical Incident,01/08/2016,01/08/2016,01/08/2016 03:04:45 PM,01/08/2016 03:06:38 PM,01/08/2016 03:07:45 PM,01/08/2016 03:08:25 PM,01/08/2016 03:20:05 PM,01/08/2016 03:24:53 PM,01/08/2016 04:15:38 PM,Code 2 Transport,01/08/2016 04:15:42 PM,11TH ST/MARKET ST,San Francisco,94103,B02,36,5117,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7755581612992, -122.41865858352)",160082268-AM02 -133490371,E08,13118641,Medical Incident,12/15/2013,12/15/2013,12/15/2013 09:38:40 PM,12/15/2013 09:40:27 PM,12/15/2013 09:40:39 PM,12/15/2013 09:41:40 PM,12/15/2013 09:44:18 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 10:02:49 PM,TOWNSEND ST/4TH ST,SF,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7770893320016, -122.394981482757)",133490371-E08 -103600185,B03,10115544,Alarms,12/26/2010,12/26/2010,12/26/2010 04:00:33 PM,12/26/2010 04:02:01 PM,12/26/2010 04:03:16 PM,12/26/2010 04:04:10 PM,12/26/2010 04:08:47 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 04:18:19 PM,600 Block of HARRISON ST,SF,94107,B03,8,2151,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7841356234777, -122.395480783612)",103600185-B03 -102570158,64,10081169,Medical Incident,09/14/2010,09/14/2010,09/14/2010 11:50:51 AM,09/14/2010 11:52:14 AM,09/14/2010 11:52:27 AM,09/14/2010 11:52:40 AM,09/14/2010 12:03:13 PM,09/14/2010 12:26:44 PM,09/14/2010 12:57:55 PM,Code 2 Transport,09/14/2010 01:24:32 PM,700 Block of GOETTINGEN ST,SF,94134,B10,44,6325,3,3,3,true,,1,MEDIC,1,10,9,Portola,"(37.7224975421684, -122.404670537235)",102570158-64 -112480180,D3,11081786,Structure Fire,09/05/2011,09/05/2011,09/05/2011 12:35:31 PM,09/05/2011 12:36:50 PM,09/05/2011 12:37:24 PM,09/05/2011 12:38:31 PM,09/05/2011 12:48:21 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 01:08:16 PM,2400 Block of TARAVAL ST,SF,94116,B08,18,7546,3,3,3,false,,1,CHIEF,9,8,4,Sunset/Parkside,"(37.7423741797947, -122.492306247956)",112480180-D3 -160251274,67,16009880,Medical Incident,01/25/2016,01/25/2016,01/25/2016 10:36:05 AM,01/25/2016 10:36:36 AM,01/25/2016 10:36:46 AM,01/25/2016 10:37:13 AM,01/25/2016 10:40:10 AM,01/25/2016 11:05:48 AM,01/25/2016 11:05:52 AM,Code 2 Transport,01/25/2016 12:12:12 PM,5100 Block of DIAMOND HEIGHTS BLVD,San Francisco,94131,B06,26,8163,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7458165668766, -122.44007828523)",160251274-67 -122500320,AP,12082787,Other,09/06/2012,09/06/2012,09/06/2012 08:42:56 PM,09/06/2012 08:42:56 PM,09/06/2012 08:42:56 PM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,Fire,09/06/2012 08:43:18 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122500320-AP -132380386,67,13080469,Medical Incident,08/26/2013,08/26/2013,08/26/2013 09:48:38 PM,08/26/2013 09:50:53 PM,08/26/2013 09:51:04 PM,08/26/2013 09:51:19 PM,08/26/2013 10:00:47 PM,08/26/2013 10:05:33 PM,08/26/2013 10:24:06 PM,Code 2 Transport,08/26/2013 10:55:29 PM,2900 Block of 23RD ST,SF,94110,B06,7,5476,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7543133191277, -122.41158898537)",132380386-67 -123610184,KM10,12120805,Medical Incident,12/26/2012,12/26/2012,12/26/2012 01:05:55 PM,12/26/2012 01:06:27 PM,12/26/2012 01:06:46 PM,12/26/2012 01:08:06 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 01:12:56 PM,2800 Block of GREEN ST,SF,94123,B04,16,4332,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7947479671814, -122.445964702348)",123610184-KM10 -110330099,E25,11010748,Medical Incident,02/02/2011,02/02/2011,02/02/2011 09:24:01 AM,02/02/2011 09:25:18 AM,02/02/2011 09:26:02 AM,02/02/2011 09:29:10 AM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/02/2011 09:30:57 AM,800 Block of MENDELL ST,SF,94124,B10,25,6532,3,3,3,true,,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.7380127667617, -122.387188618644)",110330099-E25 -102540114,60,10080240,Medical Incident,09/11/2010,09/11/2010,09/11/2010 08:53:46 AM,09/11/2010 08:55:20 AM,09/11/2010 08:59:49 AM,09/11/2010 09:01:07 AM,09/11/2010 09:11:50 AM,09/11/2010 09:30:53 AM,09/11/2010 09:49:20 AM,Code 2 Transport,09/11/2010 10:13:11 AM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7209580935201, -122.387166280374)",102540114-60 -120540294,E13,12017914,Traffic Collision,02/23/2012,02/23/2012,02/23/2012 05:49:00 PM,02/23/2012 05:50:33 PM,02/23/2012 05:51:02 PM,02/23/2012 05:52:22 PM,02/23/2012 05:54:17 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 06:05:49 PM,0 Block of LOMBARD ST,SF,94111,B01,13,1222,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8040475219698, -122.402650074799)",120540294-E13 -111490100,AM16,11049331,Medical Incident,05/29/2011,05/29/2011,05/29/2011 10:41:47 AM,05/29/2011 10:42:12 AM,05/29/2011 10:42:20 AM,05/29/2011 10:43:05 AM,05/29/2011 10:47:47 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 10:51:51 AM,24TH ST/CAPP ST,SF,94110,B06,7,5511,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7523059787388, -122.417357818307)",111490100-AM16 -103260168,55,10104470,Traffic Collision,11/22/2010,11/22/2010,11/22/2010 01:03:10 PM,11/22/2010 01:04:59 PM,11/22/2010 01:05:19 PM,11/22/2010 01:05:43 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,04/25/2016 02:07:28 PM,28TH AV/GEARY BL,SF,94121,B07,14,7226,2,2,2,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7799471314505, -122.487945904675)",103260168-55 -160530909,57,16021126,Medical Incident,02/22/2016,02/22/2016,02/22/2016 09:21:32 AM,02/22/2016 09:23:38 AM,02/22/2016 09:47:06 AM,02/22/2016 09:47:06 AM,02/22/2016 09:56:22 AM,02/22/2016 10:22:14 AM,02/22/2016 10:22:15 AM,Code 2 Transport,02/22/2016 11:10:45 AM,100 Block of PERSIA AVE,San Francisco,94112,B09,43,6134,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7225256008448, -122.434843129425)",160530909-57 -133350168,E05,13113562,Medical Incident,12/01/2013,12/01/2013,12/01/2013 12:41:16 PM,12/01/2013 12:42:01 PM,12/01/2013 12:42:20 PM,12/01/2013 12:43:04 PM,12/01/2013 12:44:31 PM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,12/01/2013 12:51:39 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7818979587644, -122.428207532186)",133350168-E05 -160061473,63,16002373,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:39:03 AM,01/06/2016 11:39:03 AM,01/06/2016 11:39:26 AM,01/06/2016 11:39:51 AM,01/06/2016 11:46:31 AM,01/06/2016 12:28:48 PM,01/06/2016 12:41:38 PM,Code 2 Transport,01/06/2016 01:18:02 PM,CALL BOX:,San Francisco,94122,B07,12,7743,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7674435201899, -122.460815278551)",160061473-63 -123470003,55,12115865,Medical Incident,12/12/2012,12/11/2012,12/12/2012 12:20:27 AM,12/12/2012 12:21:43 AM,12/12/2012 12:22:03 AM,12/12/2012 12:22:11 AM,12/12/2012 12:33:14 AM,12/12/2012 12:46:26 AM,12/12/2012 01:04:04 AM,Other,12/12/2012 01:27:01 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",123470003-55 -120630370,E23,12020909,Medical Incident,03/03/2012,03/03/2012,03/03/2012 08:44:30 PM,03/03/2012 08:45:12 PM,03/03/2012 08:45:35 PM,03/03/2012 08:46:16 PM,03/03/2012 08:46:17 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/03/2012 09:17:21 PM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",120630370-E23 -121000385,E14,12033313,Traffic Collision,04/09/2012,04/09/2012,04/09/2012 09:49:02 PM,04/09/2012 09:50:59 PM,04/09/2012 09:51:26 PM,04/09/2012 09:52:45 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 09:55:07 PM,PARK PRESIDIO BL/FULTON ST,SF,94118,B07,31,7144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,7,7,1,Golden Gate Park,"(37.7731389469461, -122.471762120845)",121000385-E14 -120740356,E36,12024698,Medical Incident,03/14/2012,03/14/2012,03/14/2012 08:24:54 PM,03/14/2012 08:25:40 PM,03/14/2012 08:25:56 PM,03/14/2012 08:27:05 PM,03/14/2012 08:30:53 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/14/2012 08:48:50 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",120740356-E36 -133130014,E06,13106229,Medical Incident,11/09/2013,11/08/2013,11/09/2013 12:44:58 AM,11/09/2013 12:46:31 AM,11/09/2013 12:46:38 AM,11/09/2013 12:48:28 AM,11/09/2013 12:50:30 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 01:01:55 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",133130014-E06 -110910214,RC3,11030171,Medical Incident,04/01/2011,04/01/2011,04/01/2011 01:52:39 PM,04/01/2011 01:54:59 PM,04/01/2011 01:55:19 PM,04/01/2011 01:56:10 PM,04/01/2011 02:01:29 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Medical Examiner,04/01/2011 02:28:02 PM,2400 Block of 20TH AVE,SF,94116,B08,40,7434,E,E,3,true,,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7420735738087, -122.476628267314)",110910214-RC3 -121280391,B08,12042773,Alarms,05/07/2012,05/07/2012,05/07/2012 09:52:38 PM,05/07/2012 09:52:47 PM,05/07/2012 09:53:07 PM,05/07/2012 09:55:40 PM,05/07/2012 09:59:51 PM,04/25/2016 01:58:47 PM,04/25/2016 01:58:47 PM,Other,05/07/2012 10:07:47 PM,200 Block of MIDDLEFIELD DR,SF,94132,B08,19,8743,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7303132169002, -122.486205438256)",121280391-B08 -120660054,88,12021722,Medical Incident,03/06/2012,03/05/2012,03/06/2012 07:06:52 AM,03/06/2012 07:08:29 AM,03/06/2012 07:08:47 AM,03/06/2012 07:09:22 AM,03/06/2012 07:17:40 AM,03/06/2012 07:34:13 AM,03/06/2012 07:42:47 AM,Code 2 Transport,03/06/2012 08:07:12 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122982509145, -122.473064099314)",120660054-88 -132160139,T13,13072949,Structure Fire,08/04/2013,08/04/2013,08/04/2013 11:55:32 AM,08/04/2013 11:56:42 AM,08/04/2013 11:56:55 AM,08/04/2013 11:58:28 AM,08/04/2013 11:59:51 AM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/04/2013 12:14:51 PM,500 Block of KEARNY ST,SF,94104,B01,13,1244,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7931109185713, -122.404447655569)",132160139-T13 -160892773,KM12,16035420,Medical Incident,03/29/2016,03/29/2016,03/29/2016 05:06:11 PM,03/29/2016 05:06:11 PM,03/29/2016 05:07:22 PM,03/29/2016 05:08:02 PM,03/29/2016 05:13:58 PM,03/29/2016 05:30:32 PM,03/29/2016 05:57:10 PM,Code 2 Transport,03/29/2016 06:32:09 PM,2200 Block of BAKER ST,San Francisco,94115,B04,10,4266,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7916564818768, -122.444498810314)",160892773-KM12 -132730369,E44,13092927,Medical Incident,09/30/2013,09/30/2013,09/30/2013 10:14:45 PM,09/30/2013 10:15:49 PM,09/30/2013 10:16:17 PM,09/30/2013 10:19:20 PM,09/30/2013 10:20:56 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 10:33:58 PM,200 Block of DELTA ST,SF,94134,B09,44,6312,3,3,3,true,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7154777546454, -122.408391516144)",132730369-E44 -160632550,77,16025154,Medical Incident,03/03/2016,03/03/2016,03/03/2016 04:24:25 PM,03/03/2016 04:24:25 PM,03/03/2016 04:27:25 PM,03/03/2016 04:27:36 PM,03/03/2016 04:39:29 PM,03/03/2016 05:07:13 PM,03/03/2016 05:25:33 PM,Code 2 Transport,03/03/2016 06:03:07 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160632550-77 -110260035,89,11008487,Medical Incident,01/26/2011,01/25/2011,01/26/2011 04:56:54 AM,01/26/2011 04:57:34 AM,01/26/2011 04:58:00 AM,01/26/2011 04:58:09 AM,01/26/2011 05:00:48 AM,01/26/2011 05:09:41 AM,01/26/2011 05:21:34 AM,Code 2 Transport,01/26/2011 05:43:25 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110260035-89 -121360218,AM04,12045232,Medical Incident,05/15/2012,05/15/2012,05/15/2012 02:45:29 PM,05/15/2012 02:45:53 PM,05/15/2012 02:46:15 PM,04/25/2016 01:58:40 PM,05/15/2012 03:07:41 PM,05/15/2012 03:12:42 PM,05/15/2012 03:26:55 PM,Code 2 Transport,05/15/2012 04:12:59 PM,SUNNYDALE AV/HAHN ST,SF,94134,B09,43,6241,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7119145572968, -122.416000281038)",121360218-AM04 -113270112,KM11,11108509,Medical Incident,11/23/2011,11/23/2011,11/23/2011 10:00:03 AM,11/23/2011 10:00:27 AM,11/23/2011 10:01:06 AM,11/23/2011 10:01:50 AM,11/23/2011 10:05:55 AM,11/23/2011 10:23:28 AM,11/23/2011 10:30:52 AM,Code 2 Transport,11/23/2011 11:02:17 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",113270112-KM11 -160621432,65,16024664,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:11:45 AM,03/02/2016 11:15:25 AM,03/02/2016 11:15:33 AM,03/02/2016 11:18:24 AM,03/02/2016 11:33:35 AM,03/02/2016 12:02:02 PM,03/02/2016 12:26:08 PM,Code 2 Transport,03/02/2016 01:10:37 PM,200 Block of TEDDY AVE,San Francisco,94134,B09,44,6311,2,2,2,false,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7149172327739, -122.407517670009)",160621432-65 -160270270,64,16010531,Medical Incident,01/27/2016,01/26/2016,01/27/2016 03:14:02 AM,01/27/2016 03:16:36 AM,01/27/2016 03:16:42 AM,01/27/2016 03:17:43 AM,01/27/2016 03:27:40 AM,01/27/2016 03:46:59 AM,01/27/2016 03:59:19 AM,Code 2 Transport,01/27/2016 04:44:49 AM,1300 Block of 48TH AVE,San Francisco,94122,B08,23,7721,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7612631311559, -122.508063986912)",160270270-64 -160580391,67,16022989,Medical Incident,02/27/2016,02/26/2016,02/27/2016 02:47:20 AM,02/27/2016 02:47:20 AM,02/27/2016 02:57:53 AM,02/27/2016 02:57:59 AM,02/27/2016 03:21:43 AM,02/27/2016 03:36:09 AM,02/27/2016 03:47:28 AM,Code 2 Transport,02/27/2016 04:18:01 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160580391-67 -133120351,B01,13106173,Structure Fire,11/08/2013,11/08/2013,11/08/2013 08:18:00 PM,11/08/2013 08:19:10 PM,11/08/2013 08:22:09 PM,04/25/2016 01:49:51 PM,11/08/2013 08:23:27 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 08:29:49 PM,1500 Block of CHESTNUT ST,SF,94123,B04,16,3341,3,3,3,false,Fire,1,CHIEF,2,4,2,Marina,"(37.8017041769082, -122.428833528089)",133120351-B01 -160640680,AM24,16025395,Medical Incident,03/04/2016,03/03/2016,03/04/2016 07:33:49 AM,03/04/2016 07:33:49 AM,03/04/2016 07:37:39 AM,03/04/2016 07:38:21 AM,03/04/2016 07:42:02 AM,03/04/2016 07:48:45 AM,03/04/2016 07:54:58 AM,Code 2 Transport,03/04/2016 08:15:53 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",160640680-AM24 -160490572,61,16019631,Medical Incident,02/18/2016,02/17/2016,02/18/2016 07:42:06 AM,02/18/2016 07:42:06 AM,02/18/2016 07:43:19 AM,02/18/2016 07:43:37 AM,02/18/2016 07:50:27 AM,02/18/2016 08:07:21 AM,02/18/2016 08:16:14 AM,Code 2 Transport,02/18/2016 09:17:13 AM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",160490572-61 -103090059,E03,10098944,Medical Incident,11/05/2010,11/04/2010,11/05/2010 06:31:40 AM,11/05/2010 06:32:00 AM,11/05/2010 06:32:16 AM,11/05/2010 06:34:22 AM,11/05/2010 06:37:40 AM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Other,11/05/2010 06:41:54 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",103090059-E03 -140660214,81,14022329,Medical Incident,03/07/2014,03/07/2014,03/07/2014 01:12:26 PM,03/07/2014 01:12:45 PM,03/07/2014 01:13:11 PM,03/07/2014 01:13:20 PM,03/07/2014 01:14:35 PM,03/07/2014 01:39:48 PM,03/07/2014 01:47:18 PM,Code 2 Transport,03/07/2014 03:00:16 PM,SAN BRUNO AV/15TH ST,SAN FRANCISCO,94103,B02,29,2352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7672000632781, -122.4057076678)",140660214-81 -140870182,T14,14029275,Medical Incident,03/28/2014,03/28/2014,03/28/2014 12:33:12 PM,03/28/2014 12:33:12 PM,03/28/2014 12:41:32 PM,03/28/2014 12:42:41 PM,03/28/2014 12:47:24 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Medical Examiner,03/28/2014 12:53:25 PM,500 Block of 15TH AVE,SAN FRANCISCO,94118,B07,31,7154,2,2,2,false,Non Life-threatening,1,TRUCK,2,7,1,Outer Richmond,"(37.7777260131845, -122.473696437291)",140870182-T14 -112280183,KM05,11075358,Medical Incident,08/16/2011,08/16/2011,08/16/2011 01:35:17 PM,08/16/2011 01:37:21 PM,08/16/2011 01:39:02 PM,08/16/2011 01:40:39 PM,08/16/2011 01:52:18 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Patient Declined Transport,08/16/2011 01:57:10 PM,900 Block of MARKET ST,SF,94103,B03,1,2247,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",112280183-KM05 -160153629,75,16006164,Medical Incident,01/15/2016,01/15/2016,01/15/2016 08:46:29 PM,01/15/2016 08:48:39 PM,01/15/2016 08:49:59 PM,01/15/2016 08:50:08 PM,01/15/2016 09:03:56 PM,01/15/2016 09:14:32 PM,01/15/2016 09:25:13 PM,Code 2 Transport,01/15/2016 09:47:51 PM,300 Block of POTRERO AVE,San Francisco,94110,B02,29,2416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7651317205291, -122.407546004301)",160153629-75 -160202585,91,16008077,Medical Incident,01/20/2016,01/20/2016,01/20/2016 04:14:35 PM,01/20/2016 04:15:46 PM,01/20/2016 04:17:31 PM,01/20/2016 04:17:40 PM,01/20/2016 04:21:55 PM,01/20/2016 04:39:17 PM,01/20/2016 04:52:08 PM,Code 2 Transport,01/20/2016 05:27:07 PM,4400 Block of MISSION ST,San Francisco,94112,B09,43,6116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7269111586163, -122.433193907155)",160202585-91 -160501243,89,16020041,Medical Incident,02/19/2016,02/19/2016,02/19/2016 10:52:41 AM,02/19/2016 10:54:00 AM,02/19/2016 10:54:17 AM,02/19/2016 10:57:34 AM,02/19/2016 10:57:34 AM,02/19/2016 11:13:18 AM,02/19/2016 11:27:38 AM,Code 2 Transport,02/19/2016 12:12:59 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160501243-89 -110710199,59,11023366,Medical Incident,03/12/2011,03/12/2011,03/12/2011 12:30:57 PM,03/12/2011 12:31:47 PM,03/12/2011 12:32:24 PM,03/12/2011 12:32:30 PM,03/12/2011 12:38:15 PM,03/12/2011 01:01:54 PM,03/12/2011 01:13:46 PM,Code 2 Transport,03/12/2011 01:35:08 PM,600 Block of COLBY ST,SF,94134,B09,42,6344,3,3,3,true,,1,MEDIC,2,9,9,Portola,"(37.7223322748016, -122.411171674482)",110710199-59 -160371209,74,16014617,Medical Incident,02/06/2016,02/06/2016,02/06/2016 09:19:04 AM,02/06/2016 09:20:56 AM,02/06/2016 09:21:33 AM,02/06/2016 09:21:49 AM,02/06/2016 09:27:42 AM,02/06/2016 09:32:29 AM,02/06/2016 09:40:13 AM,Code 2 Transport,02/06/2016 10:13:04 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160371209-74 -121570326,89,12052075,Medical Incident,06/05/2012,06/05/2012,06/05/2012 08:43:29 PM,06/05/2012 08:45:12 PM,06/05/2012 08:45:19 PM,06/05/2012 08:45:28 PM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,Other,06/05/2012 08:50:47 PM,BEACH ST/TAYLOR ST,SF,94133,B01,28,1433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.807275868938, -122.41561643642)",121570326-89 -130400391,85,13013854,Medical Incident,02/09/2013,02/09/2013,02/09/2013 10:54:23 PM,02/09/2013 10:55:25 PM,02/09/2013 10:56:12 PM,02/09/2013 10:57:29 PM,02/09/2013 11:00:09 PM,02/09/2013 11:12:29 PM,02/09/2013 11:21:59 PM,Code 2 Transport,02/09/2013 11:47:54 PM,2400 Block of CLEMENT ST,SF,94121,B07,14,7221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7819452291912, -122.485405658724)",130400391-85 -121480075,85,12049025,Medical Incident,05/27/2012,05/26/2012,05/27/2012 06:49:32 AM,05/27/2012 06:51:38 AM,05/27/2012 06:52:01 AM,05/27/2012 06:52:11 AM,05/27/2012 07:10:06 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,No Merit,05/27/2012 07:30:28 AM,1200 Block of BUSH ST,SF,94109,B04,3,1636,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788955611099, -122.417825829364)",121480075-85 -123490061,E26,12116595,Citizen Assist / Service Call,12/14/2012,12/13/2012,12/14/2012 06:07:00 AM,12/14/2012 06:08:29 AM,12/14/2012 06:09:08 AM,12/14/2012 06:10:43 AM,12/14/2012 06:13:54 AM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Fire,12/14/2012 06:26:37 AM,0 Block of DIGBY ST,SF,94131,B06,26,8117,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7392595025253, -122.432134138648)",123490061-E26 -160602373,50,16023973,Medical Incident,02/29/2016,02/29/2016,02/29/2016 04:10:26 PM,02/29/2016 04:10:57 PM,02/29/2016 04:11:10 PM,02/29/2016 04:11:18 PM,02/29/2016 04:19:12 PM,02/29/2016 04:40:55 PM,02/29/2016 05:00:43 PM,Code 2 Transport,02/29/2016 05:46:55 PM,800 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.779520032299, -122.425195823386)",160602373-50 -140620288,87,14021037,Medical Incident,03/03/2014,03/03/2014,03/03/2014 05:29:16 PM,03/03/2014 05:29:59 PM,03/03/2014 05:32:37 PM,03/03/2014 05:32:37 PM,03/03/2014 05:32:37 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,No Merit,03/03/2014 05:58:17 PM,GENEVA AV/SAN JOSE AV,SF,94112,B09,15,8311,,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",140620288-87 -121240239,RC1,12041202,Medical Incident,05/03/2012,05/03/2012,05/03/2012 03:09:01 PM,05/03/2012 03:10:38 PM,05/03/2012 03:11:23 PM,05/03/2012 03:12:04 PM,05/03/2012 03:16:12 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 03:17:49 PM,LEAVENWORTH ST/POST ST,SF,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7874538432357, -122.414995423077)",121240239-RC1 -110900157,58,11029743,Medical Incident,03/31/2011,03/31/2011,03/31/2011 12:25:37 PM,03/31/2011 12:26:31 PM,03/31/2011 12:26:42 PM,03/31/2011 12:26:51 PM,03/31/2011 12:30:54 PM,03/31/2011 12:48:07 PM,03/31/2011 01:06:19 PM,Code 2 Transport,03/31/2011 01:21:36 PM,FRANKLIN ST/GROVE ST,SF,94102,B02,36,3214,3,2,2,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7780207607813, -122.421520699389)",110900157-58 -112620392,E03,11086629,Medical Incident,09/19/2011,09/19/2011,09/19/2011 09:03:03 PM,09/19/2011 09:04:14 PM,09/19/2011 09:04:27 PM,09/19/2011 09:06:17 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 09:09:50 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",112620392-E03 -120700324,77,12023373,Medical Incident,03/10/2012,03/10/2012,03/10/2012 07:03:37 PM,03/10/2012 07:04:33 PM,03/10/2012 07:05:07 PM,03/10/2012 07:05:34 PM,03/10/2012 07:12:48 PM,03/10/2012 07:29:22 PM,03/10/2012 07:41:22 PM,Code 2 Transport,03/10/2012 08:03:47 PM,GENEVA AV/MUNICH ST,SF,94112,B09,43,6173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7129143737281, -122.432857501565)",120700324-77 -111700053,B04,11055937,Structure Fire,06/19/2011,06/18/2011,06/19/2011 03:39:51 AM,06/19/2011 03:41:04 AM,06/19/2011 03:41:39 AM,04/25/2016 02:04:05 PM,06/19/2011 03:43:48 AM,04/25/2016 02:04:05 PM,04/25/2016 02:04:05 PM,Other,06/19/2011 03:52:48 AM,1400 Block of SACRAMENTO ST,SF,94109,B01,41,1563,3,3,3,false,,1,CHIEF,2,1,3,Nob Hill,"(37.7920595166394, -122.41694742808)",111700053-B04 -160810321,KM03,16032033,Medical Incident,03/21/2016,03/20/2016,03/21/2016 03:57:22 AM,03/21/2016 03:57:55 AM,03/21/2016 03:58:21 AM,03/21/2016 03:59:20 AM,03/21/2016 04:05:32 AM,03/21/2016 04:32:46 AM,03/21/2016 04:35:33 AM,Code 2 Transport,03/21/2016 05:17:29 AM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",160810321-KM03 -112530168,E08,11083445,Medical Incident,09/10/2011,09/10/2011,09/10/2011 11:13:44 AM,09/10/2011 11:13:46 AM,09/10/2011 11:14:09 AM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 11:23:09 AM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,5,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",112530168-E08 -123180026,81,12105645,Medical Incident,11/13/2012,11/12/2012,11/13/2012 03:16:59 AM,11/13/2012 03:17:47 AM,11/13/2012 03:18:24 AM,11/13/2012 03:19:46 AM,11/13/2012 03:26:41 AM,11/13/2012 03:52:33 AM,11/13/2012 04:21:20 AM,Code 2 Transport,11/13/2012 04:59:25 AM,0 Block of LUNDYS LN,SF,94110,B06,32,5661,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7443942619371, -122.418617510651)",123180026-81 -160582864,KM01,16023230,Medical Incident,02/27/2016,02/27/2016,02/27/2016 06:05:46 PM,02/27/2016 06:07:41 PM,02/27/2016 06:08:32 PM,02/27/2016 06:09:42 PM,02/27/2016 06:22:07 PM,02/27/2016 06:46:49 PM,02/27/2016 07:09:52 PM,Code 2 Transport,02/27/2016 07:25:59 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160582864-KM01 -110480154,E34,11015846,Medical Incident,02/17/2011,02/17/2011,02/17/2011 11:32:57 AM,02/17/2011 11:33:24 AM,02/17/2011 11:33:56 AM,02/17/2011 11:35:02 AM,02/17/2011 11:36:32 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 11:50:49 AM,500 Block of 47TH AVE,SF,94121,B07,34,7276,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7780563534045, -122.508161525398)",110480154-E34 -140090239,52,14003178,Medical Incident,01/09/2014,01/09/2014,01/09/2014 02:03:08 PM,01/09/2014 02:03:31 PM,01/09/2014 02:04:49 PM,01/09/2014 02:05:24 PM,01/09/2014 02:08:32 PM,01/09/2014 02:26:38 PM,01/09/2014 02:42:44 PM,Code 2 Transport,01/09/2014 03:09:34 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7832777786539, -122.409831752766)",140090239-52 -133420340,E22,13116102,Medical Incident,12/08/2013,12/08/2013,12/08/2013 08:04:13 PM,12/08/2013 08:05:54 PM,12/08/2013 08:06:07 PM,12/08/2013 08:06:54 PM,12/08/2013 08:08:56 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/08/2013 08:18:19 PM,LINCOLN WY/9TH AV,SF,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",133420340-E22 -102980137,AM14,10095117,Medical Incident,10/25/2010,10/25/2010,10/25/2010 10:23:54 AM,10/25/2010 10:24:41 AM,10/25/2010 10:25:06 AM,10/25/2010 10:25:50 AM,10/25/2010 10:28:36 AM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Patient Declined Transport,10/25/2010 10:32:43 AM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.777460008139, -122.418879416566)",102980137-AM14 -130310016,B04,13010430,Structure Fire,01/31/2013,01/30/2013,01/31/2013 01:01:05 AM,01/31/2013 01:04:25 AM,01/31/2013 01:04:41 AM,01/31/2013 01:06:32 AM,01/31/2013 01:06:11 AM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 01:17:00 AM,1300 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Alarm,1,CHIEF,1,5,5,Western Addition,"(37.7818977107871, -122.432353853525)",130310016-B04 -102320032,65,10072902,Medical Incident,08/20/2010,08/19/2010,08/20/2010 03:38:03 AM,08/20/2010 03:38:48 AM,08/20/2010 03:39:09 AM,08/20/2010 03:39:27 AM,08/20/2010 03:52:16 AM,08/20/2010 04:02:26 AM,08/20/2010 04:20:38 AM,Other,08/20/2010 04:58:04 AM,100 Block of BRUNSWICK ST,SF,94112,B09,43,6217,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7115982679368, -122.439870482834)",102320032-65 -133550069,54,13120568,Citizen Assist / Service Call,12/21/2013,12/20/2013,12/21/2013 04:50:25 AM,12/21/2013 04:55:08 AM,12/21/2013 04:55:53 AM,12/21/2013 04:56:56 AM,12/21/2013 05:06:34 AM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,No Merit,12/21/2013 05:24:13 AM,600 Block of 41ST AVE,SF,94121,B07,34,7263,3,3,3,true,Alarm,1,MEDIC,1,7,1,Outer Richmond,"(37.7764556121722, -122.501596303357)",133550069-54 -102810249,E13,10089374,Medical Incident,10/08/2010,10/08/2010,10/08/2010 02:44:21 PM,10/08/2010 02:45:58 PM,10/08/2010 03:05:56 PM,04/25/2016 02:08:12 PM,10/08/2010 03:07:41 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/08/2010 03:21:29 PM,600 Block of LOMBARD ST,SF,94133,B01,28,1346,3,2,2,true,,1,ENGINE,1,1,3,North Beach,"(37.8028765476121, -122.412200636927)",102810249-E13 -112610221,T11,11086176,Alarms,09/18/2011,09/18/2011,09/18/2011 03:22:39 PM,09/18/2011 03:25:00 PM,09/18/2011 03:25:16 PM,09/18/2011 03:27:01 PM,09/18/2011 03:29:23 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,09/18/2011 03:37:19 PM,500 Block of CLIPPER ST,SF,94114,B06,11,5545,3,3,3,false,,1,TRUCK,3,6,8,Noe Valley,"(37.7486412460099, -122.437154038433)",112610221-T11 -112720326,92,11090064,Medical Incident,09/29/2011,09/29/2011,09/29/2011 08:39:09 PM,09/29/2011 08:40:11 PM,09/29/2011 08:40:32 PM,09/29/2011 08:41:21 PM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,Other,04/25/2016 02:02:25 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,3,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",112720326-92 -100340228,B07,10010419,Alarms,02/03/2010,02/03/2010,02/03/2010 02:51:46 PM,02/03/2010 02:52:29 PM,02/03/2010 02:52:41 PM,02/03/2010 02:54:35 PM,04/25/2016 03:24:48 PM,04/25/2016 03:24:48 PM,04/25/2016 03:24:48 PM,Other,02/03/2010 02:58:35 PM,4100 Block of CLEMENT ST,SF,94121,B07,34,7266,3,3,3,false,,1,CHIEF,2,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",100340228-B07 -121880272,T07,12062708,Medical Incident,07/06/2012,07/06/2012,07/06/2012 04:23:24 PM,07/06/2012 04:23:25 PM,07/06/2012 04:23:31 PM,07/06/2012 04:25:22 PM,07/06/2012 04:27:12 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/06/2012 04:27:29 PM,25TH ST/HARRISON ST,SF,94110,B06,7,5533,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,6,9,Mission,"(37.7510338955654, -122.411746226036)",121880272-T07 -121790288,88,12059694,Medical Incident,06/27/2012,06/27/2012,06/27/2012 05:50:56 PM,06/27/2012 05:51:13 PM,06/27/2012 05:52:15 PM,06/27/2012 05:52:21 PM,06/27/2012 05:57:24 PM,06/27/2012 06:10:18 PM,06/27/2012 06:25:33 PM,Code 2 Transport,06/27/2012 06:37:56 PM,GRANT AV/VALLEJO ST,SF,94133,B01,28,1266,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.7987763094991, -122.407206393968)",121790288-88 -131020020,E05,13034144,Medical Incident,04/12/2013,04/11/2013,04/12/2013 02:16:39 AM,04/12/2013 02:18:49 AM,04/12/2013 02:19:08 AM,04/12/2013 02:20:17 AM,04/12/2013 02:23:48 AM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/12/2013 02:32:15 AM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",131020020-E05 -160662105,AM02,16026433,Medical Incident,03/06/2016,03/06/2016,03/06/2016 03:49:13 PM,03/06/2016 03:51:13 PM,03/06/2016 03:52:43 PM,03/06/2016 03:53:26 PM,03/06/2016 03:58:28 PM,03/06/2016 04:10:34 PM,03/06/2016 04:14:03 PM,Code 3 Transport,03/06/2016 04:46:30 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160662105-AM02 -120360155,E32,12011967,Other,02/05/2012,02/05/2012,02/05/2012 10:58:12 AM,02/05/2012 10:58:13 AM,02/05/2012 10:58:13 AM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Fire,02/05/2012 11:04:13 AM,100 Block of 29TH ST,SF,94110,B06,11,5576,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7439450001379, -122.423532422861)",120360155-E32 -103330076,T17,10106498,Administrative,11/29/2010,11/29/2010,11/29/2010 08:52:53 AM,11/29/2010 08:52:55 AM,11/29/2010 08:53:15 AM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Other,11/29/2010 08:54:08 AM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",103330076-T17 -122720063,T02,12089653,Elevator / Escalator Rescue,09/28/2012,09/27/2012,09/28/2012 07:32:57 AM,09/28/2012 07:36:27 AM,09/28/2012 07:36:40 AM,09/28/2012 07:38:35 AM,09/28/2012 07:40:05 AM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/28/2012 07:56:52 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",122720063-T02 -133530324,E13,13120032,Alarms,12/19/2013,12/19/2013,12/19/2013 06:54:26 PM,12/19/2013 06:55:36 PM,12/19/2013 06:56:27 PM,12/19/2013 06:57:14 PM,12/19/2013 07:00:26 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/19/2013 07:02:40 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,B,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7891367799941, -122.40363527458)",133530324-E13 -110540127,E05,11017774,Medical Incident,02/23/2011,02/23/2011,02/23/2011 10:26:40 AM,02/23/2011 10:27:16 AM,02/23/2011 10:27:41 AM,02/23/2011 10:28:27 AM,02/23/2011 10:30:50 AM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/23/2011 10:53:24 AM,800 Block of HAYES ST,SF,94117,B02,5,3522,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",110540127-E05 -103310006,82,10105813,Medical Incident,11/27/2010,11/26/2010,11/27/2010 12:16:10 AM,11/27/2010 12:17:02 AM,11/27/2010 12:17:21 AM,11/27/2010 12:18:01 AM,11/27/2010 12:20:58 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 12:25:27 AM,1600 Block of GREENWICH ST,SF,94123,B04,16,3234,E,E,3,true,,1,MEDIC,2,4,2,Marina,"(37.8001060098232, -122.427227403259)",103310006-82 -132070188,E32,13070082,Medical Incident,07/26/2013,07/26/2013,07/26/2013 01:36:41 PM,07/26/2013 01:37:14 PM,07/26/2013 01:37:32 PM,07/26/2013 01:38:10 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/26/2013 01:42:53 PM,SILVER AV/MISSION ST,SF,94112,B09,32,6113,3,2,2,true,Non Life-threatening,1,ENGINE,3,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",132070188-E32 -122320268,68,12077022,Medical Incident,08/19/2012,08/19/2012,08/19/2012 05:12:47 PM,08/19/2012 05:15:16 PM,08/19/2012 05:16:15 PM,08/19/2012 05:16:25 PM,08/19/2012 05:21:17 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 05:52:29 PM,2000 Block of POLK ST,SF,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",122320268-68 -121990074,55,12066037,Medical Incident,07/17/2012,07/16/2012,07/17/2012 07:12:46 AM,07/17/2012 07:13:33 AM,07/17/2012 07:13:49 AM,07/17/2012 07:17:16 AM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 07:26:24 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,E,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",121990074-55 -111440156,75,11047833,Medical Incident,05/24/2011,05/24/2011,05/24/2011 12:39:54 PM,05/24/2011 12:42:37 PM,05/24/2011 12:43:35 PM,05/24/2011 12:43:54 PM,05/24/2011 12:49:26 PM,05/24/2011 01:09:14 PM,05/24/2011 01:11:25 PM,Code 3 Transport,05/24/2011 01:46:36 PM,2300 Block of BUSH ST,SF,94115,B04,38,3621,3,3,3,true,,1,MEDIC,3,4,5,Pacific Heights,"(37.7867600220292, -122.435937155417)",111440156-75 -160362958,58,16014356,Medical Incident,02/05/2016,02/05/2016,02/05/2016 05:16:34 PM,02/05/2016 05:18:17 PM,02/05/2016 05:18:49 PM,02/05/2016 05:19:15 PM,02/05/2016 05:26:16 PM,02/05/2016 05:42:03 PM,02/05/2016 05:49:23 PM,Code 2 Transport,02/05/2016 06:37:56 PM,1100 Block of OFARRELL ST,San Francisco,94109,B04,3,3261,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7845957801826, -122.42200470349)",160362958-58 -160262020,61,16010322,Medical Incident,01/26/2016,01/26/2016,01/26/2016 01:48:03 PM,01/26/2016 01:48:03 PM,01/26/2016 01:49:27 PM,01/26/2016 01:51:34 PM,01/26/2016 01:57:37 PM,01/26/2016 02:07:22 PM,01/26/2016 02:17:03 PM,Code 2 Transport,01/26/2016 02:34:46 PM,300 Block of POST ST,San Francisco,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7884505799048, -122.407597246833)",160262020-61 -121460028,E25,12048338,Medical Incident,05/25/2012,05/24/2012,05/25/2012 02:33:27 AM,05/25/2012 02:34:28 AM,05/25/2012 02:34:52 AM,05/25/2012 02:36:48 AM,05/25/2012 02:38:29 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Patient Declined Transport,05/25/2012 02:45:48 AM,3RD ST/INNES AV,SF,94124,B10,25,6467,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7395334481561, -122.38903096939)",121460028-E25 -102710031,E24,10085870,Medical Incident,09/28/2010,09/27/2010,09/28/2010 02:53:29 AM,09/28/2010 02:54:04 AM,09/28/2010 02:54:25 AM,09/28/2010 02:56:12 AM,09/28/2010 02:59:43 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 03:22:33 AM,500 Block of CORBETT AVE,SF,94114,B05,24,5274,3,2,2,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7574340530806, -122.444098479895)",102710031-E24 -120100286,T02,12003562,Alarms,01/10/2012,01/10/2012,01/10/2012 06:01:42 PM,01/10/2012 06:03:13 PM,01/10/2012 06:03:32 PM,01/10/2012 06:05:00 PM,01/10/2012 06:07:35 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/10/2012 06:08:56 PM,1200 Block of TAYLOR ST,SF,94108,B01,41,1444,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7938676881599, -122.41298846914)",120100286-T02 -132370187,T17,13079953,Citizen Assist / Service Call,08/25/2013,08/25/2013,08/25/2013 12:52:12 PM,08/25/2013 12:54:47 PM,08/25/2013 12:54:54 PM,08/25/2013 12:56:47 PM,08/25/2013 01:00:44 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Fire,08/25/2013 01:12:19 PM,0 Block of HARBOR RD,SF,94124,B10,17,6633,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",132370187-T17 -102280010,B02,10071642,Medical Incident,08/16/2010,08/15/2010,08/16/2010 12:50:27 AM,08/16/2010 12:50:28 AM,08/16/2010 12:51:02 AM,08/16/2010 12:53:59 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/16/2010 12:55:14 AM,MISSION ST/16TH ST,SF,94103,B02,7,5236,3,E,3,false,,1,CHIEF,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",102280010-B02 -160441033,AM08,16017624,Medical Incident,02/13/2016,02/13/2016,02/13/2016 09:45:22 AM,02/13/2016 09:47:01 AM,02/13/2016 09:47:15 AM,02/13/2016 09:47:44 AM,02/13/2016 10:01:33 AM,02/13/2016 10:10:17 AM,02/13/2016 10:38:23 AM,Code 2 Transport,02/13/2016 10:59:09 AM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160441033-AM08 -160822501,AM02,16032638,Medical Incident,03/22/2016,03/22/2016,03/22/2016 03:53:26 PM,03/22/2016 03:53:26 PM,03/22/2016 03:57:22 PM,03/22/2016 03:58:15 PM,03/22/2016 04:07:37 PM,03/22/2016 04:26:26 PM,03/22/2016 04:39:33 PM,Code 2 Transport,03/22/2016 05:07:23 PM,4400 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",160822501-AM02 -112840192,E17,11094015,Medical Incident,10/11/2011,10/11/2011,10/11/2011 12:56:40 PM,10/11/2011 12:58:31 PM,10/11/2011 12:59:31 PM,10/11/2011 01:01:18 PM,10/11/2011 01:09:00 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 01:17:58 PM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,2,2,2,true,,1,ENGINE,1,10,9,Portola,"(37.7246523794049, -122.402288649686)",112840192-E17 -103430356,E03,10109995,Medical Incident,12/09/2010,12/09/2010,12/09/2010 07:10:35 PM,12/09/2010 07:11:35 PM,12/09/2010 07:12:13 PM,12/09/2010 07:13:21 PM,12/09/2010 07:15:37 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 07:17:46 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",103430356-E03 -112310099,93,11076207,Medical Incident,08/19/2011,08/19/2011,08/19/2011 09:59:32 AM,08/19/2011 10:00:36 AM,08/19/2011 10:00:47 AM,08/19/2011 10:00:52 AM,08/19/2011 10:07:51 AM,08/19/2011 10:33:46 AM,08/19/2011 10:52:14 AM,Code 2 Transport,08/19/2011 11:27:37 AM,1200 Block of HAMPSHIRE ST,SF,94110,B06,9,5531,3,3,3,true,,1,MEDIC,2,10,9,Mission,"(37.7521125682968, -122.407146114914)",112310099-93 -133280110,E22,13111403,Alarms,11/24/2013,11/24/2013,11/24/2013 09:13:26 AM,11/24/2013 09:14:30 AM,11/24/2013 09:14:37 AM,11/24/2013 09:15:56 AM,11/24/2013 09:18:06 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 09:34:31 AM,1200 Block of IRVING ST,SF,94122,B08,22,7366,3,3,3,true,Alarm,1,ENGINE,1,7,5,Inner Sunset,"(37.7638800636201, -122.471135263814)",133280110-E22 -160211298,64,16008329,Medical Incident,01/21/2016,01/21/2016,01/21/2016 10:50:03 AM,01/21/2016 10:52:52 AM,01/21/2016 10:54:03 AM,01/21/2016 10:54:10 AM,01/21/2016 11:33:25 AM,01/21/2016 11:33:26 AM,01/21/2016 12:11:38 PM,Code 2 Transport,01/21/2016 12:57:54 PM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7976146082072, -122.409164766852)",160211298-64 -132760400,B07,13093912,Structure Fire,10/03/2013,10/03/2013,10/03/2013 10:40:33 PM,10/03/2013 10:41:05 PM,10/03/2013 10:41:21 PM,10/03/2013 10:43:14 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/03/2013 10:46:13 PM,2700 Block of BUSH ST,SF,94115,B04,10,4234,3,3,3,false,Alarm,1,CHIEF,9,4,2,Pacific Heights,"(37.7859173973794, -122.442559256485)",132760400-B07 -120410325,RC3,12013785,Medical Incident,02/10/2012,02/10/2012,02/10/2012 07:25:20 PM,02/10/2012 07:26:04 PM,02/10/2012 07:26:18 PM,02/10/2012 07:28:20 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 07:31:44 PM,2000 Block of PALOU AVE,SF,94124,B10,42,6431,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7387899959241, -122.399272189951)",120410325-RC3 -130220082,RC2,13007505,Medical Incident,01/22/2013,01/22/2013,01/22/2013 08:06:07 AM,01/22/2013 08:09:12 AM,01/22/2013 08:10:55 AM,01/22/2013 08:12:19 AM,01/22/2013 08:14:32 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 08:26:15 AM,100 Block of 15TH AVE,SF,94118,B07,31,7152,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7853074352171, -122.474245097063)",130220082-RC2 -120920102,E41,12030386,Medical Incident,04/01/2012,04/01/2012,04/01/2012 08:06:43 AM,04/01/2012 08:08:15 AM,04/01/2012 08:09:12 AM,04/01/2012 08:10:53 AM,04/01/2012 08:12:49 AM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,Other,04/01/2012 08:29:02 AM,1500 Block of BROADWAY,SF,94109,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",120920102-E41 -132920070,84,13099273,Medical Incident,10/19/2013,10/18/2013,10/19/2013 05:26:21 AM,10/19/2013 05:28:34 AM,10/19/2013 05:29:00 AM,10/19/2013 05:29:25 AM,10/19/2013 05:37:04 AM,10/19/2013 05:52:37 AM,10/19/2013 06:09:55 AM,Code 2 Transport,10/19/2013 06:33:01 AM,500 Block of MOSCOW ST,SF,94112,B09,43,6156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7189576969244, -122.42945072491)",132920070-84 -123110024,88,12103343,Vehicle Fire,11/06/2012,11/05/2012,11/06/2012 02:19:48 AM,11/06/2012 02:21:21 AM,11/06/2012 02:21:56 AM,11/06/2012 02:22:49 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/06/2012 02:27:29 AM,1500 Block of QUESADA AVE,SF,94124,B10,17,6535,3,3,3,false,Fire,1,MEDIC,12,10,10,Bayview Hunters Point,"(37.7318056241754, -122.388624875828)",123110024-88 -120210266,E03,12007192,Structure Fire,01/21/2012,01/21/2012,01/21/2012 03:37:36 PM,01/21/2012 03:38:18 PM,01/21/2012 03:38:54 PM,01/21/2012 03:39:13 PM,01/21/2012 03:40:55 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 04:02:07 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,true,Fire,1,ENGINE,2,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",120210266-E03 -123150213,T05,12104854,Structure Fire,11/10/2012,11/10/2012,11/10/2012 01:56:22 PM,11/10/2012 01:57:03 PM,11/10/2012 01:57:49 PM,11/10/2012 01:58:23 PM,11/10/2012 02:03:13 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 02:05:42 PM,1900 Block of PACIFIC AVE,SF,94109,B04,38,3332,3,3,3,false,Alarm,1,TRUCK,7,4,2,Pacific Heights,"(37.794238248299, -122.42732552674)",123150213-T05 -160550149,84,16021845,Medical Incident,02/24/2016,02/23/2016,02/24/2016 01:26:37 AM,02/24/2016 01:27:04 AM,02/24/2016 01:27:19 AM,02/24/2016 01:27:33 AM,02/24/2016 01:36:55 AM,02/24/2016 02:05:48 AM,02/24/2016 02:16:47 AM,Code 2 Transport,02/24/2016 03:06:11 AM,1400 Block of LA PLAYA,San Francisco,94122,B08,23,7723,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7593365475949, -122.509005317749)",160550149-84 -121310084,E28,12043495,Medical Incident,05/10/2012,05/10/2012,05/10/2012 09:13:52 AM,05/10/2012 09:15:05 AM,05/10/2012 09:15:12 AM,05/10/2012 09:15:45 AM,05/10/2012 09:20:51 AM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 09:36:16 AM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",121310084-E28 -102990081,E21,10095394,Alarms,10/26/2010,10/26/2010,10/26/2010 08:04:28 AM,10/26/2010 08:08:26 AM,10/26/2010 08:08:38 AM,10/26/2010 08:12:27 AM,10/26/2010 08:12:52 AM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 08:24:05 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,true,,1,ENGINE,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",102990081-E21 -103510213,E03,10112616,Medical Incident,12/17/2010,12/17/2010,12/17/2010 02:01:02 PM,12/17/2010 02:03:09 PM,12/17/2010 02:03:30 PM,12/17/2010 02:04:30 PM,12/17/2010 02:07:45 PM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,Other,12/17/2010 02:08:00 PM,600 Block of MASON ST,SF,94108,B01,3,1412,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",103510213-E03 -103640184,E02,10116762,Medical Incident,12/30/2010,12/30/2010,12/30/2010 12:22:54 PM,12/30/2010 12:23:59 PM,12/30/2010 12:25:00 PM,12/30/2010 12:25:58 PM,12/30/2010 12:28:44 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/30/2010 12:47:58 PM,200 Block of CHESTNUT ST,SF,94133,B01,28,1254,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8044102456887, -122.407535183574)",103640184-E02 -122930136,T05,12097100,Citizen Assist / Service Call,10/19/2012,10/19/2012,10/19/2012 09:30:35 AM,10/19/2012 09:33:45 AM,10/19/2012 09:34:36 AM,10/19/2012 09:35:44 AM,10/19/2012 09:41:22 AM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 09:42:28 AM,FRANKLIN ST/CALIFORNIA ST,SF,94109,B04,38,3225,3,3,3,false,Alarm,1,TRUCK,1,4,2,Pacific Heights,"(37.7901604705365, -122.423974966155)",122930136-T05 -160243286,62,16009693,Medical Incident,01/24/2016,01/24/2016,01/24/2016 09:19:36 PM,01/24/2016 09:19:36 PM,01/24/2016 09:20:03 PM,01/24/2016 09:20:09 PM,01/24/2016 09:38:23 PM,01/24/2016 10:10:25 PM,01/24/2016 10:12:57 PM,Code 2 Transport,01/24/2016 11:07:01 PM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7848770596387, -122.442348914658)",160243286-62 -113030139,85,11100522,Alarms,10/30/2011,10/29/2011,10/30/2011 06:00:42 AM,10/30/2011 06:00:42 AM,10/30/2011 06:02:54 AM,10/30/2011 06:10:09 AM,10/30/2011 06:12:44 AM,10/30/2011 06:20:51 AM,10/30/2011 06:49:06 AM,Code 2 Transport,10/30/2011 06:57:28 AM,1000 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",113030139-85 -103120336,68,10100172,Medical Incident,11/08/2010,11/08/2010,11/08/2010 09:48:47 PM,11/08/2010 09:50:38 PM,11/08/2010 09:51:37 PM,11/08/2010 09:52:33 PM,04/25/2016 02:07:41 PM,11/08/2010 10:12:58 PM,11/08/2010 10:41:53 PM,Code 2 Transport,11/08/2010 11:13:51 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",103120336-68 -121320313,79,12044029,Medical Incident,05/11/2012,05/11/2012,05/11/2012 06:49:15 PM,05/11/2012 06:52:27 PM,05/11/2012 06:52:50 PM,05/11/2012 06:52:58 PM,05/11/2012 07:08:49 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Patient Declined Transport,05/11/2012 07:25:51 PM,1800 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",121320313-79 -120810274,E44,12026957,Structure Fire,03/21/2012,03/21/2012,03/21/2012 04:17:07 PM,03/21/2012 04:17:07 PM,03/21/2012 04:17:13 PM,03/21/2012 04:18:07 PM,03/21/2012 04:20:46 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Fire,03/21/2012 04:20:56 PM,PAUL AV/EXETER ST,SF,94124,B10,44,6323,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7230361592834, -122.398348115685)",120810274-E44 -133090058,E07,13104968,Medical Incident,11/05/2013,11/04/2013,11/05/2013 06:46:57 AM,11/05/2013 06:47:27 AM,11/05/2013 06:48:54 AM,11/05/2013 06:50:53 AM,11/05/2013 06:54:54 AM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/05/2013 07:07:29 AM,3100 Block of KAMILLE CT,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.748861117995, -122.412087843139)",133090058-E07 -160750927,71,16029640,Medical Incident,03/15/2016,03/15/2016,03/15/2016 09:24:01 AM,03/15/2016 09:27:01 AM,03/15/2016 09:30:21 AM,03/15/2016 09:30:27 AM,03/15/2016 09:41:51 AM,03/15/2016 10:03:34 AM,03/15/2016 10:08:42 AM,Code 2 Transport,03/15/2016 10:39:22 AM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160750927-71 -130860179,96,13028684,Medical Incident,03/27/2013,03/27/2013,03/27/2013 12:32:22 PM,03/27/2013 12:32:52 PM,03/27/2013 12:35:00 PM,03/27/2013 12:35:10 PM,03/27/2013 12:55:39 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Against Medical Advice,03/27/2013 01:51:38 PM,37TH AV/BALBOA ST,SF,94121,B07,34,7254,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7757154136216, -122.497318725581)",130860179-96 -160192015,83,16007662,Medical Incident,01/19/2016,01/19/2016,01/19/2016 02:05:13 PM,01/19/2016 02:06:36 PM,01/19/2016 02:07:27 PM,01/19/2016 02:07:35 PM,01/19/2016 02:16:27 PM,01/19/2016 02:23:57 PM,01/19/2016 02:31:47 PM,Code 3 Transport,01/19/2016 03:06:36 PM,3600 Block of LYON ST,San Francisco,94123,B04,16,4323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.804271887891, -122.44827840533)",160192015-83 -110660142,E06,11021742,Administrative,03/07/2011,03/07/2011,03/07/2011 11:59:42 AM,03/07/2011 11:59:50 AM,03/07/2011 12:00:16 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,Other,03/07/2011 12:00:48 PM,100 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7671998905043, -122.431083812685)",110660142-E06 -160362561,AM02,16014320,Medical Incident,02/05/2016,02/05/2016,02/05/2016 03:28:00 PM,02/05/2016 03:29:40 PM,02/05/2016 03:30:45 PM,02/05/2016 03:35:48 PM,02/05/2016 03:44:30 PM,02/05/2016 03:51:07 PM,02/05/2016 04:07:40 PM,Code 2 Transport,02/05/2016 04:21:00 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7695797471896, -122.419876917134)",160362561-AM02 -160743590,75,16029475,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:29:59 PM,03/14/2016 08:30:14 PM,03/14/2016 08:30:37 PM,03/14/2016 08:30:45 PM,03/14/2016 08:36:20 PM,03/14/2016 08:49:41 PM,03/14/2016 08:59:41 PM,Code 2 Transport,03/14/2016 09:10:25 PM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7576217212029, -122.418887293065)",160743590-75 -132340306,88,13079103,Medical Incident,08/22/2013,08/22/2013,08/22/2013 07:05:38 PM,08/22/2013 07:06:56 PM,08/22/2013 07:13:35 PM,08/22/2013 07:13:44 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,04/25/2016 01:51:10 PM,0 Block of LESSING ST,SF,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,9,11,Outer Mission,"(37.7085520845526, -122.45562699848)",132340306-88 -112470336,E01,11081578,Medical Incident,09/04/2011,09/04/2011,09/04/2011 07:37:18 PM,09/04/2011 07:37:38 PM,09/04/2011 07:39:22 PM,09/04/2011 07:40:41 PM,09/04/2011 07:42:31 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 07:55:24 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",112470336-E01 -140800014,E36,14026897,Medical Incident,03/21/2014,03/20/2014,03/21/2014 02:00:10 AM,03/21/2014 02:02:04 AM,03/21/2014 02:02:17 AM,03/21/2014 02:04:16 AM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/21/2014 02:09:57 AM,LARKIN ST/GROVE ST,SAN FRANCISCO,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",140800014-E36 -112620168,E29,11086444,Medical Incident,09/19/2011,09/19/2011,09/19/2011 12:02:42 PM,09/19/2011 12:03:09 PM,09/19/2011 12:03:38 PM,09/19/2011 12:04:42 PM,09/19/2011 12:08:09 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 12:13:13 PM,400 Block of RHODE ISLAND ST,SF,94107,B02,29,2422,3,3,3,true,,1,ENGINE,2,2,10,Potrero Hill,"(37.7641381616864, -122.402572368613)",112620168-E29 -103450133,89,10110537,Medical Incident,12/11/2010,12/11/2010,12/11/2010 09:35:09 AM,12/11/2010 09:35:40 AM,12/11/2010 09:36:10 AM,12/11/2010 09:37:48 AM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 09:42:36 AM,SUTTER ST/MASON ST,SF,94102,B01,3,1412,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.789016335554, -122.410242439308)",103450133-89 -103590085,B10,10115146,Gas Leak (Natural and LP Gases),12/25/2010,12/24/2010,12/25/2010 07:11:14 AM,12/25/2010 07:13:32 AM,12/25/2010 07:14:46 AM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 07:41:36 AM,SANTOS ST/BLYTHDALE AV,SF,94134,B09,43,6244,3,3,3,true,,1,CHIEF,2,9,10,Visitacion Valley,"(37.7107319455182, -122.418771841777)",103590085-B10 -112110015,E29,11069497,Vehicle Fire,07/30/2011,07/29/2011,07/30/2011 12:59:51 AM,07/30/2011 01:02:20 AM,07/30/2011 01:03:08 AM,07/30/2011 01:04:35 AM,07/30/2011 01:05:17 AM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,Other,07/30/2011 01:39:45 AM,16TH ST/UTAH ST,SF,94103,B02,29,2421,3,3,3,true,,1,ENGINE,1,2,10,Mission,"(37.7658422720667, -122.406552825622)",112110015-E29 -160220218,63,16008628,Medical Incident,01/22/2016,01/21/2016,01/22/2016 02:04:05 AM,01/22/2016 02:04:05 AM,01/22/2016 02:04:10 AM,01/22/2016 02:04:20 AM,01/22/2016 02:18:26 AM,01/22/2016 02:39:33 AM,01/22/2016 02:39:34 AM,Code 2 Transport,01/22/2016 03:49:16 AM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",160220218-63 -103030105,67,10096734,Medical Incident,10/30/2010,10/30/2010,10/30/2010 08:27:17 AM,10/30/2010 08:28:16 AM,10/30/2010 08:28:38 AM,10/30/2010 08:29:05 AM,10/30/2010 08:32:25 AM,10/30/2010 09:03:44 AM,10/30/2010 09:13:49 AM,Code 2 Transport,10/30/2010 09:45:35 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",103030105-67 -120950360,77,12031633,Medical Incident,04/04/2012,04/04/2012,04/04/2012 11:51:39 PM,04/04/2012 11:53:13 PM,04/04/2012 11:53:28 PM,04/04/2012 11:53:40 PM,04/04/2012 11:57:02 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Medical Examiner,04/05/2012 12:57:39 AM,0 Block of 28TH ST,SF,94110,B06,11,5577,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7455620349301, -122.423383986336)",120950360-77 -160261742,62,16010298,Medical Incident,01/26/2016,01/26/2016,01/26/2016 12:26:45 PM,01/26/2016 12:28:31 PM,01/26/2016 12:28:47 PM,01/26/2016 12:29:03 PM,01/26/2016 12:34:24 PM,01/26/2016 12:47:48 PM,01/26/2016 01:02:58 PM,Code 2 Transport,01/26/2016 01:39:09 PM,ESSEX ST/HARRISON ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851493081511, -122.394099271789)",160261742-62 -131020038,KM07,13034161,Medical Incident,04/12/2013,04/11/2013,04/12/2013 05:00:06 AM,04/12/2013 05:02:36 AM,04/12/2013 05:03:14 AM,04/12/2013 05:03:53 AM,04/12/2013 05:20:13 AM,04/12/2013 05:50:50 AM,04/12/2013 06:01:08 AM,Code 2 Transport,04/12/2013 06:27:10 AM,200 Block of VICTORIA ST,SF,94132,B09,33,8416,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7152017916532, -122.465379533381)",131020038-KM07 -132140172,82,13072251,Medical Incident,08/02/2013,08/02/2013,08/02/2013 12:52:22 PM,08/02/2013 12:52:40 PM,08/02/2013 12:53:14 PM,08/02/2013 12:54:04 PM,08/02/2013 01:00:59 PM,08/02/2013 01:12:16 PM,08/02/2013 01:33:31 PM,Code 2 Transport,08/02/2013 01:59:24 PM,0 Block of SANTOS ST,SF,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7113302525058, -122.418817616056)",132140172-82 -121690282,E43,12056207,Medical Incident,06/17/2012,06/17/2012,06/17/2012 06:50:52 PM,06/17/2012 06:53:26 PM,06/17/2012 06:53:40 PM,06/17/2012 06:55:05 PM,06/17/2012 06:57:49 PM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/17/2012 07:06:01 PM,0 Block of PASADENA ST,SF,94134,B09,43,6246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7088531375362, -122.418959932347)",121690282-E43 -111460195,96,11048491,Medical Incident,05/26/2011,05/26/2011,05/26/2011 02:39:55 PM,05/26/2011 02:39:55 PM,05/26/2011 02:40:25 PM,04/25/2016 02:04:26 PM,05/26/2011 02:50:34 PM,04/25/2016 02:04:26 PM,04/25/2016 02:04:26 PM,Patient Declined Transport,05/26/2011 03:18:31 PM,SLOAT BL/JUNIPERO SERRA BL,SF,94132,B08,39,8555,3,3,3,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7347068117722, -122.471569339996)",111460195-96 -160891824,79,16035331,Traffic Collision,03/29/2016,03/29/2016,03/29/2016 12:47:05 PM,03/29/2016 12:47:05 PM,03/29/2016 12:47:54 PM,03/29/2016 12:48:15 PM,03/29/2016 12:50:12 PM,03/29/2016 01:00:19 PM,03/29/2016 01:29:15 PM,Code 2 Transport,03/29/2016 01:45:17 PM,SUTTER ST/VAN NESS AV,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",160891824-79 -160401324,85,16015983,Traffic Collision,02/09/2016,02/09/2016,02/09/2016 10:51:50 AM,02/09/2016 10:52:20 AM,02/09/2016 10:52:42 AM,02/09/2016 10:52:49 AM,02/09/2016 11:00:03 AM,02/09/2016 11:16:05 AM,02/09/2016 11:20:13 AM,Code 2 Transport,02/09/2016 12:11:48 PM,SAN JOSE AV/RANDALL ST,San Francisco,94110,B06,32,8112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Bernal Heights,"(37.7398692305663, -122.42414715532)",160401324-85 -120210423,T02,12007332,Structure Fire,01/21/2012,01/21/2012,01/21/2012 11:07:43 PM,01/21/2012 11:07:56 PM,01/21/2012 11:08:08 PM,01/21/2012 11:09:32 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/21/2012 11:13:02 PM,BAY ST/POLK ST,SF,94109,B01,28,3134,3,3,3,false,Fire,1,TRUCK,10,1,2,Russian Hill,"(37.8043549238836, -122.423466054216)",120210423-T02 -133130180,88,13106363,Structure Fire,11/09/2013,11/09/2013,11/09/2013 11:27:24 AM,11/09/2013 11:29:03 AM,11/09/2013 11:29:21 AM,11/09/2013 11:29:33 AM,11/09/2013 11:34:02 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 11:36:31 AM,UTAH ST/17TH ST,SF,94110,B02,29,2416,3,3,3,true,Alarm,1,MEDIC,6,2,10,Potrero Hill,"(37.7645476546084, -122.40642915561)",133130180-88 -160780508,79,16030905,Medical Incident,03/18/2016,03/17/2016,03/18/2016 04:57:53 AM,03/18/2016 05:00:26 AM,03/18/2016 05:00:49 AM,03/18/2016 05:00:59 AM,03/18/2016 05:06:59 AM,03/18/2016 05:15:01 AM,03/18/2016 05:20:33 AM,Code 2 Transport,03/18/2016 05:34:08 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160780508-79 -120590219,E11,12019451,Structure Fire,02/28/2012,02/28/2012,02/28/2012 02:49:21 PM,02/28/2012 02:49:21 PM,02/28/2012 02:49:28 PM,02/28/2012 02:50:50 PM,02/28/2012 02:56:13 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Fire,02/28/2012 02:59:03 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Alarm,1,ENGINE,2,6,9,Mission,"(37.7571666434801, -122.416719595074)",120590219-E11 -131180257,KM09,13039760,Medical Incident,04/28/2013,04/28/2013,04/28/2013 04:44:16 PM,04/28/2013 04:44:26 PM,04/28/2013 04:44:53 PM,04/28/2013 04:45:45 PM,04/28/2013 04:53:18 PM,04/28/2013 05:07:04 PM,04/28/2013 05:16:26 PM,Code 2 Transport,04/28/2013 05:36:19 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",131180257-KM09 -160902696,76,16035798,Traffic Collision,03/30/2016,03/30/2016,03/30/2016 04:24:43 PM,03/30/2016 04:26:19 PM,03/30/2016 04:27:43 PM,03/30/2016 04:28:21 PM,03/30/2016 04:36:24 PM,03/30/2016 04:44:54 PM,03/30/2016 04:56:31 PM,Code 2 Transport,03/30/2016 05:44:53 PM,1500 Block of TENNESSEE ST,San Francisco,94107,B10,25,2611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7519401866787, -122.388742848864)",160902696-76 -120110346,T03,12003956,Structure Fire,01/11/2012,01/11/2012,01/11/2012 11:40:40 PM,01/11/2012 11:40:40 PM,01/11/2012 11:40:46 PM,01/11/2012 11:41:47 PM,01/11/2012 11:43:35 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 11:43:41 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",120110346-T03 -160340400,71,16013245,Medical Incident,02/03/2016,02/02/2016,02/03/2016 05:35:27 AM,02/03/2016 05:36:11 AM,02/03/2016 05:39:31 AM,02/03/2016 05:39:31 AM,02/03/2016 05:44:15 AM,02/03/2016 06:01:40 AM,02/03/2016 06:30:08 AM,Code 2 Transport,02/03/2016 06:49:46 AM,1300 Block of INGALLS ST,San Francisco,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7304672300474, -122.382582263214)",160340400-71 -112620107,E03,11086404,Medical Incident,09/19/2011,09/19/2011,09/19/2011 09:43:38 AM,09/19/2011 09:44:13 AM,09/19/2011 09:45:00 AM,09/19/2011 09:48:08 AM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,09/19/2011 09:49:44 AM,1400 Block of PINE ST,SF,94109,B04,3,3122,1,3,3,true,,1,ENGINE,3,4,3,Nob Hill,"(37.7897794249332, -122.419678979482)",112620107-E03 -160774053,52,16030801,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:39:18 PM,03/17/2016 09:39:18 PM,03/17/2016 09:41:24 PM,03/17/2016 09:41:39 PM,03/17/2016 09:50:48 PM,03/17/2016 10:00:48 PM,03/17/2016 10:09:49 PM,Code 2 Transport,03/17/2016 11:25:43 PM,GRANT AV/CALIFORNIA ST,San Francisco,94108,B01,13,1314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",160774053-52 -112460168,AM04,11081100,Medical Incident,09/03/2011,09/03/2011,09/03/2011 12:20:30 PM,09/03/2011 12:23:46 PM,09/03/2011 12:24:05 PM,09/03/2011 12:24:52 PM,09/03/2011 12:26:56 PM,09/03/2011 12:54:02 PM,09/03/2011 01:00:33 PM,Code 3 Transport,09/03/2011 01:22:19 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",112460168-AM04 -160671369,60,16026731,Medical Incident,03/07/2016,03/07/2016,03/07/2016 12:19:38 PM,03/07/2016 12:20:11 PM,03/07/2016 12:20:30 PM,03/07/2016 12:20:43 PM,03/07/2016 12:30:57 PM,03/07/2016 12:42:29 PM,03/07/2016 12:54:03 PM,Code 2 Transport,03/07/2016 01:42:38 PM,0 Block of OSGOOD PL,San Francisco,94133,B01,13,1212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.797851125778, -122.403049095456)",160671369-60 -160061074,57,16002333,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:53:41 AM,01/06/2016 09:55:25 AM,01/06/2016 09:57:19 AM,01/06/2016 09:57:26 AM,01/06/2016 10:11:41 AM,01/06/2016 10:22:08 AM,01/06/2016 10:35:53 AM,Code 2 Transport,01/06/2016 11:04:44 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160061074-57 -123090260,RC3,12102808,Medical Incident,11/04/2012,11/04/2012,11/04/2012 02:19:59 PM,11/04/2012 02:20:13 PM,11/04/2012 02:20:30 PM,11/04/2012 02:22:22 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 02:26:27 PM,500 Block of SAWYER ST,SF,94134,B09,44,6251,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.7106565875609, -122.415453077343)",123090260-RC3 -111660206,E08,11054808,Medical Incident,06/15/2011,06/15/2011,06/15/2011 01:38:50 PM,06/15/2011 01:39:40 PM,06/15/2011 01:40:02 PM,06/15/2011 01:42:42 PM,06/15/2011 01:46:40 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/15/2011 02:17:52 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,2,2,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",111660206-E08 -133520090,84,13119492,Medical Incident,12/18/2013,12/18/2013,12/18/2013 08:11:05 AM,12/18/2013 08:12:19 AM,12/18/2013 08:24:39 AM,12/18/2013 08:24:50 AM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,04/25/2016 01:49:12 PM,200 Block of LELAND AVE,SF,94134,B10,44,6254,1,1,2,true,Non Life-threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7130215958017, -122.408889222653)",133520090-84 -103280103,E31,10105005,Medical Incident,11/24/2010,11/24/2010,11/24/2010 10:13:07 AM,11/24/2010 10:13:38 AM,11/24/2010 10:14:46 AM,11/24/2010 10:16:25 AM,11/24/2010 10:19:18 AM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/24/2010 10:29:34 AM,GEARY BL/6TH AV,SF,94118,B07,31,7127,3,2,2,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7810189207549, -122.464279168827)",103280103-E31 -103120324,E01,10100161,Medical Incident,11/08/2010,11/08/2010,11/08/2010 09:00:04 PM,11/08/2010 09:04:03 PM,11/08/2010 09:04:32 PM,11/08/2010 09:05:57 PM,11/08/2010 09:08:09 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 09:25:55 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",103120324-E01 -111290120,E43,11042608,Traffic Collision,05/09/2011,05/09/2011,05/09/2011 11:11:13 AM,05/09/2011 11:13:55 AM,05/09/2011 11:17:27 AM,05/09/2011 11:18:18 AM,05/09/2011 11:20:36 AM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Other,05/09/2011 11:36:20 AM,GENEVA AV/MUNICH ST,SF,94112,B09,43,6173,2,2,2,false,,1,ENGINE,1,9,11,Excelsior,"(37.7129143737281, -122.432857501565)",111290120-E43 -102320312,E13,10073119,Medical Incident,08/20/2010,08/20/2010,08/20/2010 07:06:43 PM,08/20/2010 07:07:14 PM,08/20/2010 07:07:42 PM,08/20/2010 07:08:47 PM,08/20/2010 07:11:36 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/20/2010 07:26:48 PM,200 Block of KEARNY ST,SF,94108,B01,13,1242,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7900664268691, -122.403819640873)",102320312-E13 -102490157,E11,10078670,Structure Fire,09/06/2010,09/06/2010,09/06/2010 12:54:46 PM,09/06/2010 12:54:46 PM,09/06/2010 12:54:55 PM,09/06/2010 12:55:36 PM,09/06/2010 12:57:36 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Fire,09/06/2010 12:57:57 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",102490157-E11 -82410132,B02,8073841,Other,08/28/2008,08/28/2008,08/28/2008 10:32:00 AM,08/28/2008 10:32:47 AM,08/28/2008 10:33:05 AM,08/28/2008 10:35:48 AM,08/28/2008 10:44:52 AM,04/25/2016 03:32:38 PM,04/25/2016 03:32:38 PM,Other,08/28/2008 11:35:00 AM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,false,,1,CHIEF,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",082410132-B02 -132140258,E36,13072324,Medical Incident,08/02/2013,08/02/2013,08/02/2013 04:07:23 PM,08/02/2013 04:07:31 PM,08/02/2013 04:08:17 PM,08/02/2013 04:09:47 PM,08/02/2013 04:12:10 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 04:26:19 PM,0 Block of 12TH ST,SF,94103,B02,36,5116,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7734277265612, -122.419200287559)",132140258-E36 -110730390,T06,11024184,Elevator / Escalator Rescue,03/14/2011,03/14/2011,03/14/2011 10:11:37 PM,03/14/2011 10:14:47 PM,03/14/2011 10:15:02 PM,03/14/2011 10:16:50 PM,03/14/2011 10:19:56 PM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Fire,03/14/2011 10:46:30 PM,1600 Block of MARKET ST,SF,94102,B02,36,3311,3,3,3,false,,1,TRUCK,1,2,5,Hayes Valley,"(37.7734563328786, -122.421591110968)",110730390-T06 -131250239,E24,13042293,Structure Fire,05/05/2013,05/05/2013,05/05/2013 05:18:00 PM,05/05/2013 05:18:48 PM,05/05/2013 05:19:38 PM,05/05/2013 05:21:24 PM,05/05/2013 05:22:49 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 05:35:42 PM,0 Block of HOMESTEAD ST,SF,94114,B06,24,5517,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7501683501322, -122.439399796245)",131250239-E24 -113470328,56,11115232,Medical Incident,12/13/2011,12/13/2011,12/13/2011 07:12:01 PM,12/13/2011 07:12:52 PM,12/13/2011 07:13:09 PM,12/13/2011 07:13:46 PM,12/13/2011 07:18:20 PM,12/13/2011 07:25:18 PM,12/13/2011 07:36:53 PM,Code 3 Transport,12/13/2011 08:22:41 PM,1400 Block of 33RD AVE,SF,94122,B08,23,7541,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7601018007825, -122.492001290202)",113470328-56 -121100313,KM14,12036489,Medical Incident,04/19/2012,04/19/2012,04/19/2012 06:20:58 PM,04/19/2012 06:23:24 PM,04/19/2012 06:24:23 PM,04/19/2012 06:25:21 PM,04/19/2012 06:31:30 PM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/19/2012 06:54:56 PM,700 Block of 34TH AVE,SF,94121,B07,14,7244,3,3,3,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.774925830371, -122.494105182067)",121100313-KM14 -132330016,85,13078549,Traffic Collision,08/21/2013,08/20/2013,08/21/2013 01:12:05 AM,08/21/2013 01:14:53 AM,08/21/2013 01:15:19 AM,08/21/2013 01:15:52 AM,08/21/2013 01:27:05 AM,08/21/2013 01:39:42 AM,08/21/2013 01:51:04 AM,Code 2 Transport,08/21/2013 02:35:33 AM,200 Block of SAN JOSE AVE,SF,94110,B09,26,8261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7512439644709, -122.421585334305)",132330016-85 -132500313,B08,13084504,Structure Fire,09/07/2013,09/07/2013,09/07/2013 04:39:45 PM,09/07/2013 04:40:40 PM,09/07/2013 04:40:58 PM,09/07/2013 04:42:47 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/07/2013 04:48:28 PM,100 Block of CERRITOS AVE,SF,94127,B09,19,8445,3,3,3,false,Alarm,1,CHIEF,6,9,7,West of Twin Peaks,"(37.7263696286761, -122.470232236225)",132500313-B08 -121200046,KM15,12039716,Medical Incident,04/29/2012,04/28/2012,04/29/2012 01:58:12 AM,04/29/2012 01:59:28 AM,04/29/2012 01:59:43 AM,04/29/2012 02:00:26 AM,04/29/2012 02:03:42 AM,04/29/2012 02:18:20 AM,04/29/2012 02:22:54 AM,Code 2 Transport,04/29/2012 02:49:21 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",121200046-KM15 -160640980,74,16025425,Medical Incident,03/04/2016,03/04/2016,03/04/2016 09:04:00 AM,03/04/2016 09:04:00 AM,03/04/2016 09:04:16 AM,03/04/2016 09:04:26 AM,03/04/2016 09:18:28 AM,03/04/2016 09:21:03 AM,03/04/2016 09:44:31 AM,Code 2 Transport,03/04/2016 10:21:34 AM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",160640980-74 -160021996,AM02,16000773,Medical Incident,01/02/2016,01/02/2016,01/02/2016 03:12:24 PM,01/02/2016 03:14:34 PM,01/02/2016 03:14:54 PM,01/02/2016 03:15:28 PM,01/02/2016 03:19:34 PM,01/02/2016 03:37:14 PM,01/02/2016 03:58:26 PM,Code 2 Transport,01/02/2016 04:18:30 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160021996-AM02 -160702730,76,16027945,Medical Incident,03/10/2016,03/10/2016,03/10/2016 05:37:45 PM,03/10/2016 05:38:02 PM,03/10/2016 05:38:23 PM,03/10/2016 05:39:02 PM,03/10/2016 05:59:51 PM,03/10/2016 05:59:53 PM,03/10/2016 06:36:24 PM,Code 2 Transport,03/10/2016 07:09:16 PM,2500 Block of 23RD AV,San Francisco,94116,B08,40,7442,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7400685758644, -122.479713963332)",160702730-76 -140410090,68,14013843,Traffic Collision,02/10/2014,02/10/2014,02/10/2014 08:27:30 AM,02/10/2014 08:29:04 AM,02/10/2014 08:29:49 AM,02/10/2014 08:30:17 AM,02/10/2014 08:33:37 AM,02/10/2014 08:56:59 AM,02/10/2014 09:16:19 AM,Code 2 Transport,02/10/2014 10:07:27 AM,MARKET ST/5TH ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",140410090-68 -112470167,E17,11081430,Medical Incident,09/04/2011,09/04/2011,09/04/2011 10:50:02 AM,09/04/2011 10:50:33 AM,09/04/2011 10:50:44 AM,09/04/2011 10:51:15 AM,09/04/2011 10:54:45 AM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Other,09/04/2011 10:55:22 AM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,E,E,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.730710372177, -122.375579669518)",112470167-E17 -160013268,67,16000468,Medical Incident,01/01/2016,01/01/2016,01/01/2016 07:17:59 PM,01/01/2016 07:18:08 PM,01/01/2016 07:18:47 PM,01/01/2016 07:20:21 PM,01/01/2016 07:24:11 PM,01/01/2016 07:41:48 PM,01/01/2016 07:46:23 PM,Code 2 Transport,01/01/2016 08:21:42 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160013268-67 -140040325,RC3,14001582,Medical Incident,01/04/2014,01/04/2014,01/04/2014 07:49:43 PM,01/04/2014 07:51:06 PM,01/04/2014 07:51:56 PM,01/04/2014 07:52:43 PM,01/04/2014 08:00:00 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,Other,01/04/2014 08:56:45 PM,300 Block of WEST PORTAL AVE,SF,94127,B08,39,8561,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,8,7,West of Twin Peaks,"(37.7373722059796, -122.469939861606)",140040325-RC3 -140030323,RS1,14001162,Medical Incident,01/03/2014,01/03/2014,01/03/2014 04:58:35 PM,01/03/2014 04:59:12 PM,01/03/2014 04:59:38 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,Other,01/03/2014 05:01:05 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",140030323-RS1 -140110011,T07,14003701,Structure Fire,01/11/2014,01/10/2014,01/11/2014 12:23:07 AM,01/11/2014 12:23:07 AM,01/11/2014 12:23:15 AM,01/11/2014 12:23:58 AM,01/11/2014 12:24:01 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Fire,01/11/2014 12:24:22 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",140110011-T07 -120920315,E15,12030568,Medical Incident,04/01/2012,04/01/2012,04/01/2012 05:51:37 PM,04/01/2012 05:52:33 PM,04/01/2012 05:53:41 PM,04/01/2012 05:54:36 PM,04/01/2012 05:57:39 PM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,Other,04/01/2012 06:07:44 PM,0 Block of SAN FELIPE AVE,SF,94127,B09,15,8547,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7314812018322, -122.462473997503)",120920315-E15 -160751676,88,16029705,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:36:16 PM,03/15/2016 12:37:55 PM,03/15/2016 12:38:28 PM,03/15/2016 12:44:26 PM,03/15/2016 12:47:08 PM,03/15/2016 12:51:33 PM,03/15/2016 01:26:31 PM,Code 2 Transport,03/15/2016 02:02:06 PM,1700 Block of WALLACE AV,San Francisco,94124,B10,17,6536,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7286268943936, -122.393299533378)",160751676-88 -110580162,83,11019064,Medical Incident,02/27/2011,02/27/2011,02/27/2011 11:43:11 AM,02/27/2011 11:43:31 AM,02/27/2011 11:43:47 AM,02/27/2011 11:44:09 AM,02/27/2011 11:47:38 AM,02/27/2011 12:14:22 PM,02/27/2011 12:32:59 PM,Code 2 Transport,02/27/2011 12:58:22 PM,2100 Block of 17TH AVE,SF,94116,B08,40,7375,3,3,3,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.747809820377, -122.473811815135)",110580162-83 -110860019,E36,11028238,Medical Incident,03/27/2011,03/26/2011,03/27/2011 12:39:31 AM,03/27/2011 12:39:50 AM,03/27/2011 12:40:27 AM,03/27/2011 12:40:41 AM,03/27/2011 12:43:20 AM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/27/2011 01:08:09 AM,HOWARD ST/9TH ST,SF,94103,B02,36,2335,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",110860019-E36 -132980265,RC1,13101270,Medical Incident,10/25/2013,10/25/2013,10/25/2013 04:29:41 PM,10/25/2013 04:30:44 PM,10/25/2013 04:38:58 PM,04/25/2016 01:50:06 PM,10/25/2013 04:42:36 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 04:46:41 PM,700 Block of MONTGOMERY ST,SF,94111,B01,13,1232,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7959659233971, -122.403475165635)",132980265-RC1 -120430339,99,12014540,Medical Incident,02/12/2012,02/12/2012,02/12/2012 11:10:31 PM,02/12/2012 11:10:54 PM,02/12/2012 11:11:22 PM,02/12/2012 11:12:02 PM,02/12/2012 11:16:59 PM,02/12/2012 11:31:43 PM,02/12/2012 11:38:42 PM,Code 2 Transport,02/13/2012 12:11:03 AM,STATES ST/LEVANT ST,SF,94114,B05,6,5175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7650027194618, -122.442317300917)",120430339-99 -160503944,60,16020293,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:19:45 PM,02/19/2016 11:21:49 PM,02/19/2016 11:22:06 PM,02/19/2016 11:22:18 PM,02/19/2016 11:30:26 PM,02/19/2016 11:59:41 PM,02/20/2016 12:22:53 AM,Code 2 Transport,02/20/2016 01:17:39 AM,STATE DR/LAKE MERCED BL,San Francisco,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",160503944-60 -112780324,AM08,11092147,Traffic Collision,10/05/2011,10/05/2011,10/05/2011 07:34:02 PM,10/05/2011 07:34:02 PM,10/05/2011 07:34:33 PM,10/05/2011 08:29:26 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 08:35:30 PM,LINCOLN WY/25TH AV,SF,94122,B08,22,7452,3,3,3,false,,1,PRIVATE,8,8,1,Golden Gate Park,"(37.7651601782916, -122.48368543575)",112780324-AM08 -123260341,E01,12108598,Medical Incident,11/21/2012,11/21/2012,11/21/2012 11:47:56 PM,11/21/2012 11:48:37 PM,11/21/2012 11:48:53 PM,11/21/2012 11:51:40 PM,11/21/2012 11:54:06 PM,04/25/2016 01:55:41 PM,04/25/2016 01:55:41 PM,Other,11/22/2012 12:03:34 AM,600 Block of NATOMA ST,SF,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7774997276449, -122.410999268699)",123260341-E01 -132180039,E14,13073504,Medical Incident,08/06/2013,08/05/2013,08/06/2013 04:06:19 AM,08/06/2013 04:07:33 AM,08/06/2013 04:07:50 AM,08/06/2013 04:09:31 AM,08/06/2013 04:12:08 AM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 04:48:40 AM,300 Block of 24TH AVE,SF,94121,B07,14,7174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7830006442599, -122.483939034671)",132180039-E14 -160782022,AM08,16031031,Medical Incident,03/18/2016,03/18/2016,03/18/2016 01:44:01 PM,03/18/2016 01:45:06 PM,03/18/2016 01:45:32 PM,03/18/2016 01:45:50 PM,03/18/2016 01:58:03 PM,03/18/2016 02:30:14 PM,03/18/2016 03:02:58 PM,Code 2 Transport,03/18/2016 03:40:06 PM,600 Block of 18TH AVE,San Francisco,94121,B07,31,7157,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7757145343646, -122.476828115824)",160782022-AM08 -103350317,RC3,10107297,Medical Incident,12/01/2010,12/01/2010,12/01/2010 08:22:15 PM,12/01/2010 08:22:15 PM,12/01/2010 08:22:38 PM,04/25/2016 02:07:20 PM,12/01/2010 08:31:03 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/01/2010 08:37:37 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,RESCUE CAPTAIN,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",103350317-RC3 -131260283,67,13042642,Medical Incident,05/06/2013,05/06/2013,05/06/2013 03:50:55 PM,05/06/2013 03:52:38 PM,05/06/2013 03:53:17 PM,05/06/2013 03:53:42 PM,05/06/2013 04:01:52 PM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,No Merit,05/06/2013 04:08:14 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7643732096664, -122.417478491468)",131260283-67 -160842201,86,16033415,Medical Incident,03/24/2016,03/24/2016,03/24/2016 02:02:07 PM,03/24/2016 02:02:07 PM,03/24/2016 02:03:03 PM,03/24/2016 02:03:12 PM,03/24/2016 02:06:05 PM,03/24/2016 02:13:21 PM,03/24/2016 02:23:48 PM,Code 2 Transport,03/24/2016 03:09:58 PM,500 Block of STEVENSON ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7809266852586, -122.410870424137)",160842201-86 -112900410,E07,11096400,Medical Incident,10/17/2011,10/17/2011,10/17/2011 10:04:58 PM,10/17/2011 10:07:38 PM,10/17/2011 10:08:25 PM,10/17/2011 10:11:26 PM,10/17/2011 10:12:35 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/17/2011 10:28:20 PM,0 Block of HOFF ST,SF,94110,B02,7,5236,3,2,2,true,,1,ENGINE,2,2,9,Mission,"(37.7641819463712, -122.420575720933)",112900410-E07 -122290051,77,12075773,Medical Incident,08/16/2012,08/15/2012,08/16/2012 06:18:08 AM,08/16/2012 06:20:30 AM,08/16/2012 06:21:07 AM,08/16/2012 06:21:35 AM,08/16/2012 06:29:02 AM,08/16/2012 06:42:36 AM,08/16/2012 06:58:00 AM,Code 2 Transport,08/16/2012 07:10:57 AM,800 Block of CLAY ST,SF,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7942850258424, -122.406574058341)",122290051-77 -122230168,T01,12073914,Structure Fire,08/10/2012,08/10/2012,08/10/2012 12:13:42 PM,08/10/2012 12:13:42 PM,08/10/2012 12:13:53 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 12:17:59 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122230168-T01 -120420033,88,12013904,Medical Incident,02/11/2012,02/10/2012,02/11/2012 01:53:30 AM,02/11/2012 01:54:57 AM,02/11/2012 01:57:38 AM,02/11/2012 01:57:47 AM,02/11/2012 02:06:25 AM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Unable to Locate,02/11/2012 02:08:40 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",120420033-88 -113270357,55,11108716,Medical Incident,11/23/2011,11/23/2011,11/23/2011 11:29:40 PM,11/23/2011 11:32:16 PM,11/23/2011 11:32:29 PM,11/23/2011 11:34:37 PM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 11:35:34 PM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,MEDIC,3,5,5,Inner Sunset,"(37.7624959683458, -122.452233181923)",113270357-55 -102240351,E11,10070692,Alarms,08/12/2010,08/12/2010,08/12/2010 11:11:22 PM,08/12/2010 11:13:27 PM,08/12/2010 11:13:48 PM,04/25/2016 02:09:06 PM,08/12/2010 11:18:47 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Fire,08/12/2010 11:15:49 PM,3800 Block of 20TH ST,SF,94114,B06,11,5444,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7581030303289, -122.426903244614)",102240351-E11 -160661340,88,16026366,Medical Incident,03/06/2016,03/06/2016,03/06/2016 12:07:51 PM,03/06/2016 12:08:31 PM,03/06/2016 12:08:55 PM,03/06/2016 12:09:03 PM,03/06/2016 12:13:04 PM,03/06/2016 12:32:50 PM,03/06/2016 12:43:29 PM,Code 2 Transport,03/06/2016 01:12:08 PM,1100 Block of GOUGH ST,San Francisco,94109,B04,3,3261,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.784358514886, -122.424559253604)",160661340-88 -121820091,88,12060529,Medical Incident,06/30/2012,06/29/2012,06/30/2012 07:22:16 AM,06/30/2012 07:24:26 AM,06/30/2012 07:28:29 AM,06/30/2012 07:30:16 AM,04/25/2016 01:57:57 PM,06/30/2012 07:54:26 AM,06/30/2012 08:23:02 AM,Code 2 Transport,06/30/2012 08:36:46 AM,MARINA BL/FILLMORE ST,SF,94123,B04,16,3561,1,1,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8064017799399, -122.437461293752)",121820091-88 -121750026,88,12057964,Medical Incident,06/23/2012,06/22/2012,06/23/2012 01:48:20 AM,06/23/2012 01:48:54 AM,06/23/2012 01:49:08 AM,06/23/2012 01:49:14 AM,06/23/2012 01:59:08 AM,06/23/2012 02:10:37 AM,06/23/2012 02:29:03 AM,Code 2 Transport,06/23/2012 02:47:58 AM,2100 Block of FILBERT ST,SF,94123,B04,16,3462,2,2,2,false,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7980713649895, -122.434846001062)",121750026-88 -113220100,KM04,11106890,Structure Fire,11/18/2011,11/18/2011,11/18/2011 09:06:57 AM,11/18/2011 09:06:57 AM,11/18/2011 09:07:15 AM,04/25/2016 02:01:35 PM,11/18/2011 09:17:29 AM,11/18/2011 09:25:51 AM,11/18/2011 09:34:18 AM,Code 2 Transport,11/18/2011 09:56:48 AM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",113220100-KM04 -113240167,E07,11107602,Medical Incident,11/20/2011,11/20/2011,11/20/2011 01:02:24 PM,11/20/2011 01:04:21 PM,11/20/2011 01:04:35 PM,11/20/2011 01:04:55 PM,11/20/2011 01:08:31 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 01:24:16 PM,3200 Block of 26TH ST,SF,94110,B06,7,5614,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7491990535295, -122.414593171104)",113240167-E07 -160621133,AM02,16024635,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:08:24 AM,03/02/2016 10:10:40 AM,03/02/2016 10:11:02 AM,03/02/2016 10:11:58 AM,03/02/2016 10:22:37 AM,03/02/2016 10:38:04 AM,03/02/2016 10:57:44 AM,Code 2 Transport,03/02/2016 11:26:34 AM,500 Block of MARKET ST,San Francisco,94105,B03,1,2144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",160621133-AM02 -133410309,RC3,13115729,Medical Incident,12/07/2013,12/07/2013,12/07/2013 06:38:42 PM,12/07/2013 06:39:35 PM,12/07/2013 06:40:14 PM,12/07/2013 06:41:40 PM,12/07/2013 07:11:31 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/07/2013 07:15:56 PM,0 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",133410309-RC3 -121620180,T13,12053621,Medical Incident,06/10/2012,06/10/2012,06/10/2012 11:48:28 AM,06/10/2012 11:48:28 AM,06/10/2012 11:48:28 AM,06/10/2012 11:51:31 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 11:51:40 AM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,2,2,2,false,Non Life-threatening,1,TRUCK,6,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",121620180-T13 -110660231,55,11021814,Medical Incident,03/07/2011,03/07/2011,03/07/2011 03:36:32 PM,03/07/2011 03:38:18 PM,03/07/2011 03:39:07 PM,03/07/2011 03:41:55 PM,03/07/2011 03:43:56 PM,03/07/2011 04:02:04 PM,03/07/2011 04:10:07 PM,Code 2 Transport,03/07/2011 04:22:27 PM,2700 Block of MORAGA ST,SF,94122,B08,18,7562,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7553673057148, -122.492136264121)",110660231-55 -160432262,AM12,16017351,Medical Incident,02/12/2016,02/12/2016,02/12/2016 03:21:44 PM,02/12/2016 03:23:01 PM,02/12/2016 03:23:25 PM,02/12/2016 03:24:01 PM,02/12/2016 03:29:40 PM,02/12/2016 03:51:09 PM,02/12/2016 04:03:07 PM,Code 2 Transport,02/12/2016 04:28:55 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160432262-AM12 -160013729,78,16000522,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:02:07 PM,01/01/2016 10:05:57 PM,01/01/2016 10:06:24 PM,01/01/2016 10:06:35 PM,01/01/2016 10:08:59 PM,01/01/2016 10:23:39 PM,01/01/2016 10:32:22 PM,Code 2 Transport,01/01/2016 11:10:43 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160013729-78 -131390222,88,13047029,Medical Incident,05/19/2013,05/19/2013,05/19/2013 12:41:00 PM,05/19/2013 12:41:38 PM,05/19/2013 12:42:48 PM,05/19/2013 12:43:19 PM,05/19/2013 12:50:08 PM,05/19/2013 01:02:50 PM,05/19/2013 01:36:23 PM,Code 2 Transport,05/19/2013 02:04:18 PM,22ND ST/SHOTWELL ST,SF,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7556341092499, -122.415473276099)",131390222-88 -160751907,52,16029726,Medical Incident,03/15/2016,03/15/2016,03/15/2016 01:30:04 PM,03/15/2016 01:31:43 PM,03/15/2016 01:33:16 PM,03/15/2016 01:33:31 PM,03/15/2016 01:50:27 PM,03/15/2016 02:07:34 PM,03/15/2016 02:14:28 PM,Code 2 Transport,03/15/2016 02:54:11 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7842371111665, -122.440760813886)",160751907-52 -112990229,E14,11099216,Medical Incident,10/26/2011,10/26/2011,10/26/2011 02:33:13 PM,10/26/2011 02:33:30 PM,10/26/2011 02:33:56 PM,10/26/2011 02:37:58 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 02:43:14 PM,4600 Block of BALBOA ST,SF,94121,B07,34,7312,3,3,3,true,,1,ENGINE,3,7,1,Outer Richmond,"(37.7751464145485, -122.508554189237)",112990229-E14 -160153965,55,16006196,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:30:55 PM,01/15/2016 10:30:55 PM,01/15/2016 10:31:10 PM,01/15/2016 10:31:18 PM,01/15/2016 10:39:35 PM,01/15/2016 11:06:15 PM,01/15/2016 11:12:22 PM,Code 2 Transport,01/16/2016 12:11:21 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160153965-55 -132540435,67,13086029,Medical Incident,09/11/2013,09/11/2013,09/11/2013 10:59:49 PM,09/11/2013 11:00:04 PM,09/11/2013 11:00:24 PM,09/11/2013 11:00:29 PM,09/11/2013 11:05:06 PM,04/25/2016 01:50:50 PM,04/25/2016 01:50:50 PM,No Merit,09/11/2013 11:10:35 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,false,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",132540435-67 -130950109,RC1,13031745,Medical Incident,04/05/2013,04/05/2013,04/05/2013 09:33:54 AM,04/05/2013 09:38:35 AM,04/05/2013 09:38:55 AM,04/05/2013 09:39:02 AM,04/05/2013 09:44:12 AM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,Other,04/05/2013 09:44:23 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",130950109-RC1 -112830348,E09,11093829,Medical Incident,10/10/2011,10/10/2011,10/10/2011 09:21:17 PM,10/10/2011 09:23:13 PM,10/10/2011 09:23:40 PM,10/10/2011 09:25:46 PM,10/10/2011 09:27:03 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 09:31:06 PM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,3,3,true,,1,ENGINE,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",112830348-E09 -102760180,55,10087732,Medical Incident,10/03/2010,10/03/2010,10/03/2010 11:59:57 AM,10/03/2010 12:02:26 PM,10/03/2010 12:27:04 PM,10/03/2010 12:27:20 PM,10/03/2010 12:41:06 PM,10/03/2010 12:59:47 PM,10/03/2010 01:05:48 PM,Code 2 Transport,10/03/2010 01:31:09 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7829835080746, -122.406698577014)",102760180-55 -131840373,85,13062858,Medical Incident,07/03/2013,07/03/2013,07/03/2013 09:55:49 PM,07/03/2013 09:57:53 PM,07/03/2013 09:59:55 PM,07/03/2013 10:00:00 PM,07/03/2013 10:12:05 PM,07/03/2013 10:27:31 PM,07/03/2013 10:43:41 PM,Code 2 Transport,07/03/2013 11:13:00 PM,800 Block of FOLSOM ST,SF,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811056901316, -122.402224662374)",131840373-85 -160473295,88,16019084,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:36:26 PM,02/16/2016 07:36:26 PM,02/16/2016 07:41:02 PM,02/16/2016 07:41:10 PM,02/16/2016 07:59:39 PM,02/16/2016 08:19:03 PM,02/16/2016 08:34:44 PM,Code 2 Transport,02/16/2016 09:43:29 PM,400 Block of JOOST AVE,San Francisco,94127,B09,15,8235,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7323967002022, -122.445452946638)",160473295-88 -123270198,T05,12108773,Structure Fire,11/22/2012,11/22/2012,11/22/2012 02:58:01 PM,11/22/2012 02:58:01 PM,11/22/2012 02:58:23 PM,11/22/2012 02:59:22 PM,04/25/2016 01:55:41 PM,04/25/2016 01:55:41 PM,04/25/2016 01:55:41 PM,Other,11/22/2012 03:01:07 PM,FILLMORE ST/GEARY BL,SF,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",123270198-T05 -130180074,AM02,13006052,Medical Incident,01/18/2013,01/17/2013,01/18/2013 06:45:51 AM,01/18/2013 06:46:16 AM,01/18/2013 06:46:24 AM,01/18/2013 06:47:25 AM,01/18/2013 07:02:31 AM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,Other,01/18/2013 07:35:50 AM,800 Block of LA PLAYA,SF,94121,B07,34,7311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",130180074-AM02 -103080327,E01,10098809,Alarms,11/04/2010,11/04/2010,11/04/2010 06:26:33 PM,11/04/2010 06:26:33 PM,11/04/2010 06:27:21 PM,11/04/2010 06:27:53 PM,11/04/2010 06:30:06 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 06:30:38 PM,MAIN ST/MISSION ST,SF,94105,B03,35,2116,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",103080327-E01 -123500345,B07,12117182,Medical Incident,12/15/2012,12/15/2012,12/15/2012 09:29:22 PM,12/15/2012 09:30:27 PM,12/15/2012 09:30:54 PM,12/15/2012 09:32:17 PM,12/15/2012 09:37:59 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/15/2012 09:47:25 PM,CLAYTON ST/FELL ST,SF,94117,B05,21,4523,E,E,3,false,Potentially Life-Threatening,1,CHIEF,4,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",123500345-B07 -140390225,E08,14013221,Citizen Assist / Service Call,02/08/2014,02/08/2014,02/08/2014 02:56:30 PM,02/08/2014 02:57:35 PM,02/08/2014 02:58:45 PM,02/08/2014 03:00:01 PM,02/08/2014 03:02:37 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/08/2014 04:21:27 PM,400 Block of 5TH ST,SF,94107,B03,8,2242,,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7781649349602, -122.40085398952)",140390225-E08 -102820366,E15,10089845,Vehicle Fire,10/09/2010,10/09/2010,10/09/2010 08:01:59 PM,10/09/2010 08:02:41 PM,10/09/2010 08:02:51 PM,04/25/2016 02:08:11 PM,10/09/2010 08:09:22 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 08:09:30 PM,MONTEREY BL/BADEN ST,SF,94131,B09,26,8214,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7315842265728, -122.439742767482)",102820366-E15 -111180154,E01,11038898,Alarms,04/28/2011,04/28/2011,04/28/2011 12:09:53 PM,04/28/2011 12:11:12 PM,04/28/2011 12:11:26 PM,04/28/2011 12:12:59 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 12:14:15 PM,0 Block of TOWNSEND ST,SF,94107,B03,35,938,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",111180154-E01 -113570342,E44,11118722,Medical Incident,12/23/2011,12/23/2011,12/23/2011 04:39:49 PM,12/23/2011 04:40:58 PM,12/23/2011 04:41:10 PM,12/23/2011 04:42:25 PM,12/23/2011 04:46:17 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 05:02:01 PM,200 Block of ARGONAUT AVE,SF,94134,B09,44,6248,3,2,2,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7107197085034, -122.414620256792)",113570342-E44 -120690292,E22,12022985,Medical Incident,03/09/2012,03/09/2012,03/09/2012 06:10:18 PM,03/09/2012 06:15:24 PM,03/09/2012 06:20:47 PM,03/09/2012 06:27:45 PM,03/09/2012 06:27:48 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:29:50 PM,46TH AV/TARAVAL ST,SF,94116,B08,18,7665,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7417646821826, -122.504620445391)",120690292-E22 -160861287,KM08,16034132,Medical Incident,03/26/2016,03/26/2016,03/26/2016 11:01:00 AM,03/26/2016 11:02:17 AM,03/26/2016 11:02:36 AM,03/26/2016 11:03:10 AM,03/26/2016 11:18:31 AM,03/26/2016 11:36:03 AM,03/26/2016 11:47:31 AM,Code 3 Transport,03/26/2016 12:28:23 PM,0 Block of AVENUE OF THE PALMS,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",160861287-KM08 -130340323,66,13011738,Medical Incident,02/03/2013,02/03/2013,02/03/2013 07:57:43 PM,02/03/2013 08:00:40 PM,02/03/2013 08:01:07 PM,02/03/2013 08:01:16 PM,02/03/2013 08:10:54 PM,02/03/2013 08:26:14 PM,02/03/2013 08:39:34 PM,Code 2 Transport,02/03/2013 09:14:45 PM,PIERCE ST/CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8004034299938, -122.439504170635)",130340323-66 -160374179,AM22,16014982,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:16:15 PM,02/06/2016 11:16:48 PM,02/06/2016 11:17:27 PM,02/06/2016 11:18:34 PM,02/06/2016 11:29:20 PM,02/06/2016 11:37:33 PM,02/06/2016 11:51:04 PM,Code 2 Transport,02/07/2016 12:27:36 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",160374179-AM22 -160122540,52,16004842,Medical Incident,01/12/2016,01/12/2016,01/12/2016 04:21:03 PM,01/12/2016 04:22:56 PM,01/12/2016 04:23:49 PM,01/12/2016 04:23:57 PM,01/12/2016 04:29:35 PM,01/12/2016 04:56:35 PM,01/12/2016 05:05:51 PM,Code 2 Transport,01/12/2016 05:27:36 PM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",160122540-52 -122130351,KM07,12070844,Medical Incident,07/31/2012,07/31/2012,07/31/2012 10:11:01 PM,07/31/2012 10:13:12 PM,07/31/2012 10:17:17 PM,07/31/2012 10:19:54 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 10:20:20 PM,0 Block of MADRONE AVE,SF,94127,B08,39,8616,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7424759358978, -122.46714430332)",122130351-KM07 -102380065,E36,10074980,Structure Fire,08/26/2010,08/25/2010,08/26/2010 07:10:06 AM,08/26/2010 07:12:49 AM,08/26/2010 07:13:03 AM,08/26/2010 07:14:11 AM,08/26/2010 07:17:29 AM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/26/2010 07:24:36 AM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,5,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",102380065-E36 -160620609,79,16024590,Traffic Collision,03/02/2016,03/01/2016,03/02/2016 07:38:32 AM,03/02/2016 07:38:32 AM,03/02/2016 07:38:56 AM,03/02/2016 07:39:07 AM,03/02/2016 07:56:37 AM,03/02/2016 08:08:20 AM,03/02/2016 08:14:43 AM,Code 2 Transport,03/02/2016 08:45:08 AM,PARK PRESIDIO BL/FULTON ST,San Francisco,94118,B07,31,7144,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7731389469461, -122.471762120845)",160620609-79 -120540198,T03,12017835,Structure Fire,02/23/2012,02/23/2012,02/23/2012 02:02:46 PM,02/23/2012 02:02:46 PM,02/23/2012 02:03:46 PM,02/23/2012 02:04:57 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 02:05:56 PM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",120540198-T03 -160911282,AM02,16036035,Medical Incident,03/31/2016,03/31/2016,03/31/2016 11:01:30 AM,03/31/2016 11:02:11 AM,03/31/2016 11:02:48 AM,03/31/2016 11:02:48 AM,03/31/2016 11:13:10 AM,03/31/2016 11:29:47 AM,03/31/2016 11:34:01 AM,Code 2 Transport,03/31/2016 12:16:34 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160911282-AM02 -160873277,AM20,16034729,Medical Incident,03/27/2016,03/27/2016,03/27/2016 08:43:36 PM,03/27/2016 08:47:02 PM,03/27/2016 08:47:18 PM,03/27/2016 08:47:47 PM,03/27/2016 09:08:39 PM,03/27/2016 09:08:41 PM,03/27/2016 09:23:03 PM,Code 2 Transport,03/27/2016 10:10:09 PM,500 Block of ASHBURY ST,San Francisco,94117,B05,21,4513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7704798919759, -122.446959951124)",160873277-AM20 -103010416,B01,10096296,Alarms,10/28/2010,10/28/2010,10/28/2010 09:41:52 PM,10/28/2010 09:42:52 PM,10/28/2010 09:43:11 PM,10/28/2010 09:43:38 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/28/2010 09:46:30 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,,1,CHIEF,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",103010416-B01 -121000052,E02,12033025,Other,04/09/2012,04/08/2012,04/09/2012 05:03:13 AM,04/09/2012 05:05:05 AM,04/09/2012 05:06:29 AM,04/09/2012 05:09:05 AM,04/09/2012 05:11:06 AM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Fire,04/09/2012 05:25:35 AM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",121000052-E02 -160521463,AM02,16020794,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:03:35 PM,02/21/2016 12:05:20 PM,02/21/2016 12:05:44 PM,02/21/2016 12:06:22 PM,02/21/2016 12:17:07 PM,02/21/2016 12:25:35 PM,02/21/2016 12:39:54 PM,Code 2 Transport,02/21/2016 01:01:18 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160521463-AM02 -110530320,55,11017634,Medical Incident,02/22/2011,02/22/2011,02/22/2011 07:41:27 PM,02/22/2011 07:42:09 PM,02/22/2011 07:45:31 PM,04/25/2016 02:05:57 PM,02/22/2011 07:54:42 PM,02/22/2011 08:16:30 PM,02/22/2011 08:20:04 PM,Code 2 Transport,02/22/2011 08:57:19 PM,600 Block of PACIFIC AVE,SF,94133,B01,13,1246,3,3,3,true,,1,MEDIC,1,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",110530320-55 -160774002,65,16030797,Water Rescue,03/17/2016,03/17/2016,03/17/2016 09:25:57 PM,03/17/2016 09:26:41 PM,03/17/2016 09:29:31 PM,03/17/2016 09:29:40 PM,03/17/2016 09:29:40 PM,03/17/2016 10:01:01 PM,03/17/2016 10:48:06 PM,Code 2 Transport,03/17/2016 11:25:36 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Fire,1,MEDIC,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160774002-65 -111170263,E41,11038685,Medical Incident,04/27/2011,04/27/2011,04/27/2011 04:44:28 PM,04/27/2011 04:44:52 PM,04/27/2011 04:48:52 PM,04/27/2011 04:49:45 PM,04/27/2011 04:51:43 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 05:02:10 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,ENGINE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",111170263-E41 -130610125,T08,13020414,Elevator / Escalator Rescue,03/02/2013,03/02/2013,03/02/2013 10:00:09 AM,03/02/2013 10:02:20 AM,03/02/2013 10:03:16 AM,03/02/2013 10:03:45 AM,03/02/2013 10:05:38 AM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Fire,03/02/2013 10:50:05 AM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",130610125-T08 -140740312,KM01,14025121,Medical Incident,03/15/2014,03/15/2014,03/15/2014 05:11:50 PM,03/15/2014 05:11:50 PM,03/15/2014 05:13:51 PM,03/15/2014 05:13:51 PM,03/15/2014 05:20:39 PM,03/15/2014 05:29:46 PM,03/15/2014 06:10:54 PM,Code 2 Transport,03/15/2014 06:33:16 PM,1800 Block of STOCKTON ST,,94133,B01,28,1335,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8027782547729, -122.409586942281)",140740312-KM01 -123520275,E21,12117815,Medical Incident,12/17/2012,12/17/2012,12/17/2012 03:56:33 PM,12/17/2012 03:56:49 PM,12/17/2012 03:57:43 PM,12/17/2012 03:58:55 PM,12/17/2012 03:59:31 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 04:10:23 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7756633772222, -122.440489225868)",123520275-E21 -120190116,B09,12006302,Alarms,01/19/2012,01/19/2012,01/19/2012 09:44:25 AM,01/19/2012 09:45:14 AM,01/19/2012 09:45:52 AM,01/19/2012 09:48:02 AM,01/19/2012 09:54:36 AM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,No Merit,01/19/2012 10:06:52 AM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,false,Alarm,1,CHIEF,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",120190116-B09 -160653028,52,16026065,Medical Incident,03/05/2016,03/05/2016,03/05/2016 07:51:42 PM,03/05/2016 07:52:23 PM,03/05/2016 07:53:24 PM,03/05/2016 07:54:23 PM,03/05/2016 07:57:22 PM,03/05/2016 08:17:14 PM,03/05/2016 08:28:42 PM,Code 2 Transport,03/05/2016 09:00:58 PM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160653028-52 -122130158,E15,12070679,Structure Fire,07/31/2012,07/31/2012,07/31/2012 12:03:37 PM,07/31/2012 12:03:37 PM,07/31/2012 12:03:49 PM,07/31/2012 12:04:45 PM,07/31/2012 12:06:58 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 12:17:19 PM,100 Block of APTOS AVE,SF,94127,B09,15,853,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",122130158-E15 -72000221,B02,7057393,Alarms,07/19/2007,07/19/2007,07/19/2007 12:54:20 PM,07/19/2007 12:54:20 PM,07/19/2007 12:55:00 PM,07/19/2007 12:56:09 PM,07/19/2007 12:58:08 PM,04/25/2016 03:38:31 PM,04/25/2016 03:38:31 PM,Other,07/19/2007 12:58:49 PM,900 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,,1,CHIEF,3,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",072000221-B02 -160371011,64,16014596,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:01:45 AM,02/06/2016 08:02:55 AM,02/06/2016 08:03:15 AM,02/06/2016 08:03:22 AM,02/06/2016 08:10:44 AM,02/06/2016 08:30:10 AM,02/06/2016 08:36:28 AM,Code 3 Transport,02/06/2016 09:42:45 AM,5700 Block of MISSION ST,San Francisco,94112,B09,33,6212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.709762526111, -122.449674980499)",160371011-64 -130740139,58,13024637,Medical Incident,03/15/2013,03/15/2013,03/15/2013 11:04:37 AM,03/15/2013 11:06:38 AM,03/15/2013 11:09:43 AM,03/15/2013 11:09:47 AM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,04/25/2016 01:53:49 PM,1400 Block of MARKET ST,SF,94102,B02,36,3219,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",130740139-58 -160824037,76,16032781,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:56:24 PM,03/22/2016 10:56:54 PM,03/22/2016 10:57:10 PM,03/22/2016 10:57:20 PM,03/22/2016 11:02:45 PM,03/22/2016 11:18:05 PM,03/22/2016 11:27:48 PM,Code 2 Transport,03/23/2016 12:01:22 AM,900 Block of LAGUNA ST,San Francisco,94102,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7799680516117, -122.42690139405)",160824037-76 -120320273,T13,12010654,Medical Incident,02/01/2012,02/01/2012,02/01/2012 05:41:15 PM,02/01/2012 05:42:46 PM,02/01/2012 05:42:57 PM,02/01/2012 05:44:04 PM,02/01/2012 05:47:58 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 06:02:06 PM,500 Block of HOWARD ST,SF,94105,B03,35,2141,3,2,2,false,Potentially Life-Threatening,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",120320273-T13 -111040154,E05,11034452,Medical Incident,04/14/2011,04/14/2011,04/14/2011 12:11:45 PM,04/14/2011 12:12:43 PM,04/14/2011 12:12:55 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/14/2011 12:16:52 PM,FRANKLIN ST/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,3,2,6,Mission,"(37.7740078054814, -122.420698775942)",111040154-E05 -102300145,99,10072356,Medical Incident,08/18/2010,08/18/2010,08/18/2010 11:56:08 AM,08/18/2010 11:58:31 AM,08/18/2010 11:59:56 AM,08/18/2010 12:00:12 PM,08/18/2010 12:03:53 PM,08/18/2010 12:19:05 PM,08/18/2010 12:26:51 PM,Code 2 Transport,08/18/2010 12:56:13 PM,1000 Block of WASHINGTON ST,SF,94108,B01,2,1415,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7946063978175, -122.410294571416)",102300145-99 -130160215,KM12,13005469,Medical Incident,01/16/2013,01/16/2013,01/16/2013 03:17:46 PM,01/16/2013 03:18:24 PM,01/16/2013 03:19:08 PM,01/16/2013 03:19:44 PM,01/16/2013 03:23:35 PM,01/16/2013 03:36:17 PM,01/16/2013 03:49:58 PM,Code 2 Transport,01/16/2013 04:30:16 PM,1400 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,5,Inner Sunset,"(37.7613340585607, -122.464046025734)",130160215-KM12 -112070088,E16,11068304,Medical Incident,07/26/2011,07/26/2011,07/26/2011 08:22:39 AM,07/26/2011 08:23:35 AM,07/26/2011 08:24:04 AM,07/26/2011 08:26:43 AM,07/26/2011 08:27:50 AM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 08:38:26 AM,2200 Block of BEACH ST,SF,94123,B04,16,4316,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8033341125308, -122.446079284998)",112070088-E16 -160472765,57,16019027,Medical Incident,02/16/2016,02/16/2016,02/16/2016 05:09:36 PM,02/16/2016 05:12:11 PM,02/16/2016 05:12:47 PM,02/16/2016 05:20:16 PM,02/16/2016 05:27:42 PM,02/16/2016 05:35:09 PM,02/16/2016 05:46:09 PM,Code 2 Transport,02/16/2016 06:24:09 PM,0 Block of HERNANDEZ AV,San Francisco,94127,B08,39,8644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7454582717714, -122.455968432733)",160472765-57 -120230095,E28,12007723,Structure Fire,01/23/2012,01/23/2012,01/23/2012 08:25:20 AM,01/23/2012 08:25:47 AM,01/23/2012 08:26:33 AM,01/23/2012 08:28:10 AM,01/23/2012 08:29:59 AM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 08:51:47 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,Fire,1,ENGINE,5,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",120230095-E28 -111100299,E06,11036403,Medical Incident,04/20/2011,04/20/2011,04/20/2011 05:08:57 PM,04/20/2011 05:09:47 PM,04/20/2011 05:12:44 PM,04/25/2016 02:05:01 PM,04/20/2011 05:17:38 PM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 05:26:59 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",111100299-E06 -160630341,78,16024944,Medical Incident,03/03/2016,03/02/2016,03/03/2016 04:06:13 AM,03/03/2016 04:06:57 AM,03/03/2016 04:07:18 AM,03/03/2016 04:07:41 AM,03/03/2016 04:12:14 AM,03/03/2016 04:18:06 AM,03/03/2016 04:23:18 AM,Code 2 Transport,03/03/2016 05:25:24 AM,MARKET ST/HYDE ST,San Francisco,94103,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160630341-78 -103310029,E06,10105835,Medical Incident,11/27/2010,11/26/2010,11/27/2010 02:09:37 AM,11/27/2010 02:10:41 AM,11/27/2010 02:11:14 AM,11/27/2010 02:12:07 AM,11/27/2010 02:15:50 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 02:16:28 AM,HAIGHT ST/FILLMORE ST,SF,94117,B05,6,3526,3,3,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7721082581802, -122.430433920263)",103310029-E06 -131710069,T06,13057963,Alarms,06/20/2013,06/19/2013,06/20/2013 07:49:48 AM,06/20/2013 07:51:26 AM,06/20/2013 07:51:42 AM,06/20/2013 07:54:44 AM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/20/2013 08:03:26 AM,200 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,3,2,8,Mission,"(37.7671990407506, -122.424452084295)",131710069-T06 -140400287,E40,14013662,Medical Incident,02/09/2014,02/09/2014,02/09/2014 04:30:38 PM,02/09/2014 04:31:09 PM,02/09/2014 04:31:38 PM,02/09/2014 04:32:49 PM,02/09/2014 04:35:01 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/09/2014 04:41:13 PM,2500 Block of 16TH AVE,SF,94116,B08,40,7357,,E,3,false,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7403956364845, -122.472355896248)",140400287-E40 -140450292,E10,14015405,Medical Incident,02/14/2014,02/14/2014,02/14/2014 06:18:35 PM,02/14/2014 06:20:08 PM,02/14/2014 06:20:45 PM,02/14/2014 06:22:39 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 06:24:45 PM,FULTON ST/MASONIC AV,SF,94117,B05,21,4463,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",140450292-E10 -110350290,E18,11011571,Medical Incident,02/04/2011,02/04/2011,02/04/2011 05:34:15 PM,02/04/2011 05:34:33 PM,02/04/2011 05:35:00 PM,02/04/2011 05:35:16 PM,02/04/2011 05:37:31 PM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Other,02/04/2011 06:01:01 PM,1800 Block of 42ND AVE,SF,94122,B08,18,7633,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.752216982459, -122.501121774898)",110350290-E18 -131220366,E25,13041180,Gas Leak (Natural and LP Gases),05/02/2013,05/02/2013,05/02/2013 06:01:54 PM,05/02/2013 06:02:17 PM,05/02/2013 06:06:09 PM,05/02/2013 06:07:15 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 06:19:47 PM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.730710372177, -122.375579669518)",131220366-E25 -111500003,E31,11049548,Medical Incident,05/30/2011,05/29/2011,05/30/2011 12:08:50 AM,05/30/2011 12:10:08 AM,05/30/2011 12:10:48 AM,05/30/2011 12:11:53 AM,05/30/2011 12:14:33 AM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 12:30:54 AM,300 Block of 3RD AVE,SF,94118,B07,31,7116,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7821205849074, -122.46120423399)",111500003-E31 -131130100,E36,13038024,Medical Incident,04/23/2013,04/23/2013,04/23/2013 09:17:21 AM,04/23/2013 09:24:22 AM,04/23/2013 09:24:46 AM,04/23/2013 09:25:00 AM,04/23/2013 09:30:32 AM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,No Merit,04/23/2013 09:32:27 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",131130100-E36 -130320264,E03,13010991,Medical Incident,02/01/2013,02/01/2013,02/01/2013 04:34:09 PM,02/01/2013 04:34:47 PM,02/01/2013 04:35:12 PM,02/01/2013 04:36:04 PM,02/01/2013 04:39:18 PM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,02/01/2013 04:43:19 PM,MCALLISTER ST/LEAVENWORTH ST,SF,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",130320264-E03 -160143089,74,16005695,Medical Incident,01/14/2016,01/14/2016,01/14/2016 06:39:04 PM,01/14/2016 06:39:46 PM,01/14/2016 06:40:07 PM,01/14/2016 06:40:25 PM,01/14/2016 06:44:51 PM,01/14/2016 06:59:18 PM,01/14/2016 07:03:27 PM,Code 3 Transport,01/14/2016 07:28:25 PM,300 Block of POTRERO AVE,San Francisco,94103,B02,29,2416,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7651394094816, -122.407407963885)",160143089-74 -111480048,RS1,11048976,Alarms,05/28/2011,05/27/2011,05/28/2011 05:14:20 AM,05/28/2011 05:15:23 AM,05/28/2011 05:15:49 AM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,05/28/2011 05:22:33 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7811458612596, -122.409026046516)",111480048-RS1 -120950219,63,12031506,Medical Incident,04/04/2012,04/04/2012,04/04/2012 04:14:15 PM,04/04/2012 04:16:54 PM,04/04/2012 04:17:07 PM,04/04/2012 04:17:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/25/2016 01:59:20 PM,300 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",120950219-63 -160421706,AM12,16016859,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:30:50 PM,02/11/2016 12:32:30 PM,02/11/2016 12:33:06 PM,02/11/2016 12:34:16 PM,02/11/2016 12:40:08 PM,02/11/2016 01:02:56 PM,02/11/2016 01:24:26 PM,Code 2 Transport,02/11/2016 02:22:35 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160421706-AM12 -131000305,E10,13033709,Alarms,04/10/2013,04/10/2013,04/10/2013 05:53:47 PM,04/10/2013 05:55:09 PM,04/10/2013 05:55:25 PM,04/10/2013 05:56:32 PM,04/10/2013 05:59:00 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/10/2013 06:21:50 PM,0 Block of LUPINE AVE,SF,94118,B05,10,4371,3,3,3,true,Alarm,1,ENGINE,2,5,2,Presidio Heights,"(37.7840952881992, -122.449390199224)",131000305-E10 -132380012,B08,13080156,Citizen Assist / Service Call,08/26/2013,08/25/2013,08/26/2013 12:54:39 AM,08/26/2013 12:56:09 AM,08/26/2013 12:56:52 AM,08/26/2013 12:59:34 AM,08/26/2013 01:24:35 AM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Fire,08/26/2013 01:06:01 AM,1500 Block of SLOAT BLVD,SF,94132,B08,19,7552,3,3,3,false,Alarm,1,CHIEF,2,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",132380012-B08 -112670012,E21,11088075,Structure Fire,09/24/2011,09/23/2011,09/24/2011 12:39:03 AM,09/24/2011 12:39:04 AM,09/24/2011 12:39:14 AM,09/24/2011 12:40:41 AM,09/24/2011 12:42:16 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/24/2011 12:42:26 AM,MASONIC AV/OAK ST,SF,94117,B05,21,4465,3,3,3,false,,1,ENGINE,1,5,5,Golden Gate Park,"(37.7720803934485, -122.445716664284)",112670012-E21 -160333692,52,16013192,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:31:00 PM,02/02/2016 11:31:46 PM,02/02/2016 11:33:01 PM,02/02/2016 11:33:11 PM,02/02/2016 11:44:24 PM,02/03/2016 12:07:12 AM,02/03/2016 12:25:23 AM,Code 2 Transport,02/03/2016 01:13:29 AM,200 Block of FONT BLVD,San Francisco,94132,B08,19,8428,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7164364004339, -122.475092478363)",160333692-52 -160211945,KM11,16008399,Medical Incident,01/21/2016,01/21/2016,01/21/2016 01:26:46 PM,01/21/2016 01:28:22 PM,01/21/2016 01:29:14 PM,01/21/2016 01:31:20 PM,01/21/2016 01:36:29 PM,01/21/2016 01:54:33 PM,01/21/2016 01:54:39 PM,Code 2 Transport,01/21/2016 02:41:43 PM,2200 Block of OFARRELL ST,San Francisco,94115,B05,10,4236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",160211945-KM11 -122750156,87,12090713,Medical Incident,10/01/2012,10/01/2012,10/01/2012 11:36:36 AM,10/01/2012 11:37:10 AM,10/01/2012 11:37:18 AM,10/01/2012 11:37:46 AM,10/01/2012 11:48:31 AM,10/01/2012 12:09:21 PM,10/01/2012 12:23:14 PM,Code 2 Transport,10/01/2012 12:52:06 PM,0 Block of MARNE AVE,SF,94127,B08,39,8572,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7396404963064, -122.459051898169)",122750156-87 -121180092,AM04,12039016,Medical Incident,04/27/2012,04/27/2012,04/27/2012 08:14:03 AM,04/27/2012 08:14:29 AM,04/27/2012 08:14:40 AM,04/27/2012 08:15:11 AM,04/27/2012 08:19:55 AM,04/27/2012 08:31:05 AM,04/27/2012 08:44:05 AM,Code 2 Transport,04/27/2012 09:24:20 AM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",121180092-AM04 -160160934,KM09,16006347,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:04:56 AM,01/16/2016 09:04:56 AM,01/16/2016 09:05:21 AM,01/16/2016 09:05:58 AM,01/16/2016 09:15:34 AM,01/16/2016 09:26:32 AM,01/16/2016 09:37:08 AM,Code 2 Transport,01/16/2016 10:17:16 AM,BUCHANAN ST/SACRAMENTO ST,San Francisco,94115,B04,38,3435,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7902520626448, -122.430736822977)",160160934-KM09 -131090340,E01,13036770,Medical Incident,04/19/2013,04/19/2013,04/19/2013 07:12:18 PM,04/19/2013 07:13:16 PM,04/19/2013 07:13:31 PM,04/19/2013 07:14:28 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/19/2013 07:15:38 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",131090340-E01 -160711427,AM10,16028205,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:44:39 AM,03/11/2016 11:44:39 AM,03/11/2016 11:47:40 AM,03/11/2016 11:47:46 AM,03/11/2016 11:57:31 AM,03/11/2016 12:11:46 PM,03/11/2016 12:28:28 PM,Code 2 Transport,03/11/2016 01:15:18 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160711427-AM10 -160471860,KM12,16018931,Traffic Collision,02/16/2016,02/16/2016,02/16/2016 01:21:11 PM,02/16/2016 01:21:11 PM,02/16/2016 01:22:12 PM,02/16/2016 01:23:02 PM,02/16/2016 01:29:56 PM,02/16/2016 01:40:21 PM,02/16/2016 01:48:55 PM,Code 2 Transport,02/16/2016 02:15:06 PM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",160471860-KM12 -132630197,KM10,13089114,Medical Incident,09/20/2013,09/20/2013,09/20/2013 12:02:07 PM,09/20/2013 12:02:07 PM,09/20/2013 12:04:06 PM,09/20/2013 12:04:12 PM,09/20/2013 12:12:21 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Against Medical Advice,09/20/2013 01:04:18 PM,25TH AV/ANZA ST,SF,94121,B07,14,7213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7781658332143, -122.484595235477)",132630197-KM10 -130350333,66,13012108,Medical Incident,02/04/2013,02/04/2013,02/04/2013 05:18:30 PM,02/04/2013 05:20:45 PM,02/04/2013 05:21:03 PM,02/04/2013 05:22:36 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/04/2013 05:22:55 PM,1900 Block of 17TH AVE,SF,94116,B08,40,7374,1,1,2,true,Non Life-threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7515410594631, -122.474071150903)",130350333-66 -131510232,66,13051162,Medical Incident,05/31/2013,05/31/2013,05/31/2013 02:33:56 PM,05/31/2013 02:34:12 PM,05/31/2013 02:36:30 PM,05/31/2013 02:36:56 PM,05/31/2013 02:47:54 PM,05/31/2013 03:02:55 PM,05/31/2013 03:37:15 PM,Code 2 Transport,05/31/2013 04:00:01 PM,0 Block of WEST PORTAL AVE,SF,94127,B08,39,8611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7403329886376, -122.466448582438)",131510232-66 -111210288,E07,11040024,Medical Incident,05/01/2011,05/01/2011,05/01/2011 04:58:05 PM,05/01/2011 04:59:07 PM,05/01/2011 04:59:21 PM,05/01/2011 05:01:41 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 05:08:02 PM,VALENCIA ST/LIBERTY ST,SF,94110,B06,7,5456,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.757701416696, -122.421193864679)",111210288-E07 -111770129,B10,11058335,Structure Fire,06/26/2011,06/26/2011,06/26/2011 10:35:46 AM,06/26/2011 10:36:37 AM,06/26/2011 10:36:54 AM,06/26/2011 10:37:27 AM,06/26/2011 10:43:29 AM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,06/26/2011 10:50:40 AM,400 Block of HOFFMAN AVE,SF,94114,B06,24,5517,3,3,3,false,,1,CHIEF,5,6,8,Noe Valley,"(37.750105701763, -122.440468327667)",111770129-B10 -131880361,E14,13064257,Medical Incident,07/07/2013,07/07/2013,07/07/2013 10:40:38 PM,07/07/2013 10:42:29 PM,07/07/2013 10:43:13 PM,07/07/2013 10:44:29 PM,07/07/2013 10:45:32 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 11:09:50 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",131880361-E14 -122690165,96,12088838,Medical Incident,09/25/2012,09/25/2012,09/25/2012 02:01:23 PM,09/25/2012 02:02:14 PM,09/25/2012 02:02:29 PM,09/25/2012 02:02:43 PM,09/25/2012 02:09:02 PM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Patient Declined Transport,09/25/2012 02:15:17 PM,100 Block of BERTHA LN,SF,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7331435009212, -122.380990356551)",122690165-96 -121300094,88,12043188,Medical Incident,05/09/2012,05/09/2012,05/09/2012 09:30:03 AM,05/09/2012 09:32:11 AM,05/09/2012 09:32:41 AM,04/25/2016 01:58:46 PM,05/09/2012 09:41:28 AM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Gone on Arrival,05/09/2012 09:44:10 AM,2200 Block of 23RD ST,SF,94107,B10,37,2556,2,2,2,false,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7544865703941, -122.402068206398)",121300094-88 -112330222,E33,11076976,Medical Incident,08/21/2011,08/21/2011,08/21/2011 03:00:27 PM,08/21/2011 03:01:09 PM,08/21/2011 03:01:56 PM,08/21/2011 03:03:36 PM,08/21/2011 03:05:32 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 03:30:25 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",112330222-E33 -160280964,55,16011018,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:26:00 AM,01/28/2016 09:28:49 AM,01/28/2016 09:28:57 AM,01/28/2016 09:29:34 AM,01/28/2016 09:51:15 AM,01/28/2016 10:44:57 AM,01/28/2016 10:44:58 AM,Code 2 Transport,01/28/2016 12:18:13 PM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160280964-55 -122640281,55,12087263,Medical Incident,09/20/2012,09/20/2012,09/20/2012 04:38:08 PM,09/20/2012 04:39:39 PM,09/20/2012 04:39:52 PM,09/20/2012 04:40:38 PM,09/20/2012 04:50:36 PM,09/20/2012 05:13:56 PM,09/20/2012 05:40:39 PM,Code 2 Transport,09/20/2012 06:19:05 PM,400 Block of OCEAN AVE,SF,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7230519347083, -122.446013047919)",122640281-55 -133560178,T15,13121011,Alarms,12/22/2013,12/22/2013,12/22/2013 11:48:17 AM,12/22/2013 11:49:12 AM,12/22/2013 11:49:19 AM,12/22/2013 11:50:24 AM,12/22/2013 11:52:39 AM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 12:07:16 PM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",133560178-T15 -132410211,T18,13081310,Alarms,08/29/2013,08/29/2013,08/29/2013 02:33:33 PM,08/29/2013 02:35:04 PM,08/29/2013 02:35:28 PM,08/29/2013 02:36:11 PM,08/29/2013 02:40:09 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/29/2013 02:49:11 PM,2000 Block of 37TH AVE,SF,94116,B08,18,757,3,3,3,false,Alarm,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7487247711275, -122.495504020186)",132410211-T18 -160430125,70,16017102,Medical Incident,02/12/2016,02/11/2016,02/12/2016 01:01:45 AM,02/12/2016 01:02:15 AM,02/12/2016 01:03:14 AM,02/12/2016 01:03:21 AM,02/12/2016 01:08:04 AM,02/12/2016 01:21:21 AM,02/12/2016 01:24:57 AM,Code 2 Transport,02/12/2016 02:28:16 AM,900 Block of HAMPSHIRE ST,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7569109782313, -122.407609182364)",160430125-70 -160780208,AM18,16030868,Medical Incident,03/18/2016,03/17/2016,03/18/2016 01:44:16 AM,03/18/2016 01:46:06 AM,03/18/2016 01:47:34 AM,03/18/2016 01:49:20 AM,03/18/2016 02:03:58 AM,03/18/2016 02:04:00 AM,03/18/2016 02:24:38 AM,Code 2 Transport,03/18/2016 03:15:07 AM,1200 Block of PLYMOUTH AVE,San Francisco,94112,B09,15,8474,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7246916380621, -122.456361161182)",160780208-AM18 -160121127,50,16004725,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:05:42 AM,01/12/2016 10:06:04 AM,01/12/2016 10:06:18 AM,01/12/2016 10:06:34 AM,01/12/2016 10:17:50 AM,01/12/2016 10:31:50 AM,01/12/2016 10:45:23 AM,Code 2 Transport,01/12/2016 11:16:08 AM,800 Block of BRANNAN ST,San Francisco,94103,B03,29,2325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7722126507146, -122.404363751305)",160121127-50 -103560294,E42,10114358,Medical Incident,12/22/2010,12/22/2010,12/22/2010 06:23:54 PM,12/22/2010 06:24:48 PM,12/22/2010 06:27:33 PM,12/22/2010 06:28:34 PM,12/22/2010 06:30:23 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/22/2010 06:47:29 PM,200 Block of SWEENY ST,SF,94134,B10,42,6365,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7323246800434, -122.410212076026)",103560294-E42 -111380078,RS2,11045796,Medical Incident,05/18/2011,05/18/2011,05/18/2011 08:36:55 AM,05/18/2011 08:38:20 AM,05/18/2011 08:38:50 AM,05/18/2011 08:40:24 AM,05/18/2011 08:41:32 AM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 08:45:58 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,,1,RESCUE SQUAD,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",111380078-RS2 -121190031,E41,12039353,Medical Incident,04/28/2012,04/27/2012,04/28/2012 01:53:18 AM,04/28/2012 01:53:54 AM,04/28/2012 01:54:37 AM,04/28/2012 01:56:09 AM,04/28/2012 01:57:07 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 02:09:50 AM,CALIFORNIA ST/HYDE ST,SF,94109,B01,41,1541,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",121190031-E41 -130680195,81,13022681,Medical Incident,03/09/2013,03/09/2013,03/09/2013 12:45:56 PM,03/09/2013 12:46:27 PM,03/09/2013 12:46:36 PM,03/09/2013 12:46:50 PM,03/09/2013 12:52:45 PM,03/09/2013 01:07:05 PM,03/09/2013 01:15:40 PM,Code 3 Transport,03/09/2013 02:22:26 PM,1400 Block of REVERE AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7301191034184, -122.387315155313)",130680195-81 -122040327,B10,12067935,Medical Incident,07/22/2012,07/22/2012,07/22/2012 06:55:22 PM,07/22/2012 06:56:23 PM,07/22/2012 06:56:39 PM,07/22/2012 06:58:01 PM,07/22/2012 07:05:17 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/22/2012 07:15:32 PM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,A,A,2,false,Potentially Life-Threatening,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.730710372177, -122.375579669518)",122040327-B10 -113010412,63,11100027,Structure Fire,10/28/2011,10/28/2011,10/28/2011 11:11:20 PM,10/28/2011 11:12:33 PM,10/28/2011 11:12:54 PM,10/28/2011 11:15:23 PM,10/28/2011 11:15:29 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/28/2011 11:17:44 PM,800 Block of 14TH ST,SF,94114,B05,6,5212,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7675070758139, -122.43173994227)",113010412-63 -160912577,KM13,16036154,Medical Incident,03/31/2016,03/31/2016,03/31/2016 04:46:28 PM,03/31/2016 04:46:28 PM,03/31/2016 04:46:44 PM,03/31/2016 04:47:08 PM,03/31/2016 04:53:42 PM,03/31/2016 05:19:31 PM,03/31/2016 05:34:04 PM,Code 2 Transport,03/31/2016 05:47:57 PM,EDDY ST/LAGUNA ST,San Francisco,94102,B02,5,3366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",160912577-KM13 -130180043,E07,13006025,Medical Incident,01/18/2013,01/17/2013,01/18/2013 02:49:53 AM,01/18/2013 02:50:52 AM,01/18/2013 02:50:59 AM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,Other,01/18/2013 02:52:52 AM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",130180043-E07 -160093407,89,16003817,Medical Incident,01/09/2016,01/09/2016,01/09/2016 09:35:16 PM,01/09/2016 09:36:43 PM,01/09/2016 09:57:34 PM,01/09/2016 09:57:38 PM,01/09/2016 10:21:47 PM,01/09/2016 10:30:43 PM,01/09/2016 10:46:41 PM,Code 2 Transport,01/09/2016 11:07:36 PM,0 Block of MISSION ST,San Francisco,94105,B03,35,2131,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7935385958356, -122.392889145798)",160093407-89 -121850334,87,12061749,Medical Incident,07/03/2012,07/03/2012,07/03/2012 07:42:38 PM,07/03/2012 07:45:15 PM,07/03/2012 07:46:07 PM,07/03/2012 07:46:12 PM,07/03/2012 08:17:53 PM,07/03/2012 08:53:28 PM,07/03/2012 09:00:20 PM,Code 2 Transport,07/03/2012 09:33:34 PM,1600 Block of 10TH AVE,SF,94122,B08,22,7335,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7574627756341, -122.466996545022)",121850334-87 -130320313,E14,13011034,Medical Incident,02/01/2013,02/01/2013,02/01/2013 06:54:10 PM,02/01/2013 06:55:06 PM,02/01/2013 06:55:33 PM,02/01/2013 06:56:35 PM,02/01/2013 07:02:39 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/01/2013 07:14:13 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",130320313-E14 -131540222,AM04,13052182,Medical Incident,06/03/2013,06/03/2013,06/03/2013 01:45:36 PM,06/03/2013 01:47:23 PM,06/03/2013 01:48:19 PM,06/03/2013 01:49:02 PM,06/03/2013 01:53:41 PM,06/03/2013 02:24:21 PM,04/25/2016 01:52:28 PM,Code 2 Transport,06/03/2013 03:04:01 PM,1100 Block of 9TH AVE,SF,94122,B08,22,7333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",131540222-AM04 -121960212,KM01,12065216,Medical Incident,07/14/2012,07/14/2012,07/14/2012 02:51:01 PM,07/14/2012 02:53:20 PM,07/14/2012 03:01:06 PM,07/14/2012 03:01:45 PM,07/14/2012 03:07:48 PM,07/14/2012 03:29:35 PM,04/25/2016 01:57:43 PM,Code 2 Transport,07/14/2012 04:12:46 PM,2700 Block of LOMBARD ST,SF,94123,B04,16,4326,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7985968788664, -122.446649276894)",121960212-KM01 -140820200,E43,14027712,Electrical Hazard,03/23/2014,03/23/2014,03/23/2014 03:12:06 PM,03/23/2014 03:13:16 PM,03/23/2014 03:13:27 PM,03/23/2014 03:14:56 PM,03/23/2014 03:16:47 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Fire,03/23/2014 03:17:29 PM,1600 Block of GENEVA AVE,SAN FRANCISCO,94112,B09,43,6172,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7115816415732, -122.427965645504)",140820200-E43 -132770455,54,13094309,Medical Incident,10/04/2013,10/04/2013,10/04/2013 09:59:37 PM,10/04/2013 10:01:07 PM,10/04/2013 10:01:54 PM,10/04/2013 10:02:10 PM,10/04/2013 10:13:02 PM,10/04/2013 10:29:16 PM,10/04/2013 10:43:13 PM,Code 2 Transport,10/04/2013 11:12:17 PM,500 Block of BRYANT ST,SF,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7806714111875, -122.39656521118)",132770455-54 -160443920,53,16017909,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:15:27 PM,02/13/2016 11:15:27 PM,02/13/2016 11:15:41 PM,02/13/2016 11:16:36 PM,02/13/2016 11:24:45 PM,02/13/2016 11:32:02 PM,02/13/2016 11:43:36 PM,Code 2 Transport,02/14/2016 12:20:10 AM,GOUGH ST/FILBERT ST,San Francisco,94123,B04,16,3245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7990666836169, -122.427457297641)",160443920-53 -160423010,58,16016977,Traffic Collision,02/11/2016,02/11/2016,02/11/2016 06:07:02 PM,02/11/2016 06:07:02 PM,02/11/2016 06:07:46 PM,02/11/2016 06:08:04 PM,02/11/2016 06:14:42 PM,02/11/2016 06:43:46 PM,02/11/2016 06:50:03 PM,Code 2 Transport,02/11/2016 07:53:57 PM,ALABAMA ST/CESAR CHAVEZ ST,San Francisco,94110,B06,9,5615,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7483167190892, -122.410546068765)",160423010-58 -103380135,E06,10108094,Medical Incident,12/04/2010,12/04/2010,12/04/2010 09:35:25 AM,12/04/2010 09:36:52 AM,12/04/2010 09:37:31 AM,12/04/2010 09:38:20 AM,12/04/2010 09:39:39 AM,04/25/2016 02:07:18 PM,04/25/2016 02:07:18 PM,Other,12/04/2010 09:51:43 AM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,,1,ENGINE,1,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",103380135-E06 -110480153,T17,11015845,Medical Incident,02/17/2011,02/17/2011,02/17/2011 11:31:17 AM,02/17/2011 11:31:51 AM,02/17/2011 11:32:20 AM,02/17/2011 11:33:38 AM,02/17/2011 11:36:33 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 11:44:55 AM,REVERE AV/3RD ST,SF,94124,B10,17,6514,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7324319090354, -122.391521351669)",110480153-T17 -113610185,KM01,11119954,Medical Incident,12/27/2011,12/27/2011,12/27/2011 02:00:27 PM,12/27/2011 02:02:21 PM,12/27/2011 02:03:15 PM,12/27/2011 02:03:48 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Patient Declined Transport,12/27/2011 02:11:32 PM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",113610185-KM01 -121130317,E07,12037639,Citizen Assist / Service Call,04/22/2012,04/22/2012,04/22/2012 09:11:34 PM,04/22/2012 09:13:18 PM,04/22/2012 09:13:55 PM,04/22/2012 09:15:52 PM,04/22/2012 09:17:22 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/22/2012 09:31:05 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",121130317-E07 -160403248,63,16016183,Medical Incident,02/09/2016,02/09/2016,02/09/2016 07:26:54 PM,02/09/2016 07:27:33 PM,02/09/2016 07:27:48 PM,02/09/2016 07:27:57 PM,02/09/2016 07:32:21 PM,02/09/2016 07:43:47 PM,02/09/2016 07:56:14 PM,Code 2 Transport,02/09/2016 08:32:19 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",160403248-63 -121930356,E43,12064391,Medical Incident,07/11/2012,07/11/2012,07/11/2012 10:46:48 PM,07/11/2012 10:48:25 PM,07/11/2012 10:48:40 PM,07/11/2012 10:50:07 PM,07/11/2012 10:53:33 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 11:00:00 PM,500 Block of CARTER ST,SF,94134,B09,43,6245,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",121930356-E43 -122010055,54,12066712,Medical Incident,07/19/2012,07/18/2012,07/19/2012 06:39:32 AM,07/19/2012 06:40:08 AM,07/19/2012 06:40:23 AM,07/19/2012 06:40:29 AM,07/19/2012 06:43:06 AM,07/19/2012 06:54:11 AM,07/19/2012 07:04:03 AM,Code 2 Transport,07/19/2012 07:31:16 AM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",122010055-54 -160511444,KM04,16020450,Medical Incident,02/20/2016,02/20/2016,02/20/2016 12:08:25 PM,02/20/2016 12:09:03 PM,02/20/2016 12:09:29 PM,02/20/2016 12:10:14 PM,02/20/2016 12:19:22 PM,02/20/2016 12:37:40 PM,02/20/2016 12:56:33 PM,Code 2 Transport,02/20/2016 01:44:35 PM,0 Block of HAWTHORNE ST,San Francisco,94105,B03,1,2177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",160511444-KM04 -133400104,87,13115173,Medical Incident,12/06/2013,12/06/2013,12/06/2013 08:58:27 AM,12/06/2013 08:58:51 AM,12/06/2013 09:00:17 AM,12/06/2013 09:00:49 AM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 09:16:53 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",133400104-87 -121660029,E13,12054936,Traffic Collision,06/14/2012,06/13/2012,06/14/2012 02:22:18 AM,06/14/2012 02:25:24 AM,06/14/2012 02:26:02 AM,06/14/2012 02:29:22 AM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Other,06/14/2012 02:36:31 AM,0 Block of FREMONT ST,SF,94105,B03,35,2116,2,2,2,true,Non Life-threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",121660029-E13 -111010165,T10,11033504,Citizen Assist / Service Call,04/11/2011,04/11/2011,04/11/2011 12:14:39 PM,04/11/2011 12:17:32 PM,04/11/2011 12:17:42 PM,04/11/2011 12:18:45 PM,04/11/2011 12:21:57 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/11/2011 12:59:43 PM,0 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,false,,1,TRUCK,3,7,2,Presidio Heights,"(37.7848461901191, -122.4580614633)",111010165-T10 -120660053,AP,12021721,Other,03/06/2012,03/05/2012,03/06/2012 07:08:06 AM,03/06/2012 07:08:07 AM,03/06/2012 07:08:07 AM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Fire,03/06/2012 07:08:19 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120660053-AP -122570245,E18,12085008,Traffic Collision,09/13/2012,09/13/2012,09/13/2012 05:01:22 PM,09/13/2012 05:02:32 PM,09/13/2012 05:02:58 PM,09/13/2012 05:03:49 PM,09/13/2012 05:06:22 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/13/2012 05:29:53 PM,2300 Block of SUNSET BLVD,SF,94116,B08,18,7555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7431521718474, -122.494650777359)",122570245-E18 -160093081,88,16003768,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:32:46 PM,01/09/2016 07:35:24 PM,01/09/2016 07:37:24 PM,01/09/2016 07:37:40 PM,01/09/2016 07:54:03 PM,01/09/2016 08:02:31 PM,01/09/2016 08:14:53 PM,Code 2 Transport,01/09/2016 08:53:48 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160093081-88 -160452240,KM08,16018187,Medical Incident,02/14/2016,02/14/2016,02/14/2016 03:58:05 PM,02/14/2016 04:03:28 PM,02/14/2016 04:03:40 PM,02/14/2016 04:04:52 PM,02/14/2016 04:21:44 PM,02/14/2016 04:41:50 PM,02/14/2016 05:12:06 PM,Code 2 Transport,02/14/2016 05:29:52 PM,JONES ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",160452240-KM08 -160243494,60,16009712,Medical Incident,01/24/2016,01/24/2016,01/24/2016 10:31:34 PM,01/24/2016 10:34:20 PM,01/24/2016 10:34:34 PM,01/24/2016 10:34:48 PM,01/24/2016 10:46:36 PM,01/24/2016 11:13:26 PM,01/24/2016 11:23:37 PM,Code 2 Transport,01/24/2016 11:52:29 PM,1900 Block of PALOU AVE,San Francisco,94124,B10,42,6431,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7376407906904, -122.397487086449)",160243494-60 -122470112,86,12081653,Structure Fire,09/03/2012,09/03/2012,09/03/2012 11:03:37 AM,09/03/2012 11:06:52 AM,09/03/2012 11:07:25 AM,09/03/2012 11:08:46 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 11:13:12 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,true,Fire,1,MEDIC,9,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",122470112-86 -122430084,66,12080280,Medical Incident,08/30/2012,08/30/2012,08/30/2012 09:16:43 AM,08/30/2012 09:18:23 AM,08/30/2012 09:19:08 AM,08/30/2012 09:19:36 AM,08/30/2012 09:34:09 AM,08/30/2012 09:42:19 AM,08/30/2012 09:53:22 AM,Code 2 Transport,08/30/2012 10:28:15 AM,6TH ST/MISSION ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",122430084-66 -102430052,81,10076537,Medical Incident,08/31/2010,08/30/2010,08/31/2010 04:34:34 AM,08/31/2010 04:35:27 AM,08/31/2010 04:37:59 AM,08/31/2010 04:38:02 AM,08/31/2010 04:46:27 AM,08/31/2010 05:14:16 AM,08/31/2010 05:23:44 AM,Code 2 Transport,08/31/2010 05:58:31 AM,GOLDEN GATE AV/LEAVENWORTH ST,SF,94102,B02,1,1546,3,E,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",102430052-81 -122660013,T16,12087733,Alarms,09/22/2012,09/21/2012,09/22/2012 12:27:45 AM,09/22/2012 12:29:33 AM,09/22/2012 12:30:08 AM,09/22/2012 12:31:40 AM,09/22/2012 12:33:38 AM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 12:40:11 AM,2700 Block of GREENWICH ST,SF,94123,B04,16,4313,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.7978488000159, -122.444972846363)",122660013-T16 -120840058,KM07,12027799,Medical Incident,03/24/2012,03/23/2012,03/24/2012 03:46:01 AM,03/24/2012 03:46:20 AM,03/24/2012 03:47:33 AM,03/24/2012 03:48:21 AM,03/24/2012 03:51:16 AM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Patient Declined Transport,03/24/2012 04:11:25 AM,3000 Block of FILLMORE ST,SF,94123,B04,16,3552,3,3,3,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.797546363893, -122.435652367542)",120840058-KM07 -160412531,KM03,16016530,Medical Incident,02/10/2016,02/10/2016,02/10/2016 04:04:54 PM,02/10/2016 04:06:22 PM,02/10/2016 04:06:54 PM,02/10/2016 04:08:40 PM,02/10/2016 04:18:09 PM,02/10/2016 04:46:27 PM,02/10/2016 05:08:06 PM,Code 2 Transport,02/10/2016 06:07:41 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160412531-KM03 -113070078,T03,11101905,Medical Incident,11/03/2011,11/03/2011,11/03/2011 08:18:23 AM,11/03/2011 08:19:52 AM,11/03/2011 08:20:01 AM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/03/2011 08:20:55 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",113070078-T03 -132090030,77,13070562,Medical Incident,07/28/2013,07/27/2013,07/28/2013 01:11:38 AM,07/28/2013 01:12:44 AM,07/28/2013 01:15:00 AM,04/25/2016 01:51:36 PM,07/28/2013 01:18:10 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Code 3 Transport,07/28/2013 02:18:25 AM,600 Block of ALABAMA ST,SF,94110,B02,7,5426,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7610105720239, -122.411919466827)",132090030-77 -112470382,59,11081620,Medical Incident,09/04/2011,09/04/2011,09/04/2011 11:12:16 PM,09/04/2011 11:13:17 PM,09/04/2011 11:13:38 PM,09/04/2011 11:13:55 PM,09/04/2011 11:20:46 PM,09/04/2011 11:35:41 PM,09/04/2011 11:50:47 PM,Code 2 Transport,09/05/2011 12:07:53 AM,100 Block of WILSON ST,SF,94112,B09,33,8364,3,3,3,true,,1,MEDIC,2,9,11,Outer Mission,"(37.708532050649, -122.460226548629)",112470382-59 -160461031,88,16018452,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:47:49 AM,02/15/2016 09:51:03 AM,02/15/2016 09:52:06 AM,02/15/2016 09:55:49 AM,02/15/2016 10:10:31 AM,02/15/2016 10:34:06 AM,02/15/2016 10:44:28 AM,Code 2 Transport,02/15/2016 11:34:52 AM,0 Block of CONNECTICUT ST,San Francisco,94107,B03,29,2425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,10,Mission Bay,"(37.7657165510162, -122.397869370472)",160461031-88 -102830139,RC1,10090023,Medical Incident,10/10/2010,10/10/2010,10/10/2010 11:03:07 AM,10/10/2010 11:04:42 AM,10/10/2010 11:04:54 AM,10/10/2010 11:07:04 AM,10/10/2010 11:10:14 AM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 11:10:40 AM,0 Block of 7TH ST,SF,94103,B02,1,2315,E,E,3,true,,1,RESCUE CAPTAIN,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",102830139-RC1 -120350301,E03,12011734,Medical Incident,02/04/2012,02/04/2012,02/04/2012 06:25:49 PM,02/04/2012 06:28:12 PM,02/04/2012 06:28:45 PM,04/25/2016 02:00:17 PM,02/04/2012 06:30:13 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Other,02/04/2012 07:07:00 PM,1000 Block of POST ST,SF,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",120350301-E03 -123150301,E38,12104939,Structure Fire,11/10/2012,11/10/2012,11/10/2012 06:54:27 PM,11/10/2012 06:54:27 PM,11/10/2012 06:54:32 PM,11/10/2012 06:55:20 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 06:56:13 PM,GOUGH ST/CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7899518840675, -122.42561605443)",123150301-E38 -102380360,RS1,10075208,Structure Fire,08/26/2010,08/26/2010,08/26/2010 09:08:14 PM,08/26/2010 09:11:03 PM,08/26/2010 09:11:15 PM,08/26/2010 09:12:26 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 09:22:21 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,,1,RESCUE SQUAD,11,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",102380360-RS1 -123180080,E19,12105688,Medical Incident,11/13/2012,11/13/2012,11/13/2012 08:21:02 AM,11/13/2012 08:24:23 AM,11/13/2012 08:25:26 AM,11/13/2012 08:26:18 AM,11/13/2012 08:29:17 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 08:47:08 AM,100 Block of VALE AVE,SF,94132,B08,19,7464,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7348426988857, -122.484170400596)",123180080-E19 -121130214,E15,12037545,Medical Incident,04/22/2012,04/22/2012,04/22/2012 03:39:35 PM,04/22/2012 03:42:01 PM,04/22/2012 03:42:29 PM,04/22/2012 03:43:55 PM,04/22/2012 03:46:59 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 03:48:02 PM,0 Block of NORTON ST,SF,94112,B09,43,6117,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7250514707571, -122.435709128534)",121130214-E15 -132780434,54,13094725,Medical Incident,10/05/2013,10/05/2013,10/05/2013 11:46:19 PM,10/05/2013 11:48:22 PM,10/05/2013 11:48:43 PM,10/05/2013 11:49:11 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 11:58:02 PM,5100 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7458165668766, -122.44007828523)",132780434-54 -160203109,84,16008113,Medical Incident,01/20/2016,01/20/2016,01/20/2016 06:30:39 PM,01/20/2016 06:30:39 PM,01/20/2016 06:31:15 PM,01/20/2016 06:33:16 PM,01/20/2016 06:42:20 PM,01/20/2016 06:57:41 PM,01/20/2016 07:09:23 PM,Code 2 Transport,01/20/2016 07:34:06 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160203109-84 -160483392,72,16019479,Medical Incident,02/17/2016,02/17/2016,02/17/2016 07:13:40 PM,02/17/2016 07:16:21 PM,02/17/2016 07:17:15 PM,02/17/2016 07:17:33 PM,02/17/2016 07:28:54 PM,02/17/2016 07:50:17 PM,02/17/2016 08:11:55 PM,Code 2 Transport,02/17/2016 08:40:27 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160483392-72 -102530100,E22,10079868,Alarms,09/10/2010,09/10/2010,09/10/2010 08:37:32 AM,09/10/2010 08:38:32 AM,09/10/2010 08:38:59 AM,09/10/2010 08:40:05 AM,09/10/2010 08:45:20 AM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/10/2010 08:58:46 AM,800 Block of LA PLAYA,SF,94121,B07,34,7311,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7723244294895, -122.510034921211)",102530100-E22 -132930155,E01,13099688,Alarms,10/20/2013,10/20/2013,10/20/2013 12:16:13 PM,10/20/2013 12:17:33 PM,10/20/2013 12:17:41 PM,10/20/2013 12:18:48 PM,10/20/2013 12:20:14 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/20/2013 12:22:58 PM,0 Block of 5TH ST,SF,94103,B03,1,2247,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7832636870331, -122.407051190493)",132930155-E01 -160521565,62,16020807,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:32:49 PM,02/21/2016 12:33:07 PM,02/21/2016 12:34:05 PM,02/21/2016 12:34:28 PM,02/21/2016 12:40:14 PM,02/21/2016 01:02:18 PM,02/21/2016 01:31:22 PM,Code 2 Transport,02/21/2016 01:58:49 PM,700 Block of GIRARD ST,San Francisco,94134,B10,44,6326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7231572736013, -122.402920961359)",160521565-62 -122570043,E06,12084840,Medical Incident,09/13/2012,09/12/2012,09/13/2012 06:49:03 AM,09/13/2012 06:49:32 AM,09/13/2012 06:49:55 AM,09/13/2012 06:52:53 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/13/2012 06:54:23 AM,4300 Block of 17TH ST,SF,94114,B05,6,5254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7621597999525, -122.441543331544)",122570043-E06 -120870269,63,12028956,Medical Incident,03/27/2012,03/27/2012,03/27/2012 06:26:34 PM,03/27/2012 06:29:53 PM,03/27/2012 06:30:02 PM,03/27/2012 06:30:10 PM,03/27/2012 06:43:37 PM,03/27/2012 06:54:34 PM,03/27/2012 07:14:01 PM,Code 2 Transport,03/27/2012 07:40:31 PM,100 Block of DAKOTA ST,SF,94107,B10,37,2614,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",120870269-63 -110350182,E13,11011495,Medical Incident,02/04/2011,02/04/2011,02/04/2011 12:03:47 PM,02/04/2011 12:04:37 PM,02/04/2011 12:04:51 PM,02/04/2011 12:05:53 PM,02/04/2011 12:07:30 PM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Unable to Locate,02/04/2011 12:13:38 PM,500 Block of MARKET ST,SF,94104,B01,13,1164,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7905865694353, -122.399877480803)",110350182-E13 -120410027,86,12013525,Medical Incident,02/10/2012,02/09/2012,02/10/2012 02:01:45 AM,02/10/2012 02:03:30 AM,02/10/2012 02:03:47 AM,02/10/2012 02:03:56 AM,02/10/2012 02:09:20 AM,02/10/2012 02:19:01 AM,02/10/2012 02:39:29 AM,Code 2 Transport,02/10/2012 03:26:16 AM,1000 Block of KEARNY ST,SF,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7977714997338, -122.4055247968)",120410027-86 -102700236,E03,10085693,Medical Incident,09/27/2010,09/27/2010,09/27/2010 02:55:48 PM,09/27/2010 02:56:27 PM,09/27/2010 02:56:50 PM,09/27/2010 02:57:05 PM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,Other,09/27/2010 02:59:12 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",102700236-E03 -160302207,86,16011822,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:28:47 PM,01/30/2016 02:29:12 PM,01/30/2016 02:29:18 PM,01/30/2016 02:29:29 PM,01/30/2016 02:35:35 PM,01/30/2016 02:49:44 PM,01/30/2016 02:54:32 PM,Code 2 Transport,01/30/2016 03:51:17 PM,300 Block of 29TH ST,San Francisco,94131,B06,11,5563,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7435777003963, -122.427771265723)",160302207-86 -131890159,E08,13064403,Medical Incident,07/08/2013,07/08/2013,07/08/2013 12:18:03 PM,07/08/2013 12:18:41 PM,07/08/2013 12:19:21 PM,07/08/2013 12:20:17 PM,07/08/2013 12:24:20 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/08/2013 12:32:08 PM,900 Block of BRYANT ST,SF,94103,B03,8,2311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7729736182707, -122.406500466067)",131890159-E08 -102890191,E14,10092182,Medical Incident,10/16/2010,10/16/2010,10/16/2010 12:25:09 PM,10/16/2010 12:26:09 PM,10/16/2010 12:26:22 PM,10/16/2010 12:27:06 PM,10/16/2010 12:28:23 PM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/16/2010 12:38:43 PM,500 Block of 28TH AVE,SF,94121,B07,14,7226,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7789805573402, -122.487944517456)",102890191-E14 -160840173,72,16033214,Medical Incident,03/24/2016,03/23/2016,03/24/2016 01:48:51 AM,03/24/2016 01:48:51 AM,03/24/2016 01:48:55 AM,03/24/2016 01:49:14 AM,03/24/2016 01:52:29 AM,03/24/2016 02:08:44 AM,03/24/2016 02:13:53 AM,Code 2 Transport,03/24/2016 03:06:24 AM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",160840173-72 -140070308,AM08,14002597,Medical Incident,01/07/2014,01/07/2014,01/07/2014 07:01:55 PM,01/07/2014 07:03:58 PM,01/07/2014 07:05:14 PM,01/07/2014 07:05:44 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 07:17:30 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",140070308-AM08 -160242551,62,16009609,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:21:50 PM,01/24/2016 05:22:32 PM,01/24/2016 05:23:04 PM,01/24/2016 05:23:16 PM,01/24/2016 05:37:28 PM,01/24/2016 06:03:57 PM,01/24/2016 06:20:27 PM,Code 2 Transport,01/24/2016 07:08:12 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160242551-62 -103430182,T03,10109837,Elevator / Escalator Rescue,12/09/2010,12/09/2010,12/09/2010 11:13:11 AM,12/09/2010 11:14:40 AM,12/09/2010 11:16:14 AM,12/09/2010 11:17:38 AM,12/09/2010 11:22:03 AM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 11:31:02 AM,1300 Block of LARKIN ST,SF,94109,B04,41,1635,3,3,3,false,,1,TRUCK,2,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",103430182-T03 -160853631,63,16033960,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:51:59 PM,03/25/2016 08:53:34 PM,03/25/2016 08:53:46 PM,03/25/2016 08:54:42 PM,03/25/2016 09:02:03 PM,03/25/2016 09:10:57 PM,03/25/2016 09:39:39 PM,Code 2 Transport,03/25/2016 10:17:21 PM,24TH ST/NOE ST,San Francisco,94114,B06,11,5522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7514371592427, -122.431876685859)",160853631-63 -160153275,68,16006124,Medical Incident,01/15/2016,01/15/2016,01/15/2016 07:06:22 PM,01/15/2016 07:08:07 PM,01/15/2016 07:08:54 PM,01/15/2016 07:09:00 PM,01/15/2016 07:13:00 PM,01/15/2016 07:28:47 PM,01/15/2016 07:36:23 PM,Code 3 Transport,01/15/2016 08:20:19 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160153275-68 -112460348,91,11081266,Medical Incident,09/03/2011,09/03/2011,09/03/2011 09:39:39 PM,09/03/2011 09:39:39 PM,09/03/2011 09:39:39 PM,09/03/2011 09:40:52 PM,09/03/2011 09:44:44 PM,09/03/2011 09:54:16 PM,09/03/2011 10:12:22 PM,Code 2 Transport,09/03/2011 10:32:09 PM,MASON ST/EDDY ST,SF,94102,B03,1,1366,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",112460348-91 -131460158,B01,13049490,Water Rescue,05/26/2013,05/26/2013,05/26/2013 10:20:31 AM,05/26/2013 10:21:32 AM,05/26/2013 10:22:01 AM,05/26/2013 10:23:32 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Fire,05/26/2013 10:25:34 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,CHIEF,10,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",131460158-B01 -130280041,82,13009492,Medical Incident,01/28/2013,01/27/2013,01/28/2013 04:36:26 AM,01/28/2013 04:36:40 AM,01/28/2013 04:37:43 AM,01/28/2013 04:37:58 AM,01/28/2013 04:48:44 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Patient Declined Transport,01/28/2013 05:18:32 AM,600 Block of EXCELSIOR AVE,SF,94112,B09,43,6155,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7237257418198, -122.42849085299)",130280041-82 -110340174,E41,11011157,Structure Fire,02/03/2011,02/03/2011,02/03/2011 11:57:06 AM,02/03/2011 12:00:25 PM,02/03/2011 12:00:41 PM,02/03/2011 12:01:58 PM,02/03/2011 12:06:01 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,02/03/2011 12:06:04 PM,ELLIS ST/JONES ST,SF,94102,B03,3,1461,3,3,3,false,,1,ENGINE,6,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",110340174-E41 -160562399,KM11,16022444,Medical Incident,02/25/2016,02/25/2016,02/25/2016 03:08:08 PM,02/25/2016 03:08:08 PM,02/25/2016 03:09:03 PM,02/25/2016 03:09:30 PM,02/25/2016 03:49:52 PM,02/25/2016 04:14:47 PM,02/25/2016 04:15:00 PM,Code 2 Transport,02/25/2016 04:51:26 PM,2500 Block of SUTTER ST,San Francisco,94115,B05,10,4262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Japantown,"(37.7848770596387, -122.442348914658)",160562399-KM11 -133360046,E41,13113777,Medical Incident,12/02/2013,12/01/2013,12/02/2013 06:49:43 AM,12/02/2013 06:51:12 AM,12/02/2013 06:52:15 AM,12/02/2013 06:54:03 AM,12/02/2013 06:56:02 AM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/02/2013 07:01:27 AM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",133360046-E41 -103120076,RC3,10099970,Medical Incident,11/08/2010,11/08/2010,11/08/2010 08:00:40 AM,11/08/2010 08:01:39 AM,11/08/2010 08:02:21 AM,04/25/2016 02:07:42 PM,11/08/2010 08:07:52 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/08/2010 08:20:22 AM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7530339738059, -122.418588598473)",103120076-RC3 -121410192,E02,12046852,Medical Incident,05/20/2012,05/20/2012,05/20/2012 12:39:39 PM,05/20/2012 12:42:17 PM,05/20/2012 12:42:34 PM,05/20/2012 12:43:49 PM,05/20/2012 12:45:54 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 12:59:40 PM,900 Block of GRANT AVE,SF,94108,B01,2,1312,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7955932512084, -122.406495596732)",121410192-E02 -110890369,66,11029555,Medical Incident,03/30/2011,03/30/2011,03/30/2011 09:08:26 PM,03/30/2011 09:08:45 PM,03/30/2011 09:08:55 PM,03/30/2011 09:09:20 PM,03/30/2011 09:12:27 PM,03/30/2011 09:26:07 PM,03/30/2011 09:47:25 PM,Code 2 Transport,03/30/2011 10:12:50 PM,SACRAMENTO ST/POLK ST,SF,94109,B04,41,3123,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7914958541783, -122.420873185108)",110890369-66 -120210385,87,12007299,Medical Incident,01/21/2012,01/21/2012,01/21/2012 09:04:18 PM,01/21/2012 09:05:11 PM,01/21/2012 09:05:27 PM,01/21/2012 09:07:45 PM,01/21/2012 09:10:18 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,No Merit,01/21/2012 09:33:11 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120210385-87 -160532384,KM12,16021296,Traffic Collision,02/22/2016,02/22/2016,02/22/2016 04:27:49 PM,02/22/2016 04:27:49 PM,02/22/2016 04:53:06 PM,02/22/2016 04:54:08 PM,02/22/2016 04:56:41 PM,02/22/2016 04:58:53 PM,02/22/2016 05:25:22 PM,Code 2 Transport,02/22/2016 05:54:54 PM,MISSION ST/17TH ST,San Francisco,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,3,2,9,Mission,"(37.7634292740134, -122.419512736792)",160532384-KM12 -123600103,67,12120447,Structure Fire,12/25/2012,12/25/2012,12/25/2012 10:33:21 AM,12/25/2012 10:36:36 AM,12/25/2012 10:36:43 AM,12/25/2012 10:36:59 AM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Other,12/25/2012 10:44:20 AM,14TH ST/ALPINE TR,SF,94117,B05,6,5211,3,3,3,true,Alarm,1,MEDIC,9,5,8,Castro/Upper Market,"(37.7672219301813, -122.437298991661)",123600103-67 -140060328,66,14002244,Medical Incident,01/06/2014,01/06/2014,01/06/2014 06:12:02 PM,01/06/2014 06:12:53 PM,01/06/2014 06:16:17 PM,01/06/2014 06:16:17 PM,01/06/2014 06:25:05 PM,01/06/2014 06:39:17 PM,01/06/2014 06:52:24 PM,Code 2 Transport,01/06/2014 07:19:41 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",140060328-66 -111330424,E44,11044102,Medical Incident,05/13/2011,05/13/2011,05/13/2011 04:33:08 PM,05/13/2011 04:34:17 PM,05/13/2011 04:36:12 PM,05/13/2011 04:37:34 PM,05/13/2011 04:51:26 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 04:51:29 PM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,true,,1,ENGINE,2,9,10,Visitacion Valley,"(37.7101556026027, -122.41260428896)",111330424-E44 -122340120,E21,12077551,Structure Fire,08/21/2012,08/21/2012,08/21/2012 10:48:07 AM,08/21/2012 10:50:08 AM,08/21/2012 10:50:22 AM,08/21/2012 10:57:49 AM,08/21/2012 11:00:15 AM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Other,08/21/2012 11:27:20 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Fire,1,ENGINE,4,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",122340120-E21 -110850068,86,11027927,Structure Fire,03/26/2011,03/25/2011,03/26/2011 05:12:18 AM,03/26/2011 05:12:19 AM,03/26/2011 05:12:19 AM,03/26/2011 05:14:26 AM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,04/25/2016 02:05:27 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,false,,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",110850068-86 -113150109,KM01,11104631,Medical Incident,11/11/2011,11/11/2011,11/11/2011 10:30:22 AM,11/11/2011 10:31:42 AM,11/11/2011 10:31:50 AM,11/11/2011 10:32:44 AM,04/25/2016 02:01:42 PM,11/11/2011 10:49:04 AM,11/11/2011 11:33:22 AM,Code 2 Transport,11/11/2011 11:05:23 AM,100 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,false,,1,PRIVATE,1,2,6,South of Market,"(37.7789597633583, -122.410718060304)",113150109-KM01 -113500071,T14,11116028,Structure Fire,12/16/2011,12/16/2011,12/16/2011 08:09:56 AM,12/16/2011 08:11:26 AM,12/16/2011 08:11:43 AM,12/16/2011 08:13:09 AM,12/16/2011 08:16:00 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/16/2011 08:17:00 AM,25TH AV/CALIFORNIA ST,SF,94121,B07,14,7214,3,3,3,false,,1,TRUCK,4,7,1,Outer Richmond,"(37.7838822347168, -122.485010943843)",113500071-T14 -130540202,85,13018275,Medical Incident,02/23/2013,02/23/2013,02/23/2013 03:15:03 PM,02/23/2013 03:15:03 PM,02/23/2013 03:19:14 PM,02/23/2013 03:19:50 PM,02/23/2013 03:33:37 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,04/25/2016 01:54:09 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",130540202-85 -133050392,93,13103795,Medical Incident,11/01/2013,11/01/2013,11/01/2013 06:48:39 PM,11/01/2013 06:49:11 PM,11/01/2013 06:49:44 PM,11/01/2013 06:50:04 PM,11/01/2013 06:51:57 PM,11/01/2013 07:04:27 PM,11/01/2013 07:11:15 PM,Code 2 Transport,11/01/2013 08:00:28 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",133050392-93 -133340066,E03,13113148,Medical Incident,11/30/2013,11/29/2013,11/30/2013 06:40:40 AM,11/30/2013 06:42:16 AM,11/30/2013 06:43:02 AM,11/30/2013 06:44:43 AM,11/30/2013 06:46:42 AM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/30/2013 06:56:08 AM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",133340066-E03 -121810334,83,12060398,Medical Incident,06/29/2012,06/29/2012,06/29/2012 08:38:54 PM,06/29/2012 08:39:42 PM,06/29/2012 08:40:52 PM,06/29/2012 08:40:59 PM,06/29/2012 08:43:08 PM,06/29/2012 09:17:44 PM,06/29/2012 09:39:27 PM,Code 2 Transport,06/29/2012 09:44:18 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",121810334-83 -112230185,D3,11073650,Structure Fire,08/11/2011,08/11/2011,08/11/2011 01:33:56 PM,08/11/2011 01:34:28 PM,08/11/2011 01:34:47 PM,08/11/2011 01:35:00 PM,08/11/2011 01:40:59 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,04/25/2016 02:03:13 PM,200 Block of CUMBERLAND ST,SF,94114,B06,11,5444,3,3,3,false,,1,CHIEF,8,6,8,Castro/Upper Market,"(37.7588840549508, -122.429141172461)",112230185-D3 -111520167,T02,11050285,Alarms,06/01/2011,06/01/2011,06/01/2011 12:55:18 PM,06/01/2011 12:56:05 PM,06/01/2011 12:56:57 PM,06/01/2011 12:58:24 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/01/2011 12:59:34 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,,1,TRUCK,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",111520167-T02 -131620258,RC3,13055102,Medical Incident,06/11/2013,06/11/2013,06/11/2013 04:15:29 PM,06/11/2013 04:15:29 PM,06/11/2013 04:32:52 PM,06/11/2013 04:33:40 PM,06/11/2013 04:50:30 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/11/2013 04:59:42 PM,20TH AV/WINSTON DR,SF,94132,B08,19,8862,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,8,7,Lakeshore,"(37.7269499157185, -122.476039471265)",131620258-RC3 -122650262,E07,12087625,Medical Incident,09/21/2012,09/21/2012,09/21/2012 06:43:35 PM,09/21/2012 06:43:49 PM,09/21/2012 06:45:28 PM,09/21/2012 06:47:24 PM,09/21/2012 06:50:17 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 07:10:37 PM,1200 Block of TREAT AVE,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7501648383073, -122.412831855469)",122650262-E07 -133250149,E36,13110355,Medical Incident,11/21/2013,11/21/2013,11/21/2013 11:28:02 AM,11/21/2013 11:28:42 AM,11/21/2013 11:29:35 AM,11/21/2013 11:31:25 AM,11/21/2013 11:34:41 AM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Other,11/21/2013 11:46:51 AM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",133250149-E36 -112650308,55,11087600,Medical Incident,09/22/2011,09/22/2011,09/22/2011 04:44:48 PM,09/22/2011 04:45:43 PM,09/22/2011 04:46:22 PM,09/22/2011 04:46:46 PM,09/22/2011 04:50:59 PM,09/22/2011 05:05:52 PM,09/22/2011 05:29:23 PM,Code 2 Transport,09/22/2011 06:03:41 PM,1300 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7513090308287, -122.420516937429)",112650308-55 -160881152,77,16034889,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:58:45 AM,03/28/2016 10:00:45 AM,03/28/2016 10:01:12 AM,03/28/2016 10:01:28 AM,03/28/2016 10:09:33 AM,03/28/2016 10:33:51 AM,03/28/2016 10:45:56 AM,Code 2 Transport,03/28/2016 11:23:35 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160881152-77 -130330062,E22,13011174,Medical Incident,02/02/2013,02/01/2013,02/02/2013 03:41:07 AM,02/02/2013 03:41:21 AM,02/02/2013 03:41:52 AM,02/02/2013 03:43:15 AM,02/02/2013 03:46:18 AM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/02/2013 03:48:35 AM,5TH AV/IRVING ST,SF,94122,B08,22,7325,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,5,5,Inner Sunset,"(37.7642248379085, -122.46203054108)",130330062-E22 -160722721,53,16028712,Medical Incident,03/12/2016,03/12/2016,03/12/2016 06:28:51 PM,03/12/2016 06:30:24 PM,03/12/2016 06:31:17 PM,03/12/2016 06:31:29 PM,03/12/2016 07:00:54 PM,03/12/2016 07:02:32 PM,03/12/2016 07:15:34 PM,Code 2 Transport,03/12/2016 08:00:47 PM,4000 Block of JUDAH ST,San Francisco,94122,B08,23,7655,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7603932695375, -122.505388569418)",160722721-53 -132120119,87,13071608,Medical Incident,07/31/2013,07/31/2013,07/31/2013 10:42:30 AM,07/31/2013 10:43:02 AM,07/31/2013 10:43:25 AM,07/31/2013 10:43:45 AM,07/31/2013 10:50:57 AM,07/31/2013 11:00:41 AM,07/31/2013 11:22:59 AM,Code 2 Transport,07/31/2013 11:49:53 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132120119-87 -110230070,E21,11007491,Medical Incident,01/23/2011,01/22/2011,01/23/2011 06:33:20 AM,01/23/2011 06:34:26 AM,01/23/2011 06:34:58 AM,01/23/2011 06:35:49 AM,01/23/2011 06:38:23 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/23/2011 06:39:08 AM,300 Block of STANYAN ST,SF,94118,B07,21,4556,3,3,3,false,,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7751493494797, -122.454629640097)",110230070-E21 -131970316,E03,13066933,Medical Incident,07/16/2013,07/16/2013,07/16/2013 07:08:11 PM,07/16/2013 07:09:54 PM,07/16/2013 07:10:38 PM,07/16/2013 07:11:43 PM,07/16/2013 07:16:35 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/16/2013 07:30:00 PM,TURK ST/TAYLOR ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",131970316-E03 -120550179,93,12018153,Medical Incident,02/24/2012,02/24/2012,02/24/2012 01:36:14 PM,02/24/2012 01:36:49 PM,02/24/2012 01:37:00 PM,02/24/2012 01:41:45 PM,02/24/2012 01:52:22 PM,02/24/2012 02:03:47 PM,02/24/2012 02:24:59 PM,Code 2 Transport,02/24/2012 02:47:26 PM,1700 Block of REVERE AVE,SF,94124,B10,17,6514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.733154464931, -122.392672357808)",120550179-93 -102370335,E09,10074839,Alarms,08/25/2010,08/25/2010,08/25/2010 06:37:55 PM,08/25/2010 06:38:44 PM,08/25/2010 06:38:49 PM,08/25/2010 06:39:23 PM,08/25/2010 06:42:08 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 07:00:34 PM,300 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",102370335-E09 -123550027,54,12118677,Medical Incident,12/20/2012,12/19/2012,12/20/2012 02:03:18 AM,12/20/2012 02:07:24 AM,12/20/2012 02:08:11 AM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 02:10:15 AM,300 Block of ELSIE ST,SF,94110,B06,32,5652,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7385960565627, -122.420200231971)",123550027-54 -102880181,B08,10091828,Other,10/15/2010,10/15/2010,10/15/2010 12:05:22 PM,10/15/2010 12:06:05 PM,10/15/2010 12:06:24 PM,10/15/2010 12:07:47 PM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,Fire,10/15/2010 12:19:33 PM,200 Block of MIDDLEFIELD DR,SF,94132,B08,19,8743,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7303132169002, -122.486205438256)",102880181-B08 -120540041,E15,12017720,Structure Fire,02/23/2012,02/22/2012,02/23/2012 04:22:34 AM,02/23/2012 04:25:02 AM,02/23/2012 04:25:24 AM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 04:32:05 AM,1900 Block of OCEAN AVE,SF,94127,B09,15,8456,3,3,3,true,Fire,1,ENGINE,11,9,7,West of Twin Peaks,"(37.7257598547537, -122.463278950857)",120540041-E15 -160521557,AM08,16020805,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:27:19 PM,02/21/2016 12:29:58 PM,02/21/2016 12:30:33 PM,02/21/2016 12:31:04 PM,02/21/2016 12:42:47 PM,02/21/2016 12:53:01 PM,02/21/2016 01:24:53 PM,Code 2 Transport,02/21/2016 01:51:40 PM,800 Block of 38TH AVE,San Francisco,94121,B07,34,7261,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7728638713073, -122.498250841479)",160521557-AM08 -160812944,68,16032298,Medical Incident,03/21/2016,03/21/2016,03/21/2016 05:44:59 PM,03/21/2016 05:46:08 PM,03/21/2016 05:48:48 PM,03/21/2016 05:48:48 PM,03/21/2016 05:54:01 PM,03/21/2016 06:09:52 PM,03/21/2016 06:33:44 PM,Code 2 Transport,03/21/2016 06:50:20 PM,400 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8063948128853, -122.414598058157)",160812944-68 -132230255,85,13075381,Medical Incident,08/11/2013,08/11/2013,08/11/2013 04:47:57 PM,08/11/2013 04:48:08 PM,08/11/2013 04:48:36 PM,08/11/2013 04:48:50 PM,08/11/2013 04:51:16 PM,08/11/2013 05:01:07 PM,08/11/2013 05:12:59 PM,Code 2 Transport,08/11/2013 05:27:58 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",132230255-85 -160772811,89,16030690,Medical Incident,03/17/2016,03/17/2016,03/17/2016 04:31:29 PM,03/17/2016 04:33:29 PM,03/17/2016 04:42:32 PM,03/17/2016 04:42:37 PM,03/17/2016 05:08:05 PM,03/17/2016 05:12:35 PM,03/17/2016 05:15:08 PM,Code 2 Transport,03/17/2016 05:43:15 PM,1400 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",160772811-89 -131290245,67,13043649,Medical Incident,05/09/2013,05/09/2013,05/09/2013 04:06:28 PM,05/09/2013 04:08:41 PM,05/09/2013 04:09:07 PM,05/09/2013 04:09:34 PM,05/09/2013 04:28:55 PM,05/09/2013 04:50:10 PM,05/09/2013 04:50:16 PM,Code 2 Transport,05/09/2013 05:24:17 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",131290245-67 -130650105,E01,13021696,Medical Incident,03/06/2013,03/06/2013,03/06/2013 09:43:34 AM,03/06/2013 09:44:14 AM,03/06/2013 09:44:25 AM,03/06/2013 09:44:49 AM,03/06/2013 09:49:05 AM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,Other,03/06/2013 09:58:55 AM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",130650105-E01 -112570024,66,11084617,Medical Incident,09/14/2011,09/13/2011,09/14/2011 02:53:20 AM,09/14/2011 02:54:03 AM,09/14/2011 02:54:15 AM,09/14/2011 02:54:58 AM,09/14/2011 03:01:33 AM,09/14/2011 03:21:18 AM,09/14/2011 03:36:13 AM,Code 2 Transport,09/14/2011 04:01:38 AM,100 Block of AMHERST ST,SF,94134,B09,42,6147,3,3,3,true,,1,MEDIC,2,9,9,Excelsior,"(37.7275605128809, -122.416607387031)",112570024-66 -160811243,79,16032131,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:45:36 AM,03/21/2016 10:46:51 AM,03/21/2016 10:48:01 AM,03/21/2016 10:48:11 AM,03/21/2016 10:56:05 AM,03/21/2016 11:02:10 AM,03/21/2016 11:21:58 AM,Code 2 Transport,03/21/2016 11:47:58 AM,3800 Block of 17TH ST,San Francisco,94114,B05,6,5252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",160811243-79 -160500571,AM02,16019984,Medical Incident,02/19/2016,02/18/2016,02/19/2016 07:19:42 AM,02/19/2016 07:20:50 AM,02/19/2016 07:20:59 AM,02/19/2016 07:21:27 AM,02/19/2016 07:25:51 AM,02/19/2016 07:48:34 AM,02/19/2016 07:56:39 AM,Code 2 Transport,02/19/2016 08:26:14 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Japantown,"(37.7869733159879, -122.425845942974)",160500571-AM02 -130470310,T01,13016103,Gas Leak (Natural and LP Gases),02/16/2013,02/16/2013,02/16/2013 04:54:22 PM,02/16/2013 04:54:36 PM,02/16/2013 04:55:12 PM,02/16/2013 04:57:12 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/16/2013 05:09:12 PM,300 Block of CLEMENTINA ST,SF,94103,B07,1,2215,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7820387146172, -122.40232147638)",130470310-T01 -160364312,AM18,16014488,Medical Incident,02/05/2016,02/05/2016,02/05/2016 11:30:34 PM,02/05/2016 11:32:25 PM,02/05/2016 11:32:39 PM,02/05/2016 11:33:16 PM,02/05/2016 11:34:47 PM,02/05/2016 11:52:40 PM,02/06/2016 12:08:25 AM,Code 2 Transport,02/06/2016 01:00:28 AM,800 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7874037664371, -122.415827994726)",160364312-AM18 -133330151,E17,13112935,Medical Incident,11/29/2013,11/29/2013,11/29/2013 01:47:18 PM,11/29/2013 01:49:52 PM,11/29/2013 01:50:30 PM,11/29/2013 01:52:00 PM,11/29/2013 01:54:05 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/29/2013 02:06:32 PM,0 Block of BEATRICE LN,SF,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7308504053191, -122.379978149759)",133330151-E17 -132650149,B01,13089861,Alarms,09/22/2013,09/22/2013,09/22/2013 10:35:40 AM,09/22/2013 10:36:51 AM,09/22/2013 10:37:00 AM,09/22/2013 10:38:01 AM,09/22/2013 10:39:59 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Fire,09/22/2013 10:43:52 AM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,Alarm,1,CHIEF,1,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",132650149-B01 -160820548,53,16032473,Medical Incident,03/22/2016,03/21/2016,03/22/2016 07:26:00 AM,03/22/2016 07:26:00 AM,03/22/2016 07:26:27 AM,03/22/2016 07:26:56 AM,03/22/2016 07:39:55 AM,03/22/2016 08:04:58 AM,03/22/2016 08:20:54 AM,Code 2 Transport,03/22/2016 09:19:19 AM,1200 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",160820548-53 -120230187,D3,12007797,Structure Fire,01/23/2012,01/23/2012,01/23/2012 12:29:42 PM,01/23/2012 12:30:23 PM,01/23/2012 12:30:35 PM,01/23/2012 12:32:54 PM,01/23/2012 12:38:17 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 12:51:17 PM,1700 Block of CESAR CHAVEZ ST,SF,94107,B10,9,2634,3,3,3,false,Fire,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.7499142654366, -122.394328983742)",120230187-D3 -130400065,E08,13013560,Traffic Collision,02/09/2013,02/08/2013,02/09/2013 03:41:03 AM,02/09/2013 03:41:03 AM,02/09/2013 03:41:26 AM,02/09/2013 03:42:51 AM,02/09/2013 04:07:28 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Patient Declined Transport,02/09/2013 04:23:49 AM,4TH ST/KING ST,SF,94107,B03,8,2236,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",130400065-E08 -160720673,72,16028498,Medical Incident,03/12/2016,03/11/2016,03/12/2016 06:52:09 AM,03/12/2016 06:53:04 AM,03/12/2016 06:53:14 AM,03/12/2016 06:53:24 AM,03/12/2016 07:03:46 AM,03/12/2016 07:17:52 AM,03/12/2016 07:40:57 AM,Code 2 Transport,03/12/2016 08:03:43 AM,100 Block of ALBATROSS CT,San Francisco,94124,B10,17,6665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7283776507, -122.3722060123)",160720673-72 -121680276,E01,12055804,Medical Incident,06/16/2012,06/16/2012,06/16/2012 04:11:32 PM,06/16/2012 04:11:51 PM,06/16/2012 04:12:12 PM,06/16/2012 04:13:01 PM,06/16/2012 04:15:27 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/16/2012 04:15:43 PM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",121680276-E01 -113140060,96,11104236,Medical Incident,11/10/2011,11/09/2011,11/10/2011 07:48:20 AM,11/10/2011 07:48:59 AM,11/10/2011 07:49:05 AM,11/10/2011 07:50:06 AM,11/10/2011 08:00:29 AM,11/10/2011 08:14:11 AM,11/10/2011 08:21:02 AM,Code 2 Transport,11/10/2011 08:49:54 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",113140060-96 -131800016,79,13061059,Medical Incident,06/29/2013,06/28/2013,06/29/2013 01:14:18 AM,06/29/2013 01:15:43 AM,06/29/2013 01:16:00 AM,06/29/2013 01:16:51 AM,06/29/2013 01:21:34 AM,06/29/2013 01:31:05 AM,06/29/2013 01:41:19 AM,Code 2 Transport,06/29/2013 01:46:45 AM,5TH ST/HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",131800016-79 -132090025,E36,13070567,Medical Incident,07/28/2013,07/27/2013,07/28/2013 01:00:55 AM,07/28/2013 01:02:31 AM,07/28/2013 01:32:01 AM,07/28/2013 01:33:49 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/28/2013 01:44:25 AM,POND ST/17TH ST,SF,94114,B05,6,5252,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626681283104, -122.432124057517)",132090025-E36 -103080083,E05,10098612,Medical Incident,11/04/2010,11/04/2010,11/04/2010 08:06:34 AM,11/04/2010 08:12:17 AM,11/04/2010 08:12:57 AM,11/04/2010 08:15:33 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 08:18:42 AM,1700 Block of SUTTER ST,SF,94115,B04,38,3433,3,3,3,true,,1,ENGINE,3,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",103080083-E05 -123630150,T03,12121434,Structure Fire,12/28/2012,12/28/2012,12/28/2012 11:44:49 AM,12/28/2012 11:46:23 AM,12/28/2012 11:46:43 AM,12/28/2012 11:47:28 AM,12/28/2012 11:49:29 AM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 12:21:43 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,Fire,1,TRUCK,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",123630150-T03 -160593090,AM20,16023682,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:03:13 PM,02/28/2016 09:03:56 PM,02/28/2016 09:04:24 PM,02/28/2016 09:05:31 PM,02/28/2016 09:08:50 PM,02/28/2016 09:23:40 PM,02/28/2016 09:39:17 PM,Code 2 Transport,02/28/2016 10:14:15 PM,MISSION ST/4TH ST,San Francisco,94103,B03,1,2213,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",160593090-AM20 -130590321,55,13019925,Medical Incident,02/28/2013,02/28/2013,02/28/2013 07:57:52 PM,02/28/2013 07:58:03 PM,02/28/2013 07:58:58 PM,02/28/2013 07:59:14 PM,02/28/2013 08:01:20 PM,02/28/2013 08:11:24 PM,02/28/2013 08:26:41 PM,Code 2 Transport,02/28/2013 09:22:24 PM,TURK ST/DODGE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824204177221, -122.416982996397)",130590321-55 -113560042,B04,11118088,Structure Fire,12/22/2011,12/21/2011,12/22/2011 05:16:05 AM,12/22/2011 05:24:21 AM,12/22/2011 05:24:38 AM,12/22/2011 05:27:14 AM,12/22/2011 05:29:23 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/22/2011 05:43:55 AM,EDDY ST/FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,,1,CHIEF,2,5,5,Western Addition,"(37.7814283698384, -122.432328983123)",113560042-B04 -112850033,T16,11094258,Alarms,10/12/2011,10/11/2011,10/12/2011 04:05:34 AM,10/12/2011 04:06:48 AM,10/12/2011 04:07:11 AM,10/12/2011 04:09:16 AM,10/12/2011 04:12:04 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 04:18:10 AM,2500 Block of LYON ST,SF,94123,B04,16,4311,3,3,3,false,,1,TRUCK,2,7,2,Presidio,"(37.7942293589716, -122.446726558057)",112850033-T16 -160451621,71,16018114,Medical Incident,02/14/2016,02/14/2016,02/14/2016 12:48:56 PM,02/14/2016 12:51:12 PM,02/14/2016 12:51:27 PM,02/14/2016 12:55:00 PM,02/14/2016 01:02:54 PM,02/14/2016 01:28:23 PM,02/14/2016 01:34:02 PM,Code 2 Transport,02/14/2016 02:06:14 PM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7796886144323, -122.408201798882)",160451621-71 -103430389,RC1,10110026,Medical Incident,12/09/2010,12/09/2010,12/09/2010 09:25:15 PM,12/09/2010 09:27:47 PM,12/09/2010 09:27:54 PM,12/09/2010 10:16:59 PM,12/09/2010 10:20:21 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 10:54:58 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,RESCUE CAPTAIN,3,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",103430389-RC1 -140280243,AM12,14009576,Medical Incident,01/28/2014,01/28/2014,01/28/2014 03:06:41 PM,01/28/2014 03:08:35 PM,01/28/2014 03:08:59 PM,01/28/2014 03:10:07 PM,01/28/2014 03:15:26 PM,01/28/2014 03:21:16 PM,01/28/2014 03:37:36 PM,Code 3 Transport,01/28/2014 03:47:34 PM,100 Block of CAMBRIDGE ST,SF,94134,B09,42,635,3,2,2,false,Non Life-threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7297394945048, -122.419529070231)",140280243-AM12 -133270447,E06,13111303,Structure Fire,11/23/2013,11/23/2013,11/23/2013 11:57:32 PM,11/23/2013 11:57:32 PM,11/23/2013 11:59:59 PM,04/25/2016 01:49:36 PM,11/24/2013 12:00:40 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 12:01:17 AM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",133270447-E06 -140700011,54,14023467,Traffic Collision,03/11/2014,03/10/2014,03/11/2014 01:04:55 AM,03/11/2014 01:04:55 AM,03/11/2014 01:05:32 AM,03/11/2014 01:05:32 AM,03/11/2014 01:05:41 AM,03/11/2014 01:10:41 AM,03/11/2014 01:20:36 AM,Code 2 Transport,03/11/2014 02:01:38 AM,1000 Block of POLK ST,,94109,B04,3,3121,,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140700011-54 -123100336,E25,12103258,Medical Incident,11/05/2012,11/05/2012,11/05/2012 07:34:31 PM,11/05/2012 07:34:59 PM,11/05/2012 07:35:27 PM,11/05/2012 07:37:08 PM,11/05/2012 07:39:46 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 07:48:08 PM,22ND ST/PENNSYLVANIA AV,SF,94107,B10,37,2535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7576507860287, -122.393122630932)",123100336-E25 -112750369,62,11091173,Medical Incident,10/02/2011,10/02/2011,10/02/2011 09:29:04 PM,10/02/2011 09:29:44 PM,10/02/2011 09:29:57 PM,10/02/2011 09:30:02 PM,10/02/2011 09:36:26 PM,10/02/2011 09:52:40 PM,10/02/2011 09:57:24 PM,Code 2 Transport,10/02/2011 10:20:23 PM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",112750369-62 -110090042,T01,11002881,Alarms,01/09/2011,01/08/2011,01/09/2011 02:17:42 AM,01/09/2011 02:18:34 AM,01/09/2011 02:18:58 AM,01/09/2011 02:20:35 AM,01/09/2011 02:22:29 AM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/09/2011 02:28:46 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",110090042-T01 -160470215,AM20,16018762,Medical Incident,02/16/2016,02/15/2016,02/16/2016 02:19:47 AM,02/16/2016 02:19:47 AM,02/16/2016 02:20:52 AM,02/16/2016 02:21:21 AM,02/16/2016 02:28:07 AM,02/16/2016 03:06:22 AM,02/16/2016 03:16:21 AM,Code 2 Transport,02/16/2016 03:47:51 AM,200 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",160470215-AM20 -112740349,62,11090754,Medical Incident,10/01/2011,10/01/2011,10/01/2011 07:23:07 PM,10/01/2011 07:26:25 PM,10/01/2011 07:27:51 PM,10/01/2011 07:28:19 PM,10/01/2011 07:30:37 PM,10/01/2011 07:48:45 PM,10/01/2011 08:01:07 PM,Code 2 Transport,10/01/2011 08:32:53 PM,0 Block of GRANADA AVE,SF,94112,B09,33,8465,3,3,3,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7191314853575, -122.457220948481)",112740349-62 -102370320,E10,10074825,Alarms,08/25/2010,08/25/2010,08/25/2010 05:48:54 PM,08/25/2010 05:50:29 PM,08/25/2010 05:50:35 PM,08/25/2010 05:51:33 PM,08/25/2010 05:54:38 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 06:01:14 PM,3500 Block of JACKSON ST,SF,94118,B07,10,4425,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7901389360239, -122.453311569564)",102370320-E10 -122280283,E41,12075639,Alarms,08/15/2012,08/15/2012,08/15/2012 05:24:40 PM,08/15/2012 05:29:13 PM,08/15/2012 05:30:12 PM,04/25/2016 01:57:13 PM,08/15/2012 05:33:49 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 05:40:47 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",122280283-E41 -113070252,59,11102046,Medical Incident,11/03/2011,11/03/2011,11/03/2011 03:37:48 PM,11/03/2011 03:38:07 PM,11/03/2011 03:38:36 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,04/25/2016 02:01:49 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,2,2,true,,1,MEDIC,3,2,6,South of Market,"(37.7760463471271, -122.41128875661)",113070252-59 -160772961,KM11,16030707,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:04:23 PM,03/17/2016 05:04:23 PM,03/17/2016 05:13:31 PM,03/17/2016 05:41:31 PM,03/17/2016 05:41:31 PM,03/17/2016 05:47:50 PM,03/17/2016 06:05:17 PM,Code 2 Transport,03/17/2016 06:28:12 PM,700 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6364,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7352779641755, -122.406190479936)",160772961-KM11 -112860468,81,11094980,Medical Incident,10/13/2011,10/13/2011,10/13/2011 11:09:48 PM,10/13/2011 11:11:53 PM,10/13/2011 11:12:09 PM,10/13/2011 11:12:25 PM,10/13/2011 11:14:49 PM,10/13/2011 11:34:18 PM,10/13/2011 11:46:59 PM,Code 2 Transport,10/13/2011 11:13:33 PM,1700 Block of 44TH AVE,SF,94122,B08,23,7651,3,3,3,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7539955074466, -122.503258318497)",112860468-81 -121720267,E40,12057185,Medical Incident,06/20/2012,06/20/2012,06/20/2012 06:04:27 PM,06/20/2012 06:05:18 PM,06/20/2012 06:07:07 PM,06/20/2012 06:08:28 PM,06/20/2012 06:11:48 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 06:44:16 PM,500 Block of CASTENADA AVE,SF,94116,B08,39,8621,E,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7456546668463, -122.466872440759)",121720267-E40 -132940335,E13,13100116,Structure Fire,10/21/2013,10/21/2013,10/21/2013 07:58:15 PM,10/21/2013 07:58:15 PM,10/21/2013 07:58:24 PM,10/21/2013 07:59:39 PM,10/21/2013 08:02:42 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 08:02:47 PM,GRANT AV/BUSH ST,SF,94108,B01,13,1315,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7905652365323, -122.405573746363)",132940335-E13 -140480243,T17,14016404,Alarms,02/17/2014,02/17/2014,02/17/2014 05:20:46 PM,02/17/2014 05:22:16 PM,02/17/2014 05:22:42 PM,02/17/2014 05:24:06 PM,02/17/2014 05:29:57 PM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,Fire,02/17/2014 05:34:36 PM,100 Block of LELAND AVE,SF,94134,B09,44,6256,3,3,3,false,Alarm,1,TRUCK,2,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",140480243-T17 -160792538,76,16031462,Medical Incident,03/19/2016,03/19/2016,03/19/2016 04:08:00 PM,03/19/2016 04:08:50 PM,03/19/2016 04:08:59 PM,03/19/2016 04:09:06 PM,03/19/2016 04:13:47 PM,03/19/2016 04:34:21 PM,03/19/2016 04:47:33 PM,Code 2 Transport,03/19/2016 05:13:19 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160792538-76 -160602184,77,16023955,Medical Incident,02/29/2016,02/29/2016,02/29/2016 03:21:53 PM,02/29/2016 03:22:05 PM,02/29/2016 03:22:39 PM,02/29/2016 03:23:55 PM,02/29/2016 03:27:18 PM,02/29/2016 03:38:35 PM,02/29/2016 03:58:03 PM,Code 2 Transport,02/29/2016 04:27:55 PM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",160602184-77 -102320024,E32,10072894,Other,08/20/2010,08/19/2010,08/20/2010 02:39:45 AM,08/20/2010 02:40:30 AM,08/20/2010 02:40:51 AM,08/20/2010 02:42:08 AM,08/20/2010 02:47:33 AM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 02:51:43 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",102320024-E32 -160343058,52,16013545,Medical Incident,02/03/2016,02/03/2016,02/03/2016 07:23:32 PM,02/03/2016 07:25:19 PM,02/03/2016 07:25:46 PM,02/03/2016 07:25:54 PM,02/03/2016 07:34:24 PM,02/03/2016 07:43:21 PM,02/03/2016 08:03:52 PM,Code 2 Transport,02/03/2016 08:40:53 PM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",160343058-52 -121970066,T01,12065417,Alarms,07/15/2012,07/14/2012,07/15/2012 04:26:37 AM,07/15/2012 04:27:24 AM,07/15/2012 04:27:38 AM,07/15/2012 04:29:59 AM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,04/25/2016 01:57:43 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Alarm,1,TRUCK,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",121970066-T01 -111680096,T19,11055332,Alarms,06/17/2011,06/17/2011,06/17/2011 09:36:36 AM,06/17/2011 09:38:02 AM,06/17/2011 09:38:11 AM,04/25/2016 02:04:07 PM,06/17/2011 09:39:13 AM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 09:48:19 AM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,,1,TRUCK,1,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",111680096-T19 -133550342,78,13120794,Medical Incident,12/21/2013,12/21/2013,12/21/2013 06:33:32 PM,12/21/2013 06:36:04 PM,12/21/2013 06:36:41 PM,12/21/2013 06:37:08 PM,12/21/2013 06:47:25 PM,12/21/2013 07:08:49 PM,12/21/2013 07:32:16 PM,Code 2 Transport,12/21/2013 08:06:08 PM,0 Block of PINTO AVE,SF,94132,B08,19,8582,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7203696016077, -122.482187237209)",133550342-78 -111200160,E03,11039561,Medical Incident,04/30/2011,04/30/2011,04/30/2011 11:46:26 AM,04/30/2011 11:47:03 AM,04/30/2011 11:47:14 AM,04/30/2011 11:47:26 AM,04/30/2011 11:51:42 AM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 11:56:20 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7817569847968, -122.414263390372)",111200160-E03 -112600165,72,11085727,Medical Incident,09/17/2011,09/17/2011,09/17/2011 11:30:47 AM,09/17/2011 11:31:30 AM,09/17/2011 11:31:44 AM,09/17/2011 11:31:51 AM,09/17/2011 11:34:07 AM,09/17/2011 11:43:55 AM,09/17/2011 11:53:08 AM,Code 2 Transport,09/17/2011 12:12:40 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",112600165-72 -103180057,60,10101828,Medical Incident,11/14/2010,11/13/2010,11/14/2010 03:03:01 AM,11/14/2010 03:04:13 AM,11/14/2010 03:04:51 AM,11/14/2010 03:05:02 AM,11/14/2010 03:10:13 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,No Merit,11/14/2010 03:15:57 AM,4600 Block of MISSION ST,SF,94112,B09,43,6117,3,2,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7242679564906, -122.435032247159)",103180057-60 -160541409,KM02,16021544,Medical Incident,02/23/2016,02/23/2016,02/23/2016 11:22:49 AM,02/23/2016 11:25:48 AM,02/23/2016 11:26:23 AM,02/23/2016 11:27:00 AM,02/23/2016 11:37:02 AM,02/23/2016 11:40:10 AM,02/23/2016 11:47:13 AM,Code 3 Transport,02/23/2016 12:16:34 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",160541409-KM02 -160502274,85,16020142,Medical Incident,02/19/2016,02/19/2016,02/19/2016 03:22:44 PM,02/19/2016 03:23:55 PM,02/19/2016 03:27:25 PM,02/19/2016 03:28:01 PM,02/19/2016 03:50:32 PM,02/19/2016 04:02:11 PM,02/19/2016 04:20:22 PM,Code 2 Transport,02/19/2016 05:21:23 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160502274-85 -121640374,E36,12054559,Medical Incident,06/12/2012,06/12/2012,06/12/2012 10:34:39 PM,06/12/2012 10:35:05 PM,06/12/2012 10:35:15 PM,06/12/2012 10:36:33 PM,06/12/2012 10:38:11 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 10:41:05 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",121640374-E36 -123530357,T05,12118251,Structure Fire,12/18/2012,12/18/2012,12/18/2012 09:27:35 PM,12/18/2012 09:29:46 PM,12/18/2012 09:30:07 PM,12/18/2012 09:31:15 PM,12/18/2012 09:34:30 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/18/2012 09:31:42 PM,600 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,9,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",123530357-T05 -160393351,KM07,16015787,Medical Incident,02/08/2016,02/08/2016,02/08/2016 08:23:14 PM,02/08/2016 08:25:48 PM,02/08/2016 08:27:29 PM,02/08/2016 08:28:36 PM,02/08/2016 08:36:17 PM,02/08/2016 08:44:44 PM,02/08/2016 08:51:31 PM,Code 2 Transport,02/08/2016 09:27:31 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160393351-KM07 -160761498,82,16030117,Medical Incident,03/16/2016,03/16/2016,03/16/2016 11:38:06 AM,03/16/2016 11:40:26 AM,03/16/2016 11:44:54 AM,03/16/2016 11:45:02 AM,03/16/2016 11:51:49 AM,03/16/2016 12:23:32 PM,03/16/2016 12:41:03 PM,Code 2 Transport,03/16/2016 01:31:08 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160761498-82 -130610124,E03,13020413,Medical Incident,03/02/2013,03/02/2013,03/02/2013 10:01:24 AM,03/02/2013 10:02:08 AM,03/02/2013 10:02:38 AM,03/02/2013 10:03:32 AM,03/02/2013 10:05:15 AM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Other,03/02/2013 10:09:48 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",130610124-E03 -160691869,61,16027486,Medical Incident,03/09/2016,03/09/2016,03/09/2016 01:22:57 PM,03/09/2016 01:24:36 PM,03/09/2016 01:37:19 PM,03/09/2016 01:37:38 PM,03/09/2016 01:51:57 PM,03/09/2016 02:28:20 PM,03/09/2016 02:50:23 PM,Code 2 Transport,03/09/2016 03:32:23 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160691869-61 -122150325,AM04,12071486,Medical Incident,08/02/2012,08/02/2012,08/02/2012 09:15:50 PM,08/02/2012 09:16:22 PM,08/02/2012 09:16:57 PM,08/02/2012 09:18:53 PM,08/02/2012 09:22:16 PM,08/02/2012 09:40:45 PM,08/02/2012 09:56:40 PM,Code 3 Transport,08/02/2012 10:32:14 PM,0 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7202829536688, -122.3858679491)",122150325-AM04 -132380374,E07,13080458,Outside Fire,08/26/2013,08/26/2013,08/26/2013 09:17:03 PM,08/26/2013 09:18:44 PM,08/26/2013 09:18:57 PM,08/26/2013 09:21:00 PM,08/26/2013 09:23:18 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 09:28:51 PM,500 Block of DOLORES ST,SF,94110,B06,7,5435,3,3,3,true,Fire,1,ENGINE,1,6,8,Mission,"(37.7606376831681, -122.425843696986)",132380374-E07 -111340022,KM11,11044449,Medical Incident,05/14/2011,05/13/2011,05/14/2011 02:02:03 AM,05/14/2011 02:02:03 AM,05/14/2011 02:02:42 AM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,Other,04/25/2016 02:04:38 PM,11TH ST/FOLSOM ST,SF,94103,B02,36,5114,3,E,3,false,,1,PRIVATE,3,2,6,Mission,"(37.771863706441, -122.414026708032)",111340022-KM11 -123060142,81,12101610,Medical Incident,11/01/2012,11/01/2012,11/01/2012 10:34:18 AM,11/01/2012 10:35:25 AM,11/01/2012 10:35:49 AM,04/25/2016 01:56:00 PM,11/01/2012 10:37:44 AM,11/01/2012 10:49:18 AM,11/01/2012 11:22:41 AM,Code 2 Transport,11/01/2012 12:08:23 PM,900 Block of TARAVAL ST,SF,94116,B08,40,7434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7430820680504, -122.47620835162)",123060142-81 -160361193,AM06,16014177,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:36:34 AM,02/05/2016 09:37:39 AM,02/05/2016 09:38:52 AM,02/05/2016 09:39:31 AM,02/05/2016 09:57:17 AM,02/05/2016 10:25:05 AM,02/05/2016 10:58:40 AM,Code 2 Transport,02/05/2016 11:35:21 AM,100 Block of NAGLEE AVE,San Francisco,94112,B09,33,8346,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7123666278778, -122.447153827479)",160361193-AM06 -160680370,KM03,16026991,Medical Incident,03/08/2016,03/07/2016,03/08/2016 05:41:42 AM,03/08/2016 05:43:04 AM,03/08/2016 05:43:21 AM,03/08/2016 05:43:56 AM,03/08/2016 05:46:26 AM,03/08/2016 06:05:13 AM,03/08/2016 06:21:06 AM,Code 2 Transport,03/08/2016 07:27:21 AM,400 Block of 26TH AVE,San Francisco,94121,B07,14,7221,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7810031903924, -122.485945544565)",160680370-KM03 -130960259,83,13032242,Medical Incident,04/06/2013,04/06/2013,04/06/2013 04:23:36 PM,04/06/2013 04:23:44 PM,04/06/2013 04:23:58 PM,04/06/2013 04:24:34 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 04:25:33 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",130960259-83 -110840285,E03,11027753,Medical Incident,03/25/2011,03/25/2011,03/25/2011 04:50:35 PM,03/25/2011 04:51:16 PM,03/25/2011 04:51:33 PM,03/25/2011 04:51:58 PM,03/25/2011 04:53:59 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 05:01:50 PM,EDDY ST/LARKIN ST,SF,94109,B02,3,1643,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",110840285-E03 -130970334,T15,13032662,Medical Incident,04/07/2013,04/07/2013,04/07/2013 08:36:30 PM,04/07/2013 08:36:50 PM,04/07/2013 08:37:17 PM,04/07/2013 08:39:03 PM,04/07/2013 08:40:56 PM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Other,04/07/2013 08:46:27 PM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,E,2,2,false,Non Life-threatening,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",130970334-T15 -160421322,KM04,16016818,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:52:36 AM,02/11/2016 10:53:08 AM,02/11/2016 10:53:28 AM,02/11/2016 10:54:32 AM,02/11/2016 10:58:28 AM,02/11/2016 11:19:15 AM,02/11/2016 11:43:04 AM,Code 2 Transport,02/11/2016 12:12:44 PM,1400 Block of SCOTT ST,San Francisco,94115,B04,5,413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7831990201184, -122.437672374097)",160421322-KM04 -132910003,E01,13098860,Medical Incident,10/18/2013,10/17/2013,10/18/2013 12:11:34 AM,10/18/2013 12:13:11 AM,10/18/2013 12:13:24 AM,10/18/2013 12:15:33 AM,10/18/2013 12:17:26 AM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/18/2013 12:21:02 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7799892619986, -122.407376463936)",132910003-E01 -112960017,65,11098053,Medical Incident,10/23/2011,10/22/2011,10/23/2011 12:53:00 AM,10/23/2011 12:53:54 AM,10/23/2011 12:54:20 AM,10/23/2011 12:54:46 AM,10/23/2011 01:01:10 AM,10/23/2011 01:22:31 AM,10/23/2011 01:29:02 AM,Code 2 Transport,10/23/2011 02:14:23 AM,100 Block of UTAH ST,SF,94103,B02,29,2351,3,3,3,true,,1,MEDIC,2,2,10,Mission,"(37.7677826861899, -122.406668803339)",112960017-65 -160222664,AM14,16008853,Medical Incident,01/22/2016,01/22/2016,01/22/2016 04:54:21 PM,01/22/2016 04:56:40 PM,01/22/2016 04:57:19 PM,01/22/2016 04:58:08 PM,01/22/2016 05:14:47 PM,01/22/2016 05:56:55 PM,01/22/2016 05:57:06 PM,Code 2 Transport,01/22/2016 06:06:52 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160222664-AM14 -140430210,E37,14014632,Medical Incident,02/12/2014,02/12/2014,02/12/2014 01:59:04 PM,02/12/2014 01:59:51 PM,02/12/2014 02:00:50 PM,02/12/2014 02:01:39 PM,02/12/2014 02:03:15 PM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Code 2 Transport,02/12/2014 02:11:41 PM,600 Block of DE HARO ST,SF,94107,B10,37,2511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.761655083303, -122.401193113905)",140430210-E37 -102530395,E39,10080113,Structure Fire,09/10/2010,09/10/2010,09/10/2010 10:40:22 PM,09/10/2010 10:40:25 PM,09/10/2010 10:40:35 PM,09/10/2010 10:44:09 PM,09/10/2010 10:48:15 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 11:07:35 PM,1500 Block of OCEAN AVE,SF,94112,B09,15,8474,3,3,3,true,,1,ENGINE,6,9,7,Oceanview/Merced/Ingleside,"(37.7243455704597, -122.458727990325)",102530395-E39 -102310114,E13,10072644,Medical Incident,08/19/2010,08/19/2010,08/19/2010 10:02:16 AM,08/19/2010 10:03:12 AM,08/19/2010 10:05:02 AM,08/19/2010 10:05:55 AM,08/19/2010 10:06:53 AM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/19/2010 10:16:33 AM,200 Block of CALIFORNIA ST,SF,94111,B01,13,1162,E,E,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7933383335289, -122.399381167233)",102310114-E13 -160163235,53,16006572,Medical Incident,01/16/2016,01/16/2016,01/16/2016 08:06:46 PM,01/16/2016 08:08:15 PM,01/16/2016 08:08:38 PM,01/16/2016 08:08:52 PM,01/16/2016 08:14:28 PM,01/16/2016 08:28:15 PM,01/16/2016 08:44:21 PM,Code 2 Transport,01/16/2016 09:07:24 PM,MASON ST/OFARRELL ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862026638911, -122.409683072135)",160163235-53 -160463637,58,16018696,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:31:06 PM,02/15/2016 09:32:09 PM,02/15/2016 09:32:41 PM,02/15/2016 09:32:55 PM,02/15/2016 09:38:14 PM,02/15/2016 09:57:22 PM,02/15/2016 10:26:02 PM,Code 2 Transport,02/15/2016 10:54:47 PM,500 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7777260131845, -122.473696437291)",160463637-58 -120170359,E40,12005860,Citizen Assist / Service Call,01/17/2012,01/17/2012,01/17/2012 10:54:14 PM,01/17/2012 10:56:52 PM,01/17/2012 10:57:36 PM,01/17/2012 10:59:10 PM,01/17/2012 11:01:48 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 11:05:34 PM,2500 Block of 24TH AVE,SF,94116,B08,40,7442,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7400213164931, -122.480783251007)",120170359-E40 -140200210,T03,14006882,Alarms,01/20/2014,01/20/2014,01/20/2014 02:53:41 PM,01/20/2014 02:55:01 PM,01/20/2014 02:55:26 PM,01/20/2014 02:56:39 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/20/2014 03:05:30 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",140200210-T03 -120380366,E03,12012847,Alarms,02/07/2012,02/07/2012,02/07/2012 11:39:31 PM,02/07/2012 11:41:33 PM,02/07/2012 11:41:37 PM,02/07/2012 11:43:03 PM,02/07/2012 11:44:43 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Other,02/07/2012 11:48:05 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",120380366-E03 -132590054,B08,13087510,Traffic Collision,09/16/2013,09/15/2013,09/16/2013 07:13:07 AM,09/16/2013 07:14:14 AM,09/16/2013 07:27:54 AM,09/16/2013 07:28:55 AM,09/16/2013 07:32:52 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/16/2013 07:42:16 AM,30TH AV/LINCOLN WY,SF,94122,B08,22,7512,2,2,2,false,Non Life-threatening,1,CHIEF,6,8,4,Sunset/Parkside,"(37.7649288570358, -122.489042083169)",132590054-B08 -131770310,KM04,13060187,Medical Incident,06/26/2013,06/26/2013,06/26/2013 06:08:06 PM,06/26/2013 06:11:26 PM,06/26/2013 06:11:52 PM,06/26/2013 06:13:47 PM,04/25/2016 01:52:06 PM,06/26/2013 06:31:22 PM,06/26/2013 06:37:06 PM,Code 2 Transport,06/26/2013 07:25:15 PM,GEARY BL/ARGUELLO BL,SF,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",131770310-KM04 -112570278,AM18,11084826,Medical Incident,09/14/2011,09/14/2011,09/14/2011 06:45:06 PM,09/14/2011 06:45:07 PM,09/14/2011 06:46:59 PM,04/25/2016 02:02:40 PM,09/14/2011 06:57:55 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,No Merit,09/14/2011 07:06:08 PM,NOE ST/MARKET ST,SF,94114,B05,6,5231,2,2,2,false,,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",112570278-AM18 -111110104,E10,11036594,Medical Incident,04/21/2011,04/21/2011,04/21/2011 09:26:04 AM,04/21/2011 09:27:14 AM,04/21/2011 09:27:36 AM,04/21/2011 09:29:45 AM,04/21/2011 09:32:20 AM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/21/2011 09:36:51 AM,2100 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,,1,ENGINE,2,5,5,Western Addition,"(37.783357968274, -122.438601387081)",111110104-E10 -160020442,67,16000617,Medical Incident,01/02/2016,01/01/2016,01/02/2016 04:34:55 AM,01/02/2016 04:35:30 AM,01/02/2016 04:36:14 AM,01/02/2016 04:36:23 AM,01/02/2016 04:42:17 AM,01/02/2016 05:07:13 AM,01/02/2016 05:16:43 AM,Code 2 Transport,01/02/2016 05:49:33 AM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",160020442-67 -123260259,60,12108520,Medical Incident,11/21/2012,11/21/2012,11/21/2012 05:08:44 PM,11/21/2012 05:08:55 PM,11/21/2012 05:09:23 PM,11/21/2012 05:10:13 PM,11/21/2012 05:11:02 PM,11/21/2012 05:26:31 PM,11/21/2012 05:34:46 PM,Code 2 Transport,11/21/2012 06:01:49 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",123260259-60 -111150176,E22,11037937,Medical Incident,04/25/2011,04/25/2011,04/25/2011 12:12:25 PM,04/25/2011 12:13:12 PM,04/25/2011 12:14:26 PM,04/25/2011 12:15:13 PM,04/25/2011 12:16:45 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 12:27:00 PM,900 Block of LINCOLN WAY,SF,94122,B08,22,7333,3,3,3,false,,1,ENGINE,1,7,5,Inner Sunset,"(37.7657522392824, -122.46804064381)",111150176-E22 -120980025,KM15,12032363,Medical Incident,04/07/2012,04/06/2012,04/07/2012 01:54:52 AM,04/07/2012 01:56:13 AM,04/07/2012 01:57:54 AM,04/07/2012 01:58:59 AM,04/07/2012 02:09:47 AM,04/25/2016 01:59:17 PM,04/25/2016 01:59:17 PM,Patient Declined Transport,04/07/2012 02:43:45 AM,LAKE MERCED BL/STATE DR,SF,94132,B08,19,8855,3,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7248900880592, -122.484628813938)",120980025-KM15 -160310003,79,16012002,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:59:41 PM,01/31/2016 12:00:21 AM,01/31/2016 12:01:09 AM,01/31/2016 12:01:19 AM,01/31/2016 12:28:21 AM,01/31/2016 12:28:25 AM,01/31/2016 12:32:38 AM,Code 2 Transport,01/31/2016 01:06:34 AM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",160310003-79 -160632694,67,16025164,Medical Incident,03/03/2016,03/03/2016,03/03/2016 04:55:43 PM,03/03/2016 04:57:40 PM,03/03/2016 04:58:17 PM,03/03/2016 04:58:44 PM,03/03/2016 05:32:11 PM,03/03/2016 05:32:12 PM,03/03/2016 06:33:32 PM,Code 2 Transport,03/03/2016 07:06:35 PM,1000 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7191956969734, -122.388416108229)",160632694-67 -120160025,88,12005272,Medical Incident,01/16/2012,01/15/2012,01/16/2012 03:00:37 AM,01/16/2012 03:01:19 AM,01/16/2012 03:01:36 AM,01/16/2012 03:01:43 AM,01/16/2012 03:04:26 AM,01/16/2012 03:32:05 AM,01/16/2012 03:45:41 AM,Code 2 Transport,01/16/2012 04:06:47 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",120160025-88 -160673550,AM18,16026942,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:06:38 PM,03/07/2016 11:08:17 PM,03/07/2016 11:09:58 PM,03/07/2016 11:09:58 PM,03/07/2016 11:18:34 PM,03/07/2016 11:30:21 PM,03/07/2016 11:43:44 PM,Code 2 Transport,03/08/2016 12:22:02 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160673550-AM18 -131940083,E01,13065879,Structure Fire,07/13/2013,07/13/2013,07/13/2013 08:50:03 AM,07/13/2013 08:50:06 AM,07/13/2013 08:50:37 AM,07/13/2013 08:51:47 AM,07/13/2013 08:53:26 AM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 08:53:29 AM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7785051047871, -122.405615267864)",131940083-E01 -111800353,E08,11059581,Vehicle Fire,06/29/2011,06/29/2011,06/29/2011 11:32:51 PM,06/29/2011 11:34:35 PM,06/29/2011 11:34:39 PM,06/29/2011 11:36:55 PM,06/29/2011 11:39:48 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/29/2011 11:45:16 PM,400 Block of BERRY ST,SF,94107,B03,8,2262,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",111800353-E08 -140420196,E14,14014286,Medical Incident,02/11/2014,02/11/2014,02/11/2014 12:40:28 PM,02/11/2014 12:43:25 PM,02/11/2014 12:43:58 PM,02/11/2014 12:45:53 PM,02/11/2014 12:53:21 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/11/2014 01:02:00 PM,4400 Block of GEARY BLVD,SF,94118,B07,31,7135,2,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7810280644975, -122.466965657749)",140420196-E14 -130670087,84,13022250,Medical Incident,03/08/2013,03/08/2013,03/08/2013 08:47:46 AM,03/08/2013 08:48:29 AM,03/08/2013 08:48:48 AM,03/08/2013 08:50:17 AM,03/08/2013 08:51:37 AM,03/08/2013 08:59:00 AM,03/08/2013 09:34:25 AM,Code 2 Transport,03/08/2013 10:06:55 AM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",130670087-84 -160751133,75,16029653,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:16:28 AM,03/15/2016 10:18:21 AM,03/15/2016 10:19:44 AM,03/15/2016 10:19:55 AM,03/15/2016 10:31:34 AM,03/15/2016 10:41:37 AM,03/15/2016 11:09:07 AM,Code 2 Transport,03/15/2016 11:50:23 AM,0 Block of SAN LORENZO WAY,San Francisco,94127,B08,39,8565,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7389777646184, -122.464255454182)",160751133-75 -160601240,87,16023858,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:44:25 AM,02/29/2016 10:47:25 AM,02/29/2016 10:49:24 AM,02/29/2016 10:50:16 AM,02/29/2016 10:59:52 AM,02/29/2016 11:14:28 AM,02/29/2016 11:22:20 AM,Code 2 Transport,02/29/2016 11:50:27 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160601240-87 -133400191,78,13115236,Structure Fire,12/06/2013,12/06/2013,12/06/2013 12:34:20 PM,12/06/2013 12:35:33 PM,12/06/2013 12:36:06 PM,12/06/2013 12:36:25 PM,12/06/2013 12:38:31 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:43:09 PM,1400 Block of 44TH AVE,SF,94122,B08,23,7655,3,3,3,true,Alarm,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7595893401722, -122.503649903811)",133400191-78 -120090139,T03,12003074,Medical Incident,01/09/2012,01/09/2012,01/09/2012 10:07:52 AM,01/09/2012 10:08:54 AM,01/09/2012 10:09:45 AM,01/09/2012 10:11:17 AM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/09/2012 10:14:19 AM,400 Block of MCALLISTER ST,SF,94102,B02,3,3112,B,2,2,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",120090139-T03 -122940141,E07,12097471,Fuel Spill,10/20/2012,10/20/2012,10/20/2012 10:28:25 AM,10/20/2012 10:31:02 AM,10/20/2012 10:31:50 AM,10/20/2012 10:43:25 AM,10/20/2012 10:48:12 AM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 10:54:22 AM,100 Block of MANCHESTER ST,SF,94110,B06,11,5663,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7446356347755, -122.414198324538)",122940141-E07 -160772401,KM08,16030645,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:55:56 PM,03/17/2016 03:00:14 PM,03/17/2016 03:00:50 PM,03/17/2016 03:01:20 PM,03/17/2016 03:32:42 PM,03/17/2016 03:35:31 PM,03/17/2016 03:50:26 PM,Code 2 Transport,03/17/2016 04:23:14 PM,1300 Block of POWELL ST,San Francisco,94133,B01,2,1353,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",160772401-KM08 -160762630,67,16030229,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:15:41 PM,03/16/2016 04:17:40 PM,03/16/2016 04:17:52 PM,03/16/2016 04:18:00 PM,03/16/2016 04:49:13 PM,03/16/2016 04:49:16 PM,03/16/2016 04:53:48 PM,Code 2 Transport,03/16/2016 05:35:39 PM,CABRILLO ST/12TH AV,San Francisco,94118,B07,31,7143,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7750765642202, -122.470297903243)",160762630-67 -130900341,RS1,13030259,Structure Fire,03/31/2013,03/31/2013,03/31/2013 10:14:06 PM,03/31/2013 10:16:12 PM,03/31/2013 10:18:36 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 10:23:08 PM,3100 Block of BRODERICK ST,SF,94123,B04,16,4223,3,3,3,false,Alarm,1,RESCUE SQUAD,13,4,2,Marina,"(37.799286568083, -122.444348958408)",130900341-RS1 -133240028,B04,13109885,Alarms,11/20/2013,11/19/2013,11/20/2013 02:28:51 AM,11/20/2013 02:30:12 AM,11/20/2013 02:30:41 AM,11/20/2013 02:32:14 AM,11/20/2013 02:35:07 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Fire,11/20/2013 02:37:21 AM,1200 Block of BUCHANAN ST,SF,94115,B02,5,3426,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7816468439098, -122.428929933146)",133240028-B04 -160260309,78,16010177,Medical Incident,01/26/2016,01/25/2016,01/26/2016 02:59:41 AM,01/26/2016 02:59:41 AM,01/26/2016 03:00:19 AM,01/26/2016 03:00:30 AM,01/26/2016 03:07:24 AM,01/26/2016 03:31:52 AM,01/26/2016 03:36:08 AM,Code 2 Transport,01/26/2016 04:09:18 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160260309-78 -160330684,88,16012869,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:03:33 AM,02/02/2016 08:03:58 AM,02/02/2016 08:04:09 AM,02/02/2016 08:04:35 AM,02/02/2016 08:07:29 AM,02/02/2016 08:25:07 AM,02/02/2016 08:48:53 AM,Code 2 Transport,02/02/2016 09:07:17 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160330684-88 -102590253,E03,10081868,Medical Incident,09/16/2010,09/16/2010,09/16/2010 02:55:56 PM,09/16/2010 02:57:11 PM,09/16/2010 02:59:44 PM,09/16/2010 03:00:31 PM,09/16/2010 03:05:08 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 03:10:15 PM,MARKET ST/7TH ST,SF,94103,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",102590253-E03 -123200001,E36,12106238,Traffic Collision,11/15/2012,11/14/2012,11/15/2012 12:07:06 AM,11/15/2012 12:07:23 AM,11/15/2012 12:07:48 AM,11/15/2012 12:09:53 AM,11/15/2012 12:12:20 AM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Other,11/15/2012 12:16:08 AM,OCTAVIA ST/MARKET ST,SF,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",123200001-E36 -112590010,E03,11085250,Structure Fire,09/16/2011,09/15/2011,09/16/2011 12:50:36 AM,09/16/2011 12:50:36 AM,09/16/2011 12:50:44 AM,09/16/2011 12:51:56 AM,09/16/2011 12:53:25 AM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/16/2011 12:53:57 AM,FRANKLIN ST/GEARY BL,SF,94109,B04,3,3222,3,3,3,true,,1,ENGINE,1,4,5,Western Addition,"(37.7854822436864, -122.423027555652)",112590010-E03 -160782494,68,16031067,Medical Incident,03/18/2016,03/18/2016,03/18/2016 03:58:26 PM,03/18/2016 03:59:20 PM,03/18/2016 04:00:02 PM,03/18/2016 04:00:23 PM,03/18/2016 04:03:25 PM,03/18/2016 04:20:51 PM,03/18/2016 04:30:00 PM,Code 3 Transport,03/18/2016 05:33:28 PM,1700 Block of DOLORES ST,San Francisco,94110,B06,32,5575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.741569515463, -122.424013506637)",160782494-68 -103180392,85,10102102,Medical Incident,11/14/2010,11/14/2010,11/14/2010 10:40:26 PM,11/14/2010 10:41:21 PM,11/14/2010 10:43:25 PM,11/14/2010 10:43:34 PM,11/14/2010 10:46:18 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,No Merit,11/14/2010 10:54:47 PM,700 Block of NATOMA ST,SF,94103,B02,1,2318,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",103180392-85 -160710921,55,16028145,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:12:09 AM,03/11/2016 09:12:52 AM,03/11/2016 09:13:11 AM,03/11/2016 09:14:21 AM,03/11/2016 09:25:13 AM,03/11/2016 09:39:13 AM,03/11/2016 09:56:17 AM,Code 2 Transport,03/11/2016 10:55:51 AM,1600 Block of KEITH ST,San Francisco,94124,B10,17,6551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7309508792927, -122.388067096627)",160710921-55 -120660187,83,12021828,Medical Incident,03/06/2012,03/06/2012,03/06/2012 12:28:17 PM,03/06/2012 12:29:23 PM,03/06/2012 12:30:01 PM,03/06/2012 12:30:52 PM,03/06/2012 12:36:14 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 12:37:43 PM,CLEMENTINA ST/9TH ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7741996547315, -122.412170113572)",120660187-83 -131240241,KM12,13041866,Medical Incident,05/04/2013,05/04/2013,05/04/2013 02:38:38 PM,05/04/2013 02:39:01 PM,05/04/2013 02:55:49 PM,05/04/2013 02:56:14 PM,05/04/2013 03:17:54 PM,05/04/2013 03:24:18 PM,05/04/2013 03:47:17 PM,Code 2 Transport,05/04/2013 04:15:31 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",131240241-KM12 -160670299,88,16026601,Medical Incident,03/07/2016,03/06/2016,03/07/2016 04:56:21 AM,03/07/2016 04:56:51 AM,03/07/2016 04:57:52 AM,03/07/2016 04:58:01 AM,03/07/2016 04:59:40 AM,03/07/2016 05:09:14 AM,03/07/2016 05:26:14 AM,Code 2 Transport,03/07/2016 05:53:53 AM,3RD ST/MARIN ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7490047598095, -122.387456311596)",160670299-88 -111940041,KM15,11063934,Medical Incident,07/13/2011,07/12/2011,07/13/2011 04:09:58 AM,07/13/2011 04:15:57 AM,07/13/2011 04:18:06 AM,07/13/2011 04:18:43 AM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 04:32:07 AM,900 Block of PLYMOUTH AVE,SF,94112,B09,33,8465,2,2,2,false,,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7191336251194, -122.45618965375)",111940041-KM15 -160671458,52,16026745,Medical Incident,03/07/2016,03/07/2016,03/07/2016 12:42:52 PM,03/07/2016 12:42:52 PM,03/07/2016 12:44:02 PM,03/07/2016 12:44:08 PM,03/07/2016 12:55:32 PM,03/07/2016 01:48:41 PM,03/07/2016 02:07:33 PM,Code 2 Transport,03/07/2016 02:48:22 PM,TREAT AV/HARRISON ST,San Francisco,94110,B02,7,5245,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7654476102712, -122.413105244954)",160671458-52 -160362038,KM08,16014266,Medical Incident,02/05/2016,02/05/2016,02/05/2016 01:25:26 PM,02/05/2016 01:25:26 PM,02/05/2016 01:25:59 PM,02/05/2016 01:27:03 PM,02/05/2016 01:35:51 PM,02/05/2016 01:55:09 PM,02/05/2016 02:21:32 PM,Code 2 Transport,02/05/2016 03:23:36 PM,1700 Block of THE EMBARCADERO,San Francisco,94133,B01,28,933,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",160362038-KM08 -123080171,E07,12102382,Medical Incident,11/03/2012,11/03/2012,11/03/2012 01:04:28 PM,11/03/2012 01:05:52 PM,11/03/2012 01:06:08 PM,11/03/2012 01:07:00 PM,11/03/2012 01:09:43 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,No Merit,11/03/2012 01:11:41 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7580957160416, -122.421301773834)",123080171-E07 -121460015,E31,12048327,Medical Incident,05/25/2012,05/24/2012,05/25/2012 01:45:11 AM,05/25/2012 01:48:27 AM,05/25/2012 01:49:58 AM,05/25/2012 01:51:41 AM,05/25/2012 01:55:24 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Other,05/25/2012 02:04:46 AM,300 Block of 5TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7820328555271, -122.463211509933)",121460015-E31 -110120017,E03,11003848,Outside Fire,01/12/2011,01/11/2011,01/12/2011 01:56:59 AM,01/12/2011 01:58:07 AM,01/12/2011 01:58:53 AM,01/12/2011 02:00:18 AM,01/12/2011 02:02:22 AM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Fire,01/12/2011 02:04:06 AM,HYDE ST/ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",110120017-E03 -160641439,87,16025468,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:03:32 AM,03/04/2016 11:05:15 AM,03/04/2016 11:05:29 AM,03/04/2016 11:05:39 AM,03/04/2016 11:17:47 AM,03/04/2016 11:27:08 AM,03/04/2016 11:42:26 AM,Code 2 Transport,03/04/2016 11:55:38 AM,500 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819285009366, -122.419015659869)",160641439-87 -131060041,E28,13035517,Medical Incident,04/16/2013,04/15/2013,04/16/2013 04:33:47 AM,04/16/2013 04:35:43 AM,04/16/2013 04:36:01 AM,04/16/2013 04:37:34 AM,04/16/2013 04:40:08 AM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/16/2013 05:01:11 AM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.804809171271, -122.406795529826)",131060041-E28 -140850029,E42,14028500,Medical Incident,03/26/2014,03/25/2014,03/26/2014 04:35:26 AM,03/26/2014 04:36:30 AM,03/26/2014 04:36:53 AM,03/26/2014 04:39:09 AM,03/26/2014 04:42:14 AM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/26/2014 04:50:59 AM,1000 Block of GOETTINGEN ST,SAN FRANCISCO,94134,B10,44,6313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7190814709175, -122.403254417719)",140850029-E42 -120530380,T19,12017667,Structure Fire,02/22/2012,02/22/2012,02/22/2012 11:09:57 PM,02/22/2012 11:10:46 PM,02/22/2012 11:11:09 PM,02/22/2012 11:13:21 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/22/2012 11:22:33 PM,2400 Block of 23RD AVE,SF,94116,B08,40,7442,3,3,3,false,Fire,1,TRUCK,5,8,4,Sunset/Parkside,"(37.7419253653114, -122.479981752509)",120530380-T19 -102370225,MA1,10074749,Structure Fire,08/25/2010,08/25/2010,08/25/2010 02:01:26 PM,08/25/2010 02:01:59 PM,08/25/2010 02:02:14 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 05:44:09 PM,1600 Block of 34TH AVE,SF,94122,B08,18,7542,3,3,3,false,,1,SUPPORT,15,8,4,Sunset/Parkside,"(37.7563315945926, -122.492671605402)",102370225-MA1 -110770371,74,11025504,Medical Incident,03/18/2011,03/18/2011,03/18/2011 10:12:03 PM,03/18/2011 10:13:06 PM,03/18/2011 10:16:49 PM,03/18/2011 10:16:55 PM,03/18/2011 10:23:47 PM,03/18/2011 10:48:44 PM,03/18/2011 10:59:58 PM,Code 2 Transport,03/18/2011 11:30:17 PM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2144,3,1,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",110770371-74 -160422213,86,16016917,Medical Incident,02/11/2016,02/11/2016,02/11/2016 02:48:15 PM,02/11/2016 02:51:14 PM,02/11/2016 02:52:01 PM,02/11/2016 02:52:17 PM,02/11/2016 02:55:26 PM,02/11/2016 03:15:48 PM,02/11/2016 03:35:43 PM,Code 2 Transport,02/11/2016 04:10:37 PM,MARKET ST/3RD ST,San Francisco,94103,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",160422213-86 -122170016,E11,12071887,Other,08/04/2012,08/03/2012,08/04/2012 01:01:26 AM,08/04/2012 01:02:42 AM,08/04/2012 01:04:24 AM,08/04/2012 01:05:56 AM,08/04/2012 01:08:17 AM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,08/04/2012 01:16:21 AM,2800 Block of MISSION ST,SF,94110,B06,11,5529,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",122170016-E11 -120060064,89,12001974,Medical Incident,01/06/2012,01/05/2012,01/06/2012 06:17:11 AM,01/06/2012 06:19:36 AM,01/06/2012 06:19:52 AM,01/06/2012 06:20:31 AM,01/06/2012 06:22:00 AM,01/06/2012 06:31:36 AM,01/06/2012 06:52:34 AM,Code 2 Transport,01/06/2012 07:08:12 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",120060064-89 -123200045,RC3,12106278,Structure Fire,11/15/2012,11/14/2012,11/15/2012 06:29:29 AM,11/15/2012 06:30:42 AM,11/15/2012 06:31:17 AM,11/15/2012 06:36:47 AM,11/15/2012 06:42:35 AM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Other,11/15/2012 07:14:19 AM,100 Block of BOUTWELL ST,SF,94124,B10,42,6364,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,10,10,Bayview Hunters Point,"(37.7348185901885, -122.405480344355)",123200045-RC3 -130100071,E32,13003338,Structure Fire,01/10/2013,01/09/2013,01/10/2013 07:53:46 AM,01/10/2013 07:58:39 AM,01/10/2013 07:58:58 AM,01/10/2013 08:00:38 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/10/2013 08:05:30 AM,500 Block of ELLSWORTH ST,SF,94110,B06,32,5737,3,3,3,true,Alarm,1,ENGINE,10,6,9,Bernal Heights,"(37.7365568312512, -122.414844736633)",130100071-E32 -112570144,E05,11084701,Medical Incident,09/14/2011,09/14/2011,09/14/2011 11:56:29 AM,09/14/2011 11:57:08 AM,09/14/2011 11:57:36 AM,09/14/2011 11:58:42 AM,09/14/2011 12:00:28 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/14/2011 12:08:50 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",112570144-E05 -140690367,E23,14023445,Medical Incident,03/10/2014,03/10/2014,03/10/2014 11:12:32 PM,03/10/2014 11:13:41 PM,03/10/2014 11:13:55 PM,03/10/2014 11:15:26 PM,03/10/2014 11:17:38 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Code 2 Transport,03/10/2014 11:32:46 PM,GREAT HY/KIRKHAM ST,SAN FRANCISCO,94122,B08,23,7724,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7584144537154, -122.509111290304)",140690367-E23 -111750251,72,11057736,Medical Incident,06/24/2011,06/24/2011,06/24/2011 03:21:22 PM,06/24/2011 03:22:18 PM,06/24/2011 03:23:22 PM,06/24/2011 03:23:32 PM,06/24/2011 03:30:48 PM,06/24/2011 03:40:54 PM,06/24/2011 03:57:58 PM,Code 2 Transport,06/24/2011 04:18:07 PM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7748170645635, -122.412845031536)",111750251-72 -111300058,AM04,11042875,Medical Incident,05/10/2011,05/09/2011,05/10/2011 07:33:50 AM,05/10/2011 07:35:43 AM,05/10/2011 07:38:48 AM,05/10/2011 07:40:29 AM,05/10/2011 07:48:30 AM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,No Merit,05/10/2011 07:52:49 AM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,1,1,2,false,,1,PRIVATE,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",111300058-AM04 -111920383,72,11063549,Medical Incident,07/11/2011,07/11/2011,07/11/2011 10:20:10 PM,07/11/2011 10:22:30 PM,07/11/2011 10:22:52 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 10:27:29 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,3,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",111920383-72 -160510096,71,16020307,Medical Incident,02/20/2016,02/19/2016,02/20/2016 12:41:29 AM,02/20/2016 12:42:08 AM,02/20/2016 12:42:54 AM,02/20/2016 12:43:09 AM,02/20/2016 12:55:58 AM,02/20/2016 01:09:18 AM,02/20/2016 01:23:28 AM,Code 2 Transport,02/20/2016 02:24:05 AM,1900 Block of 4TH ST,San Francisco,94158,B03,4,2436,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Potrero Hill,"(37.7654965381521, -122.390602942705)",160510096-71 -121430025,E03,12047411,Medical Incident,05/22/2012,05/21/2012,05/22/2012 02:43:29 AM,05/22/2012 02:44:56 AM,05/22/2012 02:45:20 AM,05/22/2012 02:47:12 AM,05/22/2012 02:49:25 AM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,No Merit,05/22/2012 02:55:29 AM,400 Block of JONES ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",121430025-E03 -102950259,79,10094143,Medical Incident,10/22/2010,10/22/2010,10/22/2010 03:00:10 PM,10/22/2010 03:00:34 PM,10/22/2010 03:00:44 PM,10/22/2010 03:01:13 PM,10/22/2010 03:02:04 PM,04/25/2016 02:07:59 PM,04/25/2016 02:07:59 PM,Patient Declined Transport,10/22/2010 03:26:54 PM,SUTTER ST/STOCKTON ST,SF,94108,B01,1,1324,3,3,3,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",102950259-79 -132530367,E09,13085644,Structure Fire,09/10/2013,09/10/2013,09/10/2013 11:05:21 PM,09/10/2013 11:05:21 PM,09/10/2013 11:06:03 PM,09/10/2013 11:07:26 PM,09/10/2013 11:09:29 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 11:09:58 PM,3RD ST/JERROLD AV,SF,94124,B10,25,6467,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7387419299442, -122.389310056266)",132530367-E09 -90430209,E51,9012792,Alarms,02/12/2009,02/12/2009,02/12/2009 01:14:52 PM,02/12/2009 01:14:53 PM,02/12/2009 01:14:53 PM,04/25/2016 03:30:09 PM,02/12/2009 01:16:00 PM,04/25/2016 03:30:09 PM,04/25/2016 03:30:09 PM,Other,02/12/2009 02:09:24 PM,0 Block of GRAHAM ST,PR,94129,B99,51,4626,3,3,3,false,,1,ENGINE,1,7,2,Presidio,"(37.8007066173192, -122.456882143505)",090430209-E51 -160030477,AM18,16001051,Medical Incident,01/03/2016,01/02/2016,01/03/2016 04:10:46 AM,01/03/2016 04:11:20 AM,01/03/2016 04:11:33 AM,01/03/2016 04:13:03 AM,01/03/2016 04:15:36 AM,01/03/2016 04:27:55 AM,01/03/2016 04:33:43 AM,Code 2 Transport,01/03/2016 04:55:32 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160030477-AM18 -130250061,E03,13008534,Medical Incident,01/25/2013,01/24/2013,01/25/2013 06:20:29 AM,01/25/2013 06:21:10 AM,01/25/2013 06:21:19 AM,01/25/2013 06:23:52 AM,01/25/2013 06:24:34 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/25/2013 06:26:50 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",130250061-E03 -160550802,74,16021922,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:37:12 AM,02/24/2016 08:38:10 AM,02/24/2016 08:38:26 AM,02/24/2016 08:38:38 AM,02/24/2016 08:46:33 AM,02/24/2016 08:53:59 AM,02/24/2016 09:32:39 AM,Code 2 Transport,02/24/2016 09:49:22 AM,0 Block of GARRISON AVE,San Francisco,94134,B09,44,6252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7107126536652, -122.412959518511)",160550802-74 -121760343,E39,12058644,Medical Incident,06/24/2012,06/24/2012,06/24/2012 07:04:24 PM,06/24/2012 07:05:05 PM,06/24/2012 07:05:25 PM,06/24/2012 07:06:19 PM,06/24/2012 07:08:31 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Patient Declined Transport,06/24/2012 07:23:00 PM,0 Block of SANTA CLARA AVE,SF,94127,B08,39,8563,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7388821506292, -122.465935520144)",121760343-E39 -131310199,E39,13044239,Medical Incident,05/11/2013,05/11/2013,05/11/2013 12:14:42 PM,05/11/2013 12:15:59 PM,05/11/2013 12:17:20 PM,05/11/2013 12:17:57 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 12:18:47 PM,2500 Block of TARAVAL ST,SF,94116,B08,18,7612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,8,4,Sunset/Parkside,"(37.7423270680376, -122.493375821676)",131310199-E39 -160062291,AM10,16002457,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:24:36 PM,01/06/2016 03:24:36 PM,01/06/2016 03:24:48 PM,01/06/2016 03:26:19 PM,01/06/2016 03:30:29 PM,01/06/2016 03:37:33 PM,01/06/2016 04:02:22 PM,Code 2 Transport,01/06/2016 04:46:33 PM,0 Block of BLUXOME ST,San Francisco,94107,B03,8,2223,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7768587665468, -122.396905531975)",160062291-AM10 -102940105,96,10093691,Medical Incident,10/21/2010,10/21/2010,10/21/2010 10:06:18 AM,10/21/2010 10:08:12 AM,10/21/2010 10:11:17 AM,10/21/2010 10:11:28 AM,10/21/2010 10:17:25 AM,10/21/2010 10:38:48 AM,10/21/2010 10:55:51 AM,Code 2 Transport,10/21/2010 11:43:51 AM,PAUL AV/BAYSHORE BL,SF,94124,B10,44,6323,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7236162096696, -122.40078474994)",102940105-96 -160612478,KM09,16024388,Medical Incident,03/01/2016,03/01/2016,03/01/2016 05:01:58 PM,03/01/2016 05:04:13 PM,03/01/2016 05:04:25 PM,03/01/2016 05:05:59 PM,03/01/2016 05:09:09 PM,03/01/2016 05:29:19 PM,03/01/2016 06:04:20 PM,Code 2 Transport,03/01/2016 05:12:21 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160612478-KM09 -160550883,89,16021926,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:58:16 AM,02/24/2016 09:00:16 AM,02/24/2016 09:00:38 AM,02/24/2016 09:00:46 AM,02/24/2016 09:09:49 AM,02/24/2016 09:19:56 AM,02/24/2016 09:34:48 AM,Code 2 Transport,02/24/2016 10:24:40 AM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",160550883-89 -112970340,E02,11098639,Alarms,10/24/2011,10/24/2011,10/24/2011 06:04:08 PM,10/24/2011 06:04:49 PM,10/24/2011 06:05:35 PM,10/24/2011 06:07:22 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 06:11:24 PM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",112970340-E02 -113050048,93,11101161,Structure Fire,11/01/2011,10/31/2011,11/01/2011 03:03:05 AM,11/01/2011 03:03:35 AM,11/01/2011 03:03:52 AM,11/01/2011 03:04:19 AM,11/01/2011 03:07:24 AM,11/01/2011 03:44:44 AM,11/01/2011 03:49:13 AM,Code 2 Transport,11/01/2011 04:08:38 AM,4300 Block of 19TH ST,SF,94114,B05,6,5415,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7590702726622, -122.437570190862)",113050048-93 -113590227,56,11119415,Medical Incident,12/25/2011,12/25/2011,12/25/2011 06:23:36 PM,12/25/2011 06:24:48 PM,12/25/2011 06:25:40 PM,12/25/2011 06:25:57 PM,12/25/2011 06:31:14 PM,12/25/2011 06:40:48 PM,12/25/2011 07:01:42 PM,Code 2 Transport,12/25/2011 07:16:29 PM,700 Block of KEARNY ST,SF,94111,B01,13,1245,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",113590227-56 -160470316,59,16018777,Medical Incident,02/16/2016,02/15/2016,02/16/2016 03:54:30 AM,02/16/2016 03:56:48 AM,02/16/2016 03:58:41 AM,02/16/2016 03:58:57 AM,02/16/2016 04:17:56 AM,02/16/2016 04:33:41 AM,02/16/2016 04:46:47 AM,Code 2 Transport,02/16/2016 05:47:16 AM,0 Block of CHARLTON CT,San Francisco,94123,B04,16,3443,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.7973631878648, -122.431318650656)",160470316-59 -160122840,52,16004869,Medical Incident,01/12/2016,01/12/2016,01/12/2016 05:33:10 PM,01/12/2016 05:36:28 PM,01/12/2016 05:36:50 PM,01/12/2016 05:36:55 PM,01/12/2016 05:56:29 PM,01/12/2016 06:23:26 PM,01/12/2016 06:48:03 PM,Code 2 Transport,01/12/2016 07:13:25 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160122840-52 -123040143,E06,12100857,Medical Incident,10/30/2012,10/30/2012,10/30/2012 12:24:13 PM,10/30/2012 12:25:32 PM,10/30/2012 12:26:25 PM,10/30/2012 12:27:41 PM,10/30/2012 12:32:49 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/30/2012 12:39:59 PM,16TH ST/ALBION ST,SF,94110,B02,6,5235,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7648432997817, -122.42311242302)",123040143-E06 -112580179,AM06,11085036,Medical Incident,09/15/2011,09/15/2011,09/15/2011 12:56:36 PM,09/15/2011 12:58:15 PM,09/15/2011 12:58:35 PM,09/15/2011 12:59:45 PM,09/15/2011 01:04:05 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Medical Examiner,09/15/2011 01:42:49 PM,1400 Block of 42ND AVE,SF,94122,B08,23,7631,E,E,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7596774580307, -122.501641592848)",112580179-AM06 -160131983,62,16005203,Medical Incident,01/13/2016,01/13/2016,01/13/2016 01:12:15 PM,01/13/2016 01:12:15 PM,01/13/2016 01:12:53 PM,01/13/2016 01:12:53 PM,01/13/2016 01:13:16 PM,01/13/2016 01:45:41 PM,01/13/2016 01:55:53 PM,Code 2 Transport,01/13/2016 02:56:11 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160131983-62 -133380255,E42,13114611,Traffic Collision,12/04/2013,12/04/2013,12/04/2013 04:41:13 PM,12/04/2013 04:44:15 PM,12/04/2013 04:44:42 PM,12/04/2013 04:46:28 PM,12/04/2013 04:50:24 PM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 05:00:31 PM,BAYSHORE BL/INDUSTRIAL ST,SF,94124,B10,42,6374,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.737965867581, -122.406910505115)",133380255-E42 -133170061,E40,13107633,Administrative,11/13/2013,11/12/2013,11/13/2013 07:18:08 AM,11/13/2013 07:18:10 AM,11/13/2013 07:18:24 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 07:18:51 AM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",133170061-E40 -123210260,57,12106748,Medical Incident,11/16/2012,11/16/2012,11/16/2012 04:24:59 PM,11/16/2012 04:25:35 PM,11/16/2012 04:27:46 PM,11/16/2012 04:28:00 PM,11/16/2012 04:44:19 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Patient Declined Transport,11/16/2012 05:05:49 PM,3300 Block of MISSION ST,SF,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7429970144076, -122.421644478447)",123210260-57 -131810372,B02,13061734,Medical Incident,06/30/2013,06/30/2013,06/30/2013 06:36:32 PM,06/30/2013 06:36:45 PM,06/30/2013 06:38:25 PM,06/30/2013 06:39:28 PM,06/30/2013 06:41:57 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,06/30/2013 06:47:38 PM,LARKIN ST/GROVE ST,SF,94102,B02,36,1552,E,E,3,false,Potentially Life-Threatening,1,CHIEF,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",131810372-B02 -132250082,AM04,13075866,Medical Incident,08/13/2013,08/13/2013,08/13/2013 08:40:11 AM,08/13/2013 08:42:32 AM,08/13/2013 08:42:43 AM,08/13/2013 08:44:31 AM,08/13/2013 08:45:28 AM,08/13/2013 09:00:30 AM,08/13/2013 09:11:26 AM,Code 3 Transport,08/13/2013 10:00:29 AM,100 Block of URBANO DR,SF,94127,B09,15,8455,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7252041089684, -122.464730624735)",132250082-AM04 -160162063,88,16006457,Medical Incident,01/16/2016,01/16/2016,01/16/2016 02:41:41 PM,01/16/2016 02:44:39 PM,01/16/2016 02:44:52 PM,01/16/2016 02:45:05 PM,01/16/2016 02:47:35 PM,01/16/2016 02:56:58 PM,01/16/2016 03:04:23 PM,Code 2 Transport,01/16/2016 03:45:54 PM,0 Block of ELLIS ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7855635181473, -122.406831011629)",160162063-88 -130560210,87,13018892,Medical Incident,02/25/2013,02/25/2013,02/25/2013 02:11:57 PM,02/25/2013 02:12:44 PM,02/25/2013 02:13:08 PM,02/25/2013 02:13:15 PM,02/25/2013 02:17:32 PM,04/25/2016 01:54:07 PM,04/25/2016 01:54:07 PM,No Merit,02/25/2013 02:25:36 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",130560210-87 -140840271,KM01,14028385,Medical Incident,03/25/2014,03/25/2014,03/25/2014 06:11:28 PM,03/25/2014 06:12:23 PM,03/25/2014 06:12:34 PM,03/25/2014 06:13:04 PM,03/25/2014 06:18:36 PM,03/25/2014 06:27:24 PM,03/25/2014 06:35:35 PM,Code 2 Transport,03/25/2014 07:04:12 PM,GEARY ST/LARKIN ST,SAN FRANCISCO,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",140840271-KM01 -160632341,64,16025129,Medical Incident,03/03/2016,03/03/2016,03/03/2016 03:32:11 PM,03/03/2016 03:33:29 PM,03/03/2016 03:33:48 PM,03/03/2016 03:34:32 PM,03/03/2016 03:44:34 PM,03/03/2016 04:03:08 PM,03/03/2016 04:20:04 PM,Code 2 Transport,03/03/2016 04:54:43 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7196213473258, -122.438507243932)",160632341-64 -130210282,75,13007353,Medical Incident,01/21/2013,01/21/2013,01/21/2013 05:46:37 PM,01/21/2013 05:48:43 PM,01/21/2013 05:49:20 PM,01/21/2013 05:50:27 PM,01/21/2013 06:00:46 PM,01/21/2013 06:29:51 PM,01/21/2013 07:02:26 PM,Code 2 Transport,01/21/2013 07:27:57 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",130210282-75 -113090286,B03,11102779,Alarms,11/05/2011,11/05/2011,11/05/2011 06:21:40 PM,11/05/2011 06:22:53 PM,11/05/2011 06:23:09 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,Other,04/25/2016 02:01:47 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,,1,CHIEF,4,2,8,Mission,"(37.7661259454801, -122.42207304894)",113090286-B03 -160083884,78,16003447,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:23:12 PM,01/08/2016 10:25:22 PM,01/08/2016 10:25:29 PM,01/08/2016 10:25:41 PM,01/08/2016 10:30:20 PM,01/08/2016 10:45:31 PM,01/08/2016 10:57:45 PM,Code 2 Transport,01/08/2016 11:33:16 PM,100 Block of SAN CARLOS ST,San Francisco,94110,B02,7,5423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7609848622239, -122.420120540924)",160083884-78 -132780248,E16,13094554,Medical Incident,10/05/2013,10/05/2013,10/05/2013 03:32:52 PM,10/05/2013 03:34:17 PM,10/05/2013 03:34:38 PM,10/05/2013 03:35:59 PM,10/05/2013 03:37:43 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Other,10/05/2013 03:58:23 PM,2300 Block of GREEN ST,SF,94123,B04,16,3612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7958995297548, -122.437781483312)",132780248-E16 -122000256,E23,12066524,Traffic Collision,07/18/2012,07/18/2012,07/18/2012 02:48:02 PM,07/18/2012 02:51:13 PM,07/18/2012 02:53:49 PM,07/18/2012 02:54:31 PM,07/18/2012 02:59:49 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,Other,07/18/2012 03:09:50 PM,400 Block of MIDDLE WEST DR,SF,94122,B08,23,7565,2,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7664523569659, -122.495934078446)",122000256-E23 -160822317,71,16032617,Medical Incident,03/22/2016,03/22/2016,03/22/2016 03:09:48 PM,03/22/2016 03:10:35 PM,03/22/2016 03:11:11 PM,03/22/2016 03:11:23 PM,03/22/2016 03:16:42 PM,03/22/2016 03:29:52 PM,03/22/2016 03:56:03 PM,Code 2 Transport,03/22/2016 04:25:47 PM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",160822317-71 -140740397,E24,14025195,Fuel Spill,03/15/2014,03/15/2014,03/15/2014 09:25:12 PM,03/15/2014 09:30:37 PM,03/15/2014 09:51:38 PM,03/15/2014 09:51:38 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Fire,03/15/2014 10:02:48 PM,900 Block of GUERRERO ST,SAN FRANCISCO,94110,B06,11,5471,3,3,3,true,Alarm,1,ENGINE,3,6,8,Mission,"(37.755573041962, -122.423107153531)",140740397-E24 -121750052,E13,12057990,Alarms,06/23/2012,06/22/2012,06/23/2012 03:37:08 AM,06/23/2012 03:38:16 AM,06/23/2012 03:38:49 AM,06/23/2012 03:40:36 AM,06/23/2012 03:43:34 AM,04/25/2016 01:58:04 PM,04/25/2016 01:58:04 PM,Other,06/23/2012 03:45:10 AM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",121750052-E13 -132530232,81,13085520,Medical Incident,09/10/2013,09/10/2013,09/10/2013 02:10:12 PM,09/10/2013 02:12:24 PM,09/10/2013 02:12:34 PM,09/10/2013 02:13:38 PM,09/10/2013 02:15:40 PM,09/10/2013 02:30:28 PM,09/10/2013 02:48:14 PM,Code 2 Transport,09/10/2013 03:18:54 PM,BRYANT ST/16TH ST,SF,94110,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",132530232-81 -110140130,RS1,11004605,Medical Incident,01/14/2011,01/14/2011,01/14/2011 11:19:06 AM,01/14/2011 11:20:03 AM,01/14/2011 11:20:42 AM,01/14/2011 11:21:18 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 11:21:25 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",110140130-RS1 -160211697,KM04,16008372,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:30:47 PM,01/21/2016 12:33:14 PM,01/21/2016 12:33:44 PM,01/21/2016 12:34:16 PM,01/21/2016 12:39:12 PM,01/21/2016 01:04:14 PM,01/21/2016 01:15:45 PM,Code 3 Transport,01/21/2016 02:04:45 PM,1400 Block of JACKSON ST,San Francisco,94109,B01,41,1633,3,3,3,false,Non Life-threatening,1,PRIVATE,1,1,3,Russian Hill,"(37.7944063708533, -122.418921298898)",160211697-KM04 -130110349,85,13003892,Medical Incident,01/11/2013,01/11/2013,01/11/2013 09:32:49 PM,01/11/2013 09:35:11 PM,01/11/2013 09:35:31 PM,01/11/2013 09:35:49 PM,01/11/2013 09:39:01 PM,01/11/2013 09:54:36 PM,01/11/2013 10:11:57 PM,Code 2 Transport,01/11/2013 11:00:27 PM,0 Block of PRINCETON ST,SF,94134,B09,42,6354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7292432457405, -122.416170968339)",130110349-85 -122130366,E18,12070859,Medical Incident,07/31/2012,07/31/2012,07/31/2012 11:52:45 PM,07/31/2012 11:53:05 PM,07/31/2012 11:53:15 PM,07/31/2012 11:54:21 PM,07/31/2012 11:56:26 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,No Merit,08/01/2012 12:08:42 AM,1500 Block of 31ST AVE,SF,94122,B08,18,7535,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7583357019527, -122.489587661906)",122130366-E18 -102810388,82,10089488,Medical Incident,10/08/2010,10/08/2010,10/08/2010 09:36:27 PM,10/08/2010 09:36:45 PM,10/08/2010 09:37:35 PM,10/08/2010 09:37:53 PM,10/08/2010 09:44:56 PM,10/08/2010 10:01:09 PM,10/08/2010 10:07:56 PM,Code 3 Transport,10/08/2010 10:35:21 PM,400 Block of PACIFIC AVE,SF,94133,B01,13,1212,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.7974015545937, -122.403291978554)",102810388-82 -112300332,88,11076079,Medical Incident,08/18/2011,08/18/2011,08/18/2011 08:56:02 PM,08/18/2011 08:59:35 PM,08/18/2011 09:01:35 PM,08/18/2011 09:01:40 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,Other,08/18/2011 09:05:00 PM,24TH ST/TREAT AV,SF,94110,B06,7,5477,2,2,2,true,,1,MEDIC,2,6,9,Mission,"(37.7525727580898, -122.41299517484)",112300332-88 -131790329,93,13060918,Medical Incident,06/28/2013,06/28/2013,06/28/2013 05:20:27 PM,06/28/2013 05:21:23 PM,06/28/2013 05:21:33 PM,06/28/2013 05:23:30 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,Other,06/28/2013 05:31:54 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",131790329-93 -160081583,AM08,16003210,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:59:37 AM,01/08/2016 12:00:46 PM,01/08/2016 12:01:08 PM,01/08/2016 12:02:31 PM,01/08/2016 12:06:49 PM,01/08/2016 12:22:54 PM,01/08/2016 12:41:09 PM,Code 2 Transport,01/08/2016 01:21:02 PM,100 Block of 5TH ST,San Francisco,94103,B03,1,2246,2,2,2,false,Non Life-threatening,1,PRIVATE,3,3,6,South of Market,"(37.7817509861584, -122.40515072935)",160081583-AM08 -160520898,53,16020735,Medical Incident,02/21/2016,02/21/2016,02/21/2016 08:46:26 AM,02/21/2016 08:46:47 AM,02/21/2016 08:47:09 AM,02/21/2016 08:47:40 AM,02/21/2016 08:52:47 AM,02/21/2016 09:05:29 AM,02/21/2016 09:21:43 AM,Code 2 Transport,02/21/2016 10:05:28 AM,MARKET ST/HYDE ST,San Francisco,94103,B02,1,1551,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160520898-53 -112520207,T07,11083108,Structure Fire,09/09/2011,09/09/2011,09/09/2011 01:09:24 PM,09/09/2011 01:09:24 PM,09/09/2011 01:09:36 PM,09/09/2011 01:11:55 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Fire,09/09/2011 01:13:22 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",112520207-T07 -131830233,77,13062394,Medical Incident,07/02/2013,07/02/2013,07/02/2013 03:21:53 PM,07/02/2013 03:25:32 PM,07/02/2013 03:26:34 PM,04/25/2016 01:52:00 PM,07/02/2013 03:27:03 PM,07/02/2013 03:50:05 PM,07/02/2013 04:09:10 PM,Code 2 Transport,07/02/2013 04:40:30 PM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",131830233-77 -130570230,T08,13019210,Alarms,02/26/2013,02/26/2013,02/26/2013 04:08:59 PM,02/26/2013 04:10:08 PM,02/26/2013 04:10:45 PM,02/26/2013 04:12:43 PM,02/26/2013 04:16:02 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 04:56:36 PM,100 Block of HUBBELL ST,SF,94107,B03,29,2272,3,3,3,false,Alarm,1,TRUCK,1,3,10,Mission Bay,"(37.767124226296, -122.397640037348)",130570230-T08 -131880277,RC3,13064179,Citizen Assist / Service Call,07/07/2013,07/07/2013,07/07/2013 05:33:26 PM,07/07/2013 05:38:46 PM,07/07/2013 05:40:42 PM,07/07/2013 05:40:52 PM,07/07/2013 05:56:11 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Fire,07/07/2013 06:37:17 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",131880277-RC3 -160371371,62,16014631,Medical Incident,02/06/2016,02/06/2016,02/06/2016 10:14:48 AM,02/06/2016 10:17:23 AM,02/06/2016 10:17:49 AM,02/06/2016 10:18:47 AM,02/06/2016 10:30:27 AM,02/06/2016 10:43:35 AM,02/06/2016 11:05:03 AM,Code 2 Transport,02/06/2016 11:30:47 AM,900 Block of HAMPSHIRE ST,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7569109782313, -122.407609182364)",160371371-62 -102640091,E36,10083475,Medical Incident,09/21/2010,09/21/2010,09/21/2010 09:33:49 AM,09/21/2010 09:35:07 AM,09/21/2010 09:35:38 AM,09/21/2010 09:37:09 AM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 09:39:59 AM,700 Block of NATOMA ST,SF,94103,B02,1,2318,3,3,3,false,,1,ENGINE,3,2,6,South of Market,"(37.7760099210785, -122.412889415461)",102640091-E36 -130170239,77,13005825,Medical Incident,01/17/2013,01/17/2013,01/17/2013 02:47:35 PM,01/17/2013 02:49:06 PM,01/17/2013 02:51:45 PM,01/17/2013 02:52:57 PM,01/17/2013 03:16:22 PM,01/17/2013 03:19:37 PM,01/17/2013 03:46:39 PM,Code 2 Transport,01/17/2013 04:28:02 PM,3700 Block of 22ND ST,SF,94114,B06,24,5466,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7546396842742, -122.431064347786)",130170239-77 -130110110,E17,13003690,Medical Incident,01/11/2013,01/11/2013,01/11/2013 09:44:25 AM,01/11/2013 09:51:51 AM,01/11/2013 09:52:07 AM,01/11/2013 09:54:47 AM,01/11/2013 09:58:59 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/11/2013 10:12:55 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",130110110-E17 -130110087,KM06,13003675,Medical Incident,01/11/2013,01/11/2013,01/11/2013 08:28:59 AM,01/11/2013 08:31:21 AM,01/11/2013 08:31:37 AM,01/11/2013 08:32:11 AM,01/11/2013 08:39:25 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/11/2013 08:41:11 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",130110087-KM06 -112190065,88,11072310,Medical Incident,08/07/2011,08/06/2011,08/07/2011 07:13:14 AM,08/07/2011 07:13:38 AM,08/07/2011 07:14:08 AM,08/07/2011 07:14:20 AM,08/07/2011 07:21:01 AM,04/25/2016 02:03:17 PM,04/25/2016 02:03:17 PM,Other,08/07/2011 07:23:23 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",112190065-88 -160341329,KM13,16013337,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:15:50 AM,02/03/2016 11:16:08 AM,02/03/2016 11:16:28 AM,02/03/2016 11:16:59 AM,02/03/2016 11:25:26 AM,02/03/2016 11:41:10 AM,02/03/2016 12:00:15 PM,Code 3 Transport,02/03/2016 01:00:12 PM,200 Block of BRANNAN ST,San Francisco,94107,B03,8,2153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7830704968216, -122.390626187021)",160341329-KM13 -160422562,AM16,16016944,Medical Incident,02/11/2016,02/11/2016,02/11/2016 04:10:56 PM,02/11/2016 04:12:05 PM,02/11/2016 04:12:18 PM,02/11/2016 04:13:16 PM,02/11/2016 04:26:09 PM,02/11/2016 04:40:01 PM,02/11/2016 04:59:54 PM,Code 2 Transport,02/11/2016 05:36:25 PM,100 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7933796204253, -122.398184018556)",160422562-AM16 -160730784,52,16028915,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:51:54 AM,03/13/2016 09:52:36 AM,03/13/2016 09:53:15 AM,03/13/2016 09:53:30 AM,03/13/2016 10:01:23 AM,03/13/2016 10:20:08 AM,03/13/2016 10:32:27 AM,Code 2 Transport,03/13/2016 11:03:51 AM,0 Block of BELLE AVE,San Francisco,94132,B09,33,8366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7086221660282, -122.470597811212)",160730784-52 -111570115,E03,11051858,Medical Incident,06/06/2011,06/06/2011,06/06/2011 09:53:41 AM,06/06/2011 09:54:40 AM,06/06/2011 09:55:23 AM,04/25/2016 02:04:17 PM,06/06/2011 10:01:15 AM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 10:03:23 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",111570115-E03 -140030109,T03,14000979,Medical Incident,01/03/2014,01/03/2014,01/03/2014 08:22:34 AM,01/03/2014 08:25:19 AM,01/03/2014 08:25:54 AM,01/03/2014 08:27:57 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/03/2014 08:29:40 AM,200 Block of JONES ST,SF,94102,B03,1,1456,,3,3,false,Non Life-threatening,1,TRUCK,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",140030109-T03 -110630225,67,11020735,Medical Incident,03/04/2011,03/04/2011,03/04/2011 02:03:07 PM,03/04/2011 02:04:19 PM,03/04/2011 02:04:31 PM,03/04/2011 02:04:39 PM,03/04/2011 02:12:00 PM,03/04/2011 02:21:37 PM,03/04/2011 02:36:07 PM,Code 2 Transport,03/04/2011 02:49:02 PM,3800 Block of 3RD ST,SF,94124,B10,25,6457,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7422681434531, -122.387936728644)",110630225-67 -111900292,E01,11062927,Medical Incident,07/09/2011,07/09/2011,07/09/2011 08:38:47 PM,07/09/2011 08:41:02 PM,07/09/2011 08:41:15 PM,07/09/2011 08:42:32 PM,07/09/2011 08:44:57 PM,04/25/2016 02:03:44 PM,04/25/2016 02:03:44 PM,Other,07/09/2011 08:55:16 PM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",111900292-E01 -140260210,B03,14008934,Alarms,01/26/2014,01/26/2014,01/26/2014 03:37:41 PM,01/26/2014 03:38:21 PM,01/26/2014 03:38:30 PM,01/26/2014 03:39:34 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Fire,01/26/2014 03:43:33 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",140260210-B03 -111320336,70,11043731,Medical Incident,05/12/2011,05/12/2011,05/12/2011 05:40:41 PM,05/12/2011 05:42:28 PM,05/12/2011 05:43:23 PM,05/12/2011 05:44:24 PM,05/12/2011 05:57:43 PM,05/12/2011 06:05:16 PM,05/12/2011 06:24:07 PM,Code 2 Transport,05/12/2011 06:37:50 PM,BEACH ST/TAYLOR ST,SF,94133,B01,28,1433,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.807275868938, -122.41561643642)",111320336-70 -103000044,KM15,10095667,Medical Incident,10/27/2010,10/26/2010,10/27/2010 04:26:30 AM,10/27/2010 04:29:16 AM,10/27/2010 04:29:28 AM,10/27/2010 04:30:27 AM,10/27/2010 04:34:34 AM,10/27/2010 04:58:28 AM,10/27/2010 05:17:34 AM,Code 2 Transport,10/27/2010 05:57:06 AM,FULTON ST/FRANKLIN ST,SF,94102,B02,36,3217,3,3,3,false,,1,PRIVATE,2,2,5,Hayes Valley,"(37.7789568629409, -122.421709307211)",103000044-KM15 -133030072,AM16,13102849,Traffic Collision,10/30/2013,10/30/2013,10/30/2013 08:57:48 AM,10/30/2013 08:58:33 AM,10/30/2013 08:59:32 AM,10/30/2013 09:00:20 AM,10/30/2013 09:01:30 AM,10/30/2013 09:14:36 AM,10/30/2013 09:22:18 AM,Code 3 Transport,10/30/2013 10:18:33 AM,300 Block of GIRARD ST,SF,94134,B10,42,634,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,9,Portola,"(37.7279571422744, -122.404908112095)",133030072-AM16 -131580439,E09,13053839,Medical Incident,06/07/2013,06/07/2013,06/07/2013 10:49:56 PM,06/07/2013 10:51:11 PM,06/07/2013 10:52:23 PM,06/07/2013 10:53:35 PM,06/07/2013 10:56:56 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/07/2013 11:07:00 PM,1600 Block of JERROLD AVE,SF,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7393422602198, -122.390249021887)",131580439-E09 -111020255,BE1,11033883,Other,04/12/2011,04/12/2011,04/12/2011 03:57:16 PM,04/12/2011 03:57:16 PM,04/12/2011 03:57:16 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/25/2016 02:05:08 PM,1300 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,,1,SUPPORT,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",111020255-BE1 -160732127,AM10,16029039,Medical Incident,03/13/2016,03/13/2016,03/13/2016 05:10:19 PM,03/13/2016 05:11:25 PM,03/13/2016 05:11:39 PM,03/13/2016 05:12:15 PM,03/13/2016 05:20:52 PM,03/13/2016 05:51:09 PM,03/13/2016 06:13:42 PM,Code 2 Transport,03/13/2016 06:57:31 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160732127-AM10 -120490004,96,12016069,Medical Incident,02/18/2012,02/17/2012,02/18/2012 12:10:31 AM,02/18/2012 12:11:08 AM,02/18/2012 12:11:23 AM,02/18/2012 12:12:00 AM,02/18/2012 12:24:10 AM,02/18/2012 12:55:52 AM,02/18/2012 01:26:49 AM,Code 2 Transport,02/18/2012 01:40:47 AM,400 Block of BRUSSELS ST,SF,94134,B10,42,6334,E,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7264977859761, -122.405401796538)",120490004-96 -160503737,AM16,16020274,Medical Incident,02/19/2016,02/19/2016,02/19/2016 10:09:40 PM,02/19/2016 10:09:40 PM,02/19/2016 10:09:52 PM,02/19/2016 10:10:48 PM,02/19/2016 10:16:23 PM,02/19/2016 10:33:17 PM,02/19/2016 10:46:32 PM,Code 3 Transport,02/19/2016 11:36:48 PM,0 Block of STONEYFORD AV,San Francisco,94112,B09,32,5681,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7302836938686, -122.4210807878)",160503737-AM16 -112580343,T15,11085182,Alarms,09/15/2011,09/15/2011,09/15/2011 07:30:52 PM,09/15/2011 07:31:33 PM,09/15/2011 07:32:05 PM,09/15/2011 07:33:34 PM,09/15/2011 07:36:25 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 07:36:58 PM,100 Block of MONTANA ST,SF,94112,B09,33,8373,3,3,3,false,,1,TRUCK,3,9,11,Oceanview/Merced/Ingleside,"(37.7165620568962, -122.457574442781)",112580343-T15 -130330246,81,13011337,Medical Incident,02/02/2013,02/02/2013,02/02/2013 03:41:32 PM,02/02/2013 03:42:46 PM,02/02/2013 03:44:35 PM,02/02/2013 03:44:48 PM,02/02/2013 03:56:13 PM,02/02/2013 04:05:27 PM,02/02/2013 04:21:41 PM,Code 2 Transport,02/02/2013 04:44:56 PM,12TH ST/MARKET ST,SF,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7743586748127, -122.420254280324)",130330246-81 -110430198,RC3,11014277,Medical Incident,02/12/2011,02/12/2011,02/12/2011 12:20:24 PM,02/12/2011 12:21:50 PM,02/12/2011 12:23:05 PM,02/12/2011 12:30:57 PM,02/12/2011 12:34:12 PM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 01:02:43 PM,3900 Block of MISSION ST,SF,94112,B06,32,5632,3,3,3,true,,1,RESCUE CAPTAIN,2,6,9,Bernal Heights,"(37.734771833301, -122.425166810279)",110430198-RC3 -123420291,T14,12114236,Alarms,12/07/2012,12/07/2012,12/07/2012 02:34:30 PM,12/07/2012 02:35:37 PM,12/07/2012 02:35:54 PM,12/07/2012 02:37:17 PM,12/07/2012 02:39:57 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 02:45:36 PM,400 Block of 18TH AVE,SF,94121,B07,31,7161,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",123420291-T14 -132890190,T03,13098298,Medical Incident,10/16/2013,10/16/2013,10/16/2013 01:14:35 PM,10/16/2013 01:14:43 PM,10/16/2013 01:15:51 PM,10/16/2013 01:17:08 PM,10/16/2013 01:19:39 PM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,No Merit,10/16/2013 01:21:23 PM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",132890190-T03 -132200242,AM14,13074360,Medical Incident,08/08/2013,08/08/2013,08/08/2013 04:17:00 PM,08/08/2013 04:18:12 PM,08/08/2013 04:18:24 PM,08/08/2013 04:19:26 PM,08/08/2013 04:21:59 PM,08/08/2013 04:30:46 PM,08/08/2013 04:45:48 PM,Code 2 Transport,08/08/2013 05:15:31 PM,3100 Block of 24TH ST,SF,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7524180928571, -122.414623849785)",132200242-AM14 -160013719,53,16000521,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:01:24 PM,01/01/2016 10:02:54 PM,01/01/2016 10:03:20 PM,01/01/2016 10:04:13 PM,01/01/2016 10:18:13 PM,01/01/2016 10:18:15 PM,01/01/2016 10:31:07 PM,Code 2 Transport,01/01/2016 11:13:40 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160013719-53 -130910190,87,13030447,Medical Incident,04/01/2013,04/01/2013,04/01/2013 01:25:06 PM,04/01/2013 01:25:11 PM,04/01/2013 01:26:13 PM,04/01/2013 01:27:24 PM,04/01/2013 01:38:07 PM,04/01/2013 01:49:12 PM,04/01/2013 02:06:03 PM,Code 2 Transport,04/01/2013 02:28:51 PM,3RD ST/OAKDALE AV,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",130910190-87 -160321017,87,16012510,Medical Incident,02/01/2016,02/01/2016,02/01/2016 09:54:22 AM,02/01/2016 09:55:03 AM,02/01/2016 09:55:26 AM,02/01/2016 09:55:35 AM,02/01/2016 10:02:18 AM,02/01/2016 10:24:34 AM,02/01/2016 10:44:29 AM,Code 2 Transport,02/01/2016 11:03:21 AM,1000 Block of WISCONSIN ST,San Francisco,94107,B10,37,257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",160321017-87 -132000399,68,13067987,Medical Incident,07/19/2013,07/19/2013,07/19/2013 10:55:14 PM,07/19/2013 10:55:45 PM,07/19/2013 10:58:51 PM,04/25/2016 01:51:43 PM,07/19/2013 11:01:59 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Patient Declined Transport,07/19/2013 11:39:07 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",132000399-68 -102310332,55,10072829,Medical Incident,08/19/2010,08/19/2010,08/19/2010 09:40:51 PM,08/19/2010 09:41:13 PM,08/19/2010 09:42:14 PM,08/19/2010 09:42:55 PM,08/19/2010 09:51:43 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Patient Declined Transport,08/19/2010 10:11:38 PM,300 Block of BRYANT ST,SF,94107,B03,35,2135,3,E,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7852209685555, -122.390882646731)",102310332-55 -160523554,AM18,16021009,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:33:29 PM,02/21/2016 10:34:56 PM,02/21/2016 10:36:43 PM,02/21/2016 10:37:27 PM,02/21/2016 10:41:13 PM,02/21/2016 10:49:41 PM,02/21/2016 10:53:34 PM,Code 2 Transport,02/21/2016 11:26:13 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160523554-AM18 -120290086,E15,12009662,Medical Incident,01/29/2012,01/29/2012,01/29/2012 08:10:34 AM,01/29/2012 08:10:56 AM,01/29/2012 08:11:05 AM,01/29/2012 08:12:19 AM,01/29/2012 08:16:02 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 08:24:25 AM,0 Block of ROME ST,SF,94112,B09,15,8333,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.716798658829, -122.444799828903)",120290086-E15 -160063934,KM07,16002648,Traffic Collision,01/06/2016,01/06/2016,01/06/2016 11:59:41 PM,01/06/2016 11:59:41 PM,01/07/2016 12:00:13 AM,01/07/2016 12:00:54 AM,01/07/2016 12:07:28 AM,01/07/2016 01:53:59 AM,01/07/2016 01:50:00 AM,Code 2 Transport,01/07/2016 01:54:17 AM,FOLSOM ST/THE EMBARCADERO SOU,San Francisco,94105,B03,35,2112,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7904750361941, -122.39055604599)",160063934-KM07 -121590044,E41,12052501,Medical Incident,06/07/2012,06/06/2012,06/07/2012 06:00:14 AM,06/07/2012 06:02:22 AM,06/07/2012 06:02:42 AM,06/07/2012 06:05:13 AM,06/07/2012 06:07:06 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/07/2012 06:13:22 AM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",121590044-E41 -160490437,63,16019622,Medical Incident,02/18/2016,02/17/2016,02/18/2016 06:44:31 AM,02/18/2016 06:44:31 AM,02/18/2016 06:44:31 AM,02/18/2016 06:44:31 AM,02/18/2016 06:44:31 AM,02/18/2016 06:53:48 AM,02/18/2016 07:10:02 AM,Code 2 Transport,02/18/2016 08:05:21 AM,5TH ST/HOWARD ST,San Francisco,94103,B99,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160490437-63 -111870256,E36,11061880,Medical Incident,07/06/2011,07/06/2011,07/06/2011 04:04:07 PM,07/06/2011 04:07:44 PM,07/06/2011 04:08:36 PM,07/06/2011 04:10:27 PM,07/06/2011 04:12:07 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 04:20:42 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",111870256-E36 -113310083,T18,11109624,Structure Fire,11/27/2011,11/27/2011,11/27/2011 08:53:53 AM,11/27/2011 08:54:15 AM,11/27/2011 08:54:35 AM,11/27/2011 08:55:31 AM,11/27/2011 09:01:08 AM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/27/2011 09:07:53 AM,2000 Block of GREAT HWY,SF,94116,B08,23,7726,3,3,3,false,,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7481854817293, -122.507749424582)",113310083-T18 -130460235,RC2,13015641,Medical Incident,02/15/2013,02/15/2013,02/15/2013 01:23:41 PM,02/15/2013 01:24:47 PM,02/15/2013 01:24:55 PM,02/15/2013 01:35:10 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 01:36:10 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,E,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,4,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",130460235-RC2 -160670589,KM13,16026633,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:38:14 AM,03/07/2016 08:38:14 AM,03/07/2016 08:38:57 AM,03/07/2016 08:39:33 AM,03/07/2016 08:57:53 AM,03/07/2016 09:37:05 AM,03/07/2016 10:04:09 AM,Code 2 Transport,03/07/2016 10:46:58 AM,POLK ST/CHESTNUT ST,San Francisco,94109,B01,16,3133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8024897363832, -122.423087806458)",160670589-KM13 -160090912,67,16003573,Medical Incident,01/09/2016,01/09/2016,01/09/2016 09:19:58 AM,01/09/2016 09:19:58 AM,01/09/2016 09:20:48 AM,01/09/2016 09:21:17 AM,01/09/2016 09:30:28 AM,01/09/2016 09:53:25 AM,01/09/2016 10:16:57 AM,Code 2 Transport,01/09/2016 11:13:37 AM,1300 Block of DIVISADERO ST,San Francisco,94115,B05,5,4153,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7819997550276, -122.439084739494)",160090912-67 -140280390,T06,14009704,Other,01/28/2014,01/28/2014,01/28/2014 10:01:33 PM,01/28/2014 10:01:51 PM,01/28/2014 10:02:06 PM,01/28/2014 10:03:52 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/28/2014 10:06:25 PM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.7632442446227, -122.419425525666)",140280390-T06 -140700015,E03,14023471,Medical Incident,03/11/2014,03/10/2014,03/11/2014 01:19:55 AM,03/11/2014 01:20:30 AM,03/11/2014 01:21:07 AM,03/11/2014 01:21:36 AM,03/11/2014 01:23:52 AM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Code 2 Transport,03/11/2014 01:28:30 AM,LARKIN ST/OFARRELL ST,SAN FRANCISCO,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",140700015-E03 -111100276,E36,11036381,Medical Incident,04/20/2011,04/20/2011,04/20/2011 03:47:13 PM,04/20/2011 03:48:34 PM,04/20/2011 03:50:05 PM,04/20/2011 04:05:22 PM,04/20/2011 04:06:57 PM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 04:12:22 PM,400 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,,1,ENGINE,3,2,5,Hayes Valley,"(37.7785884194197, -122.424165131998)",111100276-E36 -123300167,E18,12109706,Traffic Collision,11/25/2012,11/25/2012,11/25/2012 12:59:08 PM,11/25/2012 12:59:08 PM,11/25/2012 12:59:39 PM,11/25/2012 01:00:56 PM,11/25/2012 01:03:04 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 01:22:33 PM,SUNSET BL/PACHECO ST,SF,94116,B08,18,7561,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.74968371663, -122.49496874842)",123300167-E18 -160123251,E03,16004913,Medical Incident,01/12/2016,01/12/2016,01/12/2016 07:30:48 PM,01/12/2016 07:32:01 PM,01/12/2016 07:33:32 PM,01/12/2016 07:34:14 PM,01/12/2016 07:39:10 PM,01/12/2016 07:39:11 PM,01/12/2016 08:05:19 PM,Code 3 Transport,01/12/2016 08:06:30 PM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160123251-E03 -120520186,59,12017180,Medical Incident,02/21/2012,02/21/2012,02/21/2012 01:18:18 PM,02/21/2012 01:19:18 PM,02/21/2012 01:19:27 PM,02/21/2012 01:19:44 PM,02/21/2012 01:22:30 PM,02/21/2012 01:48:13 PM,02/21/2012 01:53:39 PM,Code 2 Transport,02/21/2012 02:35:09 PM,2500 Block of HARRISON ST,SF,94110,B06,7,545,3,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7566269297106, -122.412341955639)",120520186-59 -113260322,D3,11108345,Structure Fire,11/22/2011,11/22/2011,11/22/2011 07:03:58 PM,11/22/2011 07:04:54 PM,11/22/2011 07:05:31 PM,11/22/2011 07:06:27 PM,11/22/2011 07:07:42 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 07:12:46 PM,300 Block of CAPP ST,SF,94110,B06,7,5433,3,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.7610971516416, -122.41826370633)",113260322-D3 -160690487,57,16027347,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:29:35 AM,03/09/2016 06:31:34 AM,03/09/2016 06:31:54 AM,03/09/2016 06:32:09 AM,03/09/2016 06:38:02 AM,03/09/2016 06:45:57 AM,03/09/2016 06:50:36 AM,Code 2 Transport,03/09/2016 07:12:41 AM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160690487-57 -160742711,KM05,16029411,Medical Incident,03/14/2016,03/14/2016,03/14/2016 04:37:48 PM,03/14/2016 04:38:16 PM,03/14/2016 04:39:08 PM,03/14/2016 04:41:40 PM,03/14/2016 04:49:06 PM,03/14/2016 05:07:11 PM,03/14/2016 05:24:24 PM,Code 2 Transport,03/14/2016 06:02:34 PM,2700 Block of LOMBARD ST,San Francisco,94123,B04,16,4326,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7985968788664, -122.446649276894)",160742711-KM05 -113320068,E05,11109883,Medical Incident,11/28/2011,11/27/2011,11/28/2011 07:27:35 AM,11/28/2011 07:28:27 AM,11/28/2011 07:29:34 AM,11/28/2011 07:33:34 AM,11/28/2011 07:34:49 AM,04/25/2016 02:01:26 PM,04/25/2016 02:01:26 PM,Other,11/28/2011 07:54:23 AM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,2,2,2,true,,1,ENGINE,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",113320068-E05 -160731066,AM04,16028944,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:49:06 AM,03/13/2016 11:50:45 AM,03/13/2016 11:51:05 AM,03/13/2016 11:51:36 AM,03/13/2016 11:56:46 AM,03/13/2016 12:12:57 PM,03/13/2016 12:27:05 PM,Code 2 Transport,03/13/2016 12:53:13 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160731066-AM04 -160322606,KM02,16012671,Medical Incident,02/01/2016,02/01/2016,02/01/2016 05:04:45 PM,02/01/2016 05:05:53 PM,02/01/2016 05:09:38 PM,02/01/2016 05:10:34 PM,02/01/2016 05:20:12 PM,02/01/2016 05:50:31 PM,02/01/2016 05:57:03 PM,Code 2 Transport,02/01/2016 06:38:15 PM,100 Block of BELGRAVE AVE,San Francisco,94117,B05,12,5263,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Inner Sunset,"(37.7595963913319, -122.450389170062)",160322606-KM02 -160560532,AM24,16022261,Medical Incident,02/25/2016,02/24/2016,02/25/2016 06:59:47 AM,02/25/2016 06:59:47 AM,02/25/2016 07:00:15 AM,02/25/2016 07:00:45 AM,02/25/2016 07:04:05 AM,02/25/2016 07:09:26 AM,02/25/2016 07:24:02 AM,Code 2 Transport,02/25/2016 07:55:11 AM,200 Block of LARKIN ST,San Francisco,94102,B02,36,1645,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",160560532-AM24 -112840415,E08,11094218,Medical Incident,10/11/2011,10/11/2011,10/11/2011 11:19:29 PM,10/11/2011 11:21:56 PM,10/11/2011 11:22:18 PM,10/11/2011 11:23:47 PM,10/11/2011 11:25:46 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 11:37:16 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",112840415-E08 -112500178,E18,11082461,Medical Incident,09/07/2011,09/07/2011,09/07/2011 01:04:15 PM,09/07/2011 01:06:49 PM,09/07/2011 01:07:19 PM,09/07/2011 01:08:28 PM,09/07/2011 01:13:22 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 02:02:47 PM,LINCOLN WY/GREAT HY,SF,94122,B08,23,7722,3,3,3,true,,1,ENGINE,2,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",112500178-E18 -160272154,75,16010709,Medical Incident,01/27/2016,01/27/2016,01/27/2016 02:22:50 PM,01/27/2016 02:25:02 PM,01/27/2016 02:25:49 PM,01/27/2016 02:26:05 PM,01/27/2016 02:32:29 PM,01/27/2016 02:46:08 PM,01/27/2016 02:55:47 PM,Code 2 Transport,01/27/2016 03:37:28 PM,DIVISION ST/11TH ST,San Francisco,94103,B02,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7694111910912, -122.410931089145)",160272154-75 -131760137,E21,13059669,Citizen Assist / Service Call,06/25/2013,06/25/2013,06/25/2013 10:36:19 AM,06/25/2013 10:36:20 AM,06/25/2013 10:36:20 AM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Fire,06/25/2013 10:52:11 AM,700 Block of STEINER ST,SF,94117,B05,21,3631,3,3,3,true,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7760958575257, -122.432866504305)",131760137-E21 -160430258,63,16017128,Medical Incident,02/12/2016,02/11/2016,02/12/2016 02:37:51 AM,02/12/2016 02:40:22 AM,02/12/2016 02:40:30 AM,02/12/2016 02:41:38 AM,02/12/2016 02:48:26 AM,02/12/2016 02:50:20 AM,02/12/2016 03:16:43 AM,Code 2 Transport,02/12/2016 03:57:58 AM,500 Block of VISITACION AV,San Francisco,94134,B10,44,6255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7105978615874, -122.404694677438)",160430258-63 -160370866,AM04,16014583,Medical Incident,02/06/2016,02/05/2016,02/06/2016 06:25:07 AM,02/06/2016 06:29:35 AM,02/06/2016 06:29:59 AM,02/06/2016 06:30:50 AM,02/06/2016 06:36:36 AM,02/06/2016 06:48:15 AM,02/06/2016 06:56:20 AM,Code 2 Transport,02/06/2016 07:47:15 AM,3100 Block of 22ND ST,San Francisco,94110,B06,7,5472,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7555901594439, -122.417118050434)",160370866-AM04 -102500064,E14,10078914,Medical Incident,09/07/2010,09/06/2010,09/07/2010 07:41:23 AM,09/07/2010 07:42:10 AM,09/07/2010 07:42:43 AM,09/07/2010 07:43:25 AM,09/07/2010 07:46:19 AM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 08:11:44 AM,300 Block of 23RD AVE,SF,94121,B07,14,7175,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7811588503246, -122.482594276939)",102500064-E14 -122860337,AM18,12094741,Medical Incident,10/12/2012,10/12/2012,10/12/2012 09:51:02 PM,10/12/2012 09:52:49 PM,10/12/2012 09:53:23 PM,10/12/2012 09:54:00 PM,10/12/2012 10:03:07 PM,10/12/2012 10:19:05 PM,10/12/2012 10:28:33 PM,Code 2 Transport,10/12/2012 11:14:45 PM,900 Block of HOWARD ST,SF,94103,B03,1,2245,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811500329072, -122.405277197305)",122860337-AM18 -140550166,KM12,14018556,Medical Incident,02/24/2014,02/24/2014,02/24/2014 12:26:02 PM,02/24/2014 12:28:46 PM,02/24/2014 12:29:11 PM,02/24/2014 12:29:38 PM,02/24/2014 12:33:33 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,No Merit,02/24/2014 12:34:01 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",140550166-KM12 -110340213,E44,11011185,Vehicle Fire,02/03/2011,02/03/2011,02/03/2011 02:17:13 PM,02/03/2011 02:19:33 PM,02/03/2011 02:20:19 PM,02/03/2011 02:21:08 PM,02/03/2011 02:27:35 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Fire,02/03/2011 02:29:37 PM,100 Block of BAY SHORE BLVD,SF,94124,B10,44,6271,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",110340213-E44 -121510322,E32,12050166,Outside Fire,05/30/2012,05/30/2012,05/30/2012 09:23:51 PM,05/30/2012 09:27:11 PM,05/30/2012 09:27:53 PM,05/30/2012 09:29:05 PM,05/30/2012 09:33:13 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Fire,05/30/2012 09:39:01 PM,0 Block of CAMELLIA AVE,SF,94112,B09,32,6113,3,3,3,true,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.7300279058626, -122.431228703307)",121510322-E32 -120630091,93,12020671,Medical Incident,03/03/2012,03/02/2012,03/03/2012 06:35:15 AM,03/03/2012 06:37:53 AM,03/03/2012 06:38:02 AM,03/03/2012 06:38:20 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,04/25/2016 01:59:52 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,1,1,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",120630091-93 -122820280,E36,12093448,Medical Incident,10/08/2012,10/08/2012,10/08/2012 07:02:39 PM,10/08/2012 07:05:27 PM,10/08/2012 07:06:30 PM,10/08/2012 07:06:37 PM,10/08/2012 07:09:33 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/08/2012 07:16:51 PM,100 Block of GOUGH ST,SF,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7747945946049, -122.422481808427)",122820280-E36 -103390359,81,10108674,Medical Incident,12/05/2010,12/05/2010,12/05/2010 10:44:23 PM,12/05/2010 10:44:23 PM,12/05/2010 10:44:42 PM,12/05/2010 10:46:11 PM,12/05/2010 10:55:46 PM,12/05/2010 11:19:49 PM,12/05/2010 11:30:36 PM,Code 2 Transport,12/06/2010 12:01:30 AM,0 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,true,,1,MEDIC,3,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",103390359-81 -160622612,KM08,16024761,Medical Incident,03/02/2016,03/02/2016,03/02/2016 03:53:31 PM,03/02/2016 03:53:31 PM,03/02/2016 03:54:37 PM,03/02/2016 03:55:28 PM,03/02/2016 04:14:25 PM,03/02/2016 04:14:27 PM,03/02/2016 04:30:29 PM,Code 2 Transport,03/02/2016 04:52:32 PM,DON CHEE WY/STEUART ST,San Francisco,94105,B03,35,2131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7937724122673, -122.393860770156)",160622612-KM08 -132490079,85,13083951,Traffic Collision,09/06/2013,09/06/2013,09/06/2013 08:45:56 AM,09/06/2013 08:46:20 AM,09/06/2013 08:46:45 AM,09/06/2013 08:48:24 AM,09/06/2013 08:59:21 AM,09/06/2013 09:15:20 AM,09/06/2013 09:34:02 AM,Code 2 Transport,09/06/2013 10:16:42 AM,SUNSET BL/WAWONA ST,SF,94116,B08,18,7553,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7366350879596, -122.49405381825)",132490079-85 -111570326,E01,11052028,Medical Incident,06/06/2011,06/06/2011,06/06/2011 06:49:42 PM,06/06/2011 06:51:35 PM,06/06/2011 06:52:09 PM,06/06/2011 06:52:39 PM,06/06/2011 06:54:49 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/06/2011 07:02:35 PM,500 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7886287320653, -122.398912581875)",111570326-E01 -102920158,E03,10093097,Medical Incident,10/19/2010,10/19/2010,10/19/2010 11:47:30 AM,10/19/2010 11:49:04 AM,10/19/2010 11:49:25 AM,10/19/2010 11:49:41 AM,10/19/2010 11:50:51 AM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/19/2010 11:54:12 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",102920158-E03 -160643946,61,16025718,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:22:06 PM,03/04/2016 10:23:15 PM,03/04/2016 10:23:46 PM,03/04/2016 10:23:52 PM,03/04/2016 10:25:29 PM,03/04/2016 10:47:26 PM,03/04/2016 10:54:18 PM,Code 2 Transport,03/04/2016 11:33:06 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160643946-61 -132660340,E03,13090382,Medical Incident,09/23/2013,09/23/2013,09/23/2013 06:37:16 PM,09/23/2013 06:39:00 PM,09/23/2013 06:43:19 PM,09/23/2013 06:44:37 PM,09/23/2013 06:48:12 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,No Merit,09/23/2013 06:58:17 PM,SUTTER ST/VAN NESS AV,SF,94109,B04,3,3156,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",132660340-E03 -160053382,78,16002163,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:36:41 PM,01/05/2016 08:36:41 PM,01/05/2016 08:36:58 PM,01/05/2016 08:37:05 PM,01/05/2016 08:41:27 PM,01/05/2016 08:51:07 PM,01/05/2016 08:55:33 PM,Code 2 Transport,01/05/2016 09:42:18 PM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160053382-78 -110660347,E48,11021908,Vehicle Fire,03/07/2011,03/07/2011,03/07/2011 10:24:31 PM,03/07/2011 10:25:23 PM,03/07/2011 10:26:47 PM,03/07/2011 10:27:51 PM,03/07/2011 10:33:21 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Fire,03/07/2011 10:41:57 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",110660347-E48 -122840338,E41,12094093,Medical Incident,10/10/2012,10/10/2012,10/10/2012 10:31:03 PM,10/10/2012 10:31:31 PM,10/10/2012 10:31:49 PM,10/10/2012 10:33:31 PM,10/10/2012 10:36:01 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 10:36:38 PM,2200 Block of VAN NESS AVE,SF,94123,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.7961949216234, -122.423680853797)",122840338-E41 -112150045,T15,11070869,Alarms,08/03/2011,08/02/2011,08/03/2011 05:24:36 AM,08/03/2011 05:24:56 AM,08/03/2011 05:25:11 AM,04/25/2016 02:03:21 PM,08/03/2011 05:32:37 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Other,08/03/2011 05:34:25 AM,400 Block of ATHENS ST,SF,94112,B09,43,615,3,3,3,false,,1,TRUCK,3,9,11,Excelsior,"(37.7208342283008, -122.428956362457)",112150045-T15 -131900059,B02,13064639,Alarms,07/09/2013,07/08/2013,07/09/2013 07:19:23 AM,07/09/2013 07:20:19 AM,07/09/2013 07:22:09 AM,07/09/2013 07:23:50 AM,07/09/2013 07:27:14 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Fire,07/09/2013 07:30:50 AM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",131900059-B02 -131770335,E03,13060211,Medical Incident,06/26/2013,06/26/2013,06/26/2013 07:17:18 PM,06/26/2013 07:19:35 PM,06/26/2013 07:20:08 PM,06/26/2013 07:20:18 PM,06/26/2013 07:23:03 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 07:31:16 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",131770335-E03 -122220373,RS1,12073753,Structure Fire,08/09/2012,08/09/2012,08/09/2012 10:41:26 PM,08/09/2012 10:42:38 PM,08/09/2012 10:42:48 PM,08/09/2012 10:48:14 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/09/2012 10:49:08 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Fire,1,RESCUE SQUAD,8,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",122220373-RS1 -121370173,E10,12045508,Medical Incident,05/16/2012,05/16/2012,05/16/2012 11:30:07 AM,05/16/2012 11:31:24 AM,05/16/2012 11:31:46 AM,05/16/2012 11:32:24 AM,05/16/2012 11:36:59 AM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/16/2012 11:40:45 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",121370173-E10 -132650359,E44,13090053,Medical Incident,09/22/2013,09/22/2013,09/22/2013 09:10:21 PM,09/22/2013 09:11:17 PM,09/22/2013 09:11:38 PM,09/22/2013 09:12:25 PM,09/22/2013 09:16:53 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/22/2013 09:27:05 PM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7120385154865, -122.40773839531)",132650359-E44 -131520342,T03,13051644,Alarms,06/01/2013,06/01/2013,06/01/2013 10:25:55 PM,06/01/2013 10:26:41 PM,06/01/2013 10:27:20 PM,06/01/2013 10:28:41 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 10:36:08 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",131520342-T03 -123490053,E16,12116588,Medical Incident,12/14/2012,12/13/2012,12/14/2012 04:22:25 AM,12/14/2012 04:23:30 AM,12/14/2012 04:23:40 AM,12/14/2012 04:25:27 AM,12/14/2012 04:27:02 AM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/14/2012 04:31:25 AM,1600 Block of GREENWICH ST,SF,94123,B04,16,3234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.7999975397541, -122.427205502151)",123490053-E16 -132010143,E01,13068125,Structure Fire,07/20/2013,07/20/2013,07/20/2013 10:29:01 AM,07/20/2013 10:32:04 AM,07/20/2013 10:32:27 AM,07/20/2013 10:32:48 AM,07/20/2013 10:35:24 AM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 10:44:38 AM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",132010143-E01 -132250046,85,13075841,Medical Incident,08/13/2013,08/12/2013,08/13/2013 04:16:26 AM,08/13/2013 04:19:59 AM,08/13/2013 04:20:18 AM,08/13/2013 04:20:39 AM,08/13/2013 04:37:00 AM,08/13/2013 04:54:12 AM,08/13/2013 05:11:07 AM,Code 2 Transport,08/13/2013 05:30:26 AM,MARTIN LUTHER KING DR/9TH AV,SF,94122,B08,22,7333,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7664758960917, -122.466427952839)",132250046-85 -120840362,E28,12028058,Medical Incident,03/24/2012,03/24/2012,03/24/2012 10:01:07 PM,03/24/2012 10:02:17 PM,03/24/2012 10:03:25 PM,03/24/2012 10:04:37 PM,03/24/2012 10:06:33 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/24/2012 10:16:05 PM,400 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8065032552257, -122.414620177087)",120840362-E28 -112680179,E01,11088571,Medical Incident,09/25/2011,09/25/2011,09/25/2011 12:20:37 PM,09/25/2011 12:20:37 PM,09/25/2011 12:20:37 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 12:35:06 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7850811742657, -122.406497767804)",112680179-E01 -140950231,87,14031983,Medical Incident,04/05/2014,04/05/2014,04/05/2014 02:12:53 PM,04/05/2014 02:15:42 PM,04/05/2014 02:16:09 PM,04/05/2014 02:16:16 PM,04/05/2014 02:33:48 PM,04/05/2014 02:46:25 PM,04/05/2014 03:20:07 PM,Code 2 Transport,04/05/2014 03:48:07 PM,100 Block of SHIPLEY ST,SAN FRANCISCO,94107,B03,1,2215,,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",140950231-87 -160520672,53,16020713,Medical Incident,02/21/2016,02/20/2016,02/21/2016 06:00:57 AM,02/21/2016 06:04:07 AM,02/21/2016 06:04:22 AM,02/21/2016 06:04:47 AM,02/21/2016 06:11:55 AM,02/21/2016 06:29:45 AM,02/21/2016 06:56:30 AM,Code 2 Transport,02/21/2016 07:14:39 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160520672-53 -160723142,60,16028767,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:40:20 PM,03/12/2016 08:41:32 PM,03/12/2016 08:55:17 PM,03/12/2016 08:55:42 PM,03/12/2016 09:11:27 PM,03/12/2016 09:17:29 PM,03/12/2016 09:28:48 PM,Code 2 Transport,03/12/2016 10:02:14 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160723142-60 -121130053,77,12037409,Medical Incident,04/22/2012,04/21/2012,04/22/2012 03:01:15 AM,04/22/2012 03:01:53 AM,04/22/2012 03:02:34 AM,04/22/2012 03:03:02 AM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 03:10:05 AM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",121130053-77 -133430338,E43,13116448,Traffic Collision,12/09/2013,12/09/2013,12/09/2013 07:04:46 PM,12/09/2013 07:06:04 PM,12/09/2013 07:06:37 PM,12/09/2013 07:08:35 PM,12/09/2013 07:10:48 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/09/2013 07:26:22 PM,MISSION ST/ALLISON ST,SF,94112,B09,43,6176,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7146606201137, -122.442564962687)",133430338-E43 -112560156,AM04,11084414,Medical Incident,09/13/2011,09/13/2011,09/13/2011 11:32:04 AM,09/13/2011 11:33:22 AM,09/13/2011 11:33:33 AM,09/13/2011 11:35:23 AM,09/13/2011 11:40:24 AM,09/13/2011 12:16:18 PM,09/13/2011 12:40:10 PM,Code 2 Transport,09/13/2011 01:28:00 PM,2400 Block of 41ST AVE,SF,94116,B08,18,7636,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7410783762927, -122.499127726885)",112560156-AM04 -160621547,61,16024673,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:42:17 AM,03/02/2016 11:42:51 AM,03/02/2016 11:43:04 AM,03/02/2016 11:43:48 AM,03/02/2016 11:50:52 AM,03/02/2016 12:10:05 PM,03/02/2016 12:25:25 PM,Code 2 Transport,03/02/2016 12:57:17 PM,BRANNAN ST/9TH ST,San Francisco,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7700497723189, -122.407001491576)",160621547-61 -103080290,RS2,10098773,Structure Fire,11/04/2010,11/04/2010,11/04/2010 04:43:26 PM,11/04/2010 04:45:21 PM,11/04/2010 04:45:47 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 04:59:25 PM,2500 Block of OCEAN AVE,SF,94132,B08,19,8452,3,3,3,false,,1,RESCUE SQUAD,5,8,7,West of Twin Peaks,"(37.7313894670204, -122.472715463846)",103080290-RS2 -160023392,63,16000941,Medical Incident,01/02/2016,01/02/2016,01/02/2016 10:04:07 PM,01/02/2016 10:04:29 PM,01/02/2016 10:05:07 PM,01/02/2016 10:05:50 PM,01/02/2016 10:10:55 PM,01/02/2016 10:31:22 PM,01/02/2016 10:53:22 PM,Code 2 Transport,01/02/2016 11:37:28 PM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160023392-63 -160302241,77,16011827,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:39:33 PM,01/30/2016 02:39:33 PM,01/30/2016 02:39:44 PM,01/30/2016 02:39:50 PM,01/30/2016 02:45:47 PM,01/30/2016 03:01:23 PM,01/30/2016 03:34:33 PM,Other,01/30/2016 04:21:59 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7205476379806, -122.437805967469)",160302241-77 -123370084,E06,12112061,Medical Incident,12/02/2012,12/01/2012,12/02/2012 01:43:50 AM,12/02/2012 01:48:22 AM,12/02/2012 01:48:59 AM,12/02/2012 01:50:29 AM,12/02/2012 01:55:59 AM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/02/2012 02:03:13 AM,3100 Block of 16TH ST,SF,94103,B02,6,5235,1,1,2,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7649429344541, -122.422375182461)",123370084-E06 -121230072,KM15,12040737,Medical Incident,05/02/2012,05/02/2012,05/02/2012 08:37:19 AM,05/02/2012 08:39:22 AM,05/02/2012 08:40:01 AM,05/02/2012 08:40:37 AM,05/02/2012 08:43:55 AM,05/02/2012 08:58:38 AM,05/02/2012 09:15:24 AM,Code 2 Transport,05/02/2012 09:38:11 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121230072-KM15 -160261634,74,16010290,Medical Incident,01/26/2016,01/26/2016,01/26/2016 11:56:27 AM,01/26/2016 11:57:23 AM,01/26/2016 11:58:25 AM,01/26/2016 11:59:01 AM,01/26/2016 12:12:26 PM,01/26/2016 12:36:31 PM,01/26/2016 12:41:17 PM,Code 2 Transport,01/26/2016 01:24:59 PM,700 Block of POLK ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838069204559, -122.41925042197)",160261634-74 -113320053,T06,11109873,Alarms,11/28/2011,11/27/2011,11/28/2011 06:16:28 AM,11/28/2011 06:17:37 AM,11/28/2011 06:18:28 AM,11/28/2011 06:21:26 AM,11/28/2011 06:21:58 AM,04/25/2016 02:01:26 PM,04/25/2016 02:01:26 PM,Other,11/28/2011 06:25:16 AM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",113320053-T06 -111900023,RS1,11062698,Structure Fire,07/09/2011,07/08/2011,07/09/2011 01:31:24 AM,07/09/2011 01:32:31 AM,07/09/2011 01:32:45 AM,07/09/2011 01:33:58 AM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Other,07/09/2011 01:37:38 AM,800 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,,1,RESCUE SQUAD,9,4,6,Tenderloin,"(37.7872952928592, -122.415806128745)",111900023-RS1 -111970095,E17,11064941,Alarms,07/16/2011,07/16/2011,07/16/2011 08:40:04 AM,07/16/2011 08:40:04 AM,07/16/2011 08:40:15 AM,07/16/2011 08:41:46 AM,07/16/2011 08:44:08 AM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 08:45:52 AM,100 Block of WHITNEY YOUNG CIR,SF,94124,B10,17,1100,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7360363462118, -122.385908786754)",111970095-E17 -160431331,85,16017251,Medical Incident,02/12/2016,02/12/2016,02/12/2016 11:03:47 AM,02/12/2016 11:05:22 AM,02/12/2016 11:08:49 AM,02/12/2016 11:09:19 AM,02/12/2016 11:20:35 AM,02/12/2016 11:40:48 AM,02/12/2016 11:47:42 AM,Code 2 Transport,02/12/2016 12:02:42 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160431331-85 -160300661,75,16011690,Medical Incident,01/30/2016,01/29/2016,01/30/2016 06:20:00 AM,01/30/2016 06:22:33 AM,01/30/2016 06:24:01 AM,01/30/2016 06:24:09 AM,01/30/2016 06:36:56 AM,01/30/2016 06:55:39 AM,01/30/2016 07:10:07 AM,Code 2 Transport,01/30/2016 07:47:53 AM,3600 Block of WAWONA ST,San Francisco,94116,B08,23,7733,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7360605728424, -122.505741468658)",160300661-75 -130110018,E28,13003613,Medical Incident,01/11/2013,01/10/2013,01/11/2013 01:38:36 AM,01/11/2013 01:40:17 AM,01/11/2013 01:41:08 AM,01/11/2013 01:43:12 AM,01/11/2013 01:46:12 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/11/2013 01:53:48 AM,2600 Block of TAYLOR ST,SF,94133,B01,28,1433,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8068011147643, -122.415592391485)",130110018-E28 -102340356,E14,10073778,Medical Incident,08/22/2010,08/22/2010,08/22/2010 10:20:57 PM,08/22/2010 10:23:20 PM,08/22/2010 10:23:45 PM,08/22/2010 10:24:58 PM,08/22/2010 10:26:51 PM,08/22/2010 10:36:18 PM,04/25/2016 02:08:57 PM,Other,08/22/2010 11:01:15 PM,6700 Block of GEARY BLVD,SF,94121,B07,14,7245,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7798957711328, -122.491710309641)",102340356-E14 -112340333,AM10,11077377,Medical Incident,08/22/2011,08/22/2011,08/22/2011 09:35:22 PM,08/22/2011 09:37:08 PM,08/22/2011 09:37:53 PM,08/22/2011 09:38:35 PM,08/22/2011 09:49:02 PM,08/22/2011 10:00:20 PM,08/22/2011 10:14:46 PM,Code 2 Transport,08/22/2011 10:59:30 PM,100 Block of THORNTON AVE,SF,94124,B10,17,6513,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7308811280003, -122.393441784119)",112340333-AM10 -120590262,77,12019489,Medical Incident,02/28/2012,02/28/2012,02/28/2012 04:47:58 PM,02/28/2012 04:48:54 PM,02/28/2012 04:49:04 PM,02/28/2012 04:49:36 PM,02/28/2012 04:53:10 PM,02/28/2012 05:06:37 PM,02/28/2012 05:42:34 PM,Code 2 Transport,02/28/2012 05:54:18 PM,800 Block of 31ST AVE,SF,94121,B07,14,7242,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7732128077051, -122.490615216372)",120590262-77 -103450256,T03,10110640,Medical Incident,12/11/2010,12/11/2010,12/11/2010 03:36:10 PM,12/11/2010 03:36:41 PM,12/11/2010 03:37:02 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 03:38:01 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",103450256-T03 -113380133,94,11111966,Medical Incident,12/04/2011,12/04/2011,12/04/2011 09:32:01 AM,12/04/2011 09:33:48 AM,12/04/2011 09:34:37 AM,12/04/2011 09:34:49 AM,12/04/2011 09:53:44 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Patient Declined Transport,12/04/2011 10:23:55 AM,100 Block of 27TH ST,SF,94110,B06,11,5556,1,1,2,true,,1,MEDIC,1,6,8,Noe Valley,"(37.7471574360743, -122.423541884062)",113380133-94 -111740221,62,11057428,Medical Incident,06/23/2011,06/23/2011,06/23/2011 03:57:12 PM,06/23/2011 03:58:11 PM,06/23/2011 04:00:50 PM,06/23/2011 04:01:06 PM,06/23/2011 04:19:55 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Patient Declined Transport,06/23/2011 04:24:44 PM,0 Block of GRANT AVE,SF,94108,B01,1,1321,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",111740221-62 -160873321,89,16034737,Medical Incident,03/27/2016,03/27/2016,03/27/2016 09:09:47 PM,03/27/2016 09:09:47 PM,03/27/2016 09:10:13 PM,03/27/2016 09:10:22 PM,03/27/2016 09:23:37 PM,03/27/2016 09:52:42 PM,03/27/2016 10:11:36 PM,Code 2 Transport,03/27/2016 10:46:12 PM,TAYLOR ST/JEFFERSON ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.808214052974, -122.41580242723)",160873321-89 -160632912,68,16025184,Medical Incident,03/03/2016,03/03/2016,03/03/2016 05:50:55 PM,03/03/2016 05:50:55 PM,03/03/2016 05:51:14 PM,03/03/2016 05:51:25 PM,03/03/2016 05:58:05 PM,03/03/2016 06:05:47 PM,03/03/2016 06:56:10 PM,Code 2 Transport,03/03/2016 07:16:24 PM,100 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2157,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7872685412524, -122.400188931682)",160632912-68 -122040151,T06,12067783,Medical Incident,07/22/2012,07/22/2012,07/22/2012 10:59:14 AM,07/22/2012 11:00:45 AM,07/22/2012 11:01:33 AM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 11:03:45 AM,3600 Block of 17TH ST,SF,94114,B02,6,5251,E,2,2,false,Potentially Life-Threatening,1,TRUCK,5,2,8,Castro/Upper Market,"(37.7629861188021, -122.427843219467)",122040151-T06 -160882142,KM01,16034989,Medical Incident,03/28/2016,03/28/2016,03/28/2016 02:27:01 PM,03/28/2016 02:29:16 PM,03/28/2016 02:29:56 PM,03/28/2016 02:30:26 PM,03/28/2016 02:34:19 PM,03/28/2016 03:00:45 PM,03/28/2016 03:09:46 PM,Code 3 Transport,03/28/2016 03:56:23 PM,1000 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",160882142-KM01 -102790176,KM01,10088696,Traffic Collision,10/06/2010,10/06/2010,10/06/2010 01:40:02 PM,10/06/2010 01:42:09 PM,10/06/2010 01:43:34 PM,10/06/2010 01:45:18 PM,10/06/2010 01:53:29 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,No Merit,10/06/2010 02:01:35 PM,1100 Block of FELL ST,SF,94117,B05,21,4145,2,2,2,false,,1,PRIVATE,2,5,5,Hayes Valley,"(37.7741149466235, -122.436764397396)",102790176-KM01 -112170210,99,11071727,Medical Incident,08/05/2011,08/05/2011,08/05/2011 02:31:14 PM,08/05/2011 02:32:05 PM,08/05/2011 02:32:48 PM,08/05/2011 02:34:54 PM,08/05/2011 02:41:52 PM,08/05/2011 02:53:29 PM,08/05/2011 02:59:08 PM,Code 2 Transport,08/05/2011 03:43:02 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",112170210-99 -122890286,E36,12095699,Medical Incident,10/15/2012,10/15/2012,10/15/2012 04:46:24 PM,10/15/2012 04:47:09 PM,10/15/2012 04:47:26 PM,10/15/2012 04:48:38 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 04:49:09 PM,MISSION ST/MARY ST,SF,94103,B03,1,2246,E,E,3,true,Non Life-threatening,1,ENGINE,6,3,6,South of Market,"(37.7821194192723, -122.407254675951)",122890286-E36 -113040055,E05,11100825,Medical Incident,10/31/2011,10/30/2011,10/31/2011 06:04:09 AM,10/31/2011 06:05:04 AM,10/31/2011 06:06:12 AM,10/31/2011 06:06:53 AM,10/31/2011 06:09:41 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 06:19:55 AM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",113040055-E05 -110010220,T03,11000177,Structure Fire,01/01/2011,12/31/2010,01/01/2011 03:48:40 AM,01/01/2011 03:48:40 AM,01/01/2011 03:48:52 AM,01/01/2011 03:50:07 AM,01/01/2011 03:51:16 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 03:52:47 AM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",110010220-T03 -120120366,72,12004265,Medical Incident,01/12/2012,01/12/2012,01/12/2012 10:30:00 PM,01/12/2012 10:31:15 PM,01/12/2012 10:31:26 PM,01/12/2012 10:31:31 PM,01/12/2012 10:32:59 PM,01/12/2012 10:42:53 PM,01/12/2012 11:14:21 PM,Code 2 Transport,01/12/2012 11:31:26 PM,STANYAN ST/FREDERICK ST,SF,94117,B05,12,4551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.766374073924, -122.452947033535)",120120366-72 -111160209,T11,11038295,Structure Fire,04/26/2011,04/26/2011,04/26/2011 01:29:40 PM,04/26/2011 01:29:40 PM,04/26/2011 01:29:49 PM,04/26/2011 01:30:58 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 01:33:30 PM,AMBER DR/TURQUOISE WY,SF,94131,B06,26,8164,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7443481471112, -122.442629387858)",111160209-T11 -133340002,96,13113087,Medical Incident,11/30/2013,11/29/2013,11/30/2013 12:00:47 AM,11/30/2013 12:01:51 AM,11/30/2013 12:18:50 AM,11/30/2013 12:20:45 AM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/30/2013 12:24:46 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8641,2,3,3,true,Potentially Life-Threatening,1,MEDIC,4,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",133340002-96 -160610079,71,16024145,Medical Incident,03/01/2016,02/29/2016,03/01/2016 12:46:32 AM,03/01/2016 12:46:32 AM,03/01/2016 12:46:46 AM,03/01/2016 12:47:03 AM,03/01/2016 12:56:54 AM,03/01/2016 01:10:33 AM,03/01/2016 01:21:03 AM,Code 2 Transport,03/01/2016 01:59:05 AM,200 Block of 20TH AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7831962163812, -122.479514181601)",160610079-71 -120410157,83,12013634,Traffic Collision,02/10/2012,02/10/2012,02/10/2012 11:19:52 AM,02/10/2012 11:19:55 AM,02/10/2012 11:20:35 AM,02/10/2012 11:21:49 AM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 11:32:07 AM,DOUGLASS ST/27TH ST,SF,94131,B06,26,5554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7462313384095, -122.43801133342)",120410157-83 -160482724,76,16019419,Medical Incident,02/17/2016,02/17/2016,02/17/2016 04:29:24 PM,02/17/2016 04:30:36 PM,02/17/2016 04:30:42 PM,02/17/2016 04:31:06 PM,02/17/2016 04:44:35 PM,02/17/2016 04:52:59 PM,02/17/2016 05:11:48 PM,Code 2 Transport,02/17/2016 05:43:13 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160482724-76 -113330206,AM02,11110325,Medical Incident,11/29/2011,11/29/2011,11/29/2011 02:45:00 PM,11/29/2011 02:46:12 PM,11/29/2011 02:50:16 PM,11/29/2011 02:50:19 PM,11/29/2011 03:02:14 PM,11/29/2011 03:34:42 PM,04/25/2016 02:01:25 PM,Code 2 Transport,11/29/2011 04:41:48 PM,100 Block of ARLETA AVE,SF,94134,B10,44,6267,1,1,2,false,,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7136338116844, -122.405760298273)",113330206-AM02 -120020314,AM18,12000856,Medical Incident,01/02/2012,01/02/2012,01/02/2012 09:31:25 PM,01/02/2012 09:31:28 PM,01/02/2012 09:32:15 PM,01/02/2012 09:33:11 PM,01/02/2012 09:38:25 PM,01/02/2012 09:42:33 PM,01/02/2012 09:45:31 PM,Code 2 Transport,01/02/2012 10:09:04 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7756454671917, -122.412432457912)",120020314-AM18 -131320159,E43,13044564,Medical Incident,05/12/2013,05/12/2013,05/12/2013 01:46:09 PM,05/12/2013 01:48:05 PM,05/12/2013 01:48:38 PM,05/12/2013 01:49:23 PM,05/12/2013 01:51:09 PM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 02:09:41 PM,800 Block of MOSCOW ST,SF,94134,B09,43,6161,3,3,3,false,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7147094376962, -122.432490972814)",131320159-E43 -103250196,E31,10104194,Citizen Assist / Service Call,11/21/2010,11/21/2010,11/21/2010 01:34:47 PM,11/21/2010 01:36:52 PM,11/21/2010 01:37:03 PM,11/21/2010 01:37:48 PM,11/21/2010 01:44:48 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 01:50:57 PM,4600 Block of CALIFORNIA ST,SF,94118,B07,31,7136,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7846372329649, -122.467225537169)",103250196-E31 -131160250,E29,13039143,Medical Incident,04/26/2013,04/26/2013,04/26/2013 07:24:23 PM,04/26/2013 07:25:29 PM,04/26/2013 07:26:48 PM,04/26/2013 07:27:54 PM,04/26/2013 07:31:13 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 07:32:22 PM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7628776667056, -122.419528998826)",131160250-E29 -123430233,T09,12114658,Structure Fire,12/08/2012,12/08/2012,12/08/2012 02:53:57 PM,12/08/2012 02:54:17 PM,12/08/2012 02:54:27 PM,12/08/2012 02:55:35 PM,12/08/2012 02:59:50 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 03:17:00 PM,600 Block of WISCONSIN ST,SF,94107,B10,37,2521,3,3,3,false,Alarm,1,TRUCK,6,10,10,Potrero Hill,"(37.7585798761387, -122.398991240016)",123430233-T09 -160280486,81,16010970,Medical Incident,01/28/2016,01/27/2016,01/28/2016 06:39:05 AM,01/28/2016 06:40:54 AM,01/28/2016 06:41:11 AM,01/28/2016 06:41:22 AM,01/28/2016 06:45:02 AM,01/28/2016 07:09:54 AM,01/28/2016 07:21:02 AM,Code 2 Transport,01/28/2016 07:59:43 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160280486-81 -120810292,57,12026974,Medical Incident,03/21/2012,03/21/2012,03/21/2012 05:14:57 PM,03/21/2012 05:15:16 PM,03/21/2012 05:15:55 PM,03/21/2012 05:16:09 PM,03/21/2012 05:35:28 PM,03/21/2012 05:41:59 PM,03/21/2012 06:18:17 PM,Code 2 Transport,03/21/2012 06:26:23 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",120810292-57 -110180017,B10,11005807,Structure Fire,01/18/2011,01/17/2011,01/18/2011 01:47:17 AM,01/18/2011 01:47:17 AM,01/18/2011 01:47:47 AM,01/18/2011 01:49:23 AM,01/18/2011 01:51:38 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Fire,01/18/2011 02:00:29 AM,23RD ST/SAN BRUNO AV,SF,94110,B10,37,2554,3,3,3,false,,1,CHIEF,1,10,10,Mission,"(37.7543957935287, -122.404484367196)",110180017-B10 -121400032,92,12046370,Medical Incident,05/19/2012,05/18/2012,05/19/2012 02:03:47 AM,05/19/2012 02:05:38 AM,05/19/2012 02:06:12 AM,05/19/2012 02:06:48 AM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/19/2012 02:11:43 AM,500 Block of JONES ST,SF,94102,B01,3,1462,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",121400032-92 -121620022,E24,12053490,Medical Incident,06/10/2012,06/09/2012,06/10/2012 01:08:33 AM,06/10/2012 01:09:18 AM,06/10/2012 01:10:46 AM,06/10/2012 01:11:50 AM,06/10/2012 01:15:01 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 01:32:53 AM,0 Block of EAGLE ST,SF,94114,B06,24,5411,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7582655405732, -122.442897529652)",121620022-E24 -110310041,E33,11010059,Medical Incident,01/31/2011,01/30/2011,01/31/2011 05:09:14 AM,01/31/2011 05:10:01 AM,01/31/2011 05:10:26 AM,01/31/2011 05:12:27 AM,01/31/2011 05:14:05 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/31/2011 05:33:28 AM,3800 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,true,,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7115186082108, -122.466572433425)",110310041-E33 -160422120,87,16016905,Medical Incident,02/11/2016,02/11/2016,02/11/2016 02:24:32 PM,02/11/2016 02:25:35 PM,02/11/2016 02:26:27 PM,02/11/2016 02:35:19 PM,02/11/2016 02:50:56 PM,02/11/2016 03:26:51 PM,02/11/2016 04:14:16 PM,Code 2 Transport,02/11/2016 05:06:33 PM,800 Block of HEAD ST,San Francisco,94132,B09,15,8434,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7220266240306, -122.464274630754)",160422120-87 -110860084,KM15,11028292,Medical Incident,03/27/2011,03/26/2011,03/27/2011 04:10:17 AM,03/27/2011 04:11:25 AM,03/27/2011 04:13:12 AM,03/27/2011 04:14:05 AM,03/27/2011 04:27:32 AM,03/27/2011 04:42:16 AM,03/27/2011 04:49:10 AM,Code 2 Transport,03/27/2011 05:25:08 AM,700 Block of BACON ST,SF,94134,B10,42,6335,3,3,3,false,,1,PRIVATE,2,9,9,Portola,"(37.7260069529763, -122.410041179796)",110860084-KM15 -160072110,54,16002883,Medical Incident,01/07/2016,01/07/2016,01/07/2016 02:31:04 PM,01/07/2016 02:32:06 PM,01/07/2016 02:32:35 PM,01/07/2016 02:33:20 PM,01/07/2016 02:46:38 PM,01/07/2016 02:55:22 PM,01/07/2016 03:06:38 PM,Code 2 Transport,01/07/2016 04:01:26 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160072110-54 -160761942,AM12,16030162,Medical Incident,03/16/2016,03/16/2016,03/16/2016 01:26:11 PM,03/16/2016 01:27:53 PM,03/16/2016 01:28:02 PM,03/16/2016 01:29:31 PM,03/16/2016 01:35:41 PM,03/16/2016 01:52:12 PM,03/16/2016 02:01:45 PM,Code 2 Transport,03/16/2016 02:46:13 PM,800 Block of GRANT AVE,San Francisco,94108,B01,13,1313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7947123862364, -122.406321854883)",160761942-AM12 -121000365,E03,12033295,Medical Incident,04/09/2012,04/09/2012,04/09/2012 08:25:43 PM,04/09/2012 08:26:43 PM,04/09/2012 08:28:46 PM,04/09/2012 08:29:59 PM,04/09/2012 08:32:49 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Patient Declined Transport,04/09/2012 08:34:50 PM,HYDE ST/MARKET ST,SF,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",121000365-E03 -160080871,55,16003139,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:41:15 AM,01/08/2016 08:41:55 AM,01/08/2016 08:42:02 AM,01/08/2016 08:44:36 AM,01/08/2016 08:45:22 AM,01/08/2016 08:50:16 AM,01/08/2016 09:08:38 AM,Code 2 Transport,01/08/2016 09:55:39 AM,2900 Block of FOLSOM ST,San Francisco,94110,B06,7,5614,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7500991052351, -122.41391717161)",160080871-55 -121860025,79,12061830,Medical Incident,07/04/2012,07/03/2012,07/04/2012 02:01:19 AM,07/04/2012 02:01:19 AM,07/04/2012 02:02:07 AM,07/04/2012 02:02:31 AM,07/04/2012 02:06:59 AM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Patient Declined Transport,07/04/2012 02:26:40 AM,0 Block of PEARL ST,SF,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Mission,"(37.7702165874997, -122.42393258709)",121860025-79 -140740104,E03,14024959,Medical Incident,03/15/2014,03/15/2014,03/15/2014 09:09:09 AM,03/15/2014 09:11:42 AM,03/15/2014 09:13:59 AM,03/15/2014 09:16:30 AM,03/15/2014 09:18:45 AM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Patient Declined Transport,03/15/2014 09:58:11 AM,1000 Block of LARKIN ST,SAN FRANCISCO,94109,B04,3,1641,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7872715205959, -122.41824964748)",140740104-E03 -130110095,KM06,13003681,Traffic Collision,01/11/2013,01/11/2013,01/11/2013 09:09:51 AM,01/11/2013 09:12:06 AM,01/11/2013 09:12:17 AM,01/11/2013 09:12:51 AM,01/11/2013 09:15:42 AM,01/11/2013 09:24:44 AM,01/11/2013 09:31:59 AM,Code 2 Transport,01/11/2013 09:51:27 AM,MARKET ST/7TH ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",130110095-KM06 -131220246,E08,13041070,Medical Incident,05/02/2013,05/02/2013,05/02/2013 01:19:27 PM,05/02/2013 01:21:10 PM,05/02/2013 01:23:36 PM,05/02/2013 01:25:16 PM,05/02/2013 01:26:18 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 01:31:29 PM,3RD ST/TOWNSEND ST,SF,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7788517157298, -122.39274978786)",131220246-E08 -132300042,55,13077545,Medical Incident,08/18/2013,08/17/2013,08/18/2013 01:58:43 AM,08/18/2013 01:59:25 AM,08/18/2013 02:06:48 AM,08/18/2013 02:06:56 AM,08/18/2013 02:17:12 AM,08/18/2013 02:36:33 AM,08/18/2013 02:41:25 AM,Code 2 Transport,08/18/2013 03:35:26 AM,3100 Block of FILLMORE ST,SF,94123,B04,16,3553,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7987108226628, -122.435887713221)",132300042-55 -130700323,E13,13023454,Medical Incident,03/11/2013,03/11/2013,03/11/2013 05:35:55 PM,03/11/2013 05:36:52 PM,03/11/2013 05:37:29 PM,03/11/2013 05:38:08 PM,03/11/2013 05:41:23 PM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,Other,03/11/2013 05:48:49 PM,MISSION ST/3RD ST,SF,94103,B03,1,2178,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",130700323-E13 -140030076,88,14000949,Medical Incident,01/03/2014,01/02/2014,01/03/2014 05:37:25 AM,01/03/2014 05:38:36 AM,01/03/2014 05:41:49 AM,01/03/2014 05:42:14 AM,01/03/2014 05:49:26 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Patient Declined Transport,01/03/2014 06:25:16 AM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",140030076-88 -131240459,E41,13042062,Medical Incident,05/04/2013,05/04/2013,05/04/2013 11:02:39 PM,05/04/2013 11:03:27 PM,05/04/2013 11:03:36 PM,05/04/2013 11:04:50 PM,05/04/2013 11:06:33 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/04/2013 11:13:47 PM,1300 Block of JONES ST,SF,94108,B01,41,1466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7936750957454, -122.41449049505)",131240459-E41 -140950167,82,14031930,Medical Incident,04/05/2014,04/05/2014,04/05/2014 11:32:45 AM,04/05/2014 11:34:53 AM,04/05/2014 11:35:11 AM,04/05/2014 11:37:16 AM,04/05/2014 11:39:40 AM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,No Merit,04/05/2014 11:43:42 AM,5400 Block of GEARY BLVD,SAN FRANCISCO,94121,B07,31,7161,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7805288737833, -122.477780860361)",140950167-82 -123420247,T03,12114197,Medical Incident,12/07/2012,12/07/2012,12/07/2012 01:36:26 PM,12/07/2012 01:38:01 PM,12/07/2012 01:38:40 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 01:40:30 PM,100 Block of TURK ST,SF,94102,B03,1,1456,2,2,2,false,Potentially Life-Threatening,1,TRUCK,4,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",123420247-T03 -123250272,KM04,12108156,Medical Incident,11/20/2012,11/20/2012,11/20/2012 03:53:41 PM,11/20/2012 03:54:12 PM,11/20/2012 03:55:10 PM,11/20/2012 03:56:23 PM,11/20/2012 04:01:27 PM,11/20/2012 04:22:23 PM,11/20/2012 04:36:04 PM,Code 2 Transport,11/20/2012 05:14:19 PM,CLEMENT ST/7TH AV,SF,94118,B07,31,7127,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7828909801953, -122.465492390241)",123250272-KM04 -133050453,66,13103850,Medical Incident,11/01/2013,11/01/2013,11/01/2013 10:24:44 PM,11/01/2013 10:26:02 PM,11/01/2013 10:27:09 PM,11/01/2013 10:27:17 PM,11/01/2013 10:38:23 PM,11/01/2013 11:01:09 PM,11/01/2013 11:18:52 PM,Code 2 Transport,11/02/2013 12:08:20 AM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054738067872, -122.407570127181)",133050453-66 -140370193,RC3,14012516,Traffic Collision,02/06/2014,02/06/2014,02/06/2014 01:18:13 PM,02/06/2014 01:20:36 PM,02/06/2014 01:22:59 PM,02/06/2014 01:25:07 PM,02/06/2014 02:06:09 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 02:16:29 PM,200 Block of ALEMANY BLVD,SF,94110,B09,32,8137,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,6,10,9,Bernal Heights,"(37.7351501389095, -122.410360631063)",140370193-RC3 -110050183,E08,11001634,Outside Fire,01/05/2011,01/05/2011,01/05/2011 12:04:30 PM,01/05/2011 12:04:30 PM,01/05/2011 12:04:59 PM,01/05/2011 12:06:15 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 12:10:42 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8081576930541, -122.412496867032)",110050183-E08 -160720447,AM22,16028472,Medical Incident,03/12/2016,03/11/2016,03/12/2016 03:29:20 AM,03/12/2016 03:30:53 AM,03/12/2016 03:31:08 AM,03/12/2016 03:31:33 AM,03/12/2016 03:36:15 AM,03/12/2016 03:47:56 AM,03/12/2016 04:12:27 AM,Code 2 Transport,03/12/2016 04:32:14 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160720447-AM22 -120730290,B10,12024313,Structure Fire,03/13/2012,03/13/2012,03/13/2012 05:19:56 PM,03/13/2012 05:21:02 PM,03/13/2012 05:22:04 PM,03/13/2012 05:23:33 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 05:26:57 PM,4300 Block of 23RD ST,SF,94114,B06,24,5516,3,3,3,false,Fire,1,CHIEF,5,6,8,Noe Valley,"(37.7526182578559, -122.439705916869)",120730290-B10 -102800034,93,10088889,Medical Incident,10/07/2010,10/06/2010,10/07/2010 03:33:33 AM,10/07/2010 03:34:55 AM,10/07/2010 03:35:44 AM,10/07/2010 03:36:18 AM,10/07/2010 03:40:43 AM,10/07/2010 04:04:33 AM,10/07/2010 04:11:29 AM,Code 3 Transport,10/07/2010 04:49:59 AM,2600 Block of QUINTARA ST,SF,94116,B08,18,7556,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7479194803427, -122.493766483973)",102800034-93 -113120202,E14,11103656,Medical Incident,11/08/2011,11/08/2011,11/08/2011 01:46:36 PM,11/08/2011 01:47:35 PM,11/08/2011 01:47:50 PM,11/08/2011 01:48:59 PM,11/08/2011 01:51:04 PM,11/08/2011 02:17:29 PM,11/08/2011 02:26:14 PM,Other,11/08/2011 03:00:28 PM,5700 Block of GEARY BLVD,SF,94121,B07,14,7172,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7801345144004, -122.48097066301)",113120202-E14 -111160355,D3,11038419,Structure Fire,04/26/2011,04/26/2011,04/26/2011 07:40:50 PM,04/26/2011 07:43:53 PM,04/26/2011 07:44:49 PM,04/26/2011 07:46:02 PM,04/26/2011 07:49:05 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 07:54:27 PM,3900 Block of 23RD ST,SF,94114,B06,11,5514,3,3,3,false,,1,CHIEF,5,6,8,Noe Valley,"(37.7531464686924, -122.430920904132)",111160355-D3 -160790306,AM20,16031281,Medical Incident,03/19/2016,03/18/2016,03/19/2016 02:08:52 AM,03/19/2016 02:08:52 AM,03/19/2016 02:09:11 AM,03/19/2016 02:10:20 AM,03/19/2016 02:20:50 AM,03/19/2016 02:36:00 AM,03/19/2016 03:04:49 AM,Code 2 Transport,03/19/2016 03:24:05 AM,500 Block of BRANNAN ST,San Francisco,94107,B03,8,2241,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7774865325812, -122.397691886789)",160790306-AM20 -130290381,E01,13010073,Medical Incident,01/29/2013,01/29/2013,01/29/2013 11:41:18 PM,01/29/2013 11:42:21 PM,01/29/2013 11:43:40 PM,01/29/2013 11:45:38 PM,01/29/2013 11:48:37 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/29/2013 11:58:46 PM,700 Block of CLEMENTINA ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7747750238121, -122.411341676645)",130290381-E01 -132500088,E35,13084319,Medical Incident,09/07/2013,09/06/2013,09/07/2013 05:16:26 AM,09/07/2013 05:19:44 AM,09/07/2013 05:20:42 AM,09/07/2013 05:23:53 AM,09/07/2013 05:26:11 AM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/07/2013 05:30:12 AM,1ST ST/FOLSOM ST,SF,94105,B03,35,2137,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7872982139437, -122.394481274637)",132500088-E35 -140350034,T09,14011689,Vehicle Fire,02/04/2014,02/03/2014,02/04/2014 03:39:04 AM,02/04/2014 03:40:12 AM,02/04/2014 03:40:34 AM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Other,02/04/2014 03:42:33 AM,QUINT ST/NEWCOMB AV,SF,94124,B10,42,6444,,3,3,false,Fire,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7384036694155, -122.39538190701)",140350034-T09 -131160212,58,13039108,Medical Incident,04/26/2013,04/26/2013,04/26/2013 05:28:09 PM,04/26/2013 05:29:53 PM,04/26/2013 05:30:10 PM,04/26/2013 05:30:23 PM,04/26/2013 05:34:24 PM,04/26/2013 05:52:20 PM,04/26/2013 05:56:02 PM,Code 2 Transport,04/26/2013 06:30:24 PM,PACIFIC AV/STEINER ST,SF,94115,B04,16,3613,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.793136719645, -122.436381033468)",131160212-58 -120750321,E14,12025030,Alarms,03/15/2012,03/15/2012,03/15/2012 08:49:50 PM,03/15/2012 08:50:30 PM,03/15/2012 08:50:48 PM,03/15/2012 08:52:03 PM,03/15/2012 08:53:54 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Other,03/15/2012 09:03:55 PM,200 Block of 26TH AVE,SF,94121,B07,14,7217,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7847684584929, -122.486087154239)",120750321-E14 -132920213,B09,13099398,Medical Incident,10/19/2013,10/19/2013,10/19/2013 03:02:46 PM,10/19/2013 03:03:22 PM,10/19/2013 03:10:10 PM,10/19/2013 03:11:13 PM,10/19/2013 03:21:45 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 03:44:02 PM,400 Block of COLON AVE,SF,94127,B09,39,8523,3,E,3,false,Potentially Life-Threatening,1,CHIEF,4,9,7,West of Twin Peaks,"(37.7331175479308, -122.457641002996)",132920213-B09 -132830061,85,13096214,Medical Incident,10/10/2013,10/09/2013,10/10/2013 07:54:17 AM,10/10/2013 07:55:14 AM,10/10/2013 07:55:43 AM,10/10/2013 07:58:05 AM,10/10/2013 08:01:38 AM,10/10/2013 08:21:59 AM,10/10/2013 08:41:47 AM,Code 2 Transport,10/10/2013 09:20:54 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",132830061-85 -120630294,58,12020846,Medical Incident,03/03/2012,03/03/2012,03/03/2012 05:03:24 PM,03/03/2012 05:05:10 PM,03/03/2012 05:11:18 PM,03/03/2012 05:15:19 PM,03/03/2012 05:22:16 PM,03/03/2012 05:36:26 PM,03/03/2012 05:50:14 PM,Code 2 Transport,03/03/2012 06:15:28 PM,500 Block of CAYUGA AVE,SF,94112,B09,15,8264,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7289539219455, -122.435416030126)",120630294-58 -160440171,70,16017542,Medical Incident,02/13/2016,02/12/2016,02/13/2016 01:05:31 AM,02/13/2016 01:07:59 AM,02/13/2016 01:10:17 AM,02/13/2016 01:10:24 AM,02/13/2016 01:22:35 AM,02/13/2016 01:31:06 AM,02/13/2016 01:42:17 AM,Code 2 Transport,02/13/2016 02:11:32 AM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7111753869011, -122.41625926444)",160440171-70 -123590089,E13,12120102,Alarms,12/24/2012,12/24/2012,12/24/2012 08:48:06 AM,12/24/2012 08:49:29 AM,12/24/2012 08:49:35 AM,12/24/2012 08:50:46 AM,12/24/2012 08:51:02 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 08:55:38 AM,100 Block of SANSOME ST,SF,94104,B01,13,1165,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7916515232471, -122.400770219415)",123590089-E13 -112670170,E09,11088214,Vehicle Fire,09/24/2011,09/24/2011,09/24/2011 12:16:12 PM,09/24/2011 12:16:45 PM,09/24/2011 12:16:52 PM,09/24/2011 12:17:47 PM,09/24/2011 12:24:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 12:28:59 PM,100 Block of ALEMANY BLVD,SF,94110,B10,42,6361,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",112670170-E09 -160703599,58,16028026,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:53:43 PM,03/10/2016 09:55:19 PM,03/10/2016 09:55:29 PM,03/10/2016 09:56:20 PM,03/10/2016 10:01:55 PM,03/10/2016 10:23:22 PM,03/10/2016 10:46:30 PM,Code 2 Transport,03/10/2016 11:28:48 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160703599-58 -112930182,E01,11097201,Medical Incident,10/20/2011,10/20/2011,10/20/2011 01:25:04 PM,10/20/2011 01:25:04 PM,10/20/2011 01:25:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Fire,10/20/2011 01:46:02 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,2,2,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",112930182-E01 -110190360,T16,11006369,Structure Fire,01/19/2011,01/19/2011,01/19/2011 06:38:02 PM,01/19/2011 06:39:35 PM,01/19/2011 06:39:48 PM,01/19/2011 06:41:01 PM,01/19/2011 06:44:47 PM,04/25/2016 02:06:31 PM,04/25/2016 02:06:31 PM,Other,01/19/2011 06:50:00 PM,2100 Block of PACIFIC AVE,SF,94115,B04,38,3441,3,3,3,false,,1,TRUCK,6,4,2,Pacific Heights,"(37.79392640977, -122.430637263038)",110190360-T16 -130310332,E44,13010697,Medical Incident,01/31/2013,01/31/2013,01/31/2013 06:26:04 PM,01/31/2013 06:26:30 PM,01/31/2013 06:26:41 PM,01/31/2013 06:27:39 PM,01/31/2013 06:29:51 PM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,01/31/2013 06:38:32 PM,ARLETA AV/BAYSHORE BL,SF,94134,B10,44,6271,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",130310332-E44 -121350317,E17,12045007,Medical Incident,05/14/2012,05/14/2012,05/14/2012 07:57:56 PM,05/14/2012 07:59:08 PM,05/14/2012 07:59:20 PM,04/25/2016 01:58:41 PM,05/14/2012 08:07:21 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 08:15:42 PM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7290589753437, -122.385447178388)",121350317-E17 -131610227,E41,13054720,Medical Incident,06/10/2013,06/10/2013,06/10/2013 02:22:31 PM,06/10/2013 02:24:30 PM,06/10/2013 02:24:49 PM,06/10/2013 02:25:43 PM,06/10/2013 02:28:11 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,No Merit,06/10/2013 02:31:02 PM,2000 Block of POLK ST,SF,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",131610227-E41 -160182748,AM08,16007343,Medical Incident,01/18/2016,01/18/2016,01/18/2016 06:43:38 PM,01/18/2016 06:44:44 PM,01/18/2016 06:45:04 PM,01/18/2016 06:45:39 PM,01/18/2016 06:59:00 PM,01/18/2016 07:11:45 PM,01/18/2016 07:26:14 PM,Code 2 Transport,01/18/2016 08:08:29 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94116,B08,39,8624,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",160182748-AM08 -102600160,RC2,10082149,Medical Incident,09/17/2010,09/17/2010,09/17/2010 12:03:15 PM,09/17/2010 12:04:24 PM,09/17/2010 12:04:49 PM,04/25/2016 02:08:33 PM,09/17/2010 12:07:25 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 12:27:21 PM,500 Block of BALBOA ST,SF,94118,B07,31,7123,3,3,3,true,,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7772648752234, -122.464543600448)",102600160-RC2 -123100163,KM09,12103101,Medical Incident,11/05/2012,11/05/2012,11/05/2012 11:28:28 AM,11/05/2012 11:28:45 AM,11/05/2012 11:29:42 AM,11/05/2012 11:30:46 AM,11/05/2012 11:35:15 AM,11/05/2012 11:57:24 AM,11/05/2012 12:10:55 PM,Code 2 Transport,11/05/2012 12:55:02 PM,1800 Block of THE EMBARCADERO,SF,94133,B01,28,935,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8088354051007, -122.414108783784)",123100163-KM09 -113350157,KM10,11110878,Medical Incident,12/01/2011,12/01/2011,12/01/2011 11:40:15 AM,12/01/2011 11:42:35 AM,12/01/2011 11:43:15 AM,12/01/2011 11:43:59 AM,12/01/2011 11:46:52 AM,12/01/2011 12:07:06 PM,12/01/2011 12:14:14 PM,Code 2 Transport,12/01/2011 12:46:42 PM,1600 Block of 9TH AVE,SF,94122,B08,22,7335,3,3,3,false,,1,PRIVATE,1,8,7,Inner Sunset,"(37.7575163019787, -122.465785858602)",113350157-KM10 -112120154,79,11069931,Medical Incident,07/31/2011,07/31/2011,07/31/2011 11:54:57 AM,07/31/2011 11:57:35 AM,07/31/2011 11:57:52 AM,07/31/2011 11:58:15 AM,07/31/2011 12:10:15 PM,07/31/2011 12:18:57 PM,07/31/2011 12:31:25 PM,Code 2 Transport,07/31/2011 12:54:51 PM,2700 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,1,1,2,true,,1,MEDIC,1,10,9,Portola,"(37.7270507466082, -122.403281820851)",112120154-79 -120240096,88,12008038,Medical Incident,01/24/2012,01/24/2012,01/24/2012 10:01:18 AM,01/24/2012 10:03:04 AM,01/24/2012 10:03:47 AM,01/24/2012 10:06:14 AM,01/24/2012 10:09:49 AM,04/25/2016 02:00:28 PM,04/25/2016 02:00:28 PM,Patient Declined Transport,01/24/2012 10:39:48 AM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",120240096-88 -112220016,E26,11073197,Medical Incident,08/10/2011,08/09/2011,08/10/2011 12:55:58 AM,08/10/2011 12:57:42 AM,08/10/2011 12:57:54 AM,08/10/2011 12:59:54 AM,08/10/2011 01:02:42 AM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Unable to Locate,08/10/2011 01:07:41 AM,2300 Block of CASTRO ST,SF,94131,B06,26,5565,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.742895594432, -122.433422735149)",112220016-E26 -121080276,E36,12035835,Alarms,04/17/2012,04/17/2012,04/17/2012 05:54:06 PM,04/17/2012 05:55:17 PM,04/17/2012 05:55:27 PM,04/17/2012 05:56:52 PM,04/17/2012 05:58:37 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/17/2012 06:03:56 PM,100 Block of 9TH ST,SF,94103,B02,36,2336,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",121080276-E36 -160041137,KM02,16001541,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:08:26 AM,01/04/2016 10:10:26 AM,01/04/2016 10:10:32 AM,01/04/2016 10:11:22 AM,01/04/2016 10:15:49 AM,01/04/2016 10:32:54 AM,01/04/2016 10:45:51 AM,Code 2 Transport,01/04/2016 11:29:47 AM,1700 Block of EDDY ST,San Francisco,94115,B05,5,4133,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7808513149724, -122.436427287945)",160041137-KM02 -110320175,E29,11010481,Medical Incident,02/01/2011,02/01/2011,02/01/2011 01:07:38 PM,02/01/2011 01:08:19 PM,02/01/2011 01:08:49 PM,02/01/2011 01:09:21 PM,02/01/2011 01:12:28 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,02/01/2011 01:18:19 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",110320175-E29 -160553129,AM08,16022105,Medical Incident,02/24/2016,02/24/2016,02/24/2016 06:02:44 PM,02/24/2016 06:03:25 PM,02/24/2016 06:03:45 PM,02/24/2016 06:05:00 PM,02/24/2016 06:26:00 PM,02/24/2016 06:26:01 PM,02/24/2016 06:46:50 PM,Code 2 Transport,02/24/2016 07:12:34 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160553129-AM08 -121910220,RC3,12063621,Traffic Collision,07/09/2012,07/09/2012,07/09/2012 02:50:26 PM,07/09/2012 02:50:26 PM,07/09/2012 02:50:38 PM,07/09/2012 02:52:06 PM,07/09/2012 02:53:52 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 03:13:30 PM,18TH ST/VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,6,8,Mission,"(37.7617009099893, -122.421578400735)",121910220-RC3 -102480311,81,10078478,Medical Incident,09/05/2010,09/05/2010,09/05/2010 08:01:48 PM,09/05/2010 08:03:44 PM,09/05/2010 08:06:17 PM,09/05/2010 08:43:34 PM,09/05/2010 08:43:36 PM,09/05/2010 09:03:43 PM,09/05/2010 09:17:12 PM,Code 2 Transport,09/05/2010 09:31:23 PM,3000 Block of 16TH ST,SF,94103,B02,7,5236,2,2,2,true,,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",102480311-81 -122670081,E18,12088137,Traffic Collision,09/23/2012,09/22/2012,09/23/2012 07:43:40 AM,09/23/2012 07:43:40 AM,09/23/2012 07:43:53 AM,09/23/2012 07:44:28 AM,09/23/2012 07:48:39 AM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/23/2012 08:05:43 AM,SUNSET BL/NORIEGA ST,SF,94122,B08,18,7573,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7534138174953, -122.495226538122)",122670081-E18 -160362534,67,16014318,Medical Incident,02/05/2016,02/05/2016,02/05/2016 03:23:34 PM,02/05/2016 03:24:02 PM,02/05/2016 03:24:56 PM,02/05/2016 03:25:02 PM,02/05/2016 03:29:25 PM,02/05/2016 03:54:55 PM,02/05/2016 04:29:13 PM,Code 2 Transport,02/05/2016 04:39:14 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",160362534-67 -160191941,61,16007654,Medical Incident,01/19/2016,01/19/2016,01/19/2016 01:49:13 PM,01/19/2016 01:49:13 PM,01/19/2016 01:51:07 PM,01/19/2016 01:51:21 PM,01/19/2016 02:01:13 PM,01/19/2016 02:16:44 PM,01/19/2016 02:28:48 PM,Code 2 Transport,01/19/2016 03:06:55 PM,JUDSON AV/GENNESSEE ST,San Francisco,94112,B09,15,8232,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.728357552492, -122.451112559186)",160191941-61 -110410248,95,11013622,Medical Incident,02/10/2011,02/10/2011,02/10/2011 03:01:27 PM,02/10/2011 03:02:05 PM,02/10/2011 03:02:54 PM,02/10/2011 03:03:24 PM,02/10/2011 03:05:10 PM,02/10/2011 03:31:01 PM,02/10/2011 03:50:17 PM,Code 2 Transport,02/10/2011 04:21:48 PM,0 Block of 28TH ST,SF,94110,B06,11,5577,3,3,3,true,,1,MEDIC,2,6,8,Noe Valley,"(37.7455620349301, -122.423383986336)",110410248-95 -160841961,63,16033390,Medical Incident,03/24/2016,03/24/2016,03/24/2016 01:03:13 PM,03/24/2016 01:05:02 PM,03/24/2016 01:07:25 PM,03/24/2016 01:07:41 PM,03/24/2016 01:14:43 PM,03/24/2016 01:34:07 PM,03/24/2016 01:59:00 PM,Code 2 Transport,03/24/2016 02:46:01 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160841961-63 -132250044,T10,13075839,Structure Fire,08/13/2013,08/12/2013,08/13/2013 03:40:23 AM,08/13/2013 03:40:24 AM,08/13/2013 03:40:55 AM,08/13/2013 03:43:09 AM,08/13/2013 03:45:15 AM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,Other,08/13/2013 03:45:25 AM,PIERCE ST/SACRAMENTO ST,SF,94115,B04,38,3652,3,3,3,false,Alarm,1,TRUCK,1,4,2,Pacific Heights,"(37.7894216306873, -122.437318569396)",132250044-T10 -132600311,E09,13088070,,09/17/2013,09/17/2013,09/17/2013 03:13:00 PM,09/17/2013 03:14:00 PM,09/17/2013 03:14:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,SFPD,09/17/2013 03:46:00 PM,2700 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,3,3,3,true,Alarm,1,ENGINE,2,10,9,Portola,"(37.7270168369018, -122.403413375689)",132600311-E09 -160392070,59,16015662,Medical Incident,02/08/2016,02/08/2016,02/08/2016 02:29:17 PM,02/08/2016 02:29:17 PM,02/08/2016 02:30:30 PM,02/08/2016 02:30:40 PM,02/08/2016 02:36:08 PM,02/08/2016 02:51:16 PM,02/08/2016 03:06:52 PM,Code 2 Transport,02/08/2016 03:58:21 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160392070-59 -112330331,E02,11077074,Structure Fire,08/21/2011,08/21/2011,08/21/2011 08:30:45 PM,08/21/2011 08:31:26 PM,08/21/2011 08:31:39 PM,08/21/2011 08:32:48 PM,08/21/2011 08:34:42 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/21/2011 08:47:33 PM,0 Block of KRAMER PL,SF,94133,B01,28,1335,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8020804245291, -122.408254700202)",112330331-E02 -160641696,57,16025503,Medical Incident,03/04/2016,03/04/2016,03/04/2016 12:12:39 PM,03/04/2016 12:15:06 PM,03/04/2016 12:15:58 PM,03/04/2016 12:16:46 PM,03/04/2016 12:22:56 PM,03/04/2016 12:33:57 PM,03/04/2016 12:52:17 PM,Code 2 Transport,03/04/2016 01:46:02 PM,KERN ST/DIAMOND ST,San Francisco,94131,B06,26,8146,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7338897472868, -122.434049927915)",160641696-57 -121100247,85,12036428,Medical Incident,04/19/2012,04/19/2012,04/19/2012 03:19:32 PM,04/19/2012 03:20:20 PM,04/19/2012 03:20:38 PM,04/19/2012 03:20:57 PM,04/19/2012 03:21:02 PM,04/19/2012 03:44:17 PM,04/19/2012 04:00:33 PM,Code 2 Transport,04/19/2012 04:21:24 PM,3000 Block of LARKIN ST,SF,94109,B01,28,1623,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8059751797269, -122.422033155092)",121100247-85 -140830054,54,14027889,Citizen Assist / Service Call,03/24/2014,03/23/2014,03/24/2014 07:34:54 AM,03/24/2014 07:35:53 AM,03/24/2014 07:45:28 AM,03/24/2014 07:45:54 AM,03/24/2014 07:54:31 AM,03/24/2014 08:17:20 AM,03/24/2014 08:44:14 AM,Code 2 Transport,03/24/2014 09:21:25 AM,2000 Block of 43RD AVE,SAN FRANCISCO,94116,B08,23,7645,3,3,3,true,Alarm,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7484404926143, -122.501933050867)",140830054-54 -140260111,E35,14008843,Alarms,01/26/2014,01/26/2014,01/26/2014 09:53:39 AM,01/26/2014 09:54:44 AM,01/26/2014 09:54:52 AM,01/26/2014 09:55:35 AM,01/26/2014 10:03:28 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 10:13:24 AM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",140260111-E35 -140180340,E37,14006311,Medical Incident,01/18/2014,01/18/2014,01/18/2014 07:39:57 PM,01/18/2014 07:40:38 PM,01/18/2014 07:43:11 PM,01/18/2014 07:44:10 PM,01/18/2014 07:45:28 PM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/18/2014 07:50:33 PM,WISCONSIN ST/CONNECTICUT ST,SF,94107,B10,37,2565,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536847460271, -122.398593151785)",140180340-E37 -122800255,E01,12092653,Medical Incident,10/06/2012,10/06/2012,10/06/2012 03:45:23 PM,10/06/2012 03:46:56 PM,10/06/2012 03:47:51 PM,10/06/2012 03:49:14 PM,10/06/2012 03:52:20 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,No Merit,10/06/2012 03:53:26 PM,100 Block of HARRIET ST,SF,94103,B03,1,2253,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7775807976906, -122.4052269245)",122800255-E01 -131890192,77,13064426,Medical Incident,07/08/2013,07/08/2013,07/08/2013 01:32:55 PM,07/08/2013 01:34:01 PM,07/08/2013 01:34:26 PM,07/08/2013 01:34:42 PM,07/08/2013 01:40:13 PM,07/08/2013 01:47:39 PM,07/08/2013 02:16:32 PM,Code 2 Transport,07/08/2013 02:45:30 PM,100 Block of HOWARD ST,SF,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7910007343294, -122.39301513185)",131890192-77 -112310309,AM04,11076389,Medical Incident,08/19/2011,08/19/2011,08/19/2011 08:05:47 PM,08/19/2011 08:07:21 PM,08/19/2011 08:08:25 PM,08/19/2011 08:09:24 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 08:15:46 PM,CAPP ST/20TH ST,SF,94110,B06,7,5433,2,2,2,false,,1,PRIVATE,2,6,9,Mission,"(37.7586982725851, -122.417964706277)",112310309-AM04 -120520255,E05,12017234,Medical Incident,02/21/2012,02/21/2012,02/21/2012 04:08:20 PM,02/21/2012 04:09:55 PM,02/21/2012 04:10:05 PM,02/21/2012 04:11:35 PM,02/21/2012 04:12:23 PM,04/25/2016 02:00:02 PM,04/25/2016 02:00:02 PM,Other,02/21/2012 04:24:09 PM,1000 Block of LAGUNA ST,SF,94115,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7806464131859, -122.427178095031)",120520255-E05 -122120377,D2,12070537,Structure Fire,07/30/2012,07/30/2012,07/30/2012 10:19:51 PM,07/30/2012 10:21:40 PM,07/30/2012 10:22:04 PM,07/30/2012 10:23:12 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 10:26:11 PM,1400 Block of MISSION ST,SF,94103,B02,36,2341,3,3,3,false,Fire,1,CHIEF,7,2,6,South of Market,"(37.7747597843525, -122.41645729662)",122120377-D2 -112820175,B06,11093324,Gas Leak (Natural and LP Gases),10/09/2011,10/09/2011,10/09/2011 12:37:45 PM,10/09/2011 12:39:42 PM,10/09/2011 12:41:13 PM,10/09/2011 12:42:23 PM,10/09/2011 12:47:04 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 12:56:58 PM,4300 Block of 25TH ST,SF,94114,B06,24,5542,3,3,3,false,,1,CHIEF,3,6,8,Noe Valley,"(37.7495508329815, -122.437234103436)",112820175-B06 -160160062,62,16006225,Medical Incident,01/16/2016,01/15/2016,01/16/2016 12:26:49 AM,01/16/2016 12:28:45 AM,01/16/2016 12:29:11 AM,01/16/2016 12:29:19 AM,01/16/2016 12:36:57 AM,01/16/2016 12:51:08 AM,01/16/2016 12:54:03 AM,Code 2 Transport,01/16/2016 01:09:03 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160160062-62 -160820378,70,16032456,Medical Incident,03/22/2016,03/21/2016,03/22/2016 05:34:53 AM,03/22/2016 05:34:53 AM,03/22/2016 05:37:45 AM,03/22/2016 05:37:55 AM,03/22/2016 05:40:33 AM,03/22/2016 05:49:56 AM,03/22/2016 06:02:09 AM,Code 2 Transport,03/22/2016 06:35:08 AM,SUTTER ST/LEAVENWORTH ST,San Francisco,94109,B01,3,1463,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7883879297961, -122.415185268348)",160820378-70 -140700138,E28,14023568,Medical Incident,03/11/2014,03/11/2014,03/11/2014 11:01:13 AM,03/11/2014 11:02:51 AM,03/11/2014 11:03:42 AM,03/11/2014 11:07:13 AM,03/11/2014 11:15:16 AM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Code 2 Transport,03/11/2014 11:20:27 AM,1000 Block of COLUMBUS AVE,SAN FRANCISCO,94133,B01,28,1434,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8041876050837, -122.415703120443)",140700138-E28 -111810129,E10,11059682,Medical Incident,06/30/2011,06/30/2011,06/30/2011 10:56:42 AM,06/30/2011 10:57:37 AM,06/30/2011 10:57:54 AM,06/30/2011 10:58:04 AM,06/30/2011 11:01:21 AM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 11:22:21 AM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,,1,ENGINE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",111810129-E10 -102600110,54,10082109,Medical Incident,09/17/2010,09/17/2010,09/17/2010 09:59:58 AM,09/17/2010 10:01:29 AM,09/17/2010 10:02:02 AM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 10:04:37 AM,"CALL BOX: DAVIS ST/JACKSON ST,SF",SF,94111,B01,13,1132,3,3,3,true,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7971265118993, -122.398275004328)",102600110-54 -113500114,RS1,11116057,Structure Fire,12/16/2011,12/16/2011,12/16/2011 10:13:29 AM,12/16/2011 10:16:33 AM,12/16/2011 10:16:51 AM,12/16/2011 10:17:59 AM,12/16/2011 10:23:03 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/16/2011 10:26:51 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,RESCUE SQUAD,8,4,5,Pacific Heights,"(37.7888365626691, -122.426230394716)",113500114-RS1 -120730259,B09,12024284,Traffic Collision,03/13/2012,03/13/2012,03/13/2012 04:06:15 PM,03/13/2012 04:07:53 PM,03/13/2012 04:08:12 PM,03/13/2012 04:08:58 PM,03/13/2012 04:09:32 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 04:30:38 PM,ATHENS ST/RUSSIA AV,SF,94112,B09,43,6156,3,3,3,false,Potentially Life-Threatening,1,CHIEF,1,9,11,Excelsior,"(37.7185302023032, -122.430778026674)",120730259-B09 -103080366,RC3,10098843,Medical Incident,11/04/2010,11/04/2010,11/04/2010 08:42:01 PM,11/04/2010 08:42:10 PM,11/04/2010 08:42:45 PM,11/04/2010 08:44:05 PM,11/04/2010 09:05:49 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 09:11:11 PM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,E,E,3,true,,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",103080366-RC3 -130680240,RS1,13022717,Structure Fire,03/09/2013,03/09/2013,03/09/2013 03:07:44 PM,03/09/2013 03:08:13 PM,03/09/2013 03:08:26 PM,03/09/2013 03:09:33 PM,03/09/2013 03:14:28 PM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,Other,03/09/2013 03:15:33 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Alarm,1,RESCUE SQUAD,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",130680240-RS1 -110290312,B09,11009657,Alarms,01/29/2011,01/29/2011,01/29/2011 08:21:33 PM,01/29/2011 08:23:14 PM,01/29/2011 08:23:37 PM,01/29/2011 08:24:42 PM,01/29/2011 08:27:14 PM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Other,01/29/2011 08:30:18 PM,600 Block of MONTEREY BLVD,SF,94127,B09,15,8235,3,3,3,false,,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7316357481737, -122.450007128241)",110290312-B09 -130930031,68,13031015,Medical Incident,04/03/2013,04/02/2013,04/03/2013 04:58:13 AM,04/03/2013 05:00:46 AM,04/03/2013 05:01:59 AM,04/03/2013 05:02:10 AM,04/03/2013 05:09:12 AM,04/03/2013 06:05:58 AM,04/03/2013 06:10:37 AM,Code 2 Transport,04/03/2013 07:28:33 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",130930031-68 -102460226,64,10077763,Medical Incident,09/03/2010,09/03/2010,09/03/2010 02:13:12 PM,09/03/2010 02:13:35 PM,09/03/2010 02:14:02 PM,09/03/2010 02:14:40 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Patient Declined Transport,09/03/2010 02:20:31 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",102460226-64 -103350294,D3,10107278,Structure Fire,12/01/2010,12/01/2010,12/01/2010 07:24:11 PM,12/01/2010 07:25:31 PM,12/01/2010 07:25:56 PM,12/01/2010 07:26:51 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/01/2010 07:32:59 PM,4200 Block of 22ND ST,SF,94114,B06,24,5463,3,3,3,false,,1,CHIEF,8,6,8,Noe Valley,"(37.7540784989199, -122.440387557495)",103350294-D3 -160283352,66,16011216,Medical Incident,01/28/2016,01/28/2016,01/28/2016 07:17:13 PM,01/28/2016 07:17:13 PM,01/28/2016 07:17:49 PM,01/28/2016 07:18:31 PM,01/28/2016 07:20:11 PM,01/28/2016 07:35:34 PM,01/28/2016 07:53:57 PM,Code 2 Transport,01/28/2016 09:46:42 PM,1800 Block of 47TH AV,San Francisco,94122,B08,23,7715,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7519873630417, -122.506342859028)",160283352-66 -122960225,KM11,12098183,Medical Incident,10/22/2012,10/22/2012,10/22/2012 02:48:02 PM,10/22/2012 02:48:51 PM,10/22/2012 02:49:14 PM,10/22/2012 02:49:56 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 02:54:20 PM,ELLIS ST/JONES ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",122960225-KM11 -160710441,62,16028090,Medical Incident,03/11/2016,03/10/2016,03/11/2016 05:08:50 AM,03/11/2016 05:08:50 AM,03/11/2016 05:10:08 AM,03/11/2016 05:10:20 AM,03/11/2016 05:20:31 AM,03/11/2016 05:36:40 AM,03/11/2016 05:48:26 AM,Code 2 Transport,03/11/2016 06:17:52 AM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7842224754433, -122.404037898963)",160710441-62 -132980122,T08,13101146,Structure Fire,10/25/2013,10/25/2013,10/25/2013 10:10:09 AM,10/25/2013 10:10:45 AM,10/25/2013 10:11:07 AM,10/25/2013 10:12:29 AM,10/25/2013 10:15:33 AM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 10:16:44 AM,1000 Block of MISSION ST,SF,94103,B02,1,2251,3,3,3,false,Alarm,1,TRUCK,5,3,6,South of Market,"(37.7800525030811, -122.40977382526)",132980122-T08 -160631691,60,16025066,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:43:39 PM,03/03/2016 12:44:54 PM,03/03/2016 12:45:18 PM,03/03/2016 12:45:29 PM,03/03/2016 01:02:15 PM,03/03/2016 01:13:14 PM,03/03/2016 01:19:58 PM,Code 2 Transport,03/03/2016 02:14:11 PM,2400 Block of VAN NESS AVE,San Francisco,94109,B04,41,3151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7981062556024, -122.423716686516)",160631691-60 -132420140,E01,13081590,Structure Fire,08/30/2013,08/30/2013,08/30/2013 10:05:26 AM,08/30/2013 10:05:26 AM,08/30/2013 10:06:04 AM,08/30/2013 10:06:19 AM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/30/2013 10:08:47 AM,MASON ST/ELLIS ST,SF,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",132420140-E01 -102690025,E29,10085177,Medical Incident,09/26/2010,09/25/2010,09/26/2010 01:03:30 AM,09/26/2010 01:04:08 AM,09/26/2010 01:04:31 AM,09/26/2010 01:05:13 AM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,09/26/2010 01:07:12 AM,3RD ST/20TH ST,SF,94107,B03,29,2466,3,2,2,true,,1,ENGINE,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",102690025-E29 -130040075,B09,13001269,Traffic Collision,01/04/2013,01/03/2013,01/04/2013 07:00:03 AM,01/04/2013 07:01:29 AM,01/04/2013 07:04:26 AM,04/25/2016 01:54:58 PM,01/04/2013 07:06:55 AM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 07:13:39 AM,200 Block of HEARST AVE,SF,94131,B09,15,8215,3,3,3,false,Potentially Life-Threatening,1,CHIEF,4,9,7,West of Twin Peaks,"(37.7306600755453, -122.443156519123)",130040075-B09 -121340056,81,12044495,Medical Incident,05/13/2012,05/12/2012,05/13/2012 04:32:11 AM,05/13/2012 04:33:28 AM,05/13/2012 04:33:58 AM,05/13/2012 04:34:35 AM,05/13/2012 04:37:43 AM,05/13/2012 04:41:48 AM,05/13/2012 04:45:16 AM,Code 2 Transport,05/13/2012 05:01:18 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",121340056-81 -160904131,85,16035909,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:26:16 PM,03/30/2016 11:26:16 PM,03/30/2016 11:26:25 PM,03/30/2016 11:26:35 PM,03/30/2016 11:31:56 PM,03/30/2016 11:49:42 PM,03/31/2016 12:05:23 AM,Code 2 Transport,03/31/2016 12:36:02 AM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160904131-85 -102240065,B02,10070465,Alarms,08/12/2010,08/11/2010,08/12/2010 07:51:33 AM,08/12/2010 07:53:06 AM,08/12/2010 07:53:21 AM,08/12/2010 07:55:55 AM,08/12/2010 07:57:54 AM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,Fire,08/12/2010 08:04:52 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,,1,CHIEF,2,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",102240065-B02 -130060037,E16,13001951,Structure Fire,01/06/2013,01/05/2013,01/06/2013 02:52:54 AM,01/06/2013 02:54:29 AM,01/06/2013 02:54:45 AM,01/06/2013 02:56:46 AM,01/06/2013 02:58:53 AM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/06/2013 03:06:59 AM,2800 Block of JACKSON ST,SF,94115,B04,10,4231,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7915786810021, -122.442001635191)",130060037-E16 -112290216,96,11075697,Traffic Collision,08/17/2011,08/17/2011,08/17/2011 03:15:20 PM,08/17/2011 03:15:20 PM,08/17/2011 03:15:34 PM,08/17/2011 03:16:04 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 03:20:57 PM,OCTAVIA ST/OAK ST,SF,94102,B02,36,3266,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7748247940204, -122.42413649936)",112290216-96 -160130335,KM07,16005043,Medical Incident,01/13/2016,01/12/2016,01/13/2016 04:08:40 AM,01/13/2016 04:08:40 AM,01/13/2016 04:09:40 AM,01/13/2016 04:10:41 AM,01/13/2016 04:12:25 AM,01/13/2016 04:31:05 AM,01/13/2016 04:37:35 AM,Code 2 Transport,01/13/2016 05:23:35 AM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",160130335-KM07 -160020690,85,16000643,Medical Incident,01/02/2016,01/01/2016,01/02/2016 07:55:37 AM,01/02/2016 07:57:52 AM,01/02/2016 07:58:06 AM,01/02/2016 07:58:19 AM,01/02/2016 08:12:20 AM,01/02/2016 08:32:43 AM,01/02/2016 08:45:23 AM,Code 2 Transport,01/02/2016 09:23:23 AM,2600 Block of 17TH AVE,San Francisco,94116,B08,40,7411,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.738481429132, -122.473295868437)",160020690-85 -102360313,71,10074420,Structure Fire,08/24/2010,08/24/2010,08/24/2010 04:21:17 PM,08/24/2010 04:22:14 PM,08/24/2010 04:22:54 PM,08/24/2010 04:24:07 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/24/2010 04:30:38 PM,3200 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,,1,MEDIC,10,6,9,Bernal Heights,"(37.7481086638549, -122.415383917829)",102360313-71 -160772855,52,16030698,Medical Incident,03/17/2016,03/17/2016,03/17/2016 04:38:52 PM,03/17/2016 04:39:58 PM,03/17/2016 04:40:26 PM,03/17/2016 04:40:46 PM,03/17/2016 04:45:49 PM,03/17/2016 05:43:12 PM,03/17/2016 05:46:09 PM,Code 2 Transport,03/17/2016 06:31:28 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160772855-52 -113010161,E06,11099820,Structure Fire,10/28/2011,10/28/2011,10/28/2011 11:27:33 AM,10/28/2011 11:30:15 AM,10/28/2011 11:30:39 AM,10/28/2011 11:32:17 AM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 11:34:50 AM,0 Block of WOODWARD ST,SF,94103,B02,36,5215,3,3,3,true,,1,ENGINE,7,2,9,Mission,"(37.7690757517644, -122.420788636046)",113010161-E06 -121110285,E12,12036797,Medical Incident,04/20/2012,04/20/2012,04/20/2012 04:01:07 PM,04/20/2012 04:01:53 PM,04/20/2012 04:02:45 PM,04/25/2016 01:59:05 PM,04/20/2012 04:11:13 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 04:27:07 PM,100 Block of JOHN F KENNEDY DR,SF,94122,B05,12,4554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Golden Gate Park,"(37.7711332354432, -122.457507583541)",121110285-E12 -160483635,85,16019509,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:30:15 PM,02/17/2016 08:30:52 PM,02/17/2016 08:31:19 PM,02/17/2016 08:31:28 PM,02/17/2016 08:35:32 PM,02/17/2016 08:59:01 PM,02/17/2016 09:16:08 PM,Code 2 Transport,02/17/2016 09:44:38 PM,800 Block of VALENCIA ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7589313181833, -122.421382559773)",160483635-85 -130260044,E07,13008868,Outside Fire,01/26/2013,01/25/2013,01/26/2013 02:38:04 AM,01/26/2013 02:39:21 AM,01/26/2013 02:41:07 AM,01/26/2013 02:42:26 AM,01/26/2013 02:44:31 AM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/26/2013 04:15:28 AM,100 Block of LINDA ST,SF,94110,B06,7,5434,3,3,3,true,Fire,1,ENGINE,1,6,8,Mission,"(37.7594094951426, -122.422887066133)",130260044-E07 -111560091,E06,11051507,Medical Incident,06/05/2011,06/04/2011,06/05/2011 05:33:10 AM,06/05/2011 05:35:10 AM,06/05/2011 05:36:05 AM,06/05/2011 05:37:56 AM,06/05/2011 05:40:02 AM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 05:45:42 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",111560091-E06 -131370294,81,13046363,Medical Incident,05/17/2013,05/17/2013,05/17/2013 05:54:35 PM,05/17/2013 05:54:59 PM,05/17/2013 05:55:07 PM,05/17/2013 05:55:15 PM,04/25/2016 01:52:45 PM,05/17/2013 06:15:47 PM,05/17/2013 06:58:33 PM,Code 2 Transport,05/17/2013 07:20:17 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",131370294-81 -122560011,T03,12084500,Structure Fire,09/12/2012,09/11/2012,09/12/2012 12:50:43 AM,09/12/2012 12:51:51 AM,09/12/2012 12:52:14 AM,04/25/2016 01:56:48 PM,09/12/2012 01:02:20 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 01:16:36 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Fire,1,TRUCK,4,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",122560011-T03 -160190051,83,16007440,Medical Incident,01/19/2016,01/18/2016,01/19/2016 12:22:25 AM,01/19/2016 12:24:31 AM,01/19/2016 12:24:40 AM,01/19/2016 12:24:59 AM,01/19/2016 12:33:24 AM,01/19/2016 12:59:14 AM,01/19/2016 01:10:37 AM,Code 2 Transport,01/19/2016 01:42:10 AM,300 Block of CRESCENT CT,San Francisco,94134,B10,44,6575,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7113376268931, -122.388702684874)",160190051-83 -120990198,E20,12032826,Medical Incident,04/08/2012,04/08/2012,04/08/2012 03:38:26 PM,04/08/2012 03:39:07 PM,04/08/2012 03:39:13 PM,04/08/2012 03:40:09 PM,04/08/2012 03:42:24 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 03:57:16 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",120990198-E20 -103570008,86,10114423,Medical Incident,12/23/2010,12/22/2010,12/23/2010 12:37:08 AM,12/23/2010 12:38:05 AM,12/23/2010 12:40:09 AM,12/23/2010 12:41:16 AM,12/23/2010 12:52:09 AM,12/23/2010 01:04:53 AM,12/23/2010 01:17:23 AM,Code 2 Transport,12/23/2010 01:50:22 AM,800 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",103570008-86 -111620348,84,11053641,Medical Incident,06/11/2011,06/11/2011,06/11/2011 09:55:28 PM,06/11/2011 09:58:03 PM,06/11/2011 09:59:51 PM,06/11/2011 10:01:53 PM,06/11/2011 10:03:35 PM,06/11/2011 10:19:57 PM,06/11/2011 10:30:38 PM,Code 2 Transport,06/11/2011 11:00:43 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",111620348-84 -160163371,79,16006584,Medical Incident,01/16/2016,01/16/2016,01/16/2016 08:47:07 PM,01/16/2016 08:47:26 PM,01/16/2016 08:47:52 PM,01/16/2016 08:48:02 PM,01/16/2016 08:53:38 PM,01/16/2016 09:18:21 PM,01/16/2016 09:27:47 PM,Code 2 Transport,01/16/2016 09:55:15 PM,EDDY ST/LARKIN ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",160163371-79 -133000294,E03,13102043,Medical Incident,10/27/2013,10/27/2013,10/27/2013 06:47:42 PM,10/27/2013 06:47:59 PM,10/27/2013 06:48:21 PM,10/27/2013 06:49:26 PM,10/27/2013 06:51:27 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 06:54:59 PM,TURK ST/JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",133000294-E03 -122840140,B04,12093917,Alarms,10/10/2012,10/10/2012,10/10/2012 12:02:20 PM,10/10/2012 12:04:00 PM,10/10/2012 12:04:06 PM,10/10/2012 12:06:25 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 12:09:23 PM,1300 Block of BUCHANAN ST,SF,94115,B02,5,3431,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7820811831699, -122.429017793799)",122840140-B04 -160482188,86,16019376,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 02:08:18 PM,02/17/2016 02:10:03 PM,02/17/2016 02:23:27 PM,02/17/2016 02:23:40 PM,02/17/2016 02:32:51 PM,02/17/2016 02:44:19 PM,02/17/2016 03:15:33 PM,Code 2 Transport,02/17/2016 03:56:25 PM,2ND ST/STEVENSON ST,San Francisco,94105,B03,1,2144,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7888154965828, -122.400812304237)",160482188-86 -160322758,AM18,16012685,Medical Incident,02/01/2016,02/01/2016,02/01/2016 05:35:05 PM,02/01/2016 05:36:54 PM,02/01/2016 05:38:28 PM,02/01/2016 05:39:02 PM,02/01/2016 05:42:50 PM,02/01/2016 06:00:59 PM,02/01/2016 06:30:19 PM,Code 2 Transport,02/01/2016 06:58:22 PM,CHANNEL ST/4TH ST,San Francisco,,B03,4,2226,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,None,"(37.7750268633971, -122.392346204303)",160322758-AM18 -102450198,KM02,10077330,Medical Incident,09/02/2010,09/02/2010,09/02/2010 11:29:38 AM,09/02/2010 11:30:50 AM,09/02/2010 11:30:59 AM,09/02/2010 11:31:40 AM,09/02/2010 11:35:38 AM,09/02/2010 11:55:22 AM,09/02/2010 12:08:23 PM,Code 2 Transport,09/02/2010 12:37:40 PM,100 Block of 17TH AVE,SF,94118,B07,31,7162,3,3,3,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7852029440362, -122.476436885446)",102450198-KM02 -121280270,E08,12042660,Outside Fire,05/07/2012,05/07/2012,05/07/2012 03:32:01 PM,05/07/2012 03:32:01 PM,05/07/2012 03:32:16 PM,05/07/2012 03:33:35 PM,05/07/2012 03:37:02 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 03:39:34 PM,400 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,954,3,3,3,true,Alarm,1,ENGINE,2,3,6,Mission Bay,"(37.7717396202959, -122.386663865791)",121280270-E08 -133150374,55,13107240,Medical Incident,11/11/2013,11/11/2013,11/11/2013 08:13:04 PM,11/11/2013 08:14:53 PM,11/11/2013 08:15:21 PM,11/11/2013 08:15:55 PM,11/11/2013 08:21:54 PM,11/11/2013 08:31:39 PM,11/11/2013 08:51:00 PM,Code 2 Transport,11/11/2013 09:09:13 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",133150374-55 -132130203,E13,13071988,Medical Incident,08/01/2013,08/01/2013,08/01/2013 03:37:33 PM,08/01/2013 03:38:42 PM,08/01/2013 03:39:01 PM,08/01/2013 03:39:54 PM,08/01/2013 03:43:06 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 03:45:22 PM,0 Block of GRANT AVE,SF,94108,B01,1,1321,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7872026250974, -122.404858516174)",132130203-E13 -160050217,71,16001832,Medical Incident,01/05/2016,01/04/2016,01/05/2016 02:32:38 AM,01/05/2016 02:33:06 AM,01/05/2016 02:33:59 AM,01/05/2016 02:34:16 AM,01/05/2016 02:42:01 AM,01/05/2016 03:11:56 AM,01/05/2016 03:24:23 AM,Code 2 Transport,01/05/2016 04:08:30 AM,2800 Block of 35TH AVE,San Francisco,94116,B08,19,7552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.734761472672, -122.492241109749)",160050217-71 -131660063,T17,13056294,Citizen Assist / Service Call,06/15/2013,06/14/2013,06/15/2013 06:45:36 AM,06/15/2013 06:46:37 AM,06/15/2013 06:46:45 AM,06/15/2013 06:49:21 AM,06/15/2013 06:51:23 AM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Fire,06/15/2013 06:56:27 AM,1400 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7282421265503, -122.389005419337)",131660063-T17 -110510026,E03,11016752,Medical Incident,02/20/2011,02/19/2011,02/20/2011 01:24:37 AM,02/20/2011 01:25:50 AM,02/20/2011 01:27:42 AM,02/20/2011 01:29:17 AM,02/20/2011 01:31:10 AM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Fire,02/20/2011 01:38:37 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",110510026-E03 -160550953,AM02,16021933,Traffic Collision,02/24/2016,02/24/2016,02/24/2016 09:16:14 AM,02/24/2016 09:17:55 AM,02/24/2016 09:19:12 AM,02/24/2016 09:19:55 AM,02/24/2016 09:19:55 AM,02/24/2016 09:39:25 AM,02/24/2016 09:58:05 AM,Code 2 Transport,02/24/2016 10:09:54 AM,SCOTT ST/MARINA BL,San Francisco,94123,B04,16,4111,2,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.8057862730196, -122.442209784032)",160550953-AM02 -103040014,67,10096976,Medical Incident,10/31/2010,10/30/2010,10/31/2010 12:27:26 AM,10/31/2010 12:28:14 AM,10/31/2010 12:28:31 AM,10/31/2010 12:28:36 AM,10/31/2010 12:32:47 AM,10/31/2010 01:09:25 AM,10/31/2010 01:18:54 AM,Code 2 Transport,10/31/2010 01:48:28 AM,0 Block of LOYOLA TER,SF,94117,B05,21,4522,3,3,3,true,,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.775869026469, -122.448995273702)",103040014-67 -123440295,E03,12115089,Medical Incident,12/09/2012,12/09/2012,12/09/2012 06:04:42 PM,12/09/2012 06:06:33 PM,12/09/2012 06:08:22 PM,12/09/2012 06:09:41 PM,12/09/2012 06:15:41 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 06:20:53 PM,1000 Block of FRANKLIN ST,SF,94109,B02,3,3221,1,1,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",123440295-E03 -102350184,T01,10073947,Alarms,08/23/2010,08/23/2010,08/23/2010 01:02:28 PM,08/23/2010 01:03:27 PM,08/23/2010 01:03:39 PM,08/23/2010 01:05:01 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 01:21:37 PM,300 Block of POST ST,SF,94108,B01,1,1362,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7884505799048, -122.407597246833)",102350184-T01 -132830001,87,13096158,Medical Incident,10/10/2013,10/09/2013,10/10/2013 12:22:15 AM,10/10/2013 12:22:56 AM,10/10/2013 12:23:16 AM,10/10/2013 12:23:31 AM,10/10/2013 12:30:29 AM,10/10/2013 12:43:19 AM,10/10/2013 12:51:50 AM,Code 2 Transport,10/10/2013 01:31:44 AM,21ST AV/CALIFORNIA ST,SF,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7840766069521, -122.480725305349)",132830001-87 -120980095,AM06,12032425,Medical Incident,04/07/2012,04/07/2012,04/07/2012 09:45:33 AM,04/07/2012 09:47:54 AM,04/07/2012 09:48:16 AM,04/07/2012 09:49:17 AM,04/07/2012 09:53:05 AM,04/07/2012 10:15:17 AM,04/07/2012 10:29:10 AM,Code 2 Transport,04/07/2012 11:11:21 AM,100 Block of FOOTE AVE,SF,94112,B09,33,8345,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7137644374712, -122.446069543288)",120980095-AM06 -122370152,AM06,12078484,Traffic Collision,08/24/2012,08/24/2012,08/24/2012 12:51:08 PM,08/24/2012 12:52:29 PM,08/24/2012 12:54:15 PM,08/24/2012 12:55:34 PM,08/24/2012 01:02:45 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 01:07:22 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Marina,"(37.8058923703038, -122.431246520303)",122370152-AM06 -122160116,B01,12071621,Alarms,08/03/2012,08/03/2012,08/03/2012 09:29:56 AM,08/03/2012 09:30:55 AM,08/03/2012 09:31:01 AM,08/03/2012 09:31:12 AM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Other,08/03/2012 09:36:23 AM,400 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,3,3,false,Alarm,1,CHIEF,1,1,3,North Beach,"(37.8063948128853, -122.414598058157)",122160116-B01 -132800188,B08,13095288,Alarms,10/07/2013,10/07/2013,10/07/2013 12:36:19 PM,10/07/2013 12:37:25 PM,10/07/2013 12:37:57 PM,10/07/2013 12:38:39 PM,10/07/2013 12:48:33 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/07/2013 12:48:37 PM,1700 Block of BROOKS ST,PR,94129,B99,51,4617,3,3,3,false,Alarm,1,CHIEF,2,7,2,Presidio,"(37.7901140556843, -122.480911597904)",132800188-B08 -160084062,89,16003463,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:12:53 PM,01/08/2016 11:15:03 PM,01/08/2016 11:16:00 PM,01/08/2016 11:16:07 PM,01/08/2016 11:28:20 PM,01/09/2016 12:03:55 AM,01/09/2016 12:23:04 AM,Unable to Locate,01/09/2016 01:02:16 AM,400 Block of BEALE ST,San Francisco,94105,B03,35,2123,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",160084062-89 -122370202,89,12078529,Medical Incident,08/24/2012,08/24/2012,08/24/2012 03:10:24 PM,08/24/2012 03:10:53 PM,08/24/2012 03:11:10 PM,08/24/2012 03:11:20 PM,08/24/2012 03:14:25 PM,08/24/2012 03:24:03 PM,08/24/2012 03:34:53 PM,Code 2 Transport,08/24/2012 04:04:13 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",122370202-89 -111370014,E19,11045449,Medical Incident,05/17/2011,05/16/2011,05/17/2011 01:22:10 AM,05/17/2011 01:23:04 AM,05/17/2011 01:24:02 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 01:26:16 AM,OCEAN AV/JUNIPERO SERRA BL,SF,94127,B08,19,8452,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7312055048522, -122.472160323543)",111370014-E19 -160323204,AM18,16012731,Medical Incident,02/01/2016,02/01/2016,02/01/2016 07:46:57 PM,02/01/2016 07:47:25 PM,02/01/2016 07:48:01 PM,02/01/2016 07:48:32 PM,02/01/2016 07:55:05 PM,02/01/2016 08:16:19 PM,02/01/2016 08:49:30 PM,Code 2 Transport,02/01/2016 09:17:56 PM,1000 Block of CAPITOL AV,San Francisco,94112,B09,15,8464,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209306722386, -122.459270472812)",160323204-AM18 -160753132,50,16029837,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:17:45 PM,03/15/2016 06:18:32 PM,03/15/2016 06:18:55 PM,03/15/2016 06:19:20 PM,03/15/2016 06:24:57 PM,03/15/2016 06:44:01 PM,03/15/2016 06:48:37 PM,Code 2 Transport,03/15/2016 07:05:49 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160753132-50 -160330901,88,16012898,Medical Incident,02/02/2016,02/02/2016,02/02/2016 09:10:47 AM,02/02/2016 09:10:47 AM,02/02/2016 09:11:58 AM,02/02/2016 09:12:08 AM,02/02/2016 09:17:58 AM,02/02/2016 09:41:14 AM,02/02/2016 09:56:48 AM,Code 2 Transport,02/02/2016 10:34:48 AM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",160330901-88 -133640294,96,13123693,Medical Incident,12/30/2013,12/30/2013,12/30/2013 05:49:11 PM,12/30/2013 05:51:13 PM,12/30/2013 05:53:24 PM,12/30/2013 05:53:34 PM,12/30/2013 05:57:46 PM,12/30/2013 06:24:17 PM,12/30/2013 06:35:31 PM,Code 2 Transport,12/30/2013 07:02:27 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",133640294-96 -113540359,E32,11117690,Medical Incident,12/20/2011,12/20/2011,12/20/2011 09:02:11 PM,12/20/2011 09:04:53 PM,12/20/2011 09:05:00 PM,12/20/2011 09:06:03 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,Other,04/25/2016 02:01:03 PM,3900 Block of MISSION ST,SF,94112,B06,32,5633,3,2,2,true,,1,ENGINE,2,6,8,Outer Mission,"(37.7338663102805, -122.426333773164)",113540359-E32 -121930036,T15,12064137,Citizen Assist / Service Call,07/11/2012,07/10/2012,07/11/2012 03:41:52 AM,07/11/2012 03:43:55 AM,07/11/2012 03:44:10 AM,07/11/2012 03:46:02 AM,07/11/2012 03:49:55 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 04:21:26 AM,400 Block of MONTEREY BLVD,SF,94127,B09,15,8221,3,3,3,false,Alarm,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7316567201418, -122.445449494658)",121930036-T15 -133540108,88,13120203,Medical Incident,12/20/2013,12/20/2013,12/20/2013 09:22:10 AM,12/20/2013 09:24:02 AM,12/20/2013 09:24:41 AM,12/20/2013 09:26:11 AM,12/20/2013 09:34:34 AM,12/20/2013 10:00:00 AM,12/20/2013 10:20:57 AM,Other,12/20/2013 10:36:01 AM,300 Block of BUENAVISTAEAST AV,SF,94117,B05,21,5136,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7667916111324, -122.440720545257)",133540108-88 -131220010,E03,13040868,Structure Fire,05/02/2013,05/01/2013,05/02/2013 12:23:01 AM,05/02/2013 12:23:01 AM,05/02/2013 12:23:11 AM,04/25/2016 01:53:01 PM,05/02/2013 12:25:40 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Other,05/02/2013 12:40:28 AM,500 Block of LARKIN ST,SF,94102,B02,3,1643,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",131220010-E03 -121110356,E07,12036863,Medical Incident,04/20/2012,04/20/2012,04/20/2012 07:00:41 PM,04/20/2012 07:01:33 PM,04/20/2012 07:01:53 PM,04/20/2012 07:03:01 PM,04/20/2012 07:05:12 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 07:06:18 PM,500 Block of VALENCIA ST,SF,94103,B02,7,5247,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",121110356-E07 -112170314,88,11071818,Medical Incident,08/05/2011,08/05/2011,08/05/2011 07:13:59 PM,08/05/2011 07:14:32 PM,08/05/2011 07:15:07 PM,08/05/2011 07:16:58 PM,08/05/2011 07:23:23 PM,08/05/2011 07:50:32 PM,08/05/2011 08:14:33 PM,Code 2 Transport,08/05/2011 08:43:03 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",112170314-88 -130600276,B04,13020200,Alarms,03/01/2013,03/01/2013,03/01/2013 05:10:10 PM,03/01/2013 05:11:04 PM,03/01/2013 05:11:11 PM,03/01/2013 05:11:57 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 05:20:01 PM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",130600276-B04 -113570101,85,11118513,Medical Incident,12/23/2011,12/22/2011,12/23/2011 03:51:12 AM,12/23/2011 03:52:53 AM,12/23/2011 03:53:21 AM,12/23/2011 03:53:59 AM,12/23/2011 04:00:33 AM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Patient Declined Transport,12/23/2011 04:34:05 AM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,1,MEDIC,2,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",113570101-85 -121320194,93,12043920,Medical Incident,05/11/2012,05/11/2012,05/11/2012 12:58:50 PM,05/11/2012 12:59:32 PM,05/11/2012 01:01:52 PM,05/11/2012 01:03:17 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,04/25/2016 01:58:44 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121320194-93 -131450329,E01,13049334,Fuel Spill,05/25/2013,05/25/2013,05/25/2013 10:54:34 PM,05/25/2013 10:56:02 PM,05/25/2013 10:57:05 PM,05/25/2013 10:58:29 PM,05/25/2013 11:00:07 PM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,Fire,05/25/2013 11:10:20 PM,400 Block of TEHAMA ST,SF,94103,B03,1,2245,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.78023451932, -122.405564838884)",131450329-E01 -160830177,93,16032812,Medical Incident,03/23/2016,03/22/2016,03/23/2016 01:43:08 AM,03/23/2016 01:43:57 AM,03/23/2016 01:44:07 AM,03/23/2016 01:46:25 AM,03/23/2016 01:47:50 AM,03/23/2016 02:15:40 AM,03/23/2016 02:20:38 AM,Code 3 Transport,03/23/2016 02:55:07 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160830177-93 -122060115,B06,12068430,Structure Fire,07/24/2012,07/24/2012,07/24/2012 09:50:18 AM,07/24/2012 09:50:19 AM,07/24/2012 09:50:29 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 09:52:57 AM,600 Block of DOUGLASS ST,SF,94114,B06,24,551,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",122060115-B06 -131110196,AM06,13037406,Medical Incident,04/21/2013,04/21/2013,04/21/2013 02:53:03 PM,04/21/2013 02:53:38 PM,04/21/2013 02:55:44 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 02:56:23 PM,SUTTER ST/POWELL ST,SF,94108,B01,1,1362,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,5,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",131110196-AM06 -111450073,92,11048093,Medical Incident,05/25/2011,05/25/2011,05/25/2011 08:19:13 AM,05/25/2011 08:22:09 AM,05/25/2011 08:22:26 AM,05/25/2011 08:46:38 AM,05/25/2011 08:54:58 AM,05/25/2011 09:19:33 AM,05/25/2011 09:38:25 AM,Code 2 Transport,05/25/2011 10:04:44 AM,3800 Block of 18TH ST,SF,94114,B02,6,5421,3,1,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",111450073-92 -112710236,99,11089573,Medical Incident,09/28/2011,09/28/2011,09/28/2011 01:32:57 PM,09/28/2011 01:33:32 PM,09/28/2011 01:34:48 PM,09/28/2011 01:41:29 PM,09/28/2011 01:45:32 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 02:33:40 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,,1,MEDIC,3,1,3,Nob Hill,"(37.7912571694899, -122.414917737337)",112710236-99 -111400236,RC3,11046585,Medical Incident,05/20/2011,05/20/2011,05/20/2011 04:44:58 PM,05/20/2011 04:45:42 PM,05/20/2011 04:46:06 PM,05/20/2011 04:47:55 PM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,Other,05/20/2011 04:54:38 PM,400 Block of CAPITOL AVE,SF,94112,B09,33,8374,3,3,3,true,,1,RESCUE CAPTAIN,3,9,11,Oceanview/Merced/Ingleside,"(37.7144823746566, -122.458971619556)",111400236-RC3 -160633155,AM20,16025204,Medical Incident,03/03/2016,03/03/2016,03/03/2016 06:49:52 PM,03/03/2016 06:50:31 PM,03/03/2016 06:50:52 PM,03/03/2016 06:52:48 PM,03/03/2016 06:55:45 PM,03/03/2016 07:17:11 PM,03/03/2016 07:36:21 PM,Code 2 Transport,03/03/2016 08:18:25 PM,2300 Block of 16TH ST,San Francisco,94103,B08,29,5241,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160633155-AM20 -140770067,KM12,14025975,Medical Incident,03/18/2014,03/17/2014,03/18/2014 07:56:39 AM,03/18/2014 07:57:05 AM,03/18/2014 07:58:05 AM,03/18/2014 07:59:01 AM,03/18/2014 08:06:49 AM,03/18/2014 08:30:06 AM,03/18/2014 08:36:01 AM,Code 2 Transport,03/18/2014 09:01:29 AM,800 Block of BRYANT ST,SAN FRANCISCO,94103,B03,8,2255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",140770067-KM12 -122120126,KM10,12070321,Structure Fire,07/30/2012,07/30/2012,07/30/2012 10:26:02 AM,07/30/2012 10:26:59 AM,07/30/2012 10:27:10 AM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 10:31:01 AM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,false,Fire,1,PRIVATE,10,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",122120126-KM10 -121020094,81,12033748,Medical Incident,04/11/2012,04/11/2012,04/11/2012 08:58:27 AM,04/11/2012 08:58:49 AM,04/11/2012 09:00:26 AM,04/11/2012 09:00:41 AM,04/11/2012 09:09:31 AM,04/11/2012 09:21:27 AM,04/11/2012 09:26:55 AM,Code 2 Transport,04/11/2012 10:05:33 AM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",121020094-81 -131690212,E28,13057398,Structure Fire,06/18/2013,06/18/2013,06/18/2013 12:38:49 PM,06/18/2013 12:38:49 PM,06/18/2013 12:38:56 PM,06/18/2013 12:39:37 PM,06/18/2013 12:40:16 PM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,Other,06/18/2013 12:40:57 PM,COLUMBUS AV/UNION ST,SF,94133,B01,28,1334,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8003154984429, -122.410206543893)",131690212-E28 -122100066,E19,12069669,Medical Incident,07/28/2012,07/27/2012,07/28/2012 04:46:23 AM,07/28/2012 04:46:52 AM,07/28/2012 04:47:15 AM,07/28/2012 04:49:02 AM,07/28/2012 04:51:44 AM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 05:12:14 AM,3000 Block of 20TH AVE,SF,94132,B08,19,8732,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7318943515613, -122.476052301377)",122100066-E19 -102800173,92,10088995,Medical Incident,10/07/2010,10/07/2010,10/07/2010 01:21:57 PM,10/07/2010 01:23:52 PM,10/07/2010 01:24:38 PM,10/07/2010 01:24:49 PM,10/07/2010 01:27:56 PM,10/07/2010 01:35:07 PM,10/07/2010 01:54:16 PM,Code 2 Transport,10/07/2010 02:19:29 PM,CAPP ST/19TH ST,SF,94110,B06,7,5433,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7603010632565, -122.41811811905)",102800173-92 -160011109,63,16000202,Medical Incident,01/01/2016,12/31/2015,01/01/2016 05:32:32 AM,01/01/2016 05:34:33 AM,01/01/2016 05:35:32 AM,01/01/2016 05:36:02 AM,01/01/2016 05:42:24 AM,01/01/2016 05:56:37 AM,01/01/2016 06:16:43 AM,Code 2 Transport,01/01/2016 06:48:49 AM,17TH ST/MISSION ST,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7634292740134, -122.419512736792)",160011109-63 -160582978,AM16,16023238,Medical Incident,02/27/2016,02/27/2016,02/27/2016 06:31:23 PM,02/27/2016 06:32:58 PM,02/27/2016 06:39:34 PM,02/27/2016 06:39:34 PM,02/27/2016 06:42:25 PM,02/27/2016 06:52:06 PM,02/27/2016 07:17:23 PM,Code 2 Transport,02/27/2016 07:44:00 PM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160582978-AM16 -110850363,E11,11028188,Medical Incident,03/26/2011,03/26/2011,03/26/2011 10:04:44 PM,03/26/2011 10:05:31 PM,03/26/2011 10:05:58 PM,03/26/2011 10:07:05 PM,03/26/2011 10:08:35 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 10:18:19 PM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7497020110556, -122.420499334167)",110850363-E11 -121320322,66,12044038,Medical Incident,05/11/2012,05/11/2012,05/11/2012 07:29:54 PM,05/11/2012 07:30:41 PM,05/11/2012 07:31:06 PM,05/11/2012 07:31:42 PM,05/11/2012 07:36:02 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 07:47:22 PM,100 Block of BROAD ST,SF,94112,B09,33,8374,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Oceanview/Merced/Ingleside,"(37.7132377405252, -122.457539370508)",121320322-66 -160360025,68,16014056,Medical Incident,02/05/2016,02/04/2016,02/05/2016 12:06:56 AM,02/05/2016 12:07:53 AM,02/05/2016 12:09:10 AM,02/05/2016 12:09:34 AM,02/05/2016 12:11:29 AM,02/05/2016 12:26:49 AM,02/05/2016 12:34:02 AM,Code 2 Transport,02/05/2016 12:56:34 AM,400 Block of MASON ST,San Francisco,94102,B01,3,1411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7877640990096, -122.409925328419)",160360025-68 -160640812,KM09,16025405,Medical Incident,03/04/2016,03/04/2016,03/04/2016 08:15:56 AM,03/04/2016 08:15:56 AM,03/04/2016 08:16:44 AM,03/04/2016 08:17:05 AM,03/04/2016 08:26:50 AM,03/04/2016 08:40:57 AM,03/04/2016 08:59:09 AM,Code 2 Transport,03/04/2016 09:32:35 AM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160640812-KM09 -122880307,96,12095391,Structure Fire,10/14/2012,10/14/2012,10/14/2012 07:03:58 PM,10/14/2012 07:05:15 PM,10/14/2012 07:05:30 PM,10/14/2012 07:05:52 PM,10/14/2012 07:10:20 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 07:34:04 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,Alarm,1,MEDIC,6,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",122880307-96 -160122217,AM02,16004814,Medical Incident,01/12/2016,01/12/2016,01/12/2016 03:05:24 PM,01/12/2016 03:06:00 PM,01/12/2016 03:06:20 PM,01/12/2016 03:06:57 PM,01/12/2016 03:08:28 PM,01/12/2016 03:29:46 PM,01/12/2016 04:00:25 PM,Code 2 Transport,01/12/2016 04:27:32 PM,700 Block of LAGUNA ST,San Francisco,94102,B02,5,3412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7776166559432, -122.426568297585)",160122217-AM02 -120950342,55,12031617,Medical Incident,04/04/2012,04/04/2012,04/04/2012 10:51:52 PM,04/04/2012 10:52:48 PM,04/04/2012 10:53:24 PM,04/04/2012 10:55:56 PM,04/04/2012 10:57:36 PM,04/04/2012 11:19:02 PM,04/04/2012 11:22:59 PM,Code 2 Transport,04/04/2012 11:43:41 PM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",120950342-55 -110890158,T03,11029369,Alarms,03/30/2011,03/30/2011,03/30/2011 11:58:45 AM,03/30/2011 11:59:47 AM,03/30/2011 12:00:10 PM,04/25/2016 02:05:22 PM,03/30/2011 12:03:52 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 12:12:16 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7852173616307, -122.417069611395)",110890158-T03 -140180075,B09,14006089,Gas Leak (Natural and LP Gases),01/18/2014,01/17/2014,01/18/2014 04:17:23 AM,01/18/2014 04:18:29 AM,01/18/2014 04:18:53 AM,01/18/2014 04:21:31 AM,01/18/2014 04:27:39 AM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/18/2014 04:33:37 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,3,3,false,Alarm,1,CHIEF,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",140180075-B09 -132640207,82,13089522,Medical Incident,09/21/2013,09/21/2013,09/21/2013 12:16:34 PM,09/21/2013 12:18:05 PM,09/21/2013 12:18:22 PM,09/21/2013 12:18:35 PM,09/21/2013 12:23:07 PM,09/21/2013 12:27:05 PM,09/21/2013 12:41:50 PM,Code 2 Transport,09/21/2013 01:11:16 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132640207-82 -122280137,85,12075514,Medical Incident,08/15/2012,08/15/2012,08/15/2012 10:56:58 AM,08/15/2012 10:57:16 AM,08/15/2012 10:57:32 AM,08/15/2012 10:58:06 AM,08/15/2012 11:09:02 AM,08/15/2012 11:32:47 AM,08/15/2012 11:42:03 AM,Code 2 Transport,08/15/2012 12:11:58 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",122280137-85 -160823351,KM11,16032710,Medical Incident,03/22/2016,03/22/2016,03/22/2016 07:09:50 PM,03/22/2016 07:12:20 PM,03/22/2016 07:12:55 PM,03/22/2016 07:13:31 PM,03/22/2016 07:20:21 PM,03/22/2016 07:41:57 PM,03/22/2016 07:45:59 PM,Code 2 Transport,03/22/2016 08:32:30 PM,PARKER AV/TURK BL,San Francisco,94118,B07,21,4557,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7778268618081, -122.453384994886)",160823351-KM11 -120830024,E07,12027435,Medical Incident,03/23/2012,03/22/2012,03/23/2012 02:38:23 AM,03/23/2012 02:41:01 AM,03/23/2012 02:41:28 AM,03/23/2012 02:43:29 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 02:44:25 AM,500 Block of VALENCIA ST,SF,94103,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7641127383912, -122.421739995141)",120830024-E07 -160810407,71,16032055,Medical Incident,03/21/2016,03/20/2016,03/21/2016 05:33:15 AM,03/21/2016 05:35:05 AM,03/21/2016 05:39:43 AM,03/21/2016 05:39:52 AM,03/21/2016 05:47:24 AM,03/21/2016 05:59:17 AM,03/21/2016 06:04:33 AM,Code 2 Transport,03/21/2016 06:34:50 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160810407-71 -160820167,58,16032430,Medical Incident,03/22/2016,03/21/2016,03/22/2016 01:39:44 AM,03/22/2016 01:39:44 AM,03/22/2016 01:40:40 AM,03/22/2016 01:40:54 AM,03/22/2016 01:58:23 AM,03/22/2016 01:58:32 AM,03/22/2016 02:06:58 AM,Code 2 Transport,03/22/2016 02:24:53 AM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",160820167-58 -132180024,E03,13073489,Medical Incident,08/06/2013,08/05/2013,08/06/2013 01:59:19 AM,08/06/2013 02:01:30 AM,08/06/2013 02:01:42 AM,08/06/2013 02:03:19 AM,08/06/2013 02:07:01 AM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/06/2013 02:11:24 AM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",132180024-E03 -113100105,E03,11102973,Medical Incident,11/06/2011,11/06/2011,11/06/2011 08:52:07 AM,11/06/2011 08:53:34 AM,11/06/2011 08:53:51 AM,11/06/2011 08:54:36 AM,11/06/2011 08:55:39 AM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,Other,11/06/2011 09:01:56 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",113100105-E03 -121990270,AM12,12066200,Medical Incident,07/17/2012,07/17/2012,07/17/2012 05:04:55 PM,07/17/2012 05:06:42 PM,07/17/2012 05:07:02 PM,07/17/2012 05:08:32 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 05:11:54 PM,POWELL ST/COLUMBUS AV,SF,94133,B01,28,1351,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8008329807078, -122.410953739812)",121990270-AM12 -122850270,B07,12094339,Structure Fire,10/11/2012,10/11/2012,10/11/2012 04:51:27 PM,10/11/2012 04:52:58 PM,10/11/2012 04:53:25 PM,10/11/2012 04:54:46 PM,10/11/2012 04:58:57 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 05:11:20 PM,2200 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,false,Alarm,1,CHIEF,5,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",122850270-B07 -110330261,75,11010882,Medical Incident,02/02/2011,02/02/2011,02/02/2011 03:48:07 PM,02/02/2011 03:49:57 PM,02/02/2011 03:54:02 PM,02/02/2011 03:54:17 PM,02/02/2011 04:17:19 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 05:10:46 PM,1400 Block of 3RD ST,SF,94158,B03,8,2231,1,1,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.770198458048, -122.389578265491)",110330261-75 -112220322,E28,11073444,Structure Fire,08/10/2011,08/10/2011,08/10/2011 07:52:47 PM,08/10/2011 07:55:37 PM,08/10/2011 07:55:53 PM,08/10/2011 07:59:46 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 08:07:23 PM,1200 Block of UNION ST,SF,94109,B01,41,1611,3,3,3,false,,1,ENGINE,6,1,2,Russian Hill,"(37.7991072019926, -122.420226685602)",112220322-E28 -160580113,57,16022950,Medical Incident,02/27/2016,02/26/2016,02/27/2016 12:49:02 AM,02/27/2016 12:49:55 AM,02/27/2016 12:50:19 AM,02/27/2016 12:50:27 AM,02/27/2016 12:53:43 AM,02/27/2016 01:15:47 AM,02/27/2016 01:20:33 AM,Code 2 Transport,02/27/2016 01:58:38 AM,500 Block of TAYLOR ST,San Francisco,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.787384716292, -122.41167556628)",160580113-57 -110840086,E20,11027587,Medical Incident,03/25/2011,03/24/2011,03/25/2011 06:38:09 AM,03/25/2011 06:40:21 AM,03/25/2011 06:41:14 AM,03/25/2011 06:43:52 AM,03/25/2011 06:47:28 AM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 07:16:12 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110840086-E20 -113040306,65,11101017,Medical Incident,10/31/2011,10/31/2011,10/31/2011 05:48:52 PM,10/31/2011 05:49:27 PM,10/31/2011 05:49:48 PM,10/31/2011 05:52:05 PM,10/31/2011 06:08:38 PM,10/31/2011 06:09:00 PM,10/31/2011 06:26:19 PM,Code 2 Transport,10/31/2011 06:48:07 PM,300 Block of DELLBROOK AVE,SF,94131,B08,20,5351,3,3,3,true,,1,MEDIC,2,8,7,Twin Peaks,"(37.7520890487805, -122.452418943057)",113040306-65 -160013006,76,16000444,Medical Incident,01/01/2016,01/01/2016,01/01/2016 06:07:26 PM,01/01/2016 06:09:23 PM,01/01/2016 06:10:04 PM,01/01/2016 06:10:14 PM,01/01/2016 06:13:41 PM,01/01/2016 06:39:03 PM,01/01/2016 06:45:23 PM,Code 2 Transport,01/01/2016 06:57:54 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160013006-76 -103080115,E43,10098634,Medical Incident,11/04/2010,11/04/2010,11/04/2010 09:36:58 AM,11/04/2010 09:37:20 AM,11/04/2010 09:38:12 AM,11/04/2010 09:38:46 AM,11/04/2010 09:41:12 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 09:47:50 AM,4500 Block of MISSION ST,SF,94112,B09,43,6116,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7249007364814, -122.43455277287)",103080115-E43 -160492844,62,16019817,Traffic Collision,02/18/2016,02/18/2016,02/18/2016 05:22:52 PM,02/18/2016 05:26:08 PM,02/18/2016 05:27:42 PM,02/18/2016 05:27:56 PM,02/18/2016 05:40:58 PM,02/18/2016 05:58:40 PM,02/18/2016 06:26:37 PM,Code 2 Transport,02/18/2016 06:52:22 PM,SAN BRUNO AV/SILLIMAN ST,San Francisco,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7312369255307, -122.405085875862)",160492844-62 -132590397,94,13087794,Medical Incident,09/16/2013,09/16/2013,09/16/2013 11:12:45 PM,09/16/2013 11:12:45 PM,09/16/2013 11:14:14 PM,09/16/2013 11:14:25 PM,09/16/2013 11:24:56 PM,09/16/2013 11:41:42 PM,09/16/2013 11:47:14 PM,Code 2 Transport,09/17/2013 12:27:26 AM,100 Block of TRUMBULL ST,SF,94112,B09,32,5635,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7307911496885, -122.427261743133)",132590397-94 -110540357,89,11017965,Medical Incident,02/23/2011,02/23/2011,02/23/2011 10:53:10 PM,02/23/2011 10:54:14 PM,02/23/2011 10:54:30 PM,02/23/2011 10:54:44 PM,02/23/2011 11:01:59 PM,02/23/2011 11:16:47 PM,02/23/2011 11:20:32 PM,Code 2 Transport,02/23/2011 11:43:13 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,2,2,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7854812046447, -122.421203512)",110540357-89 -110490063,D3,11016093,Structure Fire,02/18/2011,02/17/2011,02/18/2011 06:16:40 AM,02/18/2011 06:17:35 AM,02/18/2011 06:18:06 AM,02/18/2011 06:19:06 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/18/2011 06:24:57 AM,1300 Block of UNDERWOOD AVE,SF,94124,B10,17,6653,3,3,3,false,,1,CHIEF,8,10,10,Bayview Hunters Point,"(37.7270915966656, -122.387216118798)",110490063-D3 -111160375,E17,11038435,Medical Incident,04/26/2011,04/26/2011,04/26/2011 09:00:35 PM,04/26/2011 09:01:42 PM,04/26/2011 09:01:54 PM,04/26/2011 09:02:40 PM,04/26/2011 09:04:35 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 09:14:49 PM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7298790936901, -122.382178424141)",111160375-E17 -121880124,AM20,12062587,Medical Incident,07/06/2012,07/06/2012,07/06/2012 10:21:42 AM,07/06/2012 10:22:49 AM,07/06/2012 10:23:10 AM,07/06/2012 10:23:50 AM,07/06/2012 10:26:49 AM,07/06/2012 10:46:16 AM,07/06/2012 11:01:49 AM,Code 2 Transport,07/06/2012 11:57:07 AM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7828124037537, -122.432679112133)",121880124-AM20 -131800129,KM14,13061157,Medical Incident,06/29/2013,06/29/2013,06/29/2013 10:27:57 AM,06/29/2013 10:28:25 AM,06/29/2013 10:28:56 AM,06/29/2013 10:29:58 AM,06/29/2013 10:34:05 AM,06/29/2013 10:51:19 AM,06/29/2013 11:15:00 AM,Code 2 Transport,06/29/2013 11:34:23 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",131800129-KM14 -132610147,E39,13088337,Medical Incident,09/18/2013,09/18/2013,09/18/2013 10:19:55 AM,09/18/2013 10:21:15 AM,09/18/2013 10:21:40 AM,09/18/2013 10:22:50 AM,09/18/2013 10:26:04 AM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 10:35:56 AM,0 Block of EL SERENO CT,SF,94127,B09,39,8654,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7387400303477, -122.444823965999)",132610147-E39 -160261950,KM04,16010312,Medical Incident,01/26/2016,01/26/2016,01/26/2016 01:26:33 PM,01/26/2016 01:27:36 PM,01/26/2016 01:28:13 PM,01/26/2016 01:31:33 PM,01/26/2016 01:33:08 PM,01/26/2016 01:48:45 PM,01/26/2016 02:11:10 PM,Code 2 Transport,01/26/2016 02:44:35 PM,HARRISON ST/9TH ST,San Francisco,94103,B03,29,2333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7725264425971, -122.410076850083)",160261950-KM04 -160101498,KM04,16004033,Medical Incident,01/10/2016,01/10/2016,01/10/2016 12:31:13 PM,01/10/2016 12:33:46 PM,01/10/2016 12:47:33 PM,01/10/2016 12:48:11 PM,01/10/2016 12:55:34 PM,01/10/2016 01:14:35 PM,01/10/2016 01:24:18 PM,Code 2 Transport,01/10/2016 01:44:47 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",160101498-KM04 -111230269,54,11040693,Medical Incident,05/03/2011,05/03/2011,05/03/2011 04:29:47 PM,05/03/2011 04:29:49 PM,05/03/2011 04:31:43 PM,05/03/2011 04:32:24 PM,05/03/2011 04:44:20 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Patient Declined Transport,05/03/2011 05:24:40 PM,5600 Block of MISSION ST,SF,94112,B09,33,6211,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7111379399076, -122.447066438218)",111230269-54 -160751179,62,16029659,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:27:12 AM,03/15/2016 10:29:11 AM,03/15/2016 10:29:37 AM,03/15/2016 10:29:45 AM,03/15/2016 10:34:32 AM,03/15/2016 10:51:06 AM,03/15/2016 10:58:39 AM,Code 2 Transport,03/15/2016 11:25:23 AM,HANCOCK ST/CHURCH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7604910079286, -122.428278232265)",160751179-62 -111670143,AM08,11055097,Medical Incident,06/16/2011,06/16/2011,06/16/2011 01:23:08 PM,06/16/2011 01:25:00 PM,06/16/2011 01:25:57 PM,06/16/2011 01:26:32 PM,06/16/2011 01:44:58 PM,06/16/2011 01:54:49 PM,06/16/2011 02:04:19 PM,Code 2 Transport,06/16/2011 02:52:29 PM,100 Block of MASON ST,SF,94102,B03,1,1366,2,2,2,false,,1,PRIVATE,1,3,3,Tenderloin,"(37.7848247766053, -122.409335015482)",111670143-AM08 -160791686,KM05,16031402,Medical Incident,03/19/2016,03/19/2016,03/19/2016 12:26:46 PM,03/19/2016 12:27:02 PM,03/19/2016 12:28:27 PM,03/19/2016 12:29:38 PM,03/19/2016 12:33:19 PM,03/19/2016 12:54:05 PM,03/19/2016 01:17:59 PM,Code 2 Transport,03/19/2016 01:51:48 PM,3000 Block of 20TH ST,San Francisco,94110,B06,7,5451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7590542429617, -122.411163913692)",160791686-KM05 -160161243,88,16006378,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:49:44 AM,01/16/2016 10:49:44 AM,01/16/2016 10:50:42 AM,01/16/2016 10:51:08 AM,01/16/2016 10:56:10 AM,01/16/2016 11:14:45 AM,01/16/2016 11:30:27 AM,Code 2 Transport,01/16/2016 12:05:05 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160161243-88 -131190309,AM18,13040147,Medical Incident,04/29/2013,04/29/2013,04/29/2013 05:46:12 PM,04/29/2013 05:47:15 PM,04/29/2013 05:48:27 PM,04/29/2013 05:49:14 PM,04/25/2016 01:53:03 PM,04/29/2013 06:13:21 PM,04/29/2013 06:28:50 PM,Code 2 Transport,04/29/2013 07:01:27 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7824182864419, -122.403869611535)",131190309-AM18 -160341821,54,16013399,Medical Incident,02/03/2016,02/03/2016,02/03/2016 01:30:47 PM,02/03/2016 01:31:11 PM,02/03/2016 01:32:29 PM,02/03/2016 01:32:44 PM,02/03/2016 01:39:02 PM,02/03/2016 02:04:22 PM,02/03/2016 02:27:47 PM,Code 2 Transport,02/03/2016 03:06:06 PM,100 Block of REY ST,San Francisco,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7116474138214, -122.411861229575)",160341821-54 -160201551,85,16007984,Medical Incident,01/20/2016,01/20/2016,01/20/2016 11:40:59 AM,01/20/2016 11:42:56 AM,01/20/2016 11:44:14 AM,01/20/2016 11:44:25 AM,01/20/2016 11:54:11 AM,01/20/2016 12:17:26 PM,01/20/2016 12:39:17 PM,Code 2 Transport,01/20/2016 01:24:12 PM,1000 Block of INGERSON AV,San Francisco,94124,B10,17,6612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7196891287467, -122.393876589377)",160201551-85 -160163528,72,16006599,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:43:09 PM,01/16/2016 09:43:45 PM,01/16/2016 09:44:05 PM,01/16/2016 09:44:20 PM,01/16/2016 09:50:47 PM,01/16/2016 10:09:51 PM,01/16/2016 10:39:28 PM,Code 2 Transport,01/16/2016 11:37:31 PM,900 Block of HARRISON ST,San Francisco,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7783376980367, -122.402624174737)",160163528-72 -121330140,KM02,12044230,Medical Incident,05/12/2012,05/12/2012,05/12/2012 11:05:54 AM,05/12/2012 11:07:51 AM,05/12/2012 11:14:20 AM,05/12/2012 11:14:57 AM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 11:21:12 AM,1100 Block of MASON CT,TI,94130,B03,48,2931,1,1,2,false,Non Life-threatening,1,PRIVATE,4,None,6,Treasure Island,"(37.8284029538431, -122.377606374892)",121330140-KM02 -122380294,AM18,12078939,Medical Incident,08/25/2012,08/25/2012,08/25/2012 09:22:22 PM,08/25/2012 09:23:14 PM,08/25/2012 09:24:09 PM,08/25/2012 09:24:40 PM,08/25/2012 09:29:03 PM,08/25/2012 09:36:18 PM,08/25/2012 09:46:15 PM,Code 2 Transport,08/25/2012 10:15:27 PM,200 Block of BALBOA ST,SF,94118,B07,31,7123,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7774109002765, -122.461336229441)",122380294-AM18 -123150243,E08,12104882,Traffic Collision,11/10/2012,11/10/2012,11/10/2012 03:31:01 PM,11/10/2012 03:31:36 PM,11/10/2012 03:32:32 PM,11/10/2012 03:33:51 PM,11/10/2012 03:36:49 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 04:06:14 PM,HOWARD ST/5TH ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",123150243-E08 -160830353,70,16032834,Medical Incident,03/23/2016,03/22/2016,03/23/2016 04:21:53 AM,03/23/2016 04:23:03 AM,03/23/2016 04:23:36 AM,03/23/2016 04:23:42 AM,03/23/2016 04:27:04 AM,03/23/2016 04:41:43 AM,03/23/2016 04:48:18 AM,Code 2 Transport,03/23/2016 05:31:18 AM,1200 Block of MASON ST,San Francisco,94108,B01,2,1415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7949762517322, -122.411384437499)",160830353-70 -160420249,52,16016719,Medical Incident,02/11/2016,02/10/2016,02/11/2016 03:06:04 AM,02/11/2016 03:06:39 AM,02/11/2016 03:06:53 AM,02/11/2016 03:07:02 AM,02/11/2016 03:09:57 AM,02/11/2016 03:25:18 AM,02/11/2016 03:40:33 AM,Code 3 Transport,02/11/2016 03:51:51 AM,2100 Block of 28TH AVE,San Francisco,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7472839020213, -122.485731349104)",160420249-52 -120400028,T19,12013208,Alarms,02/09/2012,02/08/2012,02/09/2012 02:23:10 AM,02/09/2012 02:24:38 AM,02/09/2012 02:25:13 AM,02/09/2012 02:27:25 AM,02/09/2012 02:30:07 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 02:35:48 AM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",120400028-T19 -140940137,KM01,14031555,Medical Incident,04/04/2014,04/04/2014,04/04/2014 11:01:36 AM,04/04/2014 11:03:38 AM,04/04/2014 11:03:58 AM,04/04/2014 11:04:57 AM,04/04/2014 11:14:09 AM,04/04/2014 11:28:57 AM,04/04/2014 11:39:59 AM,Code 2 Transport,04/04/2014 12:33:31 PM,2100 Block of FULTON ST,SAN FRANCISCO,94117,B07,21,4542,,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,1,Lone Mountain/USF,"(37.7753367356743, -122.450543942752)",140940137-KM01 -121840319,79,12061410,Medical Incident,07/02/2012,07/02/2012,07/02/2012 08:15:29 PM,07/02/2012 08:17:34 PM,07/02/2012 08:18:54 PM,07/02/2012 08:19:06 PM,07/02/2012 08:24:12 PM,07/02/2012 08:44:15 PM,07/02/2012 08:49:13 PM,Code 2 Transport,07/02/2012 09:10:24 PM,600 Block of CLAYTON ST,SF,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7693399647388, -122.448415933543)",121840319-79 -102450274,E32,10077388,Medical Incident,09/02/2010,09/02/2010,09/02/2010 01:54:23 PM,09/02/2010 01:55:07 PM,09/02/2010 01:55:33 PM,09/02/2010 01:56:59 PM,09/02/2010 01:59:41 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Patient Declined Transport,09/02/2010 02:15:26 PM,0 Block of ROTTECK ST,SF,94112,B09,32,8137,3,2,2,true,,1,ENGINE,1,9,8,Outer Mission,"(37.7329432860793, -122.431018033492)",102450274-E32 -133520044,E03,13119455,Medical Incident,12/18/2013,12/17/2013,12/18/2013 04:24:52 AM,12/18/2013 04:25:35 AM,12/18/2013 04:25:58 AM,12/18/2013 04:27:34 AM,12/18/2013 04:30:57 AM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/18/2013 04:35:07 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",133520044-E03 -133030324,E13,13103042,Outside Fire,10/30/2013,10/30/2013,10/30/2013 07:00:21 PM,10/30/2013 07:00:21 PM,10/30/2013 07:01:08 PM,10/30/2013 07:02:19 PM,10/30/2013 07:07:40 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 07:09:17 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",133030324-E13 -132240260,AM04,13075690,Medical Incident,08/12/2013,08/12/2013,08/12/2013 04:33:19 PM,08/12/2013 04:34:36 PM,08/12/2013 04:35:47 PM,08/12/2013 04:35:52 PM,08/12/2013 04:41:57 PM,08/12/2013 04:54:39 PM,08/12/2013 05:10:19 PM,Code 2 Transport,08/12/2013 05:44:28 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",132240260-AM04 -123660415,E02,12122635,Medical Incident,12/31/2012,12/31/2012,12/31/2012 11:08:20 PM,12/31/2012 11:08:33 PM,12/31/2012 11:09:33 PM,12/31/2012 11:09:48 PM,12/31/2012 11:10:51 PM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,12/31/2012 11:17:30 PM,GRANT AV/PACIFIC AV,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7969019046439, -122.406827678757)",123660415-E02 -131830013,85,13062217,Medical Incident,07/02/2013,07/01/2013,07/02/2013 01:04:27 AM,07/02/2013 01:06:47 AM,07/02/2013 01:07:17 AM,07/02/2013 01:08:15 AM,07/02/2013 01:13:12 AM,07/02/2013 01:23:22 AM,07/02/2013 01:41:03 AM,Code 2 Transport,07/02/2013 02:05:20 AM,STANYAN ST/FULTON ST,SF,94122,B07,21,4561,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7747554836103, -122.454682645753)",131830013-85 -140870254,B10,14029336,Fuel Spill,03/28/2014,03/28/2014,03/28/2014 04:00:52 PM,03/28/2014 04:03:42 PM,03/28/2014 04:09:23 PM,03/28/2014 04:11:48 PM,03/28/2014 04:15:12 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Fire,03/28/2014 04:39:49 PM,100 Block of TOPEKA AVE,SAN FRANCISCO,94124,B10,42,6446,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7335074659462, -122.398105759042)",140870254-B10 -140810379,92,14027537,Structure Fire,03/22/2014,03/22/2014,03/22/2014 11:28:46 PM,03/22/2014 11:29:19 PM,03/22/2014 11:29:32 PM,03/22/2014 11:30:33 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Fire,03/22/2014 11:53:18 PM,1600 Block of STOCKTON ST,SAN FRANCISCO,94133,B01,28,1335,3,3,3,true,Fire,1,MEDIC,12,1,3,North Beach,"(37.8009162018101, -122.409211049005)",140810379-92 -113000162,KM05,11099496,Medical Incident,10/27/2011,10/27/2011,10/27/2011 12:20:15 PM,10/27/2011 12:21:03 PM,10/27/2011 12:21:32 PM,10/27/2011 12:23:37 PM,10/27/2011 12:29:09 PM,10/27/2011 12:34:47 PM,10/27/2011 01:02:28 PM,Code 2 Transport,10/27/2011 01:20:12 PM,200 Block of GRANADA AVE,SF,94112,B09,15,8473,3,3,3,false,,1,PRIVATE,2,9,7,Oceanview/Merced/Ingleside,"(37.7229722670575, -122.457235193832)",113000162-KM05 -130590301,KM14,13019907,Medical Incident,02/28/2013,02/28/2013,02/28/2013 06:20:18 PM,02/28/2013 06:21:33 PM,02/28/2013 06:22:26 PM,02/28/2013 06:23:14 PM,02/28/2013 06:28:17 PM,02/28/2013 06:42:09 PM,02/28/2013 06:59:36 PM,Code 2 Transport,02/28/2013 07:30:56 PM,1300 Block of HYDE ST,SF,94109,B01,41,1564,3,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.7932523521612, -122.417779084032)",130590301-KM14 -102390131,67,10075338,Medical Incident,08/27/2010,08/27/2010,08/27/2010 11:25:31 AM,08/27/2010 11:26:51 AM,08/27/2010 11:27:46 AM,08/27/2010 11:28:04 AM,08/27/2010 11:33:18 AM,08/27/2010 11:43:48 AM,08/27/2010 11:59:10 AM,Code 2 Transport,08/27/2010 12:25:57 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,true,,1,MEDIC,3,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",102390131-67 -130620189,87,13020778,Medical Incident,03/03/2013,03/03/2013,03/03/2013 12:16:50 PM,03/03/2013 12:18:39 PM,03/03/2013 12:22:59 PM,03/03/2013 12:23:29 PM,03/03/2013 12:45:38 PM,03/03/2013 01:08:22 PM,03/03/2013 01:32:40 PM,Code 2 Transport,03/03/2013 01:57:42 PM,0 Block of SAN MARCOS AVE,SF,94116,B08,39,8623,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7461195450511, -122.463924054612)",130620189-87 -131670121,T06,13056642,Alarms,06/16/2013,06/16/2013,06/16/2013 09:51:30 AM,06/16/2013 09:52:58 AM,06/16/2013 09:53:10 AM,06/16/2013 09:54:42 AM,06/16/2013 09:58:15 AM,04/25/2016 01:52:16 PM,04/25/2016 01:52:16 PM,Other,06/16/2013 09:59:45 AM,200 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.773831971677, -122.424834587416)",131670121-T06 -160722389,74,16028669,Medical Incident,03/12/2016,03/12/2016,03/12/2016 05:03:02 PM,03/12/2016 05:03:33 PM,03/12/2016 05:04:00 PM,03/12/2016 05:04:27 PM,03/12/2016 05:07:16 PM,03/12/2016 05:36:35 PM,03/12/2016 05:38:57 PM,Code 2 Transport,03/12/2016 06:08:51 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160722389-74 -102620361,B07,10083046,Alarms,09/19/2010,09/19/2010,09/19/2010 10:52:33 PM,09/19/2010 10:53:56 PM,09/19/2010 10:54:22 PM,09/19/2010 10:55:45 PM,09/19/2010 10:59:43 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/19/2010 11:01:57 PM,800 Block of 24TH AVE,SF,94121,B07,14,7177,3,3,3,false,,1,CHIEF,3,7,1,Outer Richmond,"(37.773548644306, -122.483255988782)",102620361-B07 -111280112,79,11042296,Medical Incident,05/08/2011,05/08/2011,05/08/2011 10:31:34 AM,05/08/2011 10:32:23 AM,05/08/2011 10:32:39 AM,05/08/2011 10:33:31 AM,05/08/2011 10:53:24 AM,05/08/2011 11:08:13 AM,05/08/2011 11:11:43 AM,Code 2 Transport,05/08/2011 11:38:01 AM,0 Block of JOHN ST,SF,94133,B01,2,1354,3,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7960085369465, -122.410820106223)",111280112-79 -102980296,T09,10095242,Structure Fire,10/25/2010,10/25/2010,10/25/2010 05:47:39 PM,10/25/2010 05:47:39 PM,10/25/2010 05:47:47 PM,10/25/2010 05:49:05 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/25/2010 05:50:31 PM,25TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,false,,1,TRUCK,2,10,10,Potrero Hill,"(37.7521940654679, -122.398452381695)",102980296-T09 -130720146,E28,13023968,Traffic Collision,03/13/2013,03/13/2013,03/13/2013 10:22:12 AM,03/13/2013 10:22:44 AM,03/13/2013 10:22:56 AM,03/13/2013 10:23:28 AM,03/13/2013 10:24:54 AM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 10:58:27 AM,BAY ST/MASON ST,SF,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8056184799358, -122.413604167697)",130720146-E28 -160571696,KM09,16022747,Medical Incident,02/26/2016,02/26/2016,02/26/2016 12:46:58 PM,02/26/2016 12:46:58 PM,02/26/2016 12:47:55 PM,02/26/2016 12:48:50 PM,02/26/2016 12:58:38 PM,02/26/2016 01:28:20 PM,02/26/2016 02:05:13 PM,Code 2 Transport,02/26/2016 02:29:56 PM,400 Block of CAPP ST,San Francisco,94110,B06,7,5433,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7594955059934, -122.41811039755)",160571696-KM09 -103030327,E36,10096912,Medical Incident,10/30/2010,10/30/2010,10/30/2010 09:30:02 PM,10/30/2010 09:30:59 PM,10/30/2010 09:32:19 PM,04/25/2016 02:07:51 PM,10/30/2010 09:35:14 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 09:42:26 PM,HAYES ST/OCTAVIA ST,SF,94102,B02,36,3315,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7766875550419, -122.424513700951)",103030327-E36 -160323130,KM02,16012721,Medical Incident,02/01/2016,02/01/2016,02/01/2016 07:24:58 PM,02/01/2016 07:25:43 PM,02/01/2016 07:25:54 PM,02/01/2016 07:26:30 PM,02/01/2016 07:34:50 PM,02/01/2016 07:46:29 PM,02/01/2016 07:55:46 PM,Code 2 Transport,02/01/2016 08:29:59 PM,900 Block of PRESIDIO AV,San Francisco,94115,B05,10,4365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7830075660174, -122.445858485815)",160323130-KM02 -120230257,75,12007856,Medical Incident,01/23/2012,01/23/2012,01/23/2012 04:27:39 PM,01/23/2012 04:28:15 PM,01/23/2012 04:28:24 PM,01/23/2012 04:29:13 PM,01/23/2012 04:34:04 PM,01/23/2012 04:52:05 PM,01/23/2012 05:15:04 PM,Code 2 Transport,01/23/2012 05:43:18 PM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",120230257-75 -160181210,85,16007194,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:14:21 AM,01/18/2016 11:14:21 AM,01/18/2016 11:15:11 AM,01/18/2016 11:15:32 AM,01/18/2016 11:21:03 AM,01/18/2016 11:32:21 AM,01/18/2016 11:52:58 AM,Code 2 Transport,01/18/2016 12:31:39 PM,BAY ST/GOUGH ST,San Francisco,94123,B04,16,3236,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8037271288044, -122.428400274715)",160181210-85 -160293358,AM22,16011566,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:49:54 PM,01/29/2016 08:49:54 PM,01/29/2016 08:50:19 PM,01/29/2016 08:50:47 PM,01/29/2016 08:57:35 PM,01/29/2016 09:14:22 PM,01/29/2016 09:25:04 PM,Code 2 Transport,01/29/2016 09:50:38 PM,MASON ST/GEARY ST,San Francisco,94102,B04,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.787149142759, -122.409874017562)",160293358-AM22 -112940057,E05,11097428,Structure Fire,10/21/2011,10/20/2011,10/21/2011 07:29:54 AM,10/21/2011 07:29:54 AM,10/21/2011 07:30:31 AM,10/21/2011 07:31:31 AM,10/21/2011 07:32:31 AM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 07:33:31 AM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",112940057-E05 -123440097,E01,12114916,Medical Incident,12/09/2012,12/08/2012,12/09/2012 07:14:06 AM,12/09/2012 07:16:32 AM,12/09/2012 07:17:19 AM,04/25/2016 01:55:24 PM,12/09/2012 07:20:02 AM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/09/2012 07:28:37 AM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",123440097-E01 -112870165,E18,11095125,Administrative,10/14/2011,10/14/2011,10/14/2011 10:41:04 AM,10/14/2011 10:42:45 AM,10/14/2011 10:42:54 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 10:43:36 AM,1900 Block of 32ND AVE,SF,94116,B08,18,7533,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7508238719258, -122.490273641262)",112870165-E18 -160562269,74,16022430,Medical Incident,02/25/2016,02/25/2016,02/25/2016 02:34:34 PM,02/25/2016 02:35:03 PM,02/25/2016 02:35:22 PM,02/25/2016 02:35:35 PM,02/25/2016 02:37:37 PM,02/25/2016 02:52:08 PM,02/25/2016 03:10:43 PM,Code 2 Transport,02/25/2016 03:39:16 PM,200 Block of LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",160562269-74 -111830289,88,11060535,Medical Incident,07/02/2011,07/02/2011,07/02/2011 07:05:33 PM,07/02/2011 07:06:32 PM,07/02/2011 07:07:02 PM,07/02/2011 07:07:14 PM,07/02/2011 07:10:56 PM,07/02/2011 07:30:57 PM,07/02/2011 07:38:04 PM,Code 2 Transport,07/02/2011 08:03:03 PM,600 Block of HAYES ST,SF,94102,B02,36,3413,3,3,3,true,,1,MEDIC,1,2,5,Hayes Valley,"(37.7763047597518, -122.427077545588)",111830289-88 -110990340,93,11033018,Transfer,04/09/2011,04/09/2011,04/09/2011 09:07:57 PM,04/09/2011 09:10:45 PM,04/09/2011 09:10:56 PM,04/09/2011 09:21:25 PM,04/09/2011 09:29:48 PM,04/09/2011 09:53:22 PM,04/09/2011 10:01:22 PM,Code 2 Transport,04/09/2011 10:24:29 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",110990340-93 -102870232,86,10091540,Medical Incident,10/14/2010,10/14/2010,10/14/2010 02:04:36 PM,10/14/2010 02:05:06 PM,10/14/2010 02:10:19 PM,10/14/2010 02:11:26 PM,10/14/2010 02:15:23 PM,10/14/2010 02:23:50 PM,10/14/2010 02:34:47 PM,Code 2 Transport,10/14/2010 03:06:11 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,2,2,2,true,,1,MEDIC,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",102870232-86 -160611090,87,16024256,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:27:35 AM,03/01/2016 10:29:54 AM,03/01/2016 10:30:13 AM,03/01/2016 10:30:28 AM,03/01/2016 10:36:04 AM,03/01/2016 10:59:09 AM,03/01/2016 11:36:16 AM,Code 2 Transport,03/01/2016 12:03:29 PM,1500 Block of INDIANA ST,San Francisco,94107,B10,25,2635,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7507499478953, -122.390567258683)",160611090-87 -110790392,75,11026227,Medical Incident,03/20/2011,03/20/2011,03/20/2011 11:44:33 PM,03/20/2011 11:44:34 PM,03/20/2011 11:45:07 PM,03/20/2011 11:46:20 PM,03/20/2011 11:54:01 PM,03/21/2011 12:06:11 AM,03/21/2011 12:17:30 AM,Code 2 Transport,03/21/2011 12:32:13 AM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",110790392-75 -132680261,RS2,13091045,Medical Incident,09/25/2013,09/25/2013,09/25/2013 03:50:05 PM,09/25/2013 03:50:20 PM,09/25/2013 03:50:52 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 03:52:24 PM,18TH ST/LAPIDGE ST,SF,94110,B02,7,5422,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,6,8,Mission,"(37.7616502201426, -122.422411420735)",132680261-RS2 -140530249,AM12,14018003,Medical Incident,02/22/2014,02/22/2014,02/22/2014 04:40:45 PM,02/22/2014 04:42:19 PM,02/22/2014 04:42:32 PM,02/22/2014 04:43:29 PM,02/22/2014 04:48:40 PM,04/25/2016 01:48:05 PM,04/25/2016 01:48:05 PM,Against Medical Advice,02/22/2014 05:33:52 PM,300 Block of GENNESSEE ST,SF,94112,B09,15,8234,3,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7311092778715, -122.451074581002)",140530249-AM12 -102850061,E20,10090658,Medical Incident,10/12/2010,10/11/2010,10/12/2010 06:23:32 AM,10/12/2010 06:23:57 AM,10/12/2010 06:24:16 AM,10/12/2010 06:25:30 AM,10/12/2010 06:26:53 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 06:49:33 AM,100 Block of GALEWOOD CIR,SF,94131,B08,20,5342,3,3,3,true,,1,ENGINE,1,8,7,Inner Sunset,"(37.7518232059279, -122.457322629661)",102850061-E20 -132220381,E43,13075132,Medical Incident,08/10/2013,08/10/2013,08/10/2013 10:26:52 PM,08/10/2013 10:27:31 PM,08/10/2013 10:27:54 PM,08/10/2013 10:29:11 PM,08/10/2013 10:34:03 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,Other,08/10/2013 10:45:38 PM,100 Block of SANTOS ST,SF,94134,B09,43,6244,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",132220381-E43 -131950350,67,13066386,Medical Incident,07/14/2013,07/14/2013,07/14/2013 11:43:28 PM,07/14/2013 11:45:25 PM,07/14/2013 11:46:33 PM,07/14/2013 11:46:53 PM,07/14/2013 11:52:34 PM,07/15/2013 12:11:26 AM,07/15/2013 12:17:42 AM,Code 2 Transport,07/15/2013 12:37:10 AM,300 Block of CALIFORNIA ST,SF,94104,B01,13,1162,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",131950350-67 -131140135,B08,13038393,Structure Fire,04/24/2013,04/24/2013,04/24/2013 10:50:02 AM,04/24/2013 10:50:33 AM,04/24/2013 01:13:22 PM,04/24/2013 01:14:37 PM,04/24/2013 01:14:02 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 04:49:32 PM,2000 Block of VALLEJO ST,SF,94123,B04,38,3442,3,3,3,false,Fire,3,CHIEF,36,4,2,Marina,"(37.7958030542042, -122.431016298283)",131140135-B08 -103550090,67,10113884,Medical Incident,12/21/2010,12/21/2010,12/21/2010 08:54:20 AM,12/21/2010 08:56:51 AM,12/21/2010 08:58:23 AM,12/21/2010 08:58:29 AM,12/21/2010 09:11:10 AM,12/21/2010 09:30:44 AM,12/21/2010 09:44:06 AM,Code 2 Transport,12/21/2010 10:12:13 AM,2300 Block of 33RD AVE,SF,94116,B08,18,7546,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7433267118277, -122.490688040344)",103550090-67 -160202941,AM16,16008099,Medical Incident,01/20/2016,01/20/2016,01/20/2016 05:41:31 PM,01/20/2016 05:42:23 PM,01/20/2016 05:48:32 PM,01/20/2016 05:48:32 PM,01/20/2016 05:52:44 PM,01/20/2016 05:56:21 PM,01/20/2016 06:14:52 PM,Code 2 Transport,01/20/2016 06:42:02 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160202941-AM16 -160453189,KM03,16018292,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:58:52 PM,02/14/2016 08:58:52 PM,02/14/2016 09:00:31 PM,02/14/2016 09:00:59 PM,02/14/2016 09:12:23 PM,02/14/2016 09:31:05 PM,02/14/2016 09:40:01 PM,Code 2 Transport,02/14/2016 09:59:49 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160453189-KM03 -103200381,T09,10102725,Vehicle Fire,11/16/2010,11/16/2010,11/16/2010 10:05:57 PM,11/16/2010 10:07:02 PM,11/16/2010 10:07:10 PM,11/16/2010 10:08:13 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 10:12:30 PM,MANSELL ST/DARTMOUTH ST,SF,94134,B09,44,6322,3,3,3,false,,1,TRUCK,2,9,10,McLaren Park,"(37.7195867262349, -122.409021908423)",103200381-T09 -112100198,E22,11069347,Medical Incident,07/29/2011,07/29/2011,07/29/2011 03:30:34 PM,07/29/2011 03:31:41 PM,07/29/2011 03:32:05 PM,07/29/2011 03:33:17 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 03:36:17 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,,1,ENGINE,3,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",112100198-E22 -112380054,E41,11078447,Citizen Assist / Service Call,08/26/2011,08/25/2011,08/26/2011 05:55:58 AM,08/26/2011 05:58:01 AM,08/26/2011 05:58:05 AM,08/26/2011 05:59:26 AM,08/26/2011 06:01:23 AM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 06:07:24 AM,1200 Block of FILBERT ST,SF,94109,B01,41,1626,3,3,3,false,,1,ENGINE,1,1,2,Russian Hill,"(37.7999745038153, -122.420050559214)",112380054-E41 -113020213,E22,11100219,Medical Incident,10/29/2011,10/29/2011,10/29/2011 01:05:30 PM,10/29/2011 01:05:42 PM,10/29/2011 01:06:25 PM,10/29/2011 01:07:45 PM,10/29/2011 01:09:52 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/29/2011 01:15:52 PM,6TH AV/LINCOLN WY,SF,94122,B08,22,7325,3,3,3,false,,1,ENGINE,2,7,5,Inner Sunset,"(37.7660567219946, -122.463233168799)",113020213-E22 -132520134,E08,13085137,Alarms,09/09/2013,09/09/2013,09/09/2013 10:04:32 AM,09/09/2013 10:05:57 AM,09/09/2013 10:06:31 AM,09/09/2013 10:09:06 AM,09/09/2013 10:14:18 AM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Other,09/09/2013 10:17:19 AM,400 Block of CHINA BASIN ST,SF,94158,B03,8,2231,3,3,3,true,Alarm,1,ENGINE,2,3,6,Mission Bay,"(37.7720245149608, -122.388255494514)",132520134-E08 -113510321,85,11116596,Medical Incident,12/17/2011,12/17/2011,12/17/2011 05:45:57 PM,12/17/2011 05:48:10 PM,12/17/2011 05:55:19 PM,12/17/2011 05:56:14 PM,12/17/2011 06:02:08 PM,12/17/2011 06:22:32 PM,12/17/2011 06:52:38 PM,Code 2 Transport,12/17/2011 07:05:35 PM,0 Block of GARNETT TER,SF,94124,B10,17,6624,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7327997583863, -122.381958643275)",113510321-85 -122860088,E09,12094533,Traffic Collision,10/12/2012,10/12/2012,10/12/2012 08:46:09 AM,10/12/2012 08:46:42 AM,10/12/2012 08:47:14 AM,10/12/2012 08:48:21 AM,10/12/2012 09:07:26 AM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 08:52:16 AM,26TH ST/YORK ST,SF,94110,B06,9,5532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7496572265458, -122.407884355924)",122860088-E09 -132910017,E03,13098873,Medical Incident,10/18/2013,10/17/2013,10/18/2013 01:05:14 AM,10/18/2013 01:05:58 AM,10/18/2013 01:06:21 AM,10/18/2013 01:09:30 AM,10/18/2013 01:09:46 AM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/18/2013 01:13:27 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",132910017-E03 -160630824,AM02,16024982,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:30:49 AM,03/03/2016 08:31:38 AM,03/03/2016 08:31:46 AM,03/03/2016 08:32:21 AM,03/03/2016 08:39:05 AM,03/03/2016 08:53:18 AM,03/03/2016 09:10:18 AM,Code 2 Transport,03/03/2016 09:44:35 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160630824-AM02 -160251579,KM08,16009908,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:54:32 AM,01/25/2016 11:56:29 AM,01/25/2016 11:58:28 AM,01/25/2016 12:00:45 PM,01/25/2016 12:06:03 PM,01/25/2016 12:19:53 PM,01/25/2016 12:28:10 PM,Code 2 Transport,01/25/2016 01:09:38 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160251579-KM08 -103560109,KM11,10114204,Medical Incident,12/22/2010,12/22/2010,12/22/2010 10:10:40 AM,12/22/2010 10:12:33 AM,12/22/2010 10:13:56 AM,12/22/2010 10:14:32 AM,12/22/2010 10:18:29 AM,12/22/2010 10:36:07 AM,12/22/2010 10:46:00 AM,Code 2 Transport,12/22/2010 11:05:35 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",103560109-KM11 -111770376,E33,11058532,Medical Incident,06/26/2011,06/26/2011,06/26/2011 07:38:29 PM,06/26/2011 07:39:30 PM,06/26/2011 07:41:10 PM,06/26/2011 07:41:36 PM,06/26/2011 07:42:55 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/26/2011 07:52:18 PM,200 Block of SAGAMORE ST,SF,94112,B09,33,8375,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7114349669499, -122.460534777512)",111770376-E33 -122460022,RC1,12081200,Medical Incident,09/02/2012,09/01/2012,09/02/2012 01:02:14 AM,09/02/2012 01:03:18 AM,09/02/2012 01:03:41 AM,09/02/2012 01:05:48 AM,09/02/2012 01:08:48 AM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 01:09:42 AM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",122460022-RC1 -130040062,88,13001258,Medical Incident,01/04/2013,01/03/2013,01/04/2013 05:55:44 AM,01/04/2013 05:56:56 AM,01/04/2013 05:57:05 AM,01/04/2013 05:57:18 AM,01/04/2013 06:04:32 AM,01/04/2013 06:24:31 AM,01/04/2013 06:34:44 AM,Code 2 Transport,01/04/2013 06:55:41 AM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7363435467508, -122.411122016119)",130040062-88 -140420183,E10,14014273,Medical Incident,02/11/2014,02/11/2014,02/11/2014 12:08:58 PM,02/11/2014 12:09:36 PM,02/11/2014 12:42:26 PM,02/11/2014 12:43:09 PM,02/11/2014 12:44:38 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/11/2014 01:03:00 PM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,,E,3,true,Potentially Life-Threatening,1,ENGINE,3,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",140420183-E10 -160831189,KM04,16032901,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:00:46 AM,03/23/2016 10:02:02 AM,03/23/2016 10:02:18 AM,03/23/2016 10:03:15 AM,03/23/2016 10:16:14 AM,03/23/2016 10:38:05 AM,03/23/2016 11:17:43 AM,Code 2 Transport,03/23/2016 11:51:16 AM,1700 Block of QUINT ST,San Francisco,94124,B10,42,6445,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7350748815594, -122.398827357293)",160831189-KM04 -160160353,AM24,16006276,Medical Incident,01/16/2016,01/15/2016,01/16/2016 02:47:45 AM,01/16/2016 02:47:45 AM,01/16/2016 02:48:17 AM,01/16/2016 02:50:46 AM,01/16/2016 03:03:24 AM,01/16/2016 03:09:22 AM,01/16/2016 03:24:23 AM,Code 2 Transport,01/16/2016 03:59:30 AM,ULLOA ST/LENOX WY,San Francisco,94127,B08,39,8611,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7410435643275, -122.466122802215)",160160353-AM24 -102330008,86,10073194,Medical Incident,08/21/2010,08/20/2010,08/21/2010 12:31:43 AM,08/21/2010 12:34:11 AM,08/21/2010 12:34:23 AM,08/21/2010 12:34:34 AM,08/21/2010 12:37:09 AM,08/21/2010 12:55:21 AM,08/21/2010 01:07:07 AM,Code 2 Transport,08/21/2010 01:32:00 AM,600 Block of EUCLID AVE,SF,94118,B07,10,4451,3,3,3,true,,1,MEDIC,1,7,2,Presidio Heights,"(37.7838990648034, -122.456258324628)",102330008-86 -102370126,85,10074674,Traffic Collision,08/25/2010,08/25/2010,08/25/2010 09:47:20 AM,08/25/2010 09:47:20 AM,08/25/2010 09:47:48 AM,08/25/2010 09:47:59 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/25/2010 09:58:20 AM,0 Block of SPEAR ST,SF,94105,B03,13,2115,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",102370126-85 -121620016,66,12053485,Medical Incident,06/10/2012,06/09/2012,06/10/2012 12:47:57 AM,06/10/2012 12:49:38 AM,06/10/2012 12:49:59 AM,06/10/2012 12:50:07 AM,06/10/2012 12:54:15 AM,06/10/2012 01:19:14 AM,06/10/2012 01:31:48 AM,Code 2 Transport,06/10/2012 02:11:27 AM,2500 Block of GEARY BLVD,SF,94115,B05,10,4365,3,1,2,true,Non Life-threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.782740607461, -122.445203077158)",121620016-66 -121010302,T12,12033584,Alarms,04/10/2012,04/10/2012,04/10/2012 06:42:00 PM,04/10/2012 06:42:53 PM,04/10/2012 06:43:00 PM,04/10/2012 06:44:27 PM,04/10/2012 06:46:38 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 06:57:05 PM,1300 Block of 3RD AVE,SF,94122,B05,12,7324,3,3,3,false,Alarm,1,TRUCK,2,5,5,Inner Sunset,"(37.7636254238547, -122.459769881329)",121010302-T12 -132170214,E03,13073329,Medical Incident,08/05/2013,08/05/2013,08/05/2013 02:45:02 PM,08/05/2013 02:45:02 PM,08/05/2013 02:45:42 PM,08/05/2013 02:45:55 PM,08/05/2013 02:52:54 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 02:55:22 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132170214-E03 -102380315,RS2,10075168,Medical Incident,08/26/2010,08/26/2010,08/26/2010 05:56:20 PM,08/26/2010 05:57:50 PM,08/26/2010 05:59:00 PM,08/26/2010 06:00:17 PM,08/26/2010 06:02:36 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 06:27:16 PM,0 Block of HILL ST,SF,94110,B06,7,5456,3,3,3,false,,1,RESCUE SQUAD,1,6,8,Mission,"(37.7559816227909, -122.422122610502)",102380315-RS2 -120690279,RS1,12022972,Water Rescue,03/09/2012,03/09/2012,03/09/2012 05:35:24 PM,03/09/2012 05:41:39 PM,03/09/2012 05:45:05 PM,03/09/2012 05:46:02 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:05:22 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,RESCUE SQUAD,12,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120690279-RS1 -110640416,59,11021278,Medical Incident,03/05/2011,03/05/2011,03/05/2011 10:43:18 PM,03/05/2011 10:46:23 PM,03/05/2011 10:46:43 PM,03/05/2011 10:46:52 PM,03/05/2011 10:48:23 PM,03/05/2011 11:16:03 PM,03/05/2011 11:23:15 PM,Code 2 Transport,03/05/2011 11:45:37 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",110640416-59 -113610050,E32,11119843,Medical Incident,12/27/2011,12/26/2011,12/27/2011 06:42:49 AM,12/27/2011 06:45:03 AM,12/27/2011 06:45:26 AM,12/27/2011 06:48:11 AM,12/27/2011 06:48:14 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 07:07:58 AM,100 Block of APPLETON AVE,SF,94110,B06,32,5646,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",113610050-E32 -102610108,77,10082441,Medical Incident,09/18/2010,09/17/2010,09/18/2010 07:38:01 AM,09/18/2010 07:39:38 AM,09/18/2010 07:40:05 AM,09/18/2010 07:42:35 AM,09/18/2010 07:42:52 AM,09/18/2010 08:06:50 AM,09/18/2010 08:24:37 AM,Code 2 Transport,09/18/2010 08:39:13 AM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,true,,1,MEDIC,1,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",102610108-77 -112820162,RS1,11093315,Medical Incident,10/09/2011,10/09/2011,10/09/2011 12:09:41 PM,10/09/2011 12:10:27 PM,10/09/2011 12:11:39 PM,10/09/2011 12:12:00 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 12:13:05 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,,1,RESCUE SQUAD,4,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",112820162-RS1 -80260226,83,8008275,Medical Incident,01/26/2008,01/26/2008,01/26/2008 12:55:14 PM,01/26/2008 12:56:51 PM,01/26/2008 12:56:58 PM,01/26/2008 12:57:35 PM,01/26/2008 01:00:49 PM,04/25/2016 03:35:50 PM,01/26/2008 01:43:50 PM,Other,01/26/2008 01:59:10 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",080260226-83 -132620355,KM07,13088891,Medical Incident,09/19/2013,09/19/2013,09/19/2013 08:34:44 PM,09/19/2013 08:37:27 PM,09/19/2013 08:42:27 PM,09/19/2013 08:43:01 PM,09/19/2013 08:54:14 PM,09/19/2013 09:24:21 PM,09/19/2013 09:44:05 PM,Code 2 Transport,09/19/2013 10:17:11 PM,400 Block of POWELL ST,SF,94108,B01,1,1362,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",132620355-KM07 -133130031,79,13106245,Medical Incident,11/09/2013,11/08/2013,11/09/2013 01:59:22 AM,11/09/2013 02:00:00 AM,11/09/2013 02:02:54 AM,11/09/2013 02:03:28 AM,11/09/2013 02:08:19 AM,11/09/2013 02:23:01 AM,04/25/2016 01:49:51 PM,Code 2 Transport,11/09/2013 02:50:51 AM,GREEN ST/GRANT AV,SF,94133,B01,28,1266,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7997036751716, -122.407395244265)",133130031-79 -112960356,E05,11098335,Medical Incident,10/23/2011,10/23/2011,10/23/2011 09:03:15 PM,10/23/2011 09:04:16 PM,10/23/2011 09:05:07 PM,04/25/2016 02:02:00 PM,10/23/2011 09:06:17 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/23/2011 09:19:34 PM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",112960356-E05 -122590034,RC3,12085494,Medical Incident,09/15/2012,09/14/2012,09/15/2012 01:36:30 AM,09/15/2012 01:36:48 AM,09/15/2012 01:37:17 AM,09/15/2012 01:38:51 AM,09/15/2012 01:44:46 AM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/15/2012 01:52:01 AM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",122590034-RC3 -102680143,E12,10084851,Medical Incident,09/25/2010,09/25/2010,09/25/2010 10:19:05 AM,09/25/2010 10:19:09 AM,09/25/2010 10:19:29 AM,09/25/2010 10:19:48 AM,09/25/2010 10:22:54 AM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 10:32:26 AM,12TH AV/LINCOLN WY,SF,94122,B08,22,7346,3,3,3,true,,1,ENGINE,1,7,5,Inner Sunset,"(37.7657826725272, -122.469653846704)",102680143-E12 -113160096,E01,11104943,Medical Incident,11/12/2011,11/12/2011,11/12/2011 09:26:23 AM,11/12/2011 09:29:46 AM,11/12/2011 09:30:22 AM,11/12/2011 09:31:18 AM,11/12/2011 09:35:35 AM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/12/2011 09:41:03 AM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",113160096-E01 -120540162,93,12017808,Medical Incident,02/23/2012,02/23/2012,02/23/2012 12:54:40 PM,02/23/2012 12:55:31 PM,02/23/2012 12:55:45 PM,02/23/2012 01:00:15 PM,02/23/2012 01:04:32 PM,02/23/2012 01:27:09 PM,02/23/2012 01:55:59 PM,Code 2 Transport,02/23/2012 02:18:27 PM,2100 Block of 28TH AVE,SF,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7472839020213, -122.485731349104)",120540162-93 -133280026,E05,13111329,Medical Incident,11/24/2013,11/23/2013,11/24/2013 12:59:00 AM,11/24/2013 12:59:00 AM,11/24/2013 12:59:42 AM,11/24/2013 01:01:28 AM,11/24/2013 01:03:28 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 01:17:16 AM,1100 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",133280026-E05 -112350212,92,11077570,Medical Incident,08/23/2011,08/23/2011,08/23/2011 01:29:19 PM,08/23/2011 01:29:19 PM,08/23/2011 01:29:19 PM,08/23/2011 01:31:44 PM,08/23/2011 01:36:24 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Patient Declined Transport,08/23/2011 02:04:21 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",112350212-92 -132090260,KM01,13070755,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:32:44 PM,07/28/2013 04:34:01 PM,07/28/2013 04:34:26 PM,07/28/2013 04:36:17 PM,07/28/2013 04:47:07 PM,07/28/2013 05:00:02 PM,07/28/2013 05:10:17 PM,Code 2 Transport,07/28/2013 05:25:46 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132090260-KM01 -111360135,KM12,11045241,Traffic Collision,05/16/2011,05/16/2011,05/16/2011 10:58:35 AM,05/16/2011 10:59:47 AM,05/16/2011 11:00:32 AM,05/16/2011 11:01:15 AM,05/16/2011 11:03:44 AM,05/16/2011 11:20:18 AM,05/16/2011 11:40:33 AM,Other,05/16/2011 12:03:33 PM,POWELL ST/SUTTER ST,SF,94108,B01,1,1362,3,3,3,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",111360135-KM12 -103330321,E13,10106703,Structure Fire,11/29/2010,11/29/2010,11/29/2010 09:34:06 PM,11/29/2010 09:35:20 PM,11/29/2010 09:35:30 PM,11/29/2010 09:36:34 PM,11/29/2010 09:38:16 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Other,11/29/2010 09:55:59 PM,500 Block of MARKET ST,SF,94105,B03,13,2143,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",103330321-E13 -132730069,77,13092688,Medical Incident,09/30/2013,09/29/2013,09/30/2013 05:41:54 AM,09/30/2013 05:41:55 AM,09/30/2013 05:42:05 AM,09/30/2013 05:42:19 AM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 05:50:22 AM,1100 Block of GRANT AVE,SF,94133,B01,2,1311,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7971765677058, -122.406954465276)",132730069-77 -111290152,E17,11042633,Medical Incident,05/09/2011,05/09/2011,05/09/2011 12:45:22 PM,05/09/2011 12:46:05 PM,05/09/2011 12:46:19 PM,05/09/2011 12:47:37 PM,05/09/2011 12:48:14 PM,04/25/2016 02:04:42 PM,04/25/2016 02:04:42 PM,Medical Examiner,05/09/2011 01:17:22 PM,1400 Block of HAWES ST,SF,94124,B10,17,6634,3,E,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.727079743494, -122.382911278805)",111290152-E17 -160371709,71,16014672,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:00:05 PM,02/06/2016 12:00:45 PM,02/06/2016 12:01:04 PM,02/06/2016 12:01:20 PM,02/06/2016 12:16:19 PM,02/06/2016 12:25:59 PM,02/06/2016 12:43:17 PM,Code 2 Transport,02/06/2016 12:54:02 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160371709-71 -112040169,94,11067383,Medical Incident,07/23/2011,07/23/2011,07/23/2011 12:37:31 PM,07/23/2011 12:40:15 PM,07/23/2011 12:40:37 PM,07/23/2011 12:40:50 PM,07/23/2011 12:49:29 PM,07/23/2011 01:22:16 PM,07/23/2011 01:36:17 PM,Code 2 Transport,07/23/2011 02:27:32 PM,1700 Block of GENEVA AVE,SF,94134,B09,43,6245,1,1,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7118331290822, -122.427989009711)",112040169-94 -123570001,94,12119348,Medical Incident,12/22/2012,12/21/2012,12/22/2012 12:01:47 AM,12/22/2012 12:05:01 AM,12/22/2012 12:05:45 AM,12/22/2012 12:06:15 AM,12/22/2012 12:06:33 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Unable to Locate,12/22/2012 12:14:51 AM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",123570001-94 -112320133,E19,11076550,Medical Incident,08/20/2011,08/20/2011,08/20/2011 11:09:03 AM,08/20/2011 11:09:36 AM,08/20/2011 11:09:53 AM,08/20/2011 11:11:47 AM,08/20/2011 11:15:14 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 11:26:55 AM,0 Block of BEACHMONT DR,SF,94132,B08,19,7413,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.733498763623, -122.473976697519)",112320133-E19 -123030268,E33,12100570,Administrative,10/29/2012,10/29/2012,10/29/2012 12:40:42 PM,10/29/2012 12:40:55 PM,10/29/2012 12:41:02 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 12:41:37 PM,0 Block of CAPITOL AVE,SF,94112,B09,33,8374,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.710896081508, -122.458931105722)",123030268-E33 -160602585,65,16023994,Medical Incident,02/29/2016,02/29/2016,02/29/2016 05:08:41 PM,02/29/2016 05:08:41 PM,02/29/2016 05:09:03 PM,02/29/2016 05:13:09 PM,02/29/2016 05:36:25 PM,02/29/2016 05:43:17 PM,02/29/2016 05:53:32 PM,Code 2 Transport,02/29/2016 06:17:45 PM,BUSH ST/BATTERY ST,San Francisco,94111,B01,13,1163,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7913265326409, -122.399572031136)",160602585-65 -113570303,E36,11118685,Medical Incident,12/23/2011,12/23/2011,12/23/2011 03:00:28 PM,12/23/2011 03:01:33 PM,12/23/2011 03:01:56 PM,12/23/2011 03:02:48 PM,12/23/2011 03:05:36 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 03:10:17 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",113570303-E36 -112490193,AM04,11082135,Medical Incident,09/06/2011,09/06/2011,09/06/2011 01:14:20 PM,09/06/2011 01:15:12 PM,09/06/2011 01:15:22 PM,09/06/2011 01:16:08 PM,04/25/2016 02:02:48 PM,09/06/2011 01:33:12 PM,09/06/2011 01:40:07 PM,Code 2 Transport,09/06/2011 02:26:54 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",112490193-AM04 -160440318,AM24,16017558,Medical Incident,02/13/2016,02/12/2016,02/13/2016 02:11:03 AM,02/13/2016 02:12:14 AM,02/13/2016 02:13:33 AM,02/13/2016 02:14:34 AM,02/13/2016 02:19:28 AM,02/13/2016 02:30:43 AM,02/13/2016 02:47:21 AM,Code 2 Transport,02/13/2016 03:14:06 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160440318-AM24 -103230006,B08,10103343,Traffic Collision,11/19/2010,11/18/2010,11/19/2010 12:43:54 AM,11/19/2010 12:44:06 AM,11/19/2010 12:47:12 AM,11/19/2010 12:48:52 AM,11/19/2010 12:52:32 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/19/2010 02:35:25 AM,OCEAN AV/JUNIPERO SERRA BL,SF,94127,B08,19,8452,3,3,3,false,,1,CHIEF,4,8,7,West of Twin Peaks,"(37.7312055048522, -122.472160323543)",103230006-B08 -112010430,RS2,11066473,Traffic Collision,07/20/2011,07/20/2011,07/20/2011 10:09:04 PM,07/20/2011 10:09:53 PM,07/20/2011 10:10:44 PM,07/20/2011 10:12:16 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/20/2011 10:14:58 PM,25TH ST/ALABAMA ST,SF,94110,B06,7,5533,3,3,3,false,,1,RESCUE SQUAD,3,6,9,Mission,"(37.7510916902154, -122.410810712438)",112010430-RS2 -160550559,78,16021903,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:09:52 AM,02/24/2016 07:12:32 AM,02/24/2016 07:12:58 AM,02/24/2016 07:12:58 AM,02/24/2016 07:27:10 AM,02/24/2016 07:57:12 AM,02/24/2016 08:15:07 AM,Code 2 Transport,02/24/2016 09:02:04 AM,0 Block of FARRAGUT AVE,San Francisco,94112,B09,33,6212,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.710300614047, -122.449849497565)",160550559-78 -160443256,AM16,16017845,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:15:41 PM,02/13/2016 08:17:58 PM,02/13/2016 08:19:30 PM,02/13/2016 08:21:39 PM,02/13/2016 08:27:20 PM,02/13/2016 08:39:41 PM,02/13/2016 08:50:21 PM,Code 2 Transport,02/13/2016 09:17:33 PM,EDDY ST/PIERCE ST,San Francisco,94115,B05,5,3624,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7810093448177, -122.435616262656)",160443256-AM16 -130800389,T16,13026924,Citizen Assist / Service Call,03/21/2013,03/21/2013,03/21/2013 09:47:20 PM,03/21/2013 09:49:08 PM,03/21/2013 09:49:19 PM,03/21/2013 09:50:14 PM,03/21/2013 09:56:39 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Fire,03/21/2013 10:04:20 PM,1800 Block of UNION ST,SF,94123,B04,16,3335,3,3,3,true,Alarm,1,TRUCK,1,4,2,Marina,"(37.7978750464713, -122.42974742404)",130800389-T16 -133510007,E36,13119041,Medical Incident,12/17/2013,12/16/2013,12/17/2013 12:37:04 AM,12/17/2013 12:40:20 AM,12/17/2013 12:40:59 AM,12/17/2013 12:43:53 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 12:45:22 AM,8TH ST/MARKET ST,SF,94103,B02,36,1646,E,E,3,true,Non Life-threatening,1,ENGINE,3,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",133510007-E36 -160531122,60,16021149,Medical Incident,02/22/2016,02/22/2016,02/22/2016 10:19:53 AM,02/22/2016 10:19:53 AM,02/22/2016 10:20:08 AM,02/22/2016 10:22:56 AM,02/22/2016 10:37:18 AM,02/22/2016 10:40:04 AM,02/22/2016 11:03:42 AM,Code 2 Transport,02/22/2016 12:04:31 PM,JACKSON ST/MASON ST,San Francisco,94133,B01,2,1354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7954085267096, -122.411541532158)",160531122-60 -133360293,54,13113979,Medical Incident,12/02/2013,12/02/2013,12/02/2013 06:16:12 PM,12/02/2013 06:16:35 PM,12/02/2013 06:17:01 PM,12/02/2013 06:27:33 PM,12/02/2013 06:44:39 PM,12/02/2013 06:56:38 PM,12/02/2013 07:14:13 PM,Code 2 Transport,12/02/2013 07:43:40 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123660356885, -122.412738165549)",133360293-54 -121550272,KM12,12051392,Medical Incident,06/03/2012,06/03/2012,06/03/2012 05:45:42 PM,06/03/2012 05:46:21 PM,06/03/2012 05:47:24 PM,06/03/2012 05:53:59 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 05:54:28 PM,POWELL ST/ELLIS ST,SF,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",121550272-KM12 -160481969,73,16019351,Medical Incident,02/17/2016,02/17/2016,02/17/2016 01:18:22 PM,02/17/2016 01:18:22 PM,02/17/2016 01:18:45 PM,02/17/2016 01:19:40 PM,02/17/2016 01:39:44 PM,02/17/2016 01:44:44 PM,02/17/2016 02:07:33 PM,Code 2 Transport,02/17/2016 02:51:38 PM,5TH ST/SHIPLEY ST,San Francisco,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7798285228536, -122.402840617488)",160481969-73 -123390110,85,12113000,Medical Incident,12/04/2012,12/04/2012,12/04/2012 09:56:13 AM,12/04/2012 09:57:56 AM,12/04/2012 09:58:28 AM,12/04/2012 09:58:52 AM,12/04/2012 10:02:43 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,No Merit,12/04/2012 10:19:04 AM,200 Block of KING ST,SF,94107,B03,8,2171,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",123390110-85 -102280147,B03,10071750,Alarms,08/16/2010,08/16/2010,08/16/2010 11:34:13 AM,08/16/2010 11:35:20 AM,08/16/2010 11:35:27 AM,08/16/2010 11:35:38 AM,08/16/2010 11:37:54 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Fire,08/16/2010 11:43:48 AM,100 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,false,,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7934447817207, -122.395879334268)",102280147-B03 -120280004,79,12009258,Medical Incident,01/28/2012,01/27/2012,01/28/2012 12:13:20 AM,01/28/2012 12:16:08 AM,01/28/2012 12:17:06 AM,01/28/2012 12:17:13 AM,01/28/2012 12:22:20 AM,01/28/2012 12:33:54 AM,01/28/2012 12:50:56 AM,Code 2 Transport,01/28/2012 01:30:08 AM,0 Block of NAVAJO AVE,SF,94112,B09,15,8332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7200829725539, -122.443857351608)",120280004-79 -120360173,T09,12011984,Citizen Assist / Service Call,02/05/2012,02/05/2012,02/05/2012 11:55:55 AM,02/05/2012 11:57:34 AM,02/05/2012 11:57:39 AM,02/05/2012 12:03:36 PM,02/05/2012 12:04:05 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Fire,02/05/2012 12:12:39 PM,0 Block of MIDDLE POINT RD,SF,94124,B10,25,6553,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7365156230475, -122.379343052197)",120360173-T09 -113600222,87,11119687,Medical Incident,12/26/2011,12/26/2011,12/26/2011 04:59:16 PM,12/26/2011 05:00:17 PM,12/26/2011 05:00:36 PM,12/26/2011 05:00:41 PM,12/26/2011 05:11:04 PM,12/26/2011 05:15:56 PM,12/26/2011 05:47:43 PM,Code 2 Transport,12/26/2011 06:01:18 PM,3300 Block of 24TH ST,SF,94110,B06,11,5525,3,3,3,false,,1,MEDIC,2,6,9,Mission,"(37.7522767133494, -122.418736723254)",113600222-87 -120090402,T10,12003298,Structure Fire,01/09/2012,01/09/2012,01/09/2012 10:06:26 PM,01/09/2012 10:07:51 PM,01/09/2012 10:08:06 PM,01/09/2012 10:09:25 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/09/2012 10:19:44 PM,800 Block of MASONIC AVE,SF,94117,B05,21,4464,3,3,3,false,Fire,1,TRUCK,7,5,5,Lone Mountain/USF,"(37.7734740617824, -122.445928715958)",120090402-T10 -120290184,B02,12009746,Alarms,01/29/2012,01/29/2012,01/29/2012 03:38:28 PM,01/29/2012 03:39:46 PM,01/29/2012 03:39:56 PM,01/29/2012 03:41:53 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 03:44:05 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",120290184-B02 -111970277,E08,11065091,Medical Incident,07/16/2011,07/16/2011,07/16/2011 06:19:26 PM,07/16/2011 06:20:04 PM,07/16/2011 06:20:48 PM,07/16/2011 06:21:48 PM,07/16/2011 06:24:16 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 06:26:09 PM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",111970277-E08 -160891939,AM02,16035345,Medical Incident,03/29/2016,03/29/2016,03/29/2016 01:19:10 PM,03/29/2016 01:19:10 PM,03/29/2016 01:21:13 PM,03/29/2016 01:21:40 PM,03/29/2016 01:33:52 PM,03/29/2016 01:52:56 PM,03/29/2016 02:31:29 PM,Code 2 Transport,03/29/2016 03:05:44 PM,SUNSET BL/OCEAN AV,San Francisco,94132,B08,19,7614,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Sunset/Parkside,"(37.731909880446, -122.493718802216)",160891939-AM02 -111810035,55,11059617,Medical Incident,06/30/2011,06/29/2011,06/30/2011 02:42:27 AM,06/30/2011 02:47:55 AM,06/30/2011 02:48:29 AM,06/30/2011 02:48:34 AM,06/30/2011 02:58:35 AM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Patient Declined Transport,06/30/2011 03:02:35 AM,500 Block of MARKET ST,SF,94104,B01,13,1164,1,1,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905865694353, -122.399877480803)",111810035-55 -132600082,E36,13087885,Administrative,09/17/2013,09/16/2013,09/17/2013 06:29:32 AM,09/17/2013 06:29:41 AM,09/17/2013 06:29:53 AM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 06:30:36 AM,100 Block of OAK ST,SF,94102,B02,36,3266,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7750744315139, -122.421768034105)",132600082-E36 -160270495,85,16010555,Medical Incident,01/27/2016,01/26/2016,01/27/2016 06:47:43 AM,01/27/2016 06:49:46 AM,01/27/2016 06:49:57 AM,01/27/2016 06:50:08 AM,01/27/2016 07:06:17 AM,01/27/2016 07:26:06 AM,01/27/2016 07:51:38 AM,Code 2 Transport,01/27/2016 08:36:23 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",160270495-85 -120490270,B06,12016295,Structure Fire,02/18/2012,02/18/2012,02/18/2012 05:45:41 PM,02/18/2012 05:46:43 PM,02/18/2012 05:47:06 PM,02/18/2012 05:48:41 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Other,02/18/2012 05:51:12 PM,1600 Block of INGALLS ST,SF,94124,B10,17,6572,3,3,3,false,Fire,1,CHIEF,4,10,10,Bayview Hunters Point,"(37.7288306921005, -122.384331312842)",120490270-B06 -111760348,54,11058154,Medical Incident,06/25/2011,06/25/2011,06/25/2011 08:04:48 PM,06/25/2011 08:06:37 PM,06/25/2011 08:06:59 PM,06/25/2011 08:08:53 PM,06/25/2011 08:19:53 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Unable to Locate,06/25/2011 08:32:35 PM,16TH ST/GUERRERO ST,SF,94103,B02,6,5235,1,1,2,true,,1,MEDIC,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",111760348-54 -130750282,E06,13025118,Structure Fire,03/16/2013,03/16/2013,03/16/2013 06:38:37 PM,03/16/2013 06:39:41 PM,03/16/2013 06:40:15 PM,03/16/2013 06:41:18 PM,03/16/2013 06:42:47 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 06:53:34 PM,1900 Block of 15TH ST,SF,94114,B02,6,5227,3,3,3,true,Alarm,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7661763079166, -122.427142652668)",130750282-E06 -120830109,E34,12027504,Medical Incident,03/23/2012,03/23/2012,03/23/2012 10:01:21 AM,03/23/2012 10:03:20 AM,03/23/2012 10:03:47 AM,03/23/2012 10:04:15 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 10:11:06 AM,800 Block of 47TH AVE,SF,94121,B07,34,7277,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7724297631777, -122.507750347312)",120830109-E34 -160690853,54,16027384,Medical Incident,03/09/2016,03/09/2016,03/09/2016 09:04:08 AM,03/09/2016 09:05:29 AM,03/09/2016 09:09:43 AM,03/09/2016 09:09:51 AM,03/09/2016 09:45:27 AM,03/09/2016 10:01:55 AM,03/09/2016 10:08:03 AM,Code 2 Transport,03/09/2016 11:09:53 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160690853-54 -103620331,KM15,10116243,Medical Incident,12/28/2010,12/28/2010,12/28/2010 09:18:03 PM,12/28/2010 09:18:11 PM,12/28/2010 09:19:09 PM,12/28/2010 09:19:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Patient Declined Transport,12/28/2010 09:29:15 PM,300 Block of 8TH AVE,SF,94118,B07,31,7127,3,3,3,false,,1,PRIVATE,1,7,1,Inner Richmond,"(37.7818900670733, -122.466425679428)",103620331-KM15 -73140294,T18,7090409,Other,11/10/2007,11/10/2007,11/10/2007 05:35:51 PM,11/10/2007 05:37:22 PM,11/10/2007 05:37:27 PM,11/10/2007 05:39:35 PM,11/10/2007 05:47:26 PM,04/25/2016 03:36:57 PM,04/25/2016 03:36:57 PM,Other,11/10/2007 06:04:37 PM,4200 Block of LAWTON ST,SF,94122,B08,23,7724,3,3,3,false,,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7566298402299, -122.508357460194)",073140294-T18 -160142653,KM02,16005651,Medical Incident,01/14/2016,01/14/2016,01/14/2016 04:47:38 PM,01/14/2016 04:49:07 PM,01/14/2016 04:49:20 PM,01/14/2016 04:52:47 PM,01/14/2016 04:52:47 PM,01/14/2016 04:58:07 PM,01/14/2016 05:23:54 PM,Code 3 Transport,01/14/2016 07:37:48 PM,400 Block of PARNASSUS AVE,San Francisco,94122,B05,12,5155,E,E,3,false,Non Life-threatening,1,PRIVATE,3,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",160142653-KM02 -160853533,75,16033951,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:28:10 PM,03/25/2016 08:28:32 PM,03/25/2016 08:28:51 PM,03/25/2016 08:28:58 PM,03/25/2016 08:40:15 PM,03/25/2016 08:49:17 PM,03/25/2016 09:19:41 PM,Code 2 Transport,03/25/2016 10:10:02 PM,400 Block of NEVADA ST,San Francisco,94110,B10,32,5736,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Bernal Heights,"(37.7363710737067, -122.411602118744)",160853533-75 -160483638,KM07,16019510,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:31:38 PM,02/17/2016 08:31:38 PM,02/17/2016 08:31:54 PM,02/17/2016 08:33:06 PM,02/17/2016 08:35:35 PM,02/17/2016 08:46:19 PM,02/17/2016 08:51:10 PM,Code 2 Transport,02/17/2016 09:18:11 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160483638-KM07 -160020012,67,16000556,Medical Incident,01/02/2016,01/01/2016,01/02/2016 12:06:07 AM,01/02/2016 12:06:07 AM,01/02/2016 12:08:57 AM,01/02/2016 12:09:06 AM,01/02/2016 12:13:08 AM,01/02/2016 12:26:54 AM,01/02/2016 12:45:57 AM,Code 2 Transport,01/02/2016 01:28:43 AM,BROADWAY/ROWLAND ST,San Francisco,94133,B01,13,1231,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.7978680155995, -122.404699107818)",160020012-67 -122620294,58,12086619,Medical Incident,09/18/2012,09/18/2012,09/18/2012 06:53:09 PM,09/18/2012 06:55:06 PM,09/18/2012 06:55:42 PM,09/18/2012 06:55:48 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,04/25/2016 01:56:43 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",122620294-58 -120420350,E11,12014177,Outside Fire,02/11/2012,02/11/2012,02/11/2012 08:13:55 PM,02/11/2012 08:17:43 PM,02/11/2012 08:18:34 PM,02/11/2012 08:19:37 PM,02/11/2012 08:21:42 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/11/2012 08:27:32 PM,1100 Block of GUERRERO ST,SF,94110,B06,11,5524,3,3,3,true,Fire,1,ENGINE,1,6,8,Mission,"(37.7527637339649, -122.423063371439)",120420350-E11 -121520184,87,12050340,Medical Incident,05/31/2012,05/31/2012,05/31/2012 01:39:13 PM,05/31/2012 01:41:53 PM,05/31/2012 01:42:45 PM,05/31/2012 01:43:54 PM,04/25/2016 01:58:26 PM,05/31/2012 02:09:44 PM,05/31/2012 02:38:13 PM,Other,05/31/2012 02:55:37 PM,100 Block of TURK ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",121520184-87 -160091322,65,16003613,Medical Incident,01/09/2016,01/09/2016,01/09/2016 11:28:03 AM,01/09/2016 11:29:36 AM,01/09/2016 11:30:01 AM,01/09/2016 11:30:14 AM,01/09/2016 11:35:42 AM,01/09/2016 12:06:21 PM,01/09/2016 12:20:07 PM,Code 2 Transport,01/09/2016 01:21:52 PM,2500 Block of LAKE ST,San Francisco,94121,B07,14,7217,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7857278220353, -122.486759035756)",160091322-65 -122560045,E02,12084533,Medical Incident,09/12/2012,09/11/2012,09/12/2012 04:32:01 AM,09/12/2012 04:34:40 AM,09/12/2012 04:36:44 AM,09/12/2012 04:38:46 AM,09/12/2012 04:39:35 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 04:52:53 AM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",122560045-E02 -112580219,B03,11085071,Alarms,09/15/2011,09/15/2011,09/15/2011 02:22:27 PM,09/15/2011 02:22:50 PM,09/15/2011 02:23:02 PM,09/15/2011 02:23:11 PM,09/15/2011 02:26:15 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/15/2011 02:55:21 PM,300 Block of BEALE ST,SF,94105,B03,35,2122,3,3,3,false,,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7880321954757, -122.392000314933)",112580219-B03 -120900181,E07,12029790,Structure Fire,03/30/2012,03/30/2012,03/30/2012 12:55:34 PM,03/30/2012 12:55:35 PM,03/30/2012 12:55:57 PM,03/30/2012 12:57:00 PM,03/30/2012 12:58:12 PM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,Other,03/30/2012 12:58:38 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",120900181-E07 -133400198,RC2,13115243,Medical Incident,12/06/2013,12/06/2013,12/06/2013 12:59:54 PM,12/06/2013 01:00:48 PM,12/06/2013 01:00:56 PM,12/06/2013 01:01:48 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 01:05:29 PM,1200 Block of 26TH AVE,SF,94122,B08,22,7452,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7641771031678, -122.484623655457)",133400198-RC2 -123430323,68,12114744,Medical Incident,12/08/2012,12/08/2012,12/08/2012 07:22:57 PM,12/08/2012 07:25:18 PM,12/08/2012 07:25:31 PM,12/08/2012 07:25:42 PM,12/08/2012 07:33:52 PM,12/08/2012 07:44:55 PM,12/08/2012 07:52:37 PM,Code 2 Transport,12/08/2012 08:15:54 PM,600 Block of JONES ST,SF,94109,B01,3,1462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7870479104601, -122.413296458789)",123430323-68 -132940033,E20,13099878,Medical Incident,10/21/2013,10/20/2013,10/21/2013 03:27:18 AM,10/21/2013 03:31:18 AM,10/21/2013 03:31:36 AM,10/21/2013 03:34:01 AM,10/21/2013 03:37:40 AM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 03:40:22 AM,600 Block of CLARENDON AVE,SF,94131,B08,20,5367,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7519950375446, -122.458952047787)",132940033-E20 -110280125,RS2,11009171,Medical Incident,01/28/2011,01/28/2011,01/28/2011 11:00:37 AM,01/28/2011 11:01:46 AM,01/28/2011 11:02:13 AM,01/28/2011 11:02:28 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 11:07:31 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,false,,1,RESCUE SQUAD,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",110280125-RS2 -103190233,81,10102287,Medical Incident,11/15/2010,11/15/2010,11/15/2010 02:35:24 PM,11/15/2010 02:35:29 PM,11/15/2010 02:35:54 PM,11/15/2010 02:36:27 PM,11/15/2010 02:43:32 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 02:44:18 PM,22ND ST/TREAT AV,SF,94110,B06,7,5473,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7557659155563, -122.4132940518)",103190233-81 -113280121,T02,11108834,Structure Fire,11/24/2011,11/24/2011,11/24/2011 11:26:11 AM,11/24/2011 11:27:09 AM,11/24/2011 11:27:21 AM,11/24/2011 11:28:38 AM,11/24/2011 11:31:17 AM,04/25/2016 02:01:29 PM,04/25/2016 02:01:29 PM,Other,11/24/2011 11:45:59 AM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,false,,1,TRUCK,7,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",113280121-T02 -122040341,55,12067948,Medical Incident,07/22/2012,07/22/2012,07/22/2012 07:35:43 PM,07/22/2012 07:36:42 PM,07/22/2012 07:37:18 PM,07/22/2012 07:37:48 PM,07/22/2012 07:42:44 PM,07/22/2012 07:52:13 PM,07/22/2012 08:04:49 PM,Code 2 Transport,07/22/2012 08:26:29 PM,100 Block of CASHMERE ST,SF,94124,B10,25,6522,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",122040341-55 -122220268,E13,12073657,Explosion,08/09/2012,08/09/2012,08/09/2012 04:35:57 PM,08/09/2012 04:36:48 PM,08/09/2012 04:38:03 PM,08/09/2012 04:38:54 PM,08/09/2012 04:41:02 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,Other,08/09/2012 04:47:47 PM,MONTGOMERY ST/BUSH ST,SF,94104,B01,13,1235,3,3,3,true,Fire,1,ENGINE,1,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",122220268-E13 -160221306,82,16008734,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:01:48 AM,01/22/2016 11:03:55 AM,01/22/2016 11:07:10 AM,01/22/2016 11:07:24 AM,01/22/2016 11:16:43 AM,01/22/2016 11:25:54 AM,01/22/2016 12:00:22 PM,Code 2 Transport,01/22/2016 12:33:32 PM,1100 Block of 9TH AVE,San Francisco,94122,B08,22,7333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",160221306-82 -112820005,86,11093204,Medical Incident,10/09/2011,10/08/2011,10/09/2011 12:10:08 AM,10/09/2011 12:13:19 AM,10/09/2011 12:14:18 AM,10/09/2011 12:15:21 AM,10/09/2011 12:30:39 AM,10/09/2011 12:37:51 AM,10/09/2011 01:05:01 AM,Code 2 Transport,10/09/2011 01:10:34 AM,OCEAN AV/LAGUNITAS DR,SF,94132,B08,19,8452,1,1,2,true,,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7321200001213, -122.474206344886)",112820005-86 -160632709,86,16025165,Medical Incident,03/03/2016,03/03/2016,03/03/2016 04:59:33 PM,03/03/2016 05:01:12 PM,03/03/2016 05:01:36 PM,03/03/2016 05:01:59 PM,03/03/2016 05:19:12 PM,03/03/2016 05:36:45 PM,03/03/2016 06:07:34 PM,Code 2 Transport,03/03/2016 06:28:39 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160632709-86 -122810037,E13,12092873,Medical Incident,10/07/2012,10/06/2012,10/07/2012 02:07:17 AM,10/07/2012 02:07:39 AM,10/07/2012 02:09:48 AM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/07/2012 02:28:19 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.7981219270604, -122.405087523335)",122810037-E13 -122680303,85,12088634,Structure Fire,09/24/2012,09/24/2012,09/24/2012 06:28:19 PM,09/24/2012 06:29:13 PM,09/24/2012 06:29:59 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 06:39:26 PM,800 Block of POST ST,SF,94109,B04,3,1543,3,3,3,true,Fire,1,MEDIC,10,4,3,Nob Hill,"(37.7874037664371, -122.415827994726)",122680303-85 -110450210,64,11014944,Medical Incident,02/14/2011,02/14/2011,02/14/2011 02:20:03 PM,02/14/2011 02:22:02 PM,02/14/2011 02:22:23 PM,02/14/2011 02:23:18 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 02:28:56 PM,1000 Block of BRAZIL AVE,SF,94112,B09,43,6163,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7207283438447, -122.426391940904)",110450210-64 -132450109,89,13082620,Medical Incident,09/02/2013,09/02/2013,09/02/2013 09:13:15 AM,09/02/2013 09:14:26 AM,09/02/2013 09:14:40 AM,09/02/2013 09:14:51 AM,09/02/2013 09:17:01 AM,09/02/2013 09:34:23 AM,09/02/2013 09:39:55 AM,Code 2 Transport,09/02/2013 10:15:37 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",132450109-89 -132870119,AM16,13097563,Medical Incident,10/14/2013,10/14/2013,10/14/2013 10:04:05 AM,10/14/2013 10:08:32 AM,10/14/2013 10:09:09 AM,10/14/2013 10:09:58 AM,10/14/2013 10:18:51 AM,10/14/2013 10:33:21 AM,10/14/2013 11:02:01 AM,Code 2 Transport,10/14/2013 11:28:30 AM,0 Block of DE LONG ST,SF,94112,B09,33,8357,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7096061746136, -122.459869387331)",132870119-AM16 -140660178,T09,14022297,Structure Fire,03/07/2014,03/07/2014,03/07/2014 11:50:05 AM,03/07/2014 11:50:35 AM,03/07/2014 11:51:11 AM,03/07/2014 11:52:04 AM,03/07/2014 11:57:05 AM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Fire,03/07/2014 12:03:36 PM,1200 Block of EGBERT AVE,SAN FRANCISCO,94124,B10,17,6615,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7210363669692, -122.389871475458)",140660178-T09 -120440253,KM02,12014763,Medical Incident,02/13/2012,02/13/2012,02/13/2012 06:05:48 PM,02/13/2012 06:07:46 PM,02/13/2012 06:12:02 PM,02/13/2012 06:12:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 06:20:25 PM,200 Block of MAIN ST,SF,94105,B03,35,2117,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.78995234675, -122.392682318412)",120440253-KM02 -133240085,E07,13109940,Medical Incident,11/20/2013,11/19/2013,11/20/2013 07:28:42 AM,11/20/2013 07:31:29 AM,11/20/2013 07:37:22 AM,11/20/2013 07:38:51 AM,11/20/2013 07:51:49 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 08:16:56 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133240085-E07 -102260201,E02,10071167,Medical Incident,08/14/2010,08/14/2010,08/14/2010 02:31:03 PM,08/14/2010 02:31:51 PM,08/14/2010 02:32:22 PM,08/14/2010 02:33:37 PM,08/14/2010 02:34:39 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Medical Examiner,08/14/2010 03:32:54 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,E,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",102260201-E02 -103150194,64,10101002,Medical Incident,11/11/2010,11/11/2010,11/11/2010 02:41:31 PM,11/11/2010 02:43:33 PM,11/11/2010 02:44:01 PM,04/25/2016 02:07:39 PM,11/11/2010 02:52:47 PM,11/11/2010 03:04:00 PM,11/11/2010 03:14:46 PM,Code 2 Transport,11/11/2010 03:31:03 PM,1800 Block of MISSION ST,SF,94103,B02,36,5279,1,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7674778738529, -122.419834389169)",103150194-64 -160083986,70,16003457,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:55:38 PM,01/08/2016 10:55:38 PM,01/08/2016 10:56:25 PM,01/08/2016 10:56:46 PM,01/08/2016 11:04:26 PM,01/08/2016 11:19:19 PM,01/08/2016 11:25:44 PM,Code 2 Transport,01/08/2016 11:58:58 PM,JONES ST/FRANCISCO ST,San Francisco,94133,B01,28,1434,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8042768153063, -122.41669632739)",160083986-70 -111580212,KM04,11052275,Medical Incident,06/07/2011,06/07/2011,06/07/2011 02:27:01 PM,06/07/2011 02:28:50 PM,06/07/2011 02:50:51 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,04/25/2016 02:04:16 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",111580212-KM04 -113220331,E08,11107082,Medical Incident,11/18/2011,11/18/2011,11/18/2011 08:04:47 PM,11/18/2011 08:06:23 PM,11/18/2011 08:06:39 PM,11/18/2011 08:09:37 PM,11/18/2011 08:10:31 PM,04/25/2016 02:01:34 PM,04/25/2016 02:01:34 PM,No Merit,11/18/2011 08:14:11 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",113220331-E08 -123450074,RS2,12115247,Traffic Collision,12/10/2012,12/09/2012,12/10/2012 07:01:15 AM,12/10/2012 07:01:33 AM,12/10/2012 07:02:11 AM,12/10/2012 07:06:21 AM,12/10/2012 07:09:53 AM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/10/2012 07:31:52 AM,ALABAMA ST/RIPLEY ST,SF,94110,B06,9,5667,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,6,9,Bernal Heights,"(37.7443248592068, -122.410388561137)",123450074-RS2 -130680403,E23,13022866,Vehicle Fire,03/09/2013,03/09/2013,03/09/2013 10:43:15 PM,03/09/2013 10:45:19 PM,03/09/2013 10:45:27 PM,04/25/2016 01:53:54 PM,03/09/2013 10:49:59 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/09/2013 10:59:42 PM,37TH AV/KIRKHAM ST,SF,94122,B08,23,7571,3,3,3,true,Fire,1,ENGINE,1,8,4,Sunset/Parkside,"(37.758981122342, -122.496152482485)",130680403-E23 -121380049,89,12045756,Medical Incident,05/17/2012,05/16/2012,05/17/2012 04:45:14 AM,05/17/2012 04:45:14 AM,05/17/2012 04:46:18 AM,05/17/2012 04:46:33 AM,05/17/2012 04:49:03 AM,05/17/2012 05:05:24 AM,05/17/2012 05:11:34 AM,Code 3 Transport,05/17/2012 06:05:29 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",121380049-89 -160823672,86,16032742,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:53:16 PM,03/22/2016 08:56:21 PM,03/22/2016 08:56:42 PM,03/22/2016 08:56:54 PM,03/22/2016 09:15:46 PM,03/22/2016 09:21:02 PM,03/22/2016 09:48:15 PM,Code 2 Transport,03/22/2016 10:30:28 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160823672-86 -140030183,B02,14001033,Medical Incident,01/03/2014,01/03/2014,01/03/2014 11:31:43 AM,01/03/2014 11:34:24 AM,01/03/2014 11:38:53 AM,01/03/2014 11:39:28 AM,01/03/2014 11:42:10 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/03/2014 11:50:06 AM,URANUS TR/17TH ST,SF,94117,B05,12,5255,,3,3,false,Potentially Life-Threatening,1,CHIEF,2,5,8,Castro/Upper Market,"(37.7618804430412, -122.445309434045)",140030183-B02 -132530248,54,13085536,Medical Incident,09/10/2013,09/10/2013,09/10/2013 02:38:30 PM,09/10/2013 02:44:18 PM,09/10/2013 02:44:26 PM,09/10/2013 02:45:19 PM,09/10/2013 02:57:12 PM,09/10/2013 03:08:45 PM,09/10/2013 03:24:08 PM,Code 2 Transport,09/10/2013 03:49:06 PM,21ST ST/POTRERO AV,SF,94110,B10,7,2553,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7577620587984, -122.406799738992)",132530248-54 -121880255,T01,12062694,Alarms,07/06/2012,07/06/2012,07/06/2012 03:44:01 PM,07/06/2012 03:44:39 PM,07/06/2012 03:44:56 PM,07/06/2012 03:46:36 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/06/2012 03:48:20 PM,0 Block of 8TH ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7778103407202, -122.413699499217)",121880255-T01 -121520216,88,12050366,Medical Incident,05/31/2012,05/31/2012,05/31/2012 03:13:09 PM,05/31/2012 03:15:17 PM,05/31/2012 03:16:26 PM,05/31/2012 03:18:06 PM,05/31/2012 03:24:13 PM,05/31/2012 03:51:12 PM,05/31/2012 04:19:16 PM,Code 2 Transport,05/31/2012 04:38:18 PM,0 Block of MADDUX AVE,SF,94124,B10,42,6445,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7348036979308, -122.398206619816)",121520216-88 -132210263,77,13074694,Medical Incident,08/09/2013,08/09/2013,08/09/2013 05:19:32 PM,08/09/2013 05:19:52 PM,08/09/2013 05:28:06 PM,08/09/2013 05:28:13 PM,08/09/2013 05:40:10 PM,08/09/2013 05:45:56 PM,08/09/2013 06:03:52 PM,Code 2 Transport,08/09/2013 06:14:36 PM,200 Block of VIDAL DR,SF,94132,B08,19,8583,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.719201896577, -122.484666499759)",132210263-77 -130440084,E44,13014864,Medical Incident,02/13/2013,02/13/2013,02/13/2013 08:10:11 AM,02/13/2013 08:10:42 AM,02/13/2013 08:44:02 AM,02/13/2013 08:44:27 AM,02/13/2013 08:46:06 AM,02/13/2013 08:48:54 AM,04/25/2016 01:54:19 PM,Other,02/13/2013 09:42:04 AM,600 Block of VELASCO AVE,SF,94134,B09,43,6247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7096419146896, -122.418055998257)",130440084-E44 -160732292,AM16,16029056,Medical Incident,03/13/2016,03/13/2016,03/13/2016 06:01:39 PM,03/13/2016 06:02:57 PM,03/13/2016 06:03:12 PM,03/13/2016 06:03:50 PM,03/13/2016 06:13:15 PM,03/13/2016 06:24:15 PM,03/13/2016 06:54:30 PM,Code 2 Transport,03/13/2016 07:21:49 PM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",160732292-AM16 -160062736,86,16002509,Medical Incident,01/06/2016,01/06/2016,01/06/2016 05:16:19 PM,01/06/2016 05:16:19 PM,01/06/2016 05:21:07 PM,01/06/2016 05:21:19 PM,01/06/2016 05:30:19 PM,01/06/2016 05:48:56 PM,01/06/2016 06:06:47 PM,Code 2 Transport,01/06/2016 06:59:53 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160062736-86 -120400315,E43,12013452,Medical Incident,02/09/2012,02/09/2012,02/09/2012 07:32:40 PM,02/09/2012 07:34:44 PM,02/09/2012 07:35:25 PM,02/09/2012 07:36:13 PM,02/09/2012 07:38:42 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/09/2012 07:47:43 PM,800 Block of GENEVA AVE,SF,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7168169212828, -122.441408157149)",120400315-E43 -133090165,T19,13105045,Alarms,11/05/2013,11/05/2013,11/05/2013 11:39:24 AM,11/05/2013 11:40:50 AM,11/05/2013 11:43:57 AM,04/25/2016 01:49:54 PM,11/05/2013 11:46:14 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 11:48:35 AM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",133090165-T19 -122720057,81,12089648,Medical Incident,09/28/2012,09/27/2012,09/28/2012 07:11:00 AM,09/28/2012 07:12:21 AM,09/28/2012 07:13:14 AM,09/28/2012 07:13:22 AM,09/28/2012 07:21:26 AM,09/28/2012 07:36:42 AM,09/28/2012 08:00:11 AM,Code 2 Transport,09/28/2012 08:20:17 AM,0 Block of JULES AVE,SF,94112,B09,33,8462,1,1,2,false,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.719124726717, -122.461301532222)",122720057-81 -120580193,E18,12019127,Alarms,02/27/2012,02/27/2012,02/27/2012 01:37:16 PM,02/27/2012 01:40:07 PM,02/27/2012 01:40:15 PM,02/27/2012 01:41:54 PM,02/27/2012 01:45:37 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/27/2012 01:47:00 PM,2000 Block of VICENTE ST,SF,94116,B08,18,7547,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7386791202778, -122.4888178721)",120580193-E18 -121450095,E41,12048065,Citizen Assist / Service Call,05/24/2012,05/24/2012,05/24/2012 09:44:56 AM,05/24/2012 09:47:55 AM,05/24/2012 09:48:12 AM,05/24/2012 09:49:16 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 10:00:59 AM,2300 Block of VAN NESS AVE,SF,94123,B04,41,3151,3,3,3,false,Alarm,1,ENGINE,1,4,2,Marina,"(37.7971300527187, -122.423869880264)",121450095-E41 -132820147,72,13095925,Medical Incident,10/09/2013,10/09/2013,10/09/2013 10:23:26 AM,10/09/2013 10:25:15 AM,10/09/2013 10:28:01 AM,10/09/2013 10:28:22 AM,10/09/2013 10:40:15 AM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Medical Examiner,10/09/2013 11:33:40 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",132820147-72 -160671099,65,16026701,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:07:21 AM,03/07/2016 11:08:09 AM,03/07/2016 11:09:03 AM,03/07/2016 11:10:08 AM,03/07/2016 11:16:41 AM,03/07/2016 11:35:14 AM,03/07/2016 12:06:01 PM,Code 2 Transport,03/07/2016 12:40:51 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",160671099-65 -130950222,KM09,13031841,Medical Incident,04/05/2013,04/05/2013,04/05/2013 02:02:02 PM,04/05/2013 02:02:36 PM,04/05/2013 02:03:44 PM,04/05/2013 02:04:31 PM,04/05/2013 02:20:01 PM,04/05/2013 02:51:39 PM,04/05/2013 02:51:53 PM,Code 2 Transport,04/05/2013 03:23:27 PM,22ND ST/BRYANT ST,SF,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7559984420071, -122.409433069774)",130950222-KM09 -120650063,79,12021391,Medical Incident,03/05/2012,03/04/2012,03/05/2012 06:39:42 AM,03/05/2012 06:40:55 AM,03/05/2012 06:42:18 AM,03/05/2012 06:42:52 AM,03/05/2012 06:52:48 AM,03/05/2012 07:12:46 AM,03/05/2012 07:20:30 AM,Code 2 Transport,03/05/2012 07:43:58 AM,100 Block of JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825297445725, -122.412384547628)",120650063-79 -110910040,57,11030025,Medical Incident,04/01/2011,03/31/2011,04/01/2011 02:14:43 AM,04/01/2011 02:14:43 AM,04/01/2011 02:15:34 AM,04/01/2011 02:16:05 AM,04/01/2011 02:17:41 AM,04/01/2011 02:32:42 AM,04/01/2011 02:36:42 AM,Code 2 Transport,04/01/2011 03:08:44 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",110910040-57 -160102646,79,16004133,Medical Incident,01/10/2016,01/10/2016,01/10/2016 05:50:58 PM,01/10/2016 05:53:46 PM,01/10/2016 05:54:03 PM,01/10/2016 05:54:14 PM,01/10/2016 05:59:58 PM,01/10/2016 06:19:36 PM,01/10/2016 06:34:38 PM,Code 2 Transport,01/10/2016 07:08:16 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160102646-79 -160522594,58,16020899,Medical Incident,02/21/2016,02/21/2016,02/21/2016 05:34:51 PM,02/21/2016 05:38:22 PM,02/21/2016 05:38:34 PM,02/21/2016 05:38:48 PM,02/21/2016 05:45:31 PM,02/21/2016 06:07:40 PM,02/21/2016 06:25:14 PM,Code 2 Transport,02/21/2016 06:59:15 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160522594-58 -132490138,T10,13083987,Alarms,09/06/2013,09/06/2013,09/06/2013 11:09:09 AM,09/06/2013 11:10:34 AM,09/06/2013 11:10:48 AM,09/06/2013 11:11:20 AM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/06/2013 11:13:19 AM,100 Block of 2ND AVE,SF,94118,B07,31,7115,3,3,3,true,Alarm,1,TRUCK,3,7,2,Inner Richmond,"(37.7862053016842, -122.46028712472)",132490138-T10 -160263474,65,16010462,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:35:29 PM,01/26/2016 08:35:47 PM,01/26/2016 08:35:59 PM,01/26/2016 08:36:06 PM,01/26/2016 08:40:07 PM,01/26/2016 08:57:09 PM,01/26/2016 09:00:19 PM,Code 2 Transport,01/26/2016 09:35:58 PM,1300 Block of VAN NESS AVE,San Francisco,94109,B04,3,3156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7882889208706, -122.421732731473)",160263474-65 -122960079,E23,12098064,Electrical Hazard,10/22/2012,10/22/2012,10/22/2012 08:38:12 AM,10/22/2012 08:39:44 AM,10/22/2012 08:40:04 AM,10/22/2012 08:41:04 AM,10/22/2012 08:46:00 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 08:47:56 AM,48TH AV/RIVERA ST,SF,94116,B08,23,7727,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7454095435597, -122.507030539452)",122960079-E23 -160531174,KM06,16021154,Elevator / Escalator Rescue,02/22/2016,02/22/2016,02/22/2016 10:34:39 AM,02/22/2016 10:36:33 AM,02/22/2016 10:36:59 AM,02/22/2016 10:37:06 AM,02/22/2016 10:43:49 AM,02/22/2016 11:23:35 AM,02/22/2016 11:43:06 AM,Code 2 Transport,02/22/2016 12:56:13 PM,300 Block of MARKET ST,San Francisco,94105,B03,13,2125,3,3,3,false,Alarm,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7919873998129, -122.397733553251)",160531174-KM06 -122520009,E29,12083187,Medical Incident,09/08/2012,09/07/2012,09/08/2012 12:26:04 AM,09/08/2012 12:26:33 AM,09/08/2012 12:27:11 AM,09/08/2012 12:29:10 AM,09/08/2012 12:31:04 AM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/08/2012 12:40:21 AM,0 Block of DIVISION ST,SF,94103,B03,29,2326,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,3,10,Mission Bay,"(37.7698442258534, -122.403713555238)",122520009-E29 -131030168,KM09,13034568,Medical Incident,04/13/2013,04/13/2013,04/13/2013 12:23:57 PM,04/13/2013 12:25:36 PM,04/13/2013 12:26:25 PM,04/13/2013 12:27:06 PM,04/13/2013 12:34:35 PM,04/13/2013 12:54:20 PM,04/13/2013 01:15:53 PM,Code 2 Transport,04/13/2013 01:49:03 PM,1600 Block of ALABAMA ST,SF,94110,B06,9,5666,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7466283742569, -122.410660879834)",131030168-KM09 -130680334,E33,13022806,Medical Incident,03/09/2013,03/09/2013,03/09/2013 07:12:00 PM,03/09/2013 07:12:44 PM,03/09/2013 07:13:03 PM,03/09/2013 07:14:37 PM,03/09/2013 07:17:11 PM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,Other,03/09/2013 07:33:28 PM,5600 Block of MISSION ST,SF,94112,B09,33,6211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7110467368503, -122.446989356824)",130680334-E33 -121670127,86,12055346,Medical Incident,06/15/2012,06/15/2012,06/15/2012 11:15:35 AM,06/15/2012 11:17:16 AM,06/15/2012 11:17:42 AM,06/15/2012 11:18:47 AM,06/15/2012 11:19:22 AM,06/15/2012 11:32:44 AM,06/15/2012 11:44:30 AM,Code 2 Transport,06/15/2012 12:10:50 PM,2500 Block of MARIPOSA ST,SF,94110,B02,29,5243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7631695375953, -122.408796075221)",121670127-86 -160754108,60,16029944,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:34:51 PM,03/15/2016 11:36:40 PM,03/15/2016 11:36:55 PM,03/15/2016 11:37:14 PM,03/15/2016 11:44:35 PM,03/15/2016 11:58:22 PM,03/16/2016 12:15:05 AM,Code 2 Transport,03/16/2016 01:01:30 AM,100 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160754108-60 -123580274,RC1,12119946,Medical Incident,12/23/2012,12/23/2012,12/23/2012 06:46:39 PM,12/23/2012 06:47:06 PM,12/23/2012 06:47:59 PM,04/25/2016 01:55:10 PM,12/23/2012 06:52:23 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 06:58:31 PM,BROADWAY/KEARNY ST,SF,94133,B01,13,1231,2,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,North Beach,"(37.7980169557217, -122.40547307119)",123580274-RC1 -140940103,86,14031536,Medical Incident,04/04/2014,04/04/2014,04/04/2014 09:38:01 AM,04/04/2014 09:38:23 AM,04/04/2014 09:38:41 AM,04/04/2014 09:39:07 AM,04/04/2014 09:42:56 AM,04/04/2014 09:50:21 AM,04/04/2014 10:00:53 AM,Code 2 Transport,04/04/2014 10:23:23 AM,1500 Block of MISSION ST,SAN FRANCISCO,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7737629752818, -122.417960394107)",140940103-86 -110660267,65,11021843,Medical Incident,03/07/2011,03/07/2011,03/07/2011 05:55:14 PM,03/07/2011 05:55:58 PM,03/07/2011 05:56:06 PM,03/07/2011 05:56:20 PM,03/07/2011 05:59:11 PM,04/25/2016 02:05:44 PM,03/07/2011 06:34:31 PM,Code 2 Transport,03/07/2011 06:59:38 PM,FULTON ST/LARKIN ST,SF,94102,B02,1,1551,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7795844357908, -122.416768094108)",110660267-65 -160780056,68,16030848,Medical Incident,03/18/2016,03/17/2016,03/18/2016 12:18:26 AM,03/18/2016 12:18:26 AM,03/18/2016 12:18:36 AM,03/18/2016 12:19:42 AM,03/18/2016 12:54:50 AM,03/18/2016 01:24:36 AM,03/18/2016 01:24:37 AM,Code 2 Transport,03/18/2016 02:28:58 AM,600 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1543,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869955301845, -122.414832699131)",160780056-68 -103640001,E06,10116611,Medical Incident,12/30/2010,12/29/2010,12/30/2010 12:01:17 AM,12/30/2010 12:02:01 AM,12/30/2010 12:03:04 AM,12/30/2010 12:05:06 AM,12/30/2010 12:06:27 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/30/2010 12:08:17 AM,2400 Block of MARKET ST,SF,94114,B05,6,5259,3,3,3,true,,1,ENGINE,2,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",103640001-E06 -112090071,E05,11068918,Alarms,07/28/2011,07/27/2011,07/28/2011 07:48:31 AM,07/28/2011 07:49:17 AM,07/28/2011 07:49:32 AM,07/28/2011 07:51:04 AM,07/28/2011 07:52:17 AM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 07:53:19 AM,1600 Block of TURK ST,SF,94115,B05,5,3643,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.780026750015, -122.436259177468)",112090071-E05 -131870363,79,13063951,Medical Incident,07/06/2013,07/06/2013,07/06/2013 11:49:37 PM,07/06/2013 11:49:43 PM,07/06/2013 11:51:15 PM,07/06/2013 11:51:25 PM,07/06/2013 11:56:41 PM,07/07/2013 12:05:27 AM,07/07/2013 12:24:31 AM,Code 2 Transport,07/07/2013 12:41:49 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",131870363-79 -160641291,79,16025445,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:20:00 AM,03/04/2016 10:20:00 AM,03/04/2016 10:20:26 AM,03/04/2016 10:20:34 AM,03/04/2016 10:47:53 AM,03/04/2016 10:59:47 AM,03/04/2016 11:12:48 AM,Code 2 Transport,03/04/2016 11:47:34 AM,0 Block of CASHMERE ST,San Francisco,94124,B10,25,652,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7356570201695, -122.382731651637)",160641291-79 -110640290,86,11021163,Medical Incident,03/05/2011,03/05/2011,03/05/2011 04:30:43 PM,03/05/2011 04:31:05 PM,03/05/2011 04:31:38 PM,03/05/2011 04:32:15 PM,03/05/2011 04:44:39 PM,03/05/2011 05:00:59 PM,03/05/2011 05:23:11 PM,Code 2 Transport,03/05/2011 05:39:18 PM,0 Block of HARDING RD,SF,94132,B08,19,8713,3,2,2,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7248174091742, -122.497764890771)",110640290-86 -113050278,E07,11101349,Medical Incident,11/01/2011,11/01/2011,11/01/2011 03:05:48 PM,11/01/2011 03:09:38 PM,11/01/2011 03:10:59 PM,04/25/2016 02:01:52 PM,11/01/2011 03:15:07 PM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 03:36:49 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,true,,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",113050278-E07 -113620105,AM02,11120183,Medical Incident,12/28/2011,12/28/2011,12/28/2011 09:42:00 AM,12/28/2011 09:43:36 AM,12/28/2011 09:43:52 AM,12/28/2011 09:44:42 AM,12/28/2011 09:51:30 AM,12/28/2011 10:05:27 AM,12/28/2011 10:38:45 AM,Code 2 Transport,12/28/2011 11:04:00 AM,2300 Block of 27TH AVE,SF,94116,B08,40,7471,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7436095740682, -122.484260166229)",113620105-AM02 -123470051,77,12115907,Medical Incident,12/12/2012,12/11/2012,12/12/2012 05:15:51 AM,12/12/2012 05:17:28 AM,12/12/2012 05:17:56 AM,12/12/2012 05:18:33 AM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,04/25/2016 01:55:21 PM,1400 Block of MARKET ST,SF,94102,B02,36,3219,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",123470051-77 -160473178,65,16019069,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:00:20 PM,02/16/2016 07:00:53 PM,02/16/2016 07:01:00 PM,02/16/2016 07:05:08 PM,02/16/2016 07:07:11 PM,02/16/2016 07:42:30 PM,02/16/2016 07:47:06 PM,Code 3 Transport,02/16/2016 08:28:18 PM,100 Block of 21ST AVE,San Francisco,94121,B07,14,7173,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7850021263357, -122.480861795844)",160473178-65 -140700245,86,14023672,Medical Incident,03/11/2014,03/11/2014,03/11/2014 03:32:20 PM,03/11/2014 03:32:42 PM,03/11/2014 03:53:30 PM,03/11/2014 03:53:38 PM,03/11/2014 04:11:47 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Patient Declined Transport,03/11/2014 04:31:34 PM,2300 Block of 24TH AVE,,94116,B08,40,7461,3,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",140700245-86 -113200409,79,11106472,Medical Incident,11/16/2011,11/16/2011,11/16/2011 10:36:28 PM,11/16/2011 10:39:09 PM,11/16/2011 10:41:49 PM,11/16/2011 10:43:37 PM,11/16/2011 10:45:37 PM,11/16/2011 11:00:32 PM,11/16/2011 11:26:57 PM,Code 2 Transport,11/16/2011 11:32:53 PM,200 Block of GEARY ST,SF,94108,B01,1,1323,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",113200409-79 -110690289,B03,11022781,Structure Fire,03/10/2011,03/10/2011,03/10/2011 05:14:00 PM,03/10/2011 05:14:38 PM,03/10/2011 05:14:59 PM,03/10/2011 05:16:31 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 05:21:48 PM,500 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,false,,1,CHIEF,10,2,8,Mission,"(37.7627513875316, -122.424036887526)",110690289-B03 -102710438,66,10086210,Medical Incident,09/28/2010,09/28/2010,09/28/2010 11:23:08 PM,09/28/2010 11:23:51 PM,09/28/2010 11:24:04 PM,09/28/2010 11:24:18 PM,09/28/2010 11:27:53 PM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Patient Declined Transport,09/28/2010 11:52:39 PM,PIERCE ST/FELL ST,SF,94117,B05,21,3641,3,3,3,true,,1,MEDIC,2,5,5,Hayes Valley,"(37.7744758149032, -122.434294285502)",102710438-66 -121900162,T11,12063291,Alarms,07/08/2012,07/08/2012,07/08/2012 12:54:38 PM,07/08/2012 12:54:38 PM,07/08/2012 12:54:56 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/08/2012 12:56:09 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",121900162-T11 -140810198,E48,14027372,Structure Fire,03/22/2014,03/22/2014,03/22/2014 02:06:28 PM,03/22/2014 02:07:19 PM,03/22/2014 02:07:50 PM,03/22/2014 02:09:45 PM,03/22/2014 02:11:24 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Fire,03/22/2014 02:24:53 PM,500 Block of AVENUE D,TREASURE ISLAN,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,2,None,6,Treasure Island,"(37.8228747821529, -122.371743419371)",140810198-E48 -112360302,RC3,11077988,Traffic Collision,08/24/2011,08/24/2011,08/24/2011 07:28:14 PM,08/24/2011 07:28:29 PM,08/24/2011 07:28:50 PM,08/24/2011 07:33:13 PM,08/24/2011 07:38:15 PM,08/24/2011 07:59:20 PM,08/24/2011 08:20:26 PM,Other,08/24/2011 08:36:01 PM,BACON ST/BAYSHORE BL,SF,94124,B10,42,6451,3,3,3,true,,1,RESCUE CAPTAIN,5,10,10,Portola,"(37.7281019732216, -122.402209197225)",112360302-RC3 -121960238,E28,12065239,Medical Incident,07/14/2012,07/14/2012,07/14/2012 04:06:03 PM,07/14/2012 04:09:31 PM,07/14/2012 04:13:03 PM,07/14/2012 04:14:02 PM,07/14/2012 04:16:30 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/14/2012 04:49:38 PM,600 Block of FILBERT ST,SF,94133,B01,28,1351,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8013244963183, -122.410204322135)",121960238-E28 -103250169,T05,10104173,Structure Fire,11/21/2010,11/21/2010,11/21/2010 12:36:09 PM,11/21/2010 12:37:40 PM,11/21/2010 12:37:51 PM,11/21/2010 12:39:18 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 12:43:16 PM,0 Block of LAGUNA ST,SF,94102,B02,36,3416,3,3,3,false,,1,TRUCK,11,2,8,Hayes Valley,"(37.7713406311126, -122.42516067223)",103250169-T05 -133450437,55,13117209,Medical Incident,12/11/2013,12/11/2013,12/11/2013 09:16:16 PM,12/11/2013 09:18:11 PM,12/11/2013 09:20:06 PM,12/11/2013 09:20:20 PM,12/11/2013 09:30:35 PM,12/11/2013 09:40:44 PM,12/11/2013 09:58:54 PM,Code 2 Transport,12/11/2013 10:15:28 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",133450437-55 -91810384,T03,9053843,Alarms,06/30/2009,06/30/2009,06/30/2009 10:34:29 PM,06/30/2009 10:35:50 PM,06/30/2009 10:35:57 PM,04/25/2016 03:28:08 PM,06/30/2009 10:38:44 PM,04/25/2016 03:28:08 PM,04/25/2016 03:28:08 PM,Other,06/30/2009 10:49:45 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",091810384-T03 -160521411,88,16020790,Medical Incident,02/21/2016,02/21/2016,02/21/2016 11:49:32 AM,02/21/2016 11:50:16 AM,02/21/2016 11:51:01 AM,02/21/2016 11:51:09 AM,02/21/2016 11:58:41 AM,02/21/2016 12:05:23 PM,02/21/2016 12:31:27 PM,Code 2 Transport,02/21/2016 12:55:16 PM,1600 Block of 48TH AVE,San Francisco,94122,B08,23,7724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7556706107482, -122.507670205519)",160521411-88 -111600222,E09,11052917,Medical Incident,06/09/2011,06/09/2011,06/09/2011 04:37:05 PM,06/09/2011 04:37:31 PM,06/09/2011 04:37:39 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 04:42:36 PM,300 Block of TEXAS ST,SF,94107,B03,37,2462,3,3,3,true,,1,ENGINE,3,10,10,Potrero Hill,"(37.7620024484897, -122.395430669934)",111600222-E09 -160603054,RC2,16024043,Medical Incident,02/29/2016,02/29/2016,02/29/2016 07:04:06 PM,02/29/2016 07:04:43 PM,02/29/2016 07:06:20 PM,02/29/2016 07:06:20 PM,02/29/2016 07:08:41 PM,02/29/2016 07:28:38 PM,02/29/2016 07:47:05 PM,Code 3 Transport,02/29/2016 07:47:09 PM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",160603054-RC2 -120200310,E08,12006789,Medical Incident,01/20/2012,01/20/2012,01/20/2012 06:28:32 PM,01/20/2012 06:29:46 PM,01/20/2012 06:30:55 PM,01/20/2012 06:32:55 PM,01/20/2012 06:33:41 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 06:48:01 PM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",120200310-E08 -123350375,T12,12111473,Structure Fire,11/30/2012,11/30/2012,11/30/2012 06:37:34 PM,11/30/2012 06:37:35 PM,11/30/2012 06:38:00 PM,11/30/2012 06:39:01 PM,11/30/2012 06:40:24 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,11/30/2012 07:05:06 PM,100 Block of GRATTAN ST,SF,94117,B05,12,516,3,3,3,false,Alarm,1,TRUCK,1,5,5,Haight Ashbury,"(37.7638803864645, -122.450310275747)",123350375-T12 -140600177,E36,14020248,Medical Incident,03/01/2014,03/01/2014,03/01/2014 12:22:50 PM,03/01/2014 12:23:16 PM,03/01/2014 12:25:23 PM,03/01/2014 12:30:05 PM,03/01/2014 12:33:02 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Code 2 Transport,03/01/2014 12:42:00 PM,1200 Block of MARKET ST,SF,94102,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",140600177-E36 -112870376,E36,11095309,Alarms,10/14/2011,10/14/2011,10/14/2011 07:42:29 PM,10/14/2011 07:43:24 PM,10/14/2011 07:43:40 PM,10/14/2011 07:45:31 PM,10/14/2011 07:47:40 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Other,10/14/2011 08:08:36 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",112870376-E36 -160360068,KM03,16014063,Medical Incident,02/05/2016,02/04/2016,02/05/2016 12:25:34 AM,02/05/2016 12:25:34 AM,02/05/2016 12:25:44 AM,02/05/2016 12:26:12 AM,02/05/2016 12:28:58 AM,02/05/2016 12:48:52 AM,02/05/2016 01:02:18 AM,Code 2 Transport,02/05/2016 01:48:20 AM,LARKIN ST/GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160360068-KM03 -122760059,E15,12091018,Medical Incident,10/02/2012,10/01/2012,10/02/2012 05:41:28 AM,10/02/2012 05:42:04 AM,10/02/2012 05:42:14 AM,10/02/2012 05:44:40 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 05:59:47 AM,HOLLOWAY AV/FAXON AV,SF,94112,B09,15,8463,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7218346887531, -122.460224421115)",122760059-E15 -160511378,65,16020444,Medical Incident,02/20/2016,02/20/2016,02/20/2016 11:47:13 AM,02/20/2016 11:47:39 AM,02/20/2016 11:47:58 AM,02/20/2016 11:49:53 AM,02/20/2016 11:55:06 AM,02/20/2016 12:14:46 PM,02/20/2016 12:35:42 PM,Code 2 Transport,02/20/2016 01:11:59 PM,1300 Block of MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7769455318934, -122.416807079177)",160511378-65 -160463733,65,16018710,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:01:29 PM,02/15/2016 10:01:29 PM,02/15/2016 10:02:01 PM,02/15/2016 10:03:03 PM,02/15/2016 10:16:43 PM,02/15/2016 10:16:44 PM,02/15/2016 10:26:10 PM,Code 2 Transport,02/15/2016 11:35:12 PM,0 Block of DEDMAN CT,San Francisco,94124,B10,25,6522,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7368469604958, -122.384907106098)",160463733-65 -121870107,E29,12062242,Outside Fire,07/05/2012,07/05/2012,07/05/2012 08:25:37 AM,07/05/2012 08:25:43 AM,07/05/2012 08:26:24 AM,07/05/2012 08:28:33 AM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/05/2012 08:33:22 AM,400 Block of THE EMBARCADERO,SF,94111,B03,35,926,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",121870107-E29 -160762408,74,16030204,Medical Incident,03/16/2016,03/16/2016,03/16/2016 03:27:41 PM,03/16/2016 03:27:41 PM,03/16/2016 03:28:15 PM,03/16/2016 03:28:35 PM,03/16/2016 03:30:55 PM,03/16/2016 03:46:06 PM,03/16/2016 04:00:23 PM,Code 2 Transport,03/16/2016 04:27:50 PM,VALENCIA ST/MARKET ST,San Francisco,94103,B02,36,5115,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7725028174103, -122.422619692886)",160762408-74 -110010572,E07,11000494,Medical Incident,01/01/2011,01/01/2011,01/01/2011 10:35:13 PM,01/01/2011 10:35:58 PM,01/01/2011 10:36:13 PM,01/01/2011 10:38:26 PM,01/01/2011 10:39:41 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/01/2011 10:41:44 PM,17TH ST/MISSION ST,SF,94110,B02,7,5246,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7634292740134, -122.419512736792)",110010572-E07 -113270267,KM05,11108637,Medical Incident,11/23/2011,11/23/2011,11/23/2011 05:25:49 PM,11/23/2011 05:27:28 PM,11/23/2011 05:28:15 PM,04/25/2016 02:01:30 PM,11/23/2011 05:41:10 PM,11/23/2011 05:46:37 PM,11/23/2011 06:07:28 PM,Code 2 Transport,11/23/2011 06:33:10 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",113270267-KM05 -160371264,AM06,16014622,Medical Incident,02/06/2016,02/06/2016,02/06/2016 09:36:58 AM,02/06/2016 09:42:16 AM,02/06/2016 09:43:11 AM,02/06/2016 09:44:30 AM,02/06/2016 10:05:11 AM,02/06/2016 10:05:13 AM,02/06/2016 11:05:10 AM,Other,02/06/2016 11:31:25 AM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160371264-AM06 -133440276,65,13116730,Medical Incident,12/10/2013,12/10/2013,12/10/2013 03:39:30 PM,12/10/2013 03:40:24 PM,12/10/2013 03:47:18 PM,12/10/2013 03:47:27 PM,12/10/2013 03:53:37 PM,12/10/2013 04:12:02 PM,12/10/2013 04:30:12 PM,Code 2 Transport,12/10/2013 04:49:20 PM,TENNESSEE ST/22ND ST,SF,94107,B10,25,2533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7578836645484, -122.389248224824)",133440276-65 -160863832,68,16034384,Medical Incident,03/26/2016,03/26/2016,03/26/2016 10:42:37 PM,03/26/2016 10:42:37 PM,03/26/2016 10:43:40 PM,03/26/2016 10:43:55 PM,03/26/2016 10:54:28 PM,03/26/2016 11:03:33 PM,03/26/2016 11:04:06 PM,Against Medical Advice,03/26/2016 11:51:37 PM,1800 Block of EDDY ST,San Francisco,94115,B05,5,4133,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7806409046944, -122.43808239162)",160863832-68 -140560356,E36,14019036,Medical Incident,02/25/2014,02/25/2014,02/25/2014 09:45:20 PM,02/25/2014 09:47:25 PM,02/25/2014 09:47:41 PM,02/25/2014 09:49:09 PM,02/25/2014 09:51:48 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Code 2 Transport,02/25/2014 10:03:47 PM,1600 Block of MARKET ST,SF,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",140560356-E36 -120600267,B04,12019826,Structure Fire,02/29/2012,02/29/2012,02/29/2012 06:48:47 PM,02/29/2012 06:48:47 PM,02/29/2012 06:48:53 PM,02/29/2012 06:50:39 PM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,Other,02/29/2012 06:55:59 PM,1400 Block of SCOTT ST,SF,94115,B04,5,413,3,3,3,false,Alarm,1,CHIEF,2,4,5,Western Addition,"(37.7831990201184, -122.437672374097)",120600267-B04 -103060379,E03,10098061,Medical Incident,11/02/2010,11/02/2010,11/02/2010 07:30:05 PM,11/02/2010 07:31:29 PM,11/02/2010 07:31:57 PM,11/02/2010 07:32:59 PM,11/02/2010 07:34:56 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 08:10:40 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",103060379-E03 -131530028,RC2,13051697,Medical Incident,06/02/2013,06/01/2013,06/02/2013 02:01:32 AM,06/02/2013 02:02:15 AM,06/02/2013 02:02:54 AM,06/02/2013 02:03:38 AM,06/02/2013 02:09:51 AM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/02/2013 02:22:27 AM,1500 Block of MCALLISTER ST,SF,94117,B05,21,4151,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,5,5,Western Addition,"(37.7778460603024, -122.437520119356)",131530028-RC2 -122700177,E41,12089118,Medical Incident,09/26/2012,09/26/2012,09/26/2012 01:59:13 PM,09/26/2012 01:59:32 PM,09/26/2012 01:59:47 PM,09/26/2012 02:00:53 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/26/2012 02:03:32 PM,2100 Block of POLK ST,SF,94109,B04,41,3126,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7964138831057, -122.421932885069)",122700177-E41 -123540224,E10,12118471,Medical Incident,12/19/2012,12/19/2012,12/19/2012 01:33:28 PM,12/19/2012 01:34:44 PM,12/19/2012 01:34:55 PM,12/19/2012 01:38:02 PM,12/19/2012 01:41:12 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 01:55:17 PM,0 Block of BALBOA ST,SF,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7775132246775, -122.459111622307)",123540224-E10 -160110765,82,16004304,Medical Incident,01/11/2016,01/11/2016,01/11/2016 08:25:22 AM,01/11/2016 08:26:40 AM,01/11/2016 08:27:20 AM,01/11/2016 08:27:28 AM,01/11/2016 08:38:25 AM,01/11/2016 08:43:36 AM,01/11/2016 08:57:12 AM,Code 2 Transport,01/11/2016 09:37:51 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160110765-82 -123430239,T01,12114664,Medical Incident,12/08/2012,12/08/2012,12/08/2012 03:19:02 PM,12/08/2012 03:19:03 PM,12/08/2012 03:19:03 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 03:48:54 PM,0 Block of HOWARD ST,SF,94105,B03,35,2114,2,2,2,false,Non Life-threatening,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7916972492914, -122.392134062208)",123430239-T01 -160753392,AM16,16029864,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:33:31 PM,03/15/2016 07:34:10 PM,03/15/2016 07:34:24 PM,03/15/2016 07:35:13 PM,03/15/2016 07:49:52 PM,03/15/2016 08:00:26 PM,03/15/2016 08:09:53 PM,Code 2 Transport,03/15/2016 08:38:37 PM,600 Block of SUTTER ST,San Francisco,94108,B01,3,1412,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",160753392-AM16 -132250315,E42,13076045,Medical Incident,08/13/2013,08/13/2013,08/13/2013 05:12:22 PM,08/13/2013 05:16:09 PM,08/13/2013 05:17:28 PM,08/13/2013 05:19:04 PM,08/13/2013 05:25:12 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 05:26:52 PM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",132250315-E42 -160602446,89,16023980,Medical Incident,02/29/2016,02/29/2016,02/29/2016 04:24:33 PM,02/29/2016 04:29:33 PM,02/29/2016 04:29:49 PM,02/29/2016 04:31:06 PM,02/29/2016 04:36:13 PM,02/29/2016 04:49:24 PM,02/29/2016 05:04:33 PM,Code 2 Transport,02/29/2016 05:28:52 PM,1600 Block of MARKET ST,San Francisco,94102,B02,36,3311,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7734563328786, -122.421591110968)",160602446-89 -102640138,KM01,10083509,Medical Incident,09/21/2010,09/21/2010,09/21/2010 11:33:00 AM,09/21/2010 11:34:23 AM,09/21/2010 11:36:13 AM,09/21/2010 11:36:38 AM,09/21/2010 11:48:43 AM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Gone on Arrival,09/21/2010 11:51:42 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,2,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",102640138-KM01 -111850030,E01,11061014,Medical Incident,07/04/2011,07/03/2011,07/04/2011 02:44:54 AM,07/04/2011 02:44:55 AM,07/04/2011 02:45:07 AM,07/04/2011 02:47:40 AM,07/04/2011 02:50:39 AM,04/25/2016 02:03:50 PM,04/25/2016 02:03:50 PM,Other,07/04/2011 02:59:59 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",111850030-E01 -160510445,AM22,16020358,Medical Incident,02/20/2016,02/19/2016,02/20/2016 04:04:38 AM,02/20/2016 04:04:38 AM,02/20/2016 04:04:51 AM,02/20/2016 04:05:19 AM,02/20/2016 04:17:25 AM,02/20/2016 05:19:26 AM,02/20/2016 05:19:48 AM,Code 2 Transport,02/20/2016 05:19:53 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160510445-AM22 -132740321,T15,13093229,Alarms,10/01/2013,10/01/2013,10/01/2013 09:13:04 PM,10/01/2013 09:13:41 PM,10/01/2013 09:15:19 PM,04/25/2016 01:50:29 PM,10/01/2013 09:17:48 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 09:22:41 PM,200 Block of ONEIDA AVE,SF,94112,B09,15,828,3,3,3,false,Alarm,1,TRUCK,3,9,11,Outer Mission,"(37.7218642111521, -122.442994070235)",132740321-T15 -111760299,AM18,11058110,Medical Incident,06/25/2011,06/25/2011,06/25/2011 05:53:33 PM,06/25/2011 05:55:34 PM,06/25/2011 05:56:14 PM,06/25/2011 05:57:05 PM,06/25/2011 06:06:08 PM,06/25/2011 06:22:40 PM,06/25/2011 06:51:26 PM,Code 2 Transport,06/25/2011 07:15:23 PM,300 Block of ELLINGTON AVE,SF,94112,B09,33,8346,1,1,2,false,,1,PRIVATE,1,9,11,Outer Mission,"(37.7124278313923, -122.44655558742)",111760299-AM18 -110250309,T03,11008309,Elevator / Escalator Rescue,01/25/2011,01/25/2011,01/25/2011 03:23:26 PM,01/25/2011 03:25:08 PM,01/25/2011 03:25:20 PM,01/25/2011 03:25:55 PM,01/25/2011 03:28:47 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 04:39:10 PM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,false,,1,TRUCK,1,1,3,Nob Hill,"(37.7896888465146, -122.412913104115)",110250309-T03 -160671073,88,16026695,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:58:25 AM,03/07/2016 10:59:07 AM,03/07/2016 10:59:19 AM,03/07/2016 10:59:39 AM,03/07/2016 11:04:54 AM,03/07/2016 11:21:41 AM,03/07/2016 11:27:07 AM,Code 2 Transport,03/07/2016 11:59:53 AM,400 Block of 3RD AVE,San Francisco,94118,B07,31,7117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7802004442701, -122.46092794533)",160671073-88 -112020354,E33,11066777,Medical Incident,07/21/2011,07/21/2011,07/21/2011 06:31:02 PM,07/21/2011 06:31:42 PM,07/21/2011 06:33:30 PM,07/21/2011 06:35:18 PM,07/21/2011 06:37:52 PM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Other,07/21/2011 06:50:57 PM,700 Block of BRUNSWICK ST,SF,94112,B09,33,6214,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7087500759547, -122.44878758765)",112020354-E33 -120930265,88,12030872,Medical Incident,04/02/2012,04/02/2012,04/02/2012 04:04:24 PM,04/02/2012 04:06:37 PM,04/02/2012 04:08:05 PM,04/02/2012 04:08:10 PM,04/02/2012 04:24:04 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Patient Declined Transport,04/02/2012 04:32:44 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",120930265-88 -121660124,E21,12055009,Outside Fire,06/14/2012,06/14/2012,06/14/2012 10:06:20 AM,06/14/2012 10:09:13 AM,06/14/2012 10:09:22 AM,04/25/2016 01:58:13 PM,06/14/2012 10:11:50 AM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Fire,06/14/2012 10:15:25 AM,SCOTT ST/HAYES ST,SF,94117,B05,21,4136,3,3,3,false,Fire,1,ENGINE,1,5,5,Hayes Valley,"(37.77520593025, -122.436128964162)",121660124-E21 -160321389,KM02,16012549,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:42:03 AM,02/01/2016 11:42:03 AM,02/01/2016 11:44:21 AM,02/01/2016 11:44:37 AM,02/01/2016 11:48:01 AM,02/01/2016 12:14:23 PM,02/01/2016 12:24:11 PM,Code 2 Transport,02/01/2016 01:12:46 PM,2ND ST/MARKET ST,San Francisco,94105,B03,1,2144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",160321389-KM02 -132140283,KM02,13072346,Medical Incident,08/02/2013,08/02/2013,08/02/2013 05:07:08 PM,08/02/2013 05:08:30 PM,08/02/2013 05:09:10 PM,08/02/2013 05:10:13 PM,08/02/2013 05:22:25 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Patient Declined Transport,08/02/2013 06:13:28 PM,9TH AV/LINCOLN WY,SF,94122,B08,22,7333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",132140283-KM02 -122160388,75,12071853,Structure Fire,08/03/2012,08/03/2012,08/03/2012 10:47:28 PM,08/03/2012 10:49:43 PM,08/03/2012 10:50:15 PM,08/03/2012 10:50:30 PM,08/03/2012 10:55:18 PM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,08/03/2012 11:02:12 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Fire,1,MEDIC,8,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",122160388-75 -131170336,KM15,13039494,Medical Incident,04/27/2013,04/27/2013,04/27/2013 08:49:47 PM,04/27/2013 08:52:13 PM,04/27/2013 08:52:45 PM,04/27/2013 08:53:20 PM,04/27/2013 08:59:29 PM,04/27/2013 09:40:00 PM,04/27/2013 09:50:04 PM,Code 2 Transport,04/27/2013 10:46:21 PM,0 Block of COOK ST,SF,94118,B05,10,445,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7827615276268, -122.452255448643)",131170336-KM15 -110180048,54,11005836,Medical Incident,01/18/2011,01/17/2011,01/18/2011 07:40:39 AM,01/18/2011 07:42:55 AM,01/18/2011 07:43:49 AM,01/18/2011 07:44:19 AM,01/18/2011 07:49:50 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Against Medical Advice,01/18/2011 08:53:43 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,3,3,3,true,,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",110180048-54 -102580070,88,10081419,Medical Incident,09/15/2010,09/14/2010,09/15/2010 07:48:48 AM,09/15/2010 07:50:31 AM,09/15/2010 07:53:25 AM,09/15/2010 07:54:33 AM,09/15/2010 08:02:25 AM,09/15/2010 08:11:29 AM,09/15/2010 08:36:50 AM,Code 2 Transport,09/15/2010 08:54:17 AM,300 Block of OFARRELL ST,SF,94102,B01,1,1452,1,1,2,true,,1,MEDIC,1,1,3,Tenderloin,"(37.7861537029873, -122.410515154623)",102580070-88 -130560058,58,13018776,Medical Incident,02/25/2013,02/24/2013,02/25/2013 07:13:32 AM,02/25/2013 07:15:05 AM,02/25/2013 07:15:19 AM,02/25/2013 07:16:35 AM,02/25/2013 07:19:59 AM,02/25/2013 07:34:42 AM,02/25/2013 07:55:37 AM,Code 2 Transport,02/25/2013 08:03:58 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7739392650435, -122.412947871011)",130560058-58 -120460258,93,12015360,Medical Incident,02/15/2012,02/15/2012,02/15/2012 04:13:25 PM,02/15/2012 04:13:25 PM,02/15/2012 04:13:25 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,02/15/2012 04:24:44 PM,02/15/2012 04:39:46 PM,Code 2 Transport,02/15/2012 05:17:06 PM,0 Block of GROVE ST,SF,94102,B02,36,381,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",120460258-93 -123590296,E10,12120294,Alarms,12/24/2012,12/24/2012,12/24/2012 08:00:55 PM,12/24/2012 08:02:40 PM,12/24/2012 08:02:52 PM,12/24/2012 08:04:10 PM,12/24/2012 08:05:55 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 08:27:43 PM,3000 Block of SACRAMENTO ST,SF,94115,B04,10,4264,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.788729694614, -122.443129710334)",123590296-E10 -160570630,52,16022640,Medical Incident,02/26/2016,02/25/2016,02/26/2016 07:30:02 AM,02/26/2016 07:30:02 AM,02/26/2016 07:30:30 AM,02/26/2016 07:31:57 AM,02/26/2016 07:44:54 AM,02/26/2016 08:02:00 AM,02/26/2016 08:29:43 AM,Code 2 Transport,02/26/2016 09:08:53 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160570630-52 -113070122,89,11101937,Medical Incident,11/03/2011,11/03/2011,11/03/2011 10:24:45 AM,11/03/2011 10:25:42 AM,11/03/2011 10:26:10 AM,11/03/2011 10:26:44 AM,11/03/2011 11:02:24 AM,11/03/2011 11:02:38 AM,11/03/2011 11:02:54 AM,Code 3 Transport,11/03/2011 12:12:21 PM,0 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",113070122-89 -111680076,E06,11055315,Medical Incident,06/17/2011,06/16/2011,06/17/2011 07:35:42 AM,06/17/2011 07:37:39 AM,06/17/2011 07:38:00 AM,06/17/2011 07:39:11 AM,06/17/2011 07:42:49 AM,04/25/2016 02:04:07 PM,04/25/2016 02:04:07 PM,Other,06/17/2011 07:44:17 AM,PAGE ST/BRODERICK ST,SF,94117,B05,21,4251,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7719904229663, -122.438899100601)",111680076-E06 -131360047,89,13045763,Medical Incident,05/16/2013,05/15/2013,05/16/2013 04:14:08 AM,05/16/2013 04:15:12 AM,05/16/2013 04:15:30 AM,05/16/2013 04:15:56 AM,05/16/2013 04:21:18 AM,05/16/2013 04:53:20 AM,05/16/2013 05:21:26 AM,Code 2 Transport,05/16/2013 05:44:30 AM,300 Block of 22ND AVE,SF,94121,B07,14,7175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7811963631552, -122.481518721735)",131360047-89 -131640075,T15,13055637,Alarms,06/13/2013,06/12/2013,06/13/2013 07:52:38 AM,06/13/2013 07:54:00 AM,06/13/2013 07:54:19 AM,06/13/2013 07:55:13 AM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/13/2013 07:59:42 AM,0 Block of MELROSE AVE,SF,94131,B09,15,8228,3,3,3,false,Alarm,1,TRUCK,3,9,7,West of Twin Peaks,"(37.733778409433, -122.443159251702)",131640075-T15 -140760231,KM09,14025753,Medical Incident,03/17/2014,03/17/2014,03/17/2014 03:04:32 PM,03/17/2014 03:05:02 PM,03/17/2014 03:05:13 PM,03/17/2014 03:07:15 PM,03/17/2014 03:11:24 PM,03/17/2014 03:23:30 PM,03/17/2014 03:37:41 PM,Code 2 Transport,03/17/2014 04:02:09 PM,900 Block of FOLSOM ST,SAN FRANCISCO,94107,B03,1,2244,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7798137203933, -122.403860419019)",140760231-KM09 -160272808,59,16010781,Medical Incident,01/27/2016,01/27/2016,01/27/2016 05:00:44 PM,01/27/2016 05:01:59 PM,01/27/2016 05:02:23 PM,01/27/2016 05:02:32 PM,01/27/2016 05:09:41 PM,01/27/2016 05:38:41 PM,01/27/2016 06:12:02 PM,Code 2 Transport,01/27/2016 06:37:14 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160272808-59 -160193292,86,16007783,Medical Incident,01/19/2016,01/19/2016,01/19/2016 07:56:47 PM,01/19/2016 07:59:59 PM,01/19/2016 08:02:29 PM,01/19/2016 08:02:37 PM,01/19/2016 08:18:59 PM,01/19/2016 08:47:57 PM,01/19/2016 08:55:23 PM,Code 2 Transport,01/19/2016 09:39:35 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160193292-86 -103240397,E16,10104022,Medical Incident,11/20/2010,11/20/2010,11/20/2010 11:58:38 PM,11/20/2010 11:59:03 PM,11/20/2010 11:59:21 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,11/21/2010 12:01:29 AM,1900 Block of JEFFERSON ST,SF,94123,B04,16,4216,3,2,2,true,,1,ENGINE,2,4,2,Marina,"(37.8044775553238, -122.444614636594)",103240397-E16 -120280125,87,12009356,Medical Incident,01/28/2012,01/28/2012,01/28/2012 10:23:23 AM,01/28/2012 10:23:36 AM,01/28/2012 10:23:50 AM,01/28/2012 10:25:09 AM,01/28/2012 10:28:44 AM,01/28/2012 10:35:30 AM,01/28/2012 11:01:02 AM,Code 2 Transport,01/28/2012 11:07:30 AM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",120280125-87 -103400049,RC2,10108732,Traffic Collision,12/06/2010,12/05/2010,12/06/2010 06:35:18 AM,12/06/2010 06:35:39 AM,12/06/2010 06:37:04 AM,12/06/2010 06:39:38 AM,12/06/2010 06:44:36 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/06/2010 06:50:59 AM,STEINER ST/GEARY BL,SF,94115,B04,5,3623,3,3,3,true,,1,RESCUE CAPTAIN,3,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",103400049-RC2 -133570287,E20,13121456,Medical Incident,12/23/2013,12/23/2013,12/23/2013 06:32:57 PM,12/23/2013 06:33:42 PM,12/23/2013 06:36:14 PM,12/23/2013 06:37:16 PM,12/23/2013 06:41:19 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 07:01:35 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",133570287-E20 -120660273,T07,12021901,Structure Fire,03/06/2012,03/06/2012,03/06/2012 03:44:18 PM,03/06/2012 03:45:33 PM,03/06/2012 03:46:10 PM,03/06/2012 03:47:21 PM,03/06/2012 03:51:15 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 04:01:11 PM,500 Block of CASTRO ST,SF,94114,B06,6,5437,3,3,3,false,Fire,1,TRUCK,7,6,8,Castro/Upper Market,"(37.7600850560594, -122.434996193094)",120660273-T07 -140180027,E28,14006043,Medical Incident,01/18/2014,01/17/2014,01/18/2014 01:48:44 AM,01/18/2014 01:48:44 AM,01/18/2014 01:48:53 AM,01/18/2014 01:51:09 AM,01/18/2014 01:53:49 AM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/18/2014 02:06:27 AM,MASON ST/FILBERT ST,SF,94133,B01,28,1423,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.8009650564562, -122.412659662276)",140180027-E28 -160860965,89,16034108,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:23:09 AM,03/26/2016 09:23:09 AM,03/26/2016 09:23:37 AM,03/26/2016 09:27:21 AM,03/26/2016 09:52:28 AM,03/26/2016 09:56:23 AM,03/26/2016 10:08:33 AM,Code 2 Transport,03/26/2016 10:41:39 AM,300 Block of AMBER DR,San Francisco,94131,B06,26,8164,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Glen Park,"(37.7445636381979, -122.441704934967)",160860965-89 -160403655,70,16016226,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:45:21 PM,02/09/2016 09:46:29 PM,02/09/2016 09:46:41 PM,02/09/2016 09:46:51 PM,02/09/2016 10:08:18 PM,02/09/2016 10:13:40 PM,02/09/2016 10:28:13 PM,Code 2 Transport,02/09/2016 10:59:51 PM,0 Block of DELLBROOK AVE,San Francisco,94131,B08,20,5351,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7495710546897, -122.454036299238)",160403655-70 -130160331,67,13005573,Medical Incident,01/16/2013,01/16/2013,01/16/2013 08:35:49 PM,01/16/2013 08:37:50 PM,01/16/2013 08:38:12 PM,01/16/2013 08:38:20 PM,01/16/2013 08:51:19 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Patient Declined Transport,01/16/2013 09:22:21 PM,100 Block of SCOTIA AVE,SF,94124,B10,42,6363,1,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7336457993937, -122.401427923842)",130160331-67 -102770126,92,10088027,Medical Incident,10/04/2010,10/04/2010,10/04/2010 11:10:21 AM,10/04/2010 11:12:47 AM,10/04/2010 11:12:58 AM,10/04/2010 11:14:26 AM,10/04/2010 11:17:21 AM,10/04/2010 11:34:08 AM,10/04/2010 11:43:24 AM,Code 2 Transport,10/04/2010 12:12:46 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",102770126-92 -131630360,E44,13055529,Traffic Collision,06/12/2013,06/12/2013,06/12/2013 08:31:44 PM,06/12/2013 08:33:55 PM,06/12/2013 08:34:22 PM,06/12/2013 08:35:48 PM,06/12/2013 08:38:15 PM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/12/2013 08:52:36 PM,SALINAS AV/EXETER ST,SF,94124,B10,44,6542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7213025245734, -122.399006933001)",131630360-E44 -160142352,55,16005635,Medical Incident,01/14/2016,01/14/2016,01/14/2016 03:33:17 PM,01/14/2016 03:34:32 PM,01/14/2016 03:34:51 PM,01/14/2016 03:35:05 PM,01/14/2016 03:43:35 PM,01/14/2016 04:17:48 PM,01/14/2016 04:34:27 PM,Code 2 Transport,01/14/2016 05:31:58 PM,1500 Block of DIVISADERO ST,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7840751928704, -122.439752776223)",160142352-55 -111020010,T08,11033689,Medical Incident,04/12/2011,04/11/2011,04/12/2011 01:02:05 AM,04/12/2011 01:02:37 AM,04/12/2011 01:04:30 AM,04/12/2011 01:05:55 AM,04/12/2011 01:08:43 AM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/12/2011 01:09:29 AM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,false,,1,TRUCK,2,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",111020010-T08 -103540318,E11,10113770,Traffic Collision,12/20/2010,12/20/2010,12/20/2010 08:43:09 PM,12/20/2010 08:43:09 PM,12/20/2010 08:43:55 PM,12/20/2010 08:45:04 PM,12/20/2010 08:47:06 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,No Merit,12/20/2010 08:52:23 PM,SHOTWELL ST/CESAR CHAVEZ ST,SF,94110,B06,11,5623,2,2,2,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7482307319599, -122.414918964402)",103540318-E11 -123610263,B02,12120875,Alarms,12/26/2012,12/26/2012,12/26/2012 03:51:44 PM,12/26/2012 03:52:09 PM,12/26/2012 03:52:24 PM,12/26/2012 03:53:30 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 03:58:52 PM,2000 Block of HARRISON ST,SF,94110,B02,7,5245,3,3,3,false,Alarm,1,CHIEF,3,2,9,Mission,"(37.7647659461051, -122.413123030178)",123610263-B02 -110530311,E01,11017625,Alarms,02/22/2011,02/22/2011,02/22/2011 07:21:52 PM,02/22/2011 07:23:02 PM,02/22/2011 07:23:14 PM,02/22/2011 07:25:28 PM,02/22/2011 07:26:57 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 07:42:13 PM,500 Block of MARKET ST,SF,94105,B03,1,2144,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",110530311-E01 -160631629,53,16025057,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:23:00 PM,03/03/2016 12:23:00 PM,03/03/2016 12:23:13 PM,03/03/2016 12:23:35 PM,03/03/2016 12:40:11 PM,03/03/2016 01:16:20 PM,03/03/2016 01:33:28 PM,Code 2 Transport,03/03/2016 02:09:53 PM,0 Block of LELAND AVE,San Francisco,94134,B10,44,6255,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7118213439921, -122.405187328609)",160631629-53 -120910006,60,12029966,Medical Incident,03/31/2012,03/30/2012,03/31/2012 12:16:05 AM,03/31/2012 12:17:07 AM,03/31/2012 12:17:41 AM,03/31/2012 12:18:08 AM,03/31/2012 12:21:06 AM,03/31/2012 12:33:09 AM,03/31/2012 12:43:22 AM,Code 2 Transport,03/31/2012 01:08:05 AM,MISSION ST/SILVER AV,SF,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7287295501651, -122.431293846084)",120910006-60 -160482841,66,16019430,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 04:56:14 PM,02/17/2016 04:56:14 PM,02/17/2016 04:56:47 PM,02/17/2016 04:56:59 PM,02/17/2016 04:58:53 PM,02/17/2016 05:15:28 PM,02/17/2016 05:29:28 PM,Code 2 Transport,02/17/2016 07:21:34 PM,200 Block of ALABAMA ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7671584949516, -122.41250540209)",160482841-66 -110980344,99,11032627,Medical Incident,04/08/2011,04/08/2011,04/08/2011 06:18:55 PM,04/08/2011 06:19:48 PM,04/08/2011 06:22:05 PM,04/08/2011 06:22:16 PM,04/08/2011 06:29:46 PM,04/08/2011 07:10:17 PM,04/08/2011 07:27:07 PM,Code 2 Transport,04/08/2011 07:49:26 PM,100 Block of LOMBARD ST,SF,94111,B01,28,1224,3,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",110980344-99 -160570223,56,16022598,Medical Incident,02/26/2016,02/25/2016,02/26/2016 02:04:33 AM,02/26/2016 02:04:33 AM,02/26/2016 02:04:53 AM,02/26/2016 02:05:07 AM,02/26/2016 02:15:27 AM,02/26/2016 02:40:53 AM,02/26/2016 02:40:54 AM,Code 2 Transport,02/26/2016 03:31:48 AM,MASON ST/FILBERT ST,San Francisco,94133,B01,28,1422,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.8009650564562, -122.412659662276)",160570223-56 -132770127,T15,13094035,Medical Incident,10/04/2013,10/04/2013,10/04/2013 09:54:41 AM,10/04/2013 09:54:42 AM,10/04/2013 09:54:42 AM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 10:11:39 AM,PERSIA AV/LONDON ST,SF,94112,B09,43,6121,2,2,2,false,Non Life-threatening,1,TRUCK,2,9,11,Excelsior,"(37.7227637319069, -122.435208400094)",132770127-T15 -132640401,RC3,13089699,Vehicle Fire,09/21/2013,09/21/2013,09/21/2013 10:04:58 PM,09/21/2013 10:06:09 PM,09/21/2013 10:09:01 PM,09/21/2013 10:12:37 PM,04/25/2016 01:50:39 PM,09/21/2013 10:30:28 PM,04/25/2016 01:50:39 PM,Other,09/21/2013 10:28:20 PM,0 Block of 5TH ST,SF,94103,B03,8,2243,3,3,3,true,Fire,1,RESCUE CAPTAIN,8,3,6,South of Market,"(37.7831860531538, -122.407149119811)",132640401-RC3 -160381560,83,16015186,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:43:11 AM,02/07/2016 11:44:22 AM,02/07/2016 11:44:48 AM,02/07/2016 11:45:13 AM,02/07/2016 11:48:12 AM,02/07/2016 11:57:10 AM,02/07/2016 12:11:13 PM,Code 2 Transport,02/07/2016 12:49:40 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160381560-83 -111760338,T01,11058145,Alarms,06/25/2011,06/25/2011,06/25/2011 07:36:09 PM,06/25/2011 07:37:36 PM,06/25/2011 07:37:46 PM,06/25/2011 07:39:44 PM,06/25/2011 07:41:20 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 07:49:13 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,TRUCK,2,3,3,Financial District/South Beach,"(37.7864582323625, -122.407206735701)",111760338-T01 -160102810,KM04,16004152,Medical Incident,01/10/2016,01/10/2016,01/10/2016 06:39:37 PM,01/10/2016 06:41:45 PM,01/10/2016 06:44:53 PM,01/10/2016 06:45:23 PM,01/10/2016 06:56:08 PM,01/10/2016 07:20:18 PM,01/10/2016 07:42:53 PM,Code 2 Transport,01/10/2016 08:04:44 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160102810-KM04 -113420343,84,11113530,Medical Incident,12/08/2011,12/08/2011,12/08/2011 08:24:23 PM,12/08/2011 08:24:23 PM,12/08/2011 08:24:23 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Fire,12/08/2011 08:38:35 PM,100 Block of COLUMBUS AVE,SF,94133,B01,13,1246,2,2,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7969454448277, -122.405446187756)",113420343-84 -112350406,65,11077737,Medical Incident,08/23/2011,08/23/2011,08/23/2011 10:50:25 PM,08/23/2011 10:51:45 PM,08/23/2011 10:52:28 PM,08/23/2011 10:52:58 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/23/2011 10:53:45 PM,1100 Block of MARKET ST,SF,94103,B02,1,2316,2,3,3,true,,1,MEDIC,3,2,6,South of Market,"(37.7795310846627, -122.413542548681)",112350406-65 -110220197,KM04,11007275,Medical Incident,01/22/2011,01/22/2011,01/22/2011 02:50:20 PM,01/22/2011 02:51:29 PM,01/22/2011 02:51:57 PM,01/22/2011 02:53:18 PM,01/22/2011 02:56:55 PM,01/22/2011 03:23:56 PM,01/22/2011 03:38:40 PM,Code 2 Transport,01/22/2011 04:01:55 PM,700 Block of 27TH ST,SF,94131,B06,26,5554,3,3,3,false,,1,PRIVATE,2,6,8,Noe Valley,"(37.7462472673363, -122.436920444133)",110220197-KM04 -123120158,E21,12103807,Medical Incident,11/07/2012,11/07/2012,11/07/2012 11:34:09 AM,11/07/2012 11:35:45 AM,11/07/2012 11:36:34 AM,11/07/2012 11:37:18 AM,11/07/2012 11:38:11 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 11:40:16 AM,1400 Block of HAIGHT ST,SF,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7700546614555, -122.446128431298)",123120158-E21 -103470296,T03,10111356,Structure Fire,12/13/2010,12/13/2010,12/13/2010 05:00:02 PM,12/13/2010 05:00:03 PM,12/13/2010 05:00:07 PM,12/13/2010 05:01:39 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 05:04:13 PM,0 Block of LARKIN ST,SF,94102,B02,36,1646,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7775888205813, -122.416411092393)",103470296-T03 -102980093,82,10095096,Medical Incident,10/25/2010,10/25/2010,10/25/2010 08:47:25 AM,10/25/2010 08:49:54 AM,10/25/2010 09:01:40 AM,10/25/2010 09:06:08 AM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Other,04/25/2016 02:07:56 PM,3300 Block of CLEMENT ST,SF,94121,B07,34,7247,3,3,3,true,,1,MEDIC,4,7,1,Outer Richmond,"(37.781497447449, -122.495051120657)",102980093-82 -102710146,T03,10085955,Medical Incident,09/28/2010,09/28/2010,09/28/2010 10:35:48 AM,09/28/2010 10:36:25 AM,09/28/2010 10:36:57 AM,09/28/2010 10:37:10 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 10:41:23 AM,1600 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,false,,1,TRUCK,3,4,2,Western Addition,"(37.7882291932366, -122.424426274626)",102710146-T03 -160633362,65,16025227,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:43:09 PM,03/03/2016 07:43:09 PM,03/03/2016 07:53:46 PM,03/03/2016 07:54:14 PM,03/03/2016 07:55:11 PM,03/03/2016 08:00:40 PM,03/03/2016 08:11:54 PM,Code 3 Transport,03/03/2016 08:57:32 PM,TURK ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1456,A,E,3,true,Potentially Life-Threatening,1,MEDIC,7,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160633362-65 -111280310,E08,11042462,Medical Incident,05/08/2011,05/08/2011,05/08/2011 09:02:35 PM,05/08/2011 09:03:40 PM,05/08/2011 09:03:49 PM,05/08/2011 09:05:07 PM,05/08/2011 09:06:41 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,No Merit,05/08/2011 09:14:04 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111280310-E08 -102500304,78,10079100,Medical Incident,09/07/2010,09/07/2010,09/07/2010 07:58:55 PM,09/07/2010 07:59:49 PM,09/07/2010 08:00:44 PM,09/07/2010 08:00:50 PM,09/07/2010 08:03:37 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,No Merit,09/07/2010 08:19:46 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",102500304-78 -103150111,54,10100933,Traffic Collision,11/11/2010,11/11/2010,11/11/2010 10:39:32 AM,11/11/2010 10:39:32 AM,11/11/2010 10:40:05 AM,11/11/2010 10:44:42 AM,11/11/2010 10:48:08 AM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,Patient Declined Transport,11/11/2010 11:19:04 AM,LINCOLN WY/26TH AV,SF,94122,B08,22,7452,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7651167516205, -122.484758825812)",103150111-54 -130700254,E05,13023389,Medical Incident,03/11/2013,03/11/2013,03/11/2013 02:39:06 PM,03/11/2013 02:42:03 PM,03/11/2013 02:42:21 PM,03/11/2013 02:43:19 PM,03/11/2013 02:46:27 PM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,No Merit,03/11/2013 02:48:25 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",130700254-E05 -160713709,87,16028408,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:00:35 PM,03/11/2016 11:01:07 PM,03/11/2016 11:01:21 PM,03/11/2016 11:01:31 PM,03/11/2016 11:15:23 PM,03/11/2016 11:33:28 PM,03/11/2016 11:53:59 PM,Code 2 Transport,03/12/2016 12:22:40 AM,BUSH ST/POLK ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",160713709-87 -121000253,E01,12033193,Alarms,04/09/2012,04/09/2012,04/09/2012 02:50:59 PM,04/09/2012 02:51:44 PM,04/09/2012 02:51:51 PM,04/09/2012 02:53:16 PM,04/09/2012 02:56:04 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 02:57:34 PM,400 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",121000253-E01 -132070270,92,13070153,Medical Incident,07/26/2013,07/26/2013,07/26/2013 05:36:28 PM,07/26/2013 05:37:51 PM,07/26/2013 05:38:07 PM,07/26/2013 05:38:16 PM,07/26/2013 05:40:26 PM,07/26/2013 06:00:20 PM,07/26/2013 06:10:04 PM,Code 2 Transport,07/26/2013 06:25:56 PM,500 Block of DOLORES ST,SF,94114,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7606186794333, -122.426153349478)",132070270-92 -110960292,T17,11031930,Citizen Assist / Service Call,04/06/2011,04/06/2011,04/06/2011 06:23:50 PM,04/06/2011 06:25:24 PM,04/06/2011 06:27:45 PM,04/06/2011 06:28:50 PM,04/06/2011 06:31:04 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Fire,04/06/2011 06:38:26 PM,PALOU AV/LANE ST,SF,94124,B10,17,6551,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7329188959459, -122.389035070659)",110960292-T17 -112700300,T17,11089314,Structure Fire,09/27/2011,09/27/2011,09/27/2011 07:11:30 PM,09/27/2011 07:11:31 PM,09/27/2011 07:11:42 PM,09/27/2011 07:12:44 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Other,09/27/2011 07:15:28 PM,HUDSON AV/ARDATH CT,SF,94124,B10,17,6624,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",112700300-T17 -130920249,82,13030853,Medical Incident,04/02/2013,04/02/2013,04/02/2013 03:33:13 PM,04/02/2013 03:33:20 PM,04/02/2013 03:33:32 PM,04/02/2013 03:33:53 PM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,Other,04/02/2013 03:34:57 PM,700 Block of 7TH AVE,SF,94118,B07,31,7132,2,2,2,true,Potentially Life-Threatening,1,MEDIC,5,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",130920249-82 -160513246,88,16020616,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:46:56 PM,02/20/2016 09:46:56 PM,02/20/2016 09:47:06 PM,02/20/2016 09:47:14 PM,02/20/2016 09:53:53 PM,02/20/2016 10:07:53 PM,02/20/2016 10:18:23 PM,Code 2 Transport,02/20/2016 11:04:28 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160513246-88 -160703537,AM18,16028022,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:32:24 PM,03/10/2016 09:32:57 PM,03/10/2016 09:36:17 PM,03/10/2016 09:36:40 PM,03/10/2016 09:48:26 PM,03/10/2016 09:55:41 PM,03/10/2016 10:25:54 PM,Code 2 Transport,03/10/2016 11:10:37 PM,1000 Block of MUNICH ST,San Francisco,94112,B09,43,6226,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7110552815175, -122.434673347836)",160703537-AM18 -132740018,68,13092961,Medical Incident,10/01/2013,09/30/2013,10/01/2013 01:51:29 AM,10/01/2013 01:52:16 AM,10/01/2013 01:52:27 AM,10/01/2013 01:52:42 AM,10/01/2013 02:07:56 AM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,No Merit,10/01/2013 02:18:45 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",132740018-68 -123420302,E41,12114247,Medical Incident,12/07/2012,12/07/2012,12/07/2012 02:43:43 PM,12/07/2012 02:44:49 PM,12/07/2012 02:45:12 PM,12/07/2012 02:46:58 PM,12/07/2012 02:48:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/07/2012 02:57:48 PM,1100 Block of PACIFIC AVE,SF,94133,B01,41,1511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7960804793064, -122.413832669)",123420302-E41 -131330162,T07,13044836,Gas Leak (Natural and LP Gases),05/13/2013,05/13/2013,05/13/2013 11:35:09 AM,05/13/2013 11:35:58 AM,05/13/2013 11:37:08 AM,05/13/2013 11:37:28 AM,05/13/2013 11:39:00 AM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 12:07:01 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",131330162-T07 -110020127,82,11000613,Medical Incident,01/02/2011,01/02/2011,01/02/2011 10:47:30 AM,01/02/2011 10:49:20 AM,01/02/2011 10:50:07 AM,01/02/2011 10:51:20 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 11:04:43 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,,1,MEDIC,3,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",110020127-82 -160583362,76,16023281,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:31:26 PM,02/27/2016 08:33:18 PM,02/27/2016 08:33:27 PM,02/27/2016 08:33:35 PM,02/27/2016 08:44:29 PM,02/27/2016 08:44:30 PM,02/27/2016 08:47:39 PM,Code 3 Transport,02/27/2016 09:24:16 PM,100 Block of FELL ST,San Francisco,94102,B02,36,3213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.776209592511, -122.420316348058)",160583362-76 -131260069,AM16,13042457,Medical Incident,05/06/2013,05/05/2013,05/06/2013 06:47:54 AM,05/06/2013 06:48:11 AM,05/06/2013 06:48:53 AM,05/06/2013 06:49:32 AM,05/06/2013 06:54:50 AM,05/06/2013 07:16:01 AM,05/06/2013 07:23:28 AM,Code 3 Transport,05/06/2013 08:02:15 AM,400 Block of BENTON AVE,SF,94110,B06,32,5644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7339457026479, -122.418508074397)",131260069-AM16 -133440025,E18,13116540,Medical Incident,12/10/2013,12/09/2013,12/10/2013 02:10:38 AM,12/10/2013 02:11:47 AM,12/10/2013 02:14:04 AM,12/10/2013 02:14:44 AM,12/10/2013 02:20:23 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 02:30:02 AM,2700 Block of 19TH AVE,SF,94132,B08,40,7414,3,3,3,true,Non Life-threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7367464834668, -122.475102318429)",133440025-E18 -130280154,83,13009573,Medical Incident,01/28/2013,01/28/2013,01/28/2013 11:08:25 AM,01/28/2013 11:09:11 AM,01/28/2013 11:09:20 AM,01/28/2013 11:09:29 AM,01/28/2013 11:15:03 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Gone on Arrival,01/28/2013 11:16:39 AM,LAKE MERCED BL/JOHN MUIR DR,SF,,B08,19,8775,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,None,None,None,"(37.7080857299394, -122.485723865524)",130280154-83 -123640235,E23,12121848,Medical Incident,12/29/2012,12/29/2012,12/29/2012 04:05:53 PM,12/29/2012 04:06:30 PM,12/29/2012 04:06:43 PM,12/29/2012 04:07:42 PM,12/29/2012 04:09:37 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/29/2012 04:26:01 PM,1600 Block of 43RD AVE,SF,94122,B08,23,7651,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7558969181132, -122.502315236941)",123640235-E23 -110990187,66,11032879,Medical Incident,04/09/2011,04/09/2011,04/09/2011 01:42:24 PM,04/09/2011 01:46:00 PM,04/09/2011 01:46:12 PM,04/09/2011 01:46:23 PM,04/09/2011 01:52:22 PM,04/09/2011 02:09:42 PM,04/09/2011 02:13:30 PM,Code 3 Transport,04/09/2011 02:43:58 PM,600 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",110990187-66 -103630015,E07,10116315,Alarms,12/29/2010,12/28/2010,12/29/2010 01:16:45 AM,12/29/2010 01:17:57 AM,12/29/2010 01:18:08 AM,12/29/2010 01:21:16 AM,12/29/2010 01:23:06 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/29/2010 01:40:24 AM,0 Block of HOFF ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7641819463712, -122.420575720933)",103630015-E07 -102940168,E10,10093741,Alarms,10/21/2010,10/21/2010,10/21/2010 01:06:25 PM,10/21/2010 01:08:46 PM,10/21/2010 01:09:23 PM,10/21/2010 01:09:47 PM,10/21/2010 01:14:28 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/21/2010 01:39:42 PM,2800 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7931736175933, -122.444028632879)",102940168-E10 -121760146,54,12058469,Traffic Collision,06/24/2012,06/24/2012,06/24/2012 09:29:49 AM,06/24/2012 09:30:14 AM,06/24/2012 09:30:23 AM,04/25/2016 01:58:03 PM,06/24/2012 09:58:28 AM,06/24/2012 10:11:12 AM,06/24/2012 10:23:00 AM,Code 3 Transport,06/24/2012 11:21:14 AM,100 Block of BAY SHORE BLVD,SF,94124,B10,44,6271,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",121760146-54 -160491620,83,16019727,Medical Incident,02/18/2016,02/18/2016,02/18/2016 12:18:45 PM,02/18/2016 12:19:18 PM,02/18/2016 12:19:36 PM,02/18/2016 12:19:44 PM,02/18/2016 12:22:17 PM,02/18/2016 12:41:45 PM,02/18/2016 12:53:23 PM,Code 2 Transport,02/18/2016 01:38:51 PM,2100 Block of POLK ST,San Francisco,94109,B04,41,3126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7964138831057, -122.421932885069)",160491620-83 -160020196,65,16000579,Medical Incident,01/02/2016,01/01/2016,01/02/2016 01:33:46 AM,01/02/2016 01:34:24 AM,01/02/2016 01:35:28 AM,01/02/2016 01:35:59 AM,01/02/2016 01:40:19 AM,01/02/2016 02:06:45 AM,01/02/2016 02:34:01 AM,Code 2 Transport,01/02/2016 02:45:57 AM,2600 Block of FOLSOM ST,San Francisco,94110,B06,7,5473,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7549033596998, -122.414241576689)",160020196-65 -112860296,E16,11094822,Medical Incident,10/13/2011,10/13/2011,10/13/2011 04:01:52 PM,10/13/2011 04:02:35 PM,10/13/2011 04:03:02 PM,10/13/2011 04:04:51 PM,10/13/2011 04:05:48 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 04:15:06 PM,2200 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7994131607449, -122.438492113191)",112860296-E16 -132990346,E09,13101733,Structure Fire,10/26/2013,10/26/2013,10/26/2013 08:31:07 PM,10/26/2013 08:32:42 PM,10/26/2013 08:33:13 PM,10/26/2013 08:34:42 PM,10/26/2013 08:37:22 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/26/2013 08:46:47 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,Alarm,1,ENGINE,3,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",132990346-E09 -130530078,77,13017831,Medical Incident,02/22/2013,02/22/2013,02/22/2013 08:54:23 AM,02/22/2013 08:56:00 AM,02/22/2013 08:56:24 AM,02/22/2013 08:56:47 AM,02/22/2013 09:02:22 AM,02/22/2013 09:29:58 AM,02/22/2013 10:06:24 AM,Code 2 Transport,02/22/2013 10:11:32 AM,100 Block of ULLOA ST,SF,94127,B08,39,8671,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.743942311975, -122.455317853173)",130530078-77 -132380399,68,13080482,Medical Incident,08/26/2013,08/26/2013,08/26/2013 10:40:39 PM,08/26/2013 10:42:09 PM,08/26/2013 10:42:26 PM,08/26/2013 10:43:08 PM,08/26/2013 10:51:20 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 11:06:51 PM,700 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",132380399-68 -111920357,E03,11063525,Medical Incident,07/11/2011,07/11/2011,07/11/2011 08:08:22 PM,07/11/2011 08:09:44 PM,07/11/2011 08:09:58 PM,07/11/2011 08:11:32 PM,07/11/2011 08:13:05 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Patient Declined Transport,07/11/2011 08:14:34 PM,GEARY ST/HYDE ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7863102173267, -122.416449125138)",111920357-E03 -132410003,88,13081135,Medical Incident,08/29/2013,08/28/2013,08/29/2013 12:05:13 AM,08/29/2013 12:05:50 AM,08/29/2013 12:06:02 AM,08/29/2013 12:06:08 AM,08/29/2013 12:08:56 AM,08/29/2013 12:39:02 AM,08/29/2013 12:43:40 AM,Code 2 Transport,08/29/2013 01:06:38 AM,700 Block of 25TH AVE,SF,94121,B07,14,7212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7753725574025, -122.484324208009)",132410003-88 -121310085,KM05,12043496,Medical Incident,05/10/2012,05/10/2012,05/10/2012 09:14:32 AM,05/10/2012 09:15:18 AM,05/10/2012 09:16:57 AM,05/10/2012 09:17:45 AM,05/10/2012 09:28:27 AM,05/10/2012 09:40:08 AM,05/10/2012 09:55:00 AM,Code 2 Transport,05/10/2012 10:23:48 AM,1200 Block of NOE ST,SF,94114,B06,11,554,3,1,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7494248005842, -122.43174723)",121310085-KM05 -160832384,59,16033006,Medical Incident,03/23/2016,03/23/2016,03/23/2016 02:53:27 PM,03/23/2016 02:54:59 PM,03/23/2016 02:55:22 PM,03/23/2016 02:56:30 PM,03/23/2016 03:02:50 PM,03/23/2016 03:09:23 PM,03/23/2016 03:25:04 PM,Code 2 Transport,03/23/2016 04:08:02 PM,1100 Block of LAGUNA ST,San Francisco,94115,B02,5,3366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7818107490445, -122.427415796369)",160832384-59 -160843538,63,16033524,Medical Incident,03/24/2016,03/24/2016,03/24/2016 07:09:30 PM,03/24/2016 07:10:53 PM,03/24/2016 07:16:49 PM,03/24/2016 07:17:02 PM,03/24/2016 07:31:52 PM,03/24/2016 07:38:09 PM,03/24/2016 08:05:52 PM,Code 2 Transport,03/24/2016 08:34:02 PM,COLE ST/HAYES ST,San Francisco,94117,B05,21,4535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7733156442098, -122.450973753886)",160843538-63 -160130517,AM02,16005069,Medical Incident,01/13/2016,01/12/2016,01/13/2016 06:44:47 AM,01/13/2016 06:46:43 AM,01/13/2016 06:47:15 AM,01/13/2016 06:47:57 AM,01/13/2016 07:14:51 AM,01/13/2016 07:14:52 AM,01/13/2016 07:29:55 AM,Code 2 Transport,01/13/2016 07:57:29 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160130517-AM02 -160391303,50,16015569,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:53:41 AM,02/08/2016 10:54:27 AM,02/08/2016 10:56:14 AM,02/08/2016 10:56:20 AM,02/08/2016 10:58:14 AM,02/08/2016 11:25:32 AM,02/08/2016 11:34:17 AM,Code 2 Transport,02/08/2016 01:01:22 PM,4400 Block of MISSION ST,San Francisco,94112,B09,32,6113,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7273796970352, -122.432642958112)",160391303-50 -160801657,75,16031799,Medical Incident,03/20/2016,03/20/2016,03/20/2016 12:51:01 PM,03/20/2016 12:51:30 PM,03/20/2016 12:51:52 PM,03/20/2016 12:52:03 PM,03/20/2016 12:54:53 PM,03/20/2016 01:10:38 PM,03/20/2016 01:24:03 PM,Code 2 Transport,03/20/2016 01:55:53 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160801657-75 -112630442,E03,11087046,Citizen Assist / Service Call,09/20/2011,09/20/2011,09/20/2011 11:53:16 PM,09/20/2011 11:59:00 PM,09/20/2011 11:59:21 PM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/21/2011 12:17:31 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",112630442-E03 -120720329,E07,12024032,Outside Fire,03/12/2012,03/12/2012,03/12/2012 07:50:45 PM,03/12/2012 07:51:44 PM,03/12/2012 07:51:58 PM,03/12/2012 07:53:00 PM,03/12/2012 07:54:51 PM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,Other,03/12/2012 07:57:35 PM,MISSION ST/22ND ST,SF,94110,B06,7,5472,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",120720329-E07 -121640385,92,12054568,Medical Incident,06/12/2012,06/12/2012,06/12/2012 11:02:53 PM,06/12/2012 11:04:36 PM,06/12/2012 11:08:58 PM,06/12/2012 11:09:24 PM,06/12/2012 11:23:59 PM,06/12/2012 11:49:49 PM,06/13/2012 12:01:10 AM,Code 2 Transport,06/13/2012 12:29:29 AM,500 Block of GARFIELD ST,SF,94132,B09,33,8432,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7196137829207, -122.467601819004)",121640385-92 -160233301,KM07,16009309,Medical Incident,01/23/2016,01/23/2016,01/23/2016 08:19:41 PM,01/23/2016 08:19:58 PM,01/23/2016 08:20:33 PM,01/23/2016 08:21:53 PM,01/23/2016 08:25:09 PM,01/23/2016 08:37:24 PM,01/23/2016 08:57:57 PM,Code 2 Transport,01/23/2016 09:21:59 PM,OFARRELL ST/LARKIN ST,San Francisco,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7851672146987, -122.41790141136)",160233301-KM07 -110510317,E02,11017002,Medical Incident,02/20/2011,02/20/2011,02/20/2011 06:33:33 PM,02/20/2011 06:33:56 PM,02/20/2011 06:34:17 PM,02/20/2011 06:35:15 PM,02/20/2011 06:37:03 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 07:03:17 PM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",110510317-E02 -121110105,T15,12036660,Other,04/20/2012,04/20/2012,04/20/2012 09:05:21 AM,04/20/2012 09:05:52 AM,04/20/2012 09:06:00 AM,04/20/2012 09:09:21 AM,04/20/2012 09:18:21 AM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 09:26:02 AM,200 Block of JUANITA WAY,SF,94127,B09,39,8672,3,3,3,false,Alarm,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7395764944697, -122.457869006822)",121110105-T15 -140430029,KM15,14014487,Medical Incident,02/12/2014,02/11/2014,02/12/2014 02:47:41 AM,02/12/2014 02:48:40 AM,02/12/2014 02:49:53 AM,02/12/2014 02:50:43 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/12/2014 03:07:15 AM,200 Block of BAY SHORE BLVD,SF,94124,B10,9,6376,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7442404121423, -122.40429562467)",140430029-KM15 -112260157,D2,11074653,Structure Fire,08/14/2011,08/14/2011,08/14/2011 12:57:27 PM,08/14/2011 01:02:43 PM,08/14/2011 01:03:06 PM,08/14/2011 01:03:46 PM,08/14/2011 01:07:14 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 01:18:39 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,,1,CHIEF,7,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",112260157-D2 -123240374,T15,12107893,Alarms,11/19/2012,11/19/2012,11/19/2012 08:57:46 PM,11/19/2012 08:58:49 PM,11/19/2012 08:59:01 PM,11/19/2012 09:00:47 PM,11/19/2012 09:06:28 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/19/2012 09:10:25 PM,0 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,false,Alarm,1,TRUCK,3,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",123240374-T15 -160692444,KM08,16027538,Medical Incident,03/09/2016,03/09/2016,03/09/2016 03:52:36 PM,03/09/2016 03:53:42 PM,03/09/2016 03:53:56 PM,03/09/2016 03:54:28 PM,03/09/2016 04:01:54 PM,03/09/2016 04:11:32 PM,03/09/2016 04:43:04 PM,Code 2 Transport,03/09/2016 05:02:10 PM,20TH ST/BRYANT ST,San Francisco,94110,B06,7,5451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7591940102579, -122.409770123675)",160692444-KM08 -123520125,AM06,12117696,Medical Incident,12/17/2012,12/17/2012,12/17/2012 10:07:05 AM,12/17/2012 10:08:51 AM,12/17/2012 10:09:13 AM,12/17/2012 10:09:53 AM,12/17/2012 10:15:37 AM,12/17/2012 10:29:32 AM,12/17/2012 10:53:51 AM,Code 2 Transport,12/17/2012 11:20:22 AM,TEHAMA ST/2ND ST,SF,94105,B03,1,2146,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7863386154364, -122.39770448764)",123520125-AM06 -110940387,86,11031382,Traffic Collision,04/04/2011,04/04/2011,04/04/2011 10:30:20 PM,04/04/2011 10:31:22 PM,04/04/2011 10:31:34 PM,04/04/2011 10:31:43 PM,04/04/2011 10:45:27 PM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,Against Medical Advice,04/04/2011 10:59:22 PM,HAIGHT ST/BRODERICK ST,SF,94117,B05,21,4246,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7710564942104, -122.438709122602)",110940387-86 -131980192,T06,13067150,Alarms,07/17/2013,07/17/2013,07/17/2013 02:15:59 PM,07/17/2013 02:17:02 PM,07/17/2013 02:17:06 PM,07/17/2013 02:18:18 PM,07/17/2013 02:19:55 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/17/2013 02:28:33 PM,600 Block of HAIGHT ST,SF,94117,B05,6,3633,3,3,3,false,Alarm,1,TRUCK,1,5,5,Haight Ashbury,"(37.7717385379256, -122.432902586218)",131980192-T06 -111200182,E23,11039581,Medical Incident,04/30/2011,04/30/2011,04/30/2011 12:41:22 PM,04/30/2011 12:42:03 PM,04/30/2011 12:42:17 PM,04/30/2011 12:43:01 PM,04/30/2011 12:45:07 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 01:02:36 PM,1800 Block of 45TH AVE,SF,94122,B08,23,7662,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7520806920335, -122.504199266238)",111200182-E23 -123530165,E29,12118081,Medical Incident,12/18/2012,12/18/2012,12/18/2012 11:52:03 AM,12/18/2012 11:54:34 AM,12/18/2012 11:55:08 AM,12/18/2012 11:56:18 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 11:58:48 AM,1300 Block of MISSION ST,SF,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,2,6,South of Market,"(37.7757873707648, -122.41535521839)",123530165-E29 -120790005,84,12026085,Medical Incident,03/19/2012,03/18/2012,03/19/2012 12:44:30 AM,03/19/2012 12:45:24 AM,03/19/2012 12:45:44 AM,03/19/2012 12:46:09 AM,03/19/2012 12:50:42 AM,03/19/2012 01:01:23 AM,03/19/2012 01:14:31 AM,Code 2 Transport,03/19/2012 01:42:35 AM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",120790005-84 -120910381,55,12030307,Medical Incident,03/31/2012,03/31/2012,03/31/2012 11:40:50 PM,03/31/2012 11:43:43 PM,03/31/2012 11:47:15 PM,03/31/2012 11:47:29 PM,04/01/2012 12:17:43 AM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,No Merit,04/01/2012 12:21:41 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",120910381-55 -112570055,AM16,11084642,Medical Incident,09/14/2011,09/13/2011,09/14/2011 07:37:29 AM,09/14/2011 07:38:59 AM,09/14/2011 07:39:18 AM,09/14/2011 07:39:57 AM,09/14/2011 07:49:40 AM,09/14/2011 08:03:33 AM,09/14/2011 08:09:40 AM,Code 2 Transport,09/14/2011 08:44:39 AM,1300 Block of FLORIDA ST,SF,94110,B06,9,5615,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7503405358981, -122.409907058485)",112570055-AM16 -102480033,63,10078237,Medical Incident,09/05/2010,09/04/2010,09/05/2010 02:09:48 AM,09/05/2010 02:10:44 AM,09/05/2010 02:11:09 AM,09/05/2010 02:11:23 AM,09/05/2010 02:20:46 AM,09/05/2010 02:36:57 AM,09/05/2010 02:47:30 AM,Code 2 Transport,09/05/2010 03:16:26 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",102480033-63 -110060096,T07,11001907,Alarms,01/06/2011,01/06/2011,01/06/2011 08:32:26 AM,01/06/2011 08:33:26 AM,01/06/2011 08:33:32 AM,01/06/2011 08:35:14 AM,01/06/2011 08:40:47 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 09:38:20 AM,100 Block of OTIS ST,SF,94103,B02,36,5125,3,3,3,false,,1,TRUCK,3,2,6,Mission,"(37.7709133372974, -122.420304994325)",110060096-T07 -121460291,RC3,12048564,Traffic Collision,05/25/2012,05/25/2012,05/25/2012 07:06:41 PM,05/25/2012 07:07:50 PM,05/25/2012 07:08:17 PM,04/25/2016 01:58:31 PM,05/25/2012 07:09:58 PM,05/25/2012 07:36:55 PM,05/25/2012 07:36:59 PM,Other,05/25/2012 07:48:10 PM,CESAR CHAVEZ ST/DOLORES ST,SF,94110,B06,11,5556,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,6,8,Noe Valley,"(37.7478303051898, -122.424768281488)",121460291-RC3 -102430014,86,10076504,Medical Incident,08/31/2010,08/30/2010,08/31/2010 12:49:09 AM,08/31/2010 12:50:39 AM,08/31/2010 12:53:03 AM,08/31/2010 12:55:46 AM,08/31/2010 12:57:19 AM,08/31/2010 01:22:28 AM,08/31/2010 01:31:43 AM,Other,08/31/2010 02:16:38 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,3,3,3,true,,1,MEDIC,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",102430014-86 -133150097,E38,13106995,Odor (Strange / Unknown),11/11/2013,11/11/2013,11/11/2013 08:00:43 AM,11/11/2013 08:01:49 AM,11/11/2013 08:02:09 AM,11/11/2013 08:03:57 AM,11/11/2013 08:06:13 AM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,No Merit,11/11/2013 08:06:54 AM,WASHINGTON ST/FILLMORE ST,SF,94115,B04,38,3545,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7915916498341, -122.434380485478)",133150097-E38 -110570103,E19,11018694,Structure Fire,02/26/2011,02/25/2011,02/26/2011 07:49:08 AM,02/26/2011 07:51:30 AM,02/26/2011 07:51:46 AM,02/26/2011 07:54:01 AM,02/26/2011 07:55:38 AM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/26/2011 08:19:51 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",110570103-E19 -120060105,60,12002010,Medical Incident,01/06/2012,01/06/2012,01/06/2012 08:59:22 AM,01/06/2012 09:00:28 AM,01/06/2012 09:01:12 AM,01/06/2012 09:01:24 AM,01/06/2012 09:06:45 AM,01/06/2012 09:23:46 AM,01/06/2012 09:45:57 AM,Code 2 Transport,01/06/2012 10:05:42 AM,200 Block of CONCORD ST,SF,94112,B09,43,6231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.709970591489, -122.441825595194)",120060105-60 -160830749,74,16032861,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:13:22 AM,03/23/2016 08:14:43 AM,03/23/2016 08:15:35 AM,03/23/2016 08:15:43 AM,03/23/2016 08:18:41 AM,03/23/2016 08:50:23 AM,03/23/2016 09:03:58 AM,Code 2 Transport,03/23/2016 10:06:49 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160830749-74 -123250077,87,12107995,Medical Incident,11/20/2012,11/19/2012,11/20/2012 07:43:06 AM,11/20/2012 07:46:08 AM,11/20/2012 07:46:20 AM,11/20/2012 07:47:07 AM,11/20/2012 07:49:13 AM,11/20/2012 08:05:56 AM,04/25/2016 01:55:43 PM,Code 2 Transport,11/20/2012 11:20:46 AM,0 Block of NANTUCKET AVE,SF,94112,B09,15,8266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7282735423755, -122.441361768718)",123250077-87 -123390187,E41,12113056,Alarms,12/04/2012,12/04/2012,12/04/2012 01:00:51 PM,12/04/2012 01:01:58 PM,12/04/2012 01:02:17 PM,12/04/2012 01:03:58 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 01:07:41 PM,500 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,false,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7833590026921, -122.416694944048)",123390187-E41 -160150222,78,16005817,Medical Incident,01/15/2016,01/14/2016,01/15/2016 01:36:42 AM,01/15/2016 01:37:16 AM,01/15/2016 01:37:51 AM,01/15/2016 01:38:13 AM,01/15/2016 01:42:56 AM,01/15/2016 02:11:05 AM,01/15/2016 02:27:39 AM,Code 2 Transport,01/15/2016 03:10:05 AM,HAIGHT ST/COLE ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",160150222-78 -111060071,E01,11034990,Medical Incident,04/16/2011,04/15/2011,04/16/2011 06:40:15 AM,04/16/2011 06:41:52 AM,04/16/2011 06:42:03 AM,04/16/2011 06:42:59 AM,04/16/2011 06:45:36 AM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/16/2011 06:48:32 AM,STEVENSON ST/6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7817543267261, -122.409693263148)",111060071-E01 -103640246,T15,10116818,Medical Incident,12/30/2010,12/30/2010,12/30/2010 03:52:15 PM,12/30/2010 03:53:55 PM,12/30/2010 03:54:57 PM,12/30/2010 03:55:31 PM,12/30/2010 03:58:44 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/30/2010 04:14:44 PM,700 Block of DELANO AVE,SF,94112,B09,15,833,3,3,3,false,,1,TRUCK,1,9,11,Outer Mission,"(37.7197751526902, -122.445244277465)",103640246-T15 -160493083,67,16019832,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:20:01 PM,02/18/2016 06:21:16 PM,02/18/2016 06:21:54 PM,02/18/2016 06:21:58 PM,02/18/2016 06:31:57 PM,02/18/2016 06:43:28 PM,02/18/2016 06:48:48 PM,Code 2 Transport,02/18/2016 07:00:20 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160493083-67 -160240439,70,16009418,Medical Incident,01/24/2016,01/23/2016,01/24/2016 03:09:26 AM,01/24/2016 03:10:42 AM,01/24/2016 03:11:07 AM,01/24/2016 03:11:43 AM,01/24/2016 03:18:35 AM,01/24/2016 03:33:27 AM,01/24/2016 03:41:37 AM,Code 3 Transport,01/24/2016 03:52:48 AM,100 Block of ATOLL CIR,San Francisco,94124,B10,17,6665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7283734093401, -122.373093223305)",160240439-70 -111650355,E29,11054580,Medical Incident,06/14/2011,06/14/2011,06/14/2011 08:24:29 PM,06/14/2011 08:25:31 PM,06/14/2011 08:26:36 PM,06/14/2011 08:28:42 PM,06/14/2011 08:31:03 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/14/2011 08:57:57 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111650355-E29 -160060498,79,16002275,Medical Incident,01/06/2016,01/05/2016,01/06/2016 06:46:45 AM,01/06/2016 06:46:45 AM,01/06/2016 06:47:05 AM,01/06/2016 06:47:09 AM,01/06/2016 06:50:45 AM,01/06/2016 07:05:32 AM,01/06/2016 07:11:45 AM,Code 2 Transport,01/06/2016 07:24:49 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160060498-79 -111020016,E01,11033694,Structure Fire,04/12/2011,04/11/2011,04/12/2011 01:30:13 AM,04/12/2011 01:30:14 AM,04/12/2011 01:31:30 AM,04/12/2011 01:32:28 AM,04/12/2011 01:34:35 AM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/12/2011 01:35:16 AM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",111020016-E01 -130470300,AM02,13016096,Medical Incident,02/16/2013,02/16/2013,02/16/2013 04:24:24 PM,02/16/2013 04:24:47 PM,02/16/2013 04:27:42 PM,02/16/2013 04:28:09 PM,02/16/2013 04:30:34 PM,02/16/2013 04:41:03 PM,02/16/2013 05:10:20 PM,Code 2 Transport,02/16/2013 05:15:33 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",130470300-AM02 -111540060,E07,11050781,Medical Incident,06/03/2011,06/02/2011,06/03/2011 07:06:02 AM,06/03/2011 07:06:34 AM,06/03/2011 07:06:53 AM,06/03/2011 07:08:11 AM,06/03/2011 07:10:22 AM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/03/2011 07:12:52 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",111540060-E07 -110020232,E05,11000708,Medical Incident,01/02/2011,01/02/2011,01/02/2011 04:32:12 PM,01/02/2011 04:32:44 PM,01/02/2011 04:32:57 PM,01/02/2011 04:35:48 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/02/2011 04:38:34 PM,1800 Block of CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,true,,1,ENGINE,3,4,2,Western Addition,"(37.7900019443199, -122.424784565831)",110020232-E05 -123070266,58,12102080,Medical Incident,11/02/2012,11/02/2012,11/02/2012 04:21:23 PM,11/02/2012 04:23:18 PM,11/02/2012 04:23:58 PM,11/02/2012 04:26:19 PM,11/02/2012 04:28:22 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Other,11/02/2012 04:37:38 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",123070266-58 -112260045,89,11074559,Medical Incident,08/14/2011,08/13/2011,08/14/2011 03:13:25 AM,08/14/2011 03:14:41 AM,08/14/2011 03:16:00 AM,08/14/2011 03:16:05 AM,08/14/2011 03:27:23 AM,08/14/2011 03:40:20 AM,08/14/2011 03:58:37 AM,Code 2 Transport,08/14/2011 04:23:28 AM,1500 Block of NEWHALL ST,SF,94124,B10,17,6471,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7347575593913, -122.393114279913)",112260045-89 -131050026,B10,13035142,Medical Incident,04/15/2013,04/14/2013,04/15/2013 02:24:07 AM,04/15/2013 02:24:08 AM,04/15/2013 02:24:24 AM,04/15/2013 02:27:01 AM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 02:31:46 AM,0 Block of REUEL CT,SF,94124,B10,25,652,E,E,3,false,Potentially Life-Threatening,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",131050026-B10 -160852508,66,16033847,Medical Incident,03/25/2016,03/25/2016,03/25/2016 03:59:30 PM,03/25/2016 04:01:44 PM,03/25/2016 04:02:12 PM,03/25/2016 04:03:13 PM,03/25/2016 04:08:10 PM,03/25/2016 04:17:15 PM,03/25/2016 04:32:43 PM,Code 3 Transport,03/25/2016 05:02:33 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,2,3,3,true,Non Life-threatening,1,MEDIC,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",160852508-66 -121300213,D2,12043284,Structure Fire,05/09/2012,05/09/2012,05/09/2012 02:42:47 PM,05/09/2012 02:43:23 PM,05/09/2012 02:43:35 PM,05/09/2012 02:43:50 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Other,05/09/2012 02:50:02 PM,KIRKHAM ST/10TH AV,SF,94122,B08,22,7344,3,3,3,false,Fire,1,CHIEF,7,8,7,Inner Sunset,"(37.7602645629643, -122.467121689637)",121300213-D2 -122580236,E28,12085328,Medical Incident,09/14/2012,09/14/2012,09/14/2012 04:17:22 PM,09/14/2012 04:17:46 PM,09/14/2012 04:17:58 PM,09/14/2012 04:19:30 PM,09/14/2012 04:22:05 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/14/2012 04:30:31 PM,TAYLOR ST/JEFFERSON ST,SF,94133,B01,28,945,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.808214052974, -122.41580242723)",122580236-E28 -112690389,KM07,11089079,Medical Incident,09/26/2011,09/26/2011,09/26/2011 11:49:26 PM,09/26/2011 11:50:44 PM,09/26/2011 11:51:17 PM,09/26/2011 11:52:29 PM,09/26/2011 11:56:58 PM,09/27/2011 12:06:40 AM,09/27/2011 12:25:49 AM,Code 2 Transport,09/27/2011 12:59:05 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",112690389-KM07 -113310229,AM18,11109752,Medical Incident,11/27/2011,11/27/2011,11/27/2011 05:59:04 PM,11/27/2011 05:59:46 PM,11/27/2011 06:00:22 PM,11/27/2011 06:01:16 PM,11/27/2011 06:04:52 PM,11/27/2011 06:21:36 PM,11/27/2011 06:29:14 PM,Code 2 Transport,11/27/2011 07:19:05 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",113310229-AM18 -160592533,KM01,16023616,Medical Incident,02/28/2016,02/28/2016,02/28/2016 05:51:50 PM,02/28/2016 05:53:23 PM,02/28/2016 05:53:49 PM,02/28/2016 05:55:07 PM,02/28/2016 06:03:11 PM,02/28/2016 06:25:56 PM,02/28/2016 06:59:08 PM,Code 2 Transport,02/28/2016 07:29:00 PM,2200 Block of 47TH AV,San Francisco,94116,B08,23,7713,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7445292906958, -122.505821929462)",160592533-KM01 -160111673,55,16004395,Medical Incident,01/11/2016,01/11/2016,01/11/2016 01:04:10 PM,01/11/2016 01:06:01 PM,01/11/2016 01:06:17 PM,01/11/2016 01:06:24 PM,01/11/2016 01:14:24 PM,01/11/2016 01:48:04 PM,01/11/2016 02:09:06 PM,Code 2 Transport,01/11/2016 02:59:48 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160111673-55 -120780328,KM02,12025996,Medical Incident,03/18/2012,03/18/2012,03/18/2012 06:44:28 PM,03/18/2012 06:46:01 PM,03/18/2012 06:46:47 PM,03/18/2012 06:47:18 PM,03/18/2012 06:56:49 PM,03/18/2012 07:17:37 PM,03/18/2012 07:28:49 PM,Code 2 Transport,03/18/2012 07:47:40 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120780328-KM02 -160091124,86,16003596,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:33:23 AM,01/09/2016 10:33:38 AM,01/09/2016 10:36:12 AM,01/09/2016 10:36:19 AM,01/09/2016 10:39:44 AM,01/09/2016 11:18:09 AM,01/09/2016 11:18:10 AM,Code 2 Transport,01/09/2016 11:46:34 AM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7546325890357, -122.41873973942)",160091124-86 -122150071,65,12071268,Traffic Collision,08/02/2012,08/02/2012,08/02/2012 08:16:32 AM,08/02/2012 08:16:50 AM,08/02/2012 08:17:37 AM,08/02/2012 08:18:06 AM,08/02/2012 08:25:07 AM,08/02/2012 08:44:28 AM,08/02/2012 08:54:12 AM,Code 2 Transport,08/02/2012 09:24:04 AM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7732232142847, -122.402889298062)",122150071-65 -110480314,T13,11015975,Structure Fire,02/17/2011,02/17/2011,02/17/2011 06:50:58 PM,02/17/2011 06:51:54 PM,02/17/2011 06:52:26 PM,02/17/2011 06:53:42 PM,02/17/2011 06:56:01 PM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 07:17:04 PM,300 Block of MAIN ST,SF,94105,B03,35,2117,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",110480314-T13 -110950311,E13,11031656,Structure Fire,04/05/2011,04/05/2011,04/05/2011 08:52:08 PM,04/05/2011 08:53:09 PM,04/05/2011 08:53:54 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,Other,04/06/2011 12:06:16 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,3,ENGINE,48,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",110950311-E13 -122880161,E12,12095264,Traffic Collision,10/14/2012,10/14/2012,10/14/2012 12:16:44 PM,10/14/2012 12:16:44 PM,10/14/2012 12:17:02 PM,10/14/2012 12:17:33 PM,10/14/2012 12:21:08 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 12:35:52 PM,OAK ST/SHRADER ST,SF,94117,B05,12,4544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7712298276373, -122.452241777167)",122880161-E12 -111990064,58,11065553,Medical Incident,07/18/2011,07/17/2011,07/18/2011 07:52:31 AM,07/18/2011 07:53:52 AM,07/18/2011 07:54:45 AM,07/18/2011 07:54:57 AM,07/18/2011 07:58:09 AM,07/18/2011 08:12:14 AM,07/18/2011 08:27:21 AM,Code 2 Transport,07/18/2011 09:06:21 AM,1ST ST/HARRISON ST,SF,94105,B03,35,2136,3,3,3,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860675314585, -122.392936686281)",111990064-58 -160813168,61,16032314,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:40:40 PM,03/21/2016 06:40:40 PM,03/21/2016 06:40:57 PM,03/21/2016 06:41:08 PM,03/21/2016 06:54:19 PM,03/21/2016 07:03:07 PM,03/21/2016 07:20:39 PM,Code 2 Transport,03/21/2016 07:52:26 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160813168-61 -111120380,59,11037173,Medical Incident,04/22/2011,04/22/2011,04/22/2011 10:40:11 PM,04/22/2011 10:40:43 PM,04/22/2011 10:41:44 PM,04/22/2011 10:42:04 PM,04/22/2011 10:54:41 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,No Merit,04/22/2011 11:05:08 PM,300 Block of MOSCOW ST,SF,94112,B09,43,6155,2,2,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7220697351307, -122.427115807241)",111120380-59 -160291589,55,16011434,Medical Incident,01/29/2016,01/29/2016,01/29/2016 12:29:49 PM,01/29/2016 12:31:22 PM,01/29/2016 12:33:31 PM,01/29/2016 12:33:41 PM,01/29/2016 12:57:23 PM,01/29/2016 01:24:16 PM,01/29/2016 01:50:03 PM,Code 2 Transport,01/29/2016 02:33:04 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160291589-55 -130550332,84,13018699,Medical Incident,02/24/2013,02/24/2013,02/24/2013 09:51:17 PM,02/24/2013 09:52:46 PM,02/24/2013 09:55:23 PM,02/24/2013 09:56:03 PM,02/24/2013 10:04:07 PM,02/24/2013 10:23:27 PM,04/25/2016 01:54:08 PM,Code 2 Transport,02/24/2013 10:54:24 PM,GOLDEN GATE AV/GOUGH ST,SF,94102,B02,5,3263,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.780611620733, -122.423730984614)",130550332-84 -113230106,T08,11107240,Structure Fire,11/19/2011,11/19/2011,11/19/2011 08:56:29 AM,11/19/2011 08:56:29 AM,11/19/2011 08:57:57 AM,11/19/2011 09:00:13 AM,11/19/2011 09:02:37 AM,04/25/2016 02:01:34 PM,04/25/2016 02:01:34 PM,Other,11/19/2011 09:04:23 AM,6TH ST/BRYANT ST,SF,94107,B03,8,2255,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7760393195221, -122.402524096783)",113230106-T08 -131530045,E01,13051714,Medical Incident,06/02/2013,06/01/2013,06/02/2013 03:34:12 AM,06/02/2013 03:35:16 AM,06/02/2013 03:37:33 AM,06/02/2013 03:38:30 AM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/02/2013 03:38:36 AM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",131530045-E01 -122350219,KM11,12077902,Medical Incident,08/22/2012,08/22/2012,08/22/2012 03:53:42 PM,08/22/2012 03:55:13 PM,08/22/2012 03:57:51 PM,08/22/2012 03:58:31 PM,08/22/2012 04:15:59 PM,08/22/2012 04:16:05 PM,08/22/2012 04:52:05 PM,Code 2 Transport,08/22/2012 05:02:58 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",122350219-KM11 -122050088,E36,12068093,Medical Incident,07/23/2012,07/23/2012,07/23/2012 08:40:47 AM,07/23/2012 08:41:08 AM,07/23/2012 08:41:53 AM,07/23/2012 08:43:42 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/23/2012 09:36:30 AM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7773515638882, -122.418857320448)",122050088-E36 -160233106,KM11,16009290,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:20:19 PM,01/23/2016 07:22:01 PM,01/23/2016 07:22:22 PM,01/23/2016 07:23:00 PM,01/23/2016 07:25:59 PM,01/23/2016 07:50:45 PM,01/23/2016 08:04:45 PM,Code 2 Transport,01/23/2016 08:34:40 PM,700 Block of EDDY ST,San Francisco,94102,B02,3,3163,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",160233106-KM11 -133240051,E14,13109906,Alarms,11/20/2013,11/19/2013,11/20/2013 05:29:46 AM,11/20/2013 05:30:21 AM,11/20/2013 05:31:16 AM,11/20/2013 05:32:59 AM,11/20/2013 05:35:18 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 05:42:30 AM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",133240051-E14 -160443225,KM07,16017839,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:10:35 PM,02/13/2016 08:11:19 PM,02/13/2016 08:11:36 PM,02/13/2016 08:12:02 PM,02/13/2016 08:16:09 PM,02/13/2016 08:37:05 PM,02/13/2016 09:08:29 PM,Code 2 Transport,02/13/2016 09:16:51 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160443225-KM07 -131750164,E05,13059357,Medical Incident,06/24/2013,06/24/2013,06/24/2013 12:14:52 PM,06/24/2013 12:15:32 PM,06/24/2013 12:15:47 PM,06/24/2013 12:16:34 PM,06/24/2013 12:18:30 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 12:21:02 PM,EDDY ST/POLK ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",131750164-E05 -160412292,56,16016503,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:08:14 PM,02/10/2016 03:09:28 PM,02/10/2016 03:10:04 PM,02/10/2016 03:10:40 PM,02/10/2016 03:17:01 PM,02/10/2016 03:34:58 PM,02/10/2016 04:00:24 PM,Code 2 Transport,02/10/2016 04:51:16 PM,MONTGOMERY ST/BUSH ST,San Francisco,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",160412292-56 -122280119,60,12075500,Medical Incident,08/15/2012,08/15/2012,08/15/2012 10:12:20 AM,08/15/2012 10:13:22 AM,08/15/2012 10:13:48 AM,08/15/2012 10:14:01 AM,08/15/2012 10:17:59 AM,08/15/2012 10:36:51 AM,08/15/2012 10:50:16 AM,Code 2 Transport,08/15/2012 11:06:28 AM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,false,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",122280119-60 -160811162,KM05,16032118,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:24:29 AM,03/21/2016 10:24:29 AM,03/21/2016 10:25:06 AM,03/21/2016 10:26:19 AM,03/21/2016 10:32:55 AM,03/21/2016 10:37:23 AM,03/21/2016 10:55:38 AM,Code 2 Transport,03/21/2016 11:40:19 AM,400 Block of DE HARO ST,San Francisco,94107,B02,29,2413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Potrero Hill,"(37.7641962628257, -122.40160796921)",160811162-KM05 -130320100,KM14,13010851,Medical Incident,02/01/2013,02/01/2013,02/01/2013 09:46:19 AM,02/01/2013 09:47:21 AM,02/01/2013 09:47:54 AM,02/01/2013 09:48:37 AM,02/01/2013 09:52:33 AM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,02/01/2013 09:53:28 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",130320100-KM14 -112490252,T03,11082179,Structure Fire,09/06/2011,09/06/2011,09/06/2011 03:20:44 PM,09/06/2011 03:21:24 PM,09/06/2011 03:22:05 PM,09/06/2011 03:22:57 PM,09/06/2011 03:24:18 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 03:55:13 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,TRUCK,2,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",112490252-T03 -110270295,B06,11008971,Structure Fire,01/27/2011,01/27/2011,01/27/2011 04:43:50 PM,01/27/2011 04:45:15 PM,01/27/2011 04:46:01 PM,01/27/2011 04:48:03 PM,01/27/2011 04:54:21 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 05:04:17 PM,300 Block of BRIDGEVIEW DR,SF,94124,B10,42,6447,3,3,3,false,,1,CHIEF,6,10,10,Bayview Hunters Point,"(37.7325995787535, -122.398677012353)",110270295-B06 -160051643,KM02,16001992,Medical Incident,01/05/2016,01/05/2016,01/05/2016 12:37:29 PM,01/05/2016 12:39:35 PM,01/05/2016 12:40:37 PM,01/05/2016 12:41:18 PM,01/05/2016 12:54:46 PM,01/05/2016 01:17:17 PM,01/05/2016 01:47:38 PM,Code 2 Transport,01/05/2016 02:21:24 PM,700 Block of DELANO AVE,San Francisco,94112,B09,15,833,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7198237591639, -122.445368299303)",160051643-KM02 -160210453,67,16008249,Medical Incident,01/21/2016,01/20/2016,01/21/2016 05:14:26 AM,01/21/2016 05:19:09 AM,01/21/2016 05:20:33 AM,01/21/2016 05:20:40 AM,01/21/2016 05:32:28 AM,01/21/2016 06:02:06 AM,01/21/2016 06:09:33 AM,Code 2 Transport,01/21/2016 07:10:32 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160210453-67 -132090211,67,13070708,Medical Incident,07/28/2013,07/28/2013,07/28/2013 02:04:11 PM,07/28/2013 02:05:23 PM,07/28/2013 02:09:43 PM,07/28/2013 02:09:59 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 02:15:26 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132090211-67 -140570058,E01,14019121,Medical Incident,02/26/2014,02/25/2014,02/26/2014 05:12:53 AM,02/26/2014 05:14:57 AM,02/26/2014 05:15:03 AM,02/26/2014 05:17:00 AM,02/26/2014 05:20:37 AM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,No Merit,02/26/2014 05:30:02 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",140570058-E01 -111820042,T18,11059953,Structure Fire,07/01/2011,06/30/2011,07/01/2011 04:47:24 AM,07/01/2011 04:47:24 AM,07/01/2011 04:47:35 AM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,Other,07/01/2011 04:49:59 AM,17TH AV/RIVERA ST,SF,94116,B08,40,7375,3,3,3,false,,1,TRUCK,2,8,7,West of Twin Peaks,"(37.7468740848656, -122.473816078327)",111820042-T18 -133210236,KM04,13109093,Medical Incident,11/17/2013,11/17/2013,11/17/2013 04:18:39 PM,11/17/2013 04:19:47 PM,11/17/2013 04:20:08 PM,11/17/2013 04:20:33 PM,11/17/2013 04:24:17 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Patient Declined Transport,11/17/2013 05:01:33 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",133210236-KM04 -120850016,84,12028095,Structure Fire,03/25/2012,03/24/2012,03/25/2012 01:00:14 AM,03/25/2012 01:00:14 AM,03/25/2012 01:00:18 AM,03/25/2012 01:05:00 AM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 01:05:37 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7571666434801, -122.416719595074)",120850016-84 -133050254,E06,13103683,Medical Incident,11/01/2013,11/01/2013,11/01/2013 01:15:40 PM,11/01/2013 01:16:13 PM,11/01/2013 01:17:48 PM,11/01/2013 01:19:37 PM,11/01/2013 01:21:27 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/01/2013 01:25:12 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",133050254-E06 -131360117,B01,13045820,Traffic Collision,05/16/2013,05/16/2013,05/16/2013 09:36:02 AM,05/16/2013 09:37:10 AM,05/16/2013 09:38:50 AM,04/25/2016 01:52:46 PM,05/16/2013 09:39:06 AM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 09:44:13 AM,WEBSTER ST/SUTTER ST,SF,94115,B04,38,3542,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,4,5,Japantown,"(37.7863039619679, -122.431552025504)",131360117-B01 -160240901,62,16009470,Medical Incident,01/24/2016,01/24/2016,01/24/2016 08:54:30 AM,01/24/2016 08:55:57 AM,01/24/2016 08:58:14 AM,01/24/2016 08:58:39 AM,01/24/2016 09:06:14 AM,01/24/2016 09:18:37 AM,01/24/2016 09:26:48 AM,Code 2 Transport,01/24/2016 10:16:34 AM,DIVISADERO ST/OFARRELL ST,San Francisco,94115,B05,5,4153,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7824504809987, -122.439297623944)",160240901-62 -160412972,68,16016578,Medical Incident,02/10/2016,02/10/2016,02/10/2016 05:55:15 PM,02/10/2016 05:57:09 PM,02/10/2016 05:58:38 PM,02/10/2016 05:58:50 PM,02/10/2016 06:15:43 PM,02/10/2016 06:28:50 PM,02/10/2016 06:49:53 PM,Unable to Locate,02/10/2016 07:13:28 PM,3300 Block of 21ST ST,San Francisco,94110,B06,7,5456,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.7567806311127, -122.422218844187)",160412972-68 -111730327,92,11057203,Medical Incident,06/22/2011,06/22/2011,06/22/2011 08:57:14 PM,06/22/2011 08:57:15 PM,06/22/2011 08:58:40 PM,06/22/2011 08:58:52 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,04/25/2016 02:04:01 PM,500 Block of MARKET ST,SF,94104,B01,13,1236,2,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7898275380016, -122.400837514889)",111730327-92 -112220007,T07,11073189,Structure Fire,08/10/2011,08/09/2011,08/10/2011 12:27:05 AM,08/10/2011 12:27:05 AM,08/10/2011 12:27:19 AM,08/10/2011 12:28:55 AM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/10/2011 12:31:04 AM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",112220007-T07 -133210156,66,13109021,Medical Incident,11/17/2013,11/17/2013,11/17/2013 11:52:16 AM,11/17/2013 11:53:35 AM,11/17/2013 11:54:18 AM,11/17/2013 11:54:29 AM,11/17/2013 11:55:12 AM,11/17/2013 12:16:15 PM,11/17/2013 12:21:39 PM,Code 2 Transport,11/17/2013 12:57:13 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",133210156-66 -160523197,64,16020966,Medical Incident,02/21/2016,02/21/2016,02/21/2016 08:35:27 PM,02/21/2016 08:35:27 PM,02/21/2016 08:35:38 PM,02/21/2016 08:35:49 PM,02/21/2016 08:48:20 PM,02/21/2016 09:03:38 PM,02/21/2016 09:19:29 PM,Code 2 Transport,02/21/2016 10:19:40 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160523197-64 -111860350,E19,11061605,Medical Incident,07/05/2011,07/05/2011,07/05/2011 07:20:46 PM,07/05/2011 07:21:17 PM,07/05/2011 07:21:38 PM,04/25/2016 02:03:48 PM,07/05/2011 07:29:36 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 07:41:38 PM,200 Block of STRATFORD DR,SF,94132,B09,19,8752,3,2,2,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7206719216771, -122.473717580095)",111860350-E19 -112250177,T06,11074333,Structure Fire,08/13/2011,08/13/2011,08/13/2011 12:30:17 PM,08/13/2011 12:30:17 PM,08/13/2011 12:30:25 PM,08/13/2011 12:31:36 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 12:32:54 PM,16TH ST/CHURCH ST,SF,94114,B02,6,5234,3,3,3,false,,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7645076140541, -122.428665130308)",112250177-T06 -121060201,B01,12035146,Alarms,04/15/2012,04/15/2012,04/15/2012 01:55:28 PM,04/15/2012 01:55:36 PM,04/15/2012 01:56:12 PM,04/15/2012 01:57:54 PM,04/15/2012 02:01:15 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/15/2012 02:06:34 PM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,false,Alarm,1,CHIEF,2,1,3,North Beach,"(37.8070220097095, -122.418095295202)",121060201-B01 -132110287,E35,13071460,Water Rescue,07/30/2013,07/30/2013,07/30/2013 08:09:48 PM,07/30/2013 08:10:29 PM,07/30/2013 08:12:57 PM,07/30/2013 08:13:48 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/30/2013 08:19:33 PM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,true,Fire,1,ENGINE,6,None,3,North Beach,"(37.8081679785862, -122.416634717802)",132110287-E35 -111200066,E37,11039490,Outside Fire,04/30/2011,04/29/2011,04/30/2011 04:31:40 AM,04/30/2011 04:32:53 AM,04/30/2011 04:33:09 AM,04/30/2011 04:35:00 AM,04/30/2011 04:36:24 AM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/30/2011 04:54:47 AM,25TH ST/CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",111200066-E37 -160811600,AM02,16032165,Other,03/21/2016,03/21/2016,03/21/2016 12:19:32 PM,03/21/2016 12:19:32 PM,03/21/2016 12:22:39 PM,03/21/2016 12:22:39 PM,03/21/2016 12:40:19 PM,03/21/2016 12:40:21 PM,03/21/2016 01:06:03 PM,Code 2 Transport,03/21/2016 01:33:02 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,false,Alarm,1,PRIVATE,2,6,9,Mission,"(37.7596933117757, -122.414834950578)",160811600-AM02 -160032012,68,16001233,Medical Incident,01/03/2016,01/03/2016,01/03/2016 03:46:38 PM,01/03/2016 03:48:34 PM,01/03/2016 03:48:50 PM,01/03/2016 03:48:58 PM,01/03/2016 03:53:23 PM,01/03/2016 04:05:38 PM,01/03/2016 04:18:33 PM,Code 2 Transport,01/03/2016 04:43:42 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",160032012-68 -140800201,E05,14027052,Medical Incident,03/21/2014,03/21/2014,03/21/2014 01:35:47 PM,03/21/2014 01:37:20 PM,03/21/2014 01:38:31 PM,03/21/2014 01:39:39 PM,03/21/2014 01:49:48 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/21/2014 02:11:21 PM,300 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",140800201-E05 -160391429,KM12,16015581,Medical Incident,02/08/2016,02/08/2016,02/08/2016 11:35:39 AM,02/08/2016 11:37:10 AM,02/08/2016 11:38:04 AM,02/08/2016 11:39:07 AM,02/08/2016 11:50:29 AM,02/08/2016 12:09:25 PM,02/08/2016 12:26:49 PM,Code 2 Transport,02/08/2016 01:05:57 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2246,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7829058754034, -122.40679650522)",160391429-KM12 -160752399,85,16029772,Medical Incident,03/15/2016,03/15/2016,03/15/2016 03:25:01 PM,03/15/2016 03:25:01 PM,03/15/2016 03:25:45 PM,03/15/2016 03:25:57 PM,03/15/2016 03:31:20 PM,03/15/2016 04:01:56 PM,03/15/2016 04:15:08 PM,Code 2 Transport,03/15/2016 05:25:29 PM,OAKDALE AV/LOOMIS ST,San Francisco,94124,B10,9,6377,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7425207341377, -122.404306293429)",160752399-85 -120110085,E29,12003736,Traffic Collision,01/11/2012,01/11/2012,01/11/2012 09:45:33 AM,01/11/2012 09:45:34 AM,01/11/2012 09:46:26 AM,01/11/2012 09:46:46 AM,01/11/2012 09:49:23 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 10:00:09 AM,300 Block of 10TH ST,SF,94103,B02,36,2343,2,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7724036771499, -122.412409765245)",120110085-E29 -110630046,T18,11020585,Structure Fire,03/04/2011,03/03/2011,03/04/2011 03:54:45 AM,03/04/2011 03:54:45 AM,03/04/2011 03:55:00 AM,03/04/2011 03:56:50 AM,04/25/2016 02:05:48 PM,04/25/2016 02:05:48 PM,04/25/2016 02:05:48 PM,Other,03/04/2011 03:58:38 AM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",110630046-T18 -110600093,E18,11019629,Medical Incident,03/01/2011,03/01/2011,03/01/2011 09:47:25 AM,03/01/2011 09:47:49 AM,03/01/2011 09:48:06 AM,03/01/2011 09:50:20 AM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 09:51:24 AM,2300 Block of 26TH AVE,SF,94116,B08,40,7471,3,3,3,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7436566730271, -122.483188286669)",110600093-E18 -121640006,E03,12054256,Medical Incident,06/12/2012,06/11/2012,06/12/2012 12:28:19 AM,06/12/2012 12:29:02 AM,06/12/2012 12:29:23 AM,06/12/2012 12:30:49 AM,06/12/2012 12:32:48 AM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/12/2012 12:41:31 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",121640006-E03 -110460220,RC2,11015259,Traffic Collision,02/15/2011,02/15/2011,02/15/2011 02:29:14 PM,02/15/2011 02:30:20 PM,02/15/2011 02:30:34 PM,02/15/2011 02:32:16 PM,02/15/2011 02:40:27 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 02:52:44 PM,SUNSET BL/OCEAN AV,SF,94132,B08,19,7614,3,3,3,true,,1,RESCUE CAPTAIN,5,8,7,Sunset/Parkside,"(37.731909880446, -122.493718802216)",110460220-RC2 -160783621,KM07,16031176,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:43:36 PM,03/18/2016 08:44:13 PM,03/18/2016 08:44:27 PM,03/18/2016 08:45:11 PM,03/18/2016 08:50:36 PM,03/18/2016 09:03:30 PM,03/18/2016 09:21:52 PM,Code 2 Transport,03/18/2016 10:17:16 PM,1500 Block of STOCKTON ST,San Francisco,94133,B01,28,1334,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.799975359605, -122.40903359976)",160783621-KM07 -160050517,63,16001866,Medical Incident,01/05/2016,01/04/2016,01/05/2016 07:00:09 AM,01/05/2016 07:00:09 AM,01/05/2016 07:04:28 AM,01/05/2016 07:04:49 AM,01/05/2016 07:13:15 AM,01/05/2016 07:27:37 AM,01/05/2016 07:52:02 AM,Code 2 Transport,01/05/2016 08:37:26 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160050517-63 -131160251,E11,13039144,Traffic Collision,04/26/2013,04/26/2013,04/26/2013 07:27:15 PM,04/26/2013 07:27:15 PM,04/26/2013 07:28:24 PM,04/26/2013 07:29:45 PM,04/26/2013 07:35:37 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Unable to Locate,04/26/2013 07:37:34 PM,CAPP ST/21ST ST,SF,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7571009328923, -122.417811900579)",131160251-E11 -121370062,T01,12045421,Structure Fire,05/16/2012,05/15/2012,05/16/2012 06:20:03 AM,05/16/2012 06:20:03 AM,05/16/2012 06:22:06 AM,05/16/2012 06:23:42 AM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,Other,05/16/2012 06:23:47 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",121370062-T01 -140040379,93,14001633,Medical Incident,01/04/2014,01/04/2014,01/04/2014 11:00:17 PM,01/04/2014 11:01:06 PM,01/04/2014 11:01:38 PM,01/04/2014 11:02:19 PM,01/04/2014 11:09:50 PM,01/04/2014 11:41:35 PM,01/04/2014 11:51:17 PM,Code 3 Transport,01/05/2014 01:12:41 AM,2300 Block of 34TH AVE,SF,94116,B08,18,7555,,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7432793416407, -122.491765256117)",140040379-93 -130990348,T17,13033382,Structure Fire,04/09/2013,04/09/2013,04/09/2013 07:27:04 PM,04/09/2013 07:27:05 PM,04/09/2013 07:27:52 PM,04/25/2016 01:53:23 PM,04/09/2013 07:28:03 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/09/2013 07:30:38 PM,HUDSON AV/CASHMERE ST,SF,94124,B10,25,652,3,3,3,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",130990348-T17 -112490015,E01,11081990,Medical Incident,09/06/2011,09/05/2011,09/06/2011 01:46:59 AM,09/06/2011 01:47:36 AM,09/06/2011 01:48:25 AM,09/06/2011 01:48:33 AM,09/06/2011 01:50:16 AM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/06/2011 02:04:03 AM,MISSION ST/7TH ST,SF,94103,B02,1,2315,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",112490015-E01 -132130107,E19,13071908,Medical Incident,08/01/2013,08/01/2013,08/01/2013 10:21:27 AM,08/01/2013 10:26:16 AM,08/01/2013 10:26:29 AM,08/01/2013 10:27:09 AM,08/01/2013 10:28:11 AM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 10:38:07 AM,19TH AV/SLOAT BL,SF,94132,B08,19,7413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",132130107-E19 -132620237,E06,13088786,Alarms,09/19/2013,09/19/2013,09/19/2013 02:44:13 PM,09/19/2013 02:44:58 PM,09/19/2013 02:45:10 PM,09/19/2013 02:46:20 PM,09/19/2013 02:47:47 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 02:50:19 PM,0 Block of FORD ST,SF,94114,B05,6,5252,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7618326995674, -122.431755549864)",132620237-E06 -160580192,KM03,16022960,Medical Incident,02/27/2016,02/26/2016,02/27/2016 01:23:11 AM,02/27/2016 01:23:42 AM,02/27/2016 01:24:41 AM,02/27/2016 01:26:00 AM,02/27/2016 01:34:21 AM,02/27/2016 01:53:35 AM,02/27/2016 02:26:00 AM,Code 3 Transport,02/27/2016 03:11:24 AM,800 Block of LISBON ST,San Francisco,94112,B09,43,6174,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7158405916513, -122.438322483619)",160580192-KM03 -120570045,96,12018688,Medical Incident,02/26/2012,02/25/2012,02/26/2012 02:26:24 AM,02/26/2012 02:28:29 AM,02/26/2012 02:28:53 AM,02/26/2012 02:29:00 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,04/25/2016 01:59:58 PM,1500 Block of 32ND AVE,SF,94122,B08,18,7535,1,1,2,true,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7582822731948, -122.490798209492)",120570045-96 -160903608,71,16035874,Medical Incident,03/30/2016,03/30/2016,03/30/2016 08:30:24 PM,03/30/2016 08:31:02 PM,03/30/2016 08:31:16 PM,03/30/2016 08:32:06 PM,03/30/2016 08:37:35 PM,03/30/2016 08:55:59 PM,03/30/2016 09:10:47 PM,Code 2 Transport,03/30/2016 09:36:24 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160903608-71 -112450012,E31,11080629,Medical Incident,09/02/2011,09/01/2011,09/02/2011 01:15:45 AM,09/02/2011 01:16:22 AM,09/02/2011 01:17:01 AM,09/02/2011 01:19:06 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 01:21:36 AM,700 Block of 20TH AVE,SF,94121,B07,31,7166,3,2,2,false,,1,ENGINE,4,7,1,Outer Richmond,"(37.7737509765237, -122.478835238462)",112450012-E31 -112570172,B01,11084726,Alarms,09/14/2011,09/14/2011,09/14/2011 01:44:22 PM,09/14/2011 01:45:23 PM,09/14/2011 01:45:30 PM,09/14/2011 01:45:56 PM,09/14/2011 01:50:12 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Fire,09/14/2011 01:53:52 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",112570172-B01 -110610187,E08,11020003,Traffic Collision,03/02/2011,03/02/2011,03/02/2011 12:21:12 PM,03/02/2011 12:21:22 PM,03/02/2011 12:24:25 PM,03/02/2011 12:25:40 PM,03/02/2011 12:27:11 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 12:36:18 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",110610187-E08 -120390226,E10,12013029,Citizen Assist / Service Call,02/08/2012,02/08/2012,02/08/2012 02:54:44 PM,02/08/2012 02:55:31 PM,02/08/2012 02:55:43 PM,02/08/2012 02:56:41 PM,02/08/2012 02:59:24 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Fire,02/08/2012 03:05:55 PM,200 Block of LAUREL ST,SF,94118,B04,10,4423,3,3,3,true,Alarm,1,ENGINE,1,4,2,Presidio Heights,"(37.7890909654403, -122.450499393296)",120390226-E10 -112120120,60,11069903,Medical Incident,07/31/2011,07/31/2011,07/31/2011 10:13:45 AM,07/31/2011 10:15:17 AM,07/31/2011 10:15:26 AM,07/31/2011 10:19:07 AM,07/31/2011 10:21:39 AM,07/31/2011 10:35:41 AM,07/31/2011 10:53:21 AM,Code 2 Transport,07/31/2011 11:13:26 AM,300 Block of BUENAVISTAEAST AV,SF,94117,B05,21,5136,3,3,3,true,,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7667916111324, -122.440720545257)",112120120-60 -120820014,92,12027087,Medical Incident,03/22/2012,03/21/2012,03/22/2012 12:52:28 AM,03/22/2012 12:53:51 AM,03/22/2012 12:54:05 AM,03/22/2012 12:56:24 AM,03/22/2012 01:06:49 AM,03/22/2012 01:21:31 AM,03/22/2012 01:45:32 AM,Code 2 Transport,03/22/2012 02:54:00 AM,1300 Block of OAKDALE AVE,SF,94124,B10,17,6551,1,1,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7322528903335, -122.386360654311)",120820014-92 -160322496,82,16012662,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:33:28 PM,02/01/2016 04:34:08 PM,02/01/2016 04:35:23 PM,02/01/2016 04:39:11 PM,02/01/2016 04:44:36 PM,02/01/2016 04:59:56 PM,02/01/2016 05:14:47 PM,Code 2 Transport,02/01/2016 05:31:37 PM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160322496-82 -130110266,E26,13003818,Medical Incident,01/11/2013,01/11/2013,01/11/2013 04:03:44 PM,01/11/2013 04:05:10 PM,01/11/2013 04:05:30 PM,01/11/2013 04:07:19 PM,01/11/2013 04:09:00 PM,04/25/2016 01:54:51 PM,04/25/2016 01:54:51 PM,Fire,01/11/2013 04:15:51 PM,400 Block of GOLD MINE DR,SF,94131,B06,26,8153,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Glen Park,"(37.7394547622904, -122.437041860856)",130110266-E26 -160083628,81,16003419,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:01:15 PM,01/08/2016 09:03:34 PM,01/08/2016 09:04:56 PM,01/08/2016 09:05:24 PM,01/08/2016 09:10:46 PM,01/08/2016 09:24:37 PM,01/08/2016 09:51:32 PM,Code 2 Transport,01/08/2016 10:22:02 PM,1200 Block of SILVER AVE,San Francisco,94134,B10,42,6356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7308246140879, -122.410982908601)",160083628-81 -112980338,T06,11098984,Medical Incident,10/25/2011,10/25/2011,10/25/2011 07:30:29 PM,10/25/2011 07:30:44 PM,10/25/2011 07:31:42 PM,10/25/2011 07:32:56 PM,10/25/2011 07:35:14 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 07:41:05 PM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,3,3,false,,1,TRUCK,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",112980338-T06 -103250316,B01,10104294,Alarms,11/21/2010,11/21/2010,11/21/2010 08:41:54 PM,11/21/2010 08:43:04 PM,11/21/2010 08:43:14 PM,11/21/2010 08:44:30 PM,11/21/2010 08:47:32 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 08:52:01 PM,600 Block of TAYLOR ST,SF,94109,B01,3,1451,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7883158695122, -122.41185546654)",103250316-B01 -102470200,RS1,10078075,Medical Incident,09/04/2010,09/04/2010,09/04/2010 02:12:05 PM,09/04/2010 02:13:23 PM,09/04/2010 02:14:33 PM,09/04/2010 02:20:09 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/04/2010 02:22:14 PM,400 Block of FRANCISCO ST,SF,94133,B01,28,131,3,3,3,true,,1,RESCUE SQUAD,7,1,3,North Beach,"(37.8048443206433, -122.412608500536)",102470200-RS1 -160860137,KM03,16034037,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:56:12 AM,03/26/2016 12:57:24 AM,03/26/2016 12:58:01 AM,03/26/2016 12:58:26 AM,03/26/2016 01:08:49 AM,03/26/2016 01:24:53 AM,03/26/2016 01:36:36 AM,Code 2 Transport,03/26/2016 01:59:18 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160860137-KM03 -132060235,B08,13069780,Structure Fire,07/25/2013,07/25/2013,07/25/2013 03:49:03 PM,07/25/2013 03:49:03 PM,07/25/2013 03:49:22 PM,07/25/2013 03:50:32 PM,07/25/2013 03:55:27 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Fire,07/25/2013 04:01:18 PM,1300 Block of 42ND AVE,SF,94122,B08,23,767,3,3,3,false,Alarm,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7615412530771, -122.501774156594)",132060235-B08 -160052166,63,16002041,Medical Incident,01/05/2016,01/05/2016,01/05/2016 03:07:51 PM,01/05/2016 03:07:51 PM,01/05/2016 03:13:50 PM,01/05/2016 03:13:50 PM,01/05/2016 03:28:30 PM,01/05/2016 03:28:31 PM,01/05/2016 03:53:39 PM,Code 2 Transport,01/05/2016 03:58:17 PM,22ND ST/POTRERO AV,San Francisco,94110,B06,7,5474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",160052166-63 -130520076,93,13017496,Citizen Assist / Service Call,02/21/2013,02/21/2013,02/21/2013 08:18:24 AM,02/21/2013 08:20:59 AM,02/21/2013 08:28:32 AM,02/21/2013 08:28:47 AM,02/21/2013 08:35:17 AM,02/21/2013 08:55:07 AM,02/21/2013 09:16:04 AM,Code 2 Transport,02/21/2013 09:52:49 AM,2500 Block of 40TH AVE,SF,94116,B08,18,7617,3,3,3,true,Alarm,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7392586275396, -122.498062678439)",130520076-93 -122130306,E08,12070801,Alarms,07/31/2012,07/31/2012,07/31/2012 06:22:13 PM,07/31/2012 06:22:38 PM,07/31/2012 06:22:48 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 06:25:59 PM,10TH ST/BRYANT ST,SF,94103,B02,29,2345,3,3,3,true,Alarm,1,ENGINE,3,2,6,Mission,"(37.7703485160634, -122.409735890482)",122130306-E08 -160482775,82,16019426,Medical Incident,02/17/2016,02/17/2016,02/17/2016 04:40:49 PM,02/17/2016 04:40:49 PM,02/17/2016 04:42:42 PM,02/17/2016 04:43:04 PM,02/17/2016 04:47:31 PM,02/17/2016 05:00:07 PM,02/17/2016 05:19:03 PM,Code 2 Transport,02/17/2016 05:42:53 PM,5200 Block of 3RD ST,San Francisco,94124,B10,17,6536,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7297002538198, -122.392619682108)",160482775-82 -160470546,AM02,16018806,Medical Incident,02/16/2016,02/15/2016,02/16/2016 07:09:55 AM,02/16/2016 07:10:26 AM,02/16/2016 07:10:37 AM,02/16/2016 07:11:06 AM,02/16/2016 07:13:16 AM,02/16/2016 07:29:05 AM,02/16/2016 07:48:52 AM,Code 2 Transport,02/16/2016 08:24:45 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160470546-AM02 -122880283,79,12095370,Water Rescue,10/14/2012,10/14/2012,10/14/2012 06:10:45 PM,10/14/2012 06:12:07 PM,10/14/2012 06:13:41 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 06:14:54 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,E,3,true,Fire,1,MEDIC,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",122880283-79 -112040288,AM18,11067481,Medical Incident,07/23/2011,07/23/2011,07/23/2011 06:19:43 PM,07/23/2011 06:22:28 PM,07/23/2011 06:24:48 PM,07/23/2011 06:32:02 PM,07/23/2011 06:35:29 PM,07/23/2011 06:40:56 PM,07/23/2011 06:57:01 PM,Code 2 Transport,07/23/2011 07:24:12 PM,0 Block of RAMONA AVE,SF,94103,B02,6,5214,3,3,3,false,,1,PRIVATE,2,2,8,Mission,"(37.7671534336724, -122.425207841138)",112040288-AM18 -160070245,61,16002679,Medical Incident,01/07/2016,01/06/2016,01/07/2016 02:45:25 AM,01/07/2016 02:46:47 AM,01/07/2016 02:47:36 AM,01/07/2016 02:47:50 AM,01/07/2016 02:54:01 AM,01/07/2016 03:23:10 AM,01/07/2016 03:28:27 AM,Code 2 Transport,01/07/2016 04:23:38 AM,2700 Block of PINE ST,San Francisco,94115,B04,10,4156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7869521630601, -122.441071822801)",160070245-61 -133030148,B07,13102901,Traffic Collision,10/30/2013,10/30/2013,10/30/2013 12:20:07 PM,10/30/2013 12:20:09 PM,10/30/2013 12:23:33 PM,04/25/2016 01:50:01 PM,10/30/2013 12:25:03 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/30/2013 01:06:12 PM,10TH AV/GEARY BL,SF,94118,B07,31,7141,3,3,3,false,Potentially Life-Threatening,1,CHIEF,4,7,1,Inner Richmond,"(37.780822030508, -122.468563870264)",133030148-B07 -160372375,82,16014751,Medical Incident,02/06/2016,02/06/2016,02/06/2016 03:05:46 PM,02/06/2016 03:06:47 PM,02/06/2016 03:07:10 PM,02/06/2016 03:07:28 PM,02/06/2016 03:14:25 PM,02/06/2016 03:31:19 PM,02/06/2016 03:34:48 PM,Code 2 Transport,02/06/2016 04:07:36 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160372375-82 -103310134,82,10105929,Medical Incident,11/27/2010,11/27/2010,11/27/2010 10:50:11 AM,11/27/2010 10:53:40 AM,11/27/2010 10:53:58 AM,11/27/2010 10:54:35 AM,11/27/2010 11:01:36 AM,11/27/2010 11:22:38 AM,11/27/2010 11:33:36 AM,Code 2 Transport,11/27/2010 12:14:49 PM,1300 Block of POLK ST,SF,94109,B04,3,3122,2,2,2,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",103310134-82 -132280194,58,13076959,Medical Incident,08/16/2013,08/16/2013,08/16/2013 12:31:32 PM,08/16/2013 12:31:51 PM,08/16/2013 12:33:25 PM,08/16/2013 12:35:46 PM,08/16/2013 12:39:00 PM,08/16/2013 12:47:14 PM,08/16/2013 12:51:46 PM,Code 2 Transport,08/16/2013 01:15:54 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",132280194-58 -133550403,B04,13120849,Alarms,12/21/2013,12/21/2013,12/21/2013 10:04:25 PM,12/21/2013 10:05:14 PM,12/21/2013 10:05:27 PM,12/21/2013 10:06:14 PM,12/21/2013 10:10:07 PM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Other,12/21/2013 10:38:38 PM,2600 Block of GEARY BLVD,SF,94115,B05,10,4365,3,3,3,false,Alarm,1,CHIEF,3,5,2,Lone Mountain/USF,"(37.7822483679158, -122.446592481498)",133550403-B04 -160071676,87,16002843,Medical Incident,01/07/2016,01/07/2016,01/07/2016 12:34:19 PM,01/07/2016 12:35:10 PM,01/07/2016 12:36:46 PM,01/07/2016 12:37:12 PM,01/07/2016 12:43:42 PM,01/07/2016 01:14:49 PM,01/07/2016 01:46:13 PM,Code 2 Transport,01/07/2016 02:55:49 PM,5100 Block of MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7161348110275, -122.441346172385)",160071676-87 -123180134,67,12105722,Medical Incident,11/13/2012,11/13/2012,11/13/2012 10:23:54 AM,11/13/2012 10:24:30 AM,11/13/2012 10:27:03 AM,11/13/2012 10:27:20 AM,11/13/2012 10:33:15 AM,11/13/2012 10:55:32 AM,11/13/2012 11:17:20 AM,Code 2 Transport,11/13/2012 11:35:34 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",123180134-67 -113440340,E37,11114267,Structure Fire,12/10/2011,12/10/2011,12/10/2011 09:29:50 PM,12/10/2011 09:30:46 PM,12/10/2011 09:30:57 PM,12/10/2011 09:31:51 PM,12/10/2011 09:34:23 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/11/2011 01:17:58 AM,1300 Block of UTAH ST,SF,94110,B10,9,2562,3,3,3,false,,3,ENGINE,5,10,10,Mission,"(37.7524211883021, -122.405338378285)",113440340-E37 -120530016,E34,12017364,Medical Incident,02/22/2012,02/21/2012,02/22/2012 02:25:14 AM,02/22/2012 02:26:48 AM,02/22/2012 02:26:56 AM,02/22/2012 02:29:16 AM,02/22/2012 02:31:09 AM,04/25/2016 02:00:01 PM,04/25/2016 02:00:01 PM,Other,02/22/2012 03:22:19 AM,400 Block of 34TH AVE,SF,94121,B07,34,7247,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7806103839199, -122.494519297377)",120530016-E34 -113570479,E15,11118850,Medical Incident,12/23/2011,12/23/2011,12/23/2011 11:30:38 PM,12/23/2011 11:31:52 PM,12/23/2011 11:32:04 PM,12/23/2011 11:33:29 PM,12/23/2011 11:35:47 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/23/2011 11:41:09 PM,0 Block of ONONDAGA AVE,SF,94112,B09,15,8277,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7220006439581, -122.43943565515)",113570479-E15 -160390512,71,16015485,Medical Incident,02/08/2016,02/07/2016,02/08/2016 05:34:16 AM,02/08/2016 05:34:40 AM,02/08/2016 05:35:02 AM,02/08/2016 05:35:14 AM,02/08/2016 05:42:01 AM,02/08/2016 05:55:47 AM,02/08/2016 06:00:18 AM,Code 3 Transport,02/08/2016 06:28:28 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160390512-71 -112660275,E05,11087958,Alarms,09/23/2011,09/23/2011,09/23/2011 05:03:08 PM,09/23/2011 05:05:10 PM,09/23/2011 05:05:18 PM,09/23/2011 05:06:22 PM,09/23/2011 05:07:46 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 05:12:28 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",112660275-E05 -132650134,E03,13089849,Alarms,09/22/2013,09/22/2013,09/22/2013 09:55:56 AM,09/22/2013 09:56:48 AM,09/22/2013 09:56:53 AM,09/22/2013 09:57:26 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/22/2013 09:58:25 AM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Alarm,1,ENGINE,3,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",132650134-E03 -110010556,KM15,11000480,Medical Incident,01/01/2011,01/01/2011,01/01/2011 09:47:45 PM,01/01/2011 09:49:17 PM,01/01/2011 09:49:52 PM,01/01/2011 09:50:57 PM,01/01/2011 09:55:07 PM,01/01/2011 10:10:35 PM,01/01/2011 10:19:36 PM,Code 2 Transport,01/01/2011 10:36:23 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,2,2,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",110010556-KM15 -132990084,66,13101505,Medical Incident,10/26/2013,10/25/2013,10/26/2013 06:48:46 AM,10/26/2013 06:49:33 AM,10/26/2013 06:49:48 AM,10/26/2013 06:50:01 AM,10/26/2013 06:56:17 AM,10/26/2013 07:22:38 AM,10/26/2013 07:43:16 AM,Code 2 Transport,10/26/2013 08:01:01 AM,900 Block of POWELL ST,SF,94108,B01,2,1355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",132990084-66 -113630047,AM16,11120485,Medical Incident,12/29/2011,12/28/2011,12/29/2011 06:37:30 AM,12/29/2011 06:39:41 AM,12/29/2011 06:39:52 AM,12/29/2011 06:40:37 AM,12/29/2011 06:45:30 AM,12/29/2011 07:08:40 AM,04/25/2016 02:00:54 PM,Code 2 Transport,12/29/2011 07:51:05 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,,1,PRIVATE,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",113630047-AM16 -140590083,E23,14019808,Medical Incident,02/28/2014,02/27/2014,02/28/2014 07:51:27 AM,02/28/2014 07:53:04 AM,02/28/2014 07:58:37 AM,02/28/2014 07:58:37 AM,02/28/2014 07:59:46 AM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Code 2 Transport,02/28/2014 08:03:32 AM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",140590083-E23 -111980209,T17,11065347,Structure Fire,07/17/2011,07/17/2011,07/17/2011 03:00:58 PM,07/17/2011 03:00:59 PM,07/17/2011 03:01:03 PM,07/17/2011 03:02:19 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 03:07:27 PM,100 Block of CASHMERE ST,SF,94124,B10,25,6522,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",111980209-T17 -160063502,78,16002601,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:12:37 PM,01/06/2016 09:12:37 PM,01/06/2016 09:13:27 PM,01/06/2016 09:13:34 PM,01/06/2016 09:21:38 PM,01/06/2016 09:43:14 PM,01/06/2016 09:51:42 PM,Code 2 Transport,01/06/2016 10:41:27 PM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160063502-78 -160720604,AM04,16028491,Medical Incident,03/12/2016,03/11/2016,03/12/2016 05:57:48 AM,03/12/2016 05:58:52 AM,03/12/2016 05:59:01 AM,03/12/2016 06:00:04 AM,03/12/2016 06:06:58 AM,03/12/2016 06:11:37 AM,03/12/2016 06:31:53 AM,Code 2 Transport,03/12/2016 06:48:29 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7906221863031, -122.413101980649)",160720604-AM04 -122040209,E21,12067832,Medical Incident,07/22/2012,07/22/2012,07/22/2012 01:43:12 PM,07/22/2012 01:43:41 PM,07/22/2012 01:43:54 PM,07/22/2012 01:45:09 PM,07/22/2012 01:46:07 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 01:54:53 PM,1800 Block of MCALLISTER ST,SF,94117,B05,21,4254,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7772146315852, -122.442488680247)",122040209-E21 -102300332,E01,10072511,Medical Incident,08/18/2010,08/18/2010,08/18/2010 08:16:17 PM,08/18/2010 08:16:50 PM,08/18/2010 08:17:09 PM,08/18/2010 08:18:40 PM,08/18/2010 08:20:43 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/18/2010 08:23:11 PM,700 Block of HOWARD ST,SF,94103,B03,1,2214,3,E,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7841058563108, -122.401539484586)",102300332-E01 -160161099,75,16006363,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:02:23 AM,01/16/2016 10:02:46 AM,01/16/2016 10:03:51 AM,01/16/2016 10:03:59 AM,01/16/2016 10:05:38 AM,01/16/2016 10:23:18 AM,01/16/2016 10:38:13 AM,Code 2 Transport,01/16/2016 11:12:35 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160161099-75 -141000006,E11,14033618,Medical Incident,04/10/2014,04/09/2014,04/10/2014 12:55:23 AM,04/10/2014 12:57:33 AM,04/10/2014 12:57:48 AM,04/10/2014 12:59:15 AM,04/10/2014 01:01:01 AM,04/10/2014 01:33:17 AM,04/10/2014 01:33:27 AM,Code 2 Transport,04/10/2014 01:41:32 AM,1400 Block of VALENCIA ST,SAN FRANCISCO,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7497020110556, -122.420499334167)",141000006-E11 -121360016,E08,12045077,Medical Incident,05/15/2012,05/14/2012,05/15/2012 02:13:06 AM,05/15/2012 02:13:12 AM,05/15/2012 02:13:32 AM,05/15/2012 02:16:28 AM,05/15/2012 02:18:10 AM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/15/2012 02:27:38 AM,BRYANT ST/3RD ST,SF,94107,B03,8,2174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7813212571676, -122.395843500166)",121360016-E08 -130820343,E13,13027592,Medical Incident,03/23/2013,03/23/2013,03/23/2013 10:32:41 PM,03/23/2013 10:33:35 PM,03/23/2013 10:34:08 PM,03/23/2013 10:35:35 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/23/2013 10:55:42 PM,300 Block of BATTERY ST,SF,94111,B01,13,1161,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Chinatown,"(37.7947853577882, -122.400352669798)",130820343-E13 -132940182,E09,13099991,Citizen Assist / Service Call,10/21/2013,10/21/2013,10/21/2013 12:17:30 PM,10/21/2013 12:19:18 PM,10/21/2013 12:19:53 PM,10/21/2013 12:21:15 PM,10/21/2013 12:23:35 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Fire,10/21/2013 12:27:34 PM,2700 Block of BRYANT ST,SF,94110,B06,9,5532,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7504048658108, -122.408832583808)",132940182-E09 -113560066,T14,11118103,Alarms,12/22/2011,12/21/2011,12/22/2011 07:16:12 AM,12/22/2011 07:17:39 AM,12/22/2011 07:17:48 AM,12/22/2011 07:20:13 AM,12/22/2011 07:21:36 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/22/2011 07:25:52 AM,2800 Block of CLEMENT ST,SF,94121,B07,14,7237,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7818550511729, -122.489698043665)",113560066-T14 -131240059,E32,13041712,Traffic Collision,05/04/2013,05/03/2013,05/04/2013 03:36:57 AM,05/04/2013 03:37:49 AM,05/04/2013 03:38:31 AM,05/04/2013 03:41:04 AM,05/04/2013 03:44:00 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/04/2013 04:04:19 AM,0 Block of CAMBRIDGE ST,SF,94134,B09,32,5685,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,9,Portola,"(37.7315422235506, -122.419582529804)",131240059-E32 -160652134,63,16025969,Medical Incident,03/05/2016,03/05/2016,03/05/2016 03:26:28 PM,03/05/2016 03:26:28 PM,03/05/2016 03:26:28 PM,03/05/2016 03:26:28 PM,03/05/2016 03:26:28 PM,03/05/2016 03:33:38 PM,03/05/2016 03:49:13 PM,Code 2 Transport,03/05/2016 03:58:23 PM,LARKIN ST/POST ST,San Francisco,94109,B99,3,1641,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",160652134-63 -110540066,T15,11017734,Medical Incident,02/23/2011,02/22/2011,02/23/2011 07:37:23 AM,02/23/2011 07:38:04 AM,02/23/2011 07:38:27 AM,02/23/2011 07:40:54 AM,02/23/2011 07:42:57 AM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/23/2011 07:53:26 AM,2400 Block of SAN JOSE AVE,SF,94112,B09,15,8312,3,3,3,false,,1,TRUCK,2,9,11,Outer Mission,"(37.7185540654042, -122.447910942622)",110540066-T15 -132130318,E38,13072088,Medical Incident,08/01/2013,08/01/2013,08/01/2013 09:49:55 PM,08/01/2013 09:52:30 PM,08/01/2013 09:53:15 PM,08/01/2013 09:54:22 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/01/2013 09:54:52 PM,POLK ST/SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",132130318-E38 -132690164,68,13091329,Medical Incident,09/26/2013,09/26/2013,09/26/2013 11:20:06 AM,09/26/2013 11:20:19 AM,09/26/2013 11:20:39 AM,09/26/2013 11:20:48 AM,09/26/2013 11:35:02 AM,09/26/2013 11:57:46 AM,09/26/2013 12:16:05 PM,Code 2 Transport,09/26/2013 12:34:46 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",132690164-68 -160510491,KM06,16020362,Medical Incident,02/20/2016,02/19/2016,02/20/2016 04:54:42 AM,02/20/2016 04:56:11 AM,02/20/2016 04:56:40 AM,02/20/2016 04:57:42 AM,02/20/2016 05:04:04 AM,02/20/2016 05:18:06 AM,02/20/2016 05:30:46 AM,Code 2 Transport,02/20/2016 06:18:54 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160510491-KM06 -112180144,88,11072024,Medical Incident,08/06/2011,08/06/2011,08/06/2011 10:15:24 AM,08/06/2011 10:15:59 AM,08/06/2011 10:16:21 AM,08/06/2011 10:17:20 AM,08/06/2011 10:22:10 AM,08/06/2011 10:40:07 AM,08/06/2011 11:01:39 AM,Code 2 Transport,08/06/2011 11:42:30 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",112180144-88 -133520335,E37,13119686,Alarms,12/18/2013,12/18/2013,12/18/2013 06:15:12 PM,12/18/2013 06:16:13 PM,12/18/2013 06:17:16 PM,12/18/2013 06:19:25 PM,12/18/2013 06:20:59 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/18/2013 06:25:17 PM,400 Block of MISSISSIPPI ST,SF,94107,B10,37,2474,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7607835854557, -122.394344065742)",133520335-E37 -102320077,T17,10072940,Alarms,08/20/2010,08/20/2010,08/20/2010 08:20:57 AM,08/20/2010 08:21:54 AM,08/20/2010 08:22:15 AM,08/20/2010 08:23:05 AM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 08:27:53 AM,100 Block of KISKA RD,SF,94124,B10,17,6625,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7300498963351, -122.376015807467)",102320077-T17 -110650107,E03,11021388,Alarms,03/06/2011,03/05/2011,03/06/2011 07:11:25 AM,03/06/2011 07:12:33 AM,03/06/2011 07:12:57 AM,03/06/2011 07:14:35 AM,03/06/2011 07:15:37 AM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/06/2011 07:19:14 AM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",110650107-E03 -160590973,72,16023446,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:28:26 AM,02/28/2016 09:31:35 AM,02/28/2016 09:41:29 AM,02/28/2016 09:42:48 AM,02/28/2016 09:52:29 AM,02/28/2016 09:55:06 AM,02/28/2016 10:34:52 AM,Code 2 Transport,02/28/2016 11:16:33 AM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160590973-72 -160910474,64,16035972,Medical Incident,03/31/2016,03/30/2016,03/31/2016 06:19:24 AM,03/31/2016 06:20:24 AM,03/31/2016 06:20:39 AM,03/31/2016 06:20:39 AM,03/31/2016 06:24:46 AM,03/31/2016 06:32:07 AM,03/31/2016 06:53:22 AM,Code 2 Transport,03/31/2016 07:51:56 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160910474-64 -131360036,E17,13045753,Medical Incident,05/16/2013,05/15/2013,05/16/2013 02:36:47 AM,05/16/2013 02:38:57 AM,05/16/2013 02:39:03 AM,05/16/2013 02:41:44 AM,05/16/2013 02:45:12 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/16/2013 02:54:44 AM,0 Block of HARBOR RD,SF,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",131360036-E17 -122570285,E23,12085049,Medical Incident,09/13/2012,09/13/2012,09/13/2012 07:14:09 PM,09/13/2012 07:15:49 PM,09/13/2012 07:17:51 PM,09/13/2012 07:18:53 PM,09/13/2012 07:20:51 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/13/2012 07:42:28 PM,1600 Block of 44TH AVE,SF,94122,B08,23,7661,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7558537231148, -122.503526833565)",122570285-E23 -131090281,85,13036716,Medical Incident,04/19/2013,04/19/2013,04/19/2013 04:15:26 PM,04/19/2013 04:18:00 PM,04/19/2013 04:18:17 PM,04/19/2013 04:18:43 PM,04/19/2013 04:29:36 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Other,04/19/2013 04:30:31 PM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",131090281-85 -160881478,58,16034922,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:29:05 AM,03/28/2016 11:30:39 AM,03/28/2016 11:31:49 AM,03/28/2016 11:33:14 AM,03/28/2016 11:38:36 AM,03/28/2016 11:54:33 AM,03/28/2016 12:03:09 PM,Code 3 Transport,03/28/2016 12:33:58 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160881478-58 -123470352,T02,12116156,Structure Fire,12/12/2012,12/12/2012,12/12/2012 09:05:01 PM,12/12/2012 09:05:02 PM,12/12/2012 09:05:21 PM,12/12/2012 09:06:50 PM,12/12/2012 09:07:58 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Other,12/12/2012 09:08:13 PM,STOCKTON ST/VALLEJO ST,SF,94133,B01,2,1333,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.798571322815, -122.408808130013)",123470352-T02 -160732266,AM18,16029052,Medical Incident,03/13/2016,03/13/2016,03/13/2016 05:53:32 PM,03/13/2016 05:53:42 PM,03/13/2016 05:54:05 PM,03/13/2016 05:55:36 PM,03/13/2016 05:57:54 PM,03/13/2016 06:21:59 PM,03/13/2016 06:49:00 PM,Code 2 Transport,03/13/2016 07:27:14 PM,200 Block of OXFORD ST,San Francisco,94134,B09,42,6145,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7267862206207, -122.419568947341)",160732266-AM18 -121360015,AM18,12045076,Medical Incident,05/15/2012,05/14/2012,05/15/2012 02:02:52 AM,05/15/2012 02:08:23 AM,05/15/2012 02:08:49 AM,05/15/2012 02:09:38 AM,05/15/2012 02:17:01 AM,05/15/2012 02:51:56 AM,05/15/2012 02:55:36 AM,Other,05/15/2012 03:42:58 AM,0 Block of ROSS ALY,SF,94108,B01,2,1331,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.795493320177, -122.407280949818)",121360015-AM18 -160041408,74,16001572,Medical Incident,01/04/2016,01/04/2016,01/04/2016 11:34:56 AM,01/04/2016 11:35:39 AM,01/04/2016 11:35:53 AM,01/04/2016 11:36:00 AM,01/04/2016 11:41:01 AM,01/04/2016 11:54:21 AM,01/04/2016 11:57:24 AM,Code 3 Transport,01/04/2016 12:50:35 PM,1200 Block of MISSISSIPPI ST,San Francisco,94107,B10,25,2635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7504992302518, -122.393464783851)",160041408-74 -113340006,85,11110472,Structure Fire,11/30/2011,11/29/2011,11/30/2011 12:42:30 AM,11/30/2011 12:43:06 AM,11/30/2011 12:43:24 AM,11/30/2011 12:43:55 AM,11/30/2011 12:49:32 AM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/30/2011 12:51:32 AM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,,1,MEDIC,9,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",113340006-85 -111780171,E09,11058767,Medical Incident,06/27/2011,06/27/2011,06/27/2011 12:29:31 PM,06/27/2011 12:30:51 PM,06/27/2011 12:31:43 PM,06/27/2011 12:33:32 PM,06/27/2011 12:35:49 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/27/2011 12:43:51 PM,800 Block of NEWHALL ST,SF,94124,B10,25,6467,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7392353214132, -122.388917732772)",111780171-E09 -160871748,89,16034575,Medical Incident,03/27/2016,03/27/2016,03/27/2016 12:52:38 PM,03/27/2016 12:55:28 PM,03/27/2016 12:56:11 PM,03/27/2016 12:57:19 PM,03/27/2016 01:03:16 PM,03/27/2016 01:28:38 PM,03/27/2016 01:45:46 PM,Code 2 Transport,03/27/2016 02:43:11 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",160871748-89 -160421221,53,16016807,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:25:44 AM,02/11/2016 10:25:58 AM,02/11/2016 10:26:14 AM,02/11/2016 10:26:19 AM,02/11/2016 10:37:31 AM,02/11/2016 10:50:41 AM,02/11/2016 11:01:46 AM,Code 2 Transport,02/11/2016 12:00:34 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7786769584105, -122.408601057595)",160421221-53 -160810052,82,16032003,Medical Incident,03/21/2016,03/20/2016,03/21/2016 12:30:07 AM,03/21/2016 12:31:37 AM,03/21/2016 12:32:07 AM,03/21/2016 12:32:20 AM,03/21/2016 12:37:21 AM,03/21/2016 12:59:15 AM,03/21/2016 01:17:34 AM,Code 2 Transport,03/21/2016 02:04:52 AM,500 Block of 19TH AVE,San Francisco,94121,B07,14,7165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7775292137816, -122.478030628058)",160810052-82 -140690323,E35,14023407,Traffic Collision,03/10/2014,03/10/2014,03/10/2014 07:46:34 PM,03/10/2014 07:48:09 PM,03/10/2014 07:48:35 PM,03/10/2014 07:49:21 PM,03/10/2014 07:56:34 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Other,03/10/2014 08:49:26 PM,ESSEX ST/FOLSOM ST,SAN FRANCISCO,94105,B03,35,2137,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7863789368239, -122.395645466731)",140690323-E35 -111420249,KM01,11047240,Medical Incident,05/22/2011,05/22/2011,05/22/2011 03:12:01 PM,05/22/2011 03:13:32 PM,05/22/2011 03:14:18 PM,05/22/2011 03:15:08 PM,05/22/2011 03:23:53 PM,05/22/2011 03:44:41 PM,04/25/2016 02:04:30 PM,Code 2 Transport,05/22/2011 04:08:10 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,2,2,false,,1,PRIVATE,2,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",111420249-KM01 -113420015,E03,11113262,Medical Incident,12/08/2011,12/07/2011,12/08/2011 01:03:07 AM,12/08/2011 01:03:24 AM,12/08/2011 01:03:40 AM,12/08/2011 01:05:10 AM,12/08/2011 01:06:59 AM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/08/2011 01:08:40 AM,LARKIN ST/FRANK NORRIS ST,SF,94109,B04,3,1636,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7893756305214, -122.41875045058)",113420015-E03 -122530187,86,12083659,Medical Incident,09/09/2012,09/09/2012,09/09/2012 12:30:21 PM,09/09/2012 12:31:17 PM,09/09/2012 12:31:38 PM,09/09/2012 12:31:45 PM,09/09/2012 12:36:20 PM,09/09/2012 12:43:56 PM,09/09/2012 12:54:28 PM,Code 2 Transport,09/09/2012 01:05:05 PM,UNION ST/COLUMBUS AV,SF,94133,B01,28,1334,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8003154984429, -122.410206543893)",122530187-86 -132740290,KM04,13093201,Medical Incident,10/01/2013,10/01/2013,10/01/2013 06:34:10 PM,10/01/2013 06:35:53 PM,10/01/2013 06:49:07 PM,04/25/2016 01:50:29 PM,10/01/2013 06:56:38 PM,10/01/2013 07:06:12 PM,10/01/2013 07:13:41 PM,Code 2 Transport,10/01/2013 07:30:29 PM,FRANKLIN ST/FULTON ST,SF,94102,B02,36,3217,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7789568629409, -122.421709307211)",132740290-KM04 -111260357,E10,11041839,Medical Incident,05/06/2011,05/06/2011,05/06/2011 08:35:34 PM,05/06/2011 08:36:47 PM,05/06/2011 08:36:55 PM,05/06/2011 08:38:03 PM,05/06/2011 08:40:37 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 08:54:22 PM,300 Block of ARGUELLO BLVD,SF,94118,B07,10,7114,3,3,3,true,,1,ENGINE,2,7,2,Presidio Heights,"(37.7853734302241, -122.459087139493)",111260357-E10 -131110235,E34,13037442,Medical Incident,04/21/2013,04/21/2013,04/21/2013 05:13:28 PM,04/21/2013 05:16:11 PM,04/21/2013 05:16:30 PM,04/21/2013 05:17:22 PM,04/21/2013 05:20:15 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Fire,04/21/2013 05:28:23 PM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",131110235-E34 -122680206,88,12088552,Medical Incident,09/24/2012,09/24/2012,09/24/2012 01:24:14 PM,09/24/2012 01:26:20 PM,09/24/2012 01:26:41 PM,09/24/2012 01:27:00 PM,09/24/2012 01:42:15 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Patient Declined Transport,09/24/2012 02:03:59 PM,200 Block of HAHN ST,SF,94134,B09,43,6241,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7101932992299, -122.416700898623)",122680206-88 -132830119,84,13096253,Medical Incident,10/10/2013,10/10/2013,10/10/2013 10:12:00 AM,10/10/2013 10:12:17 AM,10/10/2013 10:12:57 AM,10/10/2013 10:13:27 AM,10/10/2013 10:17:04 AM,10/10/2013 10:34:27 AM,10/10/2013 10:48:20 AM,Code 2 Transport,10/10/2013 11:07:38 AM,200 Block of GOUGH ST,SF,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.775244832582, -122.422713876818)",132830119-84 -131510343,68,13051268,Medical Incident,05/31/2013,05/31/2013,05/31/2013 07:18:22 PM,05/31/2013 07:22:08 PM,05/31/2013 07:22:44 PM,05/31/2013 07:23:01 PM,05/31/2013 07:31:53 PM,05/31/2013 07:42:01 PM,05/31/2013 07:56:43 PM,Code 2 Transport,05/31/2013 08:23:19 PM,100 Block of VELASCO AVE,SF,,B09,44,6251,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,None,None,"(37.7083038138668, -122.41329801378)",131510343-68 -122510359,99,12083155,Medical Incident,09/07/2012,09/07/2012,09/07/2012 10:01:04 PM,09/07/2012 10:03:11 PM,09/07/2012 10:03:25 PM,09/07/2012 10:03:39 PM,09/07/2012 10:06:43 PM,09/07/2012 10:26:11 PM,04/25/2016 01:56:52 PM,Code 2 Transport,09/07/2012 10:55:23 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122510359-99 -122860161,KM12,12094590,Medical Incident,10/12/2012,10/12/2012,10/12/2012 01:00:01 PM,10/12/2012 01:02:43 PM,10/12/2012 01:04:11 PM,10/12/2012 01:07:32 PM,10/12/2012 01:13:13 PM,10/12/2012 01:36:24 PM,10/12/2012 01:55:21 PM,Code 2 Transport,10/12/2012 02:31:50 PM,200 Block of OAK PARK DR,SF,94131,B08,20,5367,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7546835865431, -122.45712997517)",122860161-KM12 -122280315,B10,12075666,Medical Incident,08/15/2012,08/15/2012,08/15/2012 07:02:18 PM,08/15/2012 07:02:18 PM,08/15/2012 07:02:18 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 07:09:36 PM,24TH ST/BRYANT ST,SF,94110,B06,9,5532,3,3,3,false,Potentially Life-Threatening,1,CHIEF,2,6,9,Mission,"(37.7527955849274, -122.409129910252)",122280315-B10 -122570277,E28,12085040,Medical Incident,09/13/2012,09/13/2012,09/13/2012 06:55:07 PM,09/13/2012 06:55:25 PM,09/13/2012 06:57:04 PM,09/13/2012 06:59:43 PM,09/13/2012 07:01:12 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/13/2012 07:19:09 PM,300 Block of BAY ST,SF,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8057759671113, -122.412787887195)",122570277-E28 -160790797,62,16031338,Medical Incident,03/19/2016,03/18/2016,03/19/2016 07:39:31 AM,03/19/2016 07:41:25 AM,03/19/2016 07:41:35 AM,03/19/2016 07:41:44 AM,03/19/2016 07:50:22 AM,03/19/2016 08:25:00 AM,03/19/2016 08:35:18 AM,Code 2 Transport,03/19/2016 09:08:14 AM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",160790797-62 -120360297,RS2,12012095,Structure Fire,02/05/2012,02/05/2012,02/05/2012 05:05:48 PM,02/05/2012 05:08:01 PM,02/05/2012 05:08:53 PM,02/05/2012 05:10:20 PM,02/05/2012 05:12:00 PM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/05/2012 05:18:12 PM,1400 Block of FRANKLIN ST,SF,94109,B04,3,3223,3,3,3,false,Fire,1,RESCUE SQUAD,3,4,2,Western Addition,"(37.7875634697164, -122.423519117413)",120360297-RS2 -123160135,58,12105118,Medical Incident,11/11/2012,11/11/2012,11/11/2012 10:59:47 AM,11/11/2012 11:00:59 AM,11/11/2012 11:01:29 AM,11/11/2012 11:01:39 AM,11/11/2012 11:07:37 AM,11/11/2012 11:26:33 AM,11/11/2012 11:32:46 AM,Code 2 Transport,11/11/2012 12:03:23 PM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.752766726673, -122.410519781929)",123160135-58 -133470024,T16,13117615,Structure Fire,12/13/2013,12/12/2013,12/13/2013 02:02:47 AM,12/13/2013 02:03:35 AM,12/13/2013 02:04:04 AM,12/13/2013 02:06:32 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/13/2013 02:15:27 AM,2300 Block of PACIFIC AVE,SF,94115,B04,38,3546,3,3,3,false,Alarm,1,TRUCK,8,4,2,Pacific Heights,"(37.7935066493689, -122.433922048128)",133470024-T16 -122490010,E44,12082208,Structure Fire,09/05/2012,09/04/2012,09/05/2012 12:27:53 AM,09/05/2012 12:28:42 AM,09/05/2012 12:29:09 AM,09/05/2012 12:35:29 AM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/05/2012 12:45:27 AM,1700 Block of BANCROFT AVE,SF,94124,B10,17,6537,3,3,3,true,Fire,1,ENGINE,9,10,10,Bayview Hunters Point,"(37.7268724745843, -122.394902680548)",122490010-E44 -130170243,55,13005829,Medical Incident,01/17/2013,01/17/2013,01/17/2013 02:52:08 PM,01/17/2013 02:53:31 PM,01/17/2013 02:56:15 PM,01/17/2013 02:56:27 PM,01/17/2013 03:13:57 PM,01/17/2013 03:27:04 PM,01/17/2013 03:36:33 PM,Code 2 Transport,01/17/2013 04:18:05 PM,1400 Block of 20TH AVE,SF,94122,B08,22,7426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7607159070903, -122.478068414702)",130170243-55 -112260087,92,11074598,Medical Incident,08/14/2011,08/14/2011,08/14/2011 08:40:16 AM,08/14/2011 08:40:46 AM,08/14/2011 08:40:54 AM,08/14/2011 08:41:04 AM,08/14/2011 08:44:34 AM,08/14/2011 08:59:42 AM,08/14/2011 09:13:10 AM,Code 2 Transport,08/14/2011 09:43:33 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",112260087-92 -112630167,AM02,11086806,Medical Incident,09/20/2011,09/20/2011,09/20/2011 11:07:01 AM,09/20/2011 11:08:00 AM,09/20/2011 11:09:28 AM,09/20/2011 11:11:38 AM,09/20/2011 11:16:08 AM,09/20/2011 11:24:02 AM,09/20/2011 11:39:21 AM,Code 2 Transport,09/20/2011 12:29:55 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",112630167-AM02 -120650261,E05,12021549,Alarms,03/05/2012,03/05/2012,03/05/2012 04:19:04 PM,03/05/2012 04:19:04 PM,03/05/2012 04:19:21 PM,03/05/2012 04:20:22 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/05/2012 04:21:34 PM,FILLMORE ST/GEARY BL,SF,94115,B04,5,3541,3,3,3,true,Alarm,1,ENGINE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",120650261-E05 -130420042,T01,13014212,Structure Fire,02/11/2013,02/10/2013,02/11/2013 04:36:58 AM,02/11/2013 04:37:55 AM,02/11/2013 04:38:02 AM,02/11/2013 04:39:37 AM,02/11/2013 04:42:51 AM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,Other,02/11/2013 04:50:22 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,Alarm,1,TRUCK,7,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",130420042-T01 -130080162,E02,13002718,Medical Incident,01/08/2013,01/08/2013,01/08/2013 11:33:13 AM,01/08/2013 11:35:58 AM,01/08/2013 11:36:42 AM,01/08/2013 11:38:48 AM,01/08/2013 11:38:50 AM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,Other,01/08/2013 11:49:21 AM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",130080162-E02 -121180432,B04,12039299,Alarms,04/27/2012,04/27/2012,04/27/2012 10:37:41 PM,04/27/2012 10:39:02 PM,04/27/2012 10:39:11 PM,04/27/2012 10:40:15 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 10:41:30 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,Alarm,1,CHIEF,6,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",121180432-B04 -120570108,E29,12018745,Medical Incident,02/26/2012,02/26/2012,02/26/2012 08:10:14 AM,02/26/2012 08:10:58 AM,02/26/2012 08:11:11 AM,02/26/2012 08:12:21 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 08:12:51 AM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,8,Mission,"(37.766322531621, -122.424723870424)",120570108-E29 -111650191,E28,11054442,Structure Fire,06/14/2011,06/14/2011,06/14/2011 01:00:12 PM,06/14/2011 01:00:12 PM,06/14/2011 01:00:17 PM,06/14/2011 01:01:08 PM,06/14/2011 01:02:43 PM,04/25/2016 02:04:10 PM,04/25/2016 02:04:10 PM,Other,06/14/2011 01:11:16 PM,2100 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8044382972452, -122.411605476142)",111650191-E28 -113050441,E11,11101490,Medical Incident,11/01/2011,11/01/2011,11/01/2011 10:05:21 PM,11/01/2011 10:06:02 PM,11/01/2011 10:06:43 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 10:11:22 PM,20TH ST/SHOTWELL ST,SF,94110,B06,7,5447,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7588302329897, -122.41577930019)",113050441-E11 -160741250,AM06,16029289,Medical Incident,03/14/2016,03/14/2016,03/14/2016 10:35:52 AM,03/14/2016 10:37:27 AM,03/14/2016 10:38:41 AM,03/14/2016 10:39:24 AM,03/14/2016 10:43:04 AM,03/14/2016 11:05:47 AM,03/14/2016 11:20:28 AM,Code 2 Transport,03/14/2016 11:56:48 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160741250-AM06 -112980003,E06,11098723,Medical Incident,10/25/2011,10/24/2011,10/25/2011 12:17:44 AM,10/25/2011 12:18:13 AM,10/25/2011 12:19:20 AM,10/25/2011 12:20:11 AM,10/25/2011 12:21:22 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 12:28:49 AM,0 Block of CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,,1,ENGINE,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",112980003-E06 -160310559,65,16012074,Traffic Collision,01/31/2016,01/30/2016,01/31/2016 04:29:31 AM,01/31/2016 04:31:57 AM,01/31/2016 04:33:08 AM,01/31/2016 04:33:15 AM,01/31/2016 04:49:44 AM,01/31/2016 05:10:41 AM,01/31/2016 05:28:32 AM,Code 2 Transport,01/31/2016 06:07:39 AM,2100 Block of SAN JOSE AV,San Francisco,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7228028607542, -122.444785549553)",160310559-65 -123300124,KM02,12109666,Medical Incident,11/25/2012,11/25/2012,11/25/2012 10:45:57 AM,11/25/2012 10:46:56 AM,11/25/2012 10:47:17 AM,11/25/2012 10:47:52 AM,11/25/2012 10:52:14 AM,11/25/2012 11:02:38 AM,11/25/2012 11:15:45 AM,Code 2 Transport,11/25/2012 11:33:33 AM,600 Block of 4TH ST,SF,94107,B03,8,2223,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.77797391183, -122.396186384499)",123300124-KM02 -132090259,E36,13070754,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:26:47 PM,07/28/2013 04:33:23 PM,07/28/2013 04:33:51 PM,07/28/2013 04:35:22 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 04:54:20 PM,200 Block of 10TH ST,SF,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",132090259-E36 -111710394,E22,11056569,Outside Fire,06/20/2011,06/20/2011,06/20/2011 11:08:35 PM,06/20/2011 11:09:47 PM,06/20/2011 11:09:59 PM,06/20/2011 11:11:42 PM,06/20/2011 11:14:04 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Fire,06/20/2011 11:29:20 PM,1600 Block of 17TH AVE,SF,94122,B08,22,7372,3,3,3,false,,1,ENGINE,1,8,7,Inner Sunset,"(37.7571285936027, -122.474597793083)",111710394-E22 -160170092,76,16006646,Medical Incident,01/17/2016,01/16/2016,01/17/2016 12:39:04 AM,01/17/2016 12:41:13 AM,01/17/2016 12:41:35 AM,01/17/2016 12:41:56 AM,01/17/2016 01:02:50 AM,01/17/2016 01:26:46 AM,01/17/2016 01:34:43 AM,Code 2 Transport,01/17/2016 02:30:16 AM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160170092-76 -130770021,93,13025590,Medical Incident,03/18/2013,03/17/2013,03/18/2013 03:00:15 AM,03/18/2013 03:01:47 AM,03/18/2013 03:02:15 AM,03/18/2013 03:02:57 AM,03/18/2013 03:06:26 AM,03/18/2013 03:15:41 AM,03/18/2013 03:23:33 AM,Code 3 Transport,03/18/2013 04:28:54 AM,900 Block of FRANKLIN ST,SF,94109,B02,3,3221,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7829271006902, -122.422442530821)",130770021-93 -103120285,E40,10100130,Medical Incident,11/08/2010,11/08/2010,11/08/2010 06:57:44 PM,11/08/2010 06:58:45 PM,11/08/2010 06:59:03 PM,11/08/2010 07:00:12 PM,11/08/2010 07:02:38 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 07:14:01 PM,500 Block of VICENTE ST,SF,94116,B08,40,7411,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7394969231551, -122.472760394335)",103120285-E40 -123120336,E36,12103960,Medical Incident,11/07/2012,11/07/2012,11/07/2012 09:04:13 PM,11/07/2012 09:05:51 PM,11/07/2012 09:06:35 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 09:08:36 PM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,5,5,Western Addition,"(37.7794051372088, -122.432762898818)",123120336-E36 -103080401,77,10098874,Medical Incident,11/04/2010,11/04/2010,11/04/2010 10:26:35 PM,11/04/2010 10:27:38 PM,11/04/2010 10:27:52 PM,11/04/2010 10:28:09 PM,11/04/2010 10:33:40 PM,11/04/2010 10:57:32 PM,11/04/2010 11:31:14 PM,Code 2 Transport,11/04/2010 11:50:00 PM,300 Block of VICTORIA ST,SF,94132,B09,33,841,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7170183759836, -122.46526241955)",103080401-77 -103050162,E13,10097464,Medical Incident,11/01/2010,11/01/2010,11/01/2010 10:26:07 AM,11/01/2010 10:27:32 AM,11/01/2010 10:28:25 AM,11/01/2010 10:29:12 AM,11/01/2010 10:32:42 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 10:42:47 AM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7908458791509, -122.396300374008)",103050162-E13 -160550306,AM24,16021872,Medical Incident,02/24/2016,02/23/2016,02/24/2016 04:04:33 AM,02/24/2016 04:05:14 AM,02/24/2016 04:05:27 AM,02/24/2016 04:06:06 AM,02/24/2016 04:13:12 AM,02/24/2016 04:22:21 AM,02/24/2016 04:37:54 AM,Code 2 Transport,02/24/2016 04:57:59 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160550306-AM24 -160241794,AM02,16009537,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:41:13 PM,01/24/2016 01:43:56 PM,01/24/2016 01:44:08 PM,01/24/2016 01:44:42 PM,01/24/2016 02:02:12 PM,01/24/2016 02:13:39 PM,01/24/2016 02:57:08 PM,Code 2 Transport,01/24/2016 03:17:03 PM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7968082637513, -122.408035995184)",160241794-AM02 -122100327,KM07,12069893,Medical Incident,07/28/2012,07/28/2012,07/28/2012 09:16:31 PM,07/28/2012 09:16:45 PM,07/28/2012 09:17:10 PM,07/28/2012 09:17:40 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 09:28:12 PM,JOHN MUIR DR/SKYLINE BL,SF,94132,B08,19,8714,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7189555597044, -122.500220952945)",122100327-KM07 -130290225,57,13009945,Medical Incident,01/29/2013,01/29/2013,01/29/2013 01:38:01 PM,01/29/2013 01:38:42 PM,01/29/2013 01:38:53 PM,01/29/2013 01:39:27 PM,01/29/2013 01:53:00 PM,01/29/2013 02:12:54 PM,01/29/2013 02:46:41 PM,Code 2 Transport,01/29/2013 03:37:54 PM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,true,Non Life-threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",130290225-57 -133500161,KM06,13118797,Medical Incident,12/16/2013,12/16/2013,12/16/2013 11:09:44 AM,12/16/2013 11:12:11 AM,12/16/2013 11:12:28 AM,12/16/2013 11:13:01 AM,12/16/2013 11:22:04 AM,12/16/2013 11:42:51 AM,12/16/2013 11:51:17 AM,Code 2 Transport,12/16/2013 12:24:03 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133500161-KM06 -120300032,E16,12009873,Medical Incident,01/30/2012,01/29/2012,01/30/2012 03:41:56 AM,01/30/2012 03:42:46 AM,01/30/2012 03:43:24 AM,01/30/2012 03:44:50 AM,01/30/2012 03:48:30 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/30/2012 03:54:02 AM,1400 Block of FRANCISCO ST,SF,94123,B04,16,3243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8027412588904, -122.429043718055)",120300032-E16 -102270333,T13,10071590,Alarms,08/15/2010,08/15/2010,08/15/2010 09:23:44 PM,08/15/2010 09:26:35 PM,08/15/2010 09:26:45 PM,08/15/2010 09:28:59 PM,08/15/2010 09:32:01 PM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,Other,08/15/2010 09:35:50 PM,500 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7905716665918, -122.405963225465)",102270333-T13 -140460072,RS1,14015569,Structure Fire,02/15/2014,02/14/2014,02/15/2014 06:02:55 AM,02/15/2014 06:03:37 AM,02/15/2014 06:03:47 AM,02/15/2014 06:05:45 AM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 06:09:26 AM,2300 Block of PINE ST,SF,94115,B04,38,3543,3,3,3,false,Alarm,1,RESCUE SQUAD,10,4,5,Pacific Heights,"(37.7877914845399, -122.434459190336)",140460072-RS1 -160321392,KM04,16012550,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:40:36 AM,02/01/2016 11:42:36 AM,02/01/2016 11:43:10 AM,02/01/2016 11:43:41 AM,02/01/2016 11:52:08 AM,02/01/2016 12:18:44 PM,02/01/2016 12:34:19 PM,Code 2 Transport,02/01/2016 01:17:24 PM,1200 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",160321392-KM04 -132780205,E07,13094518,Medical Incident,10/05/2013,10/05/2013,10/05/2013 01:42:27 PM,10/05/2013 01:43:26 PM,10/05/2013 01:43:40 PM,10/05/2013 01:44:50 PM,10/05/2013 01:46:34 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Other,10/05/2013 02:01:28 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",132780205-E07 -110450361,E01,11015080,Structure Fire,02/14/2011,02/14/2011,02/14/2011 09:30:51 PM,02/14/2011 09:30:51 PM,02/14/2011 09:31:19 PM,04/25/2016 02:06:05 PM,02/14/2011 09:33:23 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 09:34:34 PM,4TH ST/HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",110450361-E01 -120550276,E08,12018241,Medical Incident,02/24/2012,02/24/2012,02/24/2012 05:43:07 PM,02/24/2012 05:48:32 PM,02/24/2012 05:49:55 PM,02/24/2012 05:52:20 PM,02/24/2012 05:53:37 PM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 05:58:26 PM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",120550276-E08 -102340039,T05,10073505,Medical Incident,08/22/2010,08/21/2010,08/22/2010 02:39:22 AM,08/22/2010 02:40:14 AM,08/22/2010 02:43:30 AM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 02:49:01 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,,1,TRUCK,3,2,5,Western Addition,"(37.7818979587644, -122.428207532186)",102340039-T05 -123440290,E10,12115083,Medical Incident,12/09/2012,12/09/2012,12/09/2012 05:51:24 PM,12/09/2012 05:54:02 PM,12/09/2012 05:54:52 PM,12/09/2012 05:57:15 PM,12/09/2012 06:00:19 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 06:09:46 PM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,4436,1,1,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.78610251378, -122.455446445024)",123440290-E10 -160322451,KM04,16012656,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:20:40 PM,02/01/2016 04:21:43 PM,02/01/2016 04:23:13 PM,02/01/2016 04:23:49 PM,02/01/2016 04:27:52 PM,02/01/2016 04:57:13 PM,02/01/2016 05:20:25 PM,Code 2 Transport,02/01/2016 05:55:25 PM,400 Block of WALNUT ST,San Francisco,94118,B04,10,4421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7875219868232, -122.44849396272)",160322451-KM04 -123050389,KM05,12101356,Traffic Collision,10/31/2012,10/31/2012,10/31/2012 05:47:19 PM,10/31/2012 05:47:57 PM,10/31/2012 05:48:10 PM,10/31/2012 05:49:20 PM,10/31/2012 05:53:02 PM,10/31/2012 06:01:59 PM,10/31/2012 06:13:21 PM,Code 3 Transport,10/31/2012 06:53:56 PM,GENEVA AV/ALEMANY BL,SF,94112,B09,15,8331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7178334463476, -122.442328161761)",123050389-KM05 -160400627,89,16015910,Medical Incident,02/09/2016,02/08/2016,02/09/2016 07:45:32 AM,02/09/2016 07:46:39 AM,02/09/2016 07:47:40 AM,02/09/2016 07:50:58 AM,02/09/2016 07:58:43 AM,02/09/2016 08:10:37 AM,02/09/2016 08:25:18 AM,Code 2 Transport,02/09/2016 09:04:05 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160400627-89 -130060217,KM06,13002101,Medical Incident,01/06/2013,01/06/2013,01/06/2013 04:20:49 PM,01/06/2013 04:23:51 PM,01/06/2013 04:25:36 PM,01/06/2013 04:26:33 PM,01/06/2013 04:29:40 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 04:33:14 PM,200 Block of DORLAND ST,SF,94114,B02,6,5421,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7620293658927, -122.429546492088)",130060217-KM06 -140880040,68,14029519,Medical Incident,03/29/2014,03/28/2014,03/29/2014 02:25:08 AM,03/29/2014 02:25:08 AM,03/29/2014 02:25:18 AM,03/29/2014 02:25:30 AM,03/29/2014 02:27:24 AM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,Patient Declined Transport,03/29/2014 03:38:40 AM,800 Block of FOLSOM ST,SAN FRANCISCO,94107,B03,1,2244,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811056901316, -122.402224662374)",140880040-68 -160783146,88,16031128,Medical Incident,03/18/2016,03/18/2016,03/18/2016 06:25:55 PM,03/18/2016 06:27:32 PM,03/18/2016 06:28:05 PM,03/18/2016 06:28:17 PM,03/18/2016 06:37:15 PM,03/18/2016 06:47:44 PM,03/18/2016 07:11:47 PM,Code 2 Transport,03/18/2016 07:45:26 PM,0 Block of TURNER TER,San Francisco,94107,B10,37,2542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7566399872109, -122.395114989)",160783146-88 -102510379,B09,10079460,Alarms,09/08/2010,09/08/2010,09/08/2010 10:54:07 PM,09/08/2010 10:54:51 PM,09/08/2010 10:55:02 PM,09/08/2010 10:56:04 PM,09/08/2010 11:00:39 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 11:08:38 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",102510379-B09 -110560115,54,11018396,Medical Incident,02/25/2011,02/25/2011,02/25/2011 09:38:18 AM,02/25/2011 09:40:46 AM,02/25/2011 09:46:14 AM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,04/25/2016 02:05:55 PM,600 Block of DE HARO ST,SF,94107,B10,37,2511,2,2,2,true,,1,MEDIC,4,10,10,Potrero Hill,"(37.761655083303, -122.401193113905)",110560115-54 -102610135,T11,10082460,Alarms,09/18/2010,09/18/2010,09/18/2010 09:22:16 AM,09/18/2010 09:24:15 AM,09/18/2010 09:24:58 AM,09/18/2010 09:26:14 AM,09/18/2010 09:30:48 AM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,Other,09/18/2010 09:33:30 AM,900 Block of BOSWORTH ST,SF,94131,B09,26,8176,3,3,3,false,,1,TRUCK,1,9,8,West of Twin Peaks,"(37.7340314726179, -122.437117738602)",102610135-T11 -121000328,B07,12033258,Structure Fire,04/09/2012,04/09/2012,04/09/2012 06:37:48 PM,04/09/2012 06:38:24 PM,04/09/2012 06:38:45 PM,04/09/2012 06:40:41 PM,04/09/2012 06:43:05 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 06:47:24 PM,CALIFORNIA ST/28TH AV,SF,94121,B07,14,7227,3,3,3,false,Fire,1,CHIEF,3,7,2,Seacliff,"(37.7837371507807, -122.488217443175)",121000328-B07 -131890154,94,13064398,Medical Incident,07/08/2013,07/08/2013,07/08/2013 12:02:13 PM,07/08/2013 12:03:19 PM,07/08/2013 12:03:41 PM,07/08/2013 12:03:55 PM,07/08/2013 12:07:22 PM,07/08/2013 12:27:20 PM,07/08/2013 12:37:11 PM,Code 2 Transport,07/08/2013 01:06:09 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",131890154-94 -160352878,77,16013924,Medical Incident,02/04/2016,02/04/2016,02/04/2016 05:35:34 PM,02/04/2016 05:35:34 PM,02/04/2016 05:36:00 PM,02/04/2016 05:36:05 PM,02/04/2016 05:40:19 PM,02/04/2016 05:52:23 PM,02/04/2016 06:04:33 PM,Code 2 Transport,02/04/2016 06:23:06 PM,ANNIE ST/STEVENSON ST,San Francisco,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.787617863969, -122.402289884758)",160352878-77 -122510329,77,12083127,Medical Incident,09/07/2012,09/07/2012,09/07/2012 08:26:17 PM,09/07/2012 08:27:07 PM,09/07/2012 08:29:43 PM,09/07/2012 08:30:05 PM,09/07/2012 08:39:47 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Gone on Arrival,09/07/2012 08:41:57 PM,600 Block of PARIS ST,SF,94112,B09,43,6125,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7185378337317, -122.437431844651)",122510329-77 -140010507,AR1,14000428,Outside Fire,01/01/2014,01/01/2014,01/01/2014 06:09:58 PM,01/01/2014 06:10:50 PM,01/01/2014 06:33:06 PM,01/01/2014 06:33:06 PM,01/01/2014 06:34:20 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Fire,01/01/2014 07:19:53 PM,200 Block of CAPP ST,SF,94110,B02,7,5246,,3,3,false,Fire,1,INVESTIGATION,2,2,9,Mission,"(37.7627107311563, -122.4182793889)",140010507-AR1 -140780155,KM09,14026363,Medical Incident,03/19/2014,03/19/2014,03/19/2014 11:00:06 AM,03/19/2014 11:01:17 AM,03/19/2014 12:33:16 PM,03/19/2014 12:33:16 PM,03/19/2014 12:33:16 PM,03/19/2014 12:33:31 PM,04/25/2016 01:47:40 PM,Code 2 Transport,03/19/2014 12:33:49 PM,1100 Block of UNION ST,SAN FRANCISCO,94109,B01,41,1611,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,2,Russian Hill,"(37.7993058366445, -122.418648752342)",140780155-KM09 -160250177,53,16009757,Medical Incident,01/25/2016,01/24/2016,01/25/2016 01:48:57 AM,01/25/2016 01:50:22 AM,01/25/2016 01:51:44 AM,01/25/2016 01:52:07 AM,01/25/2016 02:13:36 AM,01/25/2016 02:13:37 AM,01/25/2016 02:24:03 AM,Code 2 Transport,01/25/2016 03:06:50 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160250177-53 -110780401,E18,11025859,Electrical Hazard,03/19/2011,03/19/2011,03/19/2011 11:18:41 PM,03/19/2011 11:21:29 PM,03/19/2011 11:21:54 PM,03/19/2011 11:23:18 PM,03/19/2011 11:26:45 PM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,Other,03/19/2011 11:32:18 PM,27TH AV/LAWTON ST,SF,94122,B08,18,7454,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7575893374448, -122.485306629409)",110780401-E18 -122300299,87,12076319,Structure Fire,08/17/2012,08/17/2012,08/17/2012 04:40:13 PM,08/17/2012 04:40:58 PM,08/17/2012 04:41:29 PM,08/17/2012 04:41:42 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 04:46:12 PM,100 Block of 29TH ST,SF,94110,B06,11,5576,3,3,3,true,Fire,1,MEDIC,9,6,8,Noe Valley,"(37.7438354653162, -122.423521889173)",122300299-87 -160461303,62,16018468,Medical Incident,02/15/2016,02/15/2016,02/15/2016 11:13:23 AM,02/15/2016 11:14:18 AM,02/15/2016 11:15:14 AM,02/15/2016 11:16:39 AM,02/15/2016 11:19:54 AM,02/15/2016 11:32:10 AM,02/15/2016 11:37:17 AM,Code 2 Transport,02/15/2016 12:22:17 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160461303-62 -160351190,55,16013763,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:18:11 AM,02/04/2016 10:21:01 AM,02/04/2016 10:21:14 AM,02/04/2016 10:21:31 AM,02/04/2016 10:30:00 AM,02/04/2016 10:38:45 AM,02/04/2016 11:22:28 AM,Code 2 Transport,02/04/2016 12:10:07 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160351190-55 -160520418,55,16020683,Medical Incident,02/21/2016,02/20/2016,02/21/2016 02:49:18 AM,02/21/2016 02:51:23 AM,02/21/2016 02:52:16 AM,02/21/2016 02:52:40 AM,02/21/2016 03:04:21 AM,02/21/2016 03:09:32 AM,02/21/2016 03:19:38 AM,Code 2 Transport,02/21/2016 04:00:21 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160520418-55 -160641591,75,16025482,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:46:05 AM,03/04/2016 11:47:00 AM,03/04/2016 11:47:16 AM,03/04/2016 11:48:00 AM,03/04/2016 11:52:01 AM,03/04/2016 11:57:38 AM,03/04/2016 12:10:02 PM,Code 3 Transport,03/04/2016 01:10:48 PM,500 Block of PARNASSUS AVE,San Francisco,94131,B05,12,7323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",160641591-75 -102760157,E39,10087707,Medical Incident,10/03/2010,10/03/2010,10/03/2010 11:04:32 AM,10/03/2010 11:05:15 AM,10/03/2010 11:05:39 AM,10/03/2010 11:05:59 AM,10/03/2010 11:07:36 AM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 11:36:48 AM,100 Block of MADRONE AVE,SF,94127,B08,39,8612,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7407800476092, -122.468014173503)",102760157-E39 -160613376,85,16024483,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:13:59 PM,03/01/2016 09:13:59 PM,03/01/2016 09:17:08 PM,03/01/2016 09:17:16 PM,03/01/2016 09:31:44 PM,03/01/2016 09:44:53 PM,03/01/2016 10:05:15 PM,Code 2 Transport,03/01/2016 10:40:20 PM,WAYLAND ST/UNIVERSITY ST,San Francisco,94134,B09,42,6345,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.7238582165262, -122.41296908292)",160613376-85 -132020159,E16,13068449,Water Rescue,07/21/2013,07/21/2013,07/21/2013 01:27:21 PM,07/21/2013 01:28:56 PM,07/21/2013 01:30:25 PM,07/21/2013 01:31:08 PM,07/21/2013 01:42:52 PM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 02:20:25 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,3,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132020159-E16 -130800200,67,13026755,Medical Incident,03/21/2013,03/21/2013,03/21/2013 12:59:54 PM,03/21/2013 01:00:24 PM,03/21/2013 01:01:40 PM,03/21/2013 01:02:09 PM,03/21/2013 01:07:36 PM,03/21/2013 01:27:50 PM,03/21/2013 01:40:41 PM,Code 2 Transport,03/21/2013 02:25:10 PM,1900 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",130800200-67 -122310334,E44,12076742,Gas Leak (Natural and LP Gases),08/18/2012,08/18/2012,08/18/2012 09:10:47 PM,08/18/2012 09:12:45 PM,08/18/2012 09:12:50 PM,08/18/2012 09:13:55 PM,08/18/2012 09:16:46 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 09:20:24 PM,300 Block of TEDDY AVE,SF,94134,B09,44,6312,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7153951688857, -122.409692952213)",122310334-E44 -130780157,67,13026000,Medical Incident,03/19/2013,03/19/2013,03/19/2013 10:27:43 AM,03/19/2013 10:29:29 AM,03/19/2013 10:29:38 AM,03/19/2013 10:29:54 AM,03/19/2013 10:34:10 AM,03/19/2013 10:59:38 AM,03/19/2013 11:11:18 AM,Code 2 Transport,03/19/2013 11:38:59 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",130780157-67 -131390027,E08,13046868,Medical Incident,05/19/2013,05/18/2013,05/19/2013 01:25:28 AM,05/19/2013 01:27:00 AM,05/19/2013 01:27:13 AM,05/19/2013 01:29:37 AM,05/19/2013 01:35:54 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,No Merit,05/19/2013 01:45:42 AM,300 Block of BERRY ST,SF,94158,B03,8,2235,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7731124835363, -122.39664007904)",131390027-E08 -122640197,E24,12087195,Medical Incident,09/20/2012,09/20/2012,09/20/2012 01:28:51 PM,09/20/2012 01:29:57 PM,09/20/2012 01:30:15 PM,09/20/2012 01:31:28 PM,09/20/2012 01:35:30 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 01:48:58 PM,5300 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",122640197-E24 -113020410,73,11100395,Medical Incident,10/29/2011,10/29/2011,10/29/2011 11:56:36 PM,10/29/2011 11:57:38 PM,10/29/2011 11:57:50 PM,10/29/2011 11:58:30 PM,04/25/2016 02:01:54 PM,10/30/2011 12:12:21 AM,10/30/2011 12:20:06 AM,Code 2 Transport,10/30/2011 12:49:36 AM,3100 Block of FILLMORE ST,SF,94123,B04,16,3553,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.7987282178823, -122.43575101831)",113020410-73 -160610970,AM10,16024242,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:48:09 AM,03/01/2016 09:48:09 AM,03/01/2016 09:48:27 AM,03/01/2016 09:49:24 AM,03/01/2016 09:55:31 AM,03/01/2016 10:06:26 AM,03/01/2016 10:13:39 AM,Code 2 Transport,03/01/2016 10:43:22 AM,3100 Block of 24TH ST,San Francisco,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7524180928571, -122.414623849785)",160610970-AM10 -122920177,83,12096735,Medical Incident,10/18/2012,10/18/2012,10/18/2012 11:51:35 AM,10/18/2012 11:53:56 AM,10/18/2012 11:54:29 AM,04/25/2016 01:56:14 PM,10/18/2012 12:06:25 PM,10/18/2012 12:21:59 PM,10/18/2012 12:45:05 PM,Code 2 Transport,10/18/2012 01:07:53 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",122920177-83 -160533639,53,16021399,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:07:55 PM,02/22/2016 11:09:09 PM,02/22/2016 11:09:39 PM,02/22/2016 11:09:50 PM,02/22/2016 11:15:10 PM,02/22/2016 11:32:29 PM,02/22/2016 11:45:45 PM,Fire,02/23/2016 01:00:15 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7608670671665, -122.434446928667)",160533639-53 -133000275,T03,13102025,Medical Incident,10/27/2013,10/27/2013,10/27/2013 05:17:55 PM,10/27/2013 05:20:10 PM,10/27/2013 05:20:26 PM,10/27/2013 05:20:34 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 05:22:36 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,TRUCK,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",133000275-T03 -131000289,RC2,13033693,Medical Incident,04/10/2013,04/10/2013,04/10/2013 04:55:00 PM,04/10/2013 04:56:29 PM,04/10/2013 05:00:09 PM,04/25/2016 01:53:23 PM,04/10/2013 05:04:25 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/10/2013 05:14:56 PM,500 Block of ARGUELLO BLVD,SF,94118,B07,31,7113,3,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.780292233646, -122.458864248937)",131000289-RC2 -110840282,E18,11027750,Traffic Collision,03/25/2011,03/25/2011,03/25/2011 04:35:40 PM,03/25/2011 04:35:40 PM,03/25/2011 04:36:09 PM,03/25/2011 04:48:28 PM,03/25/2011 04:39:15 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 05:11:15 PM,SUNSET BL/ULLOA ST,SF,94116,B08,18,7612,2,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7403563251836, -122.494312596203)",110840282-E18 -160062959,AM16,16002538,Medical Incident,01/06/2016,01/06/2016,01/06/2016 06:07:34 PM,01/06/2016 06:09:51 PM,01/06/2016 06:11:12 PM,01/06/2016 06:11:35 PM,01/06/2016 06:12:04 PM,01/06/2016 06:33:32 PM,01/06/2016 06:50:12 PM,Code 2 Transport,01/06/2016 07:14:29 PM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",160062959-AM16 -160732859,KM03,16029117,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:28:19 PM,03/13/2016 09:28:46 PM,03/13/2016 09:32:21 PM,03/13/2016 09:32:51 PM,03/13/2016 09:37:31 PM,03/13/2016 10:06:50 PM,03/13/2016 10:28:28 PM,Code 2 Transport,03/13/2016 11:10:28 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160732859-KM03 -130820340,E21,13027589,Medical Incident,03/23/2013,03/23/2013,03/23/2013 10:19:47 PM,03/23/2013 10:22:22 PM,03/23/2013 10:22:31 PM,03/23/2013 10:23:41 PM,03/23/2013 10:25:36 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/23/2013 10:27:28 PM,1000 Block of HAIGHT ST,SF,94117,B05,21,4246,3,3,3,false,Non Life-threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7710062058804, -122.439544330519)",130820340-E21 -133610273,83,13122754,Medical Incident,12/27/2013,12/27/2013,12/27/2013 06:36:03 PM,12/27/2013 06:36:44 PM,12/27/2013 06:39:05 PM,12/27/2013 06:39:11 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 06:51:10 PM,100 Block of 3RD ST,SF,94103,B03,1,2178,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7853906306613, -122.401027740415)",133610273-83 -132040206,E36,13069112,Medical Incident,07/23/2013,07/23/2013,07/23/2013 02:19:01 PM,07/23/2013 02:19:49 PM,07/23/2013 02:19:59 PM,07/23/2013 02:21:29 PM,07/23/2013 02:24:14 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 02:31:53 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",132040206-E36 -102490215,B10,10078724,Alarms,09/06/2010,09/06/2010,09/06/2010 03:31:56 PM,09/06/2010 03:33:49 PM,09/06/2010 03:35:04 PM,09/06/2010 03:36:59 PM,09/06/2010 03:39:42 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Fire,09/06/2010 03:41:09 PM,3100 Block of KAMILLE CT,SF,94110,B06,7,5533,B,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.7489045934703, -122.413186909994)",102490215-B10 -140500154,E38,14016956,Structure Fire,02/19/2014,02/19/2014,02/19/2014 12:43:57 PM,02/19/2014 12:44:31 PM,02/19/2014 12:44:49 PM,02/19/2014 12:45:19 PM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,Fire,02/19/2014 01:36:39 PM,2900 Block of LAGUNA ST,SF,94123,B04,16,3353,3,3,3,false,Alarm,1,ENGINE,8,4,2,Marina,"(37.7981909638084, -122.430584725411)",140500154-E38 -122240306,E17,12074384,Medical Incident,08/11/2012,08/11/2012,08/11/2012 07:19:15 PM,08/11/2012 07:20:47 PM,08/11/2012 07:20:59 PM,08/11/2012 07:22:36 PM,08/11/2012 07:25:07 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 07:34:03 PM,1000 Block of INGERSON AVE,SF,94124,B10,17,6612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7195997438228, -122.393956985315)",122240306-E17 -122630222,E03,12086896,Structure Fire,09/19/2012,09/19/2012,09/19/2012 03:34:22 PM,09/19/2012 03:35:11 PM,09/19/2012 03:35:42 PM,09/19/2012 03:36:38 PM,09/19/2012 03:37:12 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/19/2012 03:49:26 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Fire,1,ENGINE,2,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",122630222-E03 -131520196,T01,13051511,Alarms,06/01/2013,06/01/2013,06/01/2013 02:22:30 PM,06/01/2013 02:24:05 PM,06/01/2013 02:25:19 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 02:25:58 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,Alarm,1,TRUCK,3,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",131520196-T01 -132250182,E03,13075943,Alarms,08/13/2013,08/13/2013,08/13/2013 12:30:16 PM,08/13/2013 12:31:28 PM,08/13/2013 12:32:07 PM,08/13/2013 12:33:19 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 12:35:56 PM,200 Block of POST ST,SF,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7886509906461, -122.406006971458)",132250182-E03 -121340226,KM01,12044650,Medical Incident,05/13/2012,05/13/2012,05/13/2012 04:24:35 PM,05/13/2012 04:26:46 PM,05/13/2012 04:27:14 PM,05/13/2012 04:27:46 PM,05/13/2012 04:34:19 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Patient Declined Transport,05/13/2012 05:01:52 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7581042111797, -122.421163821698)",121340226-KM01 -110500092,E08,11016473,Medical Incident,02/19/2011,02/18/2011,02/19/2011 07:58:30 AM,02/19/2011 07:59:24 AM,02/19/2011 07:59:46 AM,02/19/2011 08:01:07 AM,02/19/2011 08:02:41 AM,02/19/2011 08:24:00 AM,04/25/2016 02:06:00 PM,Other,02/19/2011 08:44:56 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110500092-E08 -132300304,92,13077762,Medical Incident,08/18/2013,08/18/2013,08/18/2013 06:46:37 PM,08/18/2013 06:47:58 PM,08/18/2013 06:58:05 PM,08/18/2013 06:58:22 PM,08/18/2013 07:11:29 PM,08/18/2013 07:22:00 PM,08/18/2013 07:37:18 PM,Code 2 Transport,08/18/2013 08:07:33 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132300304-92 -111000195,79,11033227,Medical Incident,04/10/2011,04/10/2011,04/10/2011 01:44:47 PM,04/10/2011 01:45:15 PM,04/10/2011 01:45:40 PM,04/10/2011 01:46:45 PM,04/10/2011 01:54:28 PM,04/10/2011 02:15:55 PM,04/10/2011 02:38:58 PM,Code 2 Transport,04/10/2011 03:03:10 PM,800 Block of MIRAMAR AVE,SF,94112,B09,15,8511,3,2,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7304367304993, -122.458346694502)",111000195-79 -122550208,T01,12084304,Traffic Collision,09/11/2012,09/11/2012,09/11/2012 01:31:38 PM,09/11/2012 01:33:03 PM,09/11/2012 01:33:12 PM,09/11/2012 01:34:25 PM,09/11/2012 01:36:15 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 01:36:59 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,South of Market,"(37.7786769584105, -122.408601057595)",122550208-T01 -130460168,B01,13015583,Alarms,02/15/2013,02/15/2013,02/15/2013 11:02:55 AM,02/15/2013 11:05:07 AM,02/15/2013 11:05:25 AM,02/15/2013 11:06:00 AM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 11:10:29 AM,0 Block of WAVERLY PL,SF,94108,B01,2,1326,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7937477470757, -122.406800604626)",130460168-B01 -160784112,63,16031222,Medical Incident,03/18/2016,03/18/2016,03/18/2016 11:19:17 PM,03/18/2016 11:21:17 PM,03/18/2016 11:30:35 PM,03/18/2016 11:31:00 PM,03/18/2016 11:44:50 PM,03/19/2016 12:12:51 AM,03/19/2016 12:21:27 AM,Code 2 Transport,03/19/2016 12:33:17 AM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7688930095544, -122.42438060559)",160784112-63 -112140272,E41,11070701,Medical Incident,08/02/2011,08/02/2011,08/02/2011 05:05:07 PM,08/02/2011 05:07:37 PM,08/02/2011 05:07:52 PM,08/02/2011 05:08:54 PM,08/02/2011 05:10:12 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 05:24:32 PM,1700 Block of LARKIN ST,SF,94109,B01,41,1633,3,1,2,false,,1,ENGINE,1,1,3,Russian Hill,"(37.7939187842398, -122.41959752588)",112140272-E41 -111480291,75,11049183,Medical Incident,05/28/2011,05/28/2011,05/28/2011 08:06:36 PM,05/28/2011 08:06:59 PM,05/28/2011 08:07:40 PM,05/28/2011 08:07:50 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,04/25/2016 02:04:24 PM,OLMSTEAD ST/GIRARD ST,SF,94134,B10,44,6326,2,2,2,true,,1,MEDIC,1,10,9,Portola,"(37.7225740767609, -122.402604814524)",111480291-75 -112440323,AM18,11080570,Medical Incident,09/01/2011,09/01/2011,09/01/2011 08:10:36 PM,09/01/2011 08:11:25 PM,09/01/2011 08:12:15 PM,09/01/2011 08:13:10 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 08:20:19 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,2,2,2,false,,1,PRIVATE,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",112440323-AM18 -132120156,RC3,13071640,Medical Incident,07/31/2013,07/31/2013,07/31/2013 12:21:58 PM,07/31/2013 12:22:37 PM,07/31/2013 12:25:50 PM,07/31/2013 12:27:00 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 12:30:52 PM,1000 Block of WISCONSIN ST,SF,94107,B10,37,2565,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,10,10,Potrero Hill,"(37.7542876781547, -122.398580716544)",132120156-RC3 -160073008,75,16002959,Traffic Collision,01/07/2016,01/07/2016,01/07/2016 06:19:29 PM,01/07/2016 06:20:40 PM,01/07/2016 06:21:12 PM,01/07/2016 06:21:18 PM,01/07/2016 06:29:03 PM,01/07/2016 06:37:06 PM,01/07/2016 06:44:08 PM,Code 3 Transport,01/07/2016 07:47:07 PM,3100 Block of SAN JOSE AVE,San Francisco,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7087572220202, -122.458586011513)",160073008-75 -130400036,AM10,13013532,Medical Incident,02/09/2013,02/08/2013,02/09/2013 01:46:02 AM,02/09/2013 01:46:46 AM,02/09/2013 01:47:43 AM,02/09/2013 01:48:07 AM,02/09/2013 02:08:35 AM,02/09/2013 02:17:26 AM,02/09/2013 02:25:19 AM,Code 2 Transport,02/09/2013 02:55:41 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",130400036-AM10 -122890005,E28,12095463,Structure Fire,10/15/2012,10/14/2012,10/15/2012 12:11:39 AM,10/15/2012 12:11:40 AM,10/15/2012 12:12:00 AM,10/15/2012 12:13:33 AM,10/15/2012 12:15:51 AM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 12:25:59 AM,2100 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,false,Alarm,1,ENGINE,2,1,3,North Beach,"(37.8044382972452, -122.411605476142)",122890005-E28 -160312313,79,16012214,Medical Incident,01/31/2016,01/31/2016,01/31/2016 03:20:09 PM,01/31/2016 03:23:10 PM,01/31/2016 03:26:01 PM,01/31/2016 03:26:01 PM,01/31/2016 03:28:15 PM,01/31/2016 03:44:07 PM,01/31/2016 04:01:18 PM,Code 2 Transport,01/31/2016 04:28:58 PM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",160312313-79 -133100284,E03,13105472,Medical Incident,11/06/2013,11/06/2013,11/06/2013 05:19:29 PM,11/06/2013 05:22:39 PM,11/06/2013 05:22:47 PM,11/06/2013 05:24:02 PM,11/06/2013 05:28:11 PM,04/25/2016 01:49:53 PM,04/25/2016 01:49:53 PM,Other,11/06/2013 05:35:08 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",133100284-E03 -133410101,KM09,13115552,Medical Incident,12/07/2013,12/06/2013,12/07/2013 07:54:51 AM,12/07/2013 07:56:02 AM,12/07/2013 07:56:13 AM,12/07/2013 07:57:47 AM,12/07/2013 08:05:02 AM,12/07/2013 08:27:04 AM,12/07/2013 08:33:20 AM,Code 2 Transport,12/07/2013 09:19:47 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",133410101-KM09 -112000263,81,11066012,Medical Incident,07/19/2011,07/19/2011,07/19/2011 04:24:49 PM,07/19/2011 04:26:34 PM,07/19/2011 04:26:58 PM,07/19/2011 04:27:10 PM,07/19/2011 04:34:03 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Other,07/19/2011 04:35:16 PM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8084350175869, -122.410774214375)",112000263-81 -140260011,E13,14008755,Alarms,01/26/2014,01/25/2014,01/26/2014 12:26:06 AM,01/26/2014 12:29:15 AM,01/26/2014 12:30:03 AM,01/26/2014 12:30:15 AM,01/26/2014 12:31:22 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Fire,01/26/2014 12:35:36 AM,300 Block of SANSOME ST,SF,94104,B01,13,1166,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7937743739296, -122.401201213588)",140260011-E13 -121770081,B09,12058810,Alarms,06/25/2012,06/25/2012,06/25/2012 08:03:47 AM,06/25/2012 08:04:44 AM,06/25/2012 08:05:23 AM,06/25/2012 08:07:48 AM,06/25/2012 08:16:18 AM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/25/2012 08:16:33 AM,400 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,false,Alarm,1,CHIEF,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",121770081-B09 -121180109,94,12039030,Medical Incident,04/27/2012,04/27/2012,04/27/2012 09:10:38 AM,04/27/2012 09:11:33 AM,04/27/2012 09:12:46 AM,04/27/2012 09:13:13 AM,04/27/2012 09:23:34 AM,04/27/2012 09:47:17 AM,04/27/2012 09:57:26 AM,Code 2 Transport,04/27/2012 10:31:49 AM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",121180109-94 -120590281,RA48,12019506,Medical Incident,02/28/2012,02/28/2012,02/28/2012 05:38:36 PM,02/28/2012 05:40:06 PM,02/28/2012 05:43:20 PM,02/28/2012 05:47:28 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Other,02/28/2012 06:11:37 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,1,1,2,false,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",120590281-RA48 -131400433,T05,13047617,Structure Fire,05/20/2013,05/20/2013,05/20/2013 11:29:04 PM,05/20/2013 11:29:46 PM,05/20/2013 11:30:27 PM,05/20/2013 11:31:46 PM,05/21/2013 12:07:12 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 12:30:39 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,false,Fire,1,TRUCK,11,5,5,Western Addition,"(37.7797277077519, -122.431103473714)",131400433-T05 -120040309,B04,12001513,Structure Fire,01/04/2012,01/04/2012,01/04/2012 07:30:03 PM,01/04/2012 07:31:34 PM,01/04/2012 07:32:12 PM,01/04/2012 07:34:11 PM,01/04/2012 07:36:39 PM,04/25/2016 02:00:47 PM,04/25/2016 02:00:47 PM,Other,01/04/2012 07:36:52 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Fire,1,CHIEF,6,2,6,Mission,"(37.7740948566882, -122.420001436964)",120040309-B04 -122790068,E07,12092140,Alarms,10/05/2012,10/04/2012,10/05/2012 07:10:38 AM,10/05/2012 07:11:58 AM,10/05/2012 07:12:11 AM,10/05/2012 07:13:55 AM,10/05/2012 07:17:32 AM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/05/2012 07:17:38 AM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",122790068-E07 -121890040,E03,12062851,Medical Incident,07/07/2012,07/06/2012,07/07/2012 03:29:46 AM,07/07/2012 03:30:43 AM,07/07/2012 03:30:58 AM,07/07/2012 03:32:31 AM,07/07/2012 03:34:35 AM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/07/2012 03:47:40 AM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7855029033652, -122.414807788747)",121890040-E03 -113400299,E18,11112785,Traffic Collision,12/06/2011,12/06/2011,12/06/2011 04:47:14 PM,12/06/2011 04:49:05 PM,12/06/2011 04:50:38 PM,12/06/2011 04:59:24 PM,12/06/2011 05:03:00 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/06/2011 05:14:33 PM,GREAT HY/NORIEGA ST,SF,94122,B08,23,7725,2,2,2,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7528302279051, -122.508432394418)",113400299-E18 -160743618,53,16029480,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:42:56 PM,03/14/2016 08:43:30 PM,03/14/2016 08:43:51 PM,03/14/2016 08:44:39 PM,03/14/2016 08:50:34 PM,03/14/2016 08:56:42 PM,03/14/2016 09:24:21 PM,Patient Declined Transport,03/14/2016 09:46:06 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160743618-53 -122160117,E36,12071623,Medical Incident,08/03/2012,08/03/2012,08/03/2012 09:42:36 AM,08/03/2012 09:42:51 AM,08/03/2012 09:43:07 AM,08/03/2012 09:43:41 AM,08/03/2012 09:45:37 AM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Other,08/03/2012 09:46:46 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",122160117-E36 -131170021,85,13039218,Medical Incident,04/27/2013,04/26/2013,04/27/2013 01:02:14 AM,04/27/2013 01:03:39 AM,04/27/2013 01:03:59 AM,04/27/2013 01:04:15 AM,04/27/2013 01:08:42 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Patient Declined Transport,04/27/2013 01:37:09 AM,3000 Block of GOUGH ST,SF,94123,B04,16,3244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8013661410742, -122.427991917809)",131170021-85 -111410282,86,11046946,Medical Incident,05/21/2011,05/21/2011,05/21/2011 07:03:49 PM,05/21/2011 07:03:50 PM,05/21/2011 07:03:50 PM,05/21/2011 07:04:36 PM,05/21/2011 07:08:40 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,Against Medical Advice,05/21/2011 07:32:37 PM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",111410282-86 -110020069,E06,11000572,Structure Fire,01/02/2011,01/01/2011,01/02/2011 07:17:35 AM,01/02/2011 07:18:06 AM,01/02/2011 07:18:24 AM,01/02/2011 07:19:14 AM,01/02/2011 07:22:55 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 08:40:12 AM,700 Block of ASHBURY ST,SF,94117,B05,12,5143,3,3,3,true,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7681560288269, -122.44648875825)",110020069-E06 -120810372,54,12027050,Medical Incident,03/21/2012,03/21/2012,03/21/2012 09:57:43 PM,03/21/2012 09:59:53 PM,03/21/2012 10:00:12 PM,03/21/2012 10:00:31 PM,03/21/2012 10:05:29 PM,03/21/2012 10:22:55 PM,03/21/2012 10:27:39 PM,Code 2 Transport,03/21/2012 10:47:44 PM,3100 Block of 26TH ST,SF,94110,B06,7,5614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7492662278285, -122.413486484875)",120810372-54 -121200337,85,12039975,Medical Incident,04/29/2012,04/29/2012,04/29/2012 08:33:09 PM,04/29/2012 08:34:33 PM,04/29/2012 08:34:46 PM,04/29/2012 08:35:03 PM,04/29/2012 08:40:36 PM,04/29/2012 09:00:01 PM,04/29/2012 09:08:15 PM,Code 2 Transport,04/29/2012 09:38:50 PM,0 Block of POLK ST,SF,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7769444030522, -122.417995382094)",121200337-85 -102360168,B07,10074301,Alarms,08/24/2010,08/24/2010,08/24/2010 12:10:23 PM,08/24/2010 12:11:15 PM,08/24/2010 12:11:26 PM,08/24/2010 12:13:05 PM,08/24/2010 12:14:52 PM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 12:22:04 PM,200 Block of 11TH AVE,SF,94118,B07,31,7141,3,3,3,false,,1,CHIEF,2,7,1,Inner Richmond,"(37.783634135396, -122.469908011173)",102360168-B07 -160891537,KM13,16035316,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:38:59 AM,03/29/2016 11:41:32 AM,03/29/2016 11:42:28 AM,03/29/2016 11:42:40 AM,03/29/2016 11:49:33 AM,03/29/2016 12:22:23 PM,03/29/2016 12:38:36 PM,Code 2 Transport,03/29/2016 01:19:25 PM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160891537-KM13 -111930001,E17,11063572,Vehicle Fire,07/11/2011,07/11/2011,07/11/2011 11:59:54 PM,07/12/2011 12:01:25 AM,07/12/2011 12:03:14 AM,07/12/2011 12:05:08 AM,07/12/2011 12:08:10 AM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Fire,07/12/2011 12:32:55 AM,600 Block of JAMESTOWN AVE,SF,94124,B10,17,6577,3,3,3,false,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7131072321423, -122.387833652325)",111930001-E17 -123050400,E01,12101367,Medical Incident,10/31/2012,10/31/2012,10/31/2012 06:04:53 PM,10/31/2012 06:05:10 PM,10/31/2012 06:05:26 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 06:07:02 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2253,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7789337876718, -122.404974448604)",123050400-E01 -140480050,E13,14016233,Alarms,02/17/2014,02/16/2014,02/17/2014 04:54:00 AM,02/17/2014 04:54:55 AM,02/17/2014 04:55:03 AM,02/17/2014 04:56:44 AM,02/17/2014 05:00:39 AM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Fire,02/17/2014 06:06:20 AM,0 Block of KEARNY ST,SF,94108,B01,1,1241,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7877942875414, -122.403529728368)",140480050-E13 -133210029,E36,13108913,Traffic Collision,11/17/2013,11/16/2013,11/17/2013 01:36:28 AM,11/17/2013 01:37:25 AM,11/17/2013 01:37:58 AM,04/25/2016 01:49:43 PM,11/17/2013 01:38:11 AM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 01:52:32 AM,OCTAVIA ST/MARKET ST,SF,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",133210029-E36 -160171012,53,16006770,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:47:19 AM,01/17/2016 09:48:36 AM,01/17/2016 09:48:52 AM,01/17/2016 09:49:02 AM,01/17/2016 09:57:44 AM,01/17/2016 10:16:14 AM,01/17/2016 10:31:24 AM,Code 2 Transport,01/17/2016 11:21:05 AM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160171012-53 -160083747,65,16003433,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:42:41 PM,01/08/2016 09:44:20 PM,01/08/2016 09:44:42 PM,01/08/2016 09:45:23 PM,01/08/2016 09:57:23 PM,01/08/2016 10:01:48 PM,01/08/2016 10:17:43 PM,Code 2 Transport,01/08/2016 10:41:55 PM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7352738344938, -122.391413470729)",160083747-65 -103290291,E03,10105468,Medical Incident,11/25/2010,11/25/2010,11/25/2010 08:56:06 PM,11/25/2010 08:58:46 PM,11/25/2010 08:59:46 PM,11/25/2010 09:00:38 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/25/2010 09:01:50 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",103290291-E03 -160412488,73,16016523,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:52:55 PM,02/10/2016 03:54:40 PM,02/10/2016 03:55:26 PM,02/10/2016 03:55:41 PM,02/10/2016 04:04:36 PM,02/10/2016 04:26:25 PM,02/10/2016 04:56:49 PM,Code 3 Transport,02/10/2016 05:21:52 PM,2400 Block of KEITH ST,San Francisco,94124,B10,17,6546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",160412488-73 -110730255,E06,11024063,Medical Incident,03/14/2011,03/14/2011,03/14/2011 03:16:06 PM,03/14/2011 03:16:30 PM,03/14/2011 03:16:43 PM,03/14/2011 03:17:40 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 03:20:33 PM,1300 Block of FELL ST,SF,94117,B05,21,4252,3,3,3,true,,1,ENGINE,3,5,5,Hayes Valley,"(37.7736869919131, -122.440088215983)",110730255-E06 -111480355,B01,11049244,Alarms,05/28/2011,05/28/2011,05/28/2011 11:52:06 PM,05/28/2011 11:53:13 PM,05/28/2011 11:53:21 PM,05/28/2011 11:55:04 PM,05/29/2011 12:00:24 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 12:03:11 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",111480355-B01 -160420641,82,16016759,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:52:14 AM,02/11/2016 07:53:53 AM,02/11/2016 07:54:10 AM,02/11/2016 07:54:24 AM,02/11/2016 08:00:38 AM,02/11/2016 08:25:07 AM,02/11/2016 09:00:17 AM,Code 2 Transport,02/11/2016 09:37:13 AM,200 Block of JOOST AVE,San Francisco,94131,B09,26,8214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7323075322144, -122.440886977076)",160420641-82 -140240306,E41,14008274,Medical Incident,01/24/2014,01/24/2014,01/24/2014 04:27:05 PM,01/24/2014 04:28:17 PM,01/24/2014 04:28:35 PM,01/24/2014 04:29:32 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/24/2014 04:31:07 PM,JONES ST/BUSH ST,SF,94109,B01,41,1446,,3,3,false,Potentially Life-Threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7895293173979, -122.413728390683)",140240306-E41 -130620286,KM12,13020862,Medical Incident,03/03/2013,03/03/2013,03/03/2013 04:59:14 PM,03/03/2013 05:00:31 PM,03/03/2013 05:00:58 PM,03/03/2013 05:01:34 PM,03/03/2013 05:04:44 PM,03/03/2013 05:20:09 PM,03/03/2013 05:33:46 PM,Code 2 Transport,03/03/2013 06:08:23 PM,1200 Block of MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",130620286-KM12 -140810073,AM24,14027274,Medical Incident,03/22/2014,03/21/2014,03/22/2014 07:02:03 AM,03/22/2014 07:02:48 AM,03/22/2014 07:03:05 AM,03/22/2014 07:03:39 AM,03/22/2014 07:06:30 AM,03/22/2014 07:09:11 AM,03/22/2014 07:18:51 AM,Code 2 Transport,03/22/2014 07:55:48 AM,900 Block of MARKET ST,SAN FRANCISCO,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",140810073-AM24 -133330142,67,13112926,Medical Incident,11/29/2013,11/29/2013,11/29/2013 12:58:32 PM,11/29/2013 12:59:43 PM,11/29/2013 01:00:30 PM,11/29/2013 01:01:41 PM,11/29/2013 01:10:21 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Patient Declined Transport,11/29/2013 01:28:35 PM,900 Block of MARKET ST,SF,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",133330142-67 -160651439,56,16025907,Medical Incident,03/05/2016,03/05/2016,03/05/2016 12:00:08 PM,03/05/2016 12:01:15 PM,03/05/2016 12:01:54 PM,03/05/2016 12:02:01 PM,03/05/2016 12:10:42 PM,03/05/2016 12:27:24 PM,03/05/2016 12:47:39 PM,Code 2 Transport,03/05/2016 01:58:17 PM,600 Block of COLBY ST,San Francisco,94134,B09,42,6344,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7223322748016, -122.411171674482)",160651439-56 -160892302,KM01,16035377,Medical Incident,03/29/2016,03/29/2016,03/29/2016 02:53:57 PM,03/29/2016 02:55:40 PM,03/29/2016 02:55:59 PM,03/29/2016 02:56:28 PM,03/29/2016 03:00:07 PM,03/29/2016 03:23:03 PM,03/29/2016 03:34:38 PM,Code 2 Transport,03/29/2016 04:16:44 PM,2500 Block of JUDAH ST,San Francisco,94122,B08,18,7513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7612125537078, -122.489320068189)",160892302-KM01 -110440039,B10,11014516,Medical Incident,02/13/2011,02/12/2011,02/13/2011 01:56:10 AM,02/13/2011 01:56:42 AM,02/13/2011 01:57:46 AM,02/13/2011 02:00:25 AM,02/13/2011 02:03:34 AM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 02:06:24 AM,3RD ST/PALOU AV,SF,94124,B10,17,6515,E,E,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",110440039-B10 -160161014,79,16006351,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:30:53 AM,01/16/2016 09:31:21 AM,01/16/2016 09:31:33 AM,01/16/2016 09:31:55 AM,01/16/2016 09:37:08 AM,01/16/2016 09:57:21 AM,01/16/2016 10:17:13 AM,Code 2 Transport,01/16/2016 10:39:10 AM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160161014-79 -102530024,E12,10079803,Medical Incident,09/10/2010,09/09/2010,09/10/2010 02:22:30 AM,09/10/2010 02:23:07 AM,09/10/2010 02:23:31 AM,09/10/2010 02:25:17 AM,09/10/2010 02:27:48 AM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/10/2010 02:56:15 AM,1200 Block of 4TH AVE,SF,94122,B05,12,7324,E,E,3,true,,1,ENGINE,2,5,5,Inner Sunset,"(37.7647436571219, -122.460921329608)",102530024-E12 -130530126,KM11,13017867,Medical Incident,02/22/2013,02/22/2013,02/22/2013 10:31:16 AM,02/22/2013 10:32:26 AM,02/22/2013 10:33:26 AM,02/22/2013 10:34:12 AM,04/25/2016 01:54:10 PM,02/22/2013 11:00:18 AM,02/22/2013 11:17:15 AM,Code 2 Transport,02/22/2013 11:47:39 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",130530126-KM11 -131450204,KM12,13049218,Medical Incident,05/25/2013,05/25/2013,05/25/2013 03:32:07 PM,05/25/2013 03:33:42 PM,05/25/2013 03:33:56 PM,05/25/2013 03:34:29 PM,05/25/2013 03:42:27 PM,05/25/2013 04:06:52 PM,05/25/2013 04:25:01 PM,Code 2 Transport,05/25/2013 05:02:44 PM,2800 Block of JACKSON ST,SF,94115,B04,10,4231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7914702134705, -122.44197971729)",131450204-KM12 -111560290,B07,11051655,Structure Fire,06/05/2011,06/05/2011,06/05/2011 04:40:49 PM,06/05/2011 04:41:26 PM,06/05/2011 04:41:37 PM,06/05/2011 04:43:10 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/05/2011 04:49:45 PM,2000 Block of 10TH AVE,SF,94116,B08,40,7341,3,3,3,false,,1,CHIEF,7,8,7,Inner Sunset,"(37.7500039400277, -122.466471699023)",111560290-B07 -102840205,T19,10090436,Structure Fire,10/11/2010,10/11/2010,10/11/2010 02:08:53 PM,10/11/2010 02:08:53 PM,10/11/2010 02:09:07 PM,10/11/2010 02:10:22 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Fire,10/11/2010 02:11:55 PM,EUCALYPTUS DR/MELBA AV,SF,94132,B08,19,8733,3,3,3,false,,1,TRUCK,2,8,7,Sunset/Parkside,"(37.7311290065009, -122.478246639408)",102840205-T19 -160701566,AM02,16027846,Medical Incident,03/10/2016,03/10/2016,03/10/2016 12:25:27 PM,03/10/2016 12:26:20 PM,03/10/2016 12:26:33 PM,03/10/2016 12:28:37 PM,03/10/2016 12:33:53 PM,03/10/2016 12:57:55 PM,03/10/2016 02:03:46 PM,Code 2 Transport,03/10/2016 02:04:58 PM,1300 Block of 24TH AVE,San Francisco,94122,B08,22,7451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.762398164889, -122.48234823338)",160701566-AM02 -120060339,79,12002213,Medical Incident,01/06/2012,01/06/2012,01/06/2012 08:57:20 PM,01/06/2012 08:58:38 PM,01/06/2012 08:59:55 PM,01/06/2012 09:00:19 PM,01/06/2012 09:08:03 PM,01/06/2012 09:14:22 PM,01/06/2012 09:29:06 PM,Code 2 Transport,01/06/2012 09:49:55 PM,2100 Block of NORIEGA ST,SF,94122,B08,18,7515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7537371684148, -122.486646700631)",120060339-79 -121840090,KM04,12061213,Medical Incident,07/02/2012,07/02/2012,07/02/2012 09:55:24 AM,07/02/2012 09:56:54 AM,07/02/2012 09:57:25 AM,07/02/2012 09:58:05 AM,07/02/2012 10:19:21 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Patient Declined Transport,07/02/2012 10:31:51 AM,VAN NESS AV/MARKET ST,SF,94103,B02,36,3211,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7751470741622, -122.419255607214)",121840090-KM04 -160342429,66,16013475,Medical Incident,02/03/2016,02/03/2016,02/03/2016 04:24:58 PM,02/03/2016 04:26:32 PM,02/03/2016 04:28:48 PM,02/03/2016 04:34:37 PM,02/03/2016 04:47:41 PM,02/03/2016 05:07:53 PM,02/03/2016 05:15:56 PM,Code 2 Transport,02/03/2016 05:28:50 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160342429-66 -160531102,65,16021148,Medical Incident,02/22/2016,02/22/2016,02/22/2016 10:13:01 AM,02/22/2016 10:14:33 AM,02/22/2016 10:15:45 AM,02/22/2016 10:15:45 AM,02/22/2016 10:23:28 AM,02/22/2016 10:39:02 AM,02/22/2016 10:57:07 AM,Code 2 Transport,02/22/2016 11:28:14 AM,1200 Block of NOE ST,San Francisco,94114,B06,11,554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7494248005842, -122.43174723)",160531102-65 -110890382,84,11029568,Medical Incident,03/30/2011,03/30/2011,03/30/2011 09:40:00 PM,03/30/2011 09:41:53 PM,03/30/2011 09:43:11 PM,03/30/2011 09:43:16 PM,04/25/2016 02:05:22 PM,03/30/2011 10:02:06 PM,03/30/2011 10:08:51 PM,Code 2 Transport,03/30/2011 10:25:04 PM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",110890382-84 -130480322,68,13016504,Medical Incident,02/17/2013,02/17/2013,02/17/2013 07:28:43 PM,02/17/2013 07:32:54 PM,02/17/2013 07:36:02 PM,02/17/2013 07:36:20 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,04/25/2016 01:54:14 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",130480322-68 -160013434,KM07,16000485,Medical Incident,01/01/2016,01/01/2016,01/01/2016 08:19:22 PM,01/01/2016 08:19:22 PM,01/01/2016 08:21:05 PM,01/01/2016 08:21:37 PM,01/01/2016 08:26:31 PM,01/01/2016 08:30:56 PM,01/01/2016 08:58:21 PM,Code 2 Transport,01/01/2016 09:44:13 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160013434-KM07 -160372333,88,16014747,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:54:28 PM,02/06/2016 02:55:28 PM,02/06/2016 02:55:39 PM,02/06/2016 02:55:51 PM,02/06/2016 03:01:10 PM,02/06/2016 03:12:44 PM,02/06/2016 03:26:52 PM,Code 2 Transport,02/06/2016 04:00:19 PM,18TH ST/DANVERS ST,San Francisco,94114,B05,24,5413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Castro/Upper Market,"(37.7603763288141, -122.443374430229)",160372333-88 -132690196,AM24,13091358,Medical Incident,09/26/2013,09/26/2013,09/26/2013 01:01:15 PM,09/26/2013 01:02:25 PM,09/26/2013 01:03:05 PM,09/26/2013 01:06:52 PM,09/26/2013 01:12:36 PM,09/26/2013 01:36:07 PM,09/26/2013 02:01:10 PM,Code 2 Transport,09/26/2013 02:35:05 PM,0 Block of LAGUNITAS DR,SF,94132,B08,19,8721,1,1,2,false,Non Life-threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7330825928908, -122.473545704125)",132690196-AM24 -160870972,50,16034509,Medical Incident,03/27/2016,03/27/2016,03/27/2016 08:41:59 AM,03/27/2016 08:44:05 AM,03/27/2016 08:44:19 AM,03/27/2016 08:44:36 AM,03/27/2016 08:56:26 AM,03/27/2016 09:11:11 AM,03/27/2016 09:25:30 AM,Code 3 Transport,03/27/2016 10:17:16 AM,1300 Block of MASONIC AV,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7683637282341, -122.444850432809)",160870972-50 -111860408,T03,11061660,Structure Fire,07/05/2011,07/05/2011,07/05/2011 10:52:43 PM,07/05/2011 10:52:44 PM,07/05/2011 10:52:54 PM,07/05/2011 10:54:26 PM,07/05/2011 10:54:35 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/05/2011 10:54:45 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",111860408-T03 -110410045,E44,11013469,Medical Incident,02/10/2011,02/09/2011,02/10/2011 05:28:50 AM,02/10/2011 05:32:15 AM,02/10/2011 05:32:42 AM,02/10/2011 05:35:10 AM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 05:43:11 AM,200 Block of ARGONAUT AVE,SF,94134,B09,44,6248,3,3,3,true,,1,ENGINE,2,9,10,Visitacion Valley,"(37.7107197085034, -122.414620256792)",110410045-E44 -102580366,E22,10081647,Structure Fire,09/15/2010,09/15/2010,09/15/2010 09:44:25 PM,09/15/2010 09:44:41 PM,09/15/2010 09:46:17 PM,09/15/2010 09:47:42 PM,09/15/2010 09:51:34 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/15/2010 09:51:38 PM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,false,,1,ENGINE,5,5,5,Haight Ashbury,"(37.7692177178614, -122.452690310191)",102580366-E22 -122060364,E01,12068649,Alarms,07/24/2012,07/24/2012,07/24/2012 10:08:43 PM,07/24/2012 10:09:48 PM,07/24/2012 10:09:58 PM,07/24/2012 10:11:40 PM,07/24/2012 10:14:39 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Other,07/24/2012 10:19:49 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",122060364-E01 -111970006,E19,11064868,Alarms,07/16/2011,07/15/2011,07/16/2011 12:36:03 AM,07/16/2011 12:38:17 AM,07/16/2011 12:38:28 AM,07/16/2011 12:40:04 AM,07/16/2011 12:43:07 AM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/16/2011 01:07:29 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",111970006-E19 -140650123,RC1,14021918,Medical Incident,03/06/2014,03/06/2014,03/06/2014 09:53:14 AM,03/06/2014 09:55:01 AM,03/06/2014 09:56:05 AM,03/06/2014 09:56:05 AM,03/06/2014 09:56:59 AM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Code 2 Transport,03/06/2014 10:02:49 AM,400 Block of 3RD ST,SAN FRANCISCO,94107,B03,8,2174,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Financial District/South Beach,"(37.7823750775991, -122.397064398742)",140650123-RC1 -160082249,60,16003288,Traffic Collision,01/08/2016,01/08/2016,01/08/2016 03:00:03 PM,01/08/2016 03:01:56 PM,01/08/2016 03:04:30 PM,01/08/2016 03:04:30 PM,01/08/2016 03:09:45 PM,01/08/2016 03:24:58 PM,01/08/2016 04:06:11 PM,Code 2 Transport,01/08/2016 04:38:26 PM,CALL BOX:,Presidio,94129,B99,51,4628,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio,"(37.8047254974409, -122.470058256513)",160082249-60 -130540232,RS2,13018302,Structure Fire,02/23/2013,02/23/2013,02/23/2013 04:33:40 PM,02/23/2013 04:34:03 PM,02/23/2013 04:34:33 PM,02/23/2013 04:35:04 PM,02/23/2013 04:43:55 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 04:59:25 PM,0 Block of DE LONG ST,SF,94112,B09,33,8357,3,3,3,false,Fire,1,RESCUE SQUAD,8,9,11,Outer Mission,"(37.7097160253437, -122.459870520587)",130540232-RS2 -113350331,RS1,11111038,Medical Incident,12/01/2011,12/01/2011,12/01/2011 08:53:34 PM,12/01/2011 08:54:53 PM,12/01/2011 08:55:41 PM,12/01/2011 08:56:27 PM,12/01/2011 08:58:20 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/01/2011 09:13:37 PM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,3,2,2,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",113350331-RS1 -160793129,57,16031509,Medical Incident,03/19/2016,03/19/2016,03/19/2016 06:08:34 PM,03/19/2016 06:08:52 PM,03/19/2016 06:09:11 PM,03/19/2016 06:09:22 PM,03/19/2016 06:14:34 PM,03/19/2016 06:33:41 PM,03/19/2016 07:01:15 PM,Code 2 Transport,03/19/2016 07:32:42 PM,400 Block of 20TH AVE,San Francisco,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7793682984654, -122.479380963947)",160793129-57 -113190155,CR1,11105915,Water Rescue,11/15/2011,11/15/2011,11/15/2011 10:50:39 AM,11/15/2011 10:51:34 AM,11/15/2011 10:52:29 AM,11/15/2011 10:57:13 AM,11/15/2011 11:16:35 AM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 11:16:55 AM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,,1,SUPPORT,8,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",113190155-CR1 -133390248,83,13114931,Traffic Collision,12/05/2013,12/05/2013,12/05/2013 03:07:20 PM,12/05/2013 03:09:27 PM,12/05/2013 03:10:06 PM,12/05/2013 03:10:19 PM,12/05/2013 03:18:25 PM,12/05/2013 03:36:45 PM,12/05/2013 03:57:46 PM,Code 2 Transport,12/05/2013 04:27:08 PM,JACKSON ST/PRESIDIO AV,SF,94115,B04,10,4414,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Presidio Heights,"(37.7908230221786, -122.447501496784)",133390248-83 -122050371,T01,12068337,Structure Fire,07/23/2012,07/23/2012,07/23/2012 11:58:36 PM,07/23/2012 11:59:58 PM,07/24/2012 12:00:12 AM,07/24/2012 12:03:09 AM,07/24/2012 12:05:00 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 12:48:47 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Fire,1,TRUCK,4,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",122050371-T01 -123470026,82,12115886,Medical Incident,12/12/2012,12/11/2012,12/12/2012 02:22:43 AM,12/12/2012 02:26:21 AM,12/12/2012 02:26:59 AM,12/12/2012 02:28:01 AM,12/12/2012 02:39:12 AM,12/12/2012 03:01:55 AM,12/12/2012 03:05:24 AM,Code 2 Transport,12/12/2012 03:46:09 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",123470026-82 -160302588,KM04,16011862,Medical Incident,01/30/2016,01/30/2016,01/30/2016 04:06:10 PM,01/30/2016 04:06:30 PM,01/30/2016 04:11:11 PM,01/30/2016 04:12:49 PM,01/30/2016 04:34:10 PM,01/30/2016 04:45:07 PM,01/30/2016 05:07:19 PM,Code 2 Transport,01/30/2016 05:55:19 PM,BATTERY ST/MARKET ST,San Francisco,94104,B99,13,1163,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7908053759388, -122.399504510645)",160302588-KM04 -160250011,85,16009734,Medical Incident,01/25/2016,01/24/2016,01/25/2016 12:02:05 AM,01/25/2016 12:04:26 AM,01/25/2016 12:04:57 AM,01/25/2016 12:05:07 AM,01/25/2016 12:14:13 AM,01/25/2016 12:32:50 AM,01/25/2016 12:40:21 AM,Code 2 Transport,01/25/2016 01:21:18 AM,1000 Block of BUCHANAN ST,San Francisco,94115,B02,5,3425,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7795248005676, -122.428502874835)",160250011-85 -102540335,AP,10080419,Other,09/11/2010,09/11/2010,09/11/2010 08:10:30 PM,09/11/2010 08:10:30 PM,09/11/2010 08:10:30 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,04/25/2016 02:08:38 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102540335-AP -122430273,T01,12080439,Structure Fire,08/30/2012,08/30/2012,08/30/2012 06:31:19 PM,08/30/2012 06:31:20 PM,08/30/2012 06:31:35 PM,08/30/2012 06:33:09 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,Other,08/30/2012 06:34:39 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122430273-T01 -160570004,AM16,16022578,Medical Incident,02/26/2016,02/25/2016,02/26/2016 12:01:26 AM,02/26/2016 12:03:23 AM,02/26/2016 12:04:16 AM,02/26/2016 12:04:38 AM,02/26/2016 12:12:41 AM,02/26/2016 12:22:50 AM,02/26/2016 12:33:49 AM,Code 2 Transport,02/26/2016 01:05:02 AM,1800 Block of EDDY ST,San Francisco,94115,B05,5,4133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7806409046944, -122.43808239162)",160570004-AM16 -112010405,E06,11066454,Structure Fire,07/20/2011,07/20/2011,07/20/2011 09:18:54 PM,07/20/2011 09:18:55 PM,07/20/2011 09:19:02 PM,07/20/2011 09:22:10 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/20/2011 09:22:22 PM,19TH ST/DOLORES ST,SF,94110,B06,7,5435,3,3,3,true,,1,ENGINE,3,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",112010405-E06 -140730065,E03,14024552,Medical Incident,03/14/2014,03/14/2014,03/14/2014 08:08:10 AM,03/14/2014 08:09:41 AM,03/14/2014 08:10:02 AM,03/14/2014 08:11:18 AM,03/14/2014 08:15:05 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Other,03/14/2014 08:16:37 AM,LEAVENWORTH ST/ELLIS ST,SAN FRANCISCO,94109,B04,3,1544,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",140730065-E03 -130480101,77,13016315,Medical Incident,02/17/2013,02/16/2013,02/17/2013 07:33:57 AM,02/17/2013 07:38:28 AM,02/17/2013 07:38:44 AM,02/17/2013 07:40:00 AM,02/17/2013 07:44:47 AM,02/17/2013 07:56:02 AM,02/17/2013 08:16:11 AM,Code 2 Transport,02/17/2013 08:52:28 AM,1200 Block of ALEMANY BLVD,SF,94112,B09,32,8263,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7301394309025, -122.432268894425)",130480101-77 -140450244,B04,14015363,Structure Fire,02/14/2014,02/14/2014,02/14/2014 03:33:24 PM,02/14/2014 03:34:34 PM,02/14/2014 03:35:09 PM,02/14/2014 03:35:51 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 03:46:50 PM,1600 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,false,Alarm,1,CHIEF,8,5,5,Lone Mountain/USF,"(37.7752450450943, -122.443780098911)",140450244-B04 -111400053,59,11046436,Medical Incident,05/20/2011,05/19/2011,05/20/2011 05:44:12 AM,05/20/2011 05:46:05 AM,05/20/2011 05:46:21 AM,05/20/2011 05:47:48 AM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,Other,04/25/2016 02:04:32 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,2,2,2,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",111400053-59 -102420262,T14,10076385,Structure Fire,08/30/2010,08/30/2010,08/30/2010 04:30:03 PM,08/30/2010 04:30:03 PM,08/30/2010 04:30:25 PM,08/30/2010 04:32:00 PM,08/30/2010 04:34:56 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/30/2010 04:46:25 PM,600 Block of 32ND AVE,SF,94121,B07,14,724,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",102420262-T14 -160370328,AM22,16014527,Medical Incident,02/06/2016,02/05/2016,02/06/2016 01:38:41 AM,02/06/2016 01:40:36 AM,02/06/2016 01:40:45 AM,02/06/2016 01:43:36 AM,02/06/2016 01:45:48 AM,02/06/2016 02:05:57 AM,02/06/2016 02:36:19 AM,Code 2 Transport,02/06/2016 02:54:50 AM,900 Block of ASHBURY ST,San Francisco,94117,B05,12,5164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7646916029501, -122.445790251499)",160370328-AM22 -132600459,B01,13088205,Alarms,09/17/2013,09/17/2013,09/17/2013 10:23:18 PM,09/17/2013 10:24:53 PM,09/17/2013 10:25:26 PM,09/17/2013 10:26:35 PM,09/17/2013 10:29:49 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 10:49:29 PM,100 Block of LOMBARD ST,SF,94111,B01,28,1224,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.8038770970726, -122.404157077302)",132600459-B01 -102720095,94,10086295,Medical Incident,09/29/2010,09/29/2010,09/29/2010 08:23:01 AM,09/29/2010 08:24:20 AM,09/29/2010 08:26:45 AM,09/29/2010 08:51:38 AM,09/29/2010 09:14:29 AM,09/29/2010 09:14:30 AM,09/29/2010 09:20:40 AM,Code 2 Transport,09/29/2010 09:48:44 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102720095-94 -80040065,E11,8001145,Alarms,01/04/2008,01/03/2008,01/04/2008 06:09:40 AM,01/04/2008 06:10:35 AM,01/04/2008 06:10:43 AM,01/04/2008 06:12:54 AM,01/04/2008 06:15:21 AM,04/25/2016 03:36:10 PM,04/25/2016 03:36:10 PM,Other,01/04/2008 06:19:39 AM,200 Block of 30TH ST,SF,94131,B06,11,5574,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.742133681941, -122.425018174758)",080040065-E11 -140810150,E23,14027330,Medical Incident,03/22/2014,03/22/2014,03/22/2014 11:17:04 AM,03/22/2014 11:19:01 AM,03/22/2014 11:19:55 AM,03/22/2014 11:20:40 AM,03/22/2014 11:23:55 AM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Code 2 Transport,03/22/2014 11:34:48 AM,700 Block of LA PLAYA,SAN FRANCISCO,94121,B07,34,7312,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",140810150-E23 -122620397,77,12086713,Medical Incident,09/18/2012,09/18/2012,09/18/2012 11:58:44 PM,09/18/2012 11:59:21 PM,09/18/2012 11:59:29 PM,09/18/2012 11:59:43 PM,09/19/2012 12:01:52 AM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,No Merit,09/19/2012 12:28:41 AM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",122620397-77 -121430303,54,12047642,Medical Incident,05/22/2012,05/22/2012,05/22/2012 07:35:53 PM,05/22/2012 07:37:29 PM,05/22/2012 07:37:43 PM,05/22/2012 07:37:58 PM,05/22/2012 07:39:28 PM,05/22/2012 07:56:15 PM,05/22/2012 08:14:02 PM,Code 2 Transport,05/22/2012 08:30:04 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7756498450242, -122.410791063977)",121430303-54 -123600240,E07,12120562,Medical Incident,12/25/2012,12/25/2012,12/25/2012 05:44:54 PM,12/25/2012 05:45:32 PM,12/25/2012 05:46:12 PM,04/25/2016 01:55:08 PM,12/25/2012 05:47:10 PM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Other,12/25/2012 06:03:36 PM,3400 Block of 19TH ST,SF,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7601573650684, -122.41958524775)",123600240-E07 -140720198,E03,14024322,Traffic Collision,03/13/2014,03/13/2014,03/13/2014 12:58:45 PM,03/13/2014 01:00:23 PM,03/13/2014 01:01:17 PM,03/13/2014 01:02:42 PM,03/13/2014 01:07:46 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Patient Declined Transport,03/13/2014 01:08:37 PM,SUTTER ST/HYDE ST,SAN FRANCISCO,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881778905715, -122.416827154311)",140720198-E03 -133110308,RS1,13105821,Medical Incident,11/07/2013,11/07/2013,11/07/2013 07:17:57 PM,11/07/2013 07:18:02 PM,11/07/2013 07:23:38 PM,04/25/2016 01:49:52 PM,11/07/2013 07:27:51 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/07/2013 07:46:58 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",133110308-RS1 -160633404,76,16025231,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:57:18 PM,03/03/2016 07:58:54 PM,03/03/2016 08:03:29 PM,03/03/2016 08:03:29 PM,03/03/2016 08:08:08 PM,03/03/2016 08:23:15 PM,03/03/2016 08:31:19 PM,Code 2 Transport,03/03/2016 09:10:30 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160633404-76 -140600222,RS2,14020288,Structure Fire,03/01/2014,03/01/2014,03/01/2014 02:48:23 PM,03/01/2014 02:49:29 PM,03/01/2014 02:49:46 PM,03/01/2014 02:51:32 PM,03/01/2014 02:54:22 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Fire,03/01/2014 03:06:52 PM,100 Block of DUNCAN ST,SF,94110,B06,11,5577,3,3,3,false,Alarm,1,RESCUE SQUAD,4,6,8,Noe Valley,"(37.7463637434942, -122.42346184697)",140600222-RS2 -121150308,92,12038255,Medical Incident,04/24/2012,04/24/2012,04/24/2012 08:43:58 PM,04/24/2012 08:44:39 PM,04/24/2012 08:45:02 PM,04/24/2012 08:45:24 PM,04/24/2012 08:50:09 PM,04/24/2012 08:58:15 PM,04/24/2012 09:13:59 PM,Code 3 Transport,04/24/2012 10:03:05 PM,FARALLONES ST/PLYMOUTH AV,SF,94112,B09,33,8324,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7140767605958, -122.456061424983)",121150308-92 -160022649,53,16000843,Medical Incident,01/02/2016,01/02/2016,01/02/2016 06:07:30 PM,01/02/2016 06:09:05 PM,01/02/2016 06:10:01 PM,01/02/2016 06:10:41 PM,01/02/2016 06:29:19 PM,01/02/2016 06:54:55 PM,01/02/2016 06:58:48 PM,Code 2 Transport,01/02/2016 07:41:58 PM,CALL BOX:,San Francisco,94158,B03,4,2226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7746201772347, -122.391974500536)",160022649-53 -123400344,55,12113550,Medical Incident,12/05/2012,12/05/2012,12/05/2012 07:06:17 PM,12/05/2012 07:06:41 PM,12/05/2012 07:06:57 PM,12/05/2012 07:07:04 PM,12/05/2012 07:15:19 PM,12/05/2012 07:28:00 PM,12/05/2012 07:49:32 PM,Code 2 Transport,12/05/2012 08:18:31 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",123400344-55 -130970111,T19,13032479,Alarms,04/07/2013,04/07/2013,04/07/2013 09:08:49 AM,04/07/2013 09:10:00 AM,04/07/2013 09:10:35 AM,04/07/2013 09:12:12 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 09:14:31 AM,0 Block of ZOO RD,SF,94132,B08,19,8716,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",130970111-T19 -130580053,E29,13019349,Structure Fire,02/27/2013,02/26/2013,02/27/2013 07:05:11 AM,02/27/2013 07:05:11 AM,02/27/2013 07:05:37 AM,02/27/2013 07:07:12 AM,02/27/2013 07:10:12 AM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Fire,02/27/2013 07:10:24 AM,MARIPOSA ST/INDIANA ST,SF,94107,B03,29,2436,3,3,3,true,Alarm,1,ENGINE,1,3,6,Potrero Hill,"(37.7641414045887, -122.391781010422)",130580053-E29 -102890194,89,10092185,Medical Incident,10/16/2010,10/16/2010,10/16/2010 12:39:30 PM,10/16/2010 12:40:48 PM,10/16/2010 12:42:35 PM,10/16/2010 12:44:45 PM,10/16/2010 01:07:48 PM,10/16/2010 02:11:53 PM,10/16/2010 02:11:59 PM,Other,10/16/2010 02:12:56 PM,0 Block of ASHBURY ST,SF,94117,B05,12,5141,3,3,3,true,,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7751421104171, -122.447904554135)",102890194-89 -112460364,E29,11081280,Medical Incident,09/03/2011,09/03/2011,09/03/2011 10:29:36 PM,09/03/2011 10:31:41 PM,09/03/2011 10:32:14 PM,09/03/2011 10:33:12 PM,09/03/2011 10:35:50 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Other,09/03/2011 10:46:05 PM,300 Block of 10TH ST,SF,94103,B02,36,2343,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7724811636038, -122.412311666664)",112460364-E29 -120740290,KM01,12024638,Medical Incident,03/14/2012,03/14/2012,03/14/2012 05:12:00 PM,03/14/2012 05:12:30 PM,03/14/2012 05:13:21 PM,03/14/2012 05:14:12 PM,03/14/2012 05:20:35 PM,03/14/2012 05:43:38 PM,03/14/2012 06:57:55 PM,Code 2 Transport,03/14/2012 06:51:51 PM,20TH AV/CALIFORNIA ST,SF,94121,B07,14,7173,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7841253549644, -122.479650916477)",120740290-KM01 -121120243,KM11,12037177,Medical Incident,04/21/2012,04/21/2012,04/21/2012 02:17:49 PM,04/21/2012 02:18:43 PM,04/21/2012 02:21:29 PM,04/21/2012 02:21:58 PM,04/21/2012 02:45:03 PM,04/21/2012 02:55:42 PM,04/21/2012 03:24:40 PM,Code 2 Transport,04/21/2012 03:51:50 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",121120243-KM11 -160010943,AM20,16000180,Medical Incident,01/01/2016,12/31/2015,01/01/2016 03:58:40 AM,01/01/2016 04:00:36 AM,01/01/2016 04:03:32 AM,01/01/2016 04:04:55 AM,01/01/2016 04:16:01 AM,01/01/2016 04:17:06 AM,01/01/2016 04:52:33 AM,Code 2 Transport,01/01/2016 05:13:23 AM,300 Block of LARKIN ST,San Francisco,94102,B02,3,1644,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7809676399552, -122.416978283011)",160010943-AM20 -113040182,AP,11100922,Other,10/31/2011,10/31/2011,10/31/2011 12:41:08 PM,10/31/2011 12:41:08 PM,10/31/2011 12:41:08 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Fire,10/31/2011 12:54:13 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",113040182-AP -133390400,92,13115067,Medical Incident,12/05/2013,12/05/2013,12/05/2013 10:49:05 PM,12/05/2013 10:49:35 PM,12/05/2013 10:49:52 PM,12/05/2013 10:50:01 PM,12/05/2013 10:55:30 PM,12/05/2013 11:09:34 PM,12/05/2013 11:31:41 PM,Code 2 Transport,12/06/2013 12:16:15 AM,700 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7611631165644, -122.417171363688)",133390400-92 -110440288,B10,11014710,Alarms,02/13/2011,02/13/2011,02/13/2011 05:55:33 PM,02/13/2011 05:56:42 PM,02/13/2011 05:56:55 PM,02/13/2011 05:58:01 PM,02/13/2011 06:02:31 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 06:02:34 PM,100 Block of TALBERT ST,SF,94134,B09,44,6256,3,3,3,false,,1,CHIEF,2,9,10,Visitacion Valley,"(37.7101618943601, -122.406532453491)",110440288-B10 -111070122,58,11035343,Medical Incident,04/17/2011,04/17/2011,04/17/2011 10:17:21 AM,04/17/2011 10:19:11 AM,04/17/2011 10:19:29 AM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 10:21:20 AM,1600 Block of KIRKWOOD AVE,SF,94124,B10,25,6467,3,2,2,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7386523750626, -122.390934976028)",111070122-58 -140920006,RC2,14030763,Medical Incident,04/02/2014,04/01/2014,04/02/2014 12:34:44 AM,04/02/2014 12:35:58 AM,04/02/2014 12:36:12 AM,04/02/2014 12:36:57 AM,04/02/2014 12:40:38 AM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,Code 2 Transport,04/02/2014 12:58:46 AM,500 Block of 12TH AVE,SAN FRANCISCO,94118,B07,31,7142,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.777867888715, -122.470569377123)",140920006-RC2 -160300356,79,16011648,Medical Incident,01/30/2016,01/29/2016,01/30/2016 02:27:25 AM,01/30/2016 02:28:05 AM,01/30/2016 02:29:34 AM,01/30/2016 02:33:38 AM,01/30/2016 03:08:13 AM,01/30/2016 03:08:16 AM,01/30/2016 03:11:58 AM,Code 2 Transport,01/30/2016 03:56:58 AM,3100 Block of WASHINGTON ST,San Francisco,94115,B04,10,4265,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7901683360428, -122.445106099134)",160300356-79 -132120256,B01,13071723,Alarms,07/31/2013,07/31/2013,07/31/2013 05:21:02 PM,07/31/2013 05:22:48 PM,07/31/2013 05:23:37 PM,07/31/2013 05:25:03 PM,07/31/2013 05:26:30 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,07/31/2013 05:35:15 PM,100 Block of SANSOME ST,SF,94104,B01,13,1165,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7916515232471, -122.400770219415)",132120256-B01 -140650212,T16,14021982,Alarms,03/06/2014,03/06/2014,03/06/2014 01:23:31 PM,03/06/2014 01:29:14 PM,03/06/2014 01:29:57 PM,03/06/2014 01:31:39 PM,03/06/2014 01:34:19 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Fire,03/06/2014 01:41:44 PM,3000 Block of VAN NESS AVE,SAN FRANCISCO,94123,B04,16,3144,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8036533799471, -122.425184931768)",140650212-T16 -121490071,KM15,12049370,Medical Incident,05/28/2012,05/27/2012,05/28/2012 06:29:06 AM,05/28/2012 06:29:35 AM,05/28/2012 06:30:00 AM,05/28/2012 06:31:29 AM,05/28/2012 06:39:56 AM,05/28/2012 06:50:37 AM,05/28/2012 06:54:10 AM,Code 2 Transport,05/28/2012 07:17:20 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121490071-KM15 -122280285,T19,12075640,Structure Fire,08/15/2012,08/15/2012,08/15/2012 05:35:26 PM,08/15/2012 05:36:22 PM,08/15/2012 05:37:24 PM,08/15/2012 05:39:24 PM,08/15/2012 05:45:01 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 05:48:56 PM,100 Block of SHAKESPEARE ST,SF,94112,B09,33,8364,3,3,3,false,Fire,1,TRUCK,3,9,11,Outer Mission,"(37.7087561081613, -122.463263341857)",122280285-T19 -110600227,T06,11019719,Alarms,03/01/2011,03/01/2011,03/01/2011 03:29:18 PM,03/01/2011 03:29:56 PM,03/01/2011 03:30:07 PM,03/01/2011 03:31:18 PM,03/01/2011 03:33:03 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 03:41:01 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,false,,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7635007029742, -122.434209629009)",110600227-T06 -112750119,E36,11090955,Alarms,10/02/2011,10/02/2011,10/02/2011 09:38:08 AM,10/02/2011 09:38:08 AM,10/02/2011 09:39:18 AM,04/25/2016 02:02:22 PM,10/02/2011 09:39:46 AM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,Fire,10/02/2011 09:40:32 AM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",112750119-E36 -160360851,79,16014151,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:01:26 AM,02/05/2016 08:03:02 AM,02/05/2016 08:03:25 AM,02/05/2016 08:03:37 AM,02/05/2016 08:22:11 AM,02/05/2016 08:31:42 AM,02/05/2016 08:42:09 AM,Code 2 Transport,02/05/2016 09:05:12 AM,0 Block of MACONDRAY LN,San Francisco,94133,B01,2,1441,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Russian Hill,"(37.7993128218572, -122.414858830846)",160360851-79 -160062257,81,16002454,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:14:43 PM,01/06/2016 03:15:56 PM,01/06/2016 03:16:53 PM,01/06/2016 03:17:02 PM,01/06/2016 03:39:59 PM,01/06/2016 03:45:12 PM,01/06/2016 03:58:17 PM,Code 2 Transport,01/06/2016 04:31:16 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7742496611166, -122.414204535023)",160062257-81 -111790180,67,11059111,Medical Incident,06/28/2011,06/28/2011,06/28/2011 01:19:53 PM,06/28/2011 01:20:34 PM,06/28/2011 01:21:19 PM,06/28/2011 01:21:34 PM,04/25/2016 02:03:56 PM,06/28/2011 01:35:50 PM,06/28/2011 02:01:19 PM,Code 2 Transport,06/28/2011 02:26:16 PM,2400 Block of KEITH ST,SF,94124,B10,17,6546,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",111790180-67 -121010046,83,12033378,Medical Incident,04/10/2012,04/09/2012,04/10/2012 04:25:19 AM,04/10/2012 04:27:33 AM,04/10/2012 04:30:07 AM,04/10/2012 04:39:38 AM,04/10/2012 04:45:04 AM,04/10/2012 04:55:16 AM,04/10/2012 05:01:18 AM,Code 2 Transport,04/10/2012 05:23:09 AM,2300 Block of MISSION ST,SF,94110,B06,7,5446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7594381240168, -122.419060339091)",121010046-83 -160753953,61,16029930,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:31:02 PM,03/15/2016 10:31:51 PM,03/15/2016 10:40:59 PM,03/15/2016 10:40:59 PM,03/15/2016 10:57:06 PM,03/15/2016 10:57:14 PM,03/15/2016 11:06:00 PM,Code 2 Transport,03/15/2016 11:25:37 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160753953-61 -122790039,E06,12092113,Medical Incident,10/05/2012,10/04/2012,10/05/2012 02:28:14 AM,10/05/2012 02:28:42 AM,10/05/2012 02:30:04 AM,10/05/2012 02:31:54 AM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/05/2012 02:32:17 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,8,Mission,"(37.7627436601147, -122.421747650463)",122790039-E06 -102860372,E25,10091295,Vehicle Fire,10/13/2010,10/13/2010,10/13/2010 08:12:40 PM,10/13/2010 08:13:14 PM,10/13/2010 08:14:01 PM,10/13/2010 08:18:15 PM,10/13/2010 08:18:50 PM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Fire,10/13/2010 08:43:15 PM,100 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,false,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7354411251468, -122.380298308533)",102860372-E25 -131410218,E34,13047803,Administrative,05/21/2013,05/21/2013,05/21/2013 02:05:30 PM,05/21/2013 02:05:56 PM,05/21/2013 02:06:06 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 02:07:49 PM,400 Block of 41ST AVE,SF,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",131410218-E34 -121540194,83,12050990,Medical Incident,06/02/2012,06/02/2012,06/02/2012 01:48:21 PM,06/02/2012 01:48:49 PM,06/02/2012 01:49:12 PM,06/02/2012 01:49:50 PM,06/02/2012 01:58:18 PM,06/02/2012 02:00:34 PM,06/02/2012 02:20:44 PM,Code 2 Transport,06/02/2012 02:52:11 PM,600 Block of COLBY ST,SF,94134,B09,42,6344,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7223322748016, -122.411171674482)",121540194-83 -113050366,61,11101422,Medical Incident,11/01/2011,11/01/2011,11/01/2011 06:23:22 PM,11/01/2011 06:24:09 PM,11/01/2011 06:24:23 PM,11/01/2011 06:24:40 PM,11/01/2011 06:30:13 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 08:10:00 PM,400 Block of GONZALEZ DR,SF,94132,B08,19,8481,3,E,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.716122935371, -122.476494710163)",113050366-61 -160090622,65,16003548,Medical Incident,01/09/2016,01/08/2016,01/09/2016 06:50:01 AM,01/09/2016 06:50:40 AM,01/09/2016 06:50:50 AM,01/09/2016 06:50:58 AM,01/09/2016 06:55:55 AM,01/09/2016 07:21:36 AM,01/09/2016 07:27:57 AM,Code 2 Transport,01/09/2016 08:00:21 AM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160090622-65 -160440873,KM09,16017616,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:34:07 AM,02/13/2016 08:34:47 AM,02/13/2016 08:35:25 AM,02/13/2016 08:35:54 AM,02/13/2016 08:39:26 AM,02/13/2016 09:02:54 AM,02/13/2016 09:09:31 AM,Code 2 Transport,02/13/2016 09:42:48 AM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160440873-KM09 -160280425,75,16010963,Medical Incident,01/28/2016,01/27/2016,01/28/2016 05:50:26 AM,01/28/2016 05:52:07 AM,01/28/2016 05:52:27 AM,01/28/2016 05:53:20 AM,01/28/2016 06:00:59 AM,01/28/2016 06:28:17 AM,01/28/2016 06:36:03 AM,Code 2 Transport,01/28/2016 07:16:50 AM,1300 Block of POTRERO AVE,San Francisco,94110,B10,9,2624,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Mission,"(37.750575539987, -122.406071752233)",160280425-75 -130110031,T06,13003624,Medical Incident,01/11/2013,01/10/2013,01/11/2013 02:28:11 AM,01/11/2013 02:30:24 AM,01/11/2013 02:30:57 AM,01/11/2013 02:32:45 AM,01/11/2013 02:35:19 AM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Fire,01/11/2013 02:49:51 AM,300 Block of WALLER ST,SF,94117,B05,6,3526,3,3,3,false,Non Life-threatening,1,TRUCK,1,2,5,Hayes Valley,"(37.7712242757005, -122.429426469723)",130110031-T06 -130620335,86,13020909,Medical Incident,03/03/2013,03/03/2013,03/03/2013 07:46:03 PM,03/03/2013 07:47:18 PM,03/03/2013 07:48:59 PM,04/25/2016 01:54:01 PM,03/03/2013 07:52:10 PM,03/03/2013 08:01:52 PM,03/03/2013 08:05:11 PM,Code 2 Transport,03/03/2013 08:29:07 PM,100 Block of LEAVENWORTH ST,SF,94102,B02,1,1546,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782320193191, -122.41402801662)",130620335-86 -130080168,RS1,13002724,Traffic Collision,01/08/2013,01/08/2013,01/08/2013 11:46:46 AM,01/08/2013 11:47:42 AM,01/08/2013 11:48:03 AM,01/08/2013 11:48:23 AM,01/08/2013 11:50:02 AM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,Other,01/08/2013 11:57:53 AM,5TH ST/SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7798285228536, -122.402840617488)",130080168-RS1 -140310306,94,14010654,Medical Incident,01/31/2014,01/31/2014,01/31/2014 09:57:55 PM,01/31/2014 09:59:01 PM,01/31/2014 09:59:29 PM,01/31/2014 09:59:44 PM,01/31/2014 10:06:35 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,01/31/2014 10:09:04 PM,500 Block of OAK ST,SF,94102,B02,5,3523,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Hayes Valley,"(37.7743391857975, -122.428373303516)",140310306-94 -110180228,E06,11005980,Medical Incident,01/18/2011,01/18/2011,01/18/2011 05:06:24 PM,01/18/2011 05:07:39 PM,01/18/2011 05:07:59 PM,01/18/2011 05:09:00 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 05:27:33 PM,3600 Block of 16TH ST,SF,94114,B05,6,5233,3,3,3,true,,1,ENGINE,3,5,8,Castro/Upper Market,"(37.7641154746137, -122.434189123043)",110180228-E06 -111180356,75,11039082,Medical Incident,04/28/2011,04/28/2011,04/28/2011 10:11:23 PM,04/28/2011 10:12:12 PM,04/28/2011 10:12:41 PM,04/28/2011 10:13:41 PM,04/28/2011 10:18:42 PM,04/28/2011 10:44:21 PM,04/28/2011 10:56:03 PM,Code 2 Transport,04/28/2011 11:28:08 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",111180356-75 -113640195,E11,11120904,Medical Incident,12/30/2011,12/30/2011,12/30/2011 12:51:07 PM,12/30/2011 12:51:12 PM,12/30/2011 12:51:31 PM,12/30/2011 12:52:13 PM,12/30/2011 12:54:49 PM,12/30/2011 01:20:45 PM,04/25/2016 02:00:53 PM,Other,12/30/2011 02:01:57 PM,700 Block of CHURCH ST,SF,94114,B06,11,5444,3,3,3,true,,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7592869335567, -122.4282332932)",113640195-E11 -111070034,T17,11035268,Alarms,04/17/2011,04/16/2011,04/17/2011 02:11:47 AM,04/17/2011 02:12:10 AM,04/17/2011 02:12:43 AM,04/17/2011 02:13:38 AM,04/17/2011 02:20:34 AM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 02:21:33 AM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,false,,1,TRUCK,2,9,10,Visitacion Valley,"(37.712002001307, -122.407607975966)",111070034-T17 -111290054,AP,11042557,Other,05/09/2011,05/08/2011,05/09/2011 06:19:17 AM,05/09/2011 06:19:17 AM,05/09/2011 06:19:17 AM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,Fire,05/09/2011 06:19:38 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",111290054-AP -160430164,AM20,16017106,Medical Incident,02/12/2016,02/11/2016,02/12/2016 01:20:13 AM,02/12/2016 01:21:40 AM,02/12/2016 01:21:59 AM,02/12/2016 01:22:26 AM,02/12/2016 01:42:33 AM,02/12/2016 01:46:04 AM,02/12/2016 01:58:03 AM,Code 2 Transport,02/12/2016 02:40:41 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160430164-AM20 -131350278,75,13045625,Medical Incident,05/15/2013,05/15/2013,05/15/2013 04:32:55 PM,05/15/2013 04:38:13 PM,05/15/2013 04:40:28 PM,05/15/2013 04:40:39 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 04:41:42 PM,400 Block of GEARY ST,SF,94102,B01,3,1411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",131350278-75 -102420101,E23,10076260,Medical Incident,08/30/2010,08/30/2010,08/30/2010 09:43:40 AM,08/30/2010 09:44:14 AM,08/30/2010 09:46:14 AM,08/30/2010 09:47:11 AM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/30/2010 09:49:07 AM,2000 Block of 44TH AVE,SF,94116,B08,23,7663,3,3,3,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7483929333299, -122.503006135149)",102420101-E23 -140100364,88,14003644,Medical Incident,01/10/2014,01/10/2014,01/10/2014 08:12:29 PM,01/10/2014 08:14:06 PM,01/10/2014 08:14:30 PM,01/10/2014 08:14:51 PM,01/10/2014 08:20:14 PM,01/10/2014 08:56:05 PM,01/10/2014 08:36:48 PM,Code 2 Transport,01/10/2014 09:04:23 PM,200 Block of CHURCH ST,SF,94114,B05,6,5231,,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.766821331685, -122.428814858006)",140100364-88 -111210317,E01,11040054,Alarms,05/01/2011,05/01/2011,05/01/2011 06:10:50 PM,05/01/2011 06:10:51 PM,05/01/2011 06:11:07 PM,04/25/2016 02:04:50 PM,05/01/2011 06:12:16 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 06:13:23 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",111210317-E01 -123550291,E41,12118899,Medical Incident,12/20/2012,12/20/2012,12/20/2012 06:53:35 PM,12/20/2012 06:55:48 PM,12/20/2012 06:56:09 PM,12/20/2012 06:56:16 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 06:56:39 PM,BROADWAY ST/LEAVENWORTH ST,SF,94109,B01,41,1534,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,1,3,Russian Hill,"(37.7965957022582, -122.416839400968)",123550291-E41 -111940294,E06,11064148,Medical Incident,07/13/2011,07/13/2011,07/13/2011 07:03:33 PM,07/13/2011 07:04:54 PM,07/13/2011 07:05:56 PM,07/13/2011 07:07:41 PM,07/13/2011 07:08:41 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 07:33:02 PM,2400 Block of MARKET ST,SF,94114,B05,6,5259,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",111940294-E06 -160873696,AM24,16034767,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:24:44 PM,03/27/2016 11:27:10 PM,03/27/2016 11:27:51 PM,03/27/2016 11:28:21 PM,03/27/2016 11:34:46 PM,03/27/2016 11:56:32 PM,03/28/2016 12:09:11 AM,Code 2 Transport,03/28/2016 12:44:23 AM,800 Block of CALIFORNIA ST,San Francisco,94108,B01,2,1356,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7922694289836, -122.407814772426)",160873696-AM24 -160480242,KM03,16019201,Medical Incident,02/17/2016,02/16/2016,02/17/2016 02:39:07 AM,02/17/2016 02:40:04 AM,02/17/2016 02:40:38 AM,02/17/2016 02:41:16 AM,02/17/2016 02:44:36 AM,02/17/2016 02:57:55 AM,02/17/2016 03:04:56 AM,Code 2 Transport,02/17/2016 03:46:44 AM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",160480242-KM03 -132680403,85,13091169,Medical Incident,09/25/2013,09/25/2013,09/25/2013 09:26:40 PM,09/25/2013 09:27:09 PM,09/25/2013 09:28:21 PM,09/25/2013 09:28:49 PM,09/25/2013 09:52:23 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Against Medical Advice,09/25/2013 09:52:51 PM,0 Block of PRESIDIO TER,SF,94118,B07,10,4444,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Inner Richmond,"(37.7881859123819, -122.461502002981)",132680403-85 -121240343,E06,12041298,Medical Incident,05/03/2012,05/03/2012,05/03/2012 07:55:46 PM,05/03/2012 07:57:24 PM,05/03/2012 07:58:12 PM,05/03/2012 07:59:05 PM,05/03/2012 08:00:10 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 08:14:24 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",121240343-E06 -112710272,B07,11089602,Alarms,09/28/2011,09/28/2011,09/28/2011 02:39:25 PM,09/28/2011 02:40:31 PM,09/28/2011 02:40:42 PM,09/28/2011 02:41:20 PM,09/28/2011 02:46:54 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Fire,09/28/2011 02:54:11 PM,500 Block of PARNASSUS AVE,SF,94131,B05,12,7323,3,3,3,false,,1,CHIEF,3,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",112710272-B07 -160231622,89,16009141,Medical Incident,01/23/2016,01/23/2016,01/23/2016 12:38:39 PM,01/23/2016 12:40:28 PM,01/23/2016 12:40:49 PM,01/23/2016 12:41:15 PM,01/23/2016 12:46:50 PM,01/23/2016 01:03:55 PM,01/23/2016 01:24:53 PM,Code 2 Transport,01/23/2016 02:10:01 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160231622-89 -132150257,93,13072674,Medical Incident,08/03/2013,08/03/2013,08/03/2013 03:20:15 PM,08/03/2013 03:22:47 PM,08/03/2013 03:23:06 PM,08/03/2013 03:23:22 PM,08/03/2013 03:30:54 PM,08/03/2013 03:45:38 PM,08/03/2013 04:08:06 PM,Code 2 Transport,08/03/2013 04:29:25 PM,TEHAMA ST/2ND ST,SF,94105,B03,1,2146,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7863386154364, -122.39770448764)",132150257-93 -123050260,E03,12101248,Medical Incident,10/31/2012,10/31/2012,10/31/2012 01:42:18 PM,10/31/2012 01:42:38 PM,10/31/2012 01:54:42 PM,10/31/2012 01:55:32 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,04/25/2016 01:56:01 PM,17TH ST/HARRISON ST,SF,94110,B02,7,5245,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7640908631503, -122.413002684918)",123050260-E03 -160040129,AM20,16001435,Medical Incident,01/04/2016,01/03/2016,01/04/2016 01:10:59 AM,01/04/2016 01:14:48 AM,01/04/2016 01:15:44 AM,01/04/2016 01:15:44 AM,01/04/2016 01:24:34 AM,01/04/2016 01:34:58 AM,01/04/2016 01:41:08 AM,Code 2 Transport,01/04/2016 02:32:39 AM,2200 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7610314429831, -122.419351642615)",160040129-AM20 -160273933,68,16010890,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:32:57 PM,01/27/2016 10:33:58 PM,01/27/2016 10:35:11 PM,01/27/2016 10:35:47 PM,01/27/2016 10:50:38 PM,01/27/2016 10:50:41 PM,01/27/2016 11:22:40 PM,Code 2 Transport,01/27/2016 11:36:12 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160273933-68 -160472041,KM09,16018947,Medical Incident,02/16/2016,02/16/2016,02/16/2016 02:02:08 PM,02/16/2016 02:03:07 PM,02/16/2016 02:04:50 PM,02/16/2016 02:05:41 PM,02/16/2016 02:09:39 PM,02/16/2016 02:26:03 PM,02/16/2016 03:08:55 PM,Code 2 Transport,02/16/2016 03:25:17 PM,100 Block of 10TH ST,San Francisco,94103,B02,36,2341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7750968170762, -122.415590844463)",160472041-KM09 -111100038,88,11036201,Medical Incident,04/20/2011,04/19/2011,04/20/2011 03:34:30 AM,04/20/2011 03:34:30 AM,04/20/2011 03:34:30 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,04/20/2011 03:44:35 AM,04/20/2011 03:53:29 AM,Code 2 Transport,04/20/2011 04:21:18 AM,VALENCIA ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,MEDIC,1,2,6,Mission,"(37.7725028174103, -122.422619692886)",111100038-88 -160340739,65,16013274,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:21:00 AM,02/03/2016 08:21:25 AM,02/03/2016 08:22:06 AM,02/03/2016 08:22:12 AM,02/03/2016 08:25:10 AM,02/03/2016 08:45:37 AM,02/03/2016 09:05:38 AM,Code 2 Transport,02/03/2016 09:39:02 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160340739-65 -140400137,T02,14013529,Alarms,02/09/2014,02/09/2014,02/09/2014 09:34:47 AM,02/09/2014 09:37:20 AM,02/09/2014 09:37:31 AM,02/09/2014 09:38:49 AM,02/09/2014 09:40:40 AM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/09/2014 09:45:45 AM,900 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.794945143819, -122.408499772009)",140400137-T02 -160630153,AM24,16024923,Medical Incident,03/03/2016,03/02/2016,03/03/2016 01:28:50 AM,03/03/2016 01:28:50 AM,03/03/2016 01:29:19 AM,03/03/2016 01:29:43 AM,03/03/2016 01:35:14 AM,03/03/2016 01:46:30 AM,03/03/2016 02:11:27 AM,Code 2 Transport,03/03/2016 02:54:30 AM,MARKET ST/BATTERY ST,San Francisco,94104,B01,13,1163,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7908053759388, -122.399504510645)",160630153-AM24 -112160233,E22,11071377,Traffic Collision,08/04/2011,08/04/2011,08/04/2011 02:03:33 PM,08/04/2011 02:06:14 PM,08/04/2011 02:06:20 PM,08/04/2011 02:07:42 PM,08/04/2011 02:08:43 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 02:15:46 PM,1000 Block of IRVING ST,SF,94122,B08,22,7345,3,3,3,true,,1,ENGINE,2,8,5,Inner Sunset,"(37.7638646239513, -122.468982718935)",112160233-E22 -140490379,81,14016828,Medical Incident,02/18/2014,02/18/2014,02/18/2014 11:15:24 PM,02/18/2014 11:15:52 PM,02/18/2014 11:16:46 PM,02/18/2014 11:16:52 PM,02/18/2014 11:26:38 PM,02/19/2014 12:09:21 AM,02/19/2014 12:17:52 AM,Code 2 Transport,02/19/2014 12:56:13 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",140490379-81 -132590038,E05,13087496,Medical Incident,09/16/2013,09/15/2013,09/16/2013 04:59:23 AM,09/16/2013 05:00:24 AM,09/16/2013 05:00:50 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,04/25/2016 01:50:46 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",132590038-E05 -133590203,T03,13122069,Structure Fire,12/25/2013,12/25/2013,12/25/2013 02:36:45 PM,12/25/2013 02:36:45 PM,12/25/2013 02:37:09 PM,12/25/2013 02:37:58 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/25/2013 02:39:37 PM,VAN NESS AV/OFARRELL ST,SF,94109,B04,3,3162,3,3,3,false,Alarm,1,TRUCK,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",133590203-T03 -160652576,AM10,16026015,Medical Incident,03/05/2016,03/05/2016,03/05/2016 05:37:47 PM,03/05/2016 05:37:47 PM,03/05/2016 05:38:23 PM,03/05/2016 05:38:57 PM,03/05/2016 05:41:35 PM,03/05/2016 06:03:38 PM,03/05/2016 06:14:39 PM,Code 2 Transport,03/05/2016 07:03:54 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",160652576-AM10 -121990331,E37,12066253,Structure Fire,07/17/2012,07/17/2012,07/17/2012 07:31:59 PM,07/17/2012 07:33:01 PM,07/17/2012 07:33:09 PM,07/17/2012 07:34:01 PM,07/17/2012 07:35:31 PM,04/25/2016 01:57:40 PM,04/25/2016 01:57:40 PM,Other,07/17/2012 07:39:42 PM,KANSAS ST/22ND ST,SF,94107,B10,37,2545,3,3,3,false,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7570683684788, -122.402802943875)",121990331-E37 -112750039,RS1,11090881,Medical Incident,10/02/2011,10/01/2011,10/02/2011 01:57:56 AM,10/02/2011 01:58:22 AM,10/02/2011 01:58:35 AM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,Fire,04/25/2016 02:02:22 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,E,E,3,false,,1,RESCUE SQUAD,2,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",112750039-RS1 -112570137,92,11084696,Medical Incident,09/14/2011,09/14/2011,09/14/2011 11:22:40 AM,09/14/2011 11:25:01 AM,09/14/2011 11:26:11 AM,04/25/2016 02:02:41 PM,09/14/2011 11:30:56 AM,09/14/2011 12:01:51 PM,09/14/2011 12:17:22 PM,Code 2 Transport,09/14/2011 12:50:41 PM,1000 Block of PINE ST,SF,94109,B01,41,1464,1,1,2,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",112570137-92 -160543510,64,16021755,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:43:42 PM,02/23/2016 07:44:30 PM,02/23/2016 07:44:58 PM,02/23/2016 07:45:16 PM,02/23/2016 07:51:29 PM,02/23/2016 08:06:36 PM,02/23/2016 08:37:20 PM,Code 2 Transport,02/23/2016 09:14:10 PM,VETERANS DR/FORT MILEY CR,San Francisco,94121,B07,34,7266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lincoln Park,"(37.7812059887825, -122.50363781312)",160543510-64 -120940290,AM14,12031246,Medical Incident,04/03/2012,04/03/2012,04/03/2012 06:41:53 PM,04/03/2012 06:42:39 PM,04/03/2012 06:43:13 PM,04/03/2012 06:43:45 PM,04/03/2012 06:46:18 PM,04/03/2012 07:03:05 PM,04/03/2012 07:13:17 PM,Code 2 Transport,04/03/2012 07:36:20 PM,0 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7848461901191, -122.4580614633)",120940290-AM14 -113350369,E31,11111071,Alarms,12/01/2011,12/01/2011,12/01/2011 11:44:01 PM,12/01/2011 11:47:47 PM,12/01/2011 11:47:57 PM,12/01/2011 11:49:32 PM,12/01/2011 11:52:22 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/02/2011 12:01:26 AM,300 Block of 3RD AVE,SF,94118,B07,31,7116,3,3,3,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.7821271171767, -122.461066067245)",113350369-E31 -111460084,T11,11048406,Elevator / Escalator Rescue,05/26/2011,05/26/2011,05/26/2011 08:54:56 AM,05/26/2011 08:57:32 AM,05/26/2011 08:59:31 AM,05/26/2011 09:00:54 AM,05/26/2011 09:06:15 AM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,05/26/2011 09:28:03 AM,400 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,false,,1,TRUCK,1,6,9,Bernal Heights,"(37.7390370434051, -122.41683755188)",111460084-T11 -160800262,AM22,16031665,Medical Incident,03/20/2016,03/19/2016,03/20/2016 01:33:45 AM,03/20/2016 01:35:13 AM,03/20/2016 01:35:36 AM,03/20/2016 01:37:13 AM,03/20/2016 01:48:08 AM,03/20/2016 01:55:29 AM,03/20/2016 02:23:11 AM,Code 2 Transport,03/20/2016 03:01:30 AM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",160800262-AM22 -103180348,E38,10102064,Administrative,11/14/2010,11/14/2010,11/14/2010 08:26:28 PM,11/14/2010 08:26:36 PM,11/14/2010 08:27:24 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/14/2010 08:27:48 PM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",103180348-E38 -160351271,79,16013774,Traffic Collision,02/04/2016,02/04/2016,02/04/2016 10:34:19 AM,02/04/2016 10:39:34 AM,02/04/2016 10:40:11 AM,02/04/2016 10:40:16 AM,02/04/2016 11:04:12 AM,02/04/2016 11:12:02 AM,02/04/2016 11:21:32 AM,Code 2 Transport,02/04/2016 11:43:36 AM,CALL BOX:,,94130,B03,48,2951,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225801, -122.365138272289)",160351271-79 -121650379,AM10,12054900,Medical Incident,06/13/2012,06/13/2012,06/13/2012 10:53:27 PM,06/13/2012 10:55:58 PM,06/13/2012 10:57:19 PM,06/13/2012 10:57:37 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Other,04/25/2016 01:58:13 PM,1400 Block of TREAT WAY,SF,94110,B06,7,5533,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7486593822992, -122.412687632433)",121650379-AM10 -160561963,76,16022397,Medical Incident,02/25/2016,02/25/2016,02/25/2016 01:11:08 PM,02/25/2016 01:13:04 PM,02/25/2016 01:13:29 PM,02/25/2016 01:13:36 PM,02/25/2016 01:30:59 PM,02/25/2016 01:31:03 PM,02/25/2016 01:48:12 PM,Code 2 Transport,02/25/2016 02:21:17 PM,300 Block of MAIN ST,San Francisco,94105,B03,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887132628625, -122.39113809089)",160561963-76 -130490087,E18,13016636,Medical Incident,02/18/2013,02/18/2013,02/18/2013 08:37:33 AM,02/18/2013 08:37:51 AM,02/18/2013 08:38:06 AM,02/18/2013 08:39:31 AM,02/18/2013 08:41:53 AM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/18/2013 08:50:46 AM,1500 Block of 31ST AVE,SF,94122,B08,18,7535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7583295917093, -122.489725814528)",130490087-E18 -131130015,T12,13037955,Structure Fire,04/23/2013,04/22/2013,04/23/2013 12:59:46 AM,04/23/2013 12:59:46 AM,04/23/2013 01:00:03 AM,04/23/2013 01:02:05 AM,04/23/2013 01:05:11 AM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/23/2013 01:13:19 AM,400 Block of STANYAN ST,SF,94117,B05,21,455,3,3,3,false,Alarm,1,TRUCK,2,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",131130015-T12 -120420161,E34,12014009,Medical Incident,02/11/2012,02/11/2012,02/11/2012 11:17:48 AM,02/11/2012 11:18:10 AM,02/11/2012 11:18:25 AM,02/11/2012 11:18:43 AM,02/11/2012 11:19:33 AM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 12:01:41 PM,4500 Block of CABRILLO ST,SF,94121,B07,34,7277,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7734373755219, -122.507358715889)",120420161-E34 -102930309,E17,10093548,Medical Incident,10/20/2010,10/20/2010,10/20/2010 07:12:04 PM,10/20/2010 07:13:02 PM,10/20/2010 07:13:38 PM,10/20/2010 07:14:43 PM,10/20/2010 07:16:42 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/20/2010 07:28:55 PM,1200 Block of GILMAN AVE,SF,94124,B10,17,6612,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7208340934162, -122.392843829472)",102930309-E17 -160091791,82,16003661,Medical Incident,01/09/2016,01/09/2016,01/09/2016 01:36:20 PM,01/09/2016 01:37:54 PM,01/09/2016 01:38:18 PM,01/09/2016 01:38:29 PM,01/09/2016 01:58:51 PM,01/09/2016 02:12:29 PM,01/09/2016 02:30:02 PM,Code 2 Transport,01/09/2016 03:09:26 PM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7584203036531, -122.418963082325)",160091791-82 -131030147,KM12,13034551,Medical Incident,04/13/2013,04/13/2013,04/13/2013 11:38:01 AM,04/13/2013 11:39:01 AM,04/13/2013 11:41:07 AM,04/13/2013 11:41:42 AM,04/13/2013 11:48:24 AM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/13/2013 11:48:50 AM,100 Block of 9TH ST,SF,94103,B02,36,2336,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7760543061938, -122.414393004759)",131030147-KM12 -160012575,74,16000391,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:54:21 PM,01/01/2016 03:55:08 PM,01/01/2016 03:55:31 PM,01/01/2016 03:56:29 PM,01/01/2016 04:04:11 PM,01/01/2016 04:29:08 PM,01/01/2016 04:44:22 PM,Code 2 Transport,01/01/2016 05:23:59 PM,1100 Block of KEY AVE,San Francisco,94124,B10,44,6542,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7203503464205, -122.398655526095)",160012575-74 -111390014,E15,11046075,Medical Incident,05/19/2011,05/18/2011,05/19/2011 01:25:22 AM,05/19/2011 01:26:18 AM,05/19/2011 01:26:43 AM,04/25/2016 02:04:33 PM,05/19/2011 01:30:29 AM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 01:43:16 AM,0 Block of NANTUCKET AVE,SF,94112,B09,15,8266,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7281766193106, -122.441426874148)",111390014-E15 -160353237,BT01,16013966,Medical Incident,02/04/2016,02/04/2016,02/04/2016 07:08:19 PM,02/04/2016 07:10:32 PM,02/04/2016 07:31:43 PM,02/04/2016 07:31:43 PM,02/04/2016 08:43:28 PM,02/04/2016 09:14:30 PM,02/04/2016 09:24:29 PM,Code 2 Transport,02/04/2016 09:53:12 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,2,2,2,false,Potentially Life-Threatening,1,SUPPORT,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160353237-BT01 -102350263,E40,10074010,Citizen Assist / Service Call,08/23/2010,08/23/2010,08/23/2010 03:30:38 PM,08/23/2010 03:32:24 PM,08/23/2010 03:32:39 PM,08/23/2010 03:33:42 PM,08/23/2010 03:37:26 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Fire,08/23/2010 03:48:21 PM,2400 Block of 31ST AVE,SF,94116,B08,18,7527,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7415475251009, -122.488551030522)",102350263-E40 -160413691,60,16016645,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:21:20 PM,02/10/2016 09:21:20 PM,02/10/2016 09:21:36 PM,02/10/2016 09:21:43 PM,02/10/2016 09:39:56 PM,02/10/2016 09:55:46 PM,02/10/2016 10:29:37 PM,Code 2 Transport,02/10/2016 10:34:04 PM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",160413691-60 -133480183,KM10,13118110,Medical Incident,12/14/2013,12/14/2013,12/14/2013 12:39:23 PM,12/14/2013 12:41:33 PM,12/14/2013 12:41:46 PM,12/14/2013 12:43:20 PM,12/14/2013 12:54:57 PM,12/14/2013 01:13:21 PM,12/14/2013 01:17:20 PM,Code 2 Transport,12/14/2013 01:42:51 PM,600 Block of DUBOCE AVE,SF,94117,B05,6,5131,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Haight Ashbury,"(37.7692009093314, -122.434236954469)",133480183-KM10 -111920036,T03,11063275,Medical Incident,07/11/2011,07/10/2011,07/11/2011 04:52:59 AM,07/11/2011 04:54:07 AM,07/11/2011 04:54:40 AM,07/11/2011 04:57:22 AM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 04:57:45 AM,500 Block of POST ST,SF,94102,B01,3,1451,3,2,2,false,,1,TRUCK,3,1,3,Nob Hill,"(37.788031406746, -122.410889094263)",111920036-T03 -140650339,B01,14022085,Structure Fire,03/06/2014,03/06/2014,03/06/2014 07:21:20 PM,03/06/2014 07:22:34 PM,03/06/2014 07:23:21 PM,03/06/2014 07:24:15 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Fire,03/06/2014 07:30:52 PM,600 Block of ELLIS ST,SAN FRANCISCO,94109,B02,3,1555,3,3,3,false,Alarm,1,CHIEF,9,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",140650339-B01 -133460122,88,13117345,Medical Incident,12/12/2013,12/12/2013,12/12/2013 09:17:04 AM,12/12/2013 09:19:49 AM,12/12/2013 09:20:02 AM,12/12/2013 09:21:02 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,04/25/2016 01:49:18 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",133460122-88 -120990104,E05,12032742,Structure Fire,04/08/2012,04/08/2012,04/08/2012 09:51:02 AM,04/08/2012 09:52:07 AM,04/08/2012 09:52:31 AM,04/08/2012 09:53:40 AM,04/08/2012 09:55:05 AM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 09:58:14 AM,800 Block of FRANKLIN ST,SF,94102,B02,36,3216,3,3,3,true,Fire,1,ENGINE,2,2,5,Western Addition,"(37.7824435992634, -122.422484951715)",120990104-E05 -132000409,E36,13067997,Structure Fire,07/19/2013,07/19/2013,07/19/2013 11:41:47 PM,07/19/2013 11:41:48 PM,07/19/2013 11:41:58 PM,07/19/2013 11:43:01 PM,07/19/2013 11:44:19 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/19/2013 11:44:43 PM,0 Block of LARKIN ST,SF,94102,B02,36,1646,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7775888205813, -122.416411092393)",132000409-E36 -133530148,B04,13119887,Traffic Collision,12/19/2013,12/19/2013,12/19/2013 11:30:20 AM,12/19/2013 11:30:38 AM,12/19/2013 11:39:46 AM,12/19/2013 11:40:44 AM,12/19/2013 11:45:23 AM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 12:31:05 PM,STOCKTON ST/JACKSON ST,SF,94133,B01,2,1332,3,3,3,false,Potentially Life-Threatening,1,CHIEF,4,1,3,Chinatown,"(37.7958237062045, -122.408253204894)",133530148-B04 -132970020,E02,13100744,Medical Incident,10/24/2013,10/23/2013,10/24/2013 01:20:04 AM,10/24/2013 01:20:58 AM,10/24/2013 01:21:09 AM,10/24/2013 01:22:59 AM,10/24/2013 01:24:41 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 01:37:00 AM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",132970020-E02 -160190887,73,16007536,Medical Incident,01/19/2016,01/19/2016,01/19/2016 08:52:50 AM,01/19/2016 08:54:31 AM,01/19/2016 08:55:18 AM,01/19/2016 08:55:31 AM,01/19/2016 09:07:15 AM,01/19/2016 09:22:03 AM,01/19/2016 09:44:53 AM,Code 2 Transport,01/19/2016 10:52:26 AM,GEARY BL/23RD AV,San Francisco,94121,B07,14,7172,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7801894714823, -122.482591527553)",160190887-73 -160213342,66,16008514,Medical Incident,01/21/2016,01/21/2016,01/21/2016 06:55:11 PM,01/21/2016 06:57:16 PM,01/21/2016 07:04:51 PM,01/21/2016 07:05:49 PM,01/21/2016 07:12:48 PM,01/21/2016 07:27:11 PM,01/21/2016 07:47:09 PM,Code 2 Transport,01/21/2016 08:32:19 PM,0 Block of MISSION ST,San Francisco,94105,B03,35,2131,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7935385958356, -122.392889145798)",160213342-66 -122280270,87,12075627,Medical Incident,08/15/2012,08/15/2012,08/15/2012 04:50:15 PM,08/15/2012 04:50:56 PM,08/15/2012 04:51:26 PM,08/15/2012 04:51:30 PM,08/15/2012 05:08:53 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Medical Examiner,08/15/2012 06:00:46 PM,1700 Block of 32ND AVE,SF,94122,B08,18,7534,3,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7545630438483, -122.490398408661)",122280270-87 -112570172,E08,11084726,Alarms,09/14/2011,09/14/2011,09/14/2011 01:44:22 PM,09/14/2011 01:45:23 PM,09/14/2011 01:45:30 PM,09/14/2011 01:50:07 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/14/2011 01:53:43 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",112570172-E08 -160850420,72,16033638,Medical Incident,03/25/2016,03/24/2016,03/25/2016 04:11:58 AM,03/25/2016 04:15:10 AM,03/25/2016 04:15:51 AM,03/25/2016 04:16:29 AM,03/25/2016 04:23:40 AM,03/25/2016 04:36:16 AM,03/25/2016 04:52:19 AM,Code 2 Transport,03/25/2016 05:54:24 AM,300 Block of JONES ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",160850420-72 -122450109,AM02,12080938,Medical Incident,09/01/2012,09/01/2012,09/01/2012 10:12:33 AM,09/01/2012 10:13:17 AM,09/01/2012 10:13:44 AM,09/01/2012 10:15:06 AM,09/01/2012 10:19:25 AM,09/01/2012 10:26:17 AM,09/01/2012 10:38:58 AM,Code 2 Transport,09/01/2012 11:21:37 AM,16TH ST/DOLORES ST,SF,94103,B02,6,5234,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",122450109-AM02 -131720327,E03,13058515,Gas Leak (Natural and LP Gases),06/21/2013,06/21/2013,06/21/2013 09:00:46 PM,06/21/2013 09:02:46 PM,06/21/2013 09:03:11 PM,06/21/2013 09:04:21 PM,06/21/2013 09:06:15 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/21/2013 09:13:53 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",131720327-E03 -160693339,60,16027620,Medical Incident,03/09/2016,03/09/2016,03/09/2016 07:46:42 PM,03/09/2016 07:48:00 PM,03/09/2016 07:49:01 PM,03/09/2016 07:49:26 PM,03/09/2016 07:57:22 PM,03/09/2016 08:34:17 PM,03/09/2016 08:34:28 PM,Code 3 Transport,03/09/2016 10:14:31 PM,500 Block of ELLINGTON AVE,San Francisco,94112,B09,33,6211,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7106320073627, -122.448844883346)",160693339-60 -160180003,65,16007058,Medical Incident,01/18/2016,01/17/2016,01/18/2016 12:01:10 AM,01/18/2016 12:02:14 AM,01/18/2016 12:02:41 AM,01/18/2016 12:02:48 AM,01/18/2016 12:10:26 AM,01/18/2016 12:15:33 AM,01/18/2016 12:21:37 AM,Code 2 Transport,01/18/2016 01:09:03 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160180003-65 -110290008,E10,11009396,Alarms,01/29/2011,01/28/2011,01/29/2011 12:20:27 AM,01/29/2011 12:21:31 AM,01/29/2011 12:21:37 AM,01/29/2011 12:23:11 AM,01/29/2011 12:25:50 AM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/29/2011 12:29:34 AM,300 Block of LOCUST ST,SF,94118,B07,10,4426,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7879858500247, -122.452104476479)",110290008-E10 -133580218,KM14,13121740,Medical Incident,12/24/2013,12/24/2013,12/24/2013 02:41:56 PM,12/24/2013 02:43:18 PM,12/24/2013 02:43:54 PM,12/24/2013 02:44:28 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 02:49:33 PM,VAN NESS AV/BAY ST,SF,94109,B04,28,3143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,2,Russian Hill,"(37.8041458445112, -122.425109522103)",133580218-KM14 -140420394,AM22,14014457,Medical Incident,02/11/2014,02/11/2014,02/11/2014 11:27:16 PM,02/11/2014 11:27:42 PM,02/11/2014 11:28:20 PM,02/11/2014 11:28:54 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/11/2014 11:37:50 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",140420394-AM22 -132820282,T08,13096041,Medical Incident,10/09/2013,10/09/2013,10/09/2013 04:42:33 PM,10/09/2013 04:43:42 PM,10/09/2013 04:43:54 PM,10/09/2013 04:45:29 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/09/2013 04:48:37 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,false,Non Life-threatening,1,TRUCK,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132820282-T08 -140020287,E17,14000759,Medical Incident,01/02/2014,01/02/2014,01/02/2014 03:50:22 PM,01/02/2014 03:51:37 PM,01/02/2014 03:51:55 PM,01/02/2014 03:53:48 PM,01/02/2014 03:56:14 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/02/2014 04:06:41 PM,FITZGERALD AV/KEITH ST,SF,94124,B10,17,6614,,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7230924477564, -122.395035767852)",140020287-E17 -113390090,81,11112281,Medical Incident,12/05/2011,12/05/2011,12/05/2011 09:57:24 AM,12/05/2011 09:58:57 AM,12/05/2011 09:59:19 AM,12/05/2011 09:59:39 AM,12/05/2011 10:13:03 AM,12/05/2011 10:32:28 AM,12/05/2011 10:43:20 AM,Code 2 Transport,12/05/2011 11:15:14 AM,3000 Block of 16TH ST,SF,94103,B02,7,5236,1,1,2,false,,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",113390090-81 -113400054,E28,11112595,Medical Incident,12/06/2011,12/05/2011,12/06/2011 04:16:46 AM,12/06/2011 04:18:31 AM,12/06/2011 04:18:42 AM,12/06/2011 04:20:27 AM,12/06/2011 04:22:08 AM,04/25/2016 02:01:18 PM,04/25/2016 02:01:18 PM,Other,12/06/2011 04:44:27 AM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.804809171271, -122.406795529826)",113400054-E28 -113480085,KM15,11115388,Medical Incident,12/14/2011,12/14/2011,12/14/2011 08:22:32 AM,12/14/2011 08:24:27 AM,12/14/2011 08:24:48 AM,12/14/2011 08:25:18 AM,12/14/2011 08:26:52 AM,12/14/2011 08:44:12 AM,12/14/2011 08:49:19 AM,Code 2 Transport,12/14/2011 09:27:27 AM,1400 Block of BROADWAY,SF,94109,B01,41,1632,3,3,3,false,,1,PRIVATE,1,4,3,Russian Hill,"(37.7961350460104, -122.420951806977)",113480085-KM15 -112110279,E39,11069722,Odor (Strange / Unknown),07/30/2011,07/30/2011,07/30/2011 06:35:34 PM,07/30/2011 06:38:01 PM,07/30/2011 06:38:45 PM,07/30/2011 06:39:43 PM,07/30/2011 06:41:45 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,No Merit,07/30/2011 06:46:57 PM,600 Block of PORTOLA DR,SF,94127,B08,39,8661,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7452993390303, -122.451904398893)",112110279-E39 -160012780,63,16000417,Medical Incident,01/01/2016,01/01/2016,01/01/2016 04:52:39 PM,01/01/2016 04:54:47 PM,01/01/2016 04:55:07 PM,01/01/2016 04:55:32 PM,01/01/2016 05:14:59 PM,01/01/2016 05:15:02 PM,01/01/2016 05:19:28 PM,Code 2 Transport,01/01/2016 05:50:08 PM,4100 Block of 18TH ST,San Francisco,94114,B05,6,5415,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7608016861704, -122.435552336885)",160012780-63 -160461113,AM08,16018456,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:19:00 AM,02/15/2016 10:19:52 AM,02/15/2016 10:20:08 AM,02/15/2016 10:22:08 AM,02/15/2016 10:27:07 AM,02/15/2016 10:38:16 AM,02/15/2016 10:54:28 AM,Code 2 Transport,02/15/2016 11:53:09 AM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7234913181355, -122.435621772842)",160461113-AM08 -160272561,56,16010755,Medical Incident,01/27/2016,01/27/2016,01/27/2016 04:03:12 PM,01/27/2016 04:03:12 PM,01/27/2016 04:04:28 PM,01/27/2016 04:04:45 PM,01/27/2016 04:21:48 PM,01/27/2016 04:34:01 PM,01/27/2016 04:37:28 PM,Code 2 Transport,01/27/2016 04:57:09 PM,TAYLOR ST/GOLDEN GATE AV,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160272561-56 -110760196,E38,11024985,Medical Incident,03/17/2011,03/17/2011,03/17/2011 12:54:00 PM,03/17/2011 12:55:46 PM,03/17/2011 12:56:08 PM,03/17/2011 12:57:01 PM,03/17/2011 12:58:20 PM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 01:04:52 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",110760196-E38 -133070379,B03,13104563,Alarms,11/03/2013,11/03/2013,11/03/2013 11:54:12 PM,11/03/2013 11:54:12 PM,11/03/2013 11:54:44 PM,11/03/2013 11:57:00 PM,11/04/2013 12:00:46 AM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/04/2013 12:08:59 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7854258563204, -122.399870165149)",133070379-B03 -160111325,71,16004359,Medical Incident,01/11/2016,01/11/2016,01/11/2016 11:24:28 AM,01/11/2016 11:25:38 AM,01/11/2016 11:26:41 AM,01/11/2016 11:26:41 AM,01/11/2016 11:33:59 AM,01/11/2016 11:46:07 AM,01/11/2016 12:01:34 PM,Code 2 Transport,01/11/2016 12:48:34 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160111325-71 -160790767,55,16031336,Medical Incident,03/19/2016,03/18/2016,03/19/2016 07:25:06 AM,03/19/2016 07:25:43 AM,03/19/2016 07:26:19 AM,03/19/2016 07:27:31 AM,03/19/2016 07:51:53 AM,03/19/2016 07:51:54 AM,03/19/2016 07:51:55 AM,Code 2 Transport,03/19/2016 08:44:50 AM,500 Block of 5TH ST,San Francisco,94107,B07,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160790767-55 -110710140,94,11023322,Medical Incident,03/12/2011,03/12/2011,03/12/2011 10:05:44 AM,03/12/2011 10:06:47 AM,03/12/2011 10:07:03 AM,03/12/2011 10:07:12 AM,03/12/2011 10:19:10 AM,03/12/2011 10:27:19 AM,03/12/2011 10:40:25 AM,Code 2 Transport,03/12/2011 11:03:50 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",110710140-94 -110640311,T03,11021182,Medical Incident,03/05/2011,03/05/2011,03/05/2011 05:27:47 PM,03/05/2011 05:28:35 PM,03/05/2011 05:30:07 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 05:33:38 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,TRUCK,5,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",110640311-T03 -111300246,92,11043017,Medical Incident,05/10/2011,05/10/2011,05/10/2011 03:57:30 PM,05/10/2011 03:59:14 PM,05/10/2011 03:59:46 PM,05/10/2011 04:00:11 PM,05/10/2011 04:14:29 PM,05/10/2011 04:32:46 PM,05/10/2011 04:56:46 PM,Code 2 Transport,05/10/2011 05:30:21 PM,500 Block of LOMBARD ST,SF,94133,B01,28,1346,2,2,2,true,,1,MEDIC,2,1,3,North Beach,"(37.8031525870165, -122.41087857627)",111300246-92 -103550097,92,10113891,Medical Incident,12/21/2010,12/21/2010,12/21/2010 09:08:16 AM,12/21/2010 09:09:02 AM,12/21/2010 09:09:24 AM,12/21/2010 09:10:09 AM,12/21/2010 09:12:59 AM,12/21/2010 09:51:32 AM,12/21/2010 10:06:27 AM,Code 2 Transport,12/21/2010 10:52:44 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,2,2,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",103550097-92 -110490382,E41,11016353,Structure Fire,02/18/2011,02/18/2011,02/18/2011 09:02:36 PM,02/18/2011 09:04:00 PM,02/18/2011 09:04:27 PM,02/18/2011 09:05:47 PM,02/18/2011 09:08:14 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 09:10:57 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,,1,ENGINE,6,3,6,South of Market,"(37.7815374331217, -122.409518341416)",110490382-E41 -131330010,67,13044715,Medical Incident,05/13/2013,05/12/2013,05/13/2013 12:24:54 AM,05/13/2013 12:27:31 AM,05/13/2013 12:29:09 AM,05/13/2013 12:29:16 AM,05/13/2013 12:35:52 AM,05/13/2013 12:53:00 AM,05/13/2013 01:16:42 AM,Code 2 Transport,05/13/2013 01:45:44 AM,200 Block of 13TH ST,SF,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",131330010-67 -160721021,64,16028532,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:45:04 AM,03/12/2016 09:46:50 AM,03/12/2016 09:48:15 AM,03/12/2016 09:48:22 AM,03/12/2016 09:59:22 AM,03/12/2016 10:16:35 AM,03/12/2016 10:36:37 AM,Code 2 Transport,03/12/2016 11:26:48 AM,100 Block of NUEVA AVE,San Francisco,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7121182087675, -122.39706939553)",160721021-64 -121380325,RS1,12045970,Medical Incident,05/17/2012,05/17/2012,05/17/2012 07:56:41 PM,05/17/2012 07:57:33 PM,05/17/2012 07:58:58 PM,05/17/2012 08:00:13 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/17/2012 08:01:48 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",121380325-RS1 -110100067,E36,11003222,Medical Incident,01/10/2011,01/09/2011,01/10/2011 07:37:53 AM,01/10/2011 07:38:44 AM,01/10/2011 07:39:10 AM,01/10/2011 07:41:51 AM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 07:48:00 AM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,,1,ENGINE,3,2,8,Mission,"(37.7685615589203, -122.42458408581)",110100067-E36 -112550254,T08,11084175,Medical Incident,09/12/2011,09/12/2011,09/12/2011 04:15:53 PM,09/12/2011 04:18:35 PM,09/12/2011 04:18:56 PM,09/12/2011 04:20:17 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Other,09/12/2011 04:23:04 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,TRUCK,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112550254-T08 -160020691,81,16000644,Medical Incident,01/02/2016,01/01/2016,01/02/2016 07:56:07 AM,01/02/2016 07:58:12 AM,01/02/2016 07:58:43 AM,01/02/2016 07:58:53 AM,01/02/2016 08:13:22 AM,01/02/2016 08:19:41 AM,01/02/2016 08:38:19 AM,Code 2 Transport,01/02/2016 09:10:29 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160020691-81 -130890152,E12,13029725,Administrative,03/30/2013,03/30/2013,03/30/2013 12:17:24 PM,03/30/2013 12:17:36 PM,03/30/2013 12:17:49 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 12:18:17 PM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",130890152-E12 -160081458,71,16003200,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:26:35 AM,01/08/2016 11:27:27 AM,01/08/2016 11:28:04 AM,01/08/2016 11:28:22 AM,01/08/2016 11:32:25 AM,01/08/2016 11:56:02 AM,01/08/2016 12:12:08 PM,Code 2 Transport,01/08/2016 12:58:03 PM,3200 Block of QUINTARA ST,San Francisco,94116,B08,23,7645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7475260999198, -122.500186317205)",160081458-71 -130330128,B01,13011232,Alarms,02/02/2013,02/02/2013,02/02/2013 09:39:00 AM,02/02/2013 09:39:59 AM,02/02/2013 09:40:06 AM,02/02/2013 09:41:00 AM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/02/2013 09:52:53 AM,0 Block of FALLON PL,SF,94133,B01,2,1442,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.7977464099697, -122.413400804085)",130330128-B01 -160700964,59,16027776,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:32:03 AM,03/10/2016 09:32:40 AM,03/10/2016 09:33:05 AM,03/10/2016 09:35:42 AM,03/10/2016 09:43:04 AM,03/10/2016 09:54:42 AM,03/10/2016 10:15:03 AM,Code 2 Transport,03/10/2016 11:16:03 AM,0 Block of CONKLING ST,San Francisco,94124,B10,42,6363,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7355970334328, -122.401966640039)",160700964-59 -102830383,E01,10090232,Medical Incident,10/10/2010,10/10/2010,10/10/2010 10:03:03 PM,10/10/2010 10:03:53 PM,10/10/2010 10:04:01 PM,10/10/2010 10:06:25 PM,10/10/2010 10:08:54 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 10:20:17 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",102830383-E01 -103530004,E41,10113163,Medical Incident,12/19/2010,12/18/2010,12/19/2010 12:03:03 AM,12/19/2010 12:05:06 AM,12/19/2010 12:05:32 AM,12/19/2010 12:07:01 AM,12/19/2010 12:09:02 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/19/2010 12:19:51 AM,1500 Block of JACKSON ST,SF,94109,B01,41,1633,3,3,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7943031178825, -122.420589480632)",103530004-E41 -160432858,AM16,16017408,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:48:52 PM,02/12/2016 05:51:02 PM,02/12/2016 05:53:20 PM,02/12/2016 05:53:51 PM,02/12/2016 06:04:38 PM,02/12/2016 06:14:28 PM,02/12/2016 06:32:57 PM,Code 2 Transport,02/12/2016 06:57:41 PM,200 Block of MAIN ST,San Francisco,94105,B03,35,2117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.78995234675, -122.392682318412)",160432858-AM16 -132770043,AM22,13093968,Medical Incident,10/04/2013,10/03/2013,10/04/2013 03:55:27 AM,10/04/2013 03:56:35 AM,10/04/2013 03:56:55 AM,10/04/2013 03:57:53 AM,10/04/2013 04:00:42 AM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/04/2013 04:04:10 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,E,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",132770043-AM22 -132770418,E14,13094276,Alarms,10/04/2013,10/04/2013,10/04/2013 08:20:34 PM,10/04/2013 08:21:50 PM,10/04/2013 08:23:26 PM,10/04/2013 08:24:23 PM,10/04/2013 08:26:57 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Fire,10/04/2013 08:40:50 PM,500 Block of 20TH AVE,SF,94121,B07,14,7165,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7774804770389, -122.479104483079)",132770418-E14 -122960060,B02,12098047,Alarms,10/22/2012,10/21/2012,10/22/2012 07:04:50 AM,10/22/2012 07:06:25 AM,10/22/2012 07:07:10 AM,10/22/2012 07:08:59 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Fire,10/22/2012 07:14:39 AM,400 Block of 9TH ST,SF,94103,B03,29,2333,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7721679781687, -122.409530896113)",122960060-B02 -160493153,63,16019839,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:38:21 PM,02/18/2016 06:39:47 PM,02/18/2016 06:40:13 PM,02/18/2016 06:41:34 PM,02/18/2016 06:44:38 PM,02/18/2016 07:12:14 PM,02/18/2016 07:39:12 PM,Code 2 Transport,02/18/2016 08:16:08 PM,700 Block of UNION ST,San Francisco,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.800140039009, -122.412059325975)",160493153-63 -140790330,T06,14026843,Alarms,03/20/2014,03/20/2014,03/20/2014 07:32:44 PM,03/20/2014 07:34:05 PM,03/20/2014 07:34:11 PM,03/20/2014 07:36:00 PM,03/20/2014 07:37:43 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Fire,03/20/2014 07:44:24 PM,300 Block of VALENCIA ST,SAN FRANCISCO,94103,B02,6,5226,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.76701047078, -122.422020137013)",140790330-T06 -160431222,53,16017240,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:37:59 AM,02/12/2016 10:37:59 AM,02/12/2016 10:39:37 AM,02/12/2016 10:39:55 AM,02/12/2016 10:42:31 AM,02/12/2016 10:58:23 AM,02/12/2016 11:11:57 AM,Code 2 Transport,02/12/2016 11:57:58 AM,20TH AV/GEARY BL,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.780334689944, -122.479382974071)",160431222-53 -120350067,KM15,12011530,Medical Incident,02/04/2012,02/03/2012,02/04/2012 05:37:04 AM,02/04/2012 05:38:20 AM,02/04/2012 05:38:47 AM,02/04/2012 05:39:31 AM,02/04/2012 05:48:06 AM,02/04/2012 06:02:42 AM,02/04/2012 06:19:30 AM,Code 2 Transport,02/04/2012 06:37:27 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",120350067-KM15 -140770264,T01,14026134,Medical Incident,03/18/2014,03/18/2014,03/18/2014 04:43:49 PM,03/18/2014 04:45:09 PM,03/18/2014 04:57:20 PM,03/18/2014 04:57:44 PM,03/18/2014 05:01:47 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Patient Declined Transport,03/18/2014 05:03:25 PM,100 Block of 3RD ST,TREASURE ISLAN,94105,B02,48,2931,2,3,3,false,Non Life-threatening,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",140770264-T01 -110100037,E03,11003196,Medical Incident,01/10/2011,01/09/2011,01/10/2011 04:34:44 AM,01/10/2011 04:35:11 AM,01/10/2011 04:35:20 AM,01/10/2011 04:35:40 AM,01/10/2011 04:37:08 AM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 04:55:48 AM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",110100037-E03 -160883624,KM07,16035121,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:54:48 PM,03/28/2016 08:56:27 PM,03/28/2016 08:57:06 PM,03/28/2016 08:59:53 PM,03/28/2016 09:02:49 PM,03/28/2016 09:11:03 PM,03/28/2016 09:20:50 PM,Code 2 Transport,03/28/2016 09:45:18 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160883624-KM07 -160650525,55,16025820,Medical Incident,03/05/2016,03/04/2016,03/05/2016 04:47:31 AM,03/05/2016 04:49:45 AM,03/05/2016 04:50:04 AM,03/05/2016 04:50:28 AM,03/05/2016 04:53:12 AM,03/05/2016 05:10:05 AM,03/05/2016 05:17:46 AM,Code 2 Transport,03/05/2016 05:32:15 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160650525-55 -140260180,E43,14008908,Medical Incident,01/26/2014,01/26/2014,01/26/2014 01:55:21 PM,01/26/2014 01:56:50 PM,01/26/2014 02:02:27 PM,01/26/2014 02:03:03 PM,01/26/2014 02:06:46 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/26/2014 02:33:59 PM,0 Block of ROBINSON DR,SF,94112,B09,43,6236,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7092465786182, -122.42932313421)",140260180-E43 -160180067,72,16007065,Medical Incident,01/18/2016,01/17/2016,01/18/2016 12:31:15 AM,01/18/2016 12:32:33 AM,01/18/2016 12:32:52 AM,01/18/2016 12:33:14 AM,01/18/2016 12:36:34 AM,01/18/2016 12:49:17 AM,01/18/2016 01:00:12 AM,Code 2 Transport,01/18/2016 01:30:30 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160180067-72 -132980405,AP,13101396,Other,10/25/2013,10/25/2013,10/25/2013 10:13:18 PM,10/25/2013 10:13:19 PM,10/25/2013 10:13:19 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Fire,10/25/2013 10:13:43 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",132980405-AP -112280315,56,11075472,Medical Incident,08/16/2011,08/16/2011,08/16/2011 08:15:44 PM,08/16/2011 08:17:37 PM,08/16/2011 08:20:15 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Other,08/16/2011 08:21:10 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112280315-56 -123530049,KM09,12117997,Medical Incident,12/18/2012,12/17/2012,12/18/2012 05:26:28 AM,12/18/2012 05:27:52 AM,12/18/2012 05:28:23 AM,12/18/2012 05:29:46 AM,12/18/2012 05:39:26 AM,12/18/2012 05:48:23 AM,12/18/2012 06:03:52 AM,Code 2 Transport,12/18/2012 06:35:45 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,1,1,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",123530049-KM09 -160522599,AM16,16020901,Medical Incident,02/21/2016,02/21/2016,02/21/2016 05:38:51 PM,02/21/2016 05:39:37 PM,02/21/2016 05:40:17 PM,02/21/2016 05:40:50 PM,02/21/2016 05:48:44 PM,02/21/2016 06:16:37 PM,02/21/2016 06:30:43 PM,Code 2 Transport,02/21/2016 06:57:00 PM,600 Block of JONES ST,San Francisco,94102,B01,3,1462,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",160522599-AM16 -110490013,89,11016050,Medical Incident,02/18/2011,02/17/2011,02/18/2011 01:07:17 AM,02/18/2011 01:07:30 AM,02/18/2011 01:07:56 AM,02/18/2011 01:09:24 AM,02/18/2011 01:12:05 AM,02/18/2011 01:29:02 AM,02/18/2011 01:38:04 AM,Code 2 Transport,02/18/2011 02:15:13 AM,MISSION ST/FRANCE AV,SF,94112,B09,43,6123,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7200155262017, -122.438329412593)",110490013-89 -140750081,89,14025306,Traffic Collision,03/16/2014,03/15/2014,03/16/2014 04:40:09 AM,03/16/2014 04:41:15 AM,03/16/2014 04:41:35 AM,03/16/2014 04:41:57 AM,03/16/2014 04:47:30 AM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Unable to Locate,03/16/2014 04:52:00 AM,BAYSHORE BL/3RD ST,SAN FRANCISCO,94124,B10,44,6542,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7177400893424, -122.398434316401)",140750081-89 -140360182,AM06,14012207,Medical Incident,02/05/2014,02/05/2014,02/05/2014 01:07:26 PM,02/05/2014 01:09:26 PM,02/05/2014 01:09:40 PM,02/05/2014 01:10:17 PM,02/05/2014 01:14:19 PM,02/05/2014 01:46:00 PM,02/05/2014 01:59:36 PM,Code 2 Transport,02/05/2014 02:41:40 PM,300 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8057759671113, -122.412787887195)",140360182-AM06 -123450256,58,12115379,Medical Incident,12/10/2012,12/10/2012,12/10/2012 02:15:34 PM,12/10/2012 02:16:30 PM,12/10/2012 02:16:56 PM,12/10/2012 02:17:25 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,04/25/2016 01:55:22 PM,5600 Block of 3RD ST,SF,94124,B10,17,6537,E,E,3,true,Potentially Life-Threatening,1,MEDIC,6,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",123450256-58 -140530174,E21,14017933,Structure Fire,02/22/2014,02/22/2014,02/22/2014 12:27:44 PM,02/22/2014 12:28:35 PM,02/22/2014 12:29:01 PM,02/22/2014 12:30:02 PM,02/22/2014 12:31:12 PM,04/25/2016 01:48:05 PM,04/25/2016 01:48:05 PM,Fire,02/22/2014 12:44:49 PM,800 Block of WALLER ST,SF,94117,B05,21,4143,3,3,3,false,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.770115719974, -122.438149053573)",140530174-E21 -132020072,RC1,13068377,Alarms,07/21/2013,07/21/2013,07/21/2013 08:17:17 AM,07/21/2013 08:27:13 AM,07/21/2013 08:54:57 AM,04/25/2016 01:51:42 PM,07/21/2013 09:23:07 AM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 12:41:05 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,2,2,2,true,Alarm,1,RESCUE CAPTAIN,25,1,3,Financial District/South Beach,"(37.7891367799941, -122.40363527458)",132020072-RC1 -140380054,T14,14012722,Alarms,02/07/2014,02/06/2014,02/07/2014 07:15:43 AM,02/07/2014 07:17:02 AM,02/07/2014 07:17:17 AM,02/07/2014 07:18:53 AM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 07:20:08 AM,4100 Block of CLEMENT ST,SF,94121,B07,34,7266,3,3,3,false,Alarm,1,TRUCK,3,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",140380054-T14 -111600281,E31,11052962,Medical Incident,06/09/2011,06/09/2011,06/09/2011 07:39:52 PM,06/09/2011 07:41:09 PM,06/09/2011 07:41:50 PM,06/09/2011 07:42:51 PM,06/09/2011 07:45:53 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 08:01:34 PM,300 Block of LAKE ST,SF,94118,B07,31,712,3,3,3,true,,1,ENGINE,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",111600281-E31 -102930029,E06,10093322,Medical Incident,10/20/2010,10/19/2010,10/20/2010 03:40:50 AM,10/20/2010 03:41:51 AM,10/20/2010 03:42:30 AM,10/20/2010 03:43:59 AM,10/20/2010 03:45:38 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,No Merit,10/20/2010 03:47:13 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7647586086861, -122.423602301722)",102930029-E06 -110430351,E01,11014403,Medical Incident,02/12/2011,02/12/2011,02/12/2011 06:38:28 PM,02/12/2011 06:39:18 PM,02/12/2011 06:39:31 PM,04/25/2016 02:06:07 PM,02/12/2011 06:41:44 PM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 07:07:02 PM,800 Block of HOWARD ST,SF,94103,B03,1,2245,3,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7824182864419, -122.403869611535)",110430351-E01 -140560109,KM04,14018832,Medical Incident,02/25/2014,02/25/2014,02/25/2014 09:24:46 AM,02/25/2014 09:27:24 AM,02/25/2014 09:27:43 AM,02/25/2014 09:30:59 AM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,No Merit,02/25/2014 09:33:33 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7866019512795, -122.419812186232)",140560109-KM04 -160290673,AM02,16011347,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:02:43 AM,01/29/2016 08:03:04 AM,01/29/2016 08:03:16 AM,01/29/2016 08:03:45 AM,01/29/2016 08:11:27 AM,01/29/2016 08:28:53 AM,01/29/2016 08:47:16 AM,Code 2 Transport,01/29/2016 09:05:58 AM,0 Block of HARRINGTON ST,San Francisco,94112,B09,43,6117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7256640493624, -122.435313776535)",160290673-AM02 -112330039,58,11076822,Medical Incident,08/21/2011,08/20/2011,08/21/2011 01:50:22 AM,08/21/2011 01:52:46 AM,08/21/2011 01:53:16 AM,08/21/2011 01:53:50 AM,08/21/2011 02:00:43 AM,08/21/2011 02:10:39 AM,08/21/2011 02:36:24 AM,Code 2 Transport,08/21/2011 02:59:55 AM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",112330039-58 -111220277,E17,11040391,Medical Incident,05/02/2011,05/02/2011,05/02/2011 04:58:32 PM,05/02/2011 04:59:24 PM,05/02/2011 04:59:43 PM,05/02/2011 05:01:01 PM,05/02/2011 05:02:44 PM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,05/02/2011 05:13:37 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",111220277-E17 -160872452,KM05,16034637,Medical Incident,03/27/2016,03/27/2016,03/27/2016 04:19:40 PM,03/27/2016 04:20:33 PM,03/27/2016 04:20:40 PM,03/27/2016 04:22:03 PM,03/27/2016 04:28:19 PM,03/27/2016 04:44:55 PM,03/27/2016 05:06:32 PM,Code 2 Transport,03/27/2016 05:47:40 PM,800 Block of 40TH AVE,San Francisco,94121,B07,34,7261,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7727721530118, -122.500252838328)",160872452-KM05 -112260361,E22,11074829,Medical Incident,08/14/2011,08/14/2011,08/14/2011 09:44:06 PM,08/14/2011 09:46:31 PM,08/14/2011 09:47:53 PM,08/14/2011 09:48:56 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 09:50:17 PM,23RD AV/IRVING ST,SF,94122,B08,22,7451,3,3,3,false,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7633730938478, -122.481408835625)",112260361-E22 -120630047,T07,12020631,Structure Fire,03/03/2012,03/02/2012,03/03/2012 02:33:46 AM,03/03/2012 02:33:46 AM,03/03/2012 02:34:21 AM,03/03/2012 02:36:40 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 02:37:42 AM,16TH ST/GUERRERO ST,SF,94103,B02,6,5235,3,3,3,true,Alarm,1,TRUCK,2,2,8,Mission,"(37.7647834522541, -122.424102685064)",120630047-T07 -111100134,T01,11036272,Structure Fire,04/20/2011,04/20/2011,04/20/2011 10:10:29 AM,04/20/2011 10:11:44 AM,04/20/2011 10:12:34 AM,04/20/2011 10:14:02 AM,04/20/2011 10:15:05 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 10:24:41 AM,4TH ST/HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",111100134-T01 -111480072,E36,11048997,Alarms,05/28/2011,05/28/2011,05/28/2011 08:19:07 AM,05/28/2011 08:20:32 AM,05/28/2011 08:20:57 AM,05/28/2011 08:22:55 AM,05/28/2011 08:24:32 AM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,05/28/2011 08:27:58 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",111480072-E36 -103560139,64,10114224,Medical Incident,12/22/2010,12/22/2010,12/22/2010 11:00:53 AM,12/22/2010 11:02:50 AM,12/22/2010 11:05:07 AM,12/22/2010 11:05:18 AM,12/22/2010 11:09:21 AM,12/22/2010 11:25:20 AM,12/22/2010 11:50:13 AM,Code 2 Transport,12/22/2010 12:38:45 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",103560139-64 -111040207,75,11034495,Medical Incident,04/14/2011,04/14/2011,04/14/2011 02:46:17 PM,04/14/2011 02:48:14 PM,04/14/2011 02:49:29 PM,04/14/2011 02:50:03 PM,04/14/2011 03:06:38 PM,04/14/2011 03:15:57 PM,04/14/2011 03:37:30 PM,Code 2 Transport,04/14/2011 04:04:26 PM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,1,1,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7929530870311, -122.401531075315)",111040207-75 -122060235,79,12068530,Medical Incident,07/24/2012,07/24/2012,07/24/2012 03:27:40 PM,07/24/2012 03:28:12 PM,07/24/2012 03:28:27 PM,07/24/2012 03:28:47 PM,07/24/2012 03:34:55 PM,07/24/2012 03:44:00 PM,07/24/2012 03:56:40 PM,Code 2 Transport,07/24/2012 04:13:16 PM,100 Block of RICKARD ST,SF,94134,B10,42,6366,3,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7342270960394, -122.407403239738)",122060235-79 -111560292,92,11051657,Medical Incident,06/05/2011,06/05/2011,06/05/2011 04:48:00 PM,06/05/2011 04:49:22 PM,06/05/2011 04:49:37 PM,06/05/2011 04:50:19 PM,06/05/2011 04:58:40 PM,06/05/2011 05:18:10 PM,06/05/2011 05:35:43 PM,Code 2 Transport,06/05/2011 05:59:25 PM,1500 Block of ALEMANY BLVD,SF,94112,B09,15,8271,1,1,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7275315597461, -122.43567234398)",111560292-92 -112260136,E42,11074633,Medical Incident,08/14/2011,08/14/2011,08/14/2011 11:41:27 AM,08/14/2011 11:42:14 AM,08/14/2011 11:42:51 AM,08/14/2011 11:44:39 AM,08/14/2011 11:47:46 AM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 12:03:25 PM,300 Block of OXFORD ST,SF,94134,B09,43,6152,3,3,3,true,,1,ENGINE,3,9,9,Excelsior,"(37.72555008701, -122.419202552102)",112260136-E42 -130370089,66,13012619,Medical Incident,02/06/2013,02/06/2013,02/06/2013 09:02:52 AM,02/06/2013 09:04:28 AM,02/06/2013 09:04:55 AM,02/06/2013 09:05:29 AM,02/06/2013 09:10:36 AM,02/06/2013 09:26:34 AM,02/06/2013 09:36:03 AM,Code 3 Transport,02/06/2013 10:24:06 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",130370089-66 -131550262,E39,13052587,Alarms,06/04/2013,06/04/2013,06/04/2013 02:48:25 PM,06/04/2013 02:49:32 PM,06/04/2013 02:49:44 PM,06/04/2013 02:51:04 PM,06/04/2013 02:53:37 PM,04/25/2016 01:52:27 PM,04/25/2016 01:52:27 PM,Fire,06/04/2013 02:57:36 PM,0 Block of AGUA WAY,SF,94127,B09,39,8651,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.742207178028, -122.451868140233)",131550262-E39 -123430071,E18,12114531,Medical Incident,12/08/2012,12/07/2012,12/08/2012 05:20:31 AM,12/08/2012 05:21:11 AM,12/08/2012 05:21:48 AM,12/08/2012 05:23:01 AM,12/08/2012 05:26:15 AM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/08/2012 05:33:26 AM,2300 Block of 43RD AVE,SF,94116,B08,18,7644,3,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7428445256261, -122.501538737612)",123430071-E18 -160393660,AM20,16015812,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:03:28 PM,02/08/2016 10:04:41 PM,02/08/2016 10:06:02 PM,02/08/2016 10:06:47 PM,02/08/2016 10:10:55 PM,02/08/2016 10:30:23 PM,02/08/2016 10:42:42 PM,Code 2 Transport,02/08/2016 11:20:38 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160393660-AM20 -160451749,AM12,16018127,Medical Incident,02/14/2016,02/14/2016,02/14/2016 01:34:19 PM,02/14/2016 01:36:02 PM,02/14/2016 01:36:31 PM,02/14/2016 01:37:51 PM,02/14/2016 01:44:41 PM,02/14/2016 02:06:16 PM,02/14/2016 02:22:19 PM,Code 2 Transport,02/14/2016 02:52:25 PM,TAYLOR ST/JEFFERSON ST,San Francisco,94133,B01,28,1433,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.808214052974, -122.41580242723)",160451749-AM12 -133130230,83,13106409,Structure Fire,11/09/2013,11/09/2013,11/09/2013 01:47:09 PM,11/09/2013 01:48:01 PM,11/09/2013 01:48:08 PM,11/09/2013 01:48:29 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 01:55:37 PM,3900 Block of 24TH ST,SF,94114,B06,11,5522,3,3,3,true,Alarm,1,MEDIC,10,6,8,Noe Valley,"(37.7515587821475, -122.430772936349)",133130230-83 -110410420,E44,11013762,Structure Fire,02/10/2011,02/10/2011,02/10/2011 11:46:11 PM,02/10/2011 11:46:12 PM,02/10/2011 11:46:18 PM,02/10/2011 11:47:06 PM,02/10/2011 11:50:30 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/10/2011 11:51:12 PM,BAYSHORE BL/LELAND AV,SF,94134,B10,44,6255,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7111885730458, -122.403650108735)",110410420-E44 -160512976,62,16020586,Medical Incident,02/20/2016,02/20/2016,02/20/2016 08:22:47 PM,02/20/2016 08:24:37 PM,02/20/2016 08:24:45 PM,02/20/2016 08:24:54 PM,02/20/2016 08:33:35 PM,02/20/2016 08:55:34 PM,02/20/2016 09:14:02 PM,Code 2 Transport,02/20/2016 09:49:00 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160512976-62 -111160346,E28,11038409,Medical Incident,04/26/2011,04/26/2011,04/26/2011 07:11:12 PM,04/26/2011 07:13:54 PM,04/26/2011 07:14:11 PM,04/26/2011 07:15:04 PM,04/26/2011 07:16:50 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 07:20:45 PM,BAY ST/COLUMBUS AV,SF,94133,B01,28,1425,3,3,3,false,,1,ENGINE,1,1,2,Russian Hill,"(37.8051696488028, -122.417226194565)",111160346-E28 -160271831,88,16010676,Medical Incident,01/27/2016,01/27/2016,01/27/2016 01:08:17 PM,01/27/2016 01:08:17 PM,01/27/2016 01:08:36 PM,01/27/2016 01:09:32 PM,01/27/2016 01:12:47 PM,01/27/2016 01:41:06 PM,01/27/2016 02:06:13 PM,Code 2 Transport,01/27/2016 02:33:48 PM,HUDSON AV/3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7403172644605, -122.388754590589)",160271831-88 -130460176,RS1,13015594,Medical Incident,02/15/2013,02/15/2013,02/15/2013 11:23:57 AM,02/15/2013 11:25:04 AM,02/15/2013 11:25:34 AM,02/15/2013 11:26:37 AM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 11:27:15 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",130460176-RS1 -132990222,E02,13101621,Alarms,10/26/2013,10/26/2013,10/26/2013 02:14:26 PM,10/26/2013 02:14:27 PM,10/26/2013 02:14:49 PM,10/26/2013 02:16:19 PM,10/26/2013 02:17:38 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/26/2013 02:18:02 PM,GRANT AV/JACKSON ST,SF,94133,B01,2,1312,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",132990222-E02 -122240349,T08,12074427,Medical Incident,08/11/2012,08/11/2012,08/11/2012 09:35:09 PM,08/11/2012 09:35:40 PM,08/11/2012 09:36:25 PM,08/11/2012 09:37:54 PM,08/11/2012 09:40:08 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 09:51:21 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122240349-T08 -160672023,60,16026800,Medical Incident,03/07/2016,03/07/2016,03/07/2016 03:09:59 PM,03/07/2016 03:16:28 PM,03/07/2016 03:17:32 PM,03/07/2016 03:18:07 PM,03/07/2016 03:21:34 PM,03/07/2016 03:49:35 PM,03/07/2016 03:49:36 PM,Code 3 Transport,03/07/2016 04:28:01 PM,900 Block of POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",160672023-60 -110380040,RS2,11012469,Structure Fire,02/07/2011,02/06/2011,02/07/2011 03:01:44 AM,02/07/2011 03:02:35 AM,02/07/2011 03:03:09 AM,02/07/2011 03:06:17 AM,02/07/2011 03:10:38 AM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/07/2011 04:05:24 AM,300 Block of CORBETT AVE,SF,94114,B05,24,5265,3,3,3,false,,2,RESCUE SQUAD,4,6,8,Castro/Upper Market,"(37.7591354950053, -122.446136454029)",110380040-RS2 -130110133,86,13003703,Medical Incident,01/11/2013,01/11/2013,01/11/2013 10:44:32 AM,01/11/2013 10:47:53 AM,01/11/2013 10:49:36 AM,01/11/2013 10:49:42 AM,01/11/2013 11:00:38 AM,01/11/2013 11:16:52 AM,01/11/2013 11:37:20 AM,Code 2 Transport,01/11/2013 11:56:21 AM,300 Block of RHODE ISLAND ST,SF,94103,B03,29,2413,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission Bay,"(37.7654237351553, -122.402693174465)",130110133-86 -131350013,77,13045425,Medical Incident,05/15/2013,05/14/2013,05/15/2013 02:12:52 AM,05/15/2013 02:14:43 AM,05/15/2013 02:16:19 AM,05/15/2013 02:17:11 AM,05/15/2013 02:22:03 AM,05/15/2013 02:44:52 AM,05/15/2013 03:03:55 AM,Code 2 Transport,05/15/2013 03:50:28 AM,2500 Block of LOMBARD ST,SF,94123,B04,16,4223,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7990014109723, -122.443503858027)",131350013-77 -113140255,T05,11104389,Structure Fire,11/10/2011,11/10/2011,11/10/2011 04:12:44 PM,11/10/2011 04:13:06 PM,11/10/2011 04:13:30 PM,11/10/2011 04:14:36 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 04:24:34 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,,1,TRUCK,7,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",113140255-T05 -112360341,RC3,11078024,Medical Incident,08/24/2011,08/24/2011,08/24/2011 10:12:46 PM,08/24/2011 10:12:47 PM,08/24/2011 10:12:55 PM,08/24/2011 10:13:53 PM,08/24/2011 10:16:25 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 10:30:42 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,E,E,3,true,,1,RESCUE CAPTAIN,3,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",112360341-RC3 -160101990,52,16004074,Medical Incident,01/10/2016,01/10/2016,01/10/2016 02:47:11 PM,01/10/2016 02:49:07 PM,01/10/2016 02:49:36 PM,01/10/2016 02:49:49 PM,01/10/2016 03:02:54 PM,01/10/2016 03:18:45 PM,01/10/2016 03:37:47 PM,Code 2 Transport,01/10/2016 03:50:42 PM,0 Block of BARTLETT ST,San Francisco,94110,B06,7,5456,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.756171321347, -122.419865537021)",160101990-52 -122210365,E08,12073426,Medical Incident,08/08/2012,08/08/2012,08/08/2012 11:30:32 PM,08/08/2012 11:32:40 PM,08/08/2012 11:33:31 PM,08/08/2012 11:35:35 PM,08/08/2012 11:38:30 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,No Merit,08/08/2012 11:41:37 PM,HARRISON ST/7TH ST,SF,94103,B03,8,2312,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7755141534465, -122.406295964728)",122210365-E08 -112250100,E36,11074274,Alarms,08/13/2011,08/13/2011,08/13/2011 09:06:38 AM,08/13/2011 09:07:57 AM,08/13/2011 09:08:12 AM,08/13/2011 09:09:24 AM,08/13/2011 09:11:06 AM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 09:19:59 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",112250100-E36 -160432911,88,16017412,Medical Incident,02/12/2016,02/12/2016,02/12/2016 06:02:02 PM,02/12/2016 06:04:05 PM,02/12/2016 06:06:42 PM,02/12/2016 06:06:50 PM,02/12/2016 06:08:26 PM,02/12/2016 06:18:42 PM,02/12/2016 06:19:18 PM,Code 2 Transport,02/12/2016 06:48:43 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",160432911-88 -122560224,E13,12084679,Medical Incident,09/12/2012,09/12/2012,09/12/2012 04:46:12 PM,09/12/2012 04:47:53 PM,09/12/2012 04:48:18 PM,09/12/2012 04:49:38 PM,09/12/2012 04:51:33 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 05:10:10 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",122560224-E13 -132550277,RC1,13086258,Medical Incident,09/12/2013,09/12/2013,09/12/2013 04:28:09 PM,09/12/2013 04:29:09 PM,09/12/2013 04:31:25 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 04:31:53 PM,1000 Block of THE EMBARCADERO,SF,94111,B01,13,927,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",132550277-RC1 -160731921,87,16029016,Medical Incident,03/13/2016,03/13/2016,03/13/2016 04:10:02 PM,03/13/2016 04:10:36 PM,03/13/2016 04:10:57 PM,03/13/2016 04:11:07 PM,03/13/2016 04:14:04 PM,03/13/2016 04:25:53 PM,03/13/2016 04:29:18 PM,Code 3 Transport,03/13/2016 05:39:47 PM,1300 Block of 4TH AVE,San Francisco,94122,B05,12,7324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7634528101504, -122.460831251397)",160731921-87 -160852119,84,16033813,Medical Incident,03/25/2016,03/25/2016,03/25/2016 02:15:42 PM,03/25/2016 02:17:33 PM,03/25/2016 02:18:52 PM,03/25/2016 02:19:05 PM,03/25/2016 02:22:22 PM,03/25/2016 02:36:46 PM,03/25/2016 02:54:02 PM,Code 2 Transport,03/25/2016 03:24:09 PM,2100 Block of MARKET ST,San Francisco,94114,B05,6,5231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",160852119-84 -120280316,79,12009530,Medical Incident,01/28/2012,01/28/2012,01/28/2012 08:23:40 PM,01/28/2012 08:24:04 PM,01/28/2012 08:25:05 PM,01/28/2012 08:25:12 PM,01/28/2012 08:33:03 PM,01/28/2012 08:48:48 PM,01/28/2012 09:02:36 PM,Code 2 Transport,01/28/2012 09:35:33 PM,300 Block of JEFFERSON ST,SF,94133,B01,28,947,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8079624466014, -122.418277044979)",120280316-79 -122840046,89,12093844,Medical Incident,10/10/2012,10/09/2012,10/10/2012 06:40:57 AM,10/10/2012 06:41:45 AM,10/10/2012 06:42:42 AM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 06:50:17 AM,1900 Block of TURK ST,SF,94115,B05,21,4255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,2,Western Addition,"(37.7794555627999, -122.440688868912)",122840046-89 -113080422,B02,11102522,Medical Incident,11/04/2011,11/04/2011,11/04/2011 10:57:29 PM,11/04/2011 10:58:16 PM,11/04/2011 10:58:40 PM,04/25/2016 02:01:48 PM,11/04/2011 11:02:12 PM,04/25/2016 02:01:48 PM,04/25/2016 02:01:48 PM,Other,11/04/2011 11:16:27 PM,16TH ST/HOFF ST,SF,94103,B02,7,5236,E,E,3,false,,1,CHIEF,2,2,9,Mission,"(37.7649962714721, -122.420580608279)",113080422-B02 -140180373,E13,14006343,Medical Incident,01/18/2014,01/18/2014,01/18/2014 09:29:14 PM,01/18/2014 09:30:18 PM,01/18/2014 09:31:04 PM,01/18/2014 09:31:10 PM,01/18/2014 09:33:17 PM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/18/2014 09:48:36 PM,BUSH ST/MONTGOMERY ST,SF,94104,B01,13,1235,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",140180373-E13 -160491835,52,16019740,Medical Incident,02/18/2016,02/18/2016,02/18/2016 01:08:27 PM,02/18/2016 01:09:36 PM,02/18/2016 01:09:50 PM,02/18/2016 01:10:06 PM,02/18/2016 01:21:30 PM,02/18/2016 01:49:21 PM,02/18/2016 02:13:58 PM,Code 2 Transport,02/18/2016 02:48:37 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160491835-52 -121920219,T05,12063946,Medical Incident,07/10/2012,07/10/2012,07/10/2012 02:29:24 PM,07/10/2012 02:30:11 PM,07/10/2012 02:30:21 PM,07/10/2012 02:31:18 PM,07/10/2012 02:32:28 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 02:49:37 PM,MCALLISTER ST/FILLMORE ST,SF,94115,B05,5,3534,3,2,2,false,Non Life-threatening,1,TRUCK,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",121920219-T05 -140850124,E10,14028578,Structure Fire,03/26/2014,03/26/2014,03/26/2014 10:32:43 AM,03/26/2014 10:32:43 AM,03/26/2014 10:33:04 AM,03/26/2014 10:33:15 AM,03/26/2014 10:37:45 AM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Fire,03/26/2014 10:45:10 AM,0 Block of VEGA ST,,94115,B05,10,436,3,3,3,true,Alarm,1,ENGINE,1,5,2,Lone Mountain/USF,"(37.7801242878056, -122.445893581212)",140850124-E10 -121220147,54,12040463,Medical Incident,05/01/2012,05/01/2012,05/01/2012 12:17:56 PM,05/01/2012 12:20:56 PM,05/01/2012 12:21:40 PM,05/01/2012 12:22:19 PM,05/01/2012 12:33:02 PM,04/25/2016 01:58:54 PM,05/01/2012 01:17:11 PM,Code 2 Transport,05/01/2012 01:34:41 PM,100 Block of CLAY ST,SF,94111,B01,13,1133,1,1,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7953352957642, -122.397362199177)",121220147-54 -121520190,E42,12050343,Medical Incident,05/31/2012,05/31/2012,05/31/2012 01:58:40 PM,05/31/2012 02:01:20 PM,05/31/2012 02:01:32 PM,05/31/2012 02:02:45 PM,05/31/2012 02:05:15 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 02:15:53 PM,100 Block of HARVARD ST,SF,94134,B09,42,6144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,9,Excelsior,"(37.7277240997544, -122.421047234904)",121520190-E42 -112080298,72,11068786,Structure Fire,07/27/2011,07/27/2011,07/27/2011 07:16:25 PM,07/27/2011 07:18:09 PM,07/27/2011 07:18:29 PM,07/27/2011 07:19:22 PM,07/27/2011 07:23:15 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 07:23:39 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,6,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",112080298-72 -113290149,E38,11109139,Medical Incident,11/25/2011,11/25/2011,11/25/2011 02:10:22 PM,11/25/2011 02:11:25 PM,11/25/2011 02:12:25 PM,11/25/2011 02:13:03 PM,11/25/2011 02:14:27 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 02:30:37 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",113290149-E38 -132380005,84,13080149,Medical Incident,08/26/2013,08/25/2013,08/26/2013 12:20:10 AM,08/26/2013 12:20:50 AM,08/26/2013 12:21:49 AM,08/26/2013 12:22:05 AM,08/26/2013 12:29:27 AM,08/26/2013 12:47:22 AM,08/26/2013 01:04:09 AM,Code 2 Transport,08/26/2013 01:38:12 AM,100 Block of BERTITA ST,SF,94112,B09,15,8331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7187468516262, -122.44040641879)",132380005-84 -131470184,MA1,13049888,Structure Fire,05/27/2013,05/27/2013,05/27/2013 02:56:55 PM,05/27/2013 02:57:16 PM,05/27/2013 03:21:16 PM,05/27/2013 03:21:48 PM,05/27/2013 03:37:13 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,Other,05/27/2013 04:43:33 PM,200 Block of JOOST AVE,SF,94131,B09,26,8214,3,3,3,false,Fire,1,SUPPORT,13,9,7,West of Twin Peaks,"(37.7323075322144, -122.440886977076)",131470184-MA1 -160391182,KM04,16015558,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:18:11 AM,02/08/2016 10:19:00 AM,02/08/2016 10:19:29 AM,02/08/2016 10:20:07 AM,02/08/2016 10:50:45 AM,02/08/2016 10:50:47 AM,02/08/2016 11:37:47 AM,Code 2 Transport,02/08/2016 11:57:42 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160391182-KM04 -160150483,52,16005855,Medical Incident,01/15/2016,01/14/2016,01/15/2016 06:10:24 AM,01/15/2016 06:11:51 AM,01/15/2016 06:13:02 AM,01/15/2016 06:13:19 AM,01/15/2016 06:22:51 AM,01/15/2016 06:44:00 AM,01/15/2016 06:58:48 AM,Code 2 Transport,01/15/2016 07:35:35 AM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160150483-52 -120880046,E07,12029077,Medical Incident,03/28/2012,03/27/2012,03/28/2012 04:46:08 AM,03/28/2012 04:47:07 AM,03/28/2012 04:49:35 AM,03/28/2012 04:51:57 AM,03/28/2012 04:55:08 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 05:04:06 AM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",120880046-E07 -133010216,E38,13102311,Medical Incident,10/28/2013,10/28/2013,10/28/2013 12:52:43 PM,10/28/2013 12:53:53 PM,10/28/2013 12:55:33 PM,10/28/2013 12:57:12 PM,10/28/2013 01:08:09 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/28/2013 01:17:25 PM,FILLMORE ST/JACKSON ST,SF,94115,B04,38,3545,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7924716369741, -122.434557722228)",133010216-E38 -140560319,72,14019003,Medical Incident,02/25/2014,02/25/2014,02/25/2014 07:27:58 PM,02/25/2014 07:29:19 PM,02/25/2014 07:29:48 PM,02/25/2014 07:30:13 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,No Merit,02/25/2014 07:33:58 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,E,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",140560319-72 -160452976,67,16018259,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 07:48:06 PM,02/14/2016 07:49:32 PM,02/14/2016 07:50:18 PM,02/14/2016 07:50:49 PM,02/14/2016 07:59:23 PM,02/14/2016 08:03:46 PM,02/14/2016 08:14:10 PM,Code 3 Transport,02/14/2016 08:41:00 PM,200 Block of ALEMANY BLVD,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Bernal Heights,"(37.7351501389095, -122.410360631063)",160452976-67 -160783843,65,16031200,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:53:43 PM,03/18/2016 09:56:24 PM,03/18/2016 09:56:35 PM,03/18/2016 09:56:43 PM,03/18/2016 10:11:02 PM,03/18/2016 10:24:58 PM,03/18/2016 10:33:46 PM,Code 2 Transport,03/18/2016 11:06:09 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7838599994859, -122.422630661972)",160783843-65 -123080355,E01,12102550,Structure Fire,11/03/2012,11/03/2012,11/03/2012 10:36:25 PM,11/03/2012 10:36:25 PM,11/03/2012 10:36:37 PM,11/03/2012 10:37:57 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,Other,11/03/2012 10:39:40 PM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,Alarm,1,ENGINE,2,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",123080355-E01 -160842711,59,16033461,Medical Incident,03/24/2016,03/24/2016,03/24/2016 04:01:01 PM,03/24/2016 04:02:48 PM,03/24/2016 04:03:33 PM,03/24/2016 04:03:57 PM,03/24/2016 04:11:00 PM,03/24/2016 04:24:30 PM,03/24/2016 04:28:40 PM,Code 2 Transport,03/24/2016 04:57:56 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160842711-59 -122990230,T01,12099140,Odor (Strange / Unknown),10/25/2012,10/25/2012,10/25/2012 03:29:06 PM,10/25/2012 03:31:06 PM,10/25/2012 03:31:37 PM,10/25/2012 03:33:56 PM,10/25/2012 03:34:00 PM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,Other,10/25/2012 03:37:04 PM,100 Block of MAIDEN LN,SF,94108,B01,1,1316,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.788077566398, -122.405896351986)",122990230-T01 -122710319,94,12089557,Medical Incident,09/27/2012,09/27/2012,09/27/2012 09:47:14 PM,09/27/2012 09:48:23 PM,09/27/2012 09:49:01 PM,09/27/2012 09:49:31 PM,09/27/2012 09:52:52 PM,09/27/2012 10:07:47 PM,09/27/2012 10:17:22 PM,Code 2 Transport,09/27/2012 10:42:26 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",122710319-94 -120380215,95,12012709,Medical Incident,02/07/2012,02/07/2012,02/07/2012 02:25:12 PM,02/07/2012 02:27:46 PM,02/07/2012 02:27:59 PM,02/07/2012 02:28:06 PM,02/07/2012 02:35:57 PM,02/07/2012 02:57:04 PM,02/07/2012 03:15:48 PM,Code 2 Transport,02/07/2012 03:51:38 PM,2100 Block of BAY SHORE BLVD,SF,94134,B10,44,6271,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7124904928046, -122.401088283306)",120380215-95 -110380393,70,11012753,Medical Incident,02/07/2011,02/07/2011,02/07/2011 08:59:36 PM,02/07/2011 09:03:14 PM,02/07/2011 09:04:43 PM,02/07/2011 09:05:05 PM,02/07/2011 09:12:40 PM,02/07/2011 09:25:14 PM,02/07/2011 09:32:05 PM,Code 2 Transport,02/07/2011 10:10:55 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,1,1,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",110380393-70 -140930083,66,14031193,Medical Incident,04/03/2014,04/03/2014,04/03/2014 08:27:15 AM,04/03/2014 08:27:55 AM,04/03/2014 08:29:26 AM,04/03/2014 08:29:31 AM,04/03/2014 08:39:34 AM,04/03/2014 08:54:10 AM,04/03/2014 09:06:14 AM,Code 2 Transport,04/03/2014 09:51:56 AM,100 Block of SCOTIA AVE,SAN FRANCISCO,94124,B10,42,6447,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7319729671946, -122.39977690025)",140930083-66 -123200231,HZ1,12106420,Odor (Strange / Unknown),11/15/2012,11/15/2012,11/15/2012 03:24:03 PM,11/15/2012 03:25:21 PM,11/15/2012 03:26:16 PM,11/15/2012 03:50:00 PM,11/15/2012 03:56:40 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 04:50:08 PM,0 Block of MOSS ST,SF,94103,B03,1,2313,3,3,3,false,Alarm,1,SUPPORT,8,3,6,South of Market,"(37.7777588128811, -122.40811239746)",123200231-HZ1 -132810196,T11,13095615,Structure Fire,10/08/2013,10/08/2013,10/08/2013 01:12:35 PM,10/08/2013 01:13:29 PM,10/08/2013 01:13:57 PM,10/08/2013 01:16:34 PM,10/08/2013 01:22:37 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/08/2013 02:06:37 PM,200 Block of DUBLIN ST,SF,94112,B09,43,6165,3,3,3,false,Fire,1,TRUCK,6,9,11,Excelsior,"(37.7164730517118, -122.42788997524)",132810196-T11 -133180016,T03,13107941,Alarms,11/14/2013,11/13/2013,11/14/2013 12:43:30 AM,11/14/2013 12:44:38 AM,11/14/2013 12:46:32 AM,11/14/2013 12:47:05 AM,11/14/2013 12:47:15 AM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,Other,11/14/2013 12:49:58 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,TRUCK,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",133180016-T03 -130890096,AP,13029685,Other,03/30/2013,03/30/2013,03/30/2013 08:26:04 AM,03/30/2013 08:26:04 AM,03/30/2013 08:26:04 AM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Fire,03/30/2013 08:27:15 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",130890096-AP -160543071,AM28,16021714,Medical Incident,02/23/2016,02/23/2016,02/23/2016 05:54:24 PM,02/23/2016 05:56:54 PM,02/23/2016 05:57:18 PM,02/23/2016 05:57:51 PM,02/23/2016 06:09:25 PM,02/23/2016 06:27:39 PM,02/23/2016 06:36:07 PM,Code 2 Transport,02/23/2016 07:08:36 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160543071-AM28 -160903378,AM10,16035858,Medical Incident,03/30/2016,03/30/2016,03/30/2016 07:10:34 PM,03/30/2016 07:12:46 PM,03/30/2016 07:15:40 PM,03/30/2016 07:16:29 PM,03/30/2016 07:20:28 PM,03/30/2016 07:39:39 PM,03/30/2016 07:53:16 PM,Code 2 Transport,03/30/2016 08:23:58 PM,1900 Block of 32ND AVE,San Francisco,94116,B08,18,7533,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7508300233373, -122.490135504861)",160903378-AM10 -113360408,E38,11111417,Medical Incident,12/02/2011,12/02/2011,12/02/2011 07:49:34 PM,12/02/2011 07:51:00 PM,12/02/2011 07:51:17 PM,12/02/2011 07:52:37 PM,12/02/2011 07:53:56 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 08:17:11 PM,2100 Block of BUSH ST,SF,94115,B04,38,3512,3,3,3,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7870349820474, -122.432911990737)",113360408-E38 -140080107,E38,14002756,Medical Incident,01/08/2014,01/08/2014,01/08/2014 08:51:52 AM,01/08/2014 08:53:31 AM,01/08/2014 08:53:37 AM,01/08/2014 08:55:21 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/08/2014 08:58:17 AM,1600 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,4,5,Japantown,"(37.78676442656, -122.427490271072)",140080107-E38 -140460198,E43,14015674,Medical Incident,02/15/2014,02/15/2014,02/15/2014 01:30:58 PM,02/15/2014 01:33:07 PM,02/15/2014 01:47:08 PM,02/15/2014 01:50:10 PM,02/15/2014 01:52:26 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 01:55:25 PM,500 Block of EDINBURGH ST,SF,94112,B09,43,6134,,1,2,true,Non Life-threatening,1,ENGINE,2,9,11,Excelsior,"(37.7204306215676, -122.432536084431)",140460198-E43 -121920275,E01,12063998,Medical Incident,07/10/2012,07/10/2012,07/10/2012 05:23:37 PM,07/10/2012 05:24:15 PM,07/10/2012 05:24:31 PM,07/10/2012 05:25:43 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 05:27:50 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",121920275-E01 -160162423,74,16006489,Medical Incident,01/16/2016,01/16/2016,01/16/2016 04:27:30 PM,01/16/2016 04:27:30 PM,01/16/2016 04:28:04 PM,01/16/2016 04:28:12 PM,01/16/2016 04:39:33 PM,01/16/2016 04:55:30 PM,01/16/2016 05:01:54 PM,Code 2 Transport,01/16/2016 05:33:30 PM,HAIGHT ST/CLAYTON ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",160162423-74 -112920177,E14,11096884,Medical Incident,10/19/2011,10/19/2011,10/19/2011 12:46:55 PM,10/19/2011 12:47:44 PM,10/19/2011 12:47:50 PM,10/19/2011 12:48:52 PM,10/19/2011 12:54:36 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/19/2011 12:55:39 PM,GEARY BL/10TH AV,SF,94118,B07,31,7141,3,2,2,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.780822030508, -122.468563870264)",112920177-E14 -112970139,RC1,11098473,Medical Incident,10/24/2011,10/24/2011,10/24/2011 10:22:58 AM,10/24/2011 10:25:05 AM,10/24/2011 10:25:53 AM,04/25/2016 02:02:00 PM,10/24/2011 10:29:06 AM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 10:55:54 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,true,,1,RESCUE CAPTAIN,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",112970139-RC1 -122780287,E29,12091996,Medical Incident,10/04/2012,10/04/2012,10/04/2012 05:44:16 PM,10/04/2012 05:45:10 PM,10/04/2012 05:45:36 PM,10/04/2012 05:47:04 PM,10/04/2012 05:47:57 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/04/2012 05:54:23 PM,0 Block of CONNECTICUT ST,SF,94107,B03,29,2425,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,10,Mission Bay,"(37.7657165510162, -122.397869370472)",122780287-E29 -121710005,E43,12056605,Medical Incident,06/19/2012,06/18/2012,06/19/2012 12:07:24 AM,06/19/2012 12:07:24 AM,06/19/2012 12:07:44 AM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/19/2012 12:11:09 AM,4700 Block of MISSION ST,SF,94112,B09,43,6121,2,3,3,false,Potentially Life-Threatening,1,ENGINE,6,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",121710005-E43 -160612763,KM04,16024425,Medical Incident,03/01/2016,03/01/2016,03/01/2016 06:09:55 PM,03/01/2016 06:10:30 PM,03/01/2016 06:10:50 PM,03/01/2016 06:13:07 PM,03/01/2016 06:19:00 PM,03/01/2016 06:37:54 PM,03/01/2016 07:00:27 PM,Code 2 Transport,03/01/2016 07:34:58 PM,6TH ST/JESSIE ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",160612763-KM04 -140060068,54,14002035,Medical Incident,01/06/2014,01/05/2014,01/06/2014 06:55:20 AM,01/06/2014 06:56:54 AM,01/06/2014 07:01:01 AM,01/06/2014 07:01:14 AM,01/06/2014 07:22:07 AM,01/06/2014 07:35:28 AM,01/06/2014 07:53:49 AM,Code 2 Transport,01/06/2014 08:25:41 AM,500 Block of BAKER ST,SF,94117,B05,21,4253,2,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7759611503232, -122.441462517439)",140060068-54 -160823765,93,16032750,Medical Incident,03/22/2016,03/22/2016,03/22/2016 09:22:30 PM,03/22/2016 09:25:16 PM,03/22/2016 09:25:25 PM,03/22/2016 09:25:35 PM,03/22/2016 09:40:17 PM,03/22/2016 10:02:51 PM,03/22/2016 10:40:34 PM,Code 2 Transport,03/22/2016 10:53:05 PM,700 Block of BAKER ST,San Francisco,94115,B05,21,4254,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7778277077869, -122.441840240704)",160823765-93 -133630202,81,13123323,Medical Incident,12/29/2013,12/29/2013,12/29/2013 03:01:45 PM,12/29/2013 03:03:09 PM,12/29/2013 03:06:11 PM,12/29/2013 03:06:31 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,No Merit,12/29/2013 03:14:54 PM,500 Block of WEBSTER ST,SF,94102,B02,5,3522,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7753529596691, -122.429344544489)",133630202-81 -102820294,57,10089773,Medical Incident,10/09/2010,10/09/2010,10/09/2010 04:16:48 PM,10/09/2010 04:17:20 PM,10/09/2010 04:17:43 PM,10/09/2010 04:18:49 PM,10/09/2010 04:22:20 PM,10/09/2010 04:46:50 PM,10/09/2010 05:01:37 PM,Code 2 Transport,10/09/2010 05:34:34 PM,4TH ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",102820294-57 -120540303,E44,12017921,Structure Fire,02/23/2012,02/23/2012,02/23/2012 06:03:10 PM,02/23/2012 06:03:10 PM,02/23/2012 06:03:48 PM,02/23/2012 06:04:58 PM,02/23/2012 06:06:31 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 06:07:01 PM,SAN BRUNO AV/WAYLAND ST,SF,94134,B10,42,6333,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.7264334548196, -122.403102308557)",120540303-E44 -110110292,E43,11003770,Medical Incident,01/11/2011,01/11/2011,01/11/2011 07:56:29 PM,01/11/2011 07:57:00 PM,01/11/2011 07:58:48 PM,04/25/2016 02:06:38 PM,01/11/2011 08:00:05 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/11/2011 08:19:44 PM,300 Block of NAPLES ST,SF,94112,B09,43,6141,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7232047251311, -122.429490459371)",110110292-E43 -103170302,78,10101707,Medical Incident,11/13/2010,11/13/2010,11/13/2010 07:20:39 PM,11/13/2010 07:21:29 PM,11/13/2010 07:22:06 PM,11/13/2010 07:22:23 PM,11/13/2010 07:38:13 PM,11/13/2010 07:45:47 PM,11/13/2010 07:59:03 PM,Code 2 Transport,11/13/2010 08:28:39 PM,700 Block of 4TH ST,SF,94107,B03,8,2224,3,2,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",103170302-78 -140070282,E01,14002572,Medical Incident,01/07/2014,01/07/2014,01/07/2014 06:04:20 PM,01/07/2014 06:06:30 PM,01/07/2014 06:07:22 PM,01/07/2014 06:08:29 PM,01/07/2014 06:10:10 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 06:34:39 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",140070282-E01 -120750179,E07,12024902,Medical Incident,03/15/2012,03/15/2012,03/15/2012 12:34:27 PM,03/15/2012 12:38:17 PM,03/15/2012 12:38:45 PM,03/15/2012 12:40:12 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 12:48:55 PM,2800 Block of 23RD ST,SF,94110,B06,7,5476,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7544804202345, -122.408803266483)",120750179-E07 -160840607,52,16033268,Medical Incident,03/24/2016,03/23/2016,03/24/2016 07:28:01 AM,03/24/2016 07:28:01 AM,03/24/2016 07:28:14 AM,03/24/2016 07:28:22 AM,03/24/2016 07:31:41 AM,03/24/2016 07:52:02 AM,03/24/2016 08:23:28 AM,Code 2 Transport,03/24/2016 08:33:08 AM,200 Block of OAK ST,San Francisco,94102,B02,36,3266,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748685141021, -122.4233563121)",160840607-52 -111250085,E03,11041285,Outside Fire,05/05/2011,05/05/2011,05/05/2011 08:40:12 AM,05/05/2011 08:41:20 AM,05/05/2011 08:41:43 AM,04/25/2016 02:04:46 PM,05/05/2011 08:48:10 AM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Unable to Locate,05/05/2011 08:50:10 AM,OFARRELL ST/POWELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",111250085-E03 -120130071,KM15,12004349,Medical Incident,01/13/2012,01/12/2012,01/13/2012 07:44:20 AM,01/13/2012 07:45:28 AM,01/13/2012 07:45:40 AM,01/13/2012 07:46:30 AM,01/13/2012 07:49:51 AM,01/13/2012 08:05:43 AM,01/13/2012 08:19:51 AM,Code 2 Transport,01/13/2012 08:51:45 AM,1400 Block of STEVENSON ST,SF,94103,B02,36,5215,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.768768454666, -122.421348341172)",120130071-KM15 -140970250,65,14032716,Medical Incident,04/07/2014,04/07/2014,04/07/2014 02:14:02 PM,04/07/2014 02:15:05 PM,04/07/2014 02:39:30 PM,04/07/2014 02:39:30 PM,04/07/2014 02:39:30 PM,04/07/2014 02:43:28 PM,04/07/2014 03:07:42 PM,Code 2 Transport,04/07/2014 03:50:15 PM,1100 Block of MARKET ST,,94102,B02,1,2309,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",140970250-65 -140010077,E41,14000061,Medical Incident,01/01/2014,12/31/2013,01/01/2014 12:56:50 AM,01/01/2014 12:58:48 AM,01/01/2014 12:59:04 AM,01/01/2014 12:59:26 AM,01/01/2014 01:00:31 AM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 01:10:31 AM,1700 Block of JACKSON ST,SF,94109,B04,41,3153,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7937762800279, -122.423860535824)",140010077-E41 -122300337,B04,12076355,Gas Leak (Natural and LP Gases),08/17/2012,08/17/2012,08/17/2012 07:32:13 PM,08/17/2012 07:34:12 PM,08/17/2012 07:34:20 PM,08/17/2012 07:35:17 PM,08/17/2012 07:38:12 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 07:43:29 PM,800 Block of HYDE ST,SF,94109,B04,3,1557,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.7886352751239, -122.416990342804)",122300337-B04 -130100064,E03,13003333,Medical Incident,01/10/2013,01/09/2013,01/10/2013 07:24:42 AM,01/10/2013 07:26:32 AM,01/10/2013 07:26:52 AM,01/10/2013 07:27:41 AM,01/10/2013 07:30:33 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/10/2013 07:52:19 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",130100064-E03 -113270023,E17,11108438,Medical Incident,11/23/2011,11/22/2011,11/23/2011 02:32:52 AM,11/23/2011 02:34:27 AM,11/23/2011 02:34:57 AM,11/23/2011 02:37:08 AM,11/23/2011 02:38:44 AM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 02:47:22 AM,100 Block of KISKA RD,SF,94124,B10,17,6625,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",113270023-E17 -122270195,AM06,12075267,Traffic Collision,08/14/2012,08/14/2012,08/14/2012 03:18:33 PM,08/14/2012 03:18:33 PM,08/14/2012 03:18:43 PM,08/14/2012 03:19:18 PM,08/14/2012 03:26:01 PM,08/14/2012 03:38:17 PM,08/14/2012 03:47:51 PM,Code 2 Transport,08/14/2012 04:35:14 PM,SAN JOSE AV/30TH ST,SF,94110,B06,32,5575,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7422945337206, -122.42328556238)",122270195-AM06 -113020362,RC1,11100350,Medical Incident,10/29/2011,10/29/2011,10/29/2011 10:02:22 PM,10/29/2011 10:03:56 PM,10/29/2011 10:04:11 PM,04/25/2016 02:01:54 PM,10/29/2011 10:08:51 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/29/2011 10:13:56 PM,0 Block of CLAY ST,SF,94111,B01,13,1133,3,3,3,true,,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.795488462612, -122.396159020859)",113020362-RC1 -160020438,KM07,16000616,Medical Incident,01/02/2016,01/01/2016,01/02/2016 04:27:39 AM,01/02/2016 04:30:00 AM,01/02/2016 04:30:50 AM,01/02/2016 04:31:42 AM,01/02/2016 04:37:11 AM,01/02/2016 04:50:50 AM,01/02/2016 05:06:18 AM,Code 2 Transport,01/02/2016 05:34:58 AM,1200 Block of HAIGHT ST,San Francisco,94117,B05,21,4353,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",160020438-KM07 -132550058,RC1,13086086,Citizen Assist / Service Call,09/12/2013,09/11/2013,09/12/2013 07:38:11 AM,09/12/2013 07:39:30 AM,09/12/2013 07:42:07 AM,09/12/2013 07:42:55 AM,09/12/2013 07:59:03 AM,04/25/2016 01:50:50 PM,09/12/2013 08:30:28 AM,Other,09/12/2013 09:02:53 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Alarm,1,RESCUE CAPTAIN,3,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132550058-RC1 -103180330,T13,10102047,Structure Fire,11/14/2010,11/14/2010,11/14/2010 07:12:22 PM,11/14/2010 07:12:22 PM,11/14/2010 07:12:30 PM,11/14/2010 07:14:00 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/14/2010 07:15:16 PM,KEARNY ST/SACRAMENTO ST,SF,94104,B01,13,1244,3,3,3,true,,1,TRUCK,2,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",103180330-T13 -160413827,63,16016655,Medical Incident,02/10/2016,02/10/2016,02/10/2016 10:01:14 PM,02/10/2016 10:01:33 PM,02/10/2016 10:02:31 PM,02/10/2016 10:02:55 PM,02/10/2016 10:22:06 PM,02/10/2016 10:22:11 PM,02/10/2016 10:52:29 PM,Code 2 Transport,02/10/2016 11:13:31 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Potrero Hill,"(37.7572895904578, -122.406870402082)",160413827-63 -110240168,64,11007855,Medical Incident,01/24/2011,01/24/2011,01/24/2011 11:41:59 AM,01/24/2011 11:45:07 AM,01/24/2011 11:45:44 AM,01/24/2011 11:46:11 AM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/24/2011 11:50:45 AM,100 Block of VICTORIA ST,SF,94132,B09,33,8416,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7136151594856, -122.465362817213)",110240168-64 -110930057,RC1,11030769,Medical Incident,04/03/2011,04/02/2011,04/03/2011 03:33:27 AM,04/03/2011 03:34:25 AM,04/03/2011 03:34:35 AM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 03:57:42 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",110930057-RC1 -160291986,AM08,16011469,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:10:25 PM,01/29/2016 02:11:43 PM,01/29/2016 02:14:13 PM,01/29/2016 02:14:52 PM,01/29/2016 02:19:54 PM,01/29/2016 02:38:17 PM,01/29/2016 02:49:52 PM,Code 2 Transport,01/29/2016 03:13:47 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160291986-AM08 -110950173,E26,11031532,Medical Incident,04/05/2011,04/05/2011,04/05/2011 01:21:51 PM,04/05/2011 01:22:29 PM,04/05/2011 01:24:41 PM,04/05/2011 01:26:25 PM,04/05/2011 01:30:45 PM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,Other,04/05/2011 01:44:18 PM,600 Block of DOUGLASS ST,SF,94114,B06,24,551,2,2,2,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",110950173-E26 -113370333,RC1,11111789,Medical Incident,12/03/2011,12/03/2011,12/03/2011 09:02:53 PM,12/03/2011 09:04:24 PM,12/03/2011 09:04:47 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/03/2011 09:15:13 PM,CYRIL MAGNIN ST/EDDY ST,SF,94102,B03,1,1453,2,2,2,true,,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",113370333-RC1 -160111474,89,16004376,Medical Incident,01/11/2016,01/11/2016,01/11/2016 12:08:57 PM,01/11/2016 12:08:57 PM,01/11/2016 12:09:45 PM,01/11/2016 12:09:45 PM,01/11/2016 12:20:21 PM,01/11/2016 12:44:44 PM,01/11/2016 12:58:58 PM,Code 2 Transport,01/11/2016 02:09:32 PM,900 Block of ASHBURY ST,San Francisco,94117,B05,12,5164,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7646916029501, -122.445790251499)",160111474-89 -160731137,78,16028951,Medical Incident,03/13/2016,03/13/2016,03/13/2016 12:12:33 PM,03/13/2016 12:13:35 PM,03/13/2016 12:15:28 PM,03/13/2016 12:15:35 PM,03/13/2016 12:34:31 PM,03/13/2016 12:50:19 PM,03/13/2016 01:01:43 PM,Code 2 Transport,03/13/2016 01:49:55 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160731137-78 -123060313,E13,12101762,Structure Fire,11/01/2012,11/01/2012,11/01/2012 07:49:44 PM,11/01/2012 07:49:44 PM,11/01/2012 07:49:52 PM,11/01/2012 07:50:26 PM,11/01/2012 07:52:32 PM,04/25/2016 01:56:00 PM,04/25/2016 01:56:00 PM,Other,11/01/2012 07:53:08 PM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7895620432155, -122.402161869829)",123060313-E13 -110650292,RC2,11021548,Medical Incident,03/06/2011,03/06/2011,03/06/2011 05:34:53 PM,03/06/2011 05:35:39 PM,03/06/2011 05:36:02 PM,03/06/2011 05:36:58 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,Other,03/06/2011 05:43:55 PM,2100 Block of 42ND AVE,SF,94116,B08,23,7645,E,3,3,true,,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7466275952464, -122.500592785414)",110650292-RC2 -103020217,E36,10096515,Structure Fire,10/29/2010,10/29/2010,10/29/2010 03:35:15 PM,10/29/2010 03:35:15 PM,10/29/2010 03:35:30 PM,10/29/2010 03:36:44 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/29/2010 03:37:28 PM,8TH ST/MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",103020217-E36 -160160650,53,16006317,Medical Incident,01/16/2016,01/15/2016,01/16/2016 06:12:27 AM,01/16/2016 06:15:58 AM,01/16/2016 06:16:50 AM,01/16/2016 06:17:02 AM,01/16/2016 06:31:47 AM,01/16/2016 06:44:15 AM,01/16/2016 06:57:01 AM,Code 2 Transport,01/16/2016 07:20:19 AM,300 Block of MISSION ST,San Francisco,94105,B03,35,2126,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",160160650-53 -160592009,61,16023563,Medical Incident,02/28/2016,02/28/2016,02/28/2016 03:12:50 PM,02/28/2016 03:14:13 PM,02/28/2016 03:15:26 PM,02/28/2016 03:15:45 PM,02/28/2016 03:18:51 PM,02/28/2016 03:28:14 PM,02/28/2016 03:34:33 PM,Code 2 Transport,02/28/2016 04:46:19 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160592009-61 -160622363,88,16024743,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:50:45 PM,03/02/2016 02:53:24 PM,03/02/2016 02:53:57 PM,03/02/2016 02:54:05 PM,03/02/2016 02:56:18 PM,03/02/2016 03:20:58 PM,03/02/2016 03:31:48 PM,Code 2 Transport,03/02/2016 03:56:03 PM,2200 Block of MARKET ST,San Francisco,94114,B02,6,5231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",160622363-88 -160022960,60,16000876,Medical Incident,01/02/2016,01/02/2016,01/02/2016 07:31:21 PM,01/02/2016 07:31:21 PM,01/02/2016 07:32:15 PM,01/02/2016 07:32:41 PM,01/02/2016 07:57:48 PM,01/02/2016 08:09:19 PM,01/02/2016 08:19:48 PM,Code 2 Transport,01/02/2016 09:08:17 PM,BUSH ST/CHATHAM PL,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7904696068223, -122.406330947745)",160022960-60 -110050338,T03,11001768,Alarms,01/05/2011,01/05/2011,01/05/2011 07:23:27 PM,01/05/2011 07:25:08 PM,01/05/2011 07:25:23 PM,01/05/2011 07:27:02 PM,01/05/2011 07:28:12 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/05/2011 07:32:57 PM,1300 Block of BUSH ST,SF,94109,B04,3,1636,3,3,3,false,,1,TRUCK,2,4,3,Nob Hill,"(37.7887501003543, -122.419470398057)",110050338-T03 -123510296,E28,12117495,Structure Fire,12/16/2012,12/16/2012,12/16/2012 06:18:50 PM,12/16/2012 06:18:50 PM,12/16/2012 06:19:40 PM,12/16/2012 06:20:31 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/16/2012 06:23:46 PM,POLK ST/BEACH ST,SF,94109,B01,28,3135,3,3,3,false,Alarm,1,ENGINE,2,1,2,Russian Hill,"(37.8062218934452, -122.423844681839)",123510296-E28 -130770025,E12,13025594,Medical Incident,03/18/2013,03/17/2013,03/18/2013 03:18:46 AM,03/18/2013 03:21:25 AM,03/18/2013 03:21:45 AM,03/18/2013 03:24:21 AM,03/18/2013 03:25:45 AM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 03:38:37 AM,700 Block of COLE ST,SF,94117,B05,12,5144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7671882889192, -122.4503083982)",130770025-E12 -130280127,E33,13009555,Medical Incident,01/28/2013,01/28/2013,01/28/2013 10:11:01 AM,01/28/2013 10:11:34 AM,01/28/2013 10:12:38 AM,01/28/2013 10:14:20 AM,01/28/2013 10:20:35 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 10:43:21 AM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",130280127-E33 -113020369,79,11100357,Medical Incident,10/29/2011,10/29/2011,10/29/2011 10:22:53 PM,10/29/2011 10:24:39 PM,10/29/2011 10:24:51 PM,10/29/2011 10:25:09 PM,10/29/2011 10:30:25 PM,10/29/2011 10:40:55 PM,10/29/2011 10:55:33 PM,Code 2 Transport,10/29/2011 11:16:19 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",113020369-79 -122940295,E02,12097606,Medical Incident,10/20/2012,10/20/2012,10/20/2012 07:24:56 PM,10/20/2012 07:25:27 PM,10/20/2012 07:26:32 PM,10/20/2012 07:28:12 PM,10/20/2012 07:29:02 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/21/2012 12:17:56 AM,1500 Block of POWELL ST,SF,94133,B01,2,1352,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7988290749187, -122.410618562757)",122940295-E02 -133010116,RS2,13102235,Electrical Hazard,10/28/2013,10/28/2013,10/28/2013 09:51:24 AM,10/28/2013 09:52:53 AM,10/28/2013 09:54:49 AM,10/28/2013 09:58:01 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 10:01:45 AM,800 Block of URBANO DR,SF,94127,B09,15,8443,3,3,3,false,Alarm,1,RESCUE SQUAD,6,9,7,West of Twin Peaks,"(37.723517646765, -122.463421633503)",133010116-RS2 -130570292,81,13019264,Medical Incident,02/26/2013,02/26/2013,02/26/2013 08:33:01 PM,02/26/2013 08:33:51 PM,02/26/2013 08:34:12 PM,02/26/2013 08:40:23 PM,02/26/2013 08:44:38 PM,02/26/2013 09:02:41 PM,02/26/2013 09:22:42 PM,Code 2 Transport,02/26/2013 10:08:52 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7741100998058, -122.440947780365)",130570292-81 -131170131,E09,13039312,Traffic Collision,04/27/2013,04/27/2013,04/27/2013 10:50:41 AM,04/27/2013 10:54:13 AM,04/27/2013 10:54:51 AM,04/27/2013 10:55:33 AM,04/27/2013 10:58:48 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/27/2013 11:17:20 AM,1900 Block of JERROLD AVE,SF,94124,B10,9,6416,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7426888178901, -122.395861469236)",131170131-E09 -111120277,E14,11037077,Medical Incident,04/22/2011,04/22/2011,04/22/2011 04:54:38 PM,04/22/2011 04:54:57 PM,04/22/2011 04:55:13 PM,04/22/2011 04:56:29 PM,04/22/2011 04:59:11 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 05:13:03 PM,7500 Block of GEARY BLVD,SF,94121,B07,34,7264,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7795052726253, -122.50028416491)",111120277-E14 -140320206,66,14010858,Medical Incident,02/01/2014,02/01/2014,02/01/2014 02:21:01 PM,02/01/2014 02:21:27 PM,02/01/2014 02:21:46 PM,02/01/2014 02:22:26 PM,02/01/2014 02:27:33 PM,02/01/2014 02:49:07 PM,02/01/2014 03:07:59 PM,Code 2 Transport,02/01/2014 03:37:04 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",140320206-66 -102840255,E32,10090478,Structure Fire,10/11/2010,10/11/2010,10/11/2010 04:37:47 PM,10/11/2010 04:37:48 PM,10/11/2010 04:38:13 PM,10/11/2010 04:39:00 PM,10/11/2010 04:41:11 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Other,10/11/2010 04:51:45 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",102840255-E32 -122620394,T09,12086710,Alarms,09/18/2012,09/18/2012,09/18/2012 11:35:44 PM,09/18/2012 11:37:26 PM,09/18/2012 11:37:33 PM,09/18/2012 11:39:24 PM,09/18/2012 11:42:37 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/18/2012 11:46:47 PM,300 Block of MONTCALM ST,SF,94110,B06,9,5666,3,3,3,false,Alarm,1,TRUCK,1,6,9,Bernal Heights,"(37.7455631181386, -122.409730514967)",122620394-T09 -112540155,KM12,11083799,Medical Incident,09/11/2011,09/11/2011,09/11/2011 12:31:56 PM,09/11/2011 12:32:30 PM,09/11/2011 12:32:39 PM,09/11/2011 12:33:16 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Other,09/11/2011 12:35:25 PM,22ND AV/LAWTON ST,SF,94122,B08,22,7427,3,3,3,false,,1,PRIVATE,4,8,4,Sunset/Parkside,"(37.7578254814546, -122.479945065812)",112540155-KM12 -160061094,KM13,16002335,Medical Incident,01/06/2016,01/06/2016,01/06/2016 09:58:04 AM,01/06/2016 09:59:55 AM,01/06/2016 10:03:54 AM,01/06/2016 10:04:17 AM,01/06/2016 10:09:24 AM,01/06/2016 10:19:34 AM,01/06/2016 10:50:26 AM,Code 2 Transport,01/06/2016 11:23:27 AM,300 Block of SOUTH VAN NESS AVE,San Francisco,94103,B02,7,5225,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7676009992449, -122.417792788399)",160061094-KM13 -121070042,87,12035341,Medical Incident,04/16/2012,04/15/2012,04/16/2012 03:42:24 AM,04/16/2012 03:43:52 AM,04/16/2012 03:45:49 AM,04/16/2012 03:46:25 AM,04/16/2012 03:55:33 AM,04/16/2012 04:11:45 AM,04/16/2012 04:20:43 AM,Code 2 Transport,04/16/2012 05:00:40 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",121070042-87 -160622630,86,16024765,Medical Incident,03/02/2016,03/02/2016,03/02/2016 03:57:29 PM,03/02/2016 03:57:29 PM,03/02/2016 04:00:46 PM,03/02/2016 04:01:00 PM,03/02/2016 04:11:29 PM,03/02/2016 04:38:17 PM,03/02/2016 04:46:18 PM,Code 2 Transport,03/02/2016 05:31:15 PM,MARKET ST/15TH ST,San Francisco,94114,B02,6,5213,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7660137310169, -122.430824395878)",160622630-86 -111200064,E11,11039488,Outside Fire,04/30/2011,04/29/2011,04/30/2011 04:22:53 AM,04/30/2011 04:24:20 AM,04/30/2011 04:24:33 AM,04/30/2011 04:25:49 AM,04/30/2011 04:27:16 AM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/30/2011 04:31:37 AM,26TH ST/VALENCIA ST,SF,94110,B06,11,5612,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7489065309397, -122.420353712148)",111200064-E11 -123620132,T10,12121112,Citizen Assist / Service Call,12/27/2012,12/27/2012,12/27/2012 11:26:54 AM,12/27/2012 11:27:43 AM,12/27/2012 11:27:53 AM,12/27/2012 11:29:32 AM,12/27/2012 11:30:49 AM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Fire,12/27/2012 11:44:58 AM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,false,Alarm,1,TRUCK,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",123620132-T10 -121360364,E26,12045363,Structure Fire,05/15/2012,05/15/2012,05/15/2012 11:53:05 PM,05/15/2012 11:53:06 PM,05/15/2012 11:53:27 PM,05/15/2012 11:55:03 PM,05/15/2012 11:57:16 PM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,Other,05/15/2012 11:57:47 PM,ARLINGTON ST/MIGUEL ST,SF,94110,B06,26,8133,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7366849508836, -122.427155509154)",121360364-E26 -110280053,92,11009125,Medical Incident,01/28/2011,01/27/2011,01/28/2011 07:11:28 AM,01/28/2011 07:12:43 AM,01/28/2011 07:13:03 AM,01/28/2011 07:13:24 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 07:16:43 AM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,E,E,3,true,,1,MEDIC,4,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",110280053-92 -160172772,75,16006955,Medical Incident,01/17/2016,01/17/2016,01/17/2016 06:52:20 PM,01/17/2016 06:52:20 PM,01/17/2016 06:55:56 PM,01/17/2016 06:56:11 PM,01/17/2016 07:01:01 PM,01/17/2016 07:19:27 PM,01/17/2016 07:26:58 PM,Code 2 Transport,01/17/2016 08:02:30 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.7649777859582, -122.466445638121)",160172772-75 -122960038,85,12098026,Traffic Collision,10/22/2012,10/21/2012,10/22/2012 03:39:06 AM,10/22/2012 03:40:49 AM,10/22/2012 03:41:54 AM,10/22/2012 03:42:54 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 03:57:20 AM,900 Block of 19TH ST,SF,94107,B10,25,2612,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7614987364492, -122.392203379395)",122960038-85 -122160281,KM02,12071756,Medical Incident,08/03/2012,08/03/2012,08/03/2012 05:03:02 PM,08/03/2012 05:07:17 PM,08/03/2012 05:09:32 PM,08/03/2012 05:10:03 PM,08/03/2012 05:22:50 PM,08/03/2012 05:42:21 PM,08/03/2012 05:49:42 PM,Code 2 Transport,08/03/2012 06:18:25 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",122160281-KM02 -160211583,84,16008362,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:04:09 PM,01/21/2016 12:06:28 PM,01/21/2016 12:07:07 PM,01/21/2016 12:07:31 PM,01/21/2016 12:24:36 PM,01/21/2016 12:41:38 PM,01/21/2016 01:01:18 PM,Code 2 Transport,01/21/2016 01:49:08 PM,300 Block of HEAD ST,San Francisco,94132,B09,33,8416,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.713614800777, -122.464324485172)",160211583-84 -120420295,RS1,12014127,Medical Incident,02/11/2012,02/11/2012,02/11/2012 05:39:29 PM,02/11/2012 05:39:40 PM,02/11/2012 05:40:41 PM,02/11/2012 05:41:51 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 05:42:56 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",120420295-RS1 -111420137,KM01,11047142,Medical Incident,05/22/2011,05/22/2011,05/22/2011 09:49:15 AM,05/22/2011 09:50:41 AM,05/22/2011 09:52:26 AM,05/22/2011 09:53:03 AM,05/22/2011 09:58:09 AM,05/22/2011 10:10:01 AM,05/22/2011 10:17:51 AM,Code 2 Transport,05/22/2011 10:48:41 AM,3200 Block of 21ST ST,SF,94110,B06,7,5456,2,2,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7570664613489, -122.419300301039)",111420137-KM01 -123240237,58,12107769,Medical Incident,11/19/2012,11/19/2012,11/19/2012 02:16:26 PM,11/19/2012 02:16:43 PM,11/19/2012 02:17:15 PM,11/19/2012 02:17:29 PM,11/19/2012 02:24:57 PM,11/19/2012 02:38:06 PM,11/19/2012 02:43:45 PM,Code 2 Transport,11/19/2012 03:36:20 PM,2700 Block of 16TH ST,SF,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7653263612606, -122.414201573327)",123240237-58 -160640226,57,16025336,Medical Incident,03/04/2016,03/03/2016,03/04/2016 02:08:40 AM,03/04/2016 02:08:40 AM,03/04/2016 02:09:02 AM,03/04/2016 02:09:48 AM,03/04/2016 02:15:34 AM,03/04/2016 02:43:54 AM,03/04/2016 02:58:38 AM,Code 2 Transport,03/04/2016 03:49:28 AM,LYON ST/CALIFORNIA ST,San Francisco,94115,B04,10,4336,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Presidio Heights,"(37.7874381647128, -122.44540219702)",160640226-57 -140230256,E06,14007925,Medical Incident,01/23/2014,01/23/2014,01/23/2014 05:48:46 PM,01/23/2014 05:50:09 PM,01/23/2014 05:51:10 PM,01/23/2014 05:53:31 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 06:02:00 PM,CHURCH ST/MARKET ST,SF,94114,B02,6,5213,,2,2,true,Non Life-threatening,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",140230256-E06 -130480250,94,13016435,Traffic Collision,02/17/2013,02/17/2013,02/17/2013 03:29:35 PM,02/17/2013 03:32:00 PM,02/17/2013 03:32:32 PM,02/17/2013 03:34:54 PM,02/17/2013 03:47:10 PM,02/17/2013 04:01:28 PM,02/17/2013 04:26:57 PM,Code 2 Transport,02/17/2013 04:39:11 PM,LINCOLN BL/ARMISTEAD RD,PR,94129,B99,51,4628,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio,"(37.8047012971434, -122.469994469726)",130480250-94 -160323481,76,16012761,Medical Incident,02/01/2016,02/01/2016,02/01/2016 09:22:12 PM,02/01/2016 09:22:40 PM,02/01/2016 09:23:20 PM,02/01/2016 09:23:28 PM,02/01/2016 09:29:42 PM,02/01/2016 09:46:44 PM,02/01/2016 09:53:22 PM,Code 2 Transport,02/01/2016 10:14:43 PM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160323481-76 -130490233,B09,13016752,Alarms,02/18/2013,02/18/2013,02/18/2013 03:25:19 PM,02/18/2013 03:26:31 PM,02/18/2013 03:26:51 PM,02/18/2013 03:27:02 PM,02/18/2013 03:29:58 PM,04/25/2016 01:54:13 PM,04/25/2016 01:54:13 PM,Fire,02/18/2013 03:43:06 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,false,Alarm,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",130490233-B09 -160342127,62,16013447,Medical Incident,02/03/2016,02/03/2016,02/03/2016 03:04:54 PM,02/03/2016 03:04:54 PM,02/03/2016 03:04:54 PM,02/03/2016 03:04:54 PM,02/03/2016 03:04:54 PM,02/03/2016 03:32:55 PM,02/03/2016 03:41:32 PM,Code 2 Transport,02/03/2016 04:05:04 PM,400 Block of TURK ST,San Francisco,94102,B99,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",160342127-62 -130910107,E21,13030375,Administrative,04/01/2013,04/01/2013,04/01/2013 09:35:04 AM,04/01/2013 09:35:08 AM,04/01/2013 09:35:20 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Fire,04/01/2013 09:35:46 AM,100 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7671998905043, -122.431083812685)",130910107-E21 -112800204,T13,11092686,Medical Incident,10/07/2011,10/07/2011,10/07/2011 01:05:39 PM,10/07/2011 01:06:43 PM,10/07/2011 01:07:29 PM,10/07/2011 01:08:35 PM,10/07/2011 01:11:40 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 01:30:07 PM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,E,3,false,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",112800204-T13 -140220201,E29,14007528,Medical Incident,01/22/2014,01/22/2014,01/22/2014 01:43:05 PM,01/22/2014 01:45:38 PM,01/22/2014 01:47:08 PM,01/22/2014 01:48:33 PM,01/22/2014 01:50:07 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/22/2014 01:58:11 PM,300 Block of RHODE ISLAND ST,SF,94103,B03,29,2413,3,3,3,false,Non Life-threatening,1,ENGINE,1,2,10,Mission Bay,"(37.7654237351553, -122.402693174465)",140220201-E29 -113420238,77,11113436,Medical Incident,12/08/2011,12/08/2011,12/08/2011 03:03:09 PM,12/08/2011 03:04:51 PM,12/08/2011 03:05:44 PM,12/08/2011 03:08:23 PM,12/08/2011 03:21:14 PM,12/08/2011 03:43:59 PM,12/08/2011 04:09:31 PM,Code 2 Transport,12/08/2011 04:36:50 PM,3500 Block of MORAGA ST,SF,94122,B08,23,7651,2,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7550826256438, -122.500715154585)",113420238-77 -160662932,68,16026514,Medical Incident,03/06/2016,03/06/2016,03/06/2016 08:20:47 PM,03/06/2016 08:23:39 PM,03/06/2016 08:24:20 PM,03/06/2016 08:24:33 PM,03/06/2016 08:27:30 PM,03/06/2016 08:43:19 PM,03/06/2016 08:58:50 PM,Code 2 Transport,03/06/2016 09:39:44 PM,0 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843467613273, -122.408890252742)",160662932-68 -160031508,KM11,16001179,Medical Incident,01/03/2016,01/03/2016,01/03/2016 12:59:15 PM,01/03/2016 12:59:46 PM,01/03/2016 01:00:07 PM,01/03/2016 01:00:38 PM,01/03/2016 01:05:13 PM,01/03/2016 01:21:53 PM,01/03/2016 01:41:17 PM,Code 2 Transport,01/03/2016 02:15:42 PM,700 Block of BRANNAN ST,San Francisco,94103,B03,8,2276,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7732232142847, -122.402889298062)",160031508-KM11 -123020313,E37,12100277,Other,10/28/2012,10/28/2012,10/28/2012 06:51:55 PM,10/28/2012 06:52:39 PM,10/28/2012 06:53:00 PM,10/28/2012 06:54:39 PM,10/28/2012 06:55:51 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 07:03:58 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",123020313-E37 -140090398,88,14003312,Medical Incident,01/09/2014,01/09/2014,01/09/2014 09:36:03 PM,01/09/2014 09:36:46 PM,01/09/2014 09:38:27 PM,01/09/2014 09:39:06 PM,01/09/2014 09:50:25 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Patient Declined Transport,01/09/2014 10:28:12 PM,1100 Block of OAK ST,SF,94117,B05,21,4245,2,2,2,false,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7729735021369, -122.438244838709)",140090398-88 -131700335,E35,13057855,Traffic Collision,06/19/2013,06/19/2013,06/19/2013 08:17:20 PM,06/19/2013 08:19:39 PM,06/19/2013 08:21:12 PM,06/19/2013 08:22:42 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,CHP,06/19/2013 08:25:43 PM,BRYANT ST/STERLING ST,SF,94107,B03,35,2135,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7836926412873, -122.392840050712)",131700335-E35 -103020196,AP,10096499,Other,10/29/2010,10/29/2010,10/29/2010 02:48:15 PM,10/29/2010 02:48:15 PM,10/29/2010 02:48:15 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Fire,10/29/2010 02:48:48 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",103020196-AP -112990173,54,11099174,Medical Incident,10/26/2011,10/26/2011,10/26/2011 12:11:33 PM,10/26/2011 12:12:06 PM,10/26/2011 12:12:16 PM,10/26/2011 12:13:04 PM,10/26/2011 12:18:03 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 12:20:43 PM,1300 Block of FITZGERALD AVE,SF,94124,B10,17,6614,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7226082792348, -122.394063657718)",112990173-54 -133370349,E03,13114369,Medical Incident,12/03/2013,12/03/2013,12/03/2013 10:02:55 PM,12/03/2013 10:03:34 PM,12/03/2013 10:04:23 PM,12/03/2013 10:04:56 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 10:05:47 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",133370349-E03 -112660302,E51,11087985,Traffic Collision,09/23/2011,09/23/2011,09/23/2011 06:01:21 PM,09/23/2011 06:03:01 PM,09/23/2011 06:04:07 PM,09/23/2011 06:05:42 PM,09/23/2011 06:08:38 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 06:26:36 PM,900 Block of MARINE DR,PR,94129,B99,51,4628,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8089767888005, -122.47460956271)",112660302-E51 -133270195,E33,13111069,Medical Incident,11/23/2013,11/23/2013,11/23/2013 11:43:27 AM,11/23/2013 11:44:12 AM,11/23/2013 11:44:45 AM,11/23/2013 11:44:56 AM,11/23/2013 11:46:53 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 12:04:48 PM,5600 Block of MISSION ST,SF,94112,B09,33,6211,B,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7111379399076, -122.447066438218)",133270195-E33 -110300145,AM16,11009818,Medical Incident,01/30/2011,01/30/2011,01/30/2011 09:55:33 AM,01/30/2011 09:56:19 AM,01/30/2011 09:57:19 AM,01/30/2011 09:58:10 AM,01/30/2011 10:13:54 AM,01/30/2011 10:14:03 AM,01/30/2011 10:26:12 AM,Code 2 Transport,01/30/2011 10:53:13 AM,300 Block of BRODERICK ST,SF,94117,B05,21,4245,3,3,3,false,,1,PRIVATE,2,5,5,Hayes Valley,"(37.7733933056349, -122.43911438549)",110300145-AM16 -160862330,KM09,16034233,Medical Incident,03/26/2016,03/26/2016,03/26/2016 03:46:22 PM,03/26/2016 03:48:15 PM,03/26/2016 03:49:34 PM,03/26/2016 03:51:38 PM,03/26/2016 04:04:41 PM,03/26/2016 04:27:28 PM,03/26/2016 05:12:07 PM,Code 2 Transport,03/26/2016 05:18:13 PM,1400 Block of MCALLISTER ST,San Francisco,94115,B05,5,3642,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",160862330-KM09 -132610430,AM18,13088582,Medical Incident,09/18/2013,09/18/2013,09/18/2013 10:27:33 PM,09/18/2013 10:28:23 PM,09/18/2013 10:28:38 PM,09/18/2013 10:29:19 PM,09/18/2013 10:33:42 PM,09/18/2013 11:22:04 PM,09/18/2013 11:30:37 PM,Against Medical Advice,09/19/2013 12:35:08 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",132610430-AM18 -122040356,E16,12067961,Water Rescue,07/22/2012,07/22/2012,07/22/2012 08:19:52 PM,07/22/2012 08:19:52 PM,07/22/2012 08:20:47 PM,07/22/2012 08:23:40 PM,07/22/2012 08:26:29 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/22/2012 10:04:54 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122040356-E16 -132010193,54,13068171,Medical Incident,07/20/2013,07/20/2013,07/20/2013 01:09:49 PM,07/20/2013 01:11:17 PM,07/20/2013 01:11:39 PM,07/20/2013 01:12:04 PM,07/20/2013 01:31:35 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 01:41:31 PM,1300 Block of EVANS AVE,SF,94124,B10,25,6464,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",132010193-54 -160511773,KM05,16020490,Medical Incident,02/20/2016,02/20/2016,02/20/2016 02:00:32 PM,02/20/2016 02:04:24 PM,02/20/2016 02:10:46 PM,02/20/2016 02:10:48 PM,02/20/2016 02:21:02 PM,02/20/2016 02:41:13 PM,02/20/2016 03:11:04 PM,Code 2 Transport,02/20/2016 03:49:33 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7823404680537, -122.40377191669)",160511773-KM05 -102630234,E07,10083253,Alarms,09/20/2010,09/20/2010,09/20/2010 02:54:55 PM,09/20/2010 02:55:28 PM,09/20/2010 02:55:42 PM,04/25/2016 02:08:30 PM,09/20/2010 03:00:19 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Fire,09/20/2010 03:03:34 PM,2200 Block of BRYANT ST,SF,94110,B06,7,5474,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7580257466594, -122.409534922253)",102630234-E07 -122060072,E05,12068400,Medical Incident,07/24/2012,07/23/2012,07/24/2012 07:44:12 AM,07/24/2012 07:44:53 AM,07/24/2012 07:45:21 AM,07/24/2012 07:46:07 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 07:47:47 AM,600 Block of LARKIN ST,SF,94109,B02,3,1643,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",122060072-E05 -131220447,E36,13041240,Medical Incident,05/02/2013,05/02/2013,05/02/2013 09:19:48 PM,05/02/2013 09:21:01 PM,05/02/2013 09:24:03 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 09:25:56 PM,STEVENSON ST/6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,South of Market,"(37.7817543267261, -122.409693263148)",131220447-E36 -113370233,E51,11111696,Medical Incident,12/03/2011,12/03/2011,12/03/2011 03:54:12 PM,12/03/2011 03:57:20 PM,12/03/2011 04:01:13 PM,12/03/2011 04:06:05 PM,12/03/2011 04:08:22 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Patient Declined Transport,12/03/2011 04:20:14 PM,LYON ST/RICHARDSON AV,SF,94123,B04,16,4325,2,2,2,true,,1,ENGINE,1,7,2,Presidio,"(37.8008319125226, -122.447695066076)",113370233-E51 -130580289,E01,13019534,Medical Incident,02/27/2013,02/27/2013,02/27/2013 03:52:26 PM,02/27/2013 03:54:50 PM,02/27/2013 03:55:06 PM,02/27/2013 03:55:34 PM,02/27/2013 03:59:52 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,02/27/2013 04:06:20 PM,MASON ST/ELLIS ST,SF,94102,B03,1,1366,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",130580289-E01 -110970031,T17,11032027,Structure Fire,04/07/2011,04/06/2011,04/07/2011 03:30:05 AM,04/07/2011 03:31:31 AM,04/07/2011 03:32:33 AM,04/07/2011 03:34:26 AM,04/07/2011 03:38:08 AM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/07/2011 03:43:08 AM,1000 Block of LE CONTE AVE,SF,94124,B10,44,6575,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",110970031-T17 -160341132,74,16013320,Medical Incident,02/03/2016,02/03/2016,02/03/2016 10:23:01 AM,02/03/2016 10:25:05 AM,02/03/2016 10:25:17 AM,02/03/2016 10:26:09 AM,02/03/2016 10:27:33 AM,02/03/2016 10:51:24 AM,02/03/2016 10:55:21 AM,Code 2 Transport,02/03/2016 11:45:27 AM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160341132-74 -121990145,E32,12066091,Structure Fire,07/17/2012,07/17/2012,07/17/2012 10:51:01 AM,07/17/2012 10:51:01 AM,07/17/2012 10:51:12 AM,07/17/2012 10:51:41 AM,07/17/2012 10:54:50 AM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 10:55:08 AM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",121990145-E32 -111510247,B08,11050050,Structure Fire,05/31/2011,05/31/2011,05/31/2011 05:22:37 PM,05/31/2011 05:23:54 PM,05/31/2011 05:24:13 PM,05/31/2011 05:25:55 PM,05/31/2011 05:27:30 PM,04/25/2016 02:04:22 PM,04/25/2016 02:04:22 PM,Other,05/31/2011 05:30:59 PM,2000 Block of 28TH AVE,SF,94116,B08,18,7516,3,3,3,false,,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7491491409489, -122.485861250588)",111510247-B08 -160011641,65,16000291,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:31:55 AM,01/01/2016 10:32:26 AM,01/01/2016 10:33:40 AM,01/01/2016 10:33:49 AM,01/01/2016 10:43:20 AM,01/01/2016 10:58:36 AM,01/01/2016 11:20:38 AM,Code 2 Transport,01/01/2016 11:45:22 AM,25TH ST/3RD ST,San Francisco,94107,B10,25,2611,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7528356119566, -122.38775628178)",160011641-65 -130040159,E10,13001329,Traffic Collision,01/04/2013,01/04/2013,01/04/2013 10:56:36 AM,01/04/2013 10:57:32 AM,01/04/2013 10:57:55 AM,01/04/2013 10:59:13 AM,01/04/2013 11:01:53 AM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 11:05:26 AM,BALBOA ST/ARGUELLO BL,SF,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.777253917962, -122.458580630046)",130040159-E10 -123060350,E17,12101798,Medical Incident,11/01/2012,11/01/2012,11/01/2012 09:08:12 PM,11/01/2012 09:09:01 PM,11/01/2012 09:09:27 PM,11/01/2012 09:10:26 PM,11/01/2012 09:13:26 PM,04/25/2016 01:56:00 PM,04/25/2016 01:56:00 PM,Other,11/01/2012 09:27:09 PM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",123060350-E17 -160270635,79,16010567,Medical Incident,01/27/2016,01/26/2016,01/27/2016 07:49:30 AM,01/27/2016 07:50:43 AM,01/27/2016 07:50:59 AM,01/27/2016 07:51:26 AM,01/27/2016 08:04:16 AM,01/27/2016 08:14:00 AM,01/27/2016 08:39:29 AM,Code 2 Transport,01/27/2016 09:50:34 AM,MASON ST/OFARRELL ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862026638911, -122.409683072135)",160270635-79 -120320282,T19,12010662,Alarms,02/01/2012,02/01/2012,02/01/2012 06:04:16 PM,02/01/2012 06:05:36 PM,02/01/2012 06:05:43 PM,02/01/2012 06:07:14 PM,02/01/2012 06:11:50 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 06:26:21 PM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,TRUCK,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",120320282-T19 -160801637,61,16031798,Medical Incident,03/20/2016,03/20/2016,03/20/2016 12:42:18 PM,03/20/2016 12:44:51 PM,03/20/2016 12:45:56 PM,03/20/2016 12:46:18 PM,03/20/2016 12:56:50 PM,03/20/2016 01:10:22 PM,03/20/2016 01:23:25 PM,Code 2 Transport,03/20/2016 02:02:28 PM,MISSION ST/14TH ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",160801637-61 -133330317,E21,13113078,Medical Incident,11/29/2013,11/29/2013,11/29/2013 11:11:48 PM,11/29/2013 11:12:30 PM,11/29/2013 11:13:02 PM,11/29/2013 11:13:48 PM,11/29/2013 11:14:54 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/29/2013 11:27:51 PM,700 Block of BAKER ST,SF,94115,B05,21,4254,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7778451297525, -122.441703588406)",133330317-E21 -123000243,E05,12099490,Medical Incident,10/26/2012,10/26/2012,10/26/2012 04:21:59 PM,10/26/2012 04:23:15 PM,10/26/2012 04:23:37 PM,10/26/2012 04:24:33 PM,10/26/2012 04:26:35 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/26/2012 04:42:53 PM,2000 Block of OFARRELL ST,SF,94115,B04,5,413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.782664870999, -122.438053867276)",123000243-E05 -121690159,E29,12056094,Administrative,06/17/2012,06/17/2012,06/17/2012 12:05:09 PM,06/17/2012 12:05:15 PM,06/17/2012 12:05:38 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/17/2012 12:06:42 PM,200 Block of VERMONT ST,SF,94103,B02,29,2422,3,3,3,true,,1,ENGINE,1,2,10,Mission Bay,"(37.7666119536778, -122.404617787649)",121690159-E29 -160474037,85,16019164,Medical Incident,02/16/2016,02/16/2016,02/16/2016 11:16:39 PM,02/16/2016 11:17:46 PM,02/16/2016 11:19:33 PM,02/16/2016 11:19:53 PM,02/16/2016 11:27:44 PM,02/16/2016 11:47:29 PM,02/17/2016 12:02:46 AM,Code 2 Transport,02/17/2016 12:35:55 AM,1200 Block of 25TH AVE,San Francisco,94122,B08,22,7452,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7642224558921, -122.483550413228)",160474037-85 -111360127,59,11045236,Medical Incident,05/16/2011,05/16/2011,05/16/2011 10:46:14 AM,05/16/2011 10:46:57 AM,05/16/2011 10:49:01 AM,05/16/2011 10:49:14 AM,05/16/2011 11:00:01 AM,05/16/2011 11:07:41 AM,05/16/2011 11:31:09 AM,Code 2 Transport,05/16/2011 11:59:50 AM,KING ST/4TH ST,SF,94107,B03,8,2236,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",111360127-59 -120080184,AM06,12002770,Medical Incident,01/08/2012,01/08/2012,01/08/2012 12:26:58 PM,01/08/2012 12:28:08 PM,01/08/2012 12:31:22 PM,01/08/2012 12:32:13 PM,01/08/2012 12:41:38 PM,01/08/2012 12:55:05 PM,01/08/2012 01:04:43 PM,Code 2 Transport,01/08/2012 01:41:20 PM,200 Block of ALMA ST,SF,94117,B05,12,5162,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7629834619379, -122.451564578029)",120080184-AM06 -133490249,E05,13118532,Medical Incident,12/15/2013,12/15/2013,12/15/2013 03:12:20 PM,12/15/2013 03:14:26 PM,12/15/2013 03:15:06 PM,12/15/2013 03:16:05 PM,12/15/2013 03:18:18 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 03:28:14 PM,1800 Block of GEARY BLVD,SF,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Western Addition,"(37.7842501079896, -122.432035315509)",133490249-E05 -160893989,70,16035525,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:01:06 PM,03/29/2016 11:02:01 PM,03/29/2016 11:11:38 PM,03/29/2016 11:11:38 PM,03/29/2016 11:11:38 PM,03/29/2016 11:23:04 PM,03/29/2016 11:40:34 PM,Code 2 Transport,03/30/2016 12:02:09 AM,5TH ST/MINNA ST,San Francisco,94103,B03,1,2246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822961395725, -122.405931328409)",160893989-70 -160490393,KM03,16019616,Medical Incident,02/18/2016,02/17/2016,02/18/2016 06:17:13 AM,02/18/2016 06:18:57 AM,02/18/2016 06:19:56 AM,02/18/2016 06:20:33 AM,02/18/2016 06:28:40 AM,02/18/2016 06:41:40 AM,02/18/2016 06:55:35 AM,Code 3 Transport,02/18/2016 07:06:13 AM,400 Block of GOETTINGEN ST,San Francisco,94134,B10,42,6334,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7262410518031, -122.406384038984)",160490393-KM03 -103510105,64,10112529,Medical Incident,12/17/2010,12/17/2010,12/17/2010 08:55:18 AM,12/17/2010 08:57:05 AM,12/17/2010 08:57:43 AM,12/17/2010 08:57:48 AM,12/17/2010 09:05:54 AM,12/17/2010 09:30:30 AM,12/17/2010 09:52:47 AM,Code 2 Transport,12/17/2010 10:02:59 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",103510105-64 -113600145,KM02,11119619,Medical Incident,12/26/2011,12/26/2011,12/26/2011 12:40:21 PM,12/26/2011 12:41:23 PM,12/26/2011 12:42:19 PM,12/26/2011 12:43:12 PM,12/26/2011 12:54:03 PM,12/26/2011 01:14:36 PM,12/26/2011 01:23:24 PM,Code 2 Transport,12/26/2011 01:56:28 PM,25TH ST/CONNECTICUT ST,SF,94107,B10,37,2615,2,2,2,false,,1,PRIVATE,1,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",113600145-KM02 -121130296,E40,12037620,Medical Incident,04/22/2012,04/22/2012,04/22/2012 08:10:14 PM,04/22/2012 08:12:19 PM,04/22/2012 08:12:39 PM,04/22/2012 08:13:21 PM,04/22/2012 08:18:01 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/22/2012 08:41:38 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",121130296-E40 -102460310,B09,10077838,Other,09/03/2010,09/03/2010,09/03/2010 06:18:58 PM,09/03/2010 06:19:46 PM,09/03/2010 06:21:19 PM,09/03/2010 06:23:13 PM,09/03/2010 06:26:58 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/03/2010 06:32:29 PM,100 Block of WESTGATE DR,SF,94127,B09,15,8533,3,3,3,false,,1,CHIEF,1,9,7,West of Twin Peaks,"(37.7291836301101, -122.464899637313)",102460310-B09 -122680347,81,12088677,Medical Incident,09/24/2012,09/24/2012,09/24/2012 09:06:18 PM,09/24/2012 09:09:27 PM,09/24/2012 09:09:42 PM,04/25/2016 01:56:37 PM,09/24/2012 09:12:10 PM,09/24/2012 09:24:41 PM,09/24/2012 09:30:28 PM,Code 2 Transport,09/24/2012 10:06:56 PM,2600 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7546325890357, -122.41873973942)",122680347-81 -133270321,E44,13111187,Medical Incident,11/23/2013,11/23/2013,11/23/2013 05:26:37 PM,11/23/2013 05:28:34 PM,11/23/2013 05:32:07 PM,11/23/2013 05:33:06 PM,11/23/2013 05:36:25 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 05:41:47 PM,CORTLAND AV/BAYSHORE BL,SF,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",133270321-E44 -160573547,56,16022910,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:31:35 PM,02/26/2016 09:34:49 PM,02/26/2016 09:35:00 PM,02/26/2016 09:35:26 PM,02/26/2016 09:43:53 PM,02/26/2016 09:50:34 PM,02/26/2016 10:06:17 PM,Code 2 Transport,02/26/2016 10:41:05 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7957870183223, -122.422579704734)",160573547-56 -160440678,85,16017597,Medical Incident,02/13/2016,02/12/2016,02/13/2016 06:59:27 AM,02/13/2016 07:00:49 AM,02/13/2016 07:01:12 AM,02/13/2016 07:02:08 AM,02/13/2016 07:06:07 AM,02/13/2016 07:21:36 AM,02/13/2016 07:27:53 AM,Code 3 Transport,02/13/2016 08:28:50 AM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7792841462441, -122.402061300134)",160440678-85 -110330032,60,11010695,Medical Incident,02/02/2011,02/01/2011,02/02/2011 02:55:46 AM,02/02/2011 02:56:50 AM,02/02/2011 02:58:35 AM,02/02/2011 03:00:27 AM,02/02/2011 03:06:11 AM,02/02/2011 03:26:12 AM,02/02/2011 03:45:30 AM,Code 2 Transport,02/02/2011 04:02:29 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",110330032-60 -103070100,T15,10098196,Alarms,11/03/2010,11/03/2010,11/03/2010 08:53:58 AM,11/03/2010 08:55:34 AM,11/03/2010 08:56:07 AM,11/03/2010 08:57:32 AM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/03/2010 09:02:56 AM,3600 Block of ALEMANY BLVD,SF,94132,B09,33,8375,3,3,3,false,,1,TRUCK,3,9,7,Oceanview/Merced/Ingleside,"(37.7115651552421, -122.464545672378)",103070100-T15 -110310035,T01,11010053,Structure Fire,01/31/2011,01/30/2011,01/31/2011 03:28:57 AM,01/31/2011 03:30:58 AM,01/31/2011 03:31:40 AM,01/31/2011 03:33:06 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/31/2011 03:35:14 AM,POST ST/SHANNON ST,SF,94109,B01,3,1451,3,3,3,false,,1,TRUCK,11,1,3,Tenderloin,"(37.7877668066184, -122.412531202783)",110310035-T01 -112510091,RC1,11082693,Medical Incident,09/08/2011,09/08/2011,09/08/2011 08:24:56 AM,09/08/2011 08:25:39 AM,09/08/2011 08:26:31 AM,09/08/2011 08:27:47 AM,09/08/2011 08:32:33 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 08:35:34 AM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,3,E,3,true,,1,RESCUE CAPTAIN,2,None,3,North Beach,"(37.8081679785862, -122.416634717802)",112510091-RC1 -120230093,T12,12007722,Structure Fire,01/23/2012,01/23/2012,01/23/2012 08:21:21 AM,01/23/2012 08:21:21 AM,01/23/2012 08:21:29 AM,01/23/2012 08:22:47 AM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 08:25:27 AM,FUNSTON AV/LINCOLN WY,SF,94122,B08,22,7346,3,3,3,false,Alarm,1,TRUCK,2,7,5,Golden Gate Park,"(37.7657392555003, -122.470727257629)",120230093-T12 -132290018,RS1,13077173,Traffic Collision,08/17/2013,08/16/2013,08/17/2013 01:17:00 AM,08/17/2013 01:17:38 AM,08/17/2013 01:18:24 AM,08/17/2013 01:20:32 AM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,Other,08/17/2013 01:21:46 AM,VAN NESS AV/ELLIS ST,SF,94109,B04,3,3162,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,2,5,Western Addition,"(37.7838241173643, -122.421008360007)",132290018-RS1 -120630099,E16,12020678,Medical Incident,03/03/2012,03/02/2012,03/03/2012 07:21:10 AM,03/03/2012 07:22:58 AM,03/03/2012 07:23:22 AM,03/03/2012 07:26:48 AM,03/03/2012 07:28:09 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 07:32:33 AM,BAY ST/BUCHANAN ST,SF,94123,B04,16,3446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8030568840333, -122.433327957472)",120630099-E16 -133520331,92,13119683,Medical Incident,12/18/2013,12/18/2013,12/18/2013 05:56:47 PM,12/18/2013 05:59:44 PM,12/18/2013 06:04:27 PM,12/18/2013 06:09:15 PM,12/18/2013 06:20:32 PM,12/18/2013 06:42:12 PM,12/18/2013 06:55:29 PM,Code 2 Transport,12/18/2013 07:29:33 PM,0 Block of CHURCH ST,SF,94114,B02,6,3525,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",133520331-92 -140590285,E38,14019982,Medical Incident,02/28/2014,02/28/2014,02/28/2014 04:27:28 PM,02/28/2014 04:29:09 PM,02/28/2014 04:30:36 PM,02/28/2014 04:32:02 PM,02/28/2014 04:34:49 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Code 2 Transport,02/28/2014 04:49:28 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",140590285-E38 -102570228,E01,10081229,Medical Incident,09/14/2010,09/14/2010,09/14/2010 02:35:35 PM,09/14/2010 02:36:16 PM,09/14/2010 02:36:46 PM,09/14/2010 02:38:58 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Other,09/14/2010 02:39:32 PM,HOWARD ST/5TH ST,SF,94103,B03,1,2245,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",102570228-E01 -160762100,KM05,16030173,Medical Incident,03/16/2016,03/16/2016,03/16/2016 02:06:38 PM,03/16/2016 02:07:33 PM,03/16/2016 02:07:51 PM,03/16/2016 02:08:34 PM,03/16/2016 02:16:11 PM,03/16/2016 02:25:49 PM,03/16/2016 02:34:14 PM,Code 2 Transport,03/16/2016 03:28:31 PM,ASHBURY ST/HAIGHT ST,San Francisco,94117,B05,21,4513,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7700076057236, -122.446933818288)",160762100-KM05 -102650308,AP,10083993,Other,09/22/2010,09/22/2010,09/22/2010 08:43:32 PM,09/22/2010 08:43:32 PM,09/22/2010 08:43:32 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Fire,09/22/2010 08:44:44 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102650308-AP -160633452,64,16025238,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:15:27 PM,03/03/2016 08:15:27 PM,03/03/2016 08:28:20 PM,03/03/2016 08:28:26 PM,03/03/2016 08:50:30 PM,03/03/2016 08:56:36 PM,03/03/2016 09:26:10 PM,Code 2 Transport,03/03/2016 09:50:42 PM,1400 Block of 42ND AVE,San Francisco,94122,B08,23,7631,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.759683719968, -122.501503448088)",160633452-64 -121510135,66,12050000,Medical Incident,05/30/2012,05/30/2012,05/30/2012 11:25:34 AM,05/30/2012 11:26:33 AM,05/30/2012 11:26:45 AM,05/30/2012 11:26:57 AM,05/30/2012 11:31:45 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,No Merit,05/30/2012 11:32:45 AM,0 Block of MERCURY ST,SF,94124,B10,42,6447,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7319018847034, -122.401643423217)",121510135-66 -140810305,E33,14027470,Alarms,03/22/2014,03/22/2014,03/22/2014 07:26:33 PM,03/22/2014 07:27:45 PM,03/22/2014 07:28:58 PM,03/22/2014 07:30:31 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Fire,03/22/2014 07:42:34 PM,8400 Block of OCEANVIEW TER,SAN FRANCISCO,94132,B09,33,8412,3,3,3,true,Alarm,1,ENGINE,3,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",140810305-E33 -122720078,T05,12089665,Structure Fire,09/28/2012,09/28/2012,09/28/2012 08:48:13 AM,09/28/2012 08:49:12 AM,09/28/2012 08:49:57 AM,09/28/2012 08:50:46 AM,09/28/2012 08:52:07 AM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/28/2012 09:03:11 AM,1200 Block of LAGUNA ST,SF,94115,B02,5,3366,3,3,3,false,Fire,1,TRUCK,2,2,5,Western Addition,"(37.7822812615868, -122.427511862361)",122720078-T05 -160893244,64,16035457,Medical Incident,03/29/2016,03/29/2016,03/29/2016 07:04:19 PM,03/29/2016 07:05:48 PM,03/29/2016 07:06:23 PM,03/29/2016 07:06:48 PM,03/29/2016 07:16:05 PM,03/29/2016 07:27:16 PM,03/29/2016 07:56:20 PM,Code 2 Transport,03/29/2016 08:25:06 PM,TAPIA DR/HOLLOWAY AV,San Francisco,94132,B08,19,868,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7207027284867, -122.481058032141)",160893244-64 -131120253,T13,13037753,Medical Incident,04/22/2013,04/22/2013,04/22/2013 02:18:07 PM,04/22/2013 02:18:40 PM,04/22/2013 02:21:04 PM,04/22/2013 02:22:37 PM,04/22/2013 02:24:56 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/22/2013 02:40:35 PM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.793872317337, -122.405454714295)",131120253-T13 -160603645,AM16,16024105,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:11:29 PM,02/29/2016 10:13:01 PM,02/29/2016 10:13:21 PM,02/29/2016 10:14:00 PM,02/29/2016 10:36:53 PM,02/29/2016 10:36:57 PM,02/29/2016 10:50:28 PM,Code 2 Transport,02/29/2016 11:18:20 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160603645-AM16 -110840190,E15,11027675,Medical Incident,03/25/2011,03/25/2011,03/25/2011 12:29:15 PM,03/25/2011 12:29:46 PM,03/25/2011 12:29:54 PM,03/25/2011 12:30:53 PM,03/25/2011 12:32:30 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 12:45:00 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",110840190-E15 -131850125,E38,13063008,Smoke Investigation (Outside),07/04/2013,07/04/2013,07/04/2013 10:36:14 AM,07/04/2013 10:38:08 AM,07/04/2013 10:38:28 AM,07/04/2013 10:38:54 AM,07/04/2013 10:42:13 AM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Fire,07/04/2013 10:43:12 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",131850125-E38 -123520250,B06,12117791,Structure Fire,12/17/2012,12/17/2012,12/17/2012 02:38:51 PM,12/17/2012 02:40:43 PM,12/17/2012 02:41:20 PM,12/17/2012 02:42:24 PM,12/17/2012 02:48:13 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 02:56:27 PM,BURROWS ST/PERU AV,SF,94134,B09,43,6153,3,3,3,false,Alarm,1,CHIEF,4,9,9,Excelsior,"(37.723944193532, -122.422830068357)",123520250-B06 -160752692,50,16029794,Medical Incident,03/15/2016,03/15/2016,03/15/2016 04:33:33 PM,03/15/2016 04:33:33 PM,03/15/2016 04:33:59 PM,03/15/2016 04:34:28 PM,03/15/2016 04:41:04 PM,03/15/2016 04:59:41 PM,03/15/2016 05:19:12 PM,Code 2 Transport,03/15/2016 05:59:49 PM,OAK GROVE ST/HARRISON ST,San Francisco,94107,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7781489639207, -122.402961159131)",160752692-50 -130790393,RS1,13026588,Medical Incident,03/20/2013,03/20/2013,03/20/2013 11:17:00 PM,03/20/2013 11:18:06 PM,03/20/2013 11:18:53 PM,03/20/2013 11:20:37 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/20/2013 11:21:36 PM,5TH ST/STEVENSON ST,SF,94103,B03,1,2247,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.783528916199, -122.407482813601)",130790393-RS1 -131280172,67,13043257,Medical Incident,05/08/2013,05/08/2013,05/08/2013 11:30:36 AM,05/08/2013 11:31:03 AM,05/08/2013 11:31:17 AM,05/08/2013 11:31:33 AM,04/25/2016 01:52:54 PM,05/08/2013 11:49:49 AM,05/08/2013 11:56:53 AM,Code 2 Transport,05/08/2013 12:55:42 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",131280172-67 -113650228,E03,11121309,Medical Incident,12/31/2011,12/31/2011,12/31/2011 02:55:40 PM,12/31/2011 02:56:01 PM,12/31/2011 02:56:24 PM,12/31/2011 02:57:26 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 03:06:09 PM,1400 Block of PINE ST,SF,94109,B04,3,3122,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",113650228-E03 -112330153,AM02,11076912,Medical Incident,08/21/2011,08/21/2011,08/21/2011 11:12:30 AM,08/21/2011 11:14:48 AM,08/21/2011 11:15:22 AM,08/21/2011 11:16:04 AM,04/25/2016 02:03:04 PM,08/21/2011 11:26:50 AM,08/21/2011 11:34:34 AM,Code 2 Transport,08/21/2011 12:07:59 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",112330153-AM02 -130900219,RC3,13030146,Medical Incident,03/31/2013,03/31/2013,03/31/2013 03:31:38 PM,03/31/2013 03:32:00 PM,03/31/2013 03:32:16 PM,03/31/2013 03:34:06 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 03:35:04 PM,1100 Block of HAIGHT ST,SF,94117,B05,21,4353,E,E,3,true,Non Life-threatening,1,RESCUE CAPTAIN,4,5,5,Haight Ashbury,"(37.7707967646224, -122.44118874316)",130900219-RC3 -140600028,AM18,14020124,Medical Incident,03/01/2014,02/28/2014,03/01/2014 01:54:23 AM,03/01/2014 01:55:32 AM,03/01/2014 01:55:54 AM,03/01/2014 01:56:32 AM,03/01/2014 02:00:44 AM,03/01/2014 02:20:24 AM,03/01/2014 02:22:47 AM,Code 2 Transport,03/01/2014 03:16:14 AM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",140600028-AM18 -111410302,E05,11046970,Medical Incident,05/21/2011,05/21/2011,05/21/2011 07:43:48 PM,05/21/2011 07:47:00 PM,05/21/2011 07:58:42 PM,05/21/2011 07:59:38 PM,05/21/2011 08:01:25 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,Other,05/21/2011 08:26:01 PM,GROVE ST/STEINER ST,SF,94117,B05,21,3631,1,1,2,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7765501206667, -122.433028501221)",111410302-E05 -130610322,E44,13020577,Structure Fire,03/02/2013,03/02/2013,03/02/2013 08:15:42 PM,03/02/2013 08:16:57 PM,03/02/2013 08:17:11 PM,03/02/2013 08:17:30 PM,03/02/2013 08:19:57 PM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Other,03/02/2013 08:28:37 PM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,3,3,3,true,Alarm,1,ENGINE,1,10,9,Portola,"(37.724618348147, -122.402420149939)",130610322-E44 -160762572,KM06,16030224,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:03:46 PM,03/16/2016 04:05:54 PM,03/16/2016 04:06:17 PM,03/16/2016 04:06:41 PM,03/16/2016 04:18:54 PM,03/16/2016 04:42:40 PM,03/16/2016 04:56:17 PM,Code 2 Transport,03/16/2016 05:30:02 PM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160762572-KM06 -112380181,D2,11078545,Structure Fire,08/26/2011,08/26/2011,08/26/2011 01:13:50 PM,08/26/2011 01:14:20 PM,08/26/2011 01:14:32 PM,08/26/2011 01:15:26 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 01:18:03 PM,600 Block of 14TH ST,SF,94114,B02,6,5213,3,3,3,false,,1,CHIEF,8,2,8,Castro/Upper Market,"(37.7677090926808, -122.428254748888)",112380181-D2 -132890380,92,13098472,Medical Incident,10/16/2013,10/16/2013,10/16/2013 11:00:34 PM,10/16/2013 11:01:01 PM,10/16/2013 11:01:28 PM,10/16/2013 11:02:13 PM,10/16/2013 11:24:17 PM,10/16/2013 11:31:43 PM,10/16/2013 11:46:57 PM,Code 2 Transport,10/17/2013 12:21:39 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",132890380-92 -160643065,AM14,16025621,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:14:17 PM,03/04/2016 06:15:51 PM,03/04/2016 06:17:04 PM,03/04/2016 06:17:47 PM,03/04/2016 06:25:19 PM,03/04/2016 06:43:18 PM,03/04/2016 06:58:06 PM,Code 2 Transport,03/04/2016 07:21:12 PM,0 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7895797011957, -122.402025244971)",160643065-AM14 -132340023,E01,13078870,Medical Incident,08/22/2013,08/21/2013,08/22/2013 02:42:44 AM,08/22/2013 02:42:44 AM,08/22/2013 02:42:44 AM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/22/2013 02:50:54 AM,HOWARD ST/7TH ST,SF,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7779770860913, -122.409387007126)",132340023-E01 -160601785,AM10,16023909,Medical Incident,02/29/2016,02/29/2016,02/29/2016 01:19:27 PM,02/29/2016 01:20:44 PM,02/29/2016 01:21:28 PM,02/29/2016 01:21:55 PM,02/29/2016 01:27:12 PM,02/29/2016 02:22:35 PM,02/29/2016 02:40:53 PM,Code 2 Transport,02/29/2016 02:56:55 PM,4TH ST/HOWARD ST,San Francisco,94103,B03,1,2214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",160601785-AM10 -140240271,E05,14008245,Medical Incident,01/24/2014,01/24/2014,01/24/2014 02:57:57 PM,01/24/2014 02:58:38 PM,01/24/2014 03:00:33 PM,01/24/2014 03:00:33 PM,01/24/2014 03:02:14 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/24/2014 03:06:38 PM,600 Block of FELL ST,SF,94102,B02,36,3423,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7752684985876, -122.428555766328)",140240271-E05 -160392574,68,16015708,Medical Incident,02/08/2016,02/08/2016,02/08/2016 04:45:01 PM,02/08/2016 04:46:01 PM,02/08/2016 04:46:39 PM,02/08/2016 04:46:44 PM,02/08/2016 04:53:42 PM,02/08/2016 04:59:21 PM,02/08/2016 05:29:33 PM,Code 2 Transport,02/08/2016 05:46:28 PM,ELSIE ST/ESMERALDA AV,San Francisco,94110,B06,32,5657,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7432227219521, -122.417421527797)",160392574-68 -123050024,54,12101062,Medical Incident,10/31/2012,10/30/2012,10/31/2012 02:03:05 AM,10/31/2012 02:04:56 AM,10/31/2012 02:06:00 AM,04/25/2016 01:56:02 PM,10/31/2012 02:06:15 AM,10/31/2012 02:24:34 AM,10/31/2012 02:45:56 AM,Other,10/31/2012 03:19:23 AM,CHURCH ST/18TH ST,SF,94114,B02,6,5421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",123050024-54 -111530061,E38,11050493,Medical Incident,06/02/2011,06/01/2011,06/02/2011 07:36:58 AM,06/02/2011 07:37:19 AM,06/02/2011 07:38:07 AM,06/02/2011 07:39:56 AM,06/02/2011 07:40:46 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/02/2011 07:50:11 AM,LAGUNA ST/SACRAMENTO ST,SF,94109,B04,38,3435,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7904594992722, -122.429092268636)",111530061-E38 -160080215,57,16003068,Medical Incident,01/08/2016,01/07/2016,01/08/2016 01:59:06 AM,01/08/2016 02:01:02 AM,01/08/2016 02:01:41 AM,01/08/2016 02:02:07 AM,01/08/2016 02:02:31 AM,01/08/2016 02:25:24 AM,01/08/2016 02:40:33 AM,Code 2 Transport,01/08/2016 03:30:30 AM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882286861562, -122.415995198292)",160080215-57 -102260142,E02,10071115,Medical Incident,08/14/2010,08/14/2010,08/14/2010 11:43:39 AM,08/14/2010 11:44:01 AM,08/14/2010 11:44:49 AM,08/14/2010 11:46:12 AM,08/14/2010 11:47:32 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 11:48:10 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.7980497141877, -122.406829909619)",102260142-E02 -111240041,E03,11040856,Medical Incident,05/04/2011,05/03/2011,05/04/2011 05:29:27 AM,05/04/2011 05:29:41 AM,05/04/2011 05:31:12 AM,05/04/2011 05:32:53 AM,05/04/2011 05:35:21 AM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/04/2011 05:46:10 AM,LEAVENWORTH ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",111240041-E03 -111250275,T01,11041437,Alarms,05/05/2011,05/05/2011,05/05/2011 04:49:00 PM,05/05/2011 04:50:47 PM,05/05/2011 04:50:58 PM,05/05/2011 04:52:46 PM,05/05/2011 04:56:10 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 05:00:03 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",111250275-T01 -102750153,B01,10087333,Alarms,10/02/2010,10/02/2010,10/02/2010 11:01:50 AM,10/02/2010 11:02:36 AM,10/02/2010 11:02:43 AM,10/02/2010 11:03:08 AM,10/02/2010 11:06:49 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Fire,10/02/2010 11:16:47 AM,600 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,false,,1,CHIEF,1,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",102750153-B01 -121530361,T03,12050804,Alarms,06/01/2012,06/01/2012,06/01/2012 10:21:48 PM,06/01/2012 10:23:07 PM,06/01/2012 10:23:21 PM,06/01/2012 10:25:32 PM,06/01/2012 10:27:07 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 10:30:23 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Alarm,1,TRUCK,3,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",121530361-T03 -121530122,83,12050586,Structure Fire,06/01/2012,06/01/2012,06/01/2012 11:26:46 AM,06/01/2012 11:27:53 AM,06/01/2012 11:28:30 AM,06/01/2012 11:28:43 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 11:34:27 AM,800 Block of 28TH AVE,SF,94121,B07,14,7223,3,3,3,true,Fire,1,MEDIC,11,7,1,Outer Richmond,"(37.7733597463577, -122.48739702419)",121530122-83 -160723140,76,16028765,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:40:23 PM,03/12/2016 08:40:23 PM,03/12/2016 08:41:56 PM,03/12/2016 08:42:03 PM,03/12/2016 08:49:58 PM,03/12/2016 09:08:36 PM,03/12/2016 09:22:38 PM,Code 2 Transport,03/12/2016 10:03:57 PM,900 Block of CHURCH ST,San Francisco,94114,B06,11,5467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7560963961337, -122.427783359919)",160723140-76 -132120131,T07,13071618,Other,07/31/2013,07/31/2013,07/31/2013 11:05:08 AM,07/31/2013 11:05:09 AM,07/31/2013 11:05:09 AM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 11:10:57 AM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,false,Alarm,1,TRUCK,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",132120131-T07 -122810343,93,12093130,Medical Incident,10/07/2012,10/07/2012,10/07/2012 08:12:15 PM,10/07/2012 08:12:51 PM,10/07/2012 08:13:48 PM,10/07/2012 08:13:58 PM,10/07/2012 08:20:51 PM,10/07/2012 08:38:35 PM,10/07/2012 08:57:10 PM,Code 3 Transport,10/07/2012 09:38:36 PM,1000 Block of OAKDALE AVE,SF,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7288155676841, -122.380327013416)",122810343-93 -120730087,59,12024153,Explosion,03/13/2012,03/13/2012,03/13/2012 08:13:40 AM,03/13/2012 08:15:25 AM,03/13/2012 08:16:16 AM,03/13/2012 08:20:40 AM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,Other,03/13/2012 08:23:29 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Fire,1,MEDIC,13,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",120730087-59 -160491217,62,16019688,Medical Incident,02/18/2016,02/18/2016,02/18/2016 10:41:17 AM,02/18/2016 10:41:37 AM,02/18/2016 10:42:23 AM,02/18/2016 10:42:36 AM,02/18/2016 10:50:36 AM,02/18/2016 11:00:01 AM,02/18/2016 11:21:23 AM,Code 2 Transport,02/18/2016 12:13:42 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160491217-62 -110490076,E20,11016104,Structure Fire,02/18/2011,02/17/2011,02/18/2011 07:34:50 AM,02/18/2011 07:34:56 AM,02/18/2011 07:35:02 AM,02/18/2011 07:36:00 AM,02/18/2011 07:40:04 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/18/2011 08:13:28 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110490076-E20 -160452423,64,16018206,Medical Incident,02/14/2016,02/14/2016,02/14/2016 04:55:19 PM,02/14/2016 04:57:00 PM,02/14/2016 04:57:41 PM,02/14/2016 04:57:53 PM,02/14/2016 05:11:33 PM,02/14/2016 05:36:37 PM,02/14/2016 05:45:12 PM,Code 2 Transport,02/14/2016 06:14:31 PM,200 Block of NAPLES ST,San Francisco,94112,B09,43,6142,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7247649649334, -122.428320157023)",160452423-64 -122560011,B02,12084500,Structure Fire,09/12/2012,09/11/2012,09/12/2012 12:50:43 AM,09/12/2012 12:51:51 AM,09/12/2012 12:52:14 AM,04/25/2016 01:56:48 PM,09/12/2012 01:03:15 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 01:12:37 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Fire,1,CHIEF,6,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",122560011-B02 -121620253,T01,12053686,Structure Fire,06/10/2012,06/10/2012,06/10/2012 03:19:48 PM,06/10/2012 03:19:48 PM,06/10/2012 03:19:57 PM,06/10/2012 03:20:25 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 03:22:48 PM,10TH ST/HOWARD ST,SF,94103,B02,36,2342,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7740433259374, -122.414367692219)",121620253-T01 -132280266,85,13077020,Medical Incident,08/16/2013,08/16/2013,08/16/2013 03:08:16 PM,08/16/2013 03:09:08 PM,08/16/2013 03:11:19 PM,08/16/2013 03:11:46 PM,08/16/2013 03:18:34 PM,08/16/2013 03:25:36 PM,08/16/2013 03:50:37 PM,Code 2 Transport,08/16/2013 04:22:52 PM,4TH ST/BRANNAN ST,SF,94107,B03,8,2223,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7783268314649, -122.396530638158)",132280266-85 -160132601,AM02,16005247,Medical Incident,01/13/2016,01/13/2016,01/13/2016 03:41:28 PM,01/13/2016 03:41:28 PM,01/13/2016 03:41:40 PM,01/13/2016 03:42:43 PM,01/13/2016 03:52:58 PM,01/13/2016 04:18:25 PM,01/13/2016 04:26:13 PM,Code 2 Transport,01/13/2016 04:55:46 PM,NOE ST/MARKET ST,San Francisco,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",160132601-AM02 -160183538,82,16007423,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:14:53 PM,01/18/2016 11:15:57 PM,01/18/2016 11:16:33 PM,01/18/2016 11:17:11 PM,01/18/2016 11:24:50 PM,01/18/2016 11:32:37 PM,01/18/2016 11:46:58 PM,Code 2 Transport,01/19/2016 01:07:58 AM,6200 Block of 3RD ST,San Francisco,94124,B10,44,6544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7213831461768, -122.396234473248)",160183538-82 -160572332,KM02,16022817,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:30:53 PM,02/26/2016 03:33:07 PM,02/26/2016 03:43:35 PM,02/26/2016 03:44:10 PM,02/26/2016 04:02:39 PM,02/26/2016 04:13:03 PM,02/26/2016 04:46:00 PM,Code 2 Transport,02/26/2016 05:30:39 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",160572332-KM02 -160520196,76,16020662,Medical Incident,02/21/2016,02/20/2016,02/21/2016 01:08:51 AM,02/21/2016 01:09:46 AM,02/21/2016 01:10:00 AM,02/21/2016 01:10:07 AM,02/21/2016 01:12:22 AM,02/21/2016 01:41:54 AM,02/21/2016 01:41:54 AM,Code 2 Transport,02/21/2016 02:29:59 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7609766090845, -122.434457353955)",160520196-76 -110350321,T02,11011602,Alarms,02/04/2011,02/04/2011,02/04/2011 07:00:32 PM,02/04/2011 07:01:13 PM,02/04/2011 07:03:25 PM,02/04/2011 07:04:47 PM,02/04/2011 07:06:51 PM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Other,02/04/2011 07:18:06 PM,500 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7910048906559, -122.407192484843)",110350321-T02 -102310309,AM08,10072808,Medical Incident,08/19/2010,08/19/2010,08/19/2010 08:15:06 PM,08/19/2010 08:15:49 PM,08/19/2010 08:16:15 PM,04/25/2016 02:09:00 PM,08/19/2010 08:26:25 PM,08/19/2010 08:35:12 PM,08/19/2010 08:58:01 PM,Code 2 Transport,08/19/2010 09:20:52 PM,2300 Block of 16TH AVE,SF,94116,B08,40,7376,3,E,3,false,,1,PRIVATE,3,8,7,West of Twin Peaks,"(37.7444297202932, -122.472811993501)",102310309-AM08 -123460073,E35,12115611,Outside Fire,12/11/2012,12/10/2012,12/11/2012 07:17:20 AM,12/11/2012 07:17:20 AM,12/11/2012 07:17:44 AM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/11/2012 07:22:24 AM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,8,966,3,3,3,true,Alarm,1,ENGINE,3,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",123460073-E35 -160030280,53,16001017,Medical Incident,01/03/2016,01/02/2016,01/03/2016 01:53:09 AM,01/03/2016 01:53:39 AM,01/03/2016 01:54:37 AM,01/03/2016 01:54:49 AM,01/03/2016 02:00:07 AM,01/03/2016 02:16:10 AM,01/03/2016 02:16:11 AM,Code 2 Transport,01/03/2016 03:30:50 AM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160030280-53 -131650169,RC1,13056037,Traffic Collision,06/14/2013,06/14/2013,06/14/2013 12:19:26 PM,06/14/2013 12:19:56 PM,06/14/2013 12:22:53 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 12:41:36 PM,MONTGOMERY ST/CLAY ST,SF,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Chinatown,"(37.7946662813797, -122.403139296426)",131650169-RC1 -160423794,88,16017061,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:12:17 PM,02/11/2016 10:13:31 PM,02/11/2016 10:14:04 PM,02/11/2016 10:14:14 PM,02/11/2016 10:20:31 PM,02/11/2016 10:33:10 PM,02/11/2016 10:46:53 PM,Code 2 Transport,02/11/2016 11:26:05 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160423794-88 -113070230,74,11102025,Medical Incident,11/03/2011,11/03/2011,11/03/2011 02:33:52 PM,11/03/2011 02:35:39 PM,11/03/2011 02:36:33 PM,11/03/2011 02:36:59 PM,04/25/2016 02:01:49 PM,11/03/2011 03:05:04 PM,11/03/2011 03:50:26 PM,Code 2 Transport,11/03/2011 03:50:28 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",113070230-74 -113640261,E07,11120962,Medical Incident,12/30/2011,12/30/2011,12/30/2011 03:52:18 PM,12/30/2011 03:53:40 PM,12/30/2011 03:53:55 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,04/25/2016 02:00:53 PM,Other,12/30/2011 03:54:53 PM,24TH ST/TREAT AV,SF,94110,B06,7,5477,3,2,2,true,,1,ENGINE,2,6,9,Mission,"(37.7525727580898, -122.41299517484)",113640261-E07 -103020275,E01,10096567,Medical Incident,10/29/2010,10/29/2010,10/29/2010 07:18:23 PM,10/29/2010 07:19:28 PM,10/29/2010 07:19:55 PM,10/29/2010 07:21:19 PM,10/29/2010 07:23:18 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/29/2010 07:33:08 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",103020275-E01 -113490255,E18,11115865,Structure Fire,12/15/2011,12/15/2011,12/15/2011 05:08:22 PM,12/15/2011 05:08:22 PM,12/15/2011 05:08:31 PM,12/15/2011 05:09:26 PM,12/15/2011 05:12:14 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/15/2011 05:20:34 PM,1500 Block of 31ST AVE,SF,94122,B08,18,753,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7583357019527, -122.489587661906)",113490255-E18 -131260111,67,13042496,Traffic Collision,05/06/2013,05/06/2013,05/06/2013 09:06:02 AM,05/06/2013 09:07:19 AM,05/06/2013 09:07:32 AM,05/06/2013 09:07:45 AM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,Other,05/06/2013 09:12:59 AM,19TH ST/DOLORES ST,SF,94110,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",131260111-67 -120200373,KM07,12006842,Medical Incident,01/20/2012,01/20/2012,01/20/2012 08:31:34 PM,01/20/2012 08:35:05 PM,01/20/2012 08:35:30 PM,01/20/2012 08:36:41 PM,01/20/2012 08:40:58 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Patient Declined Transport,01/20/2012 09:30:46 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",120200373-KM07 -133470101,T11,13117685,Structure Fire,12/13/2013,12/13/2013,12/13/2013 09:24:36 AM,12/13/2013 09:24:36 AM,12/13/2013 09:24:55 AM,04/25/2016 01:49:17 PM,12/13/2013 09:30:47 AM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 09:36:16 AM,100 Block of LIPPARD AVE,SF,94131,B09,26,817,3,3,3,false,Alarm,1,TRUCK,2,9,8,West of Twin Peaks,"(37.7331188960885, -122.436006242451)",133470101-T11 -160520472,85,16020688,Medical Incident,02/21/2016,02/20/2016,02/21/2016 03:22:23 AM,02/21/2016 03:23:51 AM,02/21/2016 03:24:20 AM,02/21/2016 03:24:28 AM,02/21/2016 03:26:05 AM,02/21/2016 03:42:23 AM,02/21/2016 03:48:28 AM,Code 2 Transport,02/21/2016 04:39:47 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160520472-85 -120750194,RC1,12024913,Medical Incident,03/15/2012,03/15/2012,03/15/2012 01:46:15 PM,03/15/2012 01:46:59 PM,03/15/2012 01:47:30 PM,03/15/2012 01:48:38 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 01:52:05 PM,RUSS ST/HOWARD ST,SF,94103,B03,1,2252,3,2,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7788606854675, -122.408271588549)",120750194-RC1 -160252750,81,16010027,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:09:48 PM,01/25/2016 05:09:48 PM,01/25/2016 05:10:46 PM,01/25/2016 05:11:01 PM,01/25/2016 05:25:32 PM,01/25/2016 05:56:38 PM,01/25/2016 06:03:09 PM,Code 2 Transport,01/25/2016 06:43:00 PM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",160252750-81 -130470013,T13,13015857,Medical Incident,02/16/2013,02/15/2013,02/16/2013 12:30:37 AM,02/16/2013 12:31:06 AM,02/16/2013 12:31:58 AM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,04/25/2016 01:54:16 PM,MONTGOMERY ST/BROADWAY,SF,94133,B01,13,1231,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,1,3,North Beach,"(37.7982229704871, -122.403863019987)",130470013-T13 -122920307,D3,12096848,Structure Fire,10/18/2012,10/18/2012,10/18/2012 05:02:01 PM,10/18/2012 05:03:34 PM,10/18/2012 05:04:24 PM,10/18/2012 05:06:03 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 05:09:16 PM,0 Block of HAZELWOOD AVE,SF,94112,B09,15,8521,3,3,3,false,Alarm,1,CHIEF,8,9,7,West of Twin Peaks,"(37.7294941295348, -122.454084854429)",122920307-D3 -160690361,72,16027325,Medical Incident,03/09/2016,03/08/2016,03/09/2016 04:41:57 AM,03/09/2016 04:43:44 AM,03/09/2016 04:44:17 AM,03/09/2016 04:44:28 AM,03/09/2016 04:53:50 AM,03/09/2016 05:10:58 AM,03/09/2016 05:25:38 AM,Code 2 Transport,03/09/2016 05:46:58 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160690361-72 -111880027,54,11062033,Medical Incident,07/07/2011,07/06/2011,07/07/2011 02:38:08 AM,07/07/2011 02:38:45 AM,07/07/2011 02:39:03 AM,07/07/2011 02:39:20 AM,07/07/2011 02:41:30 AM,07/07/2011 02:46:21 AM,07/07/2011 02:52:36 AM,Code 2 Transport,07/07/2011 03:01:26 AM,700 Block of MARKET ST,SF,94103,B03,1,2211,2,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",111880027-54 -123440169,E15,12114971,Medical Incident,12/09/2012,12/09/2012,12/09/2012 11:25:42 AM,12/09/2012 11:26:19 AM,12/09/2012 11:26:31 AM,12/09/2012 11:30:46 AM,12/09/2012 11:33:00 AM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 11:41:11 AM,0 Block of SANTA ROSA AVE,SF,94112,B06,15,8265,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7262876072469, -122.434951059598)",123440169-E15 -123590340,E01,12120336,Structure Fire,12/24/2012,12/24/2012,12/24/2012 10:11:17 PM,12/24/2012 10:12:21 PM,12/24/2012 10:12:41 PM,12/24/2012 10:13:15 PM,12/24/2012 10:17:53 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 10:21:40 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,6,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",123590340-E01 -133430219,E09,13116342,Medical Incident,12/09/2013,12/09/2013,12/09/2013 01:56:22 PM,12/09/2013 01:56:28 PM,12/09/2013 01:56:58 PM,12/09/2013 01:58:53 PM,12/09/2013 02:17:16 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/09/2013 02:20:31 PM,2800 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5621,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Mission,"(37.7490475978139, -122.405997639804)",133430219-E09 -133450166,B03,13116987,Medical Incident,12/11/2013,12/11/2013,12/11/2013 11:35:43 AM,12/11/2013 11:36:13 AM,12/11/2013 11:36:41 AM,12/11/2013 11:37:05 AM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/11/2013 11:40:14 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,E,E,3,false,Potentially Life-Threatening,1,CHIEF,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",133450166-B03 -110720039,AM18,11023607,Medical Incident,03/13/2011,03/12/2011,03/13/2011 01:53:57 AM,03/13/2011 01:57:03 AM,03/13/2011 03:14:11 AM,03/13/2011 03:16:36 AM,03/13/2011 03:20:04 AM,03/13/2011 03:21:43 AM,04/25/2016 02:05:39 PM,Code 2 Transport,03/13/2011 03:55:11 AM,200 Block of FELTON ST,SF,94134,B10,42,6341,1,3,3,false,,1,PRIVATE,2,10,9,Portola,"(37.7293375380523, -122.40704751351)",110720039-AM18 -120070167,KM07,12002397,Medical Incident,01/07/2012,01/07/2012,01/07/2012 11:35:47 AM,01/07/2012 11:37:40 AM,01/07/2012 11:38:03 AM,01/07/2012 11:53:12 AM,01/07/2012 12:06:12 PM,01/07/2012 12:24:33 PM,01/07/2012 12:42:39 PM,Code 2 Transport,01/07/2012 01:17:03 PM,1200 Block of 48TH AVE,SF,94122,B08,23,7721,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7631362332956, -122.508195889084)",120070167-KM07 -121840188,T17,12061299,Structure Fire,07/02/2012,07/02/2012,07/02/2012 02:12:18 PM,07/02/2012 02:12:20 PM,07/02/2012 02:12:46 PM,07/02/2012 02:14:58 PM,07/02/2012 02:13:59 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 02:16:09 PM,WOOLSEY ST/HAMILTON ST,SF,94134,B10,42,6331,3,3,3,false,Alarm,1,TRUCK,1,9,9,Portola,"(37.7236880085901, -122.408528698653)",121840188-T17 -130480061,E03,13016279,Alarms,02/17/2013,02/16/2013,02/17/2013 03:20:14 AM,02/17/2013 03:21:34 AM,02/17/2013 03:21:51 AM,02/17/2013 03:23:01 AM,02/17/2013 03:25:21 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 03:31:07 AM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",130480061-E03 -102800015,E01,10088873,Medical Incident,10/07/2010,10/06/2010,10/07/2010 12:57:25 AM,10/07/2010 12:57:55 AM,10/07/2010 12:58:08 AM,10/07/2010 12:59:59 AM,10/07/2010 01:02:15 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/07/2010 01:09:40 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",102800015-E01 -112760242,92,11091394,Medical Incident,10/03/2011,10/03/2011,10/03/2011 02:53:39 PM,10/03/2011 02:55:47 PM,10/03/2011 02:56:10 PM,10/03/2011 02:56:36 PM,10/03/2011 03:03:30 PM,10/03/2011 03:24:51 PM,10/03/2011 03:42:49 PM,Code 2 Transport,10/03/2011 04:11:01 PM,700 Block of BRUNSWICK ST,SF,94112,B09,33,6214,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7086491717857, -122.448732919576)",112760242-92 -110430401,AM18,11014445,Medical Incident,02/12/2011,02/12/2011,02/12/2011 08:56:03 PM,02/12/2011 08:56:25 PM,02/12/2011 08:57:09 PM,04/25/2016 02:06:06 PM,02/12/2011 09:13:30 PM,02/12/2011 09:17:34 PM,02/12/2011 09:24:49 PM,Code 2 Transport,02/12/2011 10:26:48 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",110430401-AM18 -120430330,E43,12014533,Medical Incident,02/12/2012,02/12/2012,02/12/2012 10:40:23 PM,02/12/2012 10:43:06 PM,02/12/2012 10:43:26 PM,02/12/2012 10:44:13 PM,02/12/2012 10:46:50 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/12/2012 10:51:14 PM,100 Block of BRAZIL AVE,SF,94112,B09,43,6127,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7240773628608, -122.433668179488)",120430330-E43 -140610247,96,14020698,Medical Incident,03/02/2014,03/02/2014,03/02/2014 05:12:15 PM,03/02/2014 05:13:54 PM,03/02/2014 05:15:28 PM,03/02/2014 05:16:08 PM,03/02/2014 05:42:30 PM,03/02/2014 05:42:34 PM,03/02/2014 05:53:57 PM,Code 2 Transport,03/02/2014 06:06:14 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7562403438982, -122.418755320213)",140610247-96 -140350392,RC2,14011999,Medical Incident,02/04/2014,02/04/2014,02/04/2014 07:30:20 PM,02/04/2014 07:33:28 PM,02/04/2014 07:34:25 PM,02/04/2014 07:35:40 PM,04/25/2016 01:48:22 PM,04/25/2016 01:48:22 PM,04/25/2016 01:48:22 PM,Other,02/04/2014 07:36:13 PM,200 Block of FARALLONES ST,SF,94112,B09,33,8374,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,9,11,Oceanview/Merced/Ingleside,"(37.7139875097179, -122.460811423157)",140350392-RC2 -103600131,63,10115499,Medical Incident,12/26/2010,12/26/2010,12/26/2010 01:16:57 PM,12/26/2010 01:17:31 PM,12/26/2010 01:17:57 PM,12/26/2010 01:18:05 PM,12/26/2010 01:25:24 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 01:31:21 PM,LAGUNA HONDA BL/CLARENDON AV,SF,94131,B08,20,8635,3,2,2,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7515035610676, -122.461523603256)",103600131-63 -140910288,66,14030696,Traffic Collision,04/01/2014,04/01/2014,04/01/2014 07:57:00 PM,04/01/2014 07:58:21 PM,04/01/2014 07:58:56 PM,04/01/2014 07:59:14 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,Code 2 Transport,04/25/2016 01:47:27 PM,300 Block of 1ST ST,SAN FRANCISCO,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",140910288-66 -140680097,66,14022940,Medical Incident,03/09/2014,03/09/2014,03/09/2014 09:40:35 AM,03/09/2014 09:41:21 AM,03/09/2014 09:41:33 AM,03/09/2014 09:41:59 AM,03/09/2014 09:46:08 AM,03/09/2014 09:57:30 AM,03/09/2014 10:26:39 AM,Code 2 Transport,03/09/2014 10:36:22 AM,300 Block of CORTLAND AVE,SAN FRANCISCO,94110,B06,32,5652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7392773970379, -122.418180028379)",140680097-66 -122490065,67,12082260,Medical Incident,09/05/2012,09/04/2012,09/05/2012 07:51:06 AM,09/05/2012 07:51:52 AM,09/05/2012 07:52:09 AM,09/05/2012 07:53:10 AM,09/05/2012 07:56:39 AM,09/05/2012 08:13:32 AM,09/05/2012 08:17:51 AM,Code 3 Transport,09/05/2012 08:56:09 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",122490065-67 -111570140,E32,11051874,Medical Incident,06/06/2011,06/06/2011,06/06/2011 10:34:56 AM,06/06/2011 10:35:25 AM,06/06/2011 10:36:04 AM,06/06/2011 10:36:22 AM,06/06/2011 10:38:31 AM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 10:51:52 AM,3200 Block of MISSION ST,SF,94110,B06,11,5624,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7454669542894, -122.419890921573)",111570140-E32 -123510316,87,12117515,Traffic Collision,12/16/2012,12/16/2012,12/16/2012 06:56:35 PM,12/16/2012 06:57:15 PM,12/16/2012 06:59:44 PM,12/16/2012 07:08:59 PM,12/16/2012 07:22:41 PM,12/16/2012 07:29:48 PM,12/16/2012 07:40:54 PM,Other,12/16/2012 08:35:13 PM,NAPLES ST/GENEVA AV,SF,94112,B09,43,6174,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7142094836778, -122.436176465247)",123510316-87 -111310257,T06,11043352,Alarms,05/11/2011,05/11/2011,05/11/2011 04:37:14 PM,05/11/2011 04:37:32 PM,05/11/2011 04:39:21 PM,05/11/2011 04:40:21 PM,05/11/2011 04:42:33 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/11/2011 04:45:22 PM,600 Block of HAIGHT ST,SF,94117,B05,6,3633,3,3,3,false,,1,TRUCK,2,5,5,Haight Ashbury,"(37.7718470065339, -122.432924490694)",111310257-T06 -133470012,82,13117605,Medical Incident,12/13/2013,12/12/2013,12/13/2013 12:31:23 AM,12/13/2013 12:34:02 AM,12/13/2013 12:34:24 AM,12/13/2013 12:34:49 AM,12/13/2013 12:39:26 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,No Merit,12/13/2013 12:46:19 AM,800 Block of BUSH ST,SF,94108,B01,41,1446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",133470012-82 -160673470,61,16026932,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:41:21 PM,03/07/2016 10:42:18 PM,03/07/2016 10:42:34 PM,03/07/2016 10:42:50 PM,03/07/2016 10:53:53 PM,03/07/2016 11:20:42 PM,03/07/2016 11:28:11 PM,Code 2 Transport,03/08/2016 12:06:47 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160673470-61 -131160312,AM18,13039199,Medical Incident,04/26/2013,04/26/2013,04/26/2013 11:39:29 PM,04/26/2013 11:40:04 PM,04/26/2013 11:41:30 PM,04/26/2013 11:42:07 PM,04/26/2013 11:48:55 PM,04/27/2013 12:00:04 AM,04/27/2013 12:06:23 AM,Code 2 Transport,04/27/2013 12:24:15 AM,EDDY ST/MASON ST,SF,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",131160312-AM18 -123280342,E38,12109238,Medical Incident,11/23/2012,11/23/2012,11/23/2012 10:51:25 PM,11/23/2012 10:53:19 PM,11/23/2012 10:53:48 PM,11/23/2012 10:54:55 PM,11/23/2012 10:58:49 PM,11/23/2012 11:14:29 PM,11/23/2012 11:17:09 PM,Other,11/23/2012 11:22:19 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",123280342-E38 -121100189,E13,12036380,Traffic Collision,04/19/2012,04/19/2012,04/19/2012 12:55:42 PM,04/19/2012 12:57:14 PM,04/19/2012 12:58:36 PM,04/19/2012 12:59:37 PM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,04/25/2016 01:59:06 PM,Other,04/25/2016 01:59:06 PM,HARRISON ST/2ND ST,SF,94105,B03,8,2151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7843110117006, -122.395160623078)",121100189-E13 -111560340,E16,11051701,Traffic Collision,06/05/2011,06/05/2011,06/05/2011 07:19:38 PM,06/05/2011 07:19:38 PM,06/05/2011 07:20:01 PM,06/05/2011 07:21:25 PM,06/05/2011 07:23:50 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,No Merit,06/05/2011 07:35:39 PM,FILBERT ST/FRANKLIN ST,SF,94123,B04,16,3146,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.799275669307, -122.425813533209)",111560340-E16 -131880360,E01,13064256,Medical Incident,07/07/2013,07/07/2013,07/07/2013 10:38:37 PM,07/07/2013 10:40:39 PM,07/07/2013 10:41:34 PM,07/07/2013 10:42:42 PM,07/07/2013 10:46:45 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,No Merit,07/07/2013 10:48:38 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",131880360-E01 -102470042,E13,10077959,Medical Incident,09/04/2010,09/03/2010,09/04/2010 03:29:30 AM,09/04/2010 03:31:17 AM,09/04/2010 03:31:38 AM,09/04/2010 03:33:24 AM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/04/2010 03:35:54 AM,400 Block of BUSH ST,SF,94108,B01,13,1315,1,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7906704035857, -122.405181396784)",102470042-E13 -131560350,68,13053046,Medical Incident,06/05/2013,06/05/2013,06/05/2013 09:10:44 PM,06/05/2013 09:11:32 PM,06/05/2013 09:11:52 PM,06/05/2013 09:12:41 PM,06/05/2013 09:15:51 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Patient Declined Transport,06/05/2013 09:34:53 PM,HUDSON AV/CASHMERE ST,SF,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",131560350-68 -133330240,85,13113012,Medical Incident,11/29/2013,11/29/2013,11/29/2013 06:34:53 PM,11/29/2013 06:36:32 PM,11/29/2013 06:36:50 PM,11/29/2013 06:37:08 PM,11/29/2013 06:43:17 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Patient Declined Transport,11/29/2013 07:21:55 PM,100 Block of EL VERANO WAY,SF,94127,B09,15,8547,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7306626236043, -122.46146141525)",133330240-85 -102650120,AM08,10083828,Medical Incident,09/22/2010,09/22/2010,09/22/2010 11:24:29 AM,09/22/2010 11:26:58 AM,09/22/2010 11:27:10 AM,09/22/2010 11:28:18 AM,09/22/2010 11:31:39 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,No Merit,09/22/2010 11:32:32 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7815063666429, -122.407932868203)",102650120-AM08 -160220181,79,16008625,Medical Incident,01/22/2016,01/21/2016,01/22/2016 01:45:27 AM,01/22/2016 01:45:27 AM,01/22/2016 01:45:42 AM,01/22/2016 01:45:56 AM,01/22/2016 02:08:55 AM,01/22/2016 02:27:59 AM,01/22/2016 02:36:42 AM,Code 2 Transport,01/22/2016 03:10:56 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160220181-79 -112080328,55,11068813,Medical Incident,07/27/2011,07/27/2011,07/27/2011 08:36:22 PM,07/27/2011 08:38:58 PM,07/27/2011 08:39:12 PM,07/27/2011 08:40:18 PM,07/27/2011 08:41:59 PM,07/27/2011 08:52:51 PM,07/27/2011 08:55:43 PM,Code 2 Transport,07/27/2011 09:31:57 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7528524062967, -122.408188967839)",112080328-55 -160833796,68,16033142,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:41:11 PM,03/23/2016 08:45:10 PM,03/23/2016 08:45:27 PM,03/23/2016 08:45:34 PM,03/23/2016 09:00:03 PM,03/23/2016 09:11:23 PM,03/23/2016 09:35:09 PM,Code 2 Transport,03/23/2016 09:51:49 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",160833796-68 -160541189,70,16021525,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:26:40 AM,02/23/2016 10:27:31 AM,02/23/2016 10:27:42 AM,02/23/2016 10:27:50 AM,02/23/2016 10:33:35 AM,02/23/2016 10:48:01 AM,02/23/2016 11:07:52 AM,Code 2 Transport,02/23/2016 12:17:18 PM,0 Block of 2ND ST,San Francisco,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7886675869095, -122.400529034534)",160541189-70 -160110458,AM02,16004271,Medical Incident,01/11/2016,01/10/2016,01/11/2016 05:51:36 AM,01/11/2016 05:52:38 AM,01/11/2016 05:52:52 AM,01/11/2016 05:53:43 AM,01/11/2016 06:12:54 AM,01/11/2016 06:33:31 AM,01/11/2016 07:00:33 AM,Code 2 Transport,01/11/2016 07:43:54 AM,0 Block of HUNTINGTON DR,San Francisco,94132,B08,19,8825,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Sunset/Parkside,"(37.7308419656662, -122.495954672576)",160110458-AM02 -160170988,AM08,16006766,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:41:16 AM,01/17/2016 09:41:16 AM,01/17/2016 09:42:19 AM,01/17/2016 09:43:44 AM,01/17/2016 09:57:45 AM,01/17/2016 09:57:53 AM,01/17/2016 10:11:57 AM,Code 2 Transport,01/17/2016 10:34:13 AM,PACIFIC AV/COLUMBUS AV,San Francisco,94133,B01,13,1246,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7970645895846, -122.405512936752)",160170988-AM08 -123610345,79,12120949,Traffic Collision,12/26/2012,12/26/2012,12/26/2012 08:14:42 PM,12/26/2012 08:14:42 PM,12/26/2012 08:15:27 PM,12/26/2012 08:15:40 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 08:20:39 PM,CALIFORNIA ST/BATTERY ST,SF,94111,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",123610345-79 -120740184,E13,12024547,Alarms,03/14/2012,03/14/2012,03/14/2012 12:06:08 PM,03/14/2012 12:07:23 PM,03/14/2012 12:07:34 PM,03/14/2012 12:08:19 PM,03/14/2012 12:13:11 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/14/2012 12:20:39 PM,800 Block of FOLSOM ST,SF,94103,B03,1,2215,3,3,3,true,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7811835585525, -122.402322293906)",120740184-E13 -112950204,RC3,11097856,Medical Incident,10/22/2011,10/22/2011,10/22/2011 02:58:37 PM,10/22/2011 02:59:16 PM,10/22/2011 03:01:04 PM,04/25/2016 02:02:02 PM,10/22/2011 03:24:32 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 03:28:58 PM,1400 Block of REVERE AVE,SF,94124,B10,17,6571,3,3,3,true,,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7301191034184, -122.387315155313)",112950204-RC3 -103440167,KM01,10110194,Medical Incident,12/10/2010,12/10/2010,12/10/2010 11:21:46 AM,12/10/2010 11:22:54 AM,12/10/2010 11:23:45 AM,12/10/2010 11:25:44 AM,12/10/2010 11:41:36 AM,12/10/2010 11:53:06 AM,12/10/2010 12:08:56 PM,Code 2 Transport,12/10/2010 12:44:15 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,,1,PRIVATE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",103440167-KM01 -102960129,E15,10094384,Medical Incident,10/23/2010,10/23/2010,10/23/2010 11:07:06 AM,10/23/2010 11:07:32 AM,10/23/2010 11:07:55 AM,10/23/2010 11:08:39 AM,10/23/2010 11:10:12 AM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 11:17:05 AM,500 Block of NIAGARA AVE,SF,94112,B09,15,8312,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7199678711509, -122.448978601482)",102960129-E15 -160561427,85,16022345,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:03:30 AM,02/25/2016 11:05:17 AM,02/25/2016 11:05:34 AM,02/25/2016 11:05:48 AM,02/25/2016 11:31:51 AM,02/25/2016 11:31:52 AM,02/25/2016 11:52:38 AM,Code 2 Transport,02/25/2016 01:04:10 PM,0 Block of LAPHAM WAY,San Francisco,94112,B09,43,6236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7093116547795, -122.428696423047)",160561427-85 -123160174,T15,12105156,Structure Fire,11/11/2012,11/11/2012,11/11/2012 12:51:38 PM,11/11/2012 12:51:38 PM,11/11/2012 12:53:02 PM,11/11/2012 12:54:04 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/11/2012 12:54:47 PM,MOSCOW ST/ITALY AV,SF,94134,B09,43,6161,3,3,3,false,Alarm,1,TRUCK,3,9,11,Excelsior,"(37.7150382199173, -122.432323401646)",123160174-T15 -130040167,B02,13001333,Alarms,01/04/2013,01/04/2013,01/04/2013 11:06:08 AM,01/04/2013 11:07:24 AM,01/04/2013 11:07:33 AM,01/04/2013 11:09:43 AM,01/04/2013 11:12:19 AM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Fire,01/04/2013 11:16:16 AM,700 Block of FULTON ST,SF,94102,B05,5,3521,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",130040167-B02 -112780278,B01,11092108,Structure Fire,10/05/2011,10/05/2011,10/05/2011 05:49:33 PM,10/05/2011 05:50:26 PM,10/05/2011 05:50:49 PM,10/05/2011 05:51:49 PM,10/05/2011 05:54:41 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 05:58:35 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,,1,CHIEF,4,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",112780278-B01 -112990038,T10,11099082,Structure Fire,10/26/2011,10/25/2011,10/26/2011 05:03:32 AM,10/26/2011 05:04:22 AM,10/26/2011 05:05:19 AM,10/26/2011 05:07:45 AM,10/26/2011 05:11:28 AM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/26/2011 05:31:31 AM,600 Block of 6TH AVE,SF,94118,B07,31,7123,3,3,3,false,,1,TRUCK,5,7,1,Inner Richmond,"(37.776298721061, -122.464012148208)",112990038-T10 -111270162,KM12,11042026,Medical Incident,05/07/2011,05/07/2011,05/07/2011 12:54:00 PM,05/07/2011 12:54:25 PM,05/07/2011 12:54:50 PM,05/07/2011 12:55:12 PM,05/07/2011 12:59:00 PM,05/07/2011 01:11:27 PM,05/07/2011 01:52:43 PM,Code 2 Transport,05/07/2011 02:09:51 PM,1600 Block of BAY SHORE BLVD,SF,94124,B10,44,6542,2,2,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7220922733519, -122.400087817543)",111270162-KM12 -112610325,81,11086272,Medical Incident,09/18/2011,09/18/2011,09/18/2011 08:38:54 PM,09/18/2011 08:40:46 PM,09/18/2011 08:40:57 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,04/25/2016 02:02:36 PM,1800 Block of 25TH ST,SF,94107,B10,37,2615,1,3,3,true,,1,MEDIC,4,10,10,Potrero Hill,"(37.7523071859772, -122.397488168993)",112610325-81 -160753435,AM12,16029869,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:49:04 PM,03/15/2016 07:49:04 PM,03/15/2016 07:49:17 PM,03/15/2016 07:49:47 PM,03/15/2016 08:28:12 PM,03/15/2016 08:28:15 PM,03/15/2016 08:43:34 PM,Code 2 Transport,03/15/2016 09:29:07 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160753435-AM12 -111440300,E10,11047954,Medical Incident,05/24/2011,05/24/2011,05/24/2011 06:52:36 PM,05/24/2011 06:54:01 PM,05/24/2011 06:54:15 PM,05/24/2011 06:56:35 PM,05/24/2011 06:58:27 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/24/2011 07:57:22 PM,SACRAMENTO ST/CHERRY ST,SF,94118,B07,10,4441,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7869282192113, -122.45687451949)",111440300-E10 -160351657,92,16013816,Medical Incident,02/04/2016,02/04/2016,02/04/2016 12:16:18 PM,02/04/2016 12:16:23 PM,02/04/2016 12:17:03 PM,02/04/2016 12:17:21 PM,02/04/2016 12:19:40 PM,02/04/2016 12:42:02 PM,02/04/2016 12:51:13 PM,Code 2 Transport,02/04/2016 01:40:30 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160351657-92 -103230039,B04,10103366,Alarms,11/19/2010,11/18/2010,11/19/2010 04:48:55 AM,11/19/2010 04:50:44 AM,11/19/2010 04:51:10 AM,11/19/2010 04:52:39 AM,11/19/2010 04:54:58 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/19/2010 05:08:28 AM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",103230039-B04 -160812745,63,16032282,Medical Incident,03/21/2016,03/21/2016,03/21/2016 05:03:36 PM,03/21/2016 05:05:06 PM,03/21/2016 05:06:10 PM,03/21/2016 05:06:23 PM,03/21/2016 05:16:28 PM,03/21/2016 05:37:07 PM,03/21/2016 06:02:54 PM,Code 2 Transport,03/21/2016 06:40:23 PM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160812745-63 -120810306,KM07,12026987,Medical Incident,03/21/2012,03/21/2012,03/21/2012 06:03:58 PM,03/21/2012 06:05:00 PM,03/21/2012 06:05:23 PM,03/21/2012 06:06:04 PM,03/21/2012 06:08:33 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Unable to Locate,03/21/2012 06:09:38 PM,FRANKLIN ST/GEARY BL,SF,94109,B04,3,3222,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7854822436864, -122.423027555652)",120810306-KM07 -132640215,T01,13089528,Gas Leak (Natural and LP Gases),09/21/2013,09/21/2013,09/21/2013 12:39:19 PM,09/21/2013 12:40:28 PM,09/21/2013 12:41:03 PM,09/21/2013 12:43:06 PM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Other,09/21/2013 12:45:40 PM,500 Block of POWELL ST,SF,94108,B01,2,1361,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7895480762148, -122.408590897717)",132640215-T01 -160673438,AM14,16026930,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:31:53 PM,03/07/2016 10:31:53 PM,03/07/2016 10:32:20 PM,03/07/2016 10:32:51 PM,03/07/2016 10:44:27 PM,03/07/2016 11:03:14 PM,03/07/2016 11:29:34 PM,Code 2 Transport,03/07/2016 11:52:26 PM,FRANKLIN ST/HAYES ST,San Francisco,94102,B02,36,3213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7770909730691, -122.421330432788)",160673438-AM14 -140790295,E02,14026808,Medical Incident,03/20/2014,03/20/2014,03/20/2014 05:23:53 PM,03/20/2014 05:24:25 PM,03/20/2014 05:30:50 PM,03/20/2014 05:30:50 PM,03/20/2014 05:30:50 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,No Merit,03/20/2014 05:37:50 PM,SPEAR ST/MARKET ST,SAN FRANCISCO,94105,B01,13,1113,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",140790295-E02 -133440261,E08,13116717,Medical Incident,12/10/2013,12/10/2013,12/10/2013 02:54:43 PM,12/10/2013 02:56:20 PM,12/10/2013 02:58:31 PM,12/10/2013 02:59:58 PM,12/10/2013 03:07:45 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 03:12:47 PM,700 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",133440261-E08 -130510130,E07,13017218,Medical Incident,02/20/2013,02/20/2013,02/20/2013 10:25:47 AM,02/20/2013 10:27:02 AM,02/20/2013 10:32:08 AM,02/20/2013 10:32:08 AM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Other,02/20/2013 10:34:23 AM,900 Block of ALABAMA ST,SF,94110,B06,7,545,3,2,2,true,Non Life-threatening,1,ENGINE,4,6,9,Mission,"(37.7566821047653, -122.41141748085)",130510130-E07 -103190258,E36,10102307,Medical Incident,11/15/2010,11/15/2010,11/15/2010 03:33:25 PM,11/15/2010 03:33:56 PM,11/15/2010 03:34:12 PM,11/15/2010 03:35:42 PM,11/15/2010 03:37:22 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 03:45:54 PM,OTIS ST/GOUGH ST,SF,94103,B02,36,5125,3,3,3,false,,1,ENGINE,1,2,6,Mission,"(37.7717702499037, -122.420344369487)",103190258-E36 -120210125,92,12007066,Medical Incident,01/21/2012,01/21/2012,01/21/2012 07:59:04 AM,01/21/2012 08:01:11 AM,01/21/2012 08:03:18 AM,01/21/2012 08:03:29 AM,01/21/2012 08:15:20 AM,01/21/2012 08:30:09 AM,01/21/2012 08:37:59 AM,Code 2 Transport,01/21/2012 09:05:39 AM,BAYSHORE BL/HELENA ST,SF,94134,B10,42,6364,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7363086049464, -122.406703835668)",120210125-92 -133570310,E37,13121475,Citizen Assist / Service Call,12/23/2013,12/23/2013,12/23/2013 07:39:30 PM,12/23/2013 07:42:06 PM,12/23/2013 07:42:46 PM,12/23/2013 07:43:57 PM,12/23/2013 07:46:05 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 08:00:20 PM,1700 Block of 25TH ST,SF,94107,B10,37,2614,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7523945846734, -122.396035863128)",133570310-E37 -110530129,E08,11017474,Medical Incident,02/22/2011,02/22/2011,02/22/2011 11:10:56 AM,02/22/2011 11:12:09 AM,02/22/2011 11:12:23 AM,02/22/2011 11:13:23 AM,02/22/2011 11:15:32 AM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 11:21:09 AM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",110530129-E08 -133070161,KM12,13104363,Medical Incident,11/03/2013,11/03/2013,11/03/2013 11:36:04 AM,11/03/2013 11:36:21 AM,11/03/2013 11:36:43 AM,11/03/2013 11:37:58 AM,11/03/2013 11:46:53 AM,11/03/2013 11:53:49 AM,11/03/2013 12:21:57 PM,Code 2 Transport,11/03/2013 12:38:49 PM,20TH ST/3RD ST,SF,94107,B03,29,2466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",133070161-KM12 -131170129,T05,13039309,Alarms,04/27/2013,04/27/2013,04/27/2013 10:51:54 AM,04/27/2013 10:53:25 AM,04/27/2013 10:53:36 AM,04/27/2013 10:55:25 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/27/2013 11:03:42 AM,1700 Block of OFARRELL ST,SF,94115,B04,5,3623,3,3,3,false,Alarm,1,TRUCK,3,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",131170129-T05 -140780067,88,14026295,Medical Incident,03/19/2014,03/18/2014,03/19/2014 07:07:40 AM,03/19/2014 07:08:48 AM,03/19/2014 07:09:01 AM,03/19/2014 07:09:41 AM,03/19/2014 07:14:57 AM,03/19/2014 07:43:36 AM,03/19/2014 07:43:37 AM,Code 2 Transport,03/19/2014 08:16:55 AM,100 Block of CAPP ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",140780067-88 -120570166,AM06,12018789,Medical Incident,02/26/2012,02/26/2012,02/26/2012 11:26:19 AM,02/26/2012 11:28:03 AM,02/26/2012 11:28:23 AM,02/26/2012 11:29:32 AM,02/26/2012 11:40:37 AM,02/26/2012 11:57:34 AM,02/26/2012 12:18:49 PM,Code 2 Transport,02/26/2012 01:25:14 PM,0 Block of STEVENSON ST,SF,94105,B03,1,2144,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7893540721016, -122.400032359721)",120570166-AM06 -160751712,77,16029710,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:43:30 PM,03/15/2016 12:44:51 PM,03/15/2016 12:45:12 PM,03/15/2016 12:45:40 PM,03/15/2016 01:16:45 PM,03/15/2016 01:16:48 PM,03/15/2016 01:39:28 PM,Code 2 Transport,03/15/2016 02:16:13 PM,100 Block of CANYON DR,San Francisco,94112,B09,43,6235,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7090926289518, -122.431337133991)",160751712-77 -160741109,KM02,16029269,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:57:28 AM,03/14/2016 09:58:38 AM,03/14/2016 09:59:27 AM,03/14/2016 09:59:57 AM,03/14/2016 10:14:25 AM,03/14/2016 10:14:27 AM,03/14/2016 10:32:52 AM,Code 2 Transport,03/14/2016 10:57:28 AM,MARKET ST/CALIFORNIA ST,San Francisco,94105,B01,13,1113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7931042858925, -122.396312555212)",160741109-KM02 -103050096,KM12,10097421,Medical Incident,11/01/2010,10/31/2010,11/01/2010 07:28:44 AM,11/01/2010 07:30:30 AM,11/01/2010 07:58:44 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,04/25/2016 02:07:49 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,false,,1,PRIVATE,4,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",103050096-KM12 -160432663,KM06,16017385,Medical Incident,02/12/2016,02/12/2016,02/12/2016 04:56:04 PM,02/12/2016 04:56:26 PM,02/12/2016 04:56:52 PM,02/12/2016 04:57:29 PM,02/12/2016 05:07:12 PM,02/12/2016 05:24:18 PM,02/12/2016 05:37:01 PM,Code 2 Transport,02/12/2016 06:06:24 PM,TAYLOR ST/EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",160432663-KM06 -132370051,T03,13079839,Alarms,08/25/2013,08/24/2013,08/25/2013 03:05:33 AM,08/25/2013 03:06:51 AM,08/25/2013 03:07:12 AM,08/25/2013 03:09:38 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,04/25/2016 01:51:08 PM,1300 Block of VAN NESS AVE,SF,94109,B04,3,3156,3,3,3,false,Alarm,1,TRUCK,3,4,3,Nob Hill,"(37.7882889208706, -122.421732731473)",132370051-T03 -131860393,67,13063607,Medical Incident,07/05/2013,07/05/2013,07/05/2013 09:38:19 PM,07/05/2013 09:38:38 PM,07/05/2013 09:38:54 PM,07/05/2013 09:39:03 PM,07/05/2013 09:46:59 PM,07/05/2013 10:13:54 PM,07/05/2013 10:27:28 PM,Code 2 Transport,07/05/2013 10:50:41 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",131860393-67 -122750219,KM12,12090765,Medical Incident,10/01/2012,10/01/2012,10/01/2012 01:52:58 PM,10/01/2012 01:55:14 PM,10/01/2012 01:55:38 PM,10/01/2012 01:56:22 PM,04/25/2016 01:56:31 PM,04/25/2016 01:56:31 PM,04/25/2016 01:56:31 PM,Other,04/25/2016 01:56:31 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7803475492385, -122.406487967809)",122750219-KM12 -160841485,54,16033343,Medical Incident,03/24/2016,03/24/2016,03/24/2016 11:10:16 AM,03/24/2016 11:10:16 AM,03/24/2016 11:10:59 AM,03/24/2016 11:13:33 AM,03/24/2016 11:16:06 AM,03/24/2016 11:35:22 AM,03/24/2016 12:06:13 PM,Code 2 Transport,03/24/2016 12:51:42 PM,400 Block of TEHAMA ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.78023451932, -122.405564838884)",160841485-54 -123590063,E02,12120077,Alarms,12/24/2012,12/23/2012,12/24/2012 06:23:27 AM,12/24/2012 06:25:42 AM,12/24/2012 06:25:58 AM,12/24/2012 06:29:26 AM,12/24/2012 06:30:59 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 06:35:29 AM,500 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7910048906559, -122.407192484843)",123590063-E02 -111640095,E38,11054063,Structure Fire,06/13/2011,06/13/2011,06/13/2011 08:39:01 AM,06/13/2011 08:39:01 AM,06/13/2011 08:39:23 AM,06/13/2011 08:40:22 AM,06/13/2011 08:43:05 AM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/13/2011 08:46:28 AM,2700 Block of CALIFORNIA ST,SF,94115,B04,38,412,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7881185452243, -122.439595812264)",111640095-E38 -160870951,57,16034506,Medical Incident,03/27/2016,03/27/2016,03/27/2016 08:31:20 AM,03/27/2016 08:33:49 AM,03/27/2016 08:34:03 AM,03/27/2016 08:34:35 AM,03/27/2016 08:37:16 AM,03/27/2016 08:46:19 AM,03/27/2016 09:13:35 AM,Code 2 Transport,03/27/2016 09:21:10 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7627519882568, -122.42160967399)",160870951-57 -160261254,56,16010254,Medical Incident,01/26/2016,01/26/2016,01/26/2016 10:14:02 AM,01/26/2016 10:14:02 AM,01/26/2016 10:14:12 AM,01/26/2016 10:15:08 AM,01/26/2016 10:26:55 AM,01/26/2016 10:48:52 AM,01/26/2016 11:06:52 AM,Code 2 Transport,01/26/2016 11:57:42 AM,0 Block of BURLWOOD DR,San Francisco,94127,B09,39,8251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7347598143379, -122.454363730782)",160261254-56 -130260239,E13,13009022,Medical Incident,01/26/2013,01/26/2013,01/26/2013 03:41:48 PM,01/26/2013 03:42:03 PM,01/26/2013 03:42:23 PM,01/26/2013 03:43:28 PM,01/26/2013 03:45:03 PM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/26/2013 03:50:43 PM,BEALE ST/MARKET ST,SF,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,Financial District/South Beach,"(37.7924055206042, -122.397383447066)",130260239-E13 -160123189,85,16004904,Medical Incident,01/12/2016,01/12/2016,01/12/2016 07:08:50 PM,01/12/2016 07:11:51 PM,01/12/2016 07:25:54 PM,01/12/2016 07:26:04 PM,01/12/2016 07:38:03 PM,01/12/2016 07:46:00 PM,01/12/2016 08:03:38 PM,Code 2 Transport,01/12/2016 08:37:40 PM,DORE ST/BRYANT ST,San Francisco,94103,B03,29,2333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7708202419377, -122.409134369165)",160123189-85 -160511365,89,16020442,Medical Incident,02/20/2016,02/20/2016,02/20/2016 11:44:17 AM,02/20/2016 11:44:53 AM,02/20/2016 11:47:31 AM,02/20/2016 11:47:46 AM,02/20/2016 12:01:08 PM,02/20/2016 12:09:25 PM,02/20/2016 12:21:13 PM,Code 2 Transport,02/20/2016 01:06:48 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160511365-89 -140040233,KM10,14001493,Medical Incident,01/04/2014,01/04/2014,01/04/2014 03:25:05 PM,01/04/2014 03:26:11 PM,01/04/2014 03:26:31 PM,01/04/2014 03:27:17 PM,01/04/2014 03:31:45 PM,01/04/2014 03:48:33 PM,01/04/2014 04:07:27 PM,Code 2 Transport,01/04/2014 04:31:42 PM,900 Block of HURON AVE,SF,94112,B09,33,8354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7097377270817, -122.452626148465)",140040233-KM10 -120070342,E08,12002558,Alarms,01/07/2012,01/07/2012,01/07/2012 09:14:49 PM,01/07/2012 09:16:12 PM,01/07/2012 09:18:08 PM,01/07/2012 09:19:19 PM,01/07/2012 09:22:00 PM,04/25/2016 02:00:44 PM,04/25/2016 02:00:44 PM,Other,01/07/2012 09:30:01 PM,800 Block of THE EMBARCADERO,SF,94111,B03,35,940,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",120070342-E08 -132040219,RC2,13069124,Medical Incident,07/23/2013,07/23/2013,07/23/2013 02:49:37 PM,07/23/2013 02:51:22 PM,07/23/2013 02:53:20 PM,04/25/2016 01:51:40 PM,07/23/2013 03:00:02 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 03:19:18 PM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,2,Presidio,"(37.8012720767056, -122.453377012346)",132040219-RC2 -122770056,RS1,12091424,Water Rescue,10/03/2012,10/02/2012,10/03/2012 06:02:46 AM,10/03/2012 06:02:47 AM,10/03/2012 06:03:55 AM,10/03/2012 06:06:49 AM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 06:12:57 AM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,3,3,3,false,Fire,1,RESCUE SQUAD,7,1,3,North Beach,"(37.8084350175869, -122.410774214375)",122770056-RS1 -122260184,RC2,12074916,Medical Incident,08/13/2012,08/13/2012,08/13/2012 12:09:20 PM,08/13/2012 12:12:19 PM,08/13/2012 12:12:32 PM,04/25/2016 01:57:15 PM,08/13/2012 12:15:04 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 12:22:47 PM,4900 Block of CALIFORNIA ST,SF,94118,B07,31,7147,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,7,1,Inner Richmond,"(37.7846034684534, -122.470448587211)",122260184-RC2 -140130360,T13,14004613,Structure Fire,01/13/2014,01/13/2014,01/13/2014 09:15:22 PM,01/13/2014 09:15:22 PM,01/13/2014 09:15:40 PM,01/13/2014 09:16:50 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Fire,01/13/2014 09:32:31 PM,GRANT AV/CLAY ST,SF,94108,B01,13,1313,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7942636257508, -122.406304988112)",140130360-T13 -102760400,60,10087925,Medical Incident,10/03/2010,10/03/2010,10/03/2010 11:48:48 PM,10/03/2010 11:49:44 PM,10/03/2010 11:49:52 PM,10/03/2010 11:50:04 PM,10/04/2010 12:04:47 AM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Patient Declined Transport,10/04/2010 12:34:46 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",102760400-60 -160911103,KM01,16036020,Medical Incident,03/31/2016,03/31/2016,03/31/2016 10:10:08 AM,03/31/2016 10:12:12 AM,03/31/2016 10:12:44 AM,03/31/2016 10:12:44 AM,03/31/2016 10:20:29 AM,03/31/2016 10:37:07 AM,03/31/2016 10:58:45 AM,Code 2 Transport,03/31/2016 11:34:59 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160911103-KM01 -120360090,87,12011917,Medical Incident,02/05/2012,02/04/2012,02/05/2012 06:27:06 AM,02/05/2012 06:27:44 AM,02/05/2012 06:28:03 AM,02/05/2012 06:28:24 AM,02/05/2012 06:34:48 AM,02/05/2012 06:56:17 AM,02/05/2012 07:20:14 AM,Code 2 Transport,02/05/2012 07:42:50 AM,800 Block of 46TH AVE,SF,94121,B07,34,7277,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7724779182768, -122.506684203589)",120360090-87 -132530345,T10,13085623,Structure Fire,09/10/2013,09/10/2013,09/10/2013 09:38:42 PM,09/10/2013 09:40:50 PM,09/10/2013 09:40:56 PM,09/10/2013 09:42:14 PM,09/10/2013 09:43:24 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 09:59:15 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",132530345-T10 -112480168,E03,11081774,Medical Incident,09/05/2011,09/05/2011,09/05/2011 12:00:55 PM,09/05/2011 12:01:36 PM,09/05/2011 12:02:03 PM,09/05/2011 12:03:13 PM,09/05/2011 12:03:21 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Patient Declined Transport,09/05/2011 12:10:56 PM,CEDAR ST/LARKIN ST,SF,94109,B04,3,1641,2,2,2,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7865659835783, -122.418178854944)",112480168-E03 -130420139,E05,13014289,Medical Incident,02/11/2013,02/11/2013,02/11/2013 11:34:43 AM,02/11/2013 11:35:31 AM,02/11/2013 11:35:41 AM,02/11/2013 11:36:22 AM,02/11/2013 11:38:06 AM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,No Merit,02/11/2013 11:41:53 AM,700 Block of MCALLISTER ST,SF,94102,B02,5,3316,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.779520032299, -122.425195823386)",130420139-E05 -120410330,E13,12013790,Administrative,02/10/2012,02/10/2012,02/10/2012 07:41:49 PM,02/10/2012 07:41:52 PM,02/10/2012 07:42:29 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 07:43:09 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",120410330-E13 -121550007,E26,12051165,Medical Incident,06/03/2012,06/02/2012,06/03/2012 12:19:15 AM,06/03/2012 12:22:34 AM,06/03/2012 12:24:53 AM,06/03/2012 12:27:36 AM,06/03/2012 12:30:41 AM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/03/2012 12:38:33 AM,100 Block of MANGELS AVE,SF,94131,B09,26,8216,3,3,3,true,Non Life-threatening,1,ENGINE,2,9,8,West of Twin Peaks,"(37.7330459737615, -122.44145226654)",121550007-E26 -111870334,E14,11061950,Medical Incident,07/06/2011,07/06/2011,07/06/2011 08:16:19 PM,07/06/2011 08:16:36 PM,07/06/2011 08:17:39 PM,07/06/2011 08:19:07 PM,07/06/2011 08:21:27 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/06/2011 08:26:31 PM,200 Block of 18TH AVE,SF,94121,B07,31,7162,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.783294686314, -122.477372735277)",111870334-E14 -112440046,E41,11080338,Medical Incident,09/01/2011,08/31/2011,09/01/2011 05:31:56 AM,09/01/2011 05:32:32 AM,09/01/2011 05:32:53 AM,09/01/2011 05:36:03 AM,09/01/2011 05:37:05 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 05:41:47 AM,CLAY ST/POLK ST,SF,94109,B04,41,1634,3,3,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7923832522829, -122.421052874002)",112440046-E41 -121010283,B04,12033564,Alarms,04/10/2012,04/10/2012,04/10/2012 05:44:16 PM,04/10/2012 05:45:06 PM,04/10/2012 05:45:20 PM,04/10/2012 05:47:43 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 05:51:07 PM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",121010283-B04 -103360066,E31,10107397,Medical Incident,12/02/2010,12/01/2010,12/02/2010 07:38:45 AM,12/02/2010 07:39:41 AM,12/02/2010 07:40:04 AM,12/02/2010 07:40:20 AM,12/02/2010 07:42:49 AM,12/02/2010 07:59:56 AM,04/25/2016 02:07:20 PM,Other,12/02/2010 08:26:03 AM,200 Block of 19TH AVE,SF,94121,B07,31,7164,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7832443393406, -122.478442077544)",103360066-E31 -121190141,E05,12039443,Medical Incident,04/28/2012,04/28/2012,04/28/2012 11:35:37 AM,04/28/2012 11:36:44 AM,04/28/2012 11:37:01 AM,04/28/2012 11:37:41 AM,04/28/2012 11:39:11 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 11:47:26 AM,2200 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7843705673053, -122.438841200784)",121190141-E05 -111170095,B09,11038549,Alarms,04/27/2011,04/27/2011,04/27/2011 09:56:19 AM,04/27/2011 09:56:52 AM,04/27/2011 09:56:59 AM,04/27/2011 09:58:01 AM,04/27/2011 10:02:39 AM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 10:10:43 AM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",111170095-B09 -160012434,KM02,16000375,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:09:42 PM,01/01/2016 03:14:29 PM,01/01/2016 03:14:46 PM,01/01/2016 03:17:30 PM,01/01/2016 03:59:02 PM,01/01/2016 03:59:04 PM,01/01/2016 04:24:48 PM,Code 2 Transport,01/01/2016 05:02:18 PM,5600 Block of FULTON ST,San Francisco,94121,B07,14,7243,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7722578492323, -122.492228684689)",160012434-KM02 -121500219,E41,12049777,Medical Incident,05/29/2012,05/29/2012,05/29/2012 03:18:53 PM,05/29/2012 03:18:56 PM,05/29/2012 03:19:10 PM,05/29/2012 03:20:50 PM,05/29/2012 03:22:24 PM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/29/2012 03:24:08 PM,2100 Block of SACRAMENTO ST,SF,94109,B04,38,3326,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.790617450871, -122.428280876807)",121500219-E41 -132840005,77,13096471,Medical Incident,10/11/2013,10/10/2013,10/11/2013 12:24:33 AM,10/11/2013 12:26:24 AM,10/11/2013 12:26:42 AM,10/11/2013 12:27:37 AM,10/11/2013 12:50:58 AM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,No Merit,10/11/2013 12:58:33 AM,ULLOA ST/CLAREMONT BL,SF,94127,B08,39,8573,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7406508984156, -122.465036130555)",132840005-77 -130530392,89,13018094,Medical Incident,02/22/2013,02/22/2013,02/22/2013 11:28:31 PM,02/22/2013 11:29:50 PM,02/22/2013 11:30:43 PM,02/22/2013 11:34:13 PM,02/22/2013 11:37:43 PM,02/22/2013 11:52:12 PM,02/22/2013 11:58:38 PM,Code 2 Transport,02/23/2013 12:30:24 AM,1800 Block of BALBOA ST,SF,94121,B07,14,7171,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7766256276294, -122.478573783403)",130530392-89 -132280409,84,13077148,Medical Incident,08/16/2013,08/16/2013,08/16/2013 11:09:27 PM,08/16/2013 11:11:57 PM,08/16/2013 11:12:51 PM,08/16/2013 11:12:57 PM,08/16/2013 11:20:13 PM,08/16/2013 11:41:34 PM,08/17/2013 12:00:04 AM,Code 2 Transport,08/17/2013 12:39:13 AM,800 Block of NORTH POINT ST,SF,94109,B01,28,1623,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.805662586176, -122.421199675724)",132280409-84 -123080215,KM10,12102422,Medical Incident,11/03/2012,11/03/2012,11/03/2012 03:59:49 PM,11/03/2012 04:01:00 PM,11/03/2012 04:02:04 PM,11/03/2012 04:02:47 PM,11/03/2012 04:11:43 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,No Merit,11/03/2012 04:21:41 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",123080215-KM10 -140170379,T08,14006000,Alarms,01/17/2014,01/17/2014,01/17/2014 11:06:13 PM,01/17/2014 11:07:40 PM,01/17/2014 11:07:54 PM,01/17/2014 11:09:16 PM,01/17/2014 11:12:53 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 11:12:55 PM,700 Block of TENNESSEE ST,SF,94107,B03,29,2465,3,3,3,false,Alarm,1,TRUCK,1,10,10,Potrero Hill,"(37.7623526426806, -122.389601295426)",140170379-T08 -130970253,E01,13032594,Structure Fire,04/07/2013,04/07/2013,04/07/2013 04:32:18 PM,04/07/2013 04:33:02 PM,04/07/2013 04:34:34 PM,04/07/2013 04:34:44 PM,04/07/2013 04:35:03 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 05:18:27 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",130970253-E01 -132390211,85,13080638,Medical Incident,08/27/2013,08/27/2013,08/27/2013 02:06:05 PM,08/27/2013 02:06:29 PM,08/27/2013 02:06:55 PM,08/27/2013 02:07:32 PM,08/27/2013 02:21:46 PM,08/27/2013 02:24:00 PM,08/27/2013 02:34:37 PM,Code 2 Transport,08/27/2013 03:03:13 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",132390211-85 -131200223,88,13040410,Medical Incident,04/30/2013,04/30/2013,04/30/2013 05:12:36 PM,04/30/2013 05:14:57 PM,04/30/2013 05:16:50 PM,04/30/2013 05:16:58 PM,04/30/2013 05:33:40 PM,04/30/2013 06:01:29 PM,04/30/2013 06:30:42 PM,Code 2 Transport,04/30/2013 07:01:14 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",131200223-88 -102640228,RS2,10083582,Medical Incident,09/21/2010,09/21/2010,09/21/2010 02:59:03 PM,09/21/2010 03:04:25 PM,09/21/2010 03:05:17 PM,04/25/2016 02:08:29 PM,09/21/2010 03:05:47 PM,04/25/2016 02:08:29 PM,09/21/2010 03:07:05 PM,Other,09/21/2010 03:10:50 PM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,false,,1,RESCUE SQUAD,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",102640228-RS2 -112790133,63,11092307,Medical Incident,10/06/2011,10/06/2011,10/06/2011 10:54:03 AM,10/06/2011 10:54:37 AM,10/06/2011 10:56:11 AM,10/06/2011 10:56:25 AM,10/06/2011 11:06:31 AM,10/06/2011 11:30:55 AM,10/06/2011 11:39:24 AM,Code 2 Transport,10/06/2011 12:17:19 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,2,2,true,,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",112790133-63 -160622381,AM02,16024747,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:57:39 PM,03/02/2016 02:59:08 PM,03/02/2016 03:00:16 PM,03/02/2016 03:00:58 PM,03/02/2016 03:04:39 PM,03/02/2016 03:27:14 PM,03/02/2016 03:38:49 PM,Code 2 Transport,03/02/2016 04:15:07 PM,0 Block of ALADDIN TER,San Francisco,94133,B01,28,1436,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Russian Hill,"(37.8003907605978, -122.413810263469)",160622381-AM02 -123470091,AP,12115943,Other,12/12/2012,12/12/2012,12/12/2012 08:45:12 AM,12/12/2012 08:45:13 AM,12/12/2012 08:45:13 AM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Fire,12/12/2012 08:45:33 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",123470091-AP -120710173,E02,12023606,Alarms,03/11/2012,03/11/2012,03/11/2012 12:29:09 PM,03/11/2012 12:30:06 PM,03/11/2012 12:30:17 PM,03/11/2012 12:31:25 PM,03/11/2012 12:34:21 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/11/2012 12:39:30 PM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8070220097095, -122.418095295202)",120710173-E02 -113480405,AM10,11115653,Medical Incident,12/14/2011,12/14/2011,12/14/2011 11:32:07 PM,12/14/2011 11:32:57 PM,12/14/2011 11:33:24 PM,12/14/2011 11:34:21 PM,12/14/2011 11:40:24 PM,12/14/2011 11:48:48 PM,12/14/2011 11:54:33 PM,Code 2 Transport,12/15/2011 12:14:40 AM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,false,,1,PRIVATE,2,2,6,South of Market,"(37.7748170645635, -122.412845031536)",113480405-AM10 -140710131,E38,14023921,Structure Fire,03/12/2014,03/12/2014,03/12/2014 09:56:56 AM,03/12/2014 09:56:57 AM,03/12/2014 09:57:09 AM,03/12/2014 09:57:21 AM,03/12/2014 09:59:59 AM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Patient Declined Transport,03/12/2014 10:07:28 AM,LAGUNA ST/CALIFORNIA ST,SAN FRANCISCO,94109,B04,38,3362,3,3,3,false,Alarm,1,ENGINE,1,4,5,Pacific Heights,"(37.7895337395648, -122.428905310397)",140710131-E38 -133190160,B06,13108368,Alarms,11/15/2013,11/15/2013,11/15/2013 10:59:04 AM,11/15/2013 11:01:03 AM,11/15/2013 11:01:11 AM,11/15/2013 11:01:20 AM,11/15/2013 11:05:04 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 11:05:11 AM,2800 Block of MISSION ST,SF,94110,B06,11,558,3,3,3,false,Alarm,1,CHIEF,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",133190160-B06 -121790056,E13,12059507,Alarms,06/27/2012,06/26/2012,06/27/2012 05:03:48 AM,06/27/2012 05:04:53 AM,06/27/2012 05:04:57 AM,06/27/2012 05:07:23 AM,06/27/2012 05:08:55 AM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Fire,06/27/2012 05:13:35 AM,500 Block of KEARNY ST,SF,94104,B01,13,1244,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7931109185713, -122.404447655569)",121790056-E13 -72350111,4700,7067351,,08/23/2007,08/23/2007,08/23/2007 09:34:41 AM,08/23/2007 09:35:19 AM,08/23/2007 09:35:28 AM,04/25/2016 03:38:03 PM,04/25/2016 03:38:03 PM,04/25/2016 03:38:03 PM,04/25/2016 03:38:03 PM,Other,08/23/2007 10:03:48 AM,4TH ST/BRYANT ST,SF,94107,B03,8,2217,3,3,3,false,,1,ADMIN,0,3,6,South of Market,"(37.7795669099357, -122.398059940086)",072350111-4700 -102320013,E39,10072883,Alarms,08/20/2010,08/19/2010,08/20/2010 01:51:09 AM,08/20/2010 01:52:26 AM,08/20/2010 01:52:43 AM,08/20/2010 01:54:09 AM,08/20/2010 01:57:56 AM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 02:18:47 AM,400 Block of WAWONA ST,SF,94132,B08,39,7356,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7375196184662, -122.472621186741)",102320013-E39 -140510235,RS1,14017311,Confined Space / Structure Collapse,02/20/2014,02/20/2014,02/20/2014 02:19:52 PM,02/20/2014 02:20:42 PM,02/20/2014 02:21:15 PM,04/25/2016 01:48:06 PM,02/20/2014 02:24:21 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Other,02/20/2014 02:43:41 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Fire,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7908458791509, -122.396300374008)",140510235-RS1 -120590308,E19,12019529,Medical Incident,02/28/2012,02/28/2012,02/28/2012 07:15:03 PM,02/28/2012 07:16:02 PM,02/28/2012 07:16:09 PM,02/28/2012 07:18:25 PM,02/28/2012 07:19:02 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Other,02/28/2012 07:28:10 PM,300 Block of EUCALYPTUS DR,SF,94132,B08,19,8731,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7310536423783, -122.476383904851)",120590308-E19 -123600029,88,12120386,Medical Incident,12/25/2012,12/24/2012,12/25/2012 03:00:33 AM,12/25/2012 03:01:50 AM,12/25/2012 03:02:18 AM,12/25/2012 03:02:51 AM,12/25/2012 03:05:10 AM,12/25/2012 03:39:54 AM,12/25/2012 03:51:50 AM,Code 2 Transport,12/25/2012 04:21:07 AM,700 Block of LARKIN ST,SF,94109,B04,3,1642,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7849474956973, -122.417785340586)",123600029-88 -160411116,KM08,16016390,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:50:00 AM,02/10/2016 09:52:36 AM,02/10/2016 09:54:30 AM,02/10/2016 09:55:28 AM,02/10/2016 10:19:51 AM,02/10/2016 10:45:10 AM,02/10/2016 11:13:14 AM,Code 2 Transport,02/10/2016 11:39:33 AM,2400 Block of 22ND ST,San Francisco,94110,B10,37,2551,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7569318582039, -122.40598450618)",160411116-KM08 -133530147,E03,13119886,Traffic Collision,12/19/2013,12/19/2013,12/19/2013 11:23:20 AM,12/19/2013 11:23:20 AM,12/19/2013 11:23:20 AM,12/19/2013 11:24:52 AM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 12:18:04 PM,OCTAVIA ST/OAK ST,SF,94102,B02,36,3266,2,2,2,true,Non Life-threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7748247940204, -122.42413649936)",133530147-E03 -121550179,B06,12051314,Alarms,06/03/2012,06/03/2012,06/03/2012 12:44:17 PM,06/03/2012 12:45:24 PM,06/03/2012 12:45:31 PM,06/03/2012 12:47:03 PM,06/03/2012 12:50:26 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 12:57:30 PM,600 Block of DOUGLASS ST,SF,94114,B06,24,5516,3,3,3,false,Alarm,1,CHIEF,2,6,8,Noe Valley,"(37.7538353743995, -122.438672948145)",121550179-B06 -160313214,AM10,16012321,Medical Incident,01/31/2016,01/31/2016,01/31/2016 07:34:45 PM,01/31/2016 07:35:58 PM,01/31/2016 07:40:29 PM,01/31/2016 07:41:19 PM,01/31/2016 07:45:04 PM,01/31/2016 07:52:01 PM,01/31/2016 08:09:53 PM,Code 2 Transport,01/31/2016 08:44:50 PM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",160313214-AM10 -113510428,89,11116692,Medical Incident,12/17/2011,12/17/2011,12/17/2011 11:43:56 PM,12/17/2011 11:44:29 PM,12/17/2011 11:44:59 PM,12/17/2011 11:45:15 PM,12/17/2011 11:47:13 PM,12/18/2011 12:09:22 AM,12/18/2011 12:22:38 AM,Code 2 Transport,12/18/2011 12:52:42 AM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,3,3,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",113510428-89 -160772896,82,16030704,Medical Incident,03/17/2016,03/17/2016,03/17/2016 04:48:34 PM,03/17/2016 04:48:34 PM,03/17/2016 04:48:34 PM,03/17/2016 04:48:34 PM,03/17/2016 04:48:34 PM,03/17/2016 05:02:37 PM,03/17/2016 05:22:33 PM,Code 2 Transport,03/17/2016 05:47:58 PM,15TH ST/POTRERO AV,San Francisco,94103,B99,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7670819828491, -122.407685033247)",160772896-82 -132070160,E37,13070056,Explosion,07/26/2013,07/26/2013,07/26/2013 12:21:49 PM,07/26/2013 12:24:03 PM,07/26/2013 12:26:03 PM,07/26/2013 12:27:18 PM,07/26/2013 12:28:58 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/26/2013 12:31:58 PM,CONNECTICUT ST/WISCONSIN ST,SF,94107,B10,37,2565,3,3,3,false,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7536847460271, -122.398593151785)",132070160-E37 -160862948,AM08,16034284,Medical Incident,03/26/2016,03/26/2016,03/26/2016 06:23:24 PM,03/26/2016 06:24:53 PM,03/26/2016 06:25:25 PM,03/26/2016 06:25:53 PM,03/26/2016 06:37:27 PM,03/26/2016 06:55:37 PM,03/26/2016 07:02:01 PM,Code 2 Transport,03/26/2016 07:42:40 PM,2700 Block of WEBSTER ST,San Francisco,94123,B04,16,3463,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7958921870605, -122.433631822106)",160862948-AM08 -131310355,KM15,13044378,Medical Incident,05/11/2013,05/11/2013,05/11/2013 08:00:04 PM,05/11/2013 08:02:26 PM,05/11/2013 08:08:56 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,04/25/2016 01:52:51 PM,1300 Block of LARKIN ST,SF,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,3,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",131310355-KM15 -140700278,E43,14023691,Structure Fire,03/11/2014,03/11/2014,03/11/2014 04:55:27 PM,03/11/2014 04:56:24 PM,03/11/2014 11:45:31 PM,03/11/2014 11:50:18 PM,03/12/2014 01:49:19 AM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Code 2 Transport,03/12/2014 04:25:31 AM,4TH ST/CHINA BASIN ST,SAN FRANCISCO,94158,B03,8,2231,3,3,3,false,Fire,5,ENGINE,58,3,6,Mission Bay,"(37.7718971758313, -122.391284249119)",140700278-E43 -111690162,E10,11055686,Medical Incident,06/18/2011,06/18/2011,06/18/2011 11:49:10 AM,06/18/2011 11:50:28 AM,06/18/2011 11:50:47 AM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,Other,04/25/2016 02:04:06 PM,3600 Block of CALIFORNIA ST,SF,94118,B07,10,4436,3,3,3,true,,1,ENGINE,3,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",111690162-E10 -133420329,B01,13116091,Alarms,12/08/2013,12/08/2013,12/08/2013 07:06:04 PM,12/08/2013 07:07:54 PM,12/08/2013 07:08:14 PM,12/08/2013 07:10:48 PM,12/08/2013 07:12:55 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/08/2013 07:18:06 PM,2200 Block of LARKIN ST,SF,94109,B01,41,1631,3,3,3,false,Alarm,1,CHIEF,3,1,3,Russian Hill,"(37.7983718644437, -122.420498877705)",133420329-B01 -121490090,55,12049386,Medical Incident,05/28/2012,05/28/2012,05/28/2012 08:13:37 AM,05/28/2012 08:15:28 AM,05/28/2012 08:16:25 AM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/28/2012 08:18:48 AM,1900 Block of 25TH ST,SF,94107,B10,37,2615,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7521976465641, -122.397477711041)",121490090-55 -160030510,61,16001057,Medical Incident,01/03/2016,01/02/2016,01/03/2016 04:32:28 AM,01/03/2016 04:34:31 AM,01/03/2016 04:35:03 AM,01/03/2016 04:35:16 AM,01/03/2016 04:40:56 AM,01/03/2016 04:56:01 AM,01/03/2016 05:24:28 AM,Code 2 Transport,01/03/2016 05:54:02 AM,300 Block of ARGUELLO BLVD,San Francisco,94118,B07,10,7114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7844395880636, -122.459158221689)",160030510-61 -112930384,AM10,11097376,Medical Incident,10/20/2011,10/20/2011,10/20/2011 11:43:41 PM,10/20/2011 11:45:32 PM,10/20/2011 11:45:44 PM,10/20/2011 11:46:24 PM,10/20/2011 11:54:56 PM,10/21/2011 12:11:35 AM,10/21/2011 12:23:48 AM,Code 2 Transport,10/21/2011 12:50:49 AM,700 Block of HAYES ST,SF,94102,B02,5,3522,1,3,3,false,,1,PRIVATE,2,2,5,Hayes Valley,"(37.7760947496614, -122.428722900919)",112930384-AM10 -133420382,E51,13116140,Structure Fire,12/08/2013,12/08/2013,12/08/2013 09:51:38 PM,12/08/2013 09:53:47 PM,12/08/2013 09:54:12 PM,12/08/2013 09:55:42 PM,12/08/2013 09:57:16 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/08/2013 10:23:48 PM,3000 Block of BAKER ST,SF,94123,B04,16,4314,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7990997208922, -122.445999130936)",133420382-E51 -123560073,KM12,12119051,Medical Incident,12/21/2012,12/20/2012,12/21/2012 07:31:14 AM,12/21/2012 07:31:41 AM,12/21/2012 07:31:54 AM,12/21/2012 07:32:46 AM,12/21/2012 07:36:02 AM,12/21/2012 07:58:50 AM,12/21/2012 08:02:55 AM,Code 3 Transport,12/21/2012 08:29:48 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",123560073-KM12 -140970447,T05,14032885,Structure Fire,04/07/2014,04/07/2014,04/07/2014 11:37:51 PM,04/07/2014 11:37:51 PM,04/07/2014 11:38:48 PM,04/07/2014 11:39:59 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Fire,04/07/2014 11:43:04 PM,GOUGH ST/OAK ST,SAN FRANCISCO,94102,B02,36,3266,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7750206954016, -122.42259804367)",140970447-T05 -121740202,E03,12057784,Medical Incident,06/22/2012,06/22/2012,06/22/2012 02:50:03 PM,06/22/2012 02:50:05 PM,06/22/2012 02:50:21 PM,06/22/2012 02:50:35 PM,06/22/2012 02:51:58 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/22/2012 02:58:58 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",121740202-E03 -133390083,E35,13114805,Medical Incident,12/05/2013,12/04/2013,12/05/2013 07:32:24 AM,12/05/2013 07:35:37 AM,12/05/2013 07:36:58 AM,12/05/2013 07:38:02 AM,12/05/2013 07:41:31 AM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 07:44:18 AM,MAIN ST/BRYANT ST,SF,94105,B03,35,2121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868986775116, -122.388779437164)",133390083-E35 -160642367,AM14,16025558,Medical Incident,03/04/2016,03/04/2016,03/04/2016 03:08:41 PM,03/04/2016 03:10:07 PM,03/04/2016 03:10:27 PM,03/04/2016 03:10:52 PM,03/04/2016 03:27:31 PM,03/04/2016 03:38:21 PM,03/04/2016 03:52:29 PM,Code 2 Transport,03/04/2016 04:20:32 PM,0 Block of NICHOLS WAY,San Francisco,94124,B10,17,6573,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7195063566734, -122.387273246924)",160642367-AM14 -103160351,E05,10101423,Alarms,11/12/2010,11/12/2010,11/12/2010 09:35:15 PM,11/12/2010 09:38:17 PM,11/12/2010 09:38:46 PM,11/12/2010 09:39:32 PM,11/12/2010 09:40:48 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,Other,11/12/2010 09:49:13 PM,1100 Block of LAGUNA ST,SF,94115,B02,5,3366,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7813408435344, -122.427318976353)",103160351-E05 -123090043,66,12102618,Medical Incident,11/04/2012,11/03/2012,11/04/2012 01:58:23 AM,11/04/2012 01:00:05 AM,11/04/2012 01:00:43 AM,11/04/2012 01:02:14 AM,11/04/2012 01:10:47 AM,11/04/2012 01:23:03 AM,11/04/2012 01:38:31 AM,Code 2 Transport,11/04/2012 02:09:57 AM,GUERRERO ST/19TH ST,SF,94110,B06,7,5434,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7599673760707, -122.423641307645)",123090043-66 -121110183,KM15,12036718,Medical Incident,04/20/2012,04/20/2012,04/20/2012 12:03:27 PM,04/20/2012 12:05:43 PM,04/20/2012 12:11:40 PM,04/20/2012 12:11:53 PM,04/20/2012 12:18:55 PM,04/20/2012 12:24:13 PM,04/20/2012 12:31:49 PM,Code 2 Transport,04/20/2012 12:47:45 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",121110183-KM15 -160691495,62,16027448,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:46:28 AM,03/09/2016 11:46:28 AM,03/09/2016 11:47:13 AM,03/09/2016 11:47:21 AM,03/09/2016 11:59:38 AM,03/09/2016 12:11:24 PM,03/09/2016 12:16:43 PM,Code 2 Transport,03/09/2016 12:48:55 PM,1100 Block of SCOTT ST,San Francisco,94115,B05,5,4133,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7803259118056, -122.437234296615)",160691495-62 -160302281,85,16011830,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:49:33 PM,01/30/2016 02:51:53 PM,01/30/2016 02:52:29 PM,01/30/2016 02:53:12 PM,01/30/2016 03:27:30 PM,01/30/2016 03:27:31 PM,01/30/2016 03:37:42 PM,Code 2 Transport,01/30/2016 04:00:27 PM,POLK ST/TURK ST,San Francisco,94102,B02,3,3114,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7821692691963, -122.418993274637)",160302281-85 -123450256,E44,12115379,Medical Incident,12/10/2012,12/10/2012,12/10/2012 02:15:34 PM,12/10/2012 02:16:30 PM,12/10/2012 02:16:56 PM,12/10/2012 02:22:12 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,04/25/2016 01:55:22 PM,5600 Block of 3RD ST,SF,94124,B10,17,6537,E,E,3,true,Potentially Life-Threatening,1,ENGINE,8,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",123450256-E44 -160880389,65,16034814,Medical Incident,03/28/2016,03/27/2016,03/28/2016 04:52:05 AM,03/28/2016 04:53:44 AM,03/28/2016 04:55:06 AM,03/28/2016 04:55:14 AM,03/28/2016 05:10:05 AM,03/28/2016 05:39:06 AM,03/28/2016 05:59:41 AM,Code 2 Transport,03/28/2016 06:34:33 AM,1400 Block of MONTGOMERY ST,San Francisco,94133,B01,28,1225,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8024541673033, -122.404584339307)",160880389-65 -111940304,AM18,11064159,Medical Incident,07/13/2011,07/13/2011,07/13/2011 07:43:47 PM,07/13/2011 07:44:28 PM,07/13/2011 07:45:33 PM,07/13/2011 07:46:08 PM,07/13/2011 07:49:58 PM,07/13/2011 07:58:30 PM,07/13/2011 08:09:00 PM,Code 2 Transport,07/13/2011 08:54:54 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",111940304-AM18 -102730030,83,10086560,Medical Incident,09/30/2010,09/29/2010,09/30/2010 02:20:30 AM,09/30/2010 02:21:03 AM,09/30/2010 02:23:23 AM,09/30/2010 02:24:44 AM,09/30/2010 02:37:49 AM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Patient Declined Transport,09/30/2010 03:03:35 AM,LINCOLN WY/35TH AV,SF,94122,B08,23,7564,2,2,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7646861934351, -122.494402492941)",102730030-83 -112830138,71,11093637,Medical Incident,10/10/2011,10/10/2011,10/10/2011 11:28:19 AM,10/10/2011 11:29:09 AM,10/10/2011 11:30:55 AM,10/10/2011 11:31:20 AM,10/10/2011 11:36:00 AM,10/10/2011 12:10:59 PM,10/10/2011 12:11:07 PM,Code 2 Transport,10/10/2011 01:03:09 PM,100 Block of RAE AVE,SF,94112,B09,33,8347,3,3,3,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7111761445996, -122.449516638021)",112830138-71 -160850129,57,16033617,Medical Incident,03/25/2016,03/24/2016,03/25/2016 01:00:02 AM,03/25/2016 01:02:10 AM,03/25/2016 01:03:00 AM,03/25/2016 01:03:20 AM,03/25/2016 01:29:57 AM,03/25/2016 01:30:27 AM,03/25/2016 02:01:48 AM,Code 2 Transport,03/25/2016 02:45:33 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160850129-57 -140500315,E03,14017094,Medical Incident,02/19/2014,02/19/2014,02/19/2014 10:08:27 PM,02/19/2014 10:08:27 PM,02/19/2014 10:08:27 PM,02/19/2014 10:08:27 PM,02/19/2014 10:08:27 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Code 2 Transport,02/19/2014 10:14:29 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",140500315-E03 -160500599,83,16019987,Medical Incident,02/19/2016,02/18/2016,02/19/2016 07:32:27 AM,02/19/2016 07:34:14 AM,02/19/2016 07:34:44 AM,02/19/2016 07:34:53 AM,02/19/2016 07:41:13 AM,02/19/2016 07:48:14 AM,02/19/2016 07:49:53 AM,Code 2 Transport,02/19/2016 08:25:17 AM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.783815387293, -122.432878599409)",160500599-83 -140480324,55,14016478,Medical Incident,02/17/2014,02/17/2014,02/17/2014 09:54:30 PM,02/17/2014 09:56:01 PM,02/17/2014 09:56:48 PM,02/17/2014 09:57:14 PM,02/17/2014 10:12:39 PM,02/17/2014 10:29:12 PM,02/17/2014 10:57:18 PM,Code 2 Transport,02/17/2014 11:35:25 PM,1400 Block of FLOUNDER CT,TI,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8266042052086, -122.374685426441)",140480324-55 -140220180,E51,14007509,Other,01/22/2014,01/22/2014,01/22/2014 12:55:32 PM,01/22/2014 12:56:50 PM,01/22/2014 12:57:11 PM,01/22/2014 12:58:07 PM,01/22/2014 01:01:28 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/22/2014 01:03:32 PM,2100 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,true,Alarm,1,ENGINE,3,4,2,Marina,"(37.8005603246335, -122.438707766533)",140220180-E51 -111200087,86,11039506,Medical Incident,04/30/2011,04/29/2011,04/30/2011 07:21:24 AM,04/30/2011 07:22:16 AM,04/30/2011 07:22:54 AM,04/30/2011 07:23:16 AM,04/30/2011 07:24:23 AM,04/30/2011 07:45:54 AM,04/30/2011 08:11:45 AM,Code 2 Transport,04/30/2011 08:30:42 AM,2500 Block of 17TH AVE,SF,94116,B08,40,7411,3,3,3,true,,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7403477431661, -122.473426697343)",111200087-86 -113480294,KM04,11115550,Medical Incident,12/14/2011,12/14/2011,12/14/2011 05:18:53 PM,12/14/2011 05:19:27 PM,12/14/2011 05:21:11 PM,12/14/2011 05:22:03 PM,12/14/2011 05:39:58 PM,12/14/2011 05:56:08 PM,12/14/2011 06:27:33 PM,Code 2 Transport,12/14/2011 06:48:02 PM,800 Block of HARRISON ST,SF,94107,B03,8,2243,3,2,2,false,,1,PRIVATE,2,3,6,South of Market,"(37.7798728838566, -122.400680947527)",113480294-KM04 -121970066,B02,12065417,Alarms,07/15/2012,07/14/2012,07/15/2012 04:26:37 AM,07/15/2012 04:27:24 AM,07/15/2012 04:27:38 AM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/15/2012 04:30:06 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",121970066-B02 -130440297,E11,13015011,Medical Incident,02/13/2013,02/13/2013,02/13/2013 04:34:34 PM,02/13/2013 04:34:39 PM,02/13/2013 04:37:49 PM,02/13/2013 04:38:39 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,Other,02/13/2013 04:41:35 PM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7563716216308, -122.416574134534)",130440297-E11 -102400008,E06,10075561,Medical Incident,08/28/2010,08/27/2010,08/28/2010 12:16:59 AM,08/28/2010 12:19:47 AM,08/28/2010 12:21:25 AM,08/28/2010 12:22:46 AM,08/28/2010 12:25:36 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Other,08/28/2010 12:26:06 AM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7737629752818, -122.417960394107)",102400008-E06 -120770379,RC1,12025681,Medical Incident,03/17/2012,03/17/2012,03/17/2012 10:39:35 PM,03/17/2012 10:41:06 PM,03/17/2012 10:41:20 PM,03/17/2012 10:46:44 PM,03/17/2012 10:48:13 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/17/2012 10:49:55 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7815374331217, -122.409518341416)",120770379-RC1 -121710058,88,12056654,Medical Incident,06/19/2012,06/18/2012,06/19/2012 06:10:17 AM,06/19/2012 06:11:32 AM,06/19/2012 06:11:49 AM,06/19/2012 06:11:56 AM,06/19/2012 06:20:31 AM,06/19/2012 06:35:46 AM,06/19/2012 06:49:51 AM,Other,06/19/2012 07:13:16 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",121710058-88 -132400016,E11,13080821,Medical Incident,08/28/2013,08/27/2013,08/28/2013 02:05:34 AM,08/28/2013 02:06:11 AM,08/28/2013 02:06:25 AM,08/28/2013 02:07:53 AM,08/28/2013 02:10:39 AM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/28/2013 02:19:40 AM,200 Block of BARTLETT ST,SF,94110,B06,11,5512,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7529745872366, -122.41956241492)",132400016-E11 -110100286,T17,11003395,Odor (Strange / Unknown),01/10/2011,01/10/2011,01/10/2011 04:04:45 PM,01/10/2011 04:07:27 PM,01/10/2011 04:07:52 PM,01/10/2011 04:09:28 PM,01/10/2011 04:11:53 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/10/2011 04:16:58 PM,3RD ST/GILMAN AV,SF,94124,B10,44,6544,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7224316058888, -122.395622760595)",110100286-T17 -160052574,67,16002080,Medical Incident,01/05/2016,01/05/2016,01/05/2016 04:41:52 PM,01/05/2016 04:43:13 PM,01/05/2016 04:43:52 PM,01/05/2016 04:45:58 PM,01/05/2016 05:04:11 PM,01/05/2016 05:24:09 PM,01/05/2016 05:49:24 PM,Code 2 Transport,01/05/2016 05:58:11 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160052574-67 -110460023,59,11015132,Medical Incident,02/15/2011,02/14/2011,02/15/2011 02:39:44 AM,02/15/2011 02:42:07 AM,02/15/2011 02:42:38 AM,02/15/2011 02:43:08 AM,02/15/2011 02:49:16 AM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,No Merit,02/15/2011 02:50:33 AM,2500 Block of MARIPOSA ST,SF,94110,B02,29,5243,1,1,2,true,,1,MEDIC,2,2,10,Mission,"(37.7631695375953, -122.408796075221)",110460023-59 -160710464,KM03,16028094,Medical Incident,03/11/2016,03/10/2016,03/11/2016 05:44:47 AM,03/11/2016 05:47:15 AM,03/11/2016 05:47:38 AM,03/11/2016 05:48:19 AM,03/11/2016 05:54:21 AM,03/11/2016 06:17:14 AM,03/11/2016 06:38:15 AM,Code 2 Transport,03/11/2016 07:12:58 AM,1200 Block of CHESTNUT ST,San Francisco,94109,B01,16,3133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8023311264976, -122.423898591878)",160710464-KM03 -120980278,E36,12032581,Medical Incident,04/07/2012,04/07/2012,04/07/2012 07:10:18 PM,04/07/2012 07:12:24 PM,04/07/2012 07:13:38 PM,04/07/2012 07:14:43 PM,04/25/2016 01:59:17 PM,04/25/2016 01:59:17 PM,04/25/2016 01:59:17 PM,Other,04/07/2012 07:15:44 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",120980278-E36 -120860304,83,12028660,Structure Fire,03/26/2012,03/26/2012,03/26/2012 07:45:42 PM,03/26/2012 07:46:07 PM,03/26/2012 07:46:32 PM,03/26/2012 07:46:44 PM,03/26/2012 07:53:22 PM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 08:14:09 PM,1800 Block of DIVISADERO ST,SF,94115,B04,10,4156,3,3,3,true,Fire,1,MEDIC,10,4,2,Pacific Heights,"(37.7866611138334, -122.440038591399)",120860304-83 -130800088,E38,13026668,Medical Incident,03/21/2013,03/21/2013,03/21/2013 08:54:46 AM,03/21/2013 08:55:42 AM,03/21/2013 08:56:15 AM,03/21/2013 08:56:56 AM,03/21/2013 08:58:48 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 09:11:55 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",130800088-E38 -131680175,B10,13057033,Alarms,06/17/2013,06/17/2013,06/17/2013 01:24:24 PM,06/17/2013 01:25:45 PM,06/17/2013 01:26:08 PM,06/17/2013 01:31:08 PM,06/17/2013 01:31:25 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/17/2013 01:57:12 PM,2200 Block of 23RD ST,SF,94107,B10,37,2556,3,3,3,false,Alarm,1,CHIEF,3,10,10,Potrero Hill,"(37.7544865703941, -122.402068206398)",131680175-B10 -160783036,53,16031118,Medical Incident,03/18/2016,03/18/2016,03/18/2016 05:55:32 PM,03/18/2016 05:59:42 PM,03/18/2016 06:00:10 PM,03/18/2016 06:00:24 PM,03/18/2016 06:14:31 PM,03/18/2016 06:39:14 PM,03/18/2016 06:49:21 PM,Code 2 Transport,03/18/2016 07:26:19 PM,FILLMORE ST/HAIGHT ST,San Francisco,94117,B05,6,3526,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7721082581802, -122.430433920263)",160783036-53 -113130269,92,11104078,Medical Incident,11/09/2011,11/09/2011,11/09/2011 04:52:26 PM,11/09/2011 04:53:21 PM,11/09/2011 04:54:06 PM,11/09/2011 04:54:16 PM,11/09/2011 04:57:24 PM,11/09/2011 05:08:55 PM,11/09/2011 05:13:37 PM,Code 2 Transport,11/09/2011 05:59:34 PM,1700 Block of POST ST,SF,94115,B04,5,3513,3,E,3,true,,1,MEDIC,2,4,5,Japantown,"(37.7854139465586, -122.430564088684)",113130269-92 -120400057,E31,12013234,Traffic Collision,02/09/2012,02/09/2012,02/09/2012 08:02:25 AM,02/09/2012 08:03:01 AM,02/09/2012 08:03:23 AM,02/09/2012 08:04:15 AM,02/09/2012 08:06:54 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 08:24:41 AM,7TH AV/GEARY BL,SF,94118,B07,31,7127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7809654895117, -122.465352868331)",120400057-E31 -130570284,E36,13019258,Alarms,02/26/2013,02/26/2013,02/26/2013 08:07:38 PM,02/26/2013 08:09:21 PM,02/26/2013 08:10:44 PM,02/26/2013 08:12:12 PM,02/26/2013 08:13:52 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 08:21:03 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",130570284-E36 -160092909,89,16003752,Traffic Collision,01/09/2016,01/09/2016,01/09/2016 06:37:38 PM,01/09/2016 06:38:04 PM,01/09/2016 06:38:31 PM,01/09/2016 06:38:38 PM,01/09/2016 06:43:00 PM,01/09/2016 07:05:34 PM,01/09/2016 07:17:13 PM,Code 2 Transport,01/09/2016 07:45:40 PM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160092909-89 -112930344,T18,11097338,Structure Fire,10/20/2011,10/20/2011,10/20/2011 08:49:29 PM,10/20/2011 08:49:29 PM,10/20/2011 08:50:39 PM,10/20/2011 08:52:34 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 08:54:07 PM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",112930344-T18 -110800114,E01,11026322,Medical Incident,03/21/2011,03/21/2011,03/21/2011 09:31:55 AM,03/21/2011 09:32:40 AM,03/21/2011 09:33:45 AM,03/21/2011 09:36:01 AM,03/21/2011 09:39:36 AM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 09:43:25 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",110800114-E01 -160023233,60,16000926,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:05:46 PM,01/02/2016 09:07:10 PM,01/02/2016 09:09:28 PM,01/02/2016 09:09:58 PM,01/02/2016 09:23:31 PM,01/02/2016 09:33:53 PM,01/02/2016 09:51:12 PM,Code 2 Transport,01/02/2016 10:24:30 PM,3300 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,5623,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7482858766932, -122.417044258324)",160023233-60 -133630216,E28,13123335,Medical Incident,12/29/2013,12/29/2013,12/29/2013 03:47:01 PM,12/29/2013 03:47:20 PM,12/29/2013 03:47:52 PM,12/29/2013 03:48:34 PM,12/29/2013 03:51:26 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/29/2013 03:57:28 PM,0 Block of JEFFERSON ST,SF,94133,B01,28,943,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8084686918657, -122.4133334279)",133630216-E28 -140220316,E29,14007631,Medical Incident,01/22/2014,01/22/2014,01/22/2014 07:29:22 PM,01/22/2014 07:30:31 PM,01/22/2014 07:31:36 PM,01/22/2014 07:32:48 PM,01/22/2014 07:36:26 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/22/2014 07:40:45 PM,0 Block of MCLEA CT,SF,94103,B03,29,2333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7720751846477, -122.408746829681)",140220316-E29 -160522939,KM12,16020937,Medical Incident,02/21/2016,02/21/2016,02/21/2016 07:16:23 PM,02/21/2016 07:17:27 PM,02/21/2016 07:17:40 PM,02/21/2016 07:18:36 PM,02/21/2016 07:27:52 PM,02/21/2016 07:54:04 PM,02/21/2016 08:09:00 PM,Code 2 Transport,02/21/2016 08:49:32 PM,0 Block of MAXWELL CT,San Francisco,94103,B02,6,5226,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7670121091229, -122.423152344232)",160522939-KM12 -160403721,78,16016232,Medical Incident,02/09/2016,02/09/2016,02/09/2016 10:05:50 PM,02/09/2016 10:06:51 PM,02/09/2016 10:08:11 PM,02/09/2016 10:08:27 PM,02/09/2016 10:16:12 PM,02/09/2016 10:31:12 PM,02/09/2016 10:39:11 PM,Code 2 Transport,02/09/2016 11:16:05 PM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160403721-78 -112980033,KM07,11098751,Medical Incident,10/25/2011,10/24/2011,10/25/2011 04:46:32 AM,10/25/2011 04:47:24 AM,10/25/2011 04:49:02 AM,04/25/2016 02:01:59 PM,10/25/2011 05:14:33 AM,10/25/2011 05:14:51 AM,10/25/2011 05:32:00 AM,Code 2 Transport,10/25/2011 04:49:38 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,2,2,2,false,,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",112980033-KM07 -102530193,RC1,10079937,Medical Incident,09/10/2010,09/10/2010,09/10/2010 12:32:31 PM,09/10/2010 12:33:28 PM,09/10/2010 12:33:35 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 12:55:05 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",102530193-RC1 -112130085,67,11070215,Medical Incident,08/01/2011,08/01/2011,08/01/2011 08:38:08 AM,08/01/2011 08:39:10 AM,08/01/2011 08:39:21 AM,08/01/2011 08:40:06 AM,08/01/2011 08:47:47 AM,08/01/2011 09:06:38 AM,08/01/2011 09:24:39 AM,Code 2 Transport,08/01/2011 10:00:52 AM,0 Block of NEBRASKA ST,SF,94110,B10,32,5725,3,3,3,true,,1,MEDIC,2,10,9,Bernal Heights,"(37.7405663924858, -122.410366949718)",112130085-67 -132770012,E05,13093940,Medical Incident,10/04/2013,10/03/2013,10/04/2013 12:49:08 AM,10/04/2013 12:50:02 AM,10/04/2013 12:50:42 AM,04/25/2016 01:50:27 PM,10/04/2013 12:52:26 AM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/04/2013 01:02:32 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",132770012-E05 -103250062,E08,10104077,Medical Incident,11/21/2010,11/20/2010,11/21/2010 04:18:23 AM,11/21/2010 04:18:55 AM,11/21/2010 04:19:16 AM,11/21/2010 04:20:41 AM,11/21/2010 04:23:55 AM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,11/21/2010 04:27:35 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103250062-E08 -103210105,68,10102831,Medical Incident,11/17/2010,11/17/2010,11/17/2010 08:53:05 AM,11/17/2010 08:53:21 AM,11/17/2010 08:53:50 AM,11/17/2010 08:56:01 AM,11/17/2010 09:13:54 AM,04/25/2016 02:07:33 PM,04/25/2016 02:07:33 PM,Patient Declined Transport,11/17/2010 09:19:16 AM,1700 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,2,2,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",103210105-68 -132350206,E08,13079325,Administrative,08/23/2013,08/23/2013,08/23/2013 01:45:15 PM,08/23/2013 01:45:19 PM,08/23/2013 01:45:34 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/23/2013 01:46:17 PM,0 Block of BLUXOME ST,SF,94107,B03,8,2223,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",132350206-E08 -122400349,93,12079579,HazMat,08/27/2012,08/27/2012,08/27/2012 08:33:38 PM,08/27/2012 08:33:38 PM,08/27/2012 08:34:11 PM,08/27/2012 08:37:01 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,04/25/2016 01:57:02 PM,Other,08/27/2012 08:42:15 PM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,true,Alarm,1,MEDIC,4,10,10,Potrero Hill,"(37.7572927810101, -122.395771897062)",122400349-93 -132170273,E07,13073378,Medical Incident,08/05/2013,08/05/2013,08/05/2013 05:30:02 PM,08/05/2013 05:31:31 PM,08/05/2013 05:32:21 PM,08/05/2013 05:34:33 PM,08/05/2013 05:36:27 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 06:10:20 PM,3300 Block of 26TH ST,SF,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.74906765286, -122.416778466557)",132170273-E07 -113500071,85,11116028,Structure Fire,12/16/2011,12/16/2011,12/16/2011 08:09:56 AM,12/16/2011 08:11:26 AM,12/16/2011 08:11:43 AM,12/16/2011 08:12:02 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/16/2011 08:16:50 AM,25TH AV/CALIFORNIA ST,SF,94121,B07,14,7214,3,3,3,true,,1,MEDIC,9,7,1,Outer Richmond,"(37.7838822347168, -122.485010943843)",113500071-85 -120100001,71,12003326,Medical Incident,01/10/2012,01/09/2012,01/10/2012 12:00:28 AM,01/10/2012 12:01:15 AM,01/10/2012 12:01:28 AM,01/10/2012 12:02:02 AM,01/10/2012 12:06:17 AM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Against Medical Advice,01/10/2012 12:59:24 AM,2200 Block of CLAY ST,SF,94115,B04,38,3361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7911798396384, -122.430081084266)",120100001-71 -112350358,E38,11077695,Medical Incident,08/23/2011,08/23/2011,08/23/2011 07:59:31 PM,08/23/2011 08:01:51 PM,08/23/2011 08:05:45 PM,08/23/2011 08:06:54 PM,08/23/2011 08:08:18 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 08:28:49 PM,1600 Block of BUSH ST,SF,94109,B04,38,3255,1,1,2,false,,1,ENGINE,1,4,2,Western Addition,"(37.7881207326796, -122.424404304157)",112350358-E38 -120030095,T10,12000966,Medical Incident,01/03/2012,01/02/2012,01/03/2012 07:56:41 AM,01/03/2012 07:56:52 AM,01/03/2012 07:57:40 AM,01/03/2012 07:59:10 AM,01/03/2012 08:02:09 AM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/03/2012 08:11:28 AM,0 Block of JORDAN AVE,SF,94118,B07,10,4441,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,7,2,Presidio Heights,"(37.7849495594926, -122.456819205112)",120030095-T10 -111920087,T02,11063317,Other,07/11/2011,07/11/2011,07/11/2011 09:08:25 AM,07/11/2011 09:09:02 AM,07/11/2011 09:09:12 AM,07/11/2011 09:10:29 AM,07/11/2011 09:14:30 AM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 10:18:45 AM,2000 Block of LARKIN ST,SF,94109,B01,41,1632,3,3,3,false,,1,TRUCK,1,4,3,Russian Hill,"(37.7965929265297, -122.420281529401)",111920087-T02 -122720279,E42,12089837,Medical Incident,09/28/2012,09/28/2012,09/28/2012 08:37:26 PM,09/28/2012 08:38:03 PM,09/28/2012 08:38:52 PM,09/28/2012 08:40:15 PM,09/28/2012 08:42:15 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/28/2012 08:50:25 PM,400 Block of HAMILTON ST,SF,94134,B10,42,6335,3,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.725501228245, -122.409211492676)",122720279-E42 -121340233,E18,12044657,Medical Incident,05/13/2012,05/13/2012,05/13/2012 05:08:13 PM,05/13/2012 05:10:19 PM,05/13/2012 05:11:31 PM,05/13/2012 05:14:04 PM,05/13/2012 05:16:54 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 05:27:10 PM,1300 Block of 31ST AVE,SF,94122,B08,23,7536,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7620676593975, -122.489849528292)",121340233-E18 -102850456,87,10090962,Medical Incident,10/12/2010,10/12/2010,10/12/2010 10:06:27 PM,10/12/2010 10:07:09 PM,10/12/2010 10:07:32 PM,10/12/2010 10:07:56 PM,10/12/2010 10:12:57 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Patient Declined Transport,10/12/2010 10:31:55 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",102850456-87 -130100222,T07,13003454,Structure Fire,01/10/2013,01/10/2013,01/10/2013 03:40:27 PM,01/10/2013 03:41:07 PM,01/10/2013 03:41:17 PM,01/10/2013 03:42:51 PM,01/10/2013 03:49:37 PM,04/25/2016 01:54:52 PM,04/25/2016 01:54:52 PM,Other,01/10/2013 03:50:03 PM,200 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,false,Alarm,1,TRUCK,8,2,8,Mission,"(37.7671990407506, -122.424452084295)",130100222-T07 -102740384,T12,10087176,Structure Fire,10/01/2010,10/01/2010,10/01/2010 10:44:26 PM,10/01/2010 10:44:26 PM,10/01/2010 10:44:40 PM,10/01/2010 10:45:45 PM,10/01/2010 10:48:07 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 10:48:11 PM,STANYAN ST/FELL ST,SF,94122,B05,12,4554,3,3,3,false,,1,TRUCK,1,5,1,Golden Gate Park,"(37.7719304034998, -122.454083217642)",102740384-T12 -110670246,RS1,11022115,Medical Incident,03/08/2011,03/08/2011,03/08/2011 04:07:42 PM,03/08/2011 04:08:22 PM,03/08/2011 04:09:31 PM,03/08/2011 04:11:34 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 04:13:55 PM,POWELL ST/ELLIS ST,SF,94102,B03,1,1322,3,3,3,true,,1,RESCUE SQUAD,3,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",110670246-RS1 -102950080,AM02,10094001,Traffic Collision,10/22/2010,10/21/2010,10/22/2010 07:07:34 AM,10/22/2010 07:07:34 AM,10/22/2010 07:08:36 AM,10/22/2010 07:09:15 AM,10/22/2010 07:31:27 AM,10/22/2010 07:39:19 AM,10/22/2010 08:22:25 AM,Code 2 Transport,10/22/2010 08:49:46 AM,19TH AV/VICENTE ST,SF,94116,B08,40,7415,2,2,2,false,,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.739325432683, -122.475409073617)",102950080-AM02 -102570020,54,10081072,Medical Incident,09/14/2010,09/13/2010,09/14/2010 02:25:03 AM,09/14/2010 02:29:54 AM,09/14/2010 02:30:10 AM,09/14/2010 02:30:16 AM,09/14/2010 02:33:11 AM,09/14/2010 02:50:25 AM,09/14/2010 03:19:26 AM,Code 2 Transport,09/14/2010 03:47:05 AM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",102570020-54 -140970409,E40,14032852,Medical Incident,04/07/2014,04/07/2014,04/07/2014 09:04:57 PM,04/07/2014 09:07:57 PM,04/07/2014 09:08:14 PM,04/07/2014 09:09:42 PM,04/07/2014 09:11:31 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Code 2 Transport,04/07/2014 09:28:17 PM,2200 Block of 16TH AVE,SAN FRANCISCO,94116,B08,40,7375,,2,2,false,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",140970409-E40 -160310149,KM07,16012019,Medical Incident,01/31/2016,01/30/2016,01/31/2016 12:55:20 AM,01/31/2016 12:56:48 AM,01/31/2016 12:57:46 AM,01/31/2016 01:03:54 AM,01/31/2016 01:03:54 AM,01/31/2016 01:24:20 AM,01/31/2016 01:33:36 AM,Code 2 Transport,01/31/2016 01:54:55 AM,800 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",160310149-KM07 -112990037,89,11099081,Medical Incident,10/26/2011,10/25/2011,10/26/2011 04:56:11 AM,10/26/2011 04:57:14 AM,10/26/2011 04:57:30 AM,10/26/2011 04:58:00 AM,10/26/2011 05:12:04 AM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Gone on Arrival,10/26/2011 05:18:27 AM,800 Block of MISSION ST,SF,94103,B03,1,2213,3,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7842816168857, -122.404614647152)",112990037-89 -120320159,72,12010553,Medical Incident,02/01/2012,02/01/2012,02/01/2012 12:14:59 PM,02/01/2012 12:16:12 PM,02/01/2012 12:16:34 PM,02/01/2012 12:44:12 PM,02/01/2012 12:56:03 PM,02/01/2012 12:56:19 PM,02/01/2012 01:11:30 PM,Code 2 Transport,02/01/2012 01:44:04 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,1,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",120320159-72 -102290021,E03,10071937,Medical Incident,08/17/2010,08/16/2010,08/17/2010 01:27:32 AM,08/17/2010 01:32:10 AM,08/17/2010 01:36:08 AM,08/17/2010 01:37:17 AM,08/17/2010 01:39:28 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/17/2010 01:52:38 AM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.79151461877, -122.424319326849)",102290021-E03 -160682803,61,16027199,Medical Incident,03/08/2016,03/08/2016,03/08/2016 05:34:50 PM,03/08/2016 05:36:28 PM,03/08/2016 05:37:34 PM,03/08/2016 05:37:34 PM,03/08/2016 05:40:43 PM,03/08/2016 05:46:02 PM,03/08/2016 06:03:22 PM,Code 2 Transport,03/08/2016 06:30:14 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7769314520229, -122.399308076553)",160682803-61 -133590246,T07,13122109,Alarms,12/25/2013,12/25/2013,12/25/2013 05:09:53 PM,12/25/2013 05:10:54 PM,12/25/2013 05:10:59 PM,12/25/2013 05:12:55 PM,12/25/2013 05:15:32 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/25/2013 05:17:54 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",133590246-T07 -122260280,83,12075001,Medical Incident,08/13/2012,08/13/2012,08/13/2012 05:10:03 PM,08/13/2012 05:11:14 PM,08/13/2012 05:13:37 PM,08/13/2012 05:14:01 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 05:23:35 PM,400 Block of 7TH ST,SF,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",122260280-83 -160483198,62,16019460,Medical Incident,02/17/2016,02/17/2016,02/17/2016 06:28:04 PM,02/17/2016 06:29:01 PM,02/17/2016 06:29:40 PM,02/17/2016 06:29:52 PM,02/17/2016 06:32:08 PM,02/17/2016 06:47:10 PM,02/17/2016 07:16:21 PM,Code 2 Transport,02/17/2016 07:44:41 PM,1500 Block of NORTH POINT ST,San Francisco,94123,B04,16,3346,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8040848078318, -122.432688436131)",160483198-62 -112170077,E06,11071623,Medical Incident,08/05/2011,08/04/2011,08/05/2011 06:50:53 AM,08/05/2011 06:52:32 AM,08/05/2011 06:52:44 AM,08/05/2011 06:54:22 AM,08/05/2011 06:55:52 AM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 07:08:39 AM,200 Block of STEINER ST,SF,94117,B05,6,3633,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7711888020343, -122.432019614304)",112170077-E06 -113160132,E01,11104968,Structure Fire,11/12/2011,11/12/2011,11/12/2011 12:21:42 PM,11/12/2011 12:21:42 PM,11/12/2011 12:21:49 PM,04/25/2016 02:01:41 PM,11/12/2011 12:25:01 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Fire,11/12/2011 12:25:26 PM,2ND ST/FOLSOM ST,SF,94107,B03,1,2147,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",113160132-E01 -130350181,T07,13011978,Administrative,02/04/2013,02/04/2013,02/04/2013 11:53:03 AM,02/04/2013 11:53:05 AM,02/04/2013 11:53:18 AM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,Other,02/04/2013 11:53:42 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",130350181-T07 -112380353,T18,11078699,Structure Fire,08/26/2011,08/26/2011,08/26/2011 09:42:38 PM,08/26/2011 09:42:38 PM,08/26/2011 09:42:49 PM,08/26/2011 09:43:56 PM,08/26/2011 09:49:12 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 10:00:25 PM,1500 Block of 43RD AVE,SF,94122,B08,23,765,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.757770435301, -122.502447012656)",112380353-T18 -140170157,E31,14005802,Medical Incident,01/17/2014,01/17/2014,01/17/2014 11:35:53 AM,01/17/2014 11:36:41 AM,01/17/2014 11:37:10 AM,01/17/2014 11:38:04 AM,01/17/2014 11:40:44 AM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,Other,01/17/2014 11:53:14 AM,700 Block of 5TH AVE,SF,94118,B07,31,7122,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7745920044375, -122.462675189691)",140170157-E31 -132460320,E36,13083116,Medical Incident,09/03/2013,09/03/2013,09/03/2013 06:34:06 PM,09/03/2013 06:35:27 PM,09/03/2013 06:36:53 PM,09/03/2013 06:37:50 PM,09/03/2013 06:41:35 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/03/2013 06:59:46 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",132460320-E36 -112150076,T01,11070894,Alarms,08/03/2011,08/03/2011,08/03/2011 08:11:34 AM,08/03/2011 08:12:50 AM,08/03/2011 08:13:18 AM,08/03/2011 08:15:29 AM,08/03/2011 08:18:19 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Other,08/03/2011 08:24:01 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7838066631424, -122.409129633669)",112150076-T01 -121490275,E38,12049541,Medical Incident,05/28/2012,05/28/2012,05/28/2012 08:05:44 PM,05/28/2012 08:07:04 PM,05/28/2012 08:07:22 PM,05/28/2012 08:08:21 PM,05/28/2012 08:09:42 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 08:31:56 PM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,1,1,2,true,Non Life-threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",121490275-E38 -110150338,KM15,11005137,Medical Incident,01/15/2011,01/15/2011,01/15/2011 08:31:29 PM,01/15/2011 08:33:05 PM,01/15/2011 08:34:00 PM,01/15/2011 08:34:34 PM,01/15/2011 08:44:21 PM,01/15/2011 09:00:58 PM,01/15/2011 09:22:56 PM,Code 2 Transport,01/15/2011 09:38:07 PM,0 Block of PARKRIDGE DR,SF,94131,B06,24,5283,1,1,2,false,,1,PRIVATE,1,6,8,Twin Peaks,"(37.751152470811, -122.445668704285)",110150338-KM15 -133040356,93,13103412,Medical Incident,10/31/2013,10/31/2013,10/31/2013 08:58:34 PM,10/31/2013 08:58:43 PM,10/31/2013 08:58:53 PM,10/31/2013 08:59:04 PM,10/31/2013 09:10:33 PM,10/31/2013 09:20:40 PM,10/31/2013 09:30:38 PM,Code 2 Transport,10/31/2013 09:47:56 PM,GEARY ST/POWELL ST,SF,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",133040356-93 -112870008,94,11094998,Medical Incident,10/14/2011,10/13/2011,10/14/2011 12:30:43 AM,10/14/2011 12:31:36 AM,10/14/2011 12:32:18 AM,10/14/2011 12:34:02 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 12:36:53 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,MEDIC,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",112870008-94 -111120168,83,11036985,Odor (Strange / Unknown),04/22/2011,04/22/2011,04/22/2011 11:51:14 AM,04/22/2011 11:54:18 AM,04/22/2011 11:55:00 AM,04/22/2011 12:14:03 PM,04/22/2011 12:26:58 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 01:39:17 PM,1900 Block of PAGE ST,SF,94117,B05,12,4553,3,3,3,true,,1,MEDIC,6,5,5,Haight Ashbury,"(37.7702606599781, -122.452901890861)",111120168-83 -113510301,E08,11116574,Medical Incident,12/17/2011,12/17/2011,12/17/2011 04:50:57 PM,12/17/2011 04:51:35 PM,12/17/2011 04:52:52 PM,12/17/2011 04:54:34 PM,12/17/2011 04:56:51 PM,04/25/2016 02:01:06 PM,04/25/2016 02:01:06 PM,Other,12/17/2011 05:01:52 PM,0 Block of MISSION ROCK ST,SF,94158,B03,8,2231,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7731157627784, -122.38857804747)",113510301-E08 -160031307,82,16001156,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:43:21 AM,01/03/2016 11:44:15 AM,01/03/2016 11:47:13 AM,01/03/2016 11:47:34 AM,01/03/2016 11:48:41 AM,01/03/2016 12:26:11 PM,01/03/2016 12:38:08 PM,Code 2 Transport,01/03/2016 01:15:36 PM,0 Block of RED ROCK WAY,San Francisco,94131,B06,26,8167,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",160031307-82 -111760292,T17,11058104,Structure Fire,06/25/2011,06/25/2011,06/25/2011 05:35:11 PM,06/25/2011 05:36:20 PM,06/25/2011 05:36:53 PM,06/25/2011 05:37:49 PM,06/25/2011 05:40:26 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 05:49:27 PM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",111760292-T17 -132680102,81,13090922,Medical Incident,09/25/2013,09/25/2013,09/25/2013 10:01:00 AM,09/25/2013 10:02:56 AM,09/25/2013 10:04:32 AM,09/25/2013 10:04:42 AM,09/25/2013 10:14:11 AM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Patient Declined Transport,09/25/2013 10:40:32 AM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",132680102-81 -160272297,KM04,16010730,Medical Incident,01/27/2016,01/27/2016,01/27/2016 02:59:38 PM,01/27/2016 03:00:46 PM,01/27/2016 03:01:32 PM,01/27/2016 03:01:55 PM,01/27/2016 03:13:12 PM,01/27/2016 03:43:05 PM,01/27/2016 04:09:02 PM,Code 2 Transport,01/27/2016 04:47:34 PM,0 Block of JENNINGS CT,San Francisco,94124,B10,44,6575,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7170822816087, -122.397590008469)",160272297-KM04 -160520521,63,16020693,Medical Incident,02/21/2016,02/20/2016,02/21/2016 03:51:42 AM,02/21/2016 03:52:48 AM,02/21/2016 03:53:05 AM,02/21/2016 03:53:23 AM,02/21/2016 03:55:48 AM,02/21/2016 04:13:34 AM,02/21/2016 04:16:39 AM,Code 3 Transport,02/21/2016 04:48:13 AM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160520521-63 -130310004,E01,13010422,Medical Incident,01/31/2013,01/30/2013,01/31/2013 12:08:46 AM,01/31/2013 12:10:18 AM,01/31/2013 12:10:37 AM,01/31/2013 12:12:06 AM,01/31/2013 12:14:15 AM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 12:20:00 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130310004-E01 -131830029,E03,13062233,Medical Incident,07/02/2013,07/01/2013,07/02/2013 03:35:02 AM,07/02/2013 03:35:59 AM,07/02/2013 03:36:22 AM,07/02/2013 03:38:21 AM,07/02/2013 03:39:42 AM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 03:50:46 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",131830029-E03 -160881361,KM05,16034903,Medical Incident,03/28/2016,03/28/2016,03/28/2016 10:59:53 AM,03/28/2016 10:59:53 AM,03/28/2016 11:00:08 AM,03/28/2016 11:00:27 AM,03/28/2016 11:08:25 AM,03/28/2016 11:13:07 AM,03/28/2016 11:36:21 AM,Code 2 Transport,03/28/2016 12:15:30 PM,200 Block of STAPLES AVE,San Francisco,94112,B09,15,8232,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7291328071593, -122.447707176044)",160881361-KM05 -121530121,B04,12050584,Medical Incident,06/01/2012,06/01/2012,06/01/2012 11:22:24 AM,06/01/2012 11:24:51 AM,06/01/2012 11:25:41 AM,06/01/2012 11:37:39 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 11:42:36 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121530121-B04 -123420539,E32,12114463,Alarms,12/07/2012,12/07/2012,12/07/2012 11:38:15 PM,12/07/2012 11:40:44 PM,12/07/2012 11:40:56 PM,12/07/2012 11:43:27 PM,12/07/2012 11:48:38 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/07/2012 11:59:52 PM,200 Block of COLERIDGE ST,SF,94110,B06,32,5653,3,3,3,true,Alarm,1,ENGINE,3,6,9,Bernal Heights,"(37.74250126057, -122.42041921408)",123420539-E32 -111740206,RC1,11057416,Medical Incident,06/23/2011,06/23/2011,06/23/2011 02:57:25 PM,06/23/2011 02:57:35 PM,06/23/2011 02:58:11 PM,04/25/2016 02:04:01 PM,06/23/2011 03:05:56 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,06/23/2011 03:16:58 PM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,RESCUE CAPTAIN,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",111740206-RC1 -113340013,AM18,11110478,Medical Incident,11/30/2011,11/29/2011,11/30/2011 01:09:44 AM,11/30/2011 01:11:13 AM,11/30/2011 01:11:42 AM,11/30/2011 01:12:11 AM,11/30/2011 01:16:16 AM,11/30/2011 01:31:26 AM,11/30/2011 01:50:54 AM,Other,11/30/2011 02:21:00 AM,2600 Block of MASON ST,SF,94133,B01,28,1344,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8079604704743, -122.414001361661)",113340013-AM18 -160250431,KM03,16009789,Medical Incident,01/25/2016,01/24/2016,01/25/2016 05:13:29 AM,01/25/2016 05:17:22 AM,01/25/2016 05:20:54 AM,01/25/2016 05:21:35 AM,01/25/2016 05:36:29 AM,01/25/2016 05:38:30 AM,01/25/2016 05:55:17 AM,Code 2 Transport,01/25/2016 06:48:06 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",160250431-KM03 -132130216,E08,13072000,Medical Incident,08/01/2013,08/01/2013,08/01/2013 04:33:23 PM,08/01/2013 04:34:09 PM,08/01/2013 04:34:52 PM,08/01/2013 04:36:53 PM,08/01/2013 04:38:37 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 05:00:40 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132130216-E08 -113240301,E03,11107725,Medical Incident,11/20/2011,11/20/2011,11/20/2011 07:28:23 PM,11/20/2011 07:29:01 PM,11/20/2011 07:30:11 PM,11/20/2011 07:31:09 PM,11/20/2011 07:45:03 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 07:46:49 PM,300 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7839735143019, -122.416045465656)",113240301-E03 -121960291,E36,12065285,Other,07/14/2012,07/14/2012,07/14/2012 06:39:59 PM,07/14/2012 06:39:59 PM,07/14/2012 06:39:59 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/14/2012 06:42:24 PM,12TH ST/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7743586748127, -122.420254280324)",121960291-E36 -120310146,E41,12010252,Structure Fire,01/31/2012,01/31/2012,01/31/2012 11:23:06 AM,01/31/2012 11:23:35 AM,01/31/2012 11:23:49 AM,01/31/2012 11:25:03 AM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/31/2012 11:28:56 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Fire,1,ENGINE,7,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",120310146-E41 -130690174,E28,13023034,Medical Incident,03/10/2013,03/10/2013,03/10/2013 01:43:37 PM,03/10/2013 01:44:31 PM,03/10/2013 01:44:43 PM,03/10/2013 01:45:50 PM,03/10/2013 01:47:15 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 01:55:33 PM,900 Block of COLUMBUS AVE,SF,94133,B01,28,1435,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",130690174-E28 -121650211,T05,12054743,Elevator / Escalator Rescue,06/13/2012,06/13/2012,06/13/2012 02:36:42 PM,06/13/2012 02:39:52 PM,06/13/2012 02:40:04 PM,06/13/2012 02:41:08 PM,06/13/2012 02:43:30 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Fire,06/13/2012 02:58:11 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",121650211-T05 -121020085,E20,12033743,Medical Incident,04/11/2012,04/11/2012,04/11/2012 08:36:15 AM,04/11/2012 08:36:57 AM,04/11/2012 08:37:08 AM,04/11/2012 08:38:08 AM,04/11/2012 08:40:48 AM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 08:58:06 AM,0 Block of CITYVIEW WAY,SF,94131,B08,20,5357,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7486095497539, -122.449771571472)",121020085-E20 -121630354,E36,12054192,Alarms,06/11/2012,06/11/2012,06/11/2012 08:19:55 PM,06/11/2012 08:19:55 PM,06/11/2012 08:20:10 PM,06/11/2012 08:21:43 PM,06/11/2012 08:22:49 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 08:25:27 PM,1200 Block of MARKET ST,SF,94103,B02,36,2337,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",121630354-E36 -102590341,78,10081946,Structure Fire,09/16/2010,09/16/2010,09/16/2010 07:01:40 PM,09/16/2010 07:02:10 PM,09/16/2010 07:02:48 PM,09/16/2010 07:03:42 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 07:07:45 PM,1000 Block of BROADWAY,SF,94133,B01,2,1442,3,3,3,true,,1,MEDIC,9,1,3,Nob Hill,"(37.7968985022629, -122.413996618846)",102590341-78 -130740039,85,13024555,Medical Incident,03/15/2013,03/14/2013,03/15/2013 03:38:28 AM,03/15/2013 03:40:11 AM,03/15/2013 03:40:50 AM,03/15/2013 03:41:45 AM,03/15/2013 03:44:57 AM,03/15/2013 04:01:54 AM,03/15/2013 04:12:06 AM,Code 2 Transport,03/15/2013 04:39:10 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",130740039-85 -103240023,67,10103695,Medical Incident,11/20/2010,11/19/2010,11/20/2010 01:40:37 AM,11/20/2010 01:42:02 AM,11/20/2010 01:42:17 AM,11/20/2010 01:43:01 AM,11/20/2010 01:50:03 AM,11/20/2010 02:10:29 AM,11/20/2010 02:41:20 AM,Code 2 Transport,11/20/2010 03:08:37 AM,200 Block of FOLSOM ST,SF,94105,B03,35,2117,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",103240023-67 -122350196,AM06,12077883,Medical Incident,08/22/2012,08/22/2012,08/22/2012 02:28:34 PM,08/22/2012 02:30:52 PM,08/22/2012 02:31:27 PM,08/22/2012 02:31:56 PM,08/22/2012 02:41:40 PM,08/22/2012 02:52:38 PM,08/22/2012 03:19:53 PM,Code 2 Transport,08/22/2012 03:44:33 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",122350196-AM06 -121290255,T17,12042995,Structure Fire,05/08/2012,05/08/2012,05/08/2012 04:11:33 PM,05/08/2012 04:11:33 PM,05/08/2012 04:11:45 PM,05/08/2012 04:12:49 PM,04/25/2016 01:58:47 PM,04/25/2016 01:58:47 PM,04/25/2016 01:58:47 PM,Other,05/08/2012 04:15:40 PM,PAUL AV/EXETER ST,SF,94124,B10,44,6323,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7230361592834, -122.398348115685)",121290255-T17 -123330109,T05,12110603,Medical Incident,11/28/2012,11/28/2012,11/28/2012 09:20:13 AM,11/28/2012 09:20:13 AM,11/28/2012 09:21:15 AM,11/28/2012 09:22:58 AM,11/28/2012 09:23:43 AM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/28/2012 09:24:25 AM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,E,E,3,false,Non Life-threatening,1,TRUCK,1,5,5,Western Addition,"(37.7828124037537, -122.432679112133)",123330109-T05 -160100531,52,16003921,Medical Incident,01/10/2016,01/09/2016,01/10/2016 04:48:14 AM,01/10/2016 04:48:27 AM,01/10/2016 04:48:34 AM,01/10/2016 04:48:44 AM,01/10/2016 04:59:24 AM,01/10/2016 05:04:34 AM,01/10/2016 05:30:52 AM,Code 2 Transport,01/10/2016 05:47:34 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160100531-52 -160790482,AM24,16031301,Medical Incident,03/19/2016,03/18/2016,03/19/2016 04:14:37 AM,03/19/2016 04:17:16 AM,03/19/2016 04:17:36 AM,03/19/2016 04:18:57 AM,03/19/2016 04:31:57 AM,03/19/2016 04:58:39 AM,03/19/2016 05:16:30 AM,Code 2 Transport,03/19/2016 05:46:18 AM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160790482-AM24 -112740077,57,11090521,Medical Incident,10/01/2011,09/30/2011,10/01/2011 05:04:00 AM,10/01/2011 05:04:28 AM,10/01/2011 05:05:00 AM,10/01/2011 05:05:38 AM,10/01/2011 05:08:54 AM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Patient Declined Transport,10/01/2011 05:16:57 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",112740077-57 -131360356,E05,13046015,Medical Incident,05/16/2013,05/16/2013,05/16/2013 05:29:09 PM,05/16/2013 05:30:54 PM,05/16/2013 05:31:11 PM,05/16/2013 05:31:26 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 05:32:29 PM,CALIFORNIA ST/STEINER ST,SF,94115,B04,38,3616,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,2,Pacific Heights,"(37.7886969402203, -122.435485565193)",131360356-E05 -123140298,B09,12104590,Alarms,11/09/2012,11/09/2012,11/09/2012 05:55:32 PM,11/09/2012 05:55:37 PM,11/09/2012 05:55:52 PM,11/09/2012 05:58:07 PM,11/09/2012 06:00:17 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 06:04:09 PM,100 Block of MONTANA ST,SF,94112,B09,33,8373,3,3,3,false,Alarm,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7165620568962, -122.457574442781)",123140298-B09 -121370247,T09,12045567,Structure Fire,05/16/2012,05/16/2012,05/16/2012 01:58:51 PM,05/16/2012 01:58:51 PM,05/16/2012 01:59:16 PM,05/16/2012 02:00:17 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/16/2012 02:02:33 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",121370247-T09 -110600378,54,11019849,Medical Incident,03/01/2011,03/01/2011,03/01/2011 11:43:53 PM,03/01/2011 11:43:53 PM,03/01/2011 11:44:10 PM,03/01/2011 11:44:32 PM,03/01/2011 11:46:23 PM,03/01/2011 11:59:47 PM,03/02/2011 12:20:06 AM,Code 2 Transport,03/02/2011 12:40:05 AM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7497103478042, -122.420361382102)",110600378-54 -160670024,88,16026552,Medical Incident,03/07/2016,03/06/2016,03/07/2016 12:06:31 AM,03/07/2016 12:12:24 AM,03/07/2016 12:13:02 AM,03/07/2016 12:13:22 AM,03/07/2016 12:17:57 AM,03/07/2016 12:45:06 AM,03/07/2016 12:48:22 AM,Code 2 Transport,03/07/2016 01:48:06 AM,1600 Block of POLK ST,San Francisco,94109,B04,41,3123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7919308386336, -122.421031367895)",160670024-88 -140110155,RC2,14003815,Medical Incident,01/11/2014,01/11/2014,01/11/2014 12:43:39 PM,01/11/2014 12:44:28 PM,01/11/2014 12:47:03 PM,01/11/2014 12:47:03 PM,01/11/2014 12:49:13 PM,01/11/2014 01:04:25 PM,04/25/2016 01:48:46 PM,Other,01/11/2014 01:50:13 PM,4200 Block of IRVING ST,SF,94122,B08,23,7653,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,8,4,Sunset/Parkside,"(37.7623486594048, -122.503376288616)",140110155-RC2 -160893622,66,16035488,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:10:14 PM,03/29/2016 09:10:14 PM,03/29/2016 09:12:26 PM,03/29/2016 09:12:26 PM,03/29/2016 09:18:08 PM,03/29/2016 09:19:42 PM,03/29/2016 09:40:11 PM,Code 2 Transport,03/29/2016 10:13:53 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",160893622-66 -160361169,KM08,16014175,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:31:47 AM,02/05/2016 09:31:47 AM,02/05/2016 09:32:17 AM,02/05/2016 09:32:54 AM,02/05/2016 09:39:03 AM,02/05/2016 09:49:50 AM,02/05/2016 09:55:45 AM,Code 2 Transport,02/05/2016 11:05:09 AM,17TH ST/DE HARO ST,San Francisco,94107,B03,29,2413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission Bay,"(37.7648392372895, -122.401599000928)",160361169-KM08 -111620314,RS1,11053608,Medical Incident,06/11/2011,06/11/2011,06/11/2011 07:42:58 PM,06/11/2011 07:44:44 PM,06/11/2011 07:46:35 PM,06/11/2011 07:47:26 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Other,06/11/2011 07:47:55 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7800525030811, -122.40977382526)",111620314-RS1 -160551556,84,16021982,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:50:54 AM,02/24/2016 11:51:31 AM,02/24/2016 11:52:45 AM,02/24/2016 11:53:35 AM,02/24/2016 11:57:21 AM,02/24/2016 12:17:36 PM,02/24/2016 12:35:14 PM,Code 2 Transport,02/24/2016 01:20:01 PM,900 Block of GRAFTON AVE,San Francisco,94112,B09,15,8434,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7199512389218, -122.462457629063)",160551556-84 -110730313,E05,11024115,Medical Incident,03/14/2011,03/14/2011,03/14/2011 06:35:21 PM,03/14/2011 06:36:19 PM,03/14/2011 06:36:39 PM,03/14/2011 06:37:38 PM,03/14/2011 06:38:40 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 06:57:08 PM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",110730313-E05 -160322398,61,16012644,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:02:25 PM,02/01/2016 04:04:30 PM,02/01/2016 04:05:09 PM,02/01/2016 04:05:19 PM,02/01/2016 04:24:41 PM,02/01/2016 04:34:56 PM,02/01/2016 04:47:17 PM,Code 2 Transport,02/01/2016 05:10:56 PM,600 Block of PERSIA AVE,San Francisco,94112,B09,43,6156,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7206195943641, -122.430843982203)",160322398-61 -112550025,66,11084003,Medical Incident,09/12/2011,09/11/2011,09/12/2011 02:41:16 AM,09/12/2011 02:43:29 AM,09/12/2011 02:43:38 AM,09/12/2011 02:43:50 AM,09/12/2011 02:50:01 AM,09/12/2011 02:58:47 AM,09/12/2011 03:08:54 AM,Code 2 Transport,09/12/2011 03:15:32 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112550025-66 -133250208,84,13110396,Medical Incident,11/21/2013,11/21/2013,11/21/2013 01:52:58 PM,11/21/2013 01:54:39 PM,11/21/2013 01:54:52 PM,11/21/2013 01:59:01 PM,11/21/2013 02:20:14 PM,11/21/2013 02:33:34 PM,11/21/2013 03:10:25 PM,Code 2 Transport,11/21/2013 03:32:15 PM,1100 Block of FITZGERALD AVE,SF,94124,B10,17,6615,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7204964019129, -122.390342560546)",133250208-84 -111820280,KM11,11060155,Traffic Collision,07/01/2011,07/01/2011,07/01/2011 04:00:20 PM,07/01/2011 04:00:21 PM,07/01/2011 04:00:49 PM,07/01/2011 04:07:20 PM,07/01/2011 04:11:50 PM,07/01/2011 04:24:54 PM,07/01/2011 04:40:18 PM,Code 2 Transport,07/01/2011 04:58:33 PM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,3,3,3,false,,1,PRIVATE,2,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",111820280-KM11 -111850031,E39,11061015,Medical Incident,07/04/2011,07/03/2011,07/04/2011 02:41:21 AM,07/04/2011 02:45:51 AM,07/04/2011 02:46:11 AM,07/04/2011 02:47:57 AM,07/04/2011 02:50:39 AM,04/25/2016 02:03:50 PM,04/25/2016 02:03:50 PM,Other,07/04/2011 03:03:26 AM,WEST PORTAL AV/14TH AV,SF,94127,B08,39,8562,1,1,2,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7379698827734, -122.469056677033)",111850031-E39 -111580363,E16,11052397,Structure Fire,06/07/2011,06/07/2011,06/07/2011 09:41:56 PM,06/07/2011 09:41:57 PM,06/07/2011 09:42:43 PM,06/07/2011 09:44:07 PM,06/07/2011 09:45:29 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/07/2011 09:45:37 PM,LAGUNA ST/LOMBARD ST,SF,94123,B04,16,3352,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8004692165623, -122.431115291336)",111580363-E16 -113380240,E08,11112060,Traffic Collision,12/04/2011,12/04/2011,12/04/2011 02:40:53 PM,12/04/2011 02:41:02 PM,12/04/2011 02:41:29 PM,12/04/2011 02:42:19 PM,12/04/2011 02:43:12 PM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/04/2011 03:41:54 PM,4TH ST/BRANNAN ST,SF,94107,B03,8,2223,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7783268314649, -122.396530638158)",113380240-E08 -140100072,B04,14003401,Structure Fire,01/10/2014,01/09/2014,01/10/2014 07:35:28 AM,01/10/2014 07:35:28 AM,01/10/2014 07:35:37 AM,01/10/2014 07:36:25 AM,01/10/2014 07:39:11 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 07:48:04 AM,2300 Block of JACKSON ST,SF,94115,B04,38,3465,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7926300152034, -122.433748587874)",140100072-B04 -103090167,RS2,10099016,Structure Fire,11/05/2010,11/05/2010,11/05/2010 12:17:10 PM,11/05/2010 12:18:02 PM,11/05/2010 12:18:18 PM,11/05/2010 12:19:02 PM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Other,11/05/2010 12:22:53 PM,1900 Block of GOUGH ST,SF,94109,B04,38,3253,3,3,3,false,,1,RESCUE SQUAD,11,4,2,Pacific Heights,"(37.7913069920103, -122.425959496985)",103090167-RS2 -160812233,60,16032230,Medical Incident,03/21/2016,03/21/2016,03/21/2016 03:01:57 PM,03/21/2016 03:01:57 PM,03/21/2016 03:02:07 PM,03/21/2016 03:03:10 PM,03/21/2016 03:13:30 PM,03/21/2016 03:28:58 PM,03/21/2016 03:32:40 PM,Code 2 Transport,03/21/2016 04:32:33 PM,200 Block of 12TH AVE,San Francisco,94118,B07,31,718,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7835852895624, -122.470982832694)",160812233-60 -160531733,85,16021209,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:30:56 PM,02/22/2016 01:31:23 PM,02/22/2016 01:31:41 PM,02/22/2016 01:31:51 PM,02/22/2016 01:35:08 PM,02/22/2016 01:42:22 PM,02/22/2016 01:47:55 PM,Code 3 Transport,02/22/2016 03:02:54 PM,19TH ST/DOLORES ST,San Francisco,94110,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",160531733-85 -103600270,E01,10115625,Medical Incident,12/26/2010,12/26/2010,12/26/2010 09:43:20 PM,12/26/2010 09:43:56 PM,12/26/2010 09:44:38 PM,12/26/2010 09:47:56 PM,12/26/2010 09:48:26 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 09:51:47 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103600270-E01 -122640003,T05,12087039,Citizen Assist / Service Call,09/19/2012,09/19/2012,09/19/2012 11:59:36 PM,09/20/2012 12:01:36 AM,09/20/2012 12:01:43 AM,09/20/2012 12:03:53 AM,09/20/2012 12:07:21 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Fire,09/20/2012 01:11:13 AM,0 Block of PAGE ST,SF,94102,B02,36,3212,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7741354532801, -122.421572563496)",122640003-T05 -132670298,E08,13090740,Medical Incident,09/24/2013,09/24/2013,09/24/2013 05:55:33 PM,09/24/2013 05:57:19 PM,09/24/2013 05:58:02 PM,09/24/2013 05:58:41 PM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Other,09/24/2013 05:59:49 PM,100 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7786395920196, -122.410120840963)",132670298-E08 -120800215,T02,12026586,Alarms,03/20/2012,03/20/2012,03/20/2012 02:52:26 PM,03/20/2012 02:53:42 PM,03/20/2012 02:54:18 PM,03/20/2012 02:56:23 PM,03/20/2012 02:58:49 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/20/2012 03:07:07 PM,600 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",120800215-T02 -121580099,KM04,12052209,Medical Incident,06/06/2012,06/06/2012,06/06/2012 09:38:15 AM,06/06/2012 09:38:36 AM,06/06/2012 09:40:20 AM,06/06/2012 09:41:01 AM,06/06/2012 09:43:36 AM,06/06/2012 10:00:38 AM,06/06/2012 10:16:23 AM,Code 2 Transport,06/06/2012 10:50:08 AM,1000 Block of MCALLISTER ST,SF,94102,B02,5,3425,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",121580099-KM04 -112370047,E17,11078095,Medical Incident,08/25/2011,08/24/2011,08/25/2011 03:35:45 AM,08/25/2011 03:36:38 AM,08/25/2011 03:36:55 AM,08/25/2011 03:38:24 AM,08/25/2011 03:39:45 AM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 03:49:00 AM,THOMAS AV/INGALLS ST,SF,94124,B10,17,6653,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7272332288185, -122.385682204312)",112370047-E17 -102590088,T10,10081743,Alarms,09/16/2010,09/16/2010,09/16/2010 08:11:52 AM,09/16/2010 08:13:06 AM,09/16/2010 08:13:14 AM,09/16/2010 08:17:29 AM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 08:19:09 AM,0 Block of TERRA VISTA AVE,SF,94115,B05,21,4256,3,3,3,false,,1,TRUCK,3,5,2,Lone Mountain/USF,"(37.7815553117613, -122.44255898267)",102590088-T10 -160802818,AM08,16031901,Medical Incident,03/20/2016,03/20/2016,03/20/2016 06:12:29 PM,03/20/2016 06:13:57 PM,03/20/2016 06:14:49 PM,03/20/2016 06:15:18 PM,03/20/2016 06:29:00 PM,03/20/2016 06:49:48 PM,03/20/2016 07:13:54 PM,Code 2 Transport,03/20/2016 07:32:43 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160802818-AM08 -131460227,RC1,13049546,Water Rescue,05/26/2013,05/26/2013,05/26/2013 01:31:17 PM,05/26/2013 01:32:44 PM,05/26/2013 01:33:46 PM,05/26/2013 01:34:02 PM,05/26/2013 01:41:19 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 01:46:43 PM,CALL BOX: FORT MASON-PIER 4,SF,94109,B99,16,3349,3,3,3,true,Fire,1,RESCUE CAPTAIN,6,1,2,Russian Hill,"(37.8085019164153, -122.420857228902)",131460227-RC1 -120150042,87,12004975,Medical Incident,01/15/2012,01/14/2012,01/15/2012 02:09:43 AM,01/15/2012 02:11:32 AM,01/15/2012 02:11:53 AM,01/15/2012 02:12:02 AM,01/15/2012 02:16:34 AM,01/15/2012 02:29:02 AM,01/15/2012 02:41:52 AM,Code 2 Transport,01/15/2012 03:01:57 AM,1700 Block of TURK ST,SF,94115,B05,5,4152,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7798704351211, -122.437493921383)",120150042-87 -121780174,E22,12059248,Other,06/26/2012,06/26/2012,06/26/2012 12:46:02 PM,06/26/2012 12:47:11 PM,06/26/2012 12:47:16 PM,06/26/2012 12:48:18 PM,06/26/2012 01:00:06 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Fire,06/26/2012 01:00:47 PM,8TH AV/ORTEGA ST,SF,94116,B08,22,7336,3,3,3,false,Alarm,1,ENGINE,1,8,7,Inner Sunset,"(37.7528992273861, -122.464462033628)",121780174-E22 -111500343,B01,11049849,Alarms,05/30/2011,05/30/2011,05/30/2011 11:27:49 PM,05/30/2011 11:29:03 PM,05/30/2011 11:29:45 PM,05/30/2011 11:29:57 PM,05/30/2011 11:32:11 PM,04/25/2016 02:04:22 PM,04/25/2016 02:04:22 PM,Other,05/30/2011 11:35:18 PM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7983830790911, -122.407521730924)",111500343-B01 -112510056,T16,11082664,Structure Fire,09/08/2011,09/07/2011,09/08/2011 04:53:25 AM,09/08/2011 04:53:25 AM,09/08/2011 04:54:42 AM,09/08/2011 04:56:31 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 05:11:00 AM,1600 Block of UNION ST,SF,94123,B04,16,323,3,3,3,false,,1,TRUCK,3,4,2,Marina,"(37.7981848264843, -122.426436289929)",112510056-T16 -111540208,96,11050902,Medical Incident,06/03/2011,06/03/2011,06/03/2011 02:27:44 PM,06/03/2011 02:29:33 PM,06/03/2011 02:29:48 PM,06/03/2011 02:30:30 PM,06/03/2011 02:36:28 PM,06/03/2011 02:51:54 PM,06/03/2011 03:10:13 PM,Code 2 Transport,06/03/2011 03:29:42 PM,0 Block of SPEAR ST,SF,94105,B03,13,2115,E,E,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",111540208-96 -103480266,AM06,10111655,Medical Incident,12/14/2010,12/14/2010,12/14/2010 03:41:58 PM,12/14/2010 03:43:33 PM,12/14/2010 03:44:13 PM,12/14/2010 03:45:43 PM,12/14/2010 03:49:58 PM,12/14/2010 04:01:03 PM,12/14/2010 04:11:54 PM,Code 2 Transport,12/14/2010 04:54:15 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",103480266-AM06 -112880067,E01,11095442,Medical Incident,10/15/2011,10/14/2011,10/15/2011 05:27:52 AM,10/15/2011 05:29:35 AM,10/15/2011 05:29:59 AM,10/15/2011 05:30:31 AM,10/15/2011 05:31:15 AM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Other,10/15/2011 05:35:09 AM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112880067-E01 -102580274,KM05,10081564,Medical Incident,09/15/2010,09/15/2010,09/15/2010 04:27:41 PM,09/15/2010 04:28:43 PM,09/15/2010 04:29:01 PM,09/15/2010 04:29:44 PM,09/15/2010 04:30:24 PM,09/15/2010 04:55:07 PM,09/15/2010 04:58:44 PM,Code 3 Transport,09/15/2010 05:43:22 PM,400 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",102580274-KM05 -122330222,AM02,12077313,Medical Incident,08/20/2012,08/20/2012,08/20/2012 02:39:51 PM,08/20/2012 02:41:26 PM,08/20/2012 02:42:34 PM,08/20/2012 02:43:15 PM,08/20/2012 02:47:23 PM,08/20/2012 03:22:06 PM,08/20/2012 03:29:25 PM,Code 2 Transport,08/20/2012 04:10:07 PM,900 Block of SCOTT ST,SF,94115,B05,5,4134,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7784633845532, -122.436858958509)",122330222-AM02 -160693029,56,16027587,Medical Incident,03/09/2016,03/09/2016,03/09/2016 06:17:03 PM,03/09/2016 06:17:49 PM,03/09/2016 06:18:08 PM,03/09/2016 06:18:33 PM,03/09/2016 06:27:32 PM,03/09/2016 06:33:40 PM,03/09/2016 07:02:45 PM,Code 2 Transport,03/09/2016 07:11:54 PM,0 Block of SANTA MONICA WAY,San Francisco,94127,B08,39,8564,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7389789572342, -122.465038949076)",160693029-56 -110330230,E19,11010852,Medical Incident,02/02/2011,02/02/2011,02/02/2011 02:41:17 PM,02/02/2011 02:41:56 PM,02/02/2011 02:42:56 PM,02/02/2011 02:45:30 PM,02/02/2011 02:48:47 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 02:52:57 PM,300 Block of WEST PORTAL AVE,SF,94127,B08,39,8561,3,3,3,true,,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7373722059796, -122.469939861606)",110330230-E19 -160091952,89,16003677,Medical Incident,01/09/2016,01/09/2016,01/09/2016 02:25:25 PM,01/09/2016 02:25:25 PM,01/09/2016 02:26:41 PM,01/09/2016 02:27:33 PM,01/09/2016 02:35:36 PM,01/09/2016 02:57:28 PM,01/09/2016 03:14:53 PM,Code 2 Transport,01/09/2016 04:14:40 PM,DOLORES ST/CLINTON PARK ST,San Francisco,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7692470632367, -122.426955631709)",160091952-89 -160502516,67,16020165,Medical Incident,02/19/2016,02/19/2016,02/19/2016 04:31:28 PM,02/19/2016 04:32:46 PM,02/19/2016 04:35:14 PM,02/19/2016 04:35:21 PM,02/19/2016 04:41:07 PM,02/19/2016 05:04:25 PM,02/19/2016 05:12:13 PM,Code 2 Transport,02/19/2016 05:58:08 PM,ELLIS ST/HYDE ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",160502516-67 -112860149,E14,11094704,Other,10/13/2011,10/13/2011,10/13/2011 10:36:14 AM,10/13/2011 10:36:37 AM,10/13/2011 10:36:49 AM,10/13/2011 10:37:06 AM,10/13/2011 10:43:25 AM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 11:01:35 AM,JOHN F KENNEDY DR/30TH AV,SF,94122,B07,14,7211,3,3,3,true,,1,ENGINE,1,7,1,Golden Gate Park,"(37.7708945643478, -122.489804361308)",112860149-E14 -120650066,78,12021395,Medical Incident,03/05/2012,03/04/2012,03/05/2012 06:45:43 AM,03/05/2012 06:48:29 AM,03/05/2012 06:53:01 AM,03/05/2012 06:53:04 AM,03/05/2012 07:02:21 AM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Unable to Locate,03/05/2012 07:14:16 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",120650066-78 -112450340,B03,11080895,Alarms,09/02/2011,09/02/2011,09/02/2011 07:59:41 PM,09/02/2011 08:00:55 PM,09/02/2011 08:01:01 PM,09/02/2011 08:04:14 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 08:05:36 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.787352867216, -122.399071684966)",112450340-B03 -121760038,E36,12058371,Medical Incident,06/24/2012,06/23/2012,06/24/2012 01:36:25 AM,06/24/2012 01:38:04 AM,06/24/2012 01:38:18 AM,06/24/2012 01:40:10 AM,06/24/2012 01:40:38 AM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/24/2012 01:41:00 AM,VAN NESS AV/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7751470741622, -122.419255607214)",121760038-E36 -122590036,E03,12085496,Medical Incident,09/15/2012,09/14/2012,09/15/2012 01:48:52 AM,09/15/2012 01:50:28 AM,09/15/2012 01:51:01 AM,09/15/2012 01:52:59 AM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/15/2012 01:54:51 AM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,Non Life-threatening,1,ENGINE,2,4,6,Tenderloin,"(37.786469251596, -122.415638875478)",122590036-E03 -160811902,79,16032191,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:34:23 PM,03/21/2016 01:36:20 PM,03/21/2016 01:36:40 PM,03/21/2016 01:36:53 PM,03/21/2016 01:43:06 PM,03/21/2016 02:06:08 PM,03/21/2016 02:23:22 PM,Code 2 Transport,03/21/2016 03:02:16 PM,1200 Block of SHAFTER AVE,San Francisco,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",160811902-79 -121510016,88,12049903,Medical Incident,05/30/2012,05/29/2012,05/30/2012 01:24:37 AM,05/30/2012 01:26:50 AM,05/30/2012 01:28:25 AM,05/30/2012 01:28:44 AM,05/30/2012 01:37:26 AM,05/30/2012 01:50:01 AM,05/30/2012 02:02:23 AM,Other,05/30/2012 02:23:49 AM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,E,E,3,false,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",121510016-88 -110450227,74,11014957,Medical Incident,02/14/2011,02/14/2011,02/14/2011 03:07:45 PM,02/14/2011 03:09:26 PM,02/14/2011 03:09:53 PM,02/14/2011 03:10:24 PM,02/14/2011 03:13:55 PM,02/14/2011 03:36:23 PM,02/14/2011 04:13:51 PM,Code 2 Transport,02/14/2011 04:17:18 PM,700 Block of CORTLAND AVE,SF,94110,B06,32,5726,E,E,3,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.738957265139, -122.414863269861)",110450227-74 -132360181,E29,13079639,Medical Incident,08/24/2013,08/24/2013,08/24/2013 02:39:25 PM,08/24/2013 02:39:57 PM,08/24/2013 02:40:46 PM,08/24/2013 02:41:47 PM,08/24/2013 02:45:29 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/24/2013 02:48:27 PM,0 Block of NORFOLK ST,SF,94103,B02,36,5121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7709412271608, -122.413598233416)",132360181-E29 -140370321,AR1,14012635,Administrative,02/06/2014,02/06/2014,02/06/2014 08:03:03 PM,02/06/2014 08:03:53 PM,02/06/2014 08:06:07 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 08:06:35 PM,1400 Block of EVANS AVE,SF,94124,B10,25,6521,3,3,3,false,,1,INVESTIGATION,1,10,10,Bayview Hunters Point,"(37.7413198233919, -122.385730461663)",140370321-AR1 -160551377,KM15,16021961,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:10:39 AM,02/24/2016 11:12:09 AM,02/24/2016 11:12:40 AM,02/24/2016 11:13:28 AM,02/24/2016 11:21:48 AM,02/24/2016 11:43:39 AM,02/24/2016 12:51:32 PM,Code 2 Transport,02/24/2016 12:53:23 PM,700 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7794115468887, -122.425174050161)",160551377-KM15 -160092637,77,16003736,Traffic Collision,01/09/2016,01/09/2016,01/09/2016 05:27:42 PM,01/09/2016 05:28:17 PM,01/09/2016 05:29:50 PM,01/09/2016 05:29:50 PM,01/09/2016 05:32:34 PM,01/09/2016 05:49:38 PM,01/09/2016 06:04:58 PM,Code 3 Transport,01/09/2016 07:11:47 PM,NORTH POINT ST/COLUMBUS AV,San Francisco,94133,B01,28,1525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8059773670462, -122.418380658404)",160092637-77 -102790154,89,10088680,Medical Incident,10/06/2010,10/06/2010,10/06/2010 12:37:00 PM,10/06/2010 12:37:30 PM,10/06/2010 12:38:18 PM,10/06/2010 12:40:18 PM,10/06/2010 12:44:10 PM,10/06/2010 12:57:19 PM,10/06/2010 01:06:01 PM,Code 2 Transport,10/06/2010 01:45:59 PM,2600 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7546325890357, -122.41873973942)",102790154-89 -110100021,B06,11003182,Medical Incident,01/10/2011,01/09/2011,01/10/2011 01:42:12 AM,01/10/2011 01:42:12 AM,01/10/2011 01:43:40 AM,01/10/2011 01:46:39 AM,01/10/2011 01:48:30 AM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 01:50:10 AM,29TH ST/SAN JOSE AV,SF,94110,B06,32,5625,E,E,3,false,,1,CHIEF,4,6,8,Noe Valley,"(37.7439422420021, -122.422669446432)",110100021-B06 -160061203,55,16002344,Medical Incident,01/06/2016,01/06/2016,01/06/2016 10:29:30 AM,01/06/2016 10:29:30 AM,01/06/2016 10:30:36 AM,01/06/2016 10:30:45 AM,01/06/2016 10:43:01 AM,01/06/2016 11:27:34 AM,01/06/2016 11:34:42 AM,Code 2 Transport,01/06/2016 12:01:27 PM,1700 Block of SUTTER ST,San Francisco,94115,B04,38,3433,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7866624954619, -122.429168215734)",160061203-55 -132010281,E33,13068239,Medical Incident,07/20/2013,07/20/2013,07/20/2013 06:22:27 PM,07/20/2013 06:25:13 PM,07/20/2013 06:25:29 PM,07/20/2013 06:27:31 PM,07/20/2013 06:30:51 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 06:35:03 PM,MOUNT VERNON AV/MISSION ST,SF,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7145671993419, -122.442661524594)",132010281-E33 -120800344,E19,12026706,Medical Incident,03/20/2012,03/20/2012,03/20/2012 09:56:45 PM,03/20/2012 09:57:19 PM,03/20/2012 09:57:45 PM,03/20/2012 09:59:27 PM,03/20/2012 10:02:24 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/20/2012 10:10:43 PM,2600 Block of YORBA ST,SF,94116,B08,19,7614,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7346752562367, -122.494982313585)",120800344-E19 -111560191,B08,11051578,Structure Fire,06/05/2011,06/05/2011,06/05/2011 12:07:13 PM,06/05/2011 12:08:02 PM,06/05/2011 12:08:09 PM,04/25/2016 02:04:18 PM,06/05/2011 12:09:06 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 12:34:13 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,,1,CHIEF,1,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",111560191-B08 -140370247,88,14012571,Medical Incident,02/06/2014,02/06/2014,02/06/2014 04:00:17 PM,02/06/2014 04:01:25 PM,02/06/2014 04:11:37 PM,02/06/2014 04:17:03 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Patient Declined Transport,02/06/2014 04:31:11 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",140370247-88 -160481417,73,16019308,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 11:10:46 AM,02/17/2016 11:11:17 AM,02/17/2016 11:11:58 AM,02/17/2016 11:12:30 AM,02/17/2016 11:16:55 AM,02/17/2016 11:39:38 AM,02/17/2016 11:52:36 AM,Code 2 Transport,02/17/2016 12:58:37 PM,UNION ST/VAN NESS AV,San Francisco,94109,B04,41,3131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Russian Hill,"(37.7985524526538, -122.423982146754)",160481417-73 -110670343,E18,11022200,Medical Incident,03/08/2011,03/08/2011,03/08/2011 10:02:34 PM,03/08/2011 10:04:31 PM,03/08/2011 10:04:58 PM,03/08/2011 10:06:05 PM,03/08/2011 10:10:54 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/08/2011 10:19:57 PM,LINCOLN WY/GREAT HY,SF,94122,B08,23,7722,3,3,3,true,,1,ENGINE,2,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",110670343-E18 -112450285,T06,11080847,Alarms,09/02/2011,09/02/2011,09/02/2011 05:06:24 PM,09/02/2011 05:08:51 PM,09/02/2011 05:08:56 PM,09/02/2011 05:09:52 PM,09/02/2011 05:12:20 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 05:19:29 PM,700 Block of HAIGHT ST,SF,94117,B05,21,4142,3,3,3,false,,1,TRUCK,1,5,5,Haight Ashbury,"(37.7716381141296, -122.434564848231)",112450285-T06 -140440289,D2,14015040,Other,02/13/2014,02/13/2014,02/13/2014 03:34:26 PM,02/13/2014 03:34:26 PM,02/13/2014 03:37:06 PM,02/13/2014 03:37:38 PM,02/13/2014 03:42:27 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 05:05:36 PM,MASON ST/UNION ST,SF,94133,B01,28,1422,,3,3,false,Alarm,1,CHIEF,2,1,3,Russian Hill,"(37.8000323990065, -122.412471378823)",140440289-D2 -160671253,61,16026717,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:46:38 AM,03/07/2016 11:49:03 AM,03/07/2016 11:49:39 AM,03/07/2016 11:49:48 AM,03/07/2016 12:02:19 PM,03/07/2016 12:24:32 PM,03/07/2016 12:36:33 PM,Code 2 Transport,03/07/2016 01:20:20 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160671253-61 -110180140,E48,11005900,Medical Incident,01/18/2011,01/18/2011,01/18/2011 11:56:44 AM,01/18/2011 11:58:04 AM,01/18/2011 11:58:22 AM,01/18/2011 11:59:58 AM,01/18/2011 12:03:37 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 12:13:00 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,1,3,3,true,,1,ENGINE,2,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",110180140-E48 -160331362,75,16012951,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:34:10 AM,02/02/2016 11:34:10 AM,02/02/2016 11:34:57 AM,02/02/2016 11:35:11 AM,02/02/2016 11:43:04 AM,02/02/2016 11:55:54 AM,02/02/2016 12:01:23 PM,Code 2 Transport,02/02/2016 12:40:02 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7683208883339, -122.4243245293)",160331362-75 -132630385,E28,13089287,Medical Incident,09/20/2013,09/20/2013,09/20/2013 08:26:11 PM,09/20/2013 08:27:18 PM,09/20/2013 08:28:51 PM,09/20/2013 08:29:53 PM,09/20/2013 08:33:51 PM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Patient Declined Transport,09/20/2013 08:51:59 PM,BAY ST/TAYLOR ST,SF,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.8054171711156, -122.415241486546)",132630385-E28 -112950298,91,11097942,Water Rescue,10/22/2011,10/22/2011,10/22/2011 06:46:23 PM,10/22/2011 06:47:32 PM,10/22/2011 06:48:36 PM,10/22/2011 06:48:49 PM,10/22/2011 06:54:56 PM,10/22/2011 07:11:04 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 07:38:40 PM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,true,,1,MEDIC,5,1,3,North Beach,"(37.8081576930541, -122.412496867032)",112950298-91 -131320070,E05,13044501,Alarms,05/12/2013,05/12/2013,05/12/2013 08:16:50 AM,05/12/2013 08:18:18 AM,05/12/2013 08:18:28 AM,05/12/2013 08:19:49 AM,05/12/2013 08:21:35 AM,04/25/2016 01:52:50 PM,04/25/2016 01:52:50 PM,Other,05/12/2013 08:53:27 AM,TURK ST/PIERCE ST,SF,94115,B05,5,3643,3,3,3,true,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.780077637862, -122.435424516858)",131320070-E05 -133320109,T17,13112629,Alarms,11/28/2013,11/28/2013,11/28/2013 11:34:50 AM,11/28/2013 11:35:46 AM,11/28/2013 11:36:04 AM,11/28/2013 11:37:49 AM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 11:44:08 AM,300 Block of SCHWERIN ST,SF,,B09,44,6252,3,3,3,false,Alarm,1,TRUCK,3,None,None,None,"(37.7082991569298, -122.41229956133)",133320109-T17 -160761179,89,16030079,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:14:56 AM,03/16/2016 10:16:35 AM,03/16/2016 10:19:05 AM,03/16/2016 10:19:42 AM,03/16/2016 10:56:42 AM,03/16/2016 10:56:42 AM,03/16/2016 11:20:48 AM,Code 2 Transport,03/16/2016 12:12:28 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7854659679151, -122.405582629186)",160761179-89 -133390190,E13,13114885,Alarms,12/05/2013,12/05/2013,12/05/2013 12:32:46 PM,12/05/2013 12:34:03 PM,12/05/2013 12:34:21 PM,12/05/2013 12:35:33 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 12:38:42 PM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7927320655845, -122.40413464889)",133390190-E13 -160492572,84,16019794,Medical Incident,02/18/2016,02/18/2016,02/18/2016 04:21:15 PM,02/18/2016 04:23:15 PM,02/18/2016 04:24:02 PM,02/18/2016 04:24:09 PM,02/18/2016 04:41:02 PM,02/18/2016 05:24:53 PM,02/18/2016 06:02:07 PM,Code 2 Transport,02/18/2016 07:01:25 PM,1000 Block of WISCONSIN ST,San Francisco,94107,B10,37,257,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",160492572-84 -92080059,AP,9061606,Other,07/27/2009,07/26/2009,07/27/2009 07:25:27 AM,07/27/2009 07:25:28 AM,07/27/2009 07:25:28 AM,04/25/2016 03:27:44 PM,04/25/2016 03:27:44 PM,04/25/2016 03:27:44 PM,04/25/2016 03:27:44 PM,Fire,07/27/2009 07:25:46 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",092080059-AP -160493531,AM14,16019878,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:44:36 PM,02/18/2016 08:44:59 PM,02/18/2016 08:45:30 PM,02/18/2016 08:46:10 PM,02/18/2016 08:50:02 PM,02/18/2016 09:11:26 PM,02/18/2016 09:28:18 PM,Code 2 Transport,02/18/2016 09:54:24 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7979143834762, -122.405841249396)",160493531-AM14 -160232771,53,16009253,Medical Incident,01/23/2016,01/23/2016,01/23/2016 05:52:22 PM,01/23/2016 05:53:26 PM,01/23/2016 05:53:39 PM,01/23/2016 05:53:50 PM,01/23/2016 06:06:39 PM,01/23/2016 06:17:11 PM,01/23/2016 06:22:07 PM,Code 2 Transport,01/23/2016 07:05:54 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160232771-53 -160400750,88,16015920,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:26:20 AM,02/09/2016 08:26:20 AM,02/09/2016 08:26:36 AM,02/09/2016 08:27:32 AM,02/09/2016 08:35:34 AM,02/09/2016 08:51:44 AM,02/09/2016 08:58:07 AM,Code 2 Transport,02/09/2016 09:16:35 AM,MAIDEN LN/GRANT AV,San Francisco,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7882302955315, -122.405131393424)",160400750-88 -122300243,E19,12076268,Medical Incident,08/17/2012,08/17/2012,08/17/2012 02:00:07 PM,08/17/2012 02:03:48 PM,08/17/2012 02:04:32 PM,08/17/2012 02:05:55 PM,08/17/2012 02:10:18 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 02:38:49 PM,600 Block of JUNIPERO SERRA BLVD,SF,94127,B09,19,8446,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7278528624134, -122.471837933686)",122300243-E19 -132820066,E21,13095860,Medical Incident,10/09/2013,10/09/2013,10/09/2013 08:03:56 AM,10/09/2013 08:05:48 AM,10/09/2013 08:09:22 AM,10/09/2013 08:10:46 AM,10/09/2013 08:14:08 AM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/09/2013 08:34:12 AM,1600 Block of HAYES ST,SF,94117,B05,21,4351,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7741999233828, -122.443568815049)",132820066-E21 -120280165,E21,12009394,Medical Incident,01/28/2012,01/28/2012,01/28/2012 12:50:43 PM,01/28/2012 12:51:45 PM,01/28/2012 12:52:33 PM,01/28/2012 12:52:58 PM,01/28/2012 12:54:44 PM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/28/2012 01:06:23 PM,600 Block of DIVISADERO ST,SF,94117,B05,21,4146,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.775474331091, -122.437778722849)",120280165-E21 -132250081,AM16,13075865,Medical Incident,08/13/2013,08/13/2013,08/13/2013 08:38:52 AM,08/13/2013 08:40:37 AM,08/13/2013 08:41:32 AM,08/13/2013 08:42:56 AM,08/13/2013 08:46:11 AM,08/13/2013 08:54:28 AM,08/13/2013 09:12:00 AM,Code 2 Transport,08/13/2013 10:00:23 AM,1300 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7960793777464, -122.411606337845)",132250081-AM16 -160083700,76,16003424,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:30:35 PM,01/08/2016 09:30:35 PM,01/08/2016 09:31:39 PM,01/08/2016 09:31:48 PM,01/08/2016 09:49:45 PM,01/08/2016 09:52:02 PM,01/08/2016 10:18:03 PM,Code 2 Transport,01/08/2016 11:03:52 PM,5100 Block of 3RD ST,San Francisco,94124,B10,17,6514,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7320660126248, -122.391792063665)",160083700-76 -160451262,82,16018080,Medical Incident,02/14/2016,02/14/2016,02/14/2016 10:59:35 AM,02/14/2016 10:59:58 AM,02/14/2016 11:00:11 AM,02/14/2016 11:00:40 AM,02/14/2016 11:10:41 AM,02/14/2016 11:11:47 AM,02/14/2016 11:18:18 AM,Code 3 Transport,02/14/2016 12:16:00 PM,200 Block of 26TH AV,San Francisco,94121,B07,14,7217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Outer Richmond,"(37.7847621492875, -122.48622534236)",160451262-82 -160631076,60,16025004,Medical Incident,03/03/2016,03/03/2016,03/03/2016 09:39:11 AM,03/03/2016 09:41:08 AM,03/03/2016 09:41:47 AM,03/03/2016 09:41:58 AM,03/03/2016 09:49:55 AM,03/03/2016 10:01:45 AM,03/03/2016 10:26:13 AM,Code 2 Transport,03/03/2016 10:56:36 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160631076-60 -141000107,68,14033701,Medical Incident,04/10/2014,04/10/2014,04/10/2014 09:30:52 AM,04/10/2014 09:33:17 AM,04/10/2014 09:35:55 AM,04/10/2014 09:36:53 AM,04/25/2016 01:47:17 PM,04/25/2016 01:47:17 PM,04/25/2016 01:47:17 PM,Patient Declined Transport,04/10/2014 09:47:07 AM,200 Block of MARKET ST,,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",141000107-68 -113320285,95,11110060,Medical Incident,11/28/2011,11/28/2011,11/28/2011 04:38:07 PM,11/28/2011 04:38:46 PM,11/28/2011 04:39:54 PM,11/28/2011 04:40:19 PM,11/28/2011 04:51:49 PM,11/28/2011 05:05:38 PM,11/28/2011 05:39:12 PM,Code 2 Transport,11/28/2011 05:59:19 PM,1400 Block of CROAKER CT,TI,94130,B03,48,2931,3,3,3,true,,1,MEDIC,2,None,6,Treasure Island,"(37.8241187828322, -122.374566544632)",113320285-95 -140950191,E37,14031949,Structure Fire,04/05/2014,04/05/2014,04/05/2014 12:40:25 PM,04/05/2014 12:40:25 PM,04/05/2014 12:40:48 PM,04/05/2014 12:41:54 PM,04/05/2014 12:43:35 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Fire,04/05/2014 12:44:13 PM,18TH ST/MISSOURI ST,SAN FRANCISCO,94107,B03,37,2462,3,3,3,false,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7625796499629, -122.396526826726)",140950191-E37 -111940120,T01,11063998,Structure Fire,07/13/2011,07/13/2011,07/13/2011 10:42:45 AM,07/13/2011 10:43:39 AM,07/13/2011 10:44:01 AM,07/13/2011 10:49:50 AM,07/13/2011 10:55:23 AM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 11:01:54 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,TRUCK,9,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",111940120-T01 -131750131,T02,13059331,Alarms,06/24/2013,06/24/2013,06/24/2013 10:57:47 AM,06/24/2013 10:59:06 AM,06/24/2013 10:59:16 AM,06/24/2013 10:59:54 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 11:03:19 AM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Alarm,1,TRUCK,3,1,3,North Beach,"(37.7979143834762, -122.405841249396)",131750131-T02 -130680134,88,13022633,Medical Incident,03/09/2013,03/09/2013,03/09/2013 10:24:31 AM,03/09/2013 10:26:27 AM,03/09/2013 10:26:41 AM,03/09/2013 10:28:06 AM,03/09/2013 10:37:11 AM,03/09/2013 10:49:05 AM,03/09/2013 11:20:14 AM,Code 2 Transport,03/09/2013 12:01:24 PM,6200 Block of 3RD ST,SF,94124,B10,44,6544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208979952595, -122.396464970114)",130680134-88 -160753212,83,16029846,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:40:08 PM,03/15/2016 06:40:51 PM,03/15/2016 06:41:09 PM,03/15/2016 06:42:31 PM,03/15/2016 06:53:24 PM,03/15/2016 07:03:43 PM,03/15/2016 07:35:54 PM,Code 2 Transport,03/15/2016 08:20:14 PM,0 Block of SANTOS ST,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121040537994, -122.41847388242)",160753212-83 -160810714,AM04,16032084,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:21:54 AM,03/21/2016 08:21:54 AM,03/21/2016 08:21:54 AM,03/21/2016 08:21:54 AM,03/21/2016 08:21:54 AM,03/21/2016 08:28:18 AM,03/21/2016 08:43:17 AM,Code 2 Transport,03/21/2016 09:26:17 AM,17TH ST/VALENCIA ST,San Francisco,94110,B99,7,5247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7632997692, -122.421731523653)",160810714-AM04 -122540290,AM18,12084059,Medical Incident,09/10/2012,09/10/2012,09/10/2012 07:12:37 PM,09/10/2012 07:13:23 PM,09/10/2012 07:13:43 PM,04/25/2016 01:56:50 PM,09/10/2012 07:31:48 PM,09/10/2012 07:38:06 PM,09/10/2012 07:48:59 PM,Code 2 Transport,09/10/2012 08:12:58 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",122540290-AM18 -130940318,93,13031572,Medical Incident,04/04/2013,04/04/2013,04/04/2013 07:16:50 PM,04/04/2013 07:17:49 PM,04/04/2013 07:18:24 PM,04/04/2013 07:18:42 PM,04/25/2016 01:53:29 PM,04/04/2013 07:32:19 PM,04/04/2013 07:40:34 PM,Code 2 Transport,04/04/2013 08:15:43 PM,100 Block of MAXWELL CT,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7669025720969, -122.423141850936)",130940318-93 -133610259,81,13122742,Medical Incident,12/27/2013,12/27/2013,12/27/2013 05:52:22 PM,12/27/2013 05:54:47 PM,12/27/2013 05:57:29 PM,12/27/2013 05:57:49 PM,12/27/2013 06:06:33 PM,12/27/2013 06:30:29 PM,12/27/2013 06:37:26 PM,Code 2 Transport,12/27/2013 07:14:58 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",133610259-81 -113120139,E39,11103609,Structure Fire,11/08/2011,11/08/2011,11/08/2011 10:42:15 AM,11/08/2011 10:42:40 AM,11/08/2011 10:43:02 AM,11/08/2011 10:43:55 AM,11/08/2011 10:45:56 AM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,Other,11/08/2011 11:19:36 AM,200 Block of JUANITA WAY,SF,94127,B09,39,8672,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7395764944697, -122.457869006822)",113120139-E39 -160920642,KM13,16036351,Medical Incident,04/01/2016,03/31/2016,04/01/2016 07:34:46 AM,04/01/2016 07:39:07 AM,04/01/2016 07:39:26 AM,04/01/2016 07:43:07 AM,04/01/2016 07:43:07 AM,04/01/2016 08:02:08 AM,04/01/2016 08:19:07 AM,Code 2 Transport,04/01/2016 08:51:24 AM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",160920642-KM13 -160130506,65,16005067,Medical Incident,01/13/2016,01/12/2016,01/13/2016 06:40:40 AM,01/13/2016 06:40:40 AM,01/13/2016 06:40:46 AM,01/13/2016 06:42:22 AM,01/13/2016 06:49:10 AM,01/13/2016 07:13:18 AM,01/13/2016 07:23:03 AM,Code 2 Transport,01/13/2016 07:51:43 AM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160130506-65 -112930318,96,11097316,Medical Incident,10/20/2011,10/20/2011,10/20/2011 07:29:18 PM,10/20/2011 07:30:46 PM,10/20/2011 07:31:29 PM,10/20/2011 07:31:44 PM,10/20/2011 07:34:48 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 07:35:39 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,1,1,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",112930318-96 -160832826,67,16033045,Medical Incident,03/23/2016,03/23/2016,03/23/2016 04:37:39 PM,03/23/2016 04:39:44 PM,03/23/2016 04:40:49 PM,03/23/2016 04:41:11 PM,03/23/2016 04:50:41 PM,03/23/2016 05:08:22 PM,03/23/2016 05:45:52 PM,Code 2 Transport,03/23/2016 06:35:31 PM,800 Block of 44TH AV,San Francisco,94121,B07,34,7271,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7725696176919, -122.504681383702)",160832826-67 -112350214,RS2,11077571,Medical Incident,08/23/2011,08/23/2011,08/23/2011 01:31:22 PM,08/23/2011 01:33:33 PM,08/23/2011 01:33:47 PM,08/23/2011 01:35:17 PM,08/23/2011 01:38:02 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 01:39:41 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,,1,RESCUE SQUAD,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",112350214-RS2 -160031658,74,16001195,Medical Incident,01/03/2016,01/03/2016,01/03/2016 01:53:28 PM,01/03/2016 01:54:00 PM,01/03/2016 01:54:17 PM,01/03/2016 01:54:26 PM,01/03/2016 01:58:06 PM,01/03/2016 02:15:12 PM,01/03/2016 02:46:08 PM,Code 2 Transport,01/03/2016 03:19:32 PM,300 Block of CHESTNUT ST,San Francisco,94133,B01,28,1336,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8042597516357, -122.409641027466)",160031658-74 -131920303,67,13065442,Medical Incident,07/11/2013,07/11/2013,07/11/2013 07:05:07 PM,07/11/2013 07:07:03 PM,07/11/2013 07:07:14 PM,07/11/2013 07:10:02 PM,07/11/2013 07:14:45 PM,07/11/2013 07:41:27 PM,07/11/2013 07:56:03 PM,Code 2 Transport,07/11/2013 08:25:56 PM,700 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",131920303-67 -130160161,77,13005428,Medical Incident,01/16/2013,01/16/2013,01/16/2013 01:03:02 PM,01/16/2013 01:04:26 PM,01/16/2013 01:05:44 PM,01/16/2013 01:06:46 PM,01/16/2013 01:19:32 PM,01/16/2013 01:29:09 PM,01/16/2013 01:56:01 PM,Code 2 Transport,01/16/2013 02:35:12 PM,100 Block of CAMBRIDGE ST,SF,94134,B09,42,635,3,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Excelsior,"(37.7297394945048, -122.419529070231)",130160161-77 -121600182,78,12052928,Medical Incident,06/08/2012,06/08/2012,06/08/2012 12:51:48 PM,06/08/2012 12:53:33 PM,06/08/2012 12:53:53 PM,06/08/2012 12:54:05 PM,06/08/2012 01:16:43 PM,06/08/2012 01:37:27 PM,06/08/2012 01:58:31 PM,Code 2 Transport,06/08/2012 02:44:08 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",121600182-78 -120170200,57,12005718,Medical Incident,01/17/2012,01/17/2012,01/17/2012 02:19:08 PM,01/17/2012 02:22:05 PM,01/17/2012 02:22:17 PM,01/17/2012 02:22:25 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,04/25/2016 02:00:35 PM,900 Block of COLUMBUS AVE,SF,94133,B01,28,1435,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",120170200-57 -121130248,E44,12037575,Medical Incident,04/22/2012,04/22/2012,04/22/2012 05:42:50 PM,04/22/2012 05:43:31 PM,04/22/2012 05:43:58 PM,04/22/2012 05:45:42 PM,04/22/2012 05:48:34 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 06:01:44 PM,0 Block of RECYCLE RD,SF,94134,B10,44,6271,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7084481302271, -122.400887358723)",121130248-E44 -140200167,KM10,14006845,Medical Incident,01/20/2014,01/20/2014,01/20/2014 12:38:09 PM,01/20/2014 12:40:05 PM,01/20/2014 12:40:31 PM,01/20/2014 12:43:47 PM,01/20/2014 12:44:06 PM,01/20/2014 12:51:56 PM,01/20/2014 01:01:10 PM,Code 2 Transport,01/20/2014 01:34:59 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",140200167-KM10 -123550270,E20,12118878,Medical Incident,12/20/2012,12/20/2012,12/20/2012 06:03:15 PM,12/20/2012 06:03:58 PM,12/20/2012 06:04:45 PM,12/20/2012 06:06:04 PM,12/20/2012 06:07:35 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 06:20:21 PM,300 Block of LAGUNA HONDA BLVD,SF,94116,B08,20,8641,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7481253606641, -122.458963820115)",123550270-E20 -132200194,KM01,13074319,Structure Fire,08/08/2013,08/08/2013,08/08/2013 02:03:50 PM,08/08/2013 02:09:07 PM,08/08/2013 02:09:49 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 02:12:59 PM,900 Block of KIRKHAM ST,SF,94122,B08,22,7365,3,3,3,false,Alarm,1,PRIVATE,9,8,7,Inner Sunset,"(37.760044724144, -122.470867724082)",132200194-KM01 -160891491,83,16035310,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:30:31 AM,03/29/2016 11:31:05 AM,03/29/2016 11:31:16 AM,03/29/2016 11:31:29 AM,03/29/2016 11:34:52 AM,03/29/2016 11:45:54 AM,03/29/2016 11:58:06 AM,Code 2 Transport,03/29/2016 12:42:46 PM,GROVE ST/HYDE ST,San Francisco,94103,B02,36,1552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160891491-83 -131870073,KM12,13063709,Medical Incident,07/06/2013,07/05/2013,07/06/2013 07:51:40 AM,07/06/2013 07:55:55 AM,07/06/2013 07:56:37 AM,07/06/2013 07:57:13 AM,07/06/2013 08:22:09 AM,07/06/2013 08:32:52 AM,07/06/2013 08:40:42 AM,Code 2 Transport,07/06/2013 09:17:06 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131870073-KM12 -112670387,FB1,11088405,Administrative,09/24/2011,09/24/2011,09/24/2011 11:38:50 PM,09/24/2011 11:39:01 PM,09/24/2011 11:39:19 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Fire,09/24/2011 11:39:48 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,false,,1,SUPPORT,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",112670387-FB1 -160273055,71,16010803,Medical Incident,01/27/2016,01/27/2016,01/27/2016 06:09:30 PM,01/27/2016 06:10:13 PM,01/27/2016 06:10:26 PM,01/27/2016 06:10:32 PM,01/27/2016 06:19:10 PM,01/27/2016 06:28:16 PM,01/27/2016 07:10:53 PM,Code 2 Transport,01/27/2016 07:32:11 PM,1400 Block of HALIBUT CT,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8248190426844, -122.375030442219)",160273055-71 -160160470,AM20,16006290,Medical Incident,01/16/2016,01/15/2016,01/16/2016 03:50:23 AM,01/16/2016 03:50:55 AM,01/16/2016 03:51:17 AM,01/16/2016 03:51:53 AM,01/16/2016 03:54:38 AM,01/16/2016 04:12:42 AM,01/16/2016 04:41:00 AM,Code 2 Transport,01/16/2016 05:10:53 AM,HOWARD ST/11TH ST,San Francisco,94103,B02,36,5114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7731005870473, -122.415561389884)",160160470-AM20 -113140025,E32,11104205,Medical Incident,11/10/2011,11/09/2011,11/10/2011 03:19:54 AM,11/10/2011 03:21:07 AM,11/10/2011 03:21:23 AM,11/10/2011 03:23:43 AM,11/10/2011 03:26:10 AM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 03:44:32 AM,100 Block of JUSTIN DR,SF,94112,B06,32,5641,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7334468814341, -122.422321504161)",113140025-E32 -130430201,E38,13014647,Citizen Assist / Service Call,02/12/2013,02/12/2013,02/12/2013 01:59:47 PM,02/12/2013 02:06:08 PM,02/12/2013 02:06:59 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,04/25/2016 01:54:20 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",130430201-E38 -131520277,92,13051582,Medical Incident,06/01/2013,06/01/2013,06/01/2013 06:55:35 PM,06/01/2013 06:55:35 PM,06/01/2013 06:56:23 PM,06/01/2013 06:56:33 PM,06/01/2013 07:09:00 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,No Merit,06/01/2013 07:10:35 PM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7772727011897, -122.404070256526)",131520277-92 -133350266,RS1,13113649,Medical Incident,12/01/2013,12/01/2013,12/01/2013 05:58:10 PM,12/01/2013 05:58:57 PM,12/01/2013 06:02:19 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Other,12/01/2013 06:08:01 PM,5TH ST/STEVENSON ST,SF,94103,B03,1,2247,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.783528916199, -122.407482813601)",133350266-RS1 -160550174,72,16021848,Medical Incident,02/24/2016,02/23/2016,02/24/2016 01:41:58 AM,02/24/2016 01:44:08 AM,02/24/2016 01:44:17 AM,02/24/2016 01:44:33 AM,02/24/2016 01:52:25 AM,02/24/2016 02:04:58 AM,02/24/2016 02:20:03 AM,Code 2 Transport,02/24/2016 03:00:14 AM,900 Block of HAIGHT ST,San Francisco,94117,B05,21,4246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7712162010371, -122.437888283036)",160550174-72 -160364307,53,16014487,Medical Incident,02/05/2016,02/05/2016,02/05/2016 11:29:45 PM,02/05/2016 11:30:23 PM,02/05/2016 11:30:38 PM,02/05/2016 11:30:52 PM,02/05/2016 11:35:25 PM,02/06/2016 12:05:19 AM,02/06/2016 12:14:09 AM,Code 2 Transport,02/06/2016 12:44:09 AM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",160364307-53 -133350103,E11,13113509,Medical Incident,12/01/2013,12/01/2013,12/01/2013 09:17:26 AM,12/01/2013 09:17:35 AM,12/01/2013 09:17:54 AM,12/01/2013 09:18:17 AM,12/01/2013 09:21:14 AM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,12/01/2013 09:42:31 AM,OSAGE AL/24TH ST,SF,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7522044420966, -122.419017543719)",133350103-E11 -110560020,E01,11018316,Medical Incident,02/25/2011,02/24/2011,02/25/2011 01:50:56 AM,02/25/2011 01:51:45 AM,02/25/2011 01:52:13 AM,02/25/2011 01:53:51 AM,02/25/2011 02:04:47 AM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 02:06:40 AM,300 Block of TEHAMA ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",110560020-E01 -160420150,75,16016701,Medical Incident,02/11/2016,02/10/2016,02/11/2016 01:25:44 AM,02/11/2016 01:25:44 AM,02/11/2016 01:27:04 AM,02/11/2016 01:27:09 AM,02/11/2016 01:30:09 AM,02/11/2016 01:36:49 AM,02/11/2016 01:58:42 AM,Code 2 Transport,02/11/2016 02:40:41 AM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8851,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160420150-75 -160060603,61,16002291,Medical Incident,01/06/2016,01/05/2016,01/06/2016 07:35:38 AM,01/06/2016 07:40:10 AM,01/06/2016 07:40:34 AM,01/06/2016 07:40:54 AM,01/06/2016 07:51:12 AM,01/06/2016 08:01:12 AM,01/06/2016 08:48:43 AM,Code 2 Transport,01/06/2016 09:20:28 AM,0 Block of LIEBIG ST,San Francisco,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7089054042414, -122.456844244926)",160060603-61 -102620060,89,10082784,Medical Incident,09/19/2010,09/18/2010,09/19/2010 03:26:22 AM,09/19/2010 03:27:34 AM,09/19/2010 03:28:05 AM,09/19/2010 03:28:47 AM,09/19/2010 03:37:27 AM,09/19/2010 03:41:53 AM,09/19/2010 03:43:52 AM,Code 3 Transport,09/19/2010 04:57:22 AM,3000 Block of 24TH ST,SF,94110,B06,7,5527,E,E,3,true,,1,MEDIC,4,6,9,Mission,"(37.7525321494276, -122.412724702186)",102620060-89 -121500284,E36,12049834,Medical Incident,05/29/2012,05/29/2012,05/29/2012 06:56:34 PM,05/29/2012 06:58:10 PM,05/29/2012 06:59:09 PM,05/29/2012 07:00:29 PM,05/29/2012 07:01:50 PM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Unable to Locate,05/29/2012 07:04:06 PM,LAFAYETTE ST/MISSION ST,SF,94103,B02,36,5116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7734744200989, -122.418030231851)",121500284-E36 -160530448,KM03,16021076,Medical Incident,02/22/2016,02/21/2016,02/22/2016 06:38:35 AM,02/22/2016 06:39:47 AM,02/22/2016 06:39:59 AM,02/22/2016 06:40:59 AM,02/22/2016 06:51:06 AM,02/22/2016 06:57:41 AM,02/22/2016 07:12:04 AM,Code 2 Transport,02/22/2016 07:23:30 AM,900 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160530448-KM03 -130740168,E02,13024661,Alarms,03/15/2013,03/15/2013,03/15/2013 12:23:43 PM,03/15/2013 12:25:02 PM,03/15/2013 12:25:13 PM,03/15/2013 12:25:30 PM,03/15/2013 12:28:26 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 12:29:49 PM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,2,1,3,North Beach,"(37.798465838236, -122.407430691755)",130740168-E02 -130590317,E03,13019921,Medical Incident,02/28/2013,02/28/2013,02/28/2013 07:29:02 PM,02/28/2013 07:31:08 PM,02/28/2013 07:32:37 PM,02/28/2013 07:33:38 PM,02/28/2013 07:35:33 PM,04/25/2016 01:54:04 PM,04/25/2016 01:54:04 PM,Other,02/28/2013 07:38:05 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",130590317-E03 -121400299,E15,12046603,Medical Incident,05/19/2012,05/19/2012,05/19/2012 07:40:38 PM,05/19/2012 07:42:22 PM,05/19/2012 07:44:45 PM,05/19/2012 07:59:17 PM,05/19/2012 07:59:20 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/19/2012 08:23:03 PM,100 Block of MADRID ST,SF,94112,B09,43,6132,1,1,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7270917743498, -122.428757548678)",121400299-E15 -110370355,E43,11012354,Structure Fire,02/06/2011,02/06/2011,02/06/2011 07:28:39 PM,02/06/2011 07:28:40 PM,02/06/2011 07:28:52 PM,02/06/2011 07:29:44 PM,02/06/2011 07:33:01 PM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/06/2011 07:33:32 PM,500 Block of CAMBRIDGE ST,SF,94134,B09,43,6151,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7246014563756, -122.417723435873)",110370355-E43 -110990168,KM01,11032865,Medical Incident,04/09/2011,04/09/2011,04/09/2011 12:51:58 PM,04/09/2011 12:53:12 PM,04/09/2011 12:53:50 PM,04/09/2011 12:55:07 PM,04/09/2011 01:02:07 PM,04/09/2011 01:21:59 PM,04/09/2011 01:38:44 PM,Code 2 Transport,04/09/2011 02:10:32 PM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,false,,1,PRIVATE,2,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",110990168-KM01 -103120307,E12,10100148,Medical Incident,11/08/2010,11/08/2010,11/08/2010 08:04:54 PM,11/08/2010 08:06:32 PM,11/08/2010 08:07:28 PM,11/08/2010 08:09:17 PM,11/08/2010 08:11:26 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 08:41:35 PM,2500 Block of FULTON ST,SF,94118,B07,31,7111,3,3,3,true,,1,ENGINE,2,7,1,Inner Richmond,"(37.7742921485831, -122.458939567106)",103120307-E12 -131940158,E43,13065931,Medical Incident,07/13/2013,07/13/2013,07/13/2013 12:02:41 PM,07/13/2013 12:03:23 PM,07/13/2013 12:05:06 PM,07/13/2013 12:05:37 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 12:06:09 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,2,2,2,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",131940158-E43 -113560177,RS1,11118188,Medical Incident,12/22/2011,12/22/2011,12/22/2011 12:18:30 PM,12/22/2011 12:21:26 PM,12/22/2011 12:21:44 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,04/25/2016 02:01:01 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,,1,RESCUE SQUAD,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",113560177-RS1 -133270136,RS1,13111027,Other,11/23/2013,11/23/2013,11/23/2013 09:12:08 AM,11/23/2013 09:15:01 AM,11/23/2013 09:18:30 AM,11/23/2013 09:19:03 AM,11/23/2013 09:20:23 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 10:13:53 AM,600 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,false,Alarm,1,RESCUE SQUAD,3,1,6,Tenderloin,"(37.7865705542086, -122.413973061638)",133270136-RS1 -112220343,E16,11073464,Medical Incident,08/10/2011,08/10/2011,08/10/2011 08:46:45 PM,08/10/2011 08:47:31 PM,08/10/2011 08:48:14 PM,08/10/2011 08:49:41 PM,08/10/2011 08:51:45 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 09:03:26 PM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",112220343-E16 -103090207,94,10099051,Medical Incident,11/05/2010,11/05/2010,11/05/2010 02:49:26 PM,11/05/2010 02:50:23 PM,11/05/2010 02:51:12 PM,11/05/2010 02:51:39 PM,11/05/2010 02:53:58 PM,11/05/2010 03:14:37 PM,11/05/2010 03:18:07 PM,Code 3 Transport,11/05/2010 03:56:55 PM,1500 Block of PACIFIC AVE,SF,94109,B04,41,3125,3,3,3,true,,1,MEDIC,1,4,3,Russian Hill,"(37.7950782760706, -122.420748201669)",103090207-94 -101110281,B02,10034304,Alarms,04/21/2010,04/21/2010,04/21/2010 05:57:44 PM,04/21/2010 05:59:04 PM,04/21/2010 06:00:12 PM,04/21/2010 06:01:06 PM,04/21/2010 06:04:57 PM,04/25/2016 03:23:38 PM,04/25/2016 03:23:38 PM,Other,04/21/2010 06:06:27 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,,1,CHIEF,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",101110281-B02 -131230245,E09,13041487,Medical Incident,05/03/2013,05/03/2013,05/03/2013 01:38:09 PM,05/03/2013 01:38:44 PM,05/03/2013 01:40:43 PM,05/03/2013 01:42:58 PM,05/03/2013 01:45:43 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 02:02:37 PM,0 Block of IRONWOOD WAY,SF,94124,B10,25,6556,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7365296705973, -122.380044762122)",131230245-E09 -102310222,E36,10072730,Medical Incident,08/19/2010,08/19/2010,08/19/2010 02:40:07 PM,08/19/2010 02:40:17 PM,08/19/2010 02:40:48 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 02:41:51 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",102310222-E36 -160121660,63,16004767,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:36:33 PM,01/12/2016 12:36:33 PM,01/12/2016 12:37:41 PM,01/12/2016 12:37:55 PM,01/12/2016 12:40:05 PM,01/12/2016 01:11:15 PM,01/12/2016 01:21:53 PM,Code 2 Transport,01/12/2016 02:06:31 PM,SILVER AV/CAMBRIDGE ST,San Francisco,94134,B09,42,6144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,9,Excelsior,"(37.729046444895, -122.419486478081)",160121660-63 -160331260,KM08,16012933,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:04:33 AM,02/02/2016 11:04:33 AM,02/02/2016 11:05:14 AM,02/02/2016 11:08:13 AM,02/02/2016 11:09:19 AM,02/02/2016 11:28:52 AM,02/02/2016 11:38:26 AM,Code 2 Transport,02/02/2016 12:13:22 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",160331260-KM08 -102330008,E10,10073194,Medical Incident,08/21/2010,08/20/2010,08/21/2010 12:31:43 AM,08/21/2010 12:34:11 AM,08/21/2010 12:34:23 AM,08/21/2010 12:35:39 AM,08/21/2010 12:37:22 AM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/21/2010 12:39:17 AM,600 Block of EUCLID AVE,SF,94118,B07,10,4451,3,3,3,true,,1,ENGINE,2,7,2,Presidio Heights,"(37.7838990648034, -122.456258324628)",102330008-E10 -140270032,AM22,14009079,Traffic Collision,01/27/2014,01/26/2014,01/27/2014 04:58:57 AM,01/27/2014 04:59:14 AM,01/27/2014 04:59:40 AM,01/27/2014 05:00:20 AM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/27/2014 05:05:50 AM,MORAGA ST/46TH AV,SF,94122,B08,23,7661,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7548311825796, -122.505534443241)",140270032-AM22 -110490091,E15,11016111,Medical Incident,02/18/2011,02/18/2011,02/18/2011 08:25:32 AM,02/18/2011 08:25:35 AM,02/18/2011 08:26:25 AM,02/18/2011 08:27:07 AM,02/18/2011 08:30:13 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/18/2011 08:33:49 AM,700 Block of FOERSTER ST,SF,94127,B09,15,8247,1,2,2,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7350921935101, -122.448959925357)",110490091-E15 -160660032,AM16,16026205,Medical Incident,03/06/2016,03/05/2016,03/06/2016 12:06:16 AM,03/06/2016 12:08:47 AM,03/06/2016 12:09:01 AM,03/06/2016 12:09:31 AM,03/06/2016 12:16:33 AM,03/06/2016 12:27:53 AM,03/06/2016 12:36:41 AM,Code 2 Transport,03/06/2016 01:11:57 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160660032-AM16 -131090418,67,13036847,Medical Incident,04/19/2013,04/19/2013,04/19/2013 11:23:06 PM,04/19/2013 11:23:49 PM,04/19/2013 11:24:01 PM,04/19/2013 11:24:17 PM,04/19/2013 11:25:39 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Against Medical Advice,04/20/2013 12:06:00 AM,1300 Block of EVANS AVE,SF,94124,B10,25,6464,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",131090418-67 -160340164,85,16013218,Medical Incident,02/03/2016,02/02/2016,02/03/2016 01:45:55 AM,02/03/2016 01:47:55 AM,02/03/2016 01:48:03 AM,02/03/2016 01:48:26 AM,02/03/2016 01:57:51 AM,02/03/2016 02:16:19 AM,02/03/2016 02:33:27 AM,Code 2 Transport,02/03/2016 03:23:12 AM,1700 Block of 11TH AVE,San Francisco,94122,B08,22,7343,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.755553264712, -122.467936192928)",160340164-85 -160880148,68,16034788,Medical Incident,03/28/2016,03/27/2016,03/28/2016 01:11:09 AM,03/28/2016 01:12:48 AM,03/28/2016 01:13:10 AM,03/28/2016 01:13:29 AM,03/28/2016 01:16:34 AM,03/28/2016 01:45:25 AM,03/28/2016 01:45:25 AM,Code 2 Transport,03/28/2016 02:30:17 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160880148-68 -122620302,E13,12086625,Structure Fire,09/18/2012,09/18/2012,09/18/2012 07:13:40 PM,09/18/2012 07:13:40 PM,09/18/2012 07:14:21 PM,09/18/2012 07:14:53 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 07:16:32 PM,SANSOME ST/PINE ST,SF,94104,B01,13,1165,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7921084008601, -122.400933083929)",122620302-E13 -120260158,63,12008703,Medical Incident,01/26/2012,01/26/2012,01/26/2012 12:18:20 PM,01/26/2012 12:21:17 PM,01/26/2012 12:24:04 PM,01/26/2012 12:24:13 PM,01/26/2012 12:41:48 PM,01/26/2012 01:02:45 PM,01/26/2012 01:14:04 PM,Code 2 Transport,01/26/2012 01:43:45 PM,100 Block of MASON ST,SF,94102,B03,1,1366,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",120260158-63 -131150281,RC3,13038868,Structure Fire,04/25/2013,04/25/2013,04/25/2013 06:57:20 PM,04/25/2013 06:57:20 PM,04/25/2013 07:01:44 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 07:09:34 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Alarm,1,RESCUE CAPTAIN,4,6,9,Mission,"(37.7490412884368, -122.418135251703)",131150281-RC3 -131230152,E01,13041408,Structure Fire,05/03/2013,05/03/2013,05/03/2013 10:32:54 AM,05/03/2013 10:32:54 AM,05/03/2013 10:33:23 AM,05/03/2013 10:33:33 AM,05/03/2013 10:35:34 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 10:36:08 AM,MONTGOMERY ST/BUSH ST,SF,94104,B01,13,1235,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",131230152-E01 -111830150,KM12,11060403,Medical Incident,07/02/2011,07/02/2011,07/02/2011 12:10:04 PM,07/02/2011 12:11:04 PM,07/02/2011 12:11:30 PM,04/25/2016 02:03:52 PM,07/02/2011 12:15:31 PM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Patient Declined Transport,07/02/2011 12:48:33 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",111830150-KM12 -132280069,AM24,13076859,Medical Incident,08/16/2013,08/15/2013,08/16/2013 07:04:30 AM,08/16/2013 07:06:23 AM,08/16/2013 07:07:10 AM,08/16/2013 07:07:50 AM,08/16/2013 07:13:24 AM,08/16/2013 07:29:20 AM,08/16/2013 07:56:56 AM,Code 2 Transport,08/16/2013 08:23:01 AM,100 Block of SANTOS ST,SF,94134,B09,43,6244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",132280069-AM24 -121170336,KM15,12038911,Medical Incident,04/26/2012,04/26/2012,04/26/2012 09:12:45 PM,04/26/2012 09:14:08 PM,04/26/2012 09:16:04 PM,04/26/2012 09:16:35 PM,04/26/2012 09:25:00 PM,04/26/2012 09:51:05 PM,04/26/2012 09:59:27 PM,Code 2 Transport,04/26/2012 10:25:09 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",121170336-KM15 -140060249,E15,14002174,Medical Incident,01/06/2014,01/06/2014,01/06/2014 02:28:15 PM,01/06/2014 02:28:46 PM,01/06/2014 02:28:55 PM,01/06/2014 02:29:54 PM,01/06/2014 02:31:01 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 02:44:32 PM,100 Block of HOLLOWAY AVE,SF,94112,B09,15,8472,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.721904919521, -122.454617025243)",140060249-E15 -102480177,B04,10078358,Medical Incident,09/05/2010,09/05/2010,09/05/2010 12:44:05 PM,09/05/2010 12:44:19 PM,09/05/2010 12:44:32 PM,09/05/2010 12:45:09 PM,09/05/2010 01:01:14 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 01:02:13 PM,EDDY ST/SCOTT ST,SF,94115,B05,5,4133,E,E,3,false,,1,CHIEF,5,5,5,Western Addition,"(37.7808017697156, -122.437260058038)",102480177-B04 -160433043,AM20,16017427,Medical Incident,02/12/2016,02/12/2016,02/12/2016 06:41:02 PM,02/12/2016 06:42:03 PM,02/12/2016 06:42:36 PM,02/12/2016 06:43:25 PM,02/12/2016 06:50:43 PM,02/12/2016 07:14:42 PM,02/12/2016 07:24:16 PM,Code 2 Transport,02/12/2016 07:59:15 PM,900 Block of FILBERT ST,San Francisco,94133,B01,28,1436,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Russian Hill,"(37.8006671097614, -122.414578355169)",160433043-AM20 -130350309,T06,13012084,Structure Fire,02/04/2013,02/04/2013,02/04/2013 04:21:16 PM,02/04/2013 04:21:16 PM,02/04/2013 04:21:24 PM,02/04/2013 04:21:57 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/04/2013 04:26:41 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",130350309-T06 -111640103,E21,11054071,Medical Incident,06/13/2011,06/13/2011,06/13/2011 09:13:28 AM,06/13/2011 09:14:11 AM,06/13/2011 09:14:52 AM,06/13/2011 09:15:53 AM,06/13/2011 09:24:31 AM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/13/2011 09:24:36 AM,2800 Block of TURK BLVD,SF,94118,B05,21,4565,3,3,3,false,,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.7780501202623, -122.451998028803)",111640103-E21 -121380085,E14,12045785,Medical Incident,05/17/2012,05/17/2012,05/17/2012 08:07:23 AM,05/17/2012 08:08:57 AM,05/17/2012 08:09:15 AM,05/17/2012 08:10:21 AM,05/17/2012 08:12:21 AM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/17/2012 09:28:17 AM,30TH AV/GEARY BL,SF,94121,B07,14,722,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7798398321439, -122.490096577723)",121380085-E14 -123190315,79,12106177,Medical Incident,11/14/2012,11/14/2012,11/14/2012 06:50:47 PM,11/14/2012 06:52:30 PM,11/14/2012 06:53:58 PM,11/14/2012 06:54:24 PM,11/14/2012 06:57:39 PM,11/14/2012 07:21:47 PM,11/14/2012 07:39:42 PM,Code 2 Transport,11/14/2012 08:10:24 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123190315-79 -121050143,E33,12034729,Medical Incident,04/14/2012,04/14/2012,04/14/2012 10:48:05 AM,04/14/2012 10:48:26 AM,04/14/2012 10:48:45 AM,04/14/2012 10:49:02 AM,04/14/2012 10:53:10 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 11:09:41 AM,300 Block of ALLISON ST,SF,94112,B09,43,6217,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7105610673233, -122.440929507582)",121050143-E33 -111770437,79,11058586,Traffic Collision,06/26/2011,06/26/2011,06/26/2011 09:37:44 PM,06/26/2011 09:38:45 PM,06/26/2011 09:38:59 PM,06/26/2011 09:41:23 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Other,06/26/2011 09:41:39 PM,POTRERO AV/16TH ST,SF,94103,B02,29,2351,3,3,3,true,,1,MEDIC,4,2,10,Mission,"(37.7657832995202, -122.407534230594)",111770437-79 -123510386,E17,12117587,Medical Incident,12/16/2012,12/16/2012,12/16/2012 11:07:08 PM,12/16/2012 11:08:27 PM,12/16/2012 11:16:43 PM,12/16/2012 11:17:56 PM,12/16/2012 11:21:03 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/16/2012 11:40:21 PM,NEWCOMB AV/3RD ST,SF,94124,B10,17,6515,1,1,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",123510386-E17 -112930363,T11,11097355,Medical Incident,10/20/2011,10/20/2011,10/20/2011 09:52:41 PM,10/20/2011 09:54:02 PM,10/20/2011 09:54:18 PM,10/20/2011 09:55:28 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 09:57:27 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,TRUCK,3,6,9,Mission,"(37.7522394549791, -122.418445272851)",112930363-T11 -131040306,T07,13035030,Alarms,04/14/2013,04/14/2013,04/14/2013 06:16:02 PM,04/14/2013 06:20:17 PM,04/14/2013 06:21:15 PM,04/14/2013 06:23:48 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 06:25:27 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,false,Alarm,1,TRUCK,3,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",131040306-T07 -102400003,KM14,10075556,Traffic Collision,08/28/2010,08/27/2010,08/28/2010 12:04:40 AM,08/28/2010 12:04:40 AM,08/28/2010 12:05:23 AM,08/28/2010 12:05:57 AM,08/28/2010 12:10:35 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Against Medical Advice,08/28/2010 12:23:35 AM,BRODERICK ST/JEFFERSON ST,SF,94123,B04,16,4216,3,3,3,false,,1,PRIVATE,1,4,2,Marina,"(37.8044256996865, -122.445459231428)",102400003-KM14 -131050270,T08,13035342,Alarms,04/15/2013,04/15/2013,04/15/2013 03:47:32 PM,04/15/2013 03:48:25 PM,04/15/2013 03:49:48 PM,04/25/2016 01:53:18 PM,04/15/2013 03:53:25 PM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 03:58:22 PM,400 Block of ILLINOIS ST,SF,94158,B03,8,2374,3,3,3,false,Alarm,1,TRUCK,1,3,6,Mission Bay,"(37.7656728122297, -122.387971482123)",131050270-T08 -120830335,E07,12027691,Structure Fire,03/23/2012,03/23/2012,03/23/2012 08:12:06 PM,03/23/2012 08:12:39 PM,03/23/2012 08:13:00 PM,03/23/2012 08:14:02 PM,03/23/2012 08:16:05 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Other,03/23/2012 08:28:52 PM,3300 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,true,Fire,1,ENGINE,2,6,8,Mission,"(37.7552738020119, -122.422313025926)",120830335-E07 -133090280,85,13105136,Medical Incident,11/05/2013,11/05/2013,11/05/2013 04:14:13 PM,11/05/2013 04:14:55 PM,11/05/2013 04:16:30 PM,11/05/2013 04:17:02 PM,11/05/2013 04:30:17 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 04:32:19 PM,1200 Block of MASONIC AVE,SF,94117,B05,21,4466,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769728147466, -122.44532047465)",133090280-85 -120560280,96,12018579,Traffic Collision,02/25/2012,02/25/2012,02/25/2012 07:32:47 PM,02/25/2012 07:34:17 PM,02/25/2012 07:35:56 PM,02/25/2012 07:36:03 PM,02/25/2012 07:39:55 PM,02/25/2012 07:46:24 PM,02/25/2012 08:01:55 PM,Code 2 Transport,02/25/2012 08:13:47 PM,3000 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.723359097822, -122.401902489608)",120560280-96 -113120336,84,11103776,Medical Incident,11/08/2011,11/08/2011,11/08/2011 07:19:54 PM,11/08/2011 07:21:51 PM,11/08/2011 07:22:18 PM,11/08/2011 07:24:49 PM,11/08/2011 07:27:11 PM,11/08/2011 07:37:18 PM,11/08/2011 07:49:42 PM,Code 2 Transport,11/08/2011 08:05:40 PM,1100 Block of PALOU AVE,SF,94124,B10,17,6647,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",113120336-84 -133630017,KM07,13123167,Medical Incident,12/29/2013,12/28/2013,12/29/2013 01:20:45 AM,12/29/2013 01:22:44 AM,12/29/2013 01:23:13 AM,12/29/2013 01:24:05 AM,12/29/2013 01:30:48 AM,12/29/2013 02:01:52 AM,12/29/2013 02:09:45 AM,Code 2 Transport,12/29/2013 02:41:28 AM,1300 Block of VAN NESS AVE,SF,94109,B04,3,3156,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7877876566277, -122.421631319974)",133630017-KM07 -132050151,B02,13069393,Medical Incident,07/24/2013,07/24/2013,07/24/2013 11:57:59 AM,07/24/2013 11:58:23 AM,07/24/2013 12:06:57 PM,07/24/2013 12:07:37 PM,07/24/2013 12:09:19 PM,04/25/2016 01:51:39 PM,04/25/2016 01:51:39 PM,Other,07/24/2013 12:16:04 PM,400 Block of GROVE ST,SF,94102,B02,36,3315,3,2,2,false,Non Life-threatening,1,CHIEF,3,2,5,Hayes Valley,"(37.7776543498914, -122.423976044858)",132050151-B02 -103550315,E13,10114069,Alarms,12/21/2010,12/21/2010,12/21/2010 08:06:56 PM,12/21/2010 08:08:03 PM,12/21/2010 08:08:08 PM,12/21/2010 08:08:52 PM,12/21/2010 08:10:48 PM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,Other,12/21/2010 08:17:30 PM,500 Block of PACIFIC AVE,SF,94133,B01,13,1246,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7971157930221, -122.404677401547)",103550315-E13 -160851262,84,16033716,Traffic Collision,03/25/2016,03/25/2016,03/25/2016 10:24:39 AM,03/25/2016 10:24:39 AM,03/25/2016 10:24:55 AM,03/25/2016 10:25:26 AM,03/25/2016 10:42:04 AM,03/25/2016 10:43:09 AM,03/25/2016 11:09:03 AM,Code 2 Transport,03/25/2016 12:02:08 PM,VALLEJO ST/FILLMORE ST,San Francisco,94123,B04,16,3551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7952258324577, -122.435113289743)",160851262-84 -102340184,E15,10073628,Medical Incident,08/22/2010,08/22/2010,08/22/2010 01:31:32 PM,08/22/2010 01:33:03 PM,08/22/2010 01:33:36 PM,08/22/2010 01:34:18 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 01:41:00 PM,4800 Block of MISSION ST,SF,94112,B09,43,6123,3,3,3,true,,1,ENGINE,3,9,11,Outer Mission,"(37.7206322139604, -122.437984003995)",102340184-E15 -111020095,E14,11033757,Medical Incident,04/12/2011,04/12/2011,04/12/2011 08:57:25 AM,04/12/2011 08:58:54 AM,04/12/2011 08:59:24 AM,04/12/2011 09:01:54 AM,04/12/2011 09:04:46 AM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Other,04/12/2011 09:07:55 AM,600 Block of 34TH AVE,SF,94121,B07,34,7251,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7767969175813, -122.494102661436)",111020095-E14 -110510131,E43,11016844,Medical Incident,02/20/2011,02/20/2011,02/20/2011 09:29:45 AM,02/20/2011 09:29:48 AM,02/20/2011 09:30:05 AM,02/20/2011 09:31:11 AM,02/20/2011 09:34:19 AM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 09:49:31 AM,0 Block of FARRAGUT AVE,SF,94112,B09,33,6212,3,3,3,false,,1,ENGINE,1,9,11,Outer Mission,"(37.710378052108, -122.449751419152)",110510131-E43 -113610295,T11,11120052,Structure Fire,12/27/2011,12/27/2011,12/27/2011 08:56:35 PM,12/27/2011 08:56:35 PM,12/27/2011 08:56:44 PM,12/27/2011 08:59:10 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 09:00:12 PM,3200 Block of FOLSOM ST,SF,94110,B06,11,5664,3,3,3,false,,1,TRUCK,2,6,9,Bernal Heights,"(37.7469641460451, -122.413620574987)",113610295-T11 -130220027,T06,13007460,Structure Fire,01/22/2013,01/21/2013,01/22/2013 02:40:55 AM,01/22/2013 02:40:55 AM,01/22/2013 02:40:59 AM,01/22/2013 02:43:05 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 02:45:23 AM,0 Block of DUBOCE AVE,SF,94103,B02,36,5124,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7698769653623, -122.420425746328)",130220027-T06 -132920127,E34,13099326,Medical Incident,10/19/2013,10/19/2013,10/19/2013 10:53:42 AM,10/19/2013 10:54:10 AM,10/19/2013 10:54:37 AM,10/19/2013 10:56:17 AM,10/19/2013 10:59:27 AM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 11:07:53 AM,800 Block of 47TH AVE,SF,94121,B07,34,7277,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7724297631777, -122.507750347312)",132920127-E34 -160582775,KM09,16023222,Medical Incident,02/27/2016,02/27/2016,02/27/2016 05:44:11 PM,02/27/2016 05:44:49 PM,02/27/2016 05:44:59 PM,02/27/2016 05:45:25 PM,02/27/2016 05:52:36 PM,02/27/2016 06:14:13 PM,02/27/2016 06:20:23 PM,Code 2 Transport,02/27/2016 06:54:44 PM,900 Block of COLE ST,San Francisco,94117,B05,12,5144,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7653245528088, -122.449932240368)",160582775-KM09 -131600261,72,13054425,Medical Incident,06/09/2013,06/09/2013,06/09/2013 05:34:21 PM,06/09/2013 05:35:03 PM,06/09/2013 05:35:14 PM,06/09/2013 05:35:45 PM,06/09/2013 05:38:34 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Patient Declined Transport,06/09/2013 06:16:09 PM,VAN NESS AV/CLAY ST,SF,94109,B04,41,3154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7921746447197, -122.4226941645)",131600261-72 -110930168,94,11030858,Medical Incident,04/03/2011,04/03/2011,04/03/2011 11:59:38 AM,04/03/2011 12:00:34 PM,04/03/2011 12:01:10 PM,04/03/2011 12:02:18 PM,04/03/2011 12:05:57 PM,04/03/2011 12:18:46 PM,04/03/2011 12:33:11 PM,Code 2 Transport,04/03/2011 01:07:48 PM,CALL BOX: PALACE OF LEGION OF HONOR,SF,94121,B07,34,7235,3,3,3,true,,1,MEDIC,2,7,1,Lincoln Park,"(37.7849108847772, -122.499514565485)",110930168-94 -160881407,AM10,16034914,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:11:42 AM,03/28/2016 11:13:57 AM,03/28/2016 11:17:34 AM,03/28/2016 11:18:13 AM,03/28/2016 11:26:57 AM,03/28/2016 11:46:00 AM,03/28/2016 12:01:07 PM,Code 2 Transport,03/28/2016 12:36:52 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160881407-AM10 -160042237,55,16001648,Medical Incident,01/04/2016,01/04/2016,01/04/2016 03:09:19 PM,01/04/2016 03:09:51 PM,01/04/2016 03:10:07 PM,01/04/2016 03:10:32 PM,01/04/2016 03:13:02 PM,01/04/2016 03:40:31 PM,01/04/2016 04:00:29 PM,Code 2 Transport,01/04/2016 05:30:22 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160042237-55 -160660675,89,16026300,Medical Incident,03/06/2016,03/05/2016,03/06/2016 07:34:56 AM,03/06/2016 07:36:28 AM,03/06/2016 07:36:49 AM,03/06/2016 07:37:06 AM,03/06/2016 07:44:27 AM,03/06/2016 08:00:05 AM,03/06/2016 08:12:53 AM,Code 2 Transport,03/06/2016 09:04:58 AM,200 Block of LIBERTY ST,San Francisco,94114,B06,11,5457,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7574157301461, -122.426834770854)",160660675-89 -160284089,AM24,16011270,Medical Incident,01/28/2016,01/28/2016,01/28/2016 11:12:15 PM,01/28/2016 11:12:57 PM,01/28/2016 11:13:25 PM,01/28/2016 11:15:05 PM,01/28/2016 11:29:05 PM,01/28/2016 11:53:10 PM,01/29/2016 12:19:11 AM,Code 2 Transport,01/29/2016 12:51:19 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160284089-AM24 -131150339,E28,13038925,Water Rescue,04/25/2013,04/25/2013,04/25/2013 11:26:52 PM,04/25/2013 11:29:24 PM,04/25/2013 11:29:42 PM,04/25/2013 11:30:55 PM,04/25/2013 11:33:30 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 11:45:37 PM,2800 Block of HYDE ST,SF,94109,B03,28,1616,E,E,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8071154533997, -122.420720018434)",131150339-E28 -160742831,53,16029417,Medical Incident,03/14/2016,03/14/2016,03/14/2016 05:05:10 PM,03/14/2016 05:06:04 PM,03/14/2016 05:06:21 PM,03/14/2016 05:06:39 PM,03/14/2016 05:17:38 PM,03/14/2016 05:17:41 PM,03/14/2016 05:35:50 PM,Code 2 Transport,03/14/2016 06:09:34 PM,21ST ST/SHOTWELL ST,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7572324112144, -122.415626198524)",160742831-53 -111170227,E03,11038654,Medical Incident,04/27/2011,04/27/2011,04/27/2011 03:26:46 PM,04/27/2011 03:27:40 PM,04/27/2011 03:30:46 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 03:31:31 PM,STEVENSON ST/5TH ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,3,3,6,South of Market,"(37.783528916199, -122.407482813601)",111170227-E03 -140720233,D3,14024353,Structure Fire,03/13/2014,03/13/2014,03/13/2014 02:28:23 PM,03/13/2014 02:28:52 PM,03/13/2014 02:29:27 PM,03/13/2014 02:30:25 PM,03/13/2014 02:34:47 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Fire,03/13/2014 02:39:30 PM,17TH ST/CASTRO ST,SAN FRANCISCO,94114,B05,6,5417,3,3,3,false,Alarm,1,CHIEF,8,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",140720233-D3 -160730194,75,16028853,Medical Incident,03/13/2016,03/12/2016,03/13/2016 01:31:48 AM,03/13/2016 01:33:01 AM,03/13/2016 01:34:54 AM,03/13/2016 01:35:10 AM,03/13/2016 01:44:46 AM,03/13/2016 03:05:50 AM,03/13/2016 03:13:33 AM,Code 2 Transport,03/13/2016 04:18:45 AM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7584203036531, -122.418963082325)",160730194-75 -122990218,77,12099129,Medical Incident,10/25/2012,10/25/2012,10/25/2012 03:05:11 PM,10/25/2012 03:09:56 PM,10/25/2012 03:13:00 PM,10/25/2012 03:16:12 PM,10/25/2012 03:30:52 PM,10/25/2012 03:44:14 PM,10/25/2012 04:07:10 PM,Code 2 Transport,10/25/2012 04:29:01 PM,0 Block of TAPIA DR,SF,94132,B08,19,868,1,1,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7219462985802, -122.48090573832)",122990218-77 -110620298,E38,11020466,Medical Incident,03/03/2011,03/03/2011,03/03/2011 06:32:44 PM,03/03/2011 06:33:25 PM,03/03/2011 06:33:50 PM,03/03/2011 06:34:44 PM,03/03/2011 06:36:39 PM,04/25/2016 02:05:48 PM,04/25/2016 02:05:48 PM,Other,03/03/2011 06:56:05 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,2,2,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",110620298-E38 -112210041,E43,11072888,Medical Incident,08/09/2011,08/08/2011,08/09/2011 04:52:01 AM,08/09/2011 04:53:51 AM,08/09/2011 04:54:07 AM,08/09/2011 04:55:49 AM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 05:05:36 AM,800 Block of GENEVA AVE,SF,94112,B09,43,6175,A,A,2,false,,1,ENGINE,4,9,11,Outer Mission,"(37.7168169212828, -122.441408157149)",112210041-E43 -102400186,92,10075703,Medical Incident,08/28/2010,08/28/2010,08/28/2010 01:54:44 PM,08/28/2010 01:55:41 PM,08/28/2010 02:00:43 PM,08/28/2010 02:00:53 PM,08/28/2010 02:16:39 PM,08/28/2010 02:35:01 PM,08/28/2010 02:54:30 PM,Code 2 Transport,08/28/2010 03:30:39 PM,0 Block of OLIVER ST,SF,94112,B09,33,6212,2,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7089141999968, -122.450236359264)",102400186-92 -133500353,E35,13118957,Alarms,12/16/2013,12/16/2013,12/16/2013 06:55:28 PM,12/16/2013 06:55:39 PM,12/16/2013 06:55:46 PM,12/16/2013 06:56:05 PM,12/16/2013 06:58:56 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,12/16/2013 07:05:53 PM,100 Block of STEUART ST,SF,94105,B03,35,2111,3,3,3,false,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7926568376756, -122.39236449327)",133500353-E35 -160611140,58,16024260,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:46:29 AM,03/01/2016 10:47:43 AM,03/01/2016 10:48:19 AM,03/01/2016 10:48:43 AM,03/01/2016 10:53:36 AM,03/01/2016 11:11:00 AM,03/01/2016 11:19:08 AM,Code 2 Transport,03/01/2016 12:14:37 PM,400 Block of BALBOA ST,San Francisco,94118,B07,31,7123,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7773135972539, -122.463479596584)",160611140-58 -160670153,52,16026569,Medical Incident,03/07/2016,03/06/2016,03/07/2016 02:03:11 AM,03/07/2016 02:05:32 AM,03/07/2016 02:05:54 AM,03/07/2016 02:06:00 AM,03/07/2016 02:11:30 AM,03/07/2016 02:35:22 AM,03/07/2016 02:49:32 AM,Code 2 Transport,03/07/2016 03:06:57 AM,4000 Block of NORIEGA ST,San Francisco,94122,B08,23,7725,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7528382693813, -122.50700721306)",160670153-52 -160182953,64,16007364,Medical Incident,01/18/2016,01/18/2016,01/18/2016 07:50:18 PM,01/18/2016 07:51:22 PM,01/18/2016 07:51:32 PM,01/18/2016 07:51:44 PM,01/18/2016 07:53:19 PM,01/18/2016 08:08:32 PM,01/18/2016 08:37:28 PM,Code 2 Transport,01/18/2016 09:35:40 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7205476379806, -122.437805967469)",160182953-64 -140950286,E33,14032033,Medical Incident,04/05/2014,04/05/2014,04/05/2014 05:20:00 PM,04/05/2014 05:22:14 PM,04/05/2014 05:22:29 PM,04/05/2014 05:23:26 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Code 3 Transport,04/05/2014 05:24:20 PM,800 Block of OCEAN AVE,SAN FRANCISCO,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,7,Oceanview/Merced/Ingleside,"(37.7228437407708, -122.450588711327)",140950286-E33 -111400299,AM10,11046641,Medical Incident,05/20/2011,05/20/2011,05/20/2011 07:51:18 PM,05/20/2011 07:52:03 PM,05/20/2011 07:53:06 PM,05/20/2011 07:53:46 PM,05/20/2011 07:57:21 PM,05/20/2011 08:08:21 PM,05/20/2011 08:14:23 PM,Code 2 Transport,05/20/2011 08:40:38 PM,300 Block of PINE ST,SF,94104,B01,13,1165,3,3,3,false,,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7919141534886, -122.402017229103)",111400299-AM10 -160690822,72,16027379,Medical Incident,03/09/2016,03/09/2016,03/09/2016 08:50:51 AM,03/09/2016 08:51:17 AM,03/09/2016 08:53:21 AM,03/09/2016 08:53:46 AM,03/09/2016 09:14:33 AM,03/09/2016 09:16:36 AM,03/09/2016 09:31:58 AM,Code 2 Transport,03/09/2016 10:12:27 AM,2000 Block of GREENWICH ST,San Francisco,94123,B04,16,3444,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7992109753413, -122.4333916159)",160690822-72 -122310373,77,12076777,Medical Incident,08/18/2012,08/18/2012,08/18/2012 11:26:14 PM,08/18/2012 11:27:02 PM,08/18/2012 11:27:13 PM,08/18/2012 11:27:40 PM,08/18/2012 11:41:22 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Patient Declined Transport,08/19/2012 12:13:22 AM,1600 Block of STOCKTON ST,SF,94133,B01,28,1335,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8009162018101, -122.409211049005)",122310373-77 -122490030,E41,12082228,Medical Incident,09/05/2012,09/04/2012,09/05/2012 02:39:23 AM,09/05/2012 02:40:37 AM,09/05/2012 02:41:20 AM,09/05/2012 02:41:35 AM,09/05/2012 02:49:34 AM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/05/2012 03:10:57 AM,1500 Block of LEAVENWORTH ST,SF,94109,B01,41,1535,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7952323460567, -122.416494402639)",122490030-E41 -160563974,AM20,16022557,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:27:53 PM,02/25/2016 10:29:04 PM,02/25/2016 10:29:41 PM,02/25/2016 10:30:16 PM,02/25/2016 10:36:51 PM,02/25/2016 10:56:16 PM,02/25/2016 11:10:54 PM,Code 2 Transport,02/26/2016 12:05:24 AM,1900 Block of OCEAN AVE,San Francisco,94127,B09,15,8456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7257598547537, -122.463278950857)",160563974-AM20 -111160177,E07,11038274,Medical Incident,04/26/2011,04/26/2011,04/26/2011 12:39:11 PM,04/26/2011 12:41:01 PM,04/26/2011 12:41:19 PM,04/26/2011 12:42:18 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 12:49:09 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",111160177-E07 -131890028,67,13064298,Medical Incident,07/08/2013,07/07/2013,07/08/2013 04:44:51 AM,07/08/2013 04:48:09 AM,07/08/2013 04:49:07 AM,07/08/2013 04:49:36 AM,07/08/2013 04:52:01 AM,07/08/2013 05:02:52 AM,07/08/2013 05:08:48 AM,Code 2 Transport,07/08/2013 05:30:36 AM,3RD ST/KIRKWOOD AV,SF,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7379553967402, -122.389587380179)",131890028-67 -110800072,E28,11026294,Medical Incident,03/21/2011,03/20/2011,03/21/2011 07:03:14 AM,03/21/2011 07:04:21 AM,03/21/2011 07:04:38 AM,03/21/2011 07:05:43 AM,03/21/2011 07:07:20 AM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 07:20:48 AM,1500 Block of STOCKTON ST,SF,94133,B01,28,1334,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.7999595181379, -122.409170597925)",110800072-E28 -102650013,77,10083739,Medical Incident,09/22/2010,09/21/2010,09/22/2010 12:39:57 AM,09/22/2010 12:40:19 AM,09/22/2010 12:40:56 AM,09/22/2010 12:41:21 AM,09/22/2010 12:50:43 AM,09/22/2010 01:03:25 AM,09/22/2010 01:16:12 AM,Code 2 Transport,09/22/2010 01:34:45 AM,200 Block of GEARY ST,SF,94108,B01,1,1323,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",102650013-77 -113590286,79,11119465,Medical Incident,12/25/2011,12/25/2011,12/25/2011 09:38:47 PM,12/25/2011 09:39:03 PM,12/25/2011 09:39:25 PM,12/25/2011 09:39:39 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,Other,12/25/2011 09:42:44 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,2,2,true,,1,MEDIC,4,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",113590286-79 -111920346,62,11063513,Medical Incident,07/11/2011,07/11/2011,07/11/2011 07:38:11 PM,07/11/2011 07:38:38 PM,07/11/2011 07:38:59 PM,07/11/2011 07:40:40 PM,07/11/2011 07:41:50 PM,07/11/2011 08:12:07 PM,07/11/2011 08:25:21 PM,Code 2 Transport,07/11/2011 08:40:47 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,MEDIC,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",111920346-62 -130800186,T03,13026746,Other,03/21/2013,03/21/2013,03/21/2013 12:30:22 PM,03/21/2013 12:30:23 PM,03/21/2013 12:30:23 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 12:31:47 PM,1100 Block of POST ST,SF,94109,B04,3,3161,3,3,3,false,Alarm,1,TRUCK,1,4,3,Nob Hill,"(37.786777482512, -122.420759970574)",130800186-T03 -131450317,E07,13049323,Medical Incident,05/25/2013,05/25/2013,05/25/2013 10:04:10 PM,05/25/2013 10:04:18 PM,05/25/2013 10:05:22 PM,05/25/2013 10:06:07 PM,05/25/2013 10:08:25 PM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,Other,05/25/2013 10:15:17 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",131450317-E07 -131140192,T15,13038445,Medical Incident,04/24/2013,04/24/2013,04/24/2013 01:10:25 PM,04/24/2013 01:10:50 PM,04/24/2013 01:11:09 PM,04/24/2013 01:12:12 PM,04/24/2013 01:15:18 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 01:16:10 PM,400 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,3,2,2,false,Potentially Life-Threatening,1,TRUCK,1,9,11,Oceanview/Merced/Ingleside,"(37.7144912745705, -122.455997573047)",131140192-T15 -121240403,T07,12041352,Structure Fire,05/03/2012,05/03/2012,05/03/2012 11:54:56 PM,05/03/2012 11:54:56 PM,05/03/2012 11:55:03 PM,05/03/2012 11:56:43 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/03/2012 11:58:47 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,false,Alarm,1,TRUCK,3,6,9,Mission,"(37.7571666434801, -122.416719595074)",121240403-T07 -120490316,T05,12016336,Structure Fire,02/18/2012,02/18/2012,02/18/2012 08:59:03 PM,02/18/2012 08:59:04 PM,02/18/2012 08:59:11 PM,02/18/2012 09:00:07 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Other,02/18/2012 09:00:56 PM,FRANKLIN ST/FELL ST,SF,94102,B02,36,3213,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7761587640112, -122.421148424067)",120490316-T05 -133390344,E01,13115017,Medical Incident,12/05/2013,12/05/2013,12/05/2013 08:23:43 PM,12/05/2013 08:24:14 PM,12/05/2013 08:24:39 PM,12/05/2013 08:26:08 PM,12/05/2013 08:27:55 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 08:43:45 PM,300 Block of TEHAMA ST,SF,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7821103331421, -122.403196436662)",133390344-E01 -160520657,84,16020709,Medical Incident,02/21/2016,02/20/2016,02/21/2016 05:37:52 AM,02/21/2016 05:40:14 AM,02/21/2016 05:41:05 AM,02/21/2016 05:41:21 AM,02/21/2016 05:49:15 AM,02/21/2016 06:00:07 AM,02/21/2016 06:11:53 AM,Code 2 Transport,02/21/2016 06:47:26 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160520657-84 -113320354,T03,11110125,Structure Fire,11/28/2011,11/28/2011,11/28/2011 07:40:17 PM,11/28/2011 07:41:11 PM,11/28/2011 07:41:42 PM,11/28/2011 07:58:29 PM,11/28/2011 08:01:15 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/28/2011 08:25:36 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,TRUCK,8,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",113320354-T03 -112210376,RC3,11073176,Medical Incident,08/09/2011,08/09/2011,08/09/2011 11:11:31 PM,08/09/2011 11:12:23 PM,08/09/2011 11:12:33 PM,08/09/2011 11:14:56 PM,08/09/2011 11:18:37 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 11:30:49 PM,0 Block of HOFFMAN AVE,SF,94114,B06,24,5373,3,3,3,true,,1,RESCUE CAPTAIN,2,6,8,Noe Valley,"(37.7536986542799, -122.440960677385)",112210376-RC3 -131130190,E42,13038101,Medical Incident,04/23/2013,04/23/2013,04/23/2013 01:14:55 PM,04/23/2013 01:17:20 PM,04/23/2013 01:17:32 PM,04/23/2013 01:18:30 PM,04/23/2013 01:20:27 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 01:37:59 PM,500 Block of GOETTINGEN ST,SF,94134,B10,42,6332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.725041918425, -122.405887060725)",131130190-E42 -130730093,KM12,13024281,Medical Incident,03/14/2013,03/14/2013,03/14/2013 09:02:13 AM,03/14/2013 09:02:31 AM,03/14/2013 09:03:23 AM,03/14/2013 09:04:06 AM,03/14/2013 09:12:56 AM,03/14/2013 09:21:58 AM,03/14/2013 09:39:58 AM,Code 2 Transport,03/14/2013 10:07:09 AM,2100 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8044382972452, -122.411605476142)",130730093-KM12 -160112835,KM09,16004513,Medical Incident,01/11/2016,01/11/2016,01/11/2016 06:23:26 PM,01/11/2016 06:23:26 PM,01/11/2016 06:23:52 PM,01/11/2016 06:24:18 PM,01/11/2016 06:29:11 PM,01/11/2016 06:34:06 PM,01/11/2016 06:43:11 PM,Code 2 Transport,01/11/2016 06:58:59 PM,SCOTT ST/CHESTNUT ST,San Francisco,94123,B04,16,4115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.8001901863715, -122.441177375002)",160112835-KM09 -120520011,T14,12017031,Gas Leak (Natural and LP Gases),02/21/2012,02/20/2012,02/21/2012 12:56:25 AM,02/21/2012 12:57:41 AM,02/21/2012 12:58:25 AM,02/21/2012 01:00:19 AM,02/21/2012 01:04:17 AM,04/25/2016 02:00:02 PM,04/25/2016 02:00:02 PM,Other,02/21/2012 01:07:58 AM,4400 Block of GEARY BLVD,SF,94118,B07,31,7135,3,3,3,false,Alarm,1,TRUCK,3,7,1,Inner Richmond,"(37.7810280644975, -122.466965657749)",120520011-T14 -160900910,73,16035637,Medical Incident,03/30/2016,03/30/2016,03/30/2016 08:53:15 AM,03/30/2016 08:54:09 AM,03/30/2016 08:54:18 AM,03/30/2016 08:54:32 AM,03/30/2016 09:06:16 AM,03/30/2016 09:25:18 AM,03/30/2016 10:14:01 AM,Code 2 Transport,03/30/2016 11:00:07 AM,POTRERO AV/23RD ST,San Francisco,94110,B10,37,2552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Potrero Hill,"(37.7545642123343, -122.406480459209)",160900910-73 -113140149,E05,11104307,Medical Incident,11/10/2011,11/10/2011,11/10/2011 11:52:49 AM,11/10/2011 11:54:22 AM,11/10/2011 11:55:04 AM,11/10/2011 11:55:25 AM,11/10/2011 11:57:19 AM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 12:01:13 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,E,E,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",113140149-E05 -122690147,T05,12088825,Medical Incident,09/25/2012,09/25/2012,09/25/2012 01:03:59 PM,09/25/2012 01:08:49 PM,09/25/2012 01:09:00 PM,09/25/2012 01:09:48 PM,09/25/2012 01:12:03 PM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,09/25/2012 01:16:13 PM,1800 Block of ELLIS ST,SF,94115,B05,5,3644,3,3,3,false,Non Life-threatening,1,TRUCK,1,5,5,Western Addition,"(37.7818879022854, -122.436641324153)",122690147-T05 -122770252,89,12091571,Medical Incident,10/03/2012,10/03/2012,10/03/2012 01:55:50 PM,10/03/2012 01:58:03 PM,10/03/2012 01:58:30 PM,10/03/2012 01:58:42 PM,10/03/2012 02:07:54 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 02:10:07 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122770252-89 -121280261,E02,12042652,Medical Incident,05/07/2012,05/07/2012,05/07/2012 03:06:36 PM,05/07/2012 03:07:49 PM,05/07/2012 03:08:26 PM,05/07/2012 03:09:28 PM,05/07/2012 03:15:32 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 03:26:08 PM,600 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7871121680272, -122.400833489392)",121280261-E02 -160723117,KM07,16028762,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:34:35 PM,03/12/2016 08:34:51 PM,03/12/2016 08:35:03 PM,03/12/2016 08:36:18 PM,03/12/2016 08:41:15 PM,03/12/2016 09:03:40 PM,03/12/2016 09:18:32 PM,Code 2 Transport,03/12/2016 09:49:08 PM,1500 Block of 30TH AVE,San Francisco,94122,B08,18,7535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7583830897079, -122.488513553465)",160723117-KM07 -160021269,65,16000706,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:31:06 AM,01/02/2016 11:31:20 AM,01/02/2016 11:32:30 AM,01/02/2016 11:32:40 AM,01/02/2016 11:43:09 AM,01/02/2016 11:54:45 AM,01/02/2016 12:09:13 PM,Code 2 Transport,01/02/2016 01:02:33 PM,GENEVA AV/SAN JOSE AV,San Francisco,94112,B09,15,8313,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",160021269-65 -131120160,83,13037670,Medical Incident,04/22/2013,04/22/2013,04/22/2013 11:19:16 AM,04/22/2013 11:19:16 AM,04/22/2013 11:21:20 AM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Other,04/25/2016 01:53:11 PM,300 Block of SUTTER ST,SF,94108,B01,1,1324,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7894784048694, -122.406166894053)",131120160-83 -130170188,KM12,13005782,Medical Incident,01/17/2013,01/17/2013,01/17/2013 01:11:22 PM,01/17/2013 01:12:04 PM,01/17/2013 01:13:04 PM,01/17/2013 01:13:37 PM,01/17/2013 01:44:06 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Code 2 Transport,01/17/2013 02:23:33 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130170188-KM12 -111950363,59,11064528,Medical Incident,07/14/2011,07/14/2011,07/14/2011 09:03:35 PM,07/14/2011 09:04:11 PM,07/14/2011 09:04:36 PM,07/14/2011 09:04:54 PM,07/14/2011 09:06:11 PM,07/14/2011 09:29:00 PM,07/14/2011 09:35:33 PM,Code 2 Transport,07/14/2011 09:48:32 PM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",111950363-59 -123000042,B07,12099320,Medical Incident,10/26/2012,10/25/2012,10/26/2012 02:46:49 AM,10/26/2012 02:48:49 AM,10/26/2012 02:49:24 AM,10/26/2012 02:52:02 AM,10/26/2012 02:54:10 AM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,Other,10/26/2012 03:04:01 AM,100 Block of 20TH AVE,SF,94121,B07,31,7163,A,A,2,false,Potentially Life-Threatening,1,CHIEF,3,7,1,Outer Richmond,"(37.7850571442915, -122.479649201881)",123000042-B07 -111560247,93,11051618,Medical Incident,06/05/2011,06/05/2011,06/05/2011 02:09:08 PM,06/05/2011 02:13:44 PM,06/05/2011 02:13:56 PM,06/05/2011 02:14:12 PM,06/05/2011 02:18:09 PM,06/05/2011 02:28:50 PM,06/05/2011 02:37:58 PM,Code 2 Transport,06/05/2011 03:14:08 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",111560247-93 -123610094,E13,12120729,Alarms,12/26/2012,12/26/2012,12/26/2012 09:23:16 AM,12/26/2012 09:25:38 AM,12/26/2012 09:25:53 AM,12/26/2012 09:26:53 AM,12/26/2012 09:29:29 AM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 09:30:21 AM,300 Block of THE EMBARCADERO,SF,94111,B01,13,903,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",123610094-E13 -160120480,82,16004662,Medical Incident,01/12/2016,01/11/2016,01/12/2016 06:28:43 AM,01/12/2016 06:31:50 AM,01/12/2016 06:33:06 AM,01/12/2016 06:33:13 AM,01/12/2016 06:51:29 AM,01/12/2016 07:03:29 AM,01/12/2016 07:15:57 AM,Code 2 Transport,01/12/2016 07:47:55 AM,1800 Block of POST ST,San Francisco,94115,B04,5,3513,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7853160090058, -122.432236013697)",160120480-82 -112910144,T15,11096537,Alarms,10/18/2011,10/18/2011,10/18/2011 10:39:19 AM,10/18/2011 10:41:52 AM,10/18/2011 10:42:03 AM,10/18/2011 10:43:48 AM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/18/2011 10:49:26 AM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,3,3,3,false,,1,TRUCK,3,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",112910144-T15 -160303044,77,16011900,Medical Incident,01/30/2016,01/30/2016,01/30/2016 06:24:24 PM,01/30/2016 06:26:37 PM,01/30/2016 06:26:58 PM,01/30/2016 06:27:07 PM,01/30/2016 06:31:45 PM,01/30/2016 07:00:40 PM,01/30/2016 07:11:48 PM,Code 2 Transport,01/30/2016 07:34:38 PM,0 Block of 5TH ST,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7829058754034, -122.40679650522)",160303044-77 -160073902,84,16003031,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:58:51 PM,01/07/2016 10:59:28 PM,01/07/2016 10:59:54 PM,01/07/2016 11:00:06 PM,01/07/2016 11:04:53 PM,01/07/2016 11:21:20 PM,01/07/2016 11:30:52 PM,Code 2 Transport,01/08/2016 12:37:50 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",160073902-84 -123030176,81,12100503,Medical Incident,10/29/2012,10/28/2012,10/29/2012 07:33:25 AM,10/29/2012 07:34:50 AM,10/29/2012 07:35:34 AM,10/29/2012 07:35:58 AM,10/29/2012 07:41:55 AM,10/29/2012 08:08:32 AM,04/25/2016 01:56:04 PM,Code 2 Transport,10/29/2012 08:53:59 AM,2500 Block of 40TH AVE,SF,94116,B08,18,7617,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7392586275396, -122.498062678439)",123030176-81 -132860359,E31,13097432,Medical Incident,10/13/2013,10/13/2013,10/13/2013 09:44:15 PM,10/13/2013 09:46:43 PM,10/13/2013 09:47:12 PM,10/13/2013 09:48:01 PM,10/13/2013 09:50:33 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/13/2013 09:55:25 PM,4000 Block of FULTON ST,SF,94118,B07,31,7156,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7730416077459, -122.475086257619)",132860359-E31 -131770048,94,13059972,Medical Incident,06/26/2013,06/25/2013,06/26/2013 02:57:07 AM,06/26/2013 02:58:44 AM,06/26/2013 03:15:05 AM,06/26/2013 03:15:50 AM,06/26/2013 03:22:15 AM,06/26/2013 03:35:28 AM,06/26/2013 03:42:45 AM,Code 2 Transport,06/26/2013 04:02:03 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131770048-94 -121290377,E14,12043102,Medical Incident,05/08/2012,05/08/2012,05/08/2012 11:46:05 PM,05/08/2012 11:46:51 PM,05/08/2012 11:47:10 PM,05/08/2012 11:49:59 PM,05/08/2012 11:51:38 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Other,05/09/2012 12:29:18 AM,400 Block of 17TH AVE,SF,94118,B07,31,7161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,1,Outer Richmond,"(37.7795181030335, -122.47602814983)",121290377-E14 -132840060,E36,13096518,Medical Incident,10/11/2013,10/10/2013,10/11/2013 06:49:20 AM,10/11/2013 06:49:55 AM,10/11/2013 06:50:29 AM,10/11/2013 06:52:20 AM,10/11/2013 06:56:40 AM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/11/2013 07:02:25 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,2,2,false,Non Life-threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132840060-E36 -102640313,RS1,10083664,Medical Incident,09/21/2010,09/21/2010,09/21/2010 06:58:48 PM,09/21/2010 07:00:01 PM,09/21/2010 07:00:43 PM,09/21/2010 07:01:28 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:01:43 PM,6TH ST/MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7809711823918, -122.408708674954)",102640313-RS1 -133300322,T09,13112180,Structure Fire,11/26/2013,11/26/2013,11/26/2013 08:24:37 PM,11/26/2013 08:24:37 PM,11/26/2013 08:24:45 PM,11/26/2013 08:26:13 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,Fire,11/26/2013 08:28:45 PM,26TH ST/HAMPSHIRE ST,SF,94110,B06,9,5616,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7497166298249, -122.406896451435)",133300322-T09 -160742514,76,16029396,Medical Incident,03/14/2016,03/14/2016,03/14/2016 03:52:15 PM,03/14/2016 03:53:22 PM,03/14/2016 03:56:28 PM,03/14/2016 03:56:36 PM,03/14/2016 04:00:00 PM,03/14/2016 04:15:01 PM,03/14/2016 04:27:13 PM,Code 2 Transport,03/14/2016 05:11:39 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160742514-76 -132910194,T11,13099010,Alarms,10/18/2013,10/18/2013,10/18/2013 12:28:39 PM,10/18/2013 12:30:31 PM,10/18/2013 12:30:36 PM,10/18/2013 12:31:44 PM,10/18/2013 12:34:47 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Other,10/18/2013 12:45:31 PM,1100 Block of VALENCIA ST,SF,94110,B06,11,5512,3,3,3,false,Alarm,1,TRUCK,2,6,8,Mission,"(37.7544947867363, -122.420957096572)",132910194-T11 -133570170,93,13121360,Medical Incident,12/23/2013,12/23/2013,12/23/2013 01:14:52 PM,12/23/2013 01:15:13 PM,12/23/2013 01:15:23 PM,12/23/2013 01:15:34 PM,12/23/2013 01:19:01 PM,12/23/2013 01:31:50 PM,12/23/2013 02:05:40 PM,Code 3 Transport,12/23/2013 02:04:24 PM,MASON ST/EDDY ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",133570170-93 -160661399,87,16026372,Medical Incident,03/06/2016,03/06/2016,03/06/2016 12:25:40 PM,03/06/2016 12:27:56 PM,03/06/2016 12:29:29 PM,03/06/2016 12:29:48 PM,03/06/2016 12:36:27 PM,03/06/2016 01:02:56 PM,03/06/2016 01:06:42 PM,Code 2 Transport,03/06/2016 01:58:29 PM,800 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",160661399-87 -121800307,67,12060033,Medical Incident,06/28/2012,06/28/2012,06/28/2012 06:27:37 PM,06/28/2012 06:28:09 PM,06/28/2012 06:28:38 PM,06/28/2012 06:28:44 PM,06/28/2012 06:28:54 PM,06/28/2012 06:46:38 PM,06/28/2012 07:10:48 PM,Code 2 Transport,06/28/2012 07:26:27 PM,KING ST/4TH ST,SF,94107,B03,8,2236,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",121800307-67 -102260128,E31,10071101,Medical Incident,08/14/2010,08/14/2010,08/14/2010 11:01:37 AM,08/14/2010 11:02:33 AM,08/14/2010 11:02:48 AM,08/14/2010 11:03:33 AM,08/14/2010 11:05:57 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 11:10:59 AM,200 Block of 3RD AVE,SF,94118,B07,31,7116,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7840251611754, -122.461202829371)",102260128-E31 -113560168,E06,11118181,Structure Fire,12/22/2011,12/22/2011,12/22/2011 11:52:54 AM,12/22/2011 11:53:42 AM,12/22/2011 11:54:25 AM,12/22/2011 11:58:01 AM,12/22/2011 12:03:06 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 04:44:55 PM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,true,,5,ENGINE,11,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",113560168-E06 -160490678,63,16019640,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:11:41 AM,02/18/2016 08:13:22 AM,02/18/2016 08:16:16 AM,02/18/2016 08:16:25 AM,02/18/2016 08:26:34 AM,02/18/2016 08:46:12 AM,02/18/2016 09:07:13 AM,Code 2 Transport,02/18/2016 09:46:48 AM,2500 Block of 42ND AVE,San Francisco,94116,B08,18,7643,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7391643787319, -122.500198611331)",160490678-63 -112830301,E38,11093788,Medical Incident,10/10/2011,10/10/2011,10/10/2011 06:48:20 PM,10/10/2011 06:55:20 PM,10/10/2011 06:55:46 PM,10/10/2011 06:55:58 PM,10/10/2011 06:59:02 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 07:02:21 PM,2700 Block of JACKSON ST,SF,94115,B04,38,4123,3,3,3,false,,1,ENGINE,2,4,2,Pacific Heights,"(37.7916826631611, -122.440310160049)",112830301-E38 -102650348,T01,10084031,Alarms,09/22/2010,09/22/2010,09/22/2010 11:26:58 PM,09/22/2010 11:28:16 PM,09/22/2010 11:28:36 PM,09/22/2010 11:30:02 PM,09/22/2010 11:32:27 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 11:37:11 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",102650348-T01 -131590034,E01,13053892,Medical Incident,06/08/2013,06/07/2013,06/08/2013 01:34:09 AM,06/08/2013 01:34:09 AM,06/08/2013 01:34:37 AM,06/08/2013 01:34:55 AM,06/08/2013 01:38:41 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Unable to Locate,06/08/2013 01:41:11 AM,100 Block of 3RD ST,SF,94103,B03,1,2177,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",131590034-E01 -123120193,T06,12103834,Medical Incident,11/07/2012,11/07/2012,11/07/2012 01:19:38 PM,11/07/2012 01:20:24 PM,11/07/2012 01:20:58 PM,11/07/2012 01:22:33 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,04/25/2016 01:55:54 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",123120193-T06 -113260272,T03,11108302,Medical Incident,11/22/2011,11/22/2011,11/22/2011 03:47:23 PM,11/22/2011 03:48:20 PM,11/22/2011 03:48:54 PM,11/22/2011 03:51:21 PM,11/22/2011 03:52:55 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 03:57:11 PM,LEAVENWORTH ST/GEARY ST,SF,94109,B04,3,1543,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",113260272-T03 -123280288,E10,12109190,Structure Fire,11/23/2012,11/23/2012,11/23/2012 07:37:06 PM,11/23/2012 07:37:06 PM,11/23/2012 07:37:12 PM,11/23/2012 07:38:35 PM,11/23/2012 07:41:58 PM,04/25/2016 01:55:40 PM,04/25/2016 01:55:40 PM,Other,11/23/2012 07:42:19 PM,2500 Block of BRODERICK ST,SF,94123,B04,10,4226,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.793707267382, -122.443219876826)",123280288-E10 -121710063,E36,12056657,Structure Fire,06/19/2012,06/18/2012,06/19/2012 06:34:04 AM,06/19/2012 06:34:04 AM,06/19/2012 06:34:13 AM,06/19/2012 06:36:09 AM,06/19/2012 06:37:54 AM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Fire,06/19/2012 06:42:01 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7726641818375, -122.418338317697)",121710063-E36 -103440356,67,10110350,Medical Incident,12/10/2010,12/10/2010,12/10/2010 07:27:01 PM,12/10/2010 07:28:28 PM,12/10/2010 07:30:34 PM,12/10/2010 07:31:05 PM,12/10/2010 07:51:42 PM,12/10/2010 08:11:10 PM,12/10/2010 08:30:54 PM,Code 2 Transport,12/10/2010 08:49:22 PM,2200 Block of 14TH AVE,SF,94116,B08,40,736,2,2,2,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7460932039344, -122.470360848492)",103440356-67 -113290089,RC1,11109089,Medical Incident,11/25/2011,11/25/2011,11/25/2011 10:32:10 AM,11/25/2011 10:34:36 AM,11/25/2011 10:34:54 AM,04/25/2016 02:01:28 PM,11/25/2011 10:40:17 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,No Merit,11/25/2011 10:45:39 AM,200 Block of GEARY ST,SF,94108,B01,1,1323,3,2,2,true,,1,RESCUE CAPTAIN,2,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",113290089-RC1 -160702626,68,16027934,Medical Incident,03/10/2016,03/10/2016,03/10/2016 05:11:15 PM,03/10/2016 05:11:15 PM,03/10/2016 05:11:53 PM,03/10/2016 05:12:05 PM,03/10/2016 05:22:15 PM,03/10/2016 05:34:52 PM,03/10/2016 05:38:07 PM,Code 2 Transport,03/10/2016 07:27:24 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",160702626-68 -121620065,E01,12053528,Alarms,06/10/2012,06/09/2012,06/10/2012 03:08:49 AM,06/10/2012 03:08:49 AM,06/10/2012 03:09:16 AM,06/10/2012 03:10:09 AM,06/10/2012 03:15:16 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Fire,06/10/2012 03:15:44 AM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",121620065-E01 -133250005,KM15,13110233,Medical Incident,11/21/2013,11/20/2013,11/21/2013 12:12:47 AM,11/21/2013 12:13:06 AM,11/21/2013 12:13:58 AM,11/21/2013 12:14:59 AM,11/21/2013 12:20:29 AM,11/21/2013 12:29:04 AM,11/21/2013 12:46:37 AM,Code 2 Transport,11/21/2013 01:15:09 AM,200 Block of FOLSOM ST,SF,94105,B03,35,2117,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",133250005-KM15 -160583131,85,16023255,Medical Incident,02/27/2016,02/27/2016,02/27/2016 07:12:33 PM,02/27/2016 07:13:35 PM,02/27/2016 07:14:15 PM,02/27/2016 07:15:04 PM,02/27/2016 07:20:37 PM,02/27/2016 07:34:04 PM,02/27/2016 07:54:34 PM,Code 2 Transport,02/27/2016 08:32:07 PM,VAN NESS AV/NORTH POINT ST,San Francisco,94109,B04,28,3143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",160583131-85 -102640225,E32,10083580,Medical Incident,09/21/2010,09/21/2010,09/21/2010 03:00:02 PM,09/21/2010 03:00:37 PM,09/21/2010 03:01:06 PM,09/21/2010 03:01:42 PM,09/21/2010 03:03:18 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 03:12:46 PM,30TH ST/MISSION ST,SF,94110,B06,32,5625,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",102640225-E32 -140810067,T05,14027268,Elevator / Escalator Rescue,03/22/2014,03/21/2014,03/22/2014 06:09:24 AM,03/22/2014 06:10:36 AM,03/22/2014 06:10:42 AM,03/22/2014 06:13:38 AM,03/22/2014 06:27:37 AM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Fire,03/22/2014 06:27:39 AM,1200 Block of WEBSTER ST,SAN FRANCISCO,94115,B05,5,3515,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",140810067-T05 -140150137,E10,14005092,Medical Incident,01/15/2014,01/15/2014,01/15/2014 10:50:56 AM,01/15/2014 10:53:02 AM,01/15/2014 10:54:19 AM,01/15/2014 10:56:05 AM,01/15/2014 10:59:59 AM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/15/2014 11:08:56 AM,DIVISADERO ST/SUTTER ST,SF,94115,B05,10,4155,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Japantown,"(37.7852475259262, -122.439872612659)",140150137-E10 -112350053,T08,11077454,Alarms,08/23/2011,08/22/2011,08/23/2011 06:14:59 AM,08/23/2011 06:17:11 AM,08/23/2011 06:17:26 AM,08/23/2011 06:19:46 AM,08/23/2011 06:23:54 AM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 06:31:09 AM,0 Block of HARRISON ST,SF,94105,B03,35,2113,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7892474519723, -122.389008295709)",112350053-T08 -160251101,81,16009862,Medical Incident,01/25/2016,01/25/2016,01/25/2016 09:45:04 AM,01/25/2016 09:48:04 AM,01/25/2016 09:51:34 AM,01/25/2016 09:51:46 AM,01/25/2016 09:54:33 AM,01/25/2016 10:28:00 AM,01/25/2016 10:33:15 AM,Code 2 Transport,01/25/2016 11:03:25 AM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160251101-81 -131730139,81,13058667,Medical Incident,06/22/2013,06/22/2013,06/22/2013 12:10:28 PM,06/22/2013 12:11:50 PM,06/22/2013 12:12:26 PM,06/22/2013 12:12:33 PM,06/22/2013 12:22:30 PM,06/22/2013 12:38:51 PM,06/22/2013 12:41:16 PM,Code 2 Transport,06/22/2013 01:02:39 PM,1100 Block of POST ST,SF,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Tenderloin,"(37.7866690098549, -122.420738096439)",131730139-81 -123000128,AM16,12099390,Medical Incident,10/26/2012,10/26/2012,10/26/2012 10:40:48 AM,10/26/2012 10:42:00 AM,10/26/2012 10:42:26 AM,10/26/2012 10:44:07 AM,10/26/2012 10:56:58 AM,10/26/2012 11:15:12 AM,10/26/2012 11:31:54 AM,Code 2 Transport,10/26/2012 12:10:16 PM,600 Block of SANSOME ST,SF,94111,B01,13,1211,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Chinatown,"(37.79618119485, -122.401696308834)",123000128-AM16 -160860487,60,16034071,Medical Incident,03/26/2016,03/25/2016,03/26/2016 04:10:04 AM,03/26/2016 04:10:04 AM,03/26/2016 04:10:12 AM,03/26/2016 04:10:19 AM,03/26/2016 04:13:58 AM,03/26/2016 04:28:49 AM,03/26/2016 04:31:28 AM,Code 3 Transport,03/26/2016 05:14:18 AM,1500 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7906289225699, -122.41985085623)",160860487-60 -120160055,T07,12005300,Gas Leak (Natural and LP Gases),01/16/2012,01/15/2012,01/16/2012 07:19:39 AM,01/16/2012 07:21:30 AM,01/16/2012 07:21:45 AM,01/16/2012 07:24:12 AM,01/16/2012 07:39:09 AM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/16/2012 07:45:43 AM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7737629752818, -122.417960394107)",120160055-T07 -123630241,E15,12121520,Medical Incident,12/28/2012,12/28/2012,12/28/2012 04:33:29 PM,12/28/2012 04:33:45 PM,12/28/2012 04:34:05 PM,12/28/2012 04:35:01 PM,12/28/2012 04:37:22 PM,12/28/2012 05:10:06 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 05:33:07 PM,0 Block of EDNA ST,SF,94112,B09,15,8226,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7270811295823, -122.446621667815)",123630241-E15 -130150176,54,13005106,Medical Incident,01/15/2013,01/15/2013,01/15/2013 01:03:43 PM,01/15/2013 01:04:27 PM,01/15/2013 01:04:43 PM,01/15/2013 01:04:52 PM,01/15/2013 01:09:49 PM,01/15/2013 01:31:43 PM,01/15/2013 02:04:43 PM,Code 2 Transport,01/15/2013 02:38:26 PM,300 Block of VICTORIA ST,SF,94132,B09,33,841,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7170173593096, -122.46540070392)",130150176-54 -130810211,E28,13027135,Structure Fire,03/22/2013,03/22/2013,03/22/2013 02:28:14 PM,03/22/2013 02:29:09 PM,03/22/2013 02:33:54 PM,03/22/2013 02:34:39 PM,03/22/2013 02:38:52 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 02:53:13 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,false,Fire,1,ENGINE,9,4,2,Marina,"(37.8006947037442, -122.436775838314)",130810211-E28 -121570186,E34,12051947,Medical Incident,06/05/2012,06/05/2012,06/05/2012 01:40:28 PM,06/05/2012 01:41:06 PM,06/05/2012 01:41:52 PM,06/05/2012 01:42:29 PM,06/05/2012 01:46:21 PM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,Other,06/05/2012 01:52:46 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",121570186-E34 -131400227,E21,13047434,Alarms,05/20/2013,05/20/2013,05/20/2013 01:00:32 PM,05/20/2013 01:01:49 PM,05/20/2013 01:03:19 PM,05/20/2013 01:04:24 PM,05/20/2013 01:07:32 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,Other,05/20/2013 01:09:22 PM,1300 Block of MASONIC AVE,SF,94117,B05,21,4466,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7683463778754, -122.444987081385)",131400227-E21 -140700035,67,14023491,Medical Incident,03/11/2014,03/10/2014,03/11/2014 03:45:04 AM,03/11/2014 03:50:19 AM,03/11/2014 03:50:34 AM,03/11/2014 03:50:51 AM,03/11/2014 04:09:44 AM,03/11/2014 04:34:24 AM,03/11/2014 05:16:10 AM,Code 2 Transport,03/11/2014 05:30:11 AM,24TH ST/SOUTH VAN NESS AV,SAN FRANCISCO,94110,B06,7,5511,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7523727894276, -122.416265511485)",140700035-67 -133410084,E26,13115536,Medical Incident,12/07/2013,12/06/2013,12/07/2013 06:29:28 AM,12/07/2013 06:31:36 AM,12/07/2013 06:32:57 AM,12/07/2013 06:34:28 AM,12/07/2013 06:38:20 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/07/2013 06:54:16 AM,0 Block of ORA WAY,SF,94131,B06,26,8154,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7414013070575, -122.437853503826)",133410084-E26 -160671770,71,16026772,Medical Incident,03/07/2016,03/07/2016,03/07/2016 02:05:41 PM,03/07/2016 02:07:26 PM,03/07/2016 02:08:17 PM,03/07/2016 02:08:24 PM,03/07/2016 02:27:10 PM,03/07/2016 02:33:50 PM,03/07/2016 02:33:51 PM,Code 2 Transport,03/07/2016 03:19:07 PM,200 Block of 21ST AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7831476181283, -122.480588567897)",160671770-71 -160312222,AM16,16012205,Medical Incident,01/31/2016,01/31/2016,01/31/2016 02:57:34 PM,01/31/2016 03:02:14 PM,01/31/2016 03:02:57 PM,01/31/2016 03:03:38 PM,01/31/2016 03:14:23 PM,01/31/2016 03:26:31 PM,01/31/2016 03:56:17 PM,Code 2 Transport,01/31/2016 04:19:38 PM,0 Block of NORTON ST,San Francisco,94112,B09,43,6117,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7249572695798, -122.435780283156)",160312222-AM16 -160822927,62,16032675,Medical Incident,03/22/2016,03/22/2016,03/22/2016 05:31:59 PM,03/22/2016 05:31:59 PM,03/22/2016 05:34:14 PM,03/22/2016 05:34:14 PM,03/22/2016 05:38:00 PM,03/22/2016 05:56:26 PM,03/22/2016 06:10:28 PM,Code 2 Transport,03/22/2016 06:37:18 PM,1700 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160822927-62 -103030333,E07,10096918,Medical Incident,10/30/2010,10/30/2010,10/30/2010 09:45:09 PM,10/30/2010 09:45:09 PM,10/30/2010 09:46:23 PM,04/25/2016 02:07:51 PM,10/30/2010 09:48:59 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 09:52:21 PM,500 Block of DOLORES ST,SF,94114,B06,7,5435,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7606186794333, -122.426153349478)",103030333-E07 -110650274,72,11021533,Medical Incident,03/06/2011,03/06/2011,03/06/2011 04:41:33 PM,03/06/2011 04:41:59 PM,03/06/2011 04:42:15 PM,03/06/2011 04:42:21 PM,03/06/2011 04:46:12 PM,03/06/2011 04:55:41 PM,03/06/2011 05:06:31 PM,Code 2 Transport,03/06/2011 05:21:38 PM,GOLDEN GATE AV/VAN NESS AV,SF,94102,B02,36,3164,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",110650274-72 -103090243,AM06,10099084,Medical Incident,11/05/2010,11/05/2010,11/05/2010 04:28:17 PM,11/05/2010 04:29:43 PM,11/05/2010 04:34:53 PM,11/05/2010 04:35:18 PM,11/05/2010 04:48:04 PM,11/05/2010 05:11:23 PM,11/05/2010 05:25:43 PM,Code 2 Transport,11/05/2010 06:03:33 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,1,1,2,false,,1,PRIVATE,1,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",103090243-AM06 -122830045,E12,12093539,Alarms,10/09/2012,10/08/2012,10/09/2012 05:04:06 AM,10/09/2012 05:04:07 AM,10/09/2012 05:04:35 AM,10/09/2012 05:06:15 AM,10/09/2012 05:07:51 AM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 05:15:41 AM,500 Block of PARNASSUS AVE,SF,94131,B05,12,7323,3,3,3,true,Alarm,1,ENGINE,1,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",122830045-E12 -160061375,57,16002360,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:13:11 AM,01/06/2016 11:14:34 AM,01/06/2016 11:15:04 AM,01/06/2016 11:15:18 AM,01/06/2016 11:27:32 AM,01/06/2016 11:37:13 AM,01/06/2016 11:47:53 AM,Code 3 Transport,01/06/2016 12:43:30 PM,700 Block of GREAT HWY,San Francisco,94121,B07,34,7316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7740193377855, -122.511346410906)",160061375-57 -120880123,E10,12029136,Medical Incident,03/28/2012,03/28/2012,03/28/2012 10:38:04 AM,03/28/2012 10:38:31 AM,03/28/2012 10:38:39 AM,03/28/2012 10:39:30 AM,03/28/2012 10:41:56 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 10:49:14 AM,300 Block of WALNUT ST,SF,94118,B04,10,4416,3,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Presidio Heights,"(37.7884256240016, -122.448677680002)",120880123-E10 -123620218,KM11,12121187,Medical Incident,12/27/2012,12/27/2012,12/27/2012 03:20:36 PM,12/27/2012 03:20:52 PM,12/27/2012 03:21:15 PM,12/27/2012 03:21:56 PM,12/27/2012 03:24:06 PM,12/27/2012 04:07:53 PM,04/25/2016 01:55:06 PM,Code 2 Transport,12/27/2012 04:08:02 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",123620218-KM11 -160471932,KM03,16018936,Medical Incident,02/16/2016,02/16/2016,02/16/2016 01:32:23 PM,02/16/2016 01:36:32 PM,02/16/2016 01:37:16 PM,02/16/2016 01:37:51 PM,02/16/2016 01:49:14 PM,02/16/2016 02:17:27 PM,02/16/2016 02:17:33 PM,Code 2 Transport,02/16/2016 02:58:56 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160471932-KM03 -160152389,67,16006046,Medical Incident,01/15/2016,01/15/2016,01/15/2016 03:25:13 PM,01/15/2016 03:27:07 PM,01/15/2016 03:30:11 PM,01/15/2016 03:30:19 PM,01/15/2016 03:40:51 PM,01/15/2016 03:55:31 PM,01/15/2016 04:13:52 PM,Code 2 Transport,01/15/2016 04:50:20 PM,2400 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7318198889718, -122.405412091734)",160152389-67 -113170118,94,11105268,Medical Incident,11/13/2011,11/13/2011,11/13/2011 08:44:17 AM,11/13/2011 08:44:23 AM,11/13/2011 08:45:02 AM,11/13/2011 08:45:17 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Fire,11/13/2011 08:54:33 AM,0 Block of ROSSI AVE,SF,94118,B07,21,4557,3,2,2,true,,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.779215348773, -122.45632948558)",113170118-94 -160590197,77,16023349,Medical Incident,02/28/2016,02/27/2016,02/28/2016 01:14:33 AM,02/28/2016 01:15:32 AM,02/28/2016 01:15:56 AM,02/28/2016 01:16:17 AM,02/28/2016 01:19:30 AM,02/28/2016 01:42:44 AM,02/28/2016 01:49:23 AM,Code 2 Transport,02/28/2016 02:44:12 AM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",160590197-77 -121760374,T15,12058669,Alarms,06/24/2012,06/24/2012,06/24/2012 08:17:50 PM,06/24/2012 08:19:32 PM,06/24/2012 08:19:51 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 08:23:22 PM,600 Block of EDINBURGH ST,SF,94112,B09,43,6137,3,3,3,true,Alarm,1,TRUCK,4,9,11,Excelsior,"(37.718874761067, -122.433710461209)",121760374-T15 -112510388,74,11082919,Structure Fire,09/08/2011,09/08/2011,09/08/2011 08:36:20 PM,09/08/2011 08:36:42 PM,09/08/2011 08:37:06 PM,09/08/2011 08:37:19 PM,09/08/2011 08:43:10 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 09:02:47 PM,200 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,true,,1,MEDIC,8,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",112510388-74 -132020303,E40,13068578,Medical Incident,07/21/2013,07/21/2013,07/21/2013 08:19:24 PM,07/21/2013 08:21:34 PM,07/21/2013 08:21:40 PM,07/21/2013 08:22:36 PM,07/21/2013 08:26:58 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,Other,07/21/2013 08:35:10 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",132020303-E40 -160802997,52,16031919,Medical Incident,03/20/2016,03/20/2016,03/20/2016 07:02:09 PM,03/20/2016 07:03:44 PM,03/20/2016 07:04:16 PM,03/20/2016 07:08:05 PM,03/20/2016 07:19:44 PM,03/20/2016 07:34:28 PM,03/20/2016 07:59:19 PM,Code 2 Transport,03/20/2016 08:41:07 PM,DUBOCE AV/FILLMORE ST,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7694079208278, -122.429905644885)",160802997-52 -123040115,B04,12100835,Alarms,10/30/2012,10/30/2012,10/30/2012 10:50:24 AM,10/30/2012 10:51:45 AM,10/30/2012 10:51:52 AM,10/30/2012 10:52:06 AM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/30/2012 10:55:55 AM,0 Block of PAGE ST,SF,94103,B02,36,3212,3,3,3,false,Alarm,1,CHIEF,3,2,5,Hayes Valley,"(37.7742723004159, -122.420496143745)",123040115-B04 -113070360,E08,11102143,Medical Incident,11/03/2011,11/03/2011,11/03/2011 08:07:37 PM,11/03/2011 08:09:33 PM,11/03/2011 08:13:50 PM,11/03/2011 08:15:45 PM,11/03/2011 08:18:46 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/03/2011 08:29:42 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7758599616408, -122.402849079555)",113070360-E08 -160773130,AM14,16030720,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:40:22 PM,03/17/2016 05:41:13 PM,03/17/2016 05:42:23 PM,03/17/2016 05:45:29 PM,03/17/2016 05:49:54 PM,03/17/2016 06:13:40 PM,03/17/2016 06:30:42 PM,Code 2 Transport,03/17/2016 07:15:01 PM,0 Block of GARDENSIDE DR,San Francisco,94131,B06,24,5282,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,8,Twin Peaks,"(37.7517781008065, -122.444988946157)",160773130-AM14 -133240243,E08,13110074,Other,11/20/2013,11/20/2013,11/20/2013 02:05:30 PM,11/20/2013 02:05:58 PM,11/20/2013 02:23:19 PM,11/20/2013 02:23:25 PM,11/20/2013 02:26:42 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 02:28:23 PM,100 Block of GILBERT ST,SF,94103,B03,8,2276,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7731318817549, -122.402341017674)",133240243-E08 -121790163,E39,12059589,Medical Incident,06/27/2012,06/27/2012,06/27/2012 11:08:21 AM,06/27/2012 11:08:55 AM,06/27/2012 11:09:08 AM,06/27/2012 11:10:23 AM,06/27/2012 11:13:42 AM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/27/2012 11:24:25 AM,300 Block of SANTA ANA AVE,SF,94127,B09,39,8552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7306370747512, -122.467921642897)",121790163-E39 -112070309,T17,11068491,Alarms,07/26/2011,07/26/2011,07/26/2011 08:38:22 PM,07/26/2011 08:38:47 PM,07/26/2011 08:38:53 PM,07/26/2011 08:40:31 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/26/2011 08:42:30 PM,CASHMERE ST/HUDSON AV,SF,94124,B10,25,652,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",112070309-T17 -160042122,52,16001633,Medical Incident,01/04/2016,01/04/2016,01/04/2016 02:37:55 PM,01/04/2016 02:38:54 PM,01/04/2016 02:39:15 PM,01/04/2016 02:39:42 PM,01/04/2016 02:44:58 PM,01/04/2016 03:07:17 PM,01/04/2016 03:25:48 PM,Code 2 Transport,01/04/2016 03:40:41 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160042122-52 -130980460,E16,13033085,Medical Incident,04/08/2013,04/08/2013,04/08/2013 10:47:37 PM,04/08/2013 10:48:26 PM,04/08/2013 10:48:37 PM,04/08/2013 10:50:10 PM,04/08/2013 10:53:07 PM,04/25/2016 01:53:24 PM,04/25/2016 01:53:24 PM,Other,04/08/2013 10:57:03 PM,2600 Block of LARKIN ST,SF,94109,B01,41,1625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,2,Russian Hill,"(37.8022389057912, -122.421286499541)",130980460-E16 -160312998,85,16012294,Medical Incident,01/31/2016,01/31/2016,01/31/2016 06:27:38 PM,01/31/2016 06:29:54 PM,01/31/2016 06:31:33 PM,01/31/2016 06:31:33 PM,01/31/2016 06:39:31 PM,01/31/2016 06:54:41 PM,01/31/2016 06:57:48 PM,Code 2 Transport,01/31/2016 07:27:13 PM,0 Block of VIRGINIA AVE,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7428517374449, -122.420967440564)",160312998-85 -131100374,RS2,13037189,"Extrication / Entrapped (Machinery, Vehicle)",04/20/2013,04/20/2013,04/20/2013 09:04:49 PM,04/20/2013 09:05:07 PM,04/20/2013 09:05:18 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/20/2013 09:06:20 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,3,3,3,false,Fire,1,RESCUE SQUAD,5,2,9,Mission,"(37.7642361189447, -122.419659842408)",131100374-RS2 -160293031,61,16011541,Medical Incident,01/29/2016,01/29/2016,01/29/2016 07:16:19 PM,01/29/2016 07:16:19 PM,01/29/2016 07:16:25 PM,01/29/2016 07:16:52 PM,01/29/2016 07:30:47 PM,01/29/2016 07:40:00 PM,01/29/2016 07:45:25 PM,Code 2 Transport,01/29/2016 08:14:08 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",160293031-61 -113230339,T09,11107435,Alarms,11/19/2011,11/19/2011,11/19/2011 10:42:21 PM,11/19/2011 10:42:22 PM,11/19/2011 10:43:08 PM,11/19/2011 10:44:40 PM,11/19/2011 10:48:22 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/19/2011 11:19:00 PM,2700 Block of BRYANT ST,SF,94110,B06,9,553,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.750396573149, -122.408970541511)",113230339-T09 -111780386,KM15,11058942,Medical Incident,06/27/2011,06/27/2011,06/27/2011 10:56:48 PM,06/27/2011 10:57:52 PM,06/27/2011 11:00:05 PM,06/27/2011 11:01:04 PM,06/27/2011 11:11:52 PM,06/27/2011 11:29:15 PM,04/25/2016 02:03:56 PM,Code 2 Transport,06/27/2011 11:57:33 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,2,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",111780386-KM15 -132490078,81,13083950,Medical Incident,09/06/2013,09/06/2013,09/06/2013 08:37:01 AM,09/06/2013 08:38:32 AM,09/06/2013 08:39:01 AM,09/06/2013 08:39:29 AM,09/06/2013 08:42:32 AM,09/06/2013 08:56:00 AM,09/06/2013 09:16:26 AM,Code 2 Transport,09/06/2013 09:38:20 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",132490078-81 -102360258,T18,10074372,Structure Fire,08/24/2010,08/24/2010,08/24/2010 02:28:31 PM,08/24/2010 02:29:30 PM,08/24/2010 02:30:27 PM,08/24/2010 02:30:51 PM,08/24/2010 02:34:24 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/24/2010 02:50:38 PM,1900 Block of 44TH AVE,SF,94116,B08,23,7646,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7502631234043, -122.502999290875)",102360258-T18 -110530151,T06,11017490,Structure Fire,02/22/2011,02/22/2011,02/22/2011 12:13:26 PM,02/22/2011 12:13:27 PM,02/22/2011 12:13:41 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 12:18:23 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",110530151-T06 -160880430,KM07,16034819,Medical Incident,03/28/2016,03/27/2016,03/28/2016 05:36:00 AM,03/28/2016 05:36:00 AM,03/28/2016 05:36:40 AM,03/28/2016 05:37:21 AM,03/28/2016 05:41:39 AM,03/28/2016 05:48:14 AM,03/28/2016 06:10:37 AM,Code 2 Transport,03/28/2016 06:39:56 AM,EDDY ST/CYRIL MAGNIN ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",160880430-KM07 -103620303,E21,10116217,Alarms,12/28/2010,12/28/2010,12/28/2010 08:03:55 PM,12/28/2010 08:05:12 PM,12/28/2010 08:05:35 PM,12/28/2010 08:06:16 PM,12/28/2010 08:09:56 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 08:31:26 PM,2200 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,true,,1,ENGINE,2,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",103620303-E21 -160641580,88,16025481,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:43:32 AM,03/04/2016 11:45:09 AM,03/04/2016 11:45:53 AM,03/04/2016 11:46:25 AM,03/04/2016 12:20:55 PM,03/04/2016 12:30:47 PM,03/04/2016 01:11:13 PM,Code 2 Transport,03/04/2016 01:42:06 PM,1400 Block of HALIBUT CT,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",160641580-88 -103630329,70,10116576,Medical Incident,12/29/2010,12/29/2010,12/29/2010 10:02:56 PM,12/29/2010 10:04:47 PM,12/29/2010 10:05:59 PM,12/29/2010 10:09:12 PM,12/29/2010 10:11:24 PM,12/29/2010 10:30:48 PM,12/29/2010 10:49:25 PM,Code 2 Transport,12/29/2010 11:12:58 PM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",103630329-70 -123220298,E21,12107146,Medical Incident,11/17/2012,11/17/2012,11/17/2012 05:07:26 PM,11/17/2012 05:10:43 PM,11/17/2012 05:10:52 PM,11/17/2012 05:11:41 PM,11/17/2012 05:13:09 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 05:23:21 PM,500 Block of CENTRAL AVE,SF,94117,B05,21,4361,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7746264390362, -122.444430401392)",123220298-E21 -160201919,61,16008018,Medical Incident,01/20/2016,01/20/2016,01/20/2016 01:27:57 PM,01/20/2016 01:28:58 PM,01/20/2016 01:29:20 PM,01/20/2016 01:29:31 PM,01/20/2016 01:36:09 PM,01/20/2016 01:42:48 PM,01/20/2016 01:48:08 PM,Code 2 Transport,01/20/2016 02:38:52 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160201919-61 -121860166,D2,12061948,Structure Fire,07/04/2012,07/04/2012,07/04/2012 02:12:11 PM,07/04/2012 02:13:14 PM,07/04/2012 02:13:30 PM,07/04/2012 02:14:07 PM,07/04/2012 02:18:01 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 02:33:57 PM,2000 Block of GOLDEN GATE AVE,SF,94115,B05,21,4345,3,3,3,false,Fire,1,CHIEF,4,5,5,Lone Mountain/USF,"(37.7779335823054, -122.444320744028)",121860166-D2 -122890241,E51,12095664,Water Rescue,10/15/2012,10/15/2012,10/15/2012 03:19:43 PM,10/15/2012 03:20:39 PM,10/15/2012 03:21:56 PM,10/15/2012 03:24:13 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 03:36:52 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Fire,1,ENGINE,9,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",122890241-E51 -113290191,T03,11109177,Alarms,11/25/2011,11/25/2011,11/25/2011 04:45:59 PM,11/25/2011 04:47:00 PM,11/25/2011 04:47:10 PM,11/25/2011 04:48:10 PM,11/25/2011 04:51:06 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 04:53:06 PM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",113290191-T03 -160103314,66,16004191,Medical Incident,01/10/2016,01/10/2016,01/10/2016 09:41:27 PM,01/10/2016 09:41:27 PM,01/10/2016 09:41:47 PM,01/10/2016 09:41:56 PM,01/10/2016 10:02:40 PM,01/10/2016 10:04:16 PM,01/10/2016 10:19:57 PM,Code 2 Transport,01/10/2016 11:05:26 PM,CHINA BASIN ST/3RD ST,San Francisco,94158,B03,4,2231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7719979371741, -122.389611483823)",160103314-66 -160310672,75,16012088,Medical Incident,01/31/2016,01/30/2016,01/31/2016 06:34:30 AM,01/31/2016 06:36:04 AM,01/31/2016 06:36:44 AM,01/31/2016 06:36:56 AM,01/31/2016 06:43:54 AM,01/31/2016 06:59:05 AM,01/31/2016 07:02:43 AM,Code 2 Transport,01/31/2016 07:34:59 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160310672-75 -160521152,KM02,16020761,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:22:22 AM,02/21/2016 10:23:18 AM,02/21/2016 10:23:33 AM,02/21/2016 10:24:30 AM,02/21/2016 10:40:52 AM,02/21/2016 10:40:53 AM,02/21/2016 10:46:35 AM,Code 3 Transport,02/21/2016 11:35:25 AM,2200 Block of PACIFIC AVE,San Francisco,94115,B04,38,3441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7937165642364, -122.432279480256)",160521152-KM02 -110060060,E41,11001884,Medical Incident,01/06/2011,01/05/2011,01/06/2011 05:53:18 AM,01/06/2011 05:54:47 AM,01/06/2011 05:55:04 AM,04/25/2016 02:06:44 PM,01/06/2011 05:58:31 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 06:05:47 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",110060060-E41 -140290230,89,14009921,Medical Incident,01/29/2014,01/29/2014,01/29/2014 02:43:22 PM,01/29/2014 02:44:49 PM,01/29/2014 02:45:24 PM,01/29/2014 02:46:42 PM,01/29/2014 03:06:29 PM,01/29/2014 03:29:23 PM,01/29/2014 03:38:48 PM,Code 2 Transport,01/29/2014 03:58:23 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",140290230-89 -103110303,77,10099848,Medical Incident,11/07/2010,11/07/2010,11/07/2010 07:09:28 PM,11/07/2010 07:12:50 PM,11/07/2010 07:13:15 PM,11/07/2010 07:14:59 PM,11/07/2010 07:19:45 PM,11/07/2010 07:35:54 PM,11/07/2010 07:50:28 PM,Code 2 Transport,11/07/2010 08:17:43 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",103110303-77 -160421364,50,16016825,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:02:05 AM,02/11/2016 11:03:31 AM,02/11/2016 11:04:43 AM,02/11/2016 11:05:03 AM,02/11/2016 11:30:39 AM,02/11/2016 11:30:41 AM,02/11/2016 11:48:32 AM,Code 2 Transport,02/11/2016 12:35:18 PM,200 Block of BYXBEE ST,San Francisco,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7187705572293, -122.469775794648)",160421364-50 -160721072,75,16028539,Medical Incident,03/12/2016,03/12/2016,03/12/2016 10:08:20 AM,03/12/2016 10:09:28 AM,03/12/2016 10:09:44 AM,03/12/2016 10:09:55 AM,03/12/2016 10:15:23 AM,03/12/2016 10:45:30 AM,03/12/2016 10:45:34 AM,Code 2 Transport,03/12/2016 11:47:09 AM,700 Block of PANORAMA DR,San Francisco,94131,B08,20,5364,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7534063007868, -122.454061829425)",160721072-75 -102340186,86,10073631,Medical Incident,08/22/2010,08/22/2010,08/22/2010 01:38:19 PM,08/22/2010 01:38:44 PM,08/22/2010 01:39:00 PM,08/22/2010 01:39:35 PM,08/22/2010 01:53:27 PM,08/22/2010 02:00:45 PM,08/22/2010 02:25:24 PM,Code 2 Transport,08/22/2010 02:57:01 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,2,2,true,,1,MEDIC,2,1,3,North Beach,"(37.8069201392161, -122.407170160416)",102340186-86 -160390243,75,16015456,Medical Incident,02/08/2016,02/07/2016,02/08/2016 01:52:00 AM,02/08/2016 01:53:35 AM,02/08/2016 01:54:40 AM,02/08/2016 01:54:56 AM,02/08/2016 02:04:31 AM,02/08/2016 02:27:53 AM,02/08/2016 02:40:07 AM,Code 2 Transport,02/08/2016 03:04:12 AM,1700 Block of 46TH AVE,San Francisco,94122,B08,23,7716,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7539006471459, -122.505401038194)",160390243-75 -130890387,T17,13029943,Vehicle Fire,03/30/2013,03/30/2013,03/30/2013 11:31:49 PM,03/30/2013 11:33:06 PM,03/30/2013 11:34:08 PM,03/30/2013 11:36:44 PM,03/30/2013 11:37:53 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 11:50:10 PM,PALOU AV/HAWES ST,SF,94124,B10,17,6647,3,3,3,false,Fire,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7286780137338, -122.381564415076)",130890387-T17 -133520303,E01,13119662,Medical Incident,12/18/2013,12/18/2013,12/18/2013 04:12:18 PM,12/18/2013 04:13:49 PM,12/18/2013 04:14:20 PM,12/18/2013 04:15:07 PM,12/18/2013 04:16:55 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/18/2013 04:26:29 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,A,A,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7810145579776, -122.413423114482)",133520303-E01 -160692065,60,16027500,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:14:43 PM,03/09/2016 02:15:56 PM,03/09/2016 02:16:30 PM,03/09/2016 02:17:38 PM,03/09/2016 02:38:18 PM,03/09/2016 03:14:41 PM,03/09/2016 03:42:53 PM,Code 2 Transport,03/09/2016 04:15:40 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160692065-60 -160281051,52,16011025,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:50:10 AM,01/28/2016 09:51:57 AM,01/28/2016 09:52:18 AM,01/28/2016 09:52:29 AM,01/28/2016 09:59:54 AM,01/28/2016 10:17:59 AM,01/28/2016 10:35:28 AM,Code 2 Transport,01/28/2016 11:10:53 AM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",160281051-52 -140650250,93,14022013,Medical Incident,03/06/2014,03/06/2014,03/06/2014 03:24:48 PM,03/06/2014 03:27:01 PM,03/06/2014 03:27:49 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Code 2 Transport,04/25/2016 01:47:52 PM,100 Block of EDDY ST,SAN FRANCISCO,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",140650250-93 -160010173,KM07,16000027,Medical Incident,01/01/2016,12/31/2015,01/01/2016 12:40:08 AM,01/01/2016 12:40:08 AM,01/01/2016 01:06:55 AM,01/01/2016 01:26:55 AM,01/01/2016 01:26:55 AM,01/01/2016 01:31:33 AM,01/01/2016 01:47:18 AM,Code 2 Transport,01/01/2016 02:06:45 AM,4000 Block of NORIEGA ST,San Francisco,94122,B08,23,7725,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7528382693813, -122.50700721306)",160010173-KM07 -111610372,RS1,11053350,Medical Incident,06/10/2011,06/10/2011,06/10/2011 11:30:05 PM,06/10/2011 11:31:43 PM,06/10/2011 11:34:49 PM,06/10/2011 11:35:33 PM,06/10/2011 11:38:16 PM,04/25/2016 02:04:13 PM,04/25/2016 02:04:13 PM,Other,06/10/2011 11:40:40 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",111610372-RS1 -111990284,57,11065726,Medical Incident,07/18/2011,07/18/2011,07/18/2011 06:52:14 PM,07/18/2011 06:52:49 PM,07/18/2011 06:53:28 PM,07/18/2011 06:53:49 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Other,04/25/2016 02:03:36 PM,3RD ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",111990284-57 -130240059,E39,13008195,Medical Incident,01/24/2013,01/23/2013,01/24/2013 07:15:14 AM,01/24/2013 07:16:26 AM,01/24/2013 07:16:46 AM,01/24/2013 07:19:38 AM,01/24/2013 07:24:09 AM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Other,01/24/2013 07:27:17 AM,2300 Block of 21ST AVE,SF,94116,B08,40,7434,3,3,3,true,Non Life-threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7438859404109, -122.477970593365)",130240059-E39 -102760377,T08,10087905,Structure Fire,10/03/2010,10/03/2010,10/03/2010 10:12:00 PM,10/03/2010 10:12:50 PM,10/03/2010 10:13:13 PM,10/03/2010 10:14:27 PM,10/03/2010 10:15:26 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/03/2010 10:21:10 PM,500 Block of 4TH ST,SF,94107,B03,8,2217,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7793874256322, -122.397749284931)",102760377-T08 -160450923,88,16018045,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:33:46 AM,02/14/2016 08:35:45 AM,02/14/2016 08:36:56 AM,02/14/2016 08:37:17 AM,02/14/2016 08:47:26 AM,02/14/2016 09:02:48 AM,02/14/2016 09:25:13 AM,Code 2 Transport,02/14/2016 10:14:34 AM,DON CHEE WY/STEUART ST,San Francisco,94105,B03,35,2131,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7937724122673, -122.393860770156)",160450923-88 -130010189,RS1,13000128,Medical Incident,01/01/2013,12/31/2012,01/01/2013 03:01:21 AM,01/01/2013 03:02:09 AM,01/01/2013 03:02:30 AM,01/01/2013 03:03:10 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 03:03:52 AM,700 Block of MARKET ST,SF,94108,B01,1,1241,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,1,3,Financial District/South Beach,"(37.7872560927993, -122.40409466245)",130010189-RS1 -111890289,RC1,11062573,Medical Incident,07/08/2011,07/08/2011,07/08/2011 04:56:16 PM,07/08/2011 04:57:07 PM,07/08/2011 04:57:25 PM,07/08/2011 04:59:17 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,Other,07/08/2011 05:07:25 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,E,E,3,true,,1,RESCUE CAPTAIN,3,5,5,Japantown,"(37.7833263288474, -122.44032487616)",111890289-RC1 -160813830,74,16032385,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:10:16 PM,03/21/2016 10:10:48 PM,03/21/2016 10:12:34 PM,03/21/2016 10:12:42 PM,03/21/2016 10:23:43 PM,03/21/2016 10:42:37 PM,03/21/2016 11:03:25 PM,Code 2 Transport,03/21/2016 11:49:57 PM,700 Block of FONT BLVD,San Francisco,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",160813830-74 -160013878,57,16000540,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:52:36 PM,01/01/2016 10:57:28 PM,01/01/2016 11:00:18 PM,01/01/2016 11:00:44 PM,01/01/2016 11:11:50 PM,01/01/2016 11:29:40 PM,01/01/2016 11:46:48 PM,Code 2 Transport,01/02/2016 12:41:39 AM,DIAMOND ST/BOSWORTH ST,San Francisco,94131,B09,26,8261,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",160013878-57 -160070192,AM24,16002672,Medical Incident,01/07/2016,01/06/2016,01/07/2016 02:00:51 AM,01/07/2016 02:01:30 AM,01/07/2016 02:01:45 AM,01/07/2016 02:02:23 AM,01/07/2016 02:06:43 AM,01/07/2016 02:13:49 AM,01/07/2016 02:29:58 AM,Code 2 Transport,01/07/2016 02:55:46 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160070192-AM24 -160240853,AM04,16009463,Medical Incident,01/24/2016,01/24/2016,01/24/2016 08:33:05 AM,01/24/2016 08:35:42 AM,01/24/2016 08:36:45 AM,01/24/2016 08:37:36 AM,01/24/2016 08:41:39 AM,01/24/2016 08:58:09 AM,01/24/2016 09:22:08 AM,Code 2 Transport,01/24/2016 10:01:35 AM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",160240853-AM04 -130460373,77,13015765,Medical Incident,02/15/2013,02/15/2013,02/15/2013 06:49:04 PM,02/15/2013 06:51:35 PM,02/15/2013 06:54:10 PM,02/15/2013 07:01:37 PM,02/15/2013 07:01:49 PM,02/15/2013 07:23:41 PM,02/15/2013 07:37:27 PM,Code 2 Transport,02/15/2013 08:03:23 PM,1600 Block of 37TH AVE,SF,94122,B08,18,7572,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7561810724749, -122.496028362811)",130460373-77 -133230227,E19,13109672,Medical Incident,11/19/2013,11/19/2013,11/19/2013 01:38:30 PM,11/19/2013 01:40:58 PM,11/19/2013 01:41:41 PM,11/19/2013 01:42:32 PM,11/19/2013 01:43:38 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 02:16:23 PM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",133230227-E19 -131870004,E01,13063643,Medical Incident,07/06/2013,07/05/2013,07/06/2013 12:33:43 AM,07/06/2013 12:35:46 AM,07/06/2013 12:35:57 AM,07/06/2013 12:37:57 AM,07/06/2013 12:40:51 AM,04/25/2016 01:51:56 PM,04/25/2016 01:51:56 PM,Other,07/06/2013 12:51:10 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131870004-E01 -160901642,AM06,16035703,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:47:42 AM,03/30/2016 11:49:53 AM,03/30/2016 11:51:15 AM,03/30/2016 11:51:54 AM,03/30/2016 12:01:23 PM,03/30/2016 12:16:24 PM,03/30/2016 01:00:48 PM,Code 2 Transport,03/30/2016 01:34:44 PM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160901642-AM06 -133010153,E51,13102260,Other,10/28/2013,10/28/2013,10/28/2013 10:55:49 AM,10/28/2013 10:56:43 AM,10/28/2013 10:57:02 AM,10/28/2013 10:58:44 AM,10/28/2013 11:13:39 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 11:20:30 AM,CHESTNUT ST/PIERCE ST,SF,94123,B04,16,3661,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8004034299938, -122.439504170635)",133010153-E51 -113330309,E07,11110416,Medical Incident,11/29/2011,11/29/2011,11/29/2011 08:20:06 PM,11/29/2011 08:20:12 PM,11/29/2011 08:20:25 PM,11/29/2011 08:21:32 PM,11/29/2011 08:23:34 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/29/2011 08:29:35 PM,1000 Block of FLORIDA ST,SF,94110,B06,7,5476,E,E,3,true,,1,ENGINE,1,6,9,Mission,"(37.7551453615588, -122.41022765898)",113330309-E07 -121040142,E16,12034424,Structure Fire,04/13/2012,04/13/2012,04/13/2012 12:19:08 PM,04/13/2012 12:19:08 PM,04/13/2012 12:19:15 PM,04/13/2012 12:20:34 PM,04/13/2012 12:22:19 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Fire,04/13/2012 12:22:34 PM,BAKER ST/CHESTNUT ST,SF,94123,B04,16,4314,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7995560991799, -122.446161088315)",121040142-E16 -131100124,E25,13036958,Medical Incident,04/20/2013,04/20/2013,04/20/2013 10:19:23 AM,04/20/2013 10:21:51 AM,04/20/2013 10:22:09 AM,04/20/2013 10:24:01 AM,04/20/2013 10:31:21 AM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,No Merit,04/20/2013 10:31:32 AM,INNES AV/HUNTERS POINT BL,SF,94124,B10,25,6632,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324961246572, -122.376638038168)",131100124-E25 -120560083,RS1,12018421,Medical Incident,02/25/2012,02/25/2012,02/25/2012 09:14:23 AM,02/25/2012 09:14:41 AM,02/25/2012 09:14:52 AM,02/25/2012 09:17:38 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 09:18:58 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",120560083-RS1 -130890170,RS2,13029742,Water Rescue,03/30/2013,03/30/2013,03/30/2013 12:58:24 PM,03/30/2013 01:01:19 PM,03/30/2013 01:02:53 PM,03/30/2013 01:04:11 PM,03/30/2013 01:17:02 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 01:46:11 PM,500 Block of SKYLINE BLVD,SF,94132,B08,19,8772,3,3,3,false,Fire,1,RESCUE SQUAD,7,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",130890170-RS2 -123090095,94,12102667,Medical Incident,11/04/2012,11/03/2012,11/04/2012 04:30:39 AM,11/04/2012 04:31:26 AM,11/04/2012 04:31:53 AM,11/04/2012 04:32:44 AM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 04:39:08 AM,1600 Block of 24TH AVE,SF,94122,B08,18,7454,E,E,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7567983540483, -122.482094455948)",123090095-94 -111770415,54,11058566,Medical Incident,06/26/2011,06/26/2011,06/26/2011 08:46:10 PM,06/26/2011 08:47:50 PM,06/26/2011 08:50:25 PM,06/26/2011 08:56:17 PM,06/26/2011 08:56:20 PM,06/26/2011 09:06:59 PM,06/26/2011 09:20:12 PM,Code 2 Transport,06/26/2011 09:51:07 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,3,3,3,true,,1,MEDIC,3,6,9,Mission,"(37.7602353559327, -122.419206043807)",111770415-54 -123580325,82,12119995,Medical Incident,12/23/2012,12/23/2012,12/23/2012 09:45:36 PM,12/23/2012 09:47:31 PM,12/23/2012 09:49:39 PM,12/23/2012 09:57:47 PM,12/23/2012 10:04:45 PM,12/23/2012 10:20:31 PM,12/23/2012 10:41:46 PM,Code 2 Transport,12/23/2012 11:07:22 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",123580325-82 -110180292,B02,11006037,Other,01/18/2011,01/18/2011,01/18/2011 08:06:44 PM,01/18/2011 08:08:36 PM,01/18/2011 08:09:04 PM,01/18/2011 08:24:04 PM,01/18/2011 08:29:21 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Fire,01/18/2011 08:57:53 PM,1300 Block of HARRISON ST,SF,94103,B02,29,2344,3,3,3,false,,1,CHIEF,2,2,6,South of Market,"(37.7718543104907, -122.411027020165)",110180292-B02 -160391106,AM10,16015549,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:52:40 AM,02/08/2016 09:55:04 AM,02/08/2016 09:55:32 AM,02/08/2016 09:56:06 AM,02/08/2016 10:17:05 AM,02/08/2016 10:43:06 AM,02/08/2016 11:01:59 AM,Code 2 Transport,02/08/2016 11:34:33 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160391106-AM10 -131330375,67,13045024,Medical Incident,05/13/2013,05/13/2013,05/13/2013 09:20:13 PM,05/13/2013 09:23:07 PM,05/13/2013 09:23:23 PM,05/13/2013 09:24:12 PM,05/13/2013 10:01:27 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Patient Declined Transport,05/13/2013 10:08:58 PM,100 Block of RALSTON ST,SF,94132,B09,33,8411,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7151766826134, -122.468976771328)",131330375-67 -140210063,54,14007090,Medical Incident,01/21/2014,01/21/2014,01/21/2014 08:55:52 AM,01/21/2014 08:57:09 AM,01/21/2014 08:59:23 AM,01/21/2014 09:01:06 AM,01/21/2014 09:05:09 AM,01/21/2014 09:26:07 AM,01/21/2014 10:03:34 AM,Code 2 Transport,01/21/2014 10:46:02 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",140210063-54 -130190329,B02,13006636,Alarms,01/19/2013,01/19/2013,01/19/2013 07:08:09 PM,01/19/2013 07:09:36 PM,01/19/2013 07:10:26 PM,01/19/2013 07:13:14 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 07:18:52 PM,1300 Block of BUCHANAN ST,SF,94115,B02,5,3431,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7820811831699, -122.429017793799)",130190329-B02 -160050131,62,16001824,Medical Incident,01/05/2016,01/04/2016,01/05/2016 01:18:39 AM,01/05/2016 01:18:39 AM,01/05/2016 01:19:53 AM,01/05/2016 01:20:00 AM,01/05/2016 01:21:31 AM,01/05/2016 01:41:58 AM,01/05/2016 01:44:48 AM,Code 2 Transport,01/05/2016 02:23:35 AM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160050131-62 -123020086,B10,12100071,Medical Incident,10/28/2012,10/27/2012,10/28/2012 03:36:39 AM,10/28/2012 03:36:53 AM,10/28/2012 03:37:17 AM,10/28/2012 03:39:40 AM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/28/2012 03:40:06 AM,0 Block of GEORGE CT,SF,94124,B10,17,6572,3,E,3,false,Potentially Life-Threatening,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7309025092294, -122.382609703047)",123020086-B10 -111720382,89,11056906,Medical Incident,06/21/2011,06/21/2011,06/21/2011 10:37:23 PM,06/21/2011 10:38:32 PM,06/21/2011 10:39:21 PM,04/25/2016 02:04:02 PM,06/21/2011 10:41:32 PM,06/21/2011 11:06:37 PM,06/21/2011 11:15:24 PM,Code 2 Transport,06/21/2011 11:44:27 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",111720382-89 -160581846,76,16023134,Medical Incident,02/27/2016,02/27/2016,02/27/2016 01:32:19 PM,02/27/2016 01:33:04 PM,02/27/2016 01:33:42 PM,02/27/2016 01:33:49 PM,02/27/2016 01:41:02 PM,02/27/2016 01:49:26 PM,02/27/2016 02:11:22 PM,Code 2 Transport,02/27/2016 02:27:41 PM,3200 Block of 23RD ST,San Francisco,94110,B06,7,5511,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7539240929444, -122.418055151685)",160581846-76 -111760341,E06,11058149,Traffic Collision,06/25/2011,06/25/2011,06/25/2011 07:53:11 PM,06/25/2011 07:54:15 PM,06/25/2011 07:55:26 PM,06/25/2011 07:56:27 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 07:58:38 PM,16TH ST/DOLORES ST,SF,94103,B02,6,5234,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7646456890217, -122.426381708495)",111760341-E06 -160503414,75,16020245,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:26:22 PM,02/19/2016 08:28:36 PM,02/19/2016 08:29:36 PM,02/19/2016 08:29:42 PM,02/19/2016 08:30:00 PM,02/19/2016 08:40:06 PM,02/19/2016 08:57:44 PM,Code 2 Transport,02/19/2016 09:28:03 PM,NORIEGA ST/32ND AV,San Francisco,94122,B08,18,7543,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7536267146176, -122.49040061315)",160503414-75 -102630361,E11,10083363,Vehicle Fire,09/20/2010,09/20/2010,09/20/2010 08:52:56 PM,09/20/2010 08:53:30 PM,09/20/2010 08:54:33 PM,09/20/2010 08:56:02 PM,09/20/2010 09:06:53 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Fire,09/20/2010 09:07:11 PM,JERSEY ST/SANCHEZ ST,SF,94114,B06,11,5537,3,3,3,false,,1,ENGINE,1,6,8,Noe Valley,"(37.7507620189092, -122.429576537136)",102630361-E11 -160640148,55,16025328,Medical Incident,03/04/2016,03/03/2016,03/04/2016 01:23:02 AM,03/04/2016 01:24:10 AM,03/04/2016 01:24:41 AM,03/04/2016 01:24:51 AM,03/04/2016 01:32:03 AM,03/04/2016 01:37:45 AM,03/04/2016 01:58:33 AM,Code 2 Transport,03/04/2016 02:28:45 AM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160640148-55 -110850220,E25,11028054,Medical Incident,03/26/2011,03/26/2011,03/26/2011 02:17:51 PM,03/26/2011 02:20:16 PM,03/26/2011 02:20:53 PM,03/26/2011 02:22:37 PM,03/26/2011 02:23:38 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 02:48:51 PM,3RD ST/HUDSON AV,SF,94124,B10,25,6467,2,2,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7403172644605, -122.388754590589)",110850220-E25 -160100696,82,16003938,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:13:30 AM,01/10/2016 07:15:29 AM,01/10/2016 07:15:58 AM,01/10/2016 07:16:33 AM,01/10/2016 07:23:53 AM,01/10/2016 07:44:55 AM,01/10/2016 07:46:24 AM,Code 2 Transport,01/10/2016 08:33:19 AM,0 Block of CASTRO ST,San Francisco,94117,B05,21,4143,3,3,3,true,Non Life-threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7701295276066, -122.436422965066)",160100696-82 -122130100,AR1,12070637,Structure Fire,07/31/2012,07/31/2012,07/31/2012 08:55:12 AM,07/31/2012 08:55:53 AM,07/31/2012 08:56:33 AM,04/25/2016 01:57:28 PM,07/31/2012 09:26:04 AM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/31/2012 10:02:26 AM,0 Block of LAPIDGE ST,SF,94110,B02,7,5422,3,3,3,false,Fire,1,INVESTIGATION,14,6,8,Mission,"(37.760846425159, -122.422403820974)",122130100-AR1 -120400126,E29,12013285,Electrical Hazard,02/09/2012,02/09/2012,02/09/2012 11:14:23 AM,02/09/2012 11:15:49 AM,02/09/2012 11:16:04 AM,02/09/2012 11:16:12 AM,02/09/2012 11:20:41 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 12:09:21 PM,600 Block of KANSAS ST,SF,94107,B02,37,2455,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7615275000671, -122.403300396468)",120400126-E29 -112920377,E41,11097049,Medical Incident,10/19/2011,10/19/2011,10/19/2011 11:12:59 PM,10/19/2011 11:14:10 PM,10/19/2011 11:14:25 PM,10/19/2011 11:15:23 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/19/2011 11:16:04 PM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,false,,1,ENGINE,3,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",112920377-E41 -112700039,E32,11089116,Medical Incident,09/27/2011,09/26/2011,09/27/2011 05:38:11 AM,09/27/2011 05:40:13 AM,09/27/2011 05:40:50 AM,09/27/2011 05:42:37 AM,09/27/2011 05:45:16 AM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/27/2011 06:03:09 AM,200 Block of CHENERY ST,SF,94131,B06,32,8113,2,2,2,true,,1,ENGINE,1,6,8,Glen Park,"(37.7377199867519, -122.426819638194)",112700039-E32 -103350054,81,10107080,Medical Incident,12/01/2010,11/30/2010,12/01/2010 05:48:06 AM,12/01/2010 05:49:23 AM,12/01/2010 05:49:57 AM,12/01/2010 05:50:46 AM,12/01/2010 05:54:14 AM,12/01/2010 06:33:16 AM,12/01/2010 06:39:13 AM,Code 2 Transport,12/01/2010 07:06:52 AM,1700 Block of NOE ST,SF,94131,B06,26,5573,3,2,2,true,,1,MEDIC,1,6,8,Glen Park,"(37.7411238421841, -122.43088351415)",103350054-81 -160892880,63,16035430,Medical Incident,03/29/2016,03/29/2016,03/29/2016 05:31:06 PM,03/29/2016 05:33:05 PM,03/29/2016 05:33:43 PM,03/29/2016 05:34:08 PM,03/29/2016 05:41:16 PM,03/29/2016 06:03:53 PM,03/29/2016 06:25:39 PM,Code 2 Transport,03/29/2016 06:55:14 PM,100 Block of CAINE AVE,San Francisco,94112,B09,33,8325,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7157481523614, -122.451744181527)",160892880-63 -120510031,T19,12016736,Citizen Assist / Service Call,02/20/2012,02/19/2012,02/20/2012 02:22:59 AM,02/20/2012 02:24:55 AM,02/20/2012 02:25:39 AM,02/20/2012 02:27:54 AM,02/20/2012 02:33:03 AM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Fire,02/20/2012 03:05:47 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",120510031-T19 -110760423,87,11025178,Medical Incident,03/17/2011,03/17/2011,03/17/2011 11:22:33 PM,03/17/2011 11:23:49 PM,03/17/2011 11:24:03 PM,03/17/2011 11:24:33 PM,03/17/2011 11:32:38 PM,03/17/2011 11:44:18 PM,03/17/2011 11:57:46 PM,Code 2 Transport,03/18/2011 12:32:23 AM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",110760423-87 -160291301,79,16011406,Medical Incident,01/29/2016,01/29/2016,01/29/2016 11:02:16 AM,01/29/2016 11:03:25 AM,01/29/2016 11:04:09 AM,01/29/2016 11:04:17 AM,01/29/2016 11:12:29 AM,01/29/2016 11:19:02 AM,01/29/2016 11:25:20 AM,Code 2 Transport,01/29/2016 11:44:39 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160291301-79 -132990147,E21,13101550,Medical Incident,10/26/2013,10/26/2013,10/26/2013 10:24:21 AM,10/26/2013 10:25:41 AM,10/26/2013 10:27:34 AM,10/26/2013 10:28:15 AM,10/26/2013 10:31:29 AM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/26/2013 10:39:34 AM,2100 Block of GROVE ST,SF,94117,B05,21,4535,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7741989625507, -122.451998918385)",132990147-E21 -111990220,E17,11065666,Outside Fire,07/18/2011,07/18/2011,07/18/2011 02:34:42 PM,07/18/2011 02:35:49 PM,07/18/2011 02:38:42 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Fire,07/18/2011 02:46:52 PM,900 Block of INNES AVE,SF,94124,B10,25,6632,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7327383183604, -122.377183549255)",111990220-E17 -102960063,E44,10094331,Medical Incident,10/23/2010,10/22/2010,10/23/2010 05:05:23 AM,10/23/2010 05:07:07 AM,10/23/2010 05:07:26 AM,10/23/2010 05:09:36 AM,10/23/2010 05:11:15 AM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 05:25:32 AM,1000 Block of GIRARD ST,SF,94134,B10,44,6277,3,3,3,true,,1,ENGINE,1,10,10,Portola,"(37.7195653938725, -122.401416634791)",102960063-E44 -131840211,B10,13062711,Medical Incident,07/03/2013,07/03/2013,07/03/2013 02:08:24 PM,07/03/2013 02:08:24 PM,07/03/2013 02:08:24 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Other,07/03/2013 02:16:27 PM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7445838881586, -122.399489023505)",131840211-B10 -111200256,RC3,11039638,Medical Incident,04/30/2011,04/30/2011,04/30/2011 03:44:28 PM,04/30/2011 03:45:12 PM,04/30/2011 03:45:41 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 03:59:43 PM,MISSION ST/GENEVA AV,SF,94112,B09,43,6175,3,3,3,true,,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",111200256-RC3 -160790348,75,16031287,Medical Incident,03/19/2016,03/18/2016,03/19/2016 02:36:36 AM,03/19/2016 02:36:36 AM,03/19/2016 02:36:54 AM,03/19/2016 02:38:21 AM,03/19/2016 02:55:41 AM,03/19/2016 03:10:32 AM,03/19/2016 03:37:54 AM,Code 2 Transport,03/19/2016 04:38:12 AM,100 Block of RAE AVE,San Francisco,94112,B09,33,8347,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7110981375943, -122.449419273523)",160790348-75 -111200288,95,11039669,Medical Incident,04/30/2011,04/30/2011,04/30/2011 05:27:47 PM,04/30/2011 05:29:54 PM,04/30/2011 05:30:04 PM,04/30/2011 05:30:19 PM,04/30/2011 05:33:27 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 05:34:37 PM,VALENCIA ST/BROSNAN ST,SF,94103,B02,36,5126,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7687541449843, -122.422258156194)",111200288-95 -160753138,KM12,16029838,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:20:19 PM,03/15/2016 06:20:49 PM,03/15/2016 06:21:01 PM,03/15/2016 06:21:46 PM,03/15/2016 06:32:36 PM,03/15/2016 06:37:12 PM,03/15/2016 07:04:47 PM,Code 2 Transport,03/15/2016 07:22:12 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160753138-KM12 -132400135,RC2,13080918,Medical Incident,08/28/2013,08/28/2013,08/28/2013 11:02:56 AM,08/28/2013 11:03:45 AM,08/28/2013 11:04:08 AM,08/28/2013 11:04:44 AM,08/28/2013 11:07:03 AM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/28/2013 11:49:57 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",132400135-RC2 -133220019,E29,13109211,Medical Incident,11/18/2013,11/17/2013,11/18/2013 01:27:27 AM,11/18/2013 01:28:38 AM,11/18/2013 01:29:53 AM,11/18/2013 01:32:14 AM,11/18/2013 01:33:19 AM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/18/2013 01:47:40 AM,700 Block of KANSAS ST,SF,94107,B10,37,2522,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7602504316626, -122.403178548853)",133220019-E29 -123320262,RS1,12110424,Medical Incident,11/27/2012,11/27/2012,11/27/2012 05:33:14 PM,11/27/2012 05:33:47 PM,11/27/2012 05:34:06 PM,11/27/2012 05:35:06 PM,11/27/2012 05:39:23 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/27/2012 05:43:50 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",123320262-RS1 -132010207,E07,13068181,Medical Incident,07/20/2013,07/20/2013,07/20/2013 01:50:18 PM,07/20/2013 01:52:08 PM,07/20/2013 02:00:45 PM,07/20/2013 02:02:02 PM,07/20/2013 02:08:21 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 02:14:07 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",132010207-E07 -131000071,85,13033512,Medical Incident,04/10/2013,04/09/2013,04/10/2013 07:40:15 AM,04/10/2013 07:40:54 AM,04/10/2013 07:41:13 AM,04/10/2013 07:41:29 AM,04/10/2013 07:47:10 AM,04/10/2013 08:02:13 AM,04/10/2013 08:12:57 AM,Code 2 Transport,04/10/2013 08:42:11 AM,1600 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7752450450943, -122.443780098911)",131000071-85 -123110180,E08,12103474,Alarms,11/06/2012,11/06/2012,11/06/2012 12:10:15 PM,11/06/2012 12:10:15 PM,11/06/2012 12:10:20 PM,11/06/2012 12:12:12 PM,11/06/2012 12:13:08 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Fire,11/06/2012 12:18:40 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,true,Alarm,1,ENGINE,2,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",123110180-E08 -133230393,87,13109827,Medical Incident,11/19/2013,11/19/2013,11/19/2013 09:30:04 PM,11/19/2013 09:30:41 PM,11/19/2013 10:00:28 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,04/25/2016 01:49:41 PM,QUESADA AV/3RD ST,SF,94124,B10,17,6535,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7332232631153, -122.391244493226)",133230393-87 -122740092,AM02,12090307,Medical Incident,09/30/2012,09/30/2012,09/30/2012 08:43:35 AM,09/30/2012 08:47:07 AM,09/30/2012 08:47:19 AM,09/30/2012 08:48:24 AM,09/30/2012 08:56:53 AM,09/30/2012 09:05:59 AM,09/30/2012 09:22:23 AM,Code 2 Transport,09/30/2012 09:48:30 AM,0 Block of 1ST ST,SF,94105,B03,13,2143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7898688685777, -122.397805556033)",122740092-AM02 -160301707,65,16011778,Medical Incident,01/30/2016,01/30/2016,01/30/2016 12:03:09 PM,01/30/2016 12:04:19 PM,01/30/2016 12:04:45 PM,01/30/2016 12:05:01 PM,01/30/2016 12:09:52 PM,01/30/2016 12:30:36 PM,01/30/2016 12:35:23 PM,Code 2 Transport,01/30/2016 01:28:21 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160301707-65 -120640123,RS2,12021090,Structure Fire,03/04/2012,03/04/2012,03/04/2012 09:31:31 AM,03/04/2012 09:35:55 AM,03/04/2012 09:36:03 AM,03/04/2012 09:37:09 AM,03/04/2012 09:40:05 AM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Other,03/04/2012 09:40:46 AM,1800 Block of 25TH ST,SF,94107,B10,37,2615,3,3,3,false,Fire,1,RESCUE SQUAD,3,10,10,Potrero Hill,"(37.7521976465641, -122.397477711041)",120640123-RS2 -113530207,AM08,11117216,Medical Incident,12/19/2011,12/19/2011,12/19/2011 01:58:45 PM,12/19/2011 02:00:32 PM,12/19/2011 02:01:20 PM,12/19/2011 02:02:32 PM,12/19/2011 02:09:42 PM,12/19/2011 02:25:42 PM,12/19/2011 02:38:38 PM,Code 2 Transport,12/19/2011 03:16:28 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,1,1,2,false,,1,PRIVATE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",113530207-AM08 -132720282,E07,13092533,Outside Fire,09/29/2013,09/29/2013,09/29/2013 05:19:16 PM,09/29/2013 05:21:17 PM,09/29/2013 05:22:15 PM,09/29/2013 05:23:23 PM,09/29/2013 05:24:47 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 05:32:46 PM,ENTERPRISE ST/FOLSOM ST,SF,94110,B02,7,5237,3,3,3,true,Fire,1,ENGINE,1,2,9,Mission,"(37.7647052999236, -122.415250650143)",132720282-E07 -140900280,83,14030384,Medical Incident,03/31/2014,03/31/2014,03/31/2014 06:38:32 PM,03/31/2014 06:38:47 PM,03/31/2014 06:39:42 PM,03/31/2014 06:40:07 PM,03/31/2014 06:49:21 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Against Medical Advice,03/31/2014 07:18:40 PM,KANSAS ST/15TH ST,SAN FRANCISCO,94103,B02,29,2353,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission Bay,"(37.7673163648446, -122.403759537883)",140900280-83 -132550137,T13,13086145,Fuel Spill,09/12/2013,09/12/2013,09/12/2013 10:55:31 AM,09/12/2013 10:57:45 AM,09/12/2013 10:57:58 AM,09/12/2013 11:00:20 AM,09/12/2013 11:01:42 AM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 11:09:56 AM,500 Block of WASHINGTON ST,SF,94111,B01,13,1211,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7956190455503, -122.403039422993)",132550137-T13 -121270352,89,12042426,Medical Incident,05/06/2012,05/06/2012,05/06/2012 10:28:40 PM,05/06/2012 10:28:42 PM,05/06/2012 10:28:58 PM,05/06/2012 10:29:08 PM,05/06/2012 10:32:39 PM,05/06/2012 10:55:12 PM,04/25/2016 01:58:48 PM,Code 2 Transport,05/06/2012 11:14:58 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",121270352-89 -130240367,77,13008440,Medical Incident,01/24/2013,01/24/2013,01/24/2013 08:31:58 PM,01/24/2013 08:35:06 PM,01/24/2013 08:35:36 PM,01/24/2013 08:35:49 PM,01/24/2013 08:45:00 PM,01/24/2013 08:55:14 PM,01/24/2013 09:04:22 PM,Code 2 Transport,01/24/2013 09:40:28 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130240367-77 -130730385,E06,13024518,Structure Fire,03/14/2013,03/14/2013,03/14/2013 11:55:07 PM,03/14/2013 11:55:07 PM,03/14/2013 11:55:19 PM,03/14/2013 11:56:40 PM,03/14/2013 11:58:58 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Fire,03/14/2013 11:59:35 PM,15TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7665395771344, -122.422043813368)",130730385-E06 -120240310,E44,12008212,Medical Incident,01/24/2012,01/24/2012,01/24/2012 09:35:32 PM,01/24/2012 09:36:08 PM,01/24/2012 09:36:22 PM,01/24/2012 09:37:22 PM,01/24/2012 09:40:06 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/24/2012 09:54:25 PM,100 Block of GILLETTE AVE,SF,94134,B10,44,6273,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7107068525159, -122.396661914568)",120240310-E44 -160800280,AM20,16031667,Medical Incident,03/20/2016,03/19/2016,03/20/2016 01:39:07 AM,03/20/2016 01:40:13 AM,03/20/2016 01:40:28 AM,03/20/2016 01:41:06 AM,03/20/2016 01:50:16 AM,03/20/2016 03:29:07 AM,03/20/2016 03:29:10 AM,Code 2 Transport,03/20/2016 05:02:40 AM,100 Block of 3RD ST,San Francisco,94103,B03,1,2177,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",160800280-AM20 -130400302,E35,13013770,Medical Incident,02/09/2013,02/09/2013,02/09/2013 06:44:16 PM,02/09/2013 06:45:50 PM,02/09/2013 06:47:16 PM,02/09/2013 06:48:25 PM,02/09/2013 06:50:47 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/09/2013 06:51:07 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",130400302-E35 -110130367,AP,11004477,Other,01/13/2011,01/13/2011,01/13/2011 09:17:29 PM,01/13/2011 09:17:29 PM,01/13/2011 09:17:29 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Fire,01/13/2011 09:21:07 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110130367-AP -121120212,96,12037152,Medical Incident,04/21/2012,04/21/2012,04/21/2012 12:43:47 PM,04/21/2012 12:43:47 PM,04/21/2012 12:44:00 PM,04/21/2012 12:44:10 PM,04/21/2012 01:03:30 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Patient Declined Transport,04/21/2012 01:21:55 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",121120212-96 -121990196,E01,12066133,Medical Incident,07/17/2012,07/17/2012,07/17/2012 01:16:28 PM,07/17/2012 01:17:22 PM,07/17/2012 01:17:31 PM,07/17/2012 01:18:37 PM,07/17/2012 01:21:16 PM,04/25/2016 01:57:41 PM,04/25/2016 01:57:41 PM,Other,07/17/2012 01:27:56 PM,500 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7800574377607, -122.408673540372)",121990196-E01 -110400266,B02,11013303,Structure Fire,02/09/2011,02/09/2011,02/09/2011 03:49:03 PM,02/09/2011 03:49:03 PM,02/09/2011 03:49:15 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 03:51:54 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,,1,CHIEF,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",110400266-B02 -140180192,E36,14006185,Structure Fire,01/18/2014,01/18/2014,01/18/2014 12:20:02 PM,01/18/2014 12:20:02 PM,01/18/2014 12:20:17 PM,01/18/2014 12:20:35 PM,01/18/2014 12:20:57 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/18/2014 12:21:40 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7741251002903, -122.418810211803)",140180192-E36 -133470394,E12,13117926,Medical Incident,12/13/2013,12/13/2013,12/13/2013 10:07:40 PM,12/13/2013 10:09:26 PM,12/13/2013 10:10:34 PM,12/13/2013 10:11:46 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 10:12:53 PM,HAIGHT ST/MASONIC AV,SF,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",133470394-E12 -121910308,77,12063700,Medical Incident,07/09/2012,07/09/2012,07/09/2012 07:40:55 PM,07/09/2012 07:41:50 PM,07/09/2012 07:42:10 PM,07/09/2012 07:42:21 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,04/25/2016 01:57:48 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",121910308-77 -160771185,67,16030511,Medical Incident,03/17/2016,03/17/2016,03/17/2016 10:10:09 AM,03/17/2016 10:13:06 AM,03/17/2016 10:14:00 AM,03/17/2016 10:14:50 AM,03/17/2016 10:26:09 AM,03/17/2016 10:44:42 AM,03/17/2016 10:49:19 AM,Code 2 Transport,03/17/2016 11:32:31 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160771185-67 -103610004,E41,10115654,Medical Incident,12/27/2010,12/26/2010,12/27/2010 12:16:24 AM,12/27/2010 12:17:51 AM,12/27/2010 12:18:13 AM,12/27/2010 12:20:05 AM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/27/2010 12:21:11 AM,800 Block of BUSH ST,SF,94108,B01,41,1446,2,3,3,false,,1,ENGINE,2,1,3,Nob Hill,"(37.7897914509307, -122.411243472923)",103610004-E41 -133600165,KM10,13122333,Medical Incident,12/26/2013,12/26/2013,12/26/2013 01:09:42 PM,12/26/2013 01:10:16 PM,12/26/2013 01:11:12 PM,12/26/2013 01:11:51 PM,12/26/2013 01:17:45 PM,12/26/2013 01:36:48 PM,12/26/2013 01:55:28 PM,Code 2 Transport,12/26/2013 02:44:27 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",133600165-KM10 -131860038,68,13063309,Medical Incident,07/05/2013,07/04/2013,07/05/2013 02:20:57 AM,07/05/2013 02:21:57 AM,07/05/2013 02:22:35 AM,07/05/2013 02:24:26 AM,07/05/2013 02:32:11 AM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/05/2013 02:32:32 AM,5100 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7458165668766, -122.44007828523)",131860038-68 -110140009,RC3,11004506,Medical Incident,01/14/2011,01/13/2011,01/14/2011 12:30:26 AM,01/14/2011 12:31:30 AM,01/14/2011 12:32:07 AM,01/14/2011 12:34:02 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 12:39:59 AM,1700 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",110140009-RC3 -131380415,E29,13046840,Outside Fire,05/18/2013,05/18/2013,05/18/2013 11:56:01 PM,05/18/2013 11:57:21 PM,05/18/2013 11:57:38 PM,05/18/2013 11:59:01 PM,05/19/2013 12:00:28 AM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,No Merit,05/19/2013 12:04:01 AM,BRYANT ST/MARIPOSA ST,SF,94110,B02,29,5242,3,3,3,true,Fire,1,ENGINE,1,2,9,Mission,"(37.7630293338155, -122.410244115777)",131380415-E29 -160042347,74,16001662,Medical Incident,01/04/2016,01/04/2016,01/04/2016 03:42:21 PM,01/04/2016 03:44:03 PM,01/04/2016 03:44:21 PM,01/04/2016 03:44:29 PM,01/04/2016 04:04:44 PM,01/04/2016 04:14:54 PM,01/04/2016 04:22:17 PM,Code 2 Transport,01/04/2016 05:09:18 PM,700 Block of 21ST AVE,San Francisco,94121,B07,14,7167,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7736958053498, -122.480041380237)",160042347-74 -103360226,E44,10107519,Other,12/02/2010,12/02/2010,12/02/2010 02:45:59 PM,12/02/2010 02:46:32 PM,12/02/2010 02:46:39 PM,12/02/2010 02:47:57 PM,12/02/2010 02:57:22 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Fire,12/02/2010 03:07:20 PM,1500 Block of VISITACION AVE,SF,94134,B09,44,6263,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7130646228669, -122.413927298726)",103360226-E44 -110820355,E01,11027082,Alarms,03/23/2011,03/23/2011,03/23/2011 08:44:38 PM,03/23/2011 08:45:10 PM,03/23/2011 08:45:26 PM,03/23/2011 08:45:52 PM,03/23/2011 08:48:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 08:52:57 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",110820355-E01 -132730261,85,13092828,Medical Incident,09/30/2013,09/30/2013,09/30/2013 03:33:39 PM,09/30/2013 03:34:37 PM,09/30/2013 03:34:55 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,04/25/2016 01:50:30 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",132730261-85 -102660299,E01,10084270,Medical Incident,09/23/2010,09/23/2010,09/23/2010 07:01:35 PM,09/23/2010 07:03:25 PM,09/23/2010 07:04:25 PM,09/23/2010 07:05:47 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 07:23:49 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",102660299-E01 -122600233,96,12085990,Medical Incident,09/16/2012,09/16/2012,09/16/2012 05:19:14 PM,09/16/2012 05:19:35 PM,09/16/2012 05:21:35 PM,09/16/2012 05:21:44 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,No Merit,09/16/2012 05:42:34 PM,1800 Block of WALLER ST,SF,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",122600233-96 -120360196,88,12012005,Medical Incident,02/05/2012,02/05/2012,02/05/2012 12:46:00 PM,02/05/2012 12:48:18 PM,02/05/2012 12:50:19 PM,02/05/2012 12:50:50 PM,02/05/2012 12:54:41 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,No Merit,02/05/2012 01:00:17 PM,1700 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7694700718007, -122.415525556609)",120360196-88 -140180161,94,14006160,Medical Incident,01/18/2014,01/18/2014,01/18/2014 10:46:17 AM,01/18/2014 10:47:31 AM,01/18/2014 10:47:43 AM,01/18/2014 10:47:59 AM,01/18/2014 10:53:06 AM,01/18/2014 11:02:37 AM,01/18/2014 11:22:52 AM,Code 2 Transport,01/18/2014 11:32:59 AM,300 Block of POTRERO AVE,SF,94103,B02,29,2416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7651394094816, -122.407407963885)",140180161-94 -160813319,72,16032329,Medical Incident,03/21/2016,03/21/2016,03/21/2016 07:18:09 PM,03/21/2016 07:20:48 PM,03/21/2016 07:21:22 PM,03/21/2016 07:21:32 PM,03/21/2016 07:44:20 PM,03/21/2016 07:54:10 PM,03/21/2016 08:22:47 PM,Code 2 Transport,03/21/2016 09:12:32 PM,300 Block of CHINA BASIN ST,San Francisco,94158,B03,4,2231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Mission Bay,"(37.772025294652, -122.38824254537)",160813319-72 -133380090,94,13114474,Medical Incident,12/04/2013,12/04/2013,12/04/2013 09:28:57 AM,12/04/2013 09:32:43 AM,12/04/2013 09:34:29 AM,12/04/2013 09:34:53 AM,12/04/2013 09:41:42 AM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Patient Declined Transport,12/04/2013 10:22:56 AM,1200 Block of 12TH AVE,SF,94122,B08,22,7346,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7648362657127, -122.469656987954)",133380090-94 -131730248,T14,13058762,Structure Fire,06/22/2013,06/22/2013,06/22/2013 04:37:59 PM,06/22/2013 04:38:02 PM,06/22/2013 04:38:10 PM,06/22/2013 04:39:59 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/22/2013 04:41:16 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",131730248-T14 -122500089,KM02,12082589,Medical Incident,09/06/2012,09/06/2012,09/06/2012 09:18:13 AM,09/06/2012 09:18:54 AM,09/06/2012 09:19:27 AM,09/06/2012 09:19:38 AM,09/06/2012 09:24:25 AM,09/06/2012 09:43:18 AM,09/06/2012 09:51:22 AM,Code 2 Transport,09/06/2012 10:27:47 AM,3100 Block of CALIFORNIA ST,SF,94115,B04,10,4336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7874042492839, -122.446108408104)",122500089-KM02 -122560336,T17,12084783,Structure Fire,09/12/2012,09/12/2012,09/12/2012 10:30:26 PM,09/12/2012 10:31:45 PM,09/12/2012 10:32:17 PM,09/12/2012 10:33:44 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Other,09/12/2012 10:52:43 PM,1200 Block of INGALLS ST,SF,94124,B10,17,6572,3,3,3,false,Fire,1,TRUCK,7,10,10,Bayview Hunters Point,"(37.7305663224371, -122.381859307677)",122560336-T17 -160270304,KM07,16010533,Medical Incident,01/27/2016,01/26/2016,01/27/2016 03:47:13 AM,01/27/2016 03:48:54 AM,01/27/2016 03:49:44 AM,01/27/2016 03:50:07 AM,01/27/2016 03:57:11 AM,01/27/2016 04:21:33 AM,01/27/2016 04:32:58 AM,Code 2 Transport,01/27/2016 04:53:47 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160270304-KM07 -160063696,KM03,16002621,Medical Incident,01/06/2016,01/06/2016,01/06/2016 10:26:11 PM,01/06/2016 10:27:16 PM,01/06/2016 10:27:25 PM,01/06/2016 10:28:58 PM,01/06/2016 10:37:28 PM,01/06/2016 10:45:35 PM,01/06/2016 11:01:44 PM,Code 2 Transport,01/06/2016 11:36:00 PM,1200 Block of GRANT AVE,San Francisco,94133,B01,2,1311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7986417020523, -122.407109258598)",160063696-KM03 -122130055,93,12070602,Citizen Assist / Service Call,07/31/2012,07/30/2012,07/31/2012 05:38:24 AM,07/31/2012 05:39:38 AM,07/31/2012 05:40:48 AM,07/31/2012 05:41:23 AM,07/31/2012 05:49:51 AM,07/31/2012 06:20:51 AM,07/31/2012 06:39:36 AM,Code 2 Transport,07/31/2012 07:07:58 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Alarm,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",122130055-93 -160190964,AM02,16007551,Medical Incident,01/19/2016,01/19/2016,01/19/2016 09:15:25 AM,01/19/2016 09:16:48 AM,01/19/2016 09:18:12 AM,01/19/2016 09:19:34 AM,01/19/2016 09:48:36 AM,01/19/2016 09:48:38 AM,01/19/2016 10:06:25 AM,Code 2 Transport,01/19/2016 10:43:23 AM,1100 Block of STEINER ST,San Francisco,94115,B05,5,3625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7798119295256, -122.433758569735)",160190964-AM02 -123580041,54,12119727,Medical Incident,12/23/2012,12/22/2012,12/23/2012 03:33:23 AM,12/23/2012 03:36:26 AM,12/23/2012 03:36:36 AM,12/23/2012 03:52:14 AM,12/23/2012 03:57:27 AM,12/23/2012 04:17:48 AM,04/25/2016 01:55:10 PM,Code 2 Transport,12/23/2012 04:18:22 AM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,MEDIC,4,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",123580041-54 -123340241,T01,12111015,Alarms,11/29/2012,11/29/2012,11/29/2012 03:57:12 PM,11/29/2012 03:59:07 PM,11/29/2012 03:59:20 PM,11/29/2012 04:01:25 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/29/2012 04:02:37 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7868930732367, -122.408063130974)",123340241-T01 -140990376,E10,14033584,Medical Incident,04/09/2014,04/09/2014,04/09/2014 09:19:38 PM,04/09/2014 09:20:32 PM,04/09/2014 09:20:41 PM,04/09/2014 09:21:43 PM,04/09/2014 09:24:01 PM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Code 2 Transport,04/09/2014 09:37:52 PM,300 Block of ARGUELLO BLVD,SAN FRANCISCO,94118,B07,10,7114,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7844395880636, -122.459158221689)",140990376-E10 -122370291,E35,12078607,Medical Incident,08/24/2012,08/24/2012,08/24/2012 07:23:49 PM,08/24/2012 07:24:50 PM,08/24/2012 07:25:11 PM,08/24/2012 07:26:53 PM,08/24/2012 07:29:23 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 07:29:32 PM,200 Block of FOLSOM ST,SF,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",122370291-E35 -120220268,E36,12007569,Medical Incident,01/22/2012,01/22/2012,01/22/2012 07:00:19 PM,01/22/2012 07:01:06 PM,01/22/2012 07:01:27 PM,01/22/2012 07:02:36 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/22/2012 07:02:58 PM,600 Block of VAN NESS AVE,SF,94102,B02,36,3164,E,1,2,true,Non Life-threatening,1,ENGINE,3,2,5,Western Addition,"(37.78147394156, -122.42068958116)",120220268-E36 -110890244,T08,11029436,Alarms,03/30/2011,03/30/2011,03/30/2011 03:18:31 PM,03/30/2011 03:19:30 PM,03/30/2011 03:19:40 PM,03/30/2011 03:21:18 PM,03/30/2011 03:21:59 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 03:32:11 PM,300 Block of 3RD ST,SF,94107,B03,1,2176,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7833526602624, -122.398485675312)",110890244-T08 -160251639,88,16009916,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:11:31 PM,01/25/2016 12:14:33 PM,01/25/2016 12:15:07 PM,01/25/2016 12:15:14 PM,01/25/2016 12:19:14 PM,01/25/2016 12:38:54 PM,01/25/2016 12:44:02 PM,Code 2 Transport,01/25/2016 01:30:26 PM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",160251639-88 -130730270,RS1,13024416,Traffic Collision,03/14/2013,03/14/2013,03/14/2013 05:22:28 PM,03/14/2013 05:22:54 PM,03/14/2013 05:23:21 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,04/25/2016 01:53:50 PM,CAPITOL AV/OCEAN AV,SF,94112,B09,15,8474,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,9,7,West of Twin Peaks,"(37.7245331724618, -122.459212802427)",130730270-RS1 -110070392,E11,11002503,Medical Incident,01/07/2011,01/07/2011,01/07/2011 10:20:20 PM,01/07/2011 10:20:42 PM,01/07/2011 10:20:56 PM,01/07/2011 10:22:37 PM,01/07/2011 10:25:22 PM,04/25/2016 02:06:42 PM,04/25/2016 02:06:42 PM,Other,01/07/2011 10:26:06 PM,3400 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,true,,1,ENGINE,2,6,9,Bernal Heights,"(37.741419043576, -122.422665047787)",110070392-E11 -120810173,T06,12026875,Medical Incident,03/21/2012,03/21/2012,03/21/2012 11:42:26 AM,03/21/2012 11:44:06 AM,03/21/2012 11:44:54 AM,03/21/2012 11:46:00 AM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 11:49:05 AM,14TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,8,Mission,"(37.7681396851482, -122.422199175206)",120810173-T06 -121300290,82,12043357,Medical Incident,05/09/2012,05/09/2012,05/09/2012 07:05:14 PM,05/09/2012 07:06:39 PM,05/09/2012 07:06:54 PM,05/09/2012 07:07:09 PM,05/09/2012 07:10:36 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,No Merit,05/09/2012 07:21:21 PM,0 Block of MASON ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",121300290-82 -160032275,AM16,16001268,Medical Incident,01/03/2016,01/03/2016,01/03/2016 05:00:03 PM,01/03/2016 05:00:20 PM,01/03/2016 05:01:48 PM,01/03/2016 05:06:39 PM,01/03/2016 05:08:43 PM,01/03/2016 05:22:54 PM,01/03/2016 05:40:39 PM,Code 2 Transport,01/03/2016 06:14:00 PM,400 Block of 10TH ST,San Francisco,94103,B02,29,2344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7709248562482, -122.410555957263)",160032275-AM16 -140240058,87,14008071,Medical Incident,01/24/2014,01/23/2014,01/24/2014 05:32:04 AM,01/24/2014 05:32:54 AM,01/24/2014 05:33:48 AM,01/24/2014 05:35:34 AM,01/24/2014 05:39:45 AM,01/24/2014 05:51:17 AM,01/24/2014 05:53:57 AM,Code 3 Transport,01/24/2014 06:33:05 AM,1500 Block of CALIFORNIA ST,SF,94109,B04,41,1635,,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",140240058-87 -110820293,T17,11027030,Structure Fire,03/23/2011,03/23/2011,03/23/2011 04:51:15 PM,03/23/2011 04:51:16 PM,03/23/2011 04:52:02 PM,03/23/2011 04:52:55 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 04:55:47 PM,ARLETA AV/DELTA ST,SF,94134,B09,44,6312,3,3,3,false,,1,TRUCK,2,9,10,Visitacion Valley,"(37.7144789564786, -122.40889553475)",110820293-T17 -110450285,E03,11015008,Medical Incident,02/14/2011,02/14/2011,02/14/2011 06:10:01 PM,02/14/2011 06:11:52 PM,02/14/2011 06:12:13 PM,02/14/2011 06:13:21 PM,02/14/2011 06:15:35 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,No Merit,02/14/2011 06:17:51 PM,HYDE ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",110450285-E03 -111730328,E32,11057204,Medical Incident,06/22/2011,06/22/2011,06/22/2011 08:58:48 PM,06/22/2011 08:59:06 PM,06/22/2011 08:59:35 PM,06/22/2011 09:00:44 PM,06/22/2011 09:02:01 PM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,06/22/2011 09:12:44 PM,3400 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7408597419405, -122.423026769778)",111730328-E32 -113290042,KM04,11109046,Medical Incident,11/25/2011,11/24/2011,11/25/2011 05:14:48 AM,11/25/2011 05:16:08 AM,11/25/2011 05:17:14 AM,11/25/2011 05:18:09 AM,11/25/2011 05:21:55 AM,11/25/2011 05:33:40 AM,11/25/2011 05:36:38 AM,Code 2 Transport,11/25/2011 05:50:05 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",113290042-KM04 -160282158,86,16011127,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:29:29 PM,01/28/2016 02:30:17 PM,01/28/2016 02:31:00 PM,01/28/2016 02:31:10 PM,01/28/2016 02:38:58 PM,01/28/2016 02:53:43 PM,01/28/2016 03:10:17 PM,Code 2 Transport,01/28/2016 04:18:22 PM,700 Block of VICTORIA ST,San Francisco,94127,B09,15,8443,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7241304877603, -122.464177585076)",160282158-86 -160331547,79,16012972,Medical Incident,02/02/2016,02/02/2016,02/02/2016 12:19:09 PM,02/02/2016 12:24:00 PM,02/02/2016 12:25:29 PM,02/02/2016 12:25:51 PM,02/02/2016 12:33:10 PM,02/02/2016 12:51:11 PM,02/02/2016 12:52:03 PM,Code 3 Transport,02/02/2016 01:40:19 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",160331547-79 -122680368,94,12088697,Medical Incident,09/24/2012,09/24/2012,09/24/2012 10:34:34 PM,09/24/2012 10:35:00 PM,09/24/2012 10:35:08 PM,09/24/2012 10:36:36 PM,09/24/2012 10:39:49 PM,09/24/2012 10:57:14 PM,09/24/2012 11:06:55 PM,Code 2 Transport,09/24/2012 11:22:37 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7864070156063, -122.408499456394)",122680368-94 -122730053,94,12089931,Medical Incident,09/29/2012,09/28/2012,09/29/2012 02:40:22 AM,09/29/2012 02:40:56 AM,09/29/2012 02:41:16 AM,09/29/2012 02:41:30 AM,09/29/2012 03:04:50 AM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Patient Declined Transport,09/29/2012 03:29:35 AM,STOCKTON ST/GREEN ST,SF,94133,B01,28,1266,2,2,2,false,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7994898187705, -122.40901437954)",122730053-94 -122290168,81,12075864,Medical Incident,08/16/2012,08/16/2012,08/16/2012 12:06:26 PM,08/16/2012 12:08:06 PM,08/16/2012 12:08:50 PM,08/16/2012 12:09:23 PM,08/16/2012 12:21:31 PM,08/16/2012 12:31:03 PM,08/16/2012 12:34:42 PM,Code 2 Transport,08/16/2012 01:07:19 PM,1800 Block of SUTTER ST,SF,94115,B04,38,3433,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,4,5,Pacific Heights,"(37.7864581478384, -122.43077642338)",122290168-81 -113210110,AM16,11106574,Medical Incident,11/17/2011,11/17/2011,11/17/2011 09:37:36 AM,11/17/2011 09:38:45 AM,11/17/2011 09:39:09 AM,11/17/2011 09:39:50 AM,11/17/2011 09:50:49 AM,11/17/2011 10:05:32 AM,11/17/2011 10:35:55 AM,Code 2 Transport,11/17/2011 11:18:18 AM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,E,3,false,,1,PRIVATE,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",113210110-AM16 -160082254,75,16003289,Medical Incident,01/08/2016,01/08/2016,01/08/2016 03:02:21 PM,01/08/2016 03:02:53 PM,01/08/2016 03:05:20 PM,01/08/2016 03:05:20 PM,01/08/2016 03:07:14 PM,01/08/2016 03:21:01 PM,01/08/2016 03:26:40 PM,Code 3 Transport,01/08/2016 04:25:12 PM,POST ST/TAYLOR ST,San Francisco,94102,B01,3,1451,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7878721676702, -122.411699233294)",160082254-75 -120940027,77,12031024,Medical Incident,04/03/2012,04/02/2012,04/03/2012 03:03:43 AM,04/03/2012 03:06:29 AM,04/03/2012 03:06:48 AM,04/03/2012 03:06:56 AM,04/03/2012 03:12:21 AM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,No Merit,04/03/2012 03:19:57 AM,3400 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7550983758636, -122.42346407777)",120940027-77 -160392736,71,16015726,Medical Incident,02/08/2016,02/08/2016,02/08/2016 05:26:04 PM,02/08/2016 05:28:04 PM,02/08/2016 05:28:13 PM,02/08/2016 05:28:29 PM,02/08/2016 05:43:47 PM,02/08/2016 05:51:46 PM,02/08/2016 06:12:13 PM,Code 2 Transport,02/08/2016 06:44:26 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7191183780763, -122.480484610594)",160392736-71 -113370388,E21,11111837,Structure Fire,12/03/2011,12/03/2011,12/03/2011 11:36:42 PM,12/03/2011 11:38:11 PM,12/03/2011 11:38:43 PM,12/03/2011 11:40:03 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/03/2011 11:43:45 PM,500 Block of PAGE ST,SF,94117,B05,6,3531,3,3,3,false,,1,ENGINE,8,2,5,Hayes Valley,"(37.7731977871942, -122.429820520759)",113370388-E21 -121150256,E33,12038205,Medical Incident,04/24/2012,04/24/2012,04/24/2012 05:13:26 PM,04/24/2012 05:16:04 PM,04/24/2012 05:16:18 PM,04/24/2012 05:18:06 PM,04/24/2012 05:21:33 PM,04/25/2016 01:59:01 PM,04/25/2016 01:59:01 PM,Other,04/24/2012 05:40:43 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",121150256-E33 -110440340,E36,11014762,Medical Incident,02/13/2011,02/13/2011,02/13/2011 10:04:30 PM,02/13/2011 10:05:36 PM,02/13/2011 10:05:55 PM,02/13/2011 10:07:06 PM,02/13/2011 10:09:03 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/13/2011 10:30:54 PM,300 Block of 11TH ST,SF,94103,B02,36,5112,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7712855259531, -122.413204267102)",110440340-E36 -121750284,KM05,12058193,Medical Incident,06/23/2012,06/23/2012,06/23/2012 05:07:24 PM,06/23/2012 05:07:48 PM,06/23/2012 05:08:15 PM,06/23/2012 05:08:50 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 05:16:30 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121750284-KM05 -112410028,E28,11079399,Structure Fire,08/29/2011,08/28/2011,08/29/2011 02:18:09 AM,08/29/2011 02:18:09 AM,08/29/2011 02:18:15 AM,08/29/2011 02:19:54 AM,08/29/2011 02:22:07 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Fire,08/29/2011 02:24:01 AM,JONES ST/CHESTNUT ST,SF,94133,B01,28,1515,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.8033479668451, -122.416510772611)",112410028-E28 -140600245,E01,14020310,Medical Incident,03/01/2014,03/01/2014,03/01/2014 03:58:34 PM,03/01/2014 03:58:53 PM,03/01/2014 04:01:31 PM,03/01/2014 04:01:31 PM,03/01/2014 04:03:42 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Code 2 Transport,03/01/2014 04:08:15 PM,NATOMA ST/6TH ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801620260598, -122.407691417119)",140600245-E01 -160403731,68,16016233,Medical Incident,02/09/2016,02/09/2016,02/09/2016 10:09:29 PM,02/09/2016 10:10:35 PM,02/09/2016 10:10:47 PM,02/09/2016 10:10:54 PM,02/09/2016 10:21:50 PM,02/09/2016 10:31:26 PM,02/09/2016 10:46:41 PM,Code 2 Transport,02/09/2016 11:18:51 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160403731-68 -120680359,AP,12022728,Other,03/08/2012,03/08/2012,03/08/2012 10:28:47 PM,03/08/2012 10:28:47 PM,03/08/2012 10:28:47 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Fire,03/08/2012 10:29:24 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120680359-AP -133630104,E41,13123239,Medical Incident,12/29/2013,12/29/2013,12/29/2013 09:39:13 AM,12/29/2013 09:40:11 AM,12/29/2013 09:40:30 AM,12/29/2013 09:41:11 AM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/29/2013 09:43:56 AM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",133630104-E41 -160173514,55,16007046,Structure Fire,01/17/2016,01/17/2016,01/17/2016 11:20:39 PM,01/17/2016 11:23:56 PM,01/17/2016 11:24:10 PM,01/17/2016 11:24:39 PM,01/17/2016 11:35:53 PM,01/17/2016 11:41:01 PM,01/17/2016 11:56:58 PM,Code 2 Transport,01/18/2016 12:25:27 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,3,3,3,true,Alarm,1,MEDIC,10,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160173514-55 -122100035,B01,12069640,Explosion,07/28/2012,07/27/2012,07/28/2012 02:18:06 AM,07/28/2012 02:20:45 AM,07/28/2012 02:21:14 AM,07/28/2012 02:22:44 AM,07/28/2012 02:24:58 AM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Fire,07/28/2012 02:26:45 AM,1300 Block of PACIFIC AVE,SF,94109,B01,41,1565,3,3,3,false,Fire,1,CHIEF,2,1,3,Russian Hill,"(37.79570213146, -122.416839772953)",122100035-B01 -121450314,B09,12048250,Structure Fire,05/24/2012,05/24/2012,05/24/2012 07:34:51 PM,05/24/2012 07:37:50 PM,05/24/2012 07:38:42 PM,05/24/2012 07:39:12 PM,05/24/2012 07:43:04 PM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Other,05/24/2012 07:46:11 PM,100 Block of DUBLIN ST,SF,94112,B09,43,6165,3,3,3,false,Fire,1,CHIEF,2,9,11,Excelsior,"(37.7178073238376, -122.42704025216)",121450314-B09 -121480123,KM10,12049063,Medical Incident,05/27/2012,05/27/2012,05/27/2012 10:05:15 AM,05/27/2012 10:06:50 AM,05/27/2012 10:08:21 AM,05/27/2012 10:08:54 AM,05/27/2012 10:15:29 AM,05/27/2012 10:44:12 AM,05/27/2012 10:50:23 AM,Code 2 Transport,05/27/2012 11:13:22 AM,400 Block of LARKIN ST,SF,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",121480123-KM10 -122630344,93,12087007,Medical Incident,09/19/2012,09/19/2012,09/19/2012 09:14:19 PM,09/19/2012 09:15:11 PM,09/19/2012 09:15:33 PM,09/19/2012 09:15:48 PM,09/19/2012 09:25:41 PM,09/19/2012 09:31:42 PM,09/19/2012 09:58:17 PM,Code 2 Transport,09/19/2012 09:19:33 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122630344-93 -131010190,KM06,13033951,Medical Incident,04/11/2013,04/11/2013,04/11/2013 12:31:35 PM,04/11/2013 12:32:26 PM,04/11/2013 12:32:48 PM,04/11/2013 12:33:44 PM,04/11/2013 12:40:23 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/11/2013 12:42:35 PM,700 Block of PRESIDIO AVE,SF,94115,B05,10,4366,E,2,2,false,Non Life-threatening,1,PRIVATE,4,5,2,Presidio Heights,"(37.7849123605726, -122.446266007624)",131010190-KM06 -131750099,RS1,13059313,Medical Incident,06/24/2013,06/24/2013,06/24/2013 09:31:43 AM,06/24/2013 09:33:59 AM,06/24/2013 09:35:01 AM,06/24/2013 09:36:12 AM,06/24/2013 09:38:30 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 09:38:42 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131750099-RS1 -133470191,E02,13117756,Fuel Spill,12/13/2013,12/13/2013,12/13/2013 01:22:30 PM,12/13/2013 01:26:17 PM,12/13/2013 01:26:39 PM,12/13/2013 01:28:47 PM,12/13/2013 01:31:03 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Fire,12/13/2013 01:39:51 PM,300 Block of POST ST,SF,94108,B01,1,1362,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7883420975425, -122.407575452565)",133470191-E02 -120940064,58,12031054,Medical Incident,04/03/2012,04/03/2012,04/03/2012 08:06:25 AM,04/03/2012 08:08:02 AM,04/03/2012 08:08:24 AM,04/03/2012 08:09:07 AM,04/03/2012 08:14:52 AM,04/03/2012 08:26:17 AM,04/03/2012 08:52:00 AM,Code 2 Transport,04/03/2012 09:00:42 AM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",120940064-58 -112310320,E17,11076399,Medical Incident,08/19/2011,08/19/2011,08/19/2011 09:16:52 PM,08/19/2011 09:18:01 PM,08/19/2011 09:18:15 PM,08/19/2011 09:19:16 PM,08/19/2011 09:21:10 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 09:28:20 PM,0 Block of HUDSON AVE,SF,94124,B10,17,6626,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324208265708, -122.379091692307)",112310320-E17 -111640186,54,11054129,Medical Incident,06/13/2011,06/13/2011,06/13/2011 12:48:49 PM,06/13/2011 12:49:54 PM,06/13/2011 12:50:27 PM,06/13/2011 12:51:08 PM,06/13/2011 01:01:11 PM,06/13/2011 01:28:16 PM,06/13/2011 01:39:45 PM,Code 3 Transport,06/13/2011 02:42:03 PM,1200 Block of CHESTNUT ST,SF,94109,B01,16,3133,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8023311264976, -122.423898591878)",111640186-54 -160452435,KM12,16018208,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 05:01:12 PM,02/14/2016 05:01:12 PM,02/14/2016 05:02:18 PM,02/14/2016 05:03:22 PM,02/14/2016 05:07:52 PM,02/14/2016 05:21:15 PM,02/14/2016 05:40:06 PM,Code 2 Transport,02/14/2016 06:15:58 PM,3RD AV/LINCOLN WY,San Francisco,94122,B05,12,7324,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7661657883675, -122.460016419093)",160452435-KM12 -123050251,E06,12101237,Alarms,10/31/2012,10/31/2012,10/31/2012 01:30:15 PM,10/31/2012 01:32:04 PM,10/31/2012 01:34:40 PM,10/31/2012 01:35:05 PM,10/31/2012 01:38:31 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/31/2012 01:43:52 PM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,3,3,true,Alarm,1,ENGINE,3,2,8,Mission,"(37.766322531621, -122.424723870424)",123050251-E06 -160140374,89,16005436,Medical Incident,01/14/2016,01/13/2016,01/14/2016 04:51:00 AM,01/14/2016 04:52:02 AM,01/14/2016 04:52:21 AM,01/14/2016 04:52:28 AM,01/14/2016 04:57:12 AM,01/14/2016 05:13:29 AM,01/14/2016 05:20:00 AM,Code 3 Transport,01/14/2016 05:38:52 AM,400 Block of 1ST ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7858304240068, -122.392540509434)",160140374-89 -160350758,85,16013716,Medical Incident,02/04/2016,02/04/2016,02/04/2016 08:12:17 AM,02/04/2016 08:12:17 AM,02/04/2016 08:12:36 AM,02/04/2016 08:12:37 AM,02/04/2016 08:16:39 AM,02/04/2016 08:25:52 AM,02/04/2016 08:34:49 AM,Code 3 Transport,02/04/2016 09:19:41 AM,CYRIL MAGNIN ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160350758-85 -113430390,E07,11113918,Medical Incident,12/09/2011,12/09/2011,12/09/2011 08:53:24 PM,12/09/2011 08:53:43 PM,12/09/2011 08:53:52 PM,12/09/2011 08:55:28 PM,12/09/2011 08:56:38 PM,04/25/2016 02:01:14 PM,04/25/2016 02:01:14 PM,Other,12/09/2011 09:01:28 PM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",113430390-E07 -160373541,52,16014899,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:12:46 PM,02/06/2016 08:14:47 PM,02/06/2016 08:18:11 PM,02/06/2016 08:18:19 PM,02/06/2016 08:32:48 PM,02/06/2016 08:46:32 PM,02/06/2016 08:51:57 PM,Code 2 Transport,02/06/2016 09:50:38 PM,300 Block of BAKER ST,San Francisco,94117,B05,21,4252,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7741100998058, -122.440947780365)",160373541-52 -122440338,E05,12080808,Outside Fire,08/31/2012,08/31/2012,08/31/2012 09:39:13 PM,08/31/2012 09:39:53 PM,08/31/2012 09:40:33 PM,08/31/2012 09:41:46 PM,08/31/2012 09:43:00 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Fire,08/31/2012 09:51:35 PM,GROVE ST/WEBSTER ST,SF,94117,B05,5,3533,3,3,3,true,Fire,1,ENGINE,1,2,5,Hayes Valley,"(37.7769760216356, -122.429686882502)",122440338-E05 -160883384,52,16035093,Medical Incident,03/28/2016,03/28/2016,03/28/2016 07:37:45 PM,03/28/2016 07:40:22 PM,03/28/2016 07:40:39 PM,03/28/2016 07:40:54 PM,03/28/2016 07:46:05 PM,03/28/2016 07:56:54 PM,03/28/2016 08:18:25 PM,Code 3 Transport,03/28/2016 08:53:42 PM,300 Block of 24TH AVE,San Francisco,94121,B07,14,7214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7830006442599, -122.483939034671)",160883384-52 -110470057,E44,11015444,Alarms,02/16/2011,02/15/2011,02/16/2011 06:39:30 AM,02/16/2011 06:41:02 AM,02/16/2011 06:41:24 AM,04/25/2016 02:06:04 PM,02/16/2011 06:42:53 AM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/16/2011 07:03:37 AM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",110470057-E44 -110350125,E01,11011453,Medical Incident,02/04/2011,02/04/2011,02/04/2011 09:49:00 AM,02/04/2011 09:51:02 AM,02/04/2011 09:51:47 AM,02/04/2011 09:52:46 AM,02/04/2011 09:55:30 AM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,04/25/2016 02:06:16 PM,MISSION ST/3RD ST,SF,94103,B03,1,2178,2,2,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",110350125-E01 -123460316,RS1,12115822,Medical Incident,12/11/2012,12/11/2012,12/11/2012 08:17:05 PM,12/11/2012 08:17:47 PM,12/11/2012 08:18:19 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 08:19:28 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7812234542945, -122.408928070797)",123460316-RS1 -160851613,56,16033753,Medical Incident,03/25/2016,03/25/2016,03/25/2016 12:05:06 PM,03/25/2016 12:06:40 PM,03/25/2016 12:07:37 PM,03/25/2016 12:10:32 PM,03/25/2016 12:28:42 PM,03/25/2016 12:41:36 PM,03/25/2016 01:07:39 PM,Code 2 Transport,03/25/2016 01:23:51 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160851613-56 -120400154,D2,12013310,Structure Fire,02/09/2012,02/09/2012,02/09/2012 12:19:15 PM,02/09/2012 12:20:55 PM,02/09/2012 12:21:23 PM,02/09/2012 12:22:11 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 12:27:58 PM,800 Block of 33RD AVE,SF,94121,B07,14,7243,3,3,3,false,Fire,1,CHIEF,8,7,1,Outer Richmond,"(37.7731148603785, -122.492763022617)",120400154-D2 -130040304,T19,13001448,Water Rescue,01/04/2013,01/04/2013,01/04/2013 04:55:16 PM,01/04/2013 04:57:12 PM,01/04/2013 04:57:40 PM,01/04/2013 04:59:13 PM,01/04/2013 05:03:49 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 05:14:34 PM,GREAT HY/SLOAT BL,SF,94132,B08,19,8713,3,3,3,true,,1,TRUCK,3,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",130040304-T19 -160711884,KM04,16028251,Medical Incident,03/11/2016,03/11/2016,03/11/2016 01:47:15 PM,03/11/2016 01:47:15 PM,03/11/2016 01:49:58 PM,03/11/2016 01:50:51 PM,03/11/2016 01:54:16 PM,03/11/2016 02:08:20 PM,03/11/2016 02:17:41 PM,Code 2 Transport,03/11/2016 02:49:54 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160711884-KM04 -160243104,75,16009667,Medical Incident,01/24/2016,01/24/2016,01/24/2016 07:56:50 PM,01/24/2016 07:59:02 PM,01/24/2016 07:59:19 PM,01/24/2016 07:59:23 PM,01/24/2016 08:12:05 PM,01/24/2016 08:43:01 PM,01/24/2016 08:48:48 PM,Code 2 Transport,01/24/2016 09:23:26 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160243104-75 -160322953,KM11,16012703,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:32:53 PM,02/01/2016 06:34:32 PM,02/01/2016 06:34:41 PM,02/01/2016 06:35:04 PM,02/01/2016 06:52:28 PM,02/01/2016 06:52:30 PM,02/01/2016 07:07:14 PM,Code 2 Transport,02/01/2016 07:30:55 PM,500 Block of BAY SHORE BLVD,San Francisco,94124,B10,42,6374,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,9,Bernal Heights,"(37.739324402545, -122.407138468032)",160322953-KM11 -113550022,67,11117743,Medical Incident,12/21/2011,12/20/2011,12/21/2011 02:27:57 AM,12/21/2011 02:30:45 AM,12/21/2011 02:31:05 AM,12/21/2011 02:31:45 AM,12/21/2011 02:41:45 AM,12/21/2011 02:53:25 AM,12/21/2011 02:57:32 AM,Code 2 Transport,12/21/2011 03:34:39 AM,400 Block of DUBOCE AVE,SF,94114,B02,6,3525,2,2,2,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",113550022-67 -102820063,T06,10089586,Structure Fire,10/09/2010,10/08/2010,10/09/2010 03:43:44 AM,10/09/2010 03:43:45 AM,10/09/2010 03:44:48 AM,10/09/2010 03:46:30 AM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/09/2010 03:47:16 AM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,false,,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",102820063-T06 -160181640,60,16007230,Medical Incident,01/18/2016,01/18/2016,01/18/2016 01:20:32 PM,01/18/2016 01:22:38 PM,01/18/2016 01:24:06 PM,01/18/2016 01:24:26 PM,01/18/2016 01:46:49 PM,01/18/2016 02:56:34 PM,01/18/2016 02:56:35 PM,Code 2 Transport,01/18/2016 03:08:52 PM,0 Block of FREMONT ST,San Francisco,94105,B03,35,2126,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7911273215916, -122.397428020134)",160181640-60 -133500396,75,13118993,Medical Incident,12/16/2013,12/16/2013,12/16/2013 08:57:09 PM,12/16/2013 08:58:50 PM,12/16/2013 09:01:52 PM,12/16/2013 09:02:39 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,04/25/2016 01:49:13 PM,HERON ST/BERWICK PL,SF,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7747871187973, -122.408309558364)",133500396-75 -112260183,E40,11074671,Medical Incident,08/14/2011,08/14/2011,08/14/2011 01:44:25 PM,08/14/2011 01:45:19 PM,08/14/2011 01:46:22 PM,08/14/2011 01:51:25 PM,08/14/2011 01:51:28 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Against Medical Advice,08/14/2011 02:40:14 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",112260183-E40 -160123447,KM03,16004940,Medical Incident,01/12/2016,01/12/2016,01/12/2016 08:36:23 PM,01/12/2016 08:38:40 PM,01/12/2016 08:38:58 PM,01/12/2016 08:39:27 PM,01/12/2016 08:47:39 PM,01/12/2016 08:52:03 PM,01/12/2016 09:00:17 PM,Code 2 Transport,01/12/2016 09:25:11 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160123447-KM03 -133240286,E03,13110111,Medical Incident,11/20/2013,11/20/2013,11/20/2013 04:02:12 PM,11/20/2013 04:03:28 PM,11/20/2013 04:03:44 PM,11/20/2013 04:03:55 PM,11/20/2013 04:05:45 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 04:10:11 PM,LARKIN ST/EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",133240286-E03 -122550256,54,12084346,Medical Incident,09/11/2012,09/11/2012,09/11/2012 03:34:14 PM,09/11/2012 03:35:56 PM,09/11/2012 03:38:27 PM,04/25/2016 01:56:49 PM,09/11/2012 03:40:28 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,No Merit,09/11/2012 03:43:53 PM,1100 Block of SUTTER ST,SF,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",122550256-54 -103530289,AP,10113414,Other,12/19/2010,12/19/2010,12/19/2010 04:52:16 PM,12/19/2010 04:52:17 PM,12/19/2010 04:52:17 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,Fire,12/19/2010 04:52:47 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",103530289-AP -123510221,RC1,12117423,Medical Incident,12/16/2012,12/16/2012,12/16/2012 02:23:46 PM,12/16/2012 02:23:58 PM,12/16/2012 02:24:08 PM,12/16/2012 02:38:04 PM,12/16/2012 02:46:27 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/16/2012 02:54:06 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",123510221-RC1 -110860013,E36,11028232,Medical Incident,03/27/2011,03/26/2011,03/27/2011 12:29:08 AM,03/27/2011 12:30:51 AM,03/27/2011 12:31:17 AM,03/27/2011 12:33:04 AM,03/27/2011 12:35:21 AM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/27/2011 12:38:14 AM,ROSE ST/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7737747522652, -122.421089416719)",110860013-E36 -160822257,89,16032609,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:55:15 PM,03/22/2016 02:56:33 PM,03/22/2016 03:01:18 PM,03/22/2016 03:02:12 PM,03/22/2016 03:13:02 PM,03/22/2016 03:29:30 PM,03/22/2016 03:53:33 PM,Code 2 Transport,03/22/2016 04:50:28 PM,1500 Block of SILVER AVE,San Francisco,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7323409564372, -122.406116198284)",160822257-89 -123390341,T17,12113194,Medical Incident,12/04/2012,12/04/2012,12/04/2012 07:04:41 PM,12/04/2012 07:06:03 PM,12/04/2012 07:07:31 PM,12/04/2012 07:09:10 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,04/25/2016 01:55:28 PM,Other,12/04/2012 07:24:42 PM,0 Block of GARLINGTON CT,SF,94124,B10,17,6622,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7325070966122, -122.384396871119)",123390341-T17 -132580075,RC3,13087185,Structure Fire,09/15/2013,09/14/2013,09/15/2013 05:52:22 AM,09/15/2013 05:53:13 AM,09/15/2013 05:57:23 AM,09/15/2013 05:59:54 AM,09/15/2013 06:21:51 AM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/15/2013 07:00:07 AM,300 Block of 11TH ST,SF,94103,B02,36,5112,3,3,3,true,Fire,2,RESCUE CAPTAIN,16,2,6,Mission,"(37.7712080387402, -122.413302363173)",132580075-RC3 -160430284,KM07,16017137,Medical Incident,02/12/2016,02/11/2016,02/12/2016 02:59:46 AM,02/12/2016 03:01:13 AM,02/12/2016 03:03:21 AM,02/12/2016 03:03:57 AM,02/12/2016 03:09:26 AM,02/12/2016 03:15:40 AM,02/12/2016 03:47:28 AM,Code 2 Transport,02/12/2016 04:10:38 AM,400 Block of CENTRAL AVE,San Francisco,94117,B05,21,4356,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7736894298686, -122.444242063533)",160430284-KM07 -131480218,T03,13050197,Medical Incident,05/28/2013,05/28/2013,05/28/2013 01:38:54 PM,05/28/2013 01:40:25 PM,05/28/2013 01:40:35 PM,05/28/2013 01:42:03 PM,05/28/2013 01:44:50 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/28/2013 02:03:05 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",131480218-T03 -102690144,95,10085276,Medical Incident,09/26/2010,09/26/2010,09/26/2010 09:43:26 AM,09/26/2010 09:44:56 AM,09/26/2010 09:45:04 AM,09/26/2010 09:45:47 AM,09/26/2010 09:55:56 AM,09/26/2010 10:06:52 AM,09/26/2010 10:09:25 AM,Code 2 Transport,09/26/2010 10:24:42 AM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",102690144-95 -120450172,KM02,12014958,Medical Incident,02/14/2012,02/14/2012,02/14/2012 12:12:25 PM,02/14/2012 12:14:16 PM,02/14/2012 12:15:20 PM,02/14/2012 12:16:07 PM,02/14/2012 12:31:13 PM,02/14/2012 12:58:29 PM,04/25/2016 02:00:08 PM,Code 2 Transport,02/14/2012 01:19:02 PM,TAYLOR ST/BROADWAY ST,SF,94133,B01,2,1442,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7970385137093, -122.413558545037)",120450172-KM02 -160690444,72,16027339,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:05:41 AM,03/09/2016 06:07:56 AM,03/09/2016 06:08:27 AM,03/09/2016 06:08:36 AM,03/09/2016 06:10:25 AM,03/09/2016 06:16:07 AM,03/09/2016 06:27:03 AM,Code 2 Transport,03/09/2016 06:34:08 AM,10TH ST/MARKET ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",160690444-72 -120460200,85,12015311,Structure Fire,02/15/2012,02/15/2012,02/15/2012 01:47:31 PM,02/15/2012 01:48:44 PM,02/15/2012 01:49:08 PM,02/15/2012 01:49:36 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 01:55:12 PM,100 Block of BENNINGTON ST,SF,94110,B06,32,5742,3,3,3,true,Fire,1,MEDIC,6,6,9,Bernal Heights,"(37.7387969257185, -122.417769040148)",120460200-85 -122460385,E48,12081532,Medical Incident,09/02/2012,09/02/2012,09/02/2012 10:24:19 PM,09/02/2012 10:27:00 PM,09/02/2012 10:28:54 PM,09/02/2012 10:31:08 PM,09/02/2012 10:32:21 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 10:47:26 PM,1400 Block of CHINOOK CT,TI,94130,B03,48,2931,1,1,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8241920117735, -122.373821928989)",122460385-E48 -110670311,E01,11022170,Medical Incident,03/08/2011,03/08/2011,03/08/2011 08:00:16 PM,03/08/2011 08:02:39 PM,03/08/2011 08:03:23 PM,03/08/2011 08:05:11 PM,03/08/2011 08:08:16 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/08/2011 08:10:02 PM,MINNA ST/6TH ST,SF,94103,B03,1,2251,E,E,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7805353840251, -122.40816079453)",110670311-E01 -120450377,E36,12015140,Alarms,02/14/2012,02/14/2012,02/14/2012 10:42:58 PM,02/14/2012 10:43:49 PM,02/14/2012 10:44:02 PM,02/14/2012 10:44:55 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 10:46:30 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,4,3,6,South of Market,"(37.7800525030811, -122.40977382526)",120450377-E36 -113460098,E39,11114726,Medical Incident,12/12/2011,12/12/2011,12/12/2011 09:10:15 AM,12/12/2011 09:10:48 AM,12/12/2011 09:11:12 AM,12/12/2011 09:12:34 AM,12/12/2011 09:35:43 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 09:35:52 AM,0 Block of SAN ANDREAS WAY,SF,94127,B09,39,8551,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7336132918446, -122.463842714852)",113460098-E39 -133430042,96,13116202,Medical Incident,12/09/2013,12/08/2013,12/09/2013 05:44:26 AM,12/09/2013 05:46:38 AM,12/09/2013 05:49:18 AM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,04/25/2016 01:49:22 PM,8300 Block of OCEANVIEW TER,SF,94132,B09,33,8412,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",133430042-96 -112820029,E03,11093227,Structure Fire,10/09/2011,10/08/2011,10/09/2011 02:18:17 AM,10/09/2011 02:18:17 AM,10/09/2011 02:18:23 AM,04/25/2016 02:02:15 PM,10/09/2011 02:19:58 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 02:22:14 AM,400 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.787297919885, -122.409833940233)",112820029-E03 -160382396,KM06,16015281,Medical Incident,02/07/2016,02/07/2016,02/07/2016 03:42:34 PM,02/07/2016 03:43:13 PM,02/07/2016 03:43:54 PM,02/07/2016 03:44:38 PM,02/07/2016 03:49:44 PM,02/07/2016 04:11:07 PM,02/07/2016 04:28:07 PM,Code 2 Transport,02/07/2016 05:08:26 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160382396-KM06 -120450020,B01,12014850,Alarms,02/14/2012,02/13/2012,02/14/2012 02:14:53 AM,02/14/2012 02:15:33 AM,02/14/2012 02:15:42 AM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/14/2012 02:17:58 AM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8083718015584, -122.414994322457)",120450020-B01 -120060310,89,12002186,Medical Incident,01/06/2012,01/06/2012,01/06/2012 07:12:43 PM,01/06/2012 07:12:43 PM,01/06/2012 07:13:51 PM,01/06/2012 07:13:58 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,Other,01/06/2012 07:16:19 PM,3RD ST/PAUL AV,SF,94124,B10,44,6544,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7224316058888, -122.395622760595)",120060310-89 -160822829,85,16032667,Medical Incident,03/22/2016,03/22/2016,03/22/2016 05:09:32 PM,03/22/2016 05:09:32 PM,03/22/2016 05:09:46 PM,03/22/2016 05:10:03 PM,03/22/2016 05:25:22 PM,03/22/2016 05:57:43 PM,03/22/2016 06:04:19 PM,Code 2 Transport,03/22/2016 07:16:31 PM,1100 Block of FILLMORE ST,San Francisco,94115,B02,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160822829-85 -160430981,78,16017218,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:33:01 AM,02/12/2016 09:35:11 AM,02/12/2016 09:35:51 AM,02/12/2016 09:37:12 AM,02/12/2016 09:49:48 AM,02/12/2016 10:13:57 AM,02/12/2016 10:27:44 AM,Code 2 Transport,02/12/2016 11:01:56 AM,0 Block of NEY ST,San Francisco,94112,B09,32,5635,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7299211801387, -122.42921503487)",160430981-78 -130420252,92,13014380,Medical Incident,02/11/2013,02/11/2013,02/11/2013 04:03:29 PM,02/11/2013 04:04:29 PM,02/11/2013 04:05:23 PM,02/11/2013 04:05:51 PM,02/11/2013 04:09:15 PM,02/11/2013 04:20:19 PM,02/11/2013 04:41:32 PM,Code 2 Transport,02/11/2013 04:56:06 PM,2900 Block of 21ST ST,SF,94110,B06,7,545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7573853251797, -122.413999387231)",130420252-92 -160582375,67,16023183,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:55:28 PM,02/27/2016 03:57:57 PM,02/27/2016 03:59:10 PM,02/27/2016 03:59:18 PM,02/27/2016 04:02:11 PM,02/27/2016 04:10:07 PM,02/27/2016 04:19:53 PM,Code 2 Transport,02/27/2016 05:19:21 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160582375-67 -113140309,E13,11104437,Medical Incident,11/10/2011,11/10/2011,11/10/2011 06:34:14 PM,11/10/2011 06:35:39 PM,11/10/2011 06:36:11 PM,11/10/2011 06:36:28 PM,11/10/2011 06:42:21 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,04/25/2016 02:01:42 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",113140309-E13 -130720130,AM16,13023958,Medical Incident,03/13/2013,03/13/2013,03/13/2013 09:55:38 AM,03/13/2013 09:57:01 AM,03/13/2013 09:57:43 AM,03/13/2013 09:58:29 AM,03/13/2013 10:01:50 AM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,No Merit,03/13/2013 10:05:27 AM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",130720130-AM16 -131260086,E03,13042474,Medical Incident,05/06/2013,05/05/2013,05/06/2013 07:49:33 AM,05/06/2013 07:50:35 AM,05/06/2013 07:51:23 AM,05/06/2013 07:53:15 AM,05/06/2013 07:55:14 AM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,Other,05/06/2013 08:23:30 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",131260086-E03 -121900192,E36,12063314,Alarms,07/08/2012,07/08/2012,07/08/2012 02:39:41 PM,07/08/2012 02:41:18 PM,07/08/2012 02:41:31 PM,07/08/2012 02:41:42 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/08/2012 02:43:07 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,4,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",121900192-E36 -110830107,E14,11027222,Medical Incident,03/24/2011,03/24/2011,03/24/2011 09:02:00 AM,03/24/2011 09:03:17 AM,03/24/2011 09:03:57 AM,03/24/2011 09:05:37 AM,03/24/2011 09:08:25 AM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/24/2011 09:26:44 AM,500 Block of 29TH AVE,SF,94121,B07,14,7226,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.778934321761, -122.488875414525)",110830107-E14 -160412048,KM04,16016482,Medical Incident,02/10/2016,02/10/2016,02/10/2016 02:01:51 PM,02/10/2016 02:02:51 PM,02/10/2016 02:03:15 PM,02/10/2016 02:09:56 PM,02/10/2016 02:20:05 PM,02/10/2016 02:28:33 PM,02/10/2016 02:54:37 PM,Code 2 Transport,02/10/2016 03:49:55 PM,THE EMBARCADERO SOU/FOLSOM ST,San Francisco,94105,B03,35,2112,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7904750361941, -122.39055604599)",160412048-KM04 -122790069,55,12092141,Medical Incident,10/05/2012,10/04/2012,10/05/2012 07:10:48 AM,10/05/2012 07:13:07 AM,10/05/2012 07:13:56 AM,10/05/2012 07:14:04 AM,10/05/2012 07:20:30 AM,10/05/2012 07:34:50 AM,10/05/2012 07:40:23 AM,Code 2 Transport,10/05/2012 08:08:26 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",122790069-55 -111310161,81,11043269,Medical Incident,05/11/2011,05/11/2011,05/11/2011 12:08:22 PM,05/11/2011 12:09:33 PM,05/11/2011 12:12:50 PM,05/11/2011 12:13:09 PM,05/11/2011 12:22:23 PM,05/11/2011 12:43:00 PM,05/11/2011 01:25:26 PM,Code 2 Transport,05/11/2011 01:41:05 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.781960649289, -122.402224095303)",111310161-81 -130480285,E03,13016467,Traffic Collision,02/17/2013,02/17/2013,02/17/2013 05:50:58 PM,02/17/2013 05:51:17 PM,02/17/2013 05:51:39 PM,02/17/2013 05:53:17 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 05:54:18 PM,HYDE ST/MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",130480285-E03 -160032394,58,16001279,Medical Incident,01/03/2016,01/03/2016,01/03/2016 05:33:31 PM,01/03/2016 05:33:31 PM,01/03/2016 05:34:11 PM,01/03/2016 05:34:23 PM,01/03/2016 05:41:29 PM,01/03/2016 06:06:03 PM,01/03/2016 06:16:13 PM,Code 2 Transport,01/03/2016 06:35:53 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160032394-58 -160163412,75,16006590,Medical Incident,01/16/2016,01/16/2016,01/16/2016 09:02:27 PM,01/16/2016 09:03:03 PM,01/16/2016 09:03:18 PM,01/16/2016 09:03:29 PM,01/16/2016 09:08:35 PM,01/16/2016 09:25:29 PM,01/16/2016 09:30:40 PM,Code 2 Transport,01/16/2016 09:47:15 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160163412-75 -113060120,E43,11101594,Medical Incident,11/02/2011,11/02/2011,11/02/2011 09:52:13 AM,11/02/2011 09:52:29 AM,11/02/2011 09:53:27 AM,11/02/2011 09:54:56 AM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 10:02:06 AM,700 Block of EXCELSIOR AVE,SF,94112,B09,43,6155,3,2,2,false,,1,ENGINE,1,9,11,Excelsior,"(37.7233483966745, -122.427699241431)",113060120-E43 -160051933,50,16002018,Medical Incident,01/05/2016,01/05/2016,01/05/2016 01:54:36 PM,01/05/2016 01:55:39 PM,01/05/2016 01:55:50 PM,01/05/2016 01:56:06 PM,01/05/2016 02:04:46 PM,01/05/2016 02:21:40 PM,01/05/2016 02:41:38 PM,Code 2 Transport,01/05/2016 03:22:40 PM,1700 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",160051933-50 -131510364,E07,13051289,Medical Incident,05/31/2013,05/31/2013,05/31/2013 08:42:33 PM,05/31/2013 08:43:22 PM,05/31/2013 08:43:48 PM,05/31/2013 08:45:03 PM,05/31/2013 08:47:16 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 08:52:14 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",131510364-E07 -160351186,82,16013762,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:19:56 AM,02/04/2016 10:20:18 AM,02/04/2016 10:20:28 AM,02/04/2016 10:20:38 AM,02/04/2016 10:21:13 AM,02/04/2016 10:52:47 AM,02/04/2016 11:13:48 AM,Code 2 Transport,02/04/2016 11:47:11 AM,400 Block of ANDERSON ST,San Francisco,94110,B06,32,5726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7378006756546, -122.415350364076)",160351186-82 -160043029,KM04,16001727,Medical Incident,01/04/2016,01/04/2016,01/04/2016 06:50:53 PM,01/04/2016 06:55:26 PM,01/04/2016 06:56:15 PM,01/04/2016 06:57:02 PM,01/04/2016 07:06:43 PM,01/04/2016 07:43:53 PM,01/04/2016 08:04:26 PM,Code 2 Transport,01/04/2016 08:08:39 PM,4100 Block of 25TH ST,San Francisco,94114,B06,11,5541,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7498175678923, -122.432828272359)",160043029-KM04 -122150126,T09,12071312,Vehicle Fire,08/02/2012,08/02/2012,08/02/2012 11:02:04 AM,08/02/2012 11:04:37 AM,08/02/2012 11:04:50 AM,08/02/2012 11:05:59 AM,08/02/2012 11:09:44 AM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/02/2012 11:24:33 AM,100 Block of RICKARD ST,SF,94134,B10,42,6366,3,3,3,false,Fire,1,TRUCK,2,10,9,Portola,"(37.7342270960394, -122.407403239738)",122150126-T09 -112390015,E18,11078738,Medical Incident,08/27/2011,08/26/2011,08/27/2011 01:18:24 AM,08/27/2011 01:19:08 AM,08/27/2011 01:19:41 AM,08/27/2011 01:21:13 AM,08/27/2011 01:21:28 AM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 01:27:24 AM,1600 Block of 23RD AVE,SF,94122,B08,18,7446,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7568516433542, -122.480884171274)",112390015-E18 -113570264,KM11,11118656,Medical Incident,12/23/2011,12/23/2011,12/23/2011 01:08:08 PM,12/23/2011 01:09:03 PM,12/23/2011 01:09:50 PM,12/23/2011 01:11:15 PM,12/23/2011 01:18:53 PM,12/23/2011 01:38:53 PM,12/23/2011 02:03:55 PM,Code 2 Transport,12/23/2011 02:25:24 PM,1500 Block of SLOAT BLVD,SF,94132,B08,19,7552,3,3,3,false,,1,PRIVATE,2,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",113570264-KM11 -111500159,B06,11049682,Alarms,05/30/2011,05/30/2011,05/30/2011 12:34:15 PM,05/30/2011 12:36:15 PM,05/30/2011 12:36:27 PM,04/25/2016 02:04:23 PM,05/30/2011 12:42:48 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Fire,05/30/2011 12:57:04 PM,2900 Block of 18TH ST,SF,94110,B02,7,5426,3,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.7616171946557, -122.411565020696)",111500159-B06 -140340302,B02,14011604,Alarms,02/03/2014,02/03/2014,02/03/2014 07:28:54 PM,02/03/2014 07:28:55 PM,02/03/2014 07:28:59 PM,02/03/2014 07:30:15 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Fire,02/03/2014 07:33:30 PM,600 Block of DIVISADERO ST,SF,94117,B05,21,4146,3,3,3,false,Alarm,1,CHIEF,3,5,5,Hayes Valley,"(37.775474331091, -122.437778722849)",140340302-B02 -160092222,68,16003696,Medical Incident,01/09/2016,01/09/2016,01/09/2016 03:40:10 PM,01/09/2016 03:42:05 PM,01/09/2016 03:42:18 PM,01/09/2016 03:42:25 PM,01/09/2016 03:44:37 PM,01/09/2016 03:58:52 PM,01/09/2016 04:09:42 PM,Code 2 Transport,01/09/2016 04:25:34 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160092222-68 -140650072,E03,14021881,Vehicle Fire,03/06/2014,03/05/2014,03/06/2014 07:37:09 AM,03/06/2014 07:39:23 AM,03/06/2014 07:39:43 AM,03/06/2014 07:42:12 AM,03/06/2014 07:43:55 AM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Fire,03/06/2014 07:45:53 AM,700 Block of SUTTER ST,SAN FRANCISCO,94109,B01,3,1463,3,3,3,true,Fire,1,ENGINE,1,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",140650072-E03 -140140241,KM12,14004841,Medical Incident,01/14/2014,01/14/2014,01/14/2014 03:22:27 PM,01/14/2014 03:23:50 PM,01/14/2014 03:24:25 PM,01/14/2014 03:25:00 PM,01/14/2014 03:33:38 PM,01/14/2014 04:02:04 PM,01/14/2014 04:08:35 PM,Code 2 Transport,01/14/2014 04:41:48 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",140140241-KM12 -102990077,E33,10095391,Traffic Collision,10/26/2010,10/25/2010,10/26/2010 07:45:45 AM,10/26/2010 07:47:29 AM,10/26/2010 07:47:45 AM,10/26/2010 07:48:40 AM,10/26/2010 07:51:19 AM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 08:24:11 AM,SAN JOSE AV/LIEBIG ST,SF,94112,B09,33,8357,2,2,2,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7095398944267, -122.457670304505)",102990077-E33 -160510687,79,16020382,Medical Incident,02/20/2016,02/19/2016,02/20/2016 07:45:48 AM,02/20/2016 07:48:25 AM,02/20/2016 07:49:28 AM,02/20/2016 07:50:14 AM,02/20/2016 07:58:43 AM,02/20/2016 08:11:33 AM,02/20/2016 08:30:38 AM,Code 2 Transport,02/20/2016 09:13:00 AM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160510687-79 -140980102,T05,14032981,Alarms,04/08/2014,04/08/2014,04/08/2014 08:09:36 AM,04/08/2014 08:10:46 AM,04/08/2014 08:11:08 AM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Fire,04/08/2014 08:12:41 AM,0 Block of SANCHEZ ST,SAN FRANCISCO,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,4,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",140980102-T05 -132180389,E21,13073792,Alarms,08/06/2013,08/06/2013,08/06/2013 11:41:11 PM,08/06/2013 11:42:26 PM,08/06/2013 11:42:33 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 11:43:41 PM,2200 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,true,Alarm,1,ENGINE,3,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",132180389-E21 -130340259,58,13011681,Structure Fire,02/03/2013,02/03/2013,02/03/2013 05:40:31 PM,02/03/2013 05:41:19 PM,02/03/2013 05:41:48 PM,02/03/2013 05:41:58 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 05:46:22 PM,1500 Block of GOUGH ST,SF,94109,B04,38,3255,3,3,3,true,Alarm,1,MEDIC,11,4,2,Western Addition,"(37.7878420386913, -122.425120391793)",130340259-58 -160703528,88,16028021,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:28:42 PM,03/10/2016 09:30:02 PM,03/10/2016 09:30:46 PM,03/10/2016 09:30:55 PM,03/10/2016 09:48:39 PM,03/10/2016 10:14:29 PM,03/10/2016 10:34:09 PM,Code 2 Transport,03/10/2016 11:36:08 PM,5400 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7131083433264, -122.444314025188)",160703528-88 -160363653,85,16014424,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:24:11 PM,02/05/2016 08:28:06 PM,02/05/2016 08:28:57 PM,02/05/2016 08:29:06 PM,02/05/2016 08:40:36 PM,02/05/2016 08:51:52 PM,02/05/2016 09:02:43 PM,Code 3 Transport,02/05/2016 09:36:19 PM,800 Block of WASHINGTON ST,San Francisco,94108,B01,2,1331,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",160363653-85 -160913335,AM14,16036227,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:01:07 PM,03/31/2016 08:03:54 PM,03/31/2016 08:14:21 PM,03/31/2016 08:14:41 PM,03/31/2016 08:20:59 PM,03/31/2016 08:41:05 PM,03/31/2016 08:58:07 PM,Code 2 Transport,03/31/2016 09:23:53 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160913335-AM14 -110770011,T01,11025199,Alarms,03/18/2011,03/17/2011,03/18/2011 12:33:20 AM,03/18/2011 12:34:26 AM,03/18/2011 12:34:42 AM,03/18/2011 12:36:46 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 12:38:10 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",110770011-T01 -160621490,87,16024665,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:26:29 AM,03/02/2016 11:28:07 AM,03/02/2016 11:30:52 AM,03/02/2016 11:31:21 AM,03/02/2016 11:45:18 AM,03/02/2016 12:03:14 PM,03/02/2016 12:17:55 PM,Code 2 Transport,03/02/2016 12:47:14 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",160621490-87 -160472376,KM09,16018985,Medical Incident,02/16/2016,02/16/2016,02/16/2016 03:26:14 PM,02/16/2016 03:27:32 PM,02/16/2016 03:28:07 PM,02/16/2016 03:28:49 PM,02/16/2016 03:35:18 PM,02/16/2016 04:03:50 PM,02/16/2016 04:17:20 PM,Code 2 Transport,02/16/2016 05:13:57 PM,400 Block of HAIGHT ST,San Francisco,94117,B02,6,3524,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",160472376-KM09 -123610041,E02,12120686,Medical Incident,12/26/2012,12/25/2012,12/26/2012 05:45:56 AM,12/26/2012 05:48:19 AM,12/26/2012 05:48:32 AM,12/26/2012 05:50:28 AM,12/26/2012 05:52:19 AM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 06:01:34 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.796699717573, -122.408014703843)",123610041-E02 -112490402,E13,11082311,Medical Incident,09/06/2011,09/06/2011,09/06/2011 10:55:31 PM,09/06/2011 10:56:30 PM,09/06/2011 10:57:09 PM,09/06/2011 10:58:36 PM,09/06/2011 11:01:24 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 11:08:42 PM,200 Block of FOLSOM ST,SF,94105,B03,35,2117,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",112490402-E13 -132710378,E01,13092249,Medical Incident,09/28/2013,09/28/2013,09/28/2013 09:16:19 PM,09/28/2013 09:18:13 PM,09/28/2013 09:18:29 PM,09/28/2013 09:21:11 PM,09/28/2013 09:29:49 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,Other,09/28/2013 09:39:31 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",132710378-E01 -122570364,55,12085125,Medical Incident,09/13/2012,09/13/2012,09/13/2012 11:49:03 PM,09/13/2012 11:49:44 PM,09/13/2012 11:51:41 PM,09/13/2012 11:56:43 PM,09/14/2012 12:01:19 AM,09/14/2012 12:12:18 AM,09/14/2012 12:15:58 AM,Code 2 Transport,09/14/2012 12:42:44 AM,22ND ST/SAN BRUNO AV,SF,94110,B10,37,2551,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7569521955647, -122.404732268579)",122570364-55 -121940065,T16,12064460,Structure Fire,07/12/2012,07/11/2012,07/12/2012 06:38:48 AM,07/12/2012 06:38:48 AM,07/12/2012 06:38:54 AM,07/12/2012 06:40:34 AM,07/12/2012 06:44:33 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Fire,07/12/2012 08:05:05 AM,1600 Block of UNION ST,SF,94123,B04,16,323,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.7981848264843, -122.426436289929)",121940065-T16 -140630045,RC2,14021171,Medical Incident,03/04/2014,03/03/2014,03/04/2014 04:43:34 AM,03/04/2014 04:44:01 AM,03/04/2014 04:51:26 AM,03/04/2014 04:51:26 AM,03/04/2014 04:51:26 AM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Code 3 Transport,03/04/2014 05:18:10 AM,300 Block of 2ND AVE,SF,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7821780951379, -122.459999332268)",140630045-RC2 -140060097,E29,14002061,Traffic Collision,01/06/2014,01/06/2014,01/06/2014 08:28:34 AM,01/06/2014 08:30:00 AM,01/06/2014 08:30:18 AM,01/06/2014 08:31:26 AM,01/06/2014 08:33:01 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 08:40:23 AM,7TH ST/16TH ST,SF,94158,B03,29,2414,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,10,Mission Bay,"(37.7665445770442, -122.39506054595)",140060097-E29 -113330282,B04,11110391,Structure Fire,11/29/2011,11/29/2011,11/29/2011 06:22:37 PM,11/29/2011 06:24:35 PM,11/29/2011 06:24:59 PM,11/29/2011 06:26:00 PM,11/29/2011 06:29:43 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 06:36:32 PM,2700 Block of UNION ST,SF,94123,B04,16,4312,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.7958773081236, -122.444574927621)",113330282-B04 -160360825,62,16014145,Medical Incident,02/05/2016,02/04/2016,02/05/2016 07:51:20 AM,02/05/2016 07:52:58 AM,02/05/2016 07:56:43 AM,02/05/2016 07:59:04 AM,02/05/2016 07:59:04 AM,02/05/2016 08:12:57 AM,02/05/2016 08:23:25 AM,Code 2 Transport,02/05/2016 09:04:39 AM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160360825-62 -160420740,KM09,16016769,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:22:19 AM,02/11/2016 08:23:20 AM,02/11/2016 08:23:47 AM,02/11/2016 08:24:11 AM,02/11/2016 08:29:36 AM,02/11/2016 09:00:55 AM,02/11/2016 09:17:23 AM,Code 2 Transport,02/11/2016 10:11:54 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160420740-KM09 -160053664,75,16002192,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:23:54 PM,01/05/2016 10:26:18 PM,01/05/2016 10:26:34 PM,01/05/2016 10:26:46 PM,01/05/2016 10:43:40 PM,01/05/2016 11:01:16 PM,01/05/2016 11:06:08 PM,Code 2 Transport,01/05/2016 11:42:37 PM,STEVENSON ST/5TH ST,San Francisco,94103,B01,1,2247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.783528916199, -122.407482813601)",160053664-75 -160552704,52,16022077,Medical Incident,02/24/2016,02/24/2016,02/24/2016 04:32:25 PM,02/24/2016 04:33:57 PM,02/24/2016 04:34:43 PM,02/24/2016 04:34:51 PM,02/24/2016 04:53:02 PM,02/24/2016 05:04:19 PM,02/24/2016 05:31:33 PM,Code 2 Transport,02/24/2016 06:03:10 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160552704-52 -131220277,T08,13041096,Administrative,05/02/2013,05/02/2013,05/02/2013 02:38:04 PM,05/02/2013 02:38:08 PM,05/02/2013 02:38:53 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Fire,05/02/2013 02:39:20 PM,0 Block of BLUXOME ST,SF,94107,B03,8,2223,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",131220277-T08 -121540056,55,12050881,Medical Incident,06/02/2012,06/01/2012,06/02/2012 04:00:10 AM,06/02/2012 04:03:16 AM,06/02/2012 04:03:24 AM,06/02/2012 04:04:27 AM,06/02/2012 04:11:31 AM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 04:12:30 AM,500 Block of 48TH AVE,SF,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7780077592037, -122.509229146953)",121540056-55 -111970087,82,11064933,Medical Incident,07/16/2011,07/15/2011,07/16/2011 07:55:53 AM,07/16/2011 07:56:55 AM,07/16/2011 07:57:04 AM,07/16/2011 07:57:43 AM,07/16/2011 08:12:45 AM,07/16/2011 08:12:51 AM,07/16/2011 08:15:47 AM,Code 2 Transport,07/16/2011 08:47:36 AM,GEARY ST/LARKIN ST,SF,94109,B04,3,3116,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",111970087-82 -130640062,E17,13021346,Medical Incident,03/05/2013,03/04/2013,03/05/2013 06:58:33 AM,03/05/2013 06:59:50 AM,03/05/2013 07:00:06 AM,03/05/2013 07:01:02 AM,03/05/2013 07:05:12 AM,04/25/2016 01:53:59 PM,04/25/2016 01:53:59 PM,Other,03/05/2013 07:42:12 AM,1200 Block of NEWHALL ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7365653368668, -122.391311377651)",130640062-E17 -131960334,B01,13066667,Alarms,07/15/2013,07/15/2013,07/15/2013 10:57:42 PM,07/15/2013 10:58:45 PM,07/15/2013 10:59:08 PM,07/15/2013 11:00:13 PM,07/15/2013 11:02:32 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Fire,07/15/2013 11:36:14 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,Alarm,1,CHIEF,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",131960334-B01 -131930020,67,13065518,Medical Incident,07/12/2013,07/11/2013,07/12/2013 01:43:45 AM,07/12/2013 01:44:50 AM,07/12/2013 01:45:06 AM,07/12/2013 01:45:49 AM,04/25/2016 01:51:50 PM,07/12/2013 02:05:37 AM,07/12/2013 02:14:20 AM,Code 2 Transport,07/12/2013 02:44:03 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131930020-67 -121490211,T09,12049479,Structure Fire,05/28/2012,05/28/2012,05/28/2012 04:45:12 PM,05/28/2012 04:45:12 PM,05/28/2012 04:45:17 PM,05/28/2012 04:46:36 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 04:48:51 PM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",121490211-T09 -131930170,KM04,13065639,Medical Incident,07/12/2013,07/12/2013,07/12/2013 01:43:36 PM,07/12/2013 01:45:53 PM,07/12/2013 01:46:20 PM,07/12/2013 01:47:25 PM,07/12/2013 01:54:27 PM,07/12/2013 02:46:54 PM,07/12/2013 02:18:02 PM,Code 2 Transport,07/12/2013 02:47:10 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",131930170-KM04 -131470019,88,13049743,Medical Incident,05/27/2013,05/26/2013,05/27/2013 01:12:42 AM,05/27/2013 01:13:46 AM,05/27/2013 01:17:18 AM,05/27/2013 01:17:34 AM,05/27/2013 01:25:39 AM,05/27/2013 01:41:20 AM,05/27/2013 01:47:38 AM,Code 2 Transport,05/27/2013 02:04:47 AM,MISSION ST/VALENCIA ST,SF,94110,B06,11,5624,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7453890212933, -122.420019126223)",131470019-88 -102830254,64,10090116,Medical Incident,10/10/2010,10/10/2010,10/10/2010 03:57:27 PM,10/10/2010 03:58:47 PM,10/10/2010 03:59:45 PM,10/10/2010 04:09:55 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,No Merit,10/10/2010 04:19:33 PM,700 Block of POLK ST,SF,94109,B02,3,3115,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7833430636234, -122.419159190984)",102830254-64 -160330560,AM02,16012860,Medical Incident,02/02/2016,02/01/2016,02/02/2016 07:13:12 AM,02/02/2016 07:14:51 AM,02/02/2016 07:15:22 AM,02/02/2016 07:15:51 AM,02/02/2016 07:22:52 AM,02/02/2016 07:37:06 AM,02/02/2016 07:52:15 AM,Code 2 Transport,02/02/2016 08:14:27 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160330560-AM02 -112140231,E07,11070664,Medical Incident,08/02/2011,08/02/2011,08/02/2011 03:21:33 PM,08/02/2011 03:22:46 PM,08/02/2011 03:23:03 PM,08/02/2011 03:23:33 PM,08/02/2011 03:32:05 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 03:37:04 PM,1300 Block of TREAT WAY,SF,94110,B06,7,5533,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7491304830529, -122.41259458806)",112140231-E07 -160421598,KM02,16016848,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:07:15 PM,02/11/2016 12:07:29 PM,02/11/2016 12:08:25 PM,02/11/2016 12:09:16 PM,02/11/2016 12:15:16 PM,02/11/2016 12:34:07 PM,02/11/2016 01:30:37 PM,Code 2 Transport,02/11/2016 02:08:45 PM,2000 Block of DIVISADERO ST,San Francisco,94115,B04,10,4161,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7885177229343, -122.440647405877)",160421598-KM02 -160371833,88,16014684,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:34:16 PM,02/06/2016 12:34:16 PM,02/06/2016 12:34:46 PM,02/06/2016 12:34:52 PM,02/06/2016 12:43:16 PM,02/06/2016 12:54:20 PM,02/06/2016 01:02:08 PM,Code 2 Transport,02/06/2016 01:28:25 PM,3300 Block of BUCHANAN ST,San Francisco,94123,B04,16,3445,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8005078995999, -122.432880441363)",160371833-88 -121120118,E08,12037073,Structure Fire,04/21/2012,04/21/2012,04/21/2012 08:47:46 AM,04/21/2012 08:47:47 AM,04/21/2012 08:48:03 AM,04/21/2012 08:50:43 AM,04/21/2012 08:51:40 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 08:51:52 AM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7772727011897, -122.404070256526)",121120118-E08 -123100186,B10,12103122,Structure Fire,11/05/2012,11/05/2012,11/05/2012 12:45:39 PM,11/05/2012 12:46:21 PM,11/05/2012 12:46:44 PM,11/05/2012 12:47:21 PM,11/05/2012 12:51:44 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,04/25/2016 01:55:56 PM,15TH ST/BRYANT ST,SF,94103,B02,29,5222,3,3,3,false,Alarm,1,CHIEF,7,2,10,Mission,"(37.7669034447897, -122.410609802507)",123100186-B10 -102450427,E13,10077514,Structure Fire,09/02/2010,09/02/2010,09/02/2010 07:27:33 PM,09/02/2010 07:27:34 PM,09/02/2010 07:28:00 PM,09/02/2010 07:28:55 PM,09/02/2010 07:30:22 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Fire,09/02/2010 07:30:39 PM,KEARNY ST/SACRAMENTO ST,SF,94104,B01,13,1244,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",102450427-E13 -121480292,E03,12049209,Medical Incident,05/27/2012,05/27/2012,05/27/2012 06:55:55 PM,05/27/2012 06:56:15 PM,05/27/2012 06:56:23 PM,05/27/2012 06:57:04 PM,05/27/2012 06:58:01 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/27/2012 07:14:56 PM,HEMLOCK ST/POLK ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",121480292-E03 -122640170,E13,12087177,Medical Incident,09/20/2012,09/20/2012,09/20/2012 12:30:30 PM,09/20/2012 12:36:01 PM,09/20/2012 12:36:19 PM,09/20/2012 12:38:58 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 12:39:29 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7850811742657, -122.406497767804)",122640170-E13 -130520338,E33,13017714,Alarms,02/21/2013,02/21/2013,02/21/2013 08:25:20 PM,02/21/2013 08:26:32 PM,02/21/2013 08:27:39 PM,02/21/2013 08:28:51 PM,02/21/2013 08:30:54 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Fire,02/21/2013 08:48:21 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",130520338-E33 -123500244,E29,12117091,Alarms,12/15/2012,12/15/2012,12/15/2012 04:32:46 PM,12/15/2012 04:34:09 PM,12/15/2012 04:34:17 PM,12/15/2012 04:37:23 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 04:44:55 PM,600 Block of 8TH ST,SF,94103,B03,29,2325,3,3,3,true,Alarm,1,ENGINE,3,3,6,South of Market,"(37.7707183649645, -122.404602175806)",123500244-E29 -160282200,83,16011130,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:39:26 PM,01/28/2016 02:40:36 PM,01/28/2016 02:41:34 PM,01/28/2016 02:41:42 PM,01/28/2016 02:48:04 PM,01/28/2016 03:00:56 PM,01/28/2016 03:12:13 PM,Code 2 Transport,01/28/2016 03:29:13 PM,0 Block of MIRAMAR AVE,San Francisco,94112,B09,15,8464,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7191290044036, -122.458239208661)",160282200-83 -160393231,61,16015773,Medical Incident,02/08/2016,02/08/2016,02/08/2016 07:51:42 PM,02/08/2016 07:53:09 PM,02/08/2016 07:53:52 PM,02/08/2016 07:54:01 PM,02/08/2016 08:03:47 PM,02/08/2016 08:17:16 PM,02/08/2016 08:44:03 PM,Code 2 Transport,02/08/2016 08:55:37 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160393231-61 -160432008,53,16017322,Medical Incident,02/12/2016,02/12/2016,02/12/2016 02:18:28 PM,02/12/2016 02:19:02 PM,02/12/2016 02:19:11 PM,02/12/2016 02:19:28 PM,02/12/2016 02:28:48 PM,02/12/2016 02:55:56 PM,02/12/2016 03:14:12 PM,Code 2 Transport,02/12/2016 03:37:13 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160432008-53 -160823888,55,16032759,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:01:46 PM,03/22/2016 10:01:46 PM,03/22/2016 10:02:49 PM,03/22/2016 10:03:06 PM,03/22/2016 10:10:52 PM,03/22/2016 10:26:21 PM,03/22/2016 10:29:33 PM,Code 2 Transport,03/22/2016 11:09:25 PM,CHURCH ST/DUBOCE AV,San Francisco,94114,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",160823888-55 -110860232,KM04,11028410,Medical Incident,03/27/2011,03/27/2011,03/27/2011 01:54:58 PM,03/27/2011 01:56:10 PM,03/27/2011 01:56:28 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,Other,03/27/2011 01:57:57 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,PRIVATE,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",110860232-KM04 -123520248,B04,12117789,Alarms,12/17/2012,12/17/2012,12/17/2012 02:33:29 PM,12/17/2012 02:37:01 PM,12/17/2012 02:37:27 PM,12/17/2012 02:38:31 PM,12/17/2012 02:41:02 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Other,12/17/2012 02:42:50 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.7916541828949, -122.420058319923)",123520248-B04 -160503985,79,16020295,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:32:20 PM,02/19/2016 11:34:28 PM,02/19/2016 11:34:55 PM,02/19/2016 11:35:32 PM,02/19/2016 11:39:30 PM,02/19/2016 11:45:32 PM,02/19/2016 11:56:08 PM,Code 2 Transport,02/20/2016 12:13:35 AM,0 Block of HARE ST,San Francisco,94124,B10,25,6556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7345361872345, -122.378999931156)",160503985-79 -102990333,71,10095583,Medical Incident,10/26/2010,10/26/2010,10/26/2010 08:01:52 PM,10/26/2010 08:03:00 PM,10/26/2010 08:03:16 PM,04/25/2016 02:07:54 PM,10/26/2010 08:09:08 PM,10/26/2010 08:25:01 PM,10/26/2010 08:43:54 PM,Code 2 Transport,10/26/2010 09:22:30 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",102990333-71 -132700271,E07,13091763,Medical Incident,09/27/2013,09/27/2013,09/27/2013 03:25:36 PM,09/27/2013 03:25:49 PM,09/27/2013 03:26:04 PM,09/27/2013 03:27:05 PM,09/27/2013 03:28:57 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/27/2013 03:29:09 PM,400 Block of SOUTH VAN NESS AVE,SF,94103,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.766282946754, -122.417524902878)",132700271-E07 -160091035,55,16003587,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:00:29 AM,01/09/2016 10:01:52 AM,01/09/2016 10:02:32 AM,01/09/2016 10:02:49 AM,01/09/2016 10:08:43 AM,01/09/2016 10:44:27 AM,01/09/2016 10:52:34 AM,Code 2 Transport,01/09/2016 11:30:45 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160091035-55 -103110302,E03,10099847,Medical Incident,11/07/2010,11/07/2010,11/07/2010 07:03:13 PM,11/07/2010 07:05:26 PM,11/07/2010 07:06:10 PM,11/07/2010 07:06:58 PM,11/07/2010 07:08:38 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 07:09:15 PM,HYDE ST/CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",103110302-E03 -160601159,83,16023848,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:22:52 AM,02/29/2016 10:25:05 AM,02/29/2016 10:25:29 AM,02/29/2016 10:27:16 AM,02/29/2016 10:36:00 AM,02/29/2016 10:40:55 AM,02/29/2016 11:03:43 AM,Code 2 Transport,02/29/2016 12:05:33 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160601159-83 -112500109,AM02,11082409,Medical Incident,09/07/2011,09/07/2011,09/07/2011 09:40:50 AM,09/07/2011 09:41:36 AM,09/07/2011 09:41:57 AM,09/07/2011 09:42:40 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 09:46:51 AM,400 Block of SCOTT ST,SF,94117,B05,21,4141,3,3,3,false,,1,PRIVATE,3,5,5,Hayes Valley,"(37.7738199257134, -122.43577759366)",112500109-AM02 -131370391,55,13046452,Structure Fire,05/17/2013,05/17/2013,05/17/2013 11:04:42 PM,05/17/2013 11:05:30 PM,05/17/2013 11:06:02 PM,05/17/2013 11:08:19 PM,05/17/2013 11:16:12 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/17/2013 11:18:49 PM,0 Block of KNOLLVIEW WAY,SF,94131,B08,20,5361,3,3,3,true,Alarm,1,MEDIC,8,8,7,Twin Peaks,"(37.7500309334752, -122.451132948475)",131370391-55 -112650241,E40,11087550,Medical Incident,09/22/2011,09/22/2011,09/22/2011 01:59:27 PM,09/22/2011 02:01:02 PM,09/22/2011 02:01:48 PM,09/22/2011 02:02:42 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,Other,09/22/2011 02:05:41 PM,19TH AV/ULLOA ST,SF,94116,B08,40,7415,3,2,2,false,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7411866396813, -122.475539786188)",112650241-E40 -122840139,E19,12093916,Medical Incident,10/10/2012,10/10/2012,10/10/2012 12:02:50 PM,10/10/2012 12:03:12 PM,10/10/2012 12:03:25 PM,10/10/2012 12:04:10 PM,10/10/2012 12:07:00 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,10/10/2012 12:30:25 PM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",122840139-E19 -120100115,55,12003421,Medical Incident,01/10/2012,01/10/2012,01/10/2012 10:05:38 AM,01/10/2012 10:06:18 AM,01/10/2012 10:06:50 AM,01/10/2012 10:06:59 AM,01/10/2012 10:13:46 AM,01/10/2012 10:36:56 AM,01/10/2012 11:04:07 AM,Code 2 Transport,01/10/2012 11:10:45 AM,6TH ST/MISSION ST,SF,94103,B03,1,2251,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",120100115-55 -160831040,82,16032889,Medical Incident,03/23/2016,03/23/2016,03/23/2016 09:23:13 AM,03/23/2016 09:26:32 AM,03/23/2016 09:26:56 AM,03/23/2016 09:27:11 AM,03/23/2016 09:37:51 AM,03/23/2016 10:24:02 AM,03/23/2016 10:54:54 AM,Code 2 Transport,03/23/2016 11:49:59 AM,0 Block of CHURCH ST,San Francisco,94114,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",160831040-82 -160111078,KM15,16004332,Medical Incident,01/11/2016,01/11/2016,01/11/2016 10:10:59 AM,01/11/2016 10:12:41 AM,01/11/2016 10:13:24 AM,01/11/2016 10:14:47 AM,01/11/2016 10:24:51 AM,01/11/2016 10:50:21 AM,01/11/2016 11:00:34 AM,Code 2 Transport,01/11/2016 11:39:18 AM,300 Block of OFARRELL ST,San Francisco,94102,B03,1,1366,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",160111078-KM15 -112400009,E03,11079057,Structure Fire,08/28/2011,08/27/2011,08/28/2011 12:43:05 AM,08/28/2011 12:43:05 AM,08/28/2011 12:43:10 AM,08/28/2011 12:44:34 AM,08/28/2011 12:45:00 AM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Fire,08/28/2011 12:45:52 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",112400009-E03 -122190164,E18,12072637,Medical Incident,08/06/2012,08/06/2012,08/06/2012 12:12:51 PM,08/06/2012 12:13:31 PM,08/06/2012 12:13:41 PM,08/06/2012 12:16:45 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/06/2012 12:18:49 PM,2100 Block of 20TH AVE,SF,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7476622873216, -122.477157809386)",122190164-E18 -130220091,AM04,13007511,Medical Incident,01/22/2013,01/22/2013,01/22/2013 08:31:51 AM,01/22/2013 08:32:42 AM,01/22/2013 08:32:48 AM,01/22/2013 08:33:25 AM,01/22/2013 08:37:15 AM,01/22/2013 08:56:04 AM,01/22/2013 09:09:34 AM,Code 2 Transport,01/22/2013 10:03:51 AM,300 Block of UTAH ST,SF,94103,B02,29,2416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7651908103714, -122.406559981453)",130220091-AM04 -110860149,92,11028343,Medical Incident,03/27/2011,03/27/2011,03/27/2011 09:42:46 AM,03/27/2011 09:43:26 AM,03/27/2011 09:43:33 AM,04/25/2016 02:05:25 PM,03/27/2011 09:45:06 AM,03/27/2011 10:12:20 AM,03/27/2011 10:32:34 AM,Code 2 Transport,03/27/2011 10:51:00 AM,1300 Block of 20TH AVE,SF,94122,B08,22,7424,3,3,3,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7625869726576, -122.47805731643)",110860149-92 -123570093,81,12119435,Medical Incident,12/22/2012,12/22/2012,12/22/2012 08:25:41 AM,12/22/2012 08:27:36 AM,12/22/2012 08:29:41 AM,12/22/2012 08:30:01 AM,12/22/2012 08:33:41 AM,12/22/2012 08:47:04 AM,12/22/2012 08:56:17 AM,Code 3 Transport,12/22/2012 09:38:41 AM,700 Block of FUNSTON AVE,SF,94118,B07,31,7144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7740978841783, -122.471237469015)",123570093-81 -130630204,E01,13021102,Structure Fire,03/04/2013,03/04/2013,03/04/2013 12:55:04 PM,03/04/2013 12:55:04 PM,03/04/2013 12:55:11 PM,03/04/2013 12:55:45 PM,03/04/2013 12:58:36 PM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 12:59:07 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",130630204-E01 -160133844,AM20,16005357,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:02:02 PM,01/13/2016 09:02:25 PM,01/13/2016 09:03:06 PM,01/13/2016 09:03:49 PM,01/13/2016 09:07:47 PM,01/13/2016 09:25:47 PM,01/13/2016 09:29:59 PM,Code 2 Transport,01/13/2016 10:00:44 PM,1200 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,false,Non Life-threatening,1,PRIVATE,3,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",160133844-AM20 -133010322,KM01,13102391,Medical Incident,10/28/2013,10/28/2013,10/28/2013 05:47:16 PM,10/28/2013 05:47:25 PM,10/28/2013 05:47:38 PM,10/28/2013 05:48:09 PM,10/28/2013 05:54:00 PM,10/28/2013 06:09:43 PM,10/28/2013 06:24:52 PM,Code 2 Transport,10/28/2013 06:31:21 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",133010322-KM01 -121890125,E13,12062920,Medical Incident,07/07/2012,07/07/2012,07/07/2012 10:35:55 AM,07/07/2012 10:36:21 AM,07/07/2012 10:37:31 AM,07/07/2012 10:37:45 AM,07/07/2012 10:39:20 AM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/07/2012 10:49:58 AM,FRONT ST/GREEN ST,SF,94111,B01,13,1153,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8006071207221, -122.40025046408)",121890125-E13 -140280284,AM24,14009613,Medical Incident,01/28/2014,01/28/2014,01/28/2014 04:45:21 PM,01/28/2014 04:46:54 PM,01/28/2014 04:49:05 PM,01/28/2014 04:49:46 PM,01/28/2014 05:01:59 PM,01/28/2014 05:13:16 PM,01/28/2014 05:39:44 PM,Code 2 Transport,01/28/2014 06:08:20 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",140280284-AM24 -131850393,B09,13063227,Outside Fire,07/04/2013,07/04/2013,07/04/2013 10:25:08 PM,07/04/2013 10:28:24 PM,07/04/2013 10:31:29 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 11:07:04 PM,200 Block of SAN JOSE AVE,SF,94110,B09,15,8313,3,3,3,false,Fire,1,CHIEF,4,6,8,Mission,"(37.7512439644709, -122.421585334305)",131850393-B09 -160263233,66,16010432,Medical Incident,01/26/2016,01/26/2016,01/26/2016 07:10:16 PM,01/26/2016 07:12:14 PM,01/26/2016 07:12:48 PM,01/26/2016 07:13:02 PM,01/26/2016 07:56:31 PM,01/26/2016 08:00:11 PM,01/26/2016 08:03:34 PM,Code 2 Transport,01/26/2016 09:00:50 PM,1400 Block of GEARY BLVD,San Francisco,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",160263233-66 -160011307,71,16000237,Structure Fire,01/01/2016,12/31/2015,01/01/2016 07:48:38 AM,01/01/2016 07:48:38 AM,01/01/2016 07:53:10 AM,01/01/2016 07:55:59 AM,01/01/2016 07:59:38 AM,01/01/2016 08:19:27 AM,01/01/2016 08:23:33 AM,Code 2 Transport,01/01/2016 08:44:09 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",160011307-71 -111830124,E07,11060382,Medical Incident,07/02/2011,07/02/2011,07/02/2011 10:56:58 AM,07/02/2011 10:58:47 AM,07/02/2011 11:00:09 AM,07/02/2011 11:02:47 AM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,07/02/2011 11:03:59 AM,SOUTH VAN NESS AV/22ND ST,SF,94110,B06,7,5455,3,3,3,true,,1,ENGINE,3,6,9,Mission,"(37.7555682781294, -122.416566643053)",111830124-E07 -112350255,94,11077601,Medical Incident,08/23/2011,08/23/2011,08/23/2011 03:13:17 PM,08/23/2011 03:14:30 PM,08/23/2011 03:15:03 PM,08/23/2011 03:15:46 PM,08/23/2011 03:26:19 PM,08/23/2011 03:44:50 PM,08/23/2011 03:51:00 PM,Code 2 Transport,08/23/2011 04:15:21 PM,1700 Block of MARKET ST,SF,94102,B02,36,3311,1,1,2,true,,1,MEDIC,1,2,5,Hayes Valley,"(37.7722683129989, -122.423098219736)",112350255-94 -160440224,76,16017545,Medical Incident,02/13/2016,02/12/2016,02/13/2016 01:29:37 AM,02/13/2016 01:31:40 AM,02/13/2016 01:33:32 AM,02/13/2016 01:33:41 AM,02/13/2016 01:36:32 AM,02/13/2016 01:42:31 AM,02/13/2016 01:57:02 AM,Code 2 Transport,02/13/2016 02:31:11 AM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",160440224-76 -111800134,E16,11059386,Water Rescue,06/29/2011,06/29/2011,06/29/2011 11:46:55 AM,06/29/2011 11:48:31 AM,06/29/2011 11:50:08 AM,06/29/2011 11:51:08 AM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Fire,06/29/2011 12:49:52 PM,900 Block of 3RD ST,SF,94158,B03,8,946,3,3,3,true,,1,ENGINE,13,None,6,None,"(37.7765531472403, -122.390007762623)",111800134-E16 -110420364,E03,11014060,Medical Incident,02/11/2011,02/11/2011,02/11/2011 08:43:26 PM,02/11/2011 08:44:33 PM,02/11/2011 08:44:48 PM,02/11/2011 08:46:01 PM,02/11/2011 08:49:51 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 09:03:21 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,1,2,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",110420364-E03 -112720358,81,11090092,Medical Incident,09/29/2011,09/29/2011,09/29/2011 10:31:25 PM,09/29/2011 10:33:26 PM,09/29/2011 10:33:45 PM,09/29/2011 10:34:49 PM,09/29/2011 10:40:45 PM,09/29/2011 10:48:41 PM,09/29/2011 11:06:22 PM,Code 2 Transport,09/29/2011 11:51:10 PM,3300 Block of MARKET ST,SF,94114,B05,24,5271,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7579292066111, -122.443571515688)",112720358-81 -130020052,E14,13000537,Medical Incident,01/02/2013,01/01/2013,01/02/2013 05:40:40 AM,01/02/2013 05:41:40 AM,01/02/2013 05:46:10 AM,04/25/2016 01:55:00 PM,01/02/2013 05:48:53 AM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 05:56:29 AM,6300 Block of GEARY BLVD,SF,94121,B07,14,7226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7800899146648, -122.48741856209)",130020052-E14 -160340095,AM24,16013211,Medical Incident,02/03/2016,02/02/2016,02/03/2016 12:48:10 AM,02/03/2016 12:48:10 AM,02/03/2016 12:49:21 AM,02/03/2016 12:50:05 AM,02/03/2016 01:16:08 AM,02/03/2016 01:27:47 AM,02/03/2016 01:40:36 AM,Code 2 Transport,02/03/2016 02:08:43 AM,300 Block of RAYMOND AVE,San Francisco,94134,B09,44,6264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.714134744642, -122.410232764113)",160340095-AM24 -120780186,KM02,12025873,Medical Incident,03/18/2012,03/18/2012,03/18/2012 11:21:11 AM,03/18/2012 11:22:11 AM,03/18/2012 11:22:20 AM,03/18/2012 11:24:26 AM,03/18/2012 11:30:39 AM,03/18/2012 11:52:12 AM,03/18/2012 12:06:58 PM,Code 2 Transport,03/18/2012 12:45:43 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",120780186-KM02 -160112822,87,16004512,Outside Fire,01/11/2016,01/11/2016,01/11/2016 06:20:53 PM,01/11/2016 06:20:53 PM,01/11/2016 06:32:34 PM,01/11/2016 06:33:02 PM,01/11/2016 06:40:59 PM,01/11/2016 07:00:59 PM,01/11/2016 07:29:36 PM,Code 2 Transport,01/11/2016 08:01:20 PM,400 Block of NATOMA ST,San Francisco,94103,B03,1,2252,3,3,3,true,Fire,1,MEDIC,2,3,6,South of Market,"(37.7806950637682, -122.40692070933)",160112822-87 -160340214,AM24,16013226,Medical Incident,02/03/2016,02/02/2016,02/03/2016 02:33:10 AM,02/03/2016 02:35:36 AM,02/03/2016 02:35:59 AM,02/03/2016 02:36:29 AM,02/03/2016 02:44:14 AM,02/03/2016 03:05:59 AM,02/03/2016 03:21:54 AM,Code 2 Transport,02/03/2016 03:49:22 AM,400 Block of MYRA WAY,San Francisco,94127,B09,39,8664,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7374773999885, -122.452652203687)",160340214-AM24 -160531863,57,16021228,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:08:29 PM,02/22/2016 02:09:36 PM,02/22/2016 02:10:05 PM,02/22/2016 02:10:23 PM,02/22/2016 02:24:38 PM,02/22/2016 02:56:11 PM,02/22/2016 02:56:12 PM,Code 2 Transport,02/22/2016 03:56:36 PM,2800 Block of BUSH ST,San Francisco,94115,B05,10,4341,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7857078594258, -122.444206026512)",160531863-57 -111600232,E14,11052924,Medical Incident,06/09/2011,06/09/2011,06/09/2011 05:00:00 PM,06/09/2011 05:00:55 PM,06/09/2011 05:01:01 PM,06/09/2011 05:02:10 PM,06/09/2011 05:03:54 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Patient Declined Transport,06/09/2011 05:08:38 PM,27TH AV/CABRILLO ST,SF,94121,B07,14,7223,3,2,2,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.774338772454, -122.486468646472)",111600232-E14 -160381796,AM04,16015213,Medical Incident,02/07/2016,02/07/2016,02/07/2016 12:55:14 PM,02/07/2016 12:55:14 PM,02/07/2016 01:06:58 PM,02/07/2016 01:06:58 PM,02/07/2016 01:07:02 PM,02/07/2016 01:12:17 PM,02/07/2016 01:35:29 PM,Code 2 Transport,02/07/2016 01:44:42 PM,2200 Block of CHESTNUT ST,San Francisco,94123,B04,16,3661,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Marina,"(37.8002979850598, -122.439895933599)",160381796-AM04 -133650333,KM10,13124067,Medical Incident,12/31/2013,12/31/2013,12/31/2013 08:01:53 PM,12/31/2013 08:01:53 PM,12/31/2013 08:01:53 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,12/31/2013 08:02:26 PM,12/31/2013 08:16:18 PM,Code 2 Transport,12/31/2013 08:46:05 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",133650333-KM10 -112720286,96,11090025,Medical Incident,09/29/2011,09/29/2011,09/29/2011 06:07:59 PM,09/29/2011 06:08:37 PM,09/29/2011 06:08:50 PM,09/29/2011 06:09:39 PM,04/25/2016 02:02:25 PM,09/29/2011 06:30:17 PM,09/29/2011 06:53:48 PM,Code 2 Transport,09/29/2011 07:22:20 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7726948236861, -122.422188261426)",112720286-96 -130020041,E17,13000527,Medical Incident,01/02/2013,01/01/2013,01/02/2013 04:55:20 AM,01/02/2013 04:56:01 AM,01/02/2013 04:56:23 AM,01/02/2013 04:58:59 AM,01/02/2013 05:01:19 AM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 05:03:54 AM,1400 Block of NEWCOMB AVE,SF,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",130020041-E17 -110950295,64,11031642,Medical Incident,04/05/2011,04/05/2011,04/05/2011 08:12:54 PM,04/05/2011 08:15:10 PM,04/05/2011 08:15:24 PM,04/05/2011 08:15:33 PM,04/05/2011 08:19:50 PM,04/05/2011 08:34:29 PM,04/05/2011 08:43:16 PM,Code 2 Transport,04/05/2011 09:16:10 PM,1500 Block of FULTON ST,SF,94117,B05,21,4346,3,3,3,true,,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.776384773708, -122.442321333784)",110950295-64 -122870139,E05,12094897,Structure Fire,10/13/2012,10/13/2012,10/13/2012 11:33:08 AM,10/13/2012 11:34:29 AM,10/13/2012 11:34:55 AM,10/13/2012 11:36:18 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/13/2012 11:38:02 AM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Alarm,1,ENGINE,11,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",122870139-E05 -160393738,79,16015819,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:31:51 PM,02/08/2016 10:33:18 PM,02/08/2016 10:33:35 PM,02/08/2016 10:33:44 PM,02/08/2016 10:37:44 PM,02/08/2016 10:48:04 PM,02/08/2016 10:56:03 PM,Code 2 Transport,02/08/2016 11:28:15 PM,300 Block of CAPP ST,San Francisco,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7611054758664, -122.418125731465)",160393738-79 -130930310,96,13031247,Medical Incident,04/03/2013,04/03/2013,04/03/2013 07:11:15 PM,04/03/2013 07:11:15 PM,04/03/2013 07:12:02 PM,04/25/2016 01:53:30 PM,04/03/2013 07:22:01 PM,04/03/2013 07:23:18 PM,04/03/2013 07:30:06 PM,Code 2 Transport,04/03/2013 07:50:32 PM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",130930310-96 -110770075,E10,11025257,Medical Incident,03/18/2011,03/17/2011,03/18/2011 06:52:32 AM,03/18/2011 06:53:22 AM,03/18/2011 06:53:41 AM,03/18/2011 06:54:57 AM,03/18/2011 06:57:51 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 07:46:14 AM,3600 Block of CALIFORNIA ST,SF,94118,B07,10,4436,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",110770075-E10 -160731136,AM06,16028950,Medical Incident,03/13/2016,03/13/2016,03/13/2016 12:13:09 PM,03/13/2016 12:13:31 PM,03/13/2016 12:14:13 PM,03/13/2016 12:14:51 PM,03/13/2016 12:20:02 PM,03/13/2016 12:32:29 PM,03/13/2016 12:54:08 PM,Code 2 Transport,03/13/2016 01:37:34 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160731136-AM06 -160570801,56,16022663,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:29:17 AM,02/26/2016 08:30:11 AM,02/26/2016 08:31:24 AM,02/26/2016 08:31:24 AM,02/26/2016 08:33:21 AM,02/26/2016 09:10:42 AM,02/26/2016 09:46:07 AM,Code 2 Transport,02/26/2016 10:11:21 AM,GREAT HY/VICENTE ST,San Francisco,94116,B08,23,7732,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7379598525566, -122.506435606778)",160570801-56 -130240153,58,13008263,Citizen Assist / Service Call,01/24/2013,01/24/2013,01/24/2013 10:47:48 AM,01/24/2013 10:49:44 AM,01/24/2013 11:05:36 AM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 11:09:49 AM,900 Block of EDDY ST,SF,94102,B02,5,3262,3,3,3,true,Alarm,1,MEDIC,5,2,5,Western Addition,"(37.782522418285, -122.423274430962)",130240153-58 -112180027,E16,11071927,Structure Fire,08/06/2011,08/05/2011,08/06/2011 01:13:38 AM,08/06/2011 01:13:38 AM,08/06/2011 01:13:58 AM,08/06/2011 01:15:45 AM,08/06/2011 01:16:44 AM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Fire,08/06/2011 01:17:59 AM,WEBSTER ST/LOMBARD ST,SF,94123,B04,16,3461,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8000515477468, -122.434404699853)",112180027-E16 -160463841,63,16018725,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:34:26 PM,02/15/2016 10:36:29 PM,02/15/2016 10:55:29 PM,02/15/2016 10:55:49 PM,02/15/2016 11:00:55 PM,02/15/2016 11:25:06 PM,02/15/2016 11:32:52 PM,Code 2 Transport,02/16/2016 12:03:49 AM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",160463841-63 -160773566,71,16030757,Medical Incident,03/17/2016,03/17/2016,03/17/2016 07:27:38 PM,03/17/2016 07:29:20 PM,03/17/2016 07:29:37 PM,03/17/2016 07:29:49 PM,03/17/2016 07:40:29 PM,03/17/2016 07:57:24 PM,03/17/2016 08:17:41 PM,Code 2 Transport,03/17/2016 09:04:37 PM,600 Block of CLAY ST,San Francisco,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",160773566-71 -160360689,55,16014134,Medical Incident,02/05/2016,02/04/2016,02/05/2016 07:00:33 AM,02/05/2016 07:03:03 AM,02/05/2016 07:03:30 AM,02/05/2016 07:05:51 AM,02/05/2016 07:13:40 AM,02/05/2016 07:22:59 AM,02/05/2016 07:43:59 AM,Code 2 Transport,02/05/2016 08:08:16 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",160360689-55 -160842702,67,16033460,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:58:49 PM,03/24/2016 04:00:14 PM,03/24/2016 04:01:43 PM,03/24/2016 04:02:02 PM,03/24/2016 04:06:47 PM,03/24/2016 04:39:09 PM,03/24/2016 05:13:59 PM,Code 2 Transport,03/24/2016 05:46:58 PM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160842702-67 -113560199,KM11,11118210,Medical Incident,12/22/2011,12/22/2011,12/22/2011 01:19:11 PM,12/22/2011 01:20:26 PM,12/22/2011 01:20:44 PM,12/22/2011 01:21:28 PM,12/22/2011 01:27:07 PM,12/22/2011 01:35:22 PM,12/22/2011 01:44:51 PM,Code 2 Transport,12/22/2011 02:22:24 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",113560199-KM11 -102550023,65,10080496,Medical Incident,09/12/2010,09/11/2010,09/12/2010 01:22:06 AM,09/12/2010 01:25:38 AM,09/12/2010 01:25:57 AM,09/12/2010 01:28:50 AM,09/12/2010 01:31:52 AM,09/12/2010 01:42:42 AM,09/12/2010 01:51:41 AM,Code 2 Transport,09/12/2010 02:29:39 AM,TARAVAL ST/19TH AV,SF,94116,B08,40,7376,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7430518135439, -122.475644467981)",102550023-65 -111900065,B03,11062738,Alarms,07/09/2011,07/09/2011,07/09/2011 08:24:24 AM,07/09/2011 08:25:36 AM,07/09/2011 08:25:47 AM,07/09/2011 08:27:33 AM,07/09/2011 08:30:44 AM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Other,07/09/2011 08:37:06 AM,300 Block of 3RD ST,SF,94107,B03,1,2176,3,3,3,false,,1,CHIEF,3,3,6,South of Market,"(37.7833526602624, -122.398485675312)",111900065-B03 -103390337,E17,10108655,Medical Incident,12/05/2010,12/05/2010,12/05/2010 09:19:35 PM,12/05/2010 09:20:33 PM,12/05/2010 09:20:46 PM,12/05/2010 09:21:45 PM,12/05/2010 09:24:07 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 09:30:18 PM,1500 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7292122545104, -122.390956947476)",103390337-E17 -160421463,88,16016836,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:32:19 AM,02/11/2016 11:32:19 AM,02/11/2016 11:32:48 AM,02/11/2016 11:33:03 AM,02/11/2016 11:36:38 AM,02/11/2016 11:49:30 AM,02/11/2016 12:00:59 PM,Code 2 Transport,02/11/2016 12:43:34 PM,100 Block of OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7864582323625, -122.407206735701)",160421463-88 -122560213,KM02,12084668,Medical Incident,09/12/2012,09/12/2012,09/12/2012 04:08:39 PM,09/12/2012 04:14:22 PM,09/12/2012 04:17:27 PM,04/25/2016 01:56:48 PM,09/12/2012 04:24:04 PM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Patient Declined Transport,09/12/2012 05:11:29 PM,1900 Block of WEBSTER ST,SF,94115,B04,38,3511,2,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.788645855655, -122.432031665816)",122560213-KM02 -121010172,T11,12033478,Traffic Collision,04/10/2012,04/10/2012,04/10/2012 12:37:47 PM,04/10/2012 12:37:47 PM,04/10/2012 12:38:17 PM,04/10/2012 12:39:16 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 12:41:57 PM,CAPP ST/25TH ST,SF,94110,B06,11,5534,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,6,9,Mission,"(37.7507051844664, -122.417200906783)",121010172-T11 -132870232,89,13097666,Medical Incident,10/14/2013,10/14/2013,10/14/2013 02:34:51 PM,10/14/2013 02:35:13 PM,10/14/2013 02:36:25 PM,10/14/2013 02:37:40 PM,10/14/2013 02:38:02 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Patient Declined Transport,10/14/2013 03:21:41 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",132870232-89 -110640032,E40,11020950,Medical Incident,03/05/2011,03/04/2011,03/05/2011 01:23:47 AM,03/05/2011 01:27:38 AM,03/05/2011 01:29:13 AM,03/05/2011 01:30:49 AM,03/05/2011 01:33:39 AM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Other,03/05/2011 01:34:52 AM,2400 Block of 26TH AVE,SF,94116,B08,40,7461,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7417893679969, -122.483058319471)",110640032-E40 -160901348,57,16035676,Medical Incident,03/30/2016,03/30/2016,03/30/2016 10:40:18 AM,03/30/2016 10:41:58 AM,03/30/2016 10:42:29 AM,03/30/2016 10:42:39 AM,03/30/2016 10:59:05 AM,03/30/2016 11:23:19 AM,03/30/2016 11:23:22 AM,Code 2 Transport,03/30/2016 11:53:19 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160901348-57 -122440181,E42,12080662,Medical Incident,08/31/2012,08/31/2012,08/31/2012 01:32:06 PM,08/31/2012 01:33:58 PM,08/31/2012 01:34:26 PM,08/31/2012 01:35:57 PM,08/31/2012 01:38:19 PM,04/25/2016 01:56:59 PM,04/25/2016 01:56:59 PM,Other,08/31/2012 01:59:38 PM,1100 Block of SILVER AVE,SF,94134,B09,42,6354,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,9,Portola,"(37.7299644716829, -122.4129271346)",122440181-E42 -110390061,AM16,11012839,Medical Incident,02/08/2011,02/07/2011,02/08/2011 06:12:44 AM,02/08/2011 06:13:22 AM,02/08/2011 06:14:05 AM,02/08/2011 06:14:55 AM,04/25/2016 02:06:11 PM,02/08/2011 06:37:35 AM,02/08/2011 06:48:27 AM,Code 2 Transport,02/08/2011 07:41:17 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,false,,1,PRIVATE,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",110390061-AM16 -110400167,E01,11013221,Medical Incident,02/09/2011,02/09/2011,02/09/2011 11:37:05 AM,02/09/2011 11:39:43 AM,02/09/2011 11:40:17 AM,02/09/2011 11:50:16 AM,02/09/2011 11:53:16 AM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 12:24:57 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",110400167-E01 -120710050,78,12023511,Traffic Collision,03/11/2012,03/10/2012,03/11/2012 03:47:17 AM,03/11/2012 03:47:17 AM,03/11/2012 03:48:02 AM,04/25/2016 01:59:44 PM,03/11/2012 03:52:33 AM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,Other,03/11/2012 03:54:05 AM,SUTTER ST/POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",120710050-78 -110260219,E14,11008602,Medical Incident,01/26/2011,01/26/2011,01/26/2011 02:07:12 PM,01/26/2011 02:09:34 PM,01/26/2011 02:10:19 PM,01/26/2011 02:11:29 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/26/2011 02:20:56 PM,GEARY BL/25TH AV,SF,94121,B07,14,7213,2,2,2,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7800925816609, -122.484732261339)",110260219-E14 -132080045,B02,13070294,Alarms,07/27/2013,07/26/2013,07/27/2013 02:33:24 AM,07/27/2013 02:34:46 AM,07/27/2013 02:35:07 AM,07/27/2013 02:36:55 AM,07/27/2013 02:39:38 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Fire,07/27/2013 02:49:20 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",132080045-B02 -123570147,AM04,12119473,Medical Incident,12/22/2012,12/22/2012,12/22/2012 10:47:55 AM,12/22/2012 10:50:37 AM,12/22/2012 10:51:34 AM,12/22/2012 10:52:09 AM,12/22/2012 10:55:24 AM,12/22/2012 11:21:52 AM,12/22/2012 11:36:26 AM,Code 2 Transport,12/22/2012 12:08:07 PM,300 Block of DOLORES ST,SF,94110,B02,6,5251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7635158382169, -122.426118705944)",123570147-AM04 -160592203,AM04,16023583,Medical Incident,02/28/2016,02/28/2016,02/28/2016 04:19:53 PM,02/28/2016 04:21:14 PM,02/28/2016 04:21:27 PM,02/28/2016 04:22:04 PM,02/28/2016 04:25:14 PM,02/28/2016 04:39:18 PM,02/28/2016 04:53:55 PM,Code 2 Transport,02/28/2016 05:15:50 PM,1600 Block of 30TH AVE,San Francisco,94122,B08,18,7514,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7565210163368, -122.488382449456)",160592203-AM04 -102280232,81,10071818,Medical Incident,08/16/2010,08/16/2010,08/16/2010 04:12:23 PM,08/16/2010 04:13:13 PM,08/16/2010 04:14:57 PM,08/16/2010 04:15:42 PM,08/16/2010 04:25:11 PM,08/16/2010 04:37:37 PM,04/25/2016 02:09:03 PM,Code 2 Transport,08/16/2010 05:22:27 PM,4600 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7234913181355, -122.435621772842)",102280232-81 -132660318,E36,13090364,Structure Fire,09/23/2013,09/23/2013,09/23/2013 05:46:10 PM,09/23/2013 05:46:10 PM,09/23/2013 05:46:19 PM,09/23/2013 05:47:25 PM,09/23/2013 05:48:21 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/23/2013 05:48:42 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7726641818375, -122.418338317697)",132660318-E36 -140510141,E12,14017230,Alarms,02/20/2014,02/20/2014,02/20/2014 10:22:12 AM,02/20/2014 10:24:01 AM,02/20/2014 10:25:00 AM,02/20/2014 10:25:17 AM,02/20/2014 10:26:24 AM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Fire,02/20/2014 10:48:13 AM,0 Block of PARNASSUS AVE,SF,94117,B05,12,5151,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7650054157028, -122.449116319397)",140510141-E12 -111560046,99,11051463,Medical Incident,06/05/2011,06/04/2011,06/05/2011 01:58:57 AM,06/05/2011 02:01:06 AM,06/05/2011 02:01:30 AM,06/05/2011 02:01:55 AM,06/05/2011 02:08:11 AM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Patient Declined Transport,06/05/2011 02:45:39 AM,2700 Block of LOMBARD ST,SF,94123,B04,16,4326,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.7984883739853, -122.44662765351)",111560046-99 -160693018,65,16027586,Medical Incident,03/09/2016,03/09/2016,03/09/2016 06:13:57 PM,03/09/2016 06:15:57 PM,03/09/2016 06:17:22 PM,03/09/2016 06:17:31 PM,03/09/2016 06:33:35 PM,03/09/2016 07:00:44 PM,03/09/2016 07:41:03 PM,Code 2 Transport,03/09/2016 08:28:47 PM,0 Block of CRESTLINE DR,San Francisco,94131,B06,24,5284,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Twin Peaks,"(37.7501301863303, -122.446483988175)",160693018-65 -130380093,KM04,13012931,Medical Incident,02/07/2013,02/07/2013,02/07/2013 09:02:10 AM,02/07/2013 09:03:56 AM,02/07/2013 09:04:11 AM,02/07/2013 09:04:59 AM,02/07/2013 09:09:32 AM,02/07/2013 09:35:38 AM,02/07/2013 09:49:33 AM,Code 2 Transport,02/07/2013 10:26:38 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",130380093-KM04 -102250007,T07,10070705,Structure Fire,08/13/2010,08/12/2010,08/13/2010 12:56:28 AM,08/13/2010 12:56:29 AM,08/13/2010 12:56:48 AM,08/13/2010 12:58:22 AM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 01:10:06 AM,2300 Block of FOLSOM ST,SF,94110,B06,7,556,3,3,3,false,,1,TRUCK,3,6,9,Mission,"(37.7597015509874, -122.414696971308)",102250007-T07 -160510946,AM08,16020406,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:33:16 AM,02/20/2016 09:35:12 AM,02/20/2016 09:35:37 AM,02/20/2016 09:36:24 AM,02/20/2016 09:39:28 AM,02/20/2016 10:16:20 AM,02/20/2016 10:30:06 AM,Code 2 Transport,02/20/2016 11:16:24 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160510946-AM08 -111560030,AM18,11051446,Medical Incident,06/05/2011,06/04/2011,06/05/2011 01:08:56 AM,06/05/2011 01:09:45 AM,06/05/2011 01:09:55 AM,06/05/2011 01:11:00 AM,06/05/2011 01:14:25 AM,06/05/2011 01:27:43 AM,06/05/2011 01:56:52 AM,Code 2 Transport,06/05/2011 02:34:38 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",111560030-AM18 -160730142,62,16028843,Medical Incident,03/13/2016,03/12/2016,03/13/2016 12:59:10 AM,03/13/2016 12:59:10 AM,03/13/2016 12:59:27 AM,03/13/2016 12:59:33 AM,03/13/2016 01:02:07 AM,03/13/2016 01:31:35 AM,03/13/2016 01:38:41 AM,Code 2 Transport,03/13/2016 01:57:06 AM,11TH ST/MISSION ST,San Francisco,94103,B02,36,5117,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160730142-62 -130890133,E08,13029708,Medical Incident,03/30/2013,03/30/2013,03/30/2013 11:33:09 AM,03/30/2013 11:35:02 AM,03/30/2013 11:35:58 AM,03/30/2013 11:36:17 AM,03/30/2013 11:44:19 AM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,No Merit,03/30/2013 11:50:03 AM,6TH ST/NATOMA ST,SF,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7801620260598, -122.407691417119)",130890133-E08 -160530780,AM02,16021108,Medical Incident,02/22/2016,02/22/2016,02/22/2016 08:48:57 AM,02/22/2016 08:49:34 AM,02/22/2016 08:50:13 AM,02/22/2016 08:50:58 AM,02/22/2016 09:04:12 AM,02/22/2016 09:04:15 AM,02/22/2016 09:24:29 AM,Code 2 Transport,02/22/2016 09:42:15 AM,900 Block of MISSOURI ST,San Francisco,94107,B10,37,2566,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7552453099076, -122.39565974671)",160530780-AM02 -130930340,E36,13031271,Medical Incident,04/03/2013,04/03/2013,04/03/2013 08:39:06 PM,04/03/2013 08:41:18 PM,04/03/2013 08:42:04 PM,04/03/2013 08:43:19 PM,04/03/2013 08:46:12 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Other,04/03/2013 08:49:45 PM,1300 Block of NATOMA ST,SF,94103,B02,36,5215,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7675637955338, -122.418410340467)",130930340-E36 -133130362,E05,13106533,Medical Incident,11/09/2013,11/09/2013,11/09/2013 07:56:54 PM,11/09/2013 08:01:37 PM,11/09/2013 08:09:46 PM,11/09/2013 08:10:16 PM,11/09/2013 08:12:47 PM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Patient Declined Transport,11/09/2013 08:29:20 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",133130362-E05 -160832501,71,16033013,Medical Incident,03/23/2016,03/23/2016,03/23/2016 03:25:40 PM,03/23/2016 03:25:40 PM,03/23/2016 03:26:01 PM,03/23/2016 03:26:17 PM,03/23/2016 03:29:49 PM,03/23/2016 03:49:58 PM,03/23/2016 03:54:53 PM,Code 2 Transport,03/23/2016 04:23:49 PM,3300 Block of 25TH ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7508088628081, -122.416394801639)",160832501-71 -103360169,RS2,10107474,Structure Fire,12/02/2010,12/02/2010,12/02/2010 12:20:07 PM,12/02/2010 12:20:54 PM,12/02/2010 12:21:26 PM,12/02/2010 12:23:21 PM,12/02/2010 12:28:49 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/02/2010 12:32:19 PM,4200 Block of 22ND ST,SF,94114,B06,24,5463,3,3,3,false,,1,RESCUE SQUAD,7,6,8,Noe Valley,"(37.7540784989199, -122.440387557495)",103360169-RS2 -133320110,KM06,13112630,Medical Incident,11/28/2013,11/28/2013,11/28/2013 11:47:28 AM,11/28/2013 11:48:07 AM,11/28/2013 11:48:26 AM,11/28/2013 11:49:05 AM,11/28/2013 11:56:27 AM,11/28/2013 12:16:42 PM,11/28/2013 12:26:24 PM,Code 2 Transport,11/28/2013 12:57:32 PM,800 Block of WISCONSIN ST,SF,94107,B10,37,2544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7565749650827, -122.398800339981)",133320110-KM06 -121930076,89,12064171,Medical Incident,07/11/2012,07/10/2012,07/11/2012 07:11:55 AM,07/11/2012 07:13:25 AM,07/11/2012 07:14:52 AM,07/11/2012 07:16:02 AM,07/11/2012 07:23:50 AM,07/11/2012 07:34:32 AM,07/11/2012 07:55:16 AM,Code 2 Transport,07/11/2012 08:21:50 AM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7756454671917, -122.412432457912)",121930076-89 -160341607,KM12,16013371,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:25:30 PM,02/03/2016 12:26:03 PM,02/03/2016 12:27:01 PM,02/03/2016 12:27:33 PM,02/03/2016 12:34:50 PM,02/03/2016 12:58:53 PM,02/03/2016 01:25:06 PM,Code 2 Transport,02/03/2016 02:02:18 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7677331022924, -122.415606951318)",160341607-KM12 -111380281,E07,11045960,Structure Fire,05/18/2011,05/18/2011,05/18/2011 05:52:26 PM,05/18/2011 05:52:27 PM,05/18/2011 05:52:41 PM,05/18/2011 05:53:59 PM,05/18/2011 05:55:36 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 05:56:02 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",111380281-E07 -121750418,RS1,12058314,Medical Incident,06/23/2012,06/23/2012,06/23/2012 10:36:43 PM,06/23/2012 10:37:19 PM,06/23/2012 10:37:28 PM,06/23/2012 10:38:23 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 10:39:31 PM,MARKET ST/6TH ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7822305756448, -122.410292026777)",121750418-RS1 -160223218,KM12,16008900,Medical Incident,01/22/2016,01/22/2016,01/22/2016 07:22:41 PM,01/22/2016 07:22:41 PM,01/22/2016 07:23:13 PM,01/22/2016 07:23:42 PM,01/22/2016 07:32:00 PM,01/22/2016 07:56:00 PM,01/22/2016 08:17:20 PM,Code 2 Transport,01/22/2016 08:52:05 PM,2100 Block of MARKET ST,San Francisco,94114,B05,6,5231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",160223218-KM12 -130450181,E13,13015247,Vehicle Fire,02/14/2013,02/14/2013,02/14/2013 11:59:33 AM,02/14/2013 12:00:50 PM,02/14/2013 12:01:47 PM,04/25/2016 01:54:18 PM,02/14/2013 12:04:15 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Fire,02/14/2013 12:22:28 PM,800 Block of BATTERY ST,SF,94111,B01,13,1155,3,3,3,true,Fire,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7990643005082, -122.401077389929)",130450181-E13 -102500054,85,10078905,Medical Incident,09/07/2010,09/06/2010,09/07/2010 07:07:42 AM,09/07/2010 07:08:14 AM,09/07/2010 07:08:28 AM,09/07/2010 07:10:42 AM,09/07/2010 07:16:04 AM,09/07/2010 07:37:02 AM,09/07/2010 08:14:01 AM,Code 2 Transport,09/07/2010 08:43:58 AM,0 Block of RHINE ST,SF,94112,B09,33,8364,3,3,3,true,,1,MEDIC,2,9,11,Outer Mission,"(37.7094010318368, -122.460892914576)",102500054-85 -111180055,85,11038829,Medical Incident,04/28/2011,04/27/2011,04/28/2011 07:00:58 AM,04/28/2011 07:01:33 AM,04/28/2011 07:02:09 AM,04/28/2011 07:04:31 AM,04/28/2011 07:09:25 AM,04/28/2011 07:27:32 AM,04/28/2011 07:56:48 AM,Code 2 Transport,04/28/2011 08:17:20 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",111180055-85 -111110230,58,11036693,Traffic Collision,04/21/2011,04/21/2011,04/21/2011 02:54:26 PM,04/21/2011 02:55:51 PM,04/21/2011 02:56:32 PM,04/21/2011 02:57:31 PM,04/21/2011 03:11:54 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Patient Declined Transport,04/21/2011 03:27:18 PM,HAYES ST/SCOTT ST,SF,94117,B05,21,4136,2,2,2,true,,1,MEDIC,2,5,5,Hayes Valley,"(37.77520593025, -122.436128964162)",111110230-58 -140730123,54,14024597,Medical Incident,03/14/2014,03/14/2014,03/14/2014 10:55:32 AM,03/14/2014 10:56:46 AM,03/14/2014 10:59:18 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Code 2 Transport,04/25/2016 01:47:45 PM,1200 Block of MARKET ST,SAN FRANCISCO,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",140730123-54 -113180350,KM07,11105788,Medical Incident,11/14/2011,11/14/2011,11/14/2011 10:53:20 PM,11/14/2011 10:54:36 PM,11/14/2011 10:54:50 PM,11/14/2011 10:56:26 PM,11/14/2011 11:01:28 PM,11/14/2011 11:17:59 PM,11/14/2011 11:36:06 PM,Code 2 Transport,11/15/2011 12:11:55 AM,300 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",113180350-KM07 -160650484,AM20,16025814,Medical Incident,03/05/2016,03/04/2016,03/05/2016 04:07:00 AM,03/05/2016 04:07:37 AM,03/05/2016 04:07:51 AM,03/05/2016 04:08:35 AM,03/05/2016 04:14:55 AM,03/05/2016 04:46:31 AM,03/05/2016 04:59:13 AM,Code 2 Transport,03/05/2016 05:27:20 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",160650484-AM20 -102430182,AP,10076629,Other,08/31/2010,08/31/2010,08/31/2010 12:31:59 PM,08/31/2010 12:31:59 PM,08/31/2010 12:31:59 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Fire,08/31/2010 12:32:20 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102430182-AP -160572142,AM16,16022796,Medical Incident,02/26/2016,02/26/2016,02/26/2016 02:48:09 PM,02/26/2016 02:48:09 PM,02/26/2016 02:50:30 PM,02/26/2016 02:51:05 PM,02/26/2016 03:16:10 PM,02/26/2016 03:31:03 PM,02/26/2016 03:48:53 PM,Code 2 Transport,02/26/2016 04:15:38 PM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160572142-AM16 -160230952,79,16009087,Medical Incident,01/23/2016,01/23/2016,01/23/2016 09:01:04 AM,01/23/2016 09:03:15 AM,01/23/2016 09:03:29 AM,01/23/2016 09:03:36 AM,01/23/2016 09:12:05 AM,01/23/2016 09:21:55 AM,01/23/2016 09:34:57 AM,Code 2 Transport,01/23/2016 09:53:08 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160230952-79 -121280299,T02,12042686,Outside Fire,05/07/2012,05/07/2012,05/07/2012 04:59:29 PM,05/07/2012 04:59:30 PM,05/07/2012 04:59:50 PM,05/07/2012 05:02:40 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 05:07:02 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Alarm,1,TRUCK,5,1,3,North Beach,"(37.8069201392161, -122.407170160416)",121280299-T02 -160920013,87,16036275,Medical Incident,04/01/2016,03/31/2016,04/01/2016 12:02:49 AM,04/01/2016 12:04:01 AM,04/01/2016 12:05:03 AM,04/01/2016 12:06:06 AM,04/01/2016 12:09:05 AM,04/01/2016 12:23:21 AM,04/01/2016 12:43:26 AM,Code 2 Transport,04/01/2016 01:15:58 AM,5TH ST/BRANNAN ST,San Francisco,94107,B03,8,2241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7765683820103, -122.398755450545)",160920013-87 -160183494,KM07,16007422,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:01:24 PM,01/18/2016 11:02:50 PM,01/18/2016 11:04:43 PM,01/18/2016 11:04:46 PM,01/18/2016 11:12:35 PM,01/18/2016 11:16:25 PM,01/18/2016 11:25:35 PM,Code 2 Transport,01/18/2016 11:54:03 PM,1000 Block of NOE ST,San Francisco,94114,B06,11,5522,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",160183494-KM07 -133550346,E25,13120798,Structure Fire,12/21/2013,12/21/2013,12/21/2013 06:45:55 PM,12/21/2013 06:45:55 PM,12/21/2013 06:46:05 PM,12/21/2013 06:47:55 PM,12/21/2013 06:48:53 PM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Other,12/21/2013 06:49:09 PM,3RD ST/JERROLD AV,SF,94124,B10,25,6467,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7387419299442, -122.389310056266)",133550346-E25 -160583894,AM24,16023323,Medical Incident,02/27/2016,02/27/2016,02/27/2016 11:04:49 PM,02/27/2016 11:06:29 PM,02/27/2016 11:07:38 PM,02/27/2016 11:08:27 PM,02/27/2016 11:19:31 PM,02/27/2016 11:46:03 PM,02/27/2016 11:59:53 PM,Code 2 Transport,02/28/2016 12:28:13 AM,300 Block of LAKE ST,San Francisco,94118,B07,31,712,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,2,Inner Richmond,"(37.7868468972981, -122.462012581774)",160583894-AM24 -103400350,93,10108971,Medical Incident,12/06/2010,12/06/2010,12/06/2010 10:08:29 PM,12/06/2010 10:10:15 PM,12/06/2010 10:10:25 PM,12/06/2010 10:11:03 PM,12/06/2010 10:16:06 PM,12/06/2010 10:39:21 PM,12/06/2010 10:49:28 PM,Code 2 Transport,12/06/2010 11:17:44 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",103400350-93 -121800124,E03,12059874,Medical Incident,06/28/2012,06/28/2012,06/28/2012 09:43:28 AM,06/28/2012 09:45:22 AM,06/28/2012 09:46:09 AM,06/28/2012 09:46:52 AM,06/28/2012 09:49:58 AM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/28/2012 10:01:12 AM,500 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7869413406164, -122.411939021128)",121800124-E03 -130250200,KM14,13008631,Medical Incident,01/25/2013,01/25/2013,01/25/2013 12:50:52 PM,01/25/2013 12:52:51 PM,01/25/2013 12:53:19 PM,01/25/2013 12:54:02 PM,04/25/2016 01:54:37 PM,01/25/2013 01:12:10 PM,01/25/2013 01:21:12 PM,Code 2 Transport,01/25/2013 01:53:30 PM,1600 Block of VALLEJO ST,SF,94123,B04,38,3232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7965319488523, -122.424414630029)",130250200-KM14 -131830313,93,13062466,Traffic Collision,07/02/2013,07/02/2013,07/02/2013 07:24:08 PM,07/02/2013 07:25:38 PM,07/02/2013 07:27:01 PM,07/02/2013 07:27:13 PM,07/02/2013 07:40:30 PM,07/02/2013 07:50:04 PM,07/02/2013 08:01:36 PM,Code 2 Transport,07/02/2013 08:37:08 PM,300 Block of BRYANT ST,SF,94107,B03,35,2135,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7839080570669, -122.392433239348)",131830313-93 -160721022,72,16028533,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:46:44 AM,03/12/2016 09:47:01 AM,03/12/2016 09:47:23 AM,03/12/2016 09:47:51 AM,03/12/2016 09:52:26 AM,03/12/2016 10:10:59 AM,03/12/2016 10:19:13 AM,Code 3 Transport,03/12/2016 11:35:26 AM,200 Block of MINERVA ST,San Francisco,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7156918777367, -122.460860536014)",160721022-72 -102950224,66,10094114,Medical Incident,10/22/2010,10/22/2010,10/22/2010 01:53:53 PM,10/22/2010 01:54:15 PM,10/22/2010 01:55:19 PM,10/22/2010 01:57:36 PM,04/25/2016 02:07:59 PM,10/22/2010 02:16:09 PM,10/22/2010 02:30:12 PM,Code 2 Transport,10/22/2010 02:55:13 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",102950224-66 -110890046,E18,11029278,Structure Fire,03/30/2011,03/29/2011,03/30/2011 03:25:00 AM,03/30/2011 03:25:54 AM,03/30/2011 03:26:02 AM,03/30/2011 03:27:23 AM,03/30/2011 03:33:00 AM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 04:16:46 AM,1300 Block of LAWTON ST,SF,94122,B08,22,7427,3,3,3,true,,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7579991229146, -122.4772494747)",110890046-E18 -111030150,60,11034104,Medical Incident,04/13/2011,04/13/2011,04/13/2011 11:34:57 AM,04/13/2011 11:37:02 AM,04/13/2011 11:38:02 AM,04/13/2011 11:38:36 AM,04/13/2011 11:44:32 AM,04/13/2011 11:57:29 AM,04/13/2011 12:11:06 PM,Code 2 Transport,04/13/2011 12:34:51 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7816524457175, -122.415083177799)",111030150-60 -123410203,T16,12113790,Structure Fire,12/06/2012,12/06/2012,12/06/2012 12:14:51 PM,12/06/2012 12:17:30 PM,12/06/2012 12:17:57 PM,12/06/2012 12:19:07 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/06/2012 12:22:46 PM,2100 Block of DIVISADERO ST,SF,94115,B04,10,4161,3,3,3,false,Alarm,1,TRUCK,8,4,2,Pacific Heights,"(37.7894494127185, -122.440600844327)",123410203-T16 -160460517,88,16018406,Medical Incident,02/15/2016,02/14/2016,02/15/2016 05:37:45 AM,02/15/2016 05:39:23 AM,02/15/2016 05:39:29 AM,02/15/2016 05:39:50 AM,02/15/2016 05:44:30 AM,02/15/2016 05:57:06 AM,02/15/2016 06:05:58 AM,Code 2 Transport,02/15/2016 06:37:37 AM,100 Block of 4TH ST,San Francisco,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842224754433, -122.404037898963)",160460517-88 -160872422,KM04,16034634,Medical Incident,03/27/2016,03/27/2016,03/27/2016 04:08:04 PM,03/27/2016 04:09:46 PM,03/27/2016 04:10:18 PM,03/27/2016 04:10:53 PM,03/27/2016 04:15:22 PM,03/27/2016 04:36:43 PM,03/27/2016 05:06:26 PM,Code 2 Transport,03/27/2016 05:52:30 PM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",160872422-KM04 -123300006,E15,12109568,Medical Incident,11/25/2012,11/24/2012,11/25/2012 12:20:03 AM,11/25/2012 12:20:32 AM,11/25/2012 12:20:54 AM,11/25/2012 12:22:25 AM,11/25/2012 12:26:12 AM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 12:52:06 AM,0 Block of MINERVA ST,SF,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7158849109873, -122.454797121611)",123300006-E15 -102940313,AM10,10093867,Medical Incident,10/21/2010,10/21/2010,10/21/2010 08:06:44 PM,10/21/2010 08:10:13 PM,10/21/2010 08:10:47 PM,04/25/2016 02:08:00 PM,10/21/2010 08:11:56 PM,10/21/2010 08:19:13 PM,10/21/2010 08:26:43 PM,Code 2 Transport,10/21/2010 08:11:17 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",102940313-AM10 -121780345,E06,12059392,Structure Fire,06/26/2012,06/26/2012,06/26/2012 08:45:33 PM,06/26/2012 08:45:33 PM,06/26/2012 08:45:47 PM,06/26/2012 08:46:39 PM,06/26/2012 08:50:24 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 08:52:42 PM,17TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7635716035073, -122.41733240732)",121780345-E06 -111250129,E12,11041314,Medical Incident,05/05/2011,05/05/2011,05/05/2011 10:35:11 AM,05/05/2011 10:35:41 AM,05/05/2011 10:36:10 AM,05/05/2011 10:36:35 AM,05/05/2011 10:37:51 AM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 10:44:00 AM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,3,2,2,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",111250129-E12 -131230317,RS1,13041552,Medical Incident,05/03/2013,05/03/2013,05/03/2013 04:05:57 PM,05/03/2013 04:06:08 PM,05/03/2013 04:06:48 PM,05/03/2013 04:08:20 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 04:10:44 PM,600 Block of 3RD ST,SF,94107,B03,8,2172,3,3,3,false,Non Life-threatening,1,RESCUE SQUAD,4,3,6,Financial District/South Beach,"(37.7795094454815, -122.393475822659)",131230317-RS1 -123130011,E06,12103999,Medical Incident,11/08/2012,11/07/2012,11/08/2012 12:37:56 AM,11/08/2012 12:38:27 AM,11/08/2012 12:40:04 AM,11/08/2012 12:48:54 AM,11/08/2012 12:50:48 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/08/2012 12:58:07 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",123130011-E06 -140720118,AM02,14024263,Medical Incident,03/13/2014,03/13/2014,03/13/2014 08:55:16 AM,03/13/2014 08:57:04 AM,03/13/2014 08:57:19 AM,03/13/2014 08:58:26 AM,03/13/2014 09:04:31 AM,03/13/2014 09:14:46 AM,03/13/2014 09:22:34 AM,Code 2 Transport,03/13/2014 09:59:07 AM,900 Block of POTRERO AVE,SAN FRANCISCO,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",140720118-AM02 -102340181,B02,10073625,Structure Fire,08/22/2010,08/22/2010,08/22/2010 01:26:32 PM,08/22/2010 01:29:23 PM,08/22/2010 01:29:53 PM,08/22/2010 01:31:34 PM,08/22/2010 01:35:40 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 01:39:15 PM,1900 Block of OAK ST,SF,94117,B05,12,4544,3,3,3,false,,1,CHIEF,6,5,5,Haight Ashbury,"(37.7713013028881, -122.451412659858)",102340181-B02 -160851583,AM10,16033746,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:50:17 AM,03/25/2016 11:55:49 AM,03/25/2016 12:01:03 PM,03/25/2016 12:01:38 PM,03/25/2016 12:09:51 PM,03/25/2016 12:25:11 PM,03/25/2016 12:39:46 PM,Code 2 Transport,03/25/2016 01:11:03 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160851583-AM10 -123050151,AM06,12101172,Medical Incident,10/31/2012,10/31/2012,10/31/2012 10:57:26 AM,10/31/2012 10:58:37 AM,10/31/2012 11:00:37 AM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/31/2012 11:07:03 AM,600 Block of THE EMBARCADERO,SF,94111,B01,13,909,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",123050151-AM06 -160182942,AM22,16007362,Medical Incident,01/18/2016,01/18/2016,01/18/2016 07:46:12 PM,01/18/2016 07:47:00 PM,01/18/2016 07:48:00 PM,01/18/2016 07:48:59 PM,01/18/2016 07:51:07 PM,01/18/2016 07:58:55 PM,01/18/2016 08:25:32 PM,Code 2 Transport,01/18/2016 08:42:08 PM,100 Block of THE EMBARCADERO,San Francisco,94111,B01,13,901,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7953080071145, -122.3938439729)",160182942-AM22 -160552965,58,16022092,Medical Incident,02/24/2016,02/24/2016,02/24/2016 05:27:06 PM,02/24/2016 05:28:19 PM,02/24/2016 05:28:45 PM,02/24/2016 05:29:00 PM,02/24/2016 05:48:56 PM,02/24/2016 05:48:57 PM,02/24/2016 05:54:43 PM,Code 3 Transport,02/24/2016 06:49:50 PM,300 Block of MUNICH ST,San Francisco,94112,B09,43,6163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7200682259192, -122.427352796378)",160552965-58 -131540136,E33,13052120,High Angle Rescue,06/03/2013,06/03/2013,06/03/2013 10:30:45 AM,06/03/2013 10:32:35 AM,06/03/2013 10:34:10 AM,06/03/2013 10:36:24 AM,06/03/2013 10:42:54 AM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/03/2013 11:49:38 AM,500 Block of SKYLINE BLVD,SF,94132,B08,19,8772,3,3,3,true,Fire,1,ENGINE,4,8,7,Lakeshore,"(37.722078288127, -122.501720822722)",131540136-E33 -130370193,E23,13012700,Medical Incident,02/06/2013,02/06/2013,02/06/2013 01:25:05 PM,02/06/2013 01:25:48 PM,02/06/2013 01:26:43 PM,04/25/2016 01:54:26 PM,02/06/2013 01:27:58 PM,04/25/2016 01:54:26 PM,04/25/2016 01:54:26 PM,Other,02/06/2013 02:11:17 PM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",130370193-E23 -132330117,T03,13078617,Alarms,08/21/2013,08/21/2013,08/21/2013 10:11:53 AM,08/21/2013 10:13:07 AM,08/21/2013 10:13:34 AM,08/21/2013 10:14:39 AM,08/21/2013 10:16:58 AM,04/25/2016 01:51:11 PM,04/25/2016 01:51:11 PM,Other,08/21/2013 10:22:47 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",132330117-T03 -121950128,E33,12064858,Medical Incident,07/13/2012,07/13/2012,07/13/2012 10:53:49 AM,07/13/2012 10:55:34 AM,07/13/2012 10:55:50 AM,07/13/2012 10:56:58 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/13/2012 10:59:17 AM,0 Block of POPE ST,SF,94112,B09,43,6176,E,E,3,true,Potentially Life-Threatening,1,ENGINE,4,9,11,Excelsior,"(37.7142931903001, -122.441384223845)",121950128-E33 -130020013,AM18,13000500,Medical Incident,01/02/2013,01/01/2013,01/02/2013 01:51:27 AM,01/02/2013 01:53:34 AM,01/02/2013 01:53:56 AM,01/02/2013 01:54:12 AM,01/02/2013 02:00:54 AM,01/02/2013 02:12:15 AM,01/02/2013 02:22:43 AM,Code 2 Transport,01/02/2013 02:54:04 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",130020013-AM18 -160461554,61,16018499,Medical Incident,02/15/2016,02/15/2016,02/15/2016 12:33:04 PM,02/15/2016 12:33:04 PM,02/15/2016 12:33:41 PM,02/15/2016 12:33:55 PM,02/15/2016 12:36:53 PM,02/15/2016 12:44:23 PM,02/15/2016 12:53:23 PM,Code 2 Transport,02/15/2016 01:17:59 PM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7596933117757, -122.414834950578)",160461554-61 -111640108,B09,11054074,Alarms,06/13/2011,06/13/2011,06/13/2011 09:26:43 AM,06/13/2011 09:27:47 AM,06/13/2011 09:27:55 AM,06/13/2011 09:28:08 AM,06/13/2011 09:31:44 AM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/13/2011 09:41:00 AM,800 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,false,,1,CHIEF,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",111640108-B09 -140860091,E20,14028875,Structure Fire,03/27/2014,03/27/2014,03/27/2014 09:45:13 AM,03/27/2014 09:45:16 AM,03/27/2014 09:45:52 AM,03/27/2014 09:46:33 AM,03/27/2014 09:49:44 AM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 09:54:57 AM,300 Block of LAGUNA HONDA BLVD,,94131,B08,20,8637,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",140860091-E20 -111880220,E06,11062185,Medical Incident,07/07/2011,07/07/2011,07/07/2011 03:08:38 PM,07/07/2011 03:09:12 PM,07/07/2011 03:09:39 PM,07/07/2011 03:10:33 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/07/2011 03:11:01 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,3,2,8,Mission,"(37.7661259454801, -122.42207304894)",111880220-E06 -160794238,81,16031619,Medical Incident,03/19/2016,03/19/2016,03/19/2016 11:03:06 PM,03/19/2016 11:03:06 PM,03/19/2016 11:03:06 PM,03/19/2016 11:03:06 PM,03/19/2016 11:03:06 PM,03/19/2016 11:13:02 PM,03/19/2016 11:30:29 PM,Code 2 Transport,03/19/2016 11:45:59 PM,24TH ST/MISSION ST,San Francisco,94110,B99,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160794238-81 -121330084,T03,12044185,Medical Incident,05/12/2012,05/11/2012,05/12/2012 07:52:12 AM,05/12/2012 07:54:31 AM,05/12/2012 07:54:47 AM,05/12/2012 07:55:39 AM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 07:59:59 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",121330084-T03 -130110279,E01,13003830,Medical Incident,01/11/2013,01/11/2013,01/11/2013 04:37:17 PM,01/11/2013 04:40:22 PM,01/11/2013 04:40:54 PM,01/11/2013 04:43:18 PM,01/11/2013 04:49:07 PM,04/25/2016 01:54:51 PM,04/25/2016 01:54:51 PM,Other,01/11/2013 04:52:24 PM,0 Block of TURK ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",130110279-E01 -121520131,65,12050301,Medical Incident,05/31/2012,05/31/2012,05/31/2012 11:00:40 AM,05/31/2012 11:02:34 AM,05/31/2012 11:04:57 AM,05/31/2012 11:05:10 AM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 11:14:35 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",121520131-65 -122640139,T19,12087149,Medical Incident,09/20/2012,09/20/2012,09/20/2012 10:59:37 AM,09/20/2012 11:00:51 AM,09/20/2012 11:01:04 AM,09/20/2012 11:02:06 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 11:02:08 AM,200 Block of SKYLINE BLVD,SF,94132,B08,19,8713,3,3,3,true,Non Life-threatening,1,TRUCK,3,8,7,Lakeshore,"(37.730009641642, -122.500476623156)",122640139-T19 -120590106,77,12019371,Traffic Collision,02/28/2012,02/28/2012,02/28/2012 10:03:10 AM,02/28/2012 10:04:08 AM,02/28/2012 10:08:01 AM,02/28/2012 10:09:49 AM,02/28/2012 10:19:51 AM,02/28/2012 10:31:06 AM,02/28/2012 10:48:25 AM,Code 2 Transport,02/28/2012 11:05:43 AM,BRYANT ST/9TH ST,SF,94103,B03,29,2324,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7712907918294, -122.408531083232)",120590106-77 -102670292,E03,10084601,Medical Incident,09/24/2010,09/24/2010,09/24/2010 05:35:11 PM,09/24/2010 05:38:06 PM,09/24/2010 05:38:29 PM,04/25/2016 02:08:26 PM,09/24/2010 05:41:09 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Other,09/24/2010 05:50:13 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",102670292-E03 -140490019,AM18,14016522,Medical Incident,02/18/2014,02/17/2014,02/18/2014 02:45:52 AM,02/18/2014 02:47:19 AM,02/18/2014 02:47:53 AM,02/18/2014 02:48:19 AM,02/18/2014 02:52:20 AM,02/18/2014 03:03:49 AM,02/18/2014 03:21:13 AM,Code 2 Transport,02/18/2014 03:49:42 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",140490019-AM18 -102720068,86,10086273,Medical Incident,09/29/2010,09/28/2010,09/29/2010 06:28:41 AM,09/29/2010 06:30:20 AM,09/29/2010 06:30:52 AM,09/29/2010 06:31:04 AM,09/29/2010 06:43:07 AM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Gone on Arrival,09/29/2010 06:47:53 AM,700 Block of 4TH ST,SF,94107,B03,8,2224,1,1,2,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",102720068-86 -112840188,E42,11094011,Medical Incident,10/11/2011,10/11/2011,10/11/2011 12:50:16 PM,10/11/2011 12:51:42 PM,10/11/2011 12:52:21 PM,10/11/2011 12:53:40 PM,10/11/2011 12:55:05 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 01:06:36 PM,2000 Block of BANCROFT AVE,SF,94124,B10,42,6361,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7303221668854, -122.401247005211)",112840188-E42 -122170072,E16,12071939,Structure Fire,08/04/2012,08/03/2012,08/04/2012 07:26:30 AM,08/04/2012 07:26:30 AM,08/04/2012 07:27:01 AM,04/25/2016 01:57:24 PM,08/04/2012 07:28:56 AM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Fire,08/04/2012 07:29:20 AM,FILLMORE ST/GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7989518491605, -122.435866321305)",122170072-E16 -160601140,57,16023842,Traffic Collision,02/29/2016,02/29/2016,02/29/2016 10:18:57 AM,02/29/2016 10:18:57 AM,02/29/2016 10:19:08 AM,02/29/2016 10:19:19 AM,02/29/2016 10:21:41 AM,02/29/2016 10:57:46 AM,02/29/2016 11:08:57 AM,Code 2 Transport,02/29/2016 12:04:03 PM,POLK ST/ELM ST,San Francisco,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7817047859478, -122.418901311189)",160601140-57 -113310162,T01,11109693,Alarms,11/27/2011,11/27/2011,11/27/2011 02:03:35 PM,11/27/2011 02:04:24 PM,11/27/2011 02:05:06 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/27/2011 02:07:18 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",113310162-T01 -121390261,E15,12046231,Medical Incident,05/18/2012,05/18/2012,05/18/2012 05:20:15 PM,05/18/2012 05:20:44 PM,05/18/2012 05:23:48 PM,05/18/2012 05:24:46 PM,05/18/2012 05:32:40 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Patient Declined Transport,05/18/2012 05:41:47 PM,ALEMANY BL/OTTAWA AV,SF,94112,B09,15,8333,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7152977977514, -122.445835075938)",121390261-E15 -123570330,86,12119638,Medical Incident,12/22/2012,12/22/2012,12/22/2012 08:05:31 PM,12/22/2012 08:06:46 PM,12/22/2012 08:07:08 PM,12/22/2012 08:07:18 PM,12/22/2012 08:10:36 PM,12/22/2012 08:25:49 PM,12/22/2012 08:31:29 PM,Code 2 Transport,12/22/2012 08:56:15 PM,100 Block of CYRIL MAGNIN ST,SF,94102,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",123570330-86 -112540314,E13,11083940,Medical Incident,09/11/2011,09/11/2011,09/11/2011 08:36:15 PM,09/11/2011 08:36:55 PM,09/11/2011 08:37:10 PM,09/11/2011 08:38:32 PM,09/11/2011 08:40:09 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Other,09/11/2011 08:51:09 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",112540314-E13 -120880120,55,12029133,Traffic Collision,03/28/2012,03/28/2012,03/28/2012 10:28:53 AM,03/28/2012 10:29:47 AM,03/28/2012 10:31:19 AM,03/28/2012 10:31:44 AM,03/28/2012 10:39:15 AM,03/28/2012 10:58:54 AM,03/28/2012 11:23:35 AM,Code 2 Transport,03/28/2012 12:00:53 PM,19TH AV/HOLLOWAY AV,SF,94132,B08,19,8751,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,Lakeshore,"(37.7210572969552, -122.475221950242)",120880120-55 -160794285,76,16031623,Medical Incident,03/19/2016,03/19/2016,03/19/2016 11:15:12 PM,03/19/2016 11:15:50 PM,03/19/2016 11:16:23 PM,03/19/2016 11:16:28 PM,03/19/2016 11:19:35 PM,03/19/2016 11:39:00 PM,03/19/2016 11:46:40 PM,Code 2 Transport,03/20/2016 12:06:17 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160794285-76 -102660321,E03,10084288,Alarms,09/23/2010,09/23/2010,09/23/2010 08:34:44 PM,09/23/2010 08:36:02 PM,09/23/2010 08:36:08 PM,09/23/2010 08:37:05 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 08:37:42 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",102660321-E03 -131170180,T10,13039353,Alarms,04/27/2013,04/27/2013,04/27/2013 01:27:45 PM,04/27/2013 01:28:45 PM,04/27/2013 01:29:18 PM,04/27/2013 01:34:06 PM,04/27/2013 01:36:53 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/27/2013 01:45:54 PM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,false,Alarm,1,TRUCK,3,4,5,Japantown,"(37.7846877609559, -122.437204719428)",131170180-T10 -160622165,64,16024724,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:07:03 PM,03/02/2016 02:08:30 PM,03/02/2016 02:09:07 PM,03/02/2016 02:09:14 PM,03/02/2016 02:28:42 PM,03/02/2016 02:45:04 PM,03/02/2016 03:06:43 PM,Code 2 Transport,03/02/2016 03:37:58 PM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160622165-64 -160372741,63,16014796,Medical Incident,02/06/2016,02/06/2016,02/06/2016 04:36:36 PM,02/06/2016 04:38:55 PM,02/06/2016 04:55:30 PM,02/06/2016 04:56:04 PM,02/06/2016 05:22:09 PM,02/06/2016 05:34:59 PM,02/06/2016 06:11:33 PM,Code 2 Transport,02/06/2016 06:46:39 PM,BAY ST/BUCHANAN ST,San Francisco,94123,B04,16,3446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8030568840333, -122.433327957472)",160372741-63 -140230040,E37,14007748,Alarms,01/23/2014,01/22/2014,01/23/2014 04:47:19 AM,01/23/2014 04:50:02 AM,01/23/2014 04:50:24 AM,01/23/2014 04:52:28 AM,01/23/2014 04:54:27 AM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/23/2014 05:02:10 AM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",140230040-E37 -121230257,RS2,12040891,Medical Incident,05/02/2012,05/02/2012,05/02/2012 05:05:34 PM,05/02/2012 05:05:47 PM,05/02/2012 05:06:43 PM,05/02/2012 05:08:07 PM,05/02/2012 05:10:26 PM,04/25/2016 01:58:53 PM,04/25/2016 01:58:53 PM,Other,05/02/2012 05:11:09 PM,CALEDONIA ST/16TH ST,SF,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7649478897256, -122.421381476722)",121230257-RS2 -160761734,63,16030137,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:31:17 PM,03/16/2016 12:33:10 PM,03/16/2016 12:33:32 PM,03/16/2016 12:33:41 PM,03/16/2016 12:37:42 PM,03/16/2016 12:50:46 PM,03/16/2016 01:00:38 PM,Code 2 Transport,03/16/2016 01:26:38 PM,500 Block of HAMPSHIRE ST,San Francisco,94110,B02,29,5243,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7624947073577, -122.408313688)",160761734-63 -113630293,E11,11120697,Medical Incident,12/29/2011,12/29/2011,12/29/2011 08:01:27 PM,12/29/2011 08:01:36 PM,12/29/2011 08:02:05 PM,12/29/2011 08:02:57 PM,12/29/2011 08:04:57 PM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/29/2011 08:51:41 PM,VALENCIA ST/25TH ST,SF,94110,B06,11,5535,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7505058278022, -122.420507005779)",113630293-E11 -132840291,E36,13096714,Medical Incident,10/11/2013,10/11/2013,10/11/2013 07:09:59 PM,10/11/2013 07:10:49 PM,10/11/2013 07:11:14 PM,10/11/2013 07:11:26 PM,10/11/2013 07:15:09 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/11/2013 07:17:07 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,1,2,false,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7742515142555, -122.420565431007)",132840291-E36 -121300336,T05,12043398,Alarms,05/09/2012,05/09/2012,05/09/2012 09:56:37 PM,05/09/2012 09:59:42 PM,05/09/2012 10:00:08 PM,05/09/2012 10:05:07 PM,05/09/2012 10:07:48 PM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Other,05/09/2012 10:11:19 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",121300336-T05 -103370150,E06,10107774,Medical Incident,12/03/2010,12/03/2010,12/03/2010 11:52:28 AM,12/03/2010 11:52:38 AM,12/03/2010 11:53:26 AM,12/03/2010 11:53:55 AM,12/03/2010 11:55:52 AM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/03/2010 12:06:38 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,2,2,true,,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",103370150-E06 -103630087,84,10116376,Medical Incident,12/29/2010,12/29/2010,12/29/2010 09:26:53 AM,12/29/2010 09:27:29 AM,12/29/2010 09:29:11 AM,12/29/2010 09:29:40 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/29/2010 09:35:09 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",103630087-84 -160410490,89,16016328,Medical Incident,02/10/2016,02/09/2016,02/10/2016 06:28:05 AM,02/10/2016 06:30:02 AM,02/10/2016 06:31:09 AM,02/10/2016 06:31:34 AM,02/10/2016 06:52:10 AM,02/10/2016 07:11:28 AM,02/10/2016 07:19:53 AM,Code 2 Transport,02/10/2016 08:26:08 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7813958668825, -122.417987996268)",160410490-89 -111360067,E06,11045189,Traffic Collision,05/16/2011,05/15/2011,05/16/2011 07:37:10 AM,05/16/2011 07:38:28 AM,05/16/2011 07:38:54 AM,05/16/2011 07:40:51 AM,05/16/2011 07:44:32 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 08:01:37 AM,CASTRO ST/MARKET ST,SF,94114,B05,6,5233,2,2,2,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",111360067-E06 -160550382,KM03,16021884,Medical Incident,02/24/2016,02/23/2016,02/24/2016 05:29:13 AM,02/24/2016 05:29:13 AM,02/24/2016 05:29:19 AM,02/24/2016 05:30:43 AM,02/24/2016 05:37:58 AM,02/24/2016 05:53:36 AM,02/24/2016 06:02:34 AM,Code 2 Transport,02/24/2016 06:33:04 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160550382-KM03 -160131707,KM04,16005184,Medical Incident,01/13/2016,01/13/2016,01/13/2016 12:09:57 PM,01/13/2016 12:11:38 PM,01/13/2016 12:12:07 PM,01/13/2016 12:12:07 PM,01/13/2016 12:18:34 PM,01/13/2016 12:51:23 PM,01/13/2016 01:11:37 PM,Code 2 Transport,01/13/2016 01:57:51 PM,500 Block of SCOTT ST,San Francisco,94117,B05,21,4136,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Hayes Valley,"(37.7747500421845, -122.435966327435)",160131707-KM04 -132410272,RA48,13081368,Traffic Collision,08/29/2013,08/29/2013,08/29/2013 06:00:34 PM,08/29/2013 06:01:39 PM,08/29/2013 06:02:05 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,04/25/2016 01:51:03 PM,PARIS ST/PERSIA AV,SF,94112,B03,43,6126,3,3,3,false,Potentially Life-Threatening,1,MEDIC,5,9,11,Excelsior,"(37.7223816672522, -122.434406708467)",132410272-RA48 -121530330,AM10,12050774,Medical Incident,06/01/2012,06/01/2012,06/01/2012 08:58:04 PM,06/01/2012 08:58:18 PM,06/01/2012 08:58:39 PM,06/01/2012 08:59:28 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 09:00:10 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",121530330-AM10 -130730234,E36,13024386,Medical Incident,03/14/2013,03/14/2013,03/14/2013 03:32:48 PM,03/14/2013 03:34:06 PM,03/14/2013 03:35:04 PM,03/14/2013 03:36:47 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 03:40:05 PM,11TH ST/MISSION ST,SF,94103,B02,36,5116,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",130730234-E36 -103430377,B10,10110015,Medical Incident,12/09/2010,12/09/2010,12/09/2010 08:32:16 PM,12/09/2010 08:33:49 PM,12/09/2010 08:34:07 PM,12/09/2010 08:35:07 PM,12/09/2010 08:38:43 PM,04/25/2016 02:07:12 PM,04/25/2016 02:07:12 PM,Other,12/09/2010 08:45:12 PM,"CALL BOX: ELLSWORTH ST/ALEMANY SB BL,SF",SF,94110,B06,32,5645,E,E,3,false,,1,CHIEF,2,6,9,Bernal Heights,"(37.7322713620509, -122.418897144818)",103430377-B10 -160792008,85,16031427,Medical Incident,03/19/2016,03/19/2016,03/19/2016 01:56:35 PM,03/19/2016 01:57:39 PM,03/19/2016 01:58:23 PM,03/19/2016 02:01:08 PM,03/19/2016 02:09:10 PM,03/19/2016 02:26:39 PM,03/19/2016 02:57:14 PM,Code 2 Transport,03/19/2016 03:43:32 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160792008-85 -131070156,E22,13035946,Medical Incident,04/17/2013,04/17/2013,04/17/2013 11:36:16 AM,04/17/2013 11:37:38 AM,04/17/2013 11:37:46 AM,04/17/2013 11:39:22 AM,04/17/2013 11:40:47 AM,04/25/2016 01:53:16 PM,04/25/2016 01:53:16 PM,No Merit,04/17/2013 12:17:42 PM,21ST AV/IRVING ST,SF,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.763467414062, -122.479266517798)",131070156-E22 -130080255,RS2,13002798,Structure Fire,01/08/2013,01/08/2013,01/08/2013 02:57:34 PM,01/08/2013 02:59:30 PM,01/08/2013 02:59:58 PM,01/08/2013 03:01:17 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,Other,01/08/2013 03:04:16 PM,1700 Block of 25TH ST,SF,94107,B10,37,2614,3,3,3,false,Alarm,1,RESCUE SQUAD,10,10,10,Potrero Hill,"(37.7523945846734, -122.396035863128)",130080255-RS2 -130210350,86,13007415,Medical Incident,01/21/2013,01/21/2013,01/21/2013 09:23:00 PM,01/21/2013 09:26:39 PM,01/21/2013 09:26:51 PM,01/21/2013 09:27:13 PM,01/21/2013 09:35:25 PM,01/21/2013 10:03:21 PM,01/21/2013 10:12:14 PM,Code 2 Transport,01/21/2013 10:42:00 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",130210350-86 -123050363,E03,12101331,Medical Incident,10/31/2012,10/31/2012,10/31/2012 04:48:44 PM,10/31/2012 04:49:03 PM,10/31/2012 04:50:32 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 04:56:40 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",123050363-E03 -122760108,E11,12091057,Medical Incident,10/02/2012,10/02/2012,10/02/2012 09:11:20 AM,10/02/2012 09:12:04 AM,10/02/2012 09:12:15 AM,04/25/2016 01:56:30 PM,10/02/2012 09:16:49 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 09:31:16 AM,300 Block of FAIR OAKS ST,SF,94110,B06,11,5524,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Mission,"(37.7511121804335, -122.423840159589)",122760108-E11 -102250153,E28,10070831,Medical Incident,08/13/2010,08/13/2010,08/13/2010 01:16:20 PM,08/13/2010 01:17:04 PM,08/13/2010 01:17:15 PM,08/13/2010 01:17:46 PM,08/13/2010 01:19:15 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 01:31:50 PM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.804809171271, -122.406795529826)",102250153-E28 -110250347,89,11008339,Medical Incident,01/25/2011,01/25/2011,01/25/2011 05:27:09 PM,01/25/2011 05:27:34 PM,01/25/2011 05:28:34 PM,01/25/2011 05:29:07 PM,01/25/2011 05:36:11 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Patient Declined Transport,01/25/2011 06:30:17 PM,1700 Block of 38TH AVE,SF,94122,B08,18,7624,3,2,2,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7542694898327, -122.496966375985)",110250347-89 -102590358,T01,10081963,Alarms,09/16/2010,09/16/2010,09/16/2010 08:00:15 PM,09/16/2010 08:01:06 PM,09/16/2010 08:01:20 PM,09/16/2010 08:02:44 PM,09/16/2010 08:05:07 PM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 08:13:23 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",102590358-T01 -160591364,72,16023491,Medical Incident,02/28/2016,02/28/2016,02/28/2016 11:40:49 AM,02/28/2016 11:41:24 AM,02/28/2016 11:41:39 AM,02/28/2016 11:42:03 AM,02/28/2016 11:47:23 AM,02/28/2016 12:10:25 PM,02/28/2016 12:24:18 PM,Code 3 Transport,02/28/2016 01:22:26 PM,0 Block of OSCEOLA LN,San Francisco,94124,B10,17,6637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",160591364-72 -122960201,E36,12098162,Medical Incident,10/22/2012,10/22/2012,10/22/2012 01:38:50 PM,10/22/2012 01:40:13 PM,10/22/2012 01:40:29 PM,10/22/2012 01:41:40 PM,10/22/2012 01:45:13 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 01:45:36 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122960201-E36 -122430189,T08,12080365,Structure Fire,08/30/2012,08/30/2012,08/30/2012 02:25:47 PM,08/30/2012 02:25:47 PM,08/30/2012 02:26:03 PM,08/30/2012 02:26:41 PM,08/30/2012 02:28:52 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Fire,08/30/2012 02:29:20 PM,7TH ST/BRYANT ST,SF,94103,B03,8,2311,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7742810407569, -122.404748493756)",122430189-T08 -160214104,64,16008589,Medical Incident,01/21/2016,01/21/2016,01/21/2016 10:59:16 PM,01/21/2016 10:59:57 PM,01/21/2016 11:00:17 PM,01/21/2016 11:00:34 PM,01/21/2016 11:03:07 PM,01/21/2016 11:09:46 PM,01/21/2016 11:23:34 PM,Code 2 Transport,01/22/2016 12:07:50 AM,TAYLOR ST/OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",160214104-64 -120770057,E03,12025397,Medical Incident,03/17/2012,03/16/2012,03/17/2012 05:15:33 AM,03/17/2012 05:18:11 AM,03/17/2012 05:18:49 AM,03/17/2012 05:20:14 AM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,04/25/2016 01:59:38 PM,Other,03/17/2012 05:29:32 AM,1500 Block of CALIFORNIA ST,SF,94109,B04,41,1635,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",120770057-E03 -120700031,KM07,12023134,Medical Incident,03/10/2012,03/09/2012,03/10/2012 02:14:00 AM,03/10/2012 02:15:45 AM,03/10/2012 02:17:33 AM,03/10/2012 02:18:30 AM,03/10/2012 02:30:45 AM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Against Medical Advice,03/10/2012 02:46:14 AM,700 Block of HARRISON ST,SF,94107,B03,8,2216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",120700031-KM07 -140420310,77,14014383,Medical Incident,02/11/2014,02/11/2014,02/11/2014 06:37:42 PM,02/11/2014 06:38:59 PM,02/11/2014 06:49:32 PM,02/11/2014 06:49:37 PM,02/11/2014 06:53:38 PM,02/11/2014 07:06:42 PM,02/11/2014 07:17:04 PM,Code 2 Transport,02/11/2014 07:39:57 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7829058754034, -122.40679650522)",140420310-77 -160633299,AM10,16025221,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:28:03 PM,03/03/2016 07:29:21 PM,03/03/2016 07:30:55 PM,03/03/2016 07:35:21 PM,03/03/2016 07:44:14 PM,03/03/2016 07:58:22 PM,03/03/2016 08:12:28 PM,Code 2 Transport,03/03/2016 08:39:47 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B01,13,1133,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160633299-AM10 -160220137,78,16008619,Medical Incident,01/22/2016,01/21/2016,01/22/2016 01:16:20 AM,01/22/2016 01:16:37 AM,01/22/2016 01:18:11 AM,01/22/2016 01:18:39 AM,01/22/2016 01:21:21 AM,01/22/2016 01:42:44 AM,01/22/2016 02:04:08 AM,Code 2 Transport,01/22/2016 02:43:20 AM,3900 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7812602215298, -122.461609339534)",160220137-78 -160751371,AM02,16029678,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:11:59 AM,03/15/2016 11:17:44 AM,03/15/2016 11:18:25 AM,03/15/2016 11:20:19 AM,03/15/2016 11:30:41 AM,03/15/2016 11:53:10 AM,03/15/2016 12:13:05 PM,Code 2 Transport,03/15/2016 12:48:34 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160751371-AM02 -160081653,65,16003222,Medical Incident,01/08/2016,01/08/2016,01/08/2016 12:18:56 PM,01/08/2016 12:19:54 PM,01/08/2016 12:20:57 PM,01/08/2016 12:21:06 PM,01/08/2016 12:29:35 PM,01/08/2016 12:44:03 PM,01/08/2016 01:04:52 PM,Code 2 Transport,01/08/2016 01:52:32 PM,2400 Block of 33RD AVE,San Francisco,94116,B08,18,7546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7414530173202, -122.4906959863)",160081653-65 -132850349,E18,13097098,Medical Incident,10/12/2013,10/12/2013,10/12/2013 10:25:38 PM,10/12/2013 10:26:13 PM,10/12/2013 10:26:31 PM,10/12/2013 10:27:53 PM,10/12/2013 10:31:15 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/12/2013 10:47:35 PM,1500 Block of 29TH AVE,SF,94122,B08,18,7514,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.758430206182, -122.487445223679)",132850349-E18 -131690266,T11,13057438,Structure Fire,06/18/2013,06/18/2013,06/18/2013 03:05:05 PM,06/18/2013 03:05:05 PM,06/18/2013 03:05:17 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 03:05:53 PM,24TH ST/CHURCH ST,SF,94114,B06,11,5523,3,3,3,false,Alarm,1,TRUCK,2,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",131690266-T11 -131490006,E36,13050370,Medical Incident,05/29/2013,05/28/2013,05/29/2013 12:26:50 AM,05/29/2013 12:27:54 AM,05/29/2013 12:28:14 AM,05/29/2013 12:29:24 AM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/29/2013 12:40:09 AM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,2,2,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",131490006-E36 -132410354,T03,13081446,Alarms,08/29/2013,08/29/2013,08/29/2013 10:24:22 PM,08/29/2013 10:25:48 PM,08/29/2013 10:26:06 PM,08/29/2013 10:27:26 PM,08/29/2013 10:29:36 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/29/2013 10:34:51 PM,600 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,false,Alarm,1,TRUCK,1,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",132410354-T03 -102370376,61,10074879,Medical Incident,08/25/2010,08/25/2010,08/25/2010 08:24:25 PM,08/25/2010 08:25:51 PM,08/25/2010 08:29:09 PM,08/25/2010 08:30:23 PM,08/25/2010 08:34:33 PM,08/25/2010 08:47:01 PM,08/25/2010 09:03:43 PM,Code 2 Transport,08/25/2010 09:31:58 PM,GOLDEN GATE AV/LARKIN ST,SF,94102,B02,3,1644,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",102370376-61 -160583135,KM11,16023258,Medical Incident,02/27/2016,02/27/2016,02/27/2016 07:13:52 PM,02/27/2016 07:14:26 PM,02/27/2016 07:16:19 PM,02/27/2016 07:17:03 PM,02/27/2016 07:21:51 PM,02/27/2016 07:38:31 PM,02/27/2016 08:11:00 PM,Code 2 Transport,02/27/2016 08:31:08 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160583135-KM11 -160443991,72,16017917,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:37:57 PM,02/13/2016 11:38:59 PM,02/13/2016 11:39:12 PM,02/13/2016 11:39:21 PM,02/13/2016 11:42:52 PM,02/14/2016 12:02:32 AM,02/14/2016 12:17:08 AM,Code 2 Transport,02/14/2016 01:01:14 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160443991-72 -102250030,E03,10070727,Medical Incident,08/13/2010,08/12/2010,08/13/2010 02:56:37 AM,08/13/2010 02:57:00 AM,08/13/2010 02:57:23 AM,08/13/2010 02:59:03 AM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 03:00:08 AM,EDDY ST/JONES ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",102250030-E03 -121410040,E15,12046724,Structure Fire,05/20/2012,05/19/2012,05/20/2012 02:46:48 AM,05/20/2012 02:47:24 AM,05/20/2012 02:47:36 AM,05/20/2012 02:54:44 AM,05/20/2012 02:58:29 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 03:06:22 AM,100 Block of SURREY ST,SF,94131,B06,26,8156,3,3,3,true,Fire,1,ENGINE,9,6,8,Glen Park,"(37.7359859928405, -122.434770054605)",121410040-E15 -160313405,72,16012340,Medical Incident,01/31/2016,01/31/2016,01/31/2016 08:42:53 PM,01/31/2016 08:44:47 PM,01/31/2016 08:45:42 PM,01/31/2016 08:46:08 PM,01/31/2016 08:51:22 PM,01/31/2016 09:08:47 PM,01/31/2016 09:22:42 PM,Code 2 Transport,01/31/2016 10:01:08 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160313405-72 -160151919,86,16006000,Medical Incident,01/15/2016,01/15/2016,01/15/2016 01:21:45 PM,01/15/2016 01:23:27 PM,01/15/2016 01:23:41 PM,01/15/2016 01:24:44 PM,01/15/2016 01:29:16 PM,01/15/2016 01:44:14 PM,01/15/2016 02:08:08 PM,Code 2 Transport,01/15/2016 02:54:00 PM,1700 Block of BANCROFT AVE,San Francisco,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7268724745843, -122.394902680548)",160151919-86 -122730344,94,12090184,Medical Incident,09/29/2012,09/29/2012,09/29/2012 09:19:11 PM,09/29/2012 09:20:54 PM,09/29/2012 09:21:02 PM,09/29/2012 09:21:11 PM,09/29/2012 09:24:53 PM,09/29/2012 09:42:40 PM,09/29/2012 09:50:18 PM,Code 2 Transport,09/29/2012 10:09:18 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",122730344-94 -160813646,88,16032359,Medical Incident,03/21/2016,03/21/2016,03/21/2016 09:15:00 PM,03/21/2016 09:15:00 PM,03/21/2016 09:21:57 PM,03/21/2016 09:22:09 PM,03/21/2016 09:42:36 PM,03/21/2016 09:42:39 PM,03/21/2016 10:13:22 PM,Other,03/21/2016 11:01:00 PM,6TH AV/GEARY BL,San Francisco,94118,B07,31,7127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Inner Richmond,"(37.7810189207549, -122.464279168827)",160813646-88 -123590033,E34,12120049,Structure Fire,12/24/2012,12/23/2012,12/24/2012 02:36:39 AM,12/24/2012 02:36:39 AM,12/24/2012 02:37:03 AM,04/25/2016 01:55:09 PM,12/24/2012 02:38:21 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Fire,12/24/2012 02:38:56 AM,41ST AV/GEARY BL,SF,94121,B07,34,7264,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7795143345145, -122.501887212899)",123590033-E34 -140090075,E17,14003055,Medical Incident,01/09/2014,01/08/2014,01/09/2014 07:32:30 AM,01/09/2014 07:33:04 AM,01/09/2014 07:33:52 AM,01/09/2014 07:35:47 AM,01/09/2014 07:37:43 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/09/2014 07:46:28 AM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316639968394, -122.38316735998)",140090075-E17 -120290012,E08,12009594,Medical Incident,01/29/2012,01/28/2012,01/29/2012 12:58:17 AM,01/29/2012 12:58:54 AM,01/29/2012 12:59:15 AM,01/29/2012 01:01:01 AM,01/29/2012 01:02:07 AM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/29/2012 01:10:52 AM,300 Block of RITCH ST,SF,94107,B03,8,2173,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790063172282, -122.394112632975)",120290012-E08 -111330191,E19,11044071,Medical Incident,05/13/2011,05/13/2011,05/13/2011 02:22:57 PM,05/13/2011 02:23:42 PM,05/13/2011 02:24:26 PM,05/13/2011 02:27:46 PM,05/13/2011 02:31:33 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 02:46:03 PM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",111330191-E19 -120470183,AM12,12015637,Traffic Collision,02/16/2012,02/16/2012,02/16/2012 01:54:18 PM,02/16/2012 01:55:46 PM,02/16/2012 01:57:09 PM,02/16/2012 01:58:00 PM,04/25/2016 02:00:06 PM,04/25/2016 02:00:06 PM,04/25/2016 02:00:06 PM,No Merit,02/16/2012 02:03:26 PM,200 Block of 25TH AVE,SF,94121,B03,29,2436,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7848173202648, -122.48501034869)",120470183-AM12 -112650317,E13,11087607,Structure Fire,09/22/2011,09/22/2011,09/22/2011 05:05:38 PM,09/22/2011 05:05:38 PM,09/22/2011 05:06:02 PM,09/22/2011 05:07:08 PM,09/22/2011 05:09:21 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,Other,09/22/2011 05:09:52 PM,MARKET ST/STEUART ST,SF,94105,B01,13,1112,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",112650317-E13 -111360297,94,11045376,Medical Incident,05/16/2011,05/16/2011,05/16/2011 07:11:17 PM,05/16/2011 07:11:53 PM,05/16/2011 07:12:02 PM,05/16/2011 07:12:17 PM,05/16/2011 07:16:09 PM,05/16/2011 07:33:40 PM,05/16/2011 07:49:51 PM,Code 2 Transport,05/16/2011 08:15:24 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",111360297-94 -131520134,E01,13051454,Alarms,06/01/2013,06/01/2013,06/01/2013 10:37:41 AM,06/01/2013 10:39:06 AM,06/01/2013 10:39:22 AM,06/01/2013 10:39:32 AM,06/01/2013 10:41:44 AM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 10:47:52 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131520134-E01 -132860331,T05,13097404,Structure Fire,10/13/2013,10/13/2013,10/13/2013 07:40:08 PM,10/13/2013 07:41:01 PM,10/13/2013 07:41:15 PM,10/13/2013 07:42:10 PM,10/13/2013 07:45:26 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/13/2013 07:52:49 PM,900 Block of POLK ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,7,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",132860331-T05 -120260375,E16,12008883,Medical Incident,01/26/2012,01/26/2012,01/26/2012 10:58:09 PM,01/26/2012 10:59:51 PM,01/26/2012 11:00:35 PM,01/26/2012 11:02:21 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,Other,01/26/2012 11:03:18 PM,3200 Block of WEBSTER ST,SF,94123,B04,16,3461,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.8008030512791, -122.43448682618)",120260375-E16 -132110156,E07,13071349,Outside Fire,07/30/2013,07/30/2013,07/30/2013 12:27:41 PM,07/30/2013 12:31:23 PM,07/30/2013 12:32:10 PM,07/30/2013 12:33:21 PM,07/30/2013 12:35:02 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/30/2013 12:39:55 PM,CAPP ST/20TH ST,SF,94110,B06,7,5433,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7586982725851, -122.417964706277)",132110156-E07 -160100728,62,16003947,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:41:01 AM,01/10/2016 07:42:28 AM,01/10/2016 07:43:23 AM,01/10/2016 07:44:30 AM,01/10/2016 08:01:20 AM,01/10/2016 08:13:24 AM,01/10/2016 08:32:53 AM,Code 2 Transport,01/10/2016 08:58:57 AM,0 Block of MARVEL CT,San Francisco,94121,B07,14,7246,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7829456223596, -122.492889548856)",160100728-62 -130660200,94,13022054,Medical Incident,03/07/2013,03/07/2013,03/07/2013 02:03:43 PM,03/07/2013 02:05:21 PM,03/07/2013 02:05:29 PM,03/07/2013 02:07:10 PM,03/07/2013 02:12:42 PM,03/07/2013 02:26:03 PM,03/07/2013 02:41:53 PM,Code 2 Transport,03/07/2013 03:05:02 PM,HARRIET ST/HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7793184597995, -122.407691082986)",130660200-94 -102860213,E29,10091146,Outside Fire,10/13/2010,10/13/2010,10/13/2010 01:15:42 PM,10/13/2010 01:17:09 PM,10/13/2010 01:18:38 PM,10/13/2010 01:19:45 PM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Other,10/13/2010 01:22:24 PM,700 Block of THE EMBARCADERO,SF,94111,B01,13,917,3,3,3,true,,1,ENGINE,5,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",102860213-E29 -131010227,86,13033982,Medical Incident,04/11/2013,04/11/2013,04/11/2013 02:23:16 PM,04/11/2013 02:24:25 PM,04/11/2013 02:24:50 PM,04/11/2013 02:25:11 PM,04/11/2013 02:46:10 PM,04/11/2013 02:54:32 PM,04/11/2013 03:57:58 PM,Code 2 Transport,04/11/2013 03:59:53 PM,1200 Block of MARINER DR,TI,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",131010227-86 -160330833,53,16012889,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:48:09 AM,02/02/2016 08:49:11 AM,02/02/2016 08:52:45 AM,02/02/2016 08:53:11 AM,02/02/2016 08:59:04 AM,02/02/2016 09:09:52 AM,02/02/2016 09:23:15 AM,Code 2 Transport,02/02/2016 10:06:11 AM,1ST ST/MARKET ST,San Francisco,94105,B03,13,2143,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",160330833-53 -112850399,E03,11094567,Medical Incident,10/12/2011,10/12/2011,10/12/2011 09:21:37 PM,10/12/2011 09:21:49 PM,10/12/2011 09:22:33 PM,10/12/2011 09:24:07 PM,10/12/2011 09:25:11 PM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Medical Examiner,10/12/2011 09:41:44 PM,500 Block of HYDE ST,SF,94109,B04,3,1556,3,E,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7855599708748, -122.416226912302)",112850399-E03 -130390378,94,13013475,Structure Fire,02/08/2013,02/08/2013,02/08/2013 10:16:16 PM,02/08/2013 10:17:30 PM,02/08/2013 10:18:36 PM,02/08/2013 10:19:15 PM,02/08/2013 10:27:00 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/08/2013 10:31:16 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,MEDIC,9,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",130390378-94 -111500005,E05,11049549,Medical Incident,05/30/2011,05/29/2011,05/30/2011 12:11:21 AM,05/30/2011 12:12:16 AM,05/30/2011 12:13:01 AM,05/30/2011 12:15:08 AM,05/30/2011 12:17:58 AM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 12:35:10 AM,2300 Block of PINE ST,SF,94115,B04,38,3543,3,2,2,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7878999566909, -122.434481068996)",111500005-E05 -103090069,E03,10098950,Medical Incident,11/05/2010,11/04/2010,11/05/2010 07:15:01 AM,11/05/2010 07:15:35 AM,11/05/2010 07:16:00 AM,11/05/2010 07:21:39 AM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Other,11/05/2010 07:23:41 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,1,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",103090069-E03 -103620011,E38,10115971,Traffic Collision,12/28/2010,12/27/2010,12/28/2010 12:39:54 AM,12/28/2010 12:42:08 AM,12/28/2010 12:43:44 AM,12/28/2010 12:45:43 AM,12/28/2010 12:47:03 AM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,12/28/2010 01:08:56 AM,POST ST/LAGUNA ST,SF,94109,B04,38,3364,2,2,2,false,,1,ENGINE,1,4,5,Japantown,"(37.7857844875918, -122.428148186864)",103620011-E38 -132270332,E26,13076727,Outside Fire,08/15/2013,08/15/2013,08/15/2013 08:13:05 PM,08/15/2013 08:20:17 PM,08/15/2013 08:20:20 PM,08/15/2013 08:21:52 PM,08/15/2013 08:28:22 PM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Fire,08/15/2013 08:39:44 PM,0 Block of ELK ST,SF,94131,B06,26,8175,3,3,3,true,Fire,1,ENGINE,1,6,8,Glen Park,"(37.7365430606257, -122.439775823336)",132270332-E26 -100870031,58,10026831,Other,03/28/2010,03/27/2010,03/28/2010 02:03:35 AM,03/28/2010 02:07:10 AM,03/28/2010 02:09:09 AM,03/28/2010 03:40:14 AM,03/28/2010 03:46:44 AM,03/28/2010 04:05:41 AM,03/28/2010 04:16:22 AM,Other,03/28/2010 04:49:23 AM,200 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,true,,1,MEDIC,17,5,5,Haight Ashbury,"(37.7718353453919, -122.443861893304)",100870031-58 -160680748,E40,16027031,Medical Incident,03/08/2016,03/08/2016,03/08/2016 08:32:04 AM,03/08/2016 08:33:29 AM,03/08/2016 08:35:53 AM,03/08/2016 08:37:12 AM,03/08/2016 08:38:46 AM,03/08/2016 08:53:33 AM,03/08/2016 09:30:08 AM,Code 2 Transport,03/08/2016 09:47:58 AM,2400 Block of 19TH AVE,San Francisco,94116,B08,40,7415,3,E,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7421133651274, -122.475733220027)",160680748-E40 -140280326,E43,14009651,Outside Fire,01/28/2014,01/28/2014,01/28/2014 06:35:19 PM,01/28/2014 06:35:48 PM,01/28/2014 06:36:51 PM,04/25/2016 01:48:29 PM,01/28/2014 06:40:47 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/28/2014 06:44:33 PM,RUSSIA AV/MISSION ST,SF,94112,B09,43,6121,3,3,3,true,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7215750031455, -122.437149523285)",140280326-E43 -160740203,65,16029177,Medical Incident,03/14/2016,03/13/2016,03/14/2016 02:24:29 AM,03/14/2016 02:26:19 AM,03/14/2016 02:26:45 AM,03/14/2016 02:27:36 AM,03/14/2016 02:35:23 AM,03/14/2016 02:44:54 AM,03/14/2016 02:57:42 AM,Code 2 Transport,03/14/2016 03:27:24 AM,3400 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6317,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Visitacion Valley,"(37.7181958836059, -122.400271809821)",160740203-65 -111870135,E14,11061781,Medical Incident,07/06/2011,07/06/2011,07/06/2011 10:49:07 AM,07/06/2011 10:50:58 AM,07/06/2011 10:51:39 AM,07/06/2011 10:52:37 AM,07/06/2011 10:54:33 AM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 11:11:39 AM,6300 Block of CALIFORNIA ST,SF,94121,B07,14,7214,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7838030202773, -122.485545885783)",111870135-E14 -123010154,RC3,12099767,HazMat,10/27/2012,10/27/2012,10/27/2012 11:37:06 AM,10/27/2012 11:40:26 AM,10/27/2012 11:43:15 AM,10/27/2012 11:45:31 AM,10/27/2012 11:49:20 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:54:09 PM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Alarm,1,RESCUE CAPTAIN,4,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",123010154-RC3 -160610927,54,16024238,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:30:41 AM,03/01/2016 09:32:52 AM,03/01/2016 09:33:35 AM,03/01/2016 09:33:46 AM,03/01/2016 09:50:52 AM,03/01/2016 10:04:51 AM,03/01/2016 10:33:32 AM,Code 2 Transport,03/01/2016 11:09:26 AM,3100 Block of 20TH AVE,San Francisco,94132,B08,19,8862,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7306107022051, -122.475862776859)",160610927-54 -111860110,E41,11061410,Medical Incident,07/05/2011,07/05/2011,07/05/2011 08:17:53 AM,07/05/2011 08:18:20 AM,07/05/2011 08:18:36 AM,07/05/2011 08:20:16 AM,07/05/2011 08:21:51 AM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/05/2011 08:36:51 AM,900 Block of JONES ST,SF,94109,B01,41,1464,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7899875725685, -122.413890484978)",111860110-E41 -160431662,52,16017291,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:37:03 PM,02/12/2016 12:39:22 PM,02/12/2016 12:41:59 PM,02/12/2016 12:42:11 PM,02/12/2016 12:45:08 PM,02/12/2016 12:50:23 PM,02/12/2016 12:50:23 PM,Code 2 Transport,02/12/2016 12:55:38 PM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",160431662-52 -132030158,E36,13068746,Medical Incident,07/22/2013,07/22/2013,07/22/2013 12:09:31 PM,07/22/2013 12:09:32 PM,07/22/2013 12:09:32 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,No Merit,07/22/2013 12:13:40 PM,OAK ST/GOUGH ST,SF,94102,B02,36,3266,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7750206954016, -122.42259804367)",132030158-E36 -113160033,88,11104888,Medical Incident,11/12/2011,11/11/2011,11/12/2011 02:51:13 AM,11/12/2011 02:52:33 AM,11/12/2011 02:52:54 AM,11/12/2011 02:53:22 AM,11/12/2011 02:58:52 AM,11/12/2011 03:11:36 AM,11/12/2011 03:18:05 AM,Code 2 Transport,11/12/2011 03:28:41 AM,2300 Block of 16TH ST,SF,94103,B02,29,5241,3,3,3,true,,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",113160033-88 -160050389,55,16001856,Medical Incident,01/05/2016,01/04/2016,01/05/2016 05:08:32 AM,01/05/2016 05:10:00 AM,01/05/2016 05:11:34 AM,01/05/2016 05:12:09 AM,01/05/2016 05:31:49 AM,01/05/2016 05:31:51 AM,01/05/2016 05:31:59 AM,Code 2 Transport,01/05/2016 05:50:50 AM,400 Block of LYON ST,San Francisco,94117,B05,21,4351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7748184226764, -122.442918467854)",160050389-55 -131720186,77,13058387,Traffic Collision,06/21/2013,06/21/2013,06/21/2013 02:37:22 PM,06/21/2013 02:40:17 PM,06/21/2013 02:41:50 PM,06/21/2013 02:44:37 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,Other,06/21/2013 02:49:40 PM,300 Block of JEFFERSON ST,SF,94133,B01,28,1524,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,3,North Beach,"(37.8081679785862, -122.416634717802)",131720186-77 -133160213,86,13107458,Medical Incident,11/12/2013,11/12/2013,11/12/2013 02:45:24 PM,11/12/2013 02:46:34 PM,11/12/2013 02:52:39 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 02:57:20 PM,HARRISON ST/MAIN ST,SF,94105,B03,35,2113,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.78813450058, -122.390319483833)",133160213-86 -112430189,96,11080132,Medical Incident,08/31/2011,08/31/2011,08/31/2011 12:32:59 PM,08/31/2011 12:33:41 PM,08/31/2011 12:34:26 PM,08/31/2011 12:34:37 PM,08/31/2011 12:38:41 PM,08/31/2011 12:53:39 PM,08/31/2011 01:00:29 PM,Code 3 Transport,08/31/2011 01:31:18 PM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,3,3,3,true,,1,MEDIC,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",112430189-96 -160723732,AM20,16028821,Medical Incident,03/12/2016,03/12/2016,03/12/2016 11:48:33 PM,03/12/2016 11:49:38 PM,03/12/2016 11:49:58 PM,03/12/2016 11:50:22 PM,03/13/2016 12:09:23 AM,03/13/2016 12:09:26 AM,03/13/2016 12:26:21 AM,Code 2 Transport,03/13/2016 12:54:43 AM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160723732-AM20 -131850239,RS2,13063101,Structure Fire,07/04/2013,07/04/2013,07/04/2013 04:19:14 PM,07/04/2013 04:19:37 PM,07/04/2013 04:20:08 PM,07/04/2013 04:21:18 PM,07/04/2013 04:25:49 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/04/2013 04:29:10 PM,600 Block of PERALTA AVE,SF,94110,B10,32,5722,A,A,2,false,Alarm,1,RESCUE SQUAD,4,10,9,Bernal Heights,"(37.7430226018947, -122.40865632531)",131850239-RS2 -122100065,T02,12069668,Citizen Assist / Service Call,07/28/2012,07/27/2012,07/28/2012 04:40:06 AM,07/28/2012 04:43:19 AM,07/28/2012 04:43:28 AM,07/28/2012 04:46:14 AM,07/28/2012 04:49:03 AM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 05:02:06 AM,900 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7930991715599, -122.408788273382)",122100065-T02 -160610560,64,16024201,Traffic Collision,03/01/2016,02/29/2016,03/01/2016 07:26:09 AM,03/01/2016 07:26:59 AM,03/01/2016 07:27:25 AM,03/01/2016 07:27:52 AM,03/01/2016 07:38:56 AM,03/01/2016 07:56:33 AM,03/01/2016 08:41:28 AM,Code 2 Transport,03/01/2016 09:11:37 AM,28TH AV/FULTON ST,San Francisco,94121,B07,14,7223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7724230771545, -122.487398288282)",160610560-64 -160480305,64,16019214,Medical Incident,02/17/2016,02/16/2016,02/17/2016 03:53:46 AM,02/17/2016 03:53:46 AM,02/17/2016 03:54:49 AM,02/17/2016 03:55:40 AM,02/17/2016 04:00:23 AM,02/17/2016 04:16:48 AM,02/17/2016 04:30:32 AM,Code 2 Transport,02/17/2016 05:21:34 AM,1000 Block of POST ST,San Francisco,94109,B02,3,1641,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",160480305-64 -160482085,79,16019367,Medical Incident,02/17/2016,02/17/2016,02/17/2016 01:47:53 PM,02/17/2016 01:49:08 PM,02/17/2016 01:51:17 PM,02/17/2016 01:51:17 PM,02/17/2016 01:54:29 PM,02/17/2016 02:06:22 PM,02/17/2016 02:14:18 PM,Code 2 Transport,02/17/2016 02:43:12 PM,2700 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7881185452243, -122.439595812264)",160482085-79 -160010660,61,16000134,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:29:19 AM,01/01/2016 02:31:29 AM,01/01/2016 02:32:03 AM,01/01/2016 02:32:25 AM,01/01/2016 02:41:35 AM,01/01/2016 02:55:11 AM,01/01/2016 03:15:57 AM,Code 2 Transport,01/01/2016 03:46:28 AM,0 Block of YACHT RD,San Francisco,94123,B04,16,4215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,2,Marina,"(37.8067582085576, -122.446916219003)",160010660-61 -160342492,58,16013486,Medical Incident,02/03/2016,02/03/2016,02/03/2016 04:41:27 PM,02/03/2016 04:42:37 PM,02/03/2016 04:43:35 PM,02/03/2016 04:43:44 PM,02/03/2016 04:51:38 PM,02/03/2016 05:04:20 PM,02/03/2016 05:16:56 PM,Code 2 Transport,02/03/2016 05:57:38 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3111,2,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160342492-58 -160543242,62,16021729,Medical Incident,02/23/2016,02/23/2016,02/23/2016 06:26:19 PM,02/23/2016 06:28:15 PM,02/23/2016 06:28:37 PM,02/23/2016 06:28:43 PM,02/23/2016 06:33:05 PM,02/23/2016 06:44:20 PM,02/23/2016 07:01:28 PM,Code 2 Transport,02/23/2016 07:45:34 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160543242-62 -112370384,E16,11078362,Medical Incident,08/25/2011,08/25/2011,08/25/2011 09:55:59 PM,08/25/2011 09:57:24 PM,08/25/2011 09:57:59 PM,08/25/2011 09:59:41 PM,08/25/2011 10:01:24 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 10:06:28 PM,0 Block of RICHARDSON AVE,SF,94123,B04,16,4223,E,E,3,true,,1,ENGINE,2,4,2,Marina,"(37.7992803030821, -122.445320477419)",112370384-E16 -160670663,53,16026640,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:54:36 AM,03/07/2016 08:54:36 AM,03/07/2016 08:54:36 AM,03/07/2016 08:54:36 AM,03/07/2016 08:54:36 AM,03/07/2016 07:55:00 AM,03/07/2016 08:25:00 AM,Code 2 Transport,03/07/2016 09:14:56 AM,100 Block of FRANCISCO ST,San Francisco,94133,B99,28,1255,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054738067872, -122.407570127181)",160670663-53 -160021349,KM09,16000713,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:55:10 AM,01/02/2016 11:57:45 AM,01/02/2016 11:58:31 AM,01/02/2016 12:01:19 PM,01/02/2016 12:04:05 PM,01/02/2016 12:21:09 PM,01/02/2016 12:35:58 PM,Code 2 Transport,01/02/2016 01:03:13 PM,2000 Block of JEFFERSON ST,San Francisco,94123,B04,16,4216,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8043756821194, -122.446289340263)",160021349-KM09 -110150103,E29,11004933,Medical Incident,01/15/2011,01/15/2011,01/15/2011 08:54:46 AM,01/15/2011 08:55:31 AM,01/15/2011 08:56:02 AM,01/15/2011 08:56:55 AM,01/15/2011 08:58:49 AM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 09:07:05 AM,TREAT AV/ALABAMA ST,SF,94103,B02,29,5221,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7675383433068, -122.412610839251)",110150103-E29 -160040201,KM03,16001439,Medical Incident,01/04/2016,01/03/2016,01/04/2016 02:08:14 AM,01/04/2016 02:10:52 AM,01/04/2016 02:11:00 AM,01/04/2016 02:11:24 AM,01/04/2016 02:19:10 AM,01/04/2016 02:21:10 AM,01/04/2016 02:44:44 AM,Code 2 Transport,01/04/2016 03:10:50 AM,3300 Block of BALBOA ST,San Francisco,94121,B07,34,7254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.775892549655, -122.49464338851)",160040201-KM03 -160380527,AM10,16015072,Medical Incident,02/07/2016,02/06/2016,02/07/2016 03:07:27 AM,02/07/2016 03:07:49 AM,02/07/2016 03:08:03 AM,02/07/2016 03:08:30 AM,02/07/2016 03:11:58 AM,02/07/2016 03:26:37 AM,02/07/2016 03:34:47 AM,Code 2 Transport,02/07/2016 03:54:42 AM,1000 Block of JACKSON ST,San Francisco,94133,B01,2,1443,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7954402184143, -122.411728616731)",160380527-AM10 -131010160,E03,13033926,Medical Incident,04/11/2013,04/11/2013,04/11/2013 11:22:24 AM,04/11/2013 11:23:02 AM,04/11/2013 11:23:20 AM,04/11/2013 11:23:46 AM,04/11/2013 11:26:40 AM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/11/2013 11:30:57 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",131010160-E03 -131770367,77,13060241,Structure Fire,06/26/2013,06/26/2013,06/26/2013 09:23:21 PM,06/26/2013 09:25:00 PM,06/26/2013 09:25:29 PM,06/26/2013 09:25:43 PM,06/26/2013 09:28:08 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 09:31:38 PM,2400 Block of LAKE ST,SF,94121,B07,14,7217,3,3,3,true,Alarm,1,MEDIC,1,7,1,Outer Richmond,"(37.7856667322606, -122.485681909658)",131770367-77 -112550351,E11,11084261,Medical Incident,09/12/2011,09/12/2011,09/12/2011 09:42:25 PM,09/12/2011 09:44:18 PM,09/12/2011 09:44:39 PM,09/12/2011 09:46:06 PM,09/12/2011 09:47:35 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Other,09/12/2011 09:54:53 PM,3000 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.748597504437, -122.418163001869)",112550351-E11 -130940272,84,13031531,Medical Incident,04/04/2013,04/04/2013,04/04/2013 05:04:46 PM,04/04/2013 05:06:28 PM,04/04/2013 05:06:57 PM,04/04/2013 05:07:08 PM,04/04/2013 05:10:23 PM,04/04/2013 05:31:48 PM,04/04/2013 05:58:17 PM,Code 2 Transport,04/04/2013 06:28:42 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130940272-84 -140150279,B03,14005211,Alarms,01/15/2014,01/15/2014,01/15/2014 04:55:32 PM,01/15/2014 04:56:55 PM,01/15/2014 04:57:12 PM,01/15/2014 04:58:23 PM,01/15/2014 05:03:58 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 05:04:02 PM,900 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7835699386918, -122.408421116922)",140150279-B03 -160350516,71,16013691,Medical Incident,02/04/2016,02/03/2016,02/04/2016 06:36:18 AM,02/04/2016 06:37:38 AM,02/04/2016 06:38:40 AM,02/04/2016 06:38:55 AM,02/04/2016 06:40:54 AM,02/04/2016 07:12:24 AM,02/04/2016 07:20:53 AM,Code 2 Transport,02/04/2016 08:11:11 AM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",160350516-71 -160851360,79,16033730,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:51:48 AM,03/25/2016 10:51:48 AM,03/25/2016 10:52:00 AM,03/25/2016 10:52:35 AM,03/25/2016 11:01:31 AM,03/25/2016 11:13:30 AM,03/25/2016 11:51:23 AM,Code 2 Transport,03/25/2016 12:48:37 PM,3600 Block of BALBOA ST,San Francisco,94121,B07,34,7254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",160851360-79 -122740356,58,12090541,Medical Incident,09/30/2012,09/30/2012,09/30/2012 09:02:03 PM,09/30/2012 09:03:53 PM,09/30/2012 09:04:19 PM,09/30/2012 09:04:59 PM,09/30/2012 09:10:58 PM,09/30/2012 09:32:54 PM,09/30/2012 10:05:05 PM,Code 2 Transport,09/30/2012 10:13:43 PM,100 Block of PUTNAM ST,SF,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7375380639723, -122.410869557896)",122740356-58 -122810009,E14,12092846,Smoke Investigation (Outside),10/07/2012,10/06/2012,10/07/2012 12:32:58 AM,10/07/2012 12:35:13 AM,10/07/2012 12:35:37 AM,10/07/2012 12:37:27 AM,10/07/2012 12:39:36 AM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Fire,10/07/2012 12:45:26 AM,5400 Block of FULTON ST,SF,94121,B07,14,7224,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.772355745851, -122.490082156003)",122810009-E14 -121620115,E07,12053573,Medical Incident,06/10/2012,06/10/2012,06/10/2012 08:36:36 AM,06/10/2012 08:39:29 AM,06/10/2012 08:39:46 AM,06/10/2012 08:41:49 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 08:43:46 AM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",121620115-E07 -110440289,E15,11014711,Medical Incident,02/13/2011,02/13/2011,02/13/2011 06:06:46 PM,02/13/2011 06:07:41 PM,02/13/2011 06:07:55 PM,02/13/2011 06:08:49 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 06:11:54 PM,PERSIA AV/OCEAN AV,SF,94112,B09,43,6121,E,3,3,true,,1,ENGINE,4,9,11,Outer Mission,"(37.7237878477275, -122.436449314515)",110440289-E15 -102880382,E02,10092002,Medical Incident,10/15/2010,10/15/2010,10/15/2010 10:26:14 PM,10/15/2010 10:27:59 PM,10/15/2010 10:28:30 PM,10/15/2010 10:29:39 PM,10/15/2010 10:31:27 PM,04/25/2016 02:08:05 PM,04/25/2016 02:08:05 PM,Other,10/15/2010 10:42:57 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",102880382-E02 -110490336,E33,11016310,Medical Incident,02/18/2011,02/18/2011,02/18/2011 07:04:09 PM,02/18/2011 07:09:08 PM,02/18/2011 07:11:12 PM,02/18/2011 07:12:31 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 07:31:07 PM,200 Block of THRIFT ST,SF,94112,B09,33,8415,3,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7173776032909, -122.461431734706)",110490336-E33 -122060327,AP,12068615,Other,07/24/2012,07/24/2012,07/24/2012 08:13:16 PM,07/24/2012 08:13:16 PM,07/24/2012 08:13:16 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Fire,07/24/2012 08:13:34 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122060327-AP -140230088,E05,14007785,Alarms,01/23/2014,01/23/2014,01/23/2014 09:01:01 AM,01/23/2014 09:01:56 AM,01/23/2014 09:02:59 AM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/23/2014 09:04:04 AM,800 Block of ELLIS ST,SF,94109,B02,3,3115,,3,3,true,Alarm,1,ENGINE,4,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",140230088-E05 -131620365,E14,13055200,Medical Incident,06/11/2013,06/11/2013,06/11/2013 09:58:10 PM,06/11/2013 10:00:37 PM,06/11/2013 10:01:20 PM,06/11/2013 10:02:47 PM,06/11/2013 10:03:30 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/11/2013 10:11:43 PM,26TH AV/GEARY BL,SF,94121,B07,14,7213,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7800379523626, -122.485807574821)",131620365-E14 -121720012,89,12056963,Medical Incident,06/20/2012,06/19/2012,06/20/2012 12:50:25 AM,06/20/2012 12:50:32 AM,06/20/2012 12:52:39 AM,06/20/2012 12:52:51 AM,06/20/2012 01:00:37 AM,06/20/2012 01:13:54 AM,06/20/2012 01:51:02 AM,Code 2 Transport,06/20/2012 02:13:55 AM,1300 Block of 9TH AVE,SF,94122,B08,22,7334,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.763102976167, -122.466314668643)",121720012-89 -111250364,T15,11041512,Structure Fire,05/05/2011,05/05/2011,05/05/2011 09:59:28 PM,05/05/2011 09:59:29 PM,05/05/2011 09:59:40 PM,05/05/2011 10:00:44 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 10:02:58 PM,SAN JOSE AV/FARALLONES ST,SF,94112,B09,33,8324,3,3,3,false,,1,TRUCK,2,9,11,Oceanview/Merced/Ingleside,"(37.7141037637842, -122.452174082905)",111250364-T15 -160190112,76,16007443,Medical Incident,01/19/2016,01/18/2016,01/19/2016 12:50:19 AM,01/19/2016 12:50:51 AM,01/19/2016 12:51:24 AM,01/19/2016 12:51:57 AM,01/19/2016 01:15:26 AM,01/19/2016 01:34:02 AM,01/19/2016 01:37:42 AM,Code 2 Transport,01/19/2016 02:29:12 AM,2300 Block of 16TH ST,San Francisco,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",160190112-76 -131620170,E13,13055031,Medical Incident,06/11/2013,06/11/2013,06/11/2013 12:47:24 PM,06/11/2013 12:49:12 PM,06/11/2013 12:49:27 PM,06/11/2013 12:49:42 PM,06/11/2013 12:52:27 PM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/11/2013 01:06:25 PM,300 Block of VALLEJO ST,SF,94133,B01,13,1213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7992755571219, -122.403678525194)",131620170-E13 -103170251,83,10101664,Medical Incident,11/13/2010,11/13/2010,11/13/2010 04:27:33 PM,11/13/2010 04:29:50 PM,11/13/2010 04:30:40 PM,11/13/2010 04:31:15 PM,11/13/2010 04:42:13 PM,11/13/2010 04:51:40 PM,11/13/2010 05:06:58 PM,Code 2 Transport,11/13/2010 05:38:33 PM,100 Block of HAYES ST,SF,94102,B02,36,3166,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7773515638882, -122.418857320448)",103170251-83 -160270792,85,16010581,Medical Incident,01/27/2016,01/27/2016,01/27/2016 08:31:51 AM,01/27/2016 08:36:46 AM,01/27/2016 08:37:17 AM,01/27/2016 08:37:59 AM,01/27/2016 08:53:20 AM,01/27/2016 09:06:23 AM,01/27/2016 10:01:33 AM,Code 2 Transport,01/27/2016 10:07:27 AM,0 Block of JANSEN ST,San Francisco,94133,B01,28,1423,3,A,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.8022668069282, -122.41369753745)",160270792-85 -101690138,AP,10053305,Other,06/18/2010,06/18/2010,06/18/2010 12:08:39 PM,06/18/2010 12:08:40 PM,06/18/2010 12:08:40 PM,04/25/2016 03:22:42 PM,04/25/2016 03:22:42 PM,04/25/2016 03:22:42 PM,04/25/2016 03:22:42 PM,Fire,06/18/2010 12:08:49 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",101690138-AP -112030255,91,11067070,Medical Incident,07/22/2011,07/22/2011,07/22/2011 03:32:42 PM,07/22/2011 03:33:30 PM,07/22/2011 03:33:47 PM,07/22/2011 03:34:32 PM,07/22/2011 03:44:44 PM,07/22/2011 04:02:09 PM,07/22/2011 04:35:32 PM,Code 2 Transport,07/22/2011 04:50:14 PM,4400 Block of MISSION ST,SF,94112,B09,43,6116,3,3,3,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7269111586163, -122.433193907155)",112030255-91 -112730388,AM04,11090421,Medical Incident,09/30/2011,09/30/2011,09/30/2011 09:56:17 PM,09/30/2011 09:57:51 PM,09/30/2011 09:58:03 PM,09/30/2011 09:58:41 PM,09/30/2011 10:02:05 PM,09/30/2011 10:24:05 PM,09/30/2011 10:24:12 PM,Code 2 Transport,09/30/2011 10:40:00 PM,100 Block of SPEAR ST,SF,94105,B03,35,2114,3,2,2,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7918853862733, -122.393341223517)",112730388-AM04 -130260166,85,13008964,Medical Incident,01/26/2013,01/26/2013,01/26/2013 12:11:30 PM,01/26/2013 12:13:23 PM,01/26/2013 12:13:28 PM,01/26/2013 12:13:52 PM,01/26/2013 12:20:25 PM,01/26/2013 12:43:58 PM,01/26/2013 01:11:15 PM,Code 2 Transport,01/26/2013 01:42:13 PM,POLK ST/VALLEJO ST,SF,94109,B04,41,3126,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7968997476834, -122.42196091068)",130260166-85 -130770055,E03,13025621,Medical Incident,03/18/2013,03/17/2013,03/18/2013 07:14:33 AM,03/18/2013 07:16:27 AM,03/18/2013 07:17:22 AM,03/18/2013 07:18:33 AM,03/18/2013 07:20:52 AM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 07:40:16 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",130770055-E03 -160912946,66,16036191,Medical Incident,03/31/2016,03/31/2016,03/31/2016 06:15:27 PM,03/31/2016 06:17:34 PM,03/31/2016 06:17:44 PM,03/31/2016 06:17:50 PM,03/31/2016 06:37:30 PM,03/31/2016 06:57:13 PM,03/31/2016 07:49:53 PM,Code 2 Transport,03/31/2016 08:20:04 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160912946-66 -140510119,T18,14017213,Alarms,02/20/2014,02/20/2014,02/20/2014 09:51:22 AM,02/20/2014 09:51:23 AM,02/20/2014 09:51:35 AM,02/20/2014 09:51:57 AM,02/20/2014 09:56:10 AM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Fire,02/20/2014 09:56:38 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",140510119-T18 -160571229,74,16022703,Medical Incident,02/26/2016,02/26/2016,02/26/2016 10:34:28 AM,02/26/2016 10:37:14 AM,02/26/2016 10:41:35 AM,02/26/2016 10:41:44 AM,02/26/2016 11:04:08 AM,02/26/2016 11:31:02 AM,02/26/2016 11:38:58 AM,Code 2 Transport,02/26/2016 12:12:45 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160571229-74 -140470235,E15,14016056,Structure Fire,02/16/2014,02/16/2014,02/16/2014 03:58:45 PM,02/16/2014 03:58:45 PM,02/16/2014 03:59:33 PM,02/16/2014 04:00:15 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 04:01:09 PM,SANTA ROSA AV/CAYUGA AV,SF,94112,B09,15,8265,,3,3,true,Alarm,1,ENGINE,3,9,11,Outer Mission,"(37.7271683911386, -122.436805492694)",140470235-E15 -160760817,54,16030040,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:41:51 AM,03/16/2016 08:44:23 AM,03/16/2016 08:45:17 AM,03/16/2016 08:45:26 AM,03/16/2016 08:53:38 AM,03/16/2016 09:14:53 AM,03/16/2016 09:34:43 AM,Code 2 Transport,03/16/2016 10:13:08 AM,100 Block of 5TH ST,San Francisco,94103,B03,1,2246,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7817509861584, -122.40515072935)",160760817-54 -112940203,T14,11097530,Alarms,10/21/2011,10/21/2011,10/21/2011 01:53:17 PM,10/21/2011 01:54:18 PM,10/21/2011 01:54:26 PM,10/21/2011 01:54:48 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 02:04:13 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,,1,TRUCK,2,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",112940203-T14 -102350003,E25,10073796,Alarms,08/23/2010,08/22/2010,08/23/2010 12:06:11 AM,08/23/2010 12:07:10 AM,08/23/2010 12:07:19 AM,08/23/2010 12:08:35 AM,08/23/2010 12:10:56 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 12:21:00 AM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",102350003-E25 -120520277,AM14,12017255,Medical Incident,02/21/2012,02/21/2012,02/21/2012 05:38:39 PM,02/21/2012 05:40:56 PM,02/21/2012 05:41:25 PM,02/21/2012 05:42:00 PM,02/21/2012 05:52:37 PM,02/21/2012 05:56:29 PM,02/21/2012 06:13:06 PM,Code 2 Transport,02/21/2012 06:41:54 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120520277-AM14 -132540346,T01,13085947,Structure Fire,09/11/2013,09/11/2013,09/11/2013 06:37:05 PM,09/11/2013 06:37:58 PM,09/11/2013 06:38:10 PM,09/11/2013 06:39:07 PM,04/25/2016 01:50:50 PM,04/25/2016 01:50:50 PM,04/25/2016 01:50:50 PM,Other,09/11/2013 06:51:29 PM,0 Block of 5TH ST,SF,94103,B03,1,2247,3,3,3,false,Fire,1,TRUCK,10,3,6,South of Market,"(37.7833716368249, -122.407382686506)",132540346-T01 -160393644,70,16015809,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:54:31 PM,02/08/2016 09:56:52 PM,02/08/2016 09:57:06 PM,02/08/2016 09:57:37 PM,02/08/2016 10:10:15 PM,02/08/2016 10:18:18 PM,02/08/2016 10:24:33 PM,Code 2 Transport,02/08/2016 10:48:34 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160393644-70 -112660378,E13,11088056,Medical Incident,09/23/2011,09/23/2011,09/23/2011 11:12:43 PM,09/23/2011 11:15:24 PM,09/23/2011 11:15:42 PM,09/23/2011 11:15:59 PM,09/23/2011 11:17:21 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 11:26:14 PM,400 Block of SACRAMENTO ST,SF,94104,B01,13,1166,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7940064054138, -122.400720766753)",112660378-E13 -102670265,T14,10084576,Alarms,09/24/2010,09/24/2010,09/24/2010 04:54:41 PM,09/24/2010 04:55:50 PM,09/24/2010 04:56:10 PM,09/24/2010 04:56:45 PM,09/24/2010 04:59:21 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Other,09/24/2010 05:05:50 PM,200 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7215,3,3,3,false,,1,TRUCK,1,7,2,Seacliff,"(37.7875319374674, -122.485817151324)",102670265-T14 -113240302,T08,11107726,Elevator / Escalator Rescue,11/20/2011,11/20/2011,11/20/2011 07:40:11 PM,11/20/2011 07:42:20 PM,11/20/2011 07:43:12 PM,11/20/2011 07:44:23 PM,11/20/2011 07:48:00 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 08:12:36 PM,600 Block of TOWNSEND ST,SF,94107,B03,29,2275,3,3,3,true,,1,TRUCK,1,3,10,Mission Bay,"(37.7709010647695, -122.402718399164)",113240302-T08 -160740722,AM06,16029231,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:15:07 AM,03/14/2016 08:16:58 AM,03/14/2016 08:17:15 AM,03/14/2016 08:17:58 AM,03/14/2016 08:30:51 AM,03/14/2016 08:42:15 AM,03/14/2016 08:55:00 AM,Code 2 Transport,03/14/2016 09:26:58 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160740722-AM06 -112820010,E29,11093209,Medical Incident,10/09/2011,10/08/2011,10/09/2011 12:23:59 AM,10/09/2011 12:28:07 AM,10/09/2011 12:28:47 AM,10/09/2011 12:30:08 AM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Other,10/09/2011 12:43:39 AM,1100 Block of FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7752603293476, -122.409820946894)",112820010-E29 -160773635,76,16030767,Medical Incident,03/17/2016,03/17/2016,03/17/2016 07:47:20 PM,03/17/2016 07:47:20 PM,03/17/2016 07:48:27 PM,03/17/2016 07:48:35 PM,03/17/2016 07:59:55 PM,03/17/2016 08:03:22 PM,03/17/2016 08:17:56 PM,Code 2 Transport,03/17/2016 09:04:48 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160773635-76 -131280136,68,13043232,Medical Incident,05/08/2013,05/08/2013,05/08/2013 10:06:11 AM,05/08/2013 10:07:41 AM,05/08/2013 10:08:09 AM,05/08/2013 10:08:24 AM,05/08/2013 10:13:50 AM,05/08/2013 10:27:21 AM,05/08/2013 11:01:28 AM,Code 2 Transport,05/08/2013 11:45:05 AM,600 Block of BRYANT ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786440354083, -122.399130045019)",131280136-68 -120380263,66,12012750,Medical Incident,02/07/2012,02/07/2012,02/07/2012 04:57:39 PM,02/07/2012 04:57:44 PM,02/07/2012 04:59:07 PM,02/07/2012 04:59:16 PM,02/07/2012 05:05:40 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Patient Declined Transport,02/07/2012 05:25:38 PM,GARDEN ST/BRODERICK ST,SF,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Japantown,"(37.783641693269, -122.441255225206)",120380263-66 -160341893,72,16013409,Medical Incident,02/03/2016,02/03/2016,02/03/2016 01:50:54 PM,02/03/2016 01:52:45 PM,02/03/2016 01:57:22 PM,02/03/2016 01:57:27 PM,02/03/2016 02:06:42 PM,02/03/2016 02:13:51 PM,02/03/2016 02:46:42 PM,Code 2 Transport,02/03/2016 03:16:25 PM,0 Block of BELGRAVE AVE,San Francisco,94114,B05,12,5263,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7594868419389, -122.450378875628)",160341893-72 -120020019,57,12000596,Medical Incident,01/02/2012,01/01/2012,01/02/2012 01:28:38 AM,01/02/2012 01:29:39 AM,01/02/2012 01:30:03 AM,01/02/2012 01:31:27 AM,01/02/2012 01:33:30 AM,01/02/2012 01:57:54 AM,01/02/2012 02:45:16 AM,Code 2 Transport,01/02/2012 02:52:15 AM,1300 Block of FOLSOM ST,SF,94103,B02,36,2343,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7730095075911, -122.41247584547)",120020019-57 -112690285,E41,11088987,Medical Incident,09/26/2011,09/26/2011,09/26/2011 05:23:19 PM,09/26/2011 05:24:28 PM,09/26/2011 05:25:54 PM,09/26/2011 05:27:24 PM,09/26/2011 05:28:27 PM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/26/2011 05:43:52 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,,1,ENGINE,1,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",112690285-E41 -160282064,71,16011113,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:09:05 PM,01/28/2016 02:10:47 PM,01/28/2016 02:11:44 PM,01/28/2016 02:11:56 PM,01/28/2016 02:16:47 PM,01/28/2016 02:35:32 PM,01/28/2016 02:47:39 PM,Code 2 Transport,01/28/2016 03:16:31 PM,100 Block of DRUMM ST,San Francisco,94111,B01,13,1115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",160282064-71 -160331777,KM08,16012992,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:31:48 PM,02/02/2016 01:32:57 PM,02/02/2016 01:33:20 PM,02/02/2016 01:33:38 PM,02/02/2016 01:40:49 PM,02/02/2016 01:47:21 PM,02/02/2016 02:15:56 PM,Code 2 Transport,02/02/2016 03:04:13 PM,400 Block of BERRY ST,San Francisco,94107,B03,8,2262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",160331777-KM08 -132300246,55,13077710,Medical Incident,08/18/2013,08/18/2013,08/18/2013 03:39:11 PM,08/18/2013 03:39:34 PM,08/18/2013 03:40:10 PM,08/18/2013 03:40:47 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,Other,08/18/2013 03:41:29 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",132300246-55 -160350616,65,16013707,Medical Incident,02/04/2016,02/03/2016,02/04/2016 07:21:28 AM,02/04/2016 07:21:28 AM,02/04/2016 07:21:43 AM,02/04/2016 07:21:51 AM,02/04/2016 07:31:26 AM,02/04/2016 07:46:28 AM,02/04/2016 08:03:17 AM,Code 2 Transport,02/04/2016 08:52:45 AM,PAUL AV/BAYSHORE BL,San Francisco,94124,B10,44,6323,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7236162096696, -122.40078474994)",160350616-65 -102270139,94,10071418,Medical Incident,08/15/2010,08/15/2010,08/15/2010 10:40:44 AM,08/15/2010 10:41:53 AM,08/15/2010 10:42:03 AM,08/15/2010 10:42:18 AM,08/15/2010 10:45:37 AM,08/15/2010 11:14:23 AM,08/15/2010 11:36:07 AM,Code 2 Transport,08/15/2010 11:46:06 AM,3200 Block of MISSION ST,SF,94110,B06,32,5625,3,3,3,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.744688222803, -122.42039487496)",102270139-94 -112440038,E01,11080330,Medical Incident,09/01/2011,08/31/2011,09/01/2011 03:16:30 AM,09/01/2011 03:17:33 AM,09/01/2011 03:17:44 AM,09/01/2011 03:20:26 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 03:23:53 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,1,2,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",112440038-E01 -160421590,53,16016847,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:05:28 PM,02/11/2016 12:06:01 PM,02/11/2016 12:06:28 PM,02/11/2016 12:07:23 PM,02/11/2016 12:08:27 PM,02/11/2016 12:09:24 PM,02/11/2016 12:09:25 PM,Code 2 Transport,02/11/2016 02:12:58 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160421590-53 -131860047,E07,13063318,Other,07/05/2013,07/04/2013,07/05/2013 03:17:04 AM,07/05/2013 03:17:29 AM,07/05/2013 03:17:57 AM,04/25/2016 01:51:57 PM,07/05/2013 03:23:35 AM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Fire,07/05/2013 03:38:35 AM,3100 Block of 16TH ST,SF,94103,B02,6,5235,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7648681454287, -122.423612806769)",131860047-E07 -111210082,E21,11039859,Medical Incident,05/01/2011,04/30/2011,05/01/2011 07:42:34 AM,05/01/2011 07:43:42 AM,05/01/2011 07:43:55 AM,05/01/2011 07:44:56 AM,05/01/2011 07:47:55 AM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,05/01/2011 07:52:40 AM,2000 Block of GROVE ST,SF,94117,B05,21,4535,3,3,3,true,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7744085299386, -122.450351367472)",111210082-E21 -102510345,E03,10079428,Structure Fire,09/08/2010,09/08/2010,09/08/2010 07:51:23 PM,09/08/2010 07:53:35 PM,09/08/2010 07:53:49 PM,04/25/2016 02:08:41 PM,09/08/2010 07:56:34 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 08:10:47 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",102510345-E03 -133170231,T05,13107775,Alarms,11/13/2013,11/13/2013,11/13/2013 03:08:57 PM,11/13/2013 03:09:55 PM,11/13/2013 03:11:35 PM,11/13/2013 03:11:53 PM,11/13/2013 03:15:41 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 03:16:24 PM,0 Block of PAGE ST,SF,94102,B02,36,3212,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7742439239467, -122.421594452135)",133170231-T05 -103640354,E18,10116913,Electrical Hazard,12/30/2010,12/30/2010,12/30/2010 10:19:15 PM,12/30/2010 10:22:20 PM,12/30/2010 10:22:26 PM,12/30/2010 10:23:51 PM,12/30/2010 10:25:53 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/30/2010 10:31:18 PM,1800 Block of 43RD AVE,SF,94122,B08,23,7646,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7521699490631, -122.502194739789)",103640354-E18 -102480013,E01,10078218,Medical Incident,09/05/2010,09/04/2010,09/05/2010 12:58:53 AM,09/05/2010 12:59:22 AM,09/05/2010 12:59:45 AM,09/05/2010 01:01:21 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 01:03:46 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",102480013-E01 -121090291,E28,12036139,Water Rescue,04/18/2012,04/18/2012,04/18/2012 06:20:07 PM,04/18/2012 06:20:07 PM,04/18/2012 06:21:32 PM,04/18/2012 06:23:03 PM,04/18/2012 06:25:30 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/18/2012 06:44:35 PM,CALL BOX: PIER 43,SF,94133,B01,28,943,3,3,3,false,Fire,1,ENGINE,1,1,3,North Beach,"(37.8086727647211, -122.412586999257)",121090291-E28 -110960365,73,11031998,Medical Incident,04/06/2011,04/06/2011,04/06/2011 11:13:48 PM,04/06/2011 11:15:01 PM,04/06/2011 11:16:10 PM,04/06/2011 11:16:45 PM,04/06/2011 11:28:53 PM,04/06/2011 11:43:10 PM,04/06/2011 11:50:30 PM,Code 2 Transport,04/07/2011 12:19:33 AM,100 Block of CLEO RAND AVE,SF,94124,B10,25,6666,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291145750944, -122.371202591843)",110960365-73 -140840036,AM18,14028185,Medical Incident,03/25/2014,03/24/2014,03/25/2014 03:53:19 AM,03/25/2014 03:53:45 AM,03/25/2014 03:54:07 AM,03/25/2014 03:55:18 AM,03/25/2014 03:58:31 AM,03/25/2014 04:02:12 AM,03/25/2014 04:12:48 AM,Code 2 Transport,03/25/2014 04:22:09 AM,17TH ST/PROSPER ST,SAN FRANCISCO,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.762703174991, -122.431544840056)",140840036-AM18 -130730016,88,13024214,Medical Incident,03/14/2013,03/13/2013,03/14/2013 01:29:35 AM,03/14/2013 01:31:11 AM,03/14/2013 01:31:20 AM,03/14/2013 01:31:29 AM,03/14/2013 01:40:12 AM,03/14/2013 01:59:27 AM,03/14/2013 02:18:10 AM,Code 2 Transport,03/14/2013 02:39:20 AM,300 Block of VIENNA ST,SF,94112,B09,43,6155,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7227804111928, -122.428602345947)",130730016-88 -132940375,58,13100155,Medical Incident,10/21/2013,10/21/2013,10/21/2013 10:19:40 PM,10/21/2013 10:21:37 PM,10/21/2013 10:24:11 PM,10/21/2013 10:24:15 PM,10/21/2013 10:34:14 PM,10/21/2013 10:50:37 PM,04/25/2016 01:50:09 PM,Code 2 Transport,10/21/2013 11:28:27 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2244,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",132940375-58 -140570148,E15,14019192,Medical Incident,02/26/2014,02/26/2014,02/26/2014 10:36:47 AM,02/26/2014 10:37:41 AM,02/26/2014 10:37:56 AM,02/26/2014 10:40:05 AM,02/26/2014 10:41:47 AM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Other,02/26/2014 11:06:11 AM,GENEVA AV/NAPLES ST,SF,94112,B09,43,6174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7142094836778, -122.436176465247)",140570148-E15 -111190017,83,11039114,Medical Incident,04/29/2011,04/28/2011,04/29/2011 01:48:57 AM,04/29/2011 01:51:23 AM,04/29/2011 01:51:41 AM,04/29/2011 01:52:01 AM,04/29/2011 01:53:23 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,No Merit,04/29/2011 02:01:36 AM,1300 Block of VAN NESS AVE,SF,94109,B04,3,3156,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7882889208706, -122.421732731473)",111190017-83 -120280254,E25,12009473,Medical Incident,01/28/2012,01/28/2012,01/28/2012 05:27:33 PM,01/28/2012 05:29:01 PM,01/28/2012 05:30:15 PM,01/28/2012 05:31:41 PM,01/28/2012 05:33:54 PM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/28/2012 05:37:15 PM,23RD ST/INDIANA ST,SF,94107,B10,25,2573,3,3,3,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.755213902438, -122.390921943768)",120280254-E25 -123360437,E38,12111952,Structure Fire,12/01/2012,12/01/2012,12/01/2012 10:37:00 PM,12/01/2012 10:39:36 PM,12/01/2012 10:40:43 PM,12/01/2012 10:43:06 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 10:47:57 PM,1100 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,ENGINE,6,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",123360437-E38 -110820211,E40,11026965,Administrative,03/23/2011,03/23/2011,03/23/2011 01:40:20 PM,03/23/2011 01:40:23 PM,03/23/2011 01:40:41 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 01:42:44 PM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,false,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",110820211-E40 -123540090,E01,12118375,Alarms,12/19/2012,12/18/2012,12/19/2012 07:44:00 AM,12/19/2012 07:44:00 AM,12/19/2012 07:44:08 AM,12/19/2012 07:46:37 AM,12/19/2012 07:49:59 AM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 07:50:17 AM,TAYLOR ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",123540090-E01 -103450300,E13,10110680,Medical Incident,12/11/2010,12/11/2010,12/11/2010 05:36:25 PM,12/11/2010 05:38:35 PM,12/11/2010 05:39:16 PM,12/11/2010 05:39:56 PM,12/11/2010 05:42:05 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 05:49:53 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",103450300-E13 -133450311,E15,13117097,Medical Incident,12/11/2013,12/11/2013,12/11/2013 04:32:54 PM,12/11/2013 04:36:24 PM,12/11/2013 04:36:58 PM,12/11/2013 04:38:20 PM,12/11/2013 04:40:30 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,Other,12/11/2013 05:00:02 PM,300 Block of FOERSTER ST,SF,94112,B09,15,8235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7311162784575, -122.448932516664)",133450311-E15 -111270026,E43,11041917,Medical Incident,05/07/2011,05/06/2011,05/07/2011 02:46:48 AM,05/07/2011 02:46:48 AM,05/07/2011 02:47:46 AM,05/07/2011 02:54:04 AM,05/07/2011 02:56:45 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,No Merit,05/07/2011 03:01:30 AM,0 Block of CURTIS ST,SF,94112,B09,43,6232,2,E,3,true,,1,ENGINE,2,9,11,Excelsior,"(37.7141265601832, -122.439828171044)",111270026-E43 -120670133,84,12022163,Medical Incident,03/07/2012,03/07/2012,03/07/2012 09:37:53 AM,03/07/2012 09:40:30 AM,03/07/2012 09:40:48 AM,03/07/2012 09:43:16 AM,03/07/2012 09:47:35 AM,03/07/2012 10:14:55 AM,03/07/2012 10:42:37 AM,Code 2 Transport,03/07/2012 11:06:34 AM,400 Block of 3RD ST,SF,94107,B03,8,2174,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7823750775991, -122.397064398742)",120670133-84 -160642359,KM04,16025557,Medical Incident,03/04/2016,03/04/2016,03/04/2016 03:07:21 PM,03/04/2016 03:08:27 PM,03/04/2016 03:08:52 PM,03/04/2016 03:09:23 PM,03/04/2016 03:14:54 PM,03/04/2016 03:24:59 PM,03/04/2016 03:46:26 PM,Code 2 Transport,03/04/2016 04:14:52 PM,1600 Block of VALENCIA ST,San Francisco,94110,B06,11,5611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7473464894373, -122.420273560089)",160642359-KM04 -140520045,66,14017506,Medical Incident,02/21/2014,02/20/2014,02/21/2014 06:02:48 AM,02/21/2014 06:05:08 AM,02/21/2014 06:07:31 AM,02/21/2014 06:07:40 AM,02/21/2014 06:11:39 AM,02/21/2014 06:17:18 AM,02/21/2014 06:34:34 AM,Code 2 Transport,02/21/2014 07:03:20 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",140520045-66 -160362073,77,16014271,Medical Incident,02/05/2016,02/05/2016,02/05/2016 01:31:26 PM,02/05/2016 01:32:19 PM,02/05/2016 01:32:44 PM,02/05/2016 01:32:49 PM,02/05/2016 01:39:07 PM,02/05/2016 01:47:58 PM,02/05/2016 02:08:35 PM,Code 2 Transport,02/05/2016 02:42:30 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",160362073-77 -160192828,68,16007737,Medical Incident,01/19/2016,01/19/2016,01/19/2016 05:39:50 PM,01/19/2016 05:41:08 PM,01/19/2016 05:43:08 PM,01/19/2016 05:43:18 PM,01/19/2016 05:50:58 PM,01/19/2016 06:13:03 PM,01/19/2016 06:27:58 PM,Code 2 Transport,01/19/2016 07:09:32 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160192828-68 -160062732,KM04,16002508,Medical Incident,01/06/2016,01/06/2016,01/06/2016 05:14:38 PM,01/06/2016 05:15:31 PM,01/06/2016 05:16:43 PM,01/06/2016 05:18:10 PM,01/06/2016 05:25:30 PM,01/06/2016 05:35:54 PM,01/06/2016 05:48:50 PM,Code 2 Transport,01/06/2016 06:27:38 PM,GEARY BL/ARGUELLO BL,San Francisco,94118,B07,31,7113,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Lone Mountain/USF,"(37.7812570600281, -122.458858659839)",160062732-KM04 -110720076,88,11023631,Medical Incident,03/13/2011,03/12/2011,03/13/2011 05:00:16 AM,03/13/2011 05:01:04 AM,03/13/2011 05:01:41 AM,03/13/2011 05:01:48 AM,03/13/2011 05:09:12 AM,03/13/2011 05:25:26 AM,03/13/2011 05:48:25 AM,Code 2 Transport,03/13/2011 06:19:11 AM,3800 Block of JUDAH ST,SF,94122,B08,23,7655,3,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7604879962872, -122.503245387558)",110720076-88 -130620303,72,13020877,Medical Incident,03/03/2013,03/03/2013,03/03/2013 06:09:39 PM,03/03/2013 06:10:25 PM,03/03/2013 06:10:33 PM,03/03/2013 06:11:01 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 06:21:20 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",130620303-72 -131610081,88,13054607,Medical Incident,06/10/2013,06/10/2013,06/10/2013 08:04:10 AM,06/10/2013 08:05:02 AM,06/10/2013 08:05:31 AM,06/10/2013 08:05:57 AM,06/10/2013 08:12:56 AM,06/10/2013 08:37:12 AM,06/10/2013 09:00:52 AM,Code 2 Transport,06/10/2013 09:29:50 AM,2500 Block of 38TH AVE,SF,94116,B08,18,7617,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7393588005446, -122.495784981897)",131610081-88 -123640241,KM09,12121854,Medical Incident,12/29/2012,12/29/2012,12/29/2012 04:54:16 PM,12/29/2012 04:55:09 PM,12/29/2012 04:55:23 PM,12/29/2012 04:56:27 PM,12/29/2012 05:00:41 PM,12/29/2012 05:27:55 PM,12/29/2012 05:31:40 PM,Code 2 Transport,12/29/2012 06:18:30 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",123640241-KM09 -112930338,E28,11097332,Medical Incident,10/20/2011,10/20/2011,10/20/2011 08:27:37 PM,10/20/2011 08:28:18 PM,10/20/2011 08:29:36 PM,10/20/2011 08:30:30 PM,10/20/2011 08:33:22 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/20/2011 08:41:56 PM,900 Block of BEACH ST,SF,94109,B01,28,3135,3,3,3,false,,1,ENGINE,1,1,2,Russian Hill,"(37.806210458565, -122.424360355387)",112930338-E28 -140520300,T12,14017717,Citizen Assist / Service Call,02/21/2014,02/21/2014,02/21/2014 06:55:01 PM,02/21/2014 06:59:42 PM,02/21/2014 07:01:31 PM,02/21/2014 07:03:31 PM,02/21/2014 07:08:25 PM,04/25/2016 01:48:05 PM,04/25/2016 01:48:05 PM,Fire,02/21/2014 07:30:33 PM,1300 Block of PAGE ST,SF,94117,B05,21,4355,3,3,3,false,Alarm,1,TRUCK,1,5,5,Haight Ashbury,"(37.771410364477, -122.443000900574)",140520300-T12 -102410312,T02,10076131,Alarms,08/29/2010,08/29/2010,08/29/2010 08:09:48 PM,08/29/2010 08:10:54 PM,08/29/2010 08:11:08 PM,08/29/2010 08:12:59 PM,08/29/2010 08:14:10 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/29/2010 08:26:03 PM,700 Block of JACKSON ST,SF,94133,B01,2,1312,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7960519173156, -122.406878836938)",102410312-T02 -131350033,E03,13045443,Structure Fire,05/15/2013,05/14/2013,05/15/2013 06:07:19 AM,05/15/2013 06:07:19 AM,05/15/2013 06:07:26 AM,05/15/2013 06:08:56 AM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,Fire,05/15/2013 06:10:30 AM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",131350033-E03 -132880349,E08,13098107,Medical Incident,10/15/2013,10/15/2013,10/15/2013 08:02:42 PM,10/15/2013 08:04:57 PM,10/15/2013 08:15:21 PM,10/15/2013 08:16:52 PM,10/15/2013 08:18:16 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,10/15/2013 08:32:11 PM,200 Block of KING ST,SF,94107,B03,8,2171,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",132880349-E08 -112740129,E07,11090567,Medical Incident,10/01/2011,10/01/2011,10/01/2011 09:15:56 AM,10/01/2011 09:16:09 AM,10/01/2011 09:16:31 AM,10/01/2011 09:16:59 AM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Other,10/01/2011 09:19:29 AM,1200 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7531743146878, -122.416270507567)",112740129-E07 -160822982,83,16032680,Medical Incident,03/22/2016,03/22/2016,03/22/2016 05:42:44 PM,03/22/2016 05:43:38 PM,03/22/2016 05:44:24 PM,03/22/2016 05:44:34 PM,03/22/2016 05:49:53 PM,03/22/2016 06:07:02 PM,03/22/2016 06:13:04 PM,Code 3 Transport,03/22/2016 06:41:46 PM,100 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,3,E,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",160822982-83 -113420290,B02,11113480,Structure Fire,12/08/2011,12/08/2011,12/08/2011 05:27:10 PM,12/08/2011 05:27:10 PM,12/08/2011 05:27:19 PM,12/08/2011 05:28:25 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/08/2011 05:30:54 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,,1,CHIEF,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",113420290-B02 -113400402,58,11112878,Medical Incident,12/06/2011,12/06/2011,12/06/2011 10:10:22 PM,12/06/2011 10:10:34 PM,12/06/2011 10:10:47 PM,12/06/2011 10:10:53 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/06/2011 10:14:43 PM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,2,2,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",113400402-58 -132790235,81,13094937,Medical Incident,10/06/2013,10/06/2013,10/06/2013 01:21:23 PM,10/06/2013 01:23:14 PM,10/06/2013 01:23:48 PM,10/06/2013 01:24:10 PM,10/06/2013 01:31:17 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,No Merit,10/06/2013 01:32:49 PM,1700 Block of JACKSON ST,SF,94109,B04,41,3153,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7937762800279, -122.423860535824)",132790235-81 -120460306,88,12015403,Medical Incident,02/15/2012,02/15/2012,02/15/2012 06:22:51 PM,02/15/2012 06:23:41 PM,02/15/2012 06:23:58 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 06:24:41 PM,200 Block of JUSTIN DR,SF,94110,B06,32,5642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,6,9,Bernal Heights,"(37.7329903518167, -122.421772605391)",120460306-88 -133190038,E34,13108276,Medical Incident,11/15/2013,11/14/2013,11/15/2013 05:39:19 AM,11/15/2013 05:39:34 AM,11/15/2013 05:39:49 AM,11/15/2013 05:41:19 AM,11/15/2013 05:42:45 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 05:56:34 AM,7500 Block of GEARY BLVD,SF,94121,B07,34,7264,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.779202123681, -122.501331891706)",133190038-E34 -110850239,KM12,11028071,Medical Incident,03/26/2011,03/26/2011,03/26/2011 03:06:17 PM,03/26/2011 03:06:44 PM,03/26/2011 03:08:49 PM,03/26/2011 03:18:55 PM,03/26/2011 03:31:18 PM,03/26/2011 03:35:04 PM,03/26/2011 03:50:50 PM,Code 2 Transport,03/26/2011 04:13:51 PM,24TH ST/CAPP ST,SF,94110,B06,7,5511,2,2,2,false,,1,PRIVATE,2,6,9,Mission,"(37.7523059787388, -122.417357818307)",110850239-KM12 -103620374,T05,10116284,Alarms,12/28/2010,12/28/2010,12/28/2010 11:07:11 PM,12/28/2010 11:08:26 PM,12/28/2010 11:10:36 PM,12/28/2010 11:13:10 PM,12/28/2010 11:16:54 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 11:40:23 PM,0 Block of GOUGH ST,SF,94103,B02,36,3311,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.7720182186828, -122.420755115779)",103620374-T05 -160642050,KM09,16025534,Medical Incident,03/04/2016,03/04/2016,03/04/2016 01:43:31 PM,03/04/2016 01:44:16 PM,03/04/2016 01:45:12 PM,03/04/2016 01:45:46 PM,03/04/2016 01:49:53 PM,03/04/2016 02:17:24 PM,03/04/2016 02:29:41 PM,Code 2 Transport,03/04/2016 03:40:23 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160642050-KM09 -140740108,KM06,14024962,Medical Incident,03/15/2014,03/15/2014,03/15/2014 09:23:29 AM,03/15/2014 09:26:02 AM,03/15/2014 09:27:12 AM,03/15/2014 09:28:16 AM,03/15/2014 09:34:03 AM,03/15/2014 09:48:03 AM,03/15/2014 09:55:07 AM,Code 2 Transport,03/15/2014 10:32:44 AM,4800 Block of CALIFORNIA ST,SAN FRANCISCO,94118,B07,31,7136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.784542004652, -122.469369873836)",140740108-KM06 -133400007,67,13115092,Medical Incident,12/06/2013,12/05/2013,12/06/2013 12:27:05 AM,12/06/2013 12:29:07 AM,12/06/2013 12:30:39 AM,12/06/2013 12:30:48 AM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:36:42 AM,FILLMORE ST/GEARY BL,SF,94115,B04,5,3541,2,2,2,false,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",133400007-67 -140780166,87,14026371,Medical Incident,03/19/2014,03/19/2014,03/19/2014 11:38:40 AM,03/19/2014 11:39:54 AM,03/19/2014 11:40:18 AM,03/19/2014 11:40:25 AM,03/19/2014 11:45:56 AM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Patient Declined Transport,03/19/2014 12:59:02 PM,700 Block of LE CONTE AVE,SAN FRANCISCO,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7168290872241, -122.396710749994)",140780166-87 -113170242,T07,11105379,Medical Incident,11/13/2011,11/13/2011,11/13/2011 03:56:37 PM,11/13/2011 03:58:25 PM,11/13/2011 03:59:32 PM,11/13/2011 04:04:06 PM,11/13/2011 04:10:10 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 04:22:33 PM,1700 Block of 17TH ST,SF,94103,B03,29,2413,2,2,2,false,,1,TRUCK,2,3,10,Mission Bay,"(37.7649231427351, -122.40112140635)",113170242-T07 -160120450,62,16004657,Medical Incident,01/12/2016,01/11/2016,01/12/2016 06:02:29 AM,01/12/2016 06:04:18 AM,01/12/2016 06:04:31 AM,01/12/2016 06:04:53 AM,01/12/2016 06:13:44 AM,01/12/2016 06:33:51 AM,01/12/2016 06:38:32 AM,Code 3 Transport,01/12/2016 07:33:29 AM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",160120450-62 -110240236,E44,11007905,Medical Incident,01/24/2011,01/24/2011,01/24/2011 01:40:55 PM,01/24/2011 01:42:13 PM,01/24/2011 01:43:07 PM,01/24/2011 01:45:09 PM,01/24/2011 01:48:25 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/24/2011 01:51:37 PM,900 Block of GIRARD ST,SF,94134,B10,44,6277,3,3,3,true,,1,ENGINE,1,10,10,Portola,"(37.7207468266439, -122.401762550619)",110240236-E44 -123180138,E10,12105725,Medical Incident,11/13/2012,11/13/2012,11/13/2012 10:42:46 AM,11/13/2012 10:43:10 AM,11/13/2012 10:43:30 AM,11/13/2012 10:44:13 AM,11/13/2012 10:47:56 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 11:28:36 AM,1600 Block of SCOTT ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7849864733147, -122.438181369407)",123180138-E10 -140080044,T08,14002706,Structure Fire,01/08/2014,01/07/2014,01/08/2014 04:14:57 AM,01/08/2014 04:14:58 AM,01/08/2014 04:16:07 AM,01/08/2014 04:17:01 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/08/2014 04:20:54 AM,8TH ST/BRYANT ST,SF,94103,B03,29,2324,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.772526268193, -122.406968289725)",140080044-T08 -111250325,T03,11041479,Medical Incident,05/05/2011,05/05/2011,05/05/2011 07:18:50 PM,05/05/2011 07:19:27 PM,05/05/2011 07:19:51 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,04/25/2016 02:04:46 PM,400 Block of VAN NESS AVE,SF,94102,B02,36,3237,3,3,3,false,,1,TRUCK,3,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",111250325-T03 -160322911,76,16012698,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:24:20 PM,02/01/2016 06:24:20 PM,02/01/2016 06:39:10 PM,02/01/2016 06:39:15 PM,02/01/2016 06:51:20 PM,02/01/2016 07:05:17 PM,02/01/2016 07:10:33 PM,Code 2 Transport,02/01/2016 07:37:31 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160322911-76 -160813526,KM07,16032347,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:31:48 PM,03/21/2016 08:31:48 PM,03/21/2016 08:32:42 PM,03/21/2016 08:33:13 PM,03/21/2016 08:38:43 PM,03/21/2016 08:46:25 PM,03/21/2016 08:55:36 PM,Code 2 Transport,03/21/2016 09:24:55 PM,1100 Block of MISSION ST,San Francisco,94103,B99,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160813526-KM07 -102490215,T07,10078724,Alarms,09/06/2010,09/06/2010,09/06/2010 03:31:56 PM,09/06/2010 03:33:49 PM,09/06/2010 03:35:04 PM,09/06/2010 03:36:26 PM,09/06/2010 03:38:48 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Other,09/06/2010 03:41:09 PM,3100 Block of KAMILLE CT,SF,94110,B06,7,5533,B,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7489045934703, -122.413186909994)",102490215-T07 -160512013,88,16020513,Medical Incident,02/20/2016,02/20/2016,02/20/2016 03:18:26 PM,02/20/2016 03:19:25 PM,02/20/2016 03:19:37 PM,02/20/2016 03:19:46 PM,02/20/2016 03:23:56 PM,02/20/2016 03:45:16 PM,02/20/2016 03:57:57 PM,Code 2 Transport,02/20/2016 04:20:22 PM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160512013-88 -121110189,81,12036721,Medical Incident,04/20/2012,04/20/2012,04/20/2012 12:18:38 PM,04/20/2012 12:18:58 PM,04/20/2012 12:20:57 PM,04/20/2012 12:21:13 PM,04/20/2012 12:31:44 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Patient Declined Transport,04/20/2012 12:43:04 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",121110189-81 -120590340,KM15,12019560,Medical Incident,02/28/2012,02/28/2012,02/28/2012 09:00:17 PM,02/28/2012 09:00:46 PM,02/28/2012 09:02:47 PM,02/28/2012 09:03:34 PM,02/28/2012 09:19:58 PM,02/28/2012 09:29:15 PM,02/28/2012 09:36:55 PM,Code 2 Transport,02/28/2012 10:09:49 PM,10TH ST/STEVENSON ST,SF,94103,B02,36,2338,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7760757745405, -122.416915852561)",120590340-KM15 -160110122,68,16004233,Medical Incident,01/11/2016,01/10/2016,01/11/2016 01:01:08 AM,01/11/2016 01:02:59 AM,01/11/2016 01:03:11 AM,01/11/2016 01:03:19 AM,01/11/2016 01:09:17 AM,01/11/2016 01:28:57 AM,01/11/2016 01:48:02 AM,Code 2 Transport,01/11/2016 02:28:59 AM,HOWARD ST/MAIN ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160110122-68 -160423812,62,16017064,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:16:53 PM,02/11/2016 10:18:28 PM,02/11/2016 10:20:03 PM,02/11/2016 10:20:11 PM,02/11/2016 10:31:00 PM,02/11/2016 10:53:09 PM,02/11/2016 11:09:52 PM,Code 2 Transport,02/11/2016 11:52:17 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696756290578, -122.449101011701)",160423812-62 -102240241,E01,10070598,Structure Fire,08/12/2010,08/12/2010,08/12/2010 03:42:19 PM,08/12/2010 03:42:20 PM,08/12/2010 03:42:38 PM,08/12/2010 03:43:17 PM,08/12/2010 03:45:57 PM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,No Merit,08/12/2010 03:46:40 PM,1ST ST/HOWARD ST,SF,94105,B03,35,2141,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7885359297329, -122.396034766801)",102240241-E01 -113600172,B07,11119644,Structure Fire,12/26/2011,12/26/2011,12/26/2011 02:20:18 PM,12/26/2011 02:21:11 PM,12/26/2011 02:21:27 PM,12/26/2011 02:22:51 PM,12/26/2011 02:28:06 PM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 03:05:54 PM,1500 Block of 48TH AVE,SF,94122,B08,23,7717,3,3,3,false,,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7575292588802, -122.507939651503)",113600172-B07 -111830174,E01,11060425,Medical Incident,07/02/2011,07/02/2011,07/02/2011 01:23:33 PM,07/02/2011 01:24:33 PM,07/02/2011 01:25:11 PM,07/02/2011 01:25:44 PM,07/02/2011 01:28:02 PM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,07/02/2011 02:02:16 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",111830174-E01 -112310011,79,11076135,Medical Incident,08/19/2011,08/18/2011,08/19/2011 01:19:39 AM,08/19/2011 01:20:08 AM,08/19/2011 01:20:17 AM,08/19/2011 01:20:25 AM,08/19/2011 01:22:34 AM,08/19/2011 01:38:00 AM,08/19/2011 01:49:14 AM,Code 3 Transport,08/19/2011 02:25:37 AM,0 Block of LEAVENWORTH ST,SF,94102,B02,1,1551,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7804679955627, -122.413513550884)",112310011-79 -121140247,E14,12037895,Medical Incident,04/23/2012,04/23/2012,04/23/2012 04:09:03 PM,04/23/2012 04:09:59 PM,04/23/2012 04:10:17 PM,04/23/2012 04:11:30 PM,04/23/2012 04:13:06 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 04:29:09 PM,200 Block of 21ST AVE,SF,94121,B07,14,7173,3,1,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",121140247-E14 -132430410,77,13082190,Medical Incident,08/31/2013,08/31/2013,08/31/2013 11:55:11 PM,08/31/2013 11:56:41 PM,08/31/2013 11:56:50 PM,08/31/2013 11:58:49 PM,09/01/2013 12:00:51 AM,09/01/2013 12:21:58 AM,09/01/2013 12:30:35 AM,Code 2 Transport,09/01/2013 12:50:34 AM,2300 Block of POLK ST,SF,94109,B04,41,3131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7982845733871, -122.422310712051)",132430410-77 -160432733,KM12,16017392,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:18:24 PM,02/12/2016 05:19:08 PM,02/12/2016 05:19:31 PM,02/12/2016 05:20:22 PM,02/12/2016 05:23:12 PM,02/12/2016 05:41:15 PM,02/12/2016 06:01:51 PM,Code 2 Transport,02/12/2016 06:39:54 PM,CHURCH ST/18TH ST,San Francisco,94114,B02,6,5421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.761289573177, -122.428354067217)",160432733-KM12 -120440298,E01,12014802,Medical Incident,02/13/2012,02/13/2012,02/13/2012 08:50:10 PM,02/13/2012 08:50:41 PM,02/13/2012 08:51:22 PM,02/13/2012 08:53:14 PM,02/13/2012 08:56:13 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 08:59:46 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.780721312022, -122.415737767164)",120440298-E01 -122180382,E34,12072495,Medical Incident,08/05/2012,08/05/2012,08/05/2012 11:15:45 PM,08/05/2012 11:17:08 PM,08/05/2012 11:17:46 PM,08/05/2012 11:19:50 PM,08/05/2012 11:22:29 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 11:35:23 PM,3300 Block of CABRILLO ST,SF,94121,B07,34,7252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7739165095867, -122.494499655142)",122180382-E34 -132460364,T19,13083155,Alarms,09/03/2013,09/03/2013,09/03/2013 09:21:08 PM,09/03/2013 09:22:54 PM,09/03/2013 09:23:00 PM,09/03/2013 09:24:10 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/03/2013 09:34:43 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",132460364-T19 -160591988,88,16023562,Medical Incident,02/28/2016,02/28/2016,02/28/2016 03:08:17 PM,02/28/2016 03:08:59 PM,02/28/2016 03:10:08 PM,02/28/2016 03:10:36 PM,02/28/2016 03:20:50 PM,02/28/2016 03:26:18 PM,02/28/2016 03:36:23 PM,Code 2 Transport,02/28/2016 04:02:08 PM,1800 Block of 25TH AVE,San Francisco,94122,B08,18,7455,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7530220350499, -122.482903541099)",160591988-88 -133170283,E09,13107817,Medical Incident,11/13/2013,11/13/2013,11/13/2013 05:29:12 PM,11/13/2013 05:32:00 PM,11/13/2013 05:33:19 PM,11/13/2013 05:34:58 PM,11/13/2013 05:36:52 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 05:39:16 PM,200 Block of NAPOLEON ST,SF,94124,B10,9,6412,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7469874361298, -122.399147231229)",133170283-E09 -112930074,E40,11097122,Medical Incident,10/20/2011,10/20/2011,10/20/2011 08:33:54 AM,10/20/2011 08:34:28 AM,10/20/2011 08:34:51 AM,10/20/2011 08:35:53 AM,10/20/2011 08:38:52 AM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 09:24:53 AM,2600 Block of 19TH AVE,SF,94116,B08,40,7414,3,3,3,false,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7383937747552, -122.475208337551)",112930074-E40 -121270362,E08,12042436,Medical Incident,05/06/2012,05/06/2012,05/06/2012 11:14:46 PM,05/06/2012 11:16:30 PM,05/06/2012 11:16:43 PM,05/06/2012 11:17:48 PM,05/06/2012 11:19:27 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/06/2012 11:26:29 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121270362-E08 -111200006,E01,11039434,Outside Fire,04/30/2011,04/29/2011,04/30/2011 12:08:04 AM,04/30/2011 12:08:30 AM,04/30/2011 12:08:42 AM,04/30/2011 12:10:03 AM,04/30/2011 12:13:20 AM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Fire,04/30/2011 12:16:40 AM,GEARY ST/POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",111200006-E01 -160703630,AM14,16028033,Medical Incident,03/10/2016,03/10/2016,03/10/2016 10:03:38 PM,03/10/2016 10:06:15 PM,03/10/2016 10:06:28 PM,03/10/2016 10:07:14 PM,03/10/2016 10:11:52 PM,03/10/2016 10:27:55 PM,03/10/2016 10:38:38 PM,Code 2 Transport,03/10/2016 11:01:47 PM,1500 Block of FILLMORE ST,San Francisco,94115,B04,5,3541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7838322589777, -122.432741826829)",160703630-AM14 -160191581,83,16007622,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:17:46 PM,01/19/2016 12:20:22 PM,01/19/2016 12:21:24 PM,01/19/2016 12:21:35 PM,01/19/2016 12:25:59 PM,01/19/2016 12:31:54 PM,01/19/2016 12:37:38 PM,Code 2 Transport,01/19/2016 01:24:02 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160191581-83 -160493292,70,16019855,Medical Incident,02/18/2016,02/18/2016,02/18/2016 07:18:43 PM,02/18/2016 07:19:54 PM,02/18/2016 07:20:50 PM,02/18/2016 07:21:11 PM,02/18/2016 07:29:32 PM,02/18/2016 07:43:07 PM,02/18/2016 07:48:30 PM,Code 2 Transport,02/18/2016 08:08:21 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160493292-70 -102770236,72,10088118,Medical Incident,10/04/2010,10/04/2010,10/04/2010 05:02:13 PM,10/04/2010 05:03:13 PM,10/04/2010 05:03:33 PM,10/04/2010 05:03:37 PM,10/04/2010 05:04:06 PM,10/04/2010 05:16:25 PM,10/04/2010 05:24:58 PM,Code 2 Transport,10/04/2010 05:54:51 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",102770236-72 -120590148,E31,12019398,Medical Incident,02/28/2012,02/28/2012,02/28/2012 11:31:54 AM,02/28/2012 11:32:32 AM,02/28/2012 11:32:44 AM,02/28/2012 11:33:06 AM,02/28/2012 11:34:46 AM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/28/2012 11:47:46 AM,600 Block of 6TH AVE,SF,94118,B07,31,719,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.776298721061, -122.464012148208)",120590148-E31 -112530097,T10,11083399,Alarms,09/10/2011,09/10/2011,09/10/2011 08:08:32 AM,09/10/2011 08:10:01 AM,09/10/2011 08:10:10 AM,09/10/2011 08:11:43 AM,09/10/2011 08:14:17 AM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Other,09/10/2011 08:31:02 AM,3800 Block of CALIFORNIA ST,SF,94118,B07,10,7114,3,3,3,false,,1,TRUCK,1,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",112530097-T10 -111460147,E02,11048451,Medical Incident,05/26/2011,05/26/2011,05/26/2011 12:25:34 PM,05/26/2011 12:27:07 PM,05/26/2011 12:27:30 PM,05/26/2011 12:28:47 PM,05/26/2011 12:30:17 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,05/26/2011 12:40:26 PM,1500 Block of BROADWAY,SF,94109,B04,41,3152,3,3,3,true,,1,ENGINE,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",111460147-E02 -160650365,55,16025793,Medical Incident,03/05/2016,03/04/2016,03/05/2016 02:46:08 AM,03/05/2016 02:49:55 AM,03/05/2016 02:50:22 AM,03/05/2016 02:50:47 AM,03/05/2016 03:01:15 AM,03/05/2016 03:13:45 AM,03/05/2016 03:22:23 AM,Code 2 Transport,03/05/2016 03:58:28 AM,700 Block of KEARNY ST,San Francisco,94111,B01,13,1245,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",160650365-55 -120810150,E13,12026854,Medical Incident,03/21/2012,03/21/2012,03/21/2012 10:40:25 AM,03/21/2012 10:42:49 AM,03/21/2012 10:43:16 AM,03/21/2012 10:44:09 AM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 10:48:14 AM,2ND ST/MARKET ST,SF,94105,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",120810150-E13 -160401078,75,16015952,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:51:28 AM,02/09/2016 09:52:20 AM,02/09/2016 09:53:08 AM,02/09/2016 09:54:26 AM,02/09/2016 10:03:16 AM,02/09/2016 10:15:15 AM,02/09/2016 10:33:18 AM,Code 2 Transport,02/09/2016 11:09:18 AM,100 Block of SANTA MARINA ST,San Francisco,94110,B06,32,5652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7395201844996, -122.420491573507)",160401078-75 -110990074,E40,11032785,Transfer,04/09/2011,04/08/2011,04/09/2011 07:44:33 AM,04/09/2011 07:45:00 AM,04/09/2011 07:45:16 AM,04/09/2011 07:46:35 AM,04/09/2011 07:49:51 AM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/09/2011 08:02:41 AM,2000 Block of 19TH AVE,SF,94116,B08,40,7417,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",110990074-E40 -132560364,E12,13086705,Medical Incident,09/13/2013,09/13/2013,09/13/2013 08:41:28 PM,09/13/2013 08:42:21 PM,09/13/2013 08:42:29 PM,09/13/2013 08:43:56 PM,09/13/2013 08:45:39 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 09:01:32 PM,100 Block of EDGEWOOD AVE,SF,94117,B05,12,5154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Inner Sunset,"(37.7634208296019, -122.454876622631)",132560364-E12 -130350352,E05,13012125,Medical Incident,02/04/2013,02/04/2013,02/04/2013 06:27:43 PM,02/04/2013 06:28:50 PM,02/04/2013 06:30:31 PM,02/04/2013 06:30:49 PM,02/04/2013 06:34:37 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Other,02/04/2013 06:46:06 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",130350352-E05 -120580072,E41,12019022,Traffic Collision,02/27/2012,02/27/2012,02/27/2012 08:06:18 AM,02/27/2012 08:07:09 AM,02/27/2012 08:07:22 AM,02/27/2012 08:08:46 AM,02/27/2012 08:10:35 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/27/2012 08:14:38 AM,WASHINGTON ST/POLK ST,SF,94109,B04,41,3124,3,2,2,false,Non Life-threatening,1,ENGINE,2,4,3,Russian Hill,"(37.7932578660017, -122.421229982115)",120580072-E41 -113280074,88,11108790,Medical Incident,11/24/2011,11/24/2011,11/24/2011 08:56:41 AM,11/24/2011 08:58:05 AM,11/24/2011 08:58:20 AM,11/24/2011 08:58:31 AM,11/24/2011 09:04:12 AM,11/24/2011 09:21:47 AM,11/24/2011 09:30:46 AM,Code 2 Transport,11/24/2011 09:39:42 AM,500 Block of CHESTNUT ST,SF,94133,B01,28,1424,3,3,3,true,,1,MEDIC,3,1,3,North Beach,"(37.8038310510819, -122.412205193918)",113280074-88 -160323024,AM14,16012714,Medical Incident,02/01/2016,02/01/2016,02/01/2016 06:53:55 PM,02/01/2016 06:54:35 PM,02/01/2016 06:55:10 PM,02/01/2016 06:55:49 PM,02/01/2016 07:01:26 PM,02/01/2016 07:32:30 PM,02/01/2016 08:09:14 PM,Code 2 Transport,02/01/2016 08:32:26 PM,1200 Block of SILVER AVE,San Francisco,94134,B10,42,6356,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7308246140879, -122.410982908601)",160323024-AM14 -103460234,E18,10110993,Medical Incident,12/12/2010,12/12/2010,12/12/2010 02:34:04 PM,12/12/2010 02:35:40 PM,12/12/2010 02:35:55 PM,12/12/2010 02:36:33 PM,12/12/2010 02:38:50 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 03:01:13 PM,2800 Block of NORIEGA ST,SF,94122,B08,18,7573,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.753515955384, -122.494158682075)",103460234-E18 -111210386,E19,11040120,Structure Fire,05/01/2011,05/01/2011,05/01/2011 08:43:31 PM,05/01/2011 08:44:15 PM,05/01/2011 08:44:31 PM,05/01/2011 08:45:39 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 08:49:43 PM,200 Block of HOLLOWAY AVE,SF,94112,B09,15,8473,3,3,3,true,,1,ENGINE,7,9,7,Oceanview/Merced/Ingleside,"(37.7219021621891, -122.455634489655)",111210386-E19 -120430079,88,12014312,Medical Incident,02/12/2012,02/11/2012,02/12/2012 04:56:23 AM,02/12/2012 04:57:27 AM,02/12/2012 04:58:09 AM,02/12/2012 05:01:51 AM,02/12/2012 05:10:05 AM,02/12/2012 05:26:06 AM,02/12/2012 05:58:02 AM,Code 2 Transport,02/12/2012 05:59:34 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",120430079-88 -130920024,RC3,13030675,Medical Incident,04/02/2013,04/01/2013,04/02/2013 02:36:15 AM,04/02/2013 02:38:45 AM,04/02/2013 02:39:07 AM,04/02/2013 02:41:14 AM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,Other,04/02/2013 02:46:28 AM,1800 Block of 25TH ST,SF,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Potrero Hill,"(37.7523071859772, -122.397488168993)",130920024-RC3 -102780203,63,10088390,Medical Incident,10/05/2010,10/05/2010,10/05/2010 12:54:18 PM,10/05/2010 12:54:18 PM,10/05/2010 12:54:18 PM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,10/05/2010 01:11:01 PM,10/05/2010 01:38:41 PM,Fire,10/05/2010 02:02:39 PM,OCEAN AV/PLYMOUTH AV,SF,94112,B09,15,8472,2,2,2,true,,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",102780203-63 -132450151,E13,13082644,Alarms,09/02/2013,09/02/2013,09/02/2013 10:49:55 AM,09/02/2013 10:51:22 AM,09/02/2013 10:51:45 AM,09/02/2013 10:52:27 AM,09/02/2013 10:57:19 AM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/02/2013 11:19:56 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",132450151-E13 -103570014,KM15,10114427,Medical Incident,12/23/2010,12/22/2010,12/23/2010 01:01:56 AM,12/23/2010 01:02:03 AM,12/23/2010 01:02:59 AM,12/23/2010 01:03:55 AM,12/23/2010 01:06:29 AM,12/23/2010 01:20:15 AM,12/23/2010 01:26:38 AM,Code 3 Transport,12/23/2010 02:00:31 AM,200 Block of 9TH AVE,SF,94118,B07,31,7136,3,3,3,false,,1,PRIVATE,2,7,1,Inner Richmond,"(37.7837322868318, -122.46776577374)",103570014-KM15 -121210056,KM15,12040079,Medical Incident,04/30/2012,04/29/2012,04/30/2012 05:30:29 AM,04/30/2012 05:32:37 AM,04/30/2012 05:33:03 AM,04/30/2012 05:33:38 AM,04/30/2012 05:41:50 AM,04/30/2012 05:55:46 AM,04/30/2012 06:11:23 AM,Code 2 Transport,04/30/2012 06:33:19 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121210056-KM15 -160621518,KM04,16024670,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:31:51 AM,03/02/2016 11:33:42 AM,03/02/2016 11:34:17 AM,03/02/2016 11:36:50 AM,03/02/2016 11:39:14 AM,03/02/2016 11:51:22 AM,03/02/2016 11:59:53 AM,Code 2 Transport,03/02/2016 12:18:32 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",160621518-KM04 -121560122,89,12051591,Medical Incident,06/04/2012,06/04/2012,06/04/2012 10:02:28 AM,06/04/2012 10:05:05 AM,06/04/2012 10:08:43 AM,06/04/2012 10:08:57 AM,06/04/2012 10:13:24 AM,04/25/2016 01:58:22 PM,04/25/2016 01:58:22 PM,Patient Declined Transport,06/04/2012 10:32:50 AM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7362394819721, -122.393112998589)",121560122-89 -121800355,E15,12060078,Medical Incident,06/28/2012,06/28/2012,06/28/2012 09:18:48 PM,06/28/2012 09:23:52 PM,06/28/2012 09:25:10 PM,06/28/2012 09:25:53 PM,06/28/2012 09:27:15 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/28/2012 09:45:37 PM,200 Block of BRIGHTON AVE,SF,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7227602820685, -122.455200493072)",121800355-E15 -160360183,68,16014072,Medical Incident,02/05/2016,02/04/2016,02/05/2016 01:15:01 AM,02/05/2016 01:15:44 AM,02/05/2016 01:16:45 AM,02/05/2016 01:16:45 AM,02/05/2016 01:19:37 AM,02/05/2016 01:28:58 AM,02/05/2016 01:56:48 AM,Code 2 Transport,02/05/2016 02:28:16 AM,100 Block of FELL ST,San Francisco,94102,B02,36,3213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7762095925877, -122.420316347942)",160360183-68 -160472637,AM16,16019012,Medical Incident,02/16/2016,02/16/2016,02/16/2016 04:39:08 PM,02/16/2016 04:39:24 PM,02/16/2016 04:39:48 PM,02/16/2016 04:41:10 PM,02/16/2016 04:47:42 PM,02/16/2016 05:00:10 PM,02/16/2016 05:06:15 PM,Code 3 Transport,02/16/2016 05:43:17 PM,100 Block of MARVIEW WAY,San Francisco,94131,B08,20,5362,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.7549312025223, -122.448638523474)",160472637-AM16 -102600194,64,10082179,Medical Incident,09/17/2010,09/17/2010,09/17/2010 01:36:38 PM,09/17/2010 01:36:57 PM,09/17/2010 01:37:16 PM,09/17/2010 01:37:31 PM,09/17/2010 02:04:13 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,No Merit,09/17/2010 02:13:07 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,2,2,2,true,,1,MEDIC,1,1,3,North Beach,"(37.8083718015584, -122.414994322457)",102600194-64 -113300010,B02,11109292,Alarms,11/26/2011,11/25/2011,11/26/2011 01:21:38 AM,11/26/2011 01:23:24 AM,11/26/2011 01:23:31 AM,11/26/2011 01:25:15 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/26/2011 01:33:38 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,,1,CHIEF,3,2,6,South of Market,"(37.7764944808779, -122.411359138357)",113300010-B02 -103070560,68,10098534,Medical Incident,11/03/2010,11/03/2010,11/03/2010 11:25:14 PM,11/03/2010 11:25:14 PM,11/03/2010 11:26:06 PM,11/03/2010 11:26:39 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Other,11/03/2010 11:30:31 PM,HAIGHT ST/CLAYTON ST,SF,94117,B05,12,4525,E,E,3,true,,1,MEDIC,4,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",103070560-68 -131230028,84,13041295,Medical Incident,05/03/2013,05/02/2013,05/03/2013 02:17:52 AM,05/03/2013 02:17:52 AM,05/03/2013 02:17:52 AM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,No Merit,05/03/2013 02:24:04 AM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",131230028-84 -140520233,RS2,14017658,Structure Fire,02/21/2014,02/21/2014,02/21/2014 03:56:20 PM,02/21/2014 03:57:27 PM,02/21/2014 03:57:42 PM,02/21/2014 03:59:04 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Fire,02/21/2014 04:03:13 PM,2400 Block of 35TH AVE,SF,94116,B08,18,7554,3,3,3,false,Alarm,1,RESCUE SQUAD,10,8,4,Sunset/Parkside,"(37.7413584667856, -122.49284056995)",140520233-RS2 -160380972,91,16015124,Medical Incident,02/07/2016,02/07/2016,02/07/2016 08:08:42 AM,02/07/2016 08:10:09 AM,02/07/2016 08:10:25 AM,02/07/2016 08:11:28 AM,02/07/2016 08:18:15 AM,02/07/2016 08:37:31 AM,02/07/2016 08:46:38 AM,Code 3 Transport,02/07/2016 09:51:42 AM,2500 Block of ALEMANY BL,San Francisco,94112,B09,33,8345,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7150697980765, -122.446625468753)",160380972-91 -140120207,B02,14004175,Medical Incident,01/12/2014,01/12/2014,01/12/2014 03:58:39 PM,01/12/2014 03:59:38 PM,01/12/2014 04:00:12 PM,01/12/2014 04:01:27 PM,01/12/2014 04:05:19 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 04:17:29 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,E,E,3,false,Potentially Life-Threatening,1,CHIEF,3,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140120207-B02 -120890039,E07,12029353,Medical Incident,03/29/2012,03/28/2012,03/29/2012 05:36:39 AM,03/29/2012 05:38:14 AM,03/29/2012 05:38:54 AM,03/29/2012 05:40:23 AM,03/29/2012 05:42:43 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/29/2012 05:42:51 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7643815293641, -122.417340510338)",120890039-E07 -132640114,67,13089454,Medical Incident,09/21/2013,09/21/2013,09/21/2013 08:22:10 AM,09/21/2013 08:24:14 AM,09/21/2013 09:07:13 AM,09/21/2013 09:08:16 AM,09/21/2013 09:12:50 AM,09/21/2013 09:23:28 AM,09/21/2013 09:32:56 AM,Code 2 Transport,09/21/2013 10:02:15 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",132640114-67 -122400346,54,12079576,Medical Incident,08/27/2012,08/27/2012,08/27/2012 08:12:25 PM,08/27/2012 08:13:15 PM,08/27/2012 08:13:46 PM,08/27/2012 08:15:59 PM,08/27/2012 08:20:05 PM,08/27/2012 08:33:57 PM,08/27/2012 08:51:24 PM,Code 2 Transport,08/27/2012 09:29:01 PM,RHODE ISLAND ST/24TH ST,SF,94107,B10,37,2556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7532936004477, -122.401467891812)",122400346-54 -160493361,76,16019862,Medical Incident,02/18/2016,02/18/2016,02/18/2016 07:37:23 PM,02/18/2016 07:38:13 PM,02/18/2016 07:38:19 PM,02/18/2016 07:38:26 PM,02/18/2016 07:45:00 PM,02/18/2016 08:04:15 PM,02/18/2016 08:10:51 PM,Code 2 Transport,02/18/2016 08:44:46 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160493361-76 -131210346,93,13040792,Medical Incident,05/01/2013,05/01/2013,05/01/2013 07:34:35 PM,05/01/2013 07:36:07 PM,05/01/2013 07:36:28 PM,05/01/2013 07:36:44 PM,05/01/2013 07:48:01 PM,05/01/2013 07:58:21 PM,05/01/2013 08:18:32 PM,Code 2 Transport,05/01/2013 08:32:04 PM,2100 Block of GREENWICH ST,SF,94123,B04,16,3553,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7991105071928, -122.435056310717)",131210346-93 -131300147,KM09,13043880,Medical Incident,05/10/2013,05/10/2013,05/10/2013 12:15:13 PM,05/10/2013 12:16:03 PM,05/10/2013 12:16:28 PM,05/10/2013 12:17:18 PM,05/10/2013 12:21:20 PM,05/10/2013 12:30:31 PM,05/10/2013 12:56:51 PM,Code 2 Transport,05/10/2013 01:27:30 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",131300147-KM09 -120950331,E02,12031607,Medical Incident,04/04/2012,04/04/2012,04/04/2012 10:07:16 PM,04/04/2012 10:10:18 PM,04/04/2012 10:10:29 PM,04/04/2012 10:10:57 PM,04/04/2012 10:13:40 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 10:23:52 PM,2700 Block of TAYLOR ST,SF,94133,B01,28,1433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8077534960371, -122.415641041957)",120950331-E02 -132210009,E14,13074490,Structure Fire,08/09/2013,08/08/2013,08/09/2013 12:54:42 AM,08/09/2013 12:55:18 AM,08/09/2013 12:55:46 AM,08/09/2013 12:57:21 AM,08/09/2013 12:59:01 AM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/09/2013 02:53:51 AM,6100 Block of CALIFORNIA ST,SF,94121,B07,14,7214,3,3,3,true,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7840099058265, -122.483407053463)",132210009-E14 -160910136,82,16035930,Medical Incident,03/31/2016,03/30/2016,03/31/2016 01:09:09 AM,03/31/2016 01:10:06 AM,03/31/2016 01:12:43 AM,03/31/2016 01:12:56 AM,03/31/2016 01:19:06 AM,03/31/2016 01:44:07 AM,03/31/2016 02:08:01 AM,Code 2 Transport,03/31/2016 02:51:16 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160910136-82 -122190362,E16,12072808,Medical Incident,08/06/2012,08/06/2012,08/06/2012 10:20:36 PM,08/06/2012 10:21:20 PM,08/06/2012 10:21:32 PM,08/06/2012 10:23:07 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 10:28:28 PM,900 Block of BEACH ST,SF,94109,B01,28,3135,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,2,Russian Hill,"(37.806210458565, -122.424360355387)",122190362-E16 -110890400,65,11029586,Medical Incident,03/30/2011,03/30/2011,03/30/2011 10:40:15 PM,03/30/2011 10:43:20 PM,03/30/2011 10:43:49 PM,04/25/2016 02:05:22 PM,03/30/2011 10:45:43 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,No Merit,03/30/2011 10:53:45 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,A,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",110890400-65 -160823994,68,16032768,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:39:18 PM,03/22/2016 10:40:24 PM,03/22/2016 10:40:45 PM,03/22/2016 10:40:55 PM,03/22/2016 10:43:56 PM,03/22/2016 10:57:59 PM,03/22/2016 11:17:27 PM,Code 2 Transport,03/22/2016 11:45:00 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160823994-68 -160202613,68,16008080,Medical Incident,01/20/2016,01/20/2016,01/20/2016 04:20:32 PM,01/20/2016 04:22:05 PM,01/20/2016 04:22:37 PM,01/20/2016 04:22:45 PM,01/20/2016 04:27:42 PM,01/20/2016 04:34:57 PM,01/20/2016 04:58:13 PM,Code 2 Transport,01/20/2016 05:29:46 PM,SUTTER ST/MARKET ST,San Francisco,94104,B01,13,1164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7902901603061, -122.400152471245)",160202613-68 -140060160,E05,14002102,Medical Incident,01/06/2014,01/06/2014,01/06/2014 10:40:12 AM,01/06/2014 10:41:31 AM,01/06/2014 10:45:22 AM,01/06/2014 10:45:30 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 10:48:21 AM,1400 Block of PINE ST,SF,94109,B04,3,3122,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",140060160-E05 -123180232,E28,12105800,Administrative,11/13/2012,11/13/2012,11/13/2012 03:14:26 PM,11/13/2012 03:14:29 PM,11/13/2012 03:14:45 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 03:15:09 PM,1800 Block of STOCKTON ST,SF,94133,B01,28,1335,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8027782547729, -122.409586942281)",123180232-E28 -160521592,84,16020809,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:37:35 PM,02/21/2016 12:41:20 PM,02/21/2016 12:41:39 PM,02/21/2016 12:42:25 PM,02/21/2016 01:02:10 PM,02/21/2016 01:10:49 PM,02/21/2016 01:48:33 PM,Code 2 Transport,02/21/2016 02:23:08 PM,20TH ST/VALENCIA ST,San Francisco,94110,B06,7,5446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.758498510544, -122.421271730144)",160521592-84 -112850047,T02,11094272,Alarms,10/12/2011,10/11/2011,10/12/2011 05:14:01 AM,10/12/2011 05:15:15 AM,10/12/2011 05:16:09 AM,10/12/2011 05:18:52 AM,10/12/2011 05:22:19 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 05:24:10 AM,1100 Block of CLAY ST,SF,94108,B01,41,1444,3,3,3,false,,1,TRUCK,3,1,3,Nob Hill,"(37.7935326875045, -122.412480168701)",112850047-T02 -160801836,KM13,16031815,Medical Incident,03/20/2016,03/20/2016,03/20/2016 01:42:10 PM,03/20/2016 01:42:48 PM,03/20/2016 01:43:22 PM,03/20/2016 01:44:06 PM,03/20/2016 01:50:31 PM,03/20/2016 02:21:43 PM,03/20/2016 02:34:47 PM,Code 2 Transport,03/20/2016 03:09:45 PM,1300 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",160801836-KM13 -140320321,86,14010964,Other,02/01/2014,02/01/2014,02/01/2014 07:06:06 PM,02/01/2014 07:06:18 PM,02/01/2014 07:12:22 PM,02/01/2014 07:12:22 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/01/2014 07:53:19 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,,3,3,true,Alarm,1,MEDIC,3,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",140320321-86 -160212245,74,16008433,Medical Incident,01/21/2016,01/21/2016,01/21/2016 02:48:43 PM,01/21/2016 02:50:34 PM,01/21/2016 02:54:05 PM,01/21/2016 02:54:20 PM,01/21/2016 03:04:44 PM,01/21/2016 03:27:20 PM,01/21/2016 03:43:22 PM,Code 2 Transport,01/21/2016 04:30:21 PM,2400 Block of CALIFORNIA ST,San Francisco,94115,B04,38,3616,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7887473804417, -122.434651659294)",160212245-74 -111880268,E37,11062230,Water Rescue,07/07/2011,07/07/2011,07/07/2011 05:33:11 PM,07/07/2011 05:36:45 PM,07/07/2011 05:38:33 PM,07/07/2011 05:39:36 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/07/2011 05:39:42 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,,1,ENGINE,15,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",111880268-E37 -110080240,79,11002725,Medical Incident,01/08/2011,01/08/2011,01/08/2011 03:53:19 PM,01/08/2011 03:54:19 PM,01/08/2011 03:56:14 PM,01/08/2011 03:56:29 PM,01/08/2011 04:02:22 PM,01/08/2011 04:18:12 PM,01/08/2011 04:24:51 PM,Code 2 Transport,01/08/2011 04:47:23 PM,1800 Block of BUSH ST,SF,94109,B04,38,3363,2,2,2,true,,1,MEDIC,1,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",110080240-79 -123030334,E33,12100627,Medical Incident,10/29/2012,10/29/2012,10/29/2012 04:03:12 PM,10/29/2012 04:04:00 PM,10/29/2012 04:04:14 PM,10/29/2012 04:05:29 PM,10/29/2012 04:08:28 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 04:13:41 PM,600 Block of BRUNSWICK ST,SF,94112,B09,33,6214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7092872123477, -122.447216818163)",123030334-E33 -132730333,RS2,13092893,Medical Incident,09/30/2013,09/30/2013,09/30/2013 07:21:44 PM,09/30/2013 07:21:59 PM,09/30/2013 07:24:59 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 07:30:16 PM,JONES ST/GOLDEN GATE AV,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",132730333-RS2 -160060616,89,16002293,Medical Incident,01/06/2016,01/05/2016,01/06/2016 07:43:07 AM,01/06/2016 07:44:17 AM,01/06/2016 07:45:03 AM,01/06/2016 07:45:25 AM,01/06/2016 08:00:37 AM,01/06/2016 08:21:55 AM,01/06/2016 08:43:47 AM,Code 2 Transport,01/06/2016 09:36:25 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160060616-89 -160251170,57,16009872,Medical Incident,01/25/2016,01/25/2016,01/25/2016 10:08:13 AM,01/25/2016 10:08:36 AM,01/25/2016 10:13:50 AM,01/25/2016 10:13:50 AM,01/25/2016 10:28:57 AM,01/25/2016 10:28:59 AM,01/25/2016 10:53:03 AM,Code 2 Transport,01/25/2016 11:27:42 AM,POWELL ST/BROADWAY,San Francisco,94133,B01,2,1353,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7974201856554, -122.410263526117)",160251170-57 -112080176,E40,11068684,Medical Incident,07/27/2011,07/27/2011,07/27/2011 01:00:29 PM,07/27/2011 01:02:51 PM,07/27/2011 01:03:47 PM,07/27/2011 01:05:02 PM,07/27/2011 01:09:28 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 01:26:02 PM,2500 Block of 25TH AVE,SF,94116,B08,40,7462,2,2,2,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7399677614762, -122.481993144476)",112080176-E40 -102700004,83,10085509,Medical Incident,09/27/2010,09/26/2010,09/27/2010 12:16:01 AM,09/27/2010 12:16:25 AM,09/27/2010 12:16:39 AM,09/27/2010 12:17:06 AM,09/27/2010 12:26:29 AM,09/27/2010 12:50:20 AM,09/27/2010 01:08:36 AM,Code 2 Transport,09/27/2010 01:22:01 AM,0 Block of GOETTINGEN ST,SF,94134,B10,42,6356,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7310232063749, -122.408217325833)",102700004-83 -131140253,RS2,13038489,Medical Incident,04/24/2013,04/24/2013,04/24/2013 03:30:41 PM,04/24/2013 03:31:29 PM,04/24/2013 03:32:22 PM,04/24/2013 03:33:44 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 03:36:34 PM,2500 Block of BRYANT ST,SF,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,6,9,Mission,"(37.7536039830321, -122.409137616637)",131140253-RS2 -121080245,59,12035809,Medical Incident,04/17/2012,04/17/2012,04/17/2012 04:35:09 PM,04/17/2012 04:35:28 PM,04/17/2012 04:35:39 PM,04/17/2012 04:36:16 PM,04/17/2012 04:42:25 PM,04/17/2012 05:08:16 PM,04/17/2012 05:12:01 PM,Code 2 Transport,04/17/2012 05:53:21 PM,2100 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.783357968274, -122.438601387081)",121080245-59 -160601122,AM02,16023840,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:14:16 AM,02/29/2016 10:14:16 AM,02/29/2016 10:14:36 AM,02/29/2016 10:15:22 AM,02/29/2016 10:18:34 AM,02/29/2016 10:37:41 AM,02/29/2016 10:50:11 AM,Code 2 Transport,02/29/2016 11:24:41 AM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160601122-AM02 -122140201,E36,12071030,Alarms,08/01/2012,08/01/2012,08/01/2012 02:16:21 PM,08/01/2012 02:17:36 PM,08/01/2012 02:18:04 PM,08/01/2012 02:19:29 PM,08/01/2012 02:21:23 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/01/2012 02:40:21 PM,1900 Block of MISSION ST,SF,94103,B02,36,5279,3,3,3,false,Alarm,1,ENGINE,2,2,9,Mission,"(37.7658582826035, -122.419816092644)",122140201-E36 -122770265,KM12,12091587,Medical Incident,10/03/2012,10/03/2012,10/03/2012 02:26:59 PM,10/03/2012 02:27:14 PM,10/03/2012 02:30:43 PM,10/03/2012 02:31:22 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,Other,10/03/2012 02:41:02 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",122770265-KM12 -103600086,T02,10115459,Structure Fire,12/26/2010,12/26/2010,12/26/2010 10:53:16 AM,12/26/2010 10:53:17 AM,12/26/2010 10:53:27 AM,12/26/2010 10:54:14 AM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 10:56:04 AM,GRANT AV/BROADWAY,SF,94133,B01,2,1311,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",103600086-T02 -133460246,KM06,13117440,Medical Incident,12/12/2013,12/12/2013,12/12/2013 03:08:33 PM,12/12/2013 03:10:33 PM,12/12/2013 03:14:35 PM,12/12/2013 03:15:24 PM,12/12/2013 03:19:04 PM,12/12/2013 03:48:15 PM,12/12/2013 04:01:44 PM,Code 2 Transport,12/12/2013 04:25:32 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",133460246-KM06 -140580118,E03,14019512,Medical Incident,02/27/2014,02/27/2014,02/27/2014 10:17:18 AM,02/27/2014 10:18:08 AM,02/27/2014 10:19:39 AM,02/27/2014 10:20:19 AM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Code 2 Transport,02/27/2014 10:24:04 AM,2000 Block of GOUGH ST,SF,94109,B04,38,3253,3,3,3,false,Potentially Life-Threatening,1,ENGINE,4,4,2,Pacific Heights,"(37.7922040282598, -122.426000258192)",140580118-E03 -120390037,86,12012880,Medical Incident,02/08/2012,02/07/2012,02/08/2012 05:43:42 AM,02/08/2012 05:44:36 AM,02/08/2012 05:44:45 AM,02/08/2012 05:45:12 AM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Other,02/08/2012 05:53:45 AM,1200 Block of GOUGH ST,SF,94109,B04,3,3261,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7843759652994, -122.42442259558)",120390037-86 -121540217,RS1,12051010,Structure Fire,06/02/2012,06/02/2012,06/02/2012 02:53:14 PM,06/02/2012 02:54:38 PM,06/02/2012 02:54:56 PM,06/02/2012 02:56:13 PM,06/02/2012 03:00:31 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 03:00:45 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Fire,1,RESCUE SQUAD,7,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121540217-RS1 -160913470,85,16036237,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:57:54 PM,03/31/2016 08:59:06 PM,03/31/2016 08:59:16 PM,03/31/2016 08:59:32 PM,03/31/2016 09:04:23 PM,03/31/2016 09:20:09 PM,03/31/2016 09:28:21 PM,Code 2 Transport,03/31/2016 09:57:29 PM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6121,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7234913181355, -122.435621772842)",160913470-85 -122700232,88,12089166,Medical Incident,09/26/2012,09/26/2012,09/26/2012 04:26:49 PM,09/26/2012 04:29:13 PM,09/26/2012 04:29:23 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,04/25/2016 01:56:35 PM,1400 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7287791192352, -122.388524913867)",122700232-88 -131800090,T11,13061128,Alarms,06/29/2013,06/29/2013,06/29/2013 08:52:59 AM,06/29/2013 08:54:38 AM,06/29/2013 08:54:46 AM,06/29/2013 08:55:41 AM,06/29/2013 08:57:21 AM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/29/2013 08:59:41 AM,500 Block of ELIZABETH ST,SF,94114,B06,11,5522,3,3,3,false,Alarm,1,TRUCK,1,6,8,Noe Valley,"(37.7521041525291, -122.433049553474)",131800090-T11 -132650196,T19,13089905,Water Rescue,09/22/2013,09/22/2013,09/22/2013 12:48:42 PM,09/22/2013 12:52:06 PM,09/22/2013 12:58:29 PM,09/22/2013 01:00:26 PM,09/22/2013 01:05:52 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/22/2013 01:11:15 PM,JOHN MUIR DR/SKYLINE BL,SF,94132,B08,19,8714,3,3,3,false,Fire,1,TRUCK,1,8,7,Lakeshore,"(37.7189555597044, -122.500220952945)",132650196-T19 -122120159,AM16,12070348,Medical Incident,07/30/2012,07/30/2012,07/30/2012 11:39:39 AM,07/30/2012 11:41:22 AM,07/30/2012 11:41:45 AM,07/30/2012 11:43:32 AM,07/30/2012 12:01:37 PM,07/30/2012 12:12:59 PM,07/30/2012 12:44:59 PM,Code 2 Transport,07/30/2012 01:07:12 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,1,1,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",122120159-AM16 -160640434,63,16025362,Medical Incident,03/04/2016,03/03/2016,03/04/2016 05:16:04 AM,03/04/2016 05:18:05 AM,03/04/2016 05:18:25 AM,03/04/2016 05:18:33 AM,03/04/2016 05:24:33 AM,03/04/2016 05:35:27 AM,03/04/2016 05:40:53 AM,Code 2 Transport,03/04/2016 06:09:04 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160640434-63 -102820235,63,10089722,Medical Incident,10/09/2010,10/09/2010,10/09/2010 02:07:08 PM,10/09/2010 02:07:50 PM,10/09/2010 02:08:17 PM,10/09/2010 02:09:11 PM,10/09/2010 02:16:00 PM,10/09/2010 02:19:13 PM,10/09/2010 02:38:51 PM,Code 2 Transport,10/09/2010 02:39:03 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",102820235-63 -160202341,64,16008058,Medical Incident,01/20/2016,01/20/2016,01/20/2016 03:16:19 PM,01/20/2016 03:17:19 PM,01/20/2016 03:17:40 PM,01/20/2016 03:17:51 PM,01/20/2016 03:33:44 PM,01/20/2016 03:55:40 PM,01/20/2016 04:07:12 PM,Code 2 Transport,01/20/2016 04:49:29 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160202341-64 -120050299,E05,12001838,Structure Fire,01/05/2012,01/05/2012,01/05/2012 06:30:34 PM,01/05/2012 06:30:34 PM,01/05/2012 06:30:41 PM,01/05/2012 06:31:31 PM,01/05/2012 06:32:56 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Fire,01/05/2012 06:33:46 PM,FILLMORE ST/FELL ST,SF,94117,B05,5,3532,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.774902830471, -122.431011539466)",120050299-E05 -160383815,71,16015431,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:46:58 PM,02/07/2016 11:48:10 PM,02/07/2016 11:48:36 PM,02/07/2016 11:48:45 PM,02/07/2016 11:53:09 PM,02/08/2016 12:05:46 AM,02/08/2016 12:16:27 AM,Code 2 Transport,02/08/2016 12:50:59 AM,100 Block of 3RD ST,San Francisco,94103,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",160383815-71 -160553286,75,16022116,Medical Incident,02/24/2016,02/24/2016,02/24/2016 06:36:52 PM,02/24/2016 06:36:52 PM,02/24/2016 06:37:04 PM,02/24/2016 06:37:08 PM,02/24/2016 06:41:14 PM,02/24/2016 07:01:22 PM,02/24/2016 07:16:22 PM,Code 2 Transport,02/24/2016 07:50:48 PM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160553286-75 -140380205,KM04,14012839,Medical Incident,02/07/2014,02/07/2014,02/07/2014 01:26:32 PM,02/07/2014 01:27:07 PM,02/07/2014 01:28:12 PM,02/07/2014 01:29:55 PM,02/07/2014 01:47:41 PM,02/07/2014 01:55:59 PM,02/07/2014 02:21:16 PM,Code 2 Transport,02/07/2014 03:05:42 PM,200 Block of MONTGOMERY ST,SF,94104,B01,13,1235,3,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7914426036611, -122.40240755277)",140380205-KM04 -140860337,82,14029087,Medical Incident,03/27/2014,03/27/2014,03/27/2014 09:40:29 PM,03/27/2014 09:41:26 PM,03/27/2014 09:42:03 PM,03/27/2014 09:42:14 PM,03/27/2014 09:53:48 PM,03/27/2014 10:06:51 PM,03/27/2014 10:20:04 PM,Code 2 Transport,03/27/2014 10:56:41 PM,100 Block of 27TH ST,SAN FRANCISCO,94110,B06,11,5556,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7471574360743, -122.423541884062)",140860337-82 -132310301,65,13078098,Medical Incident,08/19/2013,08/19/2013,08/19/2013 04:58:42 PM,08/19/2013 04:59:01 PM,08/19/2013 04:59:12 PM,08/19/2013 04:59:26 PM,08/19/2013 05:09:04 PM,08/19/2013 05:16:58 PM,04/25/2016 01:51:13 PM,Code 3 Transport,08/19/2013 05:42:39 PM,SUNNYDALE AV/BAYSHORE BL,SF,94134,B10,44,6254,E,E,3,true,Potentially Life-Threatening,1,MEDIC,5,9,10,Bayview Hunters Point,"(37.7088536077159, -122.405109455132)",132310301-65 -120210121,E19,12007061,Alarms,01/21/2012,01/20/2012,01/21/2012 07:38:59 AM,01/21/2012 07:39:33 AM,01/21/2012 07:39:52 AM,01/21/2012 07:41:27 AM,01/21/2012 07:45:20 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 08:04:20 AM,900 Block of BROTHERHOOD WAY,SF,94132,B08,19,8774,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7144993922405, -122.482766475657)",120210121-E19 -120490328,B08,12016348,Alarms,02/18/2012,02/18/2012,02/18/2012 10:29:51 PM,02/18/2012 10:32:59 PM,02/18/2012 10:33:12 PM,02/18/2012 10:35:19 PM,02/18/2012 10:38:50 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Other,02/18/2012 10:53:01 PM,1400 Block of 10TH AVE,SF,94122,B08,22,7334,3,3,3,false,Alarm,1,CHIEF,2,8,7,Inner Sunset,"(37.7611931997962, -122.467256491478)",120490328-B08 -140370041,87,14012389,Medical Incident,02/06/2014,02/05/2014,02/06/2014 04:07:23 AM,02/06/2014 04:09:25 AM,02/06/2014 04:43:51 AM,02/06/2014 04:43:51 AM,02/06/2014 05:03:47 AM,02/06/2014 05:06:44 AM,02/06/2014 05:29:31 AM,Other,02/06/2014 05:58:10 AM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.8046368314261, -122.414251200714)",140370041-87 -133570243,T02,13121418,Structure Fire,12/23/2013,12/23/2013,12/23/2013 04:21:01 PM,12/23/2013 04:21:01 PM,12/23/2013 04:22:36 PM,12/23/2013 04:24:19 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 04:26:55 PM,MASON ST/PINE ST,SF,94108,B01,41,1413,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7908806970808, -122.410622872864)",133570243-T02 -113520320,E08,11116979,Structure Fire,12/18/2011,12/18/2011,12/18/2011 07:34:28 PM,12/18/2011 07:35:00 PM,12/18/2011 07:35:24 PM,04/25/2016 02:01:05 PM,12/18/2011 07:39:44 PM,04/25/2016 02:01:05 PM,04/25/2016 02:01:05 PM,Other,12/18/2011 07:41:49 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,7,3,6,South of Market,"(37.7801303744947, -122.409871449933)",113520320-E08 -133480383,68,13118284,Medical Incident,12/14/2013,12/14/2013,12/14/2013 09:13:01 PM,12/14/2013 09:14:56 PM,12/14/2013 09:15:17 PM,12/14/2013 09:15:28 PM,12/14/2013 09:20:37 PM,12/14/2013 09:40:57 PM,12/14/2013 09:57:30 PM,Code 2 Transport,12/14/2013 10:26:40 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",133480383-68 -121580107,KM12,12052213,Medical Incident,06/06/2012,06/06/2012,06/06/2012 09:53:11 AM,06/06/2012 09:54:42 AM,06/06/2012 09:55:16 AM,06/06/2012 09:56:02 AM,06/06/2012 10:02:31 AM,06/06/2012 10:16:09 AM,06/06/2012 10:28:26 AM,Code 2 Transport,06/06/2012 10:50:27 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",121580107-KM12 -160071509,88,16002817,Medical Incident,01/07/2016,01/07/2016,01/07/2016 11:51:12 AM,01/07/2016 11:53:05 AM,01/07/2016 11:53:30 AM,01/07/2016 11:53:37 AM,01/07/2016 12:01:15 PM,01/07/2016 12:08:36 PM,01/07/2016 12:40:03 PM,Code 2 Transport,01/07/2016 01:24:34 PM,VAN DYKE AV/INGALLS ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7259856664173, -122.386800107579)",160071509-88 -140010020,AM04,14000013,Medical Incident,01/01/2014,12/31/2013,01/01/2014 12:15:48 AM,01/01/2014 12:17:59 AM,01/01/2014 12:18:57 AM,01/01/2014 12:20:05 AM,01/01/2014 12:23:29 AM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Unable to Locate,01/01/2014 12:27:07 AM,BATTERY ST/WASHINGTON ST,SF,94111,B01,13,1142,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7958750038383, -122.400485537558)",140010020-AM04 -140140051,E08,14004693,Medical Incident,01/14/2014,01/13/2014,01/14/2014 04:55:04 AM,01/14/2014 04:56:24 AM,01/14/2014 04:57:00 AM,01/14/2014 04:58:40 AM,01/14/2014 05:01:39 AM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/14/2014 05:10:05 AM,400 Block of BERRY ST,SF,94107,B03,8,2262,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",140140051-E08 -131490052,E09,13050412,Medical Incident,05/29/2013,05/28/2013,05/29/2013 06:38:33 AM,05/29/2013 06:40:17 AM,05/29/2013 06:41:22 AM,05/29/2013 06:43:10 AM,05/29/2013 06:49:03 AM,04/25/2016 01:52:33 PM,04/25/2016 01:52:33 PM,Other,05/29/2013 07:05:25 AM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",131490052-E09 -140250130,AM02,14008520,Medical Incident,01/25/2014,01/25/2014,01/25/2014 10:43:13 AM,01/25/2014 10:46:44 AM,01/25/2014 10:47:27 AM,01/25/2014 10:47:53 AM,01/25/2014 10:54:04 AM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Unable to Locate,01/25/2014 10:56:12 AM,25TH AV/CLEMENT ST,SF,94121,B07,14,7214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7820254939242, -122.484874258894)",140250130-AM02 -111670028,94,11054999,Medical Incident,06/16/2011,06/15/2011,06/16/2011 03:11:09 AM,06/16/2011 03:12:09 AM,06/16/2011 03:12:29 AM,06/16/2011 03:12:42 AM,06/16/2011 03:18:56 AM,06/16/2011 03:26:02 AM,06/16/2011 04:03:00 AM,Code 2 Transport,06/16/2011 04:20:07 AM,200 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7668131434468, -122.428952855226)",111670028-94 -112410110,E38,11079467,Medical Incident,08/29/2011,08/29/2011,08/29/2011 10:26:30 AM,08/29/2011 10:27:28 AM,08/29/2011 10:29:07 AM,08/29/2011 10:29:54 AM,08/29/2011 10:33:14 AM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 10:51:48 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,2,2,2,false,,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",112410110-E38 -102810419,RS2,10089518,Traffic Collision,10/08/2010,10/08/2010,10/08/2010 11:27:30 PM,10/08/2010 11:27:44 PM,10/08/2010 11:28:26 PM,10/08/2010 11:29:01 PM,10/08/2010 11:31:08 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/09/2010 12:06:23 AM,400 Block of SAN BRUNO AVE,SF,94110,B10,29,2421,3,3,3,false,,1,RESCUE SQUAD,1,2,10,Potrero Hill,"(37.7639386424608, -122.405469974111)",102810419-RS2 -130700025,E03,13023205,Medical Incident,03/11/2013,03/10/2013,03/11/2013 02:15:45 AM,03/11/2013 02:16:04 AM,03/11/2013 02:16:26 AM,03/11/2013 02:17:56 AM,03/11/2013 02:19:16 AM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,Other,03/11/2013 02:31:17 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",130700025-E03 -160451752,74,16018129,Medical Incident,02/14/2016,02/14/2016,02/14/2016 01:34:49 PM,02/14/2016 01:37:03 PM,02/14/2016 01:37:56 PM,02/14/2016 01:38:05 PM,02/14/2016 01:48:28 PM,02/14/2016 02:13:14 PM,02/14/2016 02:17:18 PM,Code 2 Transport,02/14/2016 02:52:56 PM,WASHINGTON ST/FILLMORE ST,San Francisco,94115,B04,38,3545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7915916498341, -122.434380485478)",160451752-74 -112460024,E01,11080980,Medical Incident,09/03/2011,09/02/2011,09/03/2011 01:25:01 AM,09/03/2011 01:27:05 AM,09/03/2011 01:27:23 AM,04/25/2016 02:02:52 PM,09/03/2011 01:43:25 AM,09/03/2011 01:48:28 AM,09/03/2011 01:53:11 AM,Other,09/03/2011 01:47:14 AM,MARKET ST/CYRIL MAGNIN ST,SF,94103,B03,1,1366,E,E,3,true,,1,ENGINE,5,3,6,South of Market,"(37.7839914857614, -122.408066547804)",112460024-E01 -140380137,KM01,14012782,Medical Incident,02/07/2014,02/07/2014,02/07/2014 10:55:15 AM,02/07/2014 10:57:59 AM,02/07/2014 10:59:08 AM,02/07/2014 11:00:19 AM,02/07/2014 11:07:50 AM,02/07/2014 11:31:58 AM,02/07/2014 11:41:42 AM,Code 2 Transport,02/07/2014 12:27:25 PM,1200 Block of BUSH ST,SF,94109,B04,3,1636,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.788955611099, -122.417825829364)",140380137-KM01 -160340914,77,16013297,Structure Fire,02/03/2016,02/03/2016,02/03/2016 09:23:05 AM,02/03/2016 09:23:05 AM,02/03/2016 09:26:07 AM,02/03/2016 09:26:07 AM,02/03/2016 09:26:07 AM,02/03/2016 09:36:01 AM,02/03/2016 09:47:43 AM,Code 2 Transport,02/03/2016 10:32:44 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",160340914-77 -122890041,E13,12095498,Alarms,10/15/2012,10/14/2012,10/15/2012 04:10:21 AM,10/15/2012 04:11:29 AM,10/15/2012 04:11:39 AM,10/15/2012 04:13:20 AM,10/15/2012 04:14:31 AM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/15/2012 04:24:02 AM,500 Block of SACRAMENTO ST,SF,94111,B01,13,1166,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7938844190655, -122.402569303912)",122890041-E13 -131830183,RS2,13062355,Medical Incident,07/02/2013,07/02/2013,07/02/2013 01:15:38 PM,07/02/2013 01:15:38 PM,07/02/2013 01:15:38 PM,04/25/2016 01:52:00 PM,07/02/2013 01:17:18 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 01:40:14 PM,100 Block of OTIS ST,SF,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",131830183-RS2 -123260118,E07,12108397,Medical Incident,11/21/2012,11/21/2012,11/21/2012 09:36:25 AM,11/21/2012 09:37:13 AM,11/21/2012 09:38:32 AM,11/21/2012 09:40:28 AM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,Other,11/21/2012 09:44:37 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",123260118-E07 -103490264,77,10111991,Traffic Collision,12/15/2010,12/15/2010,12/15/2010 05:15:59 PM,12/15/2010 05:16:30 PM,12/15/2010 05:16:42 PM,04/25/2016 02:07:06 PM,12/15/2010 05:23:32 PM,12/15/2010 05:35:41 PM,12/15/2010 05:46:03 PM,Code 2 Transport,12/15/2010 06:12:30 PM,SAINT JOSEPHS AV/OFARRELL ST,SF,94115,B05,10,4261,3,3,3,true,,1,MEDIC,2,5,2,Western Addition,"(37.782233945745, -122.441671637841)",103490264-77 -112820133,T05,11093295,Alarms,10/09/2011,10/09/2011,10/09/2011 10:47:06 AM,10/09/2011 10:48:34 AM,10/09/2011 10:48:49 AM,10/09/2011 10:50:33 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 10:51:51 AM,1700 Block of OFARRELL ST,SF,94115,B04,5,3623,3,3,3,false,,1,TRUCK,4,5,5,Western Addition,"(37.7831335757278, -122.43351731554)",112820133-T05 -122570356,T07,12085117,Structure Fire,09/13/2012,09/13/2012,09/13/2012 11:26:19 PM,09/13/2012 11:28:14 PM,09/13/2012 11:28:36 PM,09/13/2012 11:30:24 PM,09/13/2012 11:38:40 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/14/2012 12:05:39 AM,FOLSOM ST/PRECITA AV,SF,94110,B06,11,5664,3,3,3,false,Fire,1,TRUCK,8,6,9,Bernal Heights,"(37.7471710211027, -122.413571133066)",122570356-T07 -112010032,E01,11066159,Medical Incident,07/20/2011,07/19/2011,07/20/2011 03:42:07 AM,07/20/2011 03:43:23 AM,07/20/2011 03:43:39 AM,07/20/2011 03:45:03 AM,07/20/2011 03:47:32 AM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/20/2011 03:52:13 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",112010032-E01 -130070026,67,13002249,Medical Incident,01/07/2013,01/06/2013,01/07/2013 02:40:49 AM,01/07/2013 02:43:13 AM,01/07/2013 02:43:32 AM,01/07/2013 02:43:40 AM,01/07/2013 02:49:55 AM,01/07/2013 02:59:58 AM,01/07/2013 03:10:15 AM,Code 2 Transport,01/07/2013 03:13:33 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",130070026-67 -130430004,68,13014489,Medical Incident,02/12/2013,02/11/2013,02/12/2013 12:27:11 AM,02/12/2013 12:30:51 AM,02/12/2013 12:31:48 AM,02/12/2013 12:32:10 AM,02/12/2013 12:48:57 AM,02/12/2013 01:07:45 AM,02/12/2013 01:26:31 AM,Code 2 Transport,02/12/2013 01:52:09 AM,0 Block of TURK ST,SF,94102,B03,1,1365,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",130430004-68 -140980416,E06,14033224,Medical Incident,04/08/2014,04/08/2014,04/08/2014 07:57:42 PM,04/08/2014 08:01:34 PM,04/08/2014 08:01:58 PM,04/08/2014 08:02:40 PM,04/08/2014 08:06:12 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Code 2 Transport,04/08/2014 08:15:31 PM,GUERRERO ST/15TH ST,SAN FRANCISCO,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7664057681804, -122.42425811346)",140980416-E06 -133470055,T07,13117644,Citizen Assist / Service Call,12/13/2013,12/12/2013,12/13/2013 05:22:41 AM,12/13/2013 05:24:38 AM,12/13/2013 05:24:43 AM,12/13/2013 05:27:34 AM,12/13/2013 05:33:26 AM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/13/2013 05:40:07 AM,100 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5116,3,3,3,false,Alarm,1,TRUCK,1,2,6,Mission,"(37.7705590121375, -122.417949585261)",133470055-T07 -103650028,E07,10116951,Structure Fire,12/31/2010,12/30/2010,12/31/2010 02:03:37 AM,12/31/2010 02:04:24 AM,12/31/2010 02:05:12 AM,12/31/2010 02:07:13 AM,12/31/2010 02:10:21 AM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/31/2010 02:20:42 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,,1,ENGINE,6,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",103650028-E07 -121860317,E51,12062071,Outside Fire,07/04/2012,07/04/2012,07/04/2012 08:31:02 PM,07/04/2012 08:31:50 PM,07/04/2012 08:32:21 PM,07/04/2012 08:34:14 PM,07/04/2012 08:37:56 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 09:04:56 PM,0 Block of YACHT RD,SF,94123,B04,16,4215,3,3,3,true,Fire,1,ENGINE,1,None,2,Marina,"(37.8067582085576, -122.446916219003)",121860317-E51 -160784215,85,16031236,Medical Incident,03/18/2016,03/18/2016,03/18/2016 11:53:30 PM,03/18/2016 11:53:30 PM,03/18/2016 11:53:40 PM,03/18/2016 11:53:54 PM,03/18/2016 11:58:53 PM,03/19/2016 12:03:29 AM,03/19/2016 12:18:08 AM,Code 2 Transport,03/19/2016 12:52:46 AM,HOWARD ST/8TH ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762213544451, -122.411606113878)",160784215-85 -112460330,71,11081251,Medical Incident,09/03/2011,09/03/2011,09/03/2011 08:50:49 PM,09/03/2011 08:50:50 PM,09/03/2011 08:52:05 PM,09/03/2011 08:52:23 PM,09/03/2011 08:58:39 PM,09/03/2011 09:43:56 PM,09/03/2011 10:09:13 PM,Code 2 Transport,09/03/2011 10:36:48 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",112460330-71 -132940201,E02,13100003,Administrative,10/21/2013,10/21/2013,10/21/2013 01:09:44 PM,10/21/2013 01:09:48 PM,10/21/2013 01:10:22 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 01:10:48 PM,1300 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",132940201-E02 -130550285,E41,13018655,Medical Incident,02/24/2013,02/24/2013,02/24/2013 07:09:38 PM,02/24/2013 07:11:53 PM,02/24/2013 07:11:59 PM,02/24/2013 07:13:19 PM,02/24/2013 07:16:03 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Other,02/24/2013 07:39:19 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,E,E,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",130550285-E41 -160032722,68,16001318,Medical Incident,01/03/2016,01/03/2016,01/03/2016 07:07:09 PM,01/03/2016 07:09:09 PM,01/03/2016 07:09:21 PM,01/03/2016 07:09:28 PM,01/03/2016 07:12:21 PM,01/03/2016 07:27:31 PM,01/03/2016 07:51:58 PM,Code 2 Transport,01/03/2016 07:59:11 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160032722-68 -111120168,E36,11036985,Odor (Strange / Unknown),04/22/2011,04/22/2011,04/22/2011 11:51:14 AM,04/22/2011 11:54:18 AM,04/22/2011 11:55:00 AM,04/22/2011 12:05:09 PM,04/22/2011 01:56:50 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 02:09:14 PM,1900 Block of PAGE ST,SF,94117,B05,12,4553,3,3,3,true,,1,ENGINE,7,5,5,Haight Ashbury,"(37.7702606599781, -122.452901890861)",111120168-E36 -120960265,E23,12031860,Structure Fire,04/05/2012,04/05/2012,04/05/2012 05:01:33 PM,04/05/2012 05:02:04 PM,04/05/2012 05:02:21 PM,04/05/2012 05:03:38 PM,04/05/2012 05:07:06 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Other,04/05/2012 05:12:13 PM,2300 Block of 35TH AVE,SF,94116,B08,18,7555,3,3,3,false,Fire,1,ENGINE,3,8,4,Sunset/Parkside,"(37.743232255412, -122.492833251462)",120960265-E23 -110530078,59,11017444,Medical Incident,02/22/2011,02/22/2011,02/22/2011 09:22:52 AM,02/22/2011 09:24:53 AM,02/22/2011 09:25:26 AM,02/22/2011 09:25:45 AM,02/22/2011 09:30:38 AM,02/22/2011 09:57:03 AM,02/22/2011 10:16:21 AM,Code 2 Transport,02/22/2011 11:00:45 AM,1200 Block of MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",110530078-59 -110920259,KM01,11030601,Medical Incident,04/02/2011,04/02/2011,04/02/2011 05:34:09 PM,04/02/2011 05:35:10 PM,04/02/2011 05:35:27 PM,04/02/2011 05:36:36 PM,04/02/2011 05:40:21 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Patient Declined Transport,04/02/2011 05:43:54 PM,VALENCIA ST/16TH ST,SF,94103,B02,6,5226,3,3,3,false,,1,PRIVATE,2,2,8,Mission,"(37.7649173790256, -122.421886447232)",110920259-KM01 -160823088,53,16032690,Medical Incident,03/22/2016,03/22/2016,03/22/2016 06:05:20 PM,03/22/2016 06:06:43 PM,03/22/2016 06:06:56 PM,03/22/2016 06:07:07 PM,03/22/2016 06:20:03 PM,03/22/2016 06:29:31 PM,03/22/2016 06:55:58 PM,Code 2 Transport,03/22/2016 07:17:01 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160823088-53 -130460072,B06,13015518,Structure Fire,02/15/2013,02/14/2013,02/15/2013 07:14:01 AM,02/15/2013 07:14:02 AM,02/15/2013 07:14:15 AM,02/15/2013 07:15:55 AM,02/15/2013 07:19:32 AM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Fire,02/15/2013 07:28:51 AM,500 Block of PORTOLA DR,SF,94131,B06,20,5353,3,3,3,false,Alarm,1,CHIEF,2,6,8,Glen Park,"(37.7455667070932, -122.451155727844)",130460072-B06 -160253154,57,16010071,Medical Incident,01/25/2016,01/25/2016,01/25/2016 07:03:54 PM,01/25/2016 07:07:20 PM,01/25/2016 07:10:50 PM,01/25/2016 07:10:55 PM,01/25/2016 07:24:05 PM,01/25/2016 07:34:29 PM,01/25/2016 07:53:18 PM,Code 2 Transport,01/25/2016 08:18:57 PM,1000 Block of POINT LOBOS AVE,San Francisco,94121,B07,34,7314,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",160253154-57 -130250276,AM08,13008698,Medical Incident,01/25/2013,01/25/2013,01/25/2013 04:28:46 PM,01/25/2013 04:30:20 PM,01/25/2013 04:30:59 PM,01/25/2013 04:31:43 PM,01/25/2013 04:33:12 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/25/2013 04:33:31 PM,BELVEDERE ST/17TH ST,SF,94117,B05,12,5163,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7617264200069, -122.447780350679)",130250276-AM08 -123180191,E06,12105770,Medical Incident,11/13/2012,11/13/2012,11/13/2012 12:43:27 PM,11/13/2012 12:45:46 PM,11/13/2012 12:45:57 PM,11/13/2012 12:47:48 PM,11/13/2012 12:49:38 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 01:03:11 PM,3500 Block of 17TH ST,SF,94110,B02,6,5251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7631541226795, -122.425099106789)",123180191-E06 -120190354,E11,12006498,Medical Incident,01/19/2012,01/19/2012,01/19/2012 10:05:04 PM,01/19/2012 10:05:41 PM,01/19/2012 10:06:04 PM,01/19/2012 10:06:53 PM,01/19/2012 10:09:11 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 10:14:40 PM,200 Block of CLIPPER ST,SF,94114,B06,11,5537,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7491478181193, -122.430536253107)",120190354-E11 -160490390,79,16019614,Traffic Collision,02/18/2016,02/17/2016,02/18/2016 06:17:01 AM,02/18/2016 06:18:23 AM,02/18/2016 06:18:41 AM,02/18/2016 06:18:48 AM,02/18/2016 06:21:47 AM,02/18/2016 06:41:26 AM,02/18/2016 07:01:08 AM,Code 2 Transport,02/18/2016 07:32:09 AM,WAWONA ST/19TH AV,San Francisco,94132,B08,40,7414,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7374547435254, -122.475288554879)",160490390-79 -160041857,54,16001612,Medical Incident,01/04/2016,01/04/2016,01/04/2016 01:30:44 PM,01/04/2016 01:32:22 PM,01/04/2016 01:33:18 PM,01/04/2016 01:33:24 PM,01/04/2016 01:45:38 PM,01/04/2016 02:06:55 PM,01/04/2016 02:34:42 PM,Code 2 Transport,01/04/2016 03:00:53 PM,800 Block of BUSH ST,San Francisco,94108,B01,41,1446,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7898998860136, -122.411265644258)",160041857-54 -140460159,E14,14015639,Medical Incident,02/15/2014,02/15/2014,02/15/2014 11:35:50 AM,02/15/2014 11:37:08 AM,02/15/2014 11:40:32 AM,02/15/2014 11:40:38 AM,02/15/2014 11:42:48 AM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 11:59:13 AM,500 Block of 44TH AVE,SF,94121,B07,34,7274,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7781961082837, -122.505090063959)",140460159-E14 -120370196,E13,12012349,Alarms,02/06/2012,02/06/2012,02/06/2012 12:52:16 PM,02/06/2012 12:52:50 PM,02/06/2012 12:53:03 PM,02/06/2012 12:53:54 PM,02/06/2012 12:58:34 PM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/06/2012 01:04:31 PM,0 Block of STEVENSON ST,SF,94105,B03,1,2144,3,3,3,true,Alarm,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7893540721016, -122.400032359721)",120370196-E13 -132120060,RC1,13071564,Medical Incident,07/31/2013,07/30/2013,07/31/2013 07:20:35 AM,07/31/2013 07:23:13 AM,07/31/2013 07:23:40 AM,07/31/2013 07:25:24 AM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 07:29:54 AM,1200 Block of MARKET ST,SF,94102,B02,1,2317,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",132120060-RC1 -131030245,KM12,13034636,Medical Incident,04/13/2013,04/13/2013,04/13/2013 03:56:58 PM,04/13/2013 03:58:57 PM,04/13/2013 03:59:09 PM,04/13/2013 03:59:47 PM,04/13/2013 04:02:19 PM,04/13/2013 04:11:48 PM,04/13/2013 04:21:13 PM,Code 2 Transport,04/13/2013 04:35:00 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131030245-KM12 -110790345,72,11026183,Medical Incident,03/20/2011,03/20/2011,03/20/2011 08:31:23 PM,03/20/2011 08:31:58 PM,03/20/2011 08:32:09 PM,03/20/2011 08:32:27 PM,03/20/2011 08:39:01 PM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Patient Declined Transport,03/20/2011 09:21:14 PM,1000 Block of MCALLISTER ST,SF,94102,B02,5,3425,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",110790345-72 -123240108,KM10,12107663,Medical Incident,11/19/2012,11/19/2012,11/19/2012 09:29:14 AM,11/19/2012 09:30:02 AM,11/19/2012 09:30:58 AM,11/19/2012 09:31:44 AM,11/19/2012 09:34:42 AM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/19/2012 09:34:58 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123240108-KM10 -112560310,E11,11084535,Medical Incident,09/13/2011,09/13/2011,09/13/2011 07:10:44 PM,09/13/2011 07:11:41 PM,09/13/2011 07:11:59 PM,09/13/2011 07:13:06 PM,09/13/2011 07:14:43 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/13/2011 07:32:31 PM,3700 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7478492013456, -122.423619315765)",112560310-E11 -160381732,75,16015207,Medical Incident,02/07/2016,02/07/2016,02/07/2016 12:35:32 PM,02/07/2016 12:37:07 PM,02/07/2016 12:37:31 PM,02/07/2016 12:41:07 PM,02/07/2016 12:41:07 PM,02/07/2016 12:53:55 PM,02/07/2016 01:15:27 PM,Code 2 Transport,02/07/2016 01:49:15 PM,100 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7905126810084, -122.402216710445)",160381732-75 -140330278,E01,14011292,Alarms,02/02/2014,02/02/2014,02/02/2014 07:46:21 PM,02/02/2014 07:47:09 PM,02/02/2014 07:47:15 PM,02/02/2014 07:48:27 PM,02/02/2014 07:49:53 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Fire,02/02/2014 07:55:05 PM,900 Block of HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7784155560729, -122.402721814145)",140330278-E01 -103630284,56,10116536,Medical Incident,12/29/2010,12/29/2010,12/29/2010 07:16:51 PM,12/29/2010 07:18:10 PM,12/29/2010 07:18:31 PM,12/29/2010 07:19:36 PM,12/29/2010 07:53:12 PM,12/29/2010 07:53:38 PM,12/29/2010 08:05:16 PM,Code 2 Transport,12/29/2010 08:29:36 PM,200 Block of RANDALL ST,SF,94131,B06,26,8115,3,3,3,true,,1,MEDIC,2,6,8,Glen Park,"(37.7398425374407, -122.428365917767)",103630284-56 -160102097,67,16004084,Traffic Collision,01/10/2016,01/10/2016,01/10/2016 03:17:41 PM,01/10/2016 03:17:41 PM,01/10/2016 03:18:04 PM,01/10/2016 03:18:58 PM,01/10/2016 03:23:33 PM,01/10/2016 03:36:10 PM,01/10/2016 03:39:37 PM,Code 2 Transport,01/10/2016 04:26:34 PM,POTRERO AV/25TH ST,San Francisco,94110,B10,9,2624,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Mission,"(37.7517262101212, -122.406219413558)",160102097-67 -132450049,68,13082570,Medical Incident,09/02/2013,09/01/2013,09/02/2013 03:51:36 AM,09/02/2013 03:51:36 AM,09/02/2013 03:51:36 AM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,09/02/2013 04:09:33 AM,09/02/2013 04:13:41 AM,Code 2 Transport,09/02/2013 04:40:23 AM,1900 Block of MARKET ST,SF,94102,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7702451976438, -122.425669041358)",132450049-68 -112400213,E17,11079222,Medical Incident,08/28/2011,08/28/2011,08/28/2011 02:46:36 PM,08/28/2011 02:47:59 PM,08/28/2011 02:48:09 PM,08/28/2011 02:49:32 PM,08/28/2011 02:51:58 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 03:03:39 PM,0 Block of WESTBROOK CT,SF,94124,B10,17,6624,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7349292027756, -122.382439124672)",112400213-E17 -103580233,E18,10114971,Alarms,12/24/2010,12/24/2010,12/24/2010 05:11:17 PM,12/24/2010 05:12:32 PM,12/24/2010 05:12:38 PM,12/24/2010 05:13:30 PM,12/24/2010 05:17:09 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 05:20:54 PM,1400 Block of 38TH AVE,SF,94122,B08,18,7521,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7598718838573, -122.497218491144)",103580233-E18 -133070196,E39,13104397,Medical Incident,11/03/2013,11/03/2013,11/03/2013 01:38:45 PM,11/03/2013 01:40:14 PM,11/03/2013 01:40:56 PM,11/03/2013 01:41:47 PM,11/03/2013 01:45:24 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/03/2013 02:01:32 PM,0 Block of MARIETTA DR,SF,94127,B09,39,8651,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7422027864452, -122.450017874524)",133070196-E39 -133420165,E38,13115949,Alarms,12/08/2013,12/08/2013,12/08/2013 11:03:23 AM,12/08/2013 11:04:34 AM,12/08/2013 11:04:42 AM,12/08/2013 11:05:45 AM,12/08/2013 11:07:20 AM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 11:22:48 AM,2000 Block of SUTTER ST,SF,94115,B04,38,3542,3,3,3,false,Alarm,1,ENGINE,1,4,5,Japantown,"(37.7859265850289, -122.434083678259)",133420165-E38 -112050312,E03,11067855,Medical Incident,07/24/2011,07/24/2011,07/24/2011 08:08:00 PM,07/24/2011 08:08:34 PM,07/24/2011 08:08:49 PM,07/24/2011 08:10:51 PM,07/24/2011 08:12:06 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/24/2011 08:20:32 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",112050312-E03 -113000248,RA48,11099557,Medical Incident,10/27/2011,10/27/2011,10/27/2011 03:12:46 PM,10/27/2011 03:13:57 PM,10/27/2011 03:14:36 PM,10/27/2011 03:17:02 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 04:09:43 PM,1200 Block of MARINER DR,TI,94130,B03,48,2931,3,3,3,false,,1,MEDIC,3,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",113000248-RA48 -110960327,B03,11031962,Structure Fire,04/06/2011,04/06/2011,04/06/2011 08:09:57 PM,04/06/2011 08:10:16 PM,04/06/2011 08:10:37 PM,04/06/2011 11:43:03 PM,04/06/2011 11:49:32 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/07/2011 04:21:29 AM,3200 Block of MISSION ST,SF,94110,B06,32,5625,3,3,3,false,,3,CHIEF,34,6,9,Bernal Heights,"(37.7447384333683, -122.420517921043)",110960327-B03 -121200002,T13,12039676,Medical Incident,04/29/2012,04/28/2012,04/29/2012 12:00:42 AM,04/29/2012 12:02:31 AM,04/29/2012 12:04:27 AM,04/29/2012 12:06:04 AM,04/29/2012 12:07:36 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Fire,04/29/2012 12:13:45 AM,WASHINGTON ST/KEARNY ST,SF,94108,B01,13,1245,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.7953266906824, -122.404957209767)",121200002-T13 -120640244,RC3,12021191,Medical Incident,03/04/2012,03/04/2012,03/04/2012 03:47:55 PM,03/04/2012 03:48:28 PM,03/04/2012 03:49:12 PM,04/25/2016 01:59:50 PM,03/04/2012 03:53:20 PM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Other,03/04/2012 04:11:39 PM,3600 Block of MISSION ST,SF,94110,B06,32,5631,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,8,Bernal Heights,"(37.7381275371551, -122.424063544101)",120640244-RC3 -110260275,E37,11008645,Alarms,01/26/2011,01/26/2011,01/26/2011 04:50:51 PM,01/26/2011 04:52:14 PM,01/26/2011 04:52:41 PM,01/26/2011 04:53:50 PM,01/26/2011 04:55:47 PM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/26/2011 05:02:12 PM,500 Block of WISCONSIN ST,SF,94107,B10,37,2521,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7604841026364, -122.39931132693)",110260275-E37 -140780319,T13,14026495,Alarms,03/19/2014,03/19/2014,03/19/2014 07:14:39 PM,03/19/2014 07:15:41 PM,03/19/2014 07:15:50 PM,03/19/2014 07:17:01 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Fire,03/19/2014 07:50:54 PM,700 Block of BATTERY ST,SAN FRANCISCO,94111,B01,13,1155,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7981258379836, -122.400888896243)",140780319-T13 -160360307,KM06,16014088,Medical Incident,02/05/2016,02/04/2016,02/05/2016 02:16:48 AM,02/05/2016 02:18:26 AM,02/05/2016 02:18:49 AM,02/05/2016 02:21:19 AM,02/05/2016 02:26:26 AM,02/05/2016 02:35:20 AM,02/05/2016 02:41:20 AM,Code 2 Transport,02/05/2016 03:16:17 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",160360307-KM06 -100900365,E26,10027934,Transfer,03/31/2010,03/31/2010,03/31/2010 09:53:15 PM,03/31/2010 09:53:37 PM,03/31/2010 09:54:17 PM,03/31/2010 09:55:38 PM,03/31/2010 09:58:59 PM,04/25/2016 03:23:57 PM,04/25/2016 03:23:57 PM,Fire,03/31/2010 10:17:43 PM,0 Block of SURREY ST,SF,94131,B06,26,8146,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7349903415761, -122.432892827354)",100900365-E26 -160470157,65,16018754,Medical Incident,02/16/2016,02/15/2016,02/16/2016 01:29:45 AM,02/16/2016 01:32:09 AM,02/16/2016 01:32:26 AM,02/16/2016 01:32:57 AM,02/16/2016 01:40:03 AM,02/16/2016 01:46:25 AM,02/16/2016 01:54:22 AM,Code 2 Transport,02/16/2016 03:14:01 AM,100 Block of KISKA RD,San Francisco,94124,B10,17,6625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",160470157-65 -160501332,AM06,16020050,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:15:53 AM,02/19/2016 11:17:43 AM,02/19/2016 11:18:12 AM,02/19/2016 11:19:45 AM,02/19/2016 11:30:52 AM,02/19/2016 11:34:55 AM,02/19/2016 12:04:27 PM,Code 2 Transport,02/19/2016 12:38:59 PM,13TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",160501332-AM06 -160921201,61,16036389,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:26:32 AM,04/01/2016 10:31:32 AM,04/01/2016 10:33:23 AM,04/01/2016 10:33:34 AM,04/01/2016 10:46:14 AM,04/01/2016 10:54:50 AM,04/01/2016 11:16:54 AM,Code 2 Transport,04/01/2016 11:37:19 AM,1400 Block of 7TH AVE,San Francisco,94122,B08,22,7331,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7613401387036, -122.46390786542)",160921201-61 -120940061,61,12031052,Medical Incident,04/03/2012,04/03/2012,04/03/2012 07:58:21 AM,04/03/2012 08:00:51 AM,04/03/2012 08:01:27 AM,04/03/2012 08:01:43 AM,04/03/2012 08:10:02 AM,04/03/2012 08:18:29 AM,04/03/2012 08:31:59 AM,Code 2 Transport,04/03/2012 09:05:33 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",120940061-61 -160760744,KM09,16030035,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:17:35 AM,03/16/2016 08:18:45 AM,03/16/2016 08:20:41 AM,03/16/2016 08:21:08 AM,03/16/2016 09:03:27 AM,03/16/2016 09:03:32 AM,03/16/2016 09:20:36 AM,Code 2 Transport,03/16/2016 09:57:02 AM,0 Block of DELLBROOK AVE,San Francisco,94131,B08,20,5351,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7495710546897, -122.454036299238)",160760744-KM09 -130980122,E18,13032813,Medical Incident,04/08/2013,04/08/2013,04/08/2013 08:57:28 AM,04/08/2013 08:58:54 AM,04/08/2013 08:59:13 AM,04/08/2013 09:00:19 AM,04/08/2013 09:05:32 AM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Other,04/08/2013 09:15:14 AM,KIRKHAM ST/19TH AV,SF,94122,B08,22,7423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7598339367344, -122.47681389085)",130980122-E18 -133200266,RC1,13108798,Medical Incident,11/16/2013,11/16/2013,11/16/2013 05:28:46 PM,11/16/2013 05:31:33 PM,11/16/2013 05:32:18 PM,11/16/2013 05:32:26 PM,11/16/2013 05:42:00 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 05:52:57 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",133200266-RC1 -132150419,AP,13072820,Other,08/03/2013,08/03/2013,08/03/2013 11:28:24 PM,08/03/2013 11:28:25 PM,08/03/2013 11:28:25 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Fire,08/03/2013 11:28:49 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",132150419-AP -121040201,E03,12034468,Medical Incident,04/13/2012,04/13/2012,04/13/2012 03:06:03 PM,04/13/2012 03:06:43 PM,04/13/2012 03:07:50 PM,04/13/2012 03:09:07 PM,04/13/2012 03:12:45 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/13/2012 03:13:32 PM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",121040201-E03 -103410193,T05,10109132,Alarms,12/07/2010,12/07/2010,12/07/2010 01:20:07 PM,12/07/2010 01:21:36 PM,12/07/2010 01:21:49 PM,12/07/2010 01:22:50 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Other,04/25/2016 02:07:15 PM,600 Block of PAGE ST,SF,94117,B05,6,3531,3,3,3,false,,1,TRUCK,4,5,5,Hayes Valley,"(37.7729885097289, -122.431465550486)",103410193-T05 -132420227,66,13081661,Traffic Collision,08/30/2013,08/30/2013,08/30/2013 01:31:26 PM,08/30/2013 01:32:55 PM,08/30/2013 01:33:30 PM,08/30/2013 01:33:58 PM,08/30/2013 01:42:26 PM,08/30/2013 01:53:22 PM,08/30/2013 02:19:19 PM,Code 2 Transport,08/30/2013 02:53:35 PM,8TH AV/FULTON ST,SF,94122,B07,31,7133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7733982051293, -122.4658831608)",132420227-66 -140060332,79,14002249,Medical Incident,01/06/2014,01/06/2014,01/06/2014 06:28:08 PM,01/06/2014 06:29:05 PM,01/06/2014 06:51:44 PM,01/06/2014 06:51:47 PM,01/06/2014 06:59:46 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Patient Declined Transport,01/06/2014 08:00:02 PM,22ND ST/VALENCIA ST,SF,94110,B06,7,5456,,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7552947827711, -122.420964094826)",140060332-79 -110010376,E03,11000321,Alarms,01/01/2011,01/01/2011,01/01/2011 01:17:49 PM,01/01/2011 01:18:33 PM,01/01/2011 01:18:42 PM,01/01/2011 01:19:43 PM,01/01/2011 01:21:20 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 01:24:08 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",110010376-E03 -112800329,93,11092800,Medical Incident,10/07/2011,10/07/2011,10/07/2011 08:06:00 PM,10/07/2011 08:07:23 PM,10/07/2011 08:07:56 PM,10/07/2011 08:10:10 PM,10/07/2011 08:10:12 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 08:22:34 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",112800329-93 -160612586,KM01,16024400,Medical Incident,03/01/2016,03/01/2016,03/01/2016 05:26:51 PM,03/01/2016 05:27:32 PM,03/01/2016 05:28:14 PM,03/01/2016 05:29:50 PM,03/01/2016 05:33:35 PM,03/01/2016 05:45:32 PM,03/01/2016 06:03:01 PM,Code 2 Transport,03/01/2016 06:46:07 PM,200 Block of CHURCH ST,San Francisco,94114,B05,6,5231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7668131434468, -122.428952855226)",160612586-KM01 -123150073,66,12104746,Medical Incident,11/10/2012,11/09/2012,11/10/2012 06:07:01 AM,11/10/2012 06:08:35 AM,11/10/2012 06:08:59 AM,11/10/2012 06:09:21 AM,11/10/2012 06:11:33 AM,11/10/2012 06:39:25 AM,11/10/2012 06:58:48 AM,Code 2 Transport,11/10/2012 07:42:12 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",123150073-66 -120410383,T08,12013840,Structure Fire,02/10/2012,02/10/2012,02/10/2012 10:23:21 PM,02/10/2012 10:23:21 PM,02/10/2012 10:24:00 PM,02/10/2012 10:24:57 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/10/2012 10:29:43 PM,4TH ST/BRYANT ST,SF,94107,B03,8,2217,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7795669099357, -122.398059940086)",120410383-T08 -132920051,RC1,13099257,Medical Incident,10/19/2013,10/18/2013,10/19/2013 03:16:15 AM,10/19/2013 03:16:38 AM,10/19/2013 03:17:05 AM,10/19/2013 03:19:19 AM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 03:22:36 AM,HYDE ST/OFARRELL ST,SF,94109,B04,3,1544,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,6,Tenderloin,"(37.7853759730503, -122.416259705763)",132920051-RC1 -133540209,B04,13120275,Alarms,12/20/2013,12/20/2013,12/20/2013 12:17:30 PM,12/20/2013 12:18:50 PM,12/20/2013 12:19:30 PM,12/20/2013 12:20:38 PM,12/20/2013 12:22:01 PM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Fire,12/20/2013 12:23:11 PM,2200 Block of JACKSON ST,SF,94115,B04,38,3465,3,3,3,false,Alarm,1,CHIEF,1,4,2,Pacific Heights,"(37.7928385256344, -122.432101129272)",133540209-B04 -110820313,63,11027044,Medical Incident,03/23/2011,03/23/2011,03/23/2011 05:43:14 PM,03/23/2011 05:44:46 PM,03/23/2011 05:47:09 PM,03/23/2011 05:47:32 PM,03/23/2011 06:03:37 PM,03/23/2011 06:42:26 PM,03/23/2011 06:55:50 PM,Code 2 Transport,03/23/2011 07:23:14 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,2,2,2,true,,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",110820313-63 -112160328,E28,11071462,Medical Incident,08/04/2011,08/04/2011,08/04/2011 07:04:24 PM,08/04/2011 07:04:44 PM,08/04/2011 07:04:58 PM,08/04/2011 07:05:40 PM,08/04/2011 07:07:55 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 07:19:39 PM,JEFFERSON ST/POWELL ST,SF,94133,B01,28,1344,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.808624849677, -122.412523835376)",112160328-E28 -160263607,88,16010471,Medical Incident,01/26/2016,01/26/2016,01/26/2016 09:22:28 PM,01/26/2016 09:23:52 PM,01/26/2016 09:24:46 PM,01/26/2016 09:25:23 PM,01/26/2016 09:27:00 PM,01/26/2016 09:46:25 PM,01/26/2016 09:49:12 PM,Code 2 Transport,01/26/2016 10:34:15 PM,1100 Block of HYDE ST,San Francisco,94109,B01,41,1563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7914566786177, -122.417418430351)",160263607-88 -140620327,86,14021071,Medical Incident,03/03/2014,03/03/2014,03/03/2014 07:28:43 PM,03/03/2014 07:30:40 PM,03/03/2014 07:33:52 PM,03/03/2014 07:34:01 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Other,03/03/2014 07:36:24 PM,25TH ST/BRYANT ST,SF,94110,B06,9,5532,E,E,3,true,Potentially Life-Threatening,1,MEDIC,6,6,9,Mission,"(37.7512007973024, -122.408977846958)",140620327-86 -121330299,86,12044369,Medical Incident,05/12/2012,05/12/2012,05/12/2012 08:01:24 PM,05/12/2012 08:02:58 PM,05/12/2012 08:03:13 PM,04/25/2016 01:58:43 PM,05/12/2012 08:07:57 PM,05/12/2012 08:28:04 PM,05/12/2012 08:45:33 PM,Code 2 Transport,05/12/2012 09:26:48 PM,400 Block of DEWEY BLVD,SF,94116,B08,20,8641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.74646714941, -122.460326158513)",121330299-86 -122220025,KM07,12073450,Medical Incident,08/09/2012,08/08/2012,08/09/2012 01:58:10 AM,08/09/2012 01:59:09 AM,08/09/2012 01:59:52 AM,08/09/2012 02:00:33 AM,08/09/2012 02:07:32 AM,08/09/2012 02:10:57 AM,08/09/2012 02:28:30 AM,Code 2 Transport,08/09/2012 02:42:33 AM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,1,1,2,false,Non Life-threatening,1,PRIVATE,1,None,3,North Beach,"(37.8081679785862, -122.416634717802)",122220025-KM07 -160603019,72,16024037,Medical Incident,02/29/2016,02/29/2016,02/29/2016 06:55:56 PM,02/29/2016 06:55:56 PM,02/29/2016 06:56:55 PM,02/29/2016 06:57:43 PM,02/29/2016 07:02:50 PM,02/29/2016 07:13:21 PM,02/29/2016 07:20:28 PM,Code 2 Transport,02/29/2016 08:04:09 PM,1200 Block of HOWARD ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7756454671917, -122.412432457912)",160603019-72 -120270247,63,12009114,Traffic Collision,01/27/2012,01/27/2012,01/27/2012 03:12:09 PM,01/27/2012 03:12:46 PM,01/27/2012 03:13:53 PM,01/27/2012 03:14:11 PM,01/27/2012 03:17:38 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Patient Declined Transport,01/27/2012 03:46:10 PM,OAKDALE AV/TOLAND ST,SF,94124,B10,9,6377,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.740961928907, -122.401555700705)",120270247-63 -111310290,95,11043381,Medical Incident,05/11/2011,05/11/2011,05/11/2011 05:54:57 PM,05/11/2011 05:56:59 PM,05/11/2011 05:57:47 PM,05/11/2011 06:09:33 PM,05/11/2011 06:11:39 PM,05/11/2011 06:22:22 PM,05/11/2011 06:33:00 PM,Code 2 Transport,05/11/2011 06:53:06 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7683208883339, -122.4243245293)",111310290-95 -133270252,AM24,13111121,Structure Fire,11/23/2013,11/23/2013,11/23/2013 02:31:50 PM,11/23/2013 02:32:09 PM,11/23/2013 02:37:08 PM,04/25/2016 01:49:37 PM,11/23/2013 02:38:33 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 03:32:05 PM,3600 Block of SACRAMENTO ST,SF,94118,B07,10,4432,3,3,3,false,Fire,3,PRIVATE,6,7,2,Presidio Heights,"(37.7873936866832, -122.452758503157)",133270252-AM24 -122240170,B03,12074266,Structure Fire,08/11/2012,08/11/2012,08/11/2012 12:12:18 PM,08/11/2012 12:13:21 PM,08/11/2012 12:13:30 PM,08/11/2012 12:15:18 PM,08/11/2012 12:17:47 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 12:23:30 PM,1100 Block of FOLSOM ST,SF,94103,B03,1,2313,3,3,3,false,Fire,1,CHIEF,8,2,6,South of Market,"(37.7761748805979, -122.408661568722)",122240170-B03 -113540015,E15,11117398,Medical Incident,12/20/2011,12/19/2011,12/20/2011 01:07:49 AM,12/20/2011 01:10:17 AM,12/20/2011 01:10:38 AM,12/20/2011 01:12:23 AM,12/20/2011 01:13:59 AM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/20/2011 01:20:17 AM,0 Block of EDGAR AVE,SF,94112,B09,15,8471,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7208956020171, -122.452236185324)",113540015-E15 -160561315,59,16022334,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:36:32 AM,02/25/2016 10:39:02 AM,02/25/2016 10:39:16 AM,02/25/2016 10:39:28 AM,02/25/2016 10:54:41 AM,02/25/2016 11:16:53 AM,02/25/2016 11:34:28 AM,Code 2 Transport,02/25/2016 12:11:05 PM,0 Block of MOUNT VERNON AVE,San Francisco,94112,B09,43,6176,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7157777924445, -122.444279310961)",160561315-59 -112140210,E39,11070649,Medical Incident,08/02/2011,08/02/2011,08/02/2011 02:27:04 PM,08/02/2011 02:27:42 PM,08/02/2011 02:28:07 PM,08/02/2011 02:29:10 PM,08/02/2011 02:31:21 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 02:38:54 PM,14TH AV/WEST PORTAL AV,SF,94127,B08,39,8562,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7379698827734, -122.469056677033)",112140210-E39 -160513154,AM24,16020611,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:16:52 PM,02/20/2016 09:17:42 PM,02/20/2016 09:22:09 PM,02/20/2016 09:22:52 PM,02/20/2016 09:36:58 PM,02/20/2016 09:46:13 PM,02/20/2016 10:01:33 PM,Code 2 Transport,02/20/2016 10:30:31 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160513154-AM24 -160023237,AM24,16000927,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:06:19 PM,01/02/2016 09:08:32 PM,01/02/2016 09:19:55 PM,01/02/2016 09:20:22 PM,01/02/2016 09:26:00 PM,01/02/2016 09:32:39 PM,01/02/2016 09:59:00 PM,Code 2 Transport,01/02/2016 10:16:52 PM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160023237-AM24 -110070151,E29,11002295,Alarms,01/07/2011,01/07/2011,01/07/2011 11:57:15 AM,01/07/2011 11:58:16 AM,01/07/2011 11:58:24 AM,01/07/2011 11:59:10 AM,01/07/2011 12:01:21 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/07/2011 12:06:13 PM,900 Block of 16TH ST,SF,94107,B03,29,2414,3,3,3,true,,1,ENGINE,2,3,10,Mission Bay,"(37.7664325184439, -122.395973403657)",110070151-E29 -111720016,55,11056587,Medical Incident,06/21/2011,06/20/2011,06/21/2011 02:10:33 AM,06/21/2011 02:11:04 AM,06/21/2011 02:11:14 AM,06/21/2011 02:11:28 AM,06/21/2011 02:14:05 AM,06/21/2011 02:38:50 AM,06/21/2011 03:15:14 AM,Code 2 Transport,06/21/2011 03:29:02 AM,1800 Block of WALLER ST,SF,94122,B05,12,4552,3,3,3,true,,1,MEDIC,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",111720016-55 -140190365,E11,14006697,Medical Incident,01/19/2014,01/19/2014,01/19/2014 10:32:24 PM,01/19/2014 10:33:42 PM,01/19/2014 10:33:56 PM,01/19/2014 10:34:26 PM,01/19/2014 10:36:20 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/19/2014 10:52:29 PM,600 Block of SAN JOSE AVE,SF,94110,B06,11,5577,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",140190365-E11 -112480255,96,11081857,Medical Incident,09/05/2011,09/05/2011,09/05/2011 04:42:01 PM,09/05/2011 04:42:30 PM,09/05/2011 04:45:56 PM,09/05/2011 04:46:46 PM,09/05/2011 04:54:00 PM,09/05/2011 05:09:28 PM,09/05/2011 05:16:50 PM,Code 2 Transport,09/05/2011 05:50:31 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",112480255-96 -120020309,E03,12000851,Medical Incident,01/02/2012,01/02/2012,01/02/2012 09:20:40 PM,01/02/2012 09:21:17 PM,01/02/2012 09:22:41 PM,01/02/2012 09:23:24 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/02/2012 09:25:29 PM,300 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7839909656227, -122.415908808889)",120020309-E03 -160332797,74,16013099,Medical Incident,02/02/2016,02/02/2016,02/02/2016 06:22:58 PM,02/02/2016 06:24:24 PM,02/02/2016 06:26:25 PM,02/02/2016 06:26:25 PM,02/02/2016 06:33:50 PM,02/02/2016 06:42:05 PM,02/02/2016 06:52:58 PM,Code 2 Transport,02/02/2016 07:28:20 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",160332797-74 -113200295,E17,11106367,Medical Incident,11/16/2011,11/16/2011,11/16/2011 05:02:39 PM,11/16/2011 05:06:08 PM,11/16/2011 05:07:05 PM,11/16/2011 05:08:30 PM,11/16/2011 05:12:31 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/16/2011 05:25:10 PM,600 Block of JAMESTOWN AVE,SF,94124,B10,17,6577,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7131072321423, -122.387833652325)",113200295-E17 -130740008,75,13024528,Medical Incident,03/15/2013,03/14/2013,03/15/2013 12:33:37 AM,03/15/2013 12:34:29 AM,03/15/2013 12:34:53 AM,03/15/2013 12:35:06 AM,03/15/2013 12:36:56 AM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Patient Declined Transport,03/15/2013 01:02:33 AM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",130740008-75 -111310283,E02,11043375,Alarms,05/11/2011,05/11/2011,05/11/2011 05:46:59 PM,05/11/2011 05:47:51 PM,05/11/2011 05:48:07 PM,05/11/2011 05:49:26 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/11/2011 05:54:01 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.787352867216, -122.399071684966)",111310283-E02 -122280167,81,12075540,Medical Incident,08/15/2012,08/15/2012,08/15/2012 11:59:39 AM,08/15/2012 12:00:31 PM,08/15/2012 12:01:04 PM,08/15/2012 12:01:57 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,Other,08/15/2012 12:09:13 PM,0 Block of OLIVER ST,SF,94112,B09,33,6212,1,1,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7089572932128, -122.450109167554)",122280167-81 -111720005,54,11056577,Medical Incident,06/21/2011,06/20/2011,06/21/2011 12:52:09 AM,06/21/2011 12:52:45 AM,06/21/2011 12:53:04 AM,06/21/2011 12:53:08 AM,06/21/2011 01:06:15 AM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Patient Declined Transport,06/21/2011 01:12:19 AM,200 Block of FOLSOM ST,SF,94105,B03,35,2817,3,2,2,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",111720005-54 -130190270,E10,13006579,Citizen Assist / Service Call,01/19/2013,01/19/2013,01/19/2013 04:05:03 PM,01/19/2013 04:05:24 PM,01/19/2013 04:05:40 PM,01/19/2013 04:07:23 PM,01/19/2013 04:08:05 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Fire,01/19/2013 04:19:03 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,Alarm,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",130190270-E10 -120230287,RS2,12007879,Medical Incident,01/23/2012,01/23/2012,01/23/2012 05:46:05 PM,01/23/2012 05:47:02 PM,01/23/2012 05:47:41 PM,01/23/2012 05:47:59 PM,01/23/2012 05:49:19 PM,04/25/2016 02:00:28 PM,04/25/2016 02:00:28 PM,Other,01/23/2012 05:54:13 PM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",120230287-RS2 -103630161,E26,10116429,Medical Incident,12/29/2010,12/29/2010,12/29/2010 01:05:26 PM,12/29/2010 01:06:58 PM,12/29/2010 01:09:10 PM,12/29/2010 01:10:21 PM,12/29/2010 01:13:29 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/29/2010 01:30:12 PM,0 Block of TURQUOISE WAY,SF,94131,B06,26,8165,2,2,2,true,,1,ENGINE,1,6,8,Glen Park,"(37.7435345441074, -122.444884466475)",103630161-E26 -130710323,KM01,13023812,Medical Incident,03/12/2013,03/12/2013,03/12/2013 07:45:21 PM,03/12/2013 07:47:40 PM,03/12/2013 07:49:02 PM,03/12/2013 07:50:13 PM,03/12/2013 08:03:11 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 08:31:26 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8082633159603, -122.414972542075)",130710323-KM01 -121450081,55,12048054,Medical Incident,05/24/2012,05/24/2012,05/24/2012 09:20:15 AM,05/24/2012 09:21:32 AM,05/24/2012 09:21:42 AM,05/24/2012 09:22:14 AM,05/24/2012 09:31:41 AM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Patient Declined Transport,05/24/2012 10:06:37 AM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",121450081-55 -132210305,E01,13074731,Medical Incident,08/09/2013,08/09/2013,08/09/2013 07:16:00 PM,08/09/2013 07:16:00 PM,08/09/2013 07:17:46 PM,08/09/2013 07:19:49 PM,08/09/2013 07:22:22 PM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,No Merit,08/09/2013 07:30:28 PM,0 Block of 5TH ST,SF,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",132210305-E01 -103130132,85,10100305,Medical Incident,11/09/2010,11/09/2010,11/09/2010 09:55:32 AM,11/09/2010 09:57:50 AM,11/09/2010 09:58:22 AM,11/09/2010 09:59:42 AM,11/09/2010 10:01:28 AM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Gone on Arrival,11/09/2010 10:02:53 AM,RICO WY/AVILA ST,SF,94123,B04,16,3664,2,2,2,true,,1,MEDIC,1,4,2,Marina,"(37.8054985331263, -122.440328097497)",103130132-85 -160120747,KM08,16004685,Medical Incident,01/12/2016,01/12/2016,01/12/2016 08:22:50 AM,01/12/2016 08:24:34 AM,01/12/2016 08:25:19 AM,01/12/2016 08:25:57 AM,01/12/2016 08:30:03 AM,01/12/2016 08:45:43 AM,01/12/2016 09:05:54 AM,Code 2 Transport,01/12/2016 09:45:07 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160120747-KM08 -160091163,AM08,16003598,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:44:32 AM,01/09/2016 10:44:32 AM,01/09/2016 10:45:15 AM,01/09/2016 10:57:27 AM,01/09/2016 10:57:27 AM,01/09/2016 11:11:02 AM,01/09/2016 11:26:50 AM,Code 2 Transport,01/09/2016 11:55:16 AM,MISSION ST/HIGHLAND AV,San Francisco,94110,B06,32,5631,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Bernal Heights,"(37.7374062487517, -122.424040149847)",160091163-AM08 -130540304,AM18,13018362,Alarms,02/23/2013,02/23/2013,02/23/2013 08:06:40 PM,02/23/2013 08:09:15 PM,02/23/2013 08:18:40 PM,02/23/2013 08:19:27 PM,02/23/2013 08:44:30 PM,02/23/2013 09:01:22 PM,02/23/2013 09:09:33 PM,Code 2 Transport,02/23/2013 09:40:44 PM,2000 Block of LINCOLN WAY,SF,94122,B08,22,7425,3,3,3,false,Alarm,1,PRIVATE,4,8,4,Sunset/Parkside,"(37.7652361095237, -122.479927681939)",130540304-AM18 -131310008,68,13044090,Medical Incident,05/11/2013,05/10/2013,05/11/2013 12:23:59 AM,05/11/2013 12:24:49 AM,05/11/2013 12:25:31 AM,05/11/2013 12:25:39 AM,05/11/2013 12:30:39 AM,05/11/2013 12:52:04 AM,05/11/2013 01:01:58 AM,Code 2 Transport,05/11/2013 01:33:39 AM,2700 Block of JUDAH ST,SF,94122,B08,23,7541,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7611180469496, -122.491464026808)",131310008-68 -133280066,89,13111365,Medical Incident,11/24/2013,11/23/2013,11/24/2013 05:07:56 AM,11/24/2013 05:08:19 AM,11/24/2013 05:08:34 AM,11/24/2013 05:08:53 AM,11/24/2013 05:27:13 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Patient Declined Transport,11/24/2013 05:58:40 AM,2200 Block of 42ND AVE,SF,94116,B08,18,7635,2,2,2,false,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7447651974344, -122.500461812681)",133280066-89 -122180125,E24,12072261,Medical Incident,08/05/2012,08/05/2012,08/05/2012 09:23:44 AM,08/05/2012 09:24:46 AM,08/05/2012 09:25:33 AM,08/05/2012 09:26:37 AM,08/05/2012 09:27:46 AM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,No Merit,08/05/2012 09:28:51 AM,21ST ST/CASTRO ST,SF,94114,B06,24,5462,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7560929565677, -122.434546113447)",122180125-E24 -132250363,AM22,13076085,Medical Incident,08/13/2013,08/13/2013,08/13/2013 07:28:56 PM,08/13/2013 07:29:33 PM,08/13/2013 07:29:58 PM,08/13/2013 07:35:14 PM,08/13/2013 07:32:34 PM,08/13/2013 07:39:01 PM,08/13/2013 07:59:18 PM,Code 2 Transport,08/13/2013 08:21:52 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",132250363-AM22 -140790282,FB1,14026798,Medical Incident,03/20/2014,03/20/2014,03/20/2014 05:03:53 PM,03/20/2014 05:04:54 PM,03/20/2014 05:05:55 PM,03/20/2014 05:07:18 PM,03/20/2014 05:13:02 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Code 2 Transport,03/20/2014 05:35:59 PM,300 Block of THE EMBARCADERO,,94111,B01,13,903,3,3,3,false,Potentially Life-Threatening,1,SUPPORT,5,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",140790282-FB1 -130450018,E11,13015119,Medical Incident,02/14/2013,02/13/2013,02/14/2013 01:51:50 AM,02/14/2013 01:53:40 AM,02/14/2013 01:54:04 AM,02/14/2013 01:55:34 AM,02/14/2013 02:02:01 AM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 02:07:32 AM,0 Block of 28TH ST,SF,94110,B06,11,5577,3,3,3,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7455620349301, -122.423383986336)",130450018-E11 -121930157,E44,12064227,Medical Incident,07/11/2012,07/11/2012,07/11/2012 11:19:44 AM,07/11/2012 11:21:37 AM,07/11/2012 11:21:58 AM,07/11/2012 11:22:44 AM,07/11/2012 11:26:07 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 11:51:24 AM,100 Block of LOEHR ST,SF,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.71262387882, -122.413673241478)",121930157-E44 -160310518,61,16012067,Medical Incident,01/31/2016,01/30/2016,01/31/2016 03:59:53 AM,01/31/2016 03:59:53 AM,01/31/2016 04:01:08 AM,01/31/2016 04:01:45 AM,01/31/2016 04:08:32 AM,01/31/2016 04:32:13 AM,01/31/2016 04:40:07 AM,Code 2 Transport,01/31/2016 05:38:59 AM,100 Block of MISSOURI ST,San Francisco,94107,B03,29,2414,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.764486265804, -122.396776680869)",160310518-61 -120550037,B04,12018043,Alarms,02/24/2012,02/23/2012,02/24/2012 04:36:07 AM,02/24/2012 04:37:05 AM,02/24/2012 04:37:13 AM,02/24/2012 04:38:43 AM,02/24/2012 04:41:09 AM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 04:58:59 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",120550037-B04 -130780353,E11,13026172,Medical Incident,03/19/2013,03/19/2013,03/19/2013 07:02:49 PM,03/19/2013 07:03:29 PM,03/19/2013 07:07:35 PM,03/19/2013 07:08:52 PM,03/19/2013 07:10:43 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 07:20:33 PM,2800 Block of MISSION ST,SF,94110,B06,11,5525,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7514438314246, -122.41829760412)",130780353-E11 -160193243,83,16007779,Medical Incident,01/19/2016,01/19/2016,01/19/2016 07:43:30 PM,01/19/2016 07:43:30 PM,01/19/2016 07:43:59 PM,01/19/2016 07:44:11 PM,01/19/2016 07:45:49 PM,01/19/2016 08:08:02 PM,01/19/2016 08:28:08 PM,Code 2 Transport,01/19/2016 08:56:35 PM,8TH ST/MINNA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7770264198259, -122.412616668185)",160193243-83 -160031260,52,16001151,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:25:46 AM,01/03/2016 11:27:49 AM,01/03/2016 11:28:39 AM,01/03/2016 11:28:52 AM,01/03/2016 11:37:06 AM,01/03/2016 11:52:09 AM,01/03/2016 11:57:43 AM,Code 3 Transport,01/03/2016 12:39:54 PM,0 Block of MIDDLE POINT RD,San Francisco,94124,B10,25,6556,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7357585640379, -122.379345378835)",160031260-52 -131560343,82,13053039,Medical Incident,06/05/2013,06/05/2013,06/05/2013 08:42:56 PM,06/05/2013 08:44:32 PM,06/05/2013 08:45:17 PM,06/05/2013 08:45:31 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,No Merit,06/05/2013 08:52:35 PM,1200 Block of 33RD AVE,SF,94122,B08,23,7537,3,3,3,true,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7638430783698, -122.492123436611)",131560343-82 -110490304,B02,11016280,Alarms,02/18/2011,02/18/2011,02/18/2011 05:35:39 PM,02/18/2011 05:37:58 PM,02/18/2011 05:38:04 PM,02/18/2011 05:39:21 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Fire,02/18/2011 05:42:33 PM,800 Block of 14TH ST,SF,94114,B05,6,5212,3,3,3,false,,1,CHIEF,2,5,8,Castro/Upper Market,"(37.7675070758139, -122.43173994227)",110490304-B02 -102370176,T02,10074712,Structure Fire,08/25/2010,08/25/2010,08/25/2010 11:33:50 AM,08/25/2010 11:36:09 AM,08/25/2010 11:36:34 AM,08/25/2010 11:37:30 AM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 11:38:38 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,TRUCK,12,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",102370176-T02 -112710322,E07,11089647,Medical Incident,09/28/2011,09/28/2011,09/28/2011 04:12:24 PM,09/28/2011 04:12:24 PM,09/28/2011 04:12:24 PM,04/25/2016 02:02:26 PM,09/28/2011 04:27:50 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Patient Declined Transport,09/28/2011 04:31:19 PM,2800 Block of 24TH ST,SF,94110,B06,9,5531,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7528787651491, -122.408664686116)",112710322-E07 -123030352,E01,12100643,Medical Incident,10/29/2012,10/29/2012,10/29/2012 04:59:15 PM,10/29/2012 05:00:15 PM,10/29/2012 05:00:36 PM,10/29/2012 05:01:40 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 05:05:01 PM,0 Block of GOLDEN GATE AVE,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.782141624229, -122.411246661611)",123030352-E01 -140850371,T13,14028797,Alarms,03/26/2014,03/26/2014,03/26/2014 11:03:58 PM,03/26/2014 11:05:27 PM,03/26/2014 11:07:37 PM,03/26/2014 11:09:36 PM,03/26/2014 11:12:04 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/26/2014 11:16:49 PM,0 Block of MARKET ST,SAN FRANCISCO,94105,B03,13,2115,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",140850371-T13 -112870171,T48,11095130,Administrative,10/14/2011,10/14/2011,10/14/2011 10:54:52 AM,10/14/2011 10:55:02 AM,10/14/2011 10:55:20 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 10:56:10 AM,800 Block of AVENUE D,TI,94130,B03,48,2931,3,3,3,false,,1,TRUCK,1,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",112870171-T48 -112080230,75,11068724,Medical Incident,07/27/2011,07/27/2011,07/27/2011 03:28:43 PM,07/27/2011 03:31:37 PM,07/27/2011 03:32:01 PM,07/27/2011 03:32:24 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 03:39:26 PM,1700 Block of 40TH AVE,SF,94122,B08,18,7624,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7541785301676, -122.498968357512)",112080230-75 -121760116,B02,12058445,Medical Incident,06/24/2012,06/23/2012,06/24/2012 07:36:21 AM,06/24/2012 07:36:25 AM,06/24/2012 07:36:50 AM,06/24/2012 07:38:10 AM,06/24/2012 07:41:19 AM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/24/2012 07:43:43 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,E,E,3,false,Non Life-threatening,1,CHIEF,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",121760116-B02 -132650329,AM18,13090026,Medical Incident,09/22/2013,09/22/2013,09/22/2013 07:06:37 PM,09/22/2013 07:07:04 PM,09/22/2013 07:08:11 PM,09/22/2013 07:08:51 PM,09/22/2013 07:12:46 PM,09/22/2013 07:23:31 PM,09/22/2013 07:46:06 PM,Code 2 Transport,09/22/2013 08:25:36 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",132650329-AM18 -160320779,61,16012481,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:39:44 AM,02/01/2016 08:39:44 AM,02/01/2016 08:51:26 AM,02/01/2016 08:51:34 AM,02/01/2016 09:02:33 AM,02/01/2016 09:28:51 AM,02/01/2016 09:42:13 AM,Other,02/01/2016 10:03:00 AM,LEAVENWORTH ST/WASHINGTON ST,San Francisco,94109,B01,41,1536,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7938920823793, -122.416291702526)",160320779-61 -113450013,RA48,11114312,Medical Incident,12/11/2011,12/10/2011,12/11/2011 12:31:32 AM,12/11/2011 12:32:42 AM,12/11/2011 12:33:41 AM,12/11/2011 12:36:51 AM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/11/2011 01:08:28 AM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,false,,1,MEDIC,3,None,6,Treasure Island,"(37.8299718852834, -122.374994903359)",113450013-RA48 -130920072,E06,13030718,Gas Leak (Natural and LP Gases),04/02/2013,04/02/2013,04/02/2013 08:07:52 AM,04/02/2013 08:10:00 AM,04/02/2013 08:10:39 AM,04/02/2013 08:11:30 AM,04/02/2013 08:14:18 AM,04/25/2016 01:53:31 PM,04/25/2016 01:53:31 PM,Other,04/02/2013 08:16:17 AM,CASTRO ST/MARKET ST,SF,94114,B05,6,5233,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",130920072-E06 -133330105,T01,13112893,Alarms,11/29/2013,11/29/2013,11/29/2013 10:36:28 AM,11/29/2013 10:37:37 AM,11/29/2013 10:37:46 AM,11/29/2013 10:39:08 AM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/29/2013 10:41:16 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7854659679151, -122.405582629186)",133330105-T01 -123580030,T01,12119716,Alarms,12/23/2012,12/22/2012,12/23/2012 02:35:47 AM,12/23/2012 02:35:48 AM,12/23/2012 02:36:35 AM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 02:39:01 AM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",123580030-T01 -120910036,E05,12029995,Medical Incident,03/31/2012,03/30/2012,03/31/2012 01:51:11 AM,03/31/2012 01:51:22 AM,03/31/2012 01:52:39 AM,03/31/2012 01:54:23 AM,03/31/2012 01:55:37 AM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,Other,03/31/2012 01:58:11 AM,MCALLISTER ST/LAGUNA ST,SF,94102,B02,5,3411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7792579701506, -122.426828557488)",120910036-E05 -111090013,E12,11035864,Medical Incident,04/19/2011,04/18/2011,04/19/2011 01:50:32 AM,04/19/2011 01:52:26 AM,04/19/2011 01:53:31 AM,04/19/2011 01:54:58 AM,04/19/2011 01:57:37 AM,04/25/2016 02:05:02 PM,04/25/2016 02:05:02 PM,Other,04/19/2011 02:02:46 AM,600 Block of IRVING ST,SF,94122,B08,22,7332,3,3,3,true,,1,ENGINE,2,8,5,Inner Sunset,"(37.7640524831749, -122.464704638953)",111090013-E12 -110350274,B06,11011558,Traffic Collision,02/04/2011,02/04/2011,02/04/2011 04:37:51 PM,02/04/2011 04:37:51 PM,02/04/2011 04:38:18 PM,02/04/2011 04:40:31 PM,02/04/2011 04:44:41 PM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Other,02/04/2011 04:48:55 PM,0 Block of AMBER DR,SF,94131,B06,26,8166,3,3,3,false,,1,CHIEF,3,6,8,Noe Valley,"(37.7462761269097, -122.444743384409)",110350274-B06 -160412015,63,16016478,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:52:59 PM,02/10/2016 01:53:12 PM,02/10/2016 01:53:33 PM,02/10/2016 01:53:45 PM,02/10/2016 02:01:55 PM,02/10/2016 02:19:15 PM,02/10/2016 02:35:32 PM,Code 2 Transport,02/10/2016 02:51:45 PM,100 Block of LAKE MERCED HILL SOU ST,San Francisco,94132,B08,19,8764,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7086460122135, -122.483547793251)",160412015-63 -130310218,E03,13010590,Medical Incident,01/31/2013,01/31/2013,01/31/2013 01:00:54 PM,01/31/2013 01:02:56 PM,01/31/2013 01:03:12 PM,01/31/2013 01:04:54 PM,01/31/2013 01:07:51 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 01:14:15 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",130310218-E03 -111360048,E08,11045174,Traffic Collision,05/16/2011,05/15/2011,05/16/2011 05:41:37 AM,05/16/2011 05:45:11 AM,05/16/2011 05:46:49 AM,05/16/2011 05:48:23 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 05:54:07 AM,7TH ST/BRYANT ST,SF,94103,B03,8,2311,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7742810407569, -122.404748493756)",111360048-E08 -130900128,KM14,13030067,Medical Incident,03/31/2013,03/31/2013,03/31/2013 10:26:16 AM,03/31/2013 10:28:13 AM,03/31/2013 10:28:43 AM,03/31/2013 10:30:10 AM,03/31/2013 10:44:35 AM,03/31/2013 11:07:29 AM,03/31/2013 11:19:07 AM,Code 2 Transport,03/31/2013 11:54:02 AM,0 Block of MOULTON ST,SF,94123,B04,16,3444,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.7996785804117, -122.433486264039)",130900128-KM14 -123530094,T08,12118036,Medical Incident,12/18/2012,12/18/2012,12/18/2012 09:04:48 AM,12/18/2012 09:05:21 AM,12/18/2012 09:05:49 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 09:07:02 AM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",123530094-T08 -111720229,62,11056770,Medical Incident,06/21/2011,06/21/2011,06/21/2011 02:22:32 PM,06/21/2011 02:22:32 PM,06/21/2011 02:22:32 PM,06/21/2011 02:40:18 PM,06/21/2011 03:02:46 PM,06/21/2011 03:11:15 PM,06/21/2011 03:45:13 PM,Code 2 Transport,06/21/2011 04:05:40 PM,200 Block of JEFFERSON ST,SF,94133,B01,28,945,2,2,2,true,,1,MEDIC,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",111720229-62 -120440202,72,12014716,Medical Incident,02/13/2012,02/13/2012,02/13/2012 02:50:42 PM,02/13/2012 02:51:48 PM,02/13/2012 02:53:44 PM,02/13/2012 02:53:58 PM,02/13/2012 03:00:34 PM,02/13/2012 03:26:54 PM,02/13/2012 03:34:20 PM,Code 2 Transport,02/13/2012 03:58:14 PM,2400 Block of HARRISON ST,SF,94110,B06,7,545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7582329952396, -122.412355500109)",120440202-72 -140730034,84,14024526,Medical Incident,03/14/2014,03/13/2014,03/14/2014 04:35:56 AM,03/14/2014 04:37:25 AM,03/14/2014 04:37:49 AM,03/14/2014 04:38:05 AM,03/14/2014 04:49:04 AM,03/14/2014 05:14:11 AM,03/14/2014 05:40:26 AM,Code 2 Transport,03/14/2014 06:24:42 AM,1000 Block of CALIFORNIA ST,SAN FRANCISCO,94108,B01,41,1418,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7918323962484, -122.411275585139)",140730034-84 -131150323,E03,13038909,Medical Incident,04/25/2013,04/25/2013,04/25/2013 09:56:44 PM,04/25/2013 09:58:05 PM,04/25/2013 09:58:26 PM,04/25/2013 09:59:15 PM,04/25/2013 10:01:31 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 10:04:00 PM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",131150323-E03 -121140084,E17,12037767,Medical Incident,04/23/2012,04/23/2012,04/23/2012 08:22:08 AM,04/23/2012 08:23:00 AM,04/23/2012 08:23:16 AM,04/23/2012 08:23:59 AM,04/23/2012 08:26:34 AM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 08:33:29 AM,1300 Block of QUESADA AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7295945473081, -122.384963446158)",121140084-E17 -113410130,KM12,11113001,Medical Incident,12/07/2011,12/07/2011,12/07/2011 09:56:21 AM,12/07/2011 09:56:40 AM,12/07/2011 09:57:21 AM,12/07/2011 09:58:00 AM,12/07/2011 10:01:56 AM,12/07/2011 10:19:47 AM,12/07/2011 10:38:43 AM,Code 2 Transport,12/07/2011 11:07:43 AM,400 Block of ARCH ST,SF,94132,B09,33,8444,3,2,2,false,,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",113410130-KM12 -160780149,73,16030860,Medical Incident,03/18/2016,03/17/2016,03/18/2016 01:05:08 AM,03/18/2016 01:05:08 AM,03/18/2016 01:37:41 AM,03/18/2016 01:37:50 AM,03/18/2016 01:43:48 AM,03/18/2016 01:51:01 AM,03/18/2016 01:59:17 AM,Code 2 Transport,03/18/2016 02:42:19 AM,VAN NESS AV/GROVE ST,San Francisco,94102,B02,36,3165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",160780149-73 -130690064,68,13022947,Medical Incident,03/10/2013,03/09/2013,03/10/2013 04:12:58 AM,03/10/2013 04:15:44 AM,03/10/2013 04:16:02 AM,03/10/2013 04:16:10 AM,03/10/2013 04:20:44 AM,03/10/2013 04:48:40 AM,03/10/2013 05:03:47 AM,Other,03/10/2013 05:28:48 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,2,3,3,false,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",130690064-68 -160130372,70,16005046,Traffic Collision,01/13/2016,01/12/2016,01/13/2016 04:36:12 AM,01/13/2016 04:39:44 AM,01/13/2016 04:42:28 AM,01/13/2016 04:42:40 AM,01/13/2016 04:51:54 AM,01/13/2016 05:43:29 AM,01/13/2016 05:52:13 AM,Code 2 Transport,01/13/2016 06:11:01 AM,280NB MARIPOSA OF/MARIPOSA ST,San Francisco,94107,B03,25,2612,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,10,Potrero Hill,"(37.7640645231086, -122.392134719451)",160130372-70 -131190220,E03,13040070,Medical Incident,04/29/2013,04/29/2013,04/29/2013 01:35:14 PM,04/29/2013 01:36:10 PM,04/29/2013 01:38:06 PM,04/25/2016 01:53:03 PM,04/29/2013 01:39:09 PM,04/25/2016 01:53:03 PM,04/25/2016 01:53:03 PM,Other,04/29/2013 01:54:13 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",131190220-E03 -111480274,65,11049172,Medical Incident,05/28/2011,05/28/2011,05/28/2011 07:16:36 PM,05/28/2011 07:17:43 PM,05/28/2011 07:24:15 PM,05/28/2011 07:39:04 PM,05/28/2011 07:48:38 PM,05/28/2011 08:01:38 PM,05/28/2011 08:12:58 PM,Code 2 Transport,05/28/2011 08:30:23 PM,0 Block of JONES ST,SF,94102,B03,1,1455,1,1,2,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",111480274-65 -120900083,E18,12029712,Medical Incident,03/30/2012,03/30/2012,03/30/2012 08:18:22 AM,03/30/2012 08:20:04 AM,03/30/2012 08:20:15 AM,03/30/2012 08:22:33 AM,03/30/2012 08:27:32 AM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,Other,03/30/2012 08:31:04 AM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7444820263748, -122.506894604858)",120900083-E18 -110680452,54,11022532,Medical Incident,03/09/2011,03/09/2011,03/09/2011 10:38:37 PM,03/09/2011 10:39:03 PM,03/09/2011 10:39:25 PM,03/09/2011 10:40:26 PM,03/09/2011 10:48:55 PM,03/09/2011 11:23:33 PM,03/09/2011 11:34:59 PM,Code 2 Transport,03/10/2011 12:02:50 AM,300 Block of LONDON ST,SF,94112,B09,43,6127,2,2,2,true,,1,MEDIC,1,9,11,Excelsior,"(37.7235683507145, -122.434680216191)",110680452-54 -130580403,67,13019637,Medical Incident,02/27/2013,02/27/2013,02/27/2013 10:21:26 PM,02/27/2013 10:23:14 PM,02/27/2013 10:24:22 PM,02/27/2013 10:25:02 PM,02/27/2013 10:38:44 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,No Merit,02/27/2013 10:48:08 PM,400 Block of 10TH AVE,SF,94118,B07,31,7135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7798565842319, -122.468564165185)",130580403-67 -111660366,B01,11054952,Alarms,06/15/2011,06/15/2011,06/15/2011 10:31:57 PM,06/15/2011 10:33:30 PM,06/15/2011 10:33:51 PM,06/15/2011 10:36:27 PM,06/15/2011 10:41:05 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Fire,06/15/2011 10:42:12 PM,100 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,false,,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7933796204253, -122.398184018556)",111660366-B01 -112110259,94,11069703,Medical Incident,07/30/2011,07/30/2011,07/30/2011 04:52:37 PM,07/30/2011 04:54:28 PM,07/30/2011 04:56:31 PM,07/30/2011 04:56:43 PM,07/30/2011 05:09:25 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,No Merit,07/30/2011 05:14:26 PM,3900 Block of MISSION ST,SF,94112,B06,32,5632,2,2,2,true,,1,MEDIC,1,6,8,Bernal Heights,"(37.7348739744369, -122.425329625953)",112110259-94 -131000368,81,13033764,Medical Incident,04/10/2013,04/10/2013,04/10/2013 08:51:58 PM,04/10/2013 08:53:44 PM,04/10/2013 08:54:17 PM,04/10/2013 08:54:23 PM,04/10/2013 09:05:46 PM,04/10/2013 09:26:25 PM,04/10/2013 09:31:07 PM,Code 2 Transport,04/10/2013 09:57:11 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",131000368-81 -113110144,E05,11103309,Medical Incident,11/07/2011,11/07/2011,11/07/2011 10:41:25 AM,11/07/2011 10:44:22 AM,11/07/2011 10:44:36 AM,11/07/2011 10:45:34 AM,11/07/2011 10:47:35 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 10:53:45 AM,1300 Block of PIERCE ST,SF,94115,B05,5,3647,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",113110144-E05 -131690340,T15,13057504,Other,06/18/2013,06/18/2013,06/18/2013 06:25:39 PM,06/18/2013 06:28:57 PM,06/18/2013 06:29:09 PM,06/18/2013 06:30:05 PM,06/18/2013 06:32:46 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 06:44:59 PM,4500 Block of MISSION ST,SF,94112,B09,43,6116,3,3,3,false,Alarm,1,TRUCK,3,9,11,Excelsior,"(37.7254403539192, -122.434144744673)",131690340-T15 -160300810,85,16011703,Medical Incident,01/30/2016,01/29/2016,01/30/2016 07:52:59 AM,01/30/2016 07:54:23 AM,01/30/2016 08:13:29 AM,01/30/2016 08:13:39 AM,01/30/2016 08:17:34 AM,01/30/2016 08:22:07 AM,01/30/2016 08:46:38 AM,Code 3 Transport,01/30/2016 09:16:11 AM,MISSION ST/HARRINGTON ST,San Francisco,94112,B09,43,6116,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Outer Mission,"(37.725175477117, -122.434425695768)",160300810-85 -122600292,96,12086043,Medical Incident,09/16/2012,09/16/2012,09/16/2012 08:28:16 PM,09/16/2012 08:29:48 PM,09/16/2012 08:29:54 PM,09/16/2012 08:30:44 PM,09/16/2012 08:42:42 PM,09/16/2012 08:57:43 PM,09/16/2012 09:10:50 PM,Code 2 Transport,09/16/2012 09:52:58 PM,500 Block of 37TH AVE,SF,94121,B07,34,7255,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7785448312332, -122.497454025563)",122600292-96 -140320276,54,14010925,Medical Incident,02/01/2014,02/01/2014,02/01/2014 05:20:04 PM,02/01/2014 05:21:05 PM,02/01/2014 05:21:52 PM,02/01/2014 05:22:45 PM,02/01/2014 05:36:52 PM,02/01/2014 05:55:18 PM,02/01/2014 06:09:40 PM,Code 2 Transport,02/01/2014 06:33:09 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",140320276-54 -160031752,89,16001201,Medical Incident,01/03/2016,01/03/2016,01/03/2016 02:24:04 PM,01/03/2016 02:27:28 PM,01/03/2016 02:27:39 PM,01/03/2016 02:28:29 PM,01/03/2016 02:31:26 PM,01/03/2016 02:53:36 PM,01/03/2016 03:08:31 PM,Code 2 Transport,01/03/2016 03:52:57 PM,1200 Block of OCEAN AV,San Francisco,94112,B09,15,8472,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7238590120011, -122.455615861538)",160031752-89 -132820278,89,13096038,Medical Incident,10/09/2013,10/09/2013,10/09/2013 04:36:54 PM,10/09/2013 04:37:28 PM,10/09/2013 04:38:12 PM,10/09/2013 04:38:34 PM,10/09/2013 04:45:24 PM,10/09/2013 04:54:54 PM,10/09/2013 05:10:04 PM,Code 2 Transport,10/09/2013 05:47:51 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",132820278-89 -160262792,59,16010386,Medical Incident,01/26/2016,01/26/2016,01/26/2016 05:06:17 PM,01/26/2016 05:07:26 PM,01/26/2016 05:07:43 PM,01/26/2016 05:07:49 PM,01/26/2016 05:13:03 PM,01/26/2016 05:41:04 PM,01/26/2016 05:46:57 PM,Code 2 Transport,01/26/2016 06:31:14 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160262792-59 -160612792,KM12,16024427,Medical Incident,03/01/2016,03/01/2016,03/01/2016 06:15:37 PM,03/01/2016 06:16:07 PM,03/01/2016 06:17:19 PM,03/01/2016 06:18:39 PM,03/01/2016 06:21:33 PM,03/01/2016 06:35:09 PM,03/01/2016 07:08:49 PM,Code 2 Transport,03/01/2016 07:50:25 PM,BAY ST/BUCHANAN ST,San Francisco,94123,B04,16,3446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8030568840333, -122.433327957472)",160612792-KM12 -160762828,57,16030245,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:52:24 PM,03/16/2016 04:52:24 PM,03/16/2016 04:52:37 PM,03/16/2016 04:52:50 PM,03/16/2016 05:08:52 PM,03/16/2016 05:13:33 PM,03/16/2016 05:33:13 PM,Code 2 Transport,03/16/2016 06:19:58 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160762828-57 -133030030,82,13102820,Medical Incident,10/30/2013,10/29/2013,10/30/2013 04:19:40 AM,10/30/2013 04:21:24 AM,10/30/2013 04:21:45 AM,10/30/2013 04:21:51 AM,10/30/2013 04:31:02 AM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/30/2013 04:33:17 AM,900 Block of POWELL ST,SF,94108,B01,2,1355,2,2,2,false,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",133030030-82 -160753187,KM05,16029843,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:32:07 PM,03/15/2016 06:33:36 PM,03/15/2016 06:34:45 PM,03/15/2016 06:35:38 PM,03/15/2016 06:47:02 PM,03/15/2016 07:00:32 PM,03/15/2016 07:10:28 PM,Code 2 Transport,03/15/2016 07:41:01 PM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7758850858315, -122.430365346492)",160753187-KM05 -132100311,KM02,13071132,Medical Incident,07/29/2013,07/29/2013,07/29/2013 05:46:43 PM,07/29/2013 05:48:04 PM,07/29/2013 05:49:03 PM,07/29/2013 05:49:56 PM,07/29/2013 05:54:54 PM,07/29/2013 06:12:11 PM,07/29/2013 06:24:03 PM,Code 2 Transport,07/29/2013 06:47:23 PM,KEARNY ST/BUSH ST,SF,94104,B01,13,1235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",132100311-KM02 -123360225,E03,12111759,Medical Incident,12/01/2012,12/01/2012,12/01/2012 02:30:59 PM,12/01/2012 02:33:50 PM,12/01/2012 02:41:06 PM,12/01/2012 02:42:14 PM,12/01/2012 02:43:57 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 02:59:36 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,Non Life-threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",123360225-E03 -132820289,T05,13096046,Structure Fire,10/09/2013,10/09/2013,10/09/2013 05:00:47 PM,10/09/2013 05:00:47 PM,10/09/2013 05:01:08 PM,10/09/2013 05:02:08 PM,10/09/2013 05:03:26 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/09/2013 05:05:17 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",132820289-T05 -121270369,77,12042443,Medical Incident,05/06/2012,05/06/2012,05/06/2012 11:46:09 PM,05/06/2012 11:47:11 PM,05/06/2012 11:47:20 PM,05/06/2012 11:47:27 PM,05/06/2012 11:57:03 PM,05/07/2012 12:15:09 AM,05/07/2012 12:25:48 AM,Code 2 Transport,05/07/2012 01:02:33 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",121270369-77 -160200070,70,16007835,Medical Incident,01/20/2016,01/19/2016,01/20/2016 12:31:24 AM,01/20/2016 12:32:22 AM,01/20/2016 12:32:29 AM,01/20/2016 12:33:14 AM,01/20/2016 12:37:57 AM,01/20/2016 01:05:56 AM,01/20/2016 01:12:36 AM,Code 2 Transport,01/20/2016 01:35:46 AM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",160200070-70 -140420166,77,14014258,Medical Incident,02/11/2014,02/11/2014,02/11/2014 11:21:22 AM,02/11/2014 11:23:32 AM,02/11/2014 11:23:56 AM,02/11/2014 11:24:14 AM,02/11/2014 11:35:58 AM,02/11/2014 12:13:50 PM,02/11/2014 12:47:08 PM,Code 2 Transport,02/11/2014 01:24:23 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",140420166-77 -130970041,94,13032415,Medical Incident,04/07/2013,04/06/2013,04/07/2013 02:16:35 AM,04/07/2013 02:17:04 AM,04/07/2013 02:17:25 AM,04/07/2013 02:17:34 AM,04/07/2013 02:25:53 AM,04/07/2013 02:40:18 AM,04/07/2013 02:45:51 AM,Code 2 Transport,04/07/2013 02:59:53 AM,29TH ST/CHURCH ST,SF,94131,B06,11,5563,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7436995806296, -122.42667038152)",130970041-94 -121470320,89,12048920,Traffic Collision,05/26/2012,05/26/2012,05/26/2012 09:56:13 PM,05/26/2012 09:58:49 PM,05/26/2012 09:59:03 PM,05/26/2012 09:59:17 PM,05/26/2012 10:02:07 PM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/26/2012 10:46:39 PM,STEINER ST/HAIGHT ST,SF,94117,B05,6,3633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7718972649576, -122.432092300663)",121470320-89 -111430099,T17,11047463,Outside Fire,05/23/2011,05/23/2011,05/23/2011 09:16:52 AM,05/23/2011 09:19:14 AM,05/23/2011 09:19:45 AM,05/23/2011 09:20:07 AM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/23/2011 09:34:28 AM,ARELIOUS WALKER DR/INNES AV,SF,94124,B10,25,6663,3,3,3,false,,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7309360720471, -122.373890366307)",111430099-T17 -132570229,E01,13086942,Medical Incident,09/14/2013,09/14/2013,09/14/2013 02:38:20 PM,09/14/2013 02:39:44 PM,09/14/2013 02:40:02 PM,09/14/2013 02:41:44 PM,09/14/2013 02:44:25 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 02:48:19 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",132570229-E01 -160853641,78,16033962,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:55:53 PM,03/25/2016 08:55:53 PM,03/25/2016 08:56:21 PM,03/25/2016 08:56:33 PM,03/25/2016 09:05:53 PM,03/25/2016 09:25:49 PM,03/25/2016 09:30:24 PM,Code 2 Transport,03/25/2016 10:11:50 PM,600 Block of STANYAN ST,San Francisco,94117,B05,12,4553,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696403896003, -122.453563238036)",160853641-78 -113030314,E31,11100664,Traffic Collision,10/30/2011,10/30/2011,10/30/2011 05:01:28 PM,10/30/2011 05:02:19 PM,10/30/2011 05:02:48 PM,10/30/2011 05:03:58 PM,10/30/2011 05:06:31 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 05:08:24 PM,FUNSTON AV/FULTON ST,SF,94118,B07,31,7144,3,3,3,false,,1,ENGINE,1,7,1,Golden Gate Park,"(37.7731619822657, -122.471240066496)",113030314-E31 -160862167,81,16034218,Medical Incident,03/26/2016,03/26/2016,03/26/2016 03:01:40 PM,03/26/2016 03:02:49 PM,03/26/2016 03:04:07 PM,03/26/2016 03:04:20 PM,03/26/2016 03:16:15 PM,03/26/2016 03:29:59 PM,03/26/2016 03:45:33 PM,Code 2 Transport,03/26/2016 05:01:59 PM,PERU AV/BURROWS ST,San Francisco,94134,B09,43,6153,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Excelsior,"(37.7239441939341, -122.422830067938)",160862167-81 -132650164,66,13089877,Medical Incident,09/22/2013,09/22/2013,09/22/2013 11:20:09 AM,09/22/2013 11:20:38 AM,09/22/2013 11:24:30 AM,09/22/2013 11:24:52 AM,09/22/2013 11:36:03 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Patient Declined Transport,09/22/2013 12:07:22 PM,300 Block of 5TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7820265124689, -122.463349690466)",132650164-66 -140640055,81,14021539,Medical Incident,03/05/2014,03/04/2014,03/05/2014 07:56:29 AM,03/05/2014 07:58:30 AM,03/05/2014 08:01:32 AM,03/05/2014 08:01:36 AM,03/05/2014 08:20:41 AM,03/05/2014 08:45:10 AM,03/05/2014 09:07:41 AM,Code 2 Transport,03/05/2014 09:47:41 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",140640055-81 -102520166,T06,10079609,Medical Incident,09/09/2010,09/09/2010,09/09/2010 12:39:19 PM,09/09/2010 12:39:37 PM,09/09/2010 12:39:49 PM,09/09/2010 12:40:49 PM,09/09/2010 12:43:05 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/09/2010 12:51:08 PM,0 Block of PEARL ST,SF,94103,B02,36,5126,2,2,2,false,,1,TRUCK,1,2,8,Mission,"(37.7702165874997, -122.42393258709)",102520166-T06 -121810323,KM09,12060387,Medical Incident,06/29/2012,06/29/2012,06/29/2012 08:00:22 PM,06/29/2012 08:00:49 PM,06/29/2012 08:01:42 PM,06/29/2012 08:03:56 PM,06/29/2012 08:03:14 PM,06/29/2012 08:34:02 PM,06/29/2012 08:37:30 PM,Code 2 Transport,06/29/2012 09:12:37 PM,0 Block of STANYAN BLVD,SF,94118,B07,10,4563,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Lone Mountain/USF,"(37.7806293517594, -122.456219132434)",121810323-KM09 -160903345,AM20,16035851,Medical Incident,03/30/2016,03/30/2016,03/30/2016 07:05:33 PM,03/30/2016 07:05:33 PM,03/30/2016 07:08:15 PM,03/30/2016 07:08:48 PM,03/30/2016 07:21:43 PM,03/30/2016 07:50:01 PM,03/30/2016 08:03:55 PM,Code 2 Transport,03/30/2016 08:41:29 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160903345-AM20 -140640221,T02,14021675,Alarms,03/05/2014,03/05/2014,03/05/2014 03:19:07 PM,03/05/2014 03:19:08 PM,03/05/2014 03:19:47 PM,03/05/2014 03:20:50 PM,03/05/2014 03:22:01 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Fire,03/05/2014 03:22:54 PM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.7980497141877, -122.406829909619)",140640221-T02 -130480057,67,13016275,Medical Incident,02/17/2013,02/16/2013,02/17/2013 02:52:23 AM,02/17/2013 02:52:24 AM,02/17/2013 02:52:56 AM,02/17/2013 02:53:08 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 03:00:16 AM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,E,E,3,false,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7209580935201, -122.387166280374)",130480057-67 -113330158,T17,11110290,Structure Fire,11/29/2011,11/29/2011,11/29/2011 12:22:26 PM,11/29/2011 12:22:35 PM,11/29/2011 12:22:48 PM,11/29/2011 12:24:36 PM,11/29/2011 12:27:11 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 12:34:15 PM,100 Block of WHITNEY YOUNG CIR,SF,94124,B10,17,1100,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7360363462118, -122.385908786754)",113330158-T17 -112870397,60,11095330,Medical Incident,10/14/2011,10/14/2011,10/14/2011 08:55:29 PM,10/14/2011 08:57:22 PM,10/14/2011 08:57:40 PM,10/14/2011 08:57:51 PM,10/14/2011 09:02:39 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Patient Declined Transport,10/14/2011 09:05:49 PM,600 Block of COLUMBUS AVE,SF,94133,B01,28,1334,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8006156213687, -122.410534621364)",112870397-60 -130480345,E37,13016525,Medical Incident,02/17/2013,02/17/2013,02/17/2013 09:00:44 PM,02/17/2013 09:02:36 PM,02/17/2013 09:02:48 PM,02/17/2013 09:03:56 PM,02/17/2013 09:05:36 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 09:14:52 PM,500 Block of TEXAS ST,SF,94107,B10,37,2541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7592223045204, -122.395164170538)",130480345-E37 -160482013,AM10,16019357,Medical Incident,02/17/2016,02/17/2016,02/17/2016 01:31:25 PM,02/17/2016 01:32:08 PM,02/17/2016 01:32:18 PM,02/17/2016 01:35:18 PM,02/17/2016 01:42:16 PM,02/17/2016 01:57:07 PM,02/17/2016 02:24:48 PM,Code 2 Transport,02/17/2016 02:49:59 PM,200 Block of 3RD ST,San Francisco,94105,B03,1,2177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7846604121968, -122.39991472916)",160482013-AM10 -122430114,E38,12080301,Traffic Collision,08/30/2012,08/30/2012,08/30/2012 10:25:36 AM,08/30/2012 10:26:09 AM,08/30/2012 10:26:23 AM,08/30/2012 10:26:39 AM,08/30/2012 10:29:17 AM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/30/2012 10:32:11 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",122430114-E38 -113110157,T03,11103320,Medical Incident,11/07/2011,11/07/2011,11/07/2011 11:22:49 AM,11/07/2011 11:23:37 AM,11/07/2011 11:23:59 AM,11/07/2011 11:24:13 AM,11/07/2011 11:28:41 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 11:32:52 AM,500 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,false,,1,TRUCK,1,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",113110157-T03 -160413251,76,16016599,Medical Incident,02/10/2016,02/10/2016,02/10/2016 07:03:35 PM,02/10/2016 07:04:43 PM,02/10/2016 07:05:12 PM,02/10/2016 07:05:21 PM,02/10/2016 07:14:48 PM,02/10/2016 07:30:32 PM,02/10/2016 07:42:14 PM,Code 2 Transport,02/10/2016 08:20:07 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160413251-76 -121840138,AM08,12061255,Medical Incident,07/02/2012,07/02/2012,07/02/2012 11:41:40 AM,07/02/2012 11:45:27 AM,07/02/2012 11:46:36 AM,07/02/2012 11:47:04 AM,07/02/2012 11:52:45 AM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Unable to Locate,07/02/2012 11:56:45 AM,CORTLAND AV/BAYSHORE BL,SF,94124,B10,42,6374,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",121840138-AM08 -111340304,AM04,11044675,Medical Incident,05/14/2011,05/14/2011,05/14/2011 08:37:58 PM,05/14/2011 08:39:49 PM,05/14/2011 08:41:14 PM,04/25/2016 02:04:38 PM,05/14/2011 08:49:25 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,No Merit,05/14/2011 08:58:45 PM,0 Block of OFARRELL ST,SF,94108,B01,1,1321,1,1,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.786735734759, -122.405883301385)",111340304-AM04 -112860174,KM15,11094725,Medical Incident,10/13/2011,10/13/2011,10/13/2011 11:19:45 AM,10/13/2011 11:21:11 AM,10/13/2011 11:21:42 AM,10/13/2011 11:24:06 AM,10/13/2011 11:34:03 AM,10/13/2011 11:50:09 AM,04/25/2016 02:02:11 PM,Code 2 Transport,10/13/2011 12:54:18 PM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,false,,1,PRIVATE,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",112860174-KM15 -102610094,E03,10082430,Medical Incident,09/18/2010,09/17/2010,09/18/2010 06:43:25 AM,09/18/2010 06:45:51 AM,09/18/2010 06:46:37 AM,09/18/2010 06:49:08 AM,09/18/2010 06:50:43 AM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,Other,09/18/2010 07:01:04 AM,900 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.787277154617, -122.416825199786)",102610094-E03 -160130420,60,16005060,Medical Incident,01/13/2016,01/12/2016,01/13/2016 05:28:40 AM,01/13/2016 05:28:40 AM,01/13/2016 05:28:40 AM,01/13/2016 05:28:40 AM,01/13/2016 05:28:40 AM,01/13/2016 05:41:05 AM,01/13/2016 06:04:42 AM,Code 2 Transport,01/13/2016 06:29:58 AM,SCOTT ST/MARINA BL,San Francisco,94123,B99,16,4111,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8057862730196, -122.442209784032)",160130420-60 -122090218,E32,12069472,Alarms,07/27/2012,07/27/2012,07/27/2012 03:31:36 PM,07/27/2012 03:32:53 PM,07/27/2012 03:33:23 PM,07/27/2012 03:35:58 PM,07/27/2012 03:38:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 03:41:24 PM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",122090218-E32 -130060240,B02,13002119,Structure Fire,01/06/2013,01/06/2013,01/06/2013 05:20:24 PM,01/06/2013 05:21:53 PM,01/06/2013 05:22:02 PM,01/06/2013 05:24:09 PM,01/06/2013 05:25:48 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 05:33:46 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Alarm,1,CHIEF,6,3,6,South of Market,"(37.7795675906982, -122.407474134289)",130060240-B02 -113270191,RS2,11108568,Traffic Collision,11/23/2011,11/23/2011,11/23/2011 01:44:51 PM,11/23/2011 01:46:42 PM,11/23/2011 01:47:05 PM,11/23/2011 01:47:51 PM,11/23/2011 01:50:09 PM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 01:53:46 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,false,,1,RESCUE SQUAD,1,2,9,Mission,"(37.7677331022924, -122.415606951318)",113270191-RS2 -160582190,57,16023157,Traffic Collision,02/27/2016,02/27/2016,02/27/2016 03:08:08 PM,02/27/2016 03:09:54 PM,02/27/2016 03:11:22 PM,02/27/2016 03:12:41 PM,02/27/2016 03:13:35 PM,02/27/2016 04:00:21 PM,02/27/2016 04:19:43 PM,Code 2 Transport,02/27/2016 04:52:49 PM,SPEAR ST/HARRISON ST,San Francisco,94105,B03,35,2113,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7888377778921, -122.389428941783)",160582190-57 -130530190,E01,13017913,Medical Incident,02/22/2013,02/22/2013,02/22/2013 01:01:38 PM,02/22/2013 01:02:27 PM,02/22/2013 01:02:53 PM,02/22/2013 01:04:19 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Other,02/22/2013 01:05:29 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",130530190-E01 -123610136,AM20,12120766,Medical Incident,12/26/2012,12/26/2012,12/26/2012 11:18:37 AM,12/26/2012 11:20:25 AM,12/26/2012 11:21:45 AM,12/26/2012 11:22:41 AM,12/26/2012 11:33:27 AM,12/26/2012 11:48:12 AM,12/26/2012 12:01:45 PM,Code 2 Transport,12/26/2012 12:44:19 PM,0 Block of WILLS ST,SF,94124,B10,25,6556,1,1,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7361932827644, -122.378911946522)",123610136-AM20 -112070237,86,11068424,Medical Incident,07/26/2011,07/26/2011,07/26/2011 04:02:56 PM,07/26/2011 04:03:30 PM,07/26/2011 04:03:50 PM,07/26/2011 04:04:26 PM,07/26/2011 04:06:45 PM,07/26/2011 04:39:46 PM,07/26/2011 05:03:43 PM,Code 2 Transport,07/26/2011 05:31:14 PM,1600 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,,1,MEDIC,1,4,5,Japantown,"(37.78676442656, -122.427490271072)",112070237-86 -113300031,92,11109313,Medical Incident,11/26/2011,11/25/2011,11/26/2011 02:42:25 AM,11/26/2011 02:46:04 AM,11/26/2011 02:46:24 AM,11/26/2011 02:46:39 AM,11/26/2011 02:48:55 AM,11/26/2011 03:17:09 AM,11/26/2011 03:41:52 AM,Other,11/26/2011 04:07:54 AM,1000 Block of NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,,1,MEDIC,1,1,2,Russian Hill,"(37.8052366794259, -122.424487781781)",113300031-92 -102960262,T05,10094496,Structure Fire,10/23/2010,10/23/2010,10/23/2010 06:14:14 PM,10/23/2010 06:14:14 PM,10/23/2010 06:14:22 PM,10/23/2010 06:15:31 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 06:17:24 PM,0 Block of LARKIN ST,SF,94102,B02,36,1646,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7775888205813, -122.416411092393)",102960262-T05 -111830278,AM18,11060523,Medical Incident,07/02/2011,07/02/2011,07/02/2011 06:36:35 PM,07/02/2011 06:37:20 PM,07/02/2011 06:37:50 PM,07/02/2011 06:38:27 PM,07/02/2011 06:45:36 PM,07/02/2011 06:57:32 PM,07/02/2011 07:16:30 PM,Code 2 Transport,07/02/2011 07:41:58 PM,200 Block of BRUNSWICK ST,SF,94112,B09,43,6217,3,3,3,false,,1,PRIVATE,2,9,11,Excelsior,"(37.7113587742685, -122.440341216576)",111830278-AM18 -123250389,E10,12108255,Medical Incident,11/20/2012,11/20/2012,11/20/2012 09:07:23 PM,11/20/2012 09:08:27 PM,11/20/2012 09:08:47 PM,11/20/2012 09:10:24 PM,11/20/2012 09:13:26 PM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,Other,11/20/2012 09:29:09 PM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",123250389-E10 -103560307,E01,10114369,Medical Incident,12/22/2010,12/22/2010,12/22/2010 07:19:01 PM,12/22/2010 07:19:45 PM,12/22/2010 07:20:45 PM,12/22/2010 07:22:18 PM,12/22/2010 07:24:58 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/22/2010 07:33:04 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",103560307-E01 -160532162,76,16021265,Medical Incident,02/22/2016,02/22/2016,02/22/2016 03:23:55 PM,02/22/2016 03:25:18 PM,02/22/2016 03:26:32 PM,02/22/2016 03:28:30 PM,02/22/2016 03:30:44 PM,02/22/2016 03:55:22 PM,02/22/2016 04:17:52 PM,Code 2 Transport,02/22/2016 05:02:33 PM,1700 Block of CESAR CHAVEZ ST,San Francisco,94107,B10,9,2634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7499142654366, -122.394328983742)",160532162-76 -160752188,54,16029752,Medical Incident,03/15/2016,03/15/2016,03/15/2016 02:35:29 PM,03/15/2016 02:37:19 PM,03/15/2016 02:40:27 PM,03/15/2016 02:40:35 PM,03/15/2016 03:03:34 PM,03/15/2016 03:18:54 PM,03/15/2016 03:45:12 PM,Code 2 Transport,03/15/2016 04:22:04 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160752188-54 -122010348,AM10,12066945,Medical Incident,07/19/2012,07/19/2012,07/19/2012 11:22:43 PM,07/19/2012 11:24:42 PM,07/19/2012 11:25:32 PM,07/19/2012 11:26:20 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/19/2012 11:33:11 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",122010348-AM10 -160171604,88,16006845,Medical Incident,01/17/2016,01/17/2016,01/17/2016 12:49:05 PM,01/17/2016 12:52:45 PM,01/17/2016 12:53:08 PM,01/17/2016 12:53:50 PM,01/17/2016 12:57:32 PM,01/17/2016 01:16:16 PM,01/17/2016 01:21:18 PM,Code 2 Transport,01/17/2016 02:01:59 PM,900 Block of SACRAMENTO ST,San Francisco,94108,B01,2,1326,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",160171604-88 -103440244,T03,10110252,Medical Incident,12/10/2010,12/10/2010,12/10/2010 01:59:33 PM,12/10/2010 01:59:52 PM,12/10/2010 02:00:50 PM,12/10/2010 02:01:55 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 02:05:55 PM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,,1,TRUCK,4,2,6,Tenderloin,"(37.7825297445725, -122.412384547628)",103440244-T03 -110100276,84,11003386,Medical Incident,01/10/2011,01/10/2011,01/10/2011 03:41:03 PM,01/10/2011 03:42:05 PM,01/10/2011 03:42:59 PM,01/10/2011 03:43:15 PM,01/10/2011 03:45:20 PM,01/10/2011 03:58:29 PM,01/10/2011 04:06:27 PM,Code 2 Transport,01/10/2011 04:24:47 PM,700 Block of HYDE ST,SF,94109,B04,3,1557,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7877028540247, -122.416801264327)",110100276-84 -160330217,65,16012821,Medical Incident,02/02/2016,02/01/2016,02/02/2016 02:16:51 AM,02/02/2016 02:17:41 AM,02/02/2016 02:18:12 AM,02/02/2016 02:18:54 AM,02/02/2016 02:21:17 AM,02/02/2016 02:50:05 AM,02/02/2016 02:50:06 AM,Code 3 Transport,02/02/2016 03:30:33 AM,TAYLOR ST/GEARY ST,San Francisco,94102,B01,3,1462,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869397066362, -122.411515768512)",160330217-65 -140050270,E41,14001880,Smoke Investigation (Outside),01/05/2014,01/05/2014,01/05/2014 05:20:19 PM,01/05/2014 05:23:23 PM,01/05/2014 05:24:11 PM,01/05/2014 05:25:13 PM,01/05/2014 05:26:34 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 05:30:59 PM,POLK ST/SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7914958541783, -122.420873185108)",140050270-E41 -133270102,E24,13110998,Medical Incident,11/23/2013,11/22/2013,11/23/2013 07:20:08 AM,11/23/2013 07:21:12 AM,11/23/2013 07:21:39 AM,11/23/2013 07:23:59 AM,11/23/2013 07:26:23 AM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 09:06:19 AM,4700 Block of 19TH ST,SF,94114,B05,24,5271,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.758856824394, -122.443469820107)",133270102-E24 -140770060,E15,14025968,Smoke Investigation (Outside),03/18/2014,03/17/2014,03/18/2014 07:44:08 AM,03/18/2014 07:45:26 AM,03/18/2014 07:45:52 AM,03/18/2014 07:46:52 AM,03/18/2014 07:50:03 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,No Merit,03/18/2014 07:54:46 AM,0 Block of PHELAN AVE,SAN FRANCISCO,94112,B09,15,8225,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",140770060-E15 -133580304,B06,13121821,Alarms,12/24/2013,12/24/2013,12/24/2013 07:11:30 PM,12/24/2013 07:12:38 PM,12/24/2013 07:12:59 PM,12/24/2013 07:14:15 PM,12/24/2013 07:18:11 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 07:26:39 PM,600 Block of ALVARADO ST,SF,94114,B06,24,5515,3,3,3,false,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7536611563754, -122.435425173732)",133580304-B06 -132660276,E11,13090323,Traffic Collision,09/23/2013,09/23/2013,09/23/2013 03:47:53 PM,09/23/2013 03:48:28 PM,09/23/2013 03:48:53 PM,09/23/2013 03:50:10 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/23/2013 03:50:10 PM,MISSION ST/RANDALL ST,SF,94110,B06,32,8112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,6,8,Bernal Heights,"(37.7398837058751, -122.423580240732)",132660276-E11 -131720274,RC3,13058468,Structure Fire,06/21/2013,06/21/2013,06/21/2013 07:04:06 PM,06/21/2013 07:13:09 PM,06/21/2013 07:46:32 PM,06/21/2013 07:48:19 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/21/2013 07:49:54 PM,2400 Block of 18TH AVE,SF,94116,B08,40,7376,3,3,3,true,Fire,1,RESCUE CAPTAIN,10,8,7,West of Twin Peaks,"(37.7421624130837, -122.47462808747)",131720274-RC3 -160032019,53,16001236,Medical Incident,01/03/2016,01/03/2016,01/03/2016 03:51:37 PM,01/03/2016 03:51:37 PM,01/03/2016 03:51:48 PM,01/03/2016 03:52:30 PM,01/03/2016 04:13:06 PM,01/03/2016 04:18:58 PM,01/03/2016 04:18:59 PM,Code 2 Transport,01/03/2016 05:09:31 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7777903094246, -122.412834332129)",160032019-53 -160223979,62,16008989,Traffic Collision,01/22/2016,01/22/2016,01/22/2016 11:39:14 PM,01/22/2016 11:40:58 PM,01/22/2016 11:41:12 PM,01/22/2016 11:41:31 PM,01/22/2016 11:46:37 PM,01/22/2016 11:55:19 PM,01/23/2016 12:18:43 AM,Code 2 Transport,01/23/2016 12:50:29 AM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",160223979-62 -111430190,E08,11047531,Alarms,05/23/2011,05/23/2011,05/23/2011 01:13:54 PM,05/23/2011 01:14:56 PM,05/23/2011 01:15:04 PM,05/23/2011 01:16:21 PM,05/23/2011 01:19:12 PM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/23/2011 01:22:27 PM,200 Block of 2ND ST,SF,94105,B03,1,2147,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",111430190-E08 -160641348,64,16025452,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:34:17 AM,03/04/2016 10:36:21 AM,03/04/2016 10:39:55 AM,03/04/2016 10:40:18 AM,03/04/2016 11:01:48 AM,03/04/2016 11:45:48 AM,03/04/2016 12:16:39 PM,Code 3 Transport,03/04/2016 01:15:56 PM,1200 Block of EGBERT AVE,San Francisco,94124,B10,17,6615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7211257483752, -122.389791072632)",160641348-64 -133010038,E14,13102167,Medical Incident,10/28/2013,10/27/2013,10/28/2013 05:35:57 AM,10/28/2013 05:36:48 AM,10/28/2013 05:38:39 AM,10/28/2013 05:40:44 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 06:04:46 AM,1800 Block of WEDEMEYER ST,PR,94129,B99,31,4623,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,7,2,Presidio,"(37.788127899431, -122.475124124799)",133010038-E14 -132450020,54,13082543,Medical Incident,09/02/2013,09/01/2013,09/02/2013 12:54:03 AM,09/02/2013 12:54:25 AM,09/02/2013 12:54:41 AM,09/02/2013 12:54:53 AM,09/02/2013 01:05:08 AM,09/02/2013 01:19:05 AM,09/02/2013 01:41:17 AM,Code 2 Transport,09/02/2013 01:57:06 AM,19TH AV/GEARY BL,SF,94121,B07,31,7161,2,2,2,false,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7803811907228, -122.47830487835)",132450020-54 -130380229,B02,13013030,Alarms,02/07/2013,02/07/2013,02/07/2013 03:06:26 PM,02/07/2013 03:07:15 PM,02/07/2013 03:07:19 PM,02/07/2013 03:08:31 PM,02/07/2013 03:11:32 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/07/2013 03:14:20 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",130380229-B02 -130860222,E13,13028716,Medical Incident,03/27/2013,03/27/2013,03/27/2013 02:24:41 PM,03/27/2013 02:25:12 PM,03/27/2013 02:25:44 PM,03/27/2013 02:27:12 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,04/25/2016 01:53:37 PM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2144,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",130860222-E13 -122970153,E41,12098463,Medical Incident,10/23/2012,10/23/2012,10/23/2012 10:28:12 AM,10/23/2012 10:28:48 AM,10/23/2012 10:29:03 AM,10/23/2012 10:30:05 AM,10/23/2012 10:36:01 AM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 10:36:29 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",122970153-E41 -131810017,T06,13061470,Medical Incident,06/30/2013,06/29/2013,06/30/2013 12:52:55 AM,06/30/2013 12:54:43 AM,06/30/2013 12:55:25 AM,06/30/2013 12:58:55 AM,06/30/2013 12:59:33 AM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,Other,06/30/2013 01:05:19 AM,DOUGLASS ST/17TH ST,SF,94114,B05,6,5254,2,2,2,false,Potentially Life-Threatening,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7622268680344, -122.439491322733)",131810017-T06 -110820397,E07,11027120,Medical Incident,03/23/2011,03/23/2011,03/23/2011 11:35:25 PM,03/23/2011 11:36:31 PM,03/23/2011 11:37:18 PM,03/23/2011 11:38:07 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 11:49:58 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,E,E,3,true,,1,ENGINE,3,2,9,Mission,"(37.7642444942899, -122.419521866555)",110820397-E07 -121580117,E33,12052222,Medical Incident,06/06/2012,06/06/2012,06/06/2012 10:04:01 AM,06/06/2012 10:05:50 AM,06/06/2012 10:11:18 AM,06/06/2012 10:13:22 AM,06/06/2012 10:18:05 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/06/2012 10:33:42 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",121580117-E33 -120010109,E06,12000084,Medical Incident,01/01/2012,12/31/2011,01/01/2012 01:18:36 AM,01/01/2012 01:19:26 AM,01/01/2012 01:21:09 AM,01/01/2012 01:30:15 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 01:31:13 AM,1000 Block of FOLSOM ST,SF,94103,B03,1,2313,3,E,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,South of Market,"(37.7777816676305, -122.406629219771)",120010109-E06 -121620224,E06,12053659,Medical Incident,06/10/2012,06/10/2012,06/10/2012 02:00:02 PM,06/10/2012 02:03:03 PM,06/10/2012 02:03:20 PM,06/10/2012 02:04:27 PM,06/10/2012 02:06:08 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 02:12:58 PM,CHURCH ST/DUBOCE AV,SF,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",121620224-E06 -160670129,85,16026567,Medical Incident,03/07/2016,03/06/2016,03/07/2016 01:36:58 AM,03/07/2016 01:38:18 AM,03/07/2016 01:38:58 AM,03/07/2016 01:39:10 AM,03/07/2016 01:54:03 AM,03/07/2016 02:04:34 AM,03/07/2016 02:10:38 AM,Code 2 Transport,03/07/2016 02:36:57 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7824182864419, -122.403869611535)",160670129-85 -140730266,72,14024709,Medical Incident,03/14/2014,03/14/2014,03/14/2014 04:03:10 PM,03/14/2014 04:04:06 PM,03/14/2014 04:05:12 PM,03/14/2014 04:05:55 PM,03/14/2014 04:13:52 PM,03/14/2014 04:25:26 PM,03/14/2014 04:29:51 PM,Code 2 Transport,03/14/2014 04:54:57 PM,500 Block of OFARRELL ST,SAN FRANCISCO,94102,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",140730266-72 -123070327,55,12102132,Medical Incident,11/02/2012,11/02/2012,11/02/2012 06:38:20 PM,11/02/2012 06:38:49 PM,11/02/2012 06:38:54 PM,11/02/2012 06:49:51 PM,11/02/2012 07:00:14 PM,11/02/2012 07:15:49 PM,11/02/2012 07:34:01 PM,Code 2 Transport,11/02/2012 07:52:18 PM,100 Block of SAGAMORE ST,SF,94112,B09,33,8371,3,2,2,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7114525824993, -122.457522136578)",123070327-55 -120230248,75,12007847,Medical Incident,01/23/2012,01/23/2012,01/23/2012 03:40:39 PM,01/23/2012 03:41:14 PM,01/23/2012 03:41:25 PM,01/23/2012 03:41:41 PM,01/23/2012 03:43:30 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Patient Declined Transport,01/23/2012 03:53:46 PM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",120230248-75 -160770183,KM03,16030420,Medical Incident,03/17/2016,03/16/2016,03/17/2016 01:20:24 AM,03/17/2016 01:22:37 AM,03/17/2016 01:30:17 AM,03/17/2016 01:31:41 AM,03/17/2016 01:38:08 AM,03/17/2016 01:52:28 AM,03/17/2016 02:24:28 AM,Code 2 Transport,03/17/2016 02:24:41 AM,1000 Block of HAIGHT ST,San Francisco,94117,B05,21,4246,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7710062058804, -122.439544330519)",160770183-KM03 -102680281,89,10084975,Medical Incident,09/25/2010,09/25/2010,09/25/2010 03:27:32 PM,09/25/2010 03:29:21 PM,09/25/2010 03:29:51 PM,09/25/2010 03:32:04 PM,09/25/2010 03:36:48 PM,09/25/2010 03:54:51 PM,04/25/2016 02:08:25 PM,Code 2 Transport,09/25/2010 04:40:44 PM,500 Block of FUNSTON AVE,SF,94118,B07,31,7145,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7778254843331, -122.471503187288)",102680281-89 -102830048,73,10089959,Medical Incident,10/10/2010,10/09/2010,10/10/2010 03:22:31 AM,10/10/2010 03:22:56 AM,10/10/2010 03:23:12 AM,10/10/2010 03:23:24 AM,10/10/2010 03:30:55 AM,10/10/2010 03:45:52 AM,10/10/2010 03:51:41 AM,Code 3 Transport,10/10/2010 04:28:36 AM,800 Block of EUCLID AVE,SF,94118,B07,10,4446,3,3,3,true,,1,MEDIC,2,7,2,Presidio Heights,"(37.7837956101144, -122.458479982089)",102830048-73 -121010247,59,12033536,Medical Incident,04/10/2012,04/10/2012,04/10/2012 04:08:40 PM,04/10/2012 04:10:38 PM,04/10/2012 04:11:00 PM,04/10/2012 04:11:14 PM,04/10/2012 04:16:05 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Against Medical Advice,04/10/2012 04:56:17 PM,FITZGERALD AV/JENNINGS ST,SF,94124,B10,17,6614,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7220347181097, -122.393171960162)",121010247-59 -113190390,E13,11106118,Medical Incident,11/15/2011,11/15/2011,11/15/2011 10:25:14 PM,11/15/2011 10:26:02 PM,11/15/2011 10:26:37 PM,11/15/2011 10:27:55 PM,11/15/2011 10:32:25 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/15/2011 11:02:08 PM,300 Block of MAIN ST,SF,94105,B03,35,2117,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",113190390-E13 -160610458,62,16024188,Medical Incident,03/01/2016,02/29/2016,03/01/2016 06:31:01 AM,03/01/2016 06:32:26 AM,03/01/2016 06:32:56 AM,03/01/2016 06:33:07 AM,03/01/2016 06:36:40 AM,03/01/2016 06:52:18 AM,03/01/2016 06:57:34 AM,Code 2 Transport,03/01/2016 07:28:21 AM,1300 Block of LARKIN ST,San Francisco,94109,B04,41,1635,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",160610458-62 -160200703,75,16007918,Medical Incident,01/20/2016,01/19/2016,01/20/2016 07:51:35 AM,01/20/2016 07:53:45 AM,01/20/2016 07:54:44 AM,01/20/2016 07:54:49 AM,01/20/2016 08:13:27 AM,01/20/2016 08:30:48 AM,01/20/2016 08:51:28 AM,Code 2 Transport,01/20/2016 09:27:01 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160200703-75 -131850260,86,13063117,Medical Incident,07/04/2013,07/04/2013,07/04/2013 05:42:08 PM,07/04/2013 05:45:02 PM,07/04/2013 05:45:13 PM,07/04/2013 05:45:19 PM,07/04/2013 05:52:07 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Against Medical Advice,07/04/2013 06:45:36 PM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",131850260-86 -113120328,E39,11103768,Medical Incident,11/08/2011,11/08/2011,11/08/2011 06:51:33 PM,11/08/2011 06:52:02 PM,11/08/2011 06:52:47 PM,11/08/2011 06:53:36 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,Other,11/08/2011 06:53:54 PM,100 Block of LANSDALE AVE,SF,94127,B09,39,8571,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7380813470488, -122.460536260185)",113120328-E39 -111540150,T03,11050856,Structure Fire,06/03/2011,06/03/2011,06/03/2011 12:23:35 PM,06/03/2011 12:23:35 PM,06/03/2011 12:24:24 PM,06/03/2011 12:25:58 PM,06/03/2011 12:27:35 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Fire,06/03/2011 12:28:05 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",111540150-T03 -140040156,T07,14001419,Structure Fire,01/04/2014,01/04/2014,01/04/2014 11:35:27 AM,01/04/2014 11:35:28 AM,01/04/2014 11:35:37 AM,01/04/2014 11:40:46 AM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,Other,01/04/2014 11:45:24 AM,19TH ST/DOLORES ST,SF,94110,B06,7,5435,,3,3,false,Alarm,1,TRUCK,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",140040156-T07 -160203596,67,16008175,Medical Incident,01/20/2016,01/20/2016,01/20/2016 09:02:36 PM,01/20/2016 09:03:33 PM,01/20/2016 09:04:14 PM,01/20/2016 09:04:25 PM,01/20/2016 09:23:04 PM,01/20/2016 09:35:14 PM,01/20/2016 09:48:23 PM,Code 2 Transport,01/20/2016 10:36:00 PM,31ST AV/NORIEGA ST,San Francisco,94122,B08,18,7534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7536741932902, -122.489323710584)",160203596-67 -102530311,AM04,10080046,Medical Incident,09/10/2010,09/10/2010,09/10/2010 05:56:20 PM,09/10/2010 05:58:36 PM,09/10/2010 05:58:57 PM,09/10/2010 06:00:38 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,04/25/2016 02:08:39 PM,1600 Block of KIRKWOOD AVE,SF,94124,B10,25,6467,2,2,2,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7387417648077, -122.390854570377)",102530311-AM04 -160893074,68,16035446,Medical Incident,03/29/2016,03/29/2016,03/29/2016 06:19:06 PM,03/29/2016 06:21:36 PM,03/29/2016 06:21:49 PM,03/29/2016 06:22:11 PM,03/29/2016 06:35:33 PM,03/29/2016 06:50:46 PM,03/29/2016 07:21:24 PM,Code 2 Transport,03/29/2016 07:35:41 PM,1200 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",160893074-68 -120060114,57,12002017,Medical Incident,01/06/2012,01/06/2012,01/06/2012 09:30:39 AM,01/06/2012 09:31:47 AM,01/06/2012 09:32:12 AM,01/06/2012 09:32:49 AM,01/06/2012 09:51:19 AM,01/06/2012 10:02:37 AM,01/06/2012 10:11:09 AM,Code 2 Transport,01/06/2012 10:36:39 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",120060114-57 -120310078,E03,12010193,Medical Incident,01/31/2012,01/30/2012,01/31/2012 07:31:05 AM,01/31/2012 07:31:55 AM,01/31/2012 07:32:11 AM,01/31/2012 07:33:49 AM,01/31/2012 07:37:12 AM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Gone on Arrival,01/31/2012 07:42:31 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",120310078-E03 -160591249,55,16023475,Medical Incident,02/28/2016,02/28/2016,02/28/2016 11:05:40 AM,02/28/2016 11:05:40 AM,02/28/2016 11:06:05 AM,02/28/2016 11:09:12 AM,02/28/2016 11:13:13 AM,02/28/2016 11:34:42 AM,02/28/2016 11:39:03 AM,Code 2 Transport,02/28/2016 12:48:51 PM,OFARRELL ST/DIVISADERO ST,San Francisco,94115,B04,5,413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7824504809987, -122.439297623944)",160591249-55 -132630280,T07,13089190,Structure Fire,09/20/2013,09/20/2013,09/20/2013 04:13:21 PM,09/20/2013 04:13:21 PM,09/20/2013 04:13:33 PM,09/20/2013 04:14:57 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 04:17:34 PM,TREAT AV/ALAMEDA ST,SF,94103,B02,29,5221,3,3,3,false,Alarm,1,TRUCK,1,2,9,Mission,"(37.7680736053747, -122.412424183842)",132630280-T07 -112000186,95,11065952,Medical Incident,07/19/2011,07/19/2011,07/19/2011 12:47:22 PM,07/19/2011 12:47:55 PM,07/19/2011 12:48:17 PM,07/19/2011 12:49:03 PM,07/19/2011 12:51:57 PM,07/19/2011 01:14:55 PM,07/19/2011 01:36:47 PM,Code 2 Transport,07/19/2011 02:16:25 PM,600 Block of CAPITOL AVE,SF,94112,B09,33,8373,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7161811504722, -122.458990060206)",112000186-95 -113050002,93,11101118,Medical Incident,11/01/2011,10/31/2011,11/01/2011 12:02:07 AM,11/01/2011 12:02:55 AM,11/01/2011 12:03:05 AM,11/01/2011 12:03:13 AM,11/01/2011 12:05:11 AM,11/01/2011 12:19:08 AM,11/01/2011 12:25:51 AM,Code 3 Transport,11/01/2011 12:54:08 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",113050002-93 -160013815,70,16000532,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:29:57 PM,01/01/2016 10:31:24 PM,01/01/2016 10:31:42 PM,01/01/2016 10:31:51 PM,01/01/2016 10:39:12 PM,01/01/2016 11:10:42 PM,01/01/2016 11:18:38 PM,Code 2 Transport,01/02/2016 12:01:37 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160013815-70 -140080059,T17,14002718,Medical Incident,01/08/2014,01/07/2014,01/08/2014 06:08:57 AM,01/08/2014 06:10:36 AM,01/08/2014 06:11:12 AM,01/08/2014 06:12:51 AM,01/08/2014 06:20:10 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/08/2014 06:22:38 AM,REY ST/SUNNYDALE AV,SF,94134,B09,44,6253,E,E,3,true,Potentially Life-Threatening,1,TRUCK,5,9,10,Visitacion Valley,"(37.7108660629811, -122.412281152657)",140080059-T17 -160231266,KM11,16009106,Medical Incident,01/23/2016,01/23/2016,01/23/2016 10:47:24 AM,01/23/2016 10:49:38 AM,01/23/2016 10:50:23 AM,01/23/2016 10:51:09 AM,01/23/2016 11:00:06 AM,01/23/2016 11:18:59 AM,01/23/2016 11:28:46 AM,Code 2 Transport,01/23/2016 11:51:37 AM,1100 Block of GOUGH ST,San Francisco,94109,B04,3,3261,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.784358514886, -122.424559253604)",160231266-KM11 -160570722,71,16022651,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:08:44 AM,02/26/2016 08:10:10 AM,02/26/2016 08:10:26 AM,02/26/2016 08:10:46 AM,02/26/2016 08:15:56 AM,02/26/2016 08:49:39 AM,02/26/2016 09:14:13 AM,Code 2 Transport,02/26/2016 09:45:11 AM,2400 Block of MARKET ST,San Francisco,94114,B05,6,5259,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",160570722-71 -133510069,E01,13119096,Vehicle Fire,12/17/2013,12/16/2013,12/17/2013 06:39:57 AM,12/17/2013 06:40:21 AM,12/17/2013 06:40:35 AM,12/17/2013 06:42:02 AM,12/17/2013 06:45:45 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 06:54:43 AM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,Fire,1,ENGINE,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",133510069-E01 -131950069,E12,13066157,Alarms,07/14/2013,07/13/2013,07/14/2013 06:30:26 AM,07/14/2013 06:31:31 AM,07/14/2013 06:31:47 AM,07/14/2013 06:33:41 AM,07/14/2013 06:36:22 AM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Fire,07/14/2013 06:51:49 AM,1400 Block of WALLER ST,SF,94117,B05,12,4512,3,3,3,true,Alarm,1,ENGINE,2,5,5,Haight Ashbury,"(37.768862804, -122.44796773714)",131950069-E12 -113570474,E44,11118846,Medical Incident,12/23/2011,12/23/2011,12/23/2011 11:20:57 PM,12/23/2011 11:21:36 PM,12/23/2011 11:22:28 PM,12/23/2011 11:23:38 PM,12/23/2011 11:26:11 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 12:04:17 AM,100 Block of ARLETA AVE,SF,94134,B10,44,6267,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7135351434593, -122.405821093621)",113570474-E44 -122040175,E17,12067804,Medical Incident,07/22/2012,07/22/2012,07/22/2012 12:10:24 PM,07/22/2012 12:13:25 PM,07/22/2012 12:13:36 PM,07/22/2012 12:14:58 PM,07/22/2012 12:17:52 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 12:25:49 PM,0 Block of ARDATH CT,SF,94124,B10,17,6624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7345025151708, -122.382247020863)",122040175-E17 -123590196,B01,12120199,Alarms,12/24/2012,12/24/2012,12/24/2012 02:26:20 PM,12/24/2012 02:28:05 PM,12/24/2012 02:28:16 PM,12/24/2012 02:29:34 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 02:31:58 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",123590196-B01 -113220060,E43,11106862,Medical Incident,11/18/2011,11/17/2011,11/18/2011 06:20:11 AM,11/18/2011 06:20:37 AM,11/18/2011 06:21:07 AM,11/18/2011 06:23:45 AM,11/18/2011 06:28:22 AM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/18/2011 06:36:12 AM,1800 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,,1,ENGINE,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",113220060-E43 -160792167,62,16031440,Medical Incident,03/19/2016,03/19/2016,03/19/2016 02:35:10 PM,03/19/2016 02:36:32 PM,03/19/2016 02:36:41 PM,03/19/2016 02:36:50 PM,03/19/2016 02:54:00 PM,03/19/2016 03:08:45 PM,03/19/2016 03:20:03 PM,Code 2 Transport,03/19/2016 03:49:19 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160792167-62 -112580287,AM18,11085128,Medical Incident,09/15/2011,09/15/2011,09/15/2011 05:29:30 PM,09/15/2011 05:30:50 PM,09/15/2011 05:31:05 PM,09/15/2011 05:32:08 PM,09/15/2011 05:38:15 PM,09/15/2011 06:03:42 PM,09/15/2011 06:20:36 PM,Code 2 Transport,09/15/2011 07:05:51 PM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7345707092334, -122.391831743022)",112580287-AM18 -160423873,AM20,16017069,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:40:23 PM,02/11/2016 10:42:17 PM,02/11/2016 10:42:51 PM,02/11/2016 10:43:47 PM,02/11/2016 10:52:38 PM,02/11/2016 11:16:09 PM,02/11/2016 11:38:36 PM,Code 2 Transport,02/12/2016 12:24:07 AM,100 Block of CRESCENT WAY,San Francisco,94134,B10,44,6575,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7111340886592, -122.389340428123)",160423873-AM20 -112490248,T17,11082176,Alarms,09/06/2011,09/06/2011,09/06/2011 03:10:14 PM,09/06/2011 03:10:35 PM,09/06/2011 03:10:42 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 03:11:49 PM,200 Block of LELAND AVE,SF,94134,B10,44,6254,3,3,3,false,,1,TRUCK,3,9,10,Visitacion Valley,"(37.7126284936114, -122.407863164797)",112490248-T17 -131750008,E14,13059230,Medical Incident,06/24/2013,06/23/2013,06/24/2013 12:37:17 AM,06/24/2013 12:37:40 AM,06/24/2013 12:37:54 AM,06/24/2013 12:39:37 AM,06/24/2013 12:43:05 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 12:50:15 AM,100 Block of 28TH AVE,SF,94121,B07,14,7231,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Seacliff,"(37.7859048053744, -122.488355259583)",131750008-E14 -120680349,E07,12022720,Structure Fire,03/08/2012,03/08/2012,03/08/2012 10:09:58 PM,03/08/2012 10:10:56 PM,03/08/2012 10:11:29 PM,03/08/2012 10:12:53 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/08/2012 10:17:02 PM,3200 Block of 25TH ST,SF,94110,B06,11,5534,3,3,3,true,Fire,1,ENGINE,8,6,9,Mission,"(37.7507333784902, -122.415819362041)",120680349-E07 -160110397,70,16004260,Medical Incident,01/11/2016,01/10/2016,01/11/2016 04:38:44 AM,01/11/2016 04:40:32 AM,01/11/2016 04:41:08 AM,01/11/2016 04:44:40 AM,01/11/2016 04:51:18 AM,01/11/2016 05:00:16 AM,01/11/2016 05:17:03 AM,Code 2 Transport,01/11/2016 06:09:09 AM,1300 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",160110397-70 -123390418,89,12113262,Medical Incident,12/04/2012,12/04/2012,12/04/2012 11:56:26 PM,12/04/2012 11:57:19 PM,12/04/2012 11:57:37 PM,12/04/2012 11:57:51 PM,12/05/2012 12:05:27 AM,12/05/2012 12:22:51 AM,12/05/2012 12:35:16 AM,Code 2 Transport,12/05/2012 12:51:12 AM,PALOU AV/3RD ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",123390418-89 -160380083,AM10,16015022,Medical Incident,02/07/2016,02/06/2016,02/07/2016 12:22:51 AM,02/07/2016 12:23:43 AM,02/07/2016 12:25:08 AM,02/07/2016 12:25:40 AM,02/07/2016 12:27:53 AM,02/07/2016 12:33:06 AM,02/07/2016 12:45:31 AM,Code 2 Transport,02/07/2016 01:14:32 AM,1400 Block of DIVISADERO ST,San Francisco,94115,B05,10,4154,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7828972510359, -122.439273399197)",160380083-AM10 -120880093,KM02,12029112,Medical Incident,03/28/2012,03/28/2012,03/28/2012 09:11:45 AM,03/28/2012 09:12:29 AM,03/28/2012 09:12:57 AM,03/28/2012 09:15:51 AM,03/28/2012 09:19:06 AM,03/28/2012 09:39:57 AM,03/28/2012 09:48:31 AM,Code 2 Transport,03/28/2012 10:24:30 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",120880093-KM02 -130870201,E23,13029028,Medical Incident,03/28/2013,03/28/2013,03/28/2013 01:58:55 PM,03/28/2013 02:01:48 PM,03/28/2013 02:02:13 PM,03/28/2013 02:03:26 PM,03/28/2013 02:04:30 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 02:13:46 PM,1400 Block of 43RD AVE,SF,94122,B08,23,7652,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7596302865022, -122.50271641994)",130870201-E23 -130010236,KM15,13000180,Traffic Collision,01/01/2013,12/31/2012,01/01/2013 04:39:51 AM,01/01/2013 04:40:36 AM,01/01/2013 04:41:06 AM,01/01/2013 04:41:50 AM,01/01/2013 04:45:39 AM,01/01/2013 04:55:32 AM,01/01/2013 05:09:00 AM,Code 2 Transport,01/01/2013 05:31:46 AM,400 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7849036811274, -122.416234049056)",130010236-KM15 -103280330,T13,10105200,Alarms,11/24/2010,11/24/2010,11/24/2010 10:44:45 PM,11/24/2010 10:47:04 PM,11/24/2010 10:47:38 PM,11/24/2010 10:49:17 PM,11/24/2010 10:51:23 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/24/2010 10:56:22 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,B,B,2,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",103280330-T13 -112580395,E43,11085227,Medical Incident,09/15/2011,09/15/2011,09/15/2011 10:44:42 PM,09/15/2011 10:46:13 PM,09/15/2011 10:46:21 PM,09/15/2011 10:47:34 PM,09/15/2011 10:49:56 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 10:58:31 PM,0 Block of NEWTON ST,SF,94112,B09,43,6232,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7139398137679, -122.438943296577)",112580395-E43 -140770278,E40,14026145,Medical Incident,03/18/2014,03/18/2014,03/18/2014 05:11:35 PM,03/18/2014 05:12:54 PM,03/18/2014 05:13:50 PM,03/18/2014 05:15:01 PM,03/18/2014 05:17:27 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Patient Declined Transport,03/18/2014 05:23:40 PM,2300 Block of 24TH AVE,,94116,B08,40,7461,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",140770278-E40 -131880285,E03,13064187,Medical Incident,07/07/2013,07/07/2013,07/07/2013 06:01:08 PM,07/07/2013 06:03:13 PM,07/07/2013 06:08:27 PM,07/07/2013 06:09:31 PM,07/07/2013 06:14:19 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 06:24:07 PM,POLK ST/MCALLISTER ST,SF,94102,B02,3,3113,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",131880285-E03 -140640072,78,14021549,Medical Incident,03/05/2014,03/05/2014,03/05/2014 08:36:16 AM,03/05/2014 08:37:13 AM,03/05/2014 08:37:41 AM,03/05/2014 08:38:16 AM,03/05/2014 08:42:13 AM,03/05/2014 09:01:43 AM,03/05/2014 09:17:33 AM,Code 2 Transport,03/05/2014 10:11:39 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",140640072-78 -160621088,64,16024632,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:55:34 AM,03/02/2016 09:57:53 AM,03/02/2016 09:58:50 AM,03/02/2016 09:59:15 AM,03/02/2016 10:10:03 AM,03/02/2016 10:36:12 AM,03/02/2016 11:18:57 AM,Code 2 Transport,03/02/2016 11:58:27 AM,500 Block of CRESTLAKE DR,San Francisco,94116,B08,19,7551,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7364819292531, -122.490732289058)",160621088-64 -131770084,87,13060003,Medical Incident,06/26/2013,06/25/2013,06/26/2013 07:22:24 AM,06/26/2013 07:24:58 AM,06/26/2013 07:25:15 AM,06/26/2013 07:25:40 AM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 07:32:22 AM,24TH ST/GUERRERO ST,SF,94110,B06,11,5524,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7519716270837, -122.422878832716)",131770084-87 -120420265,88,12014101,Medical Incident,02/11/2012,02/11/2012,02/11/2012 03:59:57 PM,02/11/2012 04:03:04 PM,02/11/2012 04:05:09 PM,02/11/2012 04:05:21 PM,02/11/2012 04:15:17 PM,02/11/2012 04:33:53 PM,02/11/2012 04:43:23 PM,Code 2 Transport,02/11/2012 05:03:08 PM,800 Block of POTRERO AVE,SF,94110,B10,7,255,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7585719666446, -122.406726045013)",120420265-88 -110670172,T07,11022057,Structure Fire,03/08/2011,03/08/2011,03/08/2011 12:56:29 PM,03/08/2011 12:56:50 PM,03/08/2011 12:57:15 PM,03/08/2011 12:58:15 PM,03/08/2011 01:00:43 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 01:07:44 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,3,3,3,false,,1,TRUCK,6,6,9,Mission,"(37.7581042111797, -122.421163821698)",110670172-T07 -160122521,KM09,16004839,Medical Incident,01/12/2016,01/12/2016,01/12/2016 04:17:41 PM,01/12/2016 04:19:09 PM,01/12/2016 04:19:23 PM,01/12/2016 04:19:58 PM,01/12/2016 04:31:00 PM,01/12/2016 04:50:39 PM,01/12/2016 05:13:21 PM,Code 2 Transport,01/12/2016 05:56:13 PM,MISSION ST/6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160122521-KM09 -112840132,AM12,11093962,Medical Incident,10/11/2011,10/11/2011,10/11/2011 10:54:21 AM,10/11/2011 10:55:30 AM,10/11/2011 10:56:08 AM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,04/25/2016 02:02:13 PM,300 Block of 3RD ST,SF,94107,B03,1,2176,3,3,3,false,,1,PRIVATE,3,3,6,South of Market,"(37.7833526602624, -122.398485675312)",112840132-AM12 -160473298,KM12,16019085,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:34:17 PM,02/16/2016 07:36:32 PM,02/16/2016 07:36:48 PM,02/16/2016 07:37:51 PM,02/16/2016 07:42:30 PM,02/16/2016 07:59:05 PM,02/16/2016 08:34:40 PM,Code 2 Transport,02/16/2016 08:37:22 PM,15TH ST/MISSION ST,San Francisco,94103,B02,36,5279,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",160473298-KM12 -110130276,77,11004393,Medical Incident,01/13/2011,01/13/2011,01/13/2011 04:17:05 PM,01/13/2011 04:20:21 PM,01/13/2011 04:21:02 PM,01/13/2011 04:21:22 PM,01/13/2011 04:45:11 PM,01/13/2011 05:13:32 PM,01/13/2011 05:32:54 PM,Code 2 Transport,01/13/2011 06:04:50 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110130276-77 -123480282,96,12116437,Medical Incident,12/13/2012,12/13/2012,12/13/2012 04:45:31 PM,12/13/2012 04:49:04 PM,12/13/2012 04:51:10 PM,12/13/2012 04:51:21 PM,12/13/2012 05:04:29 PM,12/13/2012 05:20:14 PM,04/25/2016 01:55:20 PM,Code 2 Transport,12/13/2012 05:33:54 PM,200 Block of WAWONA ST,SF,94127,B08,39,8612,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.739291844463, -122.468883827055)",123480282-96 -111010220,E19,11033547,Citizen Assist / Service Call,04/11/2011,04/11/2011,04/11/2011 02:59:31 PM,04/11/2011 02:59:59 PM,04/11/2011 03:01:34 PM,04/11/2011 03:02:47 PM,04/11/2011 03:06:20 PM,04/25/2016 02:05:09 PM,04/25/2016 02:05:09 PM,Fire,04/11/2011 03:12:46 PM,0 Block of CRESTLAKE DR,SF,94132,B08,19,7463,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.735368444791, -122.48194205066)",111010220-E19 -112210171,E22,11072987,Medical Incident,08/09/2011,08/09/2011,08/09/2011 01:17:19 PM,08/09/2011 01:18:27 PM,08/09/2011 01:18:54 PM,08/09/2011 01:19:50 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 01:20:47 PM,1300 Block of 24TH AVE,SF,94122,B08,22,7451,3,2,2,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7623920631346, -122.48248639415)",112210171-E22 -132100018,E36,13070885,Medical Incident,07/29/2013,07/28/2013,07/29/2013 12:51:21 AM,07/29/2013 12:53:56 AM,07/29/2013 12:56:32 AM,07/29/2013 12:58:24 AM,07/29/2013 01:00:57 AM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/29/2013 01:06:08 AM,100 Block of OTIS ST,SF,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",132100018-E36 -140270016,66,14009065,Medical Incident,01/27/2014,01/26/2014,01/27/2014 01:49:47 AM,01/27/2014 01:51:48 AM,01/27/2014 01:52:03 AM,01/27/2014 01:52:28 AM,01/27/2014 02:08:21 AM,01/27/2014 02:08:27 AM,01/27/2014 02:20:15 AM,Code 2 Transport,01/27/2014 02:58:04 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",140270016-66 -111800336,E08,11059566,Medical Incident,06/29/2011,06/29/2011,06/29/2011 10:09:26 PM,06/29/2011 10:10:54 PM,06/29/2011 10:11:10 PM,04/25/2016 02:03:54 PM,06/29/2011 10:16:21 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/29/2011 10:21:28 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",111800336-E08 -122220353,E03,12073735,Alarms,08/09/2012,08/09/2012,08/09/2012 09:07:47 PM,08/09/2012 09:08:34 PM,08/09/2012 09:08:45 PM,08/09/2012 09:10:10 PM,08/09/2012 09:11:38 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/09/2012 09:17:14 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",122220353-E03 -160120310,60,16004632,Medical Incident,01/12/2016,01/11/2016,01/12/2016 03:35:30 AM,01/12/2016 03:36:20 AM,01/12/2016 03:36:31 AM,01/12/2016 03:36:41 AM,01/12/2016 03:46:16 AM,01/12/2016 04:05:25 AM,01/12/2016 04:29:11 AM,Code 2 Transport,01/12/2016 04:59:40 AM,500 Block of JOHN MUIR DR,San Francisco,94132,B08,19,8714,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",160120310-60 -121120040,T13,12036999,Alarms,04/21/2012,04/20/2012,04/21/2012 02:08:39 AM,04/21/2012 02:09:36 AM,04/21/2012 02:09:58 AM,04/21/2012 02:11:45 AM,04/21/2012 02:15:22 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 02:26:43 AM,100 Block of HOWARD ST,SF,94105,B03,35,2114,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7910007343294, -122.39301513185)",121120040-T13 -103000223,EMS1,10095800,Other,10/27/2010,10/27/2010,10/27/2010 03:20:21 PM,10/27/2010 03:20:21 PM,10/27/2010 03:20:21 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 07:37:25 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,3,3,3,false,,1,CHIEF,9,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",103000223-EMS1 -160133905,61,16005366,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:22:33 PM,01/13/2016 09:24:01 PM,01/13/2016 09:26:48 PM,01/13/2016 09:27:06 PM,01/13/2016 09:39:11 PM,01/13/2016 09:58:18 PM,01/13/2016 10:03:33 PM,Code 2 Transport,01/13/2016 10:39:59 PM,1700 Block of ALABAMA ST,San Francisco,94110,B06,9,5666,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7451039771086, -122.410526466205)",160133905-61 -132500441,T09,13084616,Structure Fire,09/07/2013,09/07/2013,09/07/2013 09:48:25 PM,09/07/2013 09:48:25 PM,09/07/2013 09:48:47 PM,09/07/2013 09:49:56 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/07/2013 09:49:57 PM,22ND ST/3RD ST,SF,94107,B10,25,2533,3,3,3,false,Alarm,1,TRUCK,2,10,10,Potrero Hill,"(37.7579397061731, -122.388315530161)",132500441-T09 -110310348,E44,11010302,Medical Incident,01/31/2011,01/31/2011,01/31/2011 09:20:52 PM,01/31/2011 09:21:41 PM,01/31/2011 09:22:22 PM,01/31/2011 09:23:34 PM,01/31/2011 09:27:46 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,01/31/2011 09:39:26 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",110310348-E44 -120690008,E36,12022750,Medical Incident,03/09/2012,03/08/2012,03/09/2012 12:36:12 AM,03/09/2012 12:36:29 AM,03/09/2012 12:36:45 AM,03/09/2012 12:38:42 AM,03/09/2012 12:41:21 AM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/09/2012 12:41:38 AM,HOWARD ST/8TH ST,SF,94103,B02,36,2335,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7762213544451, -122.411606113878)",120690008-E36 -160631646,KM03,16025061,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:28:05 PM,03/03/2016 12:29:03 PM,03/03/2016 12:29:19 PM,03/03/2016 12:29:51 PM,03/03/2016 12:41:02 PM,03/03/2016 01:15:21 PM,03/03/2016 01:20:12 PM,Code 2 Transport,03/03/2016 02:04:27 PM,2200 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3435,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7903015380555, -122.429903683028)",160631646-KM03 -122350126,E05,12077824,Traffic Collision,08/22/2012,08/22/2012,08/22/2012 10:51:28 AM,08/22/2012 10:51:28 AM,08/22/2012 10:52:19 AM,08/22/2012 10:53:48 AM,08/22/2012 10:56:05 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,No Merit,08/22/2012 11:13:45 AM,DIVISADERO ST/GOLDEN GATE AV,SF,94115,B05,5,4134,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7787241071017, -122.43855227518)",122350126-E05 -122300298,RS1,12076318,Medical Incident,08/17/2012,08/17/2012,08/17/2012 04:38:35 PM,08/17/2012 04:40:37 PM,08/17/2012 04:40:49 PM,08/17/2012 04:42:35 PM,08/17/2012 04:43:32 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 04:51:19 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",122300298-RS1 -160303802,75,16011973,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:08:23 PM,01/30/2016 10:08:23 PM,01/30/2016 10:08:49 PM,01/30/2016 10:09:00 PM,01/30/2016 10:20:00 PM,01/30/2016 10:44:24 PM,01/30/2016 10:55:53 PM,Code 2 Transport,01/30/2016 11:38:07 PM,CALL BOX:,San Francisco,94105,B03,35,2121,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.786916509361, -122.388858954466)",160303802-75 -160311024,65,16012109,Medical Incident,01/31/2016,01/31/2016,01/31/2016 09:42:13 AM,01/31/2016 09:44:41 AM,01/31/2016 09:44:57 AM,01/31/2016 09:46:10 AM,01/31/2016 09:50:35 AM,01/31/2016 10:07:48 AM,01/31/2016 10:16:18 AM,Code 2 Transport,01/31/2016 10:49:03 AM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",160311024-65 -123630270,KM06,12121547,Medical Incident,12/28/2012,12/28/2012,12/28/2012 05:41:10 PM,12/28/2012 05:41:35 PM,12/28/2012 05:42:27 PM,12/28/2012 05:43:06 PM,12/28/2012 05:51:45 PM,12/28/2012 06:02:04 PM,12/28/2012 06:31:27 PM,Code 2 Transport,12/28/2012 07:01:12 PM,700 Block of ANDERSON ST,SF,94110,B06,32,5743,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7340529990627, -122.415549507157)",123630270-KM06 -132680080,E13,13090906,Medical Incident,09/25/2013,09/25/2013,09/25/2013 08:18:03 AM,09/25/2013 08:20:38 AM,09/25/2013 08:21:03 AM,09/25/2013 08:22:06 AM,09/25/2013 08:26:43 AM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Patient Declined Transport,09/25/2013 08:44:34 AM,500 Block of BATTERY ST,SF,94111,B01,13,1156,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7963352483576, -122.400515223296)",132680080-E13 -103170122,B01,10101557,Alarms,11/13/2010,11/13/2010,11/13/2010 10:01:29 AM,11/13/2010 10:02:19 AM,11/13/2010 10:02:27 AM,11/13/2010 10:03:17 AM,11/13/2010 10:05:50 AM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,No Merit,11/13/2010 10:08:49 AM,500 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7944323288641, -122.403161406047)",103170122-B01 -113180236,E03,11105687,Medical Incident,11/14/2011,11/14/2011,11/14/2011 04:35:31 PM,11/14/2011 04:36:37 PM,11/14/2011 04:36:52 PM,11/14/2011 04:38:18 PM,11/14/2011 04:39:22 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/14/2011 04:47:04 PM,1300 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,true,,1,ENGINE,1,4,2,Western Addition,"(37.7873894173843, -122.422569914317)",113180236-E03 -110600173,E03,11019685,Medical Incident,03/01/2011,03/01/2011,03/01/2011 01:08:31 PM,03/01/2011 01:10:27 PM,03/01/2011 01:11:01 PM,03/01/2011 01:11:47 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 01:12:54 PM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",110600173-E03 -121810236,E25,12060311,Structure Fire,06/29/2012,06/29/2012,06/29/2012 03:22:13 PM,06/29/2012 03:22:38 PM,06/29/2012 03:22:51 PM,06/29/2012 03:23:46 PM,06/29/2012 03:51:10 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 04:59:56 PM,100 Block of CHARTER OAK AVE,SF,94124,B10,42,6381,3,3,3,true,Fire,1,ENGINE,11,10,10,Bayview Hunters Point,"(37.7362893426109, -122.404797186551)",121810236-E25 -121590009,E21,12052466,Medical Incident,06/07/2012,06/06/2012,06/07/2012 01:52:57 AM,06/07/2012 01:53:44 AM,06/07/2012 01:54:41 AM,06/07/2012 01:55:53 AM,06/07/2012 01:58:05 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/07/2012 02:07:52 AM,100 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7709008861602, -122.443674283595)",121590009-E21 -123220125,E16,12106992,Water Rescue,11/17/2012,11/17/2012,11/17/2012 08:04:15 AM,11/17/2012 08:06:11 AM,11/17/2012 08:06:40 AM,04/25/2016 01:55:46 PM,11/17/2012 09:32:03 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/17/2012 09:51:24 AM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,15,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",123220125-E16 -131430344,AM18,13048634,Medical Incident,05/23/2013,05/23/2013,05/23/2013 08:25:51 PM,05/23/2013 08:31:03 PM,05/23/2013 08:33:15 PM,05/23/2013 08:34:04 PM,05/23/2013 08:40:22 PM,05/23/2013 09:22:00 PM,05/23/2013 09:35:44 PM,Code 2 Transport,05/23/2013 10:27:50 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",131430344-AM18 -110460310,64,11015340,Medical Incident,02/15/2011,02/15/2011,02/15/2011 08:03:05 PM,02/15/2011 08:04:01 PM,02/15/2011 08:04:53 PM,02/15/2011 08:05:08 PM,02/15/2011 08:08:23 PM,02/15/2011 08:25:37 PM,02/15/2011 08:44:19 PM,Code 2 Transport,02/15/2011 08:51:35 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",110460310-64 -102520230,T10,10079658,Structure Fire,09/09/2010,09/09/2010,09/09/2010 03:44:15 PM,09/09/2010 03:46:27 PM,09/09/2010 03:46:44 PM,09/09/2010 03:47:51 PM,09/09/2010 03:50:57 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/09/2010 03:58:14 PM,1700 Block of FULTON ST,SF,94117,B05,21,4463,3,3,3,true,,1,TRUCK,6,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",102520230-T10 -122270182,E06,12075258,Medical Incident,08/14/2012,08/14/2012,08/14/2012 02:12:03 PM,08/14/2012 02:13:11 PM,08/14/2012 02:13:25 PM,08/14/2012 02:16:33 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/14/2012 02:17:50 PM,100 Block of BRODERICK ST,SF,94117,B05,21,4246,E,E,3,true,Potentially Life-Threatening,1,ENGINE,4,5,5,Haight Ashbury,"(37.7715322141424, -122.438735800595)",122270182-E06 -160570390,KM07,16022614,Medical Incident,02/26/2016,02/25/2016,02/26/2016 04:42:19 AM,02/26/2016 04:44:27 AM,02/26/2016 04:45:08 AM,02/26/2016 04:45:54 AM,02/26/2016 04:55:38 AM,02/26/2016 05:24:19 AM,02/26/2016 05:38:39 AM,Code 2 Transport,02/26/2016 06:29:05 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160570390-KM07 -122370139,E19,12078473,Other,08/24/2012,08/24/2012,08/24/2012 12:28:17 PM,08/24/2012 12:29:21 PM,08/24/2012 12:30:24 PM,08/24/2012 12:31:25 PM,08/24/2012 12:33:04 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 12:43:56 PM,2900 Block of 21ST AVE,SF,94132,B08,19,8732,3,3,3,true,Alarm,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7336313643554, -122.477083030431)",122370139-E19 -102980048,T03,10095054,Structure Fire,10/25/2010,10/24/2010,10/25/2010 05:43:49 AM,10/25/2010 05:43:49 AM,10/25/2010 05:44:07 AM,10/25/2010 05:45:32 AM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Other,10/25/2010 05:48:01 AM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",102980048-T03 -121630375,66,12054213,Medical Incident,06/11/2012,06/11/2012,06/11/2012 09:33:52 PM,06/11/2012 09:34:18 PM,06/11/2012 09:34:41 PM,06/11/2012 09:35:22 PM,06/11/2012 09:38:51 PM,06/11/2012 10:05:59 PM,06/11/2012 10:19:03 PM,Code 2 Transport,06/11/2012 11:08:49 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",121630375-66 -160023671,52,16000975,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:40:15 PM,01/02/2016 11:41:48 PM,01/02/2016 11:42:08 PM,01/02/2016 11:42:16 PM,01/03/2016 12:01:16 AM,01/03/2016 12:25:47 AM,01/03/2016 12:36:48 AM,Code 2 Transport,01/03/2016 01:44:51 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160023671-52 -102320300,RC1,10073107,Medical Incident,08/20/2010,08/20/2010,08/20/2010 06:41:54 PM,08/20/2010 06:42:15 PM,08/20/2010 06:42:48 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/20/2010 07:07:47 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",102320300-RC1 -121390186,KM11,12046164,Medical Incident,05/18/2012,05/18/2012,05/18/2012 01:40:04 PM,05/18/2012 01:41:25 PM,05/18/2012 01:42:25 PM,05/18/2012 01:43:39 PM,05/18/2012 01:50:23 PM,05/18/2012 01:58:06 PM,05/18/2012 02:14:32 PM,Code 2 Transport,05/18/2012 02:51:03 PM,0 Block of MASON ST,SF,94102,B03,1,1365,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",121390186-KM11 -140290302,E05,14009989,Medical Incident,01/29/2014,01/29/2014,01/29/2014 06:04:11 PM,01/29/2014 06:05:38 PM,01/29/2014 06:14:00 PM,01/29/2014 06:14:59 PM,01/29/2014 06:17:20 PM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/29/2014 06:53:03 PM,1200 Block of FILLMORE ST,SF,94115,B05,5,3535,,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7809710233586, -122.432166356881)",140290302-E05 -102260234,T01,10071194,Structure Fire,08/14/2010,08/14/2010,08/14/2010 04:34:23 PM,08/14/2010 04:34:23 PM,08/14/2010 04:35:12 PM,08/14/2010 04:37:26 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 04:57:11 PM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",102260234-T01 -122360262,E21,12078255,Electrical Hazard,08/23/2012,08/23/2012,08/23/2012 05:03:38 PM,08/23/2012 05:07:08 PM,08/23/2012 05:07:24 PM,08/23/2012 05:09:39 PM,08/23/2012 05:10:05 PM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Fire,08/23/2012 05:20:54 PM,600 Block of SCOTT ST,SF,94117,B05,21,4136,3,3,3,false,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7756631447471, -122.436291871367)",122360262-E21 -121960105,T19,12065138,Medical Incident,07/14/2012,07/14/2012,07/14/2012 08:58:38 AM,07/14/2012 09:01:14 AM,07/14/2012 09:02:26 AM,07/14/2012 09:03:38 AM,07/14/2012 09:07:17 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/14/2012 09:08:24 AM,3800 Block of OCEAN AVE,SF,94132,B08,19,8742,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,8,7,Sunset/Parkside,"(37.7322026123682, -122.48583077494)",121960105-T19 -110010174,E24,11000117,Medical Incident,01/01/2011,12/31/2010,01/01/2011 02:36:16 AM,01/01/2011 02:36:46 AM,01/01/2011 02:39:34 AM,01/01/2011 02:40:30 AM,01/01/2011 02:43:26 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 02:56:08 AM,4100 Block of 18TH ST,SF,94114,B05,6,5415,3,3,3,true,,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7608016861704, -122.435552336885)",110010174-E24 -131830318,E05,13062471,Medical Incident,07/02/2013,07/02/2013,07/02/2013 07:36:21 PM,07/02/2013 07:37:17 PM,07/02/2013 07:40:37 PM,07/02/2013 07:41:34 PM,07/02/2013 07:43:45 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Other,07/02/2013 07:48:24 PM,1500 Block of MCALLISTER ST,SF,94115,B05,21,4151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Western Addition,"(37.7779545300539, -122.437542013129)",131830318-E05 -132400340,AM14,13081098,Medical Incident,08/28/2013,08/28/2013,08/28/2013 09:00:40 PM,08/28/2013 09:04:00 PM,08/28/2013 09:08:35 PM,08/28/2013 09:09:20 PM,08/28/2013 09:25:23 PM,08/28/2013 09:33:43 PM,08/28/2013 09:46:27 PM,Code 2 Transport,08/28/2013 10:12:06 PM,0 Block of SPEAR ST,SF,94105,B03,13,2115,3,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.793107178894, -122.394870688082)",132400340-AM14 -102310120,96,10072651,Medical Incident,08/19/2010,08/19/2010,08/19/2010 10:21:28 AM,08/19/2010 10:23:01 AM,08/19/2010 10:25:26 AM,08/19/2010 10:25:33 AM,08/19/2010 10:30:29 AM,08/19/2010 11:19:09 AM,08/19/2010 11:56:24 AM,Code 2 Transport,08/19/2010 12:12:42 PM,MARKET ST/5TH ST,SF,94103,B03,1,1364,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",102310120-96 -160290089,65,16011283,Medical Incident,01/29/2016,01/28/2016,01/29/2016 12:45:28 AM,01/29/2016 12:45:28 AM,01/29/2016 12:45:47 AM,01/29/2016 12:47:00 AM,01/29/2016 12:51:26 AM,01/29/2016 01:45:26 AM,01/29/2016 01:45:29 AM,Code 2 Transport,01/29/2016 01:45:31 AM,24TH ST/SOUTH VAN NESS AV,San Francisco,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7523727894276, -122.416265511485)",160290089-65 -103210145,93,10102857,Medical Incident,11/17/2010,11/17/2010,11/17/2010 10:35:15 AM,11/17/2010 10:35:55 AM,11/17/2010 10:36:33 AM,11/17/2010 10:37:06 AM,11/17/2010 10:41:47 AM,11/17/2010 10:55:35 AM,11/17/2010 10:56:29 AM,Code 2 Transport,11/17/2010 11:36:56 AM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,3,3,3,true,,1,MEDIC,2,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",103210145-93 -103580244,E19,10114980,Odor (Strange / Unknown),12/24/2010,12/24/2010,12/24/2010 05:42:39 PM,12/24/2010 05:47:36 PM,12/24/2010 05:48:21 PM,12/24/2010 05:50:02 PM,12/24/2010 05:52:43 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 06:15:53 PM,100 Block of LAKE MERCED HILL ST,SF,94132,B08,19,8764,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7105915232014, -122.483990040237)",103580244-E19 -133170139,B01,13107696,Alarms,11/13/2013,11/13/2013,11/13/2013 11:01:12 AM,11/13/2013 11:03:04 AM,11/13/2013 11:03:09 AM,11/13/2013 11:04:32 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 11:05:12 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,3,3,false,Alarm,1,CHIEF,4,2,6,South of Market,"(37.7734664897325, -122.413546904215)",133170139-B01 -160843533,KM04,16033522,Medical Incident,03/24/2016,03/24/2016,03/24/2016 07:06:59 PM,03/24/2016 07:09:34 PM,03/24/2016 07:10:13 PM,03/24/2016 07:15:45 PM,03/24/2016 07:15:45 PM,03/24/2016 07:32:42 PM,03/24/2016 08:04:30 PM,Code 2 Transport,03/24/2016 08:26:34 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160843533-KM04 -120950118,AM16,12031415,Medical Incident,04/04/2012,04/04/2012,04/04/2012 10:55:52 AM,04/04/2012 10:57:52 AM,04/04/2012 10:58:22 AM,04/04/2012 10:59:02 AM,04/04/2012 11:05:14 AM,04/04/2012 11:14:20 AM,04/04/2012 11:32:47 AM,Code 2 Transport,04/04/2012 12:31:54 PM,31ST AV/NORIEGA ST,SF,94122,B08,18,7515,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7536741932902, -122.489323710584)",120950118-AM16 -120400339,64,12013475,Medical Incident,02/09/2012,02/09/2012,02/09/2012 09:45:53 PM,02/09/2012 09:46:35 PM,02/09/2012 09:46:59 PM,02/09/2012 09:47:24 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/09/2012 09:51:46 PM,300 Block of CONNECTICUT ST,SF,94107,B03,37,2462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7618859006044, -122.397364393329)",120400339-64 -113040102,84,11100866,Medical Incident,10/31/2011,10/31/2011,10/31/2011 09:24:11 AM,10/31/2011 09:24:11 AM,10/31/2011 09:24:11 AM,10/31/2011 09:26:24 AM,10/31/2011 09:31:02 AM,10/31/2011 09:40:56 AM,10/31/2011 09:57:55 AM,Code 2 Transport,10/31/2011 10:19:14 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",113040102-84 -113250242,E42,11107979,Medical Incident,11/21/2011,11/21/2011,11/21/2011 03:08:59 PM,11/21/2011 03:11:23 PM,11/21/2011 03:13:20 PM,11/21/2011 03:15:02 PM,11/21/2011 03:15:53 PM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,Other,11/21/2011 03:28:58 PM,0 Block of AUGUSTA ST,SF,94124,B10,42,6364,3,2,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7345219151106, -122.402450703554)",113250242-E42 -160834124,53,16033173,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:28:52 PM,03/23/2016 10:28:52 PM,03/23/2016 10:29:10 PM,03/23/2016 10:29:21 PM,03/23/2016 10:56:42 PM,03/23/2016 10:56:47 PM,03/23/2016 11:19:07 PM,Code 2 Transport,03/24/2016 12:22:00 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160834124-53 -160282226,62,16011134,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:47:01 PM,01/28/2016 02:49:01 PM,01/28/2016 02:49:53 PM,01/28/2016 02:50:03 PM,01/28/2016 02:59:09 PM,01/28/2016 03:14:31 PM,01/28/2016 03:16:18 PM,Code 2 Transport,01/28/2016 04:02:37 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160282226-62 -112320363,E43,11076752,Medical Incident,08/20/2011,08/20/2011,08/20/2011 10:04:56 PM,08/20/2011 10:05:22 PM,08/20/2011 10:06:57 PM,08/20/2011 10:08:22 PM,08/20/2011 10:10:48 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/20/2011 10:25:11 PM,900 Block of AVALON AVE,SF,94112,B09,43,6164,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7245111737707, -122.424676766119)",112320363-E43 -160753466,KM15,16029871,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:57:16 PM,03/15/2016 07:58:20 PM,03/15/2016 07:58:29 PM,03/15/2016 07:59:31 PM,03/15/2016 08:09:01 PM,03/15/2016 08:26:12 PM,03/15/2016 08:45:58 PM,Code 2 Transport,03/15/2016 09:06:45 PM,1200 Block of 34TH AVE,San Francisco,94122,B08,23,7537,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7637961722893, -122.493195707857)",160753466-KM15 -131120144,96,13037656,Medical Incident,04/22/2013,04/22/2013,04/22/2013 10:46:00 AM,04/22/2013 10:47:14 AM,04/22/2013 10:49:00 AM,04/22/2013 10:50:05 AM,04/22/2013 10:56:18 AM,04/22/2013 11:16:13 AM,04/22/2013 11:37:35 AM,Code 2 Transport,04/22/2013 12:40:28 PM,1100 Block of MARKET ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7807642254398, -122.412320907436)",131120144-96 -112300173,AM04,11075946,Medical Incident,08/18/2011,08/18/2011,08/18/2011 12:39:45 PM,08/18/2011 12:39:46 PM,08/18/2011 12:40:08 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,04/25/2016 02:03:07 PM,CEDAR ST/POLK ST,SF,94109,B04,3,1641,2,2,2,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",112300173-AM04 -122910144,B10,12096309,Structure Fire,10/17/2012,10/17/2012,10/17/2012 10:40:24 AM,10/17/2012 10:40:30 AM,10/17/2012 10:40:36 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 10:41:57 AM,300 Block of HARBOR RD,SF,94124,B10,25,666,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7337140340786, -122.380588546877)",122910144-B10 -112820191,60,11093338,Structure Fire,10/09/2011,10/09/2011,10/09/2011 01:32:18 PM,10/09/2011 01:33:40 PM,10/09/2011 01:33:54 PM,10/09/2011 01:34:07 PM,10/09/2011 01:39:00 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 01:52:31 PM,100 Block of MERCED AVE,SF,94127,B08,39,8617,3,3,3,true,,1,MEDIC,4,8,7,West of Twin Peaks,"(37.744049522508, -122.462108757816)",112820191-60 -122180147,E31,12072278,Traffic Collision,08/05/2012,08/05/2012,08/05/2012 10:50:42 AM,08/05/2012 10:53:47 AM,08/05/2012 10:55:52 AM,08/05/2012 10:57:15 AM,08/05/2012 11:00:17 AM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 11:07:06 AM,BALBOA ST/14TH AV,SF,94118,B07,31,7145,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7768440093858, -122.472571669495)",122180147-E31 -160473931,78,16019153,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:33:21 PM,02/16/2016 10:38:46 PM,02/16/2016 10:39:20 PM,02/16/2016 10:39:36 PM,02/16/2016 11:02:43 PM,02/16/2016 11:20:53 PM,02/16/2016 11:40:33 PM,Code 2 Transport,02/17/2016 12:15:25 AM,300 Block of SWEENY ST,San Francisco,94134,B09,42,6367,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,9,Portola,"(37.7317997290088, -122.41202117343)",160473931-78 -122750199,KM04,12090750,Medical Incident,10/01/2012,10/01/2012,10/01/2012 01:13:44 PM,10/01/2012 01:15:53 PM,10/01/2012 01:18:17 PM,10/01/2012 01:19:08 PM,10/01/2012 01:25:59 PM,10/01/2012 01:57:34 PM,10/01/2012 02:46:33 PM,Code 2 Transport,10/01/2012 02:59:46 PM,2700 Block of 39TH AVE,SF,94116,B08,18,7616,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7355911537064, -122.496591052463)",122750199-KM04 -113090099,RC2,11102620,Medical Incident,11/05/2011,11/05/2011,11/05/2011 09:29:28 AM,11/05/2011 09:29:41 AM,11/05/2011 09:29:49 AM,04/25/2016 02:01:48 PM,11/05/2011 09:31:59 AM,04/25/2016 02:01:48 PM,04/25/2016 02:01:48 PM,No Merit,11/05/2011 09:55:29 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,,1,RESCUE CAPTAIN,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",113090099-RC2 -160263450,71,16010460,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:23:39 PM,01/26/2016 08:25:15 PM,01/26/2016 08:25:26 PM,01/26/2016 08:25:33 PM,01/26/2016 08:38:32 PM,01/26/2016 08:54:00 PM,01/26/2016 09:03:22 PM,Code 2 Transport,01/26/2016 09:55:57 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160263450-71 -111940328,59,11064180,Medical Incident,07/13/2011,07/13/2011,07/13/2011 09:04:03 PM,07/13/2011 09:05:14 PM,07/13/2011 09:05:46 PM,07/13/2011 09:06:29 PM,07/13/2011 09:16:00 PM,07/13/2011 09:26:35 PM,07/13/2011 09:44:19 PM,Code 2 Transport,07/13/2011 10:15:37 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",111940328-59 -130380303,77,13013092,Traffic Collision,02/07/2013,02/07/2013,02/07/2013 07:33:34 PM,02/07/2013 07:37:02 PM,02/07/2013 07:37:25 PM,02/07/2013 07:37:40 PM,02/07/2013 07:49:44 PM,02/07/2013 07:58:10 PM,02/07/2013 08:25:19 PM,Code 2 Transport,02/07/2013 08:59:54 PM,CHESTER AV/ALEMANY BL,SF,94132,B09,33,8412,2,2,2,false,Non Life-threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7098998478298, -122.47040910045)",130380303-77 -103230352,77,10103614,Medical Incident,11/19/2010,11/19/2010,11/19/2010 08:35:11 PM,11/19/2010 08:35:51 PM,11/19/2010 08:36:21 PM,11/19/2010 08:36:54 PM,11/19/2010 08:39:59 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Against Medical Advice,11/19/2010 09:22:06 PM,1500 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7292122545104, -122.390956947476)",103230352-77 -160770969,KM09,16030492,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:14:39 AM,03/17/2016 09:17:34 AM,03/17/2016 09:18:00 AM,03/17/2016 09:23:23 AM,03/17/2016 09:23:23 AM,03/17/2016 09:39:49 AM,03/17/2016 10:05:31 AM,Code 2 Transport,03/17/2016 10:30:55 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160770969-KM09 -132140266,RC2,13072332,Medical Incident,08/02/2013,08/02/2013,08/02/2013 04:31:12 PM,08/02/2013 04:31:43 PM,08/02/2013 04:33:49 PM,04/25/2016 01:51:30 PM,08/02/2013 04:35:43 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 05:10:04 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",132140266-RC2 -110390226,E26,11012963,Alarms,02/08/2011,02/08/2011,02/08/2011 02:32:35 PM,02/08/2011 02:33:13 PM,02/08/2011 02:33:22 PM,02/08/2011 02:34:39 PM,02/08/2011 02:37:10 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 03:10:28 PM,900 Block of CHENERY ST,SF,94131,B06,26,8175,3,3,3,true,,1,ENGINE,1,6,8,Glen Park,"(37.7350908240715, -122.437272445338)",110390226-E26 -130950120,E20,13031755,Medical Incident,04/05/2013,04/05/2013,04/05/2013 10:22:06 AM,04/05/2013 10:22:31 AM,04/05/2013 10:22:39 AM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,Other,04/05/2013 10:22:48 AM,8TH AV/KIRKHAM ST,SF,94122,B08,22,7331,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,5,Inner Sunset,"(37.7603584606606, -122.464981053248)",130950120-E20 -121750317,77,12058223,Medical Incident,06/23/2012,06/23/2012,06/23/2012 06:25:40 PM,06/23/2012 06:26:02 PM,06/23/2012 06:27:00 PM,06/23/2012 06:27:09 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 06:27:45 PM,3100 Block of 25TH ST,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7510387026502, -122.412580809695)",121750317-77 -121850375,B01,12061788,Alarms,07/03/2012,07/03/2012,07/03/2012 10:38:05 PM,07/03/2012 10:39:18 PM,07/03/2012 10:39:51 PM,07/03/2012 10:41:43 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Fire,07/03/2012 10:47:17 PM,200 Block of CALIFORNIA ST,SF,94111,B01,13,1162,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7933383335289, -122.399381167233)",121850375-B01 -111980222,KM12,11065358,Medical Incident,07/17/2011,07/17/2011,07/17/2011 03:45:23 PM,07/17/2011 03:46:41 PM,07/17/2011 03:46:48 PM,07/17/2011 03:59:04 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 04:01:38 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,,1,PRIVATE,5,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",111980222-KM12 -140050144,88,14001768,Medical Incident,01/05/2014,01/05/2014,01/05/2014 10:39:42 AM,01/05/2014 10:42:30 AM,01/05/2014 10:46:32 AM,01/05/2014 10:46:32 AM,01/05/2014 10:51:55 AM,01/05/2014 11:09:44 AM,01/05/2014 11:39:28 AM,Code 2 Transport,01/05/2014 12:06:16 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",140050144-88 -110510236,KM12,11016930,Medical Incident,02/20/2011,02/20/2011,02/20/2011 03:08:37 PM,02/20/2011 03:12:38 PM,02/20/2011 03:13:21 PM,02/20/2011 03:17:07 PM,02/20/2011 03:23:42 PM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Patient Declined Transport,02/20/2011 03:38:30 PM,0 Block of MONTCALM ST,SF,94110,B06,9,5672,2,2,2,false,,1,PRIVATE,1,6,9,Bernal Heights,"(37.7472040308887, -122.405898418864)",110510236-KM12 -140210195,E07,14007196,Medical Incident,01/21/2014,01/21/2014,01/21/2014 01:59:08 PM,01/21/2014 02:00:58 PM,01/21/2014 02:01:54 PM,01/21/2014 02:02:30 PM,01/21/2014 02:05:29 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/21/2014 02:20:02 PM,0 Block of LUCKY ST,SF,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7517329980946, -122.413509818711)",140210195-E07 -160224009,61,16008992,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:50:58 PM,01/22/2016 11:50:58 PM,01/22/2016 11:52:06 PM,01/22/2016 11:52:13 PM,01/22/2016 11:57:05 PM,01/23/2016 12:02:37 AM,01/23/2016 12:25:28 AM,Code 2 Transport,01/23/2016 12:54:58 AM,400 Block of SUTTER ST,San Francisco,94108,B01,1,1324,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7892754139105, -122.407765078811)",160224009-61 -120750125,KM04,12024862,Medical Incident,03/15/2012,03/15/2012,03/15/2012 10:00:31 AM,03/15/2012 10:02:18 AM,03/15/2012 10:04:41 AM,03/15/2012 10:06:36 AM,03/15/2012 10:21:24 AM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 10:24:16 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",120750125-KM04 -160193392,79,16007789,Traffic Collision,01/19/2016,01/19/2016,01/19/2016 08:37:04 PM,01/19/2016 08:37:04 PM,01/19/2016 08:37:27 PM,01/19/2016 08:41:57 PM,01/19/2016 08:41:59 PM,01/19/2016 08:46:21 PM,01/19/2016 08:56:13 PM,Code 3 Transport,01/19/2016 09:25:36 PM,FELL ST/CLAYTON ST,San Francisco,94117,B05,21,4514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.7725789157484, -122.449143172114)",160193392-79 -130340071,E05,13011526,Alarms,02/03/2013,02/02/2013,02/03/2013 05:53:56 AM,02/03/2013 05:55:27 AM,02/03/2013 05:55:34 AM,02/03/2013 05:56:47 AM,02/03/2013 05:57:55 AM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 06:04:00 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,true,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",130340071-E05 -160182039,79,16007275,Medical Incident,01/18/2016,01/18/2016,01/18/2016 03:24:44 PM,01/18/2016 03:24:44 PM,01/18/2016 03:25:04 PM,01/18/2016 03:25:09 PM,01/18/2016 03:31:37 PM,01/18/2016 03:44:51 PM,01/18/2016 03:50:38 PM,Code 2 Transport,01/18/2016 04:27:38 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160182039-79 -160373554,91,16014904,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:15:55 PM,02/06/2016 08:16:57 PM,02/06/2016 08:20:36 PM,02/06/2016 08:20:47 PM,02/06/2016 08:52:25 PM,02/06/2016 09:06:21 PM,02/06/2016 09:24:03 PM,Code 2 Transport,02/06/2016 10:08:12 PM,1800 Block of OAKDALE AVE,San Francisco,94124,B10,42,6444,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375042189557, -122.395572399938)",160373554-91 -160392128,50,16015668,Medical Incident,02/08/2016,02/08/2016,02/08/2016 02:45:35 PM,02/08/2016 02:47:38 PM,02/08/2016 02:48:09 PM,02/08/2016 02:48:17 PM,02/08/2016 02:56:01 PM,02/08/2016 03:29:58 PM,02/08/2016 03:44:28 PM,Code 2 Transport,02/08/2016 04:25:23 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",160392128-50 -120220043,81,12007378,Medical Incident,01/22/2012,01/21/2012,01/22/2012 02:22:27 AM,01/22/2012 02:28:21 AM,01/22/2012 02:36:50 AM,01/22/2012 02:36:54 AM,01/22/2012 02:52:17 AM,01/22/2012 02:58:53 AM,01/22/2012 03:10:32 AM,Code 3 Transport,01/22/2012 03:27:56 AM,400 Block of STANYAN ST,SF,94117,B05,21,455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",120220043-81 -122190357,B07,12072804,Alarms,08/06/2012,08/06/2012,08/06/2012 09:49:29 PM,08/06/2012 09:51:22 PM,08/06/2012 09:52:10 PM,08/06/2012 09:53:21 PM,08/06/2012 09:55:10 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 09:59:56 PM,400 Block of 18TH AVE,SF,94121,B07,31,7161,3,3,3,false,Alarm,1,CHIEF,2,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",122190357-B07 -122100339,E05,12069903,Medical Incident,07/28/2012,07/28/2012,07/28/2012 09:51:20 PM,07/28/2012 09:52:58 PM,07/28/2012 09:53:38 PM,07/28/2012 09:54:38 PM,07/28/2012 09:57:00 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 10:01:27 PM,GEARY BL/STEINER ST,SF,94115,B04,5,3623,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",122100339-E05 -123140202,E19,12104504,Medical Incident,11/09/2012,11/09/2012,11/09/2012 01:15:11 PM,11/09/2012 01:17:06 PM,11/09/2012 01:18:58 PM,11/09/2012 01:19:51 PM,11/09/2012 01:24:42 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 01:34:36 PM,2700 Block of 41ST AVE,SF,94116,B08,19,7641,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7354674300338, -122.498871451486)",123140202-E19 -160630292,64,16024936,Medical Incident,03/03/2016,03/02/2016,03/03/2016 03:23:40 AM,03/03/2016 03:23:40 AM,03/03/2016 03:24:06 AM,03/03/2016 03:24:16 AM,03/03/2016 03:27:48 AM,03/03/2016 03:42:29 AM,03/03/2016 03:52:53 AM,Code 3 Transport,03/03/2016 05:07:12 AM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",160630292-64 -131250122,E13,13042187,Alarms,05/05/2013,05/05/2013,05/05/2013 10:48:55 AM,05/05/2013 10:50:04 AM,05/05/2013 10:50:11 AM,05/05/2013 10:51:44 AM,05/05/2013 10:52:45 AM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 11:02:36 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Alarm,1,ENGINE,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",131250122-E13 -123070255,RS1,12102071,Medical Incident,11/02/2012,11/02/2012,11/02/2012 04:04:33 PM,11/02/2012 04:06:36 PM,11/02/2012 04:07:00 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Other,04/25/2016 01:55:59 PM,26TH ST/VALENCIA ST,SF,94110,B06,11,5612,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,6,9,Mission,"(37.7489065309397, -122.420353712148)",123070255-RS1 -133250160,E03,13110361,Other,11/21/2013,11/21/2013,11/21/2013 11:50:46 AM,11/21/2013 11:51:55 AM,11/21/2013 11:52:36 AM,11/21/2013 11:52:44 AM,11/21/2013 11:54:32 AM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Other,11/21/2013 12:03:12 PM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",133250160-E03 -160223909,73,16008980,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:08:07 PM,01/22/2016 11:11:38 PM,01/22/2016 11:11:45 PM,01/22/2016 11:12:10 PM,01/22/2016 11:18:56 PM,01/22/2016 11:30:49 PM,01/22/2016 11:40:38 PM,Code 2 Transport,01/23/2016 12:28:29 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160223909-73 -122750078,93,12090653,Traffic Collision,10/01/2012,10/01/2012,10/01/2012 08:14:00 AM,10/01/2012 08:14:00 AM,10/01/2012 08:14:29 AM,10/01/2012 08:15:20 AM,10/01/2012 08:21:03 AM,10/01/2012 08:35:42 AM,10/01/2012 09:00:39 AM,Code 3 Transport,10/01/2012 09:48:53 AM,42ND AV/POINT LOBOS AV,SF,94121,B07,34,7265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.77960973574, -122.502972263941)",122750078-93 -112140124,B03,11070581,Alarms,08/02/2011,08/02/2011,08/02/2011 10:38:37 AM,08/02/2011 10:39:41 AM,08/02/2011 10:42:16 AM,08/02/2011 10:43:11 AM,08/02/2011 10:46:50 AM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 10:54:27 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,,1,CHIEF,1,3,6,South of Market,"(37.7854659679151, -122.405582629186)",112140124-B03 -122680288,66,12088622,Medical Incident,09/24/2012,09/24/2012,09/24/2012 05:53:23 PM,09/24/2012 05:53:48 PM,09/24/2012 05:54:03 PM,09/24/2012 05:54:19 PM,09/24/2012 06:00:31 PM,09/24/2012 06:10:32 PM,09/24/2012 06:17:54 PM,Code 2 Transport,09/24/2012 06:39:26 PM,300 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7844080259171, -122.412620351644)",122680288-66 -130180257,85,13006190,Medical Incident,01/18/2013,01/18/2013,01/18/2013 02:53:50 PM,01/18/2013 02:58:25 PM,01/18/2013 02:58:38 PM,01/18/2013 02:58:48 PM,04/25/2016 01:54:44 PM,01/18/2013 03:18:06 PM,01/18/2013 03:45:01 PM,Code 2 Transport,01/18/2013 04:06:31 PM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7697840925361, -122.449122960735)",130180257-85 -160730068,85,16028829,Medical Incident,03/13/2016,03/12/2016,03/13/2016 12:25:12 AM,03/13/2016 12:26:07 AM,03/13/2016 12:26:35 AM,03/13/2016 12:27:01 AM,03/13/2016 12:30:06 AM,03/13/2016 12:46:46 AM,03/13/2016 12:51:48 AM,Code 2 Transport,03/13/2016 01:14:40 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160730068-85 -112650052,T11,11087417,Alarms,09/22/2011,09/21/2011,09/22/2011 05:44:04 AM,09/22/2011 05:45:47 AM,09/22/2011 05:46:05 AM,09/22/2011 05:48:13 AM,09/22/2011 05:50:49 AM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/22/2011 06:03:17 AM,1200 Block of SANCHEZ ST,SF,94114,B06,11,5537,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7495570097851, -122.429530400976)",112650052-T11 -160773234,71,16030730,Medical Incident,03/17/2016,03/17/2016,03/17/2016 06:05:24 PM,03/17/2016 06:05:24 PM,03/17/2016 06:06:00 PM,03/17/2016 06:06:16 PM,03/17/2016 06:20:46 PM,03/17/2016 06:32:23 PM,03/17/2016 06:53:07 PM,Code 2 Transport,03/17/2016 07:13:24 PM,23RD ST/SHOTWELL ST,San Francisco,94110,B06,7,5511,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7540335346403, -122.415320140499)",160773234-71 -160850577,60,16033659,Medical Incident,03/25/2016,03/24/2016,03/25/2016 06:59:14 AM,03/25/2016 06:59:14 AM,03/25/2016 07:00:17 AM,03/25/2016 07:00:30 AM,03/25/2016 07:06:39 AM,03/25/2016 07:35:44 AM,03/25/2016 07:54:37 AM,Code 2 Transport,03/25/2016 08:26:14 AM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160850577-60 -131110305,E21,13037511,Structure Fire,04/21/2013,04/21/2013,04/21/2013 08:53:26 PM,04/21/2013 08:54:52 PM,04/21/2013 08:55:16 PM,04/21/2013 08:56:04 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Other,04/21/2013 08:57:53 PM,4200 Block of 18TH ST,SF,94114,B05,6,5415,3,3,3,false,Alarm,1,ENGINE,12,5,8,Castro/Upper Market,"(37.7608458177764, -122.436657685547)",131110305-E21 -133040303,86,13103361,Medical Incident,10/31/2013,10/31/2013,10/31/2013 05:55:06 PM,10/31/2013 05:56:29 PM,10/31/2013 05:56:46 PM,10/31/2013 05:57:02 PM,10/31/2013 06:07:41 PM,10/31/2013 06:22:54 PM,10/31/2013 07:19:24 PM,Code 2 Transport,10/31/2013 07:19:58 PM,0 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",133040303-86 -130800124,E36,13026693,HazMat,03/21/2013,03/21/2013,03/21/2013 10:05:37 AM,03/21/2013 10:10:20 AM,03/21/2013 10:17:41 AM,03/21/2013 10:28:14 AM,03/21/2013 10:42:45 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 12:31:04 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,ENGINE,3,None,None,None,"(37.6168823239251, -122.384094238098)",130800124-E36 -111170062,86,11038527,Medical Incident,04/27/2011,04/26/2011,04/27/2011 07:36:08 AM,04/27/2011 07:39:10 AM,04/27/2011 07:39:33 AM,04/27/2011 07:40:37 AM,04/27/2011 07:44:19 AM,04/27/2011 08:10:02 AM,04/27/2011 08:22:11 AM,Code 2 Transport,04/27/2011 07:58:32 AM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",111170062-86 -132350189,E13,13079312,Medical Incident,08/23/2013,08/23/2013,08/23/2013 12:45:21 PM,08/23/2013 12:46:32 PM,08/23/2013 12:46:46 PM,04/25/2016 01:51:09 PM,08/23/2013 12:49:16 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/23/2013 12:58:43 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",132350189-E13 -131000323,54,13033722,Medical Incident,04/10/2013,04/10/2013,04/10/2013 06:43:10 PM,04/10/2013 06:43:44 PM,04/10/2013 06:45:44 PM,04/10/2013 06:46:14 PM,04/10/2013 06:48:59 PM,04/10/2013 07:08:54 PM,04/10/2013 07:38:56 PM,Code 2 Transport,04/10/2013 08:03:59 PM,600 Block of TOWNSEND ST,SF,94103,B03,29,2275,2,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7709789357353, -122.402816011063)",131000323-54 -112960017,E29,11098053,Medical Incident,10/23/2011,10/22/2011,10/23/2011 12:53:00 AM,10/23/2011 12:53:54 AM,10/23/2011 12:54:20 AM,10/23/2011 12:55:40 AM,10/23/2011 12:58:03 AM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 01:10:26 AM,100 Block of UTAH ST,SF,94103,B02,29,2351,3,3,3,true,,1,ENGINE,1,2,10,Mission,"(37.7677826861899, -122.406668803339)",112960017-E29 -160352967,57,16013935,Medical Incident,02/04/2016,02/04/2016,02/04/2016 05:56:51 PM,02/04/2016 05:58:49 PM,02/04/2016 05:59:28 PM,02/04/2016 05:59:36 PM,02/04/2016 06:18:38 PM,02/04/2016 06:41:16 PM,02/04/2016 06:54:02 PM,Code 2 Transport,02/04/2016 07:14:56 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160352967-57 -132240017,E16,13075499,Medical Incident,08/12/2013,08/11/2013,08/12/2013 01:07:07 AM,08/12/2013 01:08:31 AM,08/12/2013 01:08:44 AM,08/12/2013 01:10:23 AM,08/12/2013 01:11:43 AM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/12/2013 01:20:21 AM,MALLORCA WY/CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8006837310432, -122.437299668371)",132240017-E16 -103200053,E38,10102467,Alarms,11/16/2010,11/15/2010,11/16/2010 05:56:54 AM,11/16/2010 05:58:08 AM,11/16/2010 05:58:13 AM,11/16/2010 05:59:36 AM,11/16/2010 06:01:15 AM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 06:15:28 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",103200053-E38 -121560137,RC3,12051604,Medical Incident,06/04/2012,06/04/2012,06/04/2012 10:30:27 AM,06/04/2012 10:31:23 AM,06/04/2012 10:31:52 AM,06/04/2012 10:34:08 AM,06/04/2012 10:38:54 AM,04/25/2016 01:58:22 PM,04/25/2016 01:58:22 PM,Other,06/04/2012 10:48:44 AM,0 Block of MONTEREY BLVD,SF,94131,B09,26,8261,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,9,8,West of Twin Peaks,"(37.7324628415478, -122.434750982103)",121560137-RC3 -130580320,E44,13019560,Medical Incident,02/27/2013,02/27/2013,02/27/2013 05:53:40 PM,02/27/2013 05:56:40 PM,02/27/2013 05:57:00 PM,02/27/2013 05:59:22 PM,02/27/2013 06:02:11 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,02/27/2013 06:13:05 PM,0 Block of RACINE LN,SF,94134,B10,44,6265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Visitacion Valley,"(37.7134529745264, -122.401092818593)",130580320-E44 -102480075,93,10078274,Medical Incident,09/05/2010,09/04/2010,09/05/2010 06:44:54 AM,09/05/2010 06:46:26 AM,09/05/2010 06:47:15 AM,09/05/2010 06:47:33 AM,09/05/2010 06:53:09 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Patient Declined Transport,09/05/2010 07:15:09 AM,0 Block of SPARTA ST,SF,94134,B10,44,6315,2,3,3,true,,1,MEDIC,1,10,10,Visitacion Valley,"(37.7179625135002, -122.403644220317)",102480075-93 -140250272,88,14008654,Medical Incident,01/25/2014,01/25/2014,01/25/2014 06:07:27 PM,01/25/2014 06:07:50 PM,01/25/2014 06:08:58 PM,01/25/2014 06:09:03 PM,01/25/2014 06:29:37 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Patient Declined Transport,01/25/2014 06:45:32 PM,25TH AV/CALIFORNIA ST,SF,94121,B07,14,7214,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7838822347168, -122.485010943843)",140250272-88 -160580097,85,16022948,Medical Incident,02/27/2016,02/26/2016,02/27/2016 12:39:35 AM,02/27/2016 12:42:40 AM,02/27/2016 12:42:56 AM,02/27/2016 12:47:34 AM,02/27/2016 12:55:21 AM,02/27/2016 01:25:29 AM,02/27/2016 01:38:33 AM,Code 2 Transport,02/27/2016 02:33:03 AM,FELTON ST/SAN BRUNO AV,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7300371964722, -122.404592619044)",160580097-85 -160572665,86,16022841,Medical Incident,02/26/2016,02/26/2016,02/26/2016 05:04:23 PM,02/26/2016 05:05:39 PM,02/26/2016 05:06:00 PM,02/26/2016 05:08:43 PM,02/26/2016 05:23:08 PM,02/26/2016 05:36:32 PM,02/26/2016 05:49:42 PM,Code 2 Transport,02/26/2016 06:37:11 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160572665-86 -103280203,B02,10105087,Alarms,11/24/2010,11/24/2010,11/24/2010 03:02:49 PM,11/24/2010 03:04:32 PM,11/24/2010 03:06:10 PM,11/24/2010 03:07:36 PM,11/24/2010 03:09:21 PM,04/25/2016 02:07:27 PM,04/25/2016 02:07:27 PM,Other,11/24/2010 03:09:25 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,false,,1,CHIEF,3,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",103280203-B02 -112200128,RS2,11072652,Medical Incident,08/08/2011,08/08/2011,08/08/2011 10:43:52 AM,08/08/2011 10:45:37 AM,08/08/2011 10:46:19 AM,08/08/2011 10:46:35 AM,08/08/2011 10:48:19 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 10:58:02 AM,2800 Block of 22ND ST,SF,94110,B06,7,5474,3,E,3,false,,1,RESCUE SQUAD,1,6,9,Mission,"(37.7559148150977, -122.411740426812)",112200128-RS2 -160703321,E05,16027998,Medical Incident,03/10/2016,03/10/2016,03/10/2016 08:21:32 PM,03/10/2016 08:22:44 PM,03/10/2016 08:29:16 PM,03/10/2016 08:30:15 PM,03/10/2016 08:34:08 PM,03/10/2016 09:20:00 PM,03/10/2016 09:20:04 PM,Code 3 Transport,03/10/2016 09:20:07 PM,2300 Block of BUCHANAN ST,San Francisco,94115,B04,38,3435,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",160703321-E05 -121530288,55,12050736,Medical Incident,06/01/2012,06/01/2012,06/01/2012 07:02:49 PM,06/01/2012 07:04:14 PM,06/01/2012 07:05:00 PM,06/01/2012 07:07:32 PM,06/01/2012 07:14:39 PM,06/01/2012 07:28:33 PM,06/01/2012 07:43:43 PM,Code 2 Transport,06/01/2012 07:52:37 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",121530288-55 -160531400,88,16021178,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:52:12 AM,02/22/2016 11:53:24 AM,02/22/2016 11:53:46 AM,02/22/2016 11:54:13 AM,02/22/2016 12:12:37 PM,02/22/2016 12:12:43 PM,02/22/2016 12:20:04 PM,Code 2 Transport,02/22/2016 12:58:30 PM,HYDE ST/GOLDEN GATE AV,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",160531400-88 -111430097,54,11047461,Medical Incident,05/23/2011,05/23/2011,05/23/2011 09:15:13 AM,05/23/2011 09:16:30 AM,05/23/2011 09:17:02 AM,05/23/2011 09:17:41 AM,05/23/2011 09:25:47 AM,05/23/2011 09:55:45 AM,05/23/2011 10:12:53 AM,Code 2 Transport,05/23/2011 10:46:00 AM,1000 Block of WASHINGTON ST,SF,94108,B01,2,1415,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7945246981773, -122.410940056689)",111430097-54 -103180035,T01,10101808,Structure Fire,11/14/2010,11/13/2010,11/14/2010 01:49:10 AM,11/14/2010 01:49:10 AM,11/14/2010 01:49:20 AM,11/14/2010 01:50:34 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 01:51:45 AM,10TH ST/FOLSOM ST,SF,94103,B02,36,2343,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7728121600424, -122.412824228759)",103180035-T01 -121750121,KM02,12058052,Medical Incident,06/23/2012,06/23/2012,06/23/2012 09:48:19 AM,06/23/2012 09:49:47 AM,06/23/2012 09:50:15 AM,06/23/2012 09:51:32 AM,06/23/2012 09:56:51 AM,06/23/2012 10:12:09 AM,06/23/2012 10:39:12 AM,Code 2 Transport,06/23/2012 10:54:13 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",121750121-KM02 -112680015,E16,11088426,Traffic Collision,09/25/2011,09/24/2011,09/25/2011 12:46:00 AM,09/25/2011 12:46:13 AM,09/25/2011 12:46:33 AM,09/25/2011 12:47:49 AM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/25/2011 12:50:47 AM,VAN NESS AV/NORTH POINT ST,SF,94109,B04,28,3143,3,3,3,true,,1,ENGINE,3,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",112680015-E16 -160191977,89,16007660,Medical Incident,01/19/2016,01/19/2016,01/19/2016 01:57:41 PM,01/19/2016 01:57:41 PM,01/19/2016 01:57:53 PM,01/19/2016 01:58:01 PM,01/19/2016 02:07:30 PM,01/19/2016 02:54:35 PM,01/19/2016 03:09:28 PM,Code 2 Transport,01/19/2016 03:46:22 PM,400 Block of 7TH AV,San Francisco,94118,B07,31,7131,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800008159621, -122.46535084744)",160191977-89 -140710196,B03,14023969,Alarms,03/12/2014,03/12/2014,03/12/2014 12:37:52 PM,03/12/2014 12:39:09 PM,03/12/2014 12:44:13 PM,03/12/2014 12:44:13 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Fire,04/25/2016 01:47:47 PM,1400 Block of SUTTER ST,SAN FRANCISCO,94109,B04,3,3223,3,3,3,false,Alarm,1,CHIEF,6,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",140710196-B03 -110810275,E13,11026728,Medical Incident,03/22/2011,03/22/2011,03/22/2011 06:23:18 PM,03/22/2011 06:24:36 PM,03/22/2011 06:25:01 PM,03/22/2011 06:25:56 PM,03/22/2011 06:27:37 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Against Medical Advice,03/22/2011 07:02:22 PM,0 Block of SANSOME ST,SF,94104,B01,13,1164,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",110810275-E13 -160133566,65,16005336,Medical Incident,01/13/2016,01/13/2016,01/13/2016 07:26:16 PM,01/13/2016 07:27:27 PM,01/13/2016 07:28:15 PM,01/13/2016 07:28:22 PM,01/13/2016 07:36:10 PM,01/13/2016 07:54:14 PM,01/13/2016 08:11:03 PM,Code 2 Transport,01/13/2016 08:54:38 PM,2500 Block of 44TH AVE,San Francisco,94116,B08,18,7643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7390700333049, -122.502349719445)",160133566-65 -133520050,54,13119461,Medical Incident,12/18/2013,12/17/2013,12/18/2013 05:14:44 AM,12/18/2013 05:16:14 AM,12/18/2013 05:35:02 AM,12/18/2013 05:35:37 AM,12/18/2013 05:35:09 AM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/18/2013 05:47:21 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",133520050-54 -160043262,68,16001755,Medical Incident,01/04/2016,01/04/2016,01/04/2016 08:15:25 PM,01/04/2016 08:17:21 PM,01/04/2016 08:17:35 PM,01/04/2016 08:17:41 PM,01/04/2016 08:25:25 PM,01/04/2016 08:48:12 PM,01/04/2016 08:56:08 PM,Code 2 Transport,01/04/2016 09:35:22 PM,1900 Block of CLAY ST,San Francisco,94109,B04,38,3253,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7919153818228, -122.425171289022)",160043262-68 -160031119,67,16001134,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:24:05 AM,01/03/2016 10:26:12 AM,01/03/2016 10:26:30 AM,01/03/2016 10:29:44 AM,01/03/2016 10:29:51 AM,01/03/2016 10:41:08 AM,01/03/2016 11:03:48 AM,Code 2 Transport,01/03/2016 11:05:22 AM,JOSE SARRIA CT/POND ST,San Francisco,94114,B05,6,5252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7642889660509, -122.432279517045)",160031119-67 -132230254,E37,13075380,Medical Incident,08/11/2013,08/11/2013,08/11/2013 04:43:01 PM,08/11/2013 04:43:01 PM,08/11/2013 04:44:15 PM,08/11/2013 04:45:31 PM,08/11/2013 04:47:06 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 04:57:18 PM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7563302749024, -122.395565360141)",132230254-E37 -140470209,T14,14016031,Water Rescue,02/16/2014,02/16/2014,02/16/2014 02:39:33 PM,02/16/2014 02:40:33 PM,02/16/2014 02:42:32 PM,02/16/2014 02:43:58 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 02:48:27 PM,LAWTON ST/GREAT HY,SF,94122,B08,23,7724,3,3,3,false,Fire,1,TRUCK,8,8,4,Sunset/Parkside,"(37.7565512306025, -122.508902542437)",140470209-T14 -112860168,E38,11094719,Medical Incident,10/13/2011,10/13/2011,10/13/2011 11:10:11 AM,10/13/2011 11:11:40 AM,10/13/2011 11:12:20 AM,10/13/2011 11:13:33 AM,10/13/2011 11:15:38 AM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,No Merit,10/13/2011 11:17:25 AM,2000 Block of SACRAMENTO ST,SF,94109,B04,38,3326,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7907164232714, -122.426614088537)",112860168-E38 -133380367,67,13114715,Traffic Collision,12/04/2013,12/04/2013,12/04/2013 10:32:26 PM,12/04/2013 10:34:09 PM,12/04/2013 10:35:09 PM,12/04/2013 10:35:18 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/04/2013 10:40:30 PM,JACKSON ST/VAN NESS AV,SF,94109,B04,41,3153,2,2,2,false,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7939350051074, -122.423048803014)",133380367-67 -133030015,E17,13102805,Citizen Assist / Service Call,10/30/2013,10/29/2013,10/30/2013 01:31:31 AM,10/30/2013 01:32:44 AM,10/30/2013 01:32:54 AM,10/30/2013 01:35:03 AM,10/30/2013 01:40:18 AM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,10/30/2013 02:08:32 AM,100 Block of CRESCENT WAY,SF,94134,B10,17,6576,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7111340886592, -122.389340428123)",133030015-E17 -160270058,E02,16010514,Medical Incident,01/27/2016,01/26/2016,01/27/2016 12:29:33 AM,01/27/2016 12:31:21 AM,01/27/2016 12:31:38 AM,01/27/2016 12:33:34 AM,01/27/2016 12:35:48 AM,01/27/2016 01:00:37 AM,01/27/2016 01:08:12 AM,Code 3 Transport,01/27/2016 01:14:30 AM,500 Block of VALLEJO ST,San Francisco,94133,B01,2,1251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7988538467026, -122.407028870833)",160270058-E02 -110740304,T03,11024436,Alarms,03/15/2011,03/15/2011,03/15/2011 06:10:44 PM,03/15/2011 06:10:51 PM,03/15/2011 06:11:12 PM,03/15/2011 06:13:21 PM,03/15/2011 06:15:02 PM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/15/2011 06:18:59 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",110740304-T03 -160623561,AM08,16024832,Medical Incident,03/02/2016,03/02/2016,03/02/2016 07:24:44 PM,03/02/2016 07:25:19 PM,03/02/2016 07:29:00 PM,03/02/2016 07:29:39 PM,03/02/2016 07:33:23 PM,03/02/2016 07:57:14 PM,03/02/2016 08:13:16 PM,Code 2 Transport,03/02/2016 08:45:12 PM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160623561-AM08 -140440126,T03,14014912,Medical Incident,02/13/2014,02/13/2014,02/13/2014 09:34:12 AM,02/13/2014 09:35:08 AM,02/13/2014 09:35:55 AM,02/13/2014 09:37:43 AM,02/13/2014 09:45:22 AM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/13/2014 09:51:38 AM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",140440126-T03 -131060216,T02,13035658,Alarms,04/16/2013,04/16/2013,04/16/2013 02:03:09 PM,04/16/2013 02:04:53 PM,04/16/2013 02:05:00 PM,04/16/2013 02:06:13 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/16/2013 02:09:24 PM,1000 Block of LEAVENWORTH ST,SF,94109,B01,41,1541,3,3,3,false,Alarm,1,TRUCK,3,4,3,Nob Hill,"(37.7907216617507, -122.415722994443)",131060216-T02 -133110219,E42,13105744,Citizen Assist / Service Call,11/07/2013,11/07/2013,11/07/2013 02:41:41 PM,11/07/2013 02:44:39 PM,11/07/2013 02:46:31 PM,11/07/2013 02:48:10 PM,11/07/2013 02:48:52 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/07/2013 02:57:41 PM,300 Block of ARLETA AVE,SF,94134,B09,44,6312,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.714716142368, -122.40998252975)",133110219-E42 -130070252,87,13002428,Medical Incident,01/07/2013,01/07/2013,01/07/2013 03:38:59 PM,01/07/2013 03:39:13 PM,01/07/2013 03:39:26 PM,01/07/2013 03:39:32 PM,01/07/2013 03:52:24 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 04:08:47 PM,HAMILTON ST/SILVER AV,SF,94134,B10,42,6356,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Portola,"(37.7306078962756, -122.411394405815)",130070252-87 -160091590,56,16003640,Medical Incident,01/09/2016,01/09/2016,01/09/2016 12:43:47 PM,01/09/2016 12:45:08 PM,01/09/2016 12:47:29 PM,01/09/2016 12:47:40 PM,01/09/2016 01:10:30 PM,01/09/2016 01:36:47 PM,01/09/2016 01:52:18 PM,Code 2 Transport,01/09/2016 02:39:50 PM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160091590-56 -140560097,E18,14018827,Medical Incident,02/25/2014,02/25/2014,02/25/2014 08:52:45 AM,02/25/2014 08:53:04 AM,02/25/2014 08:53:26 AM,02/25/2014 08:54:54 AM,02/25/2014 08:57:17 AM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,Code 2 Transport,02/25/2014 09:11:56 AM,1600 Block of 34TH AVE,SF,94122,B08,18,7542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7563254807326, -122.492809754043)",140560097-E18 -131770049,E03,13059973,Medical Incident,06/26/2013,06/25/2013,06/26/2013 03:00:39 AM,06/26/2013 03:02:04 AM,06/26/2013 03:02:26 AM,06/26/2013 03:04:03 AM,06/26/2013 03:05:23 AM,04/25/2016 01:52:06 PM,04/25/2016 01:52:06 PM,Other,06/26/2013 03:11:12 AM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",131770049-E03 -130620164,E14,13020753,Medical Incident,03/03/2013,03/03/2013,03/03/2013 11:16:04 AM,03/03/2013 11:16:44 AM,03/03/2013 11:16:49 AM,03/03/2013 11:17:05 AM,03/03/2013 11:21:32 AM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 11:31:21 AM,400 Block of 28TH AVE,SF,94121,B07,14,7221,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7809076741432, -122.488084551957)",130620164-E14 -122750371,99,12090897,Medical Incident,10/01/2012,10/01/2012,10/01/2012 07:43:19 PM,10/01/2012 07:45:21 PM,10/01/2012 07:45:34 PM,10/01/2012 07:45:51 PM,10/01/2012 07:54:02 PM,10/01/2012 08:19:29 PM,10/01/2012 08:42:45 PM,Code 2 Transport,10/01/2012 09:16:08 PM,0 Block of NAVY RD,SF,94124,B10,17,6646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294990859712, -122.379424889828)",122750371-99 -160483842,89,16019523,Medical Incident,02/17/2016,02/17/2016,02/17/2016 09:34:21 PM,02/17/2016 09:35:49 PM,02/17/2016 09:36:07 PM,02/17/2016 09:36:19 PM,02/17/2016 09:43:19 PM,02/17/2016 10:01:17 PM,02/17/2016 10:09:01 PM,Code 2 Transport,02/17/2016 10:42:45 PM,800 Block of TREAT AVE,San Francisco,94110,B06,7,545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7565605303297, -122.413439435953)",160483842-89 -160204051,85,16008211,Medical Incident,01/20/2016,01/20/2016,01/20/2016 11:37:30 PM,01/20/2016 11:41:13 PM,01/20/2016 11:43:05 PM,01/20/2016 11:43:05 PM,01/20/2016 11:45:11 PM,01/21/2016 12:04:58 AM,01/21/2016 12:09:07 AM,Code 2 Transport,01/21/2016 12:44:05 AM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160204051-85 -103070362,KM05,10098363,Medical Incident,11/03/2010,11/03/2010,11/03/2010 03:27:01 PM,11/03/2010 03:27:17 PM,11/03/2010 03:28:00 PM,11/03/2010 03:28:33 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Duplicate,11/03/2010 03:40:34 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",103070362-KM05 -133200276,E16,13108807,Medical Incident,11/16/2013,11/16/2013,11/16/2013 06:01:48 PM,11/16/2013 06:03:10 PM,11/16/2013 06:04:08 PM,11/16/2013 06:05:36 PM,11/16/2013 06:07:07 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 06:13:42 PM,UNION ST/LAGUNA ST,SF,94123,B04,16,3353,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7977162114993, -122.430558960196)",133200276-E16 -140040135,55,14001403,Medical Incident,01/04/2014,01/04/2014,01/04/2014 10:49:08 AM,01/04/2014 10:52:23 AM,01/04/2014 10:54:21 AM,01/04/2014 10:55:51 AM,01/04/2014 11:06:31 AM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,No Merit,01/04/2014 11:10:33 AM,600 Block of HEAD ST,SF,94132,B09,33,8433,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7188076273319, -122.464519500184)",140040135-55 -122740063,E11,12090283,Structure Fire,09/30/2012,09/29/2012,09/30/2012 06:52:50 AM,09/30/2012 06:55:51 AM,09/30/2012 06:56:00 AM,09/30/2012 06:59:43 AM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,Other,09/30/2012 07:02:17 AM,3600 Block of 18TH ST,SF,94110,B02,7,5422,3,3,3,true,Fire,1,ENGINE,9,6,8,Mission,"(37.7614043814693, -122.425545388909)",122740063-E11 -121420305,85,12047345,Medical Incident,05/21/2012,05/21/2012,05/21/2012 07:56:58 PM,05/21/2012 07:58:19 PM,05/21/2012 07:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,04/25/2016 01:58:34 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",121420305-85 -140640371,E06,14021811,Medical Incident,03/05/2014,03/05/2014,03/05/2014 10:51:54 PM,03/05/2014 10:53:27 PM,03/05/2014 10:53:50 PM,03/05/2014 10:55:34 PM,03/05/2014 11:07:59 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,No Merit,03/05/2014 11:08:34 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",140640371-E06 -133190131,KM12,13108350,Medical Incident,11/15/2013,11/15/2013,11/15/2013 09:57:44 AM,11/15/2013 10:01:58 AM,11/15/2013 10:02:15 AM,11/15/2013 10:02:42 AM,11/15/2013 10:26:09 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Patient Declined Transport,11/15/2013 10:53:09 AM,5800 Block of CALIFORNIA ST,SF,94121,B07,14,7173,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7840461448147, -122.480184160897)",133190131-KM12 -160531348,89,16021173,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:37:01 AM,02/22/2016 11:37:47 AM,02/22/2016 11:37:59 AM,02/22/2016 11:38:29 AM,02/22/2016 11:46:02 AM,02/22/2016 12:00:08 PM,02/22/2016 12:15:43 PM,Code 2 Transport,02/22/2016 01:00:57 PM,600 Block of 3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7795094454815, -122.393475822659)",160531348-89 -103100065,E03,10099297,Medical Incident,11/06/2010,11/05/2010,11/06/2010 06:27:06 AM,11/06/2010 06:28:03 AM,11/06/2010 06:28:28 AM,11/06/2010 06:30:46 AM,11/06/2010 06:31:27 AM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 06:31:31 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",103100065-E03 -112830204,E05,11093695,Medical Incident,10/10/2011,10/10/2011,10/10/2011 02:09:43 PM,10/10/2011 02:14:12 PM,10/10/2011 02:14:29 PM,10/10/2011 02:15:43 PM,10/10/2011 02:18:35 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 02:34:46 PM,1400 Block of EDDY ST,SF,94115,B04,5,3515,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7815912239311, -122.431479968624)",112830204-E05 -131280085,E01,13043199,Structure Fire,05/08/2013,05/07/2013,05/08/2013 07:36:08 AM,05/08/2013 07:36:08 AM,05/08/2013 07:36:21 AM,05/08/2013 07:37:21 AM,05/08/2013 07:39:17 AM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 07:40:30 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131280085-E01 -112480332,E05,11081927,Medical Incident,09/05/2011,09/05/2011,09/05/2011 08:14:47 PM,09/05/2011 08:16:52 PM,09/05/2011 08:17:10 PM,09/05/2011 08:18:13 PM,09/05/2011 08:21:11 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 08:42:15 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",112480332-E05 -160361926,62,16014256,Medical Incident,02/05/2016,02/05/2016,02/05/2016 12:53:20 PM,02/05/2016 12:56:04 PM,02/05/2016 12:57:28 PM,02/05/2016 12:58:21 PM,02/05/2016 01:21:44 PM,02/05/2016 01:32:47 PM,02/05/2016 01:55:56 PM,Code 2 Transport,02/05/2016 02:30:44 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160361926-62 -160271223,84,16010617,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:31:23 AM,01/27/2016 10:31:23 AM,01/27/2016 10:31:39 AM,01/27/2016 10:34:57 AM,01/27/2016 10:34:57 AM,01/27/2016 10:53:22 AM,01/27/2016 10:59:11 AM,Code 2 Transport,01/27/2016 11:35:10 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160271223-84 -130480059,E07,13016277,Traffic Collision,02/17/2013,02/16/2013,02/17/2013 02:54:16 AM,02/17/2013 02:54:57 AM,02/17/2013 02:55:41 AM,02/17/2013 02:56:54 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 03:15:03 AM,19TH ST/MISSION ST,SF,94110,B06,7,5433,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",130480059-E07 -122730121,E17,12089989,Alarms,09/29/2012,09/29/2012,09/29/2012 09:43:52 AM,09/29/2012 09:45:00 AM,09/29/2012 09:46:10 AM,09/29/2012 09:48:19 AM,09/29/2012 09:50:29 AM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/29/2012 10:04:10 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",122730121-E17 -160061507,52,16002377,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:47:06 AM,01/06/2016 11:48:42 AM,01/06/2016 11:51:33 AM,01/06/2016 11:52:25 AM,01/06/2016 12:02:48 PM,01/06/2016 12:10:57 PM,01/06/2016 12:19:09 PM,Code 2 Transport,01/06/2016 12:53:34 PM,400 Block of CORBETT AVE,San Francisco,94114,B05,24,5265,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7579022051959, -122.445567287846)",160061507-52 -132750336,67,13093552,Medical Incident,10/02/2013,10/02/2013,10/02/2013 08:38:30 PM,10/02/2013 08:40:34 PM,10/02/2013 08:41:21 PM,10/02/2013 08:41:30 PM,10/02/2013 08:48:19 PM,10/02/2013 08:52:13 PM,10/02/2013 09:06:43 PM,Code 2 Transport,10/02/2013 09:34:33 PM,400 Block of 29TH AVE,SF,94121,B07,14,7226,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7808610214772, -122.489016145519)",132750336-67 -122380315,T16,12078957,Alarms,08/25/2012,08/25/2012,08/25/2012 10:27:29 PM,08/25/2012 10:29:23 PM,08/25/2012 10:29:43 PM,08/25/2012 10:31:26 PM,08/25/2012 10:39:37 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 10:40:33 PM,1200 Block of STOREY AVE,PR,94129,B99,51,4615,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.8020188733283, -122.470612578016)",122380315-T16 -120360351,83,12012142,Medical Incident,02/05/2012,02/05/2012,02/05/2012 08:13:31 PM,02/05/2012 08:14:43 PM,02/05/2012 08:16:27 PM,02/05/2012 08:16:53 PM,02/05/2012 08:17:51 PM,02/05/2012 08:26:54 PM,02/05/2012 08:47:06 PM,Code 2 Transport,02/05/2012 09:14:10 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",120360351-83 -160300421,62,16011655,Medical Incident,01/30/2016,01/29/2016,01/30/2016 03:03:06 AM,01/30/2016 03:05:10 AM,01/30/2016 03:05:49 AM,01/30/2016 03:05:57 AM,01/30/2016 03:07:31 AM,01/30/2016 03:15:51 AM,01/30/2016 03:33:29 AM,Code 2 Transport,01/30/2016 03:55:00 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",160300421-62 -160822454,59,16032628,Medical Incident,03/22/2016,03/22/2016,03/22/2016 03:41:18 PM,03/22/2016 03:42:45 PM,03/22/2016 03:43:14 PM,03/22/2016 03:43:22 PM,03/22/2016 03:49:02 PM,03/22/2016 04:09:36 PM,03/22/2016 04:21:59 PM,Code 2 Transport,03/22/2016 05:01:38 PM,POWELL ST/BROADWAY,San Francisco,94133,B01,2,1353,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7974201856554, -122.410263526117)",160822454-59 -160010343,71,16000062,Medical Incident,01/01/2016,12/31/2015,01/01/2016 01:12:55 AM,01/01/2016 01:14:49 AM,01/01/2016 01:16:29 AM,01/01/2016 01:16:55 AM,01/01/2016 01:25:01 AM,01/01/2016 01:49:03 AM,01/01/2016 01:52:05 AM,Code 2 Transport,01/01/2016 02:21:31 AM,400 Block of MISSISSIPPI ST,San Francisco,94107,B10,37,2474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7607753106683, -122.394482044355)",160010343-71 -122520196,T08,12083345,Alarms,09/08/2012,09/08/2012,09/08/2012 02:30:10 PM,09/08/2012 02:31:37 PM,09/08/2012 02:31:43 PM,09/08/2012 02:34:11 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/08/2012 02:36:16 PM,500 Block of 15TH ST,SF,94103,B02,29,2352,3,3,3,false,Alarm,1,TRUCK,3,2,10,Mission,"(37.7672258966731, -122.406197525908)",122520196-T08 -112830031,E03,11093542,Medical Incident,10/10/2011,10/09/2011,10/10/2011 02:58:33 AM,10/10/2011 02:59:16 AM,10/10/2011 03:00:12 AM,10/10/2011 03:01:45 AM,10/10/2011 03:03:43 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/10/2011 03:05:33 AM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7830416107165, -122.415856533326)",112830031-E03 -130480007,E13,13016226,Medical Incident,02/17/2013,02/16/2013,02/17/2013 12:17:46 AM,02/17/2013 12:18:04 AM,02/17/2013 12:18:50 AM,02/17/2013 12:19:51 AM,02/17/2013 12:21:04 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 12:29:53 AM,MONTGOMERY ST/BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7982229704871, -122.403863019987)",130480007-E13 -111250215,E15,11041386,Alarms,05/05/2011,05/05/2011,05/05/2011 02:22:02 PM,05/05/2011 02:23:38 PM,05/05/2011 02:24:01 PM,05/05/2011 02:25:35 PM,05/05/2011 02:30:23 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 02:31:28 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",111250215-E15 -160423368,88,16017013,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:03:06 PM,02/11/2016 08:04:24 PM,02/11/2016 08:04:48 PM,02/11/2016 08:04:57 PM,02/11/2016 08:08:14 PM,02/11/2016 08:22:33 PM,02/11/2016 08:27:43 PM,Code 2 Transport,02/11/2016 09:19:59 PM,3100 Block of SACRAMENTO ST,San Francisco,94115,B04,10,4264,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7884127178988, -122.444753541117)",160423368-88 -131120175,E10,13037686,Alarms,04/22/2013,04/22/2013,04/22/2013 11:55:21 AM,04/22/2013 11:57:07 AM,04/22/2013 11:57:21 AM,04/22/2013 11:59:45 AM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Other,04/22/2013 12:05:03 PM,1600 Block of DIVISADERO ST,SF,94115,B04,10,4131,3,3,3,true,Alarm,1,ENGINE,3,5,5,Japantown,"(37.7847979838284, -122.439663867351)",131120175-E10 -110260013,B01,11008470,Citizen Assist / Service Call,01/26/2011,01/25/2011,01/26/2011 12:56:40 AM,01/26/2011 01:00:04 AM,01/26/2011 01:00:29 AM,01/26/2011 01:02:56 AM,01/26/2011 01:05:22 AM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/26/2011 01:47:05 AM,2100 Block of STOCKTON ST,SF,94133,B01,28,1341,3,3,3,false,,1,CHIEF,2,1,3,North Beach,"(37.8055542731117, -122.410285576775)",110260013-B01 -160580406,55,16022991,Medical Incident,02/27/2016,02/26/2016,02/27/2016 02:55:49 AM,02/27/2016 02:58:13 AM,02/27/2016 03:00:25 AM,02/27/2016 03:00:49 AM,02/27/2016 03:06:49 AM,02/27/2016 03:18:48 AM,02/27/2016 03:29:02 AM,Code 2 Transport,02/27/2016 04:03:45 AM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160580406-55 -160011592,84,16000281,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:11:36 AM,01/01/2016 10:13:36 AM,01/01/2016 10:13:56 AM,01/01/2016 10:14:58 AM,01/01/2016 10:23:16 AM,01/01/2016 10:45:42 AM,01/01/2016 10:57:22 AM,Code 2 Transport,01/01/2016 11:10:43 AM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160011592-84 -160640088,68,16025316,Medical Incident,03/04/2016,03/03/2016,03/04/2016 12:47:13 AM,03/04/2016 12:47:57 AM,03/04/2016 12:48:09 AM,03/04/2016 12:49:02 AM,03/04/2016 12:51:03 AM,03/04/2016 12:53:44 AM,03/04/2016 01:21:33 AM,Code 2 Transport,03/04/2016 02:26:59 AM,1600 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7916541828949, -122.420058319923)",160640088-68 -123500265,E36,12117111,Traffic Collision,12/15/2012,12/15/2012,12/15/2012 05:50:43 PM,12/15/2012 05:50:55 PM,12/15/2012 05:51:07 PM,12/15/2012 05:53:05 PM,12/15/2012 05:55:37 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 06:23:00 PM,MISSION ST/15TH ST,SF,94103,B02,36,5279,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",123500265-E36 -160903301,68,16035844,Medical Incident,03/30/2016,03/30/2016,03/30/2016 06:48:26 PM,03/30/2016 06:51:47 PM,03/30/2016 06:52:27 PM,03/30/2016 06:52:35 PM,03/30/2016 07:04:16 PM,03/30/2016 07:26:52 PM,03/30/2016 07:47:39 PM,Code 2 Transport,03/30/2016 08:29:29 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160903301-68 -111790167,E13,11059101,Medical Incident,06/28/2011,06/28/2011,06/28/2011 12:52:44 PM,06/28/2011 12:54:53 PM,06/28/2011 12:55:44 PM,06/28/2011 12:56:49 PM,06/28/2011 12:58:53 PM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Other,06/28/2011 01:07:11 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",111790167-E13 -160512237,KM04,16020523,Medical Incident,02/20/2016,02/20/2016,02/20/2016 04:25:05 PM,02/20/2016 04:25:05 PM,02/20/2016 04:25:46 PM,02/20/2016 04:26:47 PM,02/20/2016 04:41:21 PM,02/20/2016 04:51:51 PM,02/20/2016 05:04:18 PM,Code 2 Transport,02/20/2016 05:48:49 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7716028339242, -122.445694365285)",160512237-KM04 -102500158,D3,10078977,Structure Fire,09/07/2010,09/07/2010,09/07/2010 01:00:37 PM,09/07/2010 01:00:58 PM,09/07/2010 01:01:11 PM,04/25/2016 02:08:42 PM,09/07/2010 01:03:31 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 01:08:43 PM,3100 Block of 22ND ST,SF,94110,B06,7,5472,3,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.755524488206, -122.418208517373)",102500158-D3 -122660310,83,12087987,Medical Incident,09/22/2012,09/22/2012,09/22/2012 08:37:23 PM,09/22/2012 08:38:23 PM,09/22/2012 08:38:34 PM,09/22/2012 08:39:38 PM,09/22/2012 08:46:28 PM,09/22/2012 09:07:12 PM,09/22/2012 09:25:55 PM,Code 2 Transport,09/22/2012 09:58:05 PM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",122660310-83 -131970096,AM24,13066753,Medical Incident,07/16/2013,07/16/2013,07/16/2013 09:24:04 AM,07/16/2013 09:25:29 AM,07/16/2013 09:25:59 AM,07/16/2013 09:26:49 AM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/16/2013 09:45:50 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",131970096-AM24 -160043640,71,16001789,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:29:28 PM,01/04/2016 10:30:45 PM,01/04/2016 10:32:02 PM,01/04/2016 10:34:07 PM,01/04/2016 10:41:51 PM,01/04/2016 11:07:29 PM,01/04/2016 11:13:53 PM,Code 2 Transport,01/04/2016 11:52:06 PM,1200 Block of PAGE ST,San Francisco,94117,B05,21,4251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7717293101583, -122.441377954936)",160043640-71 -160850975,54,16033686,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:56:33 AM,03/25/2016 08:58:27 AM,03/25/2016 08:58:48 AM,03/25/2016 09:00:45 AM,03/25/2016 09:09:53 AM,03/25/2016 09:24:00 AM,03/25/2016 09:26:43 AM,Code 2 Transport,03/25/2016 10:05:20 AM,900 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",160850975-54 -102290249,B10,10072112,Alarms,08/17/2010,08/17/2010,08/17/2010 04:50:14 PM,08/17/2010 04:51:21 PM,08/17/2010 04:51:25 PM,08/17/2010 04:52:52 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 04:58:47 PM,1700 Block of BANCROFT AVE,SF,94124,B10,17,6537,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7268724745843, -122.394902680548)",102290249-B10 -120630222,KM05,12020775,Medical Incident,03/03/2012,03/03/2012,03/03/2012 01:39:38 PM,03/03/2012 01:41:24 PM,03/03/2012 01:42:08 PM,03/03/2012 01:42:42 PM,03/03/2012 02:14:57 PM,03/03/2012 02:15:03 PM,03/03/2012 02:45:20 PM,Code 2 Transport,03/03/2012 03:20:19 PM,0 Block of BONITA ST,SF,94109,B04,41,3126,1,1,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7973537252438, -122.422620569494)",120630222-KM05 -121620363,T07,12053785,Structure Fire,06/10/2012,06/10/2012,06/10/2012 07:39:43 PM,06/10/2012 07:39:43 PM,06/10/2012 07:40:14 PM,06/10/2012 07:41:49 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 07:43:52 PM,19TH ST/DOLORES ST,SF,94110,B06,7,5435,3,3,3,false,Alarm,1,TRUCK,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",121620363-T07 -132800203,E01,13095302,Medical Incident,10/07/2013,10/07/2013,10/07/2013 01:17:12 PM,10/07/2013 01:18:05 PM,10/07/2013 01:18:25 PM,10/07/2013 01:19:20 PM,10/07/2013 01:21:37 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/07/2013 01:25:47 PM,1000 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",132800203-E01 -103530146,B04,10113291,Alarms,12/19/2010,12/19/2010,12/19/2010 08:37:46 AM,12/19/2010 08:38:40 AM,12/19/2010 08:39:34 AM,12/19/2010 08:40:53 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/19/2010 08:46:43 AM,1800 Block of EDDY ST,SF,94115,B05,5,4133,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7807493567341, -122.438104422838)",103530146-B04 -160902525,77,16035782,Medical Incident,03/30/2016,03/30/2016,03/30/2016 03:44:55 PM,03/30/2016 03:45:54 PM,03/30/2016 03:49:07 PM,03/30/2016 03:49:16 PM,03/30/2016 04:26:49 PM,03/30/2016 04:46:51 PM,03/30/2016 05:18:26 PM,Code 2 Transport,03/30/2016 05:54:55 PM,300 Block of MARKET ST,San Francisco,94111,B01,13,1136,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7921324266791, -122.397911804174)",160902525-77 -131790462,94,13061040,Medical Incident,06/28/2013,06/28/2013,06/28/2013 11:30:26 PM,06/28/2013 11:32:57 PM,06/28/2013 11:34:09 PM,06/28/2013 11:36:24 PM,06/28/2013 11:46:28 PM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/29/2013 12:01:29 AM,ILLINOIS ST/16TH ST,SF,94158,B03,8,2374,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Potrero Hill,"(37.7669579113914, -122.388164137128)",131790462-94 -160311906,KM02,16012174,Medical Incident,01/31/2016,01/31/2016,01/31/2016 01:46:20 PM,01/31/2016 01:46:20 PM,01/31/2016 01:47:24 PM,01/31/2016 01:48:15 PM,01/31/2016 01:56:41 PM,01/31/2016 02:19:15 PM,01/31/2016 02:32:24 PM,Code 2 Transport,01/31/2016 02:59:22 PM,POST ST/HYDE ST,San Francisco,94109,B04,3,1641,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7872452103353, -122.41663869807)",160311906-KM02 -123110120,T08,12103427,Gas Leak (Natural and LP Gases),11/06/2012,11/06/2012,11/06/2012 09:34:23 AM,11/06/2012 09:35:47 AM,11/06/2012 09:35:56 AM,11/06/2012 09:36:34 AM,11/06/2012 09:40:37 AM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/06/2012 09:53:36 AM,800 Block of HARRISON ST,SF,94107,B03,8,2243,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7798728838566, -122.400680947527)",123110120-T08 -140920071,77,14030821,Traffic Collision,04/02/2014,04/01/2014,04/02/2014 07:49:14 AM,04/02/2014 07:50:26 AM,04/02/2014 07:50:41 AM,04/02/2014 07:50:47 AM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,Other,04/02/2014 08:04:34 AM,MCALLISTER ST/VAN NESS AV,SAN FRANCISCO,94102,B02,36,3164,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",140920071-77 -111930359,T19,11063865,Alarms,07/12/2011,07/12/2011,07/12/2011 09:50:58 PM,07/12/2011 09:51:50 PM,07/12/2011 09:51:57 PM,07/12/2011 09:56:27 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,Other,04/25/2016 02:03:42 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,false,,1,TRUCK,4,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",111930359-T19 -160451383,AM08,16018093,Medical Incident,02/14/2016,02/14/2016,02/14/2016 11:36:13 AM,02/14/2016 11:36:13 AM,02/14/2016 11:36:41 AM,02/14/2016 11:37:11 AM,02/14/2016 11:41:42 AM,02/14/2016 11:47:53 AM,02/14/2016 11:54:56 AM,Code 2 Transport,02/14/2016 12:34:20 PM,MISSION ST/CESAR CHAVEZ ST,San Francisco,94110,B06,11,5613,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7481656900206, -122.418221171762)",160451383-AM08 -112610347,E15,11086292,Alarms,09/18/2011,09/18/2011,09/18/2011 09:42:10 PM,09/18/2011 09:42:11 PM,09/18/2011 09:42:32 PM,04/25/2016 02:02:36 PM,09/18/2011 09:44:16 PM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,No Merit,09/18/2011 09:46:31 PM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",112610347-E15 -160731164,KM04,16028955,Medical Incident,03/13/2016,03/13/2016,03/13/2016 12:20:32 PM,03/13/2016 12:20:32 PM,03/13/2016 12:21:24 PM,03/13/2016 12:21:52 PM,03/13/2016 12:24:36 PM,03/13/2016 12:41:29 PM,03/13/2016 01:03:32 PM,Code 2 Transport,03/13/2016 01:44:02 PM,ECKER ST/STEVENSON ST,San Francisco,94105,B03,13,2143,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7899705030754, -122.399350054959)",160731164-KM04 -111790347,AP,11059257,Other,06/28/2011,06/28/2011,06/28/2011 10:42:18 PM,06/28/2011 10:42:18 PM,06/28/2011 10:42:18 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Fire,06/28/2011 10:42:36 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",111790347-AP -160102124,87,16004087,Medical Incident,01/10/2016,01/10/2016,01/10/2016 03:24:48 PM,01/10/2016 03:25:47 PM,01/10/2016 03:28:07 PM,01/10/2016 03:28:16 PM,01/10/2016 03:41:16 PM,01/10/2016 04:05:17 PM,01/10/2016 04:26:52 PM,Code 3 Transport,01/10/2016 05:16:34 PM,NORTH POINT ST/VAN NESS AV,San Francisco,94109,B04,28,3143,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",160102124-87 -131930176,93,13065646,Medical Incident,07/12/2013,07/12/2013,07/12/2013 01:55:08 PM,07/12/2013 01:55:08 PM,07/12/2013 01:56:55 PM,07/12/2013 01:57:01 PM,07/12/2013 01:58:58 PM,07/12/2013 02:16:41 PM,07/12/2013 02:49:31 PM,Code 2 Transport,07/12/2013 03:30:43 PM,26TH AV/GEARY BL,SF,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7800379523626, -122.485807574821)",131930176-93 -133540050,55,13120156,Medical Incident,12/20/2013,12/19/2013,12/20/2013 04:42:56 AM,12/20/2013 04:45:11 AM,12/20/2013 04:52:56 AM,04/25/2016 01:49:10 PM,12/20/2013 04:56:41 AM,12/20/2013 05:04:24 AM,12/20/2013 05:13:26 AM,Code 2 Transport,12/20/2013 05:27:15 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",133540050-55 -122130332,E36,12070826,Structure Fire,07/31/2012,07/31/2012,07/31/2012 08:26:43 PM,07/31/2012 08:26:43 PM,07/31/2012 08:26:54 PM,07/31/2012 08:27:52 PM,07/31/2012 08:29:23 PM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Other,07/31/2012 08:39:15 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",122130332-E36 -113280113,65,11108826,Medical Incident,11/24/2011,11/24/2011,11/24/2011 10:39:08 AM,11/24/2011 10:40:24 AM,11/24/2011 10:40:57 AM,04/25/2016 02:01:29 PM,11/24/2011 10:46:08 AM,11/24/2011 10:57:54 AM,11/24/2011 11:06:06 AM,Code 2 Transport,11/24/2011 11:33:22 AM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7946646538154, -122.404767635853)",113280113-65 -140960180,82,14032302,Medical Incident,04/06/2014,04/06/2014,04/06/2014 11:57:46 AM,04/06/2014 12:00:37 PM,04/06/2014 12:00:51 PM,04/06/2014 12:01:01 PM,04/06/2014 12:13:46 PM,04/06/2014 12:20:48 PM,04/06/2014 12:36:49 PM,Code 2 Transport,04/06/2014 01:01:35 PM,1400 Block of HALIBUT CT,TREASURE ISLAN,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",140960180-82 -132820313,96,13096071,Medical Incident,10/09/2013,10/09/2013,10/09/2013 06:18:57 PM,10/09/2013 06:22:12 PM,10/09/2013 06:22:29 PM,10/09/2013 06:22:47 PM,10/09/2013 06:26:39 PM,10/09/2013 06:49:04 PM,10/09/2013 07:11:03 PM,Code 2 Transport,10/09/2013 07:28:48 PM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",132820313-96 -140270190,E15,14009204,Medical Incident,01/27/2014,01/27/2014,01/27/2014 01:30:50 PM,01/27/2014 01:32:32 PM,01/27/2014 01:33:39 PM,01/27/2014 01:36:06 PM,01/27/2014 01:36:28 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/27/2014 01:49:20 PM,1200 Block of PLYMOUTH AVE,SF,94112,B09,15,8474,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7246916380621, -122.456361161182)",140270190-E15 -131080294,E26,13036402,Medical Incident,04/18/2013,04/18/2013,04/18/2013 06:38:39 PM,04/18/2013 06:40:13 PM,04/18/2013 06:44:49 PM,04/18/2013 06:47:15 PM,04/18/2013 06:51:24 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/18/2013 07:01:16 PM,700 Block of CHENERY ST,SF,94131,B09,26,8176,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Glen Park,"(37.7346541377753, -122.4351506789)",131080294-E26 -102480076,B02,10078275,Structure Fire,09/05/2010,09/04/2010,09/05/2010 06:47:05 AM,09/05/2010 06:48:10 AM,09/05/2010 06:48:26 AM,09/05/2010 06:49:57 AM,09/05/2010 06:50:51 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 06:55:51 AM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,false,,1,CHIEF,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",102480076-B02 -122650022,54,12087416,Medical Incident,09/21/2012,09/20/2012,09/21/2012 01:42:23 AM,09/21/2012 01:43:40 AM,09/21/2012 01:44:05 AM,09/21/2012 01:44:36 AM,09/21/2012 01:47:18 AM,09/21/2012 01:58:23 AM,09/21/2012 02:02:44 AM,Code 2 Transport,09/21/2012 02:27:45 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",122650022-54 -122910123,E35,12096295,Structure Fire,10/17/2012,10/17/2012,10/17/2012 10:02:00 AM,10/17/2012 10:02:01 AM,10/17/2012 10:02:12 AM,10/17/2012 10:02:22 AM,10/17/2012 10:04:39 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 10:05:03 AM,MARKET ST/STEUART ST,SF,94105,B01,13,1112,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",122910123-E35 -160570755,62,16022655,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:20:11 AM,02/26/2016 08:20:11 AM,02/26/2016 09:28:55 AM,02/26/2016 09:29:12 AM,02/26/2016 09:46:37 AM,02/26/2016 10:21:29 AM,02/26/2016 10:46:04 AM,Code 2 Transport,02/26/2016 11:20:18 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160570755-62 -113410307,KM14,11113147,Medical Incident,12/07/2011,12/07/2011,12/07/2011 05:30:04 PM,12/07/2011 05:30:55 PM,12/07/2011 05:32:03 PM,12/07/2011 05:35:05 PM,12/07/2011 05:37:55 PM,12/07/2011 05:48:25 PM,12/07/2011 05:59:55 PM,Code 2 Transport,12/07/2011 06:33:17 PM,100 Block of NAPLES ST,SF,94112,B09,43,6142,3,3,3,false,,1,PRIVATE,2,9,11,Excelsior,"(37.7263264472922, -122.427153217062)",113410307-KM14 -102400107,E03,10075644,Medical Incident,08/28/2010,08/28/2010,08/28/2010 10:03:48 AM,08/28/2010 10:04:03 AM,08/28/2010 10:04:33 AM,04/25/2016 02:08:52 PM,08/28/2010 10:08:11 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Other,08/28/2010 10:14:36 AM,GEARY ST/LEAVENWORTH ST,SF,94109,B04,3,1543,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",102400107-E03 -160374314,AM08,16015005,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:51:45 PM,02/06/2016 11:54:35 PM,02/06/2016 11:54:46 PM,02/06/2016 11:55:52 PM,02/06/2016 11:57:15 PM,02/07/2016 12:07:21 AM,02/07/2016 12:26:15 AM,Code 2 Transport,02/07/2016 12:59:49 AM,HARRISON ST/HAWTHORNE ST,San Francisco,94107,B03,8,2151,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7834407522825, -122.396262402533)",160374314-AM08 -130030319,E03,13001124,Medical Incident,01/03/2013,01/03/2013,01/03/2013 06:51:01 PM,01/03/2013 06:51:50 PM,01/03/2013 06:52:04 PM,01/03/2013 06:53:03 PM,01/03/2013 06:55:21 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 06:57:13 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",130030319-E03 -140730121,B08,14024594,Alarms,03/14/2014,03/14/2014,03/14/2014 10:46:29 AM,03/14/2014 10:47:40 AM,03/14/2014 10:47:54 AM,03/14/2014 10:48:13 AM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Fire,03/14/2014 10:59:53 AM,0 Block of ZOO RD,SAN FRANCISCO,94132,B08,19,8716,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",140730121-B08 -113600002,E22,11119490,Medical Incident,12/26/2011,12/25/2011,12/26/2011 12:04:55 AM,12/26/2011 12:05:38 AM,12/26/2011 12:05:57 AM,12/26/2011 12:06:32 AM,12/26/2011 12:10:00 AM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 12:27:20 AM,0 Block of LOCKSLEY AVE,SF,94122,B08,22,7331,3,3,3,false,,1,ENGINE,1,8,7,Inner Sunset,"(37.7592202975893, -122.46331160715)",113600002-E22 -130830059,66,13027664,Medical Incident,03/24/2013,03/23/2013,03/24/2013 05:00:38 AM,03/24/2013 05:02:58 AM,03/24/2013 05:13:10 AM,03/24/2013 05:13:36 AM,03/24/2013 05:25:24 AM,03/24/2013 05:31:57 AM,03/24/2013 05:46:30 AM,Code 3 Transport,03/24/2013 06:21:40 AM,2000 Block of 19TH AVE,SF,94116,B08,40,7417,3,2,2,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7495857189023, -122.475966067526)",130830059-66 -110400339,55,11013364,Medical Incident,02/09/2011,02/09/2011,02/09/2011 07:30:40 PM,02/09/2011 07:31:34 PM,02/09/2011 07:32:31 PM,02/09/2011 07:32:38 PM,02/09/2011 07:39:32 PM,02/09/2011 07:47:49 PM,02/09/2011 08:13:23 PM,Code 2 Transport,02/09/2011 08:32:28 PM,CLEMENTINA ST/5TH ST,SF,94103,B03,1,2244,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7806990485862, -122.403920882808)",110400339-55 -122830345,AM10,12093793,Traffic Collision,10/09/2012,10/09/2012,10/09/2012 10:24:16 PM,10/09/2012 10:25:58 PM,10/09/2012 10:28:07 PM,10/09/2012 10:29:16 PM,10/09/2012 10:43:14 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Patient Declined Transport,10/09/2012 10:51:50 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,2,2,2,false,Non Life-threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",122830345-AM10 -110030129,RS1,11000935,Medical Incident,01/03/2011,01/03/2011,01/03/2011 10:51:36 AM,01/03/2011 10:52:44 AM,01/03/2011 10:53:58 AM,01/03/2011 10:54:30 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 10:59:37 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7811458612596, -122.409026046516)",110030129-RS1 -123350394,T01,12111490,Structure Fire,11/30/2012,11/30/2012,11/30/2012 07:40:52 PM,11/30/2012 07:40:52 PM,11/30/2012 07:41:04 PM,11/30/2012 07:41:51 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,11/30/2012 07:44:16 PM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",123350394-T01 -160763714,55,16030345,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:36:39 PM,03/16/2016 08:37:51 PM,03/16/2016 08:40:10 PM,03/16/2016 08:40:30 PM,03/16/2016 08:58:19 PM,03/16/2016 09:10:38 PM,03/16/2016 09:31:01 PM,Code 2 Transport,03/16/2016 10:12:09 PM,800 Block of FONT BLVD,San Francisco,94132,B08,19,868,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",160763714-55 -110200207,E01,11006614,Medical Incident,01/20/2011,01/20/2011,01/20/2011 12:49:49 PM,01/20/2011 12:52:31 PM,01/20/2011 12:55:15 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 01:00:48 PM,0 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7796475431341, -122.411385962592)",110200207-E01 -111350084,54,11044817,Medical Incident,05/15/2011,05/14/2011,05/15/2011 06:38:34 AM,05/15/2011 06:39:09 AM,05/15/2011 06:39:59 AM,04/25/2016 02:04:37 PM,05/15/2011 06:50:50 AM,05/15/2011 07:10:06 AM,05/15/2011 07:17:22 AM,Code 2 Transport,05/15/2011 07:55:52 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111350084-54 -120040187,93,12001407,Medical Incident,01/04/2012,01/04/2012,01/04/2012 01:13:04 PM,01/04/2012 01:13:33 PM,01/04/2012 01:15:25 PM,01/04/2012 01:15:51 PM,01/04/2012 01:30:11 PM,01/04/2012 02:00:16 PM,01/04/2012 02:23:10 PM,Code 2 Transport,01/04/2012 03:16:05 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",120040187-93 -121400129,KM11,12046452,Medical Incident,05/19/2012,05/19/2012,05/19/2012 10:12:49 AM,05/19/2012 10:12:49 AM,05/19/2012 10:13:40 AM,05/19/2012 10:14:21 AM,05/19/2012 10:18:55 AM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/19/2012 10:20:12 AM,100 Block of 26TH AVE,SF,94121,B07,14,7217,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7866268330609, -122.486350477082)",121400129-KM11 -130130184,E12,13004424,Medical Incident,01/13/2013,01/13/2013,01/13/2013 11:18:32 AM,01/13/2013 11:20:54 AM,01/13/2013 11:21:27 AM,01/13/2013 11:22:21 AM,01/13/2013 11:23:48 AM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,No Merit,01/13/2013 11:28:51 AM,PARNASSUS AV/CLAYTON ST,SF,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7651387353822, -122.44763462758)",130130184-E12 -121430259,E11,12047599,Structure Fire,05/22/2012,05/22/2012,05/22/2012 04:59:35 PM,05/22/2012 05:01:36 PM,05/22/2012 05:02:18 PM,05/22/2012 05:03:12 PM,05/22/2012 05:06:37 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Other,05/22/2012 05:13:11 PM,2800 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,true,Fire,1,ENGINE,6,6,9,Mission,"(37.7527125370932, -122.409592912103)",121430259-E11 -133230386,E06,13109808,Alarms,11/19/2013,11/19/2013,11/19/2013 09:04:17 PM,11/19/2013 09:08:24 PM,11/19/2013 09:10:53 PM,04/25/2016 01:49:41 PM,11/19/2013 09:14:59 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 09:18:30 PM,100 Block of HARTFORD ST,SF,94114,B05,6,5417,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7601511990346, -122.433893032003)",133230386-E06 -120520365,68,12017339,Medical Incident,02/21/2012,02/21/2012,02/21/2012 10:39:01 PM,02/21/2012 10:39:27 PM,02/21/2012 10:40:14 PM,02/21/2012 10:40:27 PM,02/21/2012 10:49:39 PM,04/25/2016 02:00:01 PM,04/25/2016 02:00:01 PM,Other,02/21/2012 11:28:27 PM,2300 Block of 24TH AVE,SF,94116,B08,40,7461,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",120520365-68 -123190001,E39,12105918,Alarms,11/13/2012,11/13/2012,11/13/2012 11:58:31 PM,11/14/2012 12:00:39 AM,11/14/2012 12:01:08 AM,11/14/2012 12:03:16 AM,11/14/2012 12:06:48 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/14/2012 12:16:33 AM,100 Block of SANTA ANA AVE,SF,94127,B08,39,8556,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7339902916618, -122.467976795247)",123190001-E39 -122670247,KM11,12088275,Medical Incident,09/23/2012,09/23/2012,09/23/2012 04:37:26 PM,09/23/2012 04:40:43 PM,09/23/2012 04:41:54 PM,09/23/2012 04:49:30 PM,09/23/2012 05:09:42 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Unable to Locate,09/23/2012 05:16:53 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",122670247-KM11 -123440268,87,12115064,Medical Incident,12/09/2012,12/09/2012,12/09/2012 05:05:23 PM,12/09/2012 05:07:25 PM,12/09/2012 05:08:30 PM,12/09/2012 05:08:46 PM,12/09/2012 05:14:10 PM,12/09/2012 05:25:13 PM,12/09/2012 05:38:19 PM,Code 2 Transport,12/09/2012 05:59:31 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",123440268-87 -140960321,RC3,14032432,Medical Incident,04/06/2014,04/06/2014,04/06/2014 07:30:52 PM,04/06/2014 07:32:25 PM,04/06/2014 07:32:45 PM,04/06/2014 07:34:43 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,Code 2 Transport,04/06/2014 07:34:50 PM,0 Block of TURK ST,SAN FRANCISCO,94102,B03,1,1365,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",140960321-RC3 -131740026,87,13058907,Medical Incident,06/23/2013,06/22/2013,06/23/2013 01:57:26 AM,06/23/2013 02:00:03 AM,06/23/2013 02:00:40 AM,06/23/2013 02:01:11 AM,06/23/2013 02:23:09 AM,06/23/2013 02:27:02 AM,06/23/2013 02:31:58 AM,Code 2 Transport,06/23/2013 03:08:43 AM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7917657997993, -122.407489250227)",131740026-87 -123430048,T03,12114509,Alarms,12/08/2012,12/07/2012,12/08/2012 03:16:04 AM,12/08/2012 03:17:38 AM,12/08/2012 03:17:56 AM,12/08/2012 03:20:13 AM,12/08/2012 03:21:42 AM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/08/2012 03:28:25 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",123430048-T03 -112010004,E18,11066132,Medical Incident,07/20/2011,07/19/2011,07/20/2011 12:18:20 AM,07/20/2011 12:19:02 AM,07/20/2011 12:20:30 AM,07/20/2011 12:22:37 AM,07/20/2011 12:24:24 AM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/20/2011 12:35:25 AM,2300 Block of TARAVAL ST,SF,94116,B08,18,7546,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7423117225804, -122.491226137541)",112010004-E18 -111090250,61,11036055,Medical Incident,04/19/2011,04/19/2011,04/19/2011 05:06:50 PM,04/19/2011 05:09:14 PM,04/19/2011 05:10:55 PM,04/19/2011 05:11:39 PM,04/19/2011 05:22:41 PM,04/19/2011 05:45:07 PM,04/19/2011 06:32:09 PM,Code 2 Transport,04/19/2011 06:47:24 PM,0 Block of ARNOLD AVE,SF,94110,B06,32,5644,2,2,2,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.7345537872053, -122.419581868301)",111090250-61 -131700195,E16,13057728,Medical Incident,06/19/2013,06/19/2013,06/19/2013 01:35:05 PM,06/19/2013 01:35:39 PM,06/19/2013 01:36:46 PM,06/19/2013 01:37:50 PM,06/19/2013 01:39:35 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/19/2013 01:46:26 PM,FILLMORE ST/BAY ST,SF,94123,B04,16,3555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8026284241178, -122.436693347158)",131700195-E16 -102490044,E33,10078573,Medical Incident,09/06/2010,09/05/2010,09/06/2010 04:27:12 AM,09/06/2010 04:27:39 AM,09/06/2010 04:27:51 AM,09/06/2010 04:29:55 AM,09/06/2010 04:32:53 AM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Other,09/06/2010 04:42:28 AM,0 Block of RICE ST,SF,94112,B09,33,8357,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7083648058395, -122.457265666619)",102490044-E33 -140020091,89,14000597,Medical Incident,01/02/2014,01/01/2014,01/02/2014 07:45:45 AM,01/02/2014 07:46:11 AM,01/02/2014 07:46:39 AM,01/02/2014 07:49:14 AM,01/02/2014 07:57:21 AM,01/02/2014 08:25:04 AM,01/02/2014 08:55:31 AM,Code 2 Transport,01/02/2014 09:13:16 AM,400 Block of FRANCONIA ST,SF,94110,B10,32,5722,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7427331584639, -122.408199890691)",140020091-89 -160040689,71,16001496,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:54:43 AM,01/04/2016 07:54:43 AM,01/04/2016 07:56:33 AM,01/04/2016 07:56:44 AM,01/04/2016 08:02:53 AM,01/04/2016 08:13:35 AM,01/04/2016 08:21:58 AM,Code 2 Transport,01/04/2016 09:13:50 AM,0 Block of COLUMBIA SQUARE ST,San Francisco,94103,B03,1,2253,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7772769755923, -122.405617030416)",160040689-71 -140730187,88,14024650,Medical Incident,03/14/2014,03/14/2014,03/14/2014 01:21:48 PM,03/14/2014 01:23:23 PM,03/14/2014 01:25:25 PM,03/14/2014 01:26:13 PM,03/14/2014 01:37:11 PM,03/14/2014 02:00:25 PM,03/14/2014 02:10:49 PM,Code 2 Transport,03/14/2014 02:49:38 PM,400 Block of 2ND AVE,SAN FRANCISCO,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7802449131001, -122.459999104399)",140730187-88 -120330140,E37,12010865,Structure Fire,02/02/2012,02/02/2012,02/02/2012 11:39:37 AM,02/02/2012 11:42:10 AM,02/02/2012 11:43:02 AM,02/02/2012 11:44:35 AM,02/02/2012 11:50:44 AM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/02/2012 11:50:46 AM,500 Block of MISSION ROCK ST,SF,94158,B03,8,2366,3,3,3,false,Fire,1,ENGINE,5,3,6,Mission Bay,"(37.7728261278708, -122.390539901912)",120330140-E37 -140520026,AM18,14017487,Medical Incident,02/21/2014,02/20/2014,02/21/2014 02:19:09 AM,02/21/2014 02:20:59 AM,02/21/2014 02:21:11 AM,02/21/2014 02:21:55 AM,02/21/2014 02:32:05 AM,02/21/2014 02:50:59 AM,02/21/2014 02:56:35 AM,Code 2 Transport,02/21/2014 03:36:02 AM,MISSION ST/CORTLAND AV,SF,94110,B06,32,5626,C,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7410274087506, -122.422840577347)",140520026-AM18 -140300324,RS1,14010326,Structure Fire,01/30/2014,01/30/2014,01/30/2014 08:11:16 PM,01/30/2014 08:11:58 PM,01/30/2014 08:12:36 PM,01/30/2014 08:14:53 PM,01/30/2014 08:16:30 PM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/30/2014 08:18:57 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Alarm,1,RESCUE SQUAD,5,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",140300324-RS1 -160540961,82,16021508,Medical Incident,02/23/2016,02/23/2016,02/23/2016 09:26:24 AM,02/23/2016 09:28:10 AM,02/23/2016 09:28:32 AM,02/23/2016 09:29:15 AM,02/23/2016 09:36:59 AM,02/23/2016 09:42:20 AM,02/23/2016 09:57:52 AM,Code 2 Transport,02/23/2016 10:40:05 AM,0 Block of WASHBURN ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",160540961-82 -112290169,E07,11075660,Medical Incident,08/17/2011,08/17/2011,08/17/2011 12:56:57 PM,08/17/2011 12:57:14 PM,08/17/2011 12:58:15 PM,08/17/2011 12:59:47 PM,08/17/2011 01:00:51 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 01:06:28 PM,2300 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",112290169-E07 -120110028,89,12003689,Medical Incident,01/11/2012,01/10/2012,01/11/2012 02:51:01 AM,01/11/2012 02:51:24 AM,01/11/2012 02:51:53 AM,01/11/2012 02:52:56 AM,01/11/2012 02:55:19 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,No Merit,01/11/2012 03:04:55 AM,600 Block of SUTTER ST,SF,94102,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",120110028-89 -110120163,58,11003963,Medical Incident,01/12/2011,01/12/2011,01/12/2011 12:11:26 PM,01/12/2011 12:12:59 PM,01/12/2011 12:13:14 PM,01/12/2011 12:13:31 PM,01/12/2011 12:27:51 PM,01/12/2011 01:06:19 PM,01/12/2011 01:19:51 PM,Code 2 Transport,01/12/2011 01:55:46 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",110120163-58 -160381149,75,16015139,Medical Incident,02/07/2016,02/07/2016,02/07/2016 09:25:35 AM,02/07/2016 09:25:35 AM,02/07/2016 09:25:54 AM,02/07/2016 09:26:05 AM,02/07/2016 09:30:21 AM,02/07/2016 09:46:46 AM,02/07/2016 10:03:13 AM,Code 2 Transport,02/07/2016 10:34:32 AM,5TH ST/HOWARD ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160381149-75 -160873233,AM14,16034724,Traffic Collision,03/27/2016,03/27/2016,03/27/2016 08:27:38 PM,03/27/2016 08:28:19 PM,03/27/2016 08:29:17 PM,03/27/2016 08:29:48 PM,03/27/2016 08:34:21 PM,03/27/2016 09:03:26 PM,03/27/2016 09:28:48 PM,Code 2 Transport,03/27/2016 10:09:35 PM,FULTON ST/MASONIC AV,San Francisco,94117,B05,21,4463,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",160873233-AM14 -110940040,89,11031091,Medical Incident,04/04/2011,04/03/2011,04/04/2011 04:00:14 AM,04/04/2011 04:05:24 AM,04/04/2011 04:05:56 AM,04/04/2011 04:08:25 AM,04/04/2011 04:10:38 AM,04/04/2011 04:40:22 AM,04/04/2011 04:50:11 AM,Code 2 Transport,04/04/2011 05:17:51 AM,1200 Block of HAIGHT ST,SF,94117,B05,21,4353,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7706078154142, -122.442665734926)",110940040-89 -130070053,E42,13002270,Structure Fire,01/07/2013,01/06/2013,01/07/2013 06:24:28 AM,01/07/2013 06:25:01 AM,01/07/2013 06:25:36 AM,01/07/2013 06:27:48 AM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/07/2013 06:32:34 AM,900 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,Alarm,1,ENGINE,7,9,10,Visitacion Valley,"(37.7106642055694, -122.408348294705)",130070053-E42 -122280113,E20,12075494,Medical Incident,08/15/2012,08/15/2012,08/15/2012 09:57:54 AM,08/15/2012 09:58:51 AM,08/15/2012 09:59:57 AM,08/15/2012 10:01:15 AM,08/15/2012 10:02:29 AM,04/25/2016 01:57:13 PM,04/25/2016 01:57:13 PM,No Merit,08/15/2012 10:17:30 AM,400 Block of DELLBROOK AVE,SF,94131,B08,20,5364,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7540367145417, -122.453946978856)",122280113-E20 -160853418,68,16033931,Medical Incident,03/25/2016,03/25/2016,03/25/2016 07:55:04 PM,03/25/2016 07:55:04 PM,03/25/2016 07:55:15 PM,03/25/2016 07:55:25 PM,03/25/2016 08:01:25 PM,03/25/2016 08:29:55 PM,03/25/2016 08:38:36 PM,Code 2 Transport,03/25/2016 09:19:59 PM,800 Block of SHOTWELL ST,San Francisco,94110,B06,7,544,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7548296619064, -122.415465689137)",160853418-68 -112250228,T09,11074363,Structure Fire,08/13/2011,08/13/2011,08/13/2011 02:18:53 PM,08/13/2011 02:18:54 PM,08/13/2011 02:19:00 PM,08/13/2011 02:20:46 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 02:22:30 PM,25TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,false,,1,TRUCK,2,10,10,Potrero Hill,"(37.7521940654679, -122.398452381695)",112250228-T09 -123020243,E31,12100211,Citizen Assist / Service Call,10/28/2012,10/28/2012,10/28/2012 02:59:40 PM,10/28/2012 03:01:14 PM,10/28/2012 03:01:35 PM,10/28/2012 03:02:42 PM,10/28/2012 03:07:04 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 03:13:25 PM,500 Block of 5TH AVE,SF,94118,B07,31,7123,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7782074967778, -122.463077569875)",123020243-E31 -123020252,KM10,12100221,Medical Incident,10/28/2012,10/28/2012,10/28/2012 03:41:58 PM,10/28/2012 03:42:24 PM,10/28/2012 03:43:32 PM,10/28/2012 03:44:05 PM,10/28/2012 03:51:43 PM,10/28/2012 03:58:27 PM,10/28/2012 04:05:14 PM,Code 2 Transport,10/28/2012 04:24:07 PM,700 Block of 18TH AVE,SF,94121,B07,31,7166,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",123020252-KM10 -110910450,E07,11030372,Medical Incident,04/01/2011,04/01/2011,04/01/2011 11:52:59 PM,04/01/2011 11:57:44 PM,04/01/2011 11:57:55 PM,04/01/2011 11:59:14 PM,04/02/2011 12:00:56 AM,04/25/2016 02:05:19 PM,04/25/2016 02:05:19 PM,No Merit,04/02/2011 12:07:43 AM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",110910450-E07 -160920404,72,16036312,Medical Incident,04/01/2016,03/31/2016,04/01/2016 05:03:40 AM,04/01/2016 05:05:07 AM,04/01/2016 05:05:28 AM,04/01/2016 05:05:42 AM,04/01/2016 05:12:05 AM,04/01/2016 05:33:53 AM,04/01/2016 05:49:22 AM,Code 2 Transport,04/01/2016 06:28:51 AM,3800 Block of DIVISADERO ST,San Francisco,94123,B04,16,4214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8051007679396, -122.443956087143)",160920404-72 -113070151,65,11101959,Medical Incident,11/03/2011,11/03/2011,11/03/2011 11:37:57 AM,11/03/2011 11:38:20 AM,11/03/2011 11:38:41 AM,11/03/2011 11:38:58 AM,11/03/2011 11:46:38 AM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/03/2011 11:50:44 AM,1000 Block of WISCONSIN ST,SF,94107,B10,37,2565,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7542876781547, -122.398580716544)",113070151-65 -102850071,E44,10090666,Traffic Collision,10/12/2010,10/11/2010,10/12/2010 07:29:58 AM,10/12/2010 07:30:19 AM,10/12/2010 07:31:18 AM,10/12/2010 07:32:32 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 07:52:51 AM,100 Block of 3RD ST,SF,94105,B10,44,6544,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",102850071-E44 -160473134,78,16019062,Medical Incident,02/16/2016,02/16/2016,02/16/2016 06:45:25 PM,02/16/2016 06:47:04 PM,02/16/2016 06:47:31 PM,02/16/2016 06:47:44 PM,02/16/2016 07:02:41 PM,02/16/2016 07:16:28 PM,02/16/2016 07:41:55 PM,Code 2 Transport,02/16/2016 08:09:51 PM,4100 Block of 24TH ST,San Francisco,94114,B06,24,5521,2,3,3,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7511737565624, -122.435188201994)",160473134-78 -140710187,77,14023960,Medical Incident,03/12/2014,03/12/2014,03/12/2014 12:06:52 PM,03/12/2014 12:07:15 PM,03/12/2014 12:07:23 PM,03/12/2014 12:07:36 PM,03/12/2014 12:15:29 PM,03/12/2014 12:28:35 PM,03/12/2014 12:54:18 PM,Code 2 Transport,03/12/2014 01:30:35 PM,5100 Block of MISSION ST,SAN FRANCISCO,94112,B09,43,6175,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.716127093001, -122.441352016549)",140710187-77 -123460017,E43,12115564,Medical Incident,12/11/2012,12/10/2012,12/11/2012 12:34:04 AM,12/11/2012 12:35:33 AM,12/11/2012 12:36:16 AM,12/11/2012 12:38:30 AM,12/11/2012 12:40:18 AM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/11/2012 12:50:04 AM,700 Block of ITALY AVE,SF,94112,B09,43,6136,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7156619177228, -122.433494545632)",123460017-E43 -110250103,KM05,11008157,Medical Incident,01/25/2011,01/25/2011,01/25/2011 08:29:33 AM,01/25/2011 08:30:01 AM,01/25/2011 08:30:47 AM,01/25/2011 08:33:34 AM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/25/2011 08:39:21 AM,600 Block of LOS PALMOS DR,SF,94127,B09,39,8524,3,E,3,false,,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.735094064772, -122.456695545364)",110250103-KM05 -130870189,E33,13029018,Medical Incident,03/28/2013,03/28/2013,03/28/2013 01:20:26 PM,03/28/2013 01:20:59 PM,03/28/2013 01:21:18 PM,03/28/2013 01:22:09 PM,03/28/2013 01:24:41 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 01:31:44 PM,0 Block of WHITTIER ST,SF,94112,B09,33,6214,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7093012444004, -122.447722961329)",130870189-E33 -160592780,AM08,16023645,Medical Incident,02/28/2016,02/28/2016,02/28/2016 07:04:21 PM,02/28/2016 07:04:40 PM,02/28/2016 07:05:16 PM,02/28/2016 07:05:35 PM,02/28/2016 07:24:16 PM,02/28/2016 07:26:24 PM,02/28/2016 07:38:22 PM,Code 2 Transport,02/28/2016 07:45:10 PM,1800 Block of WALLER ST,San Francisco,94122,B05,12,4552,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",160592780-AM08 -160520659,KM03,16020710,Medical Incident,02/21/2016,02/20/2016,02/21/2016 05:42:07 AM,02/21/2016 05:43:06 AM,02/21/2016 05:43:22 AM,02/21/2016 05:44:27 AM,02/21/2016 05:51:28 AM,02/21/2016 06:04:12 AM,02/21/2016 06:17:54 AM,Code 2 Transport,02/21/2016 06:41:53 AM,200 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8853,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",160520659-KM03 -121130055,94,12037411,Medical Incident,04/22/2012,04/21/2012,04/22/2012 03:03:51 AM,04/22/2012 03:04:32 AM,04/22/2012 03:05:06 AM,04/22/2012 03:09:46 AM,04/22/2012 03:21:53 AM,04/22/2012 03:50:33 AM,04/22/2012 04:38:37 AM,Code 2 Transport,04/22/2012 04:59:42 AM,200 Block of BYXBEE ST,SF,94132,B09,33,8431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7187698335106, -122.469914085582)",121130055-94 -160862816,KM11,16034275,Medical Incident,03/26/2016,03/26/2016,03/26/2016 05:47:46 PM,03/26/2016 05:47:46 PM,03/26/2016 05:57:38 PM,03/26/2016 05:58:29 PM,03/26/2016 06:07:00 PM,03/26/2016 06:22:14 PM,03/26/2016 06:36:37 PM,Code 2 Transport,03/26/2016 07:13:04 PM,1000 Block of PORTOLA DR,San Francisco,94127,B09,39,8572,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7404960254393, -122.458524519728)",160862816-KM11 -121130357,E42,12037676,Medical Incident,04/22/2012,04/22/2012,04/22/2012 10:56:52 PM,04/22/2012 10:58:00 PM,04/22/2012 10:59:35 PM,04/22/2012 11:01:48 PM,04/22/2012 11:04:01 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/22/2012 11:31:15 PM,300 Block of BRIDGEVIEW DR,SF,94124,B10,42,6447,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7325104794834, -122.398596100985)",121130357-E42 -123340018,KM07,12110832,Medical Incident,11/29/2012,11/28/2012,11/29/2012 12:55:03 AM,11/29/2012 12:56:48 AM,11/29/2012 01:07:43 AM,11/29/2012 01:08:08 AM,11/29/2012 01:17:10 AM,11/29/2012 01:41:51 AM,11/29/2012 01:54:47 AM,Code 2 Transport,11/29/2012 02:27:31 AM,1300 Block of INGALLS ST,SF,94124,B10,17,6572,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7304672300474, -122.382582263214)",123340018-KM07 -112090234,T05,11069046,Vehicle Fire,07/28/2011,07/28/2011,07/28/2011 03:31:41 PM,07/28/2011 03:31:57 PM,07/28/2011 03:32:32 PM,07/28/2011 03:33:56 PM,07/28/2011 03:37:11 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Other,07/28/2011 03:38:49 PM,1300 Block of GROVE ST,SF,94117,B05,21,4146,3,3,3,false,,1,TRUCK,2,5,5,Hayes Valley,"(37.7757652644923, -122.438812235858)",112090234-T05 -110650147,KM12,11021425,Medical Incident,03/06/2011,03/06/2011,03/06/2011 10:29:45 AM,03/06/2011 10:31:59 AM,03/06/2011 10:32:46 AM,03/06/2011 10:35:24 AM,03/06/2011 10:57:26 AM,03/06/2011 11:14:07 AM,03/06/2011 11:26:56 AM,Code 2 Transport,03/06/2011 11:58:35 AM,300 Block of 18TH AVE,SF,94121,B07,31,7164,1,1,2,false,,1,PRIVATE,1,7,1,Outer Richmond,"(37.7814031484353, -122.477238000486)",110650147-KM12 -140850191,84,14028635,Medical Incident,03/26/2014,03/26/2014,03/26/2014 01:18:20 PM,03/26/2014 01:19:04 PM,03/26/2014 01:19:46 PM,03/26/2014 01:22:01 PM,03/26/2014 01:28:44 PM,03/26/2014 01:53:03 PM,03/26/2014 02:18:29 PM,Code 2 Transport,03/26/2014 02:51:25 PM,1500 Block of 30TH AVE,SAN FRANCISCO,94122,B08,18,7535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7583769816242, -122.488651706287)",140850191-84 -140570404,E16,14019409,Medical Incident,02/26/2014,02/26/2014,02/26/2014 10:49:24 PM,02/26/2014 10:51:40 PM,02/26/2014 10:52:03 PM,02/26/2014 10:53:32 PM,02/26/2014 10:55:14 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Code 2 Transport,02/26/2014 11:02:46 PM,1900 Block of UNION ST,SF,94123,B04,16,3443,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.7976099463654, -122.431831857814)",140570404-E16 -160880492,AM02,16034826,Medical Incident,03/28/2016,03/27/2016,03/28/2016 06:24:04 AM,03/28/2016 06:24:04 AM,03/28/2016 06:24:51 AM,03/28/2016 06:25:41 AM,03/28/2016 06:33:46 AM,03/28/2016 06:45:12 AM,03/28/2016 07:00:59 AM,Code 2 Transport,03/28/2016 07:27:02 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.780906077687, -122.413401299155)",160880492-AM02 -113620145,E01,11120216,Alarms,12/28/2011,12/28/2011,12/28/2011 11:17:55 AM,12/28/2011 11:18:58 AM,12/28/2011 11:19:52 AM,12/28/2011 11:20:52 AM,12/28/2011 11:26:04 AM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 11:33:32 AM,100 Block of STOCKTON ST,SF,94108,B01,1,1323,3,3,3,true,,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7871003167622, -122.406426031165)",113620145-E01 -140990201,E51,14033443,Water Rescue,04/09/2014,04/09/2014,04/09/2014 01:06:54 PM,04/09/2014 01:08:04 PM,04/09/2014 01:09:06 PM,04/09/2014 01:10:28 PM,04/09/2014 01:15:04 PM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Fire,04/09/2014 01:32:42 PM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,SAN FRANCISCO,94129,B99,51,4632,3,3,3,true,Fire,1,ENGINE,2,7,2,Presidio,"(37.8066581989584, -122.47471662098)",140990201-E51 -133330132,93,13112916,Medical Incident,11/29/2013,11/29/2013,11/29/2013 11:53:03 AM,11/29/2013 11:54:18 AM,11/29/2013 11:55:00 AM,11/29/2013 11:55:37 AM,11/29/2013 12:00:20 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Against Medical Advice,11/29/2013 01:13:32 PM,1800 Block of GEARY BLVD,SF,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Western Addition,"(37.7840473873954, -122.433701277792)",133330132-93 -160482605,KM03,16019409,Medical Incident,02/17/2016,02/17/2016,02/17/2016 03:57:27 PM,02/17/2016 03:59:16 PM,02/17/2016 03:59:36 PM,02/17/2016 04:00:20 PM,02/17/2016 04:04:05 PM,02/17/2016 04:38:28 PM,02/17/2016 04:55:15 PM,Code 2 Transport,02/17/2016 05:42:13 PM,1300 Block of 24TH AVE,San Francisco,94122,B08,22,7451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7623920631346, -122.48248639415)",160482605-KM03 -160520090,76,16020649,Medical Incident,02/21/2016,02/20/2016,02/21/2016 12:30:41 AM,02/21/2016 12:30:41 AM,02/21/2016 12:30:41 AM,02/21/2016 12:30:41 AM,02/21/2016 12:30:41 AM,02/21/2016 12:39:30 AM,02/21/2016 12:47:59 AM,Code 2 Transport,02/21/2016 12:56:55 AM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160520090-76 -103220166,KM04,10103188,Medical Incident,11/18/2010,11/18/2010,11/18/2010 01:07:50 PM,11/18/2010 01:09:40 PM,11/18/2010 01:10:18 PM,11/18/2010 01:12:09 PM,11/18/2010 01:13:42 PM,11/18/2010 01:25:30 PM,11/18/2010 01:27:34 PM,Code 2 Transport,11/18/2010 01:41:11 PM,HYDE ST/ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",103220166-KM04 -110240237,E38,11007906,Administrative,01/24/2011,01/24/2011,01/24/2011 01:44:36 PM,01/24/2011 01:44:58 PM,01/24/2011 01:45:09 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,04/25/2016 02:06:26 PM,600 Block of PRESIDIO AVE,SF,94115,B05,10,4411,3,3,3,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7858275651586, -122.446584417888)",110240237-E38 -160060569,78,16002283,Medical Incident,01/06/2016,01/05/2016,01/06/2016 07:24:10 AM,01/06/2016 07:25:34 AM,01/06/2016 07:26:14 AM,01/06/2016 07:26:43 AM,01/06/2016 07:34:58 AM,01/06/2016 07:53:15 AM,01/06/2016 08:15:58 AM,Code 2 Transport,01/06/2016 09:00:30 AM,0 Block of OCEAN AVE,San Francisco,94112,B09,43,6121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7237942596577, -122.435907357723)",160060569-78 -133380325,E11,13114673,Alarms,12/04/2013,12/04/2013,12/04/2013 07:57:57 PM,12/04/2013 07:59:02 PM,12/04/2013 07:59:09 PM,12/04/2013 08:00:36 PM,12/04/2013 08:02:44 PM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 08:13:00 PM,200 Block of PRECITA AVE,SF,94110,B06,11,5664,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7473189471178, -122.414189809933)",133380325-E11 -140060244,T19,14002172,Administrative,01/06/2014,01/06/2014,01/06/2014 02:24:08 PM,01/06/2014 02:24:10 PM,01/06/2014 02:24:58 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 02:25:55 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,,1,TRUCK,1,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",140060244-T19 -160731503,KM13,16028984,Medical Incident,03/13/2016,03/13/2016,03/13/2016 01:59:09 PM,03/13/2016 02:01:45 PM,03/13/2016 02:01:56 PM,03/13/2016 02:02:28 PM,03/13/2016 02:08:29 PM,03/13/2016 02:32:50 PM,03/13/2016 02:55:55 PM,Code 2 Transport,03/13/2016 03:20:39 PM,800 Block of KEARNY ST,San Francisco,94133,B01,13,1245,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7957597902135, -122.405118369279)",160731503-KM13 -160380456,54,16015063,Medical Incident,02/07/2016,02/06/2016,02/07/2016 02:37:49 AM,02/07/2016 02:37:49 AM,02/07/2016 02:38:26 AM,02/07/2016 02:38:34 AM,02/07/2016 02:46:33 AM,02/07/2016 03:05:02 AM,02/07/2016 03:12:02 AM,Code 2 Transport,02/07/2016 03:52:35 AM,1000 Block of LINCOLN WAY,San Francisco,94122,B08,22,7346,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Inner Sunset,"(37.765704888258, -122.469111435958)",160380456-54 -160421513,67,16016841,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:43:25 AM,02/11/2016 11:44:03 AM,02/11/2016 11:44:15 AM,02/11/2016 11:44:24 AM,02/11/2016 11:45:57 AM,02/11/2016 11:59:53 AM,02/11/2016 12:34:58 PM,Code 2 Transport,02/11/2016 01:12:34 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160421513-67 -120010142,E06,12000115,Medical Incident,01/01/2012,12/31/2011,01/01/2012 01:40:05 AM,01/01/2012 01:41:09 AM,01/01/2012 01:44:31 AM,04/25/2016 02:00:51 PM,01/01/2012 01:52:25 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 01:56:30 AM,700 Block of GUERRERO ST,SF,94110,B02,7,5445,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7591737466274, -122.423447331328)",120010142-E06 -121730341,E33,12057581,Traffic Collision,06/21/2012,06/21/2012,06/21/2012 09:23:41 PM,06/21/2012 09:24:01 PM,06/21/2012 09:24:30 PM,06/21/2012 09:25:50 PM,06/21/2012 09:29:05 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/21/2012 09:43:24 PM,0 Block of BEVERLY ST,SF,94132,B09,33,8421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7169988805638, -122.471554113527)",121730341-E33 -140350193,E29,14011818,Medical Incident,02/04/2014,02/04/2014,02/04/2014 12:21:05 PM,02/04/2014 12:21:09 PM,02/04/2014 12:21:35 PM,02/04/2014 12:23:06 PM,02/04/2014 12:28:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,No Merit,02/04/2014 12:28:39 PM,20TH ST/3RD ST,SF,94107,B03,29,2466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",140350193-E29 -160683695,88,16027276,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:37:26 PM,03/08/2016 10:37:26 PM,03/08/2016 10:37:39 PM,03/08/2016 10:37:48 PM,03/08/2016 10:41:18 PM,03/08/2016 10:46:03 PM,03/08/2016 10:58:17 PM,Code 2 Transport,03/08/2016 11:37:31 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160683695-88 -111840198,65,11060789,Medical Incident,07/03/2011,07/03/2011,07/03/2011 01:42:14 PM,07/03/2011 01:44:04 PM,07/03/2011 01:44:15 PM,07/03/2011 01:44:26 PM,07/03/2011 01:49:08 PM,07/03/2011 02:03:41 PM,07/03/2011 02:09:24 PM,Code 2 Transport,07/03/2011 02:34:42 PM,2800 Block of GOUGH ST,SF,94123,B04,16,3245,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.7995232754464, -122.427619653562)",111840198-65 -160751256,85,16029664,Medical Incident,03/15/2016,03/15/2016,03/15/2016 10:47:23 AM,03/15/2016 10:48:28 AM,03/15/2016 10:48:50 AM,03/15/2016 10:49:33 AM,03/15/2016 11:11:12 AM,03/15/2016 11:11:24 AM,03/15/2016 11:20:23 AM,Code 3 Transport,03/15/2016 12:18:09 PM,200 Block of VICTORIA ST,San Francisco,94132,B09,33,8416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7152017918179, -122.465379533034)",160751256-85 -160462253,50,16018561,Medical Incident,02/15/2016,02/15/2016,02/15/2016 03:26:28 PM,02/15/2016 03:28:12 PM,02/15/2016 03:28:40 PM,02/15/2016 03:28:48 PM,02/15/2016 03:44:29 PM,02/15/2016 04:01:05 PM,02/15/2016 04:11:42 PM,Code 2 Transport,02/15/2016 04:55:00 PM,UNION ST/COLUMBUS AV,San Francisco,94133,B01,28,1334,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",160462253-50 -112420108,93,11079765,Medical Incident,08/30/2011,08/30/2011,08/30/2011 10:12:46 AM,08/30/2011 10:14:09 AM,08/30/2011 10:14:20 AM,08/30/2011 10:14:30 AM,08/30/2011 10:19:14 AM,08/30/2011 10:37:14 AM,08/30/2011 10:54:01 AM,Code 2 Transport,08/30/2011 11:23:56 AM,1700 Block of BRYANT ST,SF,94110,B02,29,5242,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7649537879117, -122.410494214244)",112420108-93 -140920043,82,14030796,Medical Incident,04/02/2014,04/01/2014,04/02/2014 04:40:18 AM,04/02/2014 04:41:36 AM,04/02/2014 04:42:05 AM,04/02/2014 04:42:29 AM,04/02/2014 04:54:15 AM,04/02/2014 05:17:36 AM,04/02/2014 06:25:28 AM,Code 2 Transport,04/02/2014 06:25:30 AM,1500 Block of 48TH AVE,SAN FRANCISCO,94122,B08,23,7717,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7575292588802, -122.507939651503)",140920043-82 -120060272,CO2,12002153,Explosion,01/06/2012,01/06/2012,01/06/2012 05:29:55 PM,01/06/2012 05:31:26 PM,01/06/2012 05:32:50 PM,01/06/2012 05:42:47 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,Other,01/06/2012 05:43:32 PM,4TH ST/16TH ST,SF,94158,B03,8,2364,3,3,3,false,Fire,1,SUPPORT,8,3,6,Mission Bay,"(37.7668024436729, -122.390797171523)",120060272-CO2 -160772323,84,16030636,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:38:49 PM,03/17/2016 02:40:53 PM,03/17/2016 02:41:43 PM,03/17/2016 02:41:49 PM,03/17/2016 02:53:25 PM,03/17/2016 03:15:48 PM,03/17/2016 03:19:48 PM,Code 3 Transport,03/17/2016 04:05:09 PM,4100 Block of GEARY BLVD,San Francisco,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",160772323-84 -132230259,KM14,13075384,Medical Incident,08/11/2013,08/11/2013,08/11/2013 05:20:27 PM,08/11/2013 05:22:26 PM,08/11/2013 05:22:44 PM,08/11/2013 05:23:17 PM,08/11/2013 05:30:45 PM,08/11/2013 05:59:25 PM,08/11/2013 06:16:44 PM,Code 3 Transport,08/11/2013 07:02:24 PM,900 Block of POWELL ST,SF,94108,B01,2,1355,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.793420180327, -122.409388683)",132230259-KM14 -122910122,E33,12096294,Medical Incident,10/17/2012,10/17/2012,10/17/2012 09:56:51 AM,10/17/2012 09:58:13 AM,10/17/2012 09:58:34 AM,10/17/2012 10:00:14 AM,10/17/2012 10:01:58 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 10:12:27 AM,100 Block of FARALLONES ST,SF,94112,B09,33,8372,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7141209660917, -122.457549033066)",122910122-E33 -122620310,88,12086633,Medical Incident,09/18/2012,09/18/2012,09/18/2012 07:24:24 PM,09/18/2012 07:25:40 PM,09/18/2012 07:29:18 PM,09/18/2012 07:41:27 PM,09/18/2012 08:02:34 PM,09/18/2012 08:15:09 PM,09/18/2012 08:27:47 PM,Code 2 Transport,09/18/2012 08:49:02 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",122620310-88 -121000236,KM14,12033180,Medical Incident,04/09/2012,04/09/2012,04/09/2012 02:16:05 PM,04/09/2012 02:17:34 PM,04/09/2012 02:17:48 PM,04/09/2012 02:19:11 PM,04/09/2012 02:24:51 PM,04/09/2012 02:43:47 PM,04/09/2012 02:49:48 PM,Code 3 Transport,04/09/2012 03:32:31 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",121000236-KM14 -160214262,52,16008605,Medical Incident,01/21/2016,01/21/2016,01/21/2016 11:58:14 PM,01/21/2016 11:58:14 PM,01/22/2016 12:00:29 AM,01/22/2016 12:00:37 AM,01/22/2016 12:15:29 AM,01/22/2016 12:28:35 AM,01/22/2016 12:46:48 AM,Code 2 Transport,01/22/2016 01:28:33 AM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",160214262-52 -160883389,64,16035094,Medical Incident,03/28/2016,03/28/2016,03/28/2016 07:39:51 PM,03/28/2016 07:41:59 PM,03/28/2016 07:42:58 PM,03/28/2016 07:43:09 PM,03/28/2016 07:51:14 PM,03/28/2016 08:13:20 PM,03/28/2016 08:57:49 PM,Code 2 Transport,03/28/2016 09:12:00 PM,700 Block of CLEMENTINA ST,San Francisco,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7747750238121, -122.411341676645)",160883389-64 -111660132,E13,11054742,Medical Incident,06/15/2011,06/15/2011,06/15/2011 10:53:38 AM,06/15/2011 10:54:27 AM,06/15/2011 10:56:04 AM,04/25/2016 02:04:09 PM,06/15/2011 10:57:43 AM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/15/2011 11:16:30 AM,400 Block of SANSOME ST,SF,94111,B01,13,1166,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7946244346899, -122.401514024657)",111660132-E13 -130010563,57,13000466,Medical Incident,01/01/2013,01/01/2013,01/01/2013 10:20:47 PM,01/01/2013 10:24:10 PM,01/01/2013 10:24:42 PM,01/01/2013 10:24:54 PM,01/01/2013 10:32:26 PM,01/01/2013 10:55:27 PM,01/01/2013 11:07:41 PM,Code 2 Transport,01/01/2013 11:25:09 PM,200 Block of EVELYN WAY,SF,94127,B09,39,8655,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7426820880698, -122.449417082278)",130010563-57 -112530239,87,11083500,Medical Incident,09/10/2011,09/10/2011,09/10/2011 01:30:57 PM,09/10/2011 01:31:44 PM,09/10/2011 01:32:32 PM,09/10/2011 01:32:50 PM,09/10/2011 01:38:31 PM,09/10/2011 01:54:06 PM,09/10/2011 02:21:05 PM,Code 2 Transport,09/10/2011 02:45:30 PM,700 Block of LONDON ST,SF,94112,B09,43,6125,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7175106231913, -122.439146338541)",112530239-87 -103180167,E08,10101913,Medical Incident,11/14/2010,11/14/2010,11/14/2010 11:17:39 AM,11/14/2010 11:17:39 AM,11/14/2010 11:32:11 AM,11/14/2010 11:32:53 AM,11/14/2010 11:38:31 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 11:58:46 AM,500 Block of BEALE ST,SF,94107,B03,8,2134,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7857367878809, -122.389124364412)",103180167-E08 -103300283,E38,10105743,Structure Fire,11/26/2010,11/26/2010,11/26/2010 07:40:48 PM,11/26/2010 07:40:48 PM,11/26/2010 07:41:58 PM,11/26/2010 07:42:50 PM,11/26/2010 07:44:52 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 07:48:09 PM,LAGUNA ST/POST ST,SF,94109,B04,38,3364,3,3,3,false,,1,ENGINE,2,4,5,Japantown,"(37.7857844875918, -122.428148186864)",103300283-E38 -140100363,E33,14003643,Medical Incident,01/10/2014,01/10/2014,01/10/2014 08:10:07 PM,01/10/2014 08:11:09 PM,01/10/2014 08:13:21 PM,01/10/2014 08:14:36 PM,01/10/2014 08:18:37 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Fire,01/10/2014 08:23:11 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",140100363-E33 -111690123,E22,11055657,Medical Incident,06/18/2011,06/18/2011,06/18/2011 09:51:54 AM,06/18/2011 09:51:54 AM,06/18/2011 09:52:38 AM,06/18/2011 09:53:27 AM,06/18/2011 09:55:34 AM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,Other,06/18/2011 09:59:58 AM,600 Block of IRVING ST,SF,94122,B08,22,7332,3,3,3,false,,1,ENGINE,1,8,5,Inner Sunset,"(37.7640524831749, -122.464704638953)",111690123-E22 -160342921,75,16013532,Medical Incident,02/03/2016,02/03/2016,02/03/2016 06:45:25 PM,02/03/2016 06:46:00 PM,02/03/2016 06:46:33 PM,02/03/2016 06:46:58 PM,02/03/2016 06:51:57 PM,02/03/2016 07:01:02 PM,02/03/2016 07:15:36 PM,Code 2 Transport,02/03/2016 08:03:44 PM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.737593919819, -122.389860953099)",160342921-75 -120490248,59,12016277,Medical Incident,02/18/2012,02/18/2012,02/18/2012 04:49:43 PM,02/18/2012 04:52:17 PM,02/18/2012 04:53:05 PM,02/18/2012 04:57:44 PM,02/18/2012 05:02:45 PM,02/18/2012 05:17:46 PM,02/18/2012 05:34:58 PM,Code 2 Transport,02/18/2012 06:05:25 PM,800 Block of CLAYTON ST,SF,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7655967523319, -122.447797520946)",120490248-59 -102440345,E02,10077111,Medical Incident,09/01/2010,09/01/2010,09/01/2010 07:09:16 PM,09/01/2010 07:09:49 PM,09/01/2010 07:11:04 PM,09/01/2010 07:12:13 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Other,09/01/2010 07:26:52 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",102440345-E02 -122140198,E07,12071027,Medical Incident,08/01/2012,08/01/2012,08/01/2012 02:10:08 PM,08/01/2012 02:10:27 PM,08/01/2012 02:10:51 PM,08/01/2012 02:11:39 PM,08/01/2012 02:13:54 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/01/2012 02:18:42 PM,1900 Block of MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7658666581108, -122.419678114931)",122140198-E07 -103510341,81,10112732,Medical Incident,12/17/2010,12/17/2010,12/17/2010 07:44:11 PM,12/17/2010 07:44:56 PM,12/17/2010 07:45:07 PM,12/17/2010 07:45:23 PM,12/17/2010 07:59:02 PM,12/17/2010 08:06:46 PM,12/17/2010 08:17:30 PM,Code 2 Transport,12/17/2010 08:54:16 PM,1200 Block of 34TH AVE,SF,94122,B08,23,7537,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7637900578037, -122.493333871469)",103510341-81 -132160146,81,13072956,Medical Incident,08/04/2013,08/04/2013,08/04/2013 12:11:10 PM,08/04/2013 12:11:28 PM,08/04/2013 12:11:45 PM,08/04/2013 12:11:53 PM,08/04/2013 12:20:51 PM,08/04/2013 12:43:08 PM,08/04/2013 12:48:14 PM,Code 2 Transport,08/04/2013 01:28:26 PM,700 Block of 23RD AVE,SF,94121,B07,14,7177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7735976795866, -122.482185448619)",132160146-81 -120190276,E01,12006428,Structure Fire,01/19/2012,01/19/2012,01/19/2012 05:23:48 PM,01/19/2012 05:23:48 PM,01/19/2012 05:24:02 PM,01/19/2012 05:25:03 PM,01/19/2012 05:27:54 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Fire,01/19/2012 05:28:03 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",120190276-E01 -160083872,AM16,16003444,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:20:57 PM,01/08/2016 10:21:15 PM,01/08/2016 10:22:25 PM,01/08/2016 10:23:34 PM,01/08/2016 10:37:14 PM,01/08/2016 10:37:25 PM,01/08/2016 11:03:05 PM,Code 2 Transport,01/08/2016 11:34:30 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160083872-AM16 -160900451,71,16035588,Medical Incident,03/30/2016,03/29/2016,03/30/2016 05:28:11 AM,03/30/2016 05:31:04 AM,03/30/2016 05:31:27 AM,03/30/2016 05:31:33 AM,03/30/2016 05:38:16 AM,03/30/2016 06:00:14 AM,03/30/2016 06:08:50 AM,Code 2 Transport,03/30/2016 06:56:36 AM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7975061057448, -122.409143124942)",160900451-71 -131260140,KM14,13042518,Medical Incident,05/06/2013,05/06/2013,05/06/2013 10:12:43 AM,05/06/2013 10:14:59 AM,05/06/2013 10:15:48 AM,05/06/2013 10:18:21 AM,05/06/2013 10:43:09 AM,05/06/2013 11:02:52 AM,05/06/2013 11:15:13 AM,Code 2 Transport,05/06/2013 11:42:52 AM,200 Block of BATTERY ST,SF,94104,B01,13,1162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7939050731848, -122.400171834642)",131260140-KM14 -160401682,82,16016016,Medical Incident,02/09/2016,02/09/2016,02/09/2016 12:19:28 PM,02/09/2016 12:21:36 PM,02/09/2016 12:23:07 PM,02/09/2016 12:23:15 PM,02/09/2016 12:46:10 PM,02/09/2016 01:04:45 PM,02/09/2016 01:25:33 PM,Code 2 Transport,02/09/2016 01:58:41 PM,1200 Block of STEINER ST,San Francisco,94115,B05,5,3624,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7807440381763, -122.433947180627)",160401682-82 -102480329,B02,10078494,Medical Incident,09/05/2010,09/05/2010,09/05/2010 08:43:09 PM,09/05/2010 08:44:09 PM,09/05/2010 08:44:24 PM,09/05/2010 08:46:18 PM,09/05/2010 08:47:34 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,No Merit,09/05/2010 09:16:30 PM,HAYES ST/VAN NESS AV,SF,94102,B02,36,3166,3,3,3,false,,1,CHIEF,2,2,6,Tenderloin,"(37.7772998560434, -122.419693565739)",102480329-B02 -130520205,E42,13017593,Medical Incident,02/21/2013,02/21/2013,02/21/2013 01:46:26 PM,02/21/2013 01:48:03 PM,02/21/2013 01:49:13 PM,02/21/2013 01:49:56 PM,02/21/2013 01:54:11 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,02/21/2013 02:09:50 PM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",130520205-E42 -160761178,54,16030078,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:15:47 AM,03/16/2016 10:16:26 AM,03/16/2016 10:17:10 AM,03/16/2016 10:17:20 AM,03/16/2016 10:23:55 AM,03/16/2016 10:45:10 AM,03/16/2016 10:56:08 AM,Code 2 Transport,03/16/2016 11:10:26 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7906221863031, -122.413101980649)",160761178-54 -131350140,RS1,13045522,Medical Incident,05/15/2013,05/15/2013,05/15/2013 11:25:39 AM,05/15/2013 11:27:47 AM,05/15/2013 11:28:00 AM,05/15/2013 11:29:16 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 11:33:37 AM,100 Block of MASON ST,SF,94102,B03,1,1366,2,2,2,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",131350140-RS1 -160420323,KM07,16016729,Medical Incident,02/11/2016,02/10/2016,02/11/2016 04:24:03 AM,02/11/2016 04:25:55 AM,02/11/2016 04:27:16 AM,02/11/2016 04:27:44 AM,02/11/2016 04:35:43 AM,02/11/2016 05:01:06 AM,02/11/2016 05:04:32 AM,Code 2 Transport,02/11/2016 05:38:23 AM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160420323-KM07 -121740145,E06,12057734,Medical Incident,06/22/2012,06/22/2012,06/22/2012 12:07:34 PM,06/22/2012 12:08:43 PM,06/22/2012 12:09:15 PM,06/22/2012 12:09:26 PM,06/22/2012 12:11:29 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/22/2012 12:19:00 PM,600 Block of PAGE ST,SF,94117,B05,6,3531,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7728800408528, -122.431443648937)",121740145-E06 -102520217,E21,10079648,Alarms,09/09/2010,09/09/2010,09/09/2010 03:12:48 PM,09/09/2010 03:13:47 PM,09/09/2010 03:14:32 PM,09/09/2010 03:15:15 PM,09/09/2010 03:17:18 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Fire,09/09/2010 03:38:30 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",102520217-E21 -160822644,KM09,16032649,Medical Incident,03/22/2016,03/22/2016,03/22/2016 04:27:47 PM,03/22/2016 04:29:08 PM,03/22/2016 04:29:28 PM,03/22/2016 04:30:02 PM,03/22/2016 04:32:09 PM,03/22/2016 04:52:15 PM,03/22/2016 05:27:54 PM,Code 2 Transport,03/22/2016 05:57:31 PM,200 Block of SWEENY ST,San Francisco,94134,B10,42,6365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,9,Portola,"(37.7322220692702, -122.410162680629)",160822644-KM09 -160802402,55,16031870,Medical Incident,03/20/2016,03/20/2016,03/20/2016 04:29:03 PM,03/20/2016 04:31:08 PM,03/20/2016 04:33:23 PM,03/20/2016 04:34:03 PM,03/20/2016 04:40:37 PM,03/20/2016 04:54:29 PM,03/20/2016 05:07:49 PM,Code 2 Transport,03/20/2016 05:37:56 PM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",160802402-55 -132380338,E31,13080425,Structure Fire,08/26/2013,08/26/2013,08/26/2013 07:15:34 PM,08/26/2013 07:16:55 PM,08/26/2013 07:17:16 PM,08/26/2013 07:19:15 PM,08/26/2013 07:19:49 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 07:36:02 PM,2000 Block of ANZA ST,SF,94118,B07,31,7142,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.778770015145, -122.470027224406)",132380338-E31 -121160275,E29,12038522,Traffic Collision,04/25/2012,04/25/2012,04/25/2012 05:17:43 PM,04/25/2012 05:18:28 PM,04/25/2012 05:18:56 PM,04/25/2012 05:19:40 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/25/2012 05:19:50 PM,16TH ST/HARRISON ST,SF,94110,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7654476102712, -122.413105244954)",121160275-E29 -113280139,E03,11108852,Medical Incident,11/24/2011,11/24/2011,11/24/2011 12:16:06 PM,11/24/2011 12:16:31 PM,11/24/2011 12:17:00 PM,04/25/2016 02:01:29 PM,11/24/2011 12:20:03 PM,04/25/2016 02:01:29 PM,04/25/2016 02:01:29 PM,Other,11/24/2011 12:29:20 PM,300 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,2,1,3,Tenderloin,"(37.7871999750116, -122.409039390561)",113280139-E03 -120840316,RS2,12028017,Traffic Collision,03/24/2012,03/24/2012,03/24/2012 07:11:14 PM,03/24/2012 07:11:14 PM,03/24/2012 07:11:29 PM,03/24/2012 07:13:21 PM,03/24/2012 07:14:47 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/24/2012 07:25:19 PM,13TH ST/FOLSOM ST,SF,94103,B02,36,5121,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,Mission,"(37.7695911594816, -122.415577014994)",120840316-RS2 -131630332,E33,13055504,Structure Fire,06/12/2013,06/12/2013,06/12/2013 06:51:03 PM,06/12/2013 06:52:50 PM,06/12/2013 06:53:06 PM,06/12/2013 06:54:24 PM,06/12/2013 06:56:40 PM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/12/2013 07:59:47 PM,100 Block of CAINE AVE,SF,94112,B09,33,8325,3,3,3,true,Fire,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7158093811845, -122.451858998224)",131630332-E33 -160111705,88,16004399,Medical Incident,01/11/2016,01/11/2016,01/11/2016 01:14:52 PM,01/11/2016 01:15:37 PM,01/11/2016 01:15:50 PM,01/11/2016 01:16:19 PM,01/11/2016 01:25:13 PM,01/11/2016 01:40:23 PM,01/11/2016 01:55:53 PM,Code 2 Transport,01/11/2016 02:27:57 PM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",160111705-88 -130280136,E41,13009561,Medical Incident,01/28/2013,01/28/2013,01/28/2013 10:33:50 AM,01/28/2013 10:35:47 AM,01/28/2013 10:35:56 AM,01/28/2013 10:36:56 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 10:39:29 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",130280136-E41 -131640015,93,13055584,Medical Incident,06/13/2013,06/12/2013,06/13/2013 01:29:03 AM,06/13/2013 01:29:03 AM,06/13/2013 01:29:34 AM,04/25/2016 01:52:19 PM,06/13/2013 01:34:01 AM,06/13/2013 01:41:28 AM,06/13/2013 02:12:12 AM,Code 2 Transport,06/13/2013 02:38:17 AM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",131640015-93 -131560309,E07,13053005,Medical Incident,06/05/2013,06/05/2013,06/05/2013 06:28:02 PM,06/05/2013 06:29:26 PM,06/05/2013 06:29:33 PM,06/05/2013 06:30:30 PM,06/05/2013 06:34:17 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/05/2013 06:43:55 PM,3500 Block of 18TH ST,SF,94110,B02,7,5422,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7615843954582, -122.422587868983)",131560309-E07 -160273560,68,16010854,Medical Incident,01/27/2016,01/27/2016,01/27/2016 08:34:10 PM,01/27/2016 08:35:03 PM,01/27/2016 08:35:31 PM,01/27/2016 08:36:14 PM,01/27/2016 08:39:23 PM,01/27/2016 08:54:09 PM,01/27/2016 09:04:08 PM,Code 2 Transport,01/27/2016 09:26:35 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160273560-68 -112590236,E19,11085430,Medical Incident,09/16/2011,09/16/2011,09/16/2011 03:03:31 PM,09/16/2011 03:04:24 PM,09/16/2011 03:04:51 PM,09/16/2011 03:06:10 PM,09/16/2011 03:07:44 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/16/2011 03:23:12 PM,LAKE MERCED BL/WINSTON DR,SF,94132,B08,19,8855,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7270195241029, -122.483864394372)",112590236-E19 -160810048,60,16032001,Medical Incident,03/21/2016,03/20/2016,03/21/2016 12:29:06 AM,03/21/2016 12:30:46 AM,03/21/2016 12:30:52 AM,03/21/2016 12:31:02 AM,03/21/2016 12:37:06 AM,03/21/2016 01:01:20 AM,03/21/2016 01:13:10 AM,Code 2 Transport,03/21/2016 02:04:44 AM,2500 Block of 25TH AVE,San Francisco,94116,B08,40,7462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7399677614762, -122.481993144476)",160810048-60 -102930071,RC1,10093358,Medical Incident,10/20/2010,10/20/2010,10/20/2010 08:12:21 AM,10/20/2010 08:12:38 AM,10/20/2010 08:13:02 AM,04/25/2016 02:08:01 PM,10/20/2010 08:24:48 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 08:33:43 AM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,RESCUE CAPTAIN,2,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",102930071-RC1 -160403542,76,16016214,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:01:33 PM,02/09/2016 09:01:33 PM,02/09/2016 09:01:57 PM,02/09/2016 09:02:05 PM,02/09/2016 09:06:03 PM,02/09/2016 09:22:27 PM,02/09/2016 09:34:26 PM,Code 2 Transport,02/09/2016 10:27:24 PM,MISSION ST/11TH ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160403542-76 -130410082,RS1,13013938,Structure Fire,02/10/2013,02/09/2013,02/10/2013 07:22:43 AM,02/10/2013 07:23:27 AM,02/10/2013 07:23:46 AM,02/10/2013 07:25:40 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 07:31:59 AM,PINE ST/LYON ST,SF,94115,B05,10,4263,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,2,Presidio Heights,"(37.7864809020092, -122.44520849167)",130410082-RS1 -132800039,E03,13095176,Medical Incident,10/07/2013,10/06/2013,10/07/2013 04:35:37 AM,10/07/2013 04:35:37 AM,10/07/2013 04:35:44 AM,10/07/2013 04:37:42 AM,10/07/2013 04:42:44 AM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/07/2013 04:51:14 AM,VAN NESS AV/EDDY ST,SF,94109,B02,3,3163,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",132800039-E03 -122040053,RC2,12067707,Medical Incident,07/22/2012,07/21/2012,07/22/2012 03:00:20 AM,07/22/2012 03:02:05 AM,07/22/2012 03:02:38 AM,07/22/2012 03:06:06 AM,07/22/2012 03:11:11 AM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,04/25/2016 01:57:36 PM,1600 Block of WALLACE AVE,SF,94124,B10,17,6546,2,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7280277124346, -122.391963404098)",122040053-RC2 -121810131,89,12060218,Medical Incident,06/29/2012,06/29/2012,06/29/2012 10:13:43 AM,06/29/2012 10:14:17 AM,06/29/2012 10:14:37 AM,06/29/2012 10:19:48 AM,06/29/2012 10:21:46 AM,06/29/2012 10:44:59 AM,06/29/2012 11:12:33 AM,Code 2 Transport,06/29/2012 11:23:50 AM,8TH ST/TEHAMA ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7757938041855, -122.411069443844)",121810131-89 -111050172,E03,11034763,Medical Incident,04/15/2011,04/15/2011,04/15/2011 01:18:45 PM,04/15/2011 01:19:23 PM,04/15/2011 01:19:48 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/15/2011 01:21:11 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",111050172-E03 -131730047,T13,13058586,Outside Fire,06/22/2013,06/21/2013,06/22/2013 04:06:41 AM,06/22/2013 04:06:55 AM,06/22/2013 04:07:51 AM,06/22/2013 04:10:38 AM,06/22/2013 04:13:10 AM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/22/2013 04:17:37 AM,800 Block of THE EMBARCADERO,SF,94111,B01,13,919,3,3,3,true,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",131730047-T13 -102300338,B02,10072517,Alarms,08/18/2010,08/18/2010,08/18/2010 08:32:30 PM,08/18/2010 08:34:27 PM,08/18/2010 08:38:08 PM,08/18/2010 08:39:19 PM,08/18/2010 08:43:33 PM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/18/2010 08:46:22 PM,2100 Block of FOLSOM ST,SF,94110,B02,7,5424,3,3,3,false,,1,CHIEF,3,2,9,Mission,"(37.7628937069404, -122.415145830574)",102300338-B02 -120320189,E32,12010583,Medical Incident,02/01/2012,02/01/2012,02/01/2012 01:50:35 PM,02/01/2012 01:50:52 PM,02/01/2012 01:51:09 PM,02/01/2012 01:52:32 PM,02/01/2012 01:54:41 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,No Merit,02/01/2012 01:58:45 PM,100 Block of BONVIEW ST,SF,94110,B06,32,5655,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7414828908711, -122.417767999236)",120320189-E32 -122660357,E32,12088031,Medical Incident,09/22/2012,09/22/2012,09/22/2012 10:27:26 PM,09/22/2012 10:28:01 PM,09/22/2012 10:28:41 PM,09/22/2012 10:30:01 PM,09/22/2012 10:32:03 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/22/2012 10:34:09 PM,400 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7391460959559, -122.416820868342)",122660357-E32 -112800367,71,11092834,Medical Incident,10/07/2011,10/07/2011,10/07/2011 10:47:27 PM,10/07/2011 10:48:08 PM,10/07/2011 10:48:44 PM,04/25/2016 02:02:17 PM,10/07/2011 10:50:49 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 10:52:05 PM,1600 Block of POLK ST,SF,94109,B04,41,3123,3,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7919308386336, -122.421031367895)",112800367-71 -110500410,E02,11016718,Alarms,02/19/2011,02/19/2011,02/19/2011 11:19:18 PM,02/19/2011 11:20:32 PM,02/19/2011 11:20:47 PM,02/19/2011 11:21:39 PM,02/19/2011 11:25:59 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 11:29:11 PM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",110500410-E02 -160111598,52,16004386,Medical Incident,01/11/2016,01/11/2016,01/11/2016 12:44:04 PM,01/11/2016 12:45:18 PM,01/11/2016 12:47:09 PM,01/11/2016 12:48:18 PM,01/11/2016 12:53:27 PM,01/11/2016 01:07:38 PM,01/11/2016 01:16:08 PM,Code 3 Transport,01/11/2016 02:05:06 PM,1200 Block of 16TH AVE,San Francisco,94122,B08,22,7367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",160111598-52 -120440204,E03,12014717,Medical Incident,02/13/2012,02/13/2012,02/13/2012 02:54:38 PM,02/13/2012 02:55:47 PM,02/13/2012 02:56:27 PM,02/13/2012 02:57:55 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 02:59:16 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",120440204-E03 -123190004,T07,12105920,Structure Fire,11/14/2012,11/13/2012,11/14/2012 12:09:40 AM,11/14/2012 12:09:40 AM,11/14/2012 12:09:50 AM,11/14/2012 12:11:33 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/14/2012 12:14:09 AM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,true,Alarm,1,TRUCK,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",123190004-T07 -121940404,KM15,12064734,Medical Incident,07/12/2012,07/12/2012,07/12/2012 09:42:20 PM,07/12/2012 09:44:15 PM,07/12/2012 09:44:27 PM,07/12/2012 09:45:07 PM,07/12/2012 09:50:21 PM,07/12/2012 09:57:53 PM,07/12/2012 10:11:49 PM,Code 2 Transport,07/12/2012 10:47:34 PM,700 Block of PAGE ST,SF,94117,B05,6,3636,1,1,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7726705470926, -122.433090198155)",121940404-KM15 -133210057,89,13108936,Medical Incident,11/17/2013,11/16/2013,11/17/2013 04:42:16 AM,11/17/2013 04:43:01 AM,11/17/2013 04:43:18 AM,11/17/2013 04:43:37 AM,11/17/2013 04:46:38 AM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Patient Declined Transport,11/17/2013 04:54:15 AM,300 Block of 11TH ST,SF,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7712855259531, -122.413204267102)",133210057-89 -122920285,E42,12096829,Traffic Collision,10/18/2012,10/18/2012,10/18/2012 03:54:37 PM,10/18/2012 03:54:38 PM,10/18/2012 03:54:52 PM,10/18/2012 03:55:50 PM,10/18/2012 03:58:43 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Patient Declined Transport,10/18/2012 04:09:41 PM,BACON ST/SAN BRUNO AV,SF,94134,B10,42,6451,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7276341272753, -122.403592890818)",122920285-E42 -160382906,AM08,16015338,Medical Incident,02/07/2016,02/07/2016,02/07/2016 06:39:28 PM,02/07/2016 06:42:10 PM,02/07/2016 06:42:20 PM,02/07/2016 06:43:17 PM,02/07/2016 06:52:04 PM,02/07/2016 07:25:35 PM,02/07/2016 07:56:30 PM,Code 2 Transport,02/07/2016 08:30:27 PM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7120857687728, -122.445406512004)",160382906-AM08 -103350134,T19,10107139,Structure Fire,12/01/2010,12/01/2010,12/01/2010 11:12:02 AM,12/01/2010 11:12:41 AM,12/01/2010 11:12:57 AM,12/01/2010 11:13:44 AM,12/01/2010 11:17:02 AM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Other,12/01/2010 11:37:16 AM,GREAT HY/SKYLINE BL,SF,94132,B08,19,8713,3,3,3,false,,1,TRUCK,1,8,7,Lakeshore,"(37.7252595509479, -122.503040635623)",103350134-T19 -160110916,57,16004318,Medical Incident,01/11/2016,01/11/2016,01/11/2016 09:15:26 AM,01/11/2016 09:16:44 AM,01/11/2016 09:17:13 AM,01/11/2016 09:17:21 AM,01/11/2016 09:25:45 AM,01/11/2016 09:31:45 AM,01/11/2016 09:40:29 AM,Code 3 Transport,01/11/2016 10:37:52 AM,2300 Block of 35TH AVE,San Francisco,94116,B08,18,7555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.743232255412, -122.492833251462)",160110916-57 -160042918,62,16001715,Medical Incident,01/04/2016,01/04/2016,01/04/2016 06:18:13 PM,01/04/2016 06:18:13 PM,01/04/2016 06:18:47 PM,01/04/2016 06:18:55 PM,01/04/2016 06:30:15 PM,01/04/2016 06:43:24 PM,01/04/2016 07:04:13 PM,Code 2 Transport,01/04/2016 07:41:35 PM,HOWARD ST/5TH ST,San Francisco,94103,B03,1,2245,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160042918-62 -102460073,B02,10077646,Alarms,09/03/2010,09/02/2010,09/03/2010 06:16:36 AM,09/03/2010 06:19:32 AM,09/03/2010 06:19:54 AM,09/03/2010 06:22:04 AM,09/03/2010 06:23:44 AM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/03/2010 06:26:54 AM,600 Block of FELL ST,SF,94102,B02,36,3423,3,3,3,false,,1,CHIEF,3,2,5,Hayes Valley,"(37.7751599940562, -122.42853414448)",102460073-B02 -112820288,54,11093421,Medical Incident,10/09/2011,10/09/2011,10/09/2011 05:38:02 PM,10/09/2011 05:38:41 PM,10/09/2011 05:38:54 PM,10/09/2011 05:40:42 PM,10/09/2011 05:42:51 PM,10/09/2011 06:09:20 PM,10/09/2011 06:23:43 PM,Code 2 Transport,10/09/2011 07:15:31 PM,1800 Block of 39TH AVE,SF,94122,B08,18,7623,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7523579274535, -122.497905539152)",112820288-54 -111190114,T08,11039192,Medical Incident,04/29/2011,04/29/2011,04/29/2011 10:47:09 AM,04/29/2011 10:48:41 AM,04/29/2011 10:48:56 AM,04/29/2011 10:49:47 AM,04/29/2011 10:53:11 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 11:01:35 AM,300 Block of 7TH ST,SF,94103,B03,1,2313,E,E,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7765647940442, -122.407516832678)",111190114-T08 -160420364,88,16016735,Medical Incident,02/11/2016,02/10/2016,02/11/2016 04:58:00 AM,02/11/2016 04:59:42 AM,02/11/2016 05:00:18 AM,02/11/2016 05:00:33 AM,02/11/2016 05:07:07 AM,02/11/2016 05:33:20 AM,02/11/2016 05:43:29 AM,Code 2 Transport,02/11/2016 06:16:34 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160420364-88 -123390196,86,12113064,Medical Incident,12/04/2012,12/04/2012,12/04/2012 01:23:45 PM,12/04/2012 01:25:47 PM,12/04/2012 01:26:03 PM,12/04/2012 01:26:45 PM,12/04/2012 01:31:04 PM,12/04/2012 01:43:40 PM,12/04/2012 01:59:18 PM,Code 2 Transport,12/04/2012 02:11:08 PM,1100 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7517406897648, -122.396529537539)",123390196-86 -160181104,63,16007185,Medical Incident,01/18/2016,01/18/2016,01/18/2016 10:33:44 AM,01/18/2016 10:35:28 AM,01/18/2016 10:35:44 AM,01/18/2016 10:36:03 AM,01/18/2016 10:41:31 AM,01/18/2016 11:10:29 AM,01/18/2016 11:11:13 AM,Code 2 Transport,01/18/2016 11:44:07 AM,1600 Block of VALENCIA ST,San Francisco,94110,B06,11,5611,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7459784515022, -122.420143715406)",160181104-63 -111580371,E42,11052405,Medical Incident,06/07/2011,06/07/2011,06/07/2011 10:30:22 PM,06/07/2011 10:32:38 PM,06/07/2011 10:32:46 PM,06/07/2011 10:34:21 PM,06/07/2011 10:35:07 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/07/2011 10:45:05 PM,100 Block of HALE ST,SF,94134,B10,42,6362,3,3,3,true,,1,ENGINE,2,10,9,Portola,"(37.7323441875657, -122.408123114783)",111580371-E42 -120830262,E08,12027631,Alarms,03/23/2012,03/23/2012,03/23/2012 04:42:17 PM,03/23/2012 04:43:23 PM,03/23/2012 04:43:38 PM,03/23/2012 04:45:13 PM,03/23/2012 04:49:16 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 04:58:13 PM,100 Block of TOWNSEND ST,SF,94107,B03,8,2154,3,3,3,true,Alarm,1,ENGINE,3,3,6,Mission Bay,"(37.7796910137658, -122.391588816975)",120830262-E08 -112730359,E12,11090393,Alarms,09/30/2011,09/30/2011,09/30/2011 08:19:49 PM,09/30/2011 08:21:22 PM,09/30/2011 08:21:39 PM,04/25/2016 02:02:24 PM,09/30/2011 08:24:49 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 08:27:03 PM,600 Block of CLAYTON ST,SF,94117,B05,12,4525,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7693399647388, -122.448415933543)",112730359-E12 -102290060,E18,10071972,Medical Incident,08/17/2010,08/16/2010,08/17/2010 07:49:02 AM,08/17/2010 07:50:28 AM,08/17/2010 07:51:04 AM,08/17/2010 07:51:52 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/17/2010 07:53:29 AM,1600 Block of 43RD AVE,SF,94122,B08,23,7651,3,3,3,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7558907938511, -122.502453384004)",102290060-E18 -112770234,E41,11091732,Alarms,10/04/2011,10/04/2011,10/04/2011 02:30:39 PM,10/04/2011 02:31:07 PM,10/04/2011 02:31:15 PM,10/04/2011 02:32:17 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 02:32:19 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,,1,ENGINE,4,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",112770234-E41 -103360348,E03,10107624,Medical Incident,12/02/2010,12/02/2010,12/02/2010 09:14:21 PM,12/02/2010 09:15:30 PM,12/02/2010 09:18:20 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,04/25/2016 02:07:19 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",103360348-E03 -132760058,93,13093638,Medical Incident,10/03/2013,10/02/2013,10/03/2013 05:37:54 AM,10/03/2013 05:39:32 AM,10/03/2013 05:40:05 AM,10/03/2013 05:40:22 AM,10/03/2013 05:55:44 AM,10/03/2013 06:12:53 AM,10/03/2013 06:26:46 AM,Code 2 Transport,10/03/2013 06:42:23 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132760058-93 -111180360,B04,11039086,Alarms,04/28/2011,04/28/2011,04/28/2011 10:36:05 PM,04/28/2011 10:38:21 PM,04/28/2011 10:38:32 PM,04/28/2011 10:39:40 PM,04/28/2011 10:42:01 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Fire,04/28/2011 10:47:27 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,,1,CHIEF,3,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",111180360-B04 -160163935,83,16006639,Medical Incident,01/16/2016,01/16/2016,01/16/2016 11:53:39 PM,01/16/2016 11:55:07 PM,01/16/2016 11:56:30 PM,01/16/2016 11:56:59 PM,01/17/2016 12:14:35 AM,01/17/2016 12:14:54 AM,01/17/2016 12:20:58 AM,Code 2 Transport,01/17/2016 12:59:25 AM,19TH ST/DOLORES ST,San Francisco,94110,B06,7,5435,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7598296133915, -122.425920303181)",160163935-83 -160522096,KM13,16020852,Medical Incident,02/21/2016,02/21/2016,02/21/2016 03:18:23 PM,02/21/2016 03:18:48 PM,02/21/2016 03:19:13 PM,02/21/2016 03:20:36 PM,02/21/2016 03:28:17 PM,02/21/2016 03:47:44 PM,02/21/2016 04:43:52 PM,Code 2 Transport,02/21/2016 04:55:25 PM,MAIN ST/MARKET ST,San Francisco,94105,B03,35,2116,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7930970823054, -122.396504488933)",160522096-KM13 -121060178,AM06,12035127,Medical Incident,04/15/2012,04/15/2012,04/15/2012 01:00:26 PM,04/15/2012 01:02:20 PM,04/15/2012 01:02:41 PM,04/25/2016 01:59:09 PM,04/15/2012 01:09:12 PM,04/15/2012 01:24:16 PM,04/15/2012 01:28:15 PM,Code 2 Transport,04/15/2012 02:10:04 PM,700 Block of TAYLOR ST,SF,94109,B01,41,1446,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7892649467456, -122.412049085376)",121060178-AM06 -102990180,E11,10095457,Alarms,10/26/2010,10/26/2010,10/26/2010 12:27:58 PM,10/26/2010 12:29:23 PM,10/26/2010 12:29:33 PM,10/26/2010 12:30:28 PM,10/26/2010 12:33:13 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 12:35:39 PM,800 Block of CAPP ST,SF,94110,B06,7,5511,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7531080512306, -122.417362867532)",102990180-E11 -160460067,63,16018344,Medical Incident,02/15/2016,02/14/2016,02/15/2016 12:26:05 AM,02/15/2016 12:27:02 AM,02/15/2016 12:28:05 AM,02/15/2016 12:28:41 AM,02/15/2016 12:47:11 AM,02/15/2016 12:47:57 AM,02/15/2016 01:12:22 AM,Code 2 Transport,02/15/2016 01:45:44 AM,1000 Block of KEY AVE,San Francisco,94124,B10,44,6575,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7196121077812, -122.397328238942)",160460067-63 -160160592,62,16006308,Medical Incident,01/16/2016,01/15/2016,01/16/2016 05:13:47 AM,01/16/2016 05:16:25 AM,01/16/2016 05:22:35 AM,01/16/2016 05:22:47 AM,01/16/2016 05:31:46 AM,01/16/2016 05:47:33 AM,01/16/2016 06:01:13 AM,Code 2 Transport,01/16/2016 06:41:38 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160160592-62 -160290717,55,16011352,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:13:25 AM,01/29/2016 08:13:47 AM,01/29/2016 08:14:29 AM,01/29/2016 08:14:56 AM,01/29/2016 08:38:38 AM,01/29/2016 08:58:52 AM,01/29/2016 09:40:39 AM,Code 2 Transport,01/29/2016 10:42:20 AM,1700 Block of OCEAN AVE,San Francisco,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",160290717-55 -160181978,66,16007268,Medical Incident,01/18/2016,01/18/2016,01/18/2016 03:04:01 PM,01/18/2016 03:05:09 PM,01/18/2016 03:05:36 PM,01/18/2016 03:05:42 PM,01/18/2016 03:29:08 PM,01/18/2016 03:56:19 PM,01/18/2016 04:09:43 PM,Code 2 Transport,01/18/2016 05:15:05 PM,200 Block of HARRISON ST,San Francisco,94105,B03,35,2123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",160181978-66 -131020056,KM04,13034177,Medical Incident,04/12/2013,04/11/2013,04/12/2013 07:25:39 AM,04/12/2013 07:27:35 AM,04/12/2013 07:27:57 AM,04/12/2013 07:28:40 AM,04/12/2013 07:35:28 AM,04/12/2013 08:01:35 AM,04/12/2013 08:08:58 AM,Code 2 Transport,04/12/2013 08:47:31 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",131020056-KM04 -112030387,E03,11067189,Medical Incident,07/22/2011,07/22/2011,07/22/2011 09:38:32 PM,07/22/2011 09:38:32 PM,07/22/2011 09:39:05 PM,07/22/2011 09:40:46 PM,07/22/2011 09:44:47 PM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/22/2011 09:55:26 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",112030387-E03 -111710344,E25,11056521,Structure Fire,06/20/2011,06/20/2011,06/20/2011 08:17:07 PM,06/20/2011 08:18:13 PM,06/20/2011 08:18:43 PM,06/20/2011 08:19:45 PM,06/20/2011 08:21:31 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/20/2011 08:52:44 PM,1900 Block of OAKDALE AVE,SF,94124,B10,42,6444,3,3,3,false,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7382707285537, -122.396917502397)",111710344-E25 -160080280,71,16003078,Medical Incident,01/08/2016,01/07/2016,01/08/2016 02:45:00 AM,01/08/2016 02:50:12 AM,01/08/2016 02:51:13 AM,01/08/2016 02:51:28 AM,01/08/2016 02:56:29 AM,01/08/2016 03:15:36 AM,01/08/2016 03:39:58 AM,Code 2 Transport,01/08/2016 04:11:19 AM,0 Block of DRUMM ST,San Francisco,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941350872088, -122.39641990167)",160080280-71 -140420208,T16,14014297,Citizen Assist / Service Call,02/11/2014,02/11/2014,02/11/2014 01:02:43 PM,02/11/2014 01:05:32 PM,02/11/2014 01:06:23 PM,02/11/2014 01:07:11 PM,02/11/2014 01:11:55 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/11/2014 01:16:28 PM,LARKIN ST/NORTH POINT ST,SF,94109,B01,28,1623,3,3,3,false,Alarm,1,TRUCK,1,1,2,Russian Hill,"(37.8054966485492, -122.42200682156)",140420208-T16 -111100343,KM01,11036438,Medical Incident,04/20/2011,04/20/2011,04/20/2011 07:22:14 PM,04/20/2011 07:24:06 PM,04/20/2011 07:24:46 PM,04/20/2011 07:26:27 PM,04/20/2011 07:30:09 PM,04/20/2011 07:52:56 PM,04/20/2011 08:00:27 PM,Code 2 Transport,04/20/2011 08:33:04 PM,0 Block of TERRA VISTA AVE,SF,94115,B05,21,4256,3,3,3,false,,1,PRIVATE,1,5,2,Lone Mountain/USF,"(37.7814248717141, -122.441695636568)",111100343-KM01 -122050260,E03,12068236,Medical Incident,07/23/2012,07/23/2012,07/23/2012 05:10:20 PM,07/23/2012 05:11:23 PM,07/23/2012 05:11:40 PM,07/23/2012 05:12:53 PM,07/23/2012 05:14:26 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/23/2012 05:28:40 PM,1400 Block of PINE ST,SF,94109,B04,3,3122,E,2,2,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",122050260-E03 -160601768,KM09,16023908,Medical Incident,02/29/2016,02/29/2016,02/29/2016 01:10:46 PM,02/29/2016 01:15:08 PM,02/29/2016 01:16:00 PM,02/29/2016 01:17:07 PM,02/29/2016 01:18:53 PM,02/29/2016 01:44:32 PM,02/29/2016 02:10:04 PM,Code 2 Transport,02/29/2016 02:49:27 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160601768-KM09 -120910230,E39,12030169,Medical Incident,03/31/2012,03/31/2012,03/31/2012 03:53:04 PM,03/31/2012 03:55:47 PM,03/31/2012 03:57:38 PM,03/31/2012 03:59:03 PM,03/31/2012 04:00:28 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,Other,03/31/2012 04:12:21 PM,100 Block of DORCHESTER WAY,SF,94127,B08,39,8573,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7410346351348, -122.462900219595)",120910230-E39 -140840038,84,14028187,Medical Incident,03/25/2014,03/24/2014,03/25/2014 04:06:56 AM,03/25/2014 04:07:19 AM,03/25/2014 04:07:55 AM,03/25/2014 04:08:21 AM,03/25/2014 04:27:36 AM,03/25/2014 04:38:54 AM,03/25/2014 05:11:27 AM,Code 2 Transport,03/25/2014 05:40:52 AM,1000 Block of POTRERO AVE,SAN FRANCISCO,94110,B10,37,2552,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7553586640566, -122.406682612344)",140840038-84 -121540258,T16,12051049,Alarms,06/02/2012,06/02/2012,06/02/2012 04:56:42 PM,06/02/2012 04:58:58 PM,06/02/2012 04:59:26 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 05:01:12 PM,400 Block of AVILA ST,SF,94123,B04,16,3664,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.8051805387731, -122.440515540396)",121540258-T16 -102710164,T09,10085972,Alarms,09/28/2010,09/28/2010,09/28/2010 11:27:32 AM,09/28/2010 11:28:42 AM,09/28/2010 11:28:57 AM,09/28/2010 11:29:59 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 11:34:54 AM,2000 Block of 3RD ST,SF,94107,B03,29,2466,3,3,3,false,,1,TRUCK,3,3,10,Potrero Hill,"(37.7636793846458, -122.388919450533)",102710164-T09 -160423434,KM03,16017020,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:25:51 PM,02/11/2016 08:25:51 PM,02/11/2016 08:26:10 PM,02/11/2016 08:26:37 PM,02/11/2016 08:34:01 PM,02/11/2016 08:45:08 PM,02/11/2016 08:50:31 PM,Code 2 Transport,02/11/2016 09:23:49 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7697840925361, -122.449122960735)",160423434-KM03 -160550220,71,16021857,Medical Incident,02/24/2016,02/23/2016,02/24/2016 02:32:37 AM,02/24/2016 02:34:48 AM,02/24/2016 02:35:40 AM,02/24/2016 02:35:51 AM,02/24/2016 02:40:51 AM,02/24/2016 02:53:42 AM,02/24/2016 02:57:18 AM,Code 2 Transport,02/24/2016 03:24:59 AM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160550220-71 -130820276,E08,13027530,Medical Incident,03/23/2013,03/23/2013,03/23/2013 07:03:33 PM,03/23/2013 07:04:12 PM,03/23/2013 07:04:34 PM,03/23/2013 07:04:45 PM,03/23/2013 07:06:21 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Other,03/23/2013 07:30:13 PM,0 Block of RIZAL ST,SF,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.781822111031, -122.399291985556)",130820276-E08 -111570383,92,11052081,Medical Incident,06/06/2011,06/06/2011,06/06/2011 11:26:23 PM,06/06/2011 11:28:35 PM,06/06/2011 11:29:06 PM,06/06/2011 11:29:39 PM,06/06/2011 11:32:09 PM,06/06/2011 11:49:52 PM,06/06/2011 11:56:11 PM,Code 2 Transport,06/07/2011 12:25:13 AM,200 Block of PIERCE ST,SF,94117,B05,6,3636,3,3,3,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7721629494815, -122.433760149864)",111570383-92 -132680173,E06,13090970,Medical Incident,09/25/2013,09/25/2013,09/25/2013 12:16:02 PM,09/25/2013 12:16:36 PM,09/25/2013 12:17:01 PM,09/25/2013 12:18:10 PM,09/25/2013 12:20:42 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 12:24:39 PM,3800 Block of 17TH ST,SF,94114,B05,6,5252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7627404204906, -122.43183970674)",132680173-E06 -120440254,74,12014762,Structure Fire,02/13/2012,02/13/2012,02/13/2012 06:07:38 PM,02/13/2012 06:08:01 PM,02/13/2012 06:08:26 PM,02/13/2012 06:08:40 PM,02/13/2012 06:19:25 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 06:55:29 PM,2900 Block of GRIFFITH ST,SF,94124,B10,17,6642,3,3,3,true,Fire,1,MEDIC,8,10,10,Bayview Hunters Point,"(37.7165907184231, -122.389695949457)",120440254-74 -160411613,57,16016434,Medical Incident,02/10/2016,02/10/2016,02/10/2016 12:06:54 PM,02/10/2016 12:07:59 PM,02/10/2016 12:08:28 PM,02/10/2016 12:12:27 PM,02/10/2016 12:12:40 PM,02/10/2016 12:17:41 PM,02/10/2016 12:28:03 PM,Code 2 Transport,02/10/2016 01:04:01 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",160411613-57 -123100139,E28,12103079,Medical Incident,11/05/2012,11/05/2012,11/05/2012 10:31:33 AM,11/05/2012 10:33:43 AM,11/05/2012 10:34:05 AM,11/05/2012 10:35:26 AM,11/05/2012 10:38:50 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 11:11:31 AM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,1,1,2,false,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",123100139-E28 -103520292,T16,10113063,Alarms,12/18/2010,12/18/2010,12/18/2010 05:50:03 PM,12/18/2010 05:51:34 PM,12/18/2010 05:51:43 PM,12/18/2010 05:53:58 PM,12/18/2010 05:59:08 PM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/18/2010 06:04:49 PM,1200 Block of GREENWICH ST,SF,94109,B01,41,1612,3,3,3,false,,1,TRUCK,3,1,2,Russian Hill,"(37.8009065560237, -122.420238670227)",103520292-T16 -110770111,E51,11025285,Medical Incident,03/18/2011,03/18/2011,03/18/2011 09:13:41 AM,03/18/2011 09:14:22 AM,03/18/2011 09:15:06 AM,03/18/2011 09:16:29 AM,03/18/2011 09:22:18 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 09:47:33 AM,1400 Block of BATTERY CAULFIELD RD,PR,94129,B99,51,4622,2,2,2,true,,1,ENGINE,1,7,2,Presidio,"(37.7918040090412, -122.475148791115)",110770111-E51 -160722726,89,16028713,Medical Incident,03/12/2016,03/12/2016,03/12/2016 06:30:46 PM,03/12/2016 06:31:45 PM,03/12/2016 06:35:30 PM,03/12/2016 06:35:38 PM,03/12/2016 06:43:37 PM,03/12/2016 06:53:38 PM,03/12/2016 07:12:12 PM,Code 2 Transport,03/12/2016 07:44:04 PM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160722726-89 -131070344,E19,13036105,Medical Incident,04/17/2013,04/17/2013,04/17/2013 07:45:33 PM,04/17/2013 07:46:37 PM,04/17/2013 07:47:06 PM,04/17/2013 07:48:48 PM,04/17/2013 07:52:04 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/17/2013 08:07:10 PM,500 Block of CRESTLAKE DR,SF,94132,B08,19,7551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7365196116791, -122.490602354914)",131070344-E19 -102330264,E03,10073416,Medical Incident,08/21/2010,08/21/2010,08/21/2010 07:57:20 PM,08/21/2010 07:57:47 PM,08/21/2010 07:58:16 PM,08/21/2010 08:00:06 PM,08/21/2010 08:01:34 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Fire,08/21/2010 08:07:53 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7866019512795, -122.419812186232)",102330264-E03 -131310178,E28,13044222,Traffic Collision,05/11/2013,05/11/2013,05/11/2013 11:30:33 AM,05/11/2013 11:30:36 AM,05/11/2013 11:31:29 AM,05/11/2013 11:31:47 AM,05/11/2013 11:35:40 AM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 11:43:53 AM,JEFFERSON ST/HYDE ST,SF,94109,B03,28,1616,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8075901055183, -122.420743268989)",131310178-E28 -160800949,53,16031737,Medical Incident,03/20/2016,03/20/2016,03/20/2016 08:42:57 AM,03/20/2016 08:43:56 AM,03/20/2016 08:44:26 AM,03/20/2016 08:44:43 AM,03/20/2016 08:49:09 AM,03/20/2016 08:59:13 AM,03/20/2016 09:08:41 AM,Code 2 Transport,03/20/2016 09:31:30 AM,HOWARD ST/MAIN ST,San Francisco,94105,B03,35,2114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160800949-53 -112320166,KM01,11076580,Medical Incident,08/20/2011,08/20/2011,08/20/2011 12:30:23 PM,08/20/2011 12:30:52 PM,08/20/2011 12:33:05 PM,04/25/2016 02:03:05 PM,08/20/2011 12:40:16 PM,08/20/2011 12:51:18 PM,08/20/2011 01:01:48 PM,Code 2 Transport,08/20/2011 01:43:56 PM,1100 Block of MARKET ST,SF,94102,B03,36,1552,2,2,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",112320166-KM01 -121750185,KM02,12058108,Medical Incident,06/23/2012,06/23/2012,06/23/2012 01:03:40 PM,06/23/2012 01:04:50 PM,06/23/2012 01:05:41 PM,06/23/2012 01:06:28 PM,06/23/2012 01:10:33 PM,06/23/2012 01:16:18 PM,06/23/2012 01:31:34 PM,Code 2 Transport,06/23/2012 01:43:44 PM,300 Block of MASON ST,SF,94102,B01,3,1411,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7864220856559, -122.409797430148)",121750185-KM02 -132160038,66,13072866,Medical Incident,08/04/2013,08/03/2013,08/04/2013 02:21:06 AM,08/04/2013 02:24:52 AM,08/04/2013 02:25:22 AM,08/04/2013 02:26:11 AM,08/04/2013 02:33:40 AM,08/04/2013 02:46:12 AM,08/04/2013 02:50:38 AM,Code 2 Transport,08/04/2013 03:11:28 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7853120673592, -122.42636663641)",132160038-66 -123100391,75,12103315,Medical Incident,11/05/2012,11/05/2012,11/05/2012 11:19:36 PM,11/05/2012 11:21:18 PM,11/05/2012 11:21:47 PM,11/05/2012 11:22:07 PM,11/05/2012 11:30:45 PM,11/05/2012 11:56:24 PM,11/06/2012 12:05:27 AM,Code 2 Transport,11/06/2012 12:33:14 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",123100391-75 -131440125,KM01,13048776,Medical Incident,05/24/2013,05/24/2013,05/24/2013 10:46:32 AM,05/24/2013 10:47:11 AM,05/24/2013 10:47:26 AM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Other,05/24/2013 10:49:49 AM,6500 Block of CALIFORNIA ST,SF,94121,B07,14,7227,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,7,1,Outer Richmond,"(37.783706451885, -122.487680139218)",131440125-KM01 -131670206,E20,13056712,Electrical Hazard,06/16/2013,06/16/2013,06/16/2013 01:28:20 PM,06/16/2013 01:30:31 PM,06/16/2013 01:31:26 PM,06/16/2013 01:32:38 PM,06/16/2013 01:36:53 PM,04/25/2016 01:52:16 PM,04/25/2016 01:52:16 PM,Fire,06/16/2013 01:42:46 PM,500 Block of BURNETT AVE,SF,94131,B06,24,5281,3,3,3,true,Alarm,1,ENGINE,1,6,8,Twin Peaks,"(37.7522092988242, -122.444482891572)",131670206-E20 -123630169,66,12121451,Medical Incident,12/28/2012,12/28/2012,12/28/2012 12:35:23 PM,12/28/2012 12:36:32 PM,12/28/2012 12:37:56 PM,12/28/2012 12:38:11 PM,12/28/2012 12:41:56 PM,12/28/2012 12:56:25 PM,12/28/2012 01:18:17 PM,Code 2 Transport,12/28/2012 01:51:42 PM,100 Block of MONTANA ST,SF,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7166719045495, -122.457576023074)",123630169-66 -103230361,E37,10103622,Medical Incident,11/19/2010,11/19/2010,11/19/2010 09:01:37 PM,11/19/2010 09:07:11 PM,11/19/2010 09:07:24 PM,11/19/2010 09:08:08 PM,11/19/2010 09:09:44 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Other,11/19/2010 09:18:22 PM,600 Block of WISCONSIN ST,SF,94107,B10,37,2521,3,3,3,false,,1,ENGINE,1,10,10,Potrero Hill,"(37.7585715950261, -122.399129212862)",103230361-E37 -131360079,55,13045789,Medical Incident,05/16/2013,05/15/2013,05/16/2013 07:33:44 AM,05/16/2013 07:34:53 AM,05/16/2013 07:35:25 AM,05/16/2013 07:35:55 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/16/2013 07:44:47 AM,100 Block of GIRARD ST,SF,94134,B10,42,6341,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7303933049122, -122.40577188604)",131360079-55 -130950250,E13,13031864,Medical Incident,04/05/2013,04/05/2013,04/05/2013 03:04:21 PM,04/05/2013 03:05:28 PM,04/05/2013 03:06:27 PM,04/05/2013 03:07:16 PM,04/05/2013 03:10:03 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,No Merit,04/05/2013 03:11:39 PM,200 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7897614265442, -122.404814371149)",130950250-E13 -121000372,96,12033301,Medical Incident,04/09/2012,04/09/2012,04/09/2012 08:48:00 PM,04/09/2012 08:50:53 PM,04/09/2012 08:52:22 PM,04/09/2012 08:52:48 PM,04/09/2012 08:59:43 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,No Merit,04/09/2012 09:22:01 PM,FOLSOM ST/5TH ST,SF,94107,B03,1,2244,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",121000372-96 -121120343,E43,12037266,Other,04/21/2012,04/21/2012,04/21/2012 07:14:58 PM,04/21/2012 07:15:17 PM,04/21/2012 07:15:26 PM,04/21/2012 07:16:53 PM,04/21/2012 07:21:08 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Fire,04/21/2012 07:38:42 PM,0 Block of NORTON ST,SF,94112,B09,43,6117,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7250514707571, -122.435709128534)",121120343-E43 -160850126,65,16033614,Medical Incident,03/25/2016,03/24/2016,03/25/2016 12:58:44 AM,03/25/2016 12:58:44 AM,03/25/2016 12:59:25 AM,03/25/2016 01:01:37 AM,03/25/2016 01:12:05 AM,03/25/2016 02:15:52 AM,03/25/2016 01:41:48 AM,Code 2 Transport,03/25/2016 02:52:25 AM,1400 Block of CARROLL AVE,San Francisco,94124,B10,17,6615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7233380868371, -122.390595923329)",160850126-65 -121180353,E38,12039226,Medical Incident,04/27/2012,04/27/2012,04/27/2012 06:56:26 PM,04/27/2012 06:57:31 PM,04/27/2012 06:57:37 PM,04/27/2012 06:59:20 PM,04/27/2012 07:02:37 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 07:25:07 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121180353-E38 -111980240,KM04,11065374,Medical Incident,07/17/2011,07/17/2011,07/17/2011 04:30:43 PM,07/17/2011 04:32:22 PM,07/17/2011 04:34:32 PM,07/17/2011 04:38:45 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 04:38:54 PM,100 Block of 6TH AVE,SF,94118,B07,31,7126,1,1,2,false,,1,PRIVATE,2,7,2,Inner Richmond,"(37.7858353536862, -122.464563713387)",111980240-KM04 -110010098,KM15,11000074,Structure Fire,01/01/2011,12/31/2010,01/01/2011 01:27:50 AM,01/01/2011 01:28:08 AM,01/01/2011 01:28:57 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,04/25/2016 02:06:49 PM,900 Block of MONTGOMERY ST,SF,94133,B01,13,1231,3,3,3,false,,2,PRIVATE,35,1,3,North Beach,"(37.7976045922032, -122.403668204308)",110010098-KM15 -160072835,KM04,16002944,Medical Incident,01/07/2016,01/07/2016,01/07/2016 05:36:18 PM,01/07/2016 05:37:24 PM,01/07/2016 05:37:54 PM,01/07/2016 05:38:19 PM,01/07/2016 05:51:04 PM,01/07/2016 06:05:41 PM,01/07/2016 06:13:40 PM,Code 2 Transport,01/07/2016 06:33:29 PM,1800 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.777323102471, -122.442510566382)",160072835-KM04 -121780400,E38,12059442,Medical Incident,06/26/2012,06/26/2012,06/26/2012 10:51:06 PM,06/26/2012 10:51:06 PM,06/26/2012 10:51:43 PM,06/26/2012 10:53:15 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 10:53:40 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",121780400-E38 -131930178,E29,13065648,Citizen Assist / Service Call,07/12/2013,07/12/2013,07/12/2013 01:52:21 PM,07/12/2013 01:55:49 PM,07/12/2013 01:59:53 PM,07/12/2013 02:00:35 PM,07/12/2013 02:04:08 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Fire,07/12/2013 02:12:12 PM,900 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",131930178-E29 -130510250,KM06,13017308,Medical Incident,02/20/2013,02/20/2013,02/20/2013 03:56:59 PM,02/20/2013 03:57:16 PM,02/20/2013 03:58:44 PM,02/20/2013 03:59:02 PM,02/20/2013 04:00:30 PM,02/20/2013 04:22:47 PM,02/20/2013 04:40:52 PM,Code 2 Transport,02/20/2013 05:10:26 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",130510250-KM06 -160463686,68,16018704,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:46:47 PM,02/15/2016 09:49:21 PM,02/15/2016 09:49:33 PM,02/15/2016 09:49:54 PM,02/15/2016 09:59:01 PM,02/15/2016 10:07:50 PM,02/15/2016 10:26:34 PM,Code 2 Transport,02/15/2016 10:49:39 PM,BUSH ST/KEARNY ST,San Francisco,94104,B01,13,1235,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7907600949382, -122.404030725132)",160463686-68 -121740070,68,12057673,Medical Incident,06/22/2012,06/22/2012,06/22/2012 08:42:21 AM,06/22/2012 08:44:19 AM,06/22/2012 08:44:27 AM,06/22/2012 08:44:36 AM,06/22/2012 08:48:16 AM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/22/2012 08:50:31 AM,11TH ST/MARKET ST,SF,94103,B02,36,3211,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",121740070-68 -121670272,79,12055477,Medical Incident,06/15/2012,06/15/2012,06/15/2012 05:57:14 PM,06/15/2012 05:59:11 PM,06/15/2012 06:00:56 PM,06/15/2012 06:03:07 PM,04/25/2016 01:58:11 PM,06/15/2012 06:36:22 PM,06/15/2012 06:46:46 PM,Code 2 Transport,06/15/2012 07:04:35 PM,200 Block of LELAND AVE,SF,94134,B10,44,6254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7130215958017, -122.408889222653)",121670272-79 -122490010,T09,12082208,Structure Fire,09/05/2012,09/04/2012,09/05/2012 12:27:53 AM,09/05/2012 12:28:42 AM,09/05/2012 12:29:09 AM,09/05/2012 12:36:04 AM,09/05/2012 12:41:29 AM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/05/2012 12:45:29 AM,1700 Block of BANCROFT AVE,SF,94124,B10,17,6537,3,3,3,false,Fire,1,TRUCK,5,10,10,Bayview Hunters Point,"(37.7268724745843, -122.394902680548)",122490010-T09 -133570005,E36,13121219,Medical Incident,12/23/2013,12/22/2013,12/23/2013 12:30:47 AM,12/23/2013 12:31:54 AM,12/23/2013 12:32:09 AM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 12:34:01 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7760099210785, -122.412889415461)",133570005-E36 -113520013,59,11116708,Medical Incident,12/18/2011,12/17/2011,12/18/2011 12:46:55 AM,12/18/2011 12:47:50 AM,12/18/2011 12:48:07 AM,12/18/2011 12:48:16 AM,12/18/2011 12:54:19 AM,12/18/2011 01:07:30 AM,12/18/2011 01:23:05 AM,Code 2 Transport,12/18/2011 01:54:30 AM,CLAY ST/DRUMM ST,SF,94111,B01,13,1116,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",113520013-59 -102850194,83,10090745,Medical Incident,10/12/2010,10/12/2010,10/12/2010 11:35:25 AM,10/12/2010 11:36:32 AM,10/12/2010 11:39:26 AM,10/12/2010 11:39:47 AM,10/12/2010 11:47:02 AM,10/12/2010 12:03:06 PM,04/25/2016 02:08:08 PM,Code 2 Transport,10/12/2010 12:23:27 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,1,1,2,true,,1,MEDIC,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",102850194-83 -160080987,KM08,16003149,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:12:40 AM,01/08/2016 09:14:44 AM,01/08/2016 09:15:09 AM,01/08/2016 09:15:41 AM,01/08/2016 09:35:52 AM,01/08/2016 09:50:38 AM,01/08/2016 10:18:29 AM,Code 2 Transport,01/08/2016 10:44:30 AM,3300 Block of GEARY BLVD,San Francisco,94118,B07,10,4453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7815739713841, -122.45542879534)",160080987-KM08 -112530164,RS1,11083442,Medical Incident,09/10/2011,09/10/2011,09/10/2011 10:57:30 AM,09/10/2011 10:59:20 AM,09/10/2011 10:59:49 AM,04/25/2016 02:02:44 PM,09/10/2011 11:04:10 AM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 11:05:08 AM,MISSION ST/9TH ST,SF,94103,B02,36,2336,3,3,3,false,,1,RESCUE SQUAD,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112530164-RS1 -160491088,84,16019676,Medical Incident,02/18/2016,02/18/2016,02/18/2016 10:06:15 AM,02/18/2016 10:07:40 AM,02/18/2016 10:07:56 AM,02/18/2016 10:09:29 AM,02/18/2016 10:17:26 AM,02/18/2016 10:32:43 AM,02/18/2016 10:54:38 AM,Code 2 Transport,02/18/2016 11:58:12 AM,0 Block of CONNECTICUT ST,San Francisco,94107,B03,29,2425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7657165510162, -122.397869370472)",160491088-84 -131170081,55,13039276,Medical Incident,04/27/2013,04/27/2013,04/27/2013 09:10:07 AM,04/27/2013 09:10:38 AM,04/27/2013 09:10:45 AM,04/27/2013 09:11:31 AM,04/25/2016 01:53:06 PM,04/27/2013 09:28:38 AM,04/27/2013 09:52:30 AM,Code 2 Transport,04/27/2013 10:34:27 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",131170081-55 -112470386,E01,11081624,Medical Incident,09/04/2011,09/04/2011,09/04/2011 11:36:12 PM,09/04/2011 11:37:04 PM,09/04/2011 11:37:35 PM,09/04/2011 11:38:12 PM,09/04/2011 11:40:06 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 11:44:17 PM,200 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",112470386-E01 -103110293,T16,10099838,Structure Fire,11/07/2010,11/07/2010,11/07/2010 06:26:43 PM,11/07/2010 06:28:40 PM,11/07/2010 06:29:07 PM,11/07/2010 06:30:15 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 06:35:48 PM,100 Block of LAUREL ST,SF,94118,B04,10,4423,3,3,3,false,,1,TRUCK,8,7,2,Presidio Heights,"(37.7899496375617, -122.450811842875)",103110293-T16 -112800291,T05,11092763,Alarms,10/07/2011,10/07/2011,10/07/2011 05:29:50 PM,10/07/2011 05:30:53 PM,10/07/2011 05:31:57 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,04/25/2016 02:02:17 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,TRUCK,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",112800291-T05 -140270041,81,14009085,Medical Incident,01/27/2014,01/26/2014,01/27/2014 06:27:58 AM,01/27/2014 06:30:11 AM,01/27/2014 06:30:37 AM,01/27/2014 06:31:02 AM,01/27/2014 06:42:15 AM,01/27/2014 07:07:13 AM,01/27/2014 07:30:10 AM,Code 2 Transport,01/27/2014 08:01:41 AM,2300 Block of 40TH AVE,SF,94116,B08,18,7621,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7429942454276, -122.498185928463)",140270041-81 -160722194,71,16028654,Medical Incident,03/12/2016,03/12/2016,03/12/2016 03:59:06 PM,03/12/2016 04:01:10 PM,03/12/2016 04:02:32 PM,03/12/2016 04:02:56 PM,03/12/2016 04:32:39 PM,03/12/2016 04:57:22 PM,03/12/2016 05:00:12 PM,Code 2 Transport,03/12/2016 05:48:46 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160722194-71 -122110142,T09,12070055,Other,07/29/2012,07/29/2012,07/29/2012 12:28:43 PM,07/29/2012 12:29:26 PM,07/29/2012 12:29:36 PM,07/29/2012 12:30:21 PM,07/29/2012 12:34:13 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Fire,07/29/2012 12:52:05 PM,100 Block of YALE ST,SF,94134,B09,42,635,3,3,3,false,Alarm,1,TRUCK,1,9,9,Excelsior,"(37.7273031621958, -122.417591901483)",122110142-T09 -160130458,KM07,16005065,Medical Incident,01/13/2016,01/12/2016,01/13/2016 06:06:47 AM,01/13/2016 06:08:26 AM,01/13/2016 06:11:30 AM,01/13/2016 06:12:10 AM,01/13/2016 06:24:11 AM,01/13/2016 06:24:23 AM,01/13/2016 06:42:01 AM,Code 2 Transport,01/13/2016 06:52:29 AM,1300 Block of 9TH AVE,San Francisco,94122,B08,22,7334,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,5,Inner Sunset,"(37.7631090580661, -122.466176505201)",160130458-KM07 -160221544,AM10,16008757,Medical Incident,01/22/2016,01/22/2016,01/22/2016 12:04:04 PM,01/22/2016 12:06:04 PM,01/22/2016 12:06:18 PM,01/22/2016 12:06:57 PM,01/22/2016 12:13:37 PM,01/22/2016 12:31:30 PM,01/22/2016 12:55:28 PM,Code 2 Transport,01/22/2016 01:26:07 PM,600 Block of MONTEREY BL,San Francisco,94112,B09,15,8235,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7314401007597, -122.450004426316)",160221544-AM10 -122590218,60,12085651,Medical Incident,09/15/2012,09/15/2012,09/15/2012 04:15:36 PM,09/15/2012 04:15:36 PM,09/15/2012 04:15:53 PM,09/15/2012 04:16:13 PM,09/15/2012 04:31:05 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,No Merit,09/15/2012 04:36:35 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",122590218-60 -122480272,AM20,12082078,Medical Incident,09/04/2012,09/04/2012,09/04/2012 05:02:21 PM,09/04/2012 05:08:05 PM,09/04/2012 05:08:28 PM,09/04/2012 05:09:12 PM,09/04/2012 05:16:46 PM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Other,09/04/2012 05:18:34 PM,600 Block of ELLSWORTH ST,SF,94110,B06,32,5743,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7353755947006, -122.414812838878)",122480272-AM20 -160210197,76,16008225,Medical Incident,01/21/2016,01/20/2016,01/21/2016 01:38:49 AM,01/21/2016 01:38:49 AM,01/21/2016 01:40:00 AM,01/21/2016 01:40:07 AM,01/21/2016 01:50:31 AM,01/21/2016 02:05:40 AM,01/21/2016 02:11:43 AM,Code 2 Transport,01/21/2016 02:29:47 AM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830416107165, -122.415856533326)",160210197-76 -122430121,T02,12080306,Structure Fire,08/30/2012,08/30/2012,08/30/2012 10:38:06 AM,08/30/2012 10:38:27 AM,08/30/2012 10:38:55 AM,08/30/2012 10:39:47 AM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,04/25/2016 01:57:00 PM,200 Block of THE EMBARCADERO,SF,94111,B01,13,901,3,3,3,false,Fire,1,TRUCK,8,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",122430121-T02 -132220271,67,13075037,Medical Incident,08/10/2013,08/10/2013,08/10/2013 04:54:31 PM,08/10/2013 04:57:02 PM,08/10/2013 04:57:22 PM,08/10/2013 04:57:32 PM,08/10/2013 05:01:00 PM,08/10/2013 05:08:45 PM,08/10/2013 05:12:08 PM,Code 2 Transport,08/10/2013 05:27:24 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",132220271-67 -122970273,E01,12098563,Alarms,10/23/2012,10/23/2012,10/23/2012 06:29:20 PM,10/23/2012 06:30:15 PM,10/23/2012 06:30:22 PM,10/23/2012 06:32:31 PM,10/23/2012 06:34:32 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 06:38:42 PM,1000 Block of MARKET ST,SF,94103,B03,1,1454,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",122970273-E01 -111050317,T13,11034885,Medical Incident,04/15/2011,04/15/2011,04/15/2011 08:39:05 PM,04/15/2011 08:40:06 PM,04/15/2011 08:40:20 PM,04/15/2011 08:41:53 PM,04/15/2011 08:43:39 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 08:48:47 PM,BATTERY ST/SACRAMENTO ST,SF,94104,B01,13,1141,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7941342341045, -122.400148778875)",111050317-T13 -112850083,E08,11094303,Medical Incident,10/12/2011,10/12/2011,10/12/2011 08:29:26 AM,10/12/2011 08:29:31 AM,10/12/2011 08:29:53 AM,10/12/2011 08:31:31 AM,10/12/2011 08:35:21 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 08:46:27 AM,HARRISON ST/HARRIET ST,SF,94103,B03,8,2254,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7768462331312, -122.404610031616)",112850083-E08 -103000076,E07,10095694,Traffic Collision,10/27/2010,10/27/2010,10/27/2010 08:24:59 AM,10/27/2010 08:26:27 AM,10/27/2010 08:30:00 AM,10/27/2010 08:30:46 AM,10/27/2010 08:34:29 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 08:41:08 AM,15TH ST/DE HARO ST,SF,94107,B02,29,2353,2,2,2,true,,1,ENGINE,1,2,10,Mission Bay,"(37.7674307778584, -122.401842505041)",103000076-E07 -160431402,63,16017258,Medical Incident,02/12/2016,02/12/2016,02/12/2016 11:29:20 AM,02/12/2016 11:29:34 AM,02/12/2016 11:29:46 AM,02/12/2016 11:29:57 AM,02/12/2016 11:43:05 AM,02/12/2016 11:54:14 AM,02/12/2016 12:21:33 PM,Code 2 Transport,02/12/2016 01:02:50 PM,1500 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8271,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7275315597461, -122.43567234398)",160431402-63 -160833541,60,16033105,Medical Incident,03/23/2016,03/23/2016,03/23/2016 07:24:21 PM,03/23/2016 07:25:31 PM,03/23/2016 07:25:43 PM,03/23/2016 07:26:10 PM,03/23/2016 07:34:25 PM,03/23/2016 08:00:09 PM,03/23/2016 08:25:00 PM,Code 2 Transport,03/23/2016 09:11:31 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160833541-60 -133540040,E36,13120146,Structure Fire,12/20/2013,12/19/2013,12/20/2013 03:56:23 AM,12/20/2013 03:58:15 AM,12/20/2013 04:02:07 AM,12/20/2013 04:02:58 AM,12/20/2013 04:05:07 AM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/20/2013 05:46:48 AM,300 Block of DIVISADERO ST,SF,94117,B05,21,4144,3,3,3,true,Fire,1,ENGINE,6,5,5,Haight Ashbury,"(37.7726538451108, -122.437444929872)",133540040-E36 -102540353,94,10080436,Medical Incident,09/11/2010,09/11/2010,09/11/2010 08:37:08 PM,09/11/2010 08:38:53 PM,09/11/2010 08:39:40 PM,09/11/2010 08:41:14 PM,09/11/2010 08:51:14 PM,09/11/2010 09:02:21 PM,09/11/2010 09:39:07 PM,Code 2 Transport,09/11/2010 09:58:48 PM,TABER PL/3RD ST,SF,94107,B03,8,2173,1,1,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7810621398035, -122.395517753822)",102540353-94 -120790207,78,12026250,Medical Incident,03/19/2012,03/19/2012,03/19/2012 01:35:50 PM,03/19/2012 01:37:14 PM,03/19/2012 01:37:23 PM,03/19/2012 01:37:41 PM,03/19/2012 01:44:38 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 01:52:32 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120790207-78 -133030263,T01,13102994,Structure Fire,10/30/2013,10/30/2013,10/30/2013 04:37:14 PM,10/30/2013 04:37:15 PM,10/30/2013 04:38:16 PM,10/30/2013 04:39:33 PM,10/30/2013 04:41:22 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 04:42:16 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",133030263-T01 -133410021,78,13115479,Medical Incident,12/07/2013,12/06/2013,12/07/2013 12:53:32 AM,12/07/2013 12:54:55 AM,12/07/2013 12:56:24 AM,12/07/2013 12:56:43 AM,12/07/2013 01:21:02 AM,12/07/2013 01:36:00 AM,12/07/2013 01:48:04 AM,Code 2 Transport,12/07/2013 02:12:14 AM,2100 Block of JENNINGS ST,SF,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",133410021-78 -112270172,KM01,11075009,Medical Incident,08/15/2011,08/15/2011,08/15/2011 11:39:16 AM,08/15/2011 11:39:39 AM,08/15/2011 11:40:11 AM,08/15/2011 11:41:04 AM,08/15/2011 11:52:40 AM,08/15/2011 12:14:06 PM,08/15/2011 12:20:24 PM,Code 3 Transport,08/15/2011 01:01:08 PM,2000 Block of THOMAS AVE,SF,94124,B10,42,6454,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7344696105327, -122.398897723272)",112270172-KM01 -111990008,83,11065501,Traffic Collision,07/18/2011,07/17/2011,07/18/2011 12:47:40 AM,07/18/2011 12:47:40 AM,07/18/2011 12:47:51 AM,07/18/2011 01:00:46 AM,07/18/2011 01:09:00 AM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Against Medical Advice,07/18/2011 01:51:20 AM,PAGE ST/OCTAVIA ST,SF,94102,B02,36,3313,3,3,3,true,,1,MEDIC,3,2,5,Hayes Valley,"(37.7738892381955, -122.42394706123)",111990008-83 -132640109,T03,13089451,Medical Incident,09/21/2013,09/21/2013,09/21/2013 08:01:52 AM,09/21/2013 08:03:34 AM,09/21/2013 08:03:51 AM,09/21/2013 08:06:04 AM,09/21/2013 08:08:39 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Other,09/21/2013 08:11:15 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,6,Tenderloin,"(37.7825297445725, -122.412384547628)",132640109-T03 -103600098,KM05,10115470,Medical Incident,12/26/2010,12/26/2010,12/26/2010 11:31:16 AM,12/26/2010 11:31:49 AM,12/26/2010 11:32:20 AM,12/26/2010 11:33:04 AM,12/26/2010 11:38:39 AM,12/26/2010 11:56:27 AM,12/26/2010 12:06:27 PM,Code 2 Transport,12/26/2010 12:27:05 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",103600098-KM05 -160180285,78,16007098,Medical Incident,01/18/2016,01/17/2016,01/18/2016 03:15:17 AM,01/18/2016 03:16:36 AM,01/18/2016 03:18:05 AM,01/18/2016 03:18:51 AM,01/18/2016 03:26:17 AM,01/18/2016 03:42:01 AM,01/18/2016 04:17:21 AM,Code 2 Transport,01/18/2016 04:52:55 AM,700 Block of LAKEVIEW AV,San Francisco,94112,B09,33,8462,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7181751963466, -122.4596980221)",160180285-78 -160460476,62,16018398,Medical Incident,02/15/2016,02/14/2016,02/15/2016 04:47:33 AM,02/15/2016 04:49:09 AM,02/15/2016 04:50:16 AM,02/15/2016 04:50:23 AM,02/15/2016 04:58:45 AM,02/15/2016 05:19:26 AM,02/15/2016 05:57:45 AM,Code 2 Transport,02/15/2016 06:02:10 AM,BACON ST/HAMILTON ST,San Francisco,94134,B10,42,6335,3,A,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7260836951517, -122.409526867427)",160460476-62 -131390034,AR1,13046875,Structure Fire,05/19/2013,05/18/2013,05/19/2013 01:36:35 AM,05/19/2013 01:37:16 AM,05/19/2013 01:46:49 AM,05/19/2013 01:51:01 AM,05/19/2013 01:58:51 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 04:41:44 AM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Fire,2,INVESTIGATION,20,2,8,Mission,"(37.7641044099588, -122.42187797405)",131390034-AR1 -140450192,E48,14015321,Medical Incident,02/14/2014,02/14/2014,02/14/2014 01:32:25 PM,02/14/2014 01:36:05 PM,02/14/2014 01:38:33 PM,02/14/2014 01:39:55 PM,02/14/2014 01:42:35 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Patient Declined Transport,02/14/2014 02:03:13 PM,1400 Block of GATEVIEW AVE,TI,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,ENGINE,2,None,6,Treasure Island,"(37.8287013117818, -122.372417311741)",140450192-E48 -103000391,B03,10095949,Odor (Strange / Unknown),10/27/2010,10/27/2010,10/27/2010 11:06:15 PM,10/27/2010 11:09:22 PM,10/27/2010 11:10:34 PM,10/27/2010 11:12:30 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Other,10/27/2010 11:16:45 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,CHIEF,4,3,6,South of Market,"(37.7801303744947, -122.409871449933)",103000391-B03 -102830375,71,10090224,Medical Incident,10/10/2010,10/10/2010,10/10/2010 09:23:21 PM,10/10/2010 09:24:09 PM,10/10/2010 09:24:29 PM,10/10/2010 09:24:43 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 09:30:49 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",102830375-71 -160901559,53,16035694,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:32:16 AM,03/30/2016 11:32:16 AM,03/30/2016 11:33:19 AM,03/30/2016 11:33:30 AM,03/30/2016 11:36:55 AM,03/30/2016 11:57:39 AM,03/30/2016 12:16:24 PM,Code 2 Transport,03/30/2016 01:28:21 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160901559-53 -121210111,AM16,12040124,Medical Incident,04/30/2012,04/30/2012,04/30/2012 09:56:22 AM,04/30/2012 09:57:00 AM,04/30/2012 09:57:22 AM,04/30/2012 09:58:16 AM,04/30/2012 10:01:07 AM,04/30/2012 10:09:43 AM,04/30/2012 10:27:31 AM,Code 2 Transport,04/30/2012 11:18:55 AM,100 Block of DOLORES ST,SF,94114,B02,6,5127,3,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.767452628597, -122.42680873617)",121210111-AM16 -160041939,50,16001617,Medical Incident,01/04/2016,01/04/2016,01/04/2016 01:50:01 PM,01/04/2016 01:50:01 PM,01/04/2016 01:50:56 PM,01/04/2016 01:51:06 PM,01/04/2016 01:54:55 PM,01/04/2016 02:06:07 PM,01/04/2016 02:18:58 PM,Code 2 Transport,01/04/2016 02:51:38 PM,SLOAT BL/WEST PORTAL AV,San Francisco,94132,B08,39,8555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7347068117722, -122.471569339996)",160041939-50 -160180249,AM18,16007093,Medical Incident,01/18/2016,01/17/2016,01/18/2016 02:45:01 AM,01/18/2016 02:45:01 AM,01/18/2016 02:45:12 AM,01/18/2016 02:45:55 AM,01/18/2016 02:50:36 AM,01/18/2016 02:59:09 AM,01/18/2016 03:09:49 AM,Code 2 Transport,01/18/2016 03:26:47 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160180249-AM18 -160372854,79,16014808,Medical Incident,02/06/2016,02/06/2016,02/06/2016 05:10:44 PM,02/06/2016 05:11:15 PM,02/06/2016 05:12:06 PM,02/06/2016 05:12:18 PM,02/06/2016 05:13:43 PM,02/06/2016 05:26:45 PM,02/06/2016 05:57:27 PM,Code 2 Transport,02/06/2016 06:36:37 PM,3RD ST/LA SALLE AV,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371695334489, -122.389864463351)",160372854-79 -121450007,81,12047986,Medical Incident,05/24/2012,05/23/2012,05/24/2012 12:55:27 AM,05/24/2012 12:57:45 AM,05/24/2012 12:59:10 AM,05/24/2012 12:59:34 AM,05/24/2012 01:08:33 AM,05/24/2012 01:23:35 AM,05/24/2012 01:30:00 AM,Code 2 Transport,05/24/2012 02:00:35 AM,18TH ST/VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7617009099893, -122.421578400735)",121450007-81 -111170165,E23,11038610,Water Rescue,04/27/2011,04/27/2011,04/27/2011 01:06:34 PM,04/27/2011 01:06:53 PM,04/27/2011 01:07:18 PM,04/27/2011 01:08:26 PM,04/27/2011 01:12:52 PM,04/27/2011 01:45:25 PM,04/27/2011 01:45:32 PM,Other,04/27/2011 02:40:12 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",111170165-E23 -160852090,KM01,16033809,Medical Incident,03/25/2016,03/25/2016,03/25/2016 02:10:47 PM,03/25/2016 02:11:40 PM,03/25/2016 02:12:32 PM,03/25/2016 02:13:45 PM,03/25/2016 02:21:39 PM,03/25/2016 02:49:28 PM,03/25/2016 03:11:40 PM,Code 2 Transport,03/25/2016 04:07:39 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160852090-KM01 -103020074,T03,10096405,Other,10/29/2010,10/29/2010,10/29/2010 08:25:31 AM,10/29/2010 08:25:31 AM,10/29/2010 08:25:45 AM,10/29/2010 08:27:59 AM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Unable to Locate,10/29/2010 08:31:19 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",103020074-T03 -102930288,E05,10093529,Medical Incident,10/20/2010,10/20/2010,10/20/2010 05:41:31 PM,10/20/2010 05:43:06 PM,10/20/2010 05:43:35 PM,10/20/2010 05:45:02 PM,10/20/2010 05:45:50 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/20/2010 05:57:10 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,2,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",102930288-E05 -123520264,59,12117805,Medical Incident,12/17/2012,12/17/2012,12/17/2012 03:17:39 PM,12/17/2012 03:17:39 PM,12/17/2012 03:17:39 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,04/25/2016 01:55:16 PM,Patient Declined Transport,12/17/2012 03:18:56 PM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",123520264-59 -160251530,75,16009903,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:41:36 AM,01/25/2016 11:43:29 AM,01/25/2016 11:43:39 AM,01/25/2016 11:43:44 AM,01/25/2016 11:47:53 AM,01/25/2016 12:10:25 PM,01/25/2016 12:41:48 PM,Code 2 Transport,01/25/2016 12:56:37 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160251530-75 -160541194,KM06,16021526,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:26:54 AM,02/23/2016 10:28:04 AM,02/23/2016 10:28:30 AM,02/23/2016 10:29:21 AM,02/23/2016 10:43:53 AM,02/23/2016 11:47:38 AM,02/23/2016 11:47:41 AM,Code 2 Transport,02/23/2016 11:51:05 AM,3600 Block of WEBSTER ST,San Francisco,94123,B04,16,3455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8042987269017, -122.43519491895)",160541194-KM06 -123420142,76,12114101,Medical Incident,12/07/2012,12/07/2012,12/07/2012 11:04:24 AM,12/07/2012 11:06:34 AM,12/07/2012 11:07:15 AM,12/07/2012 11:07:44 AM,12/07/2012 11:13:07 AM,12/07/2012 11:26:41 AM,12/07/2012 11:43:02 AM,Fire,12/07/2012 12:28:59 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",123420142-76 -140350214,B03,14011838,Structure Fire,02/04/2014,02/04/2014,02/04/2014 01:10:27 PM,02/04/2014 01:12:04 PM,02/04/2014 01:12:36 PM,02/04/2014 01:14:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Other,02/04/2014 01:19:09 PM,800 Block of RHODE ISLAND ST,SF,94107,B10,37,2522,,3,3,false,Alarm,1,CHIEF,6,10,10,Potrero Hill,"(37.7590349138891, -122.40208714693)",140350214-B03 -121770092,B07,12058818,Alarms,06/25/2012,06/25/2012,06/25/2012 08:41:49 AM,06/25/2012 08:42:54 AM,06/25/2012 08:43:00 AM,06/25/2012 08:44:10 AM,06/25/2012 08:47:43 AM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/25/2012 08:49:03 AM,100 Block of BEAUMONT AVE,SF,94118,B07,21,4557,3,3,3,false,Alarm,1,CHIEF,2,5,1,Lone Mountain/USF,"(37.7783340472822, -122.454387737988)",121770092-B07 -160690170,70,16027304,Medical Incident,03/09/2016,03/08/2016,03/09/2016 01:32:33 AM,03/09/2016 01:34:06 AM,03/09/2016 01:34:24 AM,03/09/2016 01:35:15 AM,03/09/2016 01:46:52 AM,03/09/2016 02:07:55 AM,03/09/2016 02:19:28 AM,Code 2 Transport,03/09/2016 03:07:17 AM,2600 Block of 17TH AVE,San Francisco,94116,B08,40,7411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7384875345339, -122.473157752879)",160690170-70 -122480035,E01,12081867,Structure Fire,09/04/2012,09/03/2012,09/04/2012 02:23:12 AM,09/04/2012 02:26:33 AM,09/04/2012 02:26:45 AM,09/04/2012 02:27:56 AM,09/04/2012 02:29:30 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/04/2012 02:43:08 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Fire,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122480035-E01 -111570049,67,11051806,Medical Incident,06/06/2011,06/05/2011,06/06/2011 04:38:28 AM,06/06/2011 04:38:51 AM,06/06/2011 04:39:48 AM,06/06/2011 04:41:47 AM,06/06/2011 04:41:56 AM,06/06/2011 04:48:55 AM,04/25/2016 02:04:17 PM,Code 2 Transport,06/06/2011 05:07:32 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",111570049-67 -113410399,T07,11113231,Structure Fire,12/07/2011,12/07/2011,12/07/2011 09:57:09 PM,12/07/2011 09:57:38 PM,12/07/2011 09:58:01 PM,12/07/2011 09:59:25 PM,12/07/2011 10:01:26 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/07/2011 11:31:04 PM,3100 Block of 21ST ST,SF,94110,B06,7,5455,3,3,3,false,,1,TRUCK,5,6,9,Mission,"(37.7570133986695, -122.418351237622)",113410399-T07 -131880085,82,13064027,Medical Incident,07/07/2013,07/07/2013,07/07/2013 08:30:12 AM,07/07/2013 08:31:31 AM,07/07/2013 08:33:07 AM,07/07/2013 08:33:44 AM,07/07/2013 08:42:41 AM,07/07/2013 09:01:53 AM,07/07/2013 09:14:32 AM,Code 2 Transport,07/07/2013 09:35:07 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",131880085-82 -102370231,E09,10074754,Structure Fire,08/25/2010,08/25/2010,08/25/2010 02:17:00 PM,08/25/2010 02:17:00 PM,08/25/2010 02:17:14 PM,08/25/2010 02:17:25 PM,08/25/2010 02:19:10 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 02:19:38 PM,BAYSHORE BL/JERROLD AV,SF,94124,B10,9,6375,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7472051668004, -122.403591771173)",102370231-E09 -130710310,T18,13023801,Structure Fire,03/12/2013,03/12/2013,03/12/2013 07:11:51 PM,03/12/2013 07:11:52 PM,03/12/2013 07:11:59 PM,03/12/2013 07:12:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 07:17:28 PM,GREAT HY/TARAVAL ST,SF,94116,B08,23,7731,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7416730182637, -122.506865451052)",130710310-T18 -122240114,T16,12074224,Medical Incident,08/11/2012,08/11/2012,08/11/2012 09:26:08 AM,08/11/2012 09:28:06 AM,08/11/2012 09:28:24 AM,08/11/2012 09:29:10 AM,08/11/2012 09:32:39 AM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 09:40:49 AM,1900 Block of GREENWICH ST,SF,94123,B04,16,3444,2,2,2,false,Potentially Life-Threatening,1,TRUCK,2,4,2,Marina,"(37.7994201230243, -122.431746985684)",122240114-T16 -122930012,E05,12096991,Medical Incident,10/19/2012,10/18/2012,10/19/2012 12:47:57 AM,10/19/2012 12:51:07 AM,10/19/2012 12:51:50 AM,10/19/2012 12:53:26 AM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 12:56:02 AM,LARKIN ST/ELLIS ST,SF,94109,B02,3,3115,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",122930012-E05 -160432758,58,16017394,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:25:55 PM,02/12/2016 05:26:55 PM,02/12/2016 05:27:23 PM,02/12/2016 05:27:46 PM,02/12/2016 05:38:24 PM,02/12/2016 05:41:56 PM,02/12/2016 05:44:34 PM,Code 2 Transport,02/12/2016 06:20:35 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160432758-58 -160351346,64,16013782,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:55:51 AM,02/04/2016 10:58:06 AM,02/04/2016 10:58:31 AM,02/04/2016 11:01:13 AM,02/04/2016 11:16:42 AM,02/04/2016 11:44:22 AM,02/04/2016 11:53:09 AM,Code 3 Transport,02/04/2016 01:07:36 PM,2200 Block of MARKET ST,San Francisco,94114,B05,6,5231,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",160351346-64 -160123682,72,16004975,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:08:09 PM,01/12/2016 10:10:00 PM,01/12/2016 10:10:17 PM,01/12/2016 10:12:18 PM,01/12/2016 10:18:42 PM,01/12/2016 10:33:36 PM,01/12/2016 10:47:43 PM,Code 2 Transport,01/12/2016 11:38:41 PM,300 Block of LELAND AV,San Francisco,94134,B09,44,6257,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7133783929319, -122.410639630746)",160123682-72 -131020286,E44,13034367,Medical Incident,04/12/2013,04/12/2013,04/12/2013 07:09:16 PM,04/12/2013 07:09:29 PM,04/12/2013 07:09:52 PM,04/12/2013 07:11:11 PM,04/12/2013 07:30:39 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/12/2013 07:34:57 PM,GILMAN AV/EARL ST,SF,94124,B10,17,6616,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7160909689518, -122.384402012195)",131020286-E44 -121850387,E03,12061800,Traffic Collision,07/03/2012,07/03/2012,07/03/2012 11:29:25 PM,07/03/2012 11:29:44 PM,07/03/2012 11:30:23 PM,07/03/2012 11:31:31 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Other,07/03/2012 11:33:15 PM,VAN NESS AV/MCALLISTER ST,SF,94102,B02,36,3164,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",121850387-E03 -121150049,93,12038042,Medical Incident,04/24/2012,04/23/2012,04/24/2012 07:41:32 AM,04/24/2012 07:43:34 AM,04/24/2012 07:43:45 AM,04/24/2012 07:44:02 AM,04/24/2012 07:52:52 AM,04/24/2012 08:22:56 AM,04/24/2012 08:38:01 AM,Code 2 Transport,04/24/2012 09:26:37 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121150049-93 -113220160,KM04,11106930,Medical Incident,11/18/2011,11/18/2011,11/18/2011 11:52:39 AM,11/18/2011 11:53:27 AM,11/18/2011 11:54:02 AM,11/18/2011 11:55:21 AM,11/18/2011 12:05:21 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Against Medical Advice,11/18/2011 12:09:26 PM,1300 Block of OAKDALE AVE,SF,94124,B10,17,653,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.732342352455, -122.386280381355)",113220160-KM04 -111210181,B01,11039941,Alarms,05/01/2011,05/01/2011,05/01/2011 12:26:21 PM,05/01/2011 12:27:15 PM,05/01/2011 12:27:30 PM,05/01/2011 12:28:27 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 12:33:30 PM,1100 Block of GREENWICH ST,SF,94109,B01,41,1612,3,3,3,false,,1,CHIEF,2,1,2,Russian Hill,"(37.8011579204345, -122.418225398663)",111210181-B01 -113020345,RC1,11100335,Medical Incident,10/29/2011,10/29/2011,10/29/2011 08:48:57 PM,10/29/2011 08:49:22 PM,10/29/2011 08:49:56 PM,04/25/2016 02:01:55 PM,10/29/2011 08:55:31 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/29/2011 08:55:53 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",113020345-RC1 -160423746,89,16017057,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:01:29 PM,02/11/2016 10:02:35 PM,02/11/2016 10:03:16 PM,02/11/2016 10:03:33 PM,02/11/2016 10:11:18 PM,02/11/2016 10:30:03 PM,02/11/2016 10:38:37 PM,Code 2 Transport,02/11/2016 11:16:32 PM,1200 Block of 16TH AVE,San Francisco,94122,B08,22,7367,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7646509775032, -122.473910121006)",160423746-89 -132560085,E28,13086461,Medical Incident,09/13/2013,09/13/2013,09/13/2013 08:12:16 AM,09/13/2013 08:12:27 AM,09/13/2013 08:13:00 AM,09/13/2013 08:14:21 AM,09/13/2013 08:16:20 AM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/13/2013 08:19:39 AM,FILBERT ST/LEAVENWORTH ST,SF,94133,B01,28,1532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8003407918188, -122.417586973965)",132560085-E28 -112850135,KM05,11094336,Medical Incident,10/12/2011,10/12/2011,10/12/2011 10:31:15 AM,10/12/2011 10:31:51 AM,10/12/2011 10:33:04 AM,10/12/2011 10:33:48 AM,10/12/2011 10:37:59 AM,10/12/2011 10:54:06 AM,10/12/2011 11:23:28 AM,Code 2 Transport,10/12/2011 11:51:49 AM,3200 Block of DIVISADERO ST,SF,94123,B04,16,4211,3,3,3,false,,1,PRIVATE,3,4,2,Marina,"(37.7994802939346, -122.442815337235)",112850135-KM05 -140370086,77,14012426,Medical Incident,02/06/2014,02/06/2014,02/06/2014 08:10:26 AM,02/06/2014 08:10:55 AM,02/06/2014 08:13:37 AM,02/06/2014 08:15:55 AM,02/06/2014 08:50:55 AM,02/06/2014 09:02:21 AM,02/06/2014 09:54:01 AM,Code 2 Transport,02/06/2014 09:57:52 AM,0 Block of 4TH ST,SF,94103,B03,1,2213,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7846551607137, -122.404580497913)",140370086-77 -133530148,AM02,13119887,Traffic Collision,12/19/2013,12/19/2013,12/19/2013 11:30:20 AM,12/19/2013 11:30:38 AM,12/19/2013 11:41:54 AM,04/25/2016 01:49:11 PM,12/19/2013 11:52:49 AM,12/19/2013 12:11:23 PM,12/19/2013 12:37:34 PM,Code 2 Transport,12/19/2013 01:25:43 PM,STOCKTON ST/JACKSON ST,SF,94133,B01,2,1332,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,6,1,3,Chinatown,"(37.7958237062045, -122.408253204894)",133530148-AM02 -133270420,KM07,13111278,Medical Incident,11/23/2013,11/23/2013,11/23/2013 10:02:16 PM,11/23/2013 10:05:49 PM,11/23/2013 10:23:52 PM,11/23/2013 10:24:21 PM,11/23/2013 10:28:34 PM,11/23/2013 10:36:54 PM,11/23/2013 11:00:45 PM,Code 2 Transport,11/23/2013 11:35:56 PM,600 Block of SUTTER ST,SF,94108,B01,3,1412,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7889661785097, -122.411074992408)",133270420-KM07 -121640239,77,12054442,Medical Incident,06/12/2012,06/12/2012,06/12/2012 03:44:46 PM,06/12/2012 03:45:34 PM,06/12/2012 03:45:47 PM,06/12/2012 03:46:10 PM,06/12/2012 03:50:59 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Patient Declined Transport,06/12/2012 04:28:43 PM,0 Block of GOLD ST,SF,94133,B01,13,1232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7967932420058, -122.40301629649)",121640239-77 -113030091,E16,11100480,Medical Incident,10/30/2011,10/29/2011,10/30/2011 02:36:27 AM,10/30/2011 02:38:40 AM,10/30/2011 02:40:38 AM,10/30/2011 02:41:59 AM,10/30/2011 02:43:23 AM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 03:04:40 AM,2300 Block of CHESTNUT ST,SF,94123,B04,16,4211,1,1,2,true,,1,ENGINE,1,4,2,Marina,"(37.8001383201841, -122.44202268807)",113030091-E16 -113570242,B09,11118633,Alarms,12/23/2011,12/23/2011,12/23/2011 12:09:44 PM,12/23/2011 12:10:40 PM,12/23/2011 12:10:53 PM,12/23/2011 12:12:25 PM,12/23/2011 12:18:23 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Fire,12/23/2011 12:31:49 PM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,false,,1,CHIEF,2,9,10,Visitacion Valley,"(37.7101556026027, -122.41260428896)",113570242-B09 -122220352,AM22,12073734,Medical Incident,08/09/2012,08/09/2012,08/09/2012 09:04:31 PM,08/09/2012 09:06:27 PM,08/09/2012 09:07:27 PM,08/09/2012 09:08:21 PM,08/09/2012 09:17:56 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Gone on Arrival,08/09/2012 09:27:20 PM,500 Block of BAY ST,SF,94133,B01,28,1425,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",122220352-AM22 -123410262,E31,12113841,Alarms,12/06/2012,12/06/2012,12/06/2012 03:12:07 PM,12/06/2012 03:13:27 PM,12/06/2012 03:14:08 PM,12/06/2012 03:15:55 PM,12/06/2012 03:18:40 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/06/2012 03:38:46 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,3,3,3,true,Alarm,1,ENGINE,1,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",123410262-E31 -160550217,85,16021856,Medical Incident,02/24/2016,02/23/2016,02/24/2016 02:30:47 AM,02/24/2016 02:30:47 AM,02/24/2016 02:30:59 AM,02/24/2016 02:31:14 AM,02/24/2016 02:35:09 AM,02/24/2016 03:10:20 AM,02/24/2016 03:10:23 AM,Code 2 Transport,02/24/2016 03:45:21 AM,2600 Block of VALLEJO ST,San Francisco,94123,B04,16,4164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7945996422766, -122.440467628404)",160550217-85 -120290148,E19,12009717,Medical Incident,01/29/2012,01/29/2012,01/29/2012 01:08:29 PM,01/29/2012 01:08:55 PM,01/29/2012 01:09:16 PM,01/29/2012 01:10:06 PM,01/29/2012 01:14:54 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 02:00:35 PM,1500 Block of SLOAT BLVD,SF,94132,B08,19,7552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7342213212186, -122.489706214168)",120290148-E19 -130410022,E01,13013883,Medical Incident,02/10/2013,02/09/2013,02/10/2013 01:21:16 AM,02/10/2013 01:22:38 AM,02/10/2013 01:23:09 AM,02/10/2013 01:23:39 AM,02/10/2013 01:25:58 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 01:26:09 AM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7856114039588, -122.414829445627)",130410022-E01 -113340143,RC2,11110575,Medical Incident,11/30/2011,11/30/2011,11/30/2011 12:20:08 PM,11/30/2011 12:21:38 PM,11/30/2011 12:21:52 PM,04/25/2016 02:01:24 PM,11/30/2011 12:27:27 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/30/2011 12:42:16 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,true,,1,RESCUE CAPTAIN,4,8,5,Inner Sunset,"(37.7631968207196, -122.464176094005)",113340143-RC2 -130810385,67,13027297,Medical Incident,03/22/2013,03/22/2013,03/22/2013 11:34:09 PM,03/22/2013 11:34:31 PM,03/22/2013 11:35:08 PM,03/22/2013 11:35:53 PM,04/25/2016 01:53:41 PM,03/22/2013 11:55:22 PM,03/23/2013 12:03:30 AM,Code 2 Transport,03/23/2013 12:42:57 AM,400 Block of 7TH ST,SF,94103,B03,8,231,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",130810385-67 -160551555,52,16021981,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:50:41 AM,02/24/2016 11:51:20 AM,02/24/2016 11:51:43 AM,02/24/2016 11:52:08 AM,02/24/2016 11:57:06 AM,02/24/2016 12:12:33 PM,02/24/2016 12:25:03 PM,Code 2 Transport,02/24/2016 01:21:19 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",160551555-52 -160642015,66,16025530,Traffic Collision,03/04/2016,03/04/2016,03/04/2016 01:37:42 PM,03/04/2016 01:37:42 PM,03/04/2016 01:41:04 PM,03/04/2016 01:41:28 PM,03/04/2016 01:43:05 PM,03/04/2016 02:11:21 PM,03/04/2016 02:33:30 PM,Code 2 Transport,03/04/2016 03:14:37 PM,LOMBARD ST/PIERCE ST,San Francisco,94123,B04,16,3566,2,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7994253119327, -122.439336652409)",160642015-66 -120390162,E13,12012972,Medical Incident,02/08/2012,02/08/2012,02/08/2012 12:24:56 PM,02/08/2012 12:25:45 PM,02/08/2012 12:26:42 PM,04/25/2016 02:00:14 PM,02/08/2012 12:31:28 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Other,02/08/2012 12:29:53 PM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",120390162-E13 -123450369,E03,12115481,Medical Incident,12/10/2012,12/10/2012,12/10/2012 07:19:26 PM,12/10/2012 07:20:55 PM,12/10/2012 07:21:00 PM,12/10/2012 07:22:32 PM,12/10/2012 07:22:56 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 07:29:57 PM,POLK ST/HEMLOCK ST,SF,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",123450369-E03 -160551767,55,16022004,Medical Incident,02/24/2016,02/24/2016,02/24/2016 12:47:05 PM,02/24/2016 12:48:40 PM,02/24/2016 12:49:10 PM,02/24/2016 12:51:01 PM,02/24/2016 12:57:51 PM,02/24/2016 01:09:12 PM,02/24/2016 01:09:13 PM,Code 2 Transport,02/24/2016 01:51:23 PM,CLAY ST/KEARNY ST,San Francisco,94111,B01,13,1233,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7944530044512, -122.404796473576)",160551767-55 -113140042,E31,11104220,Alarms,11/10/2011,11/09/2011,11/10/2011 06:14:31 AM,11/10/2011 06:16:14 AM,11/10/2011 06:16:25 AM,11/10/2011 06:18:32 AM,11/10/2011 06:19:46 AM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 06:28:16 AM,4700 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7806274376634, -122.470163577078)",113140042-E31 -122030116,E33,12067413,Medical Incident,07/21/2012,07/21/2012,07/21/2012 09:48:23 AM,07/21/2012 09:49:42 AM,07/21/2012 09:49:54 AM,07/21/2012 09:50:36 AM,07/21/2012 09:54:33 AM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 10:58:29 AM,0 Block of LOBOS ST,SF,94112,B09,33,8372,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.714970324741, -122.454264273625)",122030116-E33 -123370140,AM16,12112114,Medical Incident,12/02/2012,12/01/2012,12/02/2012 05:20:35 AM,12/02/2012 05:22:11 AM,12/02/2012 05:22:47 AM,12/02/2012 05:24:59 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 05:28:45 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",123370140-AM16 -120270210,B09,12009082,Structure Fire,01/27/2012,01/27/2012,01/27/2012 01:57:25 PM,01/27/2012 01:59:38 PM,01/27/2012 02:00:05 PM,01/27/2012 02:01:27 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Other,01/27/2012 02:05:20 PM,200 Block of BRUSSELS ST,SF,94134,B10,42,6341,3,3,3,false,Fire,1,CHIEF,7,10,9,Portola,"(37.7289338104185, -122.406263897118)",120270210-B09 -132690040,B01,13091237,Alarms,09/26/2013,09/25/2013,09/26/2013 03:00:48 AM,09/26/2013 03:02:06 AM,09/26/2013 03:03:25 AM,09/26/2013 03:05:38 AM,09/26/2013 03:07:52 AM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/26/2013 03:11:27 AM,1100 Block of SACRAMENTO ST,SF,94108,B01,41,1414,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.7927592488818, -122.411464544103)",132690040-B01 -160591052,64,16023457,Medical Incident,02/28/2016,02/28/2016,02/28/2016 10:01:02 AM,02/28/2016 10:01:02 AM,02/28/2016 10:01:18 AM,02/28/2016 10:01:27 AM,02/28/2016 10:11:07 AM,02/28/2016 10:25:08 AM,02/28/2016 10:41:48 AM,Code 2 Transport,02/28/2016 11:41:58 AM,17TH ST/MARKET ST,San Francisco,94114,B05,6,5417,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",160591052-64 -160822103,70,16032595,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:13:41 PM,03/22/2016 02:15:20 PM,03/22/2016 02:15:42 PM,03/22/2016 02:15:55 PM,03/22/2016 02:31:33 PM,03/22/2016 03:03:10 PM,03/22/2016 03:50:13 PM,Code 2 Transport,03/22/2016 04:18:04 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160822103-70 -132880132,KM15,13097935,Traffic Collision,10/15/2013,10/15/2013,10/15/2013 10:14:41 AM,10/15/2013 10:16:16 AM,10/15/2013 10:18:22 AM,04/25/2016 01:50:15 PM,10/15/2013 10:24:57 AM,10/15/2013 10:32:49 AM,10/15/2013 10:54:30 AM,Code 2 Transport,10/15/2013 11:20:49 AM,1ST ST/MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7897625977156, -122.397574469759)",132880132-KM15 -121590078,B02,12052527,Alarms,06/07/2012,06/07/2012,06/07/2012 09:04:12 AM,06/07/2012 09:05:19 AM,06/07/2012 09:05:26 AM,06/07/2012 09:06:51 AM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,04/25/2016 01:58:20 PM,Other,06/07/2012 09:09:20 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",121590078-B02 -160800040,AM16,16031640,Medical Incident,03/20/2016,03/19/2016,03/20/2016 12:08:37 AM,03/20/2016 12:10:14 AM,03/20/2016 12:11:42 AM,03/20/2016 12:12:02 AM,03/20/2016 12:15:34 AM,03/20/2016 12:22:33 AM,03/20/2016 12:54:59 AM,Code 2 Transport,03/20/2016 01:14:30 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160800040-AM16 -160141952,66,16005588,Medical Incident,01/14/2016,01/14/2016,01/14/2016 01:39:39 PM,01/14/2016 01:41:54 PM,01/14/2016 01:46:00 PM,01/14/2016 01:46:46 PM,01/14/2016 01:48:37 PM,01/14/2016 01:56:25 PM,01/14/2016 02:13:23 PM,Code 3 Transport,01/14/2016 03:07:56 PM,1700 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367746861465, -122.39262575818)",160141952-66 -160203010,68,16008107,Medical Incident,01/20/2016,01/20/2016,01/20/2016 05:59:58 PM,01/20/2016 06:01:45 PM,01/20/2016 06:03:34 PM,01/20/2016 06:03:41 PM,01/20/2016 06:17:30 PM,01/20/2016 06:28:12 PM,01/20/2016 06:45:12 PM,Code 2 Transport,01/20/2016 07:19:25 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",160203010-68 -131550077,E01,13052444,Medical Incident,06/04/2013,06/03/2013,06/04/2013 07:20:14 AM,06/04/2013 07:21:52 AM,06/04/2013 07:22:07 AM,06/04/2013 07:23:24 AM,06/04/2013 07:26:57 AM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/04/2013 07:31:46 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131550077-E01 -130060206,93,13002093,Medical Incident,01/06/2013,01/06/2013,01/06/2013 03:43:46 PM,01/06/2013 03:45:50 PM,01/06/2013 03:46:47 PM,01/06/2013 03:47:21 PM,01/06/2013 03:51:12 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Unable to Locate,01/06/2013 03:56:17 PM,GEARY BL/PALM AV,SF,94118,B07,10,4446,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7813145853948, -122.457733042674)",130060206-93 -160471309,74,16018883,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:51:39 AM,02/16/2016 10:51:39 AM,02/16/2016 10:51:59 AM,02/16/2016 10:53:27 AM,02/16/2016 10:59:52 AM,02/16/2016 11:15:03 AM,02/16/2016 11:26:08 AM,Code 2 Transport,02/16/2016 11:59:04 AM,500 Block of MARKET ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Financial District/South Beach,"(37.7898275380016, -122.400837514889)",160471309-74 -111190020,E24,11039117,Smoke Investigation (Outside),04/29/2011,04/28/2011,04/29/2011 02:04:00 AM,04/29/2011 02:05:57 AM,04/29/2011 02:06:17 AM,04/29/2011 02:08:15 AM,04/29/2011 02:11:57 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 02:17:24 AM,300 Block of CORBETT AVE,SF,94114,B05,24,5265,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7599260499038, -122.445043500566)",111190020-E24 -121310274,E51,12043653,Medical Incident,05/10/2012,05/10/2012,05/10/2012 05:02:55 PM,05/10/2012 05:03:29 PM,05/10/2012 05:04:16 PM,05/10/2012 05:06:26 PM,05/10/2012 05:06:35 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 05:23:50 PM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",121310274-E51 -103010283,KM15,10096178,Medical Incident,10/28/2010,10/28/2010,10/28/2010 03:40:34 PM,10/28/2010 03:40:40 PM,10/28/2010 03:43:14 PM,10/28/2010 03:43:29 PM,10/28/2010 03:54:30 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Medical Examiner,10/28/2010 04:34:00 PM,0 Block of BELDEN ST,SF,94104,B01,13,1235,2,2,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7912610957374, -122.40383849944)",103010283-KM15 -102410181,E02,10076019,Medical Incident,08/29/2010,08/29/2010,08/29/2010 12:36:51 PM,08/29/2010 12:37:46 PM,08/29/2010 12:39:37 PM,08/29/2010 12:41:18 PM,08/29/2010 12:44:37 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,No Merit,08/29/2010 12:46:35 PM,BEACH ST/JONES ST,SF,94133,B01,28,1521,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8070725139897, -122.417260632444)",102410181-E02 -110470243,99,11015574,Medical Incident,02/16/2011,02/16/2011,02/16/2011 02:47:00 PM,02/16/2011 02:47:00 PM,02/16/2011 02:47:31 PM,02/16/2011 02:47:52 PM,04/25/2016 02:06:03 PM,02/16/2011 03:16:28 PM,02/16/2011 03:33:46 PM,Code 2 Transport,02/16/2011 03:59:49 PM,FOLSOM ST/BEALE ST,SF,94105,B03,35,2122,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7886866619654, -122.392722833778)",110470243-99 -102830028,54,10089939,Medical Incident,10/10/2010,10/09/2010,10/10/2010 02:19:27 AM,10/10/2010 02:19:48 AM,10/10/2010 02:19:54 AM,10/10/2010 02:20:19 AM,10/10/2010 02:26:21 AM,10/10/2010 02:40:17 AM,10/10/2010 02:52:07 AM,Code 2 Transport,10/10/2010 03:17:47 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",102830028-54 -132780388,T06,13094683,Structure Fire,10/05/2013,10/05/2013,10/05/2013 09:34:48 PM,10/05/2013 09:35:28 PM,10/05/2013 09:35:46 PM,10/05/2013 09:37:02 PM,10/05/2013 09:37:52 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 09:51:55 PM,3400 Block of 16TH ST,SF,94114,B05,6,5234,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7643418581632, -122.430494795393)",132780388-T06 -110250227,E43,11008246,Medical Incident,01/25/2011,01/25/2011,01/25/2011 12:35:28 PM,01/25/2011 12:36:48 PM,01/25/2011 12:38:13 PM,01/25/2011 12:39:11 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 12:47:07 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,false,,1,ENGINE,3,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",110250227-E43 -130870034,T11,13028893,Medical Incident,03/28/2013,03/27/2013,03/28/2013 02:47:51 AM,03/28/2013 02:49:32 AM,03/28/2013 02:50:14 AM,03/28/2013 02:51:52 AM,03/28/2013 02:55:10 AM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/28/2013 02:56:48 AM,KINGSTON ST/MISSION ST,SF,94110,B06,32,5626,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Bernal Heights,"(37.7417604896051, -122.422366461844)",130870034-T11 -160751714,71,16029712,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:43:36 PM,03/15/2016 12:45:29 PM,03/15/2016 12:47:54 PM,03/15/2016 12:48:01 PM,03/15/2016 01:10:41 PM,03/15/2016 01:22:47 PM,03/15/2016 01:46:47 PM,Code 2 Transport,03/15/2016 02:12:51 PM,1200 Block of BAYSIDE DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8305521373319, -122.376358682495)",160751714-71 -133400368,T15,13115401,Vehicle Fire,12/06/2013,12/06/2013,12/06/2013 08:26:29 PM,12/06/2013 08:27:11 PM,12/06/2013 08:27:35 PM,12/06/2013 08:29:02 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/06/2013 08:33:03 PM,100 Block of PARQUE DR,SF,94134,B09,43,6246,3,3,3,false,Fire,1,TRUCK,2,9,10,Visitacion Valley,"(37.710246785234, -122.421304206858)",133400368-T15 -160412008,79,16016477,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:48:40 PM,02/10/2016 01:50:22 PM,02/10/2016 01:50:41 PM,02/10/2016 01:50:51 PM,02/10/2016 01:52:35 PM,02/10/2016 02:01:33 PM,02/10/2016 02:06:02 PM,Code 2 Transport,02/10/2016 02:39:32 PM,FERN ST/POLK ST,San Francisco,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",160412008-79 -132780250,B07,13094556,Alarms,10/05/2013,10/05/2013,10/05/2013 03:37:47 PM,10/05/2013 03:39:45 PM,10/05/2013 03:40:00 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,No Merit,10/05/2013 03:43:20 PM,2200 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,false,Alarm,1,CHIEF,2,5,1,Lone Mountain/USF,"(37.773054894576, -122.453465411604)",132780250-B07 -120630187,83,12020750,Medical Incident,03/03/2012,03/03/2012,03/03/2012 12:16:06 PM,03/03/2012 12:16:48 PM,03/03/2012 12:17:09 PM,03/03/2012 12:17:40 PM,03/03/2012 12:24:42 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Patient Declined Transport,03/03/2012 01:12:52 PM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7273738403389, -122.384143344423)",120630187-83 -112670338,E18,11088361,Medical Incident,09/24/2011,09/24/2011,09/24/2011 08:29:27 PM,09/24/2011 08:30:09 PM,09/24/2011 08:30:20 PM,09/24/2011 08:31:57 PM,09/24/2011 08:35:40 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 08:41:28 PM,2700 Block of 43RD AVE,SF,94116,B08,18,7642,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7357515946534, -122.501045149306)",112670338-E18 -160051146,63,16001941,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:25:12 AM,01/05/2016 10:26:22 AM,01/05/2016 10:26:51 AM,01/05/2016 10:27:19 AM,01/05/2016 10:48:20 AM,01/05/2016 10:48:22 AM,01/05/2016 10:59:13 AM,Code 3 Transport,01/05/2016 12:11:09 PM,2800 Block of BUSH ST,San Francisco,94115,B05,10,4341,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,5,2,Presidio Heights,"(37.7855993911938, -122.444184112776)",160051146-63 -140610050,T13,14020523,Structure Fire,03/02/2014,03/01/2014,03/02/2014 03:31:51 AM,03/02/2014 03:31:52 AM,03/02/2014 03:32:03 AM,03/02/2014 03:34:09 AM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Fire,03/02/2014 03:36:28 AM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7895620432155, -122.402161869829)",140610050-T13 -140210006,E23,14007038,Medical Incident,01/21/2014,01/20/2014,01/21/2014 01:04:58 AM,01/21/2014 01:05:13 AM,01/21/2014 01:05:27 AM,01/21/2014 01:08:17 AM,01/21/2014 01:10:55 AM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/21/2014 01:21:09 AM,48TH AV/ORTEGA ST,SF,94116,B08,23,7725,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.751003286283, -122.507416228519)",140210006-E23 -112460299,E17,11081223,Outside Fire,09/03/2011,09/03/2011,09/03/2011 07:15:22 PM,09/03/2011 07:15:57 PM,09/03/2011 07:16:34 PM,09/03/2011 07:18:06 PM,09/03/2011 07:22:24 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Fire,09/03/2011 07:34:26 PM,600 Block of JAMESTOWN AVE,SF,94124,B10,17,6577,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7131072321423, -122.387833652325)",112460299-E17 -132280263,E05,13077017,Traffic Collision,08/16/2013,08/16/2013,08/16/2013 03:03:41 PM,08/16/2013 03:03:41 PM,08/16/2013 03:04:08 PM,08/16/2013 03:05:11 PM,08/16/2013 03:06:18 PM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,Patient Declined Transport,08/16/2013 03:14:36 PM,FILLMORE ST/FULTON ST,SF,94117,B05,5,3521,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.777699925281, -122.431574643438)",132280263-E05 -111470277,81,11048851,Medical Incident,05/27/2011,05/27/2011,05/27/2011 05:53:20 PM,05/27/2011 05:54:41 PM,05/27/2011 05:54:56 PM,05/27/2011 05:55:04 PM,05/27/2011 05:58:40 PM,05/27/2011 06:21:57 PM,05/27/2011 06:33:08 PM,Code 2 Transport,05/27/2011 06:58:05 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",111470277-81 -121070032,T13,12035330,Medical Incident,04/16/2012,04/15/2012,04/16/2012 02:24:23 AM,04/16/2012 02:24:55 AM,04/16/2012 02:27:25 AM,04/16/2012 02:29:27 AM,04/16/2012 02:32:37 AM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/16/2012 02:33:07 AM,100 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7934447817207, -122.395879334268)",121070032-T13 -131460186,E21,13049512,Outside Fire,05/26/2013,05/26/2013,05/26/2013 11:16:25 AM,05/26/2013 11:16:58 AM,05/26/2013 11:17:35 AM,05/26/2013 11:18:15 AM,05/26/2013 11:22:02 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 11:28:42 AM,FULTON ST/ARGUELLO BL,SF,94122,B07,31,7111,3,3,3,true,Fire,1,ENGINE,1,7,1,Golden Gate Park,"(37.7743088945696, -122.458371098705)",131460186-E21 -160761957,57,16030163,Medical Incident,03/16/2016,03/16/2016,03/16/2016 01:31:02 PM,03/16/2016 01:33:18 PM,03/16/2016 01:33:33 PM,03/16/2016 01:33:49 PM,03/16/2016 01:38:18 PM,03/16/2016 01:56:19 PM,03/16/2016 02:00:57 PM,Code 2 Transport,03/16/2016 02:27:01 PM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160761957-57 -160542171,KM02,16021636,Medical Incident,02/23/2016,02/23/2016,02/23/2016 02:30:51 PM,02/23/2016 02:31:13 PM,02/23/2016 02:31:59 PM,02/23/2016 02:33:12 PM,02/23/2016 03:02:40 PM,02/23/2016 03:02:49 PM,02/23/2016 03:12:20 PM,Code 2 Transport,02/23/2016 03:53:25 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",160542171-KM02 -140680063,88,14022914,Medical Incident,03/09/2014,03/08/2014,03/09/2014 06:06:57 AM,03/09/2014 06:08:28 AM,03/09/2014 06:10:15 AM,03/09/2014 06:10:21 AM,03/09/2014 06:15:15 AM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Other,03/09/2014 06:15:43 AM,500 Block of ELLIS ST,SAN FRANCISCO,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",140680063-88 -132180339,E11,13073748,Medical Incident,08/06/2013,08/06/2013,08/06/2013 08:13:47 PM,08/06/2013 08:13:47 PM,08/06/2013 08:13:47 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 08:20:11 PM,3000 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.748597504437, -122.418163001869)",132180339-E11 -160393149,70,16015762,Medical Incident,02/08/2016,02/08/2016,02/08/2016 07:24:43 PM,02/08/2016 07:26:43 PM,02/08/2016 07:27:51 PM,02/08/2016 07:28:02 PM,02/08/2016 07:32:49 PM,02/08/2016 07:41:55 PM,02/08/2016 07:55:53 PM,Code 2 Transport,02/08/2016 08:08:12 PM,0 Block of BLK DAKOTA ST,San Francisco,94107,B10,37,2614,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7548384184422, -122.396359741274)",160393149-70 -110890238,T10,11029429,Alarms,03/30/2011,03/30/2011,03/30/2011 03:11:07 PM,03/30/2011 03:12:29 PM,03/30/2011 03:12:33 PM,03/30/2011 03:13:51 PM,03/30/2011 03:17:27 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 03:29:10 PM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,false,,1,TRUCK,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",110890238-T10 -140400075,E19,14013470,Alarms,02/09/2014,02/08/2014,02/09/2014 04:29:48 AM,02/09/2014 04:31:13 AM,02/09/2014 04:31:23 AM,02/09/2014 04:33:16 AM,02/09/2014 04:36:36 AM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/09/2014 04:45:07 AM,400 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Alarm,1,ENGINE,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",140400075-E19 -111210192,E39,11039950,Medical Incident,05/01/2011,05/01/2011,05/01/2011 12:59:04 PM,05/01/2011 01:00:39 PM,05/01/2011 01:01:25 PM,05/01/2011 01:02:18 PM,05/01/2011 01:04:31 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 01:16:55 PM,200 Block of YERBA BUENA AVE,SF,94127,B09,39,8526,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7339416420231, -122.459345019691)",111210192-E39 -160712488,74,16028305,Medical Incident,03/11/2016,03/11/2016,03/11/2016 04:35:29 PM,03/11/2016 04:36:34 PM,03/11/2016 04:36:52 PM,03/11/2016 04:37:06 PM,03/11/2016 04:40:35 PM,03/11/2016 04:56:09 PM,03/11/2016 05:13:01 PM,Code 2 Transport,03/11/2016 06:11:18 PM,1600 Block of DIVISADERO ST,San Francisco,94115,B05,10,4155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7847979838284, -122.439663867351)",160712488-74 -121780186,E11,12059255,Structure Fire,06/26/2012,06/26/2012,06/26/2012 01:11:59 PM,06/26/2012 01:11:59 PM,06/26/2012 01:12:08 PM,06/26/2012 01:13:36 PM,06/26/2012 01:14:18 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 01:14:38 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7490412884368, -122.418135251703)",121780186-E11 -160841293,60,16033327,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:18:34 AM,03/24/2016 10:21:26 AM,03/24/2016 10:21:52 AM,03/24/2016 10:23:24 AM,03/24/2016 10:28:17 AM,03/24/2016 10:50:36 AM,03/24/2016 11:04:37 AM,Code 2 Transport,03/24/2016 11:37:52 AM,500 Block of 15TH ST,San Francisco,94103,B02,29,2352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7672258966731, -122.406197525908)",160841293-60 -110890281,B02,11029471,Alarms,03/30/2011,03/30/2011,03/30/2011 04:26:52 PM,03/30/2011 04:29:32 PM,03/30/2011 04:32:03 PM,03/30/2011 04:32:57 PM,03/30/2011 04:43:29 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 04:45:04 PM,1700 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,false,,1,CHIEF,3,5,5,Lone Mountain/USF,"(37.7750328323783, -122.445449213896)",110890281-B02 -133100353,E05,13105531,Structure Fire,11/06/2013,11/06/2013,11/06/2013 08:44:02 PM,11/06/2013 08:44:02 PM,11/06/2013 08:45:09 PM,11/06/2013 08:47:04 PM,11/06/2013 08:49:29 PM,04/25/2016 01:49:53 PM,04/25/2016 01:49:53 PM,Fire,11/06/2013 08:49:47 PM,0 Block of VAN NESS AVE,SF,94102,B02,36,3211,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7752607728259, -122.419431229777)",133100353-E05 -132260022,RS1,13076166,Structure Fire,08/14/2013,08/13/2013,08/14/2013 01:44:14 AM,08/14/2013 01:44:39 AM,08/14/2013 01:44:46 AM,08/14/2013 01:46:43 AM,08/14/2013 01:47:42 AM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/14/2013 01:53:27 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Alarm,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",132260022-RS1 -160233230,63,16009302,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:57:47 PM,01/23/2016 07:58:27 PM,01/23/2016 07:59:10 PM,01/23/2016 07:59:31 PM,01/23/2016 08:08:21 PM,01/23/2016 08:40:11 PM,01/23/2016 08:48:42 PM,Code 2 Transport,01/23/2016 09:18:56 PM,2700 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",160233230-63 -133630317,E03,13123430,Medical Incident,12/29/2013,12/29/2013,12/29/2013 10:41:36 PM,12/29/2013 10:44:56 PM,12/29/2013 10:45:20 PM,12/29/2013 10:46:44 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/29/2013 10:47:45 PM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",133630317-E03 -111080094,RS1,11035621,Structure Fire,04/18/2011,04/18/2011,04/18/2011 09:45:15 AM,04/18/2011 09:45:45 AM,04/18/2011 09:45:59 AM,04/18/2011 09:48:21 AM,04/18/2011 09:51:32 AM,04/25/2016 02:05:03 PM,04/25/2016 02:05:03 PM,Other,04/18/2011 10:28:26 AM,200 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,false,,1,RESCUE SQUAD,10,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",111080094-RS1 -122500023,T16,12082534,Alarms,09/06/2012,09/05/2012,09/06/2012 03:23:14 AM,09/06/2012 03:26:12 AM,09/06/2012 03:26:32 AM,09/06/2012 03:27:53 AM,09/06/2012 03:30:41 AM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/06/2012 03:37:31 AM,3600 Block of FILLMORE ST,SF,94123,B04,16,3555,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8030999984868, -122.436950517531)",122500023-T16 -131050003,B02,13035121,Alarms,04/15/2013,04/14/2013,04/15/2013 12:16:35 AM,04/15/2013 12:18:12 AM,04/15/2013 12:18:18 AM,04/15/2013 12:19:52 AM,04/15/2013 12:22:44 AM,04/25/2016 01:53:18 PM,04/25/2016 01:53:18 PM,Other,04/15/2013 12:24:13 AM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",131050003-B02 -112590364,81,11085548,Medical Incident,09/16/2011,09/16/2011,09/16/2011 09:41:01 PM,09/16/2011 09:41:46 PM,09/16/2011 09:42:34 PM,09/16/2011 09:44:15 PM,09/16/2011 09:47:36 PM,09/16/2011 10:05:11 PM,09/16/2011 10:18:49 PM,Code 2 Transport,09/16/2011 10:53:36 PM,MARKET ST/JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",112590364-81 -120140236,D3,12004821,Structure Fire,01/14/2012,01/14/2012,01/14/2012 05:24:59 PM,01/14/2012 05:26:43 PM,01/14/2012 05:27:14 PM,01/14/2012 05:27:50 PM,01/14/2012 05:32:23 PM,04/25/2016 02:00:38 PM,04/25/2016 02:00:38 PM,Other,01/14/2012 05:33:59 PM,500 Block of BARTLETT ST,SF,94110,B06,11,5613,3,3,3,false,Fire,1,CHIEF,6,6,9,Mission,"(37.7485807507693, -122.419139646958)",120140236-D3 -160891441,56,16035306,Medical Incident,03/29/2016,03/29/2016,03/29/2016 11:17:34 AM,03/29/2016 11:18:31 AM,03/29/2016 11:18:49 AM,03/29/2016 11:18:57 AM,03/29/2016 11:26:25 AM,03/29/2016 11:43:27 AM,03/29/2016 12:13:36 PM,Code 2 Transport,03/29/2016 12:55:00 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160891441-56 -122060053,E33,12068383,Traffic Collision,07/24/2012,07/23/2012,07/24/2012 05:40:27 AM,07/24/2012 05:40:27 AM,07/24/2012 05:40:43 AM,07/24/2012 05:42:44 AM,07/24/2012 05:48:41 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 06:00:33 AM,OCEAN AV/SAN JOSE AV,SF,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7229665717171, -122.44474662479)",122060053-E33 -132870400,87,13097824,Medical Incident,10/14/2013,10/14/2013,10/14/2013 11:38:57 PM,10/14/2013 11:41:29 PM,10/14/2013 11:42:52 PM,10/14/2013 11:43:28 PM,10/15/2013 12:04:59 AM,10/15/2013 12:15:13 AM,10/15/2013 12:55:31 AM,Code 2 Transport,10/15/2013 01:37:22 AM,400 Block of BAY ST,SF,94133,B01,28,1425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",132870400-87 -120110194,T13,12003817,Medical Incident,01/11/2012,01/11/2012,01/11/2012 03:08:11 PM,01/11/2012 03:08:46 PM,01/11/2012 03:09:35 PM,01/11/2012 03:13:09 PM,01/11/2012 03:16:19 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 03:23:45 PM,700 Block of GRANT AVE,SF,94108,B01,13,1313,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,1,3,Chinatown,"(37.7940392610273, -122.406331131515)",120110194-T13 -123310198,B01,12110027,Alarms,11/26/2012,11/26/2012,11/26/2012 12:05:47 PM,11/26/2012 12:07:24 PM,11/26/2012 12:07:31 PM,11/26/2012 12:08:01 PM,11/26/2012 12:12:36 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 12:13:13 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",123310198-B01 -132980249,B03,13101256,Medical Incident,10/25/2013,10/25/2013,10/25/2013 03:48:09 PM,10/25/2013 03:48:09 PM,10/25/2013 03:53:26 PM,10/25/2013 04:04:41 PM,10/25/2013 04:08:56 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 04:14:52 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2244,2,2,2,false,Non Life-threatening,1,CHIEF,2,3,6,South of Market,"(37.7798137203933, -122.403860419019)",132980249-B03 -120390385,72,12013176,Medical Incident,02/08/2012,02/08/2012,02/08/2012 11:42:36 PM,02/08/2012 11:45:03 PM,02/08/2012 11:45:17 PM,02/08/2012 11:45:44 PM,02/08/2012 11:57:00 PM,02/09/2012 12:18:16 AM,02/09/2012 12:43:45 AM,Code 2 Transport,02/09/2012 01:14:01 AM,1300 Block of INGALLS ST,SF,94124,B10,17,6572,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304672300474, -122.382582263214)",120390385-72 -120610247,T10,12020105,Medical Incident,03/01/2012,03/01/2012,03/01/2012 04:05:17 PM,03/01/2012 04:06:02 PM,03/01/2012 04:06:31 PM,03/01/2012 04:08:22 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/01/2012 04:10:17 PM,1500 Block of DIVISADERO ST,SF,94115,B05,10,4154,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,5,5,Japantown,"(37.7840751928704, -122.439752776223)",120610247-T10 -132960111,KM01,13100543,Alarms,10/23/2013,10/23/2013,10/23/2013 10:13:48 AM,10/23/2013 10:15:35 AM,10/23/2013 10:16:24 AM,10/23/2013 10:17:24 AM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/23/2013 10:25:37 AM,100 Block of MORNINGSIDE DR,SF,94132,B08,19,8814,3,3,3,false,Alarm,1,PRIVATE,3,8,7,Sunset/Parkside,"(37.7304824793744, -122.492110393736)",132960111-KM01 -160243013,56,16009654,Medical Incident,01/24/2016,01/24/2016,01/24/2016 07:31:07 PM,01/24/2016 07:31:57 PM,01/24/2016 07:32:59 PM,01/24/2016 07:33:05 PM,01/24/2016 07:37:48 PM,01/24/2016 08:01:30 PM,01/24/2016 08:20:28 PM,Code 2 Transport,01/24/2016 08:59:52 PM,0 Block of CAINE AVE,San Francisco,94112,B09,33,8325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7173835692586, -122.450562512299)",160243013-56 -112990275,KM15,11099254,Medical Incident,10/26/2011,10/26/2011,10/26/2011 05:53:31 PM,10/26/2011 05:55:16 PM,10/26/2011 05:55:34 PM,10/26/2011 05:56:29 PM,10/26/2011 06:07:38 PM,10/26/2011 06:24:29 PM,10/26/2011 06:41:32 PM,Code 2 Transport,10/26/2011 07:12:51 PM,100 Block of CASHMERE ST,SF,94124,B10,25,6522,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",112990275-KM15 -111370218,59,11045598,Medical Incident,05/17/2011,05/17/2011,05/17/2011 02:45:52 PM,05/17/2011 02:47:05 PM,05/17/2011 02:47:18 PM,05/17/2011 02:47:39 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 02:48:41 PM,1800 Block of 24TH AVE,SF,94122,B08,18,7455,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7530690887832, -122.481836048422)",111370218-59 -133130379,E11,13106545,Medical Incident,11/09/2013,11/09/2013,11/09/2013 08:41:08 PM,11/09/2013 08:41:58 PM,11/09/2013 08:51:14 PM,04/25/2016 01:49:50 PM,11/09/2013 08:47:24 PM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/09/2013 09:06:10 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7530420707497, -122.418450617982)",133130379-E11 -121500343,E07,12049890,Medical Incident,05/29/2012,05/29/2012,05/29/2012 11:59:15 PM,05/29/2012 11:59:42 PM,05/30/2012 12:00:09 AM,04/25/2016 01:58:27 PM,05/30/2012 12:03:49 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/30/2012 12:11:46 AM,500 Block of VALENCIA ST,SF,94103,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",121500343-E07 -112590088,E05,11085322,Medical Incident,09/16/2011,09/16/2011,09/16/2011 08:25:18 AM,09/16/2011 08:27:18 AM,09/16/2011 08:27:27 AM,09/16/2011 08:28:45 AM,09/16/2011 08:29:13 AM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Medical Examiner,09/16/2011 09:08:36 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,2,2,true,,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",112590088-E05 -160222599,73,16008841,Medical Incident,01/22/2016,01/22/2016,01/22/2016 04:40:39 PM,01/22/2016 04:42:40 PM,01/22/2016 04:44:03 PM,01/22/2016 04:44:10 PM,01/22/2016 04:48:13 PM,01/22/2016 04:55:03 PM,01/22/2016 05:01:43 PM,Code 2 Transport,01/22/2016 05:26:51 PM,CESAR CHAVEZ ST/POTRERO AV,San Francisco,94110,B10,9,2626,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.7490055721109, -122.405007343737)",160222599-73 -160741351,59,16029299,Traffic Collision,03/14/2016,03/14/2016,03/14/2016 11:03:06 AM,03/14/2016 11:03:06 AM,03/14/2016 11:03:20 AM,03/14/2016 11:07:08 AM,03/14/2016 11:07:08 AM,03/14/2016 11:16:06 AM,03/14/2016 11:24:37 AM,Code 2 Transport,03/14/2016 12:15:28 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160741351-59 -140060309,E06,14002229,Medical Incident,01/06/2014,01/06/2014,01/06/2014 05:03:14 PM,01/06/2014 05:04:13 PM,01/06/2014 05:04:38 PM,01/06/2014 05:05:58 PM,01/06/2014 05:07:11 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Patient Declined Transport,01/06/2014 05:36:16 PM,100 Block of NOE ST,SF,94114,B05,6,5212,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7670576552688, -122.4334390759)",140060309-E06 -120010290,RC1,12000244,Medical Incident,01/01/2012,12/31/2011,01/01/2012 05:05:09 AM,01/01/2012 05:05:56 AM,01/01/2012 05:06:12 AM,01/01/2012 05:09:22 AM,01/01/2012 05:12:49 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 05:23:33 AM,JONES ST/GEARY ST,SF,94102,B01,3,1462,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",120010290-RC1 -160150967,53,16005904,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:23:15 AM,01/15/2016 09:23:15 AM,01/15/2016 09:24:56 AM,01/15/2016 09:25:17 AM,01/15/2016 09:30:43 AM,01/15/2016 10:02:03 AM,01/15/2016 10:22:12 AM,Code 2 Transport,01/15/2016 10:42:17 AM,0 Block of STONEYFORD AVE,San Francisco,94112,B09,32,5681,,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7302836940584, -122.421080787461)",160150967-53 -120710253,T14,12023672,Structure Fire,03/11/2012,03/11/2012,03/11/2012 04:35:50 PM,03/11/2012 04:35:51 PM,03/11/2012 04:36:17 PM,03/11/2012 04:37:18 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/11/2012 04:39:53 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",120710253-T14 -160723097,78,16028759,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:21:32 PM,03/12/2016 08:21:32 PM,03/12/2016 08:27:05 PM,03/12/2016 08:27:12 PM,03/12/2016 08:39:02 PM,03/12/2016 08:46:29 PM,03/12/2016 08:51:03 PM,Code 2 Transport,03/12/2016 09:32:04 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160723097-78 -132500016,87,13084249,Medical Incident,09/07/2013,09/06/2013,09/07/2013 12:41:41 AM,09/07/2013 12:41:42 AM,09/07/2013 12:42:16 AM,09/07/2013 12:42:49 AM,09/07/2013 12:54:24 AM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Against Medical Advice,09/07/2013 01:38:31 AM,2800 Block of LEAVENWORTH ST,SF,94109,B01,28,1524,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8073249129151, -122.419065516897)",132500016-87 -133400004,E18,13115089,Medical Incident,12/06/2013,12/05/2013,12/06/2013 12:13:04 AM,12/06/2013 12:13:43 AM,12/06/2013 12:17:12 AM,12/06/2013 12:18:36 AM,12/06/2013 12:22:52 AM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:37:06 AM,4100 Block of NORIEGA ST,SF,94122,B08,23,7725,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7527950009872, -122.507985239819)",133400004-E18 -103440254,E19,10110260,Traffic Collision,12/10/2010,12/10/2010,12/10/2010 02:29:58 PM,12/10/2010 02:29:58 PM,12/10/2010 02:34:32 PM,12/10/2010 02:34:59 PM,12/10/2010 02:37:28 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 03:18:46 PM,LAKE MERCED BL/FONT BL,SF,94132,B08,19,8855,2,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7239997279789, -122.485075175889)",103440254-E19 -121610300,64,12053413,Medical Incident,06/09/2012,06/09/2012,06/09/2012 07:44:45 PM,06/09/2012 07:45:21 PM,06/09/2012 07:46:15 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,04/25/2016 01:58:17 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",121610300-64 -160840237,71,16033224,Medical Incident,03/24/2016,03/23/2016,03/24/2016 02:23:02 AM,03/24/2016 02:23:02 AM,03/24/2016 02:28:51 AM,03/24/2016 02:28:56 AM,03/24/2016 02:32:51 AM,03/24/2016 02:50:21 AM,03/24/2016 02:53:18 AM,Code 2 Transport,03/24/2016 03:24:31 AM,1000 Block of POST ST,San Francisco,94109,B02,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",160840237-71 -160640035,57,16025310,Medical Incident,03/04/2016,03/03/2016,03/04/2016 12:15:43 AM,03/04/2016 12:18:18 AM,03/04/2016 12:19:52 AM,03/04/2016 12:19:52 AM,03/04/2016 12:24:39 AM,03/04/2016 12:36:18 AM,03/04/2016 12:36:53 AM,Code 2 Transport,03/04/2016 01:04:50 AM,2500 Block of 23RD ST,San Francisco,94110,B10,37,2554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.754404748573, -122.405248327082)",160640035-57 -160600253,AM20,16023742,Medical Incident,02/29/2016,02/28/2016,02/29/2016 02:58:12 AM,02/29/2016 02:59:57 AM,02/29/2016 03:00:12 AM,02/29/2016 03:00:57 AM,02/29/2016 03:03:21 AM,02/29/2016 03:31:52 AM,02/29/2016 03:40:46 AM,Code 2 Transport,02/29/2016 04:10:51 AM,1100 Block of HYDE ST,San Francisco,94109,B01,41,1563,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7914566786177, -122.417418430351)",160600253-AM20 -120080258,T12,12002836,Alarms,01/08/2012,01/08/2012,01/08/2012 03:54:04 PM,01/08/2012 03:56:48 PM,01/08/2012 03:56:53 PM,01/08/2012 03:57:31 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/08/2012 04:05:09 PM,1500 Block of 8TH AVE,SF,94122,B08,22,7331,3,3,3,false,Alarm,1,TRUCK,3,8,7,Inner Sunset,"(37.7594218897131, -122.464985351728)",120080258-T12 -160090469,61,16003530,Medical Incident,01/09/2016,01/08/2016,01/09/2016 04:50:50 AM,01/09/2016 04:51:32 AM,01/09/2016 04:52:05 AM,01/09/2016 04:52:18 AM,01/09/2016 04:58:18 AM,01/09/2016 05:25:12 AM,01/09/2016 05:44:38 AM,Code 2 Transport,01/09/2016 06:28:46 AM,100 Block of STAPLES AVE,San Francisco,94112,B09,15,8222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7290334767278, -122.445423790113)",160090469-61 -103630186,RS1,10116448,Medical Incident,12/29/2010,12/29/2010,12/29/2010 02:09:14 PM,12/29/2010 02:09:55 PM,12/29/2010 02:12:26 PM,12/29/2010 02:13:54 PM,12/29/2010 02:15:20 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/29/2010 02:24:43 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",103630186-RS1 -111190134,E28,11039208,Medical Incident,04/29/2011,04/29/2011,04/29/2011 11:49:26 AM,04/29/2011 11:51:43 AM,04/29/2011 11:52:01 AM,04/29/2011 11:53:38 AM,04/29/2011 11:55:36 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 12:03:36 PM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",111190134-E28 -160091949,AM16,16003675,Medical Incident,01/09/2016,01/09/2016,01/09/2016 02:22:03 PM,01/09/2016 02:24:28 PM,01/09/2016 02:24:57 PM,01/09/2016 02:25:36 PM,01/09/2016 02:27:58 PM,01/09/2016 02:50:02 PM,01/09/2016 03:14:43 PM,Code 2 Transport,01/09/2016 03:37:56 PM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",160091949-AM16 -110690381,E05,11022867,Medical Incident,03/10/2011,03/10/2011,03/10/2011 10:37:05 PM,03/10/2011 10:37:21 PM,03/10/2011 10:37:34 PM,03/10/2011 10:38:28 PM,03/10/2011 10:40:12 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/10/2011 10:46:29 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7810598440913, -122.434783737987)",110690381-E05 -121030153,KM10,12034089,Medical Incident,04/12/2012,04/12/2012,04/12/2012 11:13:35 AM,04/12/2012 11:14:14 AM,04/12/2012 11:14:29 AM,04/12/2012 11:15:54 AM,04/12/2012 11:16:40 AM,04/12/2012 11:30:07 AM,04/12/2012 11:47:28 AM,Code 2 Transport,04/12/2012 12:21:15 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",121030153-KM10 -140330028,T10,14011074,Structure Fire,02/02/2014,02/01/2014,02/02/2014 01:46:18 AM,02/02/2014 01:47:34 AM,02/02/2014 01:50:10 AM,02/02/2014 01:53:08 AM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/02/2014 01:55:11 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,,3,3,false,Alarm,1,TRUCK,7,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",140330028-T10 -140300026,T12,14010084,Vehicle Fire,01/30/2014,01/29/2014,01/30/2014 01:59:41 AM,01/30/2014 02:00:06 AM,01/30/2014 02:00:29 AM,01/30/2014 02:02:03 AM,01/30/2014 02:07:48 AM,04/25/2016 01:48:28 PM,04/25/2016 01:48:28 PM,Other,01/30/2014 02:09:35 AM,11TH AV/MORAGA ST,SF,94122,B08,22,7343,,3,3,false,Fire,1,TRUCK,2,8,7,Inner Sunset,"(37.756486205733, -122.467931638181)",140300026-T12 -113110048,T08,11103238,Medical Incident,11/07/2011,11/06/2011,11/07/2011 05:09:13 AM,11/07/2011 05:10:29 AM,11/07/2011 05:11:00 AM,11/07/2011 05:12:30 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 05:15:53 AM,0 Block of KING ST,SF,94107,B03,35,940,3,3,3,false,,1,TRUCK,3,3,6,Mission Bay,"(37.7807643532489, -122.388778001806)",113110048-T08 -120910365,72,12030292,Medical Incident,03/31/2012,03/31/2012,03/31/2012 10:52:38 PM,03/31/2012 10:52:58 PM,03/31/2012 10:53:12 PM,03/31/2012 10:53:21 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,Other,03/31/2012 10:54:42 PM,500 Block of 25TH AVE,SF,94121,B07,14,7213,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7791261121342, -122.484732839947)",120910365-72 -132550300,E15,13086280,Administrative,09/12/2013,09/12/2013,09/12/2013 05:11:51 PM,09/12/2013 05:11:54 PM,09/12/2013 05:12:17 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 05:12:47 PM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",132550300-E15 -112800386,AM10,11092853,Medical Incident,10/07/2011,10/07/2011,10/07/2011 11:51:49 PM,10/07/2011 11:53:40 PM,10/07/2011 11:54:15 PM,10/07/2011 11:54:55 PM,10/07/2011 11:57:08 PM,10/08/2011 12:15:50 AM,10/08/2011 12:24:17 AM,Patient Declined Transport,10/08/2011 12:24:33 AM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,false,,1,PRIVATE,1,6,9,Mission,"(37.752711512136, -122.411436461904)",112800386-AM10 -160141843,71,16005574,Medical Incident,01/14/2016,01/14/2016,01/14/2016 01:13:18 PM,01/14/2016 01:14:43 PM,01/14/2016 01:15:12 PM,01/14/2016 01:15:21 PM,01/14/2016 01:21:44 PM,01/14/2016 01:41:42 PM,01/14/2016 02:07:27 PM,Code 2 Transport,01/14/2016 02:38:13 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160141843-71 -160671011,67,16026683,Medical Incident,03/07/2016,03/07/2016,03/07/2016 10:42:06 AM,03/07/2016 10:42:56 AM,03/07/2016 10:44:03 AM,03/07/2016 10:44:38 AM,03/07/2016 10:54:38 AM,03/07/2016 11:07:55 AM,03/07/2016 11:15:28 AM,Code 3 Transport,03/07/2016 12:17:52 PM,300 Block of SOUTH HILL BLVD,San Francisco,94112,B09,43,6235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7085560806587, -122.430073010407)",160671011-67 -160160639,63,16006315,Medical Incident,01/16/2016,01/15/2016,01/16/2016 06:05:25 AM,01/16/2016 06:06:18 AM,01/16/2016 06:06:29 AM,01/16/2016 06:06:42 AM,01/16/2016 06:13:30 AM,01/16/2016 06:26:06 AM,01/16/2016 06:41:18 AM,Code 2 Transport,01/16/2016 07:14:53 AM,1600 Block of MARKET ST,San Francisco,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7732180675925, -122.421522300696)",160160639-63 -122570024,AM18,12084824,Medical Incident,09/13/2012,09/12/2012,09/13/2012 04:04:15 AM,09/13/2012 04:04:40 AM,09/13/2012 04:07:51 AM,09/13/2012 04:11:25 AM,09/13/2012 04:14:14 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,No Merit,09/13/2012 04:20:16 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",122570024-AM18 -110610042,T06,11019896,Medical Incident,03/02/2011,03/01/2011,03/02/2011 04:30:43 AM,03/02/2011 04:31:40 AM,03/02/2011 04:36:33 AM,03/02/2011 04:38:22 AM,03/02/2011 04:40:57 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 04:47:55 AM,100 Block of LANDERS ST,SF,94114,B02,6,5234,3,3,3,false,,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7651080913316, -122.427584518743)",110610042-T06 -160280052,KM07,16010921,Medical Incident,01/28/2016,01/27/2016,01/28/2016 12:26:26 AM,01/28/2016 12:27:47 AM,01/28/2016 12:28:10 AM,01/28/2016 12:28:42 AM,01/28/2016 12:28:00 AM,01/28/2016 12:50:41 AM,01/28/2016 12:58:16 AM,Code 2 Transport,01/28/2016 01:26:10 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160280052-KM07 -112410119,T11,11079472,Alarms,08/29/2011,08/29/2011,08/29/2011 10:45:10 AM,08/29/2011 10:47:07 AM,08/29/2011 10:47:16 AM,08/29/2011 10:48:40 AM,08/29/2011 10:52:16 AM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 11:10:42 AM,700 Block of SAN JOSE AVE,SF,94110,B06,32,5575,3,3,3,true,,1,TRUCK,1,6,8,Noe Valley,"(37.743555148233, -122.422948278787)",112410119-T11 -160333259,KM03,16013154,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:50:29 PM,02/02/2016 08:51:35 PM,02/02/2016 08:52:07 PM,02/02/2016 08:52:49 PM,02/02/2016 08:56:49 PM,02/02/2016 09:06:16 PM,02/02/2016 09:16:49 PM,Code 2 Transport,02/02/2016 09:52:15 PM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160333259-KM03 -160352117,AM06,16013852,Medical Incident,02/04/2016,02/04/2016,02/04/2016 02:19:11 PM,02/04/2016 02:21:18 PM,02/04/2016 02:21:54 PM,02/04/2016 02:22:28 PM,02/04/2016 02:36:21 PM,02/04/2016 02:59:29 PM,02/04/2016 03:21:19 PM,Code 2 Transport,02/04/2016 03:56:13 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160352117-AM06 -133200180,84,13108724,Medical Incident,11/16/2013,11/16/2013,11/16/2013 01:12:21 PM,11/16/2013 01:13:02 PM,11/16/2013 01:13:20 PM,11/16/2013 01:13:36 PM,11/16/2013 01:18:21 PM,11/16/2013 01:49:27 PM,11/16/2013 02:21:21 PM,Code 3 Transport,11/16/2013 03:09:23 PM,1300 Block of 34TH AVE,SF,94122,B08,23,7564,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7619258657108, -122.493064380739)",133200180-84 -131050323,E29,13035389,Other,04/15/2013,04/15/2013,04/15/2013 05:57:14 PM,04/15/2013 05:57:19 PM,04/15/2013 05:57:53 PM,04/15/2013 05:58:34 PM,04/15/2013 06:01:18 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/15/2013 06:18:41 PM,ARKANSAS ST/MARIPOSA ST,SF,94107,B03,29,2425,3,3,3,true,Alarm,1,ENGINE,1,3,10,Potrero Hill,"(37.7637357276639, -122.398580416512)",131050323-E29 -120690291,E34,12022983,Water Rescue,03/09/2012,03/09/2012,03/09/2012 06:12:29 PM,03/09/2012 06:14:24 PM,03/09/2012 06:17:35 PM,04/25/2016 01:59:45 PM,03/09/2012 06:27:03 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:28:46 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,Fire,1,ENGINE,5,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",120690291-E34 -113010142,E14,11099805,Gas Leak (Natural and LP Gases),10/28/2011,10/28/2011,10/28/2011 10:51:27 AM,10/28/2011 10:53:28 AM,10/28/2011 10:53:55 AM,10/28/2011 10:55:47 AM,10/28/2011 10:57:10 AM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 11:06:24 AM,500 Block of 33RD AVE,SF,94121,B07,14,7245,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7787282416429, -122.493301622886)",113010142-E14 -111730009,T02,11056929,Outside Fire,06/22/2011,06/21/2011,06/22/2011 12:25:16 AM,06/22/2011 12:25:16 AM,06/22/2011 12:25:38 AM,06/22/2011 12:27:23 AM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 12:30:02 AM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,false,,1,TRUCK,5,1,3,North Beach,"(37.8081576930541, -122.412496867032)",111730009-T02 -120170071,E31,12005631,Traffic Collision,01/17/2012,01/17/2012,01/17/2012 08:09:16 AM,01/17/2012 08:12:17 AM,01/17/2012 08:12:31 AM,01/17/2012 08:14:19 AM,01/17/2012 08:15:55 AM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 08:16:29 AM,16TH AV/GEARY BL,SF,94118,B07,31,7153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.780528533552, -122.47508357879)",120170071-E31 -110630439,T07,11020916,Alarms,03/04/2011,03/04/2011,03/04/2011 11:45:27 PM,03/04/2011 11:45:27 PM,03/04/2011 11:46:18 PM,03/04/2011 11:47:54 PM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Other,03/04/2011 11:48:24 PM,17TH ST/VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7632997692, -122.421731523653)",110630439-T07 -111760366,2R01,11058169,,06/25/2011,06/25/2011,06/25/2011 08:59:56 PM,06/25/2011 09:02:48 PM,06/25/2011 09:03:44 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 09:10:43 PM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,false,,1,ADMIN,0,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",111760366-2R01 -110320145,T07,11010459,Alarms,02/01/2011,02/01/2011,02/01/2011 12:04:37 PM,02/01/2011 12:04:37 PM,02/01/2011 12:05:23 PM,02/01/2011 12:06:37 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,02/01/2011 12:08:53 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7554369366673, -122.41874757536)",110320145-T07 -121650148,E11,12054694,Structure Fire,06/13/2012,06/13/2012,06/13/2012 12:01:43 PM,06/13/2012 12:03:29 PM,06/13/2012 12:04:28 PM,06/13/2012 12:05:53 PM,06/13/2012 12:08:43 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/13/2012 12:12:02 PM,400 Block of ARLINGTON ST,SF,94131,B06,26,8127,3,3,3,true,Fire,1,ENGINE,2,6,8,Glen Park,"(37.7352138289885, -122.429302522016)",121650148-E11 -103030325,E09,10096911,Structure Fire,10/30/2010,10/30/2010,10/30/2010 09:27:32 PM,10/30/2010 09:28:54 PM,10/30/2010 09:29:09 PM,10/30/2010 09:32:32 PM,10/30/2010 09:34:02 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 10:11:38 PM,HOLLADAY AV/YORK ST,SF,94110,B06,9,5672,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7464741474185, -122.405213959019)",103030325-E09 -121190348,E39,12039624,Vehicle Fire,04/28/2012,04/28/2012,04/28/2012 09:36:06 PM,04/28/2012 09:36:54 PM,04/28/2012 09:37:02 PM,04/28/2012 09:38:12 PM,04/28/2012 09:41:07 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 09:51:05 PM,PORTOLA DR/GLENVIEW DR,SF,94131,B08,20,5353,3,3,3,true,Fire,1,ENGINE,1,6,8,Twin Peaks,"(37.7469149228497, -122.447870406555)",121190348-E39 -131250135,KM07,13042199,Medical Incident,05/05/2013,05/05/2013,05/05/2013 11:38:24 AM,05/05/2013 11:40:44 AM,05/05/2013 11:42:02 AM,05/05/2013 11:42:46 AM,05/05/2013 11:46:49 AM,05/05/2013 11:58:31 AM,05/05/2013 12:07:04 PM,Code 2 Transport,05/05/2013 12:59:09 PM,1000 Block of YORK ST,SF,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7552580412955, -122.408352038428)",131250135-KM07 -120730333,56,12024351,Medical Incident,03/13/2012,03/13/2012,03/13/2012 08:19:32 PM,03/13/2012 08:20:26 PM,03/13/2012 08:20:40 PM,03/13/2012 08:21:26 PM,03/13/2012 08:28:04 PM,03/13/2012 08:43:42 PM,03/13/2012 08:49:14 PM,Code 2 Transport,03/13/2012 09:22:36 PM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",120730333-56 -122070032,AP,12068704,Other,07/25/2012,07/24/2012,07/25/2012 02:47:56 AM,07/25/2012 02:47:56 AM,07/25/2012 02:47:56 AM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Fire,07/25/2012 02:48:09 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122070032-AP -132940377,E07,13100156,Medical Incident,10/21/2013,10/21/2013,10/21/2013 10:27:57 PM,10/21/2013 10:28:23 PM,10/21/2013 10:29:06 PM,10/21/2013 10:30:11 PM,10/21/2013 10:32:32 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 10:39:00 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",132940377-E07 -111270220,E08,11042077,Structure Fire,05/07/2011,05/07/2011,05/07/2011 03:53:27 PM,05/07/2011 03:53:27 PM,05/07/2011 03:54:17 PM,05/07/2011 03:55:21 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/07/2011 03:56:56 PM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,3,3,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7802649718101, -122.40338721034)",111270220-E08 -132090077,54,13070605,Medical Incident,07/28/2013,07/27/2013,07/28/2013 07:03:12 AM,07/28/2013 07:03:41 AM,07/28/2013 07:03:49 AM,07/28/2013 07:04:06 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,04/25/2016 01:51:36 PM,7TH AV/IRVING ST,SF,94122,B08,22,7332,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,5,Inner Sunset,"(37.7641308708366, -122.46417202271)",132090077-54 -160610992,AM08,16024245,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:56:21 AM,03/01/2016 09:56:21 AM,03/01/2016 09:57:08 AM,03/01/2016 09:57:38 AM,03/01/2016 10:01:47 AM,03/01/2016 10:18:38 AM,03/01/2016 10:34:03 AM,Code 2 Transport,03/01/2016 10:53:57 AM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160610992-AM08 -120700397,E07,12023442,Medical Incident,03/10/2012,03/10/2012,03/10/2012 11:08:47 PM,03/10/2012 11:09:40 PM,03/10/2012 11:09:53 PM,03/10/2012 11:10:56 PM,03/10/2012 11:14:21 PM,04/25/2016 01:59:44 PM,04/25/2016 01:59:44 PM,Other,03/10/2012 11:17:05 PM,24TH ST/HARRISON ST,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7526285917569, -122.41189982284)",120700397-E07 -160602185,67,16023956,Medical Incident,02/29/2016,02/29/2016,02/29/2016 03:19:44 PM,02/29/2016 03:22:12 PM,02/29/2016 03:23:47 PM,02/29/2016 03:24:08 PM,02/29/2016 03:36:07 PM,02/29/2016 03:56:46 PM,02/29/2016 04:21:43 PM,Code 2 Transport,02/29/2016 05:09:08 PM,300 Block of CASTENADA AVE,San Francisco,94116,B08,39,8621,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7459543314229, -122.464661989257)",160602185-67 -160282530,74,16011155,Medical Incident,01/28/2016,01/28/2016,01/28/2016 03:54:41 PM,01/28/2016 03:56:45 PM,01/28/2016 03:58:55 PM,01/28/2016 03:59:06 PM,01/28/2016 04:08:41 PM,01/28/2016 04:21:25 PM,01/28/2016 04:39:08 PM,Code 2 Transport,01/28/2016 05:12:52 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160282530-74 -160811622,60,16032166,Medical Incident,03/21/2016,03/21/2016,03/21/2016 12:23:48 PM,03/21/2016 12:25:38 PM,03/21/2016 12:26:04 PM,03/21/2016 12:26:27 PM,03/21/2016 12:46:04 PM,03/21/2016 01:00:07 PM,03/21/2016 01:16:23 PM,Code 2 Transport,03/21/2016 01:52:34 PM,MARKET ST/3RD ST,San Francisco,94103,B03,1,2211,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",160811622-60 -131600090,T02,13054278,Alarms,06/09/2013,06/09/2013,06/09/2013 09:09:48 AM,06/09/2013 09:11:15 AM,06/09/2013 09:11:20 AM,06/09/2013 09:12:27 AM,06/09/2013 09:15:09 AM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/09/2013 09:22:59 AM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",131600090-T02 -131340066,B04,13045112,Structure Fire,05/14/2013,05/13/2013,05/14/2013 07:25:27 AM,05/14/2013 07:26:39 AM,05/14/2013 07:26:49 AM,05/14/2013 07:28:07 AM,05/14/2013 07:30:51 AM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/14/2013 07:33:08 AM,2000 Block of UNION ST,SF,94123,B04,16,3443,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.7974567249549, -122.433036469991)",131340066-B04 -160421865,79,16016875,Medical Incident,02/11/2016,02/11/2016,02/11/2016 01:12:47 PM,02/11/2016 01:14:59 PM,02/11/2016 01:15:40 PM,02/11/2016 01:15:51 PM,02/11/2016 01:18:27 PM,02/11/2016 01:30:16 PM,02/11/2016 01:44:37 PM,Code 2 Transport,02/11/2016 02:06:49 PM,400 Block of POWELL ST,San Francisco,94102,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",160421865-79 -132920266,E11,13099440,Structure Fire,10/19/2013,10/19/2013,10/19/2013 04:55:02 PM,10/19/2013 04:56:01 PM,10/19/2013 04:56:12 PM,10/19/2013 04:56:51 PM,10/19/2013 04:58:44 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 05:01:36 PM,CASTRO ST/24TH ST,SF,94114,B06,24,5521,3,3,3,true,Alarm,1,ENGINE,3,6,8,Noe Valley,"(37.7513037332512, -122.434089515984)",132920266-E11 -130810382,88,13027294,Medical Incident,03/22/2013,03/22/2013,03/22/2013 11:16:02 PM,03/22/2013 11:20:54 PM,03/22/2013 11:21:15 PM,03/22/2013 11:21:30 PM,03/22/2013 11:39:13 PM,03/22/2013 11:42:42 PM,03/22/2013 11:54:48 PM,Code 2 Transport,03/23/2013 12:38:17 AM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",130810382-88 -160452983,62,16018260,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:50:29 PM,02/14/2016 07:51:32 PM,02/14/2016 07:51:56 PM,02/14/2016 07:52:10 PM,02/14/2016 08:00:57 PM,02/14/2016 08:25:53 PM,02/14/2016 08:57:05 PM,Code 2 Transport,02/14/2016 09:20:18 PM,1300 Block of CALIFORNIA ST,San Francisco,94109,B01,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",160452983-62 -122060057,AR1,12068386,Vehicle Fire,07/24/2012,07/23/2012,07/24/2012 06:12:34 AM,07/24/2012 06:14:11 AM,07/24/2012 06:14:26 AM,07/24/2012 06:26:43 AM,07/24/2012 06:38:15 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 06:25:30 AM,1300 Block of UNDERWOOD AVE,SF,94124,B10,17,6653,3,3,3,false,Fire,1,INVESTIGATION,3,10,10,Bayview Hunters Point,"(37.7271809770545, -122.387135707387)",122060057-AR1 -121330101,RS1,12044198,Medical Incident,05/12/2012,05/12/2012,05/12/2012 08:52:41 AM,05/12/2012 08:53:34 AM,05/12/2012 08:53:56 AM,05/12/2012 08:54:29 AM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 08:54:33 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7820387146172, -122.40232147638)",121330101-RS1 -160920440,88,16036318,Medical Incident,04/01/2016,03/31/2016,04/01/2016 05:35:32 AM,04/01/2016 05:36:31 AM,04/01/2016 05:36:56 AM,04/01/2016 05:37:03 AM,04/01/2016 05:52:22 AM,04/01/2016 06:06:03 AM,04/01/2016 06:23:20 AM,Code 2 Transport,04/01/2016 07:09:07 AM,1500 Block of OWENS ST,San Francisco,94158,B03,4,2265,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7688607878339, -122.395396036624)",160920440-88 -160661286,55,16026360,Medical Incident,03/06/2016,03/06/2016,03/06/2016 11:47:22 AM,03/06/2016 11:47:22 AM,03/06/2016 11:47:55 AM,03/06/2016 11:49:02 AM,03/06/2016 11:54:47 AM,03/06/2016 01:05:08 PM,03/06/2016 01:16:50 PM,Code 2 Transport,03/06/2016 01:44:54 PM,GEARY BL/GOUGH ST,San Francisco,94109,B04,3,3222,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7853346212295, -122.4246870426)",160661286-55 -113010423,T03,11100036,Medical Incident,10/28/2011,10/28/2011,10/28/2011 11:51:31 PM,10/28/2011 11:52:34 PM,10/28/2011 11:53:25 PM,10/28/2011 11:54:51 PM,10/28/2011 11:56:23 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/29/2011 12:04:59 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,,1,TRUCK,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113010423-T03 -123410134,D3,12113740,Structure Fire,12/06/2012,12/06/2012,12/06/2012 09:38:24 AM,12/06/2012 09:39:46 AM,12/06/2012 09:41:13 AM,04/25/2016 01:55:27 PM,12/06/2012 09:42:46 AM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/06/2012 09:46:01 AM,900 Block of MARIPOSA ST,SF,94107,B03,29,2436,3,3,3,false,Alarm,1,CHIEF,1,3,10,Potrero Hill,"(37.7639837100324, -122.393446448966)",123410134-D3 -102320333,65,10073140,Medical Incident,08/20/2010,08/20/2010,08/20/2010 08:25:35 PM,08/20/2010 08:26:19 PM,08/20/2010 08:26:47 PM,08/20/2010 08:27:37 PM,08/20/2010 08:32:38 PM,08/20/2010 08:40:21 PM,08/20/2010 09:17:19 PM,Code 2 Transport,08/20/2010 09:39:52 PM,200 Block of HOLYOKE ST,SF,94134,B10,42,6342,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7281264834061, -122.409351194321)",102320333-65 -102650038,B02,10083764,Alarms,09/22/2010,09/21/2010,09/22/2010 04:47:49 AM,09/22/2010 04:48:37 AM,09/22/2010 04:48:52 AM,09/22/2010 04:51:10 AM,09/22/2010 04:54:18 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 05:03:29 AM,300 Block of DOLORES ST,SF,94110,B02,6,5251,3,3,3,false,,1,CHIEF,3,2,8,Mission,"(37.7635158382169, -122.426118705944)",102650038-B02 -122120047,88,12070266,Medical Incident,07/30/2012,07/29/2012,07/30/2012 05:08:27 AM,07/30/2012 05:08:56 AM,07/30/2012 05:11:06 AM,07/30/2012 05:15:05 AM,07/30/2012 05:25:54 AM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/30/2012 05:26:13 AM,0 Block of WATCHMAN WAY,SF,94107,B10,37,2566,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7553520145946, -122.395257871762)",122120047-88 -121190097,E07,12039410,Structure Fire,04/28/2012,04/28/2012,04/28/2012 09:01:02 AM,04/28/2012 09:01:02 AM,04/28/2012 09:01:10 AM,04/28/2012 09:02:29 AM,04/28/2012 09:06:10 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,No Merit,04/28/2012 09:06:33 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,true,Alarm,1,ENGINE,2,2,6,Mission,"(37.7726641818375, -122.418338317697)",121190097-E07 -102660263,E28,10084236,Medical Incident,09/23/2010,09/23/2010,09/23/2010 05:03:24 PM,09/23/2010 05:04:05 PM,09/23/2010 05:06:10 PM,09/23/2010 05:07:39 PM,09/23/2010 05:09:46 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 05:25:45 PM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8046368314261, -122.414251200714)",102660263-E28 -113530312,E43,11117308,Medical Incident,12/19/2011,12/19/2011,12/19/2011 07:32:56 PM,12/19/2011 07:33:53 PM,12/19/2011 07:34:28 PM,12/19/2011 07:37:12 PM,12/19/2011 07:37:27 PM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 07:50:35 PM,0 Block of CORDOVA ST,SF,94112,B09,43,6224,E,E,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7128542066496, -122.43602367503)",113530312-E43 -160520346,AM24,16020675,Medical Incident,02/21/2016,02/20/2016,02/21/2016 02:13:43 AM,02/21/2016 02:14:17 AM,02/21/2016 02:16:23 AM,02/21/2016 02:16:23 AM,02/21/2016 02:18:09 AM,02/21/2016 02:42:59 AM,02/21/2016 02:45:27 AM,Code 3 Transport,02/21/2016 03:45:28 AM,1500 Block of VAN NESS AVE,San Francisco,94109,B04,38,3155,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Western Addition,"(37.7898667563619, -122.422402454582)",160520346-AM24 -121720166,B06,12057096,Structure Fire,06/20/2012,06/20/2012,06/20/2012 12:29:21 PM,06/20/2012 12:31:52 PM,06/20/2012 12:33:41 PM,06/20/2012 12:34:33 PM,06/20/2012 12:36:03 PM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,Other,06/20/2012 12:42:12 PM,3900 Block of 23RD ST,SF,94114,B06,11,5514,3,3,3,false,Fire,1,CHIEF,2,6,8,Noe Valley,"(37.7530369299091, -122.430910430767)",121720166-B06 -111380104,RC1,11045815,Medical Incident,05/18/2011,05/18/2011,05/18/2011 09:50:07 AM,05/18/2011 09:51:16 AM,05/18/2011 09:51:30 AM,04/25/2016 02:04:34 PM,05/18/2011 09:54:59 AM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 10:14:54 AM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,,1,RESCUE CAPTAIN,2,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",111380104-RC1 -103370088,T10,10107727,Structure Fire,12/03/2010,12/03/2010,12/03/2010 09:19:04 AM,12/03/2010 09:19:35 AM,12/03/2010 09:19:55 AM,12/03/2010 09:21:48 AM,12/03/2010 09:25:07 AM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/03/2010 09:29:19 AM,400 Block of 7TH AVE,SF,94118,B07,31,7131,3,3,3,false,,1,TRUCK,4,7,1,Inner Richmond,"(37.7800008161634, -122.465350847748)",103370088-T10 -160631359,85,16025031,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:57:04 AM,03/03/2016 10:58:51 AM,03/03/2016 11:01:28 AM,03/03/2016 11:01:51 AM,03/03/2016 11:07:33 AM,03/03/2016 11:31:49 AM,03/03/2016 11:37:27 AM,Code 2 Transport,03/03/2016 11:59:53 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",160631359-85 -110020241,E17,11000717,Smoke Investigation (Outside),01/02/2011,01/02/2011,01/02/2011 05:04:50 PM,01/02/2011 05:08:04 PM,01/02/2011 05:08:16 PM,01/02/2011 05:10:07 PM,01/02/2011 05:10:57 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Fire,01/02/2011 05:14:40 PM,INGALLS ST/PALOU AV,SF,94124,B10,17,6572,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7297375529835, -122.38343118495)",110020241-E17 -123190189,KM02,12106070,Medical Incident,11/14/2012,11/14/2012,11/14/2012 01:09:15 PM,11/14/2012 01:09:52 PM,11/14/2012 01:10:03 PM,11/14/2012 01:11:00 PM,11/14/2012 01:20:03 PM,11/14/2012 01:37:58 PM,11/14/2012 01:45:52 PM,Code 2 Transport,11/14/2012 02:40:17 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",123190189-KM02 -123470076,79,12115929,Medical Incident,12/12/2012,12/11/2012,12/12/2012 07:44:26 AM,12/12/2012 07:45:56 AM,12/12/2012 07:46:16 AM,12/12/2012 07:46:37 AM,12/12/2012 07:50:12 AM,12/12/2012 07:58:23 AM,12/12/2012 08:13:33 AM,Code 2 Transport,12/12/2012 08:37:22 AM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7840781681969, -122.41852472124)",123470076-79 -120230180,E11,12007790,Medical Incident,01/23/2012,01/23/2012,01/23/2012 12:10:07 PM,01/23/2012 12:11:03 PM,01/23/2012 12:11:23 PM,01/23/2012 12:12:12 PM,01/23/2012 12:13:48 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 12:21:01 PM,1500 Block of VALENCIA ST,SF,94110,B06,11,5611,E,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7473464894373, -122.420273560089)",120230180-E11 -160350830,79,16013724,Medical Incident,02/04/2016,02/04/2016,02/04/2016 08:34:40 AM,02/04/2016 08:35:02 AM,02/04/2016 08:35:14 AM,02/04/2016 08:35:21 AM,02/04/2016 08:44:55 AM,02/04/2016 08:56:53 AM,02/04/2016 09:06:27 AM,Code 2 Transport,02/04/2016 09:26:49 AM,1700 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7822796519681, -122.477904660461)",160350830-79 -160543768,70,16021775,Medical Incident,02/23/2016,02/23/2016,02/23/2016 09:03:24 PM,02/23/2016 09:04:32 PM,02/23/2016 09:06:17 PM,02/23/2016 09:07:00 PM,02/23/2016 09:11:58 PM,02/23/2016 09:26:08 PM,02/23/2016 09:33:22 PM,Code 2 Transport,02/23/2016 10:04:03 PM,STANYAN ST/HAIGHT ST,San Francisco,94117,B05,12,4553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",160543768-70 -140720128,KM14,14024269,Medical Incident,03/13/2014,03/13/2014,03/13/2014 09:43:39 AM,03/13/2014 09:44:49 AM,03/13/2014 09:45:03 AM,03/13/2014 09:49:28 AM,03/13/2014 09:49:56 AM,03/13/2014 10:08:37 AM,03/13/2014 10:19:53 AM,Code 2 Transport,03/13/2014 10:59:21 AM,900 Block of MASON ST,SAN FRANCISCO,94108,B01,41,1414,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",140720128-KM14 -102280145,E36,10071749,Traffic Collision,08/16/2010,08/16/2010,08/16/2010 11:28:58 AM,08/16/2010 11:29:10 AM,08/16/2010 11:30:24 AM,08/16/2010 11:30:58 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/16/2010 11:40:50 AM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,2,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",102280145-E36 -102780333,65,10088501,Medical Incident,10/05/2010,10/05/2010,10/05/2010 07:15:10 PM,10/05/2010 07:15:38 PM,10/05/2010 07:16:11 PM,10/05/2010 07:16:20 PM,10/05/2010 07:24:53 PM,10/05/2010 07:42:00 PM,04/25/2016 02:08:15 PM,Code 2 Transport,10/05/2010 08:00:31 PM,500 Block of MARKET ST,SF,94105,B03,13,2143,2,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",102780333-65 -130200110,E01,13006809,Medical Incident,01/20/2013,01/20/2013,01/20/2013 09:46:23 AM,01/20/2013 09:47:04 AM,01/20/2013 09:47:32 AM,01/20/2013 09:47:40 AM,01/20/2013 09:50:12 AM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/20/2013 10:01:00 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",130200110-E01 -110380127,E32,11012537,Medical Incident,02/07/2011,02/07/2011,02/07/2011 09:19:20 AM,02/07/2011 09:20:21 AM,02/07/2011 09:20:59 AM,02/07/2011 09:22:44 AM,02/07/2011 09:25:53 AM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,Other,02/07/2011 09:39:54 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",110380127-E32 -160322208,85,16012620,Medical Incident,02/01/2016,02/01/2016,02/01/2016 03:07:47 PM,02/01/2016 03:09:49 PM,02/01/2016 03:10:03 PM,02/01/2016 03:10:12 PM,02/01/2016 03:21:37 PM,02/01/2016 03:39:47 PM,02/01/2016 03:55:24 PM,Code 2 Transport,02/01/2016 04:27:34 PM,500 Block of MISSOURI ST,San Francisco,94107,B10,37,252,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7591673695367, -122.396100402003)",160322208-85 -102370351,E41,10074852,Other,08/25/2010,08/25/2010,08/25/2010 07:22:39 PM,08/25/2010 07:23:12 PM,08/25/2010 07:23:21 PM,08/25/2010 07:24:17 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,No Merit,08/25/2010 07:31:56 PM,2100 Block of LARKIN ST,SF,94109,B01,41,1631,3,3,3,false,,1,ENGINE,1,4,3,Russian Hill,"(37.7975625827342, -122.420477453586)",102370351-E41 -132230284,E17,13075406,Medical Incident,08/11/2013,08/11/2013,08/11/2013 06:46:47 PM,08/11/2013 06:48:01 PM,08/11/2013 06:49:35 PM,08/11/2013 06:51:21 PM,08/11/2013 06:56:59 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 07:15:00 PM,4600 Block of 3RD ST,SF,94124,B10,17,6516,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7360180524544, -122.390409391697)",132230284-E17 -102760211,E01,10087751,Medical Incident,10/03/2010,10/03/2010,10/03/2010 01:40:05 PM,10/03/2010 01:40:33 PM,10/03/2010 01:41:01 PM,10/03/2010 01:42:59 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 01:50:07 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",102760211-E01 -112650377,63,11087658,Medical Incident,09/22/2011,09/22/2011,09/22/2011 07:44:37 PM,09/22/2011 07:45:21 PM,09/22/2011 07:45:47 PM,09/22/2011 07:46:33 PM,09/22/2011 07:55:32 PM,09/22/2011 08:21:50 PM,09/22/2011 08:41:33 PM,Code 2 Transport,09/22/2011 09:12:16 PM,600 Block of PACIFIC AVE,SF,94133,B01,13,1246,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",112650377-63 -132810411,88,13095797,Medical Incident,10/08/2013,10/08/2013,10/08/2013 11:21:43 PM,10/08/2013 11:23:13 PM,10/08/2013 11:23:53 PM,10/08/2013 11:24:01 PM,10/08/2013 11:38:06 PM,10/08/2013 11:39:13 PM,10/08/2013 11:45:57 PM,Code 2 Transport,10/09/2013 12:17:53 AM,600 Block of CLAY ST,SF,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",132810411-88 -133080064,E43,13104620,Structure Fire,11/04/2013,11/03/2013,11/04/2013 07:05:01 AM,11/04/2013 07:07:10 AM,11/04/2013 07:07:42 AM,04/25/2016 01:49:56 PM,11/04/2013 07:08:45 AM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/04/2013 07:13:05 AM,1100 Block of OCEAN AV,SF,94112,B09,15,8472,3,3,3,false,Alarm,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7234871655198, -122.454662311927)",133080064-E43 -132090104,B10,13070629,Alarms,07/28/2013,07/28/2013,07/28/2013 09:02:50 AM,07/28/2013 09:04:43 AM,07/28/2013 09:05:17 AM,07/28/2013 09:06:47 AM,07/28/2013 09:09:13 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/28/2013 09:14:41 AM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",132090104-B10 -102710094,E42,10085922,Structure Fire,09/28/2010,09/28/2010,09/28/2010 08:29:11 AM,09/28/2010 08:30:30 AM,09/28/2010 08:30:52 AM,09/28/2010 08:31:58 AM,09/28/2010 08:34:14 AM,04/25/2016 02:08:22 PM,04/25/2016 02:08:22 PM,Other,09/28/2010 09:21:11 AM,1500 Block of SHAFTER AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,4,10,10,Bayview Hunters Point,"(37.730553557091, -122.389751029234)",102710094-E42 -131010043,82,13033845,Medical Incident,04/11/2013,04/10/2013,04/11/2013 05:22:41 AM,04/11/2013 05:24:05 AM,04/11/2013 05:24:19 AM,04/11/2013 05:24:28 AM,04/11/2013 05:33:48 AM,04/11/2013 05:45:38 AM,04/11/2013 06:24:59 AM,Code 2 Transport,04/11/2013 06:27:43 AM,500 Block of MINNA ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7800574377607, -122.408673540372)",131010043-82 -101320349,T03,10041222,Alarms,05/12/2010,05/12/2010,05/12/2010 08:40:35 PM,05/12/2010 08:41:44 PM,05/12/2010 08:42:09 PM,05/12/2010 08:43:21 PM,05/12/2010 08:45:11 PM,04/25/2016 03:23:18 PM,04/25/2016 03:23:18 PM,Other,05/12/2010 08:55:37 PM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,false,,1,TRUCK,2,1,3,Nob Hill,"(37.7885472961758, -122.414374370709)",101320349-T03 -132310270,E18,13078072,Medical Incident,08/19/2013,08/19/2013,08/19/2013 03:44:57 PM,08/19/2013 03:47:12 PM,08/19/2013 03:47:29 PM,08/19/2013 03:48:45 PM,08/19/2013 03:50:16 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 04:12:03 PM,2000 Block of 30TH AVE,SF,94116,B08,18,7516,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7490607246002, -122.487862048225)",132310270-E18 -131030339,B01,13034723,Alarms,04/13/2013,04/13/2013,04/13/2013 09:05:18 PM,04/13/2013 09:06:24 PM,04/13/2013 09:06:37 PM,04/25/2016 01:53:20 PM,04/13/2013 09:09:34 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/13/2013 09:16:01 PM,800 Block of CALIFORNIA ST,SF,94108,B01,2,1356,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7922694289836, -122.407814772426)",131030339-B01 -121570324,93,12052073,Medical Incident,06/05/2012,06/05/2012,06/05/2012 08:30:29 PM,06/05/2012 08:34:29 PM,06/05/2012 08:34:52 PM,06/05/2012 08:35:13 PM,06/05/2012 08:56:31 PM,06/05/2012 08:59:55 PM,06/05/2012 09:19:51 PM,Code 2 Transport,06/05/2012 09:43:05 PM,0 Block of CYRIL MAGNIN ST,SF,94102,B03,1,1366,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",121570324-93 -160270459,65,16010550,Medical Incident,01/27/2016,01/26/2016,01/27/2016 06:21:28 AM,01/27/2016 06:24:10 AM,01/27/2016 06:24:30 AM,01/27/2016 06:24:40 AM,01/27/2016 06:27:49 AM,01/27/2016 06:40:59 AM,01/27/2016 06:56:53 AM,Code 2 Transport,01/27/2016 07:41:33 AM,1000 Block of PINE ST,San Francisco,94109,B01,41,1464,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7906221863031, -122.413101980649)",160270459-65 -140240297,E03,14008269,Alarms,01/24/2014,01/24/2014,01/24/2014 04:06:15 PM,01/24/2014 04:06:15 PM,01/24/2014 04:06:49 PM,01/24/2014 04:06:57 PM,01/24/2014 04:11:01 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Fire,01/24/2014 04:15:55 PM,GRANT AV/POST ST,SF,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",140240297-E03 -103590333,72,10115355,Medical Incident,12/25/2010,12/25/2010,12/25/2010 09:26:35 PM,12/25/2010 09:27:26 PM,12/25/2010 09:27:42 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,04/25/2016 02:06:55 PM,300 Block of WHEELER AVE,SF,94134,B10,44,6271,3,3,3,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7113240203215, -122.400039856194)",103590333-72 -121280074,E08,12042505,Alarms,05/07/2012,05/07/2012,05/07/2012 08:05:22 AM,05/07/2012 08:05:22 AM,05/07/2012 08:06:25 AM,05/07/2012 08:08:26 AM,05/07/2012 08:12:37 AM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 08:13:32 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",121280074-E08 -130680409,B02,13022872,Alarms,03/09/2013,03/09/2013,03/09/2013 11:07:17 PM,03/09/2013 11:08:29 PM,03/09/2013 11:08:36 PM,03/09/2013 11:09:11 PM,03/09/2013 11:12:30 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/09/2013 11:19:12 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",130680409-B02 -131730070,77,13058609,Medical Incident,06/22/2013,06/21/2013,06/22/2013 07:24:07 AM,06/22/2013 07:24:54 AM,06/22/2013 07:25:17 AM,06/22/2013 07:26:44 AM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/22/2013 07:36:10 AM,500 Block of 14TH ST,SF,94103,B02,6,5214,3,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Mission,"(37.7678894397284, -122.425439589883)",131730070-77 -140380321,E07,14012945,Electrical Hazard,02/07/2014,02/07/2014,02/07/2014 07:20:31 PM,02/07/2014 07:22:06 PM,02/07/2014 07:22:13 PM,02/07/2014 07:23:39 PM,02/07/2014 07:26:48 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 08:17:54 PM,2800 Block of HARRISON ST,SF,94110,B06,7,5533,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7518270551886, -122.411891999747)",140380321-E07 -131000098,55,13033535,Medical Incident,04/10/2013,04/10/2013,04/10/2013 09:36:38 AM,04/10/2013 09:38:42 AM,04/10/2013 09:42:51 AM,04/10/2013 09:43:07 AM,04/10/2013 09:52:44 AM,04/10/2013 10:11:49 AM,04/10/2013 10:42:06 AM,Code 2 Transport,04/10/2013 11:06:26 AM,MISSION ST/GENEVA AV,SF,94112,B09,43,6175,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",131000098-55 -120250360,E06,12008548,Medical Incident,01/25/2012,01/25/2012,01/25/2012 08:45:34 PM,01/25/2012 08:47:52 PM,01/25/2012 08:48:32 PM,01/25/2012 08:49:37 PM,01/25/2012 08:51:32 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 09:00:26 PM,3900 Block of 18TH ST,SF,94114,B05,6,5417,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7611431684857, -122.431688789383)",120250360-E06 -120780332,84,12026001,Medical Incident,03/18/2012,03/18/2012,03/18/2012 07:01:28 PM,03/18/2012 07:01:40 PM,03/18/2012 07:03:41 PM,03/18/2012 07:04:03 PM,03/18/2012 07:09:53 PM,03/18/2012 07:31:09 PM,03/18/2012 07:37:49 PM,Code 2 Transport,03/18/2012 07:52:19 PM,SUTTER ST/POWELL ST,SF,94108,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.789225612812, -122.40859504465)",120780332-84 -80270203,B09,8008644,Alarms,01/27/2008,01/27/2008,01/27/2008 12:35:43 PM,01/27/2008 12:42:26 PM,01/27/2008 12:42:51 PM,01/27/2008 12:44:25 PM,01/27/2008 12:49:23 PM,04/25/2016 03:35:49 PM,04/25/2016 03:35:49 PM,Fire,01/27/2008 12:52:40 PM,5700 Block of MISSION ST,SF,94112,B09,33,6212,3,3,3,false,,1,CHIEF,2,9,11,Excelsior,"(37.709762526111, -122.449674980499)",080270203-B09 -160190497,83,16007488,Medical Incident,01/19/2016,01/18/2016,01/19/2016 06:21:42 AM,01/19/2016 06:23:58 AM,01/19/2016 06:24:43 AM,01/19/2016 06:24:52 AM,01/19/2016 06:27:53 AM,01/19/2016 06:42:05 AM,01/19/2016 06:54:52 AM,Code 2 Transport,01/19/2016 07:26:26 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",160190497-83 -132710003,RC1,13091912,Medical Incident,09/28/2013,09/27/2013,09/28/2013 12:06:23 AM,09/28/2013 12:06:52 AM,09/28/2013 12:07:35 AM,09/28/2013 12:08:29 AM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/28/2013 12:11:15 AM,29TH ST/CHURCH ST,SF,94131,B06,11,5563,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,6,8,Noe Valley,"(37.7436995806296, -122.42667038152)",132710003-RC1 -131290134,KM09,13043562,Medical Incident,05/09/2013,05/09/2013,05/09/2013 11:14:35 AM,05/09/2013 11:17:14 AM,05/09/2013 11:17:29 AM,05/09/2013 11:18:39 AM,05/09/2013 11:31:35 AM,05/09/2013 11:55:49 AM,05/09/2013 12:21:16 PM,Code 2 Transport,05/09/2013 12:28:42 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131290134-KM09 -132110336,81,13071508,Medical Incident,07/30/2013,07/30/2013,07/30/2013 11:52:29 PM,07/30/2013 11:53:17 PM,07/30/2013 11:53:31 PM,07/30/2013 11:53:45 PM,07/30/2013 11:59:08 PM,07/31/2013 12:24:38 AM,07/31/2013 01:03:38 AM,Code 2 Transport,07/31/2013 01:39:44 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",132110336-81 -131420026,55,13048010,Medical Incident,05/22/2013,05/21/2013,05/22/2013 02:38:44 AM,05/22/2013 02:40:03 AM,05/22/2013 02:40:10 AM,05/22/2013 02:40:28 AM,05/22/2013 02:48:20 AM,05/22/2013 03:01:04 AM,05/22/2013 03:11:36 AM,Code 2 Transport,05/22/2013 03:55:36 AM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",131420026-55 -110080286,FB1,11002768,Administrative,01/08/2011,01/08/2011,01/08/2011 06:34:24 PM,01/08/2011 06:34:54 PM,01/08/2011 06:35:18 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/08/2011 06:35:41 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,false,,1,SUPPORT,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",110080286-FB1 -160510720,65,16020388,Medical Incident,02/20/2016,02/20/2016,02/20/2016 08:05:58 AM,02/20/2016 08:06:25 AM,02/20/2016 08:06:50 AM,02/20/2016 08:06:59 AM,02/20/2016 08:13:40 AM,02/20/2016 08:24:20 AM,02/20/2016 08:24:20 AM,Code 2 Transport,02/20/2016 09:16:40 AM,1000 Block of SHOTWELL ST,San Francisco,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7516425997951, -122.41502434397)",160510720-65 -102410326,E42,10076144,Medical Incident,08/29/2010,08/29/2010,08/29/2010 08:51:56 PM,08/29/2010 08:52:30 PM,08/29/2010 08:52:47 PM,08/29/2010 08:53:36 PM,08/29/2010 08:55:59 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/29/2010 09:08:51 PM,600 Block of UNIVERSITY ST,SF,94134,B09,42,6344,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7220752950278, -122.412154949905)",102410326-E42 -102630341,E06,10083342,Medical Incident,09/20/2010,09/20/2010,09/20/2010 07:42:54 PM,09/20/2010 07:44:59 PM,09/20/2010 07:47:37 PM,09/20/2010 07:48:36 PM,09/20/2010 07:50:05 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 07:55:47 PM,200 Block of SANCHEZ ST,SF,94114,B02,6,5231,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7651165803072, -122.431022802867)",102630341-E06 -113020197,92,11100206,Medical Incident,10/29/2011,10/29/2011,10/29/2011 12:24:38 PM,10/29/2011 12:24:58 PM,10/29/2011 12:25:12 PM,10/29/2011 12:26:13 PM,10/29/2011 12:32:44 PM,04/25/2016 02:01:55 PM,04/25/2016 02:01:55 PM,Other,10/29/2011 12:32:46 PM,500 Block of JOHN MUIR DR,SF,94132,B08,19,8714,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",113020197-92 -130370122,KM01,13012644,Medical Incident,02/06/2013,02/06/2013,02/06/2013 10:38:27 AM,02/06/2013 10:39:02 AM,02/06/2013 10:39:16 AM,02/06/2013 10:39:57 AM,02/06/2013 10:46:10 AM,02/06/2013 11:09:22 AM,02/06/2013 11:20:39 AM,Code 2 Transport,02/06/2013 12:08:20 PM,1800 Block of GOLDEN GATE AVE,SF,94115,B05,21,4242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Western Addition,"(37.7784597347567, -122.44105052615)",130370122-KM01 -130870298,E02,13029115,Alarms,03/28/2013,03/28/2013,03/28/2013 06:33:48 PM,03/28/2013 06:33:48 PM,03/28/2013 06:34:06 PM,03/28/2013 06:35:58 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 06:36:38 PM,SANSOME ST/SACRAMENTO ST,SF,94111,B01,13,1166,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.793987062413, -122.401314505437)",130870298-E02 -122790032,E08,12092106,Medical Incident,10/05/2012,10/04/2012,10/05/2012 01:51:08 AM,10/05/2012 01:51:27 AM,10/05/2012 01:52:23 AM,04/25/2016 01:56:27 PM,10/05/2012 01:56:20 AM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/05/2012 02:02:38 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7753428666813, -122.403307133032)",122790032-E08 -160501576,85,16020070,Medical Incident,02/19/2016,02/19/2016,02/19/2016 12:25:54 PM,02/19/2016 12:25:54 PM,02/19/2016 12:26:40 PM,02/19/2016 12:27:29 PM,02/19/2016 12:37:55 PM,02/19/2016 01:15:52 PM,02/19/2016 01:48:18 PM,Code 2 Transport,02/19/2016 02:55:11 PM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160501576-85 -110620342,E07,11020505,Medical Incident,03/03/2011,03/03/2011,03/03/2011 08:25:26 PM,03/03/2011 08:25:58 PM,03/03/2011 08:26:11 PM,03/03/2011 08:27:40 PM,03/03/2011 08:29:16 PM,04/25/2016 02:05:48 PM,04/25/2016 02:05:48 PM,Other,03/03/2011 08:43:52 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",110620342-E07 -160790631,52,16031320,Medical Incident,03/19/2016,03/18/2016,03/19/2016 06:19:07 AM,03/19/2016 06:19:07 AM,03/19/2016 06:22:26 AM,03/19/2016 06:22:36 AM,03/19/2016 06:23:53 AM,03/19/2016 06:34:04 AM,03/19/2016 06:56:22 AM,Code 3 Transport,03/19/2016 07:17:36 AM,23RD ST/UTAH ST,San Francisco,94110,B10,37,2554,A,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.754337232305, -122.405454171915)",160790631-52 -160920487,53,16036327,Medical Incident,04/01/2016,03/31/2016,04/01/2016 06:14:22 AM,04/01/2016 06:16:17 AM,04/01/2016 06:17:00 AM,04/01/2016 06:17:09 AM,04/01/2016 06:31:38 AM,04/01/2016 06:42:05 AM,04/01/2016 06:57:03 AM,Code 2 Transport,04/01/2016 07:38:06 AM,400 Block of THE EMBARCADERO,San Francisco,94111,B01,13,907,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",160920487-53 -121620357,T01,12053782,Structure Fire,06/10/2012,06/10/2012,06/10/2012 07:34:41 PM,06/10/2012 07:34:42 PM,06/10/2012 07:34:51 PM,06/10/2012 07:36:16 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 07:38:56 PM,500 Block of MARKET ST,SF,94105,B03,1,2144,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",121620357-T01 -130490291,88,13016803,Medical Incident,02/18/2013,02/18/2013,02/18/2013 06:29:19 PM,02/18/2013 06:32:39 PM,02/18/2013 06:33:14 PM,02/18/2013 06:33:51 PM,02/18/2013 06:44:56 PM,02/18/2013 06:58:34 PM,04/25/2016 01:54:13 PM,Code 2 Transport,02/18/2013 07:21:05 PM,900 Block of HAYES ST,SF,94117,B05,21,3631,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7757844466813, -122.432025160558)",130490291-88 -112520287,E03,11083170,Medical Incident,09/09/2011,09/09/2011,09/09/2011 04:00:57 PM,09/09/2011 04:00:57 PM,09/09/2011 04:02:23 PM,09/09/2011 04:03:56 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,No Merit,09/09/2011 04:06:59 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",112520287-E03 -110320226,E43,11010523,Medical Incident,02/01/2011,02/01/2011,02/01/2011 03:08:03 PM,02/01/2011 03:08:21 PM,02/01/2011 03:08:59 PM,02/01/2011 03:09:59 PM,02/01/2011 03:12:31 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/01/2011 03:19:34 PM,4400 Block of MISSION ST,SF,94112,B09,43,6116,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7263839435754, -122.433431238863)",110320226-E43 -133230150,B04,13109614,Gas Leak (Natural and LP Gases),11/19/2013,11/19/2013,11/19/2013 09:56:13 AM,11/19/2013 09:58:24 AM,11/19/2013 09:58:49 AM,11/19/2013 10:00:25 AM,11/19/2013 10:04:38 AM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 10:18:26 AM,2000 Block of GREENWICH ST,SF,94123,B04,16,3444,3,3,3,false,Alarm,1,CHIEF,2,4,2,Marina,"(37.7993194442958, -122.433413524677)",133230150-B04 -111250165,E14,11041343,Medical Incident,05/05/2011,05/05/2011,05/05/2011 11:59:03 AM,05/05/2011 12:00:52 PM,05/05/2011 12:01:19 PM,05/05/2011 12:02:38 PM,05/05/2011 12:03:39 PM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 12:25:05 PM,300 Block of 23RD AVE,SF,94121,B07,14,7175,2,2,2,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7811523792502, -122.4827324457)",111250165-E14 -110760333,RS1,11025101,Medical Incident,03/17/2011,03/17/2011,03/17/2011 05:51:53 PM,03/17/2011 05:52:33 PM,03/17/2011 05:53:48 PM,03/17/2011 05:56:15 PM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 05:58:02 PM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,2,3,3,false,,1,RESCUE SQUAD,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",110760333-RS1 -160820894,93,16032495,Traffic Collision,03/22/2016,03/22/2016,03/22/2016 09:14:35 AM,03/22/2016 09:14:35 AM,03/22/2016 09:14:49 AM,03/22/2016 09:15:10 AM,03/22/2016 09:55:52 AM,03/22/2016 09:56:35 AM,03/22/2016 10:10:44 AM,Code 2 Transport,03/22/2016 10:40:50 AM,PINE ST/PRESIDIO AV,San Francisco,94115,B04,10,4411,2,2,2,true,Non Life-threatening,1,MEDIC,4,5,2,Presidio Heights,"(37.7863022984419, -122.446610464943)",160820894-93 -120360044,RB1,12011878,Water Rescue,02/05/2012,02/04/2012,02/05/2012 02:14:33 AM,02/05/2012 02:16:33 AM,02/05/2012 02:19:26 AM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Other,02/05/2012 02:26:55 AM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,3,3,3,false,Fire,1,SUPPORT,7,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",120360044-RB1 -110030355,82,11001118,Medical Incident,01/03/2011,01/03/2011,01/03/2011 09:27:04 PM,01/03/2011 09:27:04 PM,01/03/2011 09:30:56 PM,01/03/2011 09:31:18 PM,01/03/2011 09:39:11 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,No Merit,01/03/2011 09:41:53 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",110030355-82 -160693436,AM16,16027635,Medical Incident,03/09/2016,03/09/2016,03/09/2016 08:22:03 PM,03/09/2016 08:24:28 PM,03/09/2016 08:24:49 PM,03/09/2016 08:25:41 PM,03/09/2016 08:37:13 PM,03/09/2016 08:49:30 PM,03/09/2016 09:15:03 PM,Code 2 Transport,03/09/2016 09:35:56 PM,1900 Block of 43RD AVE,San Francisco,94116,B08,23,7646,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7503055397555, -122.50206418609)",160693436-AM16 -102310364,58,10072860,Medical Incident,08/19/2010,08/19/2010,08/19/2010 11:28:48 PM,08/19/2010 11:30:16 PM,08/19/2010 11:31:15 PM,08/19/2010 11:31:43 PM,08/19/2010 11:37:34 PM,08/19/2010 11:59:03 PM,08/20/2010 12:07:22 AM,Code 2 Transport,08/20/2010 12:33:34 AM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.780721312022, -122.415737767164)",102310364-58 -111720009,E17,11056581,Medical Incident,06/21/2011,06/20/2011,06/21/2011 01:23:16 AM,06/21/2011 01:23:51 AM,06/21/2011 01:24:24 AM,06/21/2011 01:25:47 AM,06/21/2011 01:26:56 AM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/21/2011 01:42:52 AM,1500 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7299273763086, -122.390314136294)",111720009-E17 -112590375,RC3,11085559,Medical Incident,09/16/2011,09/16/2011,09/16/2011 10:32:15 PM,09/16/2011 10:32:59 PM,09/16/2011 10:33:15 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/16/2011 11:11:24 PM,3100 Block of FILLMORE ST,SF,94123,B04,16,3553,3,2,2,true,,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.7987282178823, -122.43575101831)",112590375-RC3 -160723603,75,16028812,Medical Incident,03/12/2016,03/12/2016,03/12/2016 11:09:06 PM,03/12/2016 11:10:26 PM,03/12/2016 11:11:06 PM,03/12/2016 11:11:15 PM,03/12/2016 11:17:42 PM,03/12/2016 11:40:35 PM,03/12/2016 11:56:27 PM,Code 2 Transport,03/13/2016 12:39:35 AM,GEARY ST/LARKIN ST,San Francisco,94109,B04,3,1556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",160723603-75 -160833564,70,16033108,Medical Incident,03/23/2016,03/23/2016,03/23/2016 07:32:27 PM,03/23/2016 07:32:27 PM,03/23/2016 07:33:00 PM,03/23/2016 07:33:12 PM,03/23/2016 07:47:05 PM,03/23/2016 07:54:09 PM,03/23/2016 08:18:41 PM,Code 3 Transport,03/23/2016 08:45:19 PM,1400 Block of UNDERWOOD AVE,San Francisco,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7281527449008, -122.389085829648)",160833564-70 -121430171,85,12047523,Medical Incident,05/22/2012,05/22/2012,05/22/2012 12:17:25 PM,05/22/2012 12:18:28 PM,05/22/2012 12:19:39 PM,05/22/2012 12:20:40 PM,05/22/2012 12:28:01 PM,05/22/2012 12:41:05 PM,05/22/2012 12:55:22 PM,Code 2 Transport,05/22/2012 01:28:39 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",121430171-85 -140900155,AM06,14030273,Medical Incident,03/31/2014,03/31/2014,03/31/2014 12:15:14 PM,03/31/2014 12:15:50 PM,03/31/2014 12:17:05 PM,03/31/2014 12:17:43 PM,03/31/2014 12:20:12 PM,03/31/2014 12:25:36 PM,03/31/2014 12:49:45 PM,Code 2 Transport,03/31/2014 01:18:48 PM,1600 Block of MARKET ST,SAN FRANCISCO,94103,B02,36,5115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",140900155-AM06 -133460360,66,13117543,Medical Incident,12/12/2013,12/12/2013,12/12/2013 08:29:30 PM,12/12/2013 08:30:51 PM,12/12/2013 08:31:14 PM,12/12/2013 08:31:35 PM,12/12/2013 08:33:58 PM,12/12/2013 08:46:41 PM,12/12/2013 09:07:25 PM,Code 2 Transport,12/12/2013 09:34:22 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",133460360-66 -110820363,E36,11027090,Other,03/23/2011,03/23/2011,03/23/2011 09:01:12 PM,03/23/2011 09:01:12 PM,03/23/2011 09:01:12 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 09:05:40 PM,10TH ST/MARKET ST,SF,94103,B02,36,2338,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",110820363-E36 -110570141,79,11018720,Medical Incident,02/26/2011,02/26/2011,02/26/2011 10:27:22 AM,02/26/2011 10:30:10 AM,02/26/2011 10:30:26 AM,02/26/2011 10:30:48 AM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/26/2011 10:38:29 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7758599616408, -122.402849079555)",110570141-79 -160882931,79,16035061,Medical Incident,03/28/2016,03/28/2016,03/28/2016 05:40:39 PM,03/28/2016 05:42:37 PM,03/28/2016 05:45:42 PM,03/28/2016 05:45:54 PM,03/28/2016 05:57:24 PM,03/28/2016 06:17:25 PM,03/28/2016 06:40:09 PM,Code 3 Transport,03/28/2016 07:15:28 PM,100 Block of AMHERST ST,San Francisco,94134,B09,42,6147,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7275605128809, -122.416607387031)",160882931-79 -102650348,E01,10084031,Alarms,09/22/2010,09/22/2010,09/22/2010 11:26:58 PM,09/22/2010 11:28:16 PM,09/22/2010 11:28:36 PM,04/25/2016 02:08:28 PM,09/22/2010 11:32:13 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 11:38:12 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",102650348-E01 -140520065,82,14017523,Medical Incident,02/21/2014,02/20/2014,02/21/2014 07:30:52 AM,02/21/2014 07:32:15 AM,02/21/2014 07:32:34 AM,02/21/2014 07:32:50 AM,02/21/2014 07:42:18 AM,02/21/2014 07:56:53 AM,02/21/2014 08:10:42 AM,Code 2 Transport,02/21/2014 08:59:41 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,E,E,3,false,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",140520065-82 -132430079,RC3,13081906,Medical Incident,08/31/2013,08/30/2013,08/31/2013 05:04:59 AM,08/31/2013 05:06:30 AM,08/31/2013 05:16:01 AM,08/31/2013 05:18:25 AM,08/31/2013 05:19:40 AM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/31/2013 05:39:34 AM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,8,Mission,"(37.748178766022, -122.4214039484)",132430079-RC3 -160770500,65,16030455,Medical Incident,03/17/2016,03/16/2016,03/17/2016 06:36:04 AM,03/17/2016 06:37:06 AM,03/17/2016 06:37:31 AM,03/17/2016 06:37:38 AM,03/17/2016 06:47:33 AM,03/17/2016 06:56:25 AM,03/17/2016 07:11:13 AM,Code 2 Transport,03/17/2016 07:41:21 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160770500-65 -160580610,AM02,16023017,Medical Incident,02/27/2016,02/26/2016,02/27/2016 05:49:50 AM,02/27/2016 05:49:50 AM,02/27/2016 05:50:00 AM,02/27/2016 05:50:31 AM,02/27/2016 05:56:07 AM,02/27/2016 06:06:07 AM,02/27/2016 06:24:54 AM,Code 2 Transport,02/27/2016 07:03:44 AM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160580610-AM02 -160812179,85,16032224,Medical Incident,03/21/2016,03/21/2016,03/21/2016 02:43:47 PM,03/21/2016 02:45:28 PM,03/21/2016 02:45:52 PM,03/21/2016 02:46:04 PM,03/21/2016 02:51:02 PM,03/21/2016 03:19:53 PM,03/21/2016 04:03:36 PM,Code 2 Transport,03/21/2016 04:21:01 PM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",160812179-85 -112970325,KM11,11098623,Medical Incident,10/24/2011,10/24/2011,10/24/2011 05:28:05 PM,10/24/2011 05:28:42 PM,10/24/2011 05:29:17 PM,10/24/2011 05:29:54 PM,10/24/2011 05:39:48 PM,10/24/2011 05:54:11 PM,10/24/2011 06:16:58 PM,Code 2 Transport,10/24/2011 06:39:03 PM,200 Block of MADRID ST,SF,94112,B09,43,613,3,2,2,false,,1,PRIVATE,2,9,11,Excelsior,"(37.7255316247491, -122.429925994016)",112970325-KM11 -160624209,79,16024892,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:54:43 PM,03/02/2016 10:55:03 PM,03/02/2016 10:55:14 PM,03/02/2016 10:55:38 PM,03/02/2016 11:00:18 PM,03/02/2016 11:16:09 PM,03/02/2016 11:22:29 PM,Code 3 Transport,03/03/2016 12:16:04 AM,0 Block of MIDDLE POINT RD,San Francisco,94124,B10,25,6556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7357585640379, -122.379345378835)",160624209-79 -160291514,54,16011428,Medical Incident,01/29/2016,01/29/2016,01/29/2016 12:08:26 PM,01/29/2016 12:09:34 PM,01/29/2016 12:10:21 PM,01/29/2016 12:10:31 PM,01/29/2016 12:16:55 PM,01/29/2016 12:29:05 PM,01/29/2016 01:00:23 PM,Code 2 Transport,01/29/2016 01:26:57 PM,3400 Block of JENNINGS ST,San Francisco,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7185889862689, -122.396218710547)",160291514-54 -111100310,E44,11036413,Structure Fire,04/20/2011,04/20/2011,04/20/2011 05:36:23 PM,04/20/2011 05:36:23 PM,04/20/2011 05:36:37 PM,04/20/2011 05:37:40 PM,04/20/2011 05:41:09 PM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Fire,04/20/2011 05:41:26 PM,LELAND AV/SAWYER ST,SF,94134,B09,44,6263,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7143150560138, -122.413892696029)",111100310-E44 -160262853,66,16010395,Medical Incident,01/26/2016,01/26/2016,01/26/2016 05:22:02 PM,01/26/2016 05:22:42 PM,01/26/2016 05:23:26 PM,01/26/2016 05:23:35 PM,01/26/2016 05:38:00 PM,01/26/2016 05:58:21 PM,01/26/2016 06:04:43 PM,Code 2 Transport,01/26/2016 06:49:46 PM,0 Block of BONITA ST,San Francisco,94109,B04,41,3126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7972452861696, -122.422598432571)",160262853-66 -121170059,E17,12038674,Medical Incident,04/26/2012,04/25/2012,04/26/2012 07:40:09 AM,04/26/2012 07:41:33 AM,04/26/2012 07:41:41 AM,04/26/2012 07:47:17 AM,04/26/2012 07:49:26 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/26/2012 07:51:17 AM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",121170059-E17 -160411888,57,16016463,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:19:52 PM,02/10/2016 01:21:39 PM,02/10/2016 01:21:50 PM,02/10/2016 01:21:58 PM,02/10/2016 01:26:43 PM,02/10/2016 01:52:44 PM,02/10/2016 01:58:48 PM,Code 2 Transport,02/10/2016 02:47:30 PM,600 Block of CALIFORNIA ST,San Francisco,94108,B01,13,1314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",160411888-57 -133640164,E12,13123583,Medical Incident,12/30/2013,12/30/2013,12/30/2013 11:43:02 AM,12/30/2013 11:43:34 AM,12/30/2013 11:44:16 AM,12/30/2013 11:45:13 AM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,Other,12/30/2013 12:42:28 PM,1200 Block of STANYAN ST,SF,94117,B05,12,5261,3,2,2,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Inner Sunset,"(37.7604665979751, -122.451823739066)",133640164-E12 -123560084,E38,12119060,Medical Incident,12/21/2012,12/21/2012,12/21/2012 08:35:09 AM,12/21/2012 08:37:02 AM,12/21/2012 08:37:39 AM,12/21/2012 08:39:37 AM,12/21/2012 08:41:10 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 08:53:57 AM,1700 Block of PACIFIC AVE,SF,94109,B04,38,3231,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7947665561905, -122.424060519207)",123560084-E38 -111560362,58,11051722,Medical Incident,06/05/2011,06/05/2011,06/05/2011 08:33:43 PM,06/05/2011 08:36:03 PM,06/05/2011 08:36:13 PM,06/05/2011 08:37:01 PM,06/05/2011 08:41:51 PM,06/05/2011 08:58:48 PM,06/05/2011 09:04:15 PM,Code 2 Transport,06/05/2011 09:22:42 PM,6TH ST/JESSIE ST,SF,94103,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7813981325639, -122.409245443953)",111560362-58 -133470291,E21,13117835,Medical Incident,12/13/2013,12/13/2013,12/13/2013 05:26:16 PM,12/13/2013 05:28:08 PM,12/13/2013 05:28:27 PM,12/13/2013 05:29:36 PM,12/13/2013 05:31:34 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 05:39:54 PM,2100 Block of FULTON ST,SF,94117,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7753367356743, -122.450543942752)",133470291-E21 -111930320,93,11063832,Medical Incident,07/12/2011,07/12/2011,07/12/2011 07:58:53 PM,07/12/2011 07:59:41 PM,07/12/2011 07:59:50 PM,07/12/2011 08:00:13 PM,07/12/2011 08:04:34 PM,07/12/2011 08:19:32 PM,07/12/2011 08:38:19 PM,Code 2 Transport,07/12/2011 09:00:59 PM,CALIFORNIA ST/POLK ST,SF,94109,B04,41,1635,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7905782582579, -122.420687383115)",111930320-93 -102330140,AM04,10073304,Medical Incident,08/21/2010,08/21/2010,08/21/2010 11:03:27 AM,08/21/2010 11:05:21 AM,08/21/2010 11:05:40 AM,08/21/2010 11:06:10 AM,08/21/2010 11:07:22 AM,08/21/2010 11:17:52 AM,08/21/2010 11:46:25 AM,Code 2 Transport,08/21/2010 12:01:16 PM,MARKET ST/CYRIL MAGNIN ST,SF,94103,B03,1,1366,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",102330140-AM04 -112160345,E43,11071478,Traffic Collision,08/04/2011,08/04/2011,08/04/2011 07:51:08 PM,08/04/2011 07:52:23 PM,08/04/2011 07:53:22 PM,08/04/2011 07:54:33 PM,08/04/2011 07:56:10 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Patient Declined Transport,08/04/2011 08:04:18 PM,MISSION ST/AMAZON AV,SF,94112,B09,43,6175,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7172446200647, -122.440417736667)",112160345-E43 -160202173,KM05,16008040,Medical Incident,01/20/2016,01/20/2016,01/20/2016 02:27:30 PM,01/20/2016 02:28:53 PM,01/20/2016 02:29:06 PM,01/20/2016 02:29:46 PM,01/20/2016 02:36:32 PM,01/20/2016 02:46:21 PM,01/20/2016 03:02:26 PM,Code 2 Transport,01/20/2016 03:49:52 PM,400 Block of COLUMBUS AVE,San Francisco,94133,B01,2,1333,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7991347204832, -122.408396415403)",160202173-KM05 -160703043,KM02,16027969,Medical Incident,03/10/2016,03/10/2016,03/10/2016 07:07:03 PM,03/10/2016 07:07:46 PM,03/10/2016 07:07:54 PM,03/10/2016 07:08:22 PM,03/10/2016 07:32:42 PM,03/10/2016 07:58:48 PM,03/10/2016 08:29:31 PM,Code 2 Transport,03/10/2016 08:48:05 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160703043-KM02 -160012183,85,16000349,Medical Incident,01/01/2016,01/01/2016,01/01/2016 01:57:07 PM,01/01/2016 01:57:23 PM,01/01/2016 01:57:41 PM,01/01/2016 01:57:51 PM,01/01/2016 02:03:08 PM,01/01/2016 02:18:23 PM,01/01/2016 02:25:37 PM,Code 2 Transport,01/01/2016 03:21:00 PM,1700 Block of UNION ST,San Francisco,94123,B04,16,3335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7980842323578, -122.428102430228)",160012183-85 -122930388,77,12097313,Medical Incident,10/19/2012,10/19/2012,10/19/2012 09:25:55 PM,10/19/2012 09:27:28 PM,10/19/2012 09:28:01 PM,10/19/2012 09:28:22 PM,10/19/2012 09:33:21 PM,10/19/2012 09:52:57 PM,10/19/2012 10:00:44 PM,Code 2 Transport,10/19/2012 10:32:47 PM,25TH ST/BARTLETT ST,SF,94110,B06,11,5535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7505726090469, -122.419399682073)",122930388-77 -123520022,87,12117618,Medical Incident,12/17/2012,12/16/2012,12/17/2012 02:18:13 AM,12/17/2012 02:19:12 AM,12/17/2012 02:19:37 AM,12/17/2012 02:20:01 AM,12/17/2012 02:35:54 AM,12/17/2012 02:52:20 AM,12/17/2012 03:11:47 AM,Code 2 Transport,12/17/2012 03:38:04 AM,1400 Block of CHINOOK CT,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8240947747678, -122.373757490289)",123520022-87 -140090046,E40,14003034,Medical Incident,01/09/2014,01/08/2014,01/09/2014 03:49:20 AM,01/09/2014 03:52:34 AM,01/09/2014 03:54:13 AM,01/09/2014 03:56:29 AM,01/09/2014 04:00:11 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/09/2014 04:00:43 AM,2600 Block of 26TH AVE,SF,94116,B08,40,7462,3,3,3,false,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7384572962242, -122.482826418103)",140090046-E40 -112970321,E06,11098619,Medical Incident,10/24/2011,10/24/2011,10/24/2011 05:22:24 PM,10/24/2011 05:23:13 PM,10/24/2011 05:23:57 PM,10/24/2011 05:24:41 PM,10/24/2011 05:27:36 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 05:36:18 PM,0 Block of MAXWELL CT,SF,94103,B02,6,5214,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7669025720969, -122.423141850936)",112970321-E06 -111400268,E03,11046613,Alarms,05/20/2011,05/20/2011,05/20/2011 06:10:36 PM,05/20/2011 06:11:25 PM,05/20/2011 06:11:37 PM,05/20/2011 06:13:24 PM,05/20/2011 06:14:45 PM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,Other,05/20/2011 06:19:43 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",111400268-E03 -112330359,66,11077101,Medical Incident,08/21/2011,08/21/2011,08/21/2011 10:00:00 PM,08/21/2011 10:01:04 PM,08/21/2011 10:01:25 PM,08/21/2011 10:01:34 PM,08/21/2011 10:07:55 PM,08/21/2011 10:24:20 PM,08/21/2011 10:37:55 PM,Code 2 Transport,08/21/2011 11:08:08 PM,200 Block of MAYNARD ST,SF,94112,B09,32,5683,3,E,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7295080178827, -122.424915560486)",112330359-66 -103100166,B01,10099374,Alarms,11/06/2010,11/06/2010,11/06/2010 12:04:28 PM,11/06/2010 12:05:33 PM,11/06/2010 12:05:36 PM,11/06/2010 12:06:30 PM,11/06/2010 12:08:40 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Fire,11/06/2010 12:12:00 PM,500 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,,1,CHIEF,2,1,3,North Beach,"(37.80526026245, -122.416053831859)",103100166-B01 -103050309,E28,10097592,Medical Incident,11/01/2010,11/01/2010,11/01/2010 05:06:32 PM,11/01/2010 05:07:11 PM,11/01/2010 05:07:47 PM,11/01/2010 05:08:41 PM,11/01/2010 05:09:50 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/01/2010 05:26:02 PM,600 Block of FILBERT ST,SF,94133,B01,28,1351,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8013244963183, -122.410204322135)",103050309-E28 -121340219,E06,12044643,Medical Incident,05/13/2012,05/13/2012,05/13/2012 04:09:26 PM,05/13/2012 04:10:36 PM,05/13/2012 04:10:45 PM,05/13/2012 04:11:38 PM,05/13/2012 04:13:56 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 04:23:52 PM,600 Block of HAIGHT ST,SF,94117,B05,6,3633,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7717385379256, -122.432902586218)",121340219-E06 -121160382,77,12038621,Medical Incident,04/25/2012,04/25/2012,04/25/2012 11:14:42 PM,04/25/2012 11:16:26 PM,04/25/2012 11:16:51 PM,04/25/2012 11:16:58 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Patient Declined Transport,04/25/2012 11:47:04 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",121160382-77 -121050267,RS1,12034838,Structure Fire,04/14/2012,04/14/2012,04/14/2012 04:32:34 PM,04/14/2012 04:33:20 PM,04/14/2012 04:33:28 PM,04/14/2012 04:34:27 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Other,04/14/2012 04:38:22 PM,0 Block of PRESIDIO AVE,SF,94115,B04,10,4414,3,3,3,false,Fire,1,RESCUE SQUAD,10,4,2,Presidio Heights,"(37.7912716532952, -122.447522009721)",121050267-RS1 -111890088,T03,11062410,Medical Incident,07/08/2011,07/08/2011,07/08/2011 08:20:11 AM,07/08/2011 08:22:06 AM,07/08/2011 08:23:58 AM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,04/25/2016 02:03:46 PM,Other,04/25/2016 02:03:46 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,,1,TRUCK,4,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",111890088-T03 -112000065,96,11065864,Medical Incident,07/19/2011,07/18/2011,07/19/2011 07:49:26 AM,07/19/2011 07:50:20 AM,07/19/2011 07:51:28 AM,07/19/2011 07:51:34 AM,07/19/2011 07:56:41 AM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Patient Declined Transport,07/19/2011 08:20:31 AM,3RD ST/MARIN ST,SF,94124,B10,25,2641,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7490047598095, -122.387456311596)",112000065-96 -140910176,E11,14030599,Other,04/01/2014,04/01/2014,04/01/2014 02:09:35 PM,04/01/2014 02:12:45 PM,04/01/2014 02:13:23 PM,04/01/2014 02:14:30 PM,04/01/2014 02:16:47 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,Fire,04/01/2014 02:58:49 PM,3300 Block of 22ND ST,SAN FRANCISCO,94110,B06,11,5471,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7551642237886, -122.422303225706)",140910176-E11 -121500104,B03,12049681,Alarms,05/29/2012,05/29/2012,05/29/2012 09:32:46 AM,05/29/2012 09:34:46 AM,05/29/2012 09:34:52 AM,05/29/2012 09:35:36 AM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/29/2012 09:42:06 AM,200 Block of MAIN ST,SF,94105,B03,35,2114,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7900295956883, -122.392583899031)",121500104-B03 -130850139,E03,13028339,Medical Incident,03/26/2013,03/26/2013,03/26/2013 10:53:39 AM,03/26/2013 10:54:34 AM,03/26/2013 10:54:57 AM,03/26/2013 10:55:26 AM,03/26/2013 11:08:00 AM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 11:18:43 AM,1700 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7903193034194, -122.4231629068)",130850139-E03 -112040097,E22,11067330,Structure Fire,07/23/2011,07/23/2011,07/23/2011 08:21:55 AM,07/23/2011 08:23:13 AM,07/23/2011 08:23:55 AM,07/23/2011 08:25:24 AM,07/23/2011 08:29:16 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Other,07/23/2011 08:31:21 AM,500 Block of FREDERICK ST,SF,94122,B05,12,4551,3,3,3,false,,1,ENGINE,3,5,5,Golden Gate Park,"(37.7663240152294, -122.453780886842)",112040097-E22 -160700380,70,16027717,Medical Incident,03/10/2016,03/09/2016,03/10/2016 05:18:51 AM,03/10/2016 05:20:48 AM,03/10/2016 05:25:38 AM,03/10/2016 05:25:50 AM,03/10/2016 05:36:12 AM,03/10/2016 05:39:39 AM,03/10/2016 05:47:22 AM,Code 2 Transport,03/10/2016 06:17:26 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160700380-70 -113510077,E21,11116391,Medical Incident,12/17/2011,12/16/2011,12/17/2011 03:58:51 AM,12/17/2011 03:58:51 AM,12/17/2011 03:59:08 AM,12/17/2011 03:59:49 AM,12/17/2011 04:02:23 AM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/17/2011 04:06:23 AM,500 Block of ASHBURY ST,SF,94117,B05,21,4513,3,E,3,false,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7704798919759, -122.446959951124)",113510077-E21 -160263901,53,16010501,Medical Incident,01/26/2016,01/26/2016,01/26/2016 11:06:29 PM,01/26/2016 11:07:14 PM,01/26/2016 11:08:10 PM,01/26/2016 11:08:37 PM,01/26/2016 11:09:44 PM,01/26/2016 11:27:40 PM,01/26/2016 11:41:31 PM,Code 2 Transport,01/27/2016 12:33:29 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160263901-53 -160360824,85,16014144,Medical Incident,02/05/2016,02/04/2016,02/05/2016 07:51:48 AM,02/05/2016 07:52:34 AM,02/05/2016 07:53:16 AM,02/05/2016 07:53:23 AM,02/05/2016 08:01:48 AM,02/05/2016 08:06:32 AM,02/05/2016 08:32:00 AM,Code 2 Transport,02/05/2016 09:13:34 AM,4TH ST/FOLSOM ST,San Francisco,94107,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7820242662358, -122.401159719509)",160360824-85 -123170274,KM09,12105588,Medical Incident,11/12/2012,11/12/2012,11/12/2012 08:08:02 PM,11/12/2012 08:08:54 PM,11/12/2012 08:09:38 PM,11/12/2012 08:10:11 PM,11/12/2012 08:15:15 PM,11/12/2012 08:22:57 PM,11/12/2012 08:32:57 PM,Code 2 Transport,11/12/2012 09:02:33 PM,1300 Block of MISSION ST,SF,94103,B02,36,2336,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7757873707648, -122.41535521839)",123170274-KM09 -102390023,E17,10075256,Medical Incident,08/27/2010,08/26/2010,08/27/2010 01:49:27 AM,08/27/2010 01:50:16 AM,08/27/2010 01:50:51 AM,08/27/2010 01:52:20 AM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/27/2010 01:55:45 AM,1700 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7356170255073, -122.393678827972)",102390023-E17 -120410046,B04,12013543,Alarms,02/10/2012,02/09/2012,02/10/2012 04:04:26 AM,02/10/2012 04:05:20 AM,02/10/2012 04:05:34 AM,02/10/2012 04:07:37 AM,02/10/2012 04:11:44 AM,04/25/2016 02:00:12 PM,04/25/2016 02:00:12 PM,Other,02/10/2012 04:12:43 AM,1400 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",120410046-B04 -132600117,AM24,13087911,Medical Incident,09/17/2013,09/17/2013,09/17/2013 08:23:14 AM,09/17/2013 08:25:24 AM,09/17/2013 08:28:12 AM,09/17/2013 08:28:52 AM,09/17/2013 08:41:12 AM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 08:46:24 AM,GUTTENBERG ST/BRUNSWICK ST,SF,94112,B09,43,6218,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7105545807996, -122.443335369545)",132600117-AM24 -160793793,88,16031579,Medical Incident,03/19/2016,03/19/2016,03/19/2016 09:05:37 PM,03/19/2016 09:05:37 PM,03/19/2016 09:05:48 PM,03/19/2016 09:06:04 PM,03/19/2016 09:08:36 PM,03/19/2016 09:11:58 PM,03/19/2016 09:24:49 PM,Code 2 Transport,03/19/2016 09:52:37 PM,OFARRELL ST/JONES ST,San Francisco,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",160793793-88 -111420232,RS2,11047226,Medical Incident,05/22/2011,05/22/2011,05/22/2011 02:34:22 PM,05/22/2011 02:34:54 PM,05/22/2011 02:35:09 PM,05/22/2011 02:36:22 PM,05/22/2011 02:38:34 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,Other,05/22/2011 03:19:18 PM,3100 Block of KAMILLE CT,SF,94110,B06,7,5533,E,E,3,false,,1,RESCUE SQUAD,2,6,9,Mission,"(37.748861117995, -122.412087843139)",111420232-RS2 -112670042,75,11088102,Medical Incident,09/24/2011,09/23/2011,09/24/2011 02:03:37 AM,09/24/2011 02:06:24 AM,09/24/2011 02:07:18 AM,09/24/2011 02:07:28 AM,09/24/2011 02:12:30 AM,09/24/2011 02:25:29 AM,09/24/2011 02:27:05 AM,Code 2 Transport,09/24/2011 03:09:29 AM,400 Block of TURK ST,SF,94102,B02,3,1554,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",112670042-75 -133140299,RS2,13106860,Medical Incident,11/10/2013,11/10/2013,11/10/2013 08:53:30 PM,11/10/2013 08:55:50 PM,11/10/2013 08:56:04 PM,11/10/2013 08:56:43 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 08:57:35 PM,2300 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,6,9,Mission,"(37.7594381240168, -122.419060339091)",133140299-RS2 -160603418,76,16024082,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:00:39 PM,02/29/2016 09:00:39 PM,02/29/2016 09:01:07 PM,02/29/2016 09:01:15 PM,02/29/2016 09:08:24 PM,02/29/2016 09:30:24 PM,02/29/2016 09:41:09 PM,Code 2 Transport,02/29/2016 10:21:11 PM,EDINBURGH ST/PERSIA AV,San Francisco,94112,B09,43,6141,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7212372577883, -122.432005499322)",160603418-76 -131020068,88,13034189,Traffic Collision,04/12/2013,04/12/2013,04/12/2013 08:28:21 AM,04/12/2013 08:28:31 AM,04/12/2013 08:28:56 AM,04/12/2013 08:29:07 AM,04/12/2013 08:32:49 AM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Against Medical Advice,04/12/2013 09:34:46 AM,MASONIC AV/OAK ST,SF,94117,B05,21,4465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Golden Gate Park,"(37.7720803934485, -122.445716664284)",131020068-88 -140400069,AP,14013464,Other,02/09/2014,02/08/2014,02/09/2014 03:57:02 AM,02/09/2014 03:57:02 AM,02/09/2014 03:57:02 AM,02/09/2014 03:57:02 AM,02/09/2014 03:57:02 AM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Fire,02/09/2014 03:57:30 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",140400069-AP -122820252,E06,12093419,Alarms,10/08/2012,10/08/2012,10/08/2012 05:04:49 PM,10/08/2012 05:05:45 PM,10/08/2012 05:06:55 PM,10/08/2012 05:08:23 PM,10/08/2012 05:10:52 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/08/2012 05:14:03 PM,0 Block of ALPINE TER,SF,94117,B05,6,5134,3,3,3,true,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.7696375999837, -122.4376111774)",122820252-E06 -121500015,RC1,12049602,Medical Incident,05/29/2012,05/28/2012,05/29/2012 01:08:08 AM,05/29/2012 01:08:47 AM,05/29/2012 01:10:09 AM,05/29/2012 01:12:09 AM,05/29/2012 01:14:54 AM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/29/2012 01:49:30 AM,200 Block of BAY ST,SF,94133,B01,28,1341,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,North Beach,"(37.8058720561285, -122.411119801648)",121500015-RC1 -112640246,E33,11087225,Medical Incident,09/21/2011,09/21/2011,09/21/2011 02:50:09 PM,09/21/2011 02:51:17 PM,09/21/2011 02:52:04 PM,09/21/2011 02:52:48 PM,09/21/2011 02:55:59 PM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/21/2011 03:08:08 PM,0 Block of MINERVA ST,SF,94112,B09,33,8372,3,3,3,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7156899151892, -122.454796659779)",112640246-E33 -121390231,E01,12046203,Medical Incident,05/18/2012,05/18/2012,05/18/2012 04:03:30 PM,05/18/2012 04:03:45 PM,05/18/2012 04:04:09 PM,05/18/2012 04:05:27 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,04/25/2016 01:58:37 PM,Other,05/18/2012 04:06:40 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",121390231-E01 -140670310,T02,14022788,Structure Fire,03/08/2014,03/08/2014,03/08/2014 08:02:44 PM,03/08/2014 08:02:44 PM,03/08/2014 08:03:02 PM,03/08/2014 08:04:16 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Fire,03/08/2014 08:05:57 PM,GRANT AV/JACKSON ST,SAN FRANCISCO,94133,B01,2,1312,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",140670310-T02 -120810250,E41,12026937,Structure Fire,03/21/2012,03/21/2012,03/21/2012 02:53:43 PM,03/21/2012 02:56:00 PM,03/21/2012 02:56:15 PM,03/21/2012 02:57:38 PM,03/21/2012 03:00:39 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/21/2012 03:01:51 PM,2200 Block of STOCKTON ST,SF,94133,B01,28,1341,3,3,3,false,Fire,1,ENGINE,6,1,3,North Beach,"(37.8064867194015, -122.410472573644)",120810250-E41 -130040212,E12,13001371,Structure Fire,01/04/2013,01/04/2013,01/04/2013 12:53:26 PM,01/04/2013 12:53:26 PM,01/04/2013 12:53:31 PM,01/04/2013 12:54:12 PM,01/04/2013 12:56:46 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Fire,01/04/2013 12:57:13 PM,SHRADER ST/OAK ST,SF,94117,B05,12,4544,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7712298276373, -122.452241777167)",130040212-E12 -123150270,E26,12104908,Medical Incident,11/10/2012,11/10/2012,11/10/2012 05:27:28 PM,11/10/2012 05:28:49 PM,11/10/2012 05:31:53 PM,11/10/2012 05:33:38 PM,11/10/2012 05:36:37 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 05:44:57 PM,KERN ST/DIAMOND ST,SF,94131,B06,26,8146,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Glen Park,"(37.7338897472868, -122.434049927915)",123150270-E26 -160611331,KM12,16024279,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:42:39 AM,03/01/2016 11:42:52 AM,03/01/2016 11:43:11 AM,03/01/2016 11:43:45 AM,03/01/2016 11:47:49 AM,03/01/2016 12:32:12 PM,03/01/2016 01:01:27 PM,Code 2 Transport,03/01/2016 01:31:48 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160611331-KM12 -131550312,E01,13052636,Medical Incident,06/04/2013,06/04/2013,06/04/2013 05:03:42 PM,06/04/2013 05:04:27 PM,06/04/2013 05:07:17 PM,06/04/2013 05:07:31 PM,04/25/2016 01:52:27 PM,04/25/2016 01:52:27 PM,04/25/2016 01:52:27 PM,Other,06/04/2013 05:08:10 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",131550312-E01 -160610591,85,16024203,Medical Incident,03/01/2016,02/29/2016,03/01/2016 07:38:09 AM,03/01/2016 07:38:46 AM,03/01/2016 07:39:05 AM,03/01/2016 07:39:37 AM,03/01/2016 07:44:22 AM,03/01/2016 08:08:28 AM,03/01/2016 08:19:26 AM,Code 2 Transport,03/01/2016 08:34:12 AM,600 Block of MARKET ST,San Francisco,94105,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",160610591-85 -160382081,72,16015246,Medical Incident,02/07/2016,02/07/2016,02/07/2016 02:12:29 PM,02/07/2016 02:12:29 PM,02/07/2016 02:13:33 PM,02/07/2016 02:13:38 PM,02/07/2016 02:31:56 PM,02/07/2016 02:31:58 PM,02/07/2016 02:49:22 PM,Code 2 Transport,02/07/2016 03:12:53 PM,0 Block of BLK ELLIS ST,San Francisco,94103,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7854659679447, -122.405582629186)",160382081-72 -122650038,T03,12087431,Structure Fire,09/21/2012,09/20/2012,09/21/2012 03:50:14 AM,09/21/2012 03:54:24 AM,09/21/2012 03:54:38 AM,09/21/2012 03:54:46 AM,09/21/2012 03:55:44 AM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 04:16:00 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,false,Fire,1,TRUCK,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",122650038-T03 -160190355,64,16007471,Medical Incident,01/19/2016,01/18/2016,01/19/2016 03:59:22 AM,01/19/2016 04:03:25 AM,01/19/2016 04:05:08 AM,01/19/2016 04:05:13 AM,01/19/2016 04:16:15 AM,01/19/2016 04:45:38 AM,01/19/2016 05:03:27 AM,Code 2 Transport,01/19/2016 05:43:50 AM,HYDE ST/GROVE ST,San Francisco,94103,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160190355-64 -133190217,53,13108414,Medical Incident,11/15/2013,11/15/2013,11/15/2013 01:32:48 PM,11/15/2013 01:34:00 PM,11/15/2013 01:34:55 PM,11/15/2013 01:35:10 PM,11/15/2013 01:38:28 PM,11/15/2013 02:09:49 PM,11/15/2013 02:28:16 PM,Code 2 Transport,11/15/2013 03:00:13 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8069201392161, -122.407170160416)",133190217-53 -160131369,73,16005162,Medical Incident,01/13/2016,01/13/2016,01/13/2016 10:58:36 AM,01/13/2016 10:59:34 AM,01/13/2016 11:00:00 AM,01/13/2016 11:00:43 AM,01/13/2016 11:09:27 AM,01/13/2016 11:44:00 AM,01/13/2016 11:53:14 AM,Code 3 Transport,01/13/2016 12:57:31 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.779911669335, -122.407474439624)",160131369-73 -133030272,T07,13103001,Alarms,10/30/2013,10/30/2013,10/30/2013 04:53:24 PM,10/30/2013 04:54:27 PM,10/30/2013 04:54:52 PM,10/30/2013 04:57:03 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 05:01:14 PM,2500 Block of MARIPOSA ST,SF,94110,B02,29,5243,3,3,3,false,Alarm,1,TRUCK,3,2,10,Mission,"(37.7631695375953, -122.408796075221)",133030272-T07 -121840240,E01,12061343,Traffic Collision,07/02/2012,07/02/2012,07/02/2012 04:38:40 PM,07/02/2012 04:38:40 PM,07/02/2012 04:39:22 PM,07/02/2012 04:40:08 PM,07/02/2012 04:41:08 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 04:43:37 PM,MARKET ST/3RD ST,SF,94103,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",121840240-E01 -133620026,E01,13122862,Medical Incident,12/28/2013,12/27/2013,12/28/2013 01:50:55 AM,12/28/2013 01:51:29 AM,12/28/2013 01:51:46 AM,12/28/2013 01:53:24 AM,12/28/2013 01:57:01 AM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 02:01:45 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",133620026-E01 -140610303,78,14020752,Medical Incident,03/02/2014,03/02/2014,03/02/2014 08:26:03 PM,03/02/2014 08:26:37 PM,03/02/2014 08:27:34 PM,03/02/2014 08:27:49 PM,03/02/2014 08:39:10 PM,03/02/2014 08:51:45 PM,03/02/2014 09:29:54 PM,Code 3 Transport,03/02/2014 10:02:14 PM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",140610303-78 -160540877,71,16021501,Medical Incident,02/23/2016,02/23/2016,02/23/2016 09:05:56 AM,02/23/2016 09:07:40 AM,02/23/2016 09:08:42 AM,02/23/2016 09:08:53 AM,02/23/2016 09:24:18 AM,02/23/2016 09:33:53 AM,02/23/2016 09:33:53 AM,Code 2 Transport,02/23/2016 10:19:16 AM,0 Block of CAMERON WAY,San Francisco,94124,B10,17,6573,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7202829536688, -122.3858679491)",160540877-71 -160711614,52,16028224,Medical Incident,03/11/2016,03/11/2016,03/11/2016 12:33:50 PM,03/11/2016 12:35:12 PM,03/11/2016 12:35:39 PM,03/11/2016 12:35:49 PM,03/11/2016 12:38:39 PM,03/11/2016 12:55:29 PM,03/11/2016 01:02:57 PM,Code 2 Transport,03/11/2016 01:37:49 PM,GEARY BL/WEBSTER ST,San Francisco,94115,B04,5,3432,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7845682402461, -122.431204945516)",160711614-52 -133140053,55,13106649,Medical Incident,11/10/2013,11/09/2013,11/10/2013 03:50:17 AM,11/10/2013 03:52:48 AM,11/10/2013 03:53:06 AM,11/10/2013 03:53:16 AM,11/10/2013 03:57:02 AM,11/10/2013 04:24:23 AM,11/10/2013 04:57:04 AM,Code 2 Transport,11/10/2013 05:09:42 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",133140053-55 -120050136,E21,12001693,Elevator / Escalator Rescue,01/05/2012,01/05/2012,01/05/2012 10:26:39 AM,01/05/2012 10:27:40 AM,01/05/2012 10:28:11 AM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 10:28:58 AM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,3,3,false,Alarm,1,ENGINE,3,5,5,Western Addition,"(37.7794051372088, -122.432762898818)",120050136-E21 -113010254,91,11099888,Medical Incident,10/28/2011,10/28/2011,10/28/2011 03:09:56 PM,10/28/2011 03:10:22 PM,10/28/2011 03:10:44 PM,10/28/2011 03:10:58 PM,10/28/2011 03:17:06 PM,10/28/2011 03:43:21 PM,10/28/2011 03:58:29 PM,Code 2 Transport,10/28/2011 04:16:50 PM,400 Block of SUTTER ST,SF,94108,B01,1,1324,3,3,3,true,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",113010254-91 -113580349,T02,11119175,Alarms,12/24/2011,12/24/2011,12/24/2011 09:34:07 PM,12/24/2011 09:35:42 PM,12/24/2011 09:35:51 PM,12/24/2011 09:37:14 PM,12/24/2011 09:40:14 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,Other,12/24/2011 09:56:55 PM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,false,,1,TRUCK,2,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",113580349-T02 -111100291,86,11036396,Medical Incident,04/20/2011,04/20/2011,04/20/2011 04:40:39 PM,04/20/2011 04:42:45 PM,04/20/2011 04:43:43 PM,04/20/2011 04:44:17 PM,04/20/2011 05:00:41 PM,04/20/2011 05:29:33 PM,04/20/2011 05:45:52 PM,Code 2 Transport,04/20/2011 06:11:33 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,2,2,2,true,,1,MEDIC,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",111100291-86 -160642872,68,16025601,Medical Incident,03/04/2016,03/04/2016,03/04/2016 05:24:31 PM,03/04/2016 05:25:59 PM,03/04/2016 05:26:45 PM,03/04/2016 05:26:53 PM,03/04/2016 05:30:24 PM,03/04/2016 05:46:53 PM,03/04/2016 06:42:39 PM,Code 2 Transport,03/04/2016 06:42:40 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160642872-68 -131380291,B04,13046723,Alarms,05/18/2013,05/18/2013,05/18/2013 06:18:36 PM,05/18/2013 06:19:47 PM,05/18/2013 06:19:59 PM,05/18/2013 06:20:43 PM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,Other,05/18/2013 06:25:51 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.7869733159879, -122.425845942974)",131380291-B04 -160820642,70,16032479,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:00:07 AM,03/22/2016 08:01:12 AM,03/22/2016 08:01:51 AM,03/22/2016 08:02:19 AM,03/22/2016 08:20:23 AM,03/22/2016 08:30:47 AM,03/22/2016 08:59:53 AM,Code 2 Transport,03/22/2016 09:40:14 AM,200 Block of MARKET ST,San Francisco,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160820642-70 -131670335,85,13056834,Medical Incident,06/16/2013,06/16/2013,06/16/2013 08:36:47 PM,06/16/2013 08:38:58 PM,06/16/2013 08:39:43 PM,06/16/2013 08:39:48 PM,06/16/2013 08:43:27 PM,06/16/2013 08:53:27 PM,06/16/2013 09:07:00 PM,Code 2 Transport,06/16/2013 09:17:25 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131670335-85 -110340382,T07,11011335,Structure Fire,02/03/2011,02/03/2011,02/03/2011 11:17:26 PM,02/03/2011 11:18:45 PM,02/03/2011 11:19:51 PM,02/03/2011 11:21:35 PM,02/03/2011 11:24:31 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,02/03/2011 11:31:34 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,false,,1,TRUCK,6,2,10,Mission,"(37.7657832995202, -122.407534230594)",110340382-T07 -160480543,63,16019237,Medical Incident,02/17/2016,02/16/2016,02/17/2016 06:52:29 AM,02/17/2016 06:52:29 AM,02/17/2016 06:52:38 AM,02/17/2016 06:52:58 AM,02/17/2016 06:56:53 AM,02/17/2016 07:14:42 AM,02/17/2016 07:37:48 AM,Code 2 Transport,02/17/2016 08:17:40 AM,MARKET ST/5TH ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160480543-63 -103290057,E32,10105269,Alarms,11/25/2010,11/24/2010,11/25/2010 07:06:39 AM,11/25/2010 07:08:20 AM,11/25/2010 07:08:43 AM,11/25/2010 07:10:14 AM,11/25/2010 07:13:33 AM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/25/2010 07:17:20 AM,300 Block of EUGENIA AVE,SF,94110,B06,32,5654,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7411572625173, -122.419119707434)",103290057-E32 -140990312,E33,14033525,Electrical Hazard,04/09/2014,04/09/2014,04/09/2014 05:08:48 PM,04/09/2014 05:10:44 PM,04/09/2014 05:11:00 PM,04/09/2014 05:12:16 PM,04/09/2014 05:15:27 PM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Fire,04/09/2014 05:28:16 PM,0 Block of DEL MONTE ST,SAN FRANCISCO,94112,B09,43,6176,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.715834493274, -122.443442239902)",140990312-E33 -131820241,83,13062054,Medical Incident,07/01/2013,07/01/2013,07/01/2013 02:06:13 PM,07/01/2013 02:08:14 PM,07/01/2013 02:08:45 PM,07/01/2013 02:08:55 PM,07/01/2013 02:13:59 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Medical Examiner,07/01/2013 03:28:24 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",131820241-83 -160022046,62,16000774,Medical Incident,01/02/2016,01/02/2016,01/02/2016 03:28:27 PM,01/02/2016 03:28:27 PM,01/02/2016 03:28:48 PM,01/02/2016 03:29:03 PM,01/02/2016 03:32:27 PM,01/02/2016 03:40:27 PM,01/02/2016 03:47:57 PM,Code 2 Transport,01/02/2016 04:02:23 PM,2600 Block of MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7546409372119, -122.418601779487)",160022046-62 -160012583,58,16000394,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:58:00 PM,01/01/2016 03:58:00 PM,01/01/2016 03:58:00 PM,01/01/2016 03:58:00 PM,01/01/2016 03:58:00 PM,01/01/2016 04:12:45 PM,01/01/2016 04:21:21 PM,Code 2 Transport,01/01/2016 05:03:04 PM,MARIN ST/ILLINOIS ST,San Francisco,94124,B10,25,2641,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7490658211877, -122.3864279303)",160012583-58 -102840376,E26,10090584,Odor (Strange / Unknown),10/11/2010,10/11/2010,10/11/2010 10:56:37 PM,10/11/2010 10:59:20 PM,10/11/2010 10:59:28 PM,10/11/2010 11:00:31 PM,10/11/2010 11:03:12 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Other,10/11/2010 11:05:10 PM,1600 Block of NOE ST,SF,94131,B06,26,5573,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7430265668943, -122.431130295533)",102840376-E26 -111560086,60,11051502,Medical Incident,06/05/2011,06/04/2011,06/05/2011 05:02:25 AM,06/05/2011 05:04:34 AM,06/05/2011 05:04:54 AM,06/05/2011 05:05:01 AM,06/05/2011 05:06:09 AM,06/05/2011 05:19:16 AM,06/05/2011 05:28:20 AM,Code 2 Transport,06/05/2011 05:58:09 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,,1,MEDIC,1,2,5,Western Addition,"(37.7818979587644, -122.428207532186)",111560086-60 -110580246,B02,11019134,Alarms,02/27/2011,02/27/2011,02/27/2011 04:08:10 PM,02/27/2011 04:09:31 PM,02/27/2011 04:09:57 PM,02/27/2011 04:10:59 PM,02/27/2011 04:13:41 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Other,02/27/2011 04:16:06 PM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,,1,CHIEF,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",110580246-B02 -103110146,E44,10099704,Other,11/07/2010,11/07/2010,11/07/2010 10:07:57 AM,11/07/2010 10:07:58 AM,11/07/2010 10:07:58 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Fire,11/07/2010 10:23:22 AM,SAN BRUNO AV/WILDE AV,SF,94134,B10,44,6317,3,3,3,true,,1,ENGINE,1,10,10,Visitacion Valley,"(37.7166501503264, -122.399828144562)",103110146-E44 -160304094,KM07,16011995,Medical Incident,01/30/2016,01/30/2016,01/30/2016 11:25:22 PM,01/30/2016 11:25:39 PM,01/30/2016 11:26:44 PM,01/30/2016 11:31:11 PM,01/30/2016 11:32:37 PM,01/30/2016 11:43:42 PM,01/30/2016 11:52:11 PM,Code 2 Transport,01/31/2016 12:32:08 AM,MARKET ST/HYDE ST,San Francisco,94103,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160304094-KM07 -140740042,E02,14024902,Structure Fire,03/15/2014,03/14/2014,03/15/2014 03:26:49 AM,03/15/2014 03:26:50 AM,03/15/2014 03:26:58 AM,03/15/2014 03:28:27 AM,03/15/2014 03:30:01 AM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Fire,03/15/2014 03:30:19 AM,GRANT AV/BROADWAY,SAN FRANCISCO,94133,B01,2,1311,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7978223016111, -122.407016164512)",140740042-E02 -160573324,70,16022896,Medical Incident,02/26/2016,02/26/2016,02/26/2016 08:15:46 PM,02/26/2016 08:19:28 PM,02/26/2016 08:20:23 PM,02/26/2016 08:20:32 PM,02/26/2016 08:25:55 PM,02/26/2016 08:39:39 PM,02/26/2016 08:46:52 PM,Code 2 Transport,02/26/2016 09:14:43 PM,5TH ST/KING ST,San Francisco,94107,B03,8,2235,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7745780664091, -122.396261347887)",160573324-70 -133480127,E16,13118063,Traffic Collision,12/14/2013,12/14/2013,12/14/2013 10:19:01 AM,12/14/2013 10:19:05 AM,12/14/2013 10:19:46 AM,12/14/2013 10:21:27 AM,12/14/2013 10:23:00 AM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 10:45:18 AM,DIVISADERO ST/GREENWICH ST,SF,94123,B04,16,4166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7981119509009, -122.442467912575)",133480127-E16 -160564169,71,16022571,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:32:03 PM,02/25/2016 11:33:46 PM,02/25/2016 11:33:52 PM,02/25/2016 11:34:20 PM,02/25/2016 11:45:00 PM,02/25/2016 11:52:26 PM,02/26/2016 12:10:01 AM,Code 3 Transport,02/26/2016 12:53:46 AM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160564169-71 -130660233,81,13022082,Medical Incident,03/07/2013,03/07/2013,03/07/2013 03:35:54 PM,03/07/2013 03:37:01 PM,03/07/2013 03:40:56 PM,03/07/2013 03:41:02 PM,03/07/2013 03:42:43 PM,04/25/2016 01:53:57 PM,04/25/2016 01:53:57 PM,Other,03/07/2013 03:41:09 PM,EDDY ST/TAYLOR ST,SF,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841410121878, -122.410951620282)",130660233-81 -133640073,AM02,13123509,Medical Incident,12/30/2013,12/29/2013,12/30/2013 06:45:28 AM,12/30/2013 06:47:34 AM,12/30/2013 06:47:45 AM,12/30/2013 06:48:36 AM,12/30/2013 06:50:48 AM,12/30/2013 07:14:36 AM,12/30/2013 07:26:29 AM,Code 2 Transport,12/30/2013 08:06:28 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",133640073-AM02 -122780121,KM05,12091860,Medical Incident,10/04/2012,10/04/2012,10/04/2012 10:33:19 AM,10/04/2012 10:34:10 AM,10/04/2012 10:36:02 AM,10/04/2012 10:36:44 AM,10/04/2012 10:47:02 AM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,Patient Declined Transport,10/04/2012 11:21:34 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",122780121-KM05 -112710026,92,11089414,Medical Incident,09/28/2011,09/27/2011,09/28/2011 02:21:28 AM,09/28/2011 02:22:25 AM,09/28/2011 02:22:49 AM,09/28/2011 02:23:07 AM,09/28/2011 02:25:58 AM,09/28/2011 02:41:38 AM,09/28/2011 02:48:37 AM,Code 3 Transport,09/28/2011 03:31:25 AM,700 Block of DIAMOND ST,SF,94114,B06,24,5521,3,3,3,true,,1,MEDIC,1,6,8,Noe Valley,"(37.7515609916355, -122.436268817742)",112710026-92 -132900241,E03,13098684,Medical Incident,10/17/2013,10/17/2013,10/17/2013 02:06:20 PM,10/17/2013 02:08:51 PM,10/17/2013 02:09:06 PM,10/17/2013 02:09:20 PM,10/17/2013 02:13:14 PM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 02:41:57 PM,500 Block of GEARY ST,SF,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7869413406164, -122.411939021128)",132900241-E03 -160633831,60,16025291,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:33:45 PM,03/03/2016 10:36:37 PM,03/03/2016 10:41:24 PM,03/03/2016 10:41:58 PM,03/03/2016 10:43:59 PM,03/03/2016 11:00:11 PM,03/03/2016 11:15:00 PM,Code 2 Transport,03/03/2016 11:59:08 PM,24TH ST/YORK ST,San Francisco,94110,B06,9,5531,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7528524062967, -122.408188967839)",160633831-60 -140720255,E01,14024373,Medical Incident,03/13/2014,03/13/2014,03/13/2014 03:20:50 PM,03/13/2014 03:23:00 PM,03/13/2014 03:23:32 PM,03/13/2014 03:24:43 PM,03/13/2014 03:27:26 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Code 2 Transport,03/13/2014 03:35:51 PM,100 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",140720255-E01 -140020135,T10,14000629,Medical Incident,01/02/2014,01/02/2014,01/02/2014 09:19:25 AM,01/02/2014 09:20:23 AM,01/02/2014 09:20:36 AM,01/02/2014 09:21:51 AM,01/02/2014 09:25:08 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/02/2014 09:36:41 AM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,,3,3,false,Potentially Life-Threatening,1,TRUCK,1,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",140020135-T10 -112820048,B07,11093243,Alarms,10/09/2011,10/08/2011,10/09/2011 03:22:19 AM,10/09/2011 03:23:44 AM,10/09/2011 03:24:04 AM,10/09/2011 03:25:58 AM,10/09/2011 03:30:40 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 03:38:32 AM,1200 Block of WILLARD ST,SF,94117,B05,12,5145,3,3,3,false,,1,CHIEF,3,5,5,Inner Sunset,"(37.7656904785056, -122.454566783502)",112820048-B07 -130730381,E10,13024514,Medical Incident,03/14/2013,03/14/2013,03/14/2013 11:33:06 PM,03/14/2013 11:33:56 PM,03/14/2013 11:34:39 PM,03/14/2013 11:36:17 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 11:37:41 PM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",130730381-E10 -111870400,E31,11062007,Citizen Assist / Service Call,07/06/2011,07/06/2011,07/06/2011 11:58:40 PM,07/06/2011 11:58:52 PM,07/06/2011 11:59:05 PM,07/07/2011 12:00:19 AM,07/07/2011 12:08:35 AM,04/25/2016 02:03:47 PM,04/25/2016 02:03:47 PM,Other,07/07/2011 12:10:13 AM,PARK PRESIDIO BL/BALBOA ST,SF,94118,B07,31,7145,3,3,3,false,,1,ENGINE,1,7,1,Inner Richmond,"(37.7768682293368, -122.472039541478)",111870400-E31 -102800174,KM02,10088996,Medical Incident,10/07/2010,10/07/2010,10/07/2010 01:31:37 PM,10/07/2010 01:32:31 PM,10/07/2010 01:32:42 PM,10/07/2010 01:33:33 PM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,Other,10/07/2010 01:38:22 PM,1100 Block of COLUMBUS AVE,SF,94133,B01,28,1434,3,3,3,false,,1,PRIVATE,2,1,3,Russian Hill,"(37.8050697823361, -122.416976744235)",102800174-KM02 -112300250,T07,11076002,Alarms,08/18/2011,08/18/2011,08/18/2011 03:43:07 PM,08/18/2011 03:43:07 PM,08/18/2011 03:43:37 PM,08/18/2011 03:44:56 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,Other,08/18/2011 03:46:04 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",112300250-T07 -131460290,55,13049605,Medical Incident,05/26/2013,05/26/2013,05/26/2013 04:34:36 PM,05/26/2013 04:35:16 PM,05/26/2013 04:35:40 PM,05/26/2013 04:37:24 PM,05/26/2013 05:13:43 PM,05/26/2013 05:33:40 PM,05/26/2013 06:04:46 PM,Code 2 Transport,05/26/2013 06:16:45 PM,100 Block of FRANCISCO ST,SF,94133,B01,28,1225,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8054738067872, -122.407570127181)",131460290-55 -160163805,91,16006625,Medical Incident,01/16/2016,01/16/2016,01/16/2016 11:09:38 PM,01/16/2016 11:11:32 PM,01/16/2016 11:11:47 PM,01/16/2016 11:11:56 PM,01/16/2016 11:14:47 PM,01/16/2016 11:25:29 PM,01/16/2016 11:42:13 PM,Code 2 Transport,01/17/2016 12:05:26 AM,700 Block of 7TH AVE,San Francisco,94118,B07,31,7132,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",160163805-91 -160392360,85,16015691,Medical Incident,02/08/2016,02/08/2016,02/08/2016 03:42:04 PM,02/08/2016 03:43:56 PM,02/08/2016 03:44:01 PM,02/08/2016 03:45:00 PM,02/08/2016 03:56:02 PM,02/08/2016 04:12:32 PM,02/08/2016 04:42:13 PM,Code 2 Transport,02/08/2016 05:27:45 PM,26TH AV/IRVING ST,San Francisco,94122,B08,22,7452,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7632313510262, -122.484626651835)",160392360-85 -111370263,KM12,11045639,Medical Incident,05/17/2011,05/17/2011,05/17/2011 05:21:38 PM,05/17/2011 05:24:30 PM,05/17/2011 05:25:19 PM,05/17/2011 05:25:56 PM,05/17/2011 05:37:47 PM,05/17/2011 05:53:31 PM,05/17/2011 06:12:52 PM,Code 2 Transport,05/17/2011 06:38:46 PM,0 Block of BARTLETT ST,SF,94110,B06,7,5456,2,2,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7561630112752, -122.420003504083)",111370263-KM12 -120170191,T06,12005710,Medical Incident,01/17/2012,01/17/2012,01/17/2012 02:06:54 PM,01/17/2012 02:08:02 PM,01/17/2012 02:08:31 PM,01/17/2012 02:09:48 PM,01/17/2012 02:11:51 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Other,01/17/2012 02:14:42 PM,400 Block of HAIGHT ST,SF,94117,B02,6,3524,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",120170191-T06 -112470343,T06,11081585,Alarms,09/04/2011,09/04/2011,09/04/2011 08:01:53 PM,09/04/2011 08:02:49 PM,09/04/2011 08:02:58 PM,09/04/2011 08:04:13 PM,09/04/2011 08:05:56 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 08:21:27 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,false,,1,TRUCK,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",112470343-T06 -160501810,KM11,16020100,Medical Incident,02/19/2016,02/19/2016,02/19/2016 01:26:56 PM,02/19/2016 01:27:09 PM,02/19/2016 01:29:08 PM,02/19/2016 01:29:40 PM,02/19/2016 01:40:28 PM,02/19/2016 01:59:00 PM,02/19/2016 03:01:09 PM,Code 2 Transport,02/19/2016 03:08:42 PM,0 Block of SAN JACINTO WAY,San Francisco,94127,B09,39,8551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7351849311429, -122.463509193108)",160501810-KM11 -132310368,E17,13078157,Medical Incident,08/19/2013,08/19/2013,08/19/2013 08:04:28 PM,08/19/2013 08:04:56 PM,08/19/2013 08:05:36 PM,08/19/2013 08:07:27 PM,08/19/2013 08:10:03 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 08:19:22 PM,OAKDALE AV/MENDELL ST,SF,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7345987087422, -122.390344550544)",132310368-E17 -140070270,77,14002560,Medical Incident,01/07/2014,01/07/2014,01/07/2014 05:34:39 PM,01/07/2014 05:35:52 PM,01/07/2014 05:36:11 PM,01/07/2014 05:36:31 PM,01/07/2014 05:40:57 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 05:44:30 PM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,E,E,3,false,Potentially Life-Threatening,1,MEDIC,3,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",140070270-77 -160300732,55,16011695,Medical Incident,01/30/2016,01/29/2016,01/30/2016 07:04:03 AM,01/30/2016 07:08:51 AM,01/30/2016 07:09:14 AM,01/30/2016 07:09:34 AM,01/30/2016 07:16:55 AM,01/30/2016 07:27:45 AM,01/30/2016 07:48:12 AM,Code 2 Transport,01/30/2016 08:22:57 AM,400 Block of HOWARD ST,San Francisco,94105,B03,35,2141,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7889242269803, -122.395641699334)",160300732-55 -160322426,KM05,16012649,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:10:45 PM,02/01/2016 04:12:19 PM,02/01/2016 04:13:04 PM,02/01/2016 04:15:01 PM,02/01/2016 04:18:51 PM,02/01/2016 04:36:38 PM,02/01/2016 04:57:28 PM,Code 2 Transport,02/01/2016 05:24:50 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160322426-KM05 -132610163,77,13088349,Medical Incident,09/18/2013,09/18/2013,09/18/2013 11:04:42 AM,09/18/2013 11:07:34 AM,09/18/2013 11:09:32 AM,09/18/2013 11:09:45 AM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 11:19:16 AM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7927299343809, -122.40328650281)",132610163-77 -120080029,E06,12002636,Outside Fire,01/08/2012,01/07/2012,01/08/2012 01:45:21 AM,01/08/2012 01:45:46 AM,01/08/2012 01:46:21 AM,01/08/2012 01:46:31 AM,01/08/2012 01:47:38 AM,04/25/2016 02:00:44 PM,04/25/2016 02:00:44 PM,Other,01/08/2012 01:50:25 AM,HAIGHT ST/STEINER ST,SF,94117,B05,6,3633,3,3,3,true,Fire,1,ENGINE,1,5,5,Haight Ashbury,"(37.7718972649576, -122.432092300663)",120080029-E06 -140750096,E41,14025320,Structure Fire,03/16/2014,03/15/2014,03/16/2014 06:39:16 AM,03/16/2014 06:40:02 AM,03/16/2014 06:40:30 AM,03/16/2014 06:41:20 AM,03/16/2014 06:43:43 AM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Fire,03/16/2014 06:48:40 AM,800 Block of LOMBARD ST,SAN FRANCISCO,94133,B01,28,1435,3,3,3,false,Alarm,1,ENGINE,3,1,3,Russian Hill,"(37.8025702182431, -122.415513808402)",140750096-E41 -131230191,E28,13041442,Traffic Collision,05/03/2013,05/03/2013,05/03/2013 11:51:58 AM,05/03/2013 11:52:53 AM,05/03/2013 11:53:29 AM,05/03/2013 11:54:59 AM,05/03/2013 11:57:13 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 11:58:14 AM,COLUMBUS AV/LOMBARD ST,SF,94133,B01,28,1435,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8027432009748, -122.413718749936)",131230191-E28 -122040115,E33,12067759,Alarms,07/22/2012,07/22/2012,07/22/2012 09:07:46 AM,07/22/2012 09:09:40 AM,07/22/2012 09:09:50 AM,07/22/2012 09:11:22 AM,07/22/2012 09:13:35 AM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 09:24:40 AM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",122040115-E33 -160460686,89,16018418,Medical Incident,02/15/2016,02/14/2016,02/15/2016 07:40:11 AM,02/15/2016 07:41:24 AM,02/15/2016 07:41:36 AM,02/15/2016 07:41:45 AM,02/15/2016 07:46:06 AM,02/15/2016 08:00:16 AM,02/15/2016 08:20:07 AM,Code 2 Transport,02/15/2016 09:03:54 AM,0 Block of 3RD ST,San Francisco,94105,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7872949465693, -122.403277065706)",160460686-89 -122840160,E03,12093934,Medical Incident,10/10/2012,10/10/2012,10/10/2012 12:51:43 PM,10/10/2012 12:53:52 PM,10/10/2012 12:54:13 PM,10/10/2012 12:55:18 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Other,04/25/2016 01:56:22 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,E,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",122840160-E03 -132780372,66,13094667,Medical Incident,10/05/2013,10/05/2013,10/05/2013 08:50:07 PM,10/05/2013 08:51:44 PM,10/05/2013 08:52:46 PM,10/05/2013 08:52:56 PM,10/05/2013 09:01:39 PM,10/05/2013 09:22:10 PM,10/05/2013 09:43:03 PM,Code 2 Transport,10/05/2013 10:15:05 PM,100 Block of KINGSTON ST,SF,94110,B06,32,5626,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7414881841782, -122.421846740838)",132780372-66 -160041249,AM12,16001548,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:42:53 AM,01/04/2016 10:43:53 AM,01/04/2016 10:44:08 AM,01/04/2016 10:45:19 AM,01/04/2016 10:50:23 AM,01/04/2016 11:10:22 AM,01/04/2016 11:24:52 AM,Code 2 Transport,01/04/2016 12:07:23 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160041249-AM12 -160861773,52,16034175,Medical Incident,03/26/2016,03/26/2016,03/26/2016 01:15:08 PM,03/26/2016 01:17:00 PM,03/26/2016 01:18:08 PM,03/26/2016 01:18:22 PM,03/26/2016 01:37:39 PM,03/26/2016 02:01:16 PM,03/26/2016 02:14:13 PM,Code 2 Transport,03/26/2016 02:39:02 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160861773-52 -140090159,E40,14003109,Other,01/09/2014,01/09/2014,01/09/2014 10:59:12 AM,01/09/2014 11:00:47 AM,01/09/2014 11:01:25 AM,01/09/2014 11:02:40 AM,01/09/2014 11:04:50 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 11:09:22 AM,1400 Block of NORIEGA ST,SF,94122,B08,40,7431,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7541770390488, -122.479155289903)",140090159-E40 -113590092,KM14,11119291,Medical Incident,12/25/2011,12/25/2011,12/25/2011 10:30:09 AM,12/25/2011 10:31:39 AM,12/25/2011 10:32:10 AM,12/25/2011 10:32:31 AM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,No Merit,12/25/2011 10:38:57 AM,5TH ST/MARKET ST,SF,94103,B03,1,1364,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",113590092-KM14 -160651585,53,16025922,Medical Incident,03/05/2016,03/05/2016,03/05/2016 12:47:31 PM,03/05/2016 12:47:31 PM,03/05/2016 12:48:06 PM,03/05/2016 12:48:11 PM,03/05/2016 12:54:34 PM,03/05/2016 01:14:46 PM,03/05/2016 01:26:05 PM,Code 2 Transport,03/05/2016 02:20:12 PM,1000 Block of MARKET ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",160651585-53 -131460116,E25,13049454,Electrical Hazard,05/26/2013,05/25/2013,05/26/2013 07:55:43 AM,05/26/2013 07:57:41 AM,05/26/2013 07:58:03 AM,05/26/2013 07:59:45 AM,05/26/2013 08:06:44 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 08:34:38 AM,DELTA ST/LELAND AV,SF,94134,B09,44,6257,3,3,3,true,Alarm,1,ENGINE,1,9,10,Visitacion Valley,"(37.7131255723585, -122.409488902744)",131460116-E25 -102960053,B04,10094323,Alarms,10/23/2010,10/22/2010,10/23/2010 03:13:24 AM,10/23/2010 03:15:07 AM,10/23/2010 03:15:14 AM,10/23/2010 03:16:55 AM,10/23/2010 03:19:11 AM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 03:32:57 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",102960053-B04 -122100226,KM09,12069803,Traffic Collision,07/28/2012,07/28/2012,07/28/2012 03:57:42 PM,07/28/2012 03:59:26 PM,07/28/2012 04:01:24 PM,07/28/2012 04:01:28 PM,07/28/2012 04:13:44 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Patient Declined Transport,07/28/2012 05:04:30 PM,MASON ST/BAY ST,SF,94133,B01,28,1425,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8056184799358, -122.413604167697)",122100226-KM09 -110420348,T14,11014043,Alarms,02/11/2011,02/11/2011,02/11/2011 07:28:13 PM,02/11/2011 07:30:02 PM,02/11/2011 07:30:07 PM,02/11/2011 07:31:24 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 07:38:45 PM,800 Block of 34TH AVE,SF,94121,B07,34,7252,3,3,3,false,,1,TRUCK,3,7,1,Outer Richmond,"(37.7730595887208, -122.493969430949)",110420348-T14 -160481212,56,16019287,Medical Incident,02/17/2016,02/17/2016,02/17/2016 10:23:00 AM,02/17/2016 10:23:41 AM,02/17/2016 10:24:27 AM,02/17/2016 10:25:13 AM,02/17/2016 10:38:27 AM,02/17/2016 11:05:19 AM,02/17/2016 11:19:18 AM,Code 2 Transport,02/17/2016 11:53:44 AM,2800 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Portola,"(37.7258169452923, -122.402916975907)",160481212-56 -120200395,66,12006866,Medical Incident,01/20/2012,01/20/2012,01/20/2012 09:24:17 PM,01/20/2012 09:24:57 PM,01/20/2012 09:26:08 PM,01/20/2012 09:26:15 PM,01/20/2012 09:45:37 PM,01/20/2012 10:03:37 PM,01/20/2012 10:12:07 PM,Code 2 Transport,01/20/2012 10:31:41 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",120200395-66 -140170088,E24,14005751,Medical Incident,01/17/2014,01/17/2014,01/17/2014 08:33:35 AM,01/17/2014 08:35:47 AM,01/17/2014 08:36:09 AM,01/17/2014 08:36:40 AM,01/17/2014 08:43:05 AM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,No Merit,01/17/2014 09:05:02 AM,0 Block of CRESTLINE DR,SF,94131,B06,24,5284,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Twin Peaks,"(37.7501301863303, -122.446483988175)",140170088-E24 -160052777,71,16002103,Medical Incident,01/05/2016,01/05/2016,01/05/2016 05:35:10 PM,01/05/2016 05:38:14 PM,01/05/2016 05:38:24 PM,01/05/2016 05:38:33 PM,01/05/2016 05:46:18 PM,01/05/2016 06:02:22 PM,01/05/2016 06:15:29 PM,Code 2 Transport,01/05/2016 06:52:37 PM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160052777-71 -160490170,64,16019577,Medical Incident,02/18/2016,02/17/2016,02/18/2016 01:56:45 AM,02/18/2016 01:58:49 AM,02/18/2016 01:59:04 AM,02/18/2016 01:59:11 AM,02/18/2016 02:01:34 AM,02/18/2016 02:15:58 AM,02/18/2016 02:29:03 AM,Code 2 Transport,02/18/2016 03:08:43 AM,KEARNY ST/COLUMBUS AV,San Francisco,94133,B01,13,1246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7969090575454, -122.405288399326)",160490170-64 -131020329,E13,13034405,Medical Incident,04/12/2013,04/12/2013,04/12/2013 09:31:56 PM,04/12/2013 09:34:44 PM,04/12/2013 09:35:04 PM,04/25/2016 01:53:20 PM,04/12/2013 09:38:33 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/12/2013 09:50:31 PM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",131020329-E13 -160473487,58,16019113,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:24:13 PM,02/16/2016 08:25:13 PM,02/16/2016 08:29:13 PM,02/16/2016 08:29:45 PM,02/16/2016 08:36:47 PM,02/16/2016 08:51:04 PM,02/16/2016 09:16:46 PM,Code 2 Transport,02/16/2016 09:38:46 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160473487-58 -113050399,T12,11101450,Alarms,11/01/2011,11/01/2011,11/01/2011 07:42:57 PM,11/01/2011 07:43:19 PM,11/01/2011 07:43:25 PM,11/01/2011 07:44:56 PM,11/01/2011 07:47:04 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 07:49:29 PM,1400 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,false,,1,TRUCK,2,5,5,Inner Sunset,"(37.7614340333644, -122.46176630545)",113050399-T12 -122180273,E41,12072394,Medical Incident,08/05/2012,08/05/2012,08/05/2012 05:05:08 PM,08/05/2012 05:06:14 PM,08/05/2012 05:08:42 PM,08/05/2012 05:09:33 PM,08/05/2012 05:12:38 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 05:14:45 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",122180273-E41 -113650368,KM07,11121419,Medical Incident,12/31/2011,12/31/2011,12/31/2011 10:23:31 PM,12/31/2011 10:25:17 PM,12/31/2011 10:26:50 PM,12/31/2011 10:27:06 PM,12/31/2011 10:43:18 PM,12/31/2011 10:50:57 PM,12/31/2011 11:13:04 PM,Code 2 Transport,12/31/2011 11:28:58 PM,2800 Block of FOLSOM ST,SF,94110,B06,7,5526,1,1,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7516999794245, -122.414074863195)",113650368-KM07 -133500366,T03,13118968,Structure Fire,12/16/2013,12/16/2013,12/16/2013 07:36:41 PM,12/16/2013 07:37:02 PM,12/16/2013 07:37:16 PM,12/16/2013 07:38:51 PM,12/16/2013 07:45:01 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,12/16/2013 07:45:05 PM,400 Block of VAN NESS AVE,SF,94102,B02,36,3237,3,3,3,false,Alarm,1,TRUCK,2,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",133500366-T03 -140940147,E48,14031564,Medical Incident,04/04/2014,04/04/2014,04/04/2014 11:23:46 AM,04/04/2014 11:25:49 AM,04/04/2014 11:28:03 AM,04/04/2014 11:29:01 AM,04/04/2014 11:31:28 AM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Code 2 Transport,04/04/2014 11:48:39 AM,1400 Block of HALIBUT CT,TREASURE ISLAN,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",140940147-E48 -130840323,E13,13028163,Medical Incident,03/25/2013,03/25/2013,03/25/2013 07:17:31 PM,03/25/2013 07:18:01 PM,03/25/2013 07:19:20 PM,03/25/2013 07:20:07 PM,03/25/2013 07:22:50 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,Other,03/25/2013 07:41:31 PM,300 Block of GRANT AVE,SF,94108,B01,13,1315,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7903132062356, -122.405617299563)",130840323-E13 -160920563,55,16036340,Medical Incident,04/01/2016,03/31/2016,04/01/2016 07:11:05 AM,04/01/2016 07:11:53 AM,04/01/2016 07:12:24 AM,04/01/2016 07:12:33 AM,04/01/2016 07:22:20 AM,04/01/2016 07:53:53 AM,04/01/2016 08:23:45 AM,Code 2 Transport,04/01/2016 08:53:35 AM,1400 Block of STURGEON ST,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8265334272456, -122.376529052523)",160920563-55 -103430308,KM11,10109952,Medical Incident,12/09/2010,12/09/2010,12/09/2010 04:51:03 PM,12/09/2010 04:54:55 PM,12/09/2010 04:57:28 PM,04/25/2016 02:07:12 PM,12/09/2010 05:05:50 PM,12/09/2010 05:14:09 PM,04/25/2016 02:07:12 PM,Code 2 Transport,12/09/2010 05:55:20 PM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,2,2,2,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",103430308-KM11 -160140477,55,16005454,Medical Incident,01/14/2016,01/13/2016,01/14/2016 06:22:02 AM,01/14/2016 06:24:27 AM,01/14/2016 06:25:55 AM,01/14/2016 06:26:07 AM,01/14/2016 06:38:50 AM,01/14/2016 07:11:15 AM,01/14/2016 07:47:59 AM,Code 2 Transport,01/14/2016 08:17:31 AM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160140477-55 -131000023,KM07,13033470,Medical Incident,04/10/2013,04/09/2013,04/10/2013 01:19:02 AM,04/10/2013 01:20:23 AM,04/10/2013 01:21:08 AM,04/10/2013 01:22:12 AM,04/10/2013 01:25:42 AM,04/10/2013 01:37:54 AM,04/10/2013 01:59:34 AM,Code 2 Transport,04/10/2013 02:05:28 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",131000023-KM07 -140210208,E02,14007208,Medical Incident,01/21/2014,01/21/2014,01/21/2014 02:22:20 PM,01/21/2014 02:24:01 PM,01/21/2014 02:24:36 PM,01/21/2014 02:26:02 PM,01/21/2014 02:27:14 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/21/2014 02:35:04 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",140210208-E02 -132840173,AM20,13096607,Medical Incident,10/11/2013,10/11/2013,10/11/2013 01:15:45 PM,10/11/2013 01:16:07 PM,10/11/2013 01:17:09 PM,04/25/2016 01:50:19 PM,10/11/2013 01:28:20 PM,10/11/2013 01:42:19 PM,10/11/2013 01:58:56 PM,Code 2 Transport,10/11/2013 02:29:19 PM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",132840173-AM20 -160023269,58,16000930,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:20:13 PM,01/02/2016 09:20:13 PM,01/02/2016 09:27:58 PM,01/02/2016 09:28:09 PM,01/02/2016 09:32:51 PM,01/02/2016 09:48:32 PM,01/02/2016 09:53:38 PM,Code 2 Transport,01/02/2016 10:36:30 PM,OCTAVIA ST/MARKET ST,San Francisco,94102,B02,36,3311,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",160023269-58 -110320118,82,11010434,Medical Incident,02/01/2011,02/01/2011,02/01/2011 10:45:07 AM,02/01/2011 10:46:30 AM,02/01/2011 10:46:43 AM,02/01/2011 10:47:32 AM,04/25/2016 02:06:19 PM,02/01/2011 11:22:12 AM,02/01/2011 11:26:36 AM,Code 2 Transport,02/01/2011 12:01:24 PM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,true,,1,MEDIC,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",110320118-82 -160130801,82,16005096,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:30:45 AM,01/13/2016 08:32:54 AM,01/13/2016 08:33:06 AM,01/13/2016 08:33:20 AM,01/13/2016 08:39:28 AM,01/13/2016 08:58:00 AM,01/13/2016 09:18:28 AM,Code 3 Transport,01/13/2016 11:04:29 AM,700 Block of EDINBURGH ST,San Francisco,94112,B09,43,6135,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7173197736494, -122.434883626306)",160130801-82 -110760074,E43,11024907,Alarms,03/17/2011,03/16/2011,03/17/2011 07:42:39 AM,03/17/2011 07:43:23 AM,03/17/2011 07:43:53 AM,03/17/2011 07:45:46 AM,03/17/2011 07:48:15 AM,04/25/2016 02:05:35 PM,04/25/2016 02:05:35 PM,Other,03/17/2011 08:42:19 AM,700 Block of VELASCO AVE,SF,94134,B09,43,6246,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7098796520514, -122.418901425651)",110760074-E43 -110230284,T02,11007674,Structure Fire,01/23/2011,01/23/2011,01/23/2011 07:40:22 PM,01/23/2011 07:40:22 PM,01/23/2011 07:40:29 PM,01/23/2011 07:41:54 PM,01/23/2011 07:44:20 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/23/2011 07:44:34 PM,2100 Block of POWELL ST,SF,94133,B01,28,131,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.8044382972452, -122.411605476142)",110230284-T02 -131230142,RS2,13041401,Medical Incident,05/03/2013,05/03/2013,05/03/2013 10:11:33 AM,05/03/2013 10:11:55 AM,05/03/2013 10:12:11 AM,05/03/2013 10:14:15 AM,05/03/2013 10:15:20 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,No Merit,05/03/2013 10:17:30 AM,2800 Block of 22ND ST,SF,94110,B06,7,5474,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,6,9,Mission,"(37.7558599031957, -122.410817751206)",131230142-RS2 -140890368,E05,14030140,Medical Incident,03/30/2014,03/30/2014,03/30/2014 11:36:20 PM,03/30/2014 11:37:08 PM,03/30/2014 11:37:24 PM,03/30/2014 11:39:09 PM,03/30/2014 11:41:34 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Code 2 Transport,03/30/2014 11:48:01 PM,500 Block of FILLMORE ST,SAN FRANCISCO,94117,B05,5,3532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7744290293867, -122.430986461769)",140890368-E05 -160701279,88,16027810,Medical Incident,03/10/2016,03/10/2016,03/10/2016 11:03:20 AM,03/10/2016 11:04:29 AM,03/10/2016 11:07:44 AM,03/10/2016 11:08:17 AM,03/10/2016 11:14:17 AM,03/10/2016 11:23:49 AM,03/10/2016 11:32:22 AM,Code 2 Transport,03/10/2016 12:07:15 PM,1100 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Mission,"(37.7536444586415, -122.406325430802)",160701279-88 -132500466,RS1,13084641,Medical Incident,09/07/2013,09/07/2013,09/07/2013 11:38:23 PM,09/07/2013 11:38:56 PM,09/07/2013 11:40:51 PM,09/07/2013 11:42:38 PM,09/07/2013 11:44:36 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 12:11:40 AM,700 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",132500466-RS1 -160040123,53,16001432,Medical Incident,01/04/2016,01/03/2016,01/04/2016 01:06:37 AM,01/04/2016 01:08:14 AM,01/04/2016 01:09:38 AM,01/04/2016 01:09:44 AM,01/04/2016 01:18:59 AM,01/04/2016 01:39:21 AM,01/04/2016 01:39:22 AM,Code 2 Transport,01/04/2016 02:30:45 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160040123-53 -103530094,RC3,10113247,Traffic Collision,12/19/2010,12/18/2010,12/19/2010 04:12:25 AM,12/19/2010 04:14:31 AM,12/19/2010 04:16:18 AM,04/25/2016 02:07:02 PM,12/19/2010 04:26:18 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Unable to Locate,12/19/2010 04:30:29 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,,1,RESCUE CAPTAIN,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",103530094-RC3 -131760270,91,13059778,Medical Incident,06/25/2013,06/25/2013,06/25/2013 04:02:41 PM,06/25/2013 04:03:27 PM,06/25/2013 04:03:41 PM,06/25/2013 04:03:50 PM,06/25/2013 04:09:26 PM,06/25/2013 04:11:21 PM,06/25/2013 04:27:15 PM,Code 2 Transport,06/25/2013 04:39:05 PM,21ST ST/TREAT AV,SF,94110,B06,7,545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7573634626497, -122.413446855888)",131760270-91 -111830101,59,11060371,Medical Incident,07/02/2011,07/02/2011,07/02/2011 09:38:15 AM,07/02/2011 09:39:15 AM,07/02/2011 09:39:34 AM,07/02/2011 09:39:51 AM,07/02/2011 09:44:24 AM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,04/25/2016 02:03:52 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",111830101-59 -123520339,55,12117875,Medical Incident,12/17/2012,12/17/2012,12/17/2012 07:15:12 PM,12/17/2012 07:16:39 PM,12/17/2012 07:17:05 PM,12/17/2012 07:17:10 PM,12/17/2012 07:19:36 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Against Medical Advice,12/17/2012 08:00:10 PM,300 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",123520339-55 -130170050,85,13005673,Medical Incident,01/17/2013,01/16/2013,01/17/2013 06:56:10 AM,01/17/2013 06:57:49 AM,01/17/2013 06:58:12 AM,01/17/2013 06:58:23 AM,01/17/2013 07:11:05 AM,01/17/2013 07:30:40 AM,01/17/2013 07:49:22 AM,Code 2 Transport,01/17/2013 07:59:41 AM,1600 Block of QUESADA AVE,SF,94124,B10,17,6535,2,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7327119317696, -122.390462761272)",130170050-85 -160142705,AM14,16005656,Medical Incident,01/14/2016,01/14/2016,01/14/2016 04:57:30 PM,01/14/2016 04:59:41 PM,01/14/2016 05:00:25 PM,01/14/2016 05:02:06 PM,01/14/2016 05:08:43 PM,01/14/2016 05:36:02 PM,01/14/2016 06:09:58 PM,Code 2 Transport,01/14/2016 06:50:12 PM,2300 Block of 32ND AVE,San Francisco,94116,B08,18,7531,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7433678265215, -122.489754348894)",160142705-AM14 -132860012,AM22,13097124,Medical Incident,10/13/2013,10/12/2013,10/13/2013 12:44:53 AM,10/13/2013 12:45:22 AM,10/13/2013 12:45:56 AM,10/13/2013 12:46:26 AM,10/13/2013 12:50:09 AM,10/13/2013 01:03:13 AM,10/13/2013 01:06:57 AM,Code 2 Transport,10/13/2013 01:45:15 AM,2300 Block of MARKET ST,SF,94114,B05,6,5252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",132860012-AM22 -132210046,E13,13074524,Medical Incident,08/09/2013,08/08/2013,08/09/2013 07:34:29 AM,08/09/2013 07:35:03 AM,08/09/2013 07:35:16 AM,08/09/2013 07:36:21 AM,08/09/2013 07:38:55 AM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 07:49:00 AM,400 Block of DAVIS CT,SF,94111,B01,13,1132,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7967073395076, -122.398186156213)",132210046-E13 -110740103,RS1,11024289,Medical Incident,03/15/2011,03/15/2011,03/15/2011 09:30:48 AM,03/15/2011 09:31:49 AM,03/15/2011 09:32:29 AM,03/15/2011 09:33:45 AM,03/15/2011 09:36:02 AM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/15/2011 09:47:22 AM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,true,,1,RESCUE SQUAD,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",110740103-RS1 -111120379,RC3,11037172,Traffic Collision,04/22/2011,04/22/2011,04/22/2011 10:32:31 PM,04/22/2011 10:34:11 PM,04/22/2011 10:34:59 PM,04/22/2011 10:37:10 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/22/2011 10:42:29 PM,100 Block of 10TH ST,SF,94103,B02,29,2345,3,3,3,true,,1,RESCUE CAPTAIN,6,2,6,South of Market,"(37.7750968170762, -122.415590844463)",111120379-RC3 -113410145,KM14,11113012,Medical Incident,12/07/2011,12/07/2011,12/07/2011 10:23:36 AM,12/07/2011 10:24:16 AM,12/07/2011 10:25:00 AM,12/07/2011 10:25:41 AM,12/07/2011 10:35:28 AM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Patient Declined Transport,12/07/2011 10:44:42 AM,16TH ST/UTAH ST,SF,94103,B02,29,2421,3,3,3,false,,1,PRIVATE,2,2,10,Mission,"(37.7658422720667, -122.406552825622)",113410145-KM14 -122450165,88,12080984,Medical Incident,09/01/2012,09/01/2012,09/01/2012 12:26:03 PM,09/01/2012 12:27:39 PM,09/01/2012 12:27:50 PM,09/01/2012 12:27:57 PM,09/01/2012 12:39:51 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,No Merit,09/01/2012 12:43:23 PM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",122450165-88 -131440008,AM10,13048680,Medical Incident,05/24/2013,05/23/2013,05/24/2013 01:25:10 AM,05/24/2013 01:28:58 AM,05/24/2013 01:29:05 AM,05/24/2013 01:31:44 AM,05/24/2013 01:33:17 AM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Gone on Arrival,05/24/2013 01:55:59 AM,600 Block of SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",131440008-AM10 -120870285,E25,12028972,Medical Incident,03/27/2012,03/27/2012,03/27/2012 07:21:27 PM,03/27/2012 07:24:09 PM,03/27/2012 07:25:27 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 07:41:34 PM,2800 Block of 3RD ST,SF,94107,B10,25,2611,2,2,2,false,Non Life-threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7534661505978, -122.387955478164)",120870285-E25 -160262670,84,16010379,Medical Incident,01/26/2016,01/26/2016,01/26/2016 04:36:08 PM,01/26/2016 04:38:44 PM,01/26/2016 04:39:22 PM,01/26/2016 04:39:36 PM,01/26/2016 05:02:31 PM,01/26/2016 05:34:23 PM,01/26/2016 05:41:24 PM,Code 2 Transport,01/26/2016 06:30:46 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160262670-84 -160603233,KM03,16024066,Medical Incident,02/29/2016,02/29/2016,02/29/2016 08:02:10 PM,02/29/2016 08:02:10 PM,02/29/2016 08:03:29 PM,02/29/2016 08:03:47 PM,02/29/2016 08:14:05 PM,02/29/2016 08:23:36 PM,02/29/2016 08:36:50 PM,Code 2 Transport,02/29/2016 08:50:40 PM,500 Block of ASHBURY ST,San Francisco,94117,B05,21,4513,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7704798924053, -122.446959951281)",160603233-KM03 -121130184,KM05,12037515,Medical Incident,04/22/2012,04/22/2012,04/22/2012 01:54:49 PM,04/22/2012 01:55:10 PM,04/22/2012 01:55:51 PM,04/22/2012 01:56:46 PM,04/22/2012 02:04:57 PM,04/22/2012 02:12:22 PM,04/22/2012 02:58:31 PM,Code 2 Transport,04/22/2012 03:29:18 PM,GREAT HY/JOHN F KENNEDY DR,SF,94122,B08,23,7722,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7704356758824, -122.510925945877)",121130184-KM05 -111310236,T13,11043332,Alarms,05/11/2011,05/11/2011,05/11/2011 03:37:22 PM,05/11/2011 03:38:48 PM,05/11/2011 03:39:03 PM,05/11/2011 03:40:32 PM,05/11/2011 03:42:12 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/11/2011 03:58:22 PM,700 Block of SACRAMENTO ST,SF,94108,B01,13,1244,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.7935266827738, -122.405381996327)",111310236-T13 -131550159,87,13052507,Medical Incident,06/04/2013,06/04/2013,06/04/2013 10:51:10 AM,06/04/2013 10:54:08 AM,06/04/2013 10:54:51 AM,06/04/2013 10:55:16 AM,06/04/2013 11:02:46 AM,06/04/2013 11:08:34 AM,06/04/2013 11:35:40 AM,Code 2 Transport,06/04/2013 12:01:30 PM,1100 Block of PINE ST,SF,94109,B01,41,1464,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7903887572034, -122.414938763678)",131550159-87 -110240300,75,11007965,Medical Incident,01/24/2011,01/24/2011,01/24/2011 04:30:18 PM,01/24/2011 04:30:42 PM,01/24/2011 04:32:16 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,01/24/2011 04:58:19 PM,01/24/2011 05:07:43 PM,Code 2 Transport,01/24/2011 05:37:50 PM,4TH ST/HOWARD ST,SF,94103,B03,1,2214,3,2,2,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",110240300-75 -112440016,93,11080311,Medical Incident,09/01/2011,08/31/2011,09/01/2011 12:42:59 AM,09/01/2011 12:43:59 AM,09/01/2011 12:44:29 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,04/25/2016 02:02:54 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,,1,MEDIC,3,3,6,South of Market,"(37.7821372491619, -122.397814506334)",112440016-93 -120960221,E26,12031822,Medical Incident,04/05/2012,04/05/2012,04/05/2012 03:32:01 PM,04/05/2012 03:33:53 PM,04/05/2012 03:34:18 PM,04/05/2012 03:35:03 PM,04/05/2012 03:40:36 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Other,04/05/2012 04:00:45 PM,2900 Block of DIAMOND ST,SF,94131,B09,26,8269,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",120960221-E26 -140230063,AM26,14007768,Medical Incident,01/23/2014,01/22/2014,01/23/2014 07:30:08 AM,01/23/2014 07:32:38 AM,01/23/2014 07:33:19 AM,01/23/2014 07:33:49 AM,01/23/2014 07:43:01 AM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Unable to Locate,01/23/2014 07:47:11 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",140230063-AM26 -160240731,67,16009456,Medical Incident,01/24/2016,01/23/2016,01/24/2016 07:30:28 AM,01/24/2016 07:30:28 AM,01/24/2016 07:31:07 AM,01/24/2016 07:34:32 AM,01/24/2016 07:53:55 AM,01/24/2016 08:06:49 AM,01/24/2016 08:27:57 AM,Code 2 Transport,01/24/2016 09:01:16 AM,400 Block of PERSIA AVE,San Francisco,94112,B09,43,6134,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7213809153444, -122.432441314928)",160240731-67 -160760738,77,16030032,Traffic Collision,03/16/2016,03/16/2016,03/16/2016 08:16:53 AM,03/16/2016 08:17:36 AM,03/16/2016 08:17:55 AM,03/16/2016 08:18:16 AM,03/16/2016 08:24:39 AM,03/16/2016 08:44:32 AM,03/16/2016 08:57:22 AM,Code 2 Transport,03/16/2016 09:29:58 AM,STEINER ST/WALLER ST,San Francisco,94117,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7709644257411, -122.431904325159)",160760738-77 -131690059,T17,13057274,Traffic Collision,06/18/2013,06/17/2013,06/18/2013 05:58:01 AM,06/18/2013 06:04:10 AM,06/18/2013 06:04:52 AM,06/18/2013 06:07:06 AM,06/18/2013 06:11:50 AM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,Other,06/18/2013 06:33:42 AM,100 Block of SAN BRUNO AVE,SF,94103,B10,42,6337,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,10,Mission,"(37.7690702954409, -122.405814382975)",131690059-T17 -160340417,62,16013248,Medical Incident,02/03/2016,02/02/2016,02/03/2016 05:48:44 AM,02/03/2016 05:52:01 AM,02/03/2016 05:52:22 AM,02/03/2016 05:52:32 AM,02/03/2016 05:59:32 AM,02/03/2016 06:25:07 AM,02/03/2016 06:25:13 AM,Code 3 Transport,02/03/2016 08:22:27 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",160340417-62 -160562137,60,16022409,Medical Incident,02/25/2016,02/25/2016,02/25/2016 01:52:39 PM,02/25/2016 01:54:39 PM,02/25/2016 01:59:16 PM,02/25/2016 01:59:27 PM,02/25/2016 02:17:31 PM,02/25/2016 02:49:46 PM,02/25/2016 02:59:07 PM,Code 2 Transport,02/25/2016 04:09:08 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160562137-60 -161011834,KM06,16040202,Medical Incident,04/10/2016,04/10/2016,04/10/2016 01:40:56 PM,04/10/2016 01:42:42 PM,04/10/2016 01:43:18 PM,04/10/2016 01:44:04 PM,04/10/2016 01:49:15 PM,04/10/2016 01:58:14 PM,04/10/2016 02:02:28 PM,Code 2 Transport,04/10/2016 02:41:23 PM,23RD ST/POTRERO AV,San Francisco,94110,B10,37,2554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Potrero Hill,"(37.7545642123343, -122.406480459209)",161011834-KM06 -123180179,KM09,12105760,Medical Incident,11/13/2012,11/13/2012,11/13/2012 12:07:37 PM,11/13/2012 12:08:13 PM,11/13/2012 12:08:31 PM,11/13/2012 12:09:18 PM,11/13/2012 12:12:20 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Medical Examiner,11/13/2012 12:47:40 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",123180179-KM09 -110800352,55,11026501,Medical Incident,03/21/2011,03/21/2011,03/21/2011 09:20:17 PM,03/21/2011 09:23:29 PM,03/21/2011 09:24:12 PM,03/21/2011 09:25:00 PM,03/21/2011 09:32:18 PM,03/21/2011 09:55:16 PM,03/21/2011 10:05:15 PM,Code 2 Transport,03/21/2011 10:42:09 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,true,,1,MEDIC,3,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",110800352-55 -123360418,T19,12111934,Other,12/01/2012,12/01/2012,12/01/2012 09:53:45 PM,12/01/2012 09:54:40 PM,12/01/2012 09:54:57 PM,12/01/2012 09:56:22 PM,12/01/2012 10:03:48 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 10:31:25 PM,CALL BOX: JOHN MUIR DR/SKYLINE BL,SF,94132,B08,19,8714,3,3,3,true,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.7250443458965, -122.50306646178)",123360418-T19 -103470244,RS2,10111315,Medical Incident,12/13/2010,12/13/2010,12/13/2010 02:48:29 PM,12/13/2010 02:48:58 PM,12/13/2010 02:51:21 PM,12/13/2010 02:53:17 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 02:55:59 PM,1500 Block of 15TH ST,SF,94103,B02,7,522,3,3,3,false,,1,RESCUE SQUAD,3,2,9,Mission,"(37.7666745282978, -122.418897837337)",103470244-RS2 -112690206,E29,11088928,Traffic Collision,09/26/2011,09/26/2011,09/26/2011 02:03:28 PM,09/26/2011 02:06:18 PM,09/26/2011 02:06:35 PM,09/26/2011 02:07:27 PM,09/26/2011 02:09:06 PM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,09/26/2011 02:19:09 PM,0 Block of CONNECTICUT ST,SF,94107,B03,29,2425,3,3,3,true,,1,ENGINE,1,3,10,Mission Bay,"(37.7657165510162, -122.397869370472)",112690206-E29 -160342906,93,16013530,Medical Incident,02/03/2016,02/03/2016,02/03/2016 06:42:05 PM,02/03/2016 06:42:05 PM,02/03/2016 06:42:43 PM,02/03/2016 06:42:56 PM,02/03/2016 06:49:54 PM,02/03/2016 06:58:18 PM,02/03/2016 07:12:12 PM,Code 2 Transport,02/03/2016 08:00:08 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160342906-93 -122050305,68,12068276,Medical Incident,07/23/2012,07/23/2012,07/23/2012 07:30:36 PM,07/23/2012 07:30:54 PM,07/23/2012 07:31:06 PM,07/23/2012 07:32:42 PM,07/23/2012 07:33:31 PM,07/23/2012 07:47:06 PM,07/23/2012 07:52:27 PM,Code 2 Transport,07/23/2012 08:20:57 PM,MARKET ST/4TH ST,SF,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",122050305-68 -121000141,E01,12033096,Other,04/09/2012,04/09/2012,04/09/2012 10:53:09 AM,04/09/2012 10:54:30 AM,04/09/2012 10:54:41 AM,04/09/2012 10:56:11 AM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Fire,04/09/2012 11:02:11 AM,0 Block of MARKET ST,SF,94105,B03,13,2115,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7940657665886, -122.395089224777)",121000141-E01 -160300619,KM03,16011683,Medical Incident,01/30/2016,01/29/2016,01/30/2016 05:47:43 AM,01/30/2016 05:50:51 AM,01/30/2016 05:52:20 AM,01/30/2016 05:53:47 AM,01/30/2016 06:05:41 AM,01/30/2016 06:38:43 AM,01/30/2016 07:00:01 AM,Code 2 Transport,01/30/2016 07:31:34 AM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8038770970726, -122.404157077302)",160300619-KM03 -160681176,60,16027075,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:22:32 AM,03/08/2016 10:22:32 AM,03/08/2016 10:23:04 AM,03/08/2016 10:23:10 AM,03/08/2016 10:42:35 AM,03/08/2016 11:19:19 AM,03/08/2016 11:33:03 AM,Code 2 Transport,03/08/2016 12:13:22 PM,24TH ST/BARTLETT ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7521714122228, -122.419557366822)",160681176-60 -160822265,55,16032611,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:57:31 PM,03/22/2016 02:57:31 PM,03/22/2016 02:58:55 PM,03/22/2016 02:59:09 PM,03/22/2016 03:11:16 PM,03/22/2016 03:29:05 PM,03/22/2016 03:51:08 PM,Code 2 Transport,03/22/2016 04:30:49 PM,100 Block of HIGHLAND AVE,San Francisco,94110,B06,32,5646,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7372540256563, -122.422102908674)",160822265-55 -110800323,E17,11026476,Medical Incident,03/21/2011,03/21/2011,03/21/2011 07:31:24 PM,03/21/2011 07:32:32 PM,03/21/2011 07:32:52 PM,03/21/2011 07:34:11 PM,03/21/2011 07:37:21 PM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 07:41:52 PM,0 Block of FLORA ST,SF,94124,B10,17,6472,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7318711159459, -122.394396938807)",110800323-E17 -102700011,60,10085516,Medical Incident,09/27/2010,09/26/2010,09/27/2010 12:37:43 AM,09/27/2010 12:38:08 AM,09/27/2010 12:40:04 AM,09/27/2010 12:40:15 AM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,Other,09/27/2010 12:41:38 AM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,2,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",102700011-60 -103100320,E36,10099508,Structure Fire,11/06/2010,11/06/2010,11/06/2010 07:59:37 PM,11/06/2010 07:59:37 PM,11/06/2010 08:00:17 PM,11/06/2010 08:01:05 PM,11/06/2010 08:01:23 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 08:01:36 PM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7779770860913, -122.409387007126)",103100320-E36 -160180110,64,16007073,Medical Incident,01/18/2016,01/17/2016,01/18/2016 12:54:37 AM,01/18/2016 12:57:06 AM,01/18/2016 12:57:44 AM,01/18/2016 12:58:06 AM,01/18/2016 01:02:23 AM,01/18/2016 01:10:03 AM,01/18/2016 01:17:18 AM,Code 2 Transport,01/18/2016 01:59:52 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821161321441, -122.407160717737)",160180110-64 -131440130,AR1,13048781,Administrative,05/24/2013,05/24/2013,05/24/2013 10:56:06 AM,05/24/2013 10:56:11 AM,05/24/2013 10:56:28 AM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Other,05/24/2013 10:58:33 AM,1400 Block of EVANS AVE,SF,94124,B10,25,6521,3,3,3,false,,1,INVESTIGATION,1,10,10,Bayview Hunters Point,"(37.7413198233919, -122.385730461663)",131440130-AR1 -131130007,E07,13037947,Medical Incident,04/23/2013,04/22/2013,04/23/2013 12:15:52 AM,04/23/2013 12:16:31 AM,04/23/2013 12:17:34 AM,04/23/2013 12:18:59 AM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/23/2013 12:23:26 AM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.752711512136, -122.411436461904)",131130007-E07 -140740404,RC1,14025199,Medical Incident,03/15/2014,03/15/2014,03/15/2014 09:42:41 PM,03/15/2014 09:43:54 PM,03/15/2014 09:45:06 PM,03/15/2014 09:45:06 PM,03/15/2014 09:47:52 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Code 2 Transport,03/15/2014 09:57:26 PM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",140740404-RC1 -132940281,92,13100070,Traffic Collision,10/21/2013,10/21/2013,10/21/2013 04:50:43 PM,10/21/2013 04:51:23 PM,10/21/2013 04:51:56 PM,10/21/2013 04:52:54 PM,10/21/2013 05:04:59 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Patient Declined Transport,10/21/2013 05:08:19 PM,17TH ST/SAN BRUNO AV,SF,94110,B02,29,2421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Potrero Hill,"(37.7646059683542, -122.405463421253)",132940281-92 -132420065,55,13081535,Medical Incident,08/30/2013,08/29/2013,08/30/2013 05:40:18 AM,08/30/2013 05:41:57 AM,08/30/2013 05:42:36 AM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,04/25/2016 01:51:03 PM,900 Block of COLUMBUS AVE,SF,94133,B01,28,1435,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Russian Hill,"(37.8031013193084, -122.414343192837)",132420065-55 -140770319,RS2,14026185,Structure Fire,03/18/2014,03/18/2014,03/18/2014 07:12:37 PM,03/18/2014 07:12:47 PM,03/18/2014 07:13:32 PM,03/18/2014 07:15:50 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Fire,03/18/2014 07:15:58 PM,1800 Block of LOMBARD ST,SAN FRANCISCO,94123,B04,16,3352,3,3,3,false,Alarm,1,RESCUE SQUAD,10,4,2,Marina,"(37.8002483466327, -122.431914332097)",140770319-RS2 -133060143,E28,13104008,Traffic Collision,11/02/2013,11/02/2013,11/02/2013 11:25:09 AM,11/02/2013 11:27:29 AM,11/02/2013 11:27:54 AM,11/02/2013 11:28:19 AM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,Other,11/02/2013 11:40:33 AM,HYDE ST/BAY ST,SF,94109,B01,28,1614,2,2,2,false,Non Life-threatening,1,ENGINE,2,1,2,Russian Hill,"(37.8047903067381, -122.420178127211)",133060143-E28 -160660495,60,16026267,Medical Incident,03/06/2016,03/05/2016,03/06/2016 05:09:16 AM,03/06/2016 05:09:16 AM,03/06/2016 05:09:30 AM,03/06/2016 05:10:18 AM,03/06/2016 05:12:23 AM,03/06/2016 05:34:03 AM,03/06/2016 05:47:43 AM,Code 2 Transport,03/06/2016 06:29:31 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160660495-60 -112760167,T03,11091333,Gas Leak (Natural and LP Gases),10/03/2011,10/03/2011,10/03/2011 11:09:04 AM,10/03/2011 11:10:52 AM,10/03/2011 11:11:12 AM,10/03/2011 11:16:06 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 11:18:58 AM,1200 Block of MARKET ST,SF,94103,B02,1,2317,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7780365108208, -122.415429100912)",112760167-T03 -122360067,E10,12078103,Alarms,08/23/2012,08/23/2012,08/23/2012 08:38:57 AM,08/23/2012 08:40:21 AM,08/23/2012 08:40:38 AM,08/23/2012 08:42:30 AM,08/23/2012 08:44:42 AM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Other,08/23/2012 08:52:50 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,true,Alarm,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",122360067-E10 -123340007,E17,12110819,Vehicle Fire,11/29/2012,11/28/2012,11/29/2012 12:23:42 AM,11/29/2012 12:24:50 AM,11/29/2012 12:25:09 AM,11/29/2012 12:26:52 AM,11/29/2012 12:29:31 AM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/29/2012 01:23:35 AM,GRIFFITH ST/FITZGERALD AV,SF,94124,B10,17,6573,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7187604993165, -122.387661334611)",123340007-E17 -160152567,68,16006059,Medical Incident,01/15/2016,01/15/2016,01/15/2016 04:13:58 PM,01/15/2016 04:15:19 PM,01/15/2016 04:15:36 PM,01/15/2016 04:15:44 PM,01/15/2016 04:33:07 PM,01/15/2016 04:37:30 PM,01/15/2016 04:48:52 PM,Code 2 Transport,01/15/2016 05:10:55 PM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7720141510333, -122.419088601412)",160152567-68 -160072931,81,16002946,Medical Incident,01/07/2016,01/07/2016,01/07/2016 06:00:39 PM,01/07/2016 06:00:39 PM,01/07/2016 06:01:34 PM,01/07/2016 06:01:51 PM,01/07/2016 06:10:54 PM,01/07/2016 06:27:31 PM,01/07/2016 06:38:34 PM,Code 2 Transport,01/07/2016 07:07:03 PM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",160072931-81 -122260232,81,12074960,Medical Incident,08/13/2012,08/13/2012,08/13/2012 02:44:17 PM,08/13/2012 02:46:24 PM,08/13/2012 02:46:37 PM,08/13/2012 02:46:44 PM,08/13/2012 03:02:15 PM,08/13/2012 03:19:48 PM,08/13/2012 03:41:20 PM,Code 2 Transport,08/13/2012 04:25:33 PM,100 Block of TURK ST,SF,94102,B03,1,1456,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",122260232-81 -110910255,61,11030203,Medical Incident,04/01/2011,04/01/2011,04/01/2011 03:18:58 PM,04/01/2011 03:19:23 PM,04/01/2011 03:20:13 PM,04/01/2011 03:20:35 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 03:24:20 PM,18TH ST/BRYANT ST,SF,94110,B02,7,5426,3,3,3,true,,1,MEDIC,3,2,9,Mission,"(37.7617594196716, -122.410118192354)",110910255-61 -160371815,67,16014683,Medical Incident,02/06/2016,02/06/2016,02/06/2016 12:27:41 PM,02/06/2016 12:29:18 PM,02/06/2016 12:29:34 PM,02/06/2016 12:30:00 PM,02/06/2016 12:39:10 PM,02/06/2016 12:50:21 PM,02/06/2016 01:08:43 PM,Code 2 Transport,02/06/2016 01:44:41 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160371815-67 -110190008,E25,11006093,Medical Incident,01/19/2011,01/18/2011,01/19/2011 12:22:39 AM,01/19/2011 12:23:58 AM,01/19/2011 12:24:48 AM,01/19/2011 12:26:12 AM,01/19/2011 12:28:49 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/19/2011 12:38:33 AM,1000 Block of NEWHALL ST,SF,94124,B10,25,6467,3,2,2,false,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7378858878982, -122.390296258832)",110190008-E25 -132220343,68,13075101,Medical Incident,08/10/2013,08/10/2013,08/10/2013 08:17:41 PM,08/10/2013 08:19:22 PM,08/10/2013 08:19:28 PM,08/10/2013 08:19:35 PM,08/10/2013 08:30:28 PM,08/10/2013 08:55:34 PM,08/10/2013 09:16:04 PM,Code 2 Transport,08/10/2013 09:40:13 PM,0 Block of ROBINSON DR,SF,,B09,43,6236,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,None,None,"(37.7079219034586, -122.428716681874)",132220343-68 -160063691,59,16002620,Medical Incident,01/06/2016,01/06/2016,01/06/2016 10:25:40 PM,01/06/2016 10:25:40 PM,01/06/2016 10:26:07 PM,01/06/2016 10:26:17 PM,01/06/2016 10:37:31 PM,01/06/2016 10:55:40 PM,01/06/2016 11:13:34 PM,Code 2 Transport,01/06/2016 11:39:13 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160063691-59 -160850070,78,16033609,Medical Incident,03/25/2016,03/24/2016,03/25/2016 12:32:40 AM,03/25/2016 12:32:59 AM,03/25/2016 12:33:54 AM,03/25/2016 12:34:04 AM,03/25/2016 12:38:47 AM,03/25/2016 12:47:59 AM,03/25/2016 12:51:44 AM,Code 2 Transport,03/25/2016 01:35:28 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Tenderloin,"(37.7865845259792, -122.419948853352)",160850070-78 -131150256,KM12,13038849,Medical Incident,04/25/2013,04/25/2013,04/25/2013 05:38:19 PM,04/25/2013 05:39:44 PM,04/25/2013 05:40:10 PM,04/25/2013 05:40:59 PM,04/25/2016 01:53:07 PM,04/25/2013 06:03:29 PM,04/25/2013 06:40:10 PM,Code 3 Transport,04/25/2013 06:42:51 PM,600 Block of 39TH AVE,SF,94121,B07,34,7257,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.776553267268, -122.499453605944)",131150256-KM12 -112370323,61,11078308,Medical Incident,08/25/2011,08/25/2011,08/25/2011 06:18:47 PM,08/25/2011 06:19:49 PM,08/25/2011 06:20:03 PM,08/25/2011 06:20:47 PM,08/25/2011 06:25:25 PM,08/25/2011 06:51:30 PM,08/25/2011 06:56:59 PM,Code 2 Transport,08/25/2011 07:34:03 PM,1200 Block of 12TH AVE,SF,94122,B08,22,7346,3,3,3,true,,1,MEDIC,2,7,5,Inner Sunset,"(37.7648362657127, -122.469656987954)",112370323-61 -122040365,E13,12067969,Outside Fire,07/22/2012,07/22/2012,07/22/2012 08:38:54 PM,07/22/2012 08:38:54 PM,07/22/2012 08:40:11 PM,07/22/2012 08:40:29 PM,07/22/2012 08:43:32 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Fire,07/22/2012 08:51:46 PM,200 Block of THE EMBARCADERO,SF,94111,B01,13,901,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",122040365-E13 -160750342,KM07,16029576,Medical Incident,03/15/2016,03/14/2016,03/15/2016 04:24:00 AM,03/15/2016 04:24:23 AM,03/15/2016 04:24:33 AM,03/15/2016 04:25:03 AM,03/15/2016 04:34:11 AM,03/15/2016 04:44:44 AM,03/15/2016 04:55:29 AM,Code 2 Transport,03/15/2016 05:25:36 AM,1100 Block of FILLMORE ST,San Francisco,94115,B05,5,3535,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",160750342-KM07 -112050212,68,11067762,Traffic Collision,07/24/2011,07/24/2011,07/24/2011 02:47:44 PM,07/24/2011 02:48:42 PM,07/24/2011 02:49:47 PM,07/24/2011 02:52:13 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/24/2011 02:53:23 PM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",112050212-68 -121030235,54,12034154,Medical Incident,04/12/2012,04/12/2012,04/12/2012 02:52:21 PM,04/12/2012 02:53:43 PM,04/12/2012 02:53:50 PM,04/12/2012 02:55:47 PM,04/12/2012 03:03:04 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 03:08:18 PM,400 Block of 30TH ST,SF,94131,B06,26,5573,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Glen Park,"(37.7418667376014, -122.429424181558)",121030235-54 -130530374,82,13018078,Medical Incident,02/22/2013,02/22/2013,02/22/2013 10:35:32 PM,02/22/2013 10:36:45 PM,02/22/2013 10:38:39 PM,02/22/2013 10:38:45 PM,02/22/2013 10:43:45 PM,02/22/2013 10:59:16 PM,02/22/2013 11:19:15 PM,Code 2 Transport,02/22/2013 11:36:36 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,2,3,3,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",130530374-82 -133520249,E36,13119614,Medical Incident,12/18/2013,12/18/2013,12/18/2013 01:41:47 PM,12/18/2013 01:43:17 PM,12/18/2013 01:47:39 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/18/2013 01:48:34 PM,PEARL ST/MARKET ST,SF,94103,B02,36,3416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,8,Mission,"(37.771369005901, -122.423973386603)",133520249-E36 -103560275,E05,10114341,Alarms,12/22/2010,12/22/2010,12/22/2010 05:27:06 PM,12/22/2010 05:30:15 PM,12/22/2010 05:31:23 PM,12/22/2010 05:32:17 PM,12/22/2010 05:34:06 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/22/2010 05:59:12 PM,1100 Block of PIERCE ST,SF,94115,B05,5,3643,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805346367144, -122.435588688565)",103560275-E05 -102510151,E06,10079263,Alarms,09/08/2010,09/08/2010,09/08/2010 10:44:08 AM,09/08/2010 10:45:19 AM,09/08/2010 10:47:08 AM,09/08/2010 10:48:19 AM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,04/25/2016 02:08:41 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,,1,ENGINE,3,2,8,Mission,"(37.7661259454801, -122.42207304894)",102510151-E06 -122620106,E03,12086448,Medical Incident,09/18/2012,09/18/2012,09/18/2012 10:15:29 AM,09/18/2012 10:16:45 AM,09/18/2012 10:17:35 AM,09/18/2012 10:19:21 AM,09/18/2012 10:21:36 AM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 10:31:37 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122620106-E03 -123070239,58,12102055,Medical Incident,11/02/2012,11/02/2012,11/02/2012 03:11:04 PM,11/02/2012 03:11:42 PM,11/02/2012 03:12:55 PM,11/02/2012 03:13:11 PM,11/02/2012 03:15:55 PM,11/02/2012 03:26:26 PM,11/02/2012 03:38:52 PM,Code 2 Transport,11/02/2012 04:10:12 PM,900 Block of GENEVA AVE,SF,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.715765426995, -122.439909766772)",123070239-58 -113410304,AM04,11113144,Medical Incident,12/07/2011,12/07/2011,12/07/2011 05:22:14 PM,12/07/2011 05:22:44 PM,12/07/2011 05:23:56 PM,12/07/2011 05:24:27 PM,12/07/2011 05:35:58 PM,12/07/2011 06:06:29 PM,12/07/2011 06:35:36 PM,Code 2 Transport,12/07/2011 06:57:27 PM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7345707092334, -122.391831743022)",113410304-AM04 -121640241,SO1,12054444,Structure Fire,06/12/2012,06/12/2012,06/12/2012 03:46:24 PM,06/12/2012 03:47:10 PM,06/12/2012 03:47:34 PM,04/25/2016 01:58:14 PM,06/12/2012 05:07:45 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 06:46:42 PM,2800 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,3,3,3,false,Fire,4,SUPPORT,28,10,9,Portola,"(37.7258169452923, -122.402916975907)",121640241-SO1 -133320046,82,13112573,Medical Incident,11/28/2013,11/27/2013,11/28/2013 05:45:38 AM,11/28/2013 05:47:13 AM,11/28/2013 05:48:01 AM,11/28/2013 05:48:19 AM,11/28/2013 05:55:49 AM,11/28/2013 06:02:00 AM,11/28/2013 06:11:21 AM,Code 2 Transport,11/28/2013 06:31:33 AM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",133320046-82 -160080429,67,16003091,Medical Incident,01/08/2016,01/07/2016,01/08/2016 05:04:44 AM,01/08/2016 05:07:44 AM,01/08/2016 05:08:03 AM,01/08/2016 05:09:08 AM,01/08/2016 05:14:24 AM,01/08/2016 05:19:22 AM,01/08/2016 05:39:27 AM,Code 2 Transport,01/08/2016 06:00:05 AM,2000 Block of SLOAT BL,San Francisco,94116,B08,19,7615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7339690570118, -122.495544493465)",160080429-67 -140960019,KM03,14032168,Medical Incident,04/06/2014,04/05/2014,04/06/2014 12:59:16 AM,04/06/2014 12:59:27 AM,04/06/2014 12:59:44 AM,04/06/2014 01:02:13 AM,04/06/2014 01:07:19 AM,04/06/2014 01:16:55 AM,04/06/2014 01:27:55 AM,Code 2 Transport,04/06/2014 01:54:11 AM,14TH ST/MISSION ST,SAN FRANCISCO,94103,B02,36,5215,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7682736543413, -122.419981513232)",140960019-KM03 -160120817,71,16004688,Medical Incident,01/12/2016,01/12/2016,01/12/2016 08:44:09 AM,01/12/2016 08:45:35 AM,01/12/2016 08:45:57 AM,01/12/2016 08:46:14 AM,01/12/2016 08:50:22 AM,01/12/2016 09:06:20 AM,01/12/2016 09:24:37 AM,Code 2 Transport,01/12/2016 10:12:52 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160120817-71 -102780248,T08,10088425,Structure Fire,10/05/2010,10/05/2010,10/05/2010 02:56:19 PM,10/05/2010 02:56:19 PM,10/05/2010 02:57:02 PM,10/05/2010 02:57:58 PM,04/25/2016 02:08:15 PM,04/25/2016 02:08:15 PM,10/05/2010 02:58:37 PM,Other,10/05/2010 02:58:40 PM,9TH ST/HARRISON ST,SF,94103,B03,29,2333,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7725264425971, -122.410076850083)",102780248-T08 -110860355,57,11028518,Medical Incident,03/27/2011,03/27/2011,03/27/2011 08:57:35 PM,03/27/2011 08:57:35 PM,03/27/2011 08:58:24 PM,03/27/2011 08:58:49 PM,03/27/2011 09:00:57 PM,03/27/2011 09:18:34 PM,03/27/2011 09:37:13 PM,Code 2 Transport,03/27/2011 10:06:47 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",110860355-57 -122760343,E44,12091257,Medical Incident,10/02/2012,10/02/2012,10/02/2012 05:42:47 PM,10/02/2012 05:43:29 PM,10/02/2012 05:43:59 PM,10/02/2012 05:46:01 PM,10/02/2012 06:01:26 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 06:13:41 PM,SUNNYDALE AV/SANTOS ST,SF,94134,B09,43,6241,E,E,3,true,Potentially Life-Threatening,1,ENGINE,5,9,10,Visitacion Valley,"(37.7123491478047, -122.418283422082)",122760343-E44 -111460045,81,11048373,Medical Incident,05/26/2011,05/25/2011,05/26/2011 06:04:43 AM,05/26/2011 06:05:11 AM,05/26/2011 06:05:22 AM,05/26/2011 06:05:40 AM,05/26/2011 06:12:05 AM,05/26/2011 06:30:28 AM,05/26/2011 06:39:47 AM,Code 2 Transport,05/26/2011 07:08:58 AM,200 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7352990808534, -122.378938094591)",111460045-81 -110970425,E31,11032338,Medical Incident,04/07/2011,04/07/2011,04/07/2011 10:53:19 PM,04/07/2011 10:54:30 PM,04/07/2011 10:54:43 PM,04/07/2011 10:55:32 PM,04/07/2011 10:58:33 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Other,04/07/2011 11:19:42 PM,4000 Block of GEARY BLVD,SF,94118,B07,31,7124,3,2,2,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7812175298072, -122.46268182082)",110970425-E31 -102620347,RC2,10083032,Medical Incident,09/19/2010,09/19/2010,09/19/2010 09:47:41 PM,09/19/2010 09:49:02 PM,09/19/2010 09:49:59 PM,09/19/2010 09:51:25 PM,09/19/2010 09:55:59 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/19/2010 10:06:45 PM,4200 Block of BALBOA ST,SF,94121,B07,34,7273,3,E,3,true,,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7754517962446, -122.504284482138)",102620347-RC2 -131020194,AM20,13034284,Medical Incident,04/12/2013,04/12/2013,04/12/2013 02:19:03 PM,04/12/2013 02:19:27 PM,04/12/2013 02:19:53 PM,04/12/2013 02:20:33 PM,04/12/2013 02:24:38 PM,04/12/2013 02:20:40 PM,04/12/2013 02:47:01 PM,Code 2 Transport,04/12/2013 03:21:36 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",131020194-AM20 -160424040,75,16017093,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:59:31 PM,02/12/2016 12:01:15 AM,02/12/2016 12:03:12 AM,02/12/2016 12:03:23 AM,02/12/2016 12:25:15 AM,02/12/2016 12:25:18 AM,02/12/2016 12:40:09 AM,No Merit,02/12/2016 01:35:58 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160424040-75 -121700233,KM11,12056464,Medical Incident,06/18/2012,06/18/2012,06/18/2012 03:23:58 PM,06/18/2012 03:25:32 PM,06/18/2012 03:26:09 PM,06/18/2012 03:26:46 PM,06/18/2012 03:29:47 PM,06/18/2012 03:51:59 PM,06/18/2012 04:04:09 PM,Code 2 Transport,06/18/2012 04:42:31 PM,1800 Block of 22ND AVE,SF,94122,B08,40,7431,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.753163589686, -122.479691469824)",121700233-KM11 -121260250,B04,12041933,Alarms,05/05/2012,05/05/2012,05/05/2012 02:41:58 PM,05/05/2012 02:42:07 PM,05/05/2012 02:42:55 PM,04/25/2016 01:58:50 PM,05/05/2012 02:50:18 PM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,No Merit,05/05/2012 02:50:56 PM,1500 Block of SCOTT ST,SF,94115,B04,10,4131,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.784133355861, -122.437865551162)",121260250-B04 -160100225,71,16003877,Medical Incident,01/10/2016,01/09/2016,01/10/2016 01:25:59 AM,01/10/2016 01:25:59 AM,01/10/2016 01:28:39 AM,01/10/2016 01:28:44 AM,01/10/2016 01:33:06 AM,01/10/2016 01:44:39 AM,01/10/2016 01:57:18 AM,Code 2 Transport,01/10/2016 02:08:36 AM,400 Block of POST ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",160100225-71 -160261326,KM09,16010261,Traffic Collision,01/26/2016,01/26/2016,01/26/2016 10:30:33 AM,01/26/2016 10:31:46 AM,01/26/2016 10:33:00 AM,01/26/2016 10:33:39 AM,01/26/2016 10:42:35 AM,01/26/2016 11:11:20 AM,01/26/2016 11:25:58 AM,Code 2 Transport,01/26/2016 12:15:24 PM,33RD AV/GEARY BL,San Francisco,94121,B07,14,7245,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7796883694276, -122.493297257775)",160261326-KM09 -111790051,E36,11059000,Citizen Assist / Service Call,06/28/2011,06/27/2011,06/28/2011 06:13:13 AM,06/28/2011 06:29:18 AM,06/28/2011 06:29:47 AM,06/28/2011 06:31:58 AM,06/28/2011 06:33:38 AM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Other,06/28/2011 06:53:48 AM,800 Block of FRANKLIN ST,SF,94102,B02,36,3216,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7824435992634, -122.422484951715)",111790051-E36 -160573543,86,16022909,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:33:50 PM,02/26/2016 09:33:50 PM,02/26/2016 09:33:59 PM,02/26/2016 09:34:42 PM,02/26/2016 09:40:48 PM,02/26/2016 09:50:40 PM,02/26/2016 09:59:03 PM,Code 2 Transport,02/26/2016 10:34:19 PM,1200 Block of 40TH AV,San Francisco,94122,B08,23,7627,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7635064950379, -122.499762632538)",160573543-86 -160270918,77,16010587,Medical Incident,01/27/2016,01/27/2016,01/27/2016 09:06:01 AM,01/27/2016 09:07:36 AM,01/27/2016 09:08:24 AM,01/27/2016 09:08:33 AM,01/27/2016 09:24:36 AM,01/27/2016 09:48:10 AM,01/27/2016 10:10:57 AM,Code 2 Transport,01/27/2016 10:48:20 AM,3300 Block of DIVISADERO ST,San Francisco,94123,B04,16,4211,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8004343723216, -122.443008700997)",160270918-77 -133230010,55,13109502,Medical Incident,11/19/2013,11/18/2013,11/19/2013 01:15:37 AM,11/19/2013 01:18:46 AM,11/19/2013 01:19:08 AM,11/19/2013 01:19:51 AM,11/19/2013 01:33:27 AM,04/25/2016 01:49:42 PM,04/25/2016 01:49:42 PM,Patient Declined Transport,11/19/2013 01:38:43 AM,1700 Block of LOMBARD ST,SF,94123,B04,16,3352,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8006899587765, -122.430316559527)",133230010-55 -102690170,67,10085295,Medical Incident,09/26/2010,09/26/2010,09/26/2010 11:16:45 AM,09/26/2010 11:20:23 AM,09/26/2010 11:20:40 AM,09/26/2010 11:20:55 AM,09/26/2010 11:28:50 AM,09/26/2010 11:51:34 AM,09/26/2010 11:58:09 AM,Patient Declined Transport,09/26/2010 12:15:49 PM,4TH ST/HARRISON ST,SF,94107,B03,8,2216,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7807914830651, -122.399616233554)",102690170-67 -110420345,B09,11014042,Structure Fire,02/11/2011,02/11/2011,02/11/2011 07:24:35 PM,02/11/2011 07:25:17 PM,02/11/2011 07:25:28 PM,02/11/2011 07:27:00 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 07:31:47 PM,600 Block of MADRID ST,SF,94112,B09,43,6135,3,3,3,false,,1,CHIEF,9,9,11,Excelsior,"(37.7193135099129, -122.434630200737)",110420345-B09 -121930011,E38,12064112,Medical Incident,07/11/2012,07/10/2012,07/11/2012 12:49:52 AM,07/11/2012 12:50:33 AM,07/11/2012 12:50:59 AM,07/11/2012 12:53:04 AM,07/11/2012 12:55:24 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 01:02:29 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",121930011-E38 -160854012,55,16033993,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:24:43 PM,03/25/2016 10:28:11 PM,03/25/2016 10:28:34 PM,03/25/2016 10:31:17 PM,03/25/2016 10:42:33 PM,03/25/2016 11:10:16 PM,03/25/2016 11:21:12 PM,Code 2 Transport,03/26/2016 12:18:21 AM,500 Block of 29TH AVE,San Francisco,94121,B07,14,7226,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7789280620518, -122.489013594677)",160854012-55 -112460145,E12,11081080,Medical Incident,09/03/2011,09/03/2011,09/03/2011 10:57:54 AM,09/03/2011 10:58:20 AM,09/03/2011 10:58:38 AM,09/03/2011 10:59:30 AM,09/03/2011 11:01:21 AM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/03/2011 11:08:30 AM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,3,3,3,true,,1,ENGINE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",112460145-E12 -160052993,KM09,16002121,Medical Incident,01/05/2016,01/05/2016,01/05/2016 06:39:27 PM,01/05/2016 06:41:18 PM,01/05/2016 06:41:38 PM,01/05/2016 06:43:04 PM,01/05/2016 06:47:33 PM,01/05/2016 06:56:30 PM,01/05/2016 07:08:56 PM,Code 2 Transport,01/05/2016 07:32:20 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160052993-KM09 -132980102,89,13101135,Medical Incident,10/25/2013,10/25/2013,10/25/2013 09:14:14 AM,10/25/2013 09:16:36 AM,10/25/2013 09:16:47 AM,10/25/2013 09:16:57 AM,10/25/2013 09:21:08 AM,10/25/2013 09:40:51 AM,10/25/2013 10:08:02 AM,Code 2 Transport,10/25/2013 10:33:58 AM,100 Block of OTIS ST,SF,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",132980102-89 -160141760,67,16005568,Medical Incident,01/14/2016,01/14/2016,01/14/2016 12:55:00 PM,01/14/2016 12:55:52 PM,01/14/2016 12:56:23 PM,01/14/2016 12:56:35 PM,01/14/2016 01:02:18 PM,01/14/2016 01:35:42 PM,01/14/2016 01:42:48 PM,Code 2 Transport,01/14/2016 02:37:37 PM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160141760-67 -140340130,88,14011452,Medical Incident,02/03/2014,02/03/2014,02/03/2014 10:38:28 AM,02/03/2014 10:40:39 AM,02/03/2014 10:42:31 AM,02/03/2014 10:42:57 AM,02/03/2014 10:56:27 AM,02/03/2014 11:11:31 AM,02/03/2014 11:37:17 AM,Code 2 Transport,02/03/2014 11:58:26 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",140340130-88 -111650352,E41,11054578,Structure Fire,06/14/2011,06/14/2011,06/14/2011 08:20:07 PM,06/14/2011 08:20:09 PM,06/14/2011 08:20:52 PM,06/14/2011 08:21:35 PM,06/14/2011 08:23:16 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Fire,06/14/2011 08:24:04 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,false,,1,ENGINE,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",111650352-E41 -123140396,B03,12104676,Alarms,11/09/2012,11/09/2012,11/09/2012 11:29:54 PM,11/09/2012 11:32:08 PM,11/09/2012 11:32:24 PM,11/09/2012 11:34:38 PM,11/09/2012 11:37:24 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 11:44:31 PM,1600 Block of OWENS ST,SF,94158,B03,29,2414,3,3,3,false,Alarm,1,CHIEF,2,3,6,Mission Bay,"(37.7680699628929, -122.394293450332)",123140396-B03 -132040038,E18,13068987,Medical Incident,07/23/2013,07/22/2013,07/23/2013 05:28:23 AM,07/23/2013 05:30:21 AM,07/23/2013 05:31:04 AM,07/23/2013 05:33:32 AM,07/23/2013 05:36:00 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 05:40:03 AM,1800 Block of 26TH AVE,SF,94122,B08,18,7455,3,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7529746574641, -122.483978131849)",132040038-E18 -111230153,E01,11040600,Medical Incident,05/03/2011,05/03/2011,05/03/2011 10:47:46 AM,05/03/2011 10:50:57 AM,05/03/2011 10:51:18 AM,05/03/2011 10:52:09 AM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 11:00:30 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,E,E,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7820387146172, -122.40232147638)",111230153-E01 -103380124,93,10108085,Medical Incident,12/04/2010,12/04/2010,12/04/2010 09:03:12 AM,12/04/2010 09:07:06 AM,12/04/2010 09:08:11 AM,12/04/2010 09:08:59 AM,12/04/2010 09:12:51 AM,12/04/2010 09:27:08 AM,12/04/2010 09:32:18 AM,Code 2 Transport,12/04/2010 10:15:53 AM,1500 Block of FLORIDA ST,SF,94110,B06,9,5615,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7479396461948, -122.409678034048)",103380124-93 -120670382,B02,12022374,Gas Leak (Natural and LP Gases),03/07/2012,03/07/2012,03/07/2012 08:33:51 PM,03/07/2012 08:35:46 PM,03/07/2012 08:35:56 PM,03/07/2012 08:37:00 PM,03/07/2012 08:40:38 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Fire,03/07/2012 08:47:43 PM,1500 Block of OFARRELL ST,SF,94115,B04,5,3514,3,3,3,false,Alarm,1,CHIEF,3,4,5,Western Addition,"(37.7834972119133, -122.430603323889)",120670382-B02 -123280071,E07,12108994,Medical Incident,11/23/2012,11/22/2012,11/23/2012 07:17:00 AM,11/23/2012 07:18:04 AM,11/23/2012 07:18:23 AM,11/23/2012 07:20:46 AM,04/25/2016 01:55:40 PM,04/25/2016 01:55:40 PM,04/25/2016 01:55:40 PM,Other,11/23/2012 07:22:54 AM,1200 Block of TREAT AVE,SF,94110,B06,7,5533,3,3,3,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7501730752061, -122.412693892535)",123280071-E07 -160281106,75,16011027,Medical Incident,01/28/2016,01/28/2016,01/28/2016 10:03:41 AM,01/28/2016 10:05:18 AM,01/28/2016 10:05:37 AM,01/28/2016 10:05:48 AM,01/28/2016 10:08:49 AM,01/28/2016 10:29:46 AM,01/28/2016 10:53:04 AM,Code 2 Transport,01/28/2016 11:41:26 AM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160281106-75 -120020168,T19,12000725,Alarms,01/02/2012,01/02/2012,01/02/2012 01:45:05 PM,01/02/2012 01:46:23 PM,01/02/2012 01:47:10 PM,01/02/2012 01:50:41 PM,01/02/2012 01:50:50 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/02/2012 01:56:59 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",120020168-T19 -160283274,54,16011208,Medical Incident,01/28/2016,01/28/2016,01/28/2016 06:53:21 PM,01/28/2016 06:54:30 PM,01/28/2016 06:55:03 PM,01/28/2016 06:55:13 PM,01/28/2016 06:55:13 PM,01/28/2016 07:02:05 PM,01/28/2016 07:08:26 PM,Code 2 Transport,01/28/2016 07:27:33 PM,JONES ST/MARKET ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",160283274-54 -140980382,RS1,14033187,Structure Fire,04/08/2014,04/08/2014,04/08/2014 05:56:23 PM,04/08/2014 05:57:05 PM,04/08/2014 05:57:46 PM,04/08/2014 05:59:19 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Fire,04/08/2014 06:04:40 PM,2200 Block of LAKE ST,SAN FRANCISCO,94121,B07,14,7174,3,3,3,false,Alarm,1,RESCUE SQUAD,11,7,1,Outer Richmond,"(37.7857597027575, -122.483539028526)",140980382-RS1 -132500125,E37,13084350,Alarms,09/07/2013,09/07/2013,09/07/2013 09:39:18 AM,09/07/2013 09:40:39 AM,09/07/2013 09:40:45 AM,09/07/2013 09:42:35 AM,09/07/2013 09:44:44 AM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/07/2013 09:52:55 AM,800 Block of KANSAS ST,SF,94107,B10,37,2522,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7588485273625, -122.403043636357)",132500125-E37 -130500117,89,13016954,Medical Incident,02/19/2013,02/19/2013,02/19/2013 11:58:41 AM,02/19/2013 11:59:48 AM,02/19/2013 11:59:58 AM,02/19/2013 12:01:18 PM,02/19/2013 12:09:25 PM,02/19/2013 12:27:12 PM,02/19/2013 12:30:44 PM,Code 2 Transport,02/19/2013 01:12:39 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",130500117-89 -160213124,81,16008492,Medical Incident,01/21/2016,01/21/2016,01/21/2016 06:02:40 PM,01/21/2016 06:05:04 PM,01/21/2016 06:07:02 PM,01/21/2016 06:07:32 PM,01/21/2016 06:10:02 PM,01/21/2016 06:31:35 PM,01/21/2016 06:43:34 PM,Code 2 Transport,01/21/2016 07:19:54 PM,DIVISADERO ST/FULTON ST,San Francisco,94117,B05,21,4146,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7768558891973, -122.438177046242)",160213124-81 -160651975,AM02,16025960,Medical Incident,03/05/2016,03/05/2016,03/05/2016 02:40:33 PM,03/05/2016 02:41:09 PM,03/05/2016 02:41:36 PM,03/05/2016 02:42:29 PM,03/05/2016 02:46:05 PM,03/05/2016 03:00:29 PM,03/05/2016 03:15:01 PM,Code 2 Transport,03/05/2016 03:47:17 PM,1500 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7737629752818, -122.417960394107)",160651975-AM02 -110100354,E01,11003457,Medical Incident,01/10/2011,01/10/2011,01/10/2011 07:41:44 PM,01/10/2011 07:43:51 PM,01/10/2011 07:44:38 PM,01/10/2011 07:46:05 PM,01/10/2011 07:47:57 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/10/2011 07:58:24 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",110100354-E01 -122940236,E36,12097552,Structure Fire,10/20/2012,10/20/2012,10/20/2012 03:34:13 PM,10/20/2012 03:34:58 PM,10/20/2012 03:35:15 PM,10/20/2012 03:35:53 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 04:01:55 PM,700 Block of HAIGHT ST,SF,94117,B05,21,4142,3,3,3,true,Fire,1,ENGINE,7,5,5,Haight Ashbury,"(37.7715296499469, -122.434542909739)",122940236-E36 -120590326,66,12019546,Medical Incident,02/28/2012,02/28/2012,02/28/2012 08:17:31 PM,02/28/2012 08:17:56 PM,02/28/2012 08:18:11 PM,02/28/2012 08:18:35 PM,02/28/2012 08:20:08 PM,02/28/2012 08:44:04 PM,02/28/2012 08:55:36 PM,Code 3 Transport,02/28/2012 09:49:40 PM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",120590326-66 -160620148,75,16024537,Medical Incident,03/02/2016,03/01/2016,03/02/2016 01:21:50 AM,03/02/2016 01:23:46 AM,03/02/2016 01:23:59 AM,03/02/2016 01:24:03 AM,03/02/2016 01:27:40 AM,03/02/2016 01:51:38 AM,03/02/2016 01:55:37 AM,Code 2 Transport,03/02/2016 02:37:20 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160620148-75 -103220277,55,10103289,Medical Incident,11/18/2010,11/18/2010,11/18/2010 08:02:26 PM,11/18/2010 08:03:55 PM,11/18/2010 08:04:32 PM,11/18/2010 08:04:44 PM,11/18/2010 08:11:29 PM,11/18/2010 08:19:06 PM,11/18/2010 08:43:42 PM,Code 2 Transport,11/18/2010 09:06:12 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",103220277-55 -160260683,KM13,16010217,Medical Incident,01/26/2016,01/25/2016,01/26/2016 07:33:10 AM,01/26/2016 07:33:52 AM,01/26/2016 07:34:04 AM,01/26/2016 07:34:50 AM,01/26/2016 08:00:23 AM,01/26/2016 08:00:24 AM,01/26/2016 08:09:41 AM,Code 2 Transport,01/26/2016 08:33:13 AM,1500 Block of SUTTER ST,San Francisco,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",160260683-KM13 -160431308,73,16017248,Medical Incident,02/12/2016,02/12/2016,02/12/2016 10:58:34 AM,02/12/2016 10:59:42 AM,02/12/2016 10:59:48 AM,02/12/2016 11:00:16 AM,02/12/2016 11:14:55 AM,02/12/2016 11:29:39 AM,02/12/2016 11:35:59 AM,Code 2 Transport,02/12/2016 12:17:54 PM,2900 Block of FOLSOM ST,San Francisco,94110,B06,7,5614,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7500991052351, -122.41391717161)",160431308-73 -132290192,88,13077304,Medical Incident,08/17/2013,08/17/2013,08/17/2013 12:44:07 PM,08/17/2013 12:45:50 PM,08/17/2013 12:46:09 PM,08/17/2013 12:49:50 PM,08/17/2013 12:52:47 PM,08/17/2013 01:06:48 PM,08/17/2013 01:26:39 PM,Code 2 Transport,08/17/2013 01:49:07 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.781585403105, -122.423090188841)",132290192-88 -160170590,70,16006710,Medical Incident,01/17/2016,01/16/2016,01/17/2016 05:44:55 AM,01/17/2016 05:46:06 AM,01/17/2016 05:46:51 AM,01/17/2016 05:47:07 AM,01/17/2016 05:53:27 AM,01/17/2016 05:55:09 AM,01/17/2016 06:08:43 AM,Code 2 Transport,01/17/2016 06:34:25 AM,1000 Block of NOE ST,San Francisco,94114,B06,11,5522,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",160170590-70 -122050066,MA1,12068078,Structure Fire,07/23/2012,07/22/2012,07/23/2012 07:15:42 AM,07/23/2012 07:16:21 AM,07/23/2012 07:17:02 AM,07/23/2012 07:32:56 AM,07/23/2012 07:46:15 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/23/2012 08:11:53 AM,3300 Block of 26TH ST,SF,94110,B06,11,5613,3,3,3,false,Fire,2,SUPPORT,22,6,9,Mission,"(37.7492100327414, -122.416241794051)",122050066-MA1 -122730345,89,12090185,Medical Incident,09/29/2012,09/29/2012,09/29/2012 09:23:14 PM,09/29/2012 09:24:07 PM,09/29/2012 09:24:38 PM,09/29/2012 09:25:07 PM,09/29/2012 09:36:15 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,No Merit,09/29/2012 09:41:47 PM,100 Block of SERRANO DR,SF,94132,B08,19,8426,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7200426334367, -122.477542614396)",122730345-89 -102640238,T17,10083592,Structure Fire,09/21/2010,09/21/2010,09/21/2010 03:33:22 PM,09/21/2010 03:33:22 PM,09/21/2010 03:33:45 PM,09/21/2010 03:34:50 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 03:38:44 PM,VISITACION AV/SCHWERIN ST,SF,94134,B09,44,6257,3,3,3,false,,1,TRUCK,2,9,10,Visitacion Valley,"(37.7122062230511, -122.410640795976)",102640238-T17 -102930268,T03,10093511,Medical Incident,10/20/2010,10/20/2010,10/20/2010 04:40:28 PM,10/20/2010 04:40:56 PM,10/20/2010 04:41:44 PM,10/20/2010 04:42:40 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,04/25/2016 02:08:00 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102930268-T03 -122960050,93,12098038,Medical Incident,10/22/2012,10/21/2012,10/22/2012 06:00:18 AM,10/22/2012 06:01:20 AM,10/22/2012 06:01:29 AM,10/22/2012 06:01:37 AM,10/22/2012 06:08:29 AM,10/22/2012 06:38:02 AM,10/22/2012 07:10:04 AM,Code 2 Transport,10/22/2012 07:17:56 AM,0 Block of MADDUX AVE,SF,94124,B10,42,6446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7348036979308, -122.398206619816)",122960050-93 -140230089,E37,14007786,Medical Incident,01/23/2014,01/23/2014,01/23/2014 09:03:45 AM,01/23/2014 09:04:41 AM,01/23/2014 09:05:39 AM,01/23/2014 09:06:52 AM,01/23/2014 09:08:18 AM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/23/2014 09:18:53 AM,600 Block of DE HARO ST,SF,94107,B10,37,2511,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.761655083303, -122.401193113905)",140230089-E37 -160913305,53,16036224,Medical Incident,03/31/2016,03/31/2016,03/31/2016 07:55:20 PM,03/31/2016 07:55:57 PM,03/31/2016 07:56:06 PM,03/31/2016 07:56:53 PM,03/31/2016 08:01:28 PM,03/31/2016 08:23:39 PM,03/31/2016 08:57:36 PM,Code 2 Transport,03/31/2016 09:53:01 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160913305-53 -160503443,58,16020251,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:37:23 PM,02/19/2016 08:38:39 PM,02/19/2016 08:39:24 PM,02/19/2016 08:39:35 PM,02/19/2016 08:52:56 PM,02/19/2016 09:11:02 PM,02/19/2016 09:48:32 PM,Code 2 Transport,02/19/2016 10:03:55 PM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5417,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7610427981277, -122.433353754785)",160503443-58 -120580321,58,12019235,Medical Incident,02/27/2012,02/27/2012,02/27/2012 08:21:05 PM,02/27/2012 08:22:45 PM,02/27/2012 08:24:11 PM,02/27/2012 08:26:48 PM,02/27/2012 08:32:29 PM,02/27/2012 08:49:38 PM,02/27/2012 09:15:08 PM,Code 2 Transport,02/27/2012 09:28:46 PM,MISSION ST/19TH ST,SF,94110,B06,7,5433,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",120580321-58 -140320246,E02,14010895,Structure Fire,02/01/2014,02/01/2014,02/01/2014 04:09:34 PM,02/01/2014 04:09:34 PM,02/01/2014 04:09:42 PM,02/01/2014 04:10:39 PM,02/01/2014 04:12:31 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 04:12:43 PM,GRANT AV/JACKSON ST,SF,94133,B01,2,1312,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",140320246-E02 -130150064,B07,13005023,Alarms,01/15/2013,01/15/2013,01/15/2013 08:01:12 AM,01/15/2013 08:03:08 AM,01/15/2013 08:03:17 AM,01/15/2013 08:04:45 AM,01/15/2013 08:10:47 AM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,Fire,01/15/2013 08:11:18 AM,4100 Block of CLEMENT ST,SF,94121,B07,34,7266,3,3,3,false,Alarm,1,CHIEF,3,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",130150064-B07 -132180315,72,13073725,Medical Incident,08/06/2013,08/06/2013,08/06/2013 06:32:52 PM,08/06/2013 06:35:17 PM,08/06/2013 06:35:35 PM,08/06/2013 06:35:45 PM,08/06/2013 06:43:45 PM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Against Medical Advice,08/06/2013 07:24:04 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",132180315-72 -121270277,83,12042358,Structure Fire,05/06/2012,05/06/2012,05/06/2012 05:53:25 PM,05/06/2012 05:53:53 PM,05/06/2012 05:54:12 PM,05/06/2012 05:54:41 PM,04/25/2016 01:58:49 PM,04/25/2016 01:58:49 PM,04/25/2016 01:58:49 PM,Other,05/06/2012 06:02:12 PM,300 Block of HAYES ST,SF,94102,B02,36,3265,3,3,3,true,Fire,1,MEDIC,10,2,5,Hayes Valley,"(37.7769330032548, -122.422143452116)",121270277-83 -122180386,RC1,12072499,Medical Incident,08/05/2012,08/05/2012,08/05/2012 11:29:59 PM,08/05/2012 11:30:46 PM,08/05/2012 11:31:07 PM,08/05/2012 11:33:20 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 11:34:46 PM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,3,Nob Hill,"(37.7910106630521, -122.416733654434)",122180386-RC1 -160643150,AM10,16025632,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:36:26 PM,03/04/2016 06:37:25 PM,03/04/2016 06:38:04 PM,03/04/2016 06:38:38 PM,03/04/2016 06:48:30 PM,03/04/2016 07:16:21 PM,03/04/2016 07:23:55 PM,Code 2 Transport,03/04/2016 08:18:39 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160643150-AM10 -110700307,T09,11023121,Structure Fire,03/11/2011,03/11/2011,03/11/2011 06:25:47 PM,03/11/2011 06:25:47 PM,03/11/2011 06:26:14 PM,03/11/2011 06:27:11 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/11/2011 06:30:05 PM,22ND ST/3RD ST,SF,94107,B10,25,2533,3,3,3,false,,1,TRUCK,2,10,10,Potrero Hill,"(37.7579397061731, -122.388315530161)",110700307-T09 -160170915,85,16006756,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:17:20 AM,01/17/2016 09:17:20 AM,01/17/2016 09:17:56 AM,01/17/2016 09:18:23 AM,01/17/2016 09:23:01 AM,01/17/2016 09:33:18 AM,01/17/2016 09:43:09 AM,Code 2 Transport,01/17/2016 10:20:01 AM,300 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7678020825962, -122.422235792189)",160170915-85 -131180286,E01,13039784,Medical Incident,04/28/2013,04/28/2013,04/28/2013 05:46:46 PM,04/28/2013 05:47:17 PM,04/28/2013 05:48:00 PM,04/28/2013 05:49:08 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/25/2016 01:53:04 PM,4TH ST/MARKET ST,SF,94103,B03,1,1322,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",131180286-E01 -160592338,KM11,16023596,Medical Incident,02/28/2016,02/28/2016,02/28/2016 04:59:34 PM,02/28/2016 05:00:49 PM,02/28/2016 05:01:11 PM,02/28/2016 05:01:58 PM,02/28/2016 05:05:26 PM,02/28/2016 05:22:26 PM,02/28/2016 05:31:26 PM,Code 2 Transport,02/28/2016 06:05:12 PM,1300 Block of FILLMORE ST,San Francisco,94115,B05,5,3536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7818977107871, -122.432353853525)",160592338-KM11 -122020025,E36,12066976,Medical Incident,07/20/2012,07/19/2012,07/20/2012 01:37:45 AM,07/20/2012 01:38:58 AM,07/20/2012 01:39:13 AM,07/20/2012 01:40:48 AM,07/20/2012 01:44:12 AM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 01:51:43 AM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",122020025-E36 -160233488,55,16009334,Medical Incident,01/23/2016,01/23/2016,01/23/2016 09:24:30 PM,01/23/2016 09:26:38 PM,01/23/2016 09:26:50 PM,01/23/2016 09:27:05 PM,01/23/2016 09:36:11 PM,01/23/2016 09:54:48 PM,01/23/2016 10:09:57 PM,Code 2 Transport,01/23/2016 10:35:51 PM,400 Block of 2ND AVE,San Francisco,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.780251191916, -122.459860923031)",160233488-55 -122760266,KM12,12091189,Medical Incident,10/02/2012,10/02/2012,10/02/2012 02:34:50 PM,10/02/2012 02:35:43 PM,10/02/2012 02:37:54 PM,10/02/2012 02:38:23 PM,10/02/2012 02:45:20 PM,10/02/2012 02:54:55 PM,10/02/2012 03:03:59 PM,Code 3 Transport,10/02/2012 03:44:41 PM,2400 Block of 23RD AVE,SF,94116,B08,40,7442,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7419253653114, -122.479981752509)",122760266-KM12 -113080135,E38,11102279,Medical Incident,11/04/2011,11/04/2011,11/04/2011 10:26:03 AM,11/04/2011 10:28:25 AM,11/04/2011 10:29:12 AM,11/04/2011 10:29:31 AM,11/04/2011 10:31:46 AM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/04/2011 10:31:51 AM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,3,3,3,false,,1,ENGINE,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",113080135-E38 -160253866,63,16010140,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:12:26 PM,01/25/2016 11:13:46 PM,01/25/2016 11:13:59 PM,01/25/2016 11:14:44 PM,01/25/2016 11:17:59 PM,01/26/2016 12:32:55 AM,01/26/2016 12:48:47 AM,Code 3 Transport,01/26/2016 02:01:52 AM,200 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7671990407506, -122.424452084295)",160253866-63 -140660014,RC1,14022167,Medical Incident,03/07/2014,03/06/2014,03/07/2014 01:00:30 AM,03/07/2014 01:02:54 AM,03/07/2014 01:03:08 AM,03/07/2014 01:03:17 AM,03/07/2014 01:07:45 AM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Code 2 Transport,03/07/2014 01:12:06 AM,600 Block of POLK ST,SAN FRANCISCO,94102,B02,3,3114,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",140660014-RC1 -110530272,E15,11017586,Medical Incident,02/22/2011,02/22/2011,02/22/2011 05:14:49 PM,02/22/2011 05:15:47 PM,02/22/2011 05:16:13 PM,02/22/2011 05:17:45 PM,02/22/2011 05:21:38 PM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Other,02/22/2011 05:47:14 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",110530272-E15 -160221571,61,16008759,Medical Incident,01/22/2016,01/22/2016,01/22/2016 12:10:45 PM,01/22/2016 12:11:40 PM,01/22/2016 12:12:35 PM,01/22/2016 12:17:41 PM,01/22/2016 12:17:41 PM,01/22/2016 12:45:01 PM,01/22/2016 01:01:08 PM,Code 2 Transport,01/22/2016 01:39:53 PM,800 Block of BRANNAN ST,San Francisco,94103,B03,29,2325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7722126507146, -122.404363751305)",160221571-61 -112600164,E41,11085726,Medical Incident,09/17/2011,09/17/2011,09/17/2011 11:26:33 AM,09/17/2011 11:29:48 AM,09/17/2011 11:30:23 AM,09/17/2011 11:32:01 AM,09/17/2011 11:35:07 AM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 11:36:11 AM,2000 Block of FRANKLIN ST,SF,94109,B04,38,3226,E,E,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.7932922930477, -122.424537680646)",112600164-E41 -112350385,T03,11077718,Structure Fire,08/23/2011,08/23/2011,08/23/2011 09:24:43 PM,08/23/2011 09:24:43 PM,08/23/2011 09:25:30 PM,08/23/2011 09:26:39 PM,08/23/2011 09:27:52 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/23/2011 09:28:27 PM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",112350385-T03 -132590225,KM04,13087644,Medical Incident,09/16/2013,09/16/2013,09/16/2013 02:06:39 PM,09/16/2013 02:06:39 PM,09/16/2013 02:06:50 PM,04/25/2016 01:50:45 PM,09/16/2013 02:08:45 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Fire,09/16/2013 02:19:38 PM,STEVENSON ST/7TH ST,SF,94103,B02,36,2316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",132590225-KM04 -123140258,E03,12104552,Citizen Assist / Service Call,11/09/2012,11/09/2012,11/09/2012 04:05:27 PM,11/09/2012 04:06:26 PM,11/09/2012 04:06:45 PM,11/09/2012 04:08:20 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,04/25/2016 01:55:52 PM,1400 Block of FRANKLIN ST,SF,94109,B04,3,3223,3,3,3,true,Alarm,1,ENGINE,1,4,2,Western Addition,"(37.7880511870399, -122.423477689614)",123140258-E03 -160281742,82,16011081,Medical Incident,01/28/2016,01/28/2016,01/28/2016 12:50:14 PM,01/28/2016 12:52:23 PM,01/28/2016 12:52:54 PM,01/28/2016 12:54:58 PM,01/28/2016 01:07:05 PM,01/28/2016 01:38:10 PM,01/28/2016 01:46:54 PM,Code 2 Transport,01/28/2016 02:39:27 PM,100 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7729000896445, -122.424646169194)",160281742-82 -160212292,KM05,16008438,Medical Incident,01/21/2016,01/21/2016,01/21/2016 03:03:07 PM,01/21/2016 03:03:47 PM,01/21/2016 03:04:39 PM,01/21/2016 03:06:05 PM,01/21/2016 03:14:41 PM,01/21/2016 03:14:56 PM,01/21/2016 03:53:00 PM,Code 2 Transport,01/21/2016 04:41:37 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160212292-KM05 -120150180,T03,12005099,Other,01/15/2012,01/15/2012,01/15/2012 01:22:26 PM,01/15/2012 01:22:53 PM,01/15/2012 01:22:58 PM,01/15/2012 01:23:57 PM,01/15/2012 01:28:46 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Fire,01/15/2012 01:49:17 PM,3400 Block of CALIFORNIA ST,SF,94118,B07,10,4431,3,3,3,false,Alarm,1,TRUCK,1,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",120150180-T03 -160473145,83,16019065,Medical Incident,02/16/2016,02/16/2016,02/16/2016 06:50:09 PM,02/16/2016 06:50:20 PM,02/16/2016 06:50:39 PM,02/16/2016 06:51:09 PM,02/16/2016 06:57:56 PM,02/16/2016 07:10:34 PM,02/16/2016 07:39:10 PM,Code 2 Transport,02/16/2016 08:14:55 PM,100 Block of MOFFITT ST,San Francisco,94131,B06,26,8152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7370707422577, -122.432876744063)",160473145-83 -140780003,E01,14026245,Structure Fire,03/19/2014,03/18/2014,03/19/2014 12:08:36 AM,03/19/2014 12:09:52 AM,03/19/2014 12:10:13 AM,03/19/2014 12:11:47 AM,03/19/2014 12:15:12 AM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Code 2 Transport,03/19/2014 01:09:42 AM,300 Block of TAYLOR ST,SAN FRANCISCO,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",140780003-E01 -130970176,B01,13032527,Alarms,04/07/2013,04/07/2013,04/07/2013 12:28:26 PM,04/07/2013 12:29:19 PM,04/07/2013 12:29:31 PM,04/07/2013 12:31:21 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Fire,04/07/2013 12:41:45 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7979051468547, -122.410291496741)",130970176-B01 -110620083,AM06,11020295,Medical Incident,03/03/2011,03/03/2011,03/03/2011 08:57:10 AM,03/03/2011 08:59:02 AM,03/03/2011 09:01:05 AM,04/25/2016 02:05:49 PM,03/03/2011 09:25:05 AM,03/03/2011 09:49:07 AM,03/03/2011 10:19:48 AM,Code 2 Transport,03/03/2011 11:24:07 AM,LOMBARD ST/BRODERICK ST,SF,94123,B04,16,4223,3,3,3,false,,1,PRIVATE,2,4,2,Marina,"(37.7987902446741, -122.444318619211)",110620083-AM06 -160163601,83,16006609,Medical Incident,01/16/2016,01/16/2016,01/16/2016 10:02:51 PM,01/16/2016 10:05:25 PM,01/16/2016 10:07:40 PM,01/16/2016 10:07:49 PM,01/16/2016 10:20:42 PM,01/16/2016 10:38:54 PM,01/16/2016 10:45:12 PM,Code 2 Transport,01/16/2016 11:23:15 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160163601-83 -160820420,93,16032463,Medical Incident,03/22/2016,03/21/2016,03/22/2016 06:10:21 AM,03/22/2016 06:12:18 AM,03/22/2016 06:12:36 AM,03/22/2016 06:12:45 AM,03/22/2016 06:21:31 AM,03/22/2016 06:38:33 AM,03/22/2016 06:56:13 AM,Code 2 Transport,03/22/2016 07:30:51 AM,400 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7807728096562, -122.407018493217)",160820420-93 -111660354,B04,11054940,Structure Fire,06/15/2011,06/15/2011,06/15/2011 09:11:00 PM,06/15/2011 09:12:14 PM,06/15/2011 09:12:40 PM,06/15/2011 09:14:09 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/15/2011 09:18:16 PM,100 Block of FRANKLIN ST,SF,94102,B02,36,3213,3,3,3,false,,1,CHIEF,8,2,5,Hayes Valley,"(37.7759358319818, -122.421032543678)",111660354-B04 -133590215,T12,13122081,Alarms,12/25/2013,12/25/2013,12/25/2013 03:14:40 PM,12/25/2013 03:15:33 PM,12/25/2013 03:16:08 PM,12/25/2013 03:17:52 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/25/2013 03:22:45 PM,1500 Block of 35TH AVE,SF,94122,B08,18,7563,3,3,3,false,Alarm,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7581403111983, -122.49401278695)",133590215-T12 -160812317,58,16032239,Medical Incident,03/21/2016,03/21/2016,03/21/2016 03:21:02 PM,03/21/2016 03:23:33 PM,03/21/2016 03:23:48 PM,03/21/2016 03:23:59 PM,03/21/2016 03:31:17 PM,03/21/2016 03:37:43 PM,03/21/2016 03:58:06 PM,Code 2 Transport,03/21/2016 04:08:50 PM,1900 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160812317-58 -121140223,E07,12037872,Medical Incident,04/23/2012,04/23/2012,04/23/2012 03:06:42 PM,04/23/2012 03:07:13 PM,04/23/2012 03:07:24 PM,04/23/2012 03:08:17 PM,04/23/2012 03:11:10 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 03:28:07 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",121140223-E07 -112030043,77,11066903,Medical Incident,07/22/2011,07/21/2011,07/22/2011 02:34:55 AM,07/22/2011 02:35:41 AM,07/22/2011 02:36:31 AM,07/22/2011 02:36:36 AM,07/22/2011 02:40:07 AM,04/25/2016 02:03:33 PM,04/25/2016 02:03:33 PM,Patient Declined Transport,07/22/2011 03:06:27 AM,CAMPTON PL/STOCKTON ST,SF,94108,B01,1,1324,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7889862925464, -122.406865030473)",112030043-77 -121410175,E21,12046837,Structure Fire,05/20/2012,05/20/2012,05/20/2012 12:12:25 PM,05/20/2012 12:12:25 PM,05/20/2012 12:12:33 PM,05/20/2012 12:13:21 PM,05/20/2012 12:16:29 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Fire,05/20/2012 12:17:06 PM,DIVISADERO ST/PAGE ST,SF,94117,B05,21,4144,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",121410175-E21 -160770585,89,16030465,Medical Incident,03/17/2016,03/16/2016,03/17/2016 07:20:51 AM,03/17/2016 07:20:51 AM,03/17/2016 07:23:32 AM,03/17/2016 07:23:42 AM,03/17/2016 07:35:26 AM,03/17/2016 07:55:31 AM,03/17/2016 08:15:43 AM,Code 2 Transport,03/17/2016 09:02:30 AM,1800 Block of CHESTNUT ST,San Francisco,94123,B04,16,3445,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8010769361014, -122.433769037511)",160770585-89 -122880243,E13,12095335,Medical Incident,10/14/2012,10/14/2012,10/14/2012 04:19:20 PM,10/14/2012 04:20:45 PM,10/14/2012 04:21:06 PM,10/14/2012 04:21:59 PM,10/14/2012 04:24:43 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 04:30:22 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,3,1,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7896050522565, -122.403725876784)",122880243-E13 -122830178,96,12093644,Medical Incident,10/09/2012,10/09/2012,10/09/2012 01:11:08 PM,10/09/2012 01:12:39 PM,10/09/2012 01:13:09 PM,10/09/2012 01:13:34 PM,10/09/2012 01:24:29 PM,10/09/2012 01:37:54 PM,10/09/2012 01:47:01 PM,Code 2 Transport,10/09/2012 02:18:35 PM,400 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",122830178-96 -122040376,E17,12067977,Outside Fire,07/22/2012,07/22/2012,07/22/2012 08:59:43 PM,07/22/2012 09:01:17 PM,07/22/2012 09:02:20 PM,07/22/2012 09:03:20 PM,07/22/2012 09:05:51 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Fire,07/22/2012 09:21:39 PM,OSCEOLA LN/LA SALLE AV,SF,94124,B10,17,6622,3,3,3,true,Fire,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324340245393, -122.383803252037)",122040376-E17 -121910029,E02,12063463,Medical Incident,07/09/2012,07/08/2012,07/09/2012 03:22:30 AM,07/09/2012 03:24:08 AM,07/09/2012 03:25:07 AM,07/09/2012 03:26:38 AM,07/09/2012 03:29:04 AM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 03:38:01 AM,500 Block of BATTERY ST,SF,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7963165979031, -122.40065165037)",121910029-E02 -122960184,T10,12098148,Alarms,10/22/2012,10/22/2012,10/22/2012 12:56:01 PM,10/22/2012 12:57:38 PM,10/22/2012 12:58:09 PM,10/22/2012 12:59:43 PM,10/22/2012 01:01:56 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 01:03:27 PM,2000 Block of LYON ST,SF,94115,B04,10,4335,3,3,3,false,Alarm,1,TRUCK,1,4,2,Pacific Heights,"(37.7896922052437, -122.445777560087)",122960184-T10 -121350009,T01,12044753,Alarms,05/14/2012,05/13/2012,05/14/2012 12:55:17 AM,05/14/2012 12:55:17 AM,05/14/2012 12:55:35 AM,05/14/2012 01:00:25 AM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Fire,05/14/2012 01:00:54 AM,0 Block of GRANT AVE,SF,94108,B01,1,1321,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7871853698326, -122.404995219077)",121350009-T01 -123100280,55,12103207,Traffic Collision,11/05/2012,11/05/2012,11/05/2012 05:30:41 PM,11/05/2012 05:31:31 PM,11/05/2012 05:31:48 PM,04/25/2016 01:55:56 PM,11/05/2012 05:44:38 PM,11/05/2012 05:50:04 PM,11/05/2012 06:22:20 PM,Code 2 Transport,11/05/2012 06:28:52 PM,BROTHERHOOD WY/ARCH ST,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7124218732149, -122.467072688577)",123100280-55 -133310030,KM07,13112244,Medical Incident,11/27/2013,11/26/2013,11/27/2013 02:26:59 AM,11/27/2013 02:28:52 AM,11/27/2013 02:29:18 AM,11/27/2013 02:29:51 AM,11/27/2013 02:39:04 AM,11/27/2013 02:43:41 AM,11/27/2013 03:00:42 AM,Code 2 Transport,11/27/2013 03:29:49 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",133310030-KM07 -113560438,AM14,11118415,Traffic Collision,12/22/2011,12/22/2011,12/22/2011 11:37:28 PM,12/22/2011 11:37:37 PM,12/22/2011 11:39:38 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 11:40:30 PM,KEZAR DR/LINCOLN WY,SF,94122,B05,12,7321,2,2,2,false,,1,PRIVATE,3,7,5,Golden Gate Park,"(37.766348841086, -122.459931486887)",113560438-AM14 -140900199,E03,14030310,Odor (Strange / Unknown),03/31/2014,03/31/2014,03/31/2014 02:06:25 PM,03/31/2014 02:08:32 PM,03/31/2014 02:09:09 PM,03/31/2014 02:10:29 PM,03/31/2014 02:13:09 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Fire,03/31/2014 02:24:14 PM,500 Block of GEARY ST,SAN FRANCISCO,94102,B01,3,1462,3,3,3,true,Alarm,1,ENGINE,1,1,6,Tenderloin,"(37.786727898565, -122.412739888549)",140900199-E03 -110440142,59,11014594,Medical Incident,02/13/2011,02/13/2011,02/13/2011 10:52:51 AM,02/13/2011 10:53:41 AM,02/13/2011 10:54:29 AM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 11:02:21 AM,0 Block of LIBERTY ST,SF,94110,B06,7,5456,E,E,3,true,,1,MEDIC,3,6,8,Mission,"(37.7575809773167, -122.422275311384)",110440142-59 -140160275,65,14005548,Medical Incident,01/16/2014,01/16/2014,01/16/2014 04:21:51 PM,01/16/2014 04:22:58 PM,01/16/2014 04:25:43 PM,01/16/2014 04:25:43 PM,01/16/2014 04:29:39 PM,01/16/2014 04:48:26 PM,01/16/2014 05:16:56 PM,Code 2 Transport,01/16/2014 05:26:00 PM,700 Block of CHESTNUT ST,SF,94133,B01,28,1515,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.8034994679895, -122.415704043223)",140160275-65 -103510351,KM01,10112742,Medical Incident,12/17/2010,12/17/2010,12/17/2010 08:12:38 PM,12/17/2010 08:14:02 PM,12/17/2010 08:14:39 PM,12/17/2010 08:14:49 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,Other,12/17/2010 08:25:42 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7840781681969, -122.41852472124)",103510351-KM01 -160752227,86,16029755,Medical Incident,03/15/2016,03/15/2016,03/15/2016 02:43:06 PM,03/15/2016 02:45:34 PM,03/15/2016 02:45:48 PM,03/15/2016 02:45:57 PM,03/15/2016 03:14:33 PM,03/15/2016 03:29:55 PM,03/15/2016 03:53:18 PM,Code 2 Transport,03/15/2016 04:40:49 PM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",160752227-86 -140690082,AM04,14023207,Medical Incident,03/10/2014,03/10/2014,03/10/2014 08:39:00 AM,03/10/2014 08:39:53 AM,03/10/2014 08:40:18 AM,03/10/2014 08:41:28 AM,03/10/2014 08:47:02 AM,03/10/2014 08:56:28 AM,03/10/2014 09:15:36 AM,Code 2 Transport,03/10/2014 09:50:29 AM,2000 Block of VAN NESS AVE,SAN FRANCISCO,94109,B04,41,3153,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7943544378215, -122.423308835651)",140690082-AM04 -110650226,T01,11021487,Alarms,03/06/2011,03/06/2011,03/06/2011 01:58:14 PM,03/06/2011 02:00:26 PM,03/06/2011 02:00:31 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,Other,04/25/2016 02:05:45 PM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,3,3,false,,1,TRUCK,2,2,6,Mission,"(37.772123277472, -122.416667284185)",110650226-T01 -160402379,76,16016103,Medical Incident,02/09/2016,02/09/2016,02/09/2016 03:29:58 PM,02/09/2016 03:30:51 PM,02/09/2016 03:34:10 PM,02/09/2016 03:35:46 PM,02/09/2016 03:35:46 PM,02/09/2016 03:52:41 PM,02/09/2016 04:03:38 PM,Code 2 Transport,02/09/2016 04:33:40 PM,24TH ST/VALENCIA ST,San Francisco,94110,B06,11,5525,2,3,3,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7521036457482, -122.420664802284)",160402379-76 -160821653,54,16032550,Medical Incident,03/22/2016,03/22/2016,03/22/2016 12:18:56 PM,03/22/2016 12:20:51 PM,03/22/2016 12:21:04 PM,03/22/2016 12:21:15 PM,03/22/2016 12:24:42 PM,03/22/2016 01:01:16 PM,03/22/2016 01:30:22 PM,Code 2 Transport,03/22/2016 02:10:34 PM,0 Block of RIZAL ST,San Francisco,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.781822111031, -122.399291985556)",160821653-54 -113050064,T17,11101175,Alarms,11/01/2011,10/31/2011,11/01/2011 04:26:49 AM,11/01/2011 04:28:09 AM,11/01/2011 04:28:26 AM,11/01/2011 04:31:03 AM,11/01/2011 04:37:29 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 04:37:58 AM,2200 Block of BAY SHORE BLVD,SF,94134,B10,44,6255,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7116826340704, -122.403060940712)",113050064-T17 -160890867,AM02,16035250,Medical Incident,03/29/2016,03/29/2016,03/29/2016 08:52:26 AM,03/29/2016 08:53:32 AM,03/29/2016 08:54:16 AM,03/29/2016 08:54:59 AM,03/29/2016 08:59:20 AM,03/29/2016 09:32:13 AM,03/29/2016 09:44:00 AM,Code 2 Transport,03/29/2016 10:19:59 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160890867-AM02 -112940317,E28,11097630,Medical Incident,10/21/2011,10/21/2011,10/21/2011 07:11:48 PM,10/21/2011 07:12:50 PM,10/21/2011 07:13:05 PM,10/21/2011 07:14:10 PM,10/21/2011 07:17:16 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 07:24:14 PM,JONES ST/BEACH ST,SF,94133,B01,28,1521,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8070725139897, -122.417260632444)",112940317-E28 -160332799,63,16013100,Medical Incident,02/02/2016,02/02/2016,02/02/2016 06:21:37 PM,02/02/2016 06:25:10 PM,02/02/2016 06:25:20 PM,02/02/2016 06:25:29 PM,02/02/2016 06:33:29 PM,02/02/2016 06:46:34 PM,02/02/2016 06:52:57 PM,Code 2 Transport,02/02/2016 07:21:03 PM,3800 Block of 18TH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",160332799-63 -102260315,64,10071265,Medical Incident,08/14/2010,08/14/2010,08/14/2010 08:53:23 PM,08/14/2010 08:55:07 PM,08/14/2010 08:56:08 PM,08/14/2010 08:56:27 PM,08/14/2010 08:59:36 PM,08/14/2010 09:18:31 PM,08/14/2010 09:44:11 PM,Code 2 Transport,08/14/2010 09:59:29 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",102260315-64 -132150175,66,13072599,Medical Incident,08/03/2013,08/03/2013,08/03/2013 12:11:02 PM,08/03/2013 12:11:57 PM,08/03/2013 12:12:17 PM,08/03/2013 12:12:39 PM,08/03/2013 12:15:31 PM,08/03/2013 12:28:42 PM,08/03/2013 01:12:35 PM,Code 2 Transport,08/03/2013 01:49:30 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",132150175-66 -160154026,63,16006201,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:45:29 PM,01/15/2016 10:47:21 PM,01/15/2016 10:47:58 PM,01/15/2016 10:48:12 PM,01/15/2016 11:13:03 PM,01/15/2016 11:13:34 PM,01/15/2016 11:35:08 PM,Code 2 Transport,01/16/2016 12:21:30 AM,1400 Block of REVERE AVE,San Francisco,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7300297211845, -122.387395567373)",160154026-63 -130220079,RC3,13007503,Traffic Collision,01/22/2013,01/22/2013,01/22/2013 08:01:57 AM,01/22/2013 08:05:43 AM,01/22/2013 08:08:55 AM,01/22/2013 08:11:44 AM,01/22/2013 08:22:24 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/22/2013 09:19:18 AM,0 Block of SCHWERIN ST,SF,94134,B09,44,625,3,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,9,10,Visitacion Valley,"(37.7127368731615, -122.410330435128)",130220079-RC3 -121630211,KM04,12054060,Medical Incident,06/11/2012,06/11/2012,06/11/2012 01:55:24 PM,06/11/2012 01:56:28 PM,06/11/2012 01:56:46 PM,06/11/2012 01:57:21 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Patient Declined Transport,06/11/2012 02:34:37 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.8006947037442, -122.436775838314)",121630211-KM04 -140430057,E22,14014512,Structure Fire,02/12/2014,02/11/2014,02/12/2014 07:04:31 AM,02/12/2014 07:04:31 AM,02/12/2014 07:04:47 AM,02/12/2014 07:05:34 AM,02/12/2014 07:07:56 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/12/2014 07:08:18 AM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",140430057-E22 -132170041,E02,13073192,Medical Incident,08/05/2013,08/04/2013,08/05/2013 03:52:47 AM,08/05/2013 03:56:02 AM,08/05/2013 03:56:53 AM,08/05/2013 03:58:53 AM,08/05/2013 04:01:12 AM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/05/2013 04:04:36 AM,COLUMBUS AV/LOMBARD ST,SF,94133,B01,28,1435,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8027432009748, -122.413718749936)",132170041-E02 -102240139,AM06,10070520,Medical Incident,08/12/2010,08/12/2010,08/12/2010 11:13:38 AM,08/12/2010 11:14:46 AM,08/12/2010 11:15:15 AM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,04/25/2016 02:09:07 PM,Other,04/25/2016 02:09:07 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,false,,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",102240139-AM06 -160282009,85,16011109,Medical Incident,01/28/2016,01/28/2016,01/28/2016 01:59:11 PM,01/28/2016 02:01:14 PM,01/28/2016 02:05:26 PM,01/28/2016 02:05:36 PM,01/28/2016 02:38:15 PM,01/28/2016 02:38:18 PM,01/28/2016 03:03:43 PM,Code 2 Transport,01/28/2016 04:00:50 PM,1000 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6613,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",160282009-85 -123310262,RS1,12110080,Medical Incident,11/26/2012,11/26/2012,11/26/2012 03:22:46 PM,11/26/2012 03:23:11 PM,11/26/2012 03:23:34 PM,11/26/2012 03:25:27 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 03:33:15 PM,500 Block of STEVENSON ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7809266852586, -122.410870424137)",123310262-RS1 -123460229,T05,12115740,Alarms,12/11/2012,12/11/2012,12/11/2012 01:54:03 PM,12/11/2012 01:56:02 PM,12/11/2012 01:56:27 PM,12/11/2012 01:57:52 PM,12/11/2012 01:59:57 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 02:05:03 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",123460229-T05 -140270303,E41,14009306,Medical Incident,01/27/2014,01/27/2014,01/27/2014 07:02:58 PM,01/27/2014 07:05:01 PM,01/27/2014 07:05:44 PM,01/27/2014 07:06:58 PM,01/27/2014 07:07:53 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/27/2014 07:23:18 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",140270303-E41 -160042258,79,16001651,Medical Incident,01/04/2016,01/04/2016,01/04/2016 03:14:41 PM,01/04/2016 03:16:13 PM,01/04/2016 03:16:38 PM,01/04/2016 03:16:50 PM,01/04/2016 03:21:05 PM,01/04/2016 03:50:51 PM,01/04/2016 04:05:58 PM,Code 2 Transport,01/04/2016 04:36:16 PM,16TH ST/POTRERO AV,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",160042258-79 -121060055,E33,12035022,Medical Incident,04/15/2012,04/14/2012,04/15/2012 03:29:15 AM,04/15/2012 03:30:11 AM,04/15/2012 03:30:20 AM,04/15/2012 03:32:04 AM,04/15/2012 03:34:33 AM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Other,04/15/2012 03:39:36 AM,200 Block of MONTANA ST,SF,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7165269181456, -122.461422911465)",121060055-E33 -121600026,RC3,12052793,Medical Incident,06/08/2012,06/07/2012,06/08/2012 02:12:24 AM,06/08/2012 02:12:24 AM,06/08/2012 02:13:06 AM,06/08/2012 02:15:23 AM,06/08/2012 02:18:18 AM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/08/2012 02:33:05 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7650513381945, -122.419668973861)",121600026-RC3 -123200072,78,12106297,Medical Incident,11/15/2012,11/15/2012,11/15/2012 08:42:17 AM,11/15/2012 08:43:14 AM,11/15/2012 08:43:26 AM,11/15/2012 08:43:33 AM,11/15/2012 08:49:59 AM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Against Medical Advice,11/15/2012 09:20:02 AM,1900 Block of TURK ST,SF,94115,B05,21,4255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Western Addition,"(37.7794555627999, -122.440688868912)",123200072-78 -122730112,E03,12089980,Structure Fire,09/29/2012,09/29/2012,09/29/2012 08:48:52 AM,09/29/2012 08:48:52 AM,09/29/2012 08:48:59 AM,09/29/2012 08:49:35 AM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/29/2012 08:52:39 AM,GRANT AV/POST ST,SF,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",122730112-E03 -131330287,75,13044941,Medical Incident,05/13/2013,05/13/2013,05/13/2013 04:33:01 PM,05/13/2013 04:34:25 PM,05/13/2013 04:37:08 PM,05/13/2013 04:37:08 PM,05/13/2013 04:47:50 PM,05/13/2013 05:08:59 PM,05/13/2013 05:28:38 PM,Code 2 Transport,05/13/2013 05:44:09 PM,3200 Block of INGALLS ST,SF,94124,B10,44,6575,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7187685722727, -122.393206912421)",131330287-75 -133380196,AM02,13114564,Medical Incident,12/04/2013,12/04/2013,12/04/2013 02:05:16 PM,12/04/2013 02:07:44 PM,12/04/2013 02:08:04 PM,12/04/2013 02:08:32 PM,12/04/2013 02:23:10 PM,12/04/2013 02:26:38 PM,12/04/2013 03:18:55 PM,Code 2 Transport,12/04/2013 03:19:29 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.78026973391, -122.406390271833)",133380196-AM02 -111040334,99,11034606,Medical Incident,04/14/2011,04/14/2011,04/14/2011 10:12:29 PM,04/14/2011 10:13:47 PM,04/14/2011 10:15:07 PM,04/14/2011 10:15:37 PM,04/14/2011 10:21:52 PM,04/14/2011 10:37:05 PM,04/14/2011 10:47:41 PM,Code 2 Transport,04/14/2011 11:16:36 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111040334-99 -160631762,63,16025068,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:57:43 PM,03/03/2016 12:59:49 PM,03/03/2016 01:00:24 PM,03/03/2016 01:00:39 PM,03/03/2016 01:03:25 PM,03/03/2016 01:10:53 PM,03/03/2016 01:20:08 PM,Code 2 Transport,03/03/2016 01:37:05 PM,1600 Block of PINE ST,San Francisco,94109,B04,38,3224,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",160631762-63 -110480034,60,11015753,Medical Incident,02/17/2011,02/16/2011,02/17/2011 05:04:19 AM,02/17/2011 05:07:51 AM,02/17/2011 05:08:04 AM,02/17/2011 05:08:23 AM,02/17/2011 05:12:27 AM,02/17/2011 05:36:24 AM,02/17/2011 05:36:29 AM,Code 2 Transport,02/17/2011 06:04:05 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",110480034-60 -110880268,84,11029117,Medical Incident,03/29/2011,03/29/2011,03/29/2011 04:15:11 PM,03/29/2011 04:17:04 PM,03/29/2011 04:17:31 PM,03/29/2011 04:20:19 PM,03/29/2011 04:21:11 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 04:21:27 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",110880268-84 -160671863,KM01,16026782,Medical Incident,03/07/2016,03/07/2016,03/07/2016 02:29:43 PM,03/07/2016 02:30:06 PM,03/07/2016 02:31:14 PM,03/07/2016 02:32:01 PM,03/07/2016 02:44:04 PM,03/07/2016 02:55:29 PM,03/07/2016 03:34:51 PM,Code 2 Transport,03/07/2016 04:05:37 PM,200 Block of MONTEREY BLVD,San Francisco,94131,B09,26,8214,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7316806819241, -122.440884413372)",160671863-KM01 -140360061,E03,14012111,Traffic Collision,02/05/2014,02/04/2014,02/05/2014 07:33:03 AM,02/05/2014 07:33:51 AM,02/05/2014 07:34:14 AM,02/05/2014 07:36:12 AM,02/05/2014 07:37:40 AM,02/05/2014 07:49:34 AM,02/05/2014 08:02:58 AM,Other,02/05/2014 08:17:43 AM,OFARRELL ST/LEAVENWORTH ST,SF,94109,B04,3,1544,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",140360061-E03 -110220018,RS1,11007133,Medical Incident,01/22/2011,01/21/2011,01/22/2011 12:50:53 AM,01/22/2011 12:51:28 AM,01/22/2011 12:52:17 AM,01/22/2011 12:53:37 AM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/22/2011 12:56:08 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,false,,1,RESCUE SQUAD,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110220018-RS1 -131620179,88,13055036,Medical Incident,06/11/2013,06/11/2013,06/11/2013 01:19:47 PM,06/11/2013 01:20:52 PM,06/11/2013 01:21:07 PM,06/11/2013 01:21:23 PM,06/11/2013 01:29:41 PM,06/11/2013 01:56:09 PM,06/11/2013 02:13:10 PM,Code 2 Transport,06/11/2013 02:47:07 PM,600 Block of 45TH AVE,SF,94121,B07,34,7273,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7762535401496, -122.506022206848)",131620179-88 -112890195,T08,11095886,Structure Fire,10/16/2011,10/16/2011,10/16/2011 01:39:35 PM,10/16/2011 01:39:36 PM,10/16/2011 01:40:04 PM,10/16/2011 01:41:23 PM,10/16/2011 01:44:31 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 01:49:14 PM,800 Block of HARRISON ST,SF,94107,B03,8,221,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7799507434806, -122.400778586916)",112890195-T08 -132620186,E03,13088745,Administrative,09/19/2013,09/19/2013,09/19/2013 12:47:56 PM,09/19/2013 12:48:02 PM,09/19/2013 12:48:10 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 12:48:50 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",132620186-E03 -133460078,94,13117310,Medical Incident,12/12/2013,12/11/2013,12/12/2013 07:12:23 AM,12/12/2013 07:20:29 AM,12/12/2013 07:44:47 AM,12/12/2013 07:45:35 AM,12/12/2013 07:54:38 AM,12/12/2013 08:21:23 AM,12/12/2013 08:27:22 AM,Code 2 Transport,12/12/2013 09:01:08 AM,1300 Block of LARKIN ST,SF,94109,B04,41,1635,2,2,2,true,Non Life-threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",133460078-94 -120730128,KM04,12024179,Medical Incident,03/13/2012,03/13/2012,03/13/2012 09:59:28 AM,03/13/2012 10:00:31 AM,03/13/2012 10:00:41 AM,03/13/2012 10:01:04 AM,03/13/2012 10:12:59 AM,03/13/2012 10:26:07 AM,03/13/2012 10:35:36 AM,Code 2 Transport,03/13/2012 10:59:01 AM,500 Block of JONES ST,SF,94102,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",120730128-KM04 -130060107,RC2,13002008,Medical Incident,01/06/2013,01/06/2013,01/06/2013 10:16:05 AM,01/06/2013 10:18:10 AM,01/06/2013 11:56:35 AM,04/25/2016 01:54:56 PM,01/06/2013 11:56:42 AM,01/06/2013 11:56:56 AM,01/06/2013 11:56:58 AM,Other,01/06/2013 11:57:06 AM,3300 Block of BALBOA ST,SF,94121,B07,34,7254,1,1,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.775892549655, -122.49464338851)",130060107-RC2 -102920362,T08,10093269,Structure Fire,10/19/2010,10/19/2010,10/19/2010 09:29:15 PM,10/19/2010 09:29:16 PM,10/19/2010 09:29:31 PM,10/19/2010 09:30:48 PM,10/19/2010 09:33:05 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Fire,10/19/2010 09:33:38 PM,3RD ST/BRYANT ST,SF,94107,B03,8,2174,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7813212571676, -122.395843500166)",102920362-T08 -160013639,70,16000510,Medical Incident,01/01/2016,01/01/2016,01/01/2016 09:33:04 PM,01/01/2016 09:33:04 PM,01/01/2016 09:34:57 PM,01/01/2016 09:35:18 PM,01/01/2016 09:46:22 PM,01/01/2016 09:58:23 PM,01/01/2016 10:01:58 PM,Code 2 Transport,01/01/2016 10:27:54 PM,1900 Block of LAGUNA ST,San Francisco,94109,B04,38,3362,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7890640954381, -122.428740370022)",160013639-70 -122360103,RC2,12078130,Other,08/23/2012,08/23/2012,08/23/2012 10:16:07 AM,08/23/2012 10:17:05 AM,08/23/2012 10:17:14 AM,08/23/2012 10:32:51 AM,08/23/2012 10:33:49 AM,04/25/2016 01:57:06 PM,04/25/2016 01:57:06 PM,Medical Examiner,08/23/2012 10:51:45 AM,1300 Block of 16TH AVE,SF,94122,B08,22,7366,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,8,5,Inner Sunset,"(37.7627751424743, -122.473778893146)",122360103-RC2 -160461990,62,16018542,Medical Incident,02/15/2016,02/15/2016,02/15/2016 02:18:42 PM,02/15/2016 02:19:08 PM,02/15/2016 02:19:28 PM,02/15/2016 02:19:57 PM,02/15/2016 02:43:20 PM,02/15/2016 02:43:25 PM,02/15/2016 02:46:35 PM,Code 2 Transport,02/15/2016 03:46:09 PM,200 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",160461990-62 -132700321,E42,13091812,Medical Incident,09/27/2013,09/27/2013,09/27/2013 05:44:38 PM,09/27/2013 05:46:18 PM,09/27/2013 05:46:46 PM,09/27/2013 05:48:17 PM,09/27/2013 05:51:04 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/27/2013 06:05:14 PM,500 Block of THORNTON AVE,SF,94124,B10,42,6447,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7315384486672, -122.399836854573)",132700321-E42 -160381018,85,16015129,Medical Incident,02/07/2016,02/07/2016,02/07/2016 08:31:15 AM,02/07/2016 08:32:59 AM,02/07/2016 08:33:19 AM,02/07/2016 08:33:31 AM,02/07/2016 08:45:22 AM,02/07/2016 09:15:04 AM,02/07/2016 09:41:02 AM,Code 2 Transport,02/07/2016 10:13:36 AM,1100 Block of LARKIN ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881906054546, -122.418580508889)",160381018-85 -121040341,E01,12034600,Medical Incident,04/13/2012,04/13/2012,04/13/2012 11:19:39 PM,04/13/2012 11:19:40 PM,04/13/2012 11:20:17 PM,04/13/2012 11:28:06 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/13/2012 11:29:38 PM,TURK ST/TAYLOR ST,SF,94102,B03,1,1365,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",121040341-E01 -160832028,66,16032965,Medical Incident,03/23/2016,03/23/2016,03/23/2016 01:29:02 PM,03/23/2016 01:29:52 PM,03/23/2016 01:30:17 PM,03/23/2016 01:31:03 PM,03/23/2016 01:36:31 PM,03/23/2016 01:48:29 PM,03/23/2016 02:17:28 PM,Code 2 Transport,03/23/2016 03:06:50 PM,1300 Block of THOMAS AVE,San Francisco,94124,B10,17,6547,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",160832028-66 -121540322,82,12051109,Medical Incident,06/02/2012,06/02/2012,06/02/2012 09:04:55 PM,06/02/2012 09:06:16 PM,06/02/2012 09:06:37 PM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,06/02/2012 09:23:56 PM,06/02/2012 09:53:39 PM,Code 2 Transport,06/02/2012 10:17:04 PM,9TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",121540322-82 -120930314,E36,12030916,Medical Incident,04/02/2012,04/02/2012,04/02/2012 06:59:30 PM,04/02/2012 06:59:30 PM,04/02/2012 06:59:45 PM,04/02/2012 07:00:57 PM,04/02/2012 07:03:04 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Other,04/02/2012 07:07:52 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7756454671917, -122.412432457912)",120930314-E36 -111320012,E23,11043482,Medical Incident,05/12/2011,05/11/2011,05/12/2011 12:55:57 AM,05/12/2011 12:56:48 AM,05/12/2011 12:57:01 AM,05/12/2011 12:58:05 AM,05/12/2011 01:01:25 AM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Other,05/12/2011 01:10:54 AM,GREAT HY/FULTON ST,SF,94121,B08,23,7722,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7713424988011, -122.511053754552)",111320012-E23 -103380423,AM10,10108349,Medical Incident,12/04/2010,12/04/2010,12/04/2010 10:46:22 PM,12/04/2010 10:47:46 PM,12/04/2010 10:48:04 PM,12/04/2010 10:48:49 PM,12/04/2010 10:51:04 PM,12/04/2010 11:20:59 PM,12/04/2010 11:35:43 PM,Code 2 Transport,12/05/2010 12:10:34 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",103380423-AM10 -160811396,71,16032149,Medical Incident,03/21/2016,03/21/2016,03/21/2016 11:24:57 AM,03/21/2016 11:27:40 AM,03/21/2016 11:27:56 AM,03/21/2016 11:28:05 AM,03/21/2016 11:34:56 AM,03/21/2016 11:53:16 AM,03/21/2016 12:03:08 PM,Code 2 Transport,03/21/2016 01:09:20 PM,1900 Block of 14TH AVE,San Francisco,94116,B08,40,7368,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.751629099333, -122.47047025628)",160811396-71 -160340530,55,16013258,Medical Incident,02/03/2016,02/02/2016,02/03/2016 07:05:21 AM,02/03/2016 07:07:29 AM,02/03/2016 07:07:46 AM,02/03/2016 07:08:24 AM,02/03/2016 07:20:20 AM,02/03/2016 07:33:47 AM,02/03/2016 08:01:53 AM,Code 2 Transport,02/03/2016 08:55:58 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160340530-55 -113290121,E05,11109117,Medical Incident,11/25/2011,11/25/2011,11/25/2011 12:22:39 PM,11/25/2011 12:22:51 PM,11/25/2011 12:23:14 PM,11/25/2011 12:24:03 PM,11/25/2011 12:25:18 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 12:33:20 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",113290121-E05 -110450350,E01,11015070,Alarms,02/14/2011,02/14/2011,02/14/2011 08:26:32 PM,02/14/2011 08:27:39 PM,02/14/2011 08:27:47 PM,02/14/2011 08:32:05 PM,02/14/2011 08:33:31 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 08:40:06 PM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.784851966461, -122.389795266719)",110450350-E01 -160550609,70,16021908,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:30:10 AM,02/24/2016 07:31:57 AM,02/24/2016 07:32:30 AM,02/24/2016 07:32:44 AM,02/24/2016 07:51:52 AM,02/24/2016 08:04:39 AM,02/24/2016 08:15:47 AM,Code 3 Transport,02/24/2016 09:34:59 AM,4100 Block of 19TH AVE,San Francisco,94132,B09,33,8417,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7140201610277, -122.469605898584)",160550609-70 -130400330,AM10,13013797,Medical Incident,02/09/2013,02/09/2013,02/09/2013 07:55:18 PM,02/09/2013 07:55:52 PM,02/09/2013 08:01:37 PM,02/09/2013 08:02:21 PM,02/09/2013 08:11:20 PM,02/09/2013 08:19:15 PM,02/09/2013 08:34:44 PM,Code 2 Transport,02/09/2013 09:05:39 PM,MISSION ST/5TH ST,SF,94103,B03,1,2246,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",130400330-AM10 -140290286,83,14009973,Medical Incident,01/29/2014,01/29/2014,01/29/2014 05:25:39 PM,01/29/2014 05:28:11 PM,01/29/2014 05:43:24 PM,01/29/2014 05:50:35 PM,01/29/2014 05:51:54 PM,01/29/2014 06:09:01 PM,01/29/2014 06:24:22 PM,Code 2 Transport,01/29/2014 06:47:23 PM,1300 Block of 38TH AVE,SF,94122,B08,23,7626,,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7617367287526, -122.497349537472)",140290286-83 -123230154,59,12107387,Medical Incident,11/18/2012,11/18/2012,11/18/2012 11:29:02 AM,11/18/2012 11:31:12 AM,11/18/2012 11:31:28 AM,11/18/2012 11:32:07 AM,11/18/2012 11:34:08 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,No Merit,11/18/2012 11:36:20 AM,200 Block of MIRAMAR AVE,SF,94112,B09,15,8474,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7227490413148, -122.458117167077)",123230154-59 -131830353,75,13062501,Medical Incident,07/02/2013,07/02/2013,07/02/2013 09:40:29 PM,07/02/2013 09:40:42 PM,07/02/2013 09:40:52 PM,07/02/2013 09:41:05 PM,07/02/2013 09:43:33 PM,07/02/2013 09:53:01 PM,07/02/2013 10:08:31 PM,Code 2 Transport,07/02/2013 10:27:04 PM,1300 Block of BUCHANAN ST,SF,94115,B02,5,3431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7820811831699, -122.429017793799)",131830353-75 -122300368,75,12076384,Medical Incident,08/17/2012,08/17/2012,08/17/2012 09:01:48 PM,08/17/2012 09:03:29 PM,08/17/2012 09:03:44 PM,08/17/2012 09:04:11 PM,08/17/2012 09:07:54 PM,08/17/2012 09:24:40 PM,08/17/2012 09:33:25 PM,Code 2 Transport,08/17/2012 10:00:30 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",122300368-75 -120050253,E08,12001794,Medical Incident,01/05/2012,01/05/2012,01/05/2012 04:30:17 PM,01/05/2012 04:31:00 PM,01/05/2012 04:31:52 PM,01/05/2012 04:34:32 PM,01/05/2012 04:36:01 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 04:40:14 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120050253-E08 -102300030,81,10072273,Medical Incident,08/18/2010,08/17/2010,08/18/2010 04:13:32 AM,08/18/2010 04:14:16 AM,08/18/2010 04:14:27 AM,08/18/2010 04:15:46 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/18/2010 04:17:47 AM,COLUMBUS AV/BROADWAY,SF,94133,B01,2,1311,2,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",102300030-81 -160043668,58,16001793,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:37:25 PM,01/04/2016 10:39:31 PM,01/04/2016 10:40:18 PM,01/04/2016 10:40:27 PM,01/04/2016 10:56:02 PM,01/04/2016 11:21:46 PM,01/04/2016 11:33:13 PM,Code 2 Transport,01/05/2016 12:05:17 AM,1500 Block of SUTTER ST,San Francisco,94109,B05,38,3324,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Japantown,"(37.7869733157952, -122.425845943218)",160043668-58 -120070108,AM02,12002351,Medical Incident,01/07/2012,01/07/2012,01/07/2012 09:09:57 AM,01/07/2012 09:10:24 AM,01/07/2012 09:10:58 AM,01/07/2012 09:11:34 AM,01/07/2012 09:14:03 AM,01/07/2012 09:35:55 AM,01/07/2012 09:55:40 AM,Code 2 Transport,01/07/2012 10:42:20 AM,1500 Block of DOLORES ST,SF,94131,B06,11,5576,3,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7442280333573, -122.424575505878)",120070108-AM02 -122190379,E40,12072825,Medical Incident,08/06/2012,08/06/2012,08/06/2012 11:28:12 PM,08/06/2012 11:29:00 PM,08/06/2012 11:29:10 PM,08/06/2012 11:30:50 PM,08/06/2012 11:32:15 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 11:41:43 PM,2300 Block of 20TH AVE,SF,94116,B08,40,7416,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7439390940789, -122.476761034475)",122190379-E40 -140190021,58,14006399,Medical Incident,01/19/2014,01/18/2014,01/19/2014 12:52:14 AM,01/19/2014 12:54:39 AM,01/19/2014 12:58:14 AM,01/19/2014 12:58:23 AM,01/19/2014 01:09:27 AM,01/19/2014 01:24:14 AM,01/19/2014 01:33:05 AM,Other,01/19/2014 01:59:35 AM,HALLAM ST/FOLSOM ST,SF,94103,B02,1,2313,,2,2,false,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7759532285245, -122.408845751769)",140190021-58 -130010480,E31,13000396,Alarms,01/01/2013,01/01/2013,01/01/2013 06:22:03 PM,01/01/2013 06:23:20 PM,01/01/2013 06:23:28 PM,01/01/2013 06:26:05 PM,01/01/2013 06:27:21 PM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,Other,01/01/2013 06:44:24 PM,400 Block of 18TH AVE,SF,94121,B07,31,7161,3,3,3,true,Alarm,1,ENGINE,2,7,1,Outer Richmond,"(37.7794692789039, -122.477238969137)",130010480-E31 -160680430,88,16026997,Medical Incident,03/08/2016,03/07/2016,03/08/2016 06:28:54 AM,03/08/2016 06:31:37 AM,03/08/2016 06:31:49 AM,03/08/2016 06:32:01 AM,03/08/2016 06:39:29 AM,03/08/2016 06:53:10 AM,03/08/2016 07:07:48 AM,Code 2 Transport,03/08/2016 07:37:48 AM,0 Block of SANTOS ST,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121040537994, -122.41847388242)",160680430-88 -112480304,E36,11081900,Medical Incident,09/05/2011,09/05/2011,09/05/2011 07:17:20 PM,09/05/2011 07:18:06 PM,09/05/2011 07:18:13 PM,09/05/2011 07:19:37 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Other,09/05/2011 07:21:09 PM,MARKET ST/8TH ST,SF,94103,B02,1,2317,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",112480304-E36 -112730331,T09,11090369,Structure Fire,09/30/2011,09/30/2011,09/30/2011 07:24:23 PM,09/30/2011 07:24:23 PM,09/30/2011 07:24:41 PM,09/30/2011 07:26:03 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 07:26:42 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",112730331-T09 -123010349,93,12099944,Medical Incident,10/27/2012,10/27/2012,10/27/2012 09:27:19 PM,10/27/2012 09:29:29 PM,10/27/2012 09:29:42 PM,10/27/2012 09:30:39 PM,10/27/2012 09:42:46 PM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,04/25/2016 01:56:05 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",123010349-93 -140620147,E03,14020915,Medical Incident,03/03/2014,03/03/2014,03/03/2014 11:53:06 AM,03/03/2014 11:56:53 AM,03/03/2014 11:58:25 AM,03/03/2014 11:59:46 AM,03/03/2014 12:02:35 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,No Merit,03/03/2014 12:13:17 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",140620147-E03 -112450064,T03,11080676,Citizen Assist / Service Call,09/02/2011,09/01/2011,09/02/2011 07:17:10 AM,09/02/2011 07:19:29 AM,09/02/2011 07:20:16 AM,09/02/2011 07:22:17 AM,09/02/2011 07:23:53 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Fire,09/02/2011 07:27:46 AM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,false,,1,TRUCK,1,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",112450064-T03 -121140269,AM06,12037909,Medical Incident,04/23/2012,04/23/2012,04/23/2012 05:31:49 PM,04/23/2012 05:35:01 PM,04/23/2012 05:35:30 PM,04/23/2012 05:36:25 PM,04/23/2012 05:43:36 PM,04/23/2012 06:06:37 PM,04/23/2012 06:17:45 PM,Code 2 Transport,04/23/2012 07:05:37 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",121140269-AM06 -103240239,E39,10103877,Citizen Assist / Service Call,11/20/2010,11/20/2010,11/20/2010 05:04:57 PM,11/20/2010 05:06:59 PM,11/20/2010 05:07:34 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,04/25/2016 02:07:30 PM,300 Block of MAGELLAN AVE,SF,94116,B08,39,8624,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.745122780308, -122.463198233673)",103240239-E39 -160171768,79,16006856,Medical Incident,01/17/2016,01/17/2016,01/17/2016 01:42:25 PM,01/17/2016 01:43:00 PM,01/17/2016 01:46:11 PM,01/17/2016 01:46:24 PM,01/17/2016 01:52:35 PM,01/17/2016 02:02:17 PM,01/17/2016 02:09:03 PM,Code 2 Transport,01/17/2016 02:32:00 PM,MARKET ST/8TH ST,San Francisco,94103,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160171768-79 -133070376,T16,13104561,Other,11/03/2013,11/03/2013,11/03/2013 11:38:06 PM,11/03/2013 11:38:27 PM,11/03/2013 11:39:45 PM,11/03/2013 11:42:35 PM,11/03/2013 11:43:29 PM,04/25/2016 01:49:56 PM,04/25/2016 01:49:56 PM,Other,11/04/2013 12:03:15 AM,1700 Block of GREENWICH ST,SF,94123,B04,16,3336,3,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.7998384641503, -122.428456807722)",133070376-T16 -131690051,88,13057267,Medical Incident,06/18/2013,06/17/2013,06/18/2013 05:25:44 AM,06/18/2013 05:26:43 AM,06/18/2013 05:29:12 AM,06/18/2013 05:29:28 AM,06/18/2013 05:35:05 AM,06/18/2013 05:54:31 AM,06/18/2013 06:14:48 AM,Code 2 Transport,06/18/2013 06:41:32 AM,1000 Block of 22ND ST,SF,94107,B10,37,2535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7576843079875, -122.391648743155)",131690051-88 -120150040,RC1,12004973,Medical Incident,01/15/2012,01/14/2012,01/15/2012 02:00:46 AM,01/15/2012 02:00:49 AM,01/15/2012 02:02:23 AM,01/15/2012 02:06:51 AM,01/15/2012 02:12:14 AM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 02:39:53 AM,1900 Block of UNION ST,SF,94123,B04,16,3443,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,4,2,Marina,"(37.7976099463654, -122.431831857814)",120150040-RC1 -130080384,93,13002919,Medical Incident,01/08/2013,01/08/2013,01/08/2013 09:05:21 PM,01/08/2013 09:05:27 PM,01/08/2013 09:05:54 PM,01/08/2013 09:06:14 PM,01/08/2013 09:13:57 PM,01/08/2013 09:31:05 PM,01/08/2013 09:37:19 PM,Code 2 Transport,01/08/2013 10:16:32 PM,1300 Block of FOLSOM ST,SF,94103,B02,36,2343,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7730095075911, -122.41247584547)",130080384-93 -123090327,T01,12102868,Structure Fire,11/04/2012,11/04/2012,11/04/2012 05:59:25 PM,11/04/2012 06:00:11 PM,11/04/2012 06:00:43 PM,11/04/2012 06:01:19 PM,11/04/2012 06:03:22 PM,04/25/2016 01:55:57 PM,04/25/2016 01:55:57 PM,Other,11/04/2012 06:31:34 PM,0 Block of GUY PL,SF,94105,B03,35,2137,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7863713360254, -122.394626707002)",123090327-T01 -122020394,81,12067290,Medical Incident,07/20/2012,07/20/2012,07/20/2012 10:35:55 PM,07/20/2012 10:35:55 PM,07/20/2012 10:39:35 PM,07/20/2012 10:40:38 PM,07/20/2012 11:06:57 PM,07/20/2012 11:23:20 PM,07/20/2012 11:39:45 PM,Code 2 Transport,07/21/2012 12:11:20 AM,MARKET ST/LAGUNA ST,SF,94103,B02,36,3416,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",122020394-81 -110410051,E03,11013475,Medical Incident,02/10/2011,02/09/2011,02/10/2011 06:06:37 AM,02/10/2011 06:07:10 AM,02/10/2011 06:07:28 AM,02/10/2011 06:09:45 AM,02/10/2011 06:11:24 AM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 06:12:41 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",110410051-E03 -123360283,B06,12111808,Alarms,12/01/2012,12/01/2012,12/01/2012 05:19:16 PM,12/01/2012 05:21:23 PM,12/01/2012 05:21:59 PM,12/01/2012 05:23:13 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Fire,12/01/2012 05:33:19 PM,400 Block of CAPITOL AVE,SF,94112,B09,33,837,3,3,3,false,Alarm,1,CHIEF,3,9,11,Oceanview/Merced/Ingleside,"(37.7144812752634, -122.459109898055)",123360283-B06 -130600189,KM01,13020125,Medical Incident,03/01/2013,03/01/2013,03/01/2013 01:02:51 PM,03/01/2013 01:03:37 PM,03/01/2013 01:04:02 PM,03/01/2013 01:04:28 PM,03/01/2013 01:07:49 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Patient Declined Transport,03/01/2013 01:43:12 PM,FULTON ST/PARK PRESIDIO DR,SF,94118,B07,31,7144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Golden Gate Park,"(37.7731389469461, -122.471762120845)",130600189-KM01 -122490247,AM12,12082413,Medical Incident,09/05/2012,09/05/2012,09/05/2012 06:03:43 PM,09/05/2012 06:05:25 PM,09/05/2012 06:05:45 PM,09/05/2012 06:06:17 PM,09/05/2012 06:10:18 PM,09/05/2012 06:24:11 PM,09/05/2012 06:31:40 PM,Code 2 Transport,09/05/2012 07:01:30 PM,300 Block of CASTRO ST,SF,94114,B05,6,5253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7630708109806, -122.435153340097)",122490247-AM12 -120990246,78,12032869,Medical Incident,04/08/2012,04/08/2012,04/08/2012 06:37:30 PM,04/08/2012 06:40:32 PM,04/08/2012 06:40:46 PM,04/08/2012 06:41:01 PM,04/08/2012 06:47:43 PM,04/08/2012 06:53:09 PM,04/08/2012 07:01:18 PM,Code 2 Transport,04/08/2012 07:24:10 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",120990246-78 -113040261,E36,11100977,Structure Fire,10/31/2011,10/31/2011,10/31/2011 03:44:34 PM,10/31/2011 03:44:34 PM,10/31/2011 03:44:38 PM,10/31/2011 03:46:04 PM,10/31/2011 03:48:43 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 03:49:35 PM,100 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",113040261-E36 -121370087,66,12045443,Medical Incident,05/16/2012,05/16/2012,05/16/2012 08:08:16 AM,05/16/2012 08:08:17 AM,05/16/2012 08:09:14 AM,05/16/2012 08:09:32 AM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,No Merit,05/16/2012 08:15:50 AM,800 Block of MOSCOW ST,SF,94134,B09,43,6161,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7147094376962, -122.432490972814)",121370087-66 -111070043,83,11035277,Medical Incident,04/17/2011,04/16/2011,04/17/2011 03:15:53 AM,04/17/2011 03:17:44 AM,04/17/2011 03:17:55 AM,04/17/2011 03:18:03 AM,04/17/2011 03:22:36 AM,04/17/2011 03:42:29 AM,04/17/2011 04:00:04 AM,Code 2 Transport,04/17/2011 04:18:06 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",111070043-83 -113030344,T17,11100690,Structure Fire,10/30/2011,10/30/2011,10/30/2011 06:20:57 PM,10/30/2011 06:20:57 PM,10/30/2011 06:22:00 PM,10/30/2011 06:22:49 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/30/2011 06:24:05 PM,1100 Block of LA SALLE AV,SF,94124,B10,17,6637,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7313968208455, -122.381711184291)",113030344-T17 -113500006,68,11115971,Medical Incident,12/16/2011,12/15/2011,12/16/2011 12:37:36 AM,12/16/2011 12:39:50 AM,12/16/2011 12:40:35 AM,12/16/2011 12:40:45 AM,12/16/2011 12:45:19 AM,12/16/2011 01:09:55 AM,12/16/2011 01:18:22 AM,Code 2 Transport,12/16/2011 01:32:56 AM,3300 Block of CABRILLO ST,SF,94121,B07,34,7252,1,3,3,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.774026180989, -122.494507620938)",113500006-68 -111380168,66,11045866,Medical Incident,05/18/2011,05/18/2011,05/18/2011 12:34:30 PM,05/18/2011 12:36:43 PM,05/18/2011 12:38:14 PM,05/18/2011 12:38:45 PM,05/18/2011 01:01:24 PM,05/18/2011 01:18:01 PM,05/18/2011 01:35:25 PM,Code 2 Transport,05/18/2011 02:01:48 PM,3100 Block of INGALLS ST,SF,94124,B10,17,6612,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.719394865519, -122.392643622892)",111380168-66 -122980054,54,12098663,Medical Incident,10/24/2012,10/23/2012,10/24/2012 07:03:24 AM,10/24/2012 07:05:01 AM,10/24/2012 07:05:29 AM,10/24/2012 07:05:44 AM,10/24/2012 07:11:10 AM,10/24/2012 07:23:33 AM,10/24/2012 07:43:35 AM,Code 2 Transport,10/24/2012 08:21:19 AM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8082633159603, -122.414972542075)",122980054-54 -122800391,58,12092775,Medical Incident,10/06/2012,10/06/2012,10/06/2012 08:55:13 PM,10/06/2012 08:57:42 PM,10/06/2012 08:58:16 PM,10/06/2012 08:58:26 PM,10/06/2012 09:02:23 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Against Medical Advice,10/06/2012 09:41:03 PM,FILLMORE ST/POST ST,SF,94115,B04,38,3542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7851509392156, -122.433083400235)",122800391-58 -160242186,50,16009580,Medical Incident,01/24/2016,01/24/2016,01/24/2016 03:46:15 PM,01/24/2016 03:46:40 PM,01/24/2016 03:47:13 PM,01/24/2016 03:47:20 PM,01/24/2016 03:54:14 PM,01/24/2016 04:09:27 PM,01/24/2016 04:35:28 PM,Code 2 Transport,01/24/2016 05:05:02 PM,1200 Block of SILVER AVE,San Francisco,94134,B10,42,6356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7308246140879, -122.410982908601)",160242186-50 -160303088,87,16011904,Medical Incident,01/30/2016,01/30/2016,01/30/2016 06:43:15 PM,01/30/2016 06:43:43 PM,01/30/2016 06:44:02 PM,01/30/2016 06:44:15 PM,01/30/2016 06:48:59 PM,01/30/2016 07:07:52 PM,01/30/2016 07:23:18 PM,Code 2 Transport,01/30/2016 08:02:58 PM,300 Block of HAYES ST,San Francisco,94102,B02,36,3265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7769330032548, -122.422143452116)",160303088-87 -140090429,E02,14003340,Medical Incident,01/09/2014,01/09/2014,01/09/2014 11:57:53 PM,01/09/2014 11:58:12 PM,01/09/2014 11:59:27 PM,01/10/2014 12:01:14 AM,01/10/2014 12:03:45 AM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/10/2014 12:08:49 AM,POWELL ST/GEARY ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7873592619506, -122.408226727064)",140090429-E02 -110130385,E25,11004493,Medical Incident,01/13/2011,01/13/2011,01/13/2011 11:04:28 PM,01/13/2011 11:05:21 PM,01/13/2011 11:06:14 PM,01/13/2011 11:07:12 PM,01/13/2011 11:10:11 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/13/2011 11:26:09 PM,0 Block of BOWMAN CT,SF,94124,B10,25,6565,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7380398300004, -122.382481774704)",110130385-E25 -113650080,E21,11121174,Gas Leak (Natural and LP Gases),12/31/2011,12/30/2011,12/31/2011 05:20:02 AM,12/31/2011 05:22:21 AM,12/31/2011 05:22:31 AM,12/31/2011 05:23:47 AM,12/31/2011 05:27:39 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,12/31/2011 05:28:46 AM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,false,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",113650080-E21 -111610266,AM28,11053262,Medical Incident,06/10/2011,06/10/2011,06/10/2011 05:49:20 PM,06/10/2011 05:51:57 PM,06/10/2011 05:56:03 PM,06/10/2011 06:00:11 PM,06/10/2011 06:07:28 PM,06/10/2011 06:22:36 PM,06/10/2011 06:33:45 PM,Code 2 Transport,06/10/2011 07:14:42 PM,200 Block of SURREY ST,SF,94131,B06,26,8175,1,1,2,false,,1,PRIVATE,1,6,8,Glen Park,"(37.7357430748536, -122.435632974234)",111610266-AM28 -130760085,54,13025307,Medical Incident,03/17/2013,03/16/2013,03/17/2013 06:38:01 AM,03/17/2013 06:38:59 AM,03/17/2013 06:39:19 AM,03/17/2013 06:39:25 AM,03/17/2013 06:50:33 AM,03/17/2013 06:57:40 AM,03/17/2013 07:16:42 AM,Code 2 Transport,03/17/2013 07:48:17 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130760085-54 -112590080,86,11085315,Medical Incident,09/16/2011,09/16/2011,09/16/2011 08:09:57 AM,09/16/2011 08:11:46 AM,09/16/2011 08:12:13 AM,09/16/2011 08:12:32 AM,09/16/2011 08:27:07 AM,09/16/2011 08:38:13 AM,09/16/2011 09:09:23 AM,Code 2 Transport,09/16/2011 09:25:58 AM,900 Block of BRYANT ST,SF,94103,B03,8,2311,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7734713973423, -122.405870779067)",112590080-86 -103200305,E41,10102657,Structure Fire,11/16/2010,11/16/2010,11/16/2010 05:26:52 PM,11/16/2010 05:26:52 PM,11/16/2010 05:27:14 PM,04/25/2016 02:07:34 PM,11/16/2010 05:29:24 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Fire,11/16/2010 05:39:53 PM,1400 Block of JACKSON ST,SF,94109,B01,41,163,3,3,3,true,,1,ENGINE,1,1,3,Russian Hill,"(37.7944063708533, -122.418921298898)",103200305-E41 -113500300,82,11116206,Medical Incident,12/16/2011,12/16/2011,12/16/2011 06:12:07 PM,12/16/2011 06:13:52 PM,12/16/2011 06:14:15 PM,12/16/2011 06:14:41 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 06:15:51 PM,700 Block of VAN NESS AVE,SF,94102,B02,3,3163,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7824440383404, -122.420574545604)",113500300-82 -112670395,E07,11088413,Medical Incident,09/24/2011,09/24/2011,09/24/2011 11:53:48 PM,09/24/2011 11:54:26 PM,09/24/2011 11:54:45 PM,09/24/2011 11:55:22 PM,09/24/2011 11:57:02 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 11:59:23 PM,2900 Block of 16TH ST,SF,94110,B02,7,5236,3,E,3,true,,1,ENGINE,2,2,9,Mission,"(37.7650953807343, -122.418027620141)",112670395-E07 -103010086,92,10096035,Medical Incident,10/28/2010,10/27/2010,10/28/2010 07:18:51 AM,10/28/2010 07:20:51 AM,10/28/2010 07:21:07 AM,10/28/2010 07:21:21 AM,10/28/2010 07:32:49 AM,10/28/2010 07:50:19 AM,10/28/2010 08:05:05 AM,Code 2 Transport,10/28/2010 08:23:56 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,1,2,true,,1,MEDIC,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",103010086-92 -130540255,E34,13018321,Traffic Collision,02/23/2013,02/23/2013,02/23/2013 05:38:30 PM,02/23/2013 05:38:30 PM,02/23/2013 05:39:13 PM,02/23/2013 05:41:18 PM,02/23/2013 05:45:13 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Other,02/23/2013 05:48:33 PM,GREAT HY/IRVING ST,SF,94122,B08,23,7722,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7621272900049, -122.509622174033)",130540255-E34 -102740096,E41,10086946,Medical Incident,10/01/2010,10/01/2010,10/01/2010 10:15:03 AM,10/01/2010 10:15:40 AM,10/01/2010 10:15:49 AM,10/01/2010 10:20:36 AM,10/01/2010 10:23:37 AM,10/01/2010 10:45:55 AM,04/25/2016 02:08:19 PM,Other,10/01/2010 11:10:00 AM,2100 Block of HYDE ST,SF,94109,B01,41,1612,3,3,3,false,,1,ENGINE,2,1,2,Russian Hill,"(37.800589159018, -122.419397480833)",102740096-E41 -140360117,53,14012156,Medical Incident,02/05/2014,02/05/2014,02/05/2014 10:17:08 AM,02/05/2014 10:18:37 AM,02/05/2014 10:19:24 AM,02/05/2014 10:19:34 AM,02/05/2014 10:28:42 AM,04/25/2016 01:48:22 PM,04/25/2016 01:48:22 PM,Other,02/05/2014 10:50:36 AM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7933243681385, -122.4027937497)",140360117-53 -130380064,B04,13012908,Alarms,02/07/2013,02/06/2013,02/07/2013 07:12:25 AM,02/07/2013 07:12:25 AM,02/07/2013 07:12:39 AM,02/07/2013 07:14:24 AM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/07/2013 07:17:53 AM,0 Block of BARCELONA AVE,SF,94115,B05,21,4344,3,3,3,false,Alarm,1,CHIEF,2,5,2,Lone Mountain/USF,"(37.7802569986603, -122.444496343055)",130380064-B04 -122420091,89,12079979,Medical Incident,08/29/2012,08/29/2012,08/29/2012 09:01:05 AM,08/29/2012 09:02:31 AM,08/29/2012 09:03:20 AM,08/29/2012 09:04:52 AM,08/29/2012 09:12:26 AM,08/29/2012 09:22:06 AM,08/29/2012 09:33:03 AM,Code 2 Transport,08/29/2012 10:09:58 AM,2200 Block of REVERE AVE,SF,94124,B10,42,6381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7384628741056, -122.402264769107)",122420091-89 -160110872,81,16004312,Medical Incident,01/11/2016,01/11/2016,01/11/2016 08:59:47 AM,01/11/2016 09:01:29 AM,01/11/2016 09:03:18 AM,01/11/2016 09:03:41 AM,01/11/2016 09:22:48 AM,01/11/2016 09:30:10 AM,01/11/2016 09:46:44 AM,Code 2 Transport,01/11/2016 10:09:49 AM,800 Block of MARKET ST,San Francisco,94103,B03,1,2212,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",160110872-81 -160020144,89,16000571,Medical Incident,01/02/2016,01/01/2016,01/02/2016 01:06:29 AM,01/02/2016 01:08:43 AM,01/02/2016 01:10:49 AM,01/02/2016 01:10:58 AM,01/02/2016 01:17:29 AM,01/02/2016 01:34:40 AM,01/02/2016 01:38:08 AM,Code 2 Transport,01/02/2016 02:22:06 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160020144-89 -112400267,E11,11079274,Medical Incident,08/28/2011,08/28/2011,08/28/2011 05:56:56 PM,08/28/2011 05:58:16 PM,08/28/2011 05:58:33 PM,08/28/2011 05:59:57 PM,08/28/2011 06:01:20 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 06:02:54 PM,3000 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7485954399415, -122.418024677603)",112400267-E11 -133620050,68,13122885,Medical Incident,12/28/2013,12/27/2013,12/28/2013 03:57:15 AM,12/28/2013 03:59:12 AM,12/28/2013 03:59:25 AM,12/28/2013 04:00:06 AM,12/28/2013 04:10:22 AM,12/28/2013 04:21:50 AM,12/28/2013 04:41:08 AM,Code 2 Transport,12/28/2013 05:20:23 AM,0 Block of KING ST,SF,94107,B03,35,940,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7807643532489, -122.388778001806)",133620050-68 -160811934,KM08,16032195,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:44:28 PM,03/21/2016 01:45:38 PM,03/21/2016 01:46:40 PM,03/21/2016 01:49:14 PM,03/21/2016 01:54:37 PM,03/21/2016 02:37:03 PM,03/21/2016 02:43:08 PM,Code 3 Transport,03/21/2016 03:14:31 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160811934-KM08 -132260306,B06,13076393,Alarms,08/14/2013,08/14/2013,08/14/2013 05:56:37 PM,08/14/2013 05:58:38 PM,08/14/2013 05:59:22 PM,08/14/2013 05:59:49 PM,08/14/2013 06:01:21 PM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,Fire,08/14/2013 06:05:51 PM,4200 Block of 24TH ST,SF,94114,B06,24,5521,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7510337035454, -122.437381084007)",132260306-B06 -160784166,58,16031230,Medical Incident,03/18/2016,03/18/2016,03/18/2016 11:33:02 PM,03/18/2016 11:36:30 PM,03/18/2016 11:36:46 PM,03/18/2016 11:36:56 PM,03/18/2016 11:59:04 PM,03/19/2016 12:03:00 AM,03/19/2016 12:15:05 AM,Code 2 Transport,03/19/2016 01:10:27 AM,1700 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.769506585734, -122.451298930077)",160784166-58 -130990212,KM12,13033265,Medical Incident,04/09/2013,04/09/2013,04/09/2013 01:09:10 PM,04/09/2013 01:11:13 PM,04/09/2013 01:11:30 PM,04/09/2013 01:12:36 PM,04/25/2016 01:53:24 PM,04/25/2016 01:53:24 PM,04/25/2016 01:53:24 PM,Other,04/09/2013 01:16:31 PM,700 Block of MINNA ST,SF,94103,B02,36,2318,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7763745624994, -122.413346206384)",130990212-KM12 -122490331,RC2,12082486,Medical Incident,09/05/2012,09/05/2012,09/05/2012 09:57:33 PM,09/05/2012 09:57:55 PM,09/05/2012 09:58:26 PM,09/05/2012 10:00:22 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/05/2012 10:02:26 PM,4200 Block of 25TH ST,SF,94114,B06,11,5541,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,6,8,Noe Valley,"(37.7495741560835, -122.435028131227)",122490331-RC2 -140200019,B04,14006729,Outside Fire,01/20/2014,01/19/2014,01/20/2014 02:08:46 AM,01/20/2014 02:10:43 AM,01/20/2014 02:11:01 AM,01/20/2014 02:12:35 AM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/20/2014 02:14:26 AM,PRESIDIO AV/CLAY ST,SF,94115,B04,10,4413,3,3,3,false,Fire,1,CHIEF,3,4,2,Presidio Heights,"(37.7890713875458, -122.447148006965)",140200019-B04 -160183023,61,16007370,Medical Incident,01/18/2016,01/18/2016,01/18/2016 08:16:31 PM,01/18/2016 08:18:01 PM,01/18/2016 08:18:33 PM,01/18/2016 08:18:44 PM,01/18/2016 08:27:49 PM,01/18/2016 08:44:47 PM,01/18/2016 09:04:33 PM,Code 2 Transport,01/18/2016 09:40:52 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160183023-61 -110040323,AM18,11001412,Medical Incident,01/04/2011,01/04/2011,01/04/2011 07:13:35 PM,01/04/2011 07:14:17 PM,01/04/2011 07:14:53 PM,01/04/2011 07:15:23 PM,01/04/2011 07:18:33 PM,01/04/2011 07:26:27 PM,01/04/2011 07:42:47 PM,Code 2 Transport,01/04/2011 08:17:34 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110040323-AM18 -111380226,E16,11045910,Structure Fire,05/18/2011,05/18/2011,05/18/2011 02:42:27 PM,05/18/2011 02:42:27 PM,05/18/2011 02:42:43 PM,05/18/2011 02:43:06 PM,05/18/2011 02:44:49 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 02:46:07 PM,BUCHANAN ST/BAY ST,SF,94123,B04,16,3446,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8030568840333, -122.433327957472)",111380226-E16 -102280029,E03,10071660,Medical Incident,08/16/2010,08/15/2010,08/16/2010 02:49:28 AM,08/16/2010 02:51:03 AM,08/16/2010 02:51:15 AM,04/25/2016 02:09:03 PM,08/16/2010 02:53:55 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Patient Declined Transport,08/16/2010 02:59:41 AM,HYDE ST/PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",102280029-E03 -110450257,86,11014984,Medical Incident,02/14/2011,02/14/2011,02/14/2011 04:26:51 PM,02/14/2011 04:27:18 PM,02/14/2011 04:27:35 PM,02/14/2011 04:30:24 PM,02/14/2011 04:32:42 PM,02/14/2011 04:48:04 PM,02/14/2011 05:06:03 PM,Code 2 Transport,02/14/2011 05:34:26 PM,0 Block of ROCKRIDGE DR,SF,94116,B08,40,7354,3,3,3,true,,1,MEDIC,2,8,7,Inner Sunset,"(37.7508105921877, -122.469748625841)",110450257-86 -160083378,76,16003383,Medical Incident,01/08/2016,01/08/2016,01/08/2016 07:43:18 PM,01/08/2016 07:43:18 PM,01/08/2016 07:43:18 PM,01/08/2016 07:43:18 PM,01/08/2016 07:43:18 PM,01/08/2016 07:58:12 PM,01/08/2016 08:04:43 PM,Code 2 Transport,01/08/2016 09:07:52 PM,EDDY ST/CYRIL MAGNIN ST,San Francisco,94102,B01,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",160083378-76 -160870640,57,16034472,Medical Incident,03/27/2016,03/26/2016,03/27/2016 05:37:51 AM,03/27/2016 05:41:11 AM,03/27/2016 05:41:42 AM,03/27/2016 05:41:52 AM,03/27/2016 05:56:08 AM,03/27/2016 06:08:51 AM,03/27/2016 06:36:24 AM,Code 2 Transport,03/27/2016 07:07:35 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160870640-57 -130800113,E48,13026687,Medical Incident,03/21/2013,03/21/2013,03/21/2013 09:44:30 AM,03/21/2013 09:46:01 AM,03/21/2013 09:46:24 AM,03/21/2013 09:47:52 AM,03/21/2013 09:50:51 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 10:17:52 AM,1200 Block of MARINER DR,TI,94130,B03,48,2931,1,1,2,true,Non Life-threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",130800113-E48 -131710188,E36,13058051,Medical Incident,06/20/2013,06/20/2013,06/20/2013 01:12:40 PM,06/20/2013 01:13:43 PM,06/20/2013 01:27:08 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/20/2013 01:28:40 PM,1200 Block of MARKET ST,SF,94102,B02,1,2317,3,E,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.7783029377815, -122.415436837337)",131710188-E36 -130870374,E05,13029187,Administrative,03/28/2013,03/28/2013,03/28/2013 09:56:12 PM,03/28/2013 09:56:26 PM,03/28/2013 09:57:50 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 09:58:15 PM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",130870374-E05 -140810359,58,14027518,Medical Incident,03/22/2014,03/22/2014,03/22/2014 10:15:26 PM,03/22/2014 10:15:49 PM,03/22/2014 10:15:57 PM,03/22/2014 10:18:22 PM,03/22/2014 10:21:40 PM,03/22/2014 10:49:56 PM,03/22/2014 11:00:50 PM,Code 2 Transport,03/22/2014 11:39:08 PM,500 Block of GREEN ST,SAN FRANCISCO,94133,B01,28,1266,E,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.7997378624541, -122.407557998761)",140810359-58 -160022355,88,16000807,Medical Incident,01/02/2016,01/02/2016,01/02/2016 04:53:35 PM,01/02/2016 04:53:35 PM,01/02/2016 04:53:48 PM,01/02/2016 04:54:33 PM,01/02/2016 05:08:29 PM,01/02/2016 05:33:00 PM,01/02/2016 05:38:48 PM,Code 2 Transport,01/02/2016 05:59:28 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",160022355-88 -102350080,E01,10073865,Medical Incident,08/23/2010,08/23/2010,08/23/2010 08:48:06 AM,08/23/2010 08:49:19 AM,08/23/2010 08:49:39 AM,08/23/2010 08:50:59 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,04/25/2016 02:08:57 PM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,3,2,6,South of Market,"(37.7739392650435, -122.412947871011)",102350080-E01 -111430165,E33,11047511,Traffic Collision,05/23/2011,05/23/2011,05/23/2011 11:47:51 AM,05/23/2011 11:53:15 AM,05/23/2011 11:54:45 AM,05/23/2011 11:55:53 AM,05/23/2011 12:04:09 PM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/23/2011 12:04:19 PM,200 Block of SAGAMORE ST,SF,94112,B09,33,8375,2,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7113251139189, -122.460533946078)",111430165-E33 -160910049,KM03,16035920,Medical Incident,03/31/2016,03/30/2016,03/31/2016 12:22:25 AM,03/31/2016 12:22:49 AM,03/31/2016 12:23:17 AM,03/31/2016 12:23:49 AM,03/31/2016 12:28:57 AM,03/31/2016 12:51:12 AM,03/31/2016 01:01:55 AM,Code 2 Transport,03/31/2016 01:38:53 AM,400 Block of VICTORIA ST,San Francisco,94132,B09,33,8444,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7188021317353, -122.465280431039)",160910049-KM03 -110350170,RC3,11011487,Traffic Collision,02/04/2011,02/04/2011,02/04/2011 11:30:54 AM,02/04/2011 11:32:31 AM,02/04/2011 11:32:51 AM,02/04/2011 11:40:10 AM,02/04/2011 11:42:58 AM,04/25/2016 02:06:15 PM,04/25/2016 02:06:15 PM,Other,02/04/2011 11:55:07 AM,SANTA CLARA AV/PORTOLA DR,SF,94127,B08,39,8563,2,3,3,true,,1,RESCUE CAPTAIN,2,8,7,West of Twin Peaks,"(37.7392358314406, -122.466157325803)",110350170-RC3 -113300068,T01,11109343,Alarms,11/26/2011,11/26/2011,11/26/2011 08:43:58 AM,11/26/2011 08:45:57 AM,11/26/2011 08:46:11 AM,11/26/2011 08:47:29 AM,11/26/2011 08:51:51 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/26/2011 08:58:37 AM,0 Block of WASHBURN ST,SF,94103,B02,36,2336,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7752362231466, -122.414406294791)",113300068-T01 -130610158,B03,13020439,Alarms,03/02/2013,03/02/2013,03/02/2013 11:18:45 AM,03/02/2013 11:19:51 AM,03/02/2013 11:20:26 AM,03/02/2013 11:20:34 AM,03/02/2013 11:22:33 AM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Other,03/02/2013 11:32:48 AM,400 Block of 10TH ST,SF,94103,B02,29,2345,3,3,3,false,Alarm,1,CHIEF,1,2,6,South of Market,"(37.7709248562482, -122.410555957263)",130610158-B03 -102240287,E36,10070635,Medical Incident,08/12/2010,08/12/2010,08/12/2010 06:12:11 PM,08/12/2010 06:13:12 PM,08/12/2010 06:13:29 PM,08/12/2010 06:14:46 PM,08/12/2010 06:16:29 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/12/2010 06:21:43 PM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",102240287-E36 -111780323,85,11058888,Medical Incident,06/27/2011,06/27/2011,06/27/2011 07:16:48 PM,06/27/2011 07:17:47 PM,06/27/2011 07:18:18 PM,06/27/2011 07:18:35 PM,06/27/2011 07:24:10 PM,06/27/2011 07:47:08 PM,06/27/2011 07:58:26 PM,Code 2 Transport,06/27/2011 08:26:16 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",111780323-85 -160280374,KM07,16010957,Medical Incident,01/28/2016,01/27/2016,01/28/2016 04:55:52 AM,01/28/2016 04:55:52 AM,01/28/2016 04:56:58 AM,01/28/2016 04:57:37 AM,01/28/2016 05:02:57 AM,01/28/2016 05:28:34 AM,01/28/2016 05:40:13 AM,Code 2 Transport,01/28/2016 06:27:47 AM,11TH ST/HOWARD ST,San Francisco,94103,B02,36,5114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7731005870473, -122.415561389884)",160280374-KM07 -130460338,E13,13015733,Medical Incident,02/15/2013,02/15/2013,02/15/2013 05:38:16 PM,02/15/2013 05:40:34 PM,02/15/2013 05:43:43 PM,02/15/2013 05:44:50 PM,02/15/2013 05:52:28 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 06:12:11 PM,MISSION ST/SPEAR ST,SF,94105,B03,35,2111,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7925372164019, -122.394059624933)",130460338-E13 -140580310,E19,14019674,Administrative,02/27/2014,02/27/2014,02/27/2014 07:31:56 PM,02/27/2014 07:32:29 PM,02/27/2014 07:32:50 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Other,02/27/2014 07:35:30 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",140580310-E19 -110680201,96,11022373,Medical Incident,03/09/2011,03/09/2011,03/09/2011 01:09:07 PM,03/09/2011 01:11:10 PM,03/09/2011 01:11:50 PM,03/09/2011 01:14:05 PM,03/09/2011 01:17:43 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/09/2011 01:20:57 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",110680201-96 -160361920,KM09,16014255,Medical Incident,02/05/2016,02/05/2016,02/05/2016 12:52:32 PM,02/05/2016 12:54:31 PM,02/05/2016 12:55:43 PM,02/05/2016 01:00:01 PM,02/05/2016 01:37:15 PM,02/05/2016 01:37:19 PM,02/05/2016 01:58:42 PM,Code 2 Transport,02/05/2016 03:08:40 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160361920-KM09 -121730104,E02,12057377,Alarms,06/21/2012,06/21/2012,06/21/2012 08:34:53 AM,06/21/2012 08:35:39 AM,06/21/2012 08:35:51 AM,06/21/2012 08:37:50 AM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/21/2012 08:40:51 AM,400 Block of POST ST,SF,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",121730104-E02 -160270158,KM07,16010521,Medical Incident,01/27/2016,01/26/2016,01/27/2016 01:46:52 AM,01/27/2016 01:48:56 AM,01/27/2016 01:49:07 AM,01/27/2016 01:49:44 AM,01/27/2016 01:53:59 AM,01/27/2016 02:05:23 AM,01/27/2016 02:22:01 AM,Code 2 Transport,01/27/2016 02:46:57 AM,0 Block of PERRY ST,San Francisco,94107,B03,8,2175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",160270158-KM07 -110330011,B01,11010674,Alarms,02/02/2011,02/01/2011,02/02/2011 01:09:59 AM,02/02/2011 01:12:18 AM,02/02/2011 01:12:43 AM,02/02/2011 01:14:45 AM,02/02/2011 01:20:55 AM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Fire,02/02/2011 01:22:11 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,CHIEF,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",110330011-B01 -133650185,E44,13123940,Medical Incident,12/31/2013,12/31/2013,12/31/2013 01:21:06 PM,12/31/2013 01:22:16 PM,12/31/2013 01:22:50 PM,12/31/2013 01:23:59 PM,12/31/2013 01:24:45 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Other,12/31/2013 01:34:44 PM,SAN BRUNO AV/FELTON ST,SF,94134,B10,42,6337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7300371964722, -122.404592619044)",133650185-E44 -131510266,E05,13051195,Medical Incident,05/31/2013,05/31/2013,05/31/2013 04:17:12 PM,05/31/2013 04:19:18 PM,05/31/2013 04:20:49 PM,05/31/2013 04:21:37 PM,05/31/2013 04:25:32 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 04:31:44 PM,1700 Block of POST ST,SF,94115,B04,5,3513,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Japantown,"(37.7854139465586, -122.430564088684)",131510266-E05 -111350097,94,11044829,Medical Incident,05/15/2011,05/14/2011,05/15/2011 07:33:49 AM,05/15/2011 07:37:21 AM,05/15/2011 07:37:53 AM,05/15/2011 07:40:27 AM,05/15/2011 07:41:38 AM,05/15/2011 07:59:40 AM,05/15/2011 08:20:40 AM,Code 2 Transport,05/15/2011 08:51:01 AM,0 Block of VAN NESS AVE,SF,94102,B02,36,3211,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7761270178724, -122.419607871931)",111350097-94 -121010336,E01,12033615,Outside Fire,04/10/2012,04/10/2012,04/10/2012 08:05:09 PM,04/10/2012 08:07:36 PM,04/10/2012 08:08:00 PM,04/10/2012 08:09:15 PM,04/10/2012 08:10:53 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Fire,04/10/2012 08:16:33 PM,FOLSOM ST/5TH ST,SF,94107,B03,1,2244,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",121010336-E01 -122050079,KM04,12068090,Medical Incident,07/23/2012,07/23/2012,07/23/2012 08:10:23 AM,07/23/2012 08:10:58 AM,07/23/2012 08:12:16 AM,07/23/2012 08:12:59 AM,07/23/2012 08:18:44 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,No Merit,07/23/2012 08:22:04 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122050079-KM04 -140360143,82,14012172,Medical Incident,02/05/2014,02/05/2014,02/05/2014 11:28:54 AM,02/05/2014 11:31:02 AM,02/05/2014 11:31:16 AM,02/05/2014 11:31:32 AM,02/05/2014 11:39:18 AM,02/05/2014 11:59:50 AM,02/05/2014 12:07:45 PM,Code 2 Transport,02/05/2014 12:49:02 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",140360143-82 -110780384,RS1,11025843,Medical Incident,03/19/2011,03/19/2011,03/19/2011 10:46:57 PM,03/19/2011 10:49:09 PM,03/19/2011 10:49:45 PM,03/19/2011 10:50:43 PM,03/19/2011 10:54:01 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 10:59:10 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",110780384-RS1 -102380352,E33,10075200,Alarms,08/26/2010,08/26/2010,08/26/2010 08:36:31 PM,08/26/2010 08:37:38 PM,08/26/2010 08:37:49 PM,08/26/2010 08:39:21 PM,08/26/2010 08:40:29 PM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 09:00:59 PM,3900 Block of ALEMANY BLVD,SF,94132,B09,33,8412,3,3,3,true,,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7109639146394, -122.468105304613)",102380352-E33 -112100056,RS1,11069232,Traffic Collision,07/29/2011,07/28/2011,07/29/2011 07:23:44 AM,07/29/2011 07:24:46 AM,07/29/2011 07:25:02 AM,07/29/2011 07:27:05 AM,07/29/2011 07:31:21 AM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 07:31:32 AM,1ST ST/HOWARD ST,SF,94105,B03,35,2141,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7885359297329, -122.396034766801)",112100056-RS1 -160120350,85,16004640,Medical Incident,01/12/2016,01/11/2016,01/12/2016 04:20:04 AM,01/12/2016 04:21:02 AM,01/12/2016 04:21:13 AM,01/12/2016 04:21:24 AM,01/12/2016 04:27:05 AM,01/12/2016 04:41:59 AM,01/12/2016 04:48:32 AM,Code 2 Transport,01/12/2016 06:00:56 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160120350-85 -160532003,75,16021246,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:44:26 PM,02/22/2016 02:44:48 PM,02/22/2016 02:46:50 PM,02/22/2016 02:47:06 PM,02/22/2016 02:51:46 PM,02/22/2016 03:09:02 PM,02/22/2016 03:39:53 PM,Code 2 Transport,02/22/2016 04:02:46 PM,100 Block of VERNON ST,San Francisco,94132,B09,33,8411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7151841543994, -122.46807546609)",160532003-75 -121400231,E42,12046538,Medical Incident,05/19/2012,05/19/2012,05/19/2012 04:32:42 PM,05/19/2012 04:35:41 PM,05/19/2012 04:35:55 PM,05/19/2012 04:37:12 PM,05/19/2012 04:41:17 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/19/2012 04:52:02 PM,3200 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Portola,"(37.7209679400284, -122.400941241027)",121400231-E42 -110920308,T15,11030647,Traffic Collision,04/02/2011,04/02/2011,04/02/2011 07:31:07 PM,04/02/2011 07:31:50 PM,04/02/2011 07:32:14 PM,04/02/2011 07:33:36 PM,04/02/2011 07:41:01 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/02/2011 08:33:38 PM,"CALL BOX: JOHN DALY BL/MISSION ST,DC",DC,,B09,33,9922,3,3,3,false,,1,TRUCK,3,None,None,None,"(37.7049649190377, -122.462393901191)",110920308-T15 -120570098,E29,12018737,Alarms,02/26/2012,02/25/2012,02/26/2012 07:32:21 AM,02/26/2012 07:33:31 AM,02/26/2012 07:33:41 AM,02/26/2012 07:35:52 AM,02/26/2012 07:38:45 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 07:43:31 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,2,2,9,Mission,"(37.7622701739914, -122.419470488515)",120570098-E29 -130960288,E32,13032269,Medical Incident,04/06/2013,04/06/2013,04/06/2013 05:37:46 PM,04/06/2013 05:39:16 PM,04/06/2013 05:39:52 PM,04/06/2013 05:41:25 PM,04/06/2013 05:43:48 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 05:58:07 PM,100 Block of PUTNAM ST,SF,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7375380639723, -122.410869557896)",130960288-E32 -110640429,E33,11021292,Medical Incident,03/05/2011,03/05/2011,03/05/2011 11:25:24 PM,03/05/2011 11:26:38 PM,03/05/2011 11:26:59 PM,03/05/2011 11:28:24 PM,03/05/2011 11:31:38 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 11:38:39 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",110640429-E33 -102430303,E29,10076729,Medical Incident,08/31/2010,08/31/2010,08/31/2010 04:51:22 PM,08/31/2010 04:54:59 PM,08/31/2010 04:55:32 PM,08/31/2010 04:56:23 PM,08/31/2010 04:59:15 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,08/31/2010 05:02:06 PM,1500 Block of BRYANT ST,SF,94103,B02,29,5222,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.767536533024, -122.410739256407)",102430303-E29 -131370053,E35,13046162,Alarms,05/17/2013,05/16/2013,05/17/2013 06:27:14 AM,05/17/2013 06:28:53 AM,05/17/2013 06:29:22 AM,05/17/2013 06:31:04 AM,05/17/2013 06:34:43 AM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Fire,05/17/2013 07:04:28 AM,500 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7886287320653, -122.398912581875)",131370053-E35 -102600318,54,10082281,Medical Incident,09/17/2010,09/17/2010,09/17/2010 07:00:03 PM,09/17/2010 07:01:16 PM,09/17/2010 07:01:56 PM,04/25/2016 02:08:33 PM,09/17/2010 07:05:20 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 07:09:19 PM,200 Block of NIAGARA AVE,SF,94112,B09,15,8312,2,3,3,true,,1,MEDIC,2,9,11,Outer Mission,"(37.7184046032624, -122.445324703758)",102600318-54 -160050582,53,16001870,Medical Incident,01/05/2016,01/04/2016,01/05/2016 07:21:58 AM,01/05/2016 07:24:09 AM,01/05/2016 07:24:27 AM,01/05/2016 07:24:46 AM,01/05/2016 07:33:36 AM,01/05/2016 07:55:22 AM,01/05/2016 07:58:47 AM,Code 2 Transport,01/05/2016 09:13:57 AM,100 Block of BLAKE ST,San Francisco,94118,B05,10,4454,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.781311939044, -122.450913525833)",160050582-53 -160032524,50,16001295,Medical Incident,01/03/2016,01/03/2016,01/03/2016 06:07:54 PM,01/03/2016 06:07:54 PM,01/03/2016 06:08:20 PM,01/03/2016 06:08:30 PM,01/03/2016 06:12:21 PM,01/03/2016 06:23:37 PM,01/03/2016 06:28:58 PM,Code 2 Transport,01/03/2016 06:57:24 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160032524-50 -130880424,E02,13029576,Medical Incident,03/29/2013,03/29/2013,03/29/2013 10:28:16 PM,03/29/2013 10:29:00 PM,03/29/2013 10:30:45 PM,03/29/2013 10:31:58 PM,03/29/2013 10:34:24 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 10:53:49 PM,100 Block of VALPARAISO ST,SF,94133,B01,28,1514,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Russian Hill,"(37.8011433372893, -122.415457652032)",130880424-E02 -132770387,E37,13094247,Gas Leak (Natural and LP Gases),10/04/2013,10/04/2013,10/04/2013 07:16:25 PM,10/04/2013 07:17:55 PM,10/04/2013 07:18:54 PM,10/04/2013 07:20:08 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,No Merit,10/04/2013 07:26:38 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,true,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",132770387-E37 -132080229,T03,13070447,Structure Fire,07/27/2013,07/27/2013,07/27/2013 05:19:43 PM,07/27/2013 05:19:43 PM,07/27/2013 05:20:11 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/27/2013 05:22:57 PM,POLK ST/MCALLISTER ST,SF,94102,B02,3,3113,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",132080229-T03 -160531402,79,16021179,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:53:11 AM,02/22/2016 11:54:13 AM,02/22/2016 11:54:37 AM,02/22/2016 11:55:18 AM,02/22/2016 12:17:31 PM,02/22/2016 12:17:33 PM,02/22/2016 12:56:07 PM,Code 2 Transport,02/22/2016 12:56:08 PM,OCEAN AV/PLYMOUTH AV,San Francisco,94112,B09,15,8472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",160531402-79 -111390258,E02,11046273,Structure Fire,05/19/2011,05/19/2011,05/19/2011 04:27:37 PM,05/19/2011 04:27:37 PM,05/19/2011 04:27:53 PM,05/19/2011 04:28:54 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 04:30:01 PM,KEARNY ST/SACRAMENTO ST,SF,94104,B01,13,1244,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7935650841454, -122.404613422408)",111390258-E02 -160533297,88,16021374,Medical Incident,02/22/2016,02/22/2016,02/22/2016 09:07:20 PM,02/22/2016 09:08:38 PM,02/22/2016 09:09:48 PM,02/22/2016 09:09:57 PM,02/22/2016 09:13:54 PM,02/22/2016 09:38:51 PM,02/22/2016 09:58:24 PM,Code 2 Transport,02/22/2016 10:12:03 PM,0 Block of 10TH ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762695066166, -122.41725760507)",160533297-88 -121630362,E34,12054200,Medical Incident,06/11/2012,06/11/2012,06/11/2012 08:42:20 PM,06/11/2012 08:44:22 PM,06/11/2012 08:44:46 PM,06/11/2012 08:45:43 PM,06/11/2012 08:47:06 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 09:02:48 PM,8100 Block of GEARY BLVD,SF,94121,B07,34,7274,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7790318016958, -122.506695255358)",121630362-E34 -132030208,83,13068788,Medical Incident,07/22/2013,07/22/2013,07/22/2013 02:22:46 PM,07/22/2013 02:24:45 PM,07/22/2013 02:24:52 PM,04/25/2016 01:51:41 PM,07/22/2013 02:27:01 PM,07/22/2013 02:42:26 PM,07/22/2013 03:00:35 PM,Code 2 Transport,07/22/2013 03:18:12 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7694504462794, -122.424435244186)",132030208-83 -121610310,T03,12053423,Structure Fire,06/09/2012,06/09/2012,06/09/2012 08:28:35 PM,06/09/2012 08:28:36 PM,06/09/2012 08:28:42 PM,06/09/2012 08:29:46 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/09/2012 08:30:38 PM,1200 Block of LARKIN ST,SF,94109,B04,3,1636,3,3,3,true,Alarm,1,TRUCK,2,4,3,Nob Hill,"(37.7891338877614, -122.418771494007)",121610310-T03 -160783674,AM20,16031183,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:56:59 PM,03/18/2016 08:57:33 PM,03/18/2016 08:57:44 PM,03/18/2016 08:58:10 PM,03/18/2016 09:01:26 PM,03/18/2016 09:24:48 PM,03/18/2016 09:36:19 PM,Code 2 Transport,03/18/2016 10:05:27 PM,MCALLISTER ST/HYDE ST,San Francisco,94102,B02,3,1553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7807191768764, -122.415315616471)",160783674-AM20 -160713369,72,16028384,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:11:58 PM,03/11/2016 09:13:44 PM,03/11/2016 09:14:24 PM,03/11/2016 09:14:43 PM,03/11/2016 09:18:14 PM,03/11/2016 09:38:06 PM,03/11/2016 09:57:37 PM,Code 2 Transport,03/11/2016 10:24:17 PM,400 Block of PENNSYLVANIA AVE,San Francisco,94107,B10,37,2474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7608348188682, -122.393495540914)",160713369-72 -160823260,72,16032705,Medical Incident,03/22/2016,03/22/2016,03/22/2016 06:48:41 PM,03/22/2016 06:48:41 PM,03/22/2016 06:49:51 PM,03/22/2016 06:49:59 PM,03/22/2016 06:50:39 PM,03/22/2016 07:10:40 PM,03/22/2016 07:25:57 PM,Code 2 Transport,03/22/2016 08:06:11 PM,3300 Block of 3RD ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,None,None,"(37.7475912199361, -122.387182780653)",160823260-72 -112570297,59,11084845,Medical Incident,09/14/2011,09/14/2011,09/14/2011 08:10:15 PM,09/14/2011 08:12:56 PM,09/14/2011 08:13:12 PM,09/14/2011 08:30:14 PM,09/14/2011 08:35:12 PM,09/14/2011 08:50:45 PM,09/14/2011 09:04:21 PM,Code 2 Transport,09/14/2011 09:25:38 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,2,2,2,true,,1,MEDIC,3,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",112570297-59 -131330313,E06,13044966,Medical Incident,05/13/2013,05/13/2013,05/13/2013 06:01:04 PM,05/13/2013 06:01:55 PM,05/13/2013 06:02:22 PM,05/13/2013 06:04:41 PM,05/13/2013 06:05:25 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 06:20:45 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",131330313-E06 -160741965,KM04,16029354,Medical Incident,03/14/2016,03/14/2016,03/14/2016 01:35:57 PM,03/14/2016 01:37:08 PM,03/14/2016 01:39:09 PM,03/14/2016 01:39:46 PM,03/14/2016 01:48:04 PM,03/14/2016 02:15:25 PM,03/14/2016 02:28:36 PM,Code 2 Transport,03/14/2016 03:05:22 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160741965-KM04 -111500206,E01,11049725,Structure Fire,05/30/2011,05/30/2011,05/30/2011 03:30:59 PM,05/30/2011 03:32:58 PM,05/30/2011 03:33:12 PM,05/30/2011 03:34:23 PM,05/30/2011 03:36:33 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 03:38:48 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,5,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",111500206-E01 -113210185,94,11106628,Medical Incident,11/17/2011,11/17/2011,11/17/2011 12:18:33 PM,11/17/2011 12:23:02 PM,11/17/2011 12:25:25 PM,11/17/2011 12:27:25 PM,11/17/2011 12:38:15 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/17/2011 01:06:37 PM,4100 Block of CLEMENT ST,SF,94121,B07,34,7266,1,1,2,true,,1,MEDIC,1,7,1,Lincoln Park,"(37.7812064711372, -122.503627512321)",113210185-94 -111630154,E41,11053797,Medical Incident,06/12/2011,06/12/2011,06/12/2011 12:24:04 PM,06/12/2011 12:26:28 PM,06/12/2011 12:26:40 PM,06/12/2011 12:27:38 PM,06/12/2011 12:28:44 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Other,06/12/2011 12:44:50 PM,1200 Block of JACKSON ST,SF,94109,B01,41,1535,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7948284980697, -122.415638166928)",111630154-E41 -160802589,88,16031890,Medical Incident,03/20/2016,03/20/2016,03/20/2016 05:19:19 PM,03/20/2016 05:19:19 PM,03/20/2016 05:20:01 PM,03/20/2016 05:20:42 PM,03/20/2016 05:29:30 PM,03/20/2016 05:45:40 PM,03/20/2016 06:00:01 PM,Code 2 Transport,03/20/2016 06:16:21 PM,700 Block of STANYAN ST,San Francisco,94122,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Golden Gate Park,"(37.7686969786551, -122.453512911126)",160802589-88 -111110310,55,11036766,Medical Incident,04/21/2011,04/21/2011,04/21/2011 06:42:54 PM,04/21/2011 06:43:47 PM,04/21/2011 06:44:02 PM,04/21/2011 06:44:15 PM,04/21/2011 06:46:30 PM,04/21/2011 07:23:51 PM,04/21/2011 07:40:09 PM,Code 2 Transport,04/21/2011 08:08:27 PM,700 Block of PARKER AVE,SF,94118,B05,21,4542,2,2,2,true,,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7753639647551, -122.452955343611)",111110310-55 -160601995,74,16023926,Medical Incident,02/29/2016,02/29/2016,02/29/2016 02:21:43 PM,02/29/2016 02:24:45 PM,02/29/2016 02:25:38 PM,02/29/2016 02:25:45 PM,02/29/2016 02:37:40 PM,02/29/2016 02:48:45 PM,02/29/2016 02:56:48 PM,Code 2 Transport,02/29/2016 03:33:23 PM,200 Block of GOUGH ST,San Francisco,94102,B02,36,3266,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.775244832582, -122.422713876818)",160601995-74 -111600307,T09,11052985,Structure Fire,06/09/2011,06/09/2011,06/09/2011 09:09:18 PM,06/09/2011 09:09:19 PM,06/09/2011 09:09:24 PM,06/09/2011 09:10:50 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 09:11:42 PM,25TH ST/WISCONSIN ST,SF,94107,B10,37,2615,3,3,3,false,,1,TRUCK,2,10,10,Potrero Hill,"(37.7521940654679, -122.398452381695)",111600307-T09 -140740104,AM02,14024959,Medical Incident,03/15/2014,03/15/2014,03/15/2014 09:09:09 AM,03/15/2014 09:11:42 AM,03/15/2014 09:13:59 AM,03/15/2014 09:14:54 AM,03/15/2014 09:23:03 AM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Patient Declined Transport,03/15/2014 09:32:35 AM,1000 Block of LARKIN ST,SAN FRANCISCO,94109,B04,3,1641,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7872715205959, -122.41824964748)",140740104-AM02 -120680116,KM11,12022509,Medical Incident,03/08/2012,03/08/2012,03/08/2012 10:36:27 AM,03/08/2012 10:37:07 AM,03/08/2012 10:38:01 AM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,04/25/2016 01:59:46 PM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",120680116-KM11 -140680310,55,14023129,Medical Incident,03/09/2014,03/09/2014,03/09/2014 10:50:43 PM,03/09/2014 10:51:53 PM,03/09/2014 10:54:07 PM,03/09/2014 10:54:15 PM,03/09/2014 11:00:43 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Patient Declined Transport,03/09/2014 11:03:25 PM,1800 Block of CLAY ST,SAN FRANCISCO,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7920157739195, -122.423506395119)",140680310-55 -102970402,81,10094944,Medical Incident,10/24/2010,10/24/2010,10/24/2010 07:07:49 PM,10/24/2010 07:08:32 PM,10/24/2010 07:08:51 PM,10/24/2010 07:09:45 PM,10/24/2010 07:14:49 PM,10/24/2010 07:29:49 PM,10/24/2010 07:35:09 PM,Code 2 Transport,10/24/2010 08:11:49 PM,1700 Block of WALLER ST,SF,94117,B05,12,4552,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7682837349171, -122.452502140464)",102970402-81 -110270136,E16,11008839,Alarms,01/27/2011,01/27/2011,01/27/2011 10:35:44 AM,01/27/2011 10:36:50 AM,01/27/2011 10:37:02 AM,01/27/2011 10:38:19 AM,01/27/2011 10:39:57 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Fire,01/27/2011 10:52:10 AM,2200 Block of UNION ST,SF,94123,B04,16,3552,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7970384069746, -122.43632472497)",110270136-E16 -160150589,62,16005868,Medical Incident,01/15/2016,01/14/2016,01/15/2016 07:17:52 AM,01/15/2016 07:18:02 AM,01/15/2016 07:18:11 AM,01/15/2016 07:19:23 AM,01/15/2016 07:22:24 AM,01/15/2016 07:43:14 AM,01/15/2016 07:55:03 AM,Fire,01/15/2016 08:41:56 AM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160150589-62 -160761730,AM04,16030136,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:29:27 PM,03/16/2016 12:32:32 PM,03/16/2016 12:38:01 PM,03/16/2016 12:38:09 PM,03/16/2016 12:47:34 PM,03/16/2016 01:25:51 PM,03/16/2016 01:46:27 PM,Code 2 Transport,03/16/2016 02:05:23 PM,3000 Block of CABRILLO ST,San Francisco,94121,B07,14,7242,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7741733058215, -122.491291710487)",160761730-AM04 -140010096,E06,14000072,Structure Fire,01/01/2014,12/31/2013,01/01/2014 01:15:13 AM,01/01/2014 01:18:33 AM,01/01/2014 01:19:22 AM,01/01/2014 01:19:46 AM,01/01/2014 01:20:59 AM,04/25/2016 01:48:57 PM,04/25/2016 01:48:57 PM,Other,01/01/2014 01:54:14 AM,900 Block of PAGE ST,SF,94117,B05,21,4144,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.772256599569, -122.436388097743)",140010096-E06 -160863284,79,16034326,Medical Incident,03/26/2016,03/26/2016,03/26/2016 07:53:06 PM,03/26/2016 07:56:26 PM,03/26/2016 07:57:23 PM,03/26/2016 07:57:36 PM,03/26/2016 07:59:35 PM,03/26/2016 08:14:28 PM,03/26/2016 08:51:55 PM,Code 2 Transport,03/26/2016 09:38:24 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",160863284-79 -160572106,KM04,16022789,Medical Incident,02/26/2016,02/26/2016,02/26/2016 02:36:15 PM,02/26/2016 02:36:54 PM,02/26/2016 02:37:34 PM,02/26/2016 02:38:23 PM,02/26/2016 02:49:55 PM,02/26/2016 03:07:16 PM,02/26/2016 03:30:52 PM,Code 2 Transport,02/26/2016 04:09:05 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160572106-KM04 -160661856,KM12,16026413,Medical Incident,03/06/2016,03/06/2016,03/06/2016 02:34:48 PM,03/06/2016 02:36:53 PM,03/06/2016 02:37:54 PM,03/06/2016 02:38:34 PM,03/06/2016 02:45:00 PM,03/06/2016 03:17:13 PM,03/06/2016 03:29:00 PM,Code 2 Transport,03/06/2016 04:19:14 PM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160661856-KM12 -132560367,E43,13086708,Medical Incident,09/13/2013,09/13/2013,09/13/2013 08:52:48 PM,09/13/2013 08:54:34 PM,09/13/2013 08:54:44 PM,09/13/2013 08:55:23 PM,09/13/2013 08:58:05 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 09:03:17 PM,300 Block of BRUNSWICK ST,SF,94112,B09,43,6217,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7110609171929, -122.441929369106)",132560367-E43 -110060338,B06,11002105,Structure Fire,01/06/2011,01/06/2011,01/06/2011 07:43:48 PM,01/06/2011 07:44:27 PM,01/06/2011 07:44:33 PM,01/06/2011 07:45:36 PM,01/06/2011 07:47:17 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/06/2011 07:56:42 PM,3400 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,false,,1,CHIEF,2,6,8,Mission,"(37.7552079402492, -122.423474114301)",110060338-B06 -123220094,B02,12106964,Structure Fire,11/17/2012,11/16/2012,11/17/2012 06:10:37 AM,11/17/2012 06:10:37 AM,11/17/2012 06:10:54 AM,11/17/2012 06:12:41 AM,11/17/2012 06:14:38 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/17/2012 06:16:49 AM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",123220094-B02 -121560308,RC3,12051749,Structure Fire,06/04/2012,06/04/2012,06/04/2012 07:36:33 PM,06/04/2012 07:38:00 PM,06/04/2012 07:38:25 PM,06/04/2012 07:46:31 PM,06/04/2012 07:51:36 PM,04/25/2016 01:58:22 PM,04/25/2016 01:58:22 PM,Other,06/04/2012 08:09:05 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Fire,1,RESCUE CAPTAIN,10,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",121560308-RC3 -121640374,AM18,12054559,Medical Incident,06/12/2012,06/12/2012,06/12/2012 10:34:39 PM,06/12/2012 10:35:05 PM,06/12/2012 10:35:15 PM,06/12/2012 10:35:56 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 10:41:07 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",121640374-AM18 -121370325,E21,12045629,Citizen Assist / Service Call,05/16/2012,05/16/2012,05/16/2012 06:23:23 PM,05/16/2012 06:24:31 PM,05/16/2012 06:24:38 PM,05/16/2012 06:25:46 PM,05/16/2012 06:31:09 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/16/2012 06:42:39 PM,1300 Block of MASONIC AVE,SF,94117,B05,21,4466,3,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7683637280532, -122.444850432801)",121370325-E21 -160543484,67,16021753,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:35:50 PM,02/23/2016 07:35:50 PM,02/23/2016 07:36:41 PM,02/23/2016 07:36:49 PM,02/23/2016 07:41:57 PM,02/23/2016 07:58:41 PM,02/23/2016 08:14:54 PM,Code 2 Transport,02/23/2016 09:27:44 PM,1300 Block of STEVENSON ST,San Francisco,94103,B02,36,5126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.770783953905, -122.421596103834)",160543484-67 -160443632,71,16017882,Medical Incident,02/13/2016,02/13/2016,02/13/2016 09:55:59 PM,02/13/2016 09:55:59 PM,02/13/2016 09:56:34 PM,02/13/2016 09:56:39 PM,02/13/2016 10:01:57 PM,02/13/2016 10:19:34 PM,02/13/2016 10:50:51 PM,Code 2 Transport,02/13/2016 11:06:31 PM,1300 Block of PALOU AVE,San Francisco,94124,B10,17,6551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731368836689, -122.38618654066)",160443632-71 -132910068,67,13098920,Medical Incident,10/18/2013,10/17/2013,10/18/2013 06:51:08 AM,10/18/2013 06:52:21 AM,10/18/2013 06:52:46 AM,10/18/2013 06:53:19 AM,10/18/2013 06:57:55 AM,10/18/2013 07:28:47 AM,10/18/2013 07:47:21 AM,Code 2 Transport,10/18/2013 08:12:47 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",132910068-67 -103530310,E03,10113433,Medical Incident,12/19/2010,12/19/2010,12/19/2010 05:45:04 PM,12/19/2010 05:46:52 PM,12/19/2010 05:47:33 PM,12/19/2010 05:48:36 PM,12/19/2010 05:50:03 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,Other,12/19/2010 05:58:46 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",103530310-E03 -160590845,50,16023430,Medical Incident,02/28/2016,02/28/2016,02/28/2016 08:32:53 AM,02/28/2016 08:34:24 AM,02/28/2016 08:34:57 AM,02/28/2016 08:35:13 AM,02/28/2016 08:42:28 AM,02/28/2016 08:53:23 AM,02/28/2016 09:16:52 AM,Code 2 Transport,02/28/2016 09:52:01 AM,SANSOME ST/PINE ST,San Francisco,94104,B01,13,1165,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7921084008601, -122.400933083929)",160590845-50 -131280083,E06,13043197,Medical Incident,05/08/2013,05/07/2013,05/08/2013 07:17:59 AM,05/08/2013 07:19:00 AM,05/08/2013 07:23:00 AM,05/08/2013 07:24:24 AM,05/08/2013 07:28:37 AM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 07:31:08 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643815293641, -122.417340510338)",131280083-E06 -160061601,85,16002384,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:12:51 PM,01/06/2016 12:13:46 PM,01/06/2016 12:14:27 PM,01/06/2016 12:17:14 PM,01/06/2016 12:26:38 PM,01/06/2016 12:41:51 PM,01/06/2016 12:57:37 PM,Code 2 Transport,01/06/2016 01:43:52 PM,200 Block of 21ST AVE,San Francisco,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",160061601-85 -121440353,E17,12047978,Other,05/23/2012,05/23/2012,05/23/2012 11:38:48 PM,05/23/2012 11:39:06 PM,05/23/2012 11:39:24 PM,05/23/2012 11:41:23 PM,05/23/2012 11:45:18 PM,04/25/2016 01:58:32 PM,04/25/2016 01:58:32 PM,Fire,05/23/2012 11:54:43 PM,2400 Block of GRIFFITH ST,SF,94124,B10,17,6573,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7191884467237, -122.386431507122)",121440353-E17 -122580046,E38,12085172,Gas Leak (Natural and LP Gases),09/14/2012,09/13/2012,09/14/2012 04:56:04 AM,09/14/2012 04:57:59 AM,09/14/2012 04:58:35 AM,09/14/2012 05:00:48 AM,09/14/2012 05:06:37 AM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/14/2012 05:06:39 AM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",122580046-E38 -130420276,79,13014400,Medical Incident,02/11/2013,02/11/2013,02/11/2013 05:30:06 PM,02/11/2013 05:30:43 PM,02/11/2013 05:31:17 PM,02/11/2013 05:34:14 PM,02/11/2013 05:34:44 PM,02/11/2013 05:48:42 PM,02/11/2013 05:52:46 PM,Code 2 Transport,02/11/2013 06:11:57 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130420276-79 -132040129,T17,13069046,Administrative,07/23/2013,07/23/2013,07/23/2013 10:41:09 AM,07/23/2013 10:41:13 AM,07/23/2013 10:41:40 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 10:41:40 AM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",132040129-T17 -160090473,78,16003531,Medical Incident,01/09/2016,01/08/2016,01/09/2016 04:50:32 AM,01/09/2016 04:52:48 AM,01/09/2016 04:53:11 AM,01/09/2016 04:54:46 AM,01/09/2016 05:00:10 AM,01/09/2016 05:20:21 AM,01/09/2016 05:38:28 AM,Code 2 Transport,01/09/2016 06:02:40 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160090473-78 -160892658,75,16035405,Medical Incident,03/29/2016,03/29/2016,03/29/2016 04:34:17 PM,03/29/2016 04:35:39 PM,03/29/2016 04:36:26 PM,03/29/2016 04:36:55 PM,03/29/2016 04:41:18 PM,03/29/2016 04:51:19 PM,03/29/2016 04:58:05 PM,Code 2 Transport,03/29/2016 05:31:31 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160892658-75 -103340119,KM01,10106827,Medical Incident,11/30/2010,11/30/2010,11/30/2010 10:34:05 AM,11/30/2010 10:36:32 AM,11/30/2010 10:37:43 AM,11/30/2010 10:38:17 AM,11/30/2010 10:45:02 AM,11/30/2010 11:00:08 AM,11/30/2010 11:10:14 AM,Code 2 Transport,11/30/2010 11:39:35 AM,1100 Block of SCOTT ST,SF,94115,B05,5,4133,3,3,3,false,,1,PRIVATE,2,5,5,Western Addition,"(37.7803259118056, -122.437234296615)",103340119-KM01 -160370437,70,16014536,Medical Incident,02/06/2016,02/05/2016,02/06/2016 02:17:03 AM,02/06/2016 02:18:38 AM,02/06/2016 02:18:46 AM,02/06/2016 02:20:40 AM,02/06/2016 02:34:39 AM,02/06/2016 02:42:35 AM,02/06/2016 02:50:33 AM,Code 2 Transport,02/06/2016 03:44:08 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160370437-70 -160383812,87,16015430,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:45:31 PM,02/07/2016 11:45:31 PM,02/07/2016 11:46:10 PM,02/07/2016 11:46:24 PM,02/07/2016 11:52:26 PM,02/07/2016 11:56:46 PM,02/08/2016 12:06:20 AM,Code 2 Transport,02/08/2016 12:42:59 AM,400 Block of PAGE ST,San Francisco,94102,B02,36,3422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.77329739865, -122.428162797456)",160383812-87 -111860228,RC3,11061502,Medical Incident,07/05/2011,07/05/2011,07/05/2011 01:38:34 PM,07/05/2011 01:39:20 PM,07/05/2011 01:39:39 PM,07/05/2011 01:39:47 PM,07/05/2011 01:43:51 PM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/05/2011 01:48:56 PM,500 Block of 14TH ST,SF,94103,B02,6,5214,E,E,3,true,,1,RESCUE CAPTAIN,3,2,8,Mission,"(37.768032836315, -122.42488784779)",111860228-RC3 -112220162,E21,11073316,Structure Fire,08/10/2011,08/10/2011,08/10/2011 12:45:28 PM,08/10/2011 12:45:29 PM,08/10/2011 12:46:10 PM,08/10/2011 12:47:05 PM,08/10/2011 12:49:27 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 12:49:43 PM,FILLMORE ST/MCALLISTER ST,SF,94115,B05,5,3534,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",112220162-E21 -113110092,KM12,11103277,Medical Incident,11/07/2011,11/07/2011,11/07/2011 08:34:06 AM,11/07/2011 08:34:54 AM,11/07/2011 08:35:12 AM,11/07/2011 08:36:14 AM,11/07/2011 08:49:55 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Patient Declined Transport,11/07/2011 09:06:07 AM,2100 Block of JENNINGS ST,SF,94124,B10,17,6651,3,3,3,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",113110092-KM12 -121170006,E09,12038631,Alarms,04/26/2012,04/25/2012,04/26/2012 12:26:53 AM,04/26/2012 12:29:29 AM,04/26/2012 12:31:14 AM,04/26/2012 12:33:15 AM,04/26/2012 12:34:40 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,No Merit,04/26/2012 12:35:02 AM,200 Block of NAPOLEON ST,SF,94124,B10,9,6412,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7469874361298, -122.399147231229)",121170006-E09 -123200235,E03,12106424,Medical Incident,11/15/2012,11/15/2012,11/15/2012 03:37:47 PM,11/15/2012 03:38:13 PM,11/15/2012 03:38:31 PM,11/15/2012 03:40:09 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 03:42:00 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7845808066125, -122.414593411257)",123200235-E03 -113330050,E03,11110217,Structure Fire,11/29/2011,11/28/2011,11/29/2011 05:38:43 AM,11/29/2011 05:38:43 AM,11/29/2011 05:39:26 AM,11/29/2011 05:40:42 AM,11/29/2011 05:41:29 AM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 05:41:57 AM,LEAVENWORTH ST/POST ST,SF,94109,B04,3,1543,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7874538432357, -122.414995423077)",113330050-E03 -122320200,E08,12076956,Medical Incident,08/19/2012,08/19/2012,08/19/2012 01:50:15 PM,08/19/2012 01:50:44 PM,08/19/2012 01:51:26 PM,08/19/2012 01:52:52 PM,08/19/2012 01:54:36 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 02:03:10 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",122320200-E08 -131910241,84,13065086,Medical Incident,07/10/2013,07/10/2013,07/10/2013 04:08:04 PM,07/10/2013 04:09:36 PM,07/10/2013 04:09:53 PM,07/10/2013 04:10:10 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/10/2013 04:18:58 PM,300 Block of TOPEKA AVE,SF,94124,B10,42,6473,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7315669733056, -122.395295699157)",131910241-84 -112110360,62,11069797,Medical Incident,07/30/2011,07/30/2011,07/30/2011 11:32:30 PM,07/30/2011 11:36:05 PM,07/30/2011 11:36:51 PM,07/30/2011 11:37:47 PM,07/30/2011 11:41:24 PM,07/31/2011 12:12:36 AM,07/31/2011 12:30:23 AM,Code 2 Transport,07/31/2011 12:44:36 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",112110360-62 -160403267,89,16016184,Medical Incident,02/09/2016,02/09/2016,02/09/2016 07:30:36 PM,02/09/2016 07:32:36 PM,02/09/2016 07:35:07 PM,02/09/2016 07:35:21 PM,02/09/2016 07:39:16 PM,02/09/2016 08:02:37 PM,02/09/2016 08:09:01 PM,Code 2 Transport,02/09/2016 08:37:09 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160403267-89 -130400165,55,13013644,Medical Incident,02/09/2013,02/09/2013,02/09/2013 11:44:16 AM,02/09/2013 11:46:12 AM,02/09/2013 11:46:24 AM,02/09/2013 11:46:39 AM,02/09/2013 11:53:58 AM,02/09/2013 12:19:56 PM,02/09/2013 12:38:06 PM,Code 2 Transport,02/09/2013 01:03:37 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",130400165-55 -111030305,96,11034236,Medical Incident,04/13/2011,04/13/2011,04/13/2011 06:18:57 PM,04/13/2011 06:19:37 PM,04/13/2011 06:21:51 PM,04/13/2011 06:21:57 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/13/2011 06:23:40 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,2,2,true,,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",111030305-96 -160373071,71,16014829,Medical Incident,02/06/2016,02/06/2016,02/06/2016 06:09:54 PM,02/06/2016 06:11:58 PM,02/06/2016 06:12:39 PM,02/06/2016 06:12:52 PM,02/06/2016 06:21:15 PM,02/06/2016 06:39:55 PM,02/06/2016 06:49:22 PM,Code 2 Transport,02/06/2016 07:24:19 PM,MASON ST/EDDY ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160373071-71 -113100009,84,11102884,Medical Incident,11/06/2011,11/05/2011,11/06/2011 12:37:50 AM,11/06/2011 12:38:01 AM,11/06/2011 12:39:25 AM,11/06/2011 12:40:00 AM,11/06/2011 12:44:13 AM,11/06/2011 01:00:35 AM,11/06/2011 01:06:09 AM,Code 2 Transport,11/06/2011 01:30:03 AM,ELLIS ST/TAYLOR ST,SF,94102,B03,1,1366,2,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",113100009-84 -160242773,76,16009631,Medical Incident,01/24/2016,01/24/2016,01/24/2016 06:19:00 PM,01/24/2016 06:19:19 PM,01/24/2016 06:19:35 PM,01/24/2016 06:19:48 PM,01/24/2016 06:23:45 PM,01/24/2016 06:32:56 PM,01/24/2016 06:32:56 PM,Code 3 Transport,01/24/2016 08:11:39 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160242773-76 -121680325,55,12055851,Medical Incident,06/16/2012,06/16/2012,06/16/2012 06:12:00 PM,06/16/2012 06:14:07 PM,06/16/2012 06:23:30 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/16/2012 06:38:56 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,1,1,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",121680325-55 -133140082,E07,13106677,Medical Incident,11/10/2013,11/09/2013,11/10/2013 07:32:05 AM,11/10/2013 07:33:09 AM,11/10/2013 07:33:30 AM,11/10/2013 07:34:24 AM,11/10/2013 07:36:09 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/10/2013 07:46:33 AM,600 Block of ALABAMA ST,SF,94110,B02,7,5426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7610105720239, -122.411919466827)",133140082-E07 -160231809,62,16009164,Medical Incident,01/23/2016,01/23/2016,01/23/2016 01:30:55 PM,01/23/2016 01:35:21 PM,01/23/2016 01:35:58 PM,01/23/2016 01:36:31 PM,01/23/2016 01:50:19 PM,01/23/2016 02:06:37 PM,01/23/2016 02:34:56 PM,Code 2 Transport,01/23/2016 03:04:58 PM,1700 Block of 14TH AVE,San Francisco,94122,B08,40,7352,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7545363237624, -122.471116094101)",160231809-62 -132560349,E03,13086691,Structure Fire,09/13/2013,09/13/2013,09/13/2013 08:01:30 PM,09/13/2013 08:01:30 PM,09/13/2013 08:01:35 PM,09/13/2013 08:02:20 PM,09/13/2013 08:03:46 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 08:16:25 PM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",132560349-E03 -160143919,KM03,16005772,Medical Incident,01/14/2016,01/14/2016,01/14/2016 10:56:23 PM,01/14/2016 10:57:12 PM,01/14/2016 10:57:33 PM,01/14/2016 11:00:12 PM,01/14/2016 11:14:17 PM,01/14/2016 11:18:10 PM,01/14/2016 11:21:20 PM,Code 2 Transport,01/14/2016 11:48:54 PM,700 Block of 7TH AVE,San Francisco,94118,B07,31,7132,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,4,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",160143919-KM03 -160333172,64,16013141,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:13:42 PM,02/02/2016 08:16:04 PM,02/02/2016 08:16:16 PM,02/02/2016 08:16:49 PM,02/02/2016 08:21:50 PM,02/02/2016 08:33:45 PM,02/02/2016 08:42:08 PM,Code 2 Transport,02/02/2016 09:36:21 PM,700 Block of HAIGHT ST,San Francisco,94117,B05,21,4142,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7715296496414, -122.434542909332)",160333172-64 -160160253,63,16006255,Medical Incident,01/16/2016,01/15/2016,01/16/2016 01:44:07 AM,01/16/2016 01:45:50 AM,01/16/2016 01:47:28 AM,01/16/2016 01:47:44 AM,01/16/2016 01:50:46 AM,01/16/2016 02:07:30 AM,01/16/2016 02:20:28 AM,Code 2 Transport,01/16/2016 02:49:22 AM,16TH ST/GUERRERO ST,San Francisco,94103,B02,6,5235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7647834522541, -122.424102685064)",160160253-63 -102480200,83,10078379,Medical Incident,09/05/2010,09/05/2010,09/05/2010 01:56:52 PM,09/05/2010 01:57:32 PM,09/05/2010 01:57:51 PM,09/05/2010 01:59:05 PM,09/05/2010 02:05:12 PM,09/05/2010 02:29:00 PM,09/05/2010 02:35:02 PM,Code 3 Transport,09/05/2010 03:05:45 PM,0 Block of CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,,1,MEDIC,2,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",102480200-83 -111660200,KM04,11054803,Medical Incident,06/15/2011,06/15/2011,06/15/2011 01:27:50 PM,06/15/2011 01:30:44 PM,06/15/2011 01:31:14 PM,04/25/2016 02:04:09 PM,06/15/2011 01:37:59 PM,06/15/2011 01:47:36 PM,06/15/2011 02:00:54 PM,Code 2 Transport,06/15/2011 02:24:28 PM,2000 Block of 23RD AVE,SF,94116,B08,40,7444,3,3,3,false,,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7493917486636, -122.480364209631)",111660200-KM04 -113050298,E01,11101364,Medical Incident,11/01/2011,11/01/2011,11/01/2011 04:06:58 PM,11/01/2011 04:07:38 PM,11/01/2011 04:09:21 PM,11/01/2011 04:11:44 PM,11/01/2011 04:13:58 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/01/2011 04:17:41 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",113050298-E01 -120640171,89,12021127,Medical Incident,03/04/2012,03/04/2012,03/04/2012 12:09:32 PM,03/04/2012 12:09:57 PM,03/04/2012 12:10:11 PM,03/04/2012 12:12:07 PM,04/25/2016 01:59:50 PM,03/04/2012 12:25:47 PM,03/04/2012 12:40:26 PM,Code 2 Transport,03/04/2012 01:20:05 PM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",120640171-89 -131650124,E01,13056001,Administrative,06/14/2013,06/14/2013,06/14/2013 09:55:44 AM,06/14/2013 09:56:30 AM,06/14/2013 09:56:42 AM,04/25/2016 01:52:18 PM,06/14/2013 09:57:08 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 09:57:13 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",131650124-E01 -130090329,T13,13003227,Alarms,01/09/2013,01/09/2013,01/09/2013 08:17:27 PM,01/09/2013 08:18:39 PM,01/09/2013 08:18:46 PM,01/09/2013 08:20:44 PM,01/09/2013 08:22:50 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 08:30:06 PM,0 Block of FRONT ST,SF,94111,B01,13,1136,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7920192720524, -122.39857867407)",130090329-T13 -160113512,58,16004571,Medical Incident,01/11/2016,01/11/2016,01/11/2016 10:11:39 PM,01/11/2016 10:13:45 PM,01/11/2016 10:14:18 PM,01/11/2016 10:14:30 PM,01/11/2016 10:20:27 PM,01/11/2016 10:34:23 PM,01/11/2016 10:39:08 PM,Code 2 Transport,01/11/2016 11:34:07 PM,1000 Block of NOE ST,San Francisco,94114,B06,11,5522,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",160113512-58 -121160141,93,12038409,Medical Incident,04/25/2012,04/25/2012,04/25/2012 11:15:47 AM,04/25/2012 11:16:44 AM,04/25/2012 11:17:33 AM,04/25/2016 01:59:00 PM,04/25/2012 11:23:31 AM,04/25/2012 11:42:34 AM,04/25/2012 12:08:32 PM,Code 2 Transport,04/25/2012 12:29:27 PM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7735946111262, -122.402419477738)",121160141-93 -113390086,E23,11112278,Alarms,12/05/2011,12/05/2011,12/05/2011 09:40:19 AM,12/05/2011 09:40:50 AM,12/05/2011 09:41:20 AM,12/05/2011 09:43:21 AM,12/05/2011 09:44:38 AM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Fire,12/05/2011 09:46:30 AM,4200 Block of LAWTON ST,SF,94122,B08,23,7724,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7565201491444, -122.508349925919)",113390086-E23 -130740312,E20,13024786,Structure Fire,03/15/2013,03/15/2013,03/15/2013 06:47:08 PM,03/15/2013 06:47:57 PM,03/15/2013 06:48:36 PM,03/15/2013 06:49:34 PM,03/15/2013 06:52:07 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 06:53:33 PM,100 Block of LENOX WAY,SF,94127,B08,39,8611,3,3,3,true,Alarm,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7417568103981, -122.465616085454)",130740312-E20 -120170191,KM10,12005710,Medical Incident,01/17/2012,01/17/2012,01/17/2012 02:06:54 PM,01/17/2012 02:08:02 PM,01/17/2012 02:08:31 PM,01/17/2012 02:09:24 PM,01/17/2012 02:12:20 PM,01/17/2012 02:20:04 PM,01/17/2012 02:39:58 PM,Code 2 Transport,01/17/2012 02:56:42 PM,400 Block of HAIGHT ST,SF,94117,B02,6,3524,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",120170191-KM10 -122860101,T07,12094544,Alarms,10/12/2012,10/12/2012,10/12/2012 10:04:14 AM,10/12/2012 10:04:14 AM,10/12/2012 10:04:21 AM,10/12/2012 10:05:35 AM,10/12/2012 10:09:09 AM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 10:12:52 AM,3400 Block of 24TH ST,SF,94110,B06,11,5524,3,3,3,true,Alarm,1,TRUCK,1,6,8,Mission,"(37.7520058586101, -122.421363754128)",122860101-T07 -140490372,55,14016821,Medical Incident,02/18/2014,02/18/2014,02/18/2014 10:32:31 PM,02/18/2014 10:34:53 PM,02/18/2014 10:35:24 PM,02/18/2014 10:35:34 PM,04/25/2016 01:48:08 PM,02/18/2014 11:01:25 PM,02/18/2014 11:15:41 PM,Code 2 Transport,02/18/2014 11:31:25 PM,1400 Block of REVERE AVE,SF,94124,B10,17,6571,3,1,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7301191034184, -122.387315155313)",140490372-55 -132320192,E15,13078359,Structure Fire,08/20/2013,08/20/2013,08/20/2013 01:43:34 PM,08/20/2013 01:43:34 PM,08/20/2013 01:44:34 PM,08/20/2013 01:45:41 PM,08/20/2013 01:47:15 PM,04/25/2016 01:51:12 PM,04/25/2016 01:51:12 PM,Other,08/20/2013 01:47:34 PM,OCEAN AV/HOWTH ST,SF,94112,B09,15,8314,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7229613197443, -122.449558618759)",132320192-E15 -121810218,E29,12060294,Structure Fire,06/29/2012,06/29/2012,06/29/2012 02:43:47 PM,06/29/2012 02:45:35 PM,06/29/2012 02:46:01 PM,06/29/2012 02:46:59 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,04/25/2016 01:57:57 PM,Other,06/29/2012 02:52:37 PM,1200 Block of UTAH ST,SF,94110,B10,9,2562,3,3,3,true,Fire,1,ENGINE,10,10,10,Mission,"(37.7536963307706, -122.405461613953)",121810218-E29 -160223855,AM18,16008973,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:47:25 PM,01/22/2016 10:49:51 PM,01/22/2016 10:50:34 PM,01/22/2016 10:51:25 PM,01/22/2016 11:03:44 PM,01/22/2016 11:20:59 PM,01/22/2016 11:42:51 PM,Code 2 Transport,01/23/2016 12:21:54 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",160223855-AM18 -140010505,86,14000426,Traffic Collision,01/01/2014,01/01/2014,01/01/2014 06:08:02 PM,01/01/2014 06:09:13 PM,01/01/2014 06:14:09 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/01/2014 06:14:51 PM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,,3,3,false,Potentially Life-Threatening,1,MEDIC,7,5,2,Western Addition,"(37.7821816632884, -122.44131673326)",140010505-86 -132820043,RC1,13095839,Medical Incident,10/09/2013,10/08/2013,10/09/2013 06:08:53 AM,10/09/2013 06:09:16 AM,10/09/2013 06:12:41 AM,10/09/2013 06:15:10 AM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/09/2013 06:15:50 AM,1000 Block of MARKET ST,SF,94103,B03,1,2248,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7812876870909, -122.411318055371)",132820043-RC1 -102740116,E44,10086963,Medical Incident,10/01/2010,10/01/2010,10/01/2010 10:43:24 AM,10/01/2010 10:45:35 AM,10/01/2010 10:46:31 AM,10/01/2010 10:47:56 AM,10/01/2010 10:52:06 AM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 11:12:01 AM,2400 Block of KEITH ST,SF,94124,B10,17,6546,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",102740116-E44 -111320087,E02,11043549,Medical Incident,05/12/2011,05/12/2011,05/12/2011 08:21:43 AM,05/12/2011 08:28:32 AM,05/12/2011 08:33:28 AM,05/12/2011 08:52:52 AM,05/12/2011 08:55:53 AM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,Unable to Locate,05/12/2011 08:57:54 AM,BROADWAY/BATTERY ST,SF,94111,B01,13,1155,2,2,2,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7985800532877, -122.401051292992)",111320087-E02 -102680106,B07,10084822,Alarms,09/25/2010,09/25/2010,09/25/2010 08:37:59 AM,09/25/2010 08:38:22 AM,09/25/2010 08:38:40 AM,09/25/2010 08:39:32 AM,09/25/2010 08:42:09 AM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 08:46:45 AM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,false,,1,CHIEF,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",102680106-B07 -112220357,57,11073476,Medical Incident,08/10/2011,08/10/2011,08/10/2011 09:43:33 PM,08/10/2011 09:44:09 PM,08/10/2011 09:44:34 PM,08/10/2011 09:44:50 PM,08/10/2011 09:50:21 PM,08/10/2011 10:11:24 PM,08/10/2011 10:33:04 PM,Code 2 Transport,08/10/2011 11:09:05 PM,100 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7666629415025, -122.426732392551)",112220357-57 -110520057,72,11017127,Medical Incident,02/21/2011,02/20/2011,02/21/2011 06:51:05 AM,02/21/2011 06:51:38 AM,02/21/2011 06:51:53 AM,02/21/2011 06:52:02 AM,04/25/2016 02:05:58 PM,02/21/2011 06:57:21 AM,02/21/2011 07:38:26 AM,Code 2 Transport,02/21/2011 07:54:04 AM,100 Block of 22ND AVE,SF,94121,B07,14,7174,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7849595734598, -122.481791099239)",110520057-72 -160112689,53,16004497,Medical Incident,01/11/2016,01/11/2016,01/11/2016 05:38:01 PM,01/11/2016 05:39:48 PM,01/11/2016 05:41:12 PM,01/11/2016 05:41:29 PM,01/11/2016 05:56:10 PM,01/11/2016 06:07:18 PM,01/11/2016 06:19:57 PM,Code 2 Transport,01/11/2016 06:59:55 PM,5TH ST/HARRISON ST,San Francisco,94107,B03,8,2243,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7790321327374, -122.401843274439)",160112689-53 -160800660,71,16031714,Medical Incident,03/20/2016,03/19/2016,03/20/2016 05:49:34 AM,03/20/2016 05:52:39 AM,03/20/2016 05:53:01 AM,03/20/2016 05:53:13 AM,03/20/2016 05:59:26 AM,03/20/2016 06:05:09 AM,03/20/2016 06:21:50 AM,Code 2 Transport,03/20/2016 06:48:00 AM,100 Block of NORTHRIDGE RD,San Francisco,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7312838053833, -122.378204872935)",160800660-71 -160510315,75,16020332,Medical Incident,02/20/2016,02/19/2016,02/20/2016 02:34:44 AM,02/20/2016 02:36:14 AM,02/20/2016 02:36:30 AM,02/20/2016 02:36:36 AM,02/20/2016 03:00:07 AM,02/20/2016 03:26:29 AM,02/20/2016 03:39:37 AM,Code 2 Transport,02/20/2016 04:23:51 AM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160510315-75 -111590290,E01,11052673,Medical Incident,06/08/2011,06/08/2011,06/08/2011 07:09:28 PM,06/08/2011 07:11:57 PM,06/08/2011 07:12:09 PM,06/08/2011 07:12:28 PM,06/08/2011 07:14:49 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/08/2011 07:16:02 PM,MARKET ST/5TH ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",111590290-E01 -121250282,RS2,12041593,Structure Fire,05/04/2012,05/04/2012,05/04/2012 05:29:21 PM,05/04/2012 05:30:33 PM,05/04/2012 05:31:00 PM,05/04/2012 05:32:14 PM,05/04/2012 05:34:17 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 05:45:05 PM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,3,3,false,Fire,1,RESCUE SQUAD,1,6,9,Mission,"(37.752711512136, -122.411436461904)",121250282-RS2 -160102919,55,16004157,Medical Incident,01/10/2016,01/10/2016,01/10/2016 07:17:32 PM,01/10/2016 07:18:53 PM,01/10/2016 07:19:04 PM,01/10/2016 07:19:16 PM,01/10/2016 07:24:19 PM,01/10/2016 07:35:38 PM,01/10/2016 07:57:27 PM,Code 2 Transport,01/10/2016 08:21:29 PM,0 Block of NORTHRIDGE RD,San Francisco,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",160102919-55 -132190317,KM04,13074062,Medical Incident,08/07/2013,08/07/2013,08/07/2013 06:21:52 PM,08/07/2013 06:23:07 PM,08/07/2013 06:23:23 PM,08/07/2013 06:25:26 PM,08/07/2013 06:36:07 PM,08/07/2013 06:53:47 PM,08/07/2013 07:11:38 PM,Code 2 Transport,08/07/2013 07:36:35 PM,0 Block of MARVEL CT,SF,94121,B07,14,7246,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7829456223596, -122.492889548856)",132190317-KM04 -122470060,AM16,12081609,Medical Incident,09/03/2012,09/02/2012,09/03/2012 06:22:00 AM,09/03/2012 06:23:56 AM,09/03/2012 06:24:14 AM,09/03/2012 06:24:50 AM,09/03/2012 06:32:04 AM,09/03/2012 06:42:15 AM,09/03/2012 07:10:56 AM,Code 2 Transport,09/03/2012 07:40:30 AM,5600 Block of MISSION ST,SF,94112,B09,33,6211,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7111379399076, -122.447066438218)",122470060-AM16 -160201825,54,16008007,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:59:14 PM,01/20/2016 01:00:10 PM,01/20/2016 01:01:41 PM,01/20/2016 01:02:35 PM,01/20/2016 01:12:35 PM,01/20/2016 01:28:09 PM,01/20/2016 01:53:03 PM,Code 2 Transport,01/20/2016 03:11:15 PM,4400 Block of 3RD ST,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375328712716, -122.389598543699)",160201825-54 -160562460,AM12,16022449,Medical Incident,02/25/2016,02/25/2016,02/25/2016 03:23:43 PM,02/25/2016 03:23:43 PM,02/25/2016 03:27:28 PM,02/25/2016 03:28:01 PM,02/25/2016 03:54:14 PM,02/25/2016 03:56:15 PM,02/25/2016 04:01:45 PM,Code 2 Transport,02/25/2016 04:24:29 PM,LAUSSAT ST/FILLMORE ST,San Francisco,94117,B05,6,3526,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7716398058136, -122.430354563572)",160562460-AM12 -160013438,71,16000488,Medical Incident,01/01/2016,01/01/2016,01/01/2016 08:18:25 PM,01/01/2016 08:20:47 PM,01/01/2016 08:21:42 PM,01/01/2016 08:21:46 PM,01/01/2016 08:28:45 PM,01/01/2016 08:42:31 PM,01/01/2016 08:44:43 PM,Code 2 Transport,01/01/2016 09:25:29 PM,STANYAN ST/WALLER ST,San Francisco,94117,B05,12,4552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.7682460259648, -122.453352288829)",160013438-71 -160452156,71,16018179,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 03:38:39 PM,02/14/2016 03:38:39 PM,02/14/2016 03:38:53 PM,02/14/2016 03:39:04 PM,02/14/2016 03:44:13 PM,02/14/2016 04:03:58 PM,02/14/2016 04:31:37 PM,Code 2 Transport,02/14/2016 04:49:22 PM,NORTH POINT ST/POLK ST,San Francisco,94109,B01,28,1623,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.805286983829, -122.423655077131)",160452156-71 -160141899,87,16005582,Medical Incident,01/14/2016,01/14/2016,01/14/2016 01:28:50 PM,01/14/2016 01:28:50 PM,01/14/2016 01:29:19 PM,01/14/2016 01:29:29 PM,01/14/2016 01:37:16 PM,01/14/2016 01:47:01 PM,01/14/2016 02:17:11 PM,Code 2 Transport,01/14/2016 02:58:31 PM,SOUTH VAN NESS AV/101 SVN ON,San Francisco,94103,B02,36,5123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.769098278953, -122.417926081681)",160141899-87 -102670293,78,10084602,Medical Incident,09/24/2010,09/24/2010,09/24/2010 05:37:56 PM,09/24/2010 05:40:45 PM,09/24/2010 05:41:51 PM,04/25/2016 02:08:26 PM,09/24/2010 05:47:16 PM,09/24/2010 05:54:27 PM,09/24/2010 06:05:58 PM,Code 2 Transport,09/24/2010 06:38:11 PM,500 Block of SAN BRUNO AVE,SF,94107,B02,37,2455,2,2,2,true,,1,MEDIC,1,2,10,Potrero Hill,"(37.7628154721662, -122.405224148676)",102670293-78 -160433532,KM07,16017474,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:11:01 PM,02/12/2016 09:11:41 PM,02/12/2016 09:11:59 PM,02/12/2016 09:12:40 PM,02/12/2016 09:18:11 PM,02/12/2016 09:43:41 PM,02/12/2016 09:49:08 PM,Code 3 Transport,02/12/2016 10:51:18 PM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",160433532-KM07 -132610048,E08,13088274,Medical Incident,09/18/2013,09/17/2013,09/18/2013 05:57:44 AM,09/18/2013 05:59:50 AM,09/18/2013 06:00:03 AM,09/18/2013 06:02:03 AM,09/18/2013 06:03:26 AM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 06:20:56 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132610048-E08 -122550223,E01,12084317,Medical Incident,09/11/2012,09/11/2012,09/11/2012 02:17:30 PM,09/11/2012 02:18:34 PM,09/11/2012 02:19:33 PM,09/11/2012 02:20:00 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 02:25:41 PM,400 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,South of Market,"(37.7810688918781, -122.407387172098)",122550223-E01 -120580258,KM10,12019181,Medical Incident,02/27/2012,02/27/2012,02/27/2012 04:55:19 PM,02/27/2012 04:56:30 PM,02/27/2012 04:57:11 PM,02/27/2012 04:57:42 PM,02/27/2012 05:09:52 PM,02/27/2012 05:25:14 PM,02/27/2012 05:38:54 PM,Code 3 Transport,02/27/2012 06:16:50 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",120580258-KM10 -110940163,E18,11031184,Medical Incident,04/04/2011,04/04/2011,04/04/2011 11:59:01 AM,04/04/2011 12:00:36 PM,04/04/2011 12:01:49 PM,04/04/2011 12:02:53 PM,04/04/2011 12:04:58 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/04/2011 12:06:49 PM,1500 Block of 33RD AVE,SF,94122,B08,18,7542,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7582410131545, -122.491732792443)",110940163-E18 -130070022,E08,13002245,Medical Incident,01/07/2013,01/06/2013,01/07/2013 02:36:42 AM,01/07/2013 02:38:17 AM,01/07/2013 02:38:40 AM,01/07/2013 02:40:50 AM,01/07/2013 02:42:42 AM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/07/2013 02:46:40 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",130070022-E08 -110320235,E03,11010533,Medical Incident,02/01/2011,02/01/2011,02/01/2011 03:31:08 PM,02/01/2011 03:31:15 PM,02/01/2011 03:33:31 PM,02/01/2011 03:34:55 PM,02/01/2011 03:37:34 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/01/2011 03:50:37 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",110320235-E03 -140170347,77,14005968,Structure Fire,01/17/2014,01/17/2014,01/17/2014 09:00:56 PM,01/17/2014 09:03:40 PM,01/17/2014 09:04:01 PM,01/17/2014 09:04:15 PM,01/17/2014 09:10:17 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 09:12:53 PM,500 Block of PINE ST,SF,94108,B01,13,1243,,3,3,true,Alarm,1,MEDIC,8,1,3,Financial District/South Beach,"(37.79153985856, -122.404971889407)",140170347-77 -132320020,D3,13078227,Outside Fire,08/20/2013,08/19/2013,08/20/2013 02:55:11 AM,08/20/2013 02:56:21 AM,08/20/2013 02:57:22 AM,08/20/2013 02:58:52 AM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/20/2013 03:00:52 AM,MISSION ST/14TH ST,SF,94103,B02,36,5215,3,3,3,false,Fire,1,CHIEF,5,2,9,Mission,"(37.7682736543413, -122.419981513232)",132320020-D3 -160601017,AM10,16023829,Medical Incident,02/29/2016,02/29/2016,02/29/2016 09:41:58 AM,02/29/2016 09:43:50 AM,02/29/2016 09:46:04 AM,02/29/2016 09:46:42 AM,02/29/2016 09:48:57 AM,02/29/2016 09:56:24 AM,02/29/2016 09:59:18 AM,Code 3 Transport,02/29/2016 10:45:41 AM,24TH ST/HARRISON ST,San Francisco,94110,B06,7,5527,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7526285917569, -122.41189982284)",160601017-AM10 -160711228,65,16028184,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:47:39 AM,03/11/2016 10:49:05 AM,03/11/2016 10:49:41 AM,03/11/2016 10:49:52 AM,03/11/2016 10:56:48 AM,03/11/2016 11:14:31 AM,03/11/2016 11:52:25 AM,Code 2 Transport,03/11/2016 12:23:06 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7677331022924, -122.415606951318)",160711228-65 -132600441,E13,13088186,Administrative,09/17/2013,09/17/2013,09/17/2013 09:11:03 PM,09/17/2013 09:11:05 PM,09/17/2013 09:12:24 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 09:13:39 PM,500 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",132600441-E13 -160873578,AM20,16034755,Medical Incident,03/27/2016,03/27/2016,03/27/2016 10:40:08 PM,03/27/2016 10:42:55 PM,03/27/2016 10:43:17 PM,03/27/2016 10:43:39 PM,03/27/2016 11:01:43 PM,03/27/2016 11:11:02 PM,03/27/2016 11:25:20 PM,Code 2 Transport,03/27/2016 11:48:32 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",160873578-AM20 -133270437,54,13111294,Traffic Collision,11/23/2013,11/23/2013,11/23/2013 10:56:12 PM,11/23/2013 10:56:38 PM,11/23/2013 11:01:54 PM,11/23/2013 11:02:47 PM,11/23/2013 11:06:15 PM,11/23/2013 11:15:19 PM,11/23/2013 11:46:27 PM,Code 3 Transport,11/23/2013 11:54:55 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7571666434801, -122.416719595074)",133270437-54 -132900154,B01,13098607,Alarms,10/17/2013,10/17/2013,10/17/2013 10:38:28 AM,10/17/2013 10:39:33 AM,10/17/2013 10:40:07 AM,10/17/2013 10:40:51 AM,10/17/2013 10:46:52 AM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Fire,10/17/2013 10:51:21 AM,700 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,Alarm,1,CHIEF,2,3,6,South of Market,"(37.7841058563108, -122.401539484586)",132900154-B01 -122970066,E08,12098406,Traffic Collision,10/23/2012,10/22/2012,10/23/2012 06:31:09 AM,10/23/2012 06:33:33 AM,10/23/2012 06:33:48 AM,04/25/2016 01:56:09 PM,10/23/2012 06:39:09 AM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 06:56:12 AM,500 Block of 3RD ST,SF,94107,B03,8,2173,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7809200704439, -122.395242268798)",122970066-E08 -160362212,53,16014285,Medical Incident,02/05/2016,02/05/2016,02/05/2016 02:06:05 PM,02/05/2016 02:08:41 PM,02/05/2016 02:09:06 PM,02/05/2016 02:09:18 PM,02/05/2016 02:24:08 PM,02/05/2016 02:51:15 PM,02/05/2016 03:13:46 PM,Code 2 Transport,02/05/2016 03:32:26 PM,4400 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7623635420742, -122.505527218259)",160362212-53 -120990194,KM05,12032822,Medical Incident,04/08/2012,04/08/2012,04/08/2012 03:31:40 PM,04/08/2012 03:35:21 PM,04/08/2012 03:35:42 PM,04/08/2012 03:36:07 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/25/2016 01:59:16 PM,HOWARD ST/9TH ST,SF,94103,B02,36,2335,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",120990194-KM05 -131150015,E21,13038651,Medical Incident,04/25/2013,04/24/2013,04/25/2013 02:07:49 AM,04/25/2013 02:09:04 AM,04/25/2013 02:09:14 AM,04/25/2013 02:11:27 AM,04/25/2013 02:12:25 AM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/25/2013 02:22:28 AM,500 Block of SCOTT ST,SF,94117,B05,21,4136,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7747325666892, -122.436102962462)",131150015-E21 -160432994,52,16017418,Medical Incident,02/12/2016,02/12/2016,02/12/2016 06:30:16 PM,02/12/2016 06:30:59 PM,02/12/2016 06:33:12 PM,02/12/2016 06:33:12 PM,02/12/2016 06:39:08 PM,02/12/2016 07:03:20 PM,02/12/2016 07:34:18 PM,Code 2 Transport,02/12/2016 08:20:40 PM,300 Block of STAPLES AVE,San Francisco,94112,B09,15,8232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7290125327304, -122.449989978031)",160432994-52 -140770004,KM07,14025916,Medical Incident,03/18/2014,03/17/2014,03/18/2014 12:37:27 AM,03/18/2014 12:39:21 AM,03/18/2014 12:39:50 AM,03/18/2014 12:40:33 AM,03/18/2014 12:49:32 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Patient Declined Transport,03/18/2014 12:55:53 AM,0 Block of 12TH ST,SAN FRANCISCO,94103,B02,36,3212,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",140770004-KM07 -140430253,KM14,14014671,Medical Incident,02/12/2014,02/12/2014,02/12/2014 04:00:12 PM,02/12/2014 04:02:52 PM,02/12/2014 04:03:46 PM,02/12/2014 04:05:22 PM,02/12/2014 04:17:53 PM,02/12/2014 04:17:59 PM,02/12/2014 04:54:12 PM,Code 2 Transport,02/12/2014 05:30:36 PM,1400 Block of 3RD ST,SF,94158,B03,8,2231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.770198458048, -122.389578265491)",140430253-KM14 -102790344,E03,10088850,Medical Incident,10/06/2010,10/06/2010,10/06/2010 10:36:37 PM,10/06/2010 10:37:01 PM,10/06/2010 10:37:15 PM,10/06/2010 10:37:45 PM,10/06/2010 10:38:58 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 10:46:31 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",102790344-E03 -132760400,B04,13093912,Structure Fire,10/03/2013,10/03/2013,10/03/2013 10:40:33 PM,10/03/2013 10:41:05 PM,10/03/2013 10:41:21 PM,10/03/2013 10:42:31 PM,10/03/2013 10:44:49 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/03/2013 10:50:17 PM,2700 Block of BUSH ST,SF,94115,B04,10,4234,3,3,3,false,Alarm,1,CHIEF,4,4,2,Pacific Heights,"(37.7859173973794, -122.442559256485)",132760400-B04 -131840319,T07,13062808,Structure Fire,07/03/2013,07/03/2013,07/03/2013 06:50:27 PM,07/03/2013 06:50:27 PM,07/03/2013 06:51:08 PM,07/03/2013 06:52:34 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/03/2013 06:53:58 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",131840319-T07 -132180033,E21,13073498,Medical Incident,08/06/2013,08/05/2013,08/06/2013 02:44:28 AM,08/06/2013 02:45:16 AM,08/06/2013 02:45:57 AM,08/06/2013 02:47:03 AM,08/06/2013 02:50:22 AM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 02:54:31 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",132180033-E21 -140170126,E36,14005778,Medical Incident,01/17/2014,01/17/2014,01/17/2014 10:06:24 AM,01/17/2014 10:07:39 AM,01/17/2014 10:08:39 AM,01/17/2014 10:08:52 AM,01/17/2014 10:09:52 AM,04/25/2016 01:48:41 PM,04/25/2016 01:48:41 PM,Fire,01/17/2014 10:12:07 AM,400 Block of FRANKLIN ST,SF,94102,B02,36,3214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7784801386574, -122.421683336458)",140170126-E36 -113170364,E13,11105495,Medical Incident,11/13/2011,11/13/2011,11/13/2011 11:40:51 PM,11/13/2011 11:41:18 PM,11/13/2011 11:41:33 PM,11/13/2011 11:45:02 PM,11/13/2011 11:45:06 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 11:49:40 PM,0 Block of CLAY ST,SF,94111,B01,13,1133,3,2,2,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.795488462612, -122.396159020859)",113170364-E13 -111200278,E33,11039660,Traffic Collision,04/30/2011,04/30/2011,04/30/2011 04:56:08 PM,04/30/2011 04:56:38 PM,04/30/2011 04:56:51 PM,04/30/2011 04:57:47 PM,04/30/2011 05:00:03 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 05:09:28 PM,FONT BL/CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7150113911845, -122.472990955765)",111200278-E33 -112960068,E07,11098099,Medical Incident,10/23/2011,10/22/2011,10/23/2011 03:01:54 AM,10/23/2011 03:02:26 AM,10/23/2011 03:05:13 AM,10/23/2011 03:16:01 AM,10/23/2011 03:17:43 AM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 03:40:17 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,,1,ENGINE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",112960068-E07 -121920189,E22,12063920,Medical Incident,07/10/2012,07/10/2012,07/10/2012 01:07:04 PM,07/10/2012 01:08:16 PM,07/10/2012 01:08:52 PM,07/10/2012 01:10:16 PM,07/10/2012 01:13:01 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 01:22:51 PM,0 Block of MUSIC CONCOURSE DR,SF,94118,B07,22,7744,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",121920189-E22 -120680093,83,12022494,Medical Incident,03/08/2012,03/08/2012,03/08/2012 09:18:57 AM,03/08/2012 09:19:19 AM,03/08/2012 09:22:01 AM,03/08/2012 09:22:16 AM,03/08/2012 09:34:37 AM,03/08/2012 09:47:58 AM,03/08/2012 10:10:17 AM,Code 2 Transport,03/08/2012 10:56:45 AM,FILBERT ST/VAN NESS AV,SF,94109,B04,16,3146,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Russian Hill,"(37.7994845306272, -122.424170564426)",120680093-83 -120930266,54,12030873,Medical Incident,04/02/2012,04/02/2012,04/02/2012 04:07:43 PM,04/02/2012 04:08:46 PM,04/02/2012 04:08:58 PM,04/02/2012 04:09:10 PM,04/02/2012 04:15:34 PM,04/02/2012 05:03:56 PM,04/02/2012 05:41:55 PM,Code 2 Transport,04/02/2012 06:28:15 PM,700 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",120930266-54 -112730319,E08,11090360,Medical Incident,09/30/2011,09/30/2011,09/30/2011 06:54:59 PM,09/30/2011 06:55:29 PM,09/30/2011 06:56:01 PM,09/30/2011 06:57:23 PM,09/30/2011 06:59:35 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 07:16:44 PM,HARRISON ST/4TH ST,SF,94107,B03,8,2216,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7807914830651, -122.399616233554)",112730319-E08 -122060130,KM11,12068443,Medical Incident,07/24/2012,07/24/2012,07/24/2012 10:29:21 AM,07/24/2012 10:29:56 AM,07/24/2012 10:30:17 AM,07/24/2012 10:31:01 AM,07/24/2012 10:33:30 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Patient Declined Transport,07/24/2012 11:00:51 AM,1700 Block of FULTON ST,SF,94117,B05,21,4463,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",122060130-KM11 -112420030,89,11079705,Medical Incident,08/30/2011,08/29/2011,08/30/2011 03:31:43 AM,08/30/2011 03:34:23 AM,08/30/2011 03:34:49 AM,08/30/2011 03:35:33 AM,08/30/2011 03:41:08 AM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,No Merit,08/30/2011 04:13:51 AM,100 Block of HAMILTON ST,SF,94134,B10,42,6342,3,3,3,true,,1,MEDIC,2,9,9,Portola,"(37.7290705510996, -122.410832555968)",112420030-89 -130170361,E41,13005935,Alarms,01/17/2013,01/17/2013,01/17/2013 08:17:37 PM,01/17/2013 08:18:41 PM,01/17/2013 08:18:51 PM,01/17/2013 08:19:40 PM,01/17/2013 08:21:39 PM,04/25/2016 01:54:45 PM,04/25/2016 01:54:45 PM,Other,01/17/2013 08:37:24 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",130170361-E41 -113540310,E43,11117647,Medical Incident,12/20/2011,12/20/2011,12/20/2011 06:27:07 PM,12/20/2011 06:32:13 PM,12/20/2011 06:32:46 PM,12/20/2011 06:34:25 PM,12/20/2011 06:36:40 PM,04/25/2016 02:01:03 PM,04/25/2016 02:01:03 PM,Other,12/20/2011 06:51:47 PM,200 Block of PARQUE DR,SF,94134,B09,43,6245,2,2,2,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.709998706156, -122.422592099161)",113540310-E43 -133500238,E13,13118853,Medical Incident,12/16/2013,12/16/2013,12/16/2013 01:42:08 PM,12/16/2013 01:42:55 PM,12/16/2013 01:43:46 PM,12/16/2013 01:44:41 PM,12/16/2013 01:46:35 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,12/16/2013 01:59:07 PM,900 Block of MONTGOMERY ST,SF,94133,B01,13,1231,2,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.7975870868314, -122.403804875894)",133500238-E13 -110380083,E07,11012505,Medical Incident,02/07/2011,02/06/2011,02/07/2011 07:26:09 AM,02/07/2011 07:26:17 AM,02/07/2011 07:26:41 AM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,04/25/2016 02:06:12 PM,Other,02/07/2011 07:35:11 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,E,E,3,true,,1,ENGINE,5,2,9,Mission,"(37.7632358693888, -122.419563499673)",110380083-E07 -160173355,89,16007022,Medical Incident,01/17/2016,01/17/2016,01/17/2016 10:22:59 PM,01/17/2016 10:23:29 PM,01/17/2016 10:23:51 PM,01/17/2016 10:24:05 PM,01/17/2016 10:27:11 PM,01/17/2016 10:39:39 PM,01/17/2016 10:42:08 PM,Code 2 Transport,01/17/2016 11:21:06 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160173355-89 -131790324,T01,13060911,Alarms,06/28/2013,06/28/2013,06/28/2013 05:03:54 PM,06/28/2013 05:03:54 PM,06/28/2013 05:04:51 PM,06/28/2013 05:05:03 PM,06/28/2013 05:09:06 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,Other,06/28/2013 05:09:19 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,Alarm,1,TRUCK,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",131790324-T01 -140410403,85,14014113,Medical Incident,02/10/2014,02/10/2014,02/10/2014 09:33:35 PM,02/10/2014 09:33:55 PM,02/10/2014 09:34:29 PM,02/10/2014 09:34:35 PM,02/10/2014 09:52:04 PM,02/10/2014 10:12:28 PM,02/10/2014 10:19:44 PM,Code 2 Transport,02/10/2014 10:45:34 PM,3000 Block of MISSION ST,SF,94110,B06,11,5613,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.748597504437, -122.418163001869)",140410403-85 -132870280,E06,13097709,Outside Fire,10/14/2013,10/14/2013,10/14/2013 04:47:27 PM,10/14/2013 04:48:51 PM,10/14/2013 04:48:58 PM,10/14/2013 04:50:06 PM,10/14/2013 04:52:29 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 04:54:44 PM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,Fire,1,ENGINE,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",132870280-E06 -160864039,75,16034405,Medical Incident,03/26/2016,03/26/2016,03/26/2016 11:39:53 PM,03/26/2016 11:39:53 PM,03/26/2016 11:41:26 PM,03/26/2016 11:41:32 PM,03/26/2016 11:45:52 PM,03/27/2016 12:05:30 AM,03/27/2016 12:16:45 AM,Code 2 Transport,03/27/2016 12:49:04 AM,500 Block of MINNA ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7801357011746, -122.40877066526)",160864039-75 -140780049,KM03,14026283,Medical Incident,03/19/2014,03/18/2014,03/19/2014 04:06:06 AM,03/19/2014 04:08:09 AM,03/19/2014 04:08:46 AM,03/19/2014 04:09:19 AM,03/19/2014 04:17:13 AM,03/19/2014 04:29:11 AM,03/19/2014 04:35:27 AM,Code 2 Transport,03/19/2014 04:45:21 AM,FULTON ST/SHRADER ST,SAN FRANCISCO,94118,B05,21,4542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7749707534359, -122.453003329775)",140780049-KM03 -160672642,KM09,16026846,Medical Incident,03/07/2016,03/07/2016,03/07/2016 06:05:00 PM,03/07/2016 06:05:24 PM,03/07/2016 06:05:48 PM,03/07/2016 06:06:28 PM,03/07/2016 06:15:17 PM,03/07/2016 06:34:52 PM,03/07/2016 06:46:15 PM,Code 2 Transport,03/07/2016 07:09:15 PM,1700 Block of PALOU AVE,San Francisco,94124,B10,17,6471,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7355275899497, -122.393759150834)",160672642-KM09 -132340259,85,13079057,Medical Incident,08/22/2013,08/22/2013,08/22/2013 04:39:07 PM,08/22/2013 04:40:43 PM,08/22/2013 04:42:02 PM,08/22/2013 04:42:10 PM,08/22/2013 04:47:52 PM,08/22/2013 05:07:49 PM,08/22/2013 05:14:39 PM,Code 2 Transport,08/22/2013 05:39:33 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",132340259-85 -103550111,E12,10113900,Medical Incident,12/21/2010,12/21/2010,12/21/2010 09:45:57 AM,12/21/2010 09:46:46 AM,12/21/2010 09:47:26 AM,12/21/2010 09:48:06 AM,12/21/2010 09:50:05 AM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 10:00:14 AM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",103550111-E12 -140580165,T06,14019545,Alarms,02/27/2014,02/27/2014,02/27/2014 12:16:42 PM,02/27/2014 12:19:03 PM,02/27/2014 12:19:19 PM,02/27/2014 12:19:36 PM,02/27/2014 12:22:35 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/27/2014 01:01:32 PM,0 Block of MCCOPPIN ST,SF,94103,B02,36,5125,3,3,3,false,Alarm,1,TRUCK,2,2,6,Mission,"(37.7715636917588, -122.422131789635)",140580165-T06 -160391318,AM04,16015571,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:56:18 AM,02/08/2016 10:59:45 AM,02/08/2016 11:01:37 AM,02/08/2016 11:02:23 AM,02/08/2016 11:09:20 AM,02/08/2016 11:21:17 AM,02/08/2016 11:42:33 AM,Code 2 Transport,02/08/2016 12:08:26 PM,1000 Block of FRANKLIN ST,San Francisco,94109,B02,3,3221,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",160391318-AM04 -121510303,B08,12050148,Structure Fire,05/30/2012,05/30/2012,05/30/2012 07:49:27 PM,05/30/2012 07:51:49 PM,05/30/2012 07:51:58 PM,05/30/2012 07:54:23 PM,05/30/2012 07:58:35 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/30/2012 08:08:53 PM,1200 Block of 47TH AVE,SF,94122,B08,23,7721,3,3,3,false,Fire,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7631799716508, -122.507127249562)",121510303-B08 -103060215,E01,10097924,Structure Fire,11/02/2010,11/02/2010,11/02/2010 11:58:54 AM,11/02/2010 11:59:33 AM,11/02/2010 12:00:10 PM,11/02/2010 12:00:25 PM,11/02/2010 12:03:23 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 12:10:58 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,3,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",103060215-E01 -112570091,T09,11084669,Outside Fire,09/14/2011,09/14/2011,09/14/2011 09:24:50 AM,09/14/2011 09:26:37 AM,09/14/2011 09:26:42 AM,09/14/2011 09:28:51 AM,09/14/2011 09:35:28 AM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/14/2011 09:36:19 AM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,false,,1,TRUCK,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",112570091-T09 -103130027,E03,10100224,Medical Incident,11/09/2010,11/08/2010,11/09/2010 02:29:29 AM,11/09/2010 02:29:39 AM,11/09/2010 02:30:07 AM,11/09/2010 02:32:14 AM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/09/2010 02:34:07 AM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",103130027-E03 -160430188,58,16017111,Medical Incident,02/12/2016,02/11/2016,02/12/2016 01:38:40 AM,02/12/2016 01:39:34 AM,02/12/2016 01:40:46 AM,02/12/2016 01:40:58 AM,02/12/2016 01:47:07 AM,02/12/2016 01:52:20 AM,02/12/2016 02:05:43 AM,Code 2 Transport,02/12/2016 02:27:46 AM,900 Block of VALENCIA ST,San Francisco,94110,B06,7,5456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Mission,"(37.7572975613482, -122.421224686971)",160430188-58 -103250261,E05,10104249,Medical Incident,11/21/2010,11/21/2010,11/21/2010 05:59:29 PM,11/21/2010 06:00:15 PM,11/21/2010 06:00:38 PM,11/21/2010 06:01:42 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/21/2010 06:03:14 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,true,,1,ENGINE,3,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",103250261-E05 -160650457,71,16025807,Medical Incident,03/05/2016,03/04/2016,03/05/2016 03:46:06 AM,03/05/2016 03:46:06 AM,03/05/2016 03:46:43 AM,03/05/2016 03:47:42 AM,03/05/2016 03:55:04 AM,03/05/2016 04:20:17 AM,03/05/2016 04:38:16 AM,Code 2 Transport,03/05/2016 05:00:21 AM,1900 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160650457-71 -110560178,KM10,11018443,Medical Incident,02/25/2011,02/25/2011,02/25/2011 12:51:37 PM,02/25/2011 12:52:29 PM,02/25/2011 12:53:21 PM,02/25/2011 12:53:54 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 12:54:29 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,2,2,false,,1,PRIVATE,3,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",110560178-KM10 -102670129,E42,10084446,Medical Incident,09/24/2010,09/24/2010,09/24/2010 10:33:20 AM,09/24/2010 10:34:04 AM,09/24/2010 10:34:24 AM,09/24/2010 10:36:09 AM,09/24/2010 10:44:34 AM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/24/2010 10:49:25 AM,600 Block of THORNTON AVE,SF,94124,B10,42,6447,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7313162270083, -122.400690668956)",102670129-E42 -123040301,E15,12100994,Medical Incident,10/30/2012,10/30/2012,10/30/2012 07:56:10 PM,10/30/2012 07:56:49 PM,10/30/2012 07:57:41 PM,10/30/2012 07:58:45 PM,10/30/2012 08:01:30 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/30/2012 08:05:55 PM,300 Block of CAPISTRANO AVE,SF,94112,B09,15,8275,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7261544790806, -122.438335983298)",123040301-E15 -103360249,T18,10107533,Structure Fire,12/02/2010,12/02/2010,12/02/2010 03:49:29 PM,12/02/2010 03:49:29 PM,12/02/2010 03:49:48 PM,12/02/2010 03:50:59 PM,12/02/2010 03:53:59 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/02/2010 03:55:28 PM,25TH AV/TARAVAL ST,SF,94116,B08,40,7461,3,3,3,false,,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7427672829659, -122.482121647462)",103360249-T18 -131240127,T02,13041761,Alarms,05/04/2013,05/04/2013,05/04/2013 10:01:31 AM,05/04/2013 10:02:32 AM,05/04/2013 10:03:05 AM,05/04/2013 10:05:06 AM,04/25/2016 01:52:58 PM,04/25/2016 01:52:58 PM,04/25/2016 01:52:58 PM,Other,05/04/2013 10:08:43 AM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.7939808204935, -122.405476353162)",131240127-T02 -113560345,E15,11118329,Alarms,12/22/2011,12/22/2011,12/22/2011 06:32:07 PM,12/22/2011 06:33:12 PM,12/22/2011 06:33:32 PM,04/25/2016 02:01:01 PM,12/22/2011 06:36:14 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 06:50:25 PM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",113560345-E15 -140090266,E18,14003199,Medical Incident,01/09/2014,01/09/2014,01/09/2014 03:29:45 PM,01/09/2014 03:30:45 PM,01/09/2014 03:31:48 PM,01/09/2014 03:32:49 PM,01/09/2014 03:35:56 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 03:51:48 PM,1500 Block of 43RD AVE,SF,94122,B08,23,7652,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7577643099664, -122.502585164302)",140090266-E18 -120600005,AM10,12019601,Medical Incident,02/29/2012,02/28/2012,02/29/2012 12:25:23 AM,02/29/2012 12:26:35 AM,02/29/2012 12:27:55 AM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Other,04/25/2016 01:59:55 PM,400 Block of BARTLETT ST,SF,94110,B06,11,5535,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Mission,"(37.74976903279, -122.419392137608)",120600005-AM10 -140030237,KM10,14001082,Medical Incident,01/03/2014,01/03/2014,01/03/2014 01:16:01 PM,01/03/2014 01:18:04 PM,01/03/2014 01:25:53 PM,01/03/2014 01:25:53 PM,01/03/2014 01:32:36 PM,01/03/2014 01:48:00 PM,01/03/2014 02:01:48 PM,Code 2 Transport,01/03/2014 02:41:44 PM,3000 Block of MARKET ST,SF,94114,B05,24,5413,,3,3,false,Non Life-threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7608293644755, -122.4432168391)",140030237-KM10 -133160156,94,13107407,Medical Incident,11/12/2013,11/12/2013,11/12/2013 12:33:13 PM,11/12/2013 12:34:51 PM,11/12/2013 12:35:22 PM,11/12/2013 12:36:15 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 12:39:37 PM,1300 Block of HOWARD ST,SF,94103,B02,36,2342,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7742496611166, -122.414204535023)",133160156-94 -103270198,E41,10104778,Outside Fire,11/23/2010,11/23/2010,11/23/2010 01:48:33 PM,11/23/2010 01:51:13 PM,11/23/2010 01:51:33 PM,04/25/2016 02:07:28 PM,11/23/2010 01:53:26 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 01:57:44 PM,TAYLOR ST/BEACH ST,SF,94133,B01,28,1433,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.807275868938, -122.41561643642)",103270198-E41 -131640228,E03,13055746,Administrative,06/13/2013,06/13/2013,06/13/2013 02:32:52 PM,06/13/2013 02:32:54 PM,06/13/2013 02:33:02 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/13/2013 02:33:36 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",131640228-E03 -160772571,86,16030667,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:40:33 PM,03/17/2016 03:40:33 PM,03/17/2016 03:49:23 PM,03/17/2016 03:49:30 PM,03/17/2016 04:12:30 PM,03/17/2016 04:37:22 PM,03/17/2016 04:45:03 PM,Code 2 Transport,03/17/2016 05:33:22 PM,200 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7671990407506, -122.424452084295)",160772571-86 -112170310,E11,11071814,Medical Incident,08/05/2011,08/05/2011,08/05/2011 06:50:26 PM,08/05/2011 06:51:17 PM,08/05/2011 06:51:54 PM,08/05/2011 06:54:53 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,04/25/2016 02:03:19 PM,Other,08/05/2011 06:56:28 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,E,3,true,,1,ENGINE,4,6,9,Mission,"(37.7562319946436, -122.418893283075)",112170310-E11 -133490137,E43,13118438,Medical Incident,12/15/2013,12/15/2013,12/15/2013 10:56:58 AM,12/15/2013 10:57:16 AM,12/15/2013 10:59:41 AM,12/15/2013 11:00:26 AM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 11:02:30 AM,0 Block of CORDOVA ST,SF,94112,B09,43,6224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7128542066496, -122.43602367503)",133490137-E43 -132780414,E37,13094706,Structure Fire,10/05/2013,10/05/2013,10/05/2013 10:53:20 PM,10/05/2013 10:54:54 PM,10/05/2013 10:56:23 PM,10/05/2013 10:57:45 PM,10/05/2013 10:59:19 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 11:00:47 PM,1100 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,false,Alarm,1,ENGINE,4,6,9,Mission,"(37.7547721851074, -122.416421083608)",132780414-E37 -120150204,87,12005118,Medical Incident,01/15/2012,01/15/2012,01/15/2012 02:33:01 PM,01/15/2012 02:34:54 PM,01/15/2012 02:35:16 PM,01/15/2012 02:35:26 PM,01/15/2012 02:39:25 PM,01/15/2012 02:47:34 PM,01/15/2012 03:02:51 PM,Code 2 Transport,01/15/2012 03:52:18 PM,1400 Block of MARKET ST,SF,94102,B02,36,3211,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",120150204-87 -110310296,B04,11010252,Alarms,01/31/2011,01/31/2011,01/31/2011 05:55:58 PM,01/31/2011 05:56:34 PM,01/31/2011 05:57:01 PM,01/31/2011 05:58:21 PM,01/31/2011 06:00:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,01/31/2011 06:06:59 PM,1300 Block of POLK ST,SF,94109,B04,3,3122,3,3,3,false,,1,CHIEF,3,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",110310296-B04 -112770051,E18,11091591,Medical Incident,10/04/2011,10/03/2011,10/04/2011 06:38:34 AM,10/04/2011 06:40:13 AM,10/04/2011 06:41:16 AM,10/04/2011 06:42:23 AM,10/04/2011 06:45:49 AM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 07:02:20 AM,4100 Block of PACHECO ST,SF,94116,B08,23,7663,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7492037670734, -122.504607119511)",112770051-E18 -103190055,67,10102158,Medical Incident,11/15/2010,11/14/2010,11/15/2010 07:26:48 AM,11/15/2010 07:27:13 AM,11/15/2010 07:27:22 AM,11/15/2010 07:35:48 AM,11/15/2010 07:45:11 AM,11/15/2010 08:13:38 AM,11/15/2010 08:32:54 AM,Code 2 Transport,11/15/2010 08:58:09 AM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",103190055-67 -103400135,81,10108793,Medical Incident,12/06/2010,12/06/2010,12/06/2010 10:34:03 AM,12/06/2010 10:35:03 AM,12/06/2010 10:35:09 AM,04/25/2016 02:07:16 PM,12/06/2010 10:57:56 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Patient Declined Transport,12/06/2010 11:19:57 AM,800 Block of VIENNA ST,SF,94112,B09,43,6136,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7154074124053, -122.434151959876)",103400135-81 -160351919,91,16013834,Medical Incident,02/04/2016,02/04/2016,02/04/2016 01:30:18 PM,02/04/2016 01:32:11 PM,02/04/2016 01:32:35 PM,02/04/2016 01:40:08 PM,02/04/2016 01:41:34 PM,02/04/2016 01:57:16 PM,02/04/2016 02:16:27 PM,Code 2 Transport,02/04/2016 02:44:03 PM,3600 Block of WAWONA ST,San Francisco,94116,B08,23,7733,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7360605728424, -122.505741468658)",160351919-91 -123290204,B01,12109437,Fuel Spill,11/24/2012,11/24/2012,11/24/2012 03:15:28 PM,11/24/2012 03:17:04 PM,11/24/2012 03:18:48 PM,11/24/2012 03:20:10 PM,11/24/2012 03:22:53 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 03:35:50 PM,LOMBARD ST/LARKIN ST,SF,94109,B01,41,1625,3,3,3,false,Alarm,1,CHIEF,1,1,2,Russian Hill,"(37.8017584160095, -122.421257557973)",123290204-B01 -122090081,E01,12069366,Medical Incident,07/27/2012,07/27/2012,07/27/2012 08:44:34 AM,07/27/2012 08:46:37 AM,07/27/2012 08:47:01 AM,07/27/2012 08:47:43 AM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 08:49:08 AM,STEVENSON ST/6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7817543267261, -122.409693263148)",122090081-E01 -110380044,93,11012471,Medical Incident,02/07/2011,02/06/2011,02/07/2011 03:07:32 AM,02/07/2011 03:08:01 AM,02/07/2011 03:14:16 AM,02/07/2011 03:19:51 AM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/07/2011 03:25:52 AM,4400 Block of CABRILLO ST,SF,94121,B07,34,7277,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7733768091246, -122.506280175439)",110380044-93 -131500308,E01,13050923,Structure Fire,05/30/2013,05/30/2013,05/30/2013 08:40:08 PM,05/30/2013 08:40:09 PM,05/30/2013 08:40:14 PM,05/30/2013 08:41:16 PM,05/30/2013 08:43:44 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/30/2013 08:44:09 PM,LEAVENWORTH ST/UNITED NATIONS PZ,SF,94102,B02,1,1551,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7799917401811, -122.413487401339)",131500308-E01 -132490403,AM22,13084219,Medical Incident,09/06/2013,09/06/2013,09/06/2013 11:18:16 PM,09/06/2013 11:18:50 PM,09/06/2013 11:19:05 PM,09/06/2013 11:20:19 PM,09/06/2013 11:28:16 PM,09/06/2013 11:42:08 PM,09/07/2013 12:00:37 AM,Code 2 Transport,09/07/2013 12:28:22 AM,300 Block of TEDDY AVE,SF,94134,B09,44,6312,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7153951688857, -122.409692952213)",132490403-AM22 -123540387,E37,12118624,Alarms,12/19/2012,12/19/2012,12/19/2012 09:49:12 PM,12/19/2012 09:50:14 PM,12/19/2012 09:50:43 PM,12/19/2012 09:51:39 PM,12/19/2012 09:53:30 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/19/2012 10:16:11 PM,1600 Block of 18TH ST,SF,94107,B03,37,2456,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7623498926454, -122.399419936094)",123540387-E37 -160361338,KM11,16014193,Medical Incident,02/05/2016,02/05/2016,02/05/2016 10:16:25 AM,02/05/2016 10:18:06 AM,02/05/2016 10:18:21 AM,02/05/2016 10:18:56 AM,02/05/2016 10:27:39 AM,02/05/2016 10:49:06 AM,02/05/2016 11:10:01 AM,Code 2 Transport,02/05/2016 11:28:52 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160361338-KM11 -140050057,KM07,14001697,Medical Incident,01/05/2014,01/04/2014,01/05/2014 03:45:53 AM,01/05/2014 03:45:53 AM,01/05/2014 03:48:09 AM,01/05/2014 03:48:42 AM,01/05/2014 03:58:32 AM,01/05/2014 04:26:19 AM,01/05/2014 04:55:18 AM,Code 2 Transport,01/05/2014 05:25:26 AM,MARKET ST/4TH ST,SF,94103,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",140050057-KM07 -160420243,AM20,16016717,Medical Incident,02/11/2016,02/10/2016,02/11/2016 02:53:04 AM,02/11/2016 02:54:46 AM,02/11/2016 02:55:12 AM,02/11/2016 02:55:52 AM,02/11/2016 03:04:07 AM,02/11/2016 03:28:12 AM,02/11/2016 03:36:00 AM,Code 2 Transport,02/11/2016 04:06:51 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160420243-AM20 -120630075,92,12020657,Medical Incident,03/03/2012,03/02/2012,03/03/2012 04:30:36 AM,03/03/2012 04:32:03 AM,03/03/2012 04:32:37 AM,04/25/2016 01:59:52 PM,03/03/2012 04:36:28 AM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,Other,03/03/2012 04:37:51 AM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",120630075-92 -140270074,T01,14009112,Medical Incident,01/27/2014,01/27/2014,01/27/2014 08:25:20 AM,01/27/2014 08:26:34 AM,01/27/2014 08:26:47 AM,01/27/2014 08:29:38 AM,01/27/2014 08:36:48 AM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/27/2014 08:42:15 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,,2,2,false,Potentially Life-Threatening,1,TRUCK,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",140270074-T01 -160383019,87,16015352,Medical Incident,02/07/2016,02/07/2016,02/07/2016 07:19:16 PM,02/07/2016 07:19:16 PM,02/07/2016 07:20:00 PM,02/07/2016 07:20:09 PM,02/07/2016 07:28:38 PM,02/07/2016 07:38:04 PM,02/07/2016 07:45:31 PM,Code 2 Transport,02/07/2016 08:03:52 PM,1700 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7694700718007, -122.415525556609)",160383019-87 -112160270,E26,11071409,Medical Incident,08/04/2011,08/04/2011,08/04/2011 03:24:33 PM,08/04/2011 03:26:32 PM,08/04/2011 03:27:39 PM,08/04/2011 03:29:02 PM,08/04/2011 03:31:23 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Unable to Locate,08/04/2011 03:35:04 PM,BOSWORTH ST/CONGO ST,SF,94131,B09,26,8176,3,2,2,true,,1,ENGINE,1,9,8,West of Twin Peaks,"(37.7348568102964, -122.439934384552)",112160270-E26 -122570038,77,12084836,Medical Incident,09/13/2012,09/12/2012,09/13/2012 06:00:36 AM,09/13/2012 06:01:30 AM,09/13/2012 06:02:10 AM,09/13/2012 06:03:58 AM,09/13/2012 06:11:17 AM,09/13/2012 06:20:49 AM,09/13/2012 06:53:11 AM,Code 2 Transport,09/13/2012 07:34:10 AM,200 Block of ASHTON AVE,SF,94112,B09,15,8434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7224246331182, -122.462198993823)",122570038-77 -110460075,T06,11015167,Vehicle Fire,02/15/2011,02/15/2011,02/15/2011 08:15:58 AM,02/15/2011 08:17:40 AM,02/15/2011 08:18:00 AM,02/15/2011 08:19:30 AM,02/15/2011 08:22:52 AM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 08:24:40 AM,CHURCH ST/17TH ST,SF,94114,B02,6,5251,3,3,3,false,,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7628898668395, -122.428508749574)",110460075-T06 -121090178,B04,12036047,Alarms,04/18/2012,04/18/2012,04/18/2012 01:10:45 PM,04/18/2012 01:11:53 PM,04/18/2012 01:12:00 PM,04/18/2012 01:15:13 PM,04/18/2012 01:16:14 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/18/2012 01:16:44 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Alarm,1,CHIEF,3,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121090178-B04 -131690408,78,13057567,Medical Incident,06/18/2013,06/18/2013,06/18/2013 10:43:05 PM,06/18/2013 10:44:21 PM,06/18/2013 10:44:32 PM,06/18/2013 10:45:09 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Patient Declined Transport,06/18/2013 10:48:21 PM,22ND ST/BARTLETT ST,SF,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7553657296757, -122.419857942792)",131690408-78 -120170245,E01,12005754,Structure Fire,01/17/2012,01/17/2012,01/17/2012 04:27:20 PM,01/17/2012 04:27:20 PM,01/17/2012 04:29:47 PM,01/17/2012 04:29:59 PM,01/17/2012 04:33:33 PM,04/25/2016 02:00:35 PM,04/25/2016 02:00:35 PM,Fire,01/17/2012 04:33:38 PM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7785051047871, -122.405615267864)",120170245-E01 -160850657,79,16033663,Medical Incident,03/25/2016,03/24/2016,03/25/2016 07:29:03 AM,03/25/2016 07:31:24 AM,03/25/2016 07:31:36 AM,03/25/2016 07:32:06 AM,03/25/2016 07:39:11 AM,03/25/2016 08:11:19 AM,03/25/2016 08:40:48 AM,Code 2 Transport,03/25/2016 09:33:15 AM,1300 Block of 27TH AVE,San Francisco,94122,B08,22,7511,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7622565136355, -122.485564556768)",160850657-79 -121610266,KM11,12053380,Citizen Assist / Service Call,06/09/2012,06/09/2012,06/09/2012 05:40:59 PM,06/09/2012 05:45:27 PM,06/09/2012 05:46:00 PM,06/09/2012 05:46:30 PM,06/09/2012 05:50:08 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/09/2012 05:52:45 PM,2000 Block of 23RD AVE,SF,94116,B08,40,7444,3,3,3,false,Alarm,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7493917486636, -122.480364209631)",121610266-KM11 -111580402,E01,11052434,Medical Incident,06/07/2011,06/07/2011,06/07/2011 11:51:52 PM,06/07/2011 11:53:41 PM,06/07/2011 11:53:55 PM,06/07/2011 11:55:11 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/07/2011 11:57:56 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",111580402-E01 -133420307,75,13116074,Medical Incident,12/08/2013,12/08/2013,12/08/2013 06:21:20 PM,12/08/2013 06:23:21 PM,12/08/2013 06:25:23 PM,12/08/2013 06:26:13 PM,12/08/2013 06:27:43 PM,12/08/2013 06:35:17 PM,12/08/2013 06:54:06 PM,Code 2 Transport,12/08/2013 07:21:41 PM,EDWARD ST/ARGUELLO BL,SF,94118,B07,31,7112,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7780083487713, -122.45863789522)",133420307-75 -113070275,E29,11102065,Medical Incident,11/03/2011,11/03/2011,11/03/2011 04:42:18 PM,11/03/2011 04:44:13 PM,11/03/2011 04:45:48 PM,11/03/2011 04:48:02 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Other,11/03/2011 04:48:12 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",113070275-E29 -102750373,81,10087527,Medical Incident,10/02/2010,10/02/2010,10/02/2010 09:18:19 PM,10/02/2010 09:18:56 PM,10/02/2010 09:22:03 PM,10/02/2010 09:22:10 PM,10/02/2010 09:44:05 PM,10/02/2010 09:48:46 PM,10/02/2010 09:56:26 PM,Code 2 Transport,10/02/2010 10:23:00 PM,OFARRELL ST/HYDE ST,SF,94109,B04,3,1544,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7853759730503, -122.416259705763)",102750373-81 -160343168,86,16013560,Medical Incident,02/03/2016,02/03/2016,02/03/2016 07:53:30 PM,02/03/2016 07:53:51 PM,02/03/2016 07:54:03 PM,02/03/2016 07:54:16 PM,02/03/2016 08:02:02 PM,02/03/2016 08:27:19 PM,02/03/2016 08:42:46 PM,Code 2 Transport,02/03/2016 09:35:46 PM,100 Block of CHESTER AVE,San Francisco,94132,B09,33,8417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7138267353133, -122.470388666003)",160343168-86 -131670005,T07,13056544,Structure Fire,06/16/2013,06/15/2013,06/16/2013 12:08:57 AM,06/16/2013 12:08:57 AM,06/16/2013 12:09:14 AM,06/16/2013 12:10:34 AM,04/25/2016 01:52:16 PM,04/25/2016 01:52:16 PM,04/25/2016 01:52:16 PM,Other,06/16/2013 12:16:10 AM,14TH ST/FOLSOM ST,SF,94103,B02,7,5216,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7685373884214, -122.415613781366)",131670005-T07 -160113381,AM24,16004561,Medical Incident,01/11/2016,01/11/2016,01/11/2016 09:32:40 PM,01/11/2016 09:32:40 PM,01/11/2016 09:33:33 PM,01/11/2016 09:33:51 PM,01/11/2016 09:39:25 PM,01/11/2016 09:51:49 PM,01/11/2016 09:58:26 PM,Code 2 Transport,01/11/2016 10:22:02 PM,CHURCH ST/VALLEY ST,San Francisco,94131,B06,11,5562,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7444974074355, -122.426746185523)",160113381-AM24 -120500204,AM04,12016546,Medical Incident,02/19/2012,02/19/2012,02/19/2012 02:37:03 PM,02/19/2012 02:38:27 PM,02/19/2012 02:38:43 PM,02/19/2012 02:40:04 PM,02/19/2012 02:41:49 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,No Merit,02/19/2012 02:56:12 PM,300 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.78274397077, -122.414884812781)",120500204-AM04 -132670016,E03,13090500,Medical Incident,09/24/2013,09/23/2013,09/24/2013 02:06:14 AM,09/24/2013 02:08:32 AM,09/24/2013 02:08:56 AM,09/24/2013 02:10:31 AM,09/24/2013 02:11:50 AM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/24/2013 02:20:19 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",132670016-E03 -122390163,E16,12079120,Structure Fire,08/26/2012,08/26/2012,08/26/2012 01:12:02 PM,08/26/2012 01:12:03 PM,08/26/2012 01:12:11 PM,08/26/2012 01:12:48 PM,08/26/2012 01:14:09 PM,04/25/2016 01:57:03 PM,04/25/2016 01:57:03 PM,Fire,08/26/2012 01:15:37 PM,SCOTT ST/LOMBARD ST,SF,94123,B04,16,4115,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.799212365751, -122.440977561035)",122390163-E16 -121840030,E36,12061164,Alarms,07/02/2012,07/01/2012,07/02/2012 03:04:16 AM,07/02/2012 03:04:31 AM,07/02/2012 03:06:07 AM,07/02/2012 03:07:48 AM,07/02/2012 03:09:15 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/02/2012 03:18:04 AM,100 Block of GROVE ST,SF,94102,B02,36,3165,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7783289000176, -122.419047896211)",121840030-E36 -160391679,65,16015612,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:41:50 PM,02/08/2016 12:41:50 PM,02/08/2016 12:43:56 PM,02/08/2016 12:48:55 PM,02/08/2016 01:14:21 PM,02/08/2016 01:35:43 PM,02/08/2016 01:51:53 PM,Code 2 Transport,02/08/2016 02:38:33 PM,0 Block of BATTERY ST,San Francisco,94111,B01,13,1163,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7918010769728, -122.399599379177)",160391679-65 -103400011,E09,10108697,Medical Incident,12/06/2010,12/05/2010,12/06/2010 12:55:46 AM,12/06/2010 12:56:37 AM,12/06/2010 12:56:59 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/06/2010 12:58:10 AM,1300 Block of SAN BRUNO AVE,SF,94110,B10,9,2562,3,2,2,true,,1,ENGINE,2,10,10,Mission,"(37.752479036245, -122.404371466638)",103400011-E09 -130940077,55,13031382,Medical Incident,04/04/2013,04/04/2013,04/04/2013 08:40:49 AM,04/04/2013 08:41:43 AM,04/04/2013 08:42:53 AM,04/04/2013 08:45:33 AM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/04/2013 08:52:47 AM,0 Block of MIGUEL ST,SF,94131,B06,26,8116,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7391422231463, -122.429773232934)",130940077-55 -123490228,E35,12116723,Administrative,12/14/2012,12/14/2012,12/14/2012 02:34:46 PM,12/14/2012 02:34:49 PM,12/14/2012 02:35:04 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/14/2012 02:36:37 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",123490228-E35 -110610039,T03,11019892,Medical Incident,03/02/2011,03/01/2011,03/02/2011 04:11:56 AM,03/02/2011 04:11:57 AM,03/02/2011 04:12:16 AM,03/02/2011 04:14:15 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 04:17:44 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,,1,TRUCK,4,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",110610039-T03 -123070426,E09,12102222,Citizen Assist / Service Call,11/02/2012,11/02/2012,11/02/2012 11:11:00 PM,11/02/2012 11:13:55 PM,11/02/2012 11:14:44 PM,11/02/2012 11:17:38 PM,11/02/2012 11:21:11 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Other,11/02/2012 11:35:34 PM,1500 Block of INNES AVE,SF,94124,B10,25,6532,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7389350707758, -122.387857880453)",123070426-E09 -131440077,KM09,13048741,Medical Incident,05/24/2013,05/24/2013,05/24/2013 09:05:43 AM,05/24/2013 09:07:09 AM,05/24/2013 09:08:04 AM,05/24/2013 09:09:51 AM,05/24/2013 09:38:28 AM,05/24/2013 09:45:37 AM,05/24/2013 10:37:59 AM,Code 2 Transport,05/24/2013 11:03:44 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131440077-KM09 -133500155,KM10,13118792,Medical Incident,12/16/2013,12/16/2013,12/16/2013 10:55:30 AM,12/16/2013 10:57:10 AM,12/16/2013 10:57:33 AM,12/16/2013 10:57:55 AM,12/16/2013 11:03:03 AM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Patient Declined Transport,12/16/2013 11:06:12 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",133500155-KM10 -111950345,E05,11064513,Structure Fire,07/14/2011,07/14/2011,07/14/2011 08:21:42 PM,07/14/2011 08:22:46 PM,07/14/2011 08:22:58 PM,07/14/2011 08:24:42 PM,07/14/2011 08:26:20 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 09:11:56 PM,2000 Block of MCALLISTER ST,SF,94118,B05,21,4462,3,3,3,true,,1,ENGINE,4,5,5,Lone Mountain/USF,"(37.7769038844357, -122.445824245144)",111950345-E05 -112380064,E36,11078456,Medical Incident,08/26/2011,08/25/2011,08/26/2011 07:17:45 AM,08/26/2011 07:19:12 AM,08/26/2011 07:19:29 AM,08/26/2011 07:21:05 AM,08/26/2011 07:23:48 AM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 07:26:19 AM,600 Block of LINDEN ST,SF,94102,B02,36,3423,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7757362094861, -122.428650470789)",112380064-E36 -131900046,E42,13064628,Structure Fire,07/09/2013,07/08/2013,07/09/2013 06:02:29 AM,07/09/2013 06:03:52 AM,07/09/2013 06:04:18 AM,07/09/2013 06:06:12 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 06:57:00 AM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,3,3,3,true,Fire,1,ENGINE,10,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",131900046-E42 -160252881,79,16010039,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:48:23 PM,01/25/2016 05:49:12 PM,01/25/2016 05:50:42 PM,01/25/2016 05:50:53 PM,01/25/2016 06:16:28 PM,01/25/2016 06:16:29 PM,01/25/2016 06:33:28 PM,Code 2 Transport,01/25/2016 07:14:42 PM,500 Block of RIVERA ST,San Francisco,94116,B08,40,7375,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7469914012749, -122.472403675394)",160252881-79 -132300011,93,13077518,Medical Incident,08/18/2013,08/17/2013,08/18/2013 12:24:23 AM,08/18/2013 12:26:00 AM,08/18/2013 12:33:00 AM,08/18/2013 12:33:11 AM,08/18/2013 12:36:44 AM,08/18/2013 12:48:52 AM,08/18/2013 01:00:51 AM,Code 2 Transport,08/18/2013 01:32:54 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",132300011-93 -132000296,RC2,13067885,Traffic Collision,07/19/2013,07/19/2013,07/19/2013 05:32:03 PM,07/19/2013 05:32:49 PM,07/19/2013 05:33:13 PM,04/25/2016 01:51:44 PM,07/19/2013 05:36:23 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 06:12:01 PM,4TH AV/CALIFORNIA ST,SF,94118,B07,31,7125,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,2,Inner Richmond,"(37.7852661262191, -122.462441443062)",132000296-RC2 -122460284,96,12081441,Structure Fire,09/02/2012,09/02/2012,09/02/2012 05:03:14 PM,09/02/2012 05:04:10 PM,09/02/2012 05:04:31 PM,09/02/2012 05:06:54 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 05:11:03 PM,BELVEDERE ST/CARMEL ST,SF,94117,B05,12,5256,3,3,3,true,Fire,1,MEDIC,9,5,5,Inner Sunset,"(37.760932688307, -122.447624825892)",122460284-96 -103050163,RS1,10097465,Medical Incident,11/01/2010,11/01/2010,11/01/2010 10:27:38 AM,11/01/2010 10:28:26 AM,11/01/2010 10:29:01 AM,11/01/2010 10:30:40 AM,11/01/2010 10:34:53 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 10:48:55 AM,MARKET ST/7TH ST,SF,94103,B03,1,1455,3,3,3,true,,1,RESCUE SQUAD,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",103050163-RS1 -110030279,RC1,11001050,Medical Incident,01/03/2011,01/03/2011,01/03/2011 05:39:09 PM,01/03/2011 05:39:28 PM,01/03/2011 05:39:49 PM,04/25/2016 02:06:46 PM,01/03/2011 05:45:52 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/03/2011 05:54:18 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",110030279-RC1 -120580357,81,12019268,Medical Incident,02/27/2012,02/27/2012,02/27/2012 10:34:05 PM,02/27/2012 10:34:27 PM,02/27/2012 10:34:41 PM,02/27/2012 10:35:02 PM,02/27/2012 10:39:59 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Against Medical Advice,02/27/2012 11:35:49 PM,12TH AV/IRVING ST,SF,94122,B08,22,7345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7638959454809, -122.469521963382)",120580357-81 -132330271,79,13078741,Medical Incident,08/21/2013,08/21/2013,08/21/2013 05:09:24 PM,08/21/2013 05:13:41 PM,08/21/2013 05:14:20 PM,08/21/2013 05:16:56 PM,08/21/2013 05:22:18 PM,08/21/2013 05:35:45 PM,08/21/2013 05:51:42 PM,Code 2 Transport,08/21/2013 06:20:37 PM,400 Block of EUREKA ST,SF,94114,B06,24,5465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7549139058085, -122.437777856509)",132330271-79 -160832158,63,16032978,Medical Incident,03/23/2016,03/23/2016,03/23/2016 02:01:27 PM,03/23/2016 02:02:57 PM,03/23/2016 02:03:39 PM,03/23/2016 02:04:00 PM,03/23/2016 02:19:18 PM,03/23/2016 02:45:43 PM,03/23/2016 02:49:33 PM,Code 2 Transport,03/23/2016 03:08:54 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160832158-63 -112440139,E21,11080410,Alarms,09/01/2011,09/01/2011,09/01/2011 11:06:38 AM,09/01/2011 11:07:27 AM,09/01/2011 11:07:37 AM,09/01/2011 11:09:28 AM,09/01/2011 11:11:34 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Fire,09/01/2011 11:20:33 AM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,3,3,true,,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",112440139-E21 -110040208,E26,11001311,Alarms,01/04/2011,01/04/2011,01/04/2011 01:54:58 PM,01/04/2011 01:58:22 PM,01/04/2011 01:59:26 PM,01/04/2011 02:00:34 PM,01/04/2011 02:04:20 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/04/2011 02:19:53 PM,100 Block of RED ROCK WAY,SF,94131,B06,26,8167,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",110040208-E26 -111030098,95,11034068,Medical Incident,04/13/2011,04/13/2011,04/13/2011 09:42:59 AM,04/13/2011 09:44:01 AM,04/13/2011 09:44:23 AM,04/13/2011 09:45:06 AM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/13/2011 09:52:21 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",111030098-95 -160340056,76,16013206,Medical Incident,02/03/2016,02/02/2016,02/03/2016 12:22:58 AM,02/03/2016 12:26:19 AM,02/03/2016 12:26:29 AM,02/03/2016 12:26:40 AM,02/03/2016 12:29:18 AM,02/03/2016 12:46:08 AM,02/03/2016 12:57:32 AM,Code 2 Transport,02/03/2016 01:10:40 AM,200 Block of LARKIN ST,San Francisco,94102,B02,36,1645,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7800361102799, -122.416789524298)",160340056-76 -113310190,E36,11109719,Traffic Collision,11/27/2011,11/27/2011,11/27/2011 03:37:20 PM,11/27/2011 03:37:55 PM,11/27/2011 03:38:05 PM,11/27/2011 03:41:08 PM,11/27/2011 03:42:37 PM,04/25/2016 02:01:27 PM,04/25/2016 02:01:27 PM,Other,11/27/2011 04:00:51 PM,DIVISADERO ST/OAK ST,SF,94117,B05,21,4141,3,3,3,false,,1,ENGINE,3,5,5,Hayes Valley,"(37.773133492205, -122.437422938764)",113310190-E36 -130550015,55,13018425,Medical Incident,02/24/2013,02/23/2013,02/24/2013 12:41:21 AM,02/24/2013 12:45:26 AM,02/24/2013 12:46:02 AM,02/24/2013 12:46:21 AM,02/24/2013 12:52:34 AM,02/24/2013 01:40:57 AM,02/24/2013 01:51:01 AM,Code 2 Transport,02/24/2013 02:29:53 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7795655119181, -122.406844762466)",130550015-55 -110600326,E03,11019806,Medical Incident,03/01/2011,03/01/2011,03/01/2011 07:57:19 PM,03/01/2011 07:58:01 PM,03/01/2011 07:58:10 PM,03/01/2011 07:59:20 PM,03/01/2011 08:01:42 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/01/2011 08:20:02 PM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",110600326-E03 -130760131,T03,13025342,Medical Incident,03/17/2013,03/17/2013,03/17/2013 09:48:36 AM,03/17/2013 09:51:26 AM,03/17/2013 09:51:42 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 09:54:46 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",130760131-T03 -131350340,E41,13045681,Medical Incident,05/15/2013,05/15/2013,05/15/2013 08:05:09 PM,05/15/2013 08:06:52 PM,05/15/2013 08:07:00 PM,05/15/2013 08:07:44 PM,05/15/2013 08:09:36 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 08:09:59 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",131350340-E41 -122360164,54,12078175,Medical Incident,08/23/2012,08/23/2012,08/23/2012 12:58:30 PM,08/23/2012 01:01:01 PM,08/23/2012 01:03:08 PM,08/23/2012 01:03:45 PM,04/25/2016 01:57:06 PM,08/23/2012 01:21:20 PM,08/23/2012 01:39:18 PM,Code 2 Transport,08/23/2012 01:52:35 PM,19TH ST/MISSION ST,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7602353559327, -122.419206043807)",122360164-54 -121940339,59,12064678,Medical Incident,07/12/2012,07/12/2012,07/12/2012 06:30:03 PM,07/12/2012 06:31:40 PM,07/12/2012 06:32:28 PM,07/12/2012 06:34:57 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/12/2012 06:43:34 PM,1000 Block of CALIFORNIA ST,SF,94108,B01,41,1445,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7916201314541, -122.412075501697)",121940339-59 -121590235,E28,12052654,Medical Incident,06/07/2012,06/07/2012,06/07/2012 04:46:24 PM,06/07/2012 04:47:09 PM,06/07/2012 04:47:26 PM,06/07/2012 04:48:13 PM,06/07/2012 04:51:01 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/07/2012 06:00:59 PM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8084350175869, -122.410774214375)",121590235-E28 -133300068,RC3,13111969,Medical Incident,11/26/2013,11/25/2013,11/26/2013 07:25:09 AM,11/26/2013 07:25:47 AM,11/26/2013 07:32:36 AM,11/26/2013 07:33:28 AM,11/26/2013 07:44:49 AM,11/26/2013 08:16:25 AM,11/26/2013 08:16:27 AM,Other,11/26/2013 08:20:45 AM,1200 Block of BROADWAY,SF,94109,B01,41,1534,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Russian Hill,"(37.7965421990179, -122.417889998529)",133300068-RC3 -122030373,E01,12067631,Medical Incident,07/21/2012,07/21/2012,07/21/2012 10:49:30 PM,07/21/2012 10:49:30 PM,07/21/2012 10:49:30 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,04/25/2016 01:57:36 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122030373-E01 -123360272,89,12111797,Medical Incident,12/01/2012,12/01/2012,12/01/2012 04:39:36 PM,12/01/2012 04:41:16 PM,12/01/2012 04:41:40 PM,12/01/2012 04:42:11 PM,12/01/2012 04:49:40 PM,12/01/2012 05:10:48 PM,12/01/2012 05:35:12 PM,Code 2 Transport,12/01/2012 05:58:51 PM,2200 Block of SANTIAGO ST,SF,94116,B08,18,7555,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7441785122761, -122.491357624063)",123360272-89 -120940183,E41,12031150,Medical Incident,04/03/2012,04/03/2012,04/03/2012 01:42:30 PM,04/03/2012 01:44:17 PM,04/03/2012 01:44:52 PM,04/03/2012 01:45:32 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 01:47:35 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120940183-E41 -113430167,77,11113730,Medical Incident,12/09/2011,12/09/2011,12/09/2011 11:32:37 AM,12/09/2011 11:33:19 AM,12/09/2011 11:34:06 AM,12/09/2011 11:34:33 AM,12/09/2011 11:38:31 AM,12/09/2011 11:59:10 AM,12/09/2011 12:23:43 PM,Code 2 Transport,12/09/2011 12:47:38 PM,300 Block of 7TH ST,SF,94103,B03,8,2312,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7759488172418, -122.406743783137)",113430167-77 -113350131,B02,11110856,Alarms,12/01/2011,12/01/2011,12/01/2011 10:33:33 AM,12/01/2011 10:34:36 AM,12/01/2011 10:34:47 AM,12/01/2011 10:35:34 AM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,12/01/2011 10:40:47 AM,400 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,false,,1,CHIEF,3,3,6,South of Market,"(37.7798600031214, -122.405090496364)",113350131-B02 -131150202,E03,13038800,Alarms,04/25/2013,04/25/2013,04/25/2013 03:15:16 PM,04/25/2013 03:15:54 PM,04/25/2013 03:16:01 PM,04/25/2013 03:16:42 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Other,04/25/2013 03:23:54 PM,700 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,true,Alarm,1,ENGINE,3,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",131150202-E03 -112990238,59,11099222,Medical Incident,10/26/2011,10/26/2011,10/26/2011 03:10:50 PM,10/26/2011 03:11:39 PM,10/26/2011 03:11:51 PM,10/26/2011 03:12:35 PM,04/25/2016 02:01:58 PM,10/26/2011 03:37:56 PM,10/26/2011 03:44:22 PM,Code 2 Transport,10/26/2011 04:17:02 PM,GOLDEN GATE AV/HYDE ST,SF,94102,B02,1,1546,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",112990238-59 -160140340,61,16005432,Medical Incident,01/14/2016,01/13/2016,01/14/2016 04:19:47 AM,01/14/2016 04:19:47 AM,01/14/2016 04:19:47 AM,01/14/2016 04:19:47 AM,01/14/2016 04:19:47 AM,01/14/2016 04:28:44 AM,01/14/2016 04:35:33 AM,Code 2 Transport,01/14/2016 06:00:37 AM,500 Block of 5TH ST,San Francisco,94107,B99,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160140340-61 -160171437,KM11,16006827,Medical Incident,01/17/2016,01/17/2016,01/17/2016 12:03:42 PM,01/17/2016 12:04:17 PM,01/17/2016 12:05:13 PM,01/17/2016 12:06:01 PM,01/17/2016 12:14:18 PM,01/17/2016 12:37:13 PM,01/17/2016 12:52:48 PM,Code 2 Transport,01/17/2016 01:15:39 PM,100 Block of LAIDLEY ST,San Francisco,94131,B06,26,8114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Glen Park,"(37.7395435129968, -122.429083804755)",160171437-KM11 -122760344,B06,12091258,Alarms,10/02/2012,10/02/2012,10/02/2012 05:44:01 PM,10/02/2012 05:45:27 PM,10/02/2012 05:45:37 PM,10/02/2012 05:47:03 PM,10/02/2012 05:49:19 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/02/2012 05:54:40 PM,300 Block of 29TH ST,SF,94131,B06,11,5563,3,3,3,false,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7436872348427, -122.427781805638)",122760344-B06 -121870035,KM15,12062180,Medical Incident,07/05/2012,07/04/2012,07/05/2012 01:23:48 AM,07/05/2012 01:26:42 AM,07/05/2012 01:27:18 AM,07/05/2012 01:30:13 AM,07/05/2012 01:34:19 AM,07/05/2012 01:48:32 AM,07/05/2012 02:00:00 AM,Code 2 Transport,07/05/2012 02:22:25 AM,800 Block of 26TH AVE,SF,94121,B07,14,7223,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7734572244074, -122.485260561331)",121870035-KM15 -121060017,E01,12034987,Medical Incident,04/15/2012,04/14/2012,04/15/2012 12:49:31 AM,04/15/2012 12:49:31 AM,04/15/2012 12:49:31 AM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Other,04/15/2012 01:01:16 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",121060017-E01 -123020059,B10,12100047,Alarms,10/28/2012,10/27/2012,10/28/2012 02:39:52 AM,10/28/2012 02:40:01 AM,10/28/2012 02:40:13 AM,10/28/2012 02:42:32 AM,10/28/2012 02:48:35 AM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/28/2012 02:56:45 AM,1000 Block of GILMAN AVE,SF,94124,B10,17,6611,3,3,3,false,Alarm,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7187222856771, -122.389118324965)",123020059-B10 -130940401,85,13031645,Medical Incident,04/04/2013,04/04/2013,04/04/2013 11:36:59 PM,04/04/2013 11:43:42 PM,04/04/2013 11:43:56 PM,04/04/2013 11:45:07 PM,04/04/2013 11:55:38 PM,04/05/2013 12:19:56 AM,04/05/2013 12:26:22 AM,Code 2 Transport,04/05/2013 12:50:40 AM,2500 Block of GEARY BLVD,SF,94115,B05,10,4365,3,2,2,true,Non Life-threatening,1,MEDIC,2,5,2,Presidio Heights,"(37.782740607461, -122.445203077158)",130940401-85 -160892410,KM12,16035384,Medical Incident,03/29/2016,03/29/2016,03/29/2016 03:26:35 PM,03/29/2016 03:28:14 PM,03/29/2016 03:28:30 PM,03/29/2016 03:29:01 PM,03/29/2016 03:34:07 PM,03/29/2016 03:53:03 PM,03/29/2016 04:17:47 PM,Code 2 Transport,03/29/2016 04:58:14 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160892410-KM12 -111410280,E06,11046944,Other,05/21/2011,05/21/2011,05/21/2011 06:49:14 PM,05/21/2011 06:50:43 PM,05/21/2011 06:51:32 PM,05/21/2011 06:52:35 PM,05/21/2011 06:57:05 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,Other,05/21/2011 07:07:32 PM,0 Block of MUSEUM WAY,SF,94114,B05,6,5175,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7645174149932, -122.440219513694)",111410280-E06 -160891280,53,16035287,Medical Incident,03/29/2016,03/29/2016,03/29/2016 10:33:21 AM,03/29/2016 10:33:42 AM,03/29/2016 10:34:04 AM,03/29/2016 10:34:15 AM,03/29/2016 10:44:01 AM,03/29/2016 11:08:35 AM,03/29/2016 11:45:24 AM,Code 2 Transport,03/29/2016 12:35:07 PM,0 Block of SAN PABLO AVE,San Francisco,94127,B08,39,8565,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.73959485255, -122.462100133243)",160891280-53 -140240108,T08,14008115,Medical Incident,01/24/2014,01/24/2014,01/24/2014 09:10:31 AM,01/24/2014 09:11:33 AM,01/24/2014 09:11:56 AM,01/24/2014 09:13:25 AM,01/24/2014 09:15:25 AM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/24/2014 09:24:59 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,,3,3,false,Potentially Life-Threatening,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",140240108-T08 -160783539,85,16031172,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:15:51 PM,03/18/2016 08:17:43 PM,03/18/2016 08:17:59 PM,03/18/2016 08:18:19 PM,03/18/2016 08:23:11 PM,03/18/2016 08:36:06 PM,03/18/2016 08:43:15 PM,Code 2 Transport,03/18/2016 09:24:05 PM,2000 Block of POLK ST,San Francisco,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",160783539-85 -160333345,76,16013159,Medical Incident,02/02/2016,02/02/2016,02/02/2016 09:27:54 PM,02/02/2016 09:28:50 PM,02/02/2016 09:29:28 PM,02/02/2016 09:29:37 PM,02/02/2016 09:34:45 PM,02/02/2016 09:55:59 PM,02/02/2016 10:04:08 PM,Code 2 Transport,02/02/2016 10:46:27 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160333345-76 -160363091,62,16014374,Medical Incident,02/05/2016,02/05/2016,02/05/2016 05:52:28 PM,02/05/2016 05:54:44 PM,02/05/2016 05:55:29 PM,02/05/2016 05:55:41 PM,02/05/2016 06:20:11 PM,02/05/2016 06:48:08 PM,02/05/2016 07:10:12 PM,Code 2 Transport,02/05/2016 07:49:11 PM,600 Block of NATOMA ST,San Francisco,94103,B03,1,2314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7775775502239, -122.411096952518)",160363091-62 -111950274,72,11064452,Medical Incident,07/14/2011,07/14/2011,07/14/2011 05:40:03 PM,07/14/2011 05:40:37 PM,07/14/2011 05:41:37 PM,07/14/2011 05:41:46 PM,04/25/2016 02:03:40 PM,07/14/2011 06:06:17 PM,07/14/2011 06:25:33 PM,Code 2 Transport,07/14/2011 06:49:34 PM,100 Block of CORA ST,SF,94134,B09,44,6253,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.710878454701, -122.409122191393)",111950274-72 -110490067,87,11016096,Medical Incident,02/18/2011,02/17/2011,02/18/2011 06:51:29 AM,02/18/2011 06:52:28 AM,02/18/2011 06:53:45 AM,02/18/2011 06:53:54 AM,02/18/2011 06:56:28 AM,02/18/2011 07:36:05 AM,02/18/2011 07:43:09 AM,Code 2 Transport,02/18/2011 07:54:41 AM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",110490067-87 -122060087,T07,12068411,Alarms,07/24/2012,07/24/2012,07/24/2012 08:47:20 AM,07/24/2012 08:47:20 AM,07/24/2012 08:48:32 AM,07/24/2012 08:49:55 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 08:50:59 AM,17TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7635716035073, -122.41733240732)",122060087-T07 -102910361,T14,10092957,Alarms,10/18/2010,10/18/2010,10/18/2010 09:58:26 PM,10/18/2010 09:59:58 PM,10/18/2010 10:00:19 PM,10/18/2010 10:02:31 PM,10/18/2010 10:04:40 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/18/2010 10:12:05 PM,3500 Block of BALBOA ST,SF,94121,B07,34,7254,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.775684774254, -122.496784770232)",102910361-T14 -132440358,E31,13082504,Medical Incident,09/01/2013,09/01/2013,09/01/2013 10:08:47 PM,09/01/2013 10:12:27 PM,09/01/2013 10:12:43 PM,09/01/2013 10:13:33 PM,09/01/2013 10:16:07 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,No Merit,09/01/2013 10:23:57 PM,500 Block of 3RD AVE,SF,94118,B07,31,7117,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7783106692418, -122.460794716382)",132440358-E31 -160720075,88,16028432,Medical Incident,03/12/2016,03/11/2016,03/12/2016 12:27:27 AM,03/12/2016 12:30:50 AM,03/12/2016 12:31:08 AM,03/12/2016 12:31:20 AM,03/12/2016 12:34:31 AM,03/12/2016 12:52:00 AM,03/12/2016 01:10:52 AM,Code 2 Transport,03/12/2016 01:55:52 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160720075-88 -133550071,AP,13120570,Other,12/21/2013,12/20/2013,12/21/2013 04:57:19 AM,12/21/2013 04:57:19 AM,12/21/2013 04:57:19 AM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Fire,12/21/2013 04:57:42 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",133550071-AP -132650343,T01,13090039,Structure Fire,09/22/2013,09/22/2013,09/22/2013 08:15:11 PM,09/22/2013 08:16:56 PM,09/22/2013 08:17:05 PM,09/22/2013 08:18:12 PM,09/22/2013 08:20:32 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/22/2013 08:35:12 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",132650343-T01 -103080294,AM08,10098776,Medical Incident,11/04/2010,11/04/2010,11/04/2010 04:50:41 PM,11/04/2010 04:51:43 PM,11/04/2010 04:52:48 PM,11/04/2010 04:53:29 PM,11/04/2010 04:54:37 PM,11/04/2010 05:23:17 PM,11/04/2010 05:27:32 PM,Code 2 Transport,11/04/2010 06:07:30 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,PRIVATE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",103080294-AM08 -160690423,79,16027336,Medical Incident,03/09/2016,03/08/2016,03/09/2016 05:42:35 AM,03/09/2016 05:42:35 AM,03/09/2016 05:43:09 AM,03/09/2016 05:43:17 AM,03/09/2016 06:06:02 AM,03/09/2016 06:06:04 AM,03/09/2016 06:10:43 AM,Code 2 Transport,03/09/2016 06:39:40 AM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160690423-79 -110090025,E13,11002865,Alarms,01/09/2011,01/08/2011,01/09/2011 01:26:47 AM,01/09/2011 01:27:18 AM,01/09/2011 01:27:34 AM,01/09/2011 01:29:17 AM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,04/25/2016 02:06:41 PM,Other,01/09/2011 01:32:09 AM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",110090025-E13 -160272812,KM02,16010782,Medical Incident,01/27/2016,01/27/2016,01/27/2016 05:01:19 PM,01/27/2016 05:03:18 PM,01/27/2016 05:04:48 PM,01/27/2016 05:05:10 PM,01/27/2016 05:16:03 PM,01/27/2016 05:28:42 PM,01/27/2016 05:57:06 PM,Code 2 Transport,01/27/2016 06:50:38 PM,GOLDEN GATE AV/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",160272812-KM02 -112900273,94,11096275,Medical Incident,10/17/2011,10/17/2011,10/17/2011 03:36:11 PM,10/17/2011 03:36:53 PM,10/17/2011 03:39:43 PM,10/17/2011 03:40:05 PM,04/25/2016 02:02:07 PM,10/17/2011 03:56:19 PM,10/17/2011 04:18:04 PM,Code 2 Transport,10/17/2011 04:44:31 PM,3600 Block of BALBOA ST,SF,94121,B07,34,7254,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.775745894007, -122.497856123166)",112900273-94 -71300108,T09,7037405,Alarms,05/10/2007,05/10/2007,05/10/2007 09:33:41 AM,05/10/2007 09:36:11 AM,05/10/2007 09:36:24 AM,05/10/2007 09:38:09 AM,05/10/2007 09:46:21 AM,04/25/2016 03:39:31 PM,04/25/2016 03:39:31 PM,Other,05/10/2007 09:49:38 AM,0 Block of OLIVER ST,SF,94112,B09,33,6212,3,3,3,true,,1,TRUCK,1,9,11,Excelsior,"(37.7089141999968, -122.450236359264)",071300108-T09 -111590281,75,11052664,Medical Incident,06/08/2011,06/08/2011,06/08/2011 06:30:41 PM,06/08/2011 06:34:38 PM,06/08/2011 06:34:59 PM,06/08/2011 06:35:13 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/08/2011 06:43:51 PM,800 Block of 39TH AVE,SF,94121,B07,34,7261,3,3,3,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7728149712601, -122.499320036214)",111590281-75 -160630885,61,16024988,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:46:18 AM,03/03/2016 08:48:28 AM,03/03/2016 08:48:44 AM,03/03/2016 08:49:09 AM,03/03/2016 09:07:06 AM,03/03/2016 09:48:08 AM,03/03/2016 09:57:48 AM,Code 2 Transport,03/03/2016 10:53:41 AM,1700 Block of MCALLISTER ST,San Francisco,94115,B05,21,4254,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",160630885-61 -102640174,T16,10083539,Structure Fire,09/21/2010,09/21/2010,09/21/2010 12:46:11 PM,09/21/2010 12:47:37 PM,09/21/2010 12:47:44 PM,09/21/2010 12:49:15 PM,09/21/2010 12:51:33 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 12:59:09 PM,3700 Block of FILLMORE ST,SF,94123,B04,16,3556,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.8048946040758, -122.437315946974)",102640174-T16 -160670207,AM18,16026578,Medical Incident,03/07/2016,03/06/2016,03/07/2016 03:07:01 AM,03/07/2016 03:07:52 AM,03/07/2016 03:08:11 AM,03/07/2016 03:08:49 AM,03/07/2016 03:16:07 AM,03/07/2016 03:29:09 AM,03/07/2016 03:36:39 AM,Code 2 Transport,03/07/2016 04:12:48 AM,300 Block of BAY SHORE BLVD,San Francisco,94110,B10,42,6374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",160670207-AM18 -160341640,KM05,16013374,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:34:39 PM,02/03/2016 12:36:15 PM,02/03/2016 12:37:45 PM,02/03/2016 12:37:45 PM,02/03/2016 12:49:19 PM,02/03/2016 01:17:19 PM,02/03/2016 01:38:06 PM,Code 2 Transport,02/03/2016 02:38:38 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160341640-KM05 -160564049,89,16022562,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:52:40 PM,02/25/2016 10:52:40 PM,02/25/2016 10:53:16 PM,02/25/2016 10:53:26 PM,02/25/2016 11:16:33 PM,02/25/2016 11:16:34 PM,02/25/2016 11:42:42 PM,Code 2 Transport,02/26/2016 12:04:13 AM,800 Block of BAY ST,San Francisco,94109,B01,28,1614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8047317256533, -122.421008558013)",160564049-89 -120930191,D3,12030810,Structure Fire,04/02/2012,04/02/2012,04/02/2012 01:05:44 PM,04/02/2012 01:06:36 PM,04/02/2012 01:06:48 PM,04/02/2012 01:08:32 PM,04/02/2012 01:09:26 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Fire,04/02/2012 01:23:19 PM,1500 Block of FOLSOM ST,SF,94103,B02,36,5121,3,3,3,false,Fire,1,CHIEF,2,2,6,Mission,"(37.7716700767604, -122.414328770789)",120930191-D3 -112330318,B04,11077064,Structure Fire,08/21/2011,08/21/2011,08/21/2011 07:37:27 PM,08/21/2011 07:38:16 PM,08/21/2011 07:38:29 PM,08/21/2011 07:42:08 PM,08/21/2011 07:42:10 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/21/2011 07:58:54 PM,600 Block of LARCH ST,SF,94115,B02,5,3426,3,3,3,false,,1,CHIEF,8,2,5,Western Addition,"(37.7815345081004, -122.428135307501)",112330318-B04 -132290375,93,13077461,Medical Incident,08/17/2013,08/17/2013,08/17/2013 09:39:35 PM,08/17/2013 09:41:37 PM,08/17/2013 09:41:58 PM,08/17/2013 09:42:48 PM,08/17/2013 09:54:25 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Unable to Locate,08/17/2013 09:58:55 PM,0 Block of TELEGRAPH HILL BLVD,SF,94133,B01,28,1253,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8022505061483, -122.405471739992)",132290375-93 -120520348,81,12017322,Medical Incident,02/21/2012,02/21/2012,02/21/2012 09:27:42 PM,02/21/2012 09:29:54 PM,02/21/2012 09:31:05 PM,02/21/2012 09:31:13 PM,02/21/2012 09:38:56 PM,04/25/2016 02:00:01 PM,04/25/2016 02:00:01 PM,Patient Declined Transport,02/21/2012 10:27:53 PM,1500 Block of SHAFTER AVE,SF,94124,B10,17,6547,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.730553557091, -122.389751029234)",120520348-81 -133000066,E03,13101847,Medical Incident,10/27/2013,10/26/2013,10/27/2013 03:04:17 AM,10/27/2013 03:08:50 AM,10/27/2013 03:10:09 AM,10/27/2013 03:12:12 AM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/27/2013 03:13:58 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",133000066-E03 -122230286,92,12074019,Medical Incident,08/10/2012,08/10/2012,08/10/2012 05:34:44 PM,08/10/2012 05:36:28 PM,08/10/2012 05:37:24 PM,08/10/2012 05:37:48 PM,08/10/2012 05:50:25 PM,08/10/2012 06:11:01 PM,08/10/2012 06:41:10 PM,Code 2 Transport,08/10/2012 07:01:28 PM,3200 Block of VAN NESS AVE,SF,94109,B04,28,3143,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.805550799113, -122.425219186379)",122230286-92 -103040123,86,10097077,Medical Incident,10/31/2010,10/30/2010,10/31/2010 06:08:16 AM,10/31/2010 06:08:53 AM,10/31/2010 06:09:43 AM,10/31/2010 06:09:59 AM,10/31/2010 06:18:54 AM,10/31/2010 06:34:51 AM,04/25/2016 02:07:50 PM,Code 2 Transport,10/31/2010 07:12:13 AM,700 Block of 35TH AVE,SF,94121,B07,34,7252,3,3,3,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7748832270511, -122.495037870754)",103040123-86 -140430107,KM14,14014549,Medical Incident,02/12/2014,02/12/2014,02/12/2014 09:56:08 AM,02/12/2014 09:56:46 AM,02/12/2014 09:56:56 AM,02/12/2014 09:58:02 AM,02/12/2014 10:01:14 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Patient Declined Transport,02/12/2014 10:04:37 AM,1800 Block of IRVING ST,SF,94122,B08,22,7424,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.763591973361, -122.477686297417)",140430107-KM14 -132600114,AM16,13087908,Medical Incident,09/17/2013,09/17/2013,09/17/2013 08:22:05 AM,09/17/2013 08:22:48 AM,09/17/2013 08:23:30 AM,09/17/2013 08:24:06 AM,09/17/2013 08:27:55 AM,09/17/2013 08:40:50 AM,09/17/2013 08:54:57 AM,Code 2 Transport,09/17/2013 09:21:59 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",132600114-AM16 -123330004,92,12110507,Medical Incident,11/28/2012,11/27/2012,11/28/2012 12:07:08 AM,11/28/2012 12:09:47 AM,11/28/2012 12:10:07 AM,11/28/2012 12:11:01 AM,11/28/2012 12:17:24 AM,11/28/2012 12:37:38 AM,11/28/2012 01:06:57 AM,Code 2 Transport,11/28/2012 01:02:53 AM,500 Block of 27TH ST,SF,94131,B06,11,5553,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7464538550572, -122.432847009979)",123330004-92 -160372073,AM06,16014716,Medical Incident,02/06/2016,02/06/2016,02/06/2016 01:37:43 PM,02/06/2016 01:37:43 PM,02/06/2016 01:47:07 PM,02/06/2016 01:47:25 PM,02/06/2016 01:57:20 PM,02/06/2016 02:09:51 PM,02/06/2016 02:15:21 PM,Code 2 Transport,02/06/2016 02:50:43 PM,1400 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",160372073-AM06 -121910019,E13,12063453,Structure Fire,07/09/2012,07/08/2012,07/09/2012 02:11:59 AM,07/09/2012 02:12:57 AM,07/09/2012 02:13:26 AM,07/09/2012 02:14:57 AM,07/09/2012 02:58:55 AM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 03:01:16 AM,500 Block of FILBERT ST,SF,94133,B01,28,1265,3,3,3,true,Fire,1,ENGINE,9,1,3,North Beach,"(37.8014938580961, -122.407940275839)",121910019-E13 -111240247,RC1,11041022,Medical Incident,05/04/2011,05/04/2011,05/04/2011 02:49:11 PM,05/04/2011 02:49:45 PM,05/04/2011 02:50:14 PM,04/25/2016 02:04:47 PM,05/04/2011 02:52:47 PM,04/25/2016 02:04:47 PM,04/25/2016 02:04:47 PM,Other,05/04/2011 03:07:53 PM,LEAVENWORTH ST/EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,RESCUE CAPTAIN,1,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",111240247-RC1 -111130249,T03,11037392,Elevator / Escalator Rescue,04/23/2011,04/23/2011,04/23/2011 04:41:49 PM,04/23/2011 04:43:38 PM,04/23/2011 04:43:55 PM,04/23/2011 04:45:45 PM,04/23/2011 04:46:40 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/23/2011 05:08:05 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",111130249-T03 -122850352,82,12094417,Medical Incident,10/11/2012,10/11/2012,10/11/2012 09:10:53 PM,10/11/2012 09:11:14 PM,10/11/2012 09:11:34 PM,10/11/2012 09:12:06 PM,10/11/2012 09:22:38 PM,10/11/2012 09:37:39 PM,10/11/2012 09:47:56 PM,Code 2 Transport,10/11/2012 10:16:03 PM,300 Block of EDINBURGH ST,SF,94112,B09,43,6133,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7235920979291, -122.430301878327)",122850352-82 -112220113,54,11073274,Medical Incident,08/10/2011,08/10/2011,08/10/2011 10:14:58 AM,08/10/2011 10:16:29 AM,08/10/2011 10:16:52 AM,08/10/2011 10:17:03 AM,08/10/2011 10:22:48 AM,08/10/2011 10:27:50 AM,08/10/2011 10:45:34 AM,Code 2 Transport,08/10/2011 11:14:36 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",112220113-54 -112980263,68,11098918,Medical Incident,10/25/2011,10/25/2011,10/25/2011 04:21:34 PM,10/25/2011 04:21:35 PM,10/25/2011 04:23:07 PM,10/25/2011 04:25:24 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 04:27:15 PM,BRYANT ST/16TH ST,SF,94110,B02,29,5241,2,2,2,true,,1,MEDIC,1,2,10,Mission,"(37.7656058395036, -122.410486689194)",112980263-68 -160103477,62,16004203,Medical Incident,01/10/2016,01/10/2016,01/10/2016 10:35:57 PM,01/10/2016 10:35:57 PM,01/10/2016 10:36:14 PM,01/10/2016 10:36:20 PM,01/10/2016 10:43:03 PM,01/10/2016 10:52:17 PM,01/10/2016 10:56:13 PM,Code 2 Transport,01/10/2016 11:33:42 PM,3100 Block of WEBSTER ST,San Francisco,94123,B04,16,3461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.799403168775, -122.434203435941)",160103477-62 -131980042,RS2,13067037,Structure Fire,07/17/2013,07/16/2013,07/17/2013 06:41:00 AM,07/17/2013 06:42:15 AM,07/17/2013 06:42:44 AM,07/17/2013 06:45:44 AM,07/17/2013 06:46:29 AM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/17/2013 06:49:27 AM,CESAR CHAVEZ ST/BAYSHORE BL,SF,94110,B10,9,2626,3,3,3,false,Alarm,1,RESCUE SQUAD,4,6,9,Bernal Heights,"(37.7489710482463, -122.405626953003)",131980042-RS2 -111200230,E22,11039616,Structure Fire,04/30/2011,04/30/2011,04/30/2011 02:37:26 PM,04/30/2011 02:37:27 PM,04/30/2011 02:38:32 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 02:41:05 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,true,,1,ENGINE,4,8,5,Inner Sunset,"(37.7632029010129, -122.464037930237)",111200230-E22 -121270189,KM15,12042277,Medical Incident,05/06/2012,05/06/2012,05/06/2012 02:01:31 PM,05/06/2012 02:04:25 PM,05/06/2012 02:04:48 PM,05/06/2012 02:05:23 PM,05/06/2012 02:15:10 PM,05/06/2012 02:20:17 PM,05/06/2012 02:30:55 PM,Code 2 Transport,05/06/2012 02:54:32 PM,GREAT HY/JOHN F KENNEDY DR,SF,94122,B08,23,7722,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7704356758824, -122.510925945877)",121270189-KM15 -160902799,53,16035803,Medical Incident,03/30/2016,03/30/2016,03/30/2016 04:45:28 PM,03/30/2016 04:47:09 PM,03/30/2016 04:47:32 PM,03/30/2016 04:47:54 PM,03/30/2016 04:52:49 PM,03/30/2016 05:07:52 PM,03/30/2016 05:18:39 PM,Code 2 Transport,03/30/2016 06:03:06 PM,2500 Block of 19TH ST,San Francisco,94110,B10,7,5427,3,3,3,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.760685936082, -122.407570201357)",160902799-53 -120790020,E06,12026100,Alarms,03/19/2012,03/18/2012,03/19/2012 02:37:02 AM,03/19/2012 02:41:02 AM,03/19/2012 02:41:12 AM,03/19/2012 02:42:46 AM,03/19/2012 02:45:52 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 03:00:38 AM,200 Block of FILLMORE ST,SF,94117,B05,6,3526,3,3,3,true,Alarm,1,ENGINE,3,5,5,Hayes Valley,"(37.7718667121551, -122.430462821161)",120790020-E06 -160311933,88,16012176,Medical Incident,01/31/2016,01/31/2016,01/31/2016 01:54:57 PM,01/31/2016 01:55:28 PM,01/31/2016 01:56:44 PM,01/31/2016 01:56:48 PM,01/31/2016 02:01:05 PM,01/31/2016 02:22:26 PM,01/31/2016 02:24:43 PM,Code 2 Transport,01/31/2016 03:11:16 PM,2100 Block of PINE ST,San Francisco,94115,B04,38,3434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",160311933-88 -103020113,E03,10096433,Medical Incident,10/29/2010,10/29/2010,10/29/2010 10:36:58 AM,10/29/2010 10:38:13 AM,10/29/2010 10:39:18 AM,10/29/2010 10:39:50 AM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/29/2010 10:40:35 AM,VAN NESS AV/POST ST,SF,94109,B04,3,3161,3,2,2,true,,1,ENGINE,2,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",103020113-E03 -121170328,E31,12038903,Medical Incident,04/26/2012,04/26/2012,04/26/2012 08:45:26 PM,04/26/2012 08:47:12 PM,04/26/2012 08:47:27 PM,04/26/2012 08:48:29 PM,04/26/2012 08:51:18 PM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,Other,04/26/2012 08:51:39 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Non Life-threatening,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",121170328-E31 -121720100,E08,12057043,Medical Incident,06/20/2012,06/20/2012,06/20/2012 09:24:49 AM,06/20/2012 09:25:09 AM,06/20/2012 09:25:21 AM,06/20/2012 09:26:56 AM,06/20/2012 09:28:50 AM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,Other,06/20/2012 09:41:08 AM,5TH ST/HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7790321327374, -122.401843274439)",121720100-E08 -131970324,E18,13066941,Medical Incident,07/16/2013,07/16/2013,07/16/2013 07:39:38 PM,07/16/2013 07:40:19 PM,07/16/2013 07:40:33 PM,07/16/2013 07:41:30 PM,07/16/2013 07:44:10 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Medical Examiner,07/16/2013 08:06:46 PM,2400 Block of TARAVAL ST,SF,94116,B08,18,7546,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7423741797947, -122.492306247956)",131970324-E18 -113250243,E06,11107980,Medical Incident,11/21/2011,11/21/2011,11/21/2011 03:13:09 PM,11/21/2011 03:14:03 PM,11/21/2011 03:14:26 PM,11/21/2011 03:16:08 PM,11/21/2011 03:19:43 PM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,Other,11/21/2011 03:37:48 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",113250243-E06 -120320147,E14,12010540,Medical Incident,02/01/2012,02/01/2012,02/01/2012 11:37:18 AM,02/01/2012 11:37:49 AM,02/01/2012 11:38:06 AM,02/01/2012 11:38:26 AM,02/01/2012 11:39:24 AM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,02/01/2012 11:54:12 AM,300 Block of 30TH AVE,SF,94121,B07,14,7227,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7827045726487, -122.490366876901)",120320147-E14 -122900122,T11,12095921,Medical Incident,10/16/2012,10/16/2012,10/16/2012 09:37:15 AM,10/16/2012 09:39:08 AM,10/16/2012 09:39:15 AM,10/16/2012 09:40:25 AM,10/16/2012 09:42:40 AM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/16/2012 09:51:48 AM,VALLEY ST/SANCHEZ ST,SF,94131,B06,11,5564,2,2,2,false,Potentially Life-Threatening,1,TRUCK,1,6,8,Noe Valley,"(37.7443632395525, -122.428959474009)",122900122-T11 -160910895,65,16036002,Medical Incident,03/31/2016,03/31/2016,03/31/2016 09:14:42 AM,03/31/2016 09:15:52 AM,03/31/2016 09:16:10 AM,03/31/2016 09:16:18 AM,03/31/2016 09:26:07 AM,03/31/2016 09:55:53 AM,03/31/2016 10:12:34 AM,Code 2 Transport,03/31/2016 10:53:29 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160910895-65 -122090234,54,12069489,Medical Incident,07/27/2012,07/27/2012,07/27/2012 04:16:24 PM,07/27/2012 04:19:41 PM,07/27/2012 04:21:59 PM,07/27/2012 04:22:05 PM,07/27/2012 04:37:21 PM,07/27/2012 04:57:27 PM,07/27/2012 05:16:03 PM,Code 2 Transport,07/27/2012 05:40:19 PM,1400 Block of SOUTH VAN NESS AVE,SF,94110,B06,11,5534,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7499674756402, -122.416100108389)",122090234-54 -111670046,E05,11055017,Medical Incident,06/16/2011,06/15/2011,06/16/2011 05:38:30 AM,06/16/2011 05:39:49 AM,06/16/2011 05:40:40 AM,04/25/2016 02:04:08 PM,06/16/2011 05:43:24 AM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/16/2011 05:45:09 AM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",111670046-E05 -160761802,56,16030144,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:48:49 PM,03/16/2016 12:49:01 PM,03/16/2016 12:49:14 PM,03/16/2016 12:49:44 PM,03/16/2016 12:52:40 PM,03/16/2016 01:03:36 PM,03/16/2016 01:13:28 PM,Code 2 Transport,03/16/2016 02:17:14 PM,15TH ST/SOUTH VAN NESS AV,San Francisco,94103,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7668052440942, -122.417645453705)",160761802-56 -111230124,67,11040578,Medical Incident,05/03/2011,05/03/2011,05/03/2011 09:34:21 AM,05/03/2011 09:35:26 AM,05/03/2011 09:35:56 AM,05/03/2011 09:36:07 AM,05/03/2011 10:04:39 AM,05/03/2011 10:05:26 AM,05/03/2011 10:36:56 AM,Code 2 Transport,05/03/2011 11:03:25 AM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.772815434744, -122.41598356737)",111230124-67 -130010219,54,13000159,Medical Incident,01/01/2013,12/31/2012,01/01/2013 03:48:19 AM,01/01/2013 03:49:13 AM,01/01/2013 03:51:21 AM,01/01/2013 03:52:28 AM,01/01/2013 03:57:06 AM,04/25/2016 01:55:01 PM,04/25/2016 01:55:01 PM,No Merit,01/01/2013 04:21:35 AM,2500 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7294531060335, -122.404280402051)",130010219-54 -123530301,58,12118197,Structure Fire,12/18/2012,12/18/2012,12/18/2012 05:37:53 PM,12/18/2012 05:38:50 PM,12/18/2012 05:39:09 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 05:47:06 PM,1600 Block of CABRILLO ST,SF,94121,B07,31,7166,3,3,3,true,Alarm,1,MEDIC,5,7,1,Outer Richmond,"(37.7747485859842, -122.476286291215)",123530301-58 -140480323,B04,14016477,Alarms,02/17/2014,02/17/2014,02/17/2014 09:54:29 PM,02/17/2014 09:55:28 PM,02/17/2014 09:55:50 PM,02/17/2014 09:57:11 PM,02/17/2014 09:59:36 PM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,Fire,02/17/2014 10:06:21 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",140480323-B04 -121210183,B09,12040184,Alarms,04/30/2012,04/30/2012,04/30/2012 01:35:29 PM,04/30/2012 01:35:56 PM,04/30/2012 01:36:12 PM,04/30/2012 01:36:32 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 01:42:11 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,false,Alarm,1,CHIEF,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",121210183-B09 -130930228,81,13031170,Medical Incident,04/03/2013,04/03/2013,04/03/2013 03:09:07 PM,04/03/2013 03:10:52 PM,04/03/2013 03:11:13 PM,04/03/2013 03:11:24 PM,04/03/2013 03:21:40 PM,04/03/2013 03:27:44 PM,04/25/2016 01:53:30 PM,Code 2 Transport,04/03/2013 04:02:31 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",130930228-81 -123560030,E16,12119009,Structure Fire,12/21/2012,12/20/2012,12/21/2012 01:53:27 AM,12/21/2012 01:53:27 AM,12/21/2012 01:53:36 AM,12/21/2012 01:55:30 AM,12/21/2012 01:56:35 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Fire,12/21/2012 01:56:40 AM,PIERCE ST/GREENWICH ST,SF,94123,B04,16,3656,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7985333270748, -122.439156219009)",123560030-E16 -140700170,E09,14023598,Structure Fire,03/11/2014,03/11/2014,03/11/2014 12:29:41 PM,03/11/2014 12:29:41 PM,03/11/2014 12:30:02 PM,03/11/2014 12:31:37 PM,03/11/2014 12:33:18 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Fire,03/11/2014 12:39:56 PM,2600 Block of 25TH ST,SAN FRANCISCO,94110,B10,9,2624,3,3,3,true,Alarm,1,ENGINE,1,10,10,Mission,"(37.75176116963, -122.404719532996)",140700170-E09 -140970330,E44,14032784,Medical Incident,04/07/2014,04/07/2014,04/07/2014 05:12:15 PM,04/07/2014 05:13:08 PM,04/07/2014 05:14:16 PM,04/07/2014 05:14:16 PM,04/07/2014 05:16:36 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Code 3 Transport,04/07/2014 05:51:13 PM,1400 Block of PALOU AVE,SAN FRANCISCO,94124,B10,17,6551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7323435109332, -122.388141018741)",140970330-E44 -132870067,T07,13097522,Alarms,10/14/2013,10/13/2013,10/14/2013 06:41:41 AM,10/14/2013 06:43:27 AM,10/14/2013 06:43:41 AM,10/14/2013 06:45:58 AM,10/14/2013 06:48:57 AM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 06:53:35 AM,200 Block of KANSAS ST,SF,94103,B02,29,2353,3,3,3,false,Alarm,1,TRUCK,2,2,10,Mission Bay,"(37.7666628176846, -122.403770313617)",132870067-T07 -120950204,E07,12031490,Medical Incident,04/04/2012,04/04/2012,04/04/2012 03:32:11 PM,04/04/2012 03:32:36 PM,04/04/2012 03:32:59 PM,04/04/2012 03:33:50 PM,04/04/2012 03:36:09 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 03:36:32 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",120950204-E07 -123060201,60,12101664,Medical Incident,11/01/2012,11/01/2012,11/01/2012 01:43:07 PM,11/01/2012 01:44:02 PM,11/01/2012 01:47:35 PM,11/01/2012 01:57:29 PM,11/01/2012 02:00:17 PM,11/01/2012 02:14:49 PM,11/01/2012 02:24:08 PM,Code 2 Transport,11/01/2012 02:57:34 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",123060201-60 -113610214,E12,11119975,Medical Incident,12/27/2011,12/27/2011,12/27/2011 04:04:21 PM,12/27/2011 04:04:44 PM,12/27/2011 04:05:00 PM,12/27/2011 04:06:48 PM,12/27/2011 04:10:52 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 04:46:00 PM,1700 Block of OAK ST,SF,94117,B05,21,4524,3,E,3,true,,1,ENGINE,3,5,5,Golden Gate Park,"(37.7718274800356, -122.448146140288)",113610214-E12 -160553946,75,16022168,Medical Incident,02/24/2016,02/24/2016,02/24/2016 09:46:01 PM,02/24/2016 09:46:56 PM,02/24/2016 09:47:50 PM,02/24/2016 09:48:00 PM,02/24/2016 09:56:36 PM,02/24/2016 10:12:37 PM,02/24/2016 10:50:57 PM,Code 2 Transport,02/24/2016 11:23:15 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160553946-75 -160060072,85,16002219,Medical Incident,01/06/2016,01/05/2016,01/06/2016 12:35:30 AM,01/06/2016 12:37:11 AM,01/06/2016 12:37:43 AM,01/06/2016 12:37:55 AM,01/06/2016 12:41:23 AM,01/06/2016 12:50:47 AM,01/06/2016 01:03:23 AM,Code 2 Transport,01/06/2016 01:32:52 AM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",160060072-85 -123600061,KM12,12120412,Medical Incident,12/25/2012,12/25/2012,12/25/2012 08:09:20 AM,12/25/2012 08:10:31 AM,12/25/2012 08:10:54 AM,12/25/2012 08:11:34 AM,12/25/2012 08:16:01 AM,12/25/2012 08:31:46 AM,12/25/2012 08:56:39 AM,Code 2 Transport,12/25/2012 09:08:57 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",123600061-KM12 -160840995,52,16033297,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:09:05 AM,03/24/2016 09:09:05 AM,03/24/2016 09:10:21 AM,03/24/2016 09:10:33 AM,03/24/2016 09:24:46 AM,03/24/2016 09:39:25 AM,03/24/2016 09:53:38 AM,Code 2 Transport,03/24/2016 10:35:49 AM,400 Block of BLK COLUMBUS AV,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7984593845717, -122.407835265258)",160840995-52 -113600089,E08,11119572,Outside Fire,12/26/2011,12/26/2011,12/26/2011 09:10:46 AM,12/26/2011 09:11:19 AM,12/26/2011 09:11:27 AM,12/26/2011 09:13:00 AM,12/26/2011 09:15:50 AM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Fire,12/26/2011 09:20:52 AM,1ST ST/HARRISON ST,SF,94105,B03,35,2136,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7860675314585, -122.392936686281)",113600089-E08 -102830002,74,10089915,Medical Incident,10/10/2010,10/09/2010,10/10/2010 12:00:26 AM,10/10/2010 12:01:28 AM,10/10/2010 12:01:38 AM,10/10/2010 12:04:08 AM,10/10/2010 12:09:21 AM,10/10/2010 12:26:11 AM,10/10/2010 12:37:00 AM,Code 2 Transport,10/10/2010 12:51:06 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",102830002-74 -123220290,E01,12107139,Medical Incident,11/17/2012,11/17/2012,11/17/2012 04:57:23 PM,11/17/2012 04:58:17 PM,11/17/2012 04:59:22 PM,11/17/2012 05:04:19 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 05:04:53 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",123220290-E01 -132810081,94,13095526,Medical Incident,10/08/2013,10/07/2013,10/08/2013 07:40:02 AM,10/08/2013 07:40:51 AM,10/08/2013 07:41:10 AM,10/08/2013 07:41:33 AM,10/08/2013 07:45:21 AM,10/08/2013 08:02:33 AM,10/08/2013 08:37:47 AM,Code 2 Transport,10/08/2013 09:12:14 AM,1400 Block of NEWCOMB AVE,SF,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",132810081-94 -120850031,E01,12028109,Medical Incident,03/25/2012,03/24/2012,03/25/2012 01:57:53 AM,03/25/2012 01:58:45 AM,03/25/2012 01:58:54 AM,03/25/2012 02:00:07 AM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 02:01:04 AM,200 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",120850031-E01 -160160575,88,16006304,Medical Incident,01/16/2016,01/15/2016,01/16/2016 04:56:15 AM,01/16/2016 04:58:45 AM,01/16/2016 04:59:09 AM,01/16/2016 04:59:54 AM,01/16/2016 05:09:36 AM,01/16/2016 05:24:02 AM,01/16/2016 05:29:38 AM,Code 2 Transport,01/16/2016 05:51:53 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160160575-88 -110430416,87,11014459,Medical Incident,02/12/2011,02/12/2011,02/12/2011 09:59:06 PM,02/12/2011 09:59:41 PM,02/12/2011 10:00:05 PM,02/12/2011 10:02:36 PM,02/12/2011 10:10:03 PM,02/12/2011 10:31:02 PM,02/12/2011 10:45:22 PM,Code 2 Transport,02/12/2011 11:14:44 PM,500 Block of NATOMA ST,SF,94103,B03,1,2314,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7788157426427, -122.409325210496)",110430416-87 -130150088,E08,13005043,Medical Incident,01/15/2013,01/15/2013,01/15/2013 09:03:47 AM,01/15/2013 09:10:00 AM,01/15/2013 09:10:42 AM,01/15/2013 09:12:42 AM,01/15/2013 09:18:44 AM,04/25/2016 01:54:48 PM,04/25/2016 01:54:48 PM,Other,01/15/2013 09:28:35 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",130150088-E08 -121410400,81,12047032,Medical Incident,05/20/2012,05/20/2012,05/20/2012 07:46:13 PM,05/20/2012 07:49:15 PM,05/20/2012 07:49:28 PM,05/20/2012 07:49:37 PM,05/20/2012 07:56:43 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,Patient Declined Transport,05/20/2012 08:25:42 PM,PACHECO ST/48TH AV,SF,94116,B08,23,7726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7491399727259, -122.507286878321)",121410400-81 -111750157,E24,11057657,Citizen Assist / Service Call,06/24/2011,06/24/2011,06/24/2011 11:48:30 AM,06/24/2011 11:49:57 AM,06/24/2011 11:50:19 AM,04/25/2016 02:04:00 PM,06/24/2011 11:50:58 AM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Fire,06/24/2011 12:01:42 PM,CASTRO ST/24TH ST,SF,94114,B06,24,5521,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7513037332512, -122.434089515984)",111750157-E24 -130500212,B02,13017038,Alarms,02/19/2013,02/19/2013,02/19/2013 05:47:32 PM,02/19/2013 05:49:23 PM,02/19/2013 05:49:33 PM,02/19/2013 05:51:23 PM,02/19/2013 05:54:59 PM,04/25/2016 01:54:13 PM,04/25/2016 01:54:13 PM,Other,02/19/2013 06:01:01 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130500212-B02 -131410085,82,13047698,Medical Incident,05/21/2013,05/21/2013,05/21/2013 08:42:57 AM,05/21/2013 08:43:58 AM,05/21/2013 08:44:20 AM,05/21/2013 08:44:28 AM,05/21/2013 08:51:58 AM,05/21/2013 09:13:06 AM,05/21/2013 09:27:06 AM,Code 2 Transport,05/21/2013 09:48:02 AM,1100 Block of FRANCISCO ST,SF,94109,B01,16,314,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,2,Russian Hill,"(37.803363322315, -122.424107741649)",131410085-82 -113570370,77,11118748,Traffic Collision,12/23/2011,12/23/2011,12/23/2011 06:08:07 PM,12/23/2011 06:08:07 PM,12/23/2011 06:08:07 PM,12/23/2011 06:09:54 PM,04/25/2016 02:01:00 PM,12/23/2011 06:33:40 PM,12/23/2011 06:50:03 PM,Code 2 Transport,12/23/2011 07:13:55 PM,17TH ST/POTRERO AV,SF,94110,B02,29,2416,2,2,2,true,,1,MEDIC,2,2,10,Potrero Hill,"(37.764487829529, -122.407419738574)",113570370-77 -111050239,E01,11034814,Medical Incident,04/15/2011,04/15/2011,04/15/2011 04:38:44 PM,04/15/2011 04:38:58 PM,04/15/2011 04:39:11 PM,04/15/2011 04:40:09 PM,04/15/2011 04:43:21 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 04:45:33 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",111050239-E01 -160293432,85,16011571,Medical Incident,01/29/2016,01/29/2016,01/29/2016 09:10:15 PM,01/29/2016 09:11:27 PM,01/29/2016 09:13:37 PM,01/29/2016 09:13:37 PM,01/29/2016 09:22:50 PM,01/29/2016 09:30:56 PM,01/29/2016 09:39:36 PM,Code 2 Transport,01/29/2016 10:16:55 PM,1400 Block of MARKET ST,San Francisco,94102,B02,36,3211,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7759118668868, -122.418463578381)",160293432-85 -102910192,E08,10092811,Medical Incident,10/18/2010,10/18/2010,10/18/2010 12:56:30 PM,10/18/2010 12:57:23 PM,10/18/2010 12:57:58 PM,10/18/2010 12:58:51 PM,10/18/2010 01:01:34 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/18/2010 01:06:15 PM,0 Block of GILBERT ST,SF,94103,B03,8,2311,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7740497389956, -122.403491478866)",102910192-E08 -160501998,53,16020117,Medical Incident,02/19/2016,02/19/2016,02/19/2016 02:12:46 PM,02/19/2016 02:14:18 PM,02/19/2016 02:14:50 PM,02/19/2016 02:15:04 PM,02/19/2016 02:25:25 PM,02/19/2016 02:37:13 PM,02/19/2016 03:12:11 PM,Code 2 Transport,02/19/2016 03:30:52 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160501998-53 -111490244,E07,11049460,Medical Incident,05/29/2011,05/29/2011,05/29/2011 06:30:01 PM,05/29/2011 06:33:26 PM,05/29/2011 06:33:44 PM,05/29/2011 06:34:48 PM,05/29/2011 06:38:25 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 06:44:47 PM,500 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,true,,1,ENGINE,1,2,8,Mission,"(37.7619448798252, -122.423956468)",111490244-E07 -111530275,E02,11050655,Structure Fire,06/02/2011,06/02/2011,06/02/2011 06:52:02 PM,06/02/2011 06:53:52 PM,06/02/2011 06:54:28 PM,06/02/2011 06:55:40 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/02/2011 07:03:17 PM,1800 Block of THE EMBARCADERO,SF,94133,B01,28,935,3,3,3,true,,1,ENGINE,11,1,3,North Beach,"(37.8088354051007, -122.414108783784)",111530275-E02 -123060182,E44,12101647,Alarms,11/01/2012,11/01/2012,11/01/2012 12:32:32 PM,11/01/2012 12:33:47 PM,11/01/2012 12:33:53 PM,11/01/2012 12:34:54 PM,11/01/2012 12:38:07 PM,04/25/2016 01:56:00 PM,04/25/2016 01:56:00 PM,Other,11/01/2012 12:52:39 PM,200 Block of EXECUTIVE PARK BLVD,SF,94134,B10,44,6275,3,3,3,true,Alarm,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7111243307685, -122.39173301635)",123060182-E44 -140600254,67,14020317,Medical Incident,03/01/2014,03/01/2014,03/01/2014 04:22:44 PM,03/01/2014 04:22:59 PM,03/01/2014 04:24:19 PM,03/01/2014 04:24:34 PM,03/01/2014 04:26:45 PM,03/01/2014 04:41:21 PM,03/01/2014 05:01:06 PM,Code 2 Transport,03/01/2014 05:19:14 PM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",140600254-67 -111710080,76,11056299,Medical Incident,06/20/2011,06/20/2011,06/20/2011 08:12:43 AM,06/20/2011 08:14:34 AM,06/20/2011 08:15:28 AM,06/20/2011 08:15:42 AM,06/20/2011 08:34:48 AM,06/20/2011 08:44:52 AM,06/20/2011 09:10:34 AM,Code 2 Transport,06/20/2011 09:30:42 AM,300 Block of 4TH ST,SF,94107,B03,8,2216,2,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7810432179334, -122.399833846531)",111710080-76 -131390237,E16,13047041,Medical Incident,05/19/2013,05/19/2013,05/19/2013 01:05:48 PM,05/19/2013 01:06:15 PM,05/19/2013 01:07:13 PM,05/19/2013 01:08:32 PM,05/19/2013 01:15:29 PM,05/19/2013 01:20:25 PM,05/19/2013 01:27:40 PM,Other,05/19/2013 01:53:44 PM,2100 Block of GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7990020385579, -122.435034398467)",131390237-E16 -122560045,57,12084533,Medical Incident,09/12/2012,09/11/2012,09/12/2012 04:32:01 AM,09/12/2012 04:34:40 AM,09/12/2012 04:36:44 AM,09/12/2012 04:37:09 AM,09/12/2012 04:43:32 AM,09/12/2012 05:10:19 AM,09/12/2012 05:24:54 AM,Code 2 Transport,09/12/2012 05:47:40 AM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",122560045-57 -140990112,AM06,14033369,Medical Incident,04/09/2014,04/09/2014,04/09/2014 09:17:32 AM,04/09/2014 09:17:56 AM,04/09/2014 09:18:19 AM,04/09/2014 09:18:53 AM,04/09/2014 09:36:25 AM,04/09/2014 09:43:31 AM,04/09/2014 10:04:22 AM,Code 2 Transport,04/09/2014 10:42:24 AM,700 Block of BRANNAN ST,SAN FRANCISCO,94103,B03,8,2276,,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7742149186174, -122.401830898172)",140990112-AM06 -122260076,T06,12074837,Structure Fire,08/13/2012,08/12/2012,08/13/2012 07:50:46 AM,08/13/2012 07:50:46 AM,08/13/2012 07:50:51 AM,08/13/2012 07:52:33 AM,08/13/2012 07:55:30 AM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 07:55:50 AM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",122260076-T06 -130670051,E41,13022224,Medical Incident,03/08/2013,03/07/2013,03/08/2013 05:04:04 AM,03/08/2013 05:04:04 AM,03/08/2013 05:05:08 AM,03/08/2013 05:07:22 AM,03/08/2013 05:08:41 AM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,No Merit,03/08/2013 05:13:25 AM,1400 Block of JACKSON ST,SF,94109,B01,41,1633,1,1,2,false,Non Life-threatening,1,ENGINE,1,1,3,Russian Hill,"(37.7945147745264, -122.418943712595)",130670051-E41 -160160105,55,16006234,Medical Incident,01/16/2016,01/15/2016,01/16/2016 12:46:57 AM,01/16/2016 12:48:25 AM,01/16/2016 12:48:43 AM,01/16/2016 12:48:55 AM,01/16/2016 12:53:29 AM,01/16/2016 01:07:14 AM,01/16/2016 01:15:37 AM,Code 2 Transport,01/16/2016 01:36:03 AM,1000 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",160160105-55 -112910271,AM04,11096630,Medical Incident,10/18/2011,10/18/2011,10/18/2011 03:34:51 PM,10/18/2011 03:36:40 PM,10/18/2011 03:39:00 PM,10/18/2011 03:39:40 PM,04/25/2016 02:02:05 PM,10/18/2011 04:02:22 PM,10/18/2011 04:23:54 PM,Code 2 Transport,10/18/2011 04:56:12 PM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,2,2,false,,1,PRIVATE,3,3,6,South of Market,"(37.7820242662358, -122.401159719509)",112910271-AM04 -123110267,60,12103547,Traffic Collision,11/06/2012,11/06/2012,11/06/2012 03:54:03 PM,11/06/2012 03:54:53 PM,11/06/2012 03:55:05 PM,11/06/2012 03:55:44 PM,11/06/2012 03:58:41 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Patient Declined Transport,11/06/2012 04:41:18 PM,SCOTT ST/CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7882783987172, -122.438773337284)",123110267-60 -120950294,64,12031573,Medical Incident,04/04/2012,04/04/2012,04/04/2012 08:29:35 PM,04/04/2012 08:30:49 PM,04/04/2012 08:31:28 PM,04/04/2012 08:31:36 PM,04/04/2012 08:33:15 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,No Merit,04/04/2012 08:43:14 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",120950294-64 -122990267,87,12099171,Medical Incident,10/25/2012,10/25/2012,10/25/2012 04:43:11 PM,10/25/2012 04:45:37 PM,10/25/2012 04:46:05 PM,04/25/2016 01:56:07 PM,10/25/2012 04:58:11 PM,10/25/2012 05:24:02 PM,10/25/2012 05:43:05 PM,Code 2 Transport,10/25/2012 04:46:09 PM,400 Block of BERRY ST,SF,94107,B03,8,2262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7720335037466, -122.398200713972)",122990267-87 -160332602,53,16013083,Medical Incident,02/02/2016,02/02/2016,02/02/2016 05:21:20 PM,02/02/2016 05:22:13 PM,02/02/2016 05:22:59 PM,02/02/2016 05:23:06 PM,02/02/2016 05:34:36 PM,02/02/2016 05:41:57 PM,02/02/2016 05:52:49 PM,Code 2 Transport,02/02/2016 06:07:03 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",160332602-53 -112310293,E32,11076373,Medical Incident,08/19/2011,08/19/2011,08/19/2011 07:11:34 PM,08/19/2011 07:13:29 PM,08/19/2011 07:13:59 PM,08/19/2011 07:14:48 PM,08/19/2011 07:16:37 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 07:26:48 PM,100 Block of RICHLAND AVE,SF,94110,B06,32,5632,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.73595384996, -122.423811513859)",112310293-E32 -102260004,E23,10070998,Medical Incident,08/14/2010,08/13/2010,08/14/2010 12:14:43 AM,08/14/2010 12:15:09 AM,08/14/2010 12:15:52 AM,08/14/2010 12:28:25 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 12:31:19 AM,GREAT HY/ULLOA ST,SF,94116,B08,23,7731,2,3,3,false,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7398123853281, -122.506675736076)",102260004-E23 -123120080,E01,12103755,Medical Incident,11/07/2012,11/07/2012,11/07/2012 08:16:19 AM,11/07/2012 08:17:59 AM,11/07/2012 08:18:29 AM,11/07/2012 08:19:40 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 08:21:23 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",123120080-E01 -130560077,89,13018792,Medical Incident,02/25/2013,02/25/2013,02/25/2013 08:26:58 AM,02/25/2013 08:28:02 AM,02/25/2013 08:28:19 AM,02/25/2013 08:28:37 AM,02/25/2013 08:31:44 AM,02/25/2013 08:55:29 AM,02/25/2013 09:26:49 AM,Code 2 Transport,02/25/2013 09:49:44 AM,200 Block of SOUTH HILL BLVD,SF,94112,B09,43,6235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7091771253725, -122.430108132211)",130560077-89 -133600205,T10,13122371,Citizen Assist / Service Call,12/26/2013,12/26/2013,12/26/2013 02:38:27 PM,12/26/2013 02:40:37 PM,12/26/2013 02:40:50 PM,12/26/2013 02:41:14 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 02:43:49 PM,2500 Block of SUTTER ST,SF,94115,B05,10,4262,3,3,3,false,Alarm,1,TRUCK,2,5,5,Japantown,"(37.7848770596387, -122.442348914658)",133600205-T10 -112870068,E08,11095052,Medical Incident,10/14/2011,10/13/2011,10/14/2011 05:19:26 AM,10/14/2011 05:21:25 AM,10/14/2011 05:22:47 AM,10/14/2011 05:25:39 AM,10/14/2011 05:26:56 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 05:35:04 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",112870068-E08 -132150047,77,13072485,Medical Incident,08/03/2013,08/02/2013,08/03/2013 02:54:33 AM,08/03/2013 02:56:00 AM,08/03/2013 02:57:02 AM,08/03/2013 02:57:22 AM,08/03/2013 03:15:23 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,No Merit,08/03/2013 03:21:37 AM,27TH ST/GUERRERO ST,SF,94110,B06,11,5551,2,2,2,false,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7471719168985, -122.422383537284)",132150047-77 -130030262,94,13001075,Medical Incident,01/03/2013,01/03/2013,01/03/2013 03:47:02 PM,01/03/2013 03:48:54 PM,01/03/2013 03:50:02 PM,01/03/2013 03:51:02 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 03:53:39 PM,1100 Block of MASON ST,SF,94108,B01,2,1415,1,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7942845562863, -122.411386186498)",130030262-94 -103490201,92,10111939,Medical Incident,12/15/2010,12/15/2010,12/15/2010 02:07:14 PM,12/15/2010 02:07:44 PM,12/15/2010 02:09:10 PM,12/15/2010 02:09:41 PM,12/15/2010 02:11:11 PM,12/15/2010 02:28:53 PM,04/25/2016 02:07:06 PM,Code 2 Transport,12/15/2010 03:09:33 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",103490201-92 -160332077,KM09,16013025,Medical Incident,02/02/2016,02/02/2016,02/02/2016 02:46:52 PM,02/02/2016 02:49:55 PM,02/02/2016 02:50:29 PM,02/02/2016 02:51:25 PM,02/02/2016 03:14:09 PM,02/02/2016 03:21:19 PM,02/02/2016 03:47:17 PM,Code 2 Transport,02/02/2016 04:33:21 PM,2900 Block of GREAT HWY,San Francisco,94132,B08,19,8712,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7297644793355, -122.506576531064)",160332077-KM09 -122370133,T12,12078467,Alarms,08/24/2012,08/24/2012,08/24/2012 12:10:21 PM,08/24/2012 12:11:18 PM,08/24/2012 12:11:28 PM,08/24/2012 12:13:47 PM,08/24/2012 12:16:03 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 12:34:45 PM,500 Block of PARNASSUS AVE,SF,94131,B05,12,7323,3,3,3,false,Alarm,1,TRUCK,2,5,7,Inner Sunset,"(37.7633165969878, -122.458205988587)",122370133-T12 -132130298,T13,13072073,Structure Fire,08/01/2013,08/01/2013,08/01/2013 08:45:08 PM,08/01/2013 08:45:09 PM,08/01/2013 08:45:24 PM,08/01/2013 08:46:38 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/01/2013 08:48:35 PM,FRONT ST/SACRAMENTO ST,SF,94111,B01,13,1141,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",132130298-T13 -102260219,E01,10071182,Medical Incident,08/14/2010,08/14/2010,08/14/2010 03:32:30 PM,08/14/2010 03:34:24 PM,08/14/2010 03:34:59 PM,08/14/2010 03:36:22 PM,08/14/2010 03:39:26 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 03:44:22 PM,MISSION ST/LASKIE ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7767076869648, -122.41410689559)",102260219-E01 -82380178,T03,8072945,Other,08/25/2008,08/25/2008,08/25/2008 12:17:47 PM,08/25/2008 12:22:40 PM,08/25/2008 12:24:37 PM,08/25/2008 12:24:40 PM,04/25/2016 03:32:41 PM,04/25/2016 03:32:41 PM,04/25/2016 03:32:41 PM,Other,08/25/2008 12:26:01 PM,LARKIN ST/HAYES ST,SF,94102,B02,36,1646,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7777227510073, -122.416401071795)",082380178-T03 -102470219,E37,10078092,Medical Incident,09/04/2010,09/04/2010,09/04/2010 03:27:11 PM,09/04/2010 03:27:34 PM,09/04/2010 03:28:27 PM,09/04/2010 03:29:39 PM,09/04/2010 03:31:35 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/04/2010 03:44:52 PM,700 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7572418129801, -122.395894468027)",102470219-E37 -111590126,RC1,11052538,Medical Incident,06/08/2011,06/08/2011,06/08/2011 10:45:19 AM,06/08/2011 10:47:21 AM,06/08/2011 10:47:33 AM,04/25/2016 02:04:15 PM,06/08/2011 10:54:12 AM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/08/2011 11:06:57 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,,1,RESCUE CAPTAIN,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",111590126-RC1 -103170267,B08,10101679,Alarms,11/13/2010,11/13/2010,11/13/2010 05:46:13 PM,11/13/2010 05:48:17 PM,11/13/2010 05:48:20 PM,11/13/2010 05:49:34 PM,11/13/2010 05:52:49 PM,04/25/2016 02:07:37 PM,04/25/2016 02:07:37 PM,Other,11/13/2010 05:58:50 PM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,3,3,3,false,,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",103170267-B08 -132580106,E43,13087211,Medical Incident,09/15/2013,09/15/2013,09/15/2013 09:15:12 AM,09/15/2013 09:15:58 AM,09/15/2013 09:16:13 AM,09/15/2013 09:17:12 AM,09/15/2013 09:20:32 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/15/2013 09:28:16 AM,0 Block of BROOKDALE AVE,SF,94134,B09,43,6243,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121958423312, -122.420838850109)",132580106-E43 -122490050,KM07,12082246,Medical Incident,09/05/2012,09/04/2012,09/05/2012 05:24:06 AM,09/05/2012 05:25:26 AM,09/05/2012 05:26:31 AM,09/05/2012 05:27:02 AM,09/05/2012 05:32:17 AM,09/05/2012 05:45:37 AM,09/05/2012 06:05:45 AM,Code 2 Transport,09/05/2012 06:33:14 AM,0 Block of KEYSTONE WAY,SF,94112,B09,15,8456,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7267775523581, -122.462501118425)",122490050-KM07 -130720399,55,13024182,Medical Incident,03/13/2013,03/13/2013,03/13/2013 10:41:57 PM,03/13/2013 10:43:29 PM,03/13/2013 10:44:19 PM,03/13/2013 10:44:35 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/13/2013 10:48:14 PM,0 Block of YERBA BUENA LN,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7857639967999, -122.404208166751)",130720399-55 -160380072,54,16015019,Medical Incident,02/07/2016,02/06/2016,02/07/2016 12:17:48 AM,02/07/2016 12:21:37 AM,02/07/2016 12:23:01 AM,02/07/2016 12:23:11 AM,02/07/2016 12:33:58 AM,02/07/2016 01:02:09 AM,02/07/2016 01:16:17 AM,Code 2 Transport,02/07/2016 01:51:22 AM,0 Block of STRATFORD DR,San Francisco,94132,B09,19,8727,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7238052072403, -122.473327132329)",160380072-54 -120120389,67,12004286,Medical Incident,01/12/2012,01/12/2012,01/12/2012 11:56:32 PM,01/12/2012 11:57:03 PM,01/12/2012 11:58:09 PM,01/13/2012 12:00:47 AM,01/13/2012 12:11:28 AM,01/13/2012 12:33:17 AM,01/13/2012 12:39:16 AM,Code 2 Transport,01/13/2012 01:06:37 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",120120389-67 -132060389,55,13069913,Medical Incident,07/25/2013,07/25/2013,07/25/2013 11:19:05 PM,07/25/2013 11:19:05 PM,07/25/2013 11:21:32 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,No Merit,07/25/2013 11:33:57 PM,600 Block of LAGUNA ST,SF,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7767060831773, -122.426242891179)",132060389-55 -123350153,E25,12111298,Medical Incident,11/30/2012,11/30/2012,11/30/2012 09:15:17 AM,11/30/2012 09:15:40 AM,11/30/2012 09:15:49 AM,11/30/2012 09:17:28 AM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/30/2012 09:17:57 AM,800 Block of INNES AVE,SF,94124,B10,25,6632,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7314216570538, -122.374864504136)",123350153-E25 -132630088,E25,13089029,Fuel Spill,09/20/2013,09/20/2013,09/20/2013 08:02:20 AM,09/20/2013 08:07:01 AM,09/20/2013 08:07:25 AM,09/20/2013 08:09:07 AM,09/20/2013 08:12:19 AM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Fire,09/20/2013 08:15:00 AM,ILLINOIS ST/CESAR CHAVEZ ST,SF,94124,B10,25,2641,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7503250432347, -122.386568300663)",132630088-E25 -140460362,78,14015820,Medical Incident,02/15/2014,02/15/2014,02/15/2014 09:57:33 PM,02/15/2014 09:58:20 PM,02/15/2014 09:59:18 PM,02/15/2014 09:59:45 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 10:11:01 PM,MISSION ST/4TH ST,SF,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",140460362-78 -133020124,E19,13102571,Traffic Collision,10/29/2013,10/29/2013,10/29/2013 09:25:29 AM,10/29/2013 09:26:05 AM,10/29/2013 09:26:22 AM,10/29/2013 09:27:14 AM,10/29/2013 09:31:32 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/29/2013 09:55:20 AM,LAKE MERCED BL/BROTHERHOOD WY,SF,94132,B08,19,8775,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7146945137547, -122.485228934867)",133020124-E19 -160780694,72,16030926,Medical Incident,03/18/2016,03/17/2016,03/18/2016 07:30:32 AM,03/18/2016 07:32:27 AM,03/18/2016 07:33:08 AM,03/18/2016 07:33:18 AM,03/18/2016 07:48:12 AM,03/18/2016 08:10:09 AM,03/18/2016 08:24:23 AM,Code 2 Transport,03/18/2016 09:22:58 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160780694-72 -160240286,60,16009405,Medical Incident,01/24/2016,01/23/2016,01/24/2016 01:47:19 AM,01/24/2016 01:47:19 AM,01/24/2016 01:47:44 AM,01/24/2016 01:48:20 AM,01/24/2016 01:52:50 AM,01/24/2016 02:01:45 AM,01/24/2016 02:08:48 AM,Code 3 Transport,01/24/2016 03:01:36 AM,POWELL ST/OFARRELL ST,San Francisco,94102,B03,1,1363,A,E,3,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",160240286-60 -131530172,E03,13051823,Structure Fire,06/02/2013,06/02/2013,06/02/2013 01:06:00 PM,06/02/2013 01:07:14 PM,06/02/2013 01:07:26 PM,06/02/2013 01:09:06 PM,06/02/2013 01:10:19 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 01:40:42 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Alarm,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",131530172-E03 -122850295,E02,12094363,Structure Fire,10/11/2012,10/11/2012,10/11/2012 06:11:12 PM,10/11/2012 06:11:56 PM,10/11/2012 06:12:25 PM,10/11/2012 06:13:25 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 06:17:06 PM,2000 Block of POWELL ST,SF,94133,B01,28,1346,3,3,3,true,Alarm,1,ENGINE,5,1,3,North Beach,"(37.8034897757347, -122.411553189926)",122850295-E02 -110250222,KM12,11008243,Traffic Collision,01/25/2011,01/25/2011,01/25/2011 12:28:01 PM,01/25/2011 12:29:38 PM,01/25/2011 12:34:04 PM,01/25/2011 12:34:32 PM,01/25/2011 12:55:45 PM,01/25/2011 01:10:38 PM,01/25/2011 01:29:46 PM,Code 2 Transport,01/25/2011 01:53:17 PM,DUBOCE AV/VALENCIA ST,SF,94103,B02,36,5126,2,2,2,false,,1,PRIVATE,2,2,9,Mission,"(37.7698676980277, -122.422364819149)",110250222-KM12 -140440270,RS2,14015025,Medical Incident,02/13/2014,02/13/2014,02/13/2014 02:51:37 PM,02/13/2014 02:52:20 PM,02/13/2014 02:52:40 PM,02/13/2014 02:53:39 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 02:57:11 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,9,Mission,"(37.7642444942899, -122.419521866555)",140440270-RS2 -102750136,RC1,10087320,Medical Incident,10/02/2010,10/02/2010,10/02/2010 10:28:49 AM,10/02/2010 10:29:16 AM,10/02/2010 10:29:48 AM,10/02/2010 10:35:03 AM,10/02/2010 10:37:03 AM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,No Merit,10/02/2010 10:42:32 AM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,RESCUE CAPTAIN,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",102750136-RC1 -132380148,86,13080261,Medical Incident,08/26/2013,08/26/2013,08/26/2013 10:41:10 AM,08/26/2013 10:43:34 AM,08/26/2013 10:44:16 AM,08/26/2013 10:44:43 AM,08/26/2013 10:52:49 AM,08/26/2013 11:09:32 AM,08/26/2013 11:31:22 AM,Code 2 Transport,08/26/2013 11:56:28 AM,600 Block of KING ST,SF,94107,B03,29,2275,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,10,Mission Bay,"(37.7705405549826, -122.401653062396)",132380148-86 -121480036,54,12048988,Medical Incident,05/27/2012,05/26/2012,05/27/2012 03:04:02 AM,05/27/2012 03:05:49 AM,05/27/2012 03:06:18 AM,05/27/2012 03:06:32 AM,05/27/2012 03:16:28 AM,05/27/2012 03:23:54 AM,05/27/2012 03:34:13 AM,Code 2 Transport,05/27/2012 03:50:07 AM,2800 Block of MISSION ST,SF,94110,B06,11,5529,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",121480036-54 -110910200,E31,11030158,Structure Fire,04/01/2011,04/01/2011,04/01/2011 01:39:06 PM,04/01/2011 01:39:37 PM,04/01/2011 01:40:03 PM,04/01/2011 01:41:36 PM,04/01/2011 01:46:30 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 01:54:26 PM,0 Block of COLLINS ST,SF,94118,B05,10,4373,3,3,3,true,,1,ENGINE,7,5,2,Presidio Heights,"(37.7852915032502, -122.450168457545)",110910200-E31 -123370299,E14,12112258,Medical Incident,12/02/2012,12/02/2012,12/02/2012 09:44:52 AM,12/02/2012 09:45:43 AM,12/02/2012 09:47:40 AM,12/02/2012 09:48:07 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 10:00:02 AM,6200 Block of GEARY BLVD,SF,94121,B07,14,7213,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.780133471504, -122.486348931975)",123370299-E14 -130860350,B09,13028833,Other,03/27/2013,03/27/2013,03/27/2013 09:41:06 PM,03/27/2013 09:42:58 PM,03/27/2013 09:45:41 PM,03/27/2013 09:47:39 PM,03/27/2013 09:52:30 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/27/2013 10:06:08 PM,1200 Block of MONTEREY BLVD,SF,94127,B09,15,8547,3,3,3,false,Alarm,1,CHIEF,3,9,7,West of Twin Peaks,"(37.7304697848581, -122.463092715715)",130860350-B09 -130220283,86,13007670,Medical Incident,01/22/2013,01/22/2013,01/22/2013 04:48:02 PM,01/22/2013 04:49:12 PM,01/22/2013 04:49:32 PM,01/22/2013 04:49:43 PM,01/22/2013 04:56:15 PM,01/22/2013 05:19:44 PM,01/22/2013 05:53:05 PM,Code 2 Transport,01/22/2013 06:21:46 PM,1100 Block of SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",130220283-86 -160243254,60,16009688,Medical Incident,01/24/2016,01/24/2016,01/24/2016 09:05:35 PM,01/24/2016 09:06:57 PM,01/24/2016 09:07:19 PM,01/24/2016 09:07:26 PM,01/24/2016 09:13:44 PM,01/24/2016 09:29:36 PM,01/24/2016 09:34:48 PM,Code 2 Transport,01/24/2016 10:10:08 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160243254-60 -103380130,82,10108090,Medical Incident,12/04/2010,12/04/2010,12/04/2010 09:12:09 AM,12/04/2010 09:15:27 AM,12/04/2010 09:17:05 AM,12/04/2010 09:17:34 AM,12/04/2010 09:29:17 AM,12/04/2010 10:01:55 AM,12/04/2010 10:53:20 AM,Code 2 Transport,12/04/2010 11:02:29 AM,300 Block of GARFIELD ST,SF,94132,B09,33,8433,1,1,2,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7197369271653, -122.465806378562)",103380130-82 -133150196,82,13107075,Medical Incident,11/11/2013,11/11/2013,11/11/2013 11:43:44 AM,11/11/2013 11:46:20 AM,11/11/2013 11:46:45 AM,11/11/2013 11:46:55 AM,11/11/2013 11:56:34 AM,11/11/2013 12:16:57 PM,11/11/2013 12:20:55 PM,Code 2 Transport,11/11/2013 12:52:34 PM,2200 Block of VALLEJO ST,SF,94123,B04,16,3551,2,2,2,false,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.7953847417128, -122.434302143729)",133150196-82 -160760421,74,16030001,Medical Incident,03/16/2016,03/15/2016,03/16/2016 05:26:48 AM,03/16/2016 05:28:12 AM,03/16/2016 05:30:26 AM,03/16/2016 05:30:46 AM,03/16/2016 05:37:13 AM,03/16/2016 05:51:39 AM,03/16/2016 06:08:33 AM,Code 2 Transport,03/16/2016 06:37:48 AM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7266977501641, -122.38889898772)",160760421-74 -122970269,T13,12098559,Alarms,10/23/2012,10/23/2012,10/23/2012 06:19:47 PM,10/23/2012 06:21:22 PM,10/23/2012 06:21:29 PM,10/23/2012 06:22:14 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/23/2012 06:25:32 PM,200 Block of SPEAR ST,SF,94105,B03,35,2114,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7907290972823, -122.391698710083)",122970269-T13 -111720232,E08,11056772,Alarms,06/21/2011,06/21/2011,06/21/2011 02:28:05 PM,06/21/2011 02:30:17 PM,06/21/2011 02:30:25 PM,06/21/2011 02:31:55 PM,06/21/2011 02:34:25 PM,04/25/2016 02:04:03 PM,04/25/2016 02:04:03 PM,Other,06/21/2011 02:49:40 PM,1400 Block of 3RD ST,SF,94158,B03,8,2231,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7702071711418, -122.389579097943)",111720232-E08 -113110246,95,11103388,Medical Incident,11/07/2011,11/07/2011,11/07/2011 03:51:59 PM,11/07/2011 03:52:43 PM,11/07/2011 03:53:01 PM,11/07/2011 03:53:14 PM,11/07/2011 04:00:15 PM,11/07/2011 04:15:46 PM,11/07/2011 04:38:39 PM,Code 2 Transport,11/07/2011 04:59:34 PM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",113110246-95 -112940154,B04,11097493,Alarms,10/21/2011,10/21/2011,10/21/2011 11:26:19 AM,10/21/2011 11:26:51 AM,10/21/2011 11:27:05 AM,10/21/2011 11:28:01 AM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 11:32:19 AM,0 Block of GRAHAM ST,PR,94129,B99,51,4626,3,3,3,false,,1,CHIEF,3,7,2,Presidio,"(37.8007066173192, -122.456882143505)",112940154-B04 -122300209,T17,12076240,Medical Incident,08/17/2012,08/17/2012,08/17/2012 12:46:19 PM,08/17/2012 12:47:41 PM,08/17/2012 12:47:53 PM,08/17/2012 01:07:34 PM,08/17/2012 01:12:54 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 01:34:33 PM,200 Block of CASHMERE ST,SF,94124,B10,17,6517,3,E,3,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7362537955292, -122.387097160369)",122300209-T17 -121250154,AM12,12041483,Medical Incident,05/04/2012,05/04/2012,05/04/2012 12:15:33 PM,05/04/2012 12:18:44 PM,05/04/2012 12:19:10 PM,05/04/2012 12:19:44 PM,05/04/2012 12:21:45 PM,05/04/2012 12:48:20 PM,05/04/2012 01:04:58 PM,Code 2 Transport,05/04/2012 01:40:48 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",121250154-AM12 -160451952,KM08,16018153,Medical Incident,02/14/2016,02/14/2016,02/14/2016 02:36:21 PM,02/14/2016 02:37:57 PM,02/14/2016 02:38:15 PM,02/14/2016 02:39:01 PM,02/14/2016 02:42:26 PM,02/14/2016 03:01:29 PM,02/14/2016 03:14:50 PM,Code 2 Transport,02/14/2016 03:44:39 PM,8TH ST/HOWARD ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7762213544451, -122.411606113878)",160451952-KM08 -160383750,75,16015420,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:18:50 PM,02/07/2016 11:22:35 PM,02/07/2016 11:23:19 PM,02/07/2016 11:23:31 PM,02/07/2016 11:27:56 PM,02/07/2016 11:50:53 PM,02/07/2016 11:59:49 PM,Code 2 Transport,02/08/2016 12:22:59 AM,8TH ST/MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774574199485, -122.413157691577)",160383750-75 -130410181,E22,13014018,Medical Incident,02/10/2013,02/10/2013,02/10/2013 01:49:49 PM,02/10/2013 01:52:44 PM,02/10/2013 01:53:04 PM,02/10/2013 01:54:17 PM,02/10/2013 01:55:48 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 02:05:45 PM,19TH AV/IRVING ST,SF,94122,B08,22,7424,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7635594998984, -122.477174108961)",130410181-E22 -103180358,E22,10102071,Outside Fire,11/14/2010,11/14/2010,11/14/2010 08:48:14 PM,11/14/2010 08:50:09 PM,11/14/2010 08:50:42 PM,11/14/2010 08:51:10 PM,11/14/2010 08:53:04 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/14/2010 08:57:37 PM,IRVING ST/14TH AV,SF,94122,B08,22,7366,3,3,3,true,,1,ENGINE,1,8,5,Inner Sunset,"(37.7638016485067, -122.471667792686)",103180358-E22 -160841687,67,16033359,Medical Incident,03/24/2016,03/24/2016,03/24/2016 12:00:42 PM,03/24/2016 12:01:42 PM,03/24/2016 12:02:03 PM,03/24/2016 12:02:53 PM,03/24/2016 12:08:10 PM,03/24/2016 12:24:55 PM,03/24/2016 12:46:55 PM,Code 2 Transport,03/24/2016 01:13:53 PM,0 Block of MARINA BLVD,San Francisco,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8050541399653, -122.432935196734)",160841687-67 -160740196,KM07,16029176,Medical Incident,03/14/2016,03/13/2016,03/14/2016 02:13:40 AM,03/14/2016 02:14:15 AM,03/14/2016 02:14:41 AM,03/14/2016 02:15:15 AM,03/14/2016 02:17:03 AM,03/14/2016 02:37:17 AM,03/14/2016 03:15:12 AM,Code 2 Transport,03/14/2016 03:36:20 AM,600 Block of GEARY ST,San Francisco,94109,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",160740196-KM07 -160030133,61,16000989,Medical Incident,01/03/2016,01/02/2016,01/03/2016 12:47:27 AM,01/03/2016 12:49:41 AM,01/03/2016 12:49:52 AM,01/03/2016 12:50:06 AM,01/03/2016 12:59:48 AM,01/03/2016 01:16:37 AM,01/03/2016 01:37:23 AM,Code 2 Transport,01/03/2016 02:27:59 AM,3100 Block of BUCHANAN ST,San Francisco,94123,B04,16,3444,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7991461246326, -122.43246545761)",160030133-61 -160110186,70,16004236,Medical Incident,01/11/2016,01/10/2016,01/11/2016 01:56:39 AM,01/11/2016 01:58:03 AM,01/11/2016 01:58:46 AM,01/11/2016 01:59:46 AM,01/11/2016 02:08:59 AM,01/11/2016 02:24:37 AM,01/11/2016 02:37:22 AM,Code 2 Transport,01/11/2016 03:02:15 AM,0 Block of GARLINGTON CT,San Francisco,94124,B10,17,6622,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7325070966122, -122.384396871119)",160110186-70 -132550072,E07,13086098,Medical Incident,09/12/2013,09/12/2013,09/12/2013 08:29:08 AM,09/12/2013 08:30:36 AM,09/12/2013 08:30:47 AM,09/12/2013 08:32:21 AM,09/12/2013 08:34:15 AM,04/25/2016 01:50:50 PM,04/25/2016 01:50:50 PM,Other,09/12/2013 08:39:49 AM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",132550072-E07 -110840316,54,11027779,Medical Incident,03/25/2011,03/25/2011,03/25/2011 06:13:12 PM,03/25/2011 06:15:24 PM,03/25/2011 06:15:50 PM,03/25/2011 06:16:36 PM,03/25/2011 06:32:02 PM,03/25/2011 06:40:02 PM,03/25/2011 06:53:28 PM,Code 2 Transport,03/25/2011 07:12:22 PM,0 Block of CERES ST,SF,94124,B10,17,6513,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7302170309802, -122.394251598498)",110840316-54 -120450370,AM10,12015133,Medical Incident,02/14/2012,02/14/2012,02/14/2012 10:28:20 PM,02/14/2012 10:30:06 PM,02/14/2012 10:30:31 PM,02/14/2012 10:31:55 PM,02/14/2012 10:34:43 PM,02/14/2012 10:49:56 PM,02/14/2012 10:54:52 PM,Code 2 Transport,02/14/2012 11:17:09 PM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",120450370-AM10 -160291879,82,16011457,Medical Incident,01/29/2016,01/29/2016,01/29/2016 01:45:19 PM,01/29/2016 01:46:30 PM,01/29/2016 01:46:49 PM,01/29/2016 01:47:19 PM,01/29/2016 01:51:11 PM,01/29/2016 02:09:25 PM,01/29/2016 02:18:23 PM,Code 2 Transport,01/29/2016 03:11:31 PM,1500 Block of 24TH AVE,San Francisco,94122,B08,22,7447,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7586664205644, -122.482086757814)",160291879-82 -130460214,T05,13015625,Traffic Collision,02/15/2013,02/15/2013,02/15/2013 12:54:54 PM,02/15/2013 12:55:41 PM,02/15/2013 12:55:58 PM,02/15/2013 12:56:36 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,04/25/2016 01:54:17 PM,Other,02/15/2013 12:57:43 PM,LARKIN ST/EDDY ST,SF,94109,B02,3,1643,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",130460214-T05 -160553845,AM24,16022158,Medical Incident,02/24/2016,02/24/2016,02/24/2016 09:11:41 PM,02/24/2016 09:13:52 PM,02/24/2016 09:14:09 PM,02/24/2016 09:14:38 PM,02/24/2016 09:24:20 PM,02/24/2016 09:50:48 PM,02/24/2016 10:11:08 PM,Code 2 Transport,02/24/2016 10:46:01 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",160553845-AM24 -160331322,84,16012947,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:20:58 AM,02/02/2016 11:22:06 AM,02/02/2016 11:22:55 AM,02/02/2016 11:23:05 AM,02/02/2016 11:28:29 AM,02/02/2016 11:48:00 AM,02/02/2016 12:10:28 PM,Code 2 Transport,02/02/2016 12:51:04 PM,200 Block of YERBA BUENA AVE,San Francisco,94127,B09,39,8526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7351605295458, -122.460357051758)",160331322-84 -130800324,E38,13026862,Structure Fire,03/21/2013,03/21/2013,03/21/2013 06:10:46 PM,03/21/2013 06:12:59 PM,03/21/2013 06:13:38 PM,03/21/2013 06:15:03 PM,03/21/2013 06:16:01 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 06:18:48 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,false,Alarm,1,ENGINE,4,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",130800324-E38 -112910262,RC3,11096623,Medical Incident,10/18/2011,10/18/2011,10/18/2011 03:19:08 PM,10/18/2011 03:21:08 PM,10/18/2011 03:21:24 PM,10/18/2011 03:22:45 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/18/2011 03:28:18 PM,BERRY ST/DE HARO ST,SF,94103,B02,29,2355,A,A,2,true,,1,RESCUE CAPTAIN,4,2,10,Mission Bay,"(37.7690294704835, -122.401992728373)",112910262-RC3 -103420141,KM05,10109435,Medical Incident,12/08/2010,12/08/2010,12/08/2010 09:47:04 AM,12/08/2010 09:49:07 AM,12/08/2010 09:49:58 AM,12/08/2010 09:50:31 AM,12/08/2010 10:01:59 AM,12/08/2010 10:12:39 AM,12/08/2010 10:27:46 AM,Code 2 Transport,12/08/2010 10:46:51 AM,400 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7781649349602, -122.40085398952)",103420141-KM05 -103480330,RC3,10111708,Medical Incident,12/14/2010,12/14/2010,12/14/2010 06:57:05 PM,12/14/2010 06:58:02 PM,12/14/2010 06:58:29 PM,12/14/2010 07:00:12 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,04/25/2016 02:07:07 PM,Other,12/14/2010 07:01:14 PM,100 Block of LOMBARD ST,SF,94111,B01,28,1224,3,E,3,true,,1,RESCUE CAPTAIN,4,1,3,Financial District/South Beach,"(37.8039857030151, -122.40417787931)",103480330-RC3 -121650149,E03,12054695,Medical Incident,06/13/2012,06/13/2012,06/13/2012 12:03:11 PM,06/13/2012 12:05:06 PM,06/13/2012 12:06:46 PM,06/13/2012 12:08:06 PM,06/13/2012 12:10:01 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/13/2012 12:18:22 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",121650149-E03 -112780177,93,11092021,Medical Incident,10/05/2011,10/05/2011,10/05/2011 12:25:39 PM,10/05/2011 12:27:25 PM,10/05/2011 12:27:50 PM,10/05/2011 12:29:59 PM,10/05/2011 12:34:35 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 12:37:09 PM,0 Block of 12TH ST,SF,94103,B02,36,5116,2,2,2,true,,1,MEDIC,2,2,6,Mission,"(37.7734277265612, -122.419200287559)",112780177-93 -160401076,AM06,16015951,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:50:51 AM,02/09/2016 09:52:06 AM,02/09/2016 09:54:57 AM,02/09/2016 09:56:06 AM,02/09/2016 10:06:09 AM,02/09/2016 10:19:44 AM,02/09/2016 10:29:34 AM,Code 2 Transport,02/09/2016 10:51:32 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160401076-AM06 -112040008,89,11067249,Medical Incident,07/23/2011,07/22/2011,07/23/2011 12:11:30 AM,07/23/2011 12:12:48 AM,07/23/2011 12:13:13 AM,07/23/2011 12:13:28 AM,07/23/2011 12:17:47 AM,04/25/2016 02:03:32 PM,04/25/2016 02:03:32 PM,Patient Declined Transport,07/23/2011 12:40:50 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",112040008-89 -160621351,89,16024658,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:58:36 AM,03/02/2016 11:00:25 AM,03/02/2016 11:01:01 AM,03/02/2016 11:01:52 AM,03/02/2016 11:24:03 AM,03/02/2016 11:53:19 AM,03/02/2016 12:07:58 PM,Code 2 Transport,03/02/2016 01:13:32 PM,100 Block of RALSTON ST,San Francisco,94132,B09,33,8411,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7151777593562, -122.468838490776)",160621351-89 -112230081,E03,11073571,Medical Incident,08/11/2011,08/11/2011,08/11/2011 08:30:36 AM,08/11/2011 08:32:44 AM,08/11/2011 08:32:59 AM,08/11/2011 08:35:28 AM,08/11/2011 08:36:56 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,No Merit,08/11/2011 08:45:49 AM,1100 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",112230081-E03 -112400340,E42,11079340,Structure Fire,08/28/2011,08/28/2011,08/28/2011 09:20:00 PM,08/28/2011 09:21:36 PM,08/28/2011 09:22:03 PM,08/28/2011 09:23:41 PM,08/28/2011 09:25:52 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 09:45:32 PM,700 Block of RUTLAND ST,SF,94134,B09,44,6264,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.712904274834, -122.407267551258)",112400340-E42 -131750170,B09,13059363,Alarms,06/24/2013,06/24/2013,06/24/2013 12:37:51 PM,06/24/2013 12:37:51 PM,06/24/2013 12:38:04 PM,06/24/2013 12:39:12 PM,06/24/2013 12:44:25 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 12:51:19 PM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,Alarm,1,CHIEF,3,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",131750170-B09 -123020108,E42,12100092,Medical Incident,10/28/2012,10/27/2012,10/28/2012 06:08:00 AM,10/28/2012 06:08:00 AM,10/28/2012 06:08:51 AM,10/28/2012 06:11:10 AM,10/28/2012 06:12:10 AM,04/25/2016 01:56:05 PM,04/25/2016 01:56:05 PM,Other,10/28/2012 06:25:12 AM,100 Block of FELTON ST,SF,94134,B10,42,6341,1,1,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7296995803959, -122.406105145502)",123020108-E42 -120860195,E36,12028566,Medical Incident,03/26/2012,03/26/2012,03/26/2012 01:55:47 PM,03/26/2012 01:58:23 PM,03/26/2012 01:59:19 PM,03/26/2012 02:00:46 PM,03/26/2012 02:02:54 PM,04/25/2016 01:59:29 PM,04/25/2016 01:59:29 PM,Other,03/26/2012 02:18:39 PM,400 Block of IVY ST,SF,94102,B02,36,3315,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7769806945809, -122.425527315472)",120860195-E36 -132130125,B07,13071919,Structure Fire,08/01/2013,08/01/2013,08/01/2013 11:43:28 AM,08/01/2013 11:43:47 AM,08/01/2013 11:47:00 AM,08/01/2013 11:49:14 AM,08/01/2013 11:53:09 AM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 12:44:29 PM,200 Block of CARL ST,SF,94117,B05,12,5145,3,3,3,false,Alarm,1,CHIEF,7,5,5,Inner Sunset,"(37.7652836629529, -122.453570243869)",132130125-B07 -113020371,57,11100359,Medical Incident,10/29/2011,10/29/2011,10/29/2011 10:24:51 PM,10/29/2011 10:26:07 PM,10/29/2011 10:26:26 PM,10/29/2011 10:26:46 PM,10/29/2011 10:31:03 PM,10/29/2011 10:46:28 PM,10/29/2011 11:02:03 PM,Code 2 Transport,10/29/2011 11:32:44 PM,20TH AV/GEARY BL,SF,94121,B07,14,7172,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.780334689944, -122.479382974071)",113020371-57 -121870376,92,12062466,Medical Incident,07/05/2012,07/05/2012,07/05/2012 09:57:21 PM,07/05/2012 09:59:35 PM,07/05/2012 10:00:04 PM,07/05/2012 10:00:27 PM,07/05/2012 10:08:32 PM,07/05/2012 10:16:38 PM,07/05/2012 10:46:57 PM,Code 2 Transport,07/05/2012 11:04:43 PM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",121870376-92 -112760142,KM11,11091309,Medical Incident,10/03/2011,10/03/2011,10/03/2011 10:28:14 AM,10/03/2011 10:29:39 AM,10/03/2011 10:30:01 AM,10/03/2011 10:30:31 AM,10/03/2011 10:35:19 AM,10/03/2011 10:54:35 AM,10/03/2011 11:03:14 AM,Code 2 Transport,10/03/2011 11:33:02 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",112760142-KM11 -122250276,B02,12074708,Alarms,08/12/2012,08/12/2012,08/12/2012 07:57:28 PM,08/12/2012 08:01:06 PM,08/12/2012 08:01:19 PM,08/12/2012 08:03:52 PM,08/12/2012 08:05:43 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 08:24:17 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",122250276-B02 -110750001,E13,11024547,Alarms,03/16/2011,03/15/2011,03/16/2011 12:07:31 AM,03/16/2011 12:08:47 AM,03/16/2011 12:09:27 AM,03/16/2011 12:11:05 AM,03/16/2011 12:13:25 AM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Other,03/16/2011 12:23:52 AM,0 Block of SPEAR ST,SF,94105,B03,13,2115,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",110750001-E13 -112510339,T10,11082877,Structure Fire,09/08/2011,09/08/2011,09/08/2011 06:44:52 PM,09/08/2011 06:45:52 PM,09/08/2011 06:46:11 PM,09/08/2011 06:47:32 PM,09/08/2011 06:50:00 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 06:59:58 PM,3200 Block of CLAY ST,SF,94115,B04,10,4335,3,3,3,false,,1,TRUCK,1,4,2,Presidio Heights,"(37.7892141353212, -122.446463989599)",112510339-T10 -130810226,D2,13027148,Structure Fire,03/22/2013,03/22/2013,03/22/2013 03:30:26 PM,03/22/2013 03:31:54 PM,03/22/2013 03:32:09 PM,03/22/2013 03:32:32 PM,03/22/2013 03:35:23 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 03:36:45 PM,600 Block of GEARY ST,SF,94109,B01,3,1462,3,3,3,false,Alarm,1,CHIEF,6,1,3,Tenderloin,"(37.7866790146424, -122.413995034531)",130810226-D2 -132560183,B09,13086536,Structure Fire,09/13/2013,09/13/2013,09/13/2013 01:16:08 PM,09/13/2013 01:16:44 PM,09/13/2013 01:17:06 PM,09/13/2013 01:17:59 PM,09/13/2013 01:21:02 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Fire,09/13/2013 01:27:55 PM,0 Block of CONCORD ST,SF,94112,B09,43,6221,3,3,3,false,Alarm,1,CHIEF,2,9,11,Excelsior,"(37.7127395198874, -122.442907763659)",132560183-B09 -133160287,86,13107517,Medical Incident,11/12/2013,11/12/2013,11/12/2013 06:34:36 PM,11/12/2013 06:34:39 PM,11/12/2013 06:35:17 PM,11/12/2013 06:35:39 PM,11/12/2013 06:35:33 PM,11/12/2013 07:10:23 PM,11/12/2013 07:44:47 PM,Code 2 Transport,11/12/2013 08:22:19 PM,700 Block of MOSCOW ST,SF,94134,B09,43,6161,2,2,2,false,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.715844082258, -122.431797985467)",133160287-86 -123660125,KM10,12122395,Medical Incident,12/31/2012,12/31/2012,12/31/2012 10:29:47 AM,12/31/2012 10:30:54 AM,12/31/2012 10:31:20 AM,12/31/2012 10:33:11 AM,12/31/2012 10:38:16 AM,12/31/2012 10:56:50 AM,12/31/2012 11:03:32 AM,Code 2 Transport,12/31/2012 11:32:47 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",123660125-KM10 -140740095,55,14024951,Medical Incident,03/15/2014,03/15/2014,03/15/2014 08:37:16 AM,03/15/2014 08:39:28 AM,03/15/2014 08:40:15 AM,03/15/2014 08:40:22 AM,03/15/2014 08:48:49 AM,03/15/2014 09:11:36 AM,03/15/2014 09:22:04 AM,Code 2 Transport,03/15/2014 09:58:29 AM,1100 Block of MISSION ST,SAN FRANCISCO,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",140740095-55 -123540199,E03,12118454,Medical Incident,12/19/2012,12/19/2012,12/19/2012 12:02:23 PM,12/19/2012 12:04:53 PM,12/19/2012 12:05:37 PM,12/19/2012 12:05:48 PM,12/19/2012 12:09:11 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 12:35:48 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",123540199-E03 -111190233,E05,11039299,Traffic Collision,04/29/2011,04/29/2011,04/29/2011 04:28:48 PM,04/29/2011 04:28:55 PM,04/29/2011 04:33:56 PM,04/29/2011 04:34:48 PM,04/29/2011 04:37:18 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Patient Declined Transport,04/29/2011 04:44:08 PM,DIVISADERO ST/OFARRELL ST,SF,94115,B04,5,413,2,2,2,true,,1,ENGINE,1,5,5,Western Addition,"(37.7824504809987, -122.439297623944)",111190233-E05 -111490335,E02,11049543,Medical Incident,05/29/2011,05/29/2011,05/29/2011 11:29:12 PM,05/29/2011 11:31:06 PM,05/29/2011 11:31:33 PM,05/29/2011 11:36:48 PM,05/29/2011 11:43:41 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/29/2011 11:50:16 PM,500 Block of JONES ST,SF,94102,B01,3,1462,1,1,2,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",111490335-E02 -160624341,60,16024903,Medical Incident,03/02/2016,03/02/2016,03/02/2016 11:45:11 PM,03/02/2016 11:46:39 PM,03/02/2016 11:48:19 PM,03/02/2016 11:48:28 PM,03/02/2016 11:59:29 PM,03/03/2016 12:18:01 AM,03/03/2016 12:47:17 AM,Code 2 Transport,03/03/2016 01:32:38 AM,700 Block of HARRISON ST,San Francisco,94107,B03,8,2175,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",160624341-60 -160040901,74,16001519,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:00:47 AM,01/04/2016 09:01:05 AM,01/04/2016 09:02:01 AM,01/04/2016 09:02:13 AM,01/04/2016 09:06:32 AM,01/04/2016 09:22:43 AM,01/04/2016 09:32:08 AM,Code 2 Transport,01/04/2016 10:04:23 AM,4600 Block of MISSION ST,San Francisco,94112,B09,43,6117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7243246599401, -122.43515070173)",160040901-74 -132360014,RS2,13079504,Structure Fire,08/24/2013,08/23/2013,08/24/2013 12:55:51 AM,08/24/2013 12:56:32 AM,08/24/2013 12:56:59 AM,08/24/2013 12:58:43 AM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/24/2013 01:05:05 AM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,false,Alarm,1,RESCUE SQUAD,10,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",132360014-RS2 -131940312,B02,13066068,Structure Fire,07/13/2013,07/13/2013,07/13/2013 09:18:17 PM,07/13/2013 09:19:03 PM,07/13/2013 09:19:21 PM,07/13/2013 09:20:32 PM,07/13/2013 09:22:22 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 09:35:52 PM,VAN NESS AV/GEARY BL,SF,94109,B04,3,3161,3,3,3,false,Alarm,1,CHIEF,5,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",131940312-B02 -160753844,64,16029917,Traffic Collision,03/15/2016,03/15/2016,03/15/2016 09:56:05 PM,03/15/2016 09:59:01 PM,03/15/2016 09:59:11 PM,03/15/2016 10:00:11 PM,03/15/2016 10:04:31 PM,03/15/2016 10:26:41 PM,03/15/2016 10:42:01 PM,Code 2 Transport,03/15/2016 11:25:02 PM,600 Block of 8TH ST,San Francisco,94103,B03,29,2325,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7707183646173, -122.404602175632)",160753844-64 -121370342,RC3,12045644,Medical Incident,05/16/2012,05/16/2012,05/16/2012 07:23:24 PM,05/16/2012 07:24:56 PM,05/16/2012 07:25:05 PM,05/16/2012 07:39:34 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,05/16/2012 08:12:09 PM,Other,05/16/2012 07:49:16 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",121370342-RC3 -160860814,62,16034096,Medical Incident,03/26/2016,03/26/2016,03/26/2016 08:14:33 AM,03/26/2016 08:14:33 AM,03/26/2016 08:14:33 AM,03/26/2016 08:14:33 AM,03/26/2016 08:14:33 AM,03/26/2016 08:35:27 AM,03/26/2016 08:50:28 AM,Code 2 Transport,03/26/2016 09:20:46 AM,MASON ST/GEARY ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.787149142759, -122.409874017562)",160860814-62 -110810133,E03,11026623,Medical Incident,03/22/2011,03/22/2011,03/22/2011 11:34:16 AM,03/22/2011 11:34:49 AM,03/22/2011 11:38:04 AM,03/22/2011 11:44:53 AM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 11:45:51 AM,500 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",110810133-E03 -112630018,E01,11086689,Medical Incident,09/20/2011,09/19/2011,09/20/2011 02:00:15 AM,09/20/2011 02:00:55 AM,09/20/2011 02:01:05 AM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/20/2011 02:31:07 AM,100 Block of 3RD ST,SF,94103,B03,1,2177,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",112630018-E01 -133580121,E22,13121654,Medical Incident,12/24/2013,12/24/2013,12/24/2013 09:14:47 AM,12/24/2013 09:15:55 AM,12/24/2013 09:16:43 AM,12/24/2013 09:18:19 AM,12/24/2013 09:21:41 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 09:22:07 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",133580121-E22 -160422885,71,16016961,Medical Incident,02/11/2016,02/11/2016,02/11/2016 05:35:29 PM,02/11/2016 05:35:42 PM,02/11/2016 05:36:29 PM,02/11/2016 05:36:34 PM,02/11/2016 06:20:19 PM,02/11/2016 06:21:59 PM,02/11/2016 06:37:32 PM,Code 2 Transport,02/11/2016 07:36:50 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160422885-71 -131160193,E19,13039090,Medical Incident,04/26/2013,04/26/2013,04/26/2013 04:10:42 PM,04/26/2013 04:12:36 PM,04/26/2013 04:12:42 PM,04/26/2013 04:13:45 PM,04/26/2013 04:18:36 PM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/26/2013 04:31:39 PM,2400 Block of 45TH AVE,SF,94116,B08,18,7665,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7408866307923, -122.503414693179)",131160193-E19 -160281512,71,16011062,Medical Incident,01/28/2016,01/28/2016,01/28/2016 11:53:01 AM,01/28/2016 11:54:54 AM,01/28/2016 11:55:00 AM,01/28/2016 11:55:05 AM,01/28/2016 12:07:39 PM,01/28/2016 12:24:02 PM,01/28/2016 12:34:12 PM,Code 2 Transport,01/28/2016 01:16:40 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",160281512-71 -140410315,E38,14014031,Structure Fire,02/10/2014,02/10/2014,02/10/2014 04:43:03 PM,02/10/2014 04:43:50 PM,02/10/2014 04:44:07 PM,04/25/2016 01:48:16 PM,02/10/2014 04:46:36 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 04:49:39 PM,1400 Block of EDDY ST,SF,94115,B05,5,3515,3,3,3,true,Alarm,1,ENGINE,4,5,5,Western Addition,"(37.7814827356164, -122.431458216164)",140410315-E38 -120560079,AM02,12018417,Medical Incident,02/25/2012,02/25/2012,02/25/2012 08:48:36 AM,02/25/2012 08:56:14 AM,02/25/2012 08:56:27 AM,02/25/2012 08:56:55 AM,02/25/2012 09:07:50 AM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,No Merit,02/25/2012 09:27:35 AM,600 Block of CLAY ST,SF,94111,B01,13,1233,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7945054272056, -122.403956804569)",120560079-AM02 -160480175,AM24,16019193,Medical Incident,02/17/2016,02/16/2016,02/17/2016 01:36:35 AM,02/17/2016 01:38:24 AM,02/17/2016 01:38:38 AM,02/17/2016 01:39:26 AM,02/17/2016 01:44:35 AM,02/17/2016 02:17:51 AM,02/17/2016 03:09:31 AM,Code 2 Transport,02/17/2016 03:18:04 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160480175-AM24 -160443831,KM03,16017903,Medical Incident,02/13/2016,02/13/2016,02/13/2016 10:48:02 PM,02/13/2016 10:50:25 PM,02/13/2016 10:50:50 PM,02/13/2016 10:51:20 PM,02/13/2016 10:55:20 PM,02/13/2016 11:15:52 PM,02/13/2016 11:32:42 PM,Code 2 Transport,02/14/2016 12:09:15 AM,900 Block of GENEVA AVE,San Francisco,94112,B09,43,6175,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7159411510558, -122.439784371506)",160443831-KM03 -160350298,88,16013665,Medical Incident,02/04/2016,02/03/2016,02/04/2016 02:57:49 AM,02/04/2016 02:58:19 AM,02/04/2016 02:58:38 AM,02/04/2016 02:58:50 AM,02/04/2016 03:02:13 AM,02/04/2016 03:13:20 AM,02/04/2016 03:24:57 AM,Code 2 Transport,02/04/2016 03:58:46 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160350298-88 -120010262,55,12000223,Medical Incident,01/01/2012,12/31/2011,01/01/2012 03:46:57 AM,01/01/2012 03:49:17 AM,01/01/2012 03:50:07 AM,01/01/2012 03:50:32 AM,01/01/2012 03:55:20 AM,01/01/2012 04:01:27 AM,01/01/2012 04:11:31 AM,Code 2 Transport,01/01/2012 04:30:44 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",120010262-55 -160602559,KM09,16023990,Medical Incident,02/29/2016,02/29/2016,02/29/2016 05:03:29 PM,02/29/2016 05:03:29 PM,02/29/2016 05:03:43 PM,02/29/2016 05:06:39 PM,02/29/2016 05:18:23 PM,02/29/2016 05:39:16 PM,02/29/2016 05:58:49 PM,Code 2 Transport,02/29/2016 06:39:26 PM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",160602559-KM09 -123480315,E21,12116466,Medical Incident,12/13/2012,12/13/2012,12/13/2012 06:38:03 PM,12/13/2012 06:39:06 PM,12/13/2012 06:39:32 PM,12/13/2012 06:41:00 PM,12/13/2012 06:42:51 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/13/2012 06:51:35 PM,600 Block of STEINER ST,SF,94117,B05,21,3631,3,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7751510634662, -122.432804075352)",123480315-E21 -121040043,74,12034345,Medical Incident,04/13/2012,04/12/2012,04/13/2012 05:58:53 AM,04/13/2012 05:59:58 AM,04/13/2012 06:03:08 AM,04/13/2012 06:03:46 AM,04/25/2016 01:59:12 PM,04/13/2012 06:22:00 AM,04/13/2012 06:37:24 AM,Code 2 Transport,04/13/2012 07:08:36 AM,0 Block of MASON ST,SF,94102,B03,1,1365,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",121040043-74 -160800140,62,16031648,Medical Incident,03/20/2016,03/19/2016,03/20/2016 12:42:51 AM,03/20/2016 12:43:16 AM,03/20/2016 12:44:26 AM,03/20/2016 12:44:45 AM,03/20/2016 01:02:11 AM,03/20/2016 01:24:37 AM,03/20/2016 01:40:32 AM,Code 2 Transport,03/20/2016 02:52:33 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160800140-62 -130370224,B04,13012728,Alarms,02/06/2013,02/06/2013,02/06/2013 03:02:27 PM,02/06/2013 03:03:59 PM,02/06/2013 03:05:20 PM,02/06/2013 03:07:20 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 03:09:36 PM,2800 Block of BROADWAY,SF,94123,B04,10,4226,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7931736175933, -122.444028632879)",130370224-B04 -120300255,KM11,12010061,Medical Incident,01/30/2012,01/30/2012,01/30/2012 06:46:24 PM,01/30/2012 06:47:40 PM,01/30/2012 06:49:04 PM,04/25/2016 02:00:22 PM,01/30/2012 06:55:46 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/30/2012 07:12:36 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",120300255-KM11 -132240092,67,13075564,Medical Incident,08/12/2013,08/12/2013,08/12/2013 09:03:36 AM,08/12/2013 09:05:37 AM,08/12/2013 09:06:26 AM,08/12/2013 09:07:00 AM,08/12/2013 09:11:31 AM,08/12/2013 09:40:16 AM,08/12/2013 09:52:39 AM,Code 2 Transport,08/12/2013 10:42:14 AM,0 Block of POMONA ST,SF,94124,B10,17,6513,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7317250476804, -122.393375988902)",132240092-67 -160040527,88,16001478,Medical Incident,01/04/2016,01/03/2016,01/04/2016 06:33:59 AM,01/04/2016 06:33:59 AM,01/04/2016 06:34:33 AM,01/04/2016 06:34:53 AM,01/04/2016 06:45:53 AM,01/04/2016 06:59:03 AM,01/04/2016 06:59:04 AM,Code 2 Transport,01/04/2016 07:40:21 AM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160040527-88 -130190273,75,13006582,Medical Incident,01/19/2013,01/19/2013,01/19/2013 04:15:06 PM,01/19/2013 04:15:41 PM,01/19/2013 04:16:00 PM,01/19/2013 04:16:13 PM,01/19/2013 04:35:22 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Against Medical Advice,01/19/2013 05:18:36 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8082633159603, -122.414972542075)",130190273-75 -160061440,AM08,16002369,Medical Incident,01/06/2016,01/06/2016,01/06/2016 11:28:57 AM,01/06/2016 11:30:21 AM,01/06/2016 11:31:45 AM,01/06/2016 11:32:27 AM,01/06/2016 11:35:26 AM,01/06/2016 11:47:19 AM,01/06/2016 12:07:00 PM,Code 2 Transport,01/06/2016 12:36:25 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",160061440-AM08 -130370343,E03,13012839,Medical Incident,02/06/2013,02/06/2013,02/06/2013 10:07:45 PM,02/06/2013 10:10:39 PM,02/06/2013 10:11:01 PM,02/06/2013 10:12:07 PM,02/06/2013 10:14:31 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 10:25:03 PM,LEAVENWORTH ST/TURK ST,SF,94102,B02,1,1546,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",130370343-E03 -113480315,E33,11115569,Alarms,12/14/2011,12/14/2011,12/14/2011 06:47:58 PM,12/14/2011 06:48:54 PM,12/14/2011 06:49:16 PM,12/14/2011 06:50:41 PM,12/14/2011 06:52:19 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 07:06:07 PM,8200 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,true,,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",113480315-E33 -131090056,KM15,13036521,Medical Incident,04/19/2013,04/18/2013,04/19/2013 05:52:01 AM,04/19/2013 05:53:04 AM,04/19/2013 05:53:38 AM,04/19/2013 05:56:04 AM,04/19/2013 06:04:08 AM,04/19/2013 06:31:39 AM,04/19/2013 06:47:53 AM,Code 2 Transport,04/19/2013 06:59:37 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",131090056-KM15 -160872978,72,16034692,Medical Incident,03/27/2016,03/27/2016,03/27/2016 07:01:24 PM,03/27/2016 07:01:56 PM,03/27/2016 07:02:50 PM,03/27/2016 07:02:57 PM,03/27/2016 07:09:01 PM,03/27/2016 07:51:13 PM,03/27/2016 08:19:10 PM,Code 2 Transport,03/27/2016 09:15:31 PM,1600 Block of BAY SHORE BLVD,San Francisco,94124,B10,44,6542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7220922733519, -122.400087817543)",160872978-72 -112230105,T03,11073588,Medical Incident,08/11/2011,08/11/2011,08/11/2011 09:38:34 AM,08/11/2011 09:40:23 AM,08/11/2011 09:40:53 AM,08/11/2011 09:40:59 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,04/25/2016 02:03:13 PM,WILLOW ST/LARKIN ST,SF,94109,B02,3,1643,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7837775223432, -122.417618573606)",112230105-T03 -103070063,55,10098173,Medical Incident,11/03/2010,11/02/2010,11/03/2010 06:52:26 AM,11/03/2010 06:54:55 AM,11/03/2010 06:58:53 AM,11/03/2010 06:59:32 AM,11/03/2010 07:06:18 AM,11/03/2010 07:18:30 AM,11/03/2010 07:36:50 AM,Code 2 Transport,11/03/2010 08:04:37 AM,600 Block of CALIFORNIA ST,SF,94108,B01,13,1314,1,1,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",103070063-55 -111360018,E36,11045144,Medical Incident,05/16/2011,05/15/2011,05/16/2011 01:28:37 AM,05/16/2011 01:30:52 AM,05/16/2011 01:31:11 AM,05/16/2011 01:32:58 AM,05/16/2011 01:35:06 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 01:43:16 AM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",111360018-E36 -113610136,KM15,11119910,Medical Incident,12/27/2011,12/27/2011,12/27/2011 11:17:46 AM,12/27/2011 11:19:21 AM,12/27/2011 11:20:50 AM,12/27/2011 11:21:23 AM,12/27/2011 11:38:20 AM,12/27/2011 12:07:00 PM,12/27/2011 12:30:40 PM,Code 2 Transport,12/27/2011 01:06:43 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,false,,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",113610136-KM15 -122680244,E32,12088584,Structure Fire,09/24/2012,09/24/2012,09/24/2012 03:04:39 PM,09/24/2012 03:04:39 PM,09/24/2012 03:06:08 PM,09/24/2012 03:07:22 PM,09/24/2012 03:09:21 PM,04/25/2016 01:56:37 PM,04/25/2016 01:56:37 PM,Other,09/24/2012 03:13:16 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",122680244-E32 -160581497,87,16023105,Medical Incident,02/27/2016,02/27/2016,02/27/2016 11:32:12 AM,02/27/2016 11:34:55 AM,02/27/2016 11:36:06 AM,02/27/2016 11:36:43 AM,02/27/2016 11:54:51 AM,02/27/2016 11:54:53 AM,02/27/2016 12:20:16 PM,Code 2 Transport,02/27/2016 12:57:48 PM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160581497-87 -133010058,E07,13102185,Medical Incident,10/28/2013,10/27/2013,10/28/2013 07:14:07 AM,10/28/2013 07:15:44 AM,10/28/2013 07:17:04 AM,10/28/2013 07:18:55 AM,10/28/2013 07:20:46 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 07:27:02 AM,3100 Block of 21ST ST,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7571885589512, -122.417270975533)",133010058-E07 -140560353,E07,14019033,Medical Incident,02/25/2014,02/25/2014,02/25/2014 09:42:40 PM,02/25/2014 09:43:50 PM,02/25/2014 09:44:04 PM,02/25/2014 09:44:59 PM,02/25/2014 09:50:15 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Code 2 Transport,02/25/2014 09:57:05 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",140560353-E07 -131360124,E51,13045825,Alarms,05/16/2013,05/16/2013,05/16/2013 09:48:00 AM,05/16/2013 09:49:26 AM,05/16/2013 09:50:03 AM,05/16/2013 09:51:50 AM,05/16/2013 09:53:56 AM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 09:58:44 AM,300 Block of MORAGA AVE,PR,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.7986237777426, -122.460634690165)",131360124-E51 -160270954,52,16010590,Medical Incident,01/27/2016,01/27/2016,01/27/2016 09:15:37 AM,01/27/2016 09:17:52 AM,01/27/2016 09:31:31 AM,01/27/2016 09:31:41 AM,01/27/2016 09:36:45 AM,01/27/2016 09:58:18 AM,01/27/2016 10:05:22 AM,Code 3 Transport,01/27/2016 11:10:43 AM,500 Block of HURON AVE,San Francisco,94112,B09,33,8345,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7140548685457, -122.447132820655)",160270954-52 -122860291,RS2,12094699,Structure Fire,10/12/2012,10/12/2012,10/12/2012 07:00:15 PM,10/12/2012 07:04:13 PM,10/12/2012 07:04:32 PM,10/12/2012 07:06:09 PM,10/12/2012 07:07:46 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 07:11:08 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,Alarm,1,RESCUE SQUAD,4,2,9,Mission,"(37.7650513381945, -122.419668973861)",122860291-RS2 -160890531,62,16035220,Medical Incident,03/29/2016,03/28/2016,03/29/2016 06:56:31 AM,03/29/2016 06:58:04 AM,03/29/2016 06:58:34 AM,03/29/2016 06:58:48 AM,03/29/2016 07:02:40 AM,03/29/2016 07:10:28 AM,03/29/2016 07:15:21 AM,Code 3 Transport,03/29/2016 08:07:12 AM,200 Block of OCTAVIA ST,San Francisco,94102,B02,36,3313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745930151123, -122.424320630004)",160890531-62 -160293332,92,16011564,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:40:36 PM,01/29/2016 08:41:29 PM,01/29/2016 08:42:21 PM,01/29/2016 08:44:28 PM,01/29/2016 08:49:55 PM,01/29/2016 08:56:26 PM,01/29/2016 09:04:23 PM,Code 3 Transport,01/29/2016 09:51:53 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160293332-92 -133200283,93,13108814,Medical Incident,11/16/2013,11/16/2013,11/16/2013 06:28:46 PM,11/16/2013 06:30:12 PM,11/16/2013 06:30:54 PM,11/16/2013 06:32:08 PM,11/16/2013 06:46:45 PM,11/16/2013 07:09:02 PM,11/16/2013 07:27:23 PM,Code 2 Transport,11/16/2013 08:02:41 PM,2200 Block of 42ND AVE,SF,94116,B08,18,7635,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7447651974344, -122.500461812681)",133200283-93 -122500076,55,12082580,Medical Incident,09/06/2012,09/06/2012,09/06/2012 08:41:41 AM,09/06/2012 08:43:33 AM,09/06/2012 08:44:34 AM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,04/25/2016 01:56:54 PM,0 Block of DORE ST,SF,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",122500076-55 -160243340,56,16009700,Traffic Collision,01/24/2016,01/24/2016,01/24/2016 09:39:15 PM,01/24/2016 09:39:15 PM,01/24/2016 09:40:02 PM,01/24/2016 09:40:14 PM,01/24/2016 09:54:54 PM,01/24/2016 10:07:19 PM,01/24/2016 10:11:28 PM,Code 2 Transport,01/24/2016 10:39:35 PM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160243340-56 -111630123,E11,11053768,Structure Fire,06/12/2011,06/12/2011,06/12/2011 10:12:43 AM,06/12/2011 10:12:43 AM,06/12/2011 10:13:06 AM,06/12/2011 10:18:24 AM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Other,06/12/2011 10:18:27 AM,COLERIDGE ST/FAIR AV,SF,94110,B06,11,5662,3,3,3,true,,1,ENGINE,2,6,9,Bernal Heights,"(37.7451507672258, -122.418784784921)",111630123-E11 -160102146,58,16004089,Medical Incident,01/10/2016,01/10/2016,01/10/2016 03:30:49 PM,01/10/2016 03:31:19 PM,01/10/2016 03:33:38 PM,01/10/2016 03:34:22 PM,01/10/2016 03:42:10 PM,01/10/2016 03:54:07 PM,01/10/2016 04:18:27 PM,Code 2 Transport,01/10/2016 04:56:09 PM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7823404680537, -122.40377191669)",160102146-58 -122380038,81,12078716,Medical Incident,08/25/2012,08/24/2012,08/25/2012 01:52:04 AM,08/25/2012 01:53:27 AM,08/25/2012 01:53:48 AM,08/25/2012 01:54:00 AM,08/25/2012 01:55:56 AM,08/25/2012 02:07:20 AM,08/25/2012 02:17:07 AM,Code 2 Transport,08/25/2012 02:32:40 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",122380038-81 -160511662,AM12,16020473,Medical Incident,02/20/2016,02/20/2016,02/20/2016 01:26:33 PM,02/20/2016 01:27:05 PM,02/20/2016 01:27:23 PM,02/20/2016 01:27:54 PM,02/20/2016 01:31:11 PM,02/20/2016 01:36:21 PM,02/20/2016 01:53:33 PM,Code 2 Transport,02/20/2016 02:16:01 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160511662-AM12 -132830201,E03,13096315,Medical Incident,10/10/2013,10/10/2013,10/10/2013 01:17:24 PM,10/10/2013 01:18:19 PM,10/10/2013 01:19:39 PM,10/10/2013 01:21:35 PM,10/10/2013 01:23:35 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/10/2013 01:29:40 PM,1600 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,4,5,Japantown,"(37.78676442656, -122.427490271072)",132830201-E03 -102990162,RS2,10095442,Traffic Collision,10/26/2010,10/26/2010,10/26/2010 11:19:29 AM,10/26/2010 11:19:38 AM,10/26/2010 11:19:55 AM,10/26/2010 11:20:51 AM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 11:24:49 AM,29TH ST/DIAMOND ST,SF,94131,B06,26,5557,3,3,3,false,,1,RESCUE SQUAD,7,6,8,Noe Valley,"(37.743161446786, -122.435559005337)",102990162-RS2 -120090244,64,12003155,Medical Incident,01/09/2012,01/09/2012,01/09/2012 02:11:19 PM,01/09/2012 02:11:39 PM,01/09/2012 02:11:58 PM,01/09/2012 02:12:11 PM,01/09/2012 02:13:39 PM,01/09/2012 02:27:49 PM,01/09/2012 02:37:22 PM,Code 2 Transport,01/09/2012 03:03:54 PM,400 Block of SHRADER ST,SF,94117,B05,12,4544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7707625335991, -122.452216807745)",120090244-64 -121250110,T06,12041447,Structure Fire,05/04/2012,05/04/2012,05/04/2012 10:11:01 AM,05/04/2012 10:11:37 AM,05/04/2012 10:12:36 AM,05/04/2012 10:16:25 AM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 10:23:33 AM,100 Block of FOREST KNOLLS DR,SF,94131,B08,20,5366,3,3,3,false,Fire,1,TRUCK,5,8,7,Inner Sunset,"(37.7548692522345, -122.455591695127)",121250110-T06 -120100166,E01,12003463,Medical Incident,01/10/2012,01/10/2012,01/10/2012 12:35:27 PM,01/10/2012 12:35:59 PM,01/10/2012 12:36:16 PM,01/10/2012 12:38:13 PM,01/10/2012 12:39:51 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/10/2012 12:49:13 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",120100166-E01 -120750317,89,12025027,Medical Incident,03/15/2012,03/15/2012,03/15/2012 08:40:20 PM,03/15/2012 08:40:45 PM,03/15/2012 08:41:01 PM,03/15/2012 08:42:42 PM,03/15/2012 08:57:52 PM,03/15/2012 08:57:57 PM,03/15/2012 09:00:25 PM,Code 2 Transport,03/15/2012 09:14:48 PM,SAN JOSE AV/24TH ST,SF,94110,B06,11,5524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7520468115771, -122.4215951516)",120750317-89 -160400806,52,16015926,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:36:36 AM,02/09/2016 08:37:50 AM,02/09/2016 08:38:15 AM,02/09/2016 08:38:24 AM,02/09/2016 08:54:44 AM,02/09/2016 09:48:43 AM,02/09/2016 10:13:22 AM,Code 2 Transport,02/09/2016 10:33:38 AM,2100 Block of 22ND AVE,San Francisco,94116,B08,40,7444,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7475738115005, -122.479161952946)",160400806-52 -123050240,T03,12101232,Elevator / Escalator Rescue,10/31/2012,10/31/2012,10/31/2012 01:17:35 PM,10/31/2012 01:19:27 PM,10/31/2012 01:27:07 PM,04/25/2016 01:56:02 PM,10/31/2012 01:31:06 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Fire,10/31/2012 01:36:21 PM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",123050240-T03 -122790403,T07,12092423,Structure Fire,10/05/2012,10/05/2012,10/05/2012 11:32:16 PM,10/05/2012 11:32:17 PM,10/05/2012 11:32:21 PM,10/05/2012 11:33:49 PM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,Other,10/05/2012 11:35:40 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7586325666591, -122.419052607701)",122790403-T07 -112350353,RC2,11077689,Medical Incident,08/23/2011,08/23/2011,08/23/2011 07:40:04 PM,08/23/2011 07:40:46 PM,08/23/2011 07:40:55 PM,04/25/2016 02:03:02 PM,08/23/2011 07:44:03 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 07:58:29 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,2,2,true,,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7800578530259, -122.464142970045)",112350353-RC2 -130040411,81,13001546,Medical Incident,01/04/2013,01/04/2013,01/04/2013 10:10:06 PM,01/04/2013 10:12:29 PM,01/04/2013 10:12:49 PM,01/04/2013 10:13:11 PM,01/04/2013 10:22:05 PM,01/04/2013 10:48:39 PM,01/04/2013 11:03:04 PM,Code 2 Transport,01/04/2013 11:55:10 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",130040411-81 -121650080,RS1,12054643,Traffic Collision,06/13/2012,06/13/2012,06/13/2012 09:01:21 AM,06/13/2012 09:02:25 AM,06/13/2012 09:02:37 AM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/13/2012 09:22:15 AM,STEINER ST/POST ST,SF,94115,B04,5,3622,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,4,5,Japantown,"(37.7849440060036, -122.434729991182)",121650080-RS1 -110140204,T17,11004662,Medical Incident,01/14/2011,01/14/2011,01/14/2011 02:37:38 PM,01/14/2011 02:37:59 PM,01/14/2011 02:38:13 PM,01/14/2011 02:39:14 PM,01/14/2011 02:42:06 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 02:57:41 PM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,true,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7345707092334, -122.391831743022)",110140204-T17 -160112727,50,16004499,Medical Incident,01/11/2016,01/11/2016,01/11/2016 05:48:01 PM,01/11/2016 05:50:37 PM,01/11/2016 05:50:56 PM,01/11/2016 05:51:05 PM,01/11/2016 05:55:34 PM,01/11/2016 06:18:24 PM,01/11/2016 06:26:32 PM,Code 2 Transport,01/11/2016 07:04:06 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160112727-50 -160822705,KM11,16032653,Medical Incident,03/22/2016,03/22/2016,03/22/2016 04:39:40 PM,03/22/2016 04:40:29 PM,03/22/2016 04:41:42 PM,03/22/2016 04:42:12 PM,03/22/2016 04:47:34 PM,03/22/2016 05:05:41 PM,03/22/2016 05:13:47 PM,Code 2 Transport,03/22/2016 05:55:44 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160822705-KM11 -112300088,E41,11075878,Medical Incident,08/18/2011,08/18/2011,08/18/2011 08:58:33 AM,08/18/2011 09:01:14 AM,08/18/2011 09:02:08 AM,08/18/2011 09:03:33 AM,08/18/2011 09:03:40 AM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/18/2011 09:17:41 AM,1400 Block of LEAVENWORTH ST,SF,94109,B01,41,1535,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.7943258846738, -122.416450548399)",112300088-E41 -112370191,T13,11078196,Alarms,08/25/2011,08/25/2011,08/25/2011 12:18:31 PM,08/25/2011 12:20:09 PM,08/25/2011 12:20:20 PM,08/25/2011 12:21:09 PM,08/25/2011 12:24:46 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 12:29:24 PM,1700 Block of MONTGOMERY ST,SF,94133,B01,28,1223,3,3,3,false,,1,TRUCK,1,1,3,North Beach,"(37.8052210976384, -122.405333785642)",112370191-T13 -160251709,54,16009923,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:33:47 PM,01/25/2016 12:36:48 PM,01/25/2016 12:36:55 PM,01/25/2016 12:37:09 PM,01/25/2016 12:51:27 PM,01/25/2016 01:02:30 PM,01/25/2016 01:22:23 PM,Code 2 Transport,01/25/2016 02:26:59 PM,1000 Block of WISCONSIN ST,San Francisco,94107,B10,37,257,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",160251709-54 -160250482,AM24,16009795,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:03:21 AM,01/25/2016 06:06:46 AM,01/25/2016 06:07:49 AM,01/25/2016 06:08:22 AM,01/25/2016 06:13:43 AM,01/25/2016 06:21:24 AM,01/25/2016 07:08:39 AM,Code 2 Transport,01/25/2016 07:32:12 AM,400 Block of 25TH AVE,San Francisco,94121,B07,14,7213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7810622346199, -122.484734171651)",160250482-AM24 -110490185,E01,11016178,Medical Incident,02/18/2011,02/18/2011,02/18/2011 12:08:43 PM,02/18/2011 12:10:26 PM,02/18/2011 12:11:57 PM,02/18/2011 12:13:29 PM,02/18/2011 12:14:37 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,02/18/2011 12:24:34 PM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",110490185-E01 -122580113,E01,12085226,Medical Incident,09/14/2012,09/14/2012,09/14/2012 10:35:00 AM,09/14/2012 10:36:18 AM,09/14/2012 10:36:37 AM,09/14/2012 10:41:16 AM,09/14/2012 10:43:31 AM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/14/2012 10:48:01 AM,800 Block of FOLSOM ST,SF,94107,B03,1,2215,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811056901316, -122.402224662374)",122580113-E01 -102790242,78,10088756,Medical Incident,10/06/2010,10/06/2010,10/06/2010 04:45:11 PM,10/06/2010 04:45:42 PM,10/06/2010 04:49:18 PM,10/06/2010 04:49:26 PM,10/06/2010 04:54:35 PM,10/06/2010 05:17:05 PM,10/06/2010 05:42:06 PM,Code 2 Transport,10/06/2010 05:59:38 PM,MARKET ST/GUERRERO ST,SF,94103,B02,36,3416,2,2,2,true,,1,MEDIC,1,2,8,Mission,"(37.7707477455746, -122.424852598702)",102790242-78 -110070334,E36,11002451,Medical Incident,01/07/2011,01/07/2011,01/07/2011 06:52:01 PM,01/07/2011 06:54:01 PM,01/07/2011 06:54:32 PM,01/07/2011 06:56:01 PM,01/07/2011 06:58:16 PM,04/25/2016 02:06:42 PM,04/25/2016 02:06:42 PM,Patient Declined Transport,01/07/2011 06:59:44 PM,BUCHANAN ST/HAYES ST,SF,94102,B02,36,3423,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7762536677457, -122.427913715931)",110070334-E36 -111810201,E12,11059738,Medical Incident,06/30/2011,06/30/2011,06/30/2011 01:51:38 PM,06/30/2011 01:51:58 PM,06/30/2011 01:52:30 PM,06/30/2011 01:53:44 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 01:54:59 PM,OAK ST/ASHBURY ST,SF,94117,B05,21,4513,3,3,3,true,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7718777415662, -122.447312420784)",111810201-E12 -102410171,E25,10076010,Alarms,08/29/2010,08/29/2010,08/29/2010 12:08:26 PM,08/29/2010 12:10:07 PM,08/29/2010 12:10:40 PM,08/29/2010 12:11:47 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/29/2010 12:26:26 PM,1600 Block of MCKINNON AVE,SF,94124,B10,17,6515,3,3,3,false,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",102410171-E25 -140070322,E41,14002611,Alarms,01/07/2014,01/07/2014,01/07/2014 07:40:19 PM,01/07/2014 07:41:59 PM,01/07/2014 07:42:05 PM,01/07/2014 07:43:18 PM,01/07/2014 07:45:46 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 07:59:19 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",140070322-E41 -160051443,59,16001968,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:43:26 AM,01/05/2016 11:44:33 AM,01/05/2016 11:44:47 AM,01/05/2016 11:44:54 AM,01/05/2016 11:47:53 AM,01/05/2016 12:17:32 PM,01/05/2016 12:23:29 PM,Code 2 Transport,01/05/2016 01:23:04 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160051443-59 -122810197,67,12092999,Medical Incident,10/07/2012,10/07/2012,10/07/2012 12:36:47 PM,10/07/2012 12:37:57 PM,10/07/2012 12:38:45 PM,10/07/2012 12:39:28 PM,10/07/2012 12:49:57 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,No Merit,10/07/2012 01:00:29 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",122810197-67 -160870295,88,16034431,Medical Incident,03/27/2016,03/26/2016,03/27/2016 01:47:31 AM,03/27/2016 01:49:52 AM,03/27/2016 01:50:32 AM,03/27/2016 01:50:47 AM,03/27/2016 02:04:25 AM,03/27/2016 02:09:46 AM,03/27/2016 02:14:27 AM,Code 2 Transport,03/27/2016 02:52:23 AM,MARKET ST/TURK ST,San Francisco,94103,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",160870295-88 -122270107,E28,12075198,Traffic Collision,08/14/2012,08/14/2012,08/14/2012 10:49:59 AM,08/14/2012 10:50:59 AM,08/14/2012 10:51:30 AM,08/14/2012 10:52:22 AM,08/14/2012 10:53:50 AM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/14/2012 11:10:51 AM,POWELL ST/FILBERT ST,SF,94133,B01,28,1351,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.801169751007, -122.41101851673)",122270107-E28 -160761211,60,16030085,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:20:24 AM,03/16/2016 10:22:57 AM,03/16/2016 10:23:43 AM,03/16/2016 10:28:22 AM,03/16/2016 11:03:33 AM,03/16/2016 11:03:38 AM,03/16/2016 11:12:47 AM,Code 2 Transport,03/16/2016 11:58:36 AM,200 Block of 19TH AVE,San Francisco,94121,B07,31,7164,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7832380252403, -122.478580262547)",160761211-60 -111310230,94,11043327,Medical Incident,05/11/2011,05/11/2011,05/11/2011 03:28:12 PM,05/11/2011 03:30:35 PM,05/11/2011 03:31:10 PM,05/11/2011 03:31:26 PM,05/11/2011 03:35:31 PM,05/11/2011 03:56:02 PM,05/11/2011 04:13:13 PM,Code 2 Transport,05/11/2011 04:41:02 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",111310230-94 -123500057,87,12116932,Medical Incident,12/15/2012,12/14/2012,12/15/2012 04:27:47 AM,12/15/2012 04:28:38 AM,12/15/2012 04:29:22 AM,12/15/2012 04:29:36 AM,12/15/2012 04:34:58 AM,12/15/2012 04:49:01 AM,12/15/2012 05:01:41 AM,Code 2 Transport,12/15/2012 05:32:33 AM,GENEVA AV/SAN JOSE AV,SF,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",123500057-87 -130780373,E05,13026192,Medical Incident,03/19/2013,03/19/2013,03/19/2013 07:48:19 PM,03/19/2013 07:49:41 PM,03/19/2013 07:50:08 PM,03/19/2013 07:50:29 PM,03/19/2013 07:51:15 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 08:12:11 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",130780373-E05 -133640183,89,13123596,Medical Incident,12/30/2013,12/30/2013,12/30/2013 12:41:32 PM,12/30/2013 12:43:14 PM,12/30/2013 12:43:40 PM,12/30/2013 12:43:56 PM,12/30/2013 12:58:52 PM,12/30/2013 01:18:54 PM,12/30/2013 01:28:23 PM,Code 2 Transport,12/30/2013 01:56:47 PM,1700 Block of TURK ST,SF,94115,B05,5,4152,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7797665517286, -122.438328082289)",133640183-89 -140690046,88,14023181,Medical Incident,03/10/2014,03/09/2014,03/10/2014 06:03:34 AM,03/10/2014 06:08:06 AM,03/10/2014 06:08:38 AM,03/10/2014 06:08:45 AM,03/10/2014 06:20:02 AM,03/10/2014 06:41:59 AM,03/10/2014 07:00:53 AM,Code 2 Transport,03/10/2014 07:30:43 AM,0 Block of THOMAS MORE WAY,SAN FRANCISCO,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",140690046-88 -123340060,82,12110868,Medical Incident,11/29/2012,11/28/2012,11/29/2012 05:48:21 AM,11/29/2012 05:49:49 AM,11/29/2012 05:50:24 AM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,04/25/2016 01:55:35 PM,STEUART ST/MARKET ST,SF,94105,B01,13,1112,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7944797173062, -122.394747580278)",123340060-82 -160301774,67,16011786,Medical Incident,01/30/2016,01/30/2016,01/30/2016 12:20:13 PM,01/30/2016 12:22:16 PM,01/30/2016 12:22:47 PM,01/30/2016 12:23:17 PM,01/30/2016 12:43:27 PM,01/30/2016 01:08:49 PM,01/30/2016 01:36:42 PM,Code 2 Transport,01/30/2016 02:16:52 PM,742-744 HOLLOWAY AV,San Francisco,94112,B09,15,8463,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7218878674022, -122.460743393033)",160301774-67 -113070191,KM01,11101994,Medical Incident,11/03/2011,11/03/2011,11/03/2011 01:18:55 PM,11/03/2011 01:20:42 PM,11/03/2011 01:20:58 PM,11/03/2011 01:21:36 PM,11/03/2011 01:25:20 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Patient Declined Transport,11/03/2011 01:52:28 PM,400 Block of SAWYER ST,SF,94134,B09,44,6263,3,3,3,false,,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7124324746921, -122.414660020644)",113070191-KM01 -111270190,E02,11042052,Structure Fire,05/07/2011,05/07/2011,05/07/2011 02:07:48 PM,05/07/2011 02:07:48 PM,05/07/2011 02:08:15 PM,05/07/2011 02:09:28 PM,05/07/2011 02:11:35 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Fire,05/07/2011 02:12:06 PM,STOCKTON ST/SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7931783017695, -122.40772718761)",111270190-E02 -130770211,E13,13025733,Medical Incident,03/18/2013,03/18/2013,03/18/2013 01:56:01 PM,03/18/2013 01:57:04 PM,03/18/2013 01:59:21 PM,03/18/2013 01:59:31 PM,03/18/2013 02:00:17 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,No Merit,03/18/2013 02:02:25 PM,CALIFORNIA ST/BATTERY ST,SF,94111,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",130770211-E13 -112860313,E12,11094839,Structure Fire,10/13/2011,10/13/2011,10/13/2011 04:33:07 PM,10/13/2011 04:33:07 PM,10/13/2011 04:34:07 PM,10/13/2011 04:35:07 PM,10/13/2011 04:38:26 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 04:40:07 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,true,,1,ENGINE,1,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",112860313-E12 -121190005,E03,12039331,Medical Incident,04/28/2012,04/27/2012,04/28/2012 12:25:31 AM,04/28/2012 12:26:01 AM,04/28/2012 12:26:16 AM,04/28/2012 12:28:02 AM,04/28/2012 12:29:57 AM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/28/2012 12:31:34 AM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",121190005-E03 -132230250,81,13075376,Medical Incident,08/11/2013,08/11/2013,08/11/2013 04:24:16 PM,08/11/2013 04:25:22 PM,08/11/2013 04:26:45 PM,08/11/2013 04:29:47 PM,08/11/2013 04:32:07 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Patient Declined Transport,08/11/2013 04:45:43 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",132230250-81 -113150340,E40,11104853,Medical Incident,11/11/2011,11/11/2011,11/11/2011 11:17:21 PM,11/11/2011 11:18:57 PM,11/11/2011 11:23:27 PM,11/11/2011 11:25:28 PM,11/11/2011 11:27:34 PM,04/25/2016 02:01:41 PM,04/25/2016 02:01:41 PM,Other,11/11/2011 11:52:19 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,2,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",113150340-E40 -112640033,87,11087075,Medical Incident,09/21/2011,09/20/2011,09/21/2011 02:33:05 AM,09/21/2011 02:34:40 AM,09/21/2011 02:34:55 AM,09/21/2011 02:36:36 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Patient Declined Transport,09/21/2011 02:46:42 AM,700 Block of 26TH AVE,SF,94121,B07,14,7212,3,3,3,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7753232435727, -122.48539571121)",112640033-87 -160653248,64,16026112,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:41:04 PM,03/05/2016 08:41:57 PM,03/05/2016 08:45:15 PM,03/05/2016 08:45:15 PM,03/05/2016 08:50:09 PM,03/05/2016 08:57:22 PM,03/05/2016 09:23:36 PM,Code 2 Transport,03/05/2016 09:55:20 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",160653248-64 -140030230,E12,14001075,Medical Incident,01/03/2014,01/03/2014,01/03/2014 01:03:24 PM,01/03/2014 01:04:22 PM,01/03/2014 01:05:47 PM,01/03/2014 01:06:22 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,Other,01/03/2014 01:13:23 PM,1400 Block of LINCOLN WAY,SF,94122,B08,22,7367,,2,2,true,Potentially Life-Threatening,1,ENGINE,3,7,5,Inner Sunset,"(37.7655073554414, -122.473477522814)",140030230-E12 -160522208,56,16020864,Medical Incident,02/21/2016,02/21/2016,02/21/2016 03:51:24 PM,02/21/2016 03:52:39 PM,02/21/2016 03:53:05 PM,02/21/2016 03:53:41 PM,02/21/2016 04:06:12 PM,02/21/2016 04:27:58 PM,02/21/2016 04:34:33 PM,Code 2 Transport,02/21/2016 04:52:26 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160522208-56 -110240268,T03,11007933,Medical Incident,01/24/2011,01/24/2011,01/24/2011 03:00:03 PM,01/24/2011 03:01:00 PM,01/24/2011 03:01:35 PM,01/24/2011 03:02:32 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/24/2011 03:02:51 PM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,1,2,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7838723576417, -122.420175524645)",110240268-T03 -130070143,B07,13002337,Alarms,01/07/2013,01/07/2013,01/07/2013 10:56:44 AM,01/07/2013 10:57:59 AM,01/07/2013 10:58:17 AM,01/07/2013 10:59:44 AM,01/07/2013 11:02:36 AM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Fire,01/07/2013 11:13:31 AM,0 Block of 19TH AVE,SF,94121,B07,31,7163,3,3,3,false,Alarm,1,CHIEF,1,7,2,Seacliff,"(37.7863877327251, -122.47867010798)",130070143-B07 -132140138,B04,13072225,Gas Leak (Natural and LP Gases),08/02/2013,08/02/2013,08/02/2013 11:17:43 AM,08/02/2013 11:19:06 AM,08/02/2013 11:27:18 AM,08/02/2013 11:27:23 AM,08/02/2013 11:28:15 AM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/02/2013 12:43:08 PM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7900221078411, -122.433000512108)",132140138-B04 -112000041,E15,11065846,Medical Incident,07/19/2011,07/18/2011,07/19/2011 05:13:37 AM,07/19/2011 05:14:37 AM,07/19/2011 05:14:48 AM,07/19/2011 05:17:42 AM,07/19/2011 05:21:14 AM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Other,07/19/2011 05:33:06 AM,4800 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,,1,ENGINE,2,9,11,Excelsior,"(37.7213272618826, -122.437216421378)",112000041-E15 -122880075,T05,12095191,Citizen Assist / Service Call,10/14/2012,10/13/2012,10/14/2012 05:40:51 AM,10/14/2012 05:46:21 AM,10/14/2012 05:46:45 AM,10/14/2012 05:48:06 AM,10/14/2012 05:50:01 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 05:55:19 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,false,Alarm,1,TRUCK,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",122880075-T05 -160411237,52,16016403,Medical Incident,02/10/2016,02/10/2016,02/10/2016 10:25:45 AM,02/10/2016 10:27:25 AM,02/10/2016 10:28:31 AM,02/10/2016 10:29:07 AM,02/10/2016 10:41:18 AM,02/10/2016 11:02:51 AM,02/10/2016 11:12:28 AM,Code 3 Transport,02/10/2016 11:57:08 AM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",160411237-52 -112820254,87,11093391,Traffic Collision,10/09/2011,10/09/2011,10/09/2011 04:13:25 PM,10/09/2011 04:13:51 PM,10/09/2011 04:14:43 PM,10/09/2011 04:15:10 PM,10/09/2011 04:17:12 PM,10/09/2011 04:28:37 PM,10/09/2011 04:41:03 PM,Code 3 Transport,10/09/2011 05:12:08 PM,POWELL ST/NORTH POINT ST,SF,94133,B01,28,1262,3,3,3,true,,1,MEDIC,1,1,3,North Beach,"(37.8067580824981, -122.412141425527)",112820254-87 -132540011,B04,13085663,Alarms,09/11/2013,09/10/2013,09/11/2013 12:49:04 AM,09/11/2013 12:51:54 AM,09/11/2013 12:55:28 AM,09/11/2013 12:55:32 AM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Fire,09/11/2013 01:02:13 AM,300 Block of ARGUELLO BLVD,SF,94118,B07,10,7114,3,3,3,false,Alarm,1,CHIEF,4,7,1,Inner Richmond,"(37.7844395880636, -122.459158221689)",132540011-B04 -103410264,82,10109180,Medical Incident,12/07/2010,12/07/2010,12/07/2010 03:54:42 PM,12/07/2010 03:56:43 PM,12/07/2010 03:59:48 PM,12/07/2010 04:00:13 PM,04/25/2016 02:07:14 PM,12/07/2010 04:14:09 PM,12/07/2010 04:17:44 PM,Code 2 Transport,12/07/2010 04:43:00 PM,1100 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7870624915967, -122.419905427898)",103410264-82 -160800986,75,16031743,Medical Incident,03/20/2016,03/20/2016,03/20/2016 08:59:18 AM,03/20/2016 08:59:47 AM,03/20/2016 09:01:17 AM,03/20/2016 09:01:25 AM,03/20/2016 09:04:43 AM,03/20/2016 09:22:34 AM,03/20/2016 09:34:24 AM,Code 2 Transport,03/20/2016 09:51:22 AM,GROVE ST/LARKIN ST,San Francisco,94102,B02,36,1552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160800986-75 -121320234,65,12043956,Medical Incident,05/11/2012,05/11/2012,05/11/2012 02:47:26 PM,05/11/2012 02:47:26 PM,05/11/2012 02:48:51 PM,05/11/2012 02:49:07 PM,05/11/2012 03:06:45 PM,05/11/2012 03:07:08 PM,05/11/2012 03:24:28 PM,Code 2 Transport,05/11/2012 04:05:49 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,E,3,true,Non Life-threatening,1,MEDIC,4,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",121320234-65 -102930370,AM12,10093606,Medical Incident,10/20/2010,10/20/2010,10/20/2010 11:25:38 PM,10/20/2010 11:26:27 PM,10/20/2010 11:27:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,04/25/2016 02:08:00 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,PRIVATE,3,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",102930370-AM12 -120800248,T13,12026615,Medical Incident,03/20/2012,03/20/2012,03/20/2012 04:35:19 PM,03/20/2012 04:37:01 PM,03/20/2012 04:37:10 PM,03/20/2012 04:38:17 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/20/2012 04:38:32 PM,GRANT AV/BUSH ST,SF,94108,B01,13,1315,2,2,2,false,Potentially Life-Threatening,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7905652365323, -122.405573746363)",120800248-T13 -123630059,78,12121361,Medical Incident,12/28/2012,12/27/2012,12/28/2012 06:34:54 AM,12/28/2012 06:36:09 AM,12/28/2012 06:36:39 AM,12/28/2012 06:36:47 AM,12/28/2012 06:39:10 AM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Patient Declined Transport,12/28/2012 07:04:08 AM,700 Block of MISSION ST,SF,94103,B03,1,2178,3,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",123630059-78 -160592598,74,16023623,Medical Incident,02/28/2016,02/28/2016,02/28/2016 06:09:26 PM,02/28/2016 06:10:24 PM,02/28/2016 06:11:42 PM,02/28/2016 06:12:39 PM,02/28/2016 06:18:01 PM,02/28/2016 06:33:50 PM,02/28/2016 06:48:58 PM,Code 2 Transport,02/28/2016 07:13:31 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825297445725, -122.412384547628)",160592598-74 -140740103,B07,14024958,Other,03/15/2014,03/15/2014,03/15/2014 09:06:34 AM,03/15/2014 09:09:34 AM,03/15/2014 09:11:09 AM,03/15/2014 09:12:55 AM,03/15/2014 09:20:58 AM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Fire,03/15/2014 09:43:28 AM,1000 Block of POINT LOBOS AVE,,94121,B07,34,7314,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",140740103-B07 -110750261,E40,11024745,Odor (Strange / Unknown),03/16/2011,03/16/2011,03/16/2011 06:38:12 PM,03/16/2011 06:40:28 PM,03/16/2011 06:41:15 PM,03/16/2011 06:42:07 PM,03/16/2011 06:46:00 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Other,03/16/2011 06:58:00 PM,IRVING ST/20TH AV,SF,94122,B08,22,7425,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.763514759084, -122.478190825777)",110750261-E40 -113440249,AR1,11114184,Structure Fire,12/10/2011,12/10/2011,12/10/2011 05:19:24 PM,12/10/2011 05:20:07 PM,12/10/2011 05:20:22 PM,12/10/2011 05:34:34 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 08:58:29 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,INVESTIGATION,25,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",113440249-AR1 -112160307,E29,11071440,Structure Fire,08/04/2011,08/04/2011,08/04/2011 05:51:21 PM,08/04/2011 05:52:41 PM,08/04/2011 05:53:07 PM,08/04/2011 05:54:59 PM,08/04/2011 05:57:30 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 05:58:44 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,true,,1,ENGINE,6,2,9,Mission,"(37.7677331022924, -122.415606951318)",112160307-E29 -133010375,E08,13102434,Medical Incident,10/28/2013,10/28/2013,10/28/2013 08:24:04 PM,10/28/2013 08:26:07 PM,10/28/2013 08:27:13 PM,10/28/2013 08:28:43 PM,10/28/2013 08:34:22 PM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/28/2013 08:41:24 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",133010375-E08 -160510470,KM03,16020361,Medical Incident,02/20/2016,02/19/2016,02/20/2016 04:30:49 AM,02/20/2016 04:32:26 AM,02/20/2016 04:32:40 AM,02/20/2016 04:33:18 AM,02/20/2016 04:35:43 AM,02/20/2016 04:55:44 AM,02/20/2016 05:07:13 AM,Code 2 Transport,02/20/2016 05:40:53 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160510470-KM03 -131340009,AM18,13045060,Medical Incident,05/14/2013,05/13/2013,05/14/2013 12:32:46 AM,05/14/2013 12:34:00 AM,05/14/2013 12:34:13 AM,05/14/2013 12:35:13 AM,05/14/2013 12:46:47 AM,05/14/2013 12:46:53 AM,05/14/2013 12:51:11 AM,Code 2 Transport,05/14/2013 01:16:11 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",131340009-AM18 -160210662,79,16008275,Medical Incident,01/21/2016,01/20/2016,01/21/2016 07:50:17 AM,01/21/2016 07:52:10 AM,01/21/2016 07:52:30 AM,01/21/2016 07:52:49 AM,01/21/2016 08:10:52 AM,01/21/2016 08:45:20 AM,01/21/2016 09:13:13 AM,Code 2 Transport,01/21/2016 10:09:41 AM,0 Block of BROADMOOR DR,San Francisco,94132,B09,19,8723,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7277422805146, -122.473265515738)",160210662-79 -160030044,85,16000986,Medical Incident,01/03/2016,01/02/2016,01/03/2016 12:14:20 AM,01/03/2016 12:14:45 AM,01/03/2016 12:15:07 AM,01/03/2016 12:15:40 AM,01/03/2016 12:32:03 AM,01/03/2016 01:06:18 AM,01/03/2016 01:24:53 AM,Code 2 Transport,01/03/2016 02:04:05 AM,500 Block of AMAZON AVE,San Francisco,94112,B09,43,6136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7155859094303, -122.435741243059)",160030044-85 -132430115,85,13081940,Water Rescue,08/31/2013,08/31/2013,08/31/2013 08:52:45 AM,08/31/2013 08:54:43 AM,08/31/2013 08:56:05 AM,08/31/2013 08:56:17 AM,08/31/2013 09:04:27 AM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/31/2013 09:10:06 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,MEDIC,9,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132430115-85 -113200115,T03,11106232,Medical Incident,11/16/2011,11/16/2011,11/16/2011 09:42:07 AM,11/16/2011 09:42:32 AM,11/16/2011 09:42:55 AM,11/16/2011 09:44:10 AM,11/16/2011 09:46:31 AM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 09:53:15 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,,1,TRUCK,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",113200115-T03 -122700362,E13,12089286,Medical Incident,09/26/2012,09/26/2012,09/26/2012 11:58:07 PM,09/26/2012 11:58:40 PM,09/26/2012 11:59:10 PM,09/27/2012 12:01:23 AM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Other,09/27/2012 12:10:04 AM,SPEAR ST/MARKET ST,SF,94105,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",122700362-E13 -160411634,88,16016437,Medical Incident,02/10/2016,02/10/2016,02/10/2016 12:11:20 PM,02/10/2016 12:12:23 PM,02/10/2016 12:12:43 PM,02/10/2016 12:13:03 PM,02/10/2016 12:17:35 PM,02/10/2016 12:30:06 PM,02/10/2016 12:51:03 PM,Code 2 Transport,02/10/2016 01:29:37 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160411634-88 -123400047,85,12113308,Medical Incident,12/05/2012,12/04/2012,12/05/2012 04:32:57 AM,12/05/2012 04:35:24 AM,12/05/2012 04:35:46 AM,12/05/2012 04:35:59 AM,12/05/2012 04:55:13 AM,12/05/2012 05:38:38 AM,12/05/2012 05:56:36 AM,Code 2 Transport,12/05/2012 06:12:22 AM,200 Block of BLYTHDALE AVE,SF,94134,B09,43,6243,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",123400047-85 -122850380,77,12094446,Medical Incident,10/11/2012,10/11/2012,10/11/2012 10:53:59 PM,10/11/2012 10:54:31 PM,10/11/2012 10:59:58 PM,10/11/2012 11:00:26 PM,10/11/2012 11:11:16 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Patient Declined Transport,10/11/2012 11:33:48 PM,OAK ST/STANYAN ST,SF,94117,B05,12,4554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.7714283936706, -122.453979521283)",122850380-77 -160320074,89,16012400,Medical Incident,02/01/2016,01/31/2016,02/01/2016 12:32:53 AM,02/01/2016 12:33:44 AM,02/01/2016 12:34:26 AM,02/01/2016 12:34:41 AM,02/01/2016 12:38:34 AM,02/01/2016 12:50:04 AM,02/01/2016 01:06:27 AM,Code 2 Transport,02/01/2016 01:36:46 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160320074-89 -160652857,79,16026046,Medical Incident,03/05/2016,03/05/2016,03/05/2016 06:56:53 PM,03/05/2016 06:58:54 PM,03/05/2016 06:59:16 PM,03/05/2016 06:59:24 PM,03/05/2016 07:03:58 PM,03/05/2016 07:22:01 PM,03/05/2016 07:41:56 PM,Code 2 Transport,03/05/2016 08:13:22 PM,800 Block of POST ST,San Francisco,94109,B04,3,1543,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7874037664371, -122.415827994726)",160652857-79 -122440057,88,12080563,Medical Incident,08/31/2012,08/30/2012,08/31/2012 06:10:02 AM,08/31/2012 06:10:48 AM,08/31/2012 06:11:02 AM,08/31/2012 06:11:25 AM,08/31/2012 06:17:06 AM,08/31/2012 06:35:16 AM,08/31/2012 06:51:14 AM,Code 2 Transport,08/31/2012 07:14:15 AM,PARNASSUS AV/SHRADER ST,SF,94117,B05,12,5161,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7646823660448, -122.451213061284)",122440057-88 -131520270,RS2,13051576,Traffic Collision,06/01/2013,06/01/2013,06/01/2013 06:35:12 PM,06/01/2013 06:36:08 PM,06/01/2013 06:36:59 PM,06/01/2013 06:38:06 PM,06/01/2013 06:47:49 PM,04/25/2016 01:52:30 PM,04/25/2016 01:52:30 PM,Other,06/01/2013 06:52:07 PM,SUNSET BL/SANTIAGO ST,SF,94116,B08,18,7575,3,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,8,4,Sunset/Parkside,"(37.7440918577885, -122.494573841532)",131520270-RS2 -160272486,71,16010749,Medical Incident,01/27/2016,01/27/2016,01/27/2016 03:44:41 PM,01/27/2016 03:45:21 PM,01/27/2016 03:46:05 PM,01/27/2016 03:46:26 PM,01/27/2016 03:50:59 PM,01/27/2016 04:11:36 PM,01/27/2016 04:17:49 PM,Code 2 Transport,01/27/2016 04:45:03 PM,1200 Block of GOUGH ST,San Francisco,94109,B04,3,3261,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,5,Western Addition,"(37.7843759652994, -122.42442259558)",160272486-71 -112450311,E08,11080868,Structure Fire,09/02/2011,09/02/2011,09/02/2011 06:05:12 PM,09/02/2011 06:05:13 PM,09/02/2011 06:05:23 PM,09/02/2011 06:06:28 PM,09/02/2011 06:08:56 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Fire,09/02/2011 06:09:20 PM,2ND ST/FOLSOM ST,SF,94107,B03,1,2147,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",112450311-E08 -121060018,67,12034989,Medical Incident,04/15/2012,04/14/2012,04/15/2012 12:51:07 AM,04/15/2012 12:53:13 AM,04/15/2012 12:53:58 AM,04/15/2012 12:54:08 AM,04/15/2012 01:08:19 AM,04/15/2012 01:46:13 AM,04/15/2012 01:57:07 AM,Code 2 Transport,04/15/2012 02:32:31 AM,0 Block of FOUNTAIN ST,SF,94114,B06,24,5517,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7500294084309, -122.441681630817)",121060018-67 -110510370,59,11017051,Medical Incident,02/20/2011,02/20/2011,02/20/2011 10:13:25 PM,02/20/2011 10:13:36 PM,02/20/2011 10:14:28 PM,02/20/2011 10:14:37 PM,02/20/2011 10:20:37 PM,02/20/2011 10:40:33 PM,02/20/2011 10:49:46 PM,Code 2 Transport,02/20/2011 11:03:44 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",110510370-59 -120990340,E38,12032952,Structure Fire,04/08/2012,04/08/2012,04/08/2012 10:22:38 PM,04/08/2012 10:22:38 PM,04/08/2012 10:22:43 PM,04/08/2012 10:22:50 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 10:26:01 PM,BUCHANAN ST/FELL ST,SF,94102,B02,36,3423,3,3,3,false,Alarm,1,ENGINE,2,2,5,Hayes Valley,"(37.7753173082714, -122.427724046608)",120990340-E38 -111670232,67,11055175,Traffic Collision,06/16/2011,06/16/2011,06/16/2011 06:32:18 PM,06/16/2011 06:34:05 PM,06/16/2011 06:36:01 PM,06/16/2011 06:36:15 PM,06/16/2011 06:47:24 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/16/2011 06:47:44 PM,200 Block of MONTEREY BLVD,SF,94131,B10,32,5746,2,2,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7316806819241, -122.440884413372)",111670232-67 -160631654,77,16025062,Medical Incident,03/03/2016,03/03/2016,03/03/2016 12:30:55 PM,03/03/2016 12:30:55 PM,03/03/2016 12:31:31 PM,03/03/2016 12:32:00 PM,03/03/2016 12:40:24 PM,03/03/2016 01:17:55 PM,03/03/2016 01:27:33 PM,Code 2 Transport,03/03/2016 01:41:44 PM,1500 Block of MARKET ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",160631654-77 -113580018,E07,11118870,Medical Incident,12/24/2011,12/23/2011,12/24/2011 12:48:39 AM,12/24/2011 12:49:54 AM,12/24/2011 12:50:09 AM,12/24/2011 12:51:30 AM,12/24/2011 12:57:28 AM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 12:57:29 AM,3100 Block of 17TH ST,SF,94110,B02,7,5246,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7635485886261, -122.4167748425)",113580018-E07 -160200215,70,16007851,Medical Incident,01/20/2016,01/19/2016,01/20/2016 02:08:19 AM,01/20/2016 02:09:30 AM,01/20/2016 02:10:31 AM,01/20/2016 02:12:49 AM,01/20/2016 02:25:59 AM,01/20/2016 02:36:36 AM,01/20/2016 02:45:57 AM,Code 2 Transport,01/20/2016 04:00:56 AM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160200215-70 -160580065,89,16022943,Medical Incident,02/27/2016,02/26/2016,02/27/2016 12:25:12 AM,02/27/2016 12:26:48 AM,02/27/2016 12:27:44 AM,02/27/2016 12:28:00 AM,02/27/2016 12:43:53 AM,02/27/2016 01:16:04 AM,02/27/2016 01:38:18 AM,Code 2 Transport,02/27/2016 02:11:49 AM,500 Block of OFARRELL ST,San Francisco,94102,B04,3,1544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",160580065-89 -123040268,E36,12100970,Structure Fire,10/30/2012,10/30/2012,10/30/2012 06:22:07 PM,10/30/2012 06:23:06 PM,10/30/2012 06:23:48 PM,04/25/2016 01:56:02 PM,10/30/2012 06:25:43 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/30/2012 06:29:06 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",123040268-E36 -130640267,67,13021496,Medical Incident,03/05/2013,03/05/2013,03/05/2013 04:43:11 PM,03/05/2013 04:45:16 PM,03/05/2013 04:45:56 PM,03/05/2013 04:46:30 PM,03/05/2013 04:50:00 PM,03/05/2013 05:01:31 PM,03/05/2013 05:17:52 PM,Code 2 Transport,03/05/2013 05:28:46 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",130640267-67 -131740372,E08,13059223,Medical Incident,06/23/2013,06/23/2013,06/23/2013 11:41:17 PM,06/23/2013 11:42:08 PM,06/23/2013 11:42:31 PM,06/23/2013 11:44:23 PM,06/23/2013 11:45:26 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/23/2013 11:48:36 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131740372-E08 -110020165,KM01,11000649,Medical Incident,01/02/2011,01/02/2011,01/02/2011 12:29:00 PM,01/02/2011 12:29:27 PM,01/02/2011 12:29:38 PM,01/02/2011 12:33:04 PM,01/02/2011 12:36:36 PM,01/02/2011 12:41:41 PM,01/02/2011 12:54:24 PM,Code 2 Transport,01/02/2011 01:21:30 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,2,2,false,,1,PRIVATE,2,2,9,Mission,"(37.7661343875141, -122.421935077177)",110020165-KM01 -111190368,T06,11039428,Electrical Hazard,04/29/2011,04/29/2011,04/29/2011 11:52:04 PM,04/29/2011 11:53:02 PM,04/29/2011 11:53:20 PM,04/29/2011 11:54:57 PM,04/29/2011 11:56:19 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/30/2011 12:06:14 AM,200 Block of DUBOCE AVE,SF,94103,B02,6,5127,3,3,3,false,,1,TRUCK,2,2,8,Mission,"(37.7696279240777, -122.425442212445)",111190368-T06 -131760264,AM02,13059773,Medical Incident,06/25/2013,06/25/2013,06/25/2013 03:47:59 PM,06/25/2013 03:50:21 PM,06/25/2013 03:50:48 PM,06/25/2013 03:51:27 PM,06/25/2013 03:54:10 PM,06/25/2013 04:21:09 PM,06/25/2013 04:29:53 PM,Code 2 Transport,06/25/2013 05:09:28 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",131760264-AM02 -160672211,61,16026814,Medical Incident,03/07/2016,03/07/2016,03/07/2016 04:03:26 PM,03/07/2016 04:06:54 PM,03/07/2016 04:07:13 PM,03/07/2016 04:07:21 PM,03/07/2016 04:12:30 PM,03/07/2016 04:42:57 PM,03/07/2016 04:47:53 PM,Code 2 Transport,03/07/2016 05:08:18 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160672211-61 -160373959,86,16014956,Traffic Collision,02/06/2016,02/06/2016,02/06/2016 10:09:49 PM,02/06/2016 10:09:49 PM,02/06/2016 10:10:40 PM,02/06/2016 10:10:49 PM,02/06/2016 10:14:56 PM,02/06/2016 10:31:05 PM,02/06/2016 10:38:22 PM,Code 2 Transport,02/06/2016 11:29:15 PM,3RD ST/LA SALLE AV,San Francisco,94124,B10,25,6467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7371695334489, -122.389864463351)",160373959-86 -131100157,54,13036987,Medical Incident,04/20/2013,04/20/2013,04/20/2013 11:20:25 AM,04/20/2013 11:23:05 AM,04/20/2013 11:23:17 AM,04/20/2013 11:23:54 AM,04/20/2013 11:37:01 AM,04/20/2013 12:57:14 PM,04/20/2013 12:57:19 PM,Code 2 Transport,04/20/2013 01:02:22 PM,300 Block of 28TH AVE,SF,94121,B07,14,7227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7828027305271, -122.48822032656)",131100157-54 -140900078,B01,14030214,Alarms,03/31/2014,03/30/2014,03/31/2014 07:40:53 AM,03/31/2014 07:42:38 AM,03/31/2014 07:45:18 AM,03/31/2014 07:49:31 AM,03/31/2014 07:50:01 AM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Fire,03/31/2014 08:00:18 AM,1900 Block of HYDE ST,SAN FRANCISCO,94109,B01,41,1611,3,3,3,false,Alarm,1,CHIEF,2,1,3,Russian Hill,"(37.7988211829314, -122.418902323417)",140900078-B01 -160101309,AM08,16004012,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:37:04 AM,01/10/2016 11:38:06 AM,01/10/2016 11:38:43 AM,01/10/2016 11:39:19 AM,01/10/2016 11:44:42 AM,01/10/2016 12:01:31 PM,01/10/2016 12:18:09 PM,Code 2 Transport,01/10/2016 12:40:27 PM,700 Block of JACKSON ST,San Francisco,94133,B01,2,1312,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7960100024932, -122.4072125994)",160101309-AM08 -160363585,53,16014414,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:07:11 PM,02/05/2016 08:10:27 PM,02/05/2016 08:10:40 PM,02/05/2016 08:10:51 PM,02/05/2016 08:14:54 PM,02/05/2016 08:29:58 PM,02/05/2016 08:41:15 PM,Code 2 Transport,02/05/2016 09:25:21 PM,25TH ST/MISSION ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7506396511688, -122.418287870978)",160363585-53 -160092312,67,16003706,Medical Incident,01/09/2016,01/09/2016,01/09/2016 04:05:25 PM,01/09/2016 04:05:25 PM,01/09/2016 04:05:40 PM,01/09/2016 04:08:18 PM,01/09/2016 04:14:36 PM,01/09/2016 04:42:22 PM,01/09/2016 04:52:48 PM,Code 2 Transport,01/09/2016 05:32:00 PM,CALIFORNIA ST/POLK ST,San Francisco,94109,B04,41,1635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7905782582579, -122.420687383115)",160092312-67 -160461892,61,16018529,Medical Incident,02/15/2016,02/15/2016,02/15/2016 01:58:28 PM,02/15/2016 01:58:28 PM,02/15/2016 01:59:23 PM,02/15/2016 01:59:36 PM,02/15/2016 02:07:32 PM,02/15/2016 02:20:01 PM,02/15/2016 02:45:23 PM,Code 2 Transport,02/15/2016 03:20:01 PM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160461892-61 -160773937,79,16030792,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:08:32 PM,03/17/2016 09:09:11 PM,03/17/2016 09:10:34 PM,03/17/2016 09:10:44 PM,03/17/2016 09:17:03 PM,03/17/2016 09:28:31 PM,03/17/2016 09:40:05 PM,Code 2 Transport,03/17/2016 10:02:04 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160773937-79 -110300087,58,11009774,Medical Incident,01/30/2011,01/29/2011,01/30/2011 06:16:58 AM,01/30/2011 06:18:16 AM,01/30/2011 06:19:25 AM,01/30/2011 06:19:42 AM,04/25/2016 02:06:21 PM,01/30/2011 06:27:54 AM,01/30/2011 06:45:49 AM,Code 2 Transport,01/30/2011 07:06:45 AM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,2,2,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",110300087-58 -160432835,76,16017404,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:42:48 PM,02/12/2016 05:44:15 PM,02/12/2016 05:44:32 PM,02/12/2016 05:44:39 PM,02/12/2016 05:50:57 PM,02/12/2016 06:05:41 PM,02/12/2016 06:08:53 PM,Code 2 Transport,02/12/2016 07:00:26 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160432835-76 -102530359,58,10080089,Medical Incident,09/10/2010,09/10/2010,09/10/2010 09:04:11 PM,09/10/2010 09:05:35 PM,09/10/2010 09:06:15 PM,09/10/2010 09:06:27 PM,09/10/2010 09:13:10 PM,09/10/2010 09:24:29 PM,09/10/2010 09:43:55 PM,Code 2 Transport,09/10/2010 10:12:23 PM,1200 Block of 38TH AVE,SF,94122,B08,23,7565,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7636074446689, -122.497481002564)",102530359-58 -102630067,94,10083122,Traffic Collision,09/20/2010,09/19/2010,09/20/2010 07:57:51 AM,09/20/2010 07:59:26 AM,09/20/2010 08:00:13 AM,04/25/2016 02:08:30 PM,09/20/2010 08:08:26 AM,09/20/2010 08:23:22 AM,09/20/2010 08:32:36 AM,Code 2 Transport,09/20/2010 09:03:47 AM,22ND ST/HARRISON ST,SF,94110,B06,7,545,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7558325113453, -122.412197892408)",102630067-94 -111390103,E03,11046140,Medical Incident,05/19/2011,05/19/2011,05/19/2011 10:01:47 AM,05/19/2011 10:03:34 AM,05/19/2011 10:03:55 AM,05/19/2011 10:08:17 AM,05/19/2011 10:10:05 AM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Other,05/19/2011 10:17:01 AM,900 Block of POST ST,SF,94109,B04,3,1641,1,1,2,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7871735250079, -122.417641342653)",111390103-E03 -120700110,E42,12023203,Medical Incident,03/10/2012,03/10/2012,03/10/2012 09:16:59 AM,03/10/2012 09:17:35 AM,03/10/2012 09:17:49 AM,03/10/2012 09:19:08 AM,03/10/2012 09:21:01 AM,04/25/2016 01:59:44 PM,03/10/2012 09:44:03 AM,Other,03/10/2012 09:44:08 AM,0 Block of MERCURY ST,SF,94124,B10,42,6447,3,2,2,true,Non Life-threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7319360833699, -122.401511978709)",120700110-E42 -132270039,E22,13076506,Odor (Strange / Unknown),08/15/2013,08/14/2013,08/15/2013 03:51:02 AM,08/15/2013 03:51:50 AM,08/15/2013 03:52:25 AM,08/15/2013 03:54:53 AM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,Other,08/15/2013 04:28:19 AM,1400 Block of 17TH AVE,SF,94122,B08,22,7371,3,3,3,false,Alarm,1,ENGINE,4,8,7,Inner Sunset,"(37.7608577152876, -122.474858703379)",132270039-E22 -160690565,88,16027354,Medical Incident,03/09/2016,03/08/2016,03/09/2016 07:14:57 AM,03/09/2016 07:17:03 AM,03/09/2016 07:17:48 AM,03/09/2016 07:18:00 AM,03/09/2016 07:28:59 AM,03/09/2016 07:38:43 AM,03/09/2016 07:58:38 AM,Code 2 Transport,03/09/2016 08:31:59 AM,100 Block of COLERIDGE ST,San Francisco,94110,B06,11,5662,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",160690565-88 -160851868,AM02,16033789,Medical Incident,03/25/2016,03/25/2016,03/25/2016 01:14:54 PM,03/25/2016 01:16:50 PM,03/25/2016 01:18:36 PM,03/25/2016 01:19:01 PM,03/25/2016 01:28:53 PM,03/25/2016 01:45:22 PM,03/25/2016 02:28:09 PM,Code 2 Transport,03/25/2016 02:49:48 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",160851868-AM02 -110340264,T13,11011228,Alarms,02/03/2011,02/03/2011,02/03/2011 04:19:02 PM,02/03/2011 04:20:41 PM,02/03/2011 04:21:17 PM,02/03/2011 04:23:19 PM,02/03/2011 04:25:57 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,02/03/2011 04:34:59 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",110340264-T13 -160190045,71,16007439,Medical Incident,01/19/2016,01/18/2016,01/19/2016 12:16:01 AM,01/19/2016 12:19:01 AM,01/19/2016 12:19:19 AM,01/19/2016 12:20:20 AM,01/19/2016 12:24:24 AM,01/19/2016 12:42:16 AM,01/19/2016 12:48:33 AM,Code 2 Transport,01/19/2016 01:20:53 AM,4000 Block of 18TH ST,San Francisco,94114,B05,6,5415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7609766090845, -122.434457353955)",160190045-71 -122420131,AM02,12080004,Medical Incident,08/29/2012,08/29/2012,08/29/2012 10:36:48 AM,08/29/2012 10:38:09 AM,08/29/2012 10:38:24 AM,08/29/2012 10:39:13 AM,08/29/2012 10:41:33 AM,08/29/2012 10:56:23 AM,08/29/2012 11:51:01 AM,Code 2 Transport,08/29/2012 11:01:48 AM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,1,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",122420131-AM02 -132720323,AM22,13092573,Medical Incident,09/29/2013,09/29/2013,09/29/2013 08:06:22 PM,09/29/2013 08:06:44 PM,09/29/2013 08:07:03 PM,09/29/2013 08:07:49 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/29/2013 08:12:07 PM,10TH ST/HOWARD ST,SF,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7740433259374, -122.414367692219)",132720323-AM22 -160191648,75,16007628,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:35:55 PM,01/19/2016 12:37:12 PM,01/19/2016 12:37:54 PM,01/19/2016 12:38:17 PM,01/19/2016 12:47:05 PM,01/19/2016 01:17:18 PM,01/19/2016 01:39:07 PM,Code 2 Transport,01/19/2016 02:33:36 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160191648-75 -102410261,KM14,10076085,Medical Incident,08/29/2010,08/29/2010,08/29/2010 05:58:08 PM,08/29/2010 05:58:52 PM,08/29/2010 05:59:16 PM,08/29/2010 05:59:48 PM,08/29/2010 06:01:25 PM,08/29/2010 06:09:08 PM,08/29/2010 06:12:34 PM,Code 2 Transport,08/29/2010 06:37:32 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,1,2,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",102410261-KM14 -160331990,84,16013019,Medical Incident,02/02/2016,02/02/2016,02/02/2016 02:27:01 PM,02/02/2016 02:27:57 PM,02/02/2016 02:28:33 PM,02/02/2016 02:28:50 PM,02/02/2016 02:36:53 PM,02/02/2016 02:57:48 PM,02/02/2016 03:01:18 PM,Code 2 Transport,02/02/2016 03:45:11 PM,GEARY BL/BLAKE ST,San Francisco,94118,B05,10,4454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7819841151425, -122.451119860337)",160331990-84 -103570176,E18,10114567,Medical Incident,12/23/2010,12/23/2010,12/23/2010 12:52:38 PM,12/23/2010 12:54:19 PM,12/23/2010 12:54:57 PM,12/23/2010 12:56:10 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/23/2010 12:56:44 PM,19TH AV/RIVERA ST,SF,94116,B08,40,7433,3,3,3,true,,1,ENGINE,5,8,4,West of Twin Peaks,"(37.7467820382349, -122.475902020366)",103570176-E18 -120820384,83,12027399,Medical Incident,03/22/2012,03/22/2012,03/22/2012 10:23:27 PM,03/22/2012 10:24:25 PM,03/22/2012 10:25:23 PM,03/22/2012 10:25:35 PM,03/22/2012 10:37:14 PM,03/22/2012 10:52:23 PM,03/22/2012 11:23:11 PM,Code 3 Transport,03/22/2012 11:42:36 PM,0 Block of SANTOS ST,SF,94134,B09,43,6244,3,3,3,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.711332789313, -122.41867937435)",120820384-83 -102950335,E28,10094210,Medical Incident,10/22/2010,10/22/2010,10/22/2010 07:04:18 PM,10/22/2010 07:04:54 PM,10/22/2010 07:05:27 PM,10/22/2010 07:06:33 PM,10/22/2010 07:08:30 PM,04/25/2016 02:07:59 PM,04/25/2016 02:07:59 PM,Other,10/22/2010 07:17:24 PM,400 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8072284650361, -122.416449199064)",102950335-E28 -131570338,85,13053364,Medical Incident,06/06/2013,06/06/2013,06/06/2013 06:42:27 PM,06/06/2013 06:44:50 PM,06/06/2013 06:46:37 PM,06/06/2013 06:46:45 PM,06/06/2013 06:53:53 PM,06/06/2013 07:21:15 PM,06/06/2013 07:44:34 PM,Code 2 Transport,06/06/2013 08:17:34 PM,500 Block of MOSCOW ST,SF,94112,B09,43,6156,2,2,2,false,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7189576969244, -122.42945072491)",131570338-85 -120030064,87,12000938,Medical Incident,01/03/2012,01/02/2012,01/03/2012 05:19:14 AM,01/03/2012 05:20:53 AM,01/03/2012 05:22:17 AM,01/03/2012 05:22:54 AM,01/03/2012 05:42:03 AM,01/03/2012 05:42:10 AM,04/25/2016 02:00:49 PM,Code 2 Transport,01/03/2012 06:07:03 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",120030064-87 -112980065,E19,11098777,Medical Incident,10/25/2011,10/25/2011,10/25/2011 08:20:09 AM,10/25/2011 08:20:54 AM,10/25/2011 08:21:37 AM,10/25/2011 08:23:17 AM,10/25/2011 08:27:24 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 08:40:46 AM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",112980065-E19 -102340054,B03,10073518,Structure Fire,08/22/2010,08/21/2010,08/22/2010 04:07:22 AM,08/22/2010 04:07:58 AM,08/22/2010 04:08:16 AM,08/22/2010 04:09:41 AM,08/22/2010 04:12:45 AM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/22/2010 04:14:45 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,,1,CHIEF,7,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",102340054-B03 -112360355,72,11078038,Medical Incident,08/24/2011,08/24/2011,08/24/2011 11:04:53 PM,08/24/2011 11:06:12 PM,08/24/2011 11:06:23 PM,08/24/2011 11:06:34 PM,04/25/2016 02:03:01 PM,08/24/2011 11:11:46 PM,08/24/2011 11:25:24 PM,Code 2 Transport,08/24/2011 11:38:55 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7316639968394, -122.38316735998)",112360355-72 -160100330,89,16003893,Medical Incident,01/10/2016,01/09/2016,01/10/2016 02:25:47 AM,01/10/2016 02:27:02 AM,01/10/2016 02:28:07 AM,01/10/2016 02:28:12 AM,01/10/2016 02:33:33 AM,01/10/2016 02:45:34 AM,01/10/2016 03:01:53 AM,Code 2 Transport,01/10/2016 03:23:36 AM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",160100330-89 -112160414,88,11071542,Medical Incident,08/04/2011,08/04/2011,08/04/2011 11:20:57 PM,08/04/2011 11:21:37 PM,08/04/2011 11:22:03 PM,08/04/2011 11:23:04 PM,08/04/2011 11:30:28 PM,08/04/2011 11:38:12 PM,08/05/2011 12:07:15 AM,Code 2 Transport,08/05/2011 12:40:09 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",112160414-88 -160761653,52,16030131,Medical Incident,03/16/2016,03/16/2016,03/16/2016 12:16:28 PM,03/16/2016 12:17:49 PM,03/16/2016 12:19:05 PM,03/16/2016 12:19:13 PM,03/16/2016 12:31:18 PM,03/16/2016 12:53:56 PM,03/16/2016 01:20:33 PM,Code 2 Transport,03/16/2016 01:57:12 PM,1900 Block of 14TH AVE,San Francisco,94116,B08,40,7368,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.751629099333, -122.47047025628)",160761653-52 -131940285,E36,13066045,Medical Incident,07/13/2013,07/13/2013,07/13/2013 07:32:24 PM,07/13/2013 07:34:32 PM,07/13/2013 07:34:58 PM,07/13/2013 07:37:03 PM,07/13/2013 07:38:58 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 07:51:55 PM,0 Block of 8TH ST,SF,94103,B02,36,2318,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7778103407202, -122.413699499217)",131940285-E36 -130420031,55,13014201,Medical Incident,02/11/2013,02/10/2013,02/11/2013 02:56:05 AM,02/11/2013 02:56:25 AM,02/11/2013 02:56:42 AM,02/11/2013 02:56:57 AM,02/11/2013 03:02:52 AM,02/11/2013 03:17:02 AM,02/11/2013 03:38:45 AM,Code 2 Transport,02/11/2013 04:10:04 AM,GREAT HY/LAWTON ST,SF,94122,B08,23,7724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7565512306025, -122.508902542437)",130420031-55 -160891163,KM13,16035280,Medical Incident,03/29/2016,03/29/2016,03/29/2016 10:04:59 AM,03/29/2016 10:05:54 AM,03/29/2016 10:08:34 AM,03/29/2016 10:08:36 AM,03/29/2016 10:19:16 AM,03/29/2016 10:43:11 AM,03/29/2016 10:58:07 AM,Code 2 Transport,03/29/2016 11:21:45 AM,3RD ST/HOWARD ST,San Francisco,94105,B03,1,2177,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",160891163-KM13 -132380013,E03,13080157,Medical Incident,08/26/2013,08/25/2013,08/26/2013 01:01:33 AM,08/26/2013 01:03:22 AM,08/26/2013 01:04:23 AM,08/26/2013 01:06:01 AM,08/26/2013 01:09:05 AM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Other,08/26/2013 01:14:24 AM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",132380013-E03 -140620203,KM14,14020961,Medical Incident,03/03/2014,03/03/2014,03/03/2014 02:08:22 PM,03/03/2014 02:09:27 PM,03/03/2014 02:13:20 PM,03/03/2014 02:13:50 PM,03/03/2014 02:19:22 PM,03/03/2014 02:34:34 PM,03/03/2014 03:15:45 PM,Code 2 Transport,03/03/2014 03:24:11 PM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",140620203-KM14 -112860447,E36,11094963,Medical Incident,10/13/2011,10/13/2011,10/13/2011 10:03:49 PM,10/13/2011 10:03:56 PM,10/13/2011 10:04:07 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/13/2011 10:06:04 PM,400 Block of FULTON ST,SF,94102,B02,36,3264,3,2,2,true,,1,ENGINE,2,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",112860447-E36 -110500373,RS1,11016685,Traffic Collision,02/19/2011,02/19/2011,02/19/2011 08:43:22 PM,02/19/2011 08:44:08 PM,02/19/2011 08:44:31 PM,02/19/2011 08:45:59 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 08:46:21 PM,MARKET ST/6TH ST,SF,94102,B03,1,2248,3,3,3,false,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7822305756448, -122.410292026777)",110500373-RS1 -111040126,E08,11034425,Medical Incident,04/14/2011,04/14/2011,04/14/2011 11:06:30 AM,04/14/2011 11:06:59 AM,04/14/2011 11:07:13 AM,04/14/2011 11:07:51 AM,04/14/2011 11:09:55 AM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/14/2011 11:26:24 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",111040126-E08 -160590504,KM03,16023382,Medical Incident,02/28/2016,02/27/2016,02/28/2016 03:55:04 AM,02/28/2016 03:55:04 AM,02/28/2016 03:56:17 AM,02/28/2016 03:56:53 AM,02/28/2016 04:01:48 AM,02/28/2016 04:39:52 AM,02/28/2016 04:54:59 AM,Code 2 Transport,02/28/2016 05:32:45 AM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",160590504-KM03 -160860266,72,16034049,Medical Incident,03/26/2016,03/25/2016,03/26/2016 01:54:46 AM,03/26/2016 01:58:00 AM,03/26/2016 01:58:32 AM,03/26/2016 01:59:30 AM,03/26/2016 02:07:30 AM,03/26/2016 02:37:04 AM,03/26/2016 02:47:38 AM,Code 2 Transport,03/26/2016 03:39:21 AM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",160860266-72 -130450282,55,13015337,Medical Incident,02/14/2013,02/14/2013,02/14/2013 03:35:23 PM,02/14/2013 03:37:27 PM,02/14/2013 03:38:31 PM,04/25/2016 01:54:18 PM,02/14/2013 03:56:20 PM,02/14/2013 04:20:19 PM,02/14/2013 04:38:07 PM,Code 2 Transport,02/14/2013 05:07:11 PM,700 Block of HOWARD ST,SF,94103,B03,1,2177,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7841836756047, -122.401637180525)",130450282-55 -102410047,E06,10075913,Medical Incident,08/29/2010,08/28/2010,08/29/2010 03:22:13 AM,08/29/2010 03:22:55 AM,08/29/2010 03:24:09 AM,08/29/2010 03:25:38 AM,08/29/2010 03:26:59 AM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/29/2010 03:40:21 AM,200 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.766821331685, -122.428814858006)",102410047-E06 -133470293,B01,13117837,Alarms,12/13/2013,12/13/2013,12/13/2013 05:27:57 PM,12/13/2013 05:29:49 PM,12/13/2013 05:30:19 PM,12/13/2013 05:31:31 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,04/25/2016 01:49:17 PM,Other,12/13/2013 05:32:08 PM,4TH ST/CHANNEL ST,SF,,B03,8,2225,3,3,3,false,Alarm,1,CHIEF,4,3,6,None,"(37.7750268633971, -122.392346204303)",133470293-B01 -123290199,E32,12109434,Other,11/24/2012,11/24/2012,11/24/2012 03:04:20 PM,11/24/2012 03:04:59 PM,11/24/2012 03:05:08 PM,11/24/2012 03:06:06 PM,11/24/2012 03:08:25 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 04:02:55 PM,SAN JOSE AV/29TH ST,SF,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7439422420021, -122.422669446432)",123290199-E32 -102440033,E07,10076854,Structure Fire,09/01/2010,08/31/2010,09/01/2010 03:49:04 AM,09/01/2010 03:49:48 AM,09/01/2010 03:50:10 AM,09/01/2010 03:51:12 AM,09/01/2010 03:52:57 AM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Fire,09/01/2010 04:07:45 AM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7576217212029, -122.418887293065)",102440033-E07 -140680161,E11,14022993,Medical Incident,03/09/2014,03/09/2014,03/09/2014 01:21:23 PM,03/09/2014 01:22:16 PM,03/09/2014 01:22:55 PM,03/09/2014 01:24:02 PM,03/09/2014 01:36:02 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Patient Declined Transport,03/09/2014 01:36:08 PM,3100 Block of MISSION ST,SAN FRANCISCO,94110,B06,11,5624,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7474453071495, -122.418609719102)",140680161-E11 -120020017,KM15,12000594,Medical Incident,01/02/2012,01/01/2012,01/02/2012 01:15:26 AM,01/02/2012 01:16:32 AM,01/02/2012 01:16:58 AM,01/02/2012 01:17:35 AM,01/02/2012 01:29:41 AM,01/02/2012 02:11:37 AM,01/02/2012 02:11:42 AM,Code 2 Transport,01/02/2012 02:31:15 AM,100 Block of STEUART ST,SF,94105,B03,35,2111,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7926568376756, -122.39236449327)",120020017-KM15 -132290342,T02,13077430,Structure Fire,08/17/2013,08/17/2013,08/17/2013 07:20:41 PM,08/17/2013 07:20:41 PM,08/17/2013 07:23:15 PM,08/17/2013 07:24:50 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Other,08/17/2013 07:26:18 PM,COLUMBUS AV/UNION ST,SF,94133,B01,28,1334,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",132290342-T02 -123220157,T01,12107022,Alarms,11/17/2012,11/17/2012,11/17/2012 09:55:10 AM,11/17/2012 09:56:06 AM,11/17/2012 09:56:16 AM,11/17/2012 09:58:39 AM,11/17/2012 09:59:54 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 10:03:38 AM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",123220157-T01 -102490089,54,10078612,Medical Incident,09/06/2010,09/06/2010,09/06/2010 09:45:15 AM,09/06/2010 09:46:01 AM,09/06/2010 09:46:11 AM,09/06/2010 09:46:23 AM,09/06/2010 10:12:58 AM,09/06/2010 10:13:12 AM,09/06/2010 10:20:39 AM,Code 2 Transport,09/06/2010 10:46:41 AM,500 Block of 20TH AVE,SF,94121,B07,14,7165,3,2,2,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7774741918641, -122.479242659231)",102490089-54 -160111742,79,16004402,Medical Incident,01/11/2016,01/11/2016,01/11/2016 01:21:46 PM,01/11/2016 01:23:13 PM,01/11/2016 01:23:53 PM,01/11/2016 01:24:00 PM,01/11/2016 01:29:26 PM,01/11/2016 01:45:47 PM,01/11/2016 02:09:43 PM,Code 2 Transport,01/11/2016 02:45:17 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160111742-79 -120420197,E06,12014041,Alarms,02/11/2012,02/11/2012,02/11/2012 01:11:29 PM,02/11/2012 01:12:38 PM,02/11/2012 01:12:52 PM,02/11/2012 01:13:47 PM,02/11/2012 01:15:51 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 01:17:37 PM,300 Block of GUERRERO ST,SF,94103,B02,6,5235,3,3,3,true,Alarm,1,ENGINE,2,2,8,Mission,"(37.7656013077776, -122.424063077074)",120420197-E06 -131820217,E36,13062032,Medical Incident,07/01/2013,07/01/2013,07/01/2013 01:12:50 PM,07/01/2013 01:13:32 PM,07/01/2013 01:13:51 PM,07/01/2013 01:15:43 PM,07/01/2013 01:18:24 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,07/01/2013 01:33:23 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",131820217-E36 -111560113,T05,11051525,Medical Incident,06/05/2011,06/05/2011,06/05/2011 08:18:00 AM,06/05/2011 08:18:37 AM,06/05/2011 08:18:46 AM,06/05/2011 08:19:41 AM,06/05/2011 08:20:59 AM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/05/2011 08:31:42 AM,1100 Block of MCALLISTER ST,SF,94117,B05,5,3534,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7786327618285, -122.431321447148)",111560113-T05 -111230387,E01,11040806,Medical Incident,05/03/2011,05/03/2011,05/03/2011 10:23:29 PM,05/03/2011 10:24:00 PM,05/03/2011 10:24:34 PM,05/03/2011 10:25:21 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 10:28:06 PM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",111230387-E01 -102700294,AM08,10085745,Medical Incident,09/27/2010,09/27/2010,09/27/2010 05:26:06 PM,09/27/2010 05:27:56 PM,09/27/2010 05:28:29 PM,09/27/2010 05:29:02 PM,04/25/2016 02:08:23 PM,09/27/2010 05:42:41 PM,09/27/2010 05:53:33 PM,Code 2 Transport,09/27/2010 06:16:50 PM,100 Block of ALBION ST,SF,94110,B02,7,5247,3,3,3,false,,1,PRIVATE,2,2,8,Mission,"(37.7636369573177, -122.422805752252)",102700294-AM08 -160281389,61,16011049,Medical Incident,01/28/2016,01/28/2016,01/28/2016 11:23:28 AM,01/28/2016 11:26:43 AM,01/28/2016 11:26:51 AM,01/28/2016 11:27:03 AM,01/28/2016 11:43:03 AM,01/28/2016 12:04:06 PM,01/28/2016 12:10:43 PM,Code 2 Transport,01/28/2016 12:47:18 PM,0 Block of GEARY ST,San Francisco,94108,B01,1,1241,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",160281389-61 -131570316,68,13053343,Traffic Collision,06/06/2013,06/06/2013,06/06/2013 05:32:45 PM,06/06/2013 05:32:49 PM,06/06/2013 05:33:02 PM,06/06/2013 05:33:45 PM,06/06/2013 05:58:17 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Patient Declined Transport,06/06/2013 06:27:25 PM,MASONIC AV/OAK ST,SF,94117,B05,21,4465,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Golden Gate Park,"(37.7720803934485, -122.445716664284)",131570316-68 -131030348,89,13034736,Medical Incident,04/13/2013,04/13/2013,04/13/2013 09:44:34 PM,04/13/2013 09:46:57 PM,04/13/2013 09:48:43 PM,04/13/2013 09:48:51 PM,04/13/2013 10:01:43 PM,04/13/2013 10:33:32 PM,04/13/2013 10:47:38 PM,Code 2 Transport,04/13/2013 11:30:19 PM,200 Block of CLAY ST,SF,94111,B01,13,1133,2,2,2,false,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7952923975164, -122.398573051955)",131030348-89 -131360448,AM10,13046100,Medical Incident,05/16/2013,05/16/2013,05/16/2013 10:58:18 PM,05/16/2013 11:00:10 PM,05/16/2013 11:00:47 PM,05/16/2013 11:03:32 PM,05/16/2013 11:07:59 PM,05/16/2013 11:25:07 PM,05/16/2013 11:28:24 PM,Code 2 Transport,05/17/2013 12:13:58 AM,2300 Block of SACRAMENTO ST,SF,94115,B04,38,3435,3,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7900938901936, -122.431549817415)",131360448-AM10 -113200066,92,11106197,Medical Incident,11/16/2011,11/15/2011,11/16/2011 07:45:32 AM,11/16/2011 07:47:00 AM,11/16/2011 07:47:22 AM,11/16/2011 07:47:33 AM,11/16/2011 07:55:30 AM,11/16/2011 08:11:01 AM,11/16/2011 08:23:51 AM,Code 2 Transport,11/16/2011 08:47:20 AM,6TH ST/CLEMENTINA ST,SF,94103,B03,1,2253,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.778942761412, -122.406162859193)",113200066-92 -133100027,E29,13105265,Other,11/06/2013,11/05/2013,11/06/2013 03:51:48 AM,11/06/2013 03:52:54 AM,11/06/2013 03:53:11 AM,11/06/2013 03:54:38 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/06/2013 03:58:49 AM,10TH ST/BRYANT ST,SF,94103,B02,29,2345,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7703485160634, -122.409735890482)",133100027-E29 -140050090,KM07,14001727,Medical Incident,01/05/2014,01/04/2014,01/05/2014 07:16:54 AM,01/05/2014 07:17:32 AM,01/05/2014 07:17:44 AM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 07:34:05 AM,HYDE ST/MARKET ST,SF,94103,B02,36,1646,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",140050090-KM07 -160473692,72,16019130,Medical Incident,02/16/2016,02/16/2016,02/16/2016 09:23:14 PM,02/16/2016 09:24:50 PM,02/16/2016 09:25:18 PM,02/16/2016 09:25:43 PM,02/16/2016 09:27:38 PM,02/16/2016 09:49:15 PM,02/16/2016 09:53:15 PM,Code 2 Transport,02/16/2016 10:32:28 PM,600 Block of SUTTER ST,San Francisco,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",160473692-72 -112900182,96,11096212,Medical Incident,10/17/2011,10/17/2011,10/17/2011 12:54:44 PM,10/17/2011 12:56:14 PM,10/17/2011 12:57:25 PM,10/17/2011 12:58:00 PM,10/17/2011 01:09:40 PM,10/17/2011 01:19:05 PM,10/17/2011 01:44:27 PM,Code 2 Transport,10/17/2011 02:06:52 PM,0 Block of CLAY ST,SF,94111,B01,13,1133,1,1,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.795488462612, -122.396159020859)",112900182-96 -112190062,T10,11072306,Citizen Assist / Service Call,08/07/2011,08/06/2011,08/07/2011 07:04:00 AM,08/07/2011 07:05:31 AM,08/07/2011 07:06:10 AM,08/07/2011 07:07:36 AM,08/07/2011 07:09:41 AM,04/25/2016 02:03:17 PM,04/25/2016 02:03:17 PM,Other,08/07/2011 07:26:02 AM,2500 Block of SUTTER ST,SF,94115,B05,10,4262,3,3,3,false,,1,TRUCK,2,5,5,Japantown,"(37.7848770596387, -122.442348914658)",112190062-T10 -160122996,AM06,16004884,Medical Incident,01/12/2016,01/12/2016,01/12/2016 06:13:08 PM,01/12/2016 06:14:47 PM,01/12/2016 06:19:21 PM,01/12/2016 06:19:21 PM,01/12/2016 06:19:21 PM,01/12/2016 07:22:42 PM,01/12/2016 07:23:35 PM,Code 2 Transport,01/12/2016 08:09:17 PM,TURK BL/STANYAN BL,San Francisco,94118,B07,21,4557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,1,Lone Mountain/USF,"(37.7775992781141, -122.455216941832)",160122996-AM06 -121570102,AM16,12051882,Medical Incident,06/05/2012,06/05/2012,06/05/2012 09:24:12 AM,06/05/2012 09:25:21 AM,06/05/2012 09:25:46 AM,06/05/2012 09:26:27 AM,06/05/2012 09:34:57 AM,06/05/2012 09:53:10 AM,06/05/2012 10:11:20 AM,Code 2 Transport,06/05/2012 10:44:34 AM,400 Block of ATHENS ST,SF,94112,B09,43,6156,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7208342283008, -122.428956362457)",121570102-AM16 -103400134,E16,10108792,Medical Incident,12/06/2010,12/06/2010,12/06/2010 10:32:16 AM,12/06/2010 10:32:51 AM,12/06/2010 10:33:35 AM,12/06/2010 10:35:58 AM,12/06/2010 10:39:39 AM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/06/2010 10:57:14 AM,3100 Block of SACRAMENTO ST,SF,94115,B04,10,4264,3,3,3,true,,1,ENGINE,2,4,2,Pacific Heights,"(37.7885212285579, -122.444775114678)",103400134-E16 -112870317,T06,11095253,Alarms,10/14/2011,10/14/2011,10/14/2011 04:39:24 PM,10/14/2011 04:40:07 PM,10/14/2011 04:40:16 PM,10/14/2011 04:41:15 PM,10/14/2011 04:43:58 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 04:48:50 PM,200 Block of 14TH ST,SF,94103,B02,36,5215,3,3,3,false,,1,TRUCK,3,2,9,Mission,"(37.7683277432997, -122.418173796435)",112870317-T06 -102660183,E03,10084170,Industrial Accidents,09/23/2010,09/23/2010,09/23/2010 01:58:37 PM,09/23/2010 02:00:05 PM,09/23/2010 02:00:34 PM,09/23/2010 02:01:36 PM,09/23/2010 02:02:52 PM,04/25/2016 02:08:27 PM,04/25/2016 02:08:27 PM,Other,09/23/2010 02:14:39 PM,1100 Block of SUTTER ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7878072346953, -122.41927961906)",102660183-E03 -113260399,82,11108414,Medical Incident,11/22/2011,11/22/2011,11/22/2011 11:50:37 PM,11/22/2011 11:51:22 PM,11/22/2011 11:51:41 PM,11/22/2011 11:51:46 PM,11/22/2011 11:54:49 PM,11/23/2011 12:11:54 AM,11/23/2011 12:23:38 AM,Code 2 Transport,11/23/2011 12:37:11 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113260399-82 -112390227,89,11078904,Medical Incident,08/27/2011,08/27/2011,08/27/2011 02:58:34 PM,08/27/2011 02:58:50 PM,08/27/2011 02:59:06 PM,08/27/2011 03:01:07 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,04/25/2016 02:02:58 PM,Other,08/27/2011 03:02:22 PM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,3,3,3,true,,1,MEDIC,3,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",112390227-89 -132490418,68,13084231,Medical Incident,09/06/2013,09/06/2013,09/06/2013 11:47:50 PM,09/06/2013 11:48:02 PM,09/06/2013 11:49:48 PM,09/06/2013 11:50:14 PM,09/06/2013 11:59:55 PM,09/07/2013 12:29:16 AM,09/07/2013 12:49:37 AM,Code 2 Transport,09/07/2013 01:12:12 AM,2100 Block of FUNSTON AVE,SF,94116,B08,40,7348,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7480158894767, -122.469420379357)",132490418-68 -110970328,E10,11032252,Traffic Collision,04/07/2011,04/07/2011,04/07/2011 05:22:02 PM,04/07/2011 05:23:03 PM,04/07/2011 05:23:32 PM,04/07/2011 05:24:33 PM,04/07/2011 05:25:17 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Other,04/07/2011 05:51:06 PM,PRESIDIO AV/CALIFORNIA ST,SF,94118,B04,10,4336,2,2,2,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7872618525102, -122.446792778615)",110970328-E10 -112590193,E28,11085400,Medical Incident,09/16/2011,09/16/2011,09/16/2011 12:58:38 PM,09/16/2011 01:00:47 PM,09/16/2011 01:01:13 PM,09/16/2011 01:02:12 PM,09/16/2011 01:03:44 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/16/2011 01:10:46 PM,600 Block of LOMBARD ST,SF,94133,B01,28,1346,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8029850565766, -122.41222223167)",112590193-E28 -133190301,E07,13108480,Medical Incident,11/15/2013,11/15/2013,11/15/2013 05:35:18 PM,11/15/2013 05:36:50 PM,11/15/2013 05:37:29 PM,11/15/2013 05:38:46 PM,11/15/2013 05:41:54 PM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,04/25/2016 01:49:45 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",133190301-E07 -131540266,77,13052226,Medical Incident,06/03/2013,06/03/2013,06/03/2013 03:12:45 PM,06/03/2013 03:16:33 PM,06/03/2013 03:16:40 PM,06/03/2013 03:17:33 PM,06/03/2013 03:22:09 PM,06/03/2013 03:41:57 PM,06/03/2013 04:08:06 PM,Code 2 Transport,06/03/2013 04:28:58 PM,700 Block of WASHINGTON ST,SF,94108,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.795117116509, -122.406249619336)",131540266-77 -120880035,E31,12029066,Medical Incident,03/28/2012,03/27/2012,03/28/2012 02:57:35 AM,03/28/2012 02:58:37 AM,03/28/2012 02:58:52 AM,03/28/2012 03:01:15 AM,03/28/2012 03:03:05 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 03:06:00 AM,CALIFORNIA ST/PARK PRESIDIO BL,SF,94118,B07,31,7153,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7844488888819, -122.472585865925)",120880035-E31 -160720719,78,16028503,Medical Incident,03/12/2016,03/11/2016,03/12/2016 07:24:32 AM,03/12/2016 07:25:23 AM,03/12/2016 07:25:30 AM,03/12/2016 07:25:36 AM,03/12/2016 07:27:19 AM,03/12/2016 07:37:01 AM,03/12/2016 07:49:37 AM,Code 2 Transport,03/12/2016 08:55:38 AM,200 Block of POTRERO AV,San Francisco,94103,B02,29,2351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,10,Mission,"(37.7664275995867, -122.407678530455)",160720719-78 -120370303,E05,12012441,Medical Incident,02/06/2012,02/06/2012,02/06/2012 05:38:47 PM,02/06/2012 05:39:24 PM,02/06/2012 05:40:04 PM,02/06/2012 05:40:20 PM,02/06/2012 05:42:23 PM,04/25/2016 02:00:15 PM,04/25/2016 02:00:15 PM,Other,02/06/2012 05:51:53 PM,600 Block of GROVE ST,SF,94102,B02,5,3424,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7773373896226, -122.427287577929)",120370303-E05 -120040148,KM04,12001370,Medical Incident,01/04/2012,01/04/2012,01/04/2012 11:26:47 AM,01/04/2012 11:28:20 AM,01/04/2012 11:28:56 AM,01/04/2012 11:30:29 AM,01/04/2012 11:33:23 AM,01/04/2012 11:40:31 AM,01/04/2012 11:51:58 AM,Code 2 Transport,01/04/2012 12:12:20 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7683208883339, -122.4243245293)",120040148-KM04 -112820222,KM05,11093365,Medical Incident,10/09/2011,10/09/2011,10/09/2011 03:03:11 PM,10/09/2011 03:04:25 PM,10/09/2011 03:05:22 PM,10/09/2011 03:06:06 PM,04/25/2016 02:02:15 PM,10/09/2011 03:25:23 PM,10/09/2011 03:32:52 PM,Code 2 Transport,10/09/2011 04:04:33 PM,600 Block of LAGUNA ST,SF,94102,B02,36,3413,3,3,3,false,,1,PRIVATE,2,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",112820222-KM05 -160373132,86,16014838,Medical Incident,02/06/2016,02/06/2016,02/06/2016 06:23:24 PM,02/06/2016 06:24:54 PM,02/06/2016 06:25:13 PM,02/06/2016 06:25:27 PM,02/06/2016 06:29:31 PM,02/06/2016 06:37:52 PM,02/06/2016 06:42:44 PM,Code 2 Transport,02/06/2016 06:58:34 PM,1300 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7703725071371, -122.444508010123)",160373132-86 -122740019,E07,12090243,Medical Incident,09/30/2012,09/29/2012,09/30/2012 01:33:55 AM,09/30/2012 01:34:37 AM,09/30/2012 01:35:38 AM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,Other,09/30/2012 01:37:00 AM,22ND ST/FOLSOM ST,SF,94110,B06,7,5473,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7556994645677, -122.414387602502)",122740019-E07 -111330047,E14,11043959,Medical Incident,05/13/2011,05/12/2011,05/13/2011 06:52:19 AM,05/13/2011 06:52:40 AM,05/13/2011 06:53:37 AM,05/13/2011 06:54:40 AM,05/13/2011 06:58:56 AM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 07:13:04 AM,4900 Block of FULTON ST,SF,94121,B07,14,7211,3,3,3,true,,1,ENGINE,2,7,1,Outer Richmond,"(37.7725995783809, -122.484732077289)",111330047-E14 -111130014,D2,11037200,Structure Fire,04/23/2011,04/22/2011,04/23/2011 12:59:01 AM,04/23/2011 01:00:11 AM,04/23/2011 01:00:41 AM,04/23/2011 01:02:19 AM,04/23/2011 01:08:36 AM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/23/2011 01:26:37 AM,1900 Block of CLEMENT ST,SF,94121,B07,31,7164,3,3,3,false,,1,CHIEF,8,7,1,Outer Richmond,"(37.7822913773437, -122.480056750248)",111130014-D2 -130590306,93,13019911,Medical Incident,02/28/2013,02/28/2013,02/28/2013 06:40:37 PM,02/28/2013 06:41:57 PM,02/28/2013 06:42:07 PM,02/28/2013 06:42:13 PM,02/28/2013 06:52:02 PM,02/28/2013 07:07:43 PM,02/28/2013 07:40:11 PM,Code 2 Transport,02/28/2013 08:02:17 PM,0 Block of CHANCERY LN,SF,94112,B09,15,8333,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7169521307423, -122.442381200156)",130590306-93 -132680109,T02,13090925,Alarms,09/25/2013,09/25/2013,09/25/2013 10:06:27 AM,09/25/2013 10:09:11 AM,09/25/2013 10:10:08 AM,09/25/2013 10:10:27 AM,09/25/2013 10:15:21 AM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Other,09/25/2013 10:10:32 AM,300 Block of UNION ST,SF,94133,B01,28,1227,3,3,3,true,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8009314288084, -122.404823820896)",132680109-T02 -122180200,54,12072323,Medical Incident,08/05/2012,08/05/2012,08/05/2012 01:48:02 PM,08/05/2012 01:50:20 PM,08/05/2012 01:50:34 PM,08/05/2012 01:51:23 PM,08/05/2012 01:56:29 PM,08/05/2012 02:09:19 PM,08/05/2012 02:16:21 PM,Code 2 Transport,08/05/2012 02:44:04 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",122180200-54 -160061804,75,16002405,Medical Incident,01/06/2016,01/06/2016,01/06/2016 01:04:53 PM,01/06/2016 01:05:32 PM,01/06/2016 01:05:49 PM,01/06/2016 01:05:58 PM,01/06/2016 01:11:20 PM,01/06/2016 01:30:41 PM,01/06/2016 01:42:29 PM,Code 2 Transport,01/06/2016 03:00:20 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160061804-75 -121350295,E05,12044985,Medical Incident,05/14/2012,05/14/2012,05/14/2012 06:39:34 PM,05/14/2012 06:41:12 PM,05/14/2012 06:42:01 PM,05/14/2012 06:42:34 PM,05/14/2012 06:46:11 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 06:49:34 PM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7773515638882, -122.418857320448)",121350295-E05 -130100094,E01,13003356,Gas Leak (Natural and LP Gases),01/10/2013,01/10/2013,01/10/2013 09:36:27 AM,01/10/2013 09:36:52 AM,01/10/2013 09:37:59 AM,04/25/2016 01:54:53 PM,01/10/2013 09:38:57 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Fire,01/10/2013 09:57:36 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",130100094-E01 -140030133,RS1,14000997,Structure Fire,01/03/2014,01/03/2014,01/03/2014 09:27:26 AM,01/03/2014 09:27:52 AM,01/03/2014 09:28:48 AM,01/03/2014 09:31:30 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/03/2014 09:38:08 AM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,,3,3,false,Alarm,1,RESCUE SQUAD,9,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",140030133-RS1 -130360213,B04,13012389,Alarms,02/05/2013,02/05/2013,02/05/2013 02:03:17 PM,02/05/2013 02:05:31 PM,02/05/2013 02:05:48 PM,02/05/2013 02:09:37 PM,04/25/2016 01:54:26 PM,04/25/2016 01:54:26 PM,04/25/2016 01:54:26 PM,Other,02/05/2013 02:13:00 PM,0 Block of FUNSTON AVE,PR,94118,B99,51,4626,3,3,3,false,Alarm,1,CHIEF,3,7,2,Inner Richmond,"(37.786490510641, -122.472127294583)",130360213-B04 -122470147,E15,12081686,Outside Fire,09/03/2012,09/03/2012,09/03/2012 01:11:05 PM,09/03/2012 01:11:29 PM,09/03/2012 01:11:39 PM,09/03/2012 01:12:57 PM,09/03/2012 01:14:49 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 01:19:40 PM,800 Block of CAYUGA AVE,SF,94112,B09,15,8274,3,3,3,true,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.7244686448895, -122.438350027274)",122470147-E15 -121620044,RC1,12053509,Medical Incident,06/10/2012,06/09/2012,06/10/2012 02:16:43 AM,06/10/2012 02:16:43 AM,06/10/2012 02:17:10 AM,06/10/2012 02:19:01 AM,06/10/2012 02:23:11 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 02:27:08 AM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",121620044-RC1 -131010349,85,13034087,Medical Incident,04/11/2013,04/11/2013,04/11/2013 08:59:13 PM,04/11/2013 09:00:54 PM,04/11/2013 09:01:21 PM,04/11/2013 09:01:33 PM,04/11/2013 09:05:12 PM,04/11/2013 09:14:45 PM,04/11/2013 09:33:32 PM,Code 2 Transport,04/11/2013 10:05:37 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131010349-85 -130090238,E03,13003144,Alarms,01/09/2013,01/09/2013,01/09/2013 03:06:54 PM,01/09/2013 03:07:40 PM,01/09/2013 03:08:17 PM,01/09/2013 03:09:41 PM,01/09/2013 03:12:31 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 03:17:52 PM,100 Block of MAIDEN LN,SF,94108,B01,1,1316,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.788077566398, -122.405896351986)",130090238-E03 -132660079,68,13090162,Medical Incident,09/23/2013,09/22/2013,09/23/2013 07:39:50 AM,09/23/2013 07:40:24 AM,09/23/2013 07:55:16 AM,04/25/2016 01:50:38 PM,09/23/2013 08:02:20 AM,09/23/2013 08:11:04 AM,09/23/2013 08:21:50 AM,Code 3 Transport,09/23/2013 08:55:49 AM,900 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7591210187575, -122.390401159216)",132660079-68 -131230293,54,13041530,Medical Incident,05/03/2013,05/03/2013,05/03/2013 03:09:23 PM,05/03/2013 03:09:59 PM,05/03/2013 03:10:22 PM,05/03/2013 03:10:31 PM,05/03/2013 03:23:31 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Patient Declined Transport,05/03/2013 04:03:34 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",131230293-54 -160012748,KM09,16000412,Medical Incident,01/01/2016,01/01/2016,01/01/2016 04:43:44 PM,01/01/2016 04:44:58 PM,01/01/2016 04:45:28 PM,01/01/2016 04:47:35 PM,01/01/2016 04:56:39 PM,01/01/2016 05:45:10 PM,01/01/2016 05:45:18 PM,Code 2 Transport,01/01/2016 06:42:20 PM,200 Block of KING ST,San Francisco,94107,B03,8,2171,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160012748-KM09 -133100143,87,13105360,Medical Incident,11/06/2013,11/06/2013,11/06/2013 11:38:49 AM,11/06/2013 11:39:30 AM,11/06/2013 11:40:48 AM,04/25/2016 01:49:53 PM,11/06/2013 11:44:52 AM,11/06/2013 12:10:25 PM,11/06/2013 12:13:22 PM,Code 2 Transport,11/06/2013 12:51:15 PM,300 Block of LAIDLEY ST,SF,94131,B06,26,8127,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7372888006621, -122.428846489541)",133100143-87 -160794086,AM14,16031605,Medical Incident,03/19/2016,03/19/2016,03/19/2016 10:21:15 PM,03/19/2016 10:21:37 PM,03/19/2016 10:21:52 PM,03/19/2016 10:22:33 PM,03/19/2016 10:25:43 PM,03/19/2016 10:56:34 PM,03/19/2016 11:03:30 PM,Code 2 Transport,03/19/2016 11:42:43 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160794086-AM14 -113380140,77,11111972,Medical Incident,12/04/2011,12/04/2011,12/04/2011 09:45:35 AM,12/04/2011 09:46:10 AM,12/04/2011 09:46:55 AM,12/04/2011 09:47:04 AM,12/04/2011 09:51:51 AM,12/04/2011 10:10:04 AM,12/04/2011 10:18:19 AM,Code 2 Transport,12/04/2011 10:42:18 AM,POLK ST/GROVE ST,SF,94102,B02,36,1552,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7784891171437, -122.418226581728)",113380140-77 -112530290,T01,11083547,Traffic Collision,09/10/2011,09/10/2011,09/10/2011 04:13:04 PM,09/10/2011 04:13:04 PM,09/10/2011 04:13:12 PM,09/10/2011 04:14:13 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 04:16:25 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,,1,TRUCK,4,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112530290-T01 -113170237,RC1,11105375,Medical Incident,11/13/2011,11/13/2011,11/13/2011 03:39:54 PM,11/13/2011 03:42:19 PM,11/13/2011 03:42:32 PM,11/13/2011 03:47:12 PM,11/13/2011 03:50:25 PM,11/13/2011 04:17:10 PM,11/13/2011 04:23:57 PM,Code 3 Transport,11/13/2011 04:53:39 PM,1100 Block of GRANT AVE,SF,94133,B01,2,1311,3,E,3,true,,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7971943093664, -122.406817843184)",113170237-RC1 -131280090,E01,13043204,Medical Incident,05/08/2013,05/08/2013,05/08/2013 08:00:41 AM,05/08/2013 08:01:46 AM,05/08/2013 08:02:04 AM,05/08/2013 08:02:44 AM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 08:04:40 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",131280090-E01 -121480106,82,12049053,Medical Incident,05/27/2012,05/27/2012,05/27/2012 09:14:11 AM,05/27/2012 09:15:57 AM,05/27/2012 09:17:14 AM,05/27/2012 09:17:29 AM,05/27/2012 09:35:41 AM,05/27/2012 09:47:53 AM,05/27/2012 09:54:11 AM,Code 2 Transport,05/27/2012 10:34:08 AM,1200 Block of MASON ST,SF,94108,B01,2,1415,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7949589269529, -122.411521140244)",121480106-82 -160562810,56,16022475,Medical Incident,02/25/2016,02/25/2016,02/25/2016 04:50:09 PM,02/25/2016 04:51:50 PM,02/25/2016 04:52:14 PM,02/25/2016 04:52:20 PM,02/25/2016 05:00:55 PM,02/25/2016 05:26:44 PM,02/25/2016 05:38:12 PM,Code 2 Transport,02/25/2016 05:12:31 PM,1500 Block of STOCKTON ST,San Francisco,94133,B01,28,1334,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.799975359605, -122.40903359976)",160562810-56 -120790138,92,12026191,Medical Incident,03/19/2012,03/19/2012,03/19/2012 10:42:21 AM,03/19/2012 10:44:03 AM,03/19/2012 10:45:43 AM,03/19/2012 10:46:23 AM,03/19/2012 10:53:19 AM,03/19/2012 11:09:18 AM,03/19/2012 11:25:42 AM,Code 2 Transport,03/19/2012 11:46:47 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",120790138-92 -122070266,75,12068898,Medical Incident,07/25/2012,07/25/2012,07/25/2012 04:29:33 PM,07/25/2012 04:30:20 PM,07/25/2012 04:30:52 PM,07/25/2012 04:31:50 PM,07/25/2012 04:42:26 PM,07/25/2012 05:08:52 PM,07/25/2012 05:47:52 PM,Code 2 Transport,07/25/2012 06:21:25 PM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8084325058333, -122.410757587167)",122070266-75 -160230176,61,16009010,Medical Incident,01/23/2016,01/22/2016,01/23/2016 01:08:16 AM,01/23/2016 01:09:19 AM,01/23/2016 01:09:33 AM,01/23/2016 01:09:39 AM,01/23/2016 01:15:13 AM,01/23/2016 01:29:16 AM,01/23/2016 01:35:42 AM,Code 2 Transport,01/23/2016 02:28:33 AM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160230176-61 -121420281,T03,12047322,Alarms,05/21/2012,05/21/2012,05/21/2012 06:02:17 PM,05/21/2012 06:03:27 PM,05/21/2012 06:03:40 PM,05/21/2012 06:05:13 PM,05/21/2012 06:06:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/21/2012 06:11:25 PM,1400 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,3,3,false,Alarm,1,TRUCK,3,4,3,Nob Hill,"(37.7908262425025, -122.418204055856)",121420281-T03 -123020437,E08,12100365,Medical Incident,10/28/2012,10/28/2012,10/28/2012 11:21:58 PM,10/28/2012 11:22:13 PM,10/28/2012 11:26:53 PM,10/28/2012 11:28:10 PM,10/28/2012 11:29:17 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 11:47:38 PM,200 Block of TOWNSEND ST,SF,94107,B03,8,2172,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.778367882018, -122.393460595106)",123020437-E08 -110850117,83,11027972,Medical Incident,03/26/2011,03/26/2011,03/26/2011 09:35:48 AM,03/26/2011 09:36:37 AM,03/26/2011 09:36:58 AM,03/26/2011 09:37:13 AM,03/26/2011 09:39:34 AM,03/26/2011 10:00:01 AM,03/26/2011 10:09:25 AM,Code 2 Transport,03/26/2011 10:33:22 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",110850117-83 -102940326,55,10093879,Medical Incident,10/21/2010,10/21/2010,10/21/2010 08:50:01 PM,10/21/2010 08:53:37 PM,10/21/2010 08:53:56 PM,10/21/2010 08:54:30 PM,10/21/2010 09:04:13 PM,10/21/2010 09:14:28 PM,10/21/2010 09:32:18 PM,Code 2 Transport,10/21/2010 10:00:09 PM,400 Block of MARIETTA DR,SF,94127,B09,39,8654,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.738687302848, -122.44337815957)",102940326-55 -123610034,55,12120679,Medical Incident,12/26/2012,12/25/2012,12/26/2012 04:29:22 AM,12/26/2012 04:29:54 AM,12/26/2012 04:30:07 AM,12/26/2012 04:30:16 AM,12/26/2012 04:38:54 AM,12/26/2012 04:46:50 AM,12/26/2012 05:02:38 AM,Code 2 Transport,12/26/2012 05:57:29 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",123610034-55 -160160184,68,16006243,Medical Incident,01/16/2016,01/15/2016,01/16/2016 01:21:38 AM,01/16/2016 01:23:51 AM,01/16/2016 01:24:39 AM,01/16/2016 01:24:49 AM,01/16/2016 01:27:24 AM,01/16/2016 01:31:25 AM,01/16/2016 02:03:18 AM,Code 2 Transport,01/16/2016 02:29:09 AM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",160160184-68 -123150062,E36,12104736,Alarms,11/10/2012,11/09/2012,11/10/2012 04:38:55 AM,11/10/2012 04:40:20 AM,11/10/2012 04:40:28 AM,11/10/2012 04:42:19 AM,11/10/2012 04:43:45 AM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/10/2012 04:51:59 AM,300 Block of FELL ST,SF,94102,B02,36,3314,3,3,3,false,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7757976823178, -122.423545172225)",123150062-E36 -110620310,KM02,11020476,Medical Incident,03/03/2011,03/03/2011,03/03/2011 07:06:09 PM,03/03/2011 07:08:38 PM,03/03/2011 07:09:32 PM,03/03/2011 07:10:10 PM,03/03/2011 07:15:10 PM,03/03/2011 07:23:17 PM,03/03/2011 07:36:42 PM,Code 2 Transport,03/03/2011 07:50:25 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110620310-KM02 -122550420,81,12084487,Medical Incident,09/11/2012,09/11/2012,09/11/2012 11:47:01 PM,09/11/2012 11:47:24 PM,09/11/2012 11:47:32 PM,09/11/2012 11:47:45 PM,09/11/2012 11:55:43 PM,09/12/2012 12:06:17 AM,09/12/2012 12:13:28 AM,Code 2 Transport,09/12/2012 12:31:23 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",122550420-81 -110560214,E08,11018471,Alarms,02/25/2011,02/25/2011,02/25/2011 03:04:02 PM,02/25/2011 03:05:46 PM,02/25/2011 03:05:58 PM,02/25/2011 03:07:24 PM,02/25/2011 03:09:53 PM,04/25/2016 02:05:55 PM,04/25/2016 02:05:55 PM,Other,02/25/2011 03:16:00 PM,300 Block of 7TH ST,SF,94103,B03,8,2312,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7758712904252, -122.406841835314)",110560214-E08 -113170126,E20,11105274,Medical Incident,11/13/2011,11/13/2011,11/13/2011 09:18:38 AM,11/13/2011 09:21:34 AM,11/13/2011 09:21:41 AM,11/13/2011 09:22:38 AM,11/13/2011 09:25:45 AM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Other,11/13/2011 09:44:36 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",113170126-E20 -133600029,E03,13122220,Medical Incident,12/26/2013,12/25/2013,12/26/2013 03:18:46 AM,12/26/2013 03:21:11 AM,12/26/2013 03:21:22 AM,12/26/2013 03:22:38 AM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 03:24:01 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",133600029-E03 -112720106,75,11089880,Traffic Collision,09/29/2011,09/29/2011,09/29/2011 09:44:30 AM,09/29/2011 09:45:44 AM,09/29/2011 09:46:40 AM,09/29/2011 09:47:51 AM,09/29/2011 09:50:20 AM,09/29/2011 10:07:08 AM,09/29/2011 10:18:21 AM,Code 2 Transport,09/29/2011 10:53:09 AM,3000 Block of LARKIN ST,SF,94109,B01,28,1623,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8059751797269, -122.422033155092)",112720106-75 -160831802,67,16032942,Medical Incident,03/23/2016,03/23/2016,03/23/2016 12:34:16 PM,03/23/2016 12:34:16 PM,03/23/2016 12:34:37 PM,03/23/2016 12:36:22 PM,03/23/2016 12:36:59 PM,03/23/2016 01:01:47 PM,03/23/2016 01:14:57 PM,Code 2 Transport,03/23/2016 01:59:19 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160831802-67 -113290232,79,11109217,Medical Incident,11/25/2011,11/25/2011,11/25/2011 07:10:21 PM,11/25/2011 07:11:19 PM,11/25/2011 07:11:29 PM,11/25/2011 07:12:12 PM,11/25/2011 07:20:04 PM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 07:54:15 PM,2800 Block of VALLEJO ST,SF,94123,B04,16,4311,E,E,3,true,,1,MEDIC,2,4,2,Pacific Heights,"(37.7941220413487, -122.444220734836)",113290232-79 -111530118,T08,11050537,Structure Fire,06/02/2011,06/02/2011,06/02/2011 10:53:23 AM,06/02/2011 10:55:15 AM,06/02/2011 10:55:51 AM,06/02/2011 10:58:17 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/02/2011 10:59:43 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,false,,1,TRUCK,11,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",111530118-T08 -102270327,73,10071583,Medical Incident,08/15/2010,08/15/2010,08/15/2010 09:11:19 PM,08/15/2010 09:13:08 PM,08/15/2010 09:13:38 PM,08/15/2010 09:13:46 PM,08/15/2010 09:21:09 PM,08/15/2010 09:33:31 PM,08/15/2010 09:46:52 PM,Code 2 Transport,08/15/2010 09:54:51 PM,MARTIN LUTHER KING DR/SUNSET BL,SF,94122,B08,23,7565,3,3,3,true,,1,MEDIC,2,7,1,Golden Gate Park,"(37.7654614240896, -122.496063125425)",102270327-73 -120810294,E29,12026975,Medical Incident,03/21/2012,03/21/2012,03/21/2012 05:15:35 PM,03/21/2012 05:16:51 PM,03/21/2012 05:17:04 PM,03/21/2012 05:18:49 PM,03/21/2012 05:19:44 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Other,03/21/2012 05:39:42 PM,9TH ST/BRYANT ST,SF,94103,B03,29,2324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7712907918294, -122.408531083232)",120810294-E29 -131860209,84,13063454,Medical Incident,07/05/2013,07/05/2013,07/05/2013 01:19:29 PM,07/05/2013 01:20:57 PM,07/05/2013 01:22:59 PM,07/05/2013 01:23:48 PM,07/05/2013 01:28:07 PM,07/05/2013 01:47:08 PM,07/05/2013 02:04:17 PM,Code 2 Transport,07/05/2013 02:32:19 PM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8084325058333, -122.410757587167)",131860209-84 -132570389,94,13087086,Medical Incident,09/14/2013,09/14/2013,09/14/2013 10:18:27 PM,09/14/2013 10:19:48 PM,09/14/2013 10:20:02 PM,09/14/2013 10:20:17 PM,09/14/2013 10:36:47 PM,09/14/2013 10:55:50 PM,09/14/2013 11:22:18 PM,Code 2 Transport,09/14/2013 11:46:31 PM,800 Block of TURK ST,SF,94102,B02,36,3216,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",132570389-94 -102330180,60,10073337,Medical Incident,08/21/2010,08/21/2010,08/21/2010 01:51:44 PM,08/21/2010 01:53:06 PM,08/21/2010 01:53:14 PM,08/21/2010 01:53:30 PM,08/21/2010 02:01:36 PM,08/21/2010 02:06:58 PM,08/21/2010 02:24:39 PM,Code 2 Transport,08/21/2010 02:45:24 PM,3000 Block of SAN JOSE AVE,SF,94112,B09,33,8371,1,1,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7098606715103, -122.457422352481)",102330180-60 -111150061,T01,11037854,Alarms,04/25/2011,04/24/2011,04/25/2011 06:15:45 AM,04/25/2011 06:16:26 AM,04/25/2011 06:16:35 AM,04/25/2011 06:18:43 AM,04/25/2011 06:20:13 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 06:26:40 AM,500 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7886287320653, -122.398912581875)",111150061-T01 -122890311,AM06,12095720,Medical Incident,10/15/2012,10/15/2012,10/15/2012 05:40:01 PM,10/15/2012 05:41:29 PM,10/15/2012 05:42:05 PM,10/15/2012 05:42:50 PM,10/15/2012 05:56:03 PM,10/15/2012 06:21:41 PM,10/15/2012 06:32:10 PM,Code 2 Transport,10/15/2012 07:10:13 PM,5600 Block of CALIFORNIA ST,SF,94121,B07,31,7162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7842530764945, -122.478048040322)",122890311-AM06 -122110256,E12,12070149,Outside Fire,07/29/2012,07/29/2012,07/29/2012 06:35:42 PM,07/29/2012 06:36:19 PM,07/29/2012 06:36:28 PM,07/29/2012 06:37:19 PM,07/29/2012 06:39:20 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 06:44:53 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,Fire,1,ENGINE,1,5,5,Haight Ashbury,"(37.7677850586334, -122.45319019834)",122110256-E12 -102370326,AM04,10074831,Medical Incident,08/25/2010,08/25/2010,08/25/2010 06:04:04 PM,08/25/2010 06:04:15 PM,08/25/2010 06:05:09 PM,08/25/2010 06:05:47 PM,08/25/2010 06:06:49 PM,08/25/2010 06:19:19 PM,08/25/2010 06:35:02 PM,Code 2 Transport,08/25/2010 07:19:52 PM,0 Block of VAN NESS AVE,SF,94102,B02,36,3210,3,3,3,false,,1,PRIVATE,1,2,5,Hayes Valley,"(37.7756495714097, -122.419512541033)",102370326-AM04 -120490290,72,12016312,Medical Incident,02/18/2012,02/18/2012,02/18/2012 07:24:58 PM,02/18/2012 07:24:58 PM,02/18/2012 07:28:47 PM,02/18/2012 07:29:21 PM,02/18/2012 07:34:26 PM,02/18/2012 07:54:22 PM,02/18/2012 08:05:35 PM,Code 2 Transport,02/18/2012 08:40:25 PM,MISSION ST/15TH ST,SF,94103,B02,36,5279,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",120490290-72 -120450358,T17,12015121,Structure Fire,02/14/2012,02/14/2012,02/14/2012 09:32:53 PM,02/14/2012 09:33:59 PM,02/14/2012 09:34:05 PM,04/25/2016 02:00:08 PM,02/14/2012 09:37:29 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 09:39:19 PM,200 Block of WEST POINT RD,SF,94124,B10,25,6556,3,3,3,false,Fire,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.735189226844, -122.378938285616)",120450358-T17 -132000119,E03,13067734,Alarms,07/19/2013,07/19/2013,07/19/2013 10:00:07 AM,07/19/2013 10:01:35 AM,07/19/2013 10:02:12 AM,07/19/2013 10:02:25 AM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 10:08:26 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,true,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",132000119-E03 -160223959,64,16008986,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:31:34 PM,01/22/2016 11:33:20 PM,01/22/2016 11:33:55 PM,01/22/2016 11:36:31 PM,01/22/2016 11:40:15 PM,01/23/2016 12:02:24 AM,01/23/2016 12:10:52 AM,Code 2 Transport,01/23/2016 12:43:48 AM,1100 Block of LARKIN ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7882080201925, -122.418443835989)",160223959-64 -160302537,89,16011853,Medical Incident,01/30/2016,01/30/2016,01/30/2016 03:53:54 PM,01/30/2016 03:53:54 PM,01/30/2016 03:54:26 PM,01/30/2016 03:57:18 PM,01/30/2016 04:02:22 PM,01/30/2016 04:17:23 PM,01/30/2016 04:29:23 PM,Code 2 Transport,01/30/2016 05:29:00 PM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160302537-89 -121030248,94,12034165,Medical Incident,04/12/2012,04/12/2012,04/12/2012 03:37:13 PM,04/12/2012 03:38:27 PM,04/12/2012 03:40:10 PM,04/12/2012 03:40:57 PM,04/12/2012 03:43:01 PM,04/12/2012 03:59:12 PM,04/12/2012 04:21:50 PM,Code 2 Transport,04/12/2012 04:56:29 PM,100 Block of AMAZON AVE,SF,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7167456288944, -122.439228156954)",121030248-94 -110450336,E36,11015056,Medical Incident,02/14/2011,02/14/2011,02/14/2011 08:01:25 PM,02/14/2011 08:01:25 PM,02/14/2011 08:01:25 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 08:04:18 PM,MARKET ST/SANCHEZ ST,SF,94114,B02,6,5213,3,3,3,true,,1,ENGINE,4,5,8,Castro/Upper Market,"(37.7658679882367, -122.431025473299)",110450336-E36 -160382395,KM15,16015280,Medical Incident,02/07/2016,02/07/2016,02/07/2016 03:41:58 PM,02/07/2016 03:42:54 PM,02/07/2016 03:43:09 PM,02/07/2016 03:43:46 PM,02/07/2016 03:46:29 PM,02/07/2016 04:18:39 PM,02/07/2016 04:34:49 PM,Code 2 Transport,02/07/2016 05:34:58 PM,1400 Block of CALIFORNIA ST,San Francisco,94109,B04,41,1635,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7909350074676, -122.418223494576)",160382395-KM15 -160420646,62,16016761,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:54:15 AM,02/11/2016 07:55:41 AM,02/11/2016 07:56:38 AM,02/11/2016 07:56:58 AM,02/11/2016 08:02:26 AM,02/11/2016 08:11:50 AM,02/11/2016 08:49:18 AM,Code 2 Transport,02/11/2016 09:27:53 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160420646-62 -160413611,70,16016640,Medical Incident,02/10/2016,02/10/2016,02/10/2016 08:51:44 PM,02/10/2016 08:51:44 PM,02/10/2016 08:53:23 PM,02/10/2016 08:53:30 PM,02/10/2016 09:06:58 PM,02/10/2016 09:38:27 PM,02/10/2016 10:04:12 PM,Code 2 Transport,02/10/2016 10:40:12 PM,2700 Block of MARKET ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7614990581746, -122.438865566115)",160413611-70 -111180192,AM08,11038935,Medical Incident,04/28/2011,04/28/2011,04/28/2011 01:26:43 PM,04/28/2011 01:27:53 PM,04/28/2011 01:38:42 PM,04/28/2011 01:50:25 PM,04/28/2011 01:54:23 PM,04/28/2011 02:05:04 PM,04/28/2011 02:12:20 PM,Code 2 Transport,04/28/2011 02:32:38 PM,0 Block of JONES ST,SF,94102,B03,1,1455,1,1,2,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",111180192-AM08 -102400267,E09,10075767,Medical Incident,08/28/2010,08/28/2010,08/28/2010 05:47:46 PM,08/28/2010 05:48:34 PM,08/28/2010 05:49:36 PM,08/28/2010 05:50:36 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/28/2010 05:53:26 PM,4100 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7399568110921, -122.389027814103)",102400267-E09 -113410086,95,11112980,Medical Incident,12/07/2011,12/06/2011,12/07/2011 07:45:28 AM,12/07/2011 07:47:08 AM,12/07/2011 08:05:13 AM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,04/25/2016 02:01:17 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113410086-95 -112640287,KM11,11087261,Medical Incident,09/21/2011,09/21/2011,09/21/2011 04:47:05 PM,09/21/2011 04:48:22 PM,09/21/2011 04:48:33 PM,04/25/2016 02:02:33 PM,09/21/2011 04:55:01 PM,09/21/2011 05:10:20 PM,09/21/2011 05:32:07 PM,Code 2 Transport,09/21/2011 05:58:08 PM,JUNIPERO SERRA BL/19TH AV,SF,94132,B08,19,8427,3,3,3,false,,1,PRIVATE,2,9,7,Lakeshore,"(37.71717386983, -122.472572451935)",112640287-KM11 -131970292,E31,13066912,Medical Incident,07/16/2013,07/16/2013,07/16/2013 05:56:41 PM,07/16/2013 05:59:23 PM,07/16/2013 06:01:43 PM,07/16/2013 06:02:20 PM,07/16/2013 06:05:27 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/16/2013 06:12:19 PM,FULTON ST/6TH AV,SF,94122,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7736240632884, -122.463749209233)",131970292-E31 -160832800,64,16033042,Medical Incident,03/23/2016,03/23/2016,03/23/2016 04:33:48 PM,03/23/2016 04:33:48 PM,03/23/2016 04:34:36 PM,03/23/2016 04:34:48 PM,03/23/2016 04:47:47 PM,03/23/2016 05:04:55 PM,03/23/2016 05:23:32 PM,Code 2 Transport,03/23/2016 06:04:30 PM,PAGE ST/WEBSTER ST,San Francisco,94102,B02,36,3422,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7732477996527, -122.428990053871)",160832800-64 -160870556,KM03,16034463,Medical Incident,03/27/2016,03/26/2016,03/27/2016 04:06:37 AM,03/27/2016 04:08:00 AM,03/27/2016 04:08:18 AM,03/27/2016 04:08:56 AM,03/27/2016 04:29:29 AM,03/27/2016 04:29:34 AM,03/27/2016 04:38:13 AM,Code 2 Transport,03/27/2016 05:06:01 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160870556-KM03 -160621085,52,16024631,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:57:26 AM,03/02/2016 09:57:26 AM,03/02/2016 09:58:04 AM,03/02/2016 09:59:03 AM,03/02/2016 10:20:32 AM,03/02/2016 10:20:34 AM,03/02/2016 10:24:33 AM,Code 3 Transport,03/02/2016 11:14:06 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160621085-52 -120650377,E17,12021650,Medical Incident,03/05/2012,03/05/2012,03/05/2012 09:52:55 PM,03/05/2012 09:53:16 PM,03/05/2012 09:53:26 PM,03/05/2012 09:54:19 PM,03/05/2012 09:57:36 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/05/2012 10:05:25 PM,0 Block of COMMER CT,SF,94124,B10,17,6622,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7325365939267, -122.385005626506)",120650377-E17 -121730240,T11,12057490,Medical Incident,06/21/2012,06/21/2012,06/21/2012 04:06:14 PM,06/21/2012 04:06:42 PM,06/21/2012 04:07:07 PM,06/21/2012 04:08:27 PM,06/21/2012 04:11:21 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/21/2012 04:13:56 PM,3200 Block of MISSION ST,SF,94110,B06,11,5624,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,6,9,Bernal Heights,"(37.7454669542894, -122.419890921573)",121730240-T11 -103290070,E05,10105282,Structure Fire,11/25/2010,11/25/2010,11/25/2010 08:46:01 AM,11/25/2010 08:46:02 AM,11/25/2010 08:46:12 AM,11/25/2010 08:46:36 AM,11/25/2010 08:47:56 AM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Fire,11/25/2010 08:49:24 AM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",103290070-E05 -130810380,E07,13027292,Medical Incident,03/22/2013,03/22/2013,03/22/2013 11:01:04 PM,03/22/2013 11:03:25 PM,03/22/2013 11:23:14 PM,03/22/2013 11:26:03 PM,03/22/2013 11:32:48 PM,03/22/2013 11:41:32 PM,04/25/2016 01:53:41 PM,Other,03/22/2013 11:49:30 PM,1000 Block of HAMPSHIRE ST,SF,94110,B06,7,5474,1,1,2,true,Non Life-threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7553117218433, -122.407456232878)",130810380-E07 -103420213,E02,10109487,Structure Fire,12/08/2010,12/08/2010,12/08/2010 01:02:58 PM,12/08/2010 01:03:31 PM,12/08/2010 01:03:55 PM,12/08/2010 01:04:52 PM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,04/25/2016 02:07:13 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,,1,ENGINE,9,2,6,Tenderloin,"(37.7854364798696, -122.41533612902)",103420213-E02 -102760037,88,10087612,Medical Incident,10/03/2010,10/02/2010,10/03/2010 01:36:44 AM,10/03/2010 01:37:45 AM,10/03/2010 01:38:20 AM,04/25/2016 02:08:17 PM,10/03/2010 01:55:41 AM,10/03/2010 02:13:33 AM,10/03/2010 02:31:26 AM,Code 2 Transport,10/03/2010 02:57:05 AM,400 Block of GONZALEZ DR,SF,94132,B08,19,8481,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7162110914239, -122.47657722537)",102760037-88 -121280225,RS1,12042623,Medical Incident,05/07/2012,05/07/2012,05/07/2012 02:05:20 PM,05/07/2012 02:05:49 PM,05/07/2012 02:06:16 PM,05/07/2012 02:06:51 PM,05/07/2012 02:12:49 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 02:13:16 PM,JONES ST/GOLDEN GATE AV,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",121280225-RS1 -120010166,68,12000136,Medical Incident,01/01/2012,12/31/2011,01/01/2012 02:01:48 AM,01/01/2012 02:01:57 AM,01/01/2012 02:03:53 AM,01/01/2012 02:04:15 AM,01/01/2012 02:10:42 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 02:17:39 AM,MONTGOMERY ST/BUSH ST,SF,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.790968608904, -122.402380403123)",120010166-68 -103120195,59,10100057,Medical Incident,11/08/2010,11/08/2010,11/08/2010 01:18:11 PM,11/08/2010 01:18:40 PM,11/08/2010 01:19:53 PM,11/08/2010 01:21:46 PM,11/08/2010 01:30:47 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Patient Declined Transport,11/08/2010 02:31:38 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",103120195-59 -160140556,82,16005465,Medical Incident,01/14/2016,01/13/2016,01/14/2016 07:07:15 AM,01/14/2016 07:07:45 AM,01/14/2016 07:08:23 AM,01/14/2016 07:08:29 AM,01/14/2016 07:16:27 AM,01/14/2016 07:32:17 AM,01/14/2016 07:58:07 AM,Code 2 Transport,01/14/2016 08:33:44 AM,4TH ST/BRYANT ST,San Francisco,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7795669099357, -122.398059940086)",160140556-82 -140210183,E31,14007184,Medical Incident,01/21/2014,01/21/2014,01/21/2014 01:32:52 PM,01/21/2014 01:34:39 PM,01/21/2014 01:35:10 PM,01/21/2014 01:36:14 PM,01/21/2014 01:39:52 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/21/2014 01:47:40 PM,17TH AV/GEARY BL,SF,94118,B07,31,7161,,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7804758485589, -122.476169188097)",140210183-E31 -160660355,70,16026252,Medical Incident,03/06/2016,03/05/2016,03/06/2016 02:49:02 AM,03/06/2016 02:49:02 AM,03/06/2016 02:50:06 AM,03/06/2016 02:50:15 AM,03/06/2016 02:54:39 AM,03/06/2016 03:05:43 AM,03/06/2016 03:17:17 AM,Code 2 Transport,03/06/2016 04:00:24 AM,500 Block of MONTGOMERY ST,San Francisco,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7944323288641, -122.403161406047)",160660355-70 -160790677,79,16031324,Medical Incident,03/19/2016,03/18/2016,03/19/2016 06:37:49 AM,03/19/2016 06:40:07 AM,03/19/2016 06:43:23 AM,03/19/2016 06:45:36 AM,03/19/2016 06:54:54 AM,03/19/2016 07:11:16 AM,03/19/2016 07:25:43 AM,Code 2 Transport,03/19/2016 07:43:23 AM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.8012720767056, -122.453377012346)",160790677-79 -103120298,E17,10100139,Electrical Hazard,11/08/2010,11/08/2010,11/08/2010 07:28:44 PM,11/08/2010 07:30:49 PM,11/08/2010 07:30:57 PM,11/08/2010 07:32:18 PM,11/08/2010 07:33:52 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 07:42:22 PM,1500 Block of SHAFTER AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.730553557091, -122.389751029234)",103120298-E17 -160030916,AM02,16001113,Medical Incident,01/03/2016,01/03/2016,01/03/2016 09:10:37 AM,01/03/2016 09:11:23 AM,01/03/2016 09:12:00 AM,01/03/2016 09:12:33 AM,01/03/2016 09:15:35 AM,01/03/2016 09:41:22 AM,01/03/2016 10:05:59 AM,Code 2 Transport,01/03/2016 10:37:40 AM,100 Block of PAGE ST,San Francisco,94102,B02,36,3313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",160030916-AM02 -130140130,E36,13004735,Medical Incident,01/14/2013,01/14/2013,01/14/2013 09:58:59 AM,01/14/2013 09:59:56 AM,01/14/2013 10:00:45 AM,04/25/2016 01:54:49 PM,01/14/2013 10:02:47 AM,04/25/2016 01:54:49 PM,04/25/2016 01:54:49 PM,Other,01/14/2013 10:15:40 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Non Life-threatening,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",130140130-E36 -111960324,94,11064829,Medical Incident,07/15/2011,07/15/2011,07/15/2011 09:20:01 PM,07/15/2011 09:21:23 PM,07/15/2011 09:21:54 PM,07/15/2011 09:22:19 PM,07/15/2011 09:24:17 PM,07/15/2011 09:30:03 PM,07/15/2011 10:13:00 PM,Code 2 Transport,07/15/2011 10:38:58 PM,POST ST/DIVISADERO ST,SF,94115,B04,10,4131,3,3,3,true,,1,MEDIC,1,5,5,Japantown,"(37.7843186737916, -122.439684677541)",111960324-94 -130790189,AM08,13026401,Medical Incident,03/20/2013,03/20/2013,03/20/2013 01:29:44 PM,03/20/2013 01:32:06 PM,03/20/2013 01:32:30 PM,03/20/2013 01:33:17 PM,03/20/2013 01:39:52 PM,03/20/2013 02:18:20 PM,03/20/2013 02:36:20 PM,Code 2 Transport,03/20/2013 03:09:17 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130790189-AM08 -123310022,79,12109896,Medical Incident,11/26/2012,11/25/2012,11/26/2012 01:49:08 AM,11/26/2012 01:51:11 AM,11/26/2012 01:51:29 AM,11/26/2012 01:51:55 AM,11/26/2012 01:56:00 AM,11/26/2012 02:01:42 AM,11/26/2012 02:06:57 AM,Code 2 Transport,11/26/2012 02:30:07 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,1,1,2,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",123310022-79 -160372293,AM12,16014740,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:43:02 PM,02/06/2016 02:44:23 PM,02/06/2016 02:44:38 PM,02/06/2016 02:45:16 PM,02/06/2016 03:00:44 PM,02/06/2016 03:10:03 PM,02/06/2016 03:24:57 PM,Code 2 Transport,02/06/2016 03:51:33 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",160372293-AM12 -103540025,T01,10113525,Alarms,12/20/2010,12/19/2010,12/20/2010 03:23:06 AM,12/20/2010 03:24:13 AM,12/20/2010 03:24:25 AM,12/20/2010 03:26:33 AM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,04/25/2016 02:07:01 PM,Other,12/20/2010 03:31:14 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.7812234542945, -122.408928070797)",103540025-T01 -160850144,70,16033618,Medical Incident,03/25/2016,03/24/2016,03/25/2016 01:06:25 AM,03/25/2016 01:08:37 AM,03/25/2016 01:08:52 AM,03/25/2016 01:09:01 AM,03/25/2016 01:31:27 AM,03/25/2016 01:31:33 AM,03/25/2016 01:43:13 AM,Code 2 Transport,03/25/2016 02:30:25 AM,2200 Block of 42ND AVE,San Francisco,94116,B08,18,7635,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7447589556193, -122.500599930305)",160850144-70 -160872069,KM13,16034598,Medical Incident,03/27/2016,03/27/2016,03/27/2016 02:33:08 PM,03/27/2016 02:33:34 PM,03/27/2016 02:35:01 PM,03/27/2016 02:35:43 PM,03/27/2016 02:41:47 PM,03/27/2016 02:54:52 PM,03/27/2016 03:25:00 PM,Code 2 Transport,03/27/2016 04:08:26 PM,DRUMM ST/CLAY ST,San Francisco,94111,B01,13,1116,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",160872069-KM13 -133080269,T18,13104783,Alarms,11/04/2013,11/04/2013,11/04/2013 04:18:12 PM,11/04/2013 04:19:28 PM,11/04/2013 04:19:34 PM,11/04/2013 04:22:07 PM,11/04/2013 04:25:44 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/04/2013 04:30:41 PM,1800 Block of KIRKHAM ST,SF,94122,B08,22,7447,3,3,3,false,Alarm,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7596118153789, -122.480607761661)",133080269-T18 -160192261,KM05,16007693,Medical Incident,01/19/2016,01/19/2016,01/19/2016 03:12:14 PM,01/19/2016 03:14:47 PM,01/19/2016 03:14:54 PM,01/19/2016 03:16:27 PM,01/19/2016 03:19:02 PM,01/19/2016 03:34:14 PM,01/19/2016 03:49:35 PM,Code 2 Transport,01/19/2016 04:29:37 PM,700 Block of 9TH AVE,San Francisco,94118,B07,31,7133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7742838362114, -122.467088086382)",160192261-KM05 -160062896,62,16002529,Medical Incident,01/06/2016,01/06/2016,01/06/2016 05:52:43 PM,01/06/2016 05:53:29 PM,01/06/2016 05:53:40 PM,01/06/2016 05:53:51 PM,01/06/2016 05:55:55 PM,01/06/2016 06:12:04 PM,01/06/2016 06:20:31 PM,Code 2 Transport,01/06/2016 06:53:26 PM,18TH ST/GUERRERO ST,San Francisco,94110,B02,7,5422,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7615656740721, -122.42380067092)",160062896-62 -123170132,E32,12105459,Medical Incident,11/12/2012,11/12/2012,11/12/2012 11:50:03 AM,11/12/2012 11:50:16 AM,11/12/2012 11:51:01 AM,11/12/2012 11:51:54 AM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,Other,11/12/2012 11:53:21 AM,200 Block of SILVER AVE,SF,94112,B09,32,6113,3,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7294754378112, -122.432892177428)",123170132-E32 -112180001,E28,11071904,Alarms,08/05/2011,08/05/2011,08/05/2011 11:59:19 PM,08/06/2011 12:00:32 AM,08/06/2011 12:00:47 AM,08/06/2011 12:02:10 AM,08/06/2011 12:06:18 AM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/06/2011 12:13:38 AM,400 Block of JEFFERSON ST,SF,94109,B01,28,1524,3,3,3,false,,1,ENGINE,3,1,2,Russian Hill,"(37.8076423943453, -122.419903598279)",112180001-E28 -160781401,KM09,16030986,Medical Incident,03/18/2016,03/18/2016,03/18/2016 10:50:44 AM,03/18/2016 10:52:11 AM,03/18/2016 10:52:29 AM,03/18/2016 10:56:53 AM,03/18/2016 11:01:08 AM,03/18/2016 11:25:28 AM,03/18/2016 11:32:47 AM,Code 2 Transport,03/18/2016 12:10:23 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160781401-KM09 -132120302,E06,13071764,Medical Incident,07/31/2013,07/31/2013,07/31/2013 07:18:57 PM,07/31/2013 07:21:00 PM,07/31/2013 07:21:18 PM,07/31/2013 07:22:09 PM,07/31/2013 07:24:25 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,07/31/2013 07:37:16 PM,900 Block of HAIGHT ST,SF,94117,B05,21,4246,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7711077229875, -122.437866452972)",132120302-E06 -113630275,AM08,11120680,Medical Incident,12/29/2011,12/29/2011,12/29/2011 06:51:17 PM,12/29/2011 06:52:57 PM,12/29/2011 06:53:20 PM,12/29/2011 06:54:10 PM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/29/2011 07:01:37 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",113630275-AM08 -102900020,T05,10092376,Alarms,10/17/2010,10/16/2010,10/17/2010 12:56:24 AM,10/17/2010 12:57:23 AM,10/17/2010 12:57:33 AM,10/17/2010 12:58:47 AM,10/17/2010 01:00:28 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 01:10:11 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,,1,TRUCK,2,5,5,Western Addition,"(37.7812693564731, -122.433140098256)",102900020-T05 -112270323,B01,11075138,Structure Fire,08/15/2011,08/15/2011,08/15/2011 05:54:13 PM,08/15/2011 05:55:06 PM,08/15/2011 05:55:26 PM,08/15/2011 05:57:39 PM,08/15/2011 05:59:22 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 06:11:42 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,CHIEF,4,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",112270323-B01 -121020068,KM07,12033728,Medical Incident,04/11/2012,04/10/2012,04/11/2012 07:13:29 AM,04/11/2012 07:16:08 AM,04/11/2012 07:16:24 AM,04/11/2012 07:16:57 AM,04/11/2012 07:32:29 AM,04/11/2012 07:56:01 AM,04/11/2012 08:03:30 AM,Code 2 Transport,04/11/2012 08:45:33 AM,3100 Block of 21ST ST,SF,94110,B06,7,5455,3,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7570790190504, -122.417260520587)",121020068-KM07 -121410040,B09,12046724,Structure Fire,05/20/2012,05/19/2012,05/20/2012 02:46:48 AM,05/20/2012 02:47:24 AM,05/20/2012 02:47:36 AM,05/20/2012 02:48:58 AM,05/20/2012 02:54:02 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 03:24:29 AM,100 Block of SURREY ST,SF,94131,B06,26,8156,3,3,3,false,Fire,1,CHIEF,3,6,8,Glen Park,"(37.7359859928405, -122.434770054605)",121410040-B09 -121760288,E41,12058591,Medical Incident,06/24/2012,06/24/2012,06/24/2012 05:05:41 PM,06/24/2012 05:07:03 PM,06/24/2012 05:08:04 PM,06/24/2012 05:08:53 PM,06/24/2012 05:11:09 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 05:11:11 PM,CALIFORNIA ST/HYDE ST,SF,94109,B01,41,1541,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",121760288-E41 -112580064,B02,11084960,Medical Incident,09/15/2011,09/14/2011,09/15/2011 07:15:33 AM,09/15/2011 07:16:22 AM,09/15/2011 07:16:30 AM,09/15/2011 07:19:09 AM,09/15/2011 07:20:33 AM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/15/2011 07:44:16 AM,100 Block of HAYES ST,SF,94102,B02,36,3166,3,3,3,false,,1,CHIEF,1,2,6,Tenderloin,"(37.7773515638882, -122.418857320448)",112580064-B02 -130310335,E44,13010700,Other,01/31/2013,01/31/2013,01/31/2013 06:38:35 PM,01/31/2013 06:39:10 PM,01/31/2013 06:39:15 PM,04/25/2016 01:54:31 PM,01/31/2013 06:42:29 PM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,01/31/2013 06:50:03 PM,ARLETA AV/BAYSHORE BL,SF,94134,B10,44,6271,2,2,2,true,Alarm,1,ENGINE,1,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",130310335-E44 -160762833,53,16030246,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:52:08 PM,03/16/2016 04:53:28 PM,03/16/2016 04:54:40 PM,03/16/2016 04:54:55 PM,03/16/2016 05:15:17 PM,03/16/2016 05:32:48 PM,03/16/2016 05:32:49 PM,Code 2 Transport,03/16/2016 06:26:54 PM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160762833-53 -132710177,AM06,13092064,Medical Incident,09/28/2013,09/28/2013,09/28/2013 12:04:03 PM,09/28/2013 12:04:21 PM,09/28/2013 12:04:33 PM,09/28/2013 12:05:09 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,04/25/2016 01:50:32 PM,Other,09/28/2013 12:07:57 PM,DUBOCE AV/VALENCIA ST,SF,94103,B02,36,5126,3,3,3,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7698676980277, -122.422364819149)",132710177-AM06 -122990037,RS1,12098973,Structure Fire,10/25/2012,10/24/2012,10/25/2012 02:17:44 AM,10/25/2012 02:19:05 AM,10/25/2012 02:19:30 AM,10/25/2012 02:20:57 AM,10/25/2012 02:22:34 AM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/25/2012 02:27:41 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Alarm,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",122990037-RS1 -70110033,B04,7003129,Alarms,01/11/2007,01/10/2007,01/11/2007 04:50:27 AM,01/11/2007 04:51:48 AM,01/11/2007 04:51:56 AM,01/11/2007 04:54:35 AM,04/25/2016 03:41:12 PM,04/25/2016 03:41:12 PM,04/25/2016 03:41:12 PM,Other,04/25/2016 03:41:12 PM,1200 Block of COLUMBUS AVE,SF,94133,B01,28,1525,3,3,3,false,,1,CHIEF,4,1,3,North Beach,"(37.8056147061622, -122.417757636198)",070110033-B04 -160831604,65,16032926,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:43:06 AM,03/23/2016 11:46:38 AM,03/23/2016 11:46:43 AM,03/23/2016 11:46:51 AM,03/23/2016 11:53:03 AM,03/23/2016 12:24:51 PM,03/23/2016 12:24:52 PM,Code 2 Transport,03/23/2016 01:41:07 PM,1600 Block of SACRAMENTO ST,San Francisco,94109,B04,41,3123,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",160831604-65 -112020404,95,11066823,Medical Incident,07/21/2011,07/21/2011,07/21/2011 09:06:57 PM,07/21/2011 09:07:42 PM,07/21/2011 09:07:51 PM,07/21/2011 09:08:02 PM,07/21/2011 09:12:52 PM,07/21/2011 09:18:15 PM,07/21/2011 09:31:30 PM,Code 2 Transport,07/21/2011 10:02:53 PM,3500 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7393668849403, -122.423797447335)",112020404-95 -110130289,66,11004406,Medical Incident,01/13/2011,01/13/2011,01/13/2011 04:58:39 PM,01/13/2011 05:00:19 PM,01/13/2011 05:05:03 PM,01/13/2011 05:05:13 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Other,04/25/2016 02:06:37 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,2,2,2,true,,1,MEDIC,1,2,10,Mission,"(37.7657832995202, -122.407534230594)",110130289-66 -160844149,AM16,16033571,Medical Incident,03/24/2016,03/24/2016,03/24/2016 10:14:29 PM,03/24/2016 10:16:19 PM,03/24/2016 10:17:13 PM,03/24/2016 10:18:01 PM,03/24/2016 10:37:26 PM,03/24/2016 10:48:35 PM,03/24/2016 11:15:23 PM,Code 2 Transport,03/24/2016 11:36:44 PM,1500 Block of REVERE AVE,San Francisco,94124,B10,17,6571,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7310897557507, -122.389268390192)",160844149-AM16 -113360393,T12,11111403,Alarms,12/02/2011,12/02/2011,12/02/2011 07:08:31 PM,12/02/2011 07:10:10 PM,12/02/2011 07:10:27 PM,12/02/2011 07:11:20 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 07:12:35 PM,1300 Block of FUNSTON AVE,SF,94122,B08,22,7347,3,3,3,false,,1,TRUCK,3,8,5,Inner Sunset,"(37.7629209366704, -122.47046092083)",113360393-T12 -133080259,RS1,13104774,Medical Incident,11/04/2013,11/04/2013,11/04/2013 04:01:28 PM,11/04/2013 04:02:38 PM,11/04/2013 04:03:08 PM,11/04/2013 04:04:24 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/04/2013 04:06:02 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",133080259-RS1 -132780051,68,13094386,Medical Incident,10/05/2013,10/04/2013,10/05/2013 03:14:10 AM,10/05/2013 03:14:46 AM,10/05/2013 03:16:07 AM,10/05/2013 03:17:14 AM,10/05/2013 03:37:35 AM,10/05/2013 03:40:44 AM,10/05/2013 04:02:46 AM,Code 2 Transport,10/05/2013 04:30:42 AM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8061515935611, -122.418537074676)",132780051-68 -111090127,E36,11035948,Structure Fire,04/19/2011,04/19/2011,04/19/2011 11:25:19 AM,04/19/2011 11:25:19 AM,04/19/2011 11:26:07 AM,04/19/2011 11:27:10 AM,04/19/2011 11:28:41 AM,04/25/2016 02:05:02 PM,04/25/2016 02:05:02 PM,Other,04/19/2011 11:29:19 AM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",111090127-E36 -160770331,AM22,16030435,Medical Incident,03/17/2016,03/16/2016,03/17/2016 03:37:21 AM,03/17/2016 03:38:25 AM,03/17/2016 03:40:51 AM,03/17/2016 03:41:19 AM,03/17/2016 03:48:06 AM,03/17/2016 03:54:20 AM,03/17/2016 04:08:12 AM,Code 2 Transport,03/17/2016 05:19:19 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160770331-AM22 -122760036,B01,12090995,Alarms,10/02/2012,10/01/2012,10/02/2012 02:59:08 AM,10/02/2012 03:00:21 AM,10/02/2012 03:00:39 AM,10/02/2012 03:02:52 AM,10/02/2012 03:09:52 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 03:10:06 AM,500 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,CHIEF,2,4,6,Tenderloin,"(37.7860096412795, -122.416458282406)",122760036-B01 -110900363,58,11029915,Medical Incident,03/31/2011,03/31/2011,03/31/2011 07:34:38 PM,03/31/2011 07:37:07 PM,03/31/2011 07:46:48 PM,03/31/2011 08:07:36 PM,03/31/2011 08:12:41 PM,03/31/2011 08:15:14 PM,04/25/2016 02:05:20 PM,Code 2 Transport,03/31/2011 08:35:42 PM,1800 Block of OAKDALE AVE,SF,94124,B10,42,6444,2,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7375042189557, -122.395572399938)",110900363-58 -160142015,65,16005596,Medical Incident,01/14/2016,01/14/2016,01/14/2016 01:55:01 PM,01/14/2016 01:56:40 PM,01/14/2016 01:59:23 PM,01/14/2016 02:01:14 PM,01/14/2016 02:06:48 PM,01/14/2016 02:17:02 PM,01/14/2016 03:01:13 PM,Code 2 Transport,01/14/2016 03:28:23 PM,BROADWAY/KEARNY ST,San Francisco,94133,B01,13,1231,2,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.7980169557217, -122.40547307119)",160142015-65 -113080278,72,11102387,Medical Incident,11/04/2011,11/04/2011,11/04/2011 04:14:27 PM,11/04/2011 04:16:21 PM,11/04/2011 04:18:14 PM,11/04/2011 04:18:31 PM,11/04/2011 04:21:37 PM,11/04/2011 04:34:46 PM,11/04/2011 04:45:46 PM,Code 2 Transport,11/04/2011 05:19:49 PM,2300 Block of 16TH ST,SF,94103,B02,29,5241,3,3,3,true,,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",113080278-72 -160903899,78,16035892,Medical Incident,03/30/2016,03/30/2016,03/30/2016 10:01:17 PM,03/30/2016 10:05:49 PM,03/30/2016 10:06:53 PM,03/30/2016 10:07:58 PM,03/30/2016 10:17:29 PM,03/30/2016 10:32:01 PM,03/30/2016 11:00:11 PM,Code 2 Transport,03/30/2016 11:32:00 PM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160903899-78 -112560360,B02,11084580,Structure Fire,09/13/2011,09/13/2011,09/13/2011 10:34:29 PM,09/13/2011 10:35:33 PM,09/13/2011 10:35:46 PM,09/13/2011 10:36:39 PM,09/13/2011 10:38:27 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Fire,09/14/2011 12:27:19 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",112560360-B02 -131710284,E25,13058140,Medical Incident,06/20/2013,06/20/2013,06/20/2013 05:39:32 PM,06/20/2013 05:39:53 PM,06/20/2013 05:40:45 PM,06/20/2013 05:42:18 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,04/25/2016 01:52:11 PM,Other,06/20/2013 05:45:01 PM,0 Block of CASHMERE ST,SF,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",131710284-E25 -140880111,87,14029585,Medical Incident,03/29/2014,03/29/2014,03/29/2014 09:36:31 AM,03/29/2014 09:41:43 AM,03/29/2014 09:41:53 AM,03/29/2014 09:42:06 AM,03/29/2014 09:49:12 AM,03/29/2014 10:01:47 AM,03/29/2014 10:16:20 AM,Code 2 Transport,03/29/2014 10:46:45 AM,100 Block of HALE ST,SAN FRANCISCO,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7322416900991, -122.408073349592)",140880111-87 -130950141,85,13031772,Medical Incident,04/05/2013,04/05/2013,04/05/2013 11:10:27 AM,04/05/2013 11:13:04 AM,04/05/2013 11:13:36 AM,04/05/2013 11:14:03 AM,04/05/2013 11:25:50 AM,04/05/2013 11:39:13 AM,04/05/2013 11:52:20 AM,Code 2 Transport,04/05/2013 12:27:33 PM,100 Block of JENNINGS ST,SF,94124,B10,25,996,3,3,3,true,Non Life-threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",130950141-85 -122260087,T01,12074846,Structure Fire,08/13/2012,08/13/2012,08/13/2012 08:29:58 AM,08/13/2012 08:29:58 AM,08/13/2012 08:30:06 AM,08/13/2012 08:30:54 AM,08/13/2012 08:33:08 AM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 08:33:31 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,Alarm,1,TRUCK,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122260087-T01 -131640273,58,13055786,Medical Incident,06/13/2013,06/13/2013,06/13/2013 04:47:41 PM,06/13/2013 04:48:28 PM,06/13/2013 04:49:05 PM,06/13/2013 04:49:28 PM,06/13/2013 04:52:02 PM,06/13/2013 05:08:13 PM,06/13/2013 05:15:28 PM,Code 2 Transport,06/13/2013 05:46:46 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7908072518613, -122.411643005339)",131640273-58 -160721591,67,16028586,Medical Incident,03/12/2016,03/12/2016,03/12/2016 12:53:36 PM,03/12/2016 12:54:37 PM,03/12/2016 12:54:56 PM,03/12/2016 12:55:16 PM,03/12/2016 01:02:07 PM,03/12/2016 01:14:20 PM,03/12/2016 01:31:38 PM,Code 2 Transport,03/12/2016 02:24:39 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160721591-67 -131420279,E01,13048215,Traffic Collision,05/22/2013,05/22/2013,05/22/2013 04:01:27 PM,05/22/2013 04:02:49 PM,05/22/2013 04:03:15 PM,05/22/2013 04:04:32 PM,05/22/2013 04:06:37 PM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,Other,05/22/2013 04:23:09 PM,JONES ST/TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",131420279-E01 -160410389,62,16016307,Medical Incident,02/10/2016,02/09/2016,02/10/2016 05:11:30 AM,02/10/2016 05:13:53 AM,02/10/2016 05:16:46 AM,02/10/2016 05:17:04 AM,02/10/2016 05:21:27 AM,02/10/2016 05:35:32 AM,02/10/2016 05:51:11 AM,Code 2 Transport,02/10/2016 06:28:45 AM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7101932992299, -122.416700898623)",160410389-62 -110040346,T19,11001433,Alarms,01/04/2011,01/04/2011,01/04/2011 07:53:24 PM,01/04/2011 07:54:14 PM,01/04/2011 07:55:14 PM,01/04/2011 07:57:29 PM,01/04/2011 08:02:09 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/04/2011 08:09:43 PM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,,1,TRUCK,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",110040346-T19 -130940020,87,13031335,Medical Incident,04/04/2013,04/03/2013,04/04/2013 02:09:25 AM,04/04/2013 02:10:54 AM,04/04/2013 02:11:27 AM,04/04/2013 02:11:51 AM,04/04/2013 02:19:44 AM,04/04/2013 02:30:12 AM,04/04/2013 02:59:09 AM,Code 2 Transport,04/04/2013 03:15:31 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",130940020-87 -160731934,KM11,16029020,Medical Incident,03/13/2016,03/13/2016,03/13/2016 04:13:49 PM,03/13/2016 04:14:50 PM,03/13/2016 04:16:14 PM,03/13/2016 04:17:13 PM,03/13/2016 04:20:51 PM,03/13/2016 04:40:34 PM,03/13/2016 05:07:01 PM,Code 2 Transport,03/13/2016 05:18:10 PM,1200 Block of LAGUNA ST,San Francisco,94109,B02,5,3366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",160731934-KM11 -110740039,E26,11024241,Medical Incident,03/15/2011,03/14/2011,03/15/2011 04:25:48 AM,03/15/2011 04:28:39 AM,03/15/2011 04:29:04 AM,03/15/2011 04:33:31 AM,03/15/2011 04:39:45 AM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/15/2011 04:48:21 AM,100 Block of HAMERTON AVE,SF,94131,B10,26,8213,3,3,3,true,,1,ENGINE,2,9,8,West of Twin Peaks,"(37.7334365327686, -122.437842254623)",110740039-E26 -132860019,E03,13097131,Medical Incident,10/13/2013,10/12/2013,10/13/2013 01:31:36 AM,10/13/2013 01:31:36 AM,10/13/2013 01:34:52 AM,10/13/2013 01:36:46 AM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/13/2013 01:40:14 AM,BUSH ST/POLK ST,SF,94109,B04,3,1636,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",132860019-E03 -113570238,T13,11118630,Medical Incident,12/23/2011,12/23/2011,12/23/2011 12:04:19 PM,12/23/2011 12:05:03 PM,12/23/2011 12:05:30 PM,12/23/2011 12:06:09 PM,12/23/2011 12:07:53 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 12:21:18 PM,100 Block of DRUMM ST,SF,94111,B01,13,1115,3,2,2,true,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",113570238-T13 -140010480,E41,14000404,Gas Leak (Natural and LP Gases),01/01/2014,01/01/2014,01/01/2014 04:42:31 PM,01/01/2014 04:43:34 PM,01/01/2014 04:43:43 PM,01/01/2014 04:44:59 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/01/2014 04:45:29 PM,1100 Block of BUSH ST,SF,94109,B01,41,1542,,3,3,false,Alarm,1,ENGINE,4,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",140010480-E41 -111650362,E13,11054588,Medical Incident,06/14/2011,06/14/2011,06/14/2011 08:41:47 PM,06/14/2011 08:42:57 PM,06/14/2011 08:43:55 PM,06/14/2011 08:44:55 PM,06/14/2011 08:46:06 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/14/2011 09:00:36 PM,600 Block of CLAY ST,SF,94111,B01,13,1233,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7946138635465, -122.403978967807)",111650362-E13 -133130153,AM24,13106343,Medical Incident,11/09/2013,11/09/2013,11/09/2013 10:15:51 AM,11/09/2013 10:16:13 AM,11/09/2013 10:16:31 AM,11/09/2013 10:17:13 AM,11/09/2013 10:22:21 AM,11/09/2013 10:49:32 AM,11/09/2013 11:09:20 AM,Code 2 Transport,11/09/2013 11:43:27 AM,300 Block of ROOSEVELT WAY,SF,94114,B05,6,5175,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7649307776933, -122.442869421813)",133130153-AM24 -110950010,E25,11031409,Structure Fire,04/05/2011,04/04/2011,04/05/2011 12:57:33 AM,04/05/2011 12:57:33 AM,04/05/2011 12:57:49 AM,04/05/2011 12:58:56 AM,04/05/2011 01:02:15 AM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,Fire,04/05/2011 01:02:30 AM,100 Block of CASHMERE ST,SF,94124,B10,25,6522,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7361378413976, -122.384574623049)",110950010-E25 -140100414,81,14003690,Medical Incident,01/10/2014,01/10/2014,01/10/2014 11:45:04 PM,01/10/2014 11:47:11 PM,01/10/2014 11:47:39 PM,01/10/2014 11:48:12 PM,01/10/2014 11:57:29 PM,01/11/2014 12:16:38 AM,01/11/2014 12:47:57 AM,Code 2 Transport,01/11/2014 01:20:25 AM,2000 Block of FILLMORE ST,SF,94115,B04,38,3543,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7884369454792, -122.433675045444)",140100414-81 -130710084,AM06,13023616,Structure Fire,03/12/2013,03/12/2013,03/12/2013 08:53:45 AM,03/12/2013 08:53:45 AM,03/12/2013 08:58:49 AM,03/12/2013 08:59:26 AM,03/12/2013 09:02:38 AM,03/12/2013 09:12:00 AM,03/12/2013 09:23:09 AM,Code 2 Transport,03/12/2013 09:57:05 AM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,false,Alarm,1,PRIVATE,3,3,6,South of Market,"(37.7812876870909, -122.411318055371)",130710084-AM06 -140350426,96,14012029,Medical Incident,02/04/2014,02/04/2014,02/04/2014 09:30:57 PM,02/04/2014 09:32:04 PM,02/04/2014 09:32:12 PM,02/04/2014 09:32:17 PM,02/04/2014 09:34:09 PM,02/04/2014 10:03:36 PM,02/04/2014 10:08:04 PM,Code 2 Transport,02/04/2014 10:28:52 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",140350426-96 -160793114,54,16031507,Medical Incident,03/19/2016,03/19/2016,03/19/2016 06:02:16 PM,03/19/2016 06:03:16 PM,03/19/2016 06:03:59 PM,03/19/2016 06:04:12 PM,03/19/2016 06:09:44 PM,03/19/2016 06:22:11 PM,03/19/2016 06:44:26 PM,Code 2 Transport,03/19/2016 07:17:43 PM,MARKET ST/9TH ST,San Francisco,94103,B02,36,1646,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",160793114-54 -113420056,66,11113295,Structure Fire,12/08/2011,12/07/2011,12/08/2011 06:25:54 AM,12/08/2011 06:28:48 AM,12/08/2011 06:28:55 AM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/08/2011 06:38:15 AM,500 Block of BURNETT AVE,SF,94131,B06,24,5281,3,3,3,true,,1,MEDIC,8,6,8,Twin Peaks,"(37.7522092988242, -122.444482891572)",113420056-66 -160473653,53,16019127,Medical Incident,02/16/2016,02/16/2016,02/16/2016 09:08:40 PM,02/16/2016 09:09:43 PM,02/16/2016 09:10:17 PM,02/16/2016 09:10:17 PM,02/16/2016 09:16:46 PM,02/16/2016 09:47:37 PM,02/16/2016 09:47:57 PM,Code 2 Transport,02/16/2016 10:20:15 PM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160473653-53 -160863492,KM07,16034349,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:00:48 PM,03/26/2016 09:02:54 PM,03/26/2016 09:04:01 PM,03/26/2016 09:04:30 PM,03/26/2016 09:08:34 PM,03/26/2016 09:25:34 PM,03/26/2016 09:39:47 PM,Code 2 Transport,03/26/2016 10:10:23 PM,600 Block of MARKET ST,San Francisco,94104,B03,1,2211,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",160863492-KM07 -132470155,87,13083304,Medical Incident,09/04/2013,09/04/2013,09/04/2013 11:05:15 AM,09/04/2013 11:06:52 AM,09/04/2013 11:07:32 AM,09/04/2013 11:07:36 AM,09/04/2013 11:16:42 AM,09/04/2013 11:39:39 AM,09/04/2013 11:52:54 AM,Code 2 Transport,09/04/2013 12:29:33 PM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",132470155-87 -113630125,E21,11120544,Medical Incident,12/29/2011,12/29/2011,12/29/2011 11:31:36 AM,12/29/2011 11:32:03 AM,12/29/2011 11:32:43 AM,12/29/2011 11:33:32 AM,12/29/2011 11:35:25 AM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/29/2011 11:46:57 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",113630125-E21 -133620031,E35,13122867,Medical Incident,12/28/2013,12/27/2013,12/28/2013 02:13:59 AM,12/28/2013 02:14:14 AM,12/28/2013 02:14:35 AM,12/28/2013 02:16:11 AM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 02:19:23 AM,0 Block of MISSION ST,SF,94105,B03,35,2131,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7935385958356, -122.392889145798)",133620031-E35 -160450892,74,16018040,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:19:26 AM,02/14/2016 08:21:01 AM,02/14/2016 08:35:33 AM,02/14/2016 08:35:41 AM,02/14/2016 08:40:48 AM,02/14/2016 08:55:52 AM,02/14/2016 09:05:33 AM,Code 2 Transport,02/14/2016 09:30:01 AM,1100 Block of MCALLISTER ST,San Francisco,94115,B02,5,3425,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7788506690436, -122.430485430914)",160450892-74 -160452991,52,16018261,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:52:39 PM,02/14/2016 07:54:08 PM,02/14/2016 07:54:23 PM,02/14/2016 07:54:34 PM,02/14/2016 07:59:58 PM,02/14/2016 08:17:33 PM,02/14/2016 08:23:22 PM,Code 2 Transport,02/14/2016 09:03:35 PM,0 Block of CENTRAL AV,San Francisco,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7692123967769, -122.443477161647)",160452991-52 -110880240,99,11029092,Medical Incident,03/29/2011,03/29/2011,03/29/2011 03:12:30 PM,03/29/2011 03:15:45 PM,03/29/2011 03:18:04 PM,03/29/2011 03:28:30 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 03:32:27 PM,100 Block of OAK ST,SF,94102,B02,36,3266,1,1,2,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7751828010225, -122.421790707519)",110880240-99 -123330151,T05,12110632,Alarms,11/28/2012,11/28/2012,11/28/2012 11:31:46 AM,11/28/2012 11:32:44 AM,11/28/2012 11:33:05 AM,04/25/2016 01:55:36 PM,11/28/2012 11:34:40 AM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/28/2012 11:42:35 AM,800 Block of HAYES ST,SF,94117,B02,5,3522,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",123330151-T05 -122490138,RS1,12082315,Medical Incident,09/05/2012,09/05/2012,09/05/2012 12:04:11 PM,09/05/2012 12:05:28 PM,09/05/2012 12:05:45 PM,09/05/2012 12:06:32 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,04/25/2016 01:56:54 PM,Other,09/05/2012 12:08:37 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",122490138-RS1 -131880324,66,13064221,Medical Incident,07/07/2013,07/07/2013,07/07/2013 08:35:59 PM,07/07/2013 08:38:28 PM,07/07/2013 08:38:42 PM,07/07/2013 08:38:50 PM,07/07/2013 08:44:50 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 09:00:09 PM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",131880324-66 -102430175,KM15,10076625,Medical Incident,08/31/2010,08/31/2010,08/31/2010 12:05:02 PM,08/31/2010 12:08:39 PM,08/31/2010 12:23:30 PM,08/31/2010 12:30:42 PM,08/31/2010 12:40:23 PM,08/31/2010 12:55:05 PM,08/31/2010 01:12:21 PM,Code 2 Transport,08/31/2010 01:38:55 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,1,1,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",102430175-KM15 -160851585,88,16033747,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:53:33 AM,03/25/2016 11:55:59 AM,03/25/2016 11:58:02 AM,03/25/2016 11:58:30 AM,03/25/2016 12:04:14 PM,03/25/2016 12:18:52 PM,03/25/2016 12:32:48 PM,Code 2 Transport,03/25/2016 01:04:13 PM,0 Block of MORAGA AVE,Presidio,94129,B99,51,4626,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.7975035110849, -122.458535633981)",160851585-88 -160341048,79,16013311,Medical Incident,02/03/2016,02/03/2016,02/03/2016 09:58:19 AM,02/03/2016 10:01:07 AM,02/03/2016 10:02:10 AM,02/03/2016 10:02:46 AM,02/03/2016 10:14:51 AM,02/03/2016 10:57:05 AM,02/03/2016 11:18:46 AM,Code 2 Transport,02/03/2016 12:08:21 PM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160341048-79 -112760068,AP,11091263,Other,10/03/2011,10/02/2011,10/03/2011 06:43:59 AM,10/03/2011 06:43:59 AM,10/03/2011 06:43:59 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Fire,10/03/2011 06:44:22 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",112760068-AP -160603804,64,16024128,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:18:20 PM,02/29/2016 11:18:20 PM,02/29/2016 11:18:36 PM,02/29/2016 11:18:48 PM,02/29/2016 11:36:21 PM,03/01/2016 12:14:29 AM,03/01/2016 12:21:29 AM,Other,03/01/2016 01:30:04 AM,24TH ST/TREAT AV,San Francisco,94110,B06,7,5527,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7525727580898, -122.41299517484)",160603804-64 -130290352,T15,13010052,Traffic Collision,01/29/2013,01/29/2013,01/29/2013 08:53:42 PM,01/29/2013 08:55:11 PM,01/29/2013 09:03:38 PM,01/29/2013 09:04:41 PM,01/29/2013 09:08:14 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/29/2013 09:14:16 PM,200 Block of SAN JOSE AVE,SF,94110,B09,33,8371,2,2,2,false,Non Life-threatening,1,TRUCK,3,6,8,Mission,"(37.7512439644709, -122.421585334305)",130290352-T15 -140300298,E23,14010302,Other,01/30/2014,01/30/2014,01/30/2014 06:23:31 PM,01/30/2014 06:25:03 PM,01/30/2014 06:25:14 PM,01/30/2014 06:27:05 PM,01/30/2014 06:28:58 PM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Fire,01/30/2014 06:48:39 PM,1300 Block of 46TH AVE,SF,94122,B08,23,7721,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7613577781783, -122.505924512458)",140300298-E23 -111150373,E51,11038100,Alarms,04/25/2011,04/25/2011,04/25/2011 09:37:25 PM,04/25/2011 09:38:05 PM,04/25/2011 09:38:41 PM,04/25/2011 09:39:58 PM,04/25/2011 09:40:35 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 09:46:44 PM,200 Block of LINCOLN BLVD,PR,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8015231495142, -122.455935974002)",111150373-E51 -123130197,E03,12104146,Alarms,11/08/2012,11/08/2012,11/08/2012 12:49:24 PM,11/08/2012 12:50:48 PM,11/08/2012 12:50:59 PM,11/08/2012 12:52:47 PM,11/08/2012 12:56:27 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 01:06:45 PM,600 Block of NATOMA ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7774997276449, -122.410999268699)",123130197-E03 -160911098,79,16036019,Medical Incident,03/31/2016,03/31/2016,03/31/2016 10:08:47 AM,03/31/2016 10:10:45 AM,03/31/2016 10:11:11 AM,03/31/2016 10:11:19 AM,03/31/2016 10:19:42 AM,03/31/2016 10:42:10 AM,03/31/2016 11:02:19 AM,Code 2 Transport,03/31/2016 11:47:30 AM,200 Block of DRAKE ST,San Francisco,94112,B09,43,6227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.708780112841, -122.435517133765)",160911098-79 -160814023,65,16032399,Citizen Assist / Service Call,03/21/2016,03/21/2016,03/21/2016 11:02:42 PM,03/21/2016 11:05:51 PM,03/21/2016 11:07:13 PM,03/21/2016 11:08:07 PM,03/21/2016 11:24:39 PM,03/21/2016 11:44:33 PM,03/21/2016 11:51:25 PM,Code 2 Transport,03/22/2016 12:30:59 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Alarm,1,MEDIC,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",160814023-65 -112890114,E14,11095821,Medical Incident,10/16/2011,10/16/2011,10/16/2011 09:25:40 AM,10/16/2011 09:27:27 AM,10/16/2011 09:29:01 AM,10/16/2011 09:29:43 AM,10/16/2011 09:33:05 AM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 09:53:48 AM,600 Block of 33RD AVE,SF,94121,B07,14,7244,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7768393829407, -122.493175110923)",112890114-E14 -110640304,E15,11021176,Medical Incident,03/05/2011,03/05/2011,03/05/2011 05:19:21 PM,03/05/2011 05:19:49 PM,03/05/2011 05:21:12 PM,03/05/2011 05:23:00 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 05:24:26 PM,200 Block of ASHTON AVE,SF,94132,B09,15,8434,3,3,3,true,,1,ENGINE,3,9,7,West of Twin Peaks,"(37.7224242445103, -122.462337293434)",110640304-E15 -130760073,E44,13025295,Medical Incident,03/17/2013,03/16/2013,03/17/2013 04:53:10 AM,03/17/2013 04:54:42 AM,03/17/2013 04:55:08 AM,03/17/2013 04:57:03 AM,03/17/2013 05:00:20 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 05:11:13 AM,300 Block of TEDDY AVE,SF,94134,B09,44,6312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.715499055529, -122.409647993428)",130760073-E44 -112370374,58,11078355,Medical Incident,08/25/2011,08/25/2011,08/25/2011 09:35:27 PM,08/25/2011 09:36:30 PM,08/25/2011 09:36:38 PM,08/25/2011 09:41:20 PM,08/25/2011 09:41:38 PM,08/25/2011 09:59:45 PM,08/25/2011 10:11:59 PM,Code 2 Transport,08/25/2011 10:26:43 PM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",112370374-58 -121640216,E01,12054425,Medical Incident,06/12/2012,06/12/2012,06/12/2012 02:49:49 PM,06/12/2012 02:51:09 PM,06/12/2012 02:51:29 PM,06/12/2012 02:53:46 PM,06/12/2012 02:55:22 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 03:01:25 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",121640216-E01 -91290312,E34,9038266,Other,05/09/2009,05/09/2009,05/09/2009 09:09:14 PM,05/09/2009 09:10:23 PM,05/09/2009 09:10:36 PM,05/09/2009 09:12:02 PM,05/09/2009 09:13:19 PM,04/25/2016 03:28:55 PM,04/25/2016 03:28:55 PM,Other,05/09/2009 09:36:48 PM,400 Block of 47TH AVE,SF,94121,B07,34,7313,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794714478026, -122.508264739771)",091290312-E34 -130260088,E31,13008906,Medical Incident,01/26/2013,01/25/2013,01/26/2013 07:43:58 AM,01/26/2013 07:44:51 AM,01/26/2013 07:45:07 AM,01/26/2013 07:47:15 AM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,04/25/2016 01:54:37 PM,Other,01/26/2013 07:49:22 AM,EDWARD ST/ARGUELLO BL,SF,94118,B07,31,7112,3,2,2,false,Non Life-threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7780083487713, -122.45863789522)",130260088-E31 -140390158,KM09,14013160,Medical Incident,02/08/2014,02/08/2014,02/08/2014 11:28:19 AM,02/08/2014 11:29:02 AM,02/08/2014 11:29:59 AM,02/08/2014 11:30:22 AM,02/08/2014 12:02:20 PM,02/08/2014 12:05:33 PM,02/08/2014 12:23:51 PM,Code 2 Transport,02/08/2014 12:50:08 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",140390158-KM09 -112810212,AP,11093028,Other,10/08/2011,10/08/2011,10/08/2011 01:57:16 PM,10/08/2011 01:57:16 PM,10/08/2011 01:57:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Fire,10/08/2011 01:57:38 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",112810212-AP -110680356,E03,11022441,Medical Incident,03/09/2011,03/09/2011,03/09/2011 05:00:49 PM,03/09/2011 05:02:56 PM,03/09/2011 05:04:23 PM,03/09/2011 05:05:28 PM,03/09/2011 05:07:36 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/09/2011 05:12:33 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",110680356-E03 -120230202,81,12007809,Medical Incident,01/23/2012,01/23/2012,01/23/2012 01:24:17 PM,01/23/2012 01:24:48 PM,01/23/2012 01:25:23 PM,01/23/2012 01:28:04 PM,01/23/2012 01:43:36 PM,01/23/2012 01:53:55 PM,01/23/2012 02:07:20 PM,Code 2 Transport,01/23/2012 02:30:02 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",120230202-81 -123070297,E26,12102107,Medical Incident,11/02/2012,11/02/2012,11/02/2012 05:52:14 PM,11/02/2012 05:53:42 PM,11/02/2012 05:54:02 PM,11/02/2012 05:55:27 PM,11/02/2012 05:58:41 PM,04/25/2016 01:55:59 PM,04/25/2016 01:55:59 PM,Patient Declined Transport,11/02/2012 06:07:06 PM,500 Block of LAIDLEY ST,SF,94131,B06,26,8111,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Glen Park,"(37.7355907204076, -122.431668474022)",123070297-E26 -102770014,E10,10087937,Alarms,10/04/2010,10/03/2010,10/04/2010 02:40:10 AM,10/04/2010 02:41:06 AM,10/04/2010 02:41:12 AM,10/04/2010 02:42:51 AM,10/04/2010 02:46:08 AM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/04/2010 02:49:00 AM,3700 Block of WASHINGTON ST,SF,94118,B07,10,4433,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7889392689062, -122.454758818504)",102770014-E10 -130280351,E38,13009736,Other,01/28/2013,01/28/2013,01/28/2013 07:55:07 PM,01/28/2013 07:55:59 PM,01/28/2013 07:56:34 PM,01/28/2013 07:57:24 PM,01/28/2013 07:59:55 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Fire,01/28/2013 08:11:15 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,Alarm,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",130280351-E38 -140850194,T07,14028637,Medical Incident,03/26/2014,03/26/2014,03/26/2014 01:19:28 PM,03/26/2014 01:20:34 PM,03/26/2014 01:21:15 PM,03/26/2014 01:22:19 PM,03/26/2014 01:24:46 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/26/2014 01:31:51 PM,2800 Block of FOLSOM ST,SAN FRANCISCO,94110,B06,7,5526,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,6,9,Mission,"(37.7516999794245, -122.414074863195)",140850194-T07 -121250002,92,12041356,Medical Incident,05/04/2012,05/03/2012,05/04/2012 12:00:35 AM,05/04/2012 12:00:35 AM,05/04/2012 12:00:56 AM,05/04/2012 12:01:18 AM,05/04/2012 12:12:22 AM,05/04/2012 12:24:50 AM,05/04/2012 12:34:19 AM,Code 2 Transport,05/04/2012 12:47:01 AM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",121250002-92 -123510219,85,12117422,Medical Incident,12/16/2012,12/16/2012,12/16/2012 02:22:27 PM,12/16/2012 02:23:08 PM,12/16/2012 02:23:20 PM,12/16/2012 02:23:39 PM,12/16/2012 02:26:12 PM,12/16/2012 02:36:18 PM,12/16/2012 02:45:17 PM,Code 2 Transport,12/16/2012 03:15:16 PM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7619675295768, -122.417178937573)",123510219-85 -160401318,60,16015980,Medical Incident,02/09/2016,02/09/2016,02/09/2016 10:50:11 AM,02/09/2016 10:50:54 AM,02/09/2016 10:51:27 AM,02/09/2016 10:51:47 AM,02/09/2016 10:57:43 AM,02/09/2016 11:10:11 AM,02/09/2016 11:14:37 AM,Code 2 Transport,02/09/2016 11:55:53 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160401318-60 -121750410,E07,12058306,Medical Incident,06/23/2012,06/23/2012,06/23/2012 09:58:12 PM,06/23/2012 10:00:30 PM,06/23/2012 10:00:42 PM,06/23/2012 10:02:06 PM,06/23/2012 10:03:54 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/23/2012 10:12:16 PM,2800 Block of 21ST ST,SF,94110,B06,7,545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7575119857155, -122.411891416138)",121750410-E07 -160221209,KM02,16008721,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:24:59 AM,01/22/2016 10:31:04 AM,01/22/2016 10:32:10 AM,01/22/2016 10:32:39 AM,01/22/2016 10:46:34 AM,01/22/2016 11:12:49 AM,01/22/2016 11:50:17 AM,Code 2 Transport,01/22/2016 12:21:08 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7677331022924, -122.415606951318)",160221209-KM02 -130840175,E44,13028039,Medical Incident,03/25/2013,03/25/2013,03/25/2013 12:09:33 PM,03/25/2013 12:10:44 PM,03/25/2013 12:13:18 PM,03/25/2013 12:14:04 PM,03/25/2013 12:19:32 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,Other,03/25/2013 12:26:28 PM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,9,Portola,"(37.7246523794049, -122.402288649686)",130840175-E44 -160672772,85,16026861,Medical Incident,03/07/2016,03/07/2016,03/07/2016 06:36:45 PM,03/07/2016 06:37:23 PM,03/07/2016 06:41:34 PM,03/07/2016 06:41:34 PM,03/07/2016 06:50:05 PM,03/07/2016 07:07:12 PM,03/07/2016 07:17:46 PM,Code 2 Transport,03/07/2016 07:59:02 PM,14TH ST/MISSION ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",160672772-85 -103190169,E23,10102236,Medical Incident,11/15/2010,11/15/2010,11/15/2010 11:32:24 AM,11/15/2010 11:32:48 AM,11/15/2010 11:33:24 AM,11/15/2010 11:33:46 AM,11/15/2010 11:35:18 AM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 12:25:09 PM,1700 Block of 31ST AVE,SF,94122,B08,18,7534,3,1,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7546105806532, -122.489322158112)",103190169-E23 -122390026,E01,12079001,Medical Incident,08/26/2012,08/25/2012,08/26/2012 01:23:11 AM,08/26/2012 01:24:44 AM,08/26/2012 01:25:09 AM,08/26/2012 01:27:07 AM,08/26/2012 01:29:33 AM,04/25/2016 01:57:03 PM,04/25/2016 01:57:03 PM,Unable to Locate,08/26/2012 01:34:18 AM,FOLSOM ST/5TH ST,SF,94107,B03,1,2244,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",122390026-E01 -122980100,B07,12098700,Structure Fire,10/24/2012,10/24/2012,10/24/2012 09:32:48 AM,10/24/2012 09:34:24 AM,10/24/2012 09:34:28 AM,10/24/2012 09:36:11 AM,10/24/2012 09:37:55 AM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/24/2012 09:57:02 AM,300 Block of 9TH AVE,SF,94118,B07,31,7135,3,3,3,false,Alarm,1,CHIEF,2,7,1,Inner Richmond,"(37.7818377800951, -122.467627461804)",122980100-B07 -110160325,81,11005458,Medical Incident,01/16/2011,01/16/2011,01/16/2011 08:52:52 PM,01/16/2011 08:53:01 PM,01/16/2011 08:53:28 PM,01/16/2011 08:53:38 PM,01/16/2011 09:01:14 PM,01/16/2011 09:24:25 PM,01/16/2011 09:41:33 PM,Code 2 Transport,01/16/2011 10:09:52 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",110160325-81 -160503487,88,16020255,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:50:58 PM,02/19/2016 08:53:09 PM,02/19/2016 08:53:17 PM,02/19/2016 08:53:22 PM,02/19/2016 08:56:18 PM,02/19/2016 09:09:29 PM,02/19/2016 09:15:02 PM,Code 2 Transport,02/19/2016 09:26:18 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160503487-88 -140350152,RC3,14011785,Traffic Collision,02/04/2014,02/04/2014,02/04/2014 10:58:06 AM,02/04/2014 10:58:32 AM,02/04/2014 11:01:09 AM,02/04/2014 11:02:00 AM,02/04/2014 11:16:12 AM,04/25/2016 01:48:23 PM,04/25/2016 01:48:23 PM,Medical Examiner,02/04/2014 01:02:00 PM,SUNSET BL/YORBA ST,SF,94116,B08,18,7553,,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7350234144441, -122.494014875893)",140350152-RC3 -131110022,E43,13037263,Structure Fire,04/21/2013,04/20/2013,04/21/2013 02:32:22 AM,04/21/2013 02:32:48 AM,04/21/2013 02:33:11 AM,04/21/2013 02:34:33 AM,04/21/2013 02:37:19 AM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 02:50:16 AM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,3,3,false,Alarm,1,ENGINE,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",131110022-E43 -133210299,E07,13109154,Medical Incident,11/17/2013,11/17/2013,11/17/2013 08:36:11 PM,11/17/2013 08:36:39 PM,11/17/2013 08:40:08 PM,11/17/2013 08:41:30 PM,11/17/2013 08:45:22 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 08:57:07 PM,3200 Block of 17TH ST,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7635887638425, -122.417913861876)",133210299-E07 -130740404,89,13024872,Medical Incident,03/15/2013,03/15/2013,03/15/2013 11:41:44 PM,03/15/2013 11:42:17 PM,03/15/2013 11:42:37 PM,03/15/2013 11:42:59 PM,03/15/2013 11:50:19 PM,03/16/2013 12:08:14 AM,03/16/2013 12:21:11 AM,Code 2 Transport,03/16/2013 01:00:28 AM,PAGE ST/WEBSTER ST,SF,94102,B05,6,3531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7732477996527, -122.428990053871)",130740404-89 -160274125,AM16,16010907,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:35:27 PM,01/27/2016 11:39:42 PM,01/27/2016 11:41:17 PM,01/27/2016 11:41:58 PM,01/27/2016 11:46:39 PM,01/28/2016 12:01:22 AM,01/28/2016 12:26:02 AM,Code 2 Transport,01/28/2016 12:48:50 AM,2800 Block of JUDAH ST,San Francisco,94122,B08,23,7541,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7610707511249, -122.492536634443)",160274125-AM16 -160591255,75,16023476,Medical Incident,02/28/2016,02/28/2016,02/28/2016 11:06:44 AM,02/28/2016 11:08:06 AM,02/28/2016 11:08:19 AM,02/28/2016 11:08:27 AM,02/28/2016 11:19:03 AM,02/28/2016 11:30:21 AM,02/28/2016 11:42:07 AM,Code 2 Transport,02/28/2016 12:41:10 PM,1100 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",160591255-75 -160280555,KM08,16010977,Medical Incident,01/28/2016,01/27/2016,01/28/2016 07:11:37 AM,01/28/2016 07:11:37 AM,01/28/2016 07:12:10 AM,01/28/2016 07:13:08 AM,01/28/2016 07:43:21 AM,01/28/2016 08:05:50 AM,01/28/2016 08:43:39 AM,Code 2 Transport,01/28/2016 09:08:49 AM,300 Block of KING ST,San Francisco,94158,B03,8,2236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",160280555-KM08 -130900180,94,13030112,Medical Incident,03/31/2013,03/31/2013,03/31/2013 01:01:37 PM,03/31/2013 01:04:24 PM,03/31/2013 01:04:52 PM,03/31/2013 01:05:10 PM,03/31/2013 01:22:54 PM,03/31/2013 01:32:01 PM,03/31/2013 01:34:28 PM,Code 2 Transport,03/31/2013 01:58:13 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",130900180-94 -110430084,B02,11014184,Alarms,02/12/2011,02/11/2011,02/12/2011 04:29:21 AM,02/12/2011 04:30:53 AM,02/12/2011 04:31:10 AM,02/12/2011 04:33:22 AM,02/12/2011 04:35:31 AM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 04:40:39 AM,400 Block of SCOTT ST,SF,94117,B05,21,4141,3,3,3,false,,1,CHIEF,2,5,5,Hayes Valley,"(37.7738199257134, -122.43577759366)",110430084-B02 -112870316,65,11095254,Medical Incident,10/14/2011,10/14/2011,10/14/2011 04:37:20 PM,10/14/2011 04:38:52 PM,10/14/2011 04:42:18 PM,04/25/2016 02:02:10 PM,10/14/2011 05:16:28 PM,10/14/2011 05:38:20 PM,10/14/2011 05:47:02 PM,Code 2 Transport,10/14/2011 06:10:21 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,1,1,2,true,,1,MEDIC,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",112870316-65 -160621282,54,16024651,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:44:01 AM,03/02/2016 10:44:50 AM,03/02/2016 10:45:15 AM,03/02/2016 10:45:30 AM,03/02/2016 10:52:36 AM,03/02/2016 10:55:32 AM,03/02/2016 11:23:47 AM,Code 2 Transport,03/02/2016 11:53:54 AM,2100 Block of 32ND AVE,San Francisco,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7470947465854, -122.490012839631)",160621282-54 -121370330,E07,12045633,Structure Fire,05/16/2012,05/16/2012,05/16/2012 06:37:36 PM,05/16/2012 06:38:03 PM,05/16/2012 06:38:35 PM,05/16/2012 06:40:56 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/16/2012 06:45:38 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,Fire,1,ENGINE,8,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",121370330-E07 -121840209,B02,12061318,Alarms,07/02/2012,07/02/2012,07/02/2012 02:53:41 PM,07/02/2012 02:53:47 PM,07/02/2012 02:54:00 PM,07/02/2012 02:55:11 PM,07/02/2012 02:56:37 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Fire,07/02/2012 03:09:15 PM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",121840209-B02 -160640641,85,16025389,Medical Incident,03/04/2016,03/03/2016,03/04/2016 07:19:24 AM,03/04/2016 07:20:57 AM,03/04/2016 07:24:00 AM,03/04/2016 07:24:05 AM,03/04/2016 07:33:57 AM,03/04/2016 07:51:51 AM,03/04/2016 08:11:12 AM,Code 2 Transport,03/04/2016 09:00:17 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160640641-85 -130810178,89,13027108,Medical Incident,03/22/2013,03/22/2013,03/22/2013 01:00:14 PM,03/22/2013 01:02:00 PM,03/22/2013 01:02:47 PM,03/22/2013 01:02:52 PM,03/22/2013 01:09:12 PM,03/22/2013 01:17:45 PM,03/22/2013 01:31:41 PM,Code 2 Transport,03/22/2013 02:12:27 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",130810178-89 -160301439,KM08,16011751,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:53:13 AM,01/30/2016 10:53:13 AM,01/30/2016 10:54:21 AM,01/30/2016 10:57:01 AM,01/30/2016 11:13:28 AM,01/30/2016 11:22:39 AM,01/30/2016 11:59:22 AM,Code 2 Transport,01/30/2016 12:40:01 PM,600 Block of MARKET ST,San Francisco,94105,B03,1,2158,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",160301439-KM08 -160690973,KM01,16027392,Medical Incident,03/09/2016,03/09/2016,03/09/2016 09:33:14 AM,03/09/2016 09:35:44 AM,03/09/2016 09:35:59 AM,03/09/2016 09:36:32 AM,03/09/2016 09:54:05 AM,03/09/2016 10:07:05 AM,03/09/2016 10:20:49 AM,Code 2 Transport,03/09/2016 11:00:54 AM,400 Block of MINNA ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7810688918781, -122.407387172098)",160690973-KM01 -131220074,E36,13040924,Alarms,05/02/2013,05/01/2013,05/02/2013 06:28:20 AM,05/02/2013 06:30:05 AM,05/02/2013 06:30:34 AM,05/02/2013 06:32:03 AM,05/02/2013 06:33:10 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Other,05/02/2013 06:40:18 AM,700 Block of VAN NESS AVE,SF,94102,B02,3,3163,3,3,3,false,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7821664550649, -122.420830648843)",131220074-E36 -112930085,85,11097127,Medical Incident,10/20/2011,10/20/2011,10/20/2011 09:27:50 AM,10/20/2011 09:30:35 AM,10/20/2011 09:31:08 AM,10/20/2011 09:31:37 AM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 09:32:42 AM,1400 Block of 26TH AVE,SF,94122,B08,22,7453,1,1,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7604386722606, -122.484361591093)",112930085-85 -111920138,59,11063348,Medical Incident,07/11/2011,07/11/2011,07/11/2011 11:13:40 AM,07/11/2011 11:14:36 AM,07/11/2011 11:15:41 AM,07/11/2011 11:17:20 AM,07/11/2011 11:17:29 AM,07/11/2011 11:45:58 AM,07/11/2011 11:53:22 AM,Code 2 Transport,07/11/2011 12:30:52 PM,3200 Block of STEINER ST,SF,94123,B04,16,3566,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.7989248224108, -122.437621392217)",111920138-59 -103010273,E17,10096170,Medical Incident,10/28/2010,10/28/2010,10/28/2010 03:25:30 PM,10/28/2010 03:25:31 PM,10/28/2010 03:25:59 PM,10/28/2010 03:26:59 PM,10/28/2010 03:29:15 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Other,10/28/2010 03:42:00 PM,4500 Block of 3RD ST,SF,94124,B10,17,6515,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7367493649191, -122.389874761395)",103010273-E17 -160681290,88,16027088,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:52:36 AM,03/08/2016 10:53:00 AM,03/08/2016 10:53:28 AM,03/08/2016 10:53:39 AM,03/08/2016 10:56:56 AM,03/08/2016 11:08:05 AM,03/08/2016 11:22:52 AM,Code 2 Transport,03/08/2016 11:37:05 AM,ASHBURY ST/FELL ST,San Francisco,94117,B05,21,4514,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.772790452811, -122.447497243592)",160681290-88 -160443360,78,16017857,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:41:46 PM,02/13/2016 08:41:46 PM,02/13/2016 08:42:10 PM,02/13/2016 08:42:18 PM,02/13/2016 09:01:08 PM,02/13/2016 09:01:11 PM,02/13/2016 09:04:43 PM,Code 3 Transport,02/13/2016 09:52:49 PM,KIRKWOOD AV/MENDELL ST,San Francisco,94124,B10,25,6467,A,E,3,true,Potentially Life-Threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7371063767658, -122.388090826716)",160443360-78 -131970287,85,13066908,Medical Incident,07/16/2013,07/16/2013,07/16/2013 05:45:50 PM,07/16/2013 05:47:37 PM,07/16/2013 06:19:40 PM,04/25/2016 01:51:46 PM,07/16/2013 06:31:33 PM,07/16/2013 06:39:31 PM,07/16/2013 06:46:59 PM,Code 2 Transport,07/16/2013 07:27:45 PM,200 Block of JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",131970287-85 -131720304,78,13058497,Medical Incident,06/21/2013,06/21/2013,06/21/2013 08:12:51 PM,06/21/2013 08:13:39 PM,06/21/2013 08:14:04 PM,06/21/2013 08:14:10 PM,06/21/2013 08:20:01 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Against Medical Advice,06/21/2013 08:56:14 PM,500 Block of POST ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7879229520297, -122.410867072295)",131720304-78 -131060270,KM11,13035701,Medical Incident,04/16/2013,04/16/2013,04/16/2013 04:30:04 PM,04/16/2013 04:33:02 PM,04/16/2013 04:47:32 PM,04/25/2016 01:53:17 PM,04/16/2013 04:54:55 PM,04/16/2013 05:15:59 PM,04/16/2013 05:27:15 PM,Code 2 Transport,04/16/2013 06:13:37 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131060270-KM11 -120020264,T06,12000811,Structure Fire,01/02/2012,01/02/2012,01/02/2012 06:34:55 PM,01/02/2012 06:35:49 PM,01/02/2012 06:36:16 PM,01/02/2012 06:37:26 PM,01/02/2012 06:39:37 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Other,01/02/2012 06:51:55 PM,MARKET ST/DOUGLASS ST,SF,94114,B05,6,5254,3,3,3,false,Fire,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7614245661086, -122.439413851523)",120020264-T06 -103250343,E13,10104321,Other,11/21/2010,11/21/2010,11/21/2010 10:23:38 PM,11/21/2010 10:24:10 PM,11/21/2010 10:24:28 PM,11/21/2010 10:25:17 PM,11/21/2010 10:30:47 PM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Fire,11/21/2010 10:34:49 PM,600 Block of THE EMBARCADERO,SF,94111,B01,13,909,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",103250343-E13 -160340092,70,16013210,Medical Incident,02/03/2016,02/02/2016,02/03/2016 12:47:11 AM,02/03/2016 12:47:11 AM,02/03/2016 12:50:36 AM,02/03/2016 12:51:15 AM,02/03/2016 01:12:11 AM,02/03/2016 01:12:15 AM,02/03/2016 01:24:08 AM,Code 2 Transport,02/03/2016 01:41:41 AM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7351844916326, -122.391493955999)",160340092-70 -160160514,AM24,16006297,Structure Fire,01/16/2016,01/15/2016,01/16/2016 04:17:47 AM,01/16/2016 04:17:47 AM,01/16/2016 04:22:35 AM,01/16/2016 04:23:18 AM,01/16/2016 04:26:20 AM,01/16/2016 04:36:48 AM,01/16/2016 04:56:39 AM,Code 2 Transport,01/16/2016 05:30:44 AM,LAGUNA ST/FULTON ST,San Francisco,94102,B02,5,3412,3,3,3,false,Alarm,1,PRIVATE,2,2,5,Hayes Valley,"(37.778328563042, -122.426641497595)",160160514-AM24 -110230277,73,11007669,Traffic Collision,01/23/2011,01/23/2011,01/23/2011 07:23:12 PM,01/23/2011 07:23:35 PM,01/23/2011 07:25:04 PM,01/23/2011 07:25:15 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/23/2011 07:32:52 PM,GEARY BL/29TH AV,SF,94121,B07,14,7226,2,2,2,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7798905753776, -122.489013490407)",110230277-73 -122060299,B07,12068588,Alarms,07/24/2012,07/24/2012,07/24/2012 06:32:30 PM,07/24/2012 06:33:24 PM,07/24/2012 06:33:33 PM,07/24/2012 06:35:38 PM,07/24/2012 06:38:45 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Other,07/24/2012 06:58:23 PM,600 Block of SPRUCE ST,SF,94118,B05,10,4374,3,3,3,false,Alarm,1,CHIEF,2,7,2,Presidio Heights,"(37.7828772925038, -122.453478866911)",122060299-B07 -131430301,RC2,13048597,Structure Fire,05/23/2013,05/23/2013,05/23/2013 06:02:27 PM,05/23/2013 06:03:46 PM,05/23/2013 06:09:20 PM,05/23/2013 06:09:57 PM,05/23/2013 06:17:30 PM,04/25/2016 01:52:39 PM,05/23/2013 06:52:29 PM,Other,05/23/2013 07:12:29 PM,4300 Block of KIRKHAM ST,SF,94122,B08,23,7717,3,3,3,true,Fire,1,RESCUE CAPTAIN,8,8,4,Sunset/Parkside,"(37.7585441184385, -122.507405939677)",131430301-RC2 -131980272,E02,13067223,Traffic Collision,07/17/2013,07/17/2013,07/17/2013 06:47:38 PM,07/17/2013 06:49:07 PM,07/17/2013 06:49:20 PM,07/17/2013 06:50:34 PM,07/17/2013 06:55:03 PM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/17/2013 06:56:12 PM,FRONT ST/MARKET ST,SF,94105,B01,13,1136,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7917160576835, -122.398264448196)",131980272-E02 -120310337,E11,12010405,Medical Incident,01/31/2012,01/31/2012,01/31/2012 09:49:42 PM,01/31/2012 09:52:01 PM,01/31/2012 09:52:25 PM,01/31/2012 09:53:50 PM,01/31/2012 09:56:44 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,01/31/2012 10:11:35 PM,3600 Block of 21ST ST,SF,94114,B06,11,5461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7564818532329, -122.429008644145)",120310337-E11 -120630333,E01,12020876,Medical Incident,03/03/2012,03/03/2012,03/03/2012 07:15:40 PM,03/03/2012 07:16:10 PM,03/03/2012 07:16:27 PM,03/03/2012 07:17:29 PM,03/03/2012 07:18:54 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/03/2012 07:21:36 PM,MARKET ST/3RD ST,SF,94103,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",120630333-E01 -121430218,E36,12047564,Medical Incident,05/22/2012,05/22/2012,05/22/2012 02:24:04 PM,05/22/2012 02:24:53 PM,05/22/2012 02:25:16 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 02:42:21 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7815374331217, -122.409518341416)",121430218-E36 -120490089,KM12,12016148,Structure Fire,02/18/2012,02/18/2012,02/18/2012 09:02:51 AM,02/18/2012 09:02:51 AM,02/18/2012 09:03:26 AM,02/18/2012 09:07:39 AM,02/18/2012 09:15:35 AM,02/18/2012 09:20:53 AM,02/18/2012 09:32:07 AM,Code 2 Transport,02/18/2012 09:44:16 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,false,Alarm,1,PRIVATE,2,6,9,Mission,"(37.7571666434801, -122.416719595074)",120490089-KM12 -160460718,79,16018420,Medical Incident,02/15/2016,02/14/2016,02/15/2016 07:56:07 AM,02/15/2016 07:56:56 AM,02/15/2016 07:57:05 AM,02/15/2016 07:57:17 AM,02/15/2016 08:02:16 AM,02/15/2016 08:15:49 AM,02/15/2016 08:32:07 AM,Code 2 Transport,02/15/2016 09:04:58 AM,500 Block of FRANCISCO ST,San Francisco,94133,B01,28,1434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8046368314261, -122.414251200714)",160460718-79 -160784086,60,16031219,Medical Incident,03/18/2016,03/18/2016,03/18/2016 11:11:36 PM,03/18/2016 11:13:37 PM,03/18/2016 11:15:47 PM,03/18/2016 11:16:06 PM,03/18/2016 11:26:49 PM,03/19/2016 12:08:12 AM,03/19/2016 12:51:17 AM,Code 2 Transport,03/19/2016 01:31:49 AM,100 Block of MARIETTA DR,San Francisco,94127,B09,39,8653,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7405892464069, -122.447460984391)",160784086-60 -160172183,81,16006894,Medical Incident,01/17/2016,01/17/2016,01/17/2016 03:51:26 PM,01/17/2016 03:53:19 PM,01/17/2016 03:55:45 PM,01/17/2016 03:55:55 PM,01/17/2016 04:03:43 PM,01/17/2016 04:17:52 PM,01/17/2016 04:26:57 PM,Code 2 Transport,01/17/2016 04:56:23 PM,3RD ST/MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",160172183-81 -130810113,T01,13027054,Structure Fire,03/22/2013,03/22/2013,03/22/2013 10:14:19 AM,03/22/2013 10:14:19 AM,03/22/2013 10:17:22 AM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 11:12:49 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Alarm,1,TRUCK,10,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130810113-T01 -122810190,E13,12092992,Traffic Collision,10/07/2012,10/07/2012,10/07/2012 12:28:36 PM,10/07/2012 12:29:16 PM,10/07/2012 12:29:33 PM,10/07/2012 12:31:19 PM,10/07/2012 12:32:12 PM,04/25/2016 01:56:25 PM,04/25/2016 01:56:25 PM,Other,10/07/2012 12:50:19 PM,700 Block of THE EMBARCADERO,SF,94111,B01,13,917,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",122810190-E13 -123010211,81,12099816,Medical Incident,10/27/2012,10/27/2012,10/27/2012 02:45:40 PM,10/27/2012 02:46:11 PM,10/27/2012 02:46:36 PM,10/27/2012 02:46:50 PM,10/27/2012 02:53:18 PM,10/27/2012 03:03:17 PM,10/27/2012 03:14:20 PM,Code 3 Transport,10/27/2012 03:54:19 PM,700 Block of HEAD ST,SF,94132,B09,33,8433,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7206855865381, -122.464541679225)",123010211-81 -130070346,E24,13002512,Other,01/07/2013,01/07/2013,01/07/2013 07:49:19 PM,01/07/2013 07:49:27 PM,01/07/2013 07:49:50 PM,01/07/2013 07:51:22 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 07:52:01 PM,MARKET ST/ARGENT AL,SF,94131,B06,24,5276,3,3,3,true,Alarm,1,ENGINE,1,6,8,Twin Peaks,"(37.7525636991443, -122.442728859019)",130070346-E24 -131580297,KM01,13053708,Medical Incident,06/07/2013,06/07/2013,06/07/2013 04:34:54 PM,06/07/2013 04:36:48 PM,06/07/2013 04:37:04 PM,06/07/2013 04:40:10 PM,06/07/2013 04:43:31 PM,06/07/2013 05:07:26 PM,06/07/2013 05:15:58 PM,Code 2 Transport,06/07/2013 05:57:52 PM,100 Block of LEAVENWORTH ST,SF,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7823375900777, -122.413891351995)",131580297-KM01 -160790560,88,16031315,Medical Incident,03/19/2016,03/18/2016,03/19/2016 05:26:53 AM,03/19/2016 05:27:18 AM,03/19/2016 05:28:06 AM,03/19/2016 05:28:13 AM,03/19/2016 05:33:42 AM,03/19/2016 05:50:23 AM,03/19/2016 05:56:03 AM,Code 2 Transport,03/19/2016 06:21:16 AM,1200 Block of TURK ST,San Francisco,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",160790560-88 -121830241,E05,12061019,Structure Fire,07/01/2012,07/01/2012,07/01/2012 04:48:23 PM,07/01/2012 04:48:44 PM,07/01/2012 04:49:07 PM,04/25/2016 01:57:55 PM,07/01/2012 04:52:43 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 04:58:47 PM,1700 Block of FILLMORE ST,SF,94115,B04,38,3542,3,3,3,true,Fire,1,ENGINE,6,4,5,Japantown,"(37.7856095150052, -122.433245830312)",121830241-E05 -112110099,KM04,11069569,Medical Incident,07/30/2011,07/30/2011,07/30/2011 09:16:38 AM,07/30/2011 09:17:21 AM,07/30/2011 09:17:58 AM,07/30/2011 09:18:43 AM,07/30/2011 09:23:11 AM,07/30/2011 09:30:05 AM,07/30/2011 09:38:50 AM,Code 2 Transport,07/30/2011 10:18:37 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",112110099-KM04 -130480242,T06,13016427,Structure Fire,02/17/2013,02/17/2013,02/17/2013 03:08:28 PM,02/17/2013 03:09:43 PM,02/17/2013 03:10:06 PM,04/25/2016 01:54:14 PM,02/17/2013 03:13:36 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/17/2013 03:23:49 PM,2100 Block of 15TH ST,SF,94114,B05,6,5232,3,3,3,false,Alarm,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7659837505885, -122.432151907364)",130480242-T06 -160080428,AM20,16003090,Medical Incident,01/08/2016,01/07/2016,01/08/2016 05:04:32 AM,01/08/2016 05:05:08 AM,01/08/2016 05:05:38 AM,01/08/2016 05:06:20 AM,01/08/2016 05:15:12 AM,01/08/2016 05:28:11 AM,01/08/2016 05:50:05 AM,Code 2 Transport,01/08/2016 06:15:20 AM,2600 Block of 47TH AVE,San Francisco,94116,B08,23,7733,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7366045798993, -122.50526050111)",160080428-AM20 -160503357,89,16020241,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:08:09 PM,02/19/2016 08:09:13 PM,02/19/2016 08:10:57 PM,02/19/2016 08:10:59 PM,02/19/2016 08:10:59 PM,02/19/2016 08:37:43 PM,02/19/2016 08:57:05 PM,Code 3 Transport,02/19/2016 09:34:59 PM,400 Block of STANYAN ST,San Francisco,94117,B07,21,4556,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",160503357-89 -120670398,B04,12022389,Alarms,03/07/2012,03/07/2012,03/07/2012 09:04:58 PM,03/07/2012 09:06:07 PM,03/07/2012 09:06:19 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,04/25/2016 01:59:47 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,CHIEF,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",120670398-B04 -110890060,E29,11029292,Structure Fire,03/30/2011,03/29/2011,03/30/2011 05:20:44 AM,03/30/2011 05:21:07 AM,03/30/2011 05:22:18 AM,03/30/2011 05:23:19 AM,03/30/2011 05:25:46 AM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 08:10:40 AM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7733010519139, -122.402986957756)",110890060-E29 -102440423,AM10,10077182,Medical Incident,09/01/2010,09/01/2010,09/01/2010 11:44:26 PM,09/01/2010 11:48:01 PM,09/01/2010 11:48:16 PM,09/01/2010 11:48:53 PM,09/01/2010 11:52:49 PM,09/02/2010 12:18:16 AM,09/02/2010 12:25:52 AM,Code 2 Transport,09/02/2010 12:55:30 AM,1800 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7363516779415, -122.395214003225)",102440423-AM10 -112950363,E03,11098003,Medical Incident,10/22/2011,10/22/2011,10/22/2011 10:04:15 PM,10/22/2011 10:04:35 PM,10/22/2011 10:05:29 PM,10/22/2011 10:06:49 PM,10/22/2011 10:09:20 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/22/2011 10:14:36 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",112950363-E03 -110420345,E43,11014042,Structure Fire,02/11/2011,02/11/2011,02/11/2011 07:24:35 PM,02/11/2011 07:25:17 PM,02/11/2011 07:25:28 PM,02/11/2011 07:25:56 PM,02/11/2011 07:27:14 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 07:32:24 PM,600 Block of MADRID ST,SF,94112,B09,43,6135,3,3,3,false,,1,ENGINE,1,9,11,Excelsior,"(37.7193135099129, -122.434630200737)",110420345-E43 -112900163,AP,11096193,Other,10/17/2011,10/17/2011,10/17/2011 12:16:25 PM,10/17/2011 12:16:26 PM,10/17/2011 12:16:26 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Fire,10/17/2011 12:17:07 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",112900163-AP -112800306,95,11092778,Medical Incident,10/07/2011,10/07/2011,10/07/2011 06:44:16 PM,10/07/2011 06:45:31 PM,10/07/2011 06:48:57 PM,10/07/2011 06:49:07 PM,10/07/2011 07:09:15 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,No Merit,10/07/2011 07:28:04 PM,1200 Block of GRANT AVE,SF,94133,B01,2,1311,1,1,2,true,,1,MEDIC,1,1,3,North Beach,"(37.7983293338887, -122.407047477146)",112800306-95 -132140049,85,13072159,Medical Incident,08/02/2013,08/01/2013,08/02/2013 06:36:20 AM,08/02/2013 06:37:23 AM,08/02/2013 06:37:43 AM,08/02/2013 06:38:14 AM,08/02/2013 06:39:38 AM,08/02/2013 06:56:47 AM,08/02/2013 07:10:24 AM,Code 2 Transport,08/02/2013 07:41:32 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",132140049-85 -131390088,E29,13046926,Traffic Collision,05/19/2013,05/18/2013,05/19/2013 06:39:09 AM,05/19/2013 06:39:09 AM,05/19/2013 06:39:55 AM,05/19/2013 06:41:31 AM,05/19/2013 06:43:56 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 06:55:44 AM,9TH ST/BRYANT ST,SF,94103,B03,29,2324,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,South of Market,"(37.7712907918294, -122.408531083232)",131390088-E29 -160172291,KM12,16006903,Medical Incident,01/17/2016,01/17/2016,01/17/2016 04:21:45 PM,01/17/2016 04:27:40 PM,01/17/2016 04:29:05 PM,01/17/2016 04:29:50 PM,01/17/2016 04:46:50 PM,01/17/2016 04:53:35 PM,01/17/2016 05:15:26 PM,Code 2 Transport,01/17/2016 05:27:40 PM,100 Block of SHIPLEY ST,San Francisco,94107,B03,1,2215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7806691632498, -122.401678045598)",160172291-KM12 -102340277,73,10073706,Medical Incident,08/22/2010,08/22/2010,08/22/2010 06:03:36 PM,08/22/2010 06:04:47 PM,08/22/2010 06:06:43 PM,08/22/2010 06:12:57 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,04/25/2016 02:08:58 PM,2500 Block of SAN JOSE AVE,SF,94112,B09,33,8325,3,3,3,true,,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7175145654024, -122.449359068183)",102340277-73 -103130277,E29,10100422,Medical Incident,11/09/2010,11/09/2010,11/09/2010 04:54:23 PM,11/09/2010 04:56:46 PM,11/09/2010 04:57:15 PM,11/09/2010 04:57:52 PM,11/09/2010 05:01:37 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/09/2010 05:07:13 PM,KANSAS ST/22ND ST,SF,94107,B10,37,2545,3,3,3,true,,1,ENGINE,2,10,10,Potrero Hill,"(37.7570683684788, -122.402802943875)",103130277-E29 -160753215,AM08,16029847,Medical Incident,03/15/2016,03/15/2016,03/15/2016 06:41:01 PM,03/15/2016 06:41:30 PM,03/15/2016 06:41:58 PM,03/15/2016 06:42:44 PM,03/15/2016 06:46:35 PM,03/15/2016 07:02:01 PM,03/15/2016 07:03:40 PM,Code 3 Transport,03/15/2016 07:35:59 PM,0 Block of LOCKSLEY AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7592202975893, -122.46331160715)",160753215-AM08 -160381312,79,16015160,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:25:28 AM,02/07/2016 10:26:55 AM,02/07/2016 10:27:20 AM,02/07/2016 10:27:52 AM,02/07/2016 10:55:12 AM,02/07/2016 10:55:15 AM,02/07/2016 10:57:53 AM,Code 2 Transport,02/07/2016 12:19:14 PM,2600 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.788437365658, -122.437962237482)",160381312-79 -122340287,59,12077691,Medical Incident,08/21/2012,08/21/2012,08/21/2012 08:33:17 PM,08/21/2012 08:37:18 PM,08/21/2012 08:42:13 PM,08/21/2012 08:42:45 PM,08/21/2012 08:54:12 PM,08/21/2012 09:16:06 PM,08/21/2012 09:29:22 PM,Code 2 Transport,08/21/2012 09:57:13 PM,300 Block of 19TH AVE,SF,94121,B07,31,7164,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7813416538301, -122.478443283523)",122340287-59 -110010319,E13,11000271,Citizen Assist / Service Call,01/01/2011,01/01/2011,01/01/2011 10:12:58 AM,01/01/2011 10:12:58 AM,01/01/2011 10:12:58 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 11:08:29 AM,500 Block of WASHINGTON ST,SF,94111,B01,13,1211,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7956190455503, -122.403039422993)",110010319-E13 -160613375,76,16024482,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:10:45 PM,03/01/2016 09:13:24 PM,03/01/2016 09:15:24 PM,03/01/2016 09:19:00 PM,03/01/2016 09:23:39 PM,03/01/2016 09:44:00 PM,03/01/2016 09:53:18 PM,Code 2 Transport,03/01/2016 10:26:39 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.781960649289, -122.402224095303)",160613375-76 -160290591,71,16011341,Medical Incident,01/29/2016,01/28/2016,01/29/2016 07:27:48 AM,01/29/2016 07:28:25 AM,01/29/2016 07:28:43 AM,01/29/2016 07:28:54 AM,01/29/2016 07:31:58 AM,01/29/2016 07:53:06 AM,01/29/2016 08:07:22 AM,Code 2 Transport,01/29/2016 08:33:11 AM,0 Block of CASHMERE ST,San Francisco,94124,B10,25,652,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7356570201695, -122.382731651637)",160290591-71 -113220276,93,11107032,Traffic Collision,11/18/2011,11/18/2011,11/18/2011 05:15:57 PM,11/18/2011 05:16:37 PM,11/18/2011 05:17:03 PM,11/18/2011 05:17:20 PM,04/25/2016 02:01:35 PM,11/18/2011 05:45:42 PM,11/18/2011 06:08:00 PM,Code 2 Transport,11/18/2011 06:31:38 PM,4500 Block of FULTON ST,SF,94121,B07,14,7167,3,3,3,true,,1,MEDIC,5,7,1,Outer Richmond,"(37.7727957681472, -122.480445666258)",113220276-93 -160052183,54,16002044,Medical Incident,01/05/2016,01/05/2016,01/05/2016 03:11:21 PM,01/05/2016 03:13:51 PM,01/05/2016 03:14:16 PM,01/05/2016 03:14:25 PM,01/05/2016 03:23:10 PM,01/05/2016 03:37:27 PM,01/05/2016 03:58:14 PM,Code 2 Transport,01/05/2016 04:45:24 PM,100 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7904950228094, -122.402353336974)",160052183-54 -110610185,AR1,11020001,Structure Fire,03/02/2011,03/02/2011,03/02/2011 12:19:43 PM,03/02/2011 12:20:06 PM,03/02/2011 12:20:30 PM,03/02/2011 12:26:42 PM,03/02/2011 12:44:04 PM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 02:32:34 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,false,,2,INVESTIGATION,15,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",110610185-AR1 -122510170,AM20,12082986,Medical Incident,09/07/2012,09/07/2012,09/07/2012 11:24:49 AM,09/07/2012 11:30:00 AM,09/07/2012 11:34:37 AM,09/07/2012 11:35:26 AM,09/07/2012 11:43:20 AM,09/07/2012 11:54:24 AM,09/07/2012 12:15:20 PM,Code 2 Transport,09/07/2012 12:55:08 PM,100 Block of MONTGOMERY ST,SF,94104,B01,13,1235,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7905126810084, -122.402216710445)",122510170-AM20 -123440142,77,12114952,Medical Incident,12/09/2012,12/09/2012,12/09/2012 10:04:41 AM,12/09/2012 10:06:06 AM,12/09/2012 10:06:17 AM,12/09/2012 10:07:28 AM,12/09/2012 10:37:00 AM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Against Medical Advice,12/09/2012 10:47:55 AM,400 Block of WARREN DR,SF,94131,B08,20,5377,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7579763881592, -122.462011747016)",123440142-77 -132790132,E22,13094853,Traffic Collision,10/06/2013,10/06/2013,10/06/2013 08:39:28 AM,10/06/2013 08:40:08 AM,10/06/2013 08:41:14 AM,10/06/2013 08:43:27 AM,10/06/2013 08:44:39 AM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/06/2013 08:53:40 AM,9TH AV/IRVING ST,SF,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",132790132-E22 -160661266,61,16026359,Medical Incident,03/06/2016,03/06/2016,03/06/2016 11:40:52 AM,03/06/2016 11:41:34 AM,03/06/2016 11:42:04 AM,03/06/2016 11:42:13 AM,03/06/2016 11:45:49 AM,03/06/2016 12:06:53 PM,03/06/2016 12:18:05 PM,Code 2 Transport,03/06/2016 01:01:43 PM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.795777854883, -122.404981817889)",160661266-61 -121910327,E12,12063717,Medical Incident,07/09/2012,07/09/2012,07/09/2012 08:27:11 PM,07/09/2012 08:28:39 PM,07/09/2012 08:29:00 PM,07/09/2012 08:31:00 PM,07/09/2012 08:31:52 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 08:38:21 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",121910327-E12 -133260308,E15,13110822,Medical Incident,11/22/2013,11/22/2013,11/22/2013 07:02:27 PM,11/22/2013 07:02:58 PM,11/22/2013 07:04:12 PM,11/22/2013 07:05:48 PM,11/22/2013 07:09:27 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 07:17:11 PM,300 Block of VIENNA ST,SF,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7227804111928, -122.428602345947)",133260308-E15 -110960364,E05,11031997,Medical Incident,04/06/2011,04/06/2011,04/06/2011 11:13:41 PM,04/06/2011 11:14:55 PM,04/06/2011 11:15:25 PM,04/25/2016 02:05:14 PM,04/06/2011 11:18:56 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/06/2011 11:33:15 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,2,2,true,,1,ENGINE,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",110960364-E05 -132170286,67,13073389,Medical Incident,08/05/2013,08/05/2013,08/05/2013 06:30:02 PM,08/05/2013 06:33:17 PM,08/05/2013 06:34:20 PM,08/05/2013 06:34:30 PM,08/05/2013 06:39:18 PM,08/05/2013 06:55:23 PM,08/05/2013 07:00:46 PM,Code 2 Transport,08/05/2013 07:23:14 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",132170286-67 -112850042,E01,11094267,Medical Incident,10/12/2011,10/11/2011,10/12/2011 04:50:43 AM,10/12/2011 04:51:20 AM,10/12/2011 04:51:44 AM,10/12/2011 04:54:01 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 04:57:20 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",112850042-E01 -133580310,E21,13121826,Medical Incident,12/24/2013,12/24/2013,12/24/2013 07:27:57 PM,12/24/2013 07:30:54 PM,12/24/2013 07:33:05 PM,12/24/2013 07:33:58 PM,12/24/2013 07:43:12 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Other,12/24/2013 07:49:39 PM,900 Block of BUENAVISTAWEST AV,SF,94117,B05,21,4353,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7699941054658, -122.44324157754)",133580310-E21 -131670246,E25,13056746,Medical Incident,06/16/2013,06/16/2013,06/16/2013 04:24:58 PM,06/16/2013 04:25:22 PM,06/16/2013 04:25:31 PM,06/16/2013 04:26:45 PM,06/16/2013 04:29:18 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/16/2013 04:33:38 PM,INDIANA ST/23RD ST,SF,94107,B10,25,2573,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.755213902438, -122.390921943768)",131670246-E25 -160061880,84,16002410,Medical Incident,01/06/2016,01/06/2016,01/06/2016 01:30:44 PM,01/06/2016 01:31:35 PM,01/06/2016 01:31:49 PM,01/06/2016 01:31:59 PM,01/06/2016 01:37:58 PM,01/06/2016 01:48:14 PM,01/06/2016 02:02:17 PM,Code 2 Transport,01/06/2016 02:46:09 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160061880-84 -133300158,E05,13112037,Alarms,11/26/2013,11/26/2013,11/26/2013 11:58:58 AM,11/26/2013 11:58:58 AM,11/26/2013 11:59:32 AM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,Other,11/26/2013 12:03:58 PM,0 Block of GROVE ST,SF,94102,B02,36,381,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",133300158-E05 -131900205,84,13064730,Medical Incident,07/09/2013,07/09/2013,07/09/2013 12:54:50 PM,07/09/2013 12:56:24 PM,07/09/2013 12:56:40 PM,07/09/2013 12:56:57 PM,07/09/2013 01:11:25 PM,07/09/2013 01:26:21 PM,07/09/2013 01:55:15 PM,Code 2 Transport,07/09/2013 02:06:33 PM,100 Block of 4TH ST,SF,94103,B03,1,2213,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",131900205-84 -131310149,83,13044201,Medical Incident,05/11/2013,05/11/2013,05/11/2013 10:28:18 AM,05/11/2013 10:30:16 AM,05/11/2013 10:30:59 AM,05/11/2013 10:31:08 AM,05/11/2013 10:48:06 AM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,No Merit,05/11/2013 11:04:31 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",131310149-83 -102980342,T03,10095280,Structure Fire,10/25/2010,10/25/2010,10/25/2010 08:15:22 PM,10/25/2010 08:15:22 PM,10/25/2010 08:15:33 PM,10/25/2010 08:17:09 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/25/2010 08:18:21 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,TRUCK,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",102980342-T03 -132490244,E08,13084076,Medical Incident,09/06/2013,09/06/2013,09/06/2013 03:37:59 PM,09/06/2013 03:38:29 PM,09/06/2013 03:46:12 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/06/2013 03:47:49 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,ENGINE,3,3,6,South of Market,"(37.7799892619986, -122.407376463936)",132490244-E08 -160493636,AM12,16019890,Medical Incident,02/18/2016,02/18/2016,02/18/2016 09:23:44 PM,02/18/2016 09:26:33 PM,02/18/2016 09:26:56 PM,02/18/2016 09:27:41 PM,02/18/2016 09:41:33 PM,02/18/2016 09:51:00 PM,02/18/2016 10:05:01 PM,Code 2 Transport,02/18/2016 10:18:37 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160493636-AM12 -123540331,58,12118574,Medical Incident,12/19/2012,12/19/2012,12/19/2012 06:55:29 PM,12/19/2012 06:56:29 PM,12/19/2012 06:59:53 PM,12/19/2012 07:07:08 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,04/25/2016 01:55:13 PM,100 Block of LARKIN ST,SF,94102,B02,36,1647,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",123540331-58 -160623560,71,16024831,Medical Incident,03/02/2016,03/02/2016,03/02/2016 07:24:18 PM,03/02/2016 07:25:19 PM,03/02/2016 07:27:29 PM,03/02/2016 07:27:54 PM,03/02/2016 07:35:16 PM,03/02/2016 07:45:48 PM,03/02/2016 08:12:31 PM,Code 3 Transport,03/02/2016 08:32:51 PM,0 Block of 19TH AVE,San Francisco,94121,B07,31,7163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Seacliff,"(37.7863877327251, -122.47867010798)",160623560-71 -112530075,B07,11083379,Alarms,09/10/2011,09/09/2011,09/10/2011 06:20:53 AM,09/10/2011 06:22:43 AM,09/10/2011 06:23:36 AM,09/10/2011 06:23:55 AM,09/10/2011 06:25:35 AM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Other,09/10/2011 08:06:29 AM,3600 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,,1,CHIEF,1,7,1,Lone Mountain/USF,"(37.7811661910196, -122.458279197581)",112530075-B07 -110240073,E16,11007790,Medical Incident,01/24/2011,01/23/2011,01/24/2011 07:50:22 AM,01/24/2011 07:50:49 AM,01/24/2011 07:51:21 AM,01/24/2011 07:54:13 AM,01/24/2011 07:57:47 AM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/24/2011 08:04:37 AM,BAY ST/VAN NESS AV,SF,94109,B04,28,3143,3,3,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8041458445112, -122.425109522103)",110240073-E16 -111780139,AM08,11058741,Medical Incident,06/27/2011,06/27/2011,06/27/2011 11:10:18 AM,06/27/2011 11:10:31 AM,06/27/2011 11:11:00 AM,06/27/2011 11:11:35 AM,06/27/2011 11:15:14 AM,06/27/2011 11:25:13 AM,06/27/2011 11:34:12 AM,Code 2 Transport,06/27/2011 12:08:16 PM,3100 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,false,,1,PRIVATE,1,6,9,Mission,"(37.7525276230522, -122.414634473592)",111780139-AM08 -131120380,E13,13037869,Medical Incident,04/22/2013,04/22/2013,04/22/2013 07:31:14 PM,04/22/2013 07:33:43 PM,04/22/2013 07:35:30 PM,04/22/2013 07:36:18 PM,04/22/2013 07:39:20 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,No Merit,04/22/2013 07:42:01 PM,DAVIS ST/WASHINGTON ST,SF,94111,B01,13,1116,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7961860716176, -122.398152068472)",131120380-E13 -160252879,65,16010038,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:48:04 PM,01/25/2016 05:48:44 PM,01/25/2016 05:49:38 PM,01/25/2016 05:49:46 PM,01/25/2016 05:58:08 PM,01/25/2016 06:17:07 PM,01/25/2016 06:43:28 PM,Code 2 Transport,01/25/2016 07:23:19 PM,700 Block of EXCELSIOR AVE,San Francisco,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7233483966745, -122.427699241431)",160252879-65 -132160131,66,13072943,Medical Incident,08/04/2013,08/04/2013,08/04/2013 11:18:58 AM,08/04/2013 11:19:49 AM,08/04/2013 11:20:20 AM,08/04/2013 11:20:46 AM,08/04/2013 11:26:12 AM,08/04/2013 11:44:25 AM,08/04/2013 12:13:09 PM,Code 2 Transport,08/04/2013 12:37:23 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",132160131-66 -132100171,KM02,13071003,Medical Incident,07/29/2013,07/29/2013,07/29/2013 11:31:44 AM,07/29/2013 11:33:49 AM,07/29/2013 11:34:10 AM,07/29/2013 11:34:38 AM,07/29/2013 11:44:41 AM,07/29/2013 12:07:05 PM,07/29/2013 12:22:33 PM,Code 2 Transport,07/29/2013 01:01:38 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132100171-KM02 -120090428,E13,12003324,Alarms,01/09/2012,01/09/2012,01/09/2012 11:51:06 PM,01/09/2012 11:53:39 PM,01/09/2012 11:54:03 PM,01/09/2012 11:55:37 PM,01/09/2012 11:57:25 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/10/2012 12:09:42 AM,300 Block of MARKET ST,SF,94111,B03,13,2125,B,B,2,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7921324266791, -122.397911804174)",120090428-E13 -140340202,KM06,14011514,Medical Incident,02/03/2014,02/03/2014,02/03/2014 02:14:51 PM,02/03/2014 02:15:36 PM,02/03/2014 02:16:33 PM,02/03/2014 02:17:11 PM,02/03/2014 02:21:13 PM,02/03/2014 02:37:40 PM,02/03/2014 02:47:10 PM,Code 2 Transport,02/03/2014 03:20:58 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",140340202-KM06 -132060181,RS1,13069742,Medical Incident,07/25/2013,07/25/2013,07/25/2013 01:58:00 PM,07/25/2013 01:59:41 PM,07/25/2013 02:02:12 PM,07/25/2013 02:03:04 PM,07/25/2013 02:05:04 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Other,07/25/2013 02:09:27 PM,0 Block of RUSS ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7794247784274, -122.40887907669)",132060181-RS1 -113570478,E23,11118849,Medical Incident,12/23/2011,12/23/2011,12/23/2011 11:24:33 PM,12/23/2011 11:25:53 PM,12/23/2011 11:26:43 PM,12/23/2011 11:28:36 PM,12/23/2011 11:31:42 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/23/2011 11:42:47 PM,2100 Block of 43RD AVE,SF,94116,B08,23,7645,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7465803443069, -122.501664644737)",113570478-E23 -123240381,93,12107900,Medical Incident,11/19/2012,11/19/2012,11/19/2012 09:34:08 PM,11/19/2012 09:34:49 PM,11/19/2012 09:36:56 PM,11/19/2012 09:37:18 PM,11/19/2012 09:57:25 PM,11/19/2012 09:57:57 PM,11/19/2012 10:08:38 PM,Code 2 Transport,11/19/2012 11:02:01 PM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8061515935611, -122.418537074676)",123240381-93 -160721983,AM16,16028631,Medical Incident,03/12/2016,03/12/2016,03/12/2016 03:01:48 PM,03/12/2016 03:02:11 PM,03/12/2016 03:02:55 PM,03/12/2016 03:03:24 PM,03/12/2016 03:07:55 PM,03/12/2016 03:23:49 PM,03/12/2016 03:45:27 PM,Code 2 Transport,03/12/2016 04:24:47 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160721983-AM16 -140900243,T08,14030351,Administrative,03/31/2014,03/31/2014,03/31/2014 04:23:55 PM,03/31/2014 04:23:57 PM,03/31/2014 04:26:37 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Other,03/31/2014 04:27:04 PM,0 Block of BLUXOME ST,,94107,B03,8,2223,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",140900243-T08 -130800005,E03,13026597,Alarms,03/21/2013,03/20/2013,03/21/2013 12:35:20 AM,03/21/2013 12:37:42 AM,03/21/2013 12:37:51 AM,03/21/2013 12:39:38 AM,03/21/2013 12:40:59 AM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 12:47:30 AM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,true,Alarm,1,ENGINE,1,4,2,Western Addition,"(37.7872890372638, -122.424236212664)",130800005-E03 -130780347,E37,13026167,Vehicle Fire,03/19/2013,03/19/2013,03/19/2013 06:44:43 PM,03/19/2013 06:45:13 PM,03/19/2013 06:45:26 PM,03/19/2013 06:46:36 PM,03/19/2013 06:50:00 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Fire,03/19/2013 07:20:56 PM,ILLINOIS ST/22ND ST,SF,94107,B10,37,2665,3,3,3,false,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7579999556756, -122.387312694069)",130780347-E37 -160241075,56,16009479,Medical Incident,01/24/2016,01/24/2016,01/24/2016 09:56:32 AM,01/24/2016 09:56:32 AM,01/24/2016 09:57:03 AM,01/24/2016 09:57:16 AM,01/24/2016 10:03:40 AM,01/24/2016 10:06:10 AM,01/24/2016 10:24:16 AM,Code 2 Transport,01/24/2016 10:41:40 AM,300 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8854,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",160241075-56 -133490086,68,13118403,Medical Incident,12/15/2013,12/15/2013,12/15/2013 08:27:28 AM,12/15/2013 08:29:36 AM,12/15/2013 08:30:08 AM,12/15/2013 08:31:04 AM,12/15/2013 08:35:09 AM,12/15/2013 08:47:34 AM,12/15/2013 09:14:44 AM,Code 2 Transport,12/15/2013 09:37:42 AM,36TH AV/KIRKHAM ST,SF,94122,B08,23,7571,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7590281315068, -122.495082385834)",133490086-68 -122010137,B04,12066763,Water Rescue,07/19/2012,07/19/2012,07/19/2012 10:54:56 AM,07/19/2012 10:54:56 AM,07/19/2012 10:55:19 AM,07/19/2012 10:57:03 AM,07/19/2012 11:09:29 AM,04/25/2016 01:57:39 PM,04/25/2016 01:57:39 PM,Other,07/19/2012 11:40:41 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,CHIEF,12,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122010137-B04 -160102268,76,16004096,Medical Incident,01/10/2016,01/10/2016,01/10/2016 04:05:01 PM,01/10/2016 04:07:34 PM,01/10/2016 04:08:00 PM,01/10/2016 04:08:11 PM,01/10/2016 04:21:49 PM,01/10/2016 05:17:20 PM,01/10/2016 05:24:40 PM,Code 2 Transport,01/10/2016 06:13:52 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160102268-76 -102510347,79,10079430,Medical Incident,09/08/2010,09/08/2010,09/08/2010 08:07:50 PM,09/08/2010 08:10:05 PM,09/08/2010 08:10:29 PM,09/08/2010 08:11:21 PM,09/08/2010 08:18:52 PM,09/08/2010 08:29:48 PM,09/08/2010 08:40:14 PM,Code 2 Transport,09/08/2010 09:09:05 PM,1100 Block of FOLSOM ST,SF,94103,B03,1,2313,1,1,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7765710578401, -122.408160058123)",102510347-79 -130220193,E01,13007589,Alarms,01/22/2013,01/22/2013,01/22/2013 12:28:23 PM,01/22/2013 12:29:12 PM,01/22/2013 12:29:30 PM,01/22/2013 12:30:25 PM,01/22/2013 12:32:30 PM,04/25/2016 01:54:40 PM,04/25/2016 01:54:40 PM,Other,01/22/2013 12:35:35 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",130220193-E01 -120060112,89,12002016,Medical Incident,01/06/2012,01/06/2012,01/06/2012 09:25:40 AM,01/06/2012 09:27:13 AM,01/06/2012 09:28:00 AM,01/06/2012 09:35:06 AM,01/06/2012 09:35:13 AM,01/06/2012 10:00:25 AM,01/06/2012 10:37:32 AM,Code 2 Transport,01/06/2012 11:02:54 AM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",120060112-89 -160162714,AM08,16006522,Traffic Collision,01/16/2016,01/16/2016,01/16/2016 05:36:21 PM,01/16/2016 05:36:21 PM,01/16/2016 05:37:01 PM,01/16/2016 05:37:55 PM,01/16/2016 05:53:16 PM,01/16/2016 06:13:19 PM,01/16/2016 06:22:13 PM,Code 2 Transport,01/16/2016 06:48:20 PM,10TH ST/MARKET ST,San Francisco,94103,B02,36,2338,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7765408927183, -122.417501464907)",160162714-AM08 -160641456,83,16025470,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:09:08 AM,03/04/2016 11:10:00 AM,03/04/2016 11:10:17 AM,03/04/2016 11:10:26 AM,03/04/2016 11:16:59 AM,03/04/2016 11:50:43 AM,03/04/2016 12:09:54 PM,Code 2 Transport,03/04/2016 01:12:15 PM,0 Block of 12TH ST,San Francisco,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",160641456-83 -112980013,E34,11098732,Medical Incident,10/25/2011,10/24/2011,10/25/2011 01:20:17 AM,10/25/2011 01:21:30 AM,10/25/2011 01:22:07 AM,10/25/2011 01:23:44 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 01:24:55 AM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,1,2,false,,1,ENGINE,2,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",112980013-E34 -120430226,E41,12014436,Gas Leak (Natural and LP Gases),02/12/2012,02/12/2012,02/12/2012 03:16:17 PM,02/12/2012 03:17:41 PM,02/12/2012 03:17:46 PM,02/12/2012 03:19:06 PM,02/12/2012 03:19:58 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/12/2012 03:39:14 PM,1800 Block of LARKIN ST,SF,94109,B01,41,1633,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.7948046203031, -122.419775875954)",120430226-E41 -133170363,67,13107890,Medical Incident,11/13/2013,11/13/2013,11/13/2013 09:09:47 PM,11/13/2013 09:10:11 PM,11/13/2013 09:11:33 PM,11/13/2013 09:11:39 PM,11/13/2013 09:29:38 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,No Merit,11/13/2013 09:41:03 PM,GUERRERO ST/15TH ST,SF,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7664057681804, -122.42425811346)",133170363-67 -160391550,63,16015596,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:08:20 PM,02/08/2016 12:08:59 PM,02/08/2016 12:09:12 PM,02/08/2016 12:09:21 PM,02/08/2016 12:15:19 PM,02/08/2016 12:29:12 PM,02/08/2016 12:42:42 PM,Code 2 Transport,02/08/2016 01:43:22 PM,2300 Block of NORIEGA ST,San Francisco,94122,B08,18,7515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7537523918863, -122.488797729304)",160391550-63 -160490557,79,16019629,Medical Incident,02/18/2016,02/17/2016,02/18/2016 07:35:25 AM,02/18/2016 07:36:00 AM,02/18/2016 07:37:19 AM,02/18/2016 07:37:25 AM,02/18/2016 07:40:34 AM,02/18/2016 07:47:57 AM,02/18/2016 07:52:37 AM,Code 2 Transport,02/18/2016 08:11:11 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160490557-79 -120060161,KM15,12002056,Medical Incident,01/06/2012,01/06/2012,01/06/2012 12:12:01 PM,01/06/2012 12:14:01 PM,01/06/2012 12:15:17 PM,01/06/2012 12:15:55 PM,01/06/2012 12:25:17 PM,01/06/2012 12:35:43 PM,01/06/2012 12:44:38 PM,Code 2 Transport,01/06/2012 01:04:36 PM,2000 Block of MISSION ST,SF,94110,B02,7,5239,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",120060161-KM15 -140960145,B01,14032274,Structure Fire,04/06/2014,04/06/2014,04/06/2014 10:24:03 AM,04/06/2014 10:26:13 AM,04/06/2014 10:26:39 AM,04/06/2014 10:27:06 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Fire,04/06/2014 10:28:14 AM,900 Block of FRANKLIN ST,SAN FRANCISCO,94109,B02,3,3221,3,3,3,false,Alarm,1,CHIEF,10,2,5,Western Addition,"(37.7833939650918, -122.422536931307)",140960145-B01 -122920270,E33,12096816,Medical Incident,10/18/2012,10/18/2012,10/18/2012 03:12:12 PM,10/18/2012 03:13:10 PM,10/18/2012 03:13:33 PM,10/18/2012 03:15:12 PM,10/18/2012 03:18:51 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 03:52:56 PM,300 Block of ALLISON ST,SF,94112,B09,43,6217,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.7105959087254, -122.440798369343)",122920270-E33 -140750318,88,14025503,Medical Incident,03/16/2014,03/16/2014,03/16/2014 07:58:47 PM,03/16/2014 07:59:00 PM,03/16/2014 07:59:15 PM,03/16/2014 08:00:20 PM,03/16/2014 08:10:12 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Other,03/16/2014 08:21:36 PM,LAGUNA ST/LOMBARD ST,SAN FRANCISCO,94123,B04,16,3352,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8004692165623, -122.431115291336)",140750318-88 -111450069,74,11048089,Medical Incident,05/25/2011,05/25/2011,05/25/2011 08:07:26 AM,05/25/2011 08:09:20 AM,05/25/2011 08:09:47 AM,05/25/2011 08:10:02 AM,05/25/2011 08:30:04 AM,05/25/2011 08:56:52 AM,05/25/2011 09:19:38 AM,Code 2 Transport,05/25/2011 09:40:03 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",111450069-74 -111750301,B01,11057780,Alarms,06/24/2011,06/24/2011,06/24/2011 05:30:38 PM,06/24/2011 05:32:04 PM,06/24/2011 05:32:19 PM,06/24/2011 05:33:57 PM,06/24/2011 05:37:12 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Fire,06/24/2011 05:39:50 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,3,3,false,,1,CHIEF,3,3,3,Tenderloin,"(37.7853856653984, -122.408248882093)",111750301-B01 -160553519,70,16022133,Medical Incident,02/24/2016,02/24/2016,02/24/2016 07:33:20 PM,02/24/2016 07:33:20 PM,02/24/2016 07:34:08 PM,02/24/2016 07:34:20 PM,02/24/2016 07:37:45 PM,02/24/2016 07:42:34 PM,02/24/2016 07:49:02 PM,Code 3 Transport,02/24/2016 08:27:27 PM,QUESADA AV/3RD ST,San Francisco,94124,B10,17,6535,A,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7332232631153, -122.391244493226)",160553519-70 -132600090,B09,13087889,Structure Fire,09/17/2013,09/16/2013,09/17/2013 06:48:43 AM,09/17/2013 06:49:17 AM,09/17/2013 06:49:30 AM,09/17/2013 06:51:49 AM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,Other,09/17/2013 06:58:32 AM,2600 Block of GREAT HWY,SF,94116,B08,23,7733,3,3,3,false,Alarm,1,CHIEF,7,8,4,Sunset/Parkside,"(37.7365648338539, -122.506185260392)",132600090-B09 -160092086,65,16003687,Medical Incident,01/09/2016,01/09/2016,01/09/2016 03:03:26 PM,01/09/2016 03:03:55 PM,01/09/2016 03:04:10 PM,01/09/2016 03:04:21 PM,01/09/2016 03:08:11 PM,01/09/2016 03:21:57 PM,01/09/2016 03:37:52 PM,Code 2 Transport,01/09/2016 03:55:38 PM,400 Block of MOSCOW ST,San Francisco,94112,B09,43,6163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7204564874695, -122.428165238049)",160092086-65 -102770182,KM14,10088074,Medical Incident,10/04/2010,10/04/2010,10/04/2010 02:16:46 PM,10/04/2010 02:16:58 PM,10/04/2010 02:17:47 PM,10/04/2010 02:18:48 PM,10/04/2010 02:21:03 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Patient Declined Transport,10/04/2010 02:33:22 PM,1100 Block of CAPITOL AVE,SF,94112,B09,15,8474,3,1,2,false,,1,PRIVATE,1,9,7,Oceanview/Merced/Ingleside,"(37.7227448340219, -122.459276254997)",102770182-KM14 -160190770,KM09,16007526,Medical Incident,01/19/2016,01/19/2016,01/19/2016 08:17:25 AM,01/19/2016 08:18:59 AM,01/19/2016 08:19:18 AM,01/19/2016 08:21:37 AM,01/19/2016 08:33:54 AM,01/19/2016 08:48:26 AM,01/19/2016 09:09:32 AM,Code 2 Transport,01/19/2016 09:44:36 AM,GROVE ST/HYDE ST,San Francisco,94103,B02,36,1552,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160190770-KM09 -160871320,79,16034539,Medical Incident,03/27/2016,03/27/2016,03/27/2016 10:56:00 AM,03/27/2016 10:57:51 AM,03/27/2016 10:58:21 AM,03/27/2016 10:58:30 AM,03/27/2016 11:23:47 AM,03/27/2016 11:36:49 AM,03/27/2016 11:52:22 AM,Code 2 Transport,03/27/2016 12:36:02 PM,100 Block of SEACLIFF AVE,San Francisco,94121,B07,14,7216,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Seacliff,"(37.788782447872, -122.487546538274)",160871320-79 -160841721,81,16033361,Medical Incident,03/24/2016,03/24/2016,03/24/2016 12:06:54 PM,03/24/2016 12:08:22 PM,03/24/2016 12:08:38 PM,03/24/2016 12:09:51 PM,03/24/2016 12:14:23 PM,03/24/2016 12:24:26 PM,03/24/2016 12:39:52 PM,Code 2 Transport,03/24/2016 01:38:11 PM,0 Block of SHRADER ST,San Francisco,94117,B05,21,4542,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7744969083055, -122.452976375626)",160841721-81 -112440280,E08,11080530,Medical Incident,09/01/2011,09/01/2011,09/01/2011 05:40:01 PM,09/01/2011 05:41:44 PM,09/01/2011 05:42:40 PM,09/01/2011 05:43:42 PM,09/01/2011 05:46:44 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 05:54:00 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",112440280-E08 -130400209,E18,13013684,Medical Incident,02/09/2013,02/09/2013,02/09/2013 01:51:30 PM,02/09/2013 01:53:21 PM,02/09/2013 01:53:29 PM,02/09/2013 01:54:22 PM,02/09/2013 01:57:48 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 02:09:55 PM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7444820263748, -122.506894604858)",130400209-E18 -160331223,KM12,16012925,Medical Incident,02/02/2016,02/02/2016,02/02/2016 10:49:41 AM,02/02/2016 10:50:36 AM,02/02/2016 10:51:35 AM,02/02/2016 10:52:01 AM,02/02/2016 11:15:24 AM,02/02/2016 11:19:22 AM,02/02/2016 11:38:48 AM,Code 3 Transport,02/02/2016 12:43:09 PM,BAY ST/TAYLOR ST,San Francisco,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8054171711156, -122.415241486546)",160331223-KM12 -160581886,KM11,16023135,Medical Incident,02/27/2016,02/27/2016,02/27/2016 01:40:10 PM,02/27/2016 01:41:42 PM,02/27/2016 01:42:06 PM,02/27/2016 01:42:53 PM,02/27/2016 01:46:02 PM,02/27/2016 02:15:18 PM,02/27/2016 02:32:21 PM,Code 2 Transport,02/27/2016 02:59:01 PM,200 Block of CAPISTRANO AVE,San Francisco,94112,B09,15,8265,3,3,3,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7274083661221, -122.438237343059)",160581886-KM11 -122920209,E29,12096764,Medical Incident,10/18/2012,10/18/2012,10/18/2012 01:00:57 PM,10/18/2012 01:01:45 PM,10/18/2012 01:03:15 PM,10/18/2012 01:03:47 PM,10/18/2012 01:06:40 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 01:18:42 PM,1600 Block of OWENS ST,SF,94158,B03,29,2414,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7680699628929, -122.394293450332)",122920209-E29 -123150359,57,12104995,Medical Incident,11/10/2012,11/10/2012,11/10/2012 11:12:15 PM,11/10/2012 11:15:01 PM,11/10/2012 11:16:01 PM,11/10/2012 11:18:11 PM,11/10/2012 11:25:48 PM,11/10/2012 11:53:09 PM,11/11/2012 12:12:59 AM,Code 2 Transport,11/11/2012 12:49:01 AM,300 Block of BAKER ST,SF,94117,B05,21,4252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",123150359-57 -160032091,AM08,16001248,Medical Incident,01/03/2016,01/03/2016,01/03/2016 04:08:42 PM,01/03/2016 04:09:44 PM,01/03/2016 04:10:33 PM,01/03/2016 04:11:05 PM,01/03/2016 04:15:20 PM,01/03/2016 04:22:07 PM,01/03/2016 04:33:17 PM,Code 2 Transport,01/03/2016 05:03:44 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160032091-AM08 -121180158,RC1,12039063,Medical Incident,04/27/2012,04/27/2012,04/27/2012 10:33:45 AM,04/27/2012 10:35:01 AM,04/27/2012 10:36:42 AM,04/27/2012 10:42:11 AM,04/27/2012 10:50:18 AM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 11:27:28 AM,1500 Block of MARKET ST,SF,94103,B02,36,3211,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,2,6,Mission,"(37.7746823329875, -122.419666717917)",121180158-RC1 -122640187,E08,12087186,Medical Incident,09/20/2012,09/20/2012,09/20/2012 01:06:36 PM,09/20/2012 01:08:28 PM,09/20/2012 01:08:59 PM,09/20/2012 01:11:24 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 01:13:54 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",122640187-E08 -160502573,KM12,16020172,Medical Incident,02/19/2016,02/19/2016,02/19/2016 04:43:21 PM,02/19/2016 04:44:43 PM,02/19/2016 04:46:08 PM,02/19/2016 04:47:11 PM,02/19/2016 05:06:10 PM,02/19/2016 05:29:19 PM,02/19/2016 05:42:16 PM,Code 2 Transport,02/19/2016 06:24:18 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,3,3,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160502573-KM12 -120840029,KM07,12027771,Medical Incident,03/24/2012,03/23/2012,03/24/2012 01:27:08 AM,03/24/2012 01:27:42 AM,03/24/2012 01:28:29 AM,04/25/2016 01:59:31 PM,03/24/2012 01:39:38 AM,03/24/2012 01:48:37 AM,03/24/2012 01:56:29 AM,Code 2 Transport,03/24/2012 02:20:38 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",120840029-KM07 -160152526,76,16006056,Medical Incident,01/15/2016,01/15/2016,01/15/2016 04:00:10 PM,01/15/2016 04:01:53 PM,01/15/2016 04:02:10 PM,01/15/2016 04:02:19 PM,01/15/2016 04:12:29 PM,01/15/2016 04:15:05 PM,01/15/2016 04:29:44 PM,Code 2 Transport,01/15/2016 04:46:48 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160152526-76 -102610248,E03,10082548,Medical Incident,09/18/2010,09/18/2010,09/18/2010 01:58:03 PM,09/18/2010 01:59:39 PM,09/18/2010 02:00:27 PM,09/18/2010 02:01:38 PM,09/18/2010 02:03:45 PM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,Other,09/18/2010 02:08:03 PM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",102610248-E03 -122700075,E33,12089038,Aircraft Emergency,09/26/2012,09/26/2012,09/26/2012 08:49:26 AM,09/26/2012 08:49:43 AM,09/26/2012 08:50:33 AM,09/26/2012 08:52:09 AM,09/26/2012 09:10:04 AM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,09/26/2012 11:17:17 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,true,Fire,1,ENGINE,2,None,None,None,"(37.6168823239251, -122.384094238098)",122700075-E33 -122230291,E05,12074024,Medical Incident,08/10/2012,08/10/2012,08/10/2012 05:58:19 PM,08/10/2012 06:00:43 PM,08/10/2012 06:01:03 PM,08/10/2012 06:01:49 PM,08/10/2012 06:04:02 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 06:11:42 PM,1900 Block of EDDY ST,SF,94115,B05,21,4241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Western Addition,"(37.7805348135093, -122.439769204544)",122230291-E05 -132680257,E16,13091042,Water Rescue,09/25/2013,09/25/2013,09/25/2013 03:34:26 PM,09/25/2013 03:36:46 PM,09/25/2013 03:39:51 PM,09/25/2013 03:41:59 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 03:59:45 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,9,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132680257-E16 -160080463,88,16003097,Medical Incident,01/08/2016,01/07/2016,01/08/2016 05:43:27 AM,01/08/2016 05:44:37 AM,01/08/2016 05:45:14 AM,01/08/2016 05:45:18 AM,01/08/2016 05:54:57 AM,01/08/2016 06:06:39 AM,01/08/2016 06:12:12 AM,Code 2 Transport,01/08/2016 06:39:33 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160080463-88 -131330209,B06,13044874,Outside Fire,05/13/2013,05/13/2013,05/13/2013 01:48:06 PM,05/13/2013 01:49:17 PM,05/13/2013 02:32:04 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,04/25/2016 01:52:49 PM,Other,05/13/2013 02:33:09 PM,MOULTRIE ST/CRESCENT AV,SF,94110,B06,32,5751,3,3,3,false,Fire,1,CHIEF,15,6,9,Bernal Heights,"(37.7348557177897, -122.416171881103)",131330209-B06 -130760358,RC3,13025540,Medical Incident,03/17/2013,03/17/2013,03/17/2013 08:55:29 PM,03/17/2013 08:56:56 PM,03/17/2013 08:58:06 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,Other,03/17/2013 08:59:24 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130760358-RC3 -111230170,AM12,11040613,Medical Incident,05/03/2011,05/03/2011,05/03/2011 11:40:23 AM,05/03/2011 11:41:47 AM,05/03/2011 11:42:07 AM,05/03/2011 11:42:44 AM,05/03/2011 11:44:45 AM,05/03/2011 11:54:41 AM,05/03/2011 12:13:40 PM,Code 2 Transport,05/03/2011 12:42:06 PM,500 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,false,,1,PRIVATE,1,3,6,South of Market,"(37.7800574377607, -122.408673540372)",111230170-AM12 -102550274,60,10080722,Medical Incident,09/12/2010,09/12/2010,09/12/2010 09:11:19 PM,09/12/2010 09:11:47 PM,09/12/2010 09:13:01 PM,09/12/2010 09:13:04 PM,09/12/2010 09:15:54 PM,09/12/2010 09:43:37 PM,09/12/2010 09:58:40 PM,Code 2 Transport,09/12/2010 10:47:12 PM,900 Block of BUSH ST,SF,94109,B01,41,1446,2,2,2,true,,1,MEDIC,1,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",102550274-60 -132390207,T10,13080635,Structure Fire,08/27/2013,08/27/2013,08/27/2013 01:43:54 PM,08/27/2013 01:44:55 PM,08/27/2013 01:45:38 PM,08/27/2013 01:46:35 PM,08/27/2013 01:49:28 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 02:07:27 PM,700 Block of ARGUELLO BLVD,SF,94118,B07,31,7112,3,3,3,false,Fire,1,TRUCK,4,7,1,Lone Mountain/USF,"(37.7767252712767, -122.458473543257)",132390207-T10 -122160197,KM12,12071684,Medical Incident,08/03/2012,08/03/2012,08/03/2012 01:16:43 PM,08/03/2012 01:17:08 PM,08/03/2012 01:17:14 PM,08/03/2012 01:18:07 PM,08/03/2012 01:30:15 PM,08/03/2012 01:37:47 PM,08/03/2012 01:55:28 PM,Code 2 Transport,08/03/2012 02:33:24 PM,GEARY BL/FILLMORE ST,SF,94115,B04,5,3541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",122160197-KM12 -110590303,83,11019481,Medical Incident,02/28/2011,02/28/2011,02/28/2011 07:02:39 PM,02/28/2011 07:03:57 PM,02/28/2011 07:04:09 PM,02/28/2011 07:04:35 PM,02/28/2011 07:14:31 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Medical Examiner,02/28/2011 07:21:20 PM,100 Block of HALE ST,SF,94134,B10,42,6362,E,2,2,true,,1,MEDIC,2,10,9,Portola,"(37.7322416900991, -122.408073349592)",110590303-83 -122990059,E41,12098994,Alarms,10/25/2012,10/24/2012,10/25/2012 05:46:28 AM,10/25/2012 05:48:14 AM,10/25/2012 05:48:31 AM,10/25/2012 05:50:25 AM,10/25/2012 05:53:28 AM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/25/2012 06:00:12 AM,1100 Block of PACIFIC AVE,SF,94133,B01,41,1511,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7959719808332, -122.413810992406)",122990059-E41 -123010137,E14,12099751,Medical Incident,10/27/2012,10/27/2012,10/27/2012 10:20:25 AM,10/27/2012 10:22:15 AM,10/27/2012 10:22:26 AM,10/27/2012 10:25:36 AM,10/27/2012 10:30:07 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 11:23:16 AM,500 Block of 48TH AVE,SF,94121,B07,34,7313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7780077592037, -122.509229146953)",123010137-E14 -132380103,54,13080231,Medical Incident,08/26/2013,08/26/2013,08/26/2013 08:35:52 AM,08/26/2013 08:37:12 AM,08/26/2013 08:38:00 AM,08/26/2013 08:38:05 AM,08/26/2013 08:58:24 AM,08/26/2013 09:08:49 AM,08/26/2013 09:16:45 AM,Code 2 Transport,08/26/2013 09:50:38 AM,VAN NESS AV/TURK ST,SF,94102,B02,36,3164,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7819607659915, -122.420638249893)",132380103-54 -160670192,71,16026573,Medical Incident,03/07/2016,03/06/2016,03/07/2016 02:44:56 AM,03/07/2016 02:45:44 AM,03/07/2016 02:46:06 AM,03/07/2016 02:46:38 AM,03/07/2016 02:55:10 AM,03/07/2016 03:16:53 AM,03/07/2016 03:33:03 AM,Code 2 Transport,03/07/2016 04:16:55 AM,100 Block of GIRARD ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7303933049122, -122.40577188604)",160670192-71 -120850162,RS1,12028226,Structure Fire,03/25/2012,03/25/2012,03/25/2012 12:33:04 PM,03/25/2012 12:34:15 PM,03/25/2012 12:34:34 PM,03/25/2012 12:37:10 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/25/2012 12:44:37 PM,200 Block of POST ST,SF,94108,B01,1,1316,3,3,3,false,Fire,1,RESCUE SQUAD,9,1,3,Financial District/South Beach,"(37.7885424853863, -122.405985351484)",120850162-RS1 -132600445,68,13088192,Medical Incident,09/17/2013,09/17/2013,09/17/2013 09:35:00 PM,09/17/2013 09:36:52 PM,09/17/2013 09:38:28 PM,09/17/2013 09:38:39 PM,09/17/2013 09:53:28 PM,04/25/2016 01:50:44 PM,04/25/2016 01:50:44 PM,No Merit,09/17/2013 09:58:26 PM,SILVER AV/SAN BRUNO AV,SF,94134,B10,42,6362,2,2,2,false,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7324386586756, -122.405607549199)",132600445-68 -112940225,E01,11097545,Medical Incident,10/21/2011,10/21/2011,10/21/2011 02:45:50 PM,10/21/2011 02:46:29 PM,10/21/2011 02:47:01 PM,04/25/2016 02:02:03 PM,10/21/2011 02:49:53 PM,04/25/2016 02:02:03 PM,04/25/2016 02:02:03 PM,Other,10/21/2011 02:58:18 PM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,true,,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",112940225-E01 -121950012,E08,12064768,Alarms,07/13/2012,07/12/2012,07/13/2012 01:21:58 AM,07/13/2012 01:23:27 AM,07/13/2012 01:23:45 AM,04/25/2016 01:57:45 PM,07/13/2012 01:25:56 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/13/2012 01:41:24 AM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7848984736106, -122.389669866427)",121950012-E08 -113290091,T07,11109090,Structure Fire,11/25/2011,11/25/2011,11/25/2011 10:35:17 AM,11/25/2011 10:35:17 AM,11/25/2011 10:35:43 AM,11/25/2011 10:35:53 AM,11/25/2011 10:40:41 AM,04/25/2016 02:01:28 PM,04/25/2016 02:01:28 PM,Other,11/25/2011 10:41:30 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",113290091-T07 -111240263,E40,11041036,Electrical Hazard,05/04/2011,05/04/2011,05/04/2011 03:18:54 PM,05/04/2011 03:20:48 PM,05/04/2011 03:23:15 PM,05/04/2011 03:24:24 PM,05/04/2011 03:26:20 PM,04/25/2016 02:04:47 PM,04/25/2016 02:04:47 PM,Fire,05/04/2011 03:30:27 PM,1000 Block of RIVERA ST,SF,94116,B08,40,7433,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7467637296912, -122.477562996056)",111240263-E40 -130710301,96,13023792,Medical Incident,03/12/2013,03/12/2013,03/12/2013 06:44:44 PM,03/12/2013 06:46:03 PM,03/12/2013 06:46:29 PM,04/25/2016 01:53:52 PM,03/12/2013 06:48:18 PM,03/12/2013 07:05:21 PM,03/12/2013 07:29:11 PM,Code 2 Transport,03/12/2013 07:49:49 PM,1700 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7903193034194, -122.4231629068)",130710301-96 -160852948,KM11,16033889,Medical Incident,03/25/2016,03/25/2016,03/25/2016 05:51:39 PM,03/25/2016 05:52:41 PM,03/25/2016 05:53:17 PM,03/25/2016 05:53:49 PM,03/25/2016 06:01:12 PM,03/25/2016 06:20:19 PM,03/25/2016 06:46:40 PM,Code 3 Transport,03/25/2016 07:12:38 PM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160852948-KM11 -111920122,E01,11063338,Medical Incident,07/11/2011,07/11/2011,07/11/2011 10:51:44 AM,07/11/2011 10:52:34 AM,07/11/2011 10:52:45 AM,07/11/2011 10:54:56 AM,07/11/2011 10:58:31 AM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 11:08:01 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7816136403158, -122.412054141237)",111920122-E01 -110150195,81,11005007,Medical Incident,01/15/2011,01/15/2011,01/15/2011 01:47:35 PM,01/15/2011 01:47:36 PM,01/15/2011 01:47:36 PM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,01/15/2011 01:51:21 PM,01/15/2011 02:13:32 PM,Code 2 Transport,01/15/2011 02:30:11 PM,24TH ST/CAPP ST,SF,94110,B06,7,5511,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7523059787388, -122.417357818307)",110150195-81 -132170071,AM16,13073215,Medical Incident,08/05/2013,08/04/2013,08/05/2013 06:39:23 AM,08/05/2013 06:41:14 AM,08/05/2013 06:42:28 AM,08/05/2013 06:43:29 AM,08/05/2013 06:55:27 AM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,No Merit,08/05/2013 06:58:37 AM,WAWONA ST/46TH AV,SF,94116,B08,18,7642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7361821250694, -122.504227749875)",132170071-AM16 -160661659,AM08,16026400,Medical Incident,03/06/2016,03/06/2016,03/06/2016 01:40:04 PM,03/06/2016 01:41:33 PM,03/06/2016 01:42:40 PM,03/06/2016 01:43:35 PM,03/06/2016 01:48:20 PM,03/06/2016 01:59:41 PM,03/06/2016 02:10:32 PM,Code 2 Transport,03/06/2016 02:29:39 PM,BEACH ST/TAYLOR ST,San Francisco,94133,B01,28,1521,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.807275868938, -122.41561643642)",160661659-AM08 -122830173,RS1,12093639,Structure Fire,10/09/2012,10/09/2012,10/09/2012 01:02:03 PM,10/09/2012 01:02:52 PM,10/09/2012 01:03:08 PM,10/09/2012 01:04:11 PM,10/09/2012 01:11:06 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 01:16:44 PM,3200 Block of SACRAMENTO ST,SF,94115,B04,10,4412,3,3,3,false,Alarm,1,RESCUE SQUAD,7,4,2,Presidio Heights,"(37.7882208815731, -122.446270384367)",122830173-RS1 -123190314,E11,12106176,Medical Incident,11/14/2012,11/14/2012,11/14/2012 06:49:12 PM,11/14/2012 06:51:05 PM,11/14/2012 06:51:39 PM,04/25/2016 01:55:48 PM,11/14/2012 06:56:29 PM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Other,11/14/2012 07:05:07 PM,20TH ST/DOLORES ST,SF,94110,B06,11,5444,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7582268286563, -122.425766808104)",123190314-E11 -113340197,E18,11110614,Medical Incident,11/30/2011,11/30/2011,11/30/2011 02:24:44 PM,11/30/2011 02:25:29 PM,11/30/2011 02:26:23 PM,11/30/2011 02:27:20 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,11/30/2011 02:29:27 PM,1300 Block of 48TH AVE,SF,94122,B08,23,7721,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.761256999261, -122.508202143455)",113340197-E18 -121860385,55,12062126,Traffic Collision,07/04/2012,07/04/2012,07/04/2012 10:34:03 PM,07/04/2012 10:37:33 PM,07/04/2012 10:49:15 PM,07/04/2012 10:49:28 PM,07/04/2012 10:56:48 PM,07/04/2012 11:10:27 PM,07/04/2012 11:25:29 PM,Code 2 Transport,07/04/2012 11:52:30 PM,30TH ST/DOLORES ST,SF,94110,B06,11,5574,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7422363026492, -122.424233278525)",121860385-55 -110770071,AM16,11025254,Medical Incident,03/18/2011,03/17/2011,03/18/2011 06:30:47 AM,03/18/2011 06:31:37 AM,03/18/2011 06:32:23 AM,03/18/2011 06:33:28 AM,03/18/2011 06:41:32 AM,03/18/2011 06:49:01 AM,03/18/2011 08:04:03 AM,Code 2 Transport,03/18/2011 08:36:52 AM,700 Block of 4TH ST,SF,94107,B03,8,2224,3,2,2,false,,1,PRIVATE,2,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",110770071-AM16 -140210346,92,14007334,Structure Fire,01/21/2014,01/21/2014,01/21/2014 09:14:15 PM,01/21/2014 09:14:16 PM,01/21/2014 09:26:13 PM,01/21/2014 09:26:41 PM,01/21/2014 09:32:37 PM,01/21/2014 10:05:04 PM,01/21/2014 10:12:05 PM,Other,01/21/2014 10:49:54 PM,26TH ST/HAMPSHIRE ST,SF,94110,B06,9,5616,,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7497166298249, -122.406896451435)",140210346-92 -160123158,64,16004900,Medical Incident,01/12/2016,01/12/2016,01/12/2016 06:59:10 PM,01/12/2016 06:59:10 PM,01/12/2016 06:59:48 PM,01/12/2016 07:00:04 PM,01/12/2016 07:04:52 PM,01/12/2016 07:11:58 PM,01/12/2016 07:29:43 PM,Code 2 Transport,01/12/2016 08:03:39 PM,EVANS AV/PHELPS ST,San Francisco,94124,B10,25,6457,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7429806182434, -122.388455028839)",160123158-64 -160410709,55,16016354,Medical Incident,02/10/2016,02/09/2016,02/10/2016 07:56:54 AM,02/10/2016 07:57:39 AM,02/10/2016 07:59:49 AM,02/10/2016 08:02:50 AM,02/10/2016 08:35:53 AM,02/10/2016 08:35:57 AM,02/10/2016 08:48:16 AM,Code 2 Transport,02/10/2016 10:15:48 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7817569847968, -122.414263390372)",160410709-55 -131750219,RC1,13059404,Traffic Collision,06/24/2013,06/24/2013,06/24/2013 02:51:37 PM,06/24/2013 02:52:20 PM,06/24/2013 02:54:14 PM,04/25/2016 01:52:08 PM,06/24/2013 02:59:44 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 03:19:45 PM,RUSS ST/FOLSOM ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7776289330635, -122.40672447168)",131750219-RC1 -110730378,E10,11024173,Medical Incident,03/14/2011,03/14/2011,03/14/2011 09:26:26 PM,03/14/2011 09:27:08 PM,03/14/2011 09:27:22 PM,03/14/2011 09:28:19 PM,03/14/2011 09:31:56 PM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/14/2011 09:49:41 PM,3600 Block of CALIFORNIA ST,SF,94118,B07,10,4436,3,3,3,true,,1,ENGINE,2,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",110730378-E10 -160062134,AM08,16002442,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:37:56 PM,01/06/2016 02:38:30 PM,01/06/2016 02:39:05 PM,01/06/2016 02:40:27 PM,01/06/2016 02:57:12 PM,01/06/2016 02:57:28 PM,01/06/2016 03:30:18 PM,Code 2 Transport,01/06/2016 04:04:47 PM,1600 Block of ALEMANY BLVD,San Francisco,94112,B09,15,8271,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.725089760675, -122.436723473282)",160062134-AM08 -122680266,86,12088605,Medical Incident,09/24/2012,09/24/2012,09/24/2012 04:57:46 PM,09/24/2012 04:59:25 PM,09/24/2012 05:01:24 PM,09/24/2012 05:02:09 PM,09/24/2012 05:10:41 PM,09/24/2012 05:30:55 PM,09/24/2012 05:43:37 PM,Code 2 Transport,09/24/2012 06:10:18 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",122680266-86 -160173160,78,16007003,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:05:32 PM,01/17/2016 09:06:53 PM,01/17/2016 09:07:39 PM,01/17/2016 09:07:52 PM,01/17/2016 09:18:14 PM,01/17/2016 09:40:01 PM,01/17/2016 10:01:44 PM,Code 2 Transport,01/17/2016 10:34:59 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",160173160-78 -160602498,66,16023984,Medical Incident,02/29/2016,02/29/2016,02/29/2016 04:44:08 PM,02/29/2016 04:47:21 PM,02/29/2016 04:48:55 PM,02/29/2016 04:49:08 PM,02/29/2016 05:02:45 PM,02/29/2016 05:31:01 PM,02/29/2016 05:41:37 PM,Code 2 Transport,02/29/2016 06:48:23 PM,1600 Block of 16TH AVE,San Francisco,94122,B08,22,7372,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7574539149952, -122.473691932928)",160602498-66 -111270105,E37,11041978,Medical Incident,05/07/2011,05/07/2011,05/07/2011 10:16:21 AM,05/07/2011 10:17:00 AM,05/07/2011 10:17:16 AM,05/07/2011 10:17:48 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/07/2011 10:21:06 AM,24TH ST/POTRERO AV,SF,94110,B10,37,2554,3,3,3,true,,1,ENGINE,4,10,9,Mission,"(37.7530040313925, -122.406336240587)",111270105-E37 -160390493,52,16015482,Medical Incident,02/08/2016,02/07/2016,02/08/2016 05:18:06 AM,02/08/2016 05:20:54 AM,02/08/2016 05:21:13 AM,02/08/2016 05:21:55 AM,02/08/2016 05:26:27 AM,02/08/2016 05:44:44 AM,02/08/2016 06:04:56 AM,Code 2 Transport,02/08/2016 06:40:23 AM,400 Block of LA GRANDE AVE,San Francisco,94112,B09,43,6165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7168832129692, -122.426832020339)",160390493-52 -110180070,E26,11005853,Traffic Collision,01/18/2011,01/18/2011,01/18/2011 09:08:53 AM,01/18/2011 09:10:49 AM,01/18/2011 09:12:16 AM,01/18/2011 09:13:33 AM,01/18/2011 09:15:40 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Patient Declined Transport,01/18/2011 09:37:57 AM,DIAMOND HEIGHTS BL/ARBOR ST,SF,94131,B06,26,8174,2,2,2,true,,1,ENGINE,1,6,8,Glen Park,"(37.7377891378553, -122.439919792973)",110180070-E26 -130470376,55,13016165,Medical Incident,02/16/2013,02/16/2013,02/16/2013 08:10:05 PM,02/16/2013 08:12:23 PM,02/16/2013 08:12:56 PM,02/16/2013 08:13:05 PM,02/16/2013 08:22:06 PM,02/16/2013 08:50:57 PM,02/16/2013 09:04:37 PM,Code 2 Transport,02/16/2013 09:26:46 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",130470376-55 -132040047,E02,13068996,Medical Incident,07/23/2013,07/22/2013,07/23/2013 06:22:01 AM,07/23/2013 06:23:43 AM,07/23/2013 06:24:47 AM,07/23/2013 06:26:33 AM,07/23/2013 06:28:12 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 06:36:40 AM,300 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7980497141877, -122.406829909619)",132040047-E02 -121130073,E16,12037427,Medical Incident,04/22/2012,04/21/2012,04/22/2012 05:50:14 AM,04/22/2012 05:51:17 AM,04/22/2012 05:52:27 AM,04/22/2012 05:54:43 AM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 05:54:49 AM,2100 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7998548796266, -122.436893822331)",121130073-E16 -102790177,E08,10088697,Medical Incident,10/06/2010,10/06/2010,10/06/2010 01:41:06 PM,10/06/2010 01:43:18 PM,10/06/2010 01:43:53 PM,10/06/2010 01:45:14 PM,10/06/2010 01:46:36 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 01:53:40 PM,900 Block of 4TH ST,SF,94158,B03,8,2225,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7753672597362, -122.392898312211)",102790177-E08 -121480381,89,12049281,Medical Incident,05/27/2012,05/27/2012,05/27/2012 10:06:16 PM,05/27/2012 10:06:16 PM,05/27/2012 10:06:16 PM,05/27/2012 10:07:35 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,04/25/2016 01:58:29 PM,Other,05/27/2012 10:08:44 PM,1600 Block of BATTERY CHAMBERLIN RD,PR,94129,B99,51,4630,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,2,Presidio,"(37.7915253713789, -122.483480228628)",121480381-89 -140560214,87,14018915,Medical Incident,02/25/2014,02/25/2014,02/25/2014 02:05:30 PM,02/25/2014 02:06:30 PM,02/25/2014 02:07:02 PM,02/25/2014 02:07:18 PM,02/25/2014 02:12:57 PM,02/25/2014 02:36:29 PM,02/25/2014 02:44:07 PM,Code 2 Transport,02/25/2014 03:13:41 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",140560214-87 -120590137,D3,12019391,Structure Fire,02/28/2012,02/28/2012,02/28/2012 11:18:00 AM,02/28/2012 11:18:26 AM,02/28/2012 11:18:33 AM,02/28/2012 11:22:02 AM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/28/2012 11:25:48 AM,3RD ST/REVERE AV,SF,94124,B10,17,6514,3,3,3,false,Fire,1,CHIEF,7,10,10,Bayview Hunters Point,"(37.7324319090354, -122.391521351669)",120590137-D3 -121410471,E37,12047101,Vehicle Fire,05/20/2012,05/20/2012,05/20/2012 11:11:13 PM,05/20/2012 11:13:09 PM,05/20/2012 11:13:24 PM,05/20/2012 11:15:08 PM,05/20/2012 11:17:51 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,Fire,05/20/2012 11:59:55 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,3,3,3,false,Fire,1,ENGINE,1,10,10,Potrero Hill,"(37.7536287459484, -122.395523138586)",121410471-E37 -102990184,E33,10095461,Medical Incident,10/26/2010,10/26/2010,10/26/2010 12:43:47 PM,10/26/2010 12:46:23 PM,10/26/2010 12:46:39 PM,10/26/2010 12:48:04 PM,10/26/2010 12:50:34 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 01:18:46 PM,100 Block of FONT BLVD,SF,94132,B08,33,8422,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",102990184-E33 -133510089,84,13119113,Medical Incident,12/17/2013,12/16/2013,12/17/2013 07:22:15 AM,12/17/2013 07:23:04 AM,12/17/2013 07:23:50 AM,12/17/2013 07:24:03 AM,12/17/2013 07:30:50 AM,12/17/2013 07:51:51 AM,12/17/2013 08:13:00 AM,Code 3 Transport,12/17/2013 09:16:52 AM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",133510089-84 -122800221,E13,12092624,Medical Incident,10/06/2012,10/06/2012,10/06/2012 02:13:31 PM,10/06/2012 02:15:20 PM,10/06/2012 02:17:29 PM,10/06/2012 02:18:07 PM,10/06/2012 02:29:15 PM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,Other,10/06/2012 02:32:03 PM,500 Block of MARKET ST,SF,94104,B03,1,2109,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",122800221-E13 -123390303,E41,12113160,Medical Incident,12/04/2012,12/04/2012,12/04/2012 05:46:21 PM,12/04/2012 05:46:21 PM,12/04/2012 05:46:21 PM,12/04/2012 06:03:57 PM,12/04/2012 06:08:48 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 06:18:58 PM,HYDE ST/OFARRELL ST,SF,94109,B04,3,1544,2,2,2,false,Non Life-threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7853759730503, -122.416259705763)",123390303-E41 -130240386,E42,13008459,Medical Incident,01/24/2013,01/24/2013,01/24/2013 09:58:47 PM,01/24/2013 09:59:08 PM,01/24/2013 09:59:15 PM,01/24/2013 10:00:37 PM,01/24/2013 10:02:12 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 10:10:46 PM,2800 Block of SAN BRUNO AVE,SF,94134,B10,42,6333,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7258516225617, -122.402785741041)",130240386-E42 -102420100,E42,10076259,Medical Incident,08/30/2010,08/30/2010,08/30/2010 09:41:45 AM,08/30/2010 09:44:00 AM,08/30/2010 09:45:27 AM,08/30/2010 09:46:40 AM,08/30/2010 09:48:31 AM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Other,08/30/2010 10:00:34 AM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",102420100-E42 -112750318,T48,11091127,Vehicle Fire,10/02/2011,10/02/2011,10/02/2011 07:03:20 PM,10/02/2011 07:04:06 PM,10/02/2011 07:06:52 PM,10/02/2011 07:08:00 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/02/2011 07:28:54 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,,1,TRUCK,2,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",112750318-T48 -110650295,87,11021552,Medical Incident,03/06/2011,03/06/2011,03/06/2011 05:40:23 PM,03/06/2011 05:41:25 PM,03/06/2011 05:41:49 PM,03/06/2011 05:42:42 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,04/25/2016 02:05:45 PM,Other,03/06/2011 05:48:26 PM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",110650295-87 -131750125,E01,13059329,Medical Incident,06/24/2013,06/24/2013,06/24/2013 10:39:17 AM,06/24/2013 10:40:10 AM,06/24/2013 10:40:22 AM,06/24/2013 10:40:34 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 10:43:57 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131750125-E01 -120490159,E36,12016196,Structure Fire,02/18/2012,02/18/2012,02/18/2012 12:37:15 PM,02/18/2012 12:37:15 PM,02/18/2012 12:37:23 PM,02/18/2012 12:38:43 PM,02/18/2012 12:40:10 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Fire,02/18/2012 12:40:46 PM,1000 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",120490159-E36 -132550270,T03,13086253,Citizen Assist / Service Call,09/12/2013,09/12/2013,09/12/2013 04:14:15 PM,09/12/2013 04:15:40 PM,09/12/2013 04:16:01 PM,09/12/2013 04:20:10 PM,09/12/2013 04:24:15 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 04:37:17 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,Alarm,1,TRUCK,1,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",132550270-T03 -110040236,B01,11001336,Alarms,01/04/2011,01/04/2011,01/04/2011 03:17:47 PM,01/04/2011 03:18:57 PM,01/04/2011 03:19:23 PM,01/04/2011 03:22:18 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/04/2011 03:30:47 PM,100 Block of UNION ST,SF,94111,B01,13,1153,3,3,3,false,,1,CHIEF,3,1,3,Financial District/South Beach,"(37.8012225262749, -122.402484813291)",110040236-B01 -160810560,82,16032075,Medical Incident,03/21/2016,03/20/2016,03/21/2016 07:16:26 AM,03/21/2016 07:17:56 AM,03/21/2016 07:19:20 AM,03/21/2016 07:21:01 AM,03/21/2016 07:25:12 AM,03/21/2016 07:39:57 AM,03/21/2016 07:45:33 AM,Code 2 Transport,03/21/2016 08:12:37 AM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160810560-82 -160580457,KM07,16023000,Traffic Collision,02/27/2016,02/26/2016,02/27/2016 03:36:04 AM,02/27/2016 03:39:01 AM,02/27/2016 03:39:06 AM,02/27/2016 03:39:43 AM,02/27/2016 03:47:46 AM,02/27/2016 04:01:50 AM,02/27/2016 04:10:29 AM,Other,02/27/2016 05:17:59 AM,1600 Block of MARKET ST,San Francisco,94103,B02,36,5115,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7726948236861, -122.422188261426)",160580457-KM07 -132960080,E03,13100518,Medical Incident,10/23/2013,10/23/2013,10/23/2013 09:10:49 AM,10/23/2013 09:13:27 AM,10/23/2013 09:14:28 AM,10/23/2013 09:15:00 AM,10/23/2013 09:15:46 AM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/23/2013 09:53:51 AM,1300 Block of BUSH ST,SF,94109,B04,3,1636,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",132960080-E03 -121120426,KM07,12037345,Medical Incident,04/21/2012,04/21/2012,04/21/2012 11:06:21 PM,04/21/2012 11:07:47 PM,04/21/2012 11:08:26 PM,04/21/2012 11:09:24 PM,04/21/2012 11:13:06 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Patient Declined Transport,04/21/2012 11:14:23 PM,TAYLOR ST/SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",121120426-KM07 -160191937,AM14,16007652,Medical Incident,01/19/2016,01/19/2016,01/19/2016 01:46:30 PM,01/19/2016 01:48:49 PM,01/19/2016 01:53:01 PM,01/19/2016 01:53:37 PM,01/19/2016 02:12:12 PM,01/19/2016 02:12:48 PM,01/19/2016 02:40:55 PM,Code 2 Transport,01/19/2016 03:10:06 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160191937-AM14 -130840154,T03,13028023,Citizen Assist / Service Call,03/25/2013,03/25/2013,03/25/2013 10:50:18 AM,03/25/2013 10:51:39 AM,03/25/2013 10:54:21 AM,03/25/2013 10:55:21 AM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,04/25/2016 01:53:39 PM,Other,03/25/2013 10:58:08 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,Alarm,1,TRUCK,1,1,6,Tenderloin,"(37.7862508859711, -122.413133876591)",130840154-T03 -131790055,82,13060686,Medical Incident,06/28/2013,06/27/2013,06/28/2013 03:46:16 AM,06/28/2013 03:47:01 AM,06/28/2013 03:47:27 AM,06/28/2013 03:47:33 AM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,Other,06/28/2013 03:50:18 AM,1500 Block of 18TH AVE,SF,94122,B08,22,7423,E,E,3,false,Potentially Life-Threatening,1,MEDIC,4,8,7,Inner Sunset,"(37.7589435555381, -122.47580028939)",131790055-82 -160151809,53,16005990,Medical Incident,01/15/2016,01/15/2016,01/15/2016 12:58:24 PM,01/15/2016 01:00:09 PM,01/15/2016 01:01:34 PM,01/15/2016 01:01:46 PM,01/15/2016 01:20:54 PM,01/15/2016 01:23:21 PM,01/15/2016 01:46:03 PM,Code 2 Transport,01/15/2016 02:07:21 PM,200 Block of FRONT ST,San Francisco,94111,B01,13,1141,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7936101605254, -122.398762705491)",160151809-53 -160160284,AM18,16006259,Medical Incident,01/16/2016,01/15/2016,01/16/2016 02:03:13 AM,01/16/2016 02:03:13 AM,01/16/2016 02:04:04 AM,01/16/2016 02:04:46 AM,01/16/2016 02:12:22 AM,01/16/2016 02:38:45 AM,01/16/2016 02:47:18 AM,Code 2 Transport,01/16/2016 03:14:34 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160160284-AM18 -131290126,83,13043557,Medical Incident,05/09/2013,05/09/2013,05/09/2013 11:03:03 AM,05/09/2013 11:04:39 AM,05/09/2013 11:05:21 AM,05/09/2013 11:05:43 AM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,Other,04/25/2016 01:52:53 PM,MISSION ST/7TH ST,SF,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",131290126-83 -120010397,B10,12000342,Structure Fire,01/01/2012,01/01/2012,01/01/2012 11:51:34 AM,01/01/2012 11:52:11 AM,01/01/2012 11:52:27 AM,01/01/2012 11:53:16 AM,01/01/2012 11:57:14 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 11:58:11 AM,800 Block of INNES AVE,SF,94124,B10,25,6632,3,3,3,false,Fire,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7314216570538, -122.374864504136)",120010397-B10 -110080231,99,11002716,Medical Incident,01/08/2011,01/08/2011,01/08/2011 03:18:37 PM,01/08/2011 03:19:19 PM,01/08/2011 03:19:40 PM,01/08/2011 03:20:00 PM,01/08/2011 03:23:14 PM,01/08/2011 03:36:47 PM,01/08/2011 03:49:01 PM,Code 2 Transport,01/08/2011 04:04:14 PM,100 Block of LONDON ST,SF,94112,B09,43,6131,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7266191011756, -122.432371371352)",110080231-99 -120310256,E31,12010331,Traffic Collision,01/31/2012,01/31/2012,01/31/2012 04:48:34 PM,01/31/2012 04:48:47 PM,01/31/2012 04:49:33 PM,01/31/2012 04:51:04 PM,01/31/2012 04:53:02 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/31/2012 04:53:45 PM,18TH AV/CLEMENT ST,SF,94121,B07,31,7162,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,7,1,Outer Richmond,"(37.7823605680596, -122.477374310784)",120310256-E31 -113560339,E21,11118323,Medical Incident,12/22/2011,12/22/2011,12/22/2011 06:20:25 PM,12/22/2011 06:22:10 PM,12/22/2011 06:22:42 PM,12/22/2011 06:23:51 PM,12/22/2011 06:24:21 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Other,12/22/2011 06:44:49 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,3,3,3,false,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",113560339-E21 -140530014,55,14017800,Medical Incident,02/22/2014,02/21/2014,02/22/2014 12:34:06 AM,02/22/2014 12:36:26 AM,02/22/2014 12:36:38 AM,02/22/2014 12:36:47 AM,02/22/2014 12:45:34 AM,02/22/2014 01:02:42 AM,02/22/2014 01:17:33 AM,Code 2 Transport,02/22/2014 01:57:48 AM,2700 Block of 41ST AVE,SF,94116,B08,19,7641,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7354674300338, -122.498871451486)",140530014-55 -110070156,E16,11002299,Medical Incident,01/07/2011,01/07/2011,01/07/2011 12:04:16 PM,01/07/2011 12:06:23 PM,01/07/2011 12:06:40 PM,01/07/2011 12:07:45 PM,01/07/2011 12:12:49 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/07/2011 12:18:41 PM,2200 Block of FILBERT ST,SF,94123,B04,16,3611,2,2,2,true,,1,ENGINE,2,4,2,Marina,"(37.7979705264225, -122.436513149932)",110070156-E16 -120890079,AM06,12029389,Medical Incident,03/29/2012,03/29/2012,03/29/2012 09:06:43 AM,03/29/2012 09:07:17 AM,03/29/2012 09:08:32 AM,03/29/2012 09:09:11 AM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,No Merit,03/29/2012 09:12:03 AM,16TH ST/ALBION ST,SF,94110,B02,6,5235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7648432997817, -122.42311242302)",120890079-AM06 -130600225,RC1,13020155,Medical Incident,03/01/2013,03/01/2013,03/01/2013 02:25:06 PM,03/01/2013 02:27:42 PM,03/01/2013 02:28:13 PM,03/01/2013 02:30:19 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 02:33:23 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",130600225-RC1 -160373613,AM04,16014916,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:33:21 PM,02/06/2016 08:33:40 PM,02/06/2016 08:34:16 PM,02/06/2016 08:35:34 PM,02/06/2016 08:45:19 PM,02/06/2016 08:59:06 PM,02/06/2016 09:30:44 PM,Code 2 Transport,02/06/2016 09:55:49 PM,400 Block of PACIFIC AVE,San Francisco,94133,B01,13,1212,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.7974015545937, -122.403291978554)",160373613-AM04 -140360217,55,14012237,Medical Incident,02/05/2014,02/05/2014,02/05/2014 02:56:16 PM,02/05/2014 02:58:27 PM,02/05/2014 02:59:45 PM,02/05/2014 02:59:52 PM,02/05/2014 03:10:34 PM,02/05/2014 03:33:40 PM,02/05/2014 03:37:56 PM,Code 2 Transport,02/05/2014 04:01:34 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",140360217-55 -111480047,83,11048975,Medical Incident,05/28/2011,05/27/2011,05/28/2011 05:13:44 AM,05/28/2011 05:13:54 AM,05/28/2011 05:14:06 AM,05/28/2011 05:15:01 AM,05/28/2011 05:19:58 AM,05/28/2011 05:39:13 AM,05/28/2011 06:09:19 AM,Code 2 Transport,05/28/2011 06:27:31 AM,4800 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7213272618826, -122.437216421378)",111480047-83 -160420404,50,16016736,Medical Incident,02/11/2016,02/10/2016,02/11/2016 05:31:56 AM,02/11/2016 05:34:42 AM,02/11/2016 05:35:06 AM,02/11/2016 05:36:16 AM,02/11/2016 05:41:02 AM,02/11/2016 05:50:42 AM,02/11/2016 06:02:58 AM,Code 2 Transport,02/11/2016 06:52:32 AM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160420404-50 -122480008,RS2,12081840,Medical Incident,09/04/2012,09/03/2012,09/04/2012 12:09:49 AM,09/04/2012 12:10:03 AM,09/04/2012 12:10:16 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/04/2012 12:11:49 AM,900 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,E,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,6,9,Mission,"(37.7579695979937, -122.416727053367)",122480008-RS2 -160810559,62,16032074,Medical Incident,03/21/2016,03/20/2016,03/21/2016 07:17:46 AM,03/21/2016 07:17:46 AM,03/21/2016 07:18:28 AM,03/21/2016 07:18:43 AM,03/21/2016 07:24:55 AM,03/21/2016 07:40:01 AM,03/21/2016 08:00:03 AM,Code 2 Transport,03/21/2016 08:24:04 AM,VAN NESS AV/AUSTIN ST,San Francisco,94109,B04,3,3156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Western Addition,"(37.7889426233667, -122.42214537963)",160810559-62 -110850326,E01,11028156,Structure Fire,03/26/2011,03/26/2011,03/26/2011 07:28:39 PM,03/26/2011 07:28:39 PM,03/26/2011 07:28:49 PM,04/25/2016 02:05:26 PM,03/26/2011 07:32:11 PM,04/25/2016 02:05:26 PM,04/25/2016 02:05:26 PM,Other,03/26/2011 07:32:26 PM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",110850326-E01 -102680185,D2,10084887,Structure Fire,09/25/2010,09/25/2010,09/25/2010 12:20:38 PM,09/25/2010 12:21:04 PM,09/25/2010 12:21:29 PM,09/25/2010 12:22:22 PM,09/25/2010 12:32:22 PM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 12:45:13 PM,1800 Block of 30TH AVE,SF,94122,B08,18,7515,3,3,3,false,,1,CHIEF,8,8,4,Sunset/Parkside,"(37.7527846529683, -122.488272720267)",102680185-D2 -102810352,E17,10089453,Alarms,10/08/2010,10/08/2010,10/08/2010 07:06:58 PM,10/08/2010 07:08:45 PM,10/08/2010 07:10:30 PM,10/08/2010 07:11:20 PM,10/08/2010 07:14:34 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/08/2010 07:16:52 PM,0 Block of REDDY ST,SF,94124,B10,17,6513,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7303445745684, -122.395149263029)",102810352-E17 -160403382,68,16016197,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:11:15 PM,02/09/2016 08:11:15 PM,02/09/2016 08:12:05 PM,02/09/2016 08:12:12 PM,02/09/2016 08:25:44 PM,02/09/2016 08:31:40 PM,02/09/2016 09:06:50 PM,Code 2 Transport,02/09/2016 09:49:08 PM,500 Block of 2ND ST,San Francisco,94107,B03,8,2153,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7824042708264, -122.392678013095)",160403382-68 -111860112,E07,11061412,Medical Incident,07/05/2011,07/05/2011,07/05/2011 08:27:13 AM,07/05/2011 08:27:51 AM,07/05/2011 08:28:32 AM,07/05/2011 08:29:56 AM,07/05/2011 08:31:06 AM,04/25/2016 02:03:49 PM,04/25/2016 02:03:49 PM,Other,07/05/2011 08:38:09 AM,3100 Block of 18TH ST,SF,94110,B02,7,5424,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7621831102458, -122.414520446496)",111860112-E07 -160181191,65,16007192,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:04:23 AM,01/18/2016 11:05:42 AM,01/18/2016 11:06:16 AM,01/18/2016 11:06:22 AM,01/18/2016 11:14:24 AM,01/18/2016 11:28:54 AM,01/18/2016 11:38:37 AM,Code 2 Transport,01/18/2016 12:28:39 PM,400 Block of POWELL ST,San Francisco,94108,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",160181191-65 -131570213,RS2,13053249,Medical Incident,06/06/2013,06/06/2013,06/06/2013 01:04:08 PM,06/06/2013 01:04:58 PM,06/06/2013 01:05:40 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/06/2013 01:06:59 PM,600 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,9,Mission,"(37.7627737268131, -122.417186682545)",131570213-RS2 -102330112,E06,10073283,Traffic Collision,08/21/2010,08/21/2010,08/21/2010 09:05:29 AM,08/21/2010 09:06:58 AM,08/21/2010 09:07:34 AM,08/21/2010 09:08:12 AM,08/21/2010 09:10:37 AM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/21/2010 09:21:42 AM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",102330112-E06 -112620310,T06,11086556,Alarms,09/19/2011,09/19/2011,09/19/2011 04:55:00 PM,09/19/2011 04:55:57 PM,09/19/2011 04:56:02 PM,09/19/2011 04:57:46 PM,09/19/2011 05:00:55 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Other,09/19/2011 05:12:51 PM,200 Block of 14TH ST,SF,94103,B02,36,5215,3,3,3,false,,1,TRUCK,2,2,9,Mission,"(37.7682417343017, -122.419597974659)",112620310-T06 -121140059,54,12037746,Medical Incident,04/23/2012,04/22/2012,04/23/2012 06:36:41 AM,04/23/2012 06:37:42 AM,04/23/2012 06:38:13 AM,04/23/2012 06:38:31 AM,04/23/2012 06:43:52 AM,04/23/2012 06:53:51 AM,04/23/2012 07:11:37 AM,Code 2 Transport,04/23/2012 07:22:33 AM,LOS PALMOS DR/HAZELWOOD AV,SF,94127,B09,39,8526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7344863265683, -122.457562932379)",121140059-54 -102760167,T01,10087714,Structure Fire,10/03/2010,10/03/2010,10/03/2010 11:38:07 AM,10/03/2010 11:38:07 AM,10/03/2010 11:38:35 AM,10/03/2010 11:39:51 AM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Fire,10/03/2010 11:41:48 AM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7779770860913, -122.409387007126)",102760167-T01 -122330263,T14,12077351,Citizen Assist / Service Call,08/20/2012,08/20/2012,08/20/2012 04:18:51 PM,08/20/2012 04:19:54 PM,08/20/2012 04:22:33 PM,08/20/2012 04:23:27 PM,08/20/2012 04:27:53 PM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Fire,08/20/2012 04:32:13 PM,BALBOA ST/37TH AV,SF,94121,B07,34,7254,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.7757154136216, -122.497318725581)",122330263-T14 -110460239,64,11015275,Medical Incident,02/15/2011,02/15/2011,02/15/2011 03:23:05 PM,02/15/2011 03:23:28 PM,02/15/2011 03:24:05 PM,02/15/2011 03:24:20 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 03:27:55 PM,600 Block of SHOTWELL ST,SF,94110,B06,7,5447,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.758027155218, -122.415771731954)",110460239-64 -140370226,65,14012546,Medical Incident,02/06/2014,02/06/2014,02/06/2014 03:05:10 PM,02/06/2014 03:08:00 PM,02/06/2014 03:08:52 PM,02/06/2014 03:09:10 PM,02/06/2014 03:19:25 PM,02/06/2014 03:45:03 PM,02/06/2014 03:57:02 PM,Code 2 Transport,02/06/2014 04:22:05 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",140370226-65 -123220238,E28,12107092,Medical Incident,11/17/2012,11/17/2012,11/17/2012 02:07:47 PM,11/17/2012 02:08:33 PM,11/17/2012 02:09:43 PM,11/17/2012 02:10:24 PM,11/17/2012 02:11:47 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,No Merit,11/17/2012 02:23:03 PM,UNION ST/COLUMBUS AV,SF,94133,B01,28,1334,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8003154984429, -122.410206543893)",123220238-E28 -160682796,77,16027197,Medical Incident,03/08/2016,03/08/2016,03/08/2016 05:34:42 PM,03/08/2016 05:34:42 PM,03/08/2016 05:34:50 PM,03/08/2016 05:35:01 PM,03/08/2016 05:55:35 PM,03/08/2016 06:10:46 PM,03/08/2016 06:37:24 PM,Code 2 Transport,03/08/2016 07:26:05 PM,6800 Block of GEARY BLVD,San Francisco,94121,B07,14,7245,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7795992276272, -122.49275286314)",160682796-77 -131530302,66,13051944,Medical Incident,06/02/2013,06/02/2013,06/02/2013 08:12:23 PM,06/02/2013 08:14:14 PM,06/02/2013 08:17:17 PM,06/02/2013 08:17:33 PM,06/02/2013 08:26:21 PM,06/02/2013 08:35:24 PM,06/02/2013 08:46:49 PM,Code 2 Transport,06/02/2013 09:04:06 PM,3800 Block of 18TH ST,SF,94114,B02,6,5421,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7612772987761, -122.429469068918)",131530302-66 -120280127,KM01,12009358,Medical Incident,01/28/2012,01/28/2012,01/28/2012 10:26:14 AM,01/28/2012 10:27:31 AM,01/28/2012 10:28:45 AM,01/28/2012 10:30:50 AM,01/28/2012 10:43:00 AM,01/28/2012 10:46:23 AM,01/28/2012 11:07:51 AM,Code 2 Transport,01/28/2012 11:46:03 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",120280127-KM01 -120320357,E25,12010732,Medical Incident,02/01/2012,02/01/2012,02/01/2012 10:32:06 PM,02/01/2012 10:32:27 PM,02/01/2012 10:33:17 PM,04/25/2016 02:00:20 PM,02/01/2012 10:36:11 PM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/01/2012 10:47:38 PM,600 Block of MENDELL ST,SF,94124,B10,25,6521,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7392640592313, -122.386060486785)",120320357-E25 -133440157,E36,13116631,Medical Incident,12/10/2013,12/10/2013,12/10/2013 10:39:12 AM,12/10/2013 10:41:46 AM,12/10/2013 10:42:33 AM,12/10/2013 10:42:45 AM,12/10/2013 10:48:32 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 10:52:27 AM,200 Block of VALENCIA ST,SF,94103,B02,36,5126,2,3,3,true,Non Life-threatening,1,ENGINE,1,2,8,Mission,"(37.7690117510129, -122.422352223863)",133440157-E36 -132520364,AM10,13085338,Medical Incident,09/09/2013,09/09/2013,09/09/2013 11:53:18 PM,09/09/2013 11:54:44 PM,09/09/2013 11:55:09 PM,09/09/2013 11:55:59 PM,09/10/2013 12:02:53 AM,09/10/2013 12:30:40 AM,09/10/2013 12:45:27 AM,Code 2 Transport,09/10/2013 01:21:11 AM,100 Block of BOUTWELL ST,SF,94124,B10,42,6364,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7348185901885, -122.405480344355)",132520364-AM10 -160532598,59,16021315,Medical Incident,02/22/2016,02/22/2016,02/22/2016 05:22:43 PM,02/22/2016 05:22:43 PM,02/22/2016 05:24:10 PM,02/22/2016 05:24:10 PM,02/22/2016 05:43:10 PM,02/22/2016 05:48:39 PM,02/22/2016 06:15:24 PM,Code 2 Transport,02/22/2016 06:34:43 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160532598-59 -160883514,AM16,16035108,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:21:18 PM,03/28/2016 08:21:18 PM,03/28/2016 08:21:32 PM,03/28/2016 08:22:00 PM,03/28/2016 08:31:33 PM,03/28/2016 08:42:42 PM,03/28/2016 09:09:07 PM,Code 2 Transport,03/28/2016 09:37:51 PM,0 Block of LIPPARD AVE,San Francisco,94131,B09,26,8176,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Glen Park,"(37.7343228660254, -122.435628143027)",160883514-AM16 -131320153,67,13044559,Medical Incident,05/12/2013,05/12/2013,05/12/2013 01:40:51 PM,05/12/2013 01:41:19 PM,05/12/2013 01:41:29 PM,05/12/2013 01:41:38 PM,05/12/2013 01:47:17 PM,05/12/2013 02:00:27 PM,05/12/2013 02:13:36 PM,Code 2 Transport,05/12/2013 02:39:35 PM,100 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",131320153-67 -111420347,60,11047326,Medical Incident,05/22/2011,05/22/2011,05/22/2011 08:22:17 PM,05/22/2011 08:23:35 PM,05/22/2011 08:25:31 PM,04/25/2016 02:04:30 PM,05/22/2011 08:43:24 PM,05/22/2011 09:12:20 PM,05/22/2011 09:39:08 PM,Code 2 Transport,05/22/2011 10:15:05 PM,300 Block of BALTIMORE WAY,SF,94112,B09,43,6228,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7087981055096, -122.437985362628)",111420347-60 -110280135,65,11009181,Medical Incident,01/28/2011,01/28/2011,01/28/2011 11:28:27 AM,01/28/2011 11:28:42 AM,01/28/2011 11:29:17 AM,01/28/2011 11:29:29 AM,01/28/2011 11:37:12 AM,01/28/2011 11:49:50 AM,01/28/2011 12:02:08 PM,Code 2 Transport,01/28/2011 12:41:31 PM,1300 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7830202204815, -122.431044500285)",110280135-65 -112810185,E42,11093003,Structure Fire,10/08/2011,10/08/2011,10/08/2011 12:39:42 PM,10/08/2011 12:40:12 PM,10/08/2011 12:40:29 PM,10/08/2011 12:42:20 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Other,10/08/2011 12:44:14 PM,0 Block of MARIST CT,SF,94124,B10,25,6556,3,3,3,true,,1,ENGINE,11,10,10,Bayview Hunters Point,"(37.7331127824761, -122.378240199244)",112810185-E42 -160211727,85,16008380,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:41:50 PM,01/21/2016 12:41:50 PM,01/21/2016 12:42:43 PM,01/21/2016 12:42:55 PM,01/21/2016 12:46:18 PM,01/21/2016 12:53:37 PM,01/21/2016 01:28:03 PM,Code 2 Transport,01/21/2016 02:14:05 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160211727-85 -102930020,RS1,10093313,Structure Fire,10/20/2010,10/19/2010,10/20/2010 01:57:38 AM,10/20/2010 01:59:08 AM,10/20/2010 01:59:15 AM,10/20/2010 02:01:07 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 02:03:25 AM,600 Block of WILLOW ST,SF,94115,B02,5,3431,3,3,3,true,,1,RESCUE SQUAD,10,2,5,Western Addition,"(37.7823648993622, -122.428294883003)",102930020-RS1 -160251618,82,16009915,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:04:31 PM,01/25/2016 12:07:46 PM,01/25/2016 12:07:59 PM,01/25/2016 12:09:18 PM,01/25/2016 12:14:29 PM,01/25/2016 12:33:45 PM,01/25/2016 12:48:13 PM,Code 2 Transport,01/25/2016 01:32:19 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160251618-82 -160620287,72,16024554,Medical Incident,03/02/2016,03/01/2016,03/02/2016 03:46:44 AM,03/02/2016 03:48:52 AM,03/02/2016 03:49:05 AM,03/02/2016 03:49:21 AM,03/02/2016 03:59:27 AM,03/02/2016 04:17:29 AM,03/02/2016 04:27:23 AM,Code 2 Transport,03/02/2016 05:08:51 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160620287-72 -112230252,T15,11073703,Vehicle Fire,08/11/2011,08/11/2011,08/11/2011 04:15:05 PM,08/11/2011 04:16:03 PM,08/11/2011 04:16:36 PM,08/11/2011 04:17:49 PM,08/11/2011 04:19:51 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Fire,08/11/2011 04:29:54 PM,200 Block of OCEAN AVE,SF,94112,B09,15,8311,3,3,3,false,,1,TRUCK,2,9,11,Outer Mission,"(37.7232033054721, -122.442927356983)",112230252-T15 -120260030,55,12008610,Medical Incident,01/26/2012,01/25/2012,01/26/2012 02:52:07 AM,01/26/2012 02:52:34 AM,01/26/2012 02:53:02 AM,01/26/2012 02:53:09 AM,01/26/2012 03:03:27 AM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,No Merit,01/26/2012 03:07:50 AM,GALVEZ AV/3RD ST,SF,94124,B10,25,6457,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7411076328457, -122.388475895082)",120260030-55 -132990386,E14,13101768,Structure Fire,10/26/2013,10/26/2013,10/26/2013 10:51:49 PM,10/26/2013 10:53:16 PM,10/26/2013 10:53:40 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/26/2013 10:56:04 PM,400 Block of 34TH AVE,SF,94121,B07,34,7247,3,3,3,true,Alarm,1,ENGINE,10,7,1,Outer Richmond,"(37.7806166653743, -122.494381116106)",132990386-E14 -160633758,76,16025276,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:11:04 PM,03/03/2016 10:11:41 PM,03/03/2016 10:11:54 PM,03/03/2016 10:12:01 PM,03/03/2016 10:14:14 PM,03/03/2016 10:25:08 PM,03/03/2016 10:28:31 PM,Code 3 Transport,03/03/2016 10:40:47 PM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784689282473, -122.414615262229)",160633758-76 -121250280,T14,12041591,Administrative,05/04/2012,05/04/2012,05/04/2012 05:26:20 PM,05/04/2012 05:26:34 PM,05/04/2012 05:26:46 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 05:27:10 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,3,3,3,false,,1,TRUCK,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",121250280-T14 -133550101,E17,13120594,Medical Incident,12/21/2013,12/21/2013,12/21/2013 08:00:14 AM,12/21/2013 08:02:09 AM,12/21/2013 08:02:39 AM,12/21/2013 08:04:04 AM,12/21/2013 08:08:43 AM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Other,12/21/2013 08:29:47 AM,1400 Block of OAKDALE AVE,SF,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.732955634816, -122.387590806117)",133550101-E17 -160782306,66,16031052,Medical Incident,03/18/2016,03/18/2016,03/18/2016 03:01:28 PM,03/18/2016 03:01:28 PM,03/18/2016 03:06:05 PM,03/18/2016 03:06:05 PM,03/18/2016 03:13:47 PM,03/18/2016 03:26:29 PM,03/18/2016 03:43:58 PM,Code 2 Transport,03/18/2016 03:58:45 PM,0 Block of GLADSTONE DR,San Francisco,94112,B09,32,5685,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,9,Excelsior,"(37.7304026570113, -122.420306723417)",160782306-66 -130370352,RC3,13012847,Medical Incident,02/06/2013,02/06/2013,02/06/2013 10:41:31 PM,02/06/2013 10:42:39 PM,02/06/2013 10:44:41 PM,02/06/2013 10:45:49 PM,02/06/2013 10:53:29 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/06/2013 11:12:54 PM,200 Block of ONONDAGA AVE,SF,94112,B09,15,8277,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7229961977161, -122.441961400944)",130370352-RC3 -160562207,61,16022417,Traffic Collision,02/25/2016,02/25/2016,02/25/2016 02:15:42 PM,02/25/2016 02:15:42 PM,02/25/2016 02:23:12 PM,02/25/2016 02:24:05 PM,02/25/2016 02:48:51 PM,02/25/2016 02:48:53 PM,02/25/2016 03:19:14 PM,Code 2 Transport,02/25/2016 04:34:35 PM,46TH AV/FULTON ST,San Francisco,94122,B07,34,7277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,7,7,1,Outer Richmond,"(37.7715424783159, -122.506685313329)",160562207-61 -111230310,B08,11040731,Structure Fire,05/03/2011,05/03/2011,05/03/2011 06:13:43 PM,05/03/2011 06:14:07 PM,05/03/2011 06:14:24 PM,05/03/2011 06:15:20 PM,05/03/2011 06:18:07 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 07:09:26 PM,2500 Block of 23RD AVE,SF,94116,B08,40,7442,3,3,3,false,,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7400685754574, -122.479713963677)",111230310-B08 -131970233,AM24,13066857,Medical Incident,07/16/2013,07/16/2013,07/16/2013 03:19:58 PM,07/16/2013 03:20:39 PM,07/16/2013 03:20:52 PM,07/16/2013 03:21:30 PM,07/16/2013 03:24:17 PM,07/16/2013 03:35:46 PM,07/16/2013 03:52:26 PM,Code 2 Transport,07/16/2013 04:22:06 PM,1100 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7870624915967, -122.419905427898)",131970233-AM24 -160440639,62,16017594,Medical Incident,02/13/2016,02/12/2016,02/13/2016 06:34:37 AM,02/13/2016 06:36:15 AM,02/13/2016 06:36:51 AM,02/13/2016 06:37:46 AM,02/13/2016 06:46:35 AM,02/13/2016 07:11:40 AM,02/13/2016 07:15:03 AM,Code 2 Transport,02/13/2016 07:58:43 AM,0 Block of NOB HILL PL,San Francisco,94108,B01,41,1413,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7914483957783, -122.410969541094)",160440639-62 -132300390,65,13077846,Medical Incident,08/18/2013,08/18/2013,08/18/2013 11:38:51 PM,08/18/2013 11:40:34 PM,08/18/2013 11:41:12 PM,08/18/2013 11:41:56 PM,08/18/2013 11:45:54 PM,08/19/2013 12:01:16 AM,08/19/2013 12:08:11 AM,Code 2 Transport,08/19/2013 12:43:40 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",132300390-65 -131310129,E19,13044190,Medical Incident,05/11/2013,05/11/2013,05/11/2013 09:37:00 AM,05/11/2013 09:39:18 AM,05/11/2013 09:39:56 AM,05/11/2013 09:40:58 AM,05/11/2013 10:08:01 AM,04/25/2016 01:52:51 PM,04/25/2016 01:52:51 PM,Other,05/11/2013 10:08:17 AM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",131310129-E19 -160233472,56,16009331,Medical Incident,01/23/2016,01/23/2016,01/23/2016 09:18:07 PM,01/23/2016 09:19:14 PM,01/23/2016 09:19:59 PM,01/23/2016 09:20:36 PM,01/23/2016 09:26:32 PM,01/23/2016 09:37:21 PM,01/23/2016 09:48:32 PM,Code 2 Transport,01/23/2016 10:15:55 PM,LOMBARD ST/WEBSTER ST,San Francisco,94123,B04,16,3461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8000515477468, -122.434404699853)",160233472-56 -110650051,B10,11021340,Alarms,03/06/2011,03/05/2011,03/06/2011 02:22:38 AM,03/06/2011 02:23:25 AM,03/06/2011 02:25:45 AM,03/06/2011 02:27:13 AM,03/06/2011 02:30:11 AM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/06/2011 02:35:50 AM,500 Block of BARNEVELD AVE,SF,94124,B10,9,6427,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.74044593571, -122.404296869791)",110650051-B10 -113060155,E32,11101625,Medical Incident,11/02/2011,11/02/2011,11/02/2011 11:05:40 AM,11/02/2011 11:06:39 AM,11/02/2011 11:07:16 AM,11/02/2011 11:08:07 AM,11/02/2011 11:12:28 AM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 11:31:24 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",113060155-E32 -110930340,D3,11031020,Structure Fire,04/03/2011,04/03/2011,04/03/2011 09:16:36 PM,04/03/2011 09:18:31 PM,04/03/2011 09:18:54 PM,04/03/2011 09:20:20 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/03/2011 09:23:19 PM,4700 Block of 17TH ST,SF,94117,B05,12,5257,3,3,3,false,,1,CHIEF,11,5,5,Inner Sunset,"(37.7616324966478, -122.448445203867)",110930340-D3 -132790348,E28,13095038,Structure Fire,10/06/2013,10/06/2013,10/06/2013 06:08:23 PM,10/06/2013 06:10:19 PM,10/06/2013 06:10:34 PM,10/06/2013 06:11:40 PM,10/06/2013 06:13:08 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/06/2013 06:18:58 PM,POWELL ST/NORTH POINT ST,SF,94133,B01,28,1262,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8067580824981, -122.412141425527)",132790348-E28 -140580177,B07,14019559,Water Rescue,02/27/2014,02/27/2014,02/27/2014 12:38:15 PM,02/27/2014 12:39:33 PM,02/27/2014 12:40:18 PM,02/27/2014 12:41:28 PM,02/27/2014 12:46:42 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/27/2014 02:46:51 PM,400 Block of SEACLIFF AVE,SF,94121,B07,14,7232,3,3,3,false,Fire,1,CHIEF,4,7,2,Seacliff,"(37.7875454268637, -122.490200284081)",140580177-B07 -131820014,T16,13061858,Alarms,07/01/2013,06/30/2013,07/01/2013 12:39:59 AM,07/01/2013 12:41:30 AM,07/01/2013 12:41:42 AM,07/01/2013 12:43:00 AM,07/01/2013 12:46:29 AM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,07/01/2013 01:01:26 AM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,3,3,false,Alarm,1,TRUCK,2,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",131820014-T16 -132120166,86,13071648,Medical Incident,07/31/2013,07/31/2013,07/31/2013 12:41:23 PM,07/31/2013 12:44:16 PM,07/31/2013 12:45:13 PM,07/31/2013 12:45:19 PM,07/31/2013 01:02:43 PM,04/25/2016 01:51:33 PM,04/25/2016 01:51:33 PM,Other,07/31/2013 01:06:13 PM,700 Block of RANDOLPH ST,SF,94132,B09,33,8417,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7143060404144, -122.4693501478)",132120166-86 -113460165,E08,11114775,Gas Leak (Natural and LP Gases),12/12/2011,12/12/2011,12/12/2011 11:47:42 AM,12/12/2011 11:49:08 AM,12/12/2011 11:49:41 AM,12/12/2011 11:51:29 AM,12/12/2011 11:52:20 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 12:06:40 PM,400 Block of TOWNSEND ST,SF,94107,B03,8,2236,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7744917897257, -122.398368544424)",113460165-E08 -102430222,94,10076663,Medical Incident,08/31/2010,08/31/2010,08/31/2010 01:48:26 PM,08/31/2010 01:49:05 PM,08/31/2010 01:49:40 PM,08/31/2010 01:49:51 PM,08/31/2010 01:53:06 PM,08/31/2010 02:08:58 PM,08/31/2010 02:19:35 PM,Code 2 Transport,08/31/2010 02:46:10 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",102430222-94 -160312874,AM08,16012282,Medical Incident,01/31/2016,01/31/2016,01/31/2016 05:57:00 PM,01/31/2016 05:57:48 PM,01/31/2016 05:58:00 PM,01/31/2016 05:58:36 PM,01/31/2016 06:04:19 PM,01/31/2016 06:08:10 PM,01/31/2016 06:27:39 PM,Code 2 Transport,01/31/2016 07:04:19 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160312874-AM08 -121860239,RC3,12062011,Medical Incident,07/04/2012,07/04/2012,07/04/2012 05:43:21 PM,07/04/2012 05:43:34 PM,07/04/2012 05:44:30 PM,07/04/2012 05:46:27 PM,07/04/2012 05:50:47 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 06:01:37 PM,1400 Block of SHAFTER AVE,SF,94124,B10,17,6571,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7294942313003, -122.387879447239)",121860239-RC3 -160830734,63,16032857,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:08:58 AM,03/23/2016 08:09:26 AM,03/23/2016 08:10:01 AM,03/23/2016 08:10:14 AM,03/23/2016 08:17:27 AM,03/23/2016 08:33:23 AM,03/23/2016 09:08:14 AM,Code 3 Transport,03/23/2016 09:40:38 AM,800 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",160830734-63 -123630358,E16,12121628,Medical Incident,12/28/2012,12/28/2012,12/28/2012 10:46:43 PM,12/28/2012 10:47:44 PM,12/28/2012 10:48:05 PM,12/28/2012 10:49:56 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 10:53:50 PM,1900 Block of JEFFERSON ST,SF,94123,B04,16,4216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.8044775553238, -122.444614636594)",123630358-E16 -132150278,RC2,13072692,Medical Incident,08/03/2013,08/03/2013,08/03/2013 04:44:39 PM,08/03/2013 04:45:50 PM,08/03/2013 04:48:11 PM,04/25/2016 01:51:29 PM,08/03/2013 04:49:16 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 04:55:38 PM,PARK PRESIDIO BL/GEARY BL,SF,94118,B07,31,7146,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",132150278-RC2 -160341197,52,16013328,Structure Fire,02/03/2016,02/03/2016,02/03/2016 10:41:53 AM,02/03/2016 10:41:53 AM,02/03/2016 10:45:54 AM,02/03/2016 10:46:11 AM,02/03/2016 10:51:51 AM,02/03/2016 11:13:04 AM,02/03/2016 11:23:52 AM,Code 2 Transport,02/03/2016 11:59:12 AM,MISSION ST/PERSIA AV,San Francisco,94112,B09,43,6121,3,3,3,true,Alarm,1,MEDIC,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",160341197-52 -122460032,T18,12081211,Structure Fire,09/02/2012,09/01/2012,09/02/2012 01:50:57 AM,09/02/2012 01:50:58 AM,09/02/2012 01:51:15 AM,09/02/2012 01:53:06 AM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 01:55:17 AM,23RD AV/IRVING ST,SF,94122,B08,22,7451,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7633730938478, -122.481408835625)",122460032-T18 -123600007,AM18,12120364,Medical Incident,12/25/2012,12/24/2012,12/25/2012 12:42:05 AM,12/25/2012 12:43:18 AM,12/25/2012 12:43:44 AM,12/25/2012 12:44:24 AM,12/25/2012 12:48:18 AM,12/25/2012 01:01:01 AM,12/25/2012 01:09:35 AM,Code 2 Transport,12/25/2012 01:32:58 AM,3100 Block of 16TH ST,SF,94103,B02,6,5235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7649058943352, -122.42298817064)",123600007-AM18 -130430014,T01,13014499,Structure Fire,02/12/2013,02/11/2013,02/12/2013 01:53:22 AM,02/12/2013 01:54:41 AM,02/12/2013 01:54:59 AM,02/12/2013 01:57:01 AM,02/12/2013 01:58:55 AM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,02/12/2013 02:01:36 AM,700 Block of 4TH ST,SF,94107,B03,8,2224,3,3,3,false,Alarm,1,TRUCK,6,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",130430014-T01 -140440195,72,14014960,Medical Incident,02/13/2014,02/13/2014,02/13/2014 11:25:46 AM,02/13/2014 11:26:45 AM,02/13/2014 11:28:53 AM,02/13/2014 11:30:37 AM,02/13/2014 11:32:30 AM,02/13/2014 11:45:19 AM,02/13/2014 11:58:54 AM,Code 2 Transport,02/13/2014 12:23:10 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",140440195-72 -102360083,E25,10074242,Electrical Hazard,08/24/2010,08/23/2010,08/24/2010 07:50:18 AM,08/24/2010 07:50:18 AM,08/24/2010 07:50:44 AM,08/24/2010 07:53:14 AM,08/24/2010 07:55:51 AM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 08:09:59 AM,400 Block of 23RD ST,SF,94107,B10,25,2731,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7555201502879, -122.384993438991)",102360083-E25 -120340195,E06,12011274,Medical Incident,02/03/2012,02/03/2012,02/03/2012 12:51:43 PM,02/03/2012 12:52:34 PM,02/03/2012 12:54:44 PM,02/03/2012 12:56:44 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/03/2012 12:57:29 PM,1800 Block of MISSION ST,SF,94103,B02,36,5279,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7674778738529, -122.419834389169)",120340195-E06 -121530127,94,12050591,Medical Incident,06/01/2012,06/01/2012,06/01/2012 11:31:12 AM,06/01/2012 11:32:52 AM,06/01/2012 11:33:21 AM,06/01/2012 11:33:42 AM,06/01/2012 11:40:51 AM,06/01/2012 12:03:29 PM,06/01/2012 12:31:32 PM,Code 2 Transport,06/01/2012 12:52:41 PM,1000 Block of SUNNYDALE AVE,SF,94134,B09,44,6253,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7107870868247, -122.411792052492)",121530127-94 -120470055,E34,12015539,Outside Fire,02/16/2012,02/15/2012,02/16/2012 07:24:56 AM,02/16/2012 07:26:20 AM,02/16/2012 07:26:33 AM,02/16/2012 07:27:46 AM,02/16/2012 07:30:37 AM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Fire,02/16/2012 07:34:27 AM,LA PLAYA ST/CABRILLO ST,SF,94121,B07,34,7277,3,3,3,false,Fire,1,ENGINE,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",120470055-E34 -130060147,E08,13002042,Medical Incident,01/06/2013,01/06/2013,01/06/2013 12:35:44 PM,01/06/2013 12:36:26 PM,01/06/2013 12:36:53 PM,01/06/2013 12:37:51 PM,01/06/2013 12:41:03 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 12:46:11 PM,0 Block of MOSS ST,SF,94103,B03,1,2313,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7778360253922, -122.408013948834)",130060147-E08 -111290238,91,11042702,Medical Incident,05/09/2011,05/09/2011,05/09/2011 04:24:33 PM,05/09/2011 04:26:29 PM,05/09/2011 04:26:37 PM,05/09/2011 04:27:02 PM,05/09/2011 04:34:41 PM,05/09/2011 04:51:04 PM,05/09/2011 05:02:27 PM,Code 3 Transport,05/09/2011 05:48:03 PM,100 Block of LUNADO WAY,SF,94127,B09,19,8441,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7248250362492, -122.471176049374)",111290238-91 -103080076,E09,10098605,Alarms,11/04/2010,11/03/2010,11/04/2010 07:50:02 AM,11/04/2010 07:50:54 AM,11/04/2010 07:51:17 AM,11/04/2010 07:53:54 AM,11/04/2010 07:55:44 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 08:10:46 AM,100 Block of HOLLADAY AVE,SF,94110,B06,9,5671,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7469258373327, -122.405245459643)",103080076-E09 -160813420,61,16032340,Medical Incident,03/21/2016,03/21/2016,03/21/2016 07:55:06 PM,03/21/2016 07:55:31 PM,03/21/2016 07:55:46 PM,03/21/2016 07:56:04 PM,03/21/2016 08:02:49 PM,03/21/2016 08:14:45 PM,03/21/2016 08:28:34 PM,Code 2 Transport,03/21/2016 08:58:14 PM,0 Block of NORTHRIDGE RD,San Francisco,94124,B10,17,6633,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.730710372177, -122.375579669518)",160813420-61 -132350320,E16,13079420,Medical Incident,08/23/2013,08/23/2013,08/23/2013 07:27:46 PM,08/23/2013 07:29:38 PM,08/23/2013 07:51:34 PM,08/23/2013 07:52:55 PM,08/23/2013 07:54:51 PM,04/25/2016 01:51:09 PM,04/25/2016 01:51:09 PM,Other,08/23/2013 08:09:23 PM,1500 Block of FRANCISCO ST,SF,94123,B04,16,3351,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.8025340608773, -122.430687416035)",132350320-E16 -131670294,E39,13056794,Medical Incident,06/16/2013,06/16/2013,06/16/2013 06:40:56 PM,06/16/2013 06:41:50 PM,06/16/2013 06:42:47 PM,06/16/2013 06:43:57 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/16/2013 06:48:02 PM,2100 Block of 27TH AVE,SF,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7473313113651, -122.484657780818)",131670294-E39 -132770420,RC3,13094279,Medical Incident,10/04/2013,10/04/2013,10/04/2013 08:25:20 PM,10/04/2013 08:29:36 PM,10/04/2013 08:29:45 PM,10/04/2013 08:30:40 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 08:37:03 PM,KEITH ST/PALOU AV,SF,94124,B10,17,6551,E,E,3,true,Non Life-threatening,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7318574704956, -122.387166513569)",132770420-RC3 -160370566,88,16014551,Medical Incident,02/06/2016,02/05/2016,02/06/2016 03:16:48 AM,02/06/2016 03:16:48 AM,02/06/2016 03:17:23 AM,02/06/2016 03:17:36 AM,02/06/2016 03:24:35 AM,02/06/2016 04:03:18 AM,02/06/2016 04:12:13 AM,Code 2 Transport,02/06/2016 04:26:41 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",160370566-88 -160050038,AM16,16001812,Medical Incident,01/05/2016,01/04/2016,01/05/2016 12:18:16 AM,01/05/2016 12:21:20 AM,01/05/2016 12:22:26 AM,01/05/2016 12:23:12 AM,01/05/2016 12:28:17 AM,01/05/2016 12:35:57 AM,01/05/2016 12:40:58 AM,Code 2 Transport,01/05/2016 01:02:22 AM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,A,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160050038-AM16 -123510230,KM02,12117434,Medical Incident,12/16/2012,12/16/2012,12/16/2012 03:02:02 PM,12/16/2012 03:02:15 PM,12/16/2012 03:05:35 PM,12/16/2012 03:08:48 PM,12/16/2012 03:20:24 PM,12/16/2012 03:29:52 PM,12/16/2012 03:49:14 PM,Code 2 Transport,12/16/2012 04:07:47 PM,400 Block of ARGONAUT AVE,SF,94134,B09,44,6248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7093100167059, -122.414908310861)",123510230-KM02 -160310967,KM06,16012104,Medical Incident,01/31/2016,01/31/2016,01/31/2016 09:25:34 AM,01/31/2016 09:25:34 AM,01/31/2016 09:26:52 AM,01/31/2016 09:27:39 AM,01/31/2016 09:34:29 AM,01/31/2016 09:55:29 AM,01/31/2016 10:04:58 AM,Code 2 Transport,01/31/2016 10:46:17 AM,6TH ST/MISSION ST,San Francisco,94103,B03,1,2251,2,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160310967-KM06 -130720036,67,13023889,Medical Incident,03/13/2013,03/12/2013,03/13/2013 03:16:16 AM,03/13/2013 03:16:45 AM,03/13/2013 03:17:16 AM,03/13/2013 03:18:26 AM,03/13/2013 03:20:02 AM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 03:32:22 AM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",130720036-67 -132730295,T15,13092861,Structure Fire,09/30/2013,09/30/2013,09/30/2013 05:29:22 PM,09/30/2013 05:29:22 PM,09/30/2013 05:29:42 PM,09/30/2013 05:30:53 PM,09/30/2013 05:32:46 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 05:39:19 PM,300 Block of SENECA AVE,SF,94112,B09,15,833,3,3,3,false,Alarm,1,TRUCK,1,9,11,Outer Mission,"(37.7214113471419, -122.445147338302)",132730295-T15 -112450013,E41,11080630,Structure Fire,09/02/2011,09/01/2011,09/02/2011 01:20:29 AM,09/02/2011 01:20:29 AM,09/02/2011 01:20:34 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 01:23:34 AM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,,1,ENGINE,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",112450013-E41 -160123704,76,16004977,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:17:56 PM,01/12/2016 10:19:10 PM,01/12/2016 10:19:30 PM,01/12/2016 10:19:40 PM,01/12/2016 10:48:50 PM,01/12/2016 10:48:51 PM,01/12/2016 11:06:02 PM,Code 2 Transport,01/12/2016 11:29:55 PM,0 Block of SOUTH PARK,San Francisco,94107,B03,8,2153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7823359738287, -122.393092579681)",160123704-76 -110720340,72,11023856,Medical Incident,03/13/2011,03/13/2011,03/13/2011 10:27:50 PM,03/13/2011 10:28:31 PM,03/13/2011 10:28:47 PM,03/13/2011 10:31:05 PM,03/13/2011 10:33:06 PM,03/13/2011 10:52:15 PM,03/13/2011 11:08:47 PM,Code 2 Transport,03/13/2011 11:28:00 PM,700 Block of VICTORIA ST,SF,94127,B09,15,8443,3,1,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7241304877603, -122.464177585076)",110720340-72 -160333731,88,16013197,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:54:08 PM,02/02/2016 11:54:44 PM,02/02/2016 11:55:04 PM,02/02/2016 11:56:06 PM,02/02/2016 11:59:11 PM,02/03/2016 12:16:23 AM,02/03/2016 12:23:43 AM,Code 2 Transport,02/03/2016 01:00:05 AM,300 Block of WILLARD NORTH ST,San Francisco,94118,B07,21,4561,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7750277510342, -122.456309855191)",160333731-88 -140840195,72,14028319,Medical Incident,03/25/2014,03/25/2014,03/25/2014 01:56:14 PM,03/25/2014 01:57:26 PM,03/25/2014 02:02:05 PM,03/25/2014 02:02:12 PM,03/25/2014 02:11:34 PM,03/25/2014 02:36:40 PM,03/25/2014 02:50:57 PM,Code 2 Transport,03/25/2014 03:17:57 PM,200 Block of 13TH ST,SAN FRANCISCO,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",140840195-72 -120040106,85,12001334,Medical Incident,01/04/2012,01/04/2012,01/04/2012 09:50:44 AM,01/04/2012 09:53:09 AM,01/04/2012 09:53:50 AM,01/04/2012 09:59:06 AM,01/04/2012 10:03:27 AM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,Other,01/04/2012 11:10:23 AM,300 Block of 3RD ST,SF,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7833526602624, -122.398485675312)",120040106-85 -160580151,AM22,16022953,Medical Incident,02/27/2016,02/26/2016,02/27/2016 01:06:59 AM,02/27/2016 01:07:42 AM,02/27/2016 01:08:16 AM,02/27/2016 01:08:46 AM,02/27/2016 01:19:41 AM,02/27/2016 01:24:39 AM,02/27/2016 01:35:13 AM,Code 2 Transport,02/27/2016 02:08:34 AM,1000 Block of LARKIN,,94109,B04,3,1641,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7872715203341, -122.418249647967)",160580151-AM22 -140440086,E07,14014884,Alarms,02/13/2014,02/12/2014,02/13/2014 07:56:45 AM,02/13/2014 07:57:56 AM,02/13/2014 07:58:22 AM,02/13/2014 08:00:15 AM,02/13/2014 08:02:34 AM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Other,02/13/2014 08:24:32 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7628776667056, -122.419528998826)",140440086-E07 -132730304,E05,13092869,Medical Incident,09/30/2013,09/30/2013,09/30/2013 05:55:44 PM,09/30/2013 05:58:47 PM,09/30/2013 06:06:44 PM,09/30/2013 06:07:51 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 06:07:54 PM,1400 Block of GEARY BLVD,SF,94109,B04,3,3323,2,2,2,true,Non Life-threatening,1,ENGINE,2,4,5,Japantown,"(37.7853120673592, -122.42636663641)",132730304-E05 -112200037,82,11072583,Medical Incident,08/08/2011,08/07/2011,08/08/2011 05:53:33 AM,08/08/2011 05:55:53 AM,08/08/2011 05:56:21 AM,08/08/2011 05:56:50 AM,08/08/2011 05:58:32 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Against Medical Advice,08/08/2011 06:42:56 AM,1800 Block of CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,true,,1,MEDIC,1,4,2,Western Addition,"(37.7900019443199, -122.424784565831)",112200037-82 -133100044,E28,13105280,Structure Fire,11/06/2013,11/05/2013,11/06/2013 06:34:21 AM,11/06/2013 06:35:14 AM,11/06/2013 06:35:29 AM,11/06/2013 06:36:46 AM,11/06/2013 06:37:38 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/06/2013 06:53:54 AM,800 Block of FILBERT ST,SF,94133,B01,28,1436,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.8009158809974, -122.413492014536)",133100044-E28 -132770202,E13,13094094,Medical Incident,10/04/2013,10/04/2013,10/04/2013 12:51:58 PM,10/04/2013 12:52:59 PM,10/04/2013 12:53:30 PM,10/04/2013 12:54:05 PM,10/04/2013 12:54:38 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 01:04:11 PM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7933243681385, -122.4027937497)",132770202-E13 -112690066,99,11088825,Medical Incident,09/26/2011,09/26/2011,09/26/2011 08:03:15 AM,09/26/2011 08:04:47 AM,09/26/2011 08:05:34 AM,09/26/2011 08:06:02 AM,09/26/2011 08:22:11 AM,09/26/2011 09:26:43 AM,04/25/2016 02:02:28 PM,Code 2 Transport,09/26/2011 09:26:49 AM,2400 Block of SACRAMENTO ST,SF,94115,B04,38,3544,1,1,2,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",112690066-99 -112200085,55,11072620,Structure Fire,08/08/2011,08/08/2011,08/08/2011 09:14:22 AM,08/08/2011 09:14:50 AM,08/08/2011 09:15:00 AM,08/08/2011 09:15:40 AM,08/08/2011 09:26:29 AM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 09:37:16 AM,500 Block of 47TH AVE,SF,94121,B07,34,7276,3,3,3,true,,1,MEDIC,7,7,1,Outer Richmond,"(37.7780563534045, -122.508161525398)",112200085-55 -121550281,E08,12051402,Structure Fire,06/03/2012,06/03/2012,06/03/2012 06:16:18 PM,06/03/2012 06:16:19 PM,06/03/2012 06:16:36 PM,06/03/2012 06:17:01 PM,06/03/2012 06:19:00 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 06:19:10 PM,3RD ST/BRYANT ST,SF,94107,B03,8,2174,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7813212571676, -122.395843500166)",121550281-E08 -112980177,96,11098849,Medical Incident,10/25/2011,10/25/2011,10/25/2011 11:57:35 AM,10/25/2011 11:57:36 AM,10/25/2011 11:57:36 AM,10/25/2011 12:00:14 PM,10/25/2011 12:04:24 PM,10/25/2011 12:25:41 PM,10/25/2011 12:47:37 PM,Code 2 Transport,10/25/2011 01:11:02 PM,5800 Block of 3RD ST,SF,94124,B10,17,6537,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7247633708506, -122.394719523533)",112980177-96 -102740230,E36,10087044,Medical Incident,10/01/2010,10/01/2010,10/01/2010 03:21:26 PM,10/01/2010 03:22:42 PM,10/01/2010 03:25:03 PM,10/01/2010 03:38:31 PM,10/01/2010 03:26:26 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 03:58:47 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7777903094246, -122.412834332129)",102740230-E36 -160751634,AM12,16029699,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:25:52 PM,03/15/2016 12:27:06 PM,03/15/2016 12:27:28 PM,03/15/2016 12:28:35 PM,03/15/2016 12:30:50 PM,03/15/2016 01:05:13 PM,03/15/2016 01:27:52 PM,Code 2 Transport,03/15/2016 02:07:05 PM,1000 Block of MCALLISTER ST,San Francisco,94102,B02,5,3425,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7790002172836, -122.428427026884)",160751634-AM12 -102410057,E03,10075922,Structure Fire,08/29/2010,08/28/2010,08/29/2010 05:26:44 AM,08/29/2010 05:26:44 AM,08/29/2010 05:26:53 AM,08/29/2010 05:28:36 AM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,04/25/2016 02:08:51 PM,800 Block of LARKIN ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7853958548955, -122.418017194291)",102410057-E03 -113020111,54,11100140,Medical Incident,10/29/2011,10/29/2011,10/29/2011 08:21:45 AM,10/29/2011 08:22:31 AM,10/29/2011 08:22:45 AM,10/29/2011 08:23:20 AM,04/25/2016 02:01:55 PM,10/29/2011 08:37:59 AM,10/29/2011 08:46:31 AM,Code 2 Transport,10/29/2011 09:15:43 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",113020111-54 -160270571,53,16010561,Medical Incident,01/27/2016,01/26/2016,01/27/2016 07:27:37 AM,01/27/2016 07:29:32 AM,01/27/2016 07:30:05 AM,01/27/2016 07:30:15 AM,01/27/2016 07:34:09 AM,01/27/2016 07:56:29 AM,01/27/2016 08:06:30 AM,Code 2 Transport,01/27/2016 09:20:53 AM,300 Block of CLEMENT ST,San Francisco,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7829589368788, -122.462810653671)",160270571-53 -110110276,T13,11003755,Medical Incident,01/11/2011,01/11/2011,01/11/2011 06:38:41 PM,01/11/2011 06:39:03 PM,01/11/2011 06:40:20 PM,01/11/2011 06:51:04 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/11/2011 06:51:55 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,2,3,3,false,,1,TRUCK,6,1,3,North Beach,"(37.7982249345487, -122.404282497745)",110110276-T13 -130650012,KM07,13021621,Medical Incident,03/06/2013,03/05/2013,03/06/2013 01:14:24 AM,03/06/2013 01:15:53 AM,03/06/2013 01:16:12 AM,03/06/2013 01:19:41 AM,03/06/2013 01:20:33 AM,03/06/2013 01:27:33 AM,03/06/2013 01:48:30 AM,Code 2 Transport,03/06/2013 02:26:16 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",130650012-KM07 -132530197,E18,13085491,Medical Incident,09/10/2013,09/10/2013,09/10/2013 12:49:43 PM,09/10/2013 12:50:56 PM,09/10/2013 12:51:48 PM,09/10/2013 12:52:56 PM,09/10/2013 12:53:49 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 01:14:36 PM,2100 Block of 32ND AVE,SF,94116,B08,18,7532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.747100816678, -122.489874704565)",132530197-E18 -103350220,E17,10107212,Medical Incident,12/01/2010,12/01/2010,12/01/2010 02:55:24 PM,12/01/2010 02:55:24 PM,12/01/2010 02:55:32 PM,12/01/2010 02:56:38 PM,12/01/2010 02:59:04 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/01/2010 03:04:58 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",103350220-E17 -102930070,B08,10093360,Alarms,10/20/2010,10/20/2010,10/20/2010 08:11:22 AM,10/20/2010 08:12:38 AM,10/20/2010 08:14:23 AM,10/20/2010 08:15:19 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 08:18:04 AM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,3,3,3,false,,1,CHIEF,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",102930070-B08 -112830141,T02,11093639,Alarms,10/10/2011,10/10/2011,10/10/2011 11:33:09 AM,10/10/2011 11:34:31 AM,10/10/2011 11:34:35 AM,10/10/2011 11:36:22 AM,10/10/2011 11:38:27 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 11:45:00 AM,1200 Block of GRANT AVE,SF,94133,B01,2,1311,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.7983293338887, -122.407047477146)",112830141-T02 -120880041,74,12029072,Medical Incident,03/28/2012,03/27/2012,03/28/2012 03:37:54 AM,03/28/2012 03:38:14 AM,03/28/2012 03:38:37 AM,03/28/2012 03:38:49 AM,03/28/2012 03:50:03 AM,03/28/2012 03:54:31 AM,03/28/2012 04:06:01 AM,Code 2 Transport,03/28/2012 04:33:16 AM,200 Block of CAMERON WAY,SF,94124,B10,17,6613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.720440433346, -122.388366313776)",120880041-74 -130830177,KM09,13027759,Medical Incident,03/24/2013,03/24/2013,03/24/2013 02:15:13 PM,03/24/2013 02:16:36 PM,03/24/2013 02:17:14 PM,03/24/2013 02:19:42 PM,03/24/2013 02:20:33 PM,03/24/2013 02:32:46 PM,03/24/2013 02:42:55 PM,Code 2 Transport,03/24/2013 03:10:22 PM,2300 Block of NORIEGA ST,SF,94122,B08,18,7515,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7537523918863, -122.488797729304)",130830177-KM09 -111800139,B02,11059392,Alarms,06/29/2011,06/29/2011,06/29/2011 12:02:01 PM,06/29/2011 12:03:27 PM,06/29/2011 12:03:33 PM,06/29/2011 12:05:38 PM,06/29/2011 12:07:58 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Fire,06/29/2011 12:08:01 PM,100 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,false,,1,CHIEF,2,2,8,Castro/Upper Market,"(37.7681979747465, -122.429080297019)",111800139-B02 -120340055,AM02,12011157,Medical Incident,02/03/2012,02/02/2012,02/03/2012 06:50:06 AM,02/03/2012 06:51:18 AM,02/03/2012 06:51:38 AM,02/03/2012 06:52:16 AM,02/03/2012 06:54:35 AM,02/03/2012 07:01:41 AM,02/03/2012 07:11:14 AM,Code 2 Transport,02/03/2012 07:33:18 AM,400 Block of SHOTWELL ST,SF,94110,B02,7,5424,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.761229577891, -122.416072364125)",120340055-AM02 -112400157,92,11079181,Medical Incident,08/28/2011,08/28/2011,08/28/2011 10:58:45 AM,08/28/2011 10:59:01 AM,08/28/2011 11:00:28 AM,08/28/2011 11:00:40 AM,08/28/2011 11:11:46 AM,08/28/2011 11:23:54 AM,08/28/2011 11:44:11 AM,Code 2 Transport,08/28/2011 12:00:33 PM,0 Block of DOUBLE ROCK ST,SF,94124,B10,17,6613,3,1,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7204658651293, -122.387775002515)",112400157-92 -131810119,E03,13061560,Structure Fire,06/30/2013,06/29/2013,06/30/2013 07:54:09 AM,06/30/2013 07:54:09 AM,06/30/2013 07:54:18 AM,06/30/2013 07:55:47 AM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,Other,06/30/2013 07:58:00 AM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",131810119-E03 -140650120,B01,14021914,Structure Fire,03/06/2014,03/06/2014,03/06/2014 09:43:07 AM,03/06/2014 09:44:07 AM,03/06/2014 09:45:05 AM,03/06/2014 09:46:32 AM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Fire,03/06/2014 09:50:07 AM,1200 Block of LA PLAYA,SAN FRANCISCO,94122,B08,23,7722,3,3,3,false,Alarm,1,CHIEF,10,8,4,Sunset/Parkside,"(37.7630908951705, -122.509266553866)",140650120-B01 -112090305,AM08,11069109,Medical Incident,07/28/2011,07/28/2011,07/28/2011 06:58:48 PM,07/28/2011 06:58:52 PM,07/28/2011 06:59:50 PM,07/28/2011 07:01:03 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Unable to Locate,07/28/2011 07:12:36 PM,100 Block of 7TH ST,SF,94103,B03,8,2312,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7790372933741, -122.41062000696)",112090305-AM08 -131790453,E31,13061032,Medical Incident,06/28/2013,06/28/2013,06/28/2013 11:05:25 PM,06/28/2013 11:06:21 PM,06/28/2013 11:06:48 PM,06/28/2013 11:08:20 PM,06/28/2013 11:09:56 PM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/28/2013 11:20:58 PM,4700 Block of CALIFORNIA ST,SF,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7846996077954, -122.468305863552)",131790453-E31 -113030004,87,11100397,Medical Incident,10/30/2011,10/29/2011,10/30/2011 12:03:49 AM,10/30/2011 12:05:16 AM,10/30/2011 12:05:34 AM,10/30/2011 12:08:00 AM,10/30/2011 12:10:28 AM,10/30/2011 12:33:11 AM,10/30/2011 12:47:43 AM,Code 2 Transport,10/30/2011 01:05:09 AM,100 Block of KING ST,SF,94107,B03,8,2154,3,3,3,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7791128100415, -122.390835804631)",113030004-87 -160071251,KM02,16002788,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:41:58 AM,01/07/2016 10:43:54 AM,01/07/2016 10:46:25 AM,01/07/2016 10:48:51 AM,01/07/2016 10:51:49 AM,01/07/2016 10:59:52 AM,01/07/2016 11:15:32 AM,Code 2 Transport,01/07/2016 11:49:49 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",160071251-KM02 -160650755,61,16025852,Medical Incident,03/05/2016,03/04/2016,03/05/2016 07:38:08 AM,03/05/2016 07:38:34 AM,03/05/2016 07:38:52 AM,03/05/2016 07:39:49 AM,03/05/2016 07:49:06 AM,03/05/2016 08:07:44 AM,03/05/2016 08:27:33 AM,Code 2 Transport,03/05/2016 09:01:53 AM,HOWARD ST/2ND ST,San Francisco,94105,B03,1,2146,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7867789486792, -122.398256963317)",160650755-61 -130460378,RS1,13015768,Medical Incident,02/15/2013,02/15/2013,02/15/2013 06:59:20 PM,02/15/2013 07:01:31 PM,02/15/2013 07:01:56 PM,02/15/2013 07:02:22 PM,02/15/2013 07:04:47 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 07:08:01 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,E,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7826911213472, -122.409536662692)",130460378-RS1 -132140104,B09,13072203,Structure Fire,08/02/2013,08/02/2013,08/02/2013 09:53:33 AM,08/02/2013 09:53:34 AM,08/02/2013 09:53:50 AM,08/02/2013 09:54:12 AM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Fire,08/02/2013 09:58:53 AM,800 Block of PRAGUE ST,SF,94112,B09,43,622,3,3,3,false,Alarm,1,CHIEF,3,9,11,Excelsior,"(37.7104309664976, -122.434220514636)",132140104-B09 -132560004,89,13086388,Medical Incident,09/13/2013,09/12/2013,09/13/2013 12:29:38 AM,09/13/2013 12:30:01 AM,09/13/2013 12:31:25 AM,09/13/2013 12:31:49 AM,09/13/2013 12:37:46 AM,09/13/2013 12:57:59 AM,09/13/2013 01:18:21 AM,Code 2 Transport,09/13/2013 01:51:47 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",132560004-89 -140410368,E01,14014080,Medical Incident,02/10/2014,02/10/2014,02/10/2014 07:15:23 PM,02/10/2014 07:21:28 PM,02/10/2014 07:22:51 PM,02/10/2014 07:24:33 PM,02/10/2014 07:26:13 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 07:44:05 PM,200 Block of SHIPLEY ST,SF,94107,B03,1,2244,,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.779377841254, -122.403313163388)",140410368-E01 -103360296,E03,10107576,Medical Incident,12/02/2010,12/02/2010,12/02/2010 06:11:35 PM,12/02/2010 06:16:16 PM,12/02/2010 06:17:02 PM,04/25/2016 02:07:19 PM,12/02/2010 06:20:15 PM,04/25/2016 02:07:19 PM,04/25/2016 02:07:19 PM,Other,12/02/2010 06:32:16 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",103360296-E03 -131180248,E03,13039751,Medical Incident,04/28/2013,04/28/2013,04/28/2013 04:14:58 PM,04/28/2013 04:17:58 PM,04/28/2013 04:18:22 PM,04/28/2013 04:19:42 PM,04/28/2013 04:20:59 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/28/2013 04:23:55 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",131180248-E03 -112620276,AM12,11086529,Medical Incident,09/19/2011,09/19/2011,09/19/2011 03:29:25 PM,09/19/2011 03:29:30 PM,09/19/2011 03:31:56 PM,09/19/2011 03:32:47 PM,09/19/2011 03:41:55 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Patient Declined Transport,09/19/2011 04:12:57 PM,32ND AV/GEARY BL,SF,94121,B07,14,724,2,2,2,false,,1,PRIVATE,1,7,1,Outer Richmond,"(37.7797469488678, -122.492232287419)",112620276-AM12 -140670081,AM04,14022606,Medical Incident,03/08/2014,03/07/2014,03/08/2014 07:36:51 AM,03/08/2014 07:37:12 AM,03/08/2014 07:38:27 AM,03/08/2014 07:39:01 AM,03/08/2014 08:02:47 AM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Patient Declined Transport,03/08/2014 08:02:54 AM,0 Block of WASHBURN ST,SAN FRANCISCO,94103,B02,36,2336,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",140670081-AM04 -140180245,B02,14006231,Alarms,01/18/2014,01/18/2014,01/18/2014 03:15:52 PM,01/18/2014 03:16:53 PM,01/18/2014 03:17:21 PM,01/18/2014 03:18:47 PM,01/18/2014 03:20:40 PM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/18/2014 03:28:36 PM,200 Block of DOLORES ST,SF,94114,B02,6,5227,3,3,3,false,Alarm,1,CHIEF,1,2,8,Castro/Upper Market,"(37.766007030875, -122.426668982689)",140180245-B02 -160391577,KM11,16015600,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:15:18 PM,02/08/2016 12:16:01 PM,02/08/2016 12:17:27 PM,02/08/2016 12:18:04 PM,02/08/2016 12:30:09 PM,02/08/2016 12:40:38 PM,02/08/2016 12:59:06 PM,Code 2 Transport,02/08/2016 01:24:24 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160391577-KM11 -160343746,AM24,16013622,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:08:25 PM,02/03/2016 11:09:04 PM,02/03/2016 11:10:06 PM,02/03/2016 11:11:30 PM,02/03/2016 11:16:22 PM,02/03/2016 11:32:31 PM,02/03/2016 11:50:50 PM,Code 2 Transport,02/04/2016 12:27:00 AM,900 Block of DOUGLASS ST,San Francisco,94114,B06,24,5542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.749051492923, -122.438214092414)",160343746-AM24 -160081871,63,16003243,Medical Incident,01/08/2016,01/08/2016,01/08/2016 01:20:18 PM,01/08/2016 01:22:37 PM,01/08/2016 01:23:52 PM,01/08/2016 01:24:02 PM,01/08/2016 01:39:57 PM,01/08/2016 01:59:50 PM,01/08/2016 02:10:48 PM,Code 2 Transport,01/08/2016 02:49:22 PM,1100 Block of BATTERY ST,San Francisco,94111,B01,13,1153,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.8018375690837, -122.401773002011)",160081871-63 -133300355,AM22,13112213,Medical Incident,11/26/2013,11/26/2013,11/26/2013 11:23:15 PM,11/26/2013 11:25:27 PM,11/26/2013 11:27:18 PM,11/26/2013 11:28:12 PM,11/26/2013 11:46:41 PM,11/26/2013 11:55:09 PM,11/27/2013 12:08:17 AM,Code 2 Transport,11/27/2013 12:32:28 AM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Mission,"(37.7536444586415, -122.406325430802)",133300355-AM22 -160410193,AM18,16016278,Medical Incident,02/10/2016,02/09/2016,02/10/2016 01:45:54 AM,02/10/2016 01:49:22 AM,02/10/2016 01:49:56 AM,02/10/2016 01:50:44 AM,02/10/2016 01:54:55 AM,02/10/2016 02:04:39 AM,02/10/2016 02:33:10 AM,Code 2 Transport,02/10/2016 02:48:27 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160410193-AM18 -113510007,E39,11116326,Medical Incident,12/17/2011,12/16/2011,12/17/2011 12:19:33 AM,12/17/2011 12:19:33 AM,12/17/2011 12:20:05 AM,12/17/2011 12:22:13 AM,12/17/2011 12:27:31 AM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/17/2011 12:46:02 AM,500 Block of MONTEREY BLVD,SF,94127,B09,15,8235,3,2,2,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7316434245908, -122.448078912384)",113510007-E39 -103310041,E03,10105846,Medical Incident,11/27/2010,11/26/2010,11/27/2010 02:56:35 AM,11/27/2010 02:56:54 AM,11/27/2010 02:57:06 AM,11/27/2010 02:59:12 AM,11/27/2010 03:02:17 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 03:09:30 AM,OFARRELL ST/MASON ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7862026638911, -122.409683072135)",103310041-E03 -110840178,E13,11027663,Medical Incident,03/25/2011,03/25/2011,03/25/2011 11:31:49 AM,03/25/2011 11:32:24 AM,03/25/2011 11:32:53 AM,03/25/2011 11:38:47 AM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 11:39:56 AM,200 Block of KEARNY ST,SF,94108,B01,13,1242,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",110840178-E13 -133510320,58,13119299,Medical Incident,12/17/2013,12/17/2013,12/17/2013 05:05:26 PM,12/17/2013 05:07:48 PM,12/17/2013 05:34:30 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Patient Declined Transport,12/17/2013 05:35:45 PM,100 Block of HAHN ST,SF,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,9,10,Visitacion Valley,"(37.7127277704943, -122.415710728503)",133510320-58 -131590147,77,13053989,Medical Incident,06/08/2013,06/08/2013,06/08/2013 10:45:59 AM,06/08/2013 10:47:15 AM,06/08/2013 10:47:43 AM,06/08/2013 10:50:02 AM,06/08/2013 11:02:03 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,No Merit,06/08/2013 11:04:12 AM,LA PLAYA ST/FULTON ST,SF,94121,B07,34,7311,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7713960328361, -122.509894748816)",131590147-77 -110820083,E03,11026867,Medical Incident,03/23/2011,03/22/2011,03/23/2011 07:54:25 AM,03/23/2011 07:55:20 AM,03/23/2011 07:55:32 AM,03/23/2011 07:57:41 AM,03/23/2011 08:00:18 AM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,No Merit,03/23/2011 08:04:34 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7870986576237, -122.410705878297)",110820083-E03 -132920333,E05,13099505,Alarms,10/19/2013,10/19/2013,10/19/2013 08:06:13 PM,10/19/2013 08:08:27 PM,10/19/2013 08:09:22 PM,04/25/2016 01:50:11 PM,10/19/2013 08:11:43 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 08:28:08 PM,1400 Block of WEBSTER ST,SF,94115,B04,5,3514,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",132920333-E05 -112770237,E36,11091735,Medical Incident,10/04/2011,10/04/2011,10/04/2011 02:36:07 PM,10/04/2011 02:37:17 PM,10/04/2011 02:37:33 PM,10/04/2011 02:38:41 PM,10/04/2011 02:40:47 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 02:40:59 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",112770237-E36 -160083156,E20,16003366,Medical Incident,01/08/2016,01/08/2016,01/08/2016 06:45:30 PM,01/08/2016 06:46:58 PM,01/08/2016 06:47:31 PM,01/08/2016 06:48:33 PM,01/08/2016 06:51:44 PM,01/08/2016 07:27:14 PM,01/08/2016 07:33:30 PM,Code 3 Transport,01/08/2016 07:41:20 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160083156-E20 -160041387,KM11,16001568,Medical Incident,01/04/2016,01/04/2016,01/04/2016 11:27:41 AM,01/04/2016 11:29:42 AM,01/04/2016 11:30:17 AM,01/04/2016 11:31:01 AM,01/04/2016 11:37:34 AM,01/04/2016 11:58:56 AM,01/04/2016 12:08:54 PM,Code 2 Transport,01/04/2016 12:40:37 PM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160041387-KM11 -160342411,85,16013473,Medical Incident,02/03/2016,02/03/2016,02/03/2016 04:21:47 PM,02/03/2016 04:23:29 PM,02/03/2016 04:24:26 PM,02/03/2016 04:24:48 PM,02/03/2016 04:30:30 PM,02/03/2016 04:38:46 PM,02/03/2016 04:52:42 PM,Code 3 Transport,02/03/2016 05:34:25 PM,2200 Block of 46TH AVE,San Francisco,94116,B08,23,7664,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7445764654926, -122.504750126329)",160342411-85 -112260161,T06,11074655,Structure Fire,08/14/2011,08/14/2011,08/14/2011 01:12:12 PM,08/14/2011 01:12:13 PM,08/14/2011 01:12:32 PM,08/14/2011 01:13:46 PM,08/14/2011 01:14:17 PM,04/25/2016 02:03:10 PM,04/25/2016 02:03:10 PM,Other,08/14/2011 01:14:23 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,false,,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7668455691848, -122.429999589941)",112260161-T06 -160833056,KM01,16033062,Medical Incident,03/23/2016,03/23/2016,03/23/2016 05:27:24 PM,03/23/2016 05:27:53 PM,03/23/2016 05:28:24 PM,03/23/2016 05:29:02 PM,03/23/2016 05:37:19 PM,03/23/2016 05:55:07 PM,03/23/2016 06:47:35 PM,Code 2 Transport,03/23/2016 07:14:24 PM,1300 Block of EVANS AVE,San Francisco,94124,B10,25,6554,2,2,2,false,Non Life-threatening,1,PRIVATE,4,10,10,Bayview Hunters Point,"(37.7399349240236, -122.382724000085)",160833056-KM01 -103250230,77,10104220,Medical Incident,11/21/2010,11/21/2010,11/21/2010 03:46:06 PM,11/21/2010 03:46:44 PM,11/21/2010 03:47:24 PM,11/21/2010 03:52:15 PM,11/21/2010 03:53:28 PM,11/21/2010 04:11:12 PM,11/21/2010 04:24:12 PM,Code 2 Transport,11/21/2010 04:49:32 PM,STANYAN ST/PARAMOUNT TR,SF,94118,B07,21,4557,3,3,3,true,,1,MEDIC,2,5,1,Lone Mountain/USF,"(37.7763223581115, -122.45497837506)",103250230-77 -121720381,E19,12057290,Alarms,06/20/2012,06/20/2012,06/20/2012 11:34:06 PM,06/20/2012 11:35:31 PM,06/20/2012 11:35:39 PM,06/20/2012 11:38:08 PM,06/20/2012 11:40:09 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 11:46:10 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",121720381-E19 -160663069,KM07,16026526,Medical Incident,03/06/2016,03/06/2016,03/06/2016 09:25:40 PM,03/06/2016 09:26:42 PM,03/06/2016 09:27:13 PM,03/06/2016 09:27:39 PM,03/06/2016 09:32:26 PM,03/06/2016 09:49:17 PM,03/06/2016 09:55:53 PM,Code 2 Transport,03/06/2016 10:38:32 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",160663069-KM07 -121430205,B07,12047554,Alarms,05/22/2012,05/22/2012,05/22/2012 01:37:50 PM,05/22/2012 01:39:42 PM,05/22/2012 01:42:20 PM,05/22/2012 01:43:29 PM,05/22/2012 01:47:07 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Fire,05/22/2012 02:01:08 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,CHIEF,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",121430205-B07 -113480285,64,11115542,Medical Incident,12/14/2011,12/14/2011,12/14/2011 04:54:47 PM,12/14/2011 04:56:26 PM,12/14/2011 04:57:36 PM,12/14/2011 05:17:38 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 05:18:24 PM,2300 Block of FRANCISCO ST,SF,94123,B04,16,4222,1,1,2,true,,1,MEDIC,4,4,2,Marina,"(37.8007477402134, -122.443858484161)",113480285-64 -102310055,96,10072605,Medical Incident,08/19/2010,08/18/2010,08/19/2010 07:42:48 AM,08/19/2010 07:43:35 AM,08/19/2010 07:45:52 AM,08/19/2010 07:46:21 AM,08/19/2010 07:51:43 AM,08/19/2010 08:08:10 AM,08/19/2010 08:45:30 AM,Code 2 Transport,08/19/2010 08:58:30 AM,2500 Block of MASON ST,SF,94133,B01,28,1425,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.807027306345, -122.413812485246)",102310055-96 -121040121,B03,12034406,Alarms,04/13/2012,04/13/2012,04/13/2012 10:50:58 AM,04/13/2012 10:52:32 AM,04/13/2012 10:52:40 AM,04/13/2012 10:56:43 AM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/13/2012 10:57:01 AM,0 Block of SPEAR ST,SF,94105,B03,13,2115,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",121040121-B03 -160720981,52,16028525,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:28:15 AM,03/12/2016 09:29:19 AM,03/12/2016 09:29:41 AM,03/12/2016 09:29:53 AM,03/12/2016 09:31:38 AM,03/12/2016 09:52:03 AM,03/12/2016 10:05:38 AM,Code 2 Transport,03/12/2016 10:39:41 AM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7658582826035, -122.419816092644)",160720981-52 -133610244,KM09,13122727,Medical Incident,12/27/2013,12/27/2013,12/27/2013 05:20:28 PM,12/27/2013 05:20:43 PM,12/27/2013 05:21:45 PM,04/25/2016 01:49:02 PM,12/27/2013 05:28:07 PM,12/27/2013 05:33:57 PM,12/27/2013 05:54:44 PM,Code 2 Transport,12/27/2013 06:02:01 PM,5200 Block of GEARY BLVD,SF,94118,B07,31,7161,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7806317611627, -122.475635484021)",133610244-KM09 -130120357,B04,13004247,Structure Fire,01/12/2013,01/12/2013,01/12/2013 10:41:02 PM,01/12/2013 10:41:58 PM,01/12/2013 10:42:16 PM,01/12/2013 10:43:05 PM,01/12/2013 10:45:29 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/13/2013 12:11:52 AM,2400 Block of OCTAVIA ST,SF,94109,B04,38,3332,3,3,3,false,Fire,1,CHIEF,4,4,2,Pacific Heights,"(37.7946551961653, -122.428183423328)",130120357-B04 -103120083,E34,10099975,Medical Incident,11/08/2010,11/08/2010,11/08/2010 08:21:20 AM,11/08/2010 08:21:36 AM,11/08/2010 08:23:36 AM,11/08/2010 08:25:23 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/08/2010 08:26:03 AM,GREAT HY/BALBOA ST,SF,94121,B07,34,7312,2,2,2,true,,1,ENGINE,3,7,1,Outer Richmond,"(37.7750759610096, -122.511294923938)",103120083-E34 -160060052,72,16002216,Medical Incident,01/06/2016,01/05/2016,01/06/2016 12:26:42 AM,01/06/2016 12:28:34 AM,01/06/2016 12:28:53 AM,01/06/2016 12:29:26 AM,01/06/2016 12:37:45 AM,01/06/2016 01:02:57 AM,01/06/2016 01:12:08 AM,Code 2 Transport,01/06/2016 02:00:10 AM,800 Block of BRODERICK ST,San Francisco,94115,B05,21,4242,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",160060052-72 -160080919,75,16003142,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:55:58 AM,01/08/2016 08:56:42 AM,01/08/2016 08:58:13 AM,01/08/2016 08:58:20 AM,01/08/2016 09:11:56 AM,01/08/2016 09:26:02 AM,01/08/2016 09:44:17 AM,Code 2 Transport,01/08/2016 10:05:19 AM,100 Block of VALE AVE,San Francisco,94132,B08,19,7464,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7348479600179, -122.48403223577)",160080919-75 -160453261,AM24,16018301,Medical Incident,02/14/2016,02/14/2016,02/14/2016 09:25:00 PM,02/14/2016 09:26:41 PM,02/14/2016 09:27:39 PM,02/14/2016 09:28:21 PM,02/14/2016 09:41:31 PM,02/14/2016 10:01:05 PM,02/14/2016 10:21:14 PM,Code 2 Transport,02/14/2016 09:51:21 PM,100 Block of BEVERLY ST,San Francisco,94127,B09,19,8447,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7187576857238, -122.471711289196)",160453261-AM24 -130820160,E21,13027427,Fuel Spill,03/23/2013,03/23/2013,03/23/2013 12:36:52 PM,03/23/2013 12:37:21 PM,03/23/2013 12:37:40 PM,03/23/2013 12:38:45 PM,03/23/2013 12:41:06 PM,04/25/2016 01:53:41 PM,04/25/2016 01:53:41 PM,Fire,03/23/2013 12:52:09 PM,500 Block of DIVISADERO ST,SF,94117,B05,21,4145,3,3,3,false,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7745415617003, -122.437589912285)",130820160-E21 -140560295,KM02,14018982,Medical Incident,02/25/2014,02/25/2014,02/25/2014 06:10:59 PM,02/25/2014 06:16:30 PM,02/25/2014 06:16:49 PM,02/25/2014 06:17:25 PM,02/25/2014 06:21:50 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Unable to Locate,02/25/2014 06:27:44 PM,1100 Block of HAIGHT ST,SF,94117,B05,21,4353,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7707967646224, -122.44118874316)",140560295-KM02 -111690144,E36,11055674,Medical Incident,06/18/2011,06/18/2011,06/18/2011 10:40:57 AM,06/18/2011 10:42:07 AM,06/18/2011 10:42:24 AM,06/18/2011 10:42:51 AM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,04/25/2016 02:04:06 PM,Other,04/25/2016 02:04:06 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,3,3,6,South of Market,"(37.7819536537257, -122.410041631816)",111690144-E36 -123250005,93,12107930,Medical Incident,11/20/2012,11/19/2012,11/20/2012 12:18:29 AM,11/20/2012 12:19:52 AM,11/20/2012 12:20:14 AM,11/20/2012 12:20:51 AM,11/20/2012 12:28:51 AM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/20/2012 02:13:26 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",123250005-93 -160690471,KM03,16027344,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:21:57 AM,03/09/2016 06:22:44 AM,03/09/2016 06:23:32 AM,03/09/2016 06:24:55 AM,03/09/2016 06:38:10 AM,03/09/2016 06:51:48 AM,03/09/2016 07:04:55 AM,Code 3 Transport,03/09/2016 07:20:51 AM,300 Block of FAXON AVE,San Francisco,94112,B09,15,8463,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7209280246624, -122.460152149561)",160690471-KM03 -110930087,E33,11030797,Structure Fire,04/03/2011,04/02/2011,04/03/2011 07:26:30 AM,04/03/2011 07:27:25 AM,04/03/2011 07:27:49 AM,04/03/2011 07:29:09 AM,04/03/2011 07:30:15 AM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 08:31:33 AM,5300 Block of MISSION ST,SF,94112,B09,43,6176,3,3,3,true,,1,ENGINE,2,9,11,Outer Mission,"(37.7142832798437, -122.443056240053)",110930087-E33 -130680008,B01,13022523,Alarms,03/09/2013,03/08/2013,03/09/2013 12:09:29 AM,03/09/2013 12:11:34 AM,03/09/2013 12:12:40 AM,03/09/2013 12:14:27 AM,03/09/2013 12:15:38 AM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,Other,03/09/2013 12:25:16 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7969072647197, -122.407234390471)",130680008-B01 -111420406,66,11047382,Medical Incident,05/22/2011,05/22/2011,05/22/2011 11:55:58 PM,05/22/2011 11:57:14 PM,05/22/2011 11:57:35 PM,05/22/2011 11:57:44 PM,05/23/2011 12:03:59 AM,05/23/2011 12:26:35 AM,05/23/2011 12:34:19 AM,Code 2 Transport,05/23/2011 01:03:59 AM,0 Block of SYCAMORE ST,SF,94110,B02,7,5423,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7627003582299, -122.420562762663)",111420406-66 -132350073,81,13079227,Medical Incident,08/23/2013,08/22/2013,08/23/2013 07:47:34 AM,08/23/2013 07:47:34 AM,08/23/2013 07:47:34 AM,08/23/2013 07:47:52 AM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,08/23/2013 08:11:06 AM,Code 3 Transport,08/23/2013 08:44:56 AM,0 Block of CASTRO ST,SF,94114,B05,6,513,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",132350073-81 -160412058,AM12,16016484,Medical Incident,02/10/2016,02/10/2016,02/10/2016 02:04:13 PM,02/10/2016 02:05:39 PM,02/10/2016 02:05:52 PM,02/10/2016 02:06:42 PM,02/10/2016 02:14:51 PM,02/10/2016 02:27:20 PM,02/10/2016 02:38:46 PM,Code 2 Transport,02/10/2016 02:59:40 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160412058-AM12 -102610079,E03,10082416,Alarms,09/18/2010,09/17/2010,09/18/2010 04:58:09 AM,09/18/2010 05:00:13 AM,09/18/2010 05:00:19 AM,09/18/2010 05:01:49 AM,09/18/2010 05:04:25 AM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,Other,09/18/2010 05:10:08 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",102610079-E03 -160260879,61,16010226,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:35:46 AM,01/26/2016 08:38:02 AM,01/26/2016 08:38:18 AM,01/26/2016 08:38:27 AM,01/26/2016 08:46:58 AM,01/26/2016 09:32:26 AM,01/26/2016 09:47:58 AM,Code 2 Transport,01/26/2016 10:35:16 AM,GREAT HY/LINCOLN WY,San Francisco,94122,B08,23,7722,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",160260879-61 -160110815,KM09,16004308,Medical Incident,01/11/2016,01/11/2016,01/11/2016 08:43:24 AM,01/11/2016 08:43:42 AM,01/11/2016 08:44:16 AM,01/11/2016 08:44:57 AM,01/11/2016 08:51:32 AM,01/11/2016 09:16:10 AM,01/11/2016 09:26:23 AM,Code 2 Transport,01/11/2016 10:08:27 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160110815-KM09 -160693499,68,16027641,Medical Incident,03/09/2016,03/09/2016,03/09/2016 08:39:43 PM,03/09/2016 08:43:04 PM,03/09/2016 08:43:51 PM,03/09/2016 08:44:20 PM,03/09/2016 08:49:36 PM,03/09/2016 09:15:57 PM,03/09/2016 09:46:43 PM,Code 2 Transport,03/09/2016 10:07:46 PM,300 Block of 20TH ST,San Francisco,94107,B10,25,970,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.7606927106062, -122.386101233024)",160693499-68 -131280234,E13,13043306,Medical Incident,05/08/2013,05/08/2013,05/08/2013 03:08:12 PM,05/08/2013 03:10:08 PM,05/08/2013 03:10:50 PM,05/08/2013 03:12:14 PM,05/08/2013 03:14:17 PM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 03:22:45 PM,300 Block of CALIFORNIA ST,SF,94104,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",131280234-E13 -131040217,94,13034948,Medical Incident,04/14/2013,04/14/2013,04/14/2013 01:33:51 PM,04/14/2013 01:35:25 PM,04/14/2013 01:35:31 PM,04/14/2013 01:35:41 PM,04/14/2013 01:45:07 PM,04/14/2013 01:59:23 PM,04/14/2013 02:14:49 PM,Code 2 Transport,04/14/2013 02:44:42 PM,1000 Block of FLORIDA ST,SF,94110,B06,7,5476,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7551370276889, -122.410365620906)",131040217-94 -103290129,KM04,10105333,Medical Incident,11/25/2010,11/25/2010,11/25/2010 12:14:25 PM,11/25/2010 12:15:07 PM,11/25/2010 12:15:24 PM,11/25/2010 12:16:20 PM,11/25/2010 12:37:07 PM,11/25/2010 12:37:11 PM,11/25/2010 12:49:15 PM,Code 2 Transport,11/25/2010 01:16:33 PM,1900 Block of 31ST AVE,SF,94116,B08,18,7533,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.750871857963, -122.48919906293)",103290129-KM04 -121340128,KM12,12044559,Medical Incident,05/13/2012,05/13/2012,05/13/2012 11:24:27 AM,05/13/2012 11:26:03 AM,05/13/2012 11:26:58 AM,05/13/2012 11:27:53 AM,05/13/2012 11:33:35 AM,05/13/2012 11:51:05 AM,05/13/2012 11:57:36 AM,Code 2 Transport,05/13/2012 12:15:50 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",121340128-KM12 -102600328,E33,10082290,Medical Incident,09/17/2010,09/17/2010,09/17/2010 07:37:34 PM,09/17/2010 07:39:33 PM,09/17/2010 07:39:51 PM,09/17/2010 07:40:43 PM,09/17/2010 07:44:19 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 07:58:30 PM,5100 Block of MISSION ST,SF,94112,B09,43,6176,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7154728757373, -122.441686062166)",102600328-E33 -160122228,89,16004816,Medical Incident,01/12/2016,01/12/2016,01/12/2016 03:07:42 PM,01/12/2016 03:08:42 PM,01/12/2016 03:09:13 PM,01/12/2016 03:09:23 PM,01/12/2016 03:13:45 PM,01/12/2016 03:28:27 PM,01/12/2016 03:39:32 PM,Code 2 Transport,01/12/2016 04:26:49 PM,700 Block of 18TH AVE,San Francisco,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7738489986418, -122.476692795054)",160122228-89 -102610322,E19,10082618,Smoke Investigation (Outside),09/18/2010,09/18/2010,09/18/2010 05:22:46 PM,09/18/2010 05:25:46 PM,09/18/2010 05:25:54 PM,09/18/2010 05:27:22 PM,09/18/2010 05:32:46 PM,04/25/2016 02:08:32 PM,04/25/2016 02:08:32 PM,No Merit,09/18/2010 05:45:19 PM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",102610322-E19 -132560079,E36,13086456,Alarms,09/13/2013,09/12/2013,09/13/2013 07:46:38 AM,09/13/2013 07:47:39 AM,09/13/2013 07:48:05 AM,09/13/2013 07:51:44 AM,09/13/2013 07:54:14 AM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/13/2013 08:00:03 AM,200 Block of VAN NESS AVE,SF,94102,B02,36,3166,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7775400880886, -122.419594770553)",132560079-E36 -123530055,66,12118003,Medical Incident,12/18/2012,12/17/2012,12/18/2012 05:56:36 AM,12/18/2012 05:56:46 AM,12/18/2012 05:57:16 AM,12/18/2012 05:57:49 AM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/18/2012 06:05:50 AM,FULTON ST/7TH AV,SF,94122,B07,31,7122,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7734887431391, -122.464811669746)",123530055-66 -140570099,94,14019155,Citizen Assist / Service Call,02/26/2014,02/26/2014,02/26/2014 08:35:37 AM,02/26/2014 08:37:06 AM,02/26/2014 08:42:52 AM,02/26/2014 08:43:04 AM,02/26/2014 08:45:10 AM,02/26/2014 08:59:51 AM,02/26/2014 09:38:27 AM,Code 2 Transport,02/26/2014 10:05:41 AM,1700 Block of LA SALLE AVE,SF,94124,B10,25,6467,3,3,3,true,Alarm,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7380275003224, -122.391497205515)",140570099-94 -160260219,79,16010170,Medical Incident,01/26/2016,01/25/2016,01/26/2016 01:53:37 AM,01/26/2016 01:54:33 AM,01/26/2016 01:54:47 AM,01/26/2016 01:55:05 AM,01/26/2016 02:05:01 AM,01/26/2016 02:21:52 AM,01/26/2016 02:42:07 AM,Code 2 Transport,01/26/2016 03:21:55 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160260219-79 -111180269,AM14,11038999,Medical Incident,04/28/2011,04/28/2011,04/28/2011 05:32:49 PM,04/28/2011 05:32:49 PM,04/28/2011 05:33:25 PM,04/28/2011 05:34:01 PM,04/28/2011 05:37:47 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 05:41:29 PM,400 Block of JEFFERSON ST,SF,94109,B01,28,1524,3,3,3,false,,1,PRIVATE,2,1,2,Russian Hill,"(37.8076423943453, -122.419903598279)",111180269-AM14 -112520445,B10,11083307,Alarms,09/09/2011,09/09/2011,09/09/2011 11:35:56 PM,09/09/2011 11:36:50 PM,09/09/2011 11:36:59 PM,09/09/2011 11:38:56 PM,09/09/2011 11:43:15 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Other,09/09/2011 11:50:36 PM,2600 Block of 3RD ST,SF,94107,B10,25,2574,3,3,3,false,,1,CHIEF,3,10,10,Potrero Hill,"(37.7566551377293, -122.388267584017)",112520445-B10 -160571004,79,16022682,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:31:26 AM,02/26/2016 09:32:08 AM,02/26/2016 09:32:37 AM,02/26/2016 09:32:47 AM,02/26/2016 09:37:04 AM,02/26/2016 09:52:50 AM,02/26/2016 09:55:42 AM,Code 3 Transport,02/26/2016 10:31:49 AM,500 Block of BRODERICK ST,San Francisco,94117,B05,21,4244,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.7752371573517, -122.439629672801)",160571004-79 -103020256,E16,10096549,Structure Fire,10/29/2010,10/29/2010,10/29/2010 06:11:49 PM,10/29/2010 06:13:44 PM,10/29/2010 06:14:04 PM,04/25/2016 02:07:52 PM,10/29/2010 06:17:27 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/29/2010 06:35:48 PM,1800 Block of BROADWAY,SF,94123,B04,38,3251,3,3,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.795265168848, -122.427533073347)",103020256-E16 -131990005,T06,13067311,Other,07/18/2013,07/17/2013,07/18/2013 12:18:34 AM,07/18/2013 12:18:38 AM,07/18/2013 12:19:17 AM,07/18/2013 12:21:07 AM,07/18/2013 12:22:46 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 12:43:45 AM,700 Block of HAIGHT ST,SF,94117,B05,21,4142,3,3,3,false,Alarm,1,TRUCK,1,5,5,Haight Ashbury,"(37.7716381141296, -122.434564848231)",131990005-T06 -160293269,86,16011562,Medical Incident,01/29/2016,01/29/2016,01/29/2016 08:22:03 PM,01/29/2016 08:23:09 PM,01/29/2016 08:23:33 PM,01/29/2016 08:23:44 PM,01/29/2016 08:23:46 PM,01/29/2016 08:46:41 PM,01/29/2016 08:54:28 PM,Code 2 Transport,01/29/2016 09:26:35 PM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160293269-86 -123570159,T14,12119484,Structure Fire,12/22/2012,12/22/2012,12/22/2012 11:11:20 AM,12/22/2012 11:12:01 AM,12/22/2012 11:12:21 AM,12/22/2012 11:13:34 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 11:21:59 AM,2100 Block of BALBOA ST,SF,94121,B07,14,7171,3,3,3,false,Alarm,1,TRUCK,6,7,1,Outer Richmond,"(37.7764791578621, -122.481786615604)",123570159-T14 -132150307,86,13072717,Medical Incident,08/03/2013,08/03/2013,08/03/2013 06:02:03 PM,08/03/2013 06:02:40 PM,08/03/2013 06:05:23 PM,08/03/2013 06:05:47 PM,08/03/2013 06:11:46 PM,08/03/2013 06:27:45 PM,08/03/2013 06:39:26 PM,Code 2 Transport,08/03/2013 07:40:06 PM,POLK ST/VALLEJO ST,SF,94109,B04,41,3126,3,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7968997476834, -122.42196091068)",132150307-86 -140800189,82,14027041,Medical Incident,03/21/2014,03/21/2014,03/21/2014 01:19:54 PM,03/21/2014 01:21:44 PM,03/21/2014 01:26:52 PM,03/21/2014 01:27:03 PM,03/21/2014 01:28:52 PM,03/21/2014 01:44:56 PM,03/21/2014 02:00:26 PM,Code 2 Transport,03/21/2014 02:20:03 PM,300 Block of FULTON ST,SAN FRANCISCO,94102,B02,36,3264,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140800189-82 -113560009,E03,11118056,Other,12/22/2011,12/21/2011,12/22/2011 12:26:28 AM,12/22/2011 12:27:06 AM,12/22/2011 12:27:22 AM,12/22/2011 12:28:56 AM,12/22/2011 12:37:23 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Fire,12/22/2011 12:37:34 AM,GEARY ST/JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7867297440174, -122.413161444464)",113560009-E03 -102260120,E34,10071096,Citizen Assist / Service Call,08/14/2010,08/14/2010,08/14/2010 10:24:16 AM,08/14/2010 10:26:22 AM,08/14/2010 10:26:49 AM,08/14/2010 10:28:29 AM,08/14/2010 10:32:16 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 10:41:23 AM,400 Block of 34TH AVE,SF,94121,B07,34,7247,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7806103839199, -122.494519297377)",102260120-E34 -110930249,E01,11030932,Structure Fire,04/03/2011,04/03/2011,04/03/2011 04:07:06 PM,04/03/2011 04:07:07 PM,04/03/2011 04:07:20 PM,04/03/2011 04:07:43 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,04/25/2016 02:05:17 PM,Other,04/03/2011 04:09:32 PM,4TH ST/MISSION ST,SF,94103,B03,1,2213,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",110930249-E01 -160011830,85,16000317,Medical Incident,01/01/2016,01/01/2016,01/01/2016 12:02:23 PM,01/01/2016 12:02:23 PM,01/01/2016 12:04:08 PM,01/01/2016 12:04:16 PM,01/01/2016 12:18:41 PM,01/01/2016 12:38:51 PM,01/01/2016 12:57:57 PM,Code 2 Transport,01/01/2016 01:37:15 PM,100 Block of POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",160011830-85 -140320308,E38,14010953,Medical Incident,02/01/2014,02/01/2014,02/01/2014 06:28:52 PM,02/01/2014 06:30:13 PM,02/01/2014 06:30:26 PM,02/01/2014 06:30:40 PM,02/01/2014 06:33:23 PM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/01/2014 06:44:27 PM,2500 Block of SACRAMENTO ST,SF,94115,B04,38,3544,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7896788715046, -122.434839317117)",140320308-E38 -113370011,B04,11111508,Alarms,12/03/2011,12/02/2011,12/03/2011 12:29:51 AM,12/03/2011 12:31:14 AM,12/03/2011 12:31:27 AM,12/03/2011 12:33:50 AM,12/03/2011 12:35:04 AM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/03/2011 12:40:22 AM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,3,3,3,false,,1,CHIEF,3,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",113370011-B04 -110370110,88,11012143,Medical Incident,02/06/2011,02/06/2011,02/06/2011 08:22:26 AM,02/06/2011 08:24:06 AM,02/06/2011 08:24:16 AM,02/06/2011 08:43:53 AM,04/25/2016 02:06:14 PM,04/25/2016 02:06:14 PM,04/25/2016 02:06:14 PM,Other,04/25/2016 02:06:14 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,,1,MEDIC,3,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",110370110-88 -132990031,RC3,13101457,Medical Incident,10/26/2013,10/25/2013,10/26/2013 01:18:37 AM,10/26/2013 01:19:47 AM,10/26/2013 01:21:22 AM,10/26/2013 01:22:25 AM,10/26/2013 01:34:13 AM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/26/2013 01:51:51 AM,200 Block of SADOWA ST,SF,94112,B09,33,8374,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,9,11,Oceanview/Merced/Ingleside,"(37.7123395683606, -122.460798752041)",132990031-RC3 -132700016,T08,13091557,Vehicle Fire,09/27/2013,09/26/2013,09/27/2013 01:13:29 AM,09/27/2013 01:14:07 AM,09/27/2013 01:16:06 AM,09/27/2013 01:18:14 AM,09/27/2013 01:26:50 AM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/27/2013 01:39:26 AM,300 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,false,Fire,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7862311729086, -122.393239745016)",132700016-T08 -122400017,E03,12079303,Medical Incident,08/27/2012,08/26/2012,08/27/2012 02:08:54 AM,08/27/2012 02:09:22 AM,08/27/2012 02:10:14 AM,08/27/2012 02:11:41 AM,08/27/2012 02:14:00 AM,04/25/2016 01:57:03 PM,04/25/2016 01:57:03 PM,Other,08/27/2012 02:21:13 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",122400017-E03 -140670063,T10,14022589,Structure Fire,03/08/2014,03/07/2014,03/08/2014 06:23:42 AM,03/08/2014 06:25:12 AM,03/08/2014 06:25:45 AM,03/08/2014 06:27:45 AM,03/08/2014 06:29:39 AM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Fire,03/08/2014 06:31:47 AM,2100 Block of OFARRELL ST,SAN FRANCISCO,94115,B05,10,4236,3,3,3,false,Alarm,1,TRUCK,5,5,5,Western Addition,"(37.7822906196571, -122.44011945632)",140670063-T10 -113250380,AM18,11108102,Medical Incident,11/21/2011,11/21/2011,11/21/2011 11:19:07 PM,11/21/2011 11:19:26 PM,11/21/2011 11:20:29 PM,11/21/2011 11:20:56 PM,11/21/2011 11:26:26 PM,11/21/2011 11:32:51 PM,11/21/2011 11:38:10 PM,Code 2 Transport,11/22/2011 12:06:24 AM,0 Block of DORE ST,SF,94103,B02,36,2342,2,2,2,false,,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",113250380-AM18 -140020337,E21,14000802,Gas Leak (Natural and LP Gases),01/02/2014,01/02/2014,01/02/2014 06:23:48 PM,01/02/2014 06:23:48 PM,01/02/2014 06:24:26 PM,01/02/2014 06:25:45 PM,01/02/2014 06:26:43 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/02/2014 06:38:31 PM,1000 Block of PAGE ST,SF,94117,B05,21,4144,,3,3,false,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.7720428462416, -122.438055986147)",140020337-E21 -103290030,73,10105243,Medical Incident,11/25/2010,11/24/2010,11/25/2010 03:03:46 AM,11/25/2010 03:04:57 AM,11/25/2010 03:06:12 AM,11/25/2010 03:06:39 AM,11/25/2010 03:12:07 AM,11/25/2010 03:17:19 AM,11/25/2010 03:25:19 AM,Code 2 Transport,11/25/2010 03:51:41 AM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",103290030-73 -122320229,E26,12076984,Traffic Collision,08/19/2012,08/19/2012,08/19/2012 02:55:30 PM,08/19/2012 02:56:49 PM,08/19/2012 02:57:17 PM,08/19/2012 02:58:57 PM,08/19/2012 03:02:09 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 03:32:12 PM,0 Block of AMBER DR,SF,94131,B06,26,8166,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Noe Valley,"(37.7462761269097, -122.444743384409)",122320229-E26 -121620055,E01,12053518,Alarms,06/10/2012,06/09/2012,06/10/2012 02:30:52 AM,06/10/2012 02:30:54 AM,06/10/2012 02:31:58 AM,04/25/2016 01:58:17 PM,06/10/2012 02:32:56 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 02:33:22 AM,0 Block of GRANT AVE,SF,94108,B01,1,1321,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7871853698326, -122.404995219077)",121620055-E01 -123170144,AM02,12105471,Medical Incident,11/12/2012,11/12/2012,11/12/2012 12:25:48 PM,11/12/2012 12:27:02 PM,11/12/2012 12:27:21 PM,11/12/2012 12:28:13 PM,11/12/2012 12:30:08 PM,11/12/2012 12:33:35 PM,11/12/2012 01:26:25 PM,Code 2 Transport,11/12/2012 01:51:38 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",123170144-AM02 -160700539,52,16027738,Medical Incident,03/10/2016,03/09/2016,03/10/2016 07:13:04 AM,03/10/2016 07:14:17 AM,03/10/2016 07:15:44 AM,03/10/2016 07:15:53 AM,03/10/2016 07:34:00 AM,03/10/2016 07:39:02 AM,03/10/2016 07:53:22 AM,Code 2 Transport,03/10/2016 08:17:17 AM,HAYES ST/LARKIN ST,San Francisco,94102,B02,36,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7777227510073, -122.416401071795)",160700539-52 -132700013,T13,13091555,Alarms,09/27/2013,09/26/2013,09/27/2013 01:06:32 AM,09/27/2013 01:08:47 AM,09/27/2013 01:08:53 AM,09/27/2013 01:11:18 AM,09/27/2013 01:14:40 AM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/27/2013 01:26:57 AM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",132700013-T13 -132070020,E13,13069938,Alarms,07/26/2013,07/25/2013,07/26/2013 02:05:11 AM,07/26/2013 02:06:37 AM,07/26/2013 02:07:19 AM,07/26/2013 02:08:45 AM,07/26/2013 02:12:09 AM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/26/2013 02:17:57 AM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",132070020-E13 -160382974,66,16015349,Medical Incident,02/07/2016,02/07/2016,02/07/2016 07:03:34 PM,02/07/2016 07:04:58 PM,02/07/2016 07:06:03 PM,02/07/2016 07:08:01 PM,02/07/2016 07:11:58 PM,02/07/2016 07:17:22 PM,02/07/2016 07:38:15 PM,Code 2 Transport,02/07/2016 07:58:19 PM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7292524765372, -122.382457584855)",160382974-66 -112680335,B09,11088718,Structure Fire,09/25/2011,09/25/2011,09/25/2011 08:15:01 PM,09/25/2011 08:15:54 PM,09/25/2011 08:16:44 PM,09/25/2011 08:17:34 PM,09/25/2011 08:21:42 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 08:40:10 PM,200 Block of THRIFT ST,SF,94112,B09,33,8415,3,3,3,false,,1,CHIEF,4,9,11,Oceanview/Merced/Ingleside,"(37.7174874499717, -122.46143337515)",112680335-B09 -111830009,E02,11060292,Alarms,07/02/2011,07/01/2011,07/02/2011 12:28:27 AM,07/02/2011 12:29:32 AM,07/02/2011 12:29:41 AM,07/02/2011 12:32:01 AM,07/02/2011 12:32:06 AM,04/25/2016 02:03:52 PM,04/25/2016 02:03:52 PM,Other,07/02/2011 12:37:19 AM,500 Block of VALLEJO ST,SF,94133,B01,2,1251,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.7988360851222, -122.406273249471)",111830009-E02 -102940246,78,10093806,Medical Incident,10/21/2010,10/21/2010,10/21/2010 04:15:28 PM,10/21/2010 04:18:16 PM,10/21/2010 04:18:31 PM,10/21/2010 04:18:36 PM,10/21/2010 04:27:17 PM,10/21/2010 04:41:55 PM,10/21/2010 05:17:33 PM,Code 2 Transport,10/21/2010 05:43:34 PM,300 Block of SACRAMENTO ST,SF,94111,B01,13,1141,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7941550943821, -122.399548542979)",102940246-78 -160172847,89,16006965,Medical Incident,01/17/2016,01/17/2016,01/17/2016 07:14:01 PM,01/17/2016 07:14:34 PM,01/17/2016 07:15:27 PM,01/17/2016 07:22:12 PM,01/17/2016 07:25:15 PM,01/17/2016 07:33:58 PM,01/17/2016 07:39:07 PM,Other,01/17/2016 08:13:28 PM,19TH AV/LINCOLN WY,San Francisco,94122,B08,22,7424,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,4,Sunset/Parkside,"(37.7654479866215, -122.477308393483)",160172847-89 -131040389,AM22,13035108,Medical Incident,04/14/2013,04/14/2013,04/14/2013 10:43:36 PM,04/14/2013 10:46:00 PM,04/14/2013 10:46:14 PM,04/14/2013 10:47:07 PM,04/14/2013 10:58:43 PM,04/14/2013 11:12:31 PM,04/14/2013 11:30:46 PM,Code 2 Transport,04/15/2013 12:17:01 AM,300 Block of MONCADA WAY,SF,94127,B09,15,8453,3,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7296962224471, -122.470055977724)",131040389-AM22 -160891148,KM05,16035277,Medical Incident,03/29/2016,03/29/2016,03/29/2016 10:00:10 AM,03/29/2016 10:02:08 AM,03/29/2016 10:05:57 AM,03/29/2016 10:05:57 AM,03/29/2016 10:11:13 AM,03/29/2016 10:25:16 AM,03/29/2016 10:42:51 AM,Code 2 Transport,03/29/2016 11:22:36 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160891148-KM05 -131590166,B02,13054005,Medical Incident,06/08/2013,06/08/2013,06/08/2013 12:11:05 PM,06/08/2013 12:11:53 PM,06/08/2013 12:13:10 PM,04/25/2016 01:52:23 PM,06/08/2013 12:14:50 PM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/08/2013 12:23:34 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",131590166-B02 -111140152,E10,11037652,Medical Incident,04/24/2011,04/24/2011,04/24/2011 01:11:36 PM,04/24/2011 01:15:51 PM,04/24/2011 01:16:20 PM,04/24/2011 01:17:23 PM,04/24/2011 01:18:13 PM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 01:30:47 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",111140152-E10 -130050279,B06,13001801,Structure Fire,01/05/2013,01/05/2013,01/05/2013 04:11:31 PM,01/05/2013 04:12:01 PM,01/05/2013 04:12:13 PM,01/05/2013 04:13:36 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,04/25/2016 01:54:57 PM,Other,01/05/2013 04:16:23 PM,HARBOR RD/NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7310098713367, -122.376999546443)",130050279-B06 -160860559,KM07,16034075,Medical Incident,03/26/2016,03/25/2016,03/26/2016 05:07:27 AM,03/26/2016 05:09:12 AM,03/26/2016 05:09:25 AM,03/26/2016 05:09:48 AM,03/26/2016 05:14:43 AM,03/26/2016 05:30:24 AM,03/26/2016 05:43:27 AM,Code 3 Transport,03/26/2016 06:36:39 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160860559-KM07 -160273764,60,16010872,Medical Incident,01/27/2016,01/27/2016,01/27/2016 09:39:07 PM,01/27/2016 09:39:07 PM,01/27/2016 09:42:59 PM,01/27/2016 09:43:28 PM,01/27/2016 09:55:41 PM,01/27/2016 10:24:00 PM,01/27/2016 10:35:43 PM,Code 2 Transport,01/27/2016 11:24:13 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7747867934702, -122.41332535029)",160273764-60 -122650303,RC2,12087659,Citizen Assist / Service Call,09/21/2012,09/21/2012,09/21/2012 08:38:04 PM,09/21/2012 08:39:36 PM,09/21/2012 08:40:45 PM,09/21/2012 08:52:39 PM,09/21/2012 09:04:42 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 09:45:52 PM,4200 Block of BALBOA ST,SF,94121,B07,34,7273,3,3,3,true,Alarm,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7754517962446, -122.504284482138)",122650303-RC2 -120940257,KM05,12031215,Medical Incident,04/03/2012,04/03/2012,04/03/2012 05:12:09 PM,04/03/2012 05:13:10 PM,04/03/2012 05:13:40 PM,04/03/2012 05:14:26 PM,04/03/2012 05:18:19 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 05:27:11 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",120940257-KM05 -112350326,T05,11077667,Structure Fire,08/23/2011,08/23/2011,08/23/2011 06:26:02 PM,08/23/2011 06:27:21 PM,08/23/2011 06:27:41 PM,08/23/2011 06:28:42 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 06:32:54 PM,1000 Block of OFARRELL ST,SF,94109,B04,3,3162,3,3,3,false,,1,TRUCK,6,2,5,Western Addition,"(37.7845957801826, -122.42200470349)",112350326-T05 -123450259,KM10,12115383,Traffic Collision,12/10/2012,12/10/2012,12/10/2012 02:23:05 PM,12/10/2012 02:23:24 PM,12/10/2012 02:23:42 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 02:24:56 PM,HARRISON ST/8TH ST,SF,94103,B03,29,2333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,South of Market,"(37.7737596997868, -122.408516330795)",123450259-KM10 -160683147,AM08,16027222,Medical Incident,03/08/2016,03/08/2016,03/08/2016 07:16:48 PM,03/08/2016 07:17:32 PM,03/08/2016 07:17:58 PM,03/08/2016 07:18:26 PM,03/08/2016 07:22:54 PM,03/08/2016 07:32:10 PM,03/08/2016 07:43:51 PM,Code 2 Transport,03/08/2016 08:02:27 PM,FULTON ST/MASONIC AV,San Francisco,94117,B05,21,4463,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7758015911545, -122.446470828705)",160683147-AM08 -130690011,54,13022896,Medical Incident,03/10/2013,03/09/2013,03/10/2013 12:18:46 AM,03/10/2013 12:19:36 AM,03/10/2013 12:20:50 AM,03/10/2013 12:21:17 AM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,04/25/2016 01:53:54 PM,1900 Block of 33RD AVE,SF,94116,B08,18,7544,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7507759828328, -122.491347448106)",130690011-54 -160243176,78,16009675,Medical Incident,01/24/2016,01/24/2016,01/24/2016 08:26:15 PM,01/24/2016 08:27:14 PM,01/24/2016 08:27:33 PM,01/24/2016 08:28:14 PM,01/24/2016 08:32:43 PM,01/24/2016 08:56:54 PM,01/24/2016 09:33:11 PM,Code 2 Transport,01/24/2016 10:01:41 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",160243176-78 -132150405,E09,13072808,Medical Incident,08/03/2013,08/03/2013,08/03/2013 10:40:29 PM,08/03/2013 10:41:44 PM,08/03/2013 10:41:59 PM,08/03/2013 10:42:55 PM,08/03/2013 10:46:24 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Patient Declined Transport,08/03/2013 10:58:19 PM,2700 Block of 24TH ST,SF,94110,B06,9,5531,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7528247417833, -122.407734831168)",132150405-E09 -120360181,E06,12011991,Other,02/05/2012,02/05/2012,02/05/2012 12:12:25 PM,02/05/2012 12:17:14 PM,02/05/2012 12:17:40 PM,02/05/2012 12:19:27 PM,02/05/2012 12:20:14 PM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,No Merit,02/05/2012 12:27:50 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,Alarm,1,ENGINE,1,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",120360181-E06 -102790093,KM05,10088631,Medical Incident,10/06/2010,10/06/2010,10/06/2010 10:02:27 AM,10/06/2010 10:02:53 AM,10/06/2010 10:03:19 AM,10/06/2010 10:19:55 AM,10/06/2010 10:21:12 AM,10/06/2010 10:35:18 AM,10/06/2010 10:50:04 AM,Code 2 Transport,10/06/2010 11:12:08 AM,400 Block of BATTERY ST,SF,94111,B01,13,1161,2,2,2,false,,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.7952390728016, -122.400302577155)",102790093-KM05 -102260256,E38,10071215,Traffic Collision,08/14/2010,08/14/2010,08/14/2010 05:58:53 PM,08/14/2010 05:58:53 PM,08/14/2010 05:59:14 PM,08/14/2010 06:00:12 PM,08/14/2010 06:01:15 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 06:12:05 PM,GOUGH ST/CALIFORNIA ST,SF,94109,B04,38,3254,3,3,3,false,,1,ENGINE,3,4,2,Pacific Heights,"(37.7899518840675, -122.42561605443)",102260256-E38 -121430205,T01,12047554,Alarms,05/22/2012,05/22/2012,05/22/2012 01:37:50 PM,05/22/2012 01:39:42 PM,05/22/2012 01:42:20 PM,05/22/2012 01:42:31 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 02:01:58 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",121430205-T01 -102400152,KM11,10075677,Medical Incident,08/28/2010,08/28/2010,08/28/2010 12:13:05 PM,08/28/2010 12:13:52 PM,08/28/2010 12:14:22 PM,08/28/2010 12:15:01 PM,08/28/2010 12:25:15 PM,08/28/2010 12:34:23 PM,08/28/2010 12:39:56 PM,Code 2 Transport,08/28/2010 12:59:40 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,E,E,3,false,,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",102400152-KM11 -132120225,E22,13071696,Medical Incident,07/31/2013,07/31/2013,07/31/2013 03:16:12 PM,07/31/2013 03:19:00 PM,07/31/2013 03:19:26 PM,07/31/2013 03:20:29 PM,07/31/2013 03:22:42 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,07/31/2013 03:45:13 PM,2500 Block of LINCOLN WAY,SF,94122,B08,22,7452,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7650045363484, -122.485288145155)",132120225-E22 -160332246,58,16013044,Medical Incident,02/02/2016,02/02/2016,02/02/2016 03:36:56 PM,02/02/2016 03:37:42 PM,02/02/2016 03:38:01 PM,02/02/2016 03:38:24 PM,02/02/2016 03:52:29 PM,02/02/2016 04:15:51 PM,02/02/2016 04:45:58 PM,Code 2 Transport,02/02/2016 07:19:43 PM,100 Block of THRIFT ST,San Francisco,94112,B09,33,8465,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7175209597826, -122.457583925506)",160332246-58 -121910230,E09,12063630,Structure Fire,07/09/2012,07/09/2012,07/09/2012 03:17:00 PM,07/09/2012 03:17:39 PM,07/09/2012 03:17:55 PM,07/09/2012 03:19:04 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 03:27:19 PM,100 Block of NAUTILUS DR,SF,94124,B10,17,6665,3,3,3,true,Fire,1,ENGINE,9,10,10,Bayview Hunters Point,"(37.728115531126, -122.372708921939)",121910230-E09 -140260012,84,14008756,Medical Incident,01/26/2014,01/25/2014,01/26/2014 12:43:12 AM,01/26/2014 12:44:04 AM,01/26/2014 12:45:23 AM,01/26/2014 12:45:46 AM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/26/2014 12:55:59 AM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,Potentially Life-Threatening,1,MEDIC,5,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",140260012-84 -122480040,81,12081872,Medical Incident,09/04/2012,09/03/2012,09/04/2012 02:49:04 AM,09/04/2012 02:49:48 AM,09/04/2012 02:50:00 AM,09/04/2012 02:50:33 AM,04/25/2016 01:56:56 PM,09/04/2012 03:09:25 AM,09/04/2012 03:12:13 AM,Code 3 Transport,09/04/2012 03:44:46 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",122480040-81 -132320014,75,13078221,Medical Incident,08/20/2013,08/19/2013,08/20/2013 01:40:35 AM,08/20/2013 01:41:40 AM,08/20/2013 01:42:08 AM,08/20/2013 01:43:35 AM,08/20/2013 01:49:21 AM,08/20/2013 02:00:15 AM,08/20/2013 02:26:39 AM,Code 2 Transport,08/20/2013 03:03:56 AM,700 Block of BRUSSELS ST,SF,94134,B10,44,6325,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7229051925223, -122.403886645844)",132320014-75 -123660286,E02,12122532,Traffic Collision,12/31/2012,12/31/2012,12/31/2012 06:33:12 PM,12/31/2012 06:34:06 PM,12/31/2012 06:34:21 PM,12/31/2012 06:35:43 PM,12/31/2012 06:39:05 PM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,12/31/2012 06:50:15 PM,600 Block of BAY ST,SF,94133,B01,28,1614,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8050301528697, -122.417867154077)",123660286-E02 -112020042,D2,11066530,Structure Fire,07/21/2011,07/20/2011,07/21/2011 04:40:05 AM,07/21/2011 04:40:56 AM,07/21/2011 04:41:38 AM,07/21/2011 04:43:07 AM,07/21/2011 04:46:22 AM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Fire,07/21/2011 04:53:35 AM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,,1,CHIEF,8,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",112020042-D2 -110050324,B04,11001754,Structure Fire,01/05/2011,01/05/2011,01/05/2011 06:22:25 PM,01/05/2011 06:22:58 PM,01/05/2011 06:23:31 PM,01/05/2011 06:24:38 PM,01/05/2011 06:28:03 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/05/2011 06:39:40 PM,900 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,false,,1,CHIEF,5,4,3,Nob Hill,"(37.7882286861562, -122.415995198292)",110050324-B04 -131330070,54,13044771,Medical Incident,05/13/2013,05/12/2013,05/13/2013 07:13:46 AM,05/13/2013 07:14:34 AM,05/13/2013 07:15:29 AM,05/13/2013 07:15:40 AM,05/13/2013 07:28:46 AM,05/13/2013 07:52:56 AM,05/13/2013 08:17:16 AM,Code 2 Transport,05/13/2013 08:53:15 AM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",131330070-54 -110320068,82,11010398,Medical Incident,02/01/2011,02/01/2011,02/01/2011 08:51:54 AM,02/01/2011 08:53:26 AM,02/01/2011 08:53:41 AM,02/01/2011 08:54:23 AM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,04/25/2016 02:06:19 PM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",110320068-82 -131650031,E06,13055920,Medical Incident,06/14/2013,06/13/2013,06/14/2013 02:55:31 AM,06/14/2013 02:59:13 AM,06/14/2013 02:59:30 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 03:01:18 AM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",131650031-E06 -160521030,57,16020750,Medical Incident,02/21/2016,02/21/2016,02/21/2016 09:39:43 AM,02/21/2016 09:40:30 AM,02/21/2016 10:00:08 AM,02/21/2016 10:00:20 AM,02/21/2016 10:14:52 AM,02/21/2016 10:35:12 AM,02/21/2016 10:57:38 AM,Code 2 Transport,02/21/2016 11:37:44 AM,300 Block of 18TH AVE,San Francisco,94121,B07,31,7164,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.7814031484353, -122.477238000486)",160521030-57 -112400069,B04,11079111,Alarms,08/28/2011,08/27/2011,08/28/2011 05:19:07 AM,08/28/2011 05:19:39 AM,08/28/2011 05:19:44 AM,08/28/2011 05:23:17 AM,08/28/2011 05:24:12 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 05:29:56 AM,1300 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7818977107871, -122.432353853525)",112400069-B04 -133490107,B01,13118412,Structure Fire,12/15/2013,12/15/2013,12/15/2013 09:26:54 AM,12/15/2013 09:27:33 AM,12/15/2013 09:28:07 AM,12/15/2013 09:28:53 AM,12/15/2013 09:31:10 AM,04/25/2016 01:49:15 PM,04/25/2016 01:49:15 PM,Other,12/15/2013 12:52:20 PM,1600 Block of POWELL ST,SF,94133,B01,2,1352,3,3,3,false,Fire,1,CHIEF,1,1,3,Chinatown,"(37.7997797092439, -122.410670608693)",133490107-B01 -160272712,KM05,16010772,Medical Incident,01/27/2016,01/27/2016,01/27/2016 04:41:01 PM,01/27/2016 04:42:01 PM,01/27/2016 04:42:27 PM,01/27/2016 04:43:00 PM,01/27/2016 04:48:02 PM,01/27/2016 05:07:50 PM,01/27/2016 05:30:40 PM,Code 2 Transport,01/27/2016 06:06:20 PM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",160272712-KM05 -120620355,E40,12020542,Traffic Collision,03/02/2012,03/02/2012,03/02/2012 09:38:20 PM,03/02/2012 09:39:08 PM,03/02/2012 09:39:31 PM,03/02/2012 09:40:41 PM,03/02/2012 09:43:14 PM,04/25/2016 01:59:52 PM,04/25/2016 01:59:52 PM,No Merit,03/02/2012 09:45:44 PM,20TH AV/ORTEGA ST,SF,94116,B08,40,7421,2,2,2,false,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7523291026289, -122.477414975855)",120620355-E40 -110250449,E38,11008427,Medical Incident,01/25/2011,01/25/2011,01/25/2011 10:17:14 PM,01/25/2011 10:18:48 PM,01/25/2011 10:19:09 PM,01/25/2011 10:20:22 PM,01/25/2011 10:22:20 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 10:37:34 PM,1600 Block of POST ST,SF,94115,B04,38,3364,3,2,2,false,,1,ENGINE,1,4,5,Japantown,"(37.7856200211531, -122.428953785897)",110250449-E38 -160022152,76,16000786,Medical Incident,01/02/2016,01/02/2016,01/02/2016 03:57:15 PM,01/02/2016 04:00:12 PM,01/02/2016 04:00:31 PM,01/02/2016 04:00:45 PM,01/02/2016 04:03:50 PM,01/02/2016 04:14:31 PM,01/02/2016 04:20:28 PM,Code 2 Transport,01/02/2016 04:44:47 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160022152-76 -140150165,E03,14005116,Structure Fire,01/15/2014,01/15/2014,01/15/2014 11:50:27 AM,01/15/2014 11:51:01 AM,01/15/2014 11:51:31 AM,01/15/2014 11:53:37 AM,01/15/2014 11:55:55 AM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/15/2014 12:26:12 PM,1700 Block of CLAY ST,SF,94109,B04,41,3154,3,3,3,true,Alarm,1,ENGINE,6,4,3,Nob Hill,"(37.7922247161992, -122.421862574917)",140150165-E03 -110140124,E36,11004599,Alarms,01/14/2011,01/14/2011,01/14/2011 11:02:36 AM,01/14/2011 11:03:45 AM,01/14/2011 11:03:54 AM,01/14/2011 11:05:38 AM,01/14/2011 11:07:03 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 11:17:22 AM,200 Block of FRANKLIN ST,SF,94102,B02,36,3213,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7763842191709, -122.421260388531)",110140124-E36 -111650400,E21,11054622,Medical Incident,06/14/2011,06/14/2011,06/14/2011 10:48:19 PM,06/14/2011 10:48:55 PM,06/14/2011 10:49:30 PM,06/14/2011 10:51:10 PM,06/14/2011 10:53:35 PM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/14/2011 11:01:25 PM,2100 Block of FULTON ST,SF,94117,B05,21,4542,3,3,3,false,,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7750309504676, -122.452073282988)",111650400-E21 -122160357,E05,12071822,Other,08/03/2012,08/03/2012,08/03/2012 08:30:37 PM,08/03/2012 08:30:47 PM,08/03/2012 08:31:07 PM,08/03/2012 08:31:56 PM,08/03/2012 08:45:30 PM,04/25/2016 01:57:24 PM,04/25/2016 01:57:24 PM,Other,08/03/2012 08:54:39 PM,1100 Block of ELLIS ST,SF,94109,B02,5,3322,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7831387146973, -122.425928739913)",122160357-E05 -130830083,E26,13027684,Traffic Collision,03/24/2013,03/24/2013,03/24/2013 08:27:54 AM,03/24/2013 08:30:26 AM,03/24/2013 08:32:04 AM,03/24/2013 08:32:58 AM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/24/2013 08:37:01 AM,200 Block of SAN JOSE AVE,SF,94110,B09,15,8313,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,8,Mission,"(37.7512439644709, -122.421585334305)",130830083-E26 -160252678,76,16010022,Medical Incident,01/25/2016,01/25/2016,01/25/2016 04:49:51 PM,01/25/2016 04:51:14 PM,01/25/2016 04:51:37 PM,01/25/2016 04:51:44 PM,01/25/2016 04:55:17 PM,01/25/2016 05:09:00 PM,01/25/2016 05:14:38 PM,Code 2 Transport,01/25/2016 05:36:57 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160252678-76 -111870395,85,11062002,Medical Incident,07/06/2011,07/06/2011,07/06/2011 11:36:04 PM,07/06/2011 11:37:16 PM,07/06/2011 11:39:08 PM,07/06/2011 11:39:30 PM,07/06/2011 11:45:55 PM,07/06/2011 11:55:59 PM,07/07/2011 12:16:54 AM,Code 2 Transport,07/07/2011 12:42:28 AM,0 Block of DORE ST,SF,94103,B02,36,2342,2,2,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",111870395-85 -102800047,AP,10088902,Other,10/07/2010,10/06/2010,10/07/2010 05:37:53 AM,10/07/2010 05:37:54 AM,10/07/2010 05:37:54 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Fire,10/07/2010 05:53:50 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102800047-AP -130960277,T13,13032256,Structure Fire,04/06/2013,04/06/2013,04/06/2013 04:51:05 PM,04/06/2013 04:51:06 PM,04/06/2013 04:51:32 PM,04/06/2013 04:52:13 PM,04/06/2013 04:55:41 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 04:55:56 PM,600 Block of MARKET ST,SF,94105,B03,1,2211,3,3,3,true,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",130960277-T13 -103230330,58,10103593,Medical Incident,11/19/2010,11/19/2010,11/19/2010 07:27:33 PM,11/19/2010 07:29:20 PM,11/19/2010 07:29:32 PM,11/19/2010 07:30:04 PM,11/19/2010 07:43:35 PM,11/19/2010 07:43:53 PM,11/19/2010 07:54:39 PM,Code 2 Transport,11/19/2010 08:12:53 PM,800 Block of BARNEVELD AVE,SF,94134,B10,42,6362,3,2,2,true,,1,MEDIC,2,10,9,Portola,"(37.7323326205367, -122.40695846592)",103230330-58 -123480061,E42,12116248,Medical Incident,12/13/2012,12/12/2012,12/13/2012 06:04:51 AM,12/13/2012 06:07:04 AM,12/13/2012 06:07:27 AM,12/13/2012 06:09:17 AM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Other,12/13/2012 06:11:45 AM,300 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",123480061-E42 -160640457,AM24,16025364,Medical Incident,03/04/2016,03/03/2016,03/04/2016 05:33:58 AM,03/04/2016 05:35:32 AM,03/04/2016 05:35:47 AM,03/04/2016 05:36:58 AM,03/04/2016 05:56:41 AM,03/04/2016 06:09:29 AM,03/04/2016 06:19:09 AM,Code 2 Transport,03/04/2016 06:50:51 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160640457-AM24 -132390194,T07,13080626,Alarms,08/27/2013,08/27/2013,08/27/2013 01:11:31 PM,08/27/2013 01:12:36 PM,08/27/2013 01:12:43 PM,08/27/2013 01:14:28 PM,08/27/2013 01:16:57 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 01:29:39 PM,3600 Block of 20TH ST,SF,94110,B06,7,5445,3,3,3,false,Alarm,1,TRUCK,2,6,8,Mission,"(37.7583767667371, -122.422374882262)",132390194-T07 -121200173,AM06,12039818,Medical Incident,04/29/2012,04/29/2012,04/29/2012 11:11:51 AM,04/29/2012 11:12:50 AM,04/29/2012 11:13:59 AM,04/25/2016 01:58:56 PM,04/29/2012 11:15:02 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Patient Declined Transport,04/29/2012 11:17:43 AM,MASONIC AV/HAIGHT ST,SF,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",121200173-AM06 -123040195,RS1,12100906,Medical Incident,10/30/2012,10/30/2012,10/30/2012 03:09:05 PM,10/30/2012 03:09:26 PM,10/30/2012 03:13:24 PM,10/30/2012 03:14:38 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Other,10/30/2012 03:16:20 PM,200 Block of GEARY ST,SF,94108,B01,1,1323,2,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,1,3,Financial District/South Beach,"(37.7875178765236, -122.407419288196)",123040195-RS1 -133030260,79,13102991,Medical Incident,10/30/2013,10/30/2013,10/30/2013 04:29:13 PM,10/30/2013 04:30:03 PM,10/30/2013 04:30:20 PM,10/30/2013 04:30:57 PM,10/30/2013 04:37:58 PM,10/30/2013 04:52:13 PM,10/30/2013 04:59:27 PM,Code 2 Transport,10/30/2013 05:48:53 PM,200 Block of SHOTWELL ST,SF,94110,B02,7,5237,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7644380015359, -122.416376372761)",133030260-79 -132780060,85,13094395,Medical Incident,10/05/2013,10/04/2013,10/05/2013 04:13:56 AM,10/05/2013 04:16:15 AM,10/05/2013 04:17:28 AM,10/05/2013 04:17:43 AM,04/25/2016 01:50:25 PM,10/05/2013 04:34:55 AM,10/05/2013 04:46:59 AM,Code 2 Transport,10/05/2013 05:28:27 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7794880680759, -122.40694292477)",132780060-85 -133530229,E41,13119948,Medical Incident,12/19/2013,12/19/2013,12/19/2013 02:35:55 PM,12/19/2013 02:37:36 PM,12/19/2013 02:38:42 PM,12/19/2013 02:39:42 PM,12/19/2013 02:40:54 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 02:53:40 PM,1300 Block of JONES ST,SF,94109,B01,41,1466,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",133530229-E41 -110340337,E11,11011294,Medical Incident,02/03/2011,02/03/2011,02/03/2011 08:10:37 PM,02/03/2011 08:12:01 PM,02/03/2011 08:12:37 PM,02/03/2011 08:13:27 PM,02/03/2011 08:15:08 PM,04/25/2016 02:06:16 PM,04/25/2016 02:06:16 PM,Other,02/03/2011 08:20:45 PM,MISSION ST/26TH ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7490412884368, -122.418135251703)",110340337-E11 -160223746,65,16008961,Medical Incident,01/22/2016,01/22/2016,01/22/2016 10:13:31 PM,01/22/2016 10:16:01 PM,01/22/2016 10:16:27 PM,01/22/2016 10:16:42 PM,01/22/2016 10:27:32 PM,01/22/2016 10:40:54 PM,01/22/2016 10:44:27 PM,Code 2 Transport,01/22/2016 11:08:36 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160223746-65 -132810293,E05,13095694,Medical Incident,10/08/2013,10/08/2013,10/08/2013 05:27:36 PM,10/08/2013 05:28:52 PM,10/08/2013 05:32:56 PM,04/25/2016 01:50:21 PM,10/08/2013 05:34:41 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/08/2013 05:37:35 PM,TURK ST/GOUGH ST,SF,94102,B02,5,3263,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Western Addition,"(37.7815356107047, -122.423917826838)",132810293-E05 -111050216,E32,11034794,Medical Incident,04/15/2011,04/15/2011,04/15/2011 03:13:03 PM,04/15/2011 03:13:44 PM,04/15/2011 03:14:46 PM,04/15/2011 03:16:32 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 03:17:10 PM,0 Block of MOFFITT ST,SF,94131,B06,26,8111,3,3,3,true,,1,ENGINE,3,6,8,Glen Park,"(37.7371435128093, -122.432773119399)",111050216-E32 -112790029,B02,11092223,Alarms,10/06/2011,10/05/2011,10/06/2011 02:11:22 AM,10/06/2011 02:12:24 AM,10/06/2011 02:12:40 AM,04/25/2016 02:02:18 PM,10/06/2011 02:17:41 AM,04/25/2016 02:02:18 PM,04/25/2016 02:02:18 PM,Other,10/06/2011 02:34:09 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,false,,1,CHIEF,3,3,6,South of Market,"(37.7826911213472, -122.409536662692)",112790029-B02 -160744101,53,16029525,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:10:15 PM,03/14/2016 11:11:17 PM,03/14/2016 11:11:32 PM,03/14/2016 11:11:54 PM,03/14/2016 11:16:45 PM,03/14/2016 11:33:16 PM,03/14/2016 11:39:00 PM,Code 2 Transport,03/15/2016 12:46:33 AM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160744101-53 -120730327,72,12024346,Medical Incident,03/13/2012,03/13/2012,03/13/2012 07:57:22 PM,03/13/2012 07:57:40 PM,03/13/2012 07:58:02 PM,03/13/2012 07:58:36 PM,03/13/2012 08:06:53 PM,03/13/2012 08:27:29 PM,03/13/2012 08:34:55 PM,Code 2 Transport,03/13/2012 08:54:43 PM,4700 Block of MISSION ST,SF,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",120730327-72 -140870282,KM10,14029358,Medical Incident,03/28/2014,03/28/2014,03/28/2014 05:14:30 PM,03/28/2014 05:14:46 PM,03/28/2014 05:21:41 PM,03/28/2014 05:22:18 PM,03/28/2014 05:29:26 PM,03/28/2014 05:35:13 PM,03/28/2014 05:43:46 PM,Code 2 Transport,03/28/2014 06:14:33 PM,200 Block of TURK ST,SAN FRANCISCO,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",140870282-KM10 -160634033,55,16025304,Medical Incident,03/03/2016,03/03/2016,03/03/2016 11:49:08 PM,03/03/2016 11:49:08 PM,03/03/2016 11:49:16 PM,03/03/2016 11:49:42 PM,03/03/2016 11:54:26 PM,03/04/2016 12:00:52 AM,03/04/2016 12:05:04 AM,Code 2 Transport,03/04/2016 12:55:03 AM,400 Block of 6TH AVE,San Francisco,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",160634033-55 -140850015,94,14028485,Medical Incident,03/26/2014,03/25/2014,03/26/2014 02:00:46 AM,03/26/2014 02:01:08 AM,03/26/2014 02:01:39 AM,03/26/2014 02:03:33 AM,03/26/2014 02:05:43 AM,03/26/2014 02:20:54 AM,03/26/2014 02:38:24 AM,Code 2 Transport,03/26/2014 03:10:30 AM,21ST ST/VALENCIA ST,SAN FRANCISCO,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7569020093743, -122.421117541576)",140850015-94 -131520115,KM04,13051439,Medical Incident,06/01/2013,06/01/2013,06/01/2013 09:31:39 AM,06/01/2013 09:32:12 AM,06/01/2013 09:33:18 AM,04/25/2016 01:52:31 PM,06/01/2013 09:38:10 AM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Patient Declined Transport,06/01/2013 10:36:32 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",131520115-KM04 -160261976,74,16010317,Medical Incident,01/26/2016,01/26/2016,01/26/2016 01:33:29 PM,01/26/2016 01:33:29 PM,01/26/2016 01:34:33 PM,01/26/2016 01:35:12 PM,01/26/2016 01:44:36 PM,01/26/2016 02:07:47 PM,01/26/2016 02:19:08 PM,Code 2 Transport,01/26/2016 03:02:47 PM,BAY ST/THE EMBARCADERO NOR,San Francisco,94133,B01,28,1255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8065688614821, -122.406429633461)",160261976-74 -122950178,67,12097846,Medical Incident,10/21/2012,10/21/2012,10/21/2012 01:30:56 PM,10/21/2012 01:33:29 PM,10/21/2012 01:33:45 PM,10/21/2012 01:34:26 PM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,Other,10/21/2012 01:42:29 PM,500 Block of GEARY ST,SF,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869413406164, -122.411939021128)",122950178-67 -122350203,E01,12077887,Alarms,08/22/2012,08/22/2012,08/22/2012 03:00:48 PM,08/22/2012 03:01:28 PM,08/22/2012 03:01:35 PM,08/22/2012 03:02:50 PM,08/22/2012 03:05:00 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Other,08/22/2012 03:27:10 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7815063666429, -122.407932868203)",122350203-E01 -110460334,59,11015358,Structure Fire,02/15/2011,02/15/2011,02/15/2011 09:30:21 PM,02/15/2011 09:31:02 PM,02/15/2011 09:31:17 PM,02/15/2011 09:34:12 PM,02/15/2011 09:45:27 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 09:52:15 PM,2500 Block of WASHINGTON ST,SF,94115,B04,38,3545,3,3,3,true,,1,MEDIC,7,4,2,Pacific Heights,"(37.791541565931, -122.435214356646)",110460334-59 -121550220,B04,12051345,Administrative,06/03/2012,06/03/2012,06/03/2012 03:01:03 PM,06/03/2012 03:01:29 PM,06/03/2012 03:01:40 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Fire,06/03/2012 03:02:02 PM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,false,,1,CHIEF,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",121550220-B04 -111940082,RC1,11063966,Traffic Collision,07/13/2011,07/13/2011,07/13/2011 08:11:40 AM,07/13/2011 08:13:28 AM,07/13/2011 08:14:24 AM,07/13/2011 08:15:44 AM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 08:20:45 AM,800 Block of CAROLINA ST,SF,94107,B10,37,2544,3,3,3,true,,1,RESCUE CAPTAIN,3,10,10,Potrero Hill,"(37.7586517986248, -122.400101304192)",111940082-RC1 -160753528,58,16029877,Medical Incident,03/15/2016,03/15/2016,03/15/2016 08:15:55 PM,03/15/2016 08:17:07 PM,03/15/2016 08:18:57 PM,03/15/2016 08:19:07 PM,03/15/2016 08:21:43 PM,03/15/2016 08:47:51 PM,03/15/2016 09:20:58 PM,Code 2 Transport,03/15/2016 09:44:29 PM,1300 Block of WASHINGTON ST,San Francisco,94109,B01,41,1466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.79405405477, -122.415456646894)",160753528-58 -140750158,E39,14025370,Alarms,03/16/2014,03/16/2014,03/16/2014 10:47:21 AM,03/16/2014 10:47:21 AM,03/16/2014 10:48:30 AM,03/16/2014 10:49:58 AM,03/16/2014 10:56:24 AM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Fire,03/16/2014 10:59:52 AM,700 Block of WAWONA ST,SAN FRANCISCO,94132,B08,39,7356,3,3,3,true,Alarm,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7374238355845, -122.474755479354)",140750158-E39 -133160045,B10,13107321,Alarms,11/12/2013,11/11/2013,11/12/2013 07:11:29 AM,11/12/2013 07:11:29 AM,11/12/2013 07:11:56 AM,11/12/2013 07:14:16 AM,11/12/2013 07:19:58 AM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Other,11/12/2013 07:21:40 AM,200 Block of ORDWAY ST,SF,94134,B10,44,6313,3,3,3,false,Alarm,1,CHIEF,3,10,10,Portola,"(37.7198454609097, -122.403098664835)",133160045-B10 -160300588,57,16011676,Medical Incident,01/30/2016,01/29/2016,01/30/2016 05:20:47 AM,01/30/2016 05:23:40 AM,01/30/2016 05:24:59 AM,01/30/2016 05:25:20 AM,01/30/2016 05:28:33 AM,01/30/2016 05:58:19 AM,01/30/2016 06:09:28 AM,Code 2 Transport,01/30/2016 06:45:37 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,A,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160300588-57 -123050200,B04,12101202,Structure Fire,10/31/2012,10/31/2012,10/31/2012 12:25:33 PM,10/31/2012 12:25:33 PM,10/31/2012 12:26:10 PM,10/31/2012 12:27:18 PM,10/31/2012 12:34:18 PM,04/25/2016 01:56:02 PM,04/25/2016 01:56:02 PM,Fire,10/31/2012 12:34:22 PM,2300 Block of JACKSON ST,SF,94115,B04,38,3465,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7926300152034, -122.433748587874)",123050200-B04 -103390244,B02,10108572,Structure Fire,12/05/2010,12/05/2010,12/05/2010 03:40:01 PM,12/05/2010 03:40:01 PM,12/05/2010 03:40:09 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 03:44:22 PM,0 Block of LAGUNA ST,SF,94102,B02,36,3416,3,3,3,false,,1,CHIEF,2,2,8,Hayes Valley,"(37.7707597722717, -122.425026833485)",103390244-B02 -111370144,E43,11045542,Medical Incident,05/17/2011,05/17/2011,05/17/2011 11:32:50 AM,05/17/2011 11:33:37 AM,05/17/2011 11:33:56 AM,05/17/2011 11:34:12 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 11:51:42 AM,5000 Block of MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,ENGINE,2,9,11,Outer Mission,"(37.7174988976749, -122.440357992837)",111370144-E43 -160693623,72,16027655,Medical Incident,03/09/2016,03/09/2016,03/09/2016 09:28:17 PM,03/09/2016 09:30:50 PM,03/09/2016 09:32:14 PM,03/09/2016 09:32:19 PM,03/09/2016 09:38:14 PM,03/09/2016 10:24:39 PM,03/09/2016 11:01:48 PM,Code 2 Transport,03/09/2016 11:36:21 PM,600 Block of EDINBURGH ST,San Francisco,94112,B09,43,6137,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7188747615519, -122.433710461002)",160693623-72 -160410318,72,16016296,Medical Incident,02/10/2016,02/09/2016,02/10/2016 03:57:10 AM,02/10/2016 03:58:51 AM,02/10/2016 03:59:46 AM,02/10/2016 04:00:23 AM,02/10/2016 04:06:14 AM,02/10/2016 04:26:18 AM,02/10/2016 04:28:27 AM,Code 2 Transport,02/10/2016 05:32:47 AM,FULTON ST/ARGUELLO BL,San Francisco,94122,B07,21,4561,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7743088945696, -122.458371098705)",160410318-72 -160703256,74,16027986,Medical Incident,03/10/2016,03/10/2016,03/10/2016 08:00:30 PM,03/10/2016 08:02:48 PM,03/10/2016 08:04:43 PM,03/10/2016 08:05:14 PM,03/10/2016 08:12:57 PM,03/10/2016 09:18:25 PM,03/10/2016 09:58:33 PM,Code 2 Transport,03/10/2016 10:28:21 PM,900 Block of MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",160703256-74 -112300310,T19,11076057,Alarms,08/18/2011,08/18/2011,08/18/2011 07:38:20 PM,08/18/2011 07:39:42 PM,08/18/2011 07:41:39 PM,08/18/2011 07:43:34 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,04/25/2016 02:03:06 PM,Other,08/18/2011 07:52:14 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,,1,TRUCK,3,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",112300310-T19 -140390397,E16,14013374,Alarms,02/08/2014,02/08/2014,02/08/2014 10:19:25 PM,02/08/2014 10:21:16 PM,02/08/2014 10:21:31 PM,02/08/2014 10:24:53 PM,02/08/2014 10:29:54 PM,04/25/2016 01:48:18 PM,04/25/2016 01:48:18 PM,Other,02/08/2014 10:38:03 PM,0 Block of MACARTHUR AVE,FM,94123,B99,51,3344,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8054225883231, -122.42595889896)",140390397-E16 -160612287,AM08,16024374,Medical Incident,03/01/2016,03/01/2016,03/01/2016 04:17:59 PM,03/01/2016 04:18:40 PM,03/01/2016 04:19:54 PM,03/01/2016 04:24:12 PM,03/01/2016 04:24:12 PM,03/01/2016 04:41:42 PM,03/01/2016 04:52:22 PM,Code 2 Transport,03/01/2016 05:22:30 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160612287-AM08 -131390259,E03,13047058,Medical Incident,05/19/2013,05/19/2013,05/19/2013 01:46:53 PM,05/19/2013 01:48:26 PM,05/19/2013 01:49:38 PM,04/25/2016 01:52:43 PM,05/19/2013 01:52:27 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 01:55:45 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",131390259-E03 -130280026,B09,13009479,Structure Fire,01/28/2013,01/27/2013,01/28/2013 03:00:41 AM,01/28/2013 03:01:23 AM,01/28/2013 03:09:26 AM,04/25/2016 01:54:35 PM,01/28/2013 03:12:44 AM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/28/2013 03:36:21 AM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,false,Alarm,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7444757680124, -122.507032721172)",130280026-B09 -131970258,T07,13066877,Structure Fire,07/16/2013,07/16/2013,07/16/2013 04:21:16 PM,07/16/2013 04:22:42 PM,07/16/2013 04:23:07 PM,07/16/2013 04:25:12 PM,07/16/2013 04:27:54 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/16/2013 04:35:37 PM,1400 Block of 17TH ST,SF,94107,B03,29,2425,3,3,3,false,Alarm,1,TRUCK,6,3,10,Potrero Hill,"(37.7649883073813, -122.398215133351)",131970258-T07 -160681455,79,16027102,Medical Incident,03/08/2016,03/08/2016,03/08/2016 11:33:25 AM,03/08/2016 11:34:24 AM,03/08/2016 11:34:56 AM,03/08/2016 11:35:10 AM,03/08/2016 11:40:35 AM,03/08/2016 11:47:00 AM,03/08/2016 12:04:48 PM,Code 2 Transport,03/08/2016 12:39:43 PM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",160681455-79 -160502273,84,16020141,Medical Incident,02/19/2016,02/19/2016,02/19/2016 03:22:51 PM,02/19/2016 03:23:46 PM,02/19/2016 03:24:18 PM,02/19/2016 03:25:06 PM,02/19/2016 03:37:42 PM,02/19/2016 03:53:10 PM,02/19/2016 04:02:03 PM,Code 2 Transport,02/19/2016 05:00:58 PM,500 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1234,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7927320655845, -122.40413464889)",160502273-84 -123350251,B02,12111376,Structure Fire,11/30/2012,11/30/2012,11/30/2012 12:39:48 PM,11/30/2012 12:39:49 PM,11/30/2012 12:40:08 PM,11/30/2012 12:40:57 PM,11/30/2012 12:44:42 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:33 PM,Other,11/30/2012 12:49:34 PM,400 Block of CHURCH ST,SF,94114,B02,6,523,3,3,3,false,Alarm,1,CHIEF,2,2,8,Castro/Upper Market,"(37.7632288973036, -122.4286109134)",123350251-B02 -122460324,RC1,12081476,Medical Incident,09/02/2012,09/02/2012,09/02/2012 06:47:03 PM,09/02/2012 06:47:30 PM,09/02/2012 06:48:12 PM,09/02/2012 06:49:37 PM,09/02/2012 06:53:45 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 07:07:36 PM,NORTH POINT ST/TAYLOR ST,SF,94133,B01,28,1433,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,North Beach,"(37.8063434294735, -122.415431571973)",122460324-RC1 -160832849,84,16033051,Medical Incident,03/23/2016,03/23/2016,03/23/2016 04:45:07 PM,03/23/2016 04:45:07 PM,03/23/2016 04:46:01 PM,03/23/2016 04:46:09 PM,03/23/2016 05:04:17 PM,03/23/2016 05:23:56 PM,03/23/2016 05:30:54 PM,Code 2 Transport,03/23/2016 06:25:27 PM,EVANS AV/TOLAND ST,San Francisco,94124,B10,9,6422,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7472623482525, -122.396008614627)",160832849-84 -111130330,79,11037471,Medical Incident,04/23/2011,04/23/2011,04/23/2011 09:10:56 PM,04/23/2011 09:11:37 PM,04/23/2011 09:11:44 PM,04/23/2011 09:11:56 PM,04/23/2011 09:17:40 PM,04/23/2011 09:33:21 PM,04/23/2011 09:44:08 PM,Code 2 Transport,04/23/2011 10:19:34 PM,3000 Block of LARKIN ST,SF,94109,B01,28,1623,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8059751797269, -122.422033155092)",111130330-79 -132300101,E36,13077594,Medical Incident,08/18/2013,08/17/2013,08/18/2013 07:43:49 AM,08/18/2013 07:45:03 AM,08/18/2013 07:56:46 AM,08/18/2013 07:57:54 AM,08/18/2013 08:02:38 AM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,Other,08/18/2013 08:03:31 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",132300101-E36 -132850110,B02,13096890,Structure Fire,10/12/2013,10/12/2013,10/12/2013 09:20:30 AM,10/12/2013 09:21:30 AM,10/12/2013 09:21:49 AM,10/12/2013 09:22:30 AM,10/12/2013 09:24:56 AM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Fire,10/12/2013 10:01:12 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",132850110-B02 -132250295,94,13076028,Medical Incident,08/13/2013,08/13/2013,08/13/2013 04:20:39 PM,08/13/2013 04:21:10 PM,08/13/2013 04:21:34 PM,08/13/2013 04:22:10 PM,08/13/2013 04:26:14 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 05:01:31 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",132250295-94 -160701845,KM12,16027866,Medical Incident,03/10/2016,03/10/2016,03/10/2016 01:33:21 PM,03/10/2016 01:34:54 PM,03/10/2016 01:35:28 PM,03/10/2016 01:36:20 PM,03/10/2016 01:45:56 PM,03/10/2016 02:00:21 PM,03/10/2016 02:11:23 PM,Code 2 Transport,03/10/2016 03:00:33 PM,1500 Block of COLE ST,San Francisco,94117,B05,12,5257,2,3,3,false,Non Life-threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7604877592567, -122.448956117984)",160701845-KM12 -132520301,E20,13085282,Structure Fire,09/09/2013,09/09/2013,09/09/2013 07:03:26 PM,09/09/2013 07:04:51 PM,09/09/2013 07:05:26 PM,09/09/2013 07:06:52 PM,09/09/2013 07:09:40 PM,04/25/2016 01:50:52 PM,04/25/2016 01:50:52 PM,Other,09/09/2013 07:46:38 PM,400 Block of WARREN DR,SF,94131,B08,20,5377,3,3,3,true,Fire,1,ENGINE,1,8,7,Inner Sunset,"(37.7579474132621, -122.462145213369)",132520301-E20 -132700325,KM01,13091815,Medical Incident,09/27/2013,09/27/2013,09/27/2013 06:06:36 PM,09/27/2013 06:08:03 PM,09/27/2013 06:08:20 PM,09/27/2013 06:09:02 PM,09/27/2013 06:20:03 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Medical Examiner,09/27/2013 08:20:36 PM,3700 Block of BRODERICK ST,SF,94123,B04,16,4216,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Marina,"(37.8048883733226, -122.445622996571)",132700325-KM01 -133310205,E36,13112385,Medical Incident,11/27/2013,11/27/2013,11/27/2013 03:13:38 PM,11/27/2013 03:14:01 PM,11/27/2013 03:14:20 PM,11/27/2013 03:15:45 PM,11/27/2013 03:20:57 PM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/27/2013 03:34:58 PM,1200 Block of PAGE ST,SF,94117,B05,21,4251,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7717293101583, -122.441377954936)",133310205-E36 -121680403,E16,12055915,Medical Incident,06/16/2012,06/16/2012,06/16/2012 09:49:32 PM,06/16/2012 09:49:55 PM,06/16/2012 09:50:59 PM,06/16/2012 09:52:56 PM,06/16/2012 09:56:29 PM,04/25/2016 01:58:10 PM,04/25/2016 01:58:10 PM,Other,06/16/2012 10:03:32 PM,3100 Block of LYON ST,SF,94123,B04,16,4326,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7998636121859, -122.447470967489)",121680403-E16 -110140193,B02,11004656,Alarms,01/14/2011,01/14/2011,01/14/2011 02:12:51 PM,01/14/2011 02:15:24 PM,01/14/2011 02:15:36 PM,01/14/2011 02:16:19 PM,01/14/2011 02:19:51 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 02:34:07 PM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,3,3,false,,1,CHIEF,3,2,8,Mission,"(37.766322531621, -122.424723870424)",110140193-B02 -123030166,E08,12100494,Medical Incident,10/29/2012,10/28/2012,10/29/2012 06:34:21 AM,10/29/2012 06:34:55 AM,10/29/2012 06:35:49 AM,10/29/2012 06:38:39 AM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/29/2012 06:44:11 AM,700 Block of 4TH ST,SF,94107,B03,8,2224,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Mission Bay,"(37.7766724490311, -122.394557370624)",123030166-E08 -122210278,T12,12073344,Other,08/08/2012,08/08/2012,08/08/2012 05:53:08 PM,08/08/2012 05:53:18 PM,08/08/2012 05:53:32 PM,08/08/2012 05:54:26 PM,08/08/2012 06:01:29 PM,04/25/2016 01:57:20 PM,04/25/2016 01:57:20 PM,Other,08/08/2012 06:10:37 PM,100 Block of SAINT GERMAIN AVE,SF,94114,B05,20,5262,3,3,3,false,Alarm,1,TRUCK,2,5,7,Twin Peaks,"(37.7574611272384, -122.451170334224)",122210278-T12 -132080138,RC2,13070362,Medical Incident,07/27/2013,07/27/2013,07/27/2013 11:00:53 AM,07/27/2013 11:01:24 AM,07/27/2013 11:05:40 AM,04/25/2016 01:51:36 PM,07/27/2013 11:13:29 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/27/2013 11:13:36 AM,2400 Block of 32ND AVE,SF,94116,B08,18,7546,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,4,Sunset/Parkside,"(37.7415063192431, -122.489486072568)",132080138-RC2 -102920220,E12,10093145,Structure Fire,10/19/2010,10/19/2010,10/19/2010 02:33:41 PM,10/19/2010 02:33:41 PM,10/19/2010 02:34:22 PM,10/19/2010 02:35:21 PM,10/19/2010 02:36:36 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Fire,10/19/2010 02:45:26 PM,100 Block of GRATTAN ST,SF,94117,B05,12,516,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7638803864645, -122.450310275747)",102920220-E12 -120930058,E14,12030707,Medical Incident,04/02/2012,04/01/2012,04/02/2012 07:10:00 AM,04/02/2012 07:10:53 AM,04/02/2012 07:11:35 AM,04/02/2012 07:12:34 AM,04/02/2012 07:14:50 AM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Other,04/02/2012 07:31:42 AM,400 Block of 20TH AVE,SF,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7793682984654, -122.479380963947)",120930058-E14 -112580015,E07,11084914,Citizen Assist / Service Call,09/15/2011,09/14/2011,09/15/2011 01:23:58 AM,09/15/2011 01:24:32 AM,09/15/2011 01:24:42 AM,09/15/2011 01:27:02 AM,09/15/2011 01:31:34 AM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Fire,09/15/2011 01:32:28 AM,20TH ST/POTRERO AV,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7593654899942, -122.406946874696)",112580015-E07 -121060254,FB1,12035196,Outside Fire,04/15/2012,04/15/2012,04/15/2012 04:19:53 PM,04/15/2012 04:19:53 PM,04/15/2012 04:20:06 PM,04/15/2012 04:23:27 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,04/25/2016 01:59:09 PM,Other,04/15/2012 04:25:33 PM,100 Block of CARGO WAY,SF,94124,B10,25,994,3,3,3,false,Alarm,1,SUPPORT,4,10,10,Bayview Hunters Point,"(37.7420919993497, -122.379931669849)",121060254-FB1 -111190254,T17,11039317,Alarms,04/29/2011,04/29/2011,04/29/2011 05:23:08 PM,04/29/2011 05:24:27 PM,04/29/2011 05:25:12 PM,04/29/2011 05:26:53 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 05:30:41 PM,1100 Block of GILMAN AVE,SF,94124,B10,17,6613,3,3,3,false,,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7197791000327, -122.390985214053)",111190254-T17 -131170069,E13,13039265,Alarms,04/27/2013,04/26/2013,04/27/2013 07:35:42 AM,04/27/2013 07:37:46 AM,04/27/2013 07:37:54 AM,04/27/2013 07:39:01 AM,04/27/2013 07:41:33 AM,04/25/2016 01:53:06 PM,04/25/2016 01:53:06 PM,Other,04/27/2013 07:53:42 AM,500 Block of MARKET ST,SF,94105,B03,1,2144,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",131170069-E13 -113380011,79,11111855,Medical Incident,12/04/2011,12/03/2011,12/04/2011 12:39:10 AM,12/04/2011 12:39:39 AM,12/04/2011 12:40:31 AM,12/04/2011 12:41:24 AM,12/04/2011 12:55:01 AM,12/04/2011 01:04:10 AM,12/04/2011 01:16:50 AM,Code 2 Transport,12/04/2011 01:39:05 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",113380011-79 -113470217,RS2,11115130,Structure Fire,12/13/2011,12/13/2011,12/13/2011 01:02:05 PM,12/13/2011 01:03:19 PM,12/13/2011 01:03:31 PM,12/13/2011 01:05:10 PM,12/13/2011 01:09:17 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,Other,12/13/2011 01:09:53 PM,100 Block of ELLERT ST,SF,94110,B06,32,5742,3,3,3,false,,1,RESCUE SQUAD,5,6,9,Bernal Heights,"(37.7384112563215, -122.417199146201)",113470217-RS2 -133010043,E29,13102170,Medical Incident,10/28/2013,10/27/2013,10/28/2013 05:53:54 AM,10/28/2013 05:55:43 AM,10/28/2013 05:58:16 AM,10/28/2013 06:00:33 AM,10/28/2013 06:03:24 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 06:17:37 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7777903094246, -122.412834332129)",133010043-E29 -140810320,E01,14027485,Traffic Collision,03/22/2014,03/22/2014,03/22/2014 07:59:27 PM,03/22/2014 08:01:48 PM,03/22/2014 08:03:22 PM,03/22/2014 08:03:22 PM,03/22/2014 08:03:44 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Patient Declined Transport,03/22/2014 08:05:06 PM,5TH ST/MARKET ST,SAN FRANCISCO,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",140810320-E01 -160063375,86,16002585,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:19:55 PM,01/06/2016 08:20:53 PM,01/06/2016 08:21:40 PM,01/06/2016 08:21:55 PM,01/06/2016 08:31:33 PM,01/06/2016 09:01:46 PM,01/06/2016 09:20:27 PM,Code 2 Transport,01/06/2016 10:12:27 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160063375-86 -122030151,KM09,12067438,Medical Incident,07/21/2012,07/21/2012,07/21/2012 11:19:22 AM,07/21/2012 11:22:06 AM,07/21/2012 11:22:52 AM,07/21/2012 11:24:07 AM,07/21/2012 11:36:19 AM,07/21/2012 11:49:25 AM,07/21/2012 11:59:39 AM,Code 2 Transport,07/21/2012 12:39:46 PM,300 Block of CLAY ST,SF,94111,B01,13,1161,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7950325941141, -122.399739729147)",122030151-KM09 -160130428,71,16005062,Medical Incident,01/13/2016,01/12/2016,01/13/2016 05:34:36 AM,01/13/2016 05:35:03 AM,01/13/2016 05:35:43 AM,01/13/2016 05:35:55 AM,01/13/2016 05:46:33 AM,01/13/2016 06:12:11 AM,01/13/2016 06:12:18 AM,Code 2 Transport,01/13/2016 06:45:10 AM,1200 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",160130428-71 -131840304,KM01,13062794,Medical Incident,07/03/2013,07/03/2013,07/03/2013 05:52:53 PM,07/03/2013 05:53:46 PM,07/03/2013 05:54:40 PM,07/03/2013 05:56:00 PM,07/03/2013 06:04:54 PM,07/03/2013 06:19:32 PM,07/03/2013 06:31:43 PM,Code 2 Transport,07/03/2013 07:04:17 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",131840304-KM01 -120160123,E39,12005362,Medical Incident,01/16/2012,01/16/2012,01/16/2012 11:25:31 AM,01/16/2012 11:26:01 AM,01/16/2012 11:26:46 AM,01/16/2012 11:27:25 AM,01/16/2012 11:33:11 AM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/16/2012 11:47:24 AM,500 Block of TERESITA BLVD,SF,94127,B09,39,8654,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.738002083532, -122.446449647871)",120160123-E39 -160690265,53,16027312,Medical Incident,03/09/2016,03/08/2016,03/09/2016 02:57:05 AM,03/09/2016 02:57:05 AM,03/09/2016 02:58:14 AM,03/09/2016 02:59:45 AM,03/09/2016 03:03:45 AM,03/09/2016 03:09:50 AM,03/09/2016 03:20:52 AM,Code 2 Transport,03/09/2016 03:38:49 AM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",160690265-53 -132140299,92,13072361,Medical Incident,08/02/2013,08/02/2013,08/02/2013 06:19:03 PM,08/02/2013 06:21:09 PM,08/02/2013 06:21:28 PM,08/02/2013 06:21:38 PM,08/02/2013 06:30:03 PM,08/02/2013 06:42:58 PM,08/02/2013 06:48:22 PM,Code 2 Transport,08/02/2013 07:00:01 PM,0 Block of COLLINGWOOD ST,SF,94114,B05,6,5415,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7614765846451, -122.436246937814)",132140299-92 -120570057,65,12018700,Citizen Assist / Service Call,02/26/2012,02/25/2012,02/26/2012 03:08:11 AM,02/26/2012 03:09:22 AM,02/26/2012 03:09:30 AM,02/26/2012 03:17:47 AM,02/26/2012 03:25:23 AM,02/26/2012 03:56:54 AM,02/26/2012 04:13:40 AM,Code 2 Transport,02/26/2012 04:55:44 AM,1900 Block of 21ST AVE,SF,94116,B08,40,7432,3,3,3,true,Alarm,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7513518688952, -122.478350883784)",120570057-65 -113510007,AM10,11116326,Medical Incident,12/17/2011,12/16/2011,12/17/2011 12:19:33 AM,12/17/2011 12:19:33 AM,12/17/2011 12:20:05 AM,12/17/2011 12:29:14 AM,12/17/2011 12:39:24 AM,12/17/2011 12:50:28 AM,12/17/2011 01:06:59 AM,Code 2 Transport,12/17/2011 01:21:39 AM,500 Block of MONTEREY BLVD,SF,94127,B09,15,8235,3,2,2,false,,1,PRIVATE,3,9,7,West of Twin Peaks,"(37.7316434245908, -122.448078912384)",113510007-AM10 -112980305,T05,11098953,Structure Fire,10/25/2011,10/25/2011,10/25/2011 06:06:19 PM,10/25/2011 06:06:40 PM,10/25/2011 06:06:59 PM,10/25/2011 06:08:04 PM,10/25/2011 06:30:03 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 06:30:04 PM,1700 Block of BUCHANAN ST,SF,94115,B04,38,3433,3,3,3,false,,1,TRUCK,9,4,5,Japantown,"(37.7860248694299, -122.429949040947)",112980305-T05 -140530023,E05,14017808,Outside Fire,02/22/2014,02/21/2014,02/22/2014 01:20:10 AM,02/22/2014 01:21:57 AM,02/22/2014 01:22:05 AM,02/22/2014 01:24:01 AM,02/22/2014 01:25:35 AM,04/25/2016 01:48:05 PM,04/25/2016 01:48:05 PM,Fire,02/22/2014 01:32:19 AM,EDDY ST/GOUGH ST,SF,94109,B02,5,3262,3,3,3,true,Fire,1,ENGINE,1,2,5,Western Addition,"(37.7824770505897, -122.424108201912)",140530023-E05 -133510441,E22,13119410,Medical Incident,12/17/2013,12/17/2013,12/17/2013 11:30:32 PM,12/17/2013 11:31:14 PM,12/17/2013 11:31:42 PM,12/17/2013 11:33:36 PM,12/17/2013 11:36:45 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/17/2013 11:52:23 PM,1800 Block of 9TH AVE,SF,94122,B08,22,7336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7537831979209, -122.465528559203)",133510441-E22 -122040176,E15,12067805,Medical Incident,07/22/2012,07/22/2012,07/22/2012 12:10:40 PM,07/22/2012 12:14:27 PM,07/22/2012 12:14:48 PM,07/22/2012 12:19:54 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,04/25/2016 01:57:36 PM,Other,07/22/2012 12:20:06 PM,400 Block of URBANO DR,SF,94127,B09,19,8445,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7246459835787, -122.47014141859)",122040176-E15 -110790291,KM12,11026133,Medical Incident,03/20/2011,03/20/2011,03/20/2011 05:40:51 PM,03/20/2011 05:41:21 PM,03/20/2011 05:42:44 PM,03/20/2011 05:43:15 PM,03/20/2011 05:45:42 PM,03/20/2011 06:10:09 PM,03/20/2011 06:25:55 PM,Code 3 Transport,03/20/2011 06:30:52 PM,14TH ST/FOLSOM ST,SF,94103,B02,7,5216,3,E,3,false,,1,PRIVATE,1,2,9,Mission,"(37.7685373884214, -122.415613781366)",110790291-KM12 -140280282,T16,14009611,Structure Fire,01/28/2014,01/28/2014,01/28/2014 04:41:10 PM,01/28/2014 04:42:20 PM,01/28/2014 04:43:16 PM,01/28/2014 04:44:47 PM,01/28/2014 04:46:04 PM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/28/2014 05:36:51 PM,0 Block of TOLEDO WAY,SF,94123,B04,16,3565,,3,3,false,Alarm,1,TRUCK,1,4,2,Marina,"(37.8011950731509, -122.438465461238)",140280282-T16 -140960086,93,14032229,Medical Incident,04/06/2014,04/05/2014,04/06/2014 05:43:15 AM,04/06/2014 05:43:43 AM,04/06/2014 05:44:15 AM,04/06/2014 05:44:55 AM,04/06/2014 05:51:03 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,No Merit,04/06/2014 05:54:05 AM,1200 Block of TURK ST,SAN FRANCISCO,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",140960086-93 -160341711,AM14,16013381,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:55:01 PM,02/03/2016 12:56:58 PM,02/03/2016 12:59:18 PM,02/03/2016 12:59:18 PM,02/03/2016 01:14:47 PM,02/03/2016 01:23:53 PM,02/03/2016 01:43:59 PM,Code 2 Transport,02/03/2016 02:28:14 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160341711-AM14 -110440343,86,11014765,Medical Incident,02/13/2011,02/13/2011,02/13/2011 10:28:26 PM,02/13/2011 10:28:42 PM,02/13/2011 10:29:04 PM,02/13/2011 10:29:14 PM,02/13/2011 10:32:10 PM,02/13/2011 10:42:15 PM,02/13/2011 10:44:40 PM,Code 2 Transport,02/13/2011 11:15:03 PM,24TH ST/POTRERO AV,SF,94110,B10,37,2554,2,2,2,true,,1,MEDIC,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",110440343-86 -160722325,78,16028662,Medical Incident,03/12/2016,03/12/2016,03/12/2016 04:41:27 PM,03/12/2016 04:41:27 PM,03/12/2016 04:43:17 PM,03/12/2016 04:43:45 PM,03/12/2016 04:47:13 PM,03/12/2016 04:54:32 PM,03/12/2016 05:30:08 PM,Code 2 Transport,03/12/2016 05:59:34 PM,1000 Block of HARRISON ST,San Francisco,94103,B03,8,2254,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7770983962506, -122.404388964595)",160722325-78 -132570153,T05,13086884,Elevator / Escalator Rescue,09/14/2013,09/14/2013,09/14/2013 10:38:21 AM,09/14/2013 10:40:05 AM,09/14/2013 10:40:17 AM,09/14/2013 10:47:05 AM,09/14/2013 10:51:42 AM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Fire,09/14/2013 11:07:34 AM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",132570153-T05 -123450098,T06,12115265,Structure Fire,12/10/2012,12/10/2012,12/10/2012 08:36:15 AM,12/10/2012 08:36:16 AM,12/10/2012 08:36:32 AM,12/10/2012 08:38:15 AM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/10/2012 08:41:45 AM,14TH ST/MISSION ST,SF,94103,B02,36,5215,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7682736543413, -122.419981513232)",123450098-T06 -140880136,E03,14029606,Medical Incident,03/29/2014,03/29/2014,03/29/2014 11:04:25 AM,03/29/2014 11:05:18 AM,03/29/2014 11:05:29 AM,03/29/2014 11:06:01 AM,03/29/2014 11:08:51 AM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,No Merit,03/29/2014 11:13:02 AM,200 Block of MCALLISTER ST,SAN FRANCISCO,94102,B02,3,1553,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",140880136-E03 -111120012,82,11036855,Medical Incident,04/22/2011,04/21/2011,04/22/2011 12:44:47 AM,04/22/2011 12:44:47 AM,04/22/2011 12:46:51 AM,04/22/2011 12:47:07 AM,04/22/2011 12:52:07 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Patient Declined Transport,04/22/2011 01:25:56 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",111120012-82 -160601440,KM08,16023881,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:39:25 AM,02/29/2016 11:40:51 AM,02/29/2016 11:41:12 AM,02/29/2016 11:41:52 AM,02/29/2016 11:45:52 AM,02/29/2016 12:02:46 PM,02/29/2016 12:34:13 PM,Code 2 Transport,02/29/2016 12:59:57 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160601440-KM08 -121160081,T02,12038364,Medical Incident,04/25/2012,04/25/2012,04/25/2012 08:41:13 AM,04/25/2012 08:42:12 AM,04/25/2012 08:42:23 AM,04/25/2012 08:43:56 AM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/25/2012 08:49:06 AM,CALIFORNIA ST/DRUMM ST,SF,94111,B01,13,1134,3,1,2,false,Non Life-threatening,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7936637772453, -122.396390415025)",121160081-T02 -113200223,E36,11106306,Structure Fire,11/16/2011,11/16/2011,11/16/2011 01:47:21 PM,11/16/2011 01:47:45 PM,11/16/2011 01:48:54 PM,11/16/2011 01:49:41 PM,11/16/2011 01:52:13 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 02:07:28 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,5,3,6,South of Market,"(37.7811458612596, -122.409026046516)",113200223-E36 -160011026,67,16000190,Medical Incident,01/01/2016,12/31/2015,01/01/2016 04:43:16 AM,01/01/2016 04:44:57 AM,01/01/2016 04:45:36 AM,01/01/2016 04:45:45 AM,01/01/2016 05:10:33 AM,01/01/2016 05:10:35 AM,01/01/2016 05:21:14 AM,Code 2 Transport,01/01/2016 05:58:39 AM,800 Block of 32ND AVE,San Francisco,94121,B07,14,7242,3,3,3,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7731638886859, -122.491686815577)",160011026-67 -123440327,E31,12115118,Medical Incident,12/09/2012,12/09/2012,12/09/2012 07:29:04 PM,12/09/2012 07:31:03 PM,12/09/2012 07:31:55 PM,12/09/2012 07:33:10 PM,12/09/2012 07:35:22 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Other,12/09/2012 07:46:08 PM,1700 Block of BALBOA ST,SF,94121,B07,31,7157,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7766744230881, -122.477503029321)",123440327-E31 -102930035,B02,10093327,Structure Fire,10/20/2010,10/19/2010,10/20/2010 05:05:37 AM,10/20/2010 05:06:01 AM,10/20/2010 05:06:47 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 08:06:26 AM,800 Block of HYDE ST,SF,94109,B04,3,1557,3,3,3,false,,4,CHIEF,56,4,3,Nob Hill,"(37.7886527895166, -122.416853689502)",102930035-B02 -111420192,RC2,11047191,Medical Incident,05/22/2011,05/22/2011,05/22/2011 12:21:10 PM,05/22/2011 12:21:45 PM,05/22/2011 12:21:59 PM,05/22/2011 12:23:50 PM,05/22/2011 12:27:59 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,Other,05/22/2011 12:44:32 PM,100 Block of STOW LAKE DR,SF,94118,B07,22,7158,3,3,3,true,,1,RESCUE CAPTAIN,2,7,1,Golden Gate Park,"(37.7697458272649, -122.472717967103)",111420192-RC2 -102240339,B01,10070680,Alarms,08/12/2010,08/12/2010,08/12/2010 10:11:42 PM,08/12/2010 10:14:25 PM,08/12/2010 10:14:36 PM,04/25/2016 02:09:06 PM,08/12/2010 10:15:48 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,No Merit,08/12/2010 10:22:54 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,CHIEF,1,1,3,Nob Hill,"(37.7908027242584, -122.410799552417)",102240339-B01 -140840306,E07,14028418,Medical Incident,03/25/2014,03/25/2014,03/25/2014 07:40:18 PM,03/25/2014 07:41:03 PM,03/25/2014 07:41:43 PM,03/25/2014 07:42:53 PM,03/25/2014 07:44:49 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/25/2014 07:46:32 PM,2000 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",140840306-E07 -160183247,70,16007395,Medical Incident,01/18/2016,01/18/2016,01/18/2016 09:37:14 PM,01/18/2016 09:39:34 PM,01/18/2016 09:39:46 PM,01/18/2016 09:39:55 PM,01/18/2016 09:44:32 PM,01/18/2016 09:57:39 PM,01/18/2016 10:09:28 PM,Code 2 Transport,01/18/2016 10:49:50 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7622701739914, -122.419470488515)",160183247-70 -130340406,KM07,13011817,Medical Incident,02/03/2013,02/03/2013,02/03/2013 11:14:06 PM,02/03/2013 11:16:38 PM,02/03/2013 11:16:49 PM,02/03/2013 11:19:09 PM,02/03/2013 11:21:01 PM,02/03/2013 11:39:02 PM,02/03/2013 11:54:07 PM,Code 3 Transport,02/04/2013 12:29:35 AM,100 Block of 28TH ST,SF,94131,B06,11,5562,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7453123454481, -122.425675416499)",130340406-KM07 -121730155,77,12057418,Medical Incident,06/21/2012,06/21/2012,06/21/2012 10:57:05 AM,06/21/2012 10:58:34 AM,06/21/2012 11:00:38 AM,06/21/2012 11:01:29 AM,06/21/2012 11:07:48 AM,06/21/2012 11:29:19 AM,06/21/2012 11:31:12 AM,Code 3 Transport,06/21/2012 12:14:31 PM,2600 Block of BRYANT ST,SF,94110,B06,9,5532,2,E,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7519940443041, -122.4091228581)",121730155-77 -130600162,E16,13020101,Medical Incident,03/01/2013,03/01/2013,03/01/2013 11:55:29 AM,03/01/2013 11:56:56 AM,03/01/2013 12:00:16 PM,03/01/2013 12:01:32 PM,03/01/2013 12:03:21 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 12:12:19 PM,WEBSTER ST/BROMLEY PL,SF,94115,B04,38,3465,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.793119406637, -122.432999598029)",130600162-E16 -102940315,D2,10093869,Structure Fire,10/21/2010,10/21/2010,10/21/2010 08:10:14 PM,10/21/2010 08:13:58 PM,10/21/2010 08:14:13 PM,10/21/2010 08:14:43 PM,10/21/2010 08:18:07 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Fire,10/21/2010 08:32:44 PM,1600 Block of BROADWAY,SF,94123,B04,41,3152,3,3,3,false,,1,CHIEF,7,4,2,Pacific Heights,"(37.7956860710912, -122.42424620746)",102940315-D2 -102440215,68,10077002,Medical Incident,09/01/2010,09/01/2010,09/01/2010 01:13:20 PM,09/01/2010 01:13:42 PM,09/01/2010 01:21:08 PM,09/01/2010 01:21:16 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,09/01/2010 01:23:14 PM,15TH ST/POTRERO AV,SF,94103,B02,29,2351,3,2,2,true,,1,MEDIC,1,2,10,Mission,"(37.7670819828491, -122.407685033247)",102440215-68 -103630153,54,10116423,Medical Incident,12/29/2010,12/29/2010,12/29/2010 12:38:03 PM,12/29/2010 12:39:44 PM,12/29/2010 12:41:24 PM,12/29/2010 12:41:50 PM,12/29/2010 01:07:58 PM,12/29/2010 01:08:59 PM,12/29/2010 01:15:15 PM,Code 2 Transport,12/29/2010 01:34:00 PM,300 Block of 5TH AVE,SF,94118,B07,31,7124,2,2,2,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.7820328555271, -122.463211509933)",103630153-54 -160211931,77,16008396,Medical Incident,01/21/2016,01/21/2016,01/21/2016 01:26:03 PM,01/21/2016 01:26:03 PM,01/21/2016 01:26:26 PM,01/21/2016 01:26:34 PM,01/21/2016 01:29:33 PM,01/21/2016 01:56:36 PM,01/21/2016 02:05:33 PM,Code 2 Transport,01/21/2016 03:03:06 PM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160211931-77 -133340066,77,13113148,Medical Incident,11/30/2013,11/29/2013,11/30/2013 06:40:40 AM,11/30/2013 06:42:16 AM,11/30/2013 06:43:02 AM,11/30/2013 06:43:34 AM,11/30/2013 06:53:59 AM,11/30/2013 06:59:09 AM,11/30/2013 07:15:04 AM,Code 2 Transport,11/30/2013 07:38:38 AM,TURK ST/HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",133340066-77 -160440589,53,16017588,Medical Incident,02/13/2016,02/12/2016,02/13/2016 05:45:23 AM,02/13/2016 05:46:41 AM,02/13/2016 05:46:57 AM,02/13/2016 05:47:08 AM,02/13/2016 05:49:56 AM,02/13/2016 06:10:07 AM,02/13/2016 06:15:06 AM,Code 2 Transport,02/13/2016 07:10:36 AM,400 Block of SHRADER ST,San Francisco,94117,B05,12,4544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.77078004571, -122.452080187765)",160440589-53 -112980394,RC3,11099032,Structure Fire,10/25/2011,10/25/2011,10/25/2011 10:14:41 PM,10/25/2011 10:17:31 PM,10/25/2011 10:18:02 PM,10/25/2011 10:19:27 PM,10/25/2011 10:24:48 PM,04/25/2016 02:01:58 PM,04/25/2016 02:01:58 PM,Other,10/25/2011 10:26:32 PM,100 Block of YUKON ST,SF,94114,B06,24,5266,3,3,3,true,,1,RESCUE CAPTAIN,2,6,8,Twin Peaks,"(37.7571718335026, -122.442254011196)",112980394-RC3 -113250160,RC2,11107904,Medical Incident,11/21/2011,11/21/2011,11/21/2011 11:52:14 AM,11/21/2011 11:53:54 AM,11/21/2011 11:54:03 AM,04/25/2016 02:01:32 PM,11/21/2011 11:56:28 AM,04/25/2016 02:01:32 PM,04/25/2016 02:01:32 PM,Other,11/21/2011 12:18:12 PM,700 Block of 24TH AVE,SF,94121,B07,14,7212,3,2,2,true,,1,RESCUE CAPTAIN,1,7,1,Outer Richmond,"(37.7754214554732, -122.483253320428)",113250160-RC2 -112500087,B01,11082396,Alarms,09/07/2011,09/07/2011,09/07/2011 08:52:35 AM,09/07/2011 08:53:26 AM,09/07/2011 08:54:18 AM,09/07/2011 08:55:44 AM,09/07/2011 08:58:00 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 09:00:09 AM,1700 Block of GREEN ST,SF,94123,B01,38,3246,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.797150187503, -122.427913713585)",112500087-B01 -132200243,86,13074362,Other,08/08/2013,08/08/2013,08/08/2013 04:23:51 PM,08/08/2013 04:24:19 PM,08/08/2013 04:26:07 PM,08/08/2013 04:26:20 PM,08/08/2013 04:30:32 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 05:38:58 PM,400 Block of 3RD ST,SF,94107,B03,8,2174,3,3,3,true,Alarm,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7823750775991, -122.397064398742)",132200243-86 -102740325,T01,10087124,Alarms,10/01/2010,10/01/2010,10/01/2010 07:28:32 PM,10/01/2010 07:29:06 PM,10/01/2010 07:29:19 PM,10/01/2010 07:30:46 PM,10/01/2010 07:32:51 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 07:35:39 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",102740325-T01 -160893744,62,16035500,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:48:05 PM,03/29/2016 09:48:05 PM,03/29/2016 09:48:25 PM,03/29/2016 09:48:33 PM,03/29/2016 09:49:53 PM,03/29/2016 10:13:32 PM,03/29/2016 10:30:34 PM,Code 2 Transport,03/29/2016 10:56:54 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160893744-62 -111920395,E05,11063560,Medical Incident,07/11/2011,07/11/2011,07/11/2011 11:16:45 PM,07/11/2011 11:17:15 PM,07/11/2011 11:17:43 PM,07/11/2011 11:18:27 PM,07/11/2011 11:20:14 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 11:37:36 PM,500 Block of WEBSTER ST,SF,94102,B02,5,3522,3,E,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7753529596691, -122.429344544489)",111920395-E05 -160242126,KM05,16009571,Medical Incident,01/24/2016,01/24/2016,01/24/2016 03:26:01 PM,01/24/2016 03:28:27 PM,01/24/2016 03:29:00 PM,01/24/2016 03:29:27 PM,01/24/2016 03:45:01 PM,01/24/2016 04:06:45 PM,01/24/2016 04:16:34 PM,Code 2 Transport,01/24/2016 04:53:23 PM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",160242126-KM05 -132470147,E03,13083298,Medical Incident,09/04/2013,09/04/2013,09/04/2013 10:51:58 AM,09/04/2013 10:52:12 AM,09/04/2013 10:52:31 AM,09/04/2013 10:54:37 AM,09/04/2013 10:56:48 AM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 10:56:57 AM,EDDY ST/JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",132470147-E03 -121350173,83,12044884,Medical Incident,05/14/2012,05/14/2012,05/14/2012 12:30:32 PM,05/14/2012 12:32:03 PM,05/14/2012 12:32:37 PM,05/14/2012 12:32:50 PM,04/25/2016 01:58:41 PM,05/14/2012 12:47:55 PM,05/14/2012 01:08:10 PM,Code 2 Transport,05/14/2012 01:26:00 PM,OFARRELL ST/VAN NESS AV,SF,94109,B04,3,3162,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Tenderloin,"(37.7847534452343, -122.421192975223)",121350173-83 -160502680,KM11,16020180,Medical Incident,02/19/2016,02/19/2016,02/19/2016 05:09:19 PM,02/19/2016 05:09:41 PM,02/19/2016 05:10:28 PM,02/19/2016 05:11:06 PM,02/19/2016 05:25:19 PM,02/19/2016 05:51:38 PM,02/19/2016 06:26:02 PM,Code 2 Transport,02/19/2016 07:03:40 PM,1300 Block of 45TH AV,San Francisco,94122,B08,23,7655,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7614051603232, -122.504853112286)",160502680-KM11 -140610292,67,14020741,Medical Incident,03/02/2014,03/02/2014,03/02/2014 07:50:33 PM,03/02/2014 07:51:48 PM,03/02/2014 07:52:38 PM,03/02/2014 07:52:47 PM,03/02/2014 08:04:03 PM,03/02/2014 08:09:45 PM,03/02/2014 08:27:57 PM,Code 2 Transport,03/02/2014 09:03:05 PM,ULLOA ST/WEST PORTAL AV,SF,94127,B08,39,8611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7408919760876, -122.465829021907)",140610292-67 -130790363,E03,13026559,Medical Incident,03/20/2013,03/20/2013,03/20/2013 09:42:53 PM,03/20/2013 09:44:17 PM,03/20/2013 09:45:43 PM,03/20/2013 09:46:12 PM,03/20/2013 09:47:49 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 09:59:20 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",130790363-E03 -112900179,68,11096209,Medical Incident,10/17/2011,10/17/2011,10/17/2011 12:50:25 PM,10/17/2011 12:52:19 PM,10/17/2011 12:52:31 PM,10/17/2011 12:52:58 PM,10/17/2011 12:55:55 PM,10/17/2011 01:15:11 PM,10/17/2011 01:51:37 PM,Code 2 Transport,10/17/2011 02:07:23 PM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,true,,1,MEDIC,2,4,2,Pacific Heights,"(37.7915320518223, -122.424182651752)",112900179-68 -160030775,71,16001093,Medical Incident,01/03/2016,01/02/2016,01/03/2016 07:54:42 AM,01/03/2016 07:54:59 AM,01/03/2016 07:56:04 AM,01/03/2016 07:56:42 AM,01/03/2016 08:03:11 AM,01/03/2016 08:21:54 AM,01/03/2016 08:27:48 AM,Code 2 Transport,01/03/2016 09:15:48 AM,2700 Block of CALIFORNIA ST,San Francisco,94115,B04,38,4125,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7882270245748, -122.439617640821)",160030775-71 -132980315,B02,13101315,Alarms,10/25/2013,10/25/2013,10/25/2013 06:06:56 PM,10/25/2013 06:08:09 PM,10/25/2013 06:08:58 PM,10/25/2013 06:09:49 PM,10/25/2013 06:12:52 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 06:14:27 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,1,2,6,Tenderloin,"(37.7829534931348, -122.413243748735)",132980315-B02 -103420234,77,10109507,Medical Incident,12/08/2010,12/08/2010,12/08/2010 01:48:47 PM,12/08/2010 01:49:25 PM,12/08/2010 01:51:49 PM,12/08/2010 01:52:16 PM,12/08/2010 02:04:15 PM,12/08/2010 02:07:20 PM,12/08/2010 02:34:14 PM,Code 2 Transport,12/08/2010 02:56:33 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",103420234-77 -120060073,E36,12001981,Alarms,01/06/2012,01/05/2012,01/06/2012 07:09:53 AM,01/06/2012 07:10:32 AM,01/06/2012 07:10:53 AM,01/06/2012 07:11:48 AM,01/06/2012 07:14:15 AM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/06/2012 07:22:15 AM,1200 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7770436202636, -122.413583483648)",120060073-E36 -140970417,E03,14032858,Medical Incident,04/07/2014,04/07/2014,04/07/2014 09:20:43 PM,04/07/2014 09:22:18 PM,04/07/2014 09:22:45 PM,04/07/2014 09:23:42 PM,04/07/2014 09:25:50 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Code 2 Transport,04/07/2014 09:34:33 PM,400 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",140970417-E03 -130460363,E01,13015754,Medical Incident,02/15/2013,02/15/2013,02/15/2013 06:37:10 PM,02/15/2013 06:38:16 PM,02/15/2013 06:38:28 PM,02/15/2013 06:39:36 PM,02/15/2013 06:43:25 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 06:50:36 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",130460363-E01 -111960354,59,11064858,Medical Incident,07/15/2011,07/15/2011,07/15/2011 11:18:25 PM,07/15/2011 11:19:59 PM,07/15/2011 11:20:32 PM,07/15/2011 11:21:24 PM,07/15/2011 11:31:41 PM,07/15/2011 11:41:53 PM,07/15/2011 11:50:01 PM,Code 2 Transport,07/16/2011 12:13:58 AM,600 Block of 21ST AVE,SF,94121,B07,14,7171,1,1,2,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7755618197735, -122.480176764762)",111960354-59 -111300258,E03,11043028,Medical Incident,05/10/2011,05/10/2011,05/10/2011 04:26:38 PM,05/10/2011 04:27:14 PM,05/10/2011 04:28:02 PM,05/10/2011 04:28:47 PM,05/10/2011 04:31:08 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 04:42:34 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",111300258-E03 -130870283,E35,13029101,Traffic Collision,03/28/2013,03/28/2013,03/28/2013 05:43:03 PM,03/28/2013 05:43:52 PM,03/28/2013 05:44:32 PM,03/28/2013 05:44:49 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 05:47:32 PM,0 Block of FREMONT ST,SF,94105,B03,35,2116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",130870283-E35 -160100720,52,16003945,Medical Incident,01/10/2016,01/09/2016,01/10/2016 07:33:01 AM,01/10/2016 07:34:59 AM,01/10/2016 07:35:20 AM,01/10/2016 07:35:28 AM,01/10/2016 07:49:16 AM,01/10/2016 08:16:01 AM,01/10/2016 08:33:33 AM,Code 2 Transport,01/10/2016 08:58:56 AM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",160100720-52 -111520120,E05,11050248,Medical Incident,06/01/2011,06/01/2011,06/01/2011 10:55:29 AM,06/01/2011 10:55:58 AM,06/01/2011 10:57:34 AM,06/01/2011 10:58:38 AM,06/01/2011 11:00:35 AM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/01/2011 11:33:37 AM,1500 Block of STEINER ST,SF,94115,B04,5,3623,3,3,3,true,,1,ENGINE,1,4,5,Western Addition,"(37.7836259697111, -122.434387879259)",111520120-E05 -123360067,T14,12111623,Other,12/01/2012,11/30/2012,12/01/2012 07:00:08 AM,12/01/2012 07:00:55 AM,12/01/2012 07:01:12 AM,12/01/2012 07:03:35 AM,12/01/2012 07:07:37 AM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,12/01/2012 07:20:48 AM,PARK PRESIDIO BL/GEARY BL,SF,94118,B07,31,7146,3,3,3,true,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",123360067-T14 -111760207,E38,11058029,Medical Incident,06/25/2011,06/25/2011,06/25/2011 01:58:47 PM,06/25/2011 01:58:58 PM,06/25/2011 02:00:24 PM,06/25/2011 02:02:11 PM,06/25/2011 02:06:47 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 02:20:16 PM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,2,2,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7915320518223, -122.424182651752)",111760207-E38 -140030312,72,14001151,Medical Incident,01/03/2014,01/03/2014,01/03/2014 04:33:40 PM,01/03/2014 04:35:11 PM,01/03/2014 04:35:23 PM,01/03/2014 04:35:31 PM,01/03/2014 04:38:16 PM,01/03/2014 04:54:31 PM,01/03/2014 05:00:50 PM,Code 2 Transport,01/03/2014 05:30:16 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",140030312-72 -121720281,E11,12057196,Administrative,06/20/2012,06/20/2012,06/20/2012 06:39:40 PM,06/20/2012 06:39:44 PM,06/20/2012 06:39:49 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 06:40:08 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",121720281-E11 -122560096,T01,12084576,Citizen Assist / Service Call,09/12/2012,09/12/2012,09/12/2012 09:21:18 AM,09/12/2012 09:23:24 AM,09/12/2012 09:23:38 AM,09/12/2012 09:23:53 AM,09/12/2012 09:25:50 AM,04/25/2016 01:56:48 PM,04/25/2016 01:56:48 PM,Fire,09/12/2012 09:33:40 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",122560096-T01 -110610172,B09,11019991,Structure Fire,03/02/2011,03/02/2011,03/02/2011 11:39:14 AM,03/02/2011 11:39:14 AM,03/02/2011 11:39:35 AM,03/02/2011 11:41:18 AM,03/02/2011 11:43:07 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 11:46:14 AM,SAN JOSE AV/NIAGARA AV,SF,94112,B09,15,8312,3,3,3,false,,1,CHIEF,3,9,11,Outer Mission,"(37.7194811206803, -122.447562061428)",110610172-B09 -123360141,KM04,12111685,Traffic Collision,12/01/2012,12/01/2012,12/01/2012 11:08:17 AM,12/01/2012 11:09:28 AM,12/01/2012 11:10:12 AM,12/01/2012 11:10:44 AM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,04/25/2016 01:55:33 PM,Other,12/01/2012 11:14:24 AM,BUSH ST/POLK ST,SF,94109,B04,3,1636,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",123360141-KM04 -160750996,63,16029646,Medical Incident,03/15/2016,03/15/2016,03/15/2016 09:43:49 AM,03/15/2016 09:45:59 AM,03/15/2016 09:47:04 AM,03/15/2016 09:47:13 AM,03/15/2016 10:01:09 AM,03/15/2016 10:06:28 AM,03/15/2016 10:38:23 AM,Code 2 Transport,03/15/2016 10:51:48 AM,1900 Block of SILVER AVE,San Francisco,94124,B10,42,6454,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7354666161568, -122.40069359718)",160750996-63 -122250183,RS1,12074628,Medical Incident,08/12/2012,08/12/2012,08/12/2012 02:08:08 PM,08/12/2012 02:08:30 PM,08/12/2012 02:09:01 PM,08/12/2012 02:10:03 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 02:17:35 PM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",122250183-RS1 -160382805,50,16015327,Medical Incident,02/07/2016,02/07/2016,02/07/2016 06:05:06 PM,02/07/2016 06:06:42 PM,02/07/2016 06:07:14 PM,02/07/2016 06:07:23 PM,02/07/2016 06:11:17 PM,02/07/2016 06:41:29 PM,02/07/2016 06:49:03 PM,Code 2 Transport,02/07/2016 07:11:15 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",160382805-50 -122880317,E43,12095401,Medical Incident,10/14/2012,10/14/2012,10/14/2012 07:21:59 PM,10/14/2012 07:26:00 PM,10/14/2012 07:27:34 PM,10/14/2012 07:28:46 PM,10/14/2012 07:33:20 PM,04/25/2016 01:56:18 PM,04/25/2016 01:56:18 PM,Other,10/14/2012 07:56:16 PM,500 Block of BRUNSWICK ST,SF,94112,B09,43,6218,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7102344068027, -122.444446694511)",122880317-E43 -121410287,E01,12046932,Other,05/20/2012,05/20/2012,05/20/2012 04:03:49 PM,05/20/2012 04:03:49 PM,05/20/2012 04:03:49 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,04/25/2016 01:58:35 PM,Other,04/25/2016 01:58:35 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,5,2,6,South of Market,"(37.7777124404316, -122.412736707425)",121410287-E01 -120790019,E34,12026099,Medical Incident,03/19/2012,03/18/2012,03/19/2012 02:33:03 AM,03/19/2012 02:34:22 AM,03/19/2012 02:35:34 AM,03/19/2012 02:37:00 AM,03/19/2012 02:37:31 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 03:01:27 AM,7600 Block of GEARY BLVD,SF,94121,B07,34,7264,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.779202123681, -122.501331891706)",120790019-E34 -160402069,84,16016069,Medical Incident,02/09/2016,02/09/2016,02/09/2016 02:03:45 PM,02/09/2016 02:05:28 PM,02/09/2016 02:06:01 PM,02/09/2016 02:08:08 PM,02/09/2016 02:24:00 PM,02/09/2016 02:24:01 PM,02/09/2016 02:55:38 PM,Code 2 Transport,02/09/2016 03:23:31 PM,800 Block of CALIFORNIA ST,San Francisco,94108,B01,2,1356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7920560718489, -122.408603297968)",160402069-84 -110710365,E41,11023506,Medical Incident,03/12/2011,03/12/2011,03/12/2011 08:19:43 PM,03/12/2011 08:20:38 PM,03/12/2011 08:20:50 PM,03/12/2011 08:21:58 PM,03/12/2011 08:24:10 PM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/12/2011 08:24:45 PM,1000 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.79172390851, -122.411253828638)",110710365-E41 -160283220,76,16011203,Medical Incident,01/28/2016,01/28/2016,01/28/2016 06:40:00 PM,01/28/2016 06:40:00 PM,01/28/2016 06:41:04 PM,01/28/2016 06:41:15 PM,01/28/2016 07:07:57 PM,01/28/2016 07:28:53 PM,01/28/2016 07:38:57 PM,Code 2 Transport,01/28/2016 08:08:14 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160283220-76 -113080058,E06,11102225,Medical Incident,11/04/2011,11/03/2011,11/04/2011 06:53:54 AM,11/04/2011 06:56:11 AM,11/04/2011 06:57:45 AM,04/25/2016 02:01:49 PM,11/04/2011 07:01:23 AM,04/25/2016 02:01:49 PM,04/25/2016 02:01:49 PM,Fire,11/04/2011 07:33:23 AM,800 Block of 14TH ST,SF,94114,B05,6,5212,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7675497854134, -122.432858989765)",113080058-E06 -160752409,KM15,16029773,Medical Incident,03/15/2016,03/15/2016,03/15/2016 03:24:31 PM,03/15/2016 03:26:21 PM,03/15/2016 03:26:41 PM,03/15/2016 03:27:40 PM,03/15/2016 03:37:04 PM,03/15/2016 03:49:38 PM,03/15/2016 04:00:35 PM,Code 3 Transport,03/15/2016 04:21:57 PM,300 Block of 24TH AVE,San Francisco,94121,B07,14,7214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7830006442599, -122.483939034671)",160752409-KM15 -121740143,KM09,12057732,Medical Incident,06/22/2012,06/22/2012,06/22/2012 12:03:59 PM,06/22/2012 12:04:42 PM,06/22/2012 12:05:48 PM,06/22/2012 12:06:42 PM,06/22/2012 12:14:20 PM,06/22/2012 12:33:51 PM,06/22/2012 12:44:46 PM,Code 2 Transport,06/22/2012 01:27:57 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",121740143-KM09 -133150344,AM18,13107210,Medical Incident,11/11/2013,11/11/2013,11/11/2013 06:37:25 PM,11/11/2013 06:38:34 PM,11/11/2013 06:44:02 PM,04/25/2016 01:49:48 PM,11/11/2013 06:47:50 PM,11/11/2013 07:08:30 PM,11/11/2013 07:37:03 PM,Code 2 Transport,11/11/2013 08:20:38 PM,1000 Block of FELL ST,SF,94117,B05,21,3641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7744305495676, -122.435127733614)",133150344-AM18 -160012287,KM13,16000361,Medical Incident,01/01/2016,01/01/2016,01/01/2016 02:26:47 PM,01/01/2016 02:27:52 PM,01/01/2016 02:29:38 PM,01/01/2016 02:30:05 PM,01/01/2016 02:34:26 PM,01/01/2016 02:56:03 PM,01/01/2016 03:18:25 PM,Code 2 Transport,01/01/2016 03:49:00 PM,800 Block of LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7858627664608, -122.418110537872)",160012287-KM13 -122660066,T01,12087781,Structure Fire,09/22/2012,09/21/2012,09/22/2012 04:20:03 AM,09/22/2012 04:20:48 AM,09/22/2012 04:21:11 AM,09/22/2012 04:23:27 AM,09/22/2012 04:27:52 AM,04/25/2016 01:56:39 PM,04/25/2016 01:56:39 PM,Other,09/22/2012 04:39:50 AM,500 Block of NELSON RISING LN,SF,94158,B03,8,2264,3,3,3,false,Fire,1,TRUCK,8,3,6,Mission Bay,"(37.7696540760545, -122.390263313432)",122660066-T01 -113650319,KM15,11121384,Medical Incident,12/31/2011,12/31/2011,12/31/2011 08:23:50 PM,12/31/2011 08:27:13 PM,12/31/2011 08:27:31 PM,12/31/2011 08:28:15 PM,12/31/2011 08:34:04 PM,12/31/2011 08:50:24 PM,12/31/2011 09:15:17 PM,Code 2 Transport,12/31/2011 09:23:29 PM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,false,,1,PRIVATE,2,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",113650319-KM15 -160530356,KM06,16021063,Medical Incident,02/22/2016,02/21/2016,02/22/2016 05:15:41 AM,02/22/2016 05:15:41 AM,02/22/2016 05:16:21 AM,02/22/2016 05:20:13 AM,02/22/2016 05:20:13 AM,02/22/2016 05:50:14 AM,02/22/2016 06:00:30 AM,Code 2 Transport,02/22/2016 06:40:42 AM,CYRIL MAGNIN ST/OFARRELL ST,San Francisco,94102,B03,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",160530356-KM06 -160431696,87,16017297,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:37:44 PM,02/12/2016 12:49:03 PM,02/12/2016 12:50:02 PM,02/12/2016 12:50:21 PM,02/12/2016 12:55:35 PM,02/12/2016 01:11:17 PM,02/12/2016 01:39:57 PM,Code 2 Transport,02/12/2016 02:19:07 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7197055234678, -122.438684868139)",160431696-87 -103220332,E13,10103337,Structure Fire,11/18/2010,11/18/2010,11/18/2010 11:51:08 PM,11/18/2010 11:51:09 PM,11/18/2010 11:51:15 PM,11/18/2010 11:52:58 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/18/2010 11:54:42 PM,NEW MONTGOMERY ST/MINNA ST,SF,94105,B03,1,2157,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7870107876875, -122.399974961899)",103220332-E13 -110120259,KM11,11004041,Medical Incident,01/12/2011,01/12/2011,01/12/2011 04:27:09 PM,01/12/2011 04:27:46 PM,01/12/2011 04:28:07 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Other,01/12/2011 04:29:48 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,,1,PRIVATE,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",110120259-KM11 -112820247,75,11093385,Medical Incident,10/09/2011,10/09/2011,10/09/2011 03:53:43 PM,10/09/2011 03:54:38 PM,10/09/2011 03:55:04 PM,10/09/2011 03:55:25 PM,10/09/2011 03:57:41 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Against Medical Advice,10/09/2011 04:48:05 PM,3000 Block of 20TH ST,SF,94110,B06,7,5451,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7590542429617, -122.411163913692)",112820247-75 -131530296,B04,13051938,Alarms,06/02/2013,06/02/2013,06/02/2013 07:46:46 PM,06/02/2013 07:47:43 PM,06/02/2013 07:47:51 PM,06/02/2013 07:48:12 PM,06/02/2013 07:49:40 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 07:56:23 PM,2600 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,false,Alarm,1,CHIEF,1,4,2,Pacific Heights,"(37.7884373655109, -122.437962237208)",131530296-B04 -112930157,E05,11097178,Odor (Strange / Unknown),10/20/2011,10/20/2011,10/20/2011 12:18:53 PM,10/20/2011 12:21:52 PM,10/20/2011 12:22:05 PM,10/20/2011 12:24:12 PM,10/20/2011 12:28:00 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 12:35:29 PM,2100 Block of HAYES ST,SF,94117,B05,21,4543,3,3,3,true,,1,ENGINE,3,5,5,Lone Mountain/USF,"(37.7732651286192, -122.451809729092)",112930157-E05 -120190322,E02,12006468,Structure Fire,01/19/2012,01/19/2012,01/19/2012 08:01:09 PM,01/19/2012 08:01:09 PM,01/19/2012 08:01:30 PM,01/19/2012 08:03:25 PM,01/19/2012 08:04:21 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 08:13:41 PM,900 Block of CLAY ST,SF,94108,B01,2,135,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7940625557105, -122.408322788185)",120190322-E02 -160631843,KM12,16025079,Medical Incident,03/03/2016,03/03/2016,03/03/2016 01:20:10 PM,03/03/2016 01:21:40 PM,03/03/2016 01:21:55 PM,03/03/2016 01:22:31 PM,03/03/2016 01:26:42 PM,03/03/2016 01:46:30 PM,03/03/2016 02:00:09 PM,Code 2 Transport,03/03/2016 02:32:06 PM,2200 Block of MARKET ST,San Francisco,94114,B05,6,5231,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",160631843-KM12 -133470163,86,13117734,Medical Incident,12/13/2013,12/13/2013,12/13/2013 12:18:41 PM,12/13/2013 12:19:08 PM,12/13/2013 12:19:24 PM,12/13/2013 12:19:33 PM,12/13/2013 12:22:05 PM,12/13/2013 12:36:51 PM,12/13/2013 12:54:08 PM,Code 2 Transport,12/13/2013 01:22:31 PM,200 Block of HARBOR RD,SF,94124,B10,17,6627,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",133470163-86 -103100174,T03,10099381,Structure Fire,11/06/2010,11/06/2010,11/06/2010 12:27:49 PM,11/06/2010 12:27:50 PM,11/06/2010 12:28:11 PM,04/25/2016 02:07:43 PM,11/06/2010 12:29:41 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 12:30:00 PM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,,1,TRUCK,1,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",103100174-T03 -160300344,88,16011645,Medical Incident,01/30/2016,01/29/2016,01/30/2016 02:22:55 AM,01/30/2016 02:22:55 AM,01/30/2016 02:23:20 AM,01/30/2016 02:23:28 AM,01/30/2016 02:35:29 AM,01/30/2016 03:06:37 AM,01/30/2016 03:12:23 AM,Code 2 Transport,01/30/2016 03:49:39 AM,BROADWAY/STOCKTON ST,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.797627561244, -122.408618845707)",160300344-88 -123230070,94,12107319,Medical Incident,11/18/2012,11/17/2012,11/18/2012 05:48:20 AM,11/18/2012 05:50:34 AM,11/18/2012 05:50:56 AM,11/18/2012 05:51:07 AM,11/18/2012 05:57:45 AM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,No Merit,11/18/2012 06:11:51 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",123230070-94 -132830183,RC2,13096300,Water Rescue,10/10/2013,10/10/2013,10/10/2013 12:25:16 PM,10/10/2013 12:26:50 PM,10/10/2013 12:28:05 PM,10/10/2013 12:29:33 PM,10/10/2013 12:35:42 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/10/2013 12:42:57 PM,300 Block of GREAT HWY,SF,94121,B07,34,7314,3,3,3,true,,1,RESCUE CAPTAIN,7,7,1,Outer Richmond,"(37.775927487803, -122.511557358244)",132830183-RC2 -131700234,T01,13057764,Alarms,06/19/2013,06/19/2013,06/19/2013 03:15:51 PM,06/19/2013 03:15:52 PM,06/19/2013 03:16:58 PM,06/19/2013 03:19:11 PM,06/19/2013 03:22:02 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/19/2013 03:25:42 PM,900 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7835699386918, -122.408421116922)",131700234-T01 -160461443,AM02,16018487,Medical Incident,02/15/2016,02/15/2016,02/15/2016 11:56:04 AM,02/15/2016 11:56:30 AM,02/15/2016 11:56:52 AM,02/15/2016 11:58:10 AM,02/15/2016 12:01:17 PM,02/15/2016 12:16:11 PM,02/15/2016 12:29:15 PM,Code 2 Transport,02/15/2016 12:57:19 PM,1300 Block of CASTRO ST,San Francisco,94114,B06,11,5541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7508948687888, -122.434116965108)",160461443-AM02 -130880403,E01,13029558,Medical Incident,03/29/2013,03/29/2013,03/29/2013 09:35:01 PM,03/29/2013 09:37:10 PM,03/29/2013 09:37:18 PM,03/29/2013 09:39:08 PM,03/29/2013 09:40:34 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 09:44:53 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",130880403-E01 -130620281,E31,13020857,Medical Incident,03/03/2013,03/03/2013,03/03/2013 04:45:23 PM,03/03/2013 04:46:48 PM,03/03/2013 04:47:37 PM,03/03/2013 04:49:04 PM,03/03/2013 04:51:39 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,No Merit,03/03/2013 04:53:30 PM,FULTON ST/4TH AV,SF,94122,B07,31,7122,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7738952538632, -122.461619756026)",130620281-E31 -123580067,AM02,12119752,Medical Incident,12/23/2012,12/22/2012,12/23/2012 07:24:02 AM,12/23/2012 07:29:14 AM,12/23/2012 07:29:30 AM,12/23/2012 07:30:11 AM,12/23/2012 07:35:15 AM,12/23/2012 07:55:18 AM,12/23/2012 08:07:19 AM,Code 2 Transport,12/23/2012 08:44:17 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",123580067-AM02 -120560209,E29,12018512,Medical Incident,02/25/2012,02/25/2012,02/25/2012 03:23:01 PM,02/25/2012 03:25:08 PM,02/25/2012 03:28:00 PM,02/25/2012 03:29:41 PM,02/25/2012 03:37:39 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 03:42:47 PM,20TH ST/3RD ST,SF,94107,B03,29,2466,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7604910103005, -122.388556400841)",120560209-E29 -122510025,AM10,12082862,Medical Incident,09/07/2012,09/06/2012,09/07/2012 02:00:17 AM,09/07/2012 02:01:12 AM,09/07/2012 02:01:39 AM,09/07/2012 02:02:33 AM,09/07/2012 02:05:22 AM,09/07/2012 02:13:32 AM,09/07/2012 02:24:54 AM,Code 2 Transport,09/07/2012 02:52:14 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",122510025-AM10 -123640275,KM01,12121886,Medical Incident,12/29/2012,12/29/2012,12/29/2012 07:20:43 PM,12/29/2012 07:22:49 PM,12/29/2012 07:23:22 PM,12/29/2012 07:23:55 PM,12/29/2012 07:29:28 PM,12/29/2012 07:38:19 PM,12/29/2012 07:54:23 PM,Code 2 Transport,12/29/2012 08:27:22 PM,GEARY ST/POLK ST,SF,94109,B04,3,3116,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",123640275-KM01 -160570131,64,16022591,Medical Incident,02/26/2016,02/25/2016,02/26/2016 01:00:40 AM,02/26/2016 01:02:36 AM,02/26/2016 01:02:54 AM,02/26/2016 01:03:14 AM,02/26/2016 01:10:56 AM,02/26/2016 01:22:14 AM,02/26/2016 01:34:38 AM,Code 2 Transport,02/26/2016 02:17:53 AM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",160570131-64 -120880027,E01,12029059,Medical Incident,03/28/2012,03/27/2012,03/28/2012 02:06:17 AM,03/28/2012 02:07:19 AM,03/28/2012 02:07:32 AM,03/28/2012 02:09:13 AM,03/28/2012 02:11:14 AM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 02:11:27 AM,FOLSOM ST/5TH ST,SF,94107,B03,1,2244,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7802649718101, -122.40338721034)",120880027-E01 -121760434,54,12058722,Medical Incident,06/24/2012,06/24/2012,06/24/2012 10:50:04 PM,06/24/2012 10:51:27 PM,06/24/2012 10:51:56 PM,06/24/2012 10:52:09 PM,06/24/2012 10:56:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 10:59:01 PM,900 Block of BRANNAN ST,SF,94103,B03,29,2330,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7707119826907, -122.406261949572)",121760434-54 -160583561,58,16023297,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:24:35 PM,02/27/2016 09:25:45 PM,02/27/2016 09:26:58 PM,02/27/2016 09:27:15 PM,02/27/2016 09:33:25 PM,02/27/2016 09:44:49 PM,02/27/2016 09:52:58 PM,Code 2 Transport,02/27/2016 10:21:29 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160583561-58 -160531502,71,16021192,Medical Incident,02/22/2016,02/22/2016,02/22/2016 12:19:29 PM,02/22/2016 12:20:31 PM,02/22/2016 12:21:00 PM,02/22/2016 12:22:04 PM,02/22/2016 12:26:59 PM,02/22/2016 12:51:36 PM,02/22/2016 01:03:42 PM,Code 2 Transport,02/22/2016 01:41:14 PM,0 Block of 5TH ST,San Francisco,94103,B01,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7833716368249, -122.407382686506)",160531502-71 -130620273,87,13020850,Medical Incident,03/03/2013,03/03/2013,03/03/2013 04:23:34 PM,03/03/2013 04:24:39 PM,03/03/2013 04:24:55 PM,03/03/2013 04:25:03 PM,03/03/2013 04:35:11 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,No Merit,03/03/2013 04:45:16 PM,ELLIS ST/TAYLOR ST,SF,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850745956137, -122.411139801067)",130620273-87 -160380722,AM10,16015098,Medical Incident,02/07/2016,02/06/2016,02/07/2016 05:07:41 AM,02/07/2016 05:09:06 AM,02/07/2016 05:09:18 AM,02/07/2016 05:16:39 AM,02/07/2016 05:28:11 AM,02/07/2016 05:31:15 AM,02/07/2016 05:42:17 AM,Code 2 Transport,02/07/2016 06:05:50 AM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160380722-AM10 -120280109,T15,12009347,Medical Incident,01/28/2012,01/28/2012,01/28/2012 09:35:17 AM,01/28/2012 09:36:14 AM,01/28/2012 09:36:39 AM,01/28/2012 09:37:59 AM,01/28/2012 09:43:33 AM,04/25/2016 02:00:24 PM,04/25/2016 02:00:24 PM,Other,01/28/2012 09:53:47 AM,SUNNYDALE AV/HAHN ST,SF,94134,B09,43,6241,E,E,3,false,Potentially Life-Threatening,1,TRUCK,3,9,10,Visitacion Valley,"(37.7119145572968, -122.416000281038)",120280109-T15 -122190332,E02,12072780,Medical Incident,08/06/2012,08/06/2012,08/06/2012 07:50:04 PM,08/06/2012 07:51:00 PM,08/06/2012 07:51:15 PM,08/06/2012 07:52:35 PM,08/06/2012 07:55:21 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 07:58:35 PM,100 Block of JACKSON ST,SF,94111,B01,13,1132,3,3,3,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",122190332-E02 -130350211,KM06,13011998,Medical Incident,02/04/2013,02/04/2013,02/04/2013 12:50:38 PM,02/04/2013 12:52:22 PM,02/04/2013 12:52:45 PM,02/04/2013 12:53:09 PM,02/04/2013 01:03:15 PM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,No Merit,02/04/2013 01:29:50 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,1,1,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",130350211-KM06 -111470364,E01,11048926,Structure Fire,05/27/2011,05/27/2011,05/27/2011 11:42:21 PM,05/27/2011 11:42:22 PM,05/27/2011 11:43:37 PM,05/27/2011 11:44:36 PM,05/27/2011 11:46:28 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Fire,05/27/2011 11:47:14 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",111470364-E01 -140790274,E34,14026793,Medical Incident,03/20/2014,03/20/2014,03/20/2014 04:56:58 PM,03/20/2014 04:56:58 PM,03/20/2014 04:56:58 PM,03/20/2014 04:56:58 PM,03/20/2014 04:56:58 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,No Merit,03/20/2014 04:59:52 PM,900 Block of POINT LOBOS AVE,,94121,B07,34,7314,,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",140790274-E34 -160381167,64,16015142,Medical Incident,02/07/2016,02/07/2016,02/07/2016 09:28:52 AM,02/07/2016 09:30:51 AM,02/07/2016 09:31:23 AM,02/07/2016 09:33:07 AM,02/07/2016 09:44:59 AM,02/07/2016 09:57:17 AM,02/07/2016 10:24:54 AM,Code 2 Transport,02/07/2016 10:56:09 AM,100 Block of SAINT CHARLES AV,San Francisco,94132,B09,33,8412,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7113900997901, -122.469364912259)",160381167-64 -120560154,E21,12018470,Medical Incident,02/25/2012,02/25/2012,02/25/2012 12:32:31 PM,02/25/2012 12:34:50 PM,02/25/2012 12:36:12 PM,02/25/2012 12:37:08 PM,02/25/2012 12:38:08 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 12:54:56 PM,300 Block of BAKER ST,SF,94117,B05,21,4252,1,E,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7740926787047, -122.44108442597)",120560154-E21 -102650127,E16,10083836,Administrative,09/22/2010,09/22/2010,09/22/2010 11:31:52 AM,09/22/2010 11:32:15 AM,09/22/2010 11:34:29 AM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 11:34:51 AM,2200 Block of GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7987927965073, -122.436679384834)",102650127-E16 -133320018,KM15,13112547,Medical Incident,11/28/2013,11/27/2013,11/28/2013 01:35:02 AM,11/28/2013 01:35:56 AM,11/28/2013 01:36:40 AM,11/28/2013 01:39:24 AM,11/28/2013 01:41:19 AM,11/28/2013 01:51:45 AM,11/28/2013 02:05:53 AM,Code 2 Transport,11/28/2013 02:39:07 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",133320018-KM15 -123640259,E07,12121872,Smoke Investigation (Outside),12/29/2012,12/29/2012,12/29/2012 06:20:14 PM,12/29/2012 06:21:25 PM,12/29/2012 06:21:33 PM,12/29/2012 06:23:03 PM,12/29/2012 06:25:44 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/29/2012 06:29:30 PM,ALABAMA ST/22ND ST,SF,94110,B06,7,545,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.755887569503, -122.411272619634)",123640259-E07 -160053256,AM12,16002148,Medical Incident,01/05/2016,01/05/2016,01/05/2016 07:53:12 PM,01/05/2016 07:53:12 PM,01/05/2016 07:53:49 PM,01/05/2016 07:54:37 PM,01/05/2016 07:59:30 PM,01/05/2016 08:10:09 PM,01/05/2016 08:24:21 PM,Code 2 Transport,01/05/2016 09:14:53 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160053256-AM12 -131440251,83,13048881,Medical Incident,05/24/2013,05/24/2013,05/24/2013 03:40:00 PM,05/24/2013 03:41:09 PM,05/24/2013 03:41:55 PM,05/24/2013 03:42:06 PM,05/24/2013 03:52:20 PM,05/24/2013 04:09:20 PM,05/24/2013 04:37:22 PM,Code 2 Transport,05/24/2013 05:05:24 PM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",131440251-83 -140500261,KM11,14017045,Medical Incident,02/19/2014,02/19/2014,02/19/2014 05:39:35 PM,02/19/2014 05:39:56 PM,02/19/2014 06:33:36 PM,02/19/2014 05:45:19 PM,02/19/2014 06:34:11 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Patient Declined Transport,02/19/2014 07:03:00 PM,POWELL ST/OFARRELL ST,SF,94102,B01,1,1363,,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",140500261-KM11 -131220413,E16,13041213,Structure Fire,05/02/2013,05/02/2013,05/02/2013 07:43:17 PM,05/02/2013 07:44:06 PM,05/02/2013 07:44:16 PM,05/02/2013 07:45:23 PM,05/02/2013 07:45:52 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 08:17:24 PM,2300 Block of GREENWICH ST,SF,94123,B04,16,3553,3,3,3,true,Fire,1,ENGINE,1,4,2,Marina,"(37.7986920036256, -122.438346249439)",131220413-E16 -133260089,B01,13110638,Structure Fire,11/22/2013,11/22/2013,11/22/2013 09:17:16 AM,11/22/2013 09:17:22 AM,11/22/2013 09:17:37 AM,11/22/2013 09:17:47 AM,11/22/2013 09:22:17 AM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Fire,11/22/2013 09:24:26 AM,2200 Block of JONES ST,SF,94133,B01,28,151,3,3,3,false,Alarm,1,CHIEF,1,1,3,Russian Hill,"(37.8019369945594, -122.416296996585)",133260089-B01 -160850798,AM06,16033673,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:11:37 AM,03/25/2016 08:12:15 AM,03/25/2016 08:12:24 AM,03/25/2016 08:12:58 AM,03/25/2016 08:17:24 AM,03/25/2016 08:38:42 AM,03/25/2016 08:50:36 AM,Code 2 Transport,03/25/2016 09:33:46 AM,BUSH ST/STEINER ST,San Francisco,94115,B04,38,3621,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,5,Pacific Heights,"(37.7868105416223, -122.435105769551)",160850798-AM06 -160252626,AM14,16010019,Medical Incident,01/25/2016,01/25/2016,01/25/2016 04:35:59 PM,01/25/2016 04:37:00 PM,01/25/2016 04:37:43 PM,01/25/2016 04:38:22 PM,01/25/2016 04:45:51 PM,01/25/2016 05:05:25 PM,01/25/2016 05:21:17 PM,Code 3 Transport,01/25/2016 06:17:39 PM,200 Block of SKYLINE BLVD,San Francisco,94132,B08,19,8713,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.730009641642, -122.500476623156)",160252626-AM14 -160531273,AM06,16021167,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:15:03 AM,02/22/2016 11:15:47 AM,02/22/2016 11:16:19 AM,02/22/2016 11:16:52 AM,02/22/2016 11:18:29 AM,02/22/2016 11:33:02 AM,02/22/2016 11:39:02 AM,Code 2 Transport,02/22/2016 12:22:12 PM,1700 Block of BUSH ST,San Francisco,94109,B04,38,3255,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",160531273-AM06 -111940290,E17,11064145,Medical Incident,07/13/2011,07/13/2011,07/13/2011 06:48:21 PM,07/13/2011 06:50:55 PM,07/13/2011 06:51:15 PM,07/13/2011 06:52:29 PM,07/13/2011 06:53:54 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 07:11:34 PM,1400 Block of PALOU AVE,SF,94124,B10,17,6551,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7324328629482, -122.388060552096)",111940290-E17 -160181048,83,16007180,Medical Incident,01/18/2016,01/18/2016,01/18/2016 10:15:33 AM,01/18/2016 10:16:01 AM,01/18/2016 10:16:31 AM,01/18/2016 10:16:42 AM,01/18/2016 10:18:57 AM,01/18/2016 10:53:07 AM,01/18/2016 11:03:57 AM,Code 2 Transport,01/18/2016 11:46:01 AM,200 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7845991269502, -122.411114048741)",160181048-83 -140570216,KM10,14019243,Medical Incident,02/26/2014,02/26/2014,02/26/2014 01:14:19 PM,02/26/2014 01:16:35 PM,02/26/2014 01:19:24 PM,02/26/2014 01:19:57 PM,02/26/2014 01:26:15 PM,02/26/2014 01:48:24 PM,02/26/2014 01:56:14 PM,Code 2 Transport,02/26/2014 02:26:00 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,2,3,3,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",140570216-KM10 -133290311,E09,13111884,Structure Fire,11/25/2013,11/25/2013,11/25/2013 09:03:43 PM,11/25/2013 09:03:44 PM,11/25/2013 09:04:29 PM,11/25/2013 09:06:26 PM,11/25/2013 09:07:51 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Fire,11/25/2013 09:08:43 PM,26TH ST/FLORIDA ST,SF,94110,B06,9,5615,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.749544316577, -122.409761760345)",133290311-E09 -160380028,KM07,16015010,Medical Incident,02/07/2016,02/06/2016,02/07/2016 12:07:00 AM,02/07/2016 12:07:55 AM,02/07/2016 12:08:17 AM,02/07/2016 12:08:46 AM,02/07/2016 12:13:58 AM,02/07/2016 12:25:25 AM,02/07/2016 12:46:16 AM,Code 2 Transport,02/07/2016 12:57:24 AM,1600 Block of POLK ST,San Francisco,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7919482669732, -122.420894691237)",160380028-KM07 -132940260,KM06,13100053,Medical Incident,10/21/2013,10/21/2013,10/21/2013 03:46:42 PM,10/21/2013 03:47:55 PM,10/21/2013 03:50:10 PM,10/21/2013 03:50:47 PM,10/21/2013 03:57:28 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 03:58:27 PM,MARKET ST/HYDE ST,SF,94103,B02,36,1646,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",132940260-KM06 -111520055,85,11050201,Medical Incident,06/01/2011,05/31/2011,06/01/2011 07:58:51 AM,06/01/2011 07:59:38 AM,06/01/2011 08:00:54 AM,06/01/2011 08:01:13 AM,06/01/2011 08:10:29 AM,06/01/2011 08:37:24 AM,06/01/2011 08:50:32 AM,Code 2 Transport,06/01/2011 09:23:40 AM,700 Block of 35TH AVE,SF,94121,B07,34,7252,1,1,2,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7748832270511, -122.495037870754)",111520055-85 -103070142,B09,10098225,Structure Fire,11/03/2010,11/03/2010,11/03/2010 10:37:07 AM,11/03/2010 10:37:48 AM,11/03/2010 10:38:20 AM,11/03/2010 10:46:16 AM,11/03/2010 10:50:19 AM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Other,11/03/2010 10:52:55 AM,200 Block of UPLAND DR,SF,94127,B09,15,8533,3,3,3,false,,1,CHIEF,8,9,7,West of Twin Peaks,"(37.7293813611504, -122.463779173628)",103070142-B09 -123380266,KM04,12112760,Medical Incident,12/03/2012,12/03/2012,12/03/2012 03:18:46 PM,12/03/2012 03:21:29 PM,12/03/2012 03:21:57 PM,12/03/2012 03:22:34 PM,12/03/2012 03:29:54 PM,12/03/2012 03:52:28 PM,12/03/2012 03:57:29 PM,Code 2 Transport,12/03/2012 04:30:37 PM,2200 Block of OFARRELL ST,SF,94115,B05,10,4236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,2,Western Addition,"(37.7822915123577, -122.441318034345)",123380266-KM04 -110290233,E43,11009586,Medical Incident,01/29/2011,01/29/2011,01/29/2011 03:48:37 PM,01/29/2011 03:50:51 PM,01/29/2011 03:51:12 PM,01/29/2011 03:51:57 PM,01/29/2011 03:53:49 PM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Other,01/29/2011 04:10:13 PM,700 Block of ROLPH ST,SF,94112,B09,43,6226,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7117488749643, -122.431036191075)",110290233-E43 -132410249,RS2,13081347,Traffic Collision,08/29/2013,08/29/2013,08/29/2013 04:38:51 PM,08/29/2013 04:39:27 PM,08/29/2013 04:39:48 PM,08/29/2013 04:42:49 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/29/2013 04:44:42 PM,PORTOLA DR/SAN ANSELMO AV,SF,94127,B08,39,8562,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,8,7,West of Twin Peaks,"(37.7374171488633, -122.468309607404)",132410249-RS2 -122710346,E33,12089584,Medical Incident,09/27/2012,09/27/2012,09/27/2012 11:22:33 PM,09/27/2012 11:24:09 PM,09/27/2012 11:24:26 PM,09/27/2012 11:26:46 PM,09/27/2012 11:29:47 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/27/2012 11:52:31 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",122710346-E33 -160111506,61,16004378,Medical Incident,01/11/2016,01/11/2016,01/11/2016 12:17:40 PM,01/11/2016 12:18:15 PM,01/11/2016 12:19:19 PM,01/11/2016 12:19:27 PM,01/11/2016 12:26:29 PM,01/11/2016 12:38:24 PM,01/11/2016 12:55:54 PM,Code 2 Transport,01/11/2016 01:37:20 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160111506-61 -111740225,E15,11057432,Medical Incident,06/23/2011,06/23/2011,06/23/2011 04:14:04 PM,06/23/2011 04:14:28 PM,06/23/2011 04:14:47 PM,06/23/2011 04:49:06 PM,06/23/2011 04:51:16 PM,06/23/2011 04:52:17 PM,04/25/2016 02:04:01 PM,Other,06/23/2011 05:34:26 PM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,,1,ENGINE,3,9,7,Oceanview/Merced/Ingleside,"(37.7247694508388, -122.460748189713)",111740225-E15 -123240198,E02,12107735,Alarms,11/19/2012,11/19/2012,11/19/2012 01:00:49 PM,11/19/2012 01:02:18 PM,11/19/2012 01:02:29 PM,11/19/2012 01:03:43 PM,11/19/2012 01:05:50 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/19/2012 01:10:34 PM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.79330670928, -122.402930381265)",123240198-E02 -160623944,86,16024870,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:27:41 PM,03/02/2016 09:27:41 PM,03/02/2016 09:29:30 PM,03/02/2016 09:29:47 PM,03/02/2016 09:41:11 PM,03/02/2016 09:45:43 PM,03/02/2016 09:58:50 PM,Code 2 Transport,03/02/2016 10:31:07 PM,MISSION ST/7TH ST,San Francisco,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160623944-86 -160741044,88,16029260,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:41:23 AM,03/14/2016 09:41:53 AM,03/14/2016 09:42:10 AM,03/14/2016 09:42:18 AM,03/14/2016 09:44:56 AM,03/14/2016 09:55:00 AM,03/14/2016 10:08:47 AM,Code 2 Transport,03/14/2016 10:34:44 AM,3100 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7483773808375, -122.412579951922)",160741044-88 -103410419,66,10109317,Medical Incident,12/07/2010,12/07/2010,12/07/2010 11:46:54 PM,12/07/2010 11:47:25 PM,12/07/2010 11:49:18 PM,12/07/2010 11:49:27 PM,12/07/2010 11:58:25 PM,12/08/2010 12:41:50 AM,12/08/2010 12:51:13 AM,Code 2 Transport,12/08/2010 01:23:48 AM,0 Block of HARBOR RD,SF,94124,B10,17,6633,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",103410419-66 -111620333,83,11053627,Medical Incident,06/11/2011,06/11/2011,06/11/2011 09:14:03 PM,06/11/2011 09:15:04 PM,06/11/2011 09:15:45 PM,06/11/2011 09:16:03 PM,06/11/2011 09:18:45 PM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Patient Declined Transport,06/11/2011 10:01:04 PM,100 Block of 4TH ST,SF,94103,B03,1,2213,3,E,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",111620333-83 -113340298,AM10,11110701,Medical Incident,11/30/2011,11/30/2011,11/30/2011 07:45:01 PM,11/30/2011 07:47:10 PM,11/30/2011 07:48:59 PM,11/30/2011 07:49:04 PM,11/30/2011 08:01:16 PM,11/30/2011 08:12:41 PM,11/30/2011 08:15:50 PM,Code 2 Transport,11/30/2011 08:45:54 PM,1100 Block of OFARRELL ST,SF,94109,B04,3,3261,2,2,2,false,,1,PRIVATE,1,2,5,Western Addition,"(37.7845957801826, -122.42200470349)",113340298-AM10 -132690303,KM01,13091452,Medical Incident,09/26/2013,09/26/2013,09/26/2013 06:14:33 PM,09/26/2013 06:17:31 PM,09/26/2013 06:18:08 PM,09/26/2013 06:19:16 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,04/25/2016 01:50:34 PM,18TH ST/SANCHEZ ST,SF,94114,B05,6,5252,3,2,2,false,Non Life-threatening,1,PRIVATE,3,5,8,Castro/Upper Market,"(37.7611554774347, -122.430573567918)",132690303-KM01 -160900635,AM02,16035609,Traffic Collision,03/30/2016,03/29/2016,03/30/2016 07:33:09 AM,03/30/2016 07:35:11 AM,03/30/2016 07:36:14 AM,03/30/2016 07:36:24 AM,03/30/2016 07:43:13 AM,03/30/2016 08:03:10 AM,03/30/2016 08:37:40 AM,Code 2 Transport,03/30/2016 09:17:09 AM,400 Block of CLAYTON ST,San Francisco,94117,B05,21,4524,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.771191086771, -122.44893127026)",160900635-AM02 -160543281,AM08,16021735,Medical Incident,02/23/2016,02/23/2016,02/23/2016 06:35:59 PM,02/23/2016 06:37:39 PM,02/23/2016 06:37:54 PM,02/23/2016 06:38:18 PM,02/23/2016 06:47:55 PM,02/23/2016 07:09:57 PM,02/23/2016 07:19:48 PM,Code 2 Transport,02/23/2016 07:41:38 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160543281-AM08 -102640060,B08,10083454,Alarms,09/21/2010,09/20/2010,09/21/2010 07:54:08 AM,09/21/2010 07:54:46 AM,09/21/2010 07:54:54 AM,09/21/2010 07:55:59 AM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:58:05 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,false,,1,CHIEF,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",102640060-B08 -160903000,62,16035823,Medical Incident,03/30/2016,03/30/2016,03/30/2016 05:32:34 PM,03/30/2016 05:34:11 PM,03/30/2016 05:35:14 PM,03/30/2016 05:35:26 PM,03/30/2016 05:44:38 PM,03/30/2016 06:02:32 PM,03/30/2016 06:21:31 PM,Code 2 Transport,03/30/2016 06:51:11 PM,3700 Block of TARAVAL ST,San Francisco,94116,B08,23,7731,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7416397448507, -122.506275019904)",160903000-62 -111020353,RS1,11033973,Structure Fire,04/12/2011,04/12/2011,04/12/2011 10:22:20 PM,04/12/2011 10:22:53 PM,04/12/2011 10:23:06 PM,04/12/2011 10:24:31 PM,04/12/2011 10:26:34 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/12/2011 10:39:42 PM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",111020353-RS1 -133270230,E14,13111101,Medical Incident,11/23/2013,11/23/2013,11/23/2013 01:02:58 PM,11/23/2013 01:27:18 PM,11/23/2013 01:29:20 PM,11/23/2013 01:30:27 PM,11/23/2013 01:33:37 PM,04/25/2016 01:49:37 PM,04/25/2016 01:49:37 PM,Other,11/23/2013 01:50:37 PM,500 Block of 11TH AVE,SF,94118,B07,31,7142,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7779228408214, -122.469358764286)",133270230-E14 -130520381,84,13017753,Medical Incident,02/21/2013,02/21/2013,02/21/2013 10:50:58 PM,02/21/2013 10:51:38 PM,02/21/2013 10:52:45 PM,02/21/2013 10:52:51 PM,02/21/2013 11:00:00 PM,02/21/2013 11:11:03 PM,02/21/2013 11:24:25 PM,Code 2 Transport,02/22/2013 12:01:05 AM,1300 Block of QUESADA AVE,SF,94124,B10,17,6571,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7295945473081, -122.384963446158)",130520381-84 -121980193,E41,12065816,Administrative,07/16/2012,07/16/2012,07/16/2012 02:30:41 PM,07/16/2012 02:30:46 PM,07/16/2012 02:31:04 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 02:31:28 PM,1300 Block of LEAVENWORTH ST,SF,94109,B01,41,1536,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",121980193-E41 -102510095,E03,10079228,Medical Incident,09/08/2010,09/08/2010,09/08/2010 08:55:53 AM,09/08/2010 08:57:04 AM,09/08/2010 08:57:57 AM,09/08/2010 09:00:49 AM,09/08/2010 09:03:43 AM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 09:09:48 AM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,2,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",102510095-E03 -160261491,KM13,16010273,Traffic Collision,01/26/2016,01/26/2016,01/26/2016 11:19:42 AM,01/26/2016 11:19:42 AM,01/26/2016 11:21:04 AM,01/26/2016 11:22:02 AM,01/26/2016 11:25:47 AM,01/26/2016 11:34:18 AM,01/26/2016 12:00:30 PM,Code 2 Transport,01/26/2016 12:56:27 PM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7840781681969, -122.41852472124)",160261491-KM13 -160131204,89,16005142,Medical Incident,01/13/2016,01/13/2016,01/13/2016 10:17:54 AM,01/13/2016 10:18:48 AM,01/13/2016 10:19:33 AM,01/13/2016 10:20:47 AM,01/13/2016 10:34:46 AM,01/13/2016 10:52:44 AM,01/13/2016 11:02:18 AM,Code 2 Transport,01/13/2016 11:41:52 AM,700 Block of 46TH AV,San Francisco,94121,B07,34,7273,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7743375823658, -122.506958423715)",160131204-89 -160130404,88,16005052,Medical Incident,01/13/2016,01/12/2016,01/13/2016 05:12:19 AM,01/13/2016 05:12:19 AM,01/13/2016 05:12:26 AM,01/13/2016 05:12:39 AM,01/13/2016 05:16:15 AM,01/13/2016 05:27:19 AM,01/13/2016 05:41:43 AM,Code 2 Transport,01/13/2016 06:15:35 AM,1000 Block of POWELL ST,San Francisco,94108,B01,2,1355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7943031538936, -122.40956298612)",160130404-88 -160020384,KM07,16000607,Medical Incident,01/02/2016,01/01/2016,01/02/2016 03:24:26 AM,01/02/2016 03:24:26 AM,01/02/2016 03:24:54 AM,01/02/2016 03:25:22 AM,01/02/2016 03:31:58 AM,01/02/2016 03:47:22 AM,01/02/2016 03:57:01 AM,Code 2 Transport,01/02/2016 04:28:52 AM,600 Block of UNION ST,San Francisco,94133,B01,28,1334,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.800223037363, -122.410509595301)",160020384-KM07 -110400377,E24,11013398,Fuel Spill,02/09/2011,02/09/2011,02/09/2011 09:14:44 PM,02/09/2011 09:17:40 PM,02/09/2011 09:17:48 PM,02/09/2011 09:23:38 PM,02/09/2011 09:27:15 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Fire,02/09/2011 09:29:40 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",110400377-E24 -132660083,KM09,13090166,Medical Incident,09/23/2013,09/23/2013,09/23/2013 08:00:17 AM,09/23/2013 08:00:30 AM,09/23/2013 08:01:15 AM,09/23/2013 08:01:24 AM,09/23/2013 08:13:14 AM,09/23/2013 08:31:47 AM,09/23/2013 08:42:35 AM,Code 2 Transport,09/23/2013 09:36:36 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",132660083-KM09 -130170141,E05,13005739,Administrative,01/17/2013,01/17/2013,01/17/2013 10:55:17 AM,01/17/2013 10:57:19 AM,01/17/2013 10:57:55 AM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 10:58:53 AM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",130170141-E05 -160853978,78,16033991,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:16:49 PM,03/25/2016 10:17:56 PM,03/25/2016 10:18:20 PM,03/25/2016 10:18:24 PM,03/25/2016 10:26:42 PM,03/25/2016 10:43:06 PM,03/25/2016 10:52:55 PM,Code 2 Transport,03/25/2016 11:29:27 PM,COLE ST/HAIGHT ST,San Francisco,94117,B05,12,4533,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",160853978-78 -113520244,B06,11116907,Structure Fire,12/18/2011,12/18/2011,12/18/2011 03:26:04 PM,12/18/2011 03:26:12 PM,12/18/2011 03:28:00 PM,04/25/2016 02:01:05 PM,04/25/2016 02:01:05 PM,04/25/2016 02:01:05 PM,04/25/2016 02:01:05 PM,Fire,12/18/2011 03:33:43 PM,1100 Block of CARROLL AVE,SF,94124,B10,17,6615,3,3,3,false,,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7202710808043, -122.384912924434)",113520244-B06 -140310082,E03,14010461,Medical Incident,01/31/2014,01/31/2014,01/31/2014 09:16:56 AM,01/31/2014 09:17:34 AM,01/31/2014 09:18:02 AM,01/31/2014 09:19:33 AM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,04/25/2016 01:48:27 PM,Other,01/31/2014 09:32:35 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140310082-E03 -113280033,82,11108753,Medical Incident,11/24/2011,11/23/2011,11/24/2011 03:37:37 AM,11/24/2011 03:39:55 AM,11/24/2011 03:40:36 AM,11/24/2011 03:40:40 AM,11/24/2011 03:42:13 AM,11/24/2011 03:46:07 AM,11/24/2011 03:58:58 AM,Code 2 Transport,11/24/2011 04:30:27 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",113280033-82 -160013596,75,16000504,Medical Incident,01/01/2016,01/01/2016,01/01/2016 09:15:50 PM,01/01/2016 09:17:52 PM,01/01/2016 09:18:23 PM,01/01/2016 09:18:59 PM,01/01/2016 09:22:21 PM,01/01/2016 09:42:41 PM,01/01/2016 09:48:42 PM,Code 3 Transport,01/01/2016 10:31:26 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160013596-75 -120830184,E38,12027563,Structure Fire,03/23/2012,03/23/2012,03/23/2012 01:14:17 PM,03/23/2012 01:17:21 PM,03/23/2012 01:18:04 PM,03/23/2012 01:19:38 PM,03/23/2012 01:26:18 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 01:41:25 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,false,Fire,1,ENGINE,7,4,2,Marina,"(37.8008031731089, -122.436797742278)",120830184-E38 -120710153,T15,12023587,Structure Fire,03/11/2012,03/11/2012,03/11/2012 11:19:41 AM,03/11/2012 11:19:41 AM,03/11/2012 11:19:56 AM,03/11/2012 11:20:32 AM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/11/2012 11:23:25 AM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,true,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",120710153-T15 -123490027,E19,12116565,Traffic Collision,12/14/2012,12/13/2012,12/14/2012 02:06:58 AM,12/14/2012 02:09:12 AM,12/14/2012 02:09:19 AM,12/14/2012 02:11:02 AM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/14/2012 02:12:28 AM,SLOAT BL/19TH AV,SF,94132,B08,19,7413,2,2,2,true,Non Life-threatening,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",123490027-E19 -160854065,76,16033999,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:39:12 PM,03/25/2016 10:39:12 PM,03/25/2016 10:39:38 PM,03/25/2016 10:39:45 PM,03/25/2016 10:47:45 PM,03/25/2016 10:51:36 PM,03/25/2016 11:06:26 PM,Code 2 Transport,03/25/2016 11:50:57 PM,2100 Block of MARKET ST,San Francisco,94114,B02,6,5209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",160854065-76 -102330310,E01,10073460,Medical Incident,08/21/2010,08/21/2010,08/21/2010 11:28:31 PM,08/21/2010 11:29:14 PM,08/21/2010 11:29:25 PM,04/25/2016 02:08:58 PM,08/21/2010 11:31:16 PM,04/25/2016 02:08:58 PM,04/25/2016 02:08:58 PM,Other,08/21/2010 11:42:37 PM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",102330310-E01 -102290228,E03,10072093,Other,08/17/2010,08/17/2010,08/17/2010 03:07:57 PM,08/17/2010 03:09:08 PM,08/17/2010 03:09:55 PM,08/17/2010 03:12:21 PM,08/17/2010 03:19:34 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 04:04:43 PM,TURK ST/LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",102290228-E03 -120160003,54,12005251,Medical Incident,01/16/2012,01/15/2012,01/16/2012 12:16:29 AM,01/16/2012 12:17:55 AM,01/16/2012 12:18:35 AM,01/16/2012 12:18:43 AM,01/16/2012 12:23:39 AM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Against Medical Advice,01/16/2012 01:41:54 AM,800 Block of BEACH ST,SF,94109,B01,28,3135,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8062749295905, -122.423009244612)",120160003-54 -113140231,E05,11104372,Medical Incident,11/10/2011,11/10/2011,11/10/2011 03:08:46 PM,11/10/2011 03:09:23 PM,11/10/2011 03:12:26 PM,11/10/2011 03:13:33 PM,11/10/2011 03:17:30 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 03:27:29 PM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,2,2,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",113140231-E05 -113470382,99,11115286,Medical Incident,12/13/2011,12/13/2011,12/13/2011 09:51:16 PM,12/13/2011 09:53:03 PM,12/13/2011 09:59:41 PM,12/13/2011 10:05:51 PM,04/25/2016 02:01:10 PM,12/13/2011 10:20:46 PM,12/13/2011 11:26:08 PM,Code 2 Transport,12/13/2011 11:28:55 PM,200 Block of CAMERON WAY,SF,94124,B10,17,6613,2,2,2,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.720440433346, -122.388366313776)",113470382-99 -160392672,52,16015717,Medical Incident,02/08/2016,02/08/2016,02/08/2016 05:08:46 PM,02/08/2016 05:09:50 PM,02/08/2016 05:10:06 PM,02/08/2016 05:10:28 PM,02/08/2016 05:18:53 PM,02/08/2016 05:39:29 PM,02/08/2016 05:51:02 PM,Code 2 Transport,02/08/2016 06:40:13 PM,600 Block of OAK ST,San Francisco,94117,B02,5,3523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7741312122383, -122.430012452236)",160392672-52 -140370182,E03,14012505,Structure Fire,02/06/2014,02/06/2014,02/06/2014 12:46:06 PM,02/06/2014 12:46:06 PM,02/06/2014 12:48:13 PM,02/06/2014 12:48:13 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 12:48:25 PM,GRANT AV/BUSH ST,SF,94108,B01,13,1315,,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7905652365323, -122.405573746363)",140370182-E03 -160512743,76,16020566,Medical Incident,02/20/2016,02/20/2016,02/20/2016 07:00:59 PM,02/20/2016 07:01:29 PM,02/20/2016 07:02:11 PM,02/20/2016 07:02:17 PM,02/20/2016 07:09:19 PM,02/20/2016 07:22:38 PM,02/20/2016 07:29:54 PM,Code 2 Transport,02/20/2016 08:16:01 PM,0 Block of 9TH ST,San Francisco,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7764354063246, -122.415064887666)",160512743-76 -110640432,E07,11021295,Citizen Assist / Service Call,03/05/2011,03/05/2011,03/05/2011 11:27:51 PM,03/05/2011 11:37:26 PM,03/05/2011 11:39:32 PM,03/05/2011 11:40:46 PM,03/05/2011 11:43:44 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Fire,03/06/2011 12:22:14 AM,3500 Block of 18TH ST,SF,94110,B02,7,5422,3,3,3,true,,1,ENGINE,1,6,8,Mission,"(37.7615366331071, -122.423372714145)",110640432-E07 -122770354,59,12091660,Medical Incident,10/03/2012,10/03/2012,10/03/2012 05:51:53 PM,10/03/2012 05:53:02 PM,10/03/2012 05:54:03 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,Other,04/25/2016 01:56:28 PM,700 Block of BROADWAY,SF,94133,B01,2,1353,3,2,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7976146082072, -122.409164766852)",122770354-59 -121730177,T07,12057438,Structure Fire,06/21/2012,06/21/2012,06/21/2012 11:51:40 AM,06/21/2012 11:51:41 AM,06/21/2012 11:51:49 AM,06/21/2012 11:53:15 AM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/21/2012 11:54:20 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,false,Alarm,1,TRUCK,2,2,6,Mission,"(37.7726641818375, -122.418338317697)",121730177-T07 -160763632,70,16030333,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:07:55 PM,03/16/2016 08:09:34 PM,03/16/2016 08:10:02 PM,03/16/2016 08:10:10 PM,03/16/2016 08:16:59 PM,03/16/2016 08:19:56 PM,03/16/2016 08:48:53 PM,Code 2 Transport,03/16/2016 09:15:01 PM,PAGE ST/ASHBURY ST,San Francisco,94117,B05,21,4513,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7709346395903, -122.447122700475)",160763632-70 -130780083,E43,13025948,Medical Incident,03/19/2013,03/18/2013,03/19/2013 07:19:04 AM,03/19/2013 07:19:25 AM,03/19/2013 07:20:25 AM,04/25/2016 01:53:45 PM,03/19/2013 07:22:53 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 07:40:04 AM,1800 Block of FELTON ST,SF,94134,B09,43,6153,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,9,Excelsior,"(37.7253187899942, -122.422855621147)",130780083-E43 -102860416,B07,10091336,Traffic Collision,10/13/2010,10/13/2010,10/13/2010 10:19:16 PM,10/13/2010 10:20:46 PM,10/13/2010 10:22:23 PM,10/13/2010 10:27:42 PM,10/13/2010 10:38:57 PM,04/25/2016 02:08:07 PM,04/25/2016 02:08:07 PM,Other,10/13/2010 10:53:53 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,2,2,2,false,,1,CHIEF,5,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",102860416-B07 -122820309,68,12093475,Medical Incident,10/08/2012,10/08/2012,10/08/2012 09:07:54 PM,10/08/2012 09:09:49 PM,10/08/2012 09:10:22 PM,10/08/2012 09:10:36 PM,10/08/2012 09:15:22 PM,10/08/2012 09:23:04 PM,10/08/2012 09:45:40 PM,Code 2 Transport,10/08/2012 09:58:05 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",122820309-68 -160113298,63,16004555,Medical Incident,01/11/2016,01/11/2016,01/11/2016 09:00:47 PM,01/11/2016 09:00:47 PM,01/11/2016 09:00:57 PM,01/11/2016 09:01:08 PM,01/11/2016 09:06:44 PM,01/11/2016 09:12:45 PM,01/11/2016 09:24:57 PM,Code 2 Transport,01/11/2016 09:46:05 PM,MISSION ST/ONONDAGA AV,San Francisco,94112,B09,43,6121,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7211635493758, -122.437461137723)",160113298-63 -131430230,E05,13048534,Medical Incident,05/23/2013,05/23/2013,05/23/2013 02:11:50 PM,05/23/2013 02:12:42 PM,05/23/2013 02:15:55 PM,05/23/2013 02:16:07 PM,04/25/2016 01:52:39 PM,04/25/2016 01:52:39 PM,04/25/2016 01:52:39 PM,Other,05/23/2013 02:16:54 PM,MARKET ST/VAN NESS AV,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Mission,"(37.7751470741622, -122.419255607214)",131430230-E05 -133040204,E41,13103277,Medical Incident,10/31/2013,10/31/2013,10/31/2013 01:22:12 PM,10/31/2013 01:22:29 PM,10/31/2013 01:23:02 PM,10/31/2013 01:23:55 PM,10/31/2013 01:25:56 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/31/2013 01:25:09 PM,CLAY ST/TAYLOR ST,SF,94108,B01,41,1444,3,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7934323938956, -122.412829216622)",133040204-E41 -140740375,RC2,14025177,Medical Incident,03/15/2014,03/15/2014,03/15/2014 08:22:16 PM,03/15/2014 08:23:01 PM,03/15/2014 08:24:57 PM,03/15/2014 08:26:19 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Code 2 Transport,03/15/2014 08:28:54 PM,2800 Block of 19TH AVE,SAN FRANCISCO,94132,B08,19,7413,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,7,West of Twin Peaks,"(37.7353187711004, -122.47501281141)",140740375-RC2 -131930232,E03,13065691,Medical Incident,07/12/2013,07/12/2013,07/12/2013 04:43:44 PM,07/12/2013 04:44:17 PM,07/12/2013 04:44:45 PM,04/25/2016 01:51:50 PM,07/12/2013 04:46:35 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 04:50:04 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",131930232-E03 -160451352,KM11,16018087,Medical Incident,02/14/2016,02/14/2016,02/14/2016 11:23:59 AM,02/14/2016 11:24:25 AM,02/14/2016 11:24:44 AM,02/14/2016 11:25:15 AM,02/14/2016 11:29:49 AM,02/14/2016 11:45:15 AM,02/14/2016 12:07:41 PM,Code 2 Transport,02/14/2016 12:24:10 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160451352-KM11 -132560188,T13,13086540,Medical Incident,09/13/2013,09/13/2013,09/13/2013 01:27:50 PM,09/13/2013 01:28:21 PM,09/13/2013 01:29:01 PM,09/13/2013 01:30:14 PM,09/13/2013 01:32:54 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 01:36:08 PM,400 Block of MONTGOMERY ST,SF,94104,B01,13,1234,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7933243681385, -122.4027937497)",132560188-T13 -133260207,E36,13110733,Structure Fire,11/22/2013,11/22/2013,11/22/2013 01:58:46 PM,11/22/2013 01:58:46 PM,11/22/2013 01:59:21 PM,04/25/2016 01:49:38 PM,11/22/2013 02:04:13 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 02:06:39 PM,0 Block of CASTRO ST,SF,94114,B05,6,513,3,3,3,true,Alarm,1,ENGINE,3,5,8,Castro/Upper Market,"(37.7681974804348, -122.435640192922)",133260207-E36 -160493532,71,16019879,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:45:18 PM,02/18/2016 08:45:18 PM,02/18/2016 08:47:14 PM,02/18/2016 08:47:20 PM,02/18/2016 08:56:38 PM,02/18/2016 09:14:14 PM,02/18/2016 09:26:30 PM,Code 2 Transport,02/18/2016 10:10:03 PM,400 Block of FREDERICK ST,San Francisco,94117,B05,12,4551,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7665369786005, -122.452132605079)",160493532-71 -121500314,AM18,12049863,Medical Incident,05/29/2012,05/29/2012,05/29/2012 09:41:13 PM,05/29/2012 09:42:44 PM,05/29/2012 09:42:52 PM,05/29/2012 09:43:23 PM,05/29/2012 09:50:44 PM,05/29/2012 10:06:10 PM,05/29/2012 10:25:16 PM,Code 2 Transport,05/29/2012 10:58:21 PM,500 Block of BAY ST,SF,94133,B01,28,1425,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",121500314-AM18 -111500305,E02,11049813,Medical Incident,05/30/2011,05/30/2011,05/30/2011 09:01:49 PM,05/30/2011 09:02:50 PM,05/30/2011 09:03:04 PM,05/30/2011 09:04:28 PM,05/30/2011 09:06:33 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 09:15:34 PM,1100 Block of KEARNY ST,SF,94133,B01,2,1251,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.798837491664, -122.405548432613)",111500305-E02 -160200970,60,16007946,Medical Incident,01/20/2016,01/20/2016,01/20/2016 09:12:34 AM,01/20/2016 09:14:35 AM,01/20/2016 09:15:12 AM,01/20/2016 09:16:05 AM,01/20/2016 09:26:58 AM,01/20/2016 09:34:59 AM,01/20/2016 09:46:58 AM,Code 2 Transport,01/20/2016 10:50:28 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1548,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",160200970-60 -122000340,E41,12066603,Medical Incident,07/18/2012,07/18/2012,07/18/2012 07:42:34 PM,07/18/2012 07:44:55 PM,07/18/2012 07:45:37 PM,07/18/2012 07:45:58 PM,07/18/2012 07:47:14 PM,04/25/2016 01:57:39 PM,04/25/2016 01:57:39 PM,Other,07/18/2012 08:00:40 PM,2500 Block of LARKIN ST,SF,94109,B01,41,1625,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8012870809778, -122.421228710563)",122000340-E41 -111450193,E36,11048189,Structure Fire,05/25/2011,05/25/2011,05/25/2011 02:52:43 PM,05/25/2011 02:52:43 PM,05/25/2011 02:53:06 PM,05/25/2011 02:54:33 PM,05/25/2011 02:55:25 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Fire,05/25/2011 02:56:11 PM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5111,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7726641818375, -122.418338317697)",111450193-E36 -132580029,T05,13087142,Structure Fire,09/15/2013,09/14/2013,09/15/2013 01:51:35 AM,09/15/2013 01:51:35 AM,09/15/2013 01:52:11 AM,09/15/2013 01:53:44 AM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/15/2013 01:57:20 AM,WEBSTER ST/CLAY ST,SF,94115,B04,38,3466,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7909199784308, -122.432561650806)",132580029-T05 -110250032,E43,11008097,Medical Incident,01/25/2011,01/24/2011,01/25/2011 02:19:09 AM,01/25/2011 02:20:53 AM,01/25/2011 02:21:45 AM,01/25/2011 02:23:46 AM,01/25/2011 02:25:47 AM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/25/2011 02:30:01 AM,4700 Block of MISSION ST,SF,94112,B09,43,6121,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7219915768943, -122.436749760121)",110250032-E43 -121440067,E02,12047736,Medical Incident,05/23/2012,05/22/2012,05/23/2012 07:31:11 AM,05/23/2012 07:34:10 AM,05/23/2012 07:34:37 AM,05/23/2012 07:36:30 AM,05/23/2012 07:37:09 AM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Other,05/23/2012 07:53:10 AM,800 Block of VALLEJO ST,SF,94133,B01,2,1421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.798323215746, -122.411286922682)",121440067-E02 -160090737,75,16003559,Medical Incident,01/09/2016,01/08/2016,01/09/2016 07:57:46 AM,01/09/2016 07:58:19 AM,01/09/2016 07:58:33 AM,01/09/2016 07:59:03 AM,01/09/2016 08:03:36 AM,01/09/2016 08:18:08 AM,01/09/2016 08:23:58 AM,Code 2 Transport,01/09/2016 08:49:03 AM,1100 Block of PINE ST,San Francisco,94109,B01,41,1464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7904931635277, -122.414117159154)",160090737-75 -123560152,E07,12119112,Medical Incident,12/21/2012,12/21/2012,12/21/2012 11:33:42 AM,12/21/2012 11:34:25 AM,12/21/2012 11:34:32 AM,12/21/2012 11:34:37 AM,12/21/2012 11:35:40 AM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 11:45:03 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",123560152-E07 -122390176,E34,12079130,Medical Incident,08/26/2012,08/26/2012,08/26/2012 01:58:52 PM,08/26/2012 01:59:17 PM,08/26/2012 01:59:33 PM,08/26/2012 02:00:19 PM,08/26/2012 02:01:33 PM,04/25/2016 01:57:03 PM,04/25/2016 01:57:03 PM,Other,08/26/2012 02:13:35 PM,500 Block of 42ND AVE,SF,94121,B07,34,7264,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7782935625687, -122.502945688959)",122390176-E34 -112740375,54,11090779,Medical Incident,10/01/2011,10/01/2011,10/01/2011 08:27:18 PM,10/01/2011 08:29:34 PM,10/01/2011 08:31:37 PM,10/01/2011 08:31:55 PM,10/01/2011 08:37:05 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Patient Declined Transport,10/01/2011 09:15:44 PM,700 Block of CAPITOL AVE,SF,94112,B09,33,8373,1,1,2,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7170286522761, -122.459137060052)",112740375-54 -160911125,56,16036025,Medical Incident,03/31/2016,03/31/2016,03/31/2016 10:16:47 AM,03/31/2016 10:16:47 AM,03/31/2016 10:17:33 AM,03/31/2016 10:17:33 AM,03/31/2016 10:23:35 AM,03/31/2016 10:37:42 AM,03/31/2016 10:46:09 AM,Code 2 Transport,03/31/2016 10:59:07 AM,700 Block of MINNA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7763745623724, -122.413346205922)",160911125-56 -131220311,RS1,13041126,Medical Incident,05/02/2013,05/02/2013,05/02/2013 03:55:28 PM,05/02/2013 03:56:34 PM,05/02/2013 03:58:07 PM,05/02/2013 03:58:20 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 04:00:25 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7807920802753, -122.408385745499)",131220311-RS1 -111110285,B03,11036743,Alarms,04/21/2011,04/21/2011,04/21/2011 05:24:35 PM,04/21/2011 05:24:59 PM,04/21/2011 05:27:34 PM,04/21/2011 05:28:59 PM,04/21/2011 05:31:23 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Fire,04/21/2011 05:33:36 PM,1500 Block of 4TH ST,SF,94158,B03,8,2366,3,3,3,false,,1,CHIEF,2,3,6,Mission Bay,"(37.7691856282366, -122.391094397762)",111110285-B03 -160062771,79,16002515,Medical Incident,01/06/2016,01/06/2016,01/06/2016 05:22:17 PM,01/06/2016 05:23:32 PM,01/06/2016 05:25:58 PM,01/06/2016 05:26:17 PM,01/06/2016 05:52:03 PM,01/06/2016 06:04:55 PM,01/06/2016 06:11:28 PM,Code 2 Transport,01/06/2016 06:48:53 PM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7683148008502, -122.427682264817)",160062771-79 -160671356,77,16026730,Medical Incident,03/07/2016,03/07/2016,03/07/2016 12:14:32 PM,03/07/2016 12:17:00 PM,03/07/2016 12:17:35 PM,03/07/2016 12:17:44 PM,03/07/2016 12:21:08 PM,03/07/2016 12:38:09 PM,03/07/2016 12:47:46 PM,Code 2 Transport,03/07/2016 01:37:39 PM,1900 Block of PALOU AVE,San Francisco,94124,B10,42,6431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7376407906904, -122.397487086449)",160671356-77 -113600190,T12,11119659,Alarms,12/26/2011,12/26/2011,12/26/2011 02:47:19 PM,12/26/2011 02:48:35 PM,12/26/2011 02:48:43 PM,12/26/2011 02:50:28 PM,12/26/2011 02:56:03 PM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 03:08:31 PM,0 Block of MUSIC CONCOURSE DR,SF,94118,B07,22,7744,3,3,3,false,,1,TRUCK,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",113600190-T12 -113270221,57,11108597,Medical Incident,11/23/2011,11/23/2011,11/23/2011 03:14:58 PM,11/23/2011 03:16:39 PM,11/23/2011 03:17:03 PM,11/23/2011 03:17:34 PM,11/23/2011 03:25:48 PM,11/23/2011 03:37:46 PM,11/23/2011 03:52:25 PM,Code 2 Transport,11/23/2011 04:20:51 PM,100 Block of MONETA WAY,SF,94112,B09,33,8347,3,3,3,true,,1,MEDIC,2,9,11,Outer Mission,"(37.7125153301803, -122.450418099402)",113270221-57 -123560054,82,12119032,Medical Incident,12/21/2012,12/20/2012,12/21/2012 04:20:47 AM,12/21/2012 04:21:37 AM,12/21/2012 04:21:55 AM,12/21/2012 04:22:07 AM,12/21/2012 04:24:18 AM,12/21/2012 04:46:10 AM,12/21/2012 04:50:54 AM,Code 2 Transport,12/21/2012 05:31:48 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",123560054-82 -103060266,92,10097961,Medical Incident,11/02/2010,11/02/2010,11/02/2010 02:10:29 PM,11/02/2010 02:10:48 PM,11/02/2010 02:11:22 PM,11/02/2010 02:12:33 PM,11/02/2010 02:21:34 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 02:25:14 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",103060266-92 -160890983,82,16035257,Medical Incident,03/29/2016,03/29/2016,03/29/2016 09:24:14 AM,03/29/2016 09:25:10 AM,03/29/2016 09:34:00 AM,03/29/2016 09:34:00 AM,03/29/2016 09:42:07 AM,03/29/2016 09:53:10 AM,03/29/2016 10:20:55 AM,Code 2 Transport,03/29/2016 11:01:02 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160890983-82 -123130196,E01,12104145,Structure Fire,11/08/2012,11/08/2012,11/08/2012 12:46:21 PM,11/08/2012 12:47:07 PM,11/08/2012 12:47:15 PM,11/08/2012 12:48:29 PM,11/08/2012 12:51:02 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 01:19:35 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7764944808779, -122.411359138357)",123130196-E01 -111660303,E10,11054893,Medical Incident,06/15/2011,06/15/2011,06/15/2011 06:15:01 PM,06/15/2011 06:15:50 PM,06/15/2011 06:17:28 PM,06/15/2011 06:18:44 PM,06/15/2011 06:20:37 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/15/2011 06:34:26 PM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,,1,ENGINE,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",111660303-E10 -131600098,72,13054282,Medical Incident,06/09/2013,06/09/2013,06/09/2013 09:28:24 AM,06/09/2013 09:29:22 AM,06/09/2013 09:30:08 AM,06/09/2013 09:30:16 AM,06/09/2013 09:34:54 AM,06/09/2013 09:41:56 AM,06/09/2013 09:49:05 AM,Code 2 Transport,06/09/2013 10:12:04 AM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7619675295768, -122.417178937573)",131600098-72 -160773118,KM05,16030719,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:37:50 PM,03/17/2016 05:37:50 PM,03/17/2016 05:38:49 PM,03/17/2016 05:39:11 PM,03/17/2016 06:20:31 PM,03/17/2016 06:20:37 PM,03/17/2016 07:04:05 PM,Code 2 Transport,03/17/2016 07:43:15 PM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160773118-KM05 -121620384,55,12053804,Medical Incident,06/10/2012,06/10/2012,06/10/2012 08:16:29 PM,06/10/2012 08:17:05 PM,06/10/2012 08:17:33 PM,06/10/2012 08:17:49 PM,06/10/2012 08:25:44 PM,06/10/2012 08:37:37 PM,06/10/2012 08:56:50 PM,Code 3 Transport,06/10/2012 09:33:43 PM,700 Block of 42ND AVE,SF,94121,B07,34,7263,3,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7745338805976, -122.502672176486)",121620384-55 -140820159,85,14027677,Medical Incident,03/23/2014,03/23/2014,03/23/2014 12:53:24 PM,03/23/2014 12:55:19 PM,03/23/2014 01:00:50 PM,03/23/2014 01:01:37 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,Gone on Arrival,03/23/2014 01:05:35 PM,1200 Block of CASTRO ST,SAN FRANCISCO,94114,B06,24,5515,3,2,2,true,Non Life-threatening,1,MEDIC,3,6,8,Noe Valley,"(37.7516863165838, -122.434194436175)",140820159-85 -140140379,68,14004965,Medical Incident,01/14/2014,01/14/2014,01/14/2014 10:04:39 PM,01/14/2014 10:05:21 PM,01/14/2014 10:05:42 PM,01/14/2014 10:08:23 PM,01/14/2014 10:11:00 PM,01/14/2014 10:20:57 PM,01/14/2014 10:33:19 PM,Code 2 Transport,01/14/2014 11:01:59 PM,1600 Block of 34TH AVE,SF,94122,B08,18,7542,,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7563254807326, -122.492809754043)",140140379-68 -160351528,63,16013805,Medical Incident,02/04/2016,02/04/2016,02/04/2016 11:44:01 AM,02/04/2016 11:44:01 AM,02/04/2016 11:44:33 AM,02/04/2016 11:45:35 AM,02/04/2016 12:00:34 PM,02/04/2016 12:39:58 PM,02/04/2016 12:42:58 PM,Code 2 Transport,02/04/2016 01:39:48 PM,30TH ST/MISSION ST,San Francisco,94110,B06,32,5575,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",160351528-63 -132760150,E12,13093706,Structure Fire,10/03/2013,10/03/2013,10/03/2013 11:50:06 AM,10/03/2013 11:51:28 AM,10/03/2013 11:51:52 AM,10/03/2013 11:52:32 AM,10/03/2013 11:55:48 AM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Other,10/03/2013 11:56:57 AM,3100 Block of FULTON ST,SF,94122,B07,31,7133,3,3,3,true,Alarm,1,ENGINE,2,7,1,Inner Richmond,"(37.7734767861199, -122.465348329956)",132760150-E12 -160910982,55,16036011,Medical Incident,03/31/2016,03/31/2016,03/31/2016 09:35:43 AM,03/31/2016 09:36:42 AM,03/31/2016 09:36:53 AM,03/31/2016 09:36:59 AM,03/31/2016 09:44:19 AM,03/31/2016 09:56:03 AM,03/31/2016 10:16:18 AM,Code 2 Transport,03/31/2016 10:31:18 AM,1200 Block of MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",160910982-55 -111150088,54,11037875,Medical Incident,04/25/2011,04/24/2011,04/25/2011 07:55:22 AM,04/25/2011 07:57:14 AM,04/25/2011 07:58:33 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 08:00:22 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",111150088-54 -113170276,KM12,11105412,Medical Incident,11/13/2011,11/13/2011,11/13/2011 06:17:07 PM,11/13/2011 06:21:21 PM,11/13/2011 06:21:44 PM,11/13/2011 06:27:15 PM,11/13/2011 06:27:32 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/13/2011 06:29:47 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",113170276-KM12 -102360133,E41,10074276,Medical Incident,08/24/2010,08/24/2010,08/24/2010 10:34:01 AM,08/24/2010 10:35:41 AM,08/24/2010 10:36:06 AM,08/24/2010 10:37:16 AM,08/24/2010 10:38:44 AM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/24/2010 10:53:42 AM,1200 Block of HYDE ST,SF,94109,B01,41,1563,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7921390492272, -122.417555588136)",102360133-E41 -160280943,65,16011013,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:21:38 AM,01/28/2016 09:22:57 AM,01/28/2016 09:23:30 AM,01/28/2016 09:23:38 AM,01/28/2016 09:33:30 AM,01/28/2016 09:54:24 AM,01/28/2016 10:10:53 AM,Code 2 Transport,01/28/2016 10:56:45 AM,100 Block of WEST PORTAL AVE,San Francisco,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7387909762377, -122.467948662727)",160280943-65 -102730387,93,10086862,Medical Incident,09/30/2010,09/30/2010,09/30/2010 11:31:09 PM,09/30/2010 11:33:00 PM,09/30/2010 11:33:47 PM,09/30/2010 11:34:14 PM,09/30/2010 11:43:02 PM,09/30/2010 11:54:41 PM,10/01/2010 12:20:30 AM,Code 2 Transport,10/01/2010 12:22:04 AM,0 Block of 9TH ST,SF,94103,B02,36,2337,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7764354063246, -122.415064887666)",102730387-93 -160372349,77,16014748,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:59:28 PM,02/06/2016 03:00:37 PM,02/06/2016 03:01:06 PM,02/06/2016 03:01:18 PM,02/06/2016 03:05:46 PM,02/06/2016 03:19:22 PM,02/06/2016 03:50:37 PM,Code 2 Transport,02/06/2016 04:34:05 PM,700 Block of 3RD ST,San Francisco,94107,B03,8,2172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7785274304406, -122.392246074951)",160372349-77 -133200343,E17,13108870,Medical Incident,11/16/2013,11/16/2013,11/16/2013 10:33:54 PM,11/16/2013 10:35:02 PM,11/16/2013 10:35:55 PM,11/16/2013 10:38:29 PM,11/16/2013 10:41:47 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/16/2013 10:55:42 PM,NEWCOMB AV/KEITH ST,SF,94124,B10,17,6516,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7331034788148, -122.38604554171)",133200343-E17 -123290199,B06,12109434,Other,11/24/2012,11/24/2012,11/24/2012 03:04:20 PM,11/24/2012 03:04:59 PM,11/24/2012 03:05:08 PM,04/25/2016 01:55:39 PM,11/24/2012 03:18:35 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 04:07:40 PM,SAN JOSE AV/29TH ST,SF,94110,B06,32,5625,3,3,3,false,Potentially Life-Threatening,1,CHIEF,3,6,8,Noe Valley,"(37.7439422420021, -122.422669446432)",123290199-B06 -111170016,E17,11038488,Medical Incident,04/27/2011,04/26/2011,04/27/2011 01:34:06 AM,04/27/2011 01:35:35 AM,04/27/2011 01:36:02 AM,04/27/2011 01:37:27 AM,04/27/2011 01:41:04 AM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/27/2011 01:41:17 AM,4500 Block of 3RD ST,SF,94124,B10,17,6515,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7368113615571, -122.390133702873)",111170016-E17 -140970384,93,14032832,Medical Incident,04/07/2014,04/07/2014,04/07/2014 07:33:27 PM,04/07/2014 07:34:05 PM,04/07/2014 07:34:24 PM,04/07/2014 07:34:29 PM,04/07/2014 07:37:35 PM,04/07/2014 07:55:19 PM,04/07/2014 08:03:15 PM,Code 2 Transport,04/07/2014 08:25:16 PM,1300 Block of STOCKTON ST,SAN FRANCISCO,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",140970384-93 -160732509,64,16029068,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:07:01 PM,03/13/2016 07:08:18 PM,03/13/2016 07:08:52 PM,03/13/2016 07:12:41 PM,03/13/2016 07:14:05 PM,03/13/2016 07:19:25 PM,03/13/2016 07:41:18 PM,Code 2 Transport,03/13/2016 08:20:43 PM,400 Block of BAY ST,San Francisco,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054635492679, -122.41441222701)",160732509-64 -113390299,E18,11112456,Medical Incident,12/05/2011,12/05/2011,12/05/2011 06:40:25 PM,12/05/2011 06:42:58 PM,12/05/2011 06:43:08 PM,12/05/2011 06:44:28 PM,12/05/2011 06:47:38 PM,04/25/2016 02:01:18 PM,04/25/2016 02:01:18 PM,Other,12/05/2011 06:52:58 PM,3800 Block of IRVING ST,SF,94122,B08,23,7626,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7625382455946, -122.499087530829)",113390299-E18 -160581200,AM10,16023073,Medical Incident,02/27/2016,02/27/2016,02/27/2016 10:06:45 AM,02/27/2016 10:08:13 AM,02/27/2016 10:08:46 AM,02/27/2016 10:09:13 AM,02/27/2016 10:16:11 AM,02/27/2016 10:26:42 AM,02/27/2016 10:42:05 AM,Code 2 Transport,02/27/2016 11:10:36 AM,MARKET ST/2ND ST,San Francisco,94105,B01,13,1236,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",160581200-AM10 -160621843,88,16024698,Medical Incident,03/02/2016,03/02/2016,03/02/2016 12:49:53 PM,03/02/2016 12:53:51 PM,03/02/2016 12:56:36 PM,03/02/2016 12:56:43 PM,03/02/2016 01:01:00 PM,03/02/2016 01:14:45 PM,03/02/2016 01:30:37 PM,Code 2 Transport,03/02/2016 01:59:16 PM,3700 Block of CALIFORNIA ST,San Francisco,94118,B07,10,449,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",160621843-88 -122550275,60,12084362,Medical Incident,09/11/2012,09/11/2012,09/11/2012 04:40:16 PM,09/11/2012 04:41:46 PM,09/11/2012 04:42:49 PM,09/11/2012 04:43:19 PM,09/11/2012 04:47:59 PM,09/11/2012 04:59:42 PM,09/11/2012 05:09:04 PM,Code 3 Transport,09/11/2012 05:49:44 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7755676420155, -122.412334779681)",122550275-60 -121060349,67,12035280,Medical Incident,04/15/2012,04/15/2012,04/15/2012 09:10:46 PM,04/15/2012 09:12:01 PM,04/15/2012 09:12:12 PM,04/15/2012 09:12:58 PM,04/15/2012 09:16:21 PM,04/15/2012 09:41:20 PM,04/15/2012 09:55:06 PM,Code 2 Transport,04/15/2012 10:32:49 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",121060349-67 -103520321,E28,10113088,Citizen Assist / Service Call,12/18/2010,12/18/2010,12/18/2010 07:17:08 PM,12/18/2010 07:17:37 PM,12/18/2010 07:17:49 PM,12/18/2010 07:18:54 PM,12/18/2010 07:21:50 PM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/18/2010 07:24:54 PM,TAYLOR ST/JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.808214052974, -122.41580242723)",103520321-E28 -160011961,KM13,16000325,Medical Incident,01/01/2016,01/01/2016,01/01/2016 12:49:27 PM,01/01/2016 12:51:11 PM,01/01/2016 12:52:00 PM,01/01/2016 12:52:32 PM,01/01/2016 01:01:11 PM,01/01/2016 01:15:07 PM,01/01/2016 01:36:49 PM,Code 2 Transport,01/01/2016 02:09:17 PM,2400 Block of 16TH AV,San Francisco,94116,B08,40,7376,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7422583060718, -122.472485037175)",160011961-KM13 -160341655,67,16013375,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:38:39 PM,02/03/2016 12:39:52 PM,02/03/2016 12:40:28 PM,02/03/2016 12:40:42 PM,02/03/2016 01:08:44 PM,02/03/2016 01:23:15 PM,02/03/2016 01:40:48 PM,Code 2 Transport,02/03/2016 02:12:12 PM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",160341655-67 -102630154,94,10083185,Medical Incident,09/20/2010,09/20/2010,09/20/2010 11:43:29 AM,09/20/2010 11:44:12 AM,09/20/2010 11:44:58 AM,04/25/2016 02:08:30 PM,09/20/2010 11:45:11 AM,09/20/2010 12:10:30 PM,09/20/2010 12:30:18 PM,Code 2 Transport,09/20/2010 12:57:48 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7908458791509, -122.396300374008)",102630154-94 -132510092,84,13084733,Medical Incident,09/08/2013,09/07/2013,09/08/2013 06:17:14 AM,09/08/2013 06:19:27 AM,09/08/2013 06:19:35 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 06:20:08 AM,1700 Block of PACHECO ST,SF,94116,B08,40,7432,2,2,2,false,Non Life-threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7504469020193, -122.478893566637)",132510092-84 -122170284,54,12072120,Medical Incident,08/04/2012,08/04/2012,08/04/2012 09:33:36 PM,08/04/2012 09:36:02 PM,08/04/2012 09:36:18 PM,08/04/2012 09:36:30 PM,08/04/2012 09:42:49 PM,08/04/2012 09:52:41 PM,08/04/2012 10:00:13 PM,Code 2 Transport,08/04/2012 10:24:04 PM,21ST AV/CLEMENT ST,SF,94121,B07,14,7173,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7822123116523, -122.48059001563)",122170284-54 -111980254,E11,11065388,Electrical Hazard,07/17/2011,07/17/2011,07/17/2011 05:40:09 PM,07/17/2011 05:40:26 PM,07/17/2011 05:40:33 PM,07/17/2011 05:41:52 PM,07/17/2011 05:43:38 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 06:06:20 PM,1600 Block of CHURCH ST,SF,94131,B06,11,5562,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.74490208732, -122.426715270055)",111980254-E11 -132030164,RC1,13068751,Medical Incident,07/22/2013,07/22/2013,07/22/2013 12:19:57 PM,07/22/2013 12:20:55 PM,07/22/2013 12:30:55 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,Other,07/22/2013 12:33:28 PM,7TH ST/BRYANT ST,SF,94103,B03,8,2311,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7742810407569, -122.404748493756)",132030164-RC1 -111700290,75,11056135,Medical Incident,06/19/2011,06/19/2011,06/19/2011 06:46:33 PM,06/19/2011 06:48:21 PM,06/19/2011 06:48:57 PM,06/19/2011 06:49:08 PM,06/19/2011 06:59:14 PM,06/19/2011 07:24:21 PM,06/19/2011 07:45:04 PM,Code 2 Transport,06/19/2011 08:14:08 PM,0 Block of SKYVIEW WAY,SF,94131,B08,20,5352,3,3,3,true,,1,MEDIC,2,8,7,Twin Peaks,"(37.7493307598868, -122.450432551712)",111700290-75 -132570283,KM14,13086986,Medical Incident,09/14/2013,09/14/2013,09/14/2013 05:02:48 PM,09/14/2013 05:03:43 PM,09/14/2013 05:04:24 PM,09/14/2013 05:05:12 PM,09/14/2013 05:33:48 PM,09/14/2013 05:35:38 PM,09/14/2013 06:06:25 PM,Code 2 Transport,09/14/2013 06:22:12 PM,2100 Block of WASHINGTON ST,SF,94109,B04,38,3331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7923752292486, -122.428636628697)",132570283-KM14 -131080111,T13,13036249,Alarms,04/18/2013,04/18/2013,04/18/2013 09:46:17 AM,04/18/2013 09:47:17 AM,04/18/2013 09:47:23 AM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/18/2013 09:52:13 AM,100 Block of TOWNSEND ST,SF,94107,B03,8,2154,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7797688910306, -122.391686434361)",131080111-T13 -160310323,89,16012041,Traffic Collision,01/31/2016,01/30/2016,01/31/2016 02:09:54 AM,01/31/2016 02:09:54 AM,01/31/2016 02:10:43 AM,01/31/2016 02:10:54 AM,01/31/2016 02:14:50 AM,01/31/2016 02:36:58 AM,01/31/2016 02:44:42 AM,Code 2 Transport,01/31/2016 03:35:15 AM,TURK ST/GOUGH ST,San Francisco,94102,B02,36,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,5,Western Addition,"(37.7815356107047, -122.423917826838)",160310323-89 -130610224,E29,13020490,Medical Incident,03/02/2013,03/02/2013,03/02/2013 02:06:18 PM,03/02/2013 02:07:03 PM,03/02/2013 02:07:18 PM,03/02/2013 02:07:56 PM,03/02/2013 02:11:25 PM,04/25/2016 01:54:02 PM,04/25/2016 01:54:02 PM,Other,03/02/2013 02:14:05 PM,3000 Block of 16TH ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7649119117282, -122.421065182856)",130610224-E29 -112700313,B03,11089327,Alarms,09/27/2011,09/27/2011,09/27/2011 07:35:58 PM,09/27/2011 07:37:23 PM,09/27/2011 07:37:32 PM,09/27/2011 07:39:59 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,04/25/2016 02:02:27 PM,Fire,09/27/2011 07:54:36 PM,300 Block of MAIN ST,SF,94105,B03,35,2117,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",112700313-B03 -112830245,E09,11093733,Other,10/10/2011,10/10/2011,10/10/2011 04:12:43 PM,10/10/2011 04:17:59 PM,10/10/2011 04:18:46 PM,10/10/2011 04:19:50 PM,10/10/2011 04:22:50 PM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 05:09:39 PM,1300 Block of FLORIDA ST,SF,94110,B06,9,5615,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7503488296561, -122.409769100991)",112830245-E09 -110040248,T07,11001348,Medical Incident,01/04/2011,01/04/2011,01/04/2011 03:49:48 PM,01/04/2011 03:49:49 PM,01/04/2011 03:49:57 PM,01/04/2011 03:51:46 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/04/2011 03:53:22 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,false,,1,TRUCK,4,6,9,Mission,"(37.7571666434801, -122.416719595074)",110040248-T07 -160061573,55,16002381,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:04:06 PM,01/06/2016 12:05:28 PM,01/06/2016 12:05:45 PM,01/06/2016 12:05:53 PM,01/06/2016 12:20:45 PM,01/06/2016 12:50:54 PM,01/06/2016 01:02:25 PM,Code 2 Transport,01/06/2016 01:44:18 PM,3700 Block of BUCHANAN ST,San Francisco,94123,B04,16,3446,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8045420636578, -122.433697283061)",160061573-55 -131690084,AM16,13057297,Traffic Collision,06/18/2013,06/18/2013,06/18/2013 08:09:54 AM,06/18/2013 08:11:19 AM,06/18/2013 08:14:03 AM,06/18/2013 08:14:03 AM,06/18/2013 08:16:04 AM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,Against Medical Advice,06/18/2013 08:47:09 AM,OFARRELL ST/JONES ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",131690084-AM16 -120510262,E11,12016946,Medical Incident,02/20/2012,02/20/2012,02/20/2012 06:43:48 PM,02/20/2012 06:45:51 PM,02/20/2012 06:47:28 PM,02/20/2012 06:47:52 PM,02/20/2012 06:53:23 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 07:10:39 PM,1000 Block of CAPP ST,SF,94110,B06,11,5534,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7499099820999, -122.417055896284)",120510262-E11 -140210382,E12,14007368,Medical Incident,01/21/2014,01/21/2014,01/21/2014 11:53:26 PM,01/21/2014 11:55:11 PM,01/21/2014 11:55:30 PM,01/21/2014 11:57:17 PM,01/21/2014 11:59:47 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/22/2014 12:02:49 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",140210382-E12 -111840167,E34,11060765,Structure Fire,07/03/2011,07/03/2011,07/03/2011 12:25:08 PM,07/03/2011 12:25:08 PM,07/03/2011 12:28:10 PM,07/03/2011 12:29:37 PM,07/03/2011 12:30:54 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:31:28 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",111840167-E34 -102460035,84,10077613,Medical Incident,09/03/2010,09/02/2010,09/03/2010 02:05:26 AM,09/03/2010 02:06:37 AM,09/03/2010 02:07:03 AM,09/03/2010 02:08:04 AM,09/03/2010 02:12:08 AM,09/03/2010 02:28:30 AM,09/03/2010 02:35:50 AM,Code 2 Transport,09/03/2010 03:16:51 AM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,3,3,true,,1,MEDIC,1,10,9,Bernal Heights,"(37.7363435467508, -122.411122016119)",102460035-84 -160282840,57,16011178,Medical Incident,01/28/2016,01/28/2016,01/28/2016 05:09:15 PM,01/28/2016 05:09:34 PM,01/28/2016 05:09:51 PM,01/28/2016 05:09:57 PM,01/28/2016 05:18:40 PM,01/28/2016 05:34:41 PM,01/28/2016 06:00:44 PM,Code 2 Transport,01/28/2016 06:26:33 PM,700 Block of 7TH AVE,San Francisco,94118,B07,31,7132,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7744017462068, -122.4649459668)",160282840-57 -160433506,AM12,16017472,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:02:07 PM,02/12/2016 09:03:49 PM,02/12/2016 09:03:54 PM,02/12/2016 09:04:25 PM,02/12/2016 09:15:18 PM,02/12/2016 09:23:57 PM,02/12/2016 09:38:48 PM,Code 2 Transport,02/12/2016 09:52:22 PM,300 Block of POTRERO AVE,San Francisco,94110,B02,29,2416,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,10,Mission,"(37.7651317205291, -122.407546004301)",160433506-AM12 -122050013,AM22,12068029,Medical Incident,07/23/2012,07/22/2012,07/23/2012 12:23:34 AM,07/23/2012 12:23:58 AM,07/23/2012 12:24:40 AM,07/23/2012 12:25:22 AM,07/23/2012 12:35:53 AM,07/23/2012 12:54:32 AM,07/23/2012 12:57:19 AM,Code 2 Transport,07/23/2012 01:32:43 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",122050013-AM22 -130510036,E16,13017149,Alarms,02/20/2013,02/19/2013,02/20/2013 04:06:29 AM,02/20/2013 04:08:44 AM,02/20/2013 04:09:04 AM,02/20/2013 04:10:28 AM,02/20/2013 04:13:59 AM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Other,02/20/2013 04:25:04 AM,3600 Block of BAKER ST,SF,94123,B04,16,4321,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.8046972838046, -122.447123829782)",130510036-E16 -120010662,B04,12000574,Alarms,01/01/2012,01/01/2012,01/01/2012 11:37:29 PM,01/01/2012 11:38:46 PM,01/01/2012 11:39:13 PM,01/01/2012 11:41:21 PM,01/01/2012 11:50:00 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 11:52:57 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,false,Alarm,1,CHIEF,3,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",120010662-B04 -133090326,81,13105176,Medical Incident,11/05/2013,11/05/2013,11/05/2013 06:28:52 PM,11/05/2013 06:29:54 PM,11/05/2013 06:31:02 PM,11/05/2013 06:32:58 PM,11/05/2013 06:39:44 PM,11/05/2013 06:54:22 PM,11/05/2013 07:19:20 PM,Code 2 Transport,11/05/2013 07:38:30 PM,3000 Block of 24TH ST,SF,94110,B06,7,5526,3,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Mission,"(37.7525005885994, -122.413250370402)",133090326-81 -140150245,81,14005182,Medical Incident,01/15/2014,01/15/2014,01/15/2014 03:28:43 PM,01/15/2014 03:28:43 PM,01/15/2014 03:29:51 PM,01/15/2014 03:30:51 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 03:38:43 PM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7845991269502, -122.411114048741)",140150245-81 -122290140,KM02,12075840,Medical Incident,08/16/2012,08/16/2012,08/16/2012 11:01:49 AM,08/16/2012 11:03:35 AM,08/16/2012 11:05:18 AM,08/16/2012 11:06:06 AM,08/16/2012 11:11:59 AM,08/16/2012 11:27:11 AM,08/16/2012 11:31:18 AM,Code 2 Transport,08/16/2012 12:04:55 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",122290140-KM02 -112100085,E06,11069256,Medical Incident,07/29/2011,07/29/2011,07/29/2011 09:30:47 AM,07/29/2011 09:31:16 AM,07/29/2011 09:31:32 AM,07/29/2011 09:33:42 AM,07/29/2011 09:37:16 AM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 09:49:08 AM,1500 Block of TURK ST,SF,94115,B05,5,3643,3,3,3,true,,1,ENGINE,2,5,5,Western Addition,"(37.780127937221, -122.434593558604)",112100085-E06 -160540131,65,16021424,Medical Incident,02/23/2016,02/22/2016,02/23/2016 01:31:21 AM,02/23/2016 01:32:30 AM,02/23/2016 01:33:11 AM,02/23/2016 01:33:36 AM,02/23/2016 01:37:44 AM,02/23/2016 01:54:54 AM,02/23/2016 02:45:26 AM,Code 2 Transport,02/23/2016 02:54:09 AM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7562403438982, -122.418755320213)",160540131-65 -160622267,74,16024734,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:28:33 PM,03/02/2016 02:30:14 PM,03/02/2016 02:30:34 PM,03/02/2016 02:31:59 PM,03/02/2016 02:47:06 PM,03/02/2016 03:11:17 PM,03/02/2016 03:16:17 PM,Code 2 Transport,03/02/2016 04:13:26 PM,700 Block of POST ST,San Francisco,94109,B04,3,1543,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7876129515348, -122.414185698261)",160622267-74 -112310278,78,11076359,Traffic Collision,08/19/2011,08/19/2011,08/19/2011 06:28:39 PM,08/19/2011 06:29:29 PM,08/19/2011 06:29:38 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/19/2011 06:32:46 PM,MISSION ST/PARK ST,SF,94110,B06,32,5631,3,3,3,true,,1,MEDIC,4,6,8,Bernal Heights,"(37.7367374807361, -122.424235084303)",112310278-78 -121330238,T03,12044311,Structure Fire,05/12/2012,05/12/2012,05/12/2012 04:40:00 PM,05/12/2012 04:40:00 PM,05/12/2012 04:40:25 PM,05/12/2012 04:41:44 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 04:42:38 PM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",121330238-T03 -160511005,85,16020408,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:49:53 AM,02/20/2016 09:49:53 AM,02/20/2016 09:50:07 AM,02/20/2016 09:50:16 AM,02/20/2016 09:57:57 AM,02/20/2016 10:12:06 AM,02/20/2016 10:17:58 AM,Code 2 Transport,02/20/2016 11:13:19 AM,NANCY PELOSI DR/BOWLING GREEN DR,San Francisco,94118,B07,12,7743,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7703993491685, -122.460107590152)",160511005-85 -103390273,E06,10108596,Medical Incident,12/05/2010,12/05/2010,12/05/2010 05:02:31 PM,12/05/2010 05:02:54 PM,12/05/2010 05:03:46 PM,12/05/2010 05:04:13 PM,12/05/2010 05:06:46 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 05:25:10 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",103390273-E06 -140100141,T13,14003447,Alarms,01/10/2014,01/10/2014,01/10/2014 10:36:49 AM,01/10/2014 10:36:50 AM,01/10/2014 10:36:59 AM,01/10/2014 10:38:43 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/10/2014 10:59:41 AM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,false,Alarm,1,TRUCK,3,1,3,Chinatown,"(37.793872317337, -122.405454714295)",140100141-T13 -160392849,AM16,16015734,Medical Incident,02/08/2016,02/08/2016,02/08/2016 06:00:59 PM,02/08/2016 06:03:11 PM,02/08/2016 06:03:21 PM,02/08/2016 06:04:34 PM,02/08/2016 06:09:19 PM,02/08/2016 06:16:48 PM,02/08/2016 06:27:37 PM,Code 2 Transport,02/08/2016 06:44:58 PM,ARGUELLO BL/CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio Heights,"(37.7856816915684, -122.459178766352)",160392849-AM16 -160022878,71,16000869,Medical Incident,01/02/2016,01/02/2016,01/02/2016 07:06:10 PM,01/02/2016 07:07:42 PM,01/02/2016 07:08:03 PM,01/02/2016 07:08:16 PM,01/02/2016 07:11:50 PM,01/02/2016 07:26:09 PM,01/02/2016 07:34:40 PM,Code 2 Transport,01/02/2016 08:13:00 PM,0 Block of HARTFORD ST,San Francisco,94114,B05,6,5417,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7617484575612, -122.434051954938)",160022878-71 -140460333,E07,14015796,Citizen Assist / Service Call,02/15/2014,02/15/2014,02/15/2014 08:25:53 PM,02/15/2014 08:28:12 PM,02/15/2014 08:28:25 PM,02/15/2014 08:30:18 PM,02/15/2014 08:31:57 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 08:43:44 PM,2200 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7610397684815, -122.419213667994)",140460333-E07 -133120372,E43,13106192,Medical Incident,11/08/2013,11/08/2013,11/08/2013 09:39:12 PM,11/08/2013 09:41:47 PM,11/08/2013 09:42:06 PM,11/08/2013 09:44:03 PM,11/08/2013 09:46:40 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 10:04:12 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,2,2,2,false,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",133120372-E43 -132130134,E15,13071927,Medical Incident,08/01/2013,08/01/2013,08/01/2013 12:05:42 PM,08/01/2013 12:06:44 PM,08/01/2013 12:10:41 PM,08/01/2013 12:12:27 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Other,08/01/2013 12:14:26 PM,500 Block of CARTER ST,SF,94134,B09,43,6245,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",132130134-E15 -123120301,E01,12103927,Medical Incident,11/07/2012,11/07/2012,11/07/2012 06:33:58 PM,11/07/2012 06:34:59 PM,11/07/2012 06:35:19 PM,11/07/2012 06:36:53 PM,11/07/2012 06:40:41 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/07/2012 06:43:40 PM,1200 Block of MISSION ST,SF,94103,B02,36,2336,E,E,3,true,Non Life-threatening,1,ENGINE,3,2,6,South of Market,"(37.7765080370233, -122.414457764634)",123120301-E01 -132950235,E03,13100358,Medical Incident,10/22/2013,10/22/2013,10/22/2013 04:55:26 PM,10/22/2013 04:55:48 PM,10/22/2013 04:56:47 PM,10/22/2013 04:57:42 PM,10/22/2013 05:00:10 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/22/2013 05:06:41 PM,500 Block of LARKIN ST,SF,94102,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",132950235-E03 -160241911,65,16009545,Medical Incident,01/24/2016,01/24/2016,01/24/2016 02:16:29 PM,01/24/2016 02:17:51 PM,01/24/2016 02:18:43 PM,01/24/2016 02:19:25 PM,01/24/2016 02:37:11 PM,01/24/2016 02:41:00 PM,01/24/2016 02:54:29 PM,Code 2 Transport,01/24/2016 03:22:51 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160241911-65 -160670502,62,16026628,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:24:46 AM,03/07/2016 08:25:14 AM,03/07/2016 08:38:12 AM,03/07/2016 08:38:12 AM,03/07/2016 08:38:12 AM,03/07/2016 08:49:45 AM,03/07/2016 09:03:41 AM,Code 2 Transport,03/07/2016 09:49:18 AM,1100 Block of 9TH AVE,San Francisco,94122,B08,22,7333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",160670502-62 -112660149,E01,11087858,Vehicle Fire,09/23/2011,09/23/2011,09/23/2011 11:19:36 AM,09/23/2011 11:21:06 AM,09/23/2011 11:21:13 AM,09/23/2011 11:21:35 AM,09/23/2011 11:24:43 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 11:25:21 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",112660149-E01 -122010041,T01,12066698,Structure Fire,07/19/2012,07/18/2012,07/19/2012 04:23:51 AM,07/19/2012 04:23:51 AM,07/19/2012 04:24:22 AM,07/19/2012 04:27:13 AM,07/19/2012 04:31:07 AM,04/25/2016 01:57:39 PM,04/25/2016 01:57:39 PM,Other,07/19/2012 04:31:29 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,Alarm,1,TRUCK,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",122010041-T01 -160062513,89,16002482,Medical Incident,01/06/2016,01/06/2016,01/06/2016 04:20:26 PM,01/06/2016 04:21:44 PM,01/06/2016 04:22:07 PM,01/06/2016 04:22:11 PM,01/06/2016 04:39:01 PM,01/06/2016 05:06:43 PM,01/06/2016 05:38:28 PM,Code 2 Transport,01/06/2016 06:05:25 PM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7967201326668, -122.41173518546)",160062513-89 -111300303,RWC1,11043068,Water Rescue,05/10/2011,05/10/2011,05/10/2011 06:42:46 PM,05/10/2011 06:43:38 PM,05/10/2011 06:44:01 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 07:32:52 PM,600 Block of MASON ST,PR,94108,B99,51,4613,E,E,3,false,,1,SUPPORT,10,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",111300303-RWC1 -122600032,77,12085806,Medical Incident,09/16/2012,09/15/2012,09/16/2012 01:51:23 AM,09/16/2012 01:53:39 AM,09/16/2012 01:54:11 AM,04/25/2016 01:56:45 PM,09/16/2012 01:57:17 AM,09/16/2012 02:08:50 AM,09/16/2012 02:15:08 AM,Code 2 Transport,09/16/2012 02:40:18 AM,1700 Block of MARKET ST,SF,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7722683129989, -122.423098219736)",122600032-77 -110570296,68,11018851,Medical Incident,02/26/2011,02/26/2011,02/26/2011 07:02:33 PM,02/26/2011 07:04:45 PM,02/26/2011 07:05:03 PM,02/26/2011 07:05:32 PM,02/26/2011 07:08:08 PM,02/26/2011 07:23:08 PM,02/26/2011 07:29:59 PM,Code 2 Transport,02/26/2011 08:10:09 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,MEDIC,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",110570296-68 -140780192,85,14026391,Medical Incident,03/19/2014,03/19/2014,03/19/2014 12:50:13 PM,03/19/2014 12:51:19 PM,03/19/2014 12:52:32 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Other,03/19/2014 12:53:16 PM,3200 Block of 20TH AVE,SAN FRANCISCO,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",140780192-85 -160353523,AM12,16013994,Medical Incident,02/04/2016,02/04/2016,02/04/2016 08:31:13 PM,02/04/2016 08:32:44 PM,02/04/2016 08:34:14 PM,02/04/2016 08:34:52 PM,02/04/2016 08:39:53 PM,02/04/2016 08:52:28 PM,02/04/2016 09:01:34 PM,Code 2 Transport,02/04/2016 09:45:11 PM,BRYANT ST/16TH ST,San Francisco,94110,B02,29,5222,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7656058395036, -122.410486689194)",160353523-AM12 -160653121,65,16026088,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:19:59 PM,03/05/2016 08:19:59 PM,03/05/2016 08:26:58 PM,03/05/2016 08:30:11 PM,03/05/2016 08:46:15 PM,03/05/2016 08:55:49 PM,03/05/2016 09:27:56 PM,Code 2 Transport,03/05/2016 10:12:34 PM,BROADWAY/LARKIN ST,San Francisco,94109,B01,41,1632,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7960945686376, -122.420109525147)",160653121-65 -102530176,E39,10079923,Administrative,09/10/2010,09/10/2010,09/10/2010 11:48:28 AM,09/10/2010 11:48:41 AM,09/10/2010 11:49:06 AM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 11:49:43 AM,1000 Block of PORTOLA DR,SF,94127,B08,39,8572,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7404960254393, -122.458524519728)",102530176-E39 -122910116,AM06,12096290,Medical Incident,10/17/2012,10/17/2012,10/17/2012 09:42:49 AM,10/17/2012 09:44:29 AM,10/17/2012 09:45:41 AM,10/17/2012 09:46:31 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Patient Declined Transport,10/17/2012 10:41:25 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",122910116-AM06 -133410022,67,13115480,Medical Incident,12/07/2013,12/06/2013,12/07/2013 12:58:05 AM,12/07/2013 12:59:46 AM,12/07/2013 01:00:22 AM,12/07/2013 01:00:45 AM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/07/2013 01:07:03 AM,300 Block of FOLSOM ST,SF,94105,B03,35,2122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7884176194702, -122.392965448447)",133410022-67 -103040071,E03,10097028,Medical Incident,10/31/2010,10/30/2010,10/31/2010 02:30:25 AM,10/31/2010 02:31:56 AM,10/31/2010 02:32:43 AM,10/31/2010 02:32:55 AM,10/31/2010 02:34:14 AM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 02:48:30 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",103040071-E03 -113000272,T18,11099577,Medical Incident,10/27/2011,10/27/2011,10/27/2011 04:04:30 PM,10/27/2011 04:05:55 PM,10/27/2011 04:06:14 PM,10/27/2011 04:07:16 PM,10/27/2011 04:09:51 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 04:13:22 PM,TARAVAL ST/32ND AV,SF,94116,B08,18,7546,3,3,3,false,,1,TRUCK,1,8,4,Sunset/Parkside,"(37.742437436698, -122.489620234677)",113000272-T18 -160040861,54,16001517,Medical Incident,01/04/2016,01/04/2016,01/04/2016 08:48:32 AM,01/04/2016 08:49:59 AM,01/04/2016 08:50:27 AM,01/04/2016 08:50:37 AM,01/04/2016 09:18:39 AM,01/04/2016 09:19:14 AM,01/04/2016 09:32:48 AM,Code 2 Transport,01/04/2016 09:58:16 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160040861-54 -140390252,E01,14013245,Medical Incident,02/08/2014,02/08/2014,02/08/2014 04:20:20 PM,02/08/2014 04:21:02 PM,02/08/2014 04:21:41 PM,02/08/2014 04:22:59 PM,02/08/2014 04:24:40 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/08/2014 04:32:03 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",140390252-E01 -110010275,87,11000238,Medical Incident,01/01/2011,12/31/2010,01/01/2011 07:45:22 AM,01/01/2011 07:46:09 AM,01/01/2011 07:46:26 AM,01/01/2011 07:46:37 AM,01/01/2011 07:48:47 AM,01/01/2011 08:21:23 AM,01/01/2011 08:25:38 AM,Code 2 Transport,01/01/2011 09:04:56 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,2,2,2,true,,1,MEDIC,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",110010275-87 -121540104,E03,12050920,Medical Incident,06/02/2012,06/02/2012,06/02/2012 08:50:52 AM,06/02/2012 08:51:01 AM,06/02/2012 08:52:42 AM,06/02/2012 08:53:23 AM,06/02/2012 08:58:30 AM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,No Merit,06/02/2012 08:59:01 AM,POST ST/VAN NESS AV,SF,94109,B04,3,3161,3,E,3,true,Non Life-threatening,1,ENGINE,2,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",121540104-E03 -130740195,E36,13024683,Medical Incident,03/15/2013,03/15/2013,03/15/2013 01:28:37 PM,03/15/2013 01:29:29 PM,03/15/2013 01:30:26 PM,03/15/2013 01:32:10 PM,03/15/2013 01:34:23 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 01:41:39 PM,OTIS ST/MCCOPPIN ST,SF,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7717702499037, -122.420344369487)",130740195-E36 -102850095,82,10090685,Medical Incident,10/12/2010,10/12/2010,10/12/2010 08:33:33 AM,10/12/2010 08:36:05 AM,10/12/2010 08:37:09 AM,10/12/2010 08:37:40 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 08:43:29 AM,19TH AV/KIRKHAM ST,SF,94122,B08,22,7423,3,3,3,true,,1,MEDIC,2,8,7,Inner Sunset,"(37.7598339367344, -122.47681389085)",102850095-82 -160171253,KM12,16006807,Medical Incident,01/17/2016,01/17/2016,01/17/2016 11:11:56 AM,01/17/2016 11:13:57 AM,01/17/2016 11:14:42 AM,01/17/2016 11:18:11 AM,01/17/2016 11:30:18 AM,01/17/2016 11:49:05 AM,01/17/2016 12:10:58 PM,Code 2 Transport,01/17/2016 12:36:30 PM,8TH ST/NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7766609866916, -122.412157954704)",160171253-KM12 -123210183,E18,12106685,Medical Incident,11/16/2012,11/16/2012,11/16/2012 12:45:02 PM,11/16/2012 12:46:52 PM,11/16/2012 12:47:37 PM,11/16/2012 12:48:51 PM,11/16/2012 12:54:49 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/16/2012 01:29:10 PM,2700 Block of 40TH AVE,SF,94116,B08,18,7616,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7355376867029, -122.497802628088)",123210183-E18 -120420089,E41,12013954,Medical Incident,02/11/2012,02/10/2012,02/11/2012 06:50:36 AM,02/11/2012 06:51:51 AM,02/11/2012 06:52:29 AM,02/11/2012 06:54:19 AM,02/11/2012 06:57:27 AM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 07:02:54 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,2,2,2,false,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",120420089-E41 -103510012,E13,10112450,Medical Incident,12/17/2010,12/16/2010,12/17/2010 12:42:29 AM,12/17/2010 12:44:34 AM,12/17/2010 12:46:41 AM,12/17/2010 12:48:15 AM,12/17/2010 12:49:24 AM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,Patient Declined Transport,12/17/2010 12:59:14 AM,300 Block of BATTERY ST,SF,94111,B01,13,1161,2,2,2,true,,1,ENGINE,1,1,3,Chinatown,"(37.7947853577882, -122.400352669798)",103510012-E13 -132730309,T18,13092871,Alarms,09/30/2013,09/30/2013,09/30/2013 06:11:55 PM,09/30/2013 06:13:25 PM,09/30/2013 06:13:43 PM,09/30/2013 06:15:13 PM,09/30/2013 06:17:41 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 06:30:27 PM,3600 Block of NORIEGA ST,SF,94122,B08,23,7662,3,3,3,true,Alarm,1,TRUCK,1,8,4,Sunset/Parkside,"(37.7531373876101, -122.502730775255)",132730309-T18 -120840060,E13,12027801,Structure Fire,03/24/2012,03/23/2012,03/24/2012 04:04:30 AM,03/24/2012 04:04:31 AM,03/24/2012 04:04:40 AM,03/24/2012 04:08:54 AM,03/24/2012 04:09:16 AM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Other,03/24/2012 04:09:54 AM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7895620432155, -122.402161869829)",120840060-E13 -160531759,55,16021213,Medical Incident,02/22/2016,02/22/2016,02/22/2016 01:39:21 PM,02/22/2016 01:39:37 PM,02/22/2016 01:40:02 PM,02/22/2016 01:41:19 PM,02/22/2016 02:19:16 PM,02/22/2016 02:19:18 PM,02/22/2016 03:07:47 PM,Code 2 Transport,02/22/2016 03:41:25 PM,30TH ST/MISSION ST,San Francisco,94110,B06,32,5575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",160531759-55 -133630246,86,13123365,Medical Incident,12/29/2013,12/29/2013,12/29/2013 05:36:36 PM,12/29/2013 05:39:18 PM,12/29/2013 05:40:19 PM,12/29/2013 05:40:29 PM,12/29/2013 05:52:20 PM,12/29/2013 06:07:28 PM,12/29/2013 06:22:12 PM,Code 2 Transport,12/29/2013 06:50:55 PM,400 Block of GONZALEZ DR,SF,94132,B08,19,8481,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.716122935371, -122.476494710163)",133630246-86 -131910355,AM18,13065191,Medical Incident,07/10/2013,07/10/2013,07/10/2013 11:34:27 PM,07/10/2013 11:35:31 PM,07/10/2013 11:36:23 PM,07/10/2013 11:37:05 PM,07/10/2013 11:42:54 PM,07/10/2013 11:45:41 PM,07/11/2013 12:05:12 AM,Code 2 Transport,07/11/2013 12:28:40 AM,1200 Block of REVERE AVE,SF,94124,B10,17,6634,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7280000551487, -122.383581434035)",131910355-AM18 -113260148,T09,11108210,Structure Fire,11/22/2011,11/22/2011,11/22/2011 10:30:31 AM,11/22/2011 10:30:32 AM,11/22/2011 10:31:12 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,04/25/2016 02:01:31 PM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,562,3,3,3,false,,1,TRUCK,3,6,9,Bernal Heights,"(37.748166431151, -122.412573078107)",113260148-T09 -113620294,AM06,11120350,Medical Incident,12/28/2011,12/28/2011,12/28/2011 05:53:14 PM,12/28/2011 05:54:02 PM,12/28/2011 05:55:20 PM,12/28/2011 05:55:51 PM,12/28/2011 06:04:07 PM,12/28/2011 06:10:38 PM,12/28/2011 06:50:11 PM,Code 2 Transport,12/28/2011 07:12:56 PM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,2,2,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",113620294-AM06 -133430372,AM10,13116480,Medical Incident,12/09/2013,12/09/2013,12/09/2013 09:02:48 PM,12/09/2013 09:04:17 PM,12/09/2013 09:17:15 PM,04/25/2016 01:49:21 PM,12/09/2013 09:22:33 PM,12/09/2013 09:38:53 PM,12/09/2013 09:49:50 PM,Code 2 Transport,12/09/2013 10:26:29 PM,FRANKLIN ST/MCALLISTER ST,SF,94102,B02,36,3215,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7798901049166, -122.42189157233)",133430372-AM10 -102910079,93,10092734,Medical Incident,10/18/2010,10/17/2010,10/18/2010 07:49:39 AM,10/18/2010 07:53:09 AM,10/18/2010 07:55:06 AM,10/18/2010 07:55:24 AM,10/18/2010 08:09:51 AM,10/18/2010 08:52:52 AM,10/18/2010 09:06:58 AM,Code 2 Transport,10/18/2010 09:51:58 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",102910079-93 -160181214,91,16007195,Medical Incident,01/18/2016,01/18/2016,01/18/2016 11:14:48 AM,01/18/2016 11:16:20 AM,01/18/2016 11:16:46 AM,01/18/2016 11:17:06 AM,01/18/2016 11:27:00 AM,01/18/2016 11:37:26 AM,01/18/2016 11:41:08 AM,Code 2 Transport,01/18/2016 12:13:57 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160181214-91 -102500114,E23,10078945,Alarms,09/07/2010,09/07/2010,09/07/2010 10:14:16 AM,09/07/2010 10:15:05 AM,09/07/2010 10:15:13 AM,09/07/2010 10:15:33 AM,09/07/2010 10:16:15 AM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Fire,09/07/2010 10:21:08 AM,4100 Block of LAWTON ST,SF,94122,B08,23,7724,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7566771525392, -122.507274525432)",102500114-E23 -133320059,E28,13112585,Medical Incident,11/28/2013,11/27/2013,11/28/2013 07:22:23 AM,11/28/2013 07:22:55 AM,11/28/2013 07:23:19 AM,11/28/2013 07:25:38 AM,11/28/2013 07:28:32 AM,04/25/2016 01:49:33 PM,04/25/2016 01:49:33 PM,Other,11/28/2013 07:30:25 AM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8084325058333, -122.410757587167)",133320059-E28 -160872954,KM12,16034686,Medical Incident,03/27/2016,03/27/2016,03/27/2016 06:53:11 PM,03/27/2016 06:53:33 PM,03/27/2016 06:53:53 PM,03/27/2016 06:54:40 PM,03/27/2016 07:01:22 PM,03/27/2016 07:28:04 PM,03/27/2016 07:41:18 PM,Code 2 Transport,03/27/2016 08:28:20 PM,400 Block of BEALE ST,San Francisco,94105,B03,35,2123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",160872954-KM12 -120800364,KM07,12026724,Medical Incident,03/20/2012,03/20/2012,03/20/2012 10:43:11 PM,03/20/2012 10:44:05 PM,03/20/2012 10:44:19 PM,03/20/2012 10:45:01 PM,03/20/2012 10:49:07 PM,03/20/2012 10:55:12 PM,03/20/2012 11:12:29 PM,Code 2 Transport,03/20/2012 11:28:59 PM,100 Block of BROAD ST,SF,94112,B09,33,8374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7131278901995, -122.45753811019)",120800364-KM07 -160273071,68,16010806,Medical Incident,01/27/2016,01/27/2016,01/27/2016 06:13:24 PM,01/27/2016 06:14:01 PM,01/27/2016 06:14:29 PM,01/27/2016 06:17:11 PM,01/27/2016 06:17:13 PM,01/27/2016 06:25:48 PM,01/27/2016 07:22:06 PM,Code 2 Transport,01/27/2016 07:22:09 PM,PACIFIC AV/MASON ST,San Francisco,94133,B01,2,1416,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7962907638042, -122.411718940358)",160273071-68 -131140374,AM10,13038600,Medical Incident,04/24/2013,04/24/2013,04/24/2013 09:34:34 PM,04/24/2013 09:37:05 PM,04/24/2013 09:37:24 PM,04/24/2013 09:37:43 PM,04/24/2013 09:52:06 PM,04/24/2013 10:05:15 PM,04/24/2013 10:19:11 PM,Code 2 Transport,04/24/2013 10:41:53 PM,BRYANT ST/2ND ST,SF,94107,B03,8,2152,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7830778523618, -122.393618077491)",131140374-AM10 -122510242,T10,12083044,Structure Fire,09/07/2012,09/07/2012,09/07/2012 03:37:02 PM,09/07/2012 03:37:03 PM,09/07/2012 03:37:22 PM,09/07/2012 03:40:00 PM,09/07/2012 03:41:44 PM,04/25/2016 01:56:52 PM,04/25/2016 01:56:52 PM,Other,09/07/2012 03:50:38 PM,1400 Block of SCOTT ST,SF,94115,B04,5,413,3,3,3,true,Alarm,1,TRUCK,3,4,5,Western Addition,"(37.7831990201184, -122.437672374097)",122510242-T10 -131170211,E01,13039378,Medical Incident,04/27/2013,04/27/2013,04/27/2013 02:53:19 PM,04/27/2013 02:54:53 PM,04/27/2013 02:56:01 PM,04/27/2013 02:57:26 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/27/2013 02:58:24 PM,500 Block of STEVENSON ST,SF,94103,B03,1,2248,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7808489821495, -122.410772584803)",131170211-E01 -123150025,E16,12104702,Medical Incident,11/10/2012,11/09/2012,11/10/2012 01:33:57 AM,11/10/2012 01:35:27 AM,11/10/2012 01:36:17 AM,11/10/2012 01:38:23 AM,11/10/2012 01:40:16 AM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/10/2012 01:50:55 AM,2300 Block of VALLEJO ST,SF,94123,B04,16,3551,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7950666971892, -122.435926166434)",123150025-E16 -131540392,E34,13052342,Medical Incident,06/03/2013,06/03/2013,06/03/2013 09:50:04 PM,06/03/2013 09:52:50 PM,06/03/2013 09:54:54 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 09:55:41 PM,600 Block of 35TH AVE,SF,94121,B07,34,7251,2,2,2,false,Non Life-threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7767418414704, -122.495311729801)",131540392-E34 -160630081,AM18,16024916,Medical Incident,03/03/2016,03/02/2016,03/03/2016 12:36:04 AM,03/03/2016 12:37:01 AM,03/03/2016 12:38:32 AM,03/03/2016 12:39:17 AM,03/03/2016 01:03:04 AM,03/03/2016 01:11:54 AM,03/03/2016 01:22:30 AM,Code 2 Transport,03/03/2016 01:57:08 AM,0 Block of RAUSCH ST,San Francisco,94103,B03,1,2314,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7764436831324, -122.409774801363)",160630081-AM18 -123380230,KM07,12112730,Medical Incident,12/03/2012,12/03/2012,12/03/2012 01:57:56 PM,12/03/2012 01:59:57 PM,12/03/2012 02:01:10 PM,12/03/2012 02:01:43 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 02:05:38 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,South of Market,"(37.7768521020734, -122.410711239368)",123380230-KM07 -131000224,E14,13033634,Medical Incident,04/10/2013,04/10/2013,04/10/2013 01:49:17 PM,04/10/2013 01:49:49 PM,04/10/2013 01:50:01 PM,04/10/2013 01:52:58 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,04/25/2016 01:53:23 PM,Other,04/10/2013 01:58:48 PM,300 Block of CLEMENT ST,SF,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.7830686073978, -122.462818636024)",131000224-E14 -123630306,AM10,12121580,Medical Incident,12/28/2012,12/28/2012,12/28/2012 07:52:01 PM,12/28/2012 07:52:49 PM,12/28/2012 07:53:54 PM,12/28/2012 07:53:55 PM,12/28/2012 07:59:12 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Against Medical Advice,12/28/2012 08:20:04 PM,5TH ST/MISSION ST,SF,94103,B03,1,2246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",123630306-AM10 -122030032,B01,12067334,Alarms,07/21/2012,07/20/2012,07/21/2012 02:08:47 AM,07/21/2012 02:10:17 AM,07/21/2012 02:10:42 AM,07/21/2012 02:12:45 AM,07/21/2012 02:14:18 AM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 02:24:53 AM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.7917657997993, -122.407489250227)",122030032-B01 -123180215,AM04,12105787,Medical Incident,11/13/2012,11/13/2012,11/13/2012 01:54:53 PM,11/13/2012 01:57:35 PM,11/13/2012 01:59:03 PM,11/13/2012 02:00:09 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,04/25/2016 01:55:49 PM,600 Block of 46TH AVE,SF,94121,B07,34,7276,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7766726235142, -122.506990057361)",123180215-AM04 -113040097,E51,11100861,Traffic Collision,10/31/2011,10/31/2011,10/31/2011 08:54:25 AM,10/31/2011 08:55:37 AM,10/31/2011 08:55:56 AM,10/31/2011 08:58:19 AM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 09:03:33 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",113040097-E51 -160020769,63,16000655,Medical Incident,01/02/2016,01/02/2016,01/02/2016 08:38:41 AM,01/02/2016 08:40:42 AM,01/02/2016 08:40:53 AM,01/02/2016 08:41:05 AM,01/02/2016 08:55:42 AM,01/02/2016 09:16:41 AM,01/02/2016 09:26:39 AM,Code 2 Transport,01/02/2016 09:54:01 AM,3400 Block of MARKET ST,San Francisco,94114,B05,24,5271,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7569301468399, -122.44269078808)",160020769-63 -132200289,T08,13074403,Alarms,08/08/2013,08/08/2013,08/08/2013 06:43:40 PM,08/08/2013 06:44:48 PM,08/08/2013 06:44:58 PM,08/08/2013 06:46:30 PM,08/08/2013 06:48:21 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 07:12:51 PM,100 Block of BERRY ST,SF,94107,B03,8,2171,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7767092171499, -122.392287121307)",132200289-T08 -160822183,AM16,16032600,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:36:17 PM,03/22/2016 02:36:44 PM,03/22/2016 02:37:09 PM,03/22/2016 02:37:52 PM,03/22/2016 02:39:43 PM,03/22/2016 02:56:10 PM,03/22/2016 03:22:48 PM,Code 2 Transport,03/22/2016 03:51:45 PM,0 Block of WASHBURN ST,San Francisco,94103,B02,36,2336,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",160822183-AM16 -112680260,B10,11088647,Traffic Collision,09/25/2011,09/25/2011,09/25/2011 04:22:37 PM,09/25/2011 04:26:16 PM,09/25/2011 04:28:33 PM,09/25/2011 04:29:55 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 04:32:05 PM,100 Block of SAN BRUNO AVE,SF,94103,B10,42,6337,3,3,3,false,,1,CHIEF,5,2,10,Mission,"(37.7690702954409, -122.405814382975)",112680260-B10 -131700051,E01,13057627,Medical Incident,06/19/2013,06/18/2013,06/19/2013 06:46:25 AM,06/19/2013 06:46:54 AM,06/19/2013 06:47:25 AM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/19/2013 06:48:53 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",131700051-E01 -131600220,E33,13054386,Medical Incident,06/09/2013,06/09/2013,06/09/2013 03:17:21 PM,06/09/2013 03:18:08 PM,06/09/2013 03:18:31 PM,06/09/2013 03:20:55 PM,06/09/2013 03:24:52 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 03:33:44 PM,300 Block of ROME ST,SF,94112,B09,33,8344,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7160634247508, -122.448008831975)",131600220-E33 -160331499,53,16012967,Medical Incident,02/02/2016,02/02/2016,02/02/2016 12:09:51 PM,02/02/2016 12:09:51 PM,02/02/2016 12:10:04 PM,02/02/2016 12:10:23 PM,02/02/2016 12:19:53 PM,02/02/2016 12:49:12 PM,02/02/2016 01:21:50 PM,Code 2 Transport,02/02/2016 03:03:25 PM,400 Block of THE EMBARCADERO,San Francisco,94111,B03,35,926,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",160331499-53 -160851095,KM09,16033698,Medical Incident,03/25/2016,03/25/2016,03/25/2016 09:31:59 AM,03/25/2016 09:32:53 AM,03/25/2016 09:33:37 AM,03/25/2016 09:35:26 AM,03/25/2016 09:43:06 AM,03/25/2016 10:09:51 AM,03/25/2016 10:35:19 AM,Code 2 Transport,03/25/2016 10:56:36 AM,600 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7112,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.778667674124, -122.458753852199)",160851095-KM09 -111450024,E03,11048052,Structure Fire,05/25/2011,05/24/2011,05/25/2011 03:02:10 AM,05/25/2011 03:02:10 AM,05/25/2011 03:02:18 AM,05/25/2011 03:03:18 AM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/25/2011 03:04:17 AM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,true,,1,ENGINE,4,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",111450024-E03 -160151097,77,16005914,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:54:39 AM,01/15/2016 09:56:48 AM,01/15/2016 09:57:10 AM,01/15/2016 10:01:03 AM,01/15/2016 10:13:56 AM,01/15/2016 10:25:40 AM,01/15/2016 10:43:52 AM,Code 2 Transport,01/15/2016 11:12:51 AM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7658582826035, -122.419816092644)",160151097-77 -122900368,85,12096135,Medical Incident,10/16/2012,10/16/2012,10/16/2012 08:37:42 PM,10/16/2012 08:40:05 PM,10/16/2012 08:40:39 PM,10/16/2012 08:41:14 PM,04/25/2016 01:56:16 PM,10/16/2012 09:08:43 PM,10/16/2012 09:20:59 PM,Code 2 Transport,10/16/2012 09:32:57 PM,1000 Block of POTRERO AVE,SF,94110,B10,37,2552,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Potrero Hill,"(37.7553586640566, -122.406682612344)",122900368-85 -103110131,E17,10099691,Medical Incident,11/07/2010,11/07/2010,11/07/2010 09:31:12 AM,11/07/2010 09:31:37 AM,11/07/2010 09:32:00 AM,11/07/2010 09:32:33 AM,11/07/2010 09:35:49 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 09:52:09 AM,1700 Block of QUESADA AVE,SF,94124,B10,17,6514,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7337337198014, -122.392373013913)",103110131-E17 -140170265,RC3,14005897,Structure Fire,01/17/2014,01/17/2014,01/17/2014 04:51:44 PM,01/17/2014 04:52:23 PM,01/17/2014 05:02:49 PM,01/17/2014 05:03:13 PM,01/17/2014 05:21:31 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 05:22:58 PM,1200 Block of DOLORES ST,SF,94110,B06,11,5536,,3,3,true,Fire,1,RESCUE CAPTAIN,11,6,8,Mission,"(37.7498423670065, -122.424811056864)",140170265-RC3 -160900042,AM22,16035534,Medical Incident,03/30/2016,03/29/2016,03/30/2016 12:16:59 AM,03/30/2016 12:20:01 AM,03/30/2016 12:20:13 AM,03/30/2016 12:20:46 AM,03/30/2016 12:25:09 AM,03/30/2016 12:45:32 AM,03/30/2016 01:16:09 AM,Code 2 Transport,03/30/2016 01:55:32 AM,0 Block of OCTAVIA ST,San Francisco,94102,B02,36,3311,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7724905924387, -122.423895801258)",160900042-AM22 -160850616,55,16033661,Medical Incident,03/25/2016,03/24/2016,03/25/2016 07:13:17 AM,03/25/2016 07:13:17 AM,03/25/2016 07:13:34 AM,03/25/2016 07:13:41 AM,03/25/2016 07:23:19 AM,03/25/2016 07:47:43 AM,03/25/2016 08:00:13 AM,Code 2 Transport,03/25/2016 08:36:39 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160850616-55 -133360245,E03,13113939,Medical Incident,12/02/2013,12/02/2013,12/02/2013 04:02:50 PM,12/02/2013 04:02:51 PM,12/02/2013 04:03:16 PM,12/02/2013 04:03:50 PM,12/02/2013 04:06:24 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Fire,12/02/2013 04:14:45 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,true,Non Life-threatening,1,ENGINE,1,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",133360245-E03 -121810029,E01,12060136,Medical Incident,06/29/2012,06/28/2012,06/29/2012 02:09:18 AM,06/29/2012 02:10:21 AM,06/29/2012 02:11:15 AM,06/29/2012 02:12:54 AM,06/29/2012 02:16:44 AM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/29/2012 02:21:05 AM,MARKET ST/GRANT AV,SF,94103,B01,1,1241,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,6,Financial District/South Beach,"(37.7867305655456, -122.4045833182)",121810029-E01 -131080334,RS1,13036440,Structure Fire,04/18/2013,04/18/2013,04/18/2013 09:51:08 PM,04/18/2013 09:52:32 PM,04/18/2013 09:52:46 PM,04/18/2013 09:54:30 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Other,04/18/2013 10:13:46 PM,1500 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,false,Alarm,1,RESCUE SQUAD,8,5,5,Haight Ashbury,"(37.7698484993497, -122.447745343044)",131080334-RS1 -102250148,D2,10070826,Structure Fire,08/13/2010,08/13/2010,08/13/2010 12:48:55 PM,08/13/2010 12:49:18 PM,08/13/2010 12:49:31 PM,08/13/2010 12:50:00 PM,08/13/2010 12:56:56 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 01:05:58 PM,300 Block of 21ST AVE,SF,94121,B07,14,7172,3,3,3,false,,1,CHIEF,6,7,1,Outer Richmond,"(37.781249414803, -122.480451228822)",102250148-D2 -160790448,78,16031297,Medical Incident,03/19/2016,03/18/2016,03/19/2016 03:35:19 AM,03/19/2016 03:38:24 AM,03/19/2016 03:40:55 AM,03/19/2016 03:41:06 AM,03/19/2016 04:06:05 AM,03/19/2016 04:43:28 AM,03/19/2016 04:50:37 AM,Code 2 Transport,03/19/2016 05:49:51 AM,VALENCIA ST/DUBOCE AV,San Francisco,94103,B02,36,5126,B,B,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7698676980277, -122.422364819149)",160790448-78 -122220303,RS2,12073690,Medical Incident,08/09/2012,08/09/2012,08/09/2012 06:46:34 PM,08/09/2012 06:46:56 PM,08/09/2012 06:47:19 PM,08/09/2012 06:48:19 PM,08/09/2012 06:50:29 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,Other,08/09/2012 06:57:10 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",122220303-RS2 -131250172,T08,13042231,Structure Fire,05/05/2013,05/05/2013,05/05/2013 01:43:07 PM,05/05/2013 01:43:08 PM,05/05/2013 01:43:13 PM,05/05/2013 01:44:22 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,04/25/2016 01:52:57 PM,Other,05/05/2013 01:45:42 PM,6TH ST/BRANNAN ST,SF,94103,B03,8,2256,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7748087750185, -122.400981567592)",131250172-T08 -111580012,E12,11052098,Medical Incident,06/07/2011,06/06/2011,06/07/2011 12:33:25 AM,06/07/2011 12:33:56 AM,06/07/2011 12:34:09 AM,06/07/2011 12:35:53 AM,06/07/2011 12:37:09 AM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 12:41:32 AM,HAIGHT ST/STANYAN ST,SF,94117,B05,12,4553,3,3,3,true,,1,ENGINE,1,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",111580012-E12 -121420298,E02,12047338,Structure Fire,05/21/2012,05/21/2012,05/21/2012 07:26:46 PM,05/21/2012 07:26:46 PM,05/21/2012 07:26:57 PM,05/21/2012 07:27:03 PM,05/21/2012 07:28:02 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Fire,05/21/2012 07:29:56 PM,BATTERY ST/BROADWAY,SF,94111,B01,13,1155,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7985800532877, -122.401051292992)",121420298-E02 -102290229,E05,10072094,Medical Incident,08/17/2010,08/17/2010,08/17/2010 03:20:20 PM,08/17/2010 03:20:41 PM,08/17/2010 03:21:19 PM,08/17/2010 03:21:45 PM,08/17/2010 03:24:28 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 03:38:31 PM,GOLDEN GATE AV/LAGUNA ST,SF,94102,B02,5,3411,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7801930305107, -122.427016757755)",102290229-E05 -160651434,AM08,16025906,Medical Incident,03/05/2016,03/05/2016,03/05/2016 11:59:42 AM,03/05/2016 11:59:42 AM,03/05/2016 12:00:51 PM,03/05/2016 12:01:43 PM,03/05/2016 12:15:13 PM,03/05/2016 12:15:16 PM,03/05/2016 12:36:41 PM,Code 2 Transport,03/05/2016 12:56:06 PM,1600 Block of VALENCIA ST,San Francisco,94110,B06,11,5611,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7459784515022, -122.420143715406)",160651434-AM08 -160543069,KM02,16021713,Medical Incident,02/23/2016,02/23/2016,02/23/2016 05:56:07 PM,02/23/2016 05:56:07 PM,02/23/2016 06:06:46 PM,02/23/2016 06:08:04 PM,02/23/2016 06:11:21 PM,02/23/2016 06:33:25 PM,02/23/2016 06:57:47 PM,Code 2 Transport,02/23/2016 07:08:05 PM,JUDAH ST/46TH AV,San Francisco,94122,B08,23,7655,2,3,3,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7604244274632, -122.505928109422)",160543069-KM02 -132970033,E18,13100755,Medical Incident,10/24/2013,10/23/2013,10/24/2013 02:42:16 AM,10/24/2013 02:42:40 AM,10/24/2013 02:43:23 AM,10/24/2013 02:45:18 AM,10/24/2013 02:48:43 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 02:56:10 AM,22ND AV/TARAVAL ST,SF,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7429086384369, -122.478904792573)",132970033-E18 -110310067,E43,11010080,Medical Incident,01/31/2011,01/30/2011,01/31/2011 07:45:58 AM,01/31/2011 07:47:18 AM,01/31/2011 07:47:49 AM,01/31/2011 07:49:18 AM,01/31/2011 07:53:09 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/31/2011 08:07:50 AM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",110310067-E43 -122920182,94,12096739,Medical Incident,10/18/2012,10/18/2012,10/18/2012 12:06:01 PM,10/18/2012 12:06:28 PM,10/18/2012 12:06:50 PM,10/18/2012 12:07:04 PM,10/18/2012 12:11:46 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Patient Declined Transport,10/18/2012 12:49:34 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122920182-94 -112240096,RS1,11073910,Traffic Collision,08/12/2011,08/12/2011,08/12/2011 09:12:46 AM,08/12/2011 09:13:18 AM,08/12/2011 09:13:26 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,04/25/2016 02:03:13 PM,MISSION ST/NEW MONTGOMERY ST,SF,94105,B03,1,2145,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",112240096-RS1 -122650086,E05,12087471,Medical Incident,09/21/2012,09/21/2012,09/21/2012 09:22:05 AM,09/21/2012 09:22:38 AM,09/21/2012 09:22:58 AM,09/21/2012 09:24:14 AM,09/21/2012 09:26:07 AM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 09:41:21 AM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",122650086-E05 -130470011,D3,13015855,Structure Fire,02/16/2013,02/15/2013,02/16/2013 12:25:19 AM,02/16/2013 12:25:59 AM,02/16/2013 12:26:20 AM,02/16/2013 12:28:15 AM,02/16/2013 12:39:05 AM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/16/2013 03:17:30 AM,1200 Block of MARINER DR,TI,94130,B03,48,2931,3,3,3,false,Fire,2,CHIEF,10,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",130470011-D3 -122600030,T06,12085804,Medical Incident,09/16/2012,09/15/2012,09/16/2012 01:47:32 AM,09/16/2012 01:48:29 AM,09/16/2012 01:49:19 AM,09/16/2012 01:50:32 AM,09/16/2012 01:54:02 AM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 01:54:46 AM,VALENCIA ST/DUBOCE AV,SF,94103,B02,36,5126,3,2,2,false,Non Life-threatening,1,TRUCK,2,2,9,Mission,"(37.7698676980277, -122.422364819149)",122600030-T06 -160222543,AM16,16008839,Medical Incident,01/22/2016,01/22/2016,01/22/2016 04:29:56 PM,01/22/2016 04:30:55 PM,01/22/2016 04:31:20 PM,01/22/2016 04:32:32 PM,01/22/2016 04:36:37 PM,01/22/2016 05:09:00 PM,01/22/2016 05:16:32 PM,Code 2 Transport,01/22/2016 05:55:18 PM,400 Block of JONES ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",160222543-AM16 -122640032,E13,12087068,Alarms,09/20/2012,09/19/2012,09/20/2012 02:25:55 AM,09/20/2012 02:27:21 AM,09/20/2012 02:27:28 AM,09/20/2012 02:29:01 AM,09/20/2012 02:31:44 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 02:41:21 AM,0 Block of BEALE ST,SF,94105,B03,13,2125,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7917404337271, -122.396647503187)",122640032-E13 -132510046,E33,13084691,Medical Incident,09/08/2013,09/07/2013,09/08/2013 02:25:53 AM,09/08/2013 02:27:31 AM,09/08/2013 02:29:18 AM,09/08/2013 02:31:31 AM,09/08/2013 02:33:47 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 03:33:03 AM,0 Block of SEARS ST,SF,94112,B09,33,8354,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7101653378223, -122.453160472507)",132510046-E33 -123280329,75,12109225,Medical Incident,11/23/2012,11/23/2012,11/23/2012 09:38:29 PM,11/23/2012 09:39:37 PM,11/23/2012 09:40:09 PM,11/23/2012 09:40:14 PM,11/23/2012 09:47:00 PM,11/23/2012 10:11:25 PM,11/23/2012 10:27:15 PM,Code 2 Transport,11/23/2012 11:03:20 PM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",123280329-75 -131410159,55,13047752,Medical Incident,05/21/2013,05/21/2013,05/21/2013 11:17:53 AM,05/21/2013 11:20:32 AM,05/21/2013 11:20:50 AM,05/21/2013 11:21:18 AM,05/21/2013 11:23:45 AM,05/21/2013 11:46:14 AM,05/21/2013 12:00:41 PM,Code 2 Transport,05/21/2013 12:45:21 PM,0 Block of SYCAMORE ST,SF,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7627443612578, -122.419834318318)",131410159-55 -112530399,82,11083644,Medical Incident,09/10/2011,09/10/2011,09/10/2011 10:09:27 PM,09/10/2011 10:12:42 PM,09/10/2011 10:12:55 PM,09/10/2011 10:13:50 PM,09/10/2011 10:16:34 PM,09/10/2011 10:29:29 PM,09/10/2011 10:53:45 PM,Code 2 Transport,09/10/2011 11:11:38 PM,VALENCIA ST/CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,false,,1,MEDIC,2,6,9,Mission,"(37.7481252844229, -122.420278831044)",112530399-82 -112350395,89,11077727,Medical Incident,08/23/2011,08/23/2011,08/23/2011 09:45:43 PM,08/23/2011 09:47:14 PM,08/23/2011 09:47:55 PM,08/23/2011 09:54:47 PM,08/23/2011 10:04:22 PM,08/23/2011 10:25:39 PM,08/23/2011 10:39:58 PM,Code 2 Transport,08/23/2011 11:03:59 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,true,,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",112350395-89 -132250249,E34,13075995,Structure Fire,08/13/2013,08/13/2013,08/13/2013 02:37:02 PM,08/13/2013 02:37:02 PM,08/13/2013 02:37:13 PM,04/25/2016 01:51:19 PM,08/13/2013 02:38:18 PM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Other,08/13/2013 02:41:45 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",132250249-E34 -121840045,55,12061177,Medical Incident,07/02/2012,07/01/2012,07/02/2012 04:49:41 AM,07/02/2012 04:50:47 AM,07/02/2012 04:53:05 AM,04/25/2016 01:57:55 PM,07/02/2012 05:12:52 AM,07/02/2012 05:31:24 AM,07/02/2012 05:47:45 AM,Code 2 Transport,07/02/2012 06:02:10 AM,100 Block of SANTOS ST,SF,94134,B09,43,6244,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7102965196191, -122.418986414812)",121840045-55 -121220114,E02,12040438,Medical Incident,05/01/2012,05/01/2012,05/01/2012 10:16:47 AM,05/01/2012 10:18:09 AM,05/01/2012 10:19:54 AM,05/01/2012 10:20:25 AM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,Other,05/01/2012 10:26:29 AM,300 Block of KEARNY ST,SF,94104,B01,13,1243,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7912340846194, -122.40405694935)",121220114-E02 -131060146,T11,13035598,Structure Fire,04/16/2013,04/16/2013,04/16/2013 11:17:27 AM,04/16/2013 11:17:27 AM,04/16/2013 11:17:47 AM,04/16/2013 11:18:01 AM,04/16/2013 11:21:24 AM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/16/2013 11:22:04 AM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.7528524062967, -122.408188967839)",131060146-T11 -111770287,E05,11058450,Structure Fire,06/26/2011,06/26/2011,06/26/2011 04:38:20 PM,06/26/2011 04:38:20 PM,06/26/2011 04:39:30 PM,06/26/2011 04:40:57 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,06/26/2011 04:43:08 PM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",111770287-E05 -160440347,AM22,16017562,Traffic Collision,02/13/2016,02/12/2016,02/13/2016 02:22:40 AM,02/13/2016 02:26:22 AM,02/13/2016 02:27:21 AM,02/13/2016 02:28:39 AM,02/13/2016 02:36:36 AM,02/13/2016 02:55:07 AM,02/13/2016 03:11:41 AM,Code 2 Transport,02/13/2016 04:38:12 AM,200 Block of KING ST,San Francisco,94107,B03,4,2436,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Mission Bay,"(37.7773277635261, -122.393088559685)",160440347-AM22 -160033208,79,16001384,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:11:03 PM,01/03/2016 10:13:08 PM,01/03/2016 10:14:29 PM,01/03/2016 10:16:45 PM,01/03/2016 10:25:07 PM,01/03/2016 10:41:13 PM,01/03/2016 10:57:23 PM,Code 2 Transport,01/03/2016 11:31:03 PM,400 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,North Beach,"(37.8063948128853, -122.414598058157)",160033208-79 -160152656,77,16006069,Medical Incident,01/15/2016,01/15/2016,01/15/2016 04:36:21 PM,01/15/2016 04:37:40 PM,01/15/2016 04:37:50 PM,01/15/2016 04:38:07 PM,01/15/2016 05:04:46 PM,01/15/2016 05:08:45 PM,01/15/2016 05:52:24 PM,Code 2 Transport,01/15/2016 06:19:46 PM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",160152656-77 -160050992,KM02,16001921,Medical Incident,01/05/2016,01/05/2016,01/05/2016 09:45:39 AM,01/05/2016 09:46:33 AM,01/05/2016 09:47:17 AM,01/05/2016 09:48:34 AM,01/05/2016 09:52:08 AM,01/05/2016 10:15:52 AM,01/05/2016 10:32:55 AM,Code 2 Transport,01/05/2016 10:55:01 AM,1100 Block of HOWARD ST,San Francisco,94103,B03,1,2314,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777263414712, -122.409605982336)",160050992-KM02 -123430050,E36,12114511,Medical Incident,12/08/2012,12/07/2012,12/08/2012 03:25:20 AM,12/08/2012 03:26:07 AM,12/08/2012 03:26:18 AM,12/08/2012 03:30:11 AM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,04/25/2016 01:55:25 PM,Other,12/08/2012 03:30:23 AM,11TH ST/MARKET ST,SF,94103,B02,36,3211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7755581612992, -122.41865858352)",123430050-E36 -103220134,E21,10103161,Medical Incident,11/18/2010,11/18/2010,11/18/2010 11:11:27 AM,11/18/2010 11:11:48 AM,11/18/2010 11:12:05 AM,11/18/2010 11:14:42 AM,11/18/2010 11:17:30 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/18/2010 11:18:59 AM,1600 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,false,,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.7752450450943, -122.443780098911)",103220134-E21 -121230070,E08,12040736,Medical Incident,05/02/2012,05/02/2012,05/02/2012 08:35:58 AM,05/02/2012 08:36:42 AM,05/02/2012 08:37:08 AM,05/02/2012 08:39:00 AM,05/02/2012 08:41:53 AM,04/25/2016 01:58:53 PM,04/25/2016 01:58:53 PM,Other,05/02/2012 08:49:56 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",121230070-E08 -113110065,E01,11103251,Alarms,11/07/2011,11/06/2011,11/07/2011 07:12:14 AM,11/07/2011 07:13:17 AM,11/07/2011 07:13:34 AM,11/07/2011 07:14:43 AM,11/07/2011 07:15:53 AM,04/25/2016 02:01:46 PM,04/25/2016 02:01:46 PM,Other,11/07/2011 07:19:51 AM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",113110065-E01 -160300004,85,16011612,Medical Incident,01/30/2016,01/29/2016,01/30/2016 12:01:14 AM,01/30/2016 12:01:41 AM,01/30/2016 12:02:13 AM,01/30/2016 12:02:23 AM,01/30/2016 12:07:03 AM,01/30/2016 12:19:48 AM,01/30/2016 12:22:58 AM,Code 3 Transport,01/30/2016 01:13:58 AM,1000 Block of CAPP ST,San Francisco,94110,B06,11,5534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7499017090743, -122.417193854748)",160300004-85 -102760377,B03,10087905,Structure Fire,10/03/2010,10/03/2010,10/03/2010 10:12:00 PM,10/03/2010 10:12:50 PM,10/03/2010 10:13:13 PM,10/03/2010 10:14:13 PM,10/03/2010 10:14:48 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/03/2010 10:20:29 PM,500 Block of 4TH ST,SF,94107,B03,8,2217,3,3,3,false,,1,CHIEF,1,3,6,South of Market,"(37.7793874256322, -122.397749284931)",102760377-B03 -130550322,B06,13018689,Structure Fire,02/24/2013,02/24/2013,02/24/2013 09:09:39 PM,02/24/2013 09:10:23 PM,02/24/2013 09:10:34 PM,02/24/2013 09:12:07 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,04/25/2016 01:54:08 PM,Other,02/24/2013 09:16:12 PM,0 Block of ARAGO ST,SF,94112,B09,15,8223,3,3,3,false,Alarm,1,CHIEF,3,9,11,Outer Mission,"(37.7274170733857, -122.443122455556)",130550322-B06 -102860262,77,10091190,Medical Incident,10/13/2010,10/13/2010,10/13/2010 02:38:32 PM,10/13/2010 02:39:53 PM,10/13/2010 02:41:32 PM,10/13/2010 02:45:16 PM,10/13/2010 02:55:48 PM,10/13/2010 03:12:30 PM,10/13/2010 03:16:26 PM,Code 2 Transport,10/13/2010 03:46:45 PM,SACRAMENTO ST/FILLMORE ST,SF,94115,B04,38,3544,3,2,2,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.7898369713314, -122.43402709034)",102860262-77 -122890271,E13,12095689,Structure Fire,10/15/2012,10/15/2012,10/15/2012 04:13:03 PM,10/15/2012 04:13:04 PM,10/15/2012 04:13:11 PM,10/15/2012 04:14:39 PM,10/15/2012 04:15:23 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 04:16:00 PM,KEARNY ST/WASHINGTON ST,SF,94108,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7953266906824, -122.404957209767)",122890271-E13 -112400180,KM01,11079198,Medical Incident,08/28/2011,08/28/2011,08/28/2011 12:39:30 PM,08/28/2011 12:41:43 PM,08/28/2011 12:42:08 PM,08/28/2011 12:43:00 PM,08/28/2011 12:49:02 PM,08/28/2011 01:10:52 PM,08/28/2011 01:30:48 PM,Code 2 Transport,08/28/2011 01:56:53 PM,300 Block of TEHAMA ST,SF,94103,B03,1,2214,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",112400180-KM01 -112350372,E36,11077707,Traffic Collision,08/23/2011,08/23/2011,08/23/2011 08:57:49 PM,08/23/2011 08:57:49 PM,08/23/2011 08:58:05 PM,08/23/2011 08:59:35 PM,08/23/2011 09:00:47 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 09:41:55 PM,FRANKLIN ST/MCALLISTER ST,SF,94102,B02,36,3215,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7798901049166, -122.42189157233)",112350372-E36 -160341836,86,16013401,Medical Incident,02/03/2016,02/03/2016,02/03/2016 01:33:05 PM,02/03/2016 01:35:07 PM,02/03/2016 01:35:43 PM,02/03/2016 01:35:58 PM,02/03/2016 01:42:28 PM,02/03/2016 01:57:46 PM,02/03/2016 02:08:07 PM,Code 2 Transport,02/03/2016 02:55:13 PM,700 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.732924646566, -122.416428558162)",160341836-86 -112480117,E21,11081732,Medical Incident,09/05/2011,09/05/2011,09/05/2011 09:18:08 AM,09/05/2011 09:19:35 AM,09/05/2011 09:19:46 AM,09/05/2011 09:20:19 AM,09/05/2011 09:24:37 AM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/05/2011 09:24:55 AM,0 Block of ROSSI AVE,SF,94118,B07,21,4557,3,3,3,false,,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.779215348773, -122.45632948558)",112480117-E21 -123370295,AM16,12112257,Medical Incident,12/02/2012,12/02/2012,12/02/2012 09:40:06 AM,12/02/2012 09:41:43 AM,12/02/2012 09:45:15 AM,12/02/2012 09:45:45 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 09:47:30 AM,1500 Block of 39TH AVE,SF,94122,B08,23,7625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7579582456154, -122.498158577742)",123370295-AM16 -140480041,KM10,14016224,Medical Incident,02/17/2014,02/16/2014,02/17/2014 04:03:29 AM,02/17/2014 04:06:14 AM,02/17/2014 04:06:30 AM,02/17/2014 04:06:57 AM,02/17/2014 04:13:06 AM,02/17/2014 04:15:11 AM,02/17/2014 04:42:29 AM,Code 2 Transport,02/17/2014 05:13:14 AM,3300 Block of 24TH ST,SF,94110,B06,11,5525,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7522767133494, -122.418736723254)",140480041-KM10 -160353791,AM22,16014016,Medical Incident,02/04/2016,02/04/2016,02/04/2016 09:51:15 PM,02/04/2016 09:52:11 PM,02/04/2016 09:52:18 PM,02/04/2016 09:53:23 PM,02/04/2016 09:59:04 PM,02/04/2016 10:25:26 PM,02/04/2016 10:25:34 PM,Code 2 Transport,02/04/2016 10:54:58 PM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",160353791-AM22 -133400183,RS2,13115230,Structure Fire,12/06/2013,12/06/2013,12/06/2013 12:22:39 PM,12/06/2013 12:26:12 PM,12/06/2013 12:28:06 PM,12/06/2013 12:30:28 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 12:31:13 PM,100 Block of COLE ST,SF,94117,B05,21,4535,3,3,3,false,Alarm,1,RESCUE SQUAD,10,5,5,Lone Mountain/USF,"(37.7737734460472, -122.451136840346)",133400183-RS2 -102510311,T16,10079395,Alarms,09/08/2010,09/08/2010,09/08/2010 05:42:08 PM,09/08/2010 05:43:56 PM,09/08/2010 05:44:06 PM,09/08/2010 05:45:26 PM,09/08/2010 05:47:24 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 05:49:24 PM,0 Block of AVILA ST,SF,94123,B04,16,3661,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.8007824295551, -122.440477443994)",102510311-T16 -121210067,77,12040090,Medical Incident,04/30/2012,04/29/2012,04/30/2012 06:46:02 AM,04/30/2012 06:46:28 AM,04/30/2012 06:48:23 AM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 06:49:44 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",121210067-77 -113300157,AM02,11109418,Medical Incident,11/26/2011,11/26/2011,11/26/2011 03:08:18 PM,11/26/2011 03:09:43 PM,11/26/2011 03:09:57 PM,11/26/2011 03:10:39 PM,11/26/2011 03:12:52 PM,11/26/2011 03:27:20 PM,11/26/2011 03:44:00 PM,Code 2 Transport,11/26/2011 04:12:49 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",113300157-AM02 -160011833,53,16000318,Medical Incident,01/01/2016,01/01/2016,01/01/2016 12:00:38 PM,01/01/2016 12:03:09 PM,01/01/2016 12:06:29 PM,01/01/2016 12:06:44 PM,01/01/2016 12:15:12 PM,01/01/2016 12:39:40 PM,01/01/2016 12:56:28 PM,Code 2 Transport,01/01/2016 01:47:02 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160011833-53 -120350033,55,12011496,Structure Fire,02/04/2012,02/03/2012,02/04/2012 01:53:58 AM,02/04/2012 01:55:02 AM,02/04/2012 01:55:15 AM,02/04/2012 01:55:44 AM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/04/2012 02:02:03 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Fire,1,MEDIC,8,2,6,Mission,"(37.7740948566882, -122.420001436964)",120350033-55 -102540234,75,10080331,Medical Incident,09/11/2010,09/11/2010,09/11/2010 02:55:50 PM,09/11/2010 02:57:29 PM,09/11/2010 02:58:21 PM,09/11/2010 02:59:10 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 03:04:34 PM,100 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7729000896445, -122.424646169194)",102540234-75 -122230045,B10,12073818,Outside Fire,08/10/2012,08/09/2012,08/10/2012 03:55:37 AM,08/10/2012 03:59:44 AM,08/10/2012 03:59:57 AM,08/10/2012 04:20:07 AM,08/10/2012 04:25:11 AM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 05:17:41 AM,CARROLL AV/INGALLS ST,SF,94124,B10,17,6615,3,3,3,false,Fire,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7228514425421, -122.389619541476)",122230045-B10 -120250048,71,12008291,Medical Incident,01/25/2012,01/24/2012,01/25/2012 05:04:24 AM,01/25/2012 05:05:45 AM,01/25/2012 05:05:54 AM,04/25/2016 02:00:27 PM,01/25/2012 05:12:18 AM,01/25/2012 05:26:04 AM,01/25/2012 05:33:15 AM,Code 2 Transport,01/25/2012 06:05:28 AM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.748178766022, -122.4214039484)",120250048-71 -160331315,55,16012946,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:19:20 AM,02/02/2016 11:19:20 AM,02/02/2016 11:19:49 AM,02/02/2016 11:20:25 AM,02/02/2016 11:31:48 AM,02/02/2016 11:44:50 AM,02/02/2016 12:00:04 PM,Code 2 Transport,02/02/2016 12:40:42 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2317,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160331315-55 -160401844,59,16016031,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:08:02 PM,02/09/2016 01:08:02 PM,02/09/2016 01:08:33 PM,02/09/2016 01:08:54 PM,02/09/2016 01:18:00 PM,02/09/2016 01:34:28 PM,02/09/2016 01:48:37 PM,Code 2 Transport,02/09/2016 02:12:54 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160401844-59 -111310265,AM08,11043359,Medical Incident,05/11/2011,05/11/2011,05/11/2011 04:56:07 PM,05/11/2011 04:58:12 PM,05/11/2011 04:58:42 PM,05/11/2011 04:59:49 PM,05/11/2011 05:04:30 PM,04/25/2016 02:04:40 PM,04/25/2016 02:04:40 PM,No Merit,05/11/2011 05:07:48 PM,2700 Block of SUTTER ST,SF,94115,B05,10,4366,3,3,3,false,,1,PRIVATE,3,5,5,Presidio Heights,"(37.784473419921, -122.445528413067)",111310265-AM08 -121830296,T07,12061069,Structure Fire,07/01/2012,07/01/2012,07/01/2012 07:30:52 PM,07/01/2012 07:31:19 PM,07/01/2012 07:31:51 PM,07/01/2012 07:33:35 PM,07/01/2012 07:38:34 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 07:42:38 PM,4000 Block of 17TH ST,SF,94114,B05,6,5253,3,3,3,false,Fire,1,TRUCK,9,5,8,Castro/Upper Market,"(37.7624364423334, -122.436895079866)",121830296-T07 -110980094,64,11032430,Structure Fire,04/08/2011,04/08/2011,04/08/2011 08:29:22 AM,04/08/2011 08:31:16 AM,04/08/2011 08:31:41 AM,04/08/2011 08:34:05 AM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Other,04/08/2011 08:36:06 AM,HARKNESS AV/RUTLAND ST,SF,94134,B10,44,6315,3,3,3,true,,1,MEDIC,3,10,10,Visitacion Valley,"(37.7179452414737, -122.405021990261)",110980094-64 -160292124,55,16011480,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:51:25 PM,01/29/2016 02:52:05 PM,01/29/2016 02:53:41 PM,01/29/2016 02:53:49 PM,01/29/2016 03:19:20 PM,01/29/2016 03:49:56 PM,01/29/2016 04:16:28 PM,Code 2 Transport,01/29/2016 05:07:17 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160292124-55 -123240246,E03,12107778,Medical Incident,11/19/2012,11/19/2012,11/19/2012 02:41:56 PM,11/19/2012 02:43:42 PM,11/19/2012 02:44:41 PM,11/19/2012 02:45:43 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,04/25/2016 01:55:43 PM,GEARY BL/FILLMORE ST,SF,94115,B04,5,3541,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",123240246-E03 -160541123,65,16021519,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:09:24 AM,02/23/2016 10:10:47 AM,02/23/2016 10:11:12 AM,02/23/2016 10:11:48 AM,02/23/2016 10:27:44 AM,02/23/2016 10:47:51 AM,02/23/2016 11:02:42 AM,Code 2 Transport,02/23/2016 11:54:50 AM,1600 Block of 30TH AVE,San Francisco,94122,B08,18,7514,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7565148633826, -122.488520596486)",160541123-65 -110570326,T01,11018881,Structure Fire,02/26/2011,02/26/2011,02/26/2011 08:17:26 PM,02/26/2011 08:17:59 PM,02/26/2011 08:18:06 PM,04/25/2016 02:05:53 PM,02/26/2011 08:20:37 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,Other,02/26/2011 08:26:49 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.779489776176, -122.407376438306)",110570326-T01 -130670277,T03,13022400,Structure Fire,03/08/2013,03/08/2013,03/08/2013 04:32:37 PM,03/08/2013 04:32:37 PM,03/08/2013 04:32:42 PM,03/08/2013 04:33:59 PM,03/08/2013 04:36:11 PM,04/25/2016 01:53:56 PM,04/25/2016 01:53:56 PM,Other,03/08/2013 04:36:40 PM,OFARRELL ST/TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,Alarm,1,TRUCK,1,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",130670277-T03 -133160153,KM06,13107404,Medical Incident,11/12/2013,11/12/2013,11/12/2013 12:24:43 PM,11/12/2013 12:27:10 PM,11/12/2013 12:27:38 PM,11/12/2013 12:28:35 PM,11/12/2013 12:33:01 PM,11/12/2013 12:44:54 PM,11/12/2013 12:58:50 PM,Code 2 Transport,11/12/2013 01:29:05 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",133160153-KM06 -102770211,E07,10088095,Medical Incident,10/04/2010,10/04/2010,10/04/2010 03:35:08 PM,10/04/2010 03:38:13 PM,10/04/2010 03:40:20 PM,10/04/2010 03:41:16 PM,10/04/2010 03:43:36 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/04/2010 03:54:54 PM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,1,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",102770211-E07 -110900109,E11,11029703,Medical Incident,03/31/2011,03/31/2011,03/31/2011 10:11:42 AM,03/31/2011 10:12:21 AM,03/31/2011 10:12:46 AM,03/31/2011 10:13:00 AM,03/31/2011 10:15:39 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Other,03/31/2011 10:29:47 AM,4500 Block of 25TH ST,SF,94114,B06,24,5542,3,2,2,true,,1,ENGINE,1,6,8,Noe Valley,"(37.749278296877, -122.439919169806)",110900109-E11 -160410072,79,16016263,Medical Incident,02/10/2016,02/09/2016,02/10/2016 12:32:31 AM,02/10/2016 12:32:31 AM,02/10/2016 12:32:43 AM,02/10/2016 12:33:12 AM,02/10/2016 12:40:14 AM,02/10/2016 12:49:26 AM,02/10/2016 01:06:58 AM,Code 2 Transport,02/10/2016 01:37:54 AM,WAWONA ST/GREAT HY,San Francisco,94116,B08,23,7733,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7360956877509, -122.506193981617)",160410072-79 -160351487,88,16013800,Medical Incident,02/04/2016,02/04/2016,02/04/2016 11:33:09 AM,02/04/2016 11:34:28 AM,02/04/2016 11:34:50 AM,02/04/2016 11:40:10 AM,02/04/2016 11:45:12 AM,02/04/2016 12:04:22 PM,02/04/2016 12:14:18 PM,Code 2 Transport,02/04/2016 01:00:59 PM,2800 Block of CLAY ST,San Francisco,94115,B04,38,4124,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7900311303711, -122.439981570034)",160351487-88 -110720080,E08,11023636,Medical Incident,03/13/2011,03/12/2011,03/13/2011 05:38:51 AM,03/13/2011 05:41:16 AM,03/13/2011 05:41:55 AM,03/13/2011 05:43:58 AM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,04/25/2016 02:05:39 PM,Other,03/13/2011 05:48:48 AM,800 Block of HARRISON ST,SF,94107,B03,8,2243,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7799507434806, -122.400778586916)",110720080-E08 -111300297,E01,11043064,Medical Incident,05/10/2011,05/10/2011,05/10/2011 06:14:21 PM,05/10/2011 06:15:29 PM,05/10/2011 06:15:52 PM,05/10/2011 06:16:23 PM,05/10/2011 06:18:58 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 06:36:19 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",111300297-E01 -111840012,E01,11060628,Structure Fire,07/03/2011,07/02/2011,07/03/2011 12:44:31 AM,07/03/2011 12:45:39 AM,07/03/2011 12:45:56 AM,07/03/2011 12:46:42 AM,07/03/2011 12:49:27 AM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:55:30 AM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,4,2,6,Tenderloin,"(37.7832504150919, -122.414216002993)",111840012-E01 -160910225,52,16035941,Medical Incident,03/31/2016,03/30/2016,03/31/2016 02:14:02 AM,03/31/2016 02:14:02 AM,03/31/2016 02:14:12 AM,03/31/2016 02:14:20 AM,03/31/2016 02:16:37 AM,03/31/2016 02:39:53 AM,03/31/2016 02:59:27 AM,Code 2 Transport,03/31/2016 03:13:41 AM,600 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Lone Mountain/USF,"(37.7776344362675, -122.458540186459)",160910225-52 -140150389,E17,14005308,Medical Incident,01/15/2014,01/15/2014,01/15/2014 10:12:01 PM,01/15/2014 10:12:59 PM,01/15/2014 10:14:04 PM,01/15/2014 10:15:40 PM,01/15/2014 10:16:56 PM,04/25/2016 01:48:42 PM,04/25/2016 01:48:42 PM,Other,01/15/2014 10:17:26 PM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.72896959527, -122.38552759157)",140150389-E17 -130750226,92,13025068,Medical Incident,03/16/2013,03/16/2013,03/16/2013 03:47:56 PM,03/16/2013 03:47:57 PM,03/16/2013 03:48:28 PM,03/16/2013 03:48:56 PM,03/16/2013 04:04:24 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 04:16:43 PM,100 Block of EVERSON ST,SF,94131,B06,26,8117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7387288505192, -122.432719348311)",130750226-92 -122890227,96,12095653,Medical Incident,10/15/2012,10/15/2012,10/15/2012 02:25:22 PM,10/15/2012 02:25:33 PM,10/15/2012 02:25:43 PM,10/15/2012 02:28:12 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Patient Declined Transport,10/15/2012 02:29:56 PM,0 Block of ADAIR ST,SF,94103,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7656644174365, -122.418082720012)",122890227-96 -131360321,89,13045980,Medical Incident,05/16/2013,05/16/2013,05/16/2013 04:14:42 PM,05/16/2013 04:15:26 PM,05/16/2013 04:16:01 PM,05/16/2013 04:16:25 PM,05/16/2013 04:28:52 PM,05/16/2013 04:49:04 PM,05/16/2013 05:10:17 PM,Code 2 Transport,05/16/2013 05:49:31 PM,900 Block of MEADE AVE,SF,94124,B10,44,6575,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7179825670538, -122.397504351849)",131360321-89 -111170320,E12,11038738,Medical Incident,04/27/2011,04/27/2011,04/27/2011 08:11:48 PM,04/27/2011 08:14:02 PM,04/27/2011 08:14:29 PM,04/27/2011 08:15:39 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 08:23:26 PM,HAIGHT ST/SHRADER ST,SF,94117,B05,12,4545,3,3,3,true,,1,ENGINE,2,5,5,Haight Ashbury,"(37.7693786636844, -122.451865726136)",111170320-E12 -130480083,93,13016300,Medical Incident,02/17/2013,02/16/2013,02/17/2013 05:37:41 AM,02/17/2013 05:39:10 AM,02/17/2013 05:40:03 AM,02/17/2013 05:40:44 AM,02/17/2013 05:49:13 AM,02/17/2013 06:02:11 AM,02/17/2013 06:20:40 AM,Code 2 Transport,02/17/2013 06:43:02 AM,200 Block of 13TH ST,SF,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",130480083-93 -112210382,77,11073181,Medical Incident,08/09/2011,08/09/2011,08/09/2011 11:31:00 PM,08/09/2011 11:38:47 PM,08/09/2011 11:39:10 PM,08/09/2011 11:39:56 PM,08/09/2011 11:40:00 PM,08/10/2011 12:04:36 AM,08/10/2011 12:14:16 AM,Code 2 Transport,08/10/2011 12:57:24 AM,24TH ST/SHOTWELL ST,SF,94110,B06,7,544,1,1,2,true,,1,MEDIC,1,6,9,Mission,"(37.752439647175, -122.415172290461)",112210382-77 -102940321,E01,10093875,Medical Incident,10/21/2010,10/21/2010,10/21/2010 08:30:25 PM,10/21/2010 08:31:15 PM,10/21/2010 08:32:29 PM,10/21/2010 08:33:35 PM,10/21/2010 08:36:08 PM,04/25/2016 02:08:00 PM,04/25/2016 02:08:00 PM,Other,10/21/2010 08:42:44 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",102940321-E01 -110330320,E01,11010931,Medical Incident,02/02/2011,02/02/2011,02/02/2011 06:31:17 PM,02/02/2011 06:32:04 PM,02/02/2011 06:32:34 PM,02/02/2011 06:34:49 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 06:41:10 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",110330320-E01 -160482150,63,16019372,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 02:02:32 PM,02/17/2016 02:02:32 PM,02/17/2016 02:04:18 PM,02/17/2016 02:04:33 PM,02/17/2016 02:06:37 PM,02/17/2016 02:35:56 PM,02/17/2016 02:44:13 PM,Code 2 Transport,02/17/2016 03:29:10 PM,KIRKHAM ST/18TH AV,San Francisco,94122,B08,22,7423,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7598794347313, -122.475796561788)",160482150-63 -160590724,AM02,16023419,Medical Incident,02/28/2016,02/27/2016,02/28/2016 07:26:27 AM,02/28/2016 07:27:28 AM,02/28/2016 07:28:05 AM,02/28/2016 07:28:48 AM,02/28/2016 07:32:20 AM,02/28/2016 07:46:02 AM,02/28/2016 08:12:53 AM,Code 2 Transport,02/28/2016 08:32:52 AM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",160590724-AM02 -160802577,53,16031889,Medical Incident,03/20/2016,03/20/2016,03/20/2016 05:14:19 PM,03/20/2016 05:14:57 PM,03/20/2016 05:15:42 PM,03/20/2016 05:17:13 PM,03/20/2016 05:21:35 PM,03/20/2016 05:43:25 PM,03/20/2016 05:57:54 PM,Code 2 Transport,03/20/2016 06:17:50 PM,4600 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7847469190077, -122.467233170078)",160802577-53 -112900138,E29,11096174,Medical Incident,10/17/2011,10/17/2011,10/17/2011 11:05:31 AM,10/17/2011 11:06:56 AM,10/17/2011 11:07:42 AM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 11:09:34 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,ENGINE,4,3,6,South of Market,"(37.775420706711, -122.403404791479)",112900138-E29 -110330389,T14,11010995,Structure Fire,02/02/2011,02/02/2011,02/02/2011 10:00:26 PM,02/02/2011 10:00:26 PM,02/02/2011 10:00:42 PM,02/02/2011 10:02:15 PM,02/02/2011 10:04:44 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 10:28:51 PM,600 Block of 32ND AVE,SF,94121,B07,14,724,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",110330389-T14 -110590192,89,11019391,Medical Incident,02/28/2011,02/28/2011,02/28/2011 02:16:58 PM,02/28/2011 02:17:32 PM,02/28/2011 02:17:55 PM,02/28/2011 02:18:21 PM,02/28/2011 02:23:40 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Against Medical Advice,02/28/2011 03:24:11 PM,400 Block of 26TH AVE,SF,94121,B07,14,7221,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7810031903924, -122.485945544565)",110590192-89 -102920369,81,10093274,Medical Incident,10/19/2010,10/19/2010,10/19/2010 10:03:34 PM,10/19/2010 10:05:20 PM,10/19/2010 10:05:33 PM,10/19/2010 10:06:04 PM,10/19/2010 10:12:49 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,No Merit,10/19/2010 10:18:46 PM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7290589753437, -122.385447178388)",102920369-81 -160214007,75,16008581,Medical Incident,01/21/2016,01/21/2016,01/21/2016 10:27:39 PM,01/21/2016 10:29:06 PM,01/21/2016 10:29:52 PM,01/21/2016 10:30:16 PM,01/21/2016 10:37:19 PM,01/21/2016 10:47:02 PM,01/21/2016 11:02:32 PM,Code 2 Transport,01/21/2016 11:37:03 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160214007-75 -123300262,87,12109787,Medical Incident,11/25/2012,11/25/2012,11/25/2012 05:11:45 PM,11/25/2012 05:12:07 PM,11/25/2012 05:12:33 PM,11/25/2012 05:13:32 PM,11/25/2012 05:20:20 PM,11/25/2012 05:31:32 PM,11/25/2012 05:43:32 PM,Code 2 Transport,11/25/2012 06:02:19 PM,3300 Block of FILLMORE ST,SF,94123,B04,16,3554,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8003405635687, -122.436077390303)",123300262-87 -160320248,AM20,16012422,Medical Incident,02/01/2016,01/31/2016,02/01/2016 02:25:25 AM,02/01/2016 02:26:55 AM,02/01/2016 02:27:19 AM,02/01/2016 02:31:36 AM,02/01/2016 02:31:36 AM,02/01/2016 03:01:08 AM,02/01/2016 03:05:29 AM,Code 2 Transport,02/01/2016 03:34:15 AM,500 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.784689282473, -122.414615262229)",160320248-AM20 -123460194,E11,12115709,Administrative,12/11/2012,12/11/2012,12/11/2012 12:31:46 PM,12/11/2012 12:31:48 PM,12/11/2012 12:32:40 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 12:33:10 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",123460194-E11 -132340310,E03,13079105,Medical Incident,08/22/2013,08/22/2013,08/22/2013 07:11:39 PM,08/22/2013 07:12:52 PM,08/22/2013 07:14:26 PM,08/22/2013 07:15:40 PM,08/22/2013 07:18:31 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,08/22/2013 07:28:56 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",132340310-E03 -160753003,58,16029823,Traffic Collision,03/15/2016,03/15/2016,03/15/2016 05:42:44 PM,03/15/2016 05:45:03 PM,03/15/2016 06:15:53 PM,03/15/2016 06:18:05 PM,03/15/2016 06:49:28 PM,03/15/2016 06:49:30 PM,03/15/2016 07:03:42 PM,Code 2 Transport,03/15/2016 07:37:48 PM,LINCOLN WY/6TH AV,San Francisco,94122,B08,22,7325,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7660567219946, -122.463233168799)",160753003-58 -111120270,T15,11037071,Structure Fire,04/22/2011,04/22/2011,04/22/2011 04:33:31 PM,04/22/2011 04:33:31 PM,04/22/2011 04:33:41 PM,04/22/2011 04:34:32 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 04:36:43 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",111120270-T15 -112350159,T18,11077528,Structure Fire,08/23/2011,08/23/2011,08/23/2011 11:24:42 AM,08/23/2011 11:24:42 AM,08/23/2011 11:24:57 AM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 11:27:31 AM,1500 Block of 43RD AVE,SF,94122,B08,23,765,3,3,3,false,,1,TRUCK,3,8,4,Sunset/Parkside,"(37.757770435301, -122.502447012656)",112350159-T18 -160880999,63,16034876,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:15:14 AM,03/28/2016 09:16:40 AM,03/28/2016 09:16:47 AM,03/28/2016 09:16:56 AM,03/28/2016 09:24:58 AM,03/28/2016 09:35:59 AM,03/28/2016 09:58:04 AM,Code 2 Transport,03/28/2016 10:11:29 AM,1600 Block of LINCOLN WAY,San Francisco,94122,B08,22,7367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,4,Inner Sunset,"(37.7654145010698, -122.475644924369)",160880999-63 -122150285,94,12071449,Medical Incident,08/02/2012,08/02/2012,08/02/2012 07:00:26 PM,08/02/2012 07:01:04 PM,08/02/2012 07:01:26 PM,08/02/2012 07:01:36 PM,08/02/2012 07:03:32 PM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Patient Declined Transport,08/02/2012 07:28:09 PM,0 Block of BRIGHTON AVE,SF,94112,B09,33,8465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7191361836996, -122.455184001897)",122150285-94 -131990083,E43,13067379,Medical Incident,07/18/2013,07/18/2013,07/18/2013 09:11:03 AM,07/18/2013 09:13:23 AM,07/18/2013 09:13:49 AM,04/25/2016 01:51:45 PM,07/18/2013 09:17:29 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 09:28:49 AM,200 Block of BLYTHDALE AVE,SF,94134,B09,43,6243,3,3,3,false,Non Life-threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",131990083-E43 -130070324,88,13002495,Medical Incident,01/07/2013,01/07/2013,01/07/2013 06:52:39 PM,01/07/2013 06:53:20 PM,01/07/2013 06:53:55 PM,01/07/2013 06:54:11 PM,01/07/2013 06:59:08 PM,01/07/2013 07:06:57 PM,01/07/2013 07:12:15 PM,Code 2 Transport,01/07/2013 07:38:55 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130070324-88 -112990092,E29,11099121,Medical Incident,10/26/2011,10/26/2011,10/26/2011 09:03:16 AM,10/26/2011 09:05:18 AM,10/26/2011 09:05:41 AM,10/26/2011 09:07:29 AM,10/26/2011 09:08:13 AM,10/26/2011 09:28:40 AM,10/26/2011 09:28:48 AM,Other,10/26/2011 09:35:51 AM,UTAH ST/16TH ST,SF,94103,B02,29,2421,3,3,3,true,,1,ENGINE,2,2,10,Mission,"(37.7658422720667, -122.406552825622)",112990092-E29 -122250011,E36,12074473,Medical Incident,08/12/2012,08/11/2012,08/12/2012 01:00:20 AM,08/12/2012 01:00:24 AM,08/12/2012 01:01:34 AM,08/12/2012 01:04:21 AM,08/12/2012 01:06:13 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 01:08:30 AM,1100 Block of MARKET ST,SF,94103,B02,1,2317,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",122250011-E36 -160652986,60,16026059,Medical Incident,03/05/2016,03/05/2016,03/05/2016 07:32:49 PM,03/05/2016 07:35:38 PM,03/05/2016 07:35:53 PM,03/05/2016 07:36:14 PM,03/05/2016 07:41:02 PM,03/05/2016 07:55:16 PM,03/05/2016 08:10:31 PM,Code 2 Transport,03/05/2016 08:47:15 PM,JESSIE ST/5TH ST,San Francisco,94103,B03,1,2213,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7831577478943, -122.407015679867)",160652986-60 -112040244,E40,11067441,Medical Incident,07/23/2011,07/23/2011,07/23/2011 03:53:26 PM,07/23/2011 03:53:58 PM,07/23/2011 03:54:21 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 04:05:24 PM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,true,,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",112040244-E40 -160042842,KM02,16001707,Medical Incident,01/04/2016,01/04/2016,01/04/2016 05:49:08 PM,01/04/2016 05:51:23 PM,01/04/2016 05:51:40 PM,01/04/2016 05:52:10 PM,01/04/2016 06:04:29 PM,01/04/2016 06:24:09 PM,01/04/2016 06:46:59 PM,Code 2 Transport,01/04/2016 07:16:42 PM,1800 Block of POST ST,San Francisco,94115,B04,5,3513,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.785207581828, -122.432213785968)",160042842-KM02 -111970180,E17,11065002,Medical Incident,07/16/2011,07/16/2011,07/16/2011 01:11:08 PM,07/16/2011 01:12:22 PM,07/16/2011 01:12:32 PM,07/16/2011 01:14:34 PM,07/16/2011 01:16:28 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 01:26:23 PM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",111970180-E17 -133590190,72,13122057,Medical Incident,12/25/2013,12/25/2013,12/25/2013 02:10:47 PM,12/25/2013 02:11:29 PM,12/25/2013 02:11:52 PM,04/25/2016 01:49:04 PM,12/25/2013 02:12:20 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Code 2 Transport,12/25/2013 02:45:52 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",133590190-72 -122230396,KM07,12074121,Medical Incident,08/10/2012,08/10/2012,08/10/2012 11:34:07 PM,08/10/2012 11:36:09 PM,08/10/2012 11:36:53 PM,08/10/2012 11:37:01 PM,08/10/2012 11:43:28 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/10/2012 11:48:27 PM,0 Block of OTSEGO AVE,SF,94112,B09,15,8275,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7265627328959, -122.439143412308)",122230396-KM07 -160412471,89,16016520,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:48:29 PM,02/10/2016 03:50:50 PM,02/10/2016 03:51:13 PM,02/10/2016 03:52:38 PM,02/10/2016 03:55:43 PM,02/10/2016 04:23:32 PM,02/10/2016 04:35:29 PM,Code 2 Transport,02/10/2016 05:51:14 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160412471-89 -160780626,AM02,16030917,Medical Incident,03/18/2016,03/17/2016,03/18/2016 06:57:20 AM,03/18/2016 06:57:20 AM,03/18/2016 06:57:41 AM,03/18/2016 06:58:10 AM,03/18/2016 07:10:42 AM,03/18/2016 07:32:23 AM,03/18/2016 07:42:34 AM,Code 2 Transport,03/18/2016 08:03:37 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160780626-AM02 -160040628,55,16001489,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:29:27 AM,01/04/2016 07:30:45 AM,01/04/2016 07:31:13 AM,01/04/2016 07:31:36 AM,01/04/2016 07:58:38 AM,01/04/2016 07:58:40 AM,01/04/2016 08:12:23 AM,Code 2 Transport,01/04/2016 08:52:12 AM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160040628-55 -132440196,E39,13082359,Alarms,09/01/2013,09/01/2013,09/01/2013 02:28:32 PM,09/01/2013 02:29:52 PM,09/01/2013 02:30:05 PM,09/01/2013 02:31:23 PM,09/01/2013 02:34:36 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 02:40:52 PM,200 Block of SAN BENITO WAY,SF,94127,B09,39,8551,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7324436221566, -122.466984419345)",132440196-E39 -160650603,62,16025837,Medical Incident,03/05/2016,03/04/2016,03/05/2016 06:10:06 AM,03/05/2016 06:11:16 AM,03/05/2016 06:11:56 AM,03/05/2016 06:12:15 AM,03/05/2016 06:15:31 AM,03/05/2016 06:40:18 AM,03/05/2016 06:53:49 AM,Code 2 Transport,03/05/2016 07:20:57 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160650603-62 -160151529,73,16005969,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:51:10 AM,01/15/2016 11:52:04 AM,01/15/2016 11:52:37 AM,01/15/2016 11:53:01 AM,01/15/2016 11:56:02 AM,01/15/2016 12:23:53 PM,01/15/2016 12:35:42 PM,Code 2 Transport,01/15/2016 01:41:59 PM,200 Block of CLAREMONT BLVD,San Francisco,94127,B08,39,8611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.741131115176, -122.464658512247)",160151529-73 -140860212,B01,14028971,Structure Fire,03/27/2014,03/27/2014,03/27/2014 03:21:30 PM,03/27/2014 03:22:41 PM,03/27/2014 03:22:48 PM,03/27/2014 03:24:19 PM,03/27/2014 03:27:26 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 03:52:27 PM,300 Block of CLAY ST,SAN FRANCISCO,94111,B01,13,1161,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7950340354224, -122.399728412504)",140860212-B01 -160481402,75,16019307,Medical Incident,02/17/2016,02/17/2016,02/17/2016 11:06:23 AM,02/17/2016 11:08:32 AM,02/17/2016 11:09:30 AM,02/17/2016 11:09:38 AM,02/17/2016 11:17:33 AM,02/17/2016 11:40:53 AM,02/17/2016 11:59:57 AM,Code 2 Transport,02/17/2016 12:58:08 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160481402-75 -121420213,KM11,12047261,Traffic Collision,05/21/2012,05/21/2012,05/21/2012 02:23:38 PM,05/21/2012 02:25:41 PM,05/21/2012 02:25:57 PM,05/21/2012 02:27:45 PM,05/21/2012 02:49:16 PM,05/21/2012 02:49:23 PM,05/21/2012 03:03:10 PM,Code 2 Transport,05/21/2012 03:29:27 PM,VAN NESS AV/POST ST,SF,94109,B04,3,3161,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",121420213-KM11 -120120286,E02,12004191,Medical Incident,01/12/2012,01/12/2012,01/12/2012 06:36:57 PM,01/12/2012 06:38:08 PM,01/12/2012 06:38:25 PM,01/12/2012 06:39:24 PM,01/12/2012 06:41:43 PM,04/25/2016 02:00:39 PM,04/25/2016 02:00:39 PM,Other,01/12/2012 06:46:06 PM,POWELL ST/FILBERT ST,SF,94133,B01,28,1351,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.801169751007, -122.41101851673)",120120286-E02 -160712133,78,16028278,Medical Incident,03/11/2016,03/11/2016,03/11/2016 02:59:26 PM,03/11/2016 02:59:46 PM,03/11/2016 03:00:04 PM,03/11/2016 03:00:34 PM,03/11/2016 03:26:12 PM,03/11/2016 03:39:46 PM,03/11/2016 04:10:38 PM,Code 2 Transport,03/11/2016 04:38:45 PM,100 Block of ALBATROSS CT,San Francisco,94124,B10,17,6665,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7283776507, -122.3722060123)",160712133-78 -132070056,93,13069970,Medical Incident,07/26/2013,07/25/2013,07/26/2013 05:46:09 AM,07/26/2013 05:47:26 AM,07/26/2013 05:49:19 AM,04/25/2016 01:51:37 PM,07/26/2013 06:09:04 AM,07/26/2013 06:21:28 AM,07/26/2013 06:33:22 AM,Code 2 Transport,07/26/2013 07:07:26 AM,3700 Block of FILLMORE ST,SF,94123,B04,16,3556,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8049371632981, -122.437001553834)",132070056-93 -160191710,KM04,16007635,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:47:19 PM,01/19/2016 12:50:31 PM,01/19/2016 12:50:44 PM,01/19/2016 12:51:14 PM,01/19/2016 01:01:07 PM,01/19/2016 01:11:59 PM,01/19/2016 01:33:56 PM,Code 2 Transport,01/19/2016 02:11:28 PM,200 Block of CUMBERLAND ST,San Francisco,94114,B06,11,5444,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7587745198783, -122.429130636306)",160191710-KM04 -120650296,KM12,12021582,Medical Incident,03/05/2012,03/05/2012,03/05/2012 05:27:39 PM,03/05/2012 05:28:47 PM,03/05/2012 05:30:26 PM,03/05/2012 06:17:40 PM,03/05/2012 06:25:30 PM,03/05/2012 06:37:59 PM,03/05/2012 06:49:46 PM,Code 2 Transport,03/05/2012 07:10:11 PM,400 Block of ARGUELLO BLVD,SF,94118,B07,31,7113,2,2,2,false,Non Life-threatening,1,PRIVATE,3,7,2,Presidio Heights,"(37.7822260108075, -122.458859437192)",120650296-KM12 -131660208,66,13056405,Medical Incident,06/15/2013,06/15/2013,06/15/2013 03:05:48 PM,06/15/2013 03:06:30 PM,06/15/2013 03:06:52 PM,06/15/2013 03:07:10 PM,06/15/2013 03:10:07 PM,06/15/2013 03:27:30 PM,06/15/2013 03:32:23 PM,Code 2 Transport,06/15/2013 04:07:48 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",131660208-66 -131610224,65,13054719,Medical Incident,06/10/2013,06/10/2013,06/10/2013 02:14:25 PM,06/10/2013 02:15:21 PM,06/10/2013 02:18:22 PM,04/25/2016 01:52:21 PM,06/10/2013 02:26:51 PM,06/10/2013 02:40:04 PM,06/10/2013 03:10:03 PM,Code 2 Transport,06/10/2013 03:31:21 PM,1700 Block of NEWCOMB AVE,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7368641209131, -122.392545432607)",131610224-65 -102740352,E03,10087148,Alarms,10/01/2010,10/01/2010,10/01/2010 08:42:31 PM,10/01/2010 08:44:24 PM,10/01/2010 08:44:53 PM,10/01/2010 08:45:52 PM,10/01/2010 08:47:47 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 08:53:53 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",102740352-E03 -113220051,89,11106853,Medical Incident,11/18/2011,11/17/2011,11/18/2011 04:45:48 AM,11/18/2011 04:55:56 AM,11/18/2011 04:58:35 AM,11/18/2011 05:13:28 AM,11/18/2011 05:18:55 AM,11/18/2011 05:37:04 AM,11/18/2011 06:06:32 AM,Code 2 Transport,11/18/2011 06:41:21 AM,POTRERO AV/22ND ST,SF,94110,B10,7,2553,1,1,2,true,,1,MEDIC,2,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",113220051-89 -133200188,RS1,13108730,Medical Incident,11/16/2013,11/16/2013,11/16/2013 01:29:13 PM,11/16/2013 01:30:04 PM,11/16/2013 01:33:17 PM,04/25/2016 01:49:44 PM,11/16/2013 01:35:35 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 01:41:21 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,false,Non Life-threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",133200188-RS1 -113530332,E01,11117327,Alarms,12/19/2011,12/19/2011,12/19/2011 08:25:00 PM,12/19/2011 08:25:43 PM,12/19/2011 08:25:58 PM,04/25/2016 02:01:04 PM,12/19/2011 08:29:20 PM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 08:41:09 PM,0 Block of STOCKTON ST,SF,94108,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7860371623519, -122.406212878217)",113530332-E01 -133480210,T01,13118133,Medical Incident,12/14/2013,12/14/2013,12/14/2013 01:40:13 PM,12/14/2013 01:46:35 PM,12/14/2013 01:46:54 PM,12/14/2013 01:48:38 PM,12/14/2013 01:57:32 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 01:59:20 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,TRUCK,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",133480210-T01 -160840483,65,16033253,Medical Incident,03/24/2016,03/23/2016,03/24/2016 06:24:04 AM,03/24/2016 06:24:04 AM,03/24/2016 06:25:06 AM,03/24/2016 06:25:15 AM,03/24/2016 06:30:22 AM,03/24/2016 07:13:54 AM,03/24/2016 07:14:01 AM,Code 2 Transport,03/24/2016 07:15:57 AM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160840483-65 -131730368,66,13058875,Medical Incident,06/22/2013,06/22/2013,06/22/2013 10:56:16 PM,06/22/2013 10:58:23 PM,06/22/2013 10:58:52 PM,06/22/2013 10:59:15 PM,06/22/2013 11:09:32 PM,06/22/2013 11:19:50 PM,06/22/2013 11:33:58 PM,Code 2 Transport,06/22/2013 11:54:14 PM,MISSION ST/FOOTE AV,SF,94112,B09,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7126222176645, -122.444743290966)",131730368-66 -133160346,93,13107572,Medical Incident,11/12/2013,11/12/2013,11/12/2013 11:18:01 PM,11/12/2013 11:19:41 PM,11/12/2013 11:20:33 PM,11/12/2013 11:20:54 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/12/2013 11:27:59 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",133160346-93 -132740254,RS1,13093167,Traffic Collision,10/01/2013,10/01/2013,10/01/2013 04:45:30 PM,10/01/2013 04:52:03 PM,10/01/2013 04:52:58 PM,10/01/2013 04:54:43 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 04:55:31 PM,TURK ST/TAYLOR ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",132740254-RS1 -160720860,KM09,16028515,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:33:46 AM,03/12/2016 08:35:34 AM,03/12/2016 08:35:52 AM,03/12/2016 08:36:23 AM,03/12/2016 08:38:03 AM,03/12/2016 08:58:46 AM,03/12/2016 09:12:39 AM,Code 2 Transport,03/12/2016 10:02:47 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160720860-KM09 -123230297,T01,12107516,Alarms,11/18/2012,11/18/2012,11/18/2012 08:33:16 PM,11/18/2012 08:34:22 PM,11/18/2012 08:34:30 PM,11/18/2012 08:36:32 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Other,11/18/2012 08:48:16 PM,0 Block of KEARNY ST,SF,94108,B01,1,1241,3,3,3,false,Alarm,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7877942875414, -122.403529728368)",123230297-T01 -111100339,75,11036435,Medical Incident,04/20/2011,04/20/2011,04/20/2011 07:05:09 PM,04/20/2011 07:06:05 PM,04/20/2011 07:07:00 PM,04/20/2011 07:07:10 PM,04/20/2011 07:08:22 PM,04/20/2011 07:25:21 PM,04/20/2011 07:29:56 PM,Code 2 Transport,04/20/2011 08:04:31 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",111100339-75 -160670552,75,16026632,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:30:12 AM,03/07/2016 08:30:49 AM,03/07/2016 08:37:53 AM,03/07/2016 08:45:50 AM,03/07/2016 09:06:33 AM,03/07/2016 09:18:22 AM,03/07/2016 09:18:22 AM,Code 2 Transport,03/07/2016 10:09:12 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160670552-75 -160790545,65,16031313,Medical Incident,03/19/2016,03/18/2016,03/19/2016 05:17:07 AM,03/19/2016 05:17:35 AM,03/19/2016 05:18:09 AM,03/19/2016 05:18:16 AM,03/19/2016 05:23:17 AM,03/19/2016 05:31:43 AM,03/19/2016 05:39:03 AM,Code 2 Transport,03/19/2016 06:16:24 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160790545-65 -132960164,E07,13100586,Medical Incident,10/23/2013,10/23/2013,10/23/2013 01:06:55 PM,10/23/2013 01:07:35 PM,10/23/2013 01:08:27 PM,10/23/2013 01:09:22 PM,10/23/2013 01:10:52 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,No Merit,10/23/2013 01:13:40 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",132960164-E07 -160750292,AM20,16029569,Medical Incident,03/15/2016,03/14/2016,03/15/2016 03:36:39 AM,03/15/2016 03:40:02 AM,03/15/2016 03:40:19 AM,03/15/2016 03:40:50 AM,03/15/2016 03:48:05 AM,03/15/2016 03:56:45 AM,03/15/2016 04:21:32 AM,Code 2 Transport,03/15/2016 05:02:12 AM,0 Block of TAYLOR ST,San Francisco,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",160750292-AM20 -160854115,88,16034006,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:53:30 PM,03/25/2016 10:54:35 PM,03/25/2016 10:59:22 PM,03/25/2016 10:59:31 PM,03/25/2016 11:10:42 PM,03/25/2016 11:13:02 PM,03/25/2016 11:36:10 PM,Code 2 Transport,03/25/2016 11:51:41 PM,400 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",160854115-88 -112330049,93,11076828,Medical Incident,08/21/2011,08/20/2011,08/21/2011 02:18:41 AM,08/21/2011 02:19:25 AM,08/21/2011 02:19:46 AM,08/21/2011 02:20:20 AM,08/21/2011 02:25:50 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,No Merit,08/21/2011 02:43:39 AM,800 Block of MISSION ST,SF,94103,B03,1,2213,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7842037411779, -122.404517022534)",112330049-93 -133200032,E36,13108598,Structure Fire,11/16/2013,11/15/2013,11/16/2013 03:29:39 AM,11/16/2013 03:29:39 AM,11/16/2013 03:29:46 AM,11/16/2013 03:31:41 AM,11/16/2013 03:34:19 AM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 03:39:44 AM,100 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7695927062544, -122.416688485879)",133200032-E36 -132960064,B06,13100504,Alarms,10/23/2013,10/23/2013,10/23/2013 08:12:48 AM,10/23/2013 08:14:34 AM,10/23/2013 08:15:04 AM,10/23/2013 08:16:48 AM,10/23/2013 08:19:44 AM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/23/2013 08:23:28 AM,3800 Block of 22ND ST,SF,94114,B06,24,5466,3,3,3,false,Alarm,1,CHIEF,1,6,8,Noe Valley,"(37.7546156128988, -122.433291053117)",132960064-B06 -132010270,KM04,13068229,Medical Incident,07/20/2013,07/20/2013,07/20/2013 05:56:40 PM,07/20/2013 05:57:53 PM,07/20/2013 05:58:07 PM,07/20/2013 06:00:50 PM,07/20/2013 06:06:22 PM,07/20/2013 06:21:15 PM,07/20/2013 06:36:27 PM,Code 2 Transport,07/20/2013 07:13:34 PM,900 Block of EDDY ST,SF,94102,B02,5,3262,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Western Addition,"(37.782522418285, -122.423274430962)",132010270-KM04 -111130010,T09,11037197,Structure Fire,04/23/2011,04/22/2011,04/23/2011 12:50:11 AM,04/23/2011 12:50:11 AM,04/23/2011 12:50:21 AM,04/23/2011 12:52:05 AM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Other,04/23/2011 12:53:43 AM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,false,,1,TRUCK,2,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",111130010-T09 -140770145,AM06,14026025,Medical Incident,03/18/2014,03/18/2014,03/18/2014 11:45:06 AM,03/18/2014 11:45:45 AM,03/18/2014 11:46:06 AM,03/18/2014 11:49:06 AM,03/18/2014 11:51:35 AM,03/18/2014 12:07:33 PM,03/18/2014 12:21:41 PM,Code 2 Transport,03/18/2014 12:49:48 PM,DOLORES ST/29TH ST,SAN FRANCISCO,94110,B06,11,5576,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.74383821721, -122.424384864393)",140770145-AM06 -122440344,87,12080812,Structure Fire,08/31/2012,08/31/2012,08/31/2012 09:46:24 PM,08/31/2012 09:47:42 PM,08/31/2012 09:47:50 PM,04/25/2016 01:56:58 PM,08/31/2012 09:59:32 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,08/31/2012 10:09:10 PM,300 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,true,Fire,1,MEDIC,4,1,3,Tenderloin,"(37.7873084363522, -122.409061356434)",122440344-87 -160801108,53,16031753,Medical Incident,03/20/2016,03/20/2016,03/20/2016 09:46:10 AM,03/20/2016 09:47:03 AM,03/20/2016 09:47:33 AM,03/20/2016 09:47:48 AM,03/20/2016 09:52:47 AM,03/20/2016 10:09:57 AM,03/20/2016 10:29:43 AM,Code 2 Transport,03/20/2016 10:44:11 AM,1400 Block of JACKSON ST,San Francisco,94109,B01,41,1633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7945147745264, -122.418943712595)",160801108-53 -160901471,74,16035684,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:12:58 AM,03/30/2016 11:12:58 AM,03/30/2016 11:13:18 AM,03/30/2016 11:13:29 AM,03/30/2016 11:22:17 AM,03/30/2016 11:34:32 AM,03/30/2016 11:43:16 AM,Code 2 Transport,03/30/2016 12:20:13 PM,EDDY ST/POLK ST,San Francisco,94109,B02,3,3115,2,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",160901471-74 -140860275,55,14029029,Medical Incident,03/27/2014,03/27/2014,03/27/2014 06:36:55 PM,03/27/2014 06:40:33 PM,03/27/2014 06:43:04 PM,03/27/2014 06:43:08 PM,03/27/2014 06:45:04 PM,03/27/2014 07:04:50 PM,03/27/2014 07:22:58 PM,Code 2 Transport,03/27/2014 07:41:48 PM,1100 Block of PHELPS ST,SAN FRANCISCO,94124,B10,25,6455,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7382501983449, -122.392622585703)",140860275-55 -140930390,92,14031447,Medical Incident,04/03/2014,04/03/2014,04/03/2014 11:24:22 PM,04/03/2014 11:27:19 PM,04/03/2014 11:27:43 PM,04/03/2014 11:30:12 PM,04/03/2014 11:31:28 PM,04/03/2014 11:50:54 PM,04/03/2014 11:55:29 PM,Code 2 Transport,04/04/2014 12:27:04 AM,SUTTER ST/VAN NESS AV,SAN FRANCISCO,94109,B04,3,3156,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Nob Hill,"(37.7875481388175, -122.421758104465)",140930390-92 -111500100,E11,11049636,Medical Incident,05/30/2011,05/30/2011,05/30/2011 09:29:06 AM,05/30/2011 09:30:12 AM,05/30/2011 09:30:27 AM,05/30/2011 09:32:22 AM,05/30/2011 09:33:30 AM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 09:53:55 AM,0 Block of 28TH ST,SF,94110,B06,11,5577,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7455620349301, -122.423383986336)",111500100-E11 -122760223,E01,12091148,Medical Incident,10/02/2012,10/02/2012,10/02/2012 01:07:39 PM,10/02/2012 01:09:38 PM,10/02/2012 01:10:02 PM,10/02/2012 01:11:34 PM,10/02/2012 01:15:16 PM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,No Merit,10/02/2012 01:17:47 PM,MASON ST/EDDY ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",122760223-E01 -103650050,66,10116972,Traffic Collision,12/31/2010,12/30/2010,12/31/2010 03:20:48 AM,12/31/2010 03:21:44 AM,12/31/2010 03:22:02 AM,12/31/2010 03:22:19 AM,12/31/2010 03:23:08 AM,12/31/2010 03:47:11 AM,12/31/2010 04:02:28 AM,Code 2 Transport,12/31/2010 05:02:21 AM,MARKET ST/5TH ST,SF,94103,B03,1,1364,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",103650050-66 -112870077,T11,11095061,Medical Incident,10/14/2011,10/13/2011,10/14/2011 05:43:21 AM,10/14/2011 05:45:56 AM,10/14/2011 05:46:15 AM,10/14/2011 05:47:30 AM,10/14/2011 05:52:17 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 05:53:05 AM,VALENCIA ST/MISSION ST,SF,94110,B06,11,5624,3,2,2,false,,1,TRUCK,2,6,9,Bernal Heights,"(37.7453890212933, -122.420019126223)",112870077-T11 -111810253,E36,11059781,Traffic Collision,06/30/2011,06/30/2011,06/30/2011 03:48:41 PM,06/30/2011 03:48:41 PM,06/30/2011 03:49:02 PM,06/30/2011 03:49:55 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 03:58:24 PM,SOUTH VAN NESS AV/12TH ST,SF,94103,B02,36,5116,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",111810253-E36 -160400422,KM03,16015893,Medical Incident,02/09/2016,02/08/2016,02/09/2016 05:53:31 AM,02/09/2016 05:54:10 AM,02/09/2016 05:55:43 AM,02/09/2016 05:56:22 AM,02/09/2016 06:05:01 AM,02/09/2016 06:10:36 AM,02/09/2016 06:45:52 AM,Code 2 Transport,02/09/2016 06:45:56 AM,200 Block of REY ST,San Francisco,94134,B09,44,6252,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7097220017383, -122.412881344927)",160400422-KM03 -133640206,E03,13123613,Alarms,12/30/2013,12/30/2013,12/30/2013 01:49:08 PM,12/30/2013 01:50:21 PM,12/30/2013 01:50:32 PM,04/25/2016 01:48:59 PM,12/30/2013 01:51:23 PM,04/25/2016 01:48:59 PM,04/25/2016 01:48:59 PM,Other,12/30/2013 02:03:26 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",133640206-E03 -111550196,E38,11051233,Medical Incident,06/04/2011,06/04/2011,06/04/2011 12:35:51 PM,06/04/2011 12:36:42 PM,06/04/2011 12:37:04 PM,06/04/2011 12:38:03 PM,06/04/2011 12:40:06 PM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,Other,06/04/2011 12:52:31 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",111550196-E38 -160633235,58,16025212,Traffic Collision,03/03/2016,03/03/2016,03/03/2016 07:12:11 PM,03/03/2016 07:12:11 PM,03/03/2016 07:15:53 PM,03/03/2016 07:16:02 PM,03/03/2016 07:28:01 PM,03/03/2016 07:39:55 PM,03/03/2016 07:48:37 PM,Code 2 Transport,03/03/2016 08:20:21 PM,300 Block of BAY SHORE BLVD,San Francisco,94110,B10,42,6374,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7410715852268, -122.406815851007)",160633235-58 -131410091,AM06,13047703,Medical Incident,05/21/2013,05/21/2013,05/21/2013 08:55:54 AM,05/21/2013 08:57:59 AM,05/21/2013 08:58:56 AM,05/21/2013 08:59:30 AM,05/21/2013 09:06:59 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,No Merit,05/21/2013 09:10:38 AM,3000 Block of HARRISON ST,SF,94110,B06,9,5622,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7491884934163, -122.411638550839)",131410091-AM06 -122660378,E13,12088052,Medical Incident,09/22/2012,09/22/2012,09/22/2012 11:29:19 PM,09/22/2012 11:29:41 PM,09/22/2012 11:32:46 PM,09/22/2012 11:39:06 PM,09/22/2012 11:43:44 PM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Other,09/22/2012 11:43:47 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,1,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.7980134745487, -122.405065483077)",122660378-E13 -113510059,T02,11116373,Structure Fire,12/17/2011,12/16/2011,12/17/2011 02:59:50 AM,12/17/2011 03:03:04 AM,12/17/2011 03:03:15 AM,12/17/2011 03:05:00 AM,12/17/2011 03:07:58 AM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/17/2011 03:09:23 AM,1000 Block of LEAVENWORTH ST,SF,94109,B01,41,1541,3,3,3,true,,1,TRUCK,8,1,3,Nob Hill,"(37.7907389447179, -122.415586290189)",113510059-T02 -121020064,E33,12033724,Medical Incident,04/11/2012,04/10/2012,04/11/2012 06:46:05 AM,04/11/2012 06:48:39 AM,04/11/2012 06:49:08 AM,04/11/2012 06:52:28 AM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 06:54:34 AM,1100 Block of GENEVA AVE,SF,94112,B09,43,6174,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.714843547449, -122.437337139152)",121020064-E33 -131220455,T12,13041248,Alarms,05/02/2013,05/02/2013,05/02/2013 09:57:11 PM,05/02/2013 09:57:12 PM,05/02/2013 09:57:30 PM,05/02/2013 09:58:55 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,04/25/2016 01:53:00 PM,Other,05/02/2013 10:37:10 PM,1700 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,false,Alarm,1,TRUCK,3,5,5,Haight Ashbury,"(37.769506585734, -122.451298930077)",131220455-T12 -110290237,T03,11009590,Medical Incident,01/29/2011,01/29/2011,01/29/2011 04:00:30 PM,01/29/2011 04:01:04 PM,01/29/2011 04:01:30 PM,01/29/2011 04:02:40 PM,01/29/2011 04:04:59 PM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Other,01/29/2011 04:05:15 PM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",110290237-T03 -140380211,E07,14012843,Medical Incident,02/07/2014,02/07/2014,02/07/2014 01:34:47 PM,02/07/2014 01:35:28 PM,02/07/2014 01:38:22 PM,02/07/2014 01:38:22 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 01:38:47 PM,23RD ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7539677697092, -122.416413490249)",140380211-E07 -120220317,B03,12007613,Alarms,01/22/2012,01/22/2012,01/22/2012 10:08:51 PM,01/22/2012 10:12:09 PM,01/22/2012 10:12:32 PM,01/22/2012 10:14:21 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/22/2012 10:22:08 PM,200 Block of CALIFORNIA AVE,TI,94130,B03,48,2931,3,3,3,false,Alarm,1,CHIEF,3,None,6,Treasure Island,"(37.8185164804515, -122.369756931422)",120220317-B03 -112410250,T16,11079577,Alarms,08/29/2011,08/29/2011,08/29/2011 04:57:11 PM,08/29/2011 04:57:43 PM,08/29/2011 04:59:01 PM,08/29/2011 05:00:23 PM,08/29/2011 05:04:44 PM,04/25/2016 02:02:56 PM,04/25/2016 02:02:56 PM,Other,08/29/2011 05:07:38 PM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,false,,1,TRUCK,2,7,2,Presidio,"(37.8012720767056, -122.453377012346)",112410250-T16 -132750361,E03,13093577,Medical Incident,10/02/2013,10/02/2013,10/02/2013 10:59:38 PM,10/02/2013 11:00:30 PM,10/02/2013 11:01:39 PM,10/02/2013 11:03:17 PM,10/02/2013 11:04:47 PM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,Other,10/02/2013 11:20:05 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",132750361-E03 -122350103,E08,12077804,Outside Fire,08/22/2012,08/22/2012,08/22/2012 09:43:47 AM,08/22/2012 09:44:17 AM,08/22/2012 09:44:37 AM,08/22/2012 09:45:04 AM,08/22/2012 09:51:06 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Fire,08/22/2012 09:55:48 AM,3RD ST/FOLSOM ST,SF,94107,B03,1,2176,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7837849329145, -122.398930333419)",122350103-E08 -140720264,T16,14024379,Water Rescue,03/13/2014,03/13/2014,03/13/2014 03:36:02 PM,03/13/2014 03:37:31 PM,03/13/2014 03:38:54 PM,03/13/2014 03:41:16 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,Fire,03/13/2014 03:43:27 PM,900 Block of MARINE DR,,94129,B99,51,4628,3,E,3,false,Fire,1,TRUCK,11,7,2,Presidio,"(37.8089767888005, -122.47460956271)",140720264-T16 -121150277,B02,12038227,Alarms,04/24/2012,04/24/2012,04/24/2012 06:13:24 PM,04/24/2012 06:14:26 PM,04/24/2012 06:15:43 PM,04/24/2012 06:17:01 PM,04/24/2012 06:19:54 PM,04/25/2016 01:59:01 PM,04/25/2016 01:59:01 PM,Fire,04/24/2012 06:22:57 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",121150277-B02 -121350369,T05,12045052,Structure Fire,05/14/2012,05/14/2012,05/14/2012 10:56:37 PM,05/14/2012 10:56:37 PM,05/14/2012 10:56:44 PM,05/14/2012 10:57:48 PM,05/14/2012 10:59:21 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 10:59:28 PM,FILLMORE ST/GEARY BL,SF,94115,B04,5,3541,3,3,3,false,Alarm,1,TRUCK,1,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",121350369-T05 -140960333,88,14032444,Medical Incident,04/06/2014,04/06/2014,04/06/2014 07:59:16 PM,04/06/2014 08:03:51 PM,04/06/2014 08:05:57 PM,04/06/2014 08:06:02 PM,04/06/2014 08:19:15 PM,04/06/2014 08:42:53 PM,04/06/2014 08:53:54 PM,Code 2 Transport,04/06/2014 09:14:03 PM,200 Block of GOLDEN GATE AVE,SAN FRANCISCO,94102,B02,1,1546,,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",140960333-88 -160662924,71,16026512,Medical Incident,03/06/2016,03/06/2016,03/06/2016 08:18:00 PM,03/06/2016 08:19:49 PM,03/06/2016 08:20:03 PM,03/06/2016 08:20:09 PM,03/06/2016 08:33:43 PM,03/06/2016 08:41:05 PM,03/06/2016 08:52:03 PM,Code 2 Transport,03/06/2016 09:22:56 PM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160662924-71 -122060301,79,12068590,Medical Incident,07/24/2012,07/24/2012,07/24/2012 06:40:18 PM,07/24/2012 06:40:18 PM,07/24/2012 06:40:37 PM,07/24/2012 06:40:50 PM,07/24/2012 06:45:56 PM,04/25/2016 01:57:33 PM,04/25/2016 01:57:33 PM,Other,07/24/2012 06:58:28 PM,1900 Block of 42ND AVE,SF,94116,B08,23,7646,3,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7503526146939, -122.500991545432)",122060301-79 -131540015,T07,13052015,Alarms,06/03/2013,06/02/2013,06/03/2013 12:54:30 AM,06/03/2013 12:55:32 AM,06/03/2013 12:56:09 AM,06/03/2013 12:57:36 AM,06/03/2013 12:59:59 AM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/03/2013 01:03:13 AM,2300 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7594297986956, -122.419198310755)",131540015-T07 -120400159,96,12013317,Traffic Collision,02/09/2012,02/09/2012,02/09/2012 12:40:32 PM,02/09/2012 12:40:32 PM,02/09/2012 12:41:53 PM,04/25/2016 02:00:13 PM,02/09/2012 12:45:59 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 12:53:15 PM,15TH ST/SAN BRUNO AV,SF,94103,B02,29,2352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.7672000632781, -122.4057076678)",120400159-96 -120330223,78,12010944,Medical Incident,02/02/2012,02/02/2012,02/02/2012 02:44:43 PM,02/02/2012 02:46:16 PM,02/02/2012 02:47:21 PM,04/25/2016 02:00:20 PM,02/02/2012 02:54:29 PM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/02/2012 02:57:08 PM,GRANT AV/SUTTER ST,SF,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7896315964453, -122.405398674237)",120330223-78 -111930056,67,11063621,Medical Incident,07/12/2011,07/11/2011,07/12/2011 06:57:17 AM,07/12/2011 07:00:01 AM,07/12/2011 07:00:59 AM,07/12/2011 07:03:52 AM,07/12/2011 07:12:29 AM,07/12/2011 07:29:55 AM,07/12/2011 08:12:15 AM,Code 2 Transport,07/12/2011 08:49:43 AM,1400 Block of SHAFTER AVE,SF,94124,B10,17,6571,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294048495731, -122.387959857967)",111930056-67 -112240354,E38,11074134,Structure Fire,08/12/2011,08/12/2011,08/12/2011 08:45:22 PM,08/12/2011 08:47:40 PM,08/12/2011 08:47:57 PM,08/12/2011 08:49:24 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 08:52:06 PM,600 Block of LARCH ST,SF,94115,B02,5,3426,3,3,3,false,,1,ENGINE,8,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",112240354-E38 -160063271,55,16002566,Medical Incident,01/06/2016,01/06/2016,01/06/2016 07:43:59 PM,01/06/2016 07:44:18 PM,01/06/2016 07:45:02 PM,01/06/2016 07:46:05 PM,01/06/2016 07:50:50 PM,01/06/2016 08:18:55 PM,01/06/2016 08:28:08 PM,Code 2 Transport,01/06/2016 09:23:56 PM,1200 Block of EDDY ST,San Francisco,94115,B02,5,3366,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7818979587644, -122.428207532186)",160063271-55 -120760102,E22,12025157,Medical Incident,03/16/2012,03/16/2012,03/16/2012 10:31:24 AM,03/16/2012 10:33:38 AM,03/16/2012 10:34:42 AM,03/16/2012 10:35:56 AM,03/16/2012 10:42:21 AM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Other,03/16/2012 10:51:14 AM,IRVING ST/9TH AV,SF,94122,B08,22,7333,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",120760102-E22 -133050136,E33,13103591,Electrical Hazard,11/01/2013,11/01/2013,11/01/2013 09:11:39 AM,11/01/2013 09:12:46 AM,11/01/2013 09:12:57 AM,11/01/2013 09:14:22 AM,11/01/2013 09:17:46 AM,04/25/2016 01:49:59 PM,04/25/2016 01:49:59 PM,Other,11/01/2013 09:21:28 AM,1000 Block of PLYMOUTH AVE,SF,94112,B09,33,8465,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209393879121, -122.456206636241)",133050136-E33 -133640186,KM01,13123599,Medical Incident,12/30/2013,12/30/2013,12/30/2013 12:47:01 PM,12/30/2013 12:49:46 PM,12/30/2013 12:50:34 PM,12/30/2013 12:51:00 PM,12/30/2013 01:05:13 PM,12/30/2013 01:20:18 PM,12/30/2013 01:43:21 PM,Code 2 Transport,12/30/2013 02:23:51 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",133640186-KM01 -132560053,89,13086434,Medical Incident,09/13/2013,09/12/2013,09/13/2013 05:14:46 AM,09/13/2013 05:16:59 AM,09/13/2013 05:17:23 AM,09/13/2013 05:18:17 AM,09/13/2013 05:26:23 AM,09/13/2013 05:30:51 AM,09/13/2013 05:38:40 AM,Code 2 Transport,09/13/2013 05:58:49 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132560053-89 -160053903,58,16002211,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:53:57 PM,01/05/2016 11:56:02 PM,01/05/2016 11:56:40 PM,01/05/2016 11:57:10 PM,01/06/2016 12:01:46 AM,01/06/2016 12:25:19 AM,01/06/2016 12:37:57 AM,Code 2 Transport,01/06/2016 01:10:06 AM,2800 Block of FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.751708669465, -122.413936942101)",160053903-58 -130960094,E38,13032112,Structure Fire,04/06/2013,04/05/2013,04/06/2013 07:17:57 AM,04/06/2013 07:18:54 AM,04/06/2013 07:19:08 AM,04/06/2013 07:20:02 AM,04/06/2013 07:22:55 AM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 07:23:50 AM,LARKIN ST/MYRTLE ST,SF,94109,B04,3,1642,3,3,3,false,Alarm,1,ENGINE,3,4,6,Tenderloin,"(37.7856417088638, -122.417996270411)",130960094-E38 -120140233,T07,12004818,Structure Fire,01/14/2012,01/14/2012,01/14/2012 05:23:09 PM,01/14/2012 05:23:09 PM,01/14/2012 05:23:45 PM,01/14/2012 05:25:24 PM,04/25/2016 02:00:38 PM,04/25/2016 02:00:38 PM,04/25/2016 02:00:38 PM,Other,01/14/2012 05:27:51 PM,16TH ST/FOLSOM ST,SF,94103,B02,7,5237,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7653146395623, -122.415308388717)",120140233-T07 -160352727,62,16013905,Medical Incident,02/04/2016,02/04/2016,02/04/2016 04:55:26 PM,02/04/2016 04:55:53 PM,02/04/2016 04:56:38 PM,02/04/2016 04:56:45 PM,02/04/2016 05:02:29 PM,02/04/2016 05:41:07 PM,02/04/2016 06:08:56 PM,Code 2 Transport,02/04/2016 06:44:34 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160352727-62 -120730010,92,12024085,Medical Incident,03/13/2012,03/12/2012,03/13/2012 12:59:20 AM,03/13/2012 01:01:37 AM,03/13/2012 01:01:57 AM,03/13/2012 01:02:20 AM,03/13/2012 01:16:47 AM,03/13/2012 01:26:03 AM,03/13/2012 01:33:18 AM,Code 2 Transport,03/13/2012 01:59:49 AM,900 Block of HOWARD ST,SF,94103,B03,1,2245,1,1,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7811500329072, -122.405277197305)",120730010-92 -113350041,D2,11110786,Structure Fire,12/01/2011,11/30/2011,12/01/2011 04:30:16 AM,12/01/2011 04:30:51 AM,12/01/2011 04:31:01 AM,12/01/2011 04:33:27 AM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,12/01/2011 04:35:42 AM,3300 Block of 24TH ST,SF,94110,B06,11,5525,3,3,3,false,,2,CHIEF,33,6,9,Mission,"(37.752210060329, -122.41982607432)",113350041-D2 -120620073,AP,12020290,Other,03/02/2012,03/02/2012,03/02/2012 08:01:15 AM,03/02/2012 08:01:15 AM,03/02/2012 08:01:15 AM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Fire,03/02/2012 08:01:41 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120620073-AP -160201815,60,16008005,Traffic Collision,01/20/2016,01/20/2016,01/20/2016 12:57:17 PM,01/20/2016 12:57:17 PM,01/20/2016 12:57:44 PM,01/20/2016 12:58:13 PM,01/20/2016 01:07:08 PM,01/20/2016 01:25:55 PM,01/20/2016 01:39:13 PM,Other,01/20/2016 02:46:54 PM,POLK ST/OFARRELL ST,San Francisco,94109,B02,3,3115,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7849602595618, -122.419547854942)",160201815-60 -122610097,KM01,12086163,Medical Incident,09/17/2012,09/17/2012,09/17/2012 09:33:07 AM,09/17/2012 09:35:14 AM,09/17/2012 09:37:56 AM,09/17/2012 09:39:26 AM,09/17/2012 09:44:24 AM,09/17/2012 09:58:06 AM,09/17/2012 10:11:39 AM,Code 2 Transport,09/17/2012 10:40:33 AM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7683208883339, -122.4243245293)",122610097-KM01 -111030079,95,11034053,Traffic Collision,04/13/2011,04/13/2011,04/13/2011 08:53:34 AM,04/13/2011 08:53:34 AM,04/13/2011 08:53:34 AM,04/13/2011 08:57:27 AM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/13/2011 08:59:24 AM,3900 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,true,,1,MEDIC,4,7,1,Inner Richmond,"(37.7812602215298, -122.461609339534)",111030079-95 -123230055,77,12107306,Medical Incident,11/18/2012,11/17/2012,11/18/2012 04:08:27 AM,11/18/2012 04:11:26 AM,11/18/2012 04:11:42 AM,11/18/2012 04:12:35 AM,11/18/2012 04:20:16 AM,11/18/2012 04:36:24 AM,11/18/2012 04:56:32 AM,Code 3 Transport,11/18/2012 05:29:14 AM,400 Block of 43RD AVE,SF,94121,B07,34,7265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7804126251317, -122.504177712633)",123230055-77 -113210341,E18,11106749,Medical Incident,11/17/2011,11/17/2011,11/17/2011 07:54:58 PM,11/17/2011 07:59:11 PM,11/17/2011 07:59:39 PM,11/17/2011 08:00:35 PM,11/17/2011 08:02:52 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/17/2011 08:17:40 PM,1600 Block of 26TH AVE,SF,94122,B08,18,7454,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7567038230665, -122.484238383037)",113210341-E18 -113190285,E38,11106020,Alarms,11/15/2011,11/15/2011,11/15/2011 04:33:16 PM,11/15/2011 04:35:38 PM,11/15/2011 04:35:55 PM,11/15/2011 04:36:58 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 04:41:50 PM,1100 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,false,,1,ENGINE,3,2,5,Western Addition,"(37.7809746787666, -122.428825144839)",113190285-E38 -160920643,53,16036352,Medical Incident,04/01/2016,03/31/2016,04/01/2016 07:37:15 AM,04/01/2016 07:39:36 AM,04/01/2016 07:40:18 AM,04/01/2016 07:40:33 AM,04/01/2016 07:56:53 AM,04/01/2016 08:23:08 AM,04/01/2016 08:56:32 AM,Code 2 Transport,04/01/2016 09:24:44 AM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7821103331421, -122.403196436662)",160920643-53 -122080093,E38,12069088,Medical Incident,07/26/2012,07/26/2012,07/26/2012 10:14:52 AM,07/26/2012 10:16:22 AM,07/26/2012 10:16:36 AM,07/26/2012 10:17:09 AM,07/26/2012 10:22:12 AM,04/25/2016 01:57:32 PM,04/25/2016 01:57:32 PM,Other,07/26/2012 10:23:04 AM,2000 Block of BUSH ST,SF,94115,B04,38,3512,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7872816258293, -122.430979800676)",122080093-E38 -140110098,E36,14003774,Medical Incident,01/11/2014,01/11/2014,01/11/2014 09:01:54 AM,01/11/2014 09:03:25 AM,01/11/2014 09:03:42 AM,01/11/2014 09:04:42 AM,01/11/2014 09:06:14 AM,04/25/2016 01:48:46 PM,04/25/2016 01:48:46 PM,Other,01/11/2014 09:12:19 AM,1600 Block of MARKET ST,SF,94103,B02,36,5115,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",140110098-E36 -160300104,AM16,16011622,Medical Incident,01/30/2016,01/29/2016,01/30/2016 12:33:33 AM,01/30/2016 12:33:33 AM,01/30/2016 12:34:09 AM,01/30/2016 12:35:00 AM,01/30/2016 12:42:34 AM,01/30/2016 12:55:50 AM,01/30/2016 01:03:56 AM,Code 2 Transport,01/30/2016 01:16:03 AM,0 Block of DAWSON PL,San Francisco,94108,B01,41,1414,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7933575585872, -122.410908188415)",160300104-AM16 -123640109,89,12121732,Structure Fire,12/29/2012,12/29/2012,12/29/2012 09:37:47 AM,12/29/2012 09:38:31 AM,12/29/2012 09:38:52 AM,12/29/2012 09:39:12 AM,12/29/2012 09:43:39 AM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/29/2012 03:58:01 PM,3200 Block of 23RD ST,SF,94110,B06,7,5511,3,3,3,true,Fire,3,MEDIC,6,6,9,Mission,"(37.7539896835859, -122.416964922852)",123640109-89 -122390125,AM16,12079087,Medical Incident,08/26/2012,08/26/2012,08/26/2012 10:50:02 AM,08/26/2012 10:53:05 AM,08/26/2012 10:53:46 AM,08/26/2012 10:55:32 AM,08/26/2012 11:09:15 AM,08/26/2012 11:09:25 AM,08/26/2012 11:26:39 AM,Code 2 Transport,08/26/2012 12:16:20 PM,4000 Block of 19TH ST,SF,94114,B06,6,5437,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7593350322467, -122.433185899608)",122390125-AM16 -160410630,67,16016343,Medical Incident,02/10/2016,02/09/2016,02/10/2016 07:32:03 AM,02/10/2016 07:33:08 AM,02/10/2016 07:33:29 AM,02/10/2016 07:33:42 AM,02/10/2016 07:38:54 AM,02/10/2016 07:56:33 AM,02/10/2016 08:03:48 AM,Code 2 Transport,02/10/2016 08:30:50 AM,MARKET ST/6TH ST,San Francisco,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160410630-67 -160313434,52,16012343,Medical Incident,01/31/2016,01/31/2016,01/31/2016 08:50:41 PM,01/31/2016 08:53:43 PM,01/31/2016 08:54:17 PM,01/31/2016 08:54:26 PM,01/31/2016 09:00:40 PM,01/31/2016 09:12:40 PM,01/31/2016 09:15:22 PM,Code 3 Transport,01/31/2016 10:00:58 PM,3400 Block of CALIFORNIA ST,San Francisco,94118,B07,10,4431,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7867794977083, -122.450948438002)",160313434-52 -112730376,E11,11090409,Medical Incident,09/30/2011,09/30/2011,09/30/2011 09:27:37 PM,09/30/2011 09:28:39 PM,09/30/2011 09:29:01 PM,09/30/2011 09:29:56 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 09:30:04 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,3,3,true,,1,ENGINE,3,6,9,Mission,"(37.749836317622, -122.418280538883)",112730376-E11 -103640147,B08,10116733,Structure Fire,12/30/2010,12/30/2010,12/30/2010 10:59:07 AM,12/30/2010 10:59:38 AM,12/30/2010 10:59:59 AM,12/30/2010 11:01:15 AM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Fire,12/30/2010 11:08:09 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,,1,CHIEF,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",103640147-B08 -110880315,E03,11029163,Structure Fire,03/29/2011,03/29/2011,03/29/2011 06:43:24 PM,03/29/2011 06:44:03 PM,03/29/2011 06:44:19 PM,03/29/2011 06:44:35 PM,03/29/2011 06:46:05 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 06:58:22 PM,700 Block of JONES ST,SF,94109,B01,3,1463,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7882867855712, -122.413408832931)",110880315-E03 -140110106,E36,14003778,Structure Fire,01/11/2014,01/11/2014,01/11/2014 09:35:29 AM,01/11/2014 09:36:03 AM,01/11/2014 09:36:52 AM,01/11/2014 09:37:28 AM,01/11/2014 09:39:24 AM,04/25/2016 01:48:46 PM,04/25/2016 01:48:46 PM,Other,01/11/2014 09:57:19 AM,400 Block of HAIGHT ST,SF,94117,B02,6,3524,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7722662896588, -122.429628963227)",140110106-E36 -112840344,E06,11094149,Medical Incident,10/11/2011,10/11/2011,10/11/2011 08:00:57 PM,10/11/2011 08:01:23 PM,10/11/2011 08:03:39 PM,10/11/2011 08:04:45 PM,10/11/2011 08:06:29 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,No Merit,10/11/2011 08:14:00 PM,VALENCIA ST/DUBOCE AV,SF,94103,B02,36,5126,3,2,2,true,,1,ENGINE,1,2,9,Mission,"(37.7698676980277, -122.422364819149)",112840344-E06 -132570406,T01,13087101,Alarms,09/14/2013,09/14/2013,09/14/2013 11:03:05 PM,09/14/2013 11:04:19 PM,09/14/2013 11:04:31 PM,09/14/2013 11:06:59 PM,09/14/2013 11:08:04 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 11:16:27 PM,0 Block of 4TH ST,SF,94103,B03,1,2212,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7854659679151, -122.405582629186)",132570406-T01 -160692545,82,16027545,Medical Incident,03/09/2016,03/09/2016,03/09/2016 04:17:20 PM,03/09/2016 04:18:00 PM,03/09/2016 04:18:25 PM,03/09/2016 04:18:40 PM,03/09/2016 04:26:03 PM,03/09/2016 04:48:04 PM,03/09/2016 05:03:38 PM,Code 2 Transport,03/09/2016 05:44:23 PM,0 Block of TOPEKA AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7345854632984, -122.40017736431)",160692545-82 -160883554,60,16035112,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:33:26 PM,03/28/2016 08:33:49 PM,03/28/2016 08:34:14 PM,03/28/2016 08:34:33 PM,03/28/2016 08:43:31 PM,03/28/2016 09:11:44 PM,03/28/2016 09:44:34 PM,Code 2 Transport,03/28/2016 10:48:52 PM,200 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8853,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",160883554-60 -112000321,T05,11066068,Medical Incident,07/19/2011,07/19/2011,07/19/2011 07:54:21 PM,07/19/2011 07:55:05 PM,07/19/2011 07:56:28 PM,07/19/2011 07:58:00 PM,07/19/2011 07:59:43 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/19/2011 08:13:04 PM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,2,2,false,,1,TRUCK,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",112000321-T05 -120800348,E06,12026708,Alarms,03/20/2012,03/20/2012,03/20/2012 09:59:39 PM,03/20/2012 10:00:12 PM,03/20/2012 10:01:00 PM,03/20/2012 10:02:20 PM,03/20/2012 10:04:17 PM,04/25/2016 01:59:34 PM,04/25/2016 01:59:34 PM,Other,03/20/2012 10:08:58 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",120800348-E06 -131140259,T11,13038496,Administrative,04/24/2013,04/24/2013,04/24/2013 03:43:25 PM,04/24/2013 03:43:27 PM,04/24/2013 03:44:00 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,04/25/2016 01:53:08 PM,Other,04/24/2013 03:44:20 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,false,,1,TRUCK,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",131140259-T11 -113050144,T19,11101237,Alarms,11/01/2011,11/01/2011,11/01/2011 10:03:49 AM,11/01/2011 10:04:51 AM,11/01/2011 10:05:08 AM,11/01/2011 10:05:40 AM,11/01/2011 10:09:18 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 10:17:28 AM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,,1,TRUCK,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",113050144-T19 -160903035,60,16035826,Medical Incident,03/30/2016,03/30/2016,03/30/2016 05:41:11 PM,03/30/2016 05:41:11 PM,03/30/2016 05:43:25 PM,03/30/2016 05:43:39 PM,03/30/2016 05:52:54 PM,03/30/2016 06:07:49 PM,03/30/2016 06:34:10 PM,Code 2 Transport,03/30/2016 06:51:56 PM,300 Block of BRAZIL AVE,San Francisco,94112,B09,43,6127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7233114402099, -122.432068293948)",160903035-60 -81340320,B01,8041112,Alarms,05/13/2008,05/13/2008,05/13/2008 07:38:29 PM,05/13/2008 07:39:39 PM,05/13/2008 07:39:43 PM,05/13/2008 07:41:14 PM,05/13/2008 07:41:16 PM,04/25/2016 03:34:14 PM,04/25/2016 03:34:14 PM,Other,05/13/2008 07:43:46 PM,1300 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,,1,CHIEF,1,1,3,Chinatown,"(37.7971785989656, -122.410144563624)",081340320-B01 -113030402,E10,11100742,Alarms,10/30/2011,10/30/2011,10/30/2011 09:11:11 PM,10/30/2011 09:12:27 PM,10/30/2011 09:12:43 PM,10/30/2011 09:14:08 PM,10/30/2011 09:16:19 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/30/2011 09:22:43 PM,2700 Block of PACIFIC AVE,SF,94115,B04,10,4163,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7926709376612, -122.440510330529)",113030402-E10 -111250241,59,11041411,Medical Incident,05/05/2011,05/05/2011,05/05/2011 03:13:13 PM,05/05/2011 03:14:28 PM,05/05/2011 03:24:24 PM,05/05/2011 03:24:30 PM,04/25/2016 02:04:46 PM,05/05/2011 03:34:58 PM,05/05/2011 03:50:22 PM,Code 2 Transport,05/05/2011 04:17:29 PM,BRYANT ST/DORE ST,SF,94103,B03,29,2333,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7708202419377, -122.409134369165)",111250241-59 -102850059,E14,10090656,Medical Incident,10/12/2010,10/11/2010,10/12/2010 06:15:43 AM,10/12/2010 06:18:10 AM,10/12/2010 06:19:02 AM,10/12/2010 06:20:49 AM,10/12/2010 06:26:11 AM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 07:27:16 AM,1500 Block of PERSHING DR,PR,94129,B99,51,4617,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.7928087460135, -122.477653715778)",102850059-E14 -160523366,88,16020989,Medical Incident,02/21/2016,02/21/2016,02/21/2016 09:36:09 PM,02/21/2016 09:36:09 PM,02/21/2016 09:36:46 PM,02/21/2016 09:36:55 PM,02/21/2016 09:46:57 PM,02/21/2016 10:05:19 PM,02/21/2016 10:19:59 PM,Code 2 Transport,02/21/2016 11:00:06 PM,1000 Block of OCEAN AVE,San Francisco,94112,B09,15,8224,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",160523366-88 -110590301,E02,11019479,Medical Incident,02/28/2011,02/28/2011,02/28/2011 06:49:23 PM,02/28/2011 06:50:47 PM,02/28/2011 06:50:58 PM,02/28/2011 06:52:25 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,02/28/2011 06:56:30 PM,BEACH ST/JONES ST,SF,94133,B01,28,1521,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8070725139897, -122.417260632444)",110590301-E02 -102650283,E01,10083970,Alarms,09/22/2010,09/22/2010,09/22/2010 07:19:59 PM,09/22/2010 07:21:08 PM,09/22/2010 07:21:19 PM,09/22/2010 07:24:04 PM,09/22/2010 07:24:27 PM,04/25/2016 02:08:28 PM,04/25/2016 02:08:28 PM,Other,09/22/2010 07:27:49 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",102650283-E01 -132490348,E39,13084169,Medical Incident,09/06/2013,09/06/2013,09/06/2013 08:32:43 PM,09/06/2013 08:34:59 PM,09/06/2013 08:35:50 PM,09/06/2013 08:37:57 PM,09/06/2013 08:40:41 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/06/2013 09:02:42 PM,200 Block of CRESTA VISTA DR,SF,94127,B09,39,8256,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.735631914703, -122.454282422725)",132490348-E39 -131520177,KM14,13051494,Medical Incident,06/01/2013,06/01/2013,06/01/2013 01:43:06 PM,06/01/2013 01:43:19 PM,06/01/2013 01:44:12 PM,06/01/2013 01:44:49 PM,06/01/2013 01:56:04 PM,06/01/2013 02:07:46 PM,06/01/2013 02:12:30 PM,Code 2 Transport,06/01/2013 02:43:26 PM,1700 Block of WALLER ST,SF,94117,B05,12,4552,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7683921771592, -122.452524251316)",131520177-KM14 -103580049,E11,10114806,Alarms,12/24/2010,12/23/2010,12/24/2010 03:53:10 AM,12/24/2010 03:56:07 AM,12/24/2010 03:56:14 AM,12/24/2010 03:57:31 AM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 03:58:09 AM,100 Block of COLERIDGE ST,SF,94110,B06,11,5662,3,3,3,true,,1,ENGINE,3,6,9,Bernal Heights,"(37.7433946152786, -122.42000112094)",103580049-E11 -111100033,E10,11036197,Medical Incident,04/20/2011,04/19/2011,04/20/2011 02:53:58 AM,04/20/2011 02:56:27 AM,04/20/2011 02:56:43 AM,04/20/2011 02:58:37 AM,04/20/2011 03:01:59 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 03:09:28 AM,1700 Block of GROVE ST,SF,94117,B05,21,4361,3,3,3,true,,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.7750328323783, -122.445449213896)",111100033-E10 -123610169,E25,12120793,Alarms,12/26/2012,12/26/2012,12/26/2012 12:26:53 PM,12/26/2012 12:28:33 PM,12/26/2012 12:29:16 PM,12/26/2012 12:30:21 PM,12/26/2012 12:33:21 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 01:06:41 PM,1000 Block of 23RD ST,SF,94107,B10,25,2573,3,3,3,false,Alarm,1,ENGINE,2,10,10,Potrero Hill,"(37.7551872566983, -122.390450030914)",123610169-E25 -110470401,T01,11015714,Alarms,02/16/2011,02/16/2011,02/16/2011 11:30:32 PM,02/16/2011 11:32:20 PM,02/16/2011 11:32:33 PM,02/16/2011 11:34:19 PM,02/16/2011 11:37:51 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 11:38:58 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,TRUCK,2,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",110470401-T01 -160643982,89,16025719,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:33:33 PM,03/04/2016 10:33:33 PM,03/04/2016 10:34:13 PM,03/04/2016 10:34:39 PM,03/04/2016 10:36:30 PM,03/04/2016 11:09:17 PM,03/04/2016 11:27:54 PM,Code 2 Transport,03/05/2016 12:38:57 AM,FULTON ST/SHRADER ST,San Francisco,94118,B05,21,4542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,1,Lone Mountain/USF,"(37.7749707534359, -122.453003329775)",160643982-89 -113480290,E06,11115547,Medical Incident,12/14/2011,12/14/2011,12/14/2011 05:05:28 PM,12/14/2011 05:07:40 PM,12/14/2011 05:08:54 PM,12/14/2011 05:09:56 PM,12/14/2011 05:12:13 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 05:56:08 PM,100 Block of GUERRERO ST,SF,94103,B02,6,5214,3,2,2,true,,1,ENGINE,1,2,8,Mission,"(37.7688930095544, -122.42438060559)",113480290-E06 -93550291,E03,9107640,Other,12/21/2009,12/21/2009,12/21/2009 04:45:33 PM,12/21/2009 04:45:47 PM,12/21/2009 04:46:04 PM,12/21/2009 04:47:10 PM,12/21/2009 04:50:50 PM,04/25/2016 03:25:27 PM,04/25/2016 03:25:27 PM,Other,12/21/2009 04:58:56 PM,200 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",093550291-E03 -160910455,AM24,16035966,Medical Incident,03/31/2016,03/30/2016,03/31/2016 05:55:04 AM,03/31/2016 05:56:24 AM,03/31/2016 06:02:19 AM,03/31/2016 06:02:19 AM,03/31/2016 06:11:21 AM,03/31/2016 06:22:04 AM,03/31/2016 06:44:13 AM,Code 2 Transport,03/31/2016 07:26:24 AM,5600 Block of 3RD ST,San Francisco,94124,B10,17,6537,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",160910455-AM24 -112750312,KM14,11091136,Medical Incident,10/02/2011,10/02/2011,10/02/2011 06:57:51 PM,10/02/2011 07:00:00 PM,10/02/2011 07:28:34 PM,10/02/2011 07:29:55 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,04/25/2016 02:02:21 PM,0 Block of HARBOR RD,SF,94124,B10,17,6633,1,1,2,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",112750312-KM14 -160383699,78,16015416,Medical Incident,02/07/2016,02/07/2016,02/07/2016 11:03:52 PM,02/07/2016 11:06:16 PM,02/07/2016 11:06:31 PM,02/07/2016 11:06:45 PM,02/07/2016 11:09:52 PM,02/07/2016 11:43:45 PM,02/07/2016 11:49:43 PM,Code 2 Transport,02/08/2016 12:26:17 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",160383699-78 -132940320,B08,13100103,Structure Fire,10/21/2013,10/21/2013,10/21/2013 06:32:33 PM,10/21/2013 06:32:33 PM,10/21/2013 06:32:59 PM,10/21/2013 06:34:21 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,No Merit,10/21/2013 06:46:46 PM,2200 Block of QUINTARA ST,SF,94116,B08,18,7532,3,3,3,false,Alarm,1,CHIEF,6,8,4,Sunset/Parkside,"(37.7479994720724, -122.489468779986)",132940320-B08 -140470070,E36,14015916,Alarms,02/16/2014,02/15/2014,02/16/2014 04:46:16 AM,02/16/2014 04:46:22 AM,02/16/2014 04:46:30 AM,02/16/2014 04:48:48 AM,02/16/2014 04:51:57 AM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 05:00:23 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,true,Alarm,1,ENGINE,1,2,6,Mission,"(37.7741251002903, -122.418810211803)",140470070-E36 -160322439,66,16012653,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:14:10 PM,02/01/2016 04:16:30 PM,02/01/2016 04:17:14 PM,02/01/2016 04:17:24 PM,02/01/2016 04:26:09 PM,02/01/2016 05:03:10 PM,02/01/2016 05:03:11 PM,Code 2 Transport,02/01/2016 05:57:12 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160322439-66 -103620140,E48,10116072,Administrative,12/28/2010,12/28/2010,12/28/2010 11:27:56 AM,12/28/2010 11:27:58 AM,12/28/2010 11:28:21 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Fire,12/28/2010 11:32:34 AM,800 Block of AVENUE D,TI,94130,B03,48,2931,3,3,3,true,,1,ENGINE,1,None,6,Treasure Island,"(37.8249207757165, -122.373266783979)",103620140-E48 -120240050,E25,12008003,Medical Incident,01/24/2012,01/23/2012,01/24/2012 07:10:12 AM,01/24/2012 07:10:12 AM,01/24/2012 07:10:36 AM,01/24/2012 07:11:46 AM,01/24/2012 07:14:04 AM,04/25/2016 02:00:28 PM,04/25/2016 02:00:28 PM,Other,01/24/2012 07:15:57 AM,EVANS AV/PHELPS ST,SF,94124,B10,25,6457,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7429806182434, -122.388455028839)",120240050-E25 -160503979,61,16020294,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:30:37 PM,02/19/2016 11:31:54 PM,02/19/2016 11:32:03 PM,02/19/2016 11:32:20 PM,02/19/2016 11:36:24 PM,02/19/2016 11:49:25 PM,02/20/2016 12:03:28 AM,Code 2 Transport,02/20/2016 12:36:13 AM,10TH AV/JUDAH ST,San Francisco,94122,B08,22,7345,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7621279806862, -122.467253140185)",160503979-61 -140690245,B02,14023336,Traffic Collision,03/10/2014,03/10/2014,03/10/2014 04:06:39 PM,03/10/2014 04:08:31 PM,03/10/2014 04:09:29 PM,03/10/2014 04:10:43 PM,03/10/2014 04:14:15 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Patient Declined Transport,03/10/2014 04:33:28 PM,GOUGH ST/OAK ST,SAN FRANCISCO,94102,B02,36,3266,3,3,3,true,Potentially Life-Threatening,1,CHIEF,4,2,5,Hayes Valley,"(37.7750206954016, -122.42259804367)",140690245-B02 -160860339,78,16034056,Medical Incident,03/26/2016,03/25/2016,03/26/2016 02:36:15 AM,03/26/2016 02:39:42 AM,03/26/2016 02:59:25 AM,03/26/2016 02:59:38 AM,03/26/2016 03:06:30 AM,03/26/2016 03:26:17 AM,03/26/2016 03:36:38 AM,Code 2 Transport,03/26/2016 04:11:45 AM,0 Block of THE EMBARCADERO,San Francisco,94105,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7930284747689, -122.39192878449)",160860339-78 -111180033,84,11038812,Medical Incident,04/28/2011,04/27/2011,04/28/2011 02:52:17 AM,04/28/2011 02:53:42 AM,04/28/2011 02:53:57 AM,04/28/2011 02:54:50 AM,04/28/2011 02:55:37 AM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,No Merit,04/28/2011 03:10:55 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",111180033-84 -140070040,KM07,14002376,Other,01/07/2014,01/06/2014,01/07/2014 03:47:57 AM,01/07/2014 03:50:00 AM,01/07/2014 03:52:40 AM,01/07/2014 03:53:29 AM,01/07/2014 03:57:00 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/07/2014 03:59:20 AM,3000 Block of OCTAVIA ST,SF,94123,B04,16,3336,3,3,3,false,Alarm,1,PRIVATE,3,4,2,Marina,"(37.8002420038498, -122.429312201047)",140070040-KM07 -131040290,77,13035014,Medical Incident,04/14/2013,04/14/2013,04/14/2013 05:41:24 PM,04/14/2013 05:42:42 PM,04/14/2013 05:44:06 PM,04/14/2013 05:44:18 PM,04/14/2013 05:58:44 PM,04/14/2013 06:06:06 PM,04/14/2013 06:20:45 PM,Code 2 Transport,04/14/2013 06:40:36 PM,800 Block of PERU AVE,SF,94134,B09,43,6153,2,2,2,false,Non Life-threatening,1,MEDIC,2,9,9,Excelsior,"(37.7245583608557, -122.423012102367)",131040290-77 -112890186,E07,11095877,Medical Incident,10/16/2011,10/16/2011,10/16/2011 01:06:28 PM,10/16/2011 01:07:30 PM,10/16/2011 01:07:47 PM,10/16/2011 01:08:51 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 01:13:37 PM,SYCAMORE ST/VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7625788323188, -122.421662478293)",112890186-E07 -122680006,KM12,12088384,Medical Incident,09/24/2012,09/23/2012,09/24/2012 12:12:09 AM,09/24/2012 12:14:47 AM,09/24/2012 12:16:34 AM,09/24/2012 12:17:12 AM,09/24/2012 12:25:06 AM,09/24/2012 12:41:26 AM,09/24/2012 12:59:55 AM,Code 2 Transport,09/24/2012 01:40:56 AM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8046368314261, -122.414251200714)",122680006-KM12 -103650007,E36,10116932,Structure Fire,12/31/2010,12/30/2010,12/31/2010 12:29:33 AM,12/31/2010 12:29:33 AM,12/31/2010 12:29:40 AM,12/31/2010 12:30:47 AM,12/31/2010 12:31:56 AM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/31/2010 12:32:28 AM,0 Block of VAN NESS AVE,SF,94102,B02,36,3211,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7752607728259, -122.419431229777)",103650007-E36 -140480323,E05,14016477,Alarms,02/17/2014,02/17/2014,02/17/2014 09:54:29 PM,02/17/2014 09:55:28 PM,02/17/2014 09:55:50 PM,02/17/2014 09:57:09 PM,02/17/2014 09:57:35 PM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,Fire,02/17/2014 10:04:58 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",140480323-E05 -160370664,AM20,16014561,Medical Incident,02/06/2016,02/05/2016,02/06/2016 04:06:53 AM,02/06/2016 04:07:49 AM,02/06/2016 04:08:05 AM,02/06/2016 04:09:29 AM,02/06/2016 04:17:06 AM,02/06/2016 04:29:04 AM,02/06/2016 04:40:58 AM,Code 2 Transport,02/06/2016 05:18:29 AM,300 Block of STOCKTON ST,San Francisco,94108,B01,1,1324,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7887345763527, -122.406886503606)",160370664-AM20 -123390025,E05,12112935,Medical Incident,12/04/2012,12/03/2012,12/04/2012 02:33:52 AM,12/04/2012 02:34:12 AM,12/04/2012 02:34:24 AM,12/04/2012 02:36:02 AM,12/04/2012 02:38:04 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 02:46:08 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",123390025-E05 -122220160,KM10,12073563,Medical Incident,08/09/2012,08/09/2012,08/09/2012 11:58:01 AM,08/09/2012 11:59:24 AM,08/09/2012 11:59:54 AM,08/09/2012 12:00:23 PM,08/09/2012 12:05:09 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,Patient Declined Transport,08/09/2012 12:20:14 PM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",122220160-KM10 -160470360,78,16018783,Medical Incident,02/16/2016,02/15/2016,02/16/2016 04:49:16 AM,02/16/2016 04:50:26 AM,02/16/2016 04:50:59 AM,02/16/2016 04:51:07 AM,02/16/2016 04:57:04 AM,02/16/2016 05:10:33 AM,02/16/2016 05:14:47 AM,Code 3 Transport,02/16/2016 05:37:43 AM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7696796386185, -122.449942040795)",160470360-78 -111450159,E22,11048158,Medical Incident,05/25/2011,05/25/2011,05/25/2011 01:02:04 PM,05/25/2011 01:02:42 PM,05/25/2011 01:03:20 PM,05/25/2011 01:04:29 PM,05/25/2011 01:05:44 PM,04/25/2016 02:04:27 PM,04/25/2016 02:04:27 PM,Other,05/25/2011 01:14:12 PM,1200 Block of 11TH AVE,SF,94122,B08,22,7345,3,3,3,false,,1,ENGINE,1,7,5,Inner Sunset,"(37.7648895505759, -122.468447974406)",111450159-E22 -123100185,E03,12103121,Structure Fire,11/05/2012,11/05/2012,11/05/2012 12:45:36 PM,11/05/2012 12:45:36 PM,11/05/2012 12:45:48 PM,11/05/2012 12:47:08 PM,11/05/2012 12:49:35 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Fire,11/05/2012 12:50:28 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",123100185-E03 -160101380,KM01,16004024,Medical Incident,01/10/2016,01/10/2016,01/10/2016 12:00:27 PM,01/10/2016 12:01:55 PM,01/10/2016 12:02:30 PM,01/10/2016 12:03:05 PM,01/10/2016 12:16:40 PM,01/10/2016 12:40:17 PM,01/10/2016 01:13:36 PM,Code 3 Transport,01/10/2016 02:20:03 PM,1100 Block of OCEAN AV,San Francisco,94112,B09,15,8472,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7238590119332, -122.455615862027)",160101380-KM01 -120540024,93,12017703,Explosion,02/23/2012,02/22/2012,02/23/2012 02:37:05 AM,02/23/2012 02:37:34 AM,02/23/2012 02:38:02 AM,02/23/2012 02:39:00 AM,02/23/2012 02:41:41 AM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 02:46:52 AM,TURK ST/MASON ST,SF,94103,B03,1,1365,3,3,3,true,Fire,1,MEDIC,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",120540024-93 -140760100,82,14025645,Medical Incident,03/17/2014,03/17/2014,03/17/2014 09:15:03 AM,03/17/2014 09:16:53 AM,03/17/2014 09:17:30 AM,03/17/2014 09:18:16 AM,03/17/2014 09:34:43 AM,03/17/2014 09:35:11 AM,03/17/2014 09:51:46 AM,Code 2 Transport,03/17/2014 10:03:16 AM,300 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",140760100-82 -160310680,62,16012089,Medical Incident,01/31/2016,01/30/2016,01/31/2016 06:40:07 AM,01/31/2016 06:41:16 AM,01/31/2016 06:42:02 AM,01/31/2016 06:42:14 AM,01/31/2016 06:47:07 AM,01/31/2016 07:13:07 AM,01/31/2016 07:22:42 AM,Code 2 Transport,01/31/2016 08:04:26 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160310680-62 -130330084,93,13011195,Medical Incident,02/02/2013,02/01/2013,02/02/2013 05:49:34 AM,02/02/2013 05:51:35 AM,02/02/2013 06:02:32 AM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,04/25/2016 01:54:30 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130330084-93 -160750146,AM24,16029549,Medical Incident,03/15/2016,03/14/2016,03/15/2016 01:37:24 AM,03/15/2016 01:37:24 AM,03/15/2016 01:38:08 AM,03/15/2016 01:38:50 AM,03/15/2016 01:50:01 AM,03/15/2016 02:01:46 AM,03/15/2016 02:12:10 AM,Code 2 Transport,03/15/2016 02:50:40 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160750146-AM24 -140190002,E01,14006381,Medical Incident,01/19/2014,01/18/2014,01/19/2014 12:03:38 AM,01/19/2014 12:05:17 AM,01/19/2014 12:06:52 AM,01/19/2014 12:08:47 AM,01/19/2014 12:10:42 AM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/19/2014 12:14:17 AM,1000 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",140190002-E01 -110240209,E39,11007887,Medical Incident,01/24/2011,01/24/2011,01/24/2011 12:56:09 PM,01/24/2011 12:57:16 PM,01/24/2011 12:57:34 PM,01/24/2011 12:58:21 PM,01/24/2011 01:01:43 PM,04/25/2016 02:06:26 PM,04/25/2016 02:06:26 PM,Other,01/24/2011 01:27:18 PM,2200 Block of 16TH AVE,SF,94116,B08,40,7375,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7459801051231, -122.472879028707)",110240209-E39 -102950107,96,10094019,Medical Incident,10/22/2010,10/22/2010,10/22/2010 09:00:01 AM,10/22/2010 09:01:43 AM,10/22/2010 09:02:30 AM,10/22/2010 09:02:39 AM,10/22/2010 09:08:09 AM,10/22/2010 09:29:05 AM,10/22/2010 09:39:04 AM,Code 2 Transport,10/22/2010 10:02:13 AM,MISSION ST/ITALY AV,SF,94112,B09,43,6125,3,3,3,true,,1,MEDIC,3,9,11,Outer Mission,"(37.7184672268884, -122.439500375084)",102950107-96 -160412805,86,16016560,Medical Incident,02/10/2016,02/10/2016,02/10/2016 05:09:17 PM,02/10/2016 05:14:03 PM,02/10/2016 05:14:49 PM,02/10/2016 05:15:25 PM,02/10/2016 05:19:13 PM,02/10/2016 05:33:09 PM,02/10/2016 05:44:13 PM,Code 2 Transport,02/10/2016 06:38:39 PM,900 Block of EDDY ST,San Francisco,94102,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.782522418285, -122.423274430962)",160412805-86 -112290222,T17,11075702,Structure Fire,08/17/2011,08/17/2011,08/17/2011 03:31:04 PM,08/17/2011 03:31:05 PM,08/17/2011 03:31:11 PM,08/17/2011 03:32:23 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 03:34:49 PM,SAN BRUNO AV/DWIGHT ST,SF,94134,B10,44,6326,3,3,3,false,,1,TRUCK,2,10,9,Portola,"(37.7240356145385, -122.402108391158)",112290222-T17 -113350278,E19,11110986,Medical Incident,12/01/2011,12/01/2011,12/01/2011 06:11:49 PM,12/01/2011 06:12:41 PM,12/01/2011 06:13:02 PM,12/01/2011 06:13:31 PM,12/01/2011 06:16:37 PM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,Other,12/01/2011 06:28:33 PM,2900 Block of 25TH AVE,SF,94132,B08,19,8734,3,3,3,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7334328921172, -122.480992659737)",113350278-E19 -112200231,T16,11072733,Structure Fire,08/08/2011,08/08/2011,08/08/2011 04:00:34 PM,08/08/2011 04:00:34 PM,08/08/2011 04:00:39 PM,08/08/2011 04:02:09 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 04:04:37 PM,FRANKLIN ST/UNION ST,SF,94123,B04,16,3233,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.7983435358641, -122.42562550508)",112200231-T16 -160432837,62,16017405,Medical Incident,02/12/2016,02/12/2016,02/12/2016 05:43:39 PM,02/12/2016 05:44:31 PM,02/12/2016 05:45:16 PM,02/12/2016 05:47:01 PM,02/12/2016 05:53:16 PM,02/12/2016 06:08:34 PM,02/12/2016 06:39:01 PM,Code 2 Transport,02/12/2016 07:06:27 PM,0 Block of WOODWARD ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7690757517644, -122.420788636046)",160432837-62 -160093050,58,16003761,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:22:18 PM,01/09/2016 07:23:58 PM,01/09/2016 07:24:29 PM,01/09/2016 07:24:37 PM,01/09/2016 07:34:58 PM,01/09/2016 07:47:28 PM,01/09/2016 08:03:03 PM,Code 2 Transport,01/09/2016 08:49:09 PM,100 Block of SADOWA ST,San Francisco,94112,B09,33,8371,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7123626229046, -122.457530975594)",160093050-58 -103550167,E29,10113945,Medical Incident,12/21/2010,12/21/2010,12/21/2010 12:40:34 PM,12/21/2010 12:41:35 PM,12/21/2010 12:43:03 PM,12/21/2010 12:45:55 PM,12/21/2010 12:49:26 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 12:51:36 PM,1200 Block of MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7764301693751, -122.414360138779)",103550167-E29 -160602352,KM11,16023971,Medical Incident,02/29/2016,02/29/2016,02/29/2016 04:01:23 PM,02/29/2016 04:04:45 PM,02/29/2016 04:06:30 PM,02/29/2016 04:09:41 PM,02/29/2016 04:09:41 PM,02/29/2016 04:19:10 PM,02/29/2016 04:29:05 PM,Code 2 Transport,02/29/2016 04:50:18 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160602352-KM11 -160503517,KM03,16020258,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:03:29 PM,02/19/2016 09:03:29 PM,02/19/2016 09:04:06 PM,02/19/2016 09:04:53 PM,02/19/2016 09:07:48 PM,02/19/2016 09:27:25 PM,02/19/2016 09:37:02 PM,Code 2 Transport,02/19/2016 10:11:42 PM,0 Block of CYRIL MAGNIN ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",160503517-KM03 -130940236,54,13031500,Medical Incident,04/04/2013,04/04/2013,04/04/2013 03:22:18 PM,04/04/2013 03:22:51 PM,04/04/2013 03:23:27 PM,04/04/2013 03:23:51 PM,04/04/2013 03:33:56 PM,04/04/2013 03:41:04 PM,04/04/2013 04:10:34 PM,Code 2 Transport,04/04/2013 04:33:46 PM,100 Block of BUCKINGHAM WAY,SF,94132,B08,19,8852,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",130940236-54 -140580154,B02,14019537,Alarms,02/27/2014,02/27/2014,02/27/2014 11:44:30 AM,02/27/2014 11:46:16 AM,02/27/2014 11:47:32 AM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,04/25/2016 01:48:00 PM,1800 Block of STEINER ST,SF,94115,B04,38,3621,3,3,3,false,Alarm,1,CHIEF,4,4,5,Pacific Heights,"(37.786352040698, -122.434943373804)",140580154-B02 -133520020,81,13119433,Medical Incident,12/18/2013,12/17/2013,12/18/2013 01:57:50 AM,12/18/2013 01:58:35 AM,12/18/2013 01:59:25 AM,12/18/2013 01:59:43 AM,12/18/2013 02:04:06 AM,12/18/2013 02:19:27 AM,12/18/2013 02:36:46 AM,Code 2 Transport,12/18/2013 03:45:55 AM,700 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7886486333611, -122.412702662693)",133520020-81 -131410160,AM16,13047753,Medical Incident,05/21/2013,05/21/2013,05/21/2013 11:20:45 AM,05/21/2013 11:22:23 AM,05/21/2013 11:22:37 AM,05/21/2013 11:23:43 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,No Merit,05/21/2013 11:30:03 AM,24TH ST/SHOTWELL ST,SF,94110,B06,7,544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,6,9,Mission,"(37.752439647175, -122.415172290461)",131410160-AM16 -113000023,E14,11099382,Medical Incident,10/27/2011,10/26/2011,10/27/2011 02:31:50 AM,10/27/2011 02:32:27 AM,10/27/2011 02:33:05 AM,04/25/2016 02:01:57 PM,10/27/2011 02:36:40 AM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 02:58:28 AM,600 Block of 24TH AVE,SF,94121,B07,14,7176,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7772794957607, -122.483526844416)",113000023-E14 -102860249,T01,10091177,Alarms,10/13/2010,10/13/2010,10/13/2010 02:15:55 PM,10/13/2010 02:16:27 PM,10/13/2010 02:16:32 PM,10/13/2010 02:17:55 PM,10/13/2010 02:20:51 PM,04/25/2016 02:08:07 PM,10/13/2010 02:24:52 PM,Other,10/13/2010 02:26:32 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",102860249-T01 -122690259,E19,12088914,Medical Incident,09/25/2012,09/25/2012,09/25/2012 06:30:51 PM,09/25/2012 06:31:34 PM,09/25/2012 06:31:54 PM,09/25/2012 06:32:24 PM,09/25/2012 06:34:39 PM,04/25/2016 01:56:36 PM,04/25/2016 01:56:36 PM,Other,09/25/2012 06:54:04 PM,700 Block of FONT BLVD,SF,94132,B08,19,868,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7230583826676, -122.483551461982)",122690259-E19 -122420118,KM11,12079993,Medical Incident,08/29/2012,08/29/2012,08/29/2012 10:07:35 AM,08/29/2012 10:10:16 AM,08/29/2012 10:10:42 AM,08/29/2012 10:11:14 AM,08/29/2012 10:17:27 AM,08/29/2012 10:53:11 AM,04/25/2016 01:57:01 PM,Code 3 Transport,08/29/2012 12:01:20 PM,900 Block of HYDE ST,SF,94109,B04,3,1561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7895863090063, -122.417042490532)",122420118-KM11 -131650169,T13,13056037,Traffic Collision,06/14/2013,06/14/2013,06/14/2013 12:19:26 PM,06/14/2013 12:19:56 PM,06/14/2013 12:20:10 PM,06/14/2013 12:21:27 PM,06/14/2013 12:22:53 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 12:25:47 PM,MONTGOMERY ST/CLAY ST,SF,94111,B01,13,1233,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,1,3,Chinatown,"(37.7946662813797, -122.403139296426)",131650169-T13 -160832463,77,16033011,Medical Incident,03/23/2016,03/23/2016,03/23/2016 03:15:42 PM,03/23/2016 03:15:42 PM,03/23/2016 03:16:10 PM,03/23/2016 03:16:14 PM,03/23/2016 03:20:12 PM,03/23/2016 03:31:16 PM,03/23/2016 03:43:13 PM,Code 2 Transport,03/23/2016 04:22:34 PM,ANNIE ST/STEVENSON ST,San Francisco,94105,B03,1,2158,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.787617863969, -122.402289884758)",160832463-77 -130860136,E16,13028648,Medical Incident,03/27/2013,03/27/2013,03/27/2013 10:39:14 AM,03/27/2013 10:39:14 AM,03/27/2013 10:39:14 AM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/27/2013 10:55:27 AM,STEINER ST/CHESTNUT ST,SF,94123,B04,16,3661,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.8006087447128, -122.437889454636)",130860136-E16 -131040197,B01,13034930,Vehicle Fire,04/14/2013,04/14/2013,04/14/2013 12:35:02 PM,04/14/2013 12:35:25 PM,04/14/2013 12:35:41 PM,04/14/2013 12:36:52 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 12:42:19 PM,800 Block of MISSION ST,SF,94103,B03,1,2213,3,3,3,false,Fire,1,CHIEF,10,3,6,South of Market,"(37.7835100715421, -122.405395493939)",131040197-B01 -140700050,B02,14023506,Alarms,03/11/2014,03/10/2014,03/11/2014 05:24:41 AM,03/11/2014 05:27:17 AM,03/11/2014 05:28:54 AM,03/11/2014 05:30:46 AM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Fire,03/11/2014 05:53:03 AM,1400 Block of MARKET ST,SAN FRANCISCO,94103,B02,36,2338,3,3,3,true,Alarm,1,CHIEF,3,2,6,South of Market,"(37.7759986613945, -122.418004260708)",140700050-B02 -132780138,KM14,13094456,Medical Incident,10/05/2013,10/05/2013,10/05/2013 10:35:26 AM,10/05/2013 10:36:34 AM,10/05/2013 10:36:56 AM,10/05/2013 10:38:31 AM,10/05/2013 10:48:11 AM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Patient Declined Transport,10/05/2013 11:43:07 AM,600 Block of MASON ST,PR,94108,B99,51,4613,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",132780138-KM14 -122880099,77,12095213,Medical Incident,10/14/2012,10/14/2012,10/14/2012 08:27:26 AM,10/14/2012 08:28:43 AM,10/14/2012 08:29:16 AM,10/14/2012 08:29:44 AM,10/14/2012 08:34:42 AM,10/14/2012 08:56:05 AM,10/14/2012 09:07:34 AM,Code 2 Transport,10/14/2012 09:52:27 AM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7257685961984, -122.413836028914)",122880099-77 -160500192,88,16019937,Medical Incident,02/19/2016,02/18/2016,02/19/2016 01:53:01 AM,02/19/2016 01:53:01 AM,02/19/2016 01:53:17 AM,02/19/2016 01:53:30 AM,02/19/2016 01:58:16 AM,02/19/2016 02:04:49 AM,02/19/2016 02:16:57 AM,Code 2 Transport,02/19/2016 03:03:11 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160500192-88 -121520240,E17,12050389,Structure Fire,05/31/2012,05/31/2012,05/31/2012 04:17:17 PM,05/31/2012 04:17:38 PM,05/31/2012 04:18:02 PM,05/31/2012 04:19:29 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 04:23:28 PM,3800 Block of 3RD ST,SF,94124,B10,25,6457,3,3,3,true,Fire,1,ENGINE,9,10,10,Bayview Hunters Point,"(37.7422681434531, -122.387936728644)",121520240-E17 -130580059,E01,13019355,Medical Incident,02/27/2013,02/26/2013,02/27/2013 07:36:05 AM,02/27/2013 07:37:18 AM,02/27/2013 07:38:34 AM,02/27/2013 07:39:45 AM,02/27/2013 07:44:23 AM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/27/2013 07:51:29 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",130580059-E01 -132410357,B03,13081448,Alarms,08/29/2013,08/29/2013,08/29/2013 10:30:31 PM,08/29/2013 10:32:38 PM,08/29/2013 10:32:49 PM,08/29/2013 10:33:07 PM,08/29/2013 10:35:34 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Fire,08/29/2013 10:45:30 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,false,Alarm,1,CHIEF,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",132410357-B03 -130720066,85,13023916,Medical Incident,03/13/2013,03/12/2013,03/13/2013 06:58:13 AM,03/13/2013 06:59:44 AM,03/13/2013 07:00:13 AM,03/13/2013 07:00:40 AM,03/13/2013 07:08:01 AM,03/13/2013 07:21:36 AM,03/13/2013 07:47:40 AM,Code 2 Transport,03/13/2013 08:11:50 AM,1700 Block of VALLEJO ST,SF,94123,B04,38,3232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.7964310133306, -122.426082264366)",130720066-85 -140150178,65,14005125,Medical Incident,01/15/2014,01/15/2014,01/15/2014 12:21:38 PM,01/15/2014 12:23:03 PM,01/15/2014 12:23:12 PM,01/15/2014 12:23:27 PM,04/25/2016 01:48:43 PM,01/15/2014 12:43:56 PM,01/15/2014 01:12:27 PM,Code 2 Transport,01/15/2014 01:40:47 PM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",140150178-65 -122940064,E05,12097407,Alarms,10/20/2012,10/19/2012,10/20/2012 03:27:13 AM,10/20/2012 03:28:36 AM,10/20/2012 03:28:43 AM,10/20/2012 03:30:12 AM,10/20/2012 03:31:38 AM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 03:34:53 AM,1300 Block of BUCHANAN ST,SF,94115,B02,5,3431,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7820811831699, -122.429017793799)",122940064-E05 -160560848,55,16022290,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:42:15 AM,02/25/2016 08:43:32 AM,02/25/2016 08:43:57 AM,02/25/2016 08:44:05 AM,02/25/2016 08:53:02 AM,02/25/2016 09:12:44 AM,02/25/2016 09:33:38 AM,Code 2 Transport,02/25/2016 10:03:29 AM,GREAT HY/RIVERA ST,San Francisco,94116,B08,23,7727,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7453914361112, -122.507442625713)",160560848-55 -160501371,KM04,16020053,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:25:09 AM,02/19/2016 11:27:51 AM,02/19/2016 11:30:11 AM,02/19/2016 11:30:11 AM,02/19/2016 11:38:58 AM,02/19/2016 11:49:13 AM,02/19/2016 12:05:04 PM,Code 2 Transport,02/19/2016 12:22:12 PM,700 Block of LYON ST,San Francisco,94115,B05,21,4345,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7776354817134, -122.443345648308)",160501371-KM04 -132030253,E33,13068831,Medical Incident,07/22/2013,07/22/2013,07/22/2013 05:03:02 PM,07/22/2013 05:03:51 PM,07/22/2013 05:04:34 PM,07/22/2013 05:06:26 PM,07/22/2013 05:08:29 PM,04/25/2016 01:51:41 PM,04/25/2016 01:51:41 PM,Other,07/22/2013 05:20:45 PM,LAWRENCE AV/MISSION ST,SF,94112,B09,33,6212,3,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7094127425805, -122.450883665039)",132030253-E33 -102320211,KM04,10073031,Medical Incident,08/20/2010,08/20/2010,08/20/2010 02:37:24 PM,08/20/2010 02:37:39 PM,08/20/2010 02:38:03 PM,08/20/2010 02:38:43 PM,08/20/2010 02:41:11 PM,08/20/2010 03:02:13 PM,08/20/2010 03:13:15 PM,Code 2 Transport,08/20/2010 03:26:45 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",102320211-KM04 -133280195,T01,13111472,Elevator / Escalator Rescue,11/24/2013,11/24/2013,11/24/2013 01:57:39 PM,11/24/2013 01:58:47 PM,11/24/2013 01:59:00 PM,11/24/2013 02:00:27 PM,11/24/2013 02:02:46 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,No Merit,11/24/2013 02:06:23 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",133280195-T01 -132530317,B02,13085599,Structure Fire,09/10/2013,09/10/2013,09/10/2013 06:54:59 PM,09/10/2013 06:55:23 PM,09/10/2013 06:55:36 PM,09/10/2013 06:56:39 PM,09/10/2013 07:00:13 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 07:04:11 PM,1800 Block of PAGE ST,SF,94117,B05,12,4533,3,3,3,false,Alarm,1,CHIEF,5,5,5,Haight Ashbury,"(37.7703617831201, -122.451220569192)",132530317-B02 -160342703,KM05,16013510,Medical Incident,02/03/2016,02/03/2016,02/03/2016 05:43:27 PM,02/03/2016 05:43:27 PM,02/03/2016 05:45:13 PM,02/03/2016 05:46:21 PM,02/03/2016 06:02:36 PM,02/03/2016 06:45:45 PM,02/03/2016 07:09:23 PM,Code 2 Transport,02/03/2016 07:46:12 PM,200 Block of LELAND AVE,San Francisco,94134,B10,44,6255,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7126284936114, -122.407863164797)",160342703-KM05 -110790087,T01,11025952,Structure Fire,03/20/2011,03/19/2011,03/20/2011 03:58:04 AM,03/20/2011 03:58:04 AM,03/20/2011 03:58:09 AM,03/20/2011 03:59:39 AM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,Other,03/20/2011 04:02:33 AM,900 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",110790087-T01 -160033323,AM16,16001402,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:54:52 PM,01/03/2016 10:55:11 PM,01/03/2016 10:55:35 PM,01/03/2016 10:56:08 PM,01/03/2016 10:59:33 PM,01/03/2016 11:10:14 PM,01/03/2016 11:30:02 PM,Code 2 Transport,01/03/2016 11:59:17 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160033323-AM16 -120440121,60,12014648,Medical Incident,02/13/2012,02/13/2012,02/13/2012 10:22:11 AM,02/13/2012 10:22:36 AM,02/13/2012 10:22:50 AM,02/13/2012 10:25:43 AM,02/13/2012 10:26:54 AM,02/13/2012 10:42:08 AM,02/13/2012 10:48:32 AM,Code 2 Transport,02/13/2012 11:18:44 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",120440121-60 -131130279,83,13038178,Medical Incident,04/23/2013,04/23/2013,04/23/2013 04:58:23 PM,04/23/2013 04:59:27 PM,04/23/2013 05:02:04 PM,04/23/2013 05:02:31 PM,04/23/2013 05:14:12 PM,04/23/2013 06:03:30 PM,04/23/2013 06:03:39 PM,Code 2 Transport,04/23/2013 06:06:40 PM,400 Block of 43RD AVE,SF,94121,B07,34,7265,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7804189692132, -122.504039536203)",131130279-83 -160391131,56,16015552,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:00:27 AM,02/08/2016 10:03:00 AM,02/08/2016 10:03:45 AM,02/08/2016 10:04:06 AM,02/08/2016 10:18:55 AM,02/08/2016 10:37:32 AM,02/08/2016 10:58:33 AM,Code 2 Transport,02/08/2016 11:37:39 AM,400 Block of GONZALEZ DR,San Francisco,94132,B08,19,8481,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7160190677931, -122.477975897762)",160391131-56 -102360165,91,10074298,Medical Incident,08/24/2010,08/24/2010,08/24/2010 12:00:06 PM,08/24/2010 12:00:49 PM,08/24/2010 12:01:10 PM,08/24/2010 12:01:55 PM,08/24/2010 12:07:32 PM,08/24/2010 12:04:05 PM,08/24/2010 12:23:55 PM,Code 2 Transport,08/24/2010 01:04:13 PM,24TH ST/VALENCIA ST,SF,94110,B06,11,5512,3,3,3,true,,1,MEDIC,4,6,9,Mission,"(37.7521036457482, -122.420664802284)",102360165-91 -140890288,E31,14030066,Medical Incident,03/30/2014,03/30/2014,03/30/2014 06:30:06 PM,03/30/2014 06:31:23 PM,03/30/2014 06:32:39 PM,03/30/2014 06:35:08 PM,03/30/2014 06:38:14 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Code 2 Transport,03/30/2014 06:52:06 PM,700 Block of 4TH AVE,SAN FRANCISCO,94118,B07,31,7121,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7746781793453, -122.461745676123)",140890288-E31 -120730082,E13,12024150,Medical Incident,03/13/2012,03/13/2012,03/13/2012 08:08:34 AM,03/13/2012 08:09:15 AM,03/13/2012 08:09:53 AM,03/13/2012 08:13:25 AM,03/13/2012 08:16:44 AM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,Other,03/13/2012 08:52:03 AM,300 Block of LOMBARD ST,SF,94133,B01,28,1264,E,E,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.803432762656, -122.407708273853)",120730082-E13 -121940155,66,12064530,Medical Incident,07/12/2012,07/12/2012,07/12/2012 11:17:16 AM,07/12/2012 11:17:46 AM,07/12/2012 11:18:15 AM,07/12/2012 11:18:51 AM,07/12/2012 11:23:55 AM,07/12/2012 11:43:25 AM,07/12/2012 12:27:08 PM,Code 2 Transport,07/12/2012 12:59:31 PM,2100 Block of 26TH AVE,SF,94116,B08,18,7472,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7473846969477, -122.483447784559)",121940155-66 -121380090,E02,12045790,Medical Incident,05/17/2012,05/17/2012,05/17/2012 08:26:38 AM,05/17/2012 08:27:58 AM,05/17/2012 08:28:25 AM,05/17/2012 08:29:43 AM,05/17/2012 08:30:53 AM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,05/17/2012 08:47:54 AM,1500 Block of TAYLOR ST,SF,94133,B01,2,1442,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7967890094983, -122.4134381883)",121380090-E02 -120010658,E13,12000571,Alarms,01/01/2012,01/01/2012,01/01/2012 11:24:40 PM,01/01/2012 11:26:51 PM,01/01/2012 11:27:53 PM,01/01/2012 11:29:17 PM,01/01/2012 11:33:29 PM,04/25/2016 02:00:50 PM,04/25/2016 02:00:50 PM,Other,01/01/2012 11:38:37 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",120010658-E13 -140170328,82,14005949,Medical Incident,01/17/2014,01/17/2014,01/17/2014 08:02:45 PM,01/17/2014 08:04:05 PM,01/17/2014 08:04:28 PM,01/17/2014 08:04:52 PM,01/17/2014 08:06:33 PM,01/17/2014 08:21:20 PM,01/17/2014 08:28:57 PM,Code 2 Transport,01/17/2014 08:59:06 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",140170328-82 -160062016,79,16002433,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:02:42 PM,01/06/2016 02:04:21 PM,01/06/2016 02:05:54 PM,01/06/2016 02:06:00 PM,01/06/2016 02:08:48 PM,01/06/2016 02:27:48 PM,01/06/2016 02:31:23 PM,Code 2 Transport,01/06/2016 02:59:36 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160062016-79 -102580248,T13,10081539,Administrative,09/15/2010,09/15/2010,09/15/2010 03:11:13 PM,09/15/2010 03:12:09 PM,09/15/2010 03:12:28 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,Other,09/15/2010 03:13:00 PM,500 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,false,,1,TRUCK,1,1,3,Chinatown,"(37.7950816340984, -122.401466633715)",102580248-T13 -112080158,E15,11068669,Medical Incident,07/27/2011,07/27/2011,07/27/2011 12:16:06 PM,07/27/2011 12:17:12 PM,07/27/2011 12:17:30 PM,04/25/2016 02:03:28 PM,07/27/2011 12:18:28 PM,07/27/2011 12:39:40 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 12:53:51 PM,100 Block of DELANO AVE,SF,94112,B09,15,8276,E,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7258307699304, -122.440937734179)",112080158-E15 -121710296,AM06,12056845,Medical Incident,06/19/2012,06/19/2012,06/19/2012 05:13:09 PM,06/19/2012 05:13:24 PM,06/19/2012 05:13:40 PM,06/19/2012 05:14:05 PM,06/19/2012 05:18:08 PM,06/19/2012 05:42:30 PM,06/19/2012 05:58:29 PM,Code 2 Transport,06/19/2012 06:54:45 PM,7TH ST/NATOMA ST,SF,94103,B03,1,2314,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7784162815142, -122.409938240258)",121710296-AM06 -112750152,RS1,11090977,Medical Incident,10/02/2011,10/02/2011,10/02/2011 11:01:57 AM,10/02/2011 11:02:03 AM,10/02/2011 11:03:11 AM,10/02/2011 11:03:51 AM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,04/25/2016 02:02:22 PM,Other,10/02/2011 11:04:13 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,RESCUE SQUAD,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",112750152-RS1 -123130048,T13,12104032,Structure Fire,11/08/2012,11/07/2012,11/08/2012 04:32:56 AM,11/08/2012 04:33:55 AM,11/08/2012 04:34:31 AM,11/08/2012 04:36:04 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Other,11/08/2012 04:41:44 AM,0 Block of PERRY ST,SF,94107,B03,8,2175,3,3,3,false,Alarm,1,TRUCK,11,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",123130048-T13 -121660312,E41,12055162,Alarms,06/14/2012,06/14/2012,06/14/2012 06:49:26 PM,06/14/2012 06:49:27 PM,06/14/2012 06:49:54 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 06:53:18 PM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,ENGINE,1,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",121660312-E41 -113550185,E07,11117874,Medical Incident,12/21/2011,12/21/2011,12/21/2011 01:15:40 PM,12/21/2011 01:17:00 PM,12/21/2011 01:25:41 PM,12/21/2011 01:26:00 PM,12/21/2011 01:30:52 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 01:42:01 PM,3000 Block of 26TH ST,SF,94110,B06,9,5615,1,1,2,true,,1,ENGINE,1,6,9,Mission,"(37.7495721300101, -122.410215105411)",113550185-E07 -110690275,E13,11022769,Medical Incident,03/10/2011,03/10/2011,03/10/2011 04:31:32 PM,03/10/2011 04:32:24 PM,03/10/2011 04:33:20 PM,03/10/2011 04:34:31 PM,03/10/2011 04:36:32 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 05:08:39 PM,1100 Block of GRANT AVE,SF,94133,B01,2,1311,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7976543484414, -122.406912053867)",110690275-E13 -160834065,AM18,16033167,Medical Incident,03/23/2016,03/23/2016,03/23/2016 10:08:57 PM,03/23/2016 10:12:00 PM,03/23/2016 10:12:20 PM,03/23/2016 10:12:55 PM,03/23/2016 10:16:05 PM,03/23/2016 10:26:51 PM,03/23/2016 10:39:33 PM,Code 2 Transport,03/23/2016 11:11:39 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",160834065-AM18 -110890158,B04,11029369,Alarms,03/30/2011,03/30/2011,03/30/2011 11:58:45 AM,03/30/2011 11:59:47 AM,03/30/2011 12:00:10 PM,03/30/2011 12:01:54 PM,03/30/2011 12:07:24 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 12:20:47 PM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7852173616307, -122.417069611395)",110890158-B04 -132150072,E07,13072510,Medical Incident,08/03/2013,08/02/2013,08/03/2013 04:42:53 AM,08/03/2013 04:43:57 AM,08/03/2013 04:44:29 AM,08/03/2013 04:46:23 AM,08/03/2013 04:48:14 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/03/2013 04:57:21 AM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",132150072-E07 -131660140,E37,13056349,Medical Incident,06/15/2013,06/15/2013,06/15/2013 11:35:45 AM,06/15/2013 11:38:13 AM,06/15/2013 11:38:44 AM,06/15/2013 11:39:39 AM,06/15/2013 11:44:22 AM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Other,06/15/2013 11:52:44 AM,24TH ST/POTRERO AV,SF,94110,B10,37,2554,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",131660140-E37 -111240152,E11,11040940,Medical Incident,05/04/2011,05/04/2011,05/04/2011 11:43:12 AM,05/04/2011 11:45:08 AM,05/04/2011 11:45:30 AM,05/04/2011 11:46:09 AM,05/04/2011 11:47:46 AM,04/25/2016 02:04:47 PM,04/25/2016 02:04:47 PM,Other,05/04/2011 11:52:20 AM,3300 Block of 24TH ST,SF,94110,B06,11,5525,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.752133163479, -122.419282140041)",111240152-E11 -140690167,KM04,14023268,Medical Incident,03/10/2014,03/10/2014,03/10/2014 12:19:27 PM,03/10/2014 12:21:45 PM,03/10/2014 12:22:26 PM,03/10/2014 12:23:16 PM,03/10/2014 12:34:50 PM,03/10/2014 12:54:58 PM,03/10/2014 01:23:48 PM,Code 2 Transport,03/10/2014 02:03:38 PM,0 Block of SAN FELIPE AVE,SAN FRANCISCO,94127,B09,15,8547,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7314054215002, -122.46237385873)",140690167-KM04 -160282192,56,16011129,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:38:01 PM,01/28/2016 02:39:15 PM,01/28/2016 02:39:36 PM,01/28/2016 02:39:59 PM,01/28/2016 02:43:49 PM,01/28/2016 03:09:32 PM,01/28/2016 03:14:23 PM,Code 2 Transport,01/28/2016 03:35:47 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160282192-56 -130080238,B06,13002785,Alarms,01/08/2013,01/08/2013,01/08/2013 02:23:28 PM,01/08/2013 02:24:38 PM,01/08/2013 02:27:31 PM,01/08/2013 02:28:43 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,Other,01/08/2013 02:32:56 PM,3400 Block of 22ND ST,SF,94110,B06,11,5471,3,3,3,false,Alarm,1,CHIEF,2,6,8,Mission,"(37.7552079402492, -122.423474114301)",130080238-B06 -102310261,E24,10072764,Structure Fire,08/19/2010,08/19/2010,08/19/2010 04:45:32 PM,08/19/2010 04:46:39 PM,08/19/2010 04:46:48 PM,08/19/2010 04:47:52 PM,08/19/2010 04:50:11 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 04:51:30 PM,100 Block of EUREKA ST,SF,94114,B05,6,5415,3,3,3,true,,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7598883274919, -122.438257853143)",102310261-E24 -130880244,E33,13029420,Medical Incident,03/29/2013,03/29/2013,03/29/2013 02:17:51 PM,03/29/2013 02:17:54 PM,03/29/2013 02:18:11 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 02:19:02 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",130880244-E33 -113420277,58,11113468,Medical Incident,12/08/2011,12/08/2011,12/08/2011 04:53:23 PM,12/08/2011 04:55:09 PM,12/08/2011 04:55:20 PM,12/08/2011 05:00:46 PM,12/08/2011 05:20:47 PM,12/08/2011 05:52:52 PM,12/08/2011 06:16:56 PM,Code 2 Transport,12/08/2011 06:31:05 PM,900 Block of KEARNY ST,SF,94133,B01,13,1246,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",113420277-58 -111100360,E03,11036457,Medical Incident,04/20/2011,04/20/2011,04/20/2011 07:49:20 PM,04/20/2011 07:50:55 PM,04/20/2011 08:03:37 PM,04/20/2011 08:03:59 PM,04/20/2011 08:12:56 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/20/2011 08:27:45 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,1,1,2,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",111100360-E03 -111000281,B07,11033309,Structure Fire,04/10/2011,04/10/2011,04/10/2011 06:47:39 PM,04/10/2011 06:48:30 PM,04/10/2011 06:48:41 PM,04/10/2011 06:49:43 PM,04/10/2011 06:53:05 PM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 08:02:07 PM,500 Block of 14TH AVE,SF,94118,B07,31,7154,3,3,3,false,,1,CHIEF,4,7,1,Outer Richmond,"(37.7777707230268, -122.47270915749)",111000281-B07 -122620228,68,12086558,Medical Incident,09/18/2012,09/18/2012,09/18/2012 03:45:11 PM,09/18/2012 03:46:40 PM,09/18/2012 03:48:19 PM,09/18/2012 03:48:30 PM,09/18/2012 03:56:55 PM,09/18/2012 04:10:03 PM,09/18/2012 04:39:43 PM,Code 2 Transport,09/18/2012 05:00:43 PM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",122620228-68 -123540277,E01,12118522,Alarms,12/19/2012,12/19/2012,12/19/2012 04:44:12 PM,12/19/2012 04:45:48 PM,12/19/2012 04:46:03 PM,12/19/2012 04:46:10 PM,12/19/2012 04:48:36 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 04:53:41 PM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",123540277-E01 -122880052,T14,12095169,Structure Fire,10/14/2012,10/13/2012,10/14/2012 03:22:21 AM,10/14/2012 03:22:21 AM,10/14/2012 03:22:31 AM,10/14/2012 03:24:34 AM,10/14/2012 03:26:32 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 03:33:46 AM,400 Block of 30TH AVE,SF,94121,B07,14,722,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7808106501231, -122.490094727449)",122880052-T14 -123530236,E06,12118139,Alarms,12/18/2012,12/18/2012,12/18/2012 03:03:32 PM,12/18/2012 03:04:47 PM,12/18/2012 03:05:37 PM,12/18/2012 03:07:04 PM,12/18/2012 03:09:42 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,No Merit,12/18/2012 03:14:01 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",123530236-E06 -140800213,96,14027061,Medical Incident,03/21/2014,03/21/2014,03/21/2014 02:20:46 PM,03/21/2014 02:20:49 PM,03/21/2014 02:21:22 PM,03/21/2014 02:21:35 PM,03/21/2014 02:22:25 PM,03/21/2014 03:09:37 PM,03/21/2014 03:35:44 PM,Code 2 Transport,03/21/2014 04:09:26 PM,2300 Block of 24TH AVE,,94116,B08,40,7461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",140800213-96 -140370058,81,14012402,Medical Incident,02/06/2014,02/05/2014,02/06/2014 06:05:00 AM,02/06/2014 06:06:41 AM,02/06/2014 06:21:09 AM,02/06/2014 06:21:09 AM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 06:21:51 AM,300 Block of MISSISSIPPI ST,SF,94107,B10,37,2474,,1,2,true,Non Life-threatening,1,MEDIC,4,10,10,Potrero Hill,"(37.7620522738586, -122.394603551997)",140370058-81 -121310185,E05,12043572,Medical Incident,05/10/2012,05/10/2012,05/10/2012 01:04:38 PM,05/10/2012 01:07:37 PM,05/10/2012 01:08:41 PM,05/10/2012 01:11:36 PM,05/10/2012 01:12:33 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 01:13:11 PM,100 Block of TURK ST,SF,94102,B03,1,1456,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",121310185-E05 -122660210,87,12087901,Medical Incident,09/22/2012,09/22/2012,09/22/2012 03:26:47 PM,09/22/2012 03:27:21 PM,09/22/2012 03:27:43 PM,09/22/2012 03:27:48 PM,09/22/2012 03:31:29 PM,09/22/2012 03:54:33 PM,09/22/2012 04:15:38 PM,Code 2 Transport,09/22/2012 04:27:36 PM,100 Block of HENRY ST,SF,94114,B05,6,5212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7665401994282, -122.434434754895)",122660210-87 -130210047,RS1,13007144,Structure Fire,01/21/2013,01/20/2013,01/21/2013 02:53:23 AM,01/21/2013 02:53:56 AM,01/21/2013 02:54:16 AM,01/21/2013 02:55:53 AM,01/21/2013 03:00:26 AM,04/25/2016 01:54:42 PM,04/25/2016 01:54:42 PM,Other,01/21/2013 03:13:27 AM,2200 Block of LARKIN ST,SF,94109,B01,41,1631,3,3,3,false,Fire,1,RESCUE SQUAD,6,1,3,Russian Hill,"(37.7983718644437, -122.420498877705)",130210047-RS1 -120530068,E21,12017410,Medical Incident,02/22/2012,02/22/2012,02/22/2012 08:14:29 AM,02/22/2012 08:16:04 AM,02/22/2012 08:16:37 AM,02/22/2012 08:17:22 AM,02/22/2012 08:21:55 AM,04/25/2016 02:00:01 PM,04/25/2016 02:00:01 PM,Other,02/22/2012 08:39:30 AM,2300 Block of TURK BLVD,SF,94118,B05,21,4564,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,5,1,Lone Mountain/USF,"(37.7786159124271, -122.447529663824)",120530068-E21 -80940252,T03,8028867,Alarms,04/03/2008,04/03/2008,04/03/2008 01:46:51 PM,04/03/2008 01:48:43 PM,04/03/2008 01:48:53 PM,04/03/2008 01:50:58 PM,04/03/2008 01:52:57 PM,04/25/2016 03:34:50 PM,04/25/2016 03:34:50 PM,Other,04/03/2008 02:02:10 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",080940252-T03 -130480016,E16,13016235,Traffic Collision,02/17/2013,02/16/2013,02/17/2013 12:52:12 AM,02/17/2013 12:52:12 AM,02/17/2013 12:52:22 AM,02/17/2013 12:54:06 AM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/17/2013 12:54:17 AM,LOMBARD ST/PIERCE ST,SF,94123,B04,16,3656,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.7994253119327, -122.439336652409)",130480016-E16 -160440084,AM22,16017533,Medical Incident,02/13/2016,02/12/2016,02/13/2016 12:31:09 AM,02/13/2016 12:32:22 AM,02/13/2016 12:32:52 AM,02/13/2016 12:34:57 AM,02/13/2016 12:35:59 AM,02/13/2016 12:54:48 AM,02/13/2016 01:24:00 AM,Code 2 Transport,02/13/2016 01:46:51 AM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7967201327164, -122.411735185833)",160440084-AM22 -111150051,E24,11037844,Medical Incident,04/25/2011,04/24/2011,04/25/2011 05:36:43 AM,04/25/2011 05:37:16 AM,04/25/2011 05:37:26 AM,04/25/2011 05:39:05 AM,04/25/2011 05:40:10 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 06:02:06 AM,4300 Block of 23RD ST,SF,94114,B06,24,5516,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7525087246982, -122.439695354706)",111150051-E24 -160121538,84,16004753,Medical Incident,01/12/2016,01/12/2016,01/12/2016 11:59:59 AM,01/12/2016 12:00:59 PM,01/12/2016 12:01:51 PM,01/12/2016 12:02:04 PM,01/12/2016 12:07:03 PM,01/12/2016 12:28:57 PM,01/12/2016 12:41:37 PM,Code 2 Transport,01/12/2016 01:14:55 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",160121538-84 -160630185,62,16024927,Medical Incident,03/03/2016,03/02/2016,03/03/2016 01:45:16 AM,03/03/2016 01:47:42 AM,03/03/2016 01:48:02 AM,03/03/2016 01:48:11 AM,03/03/2016 01:56:19 AM,03/03/2016 02:26:17 AM,03/03/2016 02:44:10 AM,Code 2 Transport,03/03/2016 03:27:44 AM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160630185-62 -103150008,95,10100851,Medical Incident,11/11/2010,11/10/2010,11/11/2010 12:47:01 AM,11/11/2010 12:47:27 AM,11/11/2010 12:47:38 AM,11/11/2010 12:48:00 AM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,04/25/2016 02:07:39 PM,No Merit,11/11/2010 01:02:06 AM,700 Block of FOERSTER ST,SF,94127,B09,15,8247,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7350921935101, -122.448959925357)",103150008-95 -113610118,E03,11119896,Outside Fire,12/27/2011,12/27/2011,12/27/2011 10:26:22 AM,12/27/2011 10:26:36 AM,12/27/2011 10:26:53 AM,12/27/2011 10:28:16 AM,12/27/2011 10:29:57 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Fire,12/27/2011 10:33:05 AM,EDDY ST/HYDE ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",113610118-E03 -112480331,T01,11081926,Citizen Assist / Service Call,09/05/2011,09/05/2011,09/05/2011 08:10:00 PM,09/05/2011 08:13:11 PM,09/05/2011 08:13:58 PM,09/05/2011 08:15:24 PM,09/05/2011 08:18:59 PM,04/25/2016 02:02:49 PM,04/25/2016 02:02:49 PM,Fire,09/05/2011 08:25:17 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,TRUCK,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",112480331-T01 -110330362,T03,11010971,Structure Fire,02/02/2011,02/02/2011,02/02/2011 08:18:28 PM,02/02/2011 08:18:29 PM,02/02/2011 08:19:07 PM,04/25/2016 02:06:17 PM,02/02/2011 08:20:25 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 08:22:09 PM,VAN NESS AV/EDDY ST,SF,94109,B02,3,3163,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",110330362-T03 -160172891,76,16006969,Medical Incident,01/17/2016,01/17/2016,01/17/2016 07:27:59 PM,01/17/2016 07:29:21 PM,01/17/2016 07:29:39 PM,01/17/2016 07:30:19 PM,01/17/2016 07:43:31 PM,01/17/2016 07:55:40 PM,01/17/2016 08:14:02 PM,Code 2 Transport,01/17/2016 08:45:37 PM,300 Block of RAYMOND AVE,San Francisco,94134,B09,44,6264,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.714134744642, -122.410232764113)",160172891-76 -160570386,AM22,16022612,Medical Incident,02/26/2016,02/25/2016,02/26/2016 04:37:44 AM,02/26/2016 04:39:41 AM,02/26/2016 04:39:50 AM,02/26/2016 04:40:52 AM,02/26/2016 04:46:47 AM,02/26/2016 05:10:48 AM,02/26/2016 05:23:24 AM,Code 2 Transport,02/26/2016 06:06:26 AM,0 Block of THOMAS MORE WAY,San Francisco,94132,B08,33,8773,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",160570386-AM22 -132040254,96,13069154,Medical Incident,07/23/2013,07/23/2013,07/23/2013 04:01:05 PM,07/23/2013 04:03:16 PM,07/23/2013 04:05:15 PM,07/23/2013 04:05:59 PM,07/23/2013 04:08:51 PM,07/23/2013 04:28:19 PM,07/23/2013 04:51:22 PM,Code 2 Transport,07/23/2013 05:29:34 PM,700 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7236,2,3,3,true,Non Life-threatening,1,MEDIC,1,7,2,Seacliff,"(37.786082146577, -122.491340887551)",132040254-96 -160651168,61,16025891,Medical Incident,03/05/2016,03/05/2016,03/05/2016 10:26:31 AM,03/05/2016 10:26:31 AM,03/05/2016 10:27:19 AM,03/05/2016 10:27:30 AM,03/05/2016 10:32:21 AM,03/05/2016 10:51:45 AM,03/05/2016 11:02:59 AM,Code 2 Transport,03/05/2016 11:45:31 AM,800 Block of LA PLAYA,San Francisco,94121,B07,34,7311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7723310720776, -122.509896781841)",160651168-61 -133510049,E01,13119081,Alarms,12/17/2013,12/16/2013,12/17/2013 04:13:50 AM,12/17/2013 04:13:50 AM,12/17/2013 04:13:59 AM,12/17/2013 04:15:30 AM,12/17/2013 04:18:38 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 04:21:51 AM,100 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,ENGINE,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",133510049-E01 -102990175,E10,10095452,Medical Incident,10/26/2010,10/26/2010,10/26/2010 11:55:32 AM,10/26/2010 11:56:11 AM,10/26/2010 11:56:48 AM,10/26/2010 11:58:00 AM,10/26/2010 11:59:25 AM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/26/2010 12:11:21 PM,1700 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,true,,1,ENGINE,1,5,2,Pacific Heights,"(37.7857001632116, -122.440081147256)",102990175-E10 -160903577,86,16035870,Traffic Collision,03/30/2016,03/30/2016,03/30/2016 08:21:20 PM,03/30/2016 08:21:20 PM,03/30/2016 08:22:29 PM,03/30/2016 08:23:05 PM,03/30/2016 08:28:13 PM,03/30/2016 08:38:50 PM,03/30/2016 08:49:35 PM,Code 2 Transport,03/30/2016 09:22:01 PM,MARIPOSA ST/3RD ST,San Francisco,94107,B03,4,2671,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,10,Potrero Hill,"(37.7643218361157, -122.388851284628)",160903577-86 -121600012,67,12052780,Medical Incident,06/08/2012,06/07/2012,06/08/2012 12:49:45 AM,06/08/2012 12:51:25 AM,06/08/2012 12:51:51 AM,06/08/2012 12:51:58 AM,06/08/2012 12:59:11 AM,06/08/2012 01:13:08 AM,06/08/2012 01:24:55 AM,Code 2 Transport,06/08/2012 01:54:27 AM,900 Block of DOUGLASS ST,SF,94114,B06,24,5542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,8,Noe Valley,"(37.749051492923, -122.438214092414)",121600012-67 -123480347,T05,12116497,Alarms,12/13/2012,12/13/2012,12/13/2012 08:42:12 PM,12/13/2012 08:43:23 PM,12/13/2012 08:43:56 PM,12/13/2012 08:44:59 PM,12/13/2012 08:49:02 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/13/2012 08:51:39 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",123480347-T05 -160492737,KM12,16019807,Medical Incident,02/18/2016,02/18/2016,02/18/2016 04:56:49 PM,02/18/2016 04:59:56 PM,02/18/2016 05:09:20 PM,02/18/2016 05:10:01 PM,02/18/2016 05:22:44 PM,02/18/2016 05:43:36 PM,02/18/2016 06:00:07 PM,Code 2 Transport,02/18/2016 06:32:18 PM,100 Block of 9TH ST,San Francisco,94103,B02,36,2336,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7755801285655, -122.413994780042)",160492737-KM12 -160373352,67,16014867,Medical Incident,02/06/2016,02/06/2016,02/06/2016 07:20:02 PM,02/06/2016 07:24:22 PM,02/06/2016 07:24:58 PM,02/06/2016 07:25:05 PM,02/06/2016 07:26:34 PM,02/06/2016 07:31:20 PM,02/06/2016 07:44:53 PM,Code 2 Transport,02/06/2016 08:08:57 PM,GENEVA AV/LONDON ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7160388198833, -122.440255134634)",160373352-67 -110460314,E18,11015343,Medical Incident,02/15/2011,02/15/2011,02/15/2011 08:23:21 PM,02/15/2011 08:24:09 PM,02/15/2011 08:24:22 PM,02/15/2011 08:26:23 PM,02/15/2011 08:29:57 PM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/15/2011 08:47:02 PM,2800 Block of 36TH AVE,SF,94116,B08,19,7614,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7344354868423, -122.493307158478)",110460314-E18 -160173125,58,16006995,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:54:24 PM,01/17/2016 08:55:45 PM,01/17/2016 08:55:58 PM,01/17/2016 08:56:13 PM,01/17/2016 09:02:47 PM,01/17/2016 09:15:12 PM,01/17/2016 09:23:24 PM,Code 2 Transport,01/17/2016 10:11:32 PM,300 Block of 11TH ST,San Francisco,94103,B02,36,5112,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7712080387402, -122.413302363173)",160173125-58 -103080313,AM06,10098794,Medical Incident,11/04/2010,11/04/2010,11/04/2010 05:47:21 PM,11/04/2010 05:47:55 PM,11/04/2010 05:48:14 PM,11/04/2010 05:51:18 PM,11/04/2010 05:54:13 PM,11/04/2010 06:18:50 PM,11/04/2010 06:28:21 PM,Other,11/04/2010 07:04:42 PM,300 Block of WILDE AVE,SF,94134,B10,44,6316,E,E,3,false,,1,PRIVATE,2,10,10,Visitacion Valley,"(37.7167969475652, -122.403664399201)",103080313-AM06 -140500224,RS1,14017011,High Angle Rescue,02/19/2014,02/19/2014,02/19/2014 03:43:47 PM,02/19/2014 03:46:37 PM,02/19/2014 03:47:25 PM,02/19/2014 03:49:38 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Fire,02/19/2014 03:57:02 PM,CALL BOX: PALACE OF LEGION OF HONOR,SF,94121,B07,34,7235,3,3,3,false,Fire,1,RESCUE SQUAD,7,7,1,Lincoln Park,"(37.7849108847772, -122.499514565485)",140500224-RS1 -160320135,63,16012404,Medical Incident,02/01/2016,01/31/2016,02/01/2016 01:10:12 AM,02/01/2016 01:11:31 AM,02/01/2016 01:11:57 AM,02/01/2016 01:12:34 AM,02/01/2016 01:17:59 AM,02/01/2016 01:34:12 AM,02/01/2016 01:53:58 AM,Code 2 Transport,02/01/2016 02:24:09 AM,2600 Block of ALEMANY BLVD,San Francisco,94112,B09,33,8345,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7141702563787, -122.44803524465)",160320135-63 -111010156,92,11033496,Medical Incident,04/11/2011,04/11/2011,04/11/2011 11:42:09 AM,04/11/2011 11:42:33 AM,04/11/2011 11:43:38 AM,04/11/2011 11:44:23 AM,04/11/2011 11:49:55 AM,04/11/2011 12:08:51 PM,04/11/2011 12:19:01 PM,Code 2 Transport,04/11/2011 12:54:30 PM,1500 Block of HUDSON AVE,SF,94124,B10,25,6467,3,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.739469087841, -122.387376146293)",111010156-92 -132980238,E32,13101245,Medical Incident,10/25/2013,10/25/2013,10/25/2013 02:58:20 PM,10/25/2013 03:00:08 PM,10/25/2013 03:00:56 PM,10/25/2013 03:02:05 PM,10/25/2013 03:07:12 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 03:07:16 PM,1300 Block of GUERRERO ST,SF,94110,B06,11,5612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7495652201329, -122.422767132358)",132980238-E32 -160240436,AM24,16009417,Medical Incident,01/24/2016,01/23/2016,01/24/2016 03:05:58 AM,01/24/2016 03:06:57 AM,01/24/2016 03:07:09 AM,01/24/2016 03:08:03 AM,01/24/2016 03:12:44 AM,01/24/2016 03:20:14 AM,01/24/2016 03:40:43 AM,Code 2 Transport,01/24/2016 04:01:50 AM,5500 Block of MISSION ST,San Francisco,94112,B09,33,6177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7120147231606, -122.445301042197)",160240436-AM24 -160020865,81,16000666,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:14:12 AM,01/02/2016 09:16:35 AM,01/02/2016 09:16:46 AM,01/02/2016 09:16:54 AM,01/02/2016 09:21:05 AM,01/02/2016 09:38:10 AM,01/02/2016 09:59:23 AM,Code 2 Transport,01/02/2016 10:17:21 AM,1900 Block of 18TH AV,San Francisco,94116,B08,40,7421,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.751487490041, -122.475280555989)",160020865-81 -123000138,E21,12099400,Traffic Collision,10/26/2012,10/26/2012,10/26/2012 10:59:34 AM,10/26/2012 11:00:14 AM,10/26/2012 11:00:25 AM,10/26/2012 11:01:37 AM,10/26/2012 11:03:13 AM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,Other,10/26/2012 11:09:55 AM,PAGE ST/DIVISADERO ST,SF,94117,B05,21,4144,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",123000138-E21 -130020204,E01,13000655,Medical Incident,01/02/2013,01/02/2013,01/02/2013 01:13:31 PM,01/02/2013 01:13:54 PM,01/02/2013 01:14:46 PM,01/02/2013 01:15:02 PM,01/02/2013 01:16:59 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,Other,01/02/2013 01:24:12 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7824540249462, -122.417170993889)",130020204-E01 -121400361,85,12046658,Medical Incident,05/19/2012,05/19/2012,05/19/2012 09:49:45 PM,05/19/2012 09:50:16 PM,05/19/2012 09:50:39 PM,05/19/2012 09:50:46 PM,05/19/2012 09:56:33 PM,05/19/2012 10:15:06 PM,05/19/2012 10:27:54 PM,Code 2 Transport,05/19/2012 11:01:32 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",121400361-85 -111260314,68,11041800,Medical Incident,05/06/2011,05/06/2011,05/06/2011 05:20:57 PM,05/06/2011 05:21:44 PM,05/06/2011 05:23:00 PM,05/06/2011 05:23:21 PM,05/06/2011 05:33:44 PM,05/06/2011 05:41:22 PM,05/06/2011 06:00:57 PM,Code 2 Transport,05/06/2011 05:29:48 PM,600 Block of 5TH ST,SF,94107,B03,8,2236,3,2,2,true,,1,MEDIC,2,3,6,Mission Bay,"(37.7755979963185, -122.39763695321)",111260314-68 -112920167,E36,11096875,Medical Incident,10/19/2011,10/19/2011,10/19/2011 12:11:16 PM,10/19/2011 12:13:08 PM,10/19/2011 12:13:49 PM,10/19/2011 12:14:33 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/19/2011 12:15:39 PM,FULTON ST/HYDE ST,SF,94102,B02,36,1552,3,2,2,false,,1,ENGINE,2,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",112920167-E36 -122710278,RC1,12089521,Medical Incident,09/27/2012,09/27/2012,09/27/2012 07:35:22 PM,09/27/2012 07:36:59 PM,09/27/2012 07:37:31 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/27/2012 07:53:51 PM,600 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7948751336497, -122.403112031242)",122710278-RC1 -110010472,RA48,11000404,Traffic Collision,01/01/2011,01/01/2011,01/01/2011 05:38:13 PM,01/01/2011 05:39:03 PM,01/01/2011 05:42:28 PM,01/01/2011 05:45:53 PM,04/25/2016 02:06:48 PM,01/01/2011 06:12:35 PM,01/01/2011 06:59:50 PM,Code 2 Transport,01/01/2011 07:22:50 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,,1,MEDIC,6,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",110010472-RA48 -103180063,E01,10101833,Medical Incident,11/14/2010,11/13/2010,11/14/2010 03:33:35 AM,11/14/2010 03:35:32 AM,11/14/2010 03:36:06 AM,11/14/2010 03:38:36 AM,11/14/2010 03:40:49 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 03:43:47 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7786769584105, -122.408601057595)",103180063-E01 -160103060,KM01,16004167,Medical Incident,01/10/2016,01/10/2016,01/10/2016 08:02:25 PM,01/10/2016 08:03:40 PM,01/10/2016 08:03:50 PM,01/10/2016 08:04:26 PM,01/10/2016 08:07:34 PM,01/10/2016 08:33:53 PM,01/10/2016 08:53:25 PM,Code 3 Transport,01/10/2016 09:30:50 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",160103060-KM01 -111160028,E01,11038156,Structure Fire,04/26/2011,04/25/2011,04/26/2011 02:18:16 AM,04/26/2011 02:18:16 AM,04/26/2011 02:18:24 AM,04/26/2011 02:19:45 AM,04/26/2011 02:21:49 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/26/2011 02:22:17 AM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",111160028-E01 -130990113,89,13033192,Medical Incident,04/09/2013,04/09/2013,04/09/2013 09:49:18 AM,04/09/2013 09:49:36 AM,04/09/2013 09:50:27 AM,04/09/2013 09:50:38 AM,04/09/2013 09:53:14 AM,04/09/2013 10:08:56 AM,04/09/2013 10:30:14 AM,Code 2 Transport,04/09/2013 10:54:54 AM,2100 Block of 24TH AVE,SF,94116,B08,40,7444,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7474792137801, -122.481306264779)",130990113-89 -140440418,B09,14015152,Structure Fire,02/13/2014,02/13/2014,02/13/2014 10:39:34 PM,02/13/2014 10:39:55 PM,02/13/2014 10:40:15 PM,02/13/2014 10:41:20 PM,02/13/2014 10:46:32 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 01:19:36 AM,300 Block of JOOST AVE,SF,94131,B09,26,8216,,3,3,false,Fire,1,CHIEF,5,9,7,West of Twin Peaks,"(37.7322969505718, -122.443170322846)",140440418-B09 -132440206,85,13082367,Medical Incident,09/01/2013,09/01/2013,09/01/2013 03:04:26 PM,09/01/2013 03:05:15 PM,09/01/2013 03:05:49 PM,09/01/2013 03:06:04 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 03:09:53 PM,0 Block of 7TH ST,SF,94103,B02,1,2315,E,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",132440206-85 -160240235,63,16009401,Medical Incident,01/24/2016,01/23/2016,01/24/2016 01:22:46 AM,01/24/2016 01:25:13 AM,01/24/2016 01:25:36 AM,01/24/2016 01:25:57 AM,01/24/2016 01:32:52 AM,01/24/2016 02:00:35 AM,01/24/2016 02:00:38 AM,Code 2 Transport,01/24/2016 02:40:35 AM,700 Block of 33RD AVE,San Francisco,94121,B07,14,7244,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7749808628388, -122.49290444364)",160240235-63 -122260145,T13,12074888,Structure Fire,08/13/2012,08/13/2012,08/13/2012 10:47:05 AM,08/13/2012 10:47:05 AM,08/13/2012 10:47:22 AM,08/13/2012 10:48:28 AM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 10:51:12 AM,KEARNY ST/PACIFIC AV,SF,94133,B01,13,1246,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7970898479827, -122.405318332195)",122260145-T13 -160583286,79,16023275,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:01:59 PM,02/27/2016 08:04:25 PM,02/27/2016 08:05:16 PM,02/27/2016 08:05:22 PM,02/27/2016 08:23:56 PM,02/27/2016 08:50:43 PM,02/27/2016 09:14:28 PM,Code 2 Transport,02/27/2016 09:58:22 PM,700 Block of LONDON ST,San Francisco,94112,B09,43,6125,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7175106231913, -122.439146338541)",160583286-79 -121700022,E21,12056290,Medical Incident,06/18/2012,06/17/2012,06/18/2012 02:40:47 AM,06/18/2012 02:41:31 AM,06/18/2012 02:41:45 AM,06/18/2012 02:43:44 AM,06/18/2012 02:46:16 AM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/18/2012 02:48:50 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",121700022-E21 -123530066,E29,12118012,Traffic Collision,12/18/2012,12/17/2012,12/18/2012 07:32:56 AM,12/18/2012 07:33:24 AM,12/18/2012 07:33:38 AM,04/25/2016 01:55:15 PM,12/18/2012 07:37:44 AM,12/18/2012 07:50:42 AM,04/25/2016 01:55:15 PM,Other,12/18/2012 08:08:08 AM,FOLSOM ST/8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",123530066-E29 -160870382,53,16034443,Medical Incident,03/27/2016,03/26/2016,03/27/2016 02:24:05 AM,03/27/2016 02:24:42 AM,03/27/2016 02:25:17 AM,03/27/2016 02:25:25 AM,03/27/2016 02:29:19 AM,03/27/2016 02:37:13 AM,03/27/2016 03:04:46 AM,Code 2 Transport,03/27/2016 03:29:37 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160870382-53 -160800646,74,16031708,Medical Incident,03/20/2016,03/19/2016,03/20/2016 05:33:51 AM,03/20/2016 05:34:31 AM,03/20/2016 05:35:17 AM,03/20/2016 05:35:42 AM,03/20/2016 05:51:51 AM,03/20/2016 05:51:56 AM,03/20/2016 06:13:53 AM,Code 2 Transport,03/20/2016 06:49:30 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160800646-74 -131650138,E33,13056012,Outside Fire,06/14/2013,06/14/2013,06/14/2013 10:36:07 AM,06/14/2013 10:41:52 AM,06/14/2013 10:42:19 AM,06/14/2013 10:43:39 AM,06/14/2013 10:46:17 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 10:46:52 AM,FARRAGUT AV/ALEMANY BL,SF,94112,B09,33,8353,3,3,3,true,Fire,1,ENGINE,1,9,11,Outer Mission,"(37.712055692394, -122.451954774014)",131650138-E33 -160313327,KM03,16012329,Medical Incident,01/31/2016,01/31/2016,01/31/2016 08:15:02 PM,01/31/2016 08:19:21 PM,01/31/2016 08:20:11 PM,01/31/2016 08:20:37 PM,01/31/2016 08:29:12 PM,01/31/2016 08:35:32 PM,01/31/2016 08:48:25 PM,Code 2 Transport,01/31/2016 09:39:04 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160313327-KM03 -160380045,57,16015013,Medical Incident,02/07/2016,02/06/2016,02/07/2016 12:13:14 AM,02/07/2016 12:13:34 AM,02/07/2016 12:14:33 AM,02/07/2016 12:14:40 AM,02/07/2016 12:23:00 AM,02/07/2016 12:39:18 AM,02/07/2016 12:45:12 AM,Code 2 Transport,02/07/2016 01:54:23 AM,1100 Block of SACRAMENTO ST,San Francisco,94108,B01,41,1414,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.792652645298, -122.412300829421)",160380045-57 -131060041,KM15,13035517,Medical Incident,04/16/2013,04/15/2013,04/16/2013 04:33:47 AM,04/16/2013 04:35:43 AM,04/16/2013 04:36:01 AM,04/16/2013 04:37:39 AM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/16/2013 04:37:59 AM,1800 Block of KEARNY ST,SF,94133,B01,28,1255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,1,3,North Beach,"(37.804809171271, -122.406795529826)",131060041-KM15 -133480328,78,13118234,Medical Incident,12/14/2013,12/14/2013,12/14/2013 06:48:41 PM,12/14/2013 06:50:26 PM,12/14/2013 06:51:40 PM,12/14/2013 06:51:47 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Patient Declined Transport,12/14/2013 06:56:55 PM,1700 Block of POLK ST,SF,94109,B04,41,3124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7928292738954, -122.421073088422)",133480328-78 -123130203,E08,12104152,Medical Incident,11/08/2012,11/08/2012,11/08/2012 01:05:30 PM,11/08/2012 01:06:28 PM,11/08/2012 01:07:01 PM,11/08/2012 01:10:09 PM,11/08/2012 01:12:53 PM,11/08/2012 01:30:29 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 02:01:09 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123130203-E08 -130400235,KM12,13013710,Medical Incident,02/09/2013,02/09/2013,02/09/2013 03:26:56 PM,02/09/2013 03:29:02 PM,02/09/2013 03:29:13 PM,02/09/2013 03:30:02 PM,02/09/2013 03:34:35 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 03:41:03 PM,1100 Block of SHOTWELL ST,SF,94110,B06,7,5614,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7500332610602, -122.415006766747)",130400235-KM12 -160441480,KM06,16017677,Medical Incident,02/13/2016,02/13/2016,02/13/2016 12:09:41 PM,02/13/2016 12:12:00 PM,02/13/2016 12:14:18 PM,02/13/2016 12:17:54 PM,02/13/2016 12:24:10 PM,02/13/2016 12:40:48 PM,02/13/2016 12:51:04 PM,Code 2 Transport,02/13/2016 01:21:09 PM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",160441480-KM06 -160291921,KM09,16011460,Medical Incident,01/29/2016,01/29/2016,01/29/2016 01:55:35 PM,01/29/2016 01:57:07 PM,01/29/2016 01:58:30 PM,01/29/2016 01:59:12 PM,01/29/2016 02:14:48 PM,01/29/2016 02:37:28 PM,01/29/2016 03:16:13 PM,Code 2 Transport,01/29/2016 03:50:28 PM,900 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",160291921-KM09 -160882199,59,16034997,Medical Incident,03/28/2016,03/28/2016,03/28/2016 02:45:11 PM,03/28/2016 02:45:11 PM,03/28/2016 02:45:35 PM,03/28/2016 02:45:59 PM,03/28/2016 02:54:10 PM,03/28/2016 03:18:26 PM,03/28/2016 03:30:32 PM,Code 2 Transport,03/28/2016 04:10:19 PM,1100 Block of OCEAN AVE,San Francisco,94112,B09,15,8472,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7238590120011, -122.455615861538)",160882199-59 -112240065,E10,11073886,Medical Incident,08/12/2011,08/11/2011,08/12/2011 06:29:58 AM,08/12/2011 06:30:57 AM,08/12/2011 06:31:09 AM,08/12/2011 06:33:01 AM,08/12/2011 06:35:36 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,08/12/2011 06:46:47 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,2,2,2,true,,1,ENGINE,1,5,2,Presidio Heights,"(37.7829201128686, -122.4436267262)",112240065-E10 -130400126,E13,13013611,Medical Incident,02/09/2013,02/09/2013,02/09/2013 09:42:04 AM,02/09/2013 09:43:41 AM,02/09/2013 09:44:08 AM,02/09/2013 09:44:31 AM,02/09/2013 09:47:58 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 10:08:24 AM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",130400126-E13 -130820334,85,13027583,Medical Incident,03/23/2013,03/23/2013,03/23/2013 09:55:58 PM,03/23/2013 09:56:05 PM,03/23/2013 09:56:24 PM,03/23/2013 09:57:24 PM,03/23/2013 10:02:47 PM,03/23/2013 10:14:09 PM,03/23/2013 10:22:22 PM,Code 2 Transport,03/23/2013 10:44:54 PM,300 Block of GEARY ST,SF,94102,B01,3,1411,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7871999750116, -122.409039390561)",130820334-85 -122860201,E36,12094617,Medical Incident,10/12/2012,10/12/2012,10/12/2012 03:12:12 PM,10/12/2012 03:12:30 PM,10/12/2012 03:12:40 PM,10/12/2012 03:13:36 PM,10/12/2012 03:16:05 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 03:22:40 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7765128154607, -122.414966685701)",122860201-E36 -113490075,T08,11115729,Traffic Collision,12/15/2011,12/15/2011,12/15/2011 09:07:02 AM,12/15/2011 09:08:11 AM,12/15/2011 09:08:32 AM,12/15/2011 09:09:34 AM,12/15/2011 09:11:16 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/15/2011 10:20:53 AM,3RD ST/KING ST,SF,94107,B03,8,2154,3,3,3,false,,1,TRUCK,2,3,6,Mission Bay,"(37.7781256975534, -122.391840525297)",113490075-T08 -140030263,RC3,14001105,Medical Incident,01/03/2014,01/03/2014,01/03/2014 01:59:25 PM,01/03/2014 02:02:04 PM,01/03/2014 02:23:08 PM,01/03/2014 02:23:28 PM,01/03/2014 02:32:55 PM,04/25/2016 01:48:54 PM,04/25/2016 01:48:54 PM,Other,01/03/2014 02:51:22 PM,0 Block of LEO ST,SF,94112,B09,43,6121,,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,9,11,Outer Mission,"(37.7226612439004, -122.437128783144)",140030263-RC3 -113240145,KM11,11107581,Structure Fire,11/20/2011,11/20/2011,11/20/2011 11:15:45 AM,11/20/2011 11:16:39 AM,11/20/2011 11:18:04 AM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 11:19:34 AM,0 Block of AGUA WAY,SF,94127,B09,39,8651,3,3,3,false,,1,PRIVATE,11,9,7,West of Twin Peaks,"(37.742207178028, -122.451868140233)",113240145-KM11 -140980031,79,14032922,Medical Incident,04/08/2014,04/07/2014,04/08/2014 02:13:41 AM,04/08/2014 02:14:43 AM,04/08/2014 02:15:09 AM,04/08/2014 02:17:47 AM,04/25/2016 01:47:20 PM,04/08/2014 02:36:36 AM,04/08/2014 02:45:29 AM,Code 2 Transport,04/08/2014 03:20:46 AM,0 Block of REUEL CT,SAN FRANCISCO,94124,B10,25,652,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",140980031-79 -130750172,E03,13025022,Medical Incident,03/16/2013,03/16/2013,03/16/2013 01:22:34 PM,03/16/2013 01:22:56 PM,03/16/2013 01:23:05 PM,03/16/2013 01:23:53 PM,03/16/2013 01:25:23 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 01:30:12 PM,900 Block of POLK ST,SF,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",130750172-E03 -160532012,83,16021247,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:42:15 PM,02/22/2016 02:46:18 PM,02/22/2016 02:47:21 PM,02/22/2016 02:47:56 PM,02/22/2016 03:27:02 PM,02/22/2016 03:44:17 PM,02/22/2016 04:04:07 PM,Code 2 Transport,02/22/2016 04:48:05 PM,900 Block of RUTLAND ST,San Francisco,94134,B09,44,6256,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7106642055694, -122.408348294705)",160532012-83 -160123409,86,16004934,Medical Incident,01/12/2016,01/12/2016,01/12/2016 08:22:19 PM,01/12/2016 08:22:19 PM,01/12/2016 08:22:40 PM,01/12/2016 08:22:56 PM,01/12/2016 08:43:08 PM,01/12/2016 09:09:46 PM,01/12/2016 09:16:33 PM,Code 2 Transport,01/12/2016 10:24:36 PM,400 Block of ARCH ST,San Francisco,94132,B09,33,8444,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7187886941109, -122.467213936141)",160123409-86 -160441452,65,16017674,Traffic Collision,02/13/2016,02/13/2016,02/13/2016 12:02:29 PM,02/13/2016 12:03:57 PM,02/13/2016 12:25:47 PM,02/13/2016 12:25:47 PM,02/13/2016 12:31:19 PM,02/13/2016 12:52:16 PM,02/13/2016 01:29:23 PM,Code 2 Transport,02/13/2016 02:42:00 PM,JOHN F KENNEDY DR/GREAT HY,San Francisco,94122,B07,34,7311,2,2,2,true,Non Life-threatening,1,MEDIC,4,7,1,Golden Gate Park,"(37.7704356758824, -122.510925945877)",160441452-65 -133300003,E01,13111918,Medical Incident,11/26/2013,11/25/2013,11/26/2013 12:10:32 AM,11/26/2013 12:10:50 AM,11/26/2013 12:12:00 AM,11/26/2013 12:14:00 AM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,04/25/2016 01:49:35 PM,Other,11/26/2013 12:15:09 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",133300003-E01 -140450189,81,14015318,Medical Incident,02/14/2014,02/14/2014,02/14/2014 01:31:21 PM,02/14/2014 01:32:21 PM,02/14/2014 01:33:05 PM,02/14/2014 01:35:58 PM,02/14/2014 01:39:02 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Patient Declined Transport,02/14/2014 02:10:47 PM,1000 Block of MARKET ST,SF,94102,B03,1,1454,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",140450189-81 -112580237,KM05,11085086,Medical Incident,09/15/2011,09/15/2011,09/15/2011 03:19:54 PM,09/15/2011 03:22:07 PM,09/15/2011 03:22:27 PM,09/15/2011 03:23:03 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 03:27:11 PM,16TH ST/BRYANT ST,SF,94110,B02,29,5241,3,3,3,false,,1,PRIVATE,2,2,10,Mission,"(37.7656058395036, -122.410486689194)",112580237-KM05 -160740343,70,16029201,Medical Incident,03/14/2016,03/13/2016,03/14/2016 05:07:02 AM,03/14/2016 05:08:46 AM,03/14/2016 05:09:03 AM,03/14/2016 05:09:15 AM,03/14/2016 05:20:59 AM,03/14/2016 05:30:44 AM,03/14/2016 05:52:38 AM,Code 2 Transport,03/14/2016 06:13:38 AM,300 Block of BRENTWOOD AVE,San Francisco,94127,B09,39,8541,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7325430394649, -122.461133345081)",160740343-70 -160711086,89,16028171,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:10:57 AM,03/11/2016 10:11:52 AM,03/11/2016 10:12:56 AM,03/11/2016 10:13:26 AM,03/11/2016 10:18:23 AM,03/11/2016 10:39:33 AM,03/11/2016 10:46:43 AM,Code 2 Transport,03/11/2016 11:30:54 AM,400 Block of 15TH AVE,San Francisco,94118,B07,31,7154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",160711086-89 -140900330,E08,14030427,Outside Fire,03/31/2014,03/31/2014,03/31/2014 09:30:41 PM,03/31/2014 09:30:41 PM,03/31/2014 09:31:31 PM,03/31/2014 09:32:58 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,04/25/2016 01:47:27 PM,Fire,03/31/2014 09:38:52 PM,700 Block of THE EMBARCADERO,,94111,B03,8,942,3,3,3,true,Alarm,1,ENGINE,3,1,3,Financial District/South Beach,"(37.8023783666633, -122.400706378791)",140900330-E08 -160351679,59,16013818,Medical Incident,02/04/2016,02/04/2016,02/04/2016 12:21:10 PM,02/04/2016 12:23:29 PM,02/04/2016 12:25:34 PM,02/04/2016 12:25:47 PM,02/04/2016 01:28:59 PM,02/04/2016 01:29:03 PM,02/04/2016 01:29:03 PM,Code 2 Transport,02/04/2016 02:12:53 PM,600 Block of 32ND AVE,San Francisco,94121,B07,14,724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",160351679-59 -110310031,81,11010048,Medical Incident,01/31/2011,01/30/2011,01/31/2011 02:59:44 AM,01/31/2011 03:01:07 AM,01/31/2011 03:02:12 AM,01/31/2011 03:02:27 AM,01/31/2011 03:14:41 AM,01/31/2011 03:40:07 AM,01/31/2011 04:02:10 AM,Code 2 Transport,01/31/2011 04:36:03 AM,200 Block of SANTA ANA AVE,SF,94127,B09,39,8552,2,2,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7324668923825, -122.467880983272)",110310031-81 -112930042,D2,11097094,Structure Fire,10/20/2011,10/19/2011,10/20/2011 05:26:12 AM,10/20/2011 05:27:48 AM,10/20/2011 05:28:18 AM,10/20/2011 05:29:52 AM,10/20/2011 05:34:12 AM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 05:37:40 AM,GOLDEN GATE AV/FILLMORE ST,SF,94115,B05,5,3516,3,3,3,false,,1,CHIEF,8,5,5,Western Addition,"(37.7795641471317, -122.431951803212)",112930042-D2 -131780347,E08,13060576,Structure Fire,06/27/2013,06/27/2013,06/27/2013 07:54:18 PM,06/27/2013 07:55:47 PM,06/27/2013 07:56:03 PM,06/27/2013 07:57:26 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Other,06/27/2013 08:03:10 PM,600 Block of 19TH ST,SF,94107,B10,37,2471,3,3,3,true,Alarm,1,ENGINE,9,10,10,Potrero Hill,"(37.7617933173608, -122.389151124155)",131780347-E08 -111710119,T01,11056327,Structure Fire,06/20/2011,06/20/2011,06/20/2011 10:21:54 AM,06/20/2011 10:21:55 AM,06/20/2011 10:22:15 AM,06/20/2011 10:23:18 AM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,Fire,06/20/2011 10:25:40 AM,10TH ST/HOWARD ST,SF,94103,B02,36,2342,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7740433259374, -122.414367692219)",111710119-T01 -160743452,60,16029459,Medical Incident,03/14/2016,03/14/2016,03/14/2016 07:44:56 PM,03/14/2016 07:46:49 PM,03/14/2016 07:48:15 PM,03/14/2016 07:49:40 PM,03/14/2016 08:01:29 PM,03/14/2016 08:39:35 PM,03/14/2016 08:52:21 PM,Code 2 Transport,03/14/2016 09:27:46 PM,0 Block of FLORENTINE AVE,San Francisco,94112,B09,33,6177,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7126176750656, -122.443700918136)",160743452-60 -121930040,B04,12064141,Alarms,07/11/2012,07/10/2012,07/11/2012 04:00:06 AM,07/11/2012 04:01:14 AM,07/11/2012 04:01:24 AM,07/11/2012 04:03:31 AM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 04:07:08 AM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",121930040-B04 -131230041,84,13041307,Medical Incident,05/03/2013,05/02/2013,05/03/2013 03:24:45 AM,05/03/2013 03:25:10 AM,05/03/2013 03:25:46 AM,05/03/2013 03:26:15 AM,05/03/2013 03:31:13 AM,05/03/2013 03:39:57 AM,05/03/2013 03:59:14 AM,Code 2 Transport,05/03/2013 04:27:12 AM,1300 Block of 46TH AVE,SF,94122,B08,23,7721,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7613577781783, -122.505924512458)",131230041-84 -160400195,54,16015865,Medical Incident,02/09/2016,02/08/2016,02/09/2016 02:11:41 AM,02/09/2016 02:15:10 AM,02/09/2016 02:15:53 AM,02/09/2016 02:16:43 AM,02/09/2016 02:21:34 AM,02/09/2016 02:41:59 AM,02/09/2016 02:46:35 AM,Code 3 Transport,02/09/2016 03:25:29 AM,400 Block of SCOTT ST,San Francisco,94117,B05,21,4141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7738199257134, -122.43577759366)",160400195-54 -102980361,AP,10095299,Other,10/25/2010,10/25/2010,10/25/2010 09:16:53 PM,10/25/2010 09:16:53 PM,10/25/2010 09:16:53 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Fire,10/25/2010 09:17:19 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102980361-AP -102930006,E03,10093300,Medical Incident,10/20/2010,10/19/2010,10/20/2010 12:28:07 AM,10/20/2010 12:28:41 AM,10/20/2010 12:29:19 AM,10/20/2010 12:30:59 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 12:32:51 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",102930006-E03 -140340304,77,14011607,Medical Incident,02/03/2014,02/03/2014,02/03/2014 07:34:02 PM,02/03/2014 07:35:37 PM,02/03/2014 07:36:25 PM,02/03/2014 07:37:31 PM,04/25/2016 01:48:23 PM,02/03/2014 07:59:31 PM,02/03/2014 08:26:50 PM,Code 2 Transport,02/03/2014 08:46:31 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",140340304-77 -140750167,KM03,14025377,Medical Incident,03/16/2014,03/16/2014,03/16/2014 11:08:05 AM,03/16/2014 11:08:56 AM,03/16/2014 11:11:07 AM,03/16/2014 11:12:01 AM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,No Merit,03/16/2014 11:22:27 AM,POTRERO AV/24TH ST,SAN FRANCISCO,94110,B10,37,2554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,10,9,Mission,"(37.7530040313925, -122.406336240587)",140750167-KM03 -123400357,D3,12113560,Structure Fire,12/05/2012,12/05/2012,12/05/2012 07:55:14 PM,12/05/2012 07:56:33 PM,12/05/2012 07:57:26 PM,12/05/2012 07:58:39 PM,12/05/2012 08:02:33 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/05/2012 08:04:53 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,false,Alarm,1,CHIEF,10,3,6,South of Market,"(37.7823404680537, -122.40377191669)",123400357-D3 -102970334,B04,10094883,Alarms,10/24/2010,10/24/2010,10/24/2010 03:58:51 PM,10/24/2010 04:01:18 PM,10/24/2010 04:01:29 PM,10/24/2010 04:03:02 PM,10/24/2010 04:05:28 PM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Fire,10/24/2010 04:11:26 PM,1600 Block of CLAY ST,SF,94109,B04,41,1634,3,3,3,false,,1,CHIEF,2,4,3,Nob Hill,"(37.792433934443, -122.420216385348)",102970334-B04 -160602942,55,16024029,Medical Incident,02/29/2016,02/29/2016,02/29/2016 06:36:04 PM,02/29/2016 06:36:25 PM,02/29/2016 06:37:20 PM,02/29/2016 06:37:51 PM,02/29/2016 06:43:12 PM,02/29/2016 07:03:06 PM,02/29/2016 07:12:58 PM,Code 3 Transport,02/29/2016 08:16:44 PM,2200 Block of 24TH ST,San Francisco,94107,B10,37,2556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7533195885646, -122.401957150636)",160602942-55 -160483604,79,16019505,Medical Incident,02/17/2016,02/17/2016,02/17/2016 08:21:42 PM,02/17/2016 08:22:22 PM,02/17/2016 08:23:00 PM,02/17/2016 08:23:09 PM,02/17/2016 08:27:21 PM,02/17/2016 08:45:20 PM,02/17/2016 08:52:25 PM,Code 2 Transport,02/17/2016 09:13:38 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160483604-79 -130780165,E17,13026008,Alarms,03/19/2013,03/19/2013,03/19/2013 11:01:12 AM,03/19/2013 11:02:07 AM,03/19/2013 11:02:21 AM,03/19/2013 11:03:30 AM,03/19/2013 11:05:40 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 11:12:31 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",130780165-E17 -132060348,88,13069876,Medical Incident,07/25/2013,07/25/2013,07/25/2013 08:56:34 PM,07/25/2013 08:59:16 PM,07/25/2013 08:59:53 PM,07/25/2013 09:00:06 PM,07/25/2013 09:07:16 PM,07/25/2013 09:14:43 PM,07/25/2013 09:22:04 PM,Code 2 Transport,07/25/2013 09:44:45 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",132060348-88 -122850339,E02,12094405,Medical Incident,10/11/2012,10/11/2012,10/11/2012 08:14:34 PM,10/11/2012 08:16:40 PM,10/11/2012 08:18:10 PM,10/11/2012 08:19:36 PM,10/11/2012 08:20:27 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 08:31:55 PM,1100 Block of POWELL ST,SF,94108,B01,2,1354,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7951852932116, -122.409741814728)",122850339-E02 -160772286,53,16030632,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:30:48 PM,03/17/2016 02:33:08 PM,03/17/2016 02:33:39 PM,03/17/2016 02:33:54 PM,03/17/2016 02:37:06 PM,03/17/2016 02:57:36 PM,03/17/2016 03:07:16 PM,Code 2 Transport,03/17/2016 03:42:05 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7904732830605, -122.406742211994)",160772286-53 -131700139,T10,13057685,Structure Fire,06/19/2013,06/19/2013,06/19/2013 11:31:18 AM,06/19/2013 11:31:52 AM,06/19/2013 11:32:33 AM,06/19/2013 11:33:13 AM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/19/2013 11:33:18 AM,400 Block of ARGUELLO BLVD,SF,94118,B07,10,7114,3,3,3,true,Alarm,1,TRUCK,10,7,2,Presidio Heights,"(37.7835107824698, -122.458952383537)",131700139-T10 -140410211,E03,14013943,Alarms,02/10/2014,02/10/2014,02/10/2014 01:03:38 PM,02/10/2014 01:04:53 PM,02/10/2014 01:05:02 PM,02/10/2014 01:06:18 PM,02/10/2014 01:10:48 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 01:15:23 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,ENGINE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",140410211-E03 -160892990,AM12,16035440,Medical Incident,03/29/2016,03/29/2016,03/29/2016 06:00:14 PM,03/29/2016 06:02:33 PM,03/29/2016 06:03:39 PM,03/29/2016 06:04:27 PM,03/29/2016 06:11:00 PM,03/29/2016 06:31:12 PM,03/29/2016 06:41:25 PM,Code 2 Transport,03/29/2016 07:19:04 PM,1700 Block of FULTON ST,San Francisco,94117,B05,21,4463,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7759633291151, -122.445636305306)",160892990-AM12 -120620309,72,12020500,Medical Incident,03/02/2012,03/02/2012,03/02/2012 07:09:12 PM,03/02/2012 07:10:22 PM,03/02/2012 07:11:16 PM,03/02/2012 07:11:23 PM,03/02/2012 07:17:37 PM,03/02/2012 07:31:25 PM,03/02/2012 08:07:39 PM,Code 2 Transport,03/02/2012 08:11:15 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7807144867659, -122.408483722327)",120620309-72 -132680146,89,13090947,Medical Incident,09/25/2013,09/25/2013,09/25/2013 11:08:15 AM,09/25/2013 11:11:38 AM,09/25/2013 11:23:28 AM,04/25/2016 01:50:36 PM,09/25/2013 11:35:36 AM,09/25/2013 12:09:31 PM,09/25/2013 12:27:46 PM,Code 2 Transport,09/25/2013 01:08:05 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",132680146-89 -122850272,67,12094341,Medical Incident,10/11/2012,10/11/2012,10/11/2012 05:04:17 PM,10/11/2012 05:05:27 PM,10/11/2012 05:05:53 PM,10/11/2012 05:07:04 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,04/25/2016 01:56:21 PM,Other,10/11/2012 05:07:56 PM,700 Block of STANYAN ST,SF,94117,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Haight Ashbury,"(37.7687142722405, -122.453376250788)",122850272-67 -112620361,E19,11086604,Medical Incident,09/19/2011,09/19/2011,09/19/2011 07:18:03 PM,09/19/2011 07:20:01 PM,09/19/2011 07:22:32 PM,09/19/2011 07:23:27 PM,09/19/2011 07:26:24 PM,04/25/2016 02:02:35 PM,04/25/2016 02:02:35 PM,Patient Declined Transport,09/19/2011 07:44:40 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,1,1,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",112620361-E19 -102370393,57,10074892,Medical Incident,08/25/2010,08/25/2010,08/25/2010 09:22:23 PM,08/25/2010 09:22:33 PM,08/25/2010 09:23:22 PM,08/25/2010 09:30:50 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,04/25/2016 02:08:54 PM,Other,08/25/2010 09:41:13 PM,WEST PORTAL AV/SLOAT BL,SF,94132,B08,39,8555,3,3,3,true,,1,MEDIC,3,8,7,West of Twin Peaks,"(37.7347068117722, -122.471569339996)",102370393-57 -113120032,89,11103526,Medical Incident,11/08/2011,11/07/2011,11/08/2011 03:58:08 AM,11/08/2011 03:59:08 AM,11/08/2011 04:00:11 AM,11/08/2011 04:20:21 AM,11/08/2011 04:27:07 AM,11/08/2011 04:42:43 AM,11/08/2011 04:56:10 AM,Code 2 Transport,11/08/2011 05:30:38 AM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,1,2,true,,1,MEDIC,2,2,6,Mission,"(37.7732180675925, -122.421522300696)",113120032-89 -130170176,RC1,13005770,Medical Incident,01/17/2013,01/17/2013,01/17/2013 12:26:31 PM,01/17/2013 12:28:26 PM,01/17/2013 12:28:35 PM,01/17/2013 12:29:22 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 12:33:40 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,E,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",130170176-RC1 -130940205,E21,13031473,Medical Incident,04/04/2013,04/04/2013,04/04/2013 01:58:26 PM,04/04/2013 01:59:25 PM,04/04/2013 01:59:38 PM,04/04/2013 02:00:53 PM,04/04/2013 02:03:36 PM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/04/2013 02:06:51 PM,300 Block of LAGUNA ST,SF,94102,B02,36,3414,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7743568541999, -122.425909733176)",130940205-E21 -111660371,68,11054956,Medical Incident,06/15/2011,06/15/2011,06/15/2011 10:45:43 PM,06/15/2011 10:47:23 PM,06/15/2011 10:47:54 PM,06/15/2011 10:48:36 PM,06/15/2011 10:52:27 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Against Medical Advice,06/15/2011 11:30:38 PM,5200 Block of 3RD ST,SF,94124,B10,17,6536,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7297002538198, -122.392619682108)",111660371-68 -103240264,T01,10103901,Alarms,11/20/2010,11/20/2010,11/20/2010 05:57:54 PM,11/20/2010 05:58:43 PM,11/20/2010 06:01:01 PM,04/25/2016 02:07:30 PM,11/20/2010 06:04:38 PM,04/25/2016 02:07:30 PM,04/25/2016 02:07:30 PM,Other,11/20/2010 06:10:16 PM,200 Block of POST ST,SF,94108,B01,1,1316,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7886509906461, -122.406006971458)",103240264-T01 -133210336,E26,13109190,Medical Incident,11/17/2013,11/17/2013,11/17/2013 11:22:23 PM,11/17/2013 11:25:43 PM,11/17/2013 11:26:16 PM,11/17/2013 11:26:53 PM,11/17/2013 11:30:26 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 11:50:02 PM,1700 Block of DIAMOND ST,SF,94131,B06,26,5557,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7435786028451, -122.435650218165)",133210336-E26 -122500158,87,12082643,Medical Incident,09/06/2012,09/06/2012,09/06/2012 12:32:03 PM,09/06/2012 12:34:05 PM,09/06/2012 12:34:26 PM,09/06/2012 12:34:42 PM,09/06/2012 12:43:55 PM,09/06/2012 01:00:23 PM,09/06/2012 01:34:33 PM,Code 2 Transport,09/06/2012 02:05:07 PM,0 Block of RALSTON ST,SF,94132,B09,33,8417,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7136025433012, -122.468796217874)",122500158-87 -160163069,78,16006556,Medical Incident,01/16/2016,01/16/2016,01/16/2016 07:13:32 PM,01/16/2016 07:15:20 PM,01/16/2016 07:16:24 PM,01/16/2016 07:16:34 PM,01/16/2016 07:29:33 PM,01/16/2016 07:45:46 PM,01/16/2016 07:59:39 PM,Code 2 Transport,01/16/2016 08:41:00 PM,0 Block of DANIEL BURNHAM CT,San Francisco,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7869107185707, -122.422525749968)",160163069-78 -110530335,65,11017647,Medical Incident,02/22/2011,02/22/2011,02/22/2011 08:43:13 PM,02/22/2011 08:43:13 PM,02/22/2011 08:43:43 PM,02/22/2011 08:43:59 PM,02/22/2011 08:49:52 PM,02/22/2011 09:07:46 PM,02/22/2011 09:13:53 PM,Code 2 Transport,02/22/2011 09:43:53 PM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",110530335-65 -133240198,E09,13110033,Structure Fire,11/20/2013,11/20/2013,11/20/2013 12:05:45 PM,11/20/2013 12:05:46 PM,11/20/2013 12:06:09 PM,11/20/2013 12:08:40 PM,11/20/2013 12:10:43 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 12:35:13 PM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,562,3,3,3,true,Alarm,1,ENGINE,2,6,9,Bernal Heights,"(37.748166431151, -122.412573078107)",133240198-E09 -121330275,B02,12044345,Medical Incident,05/12/2012,05/12/2012,05/12/2012 06:42:18 PM,05/12/2012 06:42:53 PM,05/12/2012 06:43:32 PM,05/12/2012 06:44:39 PM,05/12/2012 06:46:40 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Patient Declined Transport,05/12/2012 06:53:18 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,E,E,3,false,Non Life-threatening,1,CHIEF,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",121330275-B02 -113180168,E08,11105632,Alarms,11/14/2011,11/14/2011,11/14/2011 01:02:30 PM,11/14/2011 01:04:28 PM,11/14/2011 01:04:47 PM,11/14/2011 01:06:11 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,04/25/2016 02:01:39 PM,Other,11/14/2011 01:06:54 PM,600 Block of FOLSOM ST,SF,94107,B03,1,2147,3,3,3,true,,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7850654631195, -122.397209533545)",113180168-E08 -120180203,58,12006050,Medical Incident,01/18/2012,01/18/2012,01/18/2012 02:50:01 PM,01/18/2012 02:50:46 PM,01/18/2012 02:51:04 PM,01/18/2012 02:51:37 PM,01/18/2012 02:57:46 PM,01/18/2012 03:11:18 PM,01/18/2012 03:18:06 PM,Code 2 Transport,01/18/2012 03:40:00 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",120180203-58 -103050016,T06,10097346,Medical Incident,11/01/2010,10/31/2010,11/01/2010 12:35:56 AM,11/01/2010 12:36:58 AM,11/01/2010 12:38:24 AM,11/01/2010 12:40:12 AM,11/01/2010 12:41:36 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 01:00:43 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,false,,1,TRUCK,1,5,8,Castro/Upper Market,"(37.7635007029742, -122.434209629009)",103050016-T06 -110590275,E17,11019457,Medical Incident,02/28/2011,02/28/2011,02/28/2011 05:41:51 PM,02/28/2011 05:43:13 PM,02/28/2011 05:43:45 PM,02/28/2011 05:45:11 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,02/28/2011 05:51:53 PM,1300 Block of GILMAN AVE,SF,94124,B10,17,6614,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7218924918155, -122.394708775431)",110590275-E17 -132750019,67,13093269,Medical Incident,10/02/2013,10/01/2013,10/02/2013 01:54:31 AM,10/02/2013 01:55:07 AM,10/02/2013 01:55:20 AM,10/02/2013 01:55:36 AM,10/02/2013 01:58:33 AM,10/02/2013 02:16:54 AM,10/02/2013 02:24:02 AM,Code 2 Transport,10/02/2013 02:54:47 AM,800 Block of CLEMENT ST,SF,94118,B07,31,7141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7827217564864, -122.468162633745)",132750019-67 -160341687,65,16013378,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:45:29 PM,02/03/2016 12:50:51 PM,02/03/2016 12:51:38 PM,02/03/2016 12:51:44 PM,02/03/2016 01:06:10 PM,02/03/2016 01:36:34 PM,02/03/2016 01:52:22 PM,Code 2 Transport,02/03/2016 02:34:58 PM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160341687-65 -120250060,89,12008300,Medical Incident,01/25/2012,01/24/2012,01/25/2012 06:51:00 AM,01/25/2012 06:51:42 AM,01/25/2012 06:52:02 AM,01/25/2012 06:52:37 AM,01/25/2012 06:54:09 AM,01/25/2012 07:01:53 AM,01/25/2012 07:12:53 AM,Code 2 Transport,01/25/2012 07:26:34 AM,0 Block of 7TH ST,SF,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7802039058686, -122.412272455406)",120250060-89 -110210020,92,11006818,Medical Incident,01/21/2011,01/20/2011,01/21/2011 01:37:18 AM,01/21/2011 01:37:18 AM,01/21/2011 01:37:18 AM,01/21/2011 01:38:42 AM,01/21/2011 01:40:47 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/21/2011 01:43:01 AM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",110210020-92 -112660231,KM11,11087920,Medical Incident,09/23/2011,09/23/2011,09/23/2011 02:34:15 PM,09/23/2011 02:35:38 PM,09/23/2011 02:36:11 PM,09/23/2011 02:36:50 PM,09/23/2011 02:41:45 PM,09/23/2011 03:03:15 PM,09/23/2011 03:32:18 PM,Code 2 Transport,09/23/2011 03:58:31 PM,5TH ST/TEHAMA ST,SF,94103,B03,1,2245,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7810765960775, -122.404403682244)",112660231-KM11 -133650172,66,13123931,Medical Incident,12/31/2013,12/31/2013,12/31/2013 12:32:26 PM,12/31/2013 12:32:26 PM,12/31/2013 12:33:16 PM,12/31/2013 12:33:49 PM,12/31/2013 12:39:53 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Other,12/31/2013 12:41:04 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7791674218963, -122.406346425632)",133650172-66 -160800103,81,16031645,Medical Incident,03/20/2016,03/19/2016,03/20/2016 12:27:18 AM,03/20/2016 12:29:33 AM,03/20/2016 12:30:24 AM,03/20/2016 12:30:33 AM,03/20/2016 12:44:37 AM,03/20/2016 12:44:40 AM,03/20/2016 12:51:33 AM,Code 3 Transport,03/20/2016 02:06:11 AM,5000 Block of MISSION ST,San Francisco,94112,B09,43,6175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7174988976749, -122.440357992837)",160800103-81 -121770073,E01,12058802,Medical Incident,06/25/2012,06/24/2012,06/25/2012 07:20:14 AM,06/25/2012 07:20:46 AM,06/25/2012 07:20:59 AM,06/25/2012 07:22:36 AM,06/25/2012 07:25:44 AM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/25/2012 07:31:07 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",121770073-E01 -111120019,E08,11036862,Water Rescue,04/22/2011,04/21/2011,04/22/2011 01:08:56 AM,04/22/2011 01:09:09 AM,04/22/2011 01:10:14 AM,04/22/2011 01:11:54 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 01:14:08 AM,2800 Block of HYDE ST,SF,94109,B03,28,1616,3,3,3,true,,1,ENGINE,4,1,2,Russian Hill,"(37.8071154533997, -122.420720018434)",111120019-E08 -160882014,63,16034979,Medical Incident,03/28/2016,03/28/2016,03/28/2016 01:53:20 PM,03/28/2016 01:55:44 PM,03/28/2016 02:14:41 PM,03/28/2016 02:14:53 PM,03/28/2016 02:21:44 PM,03/28/2016 02:37:45 PM,03/28/2016 03:07:41 PM,Code 2 Transport,03/28/2016 03:50:35 PM,500 Block of RAMSELL ST,San Francisco,94132,B09,15,8435,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7206727205303, -122.466335197673)",160882014-63 -133200153,KM10,13108701,Medical Incident,11/16/2013,11/16/2013,11/16/2013 12:08:31 PM,11/16/2013 12:08:31 PM,11/16/2013 12:09:40 PM,04/25/2016 01:49:44 PM,11/16/2013 12:13:17 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 12:16:41 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",133200153-KM10 -160591374,AM06,16023492,Medical Incident,02/28/2016,02/28/2016,02/28/2016 11:42:36 AM,02/28/2016 11:45:21 AM,02/28/2016 11:45:31 AM,02/28/2016 11:46:19 AM,02/28/2016 11:51:18 AM,02/28/2016 11:59:19 AM,02/28/2016 12:26:04 PM,Code 2 Transport,02/28/2016 01:00:49 PM,400 Block of 23RD AV,San Francisco,94121,B07,14,7176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7792293082321, -122.482453152636)",160591374-AM06 -132800247,KM09,13095339,Medical Incident,10/07/2013,10/07/2013,10/07/2013 03:35:57 PM,10/07/2013 03:37:41 PM,10/07/2013 03:39:55 PM,04/25/2016 01:50:22 PM,10/07/2013 03:42:24 PM,10/07/2013 03:54:50 PM,10/07/2013 04:17:17 PM,Code 2 Transport,10/07/2013 04:34:57 PM,TURK ST/TAYLOR ST,SF,94102,B03,1,1365,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7832143109759, -122.410764828365)",132800247-KM09 -131020201,94,13034292,Medical Incident,04/12/2013,04/12/2013,04/12/2013 02:27:08 PM,04/12/2013 02:29:48 PM,04/12/2013 02:30:19 PM,04/12/2013 02:31:53 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/25/2016 01:53:21 PM,100 Block of LEAVENWORTH ST,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.782320193191, -122.41402801662)",131020201-94 -131400293,T02,13047493,Structure Fire,05/20/2013,05/20/2013,05/20/2013 03:36:12 PM,05/20/2013 03:36:13 PM,05/20/2013 03:36:47 PM,05/20/2013 03:38:14 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,Other,05/20/2013 03:40:04 PM,COLUMBUS AV/UNION ST,SF,94133,B01,28,1334,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",131400293-T02 -110020134,RS2,11000620,High Angle Rescue,01/02/2011,01/02/2011,01/02/2011 11:01:22 AM,01/02/2011 11:02:21 AM,01/02/2011 11:03:00 AM,01/02/2011 11:03:58 AM,01/02/2011 11:17:34 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 12:42:21 PM,0 Block of ARMORY DR,SF,94132,B08,19,8716,3,3,3,false,,1,RESCUE SQUAD,7,8,7,Lakeshore,"(37.729313973933, -122.502539454339)",110020134-RS2 -160292004,87,16011470,Medical Incident,01/29/2016,01/29/2016,01/29/2016 02:14:29 PM,01/29/2016 02:14:50 PM,01/29/2016 02:15:21 PM,01/29/2016 02:15:39 PM,01/29/2016 02:25:20 PM,01/29/2016 02:40:07 PM,01/29/2016 02:59:25 PM,Code 3 Transport,01/29/2016 03:50:01 PM,0 Block of LATONA ST,San Francisco,94124,B10,17,6514,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7315986139951, -122.392491129929)",160292004-87 -132980084,E29,13101121,Structure Fire,10/25/2013,10/25/2013,10/25/2013 08:12:06 AM,10/25/2013 08:12:36 AM,10/25/2013 08:12:57 AM,10/25/2013 08:14:53 AM,10/25/2013 08:17:19 AM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 10:11:11 AM,3300 Block of 17TH ST,SF,94110,B02,7,5247,3,3,3,true,Fire,2,ENGINE,6,2,9,Mission,"(37.7634571930206, -122.419977853021)",132980084-E29 -102870303,T11,10091602,Odor (Strange / Unknown),10/14/2010,10/14/2010,10/14/2010 05:08:41 PM,10/14/2010 05:10:05 PM,10/14/2010 05:11:27 PM,10/14/2010 05:14:15 PM,10/14/2010 05:15:16 PM,04/25/2016 02:08:06 PM,04/25/2016 02:08:06 PM,Other,10/14/2010 05:28:10 PM,200 Block of DAY ST,SF,94131,B06,11,5563,3,3,3,false,,1,TRUCK,2,6,8,Noe Valley,"(37.7427760488742, -122.427694653316)",102870303-T11 -132870362,E39,13097787,Medical Incident,10/14/2013,10/14/2013,10/14/2013 09:02:34 PM,10/14/2013 09:04:15 PM,10/14/2013 09:05:17 PM,10/14/2013 09:07:13 PM,10/14/2013 09:09:49 PM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,10/14/2013 09:31:03 PM,200 Block of CASTENADA AVE,SF,94116,B08,39,8627,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7472879832332, -122.46265523969)",132870362-E39 -110050076,E43,11001560,Other,01/05/2011,01/04/2011,01/05/2011 07:53:18 AM,01/05/2011 07:58:30 AM,01/05/2011 08:00:30 AM,01/05/2011 08:01:50 AM,01/05/2011 08:06:01 AM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 08:26:08 AM,300 Block of OXFORD ST,SF,94134,B09,43,6152,3,3,3,true,,1,ENGINE,1,9,9,Excelsior,"(37.7255844163016, -122.419071172889)",110050076-E43 -103130184,E07,10100344,Medical Incident,11/09/2010,11/09/2010,11/09/2010 12:01:38 PM,11/09/2010 12:02:21 PM,11/09/2010 12:03:03 PM,11/09/2010 12:03:47 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/09/2010 12:04:02 PM,2100 Block of FOLSOM ST,SF,94110,B02,7,5424,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7628937069404, -122.415145830574)",103130184-E07 -160311536,58,16012150,Medical Incident,01/31/2016,01/31/2016,01/31/2016 12:14:08 PM,01/31/2016 12:15:45 PM,01/31/2016 12:17:04 PM,01/31/2016 12:19:43 PM,01/31/2016 12:23:26 PM,01/31/2016 12:44:34 PM,01/31/2016 12:59:48 PM,Code 2 Transport,01/31/2016 01:34:00 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7716028339242, -122.445694365285)",160311536-58 -160093806,78,16003850,Medical Incident,01/09/2016,01/09/2016,01/09/2016 11:53:22 PM,01/09/2016 11:53:56 PM,01/09/2016 11:55:29 PM,01/09/2016 11:55:35 PM,01/09/2016 11:59:37 PM,01/10/2016 12:22:21 AM,01/10/2016 12:35:18 AM,Code 2 Transport,01/10/2016 01:38:54 AM,24TH ST/SAN JOSE AV,San Francisco,94110,B06,11,5524,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7520468115771, -122.4215951516)",160093806-78 -160582264,60,16023169,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:25:37 PM,02/27/2016 03:26:43 PM,02/27/2016 03:28:26 PM,02/27/2016 03:28:39 PM,02/27/2016 03:35:34 PM,02/27/2016 03:50:29 PM,02/27/2016 04:13:32 PM,Code 2 Transport,02/27/2016 04:44:29 PM,3200 Block of 20TH AVE,San Francisco,94132,B08,19,8861,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",160582264-60 -102920286,T05,10093204,Alarms,10/19/2010,10/19/2010,10/19/2010 05:53:49 PM,10/19/2010 05:54:50 PM,10/19/2010 05:56:24 PM,10/19/2010 05:58:38 PM,10/19/2010 05:59:23 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/19/2010 06:19:43 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",102920286-T05 -130080423,89,13002952,Medical Incident,01/08/2013,01/08/2013,01/08/2013 11:10:46 PM,01/08/2013 11:12:00 PM,01/08/2013 11:12:11 PM,01/08/2013 11:12:26 PM,01/08/2013 11:15:10 PM,01/08/2013 11:22:21 PM,01/08/2013 11:28:19 PM,Other,01/08/2013 11:49:21 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",130080423-89 -132050184,E05,13069418,Traffic Collision,07/24/2013,07/24/2013,07/24/2013 01:42:58 PM,07/24/2013 01:42:58 PM,07/24/2013 01:43:18 PM,07/24/2013 01:43:54 PM,07/24/2013 01:46:37 PM,04/25/2016 01:51:39 PM,04/25/2016 01:51:39 PM,Other,07/24/2013 02:06:07 PM,TURK ST/DIVISADERO ST,SF,94115,B05,5,4152,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7796596291972, -122.438740182302)",132050184-E05 -121300003,E33,12043109,Medical Incident,05/09/2012,05/08/2012,05/09/2012 12:29:55 AM,05/09/2012 12:32:07 AM,05/09/2012 12:32:18 AM,05/09/2012 12:34:25 AM,05/09/2012 12:36:45 AM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Other,05/09/2012 12:45:32 AM,0 Block of LIEBIG ST,SF,94112,B09,33,8357,3,1,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7089888345409, -122.456754288707)",121300003-E33 -133500339,E44,13118944,Alarms,12/16/2013,12/16/2013,12/16/2013 06:02:26 PM,12/16/2013 06:03:37 PM,12/16/2013 06:04:41 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,04/25/2016 01:49:14 PM,Other,04/25/2016 01:49:14 PM,500 Block of WAYLAND ST,SF,94134,B10,42,6332,3,3,3,true,Alarm,1,ENGINE,3,10,9,Portola,"(37.7252188298206, -122.40752769964)",133500339-E44 -130730381,79,13024514,Medical Incident,03/14/2013,03/14/2013,03/14/2013 11:33:06 PM,03/14/2013 11:33:56 PM,03/14/2013 11:34:39 PM,03/14/2013 11:35:37 PM,03/14/2013 11:36:49 PM,03/14/2013 11:50:28 PM,03/15/2013 12:00:11 AM,Code 2 Transport,03/15/2013 12:31:13 AM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",130730381-79 -120640233,85,12021181,Medical Incident,03/04/2012,03/04/2012,03/04/2012 03:04:26 PM,03/04/2012 03:05:17 PM,03/04/2012 03:06:25 PM,03/04/2012 03:07:04 PM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Other,03/04/2012 03:12:19 PM,800 Block of LA PLAYA,SF,94121,B07,34,7311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7723244294895, -122.510034921211)",120640233-85 -160352575,AM16,16013892,Medical Incident,02/04/2016,02/04/2016,02/04/2016 04:17:40 PM,02/04/2016 04:18:33 PM,02/04/2016 04:19:24 PM,02/04/2016 04:21:23 PM,02/04/2016 04:29:27 PM,02/04/2016 04:42:26 PM,02/04/2016 05:13:30 PM,Code 2 Transport,02/04/2016 05:28:19 PM,300 Block of 10TH ST,San Francisco,94103,B03,36,2343,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7724036771499, -122.412409765245)",160352575-AM16 -160053470,KM07,16002168,Medical Incident,01/05/2016,01/05/2016,01/05/2016 09:06:57 PM,01/05/2016 09:07:17 PM,01/05/2016 09:07:40 PM,01/05/2016 09:08:26 PM,01/05/2016 09:15:45 PM,01/05/2016 09:34:14 PM,01/05/2016 09:48:20 PM,Code 2 Transport,01/05/2016 10:28:56 PM,2100 Block of STOCKTON ST,San Francisco,94133,B01,28,1341,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8055542731117, -122.410285576775)",160053470-KM07 -121360354,E03,12045354,Structure Fire,05/15/2012,05/15/2012,05/15/2012 11:13:26 PM,05/15/2012 11:14:22 PM,05/15/2012 11:14:35 PM,04/25/2016 01:58:40 PM,05/15/2012 11:17:18 PM,04/25/2016 01:58:40 PM,04/25/2016 01:58:40 PM,Fire,05/15/2012 11:31:06 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Fire,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",121360354-E03 -160142279,76,16005625,Medical Incident,01/14/2016,01/14/2016,01/14/2016 03:14:54 PM,01/14/2016 03:16:46 PM,01/14/2016 03:16:58 PM,01/14/2016 03:17:05 PM,01/14/2016 03:24:12 PM,01/14/2016 03:38:34 PM,01/14/2016 04:02:38 PM,Code 2 Transport,01/14/2016 04:31:05 PM,200 Block of BERRY ST,San Francisco,94158,B03,8,2225,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",160142279-76 -113040269,T15,11100986,Structure Fire,10/31/2011,10/31/2011,10/31/2011 03:56:34 PM,10/31/2011 03:56:34 PM,10/31/2011 03:57:18 PM,10/31/2011 03:58:48 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 04:00:27 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",113040269-T15 -131830225,T08,13062388,Alarms,07/02/2013,07/02/2013,07/02/2013 03:04:14 PM,07/02/2013 03:05:21 PM,07/02/2013 03:05:47 PM,07/02/2013 03:06:19 PM,07/02/2013 03:09:30 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 03:17:37 PM,1600 Block of 3RD ST,SF,94158,B03,29,2434,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7683474110857, -122.389401336294)",131830225-T08 -102290137,E36,10072018,Medical Incident,08/17/2010,08/17/2010,08/17/2010 11:22:50 AM,08/17/2010 11:25:17 AM,08/17/2010 11:25:43 AM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 11:26:24 AM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,ENGINE,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",102290137-E36 -111390146,AM12,11046172,Medical Incident,05/19/2011,05/19/2011,05/19/2011 11:17:43 AM,05/19/2011 11:20:57 AM,05/19/2011 11:21:10 AM,05/19/2011 11:21:52 AM,05/19/2011 11:26:16 AM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Against Medical Advice,05/19/2011 12:06:36 PM,4700 Block of 19TH ST,SF,94114,B05,24,5271,3,3,3,false,,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.758856824394, -122.443469820107)",111390146-AM12 -140700144,86,14023574,Traffic Collision,03/11/2014,03/11/2014,03/11/2014 11:13:57 AM,03/11/2014 11:13:57 AM,03/11/2014 11:14:46 AM,03/11/2014 11:14:56 AM,03/11/2014 11:16:26 AM,03/11/2014 11:29:11 AM,03/11/2014 11:42:00 AM,Code 2 Transport,03/11/2014 12:10:38 PM,SUTTER ST/POLK ST,SAN FRANCISCO,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",140700144-86 -160753303,65,16029856,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:07:09 PM,03/15/2016 07:07:09 PM,03/15/2016 07:08:27 PM,03/15/2016 07:08:37 PM,03/15/2016 07:12:49 PM,03/15/2016 07:39:32 PM,03/15/2016 07:54:45 PM,Code 2 Transport,03/15/2016 08:59:09 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",160753303-65 -112250227,E26,11074362,Structure Fire,08/13/2011,08/13/2011,08/13/2011 02:11:46 PM,08/13/2011 02:12:45 PM,08/13/2011 02:13:00 PM,08/13/2011 02:13:18 PM,08/13/2011 02:19:47 PM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/13/2011 02:27:10 PM,400 Block of DOUGLASS ST,SF,94114,B06,24,5463,3,3,3,true,,1,ENGINE,8,6,8,Castro/Upper Market,"(37.7562662400666, -122.438837972763)",112250227-E26 -160192729,83,16007731,Medical Incident,01/19/2016,01/19/2016,01/19/2016 05:15:31 PM,01/19/2016 05:16:57 PM,01/19/2016 05:17:28 PM,01/19/2016 05:17:36 PM,01/19/2016 05:29:04 PM,01/19/2016 05:42:34 PM,01/19/2016 06:35:52 PM,Code 2 Transport,01/19/2016 07:21:37 PM,1200 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7214606647015, -122.392279417619)",160192729-83 -112960390,T05,11098366,Alarms,10/23/2011,10/23/2011,10/23/2011 11:53:04 PM,10/23/2011 11:54:38 PM,10/23/2011 11:55:54 PM,10/23/2011 11:56:24 PM,10/23/2011 11:59:45 PM,04/25/2016 02:02:00 PM,04/25/2016 02:02:00 PM,Other,10/24/2011 12:06:15 AM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",112960390-T05 -102520123,E10,10079574,Medical Incident,09/09/2010,09/09/2010,09/09/2010 10:42:57 AM,09/09/2010 10:43:20 AM,09/09/2010 10:43:34 AM,09/09/2010 10:44:00 AM,09/09/2010 10:44:44 AM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Patient Declined Transport,09/09/2010 11:06:30 AM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,2,2,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",102520123-E10 -112150195,T15,11070985,Structure Fire,08/03/2011,08/03/2011,08/03/2011 01:42:20 PM,08/03/2011 01:42:20 PM,08/03/2011 01:42:49 PM,08/03/2011 01:44:44 PM,08/03/2011 01:46:30 PM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Other,08/03/2011 01:55:36 PM,SAN JOSE AV/NIAGARA AV,SF,94112,B09,15,8312,3,3,3,false,,1,TRUCK,3,9,11,Outer Mission,"(37.7194811206803, -122.447562061428)",112150195-T15 -123200303,T03,12106482,Structure Fire,11/15/2012,11/15/2012,11/15/2012 07:06:26 PM,11/15/2012 07:06:26 PM,11/15/2012 07:08:27 PM,11/15/2012 07:09:41 PM,11/15/2012 07:11:18 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 07:11:50 PM,FRANKLIN ST/SUTTER ST,SF,94109,B04,3,3223,3,3,3,false,Alarm,1,TRUCK,2,4,2,Western Addition,"(37.7873391634884, -122.423403594343)",123200303-T03 -160841963,KM06,16033391,Medical Incident,03/24/2016,03/24/2016,03/24/2016 01:03:26 PM,03/24/2016 01:05:20 PM,03/24/2016 01:08:30 PM,03/24/2016 01:08:58 PM,03/24/2016 01:17:49 PM,03/24/2016 01:38:05 PM,03/24/2016 01:57:29 PM,Code 2 Transport,03/24/2016 02:37:17 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160841963-KM06 -160302119,KM12,16011810,Medical Incident,01/30/2016,01/30/2016,01/30/2016 02:03:57 PM,01/30/2016 02:05:24 PM,01/30/2016 02:05:36 PM,01/30/2016 02:06:11 PM,01/30/2016 02:10:34 PM,01/30/2016 02:30:26 PM,01/30/2016 02:44:13 PM,Code 2 Transport,01/30/2016 03:17:46 PM,200 Block of MADRID ST,San Francisco,94112,B09,43,6133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7254752089817, -122.429807319916)",160302119-KM12 -140890182,B08,14029967,Other,03/30/2014,03/30/2014,03/30/2014 01:29:36 PM,03/30/2014 01:29:42 PM,03/30/2014 01:29:52 PM,03/30/2014 01:29:52 PM,03/30/2014 01:30:47 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,Fire,03/30/2014 01:41:15 PM,17TH AV/QUINTARA ST,SAN FRANCISCO,94116,B08,40,7374,3,3,3,false,Alarm,1,CHIEF,1,8,7,West of Twin Peaks,"(37.7487395044809, -122.473945691268)",140890182-B08 -160881987,77,16034977,Medical Incident,03/28/2016,03/28/2016,03/28/2016 01:47:24 PM,03/28/2016 01:47:46 PM,03/28/2016 01:48:02 PM,03/28/2016 01:48:32 PM,03/28/2016 01:51:52 PM,03/28/2016 02:09:46 PM,03/28/2016 02:24:20 PM,Code 2 Transport,03/28/2016 03:31:11 PM,2100 Block of 36TH AVE,San Francisco,94116,B08,18,7556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7469112222263, -122.494162943216)",160881987-77 -160100134,79,16003864,Medical Incident,01/10/2016,01/09/2016,01/10/2016 12:54:24 AM,01/10/2016 12:55:48 AM,01/10/2016 12:56:08 AM,01/10/2016 12:57:20 AM,01/10/2016 01:04:31 AM,01/10/2016 01:22:11 AM,01/10/2016 01:28:42 AM,Code 2 Transport,01/10/2016 02:08:55 AM,500 Block of SHRADER ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7698369750785, -122.452028786535)",160100134-79 -130310041,T01,13010452,Structure Fire,01/31/2013,01/30/2013,01/31/2013 03:28:32 AM,01/31/2013 03:28:32 AM,01/31/2013 03:28:38 AM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/31/2013 03:31:43 AM,3RD ST/MISSION ST,SF,94103,B03,1,2178,3,3,3,false,Alarm,1,TRUCK,1,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",130310041-T01 -122170064,67,12071932,Medical Incident,08/04/2012,08/03/2012,08/04/2012 06:40:57 AM,08/04/2012 06:41:25 AM,08/04/2012 06:41:45 AM,08/04/2012 06:42:11 AM,08/04/2012 06:44:41 AM,08/04/2012 06:57:25 AM,08/04/2012 07:02:13 AM,Code 2 Transport,08/04/2012 07:28:41 AM,1000 Block of TURK ST,SF,94102,B02,5,3367,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7812721471287, -122.425549328462)",122170064-67 -122220219,AM16,12073617,Medical Incident,08/09/2012,08/09/2012,08/09/2012 02:36:07 PM,08/09/2012 02:38:03 PM,08/09/2012 02:38:30 PM,08/09/2012 02:39:25 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,04/25/2016 01:57:19 PM,Other,08/09/2012 02:42:52 PM,BALBOA ST/28TH AV,SF,94121,B07,14,7225,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Outer Richmond,"(37.7761552340808, -122.487669439804)",122220219-AM16 -110390127,57,11012881,Medical Incident,02/08/2011,02/08/2011,02/08/2011 10:51:19 AM,02/08/2011 10:51:50 AM,02/08/2011 10:52:09 AM,02/08/2011 10:52:46 AM,02/08/2011 10:59:44 AM,02/08/2011 11:16:17 AM,02/08/2011 11:29:15 AM,Code 2 Transport,02/08/2011 11:49:42 AM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7097220017383, -122.412881344927)",110390127-57 -112770252,E01,11091749,Medical Incident,10/04/2011,10/04/2011,10/04/2011 02:57:12 PM,10/04/2011 02:58:58 PM,10/04/2011 02:59:21 PM,10/04/2011 02:59:34 PM,10/04/2011 02:59:36 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 03:08:29 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",112770252-E01 -131590168,68,13054008,Medical Incident,06/08/2013,06/08/2013,06/08/2013 12:11:06 PM,06/08/2013 12:12:35 PM,06/08/2013 12:14:09 PM,06/08/2013 12:14:32 PM,06/08/2013 12:32:34 PM,06/08/2013 12:52:03 PM,06/08/2013 01:01:18 PM,Code 2 Transport,06/08/2013 01:44:05 PM,1900 Block of VALLEJO ST,SF,94123,B04,38,3334,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7960124394066, -122.429371287324)",131590168-68 -110480067,96,11015781,Traffic Collision,02/17/2011,02/17/2011,02/17/2011 08:17:54 AM,02/17/2011 08:17:54 AM,02/17/2011 08:18:12 AM,02/17/2011 08:18:19 AM,02/17/2011 08:23:00 AM,02/17/2011 08:50:12 AM,02/17/2011 09:23:23 AM,Code 2 Transport,02/17/2011 09:50:55 AM,JORDAN AV/EUCLID AV,SF,94118,B07,10,4441,3,3,3,true,,1,MEDIC,2,7,2,Presidio Heights,"(37.7839289117597, -122.456813219953)",110480067-96 -112790048,86,11092241,Medical Incident,10/06/2011,10/05/2011,10/06/2011 05:00:45 AM,10/06/2011 05:01:35 AM,10/06/2011 05:02:03 AM,04/25/2016 02:02:18 PM,10/06/2011 05:10:00 AM,10/06/2011 05:28:33 AM,10/06/2011 05:42:07 AM,Code 2 Transport,10/06/2011 06:27:07 AM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,3,3,true,,1,MEDIC,2,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",112790048-86 -160830707,75,16032856,Medical Incident,03/23/2016,03/22/2016,03/23/2016 07:57:55 AM,03/23/2016 08:00:24 AM,03/23/2016 08:00:52 AM,03/23/2016 08:01:04 AM,03/23/2016 08:15:06 AM,03/23/2016 08:19:11 AM,03/23/2016 08:38:04 AM,Code 2 Transport,03/23/2016 09:29:11 AM,900 Block of BRYANT ST,San Francisco,94103,B03,8,2311,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7740297538027, -122.404968319078)",160830707-75 -110580133,KM12,11019047,Medical Incident,02/27/2011,02/27/2011,02/27/2011 09:57:35 AM,02/27/2011 09:58:30 AM,02/27/2011 10:00:16 AM,02/27/2011 10:01:25 AM,02/27/2011 10:11:43 AM,02/27/2011 10:20:30 AM,02/27/2011 10:27:33 AM,Code 2 Transport,02/27/2011 10:46:46 AM,2100 Block of POST ST,SF,94115,B04,10,4131,1,1,2,false,,1,PRIVATE,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",110580133-KM12 -132330263,83,13078733,Medical Incident,08/21/2013,08/21/2013,08/21/2013 04:43:58 PM,08/21/2013 04:46:28 PM,08/21/2013 04:47:46 PM,08/21/2013 04:47:58 PM,08/21/2013 04:58:53 PM,08/21/2013 05:03:49 PM,08/21/2013 05:23:27 PM,Code 3 Transport,08/21/2013 06:03:45 PM,3100 Block of 16TH ST,SF,94103,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649429344541, -122.422375182461)",132330263-83 -112280352,RS1,11075508,Structure Fire,08/16/2011,08/16/2011,08/16/2011 09:47:36 PM,08/16/2011 09:48:34 PM,08/16/2011 09:48:48 PM,08/16/2011 09:50:15 PM,08/16/2011 09:55:39 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Other,08/16/2011 09:58:21 PM,0 Block of FALLON PL,SF,94133,B01,2,1442,3,3,3,false,,1,RESCUE SQUAD,6,1,3,Nob Hill,"(37.7977464099697, -122.413400804085)",112280352-RS1 -160473019,87,16019049,Medical Incident,02/16/2016,02/16/2016,02/16/2016 06:12:05 PM,02/16/2016 06:14:24 PM,02/16/2016 06:16:40 PM,02/16/2016 06:16:47 PM,02/16/2016 06:26:10 PM,02/16/2016 06:52:43 PM,02/16/2016 07:19:54 PM,Code 2 Transport,02/16/2016 08:03:55 PM,0 Block of SAN BENITO WAY,San Francisco,94127,B08,39,8563,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7360115927989, -122.467293908388)",160473019-87 -130260050,E02,13008873,Medical Incident,01/26/2013,01/25/2013,01/26/2013 03:28:07 AM,01/26/2013 03:29:03 AM,01/26/2013 03:29:58 AM,01/26/2013 03:31:33 AM,01/26/2013 03:33:32 AM,01/26/2013 03:53:12 AM,04/25/2016 01:54:37 PM,Other,01/26/2013 04:00:46 AM,900 Block of POWELL ST,SF,94108,B01,2,1355,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.793420180327, -122.409388683)",130260050-E02 -123100134,RC2,12103076,Medical Incident,11/05/2012,11/05/2012,11/05/2012 10:24:19 AM,11/05/2012 10:25:12 AM,11/05/2012 10:25:35 AM,11/05/2012 10:28:47 AM,11/05/2012 10:37:28 AM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 10:39:49 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",123100134-RC2 -112930116,E38,11097149,Medical Incident,10/20/2011,10/20/2011,10/20/2011 10:48:44 AM,10/20/2011 10:48:47 AM,10/20/2011 10:49:10 AM,10/20/2011 10:50:46 AM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 10:52:12 AM,1700 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,false,,1,ENGINE,3,4,2,Pacific Heights,"(37.7906121709132, -122.424136550151)",112930116-E38 -121260172,E32,12041866,Medical Incident,05/05/2012,05/05/2012,05/05/2012 10:52:53 AM,05/05/2012 10:53:12 AM,05/05/2012 10:53:35 AM,05/05/2012 10:55:01 AM,05/05/2012 10:55:26 AM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 10:55:29 AM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",121260172-E32 -123180009,RC3,12105629,Medical Incident,11/13/2012,11/12/2012,11/13/2012 01:03:17 AM,11/13/2012 01:03:17 AM,11/13/2012 01:03:17 AM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,04/25/2016 01:55:49 PM,Other,11/13/2012 01:44:50 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",123180009-RC3 -112190195,E29,11072421,Medical Incident,08/07/2011,08/07/2011,08/07/2011 02:31:06 PM,08/07/2011 02:31:58 PM,08/07/2011 02:32:29 PM,08/07/2011 02:33:45 PM,08/07/2011 02:36:08 PM,04/25/2016 02:03:17 PM,04/25/2016 02:03:17 PM,Other,08/07/2011 02:41:34 PM,WISCONSIN ST/17TH ST,SF,94107,B03,29,2425,3,3,3,true,,1,ENGINE,1,3,10,Mission Bay,"(37.7649560944704, -122.399662289083)",112190195-E29 -121820364,85,12060764,Medical Incident,06/30/2012,06/30/2012,06/30/2012 09:54:02 PM,06/30/2012 09:54:43 PM,06/30/2012 09:56:03 PM,06/30/2012 09:56:15 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,06/30/2012 10:04:26 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",121820364-85 -131500352,E02,13050965,Alarms,05/30/2013,05/30/2013,05/30/2013 11:37:16 PM,05/30/2013 11:38:21 PM,05/30/2013 11:38:32 PM,05/30/2013 11:38:53 PM,05/30/2013 11:40:28 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/30/2013 11:44:27 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.7968082637513, -122.408035995184)",131500352-E02 -121970337,64,12065651,Medical Incident,07/15/2012,07/15/2012,07/15/2012 11:01:20 PM,07/15/2012 11:04:18 PM,07/15/2012 11:05:04 PM,07/15/2012 11:05:32 PM,07/15/2012 11:11:08 PM,07/15/2012 11:28:51 PM,07/15/2012 11:33:47 PM,Code 2 Transport,07/15/2012 11:44:46 PM,3100 Block of 24TH ST,SF,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7524609846175, -122.415724213925)",121970337-64 -111890346,89,11062626,Medical Incident,07/08/2011,07/08/2011,07/08/2011 07:54:31 PM,07/08/2011 07:56:28 PM,07/08/2011 07:56:40 PM,07/08/2011 07:56:50 PM,07/08/2011 08:01:38 PM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Patient Declined Transport,07/08/2011 08:25:48 PM,0 Block of YERBA BUENA LN,SF,94103,B03,1,2212,3,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7857639967999, -122.404208166751)",111890346-89 -140140201,E03,14004809,Medical Incident,01/14/2014,01/14/2014,01/14/2014 01:52:31 PM,01/14/2014 01:54:21 PM,01/14/2014 01:55:51 PM,01/14/2014 01:55:51 PM,01/14/2014 01:57:54 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/14/2014 02:10:29 PM,100 Block of TURK ST,SF,94102,B03,1,1456,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",140140201-E03 -110980438,94,11032711,Medical Incident,04/08/2011,04/08/2011,04/08/2011 11:49:31 PM,04/08/2011 11:52:30 PM,04/08/2011 11:54:39 PM,04/08/2011 11:55:12 PM,04/09/2011 12:10:27 AM,04/09/2011 12:22:19 AM,04/09/2011 12:44:40 AM,Code 2 Transport,04/09/2011 12:55:14 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,1,1,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110980438-94 -111390235,66,11046252,Medical Incident,05/19/2011,05/19/2011,05/19/2011 03:08:25 PM,05/19/2011 03:13:04 PM,05/19/2011 03:13:44 PM,05/19/2011 03:14:43 PM,05/19/2011 03:24:28 PM,04/25/2016 02:04:33 PM,04/25/2016 02:04:33 PM,Unable to Locate,05/19/2011 03:24:40 PM,EVANS AV/MIDDLE POINT RD,SF,94124,B10,25,6553,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7376802948169, -122.379109648458)",111390235-66 -160361201,55,16014179,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:41:48 AM,02/05/2016 09:42:03 AM,02/05/2016 09:42:33 AM,02/05/2016 09:42:44 AM,02/05/2016 09:47:16 AM,02/05/2016 10:05:20 AM,02/05/2016 10:36:09 AM,Code 2 Transport,02/05/2016 11:13:29 AM,700 Block of 27TH AVE,San Francisco,94121,B07,14,7223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.775274399629, -122.486466775057)",160361201-55 -140140276,RC3,14004873,Medical Incident,01/14/2014,01/14/2014,01/14/2014 04:52:14 PM,01/14/2014 04:54:46 PM,01/14/2014 04:54:55 PM,01/14/2014 04:56:35 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,04/25/2016 01:48:43 PM,Other,01/14/2014 05:01:08 PM,2400 Block of ULLOA ST,SF,94116,B08,40,7466,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7409311233243, -122.482529770845)",140140276-RC3 -110200137,T12,11006557,Structure Fire,01/20/2011,01/20/2011,01/20/2011 10:23:31 AM,01/20/2011 10:23:42 AM,01/20/2011 10:25:20 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Other,01/20/2011 10:26:57 AM,3900 Block of SACRAMENTO ST,SF,94118,B07,10,444,3,3,3,true,,1,TRUCK,3,7,2,Presidio Heights,"(37.7868299907171, -122.458076168664)",110200137-T12 -120230255,KM15,12007854,Medical Incident,01/23/2012,01/23/2012,01/23/2012 04:17:34 PM,01/23/2012 04:19:36 PM,01/23/2012 04:19:45 PM,01/23/2012 04:21:50 PM,01/23/2012 04:26:38 PM,01/23/2012 04:42:09 PM,01/23/2012 04:49:52 PM,Code 2 Transport,01/23/2012 05:18:46 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7828124037537, -122.432679112133)",120230255-KM15 -113210357,E07,11106763,Structure Fire,11/17/2011,11/17/2011,11/17/2011 08:33:11 PM,11/17/2011 08:33:12 PM,11/17/2011 08:33:33 PM,11/17/2011 08:34:46 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/17/2011 08:37:07 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7618358554116, -122.41935926846)",113210357-E07 -122420171,89,12080033,Medical Incident,08/29/2012,08/29/2012,08/29/2012 12:16:16 PM,08/29/2012 12:17:26 PM,08/29/2012 12:18:22 PM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,08/29/2012 12:45:21 PM,08/29/2012 01:02:24 PM,Code 2 Transport,08/29/2012 01:59:10 PM,1100 Block of MASON ST,SF,94108,B01,2,1415,3,B,2,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7938598134126, -122.411160699762)",122420171-89 -122750056,77,12090634,Medical Incident,10/01/2012,09/30/2012,10/01/2012 05:44:46 AM,10/01/2012 05:46:32 AM,10/01/2012 05:47:06 AM,10/01/2012 05:47:53 AM,10/01/2012 06:02:35 AM,10/01/2012 06:14:40 AM,10/01/2012 06:39:05 AM,Code 2 Transport,10/01/2012 07:13:07 AM,300 Block of MAIN ST,SF,94105,B03,35,2117,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",122750056-77 -160322430,85,16012652,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:10:38 PM,02/01/2016 04:13:33 PM,02/01/2016 04:28:00 PM,02/01/2016 04:28:01 PM,02/01/2016 04:36:34 PM,02/01/2016 04:52:35 PM,02/01/2016 05:19:22 PM,Code 2 Transport,02/01/2016 05:34:21 PM,GEARY BL/FILLMORE ST,San Francisco,94115,B04,5,3541,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",160322430-85 -122090166,T03,12069430,Medical Incident,07/27/2012,07/27/2012,07/27/2012 01:11:53 PM,07/27/2012 01:12:42 PM,07/27/2012 01:14:04 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 01:15:05 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,3,2,2,false,Non Life-threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",122090166-T03 -160531323,82,16021171,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:26:12 AM,02/22/2016 11:30:56 AM,02/22/2016 11:31:26 AM,02/22/2016 11:31:44 AM,02/22/2016 11:40:47 AM,02/22/2016 12:09:18 PM,02/22/2016 12:19:49 PM,Code 2 Transport,02/22/2016 12:55:59 PM,200 Block of DIVISION ST,San Francisco,94103,B02,29,2346,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.769397940727, -122.406548951581)",160531323-82 -140100338,54,14003622,Medical Incident,01/10/2014,01/10/2014,01/10/2014 06:44:27 PM,01/10/2014 06:46:28 PM,01/10/2014 06:52:02 PM,01/10/2014 06:52:25 PM,01/10/2014 07:22:24 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Gone on Arrival,01/10/2014 07:24:32 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",140100338-54 -131710039,T17,13057939,Citizen Assist / Service Call,06/20/2013,06/19/2013,06/20/2013 04:14:03 AM,06/20/2013 04:17:06 AM,06/20/2013 04:17:22 AM,06/20/2013 04:20:01 AM,06/20/2013 04:22:59 AM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Fire,06/20/2013 04:33:10 AM,5600 Block of 3RD ST,SF,94124,B10,17,6537,2,2,2,false,Alarm,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7266474787397, -122.39386696205)",131710039-T17 -120990314,81,12032929,Confined Space / Structure Collapse,04/08/2012,04/08/2012,04/08/2012 09:20:19 PM,04/08/2012 09:21:12 PM,04/08/2012 09:22:30 PM,04/08/2012 09:23:23 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 09:23:27 PM,FREMONT ST/HOWARD ST,SF,94105,B03,35,2124,3,3,3,true,Fire,1,MEDIC,8,3,6,Financial District/South Beach,"(37.7892346992583, -122.395150932922)",120990314-81 -133220266,B04,13109414,Alarms,11/18/2013,11/18/2013,11/18/2013 06:27:52 PM,11/18/2013 06:30:05 PM,11/18/2013 06:30:20 PM,11/18/2013 06:31:02 PM,11/18/2013 06:37:01 PM,04/25/2016 01:49:42 PM,04/25/2016 01:49:42 PM,Other,11/18/2013 06:43:17 PM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7790955649905, -122.436073673388)",133220266-B04 -102260157,AM06,10071128,Medical Incident,08/14/2010,08/14/2010,08/14/2010 12:40:09 PM,08/14/2010 12:41:01 PM,08/14/2010 12:41:16 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 12:42:01 PM,1200 Block of SHAFTER AVE,SF,94124,B10,17,6634,3,3,3,false,,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",102260157-AM06 -120520158,E01,12017154,Medical Incident,02/21/2012,02/21/2012,02/21/2012 11:45:12 AM,02/21/2012 11:46:36 AM,02/21/2012 11:46:52 AM,04/25/2016 02:00:02 PM,02/21/2012 11:47:06 AM,04/25/2016 02:00:02 PM,04/25/2016 02:00:02 PM,No Merit,02/21/2012 12:00:13 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",120520158-E01 -160840441,81,16033246,Medical Incident,03/24/2016,03/23/2016,03/24/2016 05:41:02 AM,03/24/2016 05:41:02 AM,03/24/2016 05:41:11 AM,03/24/2016 05:42:37 AM,03/24/2016 05:50:59 AM,03/24/2016 06:05:01 AM,03/24/2016 06:28:59 AM,Code 2 Transport,03/24/2016 07:27:19 AM,ARMSTRONG AV/KEITH ST,San Francisco,94124,B10,17,6652,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7262224224488, -122.392235495709)",160840441-81 -131210062,E15,13040551,Structure Fire,05/01/2013,04/30/2013,05/01/2013 04:03:51 AM,05/01/2013 04:07:07 AM,05/01/2013 04:07:36 AM,05/01/2013 04:09:01 AM,05/01/2013 04:13:23 AM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,05/01/2013 04:15:40 AM,400 Block of WINSTON DR,SF,94132,B08,19,8854,3,3,3,true,Alarm,1,ENGINE,7,8,7,Lakeshore,"(37.7276780963446, -122.481160230776)",131210062-E15 -113140190,E11,11104335,Alarms,11/10/2011,11/10/2011,11/10/2011 01:33:47 PM,11/10/2011 01:34:26 PM,11/10/2011 01:34:56 PM,11/10/2011 01:36:26 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 01:38:00 PM,1500 Block of VALENCIA ST,SF,94110,B06,11,5535,3,3,3,true,,1,ENGINE,3,6,8,Mission,"(37.7485117389211, -122.420385246318)",113140190-E11 -140220364,RC1,14007677,Medical Incident,01/22/2014,01/22/2014,01/22/2014 09:07:12 PM,01/22/2014 09:08:30 PM,01/22/2014 09:20:26 PM,01/22/2014 09:20:26 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,04/25/2016 01:48:35 PM,Other,01/22/2014 09:23:36 PM,800 Block of HYDE ST,SF,94109,B04,3,1557,,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,4,3,Nob Hill,"(37.7886527895166, -122.416853689502)",140220364-RC1 -160851507,54,16033741,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:31:25 AM,03/25/2016 11:32:56 AM,03/25/2016 11:33:36 AM,03/25/2016 11:33:45 AM,03/25/2016 11:42:08 AM,03/25/2016 11:53:09 AM,03/25/2016 12:05:37 PM,Code 2 Transport,03/25/2016 12:47:29 PM,1500 Block of JACKSON ST,San Francisco,94109,B01,41,1633,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7941946454164, -122.420567599988)",160851507-54 -140200154,E38,14006834,Medical Incident,01/20/2014,01/20/2014,01/20/2014 11:50:38 AM,01/20/2014 11:52:13 AM,01/20/2014 11:52:17 AM,01/20/2014 11:53:45 AM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/20/2014 11:54:04 AM,1100 Block of TURK ST,SF,94115,B02,5,3426,,3,3,false,Non Life-threatening,1,ENGINE,4,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",140200154-E38 -111370364,RC2,11045728,Alarms,05/17/2011,05/17/2011,05/17/2011 11:07:32 PM,05/17/2011 11:10:59 PM,05/17/2011 11:11:15 PM,05/17/2011 11:16:18 PM,05/17/2011 11:20:46 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/17/2011 11:32:18 PM,1200 Block of 3RD AVE,SF,94122,B05,12,7324,3,3,3,true,,1,RESCUE CAPTAIN,5,5,5,Inner Sunset,"(37.7647908455357, -122.459851190861)",111370364-RC2 -160774347,KM07,16030828,Medical Incident,03/17/2016,03/17/2016,03/17/2016 11:10:43 PM,03/17/2016 11:11:42 PM,03/17/2016 11:12:55 PM,03/17/2016 11:13:33 PM,03/17/2016 11:31:06 PM,03/17/2016 11:31:13 PM,03/17/2016 11:46:25 PM,Code 2 Transport,03/18/2016 12:11:47 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160774347-KM07 -112360080,B10,11077820,Alarms,08/24/2011,08/24/2011,08/24/2011 08:40:46 AM,08/24/2011 08:41:47 AM,08/24/2011 08:42:18 AM,08/24/2011 08:43:42 AM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 08:49:25 AM,100 Block of KISKA RD,SF,94124,B10,17,6625,3,3,3,false,,1,CHIEF,2,10,10,Bayview Hunters Point,"(37.7300498963351, -122.376015807467)",112360080-B10 -133190087,E03,13108317,Medical Incident,11/15/2013,11/15/2013,11/15/2013 08:27:23 AM,11/15/2013 08:29:49 AM,11/15/2013 08:30:11 AM,11/15/2013 08:31:18 AM,11/15/2013 08:35:26 AM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/15/2013 08:39:18 AM,200 Block of JONES ST,SF,94102,B03,1,1456,2,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",133190087-E03 -112600371,86,11085911,Medical Incident,09/17/2011,09/17/2011,09/17/2011 07:38:05 PM,09/17/2011 07:38:57 PM,09/17/2011 07:39:27 PM,09/17/2011 07:41:24 PM,09/17/2011 07:42:46 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 07:52:17 PM,CONNECTICUT ST/25TH ST,SF,94107,B10,37,2615,3,E,3,true,,1,MEDIC,1,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",112600371-86 -112630381,54,11086992,Medical Incident,09/20/2011,09/20/2011,09/20/2011 07:59:40 PM,09/20/2011 08:00:15 PM,09/20/2011 08:02:38 PM,09/20/2011 08:07:46 PM,09/20/2011 08:12:55 PM,09/20/2011 08:27:58 PM,09/20/2011 08:48:10 PM,Code 2 Transport,09/20/2011 09:33:23 PM,500 Block of RANDOLPH ST,SF,94132,B09,33,8416,3,3,3,true,,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7143246443256, -122.46754589794)",112630381-54 -160633363,75,16025228,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:42:05 PM,03/03/2016 07:43:32 PM,03/03/2016 07:47:02 PM,03/03/2016 07:47:19 PM,03/03/2016 08:10:44 PM,03/03/2016 08:12:24 PM,03/03/2016 08:35:50 PM,Code 2 Transport,03/03/2016 09:23:02 PM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7514352757454, -122.41843553803)",160633363-75 -140560154,T17,14018864,Alarms,02/25/2014,02/25/2014,02/25/2014 10:49:33 AM,02/25/2014 10:51:10 AM,02/25/2014 10:51:23 AM,02/25/2014 10:53:08 AM,02/25/2014 10:58:18 AM,04/25/2016 01:48:02 PM,04/25/2016 01:48:02 PM,Fire,02/25/2014 11:09:34 AM,200 Block of RAYMOND AVE,SF,94134,B09,44,6264,3,3,3,true,Alarm,1,TRUCK,1,9,10,Visitacion Valley,"(37.7134600141273, -122.408147269548)",140560154-T17 -92780063,B01,9083149,HazMat,10/05/2009,10/04/2009,10/05/2009 07:53:10 AM,10/05/2009 07:55:15 AM,10/05/2009 07:56:03 AM,10/05/2009 07:58:23 AM,10/05/2009 07:59:35 AM,04/25/2016 03:26:41 PM,04/25/2016 03:26:41 PM,Other,10/05/2009 08:24:32 AM,800 Block of BROADWAY,SF,94133,B01,2,1353,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7973761566581, -122.411122316679)",092780063-B01 -122470112,E03,12081653,Structure Fire,09/03/2012,09/03/2012,09/03/2012 11:03:37 AM,09/03/2012 11:06:52 AM,09/03/2012 11:07:25 AM,09/03/2012 11:08:05 AM,09/03/2012 11:12:02 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 11:13:06 AM,1300 Block of MARKET ST,SF,94102,B02,36,2338,3,3,3,true,Fire,1,ENGINE,6,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",122470112-E03 -123660171,E01,12122433,Medical Incident,12/31/2012,12/31/2012,12/31/2012 12:52:22 PM,12/31/2012 12:53:18 PM,12/31/2012 12:54:03 PM,12/31/2012 12:54:52 PM,12/31/2012 12:57:03 PM,04/25/2016 01:55:02 PM,04/25/2016 01:55:02 PM,Other,12/31/2012 12:58:06 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",123660171-E01 -102460316,71,10077850,Medical Incident,09/03/2010,09/03/2010,09/03/2010 06:32:12 PM,09/03/2010 06:32:29 PM,09/03/2010 06:41:34 PM,09/03/2010 06:42:06 PM,09/03/2010 06:55:40 PM,09/03/2010 07:16:48 PM,09/03/2010 07:39:49 PM,Code 2 Transport,09/03/2010 08:13:50 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",102460316-71 -160112400,81,16004470,Medical Incident,01/11/2016,01/11/2016,01/11/2016 04:23:13 PM,01/11/2016 04:23:13 PM,01/11/2016 04:23:43 PM,01/11/2016 04:23:50 PM,01/11/2016 04:46:12 PM,01/11/2016 04:55:42 PM,01/11/2016 05:23:23 PM,Code 2 Transport,01/11/2016 05:59:30 PM,BAY ST/TAYLOR ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8054171711156, -122.415241486546)",160112400-81 -113340021,94,11110486,Medical Incident,11/30/2011,11/29/2011,11/30/2011 01:35:29 AM,11/30/2011 01:37:08 AM,11/30/2011 01:38:25 AM,11/30/2011 01:38:35 AM,11/30/2011 01:57:32 AM,11/30/2011 02:13:11 AM,11/30/2011 02:34:12 AM,Code 2 Transport,11/30/2011 02:54:19 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,2,2,2,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",113340021-94 -123140051,79,12104380,Medical Incident,11/09/2012,11/08/2012,11/09/2012 02:53:01 AM,11/09/2012 02:54:09 AM,11/09/2012 02:54:58 AM,11/09/2012 02:55:05 AM,11/09/2012 02:58:03 AM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Fire,11/09/2012 03:19:45 AM,TAYLOR ST/UNION ST,SF,94133,B01,28,1422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7998242757284, -122.414119718304)",123140051-79 -160202262,77,16008055,Medical Incident,01/20/2016,01/20/2016,01/20/2016 02:53:15 PM,01/20/2016 02:55:21 PM,01/20/2016 02:57:58 PM,01/20/2016 02:58:10 PM,01/20/2016 03:10:39 PM,01/20/2016 03:34:49 PM,01/20/2016 03:34:50 PM,Code 3 Transport,01/20/2016 04:45:42 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160202262-77 -120510086,E13,12016790,Medical Incident,02/20/2012,02/20/2012,02/20/2012 08:16:21 AM,02/20/2012 08:17:02 AM,02/20/2012 08:17:14 AM,02/20/2012 08:18:12 AM,02/20/2012 08:19:24 AM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 08:31:10 AM,400 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,1,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928485474093, -122.402351287011)",120510086-E13 -123050484,79,12101444,Medical Incident,10/31/2012,10/31/2012,10/31/2012 09:34:01 PM,10/31/2012 09:35:47 PM,10/31/2012 09:36:40 PM,10/31/2012 09:36:56 PM,10/31/2012 09:40:14 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 09:45:48 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123050484-79 -111920070,94,11063303,Medical Incident,07/11/2011,07/11/2011,07/11/2011 08:06:10 AM,07/11/2011 08:07:48 AM,07/11/2011 08:08:12 AM,07/11/2011 08:08:56 AM,07/11/2011 08:26:49 AM,07/11/2011 08:39:17 AM,07/11/2011 09:04:12 AM,Code 2 Transport,07/11/2011 09:25:24 AM,100 Block of MASON ST,SF,94102,B03,1,1366,1,1,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",111920070-94 -133130188,E03,13106371,Medical Incident,11/09/2013,11/09/2013,11/09/2013 11:49:42 AM,11/09/2013 11:50:16 AM,11/09/2013 11:50:26 AM,11/09/2013 11:50:40 AM,11/09/2013 11:54:04 AM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 12:05:25 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",133130188-E03 -122150359,E36,12071516,Structure Fire,08/02/2012,08/02/2012,08/02/2012 11:52:01 PM,08/02/2012 11:52:02 PM,08/02/2012 11:52:14 PM,04/25/2016 01:57:25 PM,08/02/2012 11:52:42 PM,04/25/2016 01:57:25 PM,04/25/2016 01:57:25 PM,Other,08/02/2012 11:53:26 PM,FRANKLIN ST/FELL ST,SF,94102,B02,36,3213,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7761587640112, -122.421148424067)",122150359-E36 -111500082,E05,11049622,Medical Incident,05/30/2011,05/30/2011,05/30/2011 08:15:03 AM,05/30/2011 08:15:37 AM,05/30/2011 08:16:02 AM,05/30/2011 08:16:48 AM,05/30/2011 08:18:45 AM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 08:33:10 AM,1500 Block of GOLDEN GATE AVE,SF,94115,B05,5,4134,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7789870702557, -122.436051970399)",111500082-E05 -130150378,E18,13005270,Alarms,01/15/2013,01/15/2013,01/15/2013 09:36:28 PM,01/15/2013 09:36:28 PM,01/15/2013 09:37:14 PM,01/15/2013 09:38:09 PM,01/15/2013 09:40:53 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Other,01/15/2013 09:57:48 PM,39TH AV/ORTEGA ST,SF,94116,B08,18,7623,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7514263278688, -122.497770413464)",130150378-E18 -130710213,KM02,13023716,Medical Incident,03/12/2013,03/12/2013,03/12/2013 02:21:32 PM,03/12/2013 02:23:19 PM,03/12/2013 02:23:35 PM,03/12/2013 02:24:14 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 02:25:37 PM,1900 Block of LOMBARD ST,SF,94123,B04,16,3461,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,4,2,Marina,"(37.8002723548355, -122.433605968659)",130710213-KM02 -160373542,79,16014900,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:14:56 PM,02/06/2016 08:14:56 PM,02/06/2016 08:19:27 PM,02/06/2016 08:19:36 PM,02/06/2016 08:44:31 PM,02/06/2016 09:06:10 PM,02/06/2016 09:23:43 PM,Code 2 Transport,02/06/2016 09:49:15 PM,1700 Block of LA SALLE AVE,San Francisco,94124,B10,25,6467,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7380275003224, -122.391497205515)",160373542-79 -110580315,78,11019205,Medical Incident,02/27/2011,02/27/2011,02/27/2011 08:28:39 PM,02/27/2011 08:29:42 PM,02/27/2011 08:35:47 PM,02/27/2011 08:35:54 PM,02/27/2011 08:48:50 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Patient Declined Transport,02/27/2011 09:12:45 PM,200 Block of THRIFT ST,SF,94112,B09,33,8415,2,2,2,true,,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7173776032909, -122.461431734706)",110580315-78 -122580307,E22,12085394,Medical Incident,09/14/2012,09/14/2012,09/14/2012 07:50:26 PM,09/14/2012 07:50:57 PM,09/14/2012 07:51:18 PM,09/14/2012 07:52:03 PM,09/14/2012 07:55:11 PM,04/25/2016 01:56:46 PM,04/25/2016 01:56:46 PM,Other,09/14/2012 07:59:32 PM,1800 Block of 9TH AVE,SF,94122,B08,22,7336,E,E,3,false,Potentially Life-Threatening,1,ENGINE,2,8,7,Inner Sunset,"(37.7537831979209, -122.465528559203)",122580307-E22 -112680081,AM16,11088491,Medical Incident,09/25/2011,09/24/2011,09/25/2011 06:32:29 AM,09/25/2011 06:34:12 AM,09/25/2011 06:35:08 AM,09/25/2011 06:35:44 AM,09/25/2011 06:44:31 AM,09/25/2011 07:01:26 AM,09/25/2011 07:05:48 AM,Code 2 Transport,09/25/2011 07:52:25 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",112680081-AM16 -160353229,KM05,16013965,Medical Incident,02/04/2016,02/04/2016,02/04/2016 07:06:32 PM,02/04/2016 07:08:36 PM,02/04/2016 07:09:50 PM,02/04/2016 07:10:36 PM,02/04/2016 07:16:55 PM,02/04/2016 07:34:04 PM,02/04/2016 07:42:17 PM,Code 2 Transport,02/04/2016 07:55:21 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160353229-KM05 -120400119,E03,12013280,Medical Incident,02/09/2012,02/09/2012,02/09/2012 10:48:52 AM,02/09/2012 10:49:36 AM,02/09/2012 10:49:45 AM,02/09/2012 10:50:00 AM,02/09/2012 10:52:43 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 10:59:31 AM,LARKIN ST/MARKET ST,SF,94103,B02,1,2317,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",120400119-E03 -160252864,73,16010035,Medical Incident,01/25/2016,01/25/2016,01/25/2016 05:43:49 PM,01/25/2016 05:43:49 PM,01/25/2016 05:45:52 PM,01/25/2016 05:48:10 PM,01/25/2016 05:51:33 PM,01/25/2016 05:56:54 PM,01/25/2016 06:12:49 PM,Code 2 Transport,01/25/2016 07:02:08 PM,300 Block of POST ST,San Francisco,94108,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7884505799048, -122.407597246833)",160252864-73 -110590082,T06,11019311,Alarms,02/28/2011,02/28/2011,02/28/2011 09:23:02 AM,02/28/2011 09:24:20 AM,02/28/2011 09:25:07 AM,02/28/2011 09:26:19 AM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Other,02/28/2011 09:32:12 AM,1000 Block of PAGE ST,SF,94117,B05,21,4144,3,3,3,false,,1,TRUCK,3,5,5,Haight Ashbury,"(37.7720428462416, -122.438055986147)",110590082-T06 -121430164,E41,12047518,Medical Incident,05/22/2012,05/22/2012,05/22/2012 12:07:19 PM,05/22/2012 12:09:18 PM,05/22/2012 12:09:42 PM,05/22/2012 12:11:16 PM,05/22/2012 12:13:04 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 12:24:58 PM,1600 Block of SACRAMENTO ST,SF,94109,B04,41,3123,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7915456904816, -122.420036604993)",121430164-E41 -160233149,61,16009294,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:31:29 PM,01/23/2016 07:34:19 PM,01/23/2016 07:34:41 PM,01/23/2016 07:37:58 PM,01/23/2016 07:51:10 PM,01/23/2016 08:16:09 PM,01/23/2016 08:15:23 PM,Code 3 Transport,01/23/2016 09:04:43 PM,300 Block of SUTTER ST,San Francisco,94108,B01,1,1324,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7895868780225, -122.406188769255)",160233149-61 -160911781,KM01,16036074,Medical Incident,03/31/2016,03/31/2016,03/31/2016 01:16:23 PM,03/31/2016 01:17:35 PM,03/31/2016 01:17:48 PM,03/31/2016 01:18:24 PM,03/31/2016 01:21:49 PM,03/31/2016 01:45:34 PM,03/31/2016 02:05:52 PM,Code 3 Transport,03/31/2016 02:16:54 PM,100 Block of BERTITA ST,San Francisco,94112,B09,15,8331,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7187468512865, -122.440406418549)",160911781-KM01 -160492996,KM01,16019828,Medical Incident,02/18/2016,02/18/2016,02/18/2016 05:59:57 PM,02/18/2016 05:59:57 PM,02/18/2016 06:00:14 PM,02/18/2016 06:00:35 PM,02/18/2016 06:19:05 PM,02/18/2016 06:37:26 PM,02/18/2016 06:49:14 PM,Code 2 Transport,02/18/2016 07:40:54 PM,0 Block of STOCKTON ST,San Francisco,94102,B03,1,1322,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7860199001268, -122.406349577387)",160492996-KM01 -160723225,AM24,16028778,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:05:32 PM,03/12/2016 09:06:37 PM,03/12/2016 09:07:26 PM,03/12/2016 09:08:10 PM,03/12/2016 09:34:55 PM,03/12/2016 09:34:56 PM,03/12/2016 09:56:16 PM,Code 2 Transport,03/12/2016 10:27:41 PM,MARKET ST/FRONT ST,San Francisco,94105,B01,13,1136,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7917160576835, -122.398264448196)",160723225-AM24 -122820058,E36,12093246,Medical Incident,10/08/2012,10/07/2012,10/08/2012 06:47:50 AM,10/08/2012 06:48:53 AM,10/08/2012 06:49:02 AM,10/08/2012 06:51:48 AM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,04/25/2016 01:56:24 PM,Other,10/08/2012 06:56:02 AM,7TH ST/STEVENSON ST,SF,94103,B02,36,2316,3,2,2,true,Non Life-threatening,1,ENGINE,2,2,6,South of Market,"(37.7800058680664, -122.411933410089)",122820058-E36 -112950260,T17,11097910,Structure Fire,10/22/2011,10/22/2011,10/22/2011 05:31:57 PM,10/22/2011 05:31:57 PM,10/22/2011 05:32:23 PM,10/22/2011 05:33:17 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 05:36:08 PM,HUDSON AV/ARDATH CT,SF,94124,B10,17,6624,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7346032067084, -122.382962001592)",112950260-T17 -103460041,67,10110829,Medical Incident,12/12/2010,12/11/2010,12/12/2010 02:18:45 AM,12/12/2010 02:19:32 AM,12/12/2010 02:19:57 AM,12/12/2010 02:20:18 AM,12/12/2010 02:29:56 AM,12/12/2010 02:30:24 AM,12/12/2010 02:42:50 AM,Code 3 Transport,12/12/2010 03:13:48 AM,MISSION ST/SANTA ROSA AV,SF,94112,B09,43,6116,3,3,3,true,,1,MEDIC,5,9,11,Outer Mission,"(37.7257617913569, -122.433982357283)",103460041-67 -123430223,93,12114647,Medical Incident,12/08/2012,12/08/2012,12/08/2012 02:17:04 PM,12/08/2012 02:17:59 PM,12/08/2012 02:18:44 PM,12/08/2012 02:19:07 PM,12/08/2012 02:24:23 PM,12/08/2012 02:45:57 PM,12/08/2012 03:04:01 PM,Code 2 Transport,12/08/2012 03:44:05 PM,0 Block of MATTHEW CT,SF,94124,B10,17,6641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7312962281442, -122.380133847121)",123430223-93 -113380108,RC1,11111948,Structure Fire,12/04/2011,12/04/2011,12/04/2011 08:01:13 AM,12/04/2011 08:02:33 AM,12/04/2011 08:02:48 AM,12/04/2011 08:10:56 AM,12/04/2011 08:14:30 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/04/2011 08:45:01 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,RESCUE CAPTAIN,10,2,6,Tenderloin,"(37.78373004094, -122.413753670487)",113380108-RC1 -160440340,85,16017559,Medical Incident,02/13/2016,02/12/2016,02/13/2016 02:24:36 AM,02/13/2016 02:24:36 AM,02/13/2016 02:32:05 AM,02/13/2016 02:32:26 AM,02/13/2016 02:42:57 AM,02/13/2016 02:56:50 AM,02/13/2016 03:03:28 AM,Code 2 Transport,02/13/2016 03:28:34 AM,DIVISADERO ST/POST ST,San Francisco,94115,B05,10,4154,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7843186737916, -122.439684677541)",160440340-85 -123400392,E32,12113590,Medical Incident,12/05/2012,12/05/2012,12/05/2012 09:49:49 PM,12/05/2012 09:50:35 PM,12/05/2012 09:50:45 PM,12/05/2012 09:53:24 PM,12/05/2012 09:58:41 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/05/2012 10:16:26 PM,2500 Block of SAN JOSE AVE,SF,94112,B09,33,8325,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7174592203046, -122.449239609655)",123400392-E32 -160631179,AM02,16025014,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:07:10 AM,03/03/2016 10:07:47 AM,03/03/2016 10:08:26 AM,03/03/2016 10:09:04 AM,03/03/2016 10:15:25 AM,03/03/2016 10:25:27 AM,03/03/2016 10:43:48 AM,Code 2 Transport,03/03/2016 11:14:11 AM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",160631179-AM02 -122930345,85,12097275,Medical Incident,10/19/2012,10/19/2012,10/19/2012 06:51:37 PM,10/19/2012 06:53:27 PM,10/19/2012 06:54:26 PM,10/19/2012 06:54:33 PM,10/19/2012 07:05:59 PM,10/19/2012 07:18:18 PM,10/19/2012 07:38:04 PM,Code 2 Transport,10/19/2012 08:00:58 PM,2200 Block of MARKET ST,SF,94114,B05,6,5231,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7649516607095, -122.431937558766)",122930345-85 -131180090,E51,13039624,Water Rescue,04/28/2013,04/28/2013,04/28/2013 08:33:37 AM,04/28/2013 08:35:30 AM,04/28/2013 08:37:09 AM,04/28/2013 08:38:30 AM,04/28/2013 08:42:52 AM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/28/2013 08:58:37 AM,900 Block of MARINE DR,PR,94129,B99,51,4628,3,3,3,true,Fire,1,ENGINE,3,7,2,Presidio,"(37.8089767888005, -122.47460956271)",131180090-E51 -121020073,E15,12033732,Medical Incident,04/11/2012,04/10/2012,04/11/2012 07:48:04 AM,04/11/2012 07:48:50 AM,04/11/2012 07:49:06 AM,04/11/2012 07:50:14 AM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 07:53:18 AM,700 Block of VICTORIA ST,SF,94127,B09,15,8443,3,1,2,true,Non Life-threatening,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7241304877603, -122.464177585076)",121020073-E15 -121340224,E26,12044648,Structure Fire,05/13/2012,05/13/2012,05/13/2012 04:23:11 PM,05/13/2012 04:23:11 PM,05/13/2012 04:23:32 PM,05/13/2012 04:25:22 PM,05/13/2012 04:27:06 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 04:27:47 PM,CHENERY ST/MIZPAH ST,SF,94131,B06,26,8175,3,3,3,true,Alarm,1,ENGINE,1,6,8,Glen Park,"(37.7356694504066, -122.438821243656)",121340224-E26 -132000282,E07,13067871,Medical Incident,07/19/2013,07/19/2013,07/19/2013 04:51:47 PM,07/19/2013 04:54:01 PM,07/19/2013 04:55:56 PM,07/19/2013 04:57:08 PM,07/19/2013 05:00:43 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 05:10:34 PM,0 Block of LIBERTY ST,SF,94110,B06,7,5456,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Mission,"(37.7575809773167, -122.422275311384)",132000282-E07 -160443619,64,16017881,Medical Incident,02/13/2016,02/13/2016,02/13/2016 09:53:13 PM,02/13/2016 09:53:13 PM,02/13/2016 09:53:13 PM,02/13/2016 09:53:13 PM,02/13/2016 09:53:13 PM,02/13/2016 10:03:19 PM,02/13/2016 10:08:10 PM,Code 2 Transport,02/13/2016 10:35:02 PM,900 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7897784507453, -122.415533858364)",160443619-64 -121470084,B01,12048725,Alarms,05/26/2012,05/26/2012,05/26/2012 09:13:03 AM,05/26/2012 09:14:36 AM,05/26/2012 09:14:46 AM,05/26/2012 09:15:44 AM,05/26/2012 09:20:30 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Fire,05/26/2012 09:24:52 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",121470084-B01 -160362118,55,16014274,Traffic Collision,02/05/2016,02/05/2016,02/05/2016 01:41:50 PM,02/05/2016 01:41:50 PM,02/05/2016 01:42:23 PM,02/05/2016 01:42:39 PM,02/05/2016 01:46:39 PM,02/05/2016 02:07:54 PM,02/05/2016 02:30:21 PM,Code 2 Transport,02/05/2016 03:12:02 PM,11TH AV/MORAGA ST,San Francisco,94122,B08,22,7343,3,A,2,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.756486205733, -122.467931638181)",160362118-55 -160521610,KM04,16020810,Medical Incident,02/21/2016,02/21/2016,02/21/2016 12:47:37 PM,02/21/2016 12:47:37 PM,02/21/2016 12:47:52 PM,02/21/2016 12:49:02 PM,02/21/2016 12:54:03 PM,02/21/2016 12:59:03 PM,02/21/2016 01:22:21 PM,Code 2 Transport,02/21/2016 02:07:04 PM,GOLDEN GATE AV/WEBSTER ST,San Francisco,94115,B04,5,3516,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7797827933333, -122.430233236395)",160521610-KM04 -160201618,70,16007988,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:01:26 PM,01/20/2016 12:01:26 PM,01/20/2016 12:01:45 PM,01/20/2016 12:01:54 PM,01/20/2016 12:06:20 PM,01/20/2016 12:20:51 PM,01/20/2016 12:31:06 PM,Code 2 Transport,01/20/2016 12:46:25 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160201618-70 -132520312,55,13085299,Medical Incident,09/09/2013,09/09/2013,09/09/2013 07:49:21 PM,09/09/2013 07:51:33 PM,09/09/2013 08:14:12 PM,09/09/2013 08:14:23 PM,09/09/2013 08:22:20 PM,09/09/2013 08:38:51 PM,09/09/2013 08:47:10 PM,Code 2 Transport,09/09/2013 09:14:46 PM,1900 Block of IRVING ST,SF,94122,B08,22,7424,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7635459300897, -122.478732502612)",132520312-55 -122710248,E41,12089497,Medical Incident,09/27/2012,09/27/2012,09/27/2012 05:39:35 PM,09/27/2012 05:40:03 PM,09/27/2012 05:41:35 PM,09/27/2012 05:42:54 PM,09/27/2012 05:45:22 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,Other,09/27/2012 05:46:17 PM,LARKIN ST/FILBERT ST,SF,94109,B01,41,1626,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.7999024355319, -122.420882637336)",122710248-E41 -102890351,T16,10092320,Alarms,10/16/2010,10/16/2010,10/16/2010 09:14:27 PM,10/16/2010 09:16:23 PM,10/16/2010 09:16:49 PM,10/16/2010 09:18:14 PM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/16/2010 09:36:15 PM,2300 Block of LOMBARD ST,SF,94123,B04,16,4115,3,3,3,false,,1,TRUCK,3,4,2,Marina,"(37.7994372928279, -122.440182465352)",102890351-T16 -120910371,E18,12030298,Medical Incident,03/31/2012,03/31/2012,03/31/2012 11:13:16 PM,03/31/2012 11:13:58 PM,03/31/2012 11:14:12 PM,03/31/2012 11:15:37 PM,03/31/2012 11:17:59 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,Other,03/31/2012 11:45:00 PM,1500 Block of 31ST AVE,SF,94122,B08,18,7535,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7583357019527, -122.489587661906)",120910371-E18 -132840333,93,13096751,Medical Incident,10/11/2013,10/11/2013,10/11/2013 08:57:54 PM,10/11/2013 08:58:42 PM,10/11/2013 09:05:06 PM,04/25/2016 01:50:18 PM,10/11/2013 09:16:27 PM,10/11/2013 09:36:03 PM,10/11/2013 10:15:01 PM,Code 2 Transport,10/11/2013 10:39:44 PM,FILLMORE ST/EDDY ST,SF,94115,B05,5,3536,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7814283698384, -122.432328983123)",132840333-93 -160430448,AM24,16017165,Medical Incident,02/12/2016,02/11/2016,02/12/2016 06:04:20 AM,02/12/2016 06:04:42 AM,02/12/2016 06:09:44 AM,02/12/2016 06:09:59 AM,02/12/2016 06:14:13 AM,02/12/2016 06:33:06 AM,02/12/2016 06:57:28 AM,Code 2 Transport,02/12/2016 07:27:19 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160430448-AM24 -160630678,78,16024969,Medical Incident,03/03/2016,03/02/2016,03/03/2016 07:40:37 AM,03/03/2016 07:42:51 AM,03/03/2016 07:43:12 AM,03/03/2016 07:43:23 AM,03/03/2016 07:59:09 AM,03/03/2016 08:10:29 AM,03/03/2016 08:26:28 AM,Code 2 Transport,03/03/2016 09:08:39 AM,MISSION ST/11TH ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160630678-78 -123600043,E38,12120399,Citizen Assist / Service Call,12/25/2012,12/24/2012,12/25/2012 05:29:34 AM,12/25/2012 05:31:21 AM,12/25/2012 05:31:31 AM,12/25/2012 05:33:11 AM,12/25/2012 05:35:33 AM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Fire,12/25/2012 06:02:17 AM,2100 Block of WASHINGTON ST,SF,94109,B04,38,3331,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7923752292486, -122.428636628697)",123600043-E38 -112070324,67,11068506,Medical Incident,07/26/2011,07/26/2011,07/26/2011 09:33:44 PM,07/26/2011 09:34:26 PM,07/26/2011 09:34:41 PM,07/26/2011 09:34:49 PM,07/26/2011 09:37:49 PM,07/26/2011 09:49:44 PM,07/26/2011 09:52:46 PM,Code 2 Transport,07/26/2011 10:21:31 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",112070324-67 -102860130,KM04,10091076,Medical Incident,10/13/2010,10/13/2010,10/13/2010 10:18:27 AM,10/13/2010 10:20:22 AM,10/13/2010 10:21:04 AM,10/13/2010 10:21:46 AM,10/13/2010 10:30:03 AM,10/13/2010 10:49:03 AM,10/13/2010 11:12:22 AM,Code 2 Transport,10/13/2010 11:42:54 AM,GREAT HY/LINCOLN WY,SF,94122,B08,23,7722,1,1,2,false,,1,PRIVATE,1,7,4,Sunset/Parkside,"(37.7640008341941, -122.510341318055)",102860130-KM04 -131630141,E03,13055338,Medical Incident,06/12/2013,06/12/2013,06/12/2013 10:33:23 AM,06/12/2013 10:34:24 AM,06/12/2013 10:35:57 AM,04/25/2016 01:52:20 PM,06/12/2013 10:39:36 AM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/12/2013 10:42:39 AM,CEDAR ST/POLK ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",131630141-E03 -120660191,58,12021832,Medical Incident,03/06/2012,03/06/2012,03/06/2012 12:31:40 PM,03/06/2012 12:32:27 PM,03/06/2012 12:32:43 PM,04/25/2016 01:59:48 PM,03/06/2012 12:34:57 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,No Merit,03/06/2012 12:50:08 PM,3200 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,None,None,None,"(37.7475912199361, -122.387182780653)",120660191-58 -122030238,86,12067511,Medical Incident,07/21/2012,07/21/2012,07/21/2012 03:34:43 PM,07/21/2012 03:35:13 PM,07/21/2012 03:37:48 PM,07/21/2012 03:37:58 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,04/25/2016 01:57:37 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",122030238-86 -120370008,E31,12012207,Medical Incident,02/06/2012,02/05/2012,02/06/2012 12:17:49 AM,02/06/2012 12:19:44 AM,02/06/2012 12:22:38 AM,02/06/2012 12:23:55 AM,02/06/2012 12:26:22 AM,04/25/2016 02:00:16 PM,04/25/2016 02:00:16 PM,Other,02/06/2012 12:30:26 AM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",120370008-E31 -160433530,52,16017473,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:11:26 PM,02/12/2016 09:11:26 PM,02/12/2016 09:11:26 PM,02/12/2016 09:11:26 PM,02/12/2016 09:11:26 PM,02/12/2016 09:36:50 PM,02/12/2016 09:56:58 PM,Code 2 Transport,02/12/2016 10:35:37 PM,9TH ST/HOWARD ST,San Francisco,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7749917496069, -122.413161109659)",160433530-52 -103240057,94,10103725,Medical Incident,11/20/2010,11/19/2010,11/20/2010 06:09:02 AM,11/20/2010 06:09:41 AM,11/20/2010 06:09:55 AM,11/20/2010 06:12:30 AM,11/20/2010 06:15:01 AM,11/20/2010 06:19:41 AM,11/20/2010 06:34:57 AM,Code 2 Transport,11/20/2010 06:59:54 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",103240057-94 -160131199,60,16005141,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:11:39 AM,01/13/2016 10:17:15 AM,01/13/2016 10:17:44 AM,01/13/2016 10:19:21 AM,01/13/2016 10:22:34 AM,01/13/2016 10:57:10 AM,01/13/2016 11:11:33 AM,Code 2 Transport,01/13/2016 11:40:24 AM,600 Block of VALENCIA ST,San Francisco,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7627436601147, -122.421747650463)",160131199-60 -121940428,E02,12064754,Medical Incident,07/12/2012,07/12/2012,07/12/2012 11:26:53 PM,07/12/2012 11:27:08 PM,07/12/2012 11:27:32 PM,07/12/2012 11:29:32 PM,07/12/2012 11:30:37 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/13/2012 12:28:57 AM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",121940428-E02 -160151957,88,16006003,Medical Incident,01/15/2016,01/15/2016,01/15/2016 01:29:52 PM,01/15/2016 01:32:18 PM,01/15/2016 01:33:13 PM,01/15/2016 01:33:32 PM,01/15/2016 01:38:44 PM,01/15/2016 01:57:30 PM,01/15/2016 02:08:48 PM,Code 2 Transport,01/15/2016 03:13:48 PM,1100 Block of POST ST,San Francisco,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.786777482512, -122.420759970574)",160151957-88 -103570126,E05,10114527,Alarms,12/23/2010,12/23/2010,12/23/2010 10:29:40 AM,12/23/2010 10:31:42 AM,12/23/2010 10:35:30 AM,12/23/2010 10:36:31 AM,12/23/2010 10:40:01 AM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/23/2010 10:49:16 AM,800 Block of DIVISADERO ST,SF,94117,B05,21,4151,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7773095022254, -122.438391268776)",103570126-E05 -132730292,55,13092858,Medical Incident,09/30/2013,09/30/2013,09/30/2013 05:11:45 PM,09/30/2013 05:15:04 PM,09/30/2013 05:15:16 PM,09/30/2013 05:15:27 PM,09/30/2013 05:22:39 PM,09/30/2013 05:46:10 PM,09/30/2013 05:51:41 PM,Code 2 Transport,09/30/2013 06:25:10 PM,1700 Block of VAN NESS AVE,SF,94109,B04,41,3154,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",132730292-55 -111120316,B04,11037112,Structure Fire,04/22/2011,04/22/2011,04/22/2011 06:38:31 PM,04/22/2011 06:40:34 PM,04/22/2011 06:40:47 PM,04/22/2011 06:42:39 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 07:10:18 PM,3300 Block of CALIFORNIA ST,SF,94118,B04,10,4421,3,3,3,false,,1,CHIEF,8,5,2,Presidio Heights,"(37.7868893006416, -122.449282363366)",111120316-B04 -120750304,AP,12025014,Other,03/15/2012,03/15/2012,03/15/2012 07:26:53 PM,03/15/2012 07:26:53 PM,03/15/2012 07:26:53 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Fire,03/15/2012 07:27:32 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120750304-AP -130300396,D2,13010404,Structure Fire,01/30/2013,01/30/2013,01/30/2013 10:32:28 PM,01/30/2013 10:33:24 PM,01/30/2013 10:33:54 PM,04/25/2016 01:54:32 PM,01/30/2013 10:40:33 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/30/2013 10:41:19 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Alarm,1,CHIEF,9,2,6,Mission,"(37.7740948566882, -122.420001436964)",130300396-D2 -131020155,E21,13034248,Medical Incident,04/12/2013,04/12/2013,04/12/2013 12:13:10 PM,04/12/2013 12:13:33 PM,04/12/2013 12:13:44 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,04/25/2016 01:53:21 PM,Other,04/12/2013 12:15:02 PM,0 Block of MUSEUM WAY,SF,94114,B05,6,5175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,5,8,Castro/Upper Market,"(37.7645174149932, -122.440219513694)",131020155-E21 -160742114,66,16029367,Medical Incident,03/14/2016,03/14/2016,03/14/2016 02:14:25 PM,03/14/2016 02:15:03 PM,03/14/2016 02:16:37 PM,03/14/2016 02:16:37 PM,03/14/2016 02:23:50 PM,03/14/2016 02:43:32 PM,03/14/2016 02:50:19 PM,Code 2 Transport,03/14/2016 03:39:49 PM,OCEAN AV/MISSION ST,San Francisco,94112,B09,43,6121,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7239094042292, -122.435385085808)",160742114-66 -103000009,RS2,10095634,Structure Fire,10/27/2010,10/26/2010,10/27/2010 12:24:33 AM,10/27/2010 12:28:58 AM,10/27/2010 12:29:34 AM,10/27/2010 12:30:40 AM,10/27/2010 12:33:27 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 12:36:55 AM,200 Block of 14TH ST,SF,94103,B02,36,5215,3,3,3,false,,1,RESCUE SQUAD,2,2,9,Mission,"(37.7682847825555, -122.418885184858)",103000009-RS2 -103320054,71,10106173,Medical Incident,11/28/2010,11/27/2010,11/28/2010 04:21:41 AM,11/28/2010 04:22:52 AM,11/28/2010 04:23:05 AM,11/28/2010 04:23:37 AM,11/28/2010 04:25:26 AM,11/28/2010 04:52:40 AM,11/28/2010 05:06:51 AM,Code 2 Transport,11/28/2010 05:30:43 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",103320054-71 -110820272,T01,11027011,Alarms,03/23/2011,03/23/2011,03/23/2011 03:49:13 PM,03/23/2011 03:49:48 PM,03/23/2011 03:49:54 PM,03/23/2011 03:50:59 PM,03/23/2011 03:54:42 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 04:00:31 PM,0 Block of 9TH ST,SF,94103,B02,36,2337,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7764354063246, -122.415064887666)",110820272-T01 -112930166,79,11097186,Medical Incident,10/20/2011,10/20/2011,10/20/2011 12:46:51 PM,10/20/2011 12:49:46 PM,10/20/2011 12:49:54 PM,10/20/2011 12:50:24 PM,10/20/2011 12:54:33 PM,10/20/2011 01:19:37 PM,10/20/2011 01:38:20 PM,Code 2 Transport,10/20/2011 02:08:27 PM,100 Block of STOCKTON ST,SF,94108,B01,1,1323,E,E,3,false,,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7871003167622, -122.406426031165)",112930166-79 -123560334,E25,12119282,Gas Leak (Natural and LP Gases),12/21/2012,12/21/2012,12/21/2012 08:12:05 PM,12/21/2012 08:14:13 PM,12/21/2012 08:15:23 PM,12/21/2012 08:16:49 PM,12/21/2012 08:19:38 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 08:43:00 PM,0 Block of REUEL CT,SF,94124,B10,25,652,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7364122533313, -122.382919646324)",123560334-E25 -110020301,E14,11000774,Administrative,01/02/2011,01/02/2011,01/02/2011 08:08:52 PM,01/02/2011 08:08:54 PM,01/02/2011 08:09:07 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/02/2011 08:09:49 PM,500 Block of 26TH AVE,SF,94121,B07,14,7213,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7790744237693, -122.485806573913)",110020301-E14 -103340033,89,10106760,Medical Incident,11/30/2010,11/29/2010,11/30/2010 04:34:24 AM,11/30/2010 04:35:58 AM,11/30/2010 04:36:18 AM,11/30/2010 04:37:21 AM,11/30/2010 04:41:46 AM,11/30/2010 05:11:12 AM,11/30/2010 05:22:13 AM,Code 2 Transport,11/30/2010 05:50:18 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7777263414712, -122.409605982336)",103340033-89 -121340088,88,12044523,Medical Incident,05/13/2012,05/13/2012,05/13/2012 09:29:13 AM,05/13/2012 09:30:24 AM,05/13/2012 09:31:07 AM,05/13/2012 09:31:40 AM,05/13/2012 09:34:32 AM,05/13/2012 09:54:32 AM,05/13/2012 10:18:12 AM,Code 2 Transport,05/13/2012 10:48:31 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121340088-88 -121280156,T16,12042564,Alarms,05/07/2012,05/07/2012,05/07/2012 11:15:16 AM,05/07/2012 11:17:00 AM,05/07/2012 11:17:08 AM,05/07/2012 11:18:05 AM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,04/25/2016 01:58:48 PM,Other,05/07/2012 11:23:03 AM,1400 Block of BATTERY CAULFIELD RD,PR,94129,B99,51,4622,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.7918040090412, -122.475148791115)",121280156-T16 -110360154,82,11011806,Medical Incident,02/05/2011,02/05/2011,02/05/2011 11:22:14 AM,02/05/2011 11:22:59 AM,02/05/2011 11:23:21 AM,02/05/2011 11:25:36 AM,02/05/2011 11:27:00 AM,02/05/2011 11:42:59 AM,02/05/2011 11:51:01 AM,Code 2 Transport,02/05/2011 12:20:42 PM,100 Block of TERRA VISTA AVE,SF,94115,B04,10,4264,3,3,3,true,,1,MEDIC,1,5,2,Lone Mountain/USF,"(37.7812874242456, -122.444289968362)",110360154-82 -160302388,AM04,16011841,Medical Incident,01/30/2016,01/30/2016,01/30/2016 03:11:07 PM,01/30/2016 03:14:19 PM,01/30/2016 03:15:11 PM,01/30/2016 03:15:49 PM,01/30/2016 03:27:50 PM,01/30/2016 03:45:47 PM,01/30/2016 04:28:59 PM,Code 2 Transport,01/30/2016 04:49:36 PM,0 Block of STRATFORD DR,San Francisco,94132,B09,19,8727,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7238017236034, -122.473465365097)",160302388-AM04 -110500182,83,11016541,Medical Incident,02/19/2011,02/19/2011,02/19/2011 12:57:37 PM,02/19/2011 12:57:59 PM,02/19/2011 12:58:11 PM,02/19/2011 12:59:03 PM,02/19/2011 01:01:44 PM,02/19/2011 01:10:27 PM,02/19/2011 01:23:17 PM,Code 2 Transport,02/19/2011 01:54:12 PM,1000 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",110500182-83 -132470236,E01,13083372,Medical Incident,09/04/2013,09/04/2013,09/04/2013 02:55:16 PM,09/04/2013 02:59:44 PM,09/04/2013 03:03:27 PM,09/04/2013 03:03:31 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 03:17:22 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,3,2,2,true,Non Life-threatening,1,ENGINE,3,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",132470236-E01 -111150147,RS1,11037915,Medical Incident,04/25/2011,04/25/2011,04/25/2011 10:59:56 AM,04/25/2011 11:01:03 AM,04/25/2011 11:01:24 AM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,04/25/2016 02:04:56 PM,Other,04/25/2011 11:08:14 AM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2157,3,3,3,false,,1,RESCUE SQUAD,5,3,6,Financial District/South Beach,"(37.7877559180409, -122.400975353818)",111150147-RS1 -111180191,E02,11038928,Medical Incident,04/28/2011,04/28/2011,04/28/2011 01:24:58 PM,04/28/2011 01:26:24 PM,04/28/2011 01:27:37 PM,04/28/2011 01:29:29 PM,04/28/2011 01:30:45 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 01:34:08 PM,200 Block of BROADWAY,SF,94111,B01,13,1155,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7985591075904, -122.401650967109)",111180191-E02 -130690268,E07,13023116,Medical Incident,03/10/2013,03/10/2013,03/10/2013 07:38:16 PM,03/10/2013 07:38:37 PM,03/10/2013 07:38:57 PM,03/10/2013 07:39:47 PM,03/10/2013 07:42:02 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Other,03/10/2013 07:49:44 PM,2300 Block of BRYANT ST,SF,94110,B06,7,5474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7567981607842, -122.409455250729)",130690268-E07 -160293634,75,16011581,Traffic Collision,01/29/2016,01/29/2016,01/29/2016 10:07:15 PM,01/29/2016 10:07:15 PM,01/29/2016 10:07:44 PM,01/29/2016 10:08:10 PM,01/29/2016 10:20:10 PM,01/29/2016 11:16:18 PM,01/29/2016 11:37:22 PM,Code 2 Transport,01/30/2016 12:18:46 AM,HOWARD ST/2ND ST,San Francisco,94105,B03,1,2146,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7867789486792, -122.398256963317)",160293634-75 -160892187,KM09,16035364,Medical Incident,03/29/2016,03/29/2016,03/29/2016 02:15:41 PM,03/29/2016 02:18:39 PM,03/29/2016 02:19:02 PM,03/29/2016 02:20:32 PM,03/29/2016 02:31:09 PM,03/29/2016 02:52:16 PM,03/29/2016 03:35:41 PM,Code 2 Transport,03/29/2016 04:20:59 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160892187-KM09 -121370304,60,12045612,Medical Incident,05/16/2012,05/16/2012,05/16/2012 05:00:50 PM,05/16/2012 05:01:51 PM,05/16/2012 05:02:05 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,04/25/2016 01:58:39 PM,Other,04/25/2016 01:58:39 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7642910155103, -122.418689416733)",121370304-60 -160440413,70,16017574,Medical Incident,02/13/2016,02/12/2016,02/13/2016 03:05:07 AM,02/13/2016 03:05:07 AM,02/13/2016 03:06:31 AM,02/13/2016 03:06:38 AM,02/13/2016 03:11:46 AM,02/13/2016 03:21:33 AM,02/13/2016 03:27:23 AM,Code 2 Transport,02/13/2016 03:55:51 AM,STOCKTON ST/POST ST,San Francisco,94108,B01,1,1323,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7884994798068, -122.406771145217)",160440413-70 -160182984,58,16007367,Medical Incident,01/18/2016,01/18/2016,01/18/2016 08:00:08 PM,01/18/2016 08:02:48 PM,01/18/2016 08:03:02 PM,01/18/2016 08:03:13 PM,01/18/2016 08:11:07 PM,01/18/2016 08:25:31 PM,01/18/2016 08:30:43 PM,Code 2 Transport,01/18/2016 09:25:23 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160182984-58 -160903209,AM16,16035837,Medical Incident,03/30/2016,03/30/2016,03/30/2016 06:22:28 PM,03/30/2016 06:23:13 PM,03/30/2016 06:23:26 PM,03/30/2016 06:23:56 PM,03/30/2016 06:27:48 PM,03/30/2016 06:49:24 PM,03/30/2016 07:06:11 PM,Code 2 Transport,03/30/2016 07:27:47 PM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",160903209-AM16 -160620299,AM24,16024557,Medical Incident,03/02/2016,03/01/2016,03/02/2016 03:54:13 AM,03/02/2016 03:57:09 AM,03/02/2016 03:59:29 AM,03/02/2016 03:59:33 AM,03/02/2016 04:06:34 AM,03/02/2016 04:14:17 AM,03/02/2016 04:35:38 AM,Code 2 Transport,03/02/2016 04:58:28 AM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160620299-AM24 -132350365,77,13079458,Medical Incident,08/23/2013,08/23/2013,08/23/2013 09:48:57 PM,08/23/2013 09:49:55 PM,08/23/2013 09:50:24 PM,08/23/2013 09:50:30 PM,08/23/2013 09:54:37 PM,08/23/2013 10:07:03 PM,08/23/2013 10:20:56 PM,Code 2 Transport,08/23/2013 10:33:01 PM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",132350365-77 -160823452,83,16032721,Medical Incident,03/22/2016,03/22/2016,03/22/2016 07:40:51 PM,03/22/2016 07:46:11 PM,03/22/2016 07:47:04 PM,03/22/2016 07:47:17 PM,03/22/2016 07:51:35 PM,03/22/2016 08:05:24 PM,03/22/2016 08:26:59 PM,Code 2 Transport,03/22/2016 08:55:33 PM,1100 Block of MONTEREY BLVD,San Francisco,94127,B09,15,8547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7302033611066, -122.461140592975)",160823452-83 -121870144,54,12062274,Medical Incident,07/05/2012,07/05/2012,07/05/2012 10:28:12 AM,07/05/2012 10:29:59 AM,07/05/2012 10:30:20 AM,07/05/2012 10:30:26 AM,07/05/2012 10:34:06 AM,07/05/2012 10:47:53 AM,07/05/2012 11:10:51 AM,Code 2 Transport,07/05/2012 11:28:47 AM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",121870144-54 -122270213,B07,12075280,Structure Fire,08/14/2012,08/14/2012,08/14/2012 04:14:38 PM,08/14/2012 04:15:49 PM,08/14/2012 04:16:29 PM,08/14/2012 04:17:38 PM,08/14/2012 04:23:28 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/14/2012 04:46:17 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,Fire,1,CHIEF,5,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",122270213-B07 -132890144,E09,13098263,Citizen Assist / Service Call,10/16/2013,10/16/2013,10/16/2013 11:07:36 AM,10/16/2013 11:10:07 AM,10/16/2013 11:10:15 AM,10/16/2013 11:11:04 AM,10/16/2013 11:14:50 AM,04/25/2016 01:50:14 PM,04/25/2016 01:50:14 PM,Other,10/16/2013 11:25:47 AM,1500 Block of OWENS ST,SF,94158,B03,29,2414,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7688607878339, -122.395396036624)",132890144-E09 -133320232,77,13112731,,11/28/2013,11/28/2013,11/28/2013 06:40:00 PM,11/28/2013 06:43:00 PM,11/28/2013 06:46:00 PM,11/28/2013 06:47:00 PM,11/28/2013 06:52:00 PM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,SFPD,11/28/2013 06:57:00 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642361189447, -122.419659842408)",133320232-77 -110420073,E36,11013827,Medical Incident,02/11/2011,02/10/2011,02/11/2011 06:58:41 AM,02/11/2011 07:00:43 AM,02/11/2011 07:02:24 AM,02/11/2011 07:03:52 AM,02/11/2011 07:06:06 AM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 07:12:16 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110420073-E36 -112670183,87,11088226,Traffic Collision,09/24/2011,09/24/2011,09/24/2011 01:03:27 PM,09/24/2011 01:04:22 PM,09/24/2011 01:05:07 PM,09/24/2011 01:14:33 PM,09/24/2011 01:21:07 PM,09/24/2011 01:33:29 PM,09/24/2011 01:57:21 PM,Other,09/24/2011 02:30:30 PM,100 Block of VALENCIA ST,SF,94103,B02,36,5126,3,3,3,true,,1,MEDIC,3,2,8,Mission,"(37.7707273342452, -122.422514586133)",112670183-87 -111390217,KM02,11046235,Medical Incident,05/19/2011,05/19/2011,05/19/2011 02:33:16 PM,05/19/2011 02:36:12 PM,05/19/2011 02:36:44 PM,05/19/2011 02:37:52 PM,05/19/2011 02:43:05 PM,05/19/2011 02:58:29 PM,05/19/2011 03:13:00 PM,Code 2 Transport,05/19/2011 03:30:28 PM,VAN NESS AV/POST ST,SF,94109,B04,3,3161,1,1,2,false,,1,PRIVATE,2,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",111390217-KM02 -113560111,E16,11118136,Alarms,12/22/2011,12/22/2011,12/22/2011 09:29:02 AM,12/22/2011 09:30:50 AM,12/22/2011 09:31:00 AM,12/22/2011 09:32:06 AM,12/22/2011 09:34:45 AM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/22/2011 09:41:38 AM,2600 Block of DIVISADERO ST,SF,94115,B04,16,4164,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7939198042244, -122.441548284941)",113560111-E16 -160713332,60,16028377,Traffic Collision,03/11/2016,03/11/2016,03/11/2016 08:59:54 PM,03/11/2016 09:00:56 PM,03/11/2016 09:02:18 PM,03/11/2016 09:02:28 PM,03/11/2016 09:07:14 PM,03/11/2016 09:32:29 PM,03/11/2016 09:51:08 PM,Code 2 Transport,03/11/2016 10:25:18 PM,1100 Block of MARKET ST,San Francisco,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7807642254398, -122.412320907436)",160713332-60 -110740102,AM04,11024290,Medical Incident,03/15/2011,03/15/2011,03/15/2011 09:30:26 AM,03/15/2011 09:31:01 AM,03/15/2011 09:34:02 AM,03/15/2011 09:34:18 AM,03/15/2011 09:53:28 AM,03/15/2011 10:17:04 AM,03/15/2011 10:23:38 AM,Code 2 Transport,03/15/2011 10:53:15 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",110740102-AM04 -123500013,E01,12116891,Medical Incident,12/15/2012,12/14/2012,12/15/2012 01:11:24 AM,12/15/2012 01:11:49 AM,12/15/2012 01:12:50 AM,12/15/2012 01:14:35 AM,12/15/2012 01:15:29 AM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 01:26:25 AM,100 Block of MINNA ST,SF,94105,B03,1,2157,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7864591765358, -122.400780917444)",123500013-E01 -160010543,78,16000109,Medical Incident,01/01/2016,12/31/2015,01/01/2016 02:04:08 AM,01/01/2016 02:04:08 AM,01/01/2016 02:20:51 AM,01/01/2016 02:20:55 AM,01/01/2016 02:37:30 AM,01/01/2016 02:37:32 AM,01/01/2016 02:51:56 AM,Code 2 Transport,01/01/2016 03:27:49 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160010543-78 -160262390,56,16010352,Medical Incident,01/26/2016,01/26/2016,01/26/2016 03:24:39 PM,01/26/2016 03:26:00 PM,01/26/2016 03:27:21 PM,01/26/2016 03:28:23 PM,01/26/2016 03:31:19 PM,01/26/2016 03:49:33 PM,01/26/2016 04:09:14 PM,Code 2 Transport,01/26/2016 05:08:31 PM,0 Block of PANORAMA DR,San Francisco,94131,B08,20,5355,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.746813546528, -122.45066943199)",160262390-56 -121520354,B01,12050488,Alarms,05/31/2012,05/31/2012,05/31/2012 11:36:03 PM,05/31/2012 11:37:00 PM,05/31/2012 11:37:14 PM,05/31/2012 11:39:57 PM,05/31/2012 11:42:47 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,05/31/2012 11:45:14 PM,200 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7857514735072, -122.409521960374)",121520354-B01 -160880367,KM07,16034812,Medical Incident,03/28/2016,03/27/2016,03/28/2016 04:22:20 AM,03/28/2016 04:25:05 AM,03/28/2016 04:27:16 AM,03/28/2016 04:27:16 AM,03/28/2016 04:38:11 AM,03/28/2016 04:53:10 AM,03/28/2016 05:06:00 AM,Code 2 Transport,03/28/2016 05:30:26 AM,MCALLISTER ST/STANYAN ST,San Francisco,94118,B07,21,4556,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7756849881498, -122.454846631094)",160880367-KM07 -112430022,E36,11080007,Medical Incident,08/31/2011,08/30/2011,08/31/2011 02:16:45 AM,08/31/2011 02:18:33 AM,08/31/2011 02:18:47 AM,08/31/2011 02:20:43 AM,08/31/2011 02:22:14 AM,04/25/2016 02:02:55 PM,04/25/2016 02:02:55 PM,Other,08/31/2011 02:30:57 AM,1100 Block of MARKET ST,SF,94103,B02,1,2316,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7795310846627, -122.413542548681)",112430022-E36 -160340694,AM02,16013270,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:06:05 AM,02/03/2016 08:06:53 AM,02/03/2016 08:07:13 AM,02/03/2016 08:11:35 AM,02/03/2016 08:15:03 AM,02/03/2016 08:33:00 AM,02/03/2016 08:42:57 AM,Code 3 Transport,02/03/2016 09:22:36 AM,2700 Block of GEARY BLVD,San Francisco,94118,B05,10,4455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",160340694-AM02 -130960301,KM09,13032282,Medical Incident,04/06/2013,04/06/2013,04/06/2013 06:26:17 PM,04/06/2013 06:26:40 PM,04/06/2013 06:27:36 PM,04/06/2013 06:28:37 PM,04/06/2013 06:30:59 PM,04/25/2016 01:53:27 PM,04/25/2016 01:53:27 PM,Other,04/06/2013 06:32:48 PM,CYRIL MAGNIN ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",130960301-KM09 -103390138,86,10108485,Medical Incident,12/05/2010,12/05/2010,12/05/2010 10:21:48 AM,12/05/2010 10:23:58 AM,12/05/2010 10:24:58 AM,12/05/2010 10:25:23 AM,12/05/2010 10:38:12 AM,12/05/2010 11:06:56 AM,12/05/2010 11:19:08 AM,Code 2 Transport,12/05/2010 11:50:56 AM,600 Block of 29TH AVE,SF,94121,B07,14,7225,B,B,2,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7770361623385, -122.488877269241)",103390138-86 -123470082,93,12115934,Medical Incident,12/12/2012,12/12/2012,12/12/2012 08:11:41 AM,12/12/2012 08:11:52 AM,12/12/2012 08:12:06 AM,12/12/2012 08:13:17 AM,12/12/2012 08:20:04 AM,12/12/2012 08:33:28 AM,12/12/2012 08:41:00 AM,Code 2 Transport,12/12/2012 08:57:55 AM,19TH ST/FOLSOM ST,SF,94110,B06,7,5432,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7604988732472, -122.414841891781)",123470082-93 -132390230,E06,13080654,Medical Incident,08/27/2013,08/27/2013,08/27/2013 02:49:50 PM,08/27/2013 02:49:56 PM,08/27/2013 02:50:09 PM,08/27/2013 02:51:23 PM,08/27/2013 02:52:42 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/27/2013 03:03:01 PM,DUBOCE AV/NOE ST,SF,94114,B05,6,5131,3,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Haight Ashbury,"(37.7691783700971, -122.433572207997)",132390230-E06 -123360419,79,12111935,Medical Incident,12/01/2012,12/01/2012,12/01/2012 09:55:01 PM,12/01/2012 09:55:08 PM,12/01/2012 09:56:32 PM,12/01/2012 09:56:52 PM,12/01/2012 10:04:45 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,No Merit,12/01/2012 10:08:37 PM,EDDY ST/DIVISADERO ST,SF,94115,B05,5,4133,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7805884858227, -122.43892675401)",123360419-79 -160452924,60,16018253,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:33:47 PM,02/14/2016 07:36:10 PM,02/14/2016 07:40:53 PM,02/14/2016 07:45:38 PM,02/14/2016 07:56:36 PM,02/14/2016 08:47:47 PM,02/14/2016 08:59:19 PM,Code 3 Transport,02/14/2016 10:26:15 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160452924-60 -122330181,85,12077280,Medical Incident,08/20/2012,08/20/2012,08/20/2012 12:34:14 PM,08/20/2012 12:35:52 PM,08/20/2012 12:36:27 PM,08/20/2012 12:36:58 PM,08/20/2012 12:42:27 PM,08/20/2012 12:55:50 PM,08/20/2012 01:15:43 PM,Code 2 Transport,08/20/2012 01:29:22 PM,1300 Block of JONES ST,SF,94109,B01,41,1466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7936578553855, -122.414627212844)",122330181-85 -160913212,83,16036218,Medical Incident,03/31/2016,03/31/2016,03/31/2016 07:28:28 PM,03/31/2016 07:29:57 PM,03/31/2016 07:30:22 PM,03/31/2016 07:30:55 PM,03/31/2016 07:40:10 PM,03/31/2016 08:03:33 PM,03/31/2016 08:14:36 PM,Code 2 Transport,03/31/2016 08:45:55 PM,2300 Block of BUSH ST,San Francisco,94115,B04,38,3621,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7867600220292, -122.435937155417)",160913212-83 -131650141,E43,13056014,Medical Incident,06/14/2013,06/14/2013,06/14/2013 10:52:31 AM,06/14/2013 10:53:37 AM,06/14/2013 10:54:05 AM,06/14/2013 10:54:39 AM,06/14/2013 10:57:50 AM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/14/2013 11:06:37 AM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",131650141-E43 -132020249,T07,13068533,Alarms,07/21/2013,07/21/2013,07/21/2013 05:46:48 PM,07/21/2013 05:48:31 PM,07/21/2013 05:49:30 PM,07/21/2013 05:51:25 PM,07/21/2013 05:52:35 PM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 05:54:01 PM,700 Block of SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7564291001834, -122.415618719176)",132020249-T07 -132440273,E13,13082427,Medical Incident,09/01/2013,09/01/2013,09/01/2013 05:42:19 PM,09/01/2013 05:42:52 PM,09/01/2013 05:43:03 PM,09/01/2013 05:43:48 PM,09/01/2013 05:46:40 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,Other,09/01/2013 05:50:08 PM,300 Block of KEARNY ST,SF,94104,B01,13,1243,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912340846194, -122.40405694935)",132440273-E13 -113360492,T05,11111494,Structure Fire,12/02/2011,12/02/2011,12/02/2011 11:32:32 PM,12/02/2011 11:32:32 PM,12/02/2011 11:32:39 PM,12/02/2011 11:33:20 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,04/25/2016 02:01:21 PM,Other,12/02/2011 11:35:11 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,false,,1,TRUCK,2,2,5,Hayes Valley,"(37.7745179417306, -122.420877749983)",113360492-T05 -102310122,T01,10072653,Alarms,08/19/2010,08/19/2010,08/19/2010 10:29:56 AM,08/19/2010 10:30:51 AM,08/19/2010 10:31:05 AM,08/19/2010 10:31:23 AM,08/19/2010 10:34:30 AM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/19/2010 10:36:17 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,TRUCK,2,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",102310122-T01 -103050444,RC1,10097712,Medical Incident,11/01/2010,11/01/2010,11/01/2010 10:52:41 PM,11/01/2010 10:53:39 PM,11/01/2010 10:53:55 PM,11/01/2010 10:55:47 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/01/2010 11:01:51 PM,1100 Block of ELLIS ST,SF,94109,B02,5,3322,3,E,3,false,,1,RESCUE CAPTAIN,3,2,5,Western Addition,"(37.7831387146973, -122.425928739913)",103050444-RC1 -102360338,RS1,10074440,Structure Fire,08/24/2010,08/24/2010,08/24/2010 04:51:00 PM,08/24/2010 04:53:09 PM,08/24/2010 04:53:35 PM,08/24/2010 04:55:15 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,Other,08/24/2010 04:58:54 PM,200 Block of VAN NESS AVE,SF,94102,B02,36,3166,3,3,3,true,,1,RESCUE SQUAD,8,2,6,Tenderloin,"(37.7775400880886, -122.419594770553)",102360338-RS1 -160040582,89,16001485,Medical Incident,01/04/2016,01/03/2016,01/04/2016 07:08:19 AM,01/04/2016 07:09:53 AM,01/04/2016 07:11:54 AM,01/04/2016 07:12:16 AM,01/04/2016 07:37:12 AM,01/04/2016 07:46:32 AM,01/04/2016 07:52:27 AM,Code 2 Transport,01/04/2016 08:31:24 AM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160040582-89 -160442603,62,16017787,Medical Incident,02/13/2016,02/13/2016,02/13/2016 05:22:32 PM,02/13/2016 05:25:34 PM,02/13/2016 05:26:05 PM,02/13/2016 05:26:13 PM,02/13/2016 05:36:23 PM,02/13/2016 06:11:12 PM,02/13/2016 06:48:47 PM,Code 2 Transport,02/13/2016 07:04:43 PM,2900 Block of ALEMANY BLVD,San Francisco,94112,B09,33,8353,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7116951666869, -122.45260734958)",160442603-62 -103470335,96,10111393,Medical Incident,12/13/2010,12/13/2010,12/13/2010 07:47:35 PM,12/13/2010 07:48:06 PM,12/13/2010 07:48:25 PM,12/13/2010 07:49:06 PM,12/13/2010 07:52:53 PM,12/13/2010 08:07:59 PM,12/13/2010 08:20:01 PM,Code 2 Transport,12/13/2010 08:45:48 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7528524062967, -122.408188967839)",103470335-96 -133340312,E01,13113361,Medical Incident,11/30/2013,11/30/2013,11/30/2013 08:23:00 PM,11/30/2013 08:23:50 PM,11/30/2013 08:24:03 PM,11/30/2013 08:25:03 PM,11/30/2013 08:27:23 PM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,11/30/2013 08:28:33 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",133340312-E01 -122390098,81,12079064,Medical Incident,08/26/2012,08/26/2012,08/26/2012 09:03:59 AM,08/26/2012 09:04:46 AM,08/26/2012 09:05:14 AM,08/26/2012 09:06:03 AM,08/26/2012 09:10:29 AM,08/26/2012 09:27:35 AM,08/26/2012 10:22:33 AM,Code 2 Transport,08/26/2012 10:22:55 AM,0 Block of SHRADER ST,SF,94117,B05,21,4542,E,2,2,true,Potentially Life-Threatening,1,MEDIC,3,5,1,Lone Mountain/USF,"(37.7745145380854, -122.452839772389)",122390098-81 -102670410,E01,10084709,Alarms,09/24/2010,09/24/2010,09/24/2010 10:58:58 PM,09/24/2010 10:58:58 PM,09/24/2010 10:59:14 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Other,04/25/2016 02:08:26 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",102670410-E01 -131220009,T06,13040867,Citizen Assist / Service Call,05/02/2013,05/01/2013,05/02/2013 12:15:40 AM,05/02/2013 12:18:11 AM,05/02/2013 12:18:22 AM,05/02/2013 12:20:42 AM,05/02/2013 12:24:46 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Fire,05/02/2013 12:59:29 AM,4100 Block of 17TH ST,SF,94114,B05,6,5254,3,3,3,false,Alarm,1,TRUCK,1,5,8,Castro/Upper Market,"(37.762377512038, -122.437885503892)",131220009-T06 -130780078,E10,13025943,Alarms,03/19/2013,03/18/2013,03/19/2013 07:03:32 AM,03/19/2013 07:05:19 AM,03/19/2013 07:05:32 AM,03/19/2013 07:07:07 AM,03/19/2013 07:09:43 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 07:15:07 AM,1700 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,true,Alarm,1,ENGINE,2,5,2,Pacific Heights,"(37.7857001632116, -122.440081147256)",130780078-E10 -122200259,94,12073038,Medical Incident,08/07/2012,08/07/2012,08/07/2012 06:31:15 PM,08/07/2012 06:31:40 PM,08/07/2012 06:32:36 PM,08/07/2012 06:32:46 PM,08/07/2012 06:39:05 PM,04/25/2016 01:57:20 PM,04/25/2016 01:57:20 PM,Other,08/07/2012 06:40:26 PM,800 Block of MARKET ST,SF,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7852197348475, -122.406674658987)",122200259-94 -160542707,53,16021685,Medical Incident,02/23/2016,02/23/2016,02/23/2016 04:37:03 PM,02/23/2016 04:38:25 PM,02/23/2016 04:39:11 PM,02/23/2016 04:39:24 PM,02/23/2016 04:45:39 PM,02/23/2016 05:13:12 PM,02/23/2016 05:38:09 PM,Code 2 Transport,02/23/2016 06:15:16 PM,500 Block of MARKET ST,San Francisco,94105,B03,13,2143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",160542707-53 -160900157,65,16035546,Medical Incident,03/30/2016,03/29/2016,03/30/2016 01:26:18 AM,03/30/2016 01:26:18 AM,03/30/2016 01:26:39 AM,03/30/2016 01:26:48 AM,03/30/2016 01:34:47 AM,03/30/2016 01:47:03 AM,03/30/2016 02:11:02 AM,Code 2 Transport,03/30/2016 02:31:49 AM,500 Block of WASHINGTON ST,San Francisco,94111,B01,13,1211,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7956190455503, -122.403039422993)",160900157-65 -160291373,57,16011414,Medical Incident,01/29/2016,01/29/2016,01/29/2016 11:25:04 AM,01/29/2016 11:25:35 AM,01/29/2016 11:26:50 AM,01/29/2016 11:26:55 AM,01/29/2016 11:47:37 AM,01/29/2016 12:03:33 PM,01/29/2016 12:22:52 PM,Code 2 Transport,01/29/2016 01:06:13 PM,600 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7976706398663, -122.407807028055)",160291373-57 -160033220,AM24,16001387,Medical Incident,01/03/2016,01/03/2016,01/03/2016 10:16:09 PM,01/03/2016 10:19:22 PM,01/03/2016 10:20:09 PM,01/03/2016 10:20:48 PM,01/03/2016 10:29:55 PM,01/03/2016 10:46:23 PM,01/03/2016 10:55:22 PM,Code 2 Transport,01/03/2016 11:23:40 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160033220-AM24 -160910087,KM07,16035926,Medical Incident,03/31/2016,03/30/2016,03/31/2016 12:40:35 AM,03/31/2016 12:42:24 AM,03/31/2016 12:43:33 AM,03/31/2016 12:43:55 AM,03/31/2016 12:48:51 AM,03/31/2016 01:13:36 AM,03/31/2016 01:40:04 AM,Code 2 Transport,03/31/2016 02:00:44 AM,0 Block of TURK ST,San Francisco,94102,B03,1,1365,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",160910087-KM07 -130980368,E31,13033003,Citizen Assist / Service Call,04/08/2013,04/08/2013,04/08/2013 06:02:42 PM,04/08/2013 06:03:53 PM,04/08/2013 06:04:03 PM,04/08/2013 06:05:31 PM,04/08/2013 06:06:29 PM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Fire,04/08/2013 06:10:16 PM,BALBOA ST/6TH AV,SF,94118,B07,31,7123,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7772347790254, -122.464010600266)",130980368-E31 -120870020,E07,12028736,Medical Incident,03/27/2012,03/26/2012,03/27/2012 03:14:17 AM,03/27/2012 03:15:30 AM,03/27/2012 03:16:26 AM,03/27/2012 03:17:58 AM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 03:18:52 AM,23RD ST/MISSION ST,SF,94110,B06,7,5511,3,2,2,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7538365885417, -122.418593946321)",120870020-E07 -112160311,63,11071446,Medical Incident,08/04/2011,08/04/2011,08/04/2011 06:07:27 PM,08/04/2011 06:08:30 PM,08/04/2011 06:08:39 PM,08/04/2011 06:08:59 PM,08/04/2011 06:11:32 PM,08/04/2011 06:26:02 PM,08/04/2011 06:39:12 PM,Code 2 Transport,08/04/2011 07:05:24 PM,0 Block of SENECA AVE,SF,94112,B09,15,8331,3,3,3,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7180164771834, -122.440448190039)",112160311-63 -123160086,E03,12105086,Medical Incident,11/11/2012,11/11/2012,11/11/2012 08:19:10 AM,11/11/2012 08:20:22 AM,11/11/2012 08:20:39 AM,11/11/2012 08:21:53 AM,11/11/2012 08:23:37 AM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/11/2012 08:31:37 AM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",123160086-E03 -112560360,96,11084580,Structure Fire,09/13/2011,09/13/2011,09/13/2011 10:34:29 PM,09/13/2011 10:35:33 PM,09/13/2011 10:35:46 PM,09/13/2011 10:36:19 PM,09/13/2011 10:41:49 PM,09/13/2011 11:04:17 PM,09/13/2011 11:10:09 PM,Code 2 Transport,09/13/2011 11:34:06 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,true,,1,MEDIC,7,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",112560360-96 -130700335,E16,13023467,Medical Incident,03/11/2013,03/11/2013,03/11/2013 06:15:33 PM,03/11/2013 06:17:29 PM,03/11/2013 06:18:26 PM,03/11/2013 06:19:59 PM,03/11/2013 06:22:04 PM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,Other,03/11/2013 06:45:11 PM,3200 Block of PIERCE ST,SF,94123,B04,16,3661,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.7999225654371, -122.439366592122)",130700335-E16 -122860134,KM10,12094566,Medical Incident,10/12/2012,10/12/2012,10/12/2012 11:40:30 AM,10/12/2012 11:42:01 AM,10/12/2012 11:42:48 AM,10/12/2012 11:45:51 AM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,04/25/2016 01:56:20 PM,Other,10/12/2012 11:46:38 AM,1000 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7817615940745, -122.411058175414)",122860134-KM10 -122480061,E10,12081893,Medical Incident,09/04/2012,09/03/2012,09/04/2012 05:39:48 AM,09/04/2012 05:40:31 AM,09/04/2012 05:40:53 AM,09/04/2012 05:42:51 AM,09/04/2012 05:45:18 AM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/04/2012 05:54:30 AM,2900 Block of PINE ST,SF,94115,B05,10,4263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7866401451507, -122.444395104281)",122480061-E10 -160570235,KM03,16022600,Medical Incident,02/26/2016,02/25/2016,02/26/2016 02:09:41 AM,02/26/2016 02:09:41 AM,02/26/2016 02:09:55 AM,02/26/2016 02:11:10 AM,02/26/2016 02:17:37 AM,02/26/2016 02:37:17 AM,02/26/2016 02:51:28 AM,Code 2 Transport,02/26/2016 03:26:28 AM,POLK ST/FERN ST,San Francisco,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7882226988277, -122.420210435144)",160570235-KM03 -121700262,B10,12056492,Structure Fire,06/18/2012,06/18/2012,06/18/2012 04:37:58 PM,06/18/2012 04:38:44 PM,06/18/2012 04:39:07 PM,06/18/2012 04:40:50 PM,06/18/2012 04:44:09 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/18/2012 05:15:24 PM,DARTMOUTH ST/DWIGHT ST,SF,94134,B09,42,6321,3,3,3,false,Fire,1,CHIEF,4,9,9,Portola,"(37.7219734345459, -122.410000551295)",121700262-B10 -120340320,E38,12011378,Medical Incident,02/03/2012,02/03/2012,02/03/2012 07:22:50 PM,02/03/2012 07:24:15 PM,02/03/2012 07:24:30 PM,02/03/2012 07:25:30 PM,02/03/2012 07:27:00 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/03/2012 07:40:22 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",120340320-E38 -102710367,T14,10086147,Alarms,09/28/2010,09/28/2010,09/28/2010 07:38:25 PM,09/28/2010 07:40:13 PM,09/28/2010 07:40:37 PM,09/28/2010 07:42:03 PM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Other,09/28/2010 07:47:02 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,,1,TRUCK,3,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",102710367-T14 -131840127,58,13062644,Medical Incident,07/03/2013,07/03/2013,07/03/2013 10:50:50 AM,07/03/2013 10:52:56 AM,07/03/2013 10:53:32 AM,07/03/2013 10:55:46 AM,07/03/2013 11:00:12 AM,07/03/2013 11:09:48 AM,07/03/2013 11:22:11 AM,Code 2 Transport,07/03/2013 11:37:36 AM,600 Block of MISSION ST,SF,94105,B03,1,2178,3,2,2,true,Non Life-threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7865888590763, -122.401692292616)",131840127-58 -131210092,84,13040578,Medical Incident,05/01/2013,04/30/2013,05/01/2013 07:57:47 AM,05/01/2013 07:59:19 AM,05/01/2013 07:59:41 AM,05/01/2013 08:00:24 AM,05/01/2013 08:07:15 AM,05/01/2013 08:17:23 AM,05/01/2013 08:49:35 AM,Code 2 Transport,05/01/2013 09:07:01 AM,WAYLAND ST/GOETTINGEN ST,SF,94134,B10,42,6334,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7256577115788, -122.406071234822)",131210092-84 -160743584,89,16029474,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:29:00 PM,03/14/2016 08:29:00 PM,03/14/2016 08:29:13 PM,03/14/2016 08:29:23 PM,03/14/2016 08:45:20 PM,03/14/2016 09:01:46 PM,03/14/2016 09:15:38 PM,Code 2 Transport,03/14/2016 09:57:02 PM,700 Block of LAKE MERCED BLVD,San Francisco,94132,B08,19,8855,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.725763939763, -122.484189366799)",160743584-89 -120780301,KM11,12025972,Medical Incident,03/18/2012,03/18/2012,03/18/2012 05:41:09 PM,03/18/2012 05:41:38 PM,03/18/2012 05:41:50 PM,03/18/2012 05:42:21 PM,03/18/2012 05:48:31 PM,03/18/2012 06:15:02 PM,03/18/2012 06:15:07 PM,Code 2 Transport,03/18/2012 06:39:31 PM,MASON ST/JEFFERSON ST,SF,94133,B01,28,1344,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8084210588577, -122.414164435002)",120780301-KM11 -131860311,94,13063543,Medical Incident,07/05/2013,07/05/2013,07/05/2013 05:49:45 PM,07/05/2013 05:52:22 PM,07/05/2013 05:58:42 PM,07/05/2013 05:58:46 PM,07/05/2013 06:12:43 PM,07/05/2013 06:41:34 PM,07/05/2013 06:48:05 PM,Code 2 Transport,07/05/2013 07:08:17 PM,1500 Block of BROADWAY,SF,94109,B04,41,3152,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",131860311-94 -121380287,E01,12045935,Medical Incident,05/17/2012,05/17/2012,05/17/2012 05:21:42 PM,05/17/2012 05:22:03 PM,05/17/2012 05:22:58 PM,05/17/2012 05:27:55 PM,05/17/2012 05:31:17 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/17/2012 05:49:32 PM,HAWTHORNE ST/HARRISON ST,SF,94107,B03,8,2151,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7834407522825, -122.396262402533)",121380287-E01 -160340908,75,16013296,Medical Incident,02/03/2016,02/03/2016,02/03/2016 09:20:33 AM,02/03/2016 09:20:33 AM,02/03/2016 09:20:49 AM,02/03/2016 09:20:56 AM,02/03/2016 09:27:18 AM,02/03/2016 09:42:52 AM,02/03/2016 10:08:59 AM,Code 2 Transport,02/03/2016 10:41:46 AM,POST ST/STOCKTON ST,San Francisco,94108,B01,1,1316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7884994798068, -122.406771145217)",160340908-75 -111450117,96,11048122,Medical Incident,05/25/2011,05/25/2011,05/25/2011 11:02:52 AM,05/25/2011 11:04:48 AM,05/25/2011 11:05:35 AM,05/25/2011 11:05:42 AM,04/25/2016 02:04:27 PM,05/25/2011 11:33:04 AM,05/25/2011 11:45:48 AM,Code 2 Transport,05/25/2011 12:29:23 PM,0 Block of ESPANOLA ST,SF,94124,B10,17,6641,1,1,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",111450117-96 -120670219,E08,12022233,Industrial Accidents,03/07/2012,03/07/2012,03/07/2012 01:04:58 PM,03/07/2012 01:05:32 PM,03/07/2012 01:06:50 PM,03/07/2012 01:08:24 PM,03/07/2012 01:10:53 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,03/07/2012 01:51:32 PM,600 Block of 16TH ST,SF,94158,B03,8,2364,3,3,3,true,Fire,1,ENGINE,1,3,6,Potrero Hill,"(37.7666921828262, -122.391724348278)",120670219-E08 -160530115,AM18,16021034,Medical Incident,02/22/2016,02/21/2016,02/22/2016 01:17:47 AM,02/22/2016 01:18:53 AM,02/22/2016 01:19:21 AM,02/22/2016 01:19:50 AM,02/22/2016 01:25:29 AM,02/22/2016 01:46:44 AM,02/22/2016 02:36:18 AM,Code 2 Transport,02/22/2016 02:36:20 AM,3600 Block of 21ST ST,San Francisco,94114,B06,11,5461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Castro/Upper Market,"(37.7564818532329, -122.429008644145)",160530115-AM18 -131230311,81,13041546,Medical Incident,05/03/2013,05/03/2013,05/03/2013 03:50:35 PM,05/03/2013 03:52:10 PM,05/03/2013 03:52:33 PM,05/03/2013 03:55:06 PM,05/03/2013 03:58:33 PM,05/03/2013 04:03:55 PM,05/03/2013 04:19:20 PM,Code 2 Transport,05/03/2013 04:55:31 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",131230311-81 -132660040,KM07,13090128,Medical Incident,09/23/2013,09/22/2013,09/23/2013 03:43:16 AM,09/23/2013 03:45:37 AM,09/23/2013 03:46:03 AM,09/23/2013 03:46:49 AM,09/23/2013 03:53:39 AM,09/23/2013 04:10:48 AM,09/23/2013 04:15:37 AM,Code 2 Transport,09/23/2013 04:57:55 AM,3000 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7525767678894, -122.413806459846)",132660040-KM07 -133430155,B01,13116290,Alarms,12/09/2013,12/09/2013,12/09/2013 11:02:41 AM,12/09/2013 11:02:42 AM,12/09/2013 11:03:03 AM,12/09/2013 11:03:36 AM,12/09/2013 11:08:21 AM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/09/2013 11:10:23 AM,600 Block of SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,Alarm,1,CHIEF,2,1,3,Nob Hill,"(37.7888577062877, -122.411053107983)",133430155-B01 -121820160,T01,12060583,Medical Incident,06/30/2012,06/30/2012,06/30/2012 11:40:35 AM,06/30/2012 11:41:45 AM,06/30/2012 11:42:10 AM,06/30/2012 11:42:51 AM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,06/30/2012 11:47:42 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,3,6,South of Market,"(37.7822305756448, -122.410292026777)",121820160-T01 -122650111,93,12087491,Medical Incident,09/21/2012,09/21/2012,09/21/2012 10:35:25 AM,09/21/2012 10:37:17 AM,09/21/2012 10:39:51 AM,09/21/2012 10:40:36 AM,09/21/2012 10:49:01 AM,09/21/2012 11:04:28 AM,09/21/2012 11:25:04 AM,Code 2 Transport,09/21/2012 11:50:06 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",122650111-93 -121640347,75,12054532,Medical Incident,06/12/2012,06/12/2012,06/12/2012 08:34:03 PM,06/12/2012 08:37:08 PM,06/12/2012 08:37:52 PM,06/12/2012 08:38:38 PM,06/12/2012 08:39:41 PM,06/12/2012 08:58:55 PM,06/12/2012 09:02:52 PM,Code 2 Transport,06/12/2012 09:27:05 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",121640347-75 -130600244,68,13020172,Traffic Collision,03/01/2013,03/01/2013,03/01/2013 03:41:25 PM,03/01/2013 03:45:06 PM,03/01/2013 03:45:49 PM,03/01/2013 03:47:27 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 03:54:12 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,Potentially Life-Threatening,1,MEDIC,6,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",130600244-68 -160470266,75,16018772,Medical Incident,02/16/2016,02/15/2016,02/16/2016 03:10:35 AM,02/16/2016 03:10:35 AM,02/16/2016 03:10:44 AM,02/16/2016 03:11:02 AM,02/16/2016 03:22:47 AM,02/16/2016 03:54:44 AM,02/16/2016 04:08:04 AM,Code 2 Transport,02/16/2016 04:24:30 AM,0 Block of DORADO TER,San Francisco,94112,B09,15,8531,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7265374147017, -122.460652208639)",160470266-75 -160141652,74,16005557,Traffic Collision,01/14/2016,01/14/2016,01/14/2016 12:22:31 PM,01/14/2016 12:23:19 PM,01/14/2016 12:24:52 PM,01/14/2016 12:25:03 PM,01/14/2016 12:27:30 PM,01/14/2016 12:45:41 PM,01/14/2016 12:57:43 PM,Code 2 Transport,01/14/2016 01:43:39 PM,DIVISION ST/FLORIDA ST,San Francisco,94103,B02,29,5221,2,A,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7686927821621, -122.411758829475)",160141652-74 -140380121,T09,14012769,"Extrication / Entrapped (Machinery, Vehicle)",02/07/2014,02/07/2014,02/07/2014 10:16:09 AM,02/07/2014 10:16:44 AM,02/07/2014 10:19:57 AM,02/07/2014 10:22:04 AM,02/07/2014 10:24:10 AM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 10:54:54 AM,1500 Block of CORTLAND AVE,SF,94110,B10,32,5725,,3,3,false,Fire,1,TRUCK,3,10,9,Bernal Heights,"(37.7397539705219, -122.409182991807)",140380121-T09 -160012463,KM09,16000377,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:21:37 PM,01/01/2016 03:21:50 PM,01/01/2016 03:22:24 PM,01/01/2016 03:23:25 PM,01/01/2016 03:31:03 PM,01/01/2016 03:45:02 PM,01/01/2016 04:22:32 PM,Code 2 Transport,01/01/2016 04:36:20 PM,CLAY ST/DRUMM ST,San Francisco,94111,B01,13,1133,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",160012463-KM09 -160263971,AM22,16010506,Traffic Collision,01/26/2016,01/26/2016,01/26/2016 11:38:51 PM,01/26/2016 11:38:51 PM,01/26/2016 11:39:50 PM,01/26/2016 11:40:29 PM,01/26/2016 11:46:39 PM,01/27/2016 12:24:48 AM,01/27/2016 01:06:52 AM,Code 2 Transport,01/27/2016 01:29:50 AM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",160263971-AM22 -112070089,E39,11068305,Medical Incident,07/26/2011,07/26/2011,07/26/2011 08:34:52 AM,07/26/2011 08:36:18 AM,07/26/2011 08:36:29 AM,07/26/2011 08:37:36 AM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,04/25/2016 02:03:29 PM,Other,07/26/2011 08:42:34 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",112070089-E39 -133370177,E01,13114214,Medical Incident,12/03/2013,12/03/2013,12/03/2013 12:03:34 PM,12/03/2013 12:04:43 PM,12/03/2013 12:05:36 PM,12/03/2013 12:05:57 PM,12/03/2013 12:07:25 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/03/2013 12:24:18 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7815063666429, -122.407932868203)",133370177-E01 -123000309,AM10,12099551,Medical Incident,10/26/2012,10/26/2012,10/26/2012 07:45:13 PM,10/26/2012 07:48:57 PM,10/26/2012 07:51:04 PM,04/25/2016 01:56:06 PM,10/26/2012 08:03:44 PM,10/26/2012 08:21:25 PM,10/26/2012 08:32:16 PM,Code 2 Transport,10/26/2012 07:52:46 PM,3600 Block of MISSION ST,SF,94110,B06,32,5631,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Bernal Heights,"(37.7381275371551, -122.424063544101)",123000309-AM10 -103360044,95,10107383,Medical Incident,12/02/2010,12/01/2010,12/02/2010 05:08:34 AM,12/02/2010 05:11:03 AM,12/02/2010 05:12:12 AM,12/02/2010 05:12:34 AM,12/02/2010 05:27:08 AM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,No Merit,12/02/2010 05:31:58 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",103360044-95 -121780129,E03,12059207,Medical Incident,06/26/2012,06/26/2012,06/26/2012 10:47:34 AM,06/26/2012 10:48:58 AM,06/26/2012 10:49:23 AM,06/26/2012 10:50:39 AM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 10:51:27 AM,1400 Block of PINE ST,SF,94109,B04,3,3122,E,E,3,true,Potentially Life-Threatening,1,ENGINE,4,4,3,Nob Hill,"(37.7896709500928, -122.419657120752)",121780129-E03 -110320282,AM14,11010576,Medical Incident,02/01/2011,02/01/2011,02/01/2011 05:48:09 PM,02/01/2011 05:49:28 PM,02/01/2011 05:49:56 PM,02/01/2011 05:50:29 PM,02/01/2011 05:54:18 PM,04/25/2016 02:06:18 PM,04/25/2016 02:06:18 PM,Other,02/01/2011 05:58:52 PM,500 Block of ALABAMA ST,SF,94110,B02,7,5244,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7622752702451, -122.412180783552)",110320282-AM14 -102540081,E12,10080212,Odor (Strange / Unknown),09/11/2010,09/10/2010,09/11/2010 06:54:59 AM,09/11/2010 06:56:14 AM,09/11/2010 06:56:54 AM,09/11/2010 06:59:44 AM,09/11/2010 07:02:11 AM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Fire,09/11/2010 07:05:23 AM,"CALL BOX: 500 BUENA VISTA WEST AV,SF",SF,94117,B05,12,5142,3,3,3,true,,1,ENGINE,1,5,8,Haight Ashbury,"(37.7659949367554, -122.442564264503)",102540081-E12 -112600044,E22,11085632,Medical Incident,09/17/2011,09/16/2011,09/17/2011 02:44:57 AM,09/17/2011 02:46:27 AM,09/17/2011 02:46:58 AM,09/17/2011 02:48:29 AM,09/17/2011 02:50:20 AM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 02:54:46 AM,1500 Block of JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7616843815068, -122.478602895308)",112600044-E22 -160361351,KM02,16014194,Medical Incident,02/05/2016,02/05/2016,02/05/2016 10:21:16 AM,02/05/2016 10:23:23 AM,02/05/2016 10:23:53 AM,02/05/2016 10:24:32 AM,02/05/2016 10:28:49 AM,02/05/2016 11:09:21 AM,02/05/2016 11:31:54 AM,Code 2 Transport,02/05/2016 11:42:20 AM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160361351-KM02 -160722610,68,16028697,Traffic Collision,03/12/2016,03/12/2016,03/12/2016 05:56:42 PM,03/12/2016 05:59:44 PM,03/12/2016 06:00:21 PM,03/12/2016 06:00:29 PM,03/12/2016 06:11:36 PM,03/12/2016 06:29:15 PM,03/12/2016 06:58:13 PM,Code 2 Transport,03/12/2016 07:30:35 PM,GREENWICH ST/VAN NESS AV,San Francisco,94109,B01,16,3132,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Russian Hill,"(37.8004150271931, -122.424358668723)",160722610-68 -123390225,T03,12113091,Medical Incident,12/04/2012,12/04/2012,12/04/2012 02:16:10 PM,12/04/2012 02:18:25 PM,12/04/2012 02:20:57 PM,12/04/2012 02:21:18 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 02:29:50 PM,0 Block of GROVE ST,SF,94102,B02,36,1552,2,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7788323158792, -122.415642487855)",123390225-T03 -160112603,88,16004486,Medical Incident,01/11/2016,01/11/2016,01/11/2016 05:14:39 PM,01/11/2016 05:17:23 PM,01/11/2016 05:18:08 PM,01/11/2016 05:24:37 PM,01/11/2016 05:28:15 PM,01/11/2016 05:43:04 PM,01/11/2016 06:17:28 PM,Code 2 Transport,01/11/2016 07:11:19 PM,100 Block of PRAGUE ST,San Francisco,94112,B09,43,6163,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7197467558887, -122.426666990708)",160112603-88 -121220065,E33,12040403,Medical Incident,05/01/2012,05/01/2012,05/01/2012 08:03:44 AM,05/01/2012 08:04:25 AM,05/01/2012 08:04:49 AM,04/25/2016 01:58:54 PM,05/01/2012 08:08:44 AM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,Other,05/01/2012 08:06:04 AM,200 Block of LOBOS ST,SF,94112,B09,33,8415,3,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7149510870481, -122.460827575743)",121220065-E33 -160791193,62,16031365,Medical Incident,03/19/2016,03/19/2016,03/19/2016 10:07:27 AM,03/19/2016 10:08:15 AM,03/19/2016 10:08:51 AM,03/19/2016 10:09:00 AM,03/19/2016 10:12:20 AM,03/19/2016 10:29:18 AM,03/19/2016 10:31:07 AM,Code 3 Transport,03/19/2016 11:23:11 AM,1800 Block of WEBSTER ST,San Francisco,94115,B04,38,3512,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,5,Pacific Heights,"(37.7874727820298, -122.431793233847)",160791193-62 -130290236,T03,13009956,Alarms,01/29/2013,01/29/2013,01/29/2013 02:01:36 PM,01/29/2013 02:03:01 PM,01/29/2013 02:03:07 PM,01/29/2013 02:04:30 PM,01/29/2013 02:06:51 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/29/2013 02:14:06 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",130290236-T03 -160153309,62,16006126,Medical Incident,01/15/2016,01/15/2016,01/15/2016 07:18:02 PM,01/15/2016 07:18:56 PM,01/15/2016 07:19:22 PM,01/15/2016 07:19:29 PM,01/15/2016 07:24:04 PM,01/15/2016 07:36:56 PM,01/15/2016 07:53:42 PM,Code 2 Transport,01/15/2016 08:27:32 PM,600 Block of POLK ST,San Francisco,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",160153309-62 -103420015,94,10109330,Medical Incident,12/08/2010,12/07/2010,12/08/2010 12:49:25 AM,12/08/2010 12:51:15 AM,12/08/2010 12:51:55 AM,12/08/2010 12:51:59 AM,12/08/2010 12:58:08 AM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,No Merit,12/08/2010 01:09:59 AM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",103420015-94 -111470128,59,11048737,Medical Incident,05/27/2011,05/27/2011,05/27/2011 10:11:05 AM,05/27/2011 10:12:17 AM,05/27/2011 10:12:27 AM,05/27/2011 10:12:37 AM,05/27/2011 10:20:00 AM,05/27/2011 10:34:57 AM,04/25/2016 02:04:26 PM,Code 2 Transport,05/27/2011 11:08:56 AM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",111470128-59 -133620236,B02,13123043,Alarms,12/28/2013,12/28/2013,12/28/2013 04:09:09 PM,12/28/2013 04:10:41 PM,12/28/2013 04:11:02 PM,12/28/2013 04:11:45 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 04:15:12 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",133620236-B02 -120020156,E24,12000715,Other,01/02/2012,01/02/2012,01/02/2012 01:05:53 PM,01/02/2012 01:07:34 PM,01/02/2012 01:07:44 PM,01/02/2012 01:08:44 PM,01/02/2012 01:12:05 PM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Fire,01/02/2012 01:24:23 PM,3800 Block of 22ND ST,SF,94114,B06,24,5466,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7546156128988, -122.433291053117)",120020156-E24 -111930288,E21,11063806,Traffic Collision,07/12/2011,07/12/2011,07/12/2011 06:17:09 PM,07/12/2011 06:17:09 PM,07/12/2011 06:18:13 PM,07/12/2011 06:19:56 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,04/25/2016 02:03:42 PM,Other,07/12/2011 06:22:00 PM,STEINER ST/TURK ST,SF,94115,B05,5,3535,3,3,3,false,,1,ENGINE,8,5,5,Western Addition,"(37.7802866938723, -122.433784545919)",111930288-E21 -121390136,T03,12046122,Alarms,05/18/2012,05/18/2012,05/18/2012 10:51:40 AM,05/18/2012 10:53:18 AM,05/18/2012 10:53:32 AM,05/18/2012 10:53:40 AM,05/18/2012 10:56:21 AM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/18/2012 10:57:56 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Alarm,1,TRUCK,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",121390136-T03 -130580375,B01,13019611,Alarms,02/27/2013,02/27/2013,02/27/2013 08:53:52 PM,02/27/2013 08:55:54 PM,02/27/2013 08:56:09 PM,02/27/2013 08:57:17 PM,02/27/2013 08:59:18 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Fire,02/27/2013 09:09:54 PM,400 Block of UNION ST,SF,94133,B01,28,1252,3,3,3,false,Alarm,1,CHIEF,2,1,3,North Beach,"(37.8007416735915, -122.407203616527)",130580375-B01 -103430079,87,10109762,Medical Incident,12/09/2010,12/08/2010,12/09/2010 07:06:31 AM,12/09/2010 07:07:50 AM,12/09/2010 07:08:16 AM,12/09/2010 07:08:40 AM,12/09/2010 07:17:55 AM,12/09/2010 07:35:11 AM,12/09/2010 07:55:35 AM,Code 2 Transport,12/09/2010 08:24:32 AM,800 Block of 32ND AVE,SF,94121,B07,14,7242,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7731638886859, -122.491686815577)",103430079-87 -160830011,62,16032798,Medical Incident,03/23/2016,03/22/2016,03/23/2016 12:06:12 AM,03/23/2016 12:06:12 AM,03/23/2016 12:07:30 AM,03/23/2016 12:07:43 AM,03/23/2016 12:15:24 AM,03/23/2016 12:28:09 AM,03/23/2016 12:39:18 AM,Code 2 Transport,03/23/2016 01:06:30 AM,SAN BRUNO AV/ARLETA AV,San Francisco,94134,B10,44,6265,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",160830011-62 -102280007,99,10071640,Medical Incident,08/16/2010,08/15/2010,08/16/2010 12:39:22 AM,08/16/2010 12:40:10 AM,08/16/2010 12:40:29 AM,08/16/2010 12:40:52 AM,08/16/2010 12:46:22 AM,08/16/2010 01:04:45 AM,08/16/2010 01:09:59 AM,Code 2 Transport,08/16/2010 01:25:18 AM,500 Block of JONES ST,SF,94102,B01,3,1462,3,1,2,true,,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",102280007-99 -110180255,E01,11006007,Medical Incident,01/18/2011,01/18/2011,01/18/2011 06:10:16 PM,01/18/2011 06:12:47 PM,01/18/2011 06:29:00 PM,01/18/2011 06:30:52 PM,01/18/2011 06:37:30 PM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 06:42:51 PM,MAIN ST/FOLSOM ST,SF,94105,B03,35,2117,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7893692677435, -122.391858291445)",110180255-E01 -103490238,78,10111967,Medical Incident,12/15/2010,12/15/2010,12/15/2010 03:54:15 PM,12/15/2010 03:55:46 PM,12/15/2010 03:55:59 PM,12/15/2010 03:56:25 PM,12/15/2010 04:03:17 PM,04/25/2016 02:07:06 PM,12/15/2010 04:18:22 PM,Patient Declined Transport,12/15/2010 04:43:57 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",103490238-78 -133310027,77,13112241,Medical Incident,11/27/2013,11/26/2013,11/27/2013 02:06:58 AM,11/27/2013 02:07:45 AM,11/27/2013 02:08:08 AM,11/27/2013 02:08:46 AM,11/27/2013 02:13:47 AM,11/27/2013 02:32:06 AM,11/27/2013 02:41:46 AM,Code 2 Transport,11/27/2013 03:14:25 AM,600 Block of 3RD AVE,SF,94118,B07,31,7121,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7764454675873, -122.46079763531)",133310027-77 -160862146,64,16034215,Medical Incident,03/26/2016,03/26/2016,03/26/2016 02:57:26 PM,03/26/2016 02:58:43 PM,03/26/2016 02:59:01 PM,03/26/2016 02:59:10 PM,03/26/2016 03:08:40 PM,03/26/2016 03:34:15 PM,03/26/2016 03:55:03 PM,Code 2 Transport,03/26/2016 04:45:55 PM,MARKET ST/BUCHANAN ST,San Francisco,94114,B02,36,3416,2,3,3,false,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7696025973262, -122.426309439286)",160862146-64 -130440221,KM10,13014947,Medical Incident,02/13/2013,02/13/2013,02/13/2013 01:22:47 PM,02/13/2013 01:23:25 PM,02/13/2013 01:23:56 PM,02/13/2013 01:24:35 PM,02/13/2013 01:30:58 PM,02/13/2013 01:46:15 PM,02/13/2013 02:21:07 PM,Code 2 Transport,02/13/2013 03:13:37 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",130440221-KM10 -110240152,68,11007842,Medical Incident,01/24/2011,01/24/2011,01/24/2011 10:46:38 AM,01/24/2011 10:47:18 AM,01/24/2011 10:48:01 AM,01/24/2011 10:48:34 AM,01/24/2011 10:54:34 AM,01/24/2011 11:11:45 AM,01/24/2011 11:24:51 AM,Code 2 Transport,01/24/2011 12:00:44 PM,700 Block of CASTRO ST,SF,94114,B06,24,5462,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.75648579729, -122.434652830938)",110240152-68 -123610021,E07,12120666,Medical Incident,12/26/2012,12/25/2012,12/26/2012 01:53:24 AM,12/26/2012 01:53:51 AM,12/26/2012 01:54:22 AM,12/26/2012 01:56:45 AM,12/26/2012 01:58:48 AM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Other,12/26/2012 02:07:05 AM,3100 Block of 24TH ST,SF,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7523514545194, -122.415713588521)",123610021-E07 -132140173,66,13072252,Medical Incident,08/02/2013,08/02/2013,08/02/2013 12:53:23 PM,08/02/2013 12:54:49 PM,08/02/2013 12:55:08 PM,08/02/2013 12:55:24 PM,08/02/2013 01:04:23 PM,08/02/2013 01:24:47 PM,08/02/2013 01:31:33 PM,Code 2 Transport,08/02/2013 01:57:23 PM,300 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7841991603162, -122.414267551598)",132140173-66 -111070127,E01,11035348,Medical Incident,04/17/2011,04/17/2011,04/17/2011 10:35:06 AM,04/17/2011 10:36:46 AM,04/17/2011 10:37:02 AM,04/17/2011 10:38:16 AM,04/17/2011 10:42:12 AM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 10:43:03 AM,1100 Block of MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7785895740312, -122.411626152299)",111070127-E01 -122300150,B03,12076189,Alarms,08/17/2012,08/17/2012,08/17/2012 10:24:54 AM,08/17/2012 10:25:57 AM,08/17/2012 10:26:16 AM,08/17/2012 10:26:28 AM,08/17/2012 10:29:25 AM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 10:31:06 AM,700 Block of YORK ST,SF,94110,B02,7,5426,3,3,3,false,Alarm,1,CHIEF,1,6,10,Mission,"(37.7598905104052, -122.409037245905)",122300150-B03 -160601257,AM12,16023861,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:50:34 AM,02/29/2016 10:52:25 AM,02/29/2016 10:52:55 AM,02/29/2016 10:53:41 AM,02/29/2016 10:58:01 AM,02/29/2016 11:08:17 AM,02/29/2016 11:30:31 AM,Code 2 Transport,02/29/2016 12:03:44 PM,500 Block of 7TH ST,San Francisco,94103,B03,8,2311,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7736273110009, -122.404025808132)",160601257-AM12 -160502233,73,16020139,Medical Incident,02/19/2016,02/19/2016,02/19/2016 03:03:25 PM,02/19/2016 03:13:40 PM,02/19/2016 03:14:07 PM,02/19/2016 03:19:43 PM,02/19/2016 03:27:51 PM,02/19/2016 03:46:05 PM,02/19/2016 03:57:07 PM,Code 2 Transport,02/19/2016 04:32:22 PM,1900 Block of IRVING ST,San Francisco,94122,B08,22,7424,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7635459300897, -122.478732502612)",160502233-73 -160173031,65,16006985,Medical Incident,01/17/2016,01/17/2016,01/17/2016 08:21:02 PM,01/17/2016 08:21:58 PM,01/17/2016 08:22:28 PM,01/17/2016 08:22:34 PM,01/17/2016 08:25:46 PM,01/17/2016 08:40:28 PM,01/17/2016 08:46:09 PM,Code 2 Transport,01/17/2016 09:26:20 PM,400 Block of EDDY ST,San Francisco,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",160173031-65 -120690363,88,12023051,Medical Incident,03/09/2012,03/09/2012,03/09/2012 09:10:24 PM,03/09/2012 09:11:51 PM,03/09/2012 09:13:04 PM,03/09/2012 09:13:12 PM,03/09/2012 09:22:40 PM,03/09/2012 09:43:16 PM,03/09/2012 09:58:50 PM,Code 3 Transport,03/09/2012 10:24:04 PM,600 Block of PACIFIC AVE,SF,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7969499169338, -122.406009670118)",120690363-88 -123620221,66,12121191,Medical Incident,12/27/2012,12/27/2012,12/27/2012 03:27:00 PM,12/27/2012 03:28:31 PM,12/27/2012 03:30:12 PM,12/27/2012 03:31:22 PM,12/27/2012 03:53:46 PM,12/27/2012 04:13:35 PM,12/27/2012 04:32:48 PM,Code 2 Transport,12/27/2012 04:59:12 PM,1600 Block of GROVE ST,SF,94117,B05,21,4361,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7751365744228, -122.443758210399)",123620221-66 -112640224,FB1,11087210,Structure Fire,09/21/2011,09/21/2011,09/21/2011 01:55:28 PM,09/21/2011 01:56:17 PM,09/21/2011 01:56:32 PM,09/21/2011 02:42:22 PM,09/21/2011 02:51:14 PM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/21/2011 03:32:18 PM,TULARE ST/INDIANA ST,SF,94124,B10,25,2635,3,3,3,false,,1,SUPPORT,5,None,10,None,"(37.7476067377254, -122.390174876659)",112640224-FB1 -140330095,E29,14011132,Medical Incident,02/02/2014,02/02/2014,02/02/2014 08:55:33 AM,02/02/2014 08:56:11 AM,02/02/2014 08:56:30 AM,02/02/2014 08:57:54 AM,02/02/2014 09:02:29 AM,04/25/2016 01:48:25 PM,04/25/2016 01:48:25 PM,Other,02/02/2014 09:05:51 AM,1200 Block of HARRISON ST,SF,94103,B03,29,2333,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7732598036539, -122.40905086984)",140330095-E29 -133450471,E13,13117239,Medical Incident,12/11/2013,12/11/2013,12/11/2013 11:49:27 PM,12/11/2013 11:50:20 PM,12/11/2013 11:50:56 PM,12/11/2013 11:52:22 PM,12/11/2013 11:55:24 PM,04/25/2016 01:49:19 PM,04/25/2016 01:49:19 PM,Other,12/12/2013 12:15:24 AM,1500 Block of TAYLOR ST,SF,94133,B01,2,1442,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7963115278702, -122.413342007712)",133450471-E13 -160030868,67,16001106,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:41:56 AM,01/03/2016 08:42:30 AM,01/03/2016 08:42:47 AM,01/03/2016 08:43:15 AM,01/03/2016 08:46:09 AM,01/03/2016 09:03:13 AM,01/03/2016 09:18:58 AM,Code 2 Transport,01/03/2016 09:49:24 AM,3200 Block of 21ST ST,San Francisco,94110,B06,7,5456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7570135247226, -122.420179949433)",160030868-67 -132470377,93,13083507,Medical Incident,09/04/2013,09/04/2013,09/04/2013 09:53:58 PM,09/04/2013 09:55:02 PM,09/04/2013 09:56:42 PM,04/25/2016 01:50:57 PM,09/04/2013 09:56:44 PM,04/25/2016 01:50:57 PM,04/25/2016 01:50:57 PM,Other,04/25/2016 01:50:57 PM,900 Block of MARKET ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",132470377-93 -102840051,77,10090311,Medical Incident,10/11/2010,10/10/2010,10/11/2010 06:05:56 AM,10/11/2010 06:07:44 AM,10/11/2010 06:08:46 AM,10/11/2010 06:09:27 AM,10/11/2010 06:23:05 AM,10/11/2010 06:39:57 AM,10/11/2010 06:52:26 AM,Code 2 Transport,10/11/2010 07:12:08 AM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,1,1,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",102840051-77 -131400064,55,13047322,Medical Incident,05/20/2013,05/19/2013,05/20/2013 06:31:02 AM,05/20/2013 06:31:42 AM,05/20/2013 06:51:40 AM,04/25/2016 01:52:42 PM,05/20/2013 07:11:39 AM,05/20/2013 07:15:10 AM,05/20/2013 07:41:45 AM,Code 2 Transport,05/20/2013 08:17:25 AM,1900 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,2,3,3,false,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",131400064-55 -131650324,E05,13056165,Medical Incident,06/14/2013,06/14/2013,06/14/2013 07:04:04 PM,06/14/2013 07:04:10 PM,06/14/2013 07:07:27 PM,06/14/2013 07:08:24 PM,06/14/2013 07:19:16 PM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,No Merit,06/14/2013 07:23:29 PM,EDDY ST/CYRIL MAGNIN ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",131650324-E05 -133560228,E17,13121055,Medical Incident,12/22/2013,12/22/2013,12/22/2013 01:53:30 PM,12/22/2013 01:55:12 PM,12/22/2013 01:55:58 PM,04/25/2016 01:49:07 PM,12/22/2013 01:58:42 PM,04/25/2016 01:49:07 PM,04/25/2016 01:49:07 PM,Other,12/22/2013 02:30:14 PM,1300 Block of QUESADA AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7295945473081, -122.384963446158)",133560228-E17 -160490134,KM07,16019568,Medical Incident,02/18/2016,02/17/2016,02/18/2016 01:10:07 AM,02/18/2016 01:19:04 AM,02/18/2016 01:20:33 AM,02/18/2016 01:21:19 AM,02/18/2016 01:24:44 AM,02/18/2016 01:41:04 AM,02/18/2016 01:46:40 AM,Code 2 Transport,02/18/2016 02:16:05 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,E,E,3,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160490134-KM07 -133650206,55,13123962,Medical Incident,12/31/2013,12/31/2013,12/31/2013 02:22:39 PM,12/31/2013 02:23:21 PM,12/31/2013 02:23:44 PM,12/31/2013 02:23:56 PM,12/31/2013 02:32:22 PM,12/31/2013 02:49:25 PM,04/25/2016 01:48:58 PM,Patient Declined Transport,12/31/2013 02:52:34 PM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",133650206-55 -160850528,65,16033657,Medical Incident,03/25/2016,03/24/2016,03/25/2016 06:13:46 AM,03/25/2016 06:15:33 AM,03/25/2016 06:16:15 AM,03/25/2016 06:16:34 AM,03/25/2016 06:26:48 AM,03/25/2016 06:45:21 AM,03/25/2016 07:09:12 AM,Code 2 Transport,03/25/2016 07:47:18 AM,0 Block of REUEL CT,San Francisco,94124,B10,25,652,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7366455889749, -122.382883893412)",160850528-65 -160320827,52,16012490,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:55:31 AM,02/01/2016 08:57:01 AM,02/01/2016 08:57:57 AM,02/01/2016 08:58:32 AM,02/01/2016 09:06:57 AM,02/01/2016 09:46:01 AM,02/01/2016 09:46:07 AM,Code 2 Transport,02/01/2016 10:14:03 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160320827-52 -112950196,E07,11097848,Medical Incident,10/22/2011,10/22/2011,10/22/2011 02:40:41 PM,10/22/2011 02:41:14 PM,10/22/2011 02:41:22 PM,10/22/2011 02:41:39 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 02:47:34 PM,VALENCIA ST/21ST ST,SF,94110,B06,7,5456,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7569020093743, -122.421117541576)",112950196-E07 -102280249,E15,10071832,Medical Incident,08/16/2010,08/16/2010,08/16/2010 05:30:01 PM,08/16/2010 05:30:35 PM,08/16/2010 05:30:58 PM,08/16/2010 05:31:40 PM,08/16/2010 05:33:39 PM,08/16/2010 05:43:14 PM,08/16/2010 06:01:34 PM,Other,08/16/2010 06:15:53 PM,1300 Block of CAYUGA AVE,SF,94112,B09,15,8332,3,E,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7186636303732, -122.443891015758)",102280249-E15 -133210002,55,13108888,Medical Incident,11/17/2013,11/16/2013,11/17/2013 12:01:32 AM,11/17/2013 12:03:14 AM,11/17/2013 12:03:33 AM,11/17/2013 12:03:44 AM,11/17/2013 12:08:39 AM,11/17/2013 12:37:49 AM,11/17/2013 12:48:34 AM,Code 2 Transport,11/17/2013 01:15:05 AM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",133210002-55 -130800056,KM07,13026646,Traffic Collision,03/21/2013,03/20/2013,03/21/2013 06:17:01 AM,03/21/2013 06:18:32 AM,03/21/2013 06:19:11 AM,03/21/2013 06:19:52 AM,03/21/2013 06:22:26 AM,03/21/2013 06:44:11 AM,03/21/2013 06:51:33 AM,Code 3 Transport,03/21/2013 07:04:45 AM,VAN NESS AV/GOLDEN GATE AV,SF,94102,B02,36,3164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",130800056-KM07 -160102308,74,16004100,Medical Incident,01/10/2016,01/10/2016,01/10/2016 04:14:15 PM,01/10/2016 04:16:03 PM,01/10/2016 04:16:46 PM,01/10/2016 04:21:09 PM,01/10/2016 04:21:36 PM,01/10/2016 04:43:18 PM,01/10/2016 04:55:47 PM,Code 2 Transport,01/10/2016 05:37:28 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160102308-74 -130070226,E15,13002404,Structure Fire,01/07/2013,01/07/2013,01/07/2013 02:19:19 PM,01/07/2013 02:19:19 PM,01/07/2013 02:19:25 PM,01/07/2013 02:20:07 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 02:21:53 PM,GENEVA AV/TARA ST,SF,94112,B09,15,8313,3,3,3,true,Alarm,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7213968692205, -122.448410646975)",130070226-E15 -132980181,E32,13101196,Medical Incident,10/25/2013,10/25/2013,10/25/2013 12:51:07 PM,10/25/2013 12:51:43 PM,10/25/2013 12:52:13 PM,10/25/2013 12:53:38 PM,10/25/2013 12:57:16 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/25/2013 01:12:52 PM,100 Block of NEY ST,SF,94112,B09,32,5635,2,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7300237012749, -122.427201731646)",132980181-E32 -160770122,53,16030414,Medical Incident,03/17/2016,03/16/2016,03/17/2016 12:46:24 AM,03/17/2016 12:48:27 AM,03/17/2016 12:49:37 AM,03/17/2016 12:50:00 AM,03/17/2016 01:18:35 AM,03/17/2016 01:18:40 AM,03/17/2016 01:27:12 AM,Code 2 Transport,03/17/2016 02:13:07 AM,500 Block of NORTH POINT ST,San Francisco,94133,B01,28,1433,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,North Beach,"(37.8062966202775, -122.416265019979)",160770122-53 -103000160,E02,10095749,Medical Incident,10/27/2010,10/27/2010,10/27/2010 12:02:26 PM,10/27/2010 12:07:06 PM,10/27/2010 12:07:20 PM,10/27/2010 12:08:47 PM,10/27/2010 12:11:38 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 12:25:33 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",103000160-E02 -133100029,E08,13105267,Medical Incident,11/06/2013,11/05/2013,11/06/2013 04:47:53 AM,11/06/2013 04:48:49 AM,11/06/2013 04:49:14 AM,11/06/2013 04:50:34 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,04/25/2016 01:49:54 PM,3RD ST/BRYANT ST,SF,94107,B03,8,2174,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7813212571676, -122.395843500166)",133100029-E08 -130250052,67,13008526,Medical Incident,01/25/2013,01/24/2013,01/25/2013 04:46:42 AM,01/25/2013 04:47:01 AM,01/25/2013 04:47:44 AM,01/25/2013 04:47:51 AM,01/25/2013 04:51:33 AM,01/25/2013 04:54:48 AM,01/25/2013 05:03:05 AM,Code 2 Transport,01/25/2013 05:28:04 AM,0 Block of 4TH ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",130250052-67 -112570257,57,11084805,Traffic Collision,09/14/2011,09/14/2011,09/14/2011 06:03:15 PM,09/14/2011 06:03:44 PM,09/14/2011 06:05:03 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,04/25/2016 02:02:40 PM,Other,09/14/2011 06:10:33 PM,BROADWAY/COLUMBUS AV,SF,94133,B01,2,1311,3,3,3,true,,1,MEDIC,6,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",112570257-57 -140050259,RC1,14001871,Medical Incident,01/05/2014,01/05/2014,01/05/2014 04:55:54 PM,01/05/2014 04:56:46 PM,01/05/2014 04:57:33 PM,01/05/2014 04:57:41 PM,01/05/2014 05:02:56 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 05:04:40 PM,300 Block of HARRISON ST,SF,94105,B03,35,2123,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,3,6,Financial District/South Beach,"(37.7870714019354, -122.391567493465)",140050259-RC1 -113150146,E16,11104663,Medical Incident,11/11/2011,11/11/2011,11/11/2011 12:20:35 PM,11/11/2011 12:22:12 PM,11/11/2011 12:22:25 PM,11/11/2011 12:23:20 PM,11/11/2011 12:25:01 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/11/2011 12:34:10 PM,2600 Block of SCOTT ST,SF,94123,B04,16,4122,1,1,2,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7941143466773, -122.440017653781)",113150146-E16 -123370298,57,12112259,Medical Incident,12/02/2012,12/02/2012,12/02/2012 09:43:28 AM,12/02/2012 09:45:38 AM,12/02/2012 09:48:28 AM,04/25/2016 01:55:31 PM,12/02/2012 10:02:56 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Patient Declined Transport,12/02/2012 10:38:52 AM,3800 Block of LAWTON ST,SF,94122,B08,23,7661,1,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7567090400897, -122.50405502108)",123370298-57 -160401424,61,16015993,Medical Incident,02/09/2016,02/09/2016,02/09/2016 11:16:16 AM,02/09/2016 11:16:45 AM,02/09/2016 11:17:18 AM,02/09/2016 11:17:26 AM,02/09/2016 11:23:39 AM,02/09/2016 11:31:52 AM,02/09/2016 11:38:17 AM,Code 2 Transport,02/09/2016 12:12:43 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160401424-61 -160313489,61,16012350,Medical Incident,01/31/2016,01/31/2016,01/31/2016 09:08:49 PM,01/31/2016 09:10:44 PM,01/31/2016 09:11:04 PM,01/31/2016 09:11:15 PM,01/31/2016 09:22:58 PM,01/31/2016 09:43:54 PM,01/31/2016 09:56:03 PM,Code 2 Transport,01/31/2016 10:27:42 PM,1700 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160313489-61 -140030087,B01,14000961,Alarms,01/03/2014,01/02/2014,01/03/2014 06:39:49 AM,01/03/2014 06:40:58 AM,01/03/2014 06:41:10 AM,01/03/2014 06:43:38 AM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/03/2014 06:56:56 AM,100 Block of ELLIS ST,SF,94102,B03,1,1366,,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",140030087-B01 -112150386,T01,11071156,Alarms,08/03/2011,08/03/2011,08/03/2011 10:28:05 PM,08/03/2011 10:28:05 PM,08/03/2011 10:28:14 PM,08/03/2011 10:29:17 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/03/2011 10:30:59 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7792116845421, -122.4109365738)",112150386-T01 -102350129,E10,10073904,Alarms,08/23/2010,08/23/2010,08/23/2010 10:49:11 AM,08/23/2010 10:51:06 AM,08/23/2010 10:51:17 AM,08/23/2010 10:54:06 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 11:15:35 AM,1900 Block of DIVISADERO ST,SF,94115,B04,10,4156,3,3,3,true,,1,ENGINE,3,4,2,Pacific Heights,"(37.787575889921, -122.440459817613)",102350129-E10 -133170326,E08,13107855,Medical Incident,11/13/2013,11/13/2013,11/13/2013 07:25:31 PM,11/13/2013 07:27:25 PM,11/13/2013 07:31:30 PM,11/13/2013 07:33:21 PM,11/13/2013 07:46:12 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,No Merit,11/13/2013 07:52:20 PM,400 Block of TURK ST,SF,94102,B02,3,1554,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",133170326-E08 -113380102,B07,11111942,Structure Fire,12/04/2011,12/03/2011,12/04/2011 07:09:29 AM,12/04/2011 07:09:29 AM,12/04/2011 07:10:04 AM,12/04/2011 07:10:48 AM,12/04/2011 07:13:34 AM,04/25/2016 02:01:20 PM,04/25/2016 02:01:20 PM,Other,12/04/2011 07:19:22 AM,200 Block of 12TH AVE,SF,94118,B07,31,718,3,3,3,false,,1,CHIEF,1,7,1,Inner Richmond,"(37.7835852895624, -122.470982832694)",113380102-B07 -111280029,54,11042223,Medical Incident,05/08/2011,05/07/2011,05/08/2011 01:58:38 AM,05/08/2011 01:59:02 AM,05/08/2011 01:59:24 AM,05/08/2011 01:59:47 AM,05/08/2011 02:03:32 AM,05/08/2011 02:19:17 AM,05/08/2011 02:45:22 AM,Code 2 Transport,05/08/2011 03:04:29 AM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",111280029-54 -160050775,AM08,16001896,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:37:11 AM,01/05/2016 08:39:10 AM,01/05/2016 08:39:43 AM,01/05/2016 08:41:33 AM,01/05/2016 08:56:12 AM,01/05/2016 09:29:25 AM,01/05/2016 09:29:33 AM,Code 2 Transport,01/05/2016 10:02:38 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160050775-AM08 -140200331,75,14006990,Medical Incident,01/20/2014,01/20/2014,01/20/2014 08:30:10 PM,01/20/2014 08:31:23 PM,01/20/2014 08:32:00 PM,01/20/2014 08:32:35 PM,01/20/2014 08:36:55 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,No Merit,01/20/2014 08:46:25 PM,1500 Block of OAKDALE AVE,SF,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340217594171, -122.389453670256)",140200331-75 -140170376,B09,14005997,Alarms,01/17/2014,01/17/2014,01/17/2014 10:58:53 PM,01/17/2014 11:00:10 PM,01/17/2014 11:00:22 PM,01/17/2014 11:02:12 PM,01/17/2014 11:08:38 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Fire,01/17/2014 11:11:40 PM,1200 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,Alarm,1,CHIEF,3,9,10,Visitacion Valley,"(37.7113973662251, -122.413960846029)",140170376-B09 -121890323,E42,12063091,Medical Incident,07/07/2012,07/07/2012,07/07/2012 08:27:29 PM,07/07/2012 08:27:47 PM,07/07/2012 08:28:09 PM,07/07/2012 08:29:16 PM,07/07/2012 08:31:36 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/07/2012 08:37:27 PM,PHELPS ST/VESTA ST,SF,94124,B10,42,6452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7302919295175, -122.399866976854)",121890323-E42 -113440175,E18,11114120,Medical Incident,12/10/2011,12/10/2011,12/10/2011 01:26:49 PM,12/10/2011 01:27:12 PM,12/10/2011 01:27:30 PM,12/10/2011 01:28:08 PM,12/10/2011 01:31:55 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 01:46:11 PM,2500 Block of 41ST AVE,SF,94116,B08,18,7637,3,2,2,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392114618851, -122.499135486789)",113440175-E18 -160462004,79,16018544,Medical Incident,02/15/2016,02/15/2016,02/15/2016 02:21:24 PM,02/15/2016 02:21:58 PM,02/15/2016 02:22:12 PM,02/15/2016 02:22:27 PM,02/15/2016 02:31:23 PM,02/15/2016 02:45:02 PM,02/15/2016 02:51:12 PM,Code 2 Transport,02/15/2016 03:16:34 PM,700 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",160462004-79 -160310553,AM20,16012073,Medical Incident,01/31/2016,01/30/2016,01/31/2016 04:25:14 AM,01/31/2016 04:26:51 AM,01/31/2016 04:28:37 AM,01/31/2016 04:31:09 AM,01/31/2016 04:34:51 AM,01/31/2016 04:53:22 AM,01/31/2016 05:04:25 AM,Code 2 Transport,01/31/2016 05:23:10 AM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160310553-AM20 -123100388,82,12103312,Medical Incident,11/05/2012,11/05/2012,11/05/2012 11:09:31 PM,11/05/2012 11:10:09 PM,11/05/2012 11:10:13 PM,11/05/2012 11:10:51 PM,11/05/2012 11:15:28 PM,11/05/2012 11:35:24 PM,11/05/2012 11:50:44 PM,Code 2 Transport,11/06/2012 12:24:11 AM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",123100388-82 -160172502,75,16006920,Medical Incident,01/17/2016,01/17/2016,01/17/2016 05:26:00 PM,01/17/2016 05:27:39 PM,01/17/2016 05:27:47 PM,01/17/2016 05:27:58 PM,01/17/2016 05:32:43 PM,01/17/2016 05:44:27 PM,01/17/2016 06:07:33 PM,Code 2 Transport,01/17/2016 06:42:25 PM,800 Block of BRYANT ST,San Francisco,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7753428666813, -122.403307133032)",160172502-75 -131390194,E17,13047010,Medical Incident,05/19/2013,05/19/2013,05/19/2013 11:44:11 AM,05/19/2013 11:45:52 AM,05/19/2013 11:46:12 AM,05/19/2013 11:48:06 AM,05/19/2013 11:49:36 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 12:08:45 PM,1300 Block of THOMAS AVE,SF,94124,B10,17,6547,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",131390194-E17 -122000113,94,12066411,Medical Incident,07/18/2012,07/18/2012,07/18/2012 09:44:16 AM,07/18/2012 09:46:17 AM,07/18/2012 09:46:37 AM,07/18/2012 09:47:49 AM,07/18/2012 09:58:50 AM,07/18/2012 10:28:29 AM,07/18/2012 10:36:15 AM,Code 2 Transport,07/18/2012 11:26:55 AM,1800 Block of BUSH ST,SF,94109,B04,38,3363,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",122000113-94 -160732794,AM16,16029111,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:01:30 PM,03/13/2016 09:02:03 PM,03/13/2016 09:03:08 PM,03/13/2016 09:03:58 PM,03/13/2016 09:09:30 PM,03/13/2016 09:16:35 PM,03/13/2016 09:31:26 PM,Code 2 Transport,03/13/2016 10:08:18 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160732794-AM16 -102810423,E40,10089521,Medical Incident,10/08/2010,10/08/2010,10/08/2010 11:29:43 PM,10/08/2010 11:38:28 PM,10/08/2010 11:38:53 PM,10/08/2010 11:41:12 PM,10/08/2010 11:42:56 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/08/2010 11:44:37 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",102810423-E40 -160190607,65,16007503,Traffic Collision,01/19/2016,01/18/2016,01/19/2016 07:28:19 AM,01/19/2016 07:28:40 AM,01/19/2016 07:29:25 AM,01/19/2016 07:30:01 AM,01/19/2016 07:37:28 AM,01/19/2016 07:42:47 AM,01/19/2016 08:07:05 AM,Code 2 Transport,01/19/2016 08:43:31 AM,ELLIS ST/GOUGH ST,San Francisco,94109,B02,3,3221,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7833998584821, -122.424294812845)",160190607-65 -110910040,E01,11030025,Medical Incident,04/01/2011,03/31/2011,04/01/2011 02:14:43 AM,04/01/2011 02:14:43 AM,04/01/2011 02:15:34 AM,04/01/2011 02:16:14 AM,04/01/2011 02:18:02 AM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 02:23:50 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",110910040-E01 -122310068,AP,12076506,Other,08/18/2012,08/17/2012,08/18/2012 07:16:25 AM,08/18/2012 07:16:26 AM,08/18/2012 07:16:26 AM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Fire,08/18/2012 07:16:43 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122310068-AP -102790352,RC1,10088857,Medical Incident,10/06/2010,10/06/2010,10/06/2010 11:50:42 PM,10/06/2010 11:52:54 PM,10/06/2010 11:53:29 PM,10/07/2010 12:19:29 AM,10/07/2010 12:22:38 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/07/2010 01:05:37 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,2,2,2,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7831757914875, -122.399603541822)",102790352-RC1 -120210262,E34,12007188,Electrical Hazard,01/21/2012,01/21/2012,01/21/2012 03:21:47 PM,01/21/2012 03:23:47 PM,01/21/2012 03:24:32 PM,01/21/2012 03:24:40 PM,01/21/2012 03:27:19 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 03:35:36 PM,48TH AV/BALBOA ST,SF,94121,B07,34,7312,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7751768203632, -122.509091953419)",120210262-E34 -112800312,74,11092783,Medical Incident,10/07/2011,10/07/2011,10/07/2011 07:17:59 PM,10/07/2011 07:19:44 PM,10/07/2011 07:20:29 PM,10/07/2011 07:21:08 PM,10/07/2011 07:28:38 PM,10/07/2011 07:35:31 PM,10/07/2011 08:00:08 PM,Code 2 Transport,10/07/2011 08:02:19 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",112800312-74 -160540290,89,16021444,Medical Incident,02/23/2016,02/22/2016,02/23/2016 04:06:56 AM,02/23/2016 04:06:56 AM,02/23/2016 04:08:42 AM,02/23/2016 04:09:12 AM,02/23/2016 04:16:09 AM,02/23/2016 04:34:40 AM,02/23/2016 04:46:04 AM,Code 2 Transport,02/23/2016 05:29:59 AM,4500 Block of 3RD ST,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7368113615571, -122.390133702873)",160540290-89 -160841097,53,16033309,Traffic Collision,03/24/2016,03/24/2016,03/24/2016 09:34:16 AM,03/24/2016 09:34:30 AM,03/24/2016 09:34:44 AM,03/24/2016 09:35:00 AM,03/24/2016 09:43:27 AM,03/24/2016 09:54:01 AM,03/24/2016 10:03:40 AM,Code 3 Transport,03/24/2016 11:13:35 AM,MISSION ST/BEALE ST,San Francisco,94105,B03,35,2116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7911528075814, -122.395813422768)",160841097-53 -160853188,79,16033908,Medical Incident,03/25/2016,03/25/2016,03/25/2016 06:55:25 PM,03/25/2016 06:57:07 PM,03/25/2016 06:59:04 PM,03/25/2016 06:59:15 PM,03/25/2016 07:06:49 PM,03/25/2016 07:33:20 PM,03/25/2016 07:54:26 PM,Code 2 Transport,03/25/2016 08:37:17 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7191183784719, -122.48048461062)",160853188-79 -123030137,77,12100468,Medical Incident,10/29/2012,10/28/2012,10/29/2012 02:42:08 AM,10/29/2012 02:44:03 AM,10/29/2012 03:00:12 AM,10/29/2012 03:00:39 AM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,04/25/2016 01:56:04 PM,1300 Block of MARKET ST,SF,94102,B02,36,2338,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",123030137-77 -160452170,50,16018182,Medical Incident,02/14/2016,02/14/2016,02/14/2016 03:41:24 PM,02/14/2016 03:42:05 PM,02/14/2016 03:42:13 PM,02/14/2016 03:42:20 PM,02/14/2016 03:50:24 PM,02/14/2016 04:18:22 PM,02/14/2016 04:36:43 PM,Code 2 Transport,02/14/2016 05:16:43 PM,700 Block of MARKET ST,San Francisco,94103,B03,1,2212,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7859774761625, -122.405359371753)",160452170-50 -110880143,T10,11029015,Structure Fire,03/29/2011,03/29/2011,03/29/2011 10:54:50 AM,03/29/2011 10:54:51 AM,03/29/2011 10:55:04 AM,03/29/2011 10:56:41 AM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 11:01:59 AM,2700 Block of CALIFORNIA ST,SF,94115,B04,38,412,3,3,3,false,,1,TRUCK,3,4,2,Pacific Heights,"(37.7881185452243, -122.439595812264)",110880143-T10 -103530050,54,10113204,Medical Incident,12/19/2010,12/18/2010,12/19/2010 01:44:19 AM,12/19/2010 01:49:41 AM,12/19/2010 01:51:33 AM,12/19/2010 01:52:06 AM,12/19/2010 02:03:26 AM,12/19/2010 02:10:20 AM,12/19/2010 02:30:24 AM,Code 2 Transport,12/19/2010 02:51:22 AM,800 Block of HOWARD ST,SF,94103,B03,1,2214,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",103530050-54 -140190055,E12,14006429,Medical Incident,01/19/2014,01/18/2014,01/19/2014 02:46:53 AM,01/19/2014 02:47:25 AM,01/19/2014 02:47:32 AM,01/19/2014 02:50:04 AM,01/19/2014 02:52:22 AM,04/25/2016 01:48:39 PM,04/25/2016 01:48:39 PM,Other,01/19/2014 03:09:41 AM,300 Block of CORBETT AVE,SF,94114,B05,24,5265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7599260499038, -122.445043500566)",140190055-E12 -120090037,RC3,12002987,Structure Fire,01/09/2012,01/08/2012,01/09/2012 02:32:13 AM,01/09/2012 02:33:33 AM,01/09/2012 02:34:27 AM,01/09/2012 02:44:15 AM,01/09/2012 02:57:56 AM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/09/2012 03:02:10 AM,700 Block of JERROLD AVE,SF,94124,B10,17,6713,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,10,10,Bayview Hunters Point,"(37.7296708213986, -122.373440500902)",120090037-RC3 -160910325,87,16035949,Medical Incident,03/31/2016,03/30/2016,03/31/2016 03:51:15 AM,03/31/2016 03:51:15 AM,03/31/2016 03:52:34 AM,03/31/2016 03:52:42 AM,03/31/2016 04:06:15 AM,03/31/2016 04:22:11 AM,03/31/2016 04:41:28 AM,Code 2 Transport,03/31/2016 05:05:42 AM,0 Block of ATHENS ST,San Francisco,94112,B09,43,6146,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7272929954166, -122.424276475396)",160910325-87 -131580448,82,13053848,Medical Incident,06/07/2013,06/07/2013,06/07/2013 11:31:59 PM,06/07/2013 11:32:00 PM,06/07/2013 11:32:21 PM,06/07/2013 11:32:26 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/07/2013 11:41:16 PM,FULTON ST/46TH AV,SF,94122,B07,34,7272,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7715424783159, -122.506685313329)",131580448-82 -160472426,KM11,16018993,Medical Incident,02/16/2016,02/16/2016,02/16/2016 03:41:34 PM,02/16/2016 03:41:34 PM,02/16/2016 04:13:21 PM,02/16/2016 04:16:03 PM,02/16/2016 04:30:06 PM,02/16/2016 05:07:13 PM,02/16/2016 05:22:50 PM,Code 2 Transport,02/16/2016 05:51:16 PM,900 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",160472426-KM11 -103650279,AM08,10117175,Medical Incident,12/31/2010,12/31/2010,12/31/2010 07:16:47 PM,12/31/2010 07:17:22 PM,12/31/2010 07:18:24 PM,12/31/2010 07:21:45 PM,12/31/2010 07:21:46 PM,12/31/2010 07:36:19 PM,12/31/2010 07:42:47 PM,Code 2 Transport,12/31/2010 08:22:06 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",103650279-AM08 -122640415,E41,12087385,Medical Incident,09/20/2012,09/20/2012,09/20/2012 10:42:56 PM,09/20/2012 10:44:55 PM,09/20/2012 10:45:30 PM,09/20/2012 10:47:08 PM,09/20/2012 10:49:50 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/20/2012 10:53:24 PM,POLK ST/CALIFORNIA ST,SF,94109,B04,41,1635,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7905782582579, -122.420687383115)",122640415-E41 -160803780,78,16031987,Medical Incident,03/20/2016,03/20/2016,03/20/2016 11:38:10 PM,03/20/2016 11:39:46 PM,03/20/2016 11:42:13 PM,03/20/2016 11:42:20 PM,03/20/2016 11:52:57 PM,03/21/2016 12:02:27 AM,03/21/2016 12:17:12 AM,Code 2 Transport,03/21/2016 12:52:15 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160803780-78 -132700396,E08,13091882,Medical Incident,09/27/2013,09/27/2013,09/27/2013 09:47:48 PM,09/27/2013 09:48:14 PM,09/27/2013 09:49:40 PM,04/25/2016 01:50:33 PM,09/27/2013 09:51:53 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/27/2013 09:59:06 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132700396-E08 -131120355,E01,13037844,Alarms,04/22/2013,04/22/2013,04/22/2013 06:25:19 PM,04/22/2013 06:26:24 PM,04/22/2013 06:26:35 PM,04/22/2013 06:28:43 PM,04/22/2013 06:30:33 PM,04/25/2016 01:53:10 PM,04/25/2016 01:53:10 PM,Other,04/22/2013 06:39:11 PM,0 Block of MINT PLZ,SF,94103,B03,1,2246,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7826425026927, -122.407832679288)",131120355-E01 -102870118,E39,10091454,Traffic Collision,10/14/2010,10/14/2010,10/14/2010 09:41:28 AM,10/14/2010 09:41:29 AM,10/14/2010 09:42:08 AM,10/14/2010 09:44:52 AM,10/14/2010 09:45:21 AM,04/25/2016 02:08:06 PM,04/25/2016 02:08:06 PM,Other,10/14/2010 09:58:18 AM,VICENTE ST/20TH AV,SF,94116,B08,40,7435,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7392773424099, -122.476485968583)",102870118-E39 -140930274,RC2,14031345,Water Rescue,04/03/2014,04/03/2014,04/03/2014 04:36:49 PM,04/03/2014 04:40:05 PM,04/03/2014 04:41:08 PM,04/03/2014 04:41:49 PM,04/03/2014 05:07:31 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,No Merit,04/03/2014 05:11:25 PM,1000 Block of GREAT HWY,,94122,B07,34,7316,3,E,3,true,Fire,1,RESCUE CAPTAIN,14,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",140930274-RC2 -160550597,53,16021907,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:26:45 AM,02/24/2016 07:28:07 AM,02/24/2016 07:28:39 AM,02/24/2016 07:29:18 AM,02/24/2016 07:41:43 AM,02/24/2016 07:54:16 AM,02/24/2016 08:00:41 AM,Code 2 Transport,02/24/2016 08:47:37 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160550597-53 -160473260,76,16019078,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:24:00 PM,02/16/2016 07:26:55 PM,02/16/2016 07:28:04 PM,02/16/2016 07:28:13 PM,02/16/2016 07:37:34 PM,02/16/2016 07:51:31 PM,02/16/2016 08:09:13 PM,Code 2 Transport,02/16/2016 08:36:24 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160473260-76 -112210337,B01,11073142,Alarms,08/09/2011,08/09/2011,08/09/2011 09:20:40 PM,08/09/2011 09:23:04 PM,08/09/2011 09:23:27 PM,08/09/2011 09:25:10 PM,08/09/2011 09:31:46 PM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 09:32:23 PM,200 Block of KING ST,SF,94107,B03,8,2171,3,3,3,false,,1,CHIEF,2,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",112210337-B01 -140490001,AM22,14016507,Medical Incident,02/18/2014,02/17/2014,02/18/2014 12:10:32 AM,02/18/2014 12:11:45 AM,02/18/2014 12:12:58 AM,02/18/2014 12:13:38 AM,02/18/2014 12:19:53 AM,02/18/2014 12:34:24 AM,02/18/2014 12:42:43 AM,Code 2 Transport,02/18/2014 12:59:54 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",140490001-AM22 -122340235,E03,12077647,Medical Incident,08/21/2012,08/21/2012,08/21/2012 05:56:11 PM,08/21/2012 05:56:11 PM,08/21/2012 05:56:11 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Patient Declined Transport,08/21/2012 06:17:25 PM,POST ST/VAN NESS AV,SF,94109,B04,3,3161,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,5,Western Addition,"(37.7866189598827, -122.421570115493)",122340235-E03 -160083447,63,16003394,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:04:50 PM,01/08/2016 08:05:04 PM,01/08/2016 08:05:10 PM,01/08/2016 08:06:32 PM,01/08/2016 08:10:34 PM,01/08/2016 08:26:04 PM,01/08/2016 08:46:48 PM,Code 2 Transport,01/08/2016 09:15:31 PM,1900 Block of JUDAH ST,San Francisco,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.761386009258, -122.482883769686)",160083447-63 -112860388,E05,11094909,Medical Incident,10/13/2011,10/13/2011,10/13/2011 07:36:44 PM,10/13/2011 07:36:55 PM,10/13/2011 07:37:53 PM,04/25/2016 02:02:11 PM,10/13/2011 07:40:20 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 07:47:04 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",112860388-E05 -110620176,E36,11020364,Medical Incident,03/03/2011,03/03/2011,03/03/2011 12:45:24 PM,03/03/2011 12:45:50 PM,03/03/2011 12:46:53 PM,03/03/2011 12:47:57 PM,03/03/2011 12:49:29 PM,04/25/2016 02:05:49 PM,04/25/2016 02:05:49 PM,Patient Declined Transport,03/03/2011 12:52:36 PM,HAIGHT ST/BUCHANAN ST,SF,94102,B02,36,3422,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7725249164932, -122.427158446599)",110620176-E36 -113500400,79,11116298,Traffic Collision,12/16/2011,12/16/2011,12/16/2011 10:46:11 PM,12/16/2011 10:48:44 PM,12/16/2011 10:49:35 PM,12/16/2011 10:50:23 PM,12/16/2011 10:54:49 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 10:55:44 PM,MISSION ST/SOUTH VAN NESS AV,SF,94103,B02,36,5116,3,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7730534532281, -122.418618217459)",113500400-79 -111810115,KM12,11059674,Medical Incident,06/30/2011,06/30/2011,06/30/2011 10:21:28 AM,06/30/2011 10:23:07 AM,06/30/2011 10:23:43 AM,06/30/2011 10:23:53 AM,06/30/2011 10:27:39 AM,06/30/2011 10:38:49 AM,06/30/2011 10:47:27 AM,Code 2 Transport,06/30/2011 11:08:02 AM,0 Block of HARTFORD ST,SF,94114,B05,6,5417,3,3,3,false,,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7617571079788, -122.433914011349)",111810115-KM12 -132090258,E07,13070753,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:26:59 PM,07/28/2013 04:28:53 PM,07/28/2013 04:29:23 PM,07/28/2013 04:30:33 PM,07/28/2013 04:32:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 04:35:03 PM,1700 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7694700718007, -122.415525556609)",132090258-E07 -160443987,AM16,16017916,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:36:28 PM,02/13/2016 11:36:28 PM,02/13/2016 11:36:56 PM,02/13/2016 11:37:59 PM,02/13/2016 11:41:54 PM,02/13/2016 11:49:49 PM,02/14/2016 12:12:31 AM,Code 2 Transport,02/14/2016 12:53:30 AM,200 Block of PARQUE DR,San Francisco,94134,B09,43,6245,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.709998706156, -122.422592099161)",160443987-AM16 -160310011,88,16012005,Medical Incident,01/31/2016,01/30/2016,01/31/2016 12:00:25 AM,01/31/2016 12:02:16 AM,01/31/2016 12:03:39 AM,01/31/2016 12:03:52 AM,01/31/2016 12:20:02 AM,01/31/2016 12:36:38 AM,01/31/2016 12:55:13 AM,Code 2 Transport,01/31/2016 01:20:51 AM,48TH AV/ORTEGA ST,San Francisco,94116,B08,23,7725,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.751003286283, -122.507416228519)",160310011-88 -123200337,E28,12106514,Structure Fire,11/15/2012,11/15/2012,11/15/2012 09:31:20 PM,11/15/2012 09:32:05 PM,11/15/2012 09:33:01 PM,11/15/2012 09:33:41 PM,11/15/2012 09:37:12 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 10:08:55 PM,500 Block of GRANT AVE,SF,94108,B01,13,1314,3,3,3,true,Fire,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7921056209358, -122.405937157736)",123200337-E28 -103470086,E38,10111202,Medical Incident,12/13/2010,12/13/2010,12/13/2010 08:51:14 AM,12/13/2010 08:52:50 AM,12/13/2010 08:53:23 AM,12/13/2010 08:53:55 AM,12/13/2010 08:56:20 AM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 09:19:31 AM,2000 Block of FRANKLIN ST,SF,94109,B04,38,3226,3,2,2,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7932922930477, -122.424537680646)",103470086-E38 -133400414,92,13115441,Traffic Collision,12/06/2013,12/06/2013,12/06/2013 10:47:50 PM,12/06/2013 10:50:20 PM,12/06/2013 10:50:40 PM,12/06/2013 10:52:49 PM,04/25/2016 01:49:24 PM,12/06/2013 11:22:29 PM,12/06/2013 11:46:12 PM,Code 3 Transport,12/07/2013 12:32:50 AM,MARKET ST/JONES ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",133400414-92 -160093072,76,16003767,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:33:31 PM,01/09/2016 07:33:31 PM,01/09/2016 07:34:13 PM,01/09/2016 07:34:26 PM,01/09/2016 07:39:39 PM,01/09/2016 07:45:09 PM,01/09/2016 07:50:28 PM,Code 2 Transport,01/09/2016 08:25:28 PM,500 Block of BUSH ST,San Francisco,94108,B01,13,1315,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7904732830605, -122.406742211994)",160093072-76 -160131034,77,16005119,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:33:42 AM,01/13/2016 09:34:29 AM,01/13/2016 09:34:58 AM,01/13/2016 09:35:10 AM,01/13/2016 09:39:46 AM,01/13/2016 10:00:51 AM,01/13/2016 10:05:43 AM,Code 2 Transport,01/13/2016 10:40:03 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5529,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160131034-77 -160521204,63,16020766,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:43:30 AM,02/21/2016 10:45:37 AM,02/21/2016 10:46:42 AM,02/21/2016 10:46:52 AM,02/21/2016 10:56:45 AM,02/21/2016 11:11:53 AM,02/21/2016 11:31:43 AM,Code 2 Transport,02/21/2016 12:17:24 PM,0 Block of JACK LONDON AL,San Francisco,94107,B03,8,2173,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7811397491266, -122.393304249377)",160521204-63 -102950149,B02,10094052,Structure Fire,10/22/2010,10/22/2010,10/22/2010 10:43:14 AM,10/22/2010 10:43:44 AM,10/22/2010 10:43:59 AM,10/22/2010 10:45:09 AM,10/22/2010 10:48:22 AM,04/25/2016 02:07:59 PM,04/25/2016 02:07:59 PM,Other,10/22/2010 11:15:16 AM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,false,,1,CHIEF,4,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",102950149-B02 -122280303,86,12075655,Medical Incident,08/15/2012,08/15/2012,08/15/2012 06:20:29 PM,08/15/2012 06:22:30 PM,08/15/2012 06:22:44 PM,08/15/2012 06:24:03 PM,08/15/2012 06:35:44 PM,08/15/2012 06:55:49 PM,08/15/2012 07:05:28 PM,Code 2 Transport,08/15/2012 07:31:36 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7132391314398, -122.472972400524)",122280303-86 -132560323,RS2,13086666,Traffic Collision,09/13/2013,09/13/2013,09/13/2013 06:45:33 PM,09/13/2013 06:48:10 PM,09/13/2013 06:48:36 PM,09/13/2013 06:50:17 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,04/25/2016 01:50:48 PM,Other,09/13/2013 06:52:04 PM,100 Block of BAY SHORE BLVD,SF,94124,B10,9,6375,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,10,9,Bernal Heights,"(37.7467888174976, -122.404164633041)",132560323-RS2 -103580203,T05,10114944,Alarms,12/24/2010,12/24/2010,12/24/2010 03:30:49 PM,12/24/2010 03:31:52 PM,12/24/2010 03:32:03 PM,12/24/2010 03:33:28 PM,12/24/2010 03:35:11 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 03:40:05 PM,400 Block of GROVE ST,SF,94102,B02,36,3315,3,3,3,false,,1,TRUCK,2,2,5,Hayes Valley,"(37.7776543498914, -122.423976044858)",103580203-T05 -111800196,E09,11059441,Medical Incident,06/29/2011,06/29/2011,06/29/2011 03:04:41 PM,06/29/2011 03:06:52 PM,06/29/2011 03:09:09 PM,06/29/2011 03:42:08 PM,06/29/2011 03:46:32 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/29/2011 03:55:32 PM,2800 Block of 24TH ST,SF,94110,B06,9,5531,1,1,2,true,,1,ENGINE,2,6,9,Mission,"(37.7527692279339, -122.408654193478)",111800196-E09 -111020337,RC1,11033957,Medical Incident,04/12/2011,04/12/2011,04/12/2011 08:29:36 PM,04/12/2011 08:32:33 PM,04/12/2011 08:33:46 PM,04/25/2016 02:05:08 PM,04/12/2011 08:35:49 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/12/2011 08:44:51 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,RESCUE CAPTAIN,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",111020337-RC1 -111710023,RC1,11056251,Medical Incident,06/20/2011,06/19/2011,06/20/2011 02:11:11 AM,06/20/2011 02:11:40 AM,06/20/2011 02:11:56 AM,06/20/2011 02:14:24 AM,06/20/2011 02:17:53 AM,04/25/2016 02:04:04 PM,04/25/2016 02:04:04 PM,Other,06/20/2011 02:29:16 AM,4TH ST/TOWNSEND ST,SF,94107,B03,8,2224,E,E,3,true,,1,RESCUE CAPTAIN,4,3,6,South of Market,"(37.7770893320016, -122.394981482757)",111710023-RC1 -140770348,E18,14026212,Medical Incident,03/18/2014,03/18/2014,03/18/2014 09:00:11 PM,03/18/2014 09:01:44 PM,03/18/2014 09:02:20 PM,03/18/2014 09:03:41 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Code 2 Transport,03/18/2014 09:06:02 PM,1300 Block of 46TH AVE,SAN FRANCISCO,94122,B08,23,7721,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7613577781783, -122.505924512458)",140770348-E18 -110050296,E44,11001731,Structure Fire,01/05/2011,01/05/2011,01/05/2011 04:41:42 PM,01/05/2011 04:41:42 PM,01/05/2011 04:41:57 PM,01/05/2011 04:43:19 PM,01/05/2011 04:45:38 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/05/2011 04:46:02 PM,PAUL AV/EXETER ST,SF,94124,B10,44,6323,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7230361592834, -122.398348115685)",110050296-E44 -132640254,77,13089563,Medical Incident,09/21/2013,09/21/2013,09/21/2013 02:22:55 PM,09/21/2013 02:24:17 PM,09/21/2013 02:24:45 PM,09/21/2013 02:25:24 PM,09/21/2013 02:51:09 PM,09/21/2013 02:58:54 PM,09/21/2013 03:12:54 PM,Code 2 Transport,09/21/2013 03:46:08 PM,200 Block of WOODSIDE AVE,SF,94131,B08,39,8645,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",132640254-77 -120990196,KM05,12032824,Medical Incident,04/08/2012,04/08/2012,04/08/2012 03:35:55 PM,04/08/2012 03:36:40 PM,04/08/2012 03:38:33 PM,04/25/2016 01:59:16 PM,04/08/2012 03:39:13 PM,04/08/2012 03:46:01 PM,04/08/2012 03:53:47 PM,Code 2 Transport,04/08/2012 04:12:24 PM,0 Block of WASHBURN ST,SF,94103,B02,36,2336,3,3,3,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",120990196-KM05 -160653505,AM14,16026148,Medical Incident,03/05/2016,03/05/2016,03/05/2016 09:51:27 PM,03/05/2016 09:51:27 PM,03/05/2016 09:51:43 PM,03/05/2016 09:52:05 PM,03/05/2016 10:09:42 PM,03/05/2016 10:24:44 PM,03/05/2016 10:46:35 PM,Code 2 Transport,03/05/2016 11:06:32 PM,4500 Block of IRVING ST,San Francisco,94122,B08,23,7721,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7623161422083, -122.506598485831)",160653505-AM14 -103570177,87,10114568,Medical Incident,12/23/2010,12/23/2010,12/23/2010 12:55:32 PM,12/23/2010 12:56:44 PM,12/23/2010 12:57:23 PM,12/23/2010 12:58:06 PM,12/23/2010 01:05:13 PM,12/23/2010 01:20:09 PM,12/23/2010 01:41:46 PM,Code 2 Transport,12/23/2010 02:10:29 PM,4600 Block of MISSION ST,SF,94112,B09,43,6117,2,2,2,true,,1,MEDIC,2,9,11,Excelsior,"(37.7242679564906, -122.435032247159)",103570177-87 -160640118,76,16025322,Medical Incident,03/04/2016,03/03/2016,03/04/2016 01:06:48 AM,03/04/2016 01:06:48 AM,03/04/2016 01:07:02 AM,03/04/2016 01:08:19 AM,03/04/2016 01:11:52 AM,03/04/2016 01:17:46 AM,03/04/2016 01:22:58 AM,Code 3 Transport,03/04/2016 02:19:25 AM,10TH ST/MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7752720593077, -122.415908181241)",160640118-76 -160263399,61,16010452,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:05:10 PM,01/26/2016 08:06:56 PM,01/26/2016 08:08:25 PM,01/26/2016 08:08:36 PM,01/26/2016 08:14:28 PM,01/26/2016 08:24:46 PM,01/26/2016 08:43:13 PM,Code 2 Transport,01/26/2016 09:20:08 PM,2000 Block of LANE ST,San Francisco,94124,B10,17,6536,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7294407358981, -122.392077468459)",160263399-61 -130380253,E16,13013045,Structure Fire,02/07/2013,02/07/2013,02/07/2013 04:19:24 PM,02/07/2013 04:20:04 PM,02/07/2013 04:20:10 PM,02/07/2013 04:21:36 PM,02/07/2013 04:23:11 PM,04/25/2016 01:54:25 PM,04/25/2016 01:54:25 PM,Other,02/07/2013 04:28:38 PM,2900 Block of BAKER ST,SF,94123,B04,16,4313,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.798166545923, -122.445811307844)",130380253-E16 -140520038,66,14017498,Medical Incident,02/21/2014,02/20/2014,02/21/2014 04:18:00 AM,02/21/2014 04:19:02 AM,02/21/2014 04:19:12 AM,02/21/2014 04:19:21 AM,02/21/2014 04:21:16 AM,02/21/2014 04:45:54 AM,02/21/2014 04:49:20 AM,Code 3 Transport,02/21/2014 05:09:58 AM,800 Block of FRANKLIN ST,SF,94102,B02,36,3216,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7819947126055, -122.422254006576)",140520038-66 -121380199,E02,12045860,Alarms,05/17/2012,05/17/2012,05/17/2012 01:34:20 PM,05/17/2012 01:34:44 PM,05/17/2012 01:35:10 PM,05/17/2012 01:36:28 PM,05/17/2012 01:38:06 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Fire,05/17/2012 01:42:02 PM,1100 Block of MASON ST,SF,94108,B01,2,1415,3,3,3,true,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7942845562863, -122.411386186498)",121380199-E02 -133460397,E31,13117579,Medical Incident,12/12/2013,12/12/2013,12/12/2013 11:05:37 PM,12/12/2013 11:07:15 PM,12/12/2013 11:07:22 PM,12/12/2013 11:08:49 PM,12/12/2013 11:11:01 PM,04/25/2016 01:49:18 PM,04/25/2016 01:49:18 PM,Other,12/12/2013 11:28:41 PM,3500 Block of GEARY BLVD,SF,94118,B07,31,7113,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",133460397-E31 -103030362,T03,10096945,Medical Incident,10/30/2010,10/30/2010,10/30/2010 11:08:25 PM,10/30/2010 11:08:55 PM,10/30/2010 11:09:13 PM,10/30/2010 11:10:21 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/30/2010 11:12:05 PM,ELLIS ST/VAN NESS AV,SF,94109,B04,3,3162,3,3,3,true,,1,TRUCK,3,2,5,Western Addition,"(37.7838241173643, -122.421008360007)",103030362-T03 -140760165,B02,14025696,Alarms,03/17/2014,03/17/2014,03/17/2014 12:09:00 PM,03/17/2014 12:11:18 PM,03/17/2014 12:11:30 PM,03/17/2014 12:13:10 PM,03/17/2014 12:19:12 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Fire,03/17/2014 12:22:50 PM,1100 Block of HOWARD ST,SAN FRANCISCO,94103,B03,1,2314,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7777263414712, -122.409605982336)",140760165-B02 -120570097,E07,12018736,Medical Incident,02/26/2012,02/25/2012,02/26/2012 07:28:37 AM,02/26/2012 07:29:05 AM,02/26/2012 07:29:25 AM,02/26/2012 07:30:44 AM,02/26/2012 07:33:01 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 07:36:18 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",120570097-E07 -160101808,87,16004054,Medical Incident,01/10/2016,01/10/2016,01/10/2016 02:00:08 PM,01/10/2016 02:01:47 PM,01/10/2016 02:02:17 PM,01/10/2016 02:02:37 PM,01/10/2016 02:06:11 PM,01/10/2016 02:36:38 PM,01/10/2016 02:54:14 PM,Code 2 Transport,01/10/2016 03:13:16 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",160101808-87 -160530536,79,16021084,Traffic Collision,02/22/2016,02/21/2016,02/22/2016 07:22:54 AM,02/22/2016 07:24:17 AM,02/22/2016 07:25:43 AM,02/22/2016 07:26:04 AM,02/22/2016 07:30:14 AM,02/22/2016 08:00:06 AM,02/22/2016 08:22:47 AM,Code 2 Transport,02/22/2016 08:53:24 AM,STEINER ST/PINE ST,San Francisco,94115,B04,38,3621,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.7877411638542, -122.435293133001)",160530536-79 -112450112,E01,11080714,Medical Incident,09/02/2011,09/02/2011,09/02/2011 09:34:49 AM,09/02/2011 09:37:04 AM,09/02/2011 09:38:52 AM,09/02/2011 09:39:06 AM,09/02/2011 09:41:15 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 10:07:42 AM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,2,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",112450112-E01 -131740351,79,13059206,Medical Incident,06/23/2013,06/23/2013,06/23/2013 10:00:29 PM,06/23/2013 10:01:49 PM,06/23/2013 10:02:43 PM,06/23/2013 10:05:06 PM,06/23/2013 10:20:38 PM,06/23/2013 11:03:51 PM,06/23/2013 11:15:21 PM,Code 2 Transport,06/23/2013 11:58:13 PM,500 Block of OAK ST,SF,94102,B02,5,3523,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7743391857975, -122.428373303516)",131740351-79 -113540042,E44,11117425,Medical Incident,12/20/2011,12/19/2011,12/20/2011 03:44:36 AM,12/20/2011 03:45:41 AM,12/20/2011 03:45:50 AM,12/20/2011 03:47:42 AM,12/20/2011 03:50:02 AM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/20/2011 03:57:48 AM,2200 Block of BAY SHORE BLVD,SF,94134,B10,44,6255,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121240018381, -122.40295368671)",113540042-E44 -160764149,89,16030386,Medical Incident,03/16/2016,03/16/2016,03/16/2016 10:49:02 PM,03/16/2016 10:52:05 PM,03/16/2016 10:52:28 PM,03/16/2016 10:52:45 PM,03/16/2016 10:57:59 PM,03/16/2016 11:15:45 PM,03/16/2016 11:20:41 PM,Code 2 Transport,03/16/2016 11:53:47 PM,700 Block of LARKIN ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784481757201, -122.417688009568)",160764149-89 -131900314,E19,13064826,Medical Incident,07/09/2013,07/09/2013,07/09/2013 07:19:35 PM,07/09/2013 07:20:41 PM,07/09/2013 07:20:54 PM,07/09/2013 07:21:42 PM,07/09/2013 07:26:31 PM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/09/2013 07:35:46 PM,400 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",131900314-E19 -120950129,58,12031425,Medical Incident,04/04/2012,04/04/2012,04/04/2012 11:15:17 AM,04/04/2012 11:16:41 AM,04/04/2012 11:18:31 AM,04/25/2016 01:59:20 PM,04/04/2012 11:19:04 AM,04/04/2012 11:54:14 AM,04/04/2012 12:22:35 PM,Code 2 Transport,04/04/2012 12:48:56 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",120950129-58 -123440020,E19,12114845,Medical Incident,12/09/2012,12/08/2012,12/09/2012 12:53:14 AM,12/09/2012 12:53:51 AM,12/09/2012 12:54:03 AM,12/09/2012 12:56:06 AM,12/09/2012 12:58:13 AM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/09/2012 01:11:37 AM,LAKE MERCED BL/FONT BL,SF,94132,B08,19,8855,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7239997279789, -122.485075175889)",123440020-E19 -131880256,E21,13064162,Alarms,07/07/2013,07/07/2013,07/07/2013 05:00:19 PM,07/07/2013 05:02:17 PM,07/07/2013 05:02:35 PM,07/07/2013 05:03:51 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,04/25/2016 01:51:54 PM,Other,07/07/2013 05:04:22 PM,1800 Block of OAK ST,SF,94117,B05,21,4524,3,3,3,false,Alarm,1,ENGINE,4,5,5,Haight Ashbury,"(37.7715102072393, -122.449768153946)",131880256-E21 -160452967,55,16018258,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:45:44 PM,02/14/2016 07:46:45 PM,02/14/2016 07:47:27 PM,02/14/2016 07:47:48 PM,02/14/2016 07:52:24 PM,02/14/2016 08:11:32 PM,02/14/2016 08:23:05 PM,Code 2 Transport,02/14/2016 08:53:19 PM,300 Block of 19TH AVE,San Francisco,94121,B07,31,7164,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7813479155622, -122.478305098374)",160452967-55 -130730256,E19,13024405,Medical Incident,03/14/2013,03/14/2013,03/14/2013 04:46:14 PM,03/14/2013 04:46:52 PM,03/14/2013 04:47:05 PM,03/14/2013 04:47:41 PM,03/14/2013 04:52:40 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Other,03/14/2013 05:04:22 PM,400 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",130730256-E19 -160221925,57,16008793,Medical Incident,01/22/2016,01/22/2016,01/22/2016 01:47:45 PM,01/22/2016 01:47:52 PM,01/22/2016 01:48:05 PM,01/22/2016 01:48:24 PM,01/22/2016 01:53:30 PM,01/22/2016 02:12:17 PM,01/22/2016 03:05:33 PM,Code 3 Transport,01/22/2016 03:34:01 PM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",160221925-57 -103150237,T05,10101041,Gas Leak (Natural and LP Gases),11/11/2010,11/11/2010,11/11/2010 04:29:34 PM,11/11/2010 04:30:19 PM,11/11/2010 04:30:29 PM,11/11/2010 04:32:23 PM,11/11/2010 04:35:18 PM,04/25/2016 02:07:38 PM,04/25/2016 02:07:38 PM,Other,11/11/2010 04:41:23 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,false,,1,TRUCK,3,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",103150237-T05 -160263580,AM12,16010468,Medical Incident,01/26/2016,01/26/2016,01/26/2016 09:11:50 PM,01/26/2016 09:14:53 PM,01/26/2016 09:15:15 PM,01/26/2016 09:16:15 PM,01/26/2016 09:20:05 PM,01/26/2016 09:44:16 PM,01/26/2016 10:19:38 PM,Code 2 Transport,01/26/2016 10:45:11 PM,0 Block of ROEMER WAY,San Francisco,94112,B09,33,6214,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7090296042376, -122.446571654745)",160263580-AM12 -102280042,E34,10071672,Outside Fire,08/16/2010,08/15/2010,08/16/2010 04:01:11 AM,08/16/2010 04:02:52 AM,08/16/2010 04:03:08 AM,08/16/2010 04:04:47 AM,08/16/2010 04:08:12 AM,04/25/2016 02:09:03 PM,04/25/2016 02:09:03 PM,Other,08/16/2010 04:10:33 AM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,,1,ENGINE,1,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",102280042-E34 -160442811,AM16,16017804,Medical Incident,02/13/2016,02/13/2016,02/13/2016 06:18:37 PM,02/13/2016 06:18:37 PM,02/13/2016 06:19:35 PM,02/13/2016 06:20:05 PM,02/13/2016 06:22:38 PM,02/13/2016 06:39:57 PM,02/13/2016 07:10:34 PM,Code 2 Transport,02/13/2016 07:35:53 PM,200 Block of CLINTON PARK,San Francisco,94103,B02,6,5127,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Mission,"(37.7689937420774, -122.425634217928)",160442811-AM16 -113480317,B10,11115571,Explosion,12/14/2011,12/14/2011,12/14/2011 06:53:19 PM,12/14/2011 06:54:14 PM,12/14/2011 06:55:02 PM,12/14/2011 06:55:44 PM,12/14/2011 07:01:06 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 07:09:08 PM,1600 Block of YOSEMITE AVE,SF,94124,B10,17,6546,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7273371737416, -122.392411239852)",113480317-B10 -132910321,T01,13099129,Administrative,10/18/2013,10/18/2013,10/18/2013 06:42:52 PM,10/18/2013 06:42:54 PM,10/18/2013 06:43:20 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,04/25/2016 01:50:12 PM,Fire,10/18/2013 06:43:45 PM,900 Block of FOLSOM ST,SF,94107,B03,1,2244,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7798137203933, -122.403860419019)",132910321-T01 -102250314,KM15,10070976,Medical Incident,08/13/2010,08/13/2010,08/13/2010 10:43:32 PM,08/13/2010 10:44:02 PM,08/13/2010 10:44:16 PM,08/13/2010 10:46:56 PM,08/13/2010 10:51:20 PM,08/13/2010 11:00:37 PM,08/13/2010 11:13:09 PM,Code 3 Transport,08/13/2010 11:43:26 PM,1600 Block of THE EMBARCADERONORTH ST,SF,94133,B01,28,941,E,E,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.8084350175869, -122.410774214375)",102250314-KM15 -121390240,65,12046212,Medical Incident,05/18/2012,05/18/2012,05/18/2012 04:29:51 PM,05/18/2012 04:31:50 PM,05/18/2012 04:32:41 PM,05/18/2012 04:32:50 PM,05/18/2012 04:40:56 PM,05/18/2012 04:59:09 PM,05/18/2012 05:03:35 PM,Code 3 Transport,05/18/2012 05:41:50 PM,3000 Block of 26TH ST,SF,94110,B06,9,5615,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7495721300101, -122.410215105411)",121390240-65 -122330260,RC1,12077348,Medical Incident,08/20/2012,08/20/2012,08/20/2012 04:08:59 PM,08/20/2012 04:10:00 PM,08/20/2012 04:15:13 PM,08/20/2012 04:44:03 PM,08/20/2012 04:48:20 PM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Other,08/20/2012 05:03:40 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",122330260-RC1 -112890158,E43,11095854,Medical Incident,10/16/2011,10/16/2011,10/16/2011 11:13:53 AM,10/16/2011 11:13:53 AM,10/16/2011 11:14:29 AM,10/16/2011 11:15:31 AM,10/16/2011 11:18:24 AM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/16/2011 11:28:55 AM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",112890158-E43 -102270284,RC1,10071544,Medical Incident,08/15/2010,08/15/2010,08/15/2010 07:05:59 PM,08/15/2010 07:06:31 PM,08/15/2010 07:06:44 PM,08/15/2010 07:12:13 PM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,Other,08/15/2010 07:14:53 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,true,,1,RESCUE CAPTAIN,4,1,3,North Beach,"(37.8082633159603, -122.414972542075)",102270284-RC1 -113600277,E13,11119739,Alarms,12/26/2011,12/26/2011,12/26/2011 07:35:46 PM,12/26/2011 07:36:59 PM,12/26/2011 07:37:18 PM,12/26/2011 07:38:22 PM,12/26/2011 07:40:16 PM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 07:48:59 PM,300 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.7982414067113, -122.403286579807)",113600277-E13 -121490204,E03,12049473,Medical Incident,05/28/2012,05/28/2012,05/28/2012 04:20:30 PM,05/28/2012 04:21:51 PM,05/28/2012 04:22:03 PM,05/28/2012 04:23:12 PM,05/28/2012 04:31:47 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 04:40:26 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",121490204-E03 -123440197,E40,12114999,Medical Incident,12/09/2012,12/09/2012,12/09/2012 01:05:46 PM,12/09/2012 01:06:45 PM,12/09/2012 01:07:54 PM,12/09/2012 01:08:58 PM,12/09/2012 01:17:03 PM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Patient Declined Transport,12/09/2012 01:37:00 PM,0 Block of SYLVAN DR,SF,94132,B08,19,8741,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Sunset/Parkside,"(37.733238512412, -122.485391204577)",123440197-E40 -92730275,B04,9081541,Alarms,09/30/2009,09/30/2009,09/30/2009 05:14:57 PM,09/30/2009 05:17:10 PM,09/30/2009 05:17:24 PM,09/30/2009 05:18:37 PM,09/30/2009 05:20:37 PM,04/25/2016 03:26:45 PM,04/25/2016 03:26:45 PM,Other,09/30/2009 05:25:24 PM,1400 Block of POLK ST,SF,94109,B04,3,3122,3,3,3,false,,1,CHIEF,1,4,3,Nob Hill,"(37.790090632912, -122.420658749212)",092730275-B04 -103130399,E23,10100529,Medical Incident,11/09/2010,11/09/2010,11/09/2010 11:53:13 PM,11/09/2010 11:54:29 PM,11/09/2010 11:55:47 PM,11/09/2010 11:56:43 PM,11/09/2010 11:59:35 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/10/2010 12:09:22 AM,1500 Block of GREAT HWY,SF,94122,B08,23,7724,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7574877093047, -122.508938004244)",103130399-E23 -102900008,E06,10092364,Medical Incident,10/17/2010,10/16/2010,10/17/2010 12:28:26 AM,10/17/2010 12:28:37 AM,10/17/2010 12:29:21 AM,10/17/2010 12:31:01 AM,10/17/2010 12:32:54 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 12:45:31 AM,CASTRO ST/DUBOCE AV,SF,94117,B05,6,5133,3,3,3,true,,1,ENGINE,1,5,8,Haight Ashbury,"(37.7690584547768, -122.435794213255)",102900008-E06 -133250036,KM07,13110263,Medical Incident,11/21/2013,11/20/2013,11/21/2013 03:30:34 AM,11/21/2013 03:32:13 AM,11/21/2013 03:32:29 AM,11/21/2013 03:33:02 AM,11/21/2013 03:34:07 AM,11/21/2013 03:48:38 AM,11/21/2013 04:01:13 AM,Code 2 Transport,11/21/2013 04:40:01 AM,EDDY ST/MASON ST,SF,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",133250036-KM07 -112830097,E16,11093603,Medical Incident,10/10/2011,10/10/2011,10/10/2011 09:28:14 AM,10/10/2011 09:29:38 AM,10/10/2011 09:30:18 AM,10/10/2011 09:31:23 AM,10/10/2011 09:34:08 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,No Merit,10/10/2011 09:40:30 AM,1700 Block of GREENWICH ST,SF,94123,B04,16,3336,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7999469340089, -122.428478709476)",112830097-E16 -113210395,59,11106799,Medical Incident,11/17/2011,11/17/2011,11/17/2011 11:23:16 PM,11/17/2011 11:26:02 PM,11/17/2011 11:26:55 PM,11/17/2011 11:27:45 PM,11/17/2011 11:40:38 PM,11/18/2011 12:02:48 AM,11/18/2011 12:26:30 AM,Code 2 Transport,11/18/2011 12:34:29 AM,200 Block of SPEAR ST,SF,94105,B03,35,2114,1,1,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7907290972823, -122.391698710083)",113210395-59 -132830268,E33,13096370,Electrical Hazard,10/10/2013,10/10/2013,10/10/2013 04:48:43 PM,10/10/2013 04:50:05 PM,10/10/2013 04:50:45 PM,10/10/2013 04:52:34 PM,10/10/2013 04:55:51 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Fire,10/10/2013 04:58:56 PM,BRIGHTON AV/GRAFTON AV,SF,94112,B09,33,8465,3,3,3,true,Alarm,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7200357422854, -122.455118450698)",132830268-E33 -120700054,T01,12023155,Alarms,03/10/2012,03/09/2012,03/10/2012 04:45:26 AM,03/10/2012 04:46:34 AM,03/10/2012 04:46:43 AM,03/10/2012 04:49:06 AM,03/10/2012 04:50:38 AM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/10/2012 04:58:23 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,TRUCK,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",120700054-T01 -160512982,AM16,16020589,Medical Incident,02/20/2016,02/20/2016,02/20/2016 08:25:28 PM,02/20/2016 08:25:28 PM,02/20/2016 08:25:54 PM,02/20/2016 08:26:24 PM,02/20/2016 08:35:37 PM,02/20/2016 08:58:42 PM,02/20/2016 09:28:40 PM,Code 2 Transport,02/20/2016 09:54:54 PM,200 Block of BROAD ST,San Francisco,94112,B09,33,8374,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7132160470202, -122.460797253978)",160512982-AM16 -120840137,KM04,12027868,Medical Incident,03/24/2012,03/24/2012,03/24/2012 10:14:47 AM,03/24/2012 10:16:49 AM,03/24/2012 10:17:22 AM,03/24/2012 10:18:50 AM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,04/25/2016 01:59:31 PM,Other,03/24/2012 10:20:05 AM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,3,3,false,Non Life-threatening,1,PRIVATE,4,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",120840137-KM04 -102820108,KM04,10089624,Medical Incident,10/09/2010,10/09/2010,10/09/2010 08:32:46 AM,10/09/2010 08:33:27 AM,10/09/2010 08:33:44 AM,10/09/2010 08:35:19 AM,10/09/2010 08:37:36 AM,10/09/2010 08:53:35 AM,10/09/2010 09:08:44 AM,Code 2 Transport,10/09/2010 09:32:43 AM,2700 Block of OCTAVIA ST,SF,94123,B04,16,3335,3,3,3,false,,1,PRIVATE,2,4,2,Marina,"(37.7974672577341, -122.428751342054)",102820108-KM04 -120490028,E16,12016092,Medical Incident,02/18/2012,02/17/2012,02/18/2012 02:12:35 AM,02/18/2012 02:13:12 AM,02/18/2012 02:13:36 AM,02/18/2012 02:15:33 AM,02/18/2012 02:18:25 AM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/18/2012 02:30:49 AM,2000 Block of LOMBARD ST,SF,94123,B04,16,3461,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8000637304803, -122.435248996986)",120490028-E16 -120240033,E05,12007990,Medical Incident,01/24/2012,01/23/2012,01/24/2012 04:20:53 AM,01/24/2012 04:22:53 AM,01/24/2012 04:23:11 AM,01/24/2012 04:25:23 AM,01/24/2012 04:26:26 AM,04/25/2016 02:00:28 PM,04/25/2016 02:00:28 PM,Other,01/24/2012 04:40:42 AM,1500 Block of TURK ST,SF,94115,B05,5,3643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Western Addition,"(37.7802364001974, -122.434615507632)",120240033-E05 -160542134,AM04,16021634,Medical Incident,02/23/2016,02/23/2016,02/23/2016 02:19:15 PM,02/23/2016 02:22:03 PM,02/23/2016 02:23:27 PM,02/23/2016 02:24:27 PM,02/23/2016 02:31:50 PM,02/23/2016 02:51:49 PM,02/23/2016 03:08:41 PM,Code 2 Transport,02/23/2016 03:35:01 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160542134-AM04 -160493014,AM12,16019830,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:01:18 PM,02/18/2016 06:04:55 PM,02/18/2016 06:05:05 PM,02/18/2016 06:05:35 PM,02/18/2016 06:29:16 PM,02/18/2016 06:54:00 PM,02/18/2016 07:17:00 PM,Code 2 Transport,02/18/2016 07:34:27 PM,3600 Block of ORTEGA ST,San Francisco,94116,B08,23,7646,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7511602293042, -122.502592654356)",160493014-AM12 -160550762,50,16021919,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:24:13 AM,02/24/2016 08:25:07 AM,02/24/2016 08:26:12 AM,02/24/2016 08:26:12 AM,02/24/2016 08:37:02 AM,02/24/2016 08:54:38 AM,02/24/2016 09:17:20 AM,Code 2 Transport,02/24/2016 09:55:53 AM,1200 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6614,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7214606647015, -122.392279417619)",160550762-50 -133180360,T13,13108227,Alarms,11/14/2013,11/14/2013,11/14/2013 11:04:31 PM,11/14/2013 11:05:43 PM,11/14/2013 11:05:55 PM,11/14/2013 11:07:55 PM,11/14/2013 11:09:43 PM,04/25/2016 01:49:45 PM,04/25/2016 01:49:45 PM,Other,11/14/2013 11:14:21 PM,600 Block of CALIFORNIA ST,SF,94108,B01,13,1314,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.792616896353, -122.40504699065)",133180360-T13 -102940121,60,10093704,Medical Incident,10/21/2010,10/21/2010,10/21/2010 11:00:22 AM,10/21/2010 11:01:23 AM,10/21/2010 11:01:44 AM,10/21/2010 11:01:57 AM,10/21/2010 11:04:10 AM,10/21/2010 11:29:13 AM,10/21/2010 11:49:36 AM,Code 2 Transport,10/21/2010 12:18:18 PM,1300 Block of ELLIS ST,SF,94115,B02,5,3431,3,3,3,true,,1,MEDIC,1,2,5,Western Addition,"(37.7826339083037, -122.429925971077)",102940121-60 -102820252,T05,10089737,Citizen Assist / Service Call,10/09/2010,10/09/2010,10/09/2010 02:45:07 PM,10/09/2010 02:45:07 PM,10/09/2010 02:45:16 PM,10/09/2010 02:46:51 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 02:55:23 PM,1600 Block of TURK ST,SF,94115,B05,5,3643,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.780026750015, -122.436259177468)",102820252-T05 -131360274,T09,13045937,Administrative,05/16/2013,05/16/2013,05/16/2013 02:44:48 PM,05/16/2013 02:44:54 PM,05/16/2013 02:45:03 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 02:45:25 PM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,3,3,false,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",131360274-T09 -131700272,T01,13057799,Structure Fire,06/19/2013,06/19/2013,06/19/2013 04:49:54 PM,06/19/2013 04:49:55 PM,06/19/2013 04:50:02 PM,06/19/2013 04:51:52 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/19/2013 04:53:35 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,TRUCK,3,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131700272-T01 -132460045,93,13082894,Medical Incident,09/03/2013,09/02/2013,09/03/2013 05:33:24 AM,09/03/2013 05:36:21 AM,09/03/2013 05:36:29 AM,09/03/2013 05:36:59 AM,09/03/2013 05:43:27 AM,09/03/2013 06:02:59 AM,09/03/2013 06:11:31 AM,Code 3 Transport,09/03/2013 06:47:09 AM,700 Block of BROADWAY,SF,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7976146082072, -122.409164766852)",132460045-93 -112950304,KM12,11097948,Medical Incident,10/22/2011,10/22/2011,10/22/2011 06:58:46 PM,10/22/2011 06:59:19 PM,10/22/2011 06:59:58 PM,10/22/2011 07:01:24 PM,10/22/2011 07:08:22 PM,10/22/2011 07:30:12 PM,10/22/2011 07:50:56 PM,Code 2 Transport,10/22/2011 08:20:34 PM,BEACH ST/POWELL ST,SF,94133,B01,28,1344,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.807690493217, -122.412329558798)",112950304-KM12 -111100086,B03,11036239,Alarms,04/20/2011,04/20/2011,04/20/2011 08:03:52 AM,04/20/2011 08:04:36 AM,04/20/2011 08:04:46 AM,04/20/2011 08:05:50 AM,04/20/2011 08:12:44 AM,04/25/2016 02:05:01 PM,04/25/2016 02:05:01 PM,Other,04/20/2011 08:12:48 AM,1500 Block of 6TH AVE,SF,94122,B03,29,2265,3,3,3,false,,1,CHIEF,3,8,7,Inner Sunset,"(37.7600909808627, -122.462885984723)",111100086-B03 -112320345,E41,11076737,Medical Incident,08/20/2011,08/20/2011,08/20/2011 09:01:22 PM,08/20/2011 09:02:18 PM,08/20/2011 09:02:45 PM,08/20/2011 09:04:49 PM,08/20/2011 09:06:09 PM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/20/2011 09:13:20 PM,1000 Block of HYDE ST,SF,94109,B04,41,1562,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7905178178349, -122.417229719258)",112320345-E41 -121030225,E03,12034148,Alarms,04/12/2012,04/12/2012,04/12/2012 02:26:04 PM,04/12/2012 02:28:34 PM,04/12/2012 02:29:07 PM,04/12/2012 02:29:34 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,04/25/2016 01:59:12 PM,Other,04/12/2012 02:33:43 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",121030225-E03 -92620339,B04,9078183,Alarms,09/19/2009,09/19/2009,09/19/2009 09:34:13 PM,09/19/2009 09:35:15 PM,09/19/2009 09:35:27 PM,09/19/2009 09:36:21 PM,04/25/2016 03:26:55 PM,04/25/2016 03:26:55 PM,04/25/2016 03:26:55 PM,Other,09/19/2009 09:38:18 PM,1900 Block of LOMBARD ST,SF,94123,B04,16,3461,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.8002723548355, -122.433605968659)",092620339-B04 -122060278,KM12,12068569,Traffic Collision,07/24/2012,07/24/2012,07/24/2012 05:22:58 PM,07/24/2012 05:23:01 PM,07/24/2012 05:24:25 PM,07/24/2012 05:25:34 PM,07/24/2012 05:33:52 PM,07/24/2012 05:45:25 PM,07/24/2012 06:09:32 PM,Code 2 Transport,07/24/2012 06:46:24 PM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",122060278-KM12 -130650086,T06,13021684,Medical Incident,03/06/2013,03/06/2013,03/06/2013 08:51:14 AM,03/06/2013 08:52:13 AM,03/06/2013 08:53:31 AM,03/06/2013 08:55:28 AM,03/06/2013 09:01:13 AM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,Other,03/06/2013 09:14:14 AM,300 Block of PARNASSUS AVE,SF,94117,B05,12,5155,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,5,5,Inner Sunset,"(37.7640840126749, -122.45593384681)",130650086-T06 -122230348,T14,12074077,Traffic Collision,08/10/2012,08/10/2012,08/10/2012 08:26:20 PM,08/10/2012 08:28:03 PM,08/10/2012 08:28:37 PM,08/10/2012 08:30:01 PM,08/10/2012 08:31:27 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 08:56:00 PM,26TH AV/CLEMENT ST,SF,94121,B07,14,7221,3,3,3,true,Potentially Life-Threatening,1,TRUCK,2,7,1,Outer Richmond,"(37.7819746195638, -122.485945326699)",122230348-T14 -120410040,85,12013538,Medical Incident,02/10/2012,02/09/2012,02/10/2012 03:41:06 AM,02/10/2012 03:42:12 AM,02/10/2012 03:42:26 AM,02/10/2012 03:42:58 AM,02/10/2012 03:49:46 AM,02/10/2012 04:05:16 AM,02/10/2012 04:17:39 AM,Code 2 Transport,02/10/2012 04:50:19 AM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,1,1,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",120410040-85 -112440085,T13,11080373,Structure Fire,09/01/2011,09/01/2011,09/01/2011 09:07:40 AM,09/01/2011 09:07:40 AM,09/01/2011 09:07:48 AM,09/01/2011 09:08:47 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 09:12:01 AM,BEALE ST/FOLSOM ST,SF,94105,B03,35,2122,3,3,3,false,,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7886866619654, -122.392722833778)",112440085-T13 -123590247,79,12120247,Medical Incident,12/24/2012,12/24/2012,12/24/2012 05:02:11 PM,12/24/2012 05:04:51 PM,12/24/2012 05:05:08 PM,12/24/2012 05:05:32 PM,12/24/2012 05:09:57 PM,12/24/2012 05:20:40 PM,12/24/2012 05:26:15 PM,Code 2 Transport,12/24/2012 05:45:23 PM,900 Block of OFARRELL ST,SF,94109,B04,3,3162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848026049584, -122.420359587803)",123590247-79 -140810114,T02,14027307,Alarms,03/22/2014,03/22/2014,03/22/2014 09:44:11 AM,03/22/2014 09:45:44 AM,03/22/2014 09:48:14 AM,03/22/2014 09:48:47 AM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,04/25/2016 01:47:37 PM,Fire,03/22/2014 09:51:12 AM,600 Block of STOCKTON ST,SAN FRANCISCO,94108,B01,2,1325,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",140810114-T02 -160282737,66,16011170,Medical Incident,01/28/2016,01/28/2016,01/28/2016 04:48:01 PM,01/28/2016 04:48:01 PM,01/28/2016 04:50:17 PM,01/28/2016 04:50:17 PM,01/28/2016 04:57:31 PM,01/28/2016 05:07:57 PM,01/28/2016 05:45:53 PM,Code 2 Transport,01/28/2016 06:41:49 PM,5200 Block of 3RD ST,San Francisco,94124,B10,17,6536,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7297002538198, -122.392619682108)",160282737-66 -160211679,KM11,16008369,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:28:54 PM,01/21/2016 12:29:56 PM,01/21/2016 12:30:15 PM,01/21/2016 12:31:01 PM,01/21/2016 12:36:34 PM,01/21/2016 12:42:05 PM,01/21/2016 01:01:50 PM,Code 2 Transport,01/21/2016 01:21:16 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160211679-KM11 -112280231,RC1,11075399,Medical Incident,08/16/2011,08/16/2011,08/16/2011 03:58:18 PM,08/16/2011 03:59:43 PM,08/16/2011 04:00:29 PM,08/16/2011 04:01:34 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,04/25/2016 02:03:08 PM,Other,08/16/2011 04:05:23 PM,SACRAMENTO ST/VAN NESS AV,SF,94109,B04,41,3154,3,E,3,true,,1,RESCUE CAPTAIN,4,4,3,Nob Hill,"(37.7912888912559, -122.422514944187)",112280231-RC1 -132140337,E12,13072395,Citizen Assist / Service Call,08/02/2013,08/02/2013,08/02/2013 08:48:40 PM,08/02/2013 08:51:06 PM,08/02/2013 08:52:19 PM,04/25/2016 01:51:30 PM,08/02/2013 08:55:00 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 08:59:56 PM,900 Block of ASHBURY ST,SF,94117,B05,12,5164,3,3,3,true,Alarm,1,ENGINE,1,5,8,Haight Ashbury,"(37.7646916029501, -122.445790251499)",132140337-E12 -131050414,T06,13035469,Gas Leak (Natural and LP Gases),04/15/2013,04/15/2013,04/15/2013 11:05:54 PM,04/15/2013 11:08:22 PM,04/15/2013 11:08:38 PM,04/15/2013 11:10:29 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/15/2013 11:21:54 PM,100 Block of HERMANN ST,SF,94102,B02,6,3417,3,3,3,false,Alarm,1,TRUCK,3,2,5,Hayes Valley,"(37.7706102102676, -122.427614378047)",131050414-T06 -160812240,54,16032231,Traffic Collision,03/21/2016,03/21/2016,03/21/2016 03:00:25 PM,03/21/2016 03:02:54 PM,03/21/2016 03:24:42 PM,03/21/2016 03:28:35 PM,03/21/2016 03:35:19 PM,03/21/2016 03:58:53 PM,03/21/2016 04:26:14 PM,Code 2 Transport,03/21/2016 05:11:36 PM,GEARY BL/PARKER AV,San Francisco,94118,B07,10,4453,2,2,2,true,Non Life-threatening,1,MEDIC,5,7,1,Lone Mountain/USF,"(37.7815988218365, -122.45417599296)",160812240-54 -120540263,83,12017886,Medical Incident,02/23/2012,02/23/2012,02/23/2012 04:15:17 PM,02/23/2012 04:17:01 PM,02/23/2012 04:17:10 PM,02/23/2012 04:18:18 PM,02/23/2012 04:28:10 PM,02/23/2012 04:30:35 PM,02/23/2012 04:47:51 PM,Code 2 Transport,02/23/2012 05:16:03 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",120540263-83 -160751496,61,16029690,Medical Incident,03/15/2016,03/15/2016,03/15/2016 11:46:45 AM,03/15/2016 11:47:07 AM,03/15/2016 11:47:27 AM,03/15/2016 11:47:34 AM,03/15/2016 11:55:27 AM,03/15/2016 12:09:59 PM,03/15/2016 12:29:17 PM,Code 2 Transport,03/15/2016 12:42:39 PM,FRANCISCO ST/KEARNY ST,San Francisco,94133,B01,28,1223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8054944688801, -122.406956635638)",160751496-61 -130130025,E11,13004286,Citizen Assist / Service Call,01/13/2013,01/12/2013,01/13/2013 12:57:31 AM,01/13/2013 01:00:25 AM,01/13/2013 01:32:23 AM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/13/2013 01:33:45 AM,200 Block of CHENERY ST,SF,94131,B06,32,8113,3,3,3,true,Alarm,1,ENGINE,2,6,8,Glen Park,"(37.737804983757, -122.426907272853)",130130025-E11 -110530351,54,11017662,Medical Incident,02/22/2011,02/22/2011,02/22/2011 09:27:40 PM,02/22/2011 09:28:50 PM,02/22/2011 09:29:08 PM,02/22/2011 09:29:27 PM,02/22/2011 09:38:16 PM,02/22/2011 09:51:31 PM,02/22/2011 10:03:23 PM,Code 2 Transport,02/22/2011 10:32:12 PM,WOODWARD ST/DUBOCE AV,SF,94103,B02,36,5215,3,1,2,true,,1,MEDIC,1,2,9,Mission,"(37.7699175515884, -122.420938647329)",110530351-54 -123090019,94,12102594,Medical Incident,11/04/2012,11/03/2012,11/04/2012 12:40:35 AM,11/04/2012 12:42:09 AM,11/04/2012 12:42:52 AM,11/04/2012 12:42:57 AM,11/04/2012 01:03:19 AM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,Patient Declined Transport,11/04/2012 01:06:41 AM,CLEMENT ST/6TH AV,SF,94118,B07,31,7125,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7829399330612, -122.464425023808)",123090019-94 -132170158,RC1,13073280,Medical Incident,08/05/2013,08/05/2013,08/05/2013 12:27:17 PM,08/05/2013 12:28:45 PM,08/05/2013 12:30:21 PM,08/05/2013 12:31:30 PM,08/05/2013 12:33:14 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 12:41:25 PM,300 Block of MARKET ST,SF,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,3,6,Financial District/South Beach,"(37.7919873998129, -122.397733553251)",132170158-RC1 -120110080,KM15,12003731,Medical Incident,01/11/2012,01/11/2012,01/11/2012 09:18:23 AM,01/11/2012 09:19:07 AM,01/11/2012 09:19:23 AM,01/11/2012 09:19:58 AM,01/11/2012 09:22:07 AM,01/11/2012 09:38:14 AM,01/11/2012 09:44:54 AM,Code 2 Transport,01/11/2012 10:00:46 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",120110080-KM15 -120500162,AP,12016511,Other,02/19/2012,02/19/2012,02/19/2012 12:31:12 PM,02/19/2012 12:31:13 PM,02/19/2012 12:31:13 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,04/25/2016 02:00:04 PM,Fire,02/19/2012 12:31:26 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120500162-AP -131200229,KM01,13040415,Medical Incident,04/30/2013,04/30/2013,04/30/2013 05:33:50 PM,04/30/2013 05:36:29 PM,04/30/2013 05:36:36 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,04/25/2016 01:53:02 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",131200229-KM01 -110470138,E32,11015496,Medical Incident,02/16/2011,02/16/2011,02/16/2011 10:12:24 AM,02/16/2011 10:12:30 AM,02/16/2011 10:14:23 AM,02/16/2011 10:14:46 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 10:17:54 AM,400 Block of HOLLADAY AVE,SF,94110,B06,9,5675,3,3,3,true,,1,ENGINE,4,10,9,Bernal Heights,"(37.7429361272144, -122.407245750769)",110470138-E32 -131730108,KM11,13058641,Medical Incident,06/22/2013,06/22/2013,06/22/2013 10:08:09 AM,06/22/2013 10:12:43 AM,06/22/2013 10:13:30 AM,04/25/2016 01:52:10 PM,06/22/2013 10:22:58 AM,06/22/2013 10:38:16 AM,06/22/2013 10:51:31 AM,Code 2 Transport,06/22/2013 11:41:17 AM,2700 Block of PINE ST,SF,94115,B04,10,4156,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7869521630601, -122.441071822801)",131730108-KM11 -110290196,T19,11009552,Structure Fire,01/29/2011,01/29/2011,01/29/2011 01:15:08 PM,01/29/2011 01:17:07 PM,01/29/2011 01:17:29 PM,01/29/2011 01:18:53 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/29/2011 01:25:30 PM,300 Block of MAGELLAN AVE,SF,94116,B08,39,8624,3,3,3,false,,1,TRUCK,11,8,7,West of Twin Peaks,"(37.7460496773153, -122.462270591717)",110290196-T19 -111400051,E03,11046434,Medical Incident,05/20/2011,05/19/2011,05/20/2011 05:38:04 AM,05/20/2011 05:38:37 AM,05/20/2011 05:38:46 AM,05/20/2011 05:40:59 AM,05/20/2011 05:42:28 AM,04/25/2016 02:04:32 PM,04/25/2016 02:04:32 PM,Other,05/20/2011 05:43:00 AM,HEMLOCK ST/VAN NESS AV,SF,94109,B04,3,3161,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7870872505884, -122.421559716806)",111400051-E03 -160653629,AM20,16026164,Medical Incident,03/05/2016,03/05/2016,03/05/2016 10:24:40 PM,03/05/2016 10:25:04 PM,03/05/2016 10:28:34 PM,03/05/2016 10:29:00 PM,03/05/2016 10:40:49 PM,03/05/2016 11:14:19 PM,03/05/2016 11:30:23 PM,Code 2 Transport,03/06/2016 12:03:50 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160653629-AM20 -111220228,92,11040349,Medical Incident,05/02/2011,05/02/2011,05/02/2011 01:54:01 PM,05/02/2011 01:54:57 PM,05/02/2011 01:55:19 PM,05/02/2011 01:55:32 PM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,04/25/2016 02:04:49 PM,2100 Block of 24TH AVE,SF,94116,B08,40,7444,3,3,3,true,,1,MEDIC,4,8,4,Sunset/Parkside,"(37.7474792137801, -122.481306264779)",111220228-92 -160242703,75,16009625,Medical Incident,01/24/2016,01/24/2016,01/24/2016 05:58:30 PM,01/24/2016 05:59:40 PM,01/24/2016 06:00:22 PM,01/24/2016 06:00:36 PM,01/24/2016 06:11:37 PM,01/24/2016 06:34:42 PM,01/24/2016 06:50:07 PM,Code 2 Transport,01/24/2016 07:16:48 PM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7332256396347, -122.380898507162)",160242703-75 -121840037,T03,12061169,Medical Incident,07/02/2012,07/01/2012,07/02/2012 03:41:30 AM,07/02/2012 03:42:01 AM,07/02/2012 03:42:40 AM,07/02/2012 03:43:00 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,04/25/2016 01:57:55 PM,JONES ST/OFARRELL ST,SF,94102,B01,1,1452,E,A,2,false,Potentially Life-Threatening,1,TRUCK,4,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",121840037-T03 -123390035,E01,12112945,Medical Incident,12/04/2012,12/03/2012,12/04/2012 03:51:12 AM,12/04/2012 03:52:35 AM,12/04/2012 03:52:48 AM,12/04/2012 03:54:14 AM,12/04/2012 03:59:15 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 04:09:54 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",123390035-E01 -132980351,88,13101345,Medical Incident,10/25/2013,10/25/2013,10/25/2013 07:35:45 PM,10/25/2013 07:36:29 PM,10/25/2013 07:37:14 PM,10/25/2013 07:37:21 PM,10/25/2013 07:41:46 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,04/25/2016 01:50:05 PM,0 Block of BANBURY DR,SF,94132,B09,19,8752,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7199771878959, -122.473992866196)",132980351-88 -140210355,T10,14007342,Citizen Assist / Service Call,01/21/2014,01/21/2014,01/21/2014 10:00:51 PM,01/21/2014 10:01:30 PM,01/21/2014 10:01:44 PM,01/21/2014 10:03:46 PM,01/21/2014 10:06:25 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Fire,01/21/2014 10:38:02 PM,0 Block of LOYOLA TER,SF,94117,B05,21,4522,3,3,3,false,Alarm,1,TRUCK,1,5,1,Lone Mountain/USF,"(37.7758865411674, -122.448858643661)",140210355-T10 -132670008,67,13090493,Medical Incident,09/24/2013,09/23/2013,09/24/2013 12:57:11 AM,09/24/2013 12:58:48 AM,09/24/2013 12:59:48 AM,09/24/2013 12:59:55 AM,09/24/2013 01:07:35 AM,09/24/2013 01:16:18 AM,09/24/2013 01:26:26 AM,Code 2 Transport,09/24/2013 01:48:57 AM,1800 Block of 41ST AVE,SF,94122,B08,18,7633,2,2,2,false,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7522704551355, -122.499910588414)",132670008-67 -130530295,AM06,13018001,Medical Incident,02/22/2013,02/22/2013,02/22/2013 05:43:45 PM,02/22/2013 05:45:52 PM,02/22/2013 05:46:06 PM,02/22/2013 05:46:47 PM,02/22/2013 05:52:18 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Fire,02/22/2013 06:07:30 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",130530295-AM06 -160391788,AM12,16015620,Medical Incident,02/08/2016,02/08/2016,02/08/2016 01:10:04 PM,02/08/2016 01:12:17 PM,02/08/2016 01:12:33 PM,02/08/2016 01:13:12 PM,02/08/2016 01:17:00 PM,02/08/2016 01:39:26 PM,02/08/2016 01:54:56 PM,Code 2 Transport,02/08/2016 02:28:15 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160391788-AM12 -160581764,74,16023119,Medical Incident,02/27/2016,02/27/2016,02/27/2016 01:04:41 PM,02/27/2016 01:04:41 PM,02/27/2016 01:05:50 PM,02/27/2016 01:06:44 PM,02/27/2016 01:11:03 PM,02/27/2016 01:34:15 PM,02/27/2016 01:34:33 PM,Code 2 Transport,02/27/2016 02:12:21 PM,HAIGHT ST/STANYAN ST,San Francisco,94117,B05,12,4545,A,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,5,Haight Ashbury,"(37.7691652248423, -122.453536875377)",160581764-74 -131550054,E32,13052426,Medical Incident,06/04/2013,06/03/2013,06/04/2013 05:33:45 AM,06/04/2013 05:34:35 AM,06/04/2013 05:35:11 AM,04/25/2016 01:52:28 PM,06/04/2013 05:40:10 AM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/04/2013 05:55:30 AM,"CALL BOX: ELLSWORTH ST/ALEMANY SB BL,SF",SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7322713620509, -122.418897144818)",131550054-E32 -123460251,E01,12115762,Medical Incident,12/11/2012,12/11/2012,12/11/2012 03:27:15 PM,12/11/2012 03:28:36 PM,12/11/2012 03:33:24 PM,12/11/2012 03:34:44 PM,12/11/2012 03:42:08 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/11/2012 03:46:34 PM,MARKET ST/3RD ST,SF,94103,B01,1,1241,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",123460251-E01 -160180883,KM05,16007169,Medical Incident,01/18/2016,01/18/2016,01/18/2016 09:21:44 AM,01/18/2016 09:24:03 AM,01/18/2016 09:24:54 AM,01/18/2016 09:25:18 AM,01/18/2016 09:35:24 AM,01/18/2016 10:03:10 AM,01/18/2016 10:23:53 AM,Code 2 Transport,01/18/2016 11:16:50 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",160180883-KM05 -103430133,77,10109803,Structure Fire,12/09/2010,12/09/2010,12/09/2010 09:26:04 AM,12/09/2010 09:26:26 AM,12/09/2010 09:27:18 AM,12/09/2010 09:27:51 AM,12/09/2010 09:36:11 AM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/09/2010 09:43:09 AM,0 Block of ARLETA AVE,SF,94134,B10,44,6267,3,3,3,true,,1,MEDIC,4,9,10,Visitacion Valley,"(37.7127854702451, -122.403578734833)",103430133-77 -121140229,KM02,12037878,Medical Incident,04/23/2012,04/23/2012,04/23/2012 03:23:42 PM,04/23/2012 03:24:24 PM,04/23/2012 03:24:47 PM,04/23/2012 03:29:23 PM,04/23/2012 03:35:55 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,No Merit,04/23/2012 04:17:53 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",121140229-KM02 -102350091,E12,10073874,Medical Incident,08/23/2010,08/23/2010,08/23/2010 09:25:17 AM,08/23/2010 09:27:07 AM,08/23/2010 09:27:57 AM,08/23/2010 09:28:51 AM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 09:29:44 AM,PARNASSUS AV/HILL POINT AV,SF,94131,B05,12,5155,3,3,3,true,,1,ENGINE,2,5,5,Inner Sunset,"(37.7640700707945, -122.455781063298)",102350091-E12 -160301331,89,16011741,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:23:49 AM,01/30/2016 10:25:02 AM,01/30/2016 10:25:27 AM,01/30/2016 10:26:25 AM,01/30/2016 10:35:01 AM,01/30/2016 10:49:06 AM,01/30/2016 11:13:03 AM,Code 2 Transport,01/30/2016 11:51:58 AM,1600 Block of WALLACE AVE,San Francisco,94124,B10,17,6546,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7280277124346, -122.391963404098)",160301331-89 -160322373,AM16,16012641,Medical Incident,02/01/2016,02/01/2016,02/01/2016 03:55:23 PM,02/01/2016 03:55:55 PM,02/01/2016 03:56:18 PM,02/01/2016 03:57:00 PM,02/01/2016 04:04:46 PM,02/01/2016 04:08:58 PM,02/01/2016 04:38:42 PM,Code 2 Transport,02/01/2016 05:22:29 PM,CALL BOX:,San Francisco,94107,B03,1,2147,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7854851439259, -122.396731785481)",160322373-AM16 -160193218,61,16007775,Medical Incident,01/19/2016,01/19/2016,01/19/2016 07:36:22 PM,01/19/2016 07:36:58 PM,01/19/2016 07:37:39 PM,01/19/2016 07:37:59 PM,01/19/2016 07:39:46 PM,01/19/2016 07:56:01 PM,01/19/2016 08:11:22 PM,Code 2 Transport,01/19/2016 09:06:24 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160193218-61 -160092432,KM13,16003713,Medical Incident,01/09/2016,01/09/2016,01/09/2016 04:35:05 PM,01/09/2016 04:36:31 PM,01/09/2016 04:36:45 PM,01/09/2016 04:37:08 PM,01/09/2016 04:54:10 PM,01/09/2016 05:04:52 PM,01/09/2016 05:27:50 PM,Code 2 Transport,01/09/2016 05:49:19 PM,2300 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7594381240168, -122.419060339091)",160092432-KM13 -121960329,AM10,12065319,Medical Incident,07/14/2012,07/14/2012,07/14/2012 08:47:30 PM,07/14/2012 08:48:42 PM,07/14/2012 08:49:35 PM,07/14/2012 08:50:38 PM,07/14/2012 08:56:13 PM,07/14/2012 09:04:14 PM,07/14/2012 09:22:55 PM,Code 2 Transport,07/14/2012 09:54:28 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",121960329-AM10 -112100189,96,11069340,Medical Incident,07/29/2011,07/29/2011,07/29/2011 02:54:26 PM,07/29/2011 02:55:27 PM,07/29/2011 02:55:39 PM,04/25/2016 02:03:26 PM,07/29/2011 02:57:23 PM,07/29/2011 03:10:07 PM,07/29/2011 03:25:52 PM,Code 2 Transport,07/29/2011 03:45:28 PM,1300 Block of MARKET ST,SF,94103,B02,36,3111,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7769455318934, -122.416807079177)",112100189-96 -140030178,66,14001031,Medical Incident,01/03/2014,01/03/2014,01/03/2014 11:16:05 AM,01/03/2014 11:16:22 AM,01/03/2014 11:17:24 AM,01/03/2014 11:18:12 AM,01/03/2014 11:36:27 AM,01/03/2014 11:36:33 AM,01/03/2014 11:47:19 AM,Code 2 Transport,01/03/2014 12:01:57 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",140030178-66 -160771703,84,16030559,Medical Incident,03/17/2016,03/17/2016,03/17/2016 12:17:41 PM,03/17/2016 12:17:41 PM,03/17/2016 12:19:06 PM,03/17/2016 12:19:14 PM,03/17/2016 12:29:04 PM,03/17/2016 12:34:25 PM,03/17/2016 12:51:48 PM,Code 2 Transport,03/17/2016 01:24:47 PM,100 Block of TIFFANY AV,San Francisco,94110,B06,11,5611,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Bernal Heights,"(37.7452607746027, -122.42122878628)",160771703-84 -132190395,77,13074130,Medical Incident,08/07/2013,08/07/2013,08/07/2013 10:18:56 PM,08/07/2013 10:20:42 PM,08/07/2013 10:27:07 PM,08/07/2013 10:27:35 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,Other,08/07/2013 10:33:13 PM,500 Block of NATOMA ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,4,3,6,South of Market,"(37.7796886144323, -122.408201798882)",132190395-77 -160550489,55,16021895,Medical Incident,02/24/2016,02/23/2016,02/24/2016 06:38:24 AM,02/24/2016 06:40:33 AM,02/24/2016 06:41:04 AM,02/24/2016 06:41:10 AM,02/24/2016 06:51:19 AM,02/24/2016 07:13:45 AM,02/24/2016 07:28:58 AM,Code 2 Transport,02/24/2016 08:02:44 AM,HOWARD ST/10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7740433259374, -122.414367692219)",160550489-55 -131700362,77,13057880,Medical Incident,06/19/2013,06/19/2013,06/19/2013 10:13:28 PM,06/19/2013 10:14:22 PM,06/19/2013 10:14:37 PM,06/19/2013 10:14:50 PM,06/19/2013 10:19:08 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Patient Declined Transport,06/19/2013 10:53:40 PM,1700 Block of LA SALLE AVE,SF,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7381169167757, -122.391416846144)",131700362-77 -160653583,55,16026157,Medical Incident,03/05/2016,03/05/2016,03/05/2016 10:13:48 PM,03/05/2016 10:13:48 PM,03/05/2016 10:14:26 PM,03/05/2016 10:14:37 PM,03/05/2016 10:22:50 PM,03/05/2016 10:44:28 PM,03/05/2016 10:52:06 PM,Code 2 Transport,03/05/2016 11:22:05 PM,236-242 POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7869021819973, -122.408064958219)",160653583-55 -110010180,E22,11000136,Medical Incident,01/01/2011,12/31/2010,01/01/2011 02:37:59 AM,01/01/2011 02:43:44 AM,01/01/2011 02:56:22 AM,01/01/2011 02:59:19 AM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,04/25/2016 02:06:49 PM,Other,01/01/2011 03:04:56 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7854258563204, -122.399870165149)",110010180-E22 -123080235,E01,12102440,Medical Incident,11/03/2012,11/03/2012,11/03/2012 04:45:42 PM,11/03/2012 04:47:01 PM,11/03/2012 04:47:20 PM,11/03/2012 04:47:39 PM,11/03/2012 04:50:26 PM,04/25/2016 01:55:58 PM,04/25/2016 01:55:58 PM,Unable to Locate,11/03/2012 04:52:46 PM,SHIPLEY ST/FALMOUTH ST,SF,94107,B03,1,2244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.779005028578, -122.403883328277)",123080235-E01 -160451132,74,16018065,Medical Incident,02/14/2016,02/14/2016,02/14/2016 10:09:54 AM,02/14/2016 10:12:19 AM,02/14/2016 10:13:56 AM,02/14/2016 10:14:03 AM,02/14/2016 10:21:20 AM,02/14/2016 10:35:54 AM,02/14/2016 10:50:08 AM,Code 2 Transport,02/14/2016 11:10:59 AM,BRYANT ST/9TH ST,San Francisco,94103,B03,29,2324,2,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7712907918294, -122.408531083232)",160451132-74 -140710373,T16,14024125,Alarms,03/12/2014,03/12/2014,03/12/2014 08:20:49 PM,03/12/2014 08:23:13 PM,03/12/2014 08:23:22 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Fire,03/12/2014 08:29:03 PM,1000 Block of GIRARD RD,PRESIDIO,94129,B99,51,4612,3,3,3,false,Alarm,1,TRUCK,3,7,2,Presidio,"(37.8013251294544, -122.453498244358)",140710373-T16 -110150032,E36,11004867,Medical Incident,01/15/2011,01/14/2011,01/15/2011 02:40:26 AM,01/15/2011 02:41:36 AM,01/15/2011 02:41:46 AM,01/15/2011 02:43:44 AM,01/15/2011 02:45:35 AM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 02:50:31 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,2,2,true,,1,ENGINE,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",110150032-E36 -160231640,AM12,16009143,Medical Incident,01/23/2016,01/23/2016,01/23/2016 12:46:10 PM,01/23/2016 12:47:03 PM,01/23/2016 12:47:21 PM,01/23/2016 12:48:25 PM,01/23/2016 12:55:49 PM,01/23/2016 01:08:41 PM,01/23/2016 01:19:42 PM,Code 2 Transport,01/23/2016 01:45:34 PM,3400 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4422,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7878174923795, -122.449468699163)",160231640-AM12 -130610279,86,13020535,Traffic Collision,03/02/2013,03/02/2013,03/02/2013 05:08:38 PM,03/02/2013 05:09:38 PM,03/02/2013 05:09:47 PM,03/02/2013 05:10:39 PM,03/02/2013 05:20:06 PM,03/02/2013 05:43:34 PM,03/02/2013 05:53:22 PM,Code 3 Transport,03/02/2013 06:56:19 PM,0 Block of MOFFITT ST,SF,94131,B06,26,8111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7371435128093, -122.432773119399)",130610279-86 -102370014,67,10074590,Medical Incident,08/25/2010,08/24/2010,08/25/2010 01:37:45 AM,08/25/2010 01:39:15 AM,08/25/2010 01:39:35 AM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,04/25/2016 02:08:55 PM,08/25/2010 02:09:35 AM,Code 2 Transport,08/25/2010 02:27:09 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",102370014-67 -123030312,AM04,12100606,Medical Incident,10/29/2012,10/29/2012,10/29/2012 02:25:14 PM,10/29/2012 02:27:44 PM,10/29/2012 02:28:00 PM,10/29/2012 02:28:31 PM,10/29/2012 02:32:26 PM,10/29/2012 02:35:17 PM,10/29/2012 02:58:40 PM,Code 2 Transport,10/29/2012 03:28:28 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7813340573864, -122.399027495005)",123030312-AM04 -103230190,56,10103477,Medical Incident,11/19/2010,11/19/2010,11/19/2010 01:13:30 PM,11/19/2010 01:14:00 PM,11/19/2010 01:14:30 PM,11/19/2010 01:14:51 PM,11/19/2010 01:22:48 PM,11/19/2010 01:32:06 PM,11/19/2010 01:43:05 PM,Code 3 Transport,11/19/2010 02:28:24 PM,0 Block of MIDDLEFIELD DR,SF,94132,B08,19,8741,3,3,3,true,,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7331999479192, -122.48626920863)",103230190-56 -160810253,82,16032029,Medical Incident,03/21/2016,03/20/2016,03/21/2016 02:56:12 AM,03/21/2016 02:58:25 AM,03/21/2016 03:00:23 AM,03/21/2016 03:01:09 AM,03/21/2016 03:07:17 AM,03/21/2016 03:34:07 AM,03/21/2016 03:49:42 AM,Code 2 Transport,03/21/2016 04:34:43 AM,200 Block of PUTNAM ST,San Francisco,94110,B10,32,5746,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",160810253-82 -133280261,E38,13111535,Traffic Collision,11/24/2013,11/24/2013,11/24/2013 05:45:55 PM,11/24/2013 05:45:55 PM,11/24/2013 05:46:10 PM,11/24/2013 05:46:51 PM,11/24/2013 05:49:56 PM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 06:07:01 PM,BUSH ST/FRANKLIN ST,SF,94109,B04,38,3224,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Western Addition,"(37.7882797328681, -122.423594074468)",133280261-E38 -130830034,RC1,13027640,Medical Incident,03/24/2013,03/23/2013,03/24/2013 02:12:44 AM,03/24/2013 02:13:08 AM,03/24/2013 02:13:37 AM,03/24/2013 02:15:49 AM,03/24/2013 02:21:55 AM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/24/2013 02:32:02 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",130830034-RC1 -112230384,61,11073820,Medical Incident,08/11/2011,08/11/2011,08/11/2011 11:19:35 PM,08/11/2011 11:21:54 PM,08/11/2011 11:22:58 PM,08/11/2011 11:24:18 PM,08/11/2011 11:33:19 PM,08/11/2011 11:51:47 PM,08/12/2011 12:14:24 AM,Code 2 Transport,08/12/2011 12:28:51 AM,5TH ST/MISSION ST,SF,94103,B03,1,2246,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",112230384-61 -130240011,87,13008153,Medical Incident,01/24/2013,01/23/2013,01/24/2013 12:47:17 AM,01/24/2013 12:49:55 AM,01/24/2013 12:51:02 AM,01/24/2013 12:51:43 AM,01/24/2013 01:11:41 AM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Gone on Arrival,01/24/2013 01:17:13 AM,0 Block of CRESCIO CT,SF,94112,B09,33,6214,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7096536255367, -122.447597719879)",130240011-87 -140780385,E01,14026557,Medical Incident,03/19/2014,03/19/2014,03/19/2014 11:38:25 PM,03/19/2014 11:39:58 PM,03/19/2014 11:41:06 PM,03/19/2014 11:42:34 PM,03/19/2014 11:45:08 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Code 2 Transport,03/19/2014 11:55:10 PM,400 Block of JESSIE ST,SAN FRANCISCO,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7820442091855, -122.408519525275)",140780385-E01 -160351888,79,16013830,Medical Incident,02/04/2016,02/04/2016,02/04/2016 01:22:51 PM,02/04/2016 01:22:51 PM,02/04/2016 01:23:01 PM,02/04/2016 01:23:06 PM,02/04/2016 01:31:40 PM,02/04/2016 01:48:26 PM,02/04/2016 01:57:33 PM,Code 2 Transport,02/04/2016 02:17:57 PM,HAYES ST/BUCHANAN ST,San Francisco,94102,B02,36,3413,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7762536677457, -122.427913715931)",160351888-79 -132700213,B09,13091711,Structure Fire,09/27/2013,09/27/2013,09/27/2013 01:00:08 PM,09/27/2013 01:00:08 PM,09/27/2013 01:00:49 PM,09/27/2013 01:02:17 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Fire,09/27/2013 01:15:36 PM,400 Block of BURROWS ST,SF,94134,B10,42,633,3,3,3,false,Alarm,1,CHIEF,3,10,9,Portola,"(37.7278769871167, -122.407535487433)",132700213-B09 -160880218,56,16034799,Medical Incident,03/28/2016,03/27/2016,03/28/2016 02:01:52 AM,03/28/2016 02:06:24 AM,03/28/2016 02:06:59 AM,03/28/2016 02:07:06 AM,03/28/2016 02:11:14 AM,03/28/2016 02:32:36 AM,03/28/2016 02:37:32 AM,Code 2 Transport,03/28/2016 03:06:12 AM,800 Block of TURK ST,San Francisco,94102,B02,3,3216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.781585403105, -122.423090188841)",160880218-56 -160493843,58,16019906,Medical Incident,02/18/2016,02/18/2016,02/18/2016 10:32:36 PM,02/18/2016 10:33:28 PM,02/18/2016 10:33:41 PM,02/18/2016 10:34:00 PM,02/18/2016 10:57:37 PM,02/18/2016 10:57:38 PM,02/18/2016 11:15:05 PM,Code 2 Transport,02/18/2016 11:57:47 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160493843-58 -130010118,AM30,13000079,Medical Incident,01/01/2013,12/31/2012,01/01/2013 01:52:36 AM,01/01/2013 01:53:13 AM,01/01/2013 01:57:08 AM,01/01/2013 01:57:26 AM,01/01/2013 02:01:54 AM,01/01/2013 02:19:19 AM,01/01/2013 03:06:45 AM,Code 2 Transport,01/01/2013 03:06:46 AM,3RD ST/KIRKWOOD AV,SF,94124,B10,25,6467,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7379553967402, -122.389587380179)",130010118-AM30 -160722096,KM13,16028643,Medical Incident,03/12/2016,03/12/2016,03/12/2016 03:26:48 PM,03/12/2016 03:29:42 PM,03/12/2016 03:29:58 PM,03/12/2016 03:30:41 PM,03/12/2016 04:02:42 PM,03/12/2016 04:11:36 PM,03/12/2016 04:42:02 PM,Code 2 Transport,03/12/2016 05:24:56 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160722096-KM13 -133460089,88,13117320,Traffic Collision,12/12/2013,12/12/2013,12/12/2013 07:57:09 AM,12/12/2013 08:01:08 AM,12/12/2013 08:02:28 AM,12/12/2013 08:02:52 AM,12/12/2013 08:12:15 AM,12/12/2013 08:29:45 AM,12/12/2013 08:44:12 AM,Code 2 Transport,12/12/2013 09:03:49 AM,POST ST/SCOTT ST,SF,94115,B04,10,4131,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Japantown,"(37.7845309189576, -122.438019671354)",133460089-88 -160881381,KM08,16034910,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:04:58 AM,03/28/2016 11:08:38 AM,03/28/2016 11:11:26 AM,03/28/2016 11:17:16 AM,03/28/2016 11:20:49 AM,03/28/2016 11:43:08 AM,03/28/2016 12:02:45 PM,Code 2 Transport,03/28/2016 12:35:51 PM,900 Block of PACIFIC AVE,San Francisco,94133,B01,2,1416,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",160881381-KM08 -110470259,E05,11015588,Alarms,02/16/2011,02/16/2011,02/16/2011 03:37:26 PM,02/16/2011 03:38:25 PM,02/16/2011 03:39:16 PM,02/16/2011 03:40:14 PM,02/16/2011 03:41:48 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 03:45:01 PM,700 Block of GOUGH ST,SF,94102,B02,5,3263,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7801513070588, -122.423567816511)",110470259-E05 -103000064,D3,10095683,Structure Fire,10/27/2010,10/26/2010,10/27/2010 07:24:16 AM,10/27/2010 07:24:54 AM,10/27/2010 07:25:11 AM,10/27/2010 07:28:04 AM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 07:34:15 AM,1200 Block of INGALLS ST,SF,94124,B10,17,6572,3,3,3,false,,1,CHIEF,5,10,10,Bayview Hunters Point,"(37.7305663224371, -122.381859307677)",103000064-D3 -160214216,AM14,16008599,Medical Incident,01/21/2016,01/21/2016,01/21/2016 11:39:30 PM,01/21/2016 11:40:17 PM,01/21/2016 11:40:36 PM,01/21/2016 11:41:18 PM,01/21/2016 11:43:38 PM,01/21/2016 11:54:03 PM,01/21/2016 11:56:51 PM,Code 2 Transport,01/22/2016 12:12:28 AM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160214216-AM14 -103330163,E07,10106562,Medical Incident,11/29/2010,11/29/2010,11/29/2010 01:08:36 PM,11/29/2010 01:10:38 PM,11/29/2010 01:10:50 PM,11/29/2010 01:11:43 PM,11/29/2010 01:13:38 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Other,11/29/2010 01:31:40 PM,400 Block of ALABAMA ST,SF,94110,B02,7,5244,E,E,3,true,,1,ENGINE,1,2,9,Mission,"(37.7635587241335, -122.412164346445)",103330163-E07 -140470055,E38,14015903,Structure Fire,02/16/2014,02/15/2014,02/16/2014 02:50:54 AM,02/16/2014 02:50:54 AM,02/16/2014 02:52:30 AM,02/16/2014 02:54:33 AM,02/16/2014 02:55:53 AM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 02:56:02 AM,FILLMORE ST/PINE ST,SF,94115,B04,38,3543,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7879502707315, -122.433647123974)",140470055-E38 -132820378,79,13096125,Medical Incident,10/09/2013,10/09/2013,10/09/2013 08:55:28 PM,10/09/2013 08:56:38 PM,10/09/2013 08:59:16 PM,10/09/2013 08:59:22 PM,10/09/2013 09:05:39 PM,10/09/2013 09:24:57 PM,10/09/2013 09:43:08 PM,Code 2 Transport,10/09/2013 10:10:59 PM,1000 Block of POTRERO AVE,SF,94110,B10,37,2552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Potrero Hill,"(37.7553586640566, -122.406682612344)",132820378-79 -111970099,88,11064945,Medical Incident,07/16/2011,07/16/2011,07/16/2011 08:49:47 AM,07/16/2011 08:50:12 AM,07/16/2011 08:51:18 AM,07/16/2011 08:52:12 AM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 09:06:34 AM,600 Block of EL CAMINO DEL MAR,SF,94121,B07,14,7232,3,2,2,true,,1,MEDIC,3,7,2,Seacliff,"(37.7862422734629, -122.490358509112)",111970099-88 -160871437,KM12,16034550,Medical Incident,03/27/2016,03/27/2016,03/27/2016 11:30:01 AM,03/27/2016 11:31:26 AM,03/27/2016 11:33:59 AM,03/27/2016 11:35:04 AM,03/27/2016 11:41:34 AM,03/27/2016 11:58:34 AM,03/27/2016 12:21:00 PM,Code 2 Transport,03/27/2016 12:53:51 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160871437-KM12 -160241429,AM02,16009504,Medical Incident,01/24/2016,01/24/2016,01/24/2016 11:48:35 AM,01/24/2016 11:51:14 AM,01/24/2016 11:52:06 AM,01/24/2016 11:52:38 AM,01/24/2016 12:00:37 PM,01/24/2016 12:20:57 PM,01/24/2016 12:53:36 PM,Code 2 Transport,01/24/2016 01:34:59 PM,4900 Block of MISSION ST,San Francisco,94112,B09,43,6123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7189310883363, -122.439270564268)",160241429-AM02 -111760305,RC1,11058116,Other,06/25/2011,06/25/2011,06/25/2011 06:13:49 PM,06/25/2011 06:13:52 PM,06/25/2011 06:14:04 PM,04/25/2016 02:03:59 PM,06/25/2011 06:18:59 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 06:42:51 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,RESCUE CAPTAIN,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",111760305-RC1 -123190347,B06,12106206,Alarms,11/14/2012,11/14/2012,11/14/2012 09:12:31 PM,11/14/2012 09:14:13 PM,11/14/2012 09:14:21 PM,11/14/2012 09:15:29 PM,11/14/2012 09:18:16 PM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Other,11/14/2012 09:19:52 PM,800 Block of CHURCH ST,SF,94114,B06,11,5444,3,3,3,false,Alarm,1,CHIEF,2,6,8,Castro/Upper Market,"(37.7568889074607, -122.427999581411)",123190347-B06 -160652498,KM09,16026006,Medical Incident,03/05/2016,03/05/2016,03/05/2016 05:13:10 PM,03/05/2016 05:14:20 PM,03/05/2016 05:14:49 PM,03/05/2016 05:15:22 PM,03/05/2016 05:21:02 PM,03/05/2016 05:46:00 PM,03/05/2016 06:20:25 PM,Code 2 Transport,03/05/2016 06:43:00 PM,1800 Block of 35TH AVE,San Francisco,94122,B08,18,7561,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7525523796805, -122.493484218573)",160652498-KM09 -113200007,55,11106140,Medical Incident,11/16/2011,11/15/2011,11/16/2011 12:17:25 AM,11/16/2011 12:19:03 AM,11/16/2011 12:19:17 AM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 12:43:01 AM,FRONT ST/CALIFORNIA ST,SF,94111,B01,13,1134,2,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7933590991491, -122.398781648433)",113200007-55 -133300257,86,13112124,Medical Incident,11/26/2013,11/26/2013,11/26/2013 04:41:07 PM,11/26/2013 04:43:39 PM,11/26/2013 04:45:00 PM,11/26/2013 04:45:14 PM,11/26/2013 05:03:30 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,Other,11/26/2013 05:06:26 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",133300257-86 -123330111,E13,12110605,Alarms,11/28/2012,11/28/2012,11/28/2012 09:21:21 AM,11/28/2012 09:22:17 AM,11/28/2012 09:22:43 AM,04/25/2016 01:55:36 PM,11/28/2012 09:24:19 AM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/28/2012 09:28:52 AM,100 Block of PINE ST,SF,94111,B01,13,1136,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.792387312641, -122.399186604536)",123330111-E13 -103100317,T16,10099506,Alarms,11/06/2010,11/06/2010,11/06/2010 07:57:10 PM,11/06/2010 07:57:10 PM,11/06/2010 07:57:48 PM,11/06/2010 07:59:31 PM,11/06/2010 08:05:05 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 08:10:08 PM,0 Block of MONTCLAIR TER,SF,94109,B01,28,1613,3,3,3,false,,1,TRUCK,3,1,2,Russian Hill,"(37.8024597269615, -122.418874787518)",103100317-T16 -112030142,77,11066984,Medical Incident,07/22/2011,07/22/2011,07/22/2011 10:25:48 AM,07/22/2011 10:28:13 AM,07/22/2011 10:28:38 AM,07/22/2011 10:28:54 AM,07/22/2011 10:39:09 AM,07/22/2011 10:46:52 AM,07/22/2011 11:24:14 AM,Code 2 Transport,07/22/2011 11:31:31 AM,2300 Block of 24TH AVE,SF,94116,B08,40,7461,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",112030142-77 -112800381,T14,11092848,Alarms,10/07/2011,10/07/2011,10/07/2011 11:41:06 PM,10/07/2011 11:42:04 PM,10/07/2011 11:43:05 PM,10/07/2011 11:44:38 PM,10/07/2011 11:47:25 PM,04/25/2016 02:02:17 PM,04/25/2016 02:02:17 PM,Other,10/07/2011 11:59:52 PM,400 Block of 38TH AVE,SF,94121,B07,34,7255,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.779808370504, -122.498758567597)",112800381-T14 -160231302,AM12,16009112,Medical Incident,01/23/2016,01/23/2016,01/23/2016 11:04:17 AM,01/23/2016 11:04:40 AM,01/23/2016 11:05:42 AM,01/23/2016 11:07:28 AM,01/23/2016 11:11:39 AM,01/23/2016 11:42:13 AM,01/23/2016 11:54:51 AM,Code 2 Transport,01/23/2016 12:23:13 PM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160231302-AM12 -160871667,AM02,16034568,Medical Incident,03/27/2016,03/27/2016,03/27/2016 12:32:41 PM,03/27/2016 12:32:41 PM,03/27/2016 12:33:27 PM,03/27/2016 12:33:31 PM,03/27/2016 12:56:31 PM,03/27/2016 12:56:32 PM,03/27/2016 01:14:33 PM,Code 2 Transport,03/27/2016 01:30:57 PM,0 Block of LEAVENWORTH ST,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7814037950794, -122.413702650883)",160871667-AM02 -160373023,AM10,16014824,Medical Incident,02/06/2016,02/06/2016,02/06/2016 05:59:08 PM,02/06/2016 06:00:04 PM,02/06/2016 06:03:42 PM,02/06/2016 06:04:27 PM,02/06/2016 06:10:19 PM,02/06/2016 06:30:43 PM,02/06/2016 06:48:38 PM,Code 2 Transport,02/06/2016 07:26:24 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160373023-AM10 -123420281,E11,12114226,Administrative,12/07/2012,12/07/2012,12/07/2012 02:23:46 PM,12/07/2012 02:23:48 PM,12/07/2012 02:23:51 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 02:24:28 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",123420281-E11 -112840283,RS1,11094096,Medical Incident,10/11/2011,10/11/2011,10/11/2011 04:27:32 PM,10/11/2011 04:29:39 PM,10/11/2011 04:30:05 PM,10/11/2011 04:32:47 PM,10/11/2011 04:33:21 PM,04/25/2016 02:02:13 PM,04/25/2016 02:02:13 PM,Other,10/11/2011 04:37:59 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",112840283-RS1 -131390147,E07,13046973,Medical Incident,05/19/2013,05/19/2013,05/19/2013 09:54:53 AM,05/19/2013 09:55:53 AM,05/19/2013 09:56:14 AM,05/19/2013 09:57:21 AM,05/19/2013 09:59:20 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 10:00:46 AM,800 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7595697859376, -122.416880161863)",131390147-E07 -123140071,E36,12104398,Medical Incident,11/09/2012,11/08/2012,11/09/2012 06:52:42 AM,11/09/2012 06:53:32 AM,11/09/2012 06:53:59 AM,11/09/2012 06:55:12 AM,11/09/2012 07:06:06 AM,11/09/2012 07:06:22 AM,04/25/2016 01:55:53 PM,Other,11/09/2012 07:21:34 AM,14TH ST/HARRISON ST,SF,94103,B02,36,5112,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7686712258347, -122.413396248713)",123140071-E36 -110270095,E08,11008815,Traffic Collision,01/27/2011,01/27/2011,01/27/2011 08:56:56 AM,01/27/2011 08:57:47 AM,01/27/2011 08:59:10 AM,01/27/2011 09:00:46 AM,01/27/2011 09:04:32 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,Other,01/27/2011 09:16:00 AM,FOLSOM ST/1ST ST,SF,94105,B03,35,2137,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7872982139437, -122.394481274637)",110270095-E08 -121360263,60,12045269,Medical Incident,05/15/2012,05/15/2012,05/15/2012 05:13:03 PM,05/15/2012 05:13:37 PM,05/15/2012 05:13:59 PM,05/15/2012 05:14:17 PM,05/15/2012 05:38:23 PM,05/15/2012 05:38:25 PM,05/15/2012 06:06:01 PM,Code 2 Transport,05/15/2012 06:43:16 PM,200 Block of 25TH AVE,SF,94121,B07,14,7214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7848109228763, -122.485148529498)",121360263-60 -121600098,78,12052855,Medical Incident,06/08/2012,06/08/2012,06/08/2012 09:09:33 AM,06/08/2012 09:10:46 AM,06/08/2012 09:10:55 AM,06/08/2012 09:13:20 AM,06/08/2012 09:16:22 AM,06/08/2012 09:45:01 AM,06/08/2012 10:00:54 AM,Code 2 Transport,06/08/2012 10:23:07 AM,2200 Block of 46TH AVE,SF,94116,B08,23,7664,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7445764654926, -122.504750126329)",121600098-78 -120410386,83,12013843,Medical Incident,02/10/2012,02/10/2012,02/10/2012 10:29:12 PM,02/10/2012 10:29:42 PM,02/10/2012 10:30:07 PM,02/10/2012 10:30:23 PM,02/10/2012 10:37:11 PM,02/10/2012 10:50:32 PM,02/10/2012 11:01:45 PM,Code 2 Transport,02/10/2012 11:41:59 PM,1900 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",120410386-83 -123000147,88,12099409,Medical Incident,10/26/2012,10/26/2012,10/26/2012 11:19:04 AM,10/26/2012 11:20:12 AM,10/26/2012 11:20:51 AM,10/26/2012 11:21:18 AM,10/26/2012 11:27:40 AM,10/26/2012 11:43:08 AM,10/26/2012 11:58:56 AM,Code 2 Transport,10/26/2012 12:19:46 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7785992634984, -122.408503211368)",123000147-88 -131640142,T09,13055686,Medical Incident,06/13/2013,06/13/2013,06/13/2013 10:29:44 AM,06/13/2013 10:30:37 AM,06/13/2013 10:31:10 AM,06/13/2013 10:32:18 AM,06/13/2013 10:37:28 AM,04/25/2016 01:52:19 PM,04/25/2016 01:52:19 PM,Other,06/13/2013 10:58:29 AM,100 Block of MIDDLE POINT RD,SF,94124,B10,25,6556,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7348616704412, -122.379348557253)",131640142-T09 -120010095,E28,12000075,Medical Incident,01/01/2012,12/31/2011,01/01/2012 01:09:39 AM,01/01/2012 01:11:55 AM,01/01/2012 01:13:05 AM,01/01/2012 01:14:19 AM,01/01/2012 01:16:42 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 01:21:53 AM,BEACH ST/LEAVENWORTH ST,SF,94133,B01,28,1521,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8068630302043, -122.418908044287)",120010095-E28 -123030403,54,12100691,Medical Incident,10/29/2012,10/29/2012,10/29/2012 08:34:12 PM,10/29/2012 08:36:16 PM,10/29/2012 08:37:09 PM,10/29/2012 08:37:16 PM,10/29/2012 08:42:49 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Against Medical Advice,10/29/2012 09:26:38 PM,100 Block of 4TH ST,SF,94103,B03,1,2214,2,2,2,false,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",123030403-54 -160331307,AM08,16012945,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:16:32 AM,02/02/2016 11:18:06 AM,02/02/2016 11:24:32 AM,02/02/2016 11:25:02 AM,02/02/2016 11:47:49 AM,02/02/2016 11:56:16 AM,02/02/2016 12:27:29 PM,Code 2 Transport,02/02/2016 12:55:40 PM,500 Block of 9TH ST,San Francisco,94103,B03,29,2331,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",160331307-AM08 -160652787,KM11,16026040,Medical Incident,03/05/2016,03/05/2016,03/05/2016 06:34:42 PM,03/05/2016 06:38:18 PM,03/05/2016 06:39:38 PM,03/05/2016 06:40:28 PM,03/05/2016 06:54:48 PM,03/05/2016 07:12:13 PM,03/05/2016 07:16:58 PM,Code 2 Transport,03/05/2016 07:41:09 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160652787-KM11 -120150296,E12,12005204,Medical Incident,01/15/2012,01/15/2012,01/15/2012 08:26:53 PM,01/15/2012 08:26:53 PM,01/15/2012 08:26:53 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Patient Declined Transport,01/15/2012 08:47:17 PM,1700 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7693981235751, -122.451276976837)",120150296-E12 -160132799,65,16005263,Medical Incident,01/13/2016,01/13/2016,01/13/2016 04:28:12 PM,01/13/2016 04:29:24 PM,01/13/2016 04:30:14 PM,01/13/2016 04:30:22 PM,01/13/2016 04:35:32 PM,01/13/2016 04:59:23 PM,01/13/2016 05:02:21 PM,Code 2 Transport,01/13/2016 05:36:15 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160132799-65 -140390219,AM16,14013215,Medical Incident,02/08/2014,02/08/2014,02/08/2014 02:39:29 PM,02/08/2014 02:40:44 PM,02/08/2014 02:40:58 PM,02/08/2014 02:41:41 PM,02/08/2014 02:44:40 PM,02/08/2014 03:10:08 PM,02/08/2014 03:31:40 PM,Code 2 Transport,02/08/2014 03:56:02 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",140390219-AM16 -111450187,95,11048183,Medical Incident,05/25/2011,05/25/2011,05/25/2011 02:28:42 PM,05/25/2011 02:29:25 PM,05/25/2011 02:30:22 PM,05/25/2011 02:31:00 PM,05/25/2011 02:49:13 PM,05/25/2011 03:12:43 PM,05/25/2011 04:05:46 PM,Code 2 Transport,05/25/2011 04:05:48 PM,300 Block of CALIFORNIA ST,SF,94104,B01,13,1162,3,2,2,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",111450187-95 -103620378,E02,10116288,Medical Incident,12/28/2010,12/28/2010,12/28/2010 11:19:42 PM,12/28/2010 11:21:49 PM,12/28/2010 11:22:48 PM,12/28/2010 11:24:32 PM,12/28/2010 11:26:35 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 11:41:58 PM,0 Block of ADELE CT,SF,94133,B01,2,1354,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7958887320605, -122.409522803015)",103620378-E02 -123470135,KM02,12115972,Medical Incident,12/12/2012,12/12/2012,12/12/2012 10:15:05 AM,12/12/2012 10:15:34 AM,12/12/2012 10:15:53 AM,12/12/2012 10:16:47 AM,12/12/2012 10:24:46 AM,12/12/2012 10:42:03 AM,12/12/2012 11:16:06 AM,Code 2 Transport,12/12/2012 11:49:35 AM,2100 Block of 14TH AVE,SF,94116,B08,40,7362,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7479476518118, -122.470498816)",123470135-KM02 -112500218,B04,11082491,Structure Fire,09/07/2011,09/07/2011,09/07/2011 02:27:12 PM,09/07/2011 02:27:52 PM,09/07/2011 02:28:19 PM,09/07/2011 02:29:50 PM,09/07/2011 02:32:37 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 02:48:15 PM,2500 Block of VAN NESS AVE,SF,94123,B04,16,3146,3,3,3,false,,1,CHIEF,4,4,2,Marina,"(37.7989967483908, -122.424247224738)",112500218-B04 -130040380,KM07,13001518,Medical Incident,01/04/2013,01/04/2013,01/04/2013 08:28:04 PM,01/04/2013 08:28:38 PM,01/04/2013 08:28:57 PM,01/04/2013 08:29:31 PM,01/04/2013 08:40:52 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,No Merit,01/04/2013 08:51:09 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",130040380-KM07 -111810045,54,11059627,Medical Incident,06/30/2011,06/29/2011,06/30/2011 04:39:25 AM,06/30/2011 04:40:25 AM,06/30/2011 04:41:23 AM,06/30/2011 04:43:45 AM,06/30/2011 05:03:15 AM,06/30/2011 05:12:45 AM,06/30/2011 05:21:37 AM,Other,06/30/2011 05:44:01 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",111810045-54 -132790035,E41,13094760,Medical Incident,10/06/2013,10/05/2013,10/06/2013 01:33:13 AM,10/06/2013 01:35:17 AM,10/06/2013 01:35:40 AM,10/06/2013 01:37:06 AM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/06/2013 01:37:36 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,2,2,2,false,Non Life-threatening,1,ENGINE,3,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",132790035-E41 -113570323,RC3,11118704,Medical Incident,12/23/2011,12/23/2011,12/23/2011 03:42:26 PM,12/23/2011 03:43:22 PM,12/23/2011 03:43:47 PM,12/23/2011 03:45:26 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 03:54:18 PM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,E,3,true,,1,RESCUE CAPTAIN,3,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",113570323-RC3 -123480375,87,12116523,Medical Incident,12/13/2012,12/13/2012,12/13/2012 09:54:23 PM,12/13/2012 09:55:26 PM,12/13/2012 09:55:44 PM,12/13/2012 09:57:32 PM,12/13/2012 10:03:20 PM,12/13/2012 10:13:09 PM,12/13/2012 10:29:57 PM,Code 2 Transport,12/13/2012 10:50:24 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",123480375-87 -111560325,D2,11051686,Structure Fire,06/05/2011,06/05/2011,06/05/2011 06:34:26 PM,06/05/2011 06:35:04 PM,06/05/2011 06:35:29 PM,06/05/2011 06:36:30 PM,06/05/2011 06:41:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/05/2011 06:45:19 PM,700 Block of PINE ST,SF,94108,B01,2,1325,3,3,3,false,,1,CHIEF,6,1,3,Nob Hill,"(37.7911972507673, -122.40768078831)",111560325-D2 -113380328,AM06,11112139,Medical Incident,12/04/2011,12/04/2011,12/04/2011 06:54:24 PM,12/04/2011 06:54:55 PM,12/04/2011 06:55:31 PM,12/04/2011 06:56:04 PM,12/04/2011 07:03:01 PM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/04/2011 07:10:17 PM,800 Block of MARKET ST,SF,94102,B03,1,2209,2,2,2,false,,1,PRIVATE,1,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",113380328-AM06 -132200279,E36,13074393,Alarms,08/08/2013,08/08/2013,08/08/2013 05:52:10 PM,08/08/2013 05:52:13 PM,08/08/2013 05:52:55 PM,08/08/2013 05:53:35 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 05:54:44 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Alarm,1,ENGINE,4,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132200279-E36 -123610240,E37,12120853,Medical Incident,12/26/2012,12/26/2012,12/26/2012 02:30:26 PM,12/26/2012 02:31:45 PM,12/26/2012 02:34:22 PM,12/26/2012 02:36:08 PM,12/26/2012 02:37:41 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,No Merit,12/26/2012 02:55:20 PM,900 Block of CONNECTICUT ST,SF,94107,B10,37,2615,1,1,2,true,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",123610240-E37 -140970295,E29,14032751,Alarms,04/07/2014,04/07/2014,04/07/2014 04:04:37 PM,04/07/2014 04:06:22 PM,04/07/2014 04:06:47 PM,04/07/2014 04:07:49 PM,04/07/2014 04:10:15 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Fire,04/07/2014 04:14:00 PM,1600 Block of OWENS ST,SAN FRANCISCO,94158,B03,29,2414,3,3,3,false,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7679924471876, -122.394391507395)",140970295-E29 -160450236,71,16017951,Medical Incident,02/14/2016,02/13/2016,02/14/2016 01:21:32 AM,02/14/2016 01:23:35 AM,02/14/2016 01:25:48 AM,02/14/2016 01:25:54 AM,02/14/2016 01:34:13 AM,02/14/2016 01:45:13 AM,02/14/2016 01:50:28 AM,Code 2 Transport,02/14/2016 02:14:15 AM,1300 Block of LINCOLN WAY,San Francisco,94122,B08,22,7346,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7655630900802, -122.472354633709)",160450236-71 -160611871,77,16024333,Medical Incident,03/01/2016,03/01/2016,03/01/2016 02:13:04 PM,03/01/2016 02:15:56 PM,03/01/2016 02:16:34 PM,03/01/2016 02:16:53 PM,03/01/2016 02:20:51 PM,03/01/2016 02:42:02 PM,03/01/2016 02:45:48 PM,Code 2 Transport,03/01/2016 03:40:53 PM,600 Block of ARGUELLO BLVD,San Francisco,94118,B07,31,7112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.778667674124, -122.458753852199)",160611871-77 -160122334,66,16004820,Medical Incident,01/12/2016,01/12/2016,01/12/2016 03:29:36 PM,01/12/2016 03:31:31 PM,01/12/2016 03:32:41 PM,01/12/2016 03:32:52 PM,01/12/2016 03:48:48 PM,01/12/2016 04:00:33 PM,01/12/2016 04:20:17 PM,Code 2 Transport,01/12/2016 05:17:24 PM,22ND ST/MISSION ST,San Francisco,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",160122334-66 -131100243,E34,13037064,Medical Incident,04/20/2013,04/20/2013,04/20/2013 03:27:13 PM,04/20/2013 03:28:19 PM,04/20/2013 03:28:33 PM,04/20/2013 03:29:54 PM,04/20/2013 03:34:15 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/20/2013 03:43:39 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",131100243-E34 -110100271,T19,11003384,Structure Fire,01/10/2011,01/10/2011,01/10/2011 03:35:31 PM,01/10/2011 03:38:09 PM,01/10/2011 03:38:41 PM,01/10/2011 03:40:16 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/10/2011 03:55:15 PM,37TH AV/TARAVAL ST,SF,94116,B08,18,7612,3,3,3,false,,1,TRUCK,6,8,4,Sunset/Parkside,"(37.7422007960742, -122.494979490259)",110100271-T19 -130190193,SR1,13006514,Water Rescue,01/19/2013,01/19/2013,01/19/2013 12:16:17 PM,01/19/2013 12:17:46 PM,01/19/2013 12:18:42 PM,01/19/2013 12:20:33 PM,01/19/2013 12:42:58 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 02:34:42 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,Fire,1,SUPPORT,9,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",130190193-SR1 -132990396,88,13101777,Medical Incident,10/26/2013,10/26/2013,10/26/2013 11:29:37 PM,10/26/2013 11:31:56 PM,10/26/2013 11:33:14 PM,10/26/2013 11:33:23 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/26/2013 11:42:22 PM,100 Block of APPLETON AVE,SF,94110,B06,32,5646,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7379557837976, -122.421912820883)",132990396-88 -160401594,KM08,16016008,Medical Incident,02/09/2016,02/09/2016,02/09/2016 11:57:16 AM,02/09/2016 11:59:05 AM,02/09/2016 12:00:08 PM,02/09/2016 12:01:47 PM,02/09/2016 12:05:09 PM,02/09/2016 12:25:41 PM,02/09/2016 12:34:54 PM,Code 2 Transport,02/09/2016 01:07:36 PM,1600 Block of CLEMENT ST,San Francisco,94121,B07,31,7164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7824381101014, -122.476844131371)",160401594-KM08 -113550259,99,11117932,Medical Incident,12/21/2011,12/21/2011,12/21/2011 04:15:31 PM,12/21/2011 04:16:24 PM,12/21/2011 04:16:56 PM,12/21/2011 04:17:33 PM,12/21/2011 04:28:32 PM,12/21/2011 04:59:39 PM,12/21/2011 05:00:37 PM,Other,12/21/2011 05:43:09 PM,400 Block of BEALE ST,SF,94105,B03,35,2123,3,E,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.786800753313, -122.39045721809)",113550259-99 -131360023,E36,13045741,Structure Fire,05/16/2013,05/15/2013,05/16/2013 01:47:51 AM,05/16/2013 01:49:37 AM,05/16/2013 01:50:39 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,04/25/2016 01:52:47 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131360023-E36 -160563296,78,16022519,Structure Fire,02/25/2016,02/25/2016,02/25/2016 06:50:20 PM,02/25/2016 06:50:54 PM,02/25/2016 06:51:13 PM,02/25/2016 06:51:22 PM,02/25/2016 07:13:20 PM,02/25/2016 07:25:08 PM,02/25/2016 07:45:32 PM,Code 3 Transport,02/25/2016 09:23:01 PM,0 Block of ROBINSON DR,San Francisco,94112,B09,43,6236,3,3,3,true,Alarm,1,MEDIC,4,9,11,Excelsior,"(37.7092465786182, -122.42932313421)",160563296-78 -140870120,T06,14029225,Alarms,03/28/2014,03/28/2014,03/28/2014 09:52:05 AM,03/28/2014 09:53:28 AM,03/28/2014 09:53:41 AM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,04/25/2016 01:47:31 PM,Fire,04/25/2016 01:47:31 PM,1800 Block of 15TH ST,SAN FRANCISCO,94103,B02,6,5227,3,3,3,false,Alarm,1,TRUCK,2,2,8,Mission,"(37.766322531621, -122.424723870424)",140870120-T06 -160792150,KM09,16031438,Medical Incident,03/19/2016,03/19/2016,03/19/2016 02:30:17 PM,03/19/2016 02:32:31 PM,03/19/2016 02:33:01 PM,03/19/2016 02:33:40 PM,03/19/2016 02:39:40 PM,03/19/2016 02:58:19 PM,03/19/2016 03:13:45 PM,Code 2 Transport,03/19/2016 04:05:42 PM,VAN NESS AV/NORTH POINT ST,San Francisco,94109,B04,28,3143,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Russian Hill,"(37.8050779018589, -122.425298565116)",160792150-KM09 -113160251,E01,11105071,Alarms,11/12/2011,11/12/2011,11/12/2011 06:38:16 PM,11/12/2011 06:39:03 PM,11/12/2011 06:39:12 PM,11/12/2011 06:40:37 PM,11/12/2011 06:42:12 PM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Other,11/12/2011 06:47:21 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",113160251-E01 -121710244,T08,12056801,Other,06/19/2012,06/19/2012,06/19/2012 03:14:53 PM,06/19/2012 03:14:53 PM,06/19/2012 03:14:53 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,No Merit,06/19/2012 03:22:17 PM,2ND ST/KING ST,SF,94107,B03,8,2154,3,3,3,false,Alarm,1,TRUCK,1,3,6,Mission Bay,"(37.7798612849455, -122.389590696951)",121710244-T08 -112330157,T11,11076916,Structure Fire,08/21/2011,08/21/2011,08/21/2011 11:18:02 AM,08/21/2011 11:18:02 AM,08/21/2011 11:18:50 AM,08/21/2011 11:19:22 AM,08/21/2011 11:22:00 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 11:22:33 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",112330157-T11 -120590059,KM01,12019336,Medical Incident,02/28/2012,02/27/2012,02/28/2012 07:58:42 AM,02/28/2012 07:59:00 AM,02/28/2012 07:59:21 AM,02/28/2012 07:59:57 AM,02/28/2012 08:14:07 AM,02/28/2012 08:31:04 AM,02/28/2012 08:49:56 AM,Code 2 Transport,02/28/2012 09:20:44 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815063666429, -122.407932868203)",120590059-KM01 -160051644,71,16001993,Medical Incident,01/05/2016,01/05/2016,01/05/2016 12:39:08 PM,01/05/2016 12:39:51 PM,01/05/2016 12:40:07 PM,01/05/2016 12:40:17 PM,01/05/2016 12:41:49 PM,01/05/2016 01:03:30 PM,01/05/2016 01:21:18 PM,Code 2 Transport,01/05/2016 02:06:05 PM,100 Block of CAPP ST,San Francisco,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642910155103, -122.418689416733)",160051644-71 -132700020,E22,13091560,Structure Fire,09/27/2013,09/26/2013,09/27/2013 01:31:00 AM,09/27/2013 01:31:27 AM,09/27/2013 01:32:12 AM,09/27/2013 01:34:04 AM,09/27/2013 01:37:22 AM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/27/2013 07:42:05 AM,1900 Block of 18TH AVE,SF,94116,B08,40,7421,3,3,3,true,Fire,2,ENGINE,3,8,7,Inner Sunset,"(37.751493548452, -122.47514241265)",132700020-E22 -111490031,E13,11049274,Outside Fire,05/29/2011,05/28/2011,05/29/2011 02:34:07 AM,05/29/2011 02:34:10 AM,05/29/2011 02:34:15 AM,05/29/2011 02:36:19 AM,05/29/2011 02:38:46 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Fire,05/29/2011 02:43:20 AM,MAIN ST/MISSION ST,SF,94105,B03,35,2116,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",111490031-E13 -131110261,93,13037467,Medical Incident,04/21/2013,04/21/2013,04/21/2013 06:33:07 PM,04/21/2013 06:33:25 PM,04/21/2013 06:34:29 PM,04/21/2013 06:34:58 PM,04/21/2013 06:42:58 PM,04/21/2013 06:56:18 PM,04/21/2013 07:12:22 PM,Code 2 Transport,04/21/2013 07:35:43 PM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",131110261-93 -131700328,E41,13057849,Medical Incident,06/19/2013,06/19/2013,06/19/2013 07:47:45 PM,06/19/2013 07:48:39 PM,06/19/2013 07:48:57 PM,06/19/2013 07:49:33 PM,06/19/2013 07:51:34 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/19/2013 07:59:18 PM,900 Block of MASON ST,SF,94108,B01,41,1414,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",131700328-E41 -121780087,KM12,12059171,Medical Incident,06/26/2012,06/26/2012,06/26/2012 09:06:18 AM,06/26/2012 09:07:57 AM,06/26/2012 09:08:39 AM,06/26/2012 09:11:42 AM,06/26/2012 09:20:03 AM,06/26/2012 09:31:36 AM,06/26/2012 09:45:52 AM,Code 2 Transport,06/26/2012 10:12:17 AM,800 Block of 33RD AVE,SF,94121,B07,14,7243,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7731148603785, -122.492763022617)",121780087-KM12 -133620033,E07,13122869,Smoke Investigation (Outside),12/28/2013,12/27/2013,12/28/2013 02:35:38 AM,12/28/2013 02:37:45 AM,12/28/2013 02:38:15 AM,12/28/2013 02:39:49 AM,12/28/2013 02:42:41 AM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Fire,12/28/2013 02:58:24 AM,100 Block of ALBION ST,SF,94110,B02,7,5247,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7636452868367, -122.422667774315)",133620033-E07 -131810065,E03,13061514,Medical Incident,06/30/2013,06/29/2013,06/30/2013 02:52:40 AM,06/30/2013 02:52:41 AM,06/30/2013 02:55:54 AM,06/30/2013 02:56:29 AM,06/30/2013 02:57:21 AM,04/25/2016 01:52:02 PM,04/25/2016 01:52:02 PM,Other,06/30/2013 03:02:22 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7852173616307, -122.417069611395)",131810065-E03 -111980347,T16,11065467,Alarms,07/17/2011,07/17/2011,07/17/2011 10:16:18 PM,07/17/2011 10:17:41 PM,07/17/2011 10:17:54 PM,07/17/2011 10:19:07 PM,07/17/2011 10:21:59 PM,04/25/2016 02:03:37 PM,04/25/2016 02:03:37 PM,Other,07/17/2011 10:25:43 PM,1100 Block of GORGAS AVE,PR,94129,B99,51,4633,3,3,3,false,,1,TRUCK,1,7,2,Presidio,"(37.8009430044811, -122.44884309342)",111980347-T16 -111210256,T03,11039997,Elevator / Escalator Rescue,05/01/2011,05/01/2011,05/01/2011 03:17:45 PM,05/01/2011 03:18:04 PM,05/01/2011 03:18:46 PM,05/01/2011 03:20:05 PM,05/01/2011 03:21:22 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 03:44:21 PM,0 Block of DANIEL BURNHAM CT,SF,94109,B04,3,3161,3,3,3,false,,1,TRUCK,1,4,2,Western Addition,"(37.7869107185707, -122.422525749968)",111210256-T03 -160080532,AM24,16003105,Medical Incident,01/08/2016,01/07/2016,01/08/2016 06:36:14 AM,01/08/2016 06:36:42 AM,01/08/2016 06:37:10 AM,01/08/2016 06:37:44 AM,01/08/2016 06:39:24 AM,01/08/2016 06:50:40 AM,01/08/2016 07:23:55 AM,Code 2 Transport,01/08/2016 07:47:28 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160080532-AM24 -110210251,E41,11007007,Medical Incident,01/21/2011,01/21/2011,01/21/2011 04:14:36 PM,01/21/2011 04:15:01 PM,01/21/2011 04:15:24 PM,01/21/2011 04:16:24 PM,01/21/2011 04:18:51 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/21/2011 04:24:31 PM,500 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,2,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",110210251-E41 -132060083,E07,13069670,Medical Incident,07/25/2013,07/25/2013,07/25/2013 09:34:50 AM,07/25/2013 09:35:37 AM,07/25/2013 09:36:36 AM,04/25/2016 01:51:38 PM,07/25/2013 09:36:58 AM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Other,07/25/2013 09:44:47 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",132060083-E07 -160121129,54,16004726,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:04:32 AM,01/12/2016 10:06:35 AM,01/12/2016 10:09:46 AM,01/12/2016 10:09:46 AM,01/12/2016 10:19:08 AM,01/12/2016 10:34:19 AM,01/12/2016 11:00:42 AM,Code 2 Transport,01/12/2016 11:29:37 AM,200 Block of HAHN ST,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",160121129-54 -132290332,66,13077421,Medical Incident,08/17/2013,08/17/2013,08/17/2013 07:00:15 PM,08/17/2013 07:00:59 PM,08/17/2013 07:02:43 PM,08/17/2013 07:02:56 PM,08/17/2013 07:08:34 PM,08/17/2013 07:17:22 PM,08/17/2013 07:30:53 PM,Code 2 Transport,08/17/2013 07:54:01 PM,CLEMENTINA ST/3RD ST,SF,94105,B03,1,2176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7842136382775, -122.399459825894)",132290332-66 -121570321,AM04,12052070,Medical Incident,06/05/2012,06/05/2012,06/05/2012 08:18:55 PM,06/05/2012 08:20:45 PM,06/05/2012 08:21:01 PM,06/05/2012 08:22:14 PM,06/05/2012 08:26:22 PM,06/05/2012 08:43:52 PM,06/05/2012 09:01:38 PM,Code 2 Transport,06/05/2012 09:56:15 PM,200 Block of DORLAND ST,SF,94114,B02,6,5421,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7620293658927, -122.429546492088)",121570321-AM04 -132970339,B02,13101008,Structure Fire,10/24/2013,10/24/2013,10/24/2013 08:19:39 PM,10/24/2013 08:20:41 PM,10/24/2013 08:21:12 PM,10/24/2013 08:22:09 PM,10/24/2013 08:23:21 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/24/2013 08:30:50 PM,200 Block of 14TH ST,SF,94103,B02,36,5215,3,3,3,false,Alarm,1,CHIEF,1,2,9,Mission,"(37.7683277432997, -122.418173796435)",132970339-B02 -110490103,55,11016119,Medical Incident,02/18/2011,02/18/2011,02/18/2011 08:47:30 AM,02/18/2011 08:49:19 AM,02/18/2011 08:50:42 AM,02/18/2011 08:50:49 AM,04/25/2016 02:06:02 PM,02/18/2011 09:27:32 AM,02/18/2011 09:52:44 AM,Code 2 Transport,02/18/2011 10:18:51 AM,600 Block of MYRA WAY,SF,94127,B09,39,8662,1,1,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7397130494481, -122.450551251496)",110490103-55 -140710143,T10,14023930,Medical Incident,03/12/2014,03/12/2014,03/12/2014 10:13:09 AM,03/12/2014 10:14:03 AM,03/12/2014 10:14:28 AM,03/12/2014 10:16:29 AM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,04/25/2016 01:47:47 PM,Code 2 Transport,03/12/2014 10:18:02 AM,SCOTT ST/SUTTER ST,SAN FRANCISCO,94115,B04,10,4126,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,5,2,Pacific Heights,"(37.7854593411031, -122.438206381427)",140710143-T10 -120670394,T19,12022385,Alarms,03/07/2012,03/07/2012,03/07/2012 08:52:05 PM,03/07/2012 08:52:47 PM,03/07/2012 08:52:54 PM,03/07/2012 08:53:37 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,04/25/2016 01:59:47 PM,Other,03/07/2012 09:13:41 PM,800 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,false,Alarm,1,TRUCK,3,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",120670394-T19 -122600148,E07,12085913,Medical Incident,09/16/2012,09/16/2012,09/16/2012 11:37:42 AM,09/16/2012 11:39:31 AM,09/16/2012 11:39:43 AM,09/16/2012 11:40:37 AM,09/16/2012 11:43:46 AM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 12:29:38 PM,2900 Block of 23RD ST,SF,94110,B06,7,5476,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7543133191277, -122.41158898537)",122600148-E07 -113290027,54,11109031,Medical Incident,11/25/2011,11/24/2011,11/25/2011 02:22:45 AM,11/25/2011 02:23:22 AM,11/25/2011 02:23:47 AM,11/25/2011 02:24:06 AM,11/25/2011 02:32:05 AM,11/25/2011 02:51:17 AM,11/25/2011 03:06:34 AM,Code 2 Transport,11/25/2011 03:28:42 AM,2000 Block of POLK ST,SF,94109,B04,41,3125,1,1,2,true,,1,MEDIC,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",113290027-54 -112670146,B03,11088191,Traffic Collision,09/24/2011,09/24/2011,09/24/2011 10:38:03 AM,09/24/2011 10:39:51 AM,09/24/2011 10:40:47 AM,09/24/2011 10:44:18 AM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 10:52:41 AM,0 Block of FREMONT ST,SF,94105,B03,35,2116,2,2,2,false,,1,CHIEF,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",112670146-B03 -160713154,88,16028353,Traffic Collision,03/11/2016,03/11/2016,03/11/2016 07:47:34 PM,03/11/2016 07:49:58 PM,03/11/2016 07:51:24 PM,03/11/2016 07:51:39 PM,03/11/2016 07:56:37 PM,03/11/2016 08:18:24 PM,03/11/2016 08:27:18 PM,Code 2 Transport,03/11/2016 10:05:30 PM,SAN JOSE AV/GENEVA AV,San Francisco,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",160713154-88 -102920248,E02,10093168,Alarms,10/19/2010,10/19/2010,10/19/2010 04:05:24 PM,10/19/2010 04:06:06 PM,10/19/2010 04:06:47 PM,10/19/2010 04:08:31 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,04/25/2016 02:08:02 PM,Other,10/19/2010 04:18:55 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,,1,ENGINE,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",102920248-E02 -110220181,E32,11007266,Structure Fire,01/22/2011,01/22/2011,01/22/2011 02:17:23 PM,01/22/2011 02:17:24 PM,01/22/2011 02:17:37 PM,01/22/2011 02:18:34 PM,01/22/2011 02:21:07 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/22/2011 02:21:20 PM,MISSION ST/29TH ST,SF,94110,B06,32,5625,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7440376332296, -122.420893660653)",110220181-E32 -140490076,94,14016568,Medical Incident,02/18/2014,02/18/2014,02/18/2014 08:39:17 AM,02/18/2014 08:41:21 AM,02/18/2014 08:41:34 AM,02/18/2014 08:41:49 AM,02/18/2014 08:45:54 AM,04/25/2016 01:48:09 PM,04/25/2016 01:48:09 PM,No Merit,02/18/2014 08:56:57 AM,2100 Block of 28TH AVE,SF,94116,B08,18,7472,3,3,3,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7472899670765, -122.485593214472)",140490076-94 -160330838,KM08,16012890,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:49:00 AM,02/02/2016 08:50:03 AM,02/02/2016 08:50:42 AM,02/02/2016 08:51:15 AM,02/02/2016 09:01:51 AM,02/02/2016 09:30:19 AM,02/02/2016 09:48:53 AM,Code 2 Transport,02/02/2016 10:29:00 AM,3100 Block of KIRKHAM ST,San Francisco,94122,B08,18,7563,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7591185483692, -122.49428108423)",160330838-KM08 -130160382,T01,13005621,Structure Fire,01/16/2013,01/16/2013,01/16/2013 11:37:04 PM,01/16/2013 11:37:50 PM,01/16/2013 11:38:03 PM,01/16/2013 11:40:00 PM,01/16/2013 11:43:02 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/16/2013 11:44:38 PM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,false,Alarm,1,TRUCK,10,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",130160382-T01 -160861567,54,16034158,Traffic Collision,03/26/2016,03/26/2016,03/26/2016 12:16:35 PM,03/26/2016 12:16:35 PM,03/26/2016 12:19:34 PM,03/26/2016 12:20:10 PM,03/26/2016 12:27:17 PM,03/26/2016 01:20:50 PM,03/26/2016 01:35:33 PM,Code 2 Transport,03/26/2016 02:01:14 PM,38TH AV/CABRILLO ST,San Francisco,94121,B07,34,7254,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7737998564226, -122.498249666295)",160861567-54 -140100393,RS2,14003670,Structure Fire,01/10/2014,01/10/2014,01/10/2014 10:15:08 PM,01/10/2014 10:17:54 PM,01/10/2014 10:18:19 PM,01/10/2014 10:20:14 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/10/2014 10:27:17 PM,1700 Block of KIRKHAM ST,SF,94122,B08,22,7447,3,3,3,false,Alarm,1,RESCUE SQUAD,9,8,4,Sunset/Parkside,"(37.759659005959, -122.479536686399)",140100393-RS2 -160212341,73,16008441,Medical Incident,01/21/2016,01/21/2016,01/21/2016 03:12:40 PM,01/21/2016 03:13:43 PM,01/21/2016 03:15:36 PM,01/21/2016 03:16:08 PM,01/21/2016 03:23:08 PM,01/21/2016 03:28:40 PM,01/21/2016 03:46:18 PM,Code 2 Transport,01/21/2016 04:08:26 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160212341-73 -111630286,T11,11053917,Alarms,06/12/2011,06/12/2011,06/12/2011 07:57:50 PM,06/12/2011 07:59:00 PM,06/12/2011 07:59:18 PM,06/12/2011 08:00:46 PM,06/12/2011 08:03:37 PM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/12/2011 08:07:52 PM,0 Block of ARLINGTON ST,SF,94131,B06,32,8112,3,3,3,false,,1,TRUCK,2,6,8,Glen Park,"(37.7394484132871, -122.424741266112)",111630286-T11 -160071368,67,16002801,Medical Incident,01/07/2016,01/07/2016,01/07/2016 11:13:56 AM,01/07/2016 11:15:06 AM,01/07/2016 11:16:22 AM,01/07/2016 11:16:54 AM,01/07/2016 11:35:51 AM,01/07/2016 11:53:43 AM,01/07/2016 12:09:43 PM,Code 2 Transport,01/07/2016 12:34:34 PM,1300 Block of 47TH AV,San Francisco,94122,B08,23,7721,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7613042680955, -122.507133779937)",160071368-67 -160642426,85,16025562,Medical Incident,03/04/2016,03/04/2016,03/04/2016 03:22:26 PM,03/04/2016 03:24:22 PM,03/04/2016 03:24:27 PM,03/04/2016 03:24:43 PM,03/04/2016 03:31:13 PM,03/04/2016 03:43:33 PM,03/04/2016 03:54:26 PM,Code 2 Transport,03/04/2016 04:25:17 PM,400 Block of GENEVA AVE,San Francisco,94112,B09,15,8319,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",160642426-85 -160370728,59,16014569,Medical Incident,02/06/2016,02/05/2016,02/06/2016 04:54:00 AM,02/06/2016 04:54:00 AM,02/06/2016 04:54:25 AM,02/06/2016 04:55:14 AM,02/06/2016 05:00:40 AM,02/06/2016 05:25:40 AM,02/06/2016 05:33:03 AM,Code 2 Transport,02/06/2016 05:59:48 AM,1700 Block of NORTH POINT ST,San Francisco,94123,B04,16,3455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8037670734664, -122.436041411071)",160370728-59 -131200073,FB1,13040287,Outside Fire,04/30/2013,04/30/2013,04/30/2013 09:40:00 AM,04/30/2013 09:40:00 AM,04/30/2013 09:40:24 AM,04/30/2013 09:41:59 AM,04/25/2016 01:53:03 PM,04/25/2016 01:53:03 PM,04/25/2016 01:53:03 PM,Other,04/30/2013 09:48:00 AM,400 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,954,3,3,3,false,Alarm,1,SUPPORT,5,3,6,Mission Bay,"(37.7717396202959, -122.386663865791)",131200073-FB1 -102810285,RC3,10089395,Medical Incident,10/08/2010,10/08/2010,10/08/2010 04:05:08 PM,10/08/2010 04:06:08 PM,10/08/2010 04:06:27 PM,10/08/2010 04:07:37 PM,10/08/2010 04:12:01 PM,04/25/2016 02:08:12 PM,04/25/2016 02:08:12 PM,Other,10/08/2010 04:25:05 PM,3000 Block of 24TH ST,SF,94110,B06,7,5527,3,2,2,true,,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7526417555714, -122.412733985804)",102810285-RC3 -140750345,T07,14025530,Structure Fire,03/16/2014,03/16/2014,03/16/2014 09:43:41 PM,03/16/2014 09:45:02 PM,03/16/2014 09:45:51 PM,03/16/2014 09:46:33 PM,03/16/2014 09:48:41 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Fire,03/16/2014 10:50:36 PM,CAPP ST/19TH ST,SAN FRANCISCO,94110,B06,7,5433,3,3,3,false,Alarm,1,TRUCK,4,6,9,Mission,"(37.7603010632565, -122.41811811905)",140750345-T07 -121830035,82,12060842,Medical Incident,07/01/2012,06/30/2012,07/01/2012 02:05:29 AM,07/01/2012 02:07:09 AM,07/01/2012 02:07:31 AM,07/01/2012 02:07:45 AM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,07/01/2012 02:16:39 AM,1700 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7721238465063, -122.422914601569)",121830035-82 -103410172,E01,10109111,Medical Incident,12/07/2010,12/07/2010,12/07/2010 12:29:13 PM,12/07/2010 12:30:18 PM,12/07/2010 12:30:48 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Other,12/07/2010 12:35:32 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,1,2,false,,1,ENGINE,2,3,6,South of Market,"(37.7812234542945, -122.408928070797)",103410172-E01 -112690161,E29,11088889,Structure Fire,09/26/2011,09/26/2011,09/26/2011 12:19:19 PM,09/26/2011 12:19:19 PM,09/26/2011 12:19:32 PM,09/26/2011 12:20:57 PM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,04/25/2016 02:02:28 PM,Other,04/25/2016 02:02:28 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112690161-E29 -122780259,B01,12091972,Structure Fire,10/04/2012,10/04/2012,10/04/2012 04:00:48 PM,10/04/2012 04:03:17 PM,10/04/2012 04:04:01 PM,10/04/2012 04:04:04 PM,10/04/2012 04:10:51 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/04/2012 04:15:51 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,false,Alarm,1,CHIEF,5,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",122780259-B01 -111230054,KM15,11040523,Medical Incident,05/03/2011,05/02/2011,05/03/2011 05:06:25 AM,05/03/2011 05:06:32 AM,05/03/2011 05:07:38 AM,05/03/2011 05:08:25 AM,05/03/2011 05:12:18 AM,05/03/2011 05:23:26 AM,05/03/2011 05:35:06 AM,Code 2 Transport,05/03/2011 06:20:19 AM,POST ST/POWELL ST,SF,94108,B01,1,1362,3,3,3,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7882931920047, -122.408401551902)",111230054-KM15 -132780040,58,13094376,Medical Incident,10/05/2013,10/04/2013,10/05/2013 02:27:21 AM,10/05/2013 02:27:48 AM,10/05/2013 02:28:30 AM,10/05/2013 02:36:11 AM,10/05/2013 02:45:29 AM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,No Merit,10/05/2013 02:52:36 AM,0 Block of MOSS ST,SF,94103,B03,1,2313,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7778360253922, -122.408013948834)",132780040-58 -160031510,79,16001180,Medical Incident,01/03/2016,01/03/2016,01/03/2016 12:59:47 PM,01/03/2016 01:01:40 PM,01/03/2016 01:04:36 PM,01/03/2016 01:05:00 PM,01/03/2016 01:12:30 PM,01/03/2016 01:46:09 PM,01/03/2016 02:11:03 PM,Code 2 Transport,01/03/2016 02:50:25 PM,3200 Block of CABRILLO ST,San Francisco,94121,B07,34,7252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7739653853206, -122.493431531881)",160031510-79 -133480205,86,13118129,Structure Fire,12/14/2013,12/14/2013,12/14/2013 01:26:32 PM,12/14/2013 01:27:30 PM,12/14/2013 01:31:50 PM,12/14/2013 01:31:55 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 01:38:05 PM,1000 Block of LE CONTE AVE,SF,94124,B10,44,6575,3,3,3,true,Alarm,1,MEDIC,10,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",133480205-86 -130440356,E43,13015063,Electrical Hazard,02/13/2013,02/13/2013,02/13/2013 08:39:31 PM,02/13/2013 08:40:45 PM,02/13/2013 08:45:59 PM,04/25/2016 01:54:19 PM,02/13/2013 08:48:44 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,Fire,02/13/2013 08:53:14 PM,300 Block of VIENNA ST,SF,94112,B09,43,6155,3,3,3,false,Alarm,1,ENGINE,1,9,11,Excelsior,"(37.7228366904256, -122.428721117908)",130440356-E43 -140890188,KM09,14029974,Medical Incident,03/30/2014,03/30/2014,03/30/2014 01:50:03 PM,03/30/2014 01:55:02 PM,03/30/2014 01:56:04 PM,03/30/2014 01:56:39 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,Unable to Locate,03/30/2014 02:02:52 PM,2000 Block of KEARNY ST,,94133,B01,28,939,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8069201392161, -122.407170160416)",140890188-KM09 -112710176,E26,11089523,Medical Incident,09/28/2011,09/28/2011,09/28/2011 12:15:53 PM,09/28/2011 12:17:46 PM,09/28/2011 12:19:47 PM,04/25/2016 02:02:26 PM,09/28/2011 12:21:24 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Patient Declined Transport,09/28/2011 12:36:30 PM,200 Block of JOOST AVE,SF,94131,B09,26,8214,2,2,2,true,,1,ENGINE,1,9,8,West of Twin Peaks,"(37.7324173850139, -122.440887834174)",112710176-E26 -120010192,E41,12000157,Structure Fire,01/01/2012,12/31/2011,01/01/2012 02:24:20 AM,01/01/2012 02:24:20 AM,01/01/2012 02:24:25 AM,01/01/2012 02:24:39 AM,01/01/2012 02:24:42 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 02:25:22 AM,POLK ST/PACIFIC AV,SF,94109,B04,41,3125,3,3,3,true,Alarm,1,ENGINE,1,4,3,Russian Hill,"(37.795027345481, -122.421582756606)",120010192-E41 -103590196,AM16,10115245,Medical Incident,12/25/2010,12/25/2010,12/25/2010 02:23:29 PM,12/25/2010 02:23:51 PM,12/25/2010 02:24:18 PM,12/25/2010 02:25:01 PM,12/25/2010 02:28:03 PM,12/25/2010 02:41:32 PM,12/25/2010 02:47:38 PM,Code 2 Transport,12/25/2010 03:32:27 PM,ELLIS ST/HYDE ST,SF,94109,B02,3,1555,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",103590196-AM16 -111160325,RS1,11038393,Structure Fire,04/26/2011,04/26/2011,04/26/2011 06:22:21 PM,04/26/2011 06:22:35 PM,04/26/2011 06:23:05 PM,04/26/2011 06:24:18 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 06:26:38 PM,2100 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,false,,1,RESCUE SQUAD,9,4,2,Marina,"(37.7996220349881, -122.436847071591)",111160325-RS1 -160623338,88,16024811,Medical Incident,03/02/2016,03/02/2016,03/02/2016 06:27:55 PM,03/02/2016 06:29:02 PM,03/02/2016 06:29:25 PM,03/02/2016 06:29:32 PM,03/02/2016 06:35:30 PM,03/02/2016 06:44:26 PM,03/02/2016 07:00:28 PM,Code 2 Transport,03/02/2016 07:31:04 PM,0 Block of BELDEN ST,San Francisco,94104,B01,13,1235,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7912793098409, -122.403701987134)",160623338-88 -121900231,96,12063348,Medical Incident,07/08/2012,07/08/2012,07/08/2012 04:52:32 PM,07/08/2012 04:53:35 PM,07/08/2012 04:57:27 PM,07/08/2012 04:58:53 PM,07/08/2012 05:14:27 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Against Medical Advice,07/08/2012 05:31:11 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121900231-96 -160501045,64,16020024,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:57:43 AM,02/19/2016 10:01:03 AM,02/19/2016 10:01:21 AM,02/19/2016 10:01:37 AM,02/19/2016 10:15:18 AM,02/19/2016 11:03:33 AM,02/19/2016 11:37:23 AM,Code 2 Transport,02/19/2016 12:13:52 PM,100 Block of GUERRERO ST,San Francisco,94103,B02,6,5214,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7683208883339, -122.4243245293)",160501045-64 -160760470,KM07,16030009,Medical Incident,03/16/2016,03/15/2016,03/16/2016 06:07:08 AM,03/16/2016 06:08:24 AM,03/16/2016 06:09:47 AM,03/16/2016 06:11:06 AM,03/16/2016 06:15:33 AM,03/16/2016 06:24:35 AM,03/16/2016 06:40:45 AM,Code 2 Transport,03/16/2016 06:56:21 AM,200 Block of 2ND ST,San Francisco,94105,B03,1,2147,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7857918163181, -122.396920775993)",160760470-KM07 -160852813,KM04,16033880,Medical Incident,03/25/2016,03/25/2016,03/25/2016 05:16:43 PM,03/25/2016 05:17:44 PM,03/25/2016 05:17:59 PM,03/25/2016 05:18:51 PM,03/25/2016 05:40:18 PM,03/25/2016 06:41:11 PM,03/25/2016 07:06:41 PM,Code 2 Transport,03/25/2016 07:40:38 PM,200 Block of 18TH AVE,San Francisco,94121,B07,31,7162,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.783294686314, -122.477372735277)",160852813-KM04 -110790290,E44,11026132,Structure Fire,03/20/2011,03/20/2011,03/20/2011 05:40:04 PM,03/20/2011 05:40:55 PM,03/20/2011 05:41:24 PM,03/20/2011 05:42:32 PM,03/20/2011 05:45:51 PM,04/25/2016 02:05:32 PM,04/25/2016 02:05:32 PM,Other,03/20/2011 05:51:32 PM,100 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7126910626884, -122.415580395245)",110790290-E44 -140630248,E19,14021326,Alarms,03/04/2014,03/04/2014,03/04/2014 03:04:21 PM,03/04/2014 03:05:33 PM,03/04/2014 03:05:49 PM,03/04/2014 03:07:38 PM,03/04/2014 03:12:32 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 03:28:49 PM,0 Block of ZOO RD,SF,94132,B08,19,8716,3,3,3,false,Alarm,1,ENGINE,3,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",140630248-E19 -103230064,77,10103387,Medical Incident,11/19/2010,11/19/2010,11/19/2010 08:10:02 AM,11/19/2010 08:11:11 AM,11/19/2010 08:11:38 AM,11/19/2010 08:13:11 AM,11/19/2010 08:19:37 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Against Medical Advice,11/19/2010 09:06:15 AM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",103230064-77 -133260269,E29,13110788,Medical Incident,11/22/2013,11/22/2013,11/22/2013 04:38:53 PM,11/22/2013 04:39:09 PM,11/22/2013 04:40:01 PM,11/22/2013 04:41:41 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 04:48:06 PM,14TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,8,Mission,"(37.7681396851482, -122.422199175206)",133260269-E29 -112530360,E44,11083608,Medical Incident,09/10/2011,09/10/2011,09/10/2011 08:08:25 PM,09/10/2011 08:08:51 PM,09/10/2011 08:09:17 PM,09/10/2011 08:09:59 PM,09/10/2011 08:14:11 PM,09/10/2011 08:26:11 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 08:40:01 PM,2100 Block of GENEVA AVE,SF,94134,B09,43,6246,E,E,3,true,,1,ENGINE,2,9,10,Visitacion Valley,"(37.7085351675634, -122.420460511784)",112530360-E44 -132180157,78,13073592,Medical Incident,08/06/2013,08/06/2013,08/06/2013 12:05:32 PM,08/06/2013 12:07:50 PM,08/06/2013 12:08:20 PM,08/06/2013 12:12:28 PM,08/06/2013 12:21:10 PM,08/06/2013 12:57:13 PM,08/06/2013 01:08:07 PM,Code 2 Transport,08/06/2013 01:55:02 PM,300 Block of LAGUNA ST,SF,94102,B02,36,3414,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7743568541999, -122.425909733176)",132180157-78 -160352633,82,16013898,Medical Incident,02/04/2016,02/04/2016,02/04/2016 04:17:48 PM,02/04/2016 04:30:20 PM,02/04/2016 04:33:47 PM,02/04/2016 04:33:55 PM,02/04/2016 04:45:22 PM,02/04/2016 05:05:30 PM,02/04/2016 05:16:08 PM,Code 2 Transport,02/04/2016 05:49:33 PM,200 Block of 21ST AVE,San Francisco,94121,B07,14,7173,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",160352633-82 -130860285,E41,13028772,Medical Incident,03/27/2013,03/27/2013,03/27/2013 05:36:05 PM,03/27/2013 05:37:30 PM,03/27/2013 05:38:21 PM,03/27/2013 05:39:32 PM,03/27/2013 05:40:35 PM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,Other,03/27/2013 05:53:34 PM,HYDE ST/CALIFORNIA ST,SF,94109,B01,41,1541,2,2,2,false,Non Life-threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",130860285-E41 -111110099,E14,11036591,Citizen Assist / Service Call,04/21/2011,04/21/2011,04/21/2011 09:19:18 AM,04/21/2011 09:22:28 AM,04/21/2011 09:23:23 AM,04/21/2011 09:24:54 AM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Fire,04/21/2011 09:25:37 AM,33RD AV/CLEMENT ST,SF,94121,B07,14,7237,3,3,3,true,,1,ENGINE,1,7,1,Lincoln Park,"(37.7816272387154, -122.493446343947)",111110099-E14 -110310229,KM12,11010193,Medical Incident,01/31/2011,01/31/2011,01/31/2011 02:04:04 PM,01/31/2011 02:06:37 PM,01/31/2011 02:08:50 PM,01/31/2011 02:09:50 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,04/25/2016 02:06:19 PM,PARKER AV/GOLDEN GATE AV,SF,94117,B05,21,4542,3,3,3,false,,1,PRIVATE,3,5,1,Lone Mountain/USF,"(37.7768534237239, -122.453188326702)",110310229-KM12 -160813200,AM12,16032318,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:48:57 PM,03/21/2016 06:49:25 PM,03/21/2016 06:50:18 PM,03/21/2016 06:50:56 PM,03/21/2016 06:59:50 PM,03/21/2016 07:18:53 PM,03/21/2016 07:45:42 PM,Code 2 Transport,03/21/2016 08:07:40 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160813200-AM12 -103390017,E03,10108384,Medical Incident,12/05/2010,12/04/2010,12/05/2010 12:47:37 AM,12/05/2010 12:48:05 AM,12/05/2010 12:48:14 AM,12/05/2010 12:49:50 AM,12/05/2010 12:52:01 AM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Other,12/05/2010 12:54:21 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",103390017-E03 -120240215,77,12008128,Medical Incident,01/24/2012,01/24/2012,01/24/2012 03:23:14 PM,01/24/2012 03:23:40 PM,01/24/2012 03:23:51 PM,01/24/2012 03:24:05 PM,01/24/2012 03:26:37 PM,01/24/2012 03:42:46 PM,01/24/2012 03:58:50 PM,Code 2 Transport,01/24/2012 04:29:44 PM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7247694508388, -122.460748189713)",120240215-77 -160660277,52,16026238,Medical Incident,03/06/2016,03/05/2016,03/06/2016 02:08:28 AM,03/06/2016 02:10:12 AM,03/06/2016 02:12:53 AM,03/06/2016 02:13:01 AM,03/06/2016 02:18:15 AM,03/06/2016 02:43:40 AM,03/06/2016 02:47:53 AM,Code 2 Transport,03/06/2016 03:24:33 AM,600 Block of 11TH AV,San Francisco,94118,B07,31,7143,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7760609691108, -122.469224857308)",160660277-52 -160031692,52,16001197,Medical Incident,01/03/2016,01/03/2016,01/03/2016 02:04:52 PM,01/03/2016 02:05:11 PM,01/03/2016 02:05:45 PM,01/03/2016 02:05:53 PM,01/03/2016 02:12:39 PM,01/03/2016 02:26:52 PM,01/03/2016 02:51:32 PM,Code 2 Transport,01/03/2016 03:21:12 PM,300 Block of MAIN ST,San Francisco,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7887905105293, -122.391039671545)",160031692-52 -130570165,KM12,13019158,Medical Incident,02/26/2013,02/26/2013,02/26/2013 01:00:24 PM,02/26/2013 01:02:00 PM,02/26/2013 01:02:41 PM,02/26/2013 01:03:13 PM,02/26/2013 01:07:59 PM,02/26/2013 01:28:00 PM,02/26/2013 01:44:55 PM,Code 2 Transport,02/26/2013 02:17:59 PM,0 Block of 20TH AVE,SF,94121,B07,31,7163,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,2,Seacliff,"(37.7863922258048, -122.479746073139)",130570165-KM12 -160582979,AM08,16023239,Medical Incident,02/27/2016,02/27/2016,02/27/2016 06:33:10 PM,02/27/2016 06:33:24 PM,02/27/2016 06:33:56 PM,02/27/2016 06:34:54 PM,02/27/2016 06:54:03 PM,02/27/2016 07:04:57 PM,02/27/2016 07:14:10 PM,Code 3 Transport,02/27/2016 07:33:28 PM,1500 Block of BROADWAY,San Francisco,94109,B04,41,3152,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",160582979-AM08 -102700058,E01,10085559,Medical Incident,09/27/2010,09/26/2010,09/27/2010 06:31:38 AM,09/27/2010 06:32:36 AM,09/27/2010 06:32:57 AM,09/27/2010 06:35:36 AM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,04/25/2016 02:08:23 PM,Other,09/27/2010 06:38:45 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",102700058-E01 -113590025,AM18,11119229,Medical Incident,12/25/2011,12/24/2011,12/25/2011 01:30:37 AM,12/25/2011 01:31:24 AM,12/25/2011 01:32:09 AM,12/25/2011 01:32:16 AM,12/25/2011 01:36:04 AM,12/25/2011 01:41:15 AM,12/25/2011 01:51:03 AM,Code 2 Transport,12/25/2011 02:16:37 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,false,,1,PRIVATE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",113590025-AM18 -111160145,E11,11038245,Medical Incident,04/26/2011,04/26/2011,04/26/2011 11:02:16 AM,04/26/2011 11:12:04 AM,04/26/2011 11:12:45 AM,04/26/2011 11:13:23 AM,04/26/2011 11:15:33 AM,04/25/2016 02:04:55 PM,04/25/2016 02:04:55 PM,Other,04/26/2011 11:17:47 AM,24TH ST/VALENCIA ST,SF,94110,B06,11,5512,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7521036457482, -122.420664802284)",111160145-E11 -130240002,66,13008144,Medical Incident,01/23/2013,01/23/2013,01/23/2013 11:59:48 PM,01/24/2013 12:02:33 AM,01/24/2013 12:02:50 AM,01/24/2013 12:02:57 AM,01/24/2013 12:08:29 AM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Other,01/24/2013 12:14:56 AM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",130240002-66 -160090392,AM20,16003520,Medical Incident,01/09/2016,01/08/2016,01/09/2016 03:25:53 AM,01/09/2016 03:27:10 AM,01/09/2016 03:27:18 AM,01/09/2016 03:27:56 AM,01/09/2016 03:33:00 AM,01/09/2016 03:45:50 AM,01/09/2016 04:19:58 AM,Code 2 Transport,01/09/2016 04:42:30 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160090392-AM20 -160772516,KM10,16030660,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:23:52 PM,03/17/2016 03:26:45 PM,03/17/2016 03:26:56 PM,03/17/2016 03:27:32 PM,03/17/2016 03:38:26 PM,03/17/2016 03:57:39 PM,03/17/2016 04:22:07 PM,Code 2 Transport,03/17/2016 05:12:44 PM,500 Block of HEARST AV,San Francisco,94112,B09,15,8235,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7306307296233, -122.450000285515)",160772516-KM10 -130350092,B04,13011916,Alarms,02/04/2013,02/03/2013,02/04/2013 07:40:07 AM,02/04/2013 07:41:31 AM,02/04/2013 07:41:43 AM,02/04/2013 07:42:51 AM,02/04/2013 07:45:52 AM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,Fire,02/04/2013 07:47:06 AM,2100 Block of UNION ST,SF,94123,B04,16,3552,3,3,3,false,Alarm,1,CHIEF,2,4,2,Marina,"(37.7972477502835, -122.434679239758)",130350092-B04 -113050061,E01,11101172,Medical Incident,11/01/2011,10/31/2011,11/01/2011 04:02:43 AM,11/01/2011 04:03:05 AM,11/01/2011 04:03:50 AM,11/01/2011 04:05:54 AM,11/01/2011 04:07:34 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 04:35:39 AM,6TH ST/TEHAMA ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7793146738209, -122.406628200775)",113050061-E01 -102480224,E28,10078403,Structure Fire,09/05/2010,09/05/2010,09/05/2010 03:44:11 PM,09/05/2010 03:45:48 PM,09/05/2010 03:46:05 PM,09/05/2010 03:47:03 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 04:01:29 PM,300 Block of CLAY ST,SF,94111,B01,13,1161,3,3,3,false,,1,ENGINE,10,1,3,Financial District/South Beach,"(37.7950325941141, -122.399739729147)",102480224-E28 -121940053,B07,12064448,Alarms,07/12/2012,07/11/2012,07/12/2012 04:37:54 AM,07/12/2012 04:39:32 AM,07/12/2012 04:39:50 AM,07/12/2012 04:42:01 AM,07/12/2012 04:44:25 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Fire,07/12/2012 04:48:06 AM,200 Block of 21ST AVE,SF,94121,B07,14,7173,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7831413015125, -122.480726752538)",121940053-B07 -110870095,86,11028651,Explosion,03/28/2011,03/28/2011,03/28/2011 09:28:32 AM,03/28/2011 09:29:13 AM,03/28/2011 09:29:22 AM,03/28/2011 09:29:46 AM,04/25/2016 02:05:24 PM,04/25/2016 02:05:24 PM,04/25/2016 02:05:24 PM,Other,03/28/2011 09:31:13 AM,POST ST/GRANT AV,SF,94108,B01,1,1316,3,3,3,true,,1,MEDIC,11,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",110870095-86 -110570272,60,11018827,Medical Incident,02/26/2011,02/26/2011,02/26/2011 05:40:06 PM,02/26/2011 05:40:41 PM,02/26/2011 05:41:01 PM,02/26/2011 05:41:22 PM,02/26/2011 05:46:28 PM,02/26/2011 05:54:49 PM,02/26/2011 05:57:02 PM,Code 3 Transport,02/26/2011 06:31:17 PM,CONNECTICUT ST/25TH ST,SF,94107,B10,37,2615,E,E,3,true,,1,MEDIC,4,10,10,Potrero Hill,"(37.7523107591, -122.396513496809)",110570272-60 -122450279,E22,12081082,Traffic Collision,09/01/2012,09/01/2012,09/01/2012 05:38:44 PM,09/01/2012 05:39:39 PM,09/01/2012 05:39:57 PM,09/01/2012 05:41:07 PM,09/01/2012 05:42:53 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,09/01/2012 05:58:03 PM,11TH AV/KIRKHAM ST,SF,94122,B08,22,7344,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7602176509862, -122.46819078685)",122450279-E22 -113590283,72,11119462,Medical Incident,12/25/2011,12/25/2011,12/25/2011 09:18:23 PM,12/25/2011 09:18:43 PM,12/25/2011 09:19:08 PM,12/25/2011 09:26:43 PM,12/25/2011 09:29:15 PM,12/25/2011 09:41:04 PM,12/25/2011 09:42:43 PM,Code 2 Transport,12/25/2011 09:58:59 PM,0 Block of NOE ST,SF,94114,B05,6,5212,2,2,2,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7683241294499, -122.433421238099)",113590283-72 -140410120,E51,14013869,Alarms,02/10/2014,02/10/2014,02/10/2014 09:52:14 AM,02/10/2014 09:54:08 AM,02/10/2014 09:56:52 AM,02/10/2014 09:59:18 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/10/2014 10:02:44 AM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Alarm,1,ENGINE,4,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",140410120-E51 -131090213,E36,13036656,Medical Incident,04/19/2013,04/19/2013,04/19/2013 01:23:39 PM,04/19/2013 01:25:13 PM,04/19/2013 01:29:14 PM,04/19/2013 01:31:05 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Other,04/19/2013 01:32:44 PM,3600 Block of 16TH ST,SF,94114,B05,6,5233,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,5,8,Castro/Upper Market,"(37.7641154746137, -122.434189123043)",131090213-E36 -111130169,93,11037330,Medical Incident,04/23/2011,04/23/2011,04/23/2011 12:41:01 PM,04/23/2011 12:42:00 PM,04/23/2011 12:42:20 PM,04/25/2016 02:04:58 PM,04/23/2011 12:45:45 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,Patient Declined Transport,04/23/2011 01:25:18 PM,2300 Block of LOMBARD ST,SF,94123,B04,16,4115,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.7994372928279, -122.440182465352)",111130169-93 -113570486,B04,11118857,Structure Fire,12/23/2011,12/23/2011,12/23/2011 11:54:24 PM,12/23/2011 11:55:46 PM,12/23/2011 11:55:55 PM,12/24/2011 12:00:27 AM,12/24/2011 12:04:50 AM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 12:04:56 AM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,false,,1,CHIEF,7,4,6,Tenderloin,"(37.7856114039588, -122.414829445627)",113570486-B04 -112090260,AM12,11069066,Medical Incident,07/28/2011,07/28/2011,07/28/2011 04:28:09 PM,07/28/2011 04:28:56 PM,07/28/2011 04:29:31 PM,07/28/2011 04:30:48 PM,07/28/2011 04:38:26 PM,04/25/2016 02:03:27 PM,04/25/2016 02:03:27 PM,Against Medical Advice,07/28/2011 05:37:36 PM,300 Block of MARKET ST,SF,94105,B03,13,2125,3,3,3,false,,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7919873998129, -122.397733553251)",112090260-AM12 -160692775,AM08,16027560,Medical Incident,03/09/2016,03/09/2016,03/09/2016 05:10:47 PM,03/09/2016 05:11:04 PM,03/09/2016 05:11:20 PM,03/09/2016 05:12:34 PM,03/09/2016 05:15:24 PM,03/09/2016 05:28:44 PM,03/09/2016 05:37:02 PM,Code 2 Transport,03/09/2016 06:21:07 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160692775-AM08 -130520129,KM01,13017531,Medical Incident,02/21/2013,02/21/2013,02/21/2013 10:21:26 AM,02/21/2013 10:22:42 AM,02/21/2013 10:26:15 AM,02/21/2013 10:27:10 AM,02/21/2013 10:36:16 AM,02/21/2013 10:48:17 AM,02/21/2013 10:56:41 AM,Code 2 Transport,02/21/2013 11:20:09 AM,800 Block of TURK ST,SF,94102,B02,36,3216,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",130520129-KM01 -63460088,T03,6097552,Alarms,12/12/2006,12/11/2006,12/12/2006 07:30:51 AM,12/12/2006 07:38:07 AM,12/12/2006 07:38:14 AM,12/12/2006 07:40:11 AM,04/25/2016 03:41:38 PM,04/25/2016 03:41:38 PM,04/25/2016 03:41:38 PM,Other,12/12/2006 07:49:13 AM,700 Block of POST ST,SF,94109,B04,3,1543,3,3,3,false,,1,TRUCK,3,1,3,Tenderloin,"(37.7875044952742, -122.414163693123)",063460088-T03 -131840020,AM18,13062555,Medical Incident,07/03/2013,07/02/2013,07/03/2013 01:50:48 AM,07/03/2013 01:52:45 AM,07/03/2013 01:53:00 AM,07/03/2013 01:54:14 AM,07/03/2013 01:57:54 AM,07/03/2013 02:06:30 AM,07/03/2013 02:21:20 AM,Code 3 Transport,07/03/2013 02:56:48 AM,400 Block of VELASCO AVE,SF,94134,B09,44,6251,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7090623014139, -122.416409292758)",131840020-AM18 -140510202,E33,14017284,Medical Incident,02/20/2014,02/20/2014,02/20/2014 12:35:37 PM,02/20/2014 12:36:14 PM,02/20/2014 12:36:29 PM,02/20/2014 12:38:19 PM,02/20/2014 12:39:24 PM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Medical Examiner,02/20/2014 12:42:20 PM,0 Block of SADOWA ST,SF,94112,B09,33,8371,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7122702602925, -122.455354635173)",140510202-E33 -110670116,E12,11022007,Medical Incident,03/08/2011,03/08/2011,03/08/2011 10:44:50 AM,03/08/2011 10:45:32 AM,03/08/2011 10:45:49 AM,03/08/2011 10:46:03 AM,03/08/2011 10:49:23 AM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 11:04:29 AM,0 Block of FREDERICK ST,SF,94117,B05,12,5143,3,3,3,true,,1,ENGINE,1,5,8,Haight Ashbury,"(37.7674266288047, -122.444287744052)",110670116-E12 -102820267,E05,10089753,Medical Incident,10/09/2010,10/09/2010,10/09/2010 03:26:25 PM,10/09/2010 03:26:46 PM,10/09/2010 03:29:06 PM,10/09/2010 03:31:35 PM,10/09/2010 03:35:41 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 03:45:12 PM,200 Block of MARINA BLVD,SF,94123,B04,16,3561,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8064044780344, -122.43650488639)",102820267-E05 -160521241,75,16020767,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:57:16 AM,02/21/2016 10:59:24 AM,02/21/2016 10:59:47 AM,02/21/2016 11:00:03 AM,02/21/2016 11:06:29 AM,02/21/2016 11:24:58 AM,02/21/2016 11:29:18 AM,Code 2 Transport,02/21/2016 12:00:38 PM,SUTTER ST/GOUGH ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Western Addition,"(37.7871304332186, -122.425046954972)",160521241-75 -160440687,AM02,16017598,Medical Incident,02/13/2016,02/12/2016,02/13/2016 07:05:26 AM,02/13/2016 07:05:26 AM,02/13/2016 07:05:49 AM,02/13/2016 07:06:44 AM,02/13/2016 07:12:03 AM,02/13/2016 07:18:26 AM,02/13/2016 07:33:03 AM,Code 2 Transport,02/13/2016 08:11:50 AM,600 Block of OFARRELL ST,San Francisco,94109,B04,3,1544,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7856114039588, -122.414829445627)",160440687-AM02 -111560210,62,11051590,Medical Incident,06/05/2011,06/05/2011,06/05/2011 12:41:32 PM,06/05/2011 12:42:41 PM,06/05/2011 12:42:53 PM,06/05/2011 12:43:26 PM,06/05/2011 12:49:07 PM,06/05/2011 01:18:41 PM,06/05/2011 01:31:37 PM,Code 2 Transport,06/05/2011 02:05:11 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",111560210-62 -133540256,81,13120317,Medical Incident,12/20/2013,12/20/2013,12/20/2013 02:24:25 PM,12/20/2013 02:24:25 PM,12/20/2013 02:27:59 PM,12/20/2013 02:28:04 PM,12/20/2013 02:46:12 PM,12/20/2013 02:57:53 PM,12/20/2013 03:13:34 PM,Code 2 Transport,12/20/2013 03:46:24 PM,THE EMBARCADERO NO/WASHINGTON ST,SF,94111,B01,13,903,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7966828949467, -122.395405269908)",133540256-81 -132370085,T08,13079870,Vehicle Fire,08/25/2013,08/24/2013,08/25/2013 07:15:25 AM,08/25/2013 07:17:26 AM,08/25/2013 07:17:34 AM,08/25/2013 07:19:44 AM,08/25/2013 07:22:06 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/25/2013 07:22:17 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,false,Fire,1,TRUCK,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",132370085-T08 -132450016,81,13082540,Medical Incident,09/02/2013,09/01/2013,09/02/2013 12:35:52 AM,09/02/2013 12:39:05 AM,09/02/2013 12:39:59 AM,09/02/2013 12:40:05 AM,09/02/2013 12:45:47 AM,09/02/2013 01:00:55 AM,09/02/2013 01:26:20 AM,Code 2 Transport,09/02/2013 01:37:50 AM,100 Block of WELSH ST,SF,94107,B03,8,2217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7787943737671, -122.397872227159)",132450016-81 -111880212,65,11062179,Medical Incident,07/07/2011,07/07/2011,07/07/2011 02:55:30 PM,07/07/2011 02:57:03 PM,07/07/2011 02:57:13 PM,07/07/2011 02:57:22 PM,07/07/2011 03:03:57 PM,07/07/2011 03:28:46 PM,07/07/2011 03:40:13 PM,Code 2 Transport,07/07/2011 04:17:00 PM,1200 Block of 37TH AVE,SF,94122,B08,23,7565,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7642859512589, -122.496594492168)",111880212-65 -160572772,68,16022850,Medical Incident,02/26/2016,02/26/2016,02/26/2016 05:31:09 PM,02/26/2016 05:33:07 PM,02/26/2016 05:33:20 PM,02/26/2016 05:33:26 PM,02/26/2016 05:42:12 PM,02/26/2016 06:08:29 PM,02/26/2016 06:31:23 PM,Code 2 Transport,02/26/2016 06:57:58 PM,1600 Block of 10TH AVE,San Francisco,94122,B08,22,7335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7574688628424, -122.466858392243)",160572772-68 -160490160,85,16019574,Medical Incident,02/18/2016,02/17/2016,02/18/2016 01:42:07 AM,02/18/2016 01:43:30 AM,02/18/2016 01:44:22 AM,02/18/2016 01:44:31 AM,02/18/2016 01:59:38 AM,02/18/2016 02:15:00 AM,02/18/2016 02:19:17 AM,Code 2 Transport,02/18/2016 03:06:18 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160490160-85 -160193038,AM20,16007757,Medical Incident,01/19/2016,01/19/2016,01/19/2016 06:44:43 PM,01/19/2016 06:46:16 PM,01/19/2016 06:46:32 PM,01/19/2016 06:47:24 PM,01/19/2016 06:54:38 PM,01/19/2016 07:01:42 PM,01/19/2016 07:10:55 PM,Code 2 Transport,01/19/2016 07:33:19 PM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7732598036539, -122.40905086984)",160193038-AM20 -112490064,AM16,11082033,Medical Incident,09/06/2011,09/05/2011,09/06/2011 07:58:30 AM,09/06/2011 07:59:52 AM,09/06/2011 08:00:12 AM,09/06/2011 08:01:17 AM,09/06/2011 08:05:29 AM,09/06/2011 08:21:19 AM,09/06/2011 08:42:05 AM,Code 2 Transport,09/06/2011 09:38:23 AM,100 Block of EDINBURGH ST,SF,94112,B09,43,6132,3,3,3,false,,1,PRIVATE,2,9,11,Excelsior,"(37.7267074867197, -122.427951449209)",112490064-AM16 -132010256,T13,13068218,Structure Fire,07/20/2013,07/20/2013,07/20/2013 05:09:42 PM,07/20/2013 05:09:43 PM,07/20/2013 05:10:46 PM,07/20/2013 05:11:49 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/20/2013 05:14:32 PM,200 Block of MARKET ST,SF,94105,B03,13,2818,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7926791171072, -122.396853499969)",132010256-T13 -120050078,60,12001648,Medical Incident,01/05/2012,01/04/2012,01/05/2012 07:44:44 AM,01/05/2012 07:45:51 AM,01/05/2012 07:46:05 AM,01/05/2012 07:46:35 AM,01/05/2012 07:50:37 AM,01/05/2012 07:58:31 AM,04/25/2016 02:00:47 PM,Code 2 Transport,01/05/2012 08:31:21 AM,100 Block of GROVE ST,SF,94102,B02,36,3165,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7783289000176, -122.419047896211)",120050078-60 -120510188,T03,12016877,Structure Fire,02/20/2012,02/20/2012,02/20/2012 02:44:08 PM,02/20/2012 02:44:56 PM,02/20/2012 02:45:06 PM,02/20/2012 02:46:16 PM,02/20/2012 03:06:26 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 03:06:35 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,false,Fire,1,TRUCK,3,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",120510188-T03 -112600363,E42,11085903,Medical Incident,09/17/2011,09/17/2011,09/17/2011 07:25:02 PM,09/17/2011 07:26:08 PM,09/17/2011 07:26:32 PM,09/17/2011 07:28:00 PM,09/17/2011 07:35:34 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 07:28:49 PM,BAYSHORE BL/CORTLAND AV,SF,94124,B10,42,6374,3,1,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",112600363-E42 -160720260,65,16028447,Medical Incident,03/12/2016,03/11/2016,03/12/2016 01:51:03 AM,03/12/2016 01:51:03 AM,03/12/2016 01:51:30 AM,03/12/2016 01:51:44 AM,03/12/2016 01:53:43 AM,03/12/2016 02:11:52 AM,03/12/2016 02:34:08 AM,Code 2 Transport,03/12/2016 03:24:23 AM,CALIFORNIA ST/HYDE ST,San Francisco,94109,B01,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160720260-65 -132490381,E44,13084197,Medical Incident,09/06/2013,09/06/2013,09/06/2013 10:08:24 PM,09/06/2013 10:11:10 PM,09/06/2013 10:11:41 PM,09/06/2013 10:12:30 PM,09/06/2013 10:15:44 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/06/2013 10:28:38 PM,200 Block of RAYMOND AVE,SF,94134,B09,44,6264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.713564106848, -122.408103072889)",132490381-E44 -103060358,72,10098044,Medical Incident,11/02/2010,11/02/2010,11/02/2010 06:15:08 PM,11/02/2010 06:17:21 PM,11/02/2010 06:18:35 PM,11/02/2010 06:18:44 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,04/25/2016 02:07:47 PM,300 Block of 7TH ST,SF,94103,B03,1,2313,2,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7765647940442, -122.407516832678)",103060358-72 -113330252,T16,11110366,Citizen Assist / Service Call,11/29/2011,11/29/2011,11/29/2011 04:44:35 PM,11/29/2011 04:46:18 PM,11/29/2011 04:47:50 PM,11/29/2011 04:48:55 PM,11/29/2011 04:53:51 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 05:14:07 PM,2700 Block of WEBSTER ST,SF,94123,B04,16,3463,3,3,3,false,,1,TRUCK,1,4,2,Marina,"(37.7959096353585, -122.433495143526)",113330252-T16 -160500391,64,16019959,Medical Incident,02/19/2016,02/18/2016,02/19/2016 04:58:30 AM,02/19/2016 04:59:45 AM,02/19/2016 04:59:51 AM,02/19/2016 05:00:03 AM,02/19/2016 05:04:10 AM,02/19/2016 05:24:21 AM,02/19/2016 05:35:13 AM,Code 2 Transport,02/19/2016 05:56:58 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160500391-64 -160861849,74,16034180,Medical Incident,03/26/2016,03/26/2016,03/26/2016 01:37:56 PM,03/26/2016 01:39:46 PM,03/26/2016 01:40:05 PM,03/26/2016 01:40:34 PM,03/26/2016 01:44:56 PM,03/26/2016 01:57:33 PM,03/26/2016 02:21:31 PM,Code 2 Transport,03/26/2016 02:56:14 PM,800 Block of HOLLOWAY AVE,San Francisco,94112,B09,15,8434,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7218844530147, -122.461754163971)",160861849-74 -111890258,KM10,11062543,Medical Incident,07/08/2011,07/08/2011,07/08/2011 03:29:36 PM,07/08/2011 03:33:02 PM,07/08/2011 03:34:41 PM,07/08/2011 03:35:23 PM,07/08/2011 03:40:12 PM,07/08/2011 04:05:09 PM,07/08/2011 04:09:31 PM,Code 2 Transport,07/08/2011 04:22:54 PM,100 Block of WOOD ST,SF,94118,B05,10,4455,3,3,3,false,,1,PRIVATE,2,5,1,Lone Mountain/USF,"(37.7815380607869, -122.448850915441)",111890258-KM10 -160690434,AM04,16027338,Medical Incident,03/09/2016,03/08/2016,03/09/2016 05:55:13 AM,03/09/2016 05:55:13 AM,03/09/2016 05:55:44 AM,03/09/2016 05:56:21 AM,03/09/2016 06:02:54 AM,03/09/2016 06:13:15 AM,03/09/2016 06:22:07 AM,Code 2 Transport,03/09/2016 06:51:49 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160690434-AM04 -160331335,83,16012949,Medical Incident,02/02/2016,02/02/2016,02/02/2016 11:24:51 AM,02/02/2016 11:26:07 AM,02/02/2016 11:26:52 AM,02/02/2016 11:27:16 AM,02/02/2016 11:38:57 AM,02/02/2016 11:52:28 AM,02/02/2016 12:11:18 PM,Code 2 Transport,02/02/2016 12:41:19 PM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160331335-83 -133230390,E15,13109813,Medical Incident,11/19/2013,11/19/2013,11/19/2013 09:17:16 PM,11/19/2013 09:20:10 PM,11/19/2013 09:24:03 PM,11/19/2013 09:25:18 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 09:26:09 PM,300 Block of URBANO DR,SF,94127,B09,19,8445,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,9,7,West of Twin Peaks,"(37.7246686004233, -122.470006077481)",133230390-E15 -160361712,AM10,16014234,Medical Incident,02/05/2016,02/05/2016,02/05/2016 11:57:39 AM,02/05/2016 11:58:27 AM,02/05/2016 11:58:52 AM,02/05/2016 11:59:30 AM,02/05/2016 12:01:48 PM,02/05/2016 12:15:12 PM,02/05/2016 12:44:06 PM,Code 2 Transport,02/05/2016 01:18:36 PM,1300 Block of CHESTNUT ST,San Francisco,94123,B04,16,3235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8021221938701, -122.425543360244)",160361712-AM10 -160650902,77,16025866,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:44:35 AM,03/05/2016 08:46:54 AM,03/05/2016 08:47:49 AM,03/05/2016 08:48:01 AM,03/05/2016 08:55:56 AM,03/05/2016 09:17:34 AM,03/05/2016 09:24:23 AM,Code 2 Transport,03/05/2016 09:52:58 AM,0 Block of ANDERSON ST,San Francisco,94110,B06,32,5717,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7418855713382, -122.415112722044)",160650902-77 -103620051,T01,10116007,Structure Fire,12/28/2010,12/27/2010,12/28/2010 04:36:00 AM,12/28/2010 04:37:21 AM,12/28/2010 04:42:29 AM,12/28/2010 04:49:50 AM,12/28/2010 04:54:02 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 05:15:25 AM,0 Block of PERRY ST,SF,94107,B03,8,2175,3,3,3,false,,1,TRUCK,4,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",103620051-T01 -160713783,65,16028414,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:27:51 PM,03/11/2016 11:30:04 PM,03/11/2016 11:30:16 PM,03/11/2016 11:30:32 PM,03/11/2016 11:39:55 PM,03/12/2016 12:03:36 AM,03/12/2016 12:28:58 AM,Code 2 Transport,03/12/2016 01:17:30 AM,1000 Block of FRANCISCO ST,San Francisco,94109,B01,28,1624,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8035711866539, -122.422453107864)",160713783-65 -110640035,E19,11020953,Medical Incident,03/05/2011,03/04/2011,03/05/2011 01:34:08 AM,03/05/2011 01:35:52 AM,03/05/2011 01:38:44 AM,03/05/2011 01:40:08 AM,03/05/2011 01:42:33 AM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,No Merit,03/05/2011 01:43:31 AM,200 Block of MIDDLEFIELD DR,SF,94132,B08,19,8743,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7303132169002, -122.486205438256)",110640035-E19 -112600016,E05,11085607,Medical Incident,09/17/2011,09/16/2011,09/17/2011 01:04:45 AM,09/17/2011 01:05:58 AM,09/17/2011 01:09:37 AM,09/17/2011 01:10:46 AM,09/17/2011 01:13:28 AM,04/25/2016 02:02:38 PM,04/25/2016 02:02:38 PM,Other,09/17/2011 01:21:39 AM,700 Block of MCALLISTER ST,SF,94102,B02,5,3316,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.779520032299, -122.425195823386)",112600016-E05 -110590217,E16,11019411,Vehicle Fire,02/28/2011,02/28/2011,02/28/2011 03:00:29 PM,02/28/2011 03:00:46 PM,02/28/2011 03:01:12 PM,02/28/2011 03:02:34 PM,02/28/2011 03:03:47 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Fire,02/28/2011 03:12:03 PM,LOMBARD ST/STEINER ST,SF,94123,B04,16,3566,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7996339299842, -122.437694703173)",110590217-E16 -120690294,E36,12022986,Medical Incident,03/09/2012,03/09/2012,03/09/2012 06:23:49 PM,03/09/2012 06:24:34 PM,03/09/2012 06:24:48 PM,03/09/2012 06:25:17 PM,03/09/2012 06:28:16 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 06:34:07 PM,100 Block of GOUGH ST,SF,94102,B02,36,3266,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7743091709053, -122.422522963231)",120690294-E36 -130720315,E21,13024106,Medical Incident,03/13/2013,03/13/2013,03/13/2013 05:56:48 PM,03/13/2013 05:58:03 PM,03/13/2013 05:58:18 PM,03/13/2013 05:59:04 PM,03/13/2013 06:00:52 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 06:10:25 PM,HAYES ST/MASONIC AV,SF,94117,B05,21,4464,3,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7739353716878, -122.446091726028)",130720315-E21 -120540327,E09,12017945,Medical Incident,02/23/2012,02/23/2012,02/23/2012 07:01:14 PM,02/23/2012 07:03:23 PM,02/23/2012 07:03:34 PM,02/23/2012 07:04:31 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 07:06:22 PM,0 Block of BALMY ST,SF,94110,B06,7,5533,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7517963632308, -122.412457038391)",120540327-E09 -113140399,E06,11104515,Medical Incident,11/10/2011,11/10/2011,11/10/2011 11:04:48 PM,11/10/2011 11:04:48 PM,11/10/2011 11:05:19 PM,11/10/2011 11:06:27 PM,11/10/2011 11:08:02 PM,04/25/2016 02:01:42 PM,04/25/2016 02:01:42 PM,Other,11/10/2011 11:11:36 PM,CHURCH ST/16TH ST,SF,94114,B02,6,5234,3,3,3,true,,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7645076140541, -122.428665130308)",113140399-E06 -122380274,E01,12078921,Medical Incident,08/25/2012,08/25/2012,08/25/2012 07:27:48 PM,08/25/2012 07:27:52 PM,08/25/2012 07:28:09 PM,08/25/2012 07:29:25 PM,08/25/2012 07:31:37 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 07:31:59 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,E,E,3,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",122380274-E01 -102460254,T15,10077787,Structure Fire,09/03/2010,09/03/2010,09/03/2010 03:23:38 PM,09/03/2010 03:23:38 PM,09/03/2010 03:23:48 PM,09/03/2010 03:26:32 PM,09/03/2010 03:26:35 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/03/2010 03:26:38 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,TRUCK,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",102460254-T15 -120990346,68,12032958,Medical Incident,04/08/2012,04/08/2012,04/08/2012 10:40:00 PM,04/08/2012 10:40:43 PM,04/08/2012 10:41:59 PM,04/08/2012 10:42:37 PM,04/08/2012 10:55:01 PM,04/08/2012 11:07:04 PM,04/08/2012 11:16:35 PM,Other,04/08/2012 11:55:48 PM,500 Block of DOLORES ST,SF,94110,B06,7,5435,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7606376831681, -122.425843696986)",120990346-68 -102690054,T05,10085202,Other,09/26/2010,09/25/2010,09/26/2010 02:20:57 AM,09/26/2010 02:21:25 AM,09/26/2010 02:22:52 AM,09/26/2010 02:24:31 AM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,04/25/2016 02:08:24 PM,600 Block of EDDY ST,SF,94102,B02,3,1643,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",102690054-T05 -160351379,KM11,16013789,Medical Incident,02/04/2016,02/04/2016,02/04/2016 11:06:14 AM,02/04/2016 11:06:14 AM,02/04/2016 11:08:28 AM,02/04/2016 11:08:28 AM,02/04/2016 11:27:18 AM,02/04/2016 11:43:34 AM,02/04/2016 12:03:52 PM,Code 2 Transport,02/04/2016 12:33:36 PM,2100 Block of JENNINGS ST,San Francisco,94124,B10,17,6651,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7267615481333, -122.389011582143)",160351379-KM11 -131240026,E03,13041684,Medical Incident,05/04/2013,05/03/2013,05/04/2013 01:28:40 AM,05/04/2013 01:29:15 AM,05/04/2013 01:30:44 AM,05/04/2013 01:32:00 AM,05/04/2013 01:33:46 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/04/2013 01:37:08 AM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",131240026-E03 -132150126,KM06,13072558,Medical Incident,08/03/2013,08/03/2013,08/03/2013 09:40:48 AM,08/03/2013 09:41:29 AM,08/03/2013 09:41:48 AM,08/03/2013 09:44:46 AM,08/03/2013 09:45:55 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/03/2013 09:47:12 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",132150126-KM06 -121340056,B06,12044495,Medical Incident,05/13/2012,05/12/2012,05/13/2012 04:32:11 AM,05/13/2012 04:33:28 AM,05/13/2012 04:33:58 AM,05/13/2012 04:36:10 AM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,04/25/2016 01:58:42 PM,Other,05/13/2012 04:39:14 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,E,E,3,false,Potentially Life-Threatening,1,CHIEF,4,6,9,Mission,"(37.7563633001161, -122.416712100806)",121340056-B06 -121590153,E33,12052582,Medical Incident,06/07/2012,06/07/2012,06/07/2012 01:02:37 PM,06/07/2012 01:03:50 PM,06/07/2012 01:06:09 PM,06/07/2012 01:07:12 PM,06/07/2012 01:10:59 PM,04/25/2016 01:58:19 PM,04/25/2016 01:58:19 PM,Other,06/07/2012 01:31:10 PM,0 Block of BRUMISS TER,SF,94112,B09,33,6213,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7083774785138, -122.452043321077)",121590153-E33 -110020002,67,11000513,Medical Incident,01/02/2011,01/01/2011,01/02/2011 12:06:20 AM,01/02/2011 12:08:20 AM,01/02/2011 12:08:39 AM,01/02/2011 12:10:23 AM,01/02/2011 12:16:52 AM,01/02/2011 12:50:55 AM,01/02/2011 01:04:16 AM,Code 2 Transport,01/02/2011 01:50:11 AM,100 Block of STEINER ST,SF,94117,B05,6,5131,3,3,3,true,,1,MEDIC,2,5,8,Haight Ashbury,"(37.77025923404, -122.431832299927)",110020002-67 -131800436,88,13061426,Medical Incident,06/29/2013,06/29/2013,06/29/2013 10:47:13 PM,06/29/2013 10:49:31 PM,06/29/2013 10:54:12 PM,06/29/2013 10:54:18 PM,06/29/2013 11:02:38 PM,06/29/2013 11:11:31 PM,06/29/2013 11:23:21 PM,Code 2 Transport,06/29/2013 11:45:09 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",131800436-88 -131210201,E07,13040660,Alarms,05/01/2013,05/01/2013,05/01/2013 12:40:11 PM,05/01/2013 12:41:46 PM,05/01/2013 12:42:35 PM,05/01/2013 12:43:57 PM,05/01/2013 12:48:41 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Fire,05/01/2013 12:54:59 PM,200 Block of RHODE ISLAND ST,SF,94103,B02,29,2353,3,3,3,true,Alarm,1,ENGINE,3,2,10,Mission Bay,"(37.7667279994694, -122.402676976435)",131210201-E07 -140240367,67,14008331,Medical Incident,01/24/2014,01/24/2014,01/24/2014 07:30:23 PM,01/24/2014 07:30:56 PM,01/24/2014 07:31:09 PM,01/24/2014 07:36:30 PM,01/24/2014 07:37:24 PM,01/24/2014 08:01:23 PM,01/24/2014 08:17:54 PM,Code 2 Transport,01/24/2014 08:48:31 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",140240367-67 -110730150,E38,11023984,Alarms,03/14/2011,03/14/2011,03/14/2011 11:20:49 AM,03/14/2011 11:22:11 AM,03/14/2011 11:22:24 AM,03/14/2011 11:23:15 AM,03/14/2011 11:24:52 AM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 11:29:37 AM,2300 Block of FILLMORE ST,SF,94115,B04,38,3545,3,3,3,false,,1,ENGINE,2,4,2,Pacific Heights,"(37.7911600802075, -122.434223473202)",110730150-E38 -132980357,RS2,13101351,Structure Fire,10/25/2013,10/25/2013,10/25/2013 08:02:55 PM,10/25/2013 08:03:55 PM,10/25/2013 08:04:15 PM,10/25/2013 08:06:23 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 08:15:58 PM,0 Block of GELLERT DR,SF,94132,B08,19,8814,3,3,3,false,Alarm,1,RESCUE SQUAD,10,8,7,Sunset/Parkside,"(37.7325140251407, -122.493237980377)",132980357-RS2 -131150114,E08,13038727,Outside Fire,04/25/2013,04/25/2013,04/25/2013 11:13:14 AM,04/25/2013 11:15:14 AM,04/25/2013 11:15:40 AM,04/25/2013 11:17:01 AM,04/25/2013 11:22:53 AM,04/25/2016 01:53:07 PM,04/25/2016 01:53:07 PM,Fire,04/25/2013 11:26:46 AM,100 Block of 4TH ST,SF,94103,B03,1,2214,3,3,3,true,Fire,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7836909533775, -122.40316136589)",131150114-E08 -122650024,E01,12087418,Medical Incident,09/21/2012,09/20/2012,09/21/2012 02:20:25 AM,09/21/2012 02:22:43 AM,09/21/2012 02:23:20 AM,09/21/2012 02:26:25 AM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 02:26:58 AM,200 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7846164800251, -122.410977371386)",122650024-E01 -140840353,T07,14028463,Alarms,03/25/2014,03/25/2014,03/25/2014 10:58:04 PM,03/25/2014 10:59:28 PM,03/25/2014 10:59:55 PM,03/25/2014 11:01:36 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Fire,03/25/2014 11:14:34 PM,1500 Block of BRYANT ST,SAN FRANCISCO,94103,B02,29,5222,3,3,3,false,Alarm,1,TRUCK,3,2,9,Mission,"(37.767536533024, -122.410739256407)",140840353-T07 -132270094,RC1,13076549,Medical Incident,08/15/2013,08/15/2013,08/15/2013 09:27:22 AM,08/15/2013 09:27:52 AM,08/15/2013 09:28:20 AM,08/15/2013 09:30:00 AM,08/15/2013 09:31:32 AM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,Medical Examiner,08/15/2013 10:23:56 AM,400 Block of EDDY ST,SF,94109,B02,3,1545,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",132270094-RC1 -160600452,52,16023765,Medical Incident,02/29/2016,02/28/2016,02/29/2016 06:24:04 AM,02/29/2016 06:26:38 AM,02/29/2016 06:26:50 AM,02/29/2016 06:27:00 AM,02/29/2016 06:35:09 AM,02/29/2016 07:04:14 AM,02/29/2016 07:18:28 AM,Code 2 Transport,02/29/2016 08:05:50 AM,500 Block of MORSE ST,San Francisco,94112,B09,43,6221,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7119776996093, -122.442856862827)",160600452-52 -120090018,E33,12002968,Alarms,01/09/2012,01/08/2012,01/09/2012 12:53:01 AM,01/09/2012 12:54:01 AM,01/09/2012 12:54:57 AM,01/09/2012 12:55:13 AM,01/09/2012 12:56:44 AM,04/25/2016 02:00:43 PM,04/25/2016 02:00:43 PM,Other,01/09/2012 01:06:54 AM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,true,Alarm,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",120090018-E33 -160463394,75,16018665,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:15:54 PM,02/15/2016 08:17:49 PM,02/15/2016 08:18:14 PM,02/15/2016 08:18:33 PM,02/15/2016 08:33:48 PM,02/15/2016 08:49:59 PM,02/15/2016 08:58:08 PM,Code 2 Transport,02/15/2016 09:29:20 PM,TURK ST/LEAVENWORTH ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7827944442149, -122.414053765658)",160463394-75 -111850149,94,11061119,Medical Incident,07/04/2011,07/04/2011,07/04/2011 12:11:48 PM,07/04/2011 12:12:29 PM,07/04/2011 12:13:07 PM,04/25/2016 02:03:50 PM,07/04/2011 12:22:47 PM,07/04/2011 12:32:43 PM,07/04/2011 12:51:25 PM,Code 2 Transport,07/04/2011 01:13:41 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",111850149-94 -132000395,T11,13067983,Medical Incident,07/19/2013,07/19/2013,07/19/2013 10:39:04 PM,07/19/2013 10:41:43 PM,07/19/2013 10:42:12 PM,07/19/2013 10:44:16 PM,07/19/2013 10:46:36 PM,04/25/2016 01:51:43 PM,04/25/2016 01:51:43 PM,Other,07/19/2013 10:51:06 PM,600 Block of SAN JOSE AVE,SF,94110,B06,11,5577,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",132000395-T11 -133210319,E06,13109173,Structure Fire,11/17/2013,11/17/2013,11/17/2013 09:49:53 PM,11/17/2013 09:50:49 PM,11/17/2013 09:51:06 PM,11/17/2013 09:52:17 PM,11/17/2013 09:54:34 PM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 09:58:27 PM,100 Block of FRANKLIN ST,SF,94102,B02,36,3213,3,3,3,true,Alarm,1,ENGINE,4,2,5,Hayes Valley,"(37.7759358319818, -122.421032543678)",133210319-E06 -160793862,77,16031584,Medical Incident,03/19/2016,03/19/2016,03/19/2016 09:22:28 PM,03/19/2016 09:23:35 PM,03/19/2016 09:24:37 PM,03/19/2016 09:25:42 PM,03/19/2016 09:30:50 PM,03/19/2016 09:40:44 PM,03/19/2016 09:53:09 PM,Code 2 Transport,03/19/2016 10:28:58 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160793862-77 -110880168,E20,11029036,Medical Incident,03/29/2011,03/29/2011,03/29/2011 12:06:00 PM,03/29/2011 12:06:48 PM,03/29/2011 12:06:58 PM,03/29/2011 12:07:40 PM,03/29/2011 12:09:56 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 12:48:50 PM,1600 Block of 7TH AVE,SF,94122,B08,20,7329,3,1,2,true,,1,ENGINE,1,8,7,Inner Sunset,"(37.7576481057506, -122.463788674586)",110880168-E20 -140270255,E31,14009264,Medical Incident,01/27/2014,01/27/2014,01/27/2014 04:38:12 PM,01/27/2014 04:39:42 PM,01/27/2014 04:41:30 PM,01/27/2014 04:42:55 PM,01/27/2014 04:45:59 PM,04/25/2016 01:48:30 PM,04/25/2016 01:48:30 PM,Other,01/27/2014 04:58:43 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7709582807252, -122.468300968199)",140270255-E31 -110050289,94,11001724,Medical Incident,01/05/2011,01/05/2011,01/05/2011 04:15:07 PM,01/05/2011 04:15:36 PM,01/05/2011 04:15:59 PM,01/05/2011 04:16:03 PM,01/05/2011 04:26:19 PM,01/05/2011 04:39:44 PM,01/05/2011 04:45:46 PM,Code 2 Transport,01/05/2011 05:11:14 PM,400 Block of 7TH ST,SF,94103,B03,8,231,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",110050289-94 -160190858,61,16007530,Traffic Collision,01/19/2016,01/19/2016,01/19/2016 08:46:17 AM,01/19/2016 08:46:17 AM,01/19/2016 08:46:36 AM,01/19/2016 08:49:43 AM,01/19/2016 08:49:43 AM,01/19/2016 09:08:52 AM,01/19/2016 09:12:19 AM,Code 3 Transport,01/19/2016 09:50:39 AM,BRYANT ST/8TH ST,San Francisco,94103,B03,29,2324,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.772526268193, -122.406968289725)",160190858-61 -123170005,E01,12105348,Medical Incident,11/12/2012,11/11/2012,11/12/2012 12:21:01 AM,11/12/2012 12:21:40 AM,11/12/2012 12:21:55 AM,11/12/2012 12:22:59 AM,11/12/2012 12:24:44 AM,04/25/2016 01:55:50 PM,04/25/2016 01:55:50 PM,Other,11/12/2012 12:29:34 AM,4TH ST/MISSION ST,SF,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",123170005-E01 -160660684,62,16026301,Medical Incident,03/06/2016,03/05/2016,03/06/2016 07:37:51 AM,03/06/2016 07:40:41 AM,03/06/2016 07:40:56 AM,03/06/2016 07:44:48 AM,03/06/2016 07:44:48 AM,03/06/2016 08:02:48 AM,03/06/2016 08:56:07 AM,Code 2 Transport,03/06/2016 09:04:15 AM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160660684-62 -112670039,75,11088098,Traffic Collision,09/24/2011,09/23/2011,09/24/2011 01:56:10 AM,09/24/2011 01:56:10 AM,09/24/2011 01:57:15 AM,09/24/2011 01:57:31 AM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/24/2011 02:05:22 AM,FILLMORE ST/LOMBARD ST,SF,94123,B04,16,3566,3,3,3,true,,1,MEDIC,3,4,2,Marina,"(37.7998429502723, -122.436046173981)",112670039-75 -160271862,59,16010678,Medical Incident,01/27/2016,01/27/2016,01/27/2016 01:14:30 PM,01/27/2016 01:16:01 PM,01/27/2016 01:16:16 PM,01/27/2016 01:16:25 PM,01/27/2016 01:18:47 PM,01/27/2016 01:37:08 PM,01/27/2016 01:38:33 PM,Code 3 Transport,01/27/2016 02:16:04 PM,0 Block of BYRON CT,San Francisco,94112,B09,33,6215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7094763193761, -122.444390891577)",160271862-59 -113030096,87,11100483,Medical Incident,10/30/2011,10/29/2011,10/30/2011 02:46:39 AM,10/30/2011 02:48:13 AM,10/30/2011 02:48:59 AM,10/30/2011 02:49:11 AM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 02:51:21 AM,1300 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,true,,1,MEDIC,3,1,3,Nob Hill,"(37.7911188031273, -122.416758005848)",113030096-87 -131120182,E03,13037691,Medical Incident,04/22/2013,04/22/2013,04/22/2013 12:08:02 PM,04/22/2013 12:09:12 PM,04/22/2013 12:09:47 PM,04/22/2013 12:11:29 PM,04/22/2013 12:13:57 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,No Merit,04/22/2013 12:15:24 PM,LARKIN ST/GOLDEN GATE AV,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",131120182-E03 -131680181,96,13057039,Administrative,06/17/2013,06/17/2013,06/17/2013 01:42:20 PM,06/17/2013 01:42:23 PM,06/17/2013 01:45:01 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Other,06/17/2013 01:45:31 PM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,3,3,false,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",131680181-96 -140980292,E05,14033107,Medical Incident,04/08/2014,04/08/2014,04/08/2014 02:50:16 PM,04/08/2014 02:51:42 PM,04/08/2014 02:53:07 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Code 2 Transport,04/08/2014 02:54:09 PM,MCALLISTER ST/VAN NESS AV,SAN FRANCISCO,94102,B02,36,3164,,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",140980292-E05 -133610226,94,13122709,Medical Incident,12/27/2013,12/27/2013,12/27/2013 04:26:33 PM,12/27/2013 04:26:49 PM,12/27/2013 04:27:04 PM,12/27/2013 04:27:25 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,04/25/2016 01:49:02 PM,Other,12/27/2013 04:30:55 PM,100 Block of COUNTRY CLUB DR,SF,94132,B08,19,8826,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.730788409194, -122.496687609617)",133610226-94 -113440289,E02,11114217,Medical Incident,12/10/2011,12/10/2011,12/10/2011 07:16:36 PM,12/10/2011 07:17:11 PM,12/10/2011 07:17:55 PM,04/25/2016 02:01:13 PM,12/10/2011 07:21:53 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 07:30:17 PM,2200 Block of POLK ST,SF,94109,B04,41,3126,3,2,2,true,,1,ENGINE,2,4,3,Russian Hill,"(37.7975891062057, -122.422170244578)",113440289-E02 -160882487,89,16035024,Medical Incident,03/28/2016,03/28/2016,03/28/2016 04:00:16 PM,03/28/2016 04:02:36 PM,03/28/2016 04:03:07 PM,03/28/2016 04:03:07 PM,03/28/2016 04:13:46 PM,03/28/2016 04:38:31 PM,03/28/2016 05:09:15 PM,Code 2 Transport,03/28/2016 05:44:45 PM,900 Block of ROLPH ST,San Francisco,94112,B09,43,6172,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.7111937466802, -122.428652632405)",160882487-89 -120970380,E07,12032299,Vehicle Fire,04/06/2012,04/06/2012,04/06/2012 09:52:44 PM,04/06/2012 09:53:18 PM,04/06/2012 09:53:30 PM,04/06/2012 09:54:45 PM,04/06/2012 09:57:03 PM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 10:22:03 PM,HARRISON ST/23RD ST,SF,94110,B06,7,5477,3,3,3,true,Fire,1,ENGINE,2,6,9,Mission,"(37.7542303329372, -122.412047267054)",120970380-E07 -111720356,E29,11056884,Structure Fire,06/21/2011,06/21/2011,06/21/2011 08:59:24 PM,06/21/2011 09:01:58 PM,06/21/2011 09:02:25 PM,06/21/2011 09:03:30 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/21/2011 09:09:05 PM,500 Block of DE HARO ST,SF,94107,B10,37,2511,3,3,3,true,,1,ENGINE,10,3,10,Potrero Hill,"(37.7629325311181, -122.401317216579)",111720356-E29 -160043530,AM16,16001781,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:51:58 PM,01/04/2016 09:55:11 PM,01/04/2016 09:55:37 PM,01/04/2016 09:56:17 PM,01/04/2016 10:07:01 PM,01/04/2016 10:30:43 PM,01/04/2016 10:56:05 PM,Code 2 Transport,01/04/2016 11:42:01 PM,200 Block of SUTTER ST,San Francisco,94108,B01,13,1242,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7897614265442, -122.404814371149)",160043530-AM16 -122200239,B01,12073020,Structure Fire,08/07/2012,08/07/2012,08/07/2012 05:30:26 PM,08/07/2012 05:31:03 PM,08/07/2012 05:31:27 PM,08/07/2012 05:32:46 PM,08/07/2012 05:34:14 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Fire,08/07/2012 06:20:21 PM,MONTGOMERY ST/BROADWAY,SF,94133,B01,13,1231,3,3,3,false,Fire,1,CHIEF,2,1,3,North Beach,"(37.7982229704871, -122.403863019987)",122200239-B01 -123030405,55,12100693,Medical Incident,10/29/2012,10/29/2012,10/29/2012 08:38:52 PM,10/29/2012 08:40:23 PM,10/29/2012 08:40:34 PM,10/29/2012 08:40:46 PM,10/29/2012 08:49:55 PM,10/29/2012 09:02:28 PM,10/29/2012 09:10:39 PM,Code 2 Transport,10/29/2012 09:27:48 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",123030405-55 -160900090,55,16035539,Medical Incident,03/30/2016,03/29/2016,03/30/2016 12:42:19 AM,03/30/2016 12:42:19 AM,03/30/2016 12:43:00 AM,03/30/2016 12:43:14 AM,03/30/2016 12:52:41 AM,03/30/2016 01:18:44 AM,03/30/2016 01:25:55 AM,Code 2 Transport,03/30/2016 01:49:56 AM,100 Block of JASPER PL,San Francisco,94133,B01,28,1265,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8009999767411, -122.408523696851)",160900090-55 -160060171,82,16002231,Medical Incident,01/06/2016,01/05/2016,01/06/2016 01:52:24 AM,01/06/2016 01:53:24 AM,01/06/2016 01:53:42 AM,01/06/2016 01:54:17 AM,01/06/2016 02:10:29 AM,01/06/2016 02:10:34 AM,01/06/2016 02:18:37 AM,Code 2 Transport,01/06/2016 03:13:29 AM,0 Block of BERTHA LN,San Francisco,94124,B10,17,6631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7331435009212, -122.380990356551)",160060171-82 -160920232,88,16036296,Medical Incident,04/01/2016,03/31/2016,04/01/2016 02:32:05 AM,04/01/2016 02:35:50 AM,04/01/2016 02:37:03 AM,04/01/2016 02:37:21 AM,04/01/2016 02:44:44 AM,04/01/2016 02:51:33 AM,04/01/2016 02:59:23 AM,Code 2 Transport,04/01/2016 03:12:16 AM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160920232-88 -160742692,61,16029407,Medical Incident,03/14/2016,03/14/2016,03/14/2016 04:33:23 PM,03/14/2016 04:35:06 PM,03/14/2016 04:37:26 PM,03/14/2016 04:37:36 PM,03/14/2016 04:41:28 PM,03/14/2016 04:57:54 PM,03/14/2016 05:03:34 PM,Code 2 Transport,03/14/2016 05:32:30 PM,900 Block of POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",160742692-61 -121200276,KM02,12039915,Medical Incident,04/29/2012,04/29/2012,04/29/2012 05:13:45 PM,04/29/2012 05:14:53 PM,04/29/2012 05:15:29 PM,04/29/2012 05:16:16 PM,04/29/2012 05:21:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 05:43:26 PM,2000 Block of VALLEJO ST,SF,94123,B04,38,3442,3,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.7958030542042, -122.431016298283)",121200276-KM02 -160741068,79,16029264,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:49:39 AM,03/14/2016 09:49:39 AM,03/14/2016 09:49:59 AM,03/14/2016 09:50:07 AM,03/14/2016 10:22:36 AM,03/14/2016 10:22:37 AM,03/14/2016 10:35:47 AM,Code 2 Transport,03/14/2016 11:08:20 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7786674439132, -122.411723778126)",160741068-79 -111170333,E41,11038751,Medical Incident,04/27/2011,04/27/2011,04/27/2011 09:10:12 PM,04/27/2011 09:10:40 PM,04/27/2011 09:11:54 PM,04/27/2011 09:12:51 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,04/25/2016 02:04:54 PM,Other,04/27/2011 09:14:55 PM,900 Block of MASON ST,PR,94108,B01,51,4613,3,3,3,false,,1,ENGINE,4,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",111170333-E41 -121320124,B07,12043867,Alarms,05/11/2012,05/11/2012,05/11/2012 09:37:49 AM,05/11/2012 09:38:11 AM,05/11/2012 09:38:25 AM,05/11/2012 09:39:46 AM,05/11/2012 09:44:46 AM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 09:49:04 AM,0 Block of COLE ST,SF,94117,B05,21,4535,3,3,3,false,Alarm,1,CHIEF,2,5,1,Lone Mountain/USF,"(37.7747029048182, -122.4513287335)",121320124-B07 -160041009,56,16001529,Outside Fire,01/04/2016,01/04/2016,01/04/2016 09:29:58 AM,01/04/2016 09:31:11 AM,01/04/2016 09:31:41 AM,01/04/2016 09:32:01 AM,01/04/2016 09:36:45 AM,01/04/2016 09:50:37 AM,01/04/2016 09:59:42 AM,Code 2 Transport,01/04/2016 10:31:04 AM,0 Block of CALIFORNIA ST,San Francisco,94111,B01,13,1134,3,3,3,true,Fire,1,MEDIC,4,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",160041009-56 -160671194,KM13,16026710,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:33:42 AM,03/07/2016 11:33:42 AM,03/07/2016 11:33:42 AM,03/07/2016 11:33:42 AM,03/07/2016 11:33:42 AM,03/07/2016 11:34:35 AM,03/07/2016 11:54:30 AM,Code 2 Transport,03/07/2016 12:32:50 PM,200 Block of MARKET ST,San Francisco,94111,B99,13,2809,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",160671194-KM13 -140120108,82,14004083,Medical Incident,01/12/2014,01/12/2014,01/12/2014 09:45:03 AM,01/12/2014 09:46:31 AM,01/12/2014 09:46:49 AM,01/12/2014 09:47:06 AM,01/12/2014 09:51:52 AM,01/12/2014 10:01:02 AM,01/12/2014 10:41:53 AM,Code 2 Transport,01/12/2014 11:09:25 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",140120108-82 -122710041,B02,12089325,Alarms,09/27/2012,09/26/2012,09/27/2012 05:30:24 AM,09/27/2012 05:32:35 AM,09/27/2012 05:33:21 AM,09/27/2012 05:35:15 AM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,04/25/2016 01:56:35 PM,Fire,09/27/2012 05:38:07 AM,700 Block of OAK ST,SF,94117,B05,21,3632,3,3,3,false,Alarm,1,CHIEF,3,5,5,Hayes Valley,"(37.7738139678266, -122.431635829966)",122710041-B02 -133340055,82,13113137,Medical Incident,11/30/2013,11/29/2013,11/30/2013 05:13:18 AM,11/30/2013 05:13:53 AM,11/30/2013 05:14:17 AM,11/30/2013 05:14:38 AM,11/30/2013 05:22:47 AM,11/30/2013 05:43:54 AM,11/30/2013 06:10:40 AM,Code 2 Transport,11/30/2013 06:27:25 AM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",133340055-82 -112800012,54,11092530,Medical Incident,10/07/2011,10/06/2011,10/07/2011 12:32:12 AM,10/07/2011 12:32:45 AM,10/07/2011 12:33:01 AM,10/07/2011 12:33:14 AM,10/07/2011 12:38:39 AM,10/07/2011 01:14:38 AM,10/07/2011 01:34:50 AM,Code 2 Transport,10/07/2011 01:59:26 AM,900 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",112800012-54 -110420316,E41,11014018,Medical Incident,02/11/2011,02/11/2011,02/11/2011 06:23:33 PM,02/11/2011 06:25:04 PM,02/11/2011 06:25:36 PM,02/11/2011 06:27:10 PM,02/11/2011 06:29:02 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 06:33:35 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",110420316-E41 -111270108,RC3,11041981,Medical Incident,05/07/2011,05/07/2011,05/07/2011 10:26:24 AM,05/07/2011 10:26:46 AM,05/07/2011 10:27:26 AM,04/25/2016 02:04:44 PM,05/07/2011 10:42:25 AM,04/25/2016 02:04:44 PM,04/25/2016 02:04:44 PM,Other,05/07/2011 10:50:28 AM,2600 Block of MISSION ST,SF,94110,B06,7,5472,3,2,2,true,,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7546409372119, -122.418601779487)",111270108-RC3 -111300368,E01,11043120,Alarms,05/10/2011,05/10/2011,05/10/2011 09:56:48 PM,05/10/2011 09:57:58 PM,05/10/2011 09:59:08 PM,05/10/2011 10:00:29 PM,05/10/2011 10:02:34 PM,04/25/2016 02:04:41 PM,04/25/2016 02:04:41 PM,Other,05/10/2011 10:16:16 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",111300368-E01 -120680153,B02,12022546,Alarms,03/08/2012,03/08/2012,03/08/2012 12:26:01 PM,03/08/2012 12:27:07 PM,03/08/2012 12:27:14 PM,03/08/2012 12:27:35 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Other,03/08/2012 12:28:15 PM,400 Block of ASHBURY ST,SF,94117,B05,21,4513,3,3,3,false,Alarm,1,CHIEF,2,5,5,Haight Ashbury,"(37.7713975294669, -122.447285890088)",120680153-B02 -122550345,B03,12084425,Other,09/11/2012,09/11/2012,09/11/2012 07:46:17 PM,09/11/2012 07:50:03 PM,09/11/2012 07:50:16 PM,09/11/2012 07:51:37 PM,09/11/2012 07:54:56 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Other,09/11/2012 08:27:43 PM,300 Block of 20TH ST,SF,94107,B10,25,970,3,3,3,false,Alarm,1,CHIEF,2,3,10,Potrero Hill,"(37.7606927106062, -122.386101233024)",122550345-B03 -120380318,83,12012803,Medical Incident,02/07/2012,02/07/2012,02/07/2012 08:04:33 PM,02/07/2012 08:06:28 PM,02/07/2012 08:07:13 PM,02/07/2012 08:07:22 PM,02/07/2012 08:10:08 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Against Medical Advice,02/07/2012 08:52:34 PM,1200 Block of VAN NESS AVE,SF,94109,B04,3,3161,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7868516471087, -122.421441956086)",120380318-83 -112550277,T03,11084195,Structure Fire,09/12/2011,09/12/2011,09/12/2011 05:30:46 PM,09/12/2011 05:30:47 PM,09/12/2011 05:30:57 PM,09/12/2011 05:32:43 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,04/25/2016 02:02:42 PM,Other,09/12/2011 05:34:08 PM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",112550277-T03 -160691789,84,16027478,Medical Incident,03/09/2016,03/09/2016,03/09/2016 01:05:40 PM,03/09/2016 01:05:40 PM,03/09/2016 01:06:16 PM,03/09/2016 01:07:19 PM,03/09/2016 01:10:41 PM,03/09/2016 01:34:03 PM,03/09/2016 01:56:37 PM,Code 2 Transport,03/09/2016 02:43:11 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",160691789-84 -160453676,55,16018338,Medical Incident,02/14/2016,02/14/2016,02/14/2016 11:54:52 PM,02/14/2016 11:57:34 PM,02/14/2016 11:57:48 PM,02/14/2016 11:58:01 PM,02/15/2016 12:13:40 AM,02/15/2016 12:15:59 AM,02/15/2016 12:26:21 AM,Code 2 Transport,02/15/2016 01:03:13 AM,1500 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",160453676-55 -111360145,T03,11045249,Medical Incident,05/16/2011,05/16/2011,05/16/2011 11:25:43 AM,05/16/2011 11:26:28 AM,05/16/2011 11:26:48 AM,05/16/2011 11:27:19 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 11:33:31 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",111360145-T03 -123370208,E40,12112179,Electrical Hazard,12/02/2012,12/02/2012,12/02/2012 08:06:19 AM,12/02/2012 08:09:20 AM,12/02/2012 08:10:29 AM,04/25/2016 01:55:31 PM,12/02/2012 08:13:47 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 08:18:21 AM,18TH AV/RIVERA ST,SF,94116,B08,40,7375,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7468268198997, -122.474887301003)",123370208-E40 -131040087,E02,13034848,Medical Incident,04/14/2013,04/13/2013,04/14/2013 04:27:46 AM,04/14/2013 04:29:57 AM,04/14/2013 04:31:05 AM,04/14/2013 04:33:27 AM,04/14/2013 04:35:01 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 04:49:13 AM,200 Block of COLUMBUS AVE,SF,94133,B01,2,1311,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7972703210654, -122.405915205762)",131040087-E02 -160531379,87,16021177,Medical Incident,02/22/2016,02/22/2016,02/22/2016 11:47:43 AM,02/22/2016 11:48:13 AM,02/22/2016 11:48:25 AM,02/22/2016 11:48:52 AM,02/22/2016 11:51:39 AM,02/22/2016 12:21:08 PM,02/22/2016 12:40:18 PM,Code 2 Transport,02/22/2016 01:02:57 PM,0 Block of 0TH ST,San Francisco,94103,B02,36,2338,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7763471604576, -122.417159710491)",160531379-87 -160812931,KM05,16032297,Medical Incident,03/21/2016,03/21/2016,03/21/2016 05:42:33 PM,03/21/2016 05:44:20 PM,03/21/2016 05:51:35 PM,03/21/2016 05:55:15 PM,03/21/2016 06:04:30 PM,03/21/2016 06:36:45 PM,03/21/2016 07:04:36 PM,Code 2 Transport,03/21/2016 07:41:46 PM,1000 Block of LAKE ST,San Francisco,94118,B07,31,7137,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7863573634329, -122.470575117759)",160812931-KM05 -140630199,52,14021284,Medical Incident,03/04/2014,03/04/2014,03/04/2014 01:07:30 PM,03/04/2014 01:07:55 PM,03/04/2014 01:08:20 PM,03/04/2014 01:08:46 PM,03/04/2014 01:11:26 PM,03/04/2014 01:46:27 PM,03/04/2014 02:52:49 PM,Code 2 Transport,03/04/2014 03:10:07 PM,400 Block of GENEVA AVE,SF,94112,B09,15,8319,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7210351360755, -122.447136183722)",140630199-52 -140990055,E16,14033331,Citizen Assist / Service Call,04/09/2014,04/08/2014,04/09/2014 05:33:35 AM,04/09/2014 05:34:49 AM,04/09/2014 05:34:56 AM,04/25/2016 01:47:19 PM,04/09/2014 05:39:17 AM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Fire,04/09/2014 05:49:58 AM,BRODERICK ST/FILBERT ST,SAN FRANCISCO,94123,B04,16,4224,3,3,3,true,Alarm,1,ENGINE,1,4,2,Marina,"(37.7969685894227, -122.443949954563)",140990055-E16 -130690184,E01,13023043,Alarms,03/10/2013,03/10/2013,03/10/2013 02:21:47 PM,03/10/2013 02:23:41 PM,03/10/2013 02:23:56 PM,03/10/2013 02:24:54 PM,03/10/2013 02:26:54 PM,04/25/2016 01:53:54 PM,04/25/2016 01:53:54 PM,Fire,03/10/2013 02:46:08 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7764944808779, -122.411359138357)",130690184-E01 -121700375,RS1,12056597,Medical Incident,06/18/2012,06/18/2012,06/18/2012 11:24:33 PM,06/18/2012 11:26:52 PM,06/18/2012 11:27:16 PM,06/18/2012 11:28:41 PM,06/18/2012 11:31:35 PM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/18/2012 11:33:13 PM,JESSIE ST/6TH ST,SF,94103,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7813981325639, -122.409245443953)",121700375-RS1 -160301849,KM02,16011794,Medical Incident,01/30/2016,01/30/2016,01/30/2016 12:48:45 PM,01/30/2016 12:49:38 PM,01/30/2016 12:49:54 PM,01/30/2016 12:50:35 PM,01/30/2016 01:04:40 PM,01/30/2016 01:19:59 PM,01/30/2016 01:37:03 PM,Code 3 Transport,01/30/2016 02:33:07 PM,1100 Block of MASON CT,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8284029538431, -122.377606374892)",160301849-KM02 -160870854,89,16034498,Medical Incident,03/27/2016,03/26/2016,03/27/2016 07:50:46 AM,03/27/2016 07:50:46 AM,03/27/2016 07:50:46 AM,03/27/2016 07:50:46 AM,03/27/2016 07:50:46 AM,03/27/2016 08:13:59 AM,03/27/2016 08:20:22 AM,Code 2 Transport,03/27/2016 08:54:08 AM,MISSION ST/24TH ST,San Francisco,94110,B99,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160870854-89 -133030399,T03,13103110,Alarms,10/30/2013,10/30/2013,10/30/2013 11:36:27 PM,10/30/2013 11:39:09 PM,10/30/2013 11:39:20 PM,10/30/2013 11:41:09 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 11:44:34 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,false,Alarm,1,TRUCK,3,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",133030399-T03 -160741942,KM06,16029352,Medical Incident,03/14/2016,03/14/2016,03/14/2016 01:30:30 PM,03/14/2016 01:30:30 PM,03/14/2016 01:30:54 PM,03/14/2016 01:32:12 PM,03/14/2016 01:51:37 PM,03/14/2016 01:59:09 PM,03/14/2016 02:53:51 PM,Code 2 Transport,03/14/2016 03:34:36 PM,THE EMBARCADERO NOR/WASHINGTON ST,San Francisco,94111,B01,28,901,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7965582462412, -122.396189037335)",160741942-KM06 -123580093,85,12119776,Medical Incident,12/23/2012,12/23/2012,12/23/2012 09:57:32 AM,12/23/2012 09:59:41 AM,12/23/2012 10:00:23 AM,12/23/2012 10:00:36 AM,12/23/2012 10:16:44 AM,12/23/2012 10:40:49 AM,12/23/2012 10:57:29 AM,Code 2 Transport,12/23/2012 11:26:17 AM,1300 Block of 5TH AVE,SF,94122,B08,12,7326,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,5,Inner Sunset,"(37.7632907518666, -122.462034637217)",123580093-85 -160510520,71,16020366,Medical Incident,02/20/2016,02/19/2016,02/20/2016 05:46:43 AM,02/20/2016 05:48:55 AM,02/20/2016 05:49:12 AM,02/20/2016 05:49:26 AM,02/20/2016 05:57:09 AM,02/20/2016 06:17:48 AM,02/20/2016 06:28:58 AM,Code 2 Transport,02/20/2016 07:09:50 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160510520-71 -160120284,AM22,16004629,Medical Incident,01/12/2016,01/11/2016,01/12/2016 03:17:33 AM,01/12/2016 03:19:22 AM,01/12/2016 03:19:36 AM,01/12/2016 03:20:09 AM,01/12/2016 03:25:05 AM,01/12/2016 03:41:28 AM,01/12/2016 04:10:30 AM,Code 2 Transport,01/12/2016 04:19:38 AM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",160120284-AM22 -130860309,89,13028791,Medical Incident,03/27/2013,03/27/2013,03/27/2013 06:54:17 PM,03/27/2013 06:57:27 PM,03/27/2013 06:58:07 PM,03/27/2013 06:59:10 PM,03/27/2013 07:05:22 PM,03/27/2013 07:16:28 PM,03/27/2013 07:29:34 PM,Code 2 Transport,03/27/2013 07:48:46 PM,100 Block of MAXWELL CT,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7669025720969, -122.423141850936)",130860309-89 -122060045,KM07,12068376,Medical Incident,07/24/2012,07/23/2012,07/24/2012 04:57:19 AM,07/24/2012 04:59:10 AM,07/24/2012 04:59:35 AM,07/24/2012 05:01:25 AM,07/24/2012 05:09:23 AM,07/24/2012 05:28:44 AM,07/24/2012 05:45:48 AM,Code 2 Transport,07/24/2012 06:27:49 AM,600 Block of 35TH AVE,SF,94121,B07,34,7251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7767481742655, -122.495173559418)",122060045-KM07 -160821866,93,16032568,Medical Incident,03/22/2016,03/22/2016,03/22/2016 01:12:33 PM,03/22/2016 01:15:18 PM,03/22/2016 01:32:44 PM,03/22/2016 01:32:51 PM,03/22/2016 01:52:44 PM,03/22/2016 02:13:26 PM,03/22/2016 02:24:43 PM,Code 2 Transport,03/22/2016 03:10:16 PM,900 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.787277154617, -122.416825199786)",160821866-93 -130860379,KM15,13028862,Medical Incident,03/27/2013,03/27/2013,03/27/2013 11:49:30 PM,03/27/2013 11:50:09 PM,03/27/2013 11:54:43 PM,03/27/2013 11:55:08 PM,03/28/2013 12:08:29 AM,04/25/2016 01:53:37 PM,04/25/2016 01:53:37 PM,No Merit,03/28/2013 12:18:39 AM,POLK ST/HAYES ST,SF,94102,B02,36,1646,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7775117101895, -122.41804317004)",130860379-KM15 -130520336,E36,13017712,Medical Incident,02/21/2013,02/21/2013,02/21/2013 08:25:01 PM,02/21/2013 08:26:10 PM,02/21/2013 08:26:27 PM,02/21/2013 08:27:41 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,02/21/2013 08:29:22 PM,200 Block of 9TH ST,SF,94103,B02,36,2335,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.774023964837, -122.411841983792)",130520336-E36 -112680325,96,11088709,Medical Incident,09/25/2011,09/25/2011,09/25/2011 07:31:01 PM,09/25/2011 07:31:21 PM,09/25/2011 07:31:36 PM,09/25/2011 07:32:17 PM,09/25/2011 07:36:21 PM,09/25/2011 08:02:03 PM,09/25/2011 08:14:21 PM,Code 2 Transport,09/25/2011 08:47:25 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",112680325-96 -122880058,B03,12095175,Alarms,10/14/2012,10/13/2012,10/14/2012 03:57:51 AM,10/14/2012 03:59:42 AM,10/14/2012 03:59:57 AM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,04/25/2016 01:56:19 PM,Other,10/14/2012 04:01:09 AM,500 Block of 15TH ST,SF,94103,B02,29,2352,3,3,3,false,Alarm,1,CHIEF,2,2,10,Mission,"(37.7672258966731, -122.406197525908)",122880058-B03 -160150555,82,16005866,Medical Incident,01/15/2016,01/14/2016,01/15/2016 06:52:52 AM,01/15/2016 06:53:11 AM,01/15/2016 06:53:21 AM,01/15/2016 06:53:49 AM,01/15/2016 07:05:33 AM,01/15/2016 07:20:13 AM,01/15/2016 07:23:52 AM,Code 2 Transport,01/15/2016 08:20:56 AM,1700 Block of LOMBARD ST,San Francisco,94123,B04,16,3352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8006899587765, -122.430316559527)",160150555-82 -132520022,82,13085044,Medical Incident,09/09/2013,09/08/2013,09/09/2013 01:59:42 AM,09/09/2013 02:01:15 AM,09/09/2013 02:03:01 AM,09/09/2013 02:03:06 AM,09/09/2013 02:11:03 AM,09/09/2013 02:27:33 AM,09/09/2013 02:40:41 AM,Code 2 Transport,09/09/2013 03:17:23 AM,1500 Block of INDIANA ST,SF,94107,B10,25,2635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7507499478953, -122.390567258683)",132520022-82 -130390047,94,13013193,Medical Incident,02/08/2013,02/07/2013,02/08/2013 03:58:21 AM,02/08/2013 04:00:41 AM,02/08/2013 04:00:56 AM,02/08/2013 04:01:40 AM,02/08/2013 04:05:23 AM,02/08/2013 04:23:17 AM,02/08/2013 04:45:46 AM,Code 2 Transport,02/08/2013 05:02:34 AM,3100 Block of RIVERA ST,SF,94116,B08,18,7635,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7456606490039, -122.500057662264)",130390047-94 -131570142,E03,13053195,Medical Incident,06/06/2013,06/06/2013,06/06/2013 10:26:27 AM,06/06/2013 10:27:22 AM,06/06/2013 10:30:41 AM,06/06/2013 10:31:59 AM,06/06/2013 10:34:13 AM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/06/2013 10:41:40 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",131570142-E03 -132050399,E14,13069599,Electrical Hazard,07/24/2013,07/24/2013,07/24/2013 11:36:46 PM,07/24/2013 11:40:13 PM,07/24/2013 11:40:32 PM,07/24/2013 11:42:04 PM,07/24/2013 11:45:06 PM,04/25/2016 01:51:38 PM,04/25/2016 01:51:38 PM,Unable to Locate,07/24/2013 11:49:51 PM,21ST AV/LAKE ST,SF,94121,B07,14,7173,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7859339632576, -122.480860098828)",132050399-E14 -120610062,E06,12019951,Medical Incident,03/01/2012,02/29/2012,03/01/2012 06:37:22 AM,03/01/2012 06:43:35 AM,03/01/2012 06:43:44 AM,03/01/2012 06:45:22 AM,03/01/2012 06:49:00 AM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,Other,03/01/2012 06:50:52 AM,1800 Block of 15TH ST,SF,94103,B02,6,5227,3,1,2,true,Non Life-threatening,1,ENGINE,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",120610062-E06 -121760316,RC1,12058619,Medical Incident,06/24/2012,06/24/2012,06/24/2012 06:17:30 PM,06/24/2012 06:19:12 PM,06/24/2012 06:19:38 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/24/2012 06:27:53 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7815374331217, -122.409518341416)",121760316-RC1 -121110006,E01,12036578,Medical Incident,04/20/2012,04/19/2012,04/20/2012 12:34:19 AM,04/20/2012 12:35:34 AM,04/20/2012 12:35:45 AM,04/20/2012 12:37:52 AM,04/20/2012 12:40:25 AM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 12:50:24 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",121110006-E01 -121660227,55,12055093,Medical Incident,06/14/2012,06/14/2012,06/14/2012 02:26:26 PM,06/14/2012 02:28:21 PM,06/14/2012 02:28:46 PM,06/14/2012 02:29:04 PM,06/14/2012 02:33:09 PM,06/14/2012 02:58:57 PM,06/14/2012 03:11:53 PM,Code 2 Transport,06/14/2012 03:50:42 PM,STEVENSON ST/7TH ST,SF,94103,B02,36,2316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7800058680664, -122.411933410089)",121660227-55 -112050200,KM04,11067753,Structure Fire,07/24/2011,07/24/2011,07/24/2011 02:12:57 PM,07/24/2011 02:14:17 PM,07/24/2011 02:14:48 PM,07/24/2011 02:15:48 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/24/2011 02:16:36 PM,1000 Block of STOCKTON ST,SF,94108,B01,2,1331,3,3,3,false,,1,PRIVATE,11,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",112050200-KM04 -122100346,E23,12069909,Medical Incident,07/28/2012,07/28/2012,07/28/2012 10:28:56 PM,07/28/2012 10:29:15 PM,07/28/2012 10:29:45 PM,07/28/2012 10:31:32 PM,07/28/2012 10:33:46 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 10:39:08 PM,1900 Block of 47TH AVE,SF,94116,B08,23,7715,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7501226485047, -122.506214055721)",122100346-E23 -110720330,E01,11023848,Medical Incident,03/13/2011,03/13/2011,03/13/2011 09:46:03 PM,03/13/2011 09:47:13 PM,03/13/2011 09:47:26 PM,03/13/2011 09:48:33 PM,03/13/2011 10:02:51 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/13/2011 10:06:55 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",110720330-E01 -160530880,89,16021122,Medical Incident,02/22/2016,02/22/2016,02/22/2016 09:15:17 AM,02/22/2016 09:17:23 AM,02/22/2016 09:17:58 AM,02/22/2016 09:19:04 AM,02/22/2016 09:28:46 AM,02/22/2016 09:43:17 AM,02/22/2016 09:55:47 AM,Code 2 Transport,02/22/2016 10:47:28 AM,500 Block of CHURCH ST,San Francisco,94114,B02,6,5421,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Castro/Upper Market,"(37.7624845773087, -122.428538964654)",160530880-89 -111000146,79,11033185,Medical Incident,04/10/2011,04/10/2011,04/10/2011 11:14:57 AM,04/10/2011 11:17:43 AM,04/10/2011 11:17:52 AM,04/10/2011 11:18:17 AM,04/10/2011 11:27:04 AM,04/10/2011 11:40:31 AM,04/10/2011 12:02:12 PM,Code 2 Transport,04/10/2011 12:28:24 PM,0 Block of ALHAMBRA ST,SF,94123,B04,16,3565,1,1,2,true,,1,MEDIC,1,4,2,Marina,"(37.8027914749945, -122.437661901776)",111000146-79 -132790429,E01,13095111,Medical Incident,10/06/2013,10/06/2013,10/06/2013 09:42:10 PM,10/06/2013 09:42:56 PM,10/06/2013 09:43:39 PM,10/06/2013 09:43:45 PM,10/06/2013 09:45:47 PM,04/25/2016 01:50:23 PM,04/25/2016 01:50:23 PM,Other,10/06/2013 09:53:31 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7862985138478, -122.408477809664)",132790429-E01 -121470323,E09,12048924,Medical Incident,05/26/2012,05/26/2012,05/26/2012 10:09:35 PM,05/26/2012 10:10:15 PM,05/26/2012 10:10:41 PM,05/26/2012 10:11:39 PM,05/26/2012 10:13:21 PM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/26/2012 10:28:42 PM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",121470323-E09 -160913340,75,16036228,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:06:00 PM,03/31/2016 08:06:00 PM,03/31/2016 08:06:05 PM,03/31/2016 08:06:13 PM,03/31/2016 08:08:43 PM,03/31/2016 08:27:46 PM,03/31/2016 08:42:49 PM,Code 2 Transport,03/31/2016 09:01:14 PM,1700 Block of HARRISON ST,San Francisco,94103,B02,29,5217,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.769082767924, -122.413353472663)",160913340-75 -160882309,56,16035009,Medical Incident,03/28/2016,03/28/2016,03/28/2016 03:12:49 PM,03/28/2016 03:14:28 PM,03/28/2016 03:14:39 PM,03/28/2016 03:15:39 PM,03/28/2016 03:24:21 PM,03/28/2016 03:35:15 PM,03/28/2016 03:45:10 PM,Code 2 Transport,03/28/2016 04:26:45 PM,1900 Block of 32ND AVE,San Francisco,94116,B08,18,7533,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7508238719258, -122.490273641262)",160882309-56 -160121550,82,16004756,Medical Incident,01/12/2016,01/12/2016,01/12/2016 12:05:09 PM,01/12/2016 12:06:22 PM,01/12/2016 12:06:55 PM,01/12/2016 12:07:43 PM,01/12/2016 12:12:56 PM,01/12/2016 12:30:17 PM,01/12/2016 12:45:02 PM,Code 2 Transport,01/12/2016 01:10:53 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160121550-82 -111480202,65,11049102,Medical Incident,05/28/2011,05/28/2011,05/28/2011 03:44:49 PM,05/28/2011 03:45:17 PM,05/28/2011 03:46:39 PM,05/28/2011 03:46:52 PM,05/28/2011 03:53:04 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Against Medical Advice,05/28/2011 04:35:29 PM,2300 Block of 19TH AVE,SF,94116,B08,40,7416,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7439803947416, -122.475835562635)",111480202-65 -131830141,B04,13062327,Alarms,07/02/2013,07/02/2013,07/02/2013 11:25:03 AM,07/02/2013 11:26:41 AM,07/02/2013 11:27:01 AM,07/02/2013 11:27:50 AM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 11:29:44 AM,200 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.7737235017153, -122.424812687358)",131830141-B04 -160870030,52,16034409,Traffic Collision,03/27/2016,03/26/2016,03/27/2016 12:08:24 AM,03/27/2016 12:08:24 AM,03/27/2016 12:08:45 AM,03/27/2016 12:08:55 AM,03/27/2016 12:13:50 AM,03/27/2016 12:37:57 AM,03/27/2016 12:52:37 AM,Code 2 Transport,03/27/2016 01:45:20 AM,LAGUNA ST/LOMBARD ST,San Francisco,94123,B04,16,3352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Marina,"(37.8004692165623, -122.431115291336)",160870030-52 -130990044,68,13033139,Medical Incident,04/09/2013,04/08/2013,04/09/2013 05:09:43 AM,04/09/2013 05:11:29 AM,04/09/2013 05:12:09 AM,04/09/2013 05:12:18 AM,04/09/2013 05:18:33 AM,04/09/2013 05:47:25 AM,04/09/2013 05:50:16 AM,Code 2 Transport,04/09/2013 06:29:23 AM,400 Block of LEAVENWORTH ST,SF,94109,B04,3,1544,1,1,2,false,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",130990044-68 -132180074,E28,13073529,Alarms,08/06/2013,08/06/2013,08/06/2013 08:15:38 AM,08/06/2013 08:16:46 AM,08/06/2013 08:17:02 AM,08/06/2013 08:18:57 AM,08/06/2013 08:19:55 AM,04/25/2016 01:51:26 PM,04/25/2016 01:51:26 PM,Other,08/06/2013 08:27:45 AM,400 Block of FRANCISCO ST,SF,94133,B01,28,131,3,3,3,false,Alarm,1,ENGINE,1,1,3,North Beach,"(37.8048443206433, -122.412608500536)",132180074-E28 -160361701,82,16014232,Medical Incident,02/05/2016,02/05/2016,02/05/2016 11:55:41 AM,02/05/2016 11:55:41 AM,02/05/2016 11:56:07 AM,02/05/2016 11:56:15 AM,02/05/2016 12:05:36 PM,02/05/2016 12:21:54 PM,02/05/2016 12:35:34 PM,Code 2 Transport,02/05/2016 01:28:14 PM,0 Block of DR CARLTON B GOODLETT PL,San Francisco,94102,B02,36,381,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",160361701-82 -112510406,RS2,11082934,Medical Incident,09/08/2011,09/08/2011,09/08/2011 09:47:26 PM,09/08/2011 09:50:26 PM,09/08/2011 09:50:45 PM,09/08/2011 09:51:37 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 09:51:43 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,false,,1,RESCUE SQUAD,3,6,9,Mission,"(37.7525060662321, -122.414086032423)",112510406-RS2 -132420103,KM01,13081565,Medical Incident,08/30/2013,08/30/2013,08/30/2013 08:48:17 AM,08/30/2013 08:48:36 AM,08/30/2013 08:48:47 AM,08/30/2013 08:49:33 AM,08/30/2013 08:56:19 AM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/30/2013 08:58:09 AM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",132420103-KM01 -131650362,E22,13056195,Gas Leak (Natural and LP Gases),06/14/2013,06/14/2013,06/14/2013 08:51:29 PM,06/14/2013 08:55:52 PM,06/14/2013 08:55:59 PM,06/14/2013 08:57:22 PM,06/14/2013 08:58:32 PM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Other,06/14/2013 09:11:58 PM,1400 Block of 18TH AVE,SF,94122,B08,22,7371,3,3,3,false,Alarm,1,ENGINE,1,8,7,Inner Sunset,"(37.7608162669498, -122.475791240665)",131650362-E22 -140630252,KM12,14021328,Traffic Collision,03/04/2014,03/04/2014,03/04/2014 03:22:58 PM,03/04/2014 03:24:05 PM,03/04/2014 03:24:22 PM,03/04/2014 03:24:51 PM,03/04/2014 03:26:25 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Gone on Arrival,03/04/2014 03:28:37 PM,FOLSOM ST/3RD ST,SF,94107,B03,1,2176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7837849329145, -122.398930333419)",140630252-KM12 -140900252,E05,14030358,Other,03/31/2014,03/31/2014,03/31/2014 04:55:35 PM,03/31/2014 04:56:01 PM,03/31/2014 04:56:24 PM,03/31/2014 04:57:25 PM,03/31/2014 04:58:38 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Other,03/31/2014 05:04:56 PM,1400 Block of WEBSTER ST,SAN FRANCISCO,94115,B04,5,3514,3,3,3,true,Alarm,1,ENGINE,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",140900252-E05 -160920275,75,16036302,Medical Incident,04/01/2016,03/31/2016,04/01/2016 02:56:47 AM,04/01/2016 02:57:41 AM,04/01/2016 02:57:54 AM,04/01/2016 02:58:03 AM,04/01/2016 03:06:44 AM,04/01/2016 03:31:10 AM,04/01/2016 04:04:14 AM,Code 2 Transport,04/01/2016 04:12:59 AM,200 Block of SAGAMORE ST,San Francisco,94112,B09,33,8375,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7114349669499, -122.460534777512)",160920275-75 -102520295,E09,10079718,Medical Incident,09/09/2010,09/09/2010,09/09/2010 07:43:43 PM,09/09/2010 07:45:52 PM,09/09/2010 07:47:38 PM,09/09/2010 07:48:23 PM,09/09/2010 07:53:21 PM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Patient Declined Transport,09/09/2010 08:04:13 PM,100 Block of APOLLO ST,SF,94124,B10,42,6447,1,1,2,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7308870599254, -122.398877821813)",102520295-E09 -160223936,65,16008984,Medical Incident,01/22/2016,01/22/2016,01/22/2016 11:26:04 PM,01/22/2016 11:26:38 PM,01/22/2016 11:27:25 PM,01/22/2016 11:27:43 PM,01/22/2016 11:32:17 PM,01/22/2016 11:48:36 PM,01/22/2016 11:50:13 PM,Code 3 Transport,01/23/2016 12:33:04 AM,600 Block of BUSH ST,San Francisco,94108,B01,2,1361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.790265261758, -122.408389146503)",160223936-65 -133540451,E17,13120494,Medical Incident,12/20/2013,12/20/2013,12/20/2013 11:03:21 PM,12/20/2013 11:04:08 PM,12/20/2013 11:12:32 PM,04/25/2016 01:49:09 PM,12/20/2013 11:13:17 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Other,12/20/2013 11:21:37 PM,3RD ST/THOMAS AV,SF,94124,B10,17,6514,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7308551830157, -122.392072955368)",133540451-E17 -160562254,89,16022424,Medical Incident,02/25/2016,02/25/2016,02/25/2016 02:27:11 PM,02/25/2016 02:29:04 PM,02/25/2016 02:32:03 PM,02/25/2016 02:32:20 PM,02/25/2016 03:02:18 PM,02/25/2016 03:02:24 PM,02/25/2016 03:12:27 PM,Code 2 Transport,02/25/2016 03:53:14 PM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",160562254-89 -102580235,E09,10081529,Medical Incident,09/15/2010,09/15/2010,09/15/2010 02:46:27 PM,09/15/2010 02:47:03 PM,09/15/2010 02:47:17 PM,09/15/2010 02:48:25 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,04/25/2016 02:08:35 PM,Other,09/15/2010 03:09:00 PM,1000 Block of OAKDALE AVE,SF,94124,B10,17,6647,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7288155676841, -122.380327013416)",102580235-E09 -111920306,B08,11063477,Alarms,07/11/2011,07/11/2011,07/11/2011 05:45:38 PM,07/11/2011 05:46:37 PM,07/11/2011 05:47:08 PM,07/11/2011 05:48:22 PM,07/11/2011 05:52:47 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 06:02:09 PM,1500 Block of 34TH AVE,SF,94122,B08,18,7563,3,3,3,false,,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7581876986896, -122.492940498177)",111920306-B08 -122730296,86,12090139,Medical Incident,09/29/2012,09/29/2012,09/29/2012 06:55:05 PM,09/29/2012 06:57:12 PM,09/29/2012 06:57:51 PM,09/29/2012 06:58:01 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Other,09/29/2012 07:02:06 PM,OAK ST/DIVISADERO ST,SF,94117,B05,21,4141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.773133492205, -122.437422938764)",122730296-86 -121060161,55,12035113,Medical Incident,04/15/2012,04/15/2012,04/15/2012 12:24:39 PM,04/15/2012 12:25:22 PM,04/15/2012 12:25:37 PM,04/15/2012 12:25:47 PM,04/15/2012 12:29:25 PM,04/15/2012 12:53:10 PM,04/15/2012 01:26:54 PM,Code 2 Transport,04/15/2012 01:46:38 PM,700 Block of 23RD AVE,SF,94121,B07,14,7177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7735976795866, -122.482185448619)",121060161-55 -122910370,85,12096513,Medical Incident,10/17/2012,10/17/2012,10/17/2012 07:22:39 PM,10/17/2012 07:24:41 PM,10/17/2012 07:24:53 PM,10/17/2012 07:25:05 PM,10/17/2012 07:36:03 PM,10/17/2012 07:54:00 PM,10/17/2012 08:01:18 PM,Code 2 Transport,10/17/2012 08:31:01 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",122910370-85 -111410300,E08,11046963,Structure Fire,05/21/2011,05/21/2011,05/21/2011 07:41:50 PM,05/21/2011 07:41:50 PM,05/21/2011 07:42:18 PM,05/21/2011 07:42:30 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,04/25/2016 02:04:31 PM,Other,05/21/2011 07:45:34 PM,4TH ST/MISSION ST,SF,94103,B03,1,2213,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7844787439707, -122.404266872501)",111410300-E08 -131080014,81,13036170,Medical Incident,04/18/2013,04/17/2013,04/18/2013 01:23:25 AM,04/18/2013 01:25:09 AM,04/18/2013 01:26:47 AM,04/18/2013 01:29:13 AM,04/18/2013 01:36:43 AM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,No Merit,04/18/2013 01:41:16 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131080014-81 -140930274,T14,14031345,Water Rescue,04/03/2014,04/03/2014,04/03/2014 04:36:49 PM,04/03/2014 04:40:05 PM,04/03/2014 04:41:08 PM,04/03/2014 04:42:59 PM,04/03/2014 04:48:07 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,No Merit,04/03/2014 05:26:24 PM,1000 Block of GREAT HWY,,94122,B07,34,7316,3,E,3,false,Fire,1,TRUCK,3,7,1,Golden Gate Park,"(37.7672239448089, -122.510497361288)",140930274-T14 -110560360,E41,11018595,Medical Incident,02/25/2011,02/25/2011,02/25/2011 11:29:47 PM,02/25/2011 11:30:56 PM,02/25/2011 11:31:10 PM,02/25/2011 11:32:00 PM,02/25/2011 11:34:09 PM,04/25/2016 02:05:54 PM,04/25/2016 02:05:54 PM,Other,02/25/2011 11:46:15 PM,900 Block of PINE ST,SF,94108,B01,41,1413,3,3,3,false,,1,ENGINE,1,1,3,Nob Hill,"(37.7906987683995, -122.411621210099)",110560360-E41 -120650085,KM04,12021411,Medical Incident,03/05/2012,03/05/2012,03/05/2012 08:03:34 AM,03/05/2012 08:04:28 AM,03/05/2012 08:06:08 AM,03/05/2012 08:06:48 AM,03/05/2012 08:11:41 AM,03/05/2012 08:21:59 AM,03/05/2012 08:37:03 AM,Code 2 Transport,03/05/2012 09:09:32 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",120650085-KM04 -121630223,E23,12054069,Structure Fire,06/11/2012,06/11/2012,06/11/2012 02:25:55 PM,06/11/2012 02:25:56 PM,06/11/2012 02:26:07 PM,06/11/2012 02:27:05 PM,06/11/2012 02:30:44 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Fire,06/11/2012 02:31:04 PM,GREAT HY/TARAVAL ST,SF,94116,B08,23,7731,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7416730182637, -122.506865451052)",121630223-E23 -103390362,E05,10108677,Medical Incident,12/05/2010,12/05/2010,12/05/2010 10:52:27 PM,12/05/2010 10:53:43 PM,12/05/2010 10:54:25 PM,12/05/2010 10:55:52 PM,12/05/2010 10:58:06 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 11:03:39 PM,2000 Block of SUTTER ST,SF,94115,B04,38,3542,3,3,3,true,,1,ENGINE,2,4,5,Japantown,"(37.7859265850289, -122.434083678259)",103390362-E05 -160230490,AM24,16009038,Medical Incident,01/23/2016,01/22/2016,01/23/2016 03:28:12 AM,01/23/2016 03:30:15 AM,01/23/2016 03:30:49 AM,01/23/2016 03:31:23 AM,01/23/2016 03:36:43 AM,01/23/2016 03:52:19 AM,01/23/2016 04:04:01 AM,Code 2 Transport,01/23/2016 04:50:21 AM,100 Block of SAN BRUNO AVE,San Francisco,94103,B02,29,2352,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7678326335682, -122.405836615175)",160230490-AM24 -160863719,55,16034374,Medical Incident,03/26/2016,03/26/2016,03/26/2016 10:07:13 PM,03/26/2016 10:07:13 PM,03/26/2016 10:07:23 PM,03/26/2016 10:07:40 PM,03/26/2016 10:09:46 PM,03/26/2016 10:18:59 PM,03/26/2016 10:24:00 PM,Code 3 Transport,03/26/2016 11:11:44 PM,3400 Block of 20TH ST,San Francisco,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7586764833002, -122.417413347097)",160863719-55 -111380348,E15,11046024,Medical Incident,05/18/2011,05/18/2011,05/18/2011 08:52:54 PM,05/18/2011 08:53:14 PM,05/18/2011 08:54:02 PM,05/18/2011 08:56:14 PM,05/18/2011 08:57:27 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 10:03:15 PM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",111380348-E15 -133460288,75,13117475,Medical Incident,12/12/2013,12/12/2013,12/12/2013 04:42:03 PM,12/12/2013 04:43:27 PM,12/12/2013 04:43:52 PM,12/12/2013 04:44:12 PM,12/12/2013 04:51:57 PM,12/12/2013 05:02:39 PM,12/12/2013 05:28:05 PM,Code 2 Transport,12/12/2013 05:58:49 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",133460288-75 -110120287,65,11004066,Medical Incident,01/12/2011,01/12/2011,01/12/2011 05:41:19 PM,01/12/2011 05:41:58 PM,01/12/2011 05:45:08 PM,01/12/2011 05:46:29 PM,01/12/2011 06:04:58 PM,01/12/2011 06:12:23 PM,01/12/2011 06:21:43 PM,Code 2 Transport,01/12/2011 06:45:42 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110120287-65 -160751722,KM09,16029714,Medical Incident,03/15/2016,03/15/2016,03/15/2016 12:46:12 PM,03/15/2016 12:47:49 PM,03/15/2016 12:48:47 PM,03/15/2016 12:49:48 PM,03/15/2016 01:00:59 PM,03/15/2016 01:19:06 PM,03/15/2016 01:39:57 PM,Code 2 Transport,03/15/2016 02:50:53 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160751722-KM09 -160421507,KM13,16016840,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:40:45 AM,02/11/2016 11:43:07 AM,02/11/2016 11:43:17 AM,02/11/2016 11:43:47 AM,02/11/2016 11:51:51 AM,02/11/2016 12:07:02 PM,02/11/2016 12:25:17 PM,Code 2 Transport,02/11/2016 01:14:38 PM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7530339738059, -122.418588598473)",160421507-KM13 -121890247,B08,12063020,Alarms,07/07/2012,07/07/2012,07/07/2012 04:20:06 PM,07/07/2012 04:21:34 PM,07/07/2012 04:22:17 PM,04/25/2016 01:57:49 PM,07/07/2012 04:26:58 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/07/2012 04:33:44 PM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",121890247-B08 -132210050,E05,13074528,Other,08/09/2013,08/09/2013,08/09/2013 08:03:55 AM,08/09/2013 08:04:34 AM,08/09/2013 08:15:32 AM,04/25/2016 01:51:23 PM,08/09/2013 08:15:37 AM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 08:18:14 AM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,true,Alarm,1,ENGINE,2,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",132210050-E05 -130060245,RC2,13002123,Medical Incident,01/06/2013,01/06/2013,01/06/2013 05:28:42 PM,01/06/2013 05:30:09 PM,01/06/2013 05:31:45 PM,04/25/2016 01:54:56 PM,01/06/2013 05:33:31 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 05:43:40 PM,800 Block of BALBOA ST,SF,94118,B07,31,7134,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Inner Richmond,"(37.7770086004375, -122.467752533055)",130060245-RC2 -132530202,AM24,13085495,Medical Incident,09/10/2013,09/10/2013,09/10/2013 01:06:22 PM,09/10/2013 01:08:04 PM,09/10/2013 01:08:50 PM,09/10/2013 01:09:34 PM,09/10/2013 01:18:37 PM,09/10/2013 01:33:34 PM,09/10/2013 01:51:07 PM,Code 2 Transport,09/10/2013 02:25:20 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132530202-AM24 -160780273,61,16030872,Medical Incident,03/18/2016,03/17/2016,03/18/2016 02:18:24 AM,03/18/2016 02:20:07 AM,03/18/2016 02:20:52 AM,03/18/2016 02:21:23 AM,03/18/2016 02:24:29 AM,03/18/2016 02:27:48 AM,03/18/2016 02:42:57 AM,Code 2 Transport,03/18/2016 03:18:52 AM,FOLSOM ST/3RD ST,San Francisco,94107,B03,1,2176,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7837849329145, -122.398930333419)",160780273-61 -130300130,57,13010180,Medical Incident,01/30/2013,01/30/2013,01/30/2013 10:09:43 AM,01/30/2013 10:11:18 AM,01/30/2013 10:11:30 AM,01/30/2013 10:13:23 AM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/30/2013 10:14:00 AM,900 Block of EDINBURGH ST,SF,94112,B09,43,6174,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Excelsior,"(37.7151071445609, -122.436533359195)",130300130-57 -160523130,KM03,16020962,Medical Incident,02/21/2016,02/21/2016,02/21/2016 08:12:54 PM,02/21/2016 08:13:51 PM,02/21/2016 08:14:08 PM,02/21/2016 08:15:22 PM,02/21/2016 08:19:59 PM,02/21/2016 08:40:18 PM,02/21/2016 08:47:55 PM,Code 2 Transport,02/21/2016 09:14:06 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160523130-KM03 -123150150,E01,12104804,Structure Fire,11/10/2012,11/10/2012,11/10/2012 11:43:03 AM,11/10/2012 11:43:03 AM,11/10/2012 11:43:27 AM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/10/2012 11:48:21 AM,3RD ST/MISSION ST,SF,94103,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",123150150-E01 -123420020,E43,12114000,Structure Fire,12/07/2012,12/06/2012,12/07/2012 01:50:30 AM,12/07/2012 01:50:30 AM,12/07/2012 01:50:39 AM,12/07/2012 01:52:06 AM,12/07/2012 01:55:59 AM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 01:56:45 AM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,3,3,3,false,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",123420020-E43 -160113665,61,16004587,Medical Incident,01/11/2016,01/11/2016,01/11/2016 11:05:09 PM,01/11/2016 11:05:22 PM,01/11/2016 11:05:46 PM,01/11/2016 11:05:53 PM,01/11/2016 11:11:23 PM,01/11/2016 11:22:56 PM,01/11/2016 11:31:32 PM,Code 2 Transport,01/12/2016 12:06:33 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160113665-61 -132220375,KM15,13075127,Medical Incident,08/10/2013,08/10/2013,08/10/2013 09:55:07 PM,08/10/2013 09:55:43 PM,08/10/2013 09:56:21 PM,08/10/2013 09:57:03 PM,08/10/2013 10:06:36 PM,08/10/2013 10:20:15 PM,08/10/2013 10:45:30 PM,Code 2 Transport,08/10/2013 10:58:30 PM,1300 Block of THE EMBARCADERO,SF,94111,B01,28,929,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8060708761545, -122.404376747731)",132220375-KM15 -110400290,95,11013322,Traffic Collision,02/09/2011,02/09/2011,02/09/2011 04:57:39 PM,02/09/2011 04:58:08 PM,02/09/2011 04:58:31 PM,02/09/2011 04:58:58 PM,02/09/2011 05:02:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,02/09/2011 05:04:34 PM,MCALLISTER ST/VAN NESS AV,SF,94102,B02,36,3164,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.780074696823, -122.420247184793)",110400290-95 -160531902,53,16021231,Medical Incident,02/22/2016,02/22/2016,02/22/2016 02:17:27 PM,02/22/2016 02:18:28 PM,02/22/2016 02:18:58 PM,02/22/2016 02:19:07 PM,02/22/2016 02:24:03 PM,02/22/2016 02:38:44 PM,02/22/2016 02:54:39 PM,Code 2 Transport,02/22/2016 03:33:58 PM,2200 Block of 19TH AVE,San Francisco,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",160531902-53 -111740009,B04,11057251,Structure Fire,06/23/2011,06/22/2011,06/23/2011 12:25:12 AM,06/23/2011 12:25:12 AM,06/23/2011 12:25:46 AM,06/23/2011 12:28:46 AM,06/23/2011 12:29:28 AM,04/25/2016 02:04:01 PM,04/25/2016 02:04:01 PM,Other,06/23/2011 12:29:42 AM,HYDE ST/PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,CHIEF,2,4,3,Nob Hill,"(37.7900451404237, -122.417204800959)",111740009-B04 -121050075,E36,12034678,Structure Fire,04/14/2012,04/13/2012,04/14/2012 05:28:15 AM,04/14/2012 05:28:15 AM,04/14/2012 05:28:22 AM,04/14/2012 05:31:39 AM,04/14/2012 05:31:58 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 05:32:03 AM,LAGUNA ST/HAYES ST,SF,94102,B02,36,3413,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7764643062528, -122.426263344902)",121050075-E36 -160713521,AM18,16028401,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:57:39 PM,03/11/2016 09:59:42 PM,03/11/2016 10:00:37 PM,03/11/2016 10:01:06 PM,03/11/2016 10:15:40 PM,03/11/2016 10:37:42 PM,03/11/2016 10:44:47 PM,Code 2 Transport,03/11/2016 11:12:14 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160713521-AM18 -121130232,RS1,12037559,Medical Incident,04/22/2012,04/22/2012,04/22/2012 04:35:55 PM,04/22/2012 04:37:04 PM,04/22/2012 04:37:36 PM,04/22/2012 04:38:48 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,04/25/2016 01:59:03 PM,Other,04/22/2012 04:40:12 PM,1100 Block of MARKET ST,SF,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,6,Tenderloin,"(37.7807642254398, -122.412320907436)",121130232-RS1 -123110347,99,12103619,Medical Incident,11/06/2012,11/06/2012,11/06/2012 07:25:05 PM,11/06/2012 07:27:56 PM,11/06/2012 07:31:47 PM,11/06/2012 07:32:15 PM,11/06/2012 07:41:01 PM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/06/2012 08:01:24 PM,3300 Block of MISSION ST,SF,94110,B06,32,5625,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7423115712902, -122.422087802012)",123110347-99 -120340350,T03,12011406,Structure Fire,02/03/2012,02/03/2012,02/03/2012 08:42:53 PM,02/03/2012 08:42:53 PM,02/03/2012 08:43:10 PM,02/03/2012 08:44:17 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,04/25/2016 02:00:18 PM,Other,02/03/2012 08:44:56 PM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",120340350-T03 -112670322,T02,11088346,Elevator / Escalator Rescue,09/24/2011,09/24/2011,09/24/2011 07:23:10 PM,09/24/2011 07:24:05 PM,09/24/2011 07:24:17 PM,09/24/2011 07:25:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Other,09/24/2011 07:26:36 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,,1,TRUCK,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",112670322-T02 -110150081,93,11004911,Medical Incident,01/15/2011,01/14/2011,01/15/2011 06:28:57 AM,01/15/2011 06:32:16 AM,01/15/2011 06:34:55 AM,01/15/2011 06:35:49 AM,01/15/2011 06:42:49 AM,01/15/2011 06:54:57 AM,01/15/2011 06:56:17 AM,Code 2 Transport,01/15/2011 07:07:02 AM,1100 Block of BUSH ST,SF,94109,B01,41,1542,2,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7892692454633, -122.416205378022)",110150081-93 -131240036,85,13041692,Medical Incident,05/04/2013,05/03/2013,05/04/2013 02:08:45 AM,05/04/2013 02:09:52 AM,05/04/2013 02:10:37 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/04/2013 02:11:18 AM,RINGOLD ST/9TH ST,SF,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7733326250439, -122.411071361858)",131240036-85 -112540229,55,11083865,Medical Incident,09/11/2011,09/11/2011,09/11/2011 04:37:38 PM,09/11/2011 04:38:23 PM,09/11/2011 04:38:40 PM,09/11/2011 04:38:56 PM,09/11/2011 04:42:55 PM,04/25/2016 02:02:43 PM,04/25/2016 02:02:43 PM,Patient Declined Transport,09/11/2011 05:17:02 PM,2900 Block of SAN BRUNO AVE,SF,94134,B10,44,6326,E,E,3,true,,1,MEDIC,2,10,9,Portola,"(37.7246523794049, -122.402288649686)",112540229-55 -112260256,78,11074736,Medical Incident,08/14/2011,08/14/2011,08/14/2011 05:22:45 PM,08/14/2011 05:23:00 PM,08/14/2011 05:23:11 PM,08/14/2011 05:23:56 PM,08/14/2011 05:30:40 PM,08/14/2011 05:51:01 PM,08/14/2011 06:11:31 PM,Code 2 Transport,08/14/2011 06:37:38 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",112260256-78 -132380258,E32,13080352,Medical Incident,08/26/2013,08/26/2013,08/26/2013 03:58:40 PM,08/26/2013 04:01:04 PM,08/26/2013 04:01:20 PM,08/26/2013 04:01:36 PM,08/26/2013 04:06:28 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 04:16:17 PM,200 Block of SILVER AVE,SF,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7294754378112, -122.432892177428)",132380258-E32 -160374047,70,16014970,Traffic Collision,02/06/2016,02/06/2016,02/06/2016 10:33:32 PM,02/06/2016 10:33:32 PM,02/06/2016 10:34:04 PM,02/06/2016 10:34:20 PM,02/06/2016 10:39:34 PM,02/06/2016 10:57:05 PM,02/06/2016 11:11:58 PM,Code 2 Transport,02/06/2016 11:41:02 PM,7TH ST/MISSION ST,San Francisco,94103,B02,1,2315,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7792116845421, -122.4109365738)",160374047-70 -160313471,91,16012346,Medical Incident,01/31/2016,01/31/2016,01/31/2016 09:05:29 PM,01/31/2016 09:05:29 PM,01/31/2016 09:05:45 PM,01/31/2016 09:06:13 PM,01/31/2016 09:09:44 PM,01/31/2016 09:34:36 PM,01/31/2016 09:44:13 PM,Code 2 Transport,01/31/2016 10:19:26 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,2309,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160313471-91 -132080029,85,13070279,Traffic Collision,07/27/2013,07/26/2013,07/27/2013 01:23:45 AM,07/27/2013 01:24:21 AM,07/27/2013 01:24:41 AM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Other,07/27/2013 01:26:10 AM,6TH ST/FOLSOM ST,SF,94107,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,9,3,6,South of Market,"(37.7785051047871, -122.405615267864)",132080029-85 -160813211,68,16032319,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:52:14 PM,03/21/2016 06:53:09 PM,03/21/2016 06:53:20 PM,03/21/2016 06:53:26 PM,03/21/2016 07:09:40 PM,03/21/2016 07:26:53 PM,03/21/2016 08:02:17 PM,Code 2 Transport,03/21/2016 08:26:31 PM,1100 Block of MARKET ST,San Francisco,94103,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160813211-68 -160641410,67,16025465,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:52:07 AM,03/04/2016 10:53:24 AM,03/04/2016 10:55:38 AM,03/04/2016 10:56:22 AM,03/04/2016 11:01:08 AM,03/04/2016 12:07:16 PM,03/04/2016 12:30:28 PM,Code 2 Transport,03/04/2016 01:08:30 PM,500 Block of BRIGHT ST,San Francisco,94132,B09,33,8433,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7207874848111, -122.463640249627)",160641410-67 -160590206,AM20,16023351,Medical Incident,02/28/2016,02/27/2016,02/28/2016 01:17:56 AM,02/28/2016 01:19:43 AM,02/28/2016 01:19:59 AM,02/28/2016 01:20:35 AM,02/28/2016 01:25:09 AM,02/28/2016 01:45:50 AM,02/28/2016 01:55:30 AM,Code 2 Transport,02/28/2016 02:09:34 AM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",160590206-AM20 -112450321,E07,11080877,Medical Incident,09/02/2011,09/02/2011,09/02/2011 06:56:37 PM,09/02/2011 06:57:09 PM,09/02/2011 06:57:25 PM,09/02/2011 06:58:25 PM,09/02/2011 07:00:14 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 07:07:22 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",112450321-E07 -120520229,57,12017214,Medical Incident,02/21/2012,02/21/2012,02/21/2012 02:58:45 PM,02/21/2012 02:59:13 PM,02/21/2012 02:59:57 PM,02/21/2012 03:01:54 PM,02/21/2012 03:06:11 PM,02/21/2012 03:15:29 PM,02/21/2012 03:35:50 PM,Code 2 Transport,02/21/2012 04:00:21 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",120520229-57 -160501790,67,16020098,Medical Incident,02/19/2016,02/19/2016,02/19/2016 01:22:42 PM,02/19/2016 01:23:07 PM,02/19/2016 01:24:05 PM,02/19/2016 01:24:10 PM,02/19/2016 01:29:55 PM,02/19/2016 01:45:36 PM,02/19/2016 02:03:58 PM,Code 2 Transport,02/19/2016 02:43:10 PM,6TH AV/CLEMENT ST,San Francisco,94118,B07,31,7125,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7829399330612, -122.464425023808)",160501790-67 -140650401,68,14022145,Medical Incident,03/06/2014,03/06/2014,03/06/2014 11:05:12 PM,03/06/2014 11:05:56 PM,03/06/2014 11:07:18 PM,03/06/2014 11:07:34 PM,03/06/2014 11:12:18 PM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Patient Declined Transport,03/06/2014 11:26:06 PM,100 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",140650401-68 -140530265,B01,14018019,Outside Fire,02/22/2014,02/22/2014,02/22/2014 05:22:21 PM,02/22/2014 05:22:21 PM,02/22/2014 05:24:22 PM,02/22/2014 05:25:55 PM,04/25/2016 01:48:04 PM,04/25/2016 01:48:04 PM,04/25/2016 01:48:04 PM,Fire,02/22/2014 05:29:51 PM,900 Block of THE EMBARCADERO,SF,94111,B01,13,923,3,3,3,false,Alarm,1,CHIEF,5,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",140530265-B01 -123010085,E03,12099711,Alarms,10/27/2012,10/26/2012,10/27/2012 06:33:54 AM,10/27/2012 06:35:17 AM,10/27/2012 06:35:43 AM,10/27/2012 06:37:16 AM,10/27/2012 06:38:32 AM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 06:44:41 AM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",123010085-E03 -103200331,RC3,10102682,Medical Incident,11/16/2010,11/16/2010,11/16/2010 06:49:33 PM,11/16/2010 06:51:20 PM,11/16/2010 06:55:40 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 07:06:28 PM,LARKIN ST/GEARY ST,SF,94109,B04,3,1556,1,3,3,true,,1,RESCUE CAPTAIN,3,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",103200331-RC3 -160392385,KM05,16015692,Medical Incident,02/08/2016,02/08/2016,02/08/2016 03:51:01 PM,02/08/2016 03:51:44 PM,02/08/2016 03:52:06 PM,02/08/2016 03:52:57 PM,02/08/2016 03:58:29 PM,02/08/2016 04:16:19 PM,02/08/2016 04:36:25 PM,Code 2 Transport,02/08/2016 05:25:53 PM,800 Block of MADRID ST,San Francisco,94112,B09,43,6174,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7164521904203, -122.436629330563)",160392385-KM05 -103450405,E44,10110777,Medical Incident,12/11/2010,12/11/2010,12/11/2010 10:44:04 PM,12/11/2010 10:45:04 PM,12/11/2010 10:45:18 PM,12/11/2010 10:46:36 PM,12/11/2010 10:49:57 PM,12/11/2010 11:20:46 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 11:29:11 PM,0 Block of GOULD ST,SF,94124,B10,44,6323,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7220246314295, -122.398063263582)",103450405-E44 -122130311,67,12070805,Medical Incident,07/31/2012,07/31/2012,07/31/2012 06:38:53 PM,07/31/2012 06:42:09 PM,07/31/2012 06:42:32 PM,07/31/2012 06:43:21 PM,04/25/2016 01:57:27 PM,07/31/2012 07:15:33 PM,07/31/2012 07:23:20 PM,Code 2 Transport,07/31/2012 07:45:27 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",122130311-67 -133450277,54,13117068,Medical Incident,12/11/2013,12/11/2013,12/11/2013 02:51:44 PM,12/11/2013 02:53:21 PM,12/11/2013 02:53:34 PM,12/11/2013 02:55:20 PM,12/11/2013 03:24:55 PM,12/11/2013 03:25:39 PM,12/11/2013 03:47:00 PM,Code 2 Transport,12/11/2013 04:13:38 PM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7483773808375, -122.412579951922)",133450277-54 -131130362,RS2,13038256,Structure Fire,04/23/2013,04/23/2013,04/23/2013 09:25:13 PM,04/23/2013 09:25:42 PM,04/23/2013 09:25:50 PM,04/23/2013 09:27:27 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 09:30:10 PM,600 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,false,Alarm,1,RESCUE SQUAD,9,6,9,Bernal Heights,"(37.7389128649709, -122.4155498834)",131130362-RS2 -160420460,79,16016744,Medical Incident,02/11/2016,02/10/2016,02/11/2016 06:22:11 AM,02/11/2016 06:22:49 AM,02/11/2016 06:23:22 AM,02/11/2016 06:23:31 AM,02/11/2016 06:29:09 AM,02/11/2016 06:41:26 AM,02/11/2016 06:50:12 AM,Code 2 Transport,02/11/2016 07:04:27 AM,1200 Block of 22ND AVE,San Francisco,94122,B08,22,7425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7643662403902, -122.480333890078)",160420460-79 -102820407,T07,10089882,Other,10/09/2010,10/09/2010,10/09/2010 10:09:30 PM,10/09/2010 10:10:33 PM,10/09/2010 10:11:17 PM,10/09/2010 10:12:43 PM,10/09/2010 10:15:20 PM,04/25/2016 02:08:11 PM,04/25/2016 02:08:11 PM,Other,10/09/2010 10:22:15 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,TRUCK,1,2,8,Mission,"(37.7621357066004, -122.421689426887)",102820407-T07 -133080231,E35,13104749,Medical Incident,11/04/2013,11/04/2013,11/04/2013 02:22:58 PM,11/04/2013 02:27:06 PM,11/04/2013 02:27:17 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/04/2013 02:29:27 PM,100 Block of MONTGOMERY ST,SF,94104,B01,13,1235,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Financial District/South Beach,"(37.7904950228094, -122.402353336974)",133080231-E35 -123220282,T03,12107132,Structure Fire,11/17/2012,11/17/2012,11/17/2012 04:44:33 PM,11/17/2012 04:44:33 PM,11/17/2012 04:44:49 PM,11/17/2012 04:46:21 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 04:46:43 PM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,1,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",123220282-T03 -160230366,75,16009028,Medical Incident,01/23/2016,01/22/2016,01/23/2016 02:22:37 AM,01/23/2016 02:24:53 AM,01/23/2016 02:25:28 AM,01/23/2016 02:25:39 AM,01/23/2016 02:32:24 AM,01/23/2016 03:01:01 AM,01/23/2016 03:26:48 AM,Code 2 Transport,01/23/2016 04:27:25 AM,500 Block of DELANCEY ST,San Francisco,94107,B03,8,2134,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7846117680538, -122.391012478783)",160230366-75 -102630298,T13,10083306,Structure Fire,09/20/2010,09/20/2010,09/20/2010 06:00:16 PM,09/20/2010 06:02:07 PM,09/20/2010 06:02:34 PM,09/20/2010 06:03:30 PM,09/20/2010 06:07:07 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 06:13:03 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,false,,1,TRUCK,4,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",102630298-T13 -130390124,T15,13013252,Medical Incident,02/08/2013,02/08/2013,02/08/2013 09:58:49 AM,02/08/2013 09:59:09 AM,02/08/2013 09:59:32 AM,02/08/2013 10:00:20 AM,02/08/2013 10:03:25 AM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Other,02/08/2013 10:16:42 AM,1200 Block of PLYMOUTH AVE,SF,94112,B09,15,8474,E,E,3,false,Potentially Life-Threatening,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7246916380621, -122.456361161182)",130390124-T15 -111990301,KM04,11065742,Medical Incident,07/18/2011,07/18/2011,07/18/2011 07:27:31 PM,07/18/2011 07:28:51 PM,07/18/2011 07:29:14 PM,07/18/2011 07:29:52 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,No Merit,07/18/2011 07:34:59 PM,COLE ST/HAIGHT ST,SF,94117,B05,12,4545,3,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",111990301-KM04 -160652271,66,16025984,Medical Incident,03/05/2016,03/05/2016,03/05/2016 04:04:19 PM,03/05/2016 04:05:53 PM,03/05/2016 04:06:16 PM,03/05/2016 04:06:36 PM,03/05/2016 04:19:54 PM,03/05/2016 04:40:20 PM,03/05/2016 04:55:33 PM,Code 2 Transport,03/05/2016 05:32:58 PM,800 Block of BRODERICK ST,San Francisco,94115,B05,21,4242,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",160652271-66 -111840159,E01,11060757,Structure Fire,07/03/2011,07/03/2011,07/03/2011 12:03:28 PM,07/03/2011 12:05:45 PM,07/03/2011 12:06:21 PM,07/03/2011 12:07:54 PM,07/03/2011 12:10:30 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 12:19:06 PM,300 Block of CHANNEL ST,SF,94107,B03,8,960,3,3,3,true,,1,ENGINE,4,3,10,Mission Bay,"(37.7690011760023, -122.399858835933)",111840159-E01 -121530072,T05,12050554,Citizen Assist / Service Call,06/01/2012,06/01/2012,06/01/2012 08:12:06 AM,06/01/2012 08:13:10 AM,06/01/2012 08:13:27 AM,06/01/2012 08:14:57 AM,06/01/2012 08:17:44 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Fire,06/01/2012 08:24:14 AM,EDDY ST/GOUGH ST,SF,94109,B02,5,3262,3,3,3,false,Alarm,1,TRUCK,1,2,5,Western Addition,"(37.7824770505897, -122.424108201912)",121530072-T05 -131690309,E02,13057476,Structure Fire,06/18/2013,06/18/2013,06/18/2013 05:14:54 PM,06/18/2013 05:14:54 PM,06/18/2013 05:18:24 PM,06/18/2013 05:18:41 PM,06/18/2013 05:23:24 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 06:42:28 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Fire,2,ENGINE,7,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",131690309-E02 -122620308,B08,12086629,Structure Fire,09/18/2012,09/18/2012,09/18/2012 07:16:24 PM,09/18/2012 07:18:10 PM,09/18/2012 07:18:30 PM,09/18/2012 07:19:26 PM,09/18/2012 07:23:49 PM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 07:45:43 PM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,3,3,false,Fire,1,CHIEF,3,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",122620308-B08 -121270108,66,12042205,Medical Incident,05/06/2012,05/06/2012,05/06/2012 09:23:15 AM,05/06/2012 09:23:47 AM,05/06/2012 09:23:56 AM,05/06/2012 09:24:08 AM,05/06/2012 09:29:28 AM,05/06/2012 09:37:52 AM,05/06/2012 09:44:34 AM,Code 2 Transport,05/06/2012 10:01:32 AM,3800 Block of FOLSOM ST,SF,94110,B06,32,5726,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7386445603595, -122.413268253803)",121270108-66 -110210008,89,11006809,Medical Incident,01/21/2011,01/20/2011,01/21/2011 12:47:33 AM,01/21/2011 12:49:48 AM,01/21/2011 12:50:07 AM,01/21/2011 12:50:15 AM,01/21/2011 12:55:00 AM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,No Merit,01/21/2011 01:00:18 AM,400 Block of HAIGHT ST,SF,94117,B02,6,3524,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7721578195455, -122.429607063416)",110210008-89 -160493149,77,16019838,Traffic Collision,02/18/2016,02/18/2016,02/18/2016 06:38:03 PM,02/18/2016 06:39:03 PM,02/18/2016 06:39:14 PM,02/18/2016 06:40:37 PM,02/18/2016 06:44:30 PM,02/18/2016 07:08:09 PM,02/18/2016 07:12:21 PM,Code 2 Transport,02/18/2016 07:38:59 PM,HOWARD ST/5TH ST,San Francisco,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7814995076073, -122.404933347868)",160493149-77 -102450046,T19,10077219,Alarms,09/02/2010,09/01/2010,09/02/2010 02:55:23 AM,09/02/2010 02:56:55 AM,09/02/2010 02:57:31 AM,09/02/2010 03:00:54 AM,09/02/2010 03:03:20 AM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Other,09/02/2010 03:14:05 AM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,,1,TRUCK,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",102450046-T19 -160672039,59,16026801,Medical Incident,03/07/2016,03/07/2016,03/07/2016 03:21:05 PM,03/07/2016 03:21:29 PM,03/07/2016 03:21:51 PM,03/07/2016 03:22:00 PM,03/07/2016 03:27:25 PM,03/07/2016 03:32:59 PM,03/07/2016 03:56:12 PM,Code 2 Transport,03/07/2016 04:38:34 PM,1100 Block of HAMPSHIRE ST,San Francisco,94110,B06,9,5531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Mission,"(37.7537107532788, -122.407300903266)",160672039-59 -131040001,E38,13034767,Citizen Assist / Service Call,04/14/2013,04/13/2013,04/14/2013 12:01:12 AM,04/14/2013 12:02:38 AM,04/14/2013 12:02:58 AM,04/25/2016 01:53:19 PM,04/14/2013 12:05:06 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 12:18:25 AM,2300 Block of WEBSTER ST,SF,94115,B04,38,3465,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7922310760136, -122.432896903267)",131040001-E38 -140320191,AM06,14010844,Medical Incident,02/01/2014,02/01/2014,02/01/2014 01:38:52 PM,02/01/2014 01:39:38 PM,02/01/2014 01:40:00 PM,02/01/2014 01:40:44 PM,02/01/2014 01:47:50 PM,02/01/2014 01:53:56 PM,02/01/2014 02:38:04 PM,Code 2 Transport,02/01/2014 03:10:57 PM,200 Block of HAMILTON ST,SF,94134,B10,42,6342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7279029896841, -122.410205044034)",140320191-AM06 -112560355,E14,11084575,Medical Incident,09/13/2011,09/13/2011,09/13/2011 10:08:16 PM,09/13/2011 10:09:35 PM,09/13/2011 10:09:49 PM,09/13/2011 10:11:27 PM,09/13/2011 10:12:55 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/13/2011 10:28:10 PM,2300 Block of CLEMENT ST,SF,94121,B07,14,7175,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7821058946206, -122.48434315117)",112560355-E14 -131680234,E03,13057089,Medical Incident,06/17/2013,06/17/2013,06/17/2013 04:24:46 PM,06/17/2013 04:25:11 PM,06/17/2013 04:25:39 PM,06/17/2013 04:27:40 PM,06/17/2013 04:31:44 PM,04/25/2016 01:52:14 PM,04/25/2016 01:52:14 PM,No Merit,06/17/2013 04:35:55 PM,LEAVENWORTH ST/MCALLISTER ST,SF,94102,B02,3,1553,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7809268544143, -122.413676362909)",131680234-E03 -110370104,96,11012137,Medical Incident,02/06/2011,02/05/2011,02/06/2011 07:59:00 AM,02/06/2011 07:59:45 AM,02/06/2011 07:59:54 AM,02/06/2011 08:00:01 AM,02/06/2011 08:01:58 AM,02/06/2011 08:17:20 AM,02/06/2011 08:23:32 AM,Code 2 Transport,02/06/2011 08:35:16 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",110370104-96 -133510371,RS1,13119345,Structure Fire,12/17/2013,12/17/2013,12/17/2013 07:08:31 PM,12/17/2013 07:09:58 PM,12/17/2013 07:10:05 PM,12/17/2013 07:11:06 PM,12/17/2013 07:14:28 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/17/2013 07:17:53 PM,400 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,false,Alarm,1,RESCUE SQUAD,4,3,6,Financial District/South Beach,"(37.7858304240068, -122.392540509434)",133510371-RS1 -113490017,E17,11115674,Outside Fire,12/15/2011,12/14/2011,12/15/2011 01:58:58 AM,12/15/2011 02:01:54 AM,12/15/2011 02:02:56 AM,12/15/2011 02:05:35 AM,12/15/2011 02:06:58 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/15/2011 02:10:15 AM,SHAFTER AV/GRIFFITH ST,SF,94124,B10,17,6647,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.725736373629, -122.38137737673)",113490017-E17 -131840291,88,13062783,Medical Incident,07/03/2013,07/03/2013,07/03/2013 05:15:06 PM,07/03/2013 05:16:13 PM,07/03/2013 05:18:04 PM,07/03/2013 05:18:14 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/03/2013 05:24:01 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Non Life-threatening,1,MEDIC,3,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",131840291-88 -110120338,E15,11004114,Medical Incident,01/12/2011,01/12/2011,01/12/2011 07:47:00 PM,01/12/2011 07:48:58 PM,01/12/2011 07:50:02 PM,01/12/2011 07:51:20 PM,01/12/2011 07:54:39 PM,04/25/2016 02:06:37 PM,04/25/2016 02:06:37 PM,Other,01/12/2011 07:59:13 PM,600 Block of EDINBURGH ST,SF,94112,B09,43,6137,3,3,3,true,,1,ENGINE,2,9,11,Excelsior,"(37.7189310862658, -122.433829193551)",110120338-E15 -133620223,93,13123030,Medical Incident,12/28/2013,12/28/2013,12/28/2013 03:10:06 PM,12/28/2013 03:12:46 PM,12/28/2013 03:14:10 PM,12/28/2013 03:16:38 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 03:17:34 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",133620223-93 -160763017,KM11,16030265,Medical Incident,03/16/2016,03/16/2016,03/16/2016 05:31:07 PM,03/16/2016 05:32:29 PM,03/16/2016 05:33:19 PM,03/16/2016 05:33:46 PM,03/16/2016 05:47:45 PM,03/16/2016 05:52:07 PM,03/16/2016 06:01:25 PM,Code 2 Transport,03/16/2016 06:15:10 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.7980228452184, -122.405863212632)",160763017-KM11 -120010012,FB1,12000007,Outside Fire,01/01/2012,12/31/2011,01/01/2012 12:10:49 AM,01/01/2012 12:12:04 AM,01/01/2012 12:12:35 AM,04/25/2016 02:00:52 PM,01/01/2012 12:34:58 AM,04/25/2016 02:00:52 PM,04/25/2016 02:00:52 PM,Other,01/01/2012 02:12:56 AM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,3,3,3,true,Fire,1,SUPPORT,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",120010012-FB1 -102350266,B08,10074013,Water Rescue,08/23/2010,08/23/2010,08/23/2010 03:35:54 PM,08/23/2010 03:37:04 PM,08/23/2010 03:37:32 PM,08/23/2010 03:38:47 PM,08/23/2010 03:44:12 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 03:54:27 PM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,3,3,3,false,,1,CHIEF,4,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",102350266-B08 -160402978,52,16016153,Medical Incident,02/09/2016,02/09/2016,02/09/2016 05:54:59 PM,02/09/2016 05:54:59 PM,02/09/2016 05:55:58 PM,02/09/2016 05:56:04 PM,02/09/2016 06:04:18 PM,02/09/2016 06:19:35 PM,02/09/2016 06:31:25 PM,Code 2 Transport,02/09/2016 06:54:08 PM,SUTTER ST/FILLMORE ST,San Francisco,94115,B04,38,3542,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7860854281172, -122.43327157966)",160402978-52 -120650164,55,12021464,Medical Incident,03/05/2012,03/05/2012,03/05/2012 11:46:14 AM,03/05/2012 11:47:29 AM,03/05/2012 11:47:37 AM,03/05/2012 11:49:50 AM,03/05/2012 11:58:27 AM,03/05/2012 12:08:15 PM,03/05/2012 12:27:22 PM,Code 2 Transport,03/05/2012 12:51:08 PM,1100 Block of POTRERO AVE,SF,94110,B10,37,2554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Mission,"(37.7536444586415, -122.406325430802)",120650164-55 -111890361,E36,11062641,Medical Incident,07/08/2011,07/08/2011,07/08/2011 08:52:11 PM,07/08/2011 08:53:02 PM,07/08/2011 08:53:28 PM,07/08/2011 08:54:57 PM,07/08/2011 08:55:57 PM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Other,07/08/2011 09:16:53 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,E,E,3,true,,1,ENGINE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",111890361-E36 -103410132,E13,10109082,Medical Incident,12/07/2010,12/07/2010,12/07/2010 10:49:45 AM,12/07/2010 10:51:46 AM,12/07/2010 10:53:04 AM,12/07/2010 10:53:52 AM,12/07/2010 10:54:36 AM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Other,12/07/2010 11:13:07 AM,600 Block of SANSOME ST,SF,94111,B01,13,1211,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.79618119485, -122.401696308834)",103410132-E13 -123300205,T07,12109740,Alarms,11/25/2012,11/25/2012,11/25/2012 02:31:03 PM,11/25/2012 02:31:03 PM,11/25/2012 02:31:17 PM,11/25/2012 02:32:03 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/25/2012 02:34:05 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",123300205-T07 -160500931,75,16020011,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:16:38 AM,02/19/2016 09:17:54 AM,02/19/2016 09:18:46 AM,02/19/2016 09:19:32 AM,02/19/2016 09:21:41 AM,02/19/2016 09:39:50 AM,02/19/2016 09:55:37 AM,Code 2 Transport,02/19/2016 10:30:42 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160500931-75 -160762378,57,16030194,Medical Incident,03/16/2016,03/16/2016,03/16/2016 03:18:06 PM,03/16/2016 03:20:16 PM,03/16/2016 03:21:35 PM,03/16/2016 03:22:17 PM,03/16/2016 03:32:20 PM,03/16/2016 03:39:51 PM,03/16/2016 03:52:22 PM,Code 2 Transport,03/16/2016 04:48:36 PM,MARKET ST/OCTAVIA ST,San Francisco,94102,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,8,Hayes Valley,"(37.771736463632, -122.423673411682)",160762378-57 -112960084,82,11098112,Medical Incident,10/23/2011,10/22/2011,10/23/2011 04:50:46 AM,10/23/2011 04:50:46 AM,10/23/2011 04:50:46 AM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Patient Declined Transport,10/23/2011 05:00:49 AM,LARKIN ST/GOLDEN GATE AV,SF,94102,B02,3,1644,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",112960084-82 -132540036,E13,13085684,Alarms,09/11/2013,09/10/2013,09/11/2013 03:17:17 AM,09/11/2013 03:19:08 AM,09/11/2013 03:19:19 AM,09/11/2013 03:21:21 AM,09/11/2013 03:22:43 AM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/11/2013 03:33:10 AM,800 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,Alarm,1,ENGINE,1,1,3,Chinatown,"(37.795777854883, -122.404981817889)",132540036-E13 -140590342,T02,14020032,Alarms,02/28/2014,02/28/2014,02/28/2014 07:41:43 PM,02/28/2014 07:43:04 PM,02/28/2014 07:43:09 PM,02/28/2014 07:52:58 PM,02/28/2014 07:57:24 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Fire,02/28/2014 08:00:57 PM,1200 Block of TAYLOR ST,SF,94108,B01,41,1444,3,3,3,false,Alarm,1,TRUCK,3,1,3,Nob Hill,"(37.7938676881599, -122.41298846914)",140590342-T02 -112340303,E06,11077348,Vehicle Fire,08/22/2011,08/22/2011,08/22/2011 07:38:23 PM,08/22/2011 07:38:58 PM,08/22/2011 07:39:08 PM,08/22/2011 07:40:22 PM,08/22/2011 07:41:10 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Fire,08/22/2011 07:56:37 PM,NOE ST/DUBOCE AV,SF,94114,B05,6,5131,3,3,3,true,,1,ENGINE,1,5,8,Haight Ashbury,"(37.7691783700971, -122.433572207997)",112340303-E06 -131180197,KM09,13039704,Medical Incident,04/28/2013,04/28/2013,04/28/2013 02:00:22 PM,04/28/2013 02:01:02 PM,04/28/2013 02:01:41 PM,04/28/2013 02:02:25 PM,04/28/2013 02:05:47 PM,04/25/2016 01:53:04 PM,04/28/2013 02:36:21 PM,Code 2 Transport,04/28/2013 03:00:12 PM,0 Block of HOFF ST,SF,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7641819463712, -122.420575720933)",131180197-KM09 -111490154,RC1,11049376,Medical Incident,05/29/2011,05/29/2011,05/29/2011 01:57:07 PM,05/29/2011 01:58:01 PM,05/29/2011 01:58:48 PM,05/29/2011 02:00:02 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 02:03:13 PM,FOLSOM ST/4TH ST,SF,94107,B03,1,2215,E,E,3,true,,1,RESCUE CAPTAIN,3,3,6,South of Market,"(37.7820242662358, -122.401159719509)",111490154-RC1 -160713792,AM22,16028417,Medical Incident,03/11/2016,03/11/2016,03/11/2016 11:34:23 PM,03/11/2016 11:34:23 PM,03/11/2016 11:36:18 PM,03/11/2016 11:36:46 PM,03/11/2016 11:45:12 PM,03/11/2016 11:51:18 PM,03/12/2016 12:04:26 AM,Code 2 Transport,03/12/2016 12:41:45 AM,300 Block of MARKET ST,San Francisco,94105,B03,13,2125,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7919873998129, -122.397733553251)",160713792-AM22 -133330285,E03,13113053,Alarms,11/29/2013,11/29/2013,11/29/2013 09:03:50 PM,11/29/2013 09:03:51 PM,11/29/2013 09:04:01 PM,11/29/2013 09:04:46 PM,11/29/2013 09:06:33 PM,04/25/2016 01:49:31 PM,04/25/2016 01:49:31 PM,Other,11/29/2013 09:07:20 PM,400 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,true,Alarm,1,ENGINE,1,1,3,Tenderloin,"(37.787297919885, -122.409833940233)",133330285-E03 -120680219,KM05,12022603,Medical Incident,03/08/2012,03/08/2012,03/08/2012 03:21:01 PM,03/08/2012 03:22:00 PM,03/08/2012 03:22:33 PM,03/08/2012 03:23:17 PM,03/08/2012 03:28:46 PM,03/08/2012 03:46:10 PM,03/08/2012 04:00:49 PM,Code 2 Transport,03/08/2012 04:10:13 PM,100 Block of PAGE ST,SF,94102,B02,36,3313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7740413439884, -122.423188032166)",120680219-KM05 -131260131,T07,13042512,Medical Incident,05/06/2013,05/06/2013,05/06/2013 09:52:48 AM,05/06/2013 09:54:28 AM,05/06/2013 09:54:51 AM,05/06/2013 09:56:33 AM,05/06/2013 10:00:33 AM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,Other,05/06/2013 10:12:04 AM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",131260131-T07 -160233039,64,16009283,Medical Incident,01/23/2016,01/23/2016,01/23/2016 07:04:28 PM,01/23/2016 07:06:41 PM,01/23/2016 07:06:55 PM,01/23/2016 07:07:15 PM,01/23/2016 07:16:39 PM,01/23/2016 07:38:19 PM,01/23/2016 07:58:58 PM,Code 2 Transport,01/23/2016 08:53:18 PM,0 Block of BROOKDALE AVE,San Francisco,94134,B09,43,6243,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120880839367, -122.420865736689)",160233039-64 -120400142,E07,12013299,Structure Fire,02/09/2012,02/09/2012,02/09/2012 11:53:57 AM,02/09/2012 11:53:57 AM,02/09/2012 11:54:04 AM,02/09/2012 11:55:26 AM,02/09/2012 11:57:27 AM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 11:57:49 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",120400142-E07 -131230428,KM07,13041655,Medical Incident,05/03/2013,05/03/2013,05/03/2013 11:19:57 PM,05/03/2013 11:22:23 PM,05/03/2013 11:30:54 PM,05/03/2013 11:31:33 PM,05/03/2013 11:39:04 PM,05/03/2013 11:58:16 PM,05/04/2013 12:09:52 AM,Code 2 Transport,05/04/2013 12:29:24 AM,1400 Block of STOCKTON ST,SF,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7987939625895, -122.408928385229)",131230428-KM07 -160230814,52,16009079,Medical Incident,01/23/2016,01/22/2016,01/23/2016 07:49:11 AM,01/23/2016 07:49:11 AM,01/23/2016 07:49:33 AM,01/23/2016 07:49:59 AM,01/23/2016 07:57:57 AM,01/23/2016 08:13:19 AM,01/23/2016 08:18:27 AM,Code 2 Transport,01/23/2016 08:48:46 AM,1100 Block of 9TH AVE,San Francisco,94122,B08,22,7333,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,5,Golden Gate Park,"(37.7662014296859, -122.466504397113)",160230814-52 -120050282,E03,12001822,Medical Incident,01/05/2012,01/05/2012,01/05/2012 05:43:34 PM,01/05/2012 05:44:47 PM,01/05/2012 05:45:01 PM,01/05/2012 05:46:31 PM,01/05/2012 05:48:26 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 06:02:13 PM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",120050282-E03 -111410142,55,11046825,Medical Incident,05/21/2011,05/21/2011,05/21/2011 11:03:57 AM,05/21/2011 11:06:59 AM,05/21/2011 11:07:50 AM,05/21/2011 11:07:59 AM,05/21/2011 11:13:46 AM,05/21/2011 11:24:10 AM,05/21/2011 11:42:14 AM,Code 2 Transport,05/21/2011 11:58:44 AM,SUMNER ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7766898320397, -122.411014418168)",111410142-55 -102320209,E19,10073029,Alarms,08/20/2010,08/20/2010,08/20/2010 02:23:44 PM,08/20/2010 02:24:57 PM,08/20/2010 02:25:13 PM,04/25/2016 02:09:00 PM,08/20/2010 02:29:05 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/20/2010 03:03:18 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",102320209-E19 -111570135,B08,11051872,Structure Fire,06/06/2011,06/06/2011,06/06/2011 10:25:25 AM,06/06/2011 10:25:26 AM,06/06/2011 10:25:59 AM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 10:27:19 AM,1700 Block of IRVING ST,SF,94122,B08,22,742,3,3,3,false,,1,CHIEF,4,8,4,Inner Sunset,"(37.7635292893748, -122.476610415663)",111570135-B08 -132820263,53,13096024,Medical Incident,10/09/2013,10/09/2013,10/09/2013 04:07:30 PM,10/09/2013 04:08:08 PM,10/09/2013 04:08:32 PM,10/09/2013 04:08:51 PM,10/09/2013 04:12:36 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/09/2013 05:57:37 PM,BRAZIL AV/MISSION ST,SF,94112,B09,43,6117,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.724682555301, -122.434798413615)",132820263-53 -131350126,65,13045508,Medical Incident,05/15/2013,05/15/2013,05/15/2013 11:03:59 AM,05/15/2013 11:05:55 AM,05/15/2013 11:06:04 AM,05/15/2013 11:06:14 AM,05/15/2013 11:08:53 AM,05/15/2013 11:30:03 AM,05/15/2013 11:49:32 AM,Code 2 Transport,05/15/2013 12:26:30 PM,HAMPSHIRE ST/25TH ST,SF,94110,B10,9,2624,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7513102329158, -122.407139008213)",131350126-65 -110330360,E01,11010968,Medical Incident,02/02/2011,02/02/2011,02/02/2011 08:03:33 PM,02/02/2011 08:04:18 PM,02/02/2011 08:06:06 PM,02/02/2011 08:08:58 PM,02/02/2011 08:10:37 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 08:19:04 PM,400 Block of POST ST,SF,94102,B01,1,1362,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",110330360-E01 -123110126,T19,12103433,Alarms,11/06/2012,11/06/2012,11/06/2012 10:01:41 AM,11/06/2012 10:02:32 AM,11/06/2012 10:02:52 AM,11/06/2012 10:03:22 AM,11/06/2012 10:07:04 AM,04/25/2016 01:55:55 PM,04/25/2016 01:55:55 PM,Other,11/06/2012 10:11:16 AM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,TRUCK,1,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",123110126-T19 -113330131,E03,11110270,Medical Incident,11/29/2011,11/29/2011,11/29/2011 10:39:10 AM,11/29/2011 10:40:19 AM,11/29/2011 10:40:45 AM,11/29/2011 10:43:01 AM,11/29/2011 10:46:14 AM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/29/2011 10:46:23 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,1,2,true,,1,ENGINE,2,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",113330131-E03 -122450374,57,12081171,Medical Incident,09/01/2012,09/01/2012,09/01/2012 11:01:32 PM,09/01/2012 11:01:46 PM,09/01/2012 11:02:20 PM,09/01/2012 11:02:24 PM,09/01/2012 11:07:45 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,04/25/2016 01:56:57 PM,0 Block of SAN CARLOS ST,SF,94110,B10,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7622234541197, -122.420240257606)",122450374-57 -160300333,55,16011644,Medical Incident,01/30/2016,01/29/2016,01/30/2016 02:16:51 AM,01/30/2016 02:19:09 AM,01/30/2016 02:19:35 AM,01/30/2016 02:19:46 AM,01/30/2016 02:35:46 AM,01/30/2016 02:46:35 AM,01/30/2016 03:00:03 AM,Code 2 Transport,01/30/2016 03:21:39 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160300333-55 -120100235,T03,12003518,Medical Incident,01/10/2012,01/10/2012,01/10/2012 03:13:06 PM,01/10/2012 03:14:41 PM,01/10/2012 03:15:26 PM,01/10/2012 03:16:00 PM,01/10/2012 03:17:27 PM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,No Merit,01/10/2012 03:18:45 PM,POLK ST/BUSH ST,SF,94109,B04,3,1636,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",120100235-T03 -120480160,83,12015890,Medical Incident,02/17/2012,02/17/2012,02/17/2012 12:05:01 PM,02/17/2012 12:07:21 PM,02/17/2012 12:09:11 PM,04/25/2016 02:00:06 PM,02/17/2012 12:32:08 PM,02/17/2012 12:49:07 PM,02/17/2012 01:12:51 PM,Code 2 Transport,02/17/2012 01:40:11 PM,100 Block of 9TH ST,SF,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",120480160-83 -131380087,86,13046548,Medical Incident,05/18/2013,05/17/2013,05/18/2013 07:32:53 AM,05/18/2013 07:34:21 AM,05/18/2013 07:39:12 AM,05/18/2013 07:39:46 AM,05/18/2013 07:39:18 AM,04/25/2016 01:52:44 PM,04/25/2016 01:52:44 PM,Patient Declined Transport,05/18/2013 08:05:48 AM,100 Block of 10TH AVE,SF,94118,B07,31,7137,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7855549005489, -122.468838120123)",131380087-86 -103060193,85,10097906,Medical Incident,11/02/2010,11/02/2010,11/02/2010 10:40:50 AM,11/02/2010 10:42:36 AM,11/02/2010 10:43:11 AM,11/02/2010 10:43:39 AM,11/02/2010 10:47:26 AM,04/25/2016 02:07:47 PM,04/25/2016 02:07:47 PM,Other,11/02/2010 10:48:14 AM,NATOMA ST/RUSS ST,SF,94103,B03,1,2252,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7792937004634, -122.408808995203)",103060193-85 -160071220,79,16002781,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:27:56 AM,01/07/2016 10:38:09 AM,01/07/2016 10:38:23 AM,01/07/2016 10:38:33 AM,01/07/2016 10:40:15 AM,01/07/2016 10:56:51 AM,01/07/2016 11:11:28 AM,Code 2 Transport,01/07/2016 11:29:01 AM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160071220-79 -140510132,AM02,14017223,Medical Incident,02/20/2014,02/20/2014,02/20/2014 10:10:34 AM,02/20/2014 10:12:36 AM,02/20/2014 11:08:49 AM,02/20/2014 11:08:49 AM,02/20/2014 11:08:49 AM,04/25/2016 01:48:07 PM,04/25/2016 01:48:07 PM,Fire,02/20/2014 11:17:44 AM,2200 Block of JACKSON ST,SF,94115,B04,38,3465,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Pacific Heights,"(37.7927300345621, -122.432079396379)",140510132-AM02 -110270390,E25,11009057,Structure Fire,01/27/2011,01/27/2011,01/27/2011 09:51:23 PM,01/27/2011 09:52:25 PM,01/27/2011 09:53:00 PM,01/27/2011 09:54:15 PM,01/27/2011 10:09:01 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 10:24:22 PM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,ENGINE,6,10,10,Bayview Hunters Point,"(37.737593919819, -122.389860953099)",110270390-E25 -131440201,78,13048842,Medical Incident,05/24/2013,05/24/2013,05/24/2013 01:50:28 PM,05/24/2013 01:50:57 PM,05/24/2013 01:51:13 PM,04/25/2016 01:52:38 PM,05/24/2013 01:55:12 PM,04/25/2016 01:52:38 PM,04/25/2016 01:52:38 PM,Patient Declined Transport,05/24/2013 02:38:08 PM,MARKET ST/DOLORES ST,SF,94103,B02,6,5127,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7690423904807, -122.426858289929)",131440201-78 -123640161,D2,12121783,Structure Fire,12/29/2012,12/29/2012,12/29/2012 12:16:39 PM,12/29/2012 12:18:06 PM,12/29/2012 12:18:49 PM,12/29/2012 12:19:11 PM,12/29/2012 12:21:36 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,12/29/2012 12:23:01 PM,5TH ST/MISSION ST,SF,94103,B03,1,2246,3,3,3,false,Alarm,1,CHIEF,3,3,6,South of Market,"(37.7827316349865, -122.406479403956)",123640161-D2 -121140259,55,12037904,Medical Incident,04/23/2012,04/23/2012,04/23/2012 04:59:05 PM,04/23/2012 05:01:11 PM,04/23/2012 05:04:14 PM,04/23/2012 05:06:03 PM,04/23/2012 05:08:31 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 05:11:05 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",121140259-55 -102930134,RS1,10093407,Medical Incident,10/20/2010,10/20/2010,10/20/2010 10:47:32 AM,10/20/2010 10:48:21 AM,10/20/2010 10:49:35 AM,10/20/2010 10:51:52 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 10:52:03 AM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,3,3,false,,1,RESCUE SQUAD,3,1,6,Tenderloin,"(37.7857402818673, -122.413804267911)",102930134-RS1 -131340117,88,13045146,Medical Incident,05/14/2013,05/14/2013,05/14/2013 09:53:50 AM,05/14/2013 09:55:44 AM,05/14/2013 09:56:38 AM,05/14/2013 09:57:03 AM,05/14/2013 10:03:32 AM,05/14/2013 10:29:42 AM,05/14/2013 10:44:55 AM,Code 2 Transport,05/14/2013 11:11:52 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",131340117-88 -133200250,B02,13108782,Alarms,11/16/2013,11/16/2013,11/16/2013 04:36:23 PM,11/16/2013 04:38:55 PM,11/16/2013 04:39:06 PM,11/16/2013 04:39:51 PM,11/16/2013 04:43:07 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 05:19:26 PM,0 Block of GOUGH ST,SF,94102,B02,36,3311,3,3,3,false,Alarm,1,CHIEF,1,2,5,Hayes Valley,"(37.7733930766341, -122.422202193489)",133200250-B02 -112160148,KM10,11071306,Medical Incident,08/04/2011,08/04/2011,08/04/2011 10:16:08 AM,08/04/2011 10:16:42 AM,08/04/2011 10:16:48 AM,08/04/2011 10:19:34 AM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 10:23:57 AM,HEMLOCK ST/POLK ST,SF,94109,B04,3,1641,3,3,3,false,,1,PRIVATE,2,4,3,Nob Hill,"(37.7872800265284, -122.420019574724)",112160148-KM10 -122940159,87,12097484,Medical Incident,10/20/2012,10/20/2012,10/20/2012 11:25:10 AM,10/20/2012 11:25:46 AM,10/20/2012 11:25:56 AM,10/20/2012 11:27:24 AM,10/20/2012 11:48:48 AM,10/20/2012 11:50:01 AM,10/20/2012 12:01:06 PM,Code 2 Transport,10/20/2012 12:23:13 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",122940159-87 -103640271,81,10116838,Medical Incident,12/30/2010,12/30/2010,12/30/2010 04:30:40 PM,12/30/2010 04:34:36 PM,12/30/2010 04:35:13 PM,12/30/2010 04:35:22 PM,12/30/2010 04:36:42 PM,12/30/2010 05:04:38 PM,12/30/2010 05:14:26 PM,Other,12/30/2010 06:12:49 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8058923703038, -122.431246520303)",103640271-81 -160282091,66,16011117,Medical Incident,01/28/2016,01/28/2016,01/28/2016 02:16:02 PM,01/28/2016 02:16:38 PM,01/28/2016 02:17:02 PM,01/28/2016 02:17:12 PM,01/28/2016 02:23:34 PM,01/28/2016 02:57:58 PM,01/28/2016 03:03:42 PM,Code 2 Transport,01/28/2016 03:59:32 PM,200 Block of HARVARD ST,San Francisco,94134,B09,43,6152,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7265286668672, -122.420553597797)",160282091-66 -110810260,E07,11026716,Structure Fire,03/22/2011,03/22/2011,03/22/2011 05:23:51 PM,03/22/2011 05:23:52 PM,03/22/2011 05:24:03 PM,03/22/2011 05:24:36 PM,03/22/2011 05:26:33 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Fire,03/22/2011 05:26:54 PM,18TH ST/MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7618358554116, -122.41935926846)",110810260-E07 -160913325,87,16036225,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:00:47 PM,03/31/2016 08:01:27 PM,03/31/2016 08:01:34 PM,03/31/2016 08:04:56 PM,03/31/2016 08:13:15 PM,03/31/2016 08:31:17 PM,03/31/2016 09:02:17 PM,Code 2 Transport,03/31/2016 09:33:22 PM,0 Block of COMMER CT,San Francisco,94124,B10,17,6622,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7325365939267, -122.385005626506)",160913325-87 -160540422,65,16021466,Medical Incident,02/23/2016,02/22/2016,02/23/2016 06:33:48 AM,02/23/2016 06:33:48 AM,02/23/2016 06:34:04 AM,02/23/2016 06:34:10 AM,02/23/2016 06:57:23 AM,02/23/2016 07:10:45 AM,02/23/2016 07:19:59 AM,Code 2 Transport,02/23/2016 07:59:53 AM,LARKIN ST/GROVE ST,San Francisco,94102,B02,13,1646,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7786578549412, -122.416580344698)",160540422-65 -133370347,67,13114367,Medical Incident,12/03/2013,12/03/2013,12/03/2013 09:49:20 PM,12/03/2013 09:49:52 PM,12/03/2013 09:52:22 PM,12/03/2013 09:53:37 PM,12/03/2013 09:54:51 PM,12/03/2013 10:03:30 PM,12/03/2013 10:14:18 PM,Code 2 Transport,12/03/2013 10:43:17 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",133370347-67 -160080635,82,16003115,Medical Incident,01/08/2016,01/07/2016,01/08/2016 07:22:11 AM,01/08/2016 07:23:54 AM,01/08/2016 07:25:02 AM,01/08/2016 07:25:09 AM,01/08/2016 07:38:09 AM,01/08/2016 07:51:53 AM,01/08/2016 08:04:45 AM,Code 3 Transport,01/08/2016 09:03:18 AM,200 Block of THRIFT ST,San Francisco,94112,B09,33,8415,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7174874499717, -122.46143337515)",160080635-82 -110280042,87,11009116,Medical Incident,01/28/2011,01/27/2011,01/28/2011 05:58:17 AM,01/28/2011 06:01:04 AM,01/28/2011 06:02:36 AM,01/28/2011 06:03:21 AM,01/28/2011 06:14:25 AM,01/28/2011 06:33:22 AM,01/28/2011 06:50:58 AM,Code 2 Transport,01/28/2011 07:37:51 AM,2300 Block of 24TH AVE,SF,94116,B08,40,7461,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",110280042-87 -102870306,E01,10091605,Medical Incident,10/14/2010,10/14/2010,10/14/2010 05:21:03 PM,10/14/2010 05:21:39 PM,10/14/2010 05:22:22 PM,04/25/2016 02:08:06 PM,10/14/2010 05:24:08 PM,04/25/2016 02:08:06 PM,04/25/2016 02:08:06 PM,Other,10/14/2010 05:28:26 PM,MARKET ST/POWELL ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",102870306-E01 -160860075,AM18,16034030,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:26:43 AM,03/26/2016 12:27:58 AM,03/26/2016 12:28:14 AM,03/26/2016 12:28:54 AM,03/26/2016 12:30:38 AM,03/26/2016 12:34:46 AM,03/26/2016 12:43:19 AM,Code 2 Transport,03/26/2016 01:20:15 AM,19TH ST/MISSION ST,San Francisco,94110,B06,7,5433,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",160860075-AM18 -121410031,E03,12046715,Medical Incident,05/20/2012,05/19/2012,05/20/2012 02:10:50 AM,05/20/2012 02:13:41 AM,05/20/2012 02:14:02 AM,05/20/2012 02:16:18 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 02:25:25 AM,500 Block of MASON ST,SF,94102,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7885578121115, -122.410081316773)",121410031-E03 -160683885,AM16,16027291,Medical Incident,03/08/2016,03/08/2016,03/08/2016 11:47:55 PM,03/08/2016 11:49:49 PM,03/08/2016 11:50:27 PM,03/08/2016 11:50:58 PM,03/08/2016 11:58:33 PM,03/09/2016 12:08:53 AM,03/09/2016 12:28:44 AM,Code 2 Transport,03/09/2016 12:59:39 AM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160683885-AM16 -110300134,KM01,11009809,Medical Incident,01/30/2011,01/30/2011,01/30/2011 09:28:08 AM,01/30/2011 09:30:25 AM,01/30/2011 09:30:44 AM,01/30/2011 09:31:26 AM,01/30/2011 09:34:36 AM,01/30/2011 09:43:54 AM,01/30/2011 09:50:58 AM,Code 2 Transport,01/30/2011 10:25:05 AM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,PRIVATE,2,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",110300134-KM01 -131170323,KM07,13039483,Medical Incident,04/27/2013,04/27/2013,04/27/2013 08:08:09 PM,04/27/2013 08:08:51 PM,04/27/2013 08:10:41 PM,04/27/2013 08:11:10 PM,04/27/2013 08:17:54 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/27/2013 08:19:06 PM,1700 Block of POLK ST,SF,94109,B04,41,3124,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7928118444511, -122.421209766636)",131170323-KM07 -123060378,E08,12101826,Structure Fire,11/01/2012,11/01/2012,11/01/2012 10:12:34 PM,11/01/2012 10:12:34 PM,11/01/2012 10:15:57 PM,11/01/2012 10:16:56 PM,11/01/2012 10:19:25 PM,04/25/2016 01:56:00 PM,04/25/2016 01:56:00 PM,Other,11/01/2012 10:19:28 PM,6TH ST/HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",123060378-E08 -112590047,86,11085285,Medical Incident,09/16/2011,09/15/2011,09/16/2011 04:43:44 AM,09/16/2011 04:44:37 AM,09/16/2011 04:44:48 AM,09/16/2011 04:46:02 AM,09/16/2011 04:51:08 AM,09/16/2011 04:52:41 AM,09/16/2011 05:09:12 AM,Code 2 Transport,09/16/2011 05:30:43 AM,700 Block of KIRKWOOD AVE,SF,94124,B10,17,6713,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7291935618432, -122.374002352858)",112590047-86 -160493574,76,16019884,Medical Incident,02/18/2016,02/18/2016,02/18/2016 09:04:36 PM,02/18/2016 09:07:36 PM,02/18/2016 09:07:55 PM,02/18/2016 09:08:06 PM,02/18/2016 09:14:41 PM,02/18/2016 09:26:32 PM,02/18/2016 09:33:19 PM,Code 2 Transport,02/18/2016 09:53:24 PM,200 Block of 8TH ST,San Francisco,94103,B02,29,2322,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",160493574-76 -131050403,T05,13035459,Alarms,04/15/2013,04/15/2013,04/15/2013 10:26:05 PM,04/15/2013 10:27:23 PM,04/15/2013 10:27:40 PM,04/15/2013 10:28:44 PM,04/15/2013 10:31:59 PM,04/25/2016 01:53:17 PM,04/25/2016 01:53:17 PM,Other,04/15/2013 10:33:57 PM,1600 Block of HAYES ST,SF,94117,B05,21,4351,3,3,3,false,Alarm,1,TRUCK,2,5,5,Lone Mountain/USF,"(37.7741999233828, -122.443568815049)",131050403-T05 -130380308,T12,13013097,Structure Fire,02/07/2013,02/07/2013,02/07/2013 07:50:17 PM,02/07/2013 07:52:46 PM,02/07/2013 07:53:03 PM,02/07/2013 07:55:20 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Other,02/07/2013 07:58:23 PM,14TH ST/BUENA VISTA TR,SF,94117,B05,21,5135,3,3,3,false,Alarm,1,TRUCK,8,5,8,Castro/Upper Market,"(37.7671585552677, -122.438199543644)",130380308-T12 -160641399,61,16025462,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:48:51 AM,03/04/2016 10:50:02 AM,03/04/2016 10:50:18 AM,03/04/2016 10:50:36 AM,03/04/2016 11:04:45 AM,03/04/2016 11:20:57 AM,03/04/2016 11:31:13 AM,Code 2 Transport,03/04/2016 12:15:14 PM,800 Block of HAYES ST,San Francisco,94117,B02,5,3522,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",160641399-61 -132100044,E36,13070903,Alarms,07/29/2013,07/28/2013,07/29/2013 02:31:49 AM,07/29/2013 02:33:15 AM,07/29/2013 02:33:30 AM,07/29/2013 02:35:46 AM,07/29/2013 02:38:02 AM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/29/2013 02:44:18 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7739392650435, -122.412947871011)",132100044-E36 -133010168,E11,13102271,Medical Incident,10/28/2013,10/28/2013,10/28/2013 11:14:52 AM,10/28/2013 11:16:27 AM,10/28/2013 11:17:09 AM,10/28/2013 11:17:40 AM,10/28/2013 11:19:40 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 11:31:01 AM,24TH ST/LILAC ST,SF,94110,B06,11,5525,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7522713668808, -122.41787692136)",133010168-E11 -121560217,89,12051669,Medical Incident,06/04/2012,06/04/2012,06/04/2012 02:25:56 PM,06/04/2012 02:27:22 PM,06/04/2012 02:27:35 PM,06/04/2012 02:28:04 PM,06/04/2012 02:42:27 PM,06/04/2012 02:46:50 PM,06/04/2012 02:50:30 PM,Code 2 Transport,06/04/2012 03:22:16 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",121560217-89 -160093563,71,16003832,Medical Incident,01/09/2016,01/09/2016,01/09/2016 10:24:20 PM,01/09/2016 10:25:18 PM,01/09/2016 10:25:51 PM,01/09/2016 10:25:57 PM,01/09/2016 10:33:47 PM,01/09/2016 10:43:59 PM,01/09/2016 10:53:33 PM,Code 2 Transport,01/09/2016 11:42:00 PM,1600 Block of MISSION ST,San Francisco,94103,B02,36,5116,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7720141510333, -122.419088601412)",160093563-71 -133430278,79,13116398,Medical Incident,12/09/2013,12/09/2013,12/09/2013 04:48:31 PM,12/09/2013 04:48:35 PM,12/09/2013 04:54:23 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/09/2013 04:59:25 PM,2000 Block of SUNNYDALE AVE,SF,94134,B09,43,624,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",133430278-79 -110770381,AM10,11025512,Medical Incident,03/18/2011,03/18/2011,03/18/2011 11:05:43 PM,03/18/2011 11:08:55 PM,03/18/2011 11:09:10 PM,03/18/2011 11:10:17 PM,03/18/2011 11:13:52 PM,03/18/2011 11:35:10 PM,03/18/2011 11:41:38 PM,Code 2 Transport,03/19/2011 12:10:25 AM,300 Block of JONES ST,SF,94102,B03,3,1461,2,2,2,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",110770381-AM10 -110740381,79,11024505,Traffic Collision,03/15/2011,03/15/2011,03/15/2011 09:08:08 PM,03/15/2011 09:08:40 PM,03/15/2011 09:08:52 PM,03/15/2011 09:10:34 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,04/25/2016 02:05:36 PM,Other,03/15/2011 09:16:03 PM,GREENWICH ST/FRANKLIN ST,SF,94123,B04,16,3234,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.8002062474722, -122.426001248596)",110740381-79 -160831817,81,16032943,Medical Incident,03/23/2016,03/23/2016,03/23/2016 12:36:21 PM,03/23/2016 12:38:12 PM,03/23/2016 12:39:27 PM,03/23/2016 12:40:08 PM,03/23/2016 12:53:39 PM,03/23/2016 01:24:28 PM,03/23/2016 01:28:44 PM,Code 2 Transport,03/23/2016 02:13:59 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160831817-81 -113490052,E44,11115707,Medical Incident,12/15/2011,12/14/2011,12/15/2011 06:51:42 AM,12/15/2011 06:53:42 AM,12/15/2011 06:54:03 AM,12/15/2011 06:55:28 AM,12/15/2011 06:58:34 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/15/2011 07:08:50 AM,200 Block of RAYMOND AVE,SF,94134,B09,44,6264,3,3,3,true,,1,ENGINE,2,9,10,Visitacion Valley,"(37.713564106848, -122.408103072889)",113490052-E44 -122620045,E26,12086401,Medical Incident,09/18/2012,09/17/2012,09/18/2012 06:30:08 AM,09/18/2012 06:30:54 AM,09/18/2012 06:31:15 AM,09/18/2012 06:32:53 AM,09/18/2012 06:36:26 AM,04/25/2016 01:56:43 PM,04/25/2016 01:56:43 PM,Other,09/18/2012 06:48:04 AM,0 Block of CAMEO WAY,SF,94131,B06,26,8167,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7449677773765, -122.443033718594)",122620045-E26 -140370311,E21,14012624,Administrative,02/06/2014,02/06/2014,02/06/2014 07:12:35 PM,02/06/2014 07:12:37 PM,02/06/2014 07:12:55 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 07:16:21 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",140370311-E21 -103310115,82,10105912,Medical Incident,11/27/2010,11/27/2010,11/27/2010 09:46:56 AM,11/27/2010 09:49:24 AM,11/27/2010 09:49:33 AM,11/27/2010 09:50:32 AM,11/27/2010 09:53:08 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Against Medical Advice,11/27/2010 10:42:53 AM,1300 Block of BAY ST,SF,94123,B04,16,3342,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.8035682435218, -122.42921167398)",103310115-82 -120690168,93,12022878,Medical Incident,03/09/2012,03/09/2012,03/09/2012 12:30:39 PM,03/09/2012 12:32:06 PM,03/09/2012 12:32:33 PM,03/09/2012 12:33:20 PM,04/25/2016 01:59:45 PM,03/09/2012 12:51:28 PM,03/09/2012 01:05:53 PM,Code 2 Transport,03/09/2012 01:32:29 PM,0 Block of DIVISION ST,SF,94103,B03,29,2326,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7698442258534, -122.403713555238)",120690168-93 -121940135,B03,12064514,Alarms,07/12/2012,07/12/2012,07/12/2012 10:24:41 AM,07/12/2012 10:25:44 AM,07/12/2012 10:25:58 AM,07/12/2012 10:26:11 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Fire,07/12/2012 10:31:47 AM,200 Block of HARRISON ST,SF,94105,B03,35,2123,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7877559111274, -122.390700753864)",121940135-B03 -132660251,KM06,13090300,Medical Incident,09/23/2013,09/23/2013,09/23/2013 02:46:52 PM,09/23/2013 02:47:47 PM,09/23/2013 02:48:42 PM,09/23/2013 02:49:47 PM,09/23/2013 02:55:36 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Patient Declined Transport,09/23/2013 04:02:45 PM,JEFFERSON ST/JONES ST,SF,94133,B01,28,945,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,North Beach,"(37.8080133240409, -122.417445939002)",132660251-KM06 -120940243,E21,12031204,Alarms,04/03/2012,04/03/2012,04/03/2012 04:40:36 PM,04/03/2012 04:42:39 PM,04/03/2012 04:43:04 PM,04/03/2012 04:43:45 PM,04/03/2012 04:46:56 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 04:52:30 PM,0 Block of PIERCE ST,SF,94117,B05,6,3635,3,3,3,false,Alarm,1,ENGINE,2,5,8,Haight Ashbury,"(37.7702879508133, -122.433383131974)",120940243-E21 -130910095,E05,13030368,Medical Incident,04/01/2013,04/01/2013,04/01/2013 08:44:28 AM,04/01/2013 08:46:25 AM,04/01/2013 08:54:44 AM,04/01/2013 08:55:29 AM,04/01/2013 08:58:04 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 09:02:19 AM,1300 Block of PIERCE ST,SF,94115,B05,5,3647,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",130910095-E05 -160052180,62,16002043,Medical Incident,01/05/2016,01/05/2016,01/05/2016 03:12:21 PM,01/05/2016 03:12:21 PM,01/05/2016 03:13:46 PM,01/05/2016 03:14:29 PM,01/05/2016 03:25:06 PM,01/05/2016 04:18:02 PM,01/05/2016 04:46:46 PM,Code 2 Transport,01/05/2016 05:05:28 PM,2100 Block of QUESADA AVE,San Francisco,94124,B10,42,6431,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7380740515754, -122.399915418902)",160052180-62 -160042603,56,16001688,Medical Incident,01/04/2016,01/04/2016,01/04/2016 04:43:45 PM,01/04/2016 04:44:43 PM,01/04/2016 04:46:46 PM,01/04/2016 04:47:14 PM,01/04/2016 04:53:07 PM,01/04/2016 05:05:01 PM,01/04/2016 05:11:01 PM,Code 2 Transport,01/04/2016 05:34:05 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160042603-56 -110440351,KM15,11014773,Medical Incident,02/13/2011,02/13/2011,02/13/2011 10:55:00 PM,02/13/2011 11:00:27 PM,02/13/2011 11:01:08 PM,02/13/2011 11:04:25 PM,02/13/2011 11:05:36 PM,02/13/2011 11:32:23 PM,02/13/2011 11:46:24 PM,Code 2 Transport,02/14/2011 12:23:13 AM,2200 Block of 32ND AVE,SF,94116,B08,18,7545,3,3,3,false,,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7452376223933, -122.489745479005)",110440351-KM15 -122830266,T16,12093720,Structure Fire,10/09/2012,10/09/2012,10/09/2012 05:28:16 PM,10/09/2012 05:28:16 PM,10/09/2012 05:29:12 PM,10/09/2012 05:30:16 PM,10/09/2012 05:31:53 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Other,10/09/2012 05:32:03 PM,WEBSTER ST/LOMBARD ST,SF,94123,B04,16,3461,3,3,3,false,Alarm,1,TRUCK,2,4,2,Marina,"(37.8000515477468, -122.434404699853)",122830266-T16 -160811919,87,16032192,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:40:35 PM,03/21/2016 01:41:16 PM,03/21/2016 01:41:45 PM,03/21/2016 01:41:56 PM,03/21/2016 01:46:50 PM,03/21/2016 02:10:42 PM,03/21/2016 02:31:55 PM,Code 2 Transport,03/21/2016 02:47:53 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7700546614555, -122.446128431298)",160811919-87 -102950195,KM02,10094093,Medical Incident,10/22/2010,10/22/2010,10/22/2010 12:32:53 PM,10/22/2010 12:33:08 PM,10/22/2010 12:33:48 PM,04/25/2016 02:07:59 PM,10/22/2010 12:39:13 PM,10/22/2010 12:53:47 PM,10/22/2010 01:13:47 PM,Code 2 Transport,10/22/2010 01:35:44 PM,2700 Block of MISSION ST,SF,94110,B06,11,5525,3,3,3,false,,1,PRIVATE,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",102950195-KM02 -130730121,54,13024297,Medical Incident,03/14/2013,03/14/2013,03/14/2013 10:02:37 AM,03/14/2013 10:03:06 AM,03/14/2013 10:03:41 AM,03/14/2013 10:03:59 AM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,04/25/2016 01:53:50 PM,Medical Examiner,03/14/2013 10:12:55 AM,400 Block of BRIGHT ST,SF,94132,B09,33,8414,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7189103889724, -122.463482098745)",130730121-54 -140450155,T08,14015291,Vehicle Fire,02/14/2014,02/14/2014,02/14/2014 12:02:53 PM,02/14/2014 12:04:14 PM,02/14/2014 12:04:21 PM,02/14/2014 12:05:28 PM,02/14/2014 12:10:10 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 12:20:45 PM,17TH ST/TEXAS ST,SF,94107,B03,29,2431,3,3,3,false,Fire,1,TRUCK,2,3,10,Potrero Hill,"(37.7651886328119, -122.395806777829)",140450155-T08 -132850271,E08,13097023,Medical Incident,10/12/2013,10/12/2013,10/12/2013 05:51:44 PM,10/12/2013 05:52:46 PM,10/12/2013 05:53:34 PM,10/12/2013 05:55:11 PM,10/12/2013 05:57:07 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/12/2013 06:03:13 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",132850271-E08 -130890248,T02,13029814,Water Rescue,03/30/2013,03/30/2013,03/30/2013 04:59:28 PM,03/30/2013 05:01:09 PM,03/30/2013 05:03:06 PM,03/30/2013 05:04:40 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 05:14:00 PM,CALL BOX: PIER 43,SF,94133,B01,28,943,3,E,3,false,Fire,1,TRUCK,11,1,3,North Beach,"(37.8086727647211, -122.412586999257)",130890248-T02 -132410068,E42,13081197,Traffic Collision,08/29/2013,08/28/2013,08/29/2013 07:53:27 AM,08/29/2013 07:53:51 AM,08/29/2013 07:55:07 AM,08/29/2013 07:56:44 AM,08/29/2013 07:59:05 AM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,Other,08/29/2013 08:13:25 AM,SILVER AV/QUESADA AV,SF,94124,B10,42,6445,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7368637455841, -122.397665695063)",132410068-E42 -102350214,RC1,10073970,Medical Incident,08/23/2010,08/23/2010,08/23/2010 01:53:53 PM,08/23/2010 01:54:37 PM,08/23/2010 01:54:51 PM,08/23/2010 01:57:15 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 02:01:43 PM,200 Block of 11TH ST,SF,94103,B02,36,5114,3,E,3,true,,1,RESCUE CAPTAIN,3,2,6,Mission,"(37.7719723687579, -122.414258651144)",102350214-RC1 -112500187,RS1,11082466,Medical Incident,09/07/2011,09/07/2011,09/07/2011 01:28:03 PM,09/07/2011 01:28:39 PM,09/07/2011 01:29:06 PM,09/07/2011 01:30:20 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/07/2011 01:30:40 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,RESCUE SQUAD,3,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",112500187-RS1 -113570299,E23,11118684,Traffic Collision,12/23/2011,12/23/2011,12/23/2011 02:57:24 PM,12/23/2011 02:57:25 PM,12/23/2011 02:59:22 PM,12/23/2011 03:05:49 PM,12/23/2011 03:08:08 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 03:21:08 PM,SUNSET BL/KIRKHAM ST,SF,94122,B08,18,7563,3,3,3,false,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7590044983228, -122.495617223674)",113570299-E23 -132410237,92,13081335,Medical Incident,08/29/2013,08/29/2013,08/29/2013 03:46:35 PM,08/29/2013 03:49:15 PM,08/29/2013 03:49:39 PM,08/29/2013 03:50:15 PM,08/29/2013 04:15:33 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Patient Declined Transport,08/29/2013 05:04:09 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132410237-92 -140850232,E17,14028669,Alarms,03/26/2014,03/26/2014,03/26/2014 02:43:57 PM,03/26/2014 02:44:05 PM,03/26/2014 02:44:14 PM,03/26/2014 02:45:48 PM,03/26/2014 02:48:02 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Fire,03/26/2014 02:55:21 PM,1500 Block of NEWCOMB AV,SAN FRANCISCO,94124,B10,17,6515,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7346630758042, -122.388898246024)",140850232-E17 -122950180,66,12097848,Medical Incident,10/21/2012,10/21/2012,10/21/2012 01:36:58 PM,10/21/2012 01:38:13 PM,10/21/2012 01:38:21 PM,10/21/2012 01:38:37 PM,10/21/2012 01:42:52 PM,10/21/2012 01:52:57 PM,10/21/2012 02:03:23 PM,Code 2 Transport,10/21/2012 02:35:53 PM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,9,Mission,"(37.7650413541786, -122.420746190588)",122950180-66 -111250082,E03,11041283,Medical Incident,05/05/2011,05/05/2011,05/05/2011 08:36:58 AM,05/05/2011 08:38:16 AM,05/05/2011 08:39:37 AM,05/05/2011 08:39:54 AM,05/05/2011 08:42:07 AM,04/25/2016 02:04:46 PM,04/25/2016 02:04:46 PM,Other,05/05/2011 08:45:40 AM,200 Block of HYDE ST,SF,94102,B02,3,1554,E,E,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",111250082-E03 -160500050,52,16019927,Medical Incident,02/19/2016,02/18/2016,02/19/2016 12:23:41 AM,02/19/2016 12:25:52 AM,02/19/2016 12:29:00 AM,02/19/2016 12:29:29 AM,02/19/2016 12:39:00 AM,02/19/2016 12:58:47 AM,02/19/2016 01:16:27 AM,Code 2 Transport,02/19/2016 02:09:27 AM,100 Block of BRUSSELS ST,San Francisco,94134,B10,42,6341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7301350537196, -122.406759694209)",160500050-52 -160732633,71,16029086,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:51:45 PM,03/13/2016 07:53:27 PM,03/13/2016 07:53:35 PM,03/13/2016 07:53:40 PM,03/13/2016 08:09:24 PM,03/13/2016 08:21:54 PM,03/13/2016 08:42:48 PM,Code 2 Transport,03/13/2016 09:28:52 PM,700 Block of GROVE ST,San Francisco,94102,B02,5,3424,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7770920707523, -122.429212775945)",160732633-71 -111510226,KM11,11050032,Medical Incident,05/31/2011,05/31/2011,05/31/2011 04:03:42 PM,05/31/2011 04:05:02 PM,05/31/2011 04:05:34 PM,05/31/2011 04:05:42 PM,05/31/2011 04:07:26 PM,05/31/2011 04:23:29 PM,05/31/2011 04:42:24 PM,Code 2 Transport,05/31/2011 05:07:40 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,,1,PRIVATE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",111510226-KM11 -123560241,E12,12119194,Medical Incident,12/21/2012,12/21/2012,12/21/2012 03:09:00 PM,12/21/2012 03:10:34 PM,12/21/2012 03:12:08 PM,12/21/2012 03:12:54 PM,12/21/2012 03:15:16 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 03:27:06 PM,HAIGHT ST/COLE ST,SF,94117,B05,12,4545,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7695260436945, -122.450710179639)",123560241-E12 -160722677,77,16028708,Traffic Collision,03/12/2016,03/12/2016,03/12/2016 06:18:22 PM,03/12/2016 06:18:22 PM,03/12/2016 06:19:52 PM,03/12/2016 06:20:12 PM,03/12/2016 06:29:17 PM,03/12/2016 06:41:07 PM,03/12/2016 07:00:23 PM,Code 2 Transport,03/12/2016 07:30:32 PM,22ND ST/HARRISON ST,San Francisco,94110,B03,8,2151,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,6,9,Mission,"(37.7558325113453, -122.412197892408)",160722677-77 -121200277,T10,12039916,Citizen Assist / Service Call,04/29/2012,04/29/2012,04/29/2012 05:12:46 PM,04/29/2012 05:15:08 PM,04/29/2012 05:16:16 PM,04/29/2012 05:17:14 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 05:18:42 PM,1600 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,true,Alarm,1,TRUCK,1,5,5,Japantown,"(37.7847687027421, -122.439893519511)",121200277-T10 -121490305,E03,12049568,Medical Incident,05/28/2012,05/28/2012,05/28/2012 10:09:28 PM,05/28/2012 10:12:49 PM,05/28/2012 10:14:48 PM,05/28/2012 10:15:46 PM,05/28/2012 10:18:26 PM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/28/2012 10:57:49 PM,1800 Block of PINE ST,SF,94109,B04,38,3325,2,E,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",121490305-E03 -160520555,AM20,16020696,Medical Incident,02/21/2016,02/20/2016,02/21/2016 04:09:05 AM,02/21/2016 04:16:33 AM,02/21/2016 04:17:37 AM,02/21/2016 04:18:42 AM,02/21/2016 04:28:56 AM,02/21/2016 04:54:32 AM,02/21/2016 05:04:48 AM,Code 2 Transport,02/21/2016 05:30:32 AM,PAUL AV/GOULD ST,San Francisco,94124,B10,44,6323,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7228742778896, -122.39766813553)",160520555-AM20 -132280017,T03,13076812,Structure Fire,08/16/2013,08/15/2013,08/16/2013 01:17:13 AM,08/16/2013 01:23:54 AM,08/16/2013 01:24:04 AM,08/16/2013 01:25:36 AM,08/16/2013 01:27:35 AM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Other,08/16/2013 01:33:53 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Alarm,1,TRUCK,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",132280017-T03 -133190368,E42,13108541,Medical Incident,11/15/2013,11/15/2013,11/15/2013 09:59:57 PM,11/15/2013 10:02:54 PM,11/15/2013 10:03:04 PM,11/15/2013 10:04:34 PM,11/15/2013 10:06:34 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/15/2013 10:14:54 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",133190368-E42 -111060093,73,11035006,Medical Incident,04/16/2011,04/16/2011,04/16/2011 08:14:16 AM,04/16/2011 08:15:08 AM,04/16/2011 08:15:19 AM,04/16/2011 08:15:34 AM,04/16/2011 08:19:58 AM,04/16/2011 08:37:52 AM,04/16/2011 08:54:15 AM,Code 2 Transport,04/16/2011 09:17:01 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",111060093-73 -121720371,RS1,12057281,Medical Incident,06/20/2012,06/20/2012,06/20/2012 10:58:09 PM,06/20/2012 10:59:32 PM,06/20/2012 11:00:20 PM,06/20/2012 11:00:36 PM,06/20/2012 11:03:20 PM,04/25/2016 01:58:06 PM,04/25/2016 01:58:06 PM,Other,06/20/2012 11:12:51 PM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,3,3,false,Non Life-threatening,1,RESCUE SQUAD,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",121720371-RS1 -131740016,93,13058897,Medical Incident,06/23/2013,06/22/2013,06/23/2013 01:04:52 AM,06/23/2013 01:05:16 AM,06/23/2013 01:06:01 AM,06/23/2013 01:06:24 AM,06/23/2013 01:10:42 AM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Against Medical Advice,06/23/2013 01:40:30 AM,1800 Block of WALLER ST,SF,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",131740016-93 -110470146,E03,11015501,Medical Incident,02/16/2011,02/16/2011,02/16/2011 10:24:14 AM,02/16/2011 10:27:12 AM,02/16/2011 10:28:12 AM,02/16/2011 10:28:54 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 10:29:16 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,2,2,2,true,,1,ENGINE,4,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",110470146-E03 -102390381,64,10075548,Medical Incident,08/27/2010,08/27/2010,08/27/2010 11:15:29 PM,08/27/2010 11:16:12 PM,08/27/2010 11:16:56 PM,08/27/2010 11:17:37 PM,08/27/2010 11:22:33 PM,08/27/2010 11:42:22 PM,08/27/2010 11:58:18 PM,Code 2 Transport,08/28/2010 12:18:57 AM,1400 Block of SHAFTER AVE,SF,94124,B10,17,6571,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7294942313003, -122.387879447239)",102390381-64 -160192234,86,16007689,Medical Incident,01/19/2016,01/19/2016,01/19/2016 03:06:45 PM,01/19/2016 03:06:45 PM,01/19/2016 03:07:14 PM,01/19/2016 03:07:25 PM,01/19/2016 03:22:12 PM,01/19/2016 03:36:17 PM,01/19/2016 03:48:23 PM,Code 2 Transport,01/19/2016 04:27:57 PM,0 Block of OTTAWA AVE,San Francisco,94112,B09,33,8345,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7149003593012, -122.445241796834)",160192234-86 -160900794,67,16035629,Medical Incident,03/30/2016,03/30/2016,03/30/2016 08:23:35 AM,03/30/2016 08:24:58 AM,03/30/2016 08:25:39 AM,03/30/2016 08:25:48 AM,03/30/2016 08:36:08 AM,03/30/2016 09:05:13 AM,03/30/2016 09:34:48 AM,Code 3 Transport,03/30/2016 10:46:55 AM,2400 Block of POST ST,San Francisco,94115,B05,10,4235,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7840561914976, -122.442179800386)",160900794-67 -133050334,T13,13103748,Citizen Assist / Service Call,11/01/2013,11/01/2013,11/01/2013 04:28:13 PM,11/01/2013 04:29:28 PM,11/01/2013 04:29:52 PM,11/01/2013 04:31:11 PM,11/01/2013 04:35:03 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/01/2013 04:38:51 PM,KEARNY ST/POST ST,SF,94104,B01,13,1236,3,3,3,false,Alarm,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7888944287124, -122.403660676968)",133050334-T13 -132590052,T19,13087507,Citizen Assist / Service Call,09/16/2013,09/15/2013,09/16/2013 07:07:36 AM,09/16/2013 07:08:50 AM,09/16/2013 07:09:27 AM,09/16/2013 07:11:31 AM,09/16/2013 07:14:51 AM,04/25/2016 01:50:46 PM,04/25/2016 01:50:46 PM,Other,09/16/2013 07:18:04 AM,100 Block of MIDDLEFIELD DR,SF,94132,B08,19,8742,3,3,3,false,Alarm,1,TRUCK,1,8,7,Sunset/Parkside,"(37.731561624535, -122.4861577036)",132590052-T19 -132830160,E19,13096280,Structure Fire,10/10/2013,10/10/2013,10/10/2013 11:37:45 AM,10/10/2013 11:37:45 AM,10/10/2013 11:38:00 AM,10/10/2013 11:39:37 AM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/10/2013 11:39:46 AM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,3,3,3,true,Alarm,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",132830160-E19 -112320045,E10,11076477,Medical Incident,08/20/2011,08/19/2011,08/20/2011 04:23:11 AM,08/20/2011 04:24:48 AM,08/20/2011 04:25:53 AM,08/20/2011 04:27:39 AM,08/20/2011 04:31:24 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 04:34:56 AM,2500 Block of PIERCE ST,SF,94115,B04,38,3653,3,3,3,true,,1,ENGINE,2,4,2,Pacific Heights,"(37.7933971056586, -122.438047227042)",112320045-E10 -112680198,T12,11088589,Structure Fire,09/25/2011,09/25/2011,09/25/2011 01:01:43 PM,09/25/2011 01:01:43 PM,09/25/2011 01:01:48 PM,09/25/2011 01:02:32 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 01:04:56 PM,1200 Block of 9TH AVE,SF,94122,B08,22,7333,3,3,3,false,,1,TRUCK,2,7,5,Inner Sunset,"(37.7649838689096, -122.466307471227)",112680198-T12 -160151523,KM08,16005968,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:49:21 AM,01/15/2016 11:49:33 AM,01/15/2016 11:50:02 AM,01/15/2016 11:50:43 AM,01/15/2016 11:54:33 AM,01/15/2016 12:09:25 PM,01/15/2016 12:22:46 PM,Code 2 Transport,01/15/2016 01:09:25 PM,1100 Block of POWELL ST,San Francisco,94108,B01,2,1354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.7951679550596, -122.409878515576)",160151523-KM08 -130410279,77,13014112,Medical Incident,02/10/2013,02/10/2013,02/10/2013 06:53:12 PM,02/10/2013 06:56:22 PM,02/10/2013 06:56:55 PM,02/10/2013 06:59:36 PM,02/10/2013 07:07:56 PM,02/10/2013 07:24:56 PM,02/10/2013 07:35:11 PM,Code 2 Transport,02/10/2013 07:51:54 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,1,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",130410279-77 -111330206,E43,11044085,Medical Incident,05/13/2011,05/13/2011,05/13/2011 02:53:51 PM,05/13/2011 02:55:51 PM,05/13/2011 02:56:18 PM,05/13/2011 02:58:37 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,04/25/2016 02:04:39 PM,Other,05/13/2011 03:05:31 PM,900 Block of GENEVA AVE,SF,94112,B09,43,6175,3,3,3,true,,1,ENGINE,3,9,11,Excelsior,"(37.7159411510558, -122.439784371506)",111330206-E43 -132990315,E07,13101705,Medical Incident,10/26/2013,10/26/2013,10/26/2013 06:53:56 PM,10/26/2013 06:55:20 PM,10/26/2013 06:55:55 PM,10/26/2013 06:56:45 PM,10/26/2013 07:00:36 PM,04/25/2016 01:50:04 PM,04/25/2016 01:50:04 PM,Other,10/26/2013 07:13:27 PM,2900 Block of 24TH ST,SF,94110,B06,7,5527,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7526019706042, -122.411426024108)",132990315-E07 -112640024,E01,11087067,Alarms,09/21/2011,09/20/2011,09/21/2011 01:48:35 AM,09/21/2011 01:50:09 AM,09/21/2011 01:50:37 AM,09/21/2011 01:52:10 AM,09/21/2011 01:55:12 AM,04/25/2016 02:02:34 PM,04/25/2016 02:02:34 PM,Other,09/21/2011 02:03:24 AM,1100 Block of MISSION ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7785895740312, -122.411626152299)",112640024-E01 -111750171,E07,11057670,Medical Incident,06/24/2011,06/24/2011,06/24/2011 12:11:47 PM,06/24/2011 12:13:28 PM,06/24/2011 12:14:57 PM,06/24/2011 12:16:28 PM,06/24/2011 12:19:57 PM,04/25/2016 02:04:00 PM,04/25/2016 02:04:00 PM,Other,06/24/2011 12:29:13 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",111750171-E07 -123150007,AM22,12104686,Medical Incident,11/10/2012,11/09/2012,11/10/2012 12:26:11 AM,11/10/2012 12:26:37 AM,11/10/2012 12:27:48 AM,11/10/2012 12:29:02 AM,11/10/2012 12:33:26 AM,11/10/2012 12:45:02 AM,11/10/2012 01:07:12 AM,Code 2 Transport,11/10/2012 01:35:41 AM,MONTGOMERY ST/SUTTER ST,SF,94104,B01,13,1164,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7900390948551, -122.40218964437)",123150007-AM22 -132590265,E01,13087677,Medical Incident,09/16/2013,09/16/2013,09/16/2013 03:24:29 PM,09/16/2013 03:26:03 PM,09/16/2013 03:27:55 PM,09/16/2013 03:29:27 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Other,09/16/2013 03:31:44 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,E,3,true,Potentially Life-Threatening,1,ENGINE,5,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",132590265-E01 -160161875,63,16006436,Medical Incident,01/16/2016,01/16/2016,01/16/2016 01:50:30 PM,01/16/2016 01:51:44 PM,01/16/2016 01:53:51 PM,01/16/2016 01:54:02 PM,01/16/2016 02:01:24 PM,01/16/2016 02:11:26 PM,01/16/2016 02:17:13 PM,Code 3 Transport,01/16/2016 02:22:18 PM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160161875-63 -133500272,65,13118882,Medical Incident,12/16/2013,12/16/2013,12/16/2013 03:02:52 PM,12/16/2013 03:04:03 PM,12/16/2013 03:15:24 PM,04/25/2016 01:49:14 PM,12/16/2013 03:15:39 PM,12/16/2013 03:26:34 PM,12/16/2013 03:34:48 PM,Code 2 Transport,12/16/2013 03:48:36 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",133500272-65 -111640082,E01,11054051,Medical Incident,06/13/2011,06/12/2011,06/13/2011 07:54:41 AM,06/13/2011 07:55:29 AM,06/13/2011 07:55:53 AM,06/13/2011 07:58:12 AM,06/13/2011 08:00:28 AM,06/13/2011 08:16:54 AM,04/25/2016 02:04:11 PM,Other,06/13/2011 08:38:08 AM,700 Block of FOLSOM ST,SF,94107,B03,1,2176,3,2,2,true,,1,ENGINE,1,3,6,South of Market,"(37.7831757914875, -122.399603541822)",111640082-E01 -112140018,75,11070488,Medical Incident,08/02/2011,08/01/2011,08/02/2011 01:10:30 AM,08/02/2011 01:10:48 AM,08/02/2011 01:11:04 AM,08/02/2011 01:11:09 AM,08/02/2011 01:16:04 AM,08/02/2011 01:31:16 AM,08/02/2011 01:38:56 AM,Code 3 Transport,08/02/2011 02:04:56 AM,4200 Block of JUDAH ST,SF,94122,B08,23,7723,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7602986009431, -122.507529535954)",112140018-75 -120660093,T16,12021755,Alarms,03/06/2012,03/06/2012,03/06/2012 09:03:27 AM,03/06/2012 09:04:36 AM,03/06/2012 09:05:17 AM,03/06/2012 09:07:23 AM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/06/2012 09:16:36 AM,1700 Block of NORTH POINT ST,SF,94123,B04,16,3455,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.8036586225471, -122.436019366977)",120660093-T16 -160652260,55,16025982,Medical Incident,03/05/2016,03/05/2016,03/05/2016 04:02:18 PM,03/05/2016 04:03:04 PM,03/05/2016 04:03:52 PM,03/05/2016 04:04:10 PM,03/05/2016 04:18:21 PM,03/05/2016 05:05:30 PM,03/05/2016 05:15:23 PM,Code 2 Transport,03/05/2016 05:55:03 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160652260-55 -160301268,52,16011732,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:05:55 AM,01/30/2016 10:07:43 AM,01/30/2016 10:08:03 AM,01/30/2016 10:08:15 AM,01/30/2016 10:16:36 AM,01/30/2016 10:32:45 AM,01/30/2016 11:08:28 AM,Code 2 Transport,01/30/2016 11:35:14 AM,4TH ST/MARKET ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",160301268-52 -140690212,E03,14023307,Medical Incident,03/10/2014,03/10/2014,03/10/2014 02:42:51 PM,03/10/2014 02:44:57 PM,03/10/2014 02:45:37 PM,03/10/2014 02:46:46 PM,03/10/2014 02:49:02 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Code 2 Transport,03/10/2014 03:10:53 PM,300 Block of LEAVENWORTH ST,SAN FRANCISCO,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",140690212-E03 -120340179,E05,12011259,Alarms,02/03/2012,02/03/2012,02/03/2012 12:24:40 PM,02/03/2012 12:24:40 PM,02/03/2012 12:25:18 PM,02/03/2012 12:26:16 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/03/2012 12:26:31 PM,600 Block of LARKIN ST,SF,94109,B02,3,1643,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",120340179-E05 -121150183,RC2,12038145,Medical Incident,04/24/2012,04/24/2012,04/24/2012 01:27:29 PM,04/24/2012 01:28:36 PM,04/24/2012 01:30:33 PM,04/24/2012 01:36:02 PM,04/24/2012 01:37:25 PM,04/25/2016 01:59:01 PM,04/25/2016 01:59:01 PM,Other,04/24/2012 01:47:03 PM,5000 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Outer Richmond,"(37.7804797722842, -122.47339937646)",121150183-RC2 -110020207,AM06,11000683,Medical Incident,01/02/2011,01/02/2011,01/02/2011 02:32:54 PM,01/02/2011 02:35:40 PM,01/02/2011 02:36:21 PM,01/02/2011 02:38:50 PM,01/02/2011 02:42:35 PM,01/02/2011 02:46:43 PM,01/02/2011 03:07:21 PM,Code 2 Transport,01/02/2011 03:43:42 PM,5400 Block of 3RD ST,SF,94124,B10,17,6536,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7280754569094, -122.392931662742)",110020207-AM06 -130390355,E36,13013453,Structure Fire,02/08/2013,02/08/2013,02/08/2013 08:53:40 PM,02/08/2013 08:54:26 PM,02/08/2013 08:54:38 PM,02/08/2013 08:55:46 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/08/2013 09:00:22 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Alarm,1,ENGINE,7,3,6,South of Market,"(37.7803475492385, -122.406487967809)",130390355-E36 -121980245,E38,12065860,Structure Fire,07/16/2012,07/16/2012,07/16/2012 05:06:53 PM,07/16/2012 05:08:50 PM,07/16/2012 05:09:09 PM,07/16/2012 05:10:21 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 05:14:18 PM,1600 Block of LOMBARD ST,SF,94123,B04,16,3244,3,3,3,true,Fire,1,ENGINE,9,4,2,Marina,"(37.800665922599, -122.428624511812)",121980245-E38 -102850231,T02,10090774,Alarms,10/12/2010,10/12/2010,10/12/2010 12:45:15 PM,10/12/2010 12:46:21 PM,10/12/2010 12:46:35 PM,10/12/2010 12:48:04 PM,10/12/2010 12:53:33 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 12:57:36 PM,300 Block of SPEAR ST,SF,94105,B03,35,2113,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7894924999912, -122.390150869347)",102850231-T02 -122760136,E09,12091074,Medical Incident,10/02/2012,10/02/2012,10/02/2012 10:11:06 AM,10/02/2012 10:11:43 AM,10/02/2012 10:11:52 AM,10/02/2012 10:14:03 AM,10/02/2012 10:16:43 AM,04/25/2016 01:56:30 PM,04/25/2016 01:56:30 PM,Other,10/02/2012 10:20:09 AM,24TH ST/BRYANT ST,SF,94110,B06,9,5532,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7527955849274, -122.409129910252)",122760136-E09 -130450218,E03,13015278,Traffic Collision,02/14/2013,02/14/2013,02/14/2013 01:48:32 PM,02/14/2013 01:48:55 PM,02/14/2013 01:49:22 PM,02/14/2013 01:49:45 PM,02/14/2013 01:51:34 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 01:53:07 PM,1600 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7905281969646, -122.421519114092)",130450218-E03 -160513151,58,16020610,Medical Incident,02/20/2016,02/20/2016,02/20/2016 09:14:55 PM,02/20/2016 09:17:11 PM,02/20/2016 09:18:32 PM,02/20/2016 09:19:34 PM,02/20/2016 09:34:25 PM,02/20/2016 09:44:33 PM,02/20/2016 10:03:00 PM,Code 2 Transport,02/20/2016 10:32:51 PM,FONT BL/ARBALLO DR,San Francisco,94132,B08,19,8681,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7217846884207, -122.482305620613)",160513151-58 -111070306,E25,11035506,Alarms,04/17/2011,04/17/2011,04/17/2011 08:55:13 PM,04/17/2011 08:56:01 PM,04/17/2011 08:56:12 PM,04/17/2011 08:56:43 PM,04/17/2011 08:58:52 PM,04/25/2016 02:05:03 PM,04/25/2016 02:05:03 PM,Other,04/17/2011 09:06:17 PM,300 Block of NEWHALL ST,SF,94124,B10,25,6457,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7425496105821, -122.3854005001)",111070306-E25 -110390046,T03,11012827,Medical Incident,02/08/2011,02/07/2011,02/08/2011 04:25:49 AM,02/08/2011 04:26:56 AM,02/08/2011 04:27:09 AM,02/08/2011 04:29:35 AM,02/08/2011 04:31:00 AM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 04:35:20 AM,700 Block of EDDY ST,SF,94109,B02,3,3163,3,2,2,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",110390046-T03 -160781018,AM02,16030950,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:09:38 AM,03/18/2016 09:10:49 AM,03/18/2016 09:12:05 AM,03/18/2016 09:12:45 AM,03/18/2016 09:19:56 AM,03/18/2016 09:31:02 AM,03/18/2016 09:43:54 AM,Code 2 Transport,03/18/2016 10:25:35 AM,MASONIC AV/EUCLID AV,San Francisco,94118,B05,10,4411,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7850836353893, -122.447620106945)",160781018-AM02 -103520195,E15,10112978,Medical Incident,12/18/2010,12/18/2010,12/18/2010 01:10:36 PM,12/18/2010 01:11:15 PM,12/18/2010 01:11:21 PM,04/25/2016 02:07:03 PM,12/18/2010 01:20:45 PM,12/18/2010 01:33:08 PM,04/25/2016 02:07:03 PM,Other,12/18/2010 02:01:12 PM,100 Block of OTSEGO AVE,SF,94112,B09,15,8275,3,3,3,true,,1,ENGINE,3,9,11,Outer Mission,"(37.7253605704115, -122.44007723688)",103520195-E15 -131010044,E06,13033846,Medical Incident,04/11/2013,04/10/2013,04/11/2013 05:23:13 AM,04/11/2013 05:24:40 AM,04/11/2013 05:24:56 AM,04/11/2013 05:27:50 AM,04/11/2013 05:29:59 AM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,No Merit,04/11/2013 05:39:12 AM,2400 Block of MARKET ST,SF,94114,B05,6,5259,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.762464178633, -122.435763564444)",131010044-E06 -120610044,KM10,12019935,Medical Incident,03/01/2012,02/29/2012,03/01/2012 04:12:24 AM,03/01/2012 04:16:47 AM,03/01/2012 04:17:09 AM,03/01/2012 04:18:27 AM,03/01/2012 04:35:11 AM,03/01/2012 04:45:05 AM,03/01/2012 05:10:41 AM,Code 2 Transport,03/01/2012 05:44:51 AM,800 Block of INNES AVE,SF,94124,B10,25,6632,1,1,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7322910475588, -122.376157905497)",120610044-KM10 -110060103,55,11001912,Medical Incident,01/06/2011,01/06/2011,01/06/2011 09:05:04 AM,01/06/2011 09:08:08 AM,01/06/2011 09:08:25 AM,01/06/2011 09:08:41 AM,01/06/2011 09:12:39 AM,01/06/2011 09:40:54 AM,01/06/2011 09:52:56 AM,Code 2 Transport,01/06/2011 10:12:57 AM,1400 Block of LEAVENWORTH ST,SF,94109,B01,41,1535,3,3,3,true,,1,MEDIC,2,1,3,Russian Hill,"(37.7943258846738, -122.416450548399)",110060103-55 -111190028,E07,11039125,Medical Incident,04/29/2011,04/28/2011,04/29/2011 02:53:19 AM,04/29/2011 02:55:33 AM,04/29/2011 02:56:52 AM,04/29/2011 02:58:19 AM,04/29/2011 02:59:45 AM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/29/2011 03:03:59 AM,3300 Block of 20TH ST,SF,94110,B06,7,5447,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7588083436412, -122.415229420851)",111190028-E07 -131630148,CD1,13055344,Other,06/12/2013,06/12/2013,06/12/2013 11:02:29 AM,06/12/2013 11:04:02 AM,06/12/2013 11:48:18 AM,04/25/2016 01:52:20 PM,06/12/2013 11:44:22 AM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,Other,06/12/2013 02:04:47 PM,MARKET ST/6TH ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,CHIEF,17,3,6,South of Market,"(37.7822305756448, -122.410292026777)",131630148-CD1 -132850357,B02,13097105,Structure Fire,10/12/2013,10/12/2013,10/12/2013 11:04:30 PM,10/12/2013 11:05:27 PM,10/12/2013 11:05:50 PM,10/12/2013 11:07:03 PM,10/12/2013 11:08:46 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/12/2013 11:31:24 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,2,2,6,South of Market,"(37.7760099210785, -122.412889415461)",132850357-B02 -102980329,E07,10095269,Medical Incident,10/25/2010,10/25/2010,10/25/2010 07:25:37 PM,10/25/2010 07:26:59 PM,10/25/2010 07:27:38 PM,10/25/2010 07:28:56 PM,10/25/2010 07:32:34 PM,04/25/2016 02:07:55 PM,04/25/2016 02:07:55 PM,Other,10/25/2010 07:35:25 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,527,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7677413424145, -122.415468956066)",102980329-E07 -103230352,E17,10103614,Medical Incident,11/19/2010,11/19/2010,11/19/2010 08:35:11 PM,11/19/2010 08:35:51 PM,11/19/2010 08:36:21 PM,11/19/2010 08:37:12 PM,11/19/2010 08:49:47 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Other,11/19/2010 08:49:51 PM,1500 Block of UNDERWOOD AVE,SF,94124,B10,17,6547,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7292122545104, -122.390956947476)",103230352-E17 -140040066,85,14001351,Medical Incident,01/04/2014,01/03/2014,01/04/2014 07:19:13 AM,01/04/2014 07:20:06 AM,01/04/2014 07:20:19 AM,01/04/2014 07:20:28 AM,01/04/2014 07:28:53 AM,01/04/2014 07:54:14 AM,01/04/2014 07:56:38 AM,Code 2 Transport,01/04/2014 08:31:20 AM,SAN BRUNO AV/22ND ST,SF,94110,B10,37,2551,3,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7569521955647, -122.404732268579)",140040066-85 -103200165,AM04,10102542,Medical Incident,11/16/2010,11/16/2010,11/16/2010 11:15:22 AM,11/16/2010 11:17:20 AM,11/16/2010 11:21:37 AM,11/16/2010 11:22:16 AM,11/16/2010 11:32:13 AM,11/16/2010 11:44:58 AM,11/16/2010 11:51:10 AM,Code 2 Transport,11/16/2010 12:04:18 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,1,1,2,false,,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",103200165-AM04 -160241958,82,16009547,Medical Incident,01/24/2016,01/24/2016,01/24/2016 02:30:12 PM,01/24/2016 02:32:55 PM,01/24/2016 02:33:13 PM,01/24/2016 02:33:53 PM,01/24/2016 02:57:37 PM,01/24/2016 03:03:05 PM,01/24/2016 03:14:23 PM,Code 2 Transport,01/24/2016 03:50:42 PM,1000 Block of FILLMORE ST,San Francisco,94115,B05,5,3534,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7790893832209, -122.431925839018)",160241958-82 -160854076,60,16034001,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:38:57 PM,03/25/2016 10:41:30 PM,03/25/2016 10:42:43 PM,03/25/2016 10:42:51 PM,03/25/2016 10:57:17 PM,03/25/2016 11:13:48 PM,03/25/2016 11:41:06 PM,Code 2 Transport,03/25/2016 11:59:31 PM,700 Block of MISSION ST,San Francisco,94103,B03,1,2178,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.785285764493, -122.403048297938)",160854076-60 -103020231,B10,10096527,Structure Fire,10/29/2010,10/29/2010,10/29/2010 04:31:49 PM,10/29/2010 04:32:40 PM,10/29/2010 04:32:58 PM,10/29/2010 04:34:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/29/2010 04:40:18 PM,200 Block of CHATTANOOGA ST,SF,94114,B06,11,5513,3,3,3,false,,1,CHIEF,6,6,8,Noe Valley,"(37.7525614549641, -122.426474367018)",103020231-B10 -132220054,AM18,13074858,Medical Incident,08/10/2013,08/09/2013,08/10/2013 03:41:12 AM,08/10/2013 03:42:34 AM,08/10/2013 03:42:56 AM,08/10/2013 03:43:24 AM,08/10/2013 03:50:36 AM,08/10/2013 03:53:49 AM,08/10/2013 04:04:42 AM,Code 2 Transport,08/10/2013 04:16:39 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",132220054-AM18 -121470006,RC1,12048653,Medical Incident,05/26/2012,05/25/2012,05/26/2012 12:36:16 AM,05/26/2012 12:37:32 AM,05/26/2012 12:37:57 AM,05/26/2012 12:39:19 AM,05/26/2012 12:42:39 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/26/2012 12:56:31 AM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",121470006-RC1 -160560999,KM04,16022309,Medical Incident,02/25/2016,02/25/2016,02/25/2016 09:29:33 AM,02/25/2016 09:30:07 AM,02/25/2016 09:30:40 AM,02/25/2016 09:31:04 AM,02/25/2016 09:46:41 AM,02/25/2016 10:02:51 AM,02/25/2016 10:36:07 AM,Code 2 Transport,02/25/2016 11:01:22 AM,700 Block of VALLEJO ST,San Francisco,94133,B01,2,1333,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",160560999-KM04 -160680306,59,16026985,Medical Incident,03/08/2016,03/07/2016,03/08/2016 04:19:23 AM,03/08/2016 04:20:57 AM,03/08/2016 04:24:18 AM,03/08/2016 04:24:31 AM,03/08/2016 04:49:08 AM,03/08/2016 04:49:17 AM,03/08/2016 05:01:29 AM,Code 2 Transport,03/08/2016 05:47:46 AM,2500 Block of LOMBARD ST,San Francisco,94123,B04,16,4223,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7987928005482, -122.443462866558)",160680306-59 -110110209,RC3,11003695,Traffic Collision,01/11/2011,01/11/2011,01/11/2011 02:50:31 PM,01/11/2011 02:52:41 PM,01/11/2011 02:53:27 PM,01/11/2011 02:55:18 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,04/25/2016 02:06:39 PM,Other,01/11/2011 02:55:57 PM,200 Block of GENEVA AVE,SF,94112,B09,15,8313,3,3,3,true,,1,RESCUE CAPTAIN,2,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",110110209-RC3 -160852675,88,16033865,Medical Incident,03/25/2016,03/25/2016,03/25/2016 04:42:43 PM,03/25/2016 04:44:00 PM,03/25/2016 04:44:21 PM,03/25/2016 04:45:25 PM,03/25/2016 04:58:08 PM,03/25/2016 04:58:09 PM,03/25/2016 05:07:03 PM,Code 2 Transport,03/25/2016 05:29:48 PM,1300 Block of OAKDALE AVE,San Francisco,94124,B10,17,653,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.732342352455, -122.386280381355)",160852675-88 -120620218,B01,12020413,Alarms,03/02/2012,03/02/2012,03/02/2012 02:11:07 PM,03/02/2012 02:12:45 PM,03/02/2012 02:13:00 PM,03/02/2012 02:13:14 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/02/2012 02:18:02 PM,200 Block of MARKET ST,SF,94105,B03,13,2818,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7926791171072, -122.396853499969)",120620218-B01 -160610250,64,16024163,Medical Incident,03/01/2016,02/29/2016,03/01/2016 02:57:52 AM,03/01/2016 03:02:46 AM,03/01/2016 03:03:11 AM,03/01/2016 03:04:42 AM,03/01/2016 03:09:15 AM,03/01/2016 03:20:34 AM,03/01/2016 03:48:02 AM,Code 2 Transport,03/01/2016 04:50:45 AM,0 Block of WOODWARD ST,San Francisco,94103,B02,36,5215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7690757517644, -122.420788636046)",160610250-64 -102610055,KM15,10082395,Medical Incident,09/18/2010,09/17/2010,09/18/2010 02:58:44 AM,09/18/2010 02:59:59 AM,09/18/2010 03:00:23 AM,09/18/2010 03:01:29 AM,09/18/2010 03:05:43 AM,09/18/2010 03:16:08 AM,09/18/2010 03:22:42 AM,Other,09/18/2010 03:45:15 AM,500 Block of SUTTER ST,SF,94108,B01,3,1412,3,3,3,false,,1,PRIVATE,2,1,3,Nob Hill,"(37.7891752137903, -122.409429683066)",102610055-KM15 -140880285,T02,14029741,Alarms,03/29/2014,03/29/2014,03/29/2014 06:50:51 PM,03/29/2014 06:52:30 PM,03/29/2014 06:52:51 PM,03/29/2014 06:54:45 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,04/25/2016 01:47:29 PM,Fire,03/29/2014 06:55:00 PM,1100 Block of FILBERT ST,SAN FRANCISCO,94109,B01,28,1532,3,3,3,false,Alarm,1,TRUCK,3,1,2,Russian Hill,"(37.8002916170822, -122.418420789983)",140880285-T02 -121480267,KM04,12049187,Medical Incident,05/27/2012,05/27/2012,05/27/2012 05:34:42 PM,05/27/2012 05:35:19 PM,05/27/2012 05:35:54 PM,05/27/2012 05:36:56 PM,05/27/2012 05:39:13 PM,05/27/2012 05:45:20 PM,05/27/2012 06:02:12 PM,Code 3 Transport,05/27/2012 06:22:38 PM,DIVISADERO ST/GREEN ST,SF,94123,B04,16,4225,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7953206146714, -122.441902242617)",121480267-KM04 -103340220,E19,10106902,Medical Incident,11/30/2010,11/30/2010,11/30/2010 02:38:08 PM,11/30/2010 02:38:37 PM,11/30/2010 02:38:56 PM,11/30/2010 02:40:42 PM,11/30/2010 02:43:02 PM,04/25/2016 02:07:21 PM,11/30/2010 03:21:31 PM,Other,11/30/2010 03:32:08 PM,100 Block of CRESPI DR,SF,94132,B08,19,8426,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7188273542437, -122.476730070107)",103340220-E19 -121770167,AM06,12058869,Medical Incident,06/25/2012,06/25/2012,06/25/2012 12:07:20 PM,06/25/2012 12:08:38 PM,06/25/2012 12:08:51 PM,06/25/2012 12:09:22 PM,04/25/2016 01:58:02 PM,06/25/2012 12:25:04 PM,06/25/2012 12:41:37 PM,Code 2 Transport,06/25/2012 01:18:15 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",121770167-AM06 -122050098,AM02,12068102,Medical Incident,07/23/2012,07/23/2012,07/23/2012 09:14:25 AM,07/23/2012 09:16:57 AM,07/23/2012 09:17:33 AM,07/23/2012 09:18:19 AM,07/23/2012 09:27:43 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,No Merit,07/23/2012 09:27:49 AM,2500 Block of MISSION ST,SF,94110,B06,7,5472,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7562319946436, -122.418893283075)",122050098-AM02 -102620267,E01,10082957,Medical Incident,09/19/2010,09/19/2010,09/19/2010 05:13:52 PM,09/19/2010 05:16:35 PM,09/19/2010 05:16:56 PM,09/19/2010 05:18:19 PM,09/19/2010 05:21:52 PM,04/25/2016 02:08:31 PM,04/25/2016 02:08:31 PM,Other,09/19/2010 05:23:55 PM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7768521020734, -122.410711239368)",102620267-E01 -140220186,T12,14007513,Structure Fire,01/22/2014,01/22/2014,01/22/2014 01:21:04 PM,01/22/2014 01:21:05 PM,01/22/2014 01:21:14 PM,01/22/2014 01:22:08 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,04/25/2016 01:48:36 PM,Other,01/22/2014 01:24:49 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,3,3,3,false,Alarm,1,TRUCK,2,8,5,Inner Sunset,"(37.7632029010129, -122.464037930237)",140220186-T12 -120620023,99,12020245,Medical Incident,03/02/2012,03/01/2012,03/02/2012 02:09:11 AM,03/02/2012 02:09:40 AM,03/02/2012 02:12:53 AM,03/02/2012 02:13:11 AM,03/02/2012 02:25:53 AM,03/02/2012 02:40:34 AM,03/02/2012 02:51:48 AM,Code 2 Transport,03/02/2012 03:25:20 AM,BROADWAY/BARTOL ST,SF,94133,B01,13,1231,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7982680694557, -122.403519546545)",120620023-99 -130400270,E13,13013740,Medical Incident,02/09/2013,02/09/2013,02/09/2013 04:55:29 PM,02/09/2013 04:56:02 PM,02/09/2013 04:56:11 PM,02/09/2013 04:58:17 PM,02/09/2013 04:59:52 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 05:07:29 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",130400270-E13 -160532762,83,16021329,Medical Incident,02/22/2016,02/22/2016,02/22/2016 05:59:55 PM,02/22/2016 06:04:12 PM,02/22/2016 06:04:20 PM,02/22/2016 06:04:25 PM,02/22/2016 06:16:13 PM,02/22/2016 06:29:18 PM,02/22/2016 07:01:30 PM,Code 2 Transport,02/22/2016 09:06:46 PM,3000 Block of HARRISON ST,San Francisco,94110,B06,9,5622,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7491884934163, -122.411638550839)",160532762-83 -160280954,AM02,16011017,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:22:45 AM,01/28/2016 09:26:16 AM,01/28/2016 09:26:59 AM,01/28/2016 09:28:04 AM,01/28/2016 09:34:16 AM,01/28/2016 09:50:55 AM,01/28/2016 10:06:47 AM,Code 3 Transport,01/28/2016 10:43:37 AM,100 Block of CLEARFIELD DR,San Francisco,94132,B08,19,8816,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Sunset/Parkside,"(37.7301504530726, -122.491254292437)",160280954-AM02 -130870168,E32,13028999,Medical Incident,03/28/2013,03/28/2013,03/28/2013 12:17:29 PM,03/28/2013 12:18:19 PM,03/28/2013 12:18:41 PM,03/28/2013 12:19:30 PM,03/28/2013 12:21:52 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 12:38:07 PM,400 Block of NEVADA ST,SF,94110,B10,32,5736,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7363710737067, -122.411602118744)",130870168-E32 -160131016,57,16005117,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:25:04 AM,01/13/2016 09:27:56 AM,01/13/2016 09:29:15 AM,01/13/2016 09:29:59 AM,01/13/2016 09:44:16 AM,01/13/2016 09:55:09 AM,01/13/2016 10:14:59 AM,Code 2 Transport,01/13/2016 10:55:13 AM,400 Block of LAKEVIEW AVE,San Francisco,94112,B09,33,8323,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7180076683643, -122.453703341526)",160131016-57 -133130208,E13,13106391,Outside Fire,11/09/2013,11/09/2013,11/09/2013 12:53:01 PM,11/09/2013 12:53:35 PM,11/09/2013 12:53:59 PM,11/09/2013 12:55:46 PM,11/09/2013 12:56:58 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/09/2013 01:01:34 PM,WASHINGTON ST/KEARNY ST,SF,94108,B01,13,1245,3,3,3,true,Fire,1,ENGINE,1,1,3,Chinatown,"(37.7953266906824, -122.404957209767)",133130208-E13 -102990219,67,10095485,Medical Incident,10/26/2010,10/26/2010,10/26/2010 01:56:28 PM,10/26/2010 01:57:37 PM,10/26/2010 01:58:07 PM,04/25/2016 02:07:55 PM,10/26/2010 02:10:23 PM,10/26/2010 02:19:43 PM,10/26/2010 02:33:06 PM,Code 2 Transport,10/26/2010 02:58:33 PM,1400 Block of HARRISON ST,SF,94103,B02,36,5112,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7711432135825, -122.411927732518)",102990219-67 -160740874,64,16029243,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:56:06 AM,03/14/2016 08:56:06 AM,03/14/2016 08:56:35 AM,03/14/2016 08:56:42 AM,03/14/2016 08:59:34 AM,03/14/2016 09:20:14 AM,03/14/2016 09:45:38 AM,Code 2 Transport,03/14/2016 10:14:22 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160740874-64 -122250027,54,12074488,Structure Fire,08/12/2012,08/11/2012,08/12/2012 02:10:19 AM,08/12/2012 02:11:07 AM,08/12/2012 02:11:36 AM,08/12/2012 02:13:03 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 02:21:09 AM,2000 Block of MCALLISTER ST,SF,94118,B05,21,4462,3,3,3,true,Fire,1,MEDIC,8,5,5,Lone Mountain/USF,"(37.7769038844357, -122.445824245144)",122250027-54 -122280257,79,12075614,Medical Incident,08/15/2012,08/15/2012,08/15/2012 04:09:07 PM,08/15/2012 04:09:35 PM,08/15/2012 04:10:46 PM,08/15/2012 04:10:59 PM,08/15/2012 04:26:53 PM,08/15/2012 04:46:12 PM,08/15/2012 05:05:18 PM,Code 2 Transport,08/15/2012 05:27:35 PM,1500 Block of NEWCOMB AV,SF,94124,B10,17,6515,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7346630758042, -122.388898246024)",122280257-79 -123150209,RC3,12104850,Medical Incident,11/10/2012,11/10/2012,11/10/2012 01:55:02 PM,11/10/2012 01:55:02 PM,11/10/2012 01:55:02 PM,04/25/2016 01:55:51 PM,11/10/2012 01:58:03 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 02:11:39 PM,0 Block of JONES ST,SF,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",123150209-RC3 -160243444,KM03,16009707,Medical Incident,01/24/2016,01/24/2016,01/24/2016 10:16:27 PM,01/24/2016 10:17:35 PM,01/24/2016 10:17:46 PM,01/24/2016 10:18:25 PM,01/24/2016 10:32:02 PM,01/24/2016 10:35:09 PM,01/24/2016 10:40:41 PM,Code 2 Transport,01/24/2016 11:38:05 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160243444-KM03 -110600154,E43,11019670,Medical Incident,03/01/2011,03/01/2011,03/01/2011 12:21:37 PM,03/01/2011 12:21:53 PM,03/01/2011 12:22:25 PM,03/01/2011 12:24:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,03/01/2011 12:44:38 PM,300 Block of MOSCOW ST,SF,94112,B09,43,6155,3,2,2,false,,1,ENGINE,2,9,11,Excelsior,"(37.7220697351307, -122.427115807241)",110600154-E43 -111810340,T19,11059861,Alarms,06/30/2011,06/30/2011,06/30/2011 07:54:29 PM,06/30/2011 07:55:24 PM,06/30/2011 07:55:31 PM,06/30/2011 07:56:28 PM,06/30/2011 08:00:43 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 08:08:13 PM,8400 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,,1,TRUCK,3,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",111810340-T19 -133090180,E07,13105056,Medical Incident,11/05/2013,11/05/2013,11/05/2013 12:21:57 PM,11/05/2013 12:22:11 PM,11/05/2013 12:23:09 PM,11/05/2013 12:23:24 PM,11/05/2013 12:25:21 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 12:29:43 PM,21ST ST/SHOTWELL ST,SF,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7572324112144, -122.415626198524)",133090180-E07 -130120250,59,13004146,Traffic Collision,01/12/2013,01/12/2013,01/12/2013 05:03:30 PM,01/12/2013 05:04:39 PM,01/12/2013 05:04:46 PM,01/12/2013 05:08:32 PM,01/12/2013 05:09:36 PM,01/12/2013 05:17:06 PM,01/12/2013 05:25:25 PM,Code 3 Transport,01/12/2013 06:10:03 PM,MISSION ST/BRAZIL AV,SF,94112,B09,43,6117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.724682555301, -122.434798413615)",130120250-59 -112220257,T18,11073389,Structure Fire,08/10/2011,08/10/2011,08/10/2011 04:44:07 PM,08/10/2011 04:44:07 PM,08/10/2011 04:44:25 PM,08/10/2011 04:45:23 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 04:47:30 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",112220257-T18 -113240057,77,11107505,Medical Incident,11/20/2011,11/19/2011,11/20/2011 03:09:23 AM,11/20/2011 03:10:27 AM,11/20/2011 03:10:43 AM,11/20/2011 03:11:08 AM,11/20/2011 03:14:30 AM,11/20/2011 03:27:54 AM,11/20/2011 03:39:59 AM,Code 2 Transport,11/20/2011 04:09:09 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",113240057-77 -103230373,E08,10103633,Medical Incident,11/19/2010,11/19/2010,11/19/2010 09:39:29 PM,11/19/2010 09:39:44 PM,11/19/2010 09:40:26 PM,11/19/2010 09:41:45 PM,11/19/2010 09:45:15 PM,04/25/2016 02:07:31 PM,04/25/2016 02:07:31 PM,Other,11/19/2010 09:46:03 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",103230373-E08 -160393606,60,16015802,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:45:17 PM,02/08/2016 09:45:52 PM,02/08/2016 09:46:08 PM,02/08/2016 09:46:22 PM,02/08/2016 09:49:19 PM,02/08/2016 10:01:12 PM,02/08/2016 10:08:37 PM,Code 2 Transport,02/08/2016 11:07:12 PM,1000 Block of STANYAN ST,San Francisco,94117,B05,12,5153,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Inner Sunset,"(37.7649673884697, -122.452732198466)",160393606-60 -160210505,89,16008258,Medical Incident,01/21/2016,01/20/2016,01/21/2016 06:25:29 AM,01/21/2016 06:28:04 AM,01/21/2016 06:28:16 AM,01/21/2016 06:28:29 AM,01/21/2016 06:35:33 AM,01/21/2016 06:43:40 AM,01/21/2016 07:05:28 AM,Code 2 Transport,01/21/2016 07:35:04 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160210505-89 -140270290,KM14,14009295,Medical Incident,01/27/2014,01/27/2014,01/27/2014 06:16:13 PM,01/27/2014 06:16:44 PM,01/27/2014 06:19:04 PM,01/27/2014 06:20:23 PM,01/27/2014 06:30:09 PM,01/27/2014 06:42:14 PM,01/27/2014 06:51:34 PM,Code 2 Transport,01/27/2014 07:07:11 PM,1900 Block of UNION ST,SF,94123,B04,16,3443,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7976099463654, -122.431831857814)",140270290-KM14 -140730240,T01,14024689,Medical Incident,03/14/2014,03/14/2014,03/14/2014 02:56:26 PM,03/14/2014 02:57:50 PM,03/14/2014 02:58:46 PM,03/14/2014 03:00:19 PM,03/14/2014 03:06:29 PM,04/25/2016 01:47:45 PM,04/25/2016 01:47:45 PM,No Merit,03/14/2014 03:08:28 PM,100 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2252,3,2,2,false,Potentially Life-Threatening,1,TRUCK,1,3,6,South of Market,"(37.7799892619986, -122.407376463936)",140730240-T01 -103270150,E22,10104738,Medical Incident,11/23/2010,11/23/2010,11/23/2010 11:57:21 AM,11/23/2010 11:57:56 AM,11/23/2010 11:58:21 AM,11/23/2010 11:59:22 AM,11/23/2010 12:00:58 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 12:12:40 PM,JUDAH ST/FUNSTON AV,SF,94122,B08,22,7347,3,2,2,true,,1,ENGINE,1,8,5,Inner Sunset,"(37.7619869932459, -122.470464921512)",103270150-E22 -102690059,RA48,10085206,Medical Incident,09/26/2010,09/25/2010,09/26/2010 02:28:48 AM,09/26/2010 02:29:26 AM,09/26/2010 02:29:45 AM,04/25/2016 02:08:24 PM,09/26/2010 02:46:15 AM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,09/26/2010 02:56:44 AM,1200 Block of EXPOSITION DR,TI,94130,B03,48,2931,3,2,2,false,,1,MEDIC,3,None,6,Treasure Island,"(37.829470112515, -122.371782476258)",102690059-RA48 -121010254,T13,12033540,Alarms,04/10/2012,04/10/2012,04/10/2012 04:30:19 PM,04/10/2012 04:31:26 PM,04/10/2012 04:31:34 PM,04/10/2012 04:32:33 PM,04/10/2012 04:37:54 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 04:37:58 PM,100 Block of JEFFERSON ST,SF,94133,B01,28,945,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8083718015584, -122.414994322457)",121010254-T13 -131000346,T08,13033742,Alarms,04/10/2013,04/10/2013,04/10/2013 07:56:45 PM,04/10/2013 07:56:45 PM,04/10/2013 07:58:24 PM,04/25/2016 01:53:22 PM,04/10/2013 08:01:05 PM,04/25/2016 01:53:22 PM,04/25/2016 01:53:22 PM,Other,04/10/2013 08:01:22 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,TRUCK,1,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131000346-T08 -160203123,76,16008115,Medical Incident,01/20/2016,01/20/2016,01/20/2016 06:33:48 PM,01/20/2016 06:34:44 PM,01/20/2016 06:35:05 PM,01/20/2016 06:35:12 PM,01/20/2016 06:39:31 PM,01/20/2016 06:48:18 PM,01/20/2016 06:56:52 PM,Code 2 Transport,01/20/2016 07:44:41 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160203123-76 -123220050,T15,12106923,Structure Fire,11/17/2012,11/16/2012,11/17/2012 02:39:43 AM,11/17/2012 02:39:44 AM,11/17/2012 02:39:54 AM,11/17/2012 02:43:34 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/17/2012 02:45:05 AM,GENEVA AV/TARA ST,SF,94112,B09,15,8313,3,3,3,false,Alarm,1,TRUCK,2,9,11,Oceanview/Merced/Ingleside,"(37.7213968692205, -122.448410646975)",123220050-T15 -112900257,RS1,11096263,Medical Incident,10/17/2011,10/17/2011,10/17/2011 03:05:00 PM,10/17/2011 03:06:11 PM,10/17/2011 03:07:33 PM,10/17/2011 03:08:38 PM,10/17/2011 03:10:43 PM,04/25/2016 02:02:07 PM,04/25/2016 02:02:07 PM,Other,10/17/2011 03:14:30 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7791285379843, -122.408030111231)",112900257-RS1 -113210292,E42,11106710,Medical Incident,11/17/2011,11/17/2011,11/17/2011 05:12:05 PM,11/17/2011 05:12:27 PM,11/17/2011 05:13:21 PM,11/17/2011 05:14:56 PM,11/17/2011 05:17:17 PM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/17/2011 05:33:21 PM,300 Block of UNIVERSITY ST,SF,94134,B09,42,6345,3,3,3,true,,1,ENGINE,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",113210292-E42 -131290182,AM06,13043598,Water Rescue,05/09/2013,05/09/2013,05/09/2013 01:00:40 PM,05/09/2013 01:02:54 PM,05/09/2013 01:03:58 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,Other,05/09/2013 01:05:43 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,false,Fire,1,PRIVATE,16,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",131290182-AM06 -140040255,92,14001515,Medical Incident,01/04/2014,01/04/2014,01/04/2014 04:34:46 PM,01/04/2014 04:36:56 PM,01/04/2014 04:37:44 PM,01/04/2014 04:38:12 PM,01/04/2014 04:49:00 PM,01/04/2014 05:09:38 PM,01/04/2014 05:28:31 PM,Code 2 Transport,01/04/2014 05:57:42 PM,100 Block of HALE ST,SF,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,9,Portola,"(37.7323441875657, -122.408123114783)",140040255-92 -160653084,75,16026076,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:10:22 PM,03/05/2016 08:12:28 PM,03/05/2016 08:12:43 PM,03/05/2016 08:12:58 PM,03/05/2016 08:32:07 PM,03/05/2016 08:55:26 PM,03/05/2016 09:21:47 PM,Code 2 Transport,03/05/2016 09:55:55 PM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160653084-75 -102740099,91,10086949,Medical Incident,10/01/2010,10/01/2010,10/01/2010 10:19:42 AM,10/01/2010 10:20:49 AM,10/01/2010 10:21:11 AM,10/01/2010 10:22:11 AM,10/01/2010 10:33:15 AM,10/01/2010 10:45:11 AM,10/01/2010 10:58:49 AM,Code 2 Transport,10/01/2010 11:26:34 AM,8TH ST/HARRISON ST,SF,94103,B03,29,2333,E,E,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7737596997868, -122.408516330795)",102740099-91 -140120183,E01,14004153,Traffic Collision,01/12/2014,01/12/2014,01/12/2014 02:19:50 PM,01/12/2014 02:21:42 PM,01/12/2014 02:22:34 PM,01/12/2014 02:23:22 PM,01/12/2014 02:32:14 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 02:42:09 PM,100 Block of 7TH ST,SF,94103,B03,8,2312,,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7790372933741, -122.41062000696)",140120183-E01 -103310173,54,10105954,Traffic Collision,11/27/2010,11/27/2010,11/27/2010 01:07:26 PM,11/27/2010 01:07:55 PM,11/27/2010 01:09:13 PM,11/27/2010 01:09:48 PM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 01:17:43 PM,GEARY BL/16TH AV,SF,94118,B07,31,7153,2,2,2,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.780528533552, -122.47508357879)",103310173-54 -160582306,AM02,16023172,Medical Incident,02/27/2016,02/27/2016,02/27/2016 03:33:54 PM,02/27/2016 03:36:34 PM,02/27/2016 03:37:08 PM,02/27/2016 03:38:42 PM,02/27/2016 03:47:12 PM,02/27/2016 03:59:51 PM,02/27/2016 04:47:27 PM,Code 2 Transport,02/27/2016 04:47:33 PM,200 Block of LAUSSAT ST,San Francisco,94117,B05,6,3526,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,5,5,Hayes Valley,"(37.771589403569, -122.431187366209)",160582306-AM02 -121170108,KM01,12038711,Medical Incident,04/26/2012,04/26/2012,04/26/2012 10:07:58 AM,04/26/2012 10:08:45 AM,04/26/2012 10:09:02 AM,04/26/2012 10:09:49 AM,04/26/2012 10:17:21 AM,04/26/2012 10:39:31 AM,04/26/2012 10:58:48 AM,Code 2 Transport,04/26/2012 11:34:35 AM,800 Block of ULLOA ST,SF,94127,B08,39,8611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7407687115215, -122.465419969863)",121170108-KM01 -160522667,KM02,16020912,Medical Incident,02/21/2016,02/21/2016,02/21/2016 05:58:43 PM,02/21/2016 05:58:43 PM,02/21/2016 05:59:41 PM,02/21/2016 06:00:24 PM,02/21/2016 06:25:38 PM,02/21/2016 06:25:39 PM,02/21/2016 06:38:39 PM,Code 2 Transport,02/21/2016 07:05:52 PM,3500 Block of WEBSTER ST,San Francisco,94123,B04,16,3455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.803343953924, -122.43500251397)",160522667-KM02 -160543474,60,16021751,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:29:06 PM,02/23/2016 07:32:33 PM,02/23/2016 07:36:00 PM,02/23/2016 07:39:19 PM,02/23/2016 07:44:14 PM,02/23/2016 08:03:09 PM,02/23/2016 08:12:49 PM,Code 2 Transport,02/23/2016 09:38:25 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160543474-60 -140450205,T05,14015331,Alarms,02/14/2014,02/14/2014,02/14/2014 02:13:39 PM,02/14/2014 02:16:15 PM,02/14/2014 02:16:24 PM,02/14/2014 02:17:35 PM,02/14/2014 02:19:14 PM,04/25/2016 01:48:12 PM,04/25/2016 01:48:12 PM,Other,02/14/2014 02:24:05 PM,1600 Block of EDDY ST,SF,94115,B05,5,3624,,3,3,false,Alarm,1,TRUCK,2,5,5,Western Addition,"(37.7811683079336, -122.434805686456)",140450205-T05 -112930171,74,11097191,Medical Incident,10/20/2011,10/20/2011,10/20/2011 01:01:28 PM,10/20/2011 01:01:49 PM,10/20/2011 01:02:27 PM,10/20/2011 01:02:43 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/20/2011 01:03:51 PM,GEARY BL/27TH AV,SF,94121,B07,14,7222,3,3,3,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.7799935399655, -122.486878047232)",112930171-74 -132440283,KM10,13082437,Medical Incident,09/01/2013,09/01/2013,09/01/2013 06:01:12 PM,09/01/2013 06:02:33 PM,09/01/2013 06:03:05 PM,09/01/2013 06:03:12 PM,09/01/2013 06:10:07 PM,04/25/2016 01:51:00 PM,04/25/2016 01:51:00 PM,No Merit,09/01/2013 06:12:08 PM,OFARRELL ST/CYRIL MAGNIN ST,SF,94102,B03,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,6,Tenderloin,"(37.7862959148488, -122.408941029102)",132440283-KM10 -130620148,E10,13020742,Medical Incident,03/03/2013,03/03/2013,03/03/2013 10:33:33 AM,03/03/2013 10:34:14 AM,03/03/2013 10:35:16 AM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 10:35:31 AM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,6,Mission,"(37.7732180675925, -122.421522300696)",130620148-E10 -110180087,E41,11005868,Alarms,01/18/2011,01/18/2011,01/18/2011 09:27:52 AM,01/18/2011 09:28:50 AM,01/18/2011 09:32:51 AM,01/18/2011 09:33:52 AM,01/18/2011 09:38:14 AM,04/25/2016 02:06:32 PM,04/25/2016 02:06:32 PM,Other,01/18/2011 09:38:51 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,ENGINE,2,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",110180087-E41 -140710372,T09,14024124,Structure Fire,03/12/2014,03/12/2014,03/12/2014 08:17:10 PM,03/12/2014 08:17:14 PM,03/12/2014 08:18:01 PM,03/12/2014 08:20:23 PM,03/12/2014 08:22:58 PM,04/25/2016 01:47:46 PM,04/25/2016 01:47:46 PM,Fire,03/12/2014 08:31:01 PM,1500 Block of NEWCOMB AV,SAN FRANCISCO,94124,B10,17,6515,3,3,3,false,Alarm,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7346630758042, -122.388898246024)",140710372-T09 -102570247,RC1,10081245,Medical Incident,09/14/2010,09/14/2010,09/14/2010 03:38:47 PM,09/14/2010 03:40:20 PM,09/14/2010 03:40:27 PM,04/25/2016 02:08:36 PM,09/14/2010 03:41:25 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Other,09/14/2010 03:43:53 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,RESCUE CAPTAIN,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",102570247-RC1 -160423159,88,16016988,Medical Incident,02/11/2016,02/11/2016,02/11/2016 06:47:30 PM,02/11/2016 06:50:18 PM,02/11/2016 06:51:31 PM,02/11/2016 06:51:42 PM,02/11/2016 06:58:38 PM,02/11/2016 07:09:09 PM,02/11/2016 07:16:27 PM,Code 2 Transport,02/11/2016 07:45:14 PM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160423159-88 -160840363,78,16033234,Medical Incident,03/24/2016,03/23/2016,03/24/2016 04:29:18 AM,03/24/2016 04:31:01 AM,03/24/2016 04:31:11 AM,03/24/2016 04:31:34 AM,03/24/2016 04:41:40 AM,03/24/2016 04:42:00 AM,03/24/2016 04:42:01 AM,Code 2 Transport,03/24/2016 05:48:54 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160840363-78 -131390278,E28,13047076,Medical Incident,05/19/2013,05/19/2013,05/19/2013 02:31:07 PM,05/19/2013 02:32:15 PM,05/19/2013 02:32:48 PM,05/19/2013 02:34:46 PM,05/19/2013 02:36:12 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 02:44:28 PM,BEACH ST/POWELL ST,SF,94133,B01,28,1344,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.807690493217, -122.412329558798)",131390278-E28 -160870779,AM02,16034486,Medical Incident,03/27/2016,03/26/2016,03/27/2016 07:11:38 AM,03/27/2016 07:11:38 AM,03/27/2016 07:12:06 AM,03/27/2016 07:12:41 AM,03/27/2016 07:17:51 AM,03/27/2016 07:34:55 AM,03/27/2016 07:45:09 AM,Code 2 Transport,03/27/2016 08:12:31 AM,14TH ST/DOLORES ST,San Francisco,94103,B02,6,5214,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7678690199682, -122.426693184728)",160870779-AM02 -103310192,E36,10105970,Structure Fire,11/27/2010,11/27/2010,11/27/2010 02:16:52 PM,11/27/2010 02:16:52 PM,11/27/2010 02:17:01 PM,11/27/2010 02:17:53 PM,11/27/2010 02:19:45 PM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 02:20:26 PM,0 Block of DUBOCE AVE,SF,94103,B02,36,5124,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7698769653623, -122.420425746328)",103310192-E36 -160744207,62,16029530,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:45:58 PM,03/14/2016 11:45:58 PM,03/14/2016 11:46:27 PM,03/14/2016 11:46:37 PM,03/14/2016 11:52:32 PM,03/15/2016 12:24:33 AM,03/15/2016 12:47:12 AM,Code 2 Transport,03/15/2016 01:19:48 AM,0 Block of 3RD ST,San Francisco,94103,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",160744207-62 -112820205,E02,11093352,Medical Incident,10/09/2011,10/09/2011,10/09/2011 02:07:20 PM,10/09/2011 02:09:50 PM,10/09/2011 02:11:08 PM,10/09/2011 02:13:14 PM,10/09/2011 02:18:14 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 02:18:44 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",112820205-E02 -123020199,E31,12100172,Medical Incident,10/28/2012,10/28/2012,10/28/2012 12:41:59 PM,10/28/2012 12:42:36 PM,10/28/2012 12:42:54 PM,10/28/2012 12:44:48 PM,10/28/2012 12:46:20 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 12:51:00 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",123020199-E31 -112990330,AM10,11099304,Medical Incident,10/26/2011,10/26/2011,10/26/2011 08:25:58 PM,10/26/2011 08:27:01 PM,10/26/2011 08:27:49 PM,10/26/2011 08:28:32 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/26/2011 08:34:56 PM,600 Block of DARTMOUTH ST,SF,94134,B09,42,6321,3,3,3,false,,1,PRIVATE,2,9,9,Portola,"(37.7225558788797, -122.410315976861)",112990330-AM10 -120920337,E09,12030590,Medical Incident,04/01/2012,04/01/2012,04/01/2012 07:02:58 PM,04/01/2012 07:04:25 PM,04/01/2012 07:05:23 PM,04/01/2012 07:07:51 PM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,04/25/2016 01:59:23 PM,Other,04/01/2012 07:21:45 PM,3800 Block of 3RD ST,SF,94124,B10,25,6457,3,E,3,true,Potentially Life-Threatening,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7423233883706, -122.388190201397)",120920337-E09 -132700236,84,13091731,Medical Incident,09/27/2013,09/27/2013,09/27/2013 01:45:40 PM,09/27/2013 01:46:04 PM,09/27/2013 01:47:27 PM,09/27/2013 01:47:37 PM,09/27/2013 02:08:07 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/27/2013 02:11:34 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",132700236-84 -131420061,88,13048043,Medical Incident,05/22/2013,05/21/2013,05/22/2013 06:17:52 AM,05/22/2013 06:17:53 AM,05/22/2013 06:18:01 AM,05/22/2013 06:18:12 AM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,04/25/2016 01:52:40 PM,Other,05/22/2013 06:25:18 AM,900 Block of SUTTER ST,SF,94109,B04,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7883371399086, -122.416017227839)",131420061-88 -160441164,KM06,16017639,Medical Incident,02/13/2016,02/13/2016,02/13/2016 10:35:36 AM,02/13/2016 10:36:54 AM,02/13/2016 10:38:38 AM,02/13/2016 10:40:57 AM,02/13/2016 10:43:11 AM,02/13/2016 11:08:29 AM,02/13/2016 11:15:26 AM,Code 2 Transport,02/13/2016 12:01:30 PM,600 Block of LARCH ST,San Francisco,94115,B02,5,3426,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",160441164-KM06 -112980039,AM16,11098757,Medical Incident,10/25/2011,10/24/2011,10/25/2011 05:50:57 AM,10/25/2011 05:53:41 AM,10/25/2011 05:54:02 AM,10/25/2011 05:54:51 AM,10/25/2011 05:57:55 AM,10/25/2011 06:08:54 AM,10/25/2011 06:25:38 AM,Code 2 Transport,10/25/2011 06:59:40 AM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7855804361702, -122.412857126524)",112980039-AM16 -160611344,AM10,16024281,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:45:16 AM,03/01/2016 11:45:45 AM,03/01/2016 11:48:31 AM,03/01/2016 11:48:55 AM,03/01/2016 12:18:26 PM,03/01/2016 12:22:47 PM,03/01/2016 12:38:20 PM,Code 2 Transport,03/01/2016 01:04:39 PM,3RD ST/CARGO WY,San Francisco,94124,B10,25,6437,2,2,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7461571286485, -122.387174219434)",160611344-AM10 -102260317,AM04,10071266,Medical Incident,08/14/2010,08/14/2010,08/14/2010 08:57:32 PM,08/14/2010 08:58:55 PM,08/14/2010 08:59:09 PM,08/14/2010 08:59:46 PM,08/14/2010 09:06:25 PM,08/14/2010 09:09:15 PM,08/14/2010 09:31:51 PM,Code 2 Transport,08/14/2010 10:09:39 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,3,3,3,false,,1,PRIVATE,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",102260317-AM04 -160202452,57,16008064,Medical Incident,01/20/2016,01/20/2016,01/20/2016 03:41:54 PM,01/20/2016 03:42:22 PM,01/20/2016 03:42:48 PM,01/20/2016 03:43:02 PM,01/20/2016 04:07:29 PM,01/20/2016 04:07:46 PM,01/20/2016 04:15:23 PM,Code 2 Transport,01/20/2016 04:48:57 PM,STOCKTON ST/BROADWAY,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.797627561244, -122.408618845707)",160202452-57 -112330292,T05,11077040,Traffic Collision,08/21/2011,08/21/2011,08/21/2011 06:04:39 PM,08/21/2011 06:04:39 PM,08/21/2011 06:04:39 PM,04/25/2016 02:03:03 PM,08/21/2011 06:04:47 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/21/2011 06:12:45 PM,GOLDEN GATE AV/WEBSTER ST,SF,94115,B05,5,3516,2,2,2,false,,1,TRUCK,1,2,5,Western Addition,"(37.7797827933333, -122.430233236395)",112330292-T05 -121000159,AM12,12033112,Medical Incident,04/09/2012,04/09/2012,04/09/2012 11:40:33 AM,04/09/2012 11:43:47 AM,04/09/2012 11:43:58 AM,04/09/2012 11:45:45 AM,04/09/2012 11:48:12 AM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,No Merit,04/09/2012 11:49:53 AM,2100 Block of BRYANT ST,SF,94110,B06,7,5451,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7598271415261, -122.41001124046)",121000159-AM12 -160381273,KM05,16015156,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:15:41 AM,02/07/2016 10:15:41 AM,02/07/2016 10:16:24 AM,02/07/2016 10:17:43 AM,02/07/2016 10:24:31 AM,02/07/2016 10:49:04 AM,02/07/2016 11:05:48 AM,Code 2 Transport,02/07/2016 11:59:06 AM,FELL ST/WEBSTER ST,San Francisco,94102,B02,36,3423,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7751111786563, -122.429365861907)",160381273-KM05 -111570074,54,11051827,Medical Incident,06/06/2011,06/05/2011,06/06/2011 07:21:12 AM,06/06/2011 07:22:17 AM,06/06/2011 07:22:34 AM,06/06/2011 07:22:53 AM,06/06/2011 07:27:58 AM,06/06/2011 07:44:10 AM,06/06/2011 07:59:49 AM,Code 3 Transport,06/06/2011 08:30:10 AM,2600 Block of 16TH AVE,SF,94116,B08,40,7411,3,E,3,true,,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7385289745359, -122.472223895624)",111570074-54 -102540394,E41,10080470,Medical Incident,09/11/2010,09/11/2010,09/11/2010 11:11:42 PM,09/11/2010 11:13:26 PM,09/11/2010 11:13:48 PM,09/11/2010 11:14:46 PM,09/11/2010 11:15:30 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 11:22:45 PM,JACKSON ST/LEAVENWORTH ST,SF,94109,B01,41,1535,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.794777285991, -122.416472748434)",102540394-E41 -130080176,E10,13002731,Medical Incident,01/08/2013,01/08/2013,01/08/2013 12:05:37 PM,01/08/2013 12:06:37 PM,01/08/2013 12:06:50 PM,01/08/2013 12:06:59 PM,01/08/2013 12:09:47 PM,04/25/2016 01:54:54 PM,04/25/2016 01:54:54 PM,No Merit,01/08/2013 12:14:05 PM,GEARY BL/DIVISADERO ST,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7833084876653, -122.439480381269)",130080176-E10 -112050096,RS1,11067670,Traffic Collision,07/24/2011,07/24/2011,07/24/2011 09:07:14 AM,07/24/2011 09:07:46 AM,07/24/2011 09:07:56 AM,07/24/2011 09:09:32 AM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/24/2011 09:11:35 AM,GRANT AV/POST ST,SF,94108,B01,1,1316,3,3,3,false,,1,RESCUE SQUAD,3,1,3,Financial District/South Beach,"(37.7886939911323, -122.405221175679)",112050096-RS1 -111980203,85,11065342,Medical Incident,07/17/2011,07/17/2011,07/17/2011 02:35:31 PM,07/17/2011 02:37:38 PM,07/17/2011 02:37:57 PM,07/17/2011 02:38:07 PM,07/17/2011 02:43:15 PM,07/17/2011 03:05:26 PM,07/17/2011 03:46:41 PM,Code 2 Transport,07/17/2011 04:17:19 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",111980203-85 -110030230,AP,11001010,Other,01/03/2011,01/03/2011,01/03/2011 03:04:24 PM,01/03/2011 03:04:24 PM,01/03/2011 03:04:24 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Fire,01/03/2011 03:05:08 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110030230-AP -160543206,83,16021728,Medical Incident,02/23/2016,02/23/2016,02/23/2016 06:20:10 PM,02/23/2016 06:20:10 PM,02/23/2016 06:21:53 PM,02/23/2016 06:21:53 PM,02/23/2016 06:24:09 PM,02/23/2016 06:37:12 PM,02/23/2016 07:03:34 PM,Code 2 Transport,02/23/2016 07:30:27 PM,700 Block of MARKET ST,San Francisco,94108,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7863072236365, -122.405294845215)",160543206-83 -130400136,E22,13013622,Citizen Assist / Service Call,02/09/2013,02/09/2013,02/09/2013 10:34:06 AM,02/09/2013 10:35:13 AM,02/09/2013 10:35:55 AM,02/09/2013 10:36:21 AM,02/09/2013 10:39:00 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 11:21:46 AM,1300 Block of IRVING ST,SF,94122,B08,22,7366,3,3,3,false,Alarm,1,ENGINE,1,7,5,Inner Sunset,"(37.7638318338265, -122.472232573432)",130400136-E22 -160772653,75,16030674,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:57:02 PM,03/17/2016 03:58:23 PM,03/17/2016 04:09:43 PM,03/17/2016 04:09:51 PM,03/17/2016 04:21:34 PM,03/17/2016 04:26:58 PM,03/17/2016 04:58:46 PM,Code 2 Transport,03/17/2016 05:14:24 PM,800 Block of SILVER AVE,San Francisco,94134,B09,42,635,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,9,Portola,"(37.7291408602856, -122.418934279861)",160772653-75 -160630852,67,16024985,Medical Incident,03/03/2016,03/03/2016,03/03/2016 08:39:06 AM,03/03/2016 08:40:48 AM,03/03/2016 08:41:03 AM,03/03/2016 08:43:06 AM,03/03/2016 08:59:02 AM,03/03/2016 09:15:57 AM,03/03/2016 09:27:52 AM,Code 2 Transport,03/03/2016 10:05:47 AM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160630852-67 -131040059,T01,13034821,Structure Fire,04/14/2013,04/13/2013,04/14/2013 02:30:25 AM,04/14/2013 02:31:38 AM,04/14/2013 02:31:54 AM,04/25/2016 01:53:19 PM,04/14/2013 02:37:45 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 03:18:48 AM,400 Block of GEARY ST,SF,94102,B01,3,1411,3,3,3,false,Fire,1,TRUCK,6,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",131040059-T01 -160200327,AM18,16007861,Medical Incident,01/20/2016,01/19/2016,01/20/2016 03:53:17 AM,01/20/2016 03:54:40 AM,01/20/2016 04:00:28 AM,01/20/2016 04:01:15 AM,01/20/2016 04:14:17 AM,01/20/2016 04:36:20 AM,01/20/2016 05:01:28 AM,Code 3 Transport,01/20/2016 05:17:45 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160200327-AM18 -111690177,AM06,11055698,Medical Incident,06/18/2011,06/18/2011,06/18/2011 01:01:47 PM,06/18/2011 01:02:27 PM,06/18/2011 01:02:49 PM,06/18/2011 01:03:58 PM,06/18/2011 01:09:01 PM,06/18/2011 01:16:24 PM,04/25/2016 02:04:06 PM,Code 2 Transport,06/18/2011 01:57:05 PM,POST ST/SCOTT ST,SF,94115,B04,10,4131,3,3,3,false,,1,PRIVATE,2,5,5,Japantown,"(37.7845309189576, -122.438019671354)",111690177-AM06 -111440150,T05,11047829,Alarms,05/24/2011,05/24/2011,05/24/2011 12:21:12 PM,05/24/2011 12:23:15 PM,05/24/2011 12:23:23 PM,05/24/2011 12:24:33 PM,05/24/2011 12:26:33 PM,04/25/2016 02:04:28 PM,04/25/2016 02:04:28 PM,Other,05/24/2011 01:01:42 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,TRUCK,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",111440150-T05 -121000409,E32,12033333,Structure Fire,04/09/2012,04/09/2012,04/09/2012 11:21:09 PM,04/09/2012 11:21:34 PM,04/09/2012 11:21:55 PM,04/09/2012 11:27:14 PM,04/09/2012 11:31:47 PM,04/25/2016 01:59:15 PM,04/25/2016 01:59:15 PM,Other,04/09/2012 11:23:35 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,true,Fire,1,ENGINE,12,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",121000409-E32 -160444015,61,16017923,Medical Incident,02/13/2016,02/13/2016,02/13/2016 11:43:55 PM,02/13/2016 11:44:51 PM,02/13/2016 11:45:37 PM,02/13/2016 11:46:02 PM,02/13/2016 11:55:00 PM,02/14/2016 12:13:53 AM,02/14/2016 12:42:19 AM,Code 2 Transport,02/14/2016 01:21:55 AM,500 Block of BARNEVELD AVE,San Francisco,94124,B10,9,6427,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.74044593571, -122.404296869791)",160444015-61 -160823939,75,16032764,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:22:06 PM,03/22/2016 10:22:41 PM,03/22/2016 10:23:25 PM,03/22/2016 10:23:34 PM,03/22/2016 10:26:29 PM,03/22/2016 10:43:01 PM,03/22/2016 11:05:02 PM,Code 2 Transport,03/22/2016 11:22:39 PM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",160823939-75 -160793054,53,16031500,Medical Incident,03/19/2016,03/19/2016,03/19/2016 05:48:35 PM,03/19/2016 05:48:35 PM,03/19/2016 05:49:48 PM,03/19/2016 05:50:05 PM,03/19/2016 05:50:05 PM,03/19/2016 06:11:04 PM,03/19/2016 06:22:14 PM,Code 2 Transport,03/19/2016 07:00:37 PM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160793054-53 -160203573,63,16008171,Medical Incident,01/20/2016,01/20/2016,01/20/2016 08:54:13 PM,01/20/2016 08:55:57 PM,01/20/2016 08:56:28 PM,01/20/2016 08:56:37 PM,01/20/2016 09:05:56 PM,01/20/2016 09:22:44 PM,01/20/2016 09:28:37 PM,Code 3 Transport,01/20/2016 10:21:24 PM,1100 Block of KEARNY ST,San Francisco,94133,B01,2,1251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7988200425066, -122.405685117745)",160203573-63 -131780110,B10,13060368,Structure Fire,06/27/2013,06/27/2013,06/27/2013 10:02:15 AM,06/27/2013 10:03:18 AM,06/27/2013 10:03:41 AM,06/27/2013 10:03:59 AM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Other,06/27/2013 10:08:42 AM,300 Block of 1ST ST,SF,94105,B03,35,2137,3,3,3,false,Alarm,1,CHIEF,12,3,6,Financial District/South Beach,"(37.7870362281105, -122.394250143605)",131780110-B10 -123030437,KM07,12100724,Medical Incident,10/29/2012,10/29/2012,10/29/2012 11:10:03 PM,10/29/2012 11:10:03 PM,10/29/2012 11:10:44 PM,10/29/2012 11:13:27 PM,10/29/2012 11:15:20 PM,10/29/2012 11:28:42 PM,10/29/2012 11:34:14 PM,Code 2 Transport,10/30/2012 12:30:44 AM,2500 Block of BRYANT ST,SF,94110,B06,7,5474,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7536039830321, -122.409137616637)",123030437-KM07 -132150219,68,13072640,Medical Incident,08/03/2013,08/03/2013,08/03/2013 01:55:22 PM,08/03/2013 01:56:05 PM,08/03/2013 01:57:19 PM,08/03/2013 01:57:28 PM,08/03/2013 02:00:40 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 02:22:49 PM,900 Block of LARKIN ST,SF,94109,B04,3,1641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7867935563984, -122.418293311982)",132150219-68 -140200007,E42,14006717,Medical Incident,01/20/2014,01/19/2014,01/20/2014 12:43:09 AM,01/20/2014 12:44:37 AM,01/20/2014 12:45:10 AM,01/20/2014 12:47:24 AM,01/20/2014 12:48:43 AM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/20/2014 01:28:10 AM,100 Block of GAVEN ST,SF,94134,B10,42,6366,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7333230255485, -122.408594688363)",140200007-E42 -160241670,67,16009524,Medical Incident,01/24/2016,01/24/2016,01/24/2016 01:04:55 PM,01/24/2016 01:07:40 PM,01/24/2016 01:08:14 PM,01/24/2016 01:08:43 PM,01/24/2016 01:14:55 PM,01/24/2016 01:17:20 PM,01/24/2016 01:36:42 PM,Code 2 Transport,01/24/2016 02:30:51 PM,0 Block of MINT PLZ,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7826425026927, -122.407832679288)",160241670-67 -120290160,T08,12009727,Medical Incident,01/29/2012,01/29/2012,01/29/2012 01:50:35 PM,01/29/2012 01:51:01 PM,01/29/2012 01:51:43 PM,01/29/2012 01:52:16 PM,01/29/2012 01:54:50 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/29/2012 02:00:45 PM,BRANNAN ST/5TH ST,SF,94107,B03,8,2241,3,3,3,true,Potentially Life-Threatening,1,TRUCK,1,3,6,South of Market,"(37.7765683820103, -122.398755450545)",120290160-T08 -122260087,E01,12074846,Structure Fire,08/13/2012,08/13/2012,08/13/2012 08:29:58 AM,08/13/2012 08:29:58 AM,08/13/2012 08:30:06 AM,08/13/2012 08:30:58 AM,08/13/2012 08:33:07 AM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Fire,08/13/2012 08:33:31 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122260087-E01 -103440369,60,10110361,Medical Incident,12/10/2010,12/10/2010,12/10/2010 08:19:35 PM,12/10/2010 08:21:04 PM,12/10/2010 08:21:36 PM,12/10/2010 08:22:04 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 08:23:48 PM,100 Block of WESTGATE DR,SF,94127,B09,15,8533,E,2,2,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7292259664459, -122.465027266985)",103440369-60 -112990011,94,11099056,Medical Incident,10/26/2011,10/25/2011,10/26/2011 01:20:44 AM,10/26/2011 01:21:23 AM,10/26/2011 01:22:09 AM,10/26/2011 01:22:15 AM,10/26/2011 01:34:40 AM,10/26/2011 01:57:18 AM,10/26/2011 02:17:55 AM,Code 2 Transport,10/26/2011 02:44:25 AM,100 Block of DORADO TER,SF,94112,B09,15,8532,3,3,3,true,,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7268689398462, -122.461992848735)",112990011-94 -121070254,71,12035512,Medical Incident,04/16/2012,04/16/2012,04/16/2012 04:03:54 PM,04/16/2012 04:06:44 PM,04/16/2012 04:06:53 PM,04/16/2012 04:07:25 PM,04/16/2012 04:08:28 PM,04/16/2012 04:40:38 PM,04/16/2012 04:50:35 PM,Code 2 Transport,04/16/2012 05:22:27 PM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",121070254-71 -131470058,89,13049779,Medical Incident,05/27/2013,05/26/2013,05/27/2013 04:57:34 AM,05/27/2013 04:58:41 AM,05/27/2013 04:58:50 AM,05/27/2013 04:59:18 AM,05/27/2013 05:03:40 AM,05/27/2013 05:28:58 AM,05/27/2013 05:43:47 AM,Code 2 Transport,05/27/2013 05:59:09 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,E,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",131470058-89 -120510062,E18,12016766,Medical Incident,02/20/2012,02/19/2012,02/20/2012 06:12:19 AM,02/20/2012 06:13:18 AM,02/20/2012 06:13:41 AM,02/20/2012 06:18:40 AM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 06:21:57 AM,1400 Block of 26TH AVE,SF,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7604386722606, -122.484361591093)",120510062-E18 -113570311,T13,11118692,Medical Incident,12/23/2011,12/23/2011,12/23/2011 03:14:33 PM,12/23/2011 03:15:48 PM,12/23/2011 03:16:42 PM,12/23/2011 03:16:59 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,04/25/2016 02:01:00 PM,Other,12/23/2011 03:17:23 PM,400 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,true,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7905619157295, -122.405159641603)",113570311-T13 -160271255,88,16010621,Medical Incident,01/27/2016,01/27/2016,01/27/2016 10:36:01 AM,01/27/2016 10:38:54 AM,01/27/2016 10:39:27 AM,01/27/2016 10:39:58 AM,01/27/2016 11:00:45 AM,01/27/2016 11:13:01 AM,01/27/2016 11:32:58 AM,Code 2 Transport,01/27/2016 12:07:45 PM,1200 Block of EXPOSITION DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.829470112515, -122.371782476258)",160271255-88 -130820316,55,13027567,Traffic Collision,03/23/2013,03/23/2013,03/23/2013 09:02:17 PM,03/23/2013 09:03:02 PM,03/23/2013 09:03:24 PM,03/23/2013 09:04:32 PM,03/23/2013 09:11:09 PM,03/23/2013 09:44:31 PM,03/23/2013 10:08:33 PM,Code 2 Transport,03/23/2013 10:38:56 PM,UNION ST/COLUMBUS AV,SF,94133,B01,28,1334,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8003154984429, -122.410206543893)",130820316-55 -160613751,77,16024510,Medical Incident,03/01/2016,03/01/2016,03/01/2016 11:26:31 PM,03/01/2016 11:26:53 PM,03/01/2016 11:27:04 PM,03/01/2016 11:27:36 PM,03/01/2016 11:32:43 PM,03/01/2016 11:38:19 PM,03/01/2016 11:49:48 PM,Code 3 Transport,03/02/2016 12:51:23 AM,200 Block of RANDOLPH ST,San Francisco,94132,B09,33,8416,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Oceanview/Merced/Ingleside,"(37.7143453518549, -122.464850904783)",160613751-77 -140760155,B09,14025686,Alarms,03/17/2014,03/17/2014,03/17/2014 11:34:42 AM,03/17/2014 11:35:41 AM,03/17/2014 11:35:51 AM,03/17/2014 11:40:32 AM,03/17/2014 11:44:02 AM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Fire,03/17/2014 11:55:12 AM,0 Block of OCEAN AVE,SAN FRANCISCO,94112,B09,43,6121,3,3,3,false,Alarm,1,CHIEF,2,9,11,Outer Mission,"(37.7237008924072, -122.436724757716)",140760155-B09 -122050339,E20,12068308,Medical Incident,07/23/2012,07/23/2012,07/23/2012 09:36:26 PM,07/23/2012 09:39:16 PM,07/23/2012 09:39:57 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/23/2012 09:41:53 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",122050339-E20 -131180212,T19,13039718,Traffic Collision,04/28/2013,04/28/2013,04/28/2013 02:33:34 PM,04/28/2013 02:34:03 PM,04/28/2013 02:34:28 PM,04/28/2013 02:35:31 PM,04/28/2013 02:38:09 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/28/2013 02:51:38 PM,19TH AV/SLOAT BL,SF,94132,B08,19,7413,3,3,3,true,Potentially Life-Threatening,1,TRUCK,2,8,7,Sunset/Parkside,"(37.7346255723704, -122.475102468965)",131180212-T19 -130850264,KM01,13028442,Medical Incident,03/26/2013,03/26/2013,03/26/2013 04:27:31 PM,03/26/2013 04:28:24 PM,03/26/2013 04:29:29 PM,03/26/2013 04:30:55 PM,03/26/2013 04:37:23 PM,03/26/2013 05:02:36 PM,03/26/2013 05:32:51 PM,Code 2 Transport,03/26/2013 06:00:56 PM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",130850264-KM01 -160631204,KM03,16025015,Medical Incident,03/03/2016,03/03/2016,03/03/2016 10:15:32 AM,03/03/2016 10:15:42 AM,03/03/2016 10:16:02 AM,03/03/2016 10:16:45 AM,03/03/2016 10:28:21 AM,03/03/2016 10:46:13 AM,03/03/2016 10:57:50 AM,Code 2 Transport,03/03/2016 11:14:33 AM,2500 Block of 15TH ST,San Francisco,94114,B05,6,5174,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7660271182054, -122.437834993098)",160631204-KM03 -133540163,E07,13120245,Medical Incident,12/20/2013,12/20/2013,12/20/2013 10:56:05 AM,12/20/2013 10:56:37 AM,12/20/2013 10:57:29 AM,12/20/2013 10:57:52 AM,12/20/2013 11:06:50 AM,04/25/2016 01:49:10 PM,04/25/2016 01:49:10 PM,Other,12/20/2013 11:33:09 AM,0 Block of RONDEL PL,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7643441086394, -122.421111562712)",133540163-E07 -122970025,E13,12098369,Structure Fire,10/23/2012,10/22/2012,10/23/2012 01:47:22 AM,10/23/2012 01:47:22 AM,10/23/2012 01:47:31 AM,10/23/2012 01:49:39 AM,10/23/2012 01:51:21 AM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/23/2012 01:51:35 AM,GRANT AV/CALIFORNIA ST,SF,94108,B01,13,1314,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",122970025-E13 -122510154,T02,12082969,Medical Incident,09/07/2012,09/07/2012,09/07/2012 10:49:41 AM,09/07/2012 10:50:41 AM,09/07/2012 10:51:13 AM,09/07/2012 10:54:55 AM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,04/25/2016 01:56:53 PM,Other,09/07/2012 10:58:56 AM,0 Block of BONITA ST,SF,94109,B04,41,3126,3,3,3,true,Potentially Life-Threatening,1,TRUCK,2,4,3,Russian Hill,"(37.7973537252438, -122.422620569494)",122510154-T02 -160050688,KM08,16001882,Medical Incident,01/05/2016,01/05/2016,01/05/2016 08:08:57 AM,01/05/2016 08:09:21 AM,01/05/2016 08:10:10 AM,01/05/2016 08:12:29 AM,01/05/2016 08:15:33 AM,01/05/2016 08:34:21 AM,01/05/2016 08:40:43 AM,Code 3 Transport,01/05/2016 09:24:25 AM,1100 Block of CLEMENT ST,San Francisco,94118,B07,31,7141,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,1,Inner Richmond,"(37.7825695021259, -122.471375941077)",160050688-KM08 -160442367,50,16017763,Medical Incident,02/13/2016,02/13/2016,02/13/2016 04:23:43 PM,02/13/2016 04:26:09 PM,02/13/2016 04:35:10 PM,02/13/2016 04:35:10 PM,02/13/2016 04:39:03 PM,02/13/2016 04:53:25 PM,02/13/2016 05:23:18 PM,Code 2 Transport,02/13/2016 05:58:55 PM,TURK ST/FILLMORE ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",160442367-50 -110820353,T13,11027080,Structure Fire,03/23/2011,03/23/2011,03/23/2011 08:36:38 PM,03/23/2011 08:37:40 PM,03/23/2011 08:38:02 PM,03/23/2011 08:40:05 PM,03/23/2011 08:41:21 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 08:47:59 PM,1000 Block of THE EMBARCADERO,SF,94111,B01,13,927,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",110820353-T13 -160372954,AM08,16014816,Medical Incident,02/06/2016,02/06/2016,02/06/2016 05:39:54 PM,02/06/2016 05:40:43 PM,02/06/2016 05:41:23 PM,02/06/2016 05:41:59 PM,02/06/2016 05:52:39 PM,02/06/2016 06:16:48 PM,02/06/2016 06:33:49 PM,Code 2 Transport,02/06/2016 07:00:05 PM,100 Block of FRANCISCO ST,San Francisco,94133,B01,28,1255,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.8054738067872, -122.407570127181)",160372954-AM08 -140770328,KM02,14026194,Medical Incident,03/18/2014,03/18/2014,03/18/2014 07:37:37 PM,03/18/2014 07:37:37 PM,03/18/2014 07:38:21 PM,03/18/2014 07:40:23 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,04/25/2016 01:47:40 PM,Code 2 Transport,03/18/2014 07:43:22 PM,2000 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",140770328-KM02 -103580257,E11,10114993,Medical Incident,12/24/2010,12/24/2010,12/24/2010 06:21:33 PM,12/24/2010 06:23:28 PM,12/24/2010 06:23:55 PM,12/24/2010 06:24:36 PM,12/24/2010 06:27:05 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/24/2010 06:31:14 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,ENGINE,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",103580257-E11 -122020188,E28,12067113,Medical Incident,07/20/2012,07/20/2012,07/20/2012 01:05:45 PM,07/20/2012 01:06:22 PM,07/20/2012 01:06:34 PM,07/20/2012 01:07:28 PM,07/20/2012 01:09:05 PM,04/25/2016 01:57:38 PM,04/25/2016 01:57:38 PM,Other,07/20/2012 01:22:37 PM,GREEN ST/KEARNY ST,SF,94133,B01,28,1252,3,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.7999008548131, -122.405834048408)",122020188-E28 -120300315,58,12010116,Medical Incident,01/30/2012,01/30/2012,01/30/2012 10:50:03 PM,01/30/2012 10:50:20 PM,01/30/2012 10:50:34 PM,01/30/2012 10:50:46 PM,01/30/2012 10:52:32 PM,01/30/2012 11:05:14 PM,01/30/2012 11:19:00 PM,Code 2 Transport,01/31/2012 12:03:46 AM,700 Block of TARAVAL ST,SF,94116,B08,40,7376,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7430652610147, -122.474084809201)",120300315-58 -110870215,57,11028745,Medical Incident,03/28/2011,03/28/2011,03/28/2011 02:07:31 PM,03/28/2011 02:08:34 PM,03/28/2011 02:08:41 PM,03/28/2011 02:18:21 PM,03/28/2011 02:23:22 PM,03/28/2011 02:40:45 PM,03/28/2011 02:50:39 PM,Code 2 Transport,03/28/2011 03:13:19 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,3,2,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",110870215-57 -131370284,E08,13046354,Medical Incident,05/17/2013,05/17/2013,05/17/2013 05:20:54 PM,05/17/2013 05:21:37 PM,05/17/2013 05:22:00 PM,05/17/2013 05:23:18 PM,05/17/2013 05:26:35 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/17/2013 05:45:57 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",131370284-E08 -110410347,AM18,11013702,Medical Incident,02/10/2011,02/10/2011,02/10/2011 07:19:24 PM,02/10/2011 07:19:24 PM,02/10/2011 07:19:24 PM,02/10/2011 07:20:36 PM,02/10/2011 07:25:46 PM,02/10/2011 07:31:19 PM,02/10/2011 07:41:28 PM,Code 2 Transport,02/10/2011 08:01:39 PM,CLAY ST/LEAVENWORTH ST,SF,94109,B01,41,1536,3,3,3,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.7930136072504, -122.416113018456)",110410347-AM18 -160363649,AM22,16014423,Medical Incident,02/05/2016,02/05/2016,02/05/2016 08:27:18 PM,02/05/2016 08:27:18 PM,02/05/2016 08:27:41 PM,02/05/2016 08:28:13 PM,02/05/2016 08:30:50 PM,02/05/2016 08:44:06 PM,02/05/2016 09:07:02 PM,Code 2 Transport,02/05/2016 09:35:15 PM,BAYSHORE BL/SAN BRUNO AV,San Francisco,94124,B10,9,6376,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Bernal Heights,"(37.7384578874293, -122.4070544854)",160363649-AM22 -130580095,78,13019384,Medical Incident,02/27/2013,02/27/2013,02/27/2013 09:44:19 AM,02/27/2013 09:44:58 AM,02/27/2013 09:45:10 AM,02/27/2013 09:47:11 AM,02/27/2013 09:46:56 AM,02/27/2013 10:07:47 AM,02/27/2013 10:14:41 AM,Code 3 Transport,02/27/2013 10:50:50 AM,1200 Block of ALEMANY BLVD,SF,94112,B09,32,8263,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7301394309025, -122.432268894425)",130580095-78 -120750004,66,12024757,Medical Incident,03/15/2012,03/14/2012,03/15/2012 12:20:24 AM,03/15/2012 12:21:29 AM,03/15/2012 12:21:41 AM,03/15/2012 12:21:52 AM,03/15/2012 12:32:36 AM,03/15/2012 12:51:45 AM,03/15/2012 01:06:41 AM,Code 2 Transport,03/15/2012 01:30:54 AM,100 Block of 7TH ST,SF,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7786395920196, -122.410120840963)",120750004-66 -120930059,E24,12030708,Structure Fire,04/02/2012,04/01/2012,04/02/2012 07:13:43 AM,04/02/2012 07:14:44 AM,04/02/2012 07:15:00 AM,04/02/2012 07:16:53 AM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,04/25/2016 01:59:22 PM,Other,04/02/2012 07:23:28 AM,24TH ST/GUERRERO ST,SF,94110,B06,11,5524,3,3,3,true,Fire,1,ENGINE,9,6,8,Mission,"(37.7519716270837, -122.422878832716)",120930059-E24 -131250306,E10,13042354,Medical Incident,05/05/2013,05/05/2013,05/05/2013 08:30:49 PM,05/05/2013 08:32:34 PM,05/05/2013 08:32:50 PM,05/05/2013 08:34:35 PM,05/05/2013 08:37:03 PM,04/25/2016 01:52:56 PM,04/25/2016 01:52:56 PM,Other,05/05/2013 09:17:55 PM,400 Block of CLEMENT ST,SF,94118,B07,31,7127,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,7,1,Inner Richmond,"(37.783019404592, -122.463891765702)",131250306-E10 -140840283,E35,14028397,Medical Incident,03/25/2014,03/25/2014,03/25/2014 06:47:26 PM,03/25/2014 06:49:24 PM,03/25/2014 06:50:01 PM,03/25/2014 06:51:29 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/25/2014 07:02:13 PM,200 Block of MARKET ST,,94111,B03,13,2809,2,2,2,true,Non Life-threatening,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",140840283-E35 -113480190,T13,11115458,Alarms,12/14/2011,12/14/2011,12/14/2011 12:24:45 PM,12/14/2011 12:25:41 PM,12/14/2011 12:25:58 PM,12/14/2011 12:27:30 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 12:31:41 PM,0 Block of SANSOME ST,SF,94104,B01,13,1164,3,3,3,false,,1,TRUCK,3,1,3,Financial District/South Beach,"(37.7907035506423, -122.400717975575)",113480190-T13 -120030068,E05,12000943,Electrical Hazard,01/03/2012,01/02/2012,01/03/2012 05:57:20 AM,01/03/2012 06:01:14 AM,01/03/2012 06:01:20 AM,01/03/2012 06:02:54 AM,01/03/2012 06:05:24 AM,04/25/2016 02:00:49 PM,04/25/2016 02:00:49 PM,Fire,01/03/2012 06:19:16 AM,1000 Block of FILLMORE ST,SF,94115,B05,5,3534,3,3,3,true,Alarm,1,ENGINE,1,5,5,Western Addition,"(37.7791068008612, -122.431789184532)",120030068-E05 -110100194,E32,11003322,Structure Fire,01/10/2011,01/10/2011,01/10/2011 01:13:41 PM,01/10/2011 01:13:41 PM,01/10/2011 01:14:06 PM,01/10/2011 01:14:56 PM,01/10/2011 01:17:55 PM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/10/2011 01:43:48 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",110100194-E32 -160733054,AM16,16029134,Medical Incident,03/13/2016,03/13/2016,03/13/2016 10:24:10 PM,03/13/2016 10:26:40 PM,03/13/2016 10:27:39 PM,03/13/2016 10:28:11 PM,03/13/2016 10:40:26 PM,03/13/2016 10:54:58 PM,03/13/2016 11:05:19 PM,Code 2 Transport,03/13/2016 11:33:02 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160733054-AM16 -130440056,E02,13014842,Alarms,02/13/2013,02/12/2013,02/13/2013 05:27:38 AM,02/13/2013 05:28:30 AM,02/13/2013 05:28:38 AM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,Other,02/13/2013 05:29:16 AM,1100 Block of POWELL ST,SF,94108,B01,2,1354,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7951679550596, -122.409878515576)",130440056-E02 -160711809,AM02,16028241,Medical Incident,03/11/2016,03/11/2016,03/11/2016 01:26:44 PM,03/11/2016 01:28:26 PM,03/11/2016 01:32:53 PM,03/11/2016 01:37:12 PM,03/11/2016 01:48:18 PM,03/11/2016 01:58:08 PM,03/11/2016 02:16:15 PM,Code 2 Transport,03/11/2016 03:19:39 PM,VAN NESS AV/CHESTNUT ST,San Francisco,94109,B04,16,3144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,2,Marina,"(37.8022809826088, -122.424731260608)",160711809-AM02 -103350254,65,10107242,Medical Incident,12/01/2010,12/01/2010,12/01/2010 05:16:00 PM,12/01/2010 05:17:28 PM,12/01/2010 05:17:56 PM,12/01/2010 05:18:09 PM,12/01/2010 05:34:59 PM,12/01/2010 05:35:01 PM,12/01/2010 06:05:47 PM,Code 2 Transport,12/01/2010 06:22:53 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,true,,1,MEDIC,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",103350254-65 -121260076,E03,12041782,Structure Fire,05/05/2012,05/04/2012,05/05/2012 05:17:16 AM,05/05/2012 05:17:16 AM,05/05/2012 05:17:23 AM,05/05/2012 05:18:49 AM,05/05/2012 05:19:41 AM,04/25/2016 01:58:50 PM,04/25/2016 01:58:50 PM,Other,05/05/2012 05:20:10 AM,HYDE ST/SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Alarm,1,ENGINE,1,4,3,Nob Hill,"(37.7881778905715, -122.416827154311)",121260076-E03 -121700345,86,12056569,Medical Incident,06/18/2012,06/18/2012,06/18/2012 09:03:35 PM,06/18/2012 09:05:47 PM,06/18/2012 09:07:08 PM,06/18/2012 09:07:27 PM,06/18/2012 09:13:08 PM,06/18/2012 09:33:52 PM,06/18/2012 09:39:31 PM,Code 2 Transport,06/18/2012 10:00:59 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,1,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",121700345-86 -160421892,67,16016876,Medical Incident,02/11/2016,02/11/2016,02/11/2016 01:23:16 PM,02/11/2016 01:24:33 PM,02/11/2016 01:25:29 PM,02/11/2016 01:25:29 PM,02/11/2016 01:34:23 PM,02/11/2016 01:41:46 PM,02/11/2016 01:48:53 PM,Code 2 Transport,02/11/2016 02:34:39 PM,1500 Block of PAGE ST,San Francisco,94117,B05,21,4513,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7710924876971, -122.446340221566)",160421892-67 -123390101,T03,12112996,Medical Incident,12/04/2012,12/04/2012,12/04/2012 09:36:23 AM,12/04/2012 09:37:29 AM,12/04/2012 09:38:05 AM,12/04/2012 09:39:27 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 09:41:11 AM,HYDE ST/TURK ST,SF,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7825850332809, -122.415693872109)",123390101-T03 -132950280,E36,13100398,Medical Incident,10/22/2013,10/22/2013,10/22/2013 07:23:56 PM,10/22/2013 07:26:28 PM,10/22/2013 07:27:12 PM,10/22/2013 07:28:45 PM,10/22/2013 07:30:42 PM,04/25/2016 01:50:08 PM,04/25/2016 01:50:08 PM,Other,10/22/2013 07:39:07 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",132950280-E36 -130290177,B02,13009919,Alarms,01/29/2013,01/29/2013,01/29/2013 12:14:18 PM,01/29/2013 12:15:22 PM,01/29/2013 12:15:28 PM,01/29/2013 12:16:05 PM,01/29/2013 12:19:58 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/29/2013 12:38:17 PM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",130290177-B02 -103450247,E02,10110632,Medical Incident,12/11/2010,12/11/2010,12/11/2010 03:04:18 PM,12/11/2010 03:06:39 PM,12/11/2010 03:07:27 PM,12/11/2010 03:08:47 PM,12/11/2010 03:10:11 PM,12/11/2010 03:26:20 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 03:28:21 PM,1000 Block of STOCKTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",103450247-E02 -160060183,79,16002235,Medical Incident,01/06/2016,01/05/2016,01/06/2016 01:58:45 AM,01/06/2016 02:00:19 AM,01/06/2016 02:00:29 AM,01/06/2016 02:00:46 AM,01/06/2016 02:10:02 AM,01/06/2016 02:39:23 AM,01/06/2016 02:47:33 AM,Code 2 Transport,01/06/2016 03:22:08 AM,3600 Block of CABRILLO ST,San Francisco,94121,B07,34,7261,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7737694501394, -122.497712216449)",160060183-79 -160560634,53,16022272,Medical Incident,02/25/2016,02/24/2016,02/25/2016 07:33:48 AM,02/25/2016 07:34:57 AM,02/25/2016 07:37:37 AM,02/25/2016 07:37:45 AM,02/25/2016 07:50:30 AM,02/25/2016 08:09:54 AM,02/25/2016 08:40:22 AM,Code 2 Transport,02/25/2016 09:07:41 AM,1500 Block of 37TH AVE,San Francisco,94122,B08,18,7572,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7580458181971, -122.496156064465)",160560634-53 -112040309,T14,11067501,Alarms,07/23/2011,07/23/2011,07/23/2011 07:29:39 PM,07/23/2011 07:31:00 PM,07/23/2011 07:31:35 PM,07/23/2011 07:32:38 PM,07/23/2011 07:36:21 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 07:45:51 PM,400 Block of 38TH AVE,SF,94121,B07,34,7255,3,3,3,false,,1,TRUCK,2,7,1,Outer Richmond,"(37.779808370504, -122.498758567597)",112040309-T14 -102400338,RS2,10075832,Structure Fire,08/28/2010,08/28/2010,08/28/2010 09:27:24 PM,08/28/2010 09:28:16 PM,08/28/2010 09:28:51 PM,08/28/2010 09:30:10 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,04/25/2016 02:08:51 PM,Other,08/28/2010 09:35:51 PM,300 Block of HEAD ST,SF,94132,B09,33,8416,3,3,3,false,,1,RESCUE SQUAD,9,9,11,Oceanview/Merced/Ingleside,"(37.7136138852153, -122.464462764733)",102400338-RS2 -160662591,71,16026479,Medical Incident,03/06/2016,03/06/2016,03/06/2016 06:06:55 PM,03/06/2016 06:06:55 PM,03/06/2016 06:09:21 PM,03/06/2016 06:09:26 PM,03/06/2016 06:21:28 PM,03/06/2016 06:35:29 PM,03/06/2016 06:55:54 PM,Code 2 Transport,03/06/2016 07:35:52 PM,TURK ST/STEINER ST,San Francisco,94115,B05,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7802866938723, -122.433784545919)",160662591-71 -122240084,AM02,12074204,Medical Incident,08/11/2012,08/10/2012,08/11/2012 06:37:06 AM,08/11/2012 06:40:01 AM,08/11/2012 06:43:20 AM,08/11/2012 06:43:53 AM,08/11/2012 06:56:20 AM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Patient Declined Transport,08/11/2012 07:43:12 AM,700 Block of OFARRELL ST,SF,94109,B04,3,1642,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7853258318143, -122.417091509186)",122240084-AM02 -102590048,E01,10081712,Medical Incident,09/16/2010,09/15/2010,09/16/2010 03:25:47 AM,09/16/2010 03:27:44 AM,09/16/2010 03:28:30 AM,09/16/2010 03:30:56 AM,09/16/2010 03:35:18 AM,04/25/2016 02:08:34 PM,04/25/2016 02:08:34 PM,Other,09/16/2010 03:55:52 AM,900 Block of MARKET ST,SF,94102,B03,1,2247,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",102590048-E01 -160563824,58,16022549,Medical Incident,02/25/2016,02/25/2016,02/25/2016 09:41:32 PM,02/25/2016 09:43:13 PM,02/25/2016 09:43:32 PM,02/25/2016 09:43:42 PM,02/25/2016 09:54:00 PM,02/25/2016 10:04:18 PM,02/25/2016 10:20:26 PM,Code 2 Transport,02/25/2016 10:57:56 PM,1200 Block of TREAT AVE,San Francisco,94110,B06,7,5533,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7501648383073, -122.412831855469)",160563824-58 -160493101,KM11,16019835,Medical Incident,02/18/2016,02/18/2016,02/18/2016 06:22:51 PM,02/18/2016 06:26:26 PM,02/18/2016 06:28:01 PM,02/18/2016 06:28:41 PM,02/18/2016 06:38:29 PM,02/18/2016 06:52:30 PM,02/18/2016 06:56:52 PM,Code 2 Transport,02/18/2016 07:31:20 PM,100 Block of 29TH ST,San Francisco,94110,B06,11,5576,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7438354653162, -122.423521889173)",160493101-KM11 -131120038,KM15,13037574,Medical Incident,04/22/2013,04/21/2013,04/22/2013 04:18:40 AM,04/22/2013 04:20:09 AM,04/22/2013 04:20:55 AM,04/22/2013 04:21:31 AM,04/22/2013 04:30:25 AM,04/22/2013 04:41:49 AM,04/22/2013 05:13:14 AM,Code 2 Transport,04/22/2013 05:24:37 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",131120038-KM15 -160280952,KM04,16011016,Medical Incident,01/28/2016,01/28/2016,01/28/2016 09:25:29 AM,01/28/2016 09:26:14 AM,01/28/2016 09:26:20 AM,01/28/2016 09:28:07 AM,01/28/2016 09:35:36 AM,01/28/2016 09:51:53 AM,01/28/2016 10:15:29 AM,Code 2 Transport,01/28/2016 11:15:25 AM,CALL BOX: US HWY 101 NB OR SB IN PRESIDIO,San Francisco,94129,B99,51,4632,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio,"(37.8066581989584, -122.47471662098)",160280952-KM04 -133450370,88,13117147,Medical Incident,12/11/2013,12/11/2013,12/11/2013 06:38:41 PM,12/11/2013 06:41:22 PM,12/11/2013 06:42:04 PM,12/11/2013 06:42:34 PM,12/11/2013 06:46:14 PM,12/11/2013 07:06:42 PM,12/11/2013 07:21:43 PM,Code 2 Transport,12/11/2013 07:51:04 PM,800 Block of MISSION ST,SF,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7835100715421, -122.405395493939)",133450370-88 -110400259,RS1,11013300,Medical Incident,02/09/2011,02/09/2011,02/09/2011 03:29:13 PM,02/09/2011 03:29:38 PM,02/09/2011 03:29:52 PM,02/09/2011 03:30:18 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,04/25/2016 02:06:10 PM,Other,04/25/2016 02:06:10 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,false,,1,RESCUE SQUAD,3,2,6,South of Market,"(37.7751713046069, -122.410385772132)",110400259-RS1 -132280020,E10,13076815,Assist Police,08/16/2013,08/15/2013,08/16/2013 01:41:06 AM,08/16/2013 01:41:31 AM,08/16/2013 01:42:17 AM,08/16/2013 01:44:07 AM,08/16/2013 01:47:13 AM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Fire,08/16/2013 01:52:59 AM,GEARY BL/WOOD ST,SF,94118,B05,10,4455,3,3,3,true,Alarm,1,ENGINE,1,5,2,Presidio Heights,"(37.7823143742059, -122.449079404794)",132280020-E10 -160063337,63,16002576,Traffic Collision,01/06/2016,01/06/2016,01/06/2016 08:05:14 PM,01/06/2016 08:07:37 PM,01/06/2016 08:07:58 PM,01/06/2016 08:09:11 PM,01/06/2016 08:26:38 PM,01/06/2016 08:39:05 PM,01/06/2016 08:56:23 PM,Code 2 Transport,01/06/2016 09:21:03 PM,26TH ST/MISSION ST,San Francisco,94110,B06,11,5613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,6,9,Mission,"(37.7490412884368, -122.418135251703)",160063337-63 -131610006,E36,13054535,Medical Incident,06/10/2013,06/09/2013,06/10/2013 12:23:12 AM,06/10/2013 12:24:10 AM,06/10/2013 12:24:32 AM,06/10/2013 12:26:28 AM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/10/2013 12:29:18 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",131610006-E36 -133150011,E23,13106914,Medical Incident,11/11/2013,11/10/2013,11/11/2013 12:55:06 AM,11/11/2013 12:56:51 AM,11/11/2013 12:57:12 AM,11/11/2013 12:58:53 AM,11/11/2013 01:01:27 AM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/11/2013 01:10:22 AM,1600 Block of 48TH AVE,SF,94122,B08,23,7724,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7556706107482, -122.507670205519)",133150011-E23 -133170162,T10,13107717,Alarms,11/13/2013,11/13/2013,11/13/2013 11:51:54 AM,11/13/2013 11:54:13 AM,11/13/2013 11:54:17 AM,11/13/2013 11:55:47 AM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,04/25/2016 01:49:47 PM,Other,11/13/2013 12:06:00 PM,3100 Block of WASHINGTON ST,SF,94115,B04,10,4265,3,3,3,true,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7901683360744, -122.445106098836)",133170162-T10 -131690037,68,13057253,Medical Incident,06/18/2013,06/17/2013,06/18/2013 03:32:08 AM,06/18/2013 03:32:36 AM,06/18/2013 03:33:01 AM,06/18/2013 03:33:25 AM,06/18/2013 03:37:15 AM,06/18/2013 04:25:12 AM,06/18/2013 04:46:47 AM,Code 2 Transport,06/18/2013 05:31:01 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",131690037-68 -131760383,T03,13059879,Alarms,06/25/2013,06/25/2013,06/25/2013 08:37:23 PM,06/25/2013 08:38:15 PM,06/25/2013 08:38:25 PM,06/25/2013 08:39:30 PM,06/25/2013 08:41:52 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,06/25/2013 08:42:35 PM,0 Block of PETER YORKE WAY,SF,94109,B04,3,3256,3,3,3,false,Alarm,1,TRUCK,2,4,2,Western Addition,"(37.7859105596723, -122.4240241282)",131760383-T03 -160050362,89,16001851,Medical Incident,01/05/2016,01/04/2016,01/05/2016 04:37:57 AM,01/05/2016 04:42:02 AM,01/05/2016 04:42:31 AM,01/05/2016 04:48:25 AM,01/05/2016 04:49:36 AM,01/05/2016 05:06:34 AM,01/05/2016 05:15:47 AM,Code 2 Transport,01/05/2016 05:35:54 AM,800 Block of MARKET ST,San Francisco,94102,B03,1,2209,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Tenderloin,"(37.7843455364627, -122.407785146121)",160050362-89 -160881759,AM10,16034962,Medical Incident,03/28/2016,03/28/2016,03/28/2016 12:45:07 PM,03/28/2016 12:45:07 PM,03/28/2016 12:46:17 PM,03/28/2016 12:46:47 PM,03/28/2016 12:50:30 PM,03/28/2016 12:59:24 PM,03/28/2016 01:29:09 PM,Code 2 Transport,03/28/2016 01:45:02 PM,2700 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7530339738059, -122.418588598473)",160881759-AM10 -130350321,AP,13012096,Other,02/04/2013,02/04/2013,02/04/2013 04:55:41 PM,02/04/2013 04:55:41 PM,02/04/2013 04:55:41 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Fire,02/04/2013 04:55:59 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",130350321-AP -111770418,KM15,11058568,Medical Incident,06/26/2011,06/26/2011,06/26/2011 08:52:37 PM,06/26/2011 08:54:25 PM,06/26/2011 08:54:52 PM,06/26/2011 08:56:46 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,04/25/2016 02:03:57 PM,Patient Declined Transport,06/26/2011 09:02:11 PM,0 Block of GOLDEN GATE AVE,SF,94102,B03,1,1454,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.782141624229, -122.411246661611)",111770418-KM15 -121570041,KM15,12051836,Medical Incident,06/05/2012,06/04/2012,06/05/2012 03:52:18 AM,06/05/2012 03:53:01 AM,06/05/2012 03:53:48 AM,06/05/2012 03:55:09 AM,06/05/2012 04:01:43 AM,06/05/2012 04:18:57 AM,06/05/2012 04:35:57 AM,Code 2 Transport,06/05/2012 04:59:08 AM,500 Block of LOMBARD ST,SF,94133,B01,28,1346,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8031454516904, -122.410037627418)",121570041-KM15 -121330224,T15,12044297,Alarms,05/12/2012,05/12/2012,05/12/2012 04:05:51 PM,05/12/2012 04:07:20 PM,05/12/2012 04:07:28 PM,05/12/2012 04:08:49 PM,05/12/2012 04:11:59 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 04:25:12 PM,100 Block of APTOS AVE,SF,94127,B09,15,853,3,3,3,false,Alarm,1,TRUCK,2,9,7,West of Twin Peaks,"(37.7292047405741, -122.466744756588)",121330224-T15 -112600246,E36,11085797,Medical Incident,09/17/2011,09/17/2011,09/17/2011 02:41:54 PM,09/17/2011 02:44:22 PM,09/17/2011 02:44:32 PM,09/17/2011 02:44:48 PM,09/17/2011 02:46:12 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 03:03:26 PM,OCTAVIA ST/FELL ST,SF,94102,B02,36,3314,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7757539609909, -122.424324651558)",112600246-E36 -133400309,67,13115344,Medical Incident,12/06/2013,12/06/2013,12/06/2013 05:55:05 PM,12/06/2013 05:57:13 PM,12/06/2013 06:17:44 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,04/25/2016 01:49:25 PM,Other,12/06/2013 06:21:02 PM,24TH ST/CHURCH ST,SF,94114,B06,11,5523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",133400309-67 -140790173,AM08,14026708,Medical Incident,03/20/2014,03/20/2014,03/20/2014 12:29:27 PM,03/20/2014 12:30:48 PM,03/20/2014 12:32:01 PM,03/20/2014 12:32:42 PM,03/20/2014 12:40:10 PM,03/20/2014 01:03:01 PM,03/20/2014 01:17:06 PM,Code 2 Transport,03/20/2014 02:09:03 PM,1200 Block of LAGUNA ST,SAN FRANCISCO,94109,B02,5,3366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",140790173-AM08 -123500061,68,12116936,Medical Incident,12/15/2012,12/14/2012,12/15/2012 04:51:11 AM,12/15/2012 04:53:01 AM,12/15/2012 04:53:31 AM,12/15/2012 04:53:57 AM,12/15/2012 05:01:21 AM,12/15/2012 05:24:46 AM,12/15/2012 05:34:31 AM,Code 2 Transport,12/15/2012 06:01:36 AM,1700 Block of BUSH ST,SF,94109,B04,38,3255,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",123500061-68 -110280295,89,11009317,Medical Incident,01/28/2011,01/28/2011,01/28/2011 07:11:33 PM,01/28/2011 07:12:54 PM,01/28/2011 07:13:26 PM,01/28/2011 07:14:09 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/28/2011 07:14:29 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7803875013555, -122.407877117352)",110280295-89 -160642314,88,16025551,Medical Incident,03/04/2016,03/04/2016,03/04/2016 02:55:05 PM,03/04/2016 02:57:10 PM,03/04/2016 02:57:32 PM,03/04/2016 02:58:23 PM,03/04/2016 03:03:46 PM,03/04/2016 03:18:51 PM,03/04/2016 03:33:52 PM,Code 2 Transport,03/04/2016 04:08:22 PM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160642314-88 -131570186,T07,13053224,Alarms,06/06/2013,06/06/2013,06/06/2013 12:05:58 PM,06/06/2013 12:06:02 PM,06/06/2013 12:06:08 PM,06/06/2013 12:07:32 PM,06/06/2013 12:09:35 PM,04/25/2016 01:52:26 PM,04/25/2016 01:52:26 PM,Other,06/06/2013 12:10:47 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",131570186-T07 -160240142,55,16009392,Medical Incident,01/24/2016,01/23/2016,01/24/2016 12:46:27 AM,01/24/2016 12:48:59 AM,01/24/2016 12:49:54 AM,01/24/2016 12:50:13 AM,01/24/2016 01:00:37 AM,01/24/2016 01:04:40 AM,01/24/2016 01:27:08 AM,Code 2 Transport,01/24/2016 02:05:51 AM,200 Block of BAY SHORE BLVD,San Francisco,94110,B10,9,6376,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Bernal Heights,"(37.744013662148, -122.404748375449)",160240142-55 -160571191,70,16022699,Medical Incident,02/26/2016,02/26/2016,02/26/2016 10:22:14 AM,02/26/2016 10:24:07 AM,02/26/2016 10:31:22 AM,02/26/2016 10:31:36 AM,02/26/2016 10:48:37 AM,02/26/2016 11:06:25 AM,02/26/2016 11:13:53 AM,Code 2 Transport,02/26/2016 12:00:17 PM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7658582826035, -122.419816092644)",160571191-70 -121370141,60,12045482,Medical Incident,05/16/2012,05/16/2012,05/16/2012 10:22:49 AM,05/16/2012 10:23:39 AM,05/16/2012 10:24:20 AM,05/16/2012 10:25:01 AM,05/16/2012 10:29:39 AM,05/16/2012 10:52:00 AM,05/16/2012 11:04:17 AM,Code 3 Transport,05/16/2012 11:43:13 AM,600 Block of PINE ST,SF,94108,B01,2,1325,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7913438783013, -122.406521512107)",121370141-60 -121820345,82,12060746,Medical Incident,06/30/2012,06/30/2012,06/30/2012 08:42:02 PM,06/30/2012 08:47:26 PM,06/30/2012 08:48:06 PM,06/30/2012 08:48:22 PM,06/30/2012 09:08:17 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Unable to Locate,06/30/2012 09:10:53 PM,5TH ST/MISSION ST,SF,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",121820345-82 -103490162,67,10111907,Medical Incident,12/15/2010,12/15/2010,12/15/2010 11:59:40 AM,12/15/2010 11:59:45 AM,12/15/2010 12:00:02 PM,12/15/2010 12:00:10 PM,12/15/2010 12:03:34 PM,12/15/2010 12:18:12 PM,12/15/2010 12:28:56 PM,Code 2 Transport,12/15/2010 12:56:18 PM,FOLSOM ST/15TH ST,SF,94103,B02,29,5217,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7669370561649, -122.415462127659)",103490162-67 -122950160,96,12097828,Medical Incident,10/21/2012,10/21/2012,10/21/2012 12:33:17 PM,10/21/2012 12:34:15 PM,10/21/2012 12:35:06 PM,10/21/2012 12:35:15 PM,10/21/2012 12:39:53 PM,10/21/2012 12:58:29 PM,10/21/2012 01:21:20 PM,Code 2 Transport,10/21/2012 01:47:43 PM,100 Block of SERRANO DR,SF,94132,B08,19,8426,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7200756028177, -122.478531532675)",122950160-96 -133390143,B04,13114850,Structure Fire,12/05/2013,12/05/2013,12/05/2013 10:29:41 AM,12/05/2013 10:30:50 AM,12/05/2013 10:33:13 AM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Fire,12/05/2013 10:38:31 AM,1500 Block of STOCKTON ST,SF,94133,B01,28,1334,3,3,3,false,Alarm,1,CHIEF,11,1,3,North Beach,"(37.799975359605, -122.40903359976)",133390143-B04 -130320180,57,13010921,Medical Incident,02/01/2013,02/01/2013,02/01/2013 01:27:33 PM,02/01/2013 01:28:38 PM,02/01/2013 01:28:51 PM,02/01/2013 01:29:21 PM,02/01/2013 01:55:59 PM,02/01/2013 02:11:36 PM,02/01/2013 02:43:27 PM,Code 2 Transport,02/01/2013 03:06:16 PM,0 Block of FAXON AVE,SF,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7170178724404, -122.46029636669)",130320180-57 -160763949,KM07,16030367,Medical Incident,03/16/2016,03/16/2016,03/16/2016 09:48:27 PM,03/16/2016 09:48:27 PM,03/16/2016 09:48:27 PM,03/16/2016 09:48:27 PM,03/16/2016 09:48:27 PM,03/16/2016 10:15:20 PM,03/16/2016 10:15:30 PM,Code 2 Transport,03/16/2016 11:14:36 PM,1900 Block of MARKET ST,San Francisco,94103,B99,6,5127,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7692634200467, -122.426480169588)",160763949-KM07 -110900132,92,11029720,Structure Fire,03/31/2011,03/31/2011,03/31/2011 11:20:21 AM,03/31/2011 11:21:42 AM,03/31/2011 11:21:50 AM,03/31/2011 11:22:18 AM,03/31/2011 11:28:54 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Other,03/31/2011 11:28:56 AM,600 Block of MISSION ST,SF,94105,B03,1,2145,3,3,3,true,,1,MEDIC,9,3,6,Financial District/South Beach,"(37.7871121680272, -122.400833489392)",110900132-92 -160421309,84,16016817,Medical Incident,02/11/2016,02/11/2016,02/11/2016 10:49:08 AM,02/11/2016 10:49:08 AM,02/11/2016 10:49:39 AM,02/11/2016 10:49:51 AM,02/11/2016 11:02:34 AM,02/11/2016 11:23:45 AM,02/11/2016 11:39:38 AM,Code 2 Transport,02/11/2016 12:13:35 PM,600 Block of KING ST,San Francisco,94107,B03,29,2275,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,10,Mission Bay,"(37.7705405549826, -122.401653062396)",160421309-84 -133250142,65,13110348,Medical Incident,11/21/2013,11/21/2013,11/21/2013 11:00:39 AM,11/21/2013 11:01:50 AM,11/21/2013 11:04:48 AM,04/25/2016 01:49:39 PM,11/21/2013 11:06:24 AM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Medical Examiner,11/21/2013 12:25:13 PM,3100 Block of 16TH ST,SF,94110,B02,6,5235,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",133250142-65 -121180101,68,12039024,Traffic Collision,04/27/2012,04/27/2012,04/27/2012 08:56:12 AM,04/27/2012 08:58:17 AM,04/27/2012 08:58:41 AM,04/27/2012 08:58:50 AM,04/27/2012 09:04:41 AM,04/27/2012 09:19:26 AM,04/27/2012 09:58:36 AM,Code 2 Transport,04/27/2012 10:19:02 AM,WASHINGTON ST/VAN NESS AV,SF,94109,B04,41,3154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7930500018548, -122.422871202871)",121180101-68 -120910158,KM04,12030102,Medical Incident,03/31/2012,03/31/2012,03/31/2012 12:33:00 PM,03/31/2012 12:33:28 PM,03/31/2012 12:33:52 PM,03/31/2012 12:34:27 PM,03/31/2012 12:39:33 PM,03/31/2012 12:57:08 PM,03/31/2012 01:02:34 PM,Code 2 Transport,03/31/2012 01:32:56 PM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",120910158-KM04 -110670219,E22,11022093,Medical Incident,03/08/2011,03/08/2011,03/08/2011 02:48:22 PM,03/08/2011 02:49:59 PM,03/08/2011 02:58:05 PM,03/08/2011 02:59:18 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,04/25/2016 02:05:44 PM,Other,03/08/2011 03:07:32 PM,LINCOLN WY/MARTIN LUTHER KING DR,SF,94122,B08,23,7722,2,2,2,true,,1,ENGINE,2,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",110670219-E22 -130190018,AM10,13006375,Medical Incident,01/19/2013,01/18/2013,01/19/2013 12:24:27 AM,01/19/2013 12:26:55 AM,01/19/2013 12:27:42 AM,01/19/2013 12:28:21 AM,01/19/2013 12:35:22 AM,04/25/2016 01:54:44 PM,04/25/2016 01:54:44 PM,Patient Declined Transport,01/19/2013 12:47:29 AM,FRANCISCO ST/TAYLOR ST,SF,94133,B01,28,1433,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.804480983042, -122.415052275362)",130190018-AM10 -133330020,55,13112821,Medical Incident,11/29/2013,11/28/2013,11/29/2013 01:49:53 AM,11/29/2013 01:52:37 AM,11/29/2013 01:53:05 AM,11/29/2013 01:54:16 AM,11/29/2013 01:58:52 AM,11/29/2013 02:16:16 AM,11/29/2013 02:41:49 AM,Code 2 Transport,11/29/2013 02:49:39 AM,DIVISION ST/BRYANT ST,SF,94103,B02,29,5222,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7694111910912, -122.410931089145)",133330020-55 -160693966,89,16027683,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:33:39 PM,03/09/2016 11:35:05 PM,03/09/2016 11:35:35 PM,03/09/2016 11:35:48 PM,03/09/2016 11:39:37 PM,03/10/2016 12:14:31 AM,03/10/2016 12:23:53 AM,Code 2 Transport,03/10/2016 01:01:04 AM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160693966-89 -161012513,63,16040261,Medical Incident,04/10/2016,04/10/2016,04/10/2016 05:12:47 PM,04/10/2016 05:13:38 PM,04/10/2016 05:15:02 PM,04/10/2016 05:15:44 PM,04/10/2016 05:29:20 PM,04/10/2016 05:34:39 PM,04/10/2016 06:19:28 PM,Code 3 Transport,04/10/2016 06:54:03 PM,ANZA ST/17TH AV,San Francisco,94121,B07,31,7154,2,2,2,true,Non Life-threatening,1,MEDIC,4,7,1,Outer Richmond,"(37.778553839927, -122.47602527714)",161012513-63 -122460263,E01,12081421,Medical Incident,09/02/2012,09/02/2012,09/02/2012 03:45:41 PM,09/02/2012 03:46:22 PM,09/02/2012 03:46:41 PM,09/02/2012 03:48:38 PM,09/02/2012 03:50:34 PM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 03:52:55 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7807144867659, -122.408483722327)",122460263-E01 -140580249,65,14019616,Medical Incident,02/27/2014,02/27/2014,02/27/2014 03:53:23 PM,02/27/2014 03:54:26 PM,02/27/2014 03:55:15 PM,02/27/2014 03:55:30 PM,02/27/2014 04:05:01 PM,04/25/2016 01:47:59 PM,04/25/2016 01:47:59 PM,Patient Declined Transport,02/27/2014 04:19:10 PM,400 Block of BALBOA ST,SF,94118,B07,31,7123,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7773135972539, -122.463479596584)",140580249-65 -103180139,B03,10101893,Alarms,11/14/2010,11/14/2010,11/14/2010 10:06:07 AM,11/14/2010 10:06:49 AM,11/14/2010 10:07:01 AM,11/14/2010 10:07:16 AM,11/14/2010 10:10:39 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 10:12:29 AM,600 Block of HARRISON ST,SF,94107,B03,8,2151,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7836226300515, -122.395934034616)",103180139-B03 -122630140,E03,12086827,Medical Incident,09/19/2012,09/19/2012,09/19/2012 11:31:05 AM,09/19/2012 11:31:37 AM,09/19/2012 11:31:46 AM,09/19/2012 11:34:06 AM,09/19/2012 11:35:09 AM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,09/19/2012 11:48:29 AM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122630140-E03 -122900187,E13,12095968,Medical Incident,10/16/2012,10/16/2012,10/16/2012 11:56:14 AM,10/16/2012 11:57:43 AM,10/16/2012 11:58:13 AM,10/16/2012 11:59:28 AM,10/16/2012 12:01:24 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,No Merit,10/16/2012 12:09:22 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7935319599364, -122.396988402193)",122900187-E13 -132200285,B01,13074399,Medical Incident,08/08/2013,08/08/2013,08/08/2013 06:31:31 PM,08/08/2013 06:32:02 PM,08/08/2013 06:35:18 PM,08/08/2013 06:36:46 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,04/25/2016 01:51:24 PM,Other,08/08/2013 06:37:24 PM,700 Block of JACKSON ST,SF,94133,B01,2,1312,E,3,3,false,Potentially Life-Threatening,1,CHIEF,5,1,3,Chinatown,"(37.7959728118622, -122.407508751222)",132200285-B01 -113080041,94,11102215,Medical Incident,11/04/2011,11/03/2011,11/04/2011 05:49:58 AM,11/04/2011 05:51:19 AM,11/04/2011 05:51:59 AM,11/04/2011 05:52:12 AM,11/04/2011 05:55:52 AM,11/04/2011 06:22:12 AM,11/04/2011 06:27:33 AM,Code 2 Transport,11/04/2011 06:46:34 AM,1000 Block of EDDY ST,SF,94109,B02,5,3262,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",113080041-94 -122240172,T14,12074267,Alarms,08/11/2012,08/11/2012,08/11/2012 12:16:40 PM,08/11/2012 12:17:49 PM,08/11/2012 12:17:54 PM,08/11/2012 12:19:25 PM,08/11/2012 12:22:27 PM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Other,08/11/2012 12:23:02 PM,1100 Block of LAKE ST,SF,94118,B07,31,7137,3,3,3,false,Alarm,1,TRUCK,3,7,2,Inner Richmond,"(37.7864151879281, -122.47165433904)",122240172-T14 -160701722,70,16027858,Medical Incident,03/10/2016,03/10/2016,03/10/2016 01:03:59 PM,03/10/2016 01:03:59 PM,03/10/2016 01:06:45 PM,03/10/2016 01:08:02 PM,03/10/2016 01:20:14 PM,03/10/2016 01:34:21 PM,03/10/2016 02:01:38 PM,Code 2 Transport,03/10/2016 02:38:58 PM,OAKDALE AV/MENDELL ST,San Francisco,94124,B10,17,6534,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7345987087422, -122.390344550544)",160701722-70 -112470056,T03,11081353,Structure Fire,09/04/2011,09/03/2011,09/04/2011 03:01:26 AM,09/04/2011 03:01:29 AM,09/04/2011 03:01:48 AM,09/04/2011 03:02:59 AM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,04/25/2016 02:02:51 PM,Other,09/04/2011 03:04:40 AM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,false,,1,TRUCK,2,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",112470056-T03 -160331842,54,16012998,Medical Incident,02/02/2016,02/02/2016,02/02/2016 01:50:17 PM,02/02/2016 01:51:35 PM,02/02/2016 01:52:07 PM,02/02/2016 01:52:44 PM,02/02/2016 01:55:27 PM,02/02/2016 02:14:06 PM,02/02/2016 02:19:57 PM,Code 2 Transport,02/02/2016 02:57:51 PM,0 Block of LECH WALESA ST,San Francisco,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7779227182608, -122.418951160054)",160331842-54 -160401919,KM15,16016044,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:26:36 PM,02/09/2016 01:28:29 PM,02/09/2016 01:28:53 PM,02/09/2016 01:29:37 PM,02/09/2016 01:32:59 PM,02/09/2016 01:48:34 PM,02/09/2016 02:08:31 PM,Code 2 Transport,02/09/2016 02:40:49 PM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",160401919-KM15 -160863586,53,16034357,Medical Incident,03/26/2016,03/26/2016,03/26/2016 09:29:16 PM,03/26/2016 09:32:27 PM,03/26/2016 09:33:11 PM,03/26/2016 09:33:21 PM,03/26/2016 09:35:46 PM,03/26/2016 10:12:16 PM,03/26/2016 10:41:46 PM,Code 2 Transport,03/26/2016 11:08:49 PM,1300 Block of PINE ST,San Francisco,94109,B04,41,1562,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",160863586-53 -133590304,E06,13122159,Structure Fire,12/25/2013,12/25/2013,12/25/2013 08:51:34 PM,12/25/2013 08:52:41 PM,12/25/2013 08:55:50 PM,12/25/2013 08:56:30 PM,12/25/2013 08:59:51 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/25/2013 09:55:03 PM,600 Block of BAKER ST,SF,94117,B05,21,4254,3,3,3,true,Fire,3,ENGINE,6,5,5,Western Addition,"(37.7769128700758, -122.441514932109)",133590304-E06 -121390149,E03,12046132,Medical Incident,05/18/2012,05/18/2012,05/18/2012 11:40:39 AM,05/18/2012 11:41:29 AM,05/18/2012 11:42:15 AM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/18/2012 11:53:15 AM,600 Block of MASON ST,SF,94108,B01,3,1412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,Nob Hill,"(37.7894926602391, -122.41026951897)",121390149-E03 -160581777,61,16023122,Medical Incident,02/27/2016,02/27/2016,02/27/2016 01:09:26 PM,02/27/2016 01:09:26 PM,02/27/2016 01:10:12 PM,02/27/2016 01:10:39 PM,02/27/2016 01:27:45 PM,02/27/2016 01:31:16 PM,02/27/2016 01:49:03 PM,Code 2 Transport,02/27/2016 02:22:08 PM,200 Block of GEARY ST,San Francisco,94102,B01,1,1323,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",160581777-61 -160533479,84,16021384,Medical Incident,02/22/2016,02/22/2016,02/22/2016 10:07:26 PM,02/22/2016 10:08:35 PM,02/22/2016 10:09:20 PM,02/22/2016 10:09:31 PM,02/22/2016 10:13:03 PM,02/22/2016 10:27:38 PM,02/22/2016 10:50:03 PM,Code 2 Transport,02/22/2016 11:20:24 PM,TEHAMA ST/2ND ST,San Francisco,94105,B03,1,2146,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7863386154364, -122.39770448764)",160533479-84 -110510148,T11,11016855,Citizen Assist / Service Call,02/20/2011,02/20/2011,02/20/2011 09:52:21 AM,02/20/2011 09:57:08 AM,02/20/2011 09:57:15 AM,04/25/2016 02:05:59 PM,02/20/2011 09:58:20 AM,04/25/2016 02:05:59 PM,04/25/2016 02:05:59 PM,Other,02/20/2011 10:05:01 AM,19TH ST/VALENCIA ST,SF,94110,B06,7,5434,3,3,3,false,,1,TRUCK,1,6,8,Mission,"(37.7601012942817, -122.42142521264)",110510148-T11 -112760081,E36,11091271,Medical Incident,10/03/2011,10/02/2011,10/03/2011 07:43:32 AM,10/03/2011 07:44:29 AM,10/03/2011 07:45:06 AM,10/03/2011 07:46:23 AM,10/03/2011 07:49:12 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,No Merit,10/03/2011 07:55:48 AM,700 Block of NATOMA ST,SF,94103,B02,1,2318,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",112760081-E36 -130070239,T06,13002415,Alarms,01/07/2013,01/07/2013,01/07/2013 02:56:18 PM,01/07/2013 02:57:19 PM,01/07/2013 02:57:30 PM,01/07/2013 02:58:46 PM,01/07/2013 03:00:04 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 03:09:48 PM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,false,Alarm,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",130070239-T06 -140120163,84,14004134,Medical Incident,01/12/2014,01/12/2014,01/12/2014 01:26:07 PM,01/12/2014 01:26:51 PM,01/12/2014 01:27:00 PM,01/12/2014 01:27:14 PM,01/12/2014 01:30:13 PM,01/12/2014 01:57:30 PM,01/12/2014 02:18:42 PM,Code 2 Transport,01/12/2014 03:04:38 PM,1900 Block of POST ST,SF,94115,B04,5,3622,3,1,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7850500973338, -122.434328328397)",140120163-84 -140540015,E16,14018136,Medical Incident,02/23/2014,02/22/2014,02/23/2014 01:09:19 AM,02/23/2014 01:10:03 AM,02/23/2014 01:11:32 AM,02/23/2014 01:13:05 AM,02/23/2014 01:14:54 AM,04/25/2016 01:48:04 PM,04/25/2016 01:48:04 PM,No Merit,02/23/2014 01:19:42 AM,FILLMORE ST/LOMBARD ST,SF,94123,B04,16,3566,2,2,2,true,Non Life-threatening,1,ENGINE,1,4,2,Marina,"(37.7998429502723, -122.436046173981)",140540015-E16 -160610701,55,16024215,Medical Incident,03/01/2016,03/01/2016,03/01/2016 08:17:47 AM,03/01/2016 08:17:47 AM,03/01/2016 08:18:15 AM,03/01/2016 08:19:35 AM,03/01/2016 08:25:29 AM,03/01/2016 08:46:06 AM,03/01/2016 08:46:07 AM,Code 2 Transport,03/01/2016 09:41:02 AM,FOLSOM ST/COLUMBIA SQUARE ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7778565371375, -122.406436335794)",160610701-55 -112510327,E05,11082868,Medical Incident,09/08/2011,09/08/2011,09/08/2011 06:28:18 PM,09/08/2011 06:29:08 PM,09/08/2011 06:29:30 PM,09/08/2011 06:30:47 PM,09/08/2011 06:34:23 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 06:46:34 PM,1800 Block of POST ST,SF,94115,B04,5,3513,3,3,3,true,,1,ENGINE,1,4,5,Japantown,"(37.7853160090058, -122.432236013697)",112510327-E05 -160112474,AM16,16004478,Medical Incident,01/11/2016,01/11/2016,01/11/2016 04:41:05 PM,01/11/2016 04:41:53 PM,01/11/2016 04:42:46 PM,01/11/2016 04:43:24 PM,01/11/2016 04:46:40 PM,01/11/2016 05:06:01 PM,01/11/2016 05:21:25 PM,Code 2 Transport,01/11/2016 05:44:21 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160112474-AM16 -133410233,87,13115661,Medical Incident,12/07/2013,12/07/2013,12/07/2013 02:53:42 PM,12/07/2013 02:57:17 PM,12/07/2013 02:58:44 PM,12/07/2013 02:58:55 PM,12/07/2013 03:02:49 PM,12/07/2013 03:23:46 PM,12/07/2013 03:47:55 PM,Code 2 Transport,12/07/2013 04:23:25 PM,600 Block of LARCH ST,SF,94115,B02,5,3426,B,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7814259621039, -122.428114018336)",133410233-87 -131470038,E07,13049760,Medical Incident,05/27/2013,05/26/2013,05/27/2013 03:24:38 AM,05/27/2013 03:26:35 AM,05/27/2013 03:26:56 AM,05/27/2013 03:28:19 AM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,Other,05/27/2013 03:31:45 AM,3100 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7524180928571, -122.414623849785)",131470038-E07 -103250170,AM04,10104174,Medical Incident,11/21/2010,11/21/2010,11/21/2010 12:39:52 PM,11/21/2010 12:42:13 PM,11/21/2010 12:43:10 PM,11/21/2010 12:43:46 PM,11/21/2010 12:55:18 PM,11/21/2010 01:08:46 PM,11/21/2010 01:36:53 PM,Code 2 Transport,11/21/2010 02:07:17 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,3,3,3,false,,1,PRIVATE,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",103250170-AM04 -140900244,B09,14030349,Structure Fire,03/31/2014,03/31/2014,03/31/2014 04:23:18 PM,03/31/2014 04:24:03 PM,03/31/2014 04:24:38 PM,03/31/2014 04:25:34 PM,03/31/2014 04:28:04 PM,04/25/2016 01:47:28 PM,04/25/2016 01:47:28 PM,Fire,03/31/2014 04:35:21 PM,400 Block of HEAD ST,SAN FRANCISCO,94132,B09,33,8414,3,3,3,false,Alarm,1,CHIEF,2,9,11,Oceanview/Merced/Ingleside,"(37.7152105863899, -122.46434148233)",140900244-B09 -112270409,74,11075216,Medical Incident,08/15/2011,08/15/2011,08/15/2011 11:15:09 PM,08/15/2011 11:15:30 PM,08/15/2011 11:15:36 PM,08/15/2011 11:16:57 PM,08/15/2011 11:20:42 PM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Medical Examiner,08/16/2011 12:35:31 AM,0 Block of LAFAYETTE ST,SF,94103,B02,36,5116,E,3,3,true,,1,MEDIC,2,2,6,Mission,"(37.7730197753185, -122.417140617088)",112270409-74 -112980192,KM15,11098862,Medical Incident,10/25/2011,10/25/2011,10/25/2011 12:39:17 PM,10/25/2011 12:39:59 PM,10/25/2011 12:41:24 PM,10/25/2011 12:41:55 PM,10/25/2011 12:47:19 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,No Merit,10/25/2011 01:27:27 PM,400 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,2,2,2,false,,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7144912745705, -122.455997573047)",112980192-KM15 -160432171,89,16017343,Medical Incident,02/12/2016,02/12/2016,02/12/2016 03:01:34 PM,02/12/2016 03:01:34 PM,02/12/2016 03:01:34 PM,02/12/2016 03:01:34 PM,02/12/2016 03:01:34 PM,02/12/2016 03:20:02 PM,02/12/2016 03:28:34 PM,Code 2 Transport,02/12/2016 04:27:09 PM,MARKET ST/7TH ST,San Francisco,94103,B99,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160432171-89 -130300105,89,13010161,Medical Incident,01/30/2013,01/30/2013,01/30/2013 09:13:02 AM,01/30/2013 09:15:01 AM,01/30/2013 09:15:26 AM,01/30/2013 09:17:43 AM,01/30/2013 09:18:15 AM,01/30/2013 09:51:46 AM,01/30/2013 10:01:10 AM,Code 2 Transport,01/30/2013 10:50:37 AM,17TH ST/FOLSOM ST,SF,94110,B02,7,5424,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.763696767377, -122.415155085854)",130300105-89 -112870405,87,11095338,Medical Incident,10/14/2011,10/14/2011,10/14/2011 09:27:16 PM,10/14/2011 09:27:35 PM,10/14/2011 09:28:17 PM,10/14/2011 09:28:28 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Other,10/14/2011 09:37:17 PM,COLUMBUS AV/BROADWAY,SF,94133,B01,2,1311,1,1,2,true,,1,MEDIC,1,1,3,Chinatown,"(37.7978646128064, -122.406667932419)",112870405-87 -120330137,83,12010863,Medical Incident,02/02/2012,02/02/2012,02/02/2012 11:38:32 AM,02/02/2012 11:39:26 AM,02/02/2012 11:40:22 AM,02/02/2012 11:41:40 AM,02/02/2012 11:42:28 AM,02/02/2012 12:17:55 PM,02/02/2012 12:38:59 PM,Code 2 Transport,02/02/2012 01:18:07 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",120330137-83 -160273569,AM22,16010857,Medical Incident,01/27/2016,01/27/2016,01/27/2016 08:37:38 PM,01/27/2016 08:37:38 PM,01/27/2016 08:39:37 PM,01/27/2016 08:40:51 PM,01/27/2016 08:44:11 PM,01/27/2016 09:01:54 PM,01/27/2016 09:06:25 PM,Code 2 Transport,01/27/2016 09:41:10 PM,800 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1542,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7888625118319, -122.41521024165)",160273569-AM22 -160561190,65,16022325,Medical Incident,02/25/2016,02/25/2016,02/25/2016 10:10:53 AM,02/25/2016 10:12:04 AM,02/25/2016 10:12:37 AM,02/25/2016 10:12:46 AM,02/25/2016 10:16:44 AM,02/25/2016 10:31:10 AM,02/25/2016 10:35:32 AM,Code 2 Transport,02/25/2016 11:14:35 AM,400 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",160561190-65 -160412428,55,16016517,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:41:09 PM,02/10/2016 03:41:54 PM,02/10/2016 03:42:09 PM,02/10/2016 03:42:54 PM,02/10/2016 03:51:22 PM,02/10/2016 04:11:04 PM,02/10/2016 04:31:27 PM,Code 2 Transport,02/10/2016 05:15:23 PM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160412428-55 -131040293,E01,13035017,Medical Incident,04/14/2013,04/14/2013,04/14/2013 05:46:30 PM,04/14/2013 05:47:53 PM,04/14/2013 05:48:15 PM,04/14/2013 05:49:17 PM,04/14/2013 05:51:41 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 05:56:57 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,3,Tenderloin,"(37.7859419706923, -122.408012730259)",131040293-E01 -122300097,54,12076145,Medical Incident,08/17/2012,08/17/2012,08/17/2012 08:04:29 AM,08/17/2012 08:05:15 AM,08/17/2012 08:05:37 AM,08/17/2012 08:05:55 AM,08/17/2012 08:14:59 AM,08/17/2012 08:36:44 AM,08/17/2012 08:42:49 AM,Code 2 Transport,08/17/2012 09:17:32 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",122300097-54 -133080276,AP,13104790,Other,11/04/2013,11/04/2013,11/04/2013 04:39:55 PM,11/04/2013 04:39:55 PM,11/04/2013 04:39:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Fire,11/04/2013 04:40:08 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",133080276-AP -160642117,86,16025541,Medical Incident,03/04/2016,03/04/2016,03/04/2016 02:03:11 PM,03/04/2016 02:05:20 PM,03/04/2016 02:05:35 PM,03/04/2016 02:05:46 PM,03/04/2016 02:12:36 PM,03/04/2016 02:29:39 PM,03/04/2016 02:57:00 PM,Code 2 Transport,03/04/2016 03:28:12 PM,0 Block of LAWRENCE AV,San Francisco,94112,B09,33,8354,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7097830658636, -122.451443677544)",160642117-86 -122280064,RC1,12075458,Traffic Collision,08/15/2012,08/14/2012,08/15/2012 06:12:19 AM,08/15/2012 06:12:32 AM,08/15/2012 06:12:48 AM,08/15/2012 06:16:16 AM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/15/2012 06:18:52 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,1,6,Tenderloin,"(37.7859988323798, -122.411747371924)",122280064-RC1 -140460358,86,14015817,Medical Incident,02/15/2014,02/15/2014,02/15/2014 09:48:50 PM,02/15/2014 09:49:03 PM,02/15/2014 09:50:04 PM,02/15/2014 09:50:12 PM,02/15/2014 10:04:05 PM,02/15/2014 10:23:15 PM,02/15/2014 10:36:38 PM,Code 2 Transport,02/15/2014 10:54:53 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140460358-86 -160690502,75,16027348,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:39:41 AM,03/09/2016 06:41:36 AM,03/09/2016 06:42:19 AM,03/09/2016 06:43:19 AM,03/09/2016 06:46:25 AM,03/09/2016 06:48:23 AM,03/09/2016 07:08:58 AM,Code 2 Transport,03/09/2016 07:47:17 AM,2100 Block of POLK ST,San Francisco,94109,B04,41,3126,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Russian Hill,"(37.7964312666627, -122.421796191236)",160690502-75 -132220387,55,13075137,Medical Incident,08/10/2013,08/10/2013,08/10/2013 10:50:36 PM,08/10/2013 10:50:40 PM,08/10/2013 10:51:01 PM,08/10/2013 10:51:10 PM,08/10/2013 11:01:43 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,No Merit,08/10/2013 11:06:43 PM,15TH ST/POTRERO AV,SF,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7670819828491, -122.407685033247)",132220387-55 -160033445,70,16001418,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:50:46 PM,01/03/2016 11:53:41 PM,01/03/2016 11:54:20 PM,01/03/2016 11:55:10 PM,01/03/2016 11:55:10 PM,01/04/2016 12:25:17 AM,01/04/2016 12:34:33 AM,Code 2 Transport,01/04/2016 01:27:41 AM,300 Block of FULTON ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",160033445-70 -121440055,85,12047730,Medical Incident,05/23/2012,05/22/2012,05/23/2012 07:08:48 AM,05/23/2012 07:10:51 AM,05/23/2012 07:11:21 AM,05/23/2012 07:11:48 AM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,04/25/2016 01:58:33 PM,Other,04/25/2016 01:58:33 PM,300 Block of CASTENADA AVE,SF,94116,B08,39,8621,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7459543314229, -122.464661989257)",121440055-85 -111250063,88,11041270,Medical Incident,05/05/2011,05/04/2011,05/05/2011 07:31:28 AM,05/05/2011 07:32:33 AM,05/05/2011 07:32:56 AM,05/05/2011 07:33:10 AM,05/05/2011 07:51:33 AM,05/05/2011 08:07:04 AM,05/05/2011 08:25:41 AM,Code 2 Transport,05/05/2011 08:51:33 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,2,2,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",111250063-88 -123550249,B04,12118859,Alarms,12/20/2012,12/20/2012,12/20/2012 04:49:52 PM,12/20/2012 04:50:48 PM,12/20/2012 04:50:53 PM,12/20/2012 04:52:04 PM,12/20/2012 04:54:06 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/20/2012 04:59:58 PM,1800 Block of POST ST,SF,94115,B04,5,3513,3,3,3,false,Alarm,1,CHIEF,3,4,5,Japantown,"(37.785207581828, -122.432213785968)",123550249-B04 -123100201,T10,12103135,Alarms,11/05/2012,11/05/2012,11/05/2012 01:12:31 PM,11/05/2012 01:14:36 PM,11/05/2012 01:14:54 PM,11/05/2012 01:16:54 PM,11/05/2012 01:18:53 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 01:31:23 PM,100 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,true,Alarm,1,TRUCK,2,7,2,Presidio Heights,"(37.7825976745462, -122.457758842214)",123100201-T10 -130150227,E10,13005144,Medical Incident,01/15/2013,01/15/2013,01/15/2013 02:43:34 PM,01/15/2013 02:44:14 PM,01/15/2013 02:48:52 PM,01/15/2013 02:49:59 PM,01/15/2013 02:54:34 PM,04/25/2016 01:54:47 PM,04/25/2016 01:54:47 PM,Other,01/15/2013 03:06:01 PM,0 Block of GALILEE LN,SF,94115,B04,5,3365,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,5,Western Addition,"(37.7837879620082, -122.428154523133)",130150227-E10 -160732563,AM20,16029077,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:22:22 PM,03/13/2016 07:23:36 PM,03/13/2016 07:23:52 PM,03/13/2016 07:24:32 PM,03/13/2016 07:28:22 PM,03/13/2016 07:38:45 PM,03/13/2016 07:50:53 PM,Code 2 Transport,03/13/2016 08:25:21 PM,300 Block of OXFORD ST,San Francisco,94134,B09,43,6152,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Excelsior,"(37.7255844163016, -122.419071172889)",160732563-AM20 -112350067,E34,11077464,Medical Incident,08/23/2011,08/22/2011,08/23/2011 07:17:44 AM,08/23/2011 07:17:46 AM,08/23/2011 07:18:13 AM,08/23/2011 07:19:37 AM,08/23/2011 07:22:13 AM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Fire,08/23/2011 07:50:53 AM,800 Block of 47TH AVE,SF,94121,B07,34,7277,3,2,2,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7724233373066, -122.507888504201)",112350067-E34 -103150316,89,10101114,Medical Incident,11/11/2010,11/11/2010,11/11/2010 09:46:41 PM,11/11/2010 09:46:41 PM,11/11/2010 09:48:22 PM,11/11/2010 09:48:43 PM,11/11/2010 09:55:50 PM,04/25/2016 02:07:38 PM,04/25/2016 02:07:38 PM,Other,11/11/2010 09:59:36 PM,BUSH ST/SCOTT ST,SF,94115,B04,10,4126,2,2,2,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.78639167377, -122.438393883002)",103150316-89 -131000141,72,13033563,Medical Incident,04/10/2013,04/10/2013,04/10/2013 10:43:03 AM,04/10/2013 10:45:11 AM,04/10/2013 10:45:38 AM,04/10/2013 10:45:47 AM,04/10/2013 10:57:30 AM,04/10/2013 11:12:20 AM,04/10/2013 11:39:49 AM,Code 2 Transport,04/10/2013 12:21:45 PM,0 Block of MIRABEL AVE,SF,94110,B06,11,5657,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7464196657942, -122.416456065811)",131000141-72 -160271389,59,16010634,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:13:20 AM,01/27/2016 11:15:52 AM,01/27/2016 11:16:23 AM,01/27/2016 11:16:29 AM,01/27/2016 11:24:47 AM,01/27/2016 11:52:03 AM,01/27/2016 11:54:13 AM,Code 2 Transport,01/27/2016 01:13:49 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160271389-59 -110070244,89,11002374,Structure Fire,01/07/2011,01/07/2011,01/07/2011 03:39:42 PM,01/07/2011 03:40:34 PM,01/07/2011 03:41:10 PM,01/07/2011 03:41:59 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,04/25/2016 02:06:43 PM,Other,01/07/2011 03:45:22 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,,1,MEDIC,8,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",110070244-89 -110630089,84,11020621,Medical Incident,03/04/2011,03/04/2011,03/04/2011 08:39:11 AM,03/04/2011 08:40:40 AM,03/04/2011 08:40:49 AM,03/04/2011 08:57:00 AM,03/04/2011 09:07:44 AM,03/04/2011 09:35:52 AM,03/04/2011 09:57:03 AM,Code 2 Transport,03/04/2011 10:14:08 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",110630089-84 -160340999,87,16013308,Medical Incident,02/03/2016,02/03/2016,02/03/2016 09:44:52 AM,02/03/2016 09:45:55 AM,02/03/2016 09:46:15 AM,02/03/2016 09:46:39 AM,02/03/2016 09:57:32 AM,02/03/2016 10:17:04 AM,02/03/2016 11:11:50 AM,Code 2 Transport,02/03/2016 11:49:06 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160340999-87 -103190183,KM14,10102249,Medical Incident,11/15/2010,11/15/2010,11/15/2010 12:41:26 PM,11/15/2010 12:42:13 PM,11/15/2010 12:42:36 PM,11/15/2010 12:43:11 PM,11/15/2010 12:46:35 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,No Merit,11/15/2010 12:51:03 PM,TAYLOR ST/SUTTER ST,SF,94102,B01,3,1412,3,3,3,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",103190183-KM14 -110190324,78,11006338,Medical Incident,01/19/2011,01/19/2011,01/19/2011 04:50:15 PM,01/19/2011 04:51:12 PM,01/19/2011 04:51:58 PM,01/19/2011 04:52:09 PM,01/19/2011 04:58:21 PM,01/19/2011 05:08:24 PM,01/19/2011 05:29:01 PM,Code 2 Transport,01/19/2011 06:12:55 PM,1600 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7697840925361, -122.449122960735)",110190324-78 -160182255,58,16007296,Medical Incident,01/18/2016,01/18/2016,01/18/2016 04:31:14 PM,01/18/2016 04:31:45 PM,01/18/2016 04:32:00 PM,01/18/2016 04:32:09 PM,01/18/2016 04:35:51 PM,01/18/2016 04:51:07 PM,01/18/2016 05:08:54 PM,Code 2 Transport,01/18/2016 05:57:38 PM,EDDY ST/MASON ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7843492693967, -122.409309180702)",160182255-58 -160824028,KM03,16032779,Medical Incident,03/22/2016,03/22/2016,03/22/2016 10:50:47 PM,03/22/2016 10:51:35 PM,03/22/2016 10:51:44 PM,03/22/2016 10:52:35 PM,03/22/2016 10:57:20 PM,03/22/2016 11:06:46 PM,03/22/2016 11:21:33 PM,Code 2 Transport,03/22/2016 11:51:21 PM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160824028-KM03 -133320272,E40,13112764,Medical Incident,11/28/2013,11/28/2013,11/28/2013 08:55:40 PM,11/28/2013 08:56:27 PM,11/28/2013 08:56:52 PM,11/28/2013 08:57:44 PM,11/28/2013 08:59:00 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 09:09:43 PM,2200 Block of 17TH AVE,SF,94116,B08,40,7375,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.745945900279, -122.473681166537)",133320272-E40 -102520121,E40,10079572,Medical Incident,09/09/2010,09/09/2010,09/09/2010 10:35:34 AM,09/09/2010 10:36:27 AM,09/09/2010 10:37:32 AM,09/09/2010 10:37:47 AM,09/09/2010 10:40:29 AM,04/25/2016 02:08:40 PM,04/25/2016 02:08:40 PM,Other,09/09/2010 10:54:37 AM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8641,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",102520121-E40 -133030376,E03,13103091,Medical Incident,10/30/2013,10/30/2013,10/30/2013 10:04:32 PM,10/30/2013 10:07:30 PM,10/30/2013 10:08:31 PM,10/30/2013 10:10:03 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,Other,10/30/2013 10:10:15 PM,1500 Block of FILLMORE ST,SF,94115,B04,5,3541,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,5,Western Addition,"(37.783815387293, -122.432878599409)",133030376-E03 -132650095,66,13089821,Structure Fire,09/22/2013,09/21/2013,09/22/2013 07:56:11 AM,09/22/2013 07:56:11 AM,09/22/2013 08:03:36 AM,09/22/2013 08:03:43 AM,09/22/2013 08:17:16 AM,09/22/2013 08:24:52 AM,09/22/2013 08:43:56 AM,Code 2 Transport,09/22/2013 09:06:41 AM,FULTON ST/LA PLAYA ST,SF,94121,B07,34,7311,3,3,3,true,Alarm,1,MEDIC,1,7,1,Outer Richmond,"(37.7713960328361, -122.509894748816)",132650095-66 -121880255,B02,12062694,Alarms,07/06/2012,07/06/2012,07/06/2012 03:44:01 PM,07/06/2012 03:44:39 PM,07/06/2012 03:44:56 PM,07/06/2012 03:47:17 PM,07/06/2012 03:48:04 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Other,07/06/2012 03:52:49 PM,0 Block of 8TH ST,SF,94103,B02,36,2318,3,3,3,false,Alarm,1,CHIEF,1,2,6,South of Market,"(37.7778103407202, -122.413699499217)",121880255-B02 -160780149,63,16030860,Medical Incident,03/18/2016,03/17/2016,03/18/2016 01:05:08 AM,03/18/2016 01:05:08 AM,03/18/2016 01:07:10 AM,03/18/2016 01:07:20 AM,03/18/2016 01:12:21 AM,03/18/2016 01:55:04 AM,03/18/2016 02:04:48 AM,Code 2 Transport,03/18/2016 02:59:42 AM,VAN NESS AV/GROVE ST,San Francisco,94102,B02,36,3165,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",160780149-63 -133110322,79,13105834,Medical Incident,11/07/2013,11/07/2013,11/07/2013 08:39:36 PM,11/07/2013 08:40:23 PM,11/07/2013 08:41:05 PM,11/07/2013 08:42:47 PM,11/07/2013 08:55:30 PM,11/07/2013 09:09:16 PM,11/07/2013 09:28:30 PM,Code 2 Transport,11/07/2013 09:52:36 PM,33RD AV/BALBOA ST,SF,94121,B07,14,7244,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7759105366414, -122.493044230736)",133110322-79 -160882858,AM16,16035051,Medical Incident,03/28/2016,03/28/2016,03/28/2016 05:27:11 PM,03/28/2016 05:27:11 PM,03/28/2016 05:27:46 PM,03/28/2016 05:28:16 PM,03/28/2016 05:39:59 PM,03/28/2016 05:56:51 PM,03/28/2016 06:18:42 PM,Code 2 Transport,03/28/2016 06:40:05 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160882858-AM16 -123480339,AM18,12116489,Water Rescue,12/13/2012,12/13/2012,12/13/2012 08:21:27 PM,12/13/2012 08:22:05 PM,12/13/2012 08:23:05 PM,12/13/2012 08:25:38 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Other,12/13/2012 08:25:51 PM,600 Block of THE EMBARCADERO,SF,94111,B01,13,909,A,A,2,false,Fire,1,PRIVATE,14,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",123480339-AM18 -122090342,E33,12069583,Structure Fire,07/27/2012,07/27/2012,07/27/2012 09:52:38 PM,07/27/2012 09:52:38 PM,07/27/2012 09:53:02 PM,07/27/2012 09:54:06 PM,07/27/2012 09:56:49 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 09:57:34 PM,HURON AV/WHIPPLE AV,SF,94112,B09,33,8347,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7121822446382, -122.449415756646)",122090342-E33 -160870722,89,16034481,Medical Incident,03/27/2016,03/26/2016,03/27/2016 06:43:34 AM,03/27/2016 06:45:23 AM,03/27/2016 06:46:00 AM,03/27/2016 06:46:15 AM,03/27/2016 07:00:12 AM,03/27/2016 07:07:43 AM,03/27/2016 07:24:41 AM,Code 2 Transport,03/27/2016 07:49:26 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",160870722-89 -160250567,65,16009806,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:44:55 AM,01/25/2016 06:44:55 AM,01/25/2016 06:48:17 AM,01/25/2016 06:48:26 AM,01/25/2016 07:01:00 AM,01/25/2016 07:05:03 AM,01/25/2016 07:55:58 AM,Code 2 Transport,01/25/2016 08:35:09 AM,2000 Block of 46TH AV,San Francisco,94116,B08,23,7663,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7482979255797, -122.505150417113)",160250567-65 -122610281,E37,12086313,Medical Incident,09/17/2012,09/17/2012,09/17/2012 07:53:51 PM,09/17/2012 07:56:04 PM,09/17/2012 07:58:35 PM,09/17/2012 07:59:14 PM,09/17/2012 08:03:18 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,Unable to Locate,09/17/2012 08:08:35 PM,WISCONSIN ST/CONNECTICUT ST,SF,94107,B10,37,2565,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536847460271, -122.398593151785)",122610281-E37 -132670080,E13,13090558,Medical Incident,09/24/2013,09/24/2013,09/24/2013 09:08:08 AM,09/24/2013 09:09:11 AM,09/24/2013 09:09:33 AM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/24/2013 09:10:42 AM,0 Block of BEALE ST,SF,94105,B03,13,2125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7918179006358, -122.396549353378)",132670080-E13 -121710149,E10,12056722,Medical Incident,06/19/2012,06/19/2012,06/19/2012 10:57:36 AM,06/19/2012 10:58:49 AM,06/19/2012 11:00:45 AM,06/19/2012 11:02:26 AM,06/19/2012 11:06:42 AM,04/25/2016 01:58:08 PM,04/25/2016 01:58:08 PM,Other,06/19/2012 11:28:29 AM,1300 Block of BUSH ST,SF,94109,B04,3,1636,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",121710149-E10 -132610254,T19,13088427,Structure Fire,09/18/2013,09/18/2013,09/18/2013 02:46:01 PM,09/18/2013 02:47:44 PM,09/18/2013 02:48:26 PM,09/18/2013 02:51:15 PM,09/18/2013 02:53:39 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 03:53:38 PM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,Fire,1,TRUCK,1,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",132610254-T19 -160360964,77,16014158,Traffic Collision,02/05/2016,02/05/2016,02/05/2016 08:39:29 AM,02/05/2016 08:39:53 AM,02/05/2016 08:40:34 AM,02/05/2016 08:40:32 AM,02/05/2016 08:44:27 AM,02/05/2016 09:04:50 AM,02/05/2016 09:25:00 AM,Code 2 Transport,02/05/2016 09:58:28 AM,5TH ST/MARKET ST,San Francisco,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160360964-77 -133590267,RS1,13122130,Traffic Collision,12/25/2013,12/25/2013,12/25/2013 06:34:32 PM,12/25/2013 06:35:17 PM,12/25/2013 06:35:35 PM,12/25/2013 06:36:59 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/25/2013 06:40:25 PM,DIVISADERO ST/OAK ST,SF,94117,B05,21,4141,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,7,5,5,Hayes Valley,"(37.773133492205, -122.437422938764)",133590267-RS1 -110610129,E41,11019957,Medical Incident,03/02/2011,03/02/2011,03/02/2011 09:48:56 AM,03/02/2011 09:49:18 AM,03/02/2011 09:49:38 AM,03/02/2011 09:50:34 AM,03/02/2011 09:52:25 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 10:01:19 AM,1400 Block of POLK ST,SF,94109,B04,3,3122,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7901080617264, -122.420522075876)",110610129-E41 -132650108,RS2,13089833,Structure Fire,09/22/2013,09/22/2013,09/22/2013 08:46:16 AM,09/22/2013 08:46:48 AM,09/22/2013 08:47:06 AM,09/22/2013 08:48:08 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/22/2013 08:51:51 AM,2200 Block of 34TH AVE,SF,94116,B08,18,7545,3,3,3,false,Alarm,1,RESCUE SQUAD,9,8,4,Sunset/Parkside,"(37.7451427563482, -122.491894723267)",132650108-RS2 -140820332,77,14027835,Medical Incident,03/23/2014,03/23/2014,03/23/2014 11:25:54 PM,03/23/2014 11:26:13 PM,03/23/2014 11:27:24 PM,03/23/2014 11:29:54 PM,03/23/2014 11:32:31 PM,03/23/2014 11:44:16 PM,03/23/2014 11:58:59 PM,Code 2 Transport,03/24/2014 12:30:37 AM,300 Block of ELLIS ST,SAN FRANCISCO,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",140820332-77 -113260096,79,11108185,Structure Fire,11/22/2011,11/22/2011,11/22/2011 09:02:18 AM,11/22/2011 09:03:48 AM,11/22/2011 09:03:56 AM,11/22/2011 09:04:24 AM,11/22/2011 09:10:19 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 09:15:53 AM,0 Block of SABIN PL,SF,94108,B01,13,1314,3,3,3,true,,1,MEDIC,8,1,3,Chinatown,"(37.7925872402584, -122.406836777622)",113260096-79 -102460223,78,10077760,Medical Incident,09/03/2010,09/03/2010,09/03/2010 01:56:48 PM,09/03/2010 01:56:49 PM,09/03/2010 01:56:49 PM,09/03/2010 01:57:24 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,04/25/2016 02:08:45 PM,Other,09/03/2010 01:59:36 PM,12TH AV/IRVING ST,SF,94122,B08,22,7345,2,2,2,true,,1,MEDIC,1,8,5,Inner Sunset,"(37.7638959454809, -122.469521963382)",102460223-78 -160862515,91,16034244,Medical Incident,03/26/2016,03/26/2016,03/26/2016 04:32:45 PM,03/26/2016 04:33:23 PM,03/26/2016 04:34:25 PM,03/26/2016 04:35:02 PM,03/26/2016 04:55:21 PM,03/26/2016 05:04:24 PM,03/26/2016 05:14:48 PM,Code 2 Transport,03/26/2016 06:02:29 PM,PARK PRESIDIO BL/BALBOA ST,San Francisco,94118,B07,31,7145,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7768682293368, -122.472039541478)",160862515-91 -121190308,T06,12039587,Citizen Assist / Service Call,04/28/2012,04/28/2012,04/28/2012 07:24:00 PM,04/28/2012 07:25:59 PM,04/28/2012 07:26:12 PM,04/28/2012 07:27:20 PM,04/28/2012 07:29:18 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 07:52:05 PM,700 Block of 14TH ST,SF,94114,B02,6,5213,3,3,3,false,Alarm,1,TRUCK,1,2,8,Castro/Upper Market,"(37.7676408778052, -122.429519876751)",121190308-T06 -111590126,T03,11052538,Medical Incident,06/08/2011,06/08/2011,06/08/2011 10:45:19 AM,06/08/2011 10:47:21 AM,06/08/2011 10:47:33 AM,06/08/2011 10:48:00 AM,06/08/2011 10:54:33 AM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/08/2011 10:59:38 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,,1,TRUCK,2,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",111590126-T03 -102520013,E12,10079485,Administrative,09/09/2010,09/08/2010,09/09/2010 01:49:56 AM,09/09/2010 01:50:02 AM,09/09/2010 01:50:49 AM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/09/2010 01:52:00 AM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",102520013-E12 -112960226,E01,11098220,Medical Incident,10/23/2011,10/23/2011,10/23/2011 02:35:31 PM,10/23/2011 02:37:17 PM,10/23/2011 02:38:43 PM,10/23/2011 02:39:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/23/2011 02:53:44 PM,700 Block of 2ND ST,SF,94107,B03,8,2154,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.78019523865, -122.390107968661)",112960226-E01 -132340223,KM01,13079027,Medical Incident,08/22/2013,08/22/2013,08/22/2013 03:00:49 PM,08/22/2013 03:02:43 PM,08/22/2013 03:04:11 PM,08/22/2013 03:04:43 PM,08/22/2013 03:15:12 PM,08/22/2013 03:23:35 PM,08/22/2013 03:32:53 PM,Code 2 Transport,08/22/2013 04:12:19 PM,CESAR CHAVEZ ST/MISSION ST,SF,94110,B06,11,5623,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7481656900206, -122.418221171762)",132340223-KM01 -132770342,E07,13094207,Alarms,10/04/2013,10/04/2013,10/04/2013 05:37:52 PM,10/04/2013 05:39:35 PM,10/04/2013 05:39:46 PM,10/04/2013 05:40:43 PM,10/04/2013 05:43:29 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 05:51:52 PM,800 Block of CAPP ST,SF,94110,B06,7,5511,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.753099980747, -122.417500851184)",132770342-E07 -160090594,79,16003545,Medical Incident,01/09/2016,01/08/2016,01/09/2016 06:30:33 AM,01/09/2016 06:33:10 AM,01/09/2016 06:33:53 AM,01/09/2016 06:34:10 AM,01/09/2016 06:40:13 AM,01/09/2016 07:08:48 AM,01/09/2016 07:55:42 AM,Code 2 Transport,01/09/2016 08:30:54 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160090594-79 -160860472,AM18,16034070,Medical Incident,03/26/2016,03/25/2016,03/26/2016 04:00:28 AM,03/26/2016 04:02:37 AM,03/26/2016 04:03:00 AM,03/26/2016 04:03:42 AM,03/26/2016 04:08:28 AM,03/26/2016 04:18:49 AM,03/26/2016 04:35:20 AM,Code 2 Transport,03/26/2016 05:02:18 AM,1200 Block of HARRISON ST,San Francisco,94103,B03,29,2333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7732598036539, -122.40905086984)",160860472-AM18 -110880255,E32,11029105,Medical Incident,03/29/2011,03/29/2011,03/29/2011 03:50:12 PM,03/29/2011 03:50:57 PM,03/29/2011 03:51:24 PM,03/29/2011 03:52:10 PM,03/29/2011 03:53:54 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Patient Declined Transport,03/29/2011 03:57:02 PM,BONVIEW ST/EUGENIA AV,SF,94110,B06,32,5655,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7407886733558, -122.418347092332)",110880255-E32 -121180051,88,12038985,Medical Incident,04/27/2012,04/26/2012,04/27/2012 04:20:19 AM,04/27/2012 04:22:09 AM,04/27/2012 04:25:11 AM,04/27/2012 04:38:57 AM,04/25/2016 01:58:59 PM,04/27/2012 04:46:39 AM,04/27/2012 04:53:42 AM,Code 2 Transport,04/27/2012 05:36:57 AM,1700 Block of CARROLL AVE,SF,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7261517428574, -122.395553858878)",121180051-88 -160193897,75,16007826,Traffic Collision,01/19/2016,01/19/2016,01/19/2016 11:40:15 PM,01/19/2016 11:40:15 PM,01/19/2016 11:40:23 PM,01/19/2016 11:40:31 PM,01/19/2016 11:45:25 PM,01/20/2016 12:05:54 AM,01/20/2016 12:23:58 AM,Code 2 Transport,01/20/2016 01:04:38 AM,34TH AV/LINCOLN WY,San Francisco,94122,B08,23,7537,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7647329133458, -122.493330782166)",160193897-75 -112200302,AM08,11072796,Medical Incident,08/08/2011,08/08/2011,08/08/2011 07:21:15 PM,08/08/2011 07:21:31 PM,08/08/2011 07:21:47 PM,08/08/2011 07:22:18 PM,08/08/2011 07:23:45 PM,08/08/2011 07:32:15 PM,08/08/2011 07:40:53 PM,Code 2 Transport,08/08/2011 08:14:15 PM,TURK ST/LAGUNA ST,SF,94102,B02,5,3411,3,3,3,false,,1,PRIVATE,2,2,5,Western Addition,"(37.7811171261872, -122.427202758133)",112200302-AM08 -160912180,AM10,16036117,Medical Incident,03/31/2016,03/31/2016,03/31/2016 03:06:13 PM,03/31/2016 03:08:35 PM,03/31/2016 03:08:58 PM,03/31/2016 03:09:17 PM,03/31/2016 03:20:33 PM,03/31/2016 03:34:14 PM,03/31/2016 03:54:26 PM,Code 2 Transport,03/31/2016 04:16:05 PM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",160912180-AM10 -120790388,E36,12026404,Medical Incident,03/19/2012,03/19/2012,03/19/2012 10:58:32 PM,03/19/2012 11:00:04 PM,03/19/2012 11:00:58 PM,03/19/2012 11:02:31 PM,03/19/2012 11:04:12 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/19/2012 11:04:39 PM,0 Block of WASHBURN ST,SF,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7752362231466, -122.414406294791)",120790388-E36 -120050150,B09,12001703,Alarms,01/05/2012,01/05/2012,01/05/2012 11:07:53 AM,01/05/2012 11:08:47 AM,01/05/2012 11:08:56 AM,01/05/2012 11:09:39 AM,01/05/2012 11:14:32 AM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 11:20:20 AM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",120050150-B09 -160030591,75,16001070,Medical Incident,01/03/2016,01/02/2016,01/03/2016 05:41:25 AM,01/03/2016 05:41:25 AM,01/03/2016 05:41:58 AM,01/03/2016 05:42:11 AM,01/03/2016 05:49:19 AM,01/03/2016 06:00:29 AM,01/03/2016 06:06:43 AM,Code 2 Transport,01/03/2016 06:56:20 AM,3000 Block of GOUGH ST,San Francisco,94123,B04,16,3244,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8013835163609, -122.42785521361)",160030591-75 -131040199,B07,13034933,Structure Fire,04/14/2013,04/14/2013,04/14/2013 12:42:47 PM,04/14/2013 12:43:30 PM,04/14/2013 12:43:39 PM,04/14/2013 12:45:47 PM,04/14/2013 12:48:27 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 12:56:25 PM,0 Block of CLIFFORD TER,SF,94117,B05,12,5165,3,3,3,false,Alarm,1,CHIEF,4,5,8,Castro/Upper Market,"(37.7639520345983, -122.443618523246)",131040199-B07 -131400256,E48,13047460,Alarms,05/20/2013,05/20/2013,05/20/2013 02:05:30 PM,05/20/2013 02:07:03 PM,05/20/2013 02:07:24 PM,05/20/2013 02:08:28 PM,05/20/2013 02:13:12 PM,04/25/2016 01:52:42 PM,04/25/2016 01:52:42 PM,Other,05/20/2013 02:28:33 PM,400 Block of CALIFORNIA AVE,TI,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,2,None,6,Treasure Island,"(37.819133465858, -122.368294852041)",131400256-E48 -160073915,75,16003033,Medical Incident,01/07/2016,01/07/2016,01/07/2016 11:01:45 PM,01/07/2016 11:02:33 PM,01/07/2016 11:04:39 PM,01/07/2016 11:04:46 PM,01/07/2016 11:10:35 PM,01/07/2016 11:27:46 PM,01/07/2016 11:42:28 PM,Code 2 Transport,01/08/2016 12:41:48 AM,1000 Block of CHESTNUT ST,San Francisco,94109,B01,28,1613,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8028649959918, -122.420650668279)",160073915-75 -110350279,84,11011564,Medical Incident,02/04/2011,02/04/2011,02/04/2011 04:57:00 PM,02/04/2011 04:58:00 PM,02/04/2011 04:58:28 PM,02/04/2011 04:58:49 PM,02/04/2011 05:10:07 PM,02/04/2011 05:31:07 PM,02/04/2011 05:48:45 PM,Code 2 Transport,02/04/2011 06:20:26 PM,2900 Block of 22ND AVE,SF,94132,B08,19,8732,3,2,2,true,,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7335645188552, -122.477843526592)",110350279-84 -103450153,55,10110553,Medical Incident,12/11/2010,12/11/2010,12/11/2010 10:22:49 AM,12/11/2010 10:23:17 AM,12/11/2010 10:23:38 AM,12/11/2010 10:25:57 AM,12/11/2010 10:27:49 AM,12/11/2010 10:37:04 AM,12/11/2010 10:42:53 AM,Code 3 Transport,12/11/2010 11:17:12 AM,200 Block of 7TH AVE,SF,94118,B07,31,7127,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7838686523601, -122.465631446076)",103450153-55 -120520092,KM15,12017102,Traffic Collision,02/21/2012,02/21/2012,02/21/2012 09:18:26 AM,02/21/2012 09:19:59 AM,02/21/2012 09:20:12 AM,02/21/2012 09:22:14 AM,02/21/2012 09:27:40 AM,02/21/2012 09:44:00 AM,02/21/2012 10:01:14 AM,Code 2 Transport,02/21/2012 10:34:01 AM,8TH ST/HARRISON ST,SF,94103,B03,29,2333,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,South of Market,"(37.7737596997868, -122.408516330795)",120520092-KM15 -111960080,AM06,11064623,Medical Incident,07/15/2011,07/15/2011,07/15/2011 09:22:32 AM,07/15/2011 09:23:08 AM,07/15/2011 09:23:21 AM,07/15/2011 09:23:58 AM,07/15/2011 09:28:36 AM,07/15/2011 09:40:38 AM,07/15/2011 10:06:15 AM,Code 2 Transport,07/15/2011 10:46:31 AM,4100 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,false,,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7399568110921, -122.389027814103)",111960080-AM06 -160123881,52,16004988,Medical Incident,01/12/2016,01/12/2016,01/12/2016 11:22:16 PM,01/12/2016 11:22:16 PM,01/12/2016 11:22:34 PM,01/12/2016 11:22:41 PM,01/12/2016 11:29:32 PM,01/12/2016 11:44:39 PM,01/12/2016 11:47:42 PM,Code 2 Transport,01/13/2016 12:23:00 AM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7684622459015, -122.431204878453)",160123881-52 -110500096,E01,11016478,Medical Incident,02/19/2011,02/19/2011,02/19/2011 08:11:05 AM,02/19/2011 08:12:01 AM,02/19/2011 08:16:05 AM,02/19/2011 08:17:30 AM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 08:17:57 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110500096-E01 -130710017,54,13023560,Medical Incident,03/12/2013,03/11/2013,03/12/2013 01:28:51 AM,03/12/2013 01:29:10 AM,03/12/2013 01:29:21 AM,03/12/2013 01:29:39 AM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 01:31:04 AM,BAYSHORE BL/ARLETA AV,SF,94134,B10,44,6271,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",130710017-54 -110220051,E01,11007163,Alarms,01/22/2011,01/21/2011,01/22/2011 04:06:44 AM,01/22/2011 04:08:19 AM,01/22/2011 04:08:52 AM,01/22/2011 04:10:49 AM,01/22/2011 04:12:00 AM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/22/2011 04:18:55 AM,500 Block of HOWARD ST,SF,94105,B03,35,2141,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",110220051-E01 -130740270,84,13024747,Medical Incident,03/15/2013,03/15/2013,03/15/2013 04:46:17 PM,03/15/2013 04:47:35 PM,03/15/2013 04:48:14 PM,03/15/2013 04:48:37 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Other,03/15/2013 04:53:48 PM,SAN BRUNO AV/WOOLSEY ST,SF,94134,B10,42,6327,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7252351124965, -122.402600411333)",130740270-84 -122370230,RS2,12078554,Structure Fire,08/24/2012,08/24/2012,08/24/2012 04:00:12 PM,08/24/2012 04:00:29 PM,08/24/2012 04:00:49 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 04:02:21 PM,1300 Block of CASTRO ST,SF,94114,B06,11,5541,3,3,3,false,Fire,1,RESCUE SQUAD,11,6,8,Noe Valley,"(37.7508948687888, -122.434116965108)",122370230-RS2 -140490330,E43,14016780,Medical Incident,02/18/2014,02/18/2014,02/18/2014 07:34:57 PM,02/18/2014 07:37:21 PM,02/18/2014 07:37:56 PM,02/18/2014 07:39:48 PM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,No Merit,02/18/2014 07:43:51 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,Potentially Life-Threatening,1,ENGINE,3,9,10,Visitacion Valley,"(37.7106587183839, -122.417699843965)",140490330-E43 -160332485,63,16013069,Medical Incident,02/02/2016,02/02/2016,02/02/2016 04:49:06 PM,02/02/2016 04:50:52 PM,02/02/2016 04:51:26 PM,02/02/2016 04:52:07 PM,02/02/2016 05:22:25 PM,02/02/2016 05:23:09 PM,02/02/2016 05:28:53 PM,Code 2 Transport,02/02/2016 05:57:58 PM,100 Block of MUSEUM WAY,San Francisco,94114,B05,6,5175,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7646104814141, -122.44014599486)",160332485-63 -121630274,E33,12054114,Medical Incident,06/11/2012,06/11/2012,06/11/2012 04:36:32 PM,06/11/2012 04:38:16 PM,06/11/2012 04:39:31 PM,06/11/2012 04:39:48 PM,06/11/2012 04:44:46 PM,04/25/2016 01:58:15 PM,04/25/2016 01:58:15 PM,Other,06/11/2012 04:58:00 PM,300 Block of CHESTER AVE,SF,94132,B09,33,8366,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7092876411084, -122.470335983228)",121630274-E33 -131960237,B07,13066576,Alarms,07/15/2013,07/15/2013,07/15/2013 04:49:52 PM,07/15/2013 04:49:53 PM,07/15/2013 04:50:59 PM,07/15/2013 04:51:50 PM,07/15/2013 05:04:08 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 05:05:12 PM,400 Block of 31ST AVE,SF,94121,B07,14,7237,3,3,3,false,Alarm,1,CHIEF,3,7,1,Outer Richmond,"(37.7807577536921, -122.491302054703)",131960237-B07 -120870143,E29,12028839,Citizen Assist / Service Call,03/27/2012,03/27/2012,03/27/2012 12:24:59 PM,03/27/2012 12:27:04 PM,03/27/2012 12:27:16 PM,03/27/2012 12:29:10 PM,03/27/2012 12:32:07 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 12:40:36 PM,800 Block of BRANNAN ST,SF,94103,B03,29,2325,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7722126507146, -122.404363751305)",120870143-E29 -122250008,E07,12074470,Traffic Collision,08/12/2012,08/11/2012,08/12/2012 12:40:15 AM,08/12/2012 12:40:15 AM,08/12/2012 12:40:47 AM,08/12/2012 12:42:11 AM,08/12/2012 12:43:40 AM,04/25/2016 01:57:16 PM,04/25/2016 01:57:16 PM,Other,08/12/2012 01:02:53 AM,SOUTH VAN NESS AV/16TH ST,SF,94110,B02,7,5225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7651831353816, -122.417486597301)",122250008-E07 -132790043,E34,13094768,Medical Incident,10/06/2013,10/05/2013,10/06/2013 01:48:52 AM,10/06/2013 01:49:19 AM,10/06/2013 01:50:37 AM,10/06/2013 01:52:19 AM,10/06/2013 01:55:28 AM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/06/2013 02:16:18 AM,4400 Block of CABRILLO ST,SF,94121,B07,34,7277,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7733768091246, -122.506280175439)",132790043-E34 -122060149,RS1,12068458,Water Rescue,07/24/2012,07/24/2012,07/24/2012 11:46:10 AM,07/24/2012 11:47:08 AM,07/24/2012 11:51:14 AM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 12:02:47 PM,EL CAMINO DEL MAR/32ND AV,SF,94121,B07,14,7234,3,3,3,false,Fire,1,RESCUE SQUAD,9,7,2,Seacliff,"(37.7865796540421, -122.493114868138)",122060149-RS1 -112030161,AM08,11066994,Medical Incident,07/22/2011,07/22/2011,07/22/2011 11:10:21 AM,07/22/2011 11:13:03 AM,07/22/2011 11:14:01 AM,07/22/2011 11:14:48 AM,07/22/2011 11:17:19 AM,07/22/2011 11:39:49 AM,07/22/2011 11:53:46 AM,Code 2 Transport,07/22/2011 12:36:38 PM,600 Block of GATES ST,SF,94110,B06,32,5747,3,3,3,false,,1,PRIVATE,1,6,9,Bernal Heights,"(37.7353422472195, -122.414192235461)",112030161-AM08 -160700869,70,16027761,Medical Incident,03/10/2016,03/10/2016,03/10/2016 09:07:23 AM,03/10/2016 09:08:52 AM,03/10/2016 09:09:30 AM,03/10/2016 09:09:40 AM,03/10/2016 09:21:38 AM,03/10/2016 09:56:56 AM,03/10/2016 10:19:07 AM,Code 2 Transport,03/10/2016 11:15:15 AM,100 Block of NEWMAN ST,San Francisco,94110,B06,32,5742,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7377912155611, -122.417274171057)",160700869-70 -131390190,AM06,13047006,Medical Incident,05/19/2013,05/19/2013,05/19/2013 11:28:12 AM,05/19/2013 11:28:35 AM,05/19/2013 11:28:53 AM,05/19/2013 11:29:43 AM,05/19/2013 11:32:15 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Patient Declined Transport,05/19/2013 12:30:05 PM,0 Block of LIBERTY ST,SF,94110,B06,7,5456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,8,Mission,"(37.7575809773167, -122.422275311384)",131390190-AM06 -102530342,E32,10080075,Citizen Assist / Service Call,09/10/2010,09/10/2010,09/10/2010 07:59:46 PM,09/10/2010 08:01:50 PM,09/10/2010 08:02:38 PM,09/10/2010 08:03:27 PM,09/10/2010 08:05:09 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Fire,09/10/2010 08:06:00 PM,CRESCENT AV/MURRAY ST,SF,94110,B06,32,5644,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7350581299251, -122.420223758713)",102530342-E32 -112910144,B08,11096537,Alarms,10/18/2011,10/18/2011,10/18/2011 10:39:19 AM,10/18/2011 10:41:52 AM,10/18/2011 10:42:03 AM,10/18/2011 10:46:41 AM,10/18/2011 10:46:48 AM,04/25/2016 02:02:06 PM,04/25/2016 02:02:06 PM,Other,10/18/2011 10:49:26 AM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,3,3,3,false,,1,CHIEF,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",112910144-B08 -160150741,KM08,16005882,Medical Incident,01/15/2016,01/15/2016,01/15/2016 08:15:44 AM,01/15/2016 08:17:18 AM,01/15/2016 08:17:54 AM,01/15/2016 08:19:13 AM,01/15/2016 08:27:12 AM,01/15/2016 08:36:13 AM,01/15/2016 08:57:24 AM,Code 2 Transport,01/15/2016 09:19:49 AM,CHERRY ST/JACKSON ST,San Francisco,94118,B07,10,4442,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7895609147402, -122.45741204464)",160150741-KM08 -122300391,67,12076408,Medical Incident,08/17/2012,08/17/2012,08/17/2012 10:20:50 PM,08/17/2012 10:23:48 PM,08/17/2012 10:25:57 PM,08/17/2012 10:26:05 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 10:26:49 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",122300391-67 -140170305,B01,14005926,Structure Fire,01/17/2014,01/17/2014,01/17/2014 06:56:00 PM,01/17/2014 06:59:15 PM,01/17/2014 06:59:38 PM,01/17/2014 07:01:24 PM,01/17/2014 07:03:17 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 07:24:59 PM,900 Block of GREEN ST,SF,94133,B01,2,1441,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",140170305-B01 -111970359,E15,11065161,Medical Incident,07/16/2011,07/16/2011,07/16/2011 11:14:28 PM,07/16/2011 11:14:55 PM,07/16/2011 11:16:16 PM,07/16/2011 11:17:58 PM,07/16/2011 11:19:41 PM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 11:38:48 PM,1000 Block of CAPITOL AVE,SF,94112,B09,15,8464,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209306726237, -122.459270472767)",111970359-E15 -160812179,87,16032224,Medical Incident,03/21/2016,03/21/2016,03/21/2016 02:43:47 PM,03/21/2016 02:45:28 PM,03/21/2016 03:03:27 PM,03/21/2016 03:03:47 PM,03/21/2016 03:09:00 PM,03/21/2016 03:32:14 PM,03/21/2016 03:45:39 PM,Code 2 Transport,03/21/2016 04:10:19 PM,1300 Block of STOCKTON ST,San Francisco,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",160812179-87 -103090024,E41,10098914,Citizen Assist / Service Call,11/05/2010,11/04/2010,11/05/2010 01:33:59 AM,11/05/2010 01:35:49 AM,11/05/2010 01:36:06 AM,11/05/2010 01:37:55 AM,11/05/2010 01:41:14 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/05/2010 01:41:23 AM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,ENGINE,2,4,6,Tenderloin,"(37.7860512191302, -122.418924278325)",103090024-E41 -103270179,E01,10104763,Outside Fire,11/23/2010,11/23/2010,11/23/2010 01:09:39 PM,11/23/2010 01:10:47 PM,11/23/2010 01:10:59 PM,04/25/2016 02:07:28 PM,11/23/2010 01:13:48 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 01:15:42 PM,4TH ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,,1,ENGINE,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",103270179-E01 -121610164,E11,12053285,Structure Fire,06/09/2012,06/09/2012,06/09/2012 12:18:30 PM,06/09/2012 12:18:31 PM,06/09/2012 12:18:40 PM,06/09/2012 12:19:07 PM,06/09/2012 12:21:02 PM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Fire,06/09/2012 12:21:28 PM,23RD ST/DOLORES ST,SF,94110,B06,11,5513,3,3,3,true,Alarm,1,ENGINE,1,6,8,Noe Valley,"(37.7534315922902, -122.425302617555)",121610164-E11 -141000063,E29,14033668,Medical Incident,04/10/2014,04/09/2014,04/10/2014 06:33:18 AM,04/10/2014 06:33:51 AM,04/10/2014 06:35:33 AM,04/10/2014 06:35:50 AM,04/10/2014 06:38:47 AM,04/25/2016 01:47:18 PM,04/25/2016 01:47:18 PM,Code 2 Transport,04/10/2014 06:39:33 AM,400 Block of 7TH ST,SAN FRANCISCO,94103,B03,8,231,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",141000063-E29 -122780097,LR5,12091843,Administrative,10/04/2012,10/04/2012,10/04/2012 09:47:28 AM,10/04/2012 09:48:18 AM,10/04/2012 09:48:42 AM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,04/25/2016 01:56:28 PM,Other,10/04/2012 10:13:16 AM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,false,,1,SUPPORT,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",122780097-LR5 -132160007,94,13072836,Medical Incident,08/04/2013,08/03/2013,08/04/2013 12:23:23 AM,08/04/2013 12:23:23 AM,08/04/2013 12:26:25 AM,04/25/2016 01:51:29 PM,08/04/2013 12:29:09 AM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/04/2013 12:36:05 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7799892619986, -122.407376463936)",132160007-94 -140830140,88,14027957,Medical Incident,03/24/2014,03/24/2014,03/24/2014 11:50:43 AM,03/24/2014 11:51:45 AM,03/24/2014 11:52:15 AM,03/24/2014 11:54:03 AM,04/25/2016 01:47:35 PM,03/24/2014 12:14:28 PM,03/24/2014 12:27:43 PM,Code 2 Transport,03/24/2014 01:01:49 PM,0 Block of NORTHRIDGE RD,SAN FRANCISCO,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",140830140-88 -132840315,E01,13096735,Alarms,10/11/2013,10/11/2013,10/11/2013 08:21:10 PM,10/11/2013 08:23:22 PM,10/11/2013 08:23:29 PM,10/11/2013 08:24:48 PM,10/11/2013 08:26:16 PM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/11/2013 08:30:28 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7794880680759, -122.40694292477)",132840315-E01 -140020428,55,14000882,Medical Incident,01/02/2014,01/02/2014,01/02/2014 11:49:19 PM,01/02/2014 11:50:10 PM,01/02/2014 11:50:29 PM,01/02/2014 11:50:45 PM,01/02/2014 11:54:22 PM,04/25/2016 01:48:55 PM,04/25/2016 01:48:55 PM,Other,01/02/2014 11:59:26 PM,600 Block of POST ST,SF,94109,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7877566203397, -122.413055713332)",140020428-55 -102450409,81,10077497,Medical Incident,09/02/2010,09/02/2010,09/02/2010 06:46:10 PM,09/02/2010 06:46:57 PM,09/02/2010 06:49:15 PM,04/25/2016 02:08:46 PM,09/02/2010 07:05:44 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Patient Declined Transport,09/02/2010 07:33:05 PM,100 Block of NEWMAN ST,SF,94110,B06,32,5742,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.73768216294, -122.417290852491)",102450409-81 -140790177,E33,14026711,Medical Incident,03/20/2014,03/20/2014,03/20/2014 12:38:36 PM,03/20/2014 12:40:25 PM,03/20/2014 12:41:02 PM,03/20/2014 12:42:07 PM,03/20/2014 12:46:14 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Against Medical Advice,03/20/2014 01:08:57 PM,700 Block of MOSCOW ST,SAN FRANCISCO,94134,B09,43,6161,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.715844082258, -122.431797985467)",140790177-E33 -132870209,B01,13097644,Alarms,10/14/2013,10/14/2013,10/14/2013 01:36:07 PM,10/14/2013 01:36:07 PM,10/14/2013 01:36:34 PM,10/14/2013 01:38:14 PM,10/14/2013 01:39:01 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 01:40:01 PM,800 Block of JACKSON ST,SF,94108,B01,2,136,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",132870209-B01 -130620377,B01,13020949,Alarms,03/03/2013,03/03/2013,03/03/2013 11:31:43 PM,03/03/2013 11:33:24 PM,03/03/2013 11:33:32 PM,03/03/2013 11:34:23 PM,03/03/2013 11:35:00 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 11:40:14 PM,1400 Block of POWELL ST,SF,94133,B01,2,1353,3,3,3,false,Alarm,1,CHIEF,1,1,3,Chinatown,"(37.7978877416146, -122.410428188264)",130620377-B01 -121970305,E32,12065621,Structure Fire,07/15/2012,07/15/2012,07/15/2012 08:50:00 PM,07/15/2012 08:51:02 PM,07/15/2012 08:51:17 PM,07/15/2012 08:52:44 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/15/2012 08:57:43 PM,0 Block of MONTEREY BLVD,SF,94131,B09,26,8261,3,3,3,true,Fire,1,ENGINE,9,9,7,West of Twin Peaks,"(37.7316991389715, -122.437042627497)",121970305-E32 -122030208,E15,12067487,Medical Incident,07/21/2012,07/21/2012,07/21/2012 01:53:38 PM,07/21/2012 01:54:12 PM,07/21/2012 01:54:48 PM,07/21/2012 01:56:05 PM,07/21/2012 01:57:24 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 02:06:05 PM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",122030208-E15 -121330367,T13,12044431,Structure Fire,05/12/2012,05/12/2012,05/12/2012 11:06:56 PM,05/12/2012 11:07:00 PM,05/12/2012 11:08:27 PM,05/12/2012 11:10:33 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 11:11:24 PM,MISSION ST/STEUART ST,SF,94105,B03,35,2131,3,3,3,false,Alarm,1,TRUCK,2,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",121330367-T13 -160880208,88,16034798,Medical Incident,03/28/2016,03/27/2016,03/28/2016 01:55:45 AM,03/28/2016 01:58:21 AM,03/28/2016 01:58:32 AM,03/28/2016 01:58:41 AM,03/28/2016 02:02:36 AM,03/28/2016 02:14:29 AM,03/28/2016 02:18:32 AM,Code 2 Transport,03/28/2016 02:43:47 AM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",160880208-88 -112450051,E08,11080665,Medical Incident,09/02/2011,09/01/2011,09/02/2011 06:17:50 AM,09/02/2011 06:20:03 AM,09/02/2011 06:20:13 AM,09/02/2011 06:22:34 AM,09/02/2011 06:25:36 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 06:30:04 AM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",112450051-E08 -110260146,78,11008551,Medical Incident,01/26/2011,01/26/2011,01/26/2011 11:27:09 AM,01/26/2011 11:27:56 AM,01/26/2011 11:28:06 AM,01/26/2011 11:28:57 AM,01/26/2011 11:34:14 AM,04/25/2016 02:06:24 PM,04/25/2016 02:06:24 PM,No Merit,01/26/2011 11:45:11 AM,0 Block of WALLER ST,SF,94102,B02,36,3416,3,3,3,true,,1,MEDIC,2,2,8,Hayes Valley,"(37.7718426817985, -122.424513454999)",110260146-78 -160222181,AM14,16008811,Traffic Collision,01/22/2016,01/22/2016,01/22/2016 03:01:01 PM,01/22/2016 03:01:01 PM,01/22/2016 03:01:01 PM,01/22/2016 03:01:01 PM,01/22/2016 03:01:01 PM,01/22/2016 03:20:47 PM,01/22/2016 03:41:35 PM,Code 2 Transport,01/22/2016 04:13:24 PM,NEW MONTGOMERY ST/MARKET ST,San Francisco,94105,B03,1,2144,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",160222181-AM14 -122910069,94,12096251,Medical Incident,10/17/2012,10/17/2012,10/17/2012 08:17:02 AM,10/17/2012 08:17:45 AM,10/17/2012 08:18:06 AM,10/17/2012 08:18:19 AM,10/17/2012 08:28:35 AM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Other,10/17/2012 08:29:08 AM,JOHN MUIR DR/LAKE MERCED BL,SF,,B08,19,8775,3,2,2,false,Potentially Life-Threatening,1,MEDIC,1,None,None,None,"(37.7080857299394, -122.485723865524)",122910069-94 -122310114,E18,12076542,Traffic Collision,08/18/2012,08/18/2012,08/18/2012 10:58:32 AM,08/18/2012 10:59:38 AM,08/18/2012 11:00:07 AM,08/18/2012 11:00:29 AM,08/18/2012 11:02:49 AM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 11:20:02 AM,SUNSET BL/YORBA ST,SF,94116,B08,18,7553,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7350234144441, -122.494014875893)",122310114-E18 -130990304,RC3,13033342,Medical Incident,04/09/2013,04/09/2013,04/09/2013 05:18:40 PM,04/09/2013 05:19:11 PM,04/09/2013 05:19:27 PM,04/09/2013 05:19:38 PM,04/09/2013 05:25:58 PM,04/25/2016 01:53:24 PM,04/25/2016 01:53:24 PM,Other,04/09/2013 05:44:21 PM,700 Block of BRUSSELS ST,SF,94134,B10,44,6325,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,10,9,Portola,"(37.7229051925223, -122.403886645844)",130990304-RC3 -122440354,78,12080821,Structure Fire,08/31/2012,08/31/2012,08/31/2012 10:13:05 PM,08/31/2012 10:14:38 PM,08/31/2012 10:15:08 PM,08/31/2012 10:16:15 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,04/25/2016 01:56:58 PM,Other,08/31/2012 10:21:42 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,Fire,1,MEDIC,9,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",122440354-78 -113500098,E51,11116047,Alarms,12/16/2011,12/16/2011,12/16/2011 09:41:21 AM,12/16/2011 09:41:49 AM,12/16/2011 09:41:56 AM,12/16/2011 09:43:40 AM,12/16/2011 09:50:45 AM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/16/2011 10:12:55 AM,900 Block of MARINE DR,PR,94129,B99,51,4628,3,3,3,true,,1,ENGINE,1,None,2,Presidio,"(37.8090855389614, -122.474589992359)",113500098-E51 -132150272,86,13072687,Medical Incident,08/03/2013,08/03/2013,08/03/2013 04:26:41 PM,08/03/2013 04:27:22 PM,08/03/2013 04:27:34 PM,08/03/2013 04:27:48 PM,08/03/2013 04:36:33 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Other,08/03/2013 04:40:29 PM,0 Block of CAMERON WAY,SF,94124,B10,17,6573,3,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7208692407802, -122.387247607197)",132150272-86 -130690224,KM12,13023078,Medical Incident,03/10/2013,03/10/2013,03/10/2013 04:20:52 PM,03/10/2013 04:28:19 PM,03/10/2013 04:28:40 PM,03/10/2013 04:29:12 PM,03/10/2013 04:49:41 PM,03/10/2013 05:05:10 PM,03/10/2013 05:16:50 PM,Code 2 Transport,03/10/2013 05:41:42 PM,2200 Block of LEAVENWORTH ST,SF,94133,B01,28,1531,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Russian Hill,"(37.8014947900937, -122.417769534292)",130690224-KM12 -160233815,62,16009358,Medical Incident,01/23/2016,01/23/2016,01/23/2016 11:00:05 PM,01/23/2016 11:02:34 PM,01/23/2016 11:02:58 PM,01/23/2016 11:03:06 PM,01/23/2016 11:06:18 PM,01/23/2016 11:30:13 PM,01/23/2016 11:39:08 PM,Code 2 Transport,01/24/2016 12:38:20 AM,3500 Block of GEARY BLVD,San Francisco,94118,B07,31,7113,3,3,3,true,Non Life-threatening,1,MEDIC,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",160233815-62 -103430120,E41,10109795,Alarms,12/09/2010,12/09/2010,12/09/2010 08:58:50 AM,12/09/2010 09:00:56 AM,12/09/2010 09:01:13 AM,12/09/2010 09:02:17 AM,12/09/2010 09:03:40 AM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/09/2010 09:09:54 AM,1600 Block of LEAVENWORTH ST,SF,94109,B01,41,1534,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7958064032456, -122.416610149911)",103430120-E41 -120440291,E01,12014795,Medical Incident,02/13/2012,02/13/2012,02/13/2012 08:29:24 PM,02/13/2012 08:33:58 PM,02/13/2012 08:34:28 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 08:36:10 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,ENGINE,4,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",120440291-E01 -112430162,E01,11080111,Medical Incident,08/31/2011,08/31/2011,08/31/2011 11:22:28 AM,08/31/2011 11:22:48 AM,08/31/2011 11:23:54 AM,08/31/2011 11:25:46 AM,08/31/2011 11:28:24 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,08/31/2011 11:43:38 AM,800 Block of HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112430162-E01 -160772973,66,16030708,Medical Incident,03/17/2016,03/17/2016,03/17/2016 05:06:48 PM,03/17/2016 05:06:48 PM,03/17/2016 05:07:06 PM,03/17/2016 05:07:57 PM,03/17/2016 05:21:53 PM,03/17/2016 05:40:34 PM,03/17/2016 06:04:55 PM,Code 2 Transport,03/17/2016 06:44:32 PM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",160772973-66 -160463361,53,16018664,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:05:27 PM,02/15/2016 08:07:11 PM,02/15/2016 08:07:40 PM,02/15/2016 08:07:53 PM,02/15/2016 08:12:19 PM,02/15/2016 08:33:14 PM,02/15/2016 08:58:34 PM,Code 2 Transport,02/15/2016 09:28:10 PM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160463361-53 -111340152,79,11044545,Medical Incident,05/14/2011,05/14/2011,05/14/2011 12:46:05 PM,05/14/2011 12:48:17 PM,05/14/2011 12:48:27 PM,04/25/2016 02:04:38 PM,05/14/2011 12:55:35 PM,05/14/2011 01:18:40 PM,05/14/2011 01:51:21 PM,Code 2 Transport,05/14/2011 02:15:57 PM,200 Block of 10TH ST,SF,94103,B02,36,2342,3,1,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",111340152-79 -111220297,E10,11040409,Medical Incident,05/02/2011,05/02/2011,05/02/2011 06:19:35 PM,05/02/2011 06:21:48 PM,05/02/2011 06:22:41 PM,05/02/2011 06:23:39 PM,05/02/2011 06:26:46 PM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Other,05/02/2011 06:40:21 PM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,true,,1,ENGINE,2,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",111220297-E10 -120340043,E40,12011145,Traffic Collision,02/03/2012,02/02/2012,02/03/2012 04:41:33 AM,02/03/2012 04:42:44 AM,02/03/2012 04:43:31 AM,02/03/2012 04:44:42 AM,02/03/2012 04:46:10 AM,04/25/2016 02:00:19 PM,04/25/2016 02:00:19 PM,Other,02/03/2012 05:22:28 AM,2300 Block of 19TH AVE,SF,94116,B08,40,7416,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7439803947416, -122.475835562635)",120340043-E40 -133380292,54,13114643,Medical Incident,12/04/2013,12/04/2013,12/04/2013 06:29:44 PM,12/04/2013 06:29:45 PM,12/04/2013 06:30:49 PM,12/04/2013 06:31:05 PM,12/04/2013 06:47:40 PM,12/04/2013 07:02:06 PM,12/04/2013 07:25:45 PM,Code 2 Transport,12/04/2013 07:50:38 PM,VARENNES ST/UNION ST,SF,94133,B01,28,1252,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8007368354101, -122.406801051908)",133380292-54 -132370326,81,13080085,Medical Incident,08/25/2013,08/25/2013,08/25/2013 08:04:02 PM,08/25/2013 08:04:31 PM,08/25/2013 08:23:33 PM,08/25/2013 08:28:28 PM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Other,08/25/2013 08:28:52 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",132370326-81 -120180034,T08,12005905,Structure Fire,01/18/2012,01/17/2012,01/18/2012 04:01:21 AM,01/18/2012 04:01:22 AM,01/18/2012 04:01:29 AM,01/18/2012 04:02:42 AM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Other,01/18/2012 04:05:28 AM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7777990101501, -122.40029776053)",120180034-T08 -130500029,87,13016893,Medical Incident,02/19/2013,02/18/2013,02/19/2013 04:39:48 AM,02/19/2013 04:40:43 AM,02/19/2013 04:43:08 AM,04/25/2016 01:54:13 PM,02/19/2013 04:55:26 AM,02/19/2013 05:04:41 AM,02/19/2013 05:18:01 AM,Code 2 Transport,02/19/2013 05:30:22 AM,900 Block of SILVER AVE,SF,94134,B09,42,635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.728861421632, -122.416687260507)",130500029-87 -121340215,KM02,12044639,Medical Incident,05/13/2012,05/13/2012,05/13/2012 03:46:22 PM,05/13/2012 03:46:47 PM,05/13/2012 03:47:01 PM,05/13/2012 03:47:38 PM,05/13/2012 03:55:31 PM,05/13/2012 04:10:04 PM,05/13/2012 04:18:44 PM,Code 2 Transport,05/13/2012 04:52:01 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",121340215-KM02 -160870709,85,16034480,Medical Incident,03/27/2016,03/26/2016,03/27/2016 06:35:47 AM,03/27/2016 06:38:16 AM,03/27/2016 06:38:56 AM,03/27/2016 06:39:14 AM,03/27/2016 06:43:28 AM,03/27/2016 06:59:13 AM,03/27/2016 07:21:22 AM,Code 2 Transport,03/27/2016 08:17:23 AM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160870709-85 -110650356,79,11021609,Medical Incident,03/06/2011,03/06/2011,03/06/2011 09:23:38 PM,03/06/2011 09:25:41 PM,03/06/2011 09:26:01 PM,03/06/2011 09:26:16 PM,03/06/2011 09:30:52 PM,03/06/2011 09:44:32 PM,03/06/2011 10:02:56 PM,Code 3 Transport,03/06/2011 10:27:43 PM,1200 Block of JONES ST,SF,94108,B01,41,1465,3,3,3,true,,1,MEDIC,2,1,3,Nob Hill,"(37.7930122510265, -122.414357638755)",110650356-79 -111110229,T03,11036692,Medical Incident,04/21/2011,04/21/2011,04/21/2011 02:52:14 PM,04/21/2011 02:52:50 PM,04/21/2011 02:53:07 PM,04/21/2011 02:54:21 PM,04/21/2011 02:58:42 PM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/21/2011 03:03:59 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",111110229-T03 -130770191,E31,13025717,Medical Incident,03/18/2013,03/18/2013,03/18/2013 12:52:34 PM,03/18/2013 12:54:05 PM,03/18/2013 12:54:37 PM,03/18/2013 12:56:18 PM,03/18/2013 01:00:37 PM,04/25/2016 01:53:46 PM,04/25/2016 01:53:46 PM,Other,03/18/2013 02:35:44 PM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,2,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7694537012686, -122.469609049655)",130770191-E31 -132640174,E41,13089494,Other,09/21/2013,09/21/2013,09/21/2013 10:55:53 AM,09/21/2013 10:56:07 AM,09/21/2013 10:56:20 AM,09/21/2013 10:57:08 AM,09/21/2013 11:03:49 AM,04/25/2016 01:50:40 PM,04/25/2016 01:50:40 PM,Fire,09/21/2013 11:37:40 AM,1700 Block of HYDE ST,SF,94109,B01,41,1566,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.7968133507148, -122.418496319534)",132640174-E41 -160831406,57,16032916,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:00:07 AM,03/23/2016 11:00:07 AM,03/23/2016 11:00:56 AM,03/23/2016 11:01:09 AM,03/23/2016 11:18:44 AM,03/23/2016 11:33:31 AM,03/23/2016 11:42:58 AM,Code 2 Transport,03/23/2016 12:24:13 PM,COLUMBUS AV/FILBERT ST,San Francisco,94133,B01,28,1351,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.8011251306762, -122.411376271747)",160831406-57 -103650332,E31,10117226,Medical Incident,12/31/2010,12/31/2010,12/31/2010 09:30:30 PM,12/31/2010 09:31:12 PM,12/31/2010 09:31:31 PM,12/31/2010 09:32:06 PM,12/31/2010 09:34:02 PM,04/25/2016 02:06:50 PM,04/25/2016 02:06:50 PM,Other,12/31/2010 09:49:18 PM,400 Block of 15TH AVE,SF,94118,B07,31,7154,3,2,2,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7796108045675, -122.473976770296)",103650332-E31 -112670306,E38,11088332,Smoke Investigation (Outside),09/24/2011,09/24/2011,09/24/2011 06:07:42 PM,09/24/2011 06:08:32 PM,09/24/2011 06:09:18 PM,09/24/2011 06:10:15 PM,09/24/2011 06:12:24 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,No Merit,09/24/2011 06:16:21 PM,1700 Block of PACIFIC AVE,SF,94109,B04,38,3231,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7946580988231, -122.424038521298)",112670306-E38 -110670337,B04,11022194,Alarms,03/08/2011,03/08/2011,03/08/2011 09:41:02 PM,03/08/2011 09:41:50 PM,03/08/2011 09:42:03 PM,03/08/2011 09:43:49 PM,03/08/2011 09:47:02 PM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/08/2011 09:51:42 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,,1,CHIEF,3,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",110670337-B04 -160774008,KM07,16030798,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:27:51 PM,03/17/2016 09:27:51 PM,03/17/2016 09:28:45 PM,03/17/2016 09:30:23 PM,03/17/2016 09:31:56 PM,03/17/2016 09:49:55 PM,03/17/2016 10:14:46 PM,Code 2 Transport,03/17/2016 10:53:46 PM,2000 Block of VICENTE ST,San Francisco,94116,B08,18,7547,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7386791207414, -122.488817872407)",160774008-KM07 -160780578,62,16030914,Medical Incident,03/18/2016,03/17/2016,03/18/2016 06:15:00 AM,03/18/2016 06:16:59 AM,03/18/2016 06:17:13 AM,03/18/2016 06:17:37 AM,03/18/2016 06:19:46 AM,03/18/2016 06:43:31 AM,03/18/2016 06:53:02 AM,Code 2 Transport,03/18/2016 07:18:43 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160780578-62 -133340256,E02,13113307,Alarms,11/30/2013,11/30/2013,11/30/2013 05:01:51 PM,11/30/2013 05:03:17 PM,11/30/2013 05:03:23 PM,11/30/2013 05:05:10 PM,11/30/2013 05:06:01 PM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,11/30/2013 05:11:50 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",133340256-E02 -113270352,82,11108712,Medical Incident,11/23/2011,11/23/2011,11/23/2011 11:18:49 PM,11/23/2011 11:20:02 PM,11/23/2011 11:20:17 PM,11/23/2011 11:20:24 PM,11/23/2011 11:21:59 PM,11/23/2011 11:46:38 PM,11/23/2011 11:56:54 PM,Code 2 Transport,11/24/2011 12:27:20 AM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7832878520296, -122.408952160052)",113270352-82 -140730301,RS1,14024743,Structure Fire,03/14/2014,03/14/2014,03/14/2014 05:34:19 PM,03/14/2014 05:34:48 PM,03/14/2014 05:35:22 PM,03/14/2014 05:36:27 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Fire,03/14/2014 05:42:21 PM,JONES ST/JEFFERSON ST,SAN FRANCISCO,94133,B01,28,945,3,3,3,false,Fire,1,RESCUE SQUAD,13,1,3,North Beach,"(37.8080133240409, -122.417445939002)",140730301-RS1 -131590354,E06,13054172,Medical Incident,06/08/2013,06/08/2013,06/08/2013 10:18:36 PM,06/08/2013 10:19:27 PM,06/08/2013 10:19:47 PM,06/08/2013 10:22:05 PM,06/08/2013 10:23:48 PM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/08/2013 10:25:34 PM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",131590354-E06 -112820159,E23,11093313,Medical Incident,10/09/2011,10/09/2011,10/09/2011 12:04:32 PM,10/09/2011 12:04:32 PM,10/09/2011 12:04:32 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 12:26:52 PM,1200 Block of 44TH AVE,SF,94122,B08,23,7654,2,2,2,true,,1,ENGINE,3,8,4,Sunset/Parkside,"(37.7633235426802, -122.503913503953)",112820159-E23 -110570302,T03,11018856,Medical Incident,02/26/2011,02/26/2011,02/26/2011 07:12:27 PM,02/26/2011 07:14:38 PM,02/26/2011 07:14:59 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,04/25/2016 02:05:53 PM,Other,04/25/2016 02:05:53 PM,1000 Block of FRANKLIN ST,SF,94109,B02,3,3221,3,3,3,false,,1,TRUCK,2,2,5,Western Addition,"(37.7838427739256, -122.422767363844)",110570302-T03 -140600390,RC3,14020442,Medical Incident,03/01/2014,03/01/2014,03/01/2014 09:30:31 PM,03/01/2014 09:30:54 PM,03/01/2014 09:32:17 PM,03/01/2014 09:33:35 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Patient Declined Transport,03/01/2014 09:36:57 PM,1000 Block of WISCONSIN ST,SF,94107,B10,37,2565,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Potrero Hill,"(37.7542876781547, -122.398580716544)",140600390-RC3 -160073527,78,16002996,Medical Incident,01/07/2016,01/07/2016,01/07/2016 08:48:32 PM,01/07/2016 08:49:47 PM,01/07/2016 08:50:05 PM,01/07/2016 08:50:46 PM,01/07/2016 08:57:17 PM,01/07/2016 09:25:25 PM,01/07/2016 09:31:53 PM,Code 2 Transport,01/07/2016 10:20:56 PM,MISSION ST/6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7809711823918, -122.408708674954)",160073527-78 -130910324,E01,13030569,Medical Incident,04/01/2013,04/01/2013,04/01/2013 06:45:46 PM,04/01/2013 06:46:54 PM,04/01/2013 06:48:29 PM,04/01/2013 06:49:03 PM,04/01/2013 06:54:22 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,No Merit,04/01/2013 06:55:03 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",130910324-E01 -102320316,RC1,10073123,Medical Incident,08/20/2010,08/20/2010,08/20/2010 07:11:51 PM,08/20/2010 07:13:16 PM,08/20/2010 07:13:56 PM,04/25/2016 02:08:59 PM,08/20/2010 07:17:14 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/20/2010 07:46:07 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,true,,1,RESCUE CAPTAIN,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",102320316-RC1 -112570068,T05,11084653,Other,09/14/2011,09/14/2011,09/14/2011 08:26:13 AM,09/14/2011 08:26:29 AM,09/14/2011 08:26:36 AM,04/25/2016 02:02:41 PM,09/14/2011 08:29:03 AM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Other,09/14/2011 09:22:47 AM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",112570068-T05 -132660123,RS1,13090197,Medical Incident,09/23/2013,09/23/2013,09/23/2013 09:54:55 AM,09/23/2013 09:56:29 AM,09/23/2013 09:56:43 AM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/23/2013 09:57:40 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",132660123-RS1 -120900109,E06,12029733,Medical Incident,03/30/2012,03/30/2012,03/30/2012 09:30:12 AM,03/30/2012 09:30:39 AM,03/30/2012 09:31:10 AM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,04/25/2016 01:59:25 PM,Other,03/30/2012 09:32:03 AM,300 Block of GOUGH ST,SF,94102,B02,36,3265,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7761916214672, -122.422766863019)",120900109-E06 -131410380,67,13047944,Medical Incident,05/21/2013,05/21/2013,05/21/2013 09:12:52 PM,05/21/2013 09:13:50 PM,05/21/2013 09:14:29 PM,05/21/2013 09:14:45 PM,05/21/2013 09:16:19 PM,05/21/2013 09:34:30 PM,05/21/2013 09:49:54 PM,Code 2 Transport,05/21/2013 10:13:10 PM,200 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7862985138478, -122.408477809664)",131410380-67 -113330312,85,11110419,Medical Incident,11/29/2011,11/29/2011,11/29/2011 08:29:58 PM,11/29/2011 08:30:05 PM,11/29/2011 08:30:36 PM,11/29/2011 08:34:31 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/29/2011 08:36:39 PM,700 Block of GRANT AVE,SF,94108,B01,13,1313,2,2,2,true,,1,MEDIC,2,1,3,Chinatown,"(37.7940392610273, -122.406331131515)",113330312-85 -160732049,65,16029034,Medical Incident,03/13/2016,03/13/2016,03/13/2016 04:45:53 PM,03/13/2016 04:47:10 PM,03/13/2016 04:47:49 PM,03/13/2016 04:47:55 PM,03/13/2016 04:58:25 PM,03/13/2016 05:17:35 PM,03/13/2016 05:24:28 PM,Code 2 Transport,03/13/2016 06:06:29 PM,200 Block of ELLIS ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7852329971738, -122.410329588144)",160732049-65 -131010345,89,13034084,Medical Incident,04/11/2013,04/11/2013,04/11/2013 08:38:54 PM,04/11/2013 08:39:48 PM,04/11/2013 08:40:22 PM,04/11/2013 08:41:06 PM,04/11/2013 09:03:09 PM,04/11/2013 09:26:39 PM,04/11/2013 09:47:31 PM,Code 2 Transport,04/11/2013 10:23:09 PM,1300 Block of JUNIPERO SERRA BLVD,SF,94132,B08,33,8773,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7140264592051, -122.471722049026)",131010345-89 -122600267,57,12086019,Medical Incident,09/16/2012,09/16/2012,09/16/2012 07:08:16 PM,09/16/2012 07:09:13 PM,09/16/2012 07:10:24 PM,09/16/2012 07:10:30 PM,09/16/2012 07:15:15 PM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,Patient Declined Transport,09/16/2012 07:46:20 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",122600267-57 -110360282,94,11011907,Medical Incident,02/05/2011,02/05/2011,02/05/2011 03:40:53 PM,02/05/2011 03:42:17 PM,02/05/2011 03:42:49 PM,04/25/2016 02:06:14 PM,02/05/2011 03:50:14 PM,02/05/2011 03:54:27 PM,02/05/2011 04:12:48 PM,Code 3 Transport,02/05/2011 04:39:51 PM,3100 Block of 16TH ST,SF,94103,B02,6,5235,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7648681454287, -122.423612806769)",110360282-94 -140830103,52,14027927,Medical Incident,03/24/2014,03/24/2014,03/24/2014 09:59:25 AM,03/24/2014 10:04:22 AM,03/24/2014 10:04:39 AM,03/24/2014 10:05:41 AM,03/24/2014 10:16:31 AM,03/24/2014 10:27:09 AM,03/24/2014 10:39:52 AM,Code 2 Transport,03/24/2014 11:07:43 AM,1300 Block of THOMAS AVE,SAN FRANCISCO,94124,B10,17,6547,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",140830103-52 -131980148,E01,13067115,Medical Incident,07/17/2013,07/17/2013,07/17/2013 12:25:10 PM,07/17/2013 12:26:27 PM,07/17/2013 12:26:48 PM,07/17/2013 12:27:30 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Other,07/17/2013 12:29:30 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7815842395421, -122.408030493992)",131980148-E01 -131100187,AM02,13037013,Medical Incident,04/20/2013,04/20/2013,04/20/2013 12:39:34 PM,04/20/2013 12:40:19 PM,04/20/2013 12:40:45 PM,04/20/2013 12:41:43 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/20/2013 12:46:23 PM,POLK ST/AUSTIN ST,SF,94109,B04,3,3122,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7891650930566, -122.420401246671)",131100187-AM02 -160123183,72,16004903,Medical Incident,01/12/2016,01/12/2016,01/12/2016 07:08:32 PM,01/12/2016 07:10:07 PM,01/12/2016 07:11:20 PM,01/12/2016 07:11:42 PM,01/12/2016 07:18:13 PM,01/12/2016 07:38:05 PM,01/12/2016 07:45:13 PM,Code 2 Transport,01/12/2016 08:22:32 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",160123183-72 -130960082,77,13032101,Medical Incident,04/06/2013,04/05/2013,04/06/2013 06:10:17 AM,04/06/2013 06:10:54 AM,04/06/2013 06:12:56 AM,04/06/2013 06:12:56 AM,04/06/2013 06:17:49 AM,04/06/2013 06:27:45 AM,04/06/2013 06:38:35 AM,Code 2 Transport,04/06/2013 07:14:51 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130960082-77 -160712248,68,16028291,Medical Incident,03/11/2016,03/11/2016,03/11/2016 03:33:45 PM,03/11/2016 03:34:16 PM,03/11/2016 03:34:59 PM,03/11/2016 03:35:06 PM,03/11/2016 03:39:25 PM,03/11/2016 04:06:30 PM,03/11/2016 04:21:39 PM,Code 2 Transport,03/11/2016 05:00:40 PM,MAIN ST/MISSION ST,San Francisco,94105,B03,35,2116,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.791842089433, -122.394940238481)",160712248-68 -110900079,E01,11029680,Medical Incident,03/31/2011,03/31/2011,03/31/2011 08:42:58 AM,03/31/2011 08:44:07 AM,03/31/2011 08:44:40 AM,04/25/2016 02:05:21 PM,03/31/2011 08:49:26 AM,04/25/2016 02:05:21 PM,04/25/2016 02:05:21 PM,Patient Declined Transport,03/31/2011 09:19:19 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,2,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",110900079-E01 -160350458,63,16013684,Medical Incident,02/04/2016,02/03/2016,02/04/2016 05:49:13 AM,02/04/2016 05:51:42 AM,02/04/2016 05:52:11 AM,02/04/2016 05:52:38 AM,02/04/2016 05:55:56 AM,02/04/2016 06:25:54 AM,02/04/2016 06:35:33 AM,Code 2 Transport,02/04/2016 07:13:34 AM,GEARY ST/POLK ST,San Francisco,94109,B04,3,3116,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160350458-63 -110060233,65,11002007,Medical Incident,01/06/2011,01/06/2011,01/06/2011 02:35:50 PM,01/06/2011 02:36:17 PM,01/06/2011 02:36:35 PM,01/06/2011 02:37:08 PM,01/06/2011 02:39:56 PM,01/06/2011 02:56:59 PM,01/06/2011 03:20:10 PM,Code 2 Transport,01/06/2011 03:36:25 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",110060233-65 -131740314,88,13059171,Traffic Collision,06/23/2013,06/23/2013,06/23/2013 07:33:06 PM,06/23/2013 07:33:49 PM,06/23/2013 07:34:19 PM,06/23/2013 07:34:26 PM,06/23/2013 07:39:57 PM,06/23/2013 08:03:04 PM,06/23/2013 08:06:58 PM,Code 2 Transport,06/23/2013 08:30:40 PM,1400 Block of TAYLOR ST,SF,94133,B01,2,1443,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7956320137041, -122.413345327793)",131740314-88 -112280011,71,11075231,Medical Incident,08/16/2011,08/15/2011,08/16/2011 12:42:46 AM,08/16/2011 12:44:10 AM,08/16/2011 12:44:31 AM,08/16/2011 12:45:13 AM,08/16/2011 12:55:05 AM,08/16/2011 01:13:10 AM,08/16/2011 01:23:44 AM,Code 2 Transport,08/16/2011 01:54:40 AM,1700 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",112280011-71 -122370240,E29,12078562,Medical Incident,08/24/2012,08/24/2012,08/24/2012 04:31:08 PM,08/24/2012 04:32:18 PM,08/24/2012 04:32:30 PM,08/24/2012 04:33:42 PM,08/24/2012 04:37:21 PM,04/25/2016 01:57:05 PM,04/25/2016 01:57:05 PM,Other,08/24/2012 04:50:20 PM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760463471271, -122.41128875661)",122370240-E29 -131890300,E06,13064520,Odor (Strange / Unknown),07/08/2013,07/08/2013,07/08/2013 06:43:05 PM,07/08/2013 06:45:48 PM,07/08/2013 06:46:08 PM,07/08/2013 06:47:37 PM,07/08/2013 06:50:08 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/08/2013 06:55:03 PM,500 Block of SCOTT ST,SF,94117,B05,21,4136,3,3,3,true,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7747500421845, -122.435966327435)",131890300-E06 -160810381,AM20,16032052,Medical Incident,03/21/2016,03/20/2016,03/21/2016 04:55:55 AM,03/21/2016 04:59:57 AM,03/21/2016 05:01:32 AM,03/21/2016 05:02:20 AM,03/21/2016 05:05:53 AM,03/21/2016 05:08:38 AM,03/21/2016 05:32:35 AM,Code 2 Transport,03/21/2016 05:34:05 AM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7766884069711, -122.426379489125)",160810381-AM20 -110780340,58,11025801,Medical Incident,03/19/2011,03/19/2011,03/19/2011 09:26:21 PM,03/19/2011 09:27:22 PM,03/19/2011 09:28:02 PM,03/19/2011 09:28:56 PM,03/19/2011 09:45:20 PM,03/19/2011 10:07:04 PM,03/19/2011 10:24:27 PM,Code 2 Transport,03/19/2011 10:56:24 PM,1500 Block of POLK ST,SF,94109,B04,41,3123,3,2,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7910457707698, -122.420711946021)",110780340-58 -160213880,60,16008572,Medical Incident,01/21/2016,01/21/2016,01/21/2016 09:48:53 PM,01/21/2016 09:50:45 PM,01/21/2016 09:51:04 PM,01/21/2016 09:51:10 PM,01/21/2016 10:00:32 PM,01/21/2016 10:32:20 PM,01/21/2016 10:46:52 PM,Code 2 Transport,01/21/2016 11:24:57 PM,1400 Block of 19TH AV,San Francisco,94122,B08,22,7423,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7607582384443, -122.477052170071)",160213880-60 -140630293,E36,14021366,Medical Incident,03/04/2014,03/04/2014,03/04/2014 04:57:26 PM,03/04/2014 04:59:18 PM,03/04/2014 04:59:49 PM,03/04/2014 05:03:23 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Code 2 Transport,03/04/2014 05:07:12 PM,0 Block of FELL ST,SF,94102,B02,36,3111,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7764405100838, -122.418481123408)",140630293-E36 -113280291,77,11108983,Medical Incident,11/24/2011,11/24/2011,11/24/2011 10:07:10 PM,11/24/2011 10:07:16 PM,11/24/2011 10:07:31 PM,11/24/2011 10:08:29 PM,11/24/2011 10:13:42 PM,11/24/2011 10:24:55 PM,11/24/2011 10:26:35 PM,Code 2 Transport,11/24/2011 11:00:12 PM,200 Block of DIVISADERO ST,SF,94117,B05,21,4144,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7717499829743, -122.437022956853)",113280291-77 -140770083,T08,14025986,Medical Incident,03/18/2014,03/18/2014,03/18/2014 08:53:49 AM,03/18/2014 08:55:39 AM,03/18/2014 08:56:08 AM,03/18/2014 08:57:47 AM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,04/25/2016 01:47:41 PM,Code 3 Transport,03/18/2014 08:58:58 AM,500 Block of 5TH ST,SAN FRANCISCO,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,South of Market,"(37.7776242389287, -122.39998111124)",140770083-T08 -120110218,E11,12003837,Medical Incident,01/11/2012,01/11/2012,01/11/2012 03:44:44 PM,01/11/2012 03:45:31 PM,01/11/2012 03:46:00 PM,01/11/2012 03:47:07 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,04/25/2016 02:00:40 PM,Other,01/11/2012 03:50:16 PM,3800 Block of MISSION ST,SF,94110,B06,32,5632,3,1,2,true,Non Life-threatening,1,ENGINE,2,6,8,Bernal Heights,"(37.7357299122271, -122.424651160697)",120110218-E11 -140550186,E05,14018576,Medical Incident,02/24/2014,02/24/2014,02/24/2014 01:51:33 PM,02/24/2014 01:53:41 PM,02/24/2014 01:53:51 PM,02/24/2014 01:55:18 PM,02/24/2014 01:56:40 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Fire,02/24/2014 02:00:37 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",140550186-E05 -120600047,54,12019641,Medical Incident,02/29/2012,02/28/2012,02/29/2012 06:05:57 AM,02/29/2012 06:06:38 AM,02/29/2012 06:06:48 AM,02/29/2012 06:08:10 AM,02/29/2012 06:13:29 AM,02/29/2012 06:29:43 AM,02/29/2012 06:38:15 AM,Code 3 Transport,02/29/2012 07:10:37 AM,100 Block of COUNTRY CLUB DR,SF,94132,B08,19,8826,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.730788409194, -122.496687609617)",120600047-54 -123420211,E35,12114166,Administrative,12/07/2012,12/07/2012,12/07/2012 12:46:06 PM,12/07/2012 12:46:09 PM,12/07/2012 12:47:19 PM,12/07/2012 12:47:54 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/07/2012 12:48:00 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",123420211-E35 -160502319,76,16020144,Medical Incident,02/19/2016,02/19/2016,02/19/2016 03:34:03 PM,02/19/2016 03:35:13 PM,02/19/2016 03:35:33 PM,02/19/2016 03:35:42 PM,02/19/2016 03:40:12 PM,02/19/2016 03:49:32 PM,02/19/2016 04:02:13 PM,Code 2 Transport,02/19/2016 04:20:35 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160502319-76 -132260033,T11,13076175,Elevator / Escalator Rescue,08/14/2013,08/13/2013,08/14/2013 03:34:09 AM,08/14/2013 03:35:53 AM,08/14/2013 03:36:50 AM,08/14/2013 03:38:44 AM,08/14/2013 03:44:11 AM,04/25/2016 01:51:19 PM,04/25/2016 01:51:19 PM,Fire,08/14/2013 03:55:48 AM,100 Block of PORTOLA DR,SF,94131,B06,24,5354,3,3,3,false,Alarm,1,TRUCK,1,6,8,Twin Peaks,"(37.7484965077695, -122.444276468858)",132260033-T11 -133330052,E01,13112849,Structure Fire,11/29/2013,11/28/2013,11/29/2013 05:01:53 AM,11/29/2013 05:02:34 AM,11/29/2013 05:02:59 AM,11/29/2013 05:05:01 AM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/29/2013 05:10:28 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,8,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",133330052-E01 -102640170,T02,10083537,Alarms,09/21/2010,09/21/2010,09/21/2010 12:44:00 PM,09/21/2010 12:45:55 PM,09/21/2010 12:46:06 PM,09/21/2010 12:47:50 PM,09/21/2010 12:49:57 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 01:03:30 PM,2200 Block of STOCKTON ST,SF,94133,B01,28,1341,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.8065039063876, -122.410335822065)",102640170-T02 -130060230,E19,13002112,Medical Incident,01/06/2013,01/06/2013,01/06/2013 04:52:47 PM,01/06/2013 04:53:37 PM,01/06/2013 04:53:58 PM,01/06/2013 04:55:37 PM,01/06/2013 04:57:08 PM,04/25/2016 01:54:56 PM,04/25/2016 01:54:56 PM,Other,01/06/2013 05:07:10 PM,19TH AV/OCEAN AV,SF,94132,B08,19,7413,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7324561388297, -122.474954620812)",130060230-E19 -130390332,94,13013432,Medical Incident,02/08/2013,02/08/2013,02/08/2013 07:06:42 PM,02/08/2013 07:07:37 PM,02/08/2013 07:12:00 PM,04/25/2016 01:54:23 PM,02/08/2013 07:19:59 PM,02/08/2013 07:37:33 PM,02/08/2013 07:44:42 PM,Code 2 Transport,02/08/2013 08:21:18 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7760099210785, -122.412889415461)",130390332-94 -140640354,E36,14021794,Medical Incident,03/05/2014,03/05/2014,03/05/2014 09:47:11 PM,03/05/2014 09:47:16 PM,03/05/2014 09:48:03 PM,03/05/2014 09:49:23 PM,03/05/2014 09:54:05 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Code 3 Transport,03/05/2014 09:56:31 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",140640354-E36 -160912990,88,16036196,Medical Incident,03/31/2016,03/31/2016,03/31/2016 06:25:21 PM,03/31/2016 06:27:51 PM,03/31/2016 06:28:05 PM,03/31/2016 06:28:12 PM,03/31/2016 06:32:22 PM,03/31/2016 06:40:30 PM,03/31/2016 06:57:29 PM,Code 2 Transport,03/31/2016 07:31:28 PM,1000 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7563716216308, -122.416574134534)",160912990-88 -131260364,RS1,13042720,Structure Fire,05/06/2013,05/06/2013,05/06/2013 07:46:03 PM,05/06/2013 07:47:12 PM,05/06/2013 07:47:26 PM,05/06/2013 07:48:18 PM,05/06/2013 07:53:08 PM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/06/2013 07:53:35 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Alarm,1,RESCUE SQUAD,9,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",131260364-RS1 -160821357,50,16032528,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:11:56 AM,03/22/2016 11:12:52 AM,03/22/2016 11:13:05 AM,03/22/2016 11:13:12 AM,03/22/2016 11:19:29 AM,03/22/2016 12:00:04 PM,03/22/2016 12:17:13 PM,Code 2 Transport,03/22/2016 01:12:07 PM,0 Block of MONTANA ST,San Francisco,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7166742986629, -122.455048913828)",160821357-50 -160013790,72,16000528,Medical Incident,01/01/2016,01/01/2016,01/01/2016 10:23:49 PM,01/01/2016 10:23:49 PM,01/01/2016 10:24:17 PM,01/01/2016 10:25:43 PM,01/01/2016 10:31:19 PM,01/01/2016 10:39:34 PM,01/01/2016 10:47:28 PM,Code 3 Transport,01/01/2016 11:28:08 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,A,E,3,true,Potentially Life-Threatening,1,MEDIC,5,6,9,Bernal Heights,"(37.7330187796563, -122.416499861858)",160013790-72 -133000249,E14,13102001,Traffic Collision,10/27/2013,10/27/2013,10/27/2013 03:57:07 PM,10/27/2013 03:58:38 PM,10/27/2013 04:00:11 PM,10/27/2013 04:01:01 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 04:04:41 PM,GEARY BL/11TH AV,SF,94118,B07,31,7141,3,3,3,true,Non Life-threatening,1,ENGINE,4,7,1,Inner Richmond,"(37.7807687380348, -122.469627030052)",133000249-E14 -130410237,E23,13014071,Administrative,02/10/2013,02/10/2013,02/10/2013 04:35:03 PM,02/10/2013 04:35:17 PM,02/10/2013 04:36:07 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Fire,02/10/2013 04:36:35 PM,1300 Block of 45TH AVE,SF,94122,B08,23,7655,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7614051599846, -122.504853112646)",130410237-E23 -130790164,E06,13026380,Medical Incident,03/20/2013,03/20/2013,03/20/2013 12:47:09 PM,03/20/2013 12:49:20 PM,03/20/2013 12:49:30 PM,03/20/2013 12:50:25 PM,03/20/2013 12:56:16 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 01:04:39 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",130790164-E06 -160032980,60,16001357,Medical Incident,01/03/2016,01/03/2016,01/03/2016 08:44:43 PM,01/03/2016 08:45:50 PM,01/03/2016 08:46:02 PM,01/03/2016 08:46:14 PM,01/03/2016 08:54:40 PM,01/03/2016 09:50:13 PM,01/03/2016 09:20:52 PM,Code 2 Transport,01/03/2016 10:08:25 PM,100 Block of THORNTON AVE,San Francisco,94124,B10,17,6513,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7308811280003, -122.393441784119)",160032980-60 -160103469,KM07,16004202,Medical Incident,01/10/2016,01/10/2016,01/10/2016 10:33:22 PM,01/10/2016 10:33:22 PM,01/10/2016 10:33:36 PM,01/10/2016 10:34:12 PM,01/10/2016 10:37:02 PM,01/10/2016 10:44:00 PM,01/10/2016 11:09:44 PM,Code 2 Transport,01/10/2016 11:52:54 PM,POLK ST/POST ST,San Francisco,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",160103469-KM07 -130750180,82,13025030,Medical Incident,03/16/2013,03/16/2013,03/16/2013 01:38:18 PM,03/16/2013 01:39:13 PM,03/16/2013 01:42:29 PM,03/16/2013 01:42:46 PM,03/16/2013 01:58:26 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Unable to Locate,03/16/2013 02:00:14 PM,600 Block of POST ST,SF,94102,B01,3,1451,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7877770164282, -122.41201048788)",130750180-82 -103300274,T01,10105734,Medical Incident,11/26/2010,11/26/2010,11/26/2010 07:04:23 PM,11/26/2010 07:04:54 PM,11/26/2010 07:05:17 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 07:05:54 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,,1,TRUCK,4,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",103300274-T01 -121240041,88,12041048,Medical Incident,05/03/2012,05/02/2012,05/03/2012 03:33:13 AM,05/03/2012 03:35:26 AM,05/03/2012 03:36:28 AM,05/03/2012 03:36:34 AM,05/03/2012 03:46:19 AM,05/03/2012 03:58:44 AM,05/03/2012 04:06:34 AM,Code 2 Transport,05/03/2012 04:29:33 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121240041-88 -160380895,AM04,16015118,Medical Incident,02/07/2016,02/06/2016,02/07/2016 07:25:09 AM,02/07/2016 07:25:09 AM,02/07/2016 07:25:53 AM,02/07/2016 07:26:31 AM,02/07/2016 07:28:07 AM,02/07/2016 07:36:04 AM,02/07/2016 08:01:55 AM,Code 2 Transport,02/07/2016 08:26:30 AM,0 Block of POWELL ST,San Francisco,94102,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",160380895-AM04 -133030304,84,13103024,Medical Incident,10/30/2013,10/30/2013,10/30/2013 06:00:44 PM,10/30/2013 06:02:09 PM,10/30/2013 06:02:22 PM,10/30/2013 06:02:36 PM,10/30/2013 06:07:27 PM,04/25/2016 01:50:00 PM,04/25/2016 01:50:00 PM,No Merit,10/30/2013 06:28:21 PM,2200 Block of BRYANT ST,SF,94110,B06,7,5474,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7580152328846, -122.409672653063)",133030304-84 -112810181,E28,11093000,Medical Incident,10/08/2011,10/08/2011,10/08/2011 12:25:28 PM,10/08/2011 12:26:45 PM,10/08/2011 12:28:22 PM,10/08/2011 12:29:19 PM,10/08/2011 12:30:57 PM,04/25/2016 02:02:16 PM,04/25/2016 02:02:16 PM,Other,10/08/2011 12:33:41 PM,300 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,,1,ENGINE,1,1,3,North Beach,"(37.8057759671113, -122.412787887195)",112810181-E28 -112590175,E07,11085385,Medical Incident,09/16/2011,09/16/2011,09/16/2011 11:57:29 AM,09/16/2011 11:58:15 AM,09/16/2011 11:59:12 AM,09/16/2011 12:00:00 PM,09/16/2011 12:02:03 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/16/2011 12:14:00 PM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",112590175-E07 -160554271,89,16022195,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:47:08 PM,02/24/2016 11:47:34 PM,02/24/2016 11:47:45 PM,02/24/2016 11:47:56 PM,02/24/2016 11:51:09 PM,02/24/2016 11:59:10 PM,02/25/2016 12:16:49 AM,Code 2 Transport,02/25/2016 12:51:32 AM,1100 Block of PALOU AVE,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7291630976058, -122.382538001818)",160554271-89 -160642996,KM06,16025613,Medical Incident,03/04/2016,03/04/2016,03/04/2016 05:55:38 PM,03/04/2016 05:56:45 PM,03/04/2016 05:57:34 PM,03/04/2016 05:58:18 PM,03/04/2016 06:02:06 PM,03/04/2016 06:17:42 PM,03/04/2016 06:45:00 PM,Code 2 Transport,03/04/2016 07:03:59 PM,1200 Block of TARAVAL ST,San Francisco,94116,B08,40,7461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",160642996-KM06 -140120272,86,14004238,Medical Incident,01/12/2014,01/12/2014,01/12/2014 07:38:10 PM,01/12/2014 07:38:39 PM,01/12/2014 07:39:08 PM,01/12/2014 07:39:40 PM,01/12/2014 07:43:03 PM,01/12/2014 07:55:24 PM,01/12/2014 08:12:41 PM,Code 2 Transport,01/12/2014 08:28:49 PM,MARIPOSA ST/ARKANSAS ST,SF,94107,B03,29,2425,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,3,10,Potrero Hill,"(37.7637357276639, -122.398580416512)",140120272-86 -140230273,E03,14007941,Medical Incident,01/23/2014,01/23/2014,01/23/2014 06:37:58 PM,01/23/2014 06:38:42 PM,01/23/2014 06:39:34 PM,01/23/2014 06:40:52 PM,01/23/2014 06:42:14 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 06:55:09 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",140230273-E03 -121840081,88,12061206,Medical Incident,07/02/2012,07/02/2012,07/02/2012 09:11:34 AM,07/02/2012 09:12:38 AM,07/02/2012 09:12:48 AM,07/02/2012 09:13:09 AM,07/02/2012 09:16:48 AM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Patient Declined Transport,07/02/2012 09:31:30 AM,1400 Block of 24TH AVE,SF,94122,B08,22,7453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7605331235034, -122.482217550798)",121840081-88 -140400352,E22,14013719,Medical Incident,02/09/2014,02/09/2014,02/09/2014 08:00:38 PM,02/09/2014 08:01:18 PM,02/09/2014 08:02:03 PM,02/09/2014 08:03:03 PM,02/09/2014 08:04:11 PM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Other,02/09/2014 08:35:47 PM,1400 Block of LINCOLN WAY,SF,94122,B08,22,7367,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,5,Inner Sunset,"(37.7655073554414, -122.473477522814)",140400352-E22 -160093206,60,16003786,Medical Incident,01/09/2016,01/09/2016,01/09/2016 08:17:24 PM,01/09/2016 08:19:20 PM,01/09/2016 08:19:33 PM,01/09/2016 08:19:44 PM,01/09/2016 08:31:47 PM,01/09/2016 09:12:51 PM,01/09/2016 09:18:38 PM,Code 2 Transport,01/09/2016 10:01:43 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160093206-60 -132690036,T03,13091233,Medical Incident,09/26/2013,09/25/2013,09/26/2013 02:28:03 AM,09/26/2013 02:28:04 AM,09/26/2013 02:28:18 AM,09/26/2013 02:30:20 AM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/26/2013 02:31:28 AM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,1,1,2,false,Non Life-threatening,1,TRUCK,3,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",132690036-T03 -160360497,63,16014110,Medical Incident,02/05/2016,02/04/2016,02/05/2016 04:50:13 AM,02/05/2016 04:52:21 AM,02/05/2016 04:54:40 AM,02/05/2016 04:54:40 AM,02/05/2016 04:55:04 AM,02/05/2016 05:07:25 AM,02/05/2016 05:12:43 AM,Code 2 Transport,02/05/2016 05:55:15 AM,CESAR CHAVEZ ST/INDIANA ST,San Francisco,94124,B10,25,2641,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7501183410943, -122.390433038827)",160360497-63 -122550392,81,12084463,Traffic Collision,09/11/2012,09/11/2012,09/11/2012 10:06:01 PM,09/11/2012 10:06:43 PM,09/11/2012 10:08:51 PM,09/11/2012 10:09:21 PM,09/11/2012 10:12:58 PM,04/25/2016 01:56:49 PM,04/25/2016 01:56:49 PM,Against Medical Advice,09/11/2012 10:20:08 PM,200 Block of OCEAN AVE,SF,94112,B09,15,8311,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7232033054721, -122.442927356983)",122550392-81 -112870260,KM04,11095200,Traffic Collision,10/14/2011,10/14/2011,10/14/2011 02:31:26 PM,10/14/2011 02:32:42 PM,10/14/2011 02:33:25 PM,10/14/2011 02:36:15 PM,10/14/2011 02:40:55 PM,10/14/2011 02:54:03 PM,10/14/2011 03:25:17 PM,Code 2 Transport,10/14/2011 04:12:42 PM,LAKE ST/PARK PRESIDIO BL,SF,94118,B07,31,7152,3,3,3,false,,1,PRIVATE,5,7,1,Inner Richmond,"(37.7863148047473, -122.472625789135)",112870260-KM04 -110140146,E03,11004620,Medical Incident,01/14/2011,01/14/2011,01/14/2011 12:05:34 PM,01/14/2011 12:07:31 PM,01/14/2011 12:08:07 PM,01/14/2011 12:08:49 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 12:15:04 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110140146-E03 -133420364,E03,13116125,Medical Incident,12/08/2013,12/08/2013,12/08/2013 09:08:04 PM,12/08/2013 09:09:56 PM,12/08/2013 09:13:15 PM,04/25/2016 01:49:22 PM,12/08/2013 09:17:39 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Fire,12/08/2013 09:26:25 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",133420364-E03 -160151506,82,16005965,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:44:40 AM,01/15/2016 11:45:25 AM,01/15/2016 11:45:55 AM,01/15/2016 11:46:19 AM,01/15/2016 11:58:31 AM,01/15/2016 12:16:32 PM,01/15/2016 12:47:23 PM,Code 2 Transport,01/15/2016 01:39:00 PM,100 Block of ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",160151506-82 -160731025,AM08,16028939,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:33:08 AM,03/13/2016 11:34:04 AM,03/13/2016 11:34:26 AM,03/13/2016 11:35:00 AM,03/13/2016 11:41:30 AM,03/13/2016 12:01:17 PM,03/13/2016 12:21:06 PM,Code 2 Transport,03/13/2016 12:46:46 PM,SACRAMENTO ST/MONTGOMERY ST,San Francisco,94104,B01,13,1166,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7937798566723, -122.402957361388)",160731025-AM08 -160120971,62,16004701,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:27:39 AM,01/12/2016 09:29:34 AM,01/12/2016 09:31:10 AM,01/12/2016 09:31:17 AM,01/12/2016 09:39:45 AM,01/12/2016 09:54:41 AM,01/12/2016 10:24:13 AM,Code 2 Transport,01/12/2016 11:00:53 AM,200 Block of OAK PARK DR,San Francisco,94131,B08,20,5367,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7546835865431, -122.45712997517)",160120971-62 -160480088,64,16019181,Medical Incident,02/17/2016,02/16/2016,02/17/2016 12:43:46 AM,02/17/2016 12:43:46 AM,02/17/2016 12:45:42 AM,02/17/2016 12:47:33 AM,02/17/2016 12:57:58 AM,02/17/2016 01:24:52 AM,02/17/2016 01:24:53 AM,Code 2 Transport,02/17/2016 02:03:31 AM,1500 Block of BRODERICK ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7845624883046, -122.441511182007)",160480088-64 -102790049,E01,10088602,Medical Incident,10/06/2010,10/05/2010,10/06/2010 06:51:30 AM,10/06/2010 06:52:29 AM,10/06/2010 06:52:45 AM,10/06/2010 06:54:46 AM,10/06/2010 06:57:35 AM,04/25/2016 02:08:14 PM,04/25/2016 02:08:14 PM,Other,10/06/2010 07:07:44 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",102790049-E01 -160433342,89,16017452,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:10:57 PM,02/12/2016 08:10:57 PM,02/12/2016 08:11:27 PM,02/12/2016 08:11:42 PM,02/12/2016 08:22:05 PM,02/12/2016 08:35:11 PM,02/12/2016 08:43:23 PM,Code 2 Transport,02/12/2016 09:24:41 PM,WOODSIDE AV/IDORA AV,San Francisco,94131,B08,39,8645,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7461061692082, -122.454664096247)",160433342-89 -160112641,67,16004491,Medical Incident,01/11/2016,01/11/2016,01/11/2016 05:27:20 PM,01/11/2016 05:28:43 PM,01/11/2016 05:29:09 PM,01/11/2016 05:31:01 PM,01/11/2016 05:34:03 PM,01/11/2016 05:52:21 PM,01/11/2016 06:12:48 PM,Code 2 Transport,01/11/2016 06:34:09 PM,1500 Block of 33RD AV,San Francisco,94122,B08,18,7542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7582349331221, -122.491870947353)",160112641-67 -110640041,E41,11020959,Structure Fire,03/05/2011,03/04/2011,03/05/2011 02:09:14 AM,03/05/2011 02:09:57 AM,03/05/2011 02:10:20 AM,03/05/2011 02:11:28 AM,03/05/2011 02:13:25 AM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Other,03/05/2011 02:23:41 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",110640041-E41 -132470191,E43,13083335,Medical Incident,09/04/2013,09/04/2013,09/04/2013 12:55:46 PM,09/04/2013 12:57:06 PM,09/04/2013 12:57:22 PM,09/04/2013 12:57:40 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,04/25/2016 01:50:58 PM,200 Block of LOWELL ST,SF,94112,B09,33,6215,2,E,3,false,Potentially Life-Threatening,1,ENGINE,3,9,11,Excelsior,"(37.7095150306277, -122.445417504906)",132470191-E43 -132150223,81,13072643,Medical Incident,08/03/2013,08/03/2013,08/03/2013 02:15:20 PM,08/03/2013 02:17:22 PM,08/03/2013 02:17:50 PM,08/03/2013 02:17:58 PM,08/03/2013 02:29:10 PM,04/25/2016 01:51:29 PM,04/25/2016 01:51:29 PM,Unable to Locate,08/03/2013 02:41:05 PM,100 Block of LARKIN ST,SF,94102,B02,36,1647,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",132150223-81 -123450039,KM15,12115215,Medical Incident,12/10/2012,12/09/2012,12/10/2012 02:52:36 AM,12/10/2012 02:55:11 AM,12/10/2012 02:56:59 AM,12/10/2012 02:59:38 AM,12/10/2012 03:06:06 AM,04/25/2016 01:55:23 PM,04/25/2016 01:55:23 PM,Patient Declined Transport,12/10/2012 04:48:15 AM,1100 Block of BURROWS ST,SF,94134,B09,42,6345,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7263897103659, -122.414778117583)",123450039-KM15 -103210357,55,10103025,Medical Incident,11/17/2010,11/17/2010,11/17/2010 09:38:39 PM,11/17/2010 09:40:44 PM,11/17/2010 09:41:47 PM,11/17/2010 10:09:37 PM,11/17/2010 10:28:54 PM,11/17/2010 10:32:47 PM,11/17/2010 10:39:24 PM,Code 2 Transport,11/17/2010 11:05:23 PM,ELLIS ST/POWELL ST,SF,94102,B03,1,1322,1,1,2,true,,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",103210357-55 -110300071,RC3,11009761,Medical Incident,01/30/2011,01/29/2011,01/30/2011 04:26:09 AM,01/30/2011 04:27:23 AM,01/30/2011 04:27:59 AM,01/30/2011 04:36:52 AM,01/30/2011 04:43:10 AM,04/25/2016 02:06:21 PM,04/25/2016 02:06:21 PM,Other,01/30/2011 04:50:07 AM,100 Block of UTAH ST,SF,94103,B02,29,2351,3,3,3,true,,1,RESCUE CAPTAIN,5,2,10,Mission,"(37.7677826861899, -122.406668803339)",110300071-RC3 -160053249,88,16002147,Traffic Collision,01/05/2016,01/05/2016,01/05/2016 07:51:56 PM,01/05/2016 07:51:56 PM,01/05/2016 07:52:01 PM,01/05/2016 07:52:10 PM,01/05/2016 07:58:09 PM,01/05/2016 08:12:30 PM,01/05/2016 08:34:12 PM,Code 2 Transport,01/05/2016 09:26:45 PM,200 Block of JACKSON ST,San Francisco,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7969058696574, -122.400105396177)",160053249-88 -132540019,55,13085670,Medical Incident,09/11/2013,09/10/2013,09/11/2013 01:17:35 AM,09/11/2013 01:17:35 AM,09/11/2013 01:20:09 AM,09/11/2013 01:20:20 AM,09/11/2013 01:23:53 AM,09/11/2013 01:48:27 AM,09/11/2013 02:01:39 AM,Code 2 Transport,09/11/2013 02:23:27 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",132540019-55 -103450051,94,10110470,Traffic Collision,12/11/2010,12/10/2010,12/11/2010 02:47:38 AM,12/11/2010 02:49:41 AM,12/11/2010 02:52:59 AM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 03:05:16 AM,100 Block of AVENUE C,SF,94130,B02,9,2626,2,3,3,true,,1,MEDIC,8,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",103450051-94 -130300401,E10,13010409,Medical Incident,01/30/2013,01/30/2013,01/30/2013 10:52:40 PM,01/30/2013 10:53:20 PM,01/30/2013 10:54:16 PM,01/30/2013 10:56:10 PM,01/30/2013 10:58:07 PM,04/25/2016 01:54:32 PM,04/25/2016 01:54:32 PM,Other,01/30/2013 11:14:17 PM,0 Block of EMERSON ST,SF,94118,B05,10,4455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7830736887057, -122.448251712623)",130300401-E10 -130790361,E20,13026556,Traffic Collision,03/20/2013,03/20/2013,03/20/2013 09:39:18 PM,03/20/2013 09:39:43 PM,03/20/2013 09:46:05 PM,03/20/2013 09:48:11 PM,03/20/2013 09:52:07 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Other,03/20/2013 10:33:26 PM,VICENTE ST/WEST PORTAL AV,SF,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,8,7,West of Twin Peaks,"(37.7397235005071, -122.466991014067)",130790361-E20 -103590213,E03,10115258,Medical Incident,12/25/2010,12/25/2010,12/25/2010 03:05:31 PM,12/25/2010 03:06:25 PM,12/25/2010 03:07:04 PM,12/25/2010 03:08:05 PM,12/25/2010 03:10:08 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 03:14:32 PM,600 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",103590213-E03 -112350143,E16,11077517,Medical Incident,08/23/2011,08/23/2011,08/23/2011 10:59:15 AM,08/23/2011 10:59:36 AM,08/23/2011 10:59:59 AM,08/23/2011 11:00:27 AM,08/23/2011 11:05:25 AM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 11:21:10 AM,2500 Block of POWELL ST,SF,94133,B01,28,943,3,3,3,true,,1,ENGINE,2,1,3,North Beach,"(37.8081576930541, -122.412496867032)",112350143-E16 -123370128,KM15,12112104,Medical Incident,12/02/2012,12/01/2012,12/02/2012 04:33:09 AM,12/02/2012 04:35:29 AM,12/02/2012 04:36:22 AM,12/02/2012 04:38:53 AM,12/02/2012 04:54:53 AM,12/02/2012 05:10:42 AM,12/02/2012 05:43:18 AM,Code 2 Transport,12/02/2012 06:13:31 AM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",123370128-KM15 -160162859,KM04,16006534,Medical Incident,01/16/2016,01/16/2016,01/16/2016 06:16:59 PM,01/16/2016 06:18:28 PM,01/16/2016 06:18:48 PM,01/16/2016 06:21:11 PM,01/16/2016 06:23:23 PM,01/16/2016 06:50:47 PM,01/16/2016 07:01:17 PM,Code 2 Transport,01/16/2016 07:41:25 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,E,3,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160162859-KM04 -121340009,T01,12044451,Structure Fire,05/13/2012,05/12/2012,05/13/2012 12:25:49 AM,05/13/2012 12:25:50 AM,05/13/2012 12:26:37 AM,05/13/2012 12:28:31 AM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/13/2012 12:30:24 AM,600 Block of MARKET ST,SF,94105,B03,1,2158,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7877867423496, -122.403070886779)",121340009-T01 -160703664,57,16028039,Medical Incident,03/10/2016,03/10/2016,03/10/2016 10:15:46 PM,03/10/2016 10:17:38 PM,03/10/2016 10:18:01 PM,03/10/2016 10:18:08 PM,03/10/2016 10:24:34 PM,03/10/2016 10:50:33 PM,03/10/2016 11:06:16 PM,Code 2 Transport,03/10/2016 11:27:10 PM,MARKET ST/7TH ST,San Francisco,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160703664-57 -131630011,68,13055233,Medical Incident,06/12/2013,06/11/2013,06/12/2013 01:02:29 AM,06/12/2013 01:02:52 AM,06/12/2013 01:03:33 AM,06/12/2013 01:05:39 AM,06/12/2013 01:08:30 AM,04/25/2016 01:52:20 PM,04/25/2016 01:52:20 PM,No Merit,06/12/2013 01:26:07 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Tenderloin,"(37.7865845259792, -122.419948853352)",131630011-68 -160062062,KM13,16002435,Medical Incident,01/06/2016,01/06/2016,01/06/2016 02:14:59 PM,01/06/2016 02:16:15 PM,01/06/2016 02:18:57 PM,01/06/2016 02:19:37 PM,01/06/2016 02:27:23 PM,01/06/2016 02:37:06 PM,01/06/2016 02:55:12 PM,Code 2 Transport,01/06/2016 03:38:12 PM,17TH ST/CHURCH ST,San Francisco,94114,B02,6,5251,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7628898668395, -122.428508749574)",160062062-KM13 -160803423,70,16031957,Medical Incident,03/20/2016,03/20/2016,03/20/2016 09:31:45 PM,03/20/2016 09:32:25 PM,03/20/2016 09:32:58 PM,03/20/2016 09:33:07 PM,03/20/2016 09:38:58 PM,03/20/2016 09:54:02 PM,03/20/2016 10:04:18 PM,Code 3 Transport,03/20/2016 10:52:40 PM,300 Block of SILVER AVE,San Francisco,94112,B09,32,6114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",160803423-70 -110650215,54,11021480,Medical Incident,03/06/2011,03/06/2011,03/06/2011 01:47:11 PM,03/06/2011 01:47:30 PM,03/06/2011 01:47:44 PM,03/06/2011 01:49:01 PM,03/06/2011 01:52:02 PM,03/06/2011 02:05:08 PM,03/06/2011 02:19:08 PM,Code 2 Transport,03/06/2011 02:38:29 PM,FRANCISCO ST/RICHARDSON AV,SF,94123,B04,16,4325,3,3,3,true,,1,MEDIC,2,4,2,Marina,"(37.8003858224919, -122.447130573329)",110650215-54 -121150029,66,12038025,Medical Incident,04/24/2012,04/23/2012,04/24/2012 03:45:48 AM,04/24/2012 03:48:29 AM,04/24/2012 03:50:16 AM,04/24/2012 03:50:31 AM,04/24/2012 04:07:40 AM,04/24/2012 04:15:43 AM,04/24/2012 04:31:04 AM,Code 2 Transport,04/24/2012 05:00:27 AM,2600 Block of 47TH AVE,SF,94116,B08,23,7733,1,1,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7366045798993, -122.50526050111)",121150029-66 -111960170,T14,11064687,Alarms,07/15/2011,07/15/2011,07/15/2011 01:15:35 PM,07/15/2011 01:17:01 PM,07/15/2011 01:17:06 PM,07/15/2011 01:17:54 PM,07/15/2011 01:21:06 PM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 01:27:37 PM,100 Block of 26TH AVE,SF,94121,B07,14,7217,3,3,3,false,,1,TRUCK,2,7,2,Seacliff,"(37.7866330014173, -122.486212276615)",111960170-T14 -131720210,78,13058409,Medical Incident,06/21/2013,06/21/2013,06/21/2013 03:36:37 PM,06/21/2013 03:39:32 PM,06/21/2013 03:40:29 PM,06/21/2013 03:40:45 PM,06/21/2013 03:57:07 PM,06/21/2013 03:46:50 PM,06/21/2013 04:33:44 PM,Code 2 Transport,06/21/2013 05:15:04 PM,500 Block of OAK PARK DR,SF,94131,B08,20,5375,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7559153243809, -122.46048236345)",131720210-78 -130740156,KM09,13024650,Medical Incident,03/15/2013,03/15/2013,03/15/2013 12:04:41 PM,03/15/2013 12:05:05 PM,03/15/2013 12:05:57 PM,03/15/2013 12:06:36 PM,03/15/2013 12:18:14 PM,03/15/2013 12:39:15 PM,03/15/2013 12:55:34 PM,Code 2 Transport,03/15/2013 01:25:44 PM,400 Block of 26TH AVE,SF,94121,B07,14,7221,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7810031903924, -122.485945544565)",130740156-KM09 -112520062,E01,11083013,Medical Incident,09/09/2011,09/08/2011,09/09/2011 07:17:04 AM,09/09/2011 07:19:10 AM,09/09/2011 07:19:19 AM,09/09/2011 07:19:59 AM,09/09/2011 07:20:03 AM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/09/2011 07:36:32 AM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",112520062-E01 -120200232,E03,12006719,Alarms,01/20/2012,01/20/2012,01/20/2012 03:01:44 PM,01/20/2012 03:02:52 PM,01/20/2012 03:03:02 PM,01/20/2012 03:03:39 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Other,01/20/2012 03:03:58 PM,1100 Block of ELLIS ST,SF,94109,B02,5,3322,3,3,3,true,Alarm,1,ENGINE,4,2,5,Western Addition,"(37.7831387146973, -122.425928739913)",120200232-E03 -140470293,E03,14016111,Medical Incident,02/16/2014,02/16/2014,02/16/2014 06:49:05 PM,02/16/2014 06:50:43 PM,02/16/2014 06:51:44 PM,02/16/2014 06:53:31 PM,02/16/2014 06:55:57 PM,04/25/2016 01:48:10 PM,04/25/2016 01:48:10 PM,Other,02/16/2014 06:58:17 PM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",140470293-E03 -123530211,KM02,12118118,Medical Incident,12/18/2012,12/18/2012,12/18/2012 01:50:50 PM,12/18/2012 01:51:11 PM,12/18/2012 01:51:19 PM,12/18/2012 01:52:01 PM,12/18/2012 01:54:06 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Patient Declined Transport,12/18/2012 02:39:11 PM,700 Block of MARKET ST,SF,94103,B03,1,2211,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7871160984672, -122.403919148357)",123530211-KM02 -160752966,66,16029816,Medical Incident,03/15/2016,03/15/2016,03/15/2016 05:36:32 PM,03/15/2016 05:38:55 PM,03/15/2016 05:40:46 PM,03/15/2016 05:40:57 PM,03/15/2016 06:02:12 PM,03/15/2016 06:42:48 PM,03/15/2016 07:09:46 PM,Code 2 Transport,03/15/2016 07:51:25 PM,"CALL BOX: ELLSWORTH ST/ALEMANY SB BL,SF",San Francisco,94110,B06,32,5645,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7322713620509, -122.418897144818)",160752966-66 -160620220,62,16024545,Medical Incident,03/02/2016,03/01/2016,03/02/2016 02:26:39 AM,03/02/2016 02:28:16 AM,03/02/2016 02:28:51 AM,03/02/2016 02:29:10 AM,03/02/2016 02:40:35 AM,03/02/2016 03:07:48 AM,03/02/2016 03:30:55 AM,Code 2 Transport,03/02/2016 03:56:50 AM,1000 Block of LE CONTE AVE,San Francisco,94124,B10,44,6575,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",160620220-62 -160821514,77,16032535,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:50:29 AM,03/22/2016 11:53:35 AM,03/22/2016 11:54:13 AM,03/22/2016 11:56:59 AM,03/22/2016 12:03:55 PM,03/22/2016 12:26:03 PM,03/22/2016 12:47:07 PM,Code 2 Transport,03/22/2016 01:20:17 PM,1600 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7352738344938, -122.391413470729)",160821514-77 -132270172,RC3,13076598,Medical Incident,08/15/2013,08/15/2013,08/15/2013 12:33:28 PM,08/15/2013 12:35:33 PM,08/15/2013 12:36:09 PM,08/15/2013 12:36:18 PM,08/15/2013 12:40:47 PM,04/25/2016 01:51:17 PM,04/25/2016 01:51:17 PM,Other,08/15/2013 12:45:47 PM,0 Block of GROVE ST,SF,94102,B02,36,381,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",132270172-RC3 -160420128,85,16016697,Medical Incident,02/11/2016,02/10/2016,02/11/2016 01:07:31 AM,02/11/2016 01:09:02 AM,02/11/2016 01:09:33 AM,02/11/2016 01:09:44 AM,02/11/2016 01:14:03 AM,02/11/2016 01:50:23 AM,02/11/2016 01:55:23 AM,Code 2 Transport,02/11/2016 02:19:44 AM,700 Block of FULTON ST,San Francisco,94102,B05,5,3521,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",160420128-85 -121570286,E03,12052037,Medical Incident,06/05/2012,06/05/2012,06/05/2012 05:44:56 PM,06/05/2012 05:45:23 PM,06/05/2012 05:45:46 PM,06/05/2012 05:46:00 PM,06/05/2012 05:48:35 PM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,Other,06/05/2012 06:01:21 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",121570286-E03 -133380298,67,13114649,Medical Incident,12/04/2013,12/04/2013,12/04/2013 06:46:28 PM,12/04/2013 06:48:37 PM,12/04/2013 06:49:15 PM,12/04/2013 06:49:29 PM,12/04/2013 06:58:44 PM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 07:05:49 PM,1300 Block of STEVENSON ST,SF,94103,B02,36,5126,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.770783953905, -122.421596103834)",133380298-67 -123560288,E07,12119237,Traffic Collision,12/21/2012,12/21/2012,12/21/2012 05:28:39 PM,12/21/2012 05:28:42 PM,12/21/2012 05:29:20 PM,12/21/2012 05:30:06 PM,12/21/2012 05:32:14 PM,04/25/2016 01:55:12 PM,04/25/2016 01:55:12 PM,Other,12/21/2012 05:53:05 PM,24TH ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7523727894276, -122.416265511485)",123560288-E07 -133600207,83,13122372,Medical Incident,12/26/2013,12/26/2013,12/26/2013 02:41:34 PM,12/26/2013 02:42:54 PM,12/26/2013 02:43:17 PM,12/26/2013 02:43:29 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 02:44:18 PM,1900 Block of 17TH AVE,SF,94116,B08,40,7374,3,3,3,true,Non Life-threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7515410594631, -122.474071150903)",133600207-83 -111610242,AM12,11053241,Medical Incident,06/10/2011,06/10/2011,06/10/2011 05:05:51 PM,06/10/2011 05:06:46 PM,06/10/2011 05:07:47 PM,06/10/2011 05:08:17 PM,06/10/2011 05:25:39 PM,06/10/2011 05:31:23 PM,06/10/2011 05:57:04 PM,Code 2 Transport,06/10/2011 06:31:07 PM,200 Block of 4TH ST,SF,94103,B03,1,2214,3,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.782817231709, -122.402251213701)",111610242-AM12 -160153822,75,16006182,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:52:37 PM,01/15/2016 09:52:37 PM,01/15/2016 09:53:10 PM,01/15/2016 09:53:23 PM,01/15/2016 10:01:19 PM,01/15/2016 10:21:24 PM,01/15/2016 10:32:28 PM,Code 2 Transport,01/15/2016 10:11:06 PM,4000 Block of 19TH ST,San Francisco,94114,B06,6,5437,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7592679734781, -122.43429385414)",160153822-75 -120300172,85,12009986,Medical Incident,01/30/2012,01/30/2012,01/30/2012 01:20:51 PM,01/30/2012 01:22:31 PM,01/30/2012 01:22:42 PM,01/30/2012 01:23:03 PM,01/30/2012 01:25:58 PM,01/30/2012 01:47:42 PM,01/30/2012 02:04:52 PM,Code 2 Transport,01/30/2012 02:29:04 PM,CENTRAL AV/FELL ST,SF,94117,B05,21,4356,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Lone Mountain/USF,"(37.7732120673067, -122.444216182973)",120300172-85 -160500942,AM06,16020013,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:20:12 AM,02/19/2016 09:21:30 AM,02/19/2016 09:21:58 AM,02/19/2016 09:22:55 AM,02/19/2016 09:29:01 AM,02/19/2016 09:49:54 AM,02/19/2016 10:17:59 AM,Code 2 Transport,02/19/2016 10:40:22 AM,1000 Block of FITZGERALD AVE,San Francisco,94124,B10,17,6613,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7191956969734, -122.388416108229)",160500942-AM06 -160330839,75,16012891,Medical Incident,02/02/2016,02/02/2016,02/02/2016 08:50:07 AM,02/02/2016 08:50:07 AM,02/02/2016 08:51:40 AM,02/02/2016 08:51:49 AM,02/02/2016 09:06:57 AM,02/02/2016 09:18:55 AM,02/02/2016 09:41:07 AM,Code 2 Transport,02/02/2016 10:06:50 AM,100 Block of BLK HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7816524457472, -122.415083177799)",160330839-75 -130380274,93,13013065,Medical Incident,02/07/2013,02/07/2013,02/07/2013 05:56:32 PM,02/07/2013 05:57:19 PM,02/07/2013 05:57:29 PM,02/07/2013 05:57:41 PM,02/07/2013 06:09:30 PM,04/25/2016 01:54:24 PM,04/25/2016 01:54:24 PM,Against Medical Advice,02/07/2013 06:47:13 PM,1600 Block of LANE ST,SF,94124,B10,17,6535,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7319445303791, -122.389826221462)",130380274-93 -110980079,T06,11032417,Citizen Assist / Service Call,04/08/2011,04/07/2011,04/08/2011 07:04:08 AM,04/08/2011 07:05:34 AM,04/08/2011 07:05:49 AM,04/08/2011 07:08:36 AM,04/08/2011 07:14:50 AM,04/25/2016 02:05:13 PM,04/25/2016 02:05:13 PM,Fire,04/08/2011 07:22:02 AM,300 Block of DOLORES ST,SF,94110,B02,6,5251,3,3,3,false,,1,TRUCK,1,2,8,Mission,"(37.7635158382169, -122.426118705944)",110980079-T06 -130720359,RS2,13024145,Structure Fire,03/13/2013,03/13/2013,03/13/2013 08:17:55 PM,03/13/2013 08:19:50 PM,03/13/2013 08:25:36 PM,03/13/2013 08:26:42 PM,03/13/2013 08:28:22 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 08:42:04 PM,2700 Block of 21ST ST,SF,94110,B10,7,2553,3,3,3,false,Fire,1,RESCUE SQUAD,4,6,9,Mission,"(37.7576778102612, -122.409125012393)",130720359-RS2 -160900315,71,16035565,Medical Incident,03/30/2016,03/29/2016,03/30/2016 03:24:23 AM,03/30/2016 03:25:36 AM,03/30/2016 03:25:54 AM,03/30/2016 03:26:03 AM,03/30/2016 03:30:55 AM,03/30/2016 03:59:28 AM,03/30/2016 04:13:12 AM,Code 2 Transport,03/30/2016 04:28:32 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160900315-71 -111370296,E16,11045666,Medical Incident,05/17/2011,05/17/2011,05/17/2011 06:56:20 PM,05/17/2011 06:58:05 PM,05/17/2011 06:58:13 PM,05/17/2011 06:59:28 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 07:02:36 PM,300 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8057759671113, -122.412787887195)",111370296-E16 -140460136,KM11,14015621,Medical Incident,02/15/2014,02/15/2014,02/15/2014 10:25:17 AM,02/15/2014 10:27:29 AM,02/15/2014 10:29:17 AM,02/15/2014 10:29:48 AM,02/15/2014 10:43:37 AM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Patient Declined Transport,02/15/2014 11:16:59 AM,400 Block of OTSEGO AVE,SF,94112,B09,15,8277,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Outer Mission,"(37.7221802524183, -122.441844228674)",140460136-KM11 -131430346,87,13048636,Medical Incident,05/23/2013,05/23/2013,05/23/2013 08:40:35 PM,05/23/2013 08:42:15 PM,05/23/2013 08:42:34 PM,05/23/2013 08:44:28 PM,05/23/2013 08:56:02 PM,05/23/2013 09:24:12 PM,05/23/2013 09:49:46 PM,Code 2 Transport,05/23/2013 10:12:07 PM,1000 Block of CHESTNUT ST,SF,94109,B01,28,1613,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8028649959918, -122.420650668279)",131430346-87 -160661166,67,16026352,Medical Incident,03/06/2016,03/06/2016,03/06/2016 11:12:46 AM,03/06/2016 11:12:46 AM,03/06/2016 11:13:01 AM,03/06/2016 11:13:34 AM,03/06/2016 11:14:04 AM,03/06/2016 11:39:38 AM,03/06/2016 11:59:12 AM,Code 3 Transport,03/06/2016 12:37:07 PM,800 Block of CLAY ST,San Francisco,94108,B01,13,1313,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Chinatown,"(37.7941136505366, -122.407046655058)",160661166-67 -133280124,RC2,13111417,Medical Incident,11/24/2013,11/24/2013,11/24/2013 10:00:52 AM,11/24/2013 10:01:18 AM,11/24/2013 10:04:53 AM,11/24/2013 10:05:56 AM,11/24/2013 10:09:30 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 10:27:56 AM,700 Block of 29TH AVE,SF,94121,B07,14,7225,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7751770865319, -122.488604397218)",133280124-RC2 -113380260,85,11112078,Medical Incident,12/04/2011,12/04/2011,12/04/2011 03:50:51 PM,12/04/2011 03:52:18 PM,12/04/2011 03:55:18 PM,04/25/2016 02:01:19 PM,12/04/2011 04:05:07 PM,12/04/2011 04:25:30 PM,12/04/2011 04:34:41 PM,Code 2 Transport,12/04/2011 05:23:44 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,2,2,true,,1,MEDIC,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",113380260-85 -133570047,81,13121259,Medical Incident,12/23/2013,12/22/2013,12/23/2013 06:08:39 AM,12/23/2013 06:10:36 AM,12/23/2013 06:10:57 AM,12/23/2013 06:11:15 AM,12/23/2013 06:15:42 AM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,No Merit,12/23/2013 06:28:28 AM,900 Block of MISSOURI ST,SF,94107,B10,37,2566,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7552453099076, -122.39565974671)",133570047-81 -120780011,E29,12025717,Medical Incident,03/18/2012,03/17/2012,03/18/2012 12:25:21 AM,03/18/2012 12:26:08 AM,03/18/2012 12:26:17 AM,03/18/2012 12:27:15 AM,03/18/2012 12:29:50 AM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/18/2012 01:29:00 AM,400 Block of 9TH ST,SF,94103,B03,29,2333,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7721679781687, -122.409530896113)",120780011-E29 -130800217,E36,13026767,Medical Incident,03/21/2013,03/21/2013,03/21/2013 01:37:18 PM,03/21/2013 01:40:02 PM,03/21/2013 01:40:12 PM,03/21/2013 01:41:11 PM,03/21/2013 01:43:03 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 01:53:09 PM,200 Block of HAIGHT ST,SF,94102,B02,36,3415,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",130800217-E36 -110390321,E19,11013051,Alarms,02/08/2011,02/08/2011,02/08/2011 09:04:37 PM,02/08/2011 09:06:18 PM,02/08/2011 09:06:55 PM,02/08/2011 09:08:10 PM,02/08/2011 09:10:50 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 09:36:09 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7201245877973, -122.483106168758)",110390321-E19 -160711249,83,16028189,Medical Incident,03/11/2016,03/11/2016,03/11/2016 10:51:36 AM,03/11/2016 10:53:17 AM,03/11/2016 10:53:31 AM,03/11/2016 10:54:46 AM,03/11/2016 11:03:12 AM,03/11/2016 11:30:52 AM,03/11/2016 11:51:36 AM,Code 3 Transport,03/11/2016 01:09:57 PM,2100 Block of 14TH AVE,San Francisco,94116,B08,40,7362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7479423660405, -122.470637003929)",160711249-83 -130910228,E18,13030481,Medical Incident,04/01/2013,04/01/2013,04/01/2013 02:48:46 PM,04/01/2013 02:49:46 PM,04/01/2013 02:55:40 PM,04/25/2016 01:53:32 PM,04/01/2013 02:55:31 PM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 03:12:10 PM,2500 Block of NORIEGA ST,SF,94122,B08,18,7543,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7535481791413, -122.490934052988)",130910228-E18 -102410047,87,10075913,Medical Incident,08/29/2010,08/28/2010,08/29/2010 03:22:13 AM,08/29/2010 03:22:55 AM,08/29/2010 03:24:09 AM,08/29/2010 03:31:18 AM,08/29/2010 03:36:50 AM,08/29/2010 03:52:46 AM,08/29/2010 04:12:49 AM,Code 2 Transport,08/29/2010 04:29:17 AM,200 Block of CHURCH ST,SF,94114,B02,6,5213,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.766821331685, -122.428814858006)",102410047-87 -112440187,RS1,11080447,High Angle Rescue,09/01/2011,09/01/2011,09/01/2011 01:10:45 PM,09/01/2011 01:12:38 PM,09/01/2011 01:13:22 PM,09/01/2011 01:14:29 PM,09/01/2011 01:17:44 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 02:05:23 PM,200 Block of 3RD ST,SF,94105,B03,1,2177,3,3,3,false,,1,RESCUE SQUAD,3,3,6,Financial District/South Beach,"(37.7846604121968, -122.39991472916)",112440187-RS1 -130970157,E41,13032512,Structure Fire,04/07/2013,04/07/2013,04/07/2013 11:26:12 AM,04/07/2013 11:26:30 AM,04/07/2013 11:26:45 AM,04/07/2013 11:28:01 AM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,04/25/2016 01:53:26 PM,Other,04/07/2013 11:33:52 AM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,11,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",130970157-E41 -113210327,E03,11106736,Alarms,11/17/2011,11/17/2011,11/17/2011 06:55:34 PM,11/17/2011 06:56:51 PM,11/17/2011 06:57:08 PM,11/17/2011 06:58:08 PM,11/17/2011 06:59:53 PM,04/25/2016 02:01:35 PM,04/25/2016 02:01:35 PM,Other,11/17/2011 07:05:18 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",113210327-E03 -113190287,E38,11106024,Medical Incident,11/15/2011,11/15/2011,11/15/2011 04:38:19 PM,11/15/2011 04:39:48 PM,11/15/2011 04:43:08 PM,11/15/2011 05:05:39 PM,11/15/2011 05:07:29 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 06:00:46 PM,1600 Block of VAN NESS AVE,SF,94109,B04,38,3155,1,1,2,false,,1,ENGINE,2,4,3,Nob Hill,"(37.7908533668522, -122.422251573509)",113190287-E38 -113060361,T03,11101797,Medical Incident,11/02/2011,11/02/2011,11/02/2011 08:25:57 PM,11/02/2011 08:26:53 PM,11/02/2011 08:27:07 PM,11/02/2011 08:28:28 PM,11/02/2011 08:29:57 PM,04/25/2016 02:01:50 PM,04/25/2016 02:01:50 PM,Other,11/02/2011 08:41:31 PM,1100 Block of GEARY BLVD,SF,94109,B04,3,3222,3,3,3,false,,1,TRUCK,1,4,5,Western Addition,"(37.7855297633293, -122.422199701995)",113060361-T03 -131210147,E02,13040615,Medical Incident,05/01/2013,05/01/2013,05/01/2013 10:42:41 AM,05/01/2013 10:43:36 AM,05/01/2013 10:44:02 AM,05/01/2013 10:47:14 AM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,05/01/2013 10:47:28 AM,2300 Block of CALIFORNIA ST,SF,94115,B04,38,3511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,4,2,Pacific Heights,"(37.7891171836076, -122.432618741613)",131210147-E02 -102530393,KM15,10080111,Medical Incident,09/10/2010,09/10/2010,09/10/2010 10:34:07 PM,09/10/2010 10:35:11 PM,09/10/2010 10:35:23 PM,09/10/2010 10:36:19 PM,04/25/2016 02:08:39 PM,09/10/2010 10:50:17 PM,09/10/2010 10:57:41 PM,Code 2 Transport,09/10/2010 11:20:03 PM,CYRIL MAGNIN ST/EDDY ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",102530393-KM15 -133600362,77,13122515,Medical Incident,12/26/2013,12/26/2013,12/26/2013 11:50:29 PM,12/26/2013 11:51:27 PM,12/26/2013 11:52:18 PM,12/26/2013 11:52:53 PM,12/27/2013 12:07:26 AM,12/27/2013 12:26:09 AM,12/27/2013 12:31:20 AM,Code 2 Transport,12/27/2013 01:04:28 AM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",133600362-77 -133410065,85,13115518,Medical Incident,12/07/2013,12/06/2013,12/07/2013 04:26:26 AM,12/07/2013 04:26:47 AM,12/07/2013 04:27:09 AM,12/07/2013 04:27:24 AM,12/07/2013 04:34:18 AM,12/07/2013 05:01:12 AM,12/07/2013 05:13:33 AM,Code 2 Transport,12/07/2013 05:30:22 AM,700 Block of FRONT ST,SF,94111,B01,13,1143,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7982854223177, -122.399713028387)",133410065-85 -112270144,T15,11074987,Structure Fire,08/15/2011,08/15/2011,08/15/2011 10:49:08 AM,08/15/2011 10:49:08 AM,08/15/2011 10:49:48 AM,08/15/2011 10:50:17 AM,08/15/2011 10:55:21 AM,04/25/2016 02:03:09 PM,04/25/2016 02:03:09 PM,Other,08/15/2011 11:08:16 AM,300 Block of LA GRANDE AVE,SF,94112,B09,43,616,3,3,3,false,,1,TRUCK,3,9,11,McLaren Park,"(37.7197515959451, -122.425588438069)",112270144-T15 -132530376,E03,13085653,Medical Incident,09/10/2013,09/10/2013,09/10/2013 11:47:20 PM,09/10/2013 11:48:02 PM,09/10/2013 11:49:03 PM,09/10/2013 11:50:37 PM,09/10/2013 11:52:22 PM,09/11/2013 12:03:45 AM,09/11/2013 12:09:08 AM,Other,09/11/2013 12:09:13 AM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",132530376-E03 -140240335,83,14008302,Structure Fire,01/24/2014,01/24/2014,01/24/2014 05:50:18 PM,01/24/2014 05:52:04 PM,01/24/2014 05:52:44 PM,01/24/2014 05:52:56 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,04/25/2016 01:48:33 PM,Other,01/24/2014 05:59:55 PM,300 Block of PACIFIC AVE,SF,94111,B01,13,1212,3,3,3,true,Alarm,1,MEDIC,10,1,3,Financial District/South Beach,"(37.7976337824624, -122.401462993538)",140240335-83 -140940353,67,14031747,Medical Incident,04/04/2014,04/04/2014,04/04/2014 09:19:26 PM,04/04/2014 09:22:21 PM,04/04/2014 09:23:28 PM,04/04/2014 09:24:04 PM,04/04/2014 09:40:12 PM,04/04/2014 09:50:38 PM,04/04/2014 10:04:34 PM,Code 2 Transport,04/04/2014 10:47:08 PM,1200 Block of 2ND AVE,SAN FRANCISCO,94122,B05,12,7324,,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Inner Sunset,"(37.7648320538136, -122.458916882122)",140940353-67 -160441983,63,16017720,Traffic Collision,02/13/2016,02/13/2016,02/13/2016 02:38:33 PM,02/13/2016 02:38:33 PM,02/13/2016 02:38:47 PM,02/13/2016 02:38:58 PM,02/13/2016 02:48:01 PM,02/13/2016 02:56:59 PM,02/13/2016 03:23:38 PM,Code 2 Transport,02/13/2016 03:55:53 PM,15TH ST/CASTRO ST,San Francisco,94114,B05,6,5232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,5,8,Castro/Upper Market,"(37.765727474373, -122.435471951538)",160441983-63 -160103677,71,16004226,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:48:40 PM,01/10/2016 11:51:16 PM,01/10/2016 11:51:40 PM,01/10/2016 11:51:47 PM,01/11/2016 12:08:25 AM,01/11/2016 12:41:58 AM,01/11/2016 12:41:58 AM,Code 2 Transport,01/11/2016 01:30:05 AM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160103677-71 -160153733,AM24,16006171,Medical Incident,01/15/2016,01/15/2016,01/15/2016 09:21:01 PM,01/15/2016 09:22:11 PM,01/15/2016 09:22:34 PM,01/15/2016 09:23:22 PM,01/15/2016 09:27:10 PM,01/15/2016 09:48:16 PM,01/15/2016 09:59:46 PM,Code 2 Transport,01/15/2016 10:40:24 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160153733-AM24 -111070197,83,11035408,Medical Incident,04/17/2011,04/17/2011,04/17/2011 01:56:23 PM,04/17/2011 01:57:36 PM,04/17/2011 01:58:14 PM,04/17/2011 01:58:20 PM,04/17/2011 02:03:25 PM,04/17/2011 02:17:22 PM,04/17/2011 02:23:21 PM,Code 3 Transport,04/17/2011 03:04:09 PM,2100 Block of MARKET ST,SF,94114,B02,6,5213,3,3,3,true,,1,MEDIC,2,2,8,Castro/Upper Market,"(37.7666672196975, -122.429769928039)",111070197-83 -122350036,B02,12077755,Alarms,08/22/2012,08/21/2012,08/22/2012 04:00:26 AM,08/22/2012 04:02:09 AM,08/22/2012 04:02:32 AM,08/22/2012 04:04:31 AM,08/22/2012 04:10:00 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Fire,08/22/2012 04:10:05 AM,100 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,false,Alarm,1,CHIEF,3,5,5,Haight Ashbury,"(37.7708835966401, -122.443810948891)",122350036-B02 -131690298,E13,13057466,Traffic Collision,06/18/2013,06/18/2013,06/18/2013 04:50:15 PM,06/18/2013 04:50:47 PM,06/18/2013 04:50:57 PM,06/18/2013 04:51:59 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 04:54:10 PM,MARKET ST/3RD ST,SF,94103,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",131690298-E13 -110910174,E03,11030133,Medical Incident,04/01/2011,04/01/2011,04/01/2011 12:48:18 PM,04/01/2011 12:48:51 PM,04/01/2011 12:49:48 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,04/25/2016 02:05:20 PM,Other,04/01/2011 01:13:31 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",110910174-E03 -130580414,E01,13019647,Medical Incident,02/27/2013,02/27/2013,02/27/2013 11:12:15 PM,02/27/2013 11:12:51 PM,02/27/2013 11:13:11 PM,02/27/2013 11:14:36 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,04/25/2016 01:54:05 PM,Other,04/25/2016 01:54:05 PM,0 Block of CHURCH ST,SF,94114,B03,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",130580414-E01 -140380268,E43,14012896,Alarms,02/07/2014,02/07/2014,02/07/2014 04:10:39 PM,02/07/2014 04:12:02 PM,02/07/2014 04:12:50 PM,02/07/2014 04:14:15 PM,02/07/2014 04:18:11 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 04:24:37 PM,500 Block of RAYMOND AVE,SF,94134,B09,44,629,3,3,3,true,Alarm,1,ENGINE,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",140380268-E43 -160452900,KM11,16018251,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:27:33 PM,02/14/2016 07:28:31 PM,02/14/2016 07:29:01 PM,02/14/2016 07:29:23 PM,02/14/2016 07:33:01 PM,02/14/2016 07:53:56 PM,02/14/2016 08:16:31 PM,Code 2 Transport,02/14/2016 08:27:36 PM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160452900-KM11 -160332255,79,16013045,Medical Incident,02/02/2016,02/02/2016,02/02/2016 03:38:54 PM,02/02/2016 03:40:34 PM,02/02/2016 03:41:00 PM,02/02/2016 03:44:44 PM,02/02/2016 03:44:46 PM,02/02/2016 03:57:26 PM,02/02/2016 04:16:03 PM,Code 2 Transport,02/02/2016 04:29:21 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160332255-79 -131350128,E09,13045510,Administrative,05/15/2013,05/15/2013,05/15/2013 11:12:36 AM,05/15/2013 11:12:40 AM,05/15/2013 11:12:54 AM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,04/25/2016 01:52:47 PM,Other,05/15/2013 11:16:45 AM,2200 Block of JERROLD AVE,SF,94124,B10,9,6411,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",131350128-E09 -140930276,E01,14031349,Medical Incident,04/03/2014,04/03/2014,04/03/2014 04:39:52 PM,04/03/2014 04:41:48 PM,04/03/2014 04:51:23 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,Code 2 Transport,04/03/2014 04:54:37 PM,1000 Block of POLK ST,SAN FRANCISCO,94109,B04,3,3121,,2,2,true,Non Life-threatening,1,ENGINE,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140930276-E01 -160722916,70,16028730,Medical Incident,03/12/2016,03/12/2016,03/12/2016 07:16:53 PM,03/12/2016 07:19:06 PM,03/12/2016 07:19:23 PM,03/12/2016 07:19:30 PM,03/12/2016 07:23:59 PM,03/12/2016 07:41:57 PM,03/12/2016 08:00:23 PM,Code 2 Transport,03/12/2016 08:16:32 PM,VALENCIA ST/16TH ST,San Francisco,94103,B02,6,5226,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160722916-70 -120380096,E13,12012618,Medical Incident,02/07/2012,02/07/2012,02/07/2012 08:55:24 AM,02/07/2012 08:55:53 AM,02/07/2012 08:56:12 AM,02/07/2012 09:00:23 AM,02/07/2012 09:04:46 AM,04/25/2016 02:00:15 PM,04/25/2016 02:00:15 PM,Other,02/07/2012 09:14:19 AM,100 Block of STEVENSON ST,SF,94105,B03,1,2211,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7873597322507, -122.402708289992)",120380096-E13 -160383065,54,16015358,Medical Incident,02/07/2016,02/07/2016,02/07/2016 07:35:14 PM,02/07/2016 07:36:18 PM,02/07/2016 07:36:33 PM,02/07/2016 07:36:43 PM,02/07/2016 07:42:53 PM,02/07/2016 08:02:59 PM,02/07/2016 08:11:55 PM,Code 3 Transport,02/07/2016 08:56:53 PM,300 Block of SERRANO DR,San Francisco,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",160383065-54 -160350221,71,16013655,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:54:16 AM,02/04/2016 01:54:16 AM,02/04/2016 01:54:36 AM,02/04/2016 01:54:58 AM,02/04/2016 01:57:54 AM,02/04/2016 02:22:48 AM,02/04/2016 02:25:16 AM,Code 2 Transport,02/04/2016 03:14:10 AM,SUTTER ST/TAYLOR ST,San Francisco,94102,B01,3,1412,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7888075435186, -122.411885658758)",160350221-71 -123590129,E01,12120134,Alarms,12/24/2012,12/24/2012,12/24/2012 10:41:42 AM,12/24/2012 10:43:13 AM,12/24/2012 10:43:19 AM,12/24/2012 10:45:38 AM,12/24/2012 10:48:05 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 10:54:05 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,Alarm,1,ENGINE,2,3,6,South of Market,"(37.7786769584105, -122.408601057595)",123590129-E01 -133220190,87,13109343,Medical Incident,11/18/2013,11/18/2013,11/18/2013 01:58:43 PM,11/18/2013 02:00:44 PM,11/18/2013 02:00:55 PM,11/18/2013 02:01:01 PM,11/18/2013 02:05:44 PM,11/18/2013 02:24:22 PM,11/18/2013 02:33:43 PM,Code 2 Transport,11/18/2013 03:05:09 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",133220190-87 -133350226,E22,13113611,Structure Fire,12/01/2013,12/01/2013,12/01/2013 03:31:13 PM,12/01/2013 03:32:09 PM,12/01/2013 03:32:28 PM,12/01/2013 03:33:29 PM,12/01/2013 03:37:01 PM,04/25/2016 01:49:30 PM,04/25/2016 01:49:30 PM,Other,12/01/2013 03:50:10 PM,1500 Block of 33RD AVE,SF,94122,B08,18,7542,3,3,3,true,Alarm,1,ENGINE,4,8,4,Sunset/Parkside,"(37.7582410131545, -122.491732792443)",133350226-E22 -131690111,82,13057318,Medical Incident,06/18/2013,06/18/2013,06/18/2013 09:05:21 AM,06/18/2013 09:09:56 AM,06/18/2013 09:10:17 AM,06/18/2013 09:10:36 AM,06/18/2013 09:16:59 AM,06/18/2013 09:43:45 AM,06/18/2013 10:05:51 AM,Code 2 Transport,06/18/2013 10:28:46 AM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7830416107165, -122.415856533326)",131690111-82 -111920351,D2,11063519,Structure Fire,07/11/2011,07/11/2011,07/11/2011 07:55:21 PM,07/11/2011 07:56:01 PM,07/11/2011 07:56:24 PM,07/11/2011 07:57:05 PM,07/11/2011 07:59:40 PM,04/25/2016 02:03:43 PM,04/25/2016 02:03:43 PM,Other,07/11/2011 08:00:43 PM,2700 Block of BUSH ST,SF,94115,B04,10,4234,3,3,3,false,,1,CHIEF,4,4,2,Pacific Heights,"(37.7859173973794, -122.442559256485)",111920351-D2 -160490961,AM02,16019665,Medical Incident,02/18/2016,02/18/2016,02/18/2016 09:33:51 AM,02/18/2016 09:33:51 AM,02/18/2016 09:34:00 AM,02/18/2016 09:34:51 AM,02/18/2016 09:40:51 AM,02/18/2016 09:50:45 AM,02/18/2016 10:10:55 AM,Code 2 Transport,02/18/2016 10:43:05 AM,2ND ST/MINNA ST,San Francisco,94105,B03,1,2145,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.787579277349, -122.399255051067)",160490961-AM02 -113210083,B04,11106554,Structure Fire,11/17/2011,11/17/2011,11/17/2011 08:38:36 AM,11/17/2011 08:39:30 AM,11/17/2011 08:40:07 AM,11/17/2011 08:41:39 AM,11/17/2011 08:47:36 AM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Other,11/17/2011 09:29:12 AM,500 Block of FRANCISCO ST,SF,94133,B01,28,1434,3,3,3,false,,1,CHIEF,6,1,3,North Beach,"(37.8046368314261, -122.414251200714)",113210083-B04 -131960093,B03,13066463,Structure Fire,07/15/2013,07/15/2013,07/15/2013 09:35:42 AM,07/15/2013 09:35:43 AM,07/15/2013 09:36:02 AM,07/15/2013 09:36:43 AM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 09:39:51 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",131960093-B03 -110190184,95,11006228,Medical Incident,01/19/2011,01/19/2011,01/19/2011 10:49:10 AM,01/19/2011 10:51:54 AM,01/19/2011 10:52:26 AM,01/19/2011 10:52:46 AM,01/19/2011 11:01:46 AM,01/19/2011 11:23:15 AM,01/19/2011 11:32:21 AM,Code 2 Transport,01/19/2011 12:17:16 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,,1,MEDIC,1,10,9,Potrero Hill,"(37.7564927890408, -122.406789115471)",110190184-95 -110410366,AM18,11013719,Medical Incident,02/10/2011,02/10/2011,02/10/2011 08:49:48 PM,02/10/2011 08:50:00 PM,02/10/2011 08:50:40 PM,04/25/2016 02:06:09 PM,02/10/2011 08:58:37 PM,02/10/2011 09:10:02 PM,02/10/2011 09:13:36 PM,Code 2 Transport,02/10/2011 09:38:45 PM,0 Block of 7TH ST,SF,94103,B02,1,2316,2,2,2,false,,1,PRIVATE,1,2,6,South of Market,"(37.7802039058686, -122.412272455406)",110410366-AM18 -160624074,AM16,16024879,Medical Incident,03/02/2016,03/02/2016,03/02/2016 10:13:30 PM,03/02/2016 10:15:52 PM,03/02/2016 10:16:03 PM,03/02/2016 10:16:59 PM,03/02/2016 10:29:36 PM,03/02/2016 10:31:25 PM,03/02/2016 10:39:20 PM,Code 2 Transport,03/02/2016 11:09:29 PM,POST ST/LARKIN ST,San Francisco,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,4,6,Tenderloin,"(37.7870379462267, -122.418270982434)",160624074-AM16 -160421744,59,16016863,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:41:48 PM,02/11/2016 12:42:44 PM,02/11/2016 12:42:53 PM,02/11/2016 12:43:04 PM,02/11/2016 12:46:18 PM,02/11/2016 01:10:13 PM,02/11/2016 01:29:43 PM,Code 2 Transport,02/11/2016 02:23:02 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160421744-59 -160161665,KM04,16006419,Medical Incident,01/16/2016,01/16/2016,01/16/2016 12:57:16 PM,01/16/2016 12:57:16 PM,01/16/2016 12:57:41 PM,01/16/2016 12:58:08 PM,01/16/2016 01:03:09 PM,01/16/2016 01:18:06 PM,01/16/2016 01:38:25 PM,Code 2 Transport,01/16/2016 02:25:27 PM,5TH ST/MARKET ST,San Francisco,94103,B01,1,2247,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",160161665-KM04 -122890351,E20,12095756,Medical Incident,10/15/2012,10/15/2012,10/15/2012 07:49:34 PM,10/15/2012 07:51:35 PM,10/15/2012 07:52:36 PM,10/15/2012 07:53:29 PM,10/15/2012 07:56:26 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 08:22:22 PM,0 Block of AQUAVISTA WAY,SF,94131,B08,20,5352,3,3,3,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7525357839203, -122.449215972381)",122890351-E20 -120870282,E05,12028969,Citizen Assist / Service Call,03/27/2012,03/27/2012,03/27/2012 07:09:19 PM,03/27/2012 07:11:57 PM,03/27/2012 07:13:23 PM,03/27/2012 07:14:31 PM,03/27/2012 07:18:11 PM,04/25/2016 01:59:28 PM,04/25/2016 01:59:28 PM,Other,03/27/2012 07:20:45 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",120870282-E05 -121500005,RC3,12049593,Medical Incident,05/29/2012,05/28/2012,05/29/2012 12:13:26 AM,05/29/2012 12:14:09 AM,05/29/2012 12:14:34 AM,04/25/2016 01:58:28 PM,05/29/2012 12:20:04 AM,04/25/2016 01:58:28 PM,04/25/2016 01:58:28 PM,Other,05/29/2012 12:43:19 AM,3600 Block of MISSION ST,SF,94110,B06,32,5631,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,9,Bernal Heights,"(37.7381219974808, -122.423925390723)",121500005-RC3 -160450091,79,16017937,Medical Incident,02/14/2016,02/13/2016,02/14/2016 12:28:08 AM,02/14/2016 12:28:40 AM,02/14/2016 12:28:47 AM,02/14/2016 12:28:57 AM,02/14/2016 12:34:42 AM,02/14/2016 12:49:28 AM,02/14/2016 12:59:18 AM,Code 2 Transport,02/14/2016 01:49:48 AM,900 Block of MARKET ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",160450091-79 -113230218,KM05,11107322,Medical Incident,11/19/2011,11/19/2011,11/19/2011 02:12:44 PM,11/19/2011 02:13:08 PM,11/19/2011 02:13:23 PM,11/19/2011 02:13:55 PM,11/19/2011 02:17:55 PM,11/19/2011 02:28:58 PM,11/19/2011 02:56:56 PM,Code 2 Transport,11/19/2011 03:12:38 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",113230218-KM05 -160590903,83,16023435,Medical Incident,02/28/2016,02/28/2016,02/28/2016 08:58:36 AM,02/28/2016 09:01:06 AM,02/28/2016 09:01:58 AM,02/28/2016 09:02:10 AM,02/28/2016 09:08:59 AM,02/28/2016 09:15:40 AM,02/28/2016 09:41:38 AM,Code 2 Transport,02/28/2016 10:11:47 AM,2000 Block of BANCROFT AVE,San Francisco,94124,B10,42,6361,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7304115971242, -122.401166677426)",160590903-83 -160661036,88,16026340,Medical Incident,03/06/2016,03/06/2016,03/06/2016 10:19:55 AM,03/06/2016 10:20:38 AM,03/06/2016 10:21:00 AM,03/06/2016 10:21:06 AM,03/06/2016 10:23:12 AM,03/06/2016 10:38:28 AM,03/06/2016 10:40:48 AM,Code 3 Transport,03/06/2016 11:21:24 AM,700 Block of BUSH ST,San Francisco,94108,B01,2,1361,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",160661036-88 -123130170,57,12104125,Medical Incident,11/08/2012,11/08/2012,11/08/2012 11:37:07 AM,11/08/2012 11:38:57 AM,11/08/2012 11:39:09 AM,11/08/2012 11:39:24 AM,11/08/2012 11:50:36 AM,11/08/2012 12:03:52 PM,11/08/2012 12:13:19 PM,Code 2 Transport,11/08/2012 12:40:46 PM,MISSION ST/16TH ST,SF,94103,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",123130170-57 -160133803,66,16005353,Medical Incident,01/13/2016,01/13/2016,01/13/2016 08:43:30 PM,01/13/2016 08:46:30 PM,01/13/2016 08:47:07 PM,01/13/2016 08:47:15 PM,01/13/2016 08:51:56 PM,01/13/2016 09:10:32 PM,01/13/2016 09:21:08 PM,Code 2 Transport,01/13/2016 10:28:25 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",160133803-66 -103180324,74,10102041,Medical Incident,11/14/2010,11/14/2010,11/14/2010 06:40:24 PM,11/14/2010 06:42:26 PM,11/14/2010 06:42:39 PM,11/14/2010 06:47:40 PM,11/14/2010 06:52:43 PM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Unable to Locate,11/14/2010 06:54:24 PM,HYDE ST/FULTON ST,SF,94102,B02,36,1552,1,1,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7797885273172, -122.415126957644)",103180324-74 -103580147,E15,10114891,Medical Incident,12/24/2010,12/24/2010,12/24/2010 12:45:53 PM,12/24/2010 12:46:27 PM,12/24/2010 12:46:47 PM,12/24/2010 12:48:17 PM,12/24/2010 12:48:41 PM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 12:49:10 PM,PLYMOUTH AV/OCEAN AV,SF,94112,B09,15,8474,3,2,2,true,,1,ENGINE,2,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",103580147-E15 -131460075,KM07,13049414,Medical Incident,05/26/2013,05/25/2013,05/26/2013 05:15:25 AM,05/26/2013 05:15:49 AM,05/26/2013 05:18:33 AM,05/26/2013 05:18:57 AM,05/26/2013 05:41:12 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Patient Declined Transport,05/26/2013 06:31:47 AM,COLUMBIA SQUARE ST/HARRISON ST,SF,94103,B03,8,2254,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7766201701762, -122.404896153495)",131460075-KM07 -120230082,E14,12007711,Medical Incident,01/23/2012,01/22/2012,01/23/2012 07:41:09 AM,01/23/2012 07:41:58 AM,01/23/2012 07:42:13 AM,01/23/2012 07:43:47 AM,01/23/2012 07:46:29 AM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 08:04:48 AM,600 Block of 33RD AVE,SF,94121,B07,14,7244,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7768393829407, -122.493175110923)",120230082-E14 -121930263,D2,12064309,Other,07/11/2012,07/11/2012,07/11/2012 04:44:35 PM,07/11/2012 04:45:09 PM,07/11/2012 04:46:09 PM,07/11/2012 05:02:54 PM,07/11/2012 05:15:22 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 05:39:27 PM,31ST AV/ORTEGA ST,SF,94116,B08,18,7533,3,3,3,false,Alarm,1,CHIEF,3,8,4,Sunset/Parkside,"(37.7518068712257, -122.489193567556)",121930263-D2 -160530372,75,16021065,Medical Incident,02/22/2016,02/21/2016,02/22/2016 05:36:07 AM,02/22/2016 05:37:19 AM,02/22/2016 05:39:19 AM,02/22/2016 05:39:27 AM,02/22/2016 05:47:42 AM,02/22/2016 05:50:26 AM,02/22/2016 05:58:52 AM,Code 2 Transport,02/22/2016 06:58:05 AM,100 Block of 2ND ST,San Francisco,94105,B03,1,2145,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7877542424451, -122.399575303785)",160530372-75 -102970093,E17,10094676,Medical Incident,10/24/2010,10/23/2010,10/24/2010 05:10:02 AM,10/24/2010 05:10:02 AM,10/24/2010 05:15:51 AM,10/24/2010 05:17:33 AM,10/24/2010 05:19:31 AM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 05:31:16 AM,1000 Block of OAKDALE AVE,SF,94124,B10,17,6647,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7288155676841, -122.380327013416)",102970093-E17 -121830353,E10,12061125,Medical Incident,07/01/2012,07/01/2012,07/01/2012 11:19:12 PM,07/01/2012 11:19:59 PM,07/01/2012 11:20:40 PM,07/01/2012 11:22:36 PM,07/01/2012 11:24:20 PM,04/25/2016 01:57:55 PM,04/25/2016 01:57:55 PM,Other,07/01/2012 11:38:52 PM,1300 Block of LYON ST,SF,94115,B05,10,4342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,2,Presidio Heights,"(37.7834029397974, -122.444654875848)",121830353-E10 -113360184,87,11111229,Medical Incident,12/02/2011,12/02/2011,12/02/2011 10:54:37 AM,12/02/2011 10:57:53 AM,12/02/2011 10:59:10 AM,12/02/2011 10:59:20 AM,12/02/2011 11:00:50 AM,04/25/2016 02:01:22 PM,04/25/2016 02:01:22 PM,No Merit,12/02/2011 11:05:11 AM,7TH ST/MISSION ST,SF,94103,B02,1,2315,1,1,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",113360184-87 -122310210,T06,12076627,Structure Fire,08/18/2012,08/18/2012,08/18/2012 04:18:21 PM,08/18/2012 04:18:21 PM,08/18/2012 04:18:43 PM,08/18/2012 04:19:36 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Fire,08/18/2012 04:24:26 PM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",122310210-T06 -160371151,77,16014613,Medical Incident,02/06/2016,02/06/2016,02/06/2016 08:55:26 AM,02/06/2016 08:56:52 AM,02/06/2016 08:57:04 AM,02/06/2016 08:57:09 AM,02/06/2016 09:00:05 AM,02/06/2016 09:15:55 AM,02/06/2016 09:31:18 AM,Code 2 Transport,02/06/2016 10:06:07 AM,1200 Block of ATHENS ST,San Francisco,94112,B09,43,6225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7121319272309, -122.436684330465)",160371151-77 -160833875,60,16033153,Medical Incident,03/23/2016,03/23/2016,03/23/2016 09:12:58 PM,03/23/2016 09:13:10 PM,03/23/2016 09:13:26 PM,03/23/2016 09:13:54 PM,03/23/2016 09:16:35 PM,03/23/2016 09:35:15 PM,03/23/2016 10:08:11 PM,Code 2 Transport,03/23/2016 10:48:55 PM,500 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7834675310494, -122.416716373273)",160833875-60 -160671838,65,16026779,Traffic Collision,03/07/2016,03/07/2016,03/07/2016 02:22:59 PM,03/07/2016 02:23:53 PM,03/07/2016 02:49:54 PM,03/07/2016 02:49:54 PM,03/07/2016 03:05:29 PM,03/07/2016 03:11:51 PM,03/07/2016 03:18:55 PM,Code 2 Transport,03/07/2016 03:38:41 PM,100 Block of BAY SHORE BLVD,San Francisco,94124,B10,44,6542,2,2,2,true,Non Life-threatening,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",160671838-65 -120290092,AM02,12009668,Medical Incident,01/29/2012,01/29/2012,01/29/2012 08:50:16 AM,01/29/2012 08:51:09 AM,01/29/2012 08:51:19 AM,01/29/2012 08:54:25 AM,01/29/2012 09:00:46 AM,01/29/2012 09:22:41 AM,01/29/2012 09:28:59 AM,Code 2 Transport,01/29/2012 10:05:26 AM,0 Block of MONTCALM ST,SF,94110,B06,9,5672,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7472040308887, -122.405898418864)",120290092-AM02 -103300233,72,10105697,Medical Incident,11/26/2010,11/26/2010,11/26/2010 04:15:31 PM,11/26/2010 04:17:08 PM,11/26/2010 04:17:18 PM,11/26/2010 04:17:36 PM,11/26/2010 04:22:33 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,No Merit,11/26/2010 04:33:24 PM,0 Block of JENNINGS CT,SF,94124,B10,44,6575,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7172199086433, -122.397031798755)",103300233-72 -140610265,T15,14020714,Alarms,03/02/2014,03/02/2014,03/02/2014 06:11:02 PM,03/02/2014 06:12:28 PM,03/02/2014 06:12:32 PM,03/02/2014 06:14:04 PM,03/02/2014 06:20:33 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,Fire,03/02/2014 06:40:00 PM,0 Block of INA CT,SF,94112,B09,43,6164,3,3,3,false,Alarm,1,TRUCK,1,9,11,Excelsior,"(37.7235405243946, -122.424766345074)",140610265-T15 -120610021,E33,12019916,Medical Incident,03/01/2012,02/29/2012,03/01/2012 01:36:58 AM,03/01/2012 01:38:24 AM,03/01/2012 01:46:52 AM,03/01/2012 01:48:28 AM,03/01/2012 01:52:22 AM,04/25/2016 01:59:54 PM,04/25/2016 01:59:54 PM,Patient Declined Transport,03/01/2012 02:22:25 AM,100 Block of GOETHE ST,SF,94112,B09,33,8364,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7090126221049, -122.45976907124)",120610021-E33 -132700103,E05,13091629,Administrative,09/27/2013,09/27/2013,09/27/2013 08:43:42 AM,09/27/2013 08:43:49 AM,09/27/2013 08:44:23 AM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,04/25/2016 01:50:34 PM,Other,09/27/2013 08:46:51 AM,1300 Block of TURK ST,SF,94115,B05,5,3535,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7805516909401, -122.431271401953)",132700103-E05 -110730096,KM12,11023948,Medical Incident,03/14/2011,03/14/2011,03/14/2011 09:45:18 AM,03/14/2011 09:47:06 AM,03/14/2011 09:47:22 AM,03/14/2011 09:48:05 AM,03/14/2011 09:52:21 AM,03/14/2011 10:20:14 AM,03/14/2011 10:28:21 AM,Code 2 Transport,03/14/2011 10:56:24 AM,900 Block of GROVE ST,SF,94117,B05,5,3533,3,3,3,false,,1,PRIVATE,2,5,5,Hayes Valley,"(37.7766006699261, -122.432195491762)",110730096-KM12 -130950027,T19,13031675,Alarms,04/05/2013,04/04/2013,04/05/2013 02:19:06 AM,04/05/2013 02:20:23 AM,04/05/2013 02:21:04 AM,04/05/2013 02:22:55 AM,04/05/2013 02:25:40 AM,04/25/2016 01:53:29 PM,04/25/2016 01:53:29 PM,Other,04/05/2013 02:38:56 AM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,true,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",130950027-T19 -102930261,T15,10093504,Structure Fire,10/20/2010,10/20/2010,10/20/2010 04:27:27 PM,10/20/2010 04:27:27 PM,10/20/2010 04:28:42 PM,10/20/2010 04:30:02 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 04:32:35 PM,MISSION ST/EXCELSIOR AV,SF,94112,B09,43,6116,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7262362449736, -122.433623592293)",102930261-T15 -130290012,E14,13009797,Gas Leak (Natural and LP Gases),01/29/2013,01/28/2013,01/29/2013 12:56:45 AM,01/29/2013 12:58:02 AM,01/29/2013 12:58:49 AM,01/29/2013 01:01:05 AM,01/29/2013 01:03:34 AM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/29/2013 01:25:31 AM,500 Block of 33RD AVE,SF,94121,B07,14,7245,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7787341301215, -122.493163416337)",130290012-E14 -123230343,E03,12107558,Structure Fire,11/18/2012,11/18/2012,11/18/2012 11:35:41 PM,11/18/2012 11:35:41 PM,11/18/2012 11:35:57 PM,11/18/2012 11:37:00 PM,11/18/2012 11:37:56 PM,04/25/2016 01:55:44 PM,04/25/2016 01:55:44 PM,Fire,11/18/2012 11:38:51 PM,POLK ST/ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7840291146397, -122.419364167879)",123230343-E03 -140310329,E35,14010675,Alarms,01/31/2014,01/31/2014,01/31/2014 11:31:48 PM,01/31/2014 11:33:08 PM,01/31/2014 11:33:13 PM,01/31/2014 11:34:19 PM,01/31/2014 11:37:13 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,01/31/2014 11:50:26 PM,200 Block of MISSION ST,SF,94105,B03,35,2116,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7914585077096, -122.395328020417)",140310329-E35 -160382537,56,16015301,Medical Incident,02/07/2016,02/07/2016,02/07/2016 04:25:32 PM,02/07/2016 04:27:18 PM,02/07/2016 04:28:05 PM,02/07/2016 04:28:27 PM,02/07/2016 04:31:12 PM,02/07/2016 04:51:54 PM,02/07/2016 05:02:48 PM,Code 2 Transport,02/07/2016 05:46:46 PM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160382537-56 -113140234,KM14,11104370,Medical Incident,11/10/2011,11/10/2011,11/10/2011 03:09:51 PM,11/10/2011 03:10:49 PM,11/10/2011 03:11:01 PM,11/10/2011 03:19:26 PM,11/10/2011 03:24:53 PM,11/10/2011 03:34:49 PM,11/10/2011 03:53:51 PM,Code 2 Transport,11/10/2011 04:19:19 PM,600 Block of STEVENSON ST,SF,94103,B02,1,2316,3,3,3,false,,1,PRIVATE,2,2,6,South of Market,"(37.7795231711615, -122.412639291793)",113140234-KM14 -122760467,E28,12091375,Medical Incident,10/02/2012,10/02/2012,10/02/2012 11:55:31 PM,10/02/2012 11:58:29 PM,10/02/2012 11:59:23 PM,10/03/2012 12:00:56 AM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 12:02:48 AM,1700 Block of THE EMBARCADERO,SF,94133,B01,28,933,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8084325058333, -122.410757587167)",122760467-E28 -110450011,T07,11014789,Structure Fire,02/14/2011,02/13/2011,02/14/2011 01:03:00 AM,02/14/2011 01:03:00 AM,02/14/2011 01:03:21 AM,02/14/2011 01:05:11 AM,02/14/2011 01:06:58 AM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 01:07:32 AM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,false,,1,TRUCK,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",110450011-T07 -121730013,89,12057302,Medical Incident,06/21/2012,06/20/2012,06/21/2012 12:51:48 AM,06/21/2012 12:52:24 AM,06/21/2012 12:52:34 AM,06/21/2012 12:55:59 AM,06/21/2012 01:01:47 AM,06/21/2012 01:28:11 AM,06/21/2012 01:49:10 AM,Code 2 Transport,06/21/2012 02:08:12 AM,0 Block of MONETA WAY,SF,94112,B09,33,8347,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7129282254093, -122.449089456346)",121730013-89 -111110149,E21,11036628,Alarms,04/21/2011,04/21/2011,04/21/2011 11:26:57 AM,04/21/2011 11:28:00 AM,04/21/2011 11:28:05 AM,04/21/2011 11:28:25 AM,04/21/2011 11:31:20 AM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Other,04/21/2011 11:41:38 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,false,,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",111110149-E21 -112210376,72,11073176,Medical Incident,08/09/2011,08/09/2011,08/09/2011 11:11:31 PM,08/09/2011 11:12:23 PM,08/09/2011 11:12:33 PM,08/09/2011 11:12:52 PM,08/09/2011 11:20:15 PM,08/09/2011 11:31:45 PM,08/09/2011 11:42:50 PM,Code 2 Transport,08/09/2011 11:59:44 PM,0 Block of HOFFMAN AVE,SF,94114,B06,24,5373,3,3,3,true,,1,MEDIC,3,6,8,Noe Valley,"(37.7536986542799, -122.440960677385)",112210376-72 -121690214,E01,12056145,Alarms,06/17/2012,06/17/2012,06/17/2012 02:56:22 PM,06/17/2012 02:57:50 PM,06/17/2012 02:58:19 PM,06/17/2012 02:59:35 PM,06/17/2012 03:02:11 PM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/17/2012 03:05:53 PM,200 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",121690214-E01 -123520333,67,12117869,Medical Incident,12/17/2012,12/17/2012,12/17/2012 06:53:26 PM,12/17/2012 06:53:50 PM,12/17/2012 06:54:31 PM,12/17/2012 06:54:54 PM,12/17/2012 07:00:17 PM,12/17/2012 07:21:22 PM,12/17/2012 07:49:55 PM,Code 2 Transport,12/17/2012 08:09:05 PM,GOUGH ST/LOMBARD ST,SF,94123,B04,16,3244,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8008867546254, -122.427825032719)",123520333-67 -113620157,RC1,11120227,Medical Incident,12/28/2011,12/28/2011,12/28/2011 12:05:12 PM,12/28/2011 12:07:00 PM,12/28/2011 12:07:23 PM,04/25/2016 02:00:55 PM,12/28/2011 12:11:33 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 12:19:12 PM,1400 Block of MASON ST,SF,94133,B01,2,1416,3,3,3,true,,1,RESCUE CAPTAIN,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",113620157-RC1 -111230268,AM02,11040692,Medical Incident,05/03/2011,05/03/2011,05/03/2011 04:28:31 PM,05/03/2011 04:28:56 PM,05/03/2011 04:29:13 PM,05/03/2011 04:29:55 PM,05/03/2011 04:32:57 PM,05/03/2011 04:58:53 PM,05/03/2011 05:06:30 PM,Code 2 Transport,05/03/2011 05:51:07 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,E,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7850960963726, -122.412758759499)",111230268-AM02 -160251315,53,16009885,Medical Incident,01/25/2016,01/25/2016,01/25/2016 10:43:18 AM,01/25/2016 10:44:48 AM,01/25/2016 10:45:00 AM,01/25/2016 10:45:14 AM,01/25/2016 10:50:47 AM,01/25/2016 11:07:04 AM,01/25/2016 11:25:17 AM,Code 2 Transport,01/25/2016 12:20:18 PM,JENNINGS ST/FITZGERALD AV,San Francisco,94124,B10,17,6614,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7220347181097, -122.393171960162)",160251315-53 -160223532,73,16008935,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:07:52 PM,01/22/2016 09:08:59 PM,01/22/2016 09:09:40 PM,01/22/2016 09:10:03 PM,01/22/2016 09:13:42 PM,01/22/2016 09:28:32 PM,01/22/2016 09:45:08 PM,Code 2 Transport,01/22/2016 10:19:57 PM,600 Block of SAN JOSE AVE,San Francisco,94110,B06,11,5577,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Bernal Heights,"(37.74473055186, -122.422242631424)",160223532-73 -112710109,66,11089472,Medical Incident,09/28/2011,09/28/2011,09/28/2011 10:06:35 AM,09/28/2011 10:08:55 AM,09/28/2011 10:09:09 AM,09/28/2011 10:09:27 AM,09/28/2011 10:14:27 AM,09/28/2011 10:47:20 AM,09/28/2011 10:59:09 AM,Code 2 Transport,09/28/2011 11:38:06 AM,1200 Block of 24TH AVE,SF,94122,B08,22,7452,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7642708677758, -122.482479459641)",112710109-66 -131640042,KM07,13055609,Medical Incident,06/13/2013,06/12/2013,06/13/2013 05:05:49 AM,06/13/2013 05:08:54 AM,06/13/2013 05:09:38 AM,06/13/2013 05:10:28 AM,06/13/2013 05:32:01 AM,06/13/2013 05:40:06 AM,06/13/2013 05:54:41 AM,Code 2 Transport,06/13/2013 06:15:13 AM,0 Block of SEAL ROCK DR,SF,94121,B07,34,7275,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7807045000007, -122.507049889799)",131640042-KM07 -160350550,85,16013695,Medical Incident,02/04/2016,02/03/2016,02/04/2016 06:59:54 AM,02/04/2016 06:59:54 AM,02/04/2016 07:00:27 AM,02/04/2016 07:02:41 AM,02/04/2016 07:10:04 AM,02/04/2016 07:15:22 AM,02/04/2016 07:29:52 AM,Code 2 Transport,02/04/2016 08:01:37 AM,JACKSON ST/WEBSTER ST,San Francisco,94115,B04,38,3465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7926799136599, -122.432917576713)",160350550-85 -120800201,RS2,12026576,Traffic Collision,03/20/2012,03/20/2012,03/20/2012 02:28:09 PM,03/20/2012 02:29:27 PM,03/20/2012 02:29:55 PM,03/20/2012 02:31:04 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,Other,03/20/2012 02:39:25 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,6,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",120800201-RS2 -103190193,D3,10102258,Structure Fire,11/15/2010,11/15/2010,11/15/2010 12:57:32 PM,11/15/2010 12:59:35 PM,11/15/2010 12:59:45 PM,04/25/2016 02:07:35 PM,11/15/2010 01:01:11 PM,04/25/2016 02:07:35 PM,04/25/2016 02:07:35 PM,Other,11/15/2010 01:05:40 PM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,3,3,false,,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",103190193-D3 -110640319,T17,11021191,Vehicle Fire,03/05/2011,03/05/2011,03/05/2011 05:51:52 PM,03/05/2011 05:53:51 PM,03/05/2011 05:54:28 PM,03/05/2011 05:55:25 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 06:01:00 PM,100 Block of BAY SHORE BLVD,SF,94124,B10,44,6271,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7474811373265, -122.403507284924)",110640319-T17 -160250329,78,16009777,Medical Incident,01/25/2016,01/24/2016,01/25/2016 03:32:22 AM,01/25/2016 03:33:47 AM,01/25/2016 03:35:44 AM,01/25/2016 03:36:26 AM,01/25/2016 03:43:48 AM,01/25/2016 03:53:00 AM,01/25/2016 04:15:04 AM,Code 2 Transport,01/25/2016 05:13:20 AM,3100 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6277,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,10,9,Portola,"(37.7220016138662, -122.401341444894)",160250329-78 -121370041,94,12045401,Medical Incident,05/16/2012,05/15/2012,05/16/2012 03:55:08 AM,05/16/2012 03:57:08 AM,05/16/2012 03:57:24 AM,05/16/2012 03:57:35 AM,05/16/2012 04:00:16 AM,05/16/2012 04:17:51 AM,05/16/2012 04:34:00 AM,Code 2 Transport,05/16/2012 04:59:18 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",121370041-94 -160693053,77,16027592,Medical Incident,03/09/2016,03/09/2016,03/09/2016 06:22:43 PM,03/09/2016 06:23:26 PM,03/09/2016 06:24:11 PM,03/09/2016 06:24:37 PM,03/09/2016 06:27:45 PM,03/09/2016 06:46:48 PM,03/09/2016 06:50:47 PM,Code 3 Transport,03/09/2016 07:32:53 PM,200 Block of CASHMERE ST,San Francisco,94124,B10,17,6517,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7362537955292, -122.387097160369)",160693053-77 -160763600,79,16030328,Medical Incident,03/16/2016,03/16/2016,03/16/2016 07:58:20 PM,03/16/2016 07:59:33 PM,03/16/2016 07:59:54 PM,03/16/2016 08:00:15 PM,03/16/2016 08:07:16 PM,03/16/2016 08:27:24 PM,03/16/2016 08:45:29 PM,Code 2 Transport,03/16/2016 09:14:04 PM,800 Block of 24TH AVE,San Francisco,94121,B07,14,7177,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7735549638776, -122.483117823335)",160763600-79 -160733148,KM07,16029141,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:05:11 PM,03/13/2016 11:07:21 PM,03/13/2016 11:07:35 PM,03/13/2016 11:08:15 PM,03/13/2016 11:10:50 PM,03/13/2016 11:23:40 PM,03/13/2016 11:36:33 PM,Code 2 Transport,03/13/2016 11:59:20 PM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",160733148-KM07 -122240027,60,12074150,Medical Incident,08/11/2012,08/10/2012,08/11/2012 01:32:52 AM,08/11/2012 01:32:52 AM,08/11/2012 01:33:15 AM,08/11/2012 01:33:28 AM,08/11/2012 01:49:30 AM,08/11/2012 01:59:56 AM,08/11/2012 02:15:48 AM,Code 2 Transport,08/11/2012 02:39:59 AM,800 Block of 3RD ST,SF,94107,B03,8,2150,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",122240027-60 -121530173,E28,12050628,Medical Incident,06/01/2012,06/01/2012,06/01/2012 01:37:03 PM,06/01/2012 01:37:39 PM,06/01/2012 01:38:03 PM,06/01/2012 01:38:48 PM,06/01/2012 01:40:50 PM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 01:53:05 PM,500 Block of COLUMBUS AVE,SF,94133,B01,28,1334,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7998612792845, -122.409655977667)",121530173-E28 -121410046,87,12046729,Medical Incident,05/20/2012,05/19/2012,05/20/2012 02:59:22 AM,05/20/2012 02:59:58 AM,05/20/2012 03:00:40 AM,05/20/2012 03:00:49 AM,05/20/2012 03:01:43 AM,05/20/2012 03:17:04 AM,05/20/2012 03:25:07 AM,Code 3 Transport,05/20/2012 04:13:25 AM,900 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7815063666429, -122.407932868203)",121410046-87 -112370072,88,11078115,Medical Incident,08/25/2011,08/24/2011,08/25/2011 06:27:01 AM,08/25/2011 06:27:43 AM,08/25/2011 06:27:51 AM,08/25/2011 06:28:48 AM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,Other,08/25/2011 06:30:55 AM,1400 Block of VAN DYKE AVE,SF,94124,B10,17,6651,3,2,2,false,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7276164365297, -122.389570152393)",112370072-88 -102680377,B06,10085061,Vehicle Fire,09/25/2010,09/25/2010,09/25/2010 07:11:25 PM,09/25/2010 07:11:25 PM,09/25/2010 07:12:43 PM,09/25/2010 07:14:04 PM,09/25/2010 07:17:20 PM,04/25/2016 02:08:25 PM,04/25/2016 02:08:25 PM,Other,09/25/2010 07:59:22 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,false,,1,CHIEF,1,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",102680377-B06 -140740010,AM22,14024873,Medical Incident,03/15/2014,03/14/2014,03/15/2014 12:21:38 AM,03/15/2014 12:23:23 AM,03/15/2014 12:25:09 AM,03/15/2014 12:25:33 AM,03/15/2014 12:31:49 AM,03/15/2014 12:53:26 AM,03/15/2014 01:20:45 AM,Code 2 Transport,03/15/2014 01:42:31 AM,500 Block of EXCELSIOR AVE,SAN FRANCISCO,94112,B09,43,6133,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7241960538133, -122.429208742878)",140740010-AM22 -160403505,AM14,16016210,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:48:29 PM,02/09/2016 08:48:59 PM,02/09/2016 08:49:18 PM,02/09/2016 08:49:58 PM,02/09/2016 08:53:09 PM,02/09/2016 09:15:11 PM,02/09/2016 09:31:17 PM,Code 2 Transport,02/09/2016 09:52:43 PM,300 Block of 4TH ST,San Francisco,94107,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7817672494717, -122.400935483663)",160403505-AM14 -131570266,E29,13053296,Water Rescue,06/06/2013,06/06/2013,06/06/2013 03:07:19 PM,06/06/2013 03:08:20 PM,06/06/2013 03:09:06 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/06/2013 03:11:08 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,true,Fire,1,ENGINE,14,1,3,North Beach,"(37.8069201392161, -122.407170160416)",131570266-E29 -160912262,87,16036124,Medical Incident,03/31/2016,03/31/2016,03/31/2016 03:28:30 PM,03/31/2016 03:30:11 PM,03/31/2016 03:31:26 PM,03/31/2016 03:31:39 PM,03/31/2016 03:34:04 PM,03/31/2016 03:52:23 PM,03/31/2016 04:14:44 PM,Code 2 Transport,03/31/2016 04:56:13 PM,900 Block of MASON ST,Presidio,94108,B99,51,4613,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",160912262-87 -160272942,65,16010794,Medical Incident,01/27/2016,01/27/2016,01/27/2016 05:37:52 PM,01/27/2016 05:38:54 PM,01/27/2016 05:39:09 PM,01/27/2016 05:39:17 PM,01/27/2016 05:45:00 PM,01/27/2016 06:10:05 PM,01/27/2016 06:14:48 PM,Code 2 Transport,01/27/2016 07:02:29 PM,2100 Block of POST ST,San Francisco,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",160272942-65 -131960047,B10,13066430,Alarms,07/15/2013,07/14/2013,07/15/2013 05:42:18 AM,07/15/2013 05:43:50 AM,07/15/2013 05:44:06 AM,07/15/2013 05:46:53 AM,07/15/2013 05:52:33 AM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Fire,07/15/2013 06:06:14 AM,100 Block of JENNINGS ST,SF,94124,B10,25,996,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7398423455417, -122.37707722054)",131960047-B10 -131990270,68,13067534,Medical Incident,07/18/2013,07/18/2013,07/18/2013 05:04:49 PM,07/18/2013 05:05:54 PM,07/18/2013 05:06:25 PM,07/18/2013 05:10:53 PM,07/18/2013 05:12:39 PM,07/18/2013 05:20:28 PM,07/18/2013 05:36:09 PM,Code 2 Transport,07/18/2013 05:42:54 PM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",131990270-68 -130090146,E28,13003074,Medical Incident,01/09/2013,01/09/2013,01/09/2013 11:05:48 AM,01/09/2013 11:06:15 AM,01/09/2013 11:06:45 AM,01/09/2013 11:07:48 AM,01/09/2013 11:09:31 AM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 11:15:47 AM,500 Block of NORTH POINT ST,SF,94133,B01,28,1433,3,2,2,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8062966202775, -122.416265019979)",130090146-E28 -160860025,76,16034024,Medical Incident,03/26/2016,03/25/2016,03/26/2016 12:07:34 AM,03/26/2016 12:08:50 AM,03/26/2016 12:09:07 AM,03/26/2016 12:09:15 AM,03/26/2016 12:11:15 AM,03/26/2016 12:25:43 AM,03/26/2016 12:30:53 AM,Code 3 Transport,03/26/2016 01:05:25 AM,1400 Block of JONES ST,San Francisco,94109,B01,41,1466,A,A,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7945402595974, -122.414804971391)",160860025-76 -123620144,RC2,12121122,Medical Incident,12/27/2012,12/27/2012,12/27/2012 11:57:04 AM,12/27/2012 11:58:36 AM,12/27/2012 11:58:45 AM,12/27/2012 12:01:22 PM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Other,12/27/2012 12:05:19 PM,900 Block of GENEVA AVE,SF,94112,B09,43,6175,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,9,11,Excelsior,"(37.7159411510558, -122.439784371506)",123620144-RC2 -132620423,B01,13088947,Alarms,09/19/2013,09/19/2013,09/19/2013 11:33:54 PM,09/19/2013 11:35:14 PM,09/19/2013 11:35:22 PM,09/19/2013 11:36:42 PM,09/19/2013 11:41:47 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Fire,09/19/2013 11:53:56 PM,100 Block of SUTTER ST,SF,94108,B01,13,1242,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7900283997728, -122.40271197324)",132620423-B01 -113390378,AM18,11112532,Medical Incident,12/05/2011,12/05/2011,12/05/2011 10:55:16 PM,12/05/2011 10:55:46 PM,12/05/2011 10:56:13 PM,12/05/2011 10:56:49 PM,12/05/2011 11:02:14 PM,12/05/2011 11:10:27 PM,12/05/2011 11:21:45 PM,Code 2 Transport,12/05/2011 11:59:16 PM,200 Block of LOUISBURG ST,SF,94112,B09,15,8315,3,3,3,false,,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7198936943619, -122.450400205622)",113390378-AM18 -160063361,58,16002583,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:16:06 PM,01/06/2016 08:16:06 PM,01/06/2016 08:16:40 PM,01/06/2016 08:16:49 PM,01/06/2016 08:21:55 PM,01/06/2016 08:31:31 PM,01/06/2016 08:35:37 PM,Code 2 Transport,01/06/2016 09:11:16 PM,3200 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Bernal Heights,"(37.7447384333683, -122.420517921043)",160063361-58 -122600181,D2,12085942,Explosion,09/16/2012,09/16/2012,09/16/2012 01:37:27 PM,09/16/2012 01:38:34 PM,09/16/2012 01:39:34 PM,09/16/2012 01:40:13 PM,09/16/2012 01:43:38 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 02:45:00 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,3,3,3,false,Fire,1,CHIEF,6,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",122600181-D2 -120230231,E29,12007834,Structure Fire,01/23/2012,01/23/2012,01/23/2012 03:05:45 PM,01/23/2012 03:05:45 PM,01/23/2012 03:05:58 PM,01/23/2012 03:06:49 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 03:07:48 PM,9TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,Alarm,1,ENGINE,3,2,6,South of Market,"(37.7749917496069, -122.413161109659)",120230231-E29 -160351172,67,16013760,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:15:55 AM,02/04/2016 10:16:23 AM,02/04/2016 10:16:39 AM,02/04/2016 10:17:04 AM,02/04/2016 10:20:55 AM,02/04/2016 10:36:11 AM,02/04/2016 11:09:28 AM,Code 2 Transport,02/04/2016 11:23:06 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160351172-67 -103010372,E01,10096255,Medical Incident,10/28/2010,10/28/2010,10/28/2010 07:48:07 PM,10/28/2010 07:48:07 PM,10/28/2010 07:48:07 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,04/25/2016 02:07:52 PM,Other,10/28/2010 07:56:53 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",103010372-E01 -160391513,KM04,16015593,Medical Incident,02/08/2016,02/08/2016,02/08/2016 11:59:15 AM,02/08/2016 12:01:42 PM,02/08/2016 12:02:07 PM,02/08/2016 12:03:03 PM,02/08/2016 12:06:49 PM,02/08/2016 12:25:02 PM,02/08/2016 12:33:57 PM,Code 2 Transport,02/08/2016 01:15:29 PM,LEAVENWORTH ST/GOLDEN GATE AV,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",160391513-KM04 -160660554,KM03,16026280,Medical Incident,03/06/2016,03/05/2016,03/06/2016 06:09:36 AM,03/06/2016 06:11:44 AM,03/06/2016 06:13:08 AM,03/06/2016 06:13:41 AM,03/06/2016 06:20:34 AM,03/06/2016 06:38:38 AM,03/06/2016 06:49:37 AM,Code 2 Transport,03/06/2016 07:22:28 AM,3900 Block of 17TH ST,San Francisco,94114,B05,6,5417,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.762462765244, -122.434659092708)",160660554-KM03 -160801237,KM11,16031765,Medical Incident,03/20/2016,03/20/2016,03/20/2016 10:35:53 AM,03/20/2016 10:36:29 AM,03/20/2016 10:36:53 AM,03/20/2016 10:38:38 AM,03/20/2016 10:40:35 AM,03/20/2016 11:00:15 AM,03/20/2016 11:09:44 AM,Code 2 Transport,03/20/2016 11:34:42 AM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160801237-KM11 -113500369,E29,11116270,Medical Incident,12/16/2011,12/16/2011,12/16/2011 09:23:46 PM,12/16/2011 09:26:45 PM,12/16/2011 09:27:28 PM,12/16/2011 09:28:58 PM,12/16/2011 09:32:21 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 09:40:03 PM,HARRISON ST/TREAT AV,SF,94110,B02,29,5217,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7654476102712, -122.413105244954)",113500369-E29 -160280071,55,16010927,Medical Incident,01/28/2016,01/27/2016,01/28/2016 12:35:09 AM,01/28/2016 12:36:07 AM,01/28/2016 12:36:18 AM,01/28/2016 12:37:29 AM,01/28/2016 12:44:35 AM,01/28/2016 01:07:51 AM,01/28/2016 01:14:08 AM,Code 2 Transport,01/28/2016 02:04:34 AM,600 Block of COMMERCIAL ST,San Francisco,94111,B01,13,1233,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7940643725355, -122.403868637833)",160280071-55 -110230085,AP,11007505,Other,01/23/2011,01/22/2011,01/23/2011 07:56:29 AM,01/23/2011 07:56:29 AM,01/23/2011 07:56:29 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Fire,01/23/2011 07:56:43 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",110230085-AP -160132017,73,16005207,Medical Incident,01/13/2016,01/13/2016,01/13/2016 01:16:40 PM,01/13/2016 01:18:42 PM,01/13/2016 01:19:25 PM,01/13/2016 01:20:01 PM,01/13/2016 01:29:36 PM,01/13/2016 01:52:58 PM,01/13/2016 02:17:34 PM,Code 2 Transport,01/13/2016 03:08:37 PM,600 Block of ATHENS ST,San Francisco,94112,B09,43,6157,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7177815317428, -122.431424651776)",160132017-73 -112640165,B04,11087165,Alarms,09/21/2011,09/21/2011,09/21/2011 11:23:20 AM,09/21/2011 11:24:56 AM,09/21/2011 11:26:29 AM,09/21/2011 11:26:40 AM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,04/25/2016 02:02:33 PM,Other,09/21/2011 11:57:05 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,,1,CHIEF,3,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",112640165-B04 -140100184,E01,14003481,Medical Incident,01/10/2014,01/10/2014,01/10/2014 11:48:44 AM,01/10/2014 11:51:20 AM,01/10/2014 11:53:05 AM,01/10/2014 11:53:05 AM,01/10/2014 12:14:20 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/10/2014 12:14:23 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",140100184-E01 -122840337,92,12094092,Medical Incident,10/10/2012,10/10/2012,10/10/2012 10:28:56 PM,10/10/2012 10:28:56 PM,10/10/2012 10:29:39 PM,10/10/2012 10:31:08 PM,10/10/2012 10:34:01 PM,10/10/2012 10:48:01 PM,10/10/2012 11:07:35 PM,Code 2 Transport,10/10/2012 11:40:26 PM,1100 Block of GUERRERO ST,SF,94110,B06,11,5524,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,8,Mission,"(37.7531815783041, -122.42287877305)",122840337-92 -140440153,E33,14014930,Medical Incident,02/13/2014,02/13/2014,02/13/2014 10:09:55 AM,02/13/2014 10:12:07 AM,02/13/2014 10:12:43 AM,02/13/2014 10:13:28 AM,02/13/2014 10:15:53 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/13/2014 10:29:00 AM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",140440153-E33 -113640328,84,11121024,Medical Incident,12/30/2011,12/30/2011,12/30/2011 07:46:21 PM,12/30/2011 07:46:21 PM,12/30/2011 07:48:38 PM,12/30/2011 07:49:40 PM,12/30/2011 07:52:36 PM,04/25/2016 02:00:53 PM,12/30/2011 08:14:07 PM,Code 2 Transport,12/30/2011 08:58:06 PM,400 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7849036811274, -122.416234049056)",113640328-84 -110710341,67,11023485,Medical Incident,03/12/2011,03/12/2011,03/12/2011 07:13:44 PM,03/12/2011 07:14:35 PM,03/12/2011 07:14:53 PM,03/12/2011 07:15:20 PM,03/12/2011 07:19:10 PM,03/12/2011 07:35:16 PM,03/12/2011 08:01:36 PM,Code 2 Transport,03/12/2011 08:24:20 PM,300 Block of HOWARD ST,SF,94105,B03,35,2124,3,E,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.789619378253, -122.394762431104)",110710341-67 -122130062,54,12070609,Medical Incident,07/31/2012,07/30/2012,07/31/2012 06:13:39 AM,07/31/2012 06:14:20 AM,07/31/2012 06:15:30 AM,04/25/2016 01:57:28 PM,07/31/2012 06:22:23 AM,07/31/2012 06:28:06 AM,07/31/2012 06:35:12 AM,Code 3 Transport,07/31/2012 07:20:55 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,E,E,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Mission,"(37.7740948566882, -122.420001436964)",122130062-54 -120180287,AP,12006127,Other,01/18/2012,01/18/2012,01/18/2012 06:25:04 PM,01/18/2012 06:25:04 PM,01/18/2012 06:25:04 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Fire,01/18/2012 06:25:28 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",120180287-AP -131460255,E36,13049570,Medical Incident,05/26/2013,05/26/2013,05/26/2013 02:49:57 PM,05/26/2013 02:50:41 PM,05/26/2013 02:51:16 PM,05/26/2013 02:53:28 PM,05/26/2013 02:55:55 PM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 02:58:13 PM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",131460255-E36 -140090168,81,14003117,Medical Incident,01/09/2014,01/09/2014,01/09/2014 11:21:59 AM,01/09/2014 11:24:35 AM,01/09/2014 11:24:58 AM,01/09/2014 11:25:56 AM,01/09/2014 11:38:27 AM,01/09/2014 12:22:44 PM,01/09/2014 12:29:41 PM,Code 2 Transport,01/09/2014 01:10:33 PM,2500 Block of SUTTER ST,SF,94115,B05,10,4262,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Japantown,"(37.7848770596387, -122.442348914658)",140090168-81 -120490088,RC1,12016147,Medical Incident,02/18/2012,02/18/2012,02/18/2012 08:56:44 AM,02/18/2012 08:57:15 AM,02/18/2012 08:57:35 AM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,04/25/2016 02:00:05 PM,Other,02/18/2012 09:01:25 AM,CHESTNUT ST/FRANKLIN ST,SF,94123,B04,16,3235,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,4,2,Marina,"(37.8020718699266, -122.426377344364)",120490088-RC1 -112130268,58,11070357,Water Rescue,08/01/2011,08/01/2011,08/01/2011 04:52:00 PM,08/01/2011 04:54:28 PM,08/01/2011 04:56:15 PM,08/01/2011 04:56:39 PM,08/01/2011 05:07:58 PM,04/25/2016 02:03:23 PM,04/25/2016 02:03:23 PM,Other,08/01/2011 05:27:43 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,,1,MEDIC,5,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",112130268-58 -160741525,62,16029316,Medical Incident,03/14/2016,03/14/2016,03/14/2016 11:45:06 AM,03/14/2016 11:46:38 AM,03/14/2016 11:47:02 AM,03/14/2016 11:47:10 AM,03/14/2016 11:51:38 AM,03/14/2016 12:19:57 PM,03/14/2016 12:28:14 PM,Code 2 Transport,03/14/2016 01:02:35 PM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160741525-62 -140370251,E03,14012568,Medical Incident,02/06/2014,02/06/2014,02/06/2014 04:03:26 PM,02/06/2014 04:05:02 PM,02/06/2014 04:05:32 PM,02/06/2014 04:07:09 PM,02/06/2014 04:07:39 PM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 04:15:26 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140370251-E03 -131180059,E18,13039594,Structure Fire,04/28/2013,04/27/2013,04/28/2013 05:19:45 AM,04/28/2013 05:21:12 AM,04/28/2013 05:21:30 AM,04/28/2013 05:23:42 AM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/28/2013 05:31:24 AM,4200 Block of JUDAH ST,SF,94122,B08,23,7723,3,3,3,true,Alarm,1,ENGINE,5,8,4,Sunset/Parkside,"(37.7604082847224, -122.507537232671)",131180059-E18 -132520318,54,13085295,Medical Incident,09/09/2013,09/09/2013,09/09/2013 08:05:18 PM,09/09/2013 08:08:28 PM,09/09/2013 08:08:49 PM,09/09/2013 08:09:00 PM,09/09/2013 08:10:15 PM,09/09/2013 08:27:32 PM,09/09/2013 08:38:58 PM,Code 2 Transport,09/09/2013 09:10:44 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",132520318-54 -122230223,78,12073964,Medical Incident,08/10/2012,08/10/2012,08/10/2012 02:23:38 PM,08/10/2012 02:24:24 PM,08/10/2012 02:25:16 PM,08/10/2012 02:26:11 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 02:27:42 PM,SUTTER ST/KEARNY ST,SF,94108,B01,13,1242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7898293371562, -122.403841564352)",122230223-78 -130220321,AM08,13007706,Medical Incident,01/22/2013,01/22/2013,01/22/2013 06:33:42 PM,01/22/2013 06:35:29 PM,01/22/2013 06:36:14 PM,01/22/2013 06:37:02 PM,01/22/2013 06:43:09 PM,01/22/2013 06:54:11 PM,01/22/2013 07:05:28 PM,Code 2 Transport,01/22/2013 07:28:28 PM,EDDY ST/HYDE ST,SF,94102,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",130220321-AM08 -103020289,E01,10096581,Medical Incident,10/29/2010,10/29/2010,10/29/2010 08:21:52 PM,10/29/2010 08:22:09 PM,10/29/2010 08:22:39 PM,10/29/2010 08:23:58 PM,10/29/2010 08:26:03 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/29/2010 08:32:32 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7812234542945, -122.408928070797)",103020289-E01 -130760077,87,13025299,Medical Incident,03/17/2013,03/16/2013,03/17/2013 05:22:22 AM,03/17/2013 05:25:35 AM,03/17/2013 05:26:11 AM,03/17/2013 05:26:40 AM,03/17/2013 05:44:45 AM,04/25/2016 01:53:47 PM,04/25/2016 01:53:47 PM,No Merit,03/17/2013 06:00:47 AM,0 Block of 5TH ST,SF,94103,B03,1,2247,1,1,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7833716368249, -122.407382686506)",130760077-87 -113570356,KM04,11118736,Medical Incident,12/23/2011,12/23/2011,12/23/2011 05:23:00 PM,12/23/2011 05:24:41 PM,12/23/2011 05:24:54 PM,12/23/2011 05:25:40 PM,12/23/2011 05:29:52 PM,12/23/2011 05:41:38 PM,12/23/2011 06:03:57 PM,Code 2 Transport,12/23/2011 06:33:58 PM,600 Block of 27TH AVE,SF,94121,B07,14,7222,3,3,3,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7771331089354, -122.486739386436)",113570356-KM04 -133320286,E36,13112778,Structure Fire,11/28/2013,11/28/2013,11/28/2013 09:48:08 PM,11/28/2013 09:48:08 PM,11/28/2013 09:48:18 PM,11/28/2013 09:49:06 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 09:52:13 PM,8TH ST/MISSION ST,SF,94103,B02,36,2318,3,3,3,true,Alarm,1,ENGINE,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",133320286-E36 -113440117,E36,11114069,Medical Incident,12/10/2011,12/10/2011,12/10/2011 10:15:34 AM,12/10/2011 10:15:57 AM,12/10/2011 10:17:06 AM,12/10/2011 10:21:57 AM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/10/2011 10:24:35 AM,0 Block of 7TH ST,SF,94103,B02,36,2316,2,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7802039058686, -122.412272455406)",113440117-E36 -160671866,AM12,16026783,Medical Incident,03/07/2016,03/07/2016,03/07/2016 02:29:23 PM,03/07/2016 02:30:49 PM,03/07/2016 02:31:50 PM,03/07/2016 02:32:44 PM,03/07/2016 02:55:16 PM,03/07/2016 03:00:15 PM,03/07/2016 03:10:43 PM,Code 3 Transport,03/07/2016 04:55:28 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,9,11,Excelsior,"(37.7205476379806, -122.437805967469)",160671866-AM12 -133350260,72,13113643,Medical Incident,12/01/2013,12/01/2013,12/01/2013 05:28:12 PM,12/01/2013 05:30:37 PM,12/01/2013 05:31:50 PM,12/01/2013 05:32:36 PM,12/01/2013 05:44:02 PM,12/01/2013 05:50:00 PM,12/01/2013 06:04:33 PM,Code 2 Transport,12/01/2013 06:32:05 PM,0 Block of THE EMBARCADERO,SF,94107,B03,35,902,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",133350260-72 -160412512,83,16016528,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:59:02 PM,02/10/2016 04:01:33 PM,02/10/2016 04:01:51 PM,02/10/2016 04:02:01 PM,02/10/2016 04:08:03 PM,02/10/2016 04:26:34 PM,02/10/2016 04:39:06 PM,Code 2 Transport,02/10/2016 05:49:47 PM,LAKE MERCED BL/SUNSET BL,San Francisco,94132,B08,19,8817,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Lakeshore,"(37.729596662788, -122.493469931749)",160412512-83 -110520197,E03,11017238,Structure Fire,02/21/2011,02/21/2011,02/21/2011 02:23:19 PM,02/21/2011 02:23:19 PM,02/21/2011 02:23:25 PM,02/21/2011 02:24:24 PM,02/21/2011 02:26:21 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 02:26:27 PM,OFARRELL ST/TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,2,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",110520197-E03 -102420242,81,10076366,Medical Incident,08/30/2010,08/30/2010,08/30/2010 03:13:12 PM,08/30/2010 03:15:29 PM,08/30/2010 03:15:55 PM,08/30/2010 03:18:06 PM,08/30/2010 03:22:42 PM,08/30/2010 04:06:50 PM,08/30/2010 04:10:30 PM,Code 2 Transport,08/30/2010 04:21:09 PM,1100 Block of CALIFORNIA ST,SF,94108,B01,41,1445,3,3,3,true,,1,MEDIC,3,1,3,Nob Hill,"(37.7914675529268, -122.413273080086)",102420242-81 -112180079,54,11071976,Medical Incident,08/06/2011,08/05/2011,08/06/2011 04:49:35 AM,08/06/2011 04:49:42 AM,08/06/2011 04:49:58 AM,08/06/2011 04:50:15 AM,08/06/2011 04:53:16 AM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Patient Declined Transport,08/06/2011 05:01:25 AM,8TH ST/HARRISON ST,SF,94103,B03,29,2333,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7737596997868, -122.408516330795)",112180079-54 -110510281,79,11016972,Medical Incident,02/20/2011,02/20/2011,02/20/2011 05:20:51 PM,02/20/2011 05:22:46 PM,02/20/2011 05:23:17 PM,02/20/2011 05:23:30 PM,04/25/2016 02:05:59 PM,02/20/2011 05:45:38 PM,02/20/2011 05:49:45 PM,Code 2 Transport,02/20/2011 06:21:48 PM,HAIGHT ST/FILLMORE ST,SF,94117,B05,6,3526,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7721082581802, -122.430433920263)",110510281-79 -112450371,E13,11080924,Structure Fire,09/02/2011,09/02/2011,09/02/2011 09:30:44 PM,09/02/2011 09:30:44 PM,09/02/2011 09:30:59 PM,09/02/2011 09:31:56 PM,09/02/2011 09:33:54 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 09:34:06 PM,FRONT ST/VALLEJO ST,SF,94111,B01,13,1144,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7996814125443, -122.400066079763)",112450371-E13 -160732887,76,16029121,Medical Incident,03/13/2016,03/13/2016,03/13/2016 09:35:44 PM,03/13/2016 09:35:44 PM,03/13/2016 09:37:05 PM,03/13/2016 09:37:12 PM,03/13/2016 09:46:09 PM,03/13/2016 10:12:31 PM,03/13/2016 10:17:23 PM,Code 2 Transport,03/13/2016 10:43:48 PM,300 Block of SAN BRUNO AVE,San Francisco,94103,B02,29,2421,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7652490907914, -122.405593355876)",160732887-76 -121350380,RC2,12045062,Traffic Collision,05/14/2012,05/14/2012,05/14/2012 11:36:55 PM,05/14/2012 11:36:55 PM,05/14/2012 11:37:31 PM,05/14/2012 11:38:32 PM,05/14/2012 11:43:31 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 11:51:43 PM,34TH AV/JUDAH ST,SF,94122,B08,23,7541,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.760992301265, -122.493068123319)",121350380-RC2 -111550256,E42,11051287,Medical Incident,06/04/2011,06/04/2011,06/04/2011 03:40:32 PM,06/04/2011 03:41:51 PM,06/04/2011 03:42:11 PM,06/04/2011 03:43:12 PM,06/04/2011 03:44:29 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/04/2011 03:56:53 PM,2500 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7294190904862, -122.404411917151)",111550256-E42 -131460052,E33,13049392,Outside Fire,05/26/2013,05/25/2013,05/26/2013 03:15:23 AM,05/26/2013 03:17:25 AM,05/26/2013 03:17:30 AM,05/26/2013 03:19:18 AM,05/26/2013 03:23:07 AM,04/25/2016 01:52:36 PM,04/25/2016 01:52:36 PM,Other,05/26/2013 04:10:50 AM,VERNON ST/GARFIELD ST,SF,94132,B09,33,8432,3,3,3,true,Fire,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7196654061955, -122.468052099596)",131460052-E33 -111260389,RS1,11041870,Traffic Collision,05/06/2011,05/06/2011,05/06/2011 10:37:22 PM,05/06/2011 10:39:22 PM,05/06/2011 10:39:36 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 10:42:37 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",111260389-RS1 -131130362,88,13038256,Structure Fire,04/23/2013,04/23/2013,04/23/2013 09:25:13 PM,04/23/2013 09:25:42 PM,04/23/2013 09:25:50 PM,04/23/2013 09:26:01 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 09:30:32 PM,600 Block of CORTLAND AVE,SF,94110,B06,32,5732,3,3,3,true,Alarm,1,MEDIC,8,6,9,Bernal Heights,"(37.7389128649709, -122.4155498834)",131130362-88 -160763745,RC3,16030353,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:46:04 PM,03/16/2016 08:47:12 PM,03/16/2016 09:22:18 PM,03/16/2016 09:23:54 PM,03/16/2016 09:34:05 PM,03/16/2016 09:50:35 PM,03/16/2016 09:55:16 PM,Code 3 Transport,03/16/2016 10:56:06 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,2,2,2,true,Non Life-threatening,1,RESCUE CAPTAIN,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160763745-RC3 -90160292,T02,9004840,Alarms,01/16/2009,01/16/2009,01/16/2009 06:12:10 PM,01/16/2009 06:13:27 PM,01/16/2009 06:13:46 PM,01/16/2009 06:15:59 PM,01/16/2009 06:16:49 PM,04/25/2016 03:30:32 PM,04/25/2016 03:30:32 PM,Fire,01/16/2009 06:23:30 PM,1000 Block of POWELL ST,SF,94108,B01,2,1355,3,3,3,false,,1,TRUCK,2,1,3,Nob Hill,"(37.7942855985686, -122.409699641182)",090160292-T02 -102620341,54,10083027,Medical Incident,09/19/2010,09/19/2010,09/19/2010 09:30:31 PM,09/19/2010 09:30:42 PM,09/19/2010 09:32:18 PM,09/19/2010 09:32:23 PM,09/19/2010 09:50:07 PM,09/19/2010 10:01:38 PM,09/19/2010 10:09:59 PM,Code 2 Transport,09/19/2010 10:40:58 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,2,2,2,true,,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",102620341-54 -160240979,KM04,16009473,Medical Incident,01/24/2016,01/24/2016,01/24/2016 09:18:39 AM,01/24/2016 09:22:01 AM,01/24/2016 09:23:05 AM,01/24/2016 09:23:43 AM,01/24/2016 09:29:09 AM,01/24/2016 09:43:05 AM,01/24/2016 09:55:35 AM,Code 2 Transport,01/24/2016 10:30:43 AM,3200 Block of CALIFORNIA ST,San Francisco,94118,B04,10,4421,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7872098592651, -122.447641497264)",160240979-KM04 -160842657,68,16033455,Traffic Collision,03/24/2016,03/24/2016,03/24/2016 03:50:25 PM,03/24/2016 03:51:31 PM,03/24/2016 04:05:41 PM,03/24/2016 04:05:41 PM,03/24/2016 04:27:59 PM,03/24/2016 04:42:31 PM,03/24/2016 05:00:57 PM,Code 2 Transport,03/24/2016 05:43:37 PM,CALL BOX: FS YB-BLDG 213,San Francisco,94130,B03,48,2951,3,3,3,true,Potentially Life-Threatening,1,MEDIC,8,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",160842657-68 -130450040,E38,13015140,Alarms,02/14/2013,02/13/2013,02/14/2013 05:46:34 AM,02/14/2013 05:47:35 AM,02/14/2013 05:47:44 AM,02/14/2013 05:49:12 AM,02/14/2013 05:51:01 AM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 06:04:42 AM,1700 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,3,3,false,Alarm,1,ENGINE,2,4,2,Western Addition,"(37.7902108323452, -122.423141017919)",130450040-E38 -130420104,T03,13014261,Alarms,02/11/2013,02/11/2013,02/11/2013 09:37:30 AM,02/11/2013 09:39:12 AM,02/11/2013 09:40:26 AM,04/25/2016 01:54:21 PM,02/11/2013 09:44:01 AM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,Other,02/11/2013 09:44:29 AM,400 Block of BRANNAN ST,SF,94107,B03,8,2223,3,3,3,true,Alarm,1,TRUCK,2,3,6,South of Market,"(37.778772691441, -122.395868429958)",130420104-T03 -122710196,57,12089453,Medical Incident,09/27/2012,09/27/2012,09/27/2012 03:30:16 PM,09/27/2012 03:31:44 PM,09/27/2012 03:31:51 PM,09/27/2012 03:33:25 PM,09/27/2012 03:40:12 PM,09/27/2012 03:50:04 PM,09/27/2012 04:14:08 PM,Code 2 Transport,09/27/2012 04:43:08 PM,MISSION ST/9TH ST,SF,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",122710196-57 -110490393,64,11016363,Medical Incident,02/18/2011,02/18/2011,02/18/2011 09:43:11 PM,02/18/2011 09:47:14 PM,02/18/2011 09:47:27 PM,02/18/2011 09:47:34 PM,02/18/2011 09:52:19 PM,02/18/2011 10:01:28 PM,02/18/2011 10:12:23 PM,Code 3 Transport,02/18/2011 10:44:23 PM,400 Block of ROLPH ST,SF,94112,B09,43,6226,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7122411987932, -122.433864119271)",110490393-64 -160731773,AM02,16029002,Other,03/13/2016,03/13/2016,03/13/2016 03:17:55 PM,03/13/2016 03:17:55 PM,03/13/2016 03:19:15 PM,03/13/2016 03:19:19 PM,03/13/2016 03:35:39 PM,03/13/2016 03:39:27 PM,03/13/2016 04:10:01 PM,Code 2 Transport,03/13/2016 04:21:24 PM,300 Block of BUCKINGHAM WAY,San Francisco,94132,B08,19,8854,2,2,2,false,Alarm,1,PRIVATE,2,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",160731773-AM02 -160480559,85,16019238,Medical Incident,02/17/2016,02/16/2016,02/17/2016 07:01:54 AM,02/17/2016 07:01:54 AM,02/17/2016 07:02:13 AM,02/17/2016 07:02:20 AM,02/17/2016 07:06:33 AM,02/17/2016 07:31:53 AM,02/17/2016 07:48:17 AM,Code 2 Transport,02/17/2016 08:24:48 AM,1ST ST/MARKET ST,San Francisco,94105,B03,13,2143,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",160480559-85 -113550228,E13,11117907,Traffic Collision,12/21/2011,12/21/2011,12/21/2011 02:44:20 PM,12/21/2011 02:45:30 PM,12/21/2011 02:46:56 PM,12/21/2011 02:47:57 PM,12/21/2011 02:54:18 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 03:01:08 PM,SPEAR ST/MARKET ST,SF,94105,B01,13,1113,2,2,2,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7937545576782, -122.395583553529)",113550228-E13 -121260387,67,12042054,Medical Incident,05/05/2012,05/05/2012,05/05/2012 09:14:22 PM,05/05/2012 09:16:02 PM,05/05/2012 09:16:26 PM,05/05/2012 09:16:52 PM,05/05/2012 09:23:52 PM,05/05/2012 09:39:37 PM,05/05/2012 10:04:02 PM,Code 2 Transport,05/05/2012 10:20:50 PM,300 Block of MOSCOW ST,SF,94112,B09,43,6155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7220697351307, -122.427115807241)",121260387-67 -140110074,E07,14003758,Medical Incident,01/11/2014,01/10/2014,01/11/2014 07:05:24 AM,01/11/2014 07:06:28 AM,01/11/2014 07:07:22 AM,01/11/2014 07:09:25 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/11/2014 07:12:28 AM,22ND ST/POTRERO AV,SF,94110,B10,7,2553,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",140110074-E07 -160300444,75,16011659,Medical Incident,01/30/2016,01/29/2016,01/30/2016 03:14:26 AM,01/30/2016 03:15:59 AM,01/30/2016 03:16:13 AM,01/30/2016 03:16:28 AM,01/30/2016 03:21:31 AM,01/30/2016 03:28:54 AM,01/30/2016 03:43:27 AM,Code 3 Transport,01/30/2016 04:24:18 AM,0 Block of SCOTT ST,San Francisco,94117,B05,21,4142,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Haight Ashbury,"(37.7702145062416, -122.435186512309)",160300444-75 -111780023,66,11058649,Medical Incident,06/27/2011,06/26/2011,06/27/2011 01:45:07 AM,06/27/2011 01:47:07 AM,06/27/2011 01:48:36 AM,06/27/2011 01:48:58 AM,06/27/2011 01:51:57 AM,06/27/2011 02:02:38 AM,06/27/2011 02:05:32 AM,Code 2 Transport,06/27/2011 02:19:57 AM,MARKET ST/CHURCH ST,SF,94114,B02,6,5213,1,1,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7675044595983, -122.428948567606)",111780023-66 -121510217,66,12050071,Medical Incident,05/30/2012,05/30/2012,05/30/2012 02:30:43 PM,05/30/2012 02:31:09 PM,05/30/2012 02:31:16 PM,05/30/2012 02:31:26 PM,05/30/2012 02:46:25 PM,05/30/2012 02:54:57 PM,05/30/2012 03:08:07 PM,Code 2 Transport,05/30/2012 03:34:12 PM,JEFFERSON ST/MASON ST,SF,94133,B01,28,1344,3,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8084210588577, -122.414164435002)",121510217-66 -110130103,93,11004251,Medical Incident,01/13/2011,01/13/2011,01/13/2011 09:09:43 AM,01/13/2011 09:10:51 AM,01/13/2011 09:11:00 AM,01/13/2011 09:11:13 AM,01/13/2011 09:23:34 AM,01/13/2011 09:40:00 AM,01/13/2011 10:16:39 AM,Code 2 Transport,01/13/2011 10:23:54 AM,800 Block of 47TH AVE,SF,94121,B07,34,7277,1,1,2,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7724297631777, -122.507750347312)",110130103-93 -132300047,E03,13077549,Medical Incident,08/18/2013,08/17/2013,08/18/2013 02:22:07 AM,08/18/2013 02:22:43 AM,08/18/2013 02:23:18 AM,08/18/2013 02:25:03 AM,08/18/2013 02:27:23 AM,04/25/2016 01:51:15 PM,04/25/2016 01:51:15 PM,Other,08/18/2013 02:54:24 AM,600 Block of LARKIN ST,SF,94109,B02,3,1643,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7840149232554, -122.417594247706)",132300047-E03 -113620070,93,11120156,Medical Incident,12/28/2011,12/27/2011,12/28/2011 07:50:58 AM,12/28/2011 07:51:27 AM,12/28/2011 07:51:54 AM,12/28/2011 07:52:19 AM,12/28/2011 07:58:51 AM,12/28/2011 08:18:24 AM,12/28/2011 08:32:45 AM,Code 2 Transport,12/28/2011 09:10:52 AM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7209580935201, -122.387166280374)",113620070-93 -160622268,57,16024735,Medical Incident,03/02/2016,03/02/2016,03/02/2016 02:29:27 PM,03/02/2016 02:31:02 PM,03/02/2016 02:31:18 PM,03/02/2016 02:34:26 PM,03/02/2016 02:38:27 PM,03/02/2016 02:54:02 PM,03/02/2016 03:03:19 PM,Code 2 Transport,03/02/2016 03:53:12 PM,2000 Block of SILVER AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7360541412918, -122.399492021329)",160622268-57 -121890243,CR1,12063016,Water Rescue,07/07/2012,07/07/2012,07/07/2012 04:07:34 PM,07/07/2012 04:08:10 PM,07/07/2012 04:09:33 PM,07/07/2012 04:12:12 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/07/2012 04:15:30 PM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,3,3,3,false,Fire,1,SUPPORT,7,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",121890243-CR1 -111840278,E13,11060860,Citizen Assist / Service Call,07/03/2011,07/03/2011,07/03/2011 04:36:42 PM,07/03/2011 04:38:38 PM,07/03/2011 04:39:07 PM,07/03/2011 04:40:01 PM,07/03/2011 04:45:00 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,07/03/2011 05:04:10 PM,800 Block of CLAY ST,SF,94108,B01,13,1313,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7941136505366, -122.407046655058)",111840278-E13 -160133493,68,16005324,Medical Incident,01/13/2016,01/13/2016,01/13/2016 07:05:31 PM,01/13/2016 07:07:27 PM,01/13/2016 07:07:59 PM,01/13/2016 07:08:19 PM,01/13/2016 07:15:53 PM,01/13/2016 07:33:26 PM,01/13/2016 07:40:03 PM,Code 2 Transport,01/13/2016 08:59:14 PM,1200 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7821262448866, -122.430552499168)",160133493-68 -121900054,77,12063194,Medical Incident,07/08/2012,07/07/2012,07/08/2012 04:05:52 AM,07/08/2012 04:08:41 AM,07/08/2012 04:10:19 AM,07/08/2012 04:10:26 AM,07/08/2012 04:19:02 AM,07/08/2012 04:23:53 AM,07/08/2012 04:33:27 AM,Code 2 Transport,07/08/2012 04:40:39 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",121900054-77 -131640243,E42,13055760,Structure Fire,06/13/2013,06/13/2013,06/13/2013 03:18:49 PM,06/13/2013 03:20:35 PM,06/13/2013 03:24:39 PM,06/13/2013 03:26:22 PM,06/13/2013 03:30:37 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Other,06/13/2013 03:50:37 PM,0 Block of OCEAN AVE,SF,94112,B09,43,6121,3,3,3,true,Fire,1,ENGINE,5,9,11,Outer Mission,"(37.7237008924072, -122.436724757716)",131640243-E42 -160860145,71,16034039,Medical Incident,03/26/2016,03/25/2016,03/26/2016 01:01:20 AM,03/26/2016 01:02:16 AM,03/26/2016 01:02:38 AM,03/26/2016 01:03:05 AM,03/26/2016 01:08:05 AM,03/26/2016 01:20:34 AM,03/26/2016 01:29:48 AM,Code 2 Transport,03/26/2016 02:02:49 AM,500 Block of HOWARD ST,San Francisco,94105,B03,35,2141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7878246694374, -122.397032436528)",160860145-71 -110630233,E15,11020743,Medical Incident,03/04/2011,03/04/2011,03/04/2011 02:09:39 PM,03/04/2011 02:11:24 PM,03/04/2011 02:11:32 PM,03/04/2011 02:12:34 PM,03/04/2011 02:14:18 PM,04/25/2016 02:05:48 PM,03/04/2011 02:15:31 PM,Other,03/04/2011 02:23:07 PM,0 Block of PHELAN AVE,SF,94112,B09,15,8225,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",110630233-E15 -120010332,E26,12000285,Medical Incident,01/01/2012,01/01/2012,01/01/2012 08:11:21 AM,01/01/2012 08:13:01 AM,01/01/2012 08:13:41 AM,01/01/2012 08:15:56 AM,01/01/2012 08:19:04 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 08:59:21 AM,500 Block of VALLEY ST,SF,94131,B06,26,5565,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7441153984165, -122.434268338413)",120010332-E26 -140540334,89,14018423,Medical Incident,02/23/2014,02/23/2014,02/23/2014 11:48:05 PM,02/23/2014 11:49:30 PM,02/23/2014 11:50:03 PM,02/23/2014 11:50:20 PM,02/24/2014 12:00:16 AM,02/24/2014 12:25:18 AM,02/24/2014 12:30:25 AM,Code 2 Transport,02/24/2014 12:56:50 AM,4000 Block of 18TH ST,SF,94114,B05,6,5415,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7609766090845, -122.434457353955)",140540334-89 -112510247,B09,11082804,Alarms,09/08/2011,09/08/2011,09/08/2011 02:21:30 PM,09/08/2011 02:22:46 PM,09/08/2011 02:23:06 PM,09/08/2011 02:23:56 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,04/25/2016 02:02:46 PM,Other,09/08/2011 02:30:11 PM,500 Block of LANSDALE AVE,SF,94127,B09,39,8257,3,3,3,false,,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7360117950909, -122.456086256288)",112510247-B09 -132450275,RS2,13082751,Water Rescue,09/02/2013,09/02/2013,09/02/2013 05:12:10 PM,09/02/2013 05:12:44 PM,09/02/2013 05:13:54 PM,09/02/2013 05:14:21 PM,04/25/2016 01:50:59 PM,04/25/2016 01:50:59 PM,04/25/2016 01:50:59 PM,Other,09/02/2013 05:20:48 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,RESCUE SQUAD,12,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132450275-RS2 -120990163,T15,12032792,Structure Fire,04/08/2012,04/08/2012,04/08/2012 01:36:15 PM,04/08/2012 01:36:16 PM,04/08/2012 01:36:30 PM,04/08/2012 01:37:09 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,04/25/2016 01:59:16 PM,Other,04/08/2012 01:39:41 PM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,3,3,3,false,Alarm,1,TRUCK,2,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",120990163-T15 -122100202,78,12069782,Medical Incident,07/28/2012,07/28/2012,07/28/2012 02:27:12 PM,07/28/2012 02:27:43 PM,07/28/2012 02:28:01 PM,07/28/2012 02:29:19 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,No Merit,07/28/2012 02:31:30 PM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",122100202-78 -133300268,E06,13112134,Alarms,11/26/2013,11/26/2013,11/26/2013 05:14:53 PM,11/26/2013 05:16:48 PM,11/26/2013 05:17:30 PM,11/26/2013 05:18:34 PM,11/26/2013 05:20:33 PM,04/25/2016 01:49:34 PM,04/25/2016 01:49:34 PM,Other,11/26/2013 05:29:14 PM,1800 Block of MARKET ST,SF,94102,B02,36,3416,3,3,3,true,Alarm,1,ENGINE,1,2,8,Hayes Valley,"(37.771292378056, -122.424336949139)",133300268-E06 -160343374,KM03,16013588,Medical Incident,02/03/2016,02/03/2016,02/03/2016 08:58:10 PM,02/03/2016 08:59:18 PM,02/03/2016 09:00:20 PM,02/03/2016 09:00:48 PM,02/03/2016 09:03:48 PM,02/03/2016 09:07:38 PM,02/03/2016 09:18:35 PM,Code 2 Transport,02/03/2016 09:48:49 PM,1000 Block of CLEMENT ST,San Francisco,94118,B07,31,7141,3,3,3,false,Non Life-threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7827319876645, -122.470311998112)",160343374-KM03 -113330232,87,11110348,Medical Incident,11/29/2011,11/29/2011,11/29/2011 04:13:44 PM,11/29/2011 04:14:06 PM,11/29/2011 04:14:30 PM,04/25/2016 02:01:25 PM,11/29/2011 04:31:23 PM,11/29/2011 04:39:19 PM,11/29/2011 04:52:09 PM,Code 2 Transport,11/29/2011 05:16:56 PM,1000 Block of STOCKTON ST,SF,94108,B01,2,1331,3,2,2,true,,1,MEDIC,3,1,3,Chinatown,"(37.7953737061096, -122.408234538541)",113330232-87 -140940357,E37,14031750,Alarms,04/04/2014,04/04/2014,04/04/2014 09:29:56 PM,04/04/2014 09:32:10 PM,04/04/2014 09:32:22 PM,04/04/2014 09:35:45 PM,04/04/2014 09:36:02 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Fire,04/04/2014 09:55:47 PM,2100 Block of 26TH ST,SAN FRANCISCO,94107,B10,37,2622,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7506048382754, -122.400710627784)",140940357-E37 -160250286,62,16009773,Medical Incident,01/25/2016,01/24/2016,01/25/2016 03:03:33 AM,01/25/2016 03:05:13 AM,01/25/2016 03:05:59 AM,01/25/2016 03:06:09 AM,01/25/2016 03:09:33 AM,01/25/2016 03:18:01 AM,01/25/2016 03:22:03 AM,Code 2 Transport,01/25/2016 04:00:49 AM,200 Block of MASONIC AVE,San Francisco,94118,B05,10,4461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,2,Lone Mountain/USF,"(37.7794015761116, -122.447084405267)",160250286-62 -132260341,B08,13076424,Alarms,08/14/2013,08/14/2013,08/14/2013 07:50:51 PM,08/14/2013 07:51:29 PM,08/14/2013 07:51:57 PM,08/14/2013 07:53:18 PM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,04/25/2016 01:51:18 PM,Other,08/14/2013 07:57:23 PM,1400 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,false,Alarm,1,CHIEF,3,5,5,Inner Sunset,"(37.7614340333644, -122.46176630545)",132260341-B08 -160090672,67,16003553,Medical Incident,01/09/2016,01/08/2016,01/09/2016 07:18:06 AM,01/09/2016 07:20:07 AM,01/09/2016 07:20:20 AM,01/09/2016 07:21:17 AM,01/09/2016 07:27:31 AM,01/09/2016 07:50:12 AM,01/09/2016 07:59:04 AM,Code 2 Transport,01/09/2016 09:03:02 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",160090672-67 -123480398,92,12116540,Medical Incident,12/13/2012,12/13/2012,12/13/2012 11:48:24 PM,12/13/2012 11:49:19 PM,12/13/2012 11:49:41 PM,12/13/2012 11:51:12 PM,12/13/2012 11:53:29 PM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Patient Declined Transport,12/14/2012 12:44:54 AM,900 Block of GREEN ST,SF,94133,B01,2,1441,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",123480398-92 -160020813,AM02,16000660,Medical Incident,01/02/2016,01/02/2016,01/02/2016 08:56:39 AM,01/02/2016 08:57:49 AM,01/02/2016 08:58:14 AM,01/02/2016 08:58:44 AM,01/02/2016 09:10:28 AM,01/02/2016 09:14:56 AM,01/02/2016 09:28:46 AM,Code 2 Transport,01/02/2016 10:02:51 AM,0 Block of CIELITO DR,San Francisco,94134,B09,43,6246,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7096253280817, -122.422023475946)",160020813-AM02 -122290318,B02,12075991,Medical Incident,08/16/2012,08/16/2012,08/16/2012 06:52:46 PM,08/16/2012 06:53:57 PM,08/16/2012 06:54:31 PM,08/16/2012 06:55:49 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Other,08/16/2012 06:56:07 PM,100 Block of JONES ST,SF,94102,B03,1,1456,E,E,3,false,Potentially Life-Threatening,1,CHIEF,2,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",122290318-B02 -160651185,KM11,16025892,Medical Incident,03/05/2016,03/05/2016,03/05/2016 10:34:09 AM,03/05/2016 10:35:12 AM,03/05/2016 10:36:06 AM,03/05/2016 10:36:17 AM,03/05/2016 10:55:05 AM,03/05/2016 11:14:33 AM,03/05/2016 11:30:00 AM,Code 2 Transport,03/05/2016 12:05:51 PM,1800 Block of PALOU AVE,San Francisco,94124,B10,17,6471,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7368765170766, -122.396140592723)",160651185-KM11 -110550090,64,11018051,Medical Incident,02/24/2011,02/24/2011,02/24/2011 08:20:06 AM,02/24/2011 08:21:01 AM,02/24/2011 08:21:14 AM,02/24/2011 08:22:11 AM,02/24/2011 08:26:53 AM,02/24/2011 08:56:31 AM,02/24/2011 09:13:12 AM,Code 2 Transport,02/24/2011 09:44:28 AM,400 Block of BUSH ST,SF,94108,B01,13,1315,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7906704035857, -122.405181396784)",110550090-64 -131070394,E17,13036145,Medical Incident,04/17/2013,04/17/2013,04/17/2013 10:43:58 PM,04/17/2013 10:44:27 PM,04/17/2013 10:44:59 PM,04/17/2013 10:46:06 PM,04/17/2013 10:51:07 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/17/2013 10:55:08 PM,FITZGERALD AV/JENNINGS ST,SF,94124,B10,17,6614,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7220347181097, -122.393171960162)",131070394-E17 -160854322,63,16034022,Medical Incident,03/25/2016,03/25/2016,03/25/2016 11:53:34 PM,03/25/2016 11:55:31 PM,03/25/2016 11:55:54 PM,03/26/2016 12:00:50 AM,03/26/2016 12:05:04 AM,03/26/2016 12:30:25 AM,03/26/2016 12:43:17 AM,Code 2 Transport,03/26/2016 12:58:16 AM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160854322-63 -122420064,E38,12079956,Alarms,08/29/2012,08/28/2012,08/29/2012 07:16:54 AM,08/29/2012 07:18:03 AM,08/29/2012 07:18:15 AM,08/29/2012 07:19:42 AM,08/29/2012 07:22:04 AM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/29/2012 07:30:39 AM,2100 Block of PACIFIC AVE,SF,94115,B04,38,3441,3,3,3,false,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7938179536129, -122.430615255773)",122420064-E38 -121310288,83,12043665,Structure Fire,05/10/2012,05/10/2012,05/10/2012 05:43:00 PM,05/10/2012 05:44:07 PM,05/10/2012 05:44:30 PM,05/10/2012 05:44:43 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,04/25/2016 01:58:45 PM,Other,05/10/2012 05:51:03 PM,9TH AV/LINCOLN WY,SF,94122,B08,22,7333,3,3,3,true,Fire,1,MEDIC,10,7,5,Inner Sunset,"(37.7659246634378, -122.466442489988)",121310288-83 -111000028,B07,11033081,Alarms,04/10/2011,04/09/2011,04/10/2011 01:33:26 AM,04/10/2011 01:34:49 AM,04/10/2011 01:35:05 AM,04/10/2011 01:37:00 AM,04/10/2011 01:38:42 AM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/10/2011 01:44:37 AM,500 Block of 6TH AVE,SF,94118,B07,31,7131,3,3,3,false,,1,CHIEF,1,7,1,Inner Richmond,"(37.7781659031536, -122.464008695862)",111000028-B07 -140880213,KM14,14029674,Other,03/29/2014,03/29/2014,03/29/2014 03:02:19 PM,03/29/2014 03:03:13 PM,03/29/2014 03:09:12 PM,03/29/2014 03:09:12 PM,03/29/2014 03:09:12 PM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,Other,03/29/2014 03:09:28 PM,300 Block of FULTON ST,SAN FRANCISCO,94102,B02,36,3264,3,3,3,false,Alarm,1,PRIVATE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140880213-KM14 -133580002,E07,13121548,Medical Incident,12/24/2013,12/23/2013,12/24/2013 12:07:46 AM,12/24/2013 12:07:54 AM,12/24/2013 12:09:00 AM,12/24/2013 12:10:54 AM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,04/25/2016 01:49:05 PM,Patient Declined Transport,12/24/2013 12:30:01 AM,2500 Block of MISSION ST,SF,94110,B06,7,5472,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7562403438982, -122.418755320213)",133580002-E07 -110160093,92,11005267,Medical Incident,01/16/2011,01/15/2011,01/16/2011 06:48:10 AM,01/16/2011 06:48:21 AM,01/16/2011 06:48:40 AM,01/16/2011 06:48:49 AM,01/16/2011 06:51:48 AM,01/16/2011 07:15:04 AM,01/16/2011 07:21:17 AM,Code 2 Transport,01/16/2011 07:39:57 AM,GREENWICH ST/GOUGH ST,SF,94123,B04,16,3336,3,3,3,true,,1,MEDIC,1,4,2,Marina,"(37.7999972564381, -122.427645312428)",110160093-92 -160561508,KM04,16022350,Medical Incident,02/25/2016,02/25/2016,02/25/2016 11:27:02 AM,02/25/2016 11:27:02 AM,02/25/2016 11:27:02 AM,02/25/2016 11:27:02 AM,02/25/2016 11:27:02 AM,02/25/2016 12:01:58 PM,02/25/2016 12:36:24 PM,Code 2 Transport,02/25/2016 01:15:53 PM,CHARLES J BRENHAM ST/MCALLISTER ST,San Francisco,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7809937815607, -122.413148050497)",160561508-KM04 -102570132,60,10081150,Medical Incident,09/14/2010,09/14/2010,09/14/2010 10:40:22 AM,09/14/2010 10:41:16 AM,09/14/2010 10:41:26 AM,09/14/2010 10:41:39 AM,09/14/2010 10:45:33 AM,09/14/2010 11:06:44 AM,09/14/2010 11:34:38 AM,Code 2 Transport,09/14/2010 12:02:41 PM,300 Block of HOWARD ST,SF,94105,B03,35,2124,E,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",102570132-60 -132090038,85,13070572,Other,07/28/2013,07/27/2013,07/28/2013 01:36:32 AM,07/28/2013 01:39:07 AM,07/28/2013 02:14:34 AM,07/28/2013 02:15:51 AM,07/28/2013 02:23:27 AM,04/25/2016 01:51:36 PM,04/25/2016 01:51:36 PM,Other,07/28/2013 02:27:45 AM,300 Block of POWELL ST,SF,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,9,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",132090038-85 -130120357,RC1,13004247,Structure Fire,01/12/2013,01/12/2013,01/12/2013 10:41:02 PM,01/12/2013 10:41:58 PM,01/12/2013 10:51:06 PM,01/12/2013 10:53:18 PM,01/12/2013 10:57:16 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/12/2013 11:08:38 PM,2400 Block of OCTAVIA ST,SF,94109,B04,38,3332,3,3,3,true,Fire,1,RESCUE CAPTAIN,11,4,2,Pacific Heights,"(37.7946551961653, -122.428183423328)",130120357-RC1 -113190278,AM08,11106014,Medical Incident,11/15/2011,11/15/2011,11/15/2011 04:02:53 PM,11/15/2011 04:03:24 PM,11/15/2011 04:04:01 PM,11/15/2011 04:05:11 PM,11/15/2011 04:09:05 PM,11/15/2011 04:23:46 PM,11/15/2011 04:42:43 PM,Code 2 Transport,11/15/2011 05:28:01 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7826911213472, -122.409536662692)",113190278-AM08 -131450081,E01,13049111,Medical Incident,05/25/2013,05/24/2013,05/25/2013 07:57:52 AM,05/25/2013 07:58:52 AM,05/25/2013 07:59:12 AM,05/25/2013 07:59:55 AM,05/25/2013 08:03:49 AM,04/25/2016 01:52:37 PM,04/25/2016 01:52:37 PM,Other,05/25/2013 08:07:29 AM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",131450081-E01 -102550287,KM15,10080733,Medical Incident,09/12/2010,09/12/2010,09/12/2010 10:20:46 PM,09/12/2010 10:21:00 PM,09/12/2010 10:22:21 PM,04/25/2016 02:08:37 PM,04/25/2016 02:08:37 PM,04/25/2016 02:08:37 PM,04/25/2016 02:08:37 PM,Other,04/25/2016 02:08:37 PM,2000 Block of POLK ST,SF,94109,B04,41,3125,2,2,2,false,,1,PRIVATE,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",102550287-KM15 -120940197,B08,12031162,Vehicle Fire,04/03/2012,04/03/2012,04/03/2012 02:29:33 PM,04/03/2012 02:32:32 PM,04/03/2012 02:32:43 PM,04/03/2012 02:36:58 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Fire,04/03/2012 02:40:58 PM,100 Block of FARRAGUT AVE,SF,94112,B09,33,8353,3,3,3,false,Fire,1,CHIEF,3,9,11,Outer Mission,"(37.7113842185025, -122.451205094979)",120940197-B08 -160292013,73,16011471,Other,01/29/2016,01/29/2016,01/29/2016 02:16:46 PM,01/29/2016 02:17:18 PM,01/29/2016 02:18:00 PM,01/29/2016 02:18:15 PM,01/29/2016 02:27:05 PM,01/29/2016 02:52:13 PM,01/29/2016 03:20:08 PM,Code 2 Transport,01/29/2016 04:33:08 PM,GREAT HY/SKYLINE BL,San Francisco,94132,B08,19,8713,3,3,3,true,,1,MEDIC,1,8,7,Lakeshore,"(37.7252595509479, -122.503040635623)",160292013-73 -123250377,E31,12108243,Medical Incident,11/20/2012,11/20/2012,11/20/2012 08:27:23 PM,11/20/2012 08:28:11 PM,11/20/2012 08:28:23 PM,11/20/2012 08:29:27 PM,11/20/2012 08:31:27 PM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,Other,11/20/2012 08:42:00 PM,400 Block of 8TH AVE,SF,94118,B07,31,7135,3,2,2,true,Non Life-threatening,1,ENGINE,2,7,1,Inner Richmond,"(37.7799623898106, -122.466288408431)",123250377-E31 -130890139,E03,13029713,Structure Fire,03/30/2013,03/30/2013,03/30/2013 11:48:38 AM,03/30/2013 11:48:38 AM,03/30/2013 11:48:57 AM,03/30/2013 11:49:05 AM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 11:50:33 AM,POLK ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",130890139-E03 -112150066,B04,11070887,Alarms,08/03/2011,08/02/2011,08/03/2011 07:42:28 AM,08/03/2011 07:44:13 AM,08/03/2011 07:44:34 AM,08/03/2011 07:45:43 AM,08/03/2011 07:50:34 AM,04/25/2016 02:03:21 PM,04/25/2016 02:03:21 PM,Fire,08/03/2011 07:59:07 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,CHIEF,2,4,3,Nob Hill,"(37.7899917286128, -122.418035034103)",112150066-B04 -111360066,E08,11045188,Medical Incident,05/16/2011,05/15/2011,05/16/2011 07:26:56 AM,05/16/2011 07:29:29 AM,05/16/2011 07:31:02 AM,05/16/2011 07:34:41 AM,05/16/2011 07:35:27 AM,04/25/2016 02:04:36 PM,04/25/2016 02:04:36 PM,Other,05/16/2011 07:53:34 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",111360066-E08 -131670237,AM02,13056738,Medical Incident,06/16/2013,06/16/2013,06/16/2013 03:35:21 PM,06/16/2013 03:36:40 PM,06/16/2013 03:37:23 PM,06/16/2013 03:37:54 PM,06/16/2013 03:40:36 PM,06/16/2013 03:52:41 PM,06/16/2013 04:10:19 PM,Code 2 Transport,06/16/2013 04:56:34 PM,400 Block of EDDY ST,SF,94109,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",131670237-AM02 -130240312,E08,13008390,Medical Incident,01/24/2013,01/24/2013,01/24/2013 05:53:02 PM,01/24/2013 05:53:32 PM,01/24/2013 05:54:17 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 05:56:14 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7803475492385, -122.406487967809)",130240312-E08 -121930249,E09,12064294,Electrical Hazard,07/11/2012,07/11/2012,07/11/2012 03:54:26 PM,07/11/2012 03:56:06 PM,07/11/2012 03:56:16 PM,07/11/2012 03:56:37 PM,07/11/2012 04:00:19 PM,04/25/2016 01:57:46 PM,04/25/2016 01:57:46 PM,Other,07/11/2012 04:01:37 PM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",121930249-E09 -121920086,E08,12063838,Alarms,07/10/2012,07/10/2012,07/10/2012 08:19:03 AM,07/10/2012 08:19:56 AM,07/10/2012 08:20:02 AM,07/10/2012 08:22:08 AM,07/10/2012 08:25:51 AM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 08:32:13 AM,600 Block of 2ND ST,SF,94107,B03,8,2153,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7811877689642, -122.391351449722)",121920086-E08 -130900108,B02,13030051,Structure Fire,03/31/2013,03/31/2013,03/31/2013 09:35:16 AM,03/31/2013 09:35:16 AM,03/31/2013 09:35:23 AM,03/31/2013 09:35:42 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 09:40:04 AM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",130900108-B02 -132740314,T10,13093222,Medical Incident,10/01/2013,10/01/2013,10/01/2013 08:38:17 PM,10/01/2013 08:39:07 PM,10/01/2013 08:39:45 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 08:41:51 PM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,2,2,false,Potentially Life-Threatening,1,TRUCK,2,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",132740314-T10 -133060118,B06,13103989,Structure Fire,11/02/2013,11/02/2013,11/02/2013 09:46:11 AM,11/02/2013 09:48:03 AM,11/02/2013 09:58:43 AM,11/02/2013 09:59:45 AM,11/02/2013 10:04:49 AM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/02/2013 11:02:48 AM,CLARENDON AV/LAGUNA HONDA BL,SF,94131,B08,20,8635,3,3,3,false,Fire,1,CHIEF,4,8,7,West of Twin Peaks,"(37.7515035610676, -122.461523603256)",133060118-B06 -121180148,RC2,12039056,Medical Incident,04/27/2012,04/27/2012,04/27/2012 10:18:06 AM,04/27/2012 10:19:06 AM,04/27/2012 10:20:13 AM,04/27/2012 10:22:11 AM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,04/25/2016 01:58:58 PM,Other,04/27/2012 10:25:38 AM,4300 Block of KIRKHAM ST,SF,94122,B08,23,7717,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,4,8,4,Sunset/Parkside,"(37.7584344305601, -122.507398322699)",121180148-RC2 -132570297,B03,13087000,Alarms,09/14/2013,09/14/2013,09/14/2013 05:40:02 PM,09/14/2013 05:41:24 PM,09/14/2013 05:41:34 PM,09/14/2013 05:42:45 PM,09/14/2013 05:45:49 PM,04/25/2016 01:50:47 PM,04/25/2016 01:50:47 PM,Other,09/14/2013 05:46:56 PM,0 Block of STEVENSON ST,SF,94105,B03,1,2144,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7893540721016, -122.400032359721)",132570297-B03 -131710064,77,13057958,Medical Incident,06/20/2013,06/19/2013,06/20/2013 07:22:57 AM,06/20/2013 07:24:15 AM,06/20/2013 07:32:36 AM,06/20/2013 07:33:00 AM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/20/2013 07:38:02 AM,GILMAN AV/JENNINGS ST,SF,94124,B10,17,6614,3,3,3,true,Non Life-threatening,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7214084625386, -122.393736929535)",131710064-77 -102390021,E13,10075255,Medical Incident,08/27/2010,08/26/2010,08/27/2010 01:39:30 AM,08/27/2010 01:41:47 AM,08/27/2010 01:44:24 AM,08/27/2010 01:45:41 AM,08/27/2010 01:47:57 AM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/27/2010 01:51:09 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,1,1,2,true,,1,ENGINE,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",102390021-E13 -133420215,E17,13115992,Medical Incident,12/08/2013,12/08/2013,12/08/2013 01:12:12 PM,12/08/2013 01:13:32 PM,12/08/2013 01:14:25 PM,12/08/2013 01:15:52 PM,12/08/2013 01:17:28 PM,04/25/2016 01:49:23 PM,04/25/2016 01:49:23 PM,Other,12/08/2013 01:32:48 PM,1400 Block of VAN DYKE AVE,SF,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7275267994511, -122.389650111212)",133420215-E17 -112850015,E21,11094240,Medical Incident,10/12/2011,10/11/2011,10/12/2011 02:00:25 AM,10/12/2011 02:00:57 AM,10/12/2011 02:01:29 AM,10/12/2011 02:02:56 AM,10/12/2011 02:04:23 AM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 02:15:51 AM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",112850015-E21 -160633690,AM16,16025270,Medical Incident,03/03/2016,03/03/2016,03/03/2016 09:48:45 PM,03/03/2016 09:50:01 PM,03/03/2016 09:51:20 PM,03/03/2016 09:52:14 PM,03/03/2016 09:55:57 PM,03/03/2016 10:01:03 PM,03/03/2016 10:17:34 PM,Code 2 Transport,03/03/2016 10:31:12 PM,400 Block of BROADWAY,San Francisco,94133,B01,13,1231,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",160633690-AM16 -112470331,64,11081573,Medical Incident,09/04/2011,09/04/2011,09/04/2011 07:14:46 PM,09/04/2011 07:15:32 PM,09/04/2011 07:15:44 PM,09/04/2011 07:15:53 PM,09/04/2011 07:18:52 PM,09/04/2011 07:37:54 PM,09/04/2011 07:45:20 PM,Code 2 Transport,09/04/2011 08:06:49 PM,1400 Block of SUTTER ST,SF,94109,B04,3,3223,3,2,2,true,,1,MEDIC,1,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",112470331-64 -121530018,E39,12050503,Medical Incident,06/01/2012,05/31/2012,06/01/2012 12:44:29 AM,06/01/2012 12:46:52 AM,06/01/2012 12:47:06 AM,06/01/2012 12:48:30 AM,06/01/2012 12:50:51 AM,04/25/2016 01:58:25 PM,04/25/2016 01:58:25 PM,Other,06/01/2012 12:56:38 AM,ULLOA ST/WEST PORTAL AV,SF,94127,B08,39,8611,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7408919760876, -122.465829021907)",121530018-E39 -111500216,74,11049733,Medical Incident,05/30/2011,05/30/2011,05/30/2011 04:06:28 PM,05/30/2011 04:09:09 PM,05/30/2011 04:10:21 PM,05/30/2011 04:13:25 PM,04/25/2016 02:04:23 PM,05/30/2011 04:34:22 PM,05/30/2011 04:37:54 PM,Code 2 Transport,05/30/2011 05:16:11 PM,1800 Block of BUSH ST,SF,94109,B04,38,3363,2,2,2,true,,1,MEDIC,2,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",111500216-74 -133320203,E12,13112706,Medical Incident,11/28/2013,11/28/2013,11/28/2013 05:09:12 PM,11/28/2013 05:10:54 PM,11/28/2013 05:11:48 PM,11/28/2013 05:12:31 PM,11/28/2013 05:15:45 PM,04/25/2016 01:49:32 PM,04/25/2016 01:49:32 PM,Other,11/28/2013 05:20:21 PM,ASHBURY ST/OAK ST,SF,94117,B05,21,4513,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7718777415662, -122.447312420784)",133320203-E12 -120660142,T18,12021790,Medical Incident,03/06/2012,03/06/2012,03/06/2012 10:36:17 AM,03/06/2012 10:36:29 AM,03/06/2012 10:36:45 AM,03/06/2012 10:39:20 AM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,04/25/2016 01:59:49 PM,Other,03/06/2012 10:42:06 AM,3100 Block of ORTEGA ST,SF,94116,B08,18,7623,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7513963730602, -122.497232247957)",120660142-T18 -111540105,89,11050819,Medical Incident,06/03/2011,06/03/2011,06/03/2011 09:42:10 AM,06/03/2011 09:43:46 AM,06/03/2011 09:45:20 AM,06/03/2011 09:45:40 AM,06/03/2011 09:59:47 AM,06/03/2011 10:13:28 AM,06/03/2011 10:21:28 AM,Code 2 Transport,06/03/2011 10:54:38 AM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,2,2,2,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",111540105-89 -160160297,55,16006266,Traffic Collision,01/16/2016,01/15/2016,01/16/2016 02:04:58 AM,01/16/2016 02:12:18 AM,01/16/2016 02:15:23 AM,01/16/2016 02:15:23 AM,01/16/2016 02:22:07 AM,01/16/2016 02:36:59 AM,01/16/2016 02:45:07 AM,Code 2 Transport,01/16/2016 03:20:49 AM,800 Block of 5TH ST,San Francisco,94158,B03,8,2235,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7743431649543, -122.395869905777)",160160297-55 -121250008,E36,12041362,Alarms,05/04/2012,05/03/2012,05/04/2012 12:25:35 AM,05/04/2012 12:27:11 AM,05/04/2012 12:27:22 AM,05/04/2012 12:29:43 AM,05/04/2012 12:31:40 AM,04/25/2016 01:58:52 PM,04/25/2016 01:58:52 PM,Other,05/04/2012 12:46:16 AM,300 Block of 11TH ST,SF,94103,B02,36,5112,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7712855259531, -122.413204267102)",121250008-E36 -160812824,59,16032289,Medical Incident,03/21/2016,03/21/2016,03/21/2016 05:17:35 PM,03/21/2016 05:21:18 PM,03/21/2016 05:24:23 PM,03/21/2016 05:24:37 PM,03/21/2016 05:38:17 PM,03/21/2016 05:48:29 PM,03/21/2016 06:06:22 PM,Code 2 Transport,03/21/2016 06:30:01 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160812824-59 -123480026,B03,12116219,Alarms,12/13/2012,12/12/2012,12/13/2012 01:41:32 AM,12/13/2012 01:43:10 AM,12/13/2012 01:43:53 AM,12/13/2012 01:46:13 AM,12/13/2012 01:49:48 AM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Other,12/13/2012 01:53:00 AM,1800 Block of BRYANT ST,SF,94110,B02,29,5242,3,3,3,false,Alarm,1,CHIEF,1,2,9,Mission,"(37.7636655981305, -122.41037293196)",123480026-B03 -123360335,E43,12111852,Medical Incident,12/01/2012,12/01/2012,12/01/2012 07:10:40 PM,12/01/2012 07:10:52 PM,12/01/2012 07:11:03 PM,04/25/2016 01:55:32 PM,12/01/2012 07:15:30 PM,04/25/2016 01:55:32 PM,04/25/2016 01:55:32 PM,Other,12/01/2012 07:24:20 PM,SUNNYDALE AV/HAHN ST,SF,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7119145572968, -122.416000281038)",123360335-E43 -160440037,KM07,16017529,Medical Incident,02/13/2016,02/12/2016,02/13/2016 12:11:04 AM,02/13/2016 12:14:06 AM,02/13/2016 12:16:13 AM,02/13/2016 12:17:28 AM,02/13/2016 12:25:21 AM,02/13/2016 12:52:57 AM,02/13/2016 12:53:41 AM,Code 2 Transport,02/13/2016 01:21:03 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160440037-KM07 -112500033,E03,11082353,Medical Incident,09/07/2011,09/06/2011,09/07/2011 03:32:48 AM,09/07/2011 03:34:08 AM,09/07/2011 03:34:50 AM,09/07/2011 03:36:32 AM,09/07/2011 03:38:52 AM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/07/2011 03:46:26 AM,1100 Block of OFARRELL ST,SF,94109,B04,3,3261,3,3,3,true,,1,ENGINE,2,2,5,Western Addition,"(37.7845957801826, -122.42200470349)",112500033-E03 -122010324,AM22,12066921,Medical Incident,07/19/2012,07/19/2012,07/19/2012 09:44:19 PM,07/19/2012 09:44:57 PM,07/19/2012 09:45:08 PM,07/19/2012 09:45:49 PM,07/19/2012 09:54:29 PM,07/19/2012 10:12:11 PM,07/19/2012 10:16:28 PM,Code 3 Transport,07/19/2012 10:58:39 PM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",122010324-AM22 -160401894,52,16016038,Medical Incident,02/09/2016,02/09/2016,02/09/2016 01:18:51 PM,02/09/2016 01:21:12 PM,02/09/2016 01:21:27 PM,02/09/2016 01:21:36 PM,02/09/2016 01:28:45 PM,02/09/2016 01:47:27 PM,02/09/2016 02:06:33 PM,Code 2 Transport,02/09/2016 02:38:19 PM,400 Block of VALLEY ST,San Francisco,94131,B06,11,5561,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7441256693367, -122.43228210944)",160401894-52 -160211753,67,16008382,Medical Incident,01/21/2016,01/21/2016,01/21/2016 12:47:08 PM,01/21/2016 12:48:50 PM,01/21/2016 12:49:02 PM,01/21/2016 12:49:12 PM,01/21/2016 12:52:24 PM,01/21/2016 01:10:04 PM,01/21/2016 01:40:32 PM,Code 2 Transport,01/21/2016 01:55:25 PM,1700 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7694700718007, -122.415525556609)",160211753-67 -160881439,KM06,16034917,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:19:36 AM,03/28/2016 11:21:09 AM,03/28/2016 11:21:44 AM,03/28/2016 11:22:31 AM,03/28/2016 11:30:59 AM,03/28/2016 11:49:16 AM,03/28/2016 11:56:57 AM,Code 2 Transport,03/28/2016 12:31:30 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7868363592255, -122.412761859687)",160881439-KM06 -140440165,54,14014937,Citizen Assist / Service Call,02/13/2014,02/13/2014,02/13/2014 10:31:28 AM,02/13/2014 10:33:58 AM,02/13/2014 10:46:22 AM,02/13/2014 10:47:51 AM,02/13/2014 10:54:38 AM,02/13/2014 11:26:26 AM,02/13/2014 11:38:19 AM,Code 2 Transport,02/13/2014 12:21:30 PM,0 Block of NEPTUNE ST,SF,94124,B10,42,6474,,3,3,true,Alarm,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7306214923139, -122.397084856342)",140440165-54 -160263696,79,16010482,Medical Incident,01/26/2016,01/26/2016,01/26/2016 09:55:10 PM,01/26/2016 09:57:42 PM,01/26/2016 09:58:05 PM,01/26/2016 09:58:21 PM,01/26/2016 10:01:40 PM,01/26/2016 10:08:13 PM,01/26/2016 10:18:47 PM,Code 2 Transport,01/26/2016 10:36:26 PM,6TH ST/MARKET ST,San Francisco,94102,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",160263696-79 -110180344,AM14,11006083,Medical Incident,01/18/2011,01/18/2011,01/18/2011 11:31:07 PM,01/18/2011 11:33:14 PM,01/18/2011 11:35:32 PM,01/18/2011 11:36:03 PM,01/18/2011 11:38:11 PM,01/18/2011 11:53:21 PM,01/18/2011 11:57:48 PM,Code 2 Transport,01/19/2011 12:16:55 AM,1000 Block of BUSH ST,SF,94109,B01,41,1542,1,1,2,false,,1,PRIVATE,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",110180344-AM14 -130780074,T08,13025940,Gas Leak (Natural and LP Gases),03/19/2013,03/18/2013,03/19/2013 06:57:12 AM,03/19/2013 06:58:33 AM,03/19/2013 06:59:20 AM,03/19/2013 07:01:11 AM,03/19/2013 07:04:06 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 07:30:04 AM,500 Block of BRANNAN ST,SF,94107,B03,8,2241,3,3,3,false,Alarm,1,TRUCK,3,3,6,South of Market,"(37.7774865325812, -122.397691886789)",130780074-T08 -103570131,E10,10114530,Medical Incident,12/23/2010,12/23/2010,12/23/2010 10:34:10 AM,12/23/2010 10:37:25 AM,12/23/2010 10:38:33 AM,12/23/2010 10:40:34 AM,12/23/2010 10:42:57 AM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Other,12/23/2010 10:51:33 AM,FULTON ST/CENTRAL AV,SF,94117,B05,21,4361,1,1,2,true,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7760165906807, -122.444779889144)",103570131-E10 -132860212,E36,13097291,Medical Incident,10/13/2013,10/13/2013,10/13/2013 01:28:22 PM,10/13/2013 01:29:27 PM,10/13/2013 01:30:13 PM,10/13/2013 01:31:57 PM,10/13/2013 01:33:03 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/13/2013 01:35:12 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",132860212-E36 -160571534,70,16022734,Medical Incident,02/26/2016,02/26/2016,02/26/2016 12:00:57 PM,02/26/2016 12:00:57 PM,02/26/2016 12:01:44 PM,02/26/2016 12:01:56 PM,02/26/2016 12:09:52 PM,02/26/2016 12:23:19 PM,02/26/2016 12:35:03 PM,Code 2 Transport,02/26/2016 01:30:28 PM,10TH ST/MISSION ST,San Francisco,94103,B02,36,2341,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,South of Market,"(37.7752720593077, -122.415908181241)",160571534-70 -140930207,88,14031287,Medical Incident,04/03/2014,04/03/2014,04/03/2014 01:40:08 PM,04/03/2014 01:42:35 PM,04/03/2014 01:44:07 PM,04/03/2014 01:44:20 PM,04/03/2014 01:48:20 PM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,Patient Declined Transport,04/03/2014 02:04:14 PM,MISSION ST/7TH ST,SAN FRANCISCO,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",140930207-88 -110430414,AM04,11014458,Medical Incident,02/12/2011,02/12/2011,02/12/2011 09:42:31 PM,02/12/2011 09:43:33 PM,02/12/2011 09:44:45 PM,04/25/2016 02:06:06 PM,02/12/2011 09:54:13 PM,02/12/2011 10:30:42 PM,02/12/2011 10:45:31 PM,Code 2 Transport,02/12/2011 11:16:47 PM,6200 Block of 3RD ST,SF,94124,B10,44,6544,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7221089752552, -122.395918665924)",110430414-AM04 -160521676,57,16020815,Medical Incident,02/21/2016,02/21/2016,02/21/2016 01:07:36 PM,02/21/2016 01:09:15 PM,02/21/2016 01:09:44 PM,02/21/2016 01:09:53 PM,02/21/2016 01:29:22 PM,02/21/2016 01:47:27 PM,02/21/2016 02:20:38 PM,Code 2 Transport,02/21/2016 02:54:46 PM,5000 Block of MISSION ST,San Francisco,94112,B09,43,6175,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Excelsior,"(37.7174156464153, -122.440178977937)",160521676-57 -110820303,T15,11027035,Structure Fire,03/23/2011,03/23/2011,03/23/2011 05:24:38 PM,03/23/2011 05:25:28 PM,03/23/2011 05:25:44 PM,03/23/2011 05:29:21 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,04/25/2016 02:05:29 PM,Other,03/23/2011 05:34:09 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,false,,1,TRUCK,10,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",110820303-T15 -160020347,57,16000600,Medical Incident,01/02/2016,01/01/2016,01/02/2016 02:52:18 AM,01/02/2016 02:52:18 AM,01/02/2016 02:52:54 AM,01/02/2016 02:53:00 AM,01/02/2016 03:02:43 AM,01/02/2016 03:40:11 AM,01/02/2016 03:47:32 AM,Code 2 Transport,01/02/2016 04:35:24 AM,900 Block of CALIFORNIA ST,San Francisco,94108,B01,41,1418,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",160020347-57 -140790188,RA48,14026722,Medical Incident,03/20/2014,03/20/2014,03/20/2014 01:08:30 PM,03/20/2014 01:10:53 PM,03/20/2014 01:13:03 PM,03/20/2014 01:15:59 PM,03/20/2014 01:18:44 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Code 2 Transport,03/20/2014 01:41:54 PM,1400 Block of HALIBUT CT,TREASURE ISLAN,94130,B03,48,2931,2,2,2,false,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8247216432688, -122.374966396058)",140790188-RA48 -160351280,KM03,16013777,Medical Incident,02/04/2016,02/04/2016,02/04/2016 10:38:23 AM,02/04/2016 10:41:39 AM,02/04/2016 10:41:56 AM,02/04/2016 10:48:31 AM,02/04/2016 10:56:45 AM,02/04/2016 11:05:43 AM,02/04/2016 11:31:35 AM,Code 2 Transport,02/04/2016 12:12:20 PM,1000 Block of GIRARD RD,Presidio,94129,B99,51,4612,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",160351280-KM03 -160510430,61,16020354,Medical Incident,02/20/2016,02/19/2016,02/20/2016 03:52:36 AM,02/20/2016 03:53:04 AM,02/20/2016 03:53:24 AM,02/20/2016 03:54:02 AM,02/20/2016 04:01:29 AM,02/20/2016 04:29:09 AM,02/20/2016 04:37:23 AM,Code 3 Transport,02/20/2016 06:11:19 AM,100 Block of PRAGUE ST,San Francisco,94112,B09,43,6163,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.719690286609, -122.42654836559)",160510430-61 -110150158,T05,11004974,Alarms,01/15/2011,01/15/2011,01/15/2011 12:07:54 PM,01/15/2011 12:08:42 PM,01/15/2011 12:08:52 PM,01/15/2011 12:10:04 PM,01/15/2011 12:13:44 PM,04/25/2016 02:06:35 PM,04/25/2016 02:06:35 PM,Other,01/15/2011 12:14:56 PM,0 Block of ENCANTO AVE,SF,94115,B05,21,4344,3,3,3,false,,1,TRUCK,2,5,2,Lone Mountain/USF,"(37.7804797847922, -122.443651759898)",110150158-T05 -110340040,B09,11011061,Medical Incident,02/03/2011,02/02/2011,02/03/2011 04:00:26 AM,02/03/2011 04:00:42 AM,02/03/2011 04:01:04 AM,02/03/2011 04:04:08 AM,02/03/2011 04:07:55 AM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/03/2011 04:25:58 AM,0 Block of CHUMASERO DR,SF,94132,B08,33,8422,3,3,3,false,,1,CHIEF,2,8,7,Lakeshore,"(37.713317784448, -122.472875861339)",110340040-B09 -132650103,E06,13089828,Structure Fire,09/22/2013,09/22/2013,09/22/2013 08:34:58 AM,09/22/2013 08:35:49 AM,09/22/2013 08:36:11 AM,09/22/2013 08:39:06 AM,09/22/2013 08:41:28 AM,04/25/2016 01:50:39 PM,04/25/2016 01:50:39 PM,Other,09/22/2013 08:42:38 AM,1000 Block of HAYES ST,SF,94117,B05,21,3631,3,3,3,true,Alarm,1,ENGINE,6,5,5,Hayes Valley,"(37.7754672344817, -122.433645632366)",132650103-E06 -160651942,KM12,16025958,Medical Incident,03/05/2016,03/05/2016,03/05/2016 02:22:13 PM,03/05/2016 02:29:09 PM,03/05/2016 02:29:31 PM,03/05/2016 02:31:17 PM,03/05/2016 02:41:48 PM,03/05/2016 03:02:46 PM,03/05/2016 03:20:52 PM,Code 2 Transport,03/05/2016 04:06:04 PM,2400 Block of 42ND AVE,San Francisco,94116,B08,18,7636,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7410305388714, -122.500197834017)",160651942-KM12 -113570033,E25,11118446,Administrative,12/23/2011,12/22/2011,12/23/2011 01:00:12 AM,12/23/2011 01:00:14 AM,12/23/2011 01:00:23 AM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,04/25/2016 02:01:01 PM,Fire,12/23/2011 01:00:49 AM,3300 Block of 3RD ST,SF,94124,B10,25,2641,3,3,3,true,,1,ENGINE,1,None,None,None,"(37.7475912199361, -122.387182780653)",113570033-E25 -160180292,60,16007101,Medical Incident,01/18/2016,01/17/2016,01/18/2016 03:21:34 AM,01/18/2016 03:22:07 AM,01/18/2016 03:22:15 AM,01/18/2016 03:27:24 AM,01/18/2016 03:32:44 AM,01/18/2016 03:40:18 AM,01/18/2016 03:40:19 AM,Code 2 Transport,01/18/2016 04:17:29 AM,SAN JOSE AV/OCEAN AV,San Francisco,94112,B09,15,8311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7229665717171, -122.44474662479)",160180292-60 -130700341,54,13023473,Medical Incident,03/11/2013,03/11/2013,03/11/2013 06:26:29 PM,03/11/2013 06:27:13 PM,03/11/2013 06:27:33 PM,03/11/2013 06:27:40 PM,03/11/2013 06:39:05 PM,03/11/2013 06:51:12 PM,03/11/2013 06:58:20 PM,Code 2 Transport,03/11/2013 07:19:32 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",130700341-54 -130650153,E09,13021728,Medical Incident,03/06/2013,03/06/2013,03/06/2013 12:14:40 PM,03/06/2013 12:18:15 PM,03/06/2013 12:18:32 PM,03/06/2013 12:19:16 PM,03/06/2013 12:23:56 PM,04/25/2016 01:53:58 PM,04/25/2016 01:53:58 PM,Other,03/06/2013 12:39:34 PM,IOWA ST/23RD ST,SF,94107,B10,25,2612,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7551548898327, -122.391901127872)",130650153-E09 -121410035,E28,12046719,Medical Incident,05/20/2012,05/19/2012,05/20/2012 02:24:12 AM,05/20/2012 02:25:58 AM,05/20/2012 02:26:09 AM,05/20/2012 02:27:35 AM,05/20/2012 02:29:24 AM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Other,05/20/2012 02:39:12 AM,500 Block of GREEN ST,SF,94133,B01,28,1266,2,2,2,false,Non Life-threatening,1,ENGINE,1,1,3,North Beach,"(37.7996867434054, -122.407945033235)",121410035-E28 -132480040,89,13083568,Citizen Assist / Service Call,09/05/2013,09/04/2013,09/05/2013 03:25:02 AM,09/05/2013 03:27:58 AM,09/05/2013 03:44:50 AM,09/05/2013 03:45:06 AM,09/05/2013 03:53:54 AM,09/05/2013 04:16:44 AM,09/05/2013 04:42:02 AM,Code 3 Transport,09/05/2013 05:00:44 AM,600 Block of HEAD ST,SF,94132,B09,33,8433,3,3,3,true,Alarm,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7188076273319, -122.464519500184)",132480040-89 -130800375,E03,13026911,Medical Incident,03/21/2013,03/21/2013,03/21/2013 08:56:38 PM,03/21/2013 08:58:55 PM,03/21/2013 08:59:07 PM,03/21/2013 09:00:40 PM,03/21/2013 09:01:22 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,03/21/2013 09:06:11 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",130800375-E03 -160110356,KM07,16004254,Medical Incident,01/11/2016,01/10/2016,01/11/2016 04:09:53 AM,01/11/2016 04:11:00 AM,01/11/2016 04:11:11 AM,01/11/2016 04:11:58 AM,01/11/2016 04:28:14 AM,01/11/2016 04:32:34 AM,01/11/2016 04:46:53 AM,Code 2 Transport,01/11/2016 05:10:37 AM,1200 Block of NORTHPOINT DR,Treasure Isla,94130,B03,48,2931,2,2,2,false,Non Life-threatening,1,PRIVATE,3,None,6,Treasure Island,"(37.8315620918813, -122.373330222073)",160110356-KM07 -160762475,79,16030210,Medical Incident,03/16/2016,03/16/2016,03/16/2016 03:39:35 PM,03/16/2016 03:43:16 PM,03/16/2016 03:43:54 PM,03/16/2016 03:44:27 PM,03/16/2016 03:59:07 PM,03/16/2016 03:59:09 PM,03/16/2016 04:08:52 PM,Code 2 Transport,03/16/2016 04:29:18 PM,1700 Block of MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7695797471896, -122.419876917134)",160762475-79 -121410223,AM20,12046878,Medical Incident,05/20/2012,05/20/2012,05/20/2012 01:42:19 PM,05/20/2012 01:44:49 PM,05/20/2012 01:45:55 PM,04/25/2016 01:58:36 PM,05/20/2012 01:51:32 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,No Merit,05/20/2012 02:00:36 PM,MASONIC AV/FELL ST,SF,94117,B05,21,4356,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",121410223-AM20 -160602706,53,16024001,Medical Incident,02/29/2016,02/29/2016,02/29/2016 05:36:29 PM,02/29/2016 05:38:32 PM,02/29/2016 05:39:04 PM,02/29/2016 05:39:18 PM,02/29/2016 05:51:10 PM,02/29/2016 06:36:32 PM,02/29/2016 06:50:21 PM,Code 2 Transport,02/29/2016 07:31:15 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160602706-53 -140590317,E07,14020009,Medical Incident,02/28/2014,02/28/2014,02/28/2014 06:08:15 PM,02/28/2014 06:09:06 PM,02/28/2014 06:09:47 PM,02/28/2014 06:11:20 PM,02/28/2014 06:15:14 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Code 2 Transport,02/28/2014 06:51:06 PM,500 Block of 9TH ST,SF,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7707086968349, -122.407716820686)",140590317-E07 -160840219,55,16033222,Medical Incident,03/24/2016,03/23/2016,03/24/2016 02:14:04 AM,03/24/2016 02:14:04 AM,03/24/2016 02:14:36 AM,03/24/2016 02:15:33 AM,03/24/2016 02:19:36 AM,03/24/2016 02:31:52 AM,03/24/2016 02:41:04 AM,Code 2 Transport,03/24/2016 03:09:39 AM,1000 Block of MARKET ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",160840219-55 -160060691,62,16002304,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:10:51 AM,01/06/2016 08:11:17 AM,01/06/2016 08:12:04 AM,01/06/2016 08:12:19 AM,01/06/2016 08:17:24 AM,01/06/2016 08:39:08 AM,01/06/2016 08:48:52 AM,Code 2 Transport,01/06/2016 09:16:46 AM,SUTTER ST/POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",160060691-62 -131790281,E23,13060871,Electrical Hazard,06/28/2013,06/28/2013,06/28/2013 02:57:41 PM,06/28/2013 02:59:34 PM,06/28/2013 02:59:48 PM,06/28/2013 03:01:17 PM,06/28/2013 03:02:11 PM,04/25/2016 01:52:04 PM,04/25/2016 01:52:04 PM,Other,06/28/2013 04:11:07 PM,4100 Block of IRVING ST,SF,94122,B08,23,7653,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7625057882895, -122.502311044372)",131790281-E23 -140440395,92,14015132,Medical Incident,02/13/2014,02/13/2014,02/13/2014 08:37:05 PM,02/13/2014 08:38:39 PM,02/13/2014 08:38:56 PM,02/13/2014 08:39:04 PM,02/13/2014 08:43:59 PM,02/13/2014 08:59:36 PM,02/13/2014 09:04:18 PM,Code 2 Transport,02/13/2014 09:38:34 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",140440395-92 -111610124,E32,11053129,Structure Fire,06/10/2011,06/10/2011,06/10/2011 10:57:57 AM,06/10/2011 10:57:57 AM,06/10/2011 10:58:11 AM,06/10/2011 10:58:22 AM,06/10/2011 10:59:48 AM,04/25/2016 02:04:13 PM,04/25/2016 02:04:13 PM,Fire,06/10/2011 11:00:50 AM,30TH ST/SAN JOSE AV,SF,94110,B06,32,5575,3,3,3,true,,1,ENGINE,1,6,9,Bernal Heights,"(37.7422945337206, -122.42328556238)",111610124-E32 -122910154,E08,12096314,Medical Incident,10/17/2012,10/17/2012,10/17/2012 10:51:08 AM,10/17/2012 10:52:40 AM,10/17/2012 10:54:05 AM,10/17/2012 10:58:33 AM,10/17/2012 10:58:55 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 11:02:04 AM,100 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122910154-E08 -132770450,B10,13094304,Vehicle Fire,10/04/2013,10/04/2013,10/04/2013 09:41:19 PM,10/04/2013 09:42:31 PM,10/04/2013 09:51:17 PM,10/04/2013 09:52:51 PM,10/04/2013 09:56:24 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 10:41:21 PM,300 Block of RUTLEDGE ST,SF,94110,B06,9,5666,3,3,3,false,Fire,1,CHIEF,3,6,9,Bernal Heights,"(37.7449122245408, -122.409651107101)",132770450-B10 -121860249,T06,12062019,Structure Fire,07/04/2012,07/04/2012,07/04/2012 06:07:44 PM,07/04/2012 06:07:50 PM,07/04/2012 06:08:08 PM,07/04/2012 06:09:14 PM,07/04/2012 06:12:36 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 06:21:25 PM,0 Block of CAPP ST,SF,94103,B02,7,5225,3,3,3,false,Fire,1,TRUCK,6,2,9,Mission,"(37.7662170202259, -122.418615040829)",121860249-T06 -160480192,62,16019194,Medical Incident,02/17/2016,02/16/2016,02/17/2016 01:49:04 AM,02/17/2016 01:49:49 AM,02/17/2016 01:50:26 AM,02/17/2016 01:50:59 AM,02/17/2016 01:59:47 AM,02/17/2016 02:17:35 AM,02/17/2016 02:37:39 AM,Code 2 Transport,02/17/2016 03:25:29 AM,GEARY BL/MASONIC AV,San Francisco,94118,B05,10,4365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,2,Lone Mountain/USF,"(37.7823916412035, -122.447301511863)",160480192-62 -111110371,75,11036820,Medical Incident,04/21/2011,04/21/2011,04/21/2011 10:05:32 PM,04/21/2011 10:05:32 PM,04/21/2011 10:06:29 PM,04/21/2011 10:06:50 PM,04/21/2011 10:13:32 PM,04/21/2011 10:27:55 PM,04/21/2011 10:47:48 PM,Code 2 Transport,04/21/2011 11:27:50 PM,5700 Block of MISSION ST,SF,94112,B09,33,6212,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7098635927288, -122.449729173956)",111110371-75 -133390340,77,13115011,Medical Incident,12/05/2013,12/05/2013,12/05/2013 08:00:24 PM,12/05/2013 08:04:51 PM,12/05/2013 08:05:03 PM,12/05/2013 08:05:13 PM,12/05/2013 08:12:04 PM,12/05/2013 08:21:50 PM,12/05/2013 08:33:47 PM,Code 3 Transport,12/05/2013 09:11:13 PM,2600 Block of 44TH AVE,SF,94116,B08,18,7711,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7372136239486, -122.50208065448)",133390340-77 -160553483,57,16022129,Medical Incident,02/24/2016,02/24/2016,02/24/2016 07:22:49 PM,02/24/2016 07:23:49 PM,02/24/2016 07:23:56 PM,02/24/2016 07:24:44 PM,02/24/2016 07:47:49 PM,02/24/2016 07:47:58 PM,02/24/2016 08:09:40 PM,Code 3 Transport,02/24/2016 08:36:23 PM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",160553483-57 -132500253,94,13084452,Medical Incident,09/07/2013,09/07/2013,09/07/2013 02:36:49 PM,09/07/2013 02:37:14 PM,09/07/2013 02:38:00 PM,09/07/2013 02:38:42 PM,09/07/2013 02:47:57 PM,09/07/2013 03:16:47 PM,09/07/2013 03:30:15 PM,Code 2 Transport,09/07/2013 03:51:33 PM,300 Block of OFARRELL ST,SF,94102,B01,1,1452,3,E,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Tenderloin,"(37.7861537029873, -122.410515154623)",132500253-94 -131100026,92,13036877,Medical Incident,04/20/2013,04/19/2013,04/20/2013 01:36:54 AM,04/20/2013 01:39:04 AM,04/20/2013 01:39:10 AM,04/20/2013 01:41:06 AM,04/20/2013 01:42:52 AM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,No Merit,04/20/2013 01:50:25 AM,600 Block of EDDY ST,SF,94109,B02,3,1643,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",131100026-92 -132090312,T05,13070801,Alarms,07/28/2013,07/28/2013,07/28/2013 07:22:18 PM,07/28/2013 07:26:32 PM,07/28/2013 07:26:57 PM,07/28/2013 07:27:59 PM,07/28/2013 07:29:44 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Other,07/28/2013 07:37:33 PM,1200 Block of EDDY ST,SF,94115,B02,5,3366,3,3,3,false,Alarm,1,TRUCK,3,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",132090312-T05 -160672006,AM02,16026796,Medical Incident,03/07/2016,03/07/2016,03/07/2016 03:09:38 PM,03/07/2016 03:10:58 PM,03/07/2016 03:13:32 PM,03/07/2016 03:14:01 PM,03/07/2016 03:44:10 PM,03/07/2016 03:44:42 PM,03/07/2016 03:48:29 PM,Code 2 Transport,03/07/2016 04:14:57 PM,1900 Block of GOLDEN GATE AVE,San Francisco,94115,B05,21,4345,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Lone Mountain/USF,"(37.7781401614839, -122.442675250098)",160672006-AM02 -132790049,94,13094776,Medical Incident,10/06/2013,10/05/2013,10/06/2013 02:01:00 AM,10/06/2013 02:04:19 AM,10/06/2013 02:06:49 AM,10/06/2013 02:07:00 AM,10/06/2013 02:19:49 AM,10/06/2013 02:42:29 AM,10/06/2013 02:51:37 AM,Code 2 Transport,10/06/2013 03:20:00 AM,MARKET ST/7TH ST,SF,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",132790049-94 -160642086,57,16025538,Medical Incident,03/04/2016,03/04/2016,03/04/2016 01:52:36 PM,03/04/2016 01:53:21 PM,03/04/2016 01:53:49 PM,03/04/2016 01:54:04 PM,03/04/2016 02:04:33 PM,03/04/2016 02:04:39 PM,03/04/2016 02:20:47 PM,Code 2 Transport,03/04/2016 03:20:29 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160642086-57 -140660178,T17,14022297,Structure Fire,03/07/2014,03/07/2014,03/07/2014 11:50:05 AM,03/07/2014 11:50:35 AM,03/07/2014 11:51:11 AM,03/07/2014 11:52:37 AM,03/07/2014 11:54:08 AM,04/25/2016 01:47:52 PM,04/25/2016 01:47:52 PM,Fire,03/07/2014 12:12:38 PM,1200 Block of EGBERT AVE,SAN FRANCISCO,94124,B10,17,6615,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7210363669692, -122.389871475458)",140660178-T17 -110410302,99,11013669,Medical Incident,02/10/2011,02/10/2011,02/10/2011 05:10:14 PM,02/10/2011 05:11:37 PM,02/10/2011 05:12:20 PM,02/10/2011 05:12:31 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 05:16:25 PM,1100 Block of MARKET ST,SF,94103,B02,1,2317,E,3,3,true,,1,MEDIC,3,2,6,South of Market,"(37.7795310846627, -122.413542548681)",110410302-99 -102840276,D3,10090495,Structure Fire,10/11/2010,10/11/2010,10/11/2010 05:55:21 PM,10/11/2010 05:56:30 PM,10/11/2010 05:56:49 PM,10/11/2010 05:57:28 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Other,10/11/2010 06:01:56 PM,1600 Block of OAKDALE AVE,SF,94124,B10,17,6471,3,3,3,false,,1,CHIEF,7,10,10,Bayview Hunters Point,"(37.7351844916326, -122.391493955999)",102840276-D3 -132570094,81,13086842,Medical Incident,09/14/2013,09/13/2013,09/14/2013 07:55:33 AM,09/14/2013 07:56:44 AM,09/14/2013 07:57:00 AM,09/14/2013 07:57:14 AM,09/14/2013 08:04:54 AM,09/14/2013 08:24:55 AM,09/14/2013 08:32:12 AM,Code 2 Transport,09/14/2013 09:08:47 AM,800 Block of 34TH AVE,SF,94121,B07,34,7252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7730659199662, -122.493831266165)",132570094-81 -140020198,54,14000683,Medical Incident,01/02/2014,01/02/2014,01/02/2014 11:45:43 AM,01/02/2014 11:50:54 AM,01/02/2014 11:51:11 AM,01/02/2014 11:51:21 AM,01/02/2014 11:59:28 AM,01/02/2014 12:13:53 PM,01/02/2014 12:31:46 PM,Code 2 Transport,01/02/2014 01:16:23 PM,900 Block of SHOTWELL ST,SF,94110,B06,7,544,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7532406253685, -122.415177223195)",140020198-54 -131970034,82,13066709,Medical Incident,07/16/2013,07/15/2013,07/16/2013 04:43:14 AM,07/16/2013 04:45:52 AM,07/16/2013 04:46:12 AM,07/16/2013 04:46:22 AM,07/16/2013 04:49:47 AM,07/16/2013 04:58:36 AM,07/16/2013 05:05:37 AM,Code 2 Transport,07/16/2013 05:28:55 AM,5TH ST/BRYANT ST,SF,94107,B03,8,2242,2,2,2,false,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7777990101501, -122.40029776053)",131970034-82 -112240320,E03,11074103,Medical Incident,08/12/2011,08/12/2011,08/12/2011 06:46:22 PM,08/12/2011 06:47:51 PM,08/12/2011 06:48:11 PM,08/12/2011 06:49:17 PM,08/12/2011 06:51:02 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/12/2011 06:57:45 PM,400 Block of JONES ST,SF,94102,B03,3,1461,3,E,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7850785957039, -122.412895408589)",112240320-E03 -160480900,AM02,16019264,Medical Incident,02/17/2016,02/17/2016,02/17/2016 09:01:33 AM,02/17/2016 09:03:22 AM,02/17/2016 09:04:24 AM,02/17/2016 09:05:30 AM,02/17/2016 09:17:53 AM,02/17/2016 09:38:34 AM,02/17/2016 09:52:33 AM,Code 2 Transport,02/17/2016 10:30:00 AM,1100 Block of UNION ST,San Francisco,94109,B01,41,1611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,2,Russian Hill,"(37.7993058366445, -122.418648752342)",160480900-AM02 -130490263,55,13016776,Medical Incident,02/18/2013,02/18/2013,02/18/2013 04:32:08 PM,02/18/2013 04:33:20 PM,02/18/2013 04:33:44 PM,02/18/2013 04:36:24 PM,02/18/2013 04:42:16 PM,02/18/2013 05:09:18 PM,02/18/2013 05:39:01 PM,Code 2 Transport,02/18/2013 05:58:34 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",130490263-55 -130510361,66,13017408,Medical Incident,02/20/2013,02/20/2013,02/20/2013 10:45:19 PM,02/20/2013 10:45:23 PM,02/20/2013 10:46:01 PM,02/20/2013 10:46:24 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,04/25/2016 01:54:11 PM,800 Block of EXCELSIOR AVE,SF,94112,B09,43,6155,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7230598415427, -122.426825144519)",130510361-66 -160300608,62,16011679,Medical Incident,01/30/2016,01/29/2016,01/30/2016 05:36:55 AM,01/30/2016 05:36:55 AM,01/30/2016 05:38:54 AM,01/30/2016 05:39:01 AM,01/30/2016 05:50:27 AM,01/30/2016 06:12:28 AM,01/30/2016 06:33:08 AM,Code 2 Transport,01/30/2016 07:04:01 AM,0 Block of NEW MONTGOMERY ST,San Francisco,94105,B03,1,2144,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7884568414138, -122.4018373361)",160300608-62 -160443245,AM14,16017841,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:16:00 PM,02/13/2016 08:16:00 PM,02/13/2016 08:30:38 PM,02/13/2016 08:30:49 PM,02/13/2016 08:42:00 PM,02/13/2016 08:51:28 PM,02/13/2016 09:02:18 PM,Code 2 Transport,02/13/2016 09:29:54 PM,MASON ST/ELLIS ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,3,Tenderloin,"(37.78528291639, -122.409497526896)",160443245-AM14 -121240067,85,12041071,Medical Incident,05/03/2012,05/02/2012,05/03/2012 06:40:34 AM,05/03/2012 06:41:35 AM,05/03/2012 06:42:00 AM,05/03/2012 06:42:33 AM,05/03/2012 06:43:44 AM,05/03/2012 07:00:16 AM,05/03/2012 07:11:31 AM,Code 3 Transport,05/03/2012 07:35:57 AM,600 Block of 19TH AVE,SF,94121,B07,31,7166,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7756657233862, -122.477897621739)",121240067-85 -160590505,AM20,16023383,Medical Incident,02/28/2016,02/27/2016,02/28/2016 03:53:57 AM,02/28/2016 03:55:19 AM,02/28/2016 03:55:32 AM,02/28/2016 03:56:08 AM,02/28/2016 04:03:29 AM,02/28/2016 04:25:19 AM,02/28/2016 04:40:14 AM,Code 2 Transport,02/28/2016 05:05:55 AM,800 Block of 40TH AVE,San Francisco,94121,B07,34,7261,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7727661437105, -122.500391024515)",160590505-AM20 -131710166,AM08,13058038,Medical Incident,06/20/2013,06/20/2013,06/20/2013 12:00:21 PM,06/20/2013 12:04:29 PM,06/20/2013 12:04:55 PM,06/20/2013 12:06:06 PM,06/20/2013 12:10:26 PM,06/20/2013 12:29:43 PM,06/20/2013 12:49:53 PM,Code 2 Transport,06/20/2013 01:51:31 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",131710166-AM08 -160181572,71,16007226,Medical Incident,01/18/2016,01/18/2016,01/18/2016 01:01:28 PM,01/18/2016 01:02:04 PM,01/18/2016 01:03:08 PM,01/18/2016 01:08:15 PM,01/18/2016 01:15:35 PM,01/18/2016 01:29:43 PM,01/18/2016 01:48:13 PM,Code 2 Transport,01/18/2016 02:31:25 PM,CALL BOX:,Presidio,94129,B99,51,4617,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio,"(37.7905658380644, -122.481242453801)",160181572-71 -130850210,E06,13028393,Medical Incident,03/26/2013,03/26/2013,03/26/2013 02:39:04 PM,03/26/2013 02:39:26 PM,03/26/2013 02:39:56 PM,03/26/2013 02:41:31 PM,03/26/2013 02:43:30 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 02:49:36 PM,CHURCH ST/DUBOCE AV,SF,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",130850210-E06 -160570084,63,16022587,Medical Incident,02/26/2016,02/25/2016,02/26/2016 12:37:07 AM,02/26/2016 12:39:09 AM,02/26/2016 12:39:20 AM,02/26/2016 12:40:08 AM,02/26/2016 12:44:12 AM,02/26/2016 01:16:45 AM,02/26/2016 01:24:34 AM,Code 2 Transport,02/26/2016 01:57:24 AM,300 Block of VALENCIA ST,San Francisco,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7670020286478, -122.422158110393)",160570084-63 -113210114,E22,11106577,Alarms,11/17/2011,11/17/2011,11/17/2011 09:52:23 AM,11/17/2011 09:53:05 AM,11/17/2011 09:53:18 AM,11/17/2011 09:53:53 AM,11/17/2011 09:56:22 AM,04/25/2016 02:01:36 PM,04/25/2016 02:01:36 PM,Fire,11/17/2011 09:58:32 AM,1700 Block of 20TH AVE,SF,94122,B08,40,7422,3,3,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7551297160673, -122.477545284221)",113210114-E22 -160592940,AM22,16023658,Medical Incident,02/28/2016,02/28/2016,02/28/2016 07:56:08 PM,02/28/2016 07:57:58 PM,02/28/2016 07:58:31 PM,02/28/2016 07:59:52 PM,02/28/2016 08:19:41 PM,02/28/2016 08:19:43 PM,02/28/2016 08:24:51 PM,Code 3 Transport,02/28/2016 09:04:07 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",160592940-AM22 -130470422,E02,13016206,Medical Incident,02/16/2013,02/16/2013,02/16/2013 10:50:15 PM,02/16/2013 10:50:35 PM,02/16/2013 11:09:03 PM,02/16/2013 11:10:06 PM,02/16/2013 11:13:19 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/16/2013 11:17:42 PM,GREEN ST/SANSOME ST,SF,94111,B01,13,1213,2,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8003071297428, -122.402604126567)",130470422-E02 -113000059,87,11099417,Traffic Collision,10/27/2011,10/26/2011,10/27/2011 07:57:46 AM,10/27/2011 07:58:23 AM,10/27/2011 07:58:31 AM,10/27/2011 07:59:22 AM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 08:01:12 AM,FOLSOM ST/21ST ST,SF,94110,B06,7,545,3,3,3,true,,1,MEDIC,4,6,9,Mission,"(37.7572976449633, -122.414541469066)",113000059-87 -160610196,61,16024156,Medical Incident,03/01/2016,02/29/2016,03/01/2016 02:06:28 AM,03/01/2016 02:07:59 AM,03/01/2016 02:08:36 AM,03/01/2016 02:09:37 AM,03/01/2016 02:21:52 AM,03/01/2016 02:50:05 AM,03/01/2016 03:07:08 AM,Code 2 Transport,03/01/2016 03:41:43 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160610196-61 -130270013,E06,13009158,Medical Incident,01/27/2013,01/26/2013,01/27/2013 12:32:54 AM,01/27/2013 12:34:00 AM,01/27/2013 12:34:53 AM,01/27/2013 12:35:31 AM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 12:38:32 AM,CALEDONIA ST/15TH ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,9,Mission,"(37.7665705430089, -122.421531295291)",130270013-E06 -120210085,T13,12007029,Alarms,01/21/2012,01/20/2012,01/21/2012 04:40:48 AM,01/21/2012 04:41:29 AM,01/21/2012 04:42:25 AM,01/21/2012 04:44:22 AM,01/21/2012 04:47:33 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Fire,01/21/2012 05:14:13 AM,0 Block of FREMONT ST,SF,94105,B03,35,2126,3,3,3,true,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7911273215916, -122.397428020134)",120210085-T13 -113500271,E05,11116181,Medical Incident,12/16/2011,12/16/2011,12/16/2011 05:04:42 PM,12/16/2011 05:05:39 PM,12/16/2011 05:06:12 PM,12/16/2011 05:07:07 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 05:07:41 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,A,A,2,true,,1,ENGINE,5,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113500271-E05 -112870038,B01,11095023,Structure Fire,10/14/2011,10/13/2011,10/14/2011 02:34:44 AM,10/14/2011 02:35:45 AM,10/14/2011 02:35:52 AM,10/14/2011 02:38:30 AM,10/14/2011 02:38:55 AM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 02:54:50 AM,700 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,,1,CHIEF,4,1,3,Chinatown,"(37.796699717573, -122.408014703843)",112870038-B01 -110620175,E18,11020363,Medical Incident,03/03/2011,03/03/2011,03/03/2011 12:44:41 PM,03/03/2011 12:45:47 PM,03/03/2011 12:46:01 PM,03/03/2011 12:47:08 PM,03/03/2011 12:49:22 PM,04/25/2016 02:05:49 PM,04/25/2016 02:05:49 PM,Other,03/03/2011 12:56:39 PM,2200 Block of 28TH AVE,SF,94116,B08,18,7521,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7454203725674, -122.485600832491)",110620175-E18 -132680424,E01,13091190,Medical Incident,09/25/2013,09/25/2013,09/25/2013 10:27:04 PM,09/25/2013 10:28:40 PM,09/25/2013 10:28:57 PM,09/25/2013 10:30:22 PM,09/25/2013 10:35:52 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 10:52:04 PM,200 Block of 10TH ST,SF,94103,B02,36,2342,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",132680424-E01 -160263225,52,16010431,Medical Incident,01/26/2016,01/26/2016,01/26/2016 07:09:10 PM,01/26/2016 07:10:16 PM,01/26/2016 07:11:36 PM,01/26/2016 07:11:44 PM,01/26/2016 07:17:33 PM,01/26/2016 07:37:35 PM,01/26/2016 07:46:24 PM,Code 3 Transport,01/26/2016 08:34:18 PM,400 Block of 33RD AVE,San Francisco,94121,B07,14,7245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7806543965679, -122.493444371673)",160263225-52 -160422959,53,16016968,Medical Incident,02/11/2016,02/11/2016,02/11/2016 05:54:12 PM,02/11/2016 05:55:49 PM,02/11/2016 05:56:06 PM,02/11/2016 05:56:11 PM,02/11/2016 06:08:54 PM,02/11/2016 06:23:05 PM,02/11/2016 06:34:42 PM,Code 2 Transport,02/11/2016 07:13:05 PM,0 Block of ASHBURY ST,San Francisco,94117,B05,21,4515,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7751245494261, -122.448041172346)",160422959-53 -123330303,RC1,12110765,Medical Incident,11/28/2012,11/28/2012,11/28/2012 08:06:50 PM,11/28/2012 08:08:20 PM,11/28/2012 08:08:26 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/28/2012 08:11:53 PM,INDUSTRIAL ST/BOUTWELL ST,SF,94124,B10,42,6381,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7383213630335, -122.405646738182)",123330303-RC1 -132840284,E07,13096708,Medical Incident,10/11/2013,10/11/2013,10/11/2013 06:45:59 PM,10/11/2013 06:55:37 PM,10/11/2013 06:55:53 PM,10/11/2013 06:57:16 PM,10/11/2013 06:58:09 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:18 PM,Other,10/11/2013 07:00:49 PM,19TH ST/CAPP ST,SF,94110,B06,7,5433,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7603010632565, -122.41811811905)",132840284-E07 -131680095,84,13056968,Medical Incident,06/17/2013,06/17/2013,06/17/2013 09:30:31 AM,06/17/2013 09:32:30 AM,06/17/2013 09:32:44 AM,06/17/2013 09:33:06 AM,06/17/2013 09:38:33 AM,04/25/2016 01:52:15 PM,04/25/2016 01:52:15 PM,Patient Declined Transport,06/17/2013 10:39:17 AM,BAYSHORE BL/CORTLAND AV,SF,94124,B10,42,6374,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",131680095-84 -113500279,E02,11116187,Medical Incident,12/16/2011,12/16/2011,12/16/2011 05:18:05 PM,12/16/2011 05:18:45 PM,12/16/2011 05:19:03 PM,12/16/2011 05:20:19 PM,12/16/2011 05:21:48 PM,04/25/2016 02:01:07 PM,04/25/2016 02:01:07 PM,Other,12/16/2011 05:43:15 PM,1500 Block of POWELL ST,SF,94133,B01,2,1352,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7988290749187, -122.410618562757)",113500279-E02 -120720253,E01,12023969,Medical Incident,03/12/2012,03/12/2012,03/12/2012 04:04:19 PM,03/12/2012 04:06:03 PM,03/12/2012 04:06:29 PM,03/12/2012 04:08:32 PM,03/12/2012 04:10:08 PM,04/25/2016 01:59:42 PM,04/25/2016 01:59:42 PM,Other,03/12/2012 04:20:37 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",120720253-E01 -113530102,E15,11117125,Medical Incident,12/19/2011,12/19/2011,12/19/2011 09:19:40 AM,12/19/2011 09:21:13 AM,12/19/2011 09:21:22 AM,04/25/2016 02:01:04 PM,12/19/2011 09:22:16 AM,04/25/2016 02:01:04 PM,04/25/2016 02:01:04 PM,Other,12/19/2011 09:32:25 AM,1700 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,true,,1,ENGINE,2,9,7,West of Twin Peaks,"(37.7249289546232, -122.460696103786)",113530102-E15 -111950354,D3,11064522,Traffic Collision,07/14/2011,07/14/2011,07/14/2011 08:47:35 PM,07/14/2011 08:48:43 PM,07/14/2011 08:49:04 PM,07/14/2011 08:54:24 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 09:01:23 PM,1200 Block of CLAYTON ST,SF,94114,B05,12,5256,3,2,2,false,,1,CHIEF,12,5,8,Castro/Upper Market,"(37.761434303327, -122.446476747426)",111950354-D3 -111480144,RS1,11049051,Medical Incident,05/28/2011,05/28/2011,05/28/2011 12:26:10 PM,05/28/2011 12:26:36 PM,05/28/2011 12:27:21 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,04/25/2016 02:04:25 PM,900 Block of MISSION ST,SF,94103,B03,1,2246,3,3,3,false,,1,RESCUE SQUAD,2,3,6,South of Market,"(37.7825001151131, -122.406870707064)",111480144-RS1 -121950018,E06,12064773,Medical Incident,07/13/2012,07/12/2012,07/13/2012 02:18:25 AM,07/13/2012 02:20:57 AM,07/13/2012 02:21:46 AM,07/13/2012 02:24:13 AM,07/13/2012 02:34:38 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/13/2012 02:34:41 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",121950018-E06 -160263167,85,16010427,Medical Incident,01/26/2016,01/26/2016,01/26/2016 06:51:00 PM,01/26/2016 06:52:33 PM,01/26/2016 06:52:54 PM,01/26/2016 06:53:07 PM,01/26/2016 07:17:02 PM,01/26/2016 07:42:17 PM,01/26/2016 08:07:53 PM,Code 2 Transport,01/26/2016 09:02:17 PM,300 Block of SANSOME ST,San Francisco,94104,B01,13,1166,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7937743739296, -122.401201213588)",160263167-85 -121020318,E44,12033935,Medical Incident,04/11/2012,04/11/2012,04/11/2012 08:54:22 PM,04/11/2012 08:54:59 PM,04/11/2012 08:55:19 PM,04/11/2012 08:56:12 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 09:03:31 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,A,A,2,true,Potentially Life-Threatening,1,ENGINE,4,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",121020318-E44 -160550686,65,16021911,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:58:16 AM,02/24/2016 08:01:52 AM,02/24/2016 08:02:42 AM,02/24/2016 08:02:57 AM,02/24/2016 08:24:24 AM,02/24/2016 08:38:10 AM,02/24/2016 08:57:58 AM,Code 2 Transport,02/24/2016 09:40:53 AM,1000 Block of 22ND ST,San Francisco,94107,B10,37,2535,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7576843079875, -122.391648743155)",160550686-65 -130400285,T14,13013754,Water Rescue,02/09/2013,02/09/2013,02/09/2013 05:42:58 PM,02/09/2013 05:45:17 PM,02/09/2013 05:46:05 PM,02/09/2013 05:48:15 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/09/2013 05:59:33 PM,GREAT HY/JOHN F KENNEDY DR,SF,94122,B08,23,7722,3,3,3,false,,1,TRUCK,12,7,1,Golden Gate Park,"(37.7704356758824, -122.510925945877)",130400285-T14 -110440009,B07,11014489,Alarms,02/13/2011,02/12/2011,02/13/2011 12:14:33 AM,02/13/2011 12:16:23 AM,02/13/2011 12:16:34 AM,04/25/2016 02:06:06 PM,02/13/2011 12:20:00 AM,04/25/2016 02:06:06 PM,04/25/2016 02:06:06 PM,Other,02/13/2011 12:31:50 AM,4100 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,false,,1,CHIEF,2,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",110440009-B07 -130930116,AM04,13031082,Medical Incident,04/03/2013,04/03/2013,04/03/2013 10:21:55 AM,04/03/2013 10:22:47 AM,04/03/2013 10:23:13 AM,04/03/2013 10:24:18 AM,04/03/2013 10:29:00 AM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Gone on Arrival,04/03/2013 10:39:31 AM,0 Block of CERVANTES BLVD,SF,94123,B04,16,3564,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,4,2,Marina,"(37.8035432868953, -122.438381234335)",130930116-AM04 -130460395,83,13015783,Medical Incident,02/15/2013,02/15/2013,02/15/2013 07:46:15 PM,02/15/2013 07:47:23 PM,02/15/2013 08:00:52 PM,02/15/2013 08:01:05 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 08:06:41 PM,1300 Block of CLAY ST,SF,94109,B01,41,1536,2,2,2,true,Potentially Life-Threatening,1,MEDIC,4,1,3,Nob Hill,"(37.793064148094, -122.415280565242)",130460395-83 -130240285,E10,13008368,Medical Incident,01/24/2013,01/24/2013,01/24/2013 04:17:25 PM,01/24/2013 04:18:59 PM,01/24/2013 04:19:44 PM,01/24/2013 04:20:59 PM,01/24/2013 04:22:41 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 04:31:23 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",130240285-E10 -160792778,88,16031479,Traffic Collision,03/19/2016,03/19/2016,03/19/2016 04:53:36 PM,03/19/2016 04:56:12 PM,03/19/2016 04:56:32 PM,03/19/2016 04:56:43 PM,03/19/2016 05:07:26 PM,03/19/2016 05:20:43 PM,03/19/2016 05:47:08 PM,Code 2 Transport,03/19/2016 06:08:39 PM,1200 Block of PORTOLA DR,San Francisco,94127,B08,39,8565,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7402445394559, -122.462410279305)",160792778-88 -160433274,71,16017446,Medical Incident,02/12/2016,02/12/2016,02/12/2016 07:49:58 PM,02/12/2016 07:49:58 PM,02/12/2016 07:50:06 PM,02/12/2016 07:50:11 PM,02/12/2016 08:00:50 PM,02/12/2016 08:10:09 PM,02/12/2016 08:15:43 PM,Code 2 Transport,02/12/2016 08:54:38 PM,1600 Block of HAIGHT ST,San Francisco,94117,B05,12,4525,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7696796386185, -122.449942040795)",160433274-71 -120360026,E10,12011864,Structure Fire,02/05/2012,02/04/2012,02/05/2012 01:20:20 AM,02/05/2012 01:21:25 AM,02/05/2012 01:22:38 AM,02/05/2012 01:24:34 AM,02/05/2012 01:26:27 AM,04/25/2016 02:00:17 PM,04/25/2016 02:00:17 PM,Other,02/05/2012 01:35:05 AM,2900 Block of SACRAMENTO ST,SF,94115,B04,10,4161,3,3,3,true,Fire,1,ENGINE,1,4,2,Pacific Heights,"(37.7888337817595, -122.441449440886)",120360026-E10 -160423414,71,16017018,Medical Incident,02/11/2016,02/11/2016,02/11/2016 08:16:55 PM,02/11/2016 08:17:34 PM,02/11/2016 08:17:50 PM,02/11/2016 08:18:32 PM,02/11/2016 08:23:39 PM,02/11/2016 08:36:07 PM,02/11/2016 08:51:28 PM,Code 2 Transport,02/11/2016 09:41:11 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160423414-71 -160021250,61,16000705,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:23:46 AM,01/02/2016 11:25:02 AM,01/02/2016 11:25:57 AM,01/02/2016 11:26:05 AM,01/02/2016 11:36:59 AM,01/02/2016 11:47:07 AM,01/02/2016 12:09:23 PM,Code 2 Transport,01/02/2016 01:06:40 PM,0 Block of THE EMBARCADERO,San Francisco,94107,B03,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7833104067015, -122.388379873919)",160021250-61 -112330091,KM04,11076868,Medical Incident,08/21/2011,08/21/2011,08/21/2011 08:28:06 AM,08/21/2011 08:30:09 AM,08/21/2011 08:30:27 AM,08/21/2011 08:31:30 AM,08/21/2011 08:35:45 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 08:46:25 AM,0 Block of CORNWALL ST,SF,94118,B07,10,7114,3,3,3,false,,1,PRIVATE,2,7,1,Inner Richmond,"(37.7850874105266, -122.459705682543)",112330091-KM04 -110770370,T08,11025501,Medical Incident,03/18/2011,03/18/2011,03/18/2011 10:11:51 PM,03/18/2011 10:12:15 PM,03/18/2011 10:13:24 PM,03/18/2011 10:14:59 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 10:17:35 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,false,,1,TRUCK,3,3,6,South of Market,"(37.775420706711, -122.403404791479)",110770370-T08 -131130115,E31,13038036,Alarms,04/23/2013,04/23/2013,04/23/2013 10:04:04 AM,04/23/2013 10:05:34 AM,04/23/2013 10:05:52 AM,04/23/2013 10:07:09 AM,04/23/2013 10:11:05 AM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 10:13:28 AM,0 Block of JORDAN AVE,SF,94118,B07,10,4441,3,3,3,true,Alarm,1,ENGINE,2,7,2,Presidio Heights,"(37.7849495594926, -122.456819205112)",131130115-E31 -160603805,AM16,16024129,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:16:43 PM,02/29/2016 11:18:23 PM,02/29/2016 11:19:25 PM,02/29/2016 11:19:55 PM,02/29/2016 11:23:14 PM,02/29/2016 11:38:42 PM,02/29/2016 11:51:59 PM,Code 2 Transport,03/01/2016 12:17:19 AM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",160603805-AM16 -160532585,66,16021314,Medical Incident,02/22/2016,02/22/2016,02/22/2016 05:18:43 PM,02/22/2016 05:19:22 PM,02/22/2016 05:19:33 PM,02/22/2016 05:20:57 PM,02/22/2016 05:29:55 PM,02/22/2016 05:45:06 PM,02/22/2016 06:21:44 PM,Code 2 Transport,02/22/2016 07:48:47 PM,1200 Block of SHAFTER AVE,San Francisco,94124,B10,17,6634,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7272844611304, -122.384223757349)",160532585-66 -103050346,73,10097624,Medical Incident,11/01/2010,11/01/2010,11/01/2010 07:44:58 PM,11/01/2010 07:48:34 PM,11/01/2010 07:48:59 PM,11/01/2010 07:49:34 PM,11/01/2010 07:57:08 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Patient Declined Transport,11/01/2010 08:24:58 PM,200 Block of DOLORES ST,SF,94114,B02,6,5227,2,2,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",103050346-73 -113490165,E36,11115787,Medical Incident,12/15/2011,12/15/2011,12/15/2011 01:18:03 PM,12/15/2011 01:19:39 PM,12/15/2011 01:20:20 PM,12/15/2011 01:22:09 PM,12/15/2011 01:24:27 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Other,12/15/2011 01:31:14 PM,300 Block of VAN NESS AVE,SF,94102,B02,36,3165,2,2,2,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",113490165-E36 -160403367,86,16016194,Medical Incident,02/09/2016,02/09/2016,02/09/2016 08:05:18 PM,02/09/2016 08:07:08 PM,02/09/2016 08:07:55 PM,02/09/2016 08:08:05 PM,02/09/2016 08:14:34 PM,02/09/2016 08:31:42 PM,02/09/2016 09:03:17 PM,Code 2 Transport,02/09/2016 09:28:32 PM,0 Block of NEWTON ST,San Francisco,94112,B09,43,6232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7139749867897, -122.438812291753)",160403367-86 -132660043,85,13090131,Medical Incident,09/23/2013,09/22/2013,09/23/2013 04:04:49 AM,09/23/2013 04:06:15 AM,09/23/2013 04:06:28 AM,09/23/2013 04:06:54 AM,09/23/2013 04:15:42 AM,09/23/2013 04:22:19 AM,09/23/2013 04:33:25 AM,Code 2 Transport,09/23/2013 05:06:06 AM,1600 Block of CHURCH ST,SF,94131,B06,11,5563,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7440943615702, -122.426777257654)",132660043-85 -140450134,AM02,14015272,Medical Incident,02/14/2014,02/14/2014,02/14/2014 11:09:20 AM,02/14/2014 11:10:25 AM,02/14/2014 11:10:29 AM,02/14/2014 11:11:20 AM,02/14/2014 11:17:28 AM,02/14/2014 11:48:07 AM,02/14/2014 12:25:23 PM,Code 2 Transport,02/14/2014 01:10:37 PM,300 Block of ORIZABA AVE,SF,94132,B09,33,8415,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7152511901206, -122.462680660662)",140450134-AM02 -132630240,KM14,13089153,Medical Incident,09/20/2013,09/20/2013,09/20/2013 02:07:01 PM,09/20/2013 02:07:31 PM,09/20/2013 02:07:55 PM,09/20/2013 02:08:25 PM,09/20/2013 02:13:18 PM,09/20/2013 02:50:03 PM,09/20/2013 02:50:26 PM,Code 2 Transport,09/20/2013 03:57:11 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",132630240-KM14 -112740351,T03,11090758,Alarms,10/01/2011,10/01/2011,10/01/2011 07:30:29 PM,10/01/2011 07:31:11 PM,10/01/2011 07:31:50 PM,10/01/2011 07:32:58 PM,10/01/2011 07:34:13 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Other,10/01/2011 07:45:13 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,false,,1,TRUCK,1,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",112740351-T03 -130070304,E03,13002476,Alarms,01/07/2013,01/07/2013,01/07/2013 05:43:47 PM,01/07/2013 05:44:25 PM,01/07/2013 05:44:43 PM,01/07/2013 05:45:24 PM,01/07/2013 05:47:27 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 06:00:27 PM,1000 Block of ELLIS ST,SF,94109,B02,3,3221,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7834553146514, -122.423462201327)",130070304-E03 -122330290,E02,12077373,Medical Incident,08/20/2012,08/20/2012,08/20/2012 05:42:25 PM,08/20/2012 05:42:54 PM,08/20/2012 05:43:23 PM,08/20/2012 05:45:13 PM,08/20/2012 05:46:11 PM,04/25/2016 01:57:08 PM,04/25/2016 01:57:08 PM,Other,08/20/2012 06:04:56 PM,1200 Block of STOCKTON ST,SF,94133,B01,2,1332,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7970243062924, -122.408425970511)",122330290-E02 -111910026,E01,11062990,Alarms,07/10/2011,07/09/2011,07/10/2011 01:42:02 AM,07/10/2011 01:43:09 AM,07/10/2011 01:43:13 AM,07/10/2011 01:44:14 AM,07/10/2011 01:46:03 AM,04/25/2016 02:03:44 PM,04/25/2016 02:03:44 PM,Other,07/10/2011 02:51:25 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",111910026-E01 -160640826,AM06,16025407,Medical Incident,03/04/2016,03/04/2016,03/04/2016 08:17:23 AM,03/04/2016 08:20:11 AM,03/04/2016 08:20:59 AM,03/04/2016 08:21:43 AM,03/04/2016 08:31:26 AM,03/04/2016 08:39:41 AM,03/04/2016 08:54:59 AM,Code 2 Transport,03/04/2016 09:15:18 AM,1300 Block of LARKIN ST,San Francisco,94109,B04,41,1635,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7903176879432, -122.418871091352)",160640826-AM06 -160480665,62,16019248,Medical Incident,02/17/2016,02/16/2016,02/17/2016 07:48:21 AM,02/17/2016 07:48:57 AM,02/17/2016 07:49:50 AM,02/17/2016 07:50:21 AM,02/17/2016 07:53:46 AM,02/17/2016 08:03:02 AM,02/17/2016 08:28:39 AM,Code 2 Transport,02/17/2016 09:06:02 AM,OAK ST/BAKER ST,San Francisco,94117,B05,21,4245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7727128721219, -122.440735147381)",160480665-62 -160442136,82,16017733,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:21:47 PM,02/13/2016 03:23:47 PM,02/13/2016 03:24:16 PM,02/13/2016 03:24:27 PM,02/13/2016 03:27:16 PM,02/13/2016 03:46:21 PM,02/13/2016 04:11:08 PM,Code 2 Transport,02/13/2016 04:36:18 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160442136-82 -140020156,93,14000647,Medical Incident,01/02/2014,01/02/2014,01/02/2014 10:00:13 AM,01/02/2014 10:01:01 AM,01/02/2014 10:02:43 AM,01/02/2014 10:04:06 AM,01/02/2014 10:20:51 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Patient Declined Transport,01/02/2014 11:17:06 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",140020156-93 -122920428,T08,12096960,Structure Fire,10/18/2012,10/18/2012,10/18/2012 10:32:03 PM,10/18/2012 10:33:03 PM,10/18/2012 10:33:32 PM,10/18/2012 10:34:53 PM,10/18/2012 10:38:01 PM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/18/2012 10:47:57 PM,1100 Block of FOLSOM ST,SF,94103,B02,29,2322,3,3,3,false,Alarm,1,TRUCK,9,2,6,South of Market,"(37.7752603293476, -122.409820946894)",122920428-T08 -160060068,71,16002218,Medical Incident,01/06/2016,01/05/2016,01/06/2016 12:33:17 AM,01/06/2016 12:35:20 AM,01/06/2016 12:35:31 AM,01/06/2016 12:35:47 AM,01/06/2016 12:42:42 AM,01/06/2016 01:13:03 AM,01/06/2016 01:27:18 AM,Code 2 Transport,01/06/2016 02:17:27 AM,300 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",160060068-71 -113470039,E22,11114999,Structure Fire,12/13/2011,12/12/2011,12/13/2011 04:16:55 AM,12/13/2011 04:16:56 AM,12/13/2011 04:17:09 AM,12/13/2011 04:18:44 AM,12/13/2011 04:20:46 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Fire,12/13/2011 04:21:02 AM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",113470039-E22 -103300184,E10,10105653,Alarms,11/26/2010,11/26/2010,11/26/2010 01:03:15 PM,11/26/2010 01:04:05 PM,11/26/2010 01:04:22 PM,11/26/2010 01:05:31 PM,11/26/2010 01:07:41 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 01:35:23 PM,2200 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,,1,ENGINE,1,5,5,Japantown,"(37.7843705673053, -122.438841200784)",103300184-E10 -112760322,81,11091470,Medical Incident,10/03/2011,10/03/2011,10/03/2011 06:22:33 PM,10/03/2011 06:23:39 PM,10/03/2011 06:23:54 PM,10/03/2011 06:24:04 PM,10/03/2011 06:25:10 PM,10/03/2011 06:45:38 PM,10/03/2011 06:54:04 PM,Code 2 Transport,10/03/2011 07:24:05 PM,500 Block of 10TH AVE,SF,94118,B07,31,7142,3,3,3,true,,1,MEDIC,1,7,1,Inner Richmond,"(37.7779650559216, -122.468428523772)",112760322-81 -132100293,KM04,13071116,Medical Incident,07/29/2013,07/29/2013,07/29/2013 04:54:43 PM,07/29/2013 04:55:47 PM,07/29/2013 04:55:59 PM,07/29/2013 04:56:48 PM,07/29/2013 05:28:55 PM,07/29/2013 05:41:41 PM,07/29/2013 06:07:16 PM,Code 2 Transport,07/29/2013 06:38:46 PM,0 Block of PERRY ST,SF,94107,B03,8,2175,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",132100293-KM04 -121220356,E05,12040639,Alarms,05/01/2012,05/01/2012,05/01/2012 09:12:17 PM,05/01/2012 09:13:25 PM,05/01/2012 09:13:31 PM,05/01/2012 09:15:12 PM,05/01/2012 09:17:37 PM,04/25/2016 01:58:54 PM,04/25/2016 01:58:54 PM,Other,04/25/2016 01:58:54 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,Alarm,1,ENGINE,2,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",121220356-E05 -160480446,79,16019233,Medical Incident,02/17/2016,02/16/2016,02/17/2016 06:00:28 AM,02/17/2016 06:01:07 AM,02/17/2016 06:01:34 AM,02/17/2016 06:01:45 AM,02/17/2016 06:05:08 AM,02/17/2016 06:29:32 AM,02/17/2016 06:36:33 AM,Code 2 Transport,02/17/2016 07:07:28 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160480446-79 -132680431,E11,13091197,Medical Incident,09/25/2013,09/25/2013,09/25/2013 11:11:56 PM,09/25/2013 11:12:28 PM,09/25/2013 11:12:57 PM,09/25/2013 11:14:43 PM,09/25/2013 11:16:34 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Other,09/25/2013 11:24:14 PM,1400 Block of VALENCIA ST,SF,94110,B06,11,5535,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,6,8,Mission,"(37.7497020110556, -122.420499334167)",132680431-E11 -111430375,81,11047680,Medical Incident,05/23/2011,05/23/2011,05/23/2011 09:29:56 PM,05/23/2011 09:31:34 PM,05/23/2011 09:31:46 PM,05/23/2011 09:32:17 PM,05/23/2011 09:33:16 PM,05/23/2011 09:51:17 PM,05/23/2011 09:58:53 PM,Code 2 Transport,05/23/2011 10:24:26 PM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,true,,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",111430375-81 -110380341,94,11012703,Medical Incident,02/07/2011,02/07/2011,02/07/2011 05:34:32 PM,02/07/2011 05:36:51 PM,02/07/2011 05:37:22 PM,02/07/2011 05:38:16 PM,02/07/2011 05:39:41 PM,02/07/2011 05:49:15 PM,02/07/2011 06:02:44 PM,Code 2 Transport,02/07/2011 06:25:46 PM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7622785491179, -122.419332516291)",110380341-94 -131450225,92,13049238,Medical Incident,05/25/2013,05/25/2013,05/25/2013 05:06:29 PM,05/25/2013 05:06:57 PM,05/25/2013 05:07:19 PM,05/25/2013 05:07:47 PM,05/25/2013 05:14:32 PM,05/25/2013 05:34:40 PM,05/25/2013 05:51:25 PM,Code 2 Transport,05/25/2013 06:23:16 PM,MISSION ST/YERBA BUENA LN,SF,94103,B03,1,2178,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7851218519914, -122.403501281439)",131450225-92 -121710125,KM10,12056706,Medical Incident,06/19/2012,06/19/2012,06/19/2012 10:08:57 AM,06/19/2012 10:10:27 AM,06/19/2012 10:10:44 AM,06/19/2012 10:11:31 AM,06/19/2012 10:21:40 AM,06/19/2012 10:38:35 AM,06/19/2012 10:53:22 AM,Code 2 Transport,06/19/2012 11:30:42 AM,0 Block of LUSK ST,SF,94107,B03,8,2224,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7783669136338, -122.394441653217)",121710125-KM10 -160391053,59,16015542,Medical Incident,02/08/2016,02/08/2016,02/08/2016 09:38:28 AM,02/08/2016 09:39:41 AM,02/08/2016 09:40:00 AM,02/08/2016 09:40:08 AM,02/08/2016 10:00:30 AM,02/08/2016 10:09:08 AM,02/08/2016 10:34:23 AM,Code 2 Transport,02/08/2016 11:09:28 AM,2300 Block of QUINTARA ST,San Francisco,94116,B08,18,7532,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7480617414206, -122.490549198808)",160391053-59 -122770020,AM10,12091391,Medical Incident,10/03/2012,10/02/2012,10/03/2012 02:00:31 AM,10/03/2012 02:03:20 AM,10/03/2012 02:03:31 AM,10/03/2012 02:04:11 AM,10/03/2012 02:09:45 AM,10/03/2012 02:13:30 AM,10/03/2012 02:24:57 AM,Code 2 Transport,10/03/2012 02:40:19 AM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,1,1,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",122770020-AM10 -160711741,74,16028235,Medical Incident,03/11/2016,03/11/2016,03/11/2016 01:08:24 PM,03/11/2016 01:08:36 PM,03/11/2016 01:08:57 PM,03/11/2016 01:09:27 PM,03/11/2016 01:16:52 PM,03/11/2016 01:34:24 PM,03/11/2016 01:42:39 PM,Code 2 Transport,03/11/2016 02:34:47 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160711741-74 -111030126,AM08,11034086,Medical Incident,04/13/2011,04/13/2011,04/13/2011 10:28:50 AM,04/13/2011 10:30:31 AM,04/13/2011 10:31:13 AM,04/13/2011 10:32:19 AM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/13/2011 10:36:08 AM,MONTGOMERY ST/JACKSON ST,SF,94111,B01,13,1232,3,3,3,false,,1,PRIVATE,3,1,3,Chinatown,"(37.7964174850191, -122.403496710989)",111030126-AM08 -102910047,E08,10092708,Medical Incident,10/18/2010,10/17/2010,10/18/2010 05:08:34 AM,10/18/2010 05:10:52 AM,10/18/2010 05:11:08 AM,10/18/2010 05:13:32 AM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,04/25/2016 02:08:03 PM,Other,10/18/2010 05:21:57 AM,4TH ST/CHINA BASIN ST,SF,94158,B03,8,2231,3,3,3,true,,1,ENGINE,2,3,6,Mission Bay,"(37.7718971758313, -122.391284249119)",102910047-E08 -160822741,KM04,16032658,Medical Incident,03/22/2016,03/22/2016,03/22/2016 04:45:07 PM,03/22/2016 04:48:12 PM,03/22/2016 04:49:01 PM,03/22/2016 04:49:27 PM,03/22/2016 05:05:51 PM,03/22/2016 05:47:16 PM,03/22/2016 06:05:26 PM,Code 2 Transport,03/22/2016 06:56:56 PM,2300 Block of 28TH AVE,San Francisco,94116,B08,40,7471,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7435624337993, -122.485331778015)",160822741-KM04 -160772258,AM14,16030630,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:24:04 PM,03/17/2016 02:24:56 PM,03/17/2016 02:25:41 PM,03/17/2016 02:26:42 PM,03/17/2016 02:57:55 PM,03/17/2016 02:57:57 PM,03/17/2016 03:27:48 PM,Code 2 Transport,03/17/2016 03:49:34 PM,200 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7914249452441, -122.402544180964)",160772258-AM14 -123210258,B09,12106746,Structure Fire,11/16/2012,11/16/2012,11/16/2012 04:24:09 PM,11/16/2012 04:25:03 PM,11/16/2012 04:25:34 PM,04/25/2016 01:55:46 PM,11/16/2012 04:34:41 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/16/2012 04:38:15 PM,0 Block of THOMAS MORE WAY,SF,94132,B08,33,8773,3,3,3,false,Alarm,1,CHIEF,8,8,7,Lakeshore,"(37.7122982509145, -122.473064099314)",123210258-B09 -160372324,AM06,16014744,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:51:29 PM,02/06/2016 02:52:16 PM,02/06/2016 02:52:27 PM,02/06/2016 02:52:56 PM,02/06/2016 02:59:26 PM,02/06/2016 03:23:33 PM,02/06/2016 03:37:47 PM,Code 2 Transport,02/06/2016 04:10:22 PM,700 Block of FOLSOM ST,San Francisco,94107,B03,1,2176,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,South of Market,"(37.7831757914875, -122.399603541822)",160372324-AM06 -110170107,60,11005596,Medical Incident,01/17/2011,01/17/2011,01/17/2011 11:01:53 AM,01/17/2011 11:04:00 AM,01/17/2011 11:04:21 AM,01/17/2011 11:05:05 AM,01/17/2011 11:05:56 AM,01/17/2011 11:27:01 AM,01/17/2011 11:32:35 AM,Code 2 Transport,01/17/2011 11:54:06 AM,1500 Block of CALIFORNIA ST,SF,94109,B04,41,1635,3,1,2,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7907373942464, -122.419872740428)",110170107-60 -131120022,B02,13037560,Structure Fire,04/22/2013,04/21/2013,04/22/2013 02:15:47 AM,04/22/2013 02:16:09 AM,04/22/2013 02:16:31 AM,04/22/2013 02:18:26 AM,04/22/2013 02:23:00 AM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,No Merit,04/22/2013 02:28:38 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,false,Alarm,1,CHIEF,9,3,6,South of Market,"(37.7815374331217, -122.409518341416)",131120022-B02 -102380172,E06,10075056,Structure Fire,08/26/2010,08/26/2010,08/26/2010 11:26:07 AM,08/26/2010 11:27:31 AM,08/26/2010 11:27:53 AM,08/26/2010 11:28:04 AM,08/26/2010 11:31:40 AM,04/25/2016 02:08:53 PM,04/25/2016 02:08:53 PM,Other,08/26/2010 11:41:00 AM,3700 Block of 18TH ST,SF,94114,B06,6,541,3,3,3,true,,1,ENGINE,2,2,8,Castro/Upper Market,"(37.7614131281147, -122.427220533731)",102380172-E06 -112560232,E07,11084467,Citizen Assist / Service Call,09/13/2011,09/13/2011,09/13/2011 02:33:03 PM,09/13/2011 02:34:20 PM,09/13/2011 02:34:46 PM,09/13/2011 02:36:22 PM,09/13/2011 02:37:59 PM,04/25/2016 02:02:41 PM,04/25/2016 02:02:41 PM,Fire,09/13/2011 02:45:17 PM,MISSION ST/19TH ST,SF,94110,B06,7,5433,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7602353559327, -122.419206043807)",112560232-E07 -132730033,55,13092655,Medical Incident,09/30/2013,09/29/2013,09/30/2013 01:59:18 AM,09/30/2013 02:02:04 AM,09/30/2013 02:02:16 AM,09/30/2013 02:02:43 AM,09/30/2013 02:07:43 AM,04/25/2016 01:50:31 PM,04/25/2016 01:50:31 PM,Other,09/30/2013 02:11:55 AM,200 Block of CERVANTES BLVD,SF,94123,B04,16,3564,3,3,3,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.8052760911775, -122.441593354951)",132730033-55 -133360052,AP,13113782,Other,12/02/2013,12/01/2013,12/02/2013 07:34:28 AM,12/02/2013 07:34:29 AM,12/02/2013 07:34:29 AM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,04/25/2016 01:49:29 PM,Fire,12/02/2013 07:34:34 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",133360052-AP -121190057,KM04,12039377,Medical Incident,04/28/2012,04/27/2012,04/28/2012 03:38:32 AM,04/28/2012 03:39:12 AM,04/28/2012 03:40:32 AM,04/28/2012 03:40:56 AM,04/28/2012 03:53:04 AM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Patient Declined Transport,04/28/2012 04:38:36 AM,200 Block of LEAVENWORTH ST,SF,94102,B02,3,1545,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7832678121935, -122.4140793367)",121190057-KM04 -122670122,AM04,12088162,Medical Incident,09/23/2012,09/23/2012,09/23/2012 10:09:57 AM,09/23/2012 10:12:23 AM,09/23/2012 10:12:45 AM,09/23/2012 10:13:27 AM,09/23/2012 10:25:50 AM,09/23/2012 10:58:41 AM,09/23/2012 11:13:52 AM,Code 2 Transport,09/23/2012 11:42:44 AM,1700 Block of 32ND AVE,SF,94122,B08,18,7534,1,1,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7545630438483, -122.490398408661)",122670122-AM04 -160483618,AM20,16019507,Traffic Collision,02/17/2016,02/17/2016,02/17/2016 08:25:41 PM,02/17/2016 08:25:41 PM,02/17/2016 08:26:29 PM,02/17/2016 08:27:39 PM,02/17/2016 08:51:22 PM,02/17/2016 09:11:47 PM,02/17/2016 09:25:17 PM,Code 2 Transport,02/17/2016 10:09:27 PM,ARCH ST/BROTHERHOOD WY,San Francisco,94132,B09,33,8412,2,3,3,false,Non Life-threatening,1,PRIVATE,3,9,7,Oceanview/Merced/Ingleside,"(37.7124218732149, -122.467072688577)",160483618-AM20 -160581041,AM08,16023060,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:17:10 AM,02/27/2016 09:18:28 AM,02/27/2016 09:19:25 AM,02/27/2016 09:20:24 AM,02/27/2016 09:31:39 AM,02/27/2016 09:46:24 AM,02/27/2016 10:09:08 AM,Code 2 Transport,02/27/2016 10:38:24 AM,1200 Block of MARINER DR,Treasure Isla,94130,B03,48,2931,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8291421803507, -122.374351232053)",160581041-AM08 -102830256,E28,10090117,Medical Incident,10/10/2010,10/10/2010,10/10/2010 04:06:06 PM,10/10/2010 04:06:35 PM,10/10/2010 04:07:38 PM,10/10/2010 04:07:58 PM,10/10/2010 04:11:05 PM,04/25/2016 02:08:10 PM,04/25/2016 02:08:10 PM,Other,10/10/2010 04:36:55 PM,KEARNY ST/LOMBARD ST,SF,94133,B01,28,1264,3,3,3,false,,1,ENGINE,1,1,3,North Beach,"(37.8036320041271, -122.40658211424)",102830256-E28 -160082991,AM10,16003346,Medical Incident,01/08/2016,01/08/2016,01/08/2016 06:01:25 PM,01/08/2016 06:03:00 PM,01/08/2016 06:03:14 PM,01/08/2016 06:04:03 PM,01/08/2016 06:08:15 PM,01/08/2016 06:36:36 PM,01/08/2016 07:06:42 PM,Code 2 Transport,01/08/2016 07:34:41 PM,600 Block of 32ND AVE,San Francisco,94121,B07,14,724,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",160082991-AM10 -130910083,67,13030360,Medical Incident,04/01/2013,04/01/2013,04/01/2013 08:37:46 AM,04/01/2013 08:39:53 AM,04/01/2013 08:41:12 AM,04/01/2013 08:41:23 AM,04/01/2013 08:51:38 AM,04/25/2016 01:53:32 PM,04/25/2016 01:53:32 PM,Other,04/01/2013 08:59:10 AM,0 Block of CAPP ST,SF,94103,B02,7,5225,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7662170202259, -122.418615040829)",130910083-67 -120690040,KM07,12022782,Medical Incident,03/09/2012,03/08/2012,03/09/2012 04:12:14 AM,03/09/2012 04:14:34 AM,03/09/2012 04:15:25 AM,03/09/2012 04:15:58 AM,03/09/2012 04:26:14 AM,03/09/2012 04:29:59 AM,03/09/2012 04:38:55 AM,Code 2 Transport,03/09/2012 05:10:24 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,1,1,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",120690040-KM07 -111050085,E41,11034697,Medical Incident,04/15/2011,04/15/2011,04/15/2011 09:42:47 AM,04/15/2011 09:43:39 AM,04/15/2011 09:43:49 AM,04/15/2011 09:45:02 AM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Patient Declined Transport,04/15/2011 09:47:30 AM,TAYLOR ST/PINE ST,SF,94108,B01,41,1413,3,E,3,false,,1,ENGINE,2,1,3,Nob Hill,"(37.7906727830021, -122.412266188172)",111050085-E41 -160420217,88,16016711,Medical Incident,02/11/2016,02/10/2016,02/11/2016 02:29:16 AM,02/11/2016 02:31:57 AM,02/11/2016 02:32:13 AM,02/11/2016 02:32:35 AM,02/11/2016 02:35:25 AM,02/11/2016 03:04:08 AM,02/11/2016 03:21:22 AM,Code 2 Transport,02/11/2016 03:46:00 AM,100 Block of 17TH AVE,San Francisco,94118,B07,31,7162,3,3,3,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7852029440362, -122.476436885446)",160420217-88 -160303067,88,16011902,Medical Incident,01/30/2016,01/30/2016,01/30/2016 06:36:30 PM,01/30/2016 06:37:50 PM,01/30/2016 06:38:58 PM,01/30/2016 06:39:04 PM,01/30/2016 06:43:10 PM,01/30/2016 07:06:43 PM,01/30/2016 07:34:48 PM,Code 2 Transport,01/30/2016 07:58:26 PM,FRONT ST/SACRAMENTO ST,San Francisco,94111,B01,13,1141,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",160303067-88 -160541219,84,16021530,Medical Incident,02/23/2016,02/23/2016,02/23/2016 10:31:59 AM,02/23/2016 10:34:10 AM,02/23/2016 10:34:43 AM,02/23/2016 10:35:10 AM,02/23/2016 10:50:53 AM,02/23/2016 11:07:51 AM,02/23/2016 11:20:03 AM,Code 2 Transport,02/23/2016 12:05:24 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160541219-84 -160710973,52,16028152,Medical Incident,03/11/2016,03/11/2016,03/11/2016 09:29:37 AM,03/11/2016 09:30:51 AM,03/11/2016 09:31:09 AM,03/11/2016 09:31:17 AM,03/11/2016 09:33:26 AM,03/11/2016 10:00:32 AM,03/11/2016 10:06:17 AM,Code 3 Transport,03/11/2016 10:52:20 AM,1300 Block of MARKET ST,San Francisco,94102,B02,36,3111,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7770834641942, -122.416979326411)",160710973-52 -112750255,63,11091068,Medical Incident,10/02/2011,10/02/2011,10/02/2011 04:34:38 PM,10/02/2011 04:35:00 PM,10/02/2011 04:38:52 PM,10/02/2011 04:41:12 PM,10/02/2011 04:47:30 PM,10/02/2011 04:51:38 PM,10/02/2011 05:02:03 PM,Code 2 Transport,10/02/2011 05:25:42 PM,24TH ST/YORK ST,SF,94110,B06,9,5531,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7528524062967, -122.408188967839)",112750255-63 -122050102,B07,12068106,Alarms,07/23/2012,07/23/2012,07/23/2012 09:20:23 AM,07/23/2012 09:21:48 AM,07/23/2012 09:22:44 AM,07/23/2012 09:23:38 AM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Fire,07/23/2012 09:29:44 AM,2000 Block of LYON ST,SF,94115,B04,10,4335,3,3,3,false,Alarm,1,CHIEF,3,4,2,Pacific Heights,"(37.7896922052437, -122.445777560087)",122050102-B07 -112740351,B02,11090758,Alarms,10/01/2011,10/01/2011,10/01/2011 07:30:29 PM,10/01/2011 07:31:11 PM,10/01/2011 07:31:50 PM,10/01/2011 07:34:28 PM,10/01/2011 07:37:35 PM,04/25/2016 02:02:23 PM,04/25/2016 02:02:23 PM,Other,10/01/2011 07:45:13 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",112740351-B02 -160271349,77,16010633,Medical Incident,01/27/2016,01/27/2016,01/27/2016 11:05:16 AM,01/27/2016 11:07:01 AM,01/27/2016 11:08:50 AM,01/27/2016 11:08:58 AM,01/27/2016 11:13:02 AM,01/27/2016 11:19:15 AM,01/27/2016 11:35:23 AM,Code 2 Transport,01/27/2016 12:13:05 PM,13TH ST/HARRISON ST,San Francisco,94103,B02,36,5112,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7695020049208, -122.413385239835)",160271349-77 -122640260,E36,12087247,Medical Incident,09/20/2012,09/20/2012,09/20/2012 03:49:47 PM,09/20/2012 03:52:16 PM,09/20/2012 03:53:51 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 03:57:07 PM,GROVE ST/VAN NESS AV,SF,94102,B02,36,3165,2,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,5,Hayes Valley,"(37.7782510164623, -122.419883231639)",122640260-E36 -140190283,85,14006627,Traffic Collision,01/19/2014,01/19/2014,01/19/2014 07:08:04 PM,01/19/2014 07:09:02 PM,01/19/2014 07:09:24 PM,04/25/2016 01:48:38 PM,01/19/2014 07:09:34 PM,01/19/2014 07:17:56 PM,01/19/2014 07:33:13 PM,Code 3 Transport,01/19/2014 07:59:05 PM,HAYES ST/MASONIC AV,SF,94117,B05,21,4464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Lone Mountain/USF,"(37.7739353716878, -122.446091726028)",140190283-85 -140750009,77,14025237,Traffic Collision,03/16/2014,03/15/2014,03/16/2014 12:10:44 AM,03/16/2014 12:12:46 AM,03/16/2014 12:16:33 AM,03/16/2014 12:16:33 AM,03/16/2014 12:19:35 AM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Against Medical Advice,03/16/2014 12:54:01 AM,37TH AV/FULTON ST,SAN FRANCISCO,94121,B07,34,7253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7719829461295, -122.497046820809)",140750009-77 -122700255,59,12089186,Other,09/26/2012,09/26/2012,09/26/2012 05:32:31 PM,09/26/2012 05:33:03 PM,09/26/2012 05:33:22 PM,09/26/2012 05:44:58 PM,09/26/2012 05:56:01 PM,09/26/2012 06:03:09 PM,09/26/2012 06:36:36 PM,Code 2 Transport,09/26/2012 07:19:26 PM,900 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Alarm,1,MEDIC,5,1,3,Nob Hill,"(37.7923069821581, -122.410843810017)",122700255-59 -131060158,83,13035609,Medical Incident,04/16/2013,04/16/2013,04/16/2013 11:50:36 AM,04/16/2013 11:51:54 AM,04/16/2013 11:52:46 AM,04/16/2013 11:52:56 AM,04/16/2013 12:02:30 PM,04/16/2013 12:32:33 PM,04/16/2013 12:45:52 PM,Code 2 Transport,04/16/2013 01:03:49 PM,1900 Block of LOMBARD ST,SF,94123,B04,16,3461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8002723548355, -122.433605968659)",131060158-83 -130430093,E35,13014560,Alarms,02/12/2013,02/12/2013,02/12/2013 09:25:18 AM,02/12/2013 09:26:23 AM,02/12/2013 09:26:47 AM,02/12/2013 09:27:58 AM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,02/12/2013 09:28:01 AM,600 Block of NELSON RISING LN,SF,94158,B03,8,2264,3,3,3,true,Alarm,1,ENGINE,4,3,6,Mission Bay,"(37.7695557600647, -122.391895275784)",130430093-E35 -140170287,E07,14005912,Medical Incident,01/17/2014,01/17/2014,01/17/2014 06:02:56 PM,01/17/2014 06:03:36 PM,01/17/2014 06:04:02 PM,01/17/2014 06:05:37 PM,01/17/2014 06:07:01 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 06:18:16 PM,600 Block of SHOTWELL ST,SF,94110,B06,7,5447,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7580354882045, -122.415633765082)",140170287-E07 -111290361,88,11042815,Medical Incident,05/09/2011,05/09/2011,05/09/2011 11:27:13 PM,05/09/2011 11:27:13 PM,05/09/2011 11:28:20 PM,05/09/2011 11:28:33 PM,05/09/2011 11:34:03 PM,05/09/2011 11:39:03 PM,05/09/2011 11:49:04 PM,Code 3 Transport,05/10/2011 12:24:43 AM,BAYSHORE BL/BLANKEN AV,SF,94134,B10,44,6271,E,E,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7122508633321, -122.401914747165)",111290361-88 -133440093,94,13116588,Medical Incident,12/10/2013,12/10/2013,12/10/2013 08:28:58 AM,12/10/2013 08:30:59 AM,12/10/2013 08:31:12 AM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 08:31:51 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",133440093-94 -160350109,AM20,16013638,Traffic Collision,02/04/2016,02/03/2016,02/04/2016 12:56:36 AM,02/04/2016 12:57:45 AM,02/04/2016 12:58:47 AM,02/04/2016 12:59:43 AM,02/04/2016 01:11:26 AM,02/04/2016 01:30:07 AM,02/04/2016 01:40:57 AM,Code 2 Transport,02/04/2016 02:10:18 AM,0 Block of FREMONT ST,San Francisco,94105,B03,48,2951,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Financial District/South Beach,"(37.7910498079932, -122.397526111294)",160350109-AM20 -140410417,B02,14014123,Alarms,02/10/2014,02/10/2014,02/10/2014 10:17:15 PM,02/10/2014 10:19:22 PM,02/10/2014 10:19:36 PM,02/10/2014 10:20:32 PM,02/10/2014 10:23:13 PM,04/25/2016 01:48:16 PM,04/25/2016 01:48:16 PM,Other,02/10/2014 10:24:36 PM,500 Block of CASTRO ST,SF,94114,B06,6,5437,3,3,3,false,Alarm,1,CHIEF,2,6,8,Castro/Upper Market,"(37.7600930498172, -122.434858190165)",140410417-B02 -112710400,73,11089713,Medical Incident,09/28/2011,09/28/2011,09/28/2011 06:50:06 PM,09/28/2011 06:51:07 PM,09/28/2011 06:51:18 PM,04/25/2016 02:02:26 PM,09/28/2011 06:54:38 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 06:56:24 PM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,3,3,3,true,,1,MEDIC,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",112710400-73 -120280012,73,12009264,Structure Fire,01/28/2012,01/27/2012,01/28/2012 12:42:11 AM,01/28/2012 12:42:11 AM,01/28/2012 12:42:52 AM,01/28/2012 12:43:26 AM,01/28/2012 12:55:59 AM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Other,01/28/2012 01:12:03 AM,1100 Block of MARKET ST,SF,94103,B02,36,2316,3,3,3,true,Fire,1,MEDIC,8,2,6,South of Market,"(37.7795310846627, -122.413542548681)",120280012-73 -111950318,T07,11064490,Structure Fire,07/14/2011,07/14/2011,07/14/2011 07:17:16 PM,07/14/2011 07:17:16 PM,07/14/2011 07:17:37 PM,07/14/2011 07:18:35 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 07:22:07 PM,25TH ST/HARRISON ST,SF,94110,B06,7,5533,3,3,3,false,,1,TRUCK,3,6,9,Mission,"(37.7510338955654, -122.411746226036)",111950318-T07 -140070045,E03,14002380,Medical Incident,01/07/2014,01/06/2014,01/07/2014 04:25:18 AM,01/07/2014 04:25:54 AM,01/07/2014 04:27:43 AM,01/07/2014 04:29:20 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/07/2014 04:43:50 AM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",140070045-E03 -123590144,E34,12120148,Traffic Collision,12/24/2012,12/24/2012,12/24/2012 11:29:54 AM,12/24/2012 11:30:58 AM,12/24/2012 11:31:10 AM,12/24/2012 11:32:16 AM,12/24/2012 11:36:51 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 11:36:59 AM,1600 Block of JOHN F KENNEDY DR,SF,94122,B07,34,7262,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,7,1,Golden Gate Park,"(37.7688672343234, -122.498370035465)",123590144-E34 -160050058,52,16001815,Medical Incident,01/05/2016,01/04/2016,01/05/2016 12:33:49 AM,01/05/2016 12:33:49 AM,01/05/2016 12:34:29 AM,01/05/2016 12:34:36 AM,01/05/2016 12:38:43 AM,01/05/2016 12:49:57 AM,01/05/2016 12:53:33 AM,Code 2 Transport,01/05/2016 01:13:08 AM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",160050058-52 -111220012,D2,11040182,Structure Fire,05/02/2011,05/01/2011,05/02/2011 12:38:31 AM,05/02/2011 12:39:49 AM,05/02/2011 12:40:17 AM,05/02/2011 12:42:06 AM,05/02/2011 12:44:21 AM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/02/2011 12:51:07 AM,2500 Block of WASHINGTON ST,SF,94115,B04,38,3545,3,3,3,false,,1,CHIEF,4,4,2,Pacific Heights,"(37.791541565931, -122.435214356646)",111220012-D2 -160163278,91,16006574,Medical Incident,01/16/2016,01/16/2016,01/16/2016 08:18:10 PM,01/16/2016 08:18:10 PM,01/16/2016 08:18:32 PM,01/16/2016 08:19:02 PM,01/16/2016 08:19:59 PM,01/16/2016 08:29:20 PM,01/16/2016 08:39:13 PM,Code 2 Transport,01/16/2016 09:01:26 PM,1200 Block of NORIEGA ST,San Francisco,94122,B08,40,7431,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7541626087987, -122.47698218542)",160163278-91 -130930201,58,13031146,Medical Incident,04/03/2013,04/03/2013,04/03/2013 01:59:21 PM,04/03/2013 02:03:06 PM,04/03/2013 02:03:16 PM,04/03/2013 02:03:34 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,04/25/2016 01:53:30 PM,Other,04/03/2013 02:09:27 PM,STEUART ST/MISSION ST,SF,94105,B03,35,2131,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7932304913096, -122.393181335014)",130930201-58 -111500287,E01,11049797,Medical Incident,05/30/2011,05/30/2011,05/30/2011 07:53:29 PM,05/30/2011 07:54:43 PM,05/30/2011 07:55:23 PM,05/30/2011 07:56:26 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,04/25/2016 02:04:23 PM,Other,05/30/2011 07:56:37 PM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,true,,1,ENGINE,3,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",111500287-E01 -160813528,AM16,16032348,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:32:13 PM,03/21/2016 08:32:13 PM,03/21/2016 08:43:18 PM,03/21/2016 08:43:55 PM,03/21/2016 09:09:43 PM,03/21/2016 09:20:55 PM,03/21/2016 09:46:04 PM,Other,03/21/2016 10:18:30 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7716194932179, -122.445557574682)",160813528-AM16 -160900573,52,16035603,Medical Incident,03/30/2016,03/29/2016,03/30/2016 07:07:50 AM,03/30/2016 07:09:52 AM,03/30/2016 07:10:08 AM,03/30/2016 07:10:08 AM,03/30/2016 07:21:05 AM,03/30/2016 07:28:43 AM,03/30/2016 07:40:16 AM,Code 2 Transport,03/30/2016 08:03:00 AM,1900 Block of POST ST,San Francisco,94115,B04,5,3622,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Japantown,"(37.7850500973338, -122.434328328397)",160900573-52 -160350990,65,16013737,Medical Incident,02/04/2016,02/04/2016,02/04/2016 09:29:56 AM,02/04/2016 09:29:56 AM,02/04/2016 09:29:56 AM,02/04/2016 09:29:56 AM,02/04/2016 09:29:56 AM,02/04/2016 10:17:29 AM,02/04/2016 10:31:03 AM,Code 2 Transport,02/04/2016 11:16:36 AM,200 Block of FOLSOM ST,San Francisco,94105,B02,35,2117,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034905, -122.392339379947)",160350990-65 -122420347,E37,12080190,Medical Incident,08/29/2012,08/29/2012,08/29/2012 09:34:15 PM,08/29/2012 09:37:31 PM,08/29/2012 09:37:43 PM,08/29/2012 09:38:56 PM,08/29/2012 09:41:27 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/29/2012 09:43:20 PM,1000 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,10,10,Potrero Hill,"(37.7535461760596, -122.397211836423)",122420347-E37 -113130059,96,11103900,Traffic Collision,11/09/2011,11/08/2011,11/09/2011 06:28:33 AM,11/09/2011 06:30:44 AM,11/09/2011 06:31:35 AM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,04/25/2016 02:01:44 PM,Other,11/09/2011 06:40:32 AM,MARIPOSA ST/INDIANA ST,SF,94107,B03,29,2436,3,3,3,true,,1,MEDIC,7,3,6,Potrero Hill,"(37.7641414045887, -122.391781010422)",113130059-96 -133140327,E24,13106888,Medical Incident,11/10/2013,11/10/2013,11/10/2013 10:23:50 PM,11/10/2013 10:28:40 PM,11/10/2013 10:30:50 PM,11/10/2013 10:33:59 PM,11/10/2013 10:38:00 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 10:50:02 PM,4400 Block of 17TH ST,SF,94114,B05,24,5265,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7618588353801, -122.444747469167)",133140327-E24 -131030050,RC3,13034481,Medical Incident,04/13/2013,04/12/2013,04/13/2013 03:11:24 AM,04/13/2013 03:13:20 AM,04/13/2013 03:14:07 AM,04/13/2013 03:17:33 AM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/13/2013 03:20:10 AM,TEHAMA ST/8TH ST,SF,94103,B02,29,2322,A,A,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,2,6,South of Market,"(37.7757938041855, -122.411069443844)",131030050-RC3 -131540096,E22,13052086,Structure Fire,06/03/2013,06/03/2013,06/03/2013 08:40:27 AM,06/03/2013 08:41:19 AM,06/03/2013 08:41:46 AM,06/03/2013 08:43:10 AM,06/03/2013 08:47:12 AM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/03/2013 08:56:15 AM,1800 Block of PAGE ST,SF,94117,B05,12,4533,3,3,3,false,Alarm,1,ENGINE,6,5,5,Haight Ashbury,"(37.7703617831201, -122.451220569192)",131540096-E22 -131610237,E19,13054730,Administrative,06/10/2013,06/10/2013,06/10/2013 02:38:11 PM,06/10/2013 02:38:13 PM,06/10/2013 02:39:01 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,Other,06/10/2013 02:39:35 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",131610237-E19 -130240373,B08,13008446,Alarms,01/24/2013,01/24/2013,01/24/2013 08:51:23 PM,01/24/2013 08:52:48 PM,01/24/2013 08:52:57 PM,01/24/2013 08:55:26 PM,01/24/2013 09:01:48 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Fire,01/24/2013 10:16:16 PM,0 Block of LA AVANZADA,SF,94131,B08,20,5365,3,3,3,false,Alarm,1,CHIEF,3,8,7,Twin Peaks,"(37.7559493215982, -122.452288235801)",130240373-B08 -103110259,E08,10099807,Medical Incident,11/07/2010,11/07/2010,11/07/2010 04:46:06 PM,11/07/2010 04:46:35 PM,11/07/2010 04:46:52 PM,11/07/2010 04:47:56 PM,11/07/2010 04:52:13 PM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 04:55:51 PM,1000 Block of FOLSOM ST,SF,94103,B03,1,2313,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7777816676305, -122.406629219771)",103110259-E08 -160693414,53,16027629,Medical Incident,03/09/2016,03/09/2016,03/09/2016 08:12:34 PM,03/09/2016 08:16:20 PM,03/09/2016 08:17:07 PM,03/09/2016 08:17:14 PM,03/09/2016 08:28:46 PM,03/09/2016 08:47:33 PM,03/09/2016 09:31:48 PM,Code 2 Transport,03/09/2016 09:50:15 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7800525030811, -122.40977382526)",160693414-53 -122640318,E02,12087295,Medical Incident,09/20/2012,09/20/2012,09/20/2012 06:18:03 PM,09/20/2012 06:19:14 PM,09/20/2012 06:19:46 PM,09/20/2012 06:21:58 PM,09/20/2012 06:23:49 PM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 06:42:20 PM,500 Block of COLUMBUS AVE,SF,94133,B01,28,1334,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.7999440400543, -122.409564939064)",122640318-E02 -120460045,55,12015192,Medical Incident,02/15/2012,02/14/2012,02/15/2012 06:35:51 AM,02/15/2012 06:36:34 AM,02/15/2012 06:38:15 AM,02/15/2012 06:39:06 AM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,04/25/2016 02:00:08 PM,400 Block of 21ST AVE,SF,94121,B07,14,7172,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7793232485951, -122.480311461587)",120460045-55 -122980170,RA48,12098753,Medical Incident,10/24/2012,10/24/2012,10/24/2012 12:30:43 PM,10/24/2012 12:32:24 PM,10/24/2012 12:34:21 PM,10/24/2012 12:35:50 PM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/24/2012 01:09:33 PM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,2,2,2,false,Non Life-threatening,1,MEDIC,3,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",122980170-RA48 -122460059,E02,12081238,Structure Fire,09/02/2012,09/01/2012,09/02/2012 03:31:48 AM,09/02/2012 03:31:48 AM,09/02/2012 03:31:59 AM,09/02/2012 03:34:27 AM,09/02/2012 03:36:46 AM,04/25/2016 01:56:57 PM,04/25/2016 01:56:57 PM,Other,09/02/2012 03:36:59 AM,STOCKTON ST/SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,true,Alarm,1,ENGINE,2,1,3,Chinatown,"(37.7931783017695, -122.40772718761)",122460059-E02 -121520279,E03,12050419,Medical Incident,05/31/2012,05/31/2012,05/31/2012 05:55:55 PM,05/31/2012 05:57:06 PM,05/31/2012 05:57:33 PM,05/31/2012 05:58:41 PM,05/31/2012 06:00:55 PM,04/25/2016 01:58:26 PM,04/25/2016 01:58:26 PM,Other,05/31/2012 06:04:33 PM,JONES ST/EDDY ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",121520279-E03 -160082200,63,16003279,Medical Incident,01/08/2016,01/08/2016,01/08/2016 02:49:43 PM,01/08/2016 02:49:43 PM,01/08/2016 02:50:35 PM,01/08/2016 02:50:49 PM,01/08/2016 03:01:35 PM,01/08/2016 03:17:09 PM,01/08/2016 03:30:28 PM,Code 2 Transport,01/08/2016 03:58:24 PM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160082200-63 -121160286,T14,12038533,Alarms,04/25/2012,04/25/2012,04/25/2012 06:10:28 PM,04/25/2012 06:11:33 PM,04/25/2012 06:11:40 PM,04/25/2012 06:14:07 PM,04/25/2012 06:15:51 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Other,04/25/2012 06:18:34 PM,100 Block of 22ND AVE,SF,94121,B07,14,7174,3,3,3,false,Alarm,1,TRUCK,1,7,1,Outer Richmond,"(37.7849531015294, -122.481929275092)",121160286-T14 -160452093,67,16018174,Medical Incident,02/14/2016,02/14/2016,02/14/2016 03:20:42 PM,02/14/2016 03:20:42 PM,02/14/2016 03:21:06 PM,02/14/2016 03:24:59 PM,02/14/2016 03:34:13 PM,02/14/2016 03:43:19 PM,02/14/2016 03:53:13 PM,Code 2 Transport,02/14/2016 04:36:11 PM,3RD ST/STILLMAN ST,San Francisco,94107,B03,8,2174,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",160452093-67 -131610415,94,13054893,Medical Incident,06/10/2013,06/10/2013,06/10/2013 11:47:56 PM,06/10/2013 11:48:16 PM,06/10/2013 11:48:48 PM,06/10/2013 11:49:13 PM,06/11/2013 12:01:54 AM,06/11/2013 12:18:01 AM,06/11/2013 12:28:24 AM,Code 2 Transport,06/11/2013 12:50:12 AM,BARTLETT ST/25TH ST,SF,94110,B06,11,5535,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7505726090469, -122.419399682073)",131610415-94 -160023378,76,16000940,Medical Incident,01/02/2016,01/02/2016,01/02/2016 09:56:31 PM,01/02/2016 09:59:33 PM,01/02/2016 09:59:54 PM,01/02/2016 10:00:23 PM,01/02/2016 10:15:09 PM,01/02/2016 10:22:16 PM,01/02/2016 10:34:08 PM,Code 2 Transport,01/02/2016 11:09:06 PM,500 Block of 5TH ST,San Francisco,94107,B03,8,2242,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",160023378-76 -120270323,94,12009181,Medical Incident,01/27/2012,01/27/2012,01/27/2012 06:55:59 PM,01/27/2012 06:57:08 PM,01/27/2012 06:57:24 PM,01/27/2012 06:57:55 PM,01/27/2012 07:07:53 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Medical Examiner,01/27/2012 07:34:15 PM,1400 Block of LA SALLE AVE,SF,94124,B10,17,6517,E,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7349050342849, -122.386304220968)",120270323-94 -102580367,74,10081648,Medical Incident,09/15/2010,09/15/2010,09/15/2010 09:55:51 PM,09/15/2010 09:56:22 PM,09/15/2010 09:56:39 PM,09/15/2010 09:56:54 PM,09/15/2010 09:59:24 PM,09/15/2010 10:10:02 PM,09/15/2010 10:14:40 PM,Code 2 Transport,09/15/2010 10:33:58 PM,19TH ST/FOLSOM ST,SF,94110,B06,7,5432,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7604988732472, -122.414841891781)",102580367-74 -160612591,AM16,16024401,Medical Incident,03/01/2016,03/01/2016,03/01/2016 05:26:16 PM,03/01/2016 05:28:33 PM,03/01/2016 05:31:42 PM,03/01/2016 05:32:24 PM,03/01/2016 05:44:17 PM,03/01/2016 06:03:59 PM,03/01/2016 06:11:42 PM,Code 2 Transport,03/01/2016 06:48:31 PM,1400 Block of POST ST,San Francisco,94109,B04,3,3256,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.7860447238816, -122.426514096484)",160612591-AM16 -131360187,T12,13045867,Administrative,05/16/2013,05/16/2013,05/16/2013 12:02:19 PM,05/16/2013 12:02:24 PM,05/16/2013 12:02:45 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 12:03:12 PM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,false,,1,TRUCK,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",131360187-T12 -110880173,E07,11029041,Medical Incident,03/29/2011,03/29/2011,03/29/2011 12:22:53 PM,03/29/2011 12:24:22 PM,03/29/2011 12:25:46 PM,03/29/2011 12:26:44 PM,03/29/2011 12:28:25 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 12:43:26 PM,24TH ST/FOLSOM ST,SF,94110,B06,7,5526,2,2,2,true,,1,ENGINE,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",110880173-E07 -113490328,74,11115930,Medical Incident,12/15/2011,12/15/2011,12/15/2011 09:06:55 PM,12/15/2011 09:08:14 PM,12/15/2011 09:08:32 PM,12/15/2011 09:08:44 PM,12/15/2011 09:13:10 PM,12/15/2011 09:31:45 PM,12/15/2011 09:36:45 PM,Code 2 Transport,12/15/2011 10:10:43 PM,2500 Block of MISSION ST,SF,94110,B06,7,5472,2,2,2,true,,1,MEDIC,1,6,9,Mission,"(37.7562403438982, -122.418755320213)",113490328-74 -160723186,AM22,16028771,Medical Incident,03/12/2016,03/12/2016,03/12/2016 08:55:02 PM,03/12/2016 08:57:54 PM,03/12/2016 08:58:26 PM,03/12/2016 09:00:02 PM,03/12/2016 09:04:56 PM,03/12/2016 09:21:26 PM,03/12/2016 09:36:18 PM,Code 2 Transport,03/12/2016 10:25:18 PM,700 Block of GROVE ST,San Francisco,94102,B02,5,3424,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Hayes Valley,"(37.7770920707523, -122.429212775945)",160723186-AM22 -110800306,E01,11026460,Medical Incident,03/21/2011,03/21/2011,03/21/2011 06:29:45 PM,03/21/2011 06:30:38 PM,03/21/2011 06:30:57 PM,03/21/2011 06:32:34 PM,03/21/2011 06:34:51 PM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Other,03/21/2011 06:37:04 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7839914857614, -122.408066547804)",110800306-E01 -111400206,89,11046557,Medical Incident,05/20/2011,05/20/2011,05/20/2011 03:19:52 PM,05/20/2011 03:21:28 PM,05/20/2011 03:21:45 PM,05/20/2011 03:21:58 PM,05/20/2011 03:32:27 PM,05/20/2011 03:51:25 PM,05/20/2011 04:00:51 PM,Code 2 Transport,05/20/2011 04:28:31 PM,4100 Block of GEARY BLVD,SF,94118,B07,31,7124,3,3,3,true,,1,MEDIC,3,7,1,Inner Richmond,"(37.7809175426312, -122.463733273391)",111400206-89 -131890245,E10,13064473,Medical Incident,07/08/2013,07/08/2013,07/08/2013 04:04:57 PM,07/08/2013 04:07:24 PM,07/08/2013 04:07:52 PM,07/08/2013 04:08:54 PM,07/08/2013 04:11:18 PM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/08/2013 04:26:12 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",131890245-E10 -160623946,79,16024871,Medical Incident,03/02/2016,03/02/2016,03/02/2016 09:25:09 PM,03/02/2016 09:27:47 PM,03/02/2016 09:28:03 PM,03/02/2016 09:28:10 PM,03/02/2016 09:37:36 PM,03/02/2016 09:56:25 PM,03/02/2016 10:07:51 PM,Code 2 Transport,03/02/2016 10:38:52 PM,1900 Block of SILVER AVE,San Francisco,94124,B10,42,6454,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.735116126922, -122.401297041461)",160623946-79 -160831138,59,16032896,Medical Incident,03/23/2016,03/23/2016,03/23/2016 09:46:14 AM,03/23/2016 09:48:06 AM,03/23/2016 09:49:09 AM,03/23/2016 09:49:40 AM,03/23/2016 10:05:49 AM,03/23/2016 10:20:51 AM,03/23/2016 10:28:18 AM,Code 2 Transport,03/23/2016 11:02:22 AM,100 Block of FONT BLVD,San Francisco,94132,B08,33,8422,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7155450528368, -122.473629919739)",160831138-59 -121770167,E05,12058869,Medical Incident,06/25/2012,06/25/2012,06/25/2012 12:07:20 PM,06/25/2012 12:08:38 PM,06/25/2012 12:08:51 PM,06/25/2012 12:09:57 PM,06/25/2012 12:10:25 PM,04/25/2016 01:58:02 PM,04/25/2016 01:58:02 PM,Other,06/25/2012 12:22:36 PM,1200 Block of GOLDEN GATE AVE,SF,94115,B05,5,3516,3,E,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7796192389758, -122.431081568438)",121770167-E05 -111570347,99,11052049,Medical Incident,06/06/2011,06/06/2011,06/06/2011 08:21:40 PM,06/06/2011 08:22:01 PM,06/06/2011 08:22:18 PM,06/06/2011 08:22:28 PM,06/06/2011 08:28:05 PM,06/06/2011 08:40:53 PM,06/06/2011 08:52:34 PM,Code 2 Transport,06/06/2011 09:15:29 PM,DIAMOND ST/CHENERY ST,SF,94131,B06,26,8146,3,3,3,true,,1,MEDIC,2,6,8,Glen Park,"(37.7345078169797, -122.433879093161)",111570347-99 -122770243,E02,12091563,Medical Incident,10/03/2012,10/03/2012,10/03/2012 01:45:24 PM,10/03/2012 01:47:17 PM,10/03/2012 01:47:39 PM,04/25/2016 01:56:29 PM,10/03/2012 01:49:49 PM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 01:51:33 PM,OFARRELL ST/LEAVENWORTH ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",122770243-E02 -102310230,E17,10072741,Medical Incident,08/19/2010,08/19/2010,08/19/2010 02:55:38 PM,08/19/2010 02:55:38 PM,08/19/2010 02:58:42 PM,08/19/2010 03:00:06 PM,08/19/2010 03:03:13 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 03:07:25 PM,0 Block of CASHMERE ST,SF,94124,B10,25,652,3,3,3,true,,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.7358858148594, -122.382705072801)",102310230-E17 -122410093,E32,12079700,Alarms,08/28/2012,08/28/2012,08/28/2012 09:08:35 AM,08/28/2012 09:11:27 AM,08/28/2012 09:11:40 AM,08/28/2012 09:12:57 AM,08/28/2012 09:17:19 AM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/28/2012 09:50:35 AM,200 Block of PUTNAM ST,SF,94110,B10,32,5746,3,3,3,true,Alarm,1,ENGINE,1,10,9,Bernal Heights,"(37.7363354363839, -122.410984067984)",122410093-E32 -110450258,57,11014985,Medical Incident,02/14/2011,02/14/2011,02/14/2011 04:29:00 PM,02/14/2011 04:29:40 PM,02/14/2011 04:29:54 PM,02/14/2011 04:30:28 PM,02/14/2011 04:39:47 PM,02/14/2011 05:10:38 PM,02/14/2011 05:29:52 PM,Code 2 Transport,02/14/2011 06:00:53 PM,1600 Block of 45TH AVE,SF,94122,B08,23,7661,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7558064157946, -122.504597713164)",110450258-57 -160642668,74,16025581,Medical Incident,03/04/2016,03/04/2016,03/04/2016 04:35:32 PM,03/04/2016 04:35:32 PM,03/04/2016 04:35:45 PM,03/04/2016 04:35:54 PM,03/04/2016 04:58:35 PM,03/04/2016 05:19:24 PM,03/04/2016 05:31:29 PM,Code 2 Transport,03/04/2016 06:02:48 PM,700 Block of 40TH AVE,San Francisco,94121,B07,34,7263,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7746325487031, -122.500519854955)",160642668-74 -132010301,E02,13068257,Traffic Collision,07/20/2013,07/20/2013,07/20/2013 07:36:48 PM,07/20/2013 07:37:09 PM,07/20/2013 07:37:32 PM,07/20/2013 07:38:24 PM,07/20/2013 07:41:46 PM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/20/2013 07:55:17 PM,KEARNY ST/BAY ST,SF,94133,B01,28,1255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,North Beach,"(37.8064278132785, -122.407146282779)",132010301-E02 -121480045,54,12048996,Medical Incident,05/27/2012,05/26/2012,05/27/2012 03:50:34 AM,05/27/2012 03:51:27 AM,05/27/2012 03:51:54 AM,05/27/2012 03:55:33 AM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,04/25/2016 01:58:30 PM,Other,05/27/2012 04:00:23 AM,500 Block of BROADWAY,SF,94133,B01,2,1311,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7980228452184, -122.405863212632)",121480045-54 -160753285,67,16029853,Medical Incident,03/15/2016,03/15/2016,03/15/2016 07:00:03 PM,03/15/2016 07:00:25 PM,03/15/2016 07:00:57 PM,03/15/2016 07:01:42 PM,03/15/2016 07:09:57 PM,03/15/2016 07:42:19 PM,03/15/2016 08:21:03 PM,Code 2 Transport,03/15/2016 09:07:52 PM,1000 Block of BOWDOIN ST,San Francisco,94134,B10,42,6331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7228471250917, -122.409201549394)",160753285-67 -160763453,61,16030311,Medical Incident,03/16/2016,03/16/2016,03/16/2016 07:16:59 PM,03/16/2016 07:20:12 PM,03/16/2016 07:21:05 PM,03/16/2016 07:21:17 PM,03/16/2016 07:32:26 PM,03/16/2016 07:38:39 PM,03/16/2016 07:48:55 PM,Code 2 Transport,03/16/2016 08:27:13 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803875013555, -122.407877117352)",160763453-61 -102320382,B06,10073184,Alarms,08/20/2010,08/20/2010,08/20/2010 11:45:05 PM,08/20/2010 11:47:15 PM,08/20/2010 11:47:21 PM,08/20/2010 11:49:19 PM,08/20/2010 11:53:31 PM,04/25/2016 02:08:59 PM,04/25/2016 02:08:59 PM,Other,08/20/2010 11:55:56 PM,600 Block of CASTRO ST,SF,94114,B06,6,5437,3,3,3,false,,1,CHIEF,3,6,8,Castro/Upper Market,"(37.7584836229663, -122.434844610505)",102320382-B06 -103180018,T03,10101791,Structure Fire,11/14/2010,11/13/2010,11/14/2010 12:48:10 AM,11/14/2010 12:48:48 AM,11/14/2010 12:49:25 AM,11/14/2010 12:51:01 AM,11/14/2010 12:53:27 AM,04/25/2016 02:07:36 PM,04/25/2016 02:07:36 PM,Other,11/14/2010 01:00:47 AM,1900 Block of CLAY ST,SF,94109,B04,38,3253,3,3,3,false,,1,TRUCK,3,4,2,Pacific Heights,"(37.791806912128, -122.425149392221)",103180018-T03 -160370093,AM22,16014505,Medical Incident,02/06/2016,02/05/2016,02/06/2016 12:20:34 AM,02/06/2016 12:22:00 AM,02/06/2016 12:23:51 AM,02/06/2016 12:24:49 AM,02/06/2016 12:27:23 AM,02/06/2016 12:54:58 AM,02/06/2016 01:01:17 AM,Code 2 Transport,02/06/2016 01:23:59 AM,200 Block of HYDE ST,San Francisco,94102,B02,3,1554,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",160370093-AM22 -132740114,E16,13093041,Water Rescue,10/01/2013,10/01/2013,10/01/2013 10:08:29 AM,10/01/2013 10:11:04 AM,10/01/2013 10:14:56 AM,10/01/2013 10:17:29 AM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,04/25/2016 01:50:29 PM,Other,10/01/2013 10:49:47 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,A,A,2,true,Fire,1,ENGINE,11,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",132740114-E16 -160322465,65,16012657,Medical Incident,02/01/2016,02/01/2016,02/01/2016 04:25:05 PM,02/01/2016 04:25:47 PM,02/01/2016 04:26:07 PM,02/01/2016 04:26:14 PM,02/01/2016 04:35:02 PM,02/01/2016 05:10:36 PM,02/01/2016 05:48:28 PM,Code 2 Transport,02/01/2016 06:19:53 PM,0 Block of GILROY ST,San Francisco,94124,B10,17,6642,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7164686786024, -122.388893192749)",160322465-65 -132710063,E07,13091969,Structure Fire,09/28/2013,09/27/2013,09/28/2013 04:59:07 AM,09/28/2013 04:59:08 AM,09/28/2013 05:00:20 AM,09/28/2013 05:02:03 AM,09/28/2013 05:04:02 AM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,09/28/2013 05:04:24 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",132710063-E07 -132410272,58,13081368,Traffic Collision,08/29/2013,08/29/2013,08/29/2013 06:00:34 PM,08/29/2013 06:01:39 PM,08/29/2013 06:05:03 PM,08/29/2013 06:05:12 PM,08/29/2013 06:15:08 PM,08/29/2013 06:33:33 PM,08/29/2013 07:06:42 PM,Code 2 Transport,08/29/2013 07:29:16 PM,PARIS ST/PERSIA AV,SF,94112,B03,43,6126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7223816672522, -122.434406708467)",132410272-58 -123330277,T12,12110740,Structure Fire,11/28/2012,11/28/2012,11/28/2012 06:30:15 PM,11/28/2012 06:31:28 PM,11/28/2012 06:31:41 PM,11/28/2012 06:32:37 PM,11/28/2012 06:36:29 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/28/2012 06:50:34 PM,0 Block of PARNASSUS AVE,SF,94117,B05,12,5151,3,3,3,false,Alarm,1,TRUCK,2,5,5,Haight Ashbury,"(37.7651415543543, -122.448048775097)",123330277-T12 -132670018,66,13090502,Traffic Collision,09/24/2013,09/23/2013,09/24/2013 02:14:50 AM,09/24/2013 02:15:45 AM,09/24/2013 02:16:08 AM,09/24/2013 02:17:04 AM,09/24/2013 02:19:57 AM,09/24/2013 02:27:38 AM,09/24/2013 02:37:32 AM,Code 3 Transport,09/24/2013 03:31:21 AM,BROADWAY ST/LARKIN ST,SF,94109,B01,41,1632,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Russian Hill,"(37.7960945686376, -122.420109525147)",132670018-66 -160661882,79,16026416,Medical Incident,03/06/2016,03/06/2016,03/06/2016 02:45:36 PM,03/06/2016 02:45:36 PM,03/06/2016 02:45:53 PM,03/06/2016 02:46:03 PM,03/06/2016 02:57:00 PM,03/06/2016 03:23:01 PM,03/06/2016 04:10:03 PM,Patient Declined Transport,03/06/2016 04:38:24 PM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,945,2,3,3,true,Non Life-threatening,1,MEDIC,1,None,3,North Beach,"(37.8081679785862, -122.416634717802)",160661882-79 -160421698,AM10,16016858,Medical Incident,02/11/2016,02/11/2016,02/11/2016 12:28:07 PM,02/11/2016 12:29:47 PM,02/11/2016 12:29:58 PM,02/11/2016 12:30:46 PM,02/11/2016 12:34:04 PM,02/11/2016 12:49:36 PM,02/11/2016 01:14:26 PM,Code 2 Transport,02/11/2016 01:29:12 PM,2500 Block of MISSION ST,San Francisco,94110,B06,7,5472,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7562319946436, -122.418893283075)",160421698-AM10 -113060161,96,11101630,Medical Incident,11/02/2011,11/02/2011,11/02/2011 11:24:28 AM,11/02/2011 11:24:47 AM,11/02/2011 11:25:07 AM,11/02/2011 11:26:01 AM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,04/25/2016 02:01:51 PM,Other,11/02/2011 11:32:09 AM,0 Block of STONEYFORD AVE,SF,94112,B09,32,5681,3,3,3,true,,1,MEDIC,2,9,9,Excelsior,"(37.7302732778797, -122.420943095957)",113060161-96 -140880045,E17,14029523,Medical Incident,03/29/2014,03/28/2014,03/29/2014 02:41:15 AM,03/29/2014 02:41:51 AM,03/29/2014 02:42:25 AM,03/29/2014 02:44:31 AM,03/29/2014 02:46:41 AM,04/25/2016 01:47:30 PM,04/25/2016 01:47:30 PM,Code 2 Transport,03/29/2014 03:08:33 AM,3RD ST/WILLIAMS AV,SAN FRANCISCO,94124,B10,17,6536,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7292784549254, -122.392624534553)",140880045-E17 -132780049,B01,13094384,Vehicle Fire,10/05/2013,10/04/2013,10/05/2013 03:11:27 AM,10/05/2013 03:13:59 AM,10/05/2013 03:14:15 AM,10/05/2013 03:15:38 AM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Fire,10/05/2013 03:18:20 AM,900 Block of MARKET ST,SF,94102,B03,1,1364,3,3,3,false,Fire,1,CHIEF,2,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",132780049-B01 -140340078,AM02,14011414,Medical Incident,02/03/2014,02/03/2014,02/03/2014 08:36:17 AM,02/03/2014 08:38:04 AM,02/03/2014 08:39:34 AM,02/03/2014 08:40:20 AM,02/03/2014 08:52:35 AM,02/03/2014 09:06:01 AM,02/03/2014 09:31:33 AM,Code 2 Transport,02/03/2014 10:06:15 AM,500 Block of COLLEGE AVE,SF,94112,B06,32,5642,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7325875769032, -122.423413236667)",140340078-AM02 -160272390,85,16010741,Medical Incident,01/27/2016,01/27/2016,01/27/2016 03:23:01 PM,01/27/2016 03:23:53 PM,01/27/2016 03:24:19 PM,01/27/2016 03:24:47 PM,01/27/2016 03:48:15 PM,01/27/2016 04:08:38 PM,01/27/2016 04:43:57 PM,Code 2 Transport,01/27/2016 05:16:59 PM,0 Block of 4TH ST,San Francisco,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7851251468157, -122.404965960872)",160272390-85 -112650361,86,11087645,Medical Incident,09/22/2011,09/22/2011,09/22/2011 06:57:23 PM,09/22/2011 06:57:57 PM,09/22/2011 07:06:31 PM,09/22/2011 07:07:10 PM,09/22/2011 07:12:07 PM,04/25/2016 02:02:32 PM,04/25/2016 02:02:32 PM,No Merit,09/22/2011 07:29:07 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",112650361-86 -132230359,66,13075476,Medical Incident,08/11/2013,08/11/2013,08/11/2013 11:14:39 PM,08/11/2013 11:16:04 PM,08/11/2013 11:16:33 PM,08/11/2013 11:16:58 PM,08/11/2013 11:31:54 PM,08/11/2013 11:45:52 PM,08/12/2013 12:03:49 AM,Code 2 Transport,08/12/2013 12:30:18 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132230359-66 -160452521,71,16018219,Medical Incident,02/14/2016,02/14/2016,02/14/2016 05:25:40 PM,02/14/2016 05:28:43 PM,02/14/2016 05:29:16 PM,02/14/2016 05:29:23 PM,02/14/2016 05:37:39 PM,02/14/2016 05:50:50 PM,02/14/2016 06:08:39 PM,Code 2 Transport,02/14/2016 06:39:32 PM,0 Block of LANSING ST,San Francisco,94105,B03,35,2136,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860674664176, -122.393858794105)",160452521-71 -130250351,92,13008764,Medical Incident,01/25/2013,01/25/2013,01/25/2013 07:41:08 PM,01/25/2013 07:42:24 PM,01/25/2013 07:42:42 PM,01/25/2013 07:44:58 PM,01/25/2013 07:53:42 PM,01/25/2013 08:08:14 PM,01/25/2013 08:29:51 PM,Code 2 Transport,01/25/2013 08:57:56 PM,100 Block of OTIS ST,SF,94103,B02,36,5125,E,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",130250351-92 -140930149,B01,14031242,Alarms,04/03/2014,04/03/2014,04/03/2014 11:22:16 AM,04/03/2014 11:23:19 AM,04/03/2014 11:23:42 AM,04/25/2016 01:47:25 PM,04/03/2014 11:25:04 AM,04/25/2016 01:47:25 PM,04/25/2016 01:47:25 PM,Fire,04/03/2014 11:27:27 AM,1000 Block of VAN NESS AVE,SAN FRANCISCO,94109,B04,3,3162,3,3,3,false,Alarm,1,CHIEF,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",140930149-B01 -111210184,99,11039944,Medical Incident,05/01/2011,05/01/2011,05/01/2011 12:33:57 PM,05/01/2011 12:35:09 PM,05/01/2011 12:35:29 PM,05/01/2011 12:35:46 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 12:38:06 PM,9TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",111210184-99 -121840168,E13,12061280,Medical Incident,07/02/2012,07/02/2012,07/02/2012 01:03:46 PM,07/02/2012 01:08:34 PM,07/02/2012 01:08:55 PM,07/02/2012 01:09:42 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 01:12:01 PM,WASHINGTON ST/POWELL ST,SF,94108,B01,2,1355,2,2,2,true,Potentially Life-Threatening,1,ENGINE,4,1,3,Chinatown,"(37.794736824503, -122.40972157871)",121840168-E13 -110690289,RS2,11022781,Structure Fire,03/10/2011,03/10/2011,03/10/2011 05:14:00 PM,03/10/2011 05:14:38 PM,03/10/2011 05:14:59 PM,03/10/2011 05:16:07 PM,03/10/2011 05:18:00 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 05:25:26 PM,500 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,true,,1,RESCUE SQUAD,1,2,8,Mission,"(37.7627513875316, -122.424036887526)",110690289-RS2 -123150321,E36,12104959,Medical Incident,11/10/2012,11/10/2012,11/10/2012 07:59:01 PM,11/10/2012 07:59:30 PM,11/10/2012 07:59:58 PM,11/10/2012 08:02:11 PM,11/10/2012 08:04:26 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/10/2012 08:05:44 PM,100 Block of 9TH ST,SF,94103,B02,36,2336,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7755801285655, -122.413994780042)",123150321-E36 -132970024,E01,13100748,Medical Incident,10/24/2013,10/23/2013,10/24/2013 01:42:23 AM,10/24/2013 01:42:30 AM,10/24/2013 01:42:45 AM,10/24/2013 01:44:26 AM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,04/25/2016 01:50:07 PM,Other,10/24/2013 01:46:39 AM,JONES ST/GOLDEN GATE AV,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",132970024-E01 -160092502,52,16003719,Medical Incident,01/09/2016,01/09/2016,01/09/2016 04:52:40 PM,01/09/2016 04:56:05 PM,01/09/2016 04:56:36 PM,01/09/2016 04:56:44 PM,01/09/2016 05:12:47 PM,01/09/2016 05:38:08 PM,01/09/2016 05:50:13 PM,Code 2 Transport,01/09/2016 06:41:55 PM,2000 Block of 19TH AVE,San Francisco,94116,B08,40,7417,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7495740887502, -122.476227950535)",160092502-52 -111900221,79,11062861,Medical Incident,07/09/2011,07/09/2011,07/09/2011 04:29:26 PM,07/09/2011 04:31:52 PM,07/09/2011 04:32:24 PM,07/09/2011 04:32:38 PM,07/09/2011 04:40:47 PM,07/09/2011 04:52:50 PM,07/09/2011 05:26:12 PM,Code 2 Transport,07/09/2011 05:42:35 PM,100 Block of DWIGHT ST,SF,94134,B10,44,6326,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7235967197123, -122.403565167095)",111900221-79 -110070024,62,11002195,Medical Incident,01/07/2011,01/06/2011,01/07/2011 03:02:36 AM,01/07/2011 03:03:43 AM,01/07/2011 03:05:17 AM,01/07/2011 03:05:31 AM,01/07/2011 03:10:48 AM,01/07/2011 03:27:25 AM,01/07/2011 03:34:53 AM,Code 2 Transport,01/07/2011 03:55:59 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110070024-62 -160101280,55,16004007,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:28:12 AM,01/10/2016 11:29:26 AM,01/10/2016 11:33:38 AM,01/10/2016 11:33:46 AM,01/10/2016 11:50:09 AM,01/10/2016 12:17:40 PM,01/10/2016 12:35:23 PM,Code 2 Transport,01/10/2016 01:18:50 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160101280-55 -120500249,KM05,12016588,Medical Incident,02/19/2012,02/19/2012,02/19/2012 05:44:37 PM,02/19/2012 05:46:45 PM,02/19/2012 05:48:48 PM,02/19/2012 05:49:22 PM,02/19/2012 05:56:31 PM,02/19/2012 05:58:20 PM,02/19/2012 06:10:30 PM,Code 2 Transport,02/19/2012 06:32:32 PM,300 Block of TOPEKA AVE,SF,94124,B10,42,6473,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7315669733056, -122.395295699157)",120500249-KM05 -132990054,KM15,13101479,Medical Incident,10/26/2013,10/25/2013,10/26/2013 03:28:51 AM,10/26/2013 03:29:16 AM,10/26/2013 03:30:21 AM,10/26/2013 03:32:38 AM,10/26/2013 03:38:53 AM,10/26/2013 03:51:27 AM,10/26/2013 04:25:57 AM,Code 3 Transport,10/26/2013 04:44:04 AM,REVERE AV/HAWES ST,SF,94124,B10,17,6634,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7274248732127, -122.382686989318)",132990054-KM15 -122640118,E20,12087133,Medical Incident,09/20/2012,09/20/2012,09/20/2012 10:07:36 AM,09/20/2012 10:08:59 AM,09/20/2012 10:09:21 AM,09/20/2012 10:09:34 AM,09/20/2012 10:14:44 AM,04/25/2016 01:56:41 PM,04/25/2016 01:56:41 PM,Other,09/20/2012 10:29:27 AM,IDORA AV/LAGUNA HONDA BL,SF,94127,B08,39,8644,1,1,2,true,Non Life-threatening,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7440575890483, -122.456525052768)",122640118-E20 -112450169,T09,11080754,Structure Fire,09/02/2011,09/02/2011,09/02/2011 11:56:07 AM,09/02/2011 11:56:07 AM,09/02/2011 11:56:12 AM,09/02/2011 11:57:23 AM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/02/2011 11:58:39 AM,BAYSHORE BL/OAKDALE AV,SF,94124,B10,9,6376,3,3,3,false,,1,TRUCK,2,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",112450169-T09 -103510116,T07,10112536,Structure Fire,12/17/2010,12/17/2010,12/17/2010 09:34:34 AM,12/17/2010 09:34:34 AM,12/17/2010 09:34:46 AM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,Other,12/17/2010 09:37:52 AM,25TH ST/VALENCIA ST,SF,94110,B06,11,5535,3,3,3,false,,1,TRUCK,2,6,8,Mission,"(37.7505058278022, -122.420507005779)",103510116-T07 -160913085,52,16036208,Traffic Collision,03/31/2016,03/31/2016,03/31/2016 06:55:04 PM,03/31/2016 06:55:04 PM,03/31/2016 06:55:13 PM,03/31/2016 06:55:28 PM,03/31/2016 07:00:41 PM,03/31/2016 07:21:08 PM,03/31/2016 08:03:06 PM,Code 2 Transport,03/31/2016 08:29:32 PM,HILLWAY AV/PARNASSUS AV,San Francisco,94131,B05,12,7321,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,7,Inner Sunset,"(37.7638146894796, -122.456669911754)",160913085-52 -132590230,E08,13087647,Alarms,09/16/2013,09/16/2013,09/16/2013 02:09:14 PM,09/16/2013 02:09:19 PM,09/16/2013 02:09:41 PM,09/16/2013 02:11:14 PM,09/16/2013 02:13:19 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Other,09/16/2013 02:22:55 PM,600 Block of NELSON RISING LN,SF,94158,B03,8,2264,3,3,3,true,Alarm,1,ENGINE,1,3,6,Mission Bay,"(37.7695557600647, -122.391895275784)",132590230-E08 -160412305,66,16016504,Medical Incident,02/10/2016,02/10/2016,02/10/2016 03:10:46 PM,02/10/2016 03:11:33 PM,02/10/2016 03:11:54 PM,02/10/2016 03:12:04 PM,02/10/2016 03:16:42 PM,02/10/2016 03:47:55 PM,02/10/2016 03:56:48 PM,Code 2 Transport,02/10/2016 05:01:14 PM,0 Block of GOLDEN GATE AVE,San Francisco,94102,B03,1,1454,3,3,3,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",160412305-66 -160580278,78,16022968,Medical Incident,02/27/2016,02/26/2016,02/27/2016 01:55:51 AM,02/27/2016 01:55:51 AM,02/27/2016 01:56:01 AM,02/27/2016 01:56:32 AM,02/27/2016 02:01:40 AM,02/27/2016 02:20:07 AM,02/27/2016 02:23:37 AM,Code 2 Transport,02/27/2016 02:55:03 AM,LARKIN ST/GREEN ST,San Francisco,94109,B01,41,1631,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Russian Hill,"(37.7980334609272, -122.420501285679)",160580278-78 -121030053,KM04,12034011,Medical Incident,04/12/2012,04/11/2012,04/12/2012 04:42:29 AM,04/12/2012 04:44:20 AM,04/12/2012 04:44:27 AM,04/12/2012 04:45:55 AM,04/12/2012 04:51:17 AM,04/12/2012 04:59:28 AM,04/12/2012 05:13:57 AM,Code 2 Transport,04/12/2012 05:43:15 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121030053-KM04 -130310028,AM18,13010441,Medical Incident,01/31/2013,01/30/2013,01/31/2013 02:08:09 AM,01/31/2013 02:08:42 AM,01/31/2013 02:09:15 AM,01/31/2013 02:09:54 AM,01/31/2013 02:14:12 AM,01/31/2013 02:25:08 AM,01/31/2013 02:57:52 AM,Code 2 Transport,01/31/2013 02:59:59 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",130310028-AM18 -160481989,56,16019353,Medical Incident,02/17/2016,02/17/2016,02/17/2016 01:24:09 PM,02/17/2016 01:24:55 PM,02/17/2016 01:25:12 PM,02/17/2016 01:26:20 PM,02/17/2016 01:33:50 PM,02/17/2016 01:57:37 PM,02/17/2016 02:28:22 PM,Code 2 Transport,02/17/2016 03:06:36 PM,1300 Block of THOMAS AVE,San Francisco,94124,B10,17,6547,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.72780817138, -122.386576242305)",160481989-56 -160770468,73,16030449,Medical Incident,03/17/2016,03/16/2016,03/17/2016 06:16:00 AM,03/17/2016 06:18:45 AM,03/17/2016 06:18:53 AM,03/17/2016 06:19:16 AM,03/17/2016 06:28:25 AM,03/17/2016 06:43:31 AM,03/17/2016 06:46:08 AM,Code 2 Transport,03/17/2016 07:13:56 AM,400 Block of JESSIE ST,San Francisco,94103,B03,1,2246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7820442091855, -122.408519525275)",160770468-73 -121910326,E17,12063716,Medical Incident,07/09/2012,07/09/2012,07/09/2012 08:17:06 PM,07/09/2012 08:21:26 PM,07/09/2012 08:21:52 PM,07/09/2012 08:23:14 PM,07/09/2012 08:28:20 PM,04/25/2016 01:57:48 PM,04/25/2016 01:57:48 PM,Other,07/09/2012 08:45:21 PM,200 Block of RAYMOND AVE,SF,94134,B09,44,6264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,10,Visitacion Valley,"(37.713564106848, -122.408103072889)",121910326-E17 -121230299,75,12040929,Traffic Collision,05/02/2012,05/02/2012,05/02/2012 06:28:36 PM,05/02/2012 06:29:37 PM,05/02/2012 06:30:19 PM,05/02/2012 06:34:07 PM,05/02/2012 07:03:29 PM,05/02/2012 07:09:31 PM,05/02/2012 07:54:18 PM,Code 2 Transport,05/02/2012 08:20:08 PM,1100 Block of MARKET ST,SF,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",121230299-75 -111820214,T16,11060097,Alarms,07/01/2011,07/01/2011,07/01/2011 01:24:10 PM,07/01/2011 01:25:41 PM,07/01/2011 01:25:55 PM,07/01/2011 01:27:27 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,Other,07/01/2011 01:30:52 PM,2200 Block of SCOTT ST,SF,94115,B04,38,4124,3,3,3,true,,1,TRUCK,3,4,2,Pacific Heights,"(37.7905184879495, -122.439291112504)",111820214-T16 -130510168,KM01,13017245,Medical Incident,02/20/2013,02/20/2013,02/20/2013 11:57:09 AM,02/20/2013 11:58:25 AM,02/20/2013 11:58:39 AM,02/20/2013 11:59:21 AM,02/20/2013 12:08:07 PM,02/20/2013 12:45:00 PM,02/20/2013 01:02:52 PM,Code 2 Transport,02/20/2013 01:52:56 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",130510168-KM01 -160170599,79,16006715,Medical Incident,01/17/2016,01/16/2016,01/17/2016 05:57:12 AM,01/17/2016 05:58:58 AM,01/17/2016 05:59:14 AM,01/17/2016 05:59:20 AM,01/17/2016 06:05:14 AM,01/17/2016 06:19:58 AM,01/17/2016 06:37:33 AM,Code 2 Transport,01/17/2016 07:04:25 AM,800 Block of KEARNY ST,San Francisco,94111,B01,13,1245,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Chinatown,"(37.795777854883, -122.404981817889)",160170599-79 -122890332,86,12095738,Medical Incident,10/15/2012,10/15/2012,10/15/2012 06:47:03 PM,10/15/2012 06:49:59 PM,10/15/2012 06:50:57 PM,10/15/2012 06:51:09 PM,10/15/2012 06:57:31 PM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/15/2012 07:05:18 PM,MARKET ST/CHARLES J BRENHAM ST,SF,94103,B02,36,2316,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",122890332-86 -120760192,E01,12025233,Medical Incident,03/16/2012,03/16/2012,03/16/2012 04:26:52 PM,03/16/2012 04:28:58 PM,03/16/2012 04:30:05 PM,03/16/2012 04:31:18 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Other,03/16/2012 04:34:05 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",120760192-E01 -160653295,60,16026121,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:53:26 PM,03/05/2016 08:56:05 PM,03/05/2016 08:59:32 PM,03/05/2016 08:59:43 PM,03/05/2016 09:08:35 PM,03/05/2016 09:27:17 PM,03/05/2016 10:05:29 PM,Code 2 Transport,03/05/2016 10:41:00 PM,2800 Block of PACIFIC AVE,San Francisco,94115,B04,10,4163,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7923726007497, -122.441980522291)",160653295-60 -160440309,63,16017555,Medical Incident,02/13/2016,02/12/2016,02/13/2016 02:06:21 AM,02/13/2016 02:06:36 AM,02/13/2016 02:06:48 AM,02/13/2016 02:07:21 AM,02/13/2016 02:10:26 AM,02/13/2016 02:20:44 AM,02/13/2016 02:33:29 AM,Code 2 Transport,02/13/2016 03:10:49 AM,600 Block of MARKET ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7884749146803, -122.402552957865)",160440309-63 -102460102,T01,10077671,Structure Fire,09/03/2010,09/03/2010,09/03/2010 08:45:24 AM,09/03/2010 08:46:19 AM,09/03/2010 08:46:33 AM,09/03/2010 08:48:20 AM,09/03/2010 08:52:45 AM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/03/2010 09:09:44 AM,600 Block of GREEN ST,SF,94133,B01,2,1352,3,3,3,false,,1,TRUCK,5,1,3,Chinatown,"(37.7994506999766, -122.409839232069)",102460102-T01 -123380164,B09,12112673,Alarms,12/03/2012,12/03/2012,12/03/2012 11:07:27 AM,12/03/2012 11:08:26 AM,12/03/2012 11:09:43 AM,12/03/2012 11:10:47 AM,12/03/2012 11:13:05 AM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Fire,12/03/2012 11:18:00 AM,1800 Block of OCEAN AVE,SF,94112,B09,15,8456,3,3,3,false,Alarm,1,CHIEF,1,9,7,West of Twin Peaks,"(37.7251865159091, -122.461673488312)",123380164-B09 -132830017,T02,13096174,Alarms,10/10/2013,10/09/2013,10/10/2013 01:38:53 AM,10/10/2013 01:40:18 AM,10/10/2013 01:41:49 AM,10/10/2013 01:43:30 AM,10/10/2013 01:45:04 AM,04/25/2016 01:50:20 PM,04/25/2016 01:50:20 PM,Other,10/10/2013 01:47:42 AM,800 Block of VALLEJO ST,SF,94133,B01,2,1421,3,3,3,true,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7982147324047, -122.411265123486)",132830017-T02 -133250262,E03,13110445,Medical Incident,11/21/2013,11/21/2013,11/21/2013 04:17:31 PM,11/21/2013 04:19:08 PM,11/21/2013 04:19:24 PM,11/21/2013 04:19:38 PM,11/21/2013 04:23:18 PM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Other,11/21/2013 04:24:51 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",133250262-E03 -160511329,71,16020437,Medical Incident,02/20/2016,02/20/2016,02/20/2016 11:34:19 AM,02/20/2016 11:34:19 AM,02/20/2016 11:34:19 AM,02/20/2016 11:34:19 AM,02/20/2016 11:34:19 AM,02/20/2016 11:51:20 AM,02/20/2016 12:09:12 PM,Code 2 Transport,02/20/2016 12:53:08 PM,OCEAN AV/PLYMOUTH AV,San Francisco,94112,B09,5,8472,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,Oceanview/Merced/Ingleside,"(37.7239638175432, -122.456516014585)",160511329-71 -102630115,T01,10083153,Other,09/20/2010,09/20/2010,09/20/2010 10:14:45 AM,09/20/2010 10:21:17 AM,09/20/2010 10:21:50 AM,09/20/2010 10:24:52 AM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Other,09/20/2010 10:26:24 AM,3RD ST/MISSION ST,SF,94103,B03,1,2178,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7862481508717, -122.402025420888)",102630115-T01 -160031583,AM14,16001188,Medical Incident,01/03/2016,01/03/2016,01/03/2016 01:28:30 PM,01/03/2016 01:29:24 PM,01/03/2016 01:29:54 PM,01/03/2016 01:31:03 PM,01/03/2016 01:40:14 PM,01/03/2016 01:40:15 PM,01/03/2016 01:47:35 PM,Code 2 Transport,01/03/2016 02:11:34 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,9,Mission,"(37.7643732096664, -122.417478491468)",160031583-AM14 -111260336,RC3,11041819,Medical Incident,05/06/2011,05/06/2011,05/06/2011 07:20:26 PM,05/06/2011 07:21:40 PM,05/06/2011 07:21:50 PM,05/06/2011 07:22:41 PM,05/06/2011 07:25:46 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 07:41:32 PM,BARTLETT ST/22ND ST,SF,94110,B06,7,5456,E,E,3,true,,1,RESCUE CAPTAIN,3,6,9,Mission,"(37.7553657296757, -122.419857942792)",111260336-RC3 -160850965,75,16033684,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:52:49 AM,03/25/2016 08:54:54 AM,03/25/2016 08:55:23 AM,03/25/2016 08:55:34 AM,03/25/2016 09:03:44 AM,03/25/2016 09:21:51 AM,03/25/2016 10:11:34 AM,Code 2 Transport,03/25/2016 10:27:55 AM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160850965-75 -123500380,E02,12117219,Medical Incident,12/15/2012,12/15/2012,12/15/2012 11:01:31 PM,12/15/2012 11:04:04 PM,12/15/2012 11:04:17 PM,12/15/2012 11:05:43 PM,12/15/2012 11:08:22 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/15/2012 11:25:40 PM,800 Block of LOMBARD ST,SF,94133,B01,28,1435,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Russian Hill,"(37.8025702182431, -122.415513808402)",123500380-E02 -160170410,78,16006684,Medical Incident,01/17/2016,01/16/2016,01/17/2016 03:02:45 AM,01/17/2016 03:03:31 AM,01/17/2016 03:03:46 AM,01/17/2016 03:03:56 AM,01/17/2016 03:09:20 AM,01/17/2016 03:20:04 AM,01/17/2016 03:34:48 AM,Code 2 Transport,01/17/2016 04:16:14 AM,MAIN ST/HOWARD ST,San Francisco,94105,B03,35,2116,E,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7906126695544, -122.393407939021)",160170410-78 -111020228,E22,11033859,Medical Incident,04/12/2011,04/12/2011,04/12/2011 02:42:46 PM,04/12/2011 02:44:01 PM,04/12/2011 02:44:14 PM,04/12/2011 02:44:52 PM,04/12/2011 02:47:14 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/12/2011 03:07:01 PM,1300 Block of 7TH AVE,SF,94122,B08,22,7332,2,2,2,false,,1,ENGINE,1,8,5,Inner Sunset,"(37.7631968207196, -122.464176094005)",111020228-E22 -112450221,T10,11080790,Medical Incident,09/02/2011,09/02/2011,09/02/2011 02:09:15 PM,09/02/2011 02:10:26 PM,09/02/2011 02:11:03 PM,09/02/2011 02:12:00 PM,09/02/2011 02:14:40 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 02:18:09 PM,200 Block of COLLINS ST,SF,94118,B05,10,4454,3,3,3,false,,1,TRUCK,1,5,1,Lone Mountain/USF,"(37.7814256335022, -122.450023210107)",112450221-T10 -103000227,E01,10095802,Medical Incident,10/27/2010,10/27/2010,10/27/2010 03:25:09 PM,10/27/2010 03:25:30 PM,10/27/2010 03:26:13 PM,10/27/2010 03:26:54 PM,10/27/2010 03:29:09 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 03:36:34 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,2,2,true,,1,ENGINE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",103000227-E01 -130410098,E15,13013953,Medical Incident,02/10/2013,02/10/2013,02/10/2013 09:16:30 AM,02/10/2013 09:17:39 AM,02/10/2013 09:17:48 AM,02/10/2013 09:20:32 AM,02/10/2013 09:21:52 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 09:33:18 AM,100 Block of SANTA YSABEL AVE,SF,94112,B09,15,8266,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7278529411639, -122.439860786388)",130410098-E15 -131040108,E03,13034868,Traffic Collision,04/14/2013,04/13/2013,04/14/2013 07:25:00 AM,04/14/2013 07:25:01 AM,04/14/2013 07:26:41 AM,04/14/2013 07:28:19 AM,04/14/2013 07:31:49 AM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/14/2013 07:28:37 AM,ELLIS ST/LARKIN ST,SF,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",131040108-E03 -140320127,E36,14010787,Medical Incident,02/01/2014,02/01/2014,02/01/2014 10:14:55 AM,02/01/2014 10:15:18 AM,02/01/2014 10:15:41 AM,02/01/2014 10:17:29 AM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 10:26:12 AM,ERIE ST/FOLSOM ST,SF,94103,B02,36,5215,2,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7693620195485, -122.415611508879)",140320127-E36 -113140094,54,11104263,Medical Incident,11/10/2011,11/10/2011,11/10/2011 09:29:08 AM,11/10/2011 09:29:29 AM,11/10/2011 09:30:22 AM,11/10/2011 09:30:47 AM,11/10/2011 09:34:59 AM,11/10/2011 09:57:13 AM,11/10/2011 10:25:07 AM,Code 2 Transport,11/10/2011 10:53:18 AM,0 Block of GRAYSTONE TER,SF,94114,B05,24,5275,3,2,2,true,,1,MEDIC,2,5,8,Inner Sunset,"(37.7587166967555, -122.447547883752)",113140094-54 -112920079,B03,11096816,Alarms,10/19/2011,10/19/2011,10/19/2011 08:17:05 AM,10/19/2011 08:18:01 AM,10/19/2011 08:18:19 AM,10/19/2011 08:23:44 AM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/19/2011 08:25:00 AM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,false,,1,CHIEF,3,3,6,South of Market,"(37.7794880680759, -122.40694292477)",112920079-B03 -160772152,AM10,16030614,Medical Incident,03/17/2016,03/17/2016,03/17/2016 01:58:12 PM,03/17/2016 01:58:12 PM,03/17/2016 02:13:10 PM,03/17/2016 02:13:56 PM,03/17/2016 02:28:21 PM,03/17/2016 02:36:05 PM,03/17/2016 02:49:17 PM,Code 2 Transport,03/17/2016 03:32:08 PM,1300 Block of BUSH ST,San Francisco,94109,B04,3,1636,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7888585618181, -122.419492361507)",160772152-AM10 -133210152,E01,13109017,Medical Incident,11/17/2013,11/17/2013,11/17/2013 11:38:17 AM,11/17/2013 11:38:46 AM,11/17/2013 11:39:31 AM,11/17/2013 11:40:26 AM,11/17/2013 11:42:59 AM,04/25/2016 01:49:43 PM,04/25/2016 01:49:43 PM,Other,11/17/2013 11:47:14 AM,7TH ST/FOLSOM ST,SF,94103,B03,1,2313,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7767461078644, -122.407842061292)",133210152-E01 -111290082,88,11042580,Medical Incident,05/09/2011,05/09/2011,05/09/2011 09:09:00 AM,05/09/2011 09:11:55 AM,05/09/2011 09:12:08 AM,05/09/2011 09:12:25 AM,05/09/2011 09:15:58 AM,05/09/2011 09:33:20 AM,05/09/2011 09:50:52 AM,Code 2 Transport,05/09/2011 10:25:01 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7642910155103, -122.418689416733)",111290082-88 -110470120,E42,11015485,Medical Incident,02/16/2011,02/16/2011,02/16/2011 09:48:33 AM,02/16/2011 09:51:15 AM,02/16/2011 09:51:46 AM,02/16/2011 09:52:50 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 09:55:15 AM,SAN BRUNO AV/ARLETA AV,SF,94134,B10,44,6267,3,3,3,true,,1,ENGINE,1,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",110470120-E42 -111370025,E07,11045460,Medical Incident,05/17/2011,05/16/2011,05/17/2011 02:14:32 AM,05/17/2011 02:14:59 AM,05/17/2011 02:15:20 AM,05/17/2011 02:16:56 AM,05/17/2011 02:19:10 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Other,05/17/2011 02:36:41 AM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",111370025-E07 -110330237,E03,11010858,Medical Incident,02/02/2011,02/02/2011,02/02/2011 02:59:36 PM,02/02/2011 03:02:34 PM,02/02/2011 03:02:49 PM,02/02/2011 03:04:30 PM,02/02/2011 03:05:08 PM,04/25/2016 02:06:17 PM,04/25/2016 02:06:17 PM,Other,02/02/2011 03:08:47 PM,HEMLOCK ST/LARKIN ST,SF,94109,B04,3,1641,3,3,3,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7874871163793, -122.41836486841)",110330237-E03 -140500080,58,14016902,Medical Incident,02/19/2014,02/19/2014,02/19/2014 08:57:43 AM,02/19/2014 08:59:16 AM,02/19/2014 09:00:02 AM,02/19/2014 09:00:09 AM,02/19/2014 09:12:20 AM,02/19/2014 09:33:03 AM,02/19/2014 09:48:25 AM,Code 2 Transport,02/19/2014 10:36:13 AM,900 Block of HOWARD ST,SF,94103,B03,1,2252,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",140500080-58 -110070357,81,11002472,Medical Incident,01/07/2011,01/07/2011,01/07/2011 07:59:11 PM,01/07/2011 08:01:01 PM,01/07/2011 08:01:15 PM,01/07/2011 08:01:31 PM,01/07/2011 08:05:48 PM,01/07/2011 08:24:30 PM,01/07/2011 08:40:41 PM,Code 2 Transport,01/07/2011 08:53:31 PM,CASTRO ST/25TH ST,SF,94114,B06,11,5541,3,3,3,true,,1,MEDIC,2,6,8,Noe Valley,"(37.749695809359, -122.433929087398)",110070357-81 -120110160,84,12003795,Medical Incident,01/11/2012,01/11/2012,01/11/2012 01:19:50 PM,01/11/2012 01:20:15 PM,01/11/2012 01:20:23 PM,01/11/2012 01:21:04 PM,01/11/2012 01:24:11 PM,01/11/2012 01:46:40 PM,04/25/2016 02:00:41 PM,Code 2 Transport,01/11/2012 02:28:31 PM,300 Block of 6TH AVE,SF,94118,B07,31,7127,3,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7819761234193, -122.464421175825)",120110160-84 -160610881,88,16024231,Medical Incident,03/01/2016,03/01/2016,03/01/2016 09:17:16 AM,03/01/2016 09:17:16 AM,03/01/2016 09:17:45 AM,03/01/2016 09:18:03 AM,03/01/2016 09:22:15 AM,03/01/2016 09:54:37 AM,03/01/2016 10:13:38 AM,Code 2 Transport,03/01/2016 10:42:20 AM,100 Block of BLK FELL ST,San Francisco,94102,B02,36,3213,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7768249826624, -122.419746672441)",160610881-88 -140560280,T02,14018967,Alarms,02/25/2014,02/25/2014,02/25/2014 05:12:51 PM,02/25/2014 05:14:26 PM,02/25/2014 05:14:34 PM,02/25/2014 05:15:57 PM,02/25/2014 05:17:57 PM,04/25/2016 01:48:01 PM,04/25/2016 01:48:01 PM,Fire,02/25/2014 05:19:58 PM,900 Block of GREEN ST,SF,94133,B01,2,1441,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.798689014807, -122.415061918203)",140560280-T02 -120590312,AM18,12019532,Medical Incident,02/28/2012,02/28/2012,02/28/2012 07:34:01 PM,02/28/2012 07:35:54 PM,02/28/2012 07:36:21 PM,02/28/2012 07:37:18 PM,02/28/2012 07:43:30 PM,02/28/2012 08:03:10 PM,02/28/2012 08:17:02 PM,Code 2 Transport,02/28/2012 08:44:09 PM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",120590312-AM18 -72110087,T16,7060635,Alarms,07/30/2007,07/30/2007,07/30/2007 09:09:00 AM,07/30/2007 09:11:12 AM,07/30/2007 09:12:41 AM,07/30/2007 09:14:39 AM,07/30/2007 09:18:22 AM,04/25/2016 03:38:22 PM,04/25/2016 03:38:22 PM,Other,07/30/2007 09:23:41 AM,1500 Block of BEACH ST,SF,94123,B04,16,3452,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.804803085309, -122.434546180671)",072110087-T16 -140040206,KM09,14001467,Medical Incident,01/04/2014,01/04/2014,01/04/2014 01:54:38 PM,01/04/2014 01:55:04 PM,01/04/2014 01:55:39 PM,01/04/2014 01:56:20 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,01/04/2014 01:58:55 PM,Medical Examiner,01/04/2014 02:59:19 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",140040206-KM09 -140320137,T18,14010796,Structure Fire,02/01/2014,02/01/2014,02/01/2014 10:39:18 AM,02/01/2014 10:39:57 AM,02/01/2014 10:40:03 AM,02/01/2014 10:41:56 AM,02/01/2014 10:52:47 AM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 12:39:00 PM,300 Block of LAGUNA HONDA BLVD,SF,94131,B08,20,8637,3,3,3,false,Alarm,1,TRUCK,10,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",140320137-T18 -113000197,T07,11099519,Alarms,10/27/2011,10/27/2011,10/27/2011 01:48:41 PM,10/27/2011 01:49:30 PM,10/27/2011 01:49:47 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,04/25/2016 02:01:57 PM,Other,10/27/2011 01:56:15 PM,100 Block of FAIR OAKS ST,SF,94110,B06,11,5471,3,3,3,false,,1,TRUCK,3,6,8,Mission,"(37.7543085854054, -122.424144017402)",113000197-T07 -160913123,KM05,16036213,Medical Incident,03/31/2016,03/31/2016,03/31/2016 06:58:55 PM,03/31/2016 07:01:56 PM,03/31/2016 07:03:41 PM,03/31/2016 07:04:16 PM,03/31/2016 07:14:14 PM,03/31/2016 07:24:19 PM,03/31/2016 07:40:12 PM,Code 2 Transport,03/31/2016 07:59:23 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160913123-KM05 -120180222,58,12006067,Medical Incident,01/18/2012,01/18/2012,01/18/2012 03:37:22 PM,01/18/2012 03:37:47 PM,01/18/2012 03:40:39 PM,01/18/2012 03:40:54 PM,01/18/2012 03:45:19 PM,01/18/2012 04:08:10 PM,01/18/2012 04:28:09 PM,Code 2 Transport,01/18/2012 04:55:12 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",120180222-58 -123290171,T03,12109408,Structure Fire,11/24/2012,11/24/2012,11/24/2012 01:34:14 PM,11/24/2012 01:35:27 PM,11/24/2012 01:35:34 PM,11/24/2012 01:37:07 PM,11/24/2012 01:38:06 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 01:50:35 PM,700 Block of EDDY ST,SF,94102,B02,3,3163,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",123290171-T03 -130540170,KM06,13018249,Medical Incident,02/23/2013,02/23/2013,02/23/2013 01:59:07 PM,02/23/2013 01:59:16 PM,02/23/2013 02:00:01 PM,02/23/2013 02:00:30 PM,02/23/2013 02:04:23 PM,04/25/2016 01:54:09 PM,04/25/2016 01:54:09 PM,Patient Declined Transport,02/23/2013 02:36:54 PM,1700 Block of HARRISON ST,SF,94103,B02,36,5112,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.769082767924, -122.413353472663)",130540170-KM06 -140610237,86,14020688,Medical Incident,03/02/2014,03/02/2014,03/02/2014 04:36:09 PM,03/02/2014 04:37:51 PM,03/02/2014 04:38:24 PM,03/02/2014 04:38:30 PM,03/02/2014 04:47:42 PM,03/02/2014 05:04:31 PM,03/02/2014 05:11:33 PM,Code 2 Transport,03/02/2014 06:03:02 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7800389118973, -122.431977767761)",140610237-86 -121420247,E29,12047293,Water Rescue,05/21/2012,05/21/2012,05/21/2012 04:13:04 PM,05/21/2012 04:13:50 PM,05/21/2012 04:16:57 PM,05/21/2012 04:20:48 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/21/2012 04:22:44 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,true,Fire,1,ENGINE,17,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121420247-E29 -130790080,E34,13026319,Administrative,03/20/2013,03/20/2013,03/20/2013 08:46:10 AM,03/20/2013 08:46:16 AM,03/20/2013 08:46:40 AM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,04/25/2016 01:53:44 PM,Fire,03/20/2013 08:47:02 AM,400 Block of 41ST AVE,SF,94121,B07,34,7264,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",130790080-E34 -112220312,T11,11073435,Structure Fire,08/10/2011,08/10/2011,08/10/2011 07:32:15 PM,08/10/2011 07:32:15 PM,08/10/2011 07:32:27 PM,08/10/2011 07:32:51 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 07:35:32 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",112220312-T11 -160352500,58,16013887,Medical Incident,02/04/2016,02/04/2016,02/04/2016 03:46:41 PM,02/04/2016 03:55:32 PM,02/04/2016 03:56:32 PM,02/04/2016 03:59:10 PM,02/04/2016 04:05:15 PM,02/04/2016 04:13:57 PM,02/04/2016 04:32:24 PM,Code 2 Transport,02/04/2016 05:12:56 PM,0 Block of WOODWARD ST,San Francisco,94103,B02,36,5215,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7690757517644, -122.420788636046)",160352500-58 -110480159,E16,11015850,Medical Incident,02/17/2011,02/17/2011,02/17/2011 11:37:31 AM,02/17/2011 11:39:36 AM,02/17/2011 11:39:58 AM,02/17/2011 11:40:50 AM,02/17/2011 11:42:40 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/17/2011 12:06:27 PM,3700 Block of BUCHANAN ST,SF,94123,B04,16,3446,3,3,3,true,,1,ENGINE,2,4,2,Marina,"(37.8045420636578, -122.433697283061)",110480159-E16 -131500161,KM06,13050797,Medical Incident,05/30/2013,05/30/2013,05/30/2013 12:59:47 PM,05/30/2013 01:02:00 PM,05/30/2013 01:02:25 PM,05/30/2013 01:03:27 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,04/25/2016 01:52:32 PM,Other,05/30/2013 01:11:05 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",131500161-KM06 -121800301,83,12060027,Medical Incident,06/28/2012,06/28/2012,06/28/2012 06:05:29 PM,06/28/2012 06:07:11 PM,06/28/2012 06:08:40 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,06/28/2012 06:30:12 PM,06/28/2012 06:47:21 PM,Code 2 Transport,06/28/2012 07:05:03 PM,STOCKTON ST/ELLIS ST,SF,94103,B03,1,1322,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",121800301-83 -121700337,54,12056560,Medical Incident,06/18/2012,06/18/2012,06/18/2012 08:39:25 PM,06/18/2012 08:42:23 PM,06/18/2012 08:43:02 PM,06/18/2012 08:43:14 PM,06/18/2012 08:48:19 PM,06/18/2012 09:05:40 PM,06/18/2012 09:21:27 PM,Code 2 Transport,06/18/2012 09:22:04 PM,2800 Block of 24TH ST,SF,94110,B06,7,5527,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7528220751267, -122.40960340614)",121700337-54 -123510202,RS2,12117406,Traffic Collision,12/16/2012,12/16/2012,12/16/2012 01:27:49 PM,12/16/2012 01:27:49 PM,12/16/2012 01:28:33 PM,12/16/2012 01:29:59 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/16/2012 01:31:11 PM,4200 Block of 25TH ST,SF,94114,B06,11,5541,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,5,6,8,Noe Valley,"(37.7496836911364, -122.43503865435)",123510202-RS2 -132390353,E03,13080766,Medical Incident,08/27/2013,08/27/2013,08/27/2013 09:04:15 PM,08/27/2013 09:04:53 PM,08/27/2013 09:05:43 PM,04/25/2016 01:51:05 PM,08/27/2013 09:07:07 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,Other,08/27/2013 09:20:55 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",132390353-E03 -103500350,E02,10112392,Structure Fire,12/16/2010,12/16/2010,12/16/2010 08:29:18 PM,12/16/2010 08:30:27 PM,12/16/2010 08:30:55 PM,12/16/2010 08:32:09 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Other,04/25/2016 02:07:05 PM,900 Block of KEARNY ST,SF,94133,B01,13,1246,3,3,3,true,,1,ENGINE,7,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",103500350-E02 -122130176,KM01,12070694,Citizen Assist / Service Call,07/31/2012,07/31/2012,07/31/2012 12:45:19 PM,07/31/2012 12:46:03 PM,07/31/2012 12:49:30 PM,07/31/2012 02:17:22 PM,07/31/2012 02:24:22 PM,07/31/2012 02:43:23 PM,07/31/2012 02:50:15 PM,Code 2 Transport,07/31/2012 03:42:31 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,Alarm,1,PRIVATE,3,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",122130176-KM01 -121350322,E05,12045012,Medical Incident,05/14/2012,05/14/2012,05/14/2012 08:10:51 PM,05/14/2012 08:13:59 PM,05/14/2012 08:14:42 PM,05/14/2012 08:16:29 PM,05/14/2012 08:19:10 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 08:28:16 PM,1800 Block of POST ST,SF,94115,B04,5,3513,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,5,Japantown,"(37.7853160090058, -122.432236013697)",121350322-E05 -160110361,60,16004255,Medical Incident,01/11/2016,01/10/2016,01/11/2016 04:12:30 AM,01/11/2016 04:13:17 AM,01/11/2016 04:13:57 AM,01/11/2016 04:14:12 AM,01/11/2016 04:21:52 AM,01/11/2016 04:51:30 AM,01/11/2016 05:09:52 AM,Code 2 Transport,01/11/2016 05:42:36 AM,3000 Block of FRANKLIN ST,San Francisco,94123,B04,16,3235,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.8025436783609, -122.426402927315)",160110361-60 -112110253,T01,11069696,Alarms,07/30/2011,07/30/2011,07/30/2011 04:43:13 PM,07/30/2011 04:44:35 PM,07/30/2011 04:45:24 PM,07/30/2011 04:47:02 PM,07/30/2011 04:50:49 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,Other,07/30/2011 04:59:44 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",112110253-T01 -113380028,95,11111871,Medical Incident,12/04/2011,12/03/2011,12/04/2011 01:44:21 AM,12/04/2011 01:46:57 AM,12/04/2011 01:47:07 AM,12/04/2011 01:47:17 AM,12/04/2011 01:49:51 AM,12/04/2011 02:07:45 AM,12/04/2011 02:36:48 AM,Code 2 Transport,12/04/2011 03:00:13 AM,1100 Block of MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,MEDIC,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",113380028-95 -111960140,E36,11064662,Structure Fire,07/15/2011,07/15/2011,07/15/2011 12:03:04 PM,07/15/2011 12:03:04 PM,07/15/2011 12:03:15 PM,07/15/2011 12:04:25 PM,07/15/2011 12:06:36 PM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 12:06:44 PM,10TH ST/MISSION ST,SF,94103,B02,36,2341,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7752720593077, -122.415908181241)",111960140-E36 -160471877,62,16018932,Medical Incident,02/16/2016,02/16/2016,02/16/2016 01:22:13 PM,02/16/2016 01:24:01 PM,02/16/2016 01:24:28 PM,02/16/2016 01:24:40 PM,02/16/2016 01:45:30 PM,02/16/2016 02:07:24 PM,02/16/2016 02:18:28 PM,Code 2 Transport,02/16/2016 02:47:55 PM,3300 Block of GEARY BLVD,San Francisco,94118,B07,10,4453,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,2,Presidio Heights,"(37.7815739713841, -122.45542879534)",160471877-62 -160084103,75,16003467,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:28:39 PM,01/08/2016 11:28:59 PM,01/08/2016 11:29:34 PM,01/08/2016 11:29:45 PM,01/08/2016 11:33:24 PM,01/08/2016 11:40:00 PM,01/08/2016 11:55:48 PM,Code 2 Transport,01/09/2016 12:23:33 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160084103-75 -102980178,T15,10095149,Citizen Assist / Service Call,10/25/2010,10/25/2010,10/25/2010 12:29:59 PM,10/25/2010 12:31:31 PM,10/25/2010 12:35:07 PM,10/25/2010 12:36:16 PM,10/25/2010 12:42:45 PM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Fire,10/25/2010 12:53:22 PM,DIAMOND ST/BOSWORTH ST,SF,94131,B09,26,8261,3,3,3,false,,1,TRUCK,1,9,8,Glen Park,"(37.7335503441786, -122.434144537488)",102980178-T15 -160801035,71,16031747,Medical Incident,03/20/2016,03/20/2016,03/20/2016 09:18:34 AM,03/20/2016 09:20:39 AM,03/20/2016 09:21:22 AM,03/20/2016 09:21:28 AM,03/20/2016 09:31:06 AM,03/20/2016 09:57:49 AM,03/20/2016 10:01:53 AM,Code 2 Transport,03/20/2016 10:31:06 AM,1700 Block of VAN NESS AVE,San Francisco,94109,B04,41,3154,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7917100187281, -122.422775407004)",160801035-71 -160452840,88,16018246,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:08:56 PM,02/14/2016 07:09:48 PM,02/14/2016 07:10:08 PM,02/14/2016 07:10:18 PM,02/14/2016 07:23:34 PM,02/14/2016 07:38:23 PM,02/14/2016 08:11:50 PM,Code 2 Transport,02/14/2016 08:44:53 PM,500 Block of SKYLINE BLVD,San Francisco,94132,B08,19,8772,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7145772172019, -122.498098202551)",160452840-88 -103520338,58,10113105,Medical Incident,12/18/2010,12/18/2010,12/18/2010 08:04:03 PM,12/18/2010 08:05:41 PM,12/18/2010 08:07:12 PM,12/18/2010 08:07:29 PM,12/18/2010 08:12:41 PM,12/18/2010 08:46:19 PM,12/18/2010 09:11:35 PM,Code 2 Transport,12/18/2010 09:27:15 PM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,SF,94112,B09,15,8276,2,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",103520338-58 -160452962,78,16018257,Medical Incident,02/14/2016,02/14/2016,02/14/2016 07:44:47 PM,02/14/2016 07:45:22 PM,02/14/2016 07:46:02 PM,02/14/2016 07:48:59 PM,02/14/2016 07:50:48 PM,02/14/2016 08:00:57 PM,02/14/2016 08:18:53 PM,Code 2 Transport,02/14/2016 08:57:47 PM,1300 Block of GATEVIEW AVE,Treasure Isla,94130,B03,48,2931,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",160452962-78 -160530606,75,16021093,Medical Incident,02/22/2016,02/21/2016,02/22/2016 07:53:07 AM,02/22/2016 07:55:23 AM,02/22/2016 07:59:39 AM,02/22/2016 07:59:45 AM,02/22/2016 08:13:57 AM,02/22/2016 08:29:48 AM,02/22/2016 09:05:33 AM,Code 2 Transport,02/22/2016 09:36:30 AM,1400 Block of WEBSTER ST,San Francisco,94115,B04,5,3514,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,5,Western Addition,"(37.7840176843094, -122.431238065286)",160530606-75 -123130017,KM07,12104005,Medical Incident,11/08/2012,11/07/2012,11/08/2012 01:04:40 AM,11/08/2012 01:08:48 AM,11/08/2012 01:10:08 AM,11/08/2012 01:10:39 AM,11/08/2012 01:15:20 AM,04/25/2016 01:55:54 PM,04/25/2016 01:55:54 PM,Unable to Locate,11/08/2012 01:18:37 AM,WIESE ST/16TH ST,SF,94103,B02,7,5236,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7650021977852, -122.42048249298)",123130017-KM07 -132100349,77,13071168,Medical Incident,07/29/2013,07/29/2013,07/29/2013 08:05:57 PM,07/29/2013 08:06:23 PM,07/29/2013 08:06:35 PM,07/29/2013 08:07:02 PM,04/25/2016 01:51:34 PM,07/29/2013 08:24:11 PM,07/29/2013 08:31:30 PM,Code 2 Transport,07/29/2013 08:49:29 PM,300 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",132100349-77 -122720251,AM12,12089811,Traffic Collision,09/28/2012,09/28/2012,09/28/2012 06:50:41 PM,09/28/2012 06:52:24 PM,09/28/2012 06:54:16 PM,09/28/2012 06:54:59 PM,09/28/2012 07:07:38 PM,04/25/2016 01:56:34 PM,04/25/2016 01:56:34 PM,No Merit,09/28/2012 07:14:25 PM,STEINER ST/GEARY BL,SF,94115,B04,5,3623,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7841518625627, -122.434562099013)",122720251-AM12 -160781092,53,16030957,Medical Incident,03/18/2016,03/18/2016,03/18/2016 09:26:31 AM,03/18/2016 09:28:45 AM,03/18/2016 09:29:12 AM,03/18/2016 09:29:26 AM,03/18/2016 09:29:26 AM,03/18/2016 09:58:12 AM,03/18/2016 10:14:53 AM,Code 2 Transport,03/18/2016 10:58:30 AM,1200 Block of REVERE AVE,San Francisco,94124,B10,17,6634,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7280000551487, -122.383581434035)",160781092-53 -113430104,T13,11113681,Outside Fire,12/09/2011,12/09/2011,12/09/2011 08:59:49 AM,12/09/2011 08:59:50 AM,12/09/2011 09:03:10 AM,12/09/2011 09:05:18 AM,12/09/2011 09:09:24 AM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/09/2011 09:10:02 AM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,false,,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",113430104-T13 -160633364,52,16025229,Medical Incident,03/03/2016,03/03/2016,03/03/2016 07:42:34 PM,03/03/2016 07:44:13 PM,03/03/2016 07:54:49 PM,03/03/2016 07:54:55 PM,03/03/2016 08:02:47 PM,03/03/2016 08:17:29 PM,03/03/2016 08:49:59 PM,Code 2 Transport,03/03/2016 09:24:52 PM,500 Block of HAYES ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7765217026729, -122.425377541131)",160633364-52 -113410017,94,11112915,Other,12/07/2011,12/06/2011,12/07/2011 01:44:02 AM,12/07/2011 01:44:02 AM,12/07/2011 01:44:02 AM,04/25/2016 02:01:17 PM,12/07/2011 02:01:40 AM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/07/2011 05:10:48 AM,HOWARD ST/SPEAR ST,SF,94105,B03,35,2114,3,3,3,true,,1,MEDIC,4,3,6,Financial District/South Beach,"(37.7913109702069, -122.392524624579)",113410017-94 -111910090,89,11063049,Medical Incident,07/10/2011,07/10/2011,07/10/2011 09:39:20 AM,07/10/2011 09:40:30 AM,07/10/2011 09:40:43 AM,07/10/2011 09:41:10 AM,07/10/2011 09:47:31 AM,07/10/2011 10:16:05 AM,07/10/2011 10:51:35 AM,Code 2 Transport,07/10/2011 11:12:19 AM,200 Block of OLMSTEAD ST,SF,94134,B10,44,6325,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7222449068789, -122.404091211866)",111910090-89 -121320106,T09,12043851,Structure Fire,05/11/2012,05/11/2012,05/11/2012 08:55:37 AM,05/11/2012 08:55:38 AM,05/11/2012 08:56:01 AM,05/11/2012 08:56:20 AM,05/11/2012 08:58:18 AM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 09:03:54 AM,2700 Block of BRYANT ST,SF,94110,B06,9,553,3,3,3,false,Alarm,1,TRUCK,1,6,9,Mission,"(37.750396573149, -122.408970541511)",121320106-T09 -123500252,T03,12117098,Medical Incident,12/15/2012,12/15/2012,12/15/2012 04:55:06 PM,12/15/2012 04:55:29 PM,12/15/2012 04:55:45 PM,12/15/2012 04:56:01 PM,12/15/2012 04:56:10 PM,04/25/2016 01:55:18 PM,04/25/2016 01:55:18 PM,Other,12/15/2012 05:07:18 PM,1100 Block of POST ST,SF,94109,B04,3,3161,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,4,3,Nob Hill,"(37.786777482512, -122.420759970574)",123500252-T03 -160441125,85,16017634,Medical Incident,02/13/2016,02/13/2016,02/13/2016 10:16:51 AM,02/13/2016 10:21:13 AM,02/13/2016 10:21:39 AM,02/13/2016 10:21:52 AM,02/13/2016 10:26:47 AM,02/13/2016 10:53:25 AM,02/13/2016 11:04:43 AM,Code 2 Transport,02/13/2016 11:47:21 AM,0 Block of WASHBURN ST,San Francisco,94103,B02,36,2336,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7752362231466, -122.414406294791)",160441125-85 -110370182,E10,11012199,Medical Incident,02/06/2011,02/06/2011,02/06/2011 10:49:51 AM,02/06/2011 10:50:31 AM,02/06/2011 10:50:44 AM,02/06/2011 10:51:36 AM,02/06/2011 10:54:20 AM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/06/2011 11:22:59 AM,DIVISADERO ST/GEARY BL,SF,94115,B05,10,4154,3,3,3,true,,1,ENGINE,1,5,5,Japantown,"(37.7833084876653, -122.439480381269)",110370182-E10 -112000107,E01,11065893,Medical Incident,07/19/2011,07/19/2011,07/19/2011 09:27:06 AM,07/19/2011 09:28:51 AM,07/19/2011 09:29:18 AM,04/25/2016 02:03:36 PM,07/19/2011 09:31:25 AM,04/25/2016 02:03:36 PM,04/25/2016 02:03:36 PM,Other,07/19/2011 09:42:12 AM,1100 Block of HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7768521020734, -122.410711239368)",112000107-E01 -122010137,RWC2,12066763,Water Rescue,07/19/2012,07/19/2012,07/19/2012 10:54:56 AM,07/19/2012 10:54:56 AM,07/19/2012 10:55:19 AM,07/19/2012 10:58:48 AM,07/19/2012 11:09:15 AM,04/25/2016 01:57:39 PM,04/25/2016 01:57:39 PM,Other,07/19/2012 12:32:09 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,SUPPORT,9,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",122010137-RWC2 -123200333,E12,12106511,Medical Incident,11/15/2012,11/15/2012,11/15/2012 09:12:30 PM,11/15/2012 09:14:01 PM,11/15/2012 09:14:10 PM,11/15/2012 09:14:51 PM,11/15/2012 09:17:35 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 09:20:30 PM,1500 Block of HAIGHT ST,SF,94117,B05,12,4525,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7698484993497, -122.447745343044)",123200333-E12 -112730144,E51,11090215,Medical Incident,09/30/2011,09/30/2011,09/30/2011 11:54:53 AM,09/30/2011 11:57:14 AM,09/30/2011 11:57:26 AM,04/25/2016 02:02:24 PM,09/30/2011 11:58:45 AM,04/25/2016 02:02:24 PM,04/25/2016 02:02:24 PM,Other,09/30/2011 12:13:46 PM,0 Block of KEYES AVE,PR,94129,B99,51,4626,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8007138815184, -122.455902073561)",112730144-E51 -160883484,KM09,16035106,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:10:08 PM,03/28/2016 08:10:08 PM,03/28/2016 08:10:42 PM,03/28/2016 08:11:51 PM,03/28/2016 08:27:06 PM,03/28/2016 08:48:03 PM,03/28/2016 09:03:28 PM,Code 2 Transport,03/28/2016 09:38:41 PM,800 Block of 3RD ST,San Francisco,94107,B03,8,2172,2,3,3,false,Non Life-threatening,1,PRIVATE,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",160883484-KM09 -132050013,94,13069289,Medical Incident,07/24/2013,07/23/2013,07/24/2013 12:56:46 AM,07/24/2013 12:57:43 AM,07/24/2013 01:00:01 AM,04/25/2016 01:51:39 PM,07/24/2013 01:04:16 AM,07/24/2013 01:16:13 AM,07/24/2013 01:28:36 AM,Code 3 Transport,07/24/2013 02:20:41 AM,2500 Block of LOMBARD ST,SF,94123,B04,16,4223,E,E,3,true,Non Life-threatening,1,MEDIC,3,4,2,Marina,"(37.7990014109723, -122.443503858027)",132050013-94 -160291133,75,16011392,Medical Incident,01/29/2016,01/29/2016,01/29/2016 10:10:28 AM,01/29/2016 10:12:38 AM,01/29/2016 10:13:28 AM,01/29/2016 10:13:40 AM,01/29/2016 10:23:32 AM,01/29/2016 10:37:13 AM,01/29/2016 10:52:38 AM,Code 2 Transport,01/29/2016 11:20:44 AM,400 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7812873999159, -122.41796607229)",160291133-75 -132530211,T08,13085504,Structure Fire,09/10/2013,09/10/2013,09/10/2013 01:19:11 PM,09/10/2013 01:19:11 PM,09/10/2013 01:20:52 PM,09/10/2013 01:22:25 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,04/25/2016 01:50:51 PM,Other,09/10/2013 01:24:42 PM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7820242662358, -122.401159719509)",132530211-T08 -160852642,65,16033860,Medical Incident,03/25/2016,03/25/2016,03/25/2016 04:32:57 PM,03/25/2016 04:34:03 PM,03/25/2016 04:35:21 PM,03/25/2016 04:35:29 PM,03/25/2016 04:57:08 PM,03/25/2016 05:09:52 PM,03/25/2016 05:20:07 PM,Code 2 Transport,03/25/2016 06:01:48 PM,0 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",160852642-65 -120190094,E06,12006289,Medical Incident,01/19/2012,01/19/2012,01/19/2012 08:53:48 AM,01/19/2012 08:54:40 AM,01/19/2012 08:54:59 AM,01/19/2012 08:59:58 AM,01/19/2012 09:03:31 AM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 09:11:35 AM,4000 Block of 18TH ST,SF,94114,B05,6,5417,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7610427981277, -122.433353754785)",120190094-E06 -102620328,79,10083014,Medical Incident,09/19/2010,09/19/2010,09/19/2010 08:17:08 PM,09/19/2010 08:18:01 PM,09/19/2010 08:18:27 PM,09/19/2010 08:19:03 PM,09/19/2010 08:31:26 PM,09/19/2010 08:44:33 PM,09/19/2010 09:04:05 PM,Code 2 Transport,09/19/2010 09:34:08 PM,200 Block of HOLYOKE ST,SF,94134,B10,42,6342,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7281264834061, -122.409351194321)",102620328-79 -160203389,62,16008139,Medical Incident,01/20/2016,01/20/2016,01/20/2016 07:51:43 PM,01/20/2016 07:53:56 PM,01/20/2016 07:54:16 PM,01/20/2016 07:54:24 PM,01/20/2016 08:07:41 PM,01/20/2016 08:17:21 PM,01/20/2016 08:22:57 PM,Code 2 Transport,01/20/2016 08:58:09 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",160203389-62 -140340213,T09,14011525,Alarms,02/03/2014,02/03/2014,02/03/2014 02:48:55 PM,02/03/2014 02:48:55 PM,02/03/2014 02:49:08 PM,02/03/2014 02:50:56 PM,02/03/2014 02:53:24 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 02:56:19 PM,1700 Block of ALABAMA ST,SF,94110,B06,9,5666,3,3,3,false,Alarm,1,TRUCK,3,6,9,Bernal Heights,"(37.7446175892234, -122.410483607107)",140340213-T09 -113610078,E25,11119868,Medical Incident,12/27/2011,12/27/2011,12/27/2011 08:56:16 AM,12/27/2011 08:57:58 AM,12/27/2011 08:58:09 AM,12/27/2011 08:58:41 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 09:10:58 AM,1100 Block of OAKDALE AVE,SF,94124,B10,17,6572,3,3,3,false,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.7299673603625, -122.382096081736)",113610078-E25 -130190304,E01,13006611,Alarms,01/19/2013,01/19/2013,01/19/2013 05:41:25 PM,01/19/2013 05:42:19 PM,01/19/2013 05:43:19 PM,04/25/2016 01:54:43 PM,01/19/2013 05:45:03 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 06:05:32 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",130190304-E01 -121780320,E29,12059372,Medical Incident,06/26/2012,06/26/2012,06/26/2012 07:28:47 PM,06/26/2012 07:29:40 PM,06/26/2012 07:29:50 PM,06/26/2012 07:29:58 PM,06/26/2012 07:31:22 PM,04/25/2016 01:58:00 PM,04/25/2016 01:58:00 PM,Other,06/26/2012 07:48:00 PM,500 Block of 9TH ST,SF,94103,B03,29,2331,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7707086968349, -122.407716820686)",121780320-E29 -140060077,77,14002043,Medical Incident,01/06/2014,01/05/2014,01/06/2014 07:31:00 AM,01/06/2014 07:33:05 AM,01/06/2014 07:33:29 AM,01/06/2014 07:33:48 AM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/06/2014 07:41:25 AM,MOSS ST/FOLSOM ST,SF,94103,B03,1,2313,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7771792983194, -122.407293680493)",140060077-77 -110950308,E25,11031653,Alarms,04/05/2011,04/05/2011,04/05/2011 08:46:32 PM,04/05/2011 08:48:07 PM,04/05/2011 08:48:19 PM,04/05/2011 08:49:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,04/25/2016 02:05:15 PM,Fire,04/05/2011 08:50:21 PM,600 Block of 16TH ST,SF,94158,B03,8,2364,3,3,3,false,,1,ENGINE,3,3,6,Mission Bay,"(37.7668017295742, -122.391734694389)",110950308-E25 -160651442,62,16025908,Medical Incident,03/05/2016,03/05/2016,03/05/2016 12:01:45 PM,03/05/2016 12:02:31 PM,03/05/2016 12:02:54 PM,03/05/2016 12:03:23 PM,03/05/2016 12:10:33 PM,03/05/2016 12:41:38 PM,03/05/2016 12:48:28 PM,Code 2 Transport,03/05/2016 01:42:39 PM,0 Block of MUSIC CONCOURSE DR,San Francisco,94118,B07,22,7744,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.7701668635102, -122.466822670295)",160651442-62 -140430363,66,14014772,Medical Incident,02/12/2014,02/12/2014,02/12/2014 08:55:25 PM,02/12/2014 08:56:03 PM,02/12/2014 08:56:22 PM,02/12/2014 08:56:56 PM,02/12/2014 09:05:09 PM,02/12/2014 09:22:05 PM,02/12/2014 09:55:44 PM,Code 2 Transport,02/12/2014 10:32:00 PM,1600 Block of ALABAMA ST,SF,94110,B06,9,5666,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7466283742569, -122.410660879834)",140430363-66 -110730128,E07,11023965,Medical Incident,03/14/2011,03/14/2011,03/14/2011 10:36:55 AM,03/14/2011 10:38:31 AM,03/14/2011 10:38:44 AM,03/14/2011 10:39:32 AM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,04/25/2016 02:05:38 PM,Other,03/14/2011 10:41:57 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,ENGINE,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",110730128-E07 -160053700,64,16002197,Medical Incident,01/05/2016,01/05/2016,01/05/2016 10:39:13 PM,01/05/2016 10:40:08 PM,01/05/2016 10:40:47 PM,01/05/2016 10:40:54 PM,01/05/2016 10:45:00 PM,01/05/2016 10:59:26 PM,01/05/2016 11:26:38 PM,Code 2 Transport,01/06/2016 12:23:48 AM,2800 Block of MISSION ST,San Francisco,94110,B06,11,5525,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,6,9,Mission,"(37.7514438314246, -122.41829760412)",160053700-64 -140670326,79,14022803,Medical Incident,03/08/2014,03/08/2014,03/08/2014 08:41:30 PM,03/08/2014 08:43:22 PM,03/08/2014 08:48:46 PM,03/08/2014 08:48:55 PM,03/08/2014 08:49:35 PM,03/08/2014 09:10:35 PM,03/08/2014 09:35:49 PM,Code 2 Transport,03/08/2014 09:49:35 PM,300 Block of LEAVENWORTH ST,SAN FRANCISCO,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",140670326-79 -112170333,KM07,11071838,Medical Incident,08/05/2011,08/05/2011,08/05/2011 08:21:22 PM,08/05/2011 08:21:54 PM,08/05/2011 08:29:00 PM,08/05/2011 08:30:11 PM,08/05/2011 08:34:55 PM,08/05/2011 08:44:10 PM,04/25/2016 02:03:19 PM,Code 2 Transport,08/05/2011 09:15:27 PM,300 Block of POWELL ST,SF,94102,B01,1,1362,2,2,2,false,,1,PRIVATE,1,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",112170333-KM07 -133140301,E02,13106862,Medical Incident,11/10/2013,11/10/2013,11/10/2013 09:03:40 PM,11/10/2013 09:05:02 PM,11/10/2013 09:05:49 PM,11/10/2013 09:07:13 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,04/25/2016 01:49:49 PM,Other,11/10/2013 09:07:44 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,2,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8069201392161, -122.407170160416)",133140301-E02 -110470048,E33,11015436,Electrical Hazard,02/16/2011,02/15/2011,02/16/2011 06:06:05 AM,02/16/2011 06:08:19 AM,02/16/2011 06:08:42 AM,02/16/2011 06:11:02 AM,02/16/2011 06:14:11 AM,04/25/2016 02:06:04 PM,04/25/2016 02:06:04 PM,Other,02/16/2011 06:17:26 AM,0 Block of GRANADA AVE,SF,94112,B09,33,8465,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7191321202701, -122.457082657075)",110470048-E33 -112970066,82,11098427,Medical Incident,10/24/2011,10/23/2011,10/24/2011 07:12:39 AM,10/24/2011 07:13:26 AM,10/24/2011 07:13:41 AM,10/24/2011 07:13:55 AM,10/24/2011 07:19:31 AM,10/24/2011 07:37:11 AM,10/24/2011 08:07:38 AM,Code 2 Transport,10/24/2011 08:41:35 AM,200 Block of CONCORD ST,SF,94112,B09,43,6231,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7100041242948, -122.441693918266)",112970066-82 -131340428,E26,13045406,Medical Incident,05/14/2013,05/14/2013,05/14/2013 11:22:49 PM,05/14/2013 11:25:15 PM,05/14/2013 11:25:26 PM,05/14/2013 11:26:57 PM,05/14/2013 11:29:32 PM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,Other,05/14/2013 11:52:47 PM,2200 Block of CASTRO ST,SF,94131,B06,26,5565,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7437098544014, -122.433288076855)",131340428-E26 -160021816,50,16000754,Medical Incident,01/02/2016,01/02/2016,01/02/2016 02:16:42 PM,01/02/2016 02:16:42 PM,01/02/2016 02:17:21 PM,01/02/2016 02:17:30 PM,01/02/2016 02:37:53 PM,01/02/2016 02:51:27 PM,01/02/2016 03:12:57 PM,Code 2 Transport,01/02/2016 03:57:33 PM,2700 Block of TAYLOR ST,San Francisco,94133,B01,28,1433,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807736426869, -122.41577781939)",160021816-50 -112680220,E01,11088609,Medical Incident,09/25/2011,09/25/2011,09/25/2011 02:09:48 PM,09/25/2011 02:10:27 PM,09/25/2011 02:11:01 PM,04/25/2016 02:02:29 PM,09/25/2011 02:16:07 PM,04/25/2016 02:02:29 PM,04/25/2016 02:02:29 PM,Other,09/25/2011 02:27:16 PM,100 Block of 7TH ST,SF,94103,B02,1,2315,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7789597633583, -122.410718060304)",112680220-E01 -113160283,81,11105101,Medical Incident,11/12/2011,11/12/2011,11/12/2011 08:06:23 PM,11/12/2011 08:07:18 PM,11/12/2011 08:07:35 PM,11/12/2011 08:07:55 PM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,04/25/2016 02:01:40 PM,Other,11/12/2011 08:13:53 PM,700 Block of TREAT AVE,SF,94110,B06,7,5447,E,2,2,true,,1,MEDIC,2,6,9,Mission,"(37.7581667907315, -122.413454316828)",113160283-81 -160643088,77,16025624,Medical Incident,03/04/2016,03/04/2016,03/04/2016 06:19:42 PM,03/04/2016 06:22:14 PM,03/04/2016 06:23:12 PM,03/04/2016 06:23:25 PM,03/04/2016 07:00:15 PM,03/04/2016 07:00:19 PM,03/04/2016 07:13:23 PM,Code 2 Transport,03/04/2016 07:29:36 PM,100 Block of OTIS ST,San Francisco,94103,B02,36,5125,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Mission,"(37.7709133372974, -122.420304994325)",160643088-77 -102600250,E06,10082223,Medical Incident,09/17/2010,09/17/2010,09/17/2010 03:48:08 PM,09/17/2010 03:48:55 PM,09/17/2010 03:49:50 PM,09/17/2010 03:50:53 PM,09/17/2010 03:55:01 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Patient Declined Transport,09/17/2010 03:55:23 PM,CASTRO ST/18TH ST,SF,94114,B05,6,5416,3,3,3,true,,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",102600250-E06 -103480385,E01,10111755,Alarms,12/14/2010,12/14/2010,12/14/2010 09:25:38 PM,12/14/2010 09:26:36 PM,12/14/2010 09:26:50 PM,12/14/2010 09:27:46 PM,12/14/2010 09:28:20 PM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Other,12/14/2010 09:31:27 PM,0 Block of 3RD ST,SF,94103,B03,1,2211,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7868117505944, -122.40284972021)",103480385-E01 -120730259,58,12024284,Traffic Collision,03/13/2012,03/13/2012,03/13/2012 04:06:15 PM,03/13/2012 04:07:53 PM,03/13/2012 04:08:12 PM,03/13/2012 04:10:20 PM,03/13/2012 04:15:39 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,04/25/2016 01:59:41 PM,ATHENS ST/RUSSIA AV,SF,94112,B09,43,6156,3,3,3,true,Potentially Life-Threatening,1,MEDIC,5,9,11,Excelsior,"(37.7185302023032, -122.430778026674)",120730259-58 -112510072,E20,11082678,Medical Incident,09/08/2011,09/07/2011,09/08/2011 07:03:17 AM,09/08/2011 07:03:48 AM,09/08/2011 07:04:22 AM,09/08/2011 07:05:54 AM,09/08/2011 07:08:20 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Patient Declined Transport,09/08/2011 07:22:42 AM,400 Block of PANORAMA DR,SF,94131,B08,20,5351,3,3,3,true,,1,ENGINE,1,8,7,Twin Peaks,"(37.7518297623409, -122.45213565267)",112510072-E20 -123020316,E14,12100280,Medical Incident,10/28/2012,10/28/2012,10/28/2012 07:00:35 PM,10/28/2012 07:02:56 PM,10/28/2012 07:03:27 PM,10/28/2012 07:04:26 PM,10/28/2012 07:08:04 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 07:29:54 PM,100 Block of POINT LOBOS AVE,SF,94121,B07,34,7274,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,7,1,Outer Richmond,"(37.7796978848355, -122.504603568593)",123020316-E14 -120480093,85,12015847,Medical Incident,02/17/2012,02/17/2012,02/17/2012 08:49:39 AM,02/17/2012 08:51:13 AM,02/17/2012 08:51:39 AM,02/17/2012 08:53:14 AM,02/17/2012 09:05:15 AM,02/17/2012 09:25:43 AM,02/17/2012 09:52:48 AM,Code 2 Transport,02/17/2012 10:14:30 AM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",120480093-85 -160470150,58,16018753,Medical Incident,02/16/2016,02/15/2016,02/16/2016 01:26:42 AM,02/16/2016 01:27:09 AM,02/16/2016 01:27:25 AM,02/16/2016 01:28:01 AM,02/16/2016 01:33:36 AM,02/16/2016 01:53:18 AM,02/16/2016 02:01:07 AM,Code 3 Transport,02/16/2016 02:29:36 AM,0 Block of MONETA WAY,San Francisco,94112,B09,33,8347,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7129282254093, -122.449089456346)",160470150-58 -130360047,KM07,13012259,Medical Incident,02/05/2013,02/04/2013,02/05/2013 06:12:19 AM,02/05/2013 06:15:55 AM,02/05/2013 06:16:08 AM,02/05/2013 06:16:45 AM,02/05/2013 06:31:29 AM,02/05/2013 06:31:44 AM,02/05/2013 06:39:14 AM,Other,02/05/2013 07:01:47 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7563633001161, -122.416712100806)",130360047-KM07 -160583445,KM03,16023289,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:50:06 PM,02/27/2016 08:51:46 PM,02/27/2016 08:53:06 PM,02/27/2016 08:53:31 PM,02/27/2016 09:00:57 PM,02/27/2016 09:18:27 PM,02/27/2016 09:44:39 PM,Code 2 Transport,02/27/2016 10:25:58 PM,600 Block of GREENWICH ST,San Francisco,94133,B01,28,1335,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,North Beach,"(37.8022928848666, -122.410091524049)",160583445-KM03 -130900240,E06,13030168,Medical Incident,03/31/2013,03/31/2013,03/31/2013 04:54:07 PM,03/31/2013 04:54:31 PM,03/31/2013 04:55:08 PM,03/31/2013 04:56:37 PM,03/31/2013 04:58:17 PM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 05:08:58 PM,3900 Block of 17TH ST,SF,94114,B05,6,5253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.762462765244, -122.434659092708)",130900240-E06 -140680267,E03,14023089,Medical Incident,03/09/2014,03/09/2014,03/09/2014 07:46:09 PM,03/09/2014 07:48:11 PM,03/09/2014 07:48:44 PM,03/09/2014 07:49:39 PM,03/09/2014 07:50:48 PM,04/25/2016 01:47:49 PM,04/25/2016 01:47:49 PM,Code 2 Transport,03/09/2014 08:00:55 PM,900 Block of LARKIN ST,SAN FRANCISCO,94109,B04,3,1641,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7868103734135, -122.418156523953)",140680267-E03 -110920286,E21,11030626,Outside Fire,04/02/2011,04/02/2011,04/02/2011 06:44:36 PM,04/02/2011 06:44:36 PM,04/02/2011 06:44:49 PM,04/25/2016 02:05:18 PM,04/02/2011 06:46:58 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/02/2011 06:49:24 PM,1600 Block of MCALLISTER ST,SF,94117,B05,21,4151,3,3,3,false,,1,ENGINE,1,5,5,Western Addition,"(37.7776362211567, -122.439185459883)",110920286-E21 -103270026,E02,10104643,Medical Incident,11/23/2010,11/22/2010,11/23/2010 04:35:36 AM,11/23/2010 04:37:49 AM,11/23/2010 04:38:01 AM,11/23/2010 04:39:49 AM,11/23/2010 04:41:31 AM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 05:02:11 AM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,true,,1,ENGINE,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",103270026-E02 -160290210,61,16011301,Medical Incident,01/29/2016,01/28/2016,01/29/2016 02:01:14 AM,01/29/2016 02:02:39 AM,01/29/2016 02:04:40 AM,01/29/2016 02:05:10 AM,01/29/2016 02:17:36 AM,01/29/2016 02:23:23 AM,01/29/2016 02:37:53 AM,Code 2 Transport,01/29/2016 03:28:29 AM,0 Block of HARBOR RD,San Francisco,94124,B10,17,6633,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7323807302226, -122.378268018481)",160290210-61 -132850332,RC3,13097082,Medical Incident,10/12/2013,10/12/2013,10/12/2013 09:12:06 PM,10/12/2013 09:12:56 PM,10/12/2013 09:16:28 PM,04/25/2016 01:50:17 PM,10/12/2013 09:18:09 PM,04/25/2016 01:50:17 PM,04/25/2016 01:50:17 PM,Other,10/12/2013 09:19:39 PM,900 Block of HAYES ST,SF,94117,B05,21,3631,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,5,5,Hayes Valley,"(37.7757844466813, -122.432025160558)",132850332-RC3 -130450275,E03,13015330,Medical Incident,02/14/2013,02/14/2013,02/14/2013 03:21:33 PM,02/14/2013 03:23:04 PM,02/14/2013 03:27:05 PM,04/25/2016 01:54:18 PM,02/14/2013 03:31:33 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 03:54:55 PM,500 Block of TAYLOR ST,SF,94102,B01,3,1451,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Tenderloin,"(37.7874020700273, -122.411538882795)",130450275-E03 -160820504,85,16032470,Medical Incident,03/22/2016,03/21/2016,03/22/2016 06:58:30 AM,03/22/2016 07:02:02 AM,03/22/2016 07:03:29 AM,03/22/2016 07:03:39 AM,03/22/2016 07:17:07 AM,03/22/2016 07:25:34 AM,03/22/2016 07:35:48 AM,Code 2 Transport,03/22/2016 08:23:39 AM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160820504-85 -160802453,78,16031878,Medical Incident,03/20/2016,03/20/2016,03/20/2016 04:44:09 PM,03/20/2016 04:45:13 PM,03/20/2016 04:47:25 PM,03/20/2016 04:47:32 PM,03/20/2016 05:01:43 PM,03/20/2016 05:22:10 PM,03/20/2016 05:38:33 PM,Code 2 Transport,03/20/2016 06:06:07 PM,300 Block of 11TH AVE,San Francisco,94118,B07,31,7141,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7817385392724, -122.469629422744)",160802453-78 -131590010,T15,13053868,Alarms,06/08/2013,06/07/2013,06/08/2013 12:35:27 AM,06/08/2013 12:36:46 AM,06/08/2013 12:36:54 AM,06/08/2013 12:38:45 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 12:55:23 AM,300 Block of OCEAN AVE,SF,94112,B09,15,8311,3,3,3,false,Alarm,1,TRUCK,3,9,11,Outer Mission,"(37.7229186267011, -122.443999261773)",131590010-T15 -123520367,85,12117899,Medical Incident,12/17/2012,12/17/2012,12/17/2012 08:46:04 PM,12/17/2012 08:46:28 PM,12/17/2012 08:47:01 PM,12/17/2012 08:47:21 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,04/25/2016 01:55:15 PM,Other,12/17/2012 08:49:59 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",123520367-85 -160382728,60,16015317,Medical Incident,02/07/2016,02/07/2016,02/07/2016 05:32:42 PM,02/07/2016 05:35:49 PM,02/07/2016 05:37:22 PM,02/07/2016 05:37:34 PM,02/07/2016 05:49:38 PM,02/07/2016 05:51:36 PM,02/07/2016 06:08:13 PM,Code 2 Transport,02/07/2016 06:22:52 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,3,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160382728-60 -122020320,E01,12067221,Medical Incident,07/20/2012,07/20/2012,07/20/2012 07:03:12 PM,07/20/2012 07:03:21 PM,07/20/2012 07:07:26 PM,07/20/2012 07:07:44 PM,07/20/2012 07:09:16 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/20/2012 07:20:55 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",122020320-E01 -120210086,T10,12007028,Medical Incident,01/21/2012,01/20/2012,01/21/2012 04:40:54 AM,01/21/2012 04:41:37 AM,01/21/2012 04:41:50 AM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 04:43:32 AM,2900 Block of PINE ST,SF,94115,B05,10,4263,3,2,2,false,Non Life-threatening,1,TRUCK,2,5,2,Presidio Heights,"(37.7866401451507, -122.444395104281)",120210086-T10 -122480206,B01,12082019,Alarms,09/04/2012,09/04/2012,09/04/2012 01:56:35 PM,09/04/2012 01:57:18 PM,09/04/2012 02:00:06 PM,09/04/2012 02:02:24 PM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,04/25/2016 01:56:55 PM,Fire,09/04/2012 02:09:05 PM,800 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7932200130609, -122.406954395537)",122480206-B01 -130440105,67,13014874,Medical Incident,02/13/2013,02/13/2013,02/13/2013 08:57:02 AM,02/13/2013 08:59:35 AM,02/13/2013 09:01:10 AM,02/13/2013 09:01:24 AM,02/13/2013 09:08:07 AM,02/13/2013 09:18:54 AM,02/13/2013 10:02:42 AM,Code 2 Transport,02/13/2013 10:17:46 AM,1000 Block of SILLIMAN ST,SF,94134,B09,42,6354,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Excelsior,"(37.7284760475333, -122.415429330835)",130440105-67 -133190376,T08,13108549,Outside Fire,11/15/2013,11/15/2013,11/15/2013 10:28:07 PM,11/15/2013 10:28:07 PM,11/15/2013 10:28:19 PM,11/15/2013 10:30:07 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/15/2013 10:34:11 PM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,8,966,3,3,3,false,Alarm,1,TRUCK,5,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",133190376-T08 -140640331,96,14021772,Traffic Collision,03/05/2014,03/05/2014,03/05/2014 08:45:30 PM,03/05/2014 08:46:14 PM,03/05/2014 08:47:40 PM,03/05/2014 08:47:58 PM,03/05/2014 08:50:54 PM,03/05/2014 09:08:02 PM,03/05/2014 09:25:39 PM,Code 2 Transport,03/05/2014 10:04:18 PM,MISSION ST/NEY ST,SF,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Excelsior,"(37.729930589908, -122.430110920118)",140640331-96 -102430265,E29,10076696,Medical Incident,08/31/2010,08/31/2010,08/31/2010 03:22:23 PM,08/31/2010 03:23:03 PM,08/31/2010 03:24:12 PM,08/31/2010 03:24:50 PM,08/31/2010 03:26:13 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/31/2010 03:28:22 PM,16TH ST/POTRERO AV,SF,94103,B02,29,2351,3,3,3,true,,1,ENGINE,2,2,10,Mission,"(37.7657832995202, -122.407534230594)",102430265-E29 -130620291,E32,13020867,Medical Incident,03/03/2013,03/03/2013,03/03/2013 05:18:43 PM,03/03/2013 05:19:29 PM,03/03/2013 05:19:59 PM,03/03/2013 05:21:25 PM,03/03/2013 05:23:08 PM,04/25/2016 01:54:01 PM,04/25/2016 01:54:01 PM,Other,03/03/2013 05:38:49 PM,3800 Block of MISSION ST,SF,94110,B06,32,5632,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Bernal Heights,"(37.7357299122271, -122.424651160697)",130620291-E32 -102600037,54,10082046,Medical Incident,09/17/2010,09/16/2010,09/17/2010 02:35:17 AM,09/17/2010 02:36:10 AM,09/17/2010 02:36:51 AM,09/17/2010 02:37:10 AM,09/17/2010 02:42:00 AM,09/17/2010 02:58:51 AM,09/17/2010 02:58:52 AM,Code 2 Transport,09/17/2010 03:28:40 AM,3800 Block of 19TH ST,SF,94114,B06,6,5436,3,3,3,true,,1,MEDIC,2,6,8,Castro/Upper Market,"(37.7596793163644, -122.429316589446)",102600037-54 -130270174,T15,13009292,Alarms,01/27/2013,01/27/2013,01/27/2013 12:06:23 PM,01/27/2013 12:07:29 PM,01/27/2013 12:07:41 PM,01/27/2013 12:09:10 PM,01/27/2013 12:14:01 PM,04/25/2016 01:54:36 PM,04/25/2016 01:54:36 PM,Other,01/27/2013 12:19:53 PM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",130270174-T15 -140440108,E12,14014901,Structure Fire,02/13/2014,02/13/2014,02/13/2014 08:51:08 AM,02/13/2014 08:51:09 AM,02/13/2014 08:51:13 AM,02/13/2014 08:52:44 AM,02/13/2014 08:53:34 AM,04/25/2016 01:48:14 PM,04/25/2016 01:48:14 PM,Fire,02/13/2014 08:54:27 AM,STANYAN ST/FREDERICK ST,SF,94117,B05,12,4551,3,3,3,true,Alarm,1,ENGINE,1,5,5,Haight Ashbury,"(37.766374073924, -122.452947033535)",140440108-E12 -122270253,83,12075318,Medical Incident,08/14/2012,08/14/2012,08/14/2012 06:13:10 PM,08/14/2012 06:14:00 PM,08/14/2012 06:14:40 PM,08/14/2012 06:14:49 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,04/25/2016 01:57:14 PM,Other,08/14/2012 06:21:45 PM,0 Block of POWELL ST,SF,94102,B03,1,1364,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,3,Tenderloin,"(37.7850867152448, -122.407843896687)",122270253-83 -112870430,T13,11095360,Medical Incident,10/14/2011,10/14/2011,10/14/2011 10:59:37 PM,10/14/2011 10:59:38 PM,10/14/2011 10:59:38 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,04/25/2016 02:02:09 PM,Other,10/15/2011 12:51:32 AM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,false,,1,TRUCK,2,1,3,North Beach,"(37.7981219270604, -122.405087523335)",112870430-T13 -111130173,E38,11037333,Medical Incident,04/23/2011,04/23/2011,04/23/2011 12:47:21 PM,04/23/2011 12:49:35 PM,04/23/2011 12:49:52 PM,04/23/2011 12:51:20 PM,04/23/2011 12:52:34 PM,04/25/2016 02:04:58 PM,04/25/2016 02:04:58 PM,No Merit,04/23/2011 12:58:02 PM,2100 Block of SACRAMENTO ST,SF,94109,B04,38,3326,E,E,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.790617450871, -122.428280876807)",111130173-E38 -130300232,86,13010261,Medical Incident,01/30/2013,01/30/2013,01/30/2013 01:54:12 PM,01/30/2013 01:54:46 PM,01/30/2013 01:55:52 PM,01/30/2013 01:56:09 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,04/25/2016 01:54:33 PM,0 Block of DAKOTA ST,SF,94107,B10,37,2614,E,E,3,true,Potentially Life-Threatening,1,MEDIC,3,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",130300232-86 -122090116,T03,12069391,Medical Incident,07/27/2012,07/27/2012,07/27/2012 10:46:53 AM,07/27/2012 10:47:57 AM,07/27/2012 10:48:33 AM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 10:52:43 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",122090116-T03 -112820129,AM16,11093292,Medical Incident,10/09/2011,10/09/2011,10/09/2011 10:36:18 AM,10/09/2011 10:38:02 AM,10/09/2011 10:40:01 AM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 10:40:58 AM,17TH ST/SANCHEZ ST,SF,94114,B05,6,5252,3,3,3,false,,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7627526712607, -122.430726724513)",112820129-AM16 -132370231,B06,13079994,Structure Fire,08/25/2013,08/25/2013,08/25/2013 03:00:00 PM,08/25/2013 03:00:24 PM,08/25/2013 03:00:40 PM,08/25/2013 03:01:56 PM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,04/25/2016 01:51:07 PM,Other,08/25/2013 03:07:37 PM,100 Block of APOLLO ST,SF,94124,B10,42,6447,3,3,3,false,Alarm,1,CHIEF,6,10,10,Bayview Hunters Point,"(37.7308870599254, -122.398877821813)",132370231-B06 -110990046,82,11032758,Medical Incident,04/09/2011,04/08/2011,04/09/2011 02:52:21 AM,04/09/2011 02:54:16 AM,04/09/2011 02:55:55 AM,04/25/2016 02:05:12 PM,04/25/2016 02:05:12 PM,04/09/2011 03:11:18 AM,04/09/2011 03:15:31 AM,Code 2 Transport,04/09/2011 03:45:29 AM,1600 Block of YORK ST,SF,94110,B06,9,5672,2,2,2,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7472126200736, -122.406528665244)",110990046-82 -112860227,E12,11094770,Alarms,10/13/2011,10/13/2011,10/13/2011 01:32:10 PM,10/13/2011 01:32:39 PM,10/13/2011 01:33:23 PM,04/25/2016 02:02:11 PM,10/13/2011 01:41:09 PM,04/25/2016 02:02:11 PM,04/25/2016 02:02:11 PM,Other,10/13/2011 01:42:24 PM,0 Block of CARL ST,SF,94117,B05,12,5151,3,3,3,true,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7658818964425, -122.448879988308)",112860227-E12 -131660052,E36,13056285,Medical Incident,06/15/2013,06/14/2013,06/15/2013 04:30:35 AM,06/15/2013 04:31:10 AM,06/15/2013 04:31:46 AM,06/15/2013 04:33:38 AM,06/15/2013 04:36:18 AM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Other,06/15/2013 04:41:30 AM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7760099210785, -122.412889415461)",131660052-E36 -160773915,AM20,16030789,Medical Incident,03/17/2016,03/17/2016,03/17/2016 09:00:26 PM,03/17/2016 09:01:33 PM,03/17/2016 09:01:56 PM,03/17/2016 09:02:36 PM,03/17/2016 09:06:17 PM,03/17/2016 09:29:36 PM,03/17/2016 09:41:36 PM,Code 2 Transport,03/17/2016 10:09:43 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",160773915-AM20 -122270129,KM12,12075214,Medical Incident,08/14/2012,08/14/2012,08/14/2012 11:49:25 AM,08/14/2012 11:50:43 AM,08/14/2012 11:50:55 AM,08/14/2012 11:51:36 AM,08/14/2012 11:55:05 AM,08/14/2012 12:04:12 PM,08/14/2012 12:11:43 PM,Code 2 Transport,08/14/2012 12:40:38 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",122270129-KM12 -160681086,87,16027066,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:00:33 AM,03/08/2016 10:01:48 AM,03/08/2016 10:04:37 AM,03/08/2016 10:04:37 AM,03/08/2016 10:04:42 AM,03/08/2016 10:26:38 AM,03/08/2016 10:47:09 AM,Code 2 Transport,03/08/2016 11:14:37 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160681086-87 -111600335,E41,11053011,Structure Fire,06/09/2011,06/09/2011,06/09/2011 10:35:39 PM,06/09/2011 10:36:39 PM,06/09/2011 10:37:01 PM,06/09/2011 10:50:12 PM,06/09/2011 10:53:21 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 11:17:27 PM,100 Block of MCALLISTER ST,SF,94102,B02,3,1553,3,3,3,true,,2,ENGINE,12,2,6,Tenderloin,"(37.7808772585499, -122.414506898711)",111600335-E41 -103620249,KM05,10116166,Medical Incident,12/28/2010,12/28/2010,12/28/2010 05:22:56 PM,12/28/2010 05:24:06 PM,12/28/2010 05:24:44 PM,12/28/2010 05:26:03 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 05:31:30 PM,SACRAMENTO ST/DRUMM ST,SF,94111,B01,13,1115,3,3,3,false,,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7945882147944, -122.396585912894)",103620249-KM05 -121320361,E10,12044077,Structure Fire,05/11/2012,05/11/2012,05/11/2012 09:58:15 PM,05/11/2012 10:01:17 PM,05/11/2012 10:01:38 PM,05/11/2012 10:02:58 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Fire,05/11/2012 10:10:12 PM,2700 Block of GREEN ST,SF,94123,B04,16,4225,3,3,3,true,Fire,1,ENGINE,9,4,2,Marina,"(37.7950571744208, -122.444409448853)",121320361-E10 -160162937,91,16006543,Medical Incident,01/16/2016,01/16/2016,01/16/2016 06:36:24 PM,01/16/2016 06:38:27 PM,01/16/2016 06:38:47 PM,01/16/2016 06:39:08 PM,01/16/2016 06:42:18 PM,01/16/2016 06:53:28 PM,01/16/2016 07:13:38 PM,Code 2 Transport,01/16/2016 07:34:31 PM,MARKET ST/DRUMM ST,San Francisco,94105,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",160162937-91 -111570210,B10,11051925,Alarms,06/06/2011,06/06/2011,06/06/2011 01:14:48 PM,06/06/2011 01:16:58 PM,06/06/2011 01:17:06 PM,06/06/2011 01:17:57 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,04/25/2016 02:04:17 PM,Other,06/06/2011 01:22:24 PM,1600 Block of SHAFTER AVE,SF,94124,B10,17,6514,3,3,3,false,,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7312956368615, -122.391302286864)",111570210-B10 -160554001,AM16,16022173,Medical Incident,02/24/2016,02/24/2016,02/24/2016 10:05:28 PM,02/24/2016 10:07:03 PM,02/24/2016 10:07:35 PM,02/24/2016 10:08:09 PM,02/24/2016 10:19:18 PM,02/24/2016 10:31:38 PM,02/24/2016 10:53:57 PM,Code 2 Transport,02/24/2016 11:18:40 PM,800 Block of GIRARD ST,San Francisco,94134,B10,44,6325,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,10,9,Portola,"(37.7219082742634, -122.402396191437)",160554001-AM16 -102250255,E13,10070917,Outside Fire,08/13/2010,08/13/2010,08/13/2010 07:16:02 PM,08/13/2010 07:16:41 PM,08/13/2010 07:16:45 PM,08/13/2010 07:17:37 PM,08/13/2010 07:19:25 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/13/2010 07:21:37 PM,BUSH ST/BATTERY ST,SF,94111,B01,13,1163,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7913265326409, -122.399572031136)",102250255-E13 -132480319,E29,13083796,Medical Incident,09/05/2013,09/05/2013,09/05/2013 06:02:37 PM,09/05/2013 06:04:53 PM,09/05/2013 06:39:46 PM,09/05/2013 06:40:58 PM,09/05/2013 06:44:23 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Other,09/05/2013 06:54:27 PM,900 Block of POTRERO AVE,SF,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,10,9,Potrero Hill,"(37.7572895904578, -122.406870402082)",132480319-E29 -103350325,RS1,10107304,Structure Fire,12/01/2010,12/01/2010,12/01/2010 08:42:32 PM,12/01/2010 08:43:01 PM,12/01/2010 08:43:18 PM,12/01/2010 08:44:28 PM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,12/01/2010 08:56:26 PM,Other,12/01/2010 08:56:31 PM,1100 Block of UNION ST,SF,94109,B01,41,1611,3,3,3,false,,1,RESCUE SQUAD,9,1,3,Russian Hill,"(37.7993049507541, -122.417794823506)",103350325-RS1 -123520045,89,12117639,Medical Incident,12/17/2012,12/16/2012,12/17/2012 05:06:15 AM,12/17/2012 05:07:27 AM,12/17/2012 05:07:53 AM,12/17/2012 05:08:04 AM,12/17/2012 05:12:33 AM,12/17/2012 05:18:34 AM,12/17/2012 05:42:10 AM,Code 2 Transport,12/17/2012 06:04:45 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",123520045-89 -113050055,E42,11101167,Medical Incident,11/01/2011,10/31/2011,11/01/2011 03:34:28 AM,11/01/2011 03:34:48 AM,11/01/2011 03:35:20 AM,11/01/2011 03:36:50 AM,11/01/2011 03:39:28 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 03:50:45 AM,900 Block of TOMPKINS AVE,SF,94110,B10,42,6373,3,3,3,true,,1,ENGINE,1,10,9,Bernal Heights,"(37.7369660777243, -122.41068255175)",113050055-E42 -160813982,AM20,16032396,Medical Incident,03/21/2016,03/21/2016,03/21/2016 10:51:15 PM,03/21/2016 10:53:23 PM,03/21/2016 10:54:55 PM,03/21/2016 10:55:48 PM,03/21/2016 11:08:24 PM,03/21/2016 11:31:27 PM,03/21/2016 11:39:14 PM,Code 2 Transport,03/22/2016 12:06:58 AM,200 Block of FLOOD AVE,San Francisco,94112,B09,15,8231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7299496082095, -122.445430218846)",160813982-AM20 -122240104,E01,12074217,Medical Incident,08/11/2012,08/11/2012,08/11/2012 08:41:50 AM,08/11/2012 08:44:57 AM,08/11/2012 08:46:22 AM,08/11/2012 08:51:34 AM,08/11/2012 08:52:39 AM,04/25/2016 01:57:17 PM,04/25/2016 01:57:17 PM,Unable to Locate,08/11/2012 08:56:09 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",122240104-E01 -160800905,AM06,16031734,Medical Incident,03/20/2016,03/20/2016,03/20/2016 08:23:23 AM,03/20/2016 08:26:09 AM,03/20/2016 08:26:42 AM,03/20/2016 08:27:09 AM,03/20/2016 08:35:42 AM,03/20/2016 09:04:09 AM,03/20/2016 09:18:41 AM,Code 2 Transport,03/20/2016 09:44:47 AM,400 Block of BUENA VISTA AV E,San Francisco,94117,B05,21,5136,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.766803517991, -122.440704688165)",160800905-AM06 -160482887,88,16019434,Medical Incident,02/17/2016,02/17/2016,02/17/2016 05:08:04 PM,02/17/2016 05:10:05 PM,02/17/2016 05:10:23 PM,02/17/2016 05:10:33 PM,02/17/2016 05:23:19 PM,02/17/2016 05:42:16 PM,02/17/2016 05:53:34 PM,Code 2 Transport,02/17/2016 06:08:12 PM,0 Block of DAKOTA ST,San Francisco,94107,B10,37,2614,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Potrero Hill,"(37.7535645746594, -122.395635436168)",160482887-88 -112450228,87,11080796,Structure Fire,09/02/2011,09/02/2011,09/02/2011 02:32:27 PM,09/02/2011 02:33:04 PM,09/02/2011 02:33:48 PM,09/02/2011 02:34:16 PM,09/02/2011 02:35:56 PM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/02/2011 02:42:46 PM,1500 Block of BRODERICK ST,SF,94115,B05,10,4235,3,3,3,true,,1,MEDIC,1,5,5,Japantown,"(37.7845624883046, -122.441511182007)",112450228-87 -110520247,T02,11017282,Structure Fire,02/21/2011,02/21/2011,02/21/2011 04:59:01 PM,02/21/2011 04:59:28 PM,02/21/2011 04:59:52 PM,02/21/2011 05:00:47 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,04/25/2016 02:05:58 PM,Other,02/21/2011 05:09:05 PM,1200 Block of CALIFORNIA ST,SF,94109,B01,41,1541,3,3,3,false,,1,TRUCK,7,1,3,Nob Hill,"(37.791365623347, -122.414939768479)",110520247-T02 -140640176,E36,14021634,Medical Incident,03/05/2014,03/05/2014,03/05/2014 01:12:25 PM,03/05/2014 01:15:57 PM,03/05/2014 01:16:07 PM,03/05/2014 01:16:27 PM,03/05/2014 01:20:28 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Code 2 Transport,03/05/2014 01:27:22 PM,700 Block of NATOMA ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",140640176-E36 -121690339,E13,12056261,Medical Incident,06/17/2012,06/17/2012,06/17/2012 10:54:02 PM,06/17/2012 10:54:29 PM,06/17/2012 10:54:57 PM,06/17/2012 10:56:12 PM,06/17/2012 10:57:36 PM,04/25/2016 01:58:09 PM,04/25/2016 01:58:09 PM,Other,06/17/2012 11:16:20 PM,500 Block of BATTERY ST,SF,94111,B01,13,1156,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7963352483576, -122.400515223296)",121690339-E13 -160872066,65,16034597,Medical Incident,03/27/2016,03/27/2016,03/27/2016 02:31:22 PM,03/27/2016 02:32:10 PM,03/27/2016 02:34:35 PM,03/27/2016 02:34:35 PM,03/27/2016 02:38:10 PM,03/27/2016 02:52:43 PM,03/27/2016 03:08:05 PM,Code 2 Transport,03/27/2016 03:28:08 PM,700 Block of GOLDEN GATE AVE,San Francisco,94102,B02,5,326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7806621042491, -122.422897924418)",160872066-65 -130740194,KM04,13024682,Medical Incident,03/15/2013,03/15/2013,03/15/2013 01:24:29 PM,03/15/2013 01:26:03 PM,03/15/2013 01:26:14 PM,03/15/2013 01:28:21 PM,03/15/2013 01:37:33 PM,03/15/2013 01:47:48 PM,03/15/2013 02:08:24 PM,Code 2 Transport,03/15/2013 02:47:08 PM,0 Block of ALHAMBRA ST,SF,94123,B04,16,3565,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.8028621250371, -122.437767918656)",130740194-KM04 -120970344,AM08,12032266,Medical Incident,04/06/2012,04/06/2012,04/06/2012 07:53:22 PM,04/06/2012 07:54:27 PM,04/06/2012 07:54:41 PM,04/06/2012 07:55:43 PM,04/06/2012 08:16:12 PM,04/06/2012 08:19:30 PM,04/06/2012 08:41:51 PM,Code 2 Transport,04/06/2012 09:09:12 PM,400 Block of SAWYER ST,SF,94134,B09,44,6263,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7124692034838, -122.414790344433)",120970344-AM08 -160131062,KM09,16005126,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:41:42 AM,01/13/2016 09:42:24 AM,01/13/2016 09:42:55 AM,01/13/2016 09:43:28 AM,01/13/2016 09:52:11 AM,01/13/2016 10:06:28 AM,01/13/2016 10:23:15 AM,Code 2 Transport,01/13/2016 11:05:10 AM,1900 Block of MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7658582826035, -122.419816092644)",160131062-KM09 -112400047,96,11079088,Medical Incident,08/28/2011,08/27/2011,08/28/2011 02:22:01 AM,08/28/2011 02:22:01 AM,08/28/2011 02:22:01 AM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 02:22:25 AM,1300 Block of SACRAMENTO ST,SF,94109,B01,41,1465,3,3,3,true,,1,MEDIC,4,1,3,Nob Hill,"(37.7921571768233, -122.415310401908)",112400047-96 -112620013,E38,11086328,Medical Incident,09/19/2011,09/18/2011,09/19/2011 01:01:45 AM,09/19/2011 01:02:37 AM,09/19/2011 01:03:07 AM,09/19/2011 01:05:02 AM,09/19/2011 01:06:36 AM,04/25/2016 02:02:36 PM,04/25/2016 02:02:36 PM,Other,09/19/2011 01:23:31 AM,2000 Block of SACRAMENTO ST,SF,94109,B04,38,3326,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.7907164232714, -122.426614088537)",112620013-E38 -131590205,E09,13054041,Structure Fire,06/08/2013,06/08/2013,06/08/2013 01:54:42 PM,06/08/2013 01:54:42 PM,06/08/2013 01:54:49 PM,06/08/2013 01:55:36 PM,06/08/2013 01:57:34 PM,04/25/2016 01:52:23 PM,04/25/2016 01:52:23 PM,Other,06/08/2013 02:06:18 PM,25TH ST/HARRISON ST,SF,94110,B06,7,5533,3,3,3,true,Alarm,1,ENGINE,1,6,9,Mission,"(37.7510338955654, -122.411746226036)",131590205-E09 -130680366,AM18,13022836,Medical Incident,03/09/2013,03/09/2013,03/09/2013 09:00:50 PM,03/09/2013 09:03:37 PM,03/09/2013 09:03:55 PM,03/09/2013 09:04:31 PM,03/09/2013 09:10:02 PM,03/09/2013 09:40:58 PM,03/09/2013 09:46:58 PM,Code 3 Transport,03/09/2013 10:41:28 PM,0 Block of PANORAMA DR,SF,94131,B08,20,5355,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Twin Peaks,"(37.746813546528, -122.45066943199)",130680366-AM18 -160382553,53,16015303,Medical Incident,02/07/2016,02/07/2016,02/07/2016 04:28:54 PM,02/07/2016 04:31:23 PM,02/07/2016 04:33:25 PM,02/07/2016 04:33:32 PM,02/07/2016 04:39:59 PM,02/07/2016 04:58:11 PM,02/07/2016 05:17:02 PM,Code 2 Transport,02/07/2016 05:58:42 PM,1700 Block of OAKDALE AVE,San Francisco,94124,B10,17,6471,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7361501388469, -122.393193484019)",160382553-53 -133530008,B10,13119774,Structure Fire,12/19/2013,12/18/2013,12/19/2013 12:31:28 AM,12/19/2013 12:31:28 AM,12/19/2013 12:32:11 AM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 12:35:02 AM,300 Block of HARBOR RD,SF,94124,B10,25,666,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7337140340786, -122.380588546877)",133530008-B10 -160790246,70,16031266,Medical Incident,03/19/2016,03/18/2016,03/19/2016 01:44:09 AM,03/19/2016 01:45:28 AM,03/19/2016 01:45:51 AM,03/19/2016 01:46:04 AM,03/19/2016 01:51:29 AM,03/19/2016 02:11:02 AM,03/19/2016 02:19:52 AM,Code 3 Transport,03/19/2016 03:05:14 AM,100 Block of JACKSON ST,San Francisco,94111,B01,13,1132,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",160790246-70 -160083968,KM07,16003454,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:42:31 PM,01/08/2016 10:45:30 PM,01/08/2016 10:46:42 PM,01/08/2016 10:47:17 PM,01/08/2016 10:52:48 PM,01/08/2016 11:17:00 PM,01/08/2016 11:24:06 PM,Code 2 Transport,01/08/2016 11:52:24 PM,400 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7857870051354, -122.41254776256)",160083968-KM07 -111970142,B02,11064969,Alarms,07/16/2011,07/16/2011,07/16/2011 11:08:37 AM,07/16/2011 11:09:50 AM,07/16/2011 11:10:06 AM,07/16/2011 11:12:25 AM,07/16/2011 11:13:20 AM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/16/2011 11:18:00 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,false,,1,CHIEF,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",111970142-B02 -160703086,58,16027975,Medical Incident,03/10/2016,03/10/2016,03/10/2016 07:18:35 PM,03/10/2016 07:20:19 PM,03/10/2016 07:21:09 PM,03/10/2016 07:21:49 PM,03/10/2016 07:41:14 PM,03/10/2016 08:15:38 PM,03/10/2016 08:30:45 PM,Code 2 Transport,03/10/2016 09:14:54 PM,900 Block of BUCHANAN ST,San Francisco,94102,B02,5,3425,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7785925129338, -122.428315366472)",160703086-58 -131220174,84,13041007,Medical Incident,05/02/2013,05/02/2013,05/02/2013 10:49:25 AM,05/02/2013 10:51:09 AM,05/02/2013 10:51:36 AM,05/02/2013 10:51:55 AM,05/02/2013 10:56:13 AM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Patient Declined Transport,05/02/2013 11:51:29 AM,2600 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,10,9,Portola,"(37.7282520210187, -122.403780725663)",131220174-84 -121050065,T06,12034670,Structure Fire,04/14/2012,04/13/2012,04/14/2012 04:02:37 AM,04/14/2012 04:05:42 AM,04/14/2012 04:06:03 AM,04/14/2012 04:07:57 AM,04/14/2012 04:09:32 AM,04/25/2016 01:59:11 PM,04/25/2016 01:59:11 PM,Other,04/14/2012 04:11:56 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,false,Fire,1,TRUCK,2,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",121050065-T06 -131590143,RS2,13053985,Structure Fire,06/08/2013,06/08/2013,06/08/2013 10:31:03 AM,06/08/2013 10:36:12 AM,06/08/2013 10:36:21 AM,06/08/2013 10:36:31 AM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,04/25/2016 01:52:24 PM,Other,06/08/2013 10:41:01 AM,0 Block of GAVEN ST,SF,94134,B10,42,6366,3,3,3,false,Alarm,1,RESCUE SQUAD,9,10,9,Portola,"(37.7339114481423, -122.407055482769)",131590143-RS2 -103620311,79,10116226,Medical Incident,12/28/2010,12/28/2010,12/28/2010 08:17:52 PM,12/28/2010 08:19:08 PM,12/28/2010 08:20:42 PM,12/28/2010 08:20:50 PM,12/28/2010 08:32:41 PM,12/28/2010 08:45:18 PM,12/28/2010 09:01:16 PM,Code 2 Transport,12/28/2010 09:25:28 PM,2200 Block of BAY SHORE BLVD,SF,94134,B10,44,6255,2,2,2,true,,1,MEDIC,1,9,10,Visitacion Valley,"(37.7121240018381, -122.40295368671)",103620311-79 -140570362,D2,14019371,Explosion,02/26/2014,02/26/2014,02/26/2014 07:56:58 PM,02/26/2014 07:57:20 PM,02/26/2014 07:59:36 PM,02/26/2014 08:00:03 PM,02/26/2014 08:02:01 PM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Fire,02/26/2014 08:21:58 PM,1500 Block of VALLEJO ST,SF,94109,B04,41,3126,3,3,3,false,Fire,1,CHIEF,1,4,3,Russian Hill,"(37.7968496393721, -122.422792063249)",140570362-D2 -122350183,B04,12077872,Alarms,08/22/2012,08/22/2012,08/22/2012 02:06:38 PM,08/22/2012 02:07:39 PM,08/22/2012 02:07:57 PM,08/22/2012 02:08:48 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Other,08/22/2012 02:12:51 PM,1100 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,false,Alarm,1,CHIEF,3,4,3,Nob Hill,"(37.7891607823839, -122.416183426039)",122350183-B04 -160232566,77,16009233,Medical Incident,01/23/2016,01/23/2016,01/23/2016 05:07:40 PM,01/23/2016 05:09:45 PM,01/23/2016 05:11:10 PM,01/23/2016 05:11:50 PM,01/23/2016 05:15:38 PM,01/23/2016 05:29:31 PM,01/23/2016 05:39:55 PM,Code 2 Transport,01/23/2016 06:09:52 PM,400 Block of PARIS ST,San Francisco,94112,B09,43,6126,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7215760816833, -122.434936472806)",160232566-77 -160170184,87,16006655,Medical Incident,01/17/2016,01/16/2016,01/17/2016 01:23:14 AM,01/17/2016 01:23:49 AM,01/17/2016 01:24:22 AM,01/17/2016 01:24:31 AM,01/17/2016 01:33:37 AM,01/17/2016 01:43:26 AM,01/17/2016 02:10:16 AM,Code 2 Transport,01/17/2016 02:48:19 AM,1200 Block of SUNNYDALE AVE,San Francisco,94134,B09,43,6241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7112938482152, -122.414007130842)",160170184-87 -123640239,92,12121852,Medical Incident,12/29/2012,12/29/2012,12/29/2012 04:29:44 PM,12/29/2012 04:33:02 PM,12/29/2012 04:37:00 PM,12/29/2012 04:37:07 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,04/25/2016 01:55:04 PM,Other,04/25/2016 01:55:04 PM,200 Block of GEARY ST,SF,94102,B01,1,1323,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7874094148628, -122.407397325794)",123640239-92 -121260249,86,12041932,Medical Incident,05/05/2012,05/05/2012,05/05/2012 02:40:05 PM,05/05/2012 02:41:48 PM,05/05/2012 02:42:12 PM,05/05/2012 02:42:27 PM,05/05/2012 02:49:32 PM,05/05/2012 03:21:27 PM,05/05/2012 03:42:36 PM,Code 2 Transport,05/05/2012 04:08:22 PM,500 Block of NAPLES ST,SF,94112,B09,43,6137,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7200487736025, -122.431735873019)",121260249-86 -121230210,88,12040846,Medical Incident,05/02/2012,05/02/2012,05/02/2012 02:49:25 PM,05/02/2012 02:50:08 PM,05/02/2012 02:50:33 PM,05/02/2012 02:54:50 PM,05/02/2012 02:58:31 PM,05/02/2012 03:22:02 PM,05/02/2012 03:38:04 PM,Code 2 Transport,05/02/2012 04:09:13 PM,1700 Block of LARKIN ST,SF,94109,B01,41,1633,3,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7939019224457, -122.419734318747)",121230210-88 -131760186,E38,13059709,Medical Incident,06/25/2013,06/25/2013,06/25/2013 12:46:18 PM,06/25/2013 12:47:01 PM,06/25/2013 12:47:16 PM,06/25/2013 12:48:04 PM,06/25/2013 12:49:01 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,06/25/2013 12:56:37 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,5,Pacific Heights,"(37.7882094593349, -122.431168686403)",131760186-E38 -103080416,E01,10098888,Structure Fire,11/04/2010,11/04/2010,11/04/2010 11:40:13 PM,11/04/2010 11:40:13 PM,11/04/2010 11:40:58 PM,11/04/2010 11:42:53 PM,11/04/2010 11:43:41 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 11:44:07 PM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7820242662358, -122.401159719509)",103080416-E01 -160683633,KM07,16027271,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:13:19 PM,03/08/2016 10:13:29 PM,03/08/2016 10:17:21 PM,03/08/2016 10:17:21 PM,03/08/2016 10:35:59 PM,03/08/2016 10:56:23 PM,03/08/2016 11:18:17 PM,Code 2 Transport,03/08/2016 11:37:49 PM,2300 Block of 24TH AVE,San Francisco,94116,B08,40,7471,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7437447222589, -122.481184434413)",160683633-KM07 -160822889,KM08,16032674,Medical Incident,03/22/2016,03/22/2016,03/22/2016 05:20:18 PM,03/22/2016 05:23:08 PM,03/22/2016 05:24:05 PM,03/22/2016 05:27:19 PM,03/22/2016 05:30:50 PM,03/22/2016 05:43:17 PM,03/22/2016 05:47:52 PM,Code 2 Transport,03/22/2016 05:59:30 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160822889-KM08 -121330164,KM12,12044245,Medical Incident,05/12/2012,05/12/2012,05/12/2012 12:15:47 PM,05/12/2012 12:17:27 PM,05/12/2012 12:17:56 PM,05/12/2012 12:18:35 PM,05/12/2012 12:22:45 PM,04/25/2016 01:58:43 PM,05/12/2012 12:35:40 PM,Code 2 Transport,05/12/2012 12:58:56 PM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",121330164-KM12 -113380224,AM04,11112046,Medical Incident,12/04/2011,12/04/2011,12/04/2011 02:06:43 PM,12/04/2011 02:07:16 PM,12/04/2011 02:07:35 PM,12/04/2011 02:08:25 PM,12/04/2011 02:15:32 PM,12/04/2011 02:23:49 PM,12/04/2011 02:50:17 PM,Code 2 Transport,12/04/2011 03:38:29 PM,300 Block of ANDOVER ST,SF,94110,B06,32,5732,3,3,3,false,,1,PRIVATE,2,6,9,Bernal Heights,"(37.7386851552754, -122.41655547195)",113380224-AM04 -110880159,E36,11029028,Other,03/29/2011,03/29/2011,03/29/2011 11:30:50 AM,03/29/2011 11:30:59 AM,03/29/2011 11:31:36 AM,04/25/2016 02:05:23 PM,03/29/2011 11:31:47 AM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Other,03/29/2011 02:39:34 PM,MCALLISTER ST/POLK ST,SF,94102,B02,3,3113,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",110880159-E36 -140940245,E06,14031646,Structure Fire,04/04/2014,04/04/2014,04/04/2014 03:58:16 PM,04/04/2014 03:58:17 PM,04/04/2014 03:58:26 PM,04/04/2014 03:59:49 PM,04/04/2014 04:01:56 PM,04/25/2016 01:47:24 PM,04/25/2016 01:47:24 PM,Fire,04/04/2014 04:02:12 PM,19TH ST/CASTRO ST,SAN FRANCISCO,94114,B06,6,5437,3,3,3,true,Alarm,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7592891718036, -122.434853683247)",140940245-E06 -133080384,E39,13104890,Structure Fire,11/04/2013,11/04/2013,11/04/2013 09:28:29 PM,11/04/2013 09:28:48 PM,11/04/2013 09:29:24 PM,11/04/2013 09:31:17 PM,11/04/2013 09:33:13 PM,04/25/2016 01:49:55 PM,04/25/2016 01:49:55 PM,Other,11/04/2013 09:58:11 PM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,3,3,3,true,Alarm,1,ENGINE,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",133080384-E39 -160603836,76,16024131,Medical Incident,02/29/2016,02/29/2016,02/29/2016 11:34:48 PM,02/29/2016 11:34:48 PM,02/29/2016 11:38:02 PM,02/29/2016 11:38:23 PM,02/29/2016 11:45:36 PM,02/29/2016 11:56:58 PM,03/01/2016 12:06:27 AM,Code 2 Transport,03/01/2016 12:49:40 AM,24TH ST/POTRERO AV,San Francisco,94110,B10,9,2562,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Mission,"(37.7530040313925, -122.406336240587)",160603836-76 -123340014,E06,12110826,Structure Fire,11/29/2012,11/28/2012,11/29/2012 12:49:27 AM,11/29/2012 12:49:28 AM,11/29/2012 12:49:33 AM,11/29/2012 12:50:12 AM,11/29/2012 12:52:39 AM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/29/2012 12:52:44 AM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Alarm,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",123340014-E06 -103010023,AP,10095980,Other,10/28/2010,10/27/2010,10/28/2010 01:30:38 AM,10/28/2010 01:30:38 AM,10/28/2010 01:30:38 AM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,04/25/2016 02:07:53 PM,Fire,10/28/2010 01:31:24 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",103010023-AP -160401776,85,16016026,Medical Incident,02/09/2016,02/09/2016,02/09/2016 12:53:20 PM,02/09/2016 12:53:56 PM,02/09/2016 12:54:43 PM,02/09/2016 12:54:54 PM,02/09/2016 12:57:58 PM,02/09/2016 01:11:48 PM,02/09/2016 01:18:42 PM,Code 2 Transport,02/09/2016 01:56:02 PM,VALENCIA ST/MCCOPPIN ST,San Francisco,94103,B02,36,5115,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.771595101522, -122.422526345115)",160401776-85 -110490365,89,11016333,Medical Incident,02/18/2011,02/18/2011,02/18/2011 08:03:26 PM,02/18/2011 08:04:56 PM,02/18/2011 08:05:04 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,04/25/2016 02:06:01 PM,Other,04/25/2016 02:06:01 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7807144867659, -122.408483722327)",110490365-89 -113190259,B03,11105998,Alarms,11/15/2011,11/15/2011,11/15/2011 03:01:19 PM,11/15/2011 03:02:56 PM,11/15/2011 03:03:37 PM,11/15/2011 03:04:52 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 03:07:45 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",113190259-B03 -160782675,64,16031083,Medical Incident,03/18/2016,03/18/2016,03/18/2016 04:45:14 PM,03/18/2016 04:45:57 PM,03/18/2016 04:47:52 PM,03/18/2016 04:47:52 PM,03/18/2016 04:49:01 PM,03/18/2016 05:00:40 PM,03/18/2016 05:23:28 PM,Code 2 Transport,03/18/2016 05:38:27 PM,800 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Western Addition,"(37.7828439870217, -122.421651290681)",160782675-64 -131730252,KM12,13058765,Medical Incident,06/22/2013,06/22/2013,06/22/2013 04:46:06 PM,06/22/2013 04:46:59 PM,06/22/2013 04:47:27 PM,06/22/2013 04:48:16 PM,06/22/2013 04:51:14 PM,06/22/2013 05:11:56 PM,06/22/2013 05:22:23 PM,Code 2 Transport,06/22/2013 05:44:31 PM,1000 Block of VAN NESS AVE,SF,94109,B04,3,3162,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7854421872655, -122.421483131371)",131730252-KM12 -121910023,85,12063457,Medical Incident,07/09/2012,07/08/2012,07/09/2012 02:41:33 AM,07/09/2012 02:43:07 AM,07/09/2012 02:43:43 AM,07/09/2012 02:44:25 AM,07/09/2012 02:55:55 AM,07/09/2012 03:14:05 AM,07/09/2012 03:22:31 AM,Code 2 Transport,07/09/2012 03:44:50 AM,1000 Block of HOWARD ST,SF,94103,B03,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.779489776176, -122.407376438306)",121910023-85 -133170349,E34,13107875,Medical Incident,11/13/2013,11/13/2013,11/13/2013 08:22:04 PM,11/13/2013 08:22:37 PM,11/13/2013 08:23:06 PM,11/13/2013 08:23:49 PM,11/13/2013 08:25:52 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,Other,11/13/2013 08:30:23 PM,700 Block of 43RD AVE,SF,94121,B07,34,7271,3,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7744910684756, -122.50360753222)",133170349-E34 -123240367,E03,12107886,Medical Incident,11/19/2012,11/19/2012,11/19/2012 08:34:07 PM,11/19/2012 08:36:24 PM,11/19/2012 08:37:00 PM,11/19/2012 08:38:09 PM,11/19/2012 08:40:29 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/19/2012 08:45:54 PM,GOLDEN GATE AV/LEAVENWORTH ST,SF,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818633389979, -122.413865603018)",123240367-E03 -131230322,E08,13041557,Medical Incident,05/03/2013,05/03/2013,05/03/2013 04:23:20 PM,05/03/2013 04:23:46 PM,05/03/2013 04:25:21 PM,04/25/2016 01:52:59 PM,05/03/2013 04:25:40 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 04:33:06 PM,900 Block of BRYANT ST,SF,94103,B03,8,2311,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7729736182707, -122.406500466067)",131230322-E08 -103310277,E05,10106045,Medical Incident,11/27/2010,11/27/2010,11/27/2010 07:31:46 PM,11/27/2010 07:34:21 PM,11/27/2010 07:35:07 PM,11/27/2010 07:36:00 PM,11/27/2010 07:38:18 PM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 07:53:45 PM,800 Block of TURK ST,SF,94102,B02,36,3216,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.781585403105, -122.423090188841)",103310277-E05 -110170006,RC1,11005503,Traffic Collision,01/17/2011,01/16/2011,01/17/2011 12:57:46 AM,01/17/2011 12:57:47 AM,01/17/2011 12:58:04 AM,04/25/2016 02:06:33 PM,01/17/2011 01:03:10 AM,04/25/2016 02:06:33 PM,04/25/2016 02:06:33 PM,Other,01/17/2011 01:12:24 AM,HOWARD ST/4TH ST,SF,94103,B03,1,2214,3,3,3,true,,1,RESCUE CAPTAIN,3,3,6,Financial District/South Beach,"(37.7832592362718, -122.402708153946)",110170006-RC1 -160440267,61,16017548,Medical Incident,02/13/2016,02/12/2016,02/13/2016 01:48:30 AM,02/13/2016 01:48:30 AM,02/13/2016 01:50:10 AM,02/13/2016 01:50:32 AM,02/13/2016 02:03:08 AM,02/13/2016 02:16:21 AM,02/13/2016 02:29:34 AM,Code 2 Transport,02/13/2016 03:17:53 AM,2600 Block of SLOAT BLVD,San Francisco,94116,B08,18,7642,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7356121761396, -122.50259029658)",160440267-61 -131110137,E11,13037359,Medical Incident,04/21/2013,04/21/2013,04/21/2013 12:14:03 PM,04/21/2013 12:14:27 PM,04/21/2013 12:14:48 PM,04/21/2013 12:15:52 PM,04/21/2013 12:17:54 PM,04/25/2016 01:53:12 PM,04/25/2016 01:53:12 PM,Other,04/21/2013 12:40:40 PM,900 Block of SANCHEZ ST,SF,94114,B06,11,5514,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7535618485533, -122.429777129809)",131110137-E11 -123470010,54,12115872,Medical Incident,12/12/2012,12/11/2012,12/12/2012 12:45:19 AM,12/12/2012 12:45:58 AM,12/12/2012 12:46:17 AM,12/12/2012 12:46:45 AM,12/12/2012 12:55:24 AM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Patient Declined Transport,12/12/2012 01:08:44 AM,2600 Block of CLEMENT ST,SF,94121,B07,14,7221,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7819538722816, -122.487556413238)",123470010-54 -121140197,E42,12037847,Medical Incident,04/23/2012,04/23/2012,04/23/2012 01:50:03 PM,04/23/2012 01:51:03 PM,04/23/2012 01:51:38 PM,04/23/2012 01:53:03 PM,04/23/2012 01:55:00 PM,04/25/2016 01:59:02 PM,04/25/2016 01:59:02 PM,Other,04/23/2012 02:09:01 PM,400 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7394012528109, -122.406844256277)",121140197-E42 -121950233,87,12064949,Traffic Collision,07/13/2012,07/13/2012,07/13/2012 04:40:30 PM,07/13/2012 04:43:53 PM,07/13/2012 04:44:19 PM,07/13/2012 04:45:32 PM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/13/2012 04:52:55 PM,SAN BRUNO AV/HALE ST,SF,94134,B10,42,6362,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,9,Portola,"(37.7329632503873, -122.405909421399)",121950233-87 -132160083,88,13072905,Medical Incident,08/04/2013,08/04/2013,08/04/2013 08:14:45 AM,08/04/2013 08:15:06 AM,08/04/2013 08:16:55 AM,08/04/2013 08:18:26 AM,08/04/2013 08:24:59 AM,08/04/2013 08:48:18 AM,08/04/2013 09:13:00 AM,Code 2 Transport,08/04/2013 09:32:40 AM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",132160083-88 -132480317,E32,13083795,Other,09/05/2013,09/05/2013,09/05/2013 06:01:14 PM,09/05/2013 06:01:39 PM,09/05/2013 06:03:34 PM,09/05/2013 06:05:02 PM,09/05/2013 06:05:18 PM,04/25/2016 01:50:56 PM,04/25/2016 01:50:56 PM,Fire,09/05/2013 06:14:30 PM,100 Block of HIGHLAND AVE,SF,94110,B06,32,5646,3,3,3,true,Alarm,1,ENGINE,1,6,9,Bernal Heights,"(37.7372540256563, -122.422102908674)",132480317-E32 -160660762,AM02,16026313,Medical Incident,03/06/2016,03/06/2016,03/06/2016 08:22:28 AM,03/06/2016 08:22:28 AM,03/06/2016 08:23:14 AM,03/06/2016 08:24:14 AM,03/06/2016 09:17:42 AM,03/06/2016 09:18:09 AM,03/06/2016 09:30:08 AM,Code 2 Transport,03/06/2016 10:12:37 AM,6TH ST/STEVENSON ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,South of Market,"(37.7817543267261, -122.409693263148)",160660762-AM02 -103520034,E19,10112842,Medical Incident,12/18/2010,12/17/2010,12/18/2010 02:36:29 AM,12/18/2010 02:37:12 AM,12/18/2010 02:37:49 AM,12/18/2010 02:39:36 AM,12/18/2010 02:52:16 AM,04/25/2016 02:07:03 PM,04/25/2016 02:07:03 PM,Other,12/18/2010 02:59:37 AM,500 Block of ARBALLO DR,SF,94132,B08,19,8583,3,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7169177956994, -122.483309155838)",103520034-E19 -111570275,AM08,11051981,Medical Incident,06/06/2011,06/06/2011,06/06/2011 04:39:02 PM,06/06/2011 04:39:33 PM,06/06/2011 04:39:45 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/06/2011 04:40:06 PM,600 Block of POST ST,SF,94102,B01,3,1451,E,E,3,false,,1,PRIVATE,4,1,3,Tenderloin,"(37.7877770164282, -122.41201048788)",111570275-AM08 -160803026,64,16031923,Medical Incident,03/20/2016,03/20/2016,03/20/2016 07:12:16 PM,03/20/2016 07:13:16 PM,03/20/2016 07:13:36 PM,03/20/2016 07:13:54 PM,03/20/2016 07:18:27 PM,03/20/2016 07:48:56 PM,03/20/2016 07:59:28 PM,Code 3 Transport,03/20/2016 09:19:35 PM,700 Block of MCALLISTER ST,San Francisco,94102,B02,5,3316,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7794115468887, -122.425174050161)",160803026-64 -121010297,78,12033579,Medical Incident,04/10/2012,04/10/2012,04/10/2012 06:17:51 PM,04/10/2012 06:19:42 PM,04/10/2012 06:19:54 PM,04/10/2012 06:26:01 PM,04/10/2012 06:26:03 PM,04/10/2012 06:39:15 PM,04/10/2012 06:50:37 PM,Code 2 Transport,04/10/2012 07:19:46 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7839429146271, -122.41295236246)",121010297-78 -130270260,T15,13009366,Structure Fire,01/27/2013,01/27/2013,01/27/2013 04:44:59 PM,01/27/2013 04:46:45 PM,01/27/2013 04:46:54 PM,01/27/2013 04:47:04 PM,01/27/2013 04:49:47 PM,04/25/2016 01:54:35 PM,04/25/2016 01:54:35 PM,Other,01/27/2013 06:48:33 PM,800 Block of BRAZIL AVE,SF,94112,B09,43,6163,3,3,3,false,Fire,1,TRUCK,1,9,11,Excelsior,"(37.7213991058059, -122.428074087707)",130270260-T15 -120110015,E07,12003676,Outside Fire,01/11/2012,01/10/2012,01/11/2012 02:03:44 AM,01/11/2012 02:04:53 AM,01/11/2012 02:05:01 AM,01/11/2012 02:07:00 AM,01/11/2012 02:08:58 AM,04/25/2016 02:00:41 PM,04/25/2016 02:00:41 PM,Other,01/11/2012 02:10:53 AM,3300 Block of 18TH ST,SF,94110,B02,7,5423,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7618139428638, -122.418810045905)",120110015-E07 -130330005,E41,13011126,Traffic Collision,02/02/2013,02/01/2013,02/02/2013 12:20:54 AM,02/02/2013 12:21:13 AM,02/02/2013 12:21:27 AM,02/02/2013 12:22:29 AM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,04/25/2016 01:54:30 PM,Other,02/02/2013 12:23:08 AM,LEAVENWORTH ST/ELLIS ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",130330005-E41 -120210377,AM18,12007291,Medical Incident,01/21/2012,01/21/2012,01/21/2012 08:40:16 PM,01/21/2012 08:40:51 PM,01/21/2012 08:41:18 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/21/2012 08:42:14 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",120210377-AM18 -160621231,85,16024644,Traffic Collision,03/02/2016,03/02/2016,03/02/2016 10:32:44 AM,03/02/2016 10:32:44 AM,03/02/2016 10:33:19 AM,03/02/2016 10:33:27 AM,03/02/2016 10:42:36 AM,03/02/2016 10:57:20 AM,03/02/2016 11:21:27 AM,Code 2 Transport,03/02/2016 11:57:48 AM,600 Block of 7TH AVE,San Francisco,94118,B07,31,7132,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7762499153191, -122.465079518655)",160621231-85 -112060040,E36,11067956,Medical Incident,07/25/2011,07/24/2011,07/25/2011 04:29:27 AM,07/25/2011 04:31:27 AM,07/25/2011 04:32:03 AM,07/25/2011 04:34:01 AM,07/25/2011 04:36:09 AM,04/25/2016 02:03:30 PM,04/25/2016 02:03:30 PM,Other,07/25/2011 04:41:09 AM,0 Block of DORE ST,SF,94103,B02,36,2342,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7738617771611, -122.413045971966)",112060040-E36 -160700240,KM03,16027711,Medical Incident,03/10/2016,03/09/2016,03/10/2016 02:39:10 AM,03/10/2016 02:43:16 AM,03/10/2016 02:45:10 AM,03/10/2016 02:47:13 AM,03/10/2016 02:51:08 AM,03/10/2016 03:15:30 AM,03/10/2016 03:23:53 AM,Fire,03/10/2016 04:13:32 AM,400 Block of STANYAN ST,San Francisco,94117,B07,21,4556,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,1,Lone Mountain/USF,"(37.7738357034539, -122.454406709474)",160700240-KM03 -160770387,64,16030441,Medical Incident,03/17/2016,03/16/2016,03/17/2016 04:32:41 AM,03/17/2016 04:34:22 AM,03/17/2016 04:34:40 AM,03/17/2016 04:35:15 AM,03/17/2016 04:42:54 AM,03/17/2016 04:51:23 AM,03/17/2016 04:57:23 AM,Code 2 Transport,03/17/2016 05:29:13 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160770387-64 -121610130,E12,12053258,Structure Fire,06/09/2012,06/09/2012,06/09/2012 10:33:07 AM,06/09/2012 10:33:59 AM,06/09/2012 10:34:13 AM,04/25/2016 01:58:18 PM,06/09/2012 10:38:55 AM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,06/09/2012 12:18:10 PM,700 Block of 2ND AVE,SF,94118,B07,31,7121,3,3,3,true,Fire,1,ENGINE,7,7,1,Inner Richmond,"(37.7748698807934, -122.459468224351)",121610130-E12 -103210064,93,10102804,Medical Incident,11/17/2010,11/16/2010,11/17/2010 06:43:57 AM,11/17/2010 06:44:31 AM,11/17/2010 06:44:45 AM,11/17/2010 06:45:16 AM,04/25/2016 02:07:33 PM,04/25/2016 02:07:33 PM,04/25/2016 02:07:33 PM,Other,11/17/2010 06:45:30 AM,300 Block of BATTERY ST,SF,94111,B01,13,1161,3,3,3,true,,1,MEDIC,3,1,3,Chinatown,"(37.7947853577882, -122.400352669798)",103210064-93 -112000310,81,11066057,Structure Fire,07/19/2011,07/19/2011,07/19/2011 07:35:02 PM,07/19/2011 07:35:02 PM,07/19/2011 07:36:19 PM,07/19/2011 07:41:34 PM,07/19/2011 07:53:57 PM,07/19/2011 08:07:58 PM,07/19/2011 08:33:31 PM,Code 2 Transport,07/19/2011 09:01:24 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7762305177878, -122.414711004673)",112000310-81 -160382154,KM05,16015256,Medical Incident,02/07/2016,02/07/2016,02/07/2016 02:32:22 PM,02/07/2016 02:33:29 PM,02/07/2016 02:34:20 PM,02/07/2016 02:34:47 PM,02/07/2016 02:47:32 PM,02/07/2016 03:17:26 PM,02/07/2016 03:34:21 PM,Code 2 Transport,02/07/2016 04:07:44 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160382154-KM05 -132430159,E43,13081967,Medical Incident,08/31/2013,08/31/2013,08/31/2013 10:44:37 AM,08/31/2013 10:46:22 AM,08/31/2013 10:51:10 AM,08/31/2013 10:53:51 AM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/31/2013 10:59:01 AM,0 Block of COTTER ST,SF,94112,B09,15,8264,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Outer Mission,"(37.7277213848716, -122.433906686698)",132430159-E43 -110870250,KM04,11028772,Medical Incident,03/28/2011,03/28/2011,03/28/2011 03:17:57 PM,03/28/2011 03:18:13 PM,03/28/2011 03:18:41 PM,03/28/2011 03:19:14 PM,03/28/2011 03:21:47 PM,03/28/2011 03:30:01 PM,03/28/2011 03:34:40 PM,Code 2 Transport,03/28/2011 03:51:19 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110870250-KM04 -103110070,E07,10099634,Outside Fire,11/07/2010,11/06/2010,11/07/2010 02:02:35 AM,11/07/2010 02:03:31 AM,11/07/2010 02:03:41 AM,11/07/2010 02:05:09 AM,11/07/2010 02:07:24 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 02:14:30 AM,SOUTH VAN NESS AV/24TH ST,SF,94110,B06,7,5511,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7523727894276, -122.416265511485)",103110070-E07 -132590137,B02,13087576,Structure Fire,09/16/2013,09/16/2013,09/16/2013 10:56:27 AM,09/16/2013 10:56:27 AM,09/16/2013 10:57:34 AM,09/16/2013 10:57:44 AM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Fire,09/16/2013 11:02:48 AM,1100 Block of MARKET ST,SF,94102,B02,36,1552,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",132590137-B02 -160903347,82,16035852,Medical Incident,03/30/2016,03/30/2016,03/30/2016 07:03:36 PM,03/30/2016 07:05:49 PM,03/30/2016 07:05:58 PM,03/30/2016 07:06:26 PM,03/30/2016 07:17:14 PM,03/30/2016 07:26:31 PM,03/30/2016 07:50:05 PM,Code 2 Transport,03/30/2016 08:36:19 PM,1700 Block of EDDY ST,San Francisco,94115,B05,5,4133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7808513149724, -122.436427287945)",160903347-82 -133310106,87,13112305,Medical Incident,11/27/2013,11/27/2013,11/27/2013 09:50:22 AM,11/27/2013 09:51:37 AM,11/27/2013 09:52:08 AM,11/27/2013 09:52:14 AM,11/27/2013 09:55:33 AM,11/27/2013 10:06:32 AM,11/27/2013 10:12:06 AM,Code 2 Transport,11/27/2013 10:47:05 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",133310106-87 -160581008,75,16023056,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:07:10 AM,02/27/2016 09:07:10 AM,02/27/2016 09:08:24 AM,02/27/2016 09:08:48 AM,02/27/2016 09:13:38 AM,02/27/2016 09:25:49 AM,02/27/2016 09:28:58 AM,Code 2 Transport,02/27/2016 10:21:47 AM,POLK ST/POST ST,San Francisco,94109,B02,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,3,Tenderloin,"(37.7868275258658, -122.419927949174)",160581008-75 -110840227,E23,11027706,Alarms,03/25/2011,03/25/2011,03/25/2011 02:00:49 PM,03/25/2011 02:02:59 PM,03/25/2011 02:03:21 PM,03/25/2011 02:04:15 PM,03/25/2011 02:07:24 PM,04/25/2016 02:05:27 PM,04/25/2016 02:05:27 PM,Other,03/25/2011 02:28:00 PM,2200 Block of 48TH AVE,SF,94116,B08,23,7727,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7444820263748, -122.506894604858)",110840227-E23 -131210359,E01,13040805,Medical Incident,05/01/2013,05/01/2013,05/01/2013 08:15:55 PM,05/01/2013 08:16:15 PM,05/01/2013 08:17:31 PM,05/01/2013 08:18:56 PM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,04/25/2016 01:53:01 PM,Other,05/01/2013 08:20:36 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",131210359-E01 -160110242,71,16004242,Medical Incident,01/11/2016,01/10/2016,01/11/2016 02:43:54 AM,01/11/2016 02:45:22 AM,01/11/2016 02:45:57 AM,01/11/2016 02:46:11 AM,01/11/2016 02:50:11 AM,01/11/2016 03:04:26 AM,01/11/2016 03:26:43 AM,Code 2 Transport,01/11/2016 03:53:32 AM,200 Block of KEARNY ST,San Francisco,94108,B01,13,1242,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7905318058153, -122.403914220835)",160110242-71 -123390004,T11,12112918,Structure Fire,12/04/2012,12/03/2012,12/04/2012 12:16:07 AM,12/04/2012 12:16:08 AM,12/04/2012 12:16:19 AM,12/04/2012 12:17:44 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 12:22:19 AM,24TH ST/MISSION ST,SF,94110,B06,11,5525,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7522394549791, -122.418445272851)",123390004-T11 -111460252,E36,11048540,Medical Incident,05/26/2011,05/26/2011,05/26/2011 05:24:49 PM,05/26/2011 05:25:47 PM,05/26/2011 05:26:54 PM,05/26/2011 05:29:01 PM,05/26/2011 05:29:37 PM,04/25/2016 02:04:26 PM,04/25/2016 02:04:26 PM,Other,05/26/2011 05:44:39 PM,1200 Block of MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7780365108208, -122.415429100912)",111460252-E36 -132750182,KM01,13093414,Medical Incident,10/02/2013,10/02/2013,10/02/2013 12:28:52 PM,10/02/2013 12:30:20 PM,10/02/2013 12:31:25 PM,10/02/2013 12:34:03 PM,10/02/2013 12:47:30 PM,04/25/2016 01:50:28 PM,04/25/2016 01:50:28 PM,No Merit,10/02/2013 01:14:04 PM,0 Block of DORE ST,SF,94103,B02,36,2342,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",132750182-KM01 -122720121,AM12,12089693,Medical Incident,09/28/2012,09/28/2012,09/28/2012 11:05:08 AM,09/28/2012 11:06:53 AM,09/28/2012 11:07:06 AM,09/28/2012 11:07:34 AM,09/28/2012 11:14:58 AM,09/28/2012 11:44:06 AM,09/28/2012 12:02:55 PM,Code 2 Transport,09/28/2012 12:32:55 PM,RANKIN ST/PALOU AV,SF,94124,B10,42,6431,1,1,2,false,Non Life-threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7382147337371, -122.398378464786)",122720121-AM12 -112260339,81,11074810,Medical Incident,08/14/2011,08/14/2011,08/14/2011 09:07:12 PM,08/14/2011 09:09:52 PM,08/14/2011 09:09:58 PM,04/25/2016 02:03:10 PM,08/14/2011 09:17:33 PM,08/14/2011 09:31:22 PM,08/14/2011 09:39:06 PM,Code 3 Transport,08/14/2011 10:11:13 PM,600 Block of SPRUCE ST,SF,94118,B05,10,4374,3,3,3,true,,1,MEDIC,2,5,2,Presidio Heights,"(37.782894976739, -122.453342258883)",112260339-81 -120780274,E17,12025948,Medical Incident,03/18/2012,03/18/2012,03/18/2012 03:39:32 PM,03/18/2012 03:40:45 PM,03/18/2012 03:41:23 PM,03/18/2012 03:42:31 PM,03/18/2012 03:45:18 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/18/2012 03:57:02 PM,0 Block of LATONA ST,SF,94124,B10,17,6514,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7316182572491, -122.392627218053)",120780274-E17 -131350029,88,13045440,Medical Incident,05/15/2013,05/14/2013,05/15/2013 05:37:44 AM,05/15/2013 05:39:23 AM,05/15/2013 05:39:37 AM,05/15/2013 05:39:49 AM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,04/25/2016 01:52:48 PM,Other,05/15/2013 05:43:02 AM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",131350029-88 -113620296,E07,11120352,Alarms,12/28/2011,12/28/2011,12/28/2011 06:05:17 PM,12/28/2011 06:07:40 PM,12/28/2011 06:08:02 PM,12/28/2011 06:09:19 PM,12/28/2011 06:11:38 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 06:28:35 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7642444942899, -122.419521866555)",113620296-E07 -140190353,E43,14006685,Medical Incident,01/19/2014,01/19/2014,01/19/2014 09:59:59 PM,01/19/2014 10:01:07 PM,01/19/2014 10:01:44 PM,01/19/2014 10:02:49 PM,01/19/2014 10:04:27 PM,04/25/2016 01:48:38 PM,04/25/2016 01:48:38 PM,Other,01/19/2014 10:15:00 PM,300 Block of BRAZIL AVE,SF,94112,B09,43,6127,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7233114402099, -122.432068293948)",140190353-E43 -160323285,78,16012737,Medical Incident,02/01/2016,02/01/2016,02/01/2016 08:10:58 PM,02/01/2016 08:10:58 PM,02/01/2016 08:10:58 PM,02/01/2016 08:10:58 PM,02/01/2016 08:10:58 PM,02/01/2016 08:20:31 PM,02/01/2016 08:29:13 PM,Code 2 Transport,02/01/2016 09:14:26 PM,1100 Block of MISSION ST,San Francisco,94103,B99,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160323285-78 -122610099,E01,12086165,Medical Incident,09/17/2012,09/17/2012,09/17/2012 09:42:11 AM,09/17/2012 09:42:44 AM,09/17/2012 09:43:43 AM,04/25/2016 01:56:44 PM,09/17/2012 09:46:28 AM,04/25/2016 01:56:44 PM,04/25/2016 01:56:44 PM,Fire,09/17/2012 10:02:32 AM,GOLDEN GATE AV/TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",122610099-E01 -160160560,52,16006302,Medical Incident,01/16/2016,01/15/2016,01/16/2016 04:40:37 AM,01/16/2016 04:43:14 AM,01/16/2016 04:43:40 AM,01/16/2016 04:44:01 AM,01/16/2016 05:09:30 AM,01/16/2016 05:18:38 AM,01/16/2016 05:32:39 AM,Code 2 Transport,01/16/2016 06:02:15 AM,200 Block of DOLORES ST,San Francisco,94114,B02,6,5227,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.765206751081, -122.426591616921)",160160560-52 -130460386,E21,13015774,Structure Fire,02/15/2013,02/15/2013,02/15/2013 07:17:49 PM,02/15/2013 07:18:44 PM,02/15/2013 07:18:59 PM,02/15/2013 07:19:46 PM,02/15/2013 07:22:42 PM,04/25/2016 01:54:16 PM,04/25/2016 01:54:16 PM,Other,02/15/2013 07:37:49 PM,0 Block of LUPINE AVE,SF,94118,B05,10,4371,3,3,3,false,Alarm,1,ENGINE,3,5,2,Presidio Heights,"(37.784200403274, -122.449430414233)",130460386-E21 -121920309,E29,12064030,Medical Incident,07/10/2012,07/10/2012,07/10/2012 07:27:30 PM,07/10/2012 07:38:33 PM,07/10/2012 07:38:48 PM,07/10/2012 07:39:33 PM,07/10/2012 07:40:39 PM,04/25/2016 01:57:47 PM,04/25/2016 01:57:47 PM,Other,07/10/2012 07:43:28 PM,400 Block of SAN BRUNO AVE,SF,94110,B02,29,2421,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,10,Potrero Hill,"(37.7639386424608, -122.405469974111)",121920309-E29 -112480175,72,11081781,Medical Incident,09/05/2011,09/05/2011,09/05/2011 12:20:23 PM,09/05/2011 12:21:16 PM,09/05/2011 12:21:37 PM,09/05/2011 12:21:41 PM,09/05/2011 12:23:23 PM,09/05/2011 12:36:17 PM,09/05/2011 12:44:48 PM,Code 2 Transport,09/05/2011 12:57:47 PM,600 Block of DUBOCE AVE,SF,94117,B05,6,5131,2,2,2,true,,1,MEDIC,1,5,8,Haight Ashbury,"(37.7692009093314, -122.434236954469)",112480175-72 -110170211,E01,11005687,Medical Incident,01/17/2011,01/17/2011,01/17/2011 04:50:36 PM,01/17/2011 04:50:58 PM,01/17/2011 04:51:34 PM,01/17/2011 04:52:53 PM,01/17/2011 04:55:26 PM,04/25/2016 02:06:33 PM,04/25/2016 02:06:33 PM,No Merit,01/17/2011 04:57:29 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",110170211-E01 -110880242,E51,11029093,Fuel Spill,03/29/2011,03/29/2011,03/29/2011 03:23:38 PM,03/29/2011 03:29:03 PM,03/29/2011 03:29:27 PM,03/29/2011 03:30:58 PM,03/29/2011 03:32:49 PM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Fire,03/29/2011 03:40:11 PM,1000 Block of TORNEY AVE,PR,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8000535374807, -122.452241149)",110880242-E51 -131020343,E21,13034418,Structure Fire,04/12/2013,04/12/2013,04/12/2013 10:22:14 PM,04/12/2013 10:24:02 PM,04/12/2013 10:24:18 PM,04/12/2013 10:26:01 PM,04/12/2013 10:28:05 PM,04/25/2016 01:53:20 PM,04/25/2016 01:53:20 PM,Other,04/12/2013 10:30:24 PM,0 Block of HENRY ST,SF,94114,B05,6,5212,3,3,3,true,Alarm,1,ENGINE,2,5,8,Castro/Upper Market,"(37.7667838886869, -122.432228457227)",131020343-E21 -132200069,AM24,13074222,Medical Incident,08/08/2013,08/07/2013,08/08/2013 07:29:57 AM,08/08/2013 07:30:49 AM,08/08/2013 07:32:16 AM,08/08/2013 07:34:46 AM,08/08/2013 07:35:52 AM,08/08/2013 07:52:07 AM,08/08/2013 08:01:00 AM,Code 2 Transport,08/08/2013 08:34:32 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",132200069-AM24 -103390115,E19,10108470,Medical Incident,12/05/2010,12/05/2010,12/05/2010 09:18:47 AM,12/05/2010 09:20:42 AM,12/05/2010 09:21:01 AM,12/05/2010 09:21:22 AM,12/05/2010 09:22:45 AM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Other,12/05/2010 09:31:00 AM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,2,2,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",103390115-E19 -133190354,75,13108528,Medical Incident,11/15/2013,11/15/2013,11/15/2013 09:04:19 PM,11/15/2013 09:05:02 PM,11/15/2013 09:05:34 PM,11/15/2013 09:06:13 PM,11/15/2013 09:09:08 PM,11/15/2013 09:19:54 PM,11/15/2013 09:29:54 PM,Code 2 Transport,11/15/2013 09:52:58 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",133190354-75 -160490589,77,16019633,Medical Incident,02/18/2016,02/17/2016,02/18/2016 07:47:34 AM,02/18/2016 07:48:05 AM,02/18/2016 07:49:11 AM,02/18/2016 07:49:30 AM,02/18/2016 08:08:24 AM,02/18/2016 08:35:09 AM,02/18/2016 08:53:50 AM,Code 2 Transport,02/18/2016 09:21:11 AM,5500 Block of 3RD ST,San Francisco,94124,B10,17,6537,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7273180308836, -122.393270734468)",160490589-77 -132610372,87,13088531,Traffic Collision,09/18/2013,09/18/2013,09/18/2013 07:40:18 PM,09/18/2013 07:42:18 PM,09/18/2013 07:42:34 PM,09/18/2013 07:42:56 PM,09/18/2013 07:47:00 PM,09/18/2013 08:19:24 PM,09/18/2013 08:31:55 PM,Code 2 Transport,09/18/2013 09:07:24 PM,WEST PORTAL AV/VICENTE ST,SF,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7397235005071, -122.466991014067)",132610372-87 -160632172,KM01,16025112,Medical Incident,03/03/2016,03/03/2016,03/03/2016 02:49:28 PM,03/03/2016 02:51:13 PM,03/03/2016 02:52:40 PM,03/03/2016 03:05:15 PM,03/03/2016 03:05:15 PM,03/03/2016 03:21:51 PM,03/03/2016 03:50:32 PM,Code 2 Transport,03/03/2016 04:28:29 PM,200 Block of 30TH ST,San Francisco,94131,B06,11,5574,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,8,Glen Park,"(37.742133681941, -122.425018174758)",160632172-KM01 -140840292,E06,14028406,Medical Incident,03/25/2014,03/25/2014,03/25/2014 07:04:17 PM,03/25/2014 07:04:43 PM,03/25/2014 07:09:00 PM,03/25/2014 07:10:15 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Code 2 Transport,03/25/2014 07:13:18 PM,MISSION ST/18TH ST,SAN FRANCISCO,94110,B02,7,5423,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,6,9,Mission,"(37.7618358554116, -122.41935926846)",140840292-E06 -140590339,82,14020029,Medical Incident,02/28/2014,02/28/2014,02/28/2014 07:37:50 PM,02/28/2014 07:39:32 PM,02/28/2014 07:39:56 PM,02/28/2014 07:40:03 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,04/25/2016 01:47:58 PM,Code 2 Transport,04/25/2016 01:47:58 PM,200 Block of FRONT ST,SF,94111,B01,13,1141,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7940552772543, -122.398993666371)",140590339-82 -123610212,B09,12120827,Structure Fire,12/26/2012,12/26/2012,12/26/2012 01:50:33 PM,12/26/2012 01:50:56 PM,12/26/2012 01:51:13 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Other,12/26/2012 01:53:12 PM,1400 Block of THOMAS AVE,SF,94124,B10,17,6547,3,3,3,false,Alarm,1,CHIEF,11,10,10,Bayview Hunters Point,"(37.7287791192352, -122.388524913867)",123610212-B09 -103420109,KM05,10109412,Medical Incident,12/08/2010,12/08/2010,12/08/2010 08:33:01 AM,12/08/2010 08:33:46 AM,12/08/2010 08:34:01 AM,12/08/2010 08:34:36 AM,12/08/2010 08:38:03 AM,12/08/2010 08:47:54 AM,12/08/2010 09:06:43 AM,Code 2 Transport,12/08/2010 09:39:14 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,,1,PRIVATE,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",103420109-KM05 -102380226,55,10075102,Medical Incident,08/26/2010,08/26/2010,08/26/2010 02:10:10 PM,08/26/2010 02:11:26 PM,08/26/2010 02:11:38 PM,08/26/2010 02:11:51 PM,08/26/2010 02:19:00 PM,08/26/2010 02:26:29 PM,08/26/2010 02:35:12 PM,Code 2 Transport,08/26/2010 03:04:45 PM,400 Block of JEFFERSON ST,SF,94133,B01,28,1524,3,3,3,true,,1,MEDIC,3,1,2,Russian Hill,"(37.8077508336049, -122.419925741179)",102380226-55 -160902322,83,16035760,Medical Incident,03/30/2016,03/30/2016,03/30/2016 02:54:51 PM,03/30/2016 02:54:51 PM,03/30/2016 02:56:28 PM,03/30/2016 02:56:37 PM,03/30/2016 03:07:02 PM,03/30/2016 03:18:19 PM,03/30/2016 03:42:36 PM,Code 2 Transport,03/30/2016 03:59:19 PM,MISSION ST/OLIVER ST,San Francisco,94112,B99,33,6212,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7095433695086, -122.450498927736)",160902322-83 -121300036,B02,12043139,Gas Leak (Natural and LP Gases),05/09/2012,05/08/2012,05/09/2012 03:06:06 AM,05/09/2012 03:08:52 AM,05/09/2012 03:09:43 AM,05/09/2012 03:10:44 AM,05/09/2012 03:13:42 AM,04/25/2016 01:58:46 PM,04/25/2016 01:58:46 PM,Fire,05/09/2012 03:22:26 AM,0 Block of PEARL ST,SF,94103,B02,36,3416,3,3,3,false,Alarm,1,CHIEF,1,2,8,Mission,"(37.771019262163, -122.423870548901)",121300036-B02 -160341292,61,16013334,Medical Incident,02/03/2016,02/03/2016,02/03/2016 11:07:11 AM,02/03/2016 11:08:10 AM,02/03/2016 11:08:24 AM,02/03/2016 11:09:54 AM,02/03/2016 11:09:54 AM,02/03/2016 11:34:46 AM,02/03/2016 11:58:47 AM,Code 2 Transport,02/03/2016 12:37:48 PM,300 Block of LAGUNA HONDA BLVD,San Francisco,94131,B08,20,8637,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7481725477363, -122.458695033962)",160341292-61 -160372465,KM04,16014761,Medical Incident,02/06/2016,02/06/2016,02/06/2016 03:32:30 PM,02/06/2016 03:34:13 PM,02/06/2016 03:34:39 PM,02/06/2016 03:35:12 PM,02/06/2016 03:48:34 PM,02/06/2016 04:11:47 PM,02/06/2016 04:57:38 PM,Code 2 Transport,02/06/2016 05:21:57 PM,100 Block of LOEHR ST,San Francisco,94134,B09,44,6263,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.71262387882, -122.413673241478)",160372465-KM04 -160851230,54,16033713,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:11:32 AM,03/25/2016 10:12:18 AM,03/25/2016 10:13:37 AM,03/25/2016 10:13:50 AM,03/25/2016 10:21:07 AM,03/25/2016 10:33:15 AM,03/25/2016 10:50:08 AM,Code 2 Transport,03/25/2016 11:18:33 AM,100 Block of BERRY ST,San Francisco,94158,B03,8,2171,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",160851230-54 -132830371,E08,13096463,Medical Incident,10/10/2013,10/10/2013,10/10/2013 11:41:17 PM,10/10/2013 11:43:11 PM,10/10/2013 11:43:23 PM,10/10/2013 11:44:33 PM,10/10/2013 11:46:51 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/10/2013 11:52:16 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",132830371-E08 -140460367,E03,14015825,Medical Incident,02/15/2014,02/15/2014,02/15/2014 10:06:52 PM,02/15/2014 10:08:05 PM,02/15/2014 10:09:59 PM,02/15/2014 10:10:34 PM,02/15/2014 10:13:26 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 10:17:41 PM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",140460367-E03 -132320119,B09,13078301,Alarms,08/20/2013,08/20/2013,08/20/2013 10:34:10 AM,08/20/2013 10:35:30 AM,08/20/2013 10:36:00 AM,08/20/2013 10:36:42 AM,08/20/2013 10:42:22 AM,04/25/2016 01:51:12 PM,04/25/2016 01:51:12 PM,Other,08/20/2013 10:45:00 AM,1200 Block of OCEAN AVE,SF,94112,B09,15,8472,3,3,3,false,Alarm,1,CHIEF,2,9,7,West of Twin Peaks,"(37.7238590120011, -122.455615861538)",132320119-B09 -132200361,68,13074469,Medical Incident,08/08/2013,08/08/2013,08/08/2013 10:22:13 PM,08/08/2013 10:23:42 PM,08/08/2013 10:24:27 PM,08/08/2013 10:27:14 PM,08/08/2013 10:43:30 PM,08/08/2013 10:55:55 PM,08/08/2013 11:12:25 PM,Code 2 Transport,08/08/2013 11:36:31 PM,100 Block of CAMERON WAY,SF,94124,B10,17,6573,2,2,2,false,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7209580935201, -122.387166280374)",132200361-68 -121360021,RC3,12045080,Medical Incident,05/15/2012,05/14/2012,05/15/2012 04:23:57 AM,05/15/2012 04:25:23 AM,05/15/2012 04:25:45 AM,05/15/2012 04:28:11 AM,05/15/2012 04:32:30 AM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/15/2012 04:44:59 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,2,9,Mission,"(37.7642361189447, -122.419659842408)",121360021-RC3 -103250332,83,10104310,Medical Incident,11/21/2010,11/21/2010,11/21/2010 09:38:54 PM,11/21/2010 09:39:57 PM,11/21/2010 09:40:45 PM,11/21/2010 09:41:32 PM,11/21/2010 09:46:19 PM,11/21/2010 10:08:14 PM,11/21/2010 10:35:31 PM,Code 2 Transport,11/21/2010 11:09:12 PM,400 Block of 46TH AVE,SF,94121,B07,34,7274,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7795190686878, -122.507335897981)",103250332-83 -160890825,78,16035245,Medical Incident,03/29/2016,03/29/2016,03/29/2016 08:39:13 AM,03/29/2016 08:41:36 AM,03/29/2016 08:41:54 AM,03/29/2016 08:43:49 AM,03/29/2016 09:08:56 AM,03/29/2016 09:08:57 AM,03/29/2016 09:40:15 AM,Code 2 Transport,03/29/2016 10:10:18 AM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",160890825-78 -123540284,E36,12118529,Medical Incident,12/19/2012,12/19/2012,12/19/2012 04:51:58 PM,12/19/2012 04:54:08 PM,12/19/2012 04:54:54 PM,12/19/2012 04:56:31 PM,12/19/2012 04:58:08 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 05:02:25 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",123540284-E36 -111910069,94,11063031,Medical Incident,07/10/2011,07/09/2011,07/10/2011 06:39:21 AM,07/10/2011 06:43:10 AM,07/10/2011 06:43:28 AM,07/10/2011 06:43:43 AM,07/10/2011 06:48:06 AM,07/10/2011 07:12:07 AM,07/10/2011 07:29:07 AM,Code 2 Transport,07/10/2011 07:42:13 AM,1500 Block of GRANT AVE,SF,94133,B01,28,1265,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8012484334227, -122.407775929611)",111910069-94 -160550713,AM02,16021916,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:09:30 AM,02/24/2016 08:09:30 AM,02/24/2016 08:11:03 AM,02/24/2016 08:12:25 AM,02/24/2016 08:14:05 AM,02/24/2016 08:24:14 AM,02/24/2016 08:31:51 AM,Code 2 Transport,02/24/2016 09:03:27 AM,JACKSON ST/LARKIN ST,San Francisco,94109,B01,41,1633,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Russian Hill,"(37.7943537791838, -122.419752719731)",160550713-AM02 -110580226,B04,11019119,Alarms,02/27/2011,02/27/2011,02/27/2011 03:13:57 PM,02/27/2011 03:14:53 PM,02/27/2011 03:16:08 PM,02/27/2011 03:17:09 PM,02/27/2011 03:21:07 PM,04/25/2016 02:05:52 PM,04/25/2016 02:05:52 PM,Other,02/27/2011 03:24:36 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,CHIEF,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",110580226-B04 -111250181,99,11041357,Citizen Assist / Service Call,05/05/2011,05/05/2011,05/05/2011 12:35:49 PM,05/05/2011 12:37:54 PM,05/05/2011 12:38:48 PM,05/05/2011 12:55:06 PM,05/05/2011 01:01:15 PM,05/05/2011 01:28:46 PM,05/05/2011 01:51:55 PM,Code 2 Transport,05/05/2011 02:30:55 PM,1800 Block of 25TH AVE,SF,94122,B08,18,7455,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7530220350499, -122.482903541099)",111250181-99 -160162256,77,16006474,Medical Incident,01/16/2016,01/16/2016,01/16/2016 03:38:35 PM,01/16/2016 03:38:35 PM,01/16/2016 03:38:50 PM,01/16/2016 03:38:59 PM,01/16/2016 04:03:41 PM,01/16/2016 04:24:57 PM,01/16/2016 04:37:53 PM,Code 2 Transport,01/16/2016 05:30:41 PM,14TH ST/BELCHER ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7676621207067, -122.430081455189)",160162256-77 -110470326,T16,11015650,Structure Fire,02/16/2011,02/16/2011,02/16/2011 07:44:46 PM,02/16/2011 07:45:55 PM,02/16/2011 07:46:09 PM,02/16/2011 07:48:04 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 07:52:47 PM,2100 Block of HYDE ST,SF,94109,B01,41,1612,3,3,3,false,,1,TRUCK,3,1,2,Russian Hill,"(37.8006069914306, -122.41926087104)",110470326-T16 -103270030,T09,10104646,Structure Fire,11/23/2010,11/22/2010,11/23/2010 05:09:44 AM,11/23/2010 05:09:44 AM,11/23/2010 05:10:02 AM,11/23/2010 05:11:15 AM,11/23/2010 05:13:17 AM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Other,11/23/2010 05:13:50 AM,3100 Block of CESAR CHAVEZ ST,SF,94110,B06,9,5622,3,3,3,true,,1,TRUCK,1,6,9,Mission,"(37.7483773808375, -122.412579951922)",103270030-T09 -102890355,E20,10092322,Medical Incident,10/16/2010,10/16/2010,10/16/2010 09:36:49 PM,10/16/2010 09:37:15 PM,10/16/2010 09:37:47 PM,10/16/2010 09:38:52 PM,10/16/2010 09:43:30 PM,04/25/2016 02:08:04 PM,10/16/2010 10:08:10 PM,Other,10/16/2010 10:34:48 PM,500 Block of NORIEGA ST,SF,94122,B08,22,7343,E,E,3,true,,1,ENGINE,3,8,7,Inner Sunset,"(37.7554074162371, -122.46943709962)",102890355-E20 -103460231,T01,10110990,Structure Fire,12/12/2010,12/12/2010,12/12/2010 02:23:22 PM,12/12/2010 02:23:22 PM,12/12/2010 02:23:51 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 02:25:09 PM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,TRUCK,3,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",103460231-T01 -132090057,AM22,13070587,Medical Incident,07/28/2013,07/27/2013,07/28/2013 03:01:06 AM,07/28/2013 03:02:17 AM,07/28/2013 03:02:57 AM,07/28/2013 03:03:28 AM,04/25/2016 01:51:36 PM,07/28/2013 03:24:50 AM,07/28/2013 03:36:20 AM,Code 2 Transport,07/28/2013 04:19:15 AM,2ND ST/HOWARD ST,SF,94105,B03,1,2146,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7867789486792, -122.398256963317)",132090057-AM22 -102450248,E19,10077368,Medical Incident,09/02/2010,09/02/2010,09/02/2010 01:10:43 PM,09/02/2010 01:11:11 PM,09/02/2010 01:11:41 PM,09/02/2010 01:12:31 PM,09/02/2010 01:15:32 PM,04/25/2016 02:08:47 PM,04/25/2016 02:08:47 PM,Other,09/02/2010 01:22:31 PM,1500 Block of SLOAT BLVD,SF,94132,B08,19,7552,3,3,3,true,,1,ENGINE,1,8,7,Sunset/Parkside,"(37.7339504451524, -122.489699172676)",102450248-E19 -140850181,T02,14028627,Elevator / Escalator Rescue,03/26/2014,03/26/2014,03/26/2014 01:02:57 PM,03/26/2014 01:06:26 PM,03/26/2014 01:06:35 PM,03/26/2014 01:07:49 PM,03/26/2014 01:11:22 PM,04/25/2016 01:47:33 PM,04/25/2016 01:47:33 PM,Fire,03/26/2014 01:29:42 PM,500 Block of MASON ST,SAN FRANCISCO,94102,B01,3,1412,3,3,3,false,Alarm,1,TRUCK,1,1,3,Nob Hill,"(37.7885578121115, -122.410081316773)",140850181-T02 -102330200,99,10073355,Medical Incident,08/21/2010,08/21/2010,08/21/2010 03:00:50 PM,08/21/2010 03:01:50 PM,08/21/2010 03:02:10 PM,08/21/2010 03:06:51 PM,08/21/2010 03:15:44 PM,08/21/2010 03:15:52 PM,08/21/2010 03:28:32 PM,Code 2 Transport,08/21/2010 03:38:41 PM,0 Block of CRESCENT AVE,SF,94110,B06,32,5632,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7353420629754, -122.423688144703)",102330200-99 -121210330,77,12040319,Medical Incident,04/30/2012,04/30/2012,04/30/2012 09:38:19 PM,04/30/2012 09:38:50 PM,04/30/2012 09:40:35 PM,04/30/2012 09:41:07 PM,04/30/2012 09:43:38 PM,04/30/2012 10:04:18 PM,04/30/2012 10:13:02 PM,Code 2 Transport,04/30/2012 11:04:09 PM,DUBOCE AV/MISSION ST,SF,94103,B02,36,5124,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Mission,"(37.7701114489219, -122.420008323243)",121210330-77 -160602148,87,16023952,Medical Incident,02/29/2016,02/29/2016,02/29/2016 03:11:51 PM,02/29/2016 03:13:16 PM,02/29/2016 03:13:38 PM,02/29/2016 03:13:47 PM,02/29/2016 03:18:37 PM,02/29/2016 03:42:46 PM,02/29/2016 03:48:56 PM,Code 2 Transport,02/29/2016 04:52:11 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",160602148-87 -112160016,E05,11071190,Alarms,08/04/2011,08/03/2011,08/04/2011 12:44:20 AM,08/04/2011 12:46:47 AM,08/04/2011 12:47:12 AM,08/04/2011 12:48:32 AM,08/04/2011 12:50:35 AM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 12:57:17 AM,600 Block of FILLMORE ST,SF,94117,B05,5,3532,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7753772324591, -122.431036737565)",112160016-E05 -160882110,AM02,16034986,Medical Incident,03/28/2016,03/28/2016,03/28/2016 02:19:32 PM,03/28/2016 02:21:07 PM,03/28/2016 02:24:51 PM,03/28/2016 02:25:17 PM,03/28/2016 02:34:37 PM,03/28/2016 03:02:24 PM,03/28/2016 03:13:50 PM,Code 2 Transport,03/28/2016 03:40:33 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160882110-AM02 -131690309,T01,13057476,Structure Fire,06/18/2013,06/18/2013,06/18/2013 05:14:54 PM,06/18/2013 05:14:54 PM,06/18/2013 05:21:02 PM,06/18/2013 05:21:50 PM,06/18/2013 05:23:41 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 06:52:08 PM,500 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Fire,2,TRUCK,10,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",131690309-T01 -112510042,E23,11082653,Medical Incident,09/08/2011,09/07/2011,09/08/2011 03:38:15 AM,09/08/2011 03:39:54 AM,09/08/2011 03:40:02 AM,09/08/2011 03:41:08 AM,09/08/2011 03:43:24 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 04:14:44 AM,1200 Block of 40TH AVE,SF,94122,B08,23,7627,E,E,3,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7635126167767, -122.499624471473)",112510042-E23 -113190196,89,11105948,Medical Incident,11/15/2011,11/15/2011,11/15/2011 12:24:34 PM,11/15/2011 12:25:25 PM,11/15/2011 12:26:13 PM,11/15/2011 12:26:58 PM,11/15/2011 12:33:37 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Patient Declined Transport,11/15/2011 12:38:26 PM,1000 Block of WISCONSIN ST,SF,94107,B10,37,257,3,3,3,true,,1,MEDIC,3,10,10,Potrero Hill,"(37.7542794640877, -122.398718688842)",113190196-89 -160373739,87,16014927,Medical Incident,02/06/2016,02/06/2016,02/06/2016 09:09:12 PM,02/06/2016 09:09:12 PM,02/06/2016 09:10:56 PM,02/06/2016 09:10:56 PM,02/06/2016 09:11:34 PM,02/06/2016 09:16:40 PM,02/06/2016 09:19:53 PM,Code 2 Transport,02/06/2016 09:28:02 PM,BUSH ST/POLK ST,San Francisco,94109,B04,3,1636,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",160373739-87 -111200185,AM16,11039584,Medical Incident,04/30/2011,04/30/2011,04/30/2011 12:45:49 PM,04/30/2011 12:46:58 PM,04/30/2011 12:47:18 PM,04/30/2011 12:47:53 PM,04/30/2011 12:56:22 PM,04/30/2011 01:08:04 PM,04/30/2011 01:18:12 PM,Code 2 Transport,04/30/2011 02:03:22 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,,1,PRIVATE,2,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",111200185-AM16 -132120331,92,13071790,Medical Incident,07/31/2013,07/31/2013,07/31/2013 09:10:17 PM,07/31/2013 09:11:28 PM,07/31/2013 09:12:06 PM,07/31/2013 09:13:11 PM,07/31/2013 09:26:38 PM,04/25/2016 01:51:32 PM,04/25/2016 01:51:32 PM,Patient Declined Transport,07/31/2013 09:57:32 PM,1100 Block of MARKET ST,SF,94102,B02,1,2309,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",132120331-92 -111590330,T01,11052711,Medical Incident,06/08/2011,06/08/2011,06/08/2011 09:26:06 PM,06/08/2011 09:27:03 PM,06/08/2011 09:27:41 PM,06/08/2011 09:29:13 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/08/2011 09:29:34 PM,1300 Block of FOLSOM ST,SF,94103,B02,36,2343,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7730095075911, -122.41247584547)",111590330-T01 -140860222,83,14028980,Medical Incident,03/27/2014,03/27/2014,03/27/2014 03:53:31 PM,03/27/2014 03:55:42 PM,03/27/2014 03:57:11 PM,03/27/2014 04:01:00 PM,03/27/2014 04:19:20 PM,03/27/2014 04:25:11 PM,03/27/2014 04:48:18 PM,Code 2 Transport,03/27/2014 05:06:08 PM,100 Block of NORTHRIDGE RD,SAN FRANCISCO,94124,B10,17,6633,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7312838053833, -122.378204872935)",140860222-83 -121850354,87,12061769,Medical Incident,07/03/2012,07/03/2012,07/03/2012 09:10:59 PM,07/03/2012 09:16:26 PM,07/03/2012 09:16:55 PM,07/03/2012 09:47:20 PM,07/03/2012 09:56:50 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Unable to Locate,07/03/2012 09:59:46 PM,PAGE ST/OCTAVIA ST,SF,94102,B02,36,3313,2,2,2,false,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7738892381955, -122.42394706123)",121850354-87 -111490151,E02,11049374,Medical Incident,05/29/2011,05/29/2011,05/29/2011 01:50:06 PM,05/29/2011 01:50:48 PM,05/29/2011 01:51:03 PM,05/29/2011 01:55:44 PM,05/29/2011 01:58:22 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 02:07:48 PM,900 Block of GREENWICH ST,SF,94133,B01,28,1514,3,3,3,true,,1,ENGINE,1,1,3,Russian Hill,"(37.8016099872454, -122.415552444097)",111490151-E02 -132770188,84,13094080,Medical Incident,10/04/2013,10/04/2013,10/04/2013 12:18:23 PM,10/04/2013 12:19:29 PM,10/04/2013 12:19:44 PM,10/04/2013 12:20:02 PM,10/04/2013 12:25:09 PM,10/04/2013 12:47:34 PM,10/04/2013 01:29:51 PM,Code 2 Transport,10/04/2013 01:29:59 PM,0 Block of MONTECITO AVE,SF,94112,B09,15,8236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7309389561436, -122.453833154503)",132770188-84 -160231210,81,16009102,Medical Incident,01/23/2016,01/23/2016,01/23/2016 10:29:54 AM,01/23/2016 10:32:30 AM,01/23/2016 10:32:53 AM,01/23/2016 10:33:48 AM,01/23/2016 10:42:28 AM,01/23/2016 11:01:09 AM,01/23/2016 11:10:34 AM,Code 2 Transport,01/23/2016 11:52:29 AM,1600 Block of NEWCOMB AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7359839996322, -122.390991750862)",160231210-81 -160083803,AM20,16003435,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:02:34 PM,01/08/2016 10:04:04 PM,01/08/2016 10:04:16 PM,01/08/2016 10:04:44 PM,01/08/2016 10:10:28 PM,01/08/2016 10:29:31 PM,01/08/2016 10:43:01 PM,Code 2 Transport,01/08/2016 11:19:43 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160083803-AM20 -103100028,B03,10099262,Alarms,11/06/2010,11/05/2010,11/06/2010 01:48:55 AM,11/06/2010 01:49:50 AM,11/06/2010 01:50:11 AM,11/06/2010 01:52:20 AM,11/06/2010 01:56:30 AM,04/25/2016 02:07:44 PM,04/25/2016 02:07:44 PM,Fire,11/06/2010 02:02:08 AM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.787352867216, -122.399071684966)",103100028-B03 -110020050,85,11000554,Medical Incident,01/02/2011,01/01/2011,01/02/2011 04:56:46 AM,01/02/2011 05:00:39 AM,01/02/2011 05:00:59 AM,01/02/2011 05:01:27 AM,01/02/2011 05:05:55 AM,01/02/2011 05:24:23 AM,01/02/2011 05:30:22 AM,Code 2 Transport,01/02/2011 05:43:57 AM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7571666434801, -122.416719595074)",110020050-85 -160251806,AM08,16009937,Medical Incident,01/25/2016,01/25/2016,01/25/2016 01:02:21 PM,01/25/2016 01:02:44 PM,01/25/2016 01:03:03 PM,01/25/2016 01:03:35 PM,01/25/2016 01:10:28 PM,01/25/2016 01:22:19 PM,01/25/2016 01:32:50 PM,Code 3 Transport,01/25/2016 02:34:41 PM,100 Block of EL CAMINO DEL MAR,San Francisco,94121,B07,14,7215,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Seacliff,"(37.7876931888724, -122.484718840648)",160251806-AM08 -160150293,65,16005825,Medical Incident,01/15/2016,01/14/2016,01/15/2016 02:42:08 AM,01/15/2016 02:43:00 AM,01/15/2016 02:43:26 AM,01/15/2016 02:43:41 AM,01/15/2016 02:50:33 AM,01/15/2016 03:00:45 AM,01/15/2016 03:12:28 AM,Code 2 Transport,01/15/2016 03:25:39 AM,100 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",160150293-65 -102850454,83,10090960,Medical Incident,10/12/2010,10/12/2010,10/12/2010 09:59:21 PM,10/12/2010 10:00:50 PM,10/12/2010 10:01:20 PM,10/12/2010 10:01:42 PM,10/12/2010 10:11:45 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 10:28:08 PM,2400 Block of CLAY ST,SF,94115,B04,38,3466,1,1,2,true,,1,MEDIC,1,4,2,Pacific Heights,"(37.790897082336, -122.433177215492)",102850454-83 -120120285,AM14,12004194,Medical Incident,01/12/2012,01/12/2012,01/12/2012 06:36:08 PM,01/12/2012 06:37:42 PM,01/12/2012 06:39:27 PM,01/12/2012 06:40:06 PM,01/12/2012 06:49:03 PM,01/12/2012 06:54:14 PM,01/12/2012 07:04:37 PM,Code 2 Transport,01/12/2012 07:20:36 PM,0 Block of DORE ST,SF,94103,B02,36,2342,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7739392650435, -122.412947871011)",120120285-AM14 -112870296,T05,11095234,Alarms,10/14/2011,10/14/2011,10/14/2011 03:43:52 PM,10/14/2011 03:44:17 PM,10/14/2011 03:44:24 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 03:51:24 PM,700 Block of PRESIDIO AVE,SF,94115,B05,10,4366,3,3,3,false,,1,TRUCK,4,5,2,Presidio Heights,"(37.7849123605726, -122.446266007624)",112870296-T05 -110490114,92,11016127,Medical Incident,02/18/2011,02/18/2011,02/18/2011 09:07:40 AM,02/18/2011 09:08:57 AM,02/18/2011 09:09:38 AM,02/18/2011 09:09:50 AM,02/18/2011 09:16:20 AM,02/18/2011 09:48:57 AM,02/18/2011 10:04:35 AM,Code 2 Transport,02/18/2011 10:17:28 AM,1000 Block of MISSION ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7800525030811, -122.40977382526)",110490114-92 -130320037,FB1,13010799,Water Rescue,02/01/2013,01/31/2013,02/01/2013 04:05:47 AM,02/01/2013 04:05:48 AM,02/01/2013 04:07:50 AM,02/01/2013 04:10:22 AM,02/01/2013 04:24:20 AM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,02/01/2013 05:17:36 AM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,3,3,3,false,Fire,1,SUPPORT,7,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",130320037-FB1 -160683206,53,16027229,Traffic Collision,03/08/2016,03/08/2016,03/08/2016 07:35:39 PM,03/08/2016 07:35:39 PM,03/08/2016 07:38:46 PM,03/08/2016 07:39:17 PM,03/08/2016 07:44:21 PM,03/08/2016 07:51:30 PM,03/08/2016 08:25:20 PM,Code 2 Transport,03/08/2016 09:06:14 PM,GOUGH ST/EDDY ST,San Francisco,94109,B02,5,3262,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7824770505897, -122.424108201912)",160683206-53 -132920363,E11,13099534,Medical Incident,10/19/2013,10/19/2013,10/19/2013 10:40:02 PM,10/19/2013 10:40:22 PM,10/19/2013 10:40:40 PM,10/19/2013 10:41:54 PM,10/19/2013 10:43:35 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/19/2013 10:53:45 PM,3100 Block of MISSION ST,SF,94110,B06,11,5624,3,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7474955268543, -122.418732763058)",132920363-E11 -123370380,99,12112337,Medical Incident,12/02/2012,12/02/2012,12/02/2012 01:16:42 PM,12/02/2012 01:16:42 PM,12/02/2012 01:17:00 PM,12/02/2012 01:18:26 PM,12/02/2012 01:24:51 PM,12/02/2012 01:42:34 PM,12/02/2012 02:25:41 PM,Code 2 Transport,12/02/2012 02:46:48 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7951147632018, -122.40714468003)",123370380-99 -130880076,B02,13029284,Structure Fire,03/29/2013,03/29/2013,03/29/2013 08:01:41 AM,03/29/2013 08:01:41 AM,03/29/2013 08:02:31 AM,03/29/2013 08:04:20 AM,03/29/2013 08:07:06 AM,04/25/2016 01:53:35 PM,04/25/2016 01:53:35 PM,Other,03/29/2013 08:07:51 AM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,false,Alarm,1,CHIEF,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",130880076-B02 -112920358,E41,11097030,Structure Fire,10/19/2011,10/19/2011,10/19/2011 09:51:24 PM,10/19/2011 09:52:16 PM,10/19/2011 09:52:27 PM,10/19/2011 09:53:50 PM,10/19/2011 09:55:26 PM,04/25/2016 02:02:04 PM,04/25/2016 02:02:04 PM,Other,10/19/2011 10:06:25 PM,1900 Block of PACIFIC AVE,SF,94109,B04,38,3332,3,3,3,false,,1,ENGINE,1,4,2,Pacific Heights,"(37.794238248299, -122.42732552674)",112920358-E41 -102720246,65,10086412,Medical Incident,09/29/2010,09/29/2010,09/29/2010 03:17:09 PM,09/29/2010 03:17:21 PM,09/29/2010 03:17:56 PM,09/29/2010 03:18:09 PM,09/29/2010 03:21:46 PM,09/29/2010 03:37:38 PM,09/29/2010 03:59:04 PM,Code 2 Transport,09/29/2010 04:26:19 PM,2700 Block of NORIEGA ST,SF,94122,B08,18,7543,3,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7534535540396, -122.493079366057)",102720246-65 -111340172,KM12,11044562,Medical Incident,05/14/2011,05/14/2011,05/14/2011 01:31:14 PM,05/14/2011 01:32:25 PM,05/14/2011 01:33:25 PM,05/14/2011 01:34:34 PM,05/14/2011 01:44:19 PM,05/14/2011 02:06:20 PM,05/14/2011 02:24:05 PM,Code 2 Transport,05/14/2011 02:57:29 PM,200 Block of CUMBERLAND ST,SF,94114,B06,11,5444,3,3,3,false,,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7587745198783, -122.429130636306)",111340172-KM12 -160062319,76,16002462,Medical Incident,01/06/2016,01/06/2016,01/06/2016 03:29:40 PM,01/06/2016 03:30:45 PM,01/06/2016 03:31:38 PM,01/06/2016 03:32:16 PM,01/06/2016 03:50:55 PM,01/06/2016 04:06:50 PM,01/06/2016 04:28:07 PM,Code 2 Transport,01/06/2016 05:02:59 PM,900 Block of BRUSSELS ST,San Francisco,94134,B10,44,6325,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Portola,"(37.7204898011258, -122.402743651531)",160062319-76 -110370194,89,11012212,Medical Incident,02/06/2011,02/06/2011,02/06/2011 11:35:41 AM,02/06/2011 11:37:55 AM,02/06/2011 11:38:43 AM,02/06/2011 11:39:02 AM,02/06/2011 11:48:08 AM,02/06/2011 12:06:53 PM,02/06/2011 12:28:51 PM,Code 2 Transport,02/06/2011 01:03:24 PM,300 Block of KING ST,SF,94158,B03,8,2236,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7753303928332, -122.394999637791)",110370194-89 -122480088,AM16,12081917,Medical Incident,09/04/2012,09/04/2012,09/04/2012 08:39:04 AM,09/04/2012 08:40:10 AM,09/04/2012 08:40:54 AM,09/04/2012 08:41:33 AM,09/04/2012 08:44:21 AM,09/04/2012 09:09:30 AM,09/04/2012 09:18:59 AM,Code 2 Transport,09/04/2012 09:58:18 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",122480088-AM16 -160841663,71,16033357,Medical Incident,03/24/2016,03/24/2016,03/24/2016 11:50:58 AM,03/24/2016 11:52:49 AM,03/24/2016 11:53:03 AM,03/24/2016 11:53:17 AM,03/24/2016 11:55:41 AM,03/24/2016 12:45:00 PM,03/24/2016 12:51:20 PM,Code 2 Transport,03/24/2016 01:29:53 PM,1300 Block of GOUGH ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7857569605828, -122.424841094899)",160841663-71 -113620255,B01,11120314,Alarms,12/28/2011,12/28/2011,12/28/2011 03:41:51 PM,12/28/2011 03:42:14 PM,12/28/2011 03:44:59 PM,12/28/2011 03:47:45 PM,12/28/2011 03:49:27 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 03:59:48 PM,200 Block of FRANKLIN ST,FM,94102,B99,51,3344,3,3,3,false,,1,CHIEF,1,2,5,Hayes Valley,"(37.7768495726299, -122.421351246136)",113620255-B01 -140780331,93,14026507,Medical Incident,03/19/2014,03/19/2014,03/19/2014 07:49:16 PM,03/19/2014 07:50:09 PM,03/19/2014 07:50:51 PM,03/19/2014 07:51:06 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Fire,03/19/2014 07:59:58 PM,1300 Block of BOSWORTH ST,SAN FRANCISCO,94131,B09,26,8179,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7364473397419, -122.441834902263)",140780331-93 -121880387,E05,12062811,Structure Fire,07/06/2012,07/06/2012,07/06/2012 11:49:41 PM,07/06/2012 11:49:41 PM,07/06/2012 11:49:48 PM,07/06/2012 11:50:59 PM,07/06/2012 11:52:07 PM,04/25/2016 01:57:50 PM,04/25/2016 01:57:50 PM,Fire,07/06/2012 11:56:50 PM,LAGUNA ST/EDDY ST,SF,94102,B02,5,3366,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7820569373169, -122.427396397337)",121880387-E05 -102610239,89,10082539,Medical Incident,09/18/2010,09/18/2010,09/18/2010 01:32:13 PM,09/18/2010 01:34:19 PM,09/18/2010 01:35:06 PM,09/18/2010 01:38:45 PM,09/18/2010 01:50:25 PM,09/18/2010 02:13:37 PM,09/18/2010 02:38:21 PM,Code 2 Transport,09/18/2010 03:21:47 PM,100 Block of ANDOVER ST,SF,94110,B06,32,5716,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7410406209685, -122.416424714159)",102610239-89 -160601279,84,16023864,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:58:43 AM,02/29/2016 10:58:43 AM,02/29/2016 11:00:39 AM,02/29/2016 11:00:52 AM,02/29/2016 11:03:50 AM,02/29/2016 11:30:56 AM,02/29/2016 11:38:44 AM,Code 2 Transport,02/29/2016 12:06:13 PM,1800 Block of FOLSOM ST,San Francisco,94103,B02,7,5216,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7677331022924, -122.415606951318)",160601279-84 -133480301,E25,13118213,Structure Fire,12/14/2013,12/14/2013,12/14/2013 05:41:06 PM,12/14/2013 05:41:06 PM,12/14/2013 05:41:54 PM,12/14/2013 05:43:31 PM,12/14/2013 05:46:10 PM,04/25/2016 01:49:16 PM,04/25/2016 01:49:16 PM,Other,12/14/2013 05:47:19 PM,HUDSON AV/CASHMERE ST,SF,94124,B10,25,652,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",133480301-E25 -133510361,83,13119337,Medical Incident,12/17/2013,12/17/2013,12/17/2013 06:37:44 PM,12/17/2013 06:39:06 PM,12/17/2013 06:40:20 PM,12/17/2013 06:40:29 PM,12/17/2013 06:45:21 PM,12/17/2013 06:53:39 PM,12/17/2013 07:05:20 PM,Code 2 Transport,12/17/2013 07:24:39 PM,2300 Block of FILLMORE ST,SF,94115,B04,38,3545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,4,2,Pacific Heights,"(37.791142743319, -122.434360166236)",133510361-83 -160150662,71,16005876,Medical Incident,01/15/2016,01/14/2016,01/15/2016 07:47:05 AM,01/15/2016 07:48:57 AM,01/15/2016 07:49:12 AM,01/15/2016 07:49:31 AM,01/15/2016 07:53:24 AM,01/15/2016 08:02:45 AM,01/15/2016 08:22:43 AM,Code 2 Transport,01/15/2016 08:33:38 AM,500 Block of LARKIN ST,San Francisco,94102,B02,3,1643,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.78285368439, -122.417365509218)",160150662-71 -112360187,E19,11077891,Structure Fire,08/24/2011,08/24/2011,08/24/2011 01:39:41 PM,08/24/2011 01:39:42 PM,08/24/2011 01:39:54 PM,08/24/2011 01:41:43 PM,08/24/2011 01:42:56 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 01:50:32 PM,EUCALYPTUS DR/SYLVAN DR,SF,94132,B08,19,8743,3,3,3,true,,1,ENGINE,2,8,7,Sunset/Parkside,"(37.7309460933363, -122.48530150391)",112360187-E19 -120890188,E01,12029466,Medical Incident,03/29/2012,03/29/2012,03/29/2012 01:47:43 PM,03/29/2012 01:49:24 PM,03/29/2012 01:49:32 PM,03/29/2012 01:50:52 PM,03/29/2012 01:51:17 PM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Other,03/29/2012 02:01:41 PM,900 Block of HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7811500329072, -122.405277197305)",120890188-E01 -160883810,58,16035141,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:58:53 PM,03/28/2016 10:02:04 PM,03/28/2016 10:02:28 PM,03/28/2016 10:02:55 PM,03/28/2016 10:11:48 PM,03/28/2016 10:17:04 PM,03/28/2016 10:47:23 PM,Code 2 Transport,03/28/2016 11:05:54 PM,14TH ST/SOUTH VAN NESS AV,San Francisco,94103,B02,7,5216,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7684052696119, -122.417802155227)",160883810-58 -121350243,E29,12044938,Traffic Collision,05/14/2012,05/14/2012,05/14/2012 03:31:44 PM,05/14/2012 03:34:23 PM,05/14/2012 03:34:54 PM,05/14/2012 03:35:38 PM,05/14/2012 03:37:42 PM,04/25/2016 01:58:41 PM,04/25/2016 01:58:41 PM,Other,05/14/2012 03:51:44 PM,BRYANT ST/10TH ST,SF,94103,B02,29,2345,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7703485160634, -122.409735890482)",121350243-E29 -103100189,E21,10099393,Medical Incident,11/06/2010,11/06/2010,11/06/2010 01:16:51 PM,11/06/2010 01:17:50 PM,11/06/2010 01:18:48 PM,11/06/2010 01:21:57 PM,11/06/2010 01:23:15 PM,04/25/2016 02:07:43 PM,04/25/2016 02:07:43 PM,Other,11/06/2010 01:38:33 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,2,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",103100189-E21 -160131037,85,16005121,Medical Incident,01/13/2016,01/13/2016,01/13/2016 09:34:22 AM,01/13/2016 09:34:49 AM,01/13/2016 09:37:15 AM,01/13/2016 09:37:22 AM,01/13/2016 09:44:16 AM,01/13/2016 09:58:56 AM,01/13/2016 10:32:25 AM,Code 2 Transport,01/13/2016 10:48:26 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160131037-85 -131840284,T07,13062778,Alarms,07/03/2013,07/03/2013,07/03/2013 05:07:24 PM,07/03/2013 05:08:14 PM,07/03/2013 05:09:31 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/03/2013 05:11:13 PM,300 Block of RHODE ISLAND ST,SF,94103,B03,29,2413,3,3,3,false,Alarm,1,TRUCK,3,2,10,Mission Bay,"(37.7654237351553, -122.402693174465)",131840284-T07 -111550105,99,11051158,Medical Incident,06/04/2011,06/03/2011,06/04/2011 07:36:12 AM,06/04/2011 07:39:32 AM,06/04/2011 07:39:40 AM,06/04/2011 07:40:48 AM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,Other,04/25/2016 02:04:19 PM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,3,3,3,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",111550105-99 -121840358,E41,12061449,Medical Incident,07/02/2012,07/02/2012,07/02/2012 10:41:14 PM,07/02/2012 10:41:14 PM,07/02/2012 10:42:40 PM,07/02/2012 10:47:07 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 10:50:13 PM,1500 Block of GREEN ST,SF,94123,B04,41,3151,1,2,2,false,Potentially Life-Threatening,1,ENGINE,3,4,2,Marina,"(37.7974582295509, -122.424604006222)",121840358-E41 -160671139,KM12,16026707,Medical Incident,03/07/2016,03/07/2016,03/07/2016 11:16:57 AM,03/07/2016 11:17:40 AM,03/07/2016 11:17:57 AM,03/07/2016 11:19:31 AM,03/07/2016 11:27:06 AM,03/07/2016 11:39:24 AM,03/07/2016 12:07:23 PM,Code 2 Transport,03/07/2016 12:35:54 PM,1400 Block of MASON ST,San Francisco,94133,B01,2,1416,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7967028227455, -122.411871895133)",160671139-KM12 -140750190,87,14025392,Medical Incident,03/16/2014,03/16/2014,03/16/2014 12:41:22 PM,03/16/2014 12:42:09 PM,03/16/2014 12:44:24 PM,03/16/2014 12:44:51 PM,03/16/2014 12:53:16 PM,03/16/2014 01:12:50 PM,03/16/2014 01:27:18 PM,Code 2 Transport,03/16/2014 01:56:42 PM,100 Block of ADDISON ST,SAN FRANCISCO,94131,B06,26,8122,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Glen Park,"(37.7377457409223, -122.432498108885)",140750190-87 -113580203,RS1,11119039,Medical Incident,12/24/2011,12/24/2011,12/24/2011 01:50:50 PM,12/24/2011 01:51:03 PM,12/24/2011 01:51:26 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 01:52:49 PM,CYRIL MAGNIN ST/MARKET ST,SF,94103,B03,1,1366,3,3,3,false,,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7839914857614, -122.408066547804)",113580203-RS1 -112300192,AM02,11075961,Medical Incident,08/18/2011,08/18/2011,08/18/2011 01:27:20 PM,08/18/2011 01:27:40 PM,08/18/2011 01:27:53 PM,08/18/2011 01:28:35 PM,08/18/2011 01:31:34 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,No Merit,08/18/2011 01:43:32 PM,1100 Block of SUTTER ST,SF,94109,B04,3,3121,3,3,3,false,,1,PRIVATE,2,4,3,Nob Hill,"(37.7879157085568, -122.419301488018)",112300192-AM02 -121890152,96,12062942,Medical Incident,07/07/2012,07/07/2012,07/07/2012 12:03:39 PM,07/07/2012 12:05:29 PM,07/07/2012 12:08:25 PM,07/07/2012 12:08:37 PM,07/07/2012 12:14:48 PM,07/07/2012 12:27:38 PM,07/07/2012 12:36:16 PM,Code 2 Transport,07/07/2012 01:02:01 PM,CYRIL MAGNIN ST/EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",121890152-96 -140340193,E01,14011507,Structure Fire,02/03/2014,02/03/2014,02/03/2014 01:52:36 PM,02/03/2014 01:52:36 PM,02/03/2014 01:54:49 PM,02/03/2014 01:54:49 PM,02/03/2014 01:54:53 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 01:55:23 PM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,,3,3,true,Alarm,1,ENGINE,1,3,6,South of Market,"(37.7772727011897, -122.404070256526)",140340193-E01 -103350115,64,10107126,Medical Incident,12/01/2010,12/01/2010,12/01/2010 10:23:44 AM,12/01/2010 10:24:29 AM,12/01/2010 10:24:56 AM,12/01/2010 10:25:20 AM,12/01/2010 10:41:59 AM,12/01/2010 11:05:16 AM,12/01/2010 11:36:50 AM,Code 2 Transport,12/01/2010 11:53:51 AM,100 Block of HIGHLAND AVE,SF,94110,B06,32,5646,2,1,2,true,,1,MEDIC,1,6,9,Bernal Heights,"(37.7373636780892, -122.422094532922)",103350115-64 -113470071,72,11115029,Traffic Collision,12/13/2011,12/12/2011,12/13/2011 07:47:31 AM,12/13/2011 07:48:58 AM,12/13/2011 07:49:08 AM,12/13/2011 07:49:21 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/13/2011 07:52:35 AM,FULTON ST/FILLMORE ST,SF,94117,B05,5,3521,3,3,3,true,,1,MEDIC,3,5,5,Hayes Valley,"(37.777699925281, -122.431574643438)",113470071-72 -112940327,KM01,11097638,Medical Incident,10/21/2011,10/21/2011,10/21/2011 07:34:51 PM,10/21/2011 07:36:27 PM,10/21/2011 07:36:45 PM,10/21/2011 07:39:38 PM,10/21/2011 07:43:29 PM,10/21/2011 07:54:06 PM,10/21/2011 08:13:12 PM,Code 2 Transport,10/21/2011 08:23:49 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",112940327-KM01 -110840020,E22,11027525,Traffic Collision,03/25/2011,03/24/2011,03/25/2011 01:06:39 AM,03/25/2011 01:06:39 AM,03/25/2011 01:08:17 AM,03/25/2011 01:10:45 AM,03/25/2011 01:10:48 AM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,Other,03/25/2011 01:14:42 AM,GEARY BL/PARK PRESIDIO BL,SF,94118,B07,31,7146,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",110840020-E22 -113450019,94,11114317,Medical Incident,12/11/2011,12/10/2011,12/11/2011 12:41:43 AM,12/11/2011 12:43:50 AM,12/11/2011 12:46:13 AM,12/11/2011 12:46:18 AM,12/11/2011 12:47:55 AM,12/11/2011 01:08:03 AM,12/11/2011 01:23:00 AM,Code 2 Transport,12/11/2011 01:46:08 AM,300 Block of DOLORES ST,SF,94114,B02,6,5251,1,1,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.7634973385648, -122.426428418645)",113450019-94 -120540232,AM02,12017861,Medical Incident,02/23/2012,02/23/2012,02/23/2012 03:19:48 PM,02/23/2012 03:20:51 PM,02/23/2012 03:22:32 PM,02/23/2012 03:23:42 PM,02/23/2012 03:28:22 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 03:35:59 PM,200 Block of JERSEY ST,SF,94114,B06,11,5537,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7507499563424, -122.430690505695)",120540232-AM02 -112080102,E01,11068627,Medical Incident,07/27/2011,07/27/2011,07/27/2011 09:42:31 AM,07/27/2011 09:43:21 AM,07/27/2011 09:44:53 AM,07/27/2011 09:46:55 AM,07/27/2011 09:50:07 AM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 09:57:42 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",112080102-E01 -160681195,62,16027077,Medical Incident,03/08/2016,03/08/2016,03/08/2016 10:26:49 AM,03/08/2016 10:27:11 AM,03/08/2016 10:27:34 AM,03/08/2016 10:27:49 AM,03/08/2016 10:30:45 AM,03/08/2016 10:49:10 AM,03/08/2016 11:01:35 AM,Code 2 Transport,03/08/2016 11:27:20 AM,400 Block of TAYLOR ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7864592940991, -122.411489016028)",160681195-62 -160180490,53,16007129,Medical Incident,01/18/2016,01/17/2016,01/18/2016 06:47:48 AM,01/18/2016 06:47:48 AM,01/18/2016 06:48:15 AM,01/18/2016 06:48:25 AM,01/18/2016 06:52:55 AM,01/18/2016 07:08:36 AM,01/18/2016 07:15:38 AM,Code 2 Transport,01/18/2016 08:07:07 AM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7810145579776, -122.413423114482)",160180490-53 -111120124,E08,11036957,Medical Incident,04/22/2011,04/22/2011,04/22/2011 09:42:15 AM,04/22/2011 09:43:21 AM,04/22/2011 09:48:47 AM,04/22/2011 09:49:12 AM,04/22/2011 09:51:13 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 10:16:43 AM,200 Block of KING ST,SF,94107,B03,8,2171,1,1,2,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7771045304956, -122.392750406066)",111120124-E08 -122350014,E06,12077736,Medical Incident,08/22/2012,08/21/2012,08/22/2012 01:02:04 AM,08/22/2012 01:03:10 AM,08/22/2012 01:03:42 AM,04/25/2016 01:57:07 PM,08/22/2012 01:06:00 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Other,08/22/2012 01:10:26 AM,18TH ST/CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",122350014-E06 -112580357,E01,11085195,Structure Fire,09/15/2011,09/15/2011,09/15/2011 08:27:36 PM,09/15/2011 08:27:37 PM,09/15/2011 08:28:01 PM,09/15/2011 08:29:25 PM,09/15/2011 08:31:29 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 08:31:51 PM,STOCKTON ST/SUTTER ST,SF,94108,B01,1,1324,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7894336812983, -122.406956986979)",112580357-E01 -123370367,B06,12112325,Structure Fire,12/02/2012,12/02/2012,12/02/2012 12:16:45 PM,12/02/2012 12:18:22 PM,12/02/2012 12:19:07 PM,12/02/2012 12:20:26 PM,12/02/2012 12:24:08 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 12:34:51 PM,0 Block of QUARTZ WAY,SF,94131,B06,26,8166,3,3,3,false,Alarm,1,CHIEF,3,6,8,Noe Valley,"(37.7455624438295, -122.445851870392)",123370367-B06 -112230044,B04,11073542,Alarms,08/11/2011,08/10/2011,08/11/2011 04:44:28 AM,08/11/2011 04:46:00 AM,08/11/2011 04:46:18 AM,08/11/2011 04:48:54 AM,08/11/2011 04:53:01 AM,04/25/2016 02:03:13 PM,04/25/2016 02:03:13 PM,Other,08/11/2011 05:02:13 AM,1000 Block of DIVISADERO ST,SF,94115,B05,5,4152,3,3,3,false,,1,CHIEF,3,5,5,Western Addition,"(37.7791768244536, -122.438765898407)",112230044-B04 -131090121,B06,13036576,Alarms,04/19/2013,04/19/2013,04/19/2013 10:00:50 AM,04/19/2013 10:02:13 AM,04/19/2013 10:02:25 AM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,04/25/2016 01:53:14 PM,Fire,04/19/2013 10:03:55 AM,1200 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,false,Alarm,1,CHIEF,1,6,9,Mission,"(37.7531662445821, -122.416408491437)",131090121-B06 -121740301,77,12057869,Medical Incident,06/22/2012,06/22/2012,06/22/2012 07:41:38 PM,06/22/2012 07:43:07 PM,06/22/2012 07:43:31 PM,06/22/2012 07:43:44 PM,06/22/2012 07:50:00 PM,06/22/2012 08:08:13 PM,06/22/2012 08:17:38 PM,Code 2 Transport,06/22/2012 08:47:32 PM,800 Block of 39TH AVE,SF,94121,B07,34,7261,1,3,3,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7728213096769, -122.499181872365)",121740301-77 -160870016,64,16034408,Medical Incident,03/27/2016,03/26/2016,03/27/2016 12:05:23 AM,03/27/2016 12:05:23 AM,03/27/2016 12:07:30 AM,03/27/2016 12:07:30 AM,03/27/2016 12:09:21 AM,03/27/2016 12:28:23 AM,03/27/2016 12:32:58 AM,Code 2 Transport,03/27/2016 02:07:38 AM,3300 Block of MISSION ST,San Francisco,94110,B06,32,5625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7436052440139, -122.421251086174)",160870016-64 -160301898,AM10,16011798,Medical Incident,01/30/2016,01/30/2016,01/30/2016 01:06:32 PM,01/30/2016 01:06:32 PM,01/30/2016 01:09:39 PM,01/30/2016 01:10:11 PM,01/30/2016 01:15:46 PM,01/30/2016 01:24:53 PM,01/30/2016 01:34:41 PM,Code 2 Transport,01/30/2016 02:05:57 PM,TURK ST/FILLMORE ST,San Francisco,94115,B04,5,3535,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7804962596145, -122.432140390824)",160301898-AM10 -111190317,86,11039380,Medical Incident,04/29/2011,04/29/2011,04/29/2011 08:47:42 PM,04/29/2011 08:48:25 PM,04/29/2011 08:48:44 PM,04/29/2011 08:49:32 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 08:53:35 PM,ARLETA AV/BAYSHORE BL,SF,94134,B10,44,6271,3,3,3,true,,1,MEDIC,3,10,10,Visitacion Valley,"(37.7121794860551, -122.402459480179)",111190317-86 -103270069,T10,10104676,Medical Incident,11/23/2010,11/23/2010,11/23/2010 08:58:25 AM,11/23/2010 08:59:53 AM,11/23/2010 09:00:20 AM,11/23/2010 09:01:00 AM,11/23/2010 09:06:08 AM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,No Merit,11/23/2010 09:07:30 AM,1700 Block of MCALLISTER ST,SF,94117,B05,21,4254,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7774258159143, -122.440841432204)",103270069-T10 -160103563,AM14,16004214,Medical Incident,01/10/2016,01/10/2016,01/10/2016 11:02:47 PM,01/10/2016 11:04:59 PM,01/10/2016 11:05:15 PM,01/10/2016 11:06:00 PM,01/10/2016 11:27:10 PM,01/10/2016 11:27:16 PM,01/10/2016 11:46:02 PM,Code 2 Transport,01/11/2016 12:16:03 AM,100 Block of MAGELLAN AVE,San Francisco,94116,B08,39,8624,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,West of Twin Peaks,"(37.7482288559836, -122.459901063915)",160103563-AM14 -102810294,KM11,10089404,Medical Incident,10/08/2010,10/08/2010,10/08/2010 04:33:44 PM,10/08/2010 04:34:24 PM,10/08/2010 04:34:57 PM,10/08/2010 04:35:23 PM,10/08/2010 04:42:24 PM,10/08/2010 04:48:55 PM,10/08/2010 05:03:27 PM,Code 2 Transport,10/08/2010 05:12:12 PM,100 Block of TOWNSEND ST,SF,94107,B03,8,2154,3,3,3,false,,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7797688910306, -122.391686434361)",102810294-KM11 -102880074,55,10091756,Medical Incident,10/15/2010,10/14/2010,10/15/2010 07:09:49 AM,10/15/2010 07:11:03 AM,10/15/2010 07:11:31 AM,10/15/2010 07:14:37 AM,10/15/2010 07:15:52 AM,10/15/2010 07:30:20 AM,04/25/2016 02:08:05 PM,Code 2 Transport,10/15/2010 08:13:00 AM,4300 Block of 17TH ST,SF,94114,B05,6,5254,3,3,3,true,,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7621597999525, -122.441543331544)",102880074-55 -112470351,RC3,11081592,Medical Incident,09/04/2011,09/04/2011,09/04/2011 08:40:42 PM,09/04/2011 08:42:25 PM,09/04/2011 08:42:58 PM,09/04/2011 08:45:54 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 08:47:57 PM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,3,3,3,true,,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7191956969734, -122.388416108229)",112470351-RC3 -122830177,E08,12093643,Vehicle Fire,10/09/2012,10/09/2012,10/09/2012 01:09:39 PM,10/09/2012 01:09:53 PM,10/09/2012 01:10:08 PM,10/09/2012 01:11:15 PM,10/09/2012 01:12:49 PM,04/25/2016 01:56:23 PM,04/25/2016 01:56:23 PM,Fire,10/09/2012 01:14:06 PM,6TH ST/BRANNAN ST,SF,94103,B03,8,2256,3,3,3,true,Fire,1,ENGINE,2,3,6,Mission Bay,"(37.7748087750185, -122.400981567592)",122830177-E08 -120800030,54,12026437,Medical Incident,03/20/2012,03/19/2012,03/20/2012 03:29:56 AM,03/20/2012 03:30:38 AM,03/20/2012 03:34:10 AM,04/25/2016 01:59:35 PM,04/25/2016 01:59:35 PM,03/20/2012 04:28:23 AM,03/20/2012 04:35:25 AM,Code 2 Transport,03/20/2012 05:00:47 AM,1100 Block of MISSION ST,SF,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,3,2,6,South of Market,"(37.7777124404316, -122.412736707425)",120800030-54 -140170375,T06,14005996,Outside Fire,01/17/2014,01/17/2014,01/17/2014 10:51:40 PM,01/17/2014 10:52:41 PM,01/17/2014 10:55:36 PM,01/17/2014 10:57:12 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,04/25/2016 01:48:40 PM,Other,01/17/2014 10:57:47 PM,WEBSTER ST/LINDEN ST,SF,94102,B02,5,3522,,3,3,false,Fire,1,TRUCK,2,2,5,Hayes Valley,"(37.7755773752532, -122.429459887037)",140170375-T06 -110250438,E36,11008418,Medical Incident,01/25/2011,01/25/2011,01/25/2011 09:55:45 PM,01/25/2011 09:57:11 PM,01/25/2011 09:57:48 PM,01/25/2011 09:59:21 PM,01/25/2011 10:01:27 PM,04/25/2016 02:06:25 PM,04/25/2016 02:06:25 PM,Other,01/25/2011 10:13:19 PM,1600 Block of MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,ENGINE,1,2,6,Mission,"(37.7726948236861, -122.422188261426)",110250438-E36 -160650815,55,16025859,Medical Incident,03/05/2016,03/05/2016,03/05/2016 08:06:56 AM,03/05/2016 08:08:31 AM,03/05/2016 08:08:42 AM,03/05/2016 08:08:59 AM,03/05/2016 08:17:50 AM,03/05/2016 08:28:27 AM,03/05/2016 08:35:53 AM,Code 2 Transport,03/05/2016 09:14:01 AM,0 Block of MAIDEN LN,San Francisco,94108,B01,1,1241,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7882745438187, -122.404344705962)",160650815-55 -130530327,E39,13018033,Traffic Collision,02/22/2013,02/22/2013,02/22/2013 08:01:48 PM,02/22/2013 08:01:59 PM,02/22/2013 08:02:04 PM,02/22/2013 08:03:00 PM,02/22/2013 08:06:33 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Other,02/22/2013 08:28:05 PM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",130530327-E39 -121740151,E01,12057740,Medical Incident,06/22/2012,06/22/2012,06/22/2012 12:25:12 PM,06/22/2012 12:25:37 PM,06/22/2012 12:26:27 PM,06/22/2012 12:27:47 PM,06/22/2012 12:30:14 PM,04/25/2016 01:58:05 PM,04/25/2016 01:58:05 PM,Other,06/22/2012 12:34:32 PM,4TH ST/MISSION ST,SF,94103,B03,1,2213,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7844787439707, -122.404266872501)",121740151-E01 -140380395,E13,14013014,Structure Fire,02/07/2014,02/07/2014,02/07/2014 11:27:05 PM,02/07/2014 11:28:30 PM,02/07/2014 11:29:07 PM,02/07/2014 11:31:43 PM,02/07/2014 11:42:17 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/07/2014 11:50:23 PM,100 Block of ALTA ST,SF,94133,B01,28,1225,,3,3,true,Alarm,1,ENGINE,11,1,3,North Beach,"(37.8015452607194, -122.404853635897)",140380395-E13 -132470138,B04,13083290,Alarms,09/04/2013,09/04/2013,09/04/2013 10:18:29 AM,09/04/2013 10:20:10 AM,09/04/2013 10:20:40 AM,09/04/2013 10:23:11 AM,09/04/2013 10:29:26 AM,04/25/2016 01:50:58 PM,04/25/2016 01:50:58 PM,Other,09/04/2013 10:29:27 AM,2300 Block of WASHINGTON ST,SF,94115,B04,38,3436,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.7919582939249, -122.431926690023)",132470138-B04 -123630050,T03,12121352,Structure Fire,12/28/2012,12/27/2012,12/28/2012 05:53:29 AM,12/28/2012 05:53:29 AM,12/28/2012 05:53:37 AM,12/28/2012 05:55:44 AM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,04/25/2016 01:55:06 PM,Other,12/28/2012 05:56:40 AM,600 Block of LARKIN ST,SF,94109,B02,3,1643,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7835359124212, -122.417642087779)",123630050-T03 -140750325,E09,14025510,Medical Incident,03/16/2014,03/16/2014,03/16/2014 08:19:47 PM,03/16/2014 08:20:18 PM,03/16/2014 08:20:30 PM,03/16/2014 08:22:17 PM,03/16/2014 08:24:18 PM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Medical Examiner,03/16/2014 08:48:27 PM,1100 Block of YORK ST,SAN FRANCISCO,94110,B06,9,5531,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7536484606058, -122.408334854036)",140750325-E09 -102440147,91,10076946,Medical Incident,09/01/2010,09/01/2010,09/01/2010 10:44:42 AM,09/01/2010 10:44:56 AM,09/01/2010 10:45:35 AM,09/01/2010 10:48:36 AM,09/01/2010 11:02:06 AM,09/01/2010 11:26:36 AM,09/01/2010 11:38:37 AM,Code 2 Transport,09/01/2010 12:12:44 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",102440147-91 -113600063,E21,11119548,Medical Incident,12/26/2011,12/25/2011,12/26/2011 06:13:08 AM,12/26/2011 06:13:54 AM,12/26/2011 06:14:24 AM,12/26/2011 06:15:24 AM,12/26/2011 06:19:07 AM,04/25/2016 02:00:57 PM,04/25/2016 02:00:57 PM,Other,12/26/2011 06:23:42 AM,900 Block of OAK ST,SF,94117,B05,21,4141,3,2,2,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7735018159169, -122.434940936471)",113600063-E21 -111340271,88,11044646,Medical Incident,05/14/2011,05/14/2011,05/14/2011 06:29:15 PM,05/14/2011 06:30:03 PM,05/14/2011 06:31:19 PM,05/14/2011 06:31:56 PM,05/14/2011 06:35:40 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,No Merit,05/14/2011 06:41:20 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,E,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7756454671917, -122.412432457912)",111340271-88 -160500688,85,16019997,Medical Incident,02/19/2016,02/19/2016,02/19/2016 08:02:57 AM,02/19/2016 08:04:37 AM,02/19/2016 08:04:46 AM,02/19/2016 08:06:42 AM,02/19/2016 08:13:26 AM,02/19/2016 08:39:28 AM,02/19/2016 08:55:44 AM,Code 3 Transport,02/19/2016 10:00:22 AM,900 Block of JAMESTOWN AVE,San Francisco,94124,B10,17,6642,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7182677028816, -122.393038835144)",160500688-85 -121860188,T09,12061965,Outside Fire,07/04/2012,07/04/2012,07/04/2012 03:02:34 PM,07/04/2012 03:04:22 PM,07/04/2012 03:04:34 PM,07/04/2012 03:05:53 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Other,07/04/2012 03:15:42 PM,HUNTERS POINT BL/HAWES ST,SF,94124,B10,25,6632,3,3,3,false,Fire,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7336163455394, -122.376973856912)",121860188-T09 -131830057,T09,13062259,Alarms,07/02/2013,07/01/2013,07/02/2013 07:42:58 AM,07/02/2013 07:45:02 AM,07/02/2013 07:45:11 AM,07/02/2013 07:48:45 AM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,04/25/2016 01:52:00 PM,Other,07/02/2013 07:59:04 AM,900 Block of MISSOURI ST,SF,94107,B10,37,2566,3,3,3,false,Alarm,1,TRUCK,3,10,10,Potrero Hill,"(37.7552453099076, -122.39565974671)",131830057-T09 -160032652,KM05,16001307,Medical Incident,01/03/2016,01/03/2016,01/03/2016 06:47:00 PM,01/03/2016 06:47:00 PM,01/03/2016 06:58:41 PM,01/03/2016 06:59:07 PM,01/03/2016 07:18:18 PM,01/03/2016 07:22:43 PM,01/03/2016 07:35:37 PM,Code 2 Transport,01/03/2016 07:48:21 PM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,false,Non Life-threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160032652-KM05 -103060065,E02,10097797,Medical Incident,11/02/2010,11/01/2010,11/02/2010 01:31:53 AM,11/02/2010 01:33:59 AM,11/02/2010 01:35:43 AM,11/02/2010 01:37:18 AM,11/02/2010 01:38:41 AM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/02/2010 01:53:27 AM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7962885028016, -122.411294793811)",103060065-E02 -160522005,E10,16020848,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:46:52 PM,02/21/2016 02:48:37 PM,02/21/2016 02:49:01 PM,02/21/2016 02:49:41 PM,02/21/2016 02:53:21 PM,02/21/2016 03:13:29 PM,02/21/2016 03:13:30 PM,Code 2 Transport,02/21/2016 03:50:21 PM,BRODERICK ST/BROADWAY,San Francisco,94123,B04,10,4226,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7932242412519, -122.443192237139)",160522005-E10 -160772324,KM12,16030637,Medical Incident,03/17/2016,03/17/2016,03/17/2016 02:39:07 PM,03/17/2016 02:41:05 PM,03/17/2016 02:43:53 PM,03/17/2016 02:43:53 PM,03/17/2016 03:10:23 PM,03/17/2016 03:33:42 PM,03/17/2016 03:33:45 PM,Code 2 Transport,03/17/2016 04:10:13 PM,800 Block of JACKSON ST,San Francisco,94108,B01,2,1354,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",160772324-KM12 -140820245,E35,14027752,Alarms,03/23/2014,03/23/2014,03/23/2014 05:50:13 PM,03/23/2014 05:51:36 PM,03/23/2014 05:52:20 PM,03/23/2014 05:53:14 PM,03/23/2014 05:56:47 PM,04/25/2016 01:47:35 PM,04/25/2016 01:47:35 PM,Fire,03/23/2014 06:09:31 PM,0 Block of TOWNSEND ST,SAN FRANCISCO,94107,B03,35,938,3,3,3,true,Alarm,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7817167732365, -122.389149167513)",140820245-E35 -140200340,E43,14006998,Medical Incident,01/20/2014,01/20/2014,01/20/2014 09:09:19 PM,01/20/2014 09:10:46 PM,01/20/2014 09:10:57 PM,01/20/2014 09:12:24 PM,01/20/2014 09:13:30 PM,04/25/2016 01:48:37 PM,04/25/2016 01:48:37 PM,Other,01/20/2014 09:49:18 PM,500 Block of MUNICH ST,SF,94112,B09,43,6161,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Excelsior,"(37.7170496406965, -122.429629190911)",140200340-E43 -160553767,AM20,16022153,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:48:34 PM,02/24/2016 08:48:43 PM,02/24/2016 08:49:01 PM,02/24/2016 08:49:41 PM,02/24/2016 08:56:19 PM,02/24/2016 09:23:20 PM,02/24/2016 09:44:32 PM,Code 2 Transport,02/24/2016 10:31:48 PM,700 Block of HEAD ST,San Francisco,94132,B09,33,8433,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Oceanview/Merced/Ingleside,"(37.7206866121124, -122.464403388281)",160553767-AM20 -131690217,KM12,13057402,Odor (Strange / Unknown),06/18/2013,06/18/2013,06/18/2013 12:46:32 PM,06/18/2013 12:48:09 PM,06/18/2013 12:51:17 PM,06/18/2013 12:51:59 PM,06/18/2013 12:55:38 PM,06/18/2013 01:13:34 PM,06/18/2013 01:21:55 PM,Code 2 Transport,06/18/2013 01:43:39 PM,1300 Block of PIERCE ST,SF,94115,B05,5,3647,3,3,3,false,Alarm,1,PRIVATE,4,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",131690217-KM12 -160251440,71,16009897,Medical Incident,01/25/2016,01/25/2016,01/25/2016 11:16:42 AM,01/25/2016 11:19:12 AM,01/25/2016 11:19:22 AM,01/25/2016 11:28:34 AM,01/25/2016 11:28:57 AM,01/25/2016 12:05:43 PM,01/25/2016 12:05:44 PM,Code 2 Transport,01/25/2016 12:35:47 PM,1400 Block of SOMERSET ST,San Francisco,94134,B10,44,6265,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Visitacion Valley,"(37.7141565290694, -122.40229371753)",160251440-71 -130130091,89,13004347,Medical Incident,01/13/2013,01/12/2013,01/13/2013 04:30:32 AM,01/13/2013 04:31:27 AM,01/13/2013 04:33:58 AM,01/13/2013 04:34:26 AM,01/13/2013 04:38:44 AM,01/13/2013 04:57:59 AM,01/13/2013 05:16:38 AM,Code 2 Transport,01/13/2013 05:46:21 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",130130091-89 -102670221,84,10084534,Medical Incident,09/24/2010,09/24/2010,09/24/2010 03:00:28 PM,09/24/2010 03:01:12 PM,09/24/2010 03:06:00 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,04/25/2016 02:08:26 PM,Other,09/24/2010 03:06:33 PM,200 Block of FREMONT ST,SF,94105,B03,35,2137,3,2,2,true,,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7889437645084, -122.394688229661)",102670221-84 -131740300,E43,13059157,Medical Incident,06/23/2013,06/23/2013,06/23/2013 06:10:42 PM,06/23/2013 06:10:43 PM,06/23/2013 06:11:52 PM,06/23/2013 06:12:53 PM,06/23/2013 06:15:21 PM,04/25/2016 01:52:09 PM,04/25/2016 01:52:09 PM,Other,06/23/2013 06:24:05 PM,100 Block of DUBLIN ST,SF,94112,B09,43,6165,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7178073238376, -122.42704025216)",131740300-E43 -140410108,83,14013862,Medical Incident,02/10/2014,02/10/2014,02/10/2014 09:14:10 AM,02/10/2014 09:14:10 AM,02/10/2014 09:23:05 AM,02/10/2014 09:23:13 AM,02/10/2014 09:51:40 AM,04/25/2016 01:48:17 PM,04/25/2016 01:48:17 PM,Unable to Locate,02/10/2014 09:53:55 AM,900 Block of POLK ST,SF,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",140410108-83 -133340194,67,13113251,Medical Incident,11/30/2013,11/30/2013,11/30/2013 01:59:11 PM,11/30/2013 01:59:42 PM,11/30/2013 01:59:55 PM,11/30/2013 02:01:21 PM,11/30/2013 02:04:22 PM,11/30/2013 02:22:06 PM,11/30/2013 02:36:05 PM,Code 2 Transport,11/30/2013 03:09:50 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",133340194-67 -132660355,E14,13090396,Medical Incident,09/23/2013,09/23/2013,09/23/2013 07:18:01 PM,09/23/2013 07:25:33 PM,09/23/2013 07:26:04 PM,09/23/2013 07:27:23 PM,09/23/2013 07:28:36 PM,04/25/2016 01:50:37 PM,09/23/2013 08:07:19 PM,Other,09/23/2013 08:25:56 PM,600 Block of 25TH AVE,SF,94121,B07,14,7212,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7772371431568, -122.484458855581)",132660355-E14 -112770285,E05,11091777,Medical Incident,10/04/2011,10/04/2011,10/04/2011 04:48:18 PM,10/04/2011 04:49:40 PM,10/04/2011 04:50:18 PM,10/04/2011 04:51:26 PM,10/04/2011 04:52:35 PM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 05:10:52 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",112770285-E05 -102760133,T03,10087690,Medical Incident,10/03/2010,10/03/2010,10/03/2010 10:07:55 AM,10/03/2010 10:09:56 AM,10/03/2010 10:10:10 AM,10/03/2010 10:12:36 AM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 10:14:27 AM,900 Block of FRANKLIN ST,SF,94109,B02,3,3221,3,3,3,false,,1,TRUCK,4,2,5,Western Addition,"(37.7833939650918, -122.422536931307)",102760133-T03 -160030208,79,16001006,Medical Incident,01/03/2016,01/02/2016,01/03/2016 01:15:36 AM,01/03/2016 01:18:14 AM,01/03/2016 01:19:26 AM,01/03/2016 01:19:35 AM,01/03/2016 01:27:26 AM,01/03/2016 01:48:23 AM,01/03/2016 01:59:23 AM,Code 2 Transport,01/03/2016 02:27:34 AM,400 Block of POST ST,San Francisco,94102,B01,1,1362,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",160030208-79 -160631376,63,16025036,Medical Incident,03/03/2016,03/03/2016,03/03/2016 11:04:59 AM,03/03/2016 11:04:59 AM,03/03/2016 11:06:08 AM,03/03/2016 11:06:21 AM,03/03/2016 11:19:43 AM,03/03/2016 11:30:28 AM,03/03/2016 11:42:18 AM,Code 2 Transport,03/03/2016 12:10:54 PM,2000 Block of CHESTNUT ST,San Francisco,94123,B04,16,3554,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Marina,"(37.8008031731089, -122.436797742278)",160631376-63 -160313338,85,16012332,Medical Incident,01/31/2016,01/31/2016,01/31/2016 08:20:36 PM,01/31/2016 08:21:32 PM,01/31/2016 08:22:09 PM,01/31/2016 08:22:21 PM,01/31/2016 08:27:00 PM,01/31/2016 08:40:37 PM,01/31/2016 08:47:47 PM,Code 2 Transport,01/31/2016 09:16:59 PM,7TH ST/HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7779770860913, -122.409387007126)",160313338-85 -120050169,E38,12001720,Medical Incident,01/05/2012,01/05/2012,01/05/2012 12:28:12 PM,01/05/2012 12:29:01 PM,01/05/2012 12:29:19 PM,01/05/2012 12:29:49 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,04/25/2016 02:00:46 PM,Other,01/05/2012 12:30:43 PM,2000 Block of SACRAMENTO ST,SF,94109,B04,38,3326,3,2,2,false,Non Life-threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7907164232714, -122.426614088537)",120050169-E38 -111280139,89,11042318,Medical Incident,05/08/2011,05/08/2011,05/08/2011 11:44:02 AM,05/08/2011 11:44:56 AM,05/08/2011 11:45:31 AM,05/08/2011 11:45:37 AM,05/08/2011 11:50:00 AM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,Other,05/08/2011 11:52:21 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,E,E,3,true,,1,MEDIC,3,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",111280139-89 -123390030,AM18,12112940,Medical Incident,12/04/2012,12/03/2012,12/04/2012 03:01:19 AM,12/04/2012 03:01:39 AM,12/04/2012 03:03:17 AM,12/04/2012 03:04:22 AM,12/04/2012 03:16:44 AM,12/04/2012 03:25:56 AM,12/04/2012 03:43:19 AM,Code 2 Transport,12/04/2012 04:13:50 AM,CLAY ST/DRUMM ST,SF,94111,B01,13,1116,3,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.795466113999, -122.39677157393)",123390030-AM18 -132800209,RC2,13095308,Medical Incident,10/07/2013,10/07/2013,10/07/2013 01:39:41 PM,10/07/2013 01:40:24 PM,10/07/2013 01:40:38 PM,10/07/2013 01:41:39 PM,10/07/2013 01:46:38 PM,04/25/2016 01:50:22 PM,04/25/2016 01:50:22 PM,Other,10/07/2013 01:57:19 PM,0 Block of SEYMOUR ST,SF,94115,B05,5,4134,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,5,5,Western Addition,"(37.7792900134424, -122.437869182837)",132800209-RC2 -123600130,E01,12120467,Medical Incident,12/25/2012,12/25/2012,12/25/2012 12:07:39 PM,12/25/2012 12:09:45 PM,12/25/2012 12:10:06 PM,12/25/2012 12:10:43 PM,12/25/2012 12:13:37 PM,04/25/2016 01:55:08 PM,04/25/2016 01:55:08 PM,Other,12/25/2012 12:22:31 PM,100 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7803099082814, -122.407975093043)",123600130-E01 -133600227,94,13122388,Medical Incident,12/26/2013,12/26/2013,12/26/2013 03:19:46 PM,12/26/2013 03:21:29 PM,12/26/2013 03:23:24 PM,12/26/2013 03:23:35 PM,12/26/2013 03:55:51 PM,12/26/2013 04:09:54 PM,12/26/2013 04:15:21 PM,Code 2 Transport,12/26/2013 04:58:19 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",133600227-94 -110110290,E16,11003768,Electrical Hazard,01/11/2011,01/11/2011,01/11/2011 07:48:12 PM,01/11/2011 07:51:12 PM,01/11/2011 07:51:43 PM,01/11/2011 07:52:41 PM,01/11/2011 07:54:41 PM,04/25/2016 02:06:38 PM,04/25/2016 02:06:38 PM,Fire,01/11/2011 08:02:05 PM,2400 Block of CHESTNUT ST,SF,94123,B04,16,4211,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.7999259626699, -122.4436920031)",110110290-E16 -160520552,64,16020695,Medical Incident,02/21/2016,02/20/2016,02/21/2016 04:12:32 AM,02/21/2016 04:14:33 AM,02/21/2016 04:14:41 AM,02/21/2016 04:15:25 AM,02/21/2016 04:18:43 AM,02/21/2016 04:35:13 AM,02/21/2016 04:42:50 AM,Code 2 Transport,02/21/2016 05:20:04 AM,300 Block of TURK ST,San Francisco,94102,B02,3,1554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",160520552-64 -140340033,84,14011374,Medical Incident,02/03/2014,02/02/2014,02/03/2014 03:58:42 AM,02/03/2014 03:59:59 AM,02/03/2014 04:00:51 AM,02/03/2014 04:01:08 AM,02/03/2014 04:09:46 AM,02/03/2014 04:16:23 AM,02/03/2014 04:27:55 AM,Code 2 Transport,02/03/2014 05:44:09 AM,400 Block of THE EMBARCADERO,SF,94111,B01,13,907,,E,3,false,Potentially Life-Threatening,1,MEDIC,5,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",140340033-84 -112160063,68,11071234,Medical Incident,08/04/2011,08/03/2011,08/04/2011 04:53:42 AM,08/04/2011 04:54:18 AM,08/04/2011 04:54:36 AM,04/25/2016 02:03:20 PM,08/04/2011 05:05:37 AM,08/04/2011 05:25:21 AM,08/04/2011 05:31:06 AM,Code 2 Transport,08/04/2011 06:14:04 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,true,,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",112160063-68 -113530056,65,11117086,Medical Incident,12/19/2011,12/18/2011,12/19/2011 04:25:50 AM,12/19/2011 04:26:10 AM,12/19/2011 04:26:23 AM,04/25/2016 02:01:05 PM,12/19/2011 04:44:42 AM,12/19/2011 04:56:30 AM,12/19/2011 05:08:35 AM,Code 2 Transport,12/19/2011 05:36:10 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",113530056-65 -120270258,87,12009124,Medical Incident,01/27/2012,01/27/2012,01/27/2012 03:28:49 PM,01/27/2012 03:29:43 PM,01/27/2012 03:33:46 PM,01/27/2012 03:34:16 PM,01/27/2012 03:48:54 PM,04/25/2016 02:00:25 PM,04/25/2016 02:00:25 PM,Patient Declined Transport,01/27/2012 04:05:16 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",120270258-87 -122730378,85,12090213,Medical Incident,09/29/2012,09/29/2012,09/29/2012 11:20:34 PM,09/29/2012 11:21:33 PM,09/29/2012 11:22:07 PM,09/29/2012 11:22:28 PM,09/29/2012 11:39:08 PM,09/29/2012 11:45:39 PM,09/30/2012 12:08:09 AM,Code 2 Transport,09/30/2012 12:46:16 AM,VIENNA ST/AMAZON AV,SF,94112,B09,43,6136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.715065229941, -122.434491728352)",122730378-85 -110030331,E25,11001095,Outside Fire,01/03/2011,01/03/2011,01/03/2011 08:14:12 PM,01/03/2011 08:16:19 PM,01/03/2011 08:16:35 PM,01/03/2011 08:17:26 PM,01/03/2011 08:19:35 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/03/2011 08:21:35 PM,MENDELL ST/HUDSON AV,SF,94124,B10,25,6521,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7389830515892, -122.386398905378)",110030331-E25 -111140006,B04,11037519,Structure Fire,04/24/2011,04/23/2011,04/24/2011 12:20:52 AM,04/24/2011 12:21:56 AM,04/24/2011 12:22:09 AM,04/24/2011 12:24:40 AM,04/24/2011 12:25:12 AM,04/25/2016 02:04:57 PM,04/25/2016 02:04:57 PM,Other,04/24/2011 12:48:33 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,,1,CHIEF,3,4,5,Japantown,"(37.7869733159879, -122.425845942974)",111140006-B04 -103600123,AM16,10115492,Medical Incident,12/26/2010,12/26/2010,12/26/2010 12:44:07 PM,12/26/2010 12:44:41 PM,12/26/2010 12:44:51 PM,12/26/2010 12:45:45 PM,12/26/2010 12:51:00 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Patient Declined Transport,12/26/2010 01:18:01 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,E,E,3,false,,1,PRIVATE,3,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",103600123-AM16 -140840196,E10,14028318,Traffic Collision,03/25/2014,03/25/2014,03/25/2014 01:58:13 PM,03/25/2014 01:58:13 PM,03/25/2014 01:59:25 PM,03/25/2014 02:00:39 PM,03/25/2014 02:05:07 PM,04/25/2016 01:47:34 PM,04/25/2016 01:47:34 PM,Code 2 Transport,03/25/2014 02:13:57 PM,CALIFORNIA ST/CHERRY ST,SAN FRANCISCO,94118,B07,10,4436,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7860000289549, -122.456685171426)",140840196-E10 -160010997,89,16000185,Medical Incident,01/01/2016,12/31/2015,01/01/2016 04:29:51 AM,01/01/2016 04:30:51 AM,01/01/2016 04:32:38 AM,01/01/2016 04:33:08 AM,01/01/2016 04:37:23 AM,01/01/2016 05:00:44 AM,01/01/2016 05:14:42 AM,Code 2 Transport,01/01/2016 05:28:23 AM,700 Block of GATES ST,San Francisco,94110,B06,32,5747,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7340443707548, -122.414310373999)",160010997-89 -111790312,E38,11059224,Medical Incident,06/28/2011,06/28/2011,06/28/2011 08:19:09 PM,06/28/2011 08:20:10 PM,06/28/2011 08:20:23 PM,06/28/2011 08:21:30 PM,06/28/2011 08:23:29 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/28/2011 08:34:11 PM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,2,2,false,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",111790312-E38 -160701348,77,16027820,Medical Incident,03/10/2016,03/10/2016,03/10/2016 11:21:30 AM,03/10/2016 11:23:17 AM,03/10/2016 11:23:53 AM,03/10/2016 11:24:06 AM,03/10/2016 11:33:07 AM,03/10/2016 11:50:10 AM,03/10/2016 12:05:08 PM,Code 2 Transport,03/10/2016 01:11:49 PM,100 Block of LELAND AVE,San Francisco,94134,B09,44,6256,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Visitacion Valley,"(37.7120587970619, -122.406110809152)",160701348-77 -132330172,KM06,13078659,Medical Incident,08/21/2013,08/21/2013,08/21/2013 12:47:47 PM,08/21/2013 12:49:15 PM,08/21/2013 12:49:42 PM,08/21/2013 12:50:32 PM,08/21/2013 12:58:08 PM,08/21/2013 01:15:22 PM,08/21/2013 01:32:09 PM,Code 2 Transport,08/21/2013 02:01:55 PM,0 Block of AVENUE OF THE PALMS,TI,94130,B03,48,2931,3,3,3,false,Non Life-threatening,1,PRIVATE,2,None,6,Treasure Island,"(37.8153429065568, -122.371308172548)",132330172-KM06 -110710180,E07,11023352,Medical Incident,03/12/2011,03/12/2011,03/12/2011 11:33:37 AM,03/12/2011 11:34:15 AM,03/12/2011 11:34:28 AM,03/12/2011 11:35:26 AM,03/12/2011 11:37:08 AM,04/25/2016 02:05:40 PM,04/25/2016 02:05:40 PM,Other,03/12/2011 11:45:31 AM,MISSION ST/20TH ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",110710180-E07 -111730072,E38,11056985,Medical Incident,06/22/2011,06/21/2011,06/22/2011 07:15:12 AM,06/22/2011 07:15:43 AM,06/22/2011 07:16:24 AM,06/22/2011 07:19:02 AM,06/22/2011 07:19:42 AM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 07:42:40 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,ENGINE,1,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",111730072-E38 -112110206,E14,11069654,Medical Incident,07/30/2011,07/30/2011,07/30/2011 02:39:42 PM,07/30/2011 02:40:28 PM,07/30/2011 02:41:31 PM,07/30/2011 02:41:44 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,04/25/2016 02:03:25 PM,Other,04/25/2016 02:03:25 PM,600 Block of POINT LOBOS AVE,SF,94121,B07,34,7313,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7797358015778, -122.510476185261)",112110206-E14 -160891876,53,16035339,Medical Incident,03/29/2016,03/29/2016,03/29/2016 01:00:23 PM,03/29/2016 01:01:47 PM,03/29/2016 01:03:00 PM,03/29/2016 01:03:07 PM,03/29/2016 01:11:49 PM,03/29/2016 01:29:05 PM,03/29/2016 02:09:20 PM,Code 2 Transport,03/29/2016 02:39:31 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160891876-53 -130910311,66,13030557,Medical Incident,04/01/2013,04/01/2013,04/01/2013 06:10:10 PM,04/01/2013 06:11:18 PM,04/01/2013 06:11:43 PM,04/01/2013 06:13:44 PM,04/01/2013 06:15:36 PM,04/01/2013 10:19:06 PM,04/01/2013 10:38:08 PM,Code 2 Transport,04/01/2013 11:24:18 PM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Non Life-threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",130910311-66 -160203543,71,16008168,Traffic Collision,01/20/2016,01/20/2016,01/20/2016 08:45:29 PM,01/20/2016 08:45:29 PM,01/20/2016 08:45:29 PM,01/20/2016 08:45:29 PM,01/20/2016 08:45:29 PM,01/20/2016 08:58:02 PM,01/20/2016 08:58:54 PM,Code 2 Transport,01/20/2016 09:51:15 PM,VALENCIA ST/CESAR CHAVEZ ST,San Francisco,94110,B99,11,5612,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7481252844229, -122.420278831044)",160203543-71 -132680101,58,13090921,Medical Incident,09/25/2013,09/25/2013,09/25/2013 09:45:05 AM,09/25/2013 09:45:12 AM,09/25/2013 09:45:39 AM,09/25/2013 09:45:54 AM,09/25/2013 09:52:00 AM,09/25/2013 10:13:22 AM,09/25/2013 10:33:32 AM,Code 2 Transport,09/25/2013 10:48:27 AM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",132680101-58 -160311507,63,16012147,Medical Incident,01/31/2016,01/31/2016,01/31/2016 12:05:53 PM,01/31/2016 12:06:36 PM,01/31/2016 12:07:23 PM,01/31/2016 12:07:59 PM,01/31/2016 12:12:04 PM,01/31/2016 12:26:28 PM,01/31/2016 12:31:08 PM,Code 3 Transport,01/31/2016 01:28:43 PM,1400 Block of GROVE ST,San Francisco,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",160311507-63 -130820359,RS2,13027605,Medical Incident,03/23/2013,03/23/2013,03/23/2013 11:34:20 PM,03/23/2013 11:34:59 PM,03/23/2013 11:35:27 PM,03/23/2013 11:37:12 PM,03/23/2013 11:38:49 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/23/2013 11:43:33 PM,3200 Block of 17TH ST,SF,94110,B02,7,5246,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,2,9,Mission,"(37.7635175983002, -122.419004027906)",130820359-RS2 -160272494,AM14,16010750,Medical Incident,01/27/2016,01/27/2016,01/27/2016 03:46:26 PM,01/27/2016 03:47:35 PM,01/27/2016 03:47:52 PM,01/27/2016 03:48:38 PM,01/27/2016 03:54:53 PM,01/27/2016 04:14:15 PM,01/27/2016 04:25:37 PM,Code 2 Transport,01/27/2016 04:47:10 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160272494-AM14 -111020260,B03,11033887,Water Rescue,04/12/2011,04/12/2011,04/12/2011 04:08:20 PM,04/12/2011 04:08:53 PM,04/12/2011 04:09:54 PM,04/12/2011 04:11:45 PM,04/12/2011 04:13:34 PM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/12/2011 05:13:18 PM,900 Block of 3RD ST,SF,94158,B03,8,946,3,3,3,false,,1,CHIEF,2,None,6,None,"(37.7765531472403, -122.390007762623)",111020260-B03 -103600016,B01,10115393,Medical Incident,12/26/2010,12/25/2010,12/26/2010 01:52:51 AM,12/26/2010 01:53:23 AM,12/26/2010 01:53:44 AM,12/26/2010 01:56:12 AM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 01:59:58 AM,0 Block of GEARY ST,SF,94108,B01,1,1241,3,3,3,false,,1,CHIEF,3,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",103600016-B01 -160713103,79,16028348,Medical Incident,03/11/2016,03/11/2016,03/11/2016 07:34:43 PM,03/11/2016 07:35:07 PM,03/11/2016 07:35:35 PM,03/11/2016 07:35:43 PM,03/11/2016 07:41:15 PM,03/11/2016 08:09:35 PM,03/11/2016 08:20:42 PM,Code 2 Transport,03/11/2016 08:55:51 PM,0 Block of HAGIWARA TEA GARDEN DR,San Francisco,94118,B07,31,7742,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Golden Gate Park,"(37.770876773723, -122.468208184284)",160713103-79 -132240203,T13,13075645,Alarms,08/12/2013,08/12/2013,08/12/2013 01:47:47 PM,08/12/2013 01:48:34 PM,08/12/2013 01:48:49 PM,08/12/2013 01:50:06 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,04/25/2016 01:51:20 PM,Other,08/12/2013 01:52:36 PM,400 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7901507738746, -122.397180897548)",132240203-T13 -103640088,RC1,10116689,Medical Incident,12/30/2010,12/29/2010,12/30/2010 07:52:16 AM,12/30/2010 07:52:38 AM,12/30/2010 07:52:47 AM,12/30/2010 07:54:48 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/30/2010 08:07:15 AM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,E,3,true,,1,RESCUE CAPTAIN,4,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",103640088-RC1 -160770336,89,16030436,Medical Incident,03/17/2016,03/16/2016,03/17/2016 03:43:45 AM,03/17/2016 03:43:45 AM,03/17/2016 03:45:03 AM,03/17/2016 03:45:18 AM,03/17/2016 03:57:30 AM,03/17/2016 04:25:06 AM,03/17/2016 04:35:25 AM,Code 2 Transport,03/17/2016 05:29:59 AM,25TH ST/3RD ST,San Francisco,94107,B10,25,2611,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7528356119566, -122.38775628178)",160770336-89 -120730365,E01,12024378,Medical Incident,03/13/2012,03/13/2012,03/13/2012 10:27:28 PM,03/13/2012 10:28:53 PM,03/13/2012 10:29:11 PM,03/13/2012 10:30:22 PM,03/13/2012 10:33:05 PM,04/25/2016 01:59:41 PM,04/25/2016 01:59:41 PM,Other,03/13/2012 10:38:12 PM,400 Block of MINNA ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7810688918781, -122.407387172098)",120730365-E01 -113480218,94,11115485,Medical Incident,12/14/2011,12/14/2011,12/14/2011 01:37:02 PM,12/14/2011 01:38:46 PM,12/14/2011 01:43:10 PM,12/14/2011 01:43:23 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,04/25/2016 02:01:09 PM,2800 Block of MISSION ST,SF,94110,B06,11,5525,1,1,2,true,,1,MEDIC,2,6,9,Mission,"(37.7514352757454, -122.41843553803)",113480218-94 -160461010,52,16018449,Medical Incident,02/15/2016,02/15/2016,02/15/2016 09:41:31 AM,02/15/2016 09:44:18 AM,02/15/2016 09:46:28 AM,02/15/2016 09:46:51 AM,02/15/2016 10:04:59 AM,02/15/2016 10:28:37 AM,02/15/2016 10:46:43 AM,Code 2 Transport,02/15/2016 11:32:15 AM,1100 Block of WEBSTER ST,San Francisco,94115,B05,5,3515,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",160461010-52 -160783379,KM12,16031155,Medical Incident,03/18/2016,03/18/2016,03/18/2016 07:29:16 PM,03/18/2016 07:30:40 PM,03/18/2016 07:30:49 PM,03/18/2016 07:31:17 PM,03/18/2016 07:36:08 PM,03/18/2016 07:51:03 PM,03/18/2016 08:26:56 PM,Code 2 Transport,03/18/2016 09:03:35 PM,3800 Block of CALIFORNIA ST,San Francisco,94118,B07,10,7114,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,2,Presidio Heights,"(37.7859482696141, -122.457523579437)",160783379-KM12 -160442926,78,16017813,Medical Incident,02/13/2016,02/13/2016,02/13/2016 06:46:23 PM,02/13/2016 06:46:57 PM,02/13/2016 06:47:30 PM,02/13/2016 06:47:37 PM,02/13/2016 06:54:52 PM,02/13/2016 07:10:27 PM,02/13/2016 07:28:26 PM,Code 3 Transport,02/13/2016 08:37:14 PM,200 Block of ACACIA AV,San Francisco,94124,B10,25,6554,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7367325100422, -122.380566558905)",160442926-78 -160482594,56,16019408,Medical Incident,02/17/2016,02/17/2016,02/17/2016 03:54:03 PM,02/17/2016 03:55:43 PM,02/17/2016 03:56:21 PM,02/17/2016 03:57:04 PM,02/17/2016 04:03:49 PM,02/17/2016 04:20:46 PM,02/17/2016 04:29:02 PM,Code 2 Transport,02/17/2016 05:06:26 PM,7TH AV/IRVING ST,San Francisco,94122,B08,22,7332,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,5,Inner Sunset,"(37.7641308708366, -122.46417202271)",160482594-56 -160872953,52,16034685,Medical Incident,03/27/2016,03/27/2016,03/27/2016 06:50:37 PM,03/27/2016 06:53:02 PM,03/27/2016 06:54:37 PM,03/27/2016 06:54:45 PM,03/27/2016 07:01:52 PM,03/27/2016 07:12:47 PM,03/27/2016 07:32:56 PM,Code 2 Transport,03/27/2016 08:10:46 PM,500 Block of NATOMA ST,San Francisco,94103,B03,1,2252,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7796886144323, -122.408201798882)",160872953-52 -160630679,62,16024970,Medical Incident,03/03/2016,03/02/2016,03/03/2016 07:42:33 AM,03/03/2016 07:43:21 AM,03/03/2016 07:43:56 AM,03/03/2016 07:44:09 AM,03/03/2016 07:47:44 AM,03/03/2016 08:07:52 AM,03/03/2016 08:21:20 AM,Code 2 Transport,03/03/2016 08:44:03 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160630679-62 -111840197,68,11060788,Medical Incident,07/03/2011,07/03/2011,07/03/2011 01:39:27 PM,07/03/2011 01:41:09 PM,07/03/2011 01:42:00 PM,07/03/2011 01:42:18 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,04/25/2016 02:03:51 PM,Other,04/25/2016 02:03:51 PM,1100 Block of MISSION ST,SF,94103,B02,1,2318,2,2,2,true,,1,MEDIC,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",111840197-68 -111230258,E42,11040682,Structure Fire,05/03/2011,05/03/2011,05/03/2011 03:58:38 PM,05/03/2011 03:59:13 PM,05/03/2011 03:59:18 PM,04/25/2016 02:04:48 PM,05/03/2011 04:01:51 PM,04/25/2016 02:04:48 PM,04/25/2016 02:04:48 PM,Other,05/03/2011 04:10:53 PM,0 Block of SCOTIA AVE,SF,94124,B10,42,6363,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7337135883349, -122.401319078602)",111230258-E42 -160893903,65,16035516,Medical Incident,03/29/2016,03/29/2016,03/29/2016 10:32:40 PM,03/29/2016 10:32:40 PM,03/29/2016 10:33:17 PM,03/29/2016 10:33:26 PM,03/29/2016 10:34:50 PM,03/29/2016 10:42:29 PM,03/29/2016 10:53:44 PM,Code 2 Transport,03/29/2016 11:54:01 PM,MARKET ST/11TH ST,San Francisco,94103,B02,36,3111,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7755581612992, -122.41865858352)",160893903-65 -160850831,67,16033675,Medical Incident,03/25/2016,03/25/2016,03/25/2016 08:21:01 AM,03/25/2016 08:21:01 AM,03/25/2016 08:21:21 AM,03/25/2016 08:21:44 AM,03/25/2016 08:33:22 AM,03/25/2016 08:48:01 AM,03/25/2016 09:04:47 AM,Code 2 Transport,03/25/2016 09:43:15 AM,1400 Block of VAN DYKE AV,San Francisco,94124,B10,17,6651,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.727526799612, -122.389650110891)",160850831-67 -121340151,KM11,12044581,Medical Incident,05/13/2012,05/13/2012,05/13/2012 12:14:59 PM,05/13/2012 12:17:20 PM,05/13/2012 12:17:51 PM,05/13/2012 12:18:26 PM,05/13/2012 12:23:27 PM,05/13/2012 12:39:51 PM,05/13/2012 12:54:32 PM,Code 2 Transport,05/13/2012 01:25:47 PM,600 Block of 23RD AVE,SF,94121,B07,14,7177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7754703290477, -122.482182023429)",121340151-KM11 -122190347,RS1,12072794,Medical Incident,08/06/2012,08/06/2012,08/06/2012 09:10:11 PM,08/06/2012 09:11:35 PM,08/06/2012 09:11:44 PM,08/06/2012 09:12:17 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,04/25/2016 01:57:21 PM,Other,08/06/2012 09:13:25 PM,100 Block of MASON ST,SF,94102,B03,1,1366,E,E,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,4,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",122190347-RS1 -112760088,E10,11091275,Medical Incident,10/03/2011,10/03/2011,10/03/2011 08:03:29 AM,10/03/2011 08:05:01 AM,10/03/2011 08:05:41 AM,10/03/2011 08:07:19 AM,10/03/2011 08:10:28 AM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 08:24:29 AM,0 Block of 6TH AVE,SF,94118,B07,31,7126,3,3,3,true,,1,ENGINE,1,7,2,Inner Richmond,"(37.7875208493097, -122.464824318703)",112760088-E10 -131170292,D3,13039449,Structure Fire,04/27/2013,04/27/2013,04/27/2013 06:32:00 PM,04/27/2013 06:32:34 PM,04/27/2013 06:33:13 PM,04/27/2013 06:34:07 PM,04/27/2013 06:36:32 PM,04/25/2016 01:53:05 PM,04/25/2016 01:53:05 PM,Other,04/27/2013 06:44:55 PM,300 Block of DOLORES ST,SF,94114,B02,6,5251,3,3,3,false,Alarm,1,CHIEF,4,2,8,Castro/Upper Market,"(37.7634973385648, -122.426428418645)",131170292-D3 -131940266,E31,13066026,Structure Fire,07/13/2013,07/13/2013,07/13/2013 06:21:52 PM,07/13/2013 06:22:28 PM,07/13/2013 06:22:51 PM,07/13/2013 06:24:04 PM,07/13/2013 06:25:24 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Other,07/13/2013 06:58:10 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,3,3,3,true,Fire,1,ENGINE,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",131940266-E31 -110240077,E06,11007795,Medical Incident,01/24/2011,01/23/2011,01/24/2011 07:55:48 AM,01/24/2011 07:58:29 AM,01/24/2011 07:58:41 AM,01/24/2011 08:00:07 AM,01/24/2011 08:02:25 AM,04/25/2016 02:06:27 PM,04/25/2016 02:06:27 PM,Other,01/24/2011 08:06:21 AM,100 Block of STATES ST,SF,94114,B05,6,5253,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7634100549888, -122.439065072138)",110240077-E06 -122260360,T19,12075071,Other,08/13/2012,08/13/2012,08/13/2012 08:47:00 PM,08/13/2012 08:47:15 PM,08/13/2012 08:47:37 PM,08/13/2012 08:49:03 PM,08/13/2012 08:54:40 PM,04/25/2016 01:57:15 PM,04/25/2016 01:57:15 PM,Other,08/13/2012 09:12:57 PM,500 Block of JOHN MUIR DR,SF,94132,B08,19,8714,3,3,3,false,Alarm,1,TRUCK,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",122260360-T19 -111890295,E43,11062579,Medical Incident,07/08/2011,07/08/2011,07/08/2011 05:31:12 PM,07/08/2011 05:31:59 PM,07/08/2011 05:32:09 PM,07/08/2011 05:34:39 PM,07/08/2011 05:36:18 PM,04/25/2016 02:03:45 PM,04/25/2016 02:03:45 PM,Other,07/08/2011 05:51:14 PM,1700 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7121495088226, -122.417141225728)",111890295-E43 -121950009,E28,12064765,Medical Incident,07/13/2012,07/12/2012,07/13/2012 01:05:14 AM,07/13/2012 01:05:52 AM,07/13/2012 01:06:40 AM,07/13/2012 01:08:24 AM,07/13/2012 01:12:10 AM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,Other,07/13/2012 01:44:12 AM,3000 Block of POLK ST,SF,94109,B01,28,3134,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,2,Russian Hill,"(37.8048296798807, -122.423492217164)",121950009-E28 -131600234,AM02,13054399,Medical Incident,06/09/2013,06/09/2013,06/09/2013 04:09:29 PM,06/09/2013 04:12:49 PM,06/09/2013 04:13:05 PM,06/09/2013 04:13:43 PM,06/09/2013 04:21:40 PM,06/09/2013 04:52:19 PM,04/25/2016 01:52:22 PM,Code 2 Transport,06/09/2013 05:25:22 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",131600234-AM02 -140290142,E25,14009848,Electrical Hazard,01/29/2014,01/29/2014,01/29/2014 10:47:08 AM,01/29/2014 10:48:58 AM,01/29/2014 10:49:05 AM,01/29/2014 10:49:32 AM,01/29/2014 10:52:27 AM,04/25/2016 01:48:29 PM,04/25/2016 01:48:29 PM,Other,01/29/2014 10:55:56 AM,LA SALLE AV/NEWHALL ST,SF,94124,B10,25,6467,3,3,3,false,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7375417248864, -122.390521101725)",140290142-E25 -110060394,95,11002157,Medical Incident,01/06/2011,01/06/2011,01/06/2011 10:37:30 PM,01/06/2011 10:38:00 PM,01/06/2011 10:38:14 PM,01/06/2011 10:38:42 PM,01/06/2011 10:43:57 PM,01/06/2011 11:16:55 PM,01/06/2011 11:17:04 PM,Code 2 Transport,01/07/2011 12:07:50 AM,300 Block of JOOST AVE,SF,94131,B09,26,8216,2,2,2,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7322969505718, -122.443170322846)",110060394-95 -160373092,KM02,16014833,Medical Incident,02/06/2016,02/06/2016,02/06/2016 06:15:35 PM,02/06/2016 06:17:00 PM,02/06/2016 06:19:02 PM,02/06/2016 06:19:52 PM,02/06/2016 06:26:02 PM,02/06/2016 06:47:16 PM,02/06/2016 07:03:03 PM,Code 2 Transport,02/06/2016 07:35:46 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160373092-KM02 -111020312,84,11033935,Medical Incident,04/12/2011,04/12/2011,04/12/2011 06:48:02 PM,04/12/2011 06:48:38 PM,04/12/2011 06:53:57 PM,04/12/2011 06:57:44 PM,04/12/2011 07:12:23 PM,04/12/2011 07:25:18 PM,04/12/2011 07:28:46 PM,Code 2 Transport,04/12/2011 07:41:26 PM,1000 Block of MARKET ST,SF,94103,B03,1,1454,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7812876870909, -122.411318055371)",111020312-84 -160900494,89,16035593,Medical Incident,03/30/2016,03/29/2016,03/30/2016 06:02:36 AM,03/30/2016 06:09:30 AM,03/30/2016 06:09:47 AM,03/30/2016 06:10:09 AM,03/30/2016 06:16:08 AM,03/30/2016 06:56:21 AM,03/30/2016 07:12:54 AM,Code 2 Transport,03/30/2016 07:52:40 AM,0 Block of MONTANA ST,San Francisco,94112,B09,33,8373,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7166742986629, -122.455048913828)",160900494-89 -121120052,E06,12037012,Medical Incident,04/21/2012,04/20/2012,04/21/2012 02:42:40 AM,04/21/2012 02:42:40 AM,04/21/2012 02:46:10 AM,04/21/2012 02:49:14 AM,04/21/2012 02:51:20 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Patient Declined Transport,04/21/2012 03:02:52 AM,100 Block of HARTFORD ST,SF,94114,B05,6,5417,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Castro/Upper Market,"(37.7601511990346, -122.433893032003)",121120052-E06 -140110053,RS2,14003738,Structure Fire,01/11/2014,01/10/2014,01/11/2014 03:38:56 AM,01/11/2014 03:41:42 AM,01/11/2014 03:42:19 AM,01/11/2014 03:44:22 AM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,04/25/2016 01:48:47 PM,Other,01/11/2014 03:49:04 AM,MISSION ST/PERSIA AV,SF,94112,B09,43,6121,,3,3,false,Alarm,1,RESCUE SQUAD,7,9,11,Excelsior,"(37.7231299651881, -122.435976887493)",140110053-RS2 -132150123,E07,13072555,Medical Incident,08/03/2013,08/03/2013,08/03/2013 09:32:13 AM,08/03/2013 09:35:18 AM,08/03/2013 09:35:52 AM,08/03/2013 09:36:32 AM,08/03/2013 09:43:36 AM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/03/2013 09:50:47 AM,3100 Block of 24TH ST,SF,94110,B06,7,5526,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,9,Mission,"(37.7524180928571, -122.414623849785)",132150123-E07 -103310054,73,10105859,Medical Incident,11/27/2010,11/26/2010,11/27/2010 04:13:00 AM,11/27/2010 04:13:50 AM,11/27/2010 04:14:10 AM,11/27/2010 04:14:33 AM,11/27/2010 04:24:03 AM,11/27/2010 04:51:39 AM,11/27/2010 04:57:29 AM,Code 2 Transport,11/27/2010 05:27:16 AM,2100 Block of POST ST,SF,94115,B04,10,4131,1,1,2,true,,1,MEDIC,1,4,5,Japantown,"(37.7846877609559, -122.437204719428)",103310054-73 -160501369,KM11,16020052,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:25:13 AM,02/19/2016 11:27:19 AM,02/19/2016 11:27:38 AM,02/19/2016 11:29:32 AM,02/19/2016 11:37:02 AM,02/19/2016 11:57:28 AM,02/19/2016 12:07:56 PM,Code 2 Transport,02/19/2016 12:45:40 PM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,false,Non Life-threatening,1,PRIVATE,3,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",160501369-KM11 -110790378,93,11026214,Medical Incident,03/20/2011,03/20/2011,03/20/2011 10:39:14 PM,03/20/2011 10:44:23 PM,03/20/2011 10:45:03 PM,03/20/2011 10:45:25 PM,03/20/2011 10:52:47 PM,03/20/2011 11:14:19 PM,03/20/2011 11:19:04 PM,Code 2 Transport,03/20/2011 11:39:50 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,2,2,2,true,,1,MEDIC,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",110790378-93 -111570301,AM06,11052006,Medical Incident,06/06/2011,06/06/2011,06/06/2011 05:37:13 PM,06/06/2011 05:38:57 PM,06/06/2011 05:39:44 PM,06/06/2011 05:40:38 PM,06/06/2011 05:51:26 PM,06/06/2011 06:04:33 PM,06/06/2011 06:22:42 PM,Code 2 Transport,06/06/2011 06:58:28 PM,300 Block of RIVERA ST,SF,94116,B08,40,736,3,3,3,false,,1,PRIVATE,3,8,7,West of Twin Peaks,"(37.7469789772547, -122.470222363445)",111570301-AM06 -160052328,74,16002058,Medical Incident,01/05/2016,01/05/2016,01/05/2016 03:43:46 PM,01/05/2016 03:50:09 PM,01/05/2016 03:51:22 PM,01/05/2016 03:51:30 PM,01/05/2016 03:57:20 PM,01/05/2016 04:04:26 PM,01/05/2016 04:11:37 PM,Code 2 Transport,01/05/2016 04:57:03 PM,1200 Block of EDDY ST,San Francisco,94115,B02,5,3366,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Western Addition,"(37.7820064229134, -122.428229471276)",160052328-74 -122180321,E28,12072437,Medical Incident,08/05/2012,08/05/2012,08/05/2012 07:28:44 PM,08/05/2012 07:29:44 PM,08/05/2012 07:29:57 PM,08/05/2012 07:30:15 PM,08/05/2012 07:34:30 PM,04/25/2016 01:57:22 PM,04/25/2016 01:57:22 PM,Other,08/05/2012 07:52:03 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8069201392161, -122.407170160416)",122180321-E28 -122720285,AP,12089842,Other,09/28/2012,09/28/2012,09/28/2012 09:09:49 PM,09/28/2012 09:09:49 PM,09/28/2012 09:09:49 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,04/25/2016 01:56:33 PM,Fire,09/28/2012 09:10:04 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",122720285-AP -103630016,E14,10116316,Medical Incident,12/29/2010,12/28/2010,12/29/2010 01:28:03 AM,12/29/2010 01:29:28 AM,12/29/2010 01:29:43 AM,12/29/2010 01:30:44 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/29/2010 01:31:42 AM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,true,,1,ENGINE,3,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",103630016-E14 -160813528,71,16032348,Medical Incident,03/21/2016,03/21/2016,03/21/2016 08:32:13 PM,03/21/2016 08:32:13 PM,03/21/2016 08:33:09 PM,03/21/2016 08:33:15 PM,03/21/2016 08:48:53 PM,03/21/2016 08:59:14 PM,03/21/2016 09:21:18 PM,Other,03/21/2016 10:03:32 PM,1000 Block of MASONIC AVE,San Francisco,94117,B05,21,4465,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7716194932179, -122.445557574682)",160813528-71 -120190257,B09,12006410,Alarms,01/19/2012,01/19/2012,01/19/2012 04:02:09 PM,01/19/2012 04:03:14 PM,01/19/2012 04:04:17 PM,01/19/2012 04:06:06 PM,01/19/2012 04:07:46 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Fire,01/19/2012 04:17:40 PM,8100 Block of OCEANVIEW TER,SF,94132,B09,33,8412,3,3,3,false,Alarm,1,CHIEF,2,9,7,Oceanview/Merced/Ingleside,"(37.710217410694, -122.466954794457)",120190257-B09 -112830073,E13,11093582,Medical Incident,10/10/2011,10/10/2011,10/10/2011 08:28:23 AM,10/10/2011 08:28:31 AM,10/10/2011 08:28:47 AM,10/10/2011 08:30:12 AM,10/10/2011 08:31:57 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/10/2011 08:43:32 AM,200 Block of MARKET ST,SF,94111,B03,13,2809,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928236509312, -122.397034190089)",112830073-E13 -132340342,E05,13079131,Medical Incident,08/22/2013,08/22/2013,08/22/2013 09:16:47 PM,08/22/2013 09:17:59 PM,08/22/2013 09:18:47 PM,04/25/2016 01:51:10 PM,08/22/2013 09:22:18 PM,04/25/2016 01:51:10 PM,04/25/2016 01:51:10 PM,Other,08/22/2013 09:36:35 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",132340342-E05 -132230291,E07,13075413,Medical Incident,08/11/2013,08/11/2013,08/11/2013 07:17:09 PM,08/11/2013 07:17:27 PM,08/11/2013 07:18:04 PM,08/11/2013 07:19:22 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,04/25/2016 01:51:21 PM,Other,08/11/2013 07:20:34 PM,24TH ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7523727894276, -122.416265511485)",132230291-E07 -122460396,54,12081540,Medical Incident,09/02/2012,09/02/2012,09/02/2012 11:00:20 PM,09/02/2012 11:01:55 PM,09/02/2012 11:02:08 PM,09/02/2012 11:02:48 PM,09/02/2012 11:23:09 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Patient Declined Transport,09/02/2012 11:52:57 PM,200 Block of HAHN ST,SF,94134,B09,43,6241,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7101932992299, -122.416700898623)",122460396-54 -160593092,52,16023683,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:04:27 PM,02/28/2016 09:04:27 PM,02/28/2016 09:04:44 PM,02/28/2016 09:04:57 PM,02/28/2016 09:20:44 PM,02/28/2016 09:33:24 PM,02/28/2016 09:52:08 PM,Code 2 Transport,02/28/2016 10:27:32 PM,30TH AV/JUDAH ST,San Francisco,94122,B08,23,7536,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.76118137899, -122.488779156297)",160593092-52 -122120356,E35,12070518,Medical Incident,07/30/2012,07/30/2012,07/30/2012 09:04:57 PM,07/30/2012 09:06:02 PM,07/30/2012 09:07:34 PM,07/30/2012 09:09:34 PM,07/30/2012 09:13:20 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 09:15:19 PM,400 Block of THE EMBARCADERO,SF,94111,B03,35,928,1,1,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",122120356-E35 -112110257,AM06,11069700,Medical Incident,07/30/2011,07/30/2011,07/30/2011 04:52:19 PM,07/30/2011 04:53:05 PM,07/30/2011 04:53:25 PM,07/30/2011 04:54:17 PM,07/30/2011 05:11:40 PM,07/30/2011 05:13:52 PM,07/30/2011 05:25:30 PM,Code 2 Transport,07/30/2011 06:10:42 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,false,,1,PRIVATE,2,1,3,North Beach,"(37.7982249345487, -122.404282497745)",112110257-AM06 -130900051,E02,13029997,Medical Incident,03/31/2013,03/30/2013,03/31/2013 03:12:53 AM,03/31/2013 03:13:47 AM,03/31/2013 03:14:00 AM,03/31/2013 03:16:15 AM,03/31/2013 03:18:10 AM,04/25/2016 01:53:33 PM,04/25/2016 01:53:33 PM,Other,03/31/2013 03:21:32 AM,800 Block of CALIFORNIA ST,SF,94108,B01,2,1356,3,3,3,true,Non Life-threatening,1,ENGINE,1,1,3,Chinatown,"(37.7922694289836, -122.407814772426)",130900051-E02 -133110024,E36,13105595,Alarms,11/07/2013,11/06/2013,11/07/2013 02:26:51 AM,11/07/2013 02:26:51 AM,11/07/2013 02:27:01 AM,11/07/2013 02:28:50 AM,11/07/2013 02:32:03 AM,04/25/2016 01:49:53 PM,04/25/2016 01:49:53 PM,Other,11/07/2013 02:37:53 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,1,2,8,Mission,"(37.7661259454801, -122.42207304894)",133110024-E36 -133520397,KM15,13119744,Medical Incident,12/18/2013,12/18/2013,12/18/2013 10:18:24 PM,12/18/2013 10:18:42 PM,12/18/2013 10:19:02 PM,12/18/2013 10:19:42 PM,12/18/2013 10:23:41 PM,12/18/2013 10:48:51 PM,12/18/2013 11:00:21 PM,Code 2 Transport,12/18/2013 11:31:12 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",133520397-KM15 -120510268,58,12016951,Medical Incident,02/20/2012,02/20/2012,02/20/2012 06:56:14 PM,02/20/2012 06:58:18 PM,02/20/2012 06:58:33 PM,02/20/2012 06:59:51 PM,02/20/2012 07:05:06 PM,02/20/2012 07:18:58 PM,02/20/2012 07:26:00 PM,Code 2 Transport,02/20/2012 07:49:20 PM,1800 Block of 10TH AVE,SF,94122,B08,22,7342,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Inner Sunset,"(37.7537324796967, -122.466734271718)",120510268-58 -130600265,T03,13020190,Alarms,03/01/2013,03/01/2013,03/01/2013 04:33:32 PM,03/01/2013 04:35:14 PM,03/01/2013 04:35:30 PM,03/01/2013 04:35:50 PM,03/01/2013 04:37:47 PM,04/25/2016 01:54:03 PM,04/25/2016 01:54:03 PM,Other,03/01/2013 04:44:03 PM,200 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",130600265-T03 -102270026,E28,10071328,Medical Incident,08/15/2010,08/14/2010,08/15/2010 01:56:04 AM,08/15/2010 01:56:36 AM,08/15/2010 01:56:53 AM,08/15/2010 01:58:19 AM,08/15/2010 02:00:09 AM,04/25/2016 02:09:04 PM,04/25/2016 02:09:04 PM,Unable to Locate,08/15/2010 02:06:27 AM,GRANT AV/GREEN ST,SF,94133,B01,28,1266,3,E,3,true,,1,ENGINE,2,1,3,North Beach,"(37.7997036751716, -122.407395244265)",102270026-E28 -160642321,61,16025552,Medical Incident,03/04/2016,03/04/2016,03/04/2016 02:59:07 PM,03/04/2016 02:59:07 PM,03/04/2016 02:59:33 PM,03/04/2016 02:59:42 PM,03/04/2016 03:09:09 PM,03/04/2016 03:21:19 PM,03/04/2016 03:32:40 PM,Code 2 Transport,03/04/2016 04:06:32 PM,JUDAH ST/28TH AV,San Francisco,94122,B08,18,7513,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7612756296454, -122.486639896833)",160642321-61 -160621653,56,16024684,Medical Incident,03/02/2016,03/02/2016,03/02/2016 12:09:47 PM,03/02/2016 12:10:27 PM,03/02/2016 12:11:05 PM,03/02/2016 12:11:28 PM,03/02/2016 12:19:06 PM,03/02/2016 12:29:22 PM,03/02/2016 12:38:03 PM,Code 2 Transport,03/02/2016 01:13:12 PM,0 Block of CAMBON DR,San Francisco,94132,B08,19,8428,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7183176082464, -122.474447191871)",160621653-56 -121200182,E05,12039826,Medical Incident,04/29/2012,04/29/2012,04/29/2012 11:44:23 AM,04/29/2012 11:45:09 AM,04/29/2012 11:46:18 AM,04/29/2012 11:47:20 AM,04/29/2012 11:48:59 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 11:56:35 AM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121200182-E05 -112710146,65,11089497,Medical Incident,09/28/2011,09/28/2011,09/28/2011 11:19:04 AM,09/28/2011 11:21:41 AM,09/28/2011 11:21:53 AM,09/28/2011 11:22:25 AM,09/28/2011 11:24:18 AM,09/28/2011 11:43:11 AM,09/28/2011 12:06:05 PM,Code 2 Transport,09/28/2011 12:25:36 PM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7576217212029, -122.418887293065)",112710146-65 -103480150,55,10111566,Medical Incident,12/14/2010,12/14/2010,12/14/2010 10:11:45 AM,12/14/2010 10:12:35 AM,12/14/2010 10:12:54 AM,12/14/2010 10:13:04 AM,12/14/2010 10:15:09 AM,12/14/2010 10:36:28 AM,12/14/2010 10:42:45 AM,Code 2 Transport,12/14/2010 11:17:55 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",103480150-55 -113130252,E01,11104062,Medical Incident,11/09/2011,11/09/2011,11/09/2011 04:10:29 PM,11/09/2011 04:11:57 PM,11/09/2011 04:12:08 PM,11/09/2011 04:13:16 PM,11/09/2011 04:15:14 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/09/2011 04:34:42 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",113130252-E01 -140370067,E34,14012409,Electrical Hazard,02/06/2014,02/05/2014,02/06/2014 06:39:58 AM,02/06/2014 06:40:57 AM,02/06/2014 06:41:06 AM,02/06/2014 06:42:15 AM,02/06/2014 06:44:44 AM,04/25/2016 01:48:21 PM,04/25/2016 01:48:21 PM,Other,02/06/2014 07:19:14 AM,47TH AV/ANZA ST,SF,94121,B07,34,7276,3,3,3,false,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7770925958131, -122.508160549697)",140370067-E34 -120300159,74,12009974,Medical Incident,01/30/2012,01/30/2012,01/30/2012 12:34:08 PM,01/30/2012 12:34:58 PM,01/30/2012 12:35:35 PM,01/30/2012 12:35:42 PM,01/30/2012 12:41:35 PM,01/30/2012 12:51:13 PM,01/30/2012 01:13:08 PM,Code 2 Transport,01/30/2012 01:38:22 PM,BEACH ST/LARKIN ST,SF,94109,B01,28,1615,3,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8064363647501, -122.422196208979)",120300159-74 -121660109,67,12054998,Medical Incident,06/14/2012,06/14/2012,06/14/2012 09:28:59 AM,06/14/2012 09:29:41 AM,06/14/2012 09:29:52 AM,06/14/2012 09:31:02 AM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,04/25/2016 01:58:13 PM,Other,04/25/2016 01:58:13 PM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",121660109-67 -123200258,RS1,12106438,Medical Incident,11/15/2012,11/15/2012,11/15/2012 04:31:32 PM,11/15/2012 04:32:12 PM,11/15/2012 04:32:38 PM,11/15/2012 04:33:47 PM,11/15/2012 04:37:53 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 04:39:07 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,1,3,6,South of Market,"(37.7850811742657, -122.406497767804)",123200258-RS1 -113620317,AM18,11120371,Medical Incident,12/28/2011,12/28/2011,12/28/2011 07:15:02 PM,12/28/2011 07:17:14 PM,12/28/2011 07:17:29 PM,12/28/2011 07:18:33 PM,12/28/2011 07:20:46 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,No Merit,12/28/2011 07:32:11 PM,0 Block of FELL ST,SF,94102,B02,36,3111,3,3,3,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7764405100838, -122.418481123408)",113620317-AM18 -111180310,79,11039037,Medical Incident,04/28/2011,04/28/2011,04/28/2011 07:20:10 PM,04/28/2011 07:22:01 PM,04/28/2011 07:23:20 PM,04/28/2011 07:23:46 PM,04/25/2016 02:04:53 PM,04/28/2011 07:37:09 PM,04/28/2011 07:59:16 PM,Code 2 Transport,04/28/2011 08:08:53 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",111180310-79 -112800111,81,11092616,Medical Incident,10/07/2011,10/07/2011,10/07/2011 09:05:35 AM,10/07/2011 09:06:09 AM,10/07/2011 09:06:22 AM,10/07/2011 09:06:34 AM,10/07/2011 09:36:07 AM,10/07/2011 09:45:25 AM,10/07/2011 09:51:11 AM,Code 2 Transport,10/07/2011 10:27:40 AM,2700 Block of GEARY BLVD,SF,94118,B05,10,448,3,3,3,true,,1,MEDIC,2,5,2,Presidio Heights,"(37.7824684162229, -122.448590588574)",112800111-81 -160393829,68,16015824,Medical Incident,02/08/2016,02/08/2016,02/08/2016 11:01:46 PM,02/08/2016 11:03:08 PM,02/08/2016 11:03:21 PM,02/08/2016 11:03:41 PM,02/08/2016 11:21:35 PM,02/08/2016 11:35:13 PM,02/08/2016 11:43:04 PM,Code 2 Transport,02/09/2016 12:22:32 AM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160393829-68 -120570155,E34,12018782,Medical Incident,02/26/2012,02/26/2012,02/26/2012 10:53:47 AM,02/26/2012 10:54:28 AM,02/26/2012 10:55:13 AM,02/26/2012 10:57:15 AM,02/26/2012 10:58:18 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 11:15:01 AM,500 Block of 38TH AVE,SF,94121,B07,34,7255,3,2,2,false,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.778489948235, -122.498662035969)",120570155-E34 -102310276,86,10072777,Medical Incident,08/19/2010,08/19/2010,08/19/2010 05:27:39 PM,08/19/2010 05:29:15 PM,08/19/2010 05:29:40 PM,08/19/2010 05:31:25 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,04/25/2016 02:09:00 PM,Other,08/19/2010 05:31:58 PM,1000 Block of GILMAN AVE,SF,94124,B10,17,6611,2,2,2,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7187222856771, -122.389118324965)",102310276-86 -103650328,60,10117221,Medical Incident,12/31/2010,12/31/2010,12/31/2010 09:22:52 PM,12/31/2010 09:23:13 PM,12/31/2010 09:23:45 PM,12/31/2010 09:24:08 PM,12/31/2010 09:28:41 PM,12/31/2010 09:53:14 PM,12/31/2010 10:46:48 PM,Code 2 Transport,12/31/2010 10:49:09 PM,36TH AV/SHORE VIEW AV,SF,94121,B07,34,7255,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7806333891649, -122.496598463217)",103650328-60 -112140168,83,11070615,Traffic Collision,08/02/2011,08/02/2011,08/02/2011 12:23:40 PM,08/02/2011 12:26:33 PM,08/02/2011 12:27:08 PM,08/02/2011 12:27:24 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 12:32:14 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,2,2,2,true,,1,MEDIC,2,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",112140168-83 -160364069,KM07,16014475,Medical Incident,02/05/2016,02/05/2016,02/05/2016 10:25:15 PM,02/05/2016 10:27:39 PM,02/05/2016 10:28:33 PM,02/05/2016 10:28:54 PM,02/05/2016 10:38:50 PM,02/05/2016 10:55:33 PM,02/05/2016 11:10:16 PM,Code 2 Transport,02/05/2016 11:31:57 PM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.779489776176, -122.407376438306)",160364069-KM07 -112290124,T10,11075624,Alarms,08/17/2011,08/17/2011,08/17/2011 10:41:56 AM,08/17/2011 10:43:22 AM,08/17/2011 10:43:29 AM,08/17/2011 10:43:55 AM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 10:53:41 AM,2400 Block of CALIFORNIA ST,SF,94115,B04,38,3616,3,3,3,false,,1,TRUCK,2,4,2,Pacific Heights,"(37.7887473804417, -122.434651659294)",112290124-T10 -160430191,AM24,16017113,Medical Incident,02/12/2016,02/11/2016,02/12/2016 01:37:43 AM,02/12/2016 01:39:52 AM,02/12/2016 01:40:01 AM,02/12/2016 01:40:36 AM,02/12/2016 01:43:09 AM,02/12/2016 01:52:58 AM,02/12/2016 02:19:39 AM,Code 2 Transport,02/12/2016 02:50:53 AM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160430191-AM24 -121420239,E42,12047284,Structure Fire,05/21/2012,05/21/2012,05/21/2012 03:37:50 PM,05/21/2012 03:38:28 PM,05/21/2012 03:38:40 PM,05/21/2012 03:40:56 PM,05/21/2012 03:41:58 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/21/2012 04:10:55 PM,0 Block of EDINBURGH ST,SF,94112,B09,32,6143,3,3,3,true,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7280089884911, -122.426803248719)",121420239-E42 -133240299,E03,13110122,Medical Incident,11/20/2013,11/20/2013,11/20/2013 04:24:37 PM,11/20/2013 04:25:17 PM,11/20/2013 04:25:30 PM,11/20/2013 04:26:45 PM,11/20/2013 04:28:43 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 04:37:30 PM,EDDY ST/VAN NESS AV,SF,94109,B02,3,3163,3,3,3,true,Non Life-threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7828941211751, -122.420817005362)",133240299-E03 -121550187,KM09,12051322,Medical Incident,06/03/2012,06/03/2012,06/03/2012 01:03:52 PM,06/03/2012 01:04:06 PM,06/03/2012 01:04:27 PM,06/03/2012 01:05:30 PM,06/03/2012 01:07:13 PM,06/03/2012 01:28:55 PM,06/03/2012 01:35:47 PM,Code 2 Transport,06/03/2012 02:01:49 PM,GOLDEN GATE AV/LARKIN ST,SF,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",121550187-KM09 -133530121,E01,13119866,Medical Incident,12/19/2013,12/19/2013,12/19/2013 10:17:49 AM,12/19/2013 10:20:20 AM,12/19/2013 10:20:51 AM,12/19/2013 10:21:12 AM,12/19/2013 10:23:42 AM,04/25/2016 01:49:11 PM,04/25/2016 01:49:11 PM,Other,12/19/2013 10:30:24 AM,300 Block of JONES ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7843907940022, -122.412757052976)",133530121-E01 -140360085,82,14012134,Medical Incident,02/05/2014,02/05/2014,02/05/2014 09:03:38 AM,02/05/2014 09:04:02 AM,02/05/2014 09:04:31 AM,02/05/2014 09:04:38 AM,02/05/2014 09:15:51 AM,02/05/2014 09:24:08 AM,02/05/2014 09:45:58 AM,Code 2 Transport,02/05/2014 10:21:44 AM,200 Block of RUTLEDGE ST,SF,94110,B06,9,5667,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Bernal Heights,"(37.7451204689112, -122.408776065109)",140360085-82 -121620058,B10,12053521,Outside Fire,06/10/2012,06/09/2012,06/10/2012 02:36:31 AM,06/10/2012 02:38:25 AM,06/10/2012 02:38:51 AM,06/10/2012 02:41:13 AM,06/10/2012 02:46:43 AM,04/25/2016 01:58:17 PM,04/25/2016 01:58:17 PM,Other,06/10/2012 03:15:30 AM,1400 Block of HUDSON AVE,SF,94124,B10,25,6521,3,3,3,false,Fire,1,CHIEF,1,10,10,Bayview Hunters Point,"(37.7383338978754, -122.385135095076)",121620058-B10 -112820191,D3,11093338,Structure Fire,10/09/2011,10/09/2011,10/09/2011 01:32:18 PM,10/09/2011 01:33:40 PM,10/09/2011 01:33:54 PM,10/09/2011 01:34:44 PM,10/09/2011 01:41:10 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 01:49:08 PM,100 Block of MERCED AVE,SF,94127,B08,39,8617,3,3,3,false,,1,CHIEF,7,8,7,West of Twin Peaks,"(37.744049522508, -122.462108757816)",112820191-D3 -111870131,AM04,11061778,Medical Incident,07/06/2011,07/06/2011,07/06/2011 10:44:34 AM,07/06/2011 10:46:52 AM,07/06/2011 10:47:38 AM,07/06/2011 10:48:13 AM,07/06/2011 10:54:35 AM,07/06/2011 11:14:35 AM,07/06/2011 11:31:32 AM,Code 2 Transport,07/06/2011 12:21:22 PM,400 Block of SUTTER ST,SF,94108,B01,1,1324,1,1,2,false,,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7893838867711, -122.407786956287)",111870131-AM04 -111550182,T17,11051221,Alarms,06/04/2011,06/04/2011,06/04/2011 11:54:55 AM,06/04/2011 11:55:42 AM,06/04/2011 11:56:21 AM,06/04/2011 11:59:06 AM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,04/25/2016 02:04:19 PM,Other,06/04/2011 11:59:54 AM,100 Block of KISKA RD,SF,94124,B10,17,6625,3,3,3,false,,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.7300498963351, -122.376015807467)",111550182-T17 -121390087,E01,12046085,Medical Incident,05/18/2012,05/18/2012,05/18/2012 08:34:42 AM,05/18/2012 08:36:14 AM,05/18/2012 08:36:50 AM,05/18/2012 08:37:13 AM,05/18/2012 08:37:24 AM,04/25/2016 01:58:38 PM,04/25/2016 01:58:38 PM,Other,05/18/2012 09:09:12 AM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",121390087-E01 -110570371,79,11018923,Medical Incident,02/26/2011,02/26/2011,02/26/2011 11:27:04 PM,02/26/2011 11:29:24 PM,02/26/2011 11:29:42 PM,02/26/2011 11:30:27 PM,02/26/2011 11:37:47 PM,02/27/2011 12:00:43 AM,02/27/2011 12:32:11 AM,Code 2 Transport,02/27/2011 12:58:31 AM,200 Block of VELASCO AVE,SF,94134,B09,44,6251,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7085210381822, -122.414484707335)",110570371-79 -111420274,E13,11047262,Structure Fire,05/22/2011,05/22/2011,05/22/2011 04:58:49 PM,05/22/2011 04:59:51 PM,05/22/2011 05:00:58 PM,05/22/2011 05:02:39 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,04/25/2016 02:04:30 PM,Other,05/22/2011 05:12:24 PM,1300 Block of GRANT AVE,SF,94133,B01,28,1266,3,3,3,true,,1,ENGINE,9,1,3,North Beach,"(37.799231230896, -122.407369153529)",111420274-E13 -103310013,T03,10105820,Medical Incident,11/27/2010,11/26/2010,11/27/2010 12:43:40 AM,11/27/2010 12:44:42 AM,11/27/2010 12:45:08 AM,11/27/2010 12:46:33 AM,11/27/2010 12:50:00 AM,04/25/2016 02:07:24 PM,04/25/2016 02:07:24 PM,Other,11/27/2010 12:52:59 AM,GEARY ST/LEAVENWORTH ST,SF,94109,B04,3,1543,3,3,3,false,,1,TRUCK,1,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",103310013-T03 -121160280,E01,12038528,Medical Incident,04/25/2012,04/25/2012,04/25/2012 05:47:36 PM,04/25/2012 05:49:04 PM,04/25/2012 05:52:23 PM,04/25/2012 05:52:49 PM,04/25/2012 05:54:59 PM,04/25/2016 01:59:00 PM,04/25/2016 01:59:00 PM,Unable to Locate,04/25/2012 06:02:14 PM,2ND ST/HARRISON ST,SF,94105,B03,8,2151,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7843110117006, -122.395160623078)",121160280-E01 -160041113,61,16001539,Medical Incident,01/04/2016,01/04/2016,01/04/2016 10:02:00 AM,01/04/2016 10:03:21 AM,01/04/2016 10:03:35 AM,01/04/2016 10:03:43 AM,01/04/2016 10:11:59 AM,01/04/2016 10:25:20 AM,01/04/2016 10:37:37 AM,Code 2 Transport,01/04/2016 11:07:25 AM,1800 Block of OAKDALE AVE,San Francisco,94124,B10,42,6444,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7370657700508, -122.394565756376)",160041113-61 -132610400,E02,13088557,Medical Incident,09/18/2013,09/18/2013,09/18/2013 08:52:14 PM,09/18/2013 08:52:27 PM,09/18/2013 08:52:56 PM,09/18/2013 08:54:25 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 08:55:58 PM,400 Block of UNION ST,SF,94133,B01,28,1252,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,1,3,North Beach,"(37.8007365278513, -122.406362541513)",132610400-E02 -110030148,E41,11000947,Medical Incident,01/03/2011,01/03/2011,01/03/2011 11:27:20 AM,01/03/2011 11:28:56 AM,01/03/2011 11:29:07 AM,01/03/2011 11:29:30 AM,01/03/2011 11:32:28 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 11:45:38 AM,1200 Block of GREEN ST,SF,94109,B01,41,1631,3,3,3,true,,1,ENGINE,1,1,3,Russian Hill,"(37.7982535635087, -122.419386977986)",110030148-E41 -102390022,85,10075254,Medical Incident,08/27/2010,08/26/2010,08/27/2010 01:40:28 AM,08/27/2010 01:42:23 AM,08/27/2010 01:43:05 AM,08/27/2010 01:43:31 AM,08/27/2010 01:48:09 AM,08/27/2010 02:04:09 AM,08/27/2010 02:13:09 AM,Code 2 Transport,08/27/2010 02:45:44 AM,BONIFACIO ST/LAPU LAPU ST,SF,94107,B03,1,2215,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7825959122596, -122.399349287523)",102390022-85 -112250295,81,11074422,Medical Incident,08/13/2011,08/13/2011,08/13/2011 06:05:46 PM,08/13/2011 06:06:27 PM,08/13/2011 06:06:58 PM,08/13/2011 06:07:40 PM,08/13/2011 06:10:47 PM,08/13/2011 06:28:36 PM,08/13/2011 06:37:13 PM,Code 2 Transport,08/13/2011 06:56:55 PM,100 Block of CLINTON PARK,SF,94103,B02,36,5126,3,1,2,true,,1,MEDIC,2,2,8,Mission,"(37.7692677111289, -122.423396856968)",112250295-81 -121270222,T08,12042307,Outside Fire,05/06/2012,05/06/2012,05/06/2012 03:33:05 PM,05/06/2012 03:33:06 PM,05/06/2012 03:34:31 PM,05/06/2012 03:37:06 PM,05/06/2012 03:40:40 PM,04/25/2016 01:58:49 PM,04/25/2016 01:58:49 PM,Other,05/06/2012 03:41:41 PM,800 Block of TERRY A FRANCOIS BLVD,SF,94107,B03,8,966,3,3,3,false,Alarm,1,TRUCK,2,3,10,Potrero Hill,"(37.7653906652939, -122.386764029102)",121270222-T08 -110800358,73,11026508,Medical Incident,03/21/2011,03/21/2011,03/21/2011 09:51:15 PM,03/21/2011 09:53:53 PM,03/21/2011 09:54:10 PM,03/21/2011 09:54:24 PM,03/21/2011 10:00:30 PM,03/21/2011 10:21:00 PM,03/21/2011 10:52:52 PM,Code 2 Transport,03/21/2011 11:10:42 PM,200 Block of ALMA ST,SF,94117,B05,12,5162,3,3,3,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7629834619379, -122.451564578029)",110800358-73 -160151227,KM08,16005931,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:29:35 AM,01/15/2016 10:30:19 AM,01/15/2016 10:31:07 AM,01/15/2016 10:31:45 AM,01/15/2016 10:41:06 AM,01/15/2016 10:53:27 AM,01/15/2016 11:05:52 AM,Code 2 Transport,01/15/2016 11:45:13 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160151227-KM08 -111590002,E18,11052438,Medical Incident,06/08/2011,06/07/2011,06/08/2011 12:17:42 AM,06/08/2011 12:18:44 AM,06/08/2011 12:19:00 AM,06/08/2011 12:20:25 AM,06/08/2011 12:22:42 AM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/08/2011 12:44:39 AM,2200 Block of 35TH AVE,SF,94116,B08,18,7555,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7450895752933, -122.493101949525)",111590002-E18 -113550297,56,11117967,Medical Incident,12/21/2011,12/21/2011,12/21/2011 06:17:49 PM,12/21/2011 06:18:26 PM,12/21/2011 06:18:49 PM,12/21/2011 06:19:48 PM,12/21/2011 06:25:43 PM,04/25/2016 02:01:02 PM,04/25/2016 02:01:02 PM,Other,12/21/2011 06:27:26 PM,ANDOVER ST/CORTLAND AV,SF,94110,B06,32,5732,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7390616989426, -122.416519601586)",113550297-56 -132090259,AM02,13070754,Medical Incident,07/28/2013,07/28/2013,07/28/2013 04:26:47 PM,07/28/2013 04:33:23 PM,07/28/2013 04:33:51 PM,07/28/2013 04:34:22 PM,07/28/2013 04:46:11 PM,07/28/2013 05:13:21 PM,07/28/2013 05:29:04 PM,Code 2 Transport,07/28/2013 05:36:17 PM,200 Block of 10TH ST,SF,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7734664897325, -122.413546904215)",132090259-AM02 -131230362,58,13041597,Traffic Collision,05/03/2013,05/03/2013,05/03/2013 06:33:10 PM,05/03/2013 06:38:30 PM,05/03/2013 06:38:49 PM,05/03/2013 06:39:19 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,Other,05/03/2013 06:39:50 PM,40TH AV/BALBOA ST,SF,94121,B07,34,7263,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7755691175874, -122.500515200856)",131230362-58 -110640105,T11,11021014,Assist Police,03/05/2011,03/04/2011,03/05/2011 07:51:37 AM,03/05/2011 07:52:11 AM,03/05/2011 07:52:29 AM,03/05/2011 07:53:14 AM,03/05/2011 07:57:10 AM,04/25/2016 02:05:47 PM,04/25/2016 02:05:47 PM,Fire,03/05/2011 08:05:19 AM,1600 Block of DOLORES ST,SF,94110,B06,11,5576,3,3,3,false,,1,TRUCK,1,6,8,Noe Valley,"(37.7426453576384, -122.424119996263)",110640105-T11 -123310004,93,12109878,Medical Incident,11/26/2012,11/25/2012,11/26/2012 12:04:33 AM,11/26/2012 12:06:02 AM,11/26/2012 12:07:15 AM,11/26/2012 12:07:51 AM,11/26/2012 12:18:30 AM,11/26/2012 12:24:36 AM,11/26/2012 12:36:48 AM,Code 2 Transport,11/26/2012 01:06:03 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",123310004-93 -110700070,92,11022938,Traffic Collision,03/11/2011,03/11/2011,03/11/2011 08:00:20 AM,03/11/2011 08:01:09 AM,03/11/2011 08:01:45 AM,03/11/2011 08:02:24 AM,03/11/2011 08:08:23 AM,03/11/2011 08:25:37 AM,03/11/2011 08:35:55 AM,Code 2 Transport,03/11/2011 09:08:00 AM,24TH ST/CHURCH ST,SF,94114,B06,11,5523,3,3,3,true,,1,MEDIC,2,6,8,Noe Valley,"(37.7517047315498, -122.4274374146)",110700070-92 -160760354,64,16029986,Medical Incident,03/16/2016,03/15/2016,03/16/2016 04:22:09 AM,03/16/2016 04:22:09 AM,03/16/2016 04:22:21 AM,03/16/2016 04:22:33 AM,03/16/2016 04:27:40 AM,03/16/2016 04:44:33 AM,03/16/2016 04:49:03 AM,Code 2 Transport,03/16/2016 05:47:40 AM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160760354-64 -160232541,52,16009231,Medical Incident,01/23/2016,01/23/2016,01/23/2016 05:01:50 PM,01/23/2016 05:03:35 PM,01/23/2016 05:03:51 PM,01/23/2016 05:04:03 PM,01/23/2016 05:05:18 PM,01/23/2016 05:20:40 PM,01/23/2016 05:21:40 PM,Code 3 Transport,01/23/2016 05:56:37 PM,3900 Block of 3RD ST,San Francisco,94124,B10,25,6523,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7415298047033, -122.388473157978)",160232541-52 -130710253,E05,13023749,Medical Incident,03/12/2013,03/12/2013,03/12/2013 04:20:04 PM,03/12/2013 04:20:43 PM,03/12/2013 04:21:03 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 04:22:19 PM,GEARY BL/VAN NESS AV,SF,94109,B04,3,3161,2,2,2,true,Potentially Life-Threatening,1,ENGINE,3,4,5,Western Addition,"(37.7856858024335, -122.421393307769)",130710253-E05 -133060343,82,13104186,Medical Incident,11/02/2013,11/02/2013,11/02/2013 09:54:23 PM,11/02/2013 09:55:55 PM,11/02/2013 09:56:10 PM,11/02/2013 09:57:24 PM,11/02/2013 10:00:09 PM,04/25/2016 01:49:57 PM,04/25/2016 01:49:57 PM,Fire,11/02/2013 10:04:47 PM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",133060343-82 -102760005,77,10087579,Medical Incident,10/03/2010,10/02/2010,10/03/2010 12:04:33 AM,10/03/2010 12:05:51 AM,10/03/2010 12:06:21 AM,04/25/2016 02:08:17 PM,10/03/2010 12:09:36 AM,10/03/2010 12:18:55 AM,10/03/2010 12:25:21 AM,Code 2 Transport,10/03/2010 12:52:00 AM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,,1,MEDIC,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",102760005-77 -130840334,83,13028171,Medical Incident,03/25/2013,03/25/2013,03/25/2013 07:56:28 PM,03/25/2013 07:58:40 PM,03/25/2013 07:58:56 PM,03/25/2013 07:59:07 PM,03/25/2013 08:04:42 PM,03/25/2013 08:08:59 PM,03/25/2013 08:18:51 PM,Code 2 Transport,03/25/2013 08:35:16 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",130840334-83 -120130094,E36,12004370,Gas Leak (Natural and LP Gases),01/13/2012,01/13/2012,01/13/2012 09:35:22 AM,01/13/2012 09:38:08 AM,01/13/2012 09:38:55 AM,01/13/2012 09:40:21 AM,01/13/2012 09:44:17 AM,04/25/2016 02:00:39 PM,04/25/2016 02:00:39 PM,Other,01/13/2012 10:21:17 AM,1300 Block of NATOMA ST,SF,94103,B02,36,5215,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7675554709851, -122.418548327295)",120130094-E36 -121570142,E18,12051911,Structure Fire,06/05/2012,06/05/2012,06/05/2012 11:52:13 AM,06/05/2012 11:53:15 AM,06/05/2012 11:53:53 AM,06/05/2012 11:55:00 AM,06/05/2012 11:58:20 AM,04/25/2016 01:58:21 PM,04/25/2016 01:58:21 PM,Other,06/05/2012 12:14:29 PM,1400 Block of 38TH AVE,SF,94122,B08,18,7521,3,3,3,true,Fire,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7598718838573, -122.497218491144)",121570142-E18 -160313936,71,16012394,Medical Incident,01/31/2016,01/31/2016,01/31/2016 11:51:13 PM,01/31/2016 11:53:20 PM,01/31/2016 11:53:42 PM,01/31/2016 11:53:51 PM,01/31/2016 11:58:05 PM,02/01/2016 12:22:37 AM,02/01/2016 12:39:32 AM,Code 2 Transport,02/01/2016 01:35:36 AM,500 Block of 43RD AVE,San Francisco,94121,B07,34,7267,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7782447239577, -122.504019711201)",160313936-71 -160303318,54,16011925,Medical Incident,01/30/2016,01/30/2016,01/30/2016 07:42:49 PM,01/30/2016 07:44:51 PM,01/30/2016 07:45:18 PM,01/30/2016 07:45:28 PM,01/30/2016 08:00:27 PM,01/30/2016 08:20:13 PM,01/30/2016 08:36:18 PM,Code 2 Transport,01/30/2016 09:17:32 PM,1300 Block of GOUGH ST,San Francisco,94109,B04,3,3256,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,5,Japantown,"(37.7857569605828, -122.424841094899)",160303318-54 -123450207,KM12,12115342,Medical Incident,12/10/2012,12/10/2012,12/10/2012 12:10:51 PM,12/10/2012 12:11:49 PM,12/10/2012 12:12:00 PM,12/10/2012 12:13:27 PM,12/10/2012 12:24:59 PM,12/10/2012 12:52:02 PM,12/10/2012 12:55:57 PM,Code 3 Transport,12/10/2012 01:37:54 PM,1000 Block of PINE ST,SF,94109,B01,41,1464,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7905137154276, -122.413080090528)",123450207-KM12 -123390258,E11,12113118,Administrative,12/04/2012,12/04/2012,12/04/2012 03:49:29 PM,12/04/2012 03:49:30 PM,12/04/2012 03:49:47 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,12/04/2012 03:51:53 PM,3800 Block of 26TH ST,SF,94114,B06,11,5547,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7486189842755, -122.425989109349)",123390258-E11 -103050028,E05,10097356,Medical Incident,11/01/2010,10/31/2010,11/01/2010 12:54:26 AM,11/01/2010 12:56:10 AM,11/01/2010 12:56:20 AM,11/01/2010 12:57:29 AM,11/01/2010 01:01:47 AM,04/25/2016 02:07:49 PM,04/25/2016 02:07:49 PM,Other,11/01/2010 01:04:59 AM,LARKIN ST/GEARY ST,SF,94109,B04,3,3116,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7861010388203, -122.418088098825)",103050028-E05 -112100167,E13,11069322,Medical Incident,07/29/2011,07/29/2011,07/29/2011 01:33:14 PM,07/29/2011 01:35:26 PM,07/29/2011 01:36:02 PM,07/29/2011 01:38:31 PM,07/29/2011 01:41:07 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 01:55:08 PM,800 Block of STOCKTON ST,SF,94108,B01,2,1326,3,3,3,true,,1,ENGINE,3,1,3,Chinatown,"(37.7936107031068, -122.407883608419)",112100167-E13 -113510234,E12,11116514,Structure Fire,12/17/2011,12/17/2011,12/17/2011 01:35:35 PM,12/17/2011 01:36:01 PM,12/17/2011 01:36:22 PM,12/17/2011 01:37:47 PM,12/17/2011 01:40:08 PM,04/25/2016 02:01:06 PM,04/25/2016 02:01:06 PM,Other,12/17/2011 04:58:33 PM,300 Block of JUDAH ST,SF,94122,B08,22,7334,3,3,3,true,,1,ENGINE,2,8,5,Inner Sunset,"(37.7622532632059, -122.465651521109)",113510234-E12 -111820209,88,11060092,Medical Incident,07/01/2011,07/01/2011,07/01/2011 01:17:42 PM,07/01/2011 01:18:01 PM,07/01/2011 01:19:12 PM,07/01/2011 01:19:27 PM,07/01/2011 01:44:32 PM,04/25/2016 02:03:53 PM,04/25/2016 02:03:53 PM,Patient Declined Transport,07/01/2011 01:57:25 PM,6TH ST/HARRISON ST,SF,94103,B03,8,2254,2,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7772727011897, -122.404070256526)",111820209-88 -160713187,57,16028360,Medical Incident,03/11/2016,03/11/2016,03/11/2016 08:02:18 PM,03/11/2016 08:02:48 PM,03/11/2016 08:03:43 PM,03/11/2016 08:04:34 PM,03/11/2016 08:12:19 PM,03/11/2016 08:46:06 PM,03/11/2016 08:57:12 PM,Code 2 Transport,03/11/2016 09:43:23 PM,800 Block of BRODERICK ST,San Francisco,94115,B05,21,4242,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",160713187-57 -110780101,E22,11025609,Medical Incident,03/19/2011,03/19/2011,03/19/2011 09:27:08 AM,03/19/2011 09:27:08 AM,03/19/2011 09:27:29 AM,03/19/2011 09:28:20 AM,03/19/2011 09:33:29 AM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 09:36:55 AM,9TH AV/KIRKHAM ST,SF,94122,B08,22,7331,3,E,3,false,,1,ENGINE,4,8,7,Inner Sunset,"(37.7603115605763, -122.466050387946)",110780101-E22 -132660212,E19,13090268,Medical Incident,09/23/2013,09/23/2013,09/23/2013 01:08:14 PM,09/23/2013 01:09:19 PM,09/23/2013 01:10:10 PM,09/23/2013 01:11:14 PM,09/23/2013 01:13:51 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,09/23/2013 01:30:10 PM,100 Block of DENSLOWE DR,SF,94132,B08,19,8751,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7221161345031, -122.474366093647)",132660212-E19 -131410157,E01,13047751,Alarms,05/21/2013,05/21/2013,05/21/2013 11:14:38 AM,05/21/2013 11:17:35 AM,05/21/2013 11:17:39 AM,05/21/2013 11:17:44 AM,05/21/2013 11:23:50 AM,04/25/2016 01:52:41 PM,04/25/2016 01:52:41 PM,Other,05/21/2013 11:23:53 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Alarm,1,ENGINE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131410157-E01 -132900087,78,13098552,Medical Incident,10/17/2013,10/17/2013,10/17/2013 08:56:11 AM,10/17/2013 08:56:42 AM,10/17/2013 08:56:50 AM,10/17/2013 08:58:15 AM,10/17/2013 09:00:29 AM,04/25/2016 01:50:13 PM,04/25/2016 01:50:13 PM,Other,10/17/2013 09:55:50 AM,1600 Block of KIRKWOOD AVE,SF,94124,B10,25,6467,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7386523750626, -122.390934976028)",132900087-78 -122390274,77,12079224,Medical Incident,08/26/2012,08/26/2012,08/26/2012 07:18:30 PM,08/26/2012 07:20:20 PM,08/26/2012 07:21:35 PM,08/26/2012 07:26:14 PM,08/26/2012 07:36:27 PM,08/26/2012 07:47:44 PM,08/26/2012 08:00:07 PM,Code 2 Transport,08/26/2012 08:38:53 PM,200 Block of HYDE ST,SF,94102,B02,3,1554,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7830590618212, -122.41571987823)",122390274-77 -130090368,D3,13003265,Explosion,01/09/2013,01/09/2013,01/09/2013 10:57:20 PM,01/09/2013 10:59:45 PM,01/09/2013 11:00:45 PM,01/09/2013 11:01:09 PM,01/09/2013 11:10:06 PM,04/25/2016 01:54:53 PM,04/25/2016 01:54:53 PM,Other,01/09/2013 11:14:35 PM,2400 Block of MISSION ST,SF,94110,B06,7,5446,3,3,3,false,Fire,1,CHIEF,10,6,9,Mission,"(37.7576134671742, -122.419025267752)",130090368-D3 -103260030,E39,10104365,Medical Incident,11/22/2010,11/21/2010,11/22/2010 04:08:11 AM,11/22/2010 04:08:38 AM,11/22/2010 04:08:56 AM,11/22/2010 04:10:31 AM,11/22/2010 04:12:49 AM,04/25/2016 02:07:29 PM,04/25/2016 02:07:29 PM,Other,11/22/2010 04:13:26 AM,14TH AV/WEST PORTAL AV,SF,94127,B08,39,8562,3,2,2,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7379698827734, -122.469056677033)",103260030-E39 -120390009,84,12012854,Medical Incident,02/08/2012,02/07/2012,02/08/2012 12:29:00 AM,02/08/2012 12:30:50 AM,02/08/2012 12:31:14 AM,02/08/2012 12:31:28 AM,02/08/2012 12:35:57 AM,02/08/2012 12:53:16 AM,02/08/2012 01:11:18 AM,Code 2 Transport,02/08/2012 01:51:54 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",120390009-84 -160383073,75,16015359,Traffic Collision,02/07/2016,02/07/2016,02/07/2016 07:37:27 PM,02/07/2016 07:38:13 PM,02/07/2016 07:39:33 PM,02/07/2016 07:39:47 PM,02/07/2016 07:48:15 PM,02/07/2016 08:14:26 PM,02/07/2016 08:34:41 PM,Code 2 Transport,02/07/2016 09:03:12 PM,18TH AV/FULTON ST,San Francisco,94121,B07,31,7166,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Golden Gate Park,"(37.7729128566624, -122.47669420588)",160383073-75 -160682861,AM08,16027201,Medical Incident,03/08/2016,03/08/2016,03/08/2016 05:50:34 PM,03/08/2016 05:52:44 PM,03/08/2016 05:52:59 PM,03/08/2016 05:53:41 PM,03/08/2016 05:59:50 PM,03/08/2016 06:05:00 PM,03/08/2016 06:25:43 PM,Code 2 Transport,03/08/2016 06:41:30 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160682861-AM08 -131620094,T05,13054973,Medical Incident,06/11/2013,06/11/2013,06/11/2013 09:12:25 AM,06/11/2013 09:13:08 AM,06/11/2013 09:13:37 AM,06/11/2013 09:15:01 AM,06/11/2013 09:18:10 AM,04/25/2016 01:52:21 PM,04/25/2016 01:52:21 PM,Other,06/11/2013 09:23:39 AM,400 Block of LARKIN ST,SF,94102,B02,3,1644,3,3,3,false,Potentially Life-Threatening,1,TRUCK,2,2,6,Tenderloin,"(37.7819221440615, -122.417173961997)",131620094-T05 -160780880,85,16030942,Medical Incident,03/18/2016,03/18/2016,03/18/2016 08:32:32 AM,03/18/2016 08:33:24 AM,03/18/2016 08:34:06 AM,03/18/2016 08:34:26 AM,03/18/2016 08:40:22 AM,03/18/2016 08:55:21 AM,03/18/2016 09:12:18 AM,Code 2 Transport,03/18/2016 09:41:39 AM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7819139744179, -122.413032193956)",160780880-85 -102610334,72,10082629,Traffic Collision,09/18/2010,09/18/2010,09/18/2010 06:01:53 PM,09/18/2010 06:01:53 PM,09/18/2010 06:02:08 PM,09/18/2010 06:02:52 PM,09/18/2010 06:08:08 PM,09/18/2010 06:14:27 PM,09/18/2010 06:23:22 PM,Code 3 Transport,09/18/2010 06:57:27 PM,SAN BRUNO AV/MANSELL ST,SF,94134,B10,44,6277,3,3,3,false,,1,MEDIC,2,10,9,Portola,"(37.7215343997982, -122.401074132147)",102610334-72 -160163086,79,16006559,Medical Incident,01/16/2016,01/16/2016,01/16/2016 07:20:26 PM,01/16/2016 07:21:06 PM,01/16/2016 07:21:55 PM,01/16/2016 07:22:19 PM,01/16/2016 07:27:21 PM,01/16/2016 07:36:46 PM,01/16/2016 07:41:39 PM,Code 3 Transport,01/16/2016 08:37:56 PM,0 Block of SANCHEZ ST,San Francisco,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7684539072982, -122.431342864403)",160163086-79 -140050293,94,14001899,Citizen Assist / Service Call,01/05/2014,01/05/2014,01/05/2014 06:45:19 PM,01/05/2014 06:45:19 PM,01/05/2014 06:50:17 PM,01/05/2014 06:50:34 PM,01/05/2014 07:07:24 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 07:17:30 PM,2700 Block of GREEN ST,SF,94123,B04,16,4225,,3,3,true,Alarm,1,MEDIC,2,4,2,Marina,"(37.7950571744208, -122.444409448853)",140050293-94 -122470215,B02,12081748,Structure Fire,09/03/2012,09/03/2012,09/03/2012 05:37:47 PM,09/03/2012 05:39:42 PM,09/03/2012 05:40:15 PM,09/03/2012 05:41:26 PM,09/03/2012 05:43:02 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 05:50:05 PM,900 Block of EDDY ST,SF,94102,B02,5,3262,3,3,3,false,Fire,1,CHIEF,5,2,5,Western Addition,"(37.782522418285, -122.423274430962)",122470215-B02 -131990047,B02,13067348,Alarms,07/18/2013,07/17/2013,07/18/2013 06:02:25 AM,07/18/2013 06:04:25 AM,07/18/2013 06:04:34 AM,07/18/2013 06:07:52 AM,07/18/2013 06:08:17 AM,04/25/2016 01:51:45 PM,04/25/2016 01:51:45 PM,Other,07/18/2013 06:16:20 AM,300 Block of GOUGH ST,SF,94102,B02,36,3265,3,3,3,false,Alarm,1,CHIEF,2,2,5,Hayes Valley,"(37.776658453148, -122.422862121316)",131990047-B02 -160743645,70,16029483,Medical Incident,03/14/2016,03/14/2016,03/14/2016 08:53:15 PM,03/14/2016 08:54:06 PM,03/14/2016 08:54:22 PM,03/14/2016 08:55:12 PM,03/14/2016 08:59:46 PM,03/14/2016 09:13:00 PM,03/14/2016 09:19:56 PM,Code 2 Transport,03/14/2016 09:44:33 PM,BAYSHORE BL/OAKDALE AV,San Francisco,94124,B10,9,6376,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Bernal Heights,"(37.7430512050759, -122.40524238682)",160743645-70 -131850361,88,13063198,Medical Incident,07/04/2013,07/04/2013,07/04/2013 09:42:27 PM,07/04/2013 09:46:00 PM,07/04/2013 10:08:31 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/04/2013 10:21:51 PM,1200 Block of NORTHPOINT DR,TI,94130,B03,48,2931,E,E,3,true,Potentially Life-Threatening,1,MEDIC,7,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",131850361-88 -102460205,88,10077748,Medical Incident,09/03/2010,09/03/2010,09/03/2010 01:17:53 PM,09/03/2010 01:19:47 PM,09/03/2010 01:20:13 PM,04/25/2016 02:08:46 PM,09/03/2010 01:24:38 PM,09/03/2010 01:56:51 PM,09/03/2010 02:41:14 PM,Code 2 Transport,09/03/2010 03:12:51 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.728489442639, -122.429995375728)",102460205-88 -160673114,AM20,16026903,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:32:34 PM,03/07/2016 08:34:13 PM,03/07/2016 08:34:48 PM,03/07/2016 08:35:25 PM,03/07/2016 08:43:18 PM,03/07/2016 09:08:27 PM,03/07/2016 09:29:35 PM,Code 2 Transport,03/07/2016 10:12:34 PM,1200 Block of WAYLAND ST,San Francisco,94134,B09,42,6346,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,9,Portola,"(37.7235232507011, -122.414469112024)",160673114-AM20 -133240378,E15,13110196,Electrical Hazard,11/20/2013,11/20/2013,11/20/2013 09:33:39 PM,11/20/2013 09:35:21 PM,11/20/2013 09:35:37 PM,11/20/2013 09:37:14 PM,11/20/2013 09:40:07 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,11/20/2013 10:05:54 PM,0 Block of DORADO TER,SF,94112,B09,15,8531,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7254919034304, -122.460932353704)",133240378-E15 -160170900,87,16006755,Medical Incident,01/17/2016,01/17/2016,01/17/2016 09:10:10 AM,01/17/2016 09:10:10 AM,01/17/2016 09:10:10 AM,01/17/2016 09:10:10 AM,01/17/2016 09:10:10 AM,01/17/2016 09:36:52 AM,01/17/2016 10:01:27 AM,Code 2 Transport,01/17/2016 10:16:09 AM,24TH ST/MISSION ST,San Francisco,94110,B06,11,5525,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7522394549791, -122.418445272851)",160170900-87 -160411841,56,16016458,Medical Incident,02/10/2016,02/10/2016,02/10/2016 01:05:59 PM,02/10/2016 01:05:59 PM,02/10/2016 01:06:37 PM,02/10/2016 01:07:04 PM,02/10/2016 01:11:11 PM,02/10/2016 01:15:49 PM,02/10/2016 01:15:50 PM,Against Medical Advice,02/10/2016 01:47:27 PM,1300 Block of TURK ST,San Francisco,94115,B04,5,3535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7806601472353, -122.431293406245)",160411841-56 -103550010,56,10113814,Medical Incident,12/21/2010,12/20/2010,12/21/2010 12:42:36 AM,12/21/2010 12:42:51 AM,12/21/2010 12:43:37 AM,12/21/2010 12:43:46 AM,12/21/2010 12:48:40 AM,12/21/2010 01:05:58 AM,12/21/2010 01:12:54 AM,Code 2 Transport,12/21/2010 01:34:23 AM,0 Block of GOLDEN GATE AVE,SF,94102,B02,1,1454,2,2,2,true,,1,MEDIC,1,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",103550010-56 -111980021,E29,11065190,Medical Incident,07/17/2011,07/16/2011,07/17/2011 01:16:06 AM,07/17/2011 01:17:55 AM,07/17/2011 01:18:49 AM,07/17/2011 01:20:33 AM,07/17/2011 01:23:53 AM,04/25/2016 02:03:38 PM,04/25/2016 02:03:38 PM,Other,07/17/2011 01:34:16 AM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,3,1,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",111980021-E29 -121740219,85,12057795,Medical Incident,06/22/2012,06/22/2012,06/22/2012 03:09:54 PM,06/22/2012 03:10:58 PM,06/22/2012 03:11:28 PM,06/22/2012 03:11:42 PM,06/22/2012 03:13:04 PM,06/22/2012 03:29:58 PM,06/22/2012 03:49:52 PM,Code 2 Transport,06/22/2012 04:15:11 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",121740219-85 -102640288,E02,10083640,Medical Incident,09/21/2010,09/21/2010,09/21/2010 06:06:04 PM,09/21/2010 06:08:09 PM,09/21/2010 06:08:44 PM,09/21/2010 06:09:27 PM,09/21/2010 06:12:11 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 06:15:42 PM,1100 Block of JONES ST,SF,94109,B01,41,1465,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7918709005093, -122.414268636834)",102640288-E02 -160540998,59,16021510,Medical Incident,02/23/2016,02/23/2016,02/23/2016 09:38:58 AM,02/23/2016 09:39:35 AM,02/23/2016 09:40:00 AM,02/23/2016 09:42:13 AM,02/23/2016 09:43:27 AM,02/23/2016 10:03:02 AM,02/23/2016 10:17:02 AM,Code 2 Transport,02/23/2016 11:05:01 AM,200 Block of 9TH ST,San Francisco,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7748170645635, -122.412845031536)",160540998-59 -111980267,75,11065397,Medical Incident,07/17/2011,07/17/2011,07/17/2011 06:07:27 PM,07/17/2011 06:08:22 PM,07/17/2011 06:09:10 PM,07/17/2011 06:09:18 PM,07/17/2011 06:14:55 PM,07/17/2011 06:33:48 PM,07/17/2011 06:40:32 PM,Code 2 Transport,07/17/2011 07:01:49 PM,CLAY ST/POLK ST,SF,94109,B04,41,1634,3,3,3,true,,1,MEDIC,2,4,3,Russian Hill,"(37.7923832522829, -122.421052874002)",111980267-75 -102260178,E21,10071146,Medical Incident,08/14/2010,08/14/2010,08/14/2010 01:19:13 PM,08/14/2010 01:19:41 PM,08/14/2010 01:21:04 PM,08/14/2010 01:21:37 PM,08/14/2010 01:24:44 PM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 01:45:50 PM,100 Block of STANYAN BLVD,SF,94118,B07,21,4557,3,3,3,true,,1,ENGINE,1,7,1,Lone Mountain/USF,"(37.7782053045566, -122.455385539111)",102260178-E21 -132890038,87,13098183,Medical Incident,10/16/2013,10/15/2013,10/16/2013 03:12:45 AM,10/16/2013 03:13:18 AM,10/16/2013 03:14:19 AM,10/16/2013 03:14:33 AM,10/16/2013 03:27:02 AM,10/16/2013 03:36:03 AM,10/16/2013 03:39:15 AM,Code 2 Transport,10/16/2013 04:19:41 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",132890038-87 -112130278,58,11070367,Medical Incident,08/01/2011,08/01/2011,08/01/2011 05:16:55 PM,08/01/2011 05:18:23 PM,08/01/2011 05:18:57 PM,08/01/2011 05:28:37 PM,08/01/2011 05:49:04 PM,08/01/2011 05:55:25 PM,08/01/2011 05:58:11 PM,Code 2 Transport,08/01/2011 06:17:29 PM,200 Block of ALMA ST,SF,94117,B05,12,5162,1,1,2,true,,1,MEDIC,2,5,5,Haight Ashbury,"(37.7629834619379, -122.451564578029)",112130278-58 -131420086,KM06,13048064,Medical Incident,05/22/2013,05/21/2013,05/22/2013 07:53:34 AM,05/22/2013 07:54:49 AM,05/22/2013 08:22:37 AM,05/22/2013 08:23:12 AM,05/22/2013 08:31:12 AM,05/22/2013 08:42:18 AM,05/22/2013 08:57:43 AM,Code 2 Transport,05/22/2013 09:12:33 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",131420086-KM06 -160213373,79,16008517,Medical Incident,01/21/2016,01/21/2016,01/21/2016 07:00:52 PM,01/21/2016 07:03:05 PM,01/21/2016 07:03:40 PM,01/21/2016 07:04:48 PM,01/21/2016 07:16:12 PM,01/21/2016 07:28:44 PM,01/21/2016 07:42:33 PM,Code 2 Transport,01/21/2016 08:16:00 PM,200 Block of 10TH ST,San Francisco,94103,B02,36,2342,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7734664897325, -122.413546904215)",160213373-79 -123400288,T12,12113500,Structure Fire,12/05/2012,12/05/2012,12/05/2012 04:02:02 PM,12/05/2012 04:02:29 PM,12/05/2012 04:02:56 PM,12/05/2012 04:04:28 PM,12/05/2012 04:05:42 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/05/2012 04:47:27 PM,0 Block of TWIN PEAKS BLVD,SF,94114,B05,12,5256,3,3,3,false,Fire,1,TRUCK,1,5,8,Inner Sunset,"(37.7597348090272, -122.447055013255)",123400288-T12 -160133296,AM16,16005307,Medical Incident,01/13/2016,01/13/2016,01/13/2016 06:16:46 PM,01/13/2016 06:18:52 PM,01/13/2016 06:20:58 PM,01/13/2016 06:21:27 PM,01/13/2016 06:25:20 PM,01/13/2016 06:39:52 PM,01/13/2016 06:59:44 PM,Code 2 Transport,01/13/2016 07:48:50 PM,500 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Tenderloin,"(37.7869413406164, -122.411939021128)",160133296-AM16 -140460292,T07,14015756,Other,02/15/2014,02/15/2014,02/15/2014 06:40:08 PM,02/15/2014 06:42:13 PM,02/15/2014 06:42:31 PM,02/15/2014 06:44:32 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 06:50:40 PM,600 Block of GUERRERO ST,SF,94110,B02,7,5422,3,3,3,false,Alarm,1,TRUCK,3,6,8,Mission,"(37.760758525583, -122.423838174213)",140460292-T07 -123630209,54,12121488,Structure Fire,12/28/2012,12/28/2012,12/28/2012 02:34:11 PM,12/28/2012 02:36:17 PM,12/28/2012 02:36:35 PM,12/28/2012 02:37:09 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,04/25/2016 01:55:05 PM,Other,12/28/2012 02:41:42 PM,400 Block of FLOOD AVE,SF,94112,B09,15,8234,3,3,3,true,Alarm,1,MEDIC,9,9,7,West of Twin Peaks,"(37.729932179401, -122.449995498867)",123630209-54 -140970320,E40,14032774,Traffic Collision,04/07/2014,04/07/2014,04/07/2014 04:48:14 PM,04/07/2014 04:50:38 PM,04/07/2014 04:50:52 PM,04/07/2014 04:52:21 PM,04/07/2014 04:53:55 PM,04/25/2016 01:47:20 PM,04/25/2016 01:47:20 PM,Code 2 Transport,04/07/2014 05:10:46 PM,19TH AV/SANTIAGO ST,SAN FRANCISCO,94116,B08,40,7416,,3,3,false,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7449187187769, -122.475773242641)",140970320-E40 -110120228,61,11004017,Medical Incident,01/12/2011,01/12/2011,01/12/2011 02:54:13 PM,01/12/2011 02:55:10 PM,01/12/2011 02:55:34 PM,01/12/2011 02:55:44 PM,01/12/2011 03:02:00 PM,01/12/2011 03:19:15 PM,01/12/2011 03:30:13 PM,Code 2 Transport,01/12/2011 04:02:31 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7813340573864, -122.399027495005)",110120228-61 -160833675,86,16033125,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:06:16 PM,03/23/2016 08:07:21 PM,03/23/2016 08:07:38 PM,03/23/2016 08:07:50 PM,03/23/2016 08:18:58 PM,03/23/2016 08:38:10 PM,03/23/2016 09:02:31 PM,Code 2 Transport,03/23/2016 09:35:12 PM,400 Block of BRAZIL AVE,San Francisco,94112,B09,43,6141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7229286889914, -122.431268819082)",160833675-86 -121510008,E01,12049896,Alarms,05/30/2012,05/29/2012,05/30/2012 12:40:13 AM,05/30/2012 12:40:54 AM,05/30/2012 12:41:12 AM,05/30/2012 12:42:19 AM,05/30/2012 12:43:23 AM,04/25/2016 01:58:27 PM,04/25/2016 01:58:27 PM,Other,05/30/2012 12:52:30 AM,0 Block of HAWTHORNE ST,SF,94105,B03,1,2177,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7853218167074, -122.398541704894)",121510008-E01 -160833858,78,16033151,Medical Incident,03/23/2016,03/23/2016,03/23/2016 09:03:16 PM,03/23/2016 09:07:47 PM,03/23/2016 09:08:17 PM,03/23/2016 09:08:25 PM,03/23/2016 09:14:56 PM,03/23/2016 09:39:30 PM,03/23/2016 09:57:09 PM,Code 2 Transport,03/23/2016 10:38:46 PM,900 Block of STOCKTON ST,San Francisco,94108,B01,2,1331,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7945090876582, -122.407922837848)",160833858-78 -121860170,B03,12061952,Alarms,07/04/2012,07/04/2012,07/04/2012 02:17:29 PM,07/04/2012 02:18:20 PM,07/04/2012 02:18:34 PM,04/25/2016 01:57:52 PM,07/04/2012 02:22:30 PM,04/25/2016 01:57:52 PM,04/25/2016 01:57:52 PM,Fire,07/04/2012 02:25:42 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,Alarm,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",121860170-B03 -121850201,66,12061634,Medical Incident,07/03/2012,07/03/2012,07/03/2012 01:40:10 PM,07/03/2012 01:40:13 PM,07/03/2012 01:40:21 PM,07/03/2012 01:40:39 PM,07/03/2012 01:43:47 PM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,Medical Examiner,07/03/2012 02:03:36 PM,800 Block of GEARY ST,SF,94109,B04,3,1556,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",121850201-66 -110410300,73,11013668,Medical Incident,02/10/2011,02/10/2011,02/10/2011 05:00:04 PM,02/10/2011 05:02:07 PM,02/10/2011 05:04:02 PM,02/10/2011 05:05:12 PM,02/10/2011 05:16:00 PM,02/10/2011 05:19:21 PM,04/25/2016 02:06:09 PM,Code 2 Transport,02/10/2011 06:31:33 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,3,3,3,true,,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",110410300-73 -160383538,87,16015401,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:08:04 PM,02/07/2016 10:08:04 PM,02/07/2016 10:17:11 PM,02/07/2016 10:17:11 PM,02/07/2016 10:17:11 PM,02/07/2016 10:22:32 PM,02/07/2016 10:28:26 PM,Code 2 Transport,02/07/2016 10:53:21 PM,300 Block of OFARRELL ST,San Francisco,94102,B01,1,1452,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7861537033569, -122.410515154107)",160383538-87 -120430212,E43,12014425,Medical Incident,02/12/2012,02/12/2012,02/12/2012 02:36:49 PM,02/12/2012 02:38:32 PM,02/12/2012 02:38:44 PM,02/12/2012 02:39:58 PM,02/12/2012 02:42:16 PM,04/25/2016 02:00:10 PM,04/25/2016 02:00:10 PM,Other,02/12/2012 02:46:52 PM,EDINBURGH ST/EXCELSIOR AV,SF,94112,B09,43,6133,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7243433379843, -122.429652125576)",120430212-E43 -131760316,B01,13059818,Alarms,06/25/2013,06/25/2013,06/25/2013 05:53:02 PM,06/25/2013 05:55:01 PM,06/25/2013 05:55:07 PM,06/25/2013 05:56:31 PM,06/25/2013 06:02:17 PM,04/25/2016 01:52:07 PM,04/25/2016 01:52:07 PM,Other,06/25/2013 06:05:06 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,false,Alarm,1,CHIEF,3,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131760316-B01 -133410279,KM04,13115703,Medical Incident,12/07/2013,12/07/2013,12/07/2013 05:13:09 PM,12/07/2013 05:13:20 PM,12/07/2013 05:15:00 PM,12/07/2013 05:15:44 PM,12/07/2013 05:25:25 PM,04/25/2016 01:49:24 PM,04/25/2016 01:49:24 PM,Other,12/07/2013 06:00:00 PM,43RD AV/CLEMENT ST,SF,94121,B07,34,7265,2,2,2,false,Non Life-threatening,1,PRIVATE,1,7,1,Outer Richmond,"(37.7811265093853, -122.504160424863)",133410279-KM04 -120830332,59,12027688,Traffic Collision,03/23/2012,03/23/2012,03/23/2012 07:53:30 PM,03/23/2012 07:54:29 PM,03/23/2012 07:54:56 PM,03/23/2012 08:00:19 PM,03/23/2012 08:11:59 PM,03/23/2012 08:19:44 PM,03/23/2012 08:37:36 PM,Code 2 Transport,03/23/2012 08:58:27 PM,ALEMANY BL/FARRAGUT AV,SF,94112,B09,33,8353,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Outer Mission,"(37.712055692394, -122.451954774014)",120830332-59 -113000026,54,11099385,Medical Incident,10/27/2011,10/26/2011,10/27/2011 02:42:36 AM,10/27/2011 02:43:32 AM,10/27/2011 02:43:46 AM,10/27/2011 02:43:57 AM,10/27/2011 02:47:45 AM,10/27/2011 02:54:54 AM,10/27/2011 03:00:20 AM,Code 2 Transport,10/27/2011 03:24:20 AM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",113000026-54 -160772418,AM02,16030649,Medical Incident,03/17/2016,03/17/2016,03/17/2016 03:04:56 PM,03/17/2016 03:05:20 PM,03/17/2016 03:10:43 PM,03/17/2016 03:11:02 PM,03/17/2016 03:21:50 PM,03/17/2016 03:39:55 PM,03/17/2016 03:50:12 PM,Code 2 Transport,03/17/2016 04:16:07 PM,ELLIS ST/JONES ST,San Francisco,94102,B03,3,1461,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",160772418-AM02 -123510372,82,12117569,Medical Incident,12/16/2012,12/16/2012,12/16/2012 10:17:51 PM,12/16/2012 10:19:19 PM,12/16/2012 10:20:05 PM,12/16/2012 10:21:05 PM,12/16/2012 10:24:28 PM,12/16/2012 10:37:31 PM,12/16/2012 10:43:45 PM,Code 2 Transport,12/16/2012 11:18:03 PM,900 Block of MARKET ST,SF,94102,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",123510372-82 -160200608,56,16007905,Medical Incident,01/20/2016,01/19/2016,01/20/2016 07:17:15 AM,01/20/2016 07:18:16 AM,01/20/2016 07:18:23 AM,01/20/2016 07:18:29 AM,01/20/2016 07:35:15 AM,01/20/2016 07:51:26 AM,01/20/2016 08:26:43 AM,Code 2 Transport,01/20/2016 08:44:37 AM,600 Block of HAMILTON ST,San Francisco,94134,B10,42,6331,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.72306950252, -122.408347140801)",160200608-56 -113140035,E03,11104215,Structure Fire,11/10/2011,11/09/2011,11/10/2011 04:50:33 AM,11/10/2011 04:50:33 AM,11/10/2011 04:50:43 AM,04/25/2016 02:01:43 PM,11/10/2011 04:54:36 AM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/10/2011 04:55:16 AM,OFARRELL ST/TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,1,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",113140035-E03 -103300210,T17,10105677,Structure Fire,11/26/2010,11/26/2010,11/26/2010 02:38:24 PM,11/26/2010 02:38:24 PM,11/26/2010 02:39:21 PM,11/26/2010 02:40:32 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 02:42:56 PM,HUDSON AV/CASHMERE ST,SF,94124,B10,25,652,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7358032544071, -122.383425446646)",103300210-T17 -110130087,KM11,11004236,Medical Incident,01/13/2011,01/13/2011,01/13/2011 08:06:17 AM,01/13/2011 08:08:18 AM,01/13/2011 08:09:43 AM,01/13/2011 08:13:07 AM,01/13/2011 08:22:32 AM,01/13/2011 08:30:10 AM,01/13/2011 08:40:08 AM,Code 2 Transport,01/13/2011 09:00:40 AM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,1,1,2,false,,1,PRIVATE,2,6,9,Mission,"(37.7619675295768, -122.417178937573)",110130087-KM11 -160392786,56,16015728,Medical Incident,02/08/2016,02/08/2016,02/08/2016 05:43:36 PM,02/08/2016 05:44:01 PM,02/08/2016 05:45:37 PM,02/08/2016 05:45:59 PM,02/08/2016 05:57:05 PM,02/08/2016 06:14:25 PM,02/08/2016 06:30:52 PM,Code 3 Transport,02/08/2016 07:13:44 PM,4600 Block of CABRILLO ST,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7733883647832, -122.508427023107)",160392786-56 -132040236,KM12,13069138,Medical Incident,07/23/2013,07/23/2013,07/23/2013 03:06:29 PM,07/23/2013 03:09:33 PM,07/23/2013 03:10:22 PM,07/23/2013 03:12:01 PM,07/23/2013 03:23:06 PM,07/23/2013 03:52:55 PM,07/23/2013 04:02:21 PM,Code 2 Transport,07/23/2013 04:30:49 PM,1700 Block of EDDY ST,SF,94115,B05,5,4133,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7808513149724, -122.436427287945)",132040236-KM12 -131270255,RS2,13042985,Medical Incident,05/07/2013,05/07/2013,05/07/2013 03:52:21 PM,05/07/2013 03:53:13 PM,05/07/2013 03:54:35 PM,05/07/2013 03:56:15 PM,05/07/2013 03:59:47 PM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/07/2013 04:01:48 PM,3000 Block of 16TH ST,SF,94103,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,2,9,Mission,"(37.7650413541786, -122.420746190588)",131270255-RS2 -160591237,AM10,16023473,Medical Incident,02/28/2016,02/28/2016,02/28/2016 10:57:08 AM,02/28/2016 11:00:14 AM,02/28/2016 11:00:32 AM,02/28/2016 11:00:59 AM,02/28/2016 11:06:43 AM,02/28/2016 11:30:30 AM,02/28/2016 11:35:39 AM,Code 2 Transport,02/28/2016 11:51:14 AM,700 Block of ELLIS ST,San Francisco,94109,B02,3,3115,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",160591237-AM10 -123130154,88,12104111,Medical Incident,11/08/2012,11/08/2012,11/08/2012 11:03:59 AM,11/08/2012 11:06:31 AM,11/08/2012 11:06:40 AM,11/08/2012 11:07:28 AM,11/08/2012 11:07:30 AM,11/08/2012 11:30:29 AM,11/08/2012 11:54:06 AM,Code 2 Transport,11/08/2012 12:17:14 PM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",123130154-88 -160671415,KM13,16026740,Medical Incident,03/07/2016,03/07/2016,03/07/2016 12:29:53 PM,03/07/2016 12:30:06 PM,03/07/2016 12:34:57 PM,03/07/2016 12:35:53 PM,03/07/2016 12:46:40 PM,03/07/2016 01:13:19 PM,03/07/2016 01:34:22 PM,Code 2 Transport,03/07/2016 02:22:29 PM,3900 Block of SACRAMENTO ST,San Francisco,94118,B07,10,4441,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,7,2,Presidio Heights,"(37.7868299907171, -122.458076168664)",160671415-KM13 -160311560,79,16012152,Medical Incident,01/31/2016,01/31/2016,01/31/2016 12:19:20 PM,01/31/2016 12:20:59 PM,01/31/2016 12:21:12 PM,01/31/2016 12:21:23 PM,01/31/2016 12:24:17 PM,01/31/2016 12:38:33 PM,01/31/2016 12:43:58 PM,Code 2 Transport,01/31/2016 01:10:20 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160311560-79 -160122618,61,16004845,Medical Incident,01/12/2016,01/12/2016,01/12/2016 04:38:05 PM,01/12/2016 04:39:23 PM,01/12/2016 04:40:56 PM,01/12/2016 04:41:04 PM,01/12/2016 04:43:42 PM,01/12/2016 04:52:03 PM,01/12/2016 04:58:57 PM,Code 2 Transport,01/12/2016 05:12:58 PM,OAK ST/CLAYTON ST,San Francisco,94117,B05,21,4524,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7716687396462, -122.448957993016)",160122618-61 -160782059,53,16031034,Medical Incident,03/18/2016,03/18/2016,03/18/2016 01:54:39 PM,03/18/2016 01:55:31 PM,03/18/2016 01:55:56 PM,03/18/2016 01:56:09 PM,03/18/2016 02:05:53 PM,03/18/2016 02:34:37 PM,03/18/2016 02:44:07 PM,Code 2 Transport,03/18/2016 03:24:20 PM,1500 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,4134,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7789870702557, -122.436051970399)",160782059-53 -121980053,E06,12065708,Medical Incident,07/16/2012,07/15/2012,07/16/2012 06:43:04 AM,07/16/2012 06:44:37 AM,07/16/2012 06:44:59 AM,07/16/2012 06:47:00 AM,07/16/2012 06:50:25 AM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 06:52:07 AM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,8,Mission,"(37.7661259454801, -122.42207304894)",121980053-E06 -113260054,T17,11108155,Odor (Strange / Unknown),11/22/2011,11/21/2011,11/22/2011 06:36:29 AM,11/22/2011 06:38:14 AM,11/22/2011 06:38:55 AM,11/22/2011 06:41:05 AM,11/22/2011 06:41:59 AM,04/25/2016 02:01:31 PM,04/25/2016 02:01:31 PM,Other,11/22/2011 06:44:46 AM,1200 Block of QUESADA AVE,SF,94124,B10,17,6634,3,3,3,true,,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.728626266314, -122.383019514156)",113260054-T17 -123410311,T05,12113879,Alarms,12/06/2012,12/06/2012,12/06/2012 05:09:40 PM,12/06/2012 05:11:32 PM,12/06/2012 05:11:39 PM,12/06/2012 05:12:51 PM,12/06/2012 05:15:42 PM,04/25/2016 01:55:26 PM,04/25/2016 01:55:26 PM,Other,12/06/2012 05:23:18 PM,800 Block of HAYES ST,SF,94117,B02,5,3522,3,3,3,false,Alarm,1,TRUCK,1,2,5,Hayes Valley,"(37.7759935454975, -122.430387323181)",123410311-T05 -132510051,RC1,13084695,Medical Incident,09/08/2013,09/07/2013,09/08/2013 02:36:19 AM,09/08/2013 02:36:50 AM,09/08/2013 02:37:03 AM,09/08/2013 02:40:14 AM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,04/25/2016 01:50:54 PM,Other,09/08/2013 02:44:09 AM,1500 Block of OAKDALE AVE,SF,94124,B10,17,6534,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,10,10,Bayview Hunters Point,"(37.7340217594171, -122.389453670256)",132510051-RC1 -120580123,59,12019063,Medical Incident,02/27/2012,02/27/2012,02/27/2012 10:15:58 AM,02/27/2012 10:17:35 AM,02/27/2012 10:18:19 AM,02/27/2012 10:18:47 AM,02/27/2012 10:28:55 AM,02/27/2012 10:49:19 AM,02/27/2012 11:04:42 AM,Code 2 Transport,02/27/2012 11:34:10 AM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7848984736106, -122.389669866427)",120580123-59 -103200362,E29,10102708,Citizen Assist / Service Call,11/16/2010,11/16/2010,11/16/2010 08:26:33 PM,11/16/2010 08:26:37 PM,11/16/2010 08:26:55 PM,11/16/2010 08:27:18 PM,11/16/2010 08:28:07 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Fire,11/16/2010 08:30:38 PM,UTAH ST/16TH ST,SF,94103,B02,29,2421,3,3,3,true,,1,ENGINE,1,2,10,Mission,"(37.7658422720667, -122.406552825622)",103200362-E29 -131850013,E10,13062907,Medical Incident,07/04/2013,07/03/2013,07/04/2013 12:34:21 AM,07/04/2013 12:34:52 AM,07/04/2013 12:35:13 AM,07/04/2013 12:36:00 AM,07/04/2013 12:39:37 AM,04/25/2016 01:51:58 PM,04/25/2016 01:51:58 PM,Other,07/04/2013 01:02:39 AM,2800 Block of BROADWAY,SF,94115,B04,10,4226,E,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7930651453295, -122.444006750024)",131850013-E10 -122450041,82,12080877,Medical Incident,09/01/2012,08/31/2012,09/01/2012 02:22:15 AM,09/01/2012 02:22:37 AM,09/01/2012 02:22:48 AM,09/01/2012 02:23:51 AM,04/25/2016 01:56:58 PM,09/01/2012 02:40:55 AM,09/01/2012 02:53:01 AM,Code 2 Transport,09/01/2012 03:24:42 AM,400 Block of CASTRO ST,SF,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.761776834379, -122.435151672775)",122450041-82 -131240207,KM07,13041828,Other,05/04/2013,05/04/2013,05/04/2013 01:15:49 PM,05/04/2013 01:17:36 PM,05/04/2013 01:39:58 PM,05/04/2013 01:41:13 PM,05/04/2013 02:03:45 PM,05/04/2013 02:19:55 PM,05/04/2013 02:41:35 PM,Code 2 Transport,05/04/2013 03:14:32 PM,0 Block of SEAL ROCK DR,SF,94121,B07,34,7275,3,3,3,false,Alarm,1,PRIVATE,2,7,1,Lincoln Park,"(37.780814166463, -122.507057948553)",131240207-KM07 -111940072,E20,11063962,Medical Incident,07/13/2011,07/12/2011,07/13/2011 07:55:06 AM,07/13/2011 07:56:25 AM,07/13/2011 07:57:20 AM,07/13/2011 07:58:59 AM,07/13/2011 08:01:21 AM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 08:02:22 AM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,true,,1,ENGINE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",111940072-E20 -131930318,E22,13065773,Medical Incident,07/12/2013,07/12/2013,07/12/2013 08:57:51 PM,07/12/2013 08:58:38 PM,07/12/2013 08:59:22 PM,07/12/2013 08:59:59 PM,07/12/2013 09:02:12 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 09:11:52 PM,1500 Block of 21ST AVE,SF,94122,B08,22,7427,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7588019575256, -122.479009018922)",131930318-E22 -160172527,AM16,16006924,Medical Incident,01/17/2016,01/17/2016,01/17/2016 05:31:29 PM,01/17/2016 05:33:40 PM,01/17/2016 05:35:04 PM,01/17/2016 05:41:40 PM,01/17/2016 05:41:40 PM,01/17/2016 05:58:36 PM,01/17/2016 06:11:19 PM,Code 2 Transport,01/17/2016 06:25:42 PM,23RD ST/VALENCIA ST,San Francisco,94110,B06,11,5512,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Mission,"(37.7537030945495, -122.420812137045)",160172527-AM16 -160180853,KM04,16007165,Medical Incident,01/18/2016,01/18/2016,01/18/2016 09:12:39 AM,01/18/2016 09:15:22 AM,01/18/2016 09:16:28 AM,01/18/2016 09:17:08 AM,01/18/2016 09:46:22 AM,01/18/2016 09:46:39 AM,01/18/2016 10:05:54 AM,Code 2 Transport,01/18/2016 10:39:53 AM,600 Block of MASON ST,Presidio,94108,B99,51,4614,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",160180853-KM04 -111000344,E15,11033368,Medical Incident,04/10/2011,04/10/2011,04/10/2011 11:13:48 PM,04/10/2011 11:14:50 PM,04/10/2011 11:15:06 PM,04/10/2011 11:16:53 PM,04/10/2011 11:19:04 PM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 11:33:26 PM,100 Block of NORTHWOOD DR,SF,94112,B09,15,8514,3,2,2,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7300073588477, -122.459018359791)",111000344-E15 -123330313,E31,12110774,Alarms,11/28/2012,11/28/2012,11/28/2012 08:56:48 PM,11/28/2012 08:57:28 PM,11/28/2012 08:57:34 PM,11/28/2012 08:58:34 PM,11/28/2012 08:59:56 PM,04/25/2016 01:55:35 PM,04/25/2016 01:55:35 PM,Other,11/28/2012 09:06:23 PM,4000 Block of FULTON ST,SF,94118,B07,31,7156,3,3,3,true,Alarm,1,ENGINE,1,7,1,Outer Richmond,"(37.7730416077459, -122.475086257619)",123330313-E31 -132030252,92,13068830,Medical Incident,07/22/2013,07/22/2013,07/22/2013 05:02:42 PM,07/22/2013 05:03:26 PM,07/22/2013 05:04:00 PM,07/22/2013 05:06:32 PM,07/22/2013 05:20:54 PM,07/22/2013 05:29:13 PM,07/22/2013 05:31:36 PM,Code 2 Transport,07/22/2013 05:54:23 PM,1500 Block of VAN NESS AVE,SF,94109,B04,38,3155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7899102760998, -122.422060762613)",132030252-92 -112780173,E21,11092018,Medical Incident,10/05/2011,10/05/2011,10/05/2011 12:09:52 PM,10/05/2011 12:10:22 PM,10/05/2011 12:10:48 PM,10/05/2011 12:11:19 PM,10/05/2011 12:14:08 PM,04/25/2016 02:02:19 PM,04/25/2016 02:02:19 PM,Other,10/05/2011 12:33:20 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,2,2,false,,1,ENGINE,1,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",112780173-E21 -133000319,93,13102068,Medical Incident,10/27/2013,10/27/2013,10/27/2013 07:53:36 PM,10/27/2013 07:55:42 PM,10/27/2013 07:56:20 PM,10/27/2013 07:56:48 PM,10/27/2013 08:01:36 PM,10/27/2013 08:19:33 PM,10/27/2013 08:40:48 PM,Code 3 Transport,10/27/2013 09:20:57 PM,1700 Block of MCKINNON AVE,SF,94124,B10,25,6455,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7374788316121, -122.391986352639)",133000319-93 -123580272,B03,12119944,Alarms,12/23/2012,12/23/2012,12/23/2012 06:40:13 PM,12/23/2012 06:42:27 PM,12/23/2012 06:42:44 PM,12/23/2012 06:43:47 PM,12/23/2012 06:47:45 PM,04/25/2016 01:55:10 PM,04/25/2016 01:55:10 PM,Other,12/23/2012 06:54:28 PM,0 Block of 2ND ST,SF,94105,B03,1,2144,3,3,3,false,Alarm,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7886675869095, -122.400529034534)",123580272-B03 -160712391,71,16028302,Medical Incident,03/11/2016,03/11/2016,03/11/2016 04:11:41 PM,03/11/2016 04:13:17 PM,03/11/2016 04:13:48 PM,03/11/2016 04:13:59 PM,03/11/2016 04:21:09 PM,03/11/2016 04:30:48 PM,03/11/2016 04:51:39 PM,Code 2 Transport,03/11/2016 05:18:37 PM,2100 Block of RIVERA ST,San Francisco,94116,B08,18,7545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7462434805122, -122.489346446358)",160712391-71 -133650107,E39,13123884,Structure Fire,12/31/2013,12/31/2013,12/31/2013 09:21:00 AM,12/31/2013 09:22:26 AM,12/31/2013 09:26:09 AM,12/31/2013 09:27:51 AM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,04/25/2016 01:48:58 PM,Other,12/31/2013 09:32:11 AM,1300 Block of NORIEGA ST,SF,94122,B08,40,7431,3,3,3,true,Fire,1,ENGINE,12,8,4,Sunset/Parkside,"(37.7541143987434, -122.478078270474)",133650107-E39 -130690265,87,13023113,Medical Incident,03/10/2013,03/10/2013,03/10/2013 07:16:51 PM,03/10/2013 07:17:30 PM,03/10/2013 07:17:44 PM,03/10/2013 07:17:56 PM,03/10/2013 07:21:20 PM,03/10/2013 07:47:53 PM,03/10/2013 08:24:06 PM,Code 2 Transport,03/10/2013 08:26:33 PM,1500 Block of MCKINNON AVE,SF,94124,B10,17,6534,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7353846949513, -122.388260839509)",130690265-87 -120770308,KM14,12025616,Medical Incident,03/17/2012,03/17/2012,03/17/2012 07:26:38 PM,03/17/2012 07:28:48 PM,03/17/2012 07:30:22 PM,03/17/2012 07:31:48 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,04/25/2016 01:59:37 PM,Other,03/17/2012 07:39:28 PM,100 Block of EL VERANO WAY,SF,94127,B09,15,8547,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7306626236043, -122.46146141525)",120770308-KM14 -140260338,T19,14009051,Alarms,01/26/2014,01/26/2014,01/26/2014 11:35:17 PM,01/26/2014 11:36:49 PM,01/26/2014 11:37:14 PM,01/26/2014 11:39:54 PM,01/26/2014 11:40:34 PM,04/25/2016 01:48:31 PM,04/25/2016 01:48:31 PM,Other,01/26/2014 11:51:39 PM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",140260338-T19 -110390188,T17,11012935,Medical Incident,02/08/2011,02/08/2011,02/08/2011 12:59:06 PM,02/08/2011 01:00:24 PM,02/08/2011 01:00:55 PM,02/08/2011 01:01:45 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 01:02:10 PM,0 Block of ESPANOLA ST,SF,94124,B10,17,6641,3,3,3,false,,1,TRUCK,4,10,10,Bayview Hunters Point,"(37.731114440428, -122.380104860933)",110390188-T17 -160021688,AM06,16000745,Medical Incident,01/02/2016,01/02/2016,01/02/2016 01:30:05 PM,01/02/2016 01:32:59 PM,01/02/2016 01:33:24 PM,01/02/2016 01:34:06 PM,01/02/2016 01:41:25 PM,01/02/2016 01:58:39 PM,01/02/2016 02:24:25 PM,Code 2 Transport,01/02/2016 03:12:09 PM,100 Block of MONTGOMERY ST,Presidio,94104,B99,51,4626,3,3,3,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7905126810084, -122.402216710445)",160021688-AM06 -130230414,E31,13008134,Citizen Assist / Service Call,01/23/2013,01/23/2013,01/23/2013 11:13:20 PM,01/23/2013 11:14:25 PM,01/23/2013 11:15:05 PM,01/23/2013 11:17:37 PM,01/23/2013 11:18:49 PM,04/25/2016 01:54:39 PM,04/25/2016 01:54:39 PM,Fire,01/23/2013 11:27:06 PM,700 Block of 9TH AVE,SF,94118,B07,31,7133,3,3,3,true,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7742838362114, -122.467088086382)",130230414-E31 -140220358,77,14007672,Medical Incident,01/22/2014,01/22/2014,01/22/2014 08:55:09 PM,01/22/2014 08:57:33 PM,01/22/2014 09:01:19 PM,01/22/2014 09:01:19 PM,04/25/2016 01:48:35 PM,01/22/2014 09:07:51 PM,01/22/2014 09:14:52 PM,Code 3 Transport,01/22/2014 09:36:33 PM,SAN BRUNO AV/BACON ST,SF,94134,B10,42,6451,,E,3,true,Potentially Life-Threatening,1,MEDIC,5,10,9,Portola,"(37.7276341272753, -122.403592890818)",140220358-77 -160732531,AM08,16029071,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:12:34 PM,03/13/2016 07:14:20 PM,03/13/2016 07:15:07 PM,03/13/2016 07:15:40 PM,03/13/2016 07:30:20 PM,03/13/2016 07:37:10 PM,03/13/2016 07:48:03 PM,Code 2 Transport,03/13/2016 08:18:28 PM,900 Block of GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",160732531-AM08 -111810074,T15,11059652,Traffic Collision,06/30/2011,06/30/2011,06/30/2011 08:50:22 AM,06/30/2011 08:50:53 AM,06/30/2011 08:51:13 AM,06/30/2011 08:56:03 AM,06/30/2011 09:00:30 AM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 09:35:18 AM,2900 Block of DIAMOND ST,SF,94131,B09,26,8269,3,3,3,false,,1,TRUCK,4,9,8,West of Twin Peaks,"(37.7330297009484, -122.434226339308)",111810074-T15 -123590344,E01,12120339,Structure Fire,12/24/2012,12/24/2012,12/24/2012 10:29:39 PM,12/24/2012 10:32:53 PM,12/24/2012 10:33:12 PM,04/25/2016 01:55:09 PM,12/24/2012 10:37:52 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,12/24/2012 10:38:58 PM,100 Block of 3RD ST,SF,94103,B03,1,2178,3,3,3,true,Alarm,1,ENGINE,4,3,6,Financial District/South Beach,"(37.7854688687807, -122.400930575935)",123590344-E01 -160591064,AM04,16023460,Medical Incident,02/28/2016,02/28/2016,02/28/2016 10:04:20 AM,02/28/2016 10:05:08 AM,02/28/2016 10:05:47 AM,02/28/2016 10:06:37 AM,02/28/2016 10:12:52 AM,02/28/2016 10:31:05 AM,02/28/2016 10:43:14 AM,Code 2 Transport,02/28/2016 11:05:11 AM,ALABAMA ST/24TH ST,San Francisco,94110,B06,7,5527,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7526848900219, -122.410962662832)",160591064-AM04 -111600143,RC2,11052860,Medical Incident,06/09/2011,06/09/2011,06/09/2011 12:59:21 PM,06/09/2011 01:01:25 PM,06/09/2011 01:02:18 PM,06/09/2011 01:03:56 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 01:09:45 PM,1600 Block of SUNNYDALE AVE,SF,94134,B09,43,6241,3,3,3,true,,1,RESCUE CAPTAIN,3,9,10,Visitacion Valley,"(37.7122553983208, -122.417104410317)",111600143-RC2 -160453559,53,16018327,Traffic Collision,02/14/2016,02/14/2016,02/14/2016 10:51:19 PM,02/14/2016 10:54:53 PM,02/14/2016 10:55:11 PM,02/14/2016 10:55:36 PM,02/14/2016 11:07:01 PM,02/14/2016 11:16:05 PM,02/14/2016 11:35:35 PM,Code 2 Transport,02/15/2016 12:18:24 AM,MONTGOMERY ST/CALIFORNIA ST,San Francisco,94104,B01,13,1234,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7928512206877, -122.40276676965)",160453559-53 -132700082,82,13091612,Medical Incident,09/27/2013,09/26/2013,09/27/2013 07:15:07 AM,09/27/2013 07:16:59 AM,09/27/2013 07:23:29 AM,09/27/2013 07:23:43 AM,09/27/2013 07:27:31 AM,09/27/2013 07:34:30 AM,09/27/2013 07:45:50 AM,Code 2 Transport,09/27/2013 08:19:21 AM,100 Block of BARNEVELD AVE,SF,94124,B10,9,6412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7450485716234, -122.402839684407)",132700082-82 -160644071,76,16025724,Medical Incident,03/04/2016,03/04/2016,03/04/2016 10:50:19 PM,03/04/2016 10:53:45 PM,03/04/2016 10:54:16 PM,03/04/2016 10:54:24 PM,03/04/2016 10:58:55 PM,03/04/2016 11:14:38 PM,03/04/2016 11:30:22 PM,Code 2 Transport,03/04/2016 11:45:47 PM,1200 Block of WASHINGTON ST,San Francisco,94108,B01,41,1466,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7941609889234, -122.413818267559)",160644071-76 -111050356,E07,11034922,Structure Fire,04/15/2011,04/15/2011,04/15/2011 11:11:04 PM,04/15/2011 11:12:38 PM,04/15/2011 11:12:46 PM,04/25/2016 02:05:05 PM,04/15/2011 11:13:47 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 11:24:19 PM,1000 Block of POTRERO AVE,SF,94110,B10,7,2553,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",111050356-E07 -132730050,T06,13092672,Structure Fire,09/30/2013,09/29/2013,09/30/2013 03:19:12 AM,09/30/2013 03:20:59 AM,09/30/2013 03:21:16 AM,09/30/2013 03:23:11 AM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,04/25/2016 01:50:30 PM,Other,09/30/2013 03:27:46 AM,500 Block of DIVISADERO ST,SF,94117,B05,21,4145,3,3,3,false,Alarm,1,TRUCK,7,5,5,Hayes Valley,"(37.7745415617003, -122.437589912285)",132730050-T06 -140060093,E40,14002057,Citizen Assist / Service Call,01/06/2014,01/06/2014,01/06/2014 08:10:20 AM,01/06/2014 08:11:50 AM,01/06/2014 08:12:17 AM,01/06/2014 08:14:18 AM,01/06/2014 08:16:49 AM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 08:25:57 AM,1100 Block of TARAVAL ST,SF,94116,B08,40,7416,3,3,3,true,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.742986949819, -122.478374336558)",140060093-E40 -123610151,89,12120778,Medical Incident,12/26/2012,12/26/2012,12/26/2012 11:51:13 AM,12/26/2012 11:53:13 AM,12/26/2012 11:53:45 AM,12/26/2012 11:53:52 AM,12/26/2012 12:04:31 PM,04/25/2016 01:55:07 PM,04/25/2016 01:55:07 PM,Unable to Locate,12/26/2012 12:08:26 PM,JUDAH ST/GREAT HY,SF,94122,B08,23,7723,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7602716873667, -122.509381620507)",123610151-89 -160722203,KM02,16028655,Medical Incident,03/12/2016,03/12/2016,03/12/2016 04:02:26 PM,03/12/2016 04:03:37 PM,03/12/2016 04:03:59 PM,03/12/2016 04:05:53 PM,03/12/2016 04:12:53 PM,03/12/2016 04:28:25 PM,03/12/2016 04:56:57 PM,Code 3 Transport,03/12/2016 05:47:23 PM,0 Block of CARR ST,San Francisco,94124,B10,44,6323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,10,10,Bayview Hunters Point,"(37.7217620449242, -122.396882396806)",160722203-KM02 -160732606,AM10,16029082,Medical Incident,03/13/2016,03/13/2016,03/13/2016 07:40:28 PM,03/13/2016 07:40:43 PM,03/13/2016 07:41:33 PM,03/13/2016 07:42:08 PM,03/13/2016 07:53:57 PM,03/13/2016 07:54:05 PM,03/13/2016 08:31:25 PM,Code 2 Transport,03/13/2016 08:41:19 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160732606-AM10 -112360302,RS2,11077988,Traffic Collision,08/24/2011,08/24/2011,08/24/2011 07:28:14 PM,08/24/2011 07:28:29 PM,08/24/2011 07:28:50 PM,08/24/2011 07:37:03 PM,08/24/2011 07:41:41 PM,04/25/2016 02:03:01 PM,04/25/2016 02:03:01 PM,Other,08/24/2011 07:57:37 PM,BACON ST/BAYSHORE BL,SF,94124,B10,42,6451,3,3,3,false,,1,RESCUE SQUAD,7,10,10,Portola,"(37.7281019732216, -122.402209197225)",112360302-RS2 -160130304,71,16005037,Medical Incident,01/13/2016,01/12/2016,01/13/2016 03:42:55 AM,01/13/2016 03:42:55 AM,01/13/2016 03:42:55 AM,01/13/2016 03:42:55 AM,01/13/2016 03:42:55 AM,01/13/2016 04:00:27 AM,01/13/2016 04:01:07 AM,Code 2 Transport,01/13/2016 05:19:59 AM,HYDE ST/BUSH ST,San Francisco,94109,B99,3,1557,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7891101748937, -122.417016879226)",160130304-71 -123030284,E31,12100584,Medical Incident,10/29/2012,10/29/2012,10/29/2012 01:10:31 PM,10/29/2012 01:12:28 PM,10/29/2012 01:12:50 PM,10/29/2012 01:14:18 PM,10/29/2012 01:16:53 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Patient Declined Transport,10/29/2012 01:27:49 PM,BALBOA ST/19TH AV,SF,94121,B07,31,7157,1,1,2,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7765952440368, -122.478033276675)",123030284-E31 -103040307,B01,10097231,Alarms,10/31/2010,10/31/2010,10/31/2010 05:21:59 PM,10/31/2010 05:23:02 PM,10/31/2010 05:24:02 PM,10/31/2010 05:24:42 PM,10/31/2010 05:26:16 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 05:27:34 PM,100 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,false,,1,CHIEF,2,3,3,Financial District/South Beach,"(37.7859592016065, -122.407876025087)",103040307-B01 -110430093,E36,11014192,Outside Fire,02/12/2011,02/11/2011,02/12/2011 05:28:56 AM,02/12/2011 05:30:44 AM,02/12/2011 05:30:52 AM,02/12/2011 05:32:52 AM,02/12/2011 05:34:12 AM,04/25/2016 02:06:07 PM,04/25/2016 02:06:07 PM,Other,02/12/2011 06:16:46 AM,0 Block of GOUGH ST,SF,94102,B02,36,3311,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7733777975899, -122.422339243333)",110430093-E36 -140580146,96,14019530,Medical Incident,02/27/2014,02/27/2014,02/27/2014 11:33:11 AM,02/27/2014 11:34:01 AM,02/27/2014 11:34:19 AM,02/27/2014 11:34:31 AM,02/27/2014 11:38:47 AM,04/25/2016 01:48:00 PM,04/25/2016 01:48:00 PM,Patient Declined Transport,02/27/2014 12:02:41 PM,0 Block of OSCEOLA LN,SF,94124,B10,17,6637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7317523387371, -122.383085144615)",140580146-96 -160621743,60,16024691,Medical Incident,03/02/2016,03/02/2016,03/02/2016 12:29:09 PM,03/02/2016 12:30:44 PM,03/02/2016 12:31:09 PM,03/02/2016 12:31:22 PM,03/02/2016 12:36:28 PM,03/02/2016 12:53:23 PM,03/02/2016 12:59:44 PM,Code 2 Transport,03/02/2016 02:09:38 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160621743-60 -130040192,E44,13001353,Alarms,01/04/2013,01/04/2013,01/04/2013 12:07:26 PM,01/04/2013 12:08:56 PM,01/04/2013 12:09:03 PM,01/04/2013 12:09:37 PM,01/04/2013 12:12:24 PM,04/25/2016 01:54:58 PM,04/25/2016 01:54:58 PM,Other,01/04/2013 12:15:43 PM,400 Block of TUNNEL AVE,SF,94134,B10,44,6271,3,3,3,true,Alarm,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7091116111849, -122.401261222882)",130040192-E44 -160660177,68,16026223,Medical Incident,03/06/2016,03/05/2016,03/06/2016 01:13:22 AM,03/06/2016 01:13:22 AM,03/06/2016 01:15:26 AM,03/06/2016 01:15:26 AM,03/06/2016 01:22:41 AM,03/06/2016 01:29:20 AM,03/06/2016 01:38:57 AM,Code 2 Transport,03/06/2016 02:27:37 AM,CALL BOX: SAN JOSE AV/SANTA YNEZ AV,San Francisco,94112,B09,15,8276,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7258249736518, -122.442324422614)",160660177-68 -103410239,78,10109164,Medical Incident,12/07/2010,12/07/2010,12/07/2010 02:58:28 PM,12/07/2010 03:00:54 PM,12/07/2010 03:11:38 PM,12/07/2010 03:12:00 PM,12/07/2010 03:24:24 PM,12/07/2010 03:37:24 PM,12/07/2010 03:49:35 PM,Code 2 Transport,12/07/2010 04:18:21 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,1,1,2,true,,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",103410239-78 -103120273,E14,10100119,Medical Incident,11/08/2010,11/08/2010,11/08/2010 05:46:48 PM,11/08/2010 05:48:00 PM,11/08/2010 05:48:13 PM,11/08/2010 05:49:03 PM,11/08/2010 05:50:59 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 06:10:22 PM,200 Block of 25TH AVE,SF,94121,B07,14,7214,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7848109228763, -122.485148529498)",103120273-E14 -110480031,E03,11015750,Medical Incident,02/17/2011,02/16/2011,02/17/2011 04:04:12 AM,02/17/2011 04:05:43 AM,02/17/2011 04:06:00 AM,02/17/2011 04:07:18 AM,02/17/2011 04:10:05 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/17/2011 04:21:35 AM,JONES ST/OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7857895835915, -122.412969669254)",110480031-E03 -121120049,E08,12037009,Medical Incident,04/21/2012,04/20/2012,04/21/2012 02:32:18 AM,04/21/2012 02:34:15 AM,04/21/2012 02:36:02 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 02:38:06 AM,MINNA ST/6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,3,6,South of Market,"(37.7805353840251, -122.40816079453)",121120049-E08 -112600383,E07,11085923,Structure Fire,09/17/2011,09/17/2011,09/17/2011 08:09:31 PM,09/17/2011 08:09:31 PM,09/17/2011 08:09:39 PM,09/17/2011 08:10:28 PM,09/17/2011 08:11:47 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,09/17/2011 08:12:22 PM,20TH ST/MISSION ST,SF,94110,B06,7,5446,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7586325666591, -122.419052607701)",112600383-E07 -130280410,E02,13009787,Medical Incident,01/28/2013,01/28/2013,01/28/2013 11:36:40 PM,01/28/2013 11:37:28 PM,01/28/2013 11:38:12 PM,01/28/2013 11:39:40 PM,01/28/2013 11:42:21 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/28/2013 11:57:09 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",130280410-E02 -103590183,56,10115233,Medical Incident,12/25/2010,12/25/2010,12/25/2010 01:43:14 PM,12/25/2010 01:44:05 PM,12/25/2010 01:44:32 PM,12/25/2010 01:44:45 PM,12/25/2010 01:48:11 PM,12/25/2010 01:58:02 PM,12/25/2010 02:10:28 PM,Code 2 Transport,12/25/2010 02:29:45 PM,100 Block of 5TH ST,SF,94103,B03,1,2246,3,2,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7820718462058, -122.405747870527)",103590183-56 -132210056,E23,13074533,Medical Incident,08/09/2013,08/09/2013,08/09/2013 08:34:00 AM,08/09/2013 08:35:14 AM,08/09/2013 08:35:34 AM,08/09/2013 08:37:09 AM,08/09/2013 08:40:34 AM,04/25/2016 01:51:23 PM,04/25/2016 01:51:23 PM,Other,08/09/2013 08:51:49 AM,2400 Block of 47TH AVE,SF,94116,B08,23,7712,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7407846485821, -122.505694431009)",132210056-E23 -112760285,T01,11091434,Alarms,10/03/2011,10/03/2011,10/03/2011 04:35:26 PM,10/03/2011 04:36:00 PM,10/03/2011 04:36:07 PM,10/03/2011 04:37:40 PM,10/03/2011 04:42:12 PM,04/25/2016 02:02:21 PM,04/25/2016 02:02:21 PM,Other,10/03/2011 04:45:45 PM,100 Block of 3RD ST,SF,94105,B03,1,2178,3,3,3,false,,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7860778017363, -122.40170904562)",112760285-T01 -123310050,E08,12109924,Traffic Collision,11/26/2012,11/25/2012,11/26/2012 05:06:19 AM,11/26/2012 05:08:24 AM,11/26/2012 05:08:43 AM,11/26/2012 05:11:16 AM,11/26/2012 05:12:23 AM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,Other,11/26/2012 05:14:07 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",123310050-E08 -121900070,T03,12063210,Structure Fire,07/08/2012,07/07/2012,07/08/2012 06:22:56 AM,07/08/2012 06:22:57 AM,07/08/2012 06:23:15 AM,07/08/2012 06:25:00 AM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,04/25/2016 01:57:49 PM,Other,07/08/2012 06:25:55 AM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,false,Alarm,1,TRUCK,2,4,6,Tenderloin,"(37.7867864398535, -122.416475580111)",121900070-T03 -160543538,78,16021759,Medical Incident,02/23/2016,02/23/2016,02/23/2016 07:50:22 PM,02/23/2016 07:51:21 PM,02/23/2016 07:51:44 PM,02/23/2016 07:52:08 PM,02/23/2016 07:55:40 PM,02/23/2016 08:10:43 PM,02/23/2016 08:22:13 PM,Code 2 Transport,02/23/2016 08:57:17 PM,300 Block of MASON ST,San Francisco,94102,B01,3,1411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Tenderloin,"(37.7869126924267, -122.409756223507)",160543538-78 -133020008,E08,13102480,Medical Incident,10/29/2013,10/28/2013,10/29/2013 12:34:17 AM,10/29/2013 12:36:13 AM,10/29/2013 12:36:40 AM,10/29/2013 12:38:51 AM,10/29/2013 12:41:40 AM,04/25/2016 01:50:02 PM,04/25/2016 01:50:02 PM,Other,10/29/2013 12:48:02 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",133020008-E08 -160341548,52,16013361,Medical Incident,02/03/2016,02/03/2016,02/03/2016 12:11:10 PM,02/03/2016 12:12:25 PM,02/03/2016 12:12:49 PM,02/03/2016 12:13:08 PM,02/03/2016 12:19:03 PM,02/03/2016 12:37:24 PM,02/03/2016 01:06:13 PM,Code 2 Transport,02/03/2016 01:37:06 PM,100 Block of MARSTON AV,San Francisco,94112,B09,15,8226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7274039986614, -122.447230933222)",160341548-52 -122300012,E17,12076071,Medical Incident,08/17/2012,08/16/2012,08/17/2012 12:48:49 AM,08/17/2012 12:49:31 AM,08/17/2012 12:49:46 AM,08/17/2012 12:51:29 AM,08/17/2012 12:52:29 AM,04/25/2016 01:57:12 PM,04/25/2016 01:57:12 PM,Other,08/17/2012 01:00:38 AM,1300 Block of REVERE AVE,SF,94124,B10,17,6571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7290589753437, -122.385447178388)",122300012-E17 -131540238,E36,13052198,Other,06/03/2013,06/03/2013,06/03/2013 02:17:23 PM,06/03/2013 02:18:32 PM,06/03/2013 02:41:32 PM,06/03/2013 02:42:33 PM,06/03/2013 02:48:53 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 03:01:29 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,3,3,3,false,Alarm,1,ENGINE,5,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",131540238-E36 -160380319,AM20,16015043,Medical Incident,02/07/2016,02/06/2016,02/07/2016 01:49:28 AM,02/07/2016 01:50:20 AM,02/07/2016 01:50:39 AM,02/07/2016 01:51:46 AM,02/07/2016 01:52:41 AM,02/07/2016 02:05:20 AM,02/07/2016 02:22:23 AM,Code 2 Transport,02/07/2016 03:01:16 AM,HARRISON ST/8TH ST,San Francisco,94103,B03,8,2312,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7737596997868, -122.408516330795)",160380319-AM20 -121940186,77,12064558,Medical Incident,07/12/2012,07/12/2012,07/12/2012 12:42:47 PM,07/12/2012 12:43:18 PM,07/12/2012 12:44:48 PM,07/12/2012 12:45:11 PM,07/12/2012 01:02:04 PM,04/25/2016 01:57:45 PM,04/25/2016 01:57:45 PM,No Merit,07/12/2012 01:05:17 PM,1200 Block of HOWARD ST,SF,94103,B02,36,2335,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7756454671917, -122.412432457912)",121940186-77 -113230213,E01,11107317,Medical Incident,11/19/2011,11/19/2011,11/19/2011 01:57:16 PM,11/19/2011 02:00:14 PM,11/19/2011 02:00:59 PM,11/19/2011 02:02:31 PM,04/25/2016 02:01:34 PM,04/25/2016 02:01:34 PM,04/25/2016 02:01:34 PM,Other,11/19/2011 02:04:31 PM,GOLDEN GATE AV/JONES ST,SF,94102,B03,1,1454,1,1,2,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7820730668609, -122.412220736854)",113230213-E01 -102630324,E10,10083332,Medical Incident,09/20/2010,09/20/2010,09/20/2010 07:01:36 PM,09/20/2010 07:03:05 PM,09/20/2010 07:10:46 PM,09/20/2010 07:11:59 PM,09/20/2010 07:12:59 PM,04/25/2016 02:08:30 PM,04/25/2016 02:08:30 PM,Patient Declined Transport,09/20/2010 07:30:13 PM,3200 Block of CALIFORNIA ST,SF,94118,B04,10,4421,1,1,2,true,,1,ENGINE,1,4,2,Presidio Heights,"(37.7872098592651, -122.447641497264)",102630324-E10 -160442122,62,16017731,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:19:19 PM,02/13/2016 03:21:07 PM,02/13/2016 03:21:30 PM,02/13/2016 03:21:53 PM,02/13/2016 03:26:50 PM,02/13/2016 03:42:29 PM,02/13/2016 03:48:45 PM,Code 2 Transport,02/13/2016 04:01:59 PM,700 Block of MINNA ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7763745624994, -122.413346206384)",160442122-62 -113440377,E38,11114302,Medical Incident,12/10/2011,12/10/2011,12/10/2011 11:44:54 PM,12/10/2011 11:45:15 PM,12/10/2011 11:46:10 PM,12/10/2011 11:47:40 PM,12/10/2011 11:49:32 PM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Other,12/11/2011 12:01:36 AM,24TH ST/VALENCIA ST,SF,94110,B06,11,5512,2,2,2,false,,1,ENGINE,1,6,9,Mission,"(37.7521036457482, -122.420664802284)",113440377-E38 -160550584,62,16021906,Medical Incident,02/24/2016,02/23/2016,02/24/2016 07:22:19 AM,02/24/2016 07:23:15 AM,02/24/2016 07:23:25 AM,02/24/2016 07:24:57 AM,02/24/2016 07:28:20 AM,02/24/2016 07:57:02 AM,02/24/2016 07:57:03 AM,Code 2 Transport,02/24/2016 08:50:07 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160550584-62 -160222156,67,16008810,Medical Incident,01/22/2016,01/22/2016,01/22/2016 02:54:08 PM,01/22/2016 02:54:53 PM,01/22/2016 02:56:02 PM,01/22/2016 02:56:08 PM,01/22/2016 02:59:51 PM,01/22/2016 03:33:58 PM,01/22/2016 03:52:09 PM,Code 2 Transport,01/22/2016 04:35:46 PM,100 Block of LIPPARD AVE,San Francisco,94131,B09,26,817,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,8,West of Twin Peaks,"(37.7331188960885, -122.436006242451)",160222156-67 -103410237,58,10109160,Medical Incident,12/07/2010,12/07/2010,12/07/2010 02:54:55 PM,12/07/2010 02:56:19 PM,12/07/2010 02:57:20 PM,12/07/2010 02:58:02 PM,12/07/2010 03:03:14 PM,12/07/2010 03:12:44 PM,12/07/2010 03:49:24 PM,Code 3 Transport,12/07/2010 03:58:52 PM,400 Block of MADRID ST,SF,94112,B09,43,6134,3,3,3,true,,1,MEDIC,3,9,11,Excelsior,"(37.7224213233244, -122.432278814602)",103410237-58 -120210221,T19,12007149,Alarms,01/21/2012,01/21/2012,01/21/2012 01:23:38 PM,01/21/2012 01:24:21 PM,01/21/2012 01:24:28 PM,01/21/2012 01:26:27 PM,01/21/2012 01:28:57 PM,04/25/2016 02:00:31 PM,04/25/2016 02:00:31 PM,Other,01/21/2012 01:42:41 PM,800 Block of GONZALEZ DR,SF,94132,B08,19,8482,3,3,3,false,Alarm,1,TRUCK,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",120210221-T19 -160452017,75,16018164,Medical Incident,02/14/2016,02/14/2016,02/14/2016 02:57:34 PM,02/14/2016 02:57:34 PM,02/14/2016 02:57:56 PM,02/14/2016 02:58:02 PM,02/14/2016 03:11:35 PM,02/14/2016 03:21:03 PM,02/14/2016 03:36:38 PM,Code 2 Transport,02/14/2016 04:30:22 PM,3RD ST/STILLMAN ST,San Francisco,94107,B03,8,2174,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7817502828694, -122.396379520259)",160452017-75 -123410173,RC3,12113765,Medical Incident,12/06/2012,12/06/2012,12/06/2012 11:17:05 AM,12/06/2012 11:19:21 AM,12/06/2012 11:20:25 AM,12/06/2012 11:21:07 AM,12/06/2012 11:25:31 AM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/06/2012 11:27:34 AM,1200 Block of FITZGERALD AVE,SF,94124,B10,17,6614,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,10,10,Bayview Hunters Point,"(37.7215500486273, -122.392199018387)",123410173-RC3 -160372082,KM11,16014720,Medical Incident,02/06/2016,02/06/2016,02/06/2016 01:38:59 PM,02/06/2016 01:39:48 PM,02/06/2016 01:41:14 PM,02/06/2016 01:42:32 PM,02/06/2016 01:48:56 PM,02/06/2016 01:51:44 PM,02/06/2016 02:21:04 PM,Code 2 Transport,02/06/2016 02:57:08 PM,MINNA ST/8TH ST,San Francisco,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7770264198259, -122.412616668185)",160372082-KM11 -102360072,55,10074232,Medical Incident,08/24/2010,08/23/2010,08/24/2010 07:03:32 AM,08/24/2010 07:05:17 AM,08/24/2010 07:05:44 AM,08/24/2010 07:05:57 AM,08/24/2010 07:18:38 AM,08/24/2010 07:46:46 AM,08/24/2010 08:11:04 AM,Code 2 Transport,08/24/2010 08:24:11 AM,2400 Block of 27TH AVE,SF,94116,B08,40,7466,1,1,2,true,,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7417361563602, -122.484267013972)",102360072-55 -160470547,82,16018807,Medical Incident,02/16/2016,02/15/2016,02/16/2016 07:09:32 AM,02/16/2016 07:11:07 AM,02/16/2016 07:13:24 AM,02/16/2016 07:13:31 AM,02/16/2016 07:29:26 AM,02/16/2016 07:35:51 AM,02/16/2016 08:05:17 AM,Code 2 Transport,02/16/2016 08:35:46 AM,500 Block of PARIS ST,San Francisco,94112,B09,43,6126,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7200761435393, -122.436229894749)",160470547-82 -160463397,KM07,16018666,Medical Incident,02/15/2016,02/15/2016,02/15/2016 08:17:03 PM,02/15/2016 08:18:18 PM,02/15/2016 08:18:57 PM,02/15/2016 08:19:47 PM,02/15/2016 08:30:55 PM,02/15/2016 08:43:53 PM,02/15/2016 09:10:29 PM,Code 2 Transport,02/15/2016 09:11:27 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160463397-KM07 -121660286,E05,12055139,Medical Incident,06/14/2012,06/14/2012,06/14/2012 05:09:11 PM,06/14/2012 05:09:53 PM,06/14/2012 05:10:25 PM,06/14/2012 05:11:49 PM,06/14/2012 05:13:30 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 05:20:37 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",121660286-E05 -160480166,KM03,16019190,Medical Incident,02/17/2016,02/16/2016,02/17/2016 01:29:30 AM,02/17/2016 01:29:30 AM,02/17/2016 01:30:07 AM,02/17/2016 01:30:31 AM,02/17/2016 01:39:28 AM,02/17/2016 01:46:49 AM,02/17/2016 01:52:12 AM,Code 2 Transport,02/17/2016 02:15:39 AM,OFARRELL ST/POWELL ST,San Francisco,94102,B03,1,1363,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Tenderloin,"(37.7864096137715, -122.408036236271)",160480166-KM03 -132510123,77,13084760,Medical Incident,09/08/2013,09/08/2013,09/08/2013 09:09:03 AM,09/08/2013 09:11:17 AM,09/08/2013 09:11:43 AM,09/08/2013 09:12:06 AM,09/08/2013 09:20:40 AM,04/25/2016 01:50:53 PM,04/25/2016 01:50:53 PM,No Merit,09/08/2013 09:24:39 AM,0 Block of ROSEMARY CT,SF,94116,B08,40,7462,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7378472975177, -122.4815063028)",132510123-77 -140610296,E21,14020745,Structure Fire,03/02/2014,03/02/2014,03/02/2014 08:09:24 PM,03/02/2014 08:09:56 PM,03/02/2014 08:10:23 PM,03/02/2014 08:12:20 PM,03/02/2014 08:12:21 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,Fire,03/02/2014 08:28:01 PM,1200 Block of FELL ST,SF,94117,B05,21,4145,3,3,3,false,Alarm,1,ENGINE,1,5,5,Hayes Valley,"(37.7740086037985, -122.438454791224)",140610296-E21 -160543350,81,16021741,Medical Incident,02/23/2016,02/23/2016,02/23/2016 06:53:31 PM,02/23/2016 06:53:47 PM,02/23/2016 06:54:00 PM,02/23/2016 06:54:06 PM,02/23/2016 07:00:16 PM,02/23/2016 07:26:38 PM,02/23/2016 07:49:14 PM,Code 2 Transport,02/23/2016 08:26:56 PM,1500 Block of 46TH AVE,San Francisco,94122,B08,23,7717,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7576232357796, -122.505800237994)",160543350-81 -102750202,T09,10087376,Structure Fire,10/02/2010,10/02/2010,10/02/2010 01:54:39 PM,10/02/2010 01:55:15 PM,10/02/2010 01:55:26 PM,10/02/2010 01:56:34 PM,10/02/2010 02:06:45 PM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 02:10:25 PM,1400 Block of QUESADA AVE,SF,94124,B10,17,6571,3,3,3,false,,1,TRUCK,10,10,10,Bayview Hunters Point,"(37.7306545900477, -122.386831266157)",102750202-T09 -132660185,E19,13090244,Medical Incident,09/23/2013,09/23/2013,09/23/2013 12:14:33 PM,09/23/2013 12:15:20 PM,09/23/2013 12:15:36 PM,09/23/2013 12:17:35 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,04/25/2016 01:50:38 PM,Other,09/23/2013 12:22:13 PM,200 Block of SKYLINE BLVD,SF,94132,B08,19,8713,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,8,7,Lakeshore,"(37.730009641642, -122.500476623156)",132660185-E19 -160530251,70,16021050,Medical Incident,02/22/2016,02/21/2016,02/22/2016 03:18:05 AM,02/22/2016 03:21:20 AM,02/22/2016 03:24:08 AM,02/22/2016 03:24:27 AM,02/22/2016 03:26:49 AM,02/22/2016 03:39:13 AM,02/22/2016 03:42:47 AM,Code 2 Transport,02/22/2016 04:34:48 AM,POLK ST/PINE ST,San Francisco,94109,B04,3,3122,3,3,3,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",160530251-70 -102400008,E36,10075561,Medical Incident,08/28/2010,08/27/2010,08/28/2010 12:16:59 AM,08/28/2010 12:19:47 AM,08/28/2010 12:21:25 AM,08/28/2010 12:23:15 AM,08/28/2010 12:24:49 AM,04/25/2016 02:08:52 PM,04/25/2016 02:08:52 PM,Patient Declined Transport,08/28/2010 12:29:02 AM,1500 Block of MISSION ST,SF,94103,B02,36,5116,3,3,3,false,,1,ENGINE,1,2,6,Mission,"(37.7737629752818, -122.417960394107)",102400008-E36 -112400275,T16,11079280,Alarms,08/28/2011,08/28/2011,08/28/2011 06:19:37 PM,08/28/2011 06:21:45 PM,08/28/2011 06:21:54 PM,08/28/2011 06:23:11 PM,08/28/2011 06:25:35 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 06:34:30 PM,2100 Block of NORTH POINT ST,SF,94123,B04,16,4113,3,3,3,false,,1,TRUCK,2,4,2,Marina,"(37.802825490356, -122.442572769774)",112400275-T16 -140880004,68,14029486,Medical Incident,03/29/2014,03/28/2014,03/29/2014 12:07:36 AM,03/29/2014 12:08:33 AM,03/29/2014 12:08:43 AM,03/29/2014 12:09:13 AM,03/29/2014 12:17:17 AM,03/29/2014 12:44:08 AM,03/29/2014 01:03:03 AM,Code 2 Transport,03/29/2014 01:31:28 AM,0 Block of THOMAS MORE WAY,SAN FRANCISCO,94132,B08,33,8773,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7122646664235, -122.472932437972)",140880004-68 -160410910,65,16016370,Medical Incident,02/10/2016,02/10/2016,02/10/2016 09:02:36 AM,02/10/2016 09:04:09 AM,02/10/2016 09:04:38 AM,02/10/2016 09:04:45 AM,02/10/2016 09:16:30 AM,02/10/2016 09:29:25 AM,02/10/2016 09:40:52 AM,Code 2 Transport,02/10/2016 10:38:50 AM,FULTON ST/OCTAVIA ST,San Francisco,94102,B02,36,3264,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7785379278328, -122.424998168099)",160410910-65 -160641901,83,16025519,Medical Incident,03/04/2016,03/04/2016,03/04/2016 01:12:02 PM,03/04/2016 01:12:02 PM,03/04/2016 01:12:31 PM,03/04/2016 01:15:14 PM,03/04/2016 01:34:11 PM,03/04/2016 01:49:01 PM,03/04/2016 02:16:27 PM,Code 2 Transport,03/04/2016 02:53:34 PM,100 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.8083718015584, -122.414994322457)",160641901-83 -121210164,E07,12040170,Medical Incident,04/30/2012,04/30/2012,04/30/2012 12:41:30 PM,04/30/2012 12:42:16 PM,04/30/2012 12:42:48 PM,04/30/2012 12:44:08 PM,04/30/2012 12:44:24 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 12:45:54 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7641044099588, -122.42187797405)",121210164-E07 -133090377,E28,13105221,Medical Incident,11/05/2013,11/05/2013,11/05/2013 09:46:12 PM,11/05/2013 09:47:44 PM,11/05/2013 09:48:01 PM,11/05/2013 09:49:12 PM,11/05/2013 09:51:16 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 09:55:21 PM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8054635492679, -122.41441222701)",133090377-E28 -131540405,E12,13052356,Medical Incident,06/03/2013,06/03/2013,06/03/2013 10:39:26 PM,06/03/2013 10:40:48 PM,06/03/2013 10:42:30 PM,06/03/2013 10:44:33 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/03/2013 10:46:19 PM,1800 Block of HAIGHT ST,SF,94117,B05,12,4545,2,2,2,true,Non Life-threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7692177178614, -122.452690310191)",131540405-E12 -132230052,55,13075207,Medical Incident,08/11/2013,08/10/2013,08/11/2013 02:28:20 AM,08/11/2013 02:29:36 AM,08/11/2013 02:31:10 AM,08/11/2013 02:33:38 AM,08/11/2013 02:33:39 AM,08/11/2013 02:38:27 AM,08/11/2013 02:47:59 AM,Code 2 Transport,08/11/2013 03:19:32 AM,2300 Block of 16TH ST,SF,94103,B02,29,5241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,10,Mission,"(37.765718993574, -122.409520691153)",132230052-55 -160160227,78,16006251,Traffic Collision,01/16/2016,01/15/2016,01/16/2016 01:38:25 AM,01/16/2016 01:38:25 AM,01/16/2016 01:39:17 AM,01/16/2016 01:39:43 AM,01/16/2016 01:49:18 AM,01/16/2016 02:09:12 AM,01/16/2016 02:15:58 AM,Code 3 Transport,01/16/2016 03:25:19 AM,1000 Block of MARKET ST,San Francisco,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7812876870909, -122.411318055371)",160160227-78 -113080272,E13,11102383,Alarms,11/04/2011,11/04/2011,11/04/2011 04:04:21 PM,11/04/2011 04:06:14 PM,11/04/2011 04:06:27 PM,11/04/2011 04:07:12 PM,11/04/2011 04:09:42 PM,04/25/2016 02:01:48 PM,04/25/2016 02:01:48 PM,Other,11/04/2011 04:16:29 PM,300 Block of KEARNY ST,SF,94108,B01,13,1243,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",113080272-E13 -160032652,71,16001307,Medical Incident,01/03/2016,01/03/2016,01/03/2016 06:47:00 PM,01/03/2016 06:47:00 PM,01/03/2016 06:47:26 PM,01/03/2016 06:47:33 PM,01/03/2016 06:56:17 PM,01/03/2016 07:27:41 PM,01/03/2016 07:43:38 PM,Code 2 Transport,01/03/2016 08:09:26 PM,CABRILLO ST/LA PLAYA,San Francisco,94121,B07,34,7277,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7732594685752, -122.510036956026)",160032652-71 -121760023,T10,12058358,Structure Fire,06/24/2012,06/23/2012,06/24/2012 12:53:34 AM,06/24/2012 12:53:34 AM,06/24/2012 12:54:48 AM,06/24/2012 12:55:12 AM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Other,06/24/2012 12:56:14 AM,DIVISADERO ST/BEACH ST,SF,94123,B04,16,4213,3,3,3,false,Alarm,1,TRUCK,3,4,2,Marina,"(37.8037049357975, -122.443602518357)",121760023-T10 -160420610,71,16016757,Medical Incident,02/11/2016,02/10/2016,02/11/2016 07:41:09 AM,02/11/2016 07:42:40 AM,02/11/2016 07:43:02 AM,02/11/2016 07:43:09 AM,02/11/2016 07:51:54 AM,02/11/2016 08:15:19 AM,02/11/2016 08:56:22 AM,Code 2 Transport,02/11/2016 09:45:39 AM,0 Block of ESPANOLA ST,San Francisco,94124,B10,17,6641,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7310696411386, -122.379978569038)",160420610-71 -122270022,94,12075126,Medical Incident,08/14/2012,08/13/2012,08/14/2012 02:25:01 AM,08/14/2012 02:25:40 AM,08/14/2012 02:26:23 AM,08/14/2012 02:26:33 AM,08/14/2012 02:37:51 AM,08/14/2012 02:57:24 AM,08/14/2012 03:04:40 AM,Code 2 Transport,08/14/2012 03:32:00 AM,0 Block of GOLDEN GATE AVE,SF,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",122270022-94 -112770048,E13,11091590,Alarms,10/04/2011,10/03/2011,10/04/2011 06:15:15 AM,10/04/2011 06:16:17 AM,10/04/2011 06:16:27 AM,10/04/2011 06:18:15 AM,10/04/2011 06:19:17 AM,04/25/2016 02:02:20 PM,04/25/2016 02:02:20 PM,Other,10/04/2011 06:23:11 AM,500 Block of MONTGOMERY ST,SF,94111,B01,13,1233,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7939891170028, -122.403070438719)",112770048-E13 -160492272,64,16019778,Medical Incident,02/18/2016,02/18/2016,02/18/2016 03:02:25 PM,02/18/2016 03:02:53 PM,02/18/2016 03:03:14 PM,02/18/2016 03:03:31 PM,02/18/2016 03:12:05 PM,02/18/2016 03:40:36 PM,02/18/2016 04:24:47 PM,Code 2 Transport,02/18/2016 04:29:28 PM,800 Block of GONZALEZ DR,San Francisco,94132,B08,19,8482,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7175134679807, -122.480594574461)",160492272-64 -132620268,E06,13088813,Medical Incident,09/19/2013,09/19/2013,09/19/2013 04:05:51 PM,09/19/2013 04:06:47 PM,09/19/2013 04:07:12 PM,09/19/2013 04:08:31 PM,09/19/2013 04:11:19 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 04:16:50 PM,100 Block of DIAMOND ST,SF,94114,B05,6,5415,3,2,2,true,Non Life-threatening,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7599536346651, -122.437183555035)",132620268-E06 -112580329,E01,11085168,Alarms,09/15/2011,09/15/2011,09/15/2011 07:02:54 PM,09/15/2011 07:03:50 PM,09/15/2011 07:04:24 PM,09/15/2011 07:05:27 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,04/25/2016 02:02:39 PM,Other,09/15/2011 07:25:16 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,true,,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7870299623416, -122.398474239149)",112580329-E01 -121250323,B07,12041631,Water Rescue,05/04/2012,05/04/2012,05/04/2012 07:36:32 PM,05/04/2012 07:37:42 PM,05/04/2012 07:38:54 PM,05/04/2012 07:40:52 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 07:49:41 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,CHIEF,7,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121250323-B07 -132390014,E31,13080502,Medical Incident,08/27/2013,08/26/2013,08/27/2013 01:49:51 AM,08/27/2013 01:53:07 AM,08/27/2013 01:53:34 AM,08/27/2013 01:55:10 AM,08/27/2013 02:12:11 AM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/27/2013 02:27:14 AM,400 Block of ARGUELLO BLVD,SF,94118,B07,31,7113,2,2,2,true,Non Life-threatening,1,ENGINE,1,7,2,Presidio Heights,"(37.7822260108075, -122.458859437192)",132390014-E31 -103340355,78,10107019,Medical Incident,11/30/2010,11/30/2010,11/30/2010 10:24:10 PM,11/30/2010 10:25:13 PM,11/30/2010 10:25:23 PM,11/30/2010 10:26:38 PM,11/30/2010 10:32:36 PM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Patient Declined Transport,11/30/2010 11:23:42 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,true,,1,MEDIC,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",103340355-78 -110210176,E01,11006939,Medical Incident,01/21/2011,01/21/2011,01/21/2011 12:55:22 PM,01/21/2011 12:56:24 PM,01/21/2011 12:56:58 PM,04/25/2016 02:06:29 PM,01/21/2011 12:59:08 PM,04/25/2016 02:06:29 PM,04/25/2016 02:06:29 PM,Other,01/21/2011 01:03:53 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",110210176-E01 -140370106,78,14012441,Medical Incident,02/06/2014,02/06/2014,02/06/2014 09:09:44 AM,02/06/2014 09:10:52 AM,02/06/2014 09:11:01 AM,02/06/2014 09:11:19 AM,02/06/2014 09:16:08 AM,02/06/2014 09:25:38 AM,02/06/2014 09:34:20 AM,Fire,02/06/2014 09:59:15 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",140370106-78 -131910043,T13,13064928,Alarms,07/10/2013,07/09/2013,07/10/2013 06:20:58 AM,07/10/2013 06:22:15 AM,07/10/2013 06:22:23 AM,07/10/2013 06:24:18 AM,07/10/2013 06:28:13 AM,04/25/2016 01:51:52 PM,04/25/2016 01:51:52 PM,Other,07/10/2013 06:42:25 AM,300 Block of HOWARD ST,SF,94105,B03,35,2124,3,3,3,false,Alarm,1,TRUCK,2,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",131910043-T13 -160011742,89,16000307,Medical Incident,01/01/2016,01/01/2016,01/01/2016 11:23:36 AM,01/01/2016 11:23:36 AM,01/01/2016 11:23:59 AM,01/01/2016 11:24:13 AM,01/01/2016 11:46:21 AM,01/01/2016 11:46:22 AM,01/01/2016 11:51:18 AM,Code 2 Transport,01/01/2016 12:22:44 PM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160011742-89 -123300165,E36,12109705,Medical Incident,11/25/2012,11/25/2012,11/25/2012 12:57:12 PM,11/25/2012 12:58:50 PM,11/25/2012 12:59:00 PM,11/25/2012 01:00:01 PM,11/25/2012 01:05:37 PM,04/25/2016 01:55:38 PM,04/25/2016 01:55:38 PM,No Merit,11/25/2012 01:17:34 PM,HYDE ST/GROVE ST,SF,94103,B02,36,1552,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",123300165-E36 -130240396,E13,13008468,Medical Incident,01/24/2013,01/24/2013,01/24/2013 10:40:34 PM,01/24/2013 10:42:51 PM,01/24/2013 10:43:05 PM,01/24/2013 10:44:11 PM,01/24/2013 10:46:30 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 11:07:16 PM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7928384205181, -122.403308269466)",130240396-E13 -140180274,67,14006255,Medical Incident,01/18/2014,01/18/2014,01/18/2014 04:29:44 PM,01/18/2014 04:31:37 PM,01/18/2014 04:32:42 PM,01/18/2014 04:36:17 PM,01/18/2014 04:42:09 PM,01/18/2014 05:07:32 PM,01/18/2014 05:18:14 PM,Code 2 Transport,01/18/2014 06:01:43 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",140180274-67 -123020205,E10,12100178,Medical Incident,10/28/2012,10/28/2012,10/28/2012 12:54:31 PM,10/28/2012 12:54:31 PM,10/28/2012 12:54:44 PM,10/28/2012 12:57:35 PM,10/28/2012 01:01:28 PM,04/25/2016 01:56:04 PM,04/25/2016 01:56:04 PM,Other,10/28/2012 01:19:31 PM,MASONIC AV/FELL ST,SF,94117,B05,21,4356,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Lone Mountain/USF,"(37.772995404875, -122.445902366088)",123020205-E10 -160912954,86,16036192,Medical Incident,03/31/2016,03/31/2016,03/31/2016 06:17:53 PM,03/31/2016 06:19:01 PM,03/31/2016 06:19:27 PM,03/31/2016 06:19:48 PM,03/31/2016 06:28:47 PM,03/31/2016 06:42:33 PM,03/31/2016 06:49:26 PM,Code 2 Transport,03/31/2016 08:29:06 PM,1800 Block of WALLER ST,San Francisco,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",160912954-86 -123140080,54,12104406,Medical Incident,11/09/2012,11/08/2012,11/09/2012 07:28:13 AM,11/09/2012 07:29:59 AM,11/09/2012 07:30:37 AM,11/09/2012 07:33:11 AM,11/09/2012 07:36:27 AM,11/09/2012 07:57:33 AM,11/09/2012 08:02:27 AM,Code 3 Transport,11/09/2012 08:37:15 AM,500 Block of GROVE ST,SF,94102,B02,36,3315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7774408255184, -122.425619373234)",123140080-54 -160473951,53,16019155,Medical Incident,02/16/2016,02/16/2016,02/16/2016 10:42:46 PM,02/16/2016 10:43:37 PM,02/16/2016 10:44:06 PM,02/16/2016 10:44:32 PM,02/16/2016 10:49:20 PM,02/16/2016 11:10:46 PM,02/16/2016 11:32:33 PM,Code 2 Transport,02/17/2016 12:07:15 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160473951-53 -110220193,62,11007273,Medical Incident,01/22/2011,01/22/2011,01/22/2011 02:38:21 PM,01/22/2011 02:40:22 PM,01/22/2011 02:42:34 PM,01/22/2011 02:43:03 PM,01/22/2011 02:49:48 PM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Patient Declined Transport,01/22/2011 03:10:56 PM,0 Block of GEARY ST,SF,94108,B01,1,1241,1,1,2,true,,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",110220193-62 -103130397,E31,10100527,Medical Incident,11/09/2010,11/09/2010,11/09/2010 11:51:11 PM,11/09/2010 11:52:07 PM,11/09/2010 11:52:49 PM,11/09/2010 11:54:02 PM,11/09/2010 11:57:29 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/10/2010 12:03:28 AM,700 Block of 6TH AVE,SF,94118,B07,31,7132,3,3,3,true,,1,ENGINE,1,7,1,Inner Richmond,"(37.7744996655263, -122.463743282418)",103130397-E31 -130020286,E01,13000722,Medical Incident,01/02/2013,01/02/2013,01/02/2013 04:52:23 PM,01/02/2013 04:52:24 PM,01/02/2013 04:52:24 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,04/25/2016 01:55:00 PM,No Merit,01/02/2013 04:52:31 PM,700 Block of FOLSOM ST,SF,94103,B03,1,2176,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7832536611671, -122.399701172169)",130020286-E01 -160842589,KM06,16033447,Medical Incident,03/24/2016,03/24/2016,03/24/2016 03:35:58 PM,03/24/2016 03:37:04 PM,03/24/2016 03:37:53 PM,03/24/2016 03:38:33 PM,03/24/2016 03:43:59 PM,03/24/2016 04:07:56 PM,03/24/2016 04:21:27 PM,Code 2 Transport,03/24/2016 04:57:40 PM,1500 Block of 7TH AVE,San Francisco,94122,B08,22,7331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",160842589-KM06 -160021458,62,16000724,Medical Incident,01/02/2016,01/02/2016,01/02/2016 12:32:18 PM,01/02/2016 12:32:53 PM,01/02/2016 12:33:04 PM,01/02/2016 12:33:18 PM,01/02/2016 12:37:43 PM,01/02/2016 01:03:37 PM,01/02/2016 01:28:52 PM,Code 2 Transport,01/02/2016 02:16:04 PM,800 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7964914531604, -122.409652663162)",160021458-62 -111240183,T01,11040968,Medical Incident,05/04/2011,05/04/2011,05/04/2011 12:42:48 PM,05/04/2011 12:43:52 PM,05/04/2011 12:44:57 PM,05/04/2011 12:45:52 PM,05/04/2011 12:49:22 PM,04/25/2016 02:04:47 PM,04/25/2016 02:04:47 PM,Other,05/04/2011 12:50:05 PM,8TH ST/CLEMENTINA ST,SF,94103,B02,36,2335,3,3,3,false,,1,TRUCK,3,2,6,South of Market,"(37.7754283507959, -122.410610729327)",111240183-T01 -111480029,E17,11048958,Medical Incident,05/28/2011,05/27/2011,05/28/2011 02:40:59 AM,05/28/2011 02:42:03 AM,05/28/2011 02:42:14 AM,05/28/2011 02:43:35 AM,05/28/2011 02:46:38 AM,04/25/2016 02:04:25 PM,04/25/2016 02:04:25 PM,Other,05/28/2011 02:54:02 AM,2500 Block of GRIFFITH ST,SF,94124,B10,17,6573,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7191884467237, -122.386431507122)",111480029-E17 -160140601,AM02,16005475,Medical Incident,01/14/2016,01/13/2016,01/14/2016 07:25:09 AM,01/14/2016 07:27:01 AM,01/14/2016 07:30:16 AM,01/14/2016 07:30:57 AM,01/14/2016 07:43:34 AM,01/14/2016 08:02:13 AM,01/14/2016 08:16:16 AM,Code 2 Transport,01/14/2016 08:48:09 AM,100 Block of LOMBARD ST,San Francisco,94111,B01,28,1224,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.8038770970726, -122.404157077302)",160140601-AM02 -140790182,KM14,14026716,Medical Incident,03/20/2014,03/20/2014,03/20/2014 12:58:44 PM,03/20/2014 12:59:42 PM,03/20/2014 01:00:01 PM,03/20/2014 01:03:15 PM,03/20/2014 01:07:25 PM,04/25/2016 01:47:39 PM,04/25/2016 01:47:39 PM,Patient Declined Transport,03/20/2014 01:37:48 PM,600 Block of FULTON ST,SAN FRANCISCO,94102,B02,5,3412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.778069709762, -122.428234371244)",140790182-KM14 -120210293,T03,12007217,Medical Incident,01/21/2012,01/21/2012,01/21/2012 04:38:47 PM,01/21/2012 04:39:59 PM,01/21/2012 04:40:11 PM,01/21/2012 04:40:18 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,04/25/2016 02:00:30 PM,Other,01/21/2012 04:41:59 PM,300 Block of TAYLOR ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,3,6,Tenderloin,"(37.7855267391339, -122.411301032076)",120210293-T03 -122140006,55,12070864,Medical Incident,08/01/2012,07/31/2012,08/01/2012 12:28:58 AM,08/01/2012 12:28:58 AM,08/01/2012 12:29:07 AM,08/01/2012 12:29:29 AM,08/01/2012 12:31:50 AM,04/25/2016 01:57:27 PM,04/25/2016 01:57:27 PM,Patient Declined Transport,08/01/2012 12:53:05 AM,GEARY ST/HYDE ST,SF,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7863102173267, -122.416449125138)",122140006-55 -160581133,78,16023066,Medical Incident,02/27/2016,02/27/2016,02/27/2016 09:46:57 AM,02/27/2016 09:47:23 AM,02/27/2016 09:48:08 AM,02/27/2016 09:49:35 AM,02/27/2016 09:55:20 AM,02/27/2016 10:19:33 AM,02/27/2016 10:22:54 AM,Code 3 Transport,02/27/2016 10:54:34 AM,300 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,5136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7668035178194, -122.440704687809)",160581133-78 -113520061,E29,11116753,Medical Incident,12/18/2011,12/17/2011,12/18/2011 03:13:56 AM,12/18/2011 03:14:09 AM,12/18/2011 03:16:01 AM,12/18/2011 03:17:50 AM,12/18/2011 03:20:36 AM,04/25/2016 02:01:06 PM,04/25/2016 02:01:06 PM,Other,12/18/2011 03:28:40 AM,8TH ST/FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7749917920342, -122.41006277143)",113520061-E29 -133240042,88,13109899,Medical Incident,11/20/2013,11/19/2013,11/20/2013 04:18:21 AM,11/20/2013 04:19:35 AM,11/20/2013 04:20:05 AM,11/20/2013 04:20:43 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Other,04/25/2016 01:49:40 PM,6200 Block of 3RD ST,SF,94124,B10,44,6544,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.721313139839, -122.395989596412)",133240042-88 -122110176,RC2,12070082,Medical Incident,07/29/2012,07/29/2012,07/29/2012 02:37:01 PM,07/29/2012 02:37:09 PM,07/29/2012 02:37:24 PM,07/29/2012 02:43:43 PM,07/29/2012 02:50:13 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 03:04:41 PM,3200 Block of SCOTT ST,SF,94123,B04,16,4115,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,4,2,Marina,"(37.7997100670423, -122.441009137303)",122110176-RC2 -112520404,E20,11083276,Smoke Investigation (Outside),09/09/2011,09/09/2011,09/09/2011 09:08:18 PM,09/09/2011 09:09:26 PM,09/09/2011 09:09:46 PM,09/09/2011 09:15:31 PM,09/09/2011 09:35:45 PM,04/25/2016 02:02:45 PM,04/25/2016 02:02:45 PM,Fire,09/09/2011 09:36:44 PM,100 Block of CHAVES AVE,SF,94127,B09,39,8673,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7415464377967, -122.454184714999)",112520404-E20 -160480079,59,16019180,Medical Incident,02/17/2016,02/16/2016,02/17/2016 12:38:26 AM,02/17/2016 12:40:22 AM,02/17/2016 12:40:40 AM,02/17/2016 12:40:54 AM,02/17/2016 12:40:54 AM,02/17/2016 12:54:48 AM,02/17/2016 01:18:52 AM,Code 2 Transport,02/17/2016 01:57:16 AM,2300 Block of 28TH AVE,San Francisco,94116,B08,40,7471,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7435563330327, -122.485469903643)",160480079-59 -112030038,78,11066899,Medical Incident,07/22/2011,07/21/2011,07/22/2011 02:21:24 AM,07/22/2011 02:22:14 AM,07/22/2011 02:22:52 AM,07/22/2011 02:23:24 AM,07/22/2011 02:31:45 AM,07/22/2011 02:55:13 AM,07/22/2011 03:08:21 AM,Code 2 Transport,07/22/2011 03:45:04 AM,500 Block of CAPP ST,SF,94110,B06,7,5446,3,2,2,true,,1,MEDIC,2,6,9,Mission,"(37.7578954435745, -122.417957286582)",112030038-78 -120660347,T07,12021971,Medical Incident,03/06/2012,03/06/2012,03/06/2012 06:45:26 PM,03/06/2012 06:46:27 PM,03/06/2012 06:48:06 PM,03/06/2012 06:49:24 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 06:50:06 PM,MISSION ST/19TH ST,SF,94110,B06,7,5433,3,3,3,false,Potentially Life-Threatening,1,TRUCK,4,6,9,Mission,"(37.7602353559327, -122.419206043807)",120660347-T07 -130300311,B02,13010329,Medical Incident,01/30/2013,01/30/2013,01/30/2013 05:05:35 PM,01/30/2013 05:08:24 PM,01/30/2013 05:11:03 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/30/2013 05:11:12 PM,16TH ST/MISSION ST,SF,94103,B02,7,5236,3,E,3,false,Non Life-threatening,1,CHIEF,5,2,9,Mission,"(37.7650513381945, -122.419668973861)",130300311-B02 -160360828,52,16014146,Medical Incident,02/05/2016,02/04/2016,02/05/2016 07:52:54 AM,02/05/2016 07:53:35 AM,02/05/2016 07:53:53 AM,02/05/2016 07:54:08 AM,02/05/2016 08:04:33 AM,02/05/2016 08:24:25 AM,02/05/2016 08:31:06 AM,Code 2 Transport,02/05/2016 08:56:14 AM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160360828-52 -113420297,E41,11113486,Medical Incident,12/08/2011,12/08/2011,12/08/2011 05:43:51 PM,12/08/2011 05:44:19 PM,12/08/2011 05:45:58 PM,12/08/2011 05:46:46 PM,12/08/2011 05:50:05 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/08/2011 05:56:16 PM,1200 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,false,,1,ENGINE,1,4,3,Nob Hill,"(37.78798096196, -122.420231590619)",113420297-E41 -113320354,E02,11110125,Structure Fire,11/28/2011,11/28/2011,11/28/2011 07:40:17 PM,11/28/2011 07:41:11 PM,11/28/2011 07:41:42 PM,11/28/2011 07:56:20 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,04/25/2016 02:01:25 PM,Other,11/28/2011 08:24:11 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,true,,1,ENGINE,13,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",113320354-E02 -123290077,E33,12109329,Medical Incident,11/24/2012,11/23/2012,11/24/2012 06:43:16 AM,11/24/2012 06:43:46 AM,11/24/2012 06:43:59 AM,11/24/2012 06:46:29 AM,11/24/2012 06:47:23 AM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Other,11/24/2012 06:59:53 AM,ALEMANY BL/SICKLES AV,SF,94112,B09,33,8357,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7106966624975, -122.455157828365)",123290077-E33 -160391790,78,16015621,Medical Incident,02/08/2016,02/08/2016,02/08/2016 01:09:16 PM,02/08/2016 01:12:27 PM,02/08/2016 01:13:22 PM,02/08/2016 01:13:31 PM,02/08/2016 01:25:10 PM,02/08/2016 02:04:05 PM,02/08/2016 02:38:38 PM,Code 2 Transport,02/08/2016 03:00:08 PM,3200 Block of CALIFORNIA ST,San Francisco,94118,B04,10,4421,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Presidio Heights,"(37.7872098592651, -122.447641497264)",160391790-78 -130800197,RC3,13026753,Medical Incident,03/21/2013,03/21/2013,03/21/2013 12:56:43 PM,03/21/2013 12:57:46 PM,03/21/2013 12:59:06 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,04/25/2016 01:53:43 PM,Other,04/25/2016 01:53:43 PM,23RD ST/SHOTWELL ST,SF,94110,B06,7,5511,3,3,3,true,Non Life-threatening,1,RESCUE CAPTAIN,4,6,9,Mission,"(37.7540335346403, -122.415320140499)",130800197-RC3 -102510065,E09,10079197,Traffic Collision,09/08/2010,09/07/2010,09/08/2010 07:23:42 AM,09/08/2010 07:24:54 AM,09/08/2010 07:25:29 AM,09/08/2010 07:27:32 AM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,04/25/2016 02:08:41 PM,Other,09/08/2010 07:30:14 AM,100 Block of VERMONT ST,SF,94103,B02,29,2422,2,2,2,true,,1,ENGINE,2,2,10,Mission Bay,"(37.76789826103, -122.404743414302)",102510065-E09 -160032386,KM04,16001277,Medical Incident,01/03/2016,01/03/2016,01/03/2016 05:31:22 PM,01/03/2016 05:31:22 PM,01/03/2016 05:31:39 PM,01/03/2016 05:33:35 PM,01/03/2016 05:39:23 PM,01/03/2016 06:02:54 PM,01/03/2016 06:18:16 PM,Code 2 Transport,01/03/2016 07:01:35 PM,4TH ST/TOWNSEND ST,San Francisco,94107,B03,8,2224,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7770893320016, -122.394981482757)",160032386-KM04 -131190127,84,13039993,Medical Incident,04/29/2013,04/29/2013,04/29/2013 09:25:33 AM,04/29/2013 09:26:27 AM,04/29/2013 09:40:38 AM,04/29/2013 09:40:45 AM,04/29/2013 09:51:28 AM,04/29/2013 10:06:50 AM,04/29/2013 10:24:00 AM,Code 2 Transport,04/29/2013 10:45:07 AM,600 Block of FOLSOM ST,SF,94107,B03,1,2147,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7850654631195, -122.397209533545)",131190127-84 -160133536,AM20,16005332,Medical Incident,01/13/2016,01/13/2016,01/13/2016 07:17:37 PM,01/13/2016 07:18:48 PM,01/13/2016 07:19:19 PM,01/13/2016 07:20:10 PM,01/13/2016 07:29:43 PM,01/13/2016 07:56:07 PM,01/13/2016 08:10:37 PM,Code 2 Transport,01/13/2016 08:36:49 PM,1100 Block of MARKET ST,San Francisco,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7796660426062, -122.41371122073)",160133536-AM20 -111330589,E13,11044417,Medical Incident,05/13/2011,05/13/2011,05/13/2011 11:18:46 PM,05/13/2011 11:20:01 PM,05/13/2011 11:20:38 PM,05/13/2011 11:22:23 PM,05/13/2011 11:23:42 PM,04/25/2016 02:04:38 PM,04/25/2016 02:04:38 PM,Other,05/13/2011 11:26:14 PM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",111330589-E13 -103480409,AM12,10111777,Medical Incident,12/14/2010,12/14/2010,12/14/2010 10:52:57 PM,12/14/2010 10:54:25 PM,12/14/2010 10:54:38 PM,12/14/2010 10:57:10 PM,12/14/2010 10:57:58 PM,12/14/2010 11:28:17 PM,12/14/2010 11:48:52 PM,Code 2 Transport,12/15/2010 12:42:53 AM,1600 Block of PINE ST,SF,94109,B04,38,3224,3,3,3,false,,1,PRIVATE,2,4,2,Western Addition,"(37.7892533657939, -122.422947215446)",103480409-AM12 -112380375,E13,11078718,Medical Incident,08/26/2011,08/26/2011,08/26/2011 11:15:53 PM,08/26/2011 11:17:41 PM,08/26/2011 11:18:19 PM,08/26/2011 11:18:52 PM,08/26/2011 11:20:09 PM,04/25/2016 02:02:59 PM,04/25/2016 02:02:59 PM,Other,08/26/2011 11:35:54 PM,100 Block of JACKSON ST,SF,94111,B01,13,1132,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7969551635484, -122.398908213261)",112380375-E13 -113580123,85,11118966,Medical Incident,12/24/2011,12/24/2011,12/24/2011 10:01:31 AM,12/24/2011 10:02:05 AM,12/24/2011 10:02:21 AM,12/24/2011 10:06:43 AM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,04/25/2016 02:00:59 PM,Other,12/24/2011 10:07:18 AM,0 Block of NEW MONTGOMERY ST,SF,94105,B03,1,2157,3,3,3,true,,1,MEDIC,3,3,6,Financial District/South Beach,"(37.7877559180409, -122.400975353818)",113580123-85 -110640095,82,11021007,Medical Incident,03/05/2011,03/04/2011,03/05/2011 07:32:33 AM,03/05/2011 07:33:07 AM,03/05/2011 07:33:51 AM,04/25/2016 02:05:47 PM,03/05/2011 07:45:00 AM,03/05/2011 08:02:06 AM,03/05/2011 08:17:13 AM,Code 2 Transport,03/05/2011 08:43:05 AM,100 Block of 8TH AVE,SF,94118,B07,31,7126,3,3,3,true,,1,MEDIC,2,7,1,Inner Richmond,"(37.7856386364347, -122.466831479708)",110640095-82 -132400257,E03,13081022,Alarms,08/28/2013,08/28/2013,08/28/2013 04:40:34 PM,08/28/2013 04:41:57 PM,08/28/2013 04:42:07 PM,08/28/2013 04:42:27 PM,08/28/2013 04:44:14 PM,04/25/2016 01:51:04 PM,04/25/2016 01:51:04 PM,Other,08/28/2013 04:55:07 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",132400257-E03 -123250310,E07,12108198,Medical Incident,11/20/2012,11/20/2012,11/20/2012 05:52:15 PM,11/20/2012 05:54:28 PM,11/20/2012 06:08:00 PM,11/20/2012 06:09:28 PM,11/20/2012 06:10:57 PM,04/25/2016 01:55:42 PM,04/25/2016 01:55:42 PM,Other,11/20/2012 06:27:38 PM,1900 Block of FOLSOM ST,SF,94103,B02,7,5237,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,9,Mission,"(37.7661217279623, -122.415454252915)",123250310-E07 -111380308,E01,11045987,Medical Incident,05/18/2011,05/18/2011,05/18/2011 07:33:24 PM,05/18/2011 07:34:51 PM,05/18/2011 07:35:09 PM,05/18/2011 07:36:13 PM,05/18/2011 07:39:10 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 07:42:02 PM,0 Block of TAYLOR ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7824852064043, -122.410687956509)",111380308-E01 -112820368,E24,11093493,Medical Incident,10/09/2011,10/09/2011,10/09/2011 10:14:07 PM,10/09/2011 10:15:14 PM,10/09/2011 10:15:47 PM,10/09/2011 10:16:58 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,04/25/2016 02:02:15 PM,Other,10/09/2011 10:21:18 PM,200 Block of COLLINGWOOD ST,SF,94114,B06,24,5442,3,3,3,true,,1,ENGINE,2,6,8,Castro/Upper Market,"(37.7584188377809, -122.43595133914)",112820368-E24 -122040292,B04,12067907,Alarms,07/22/2012,07/22/2012,07/22/2012 05:00:23 PM,07/22/2012 05:01:19 PM,07/22/2012 05:01:27 PM,07/22/2012 05:01:59 PM,07/22/2012 05:04:46 PM,04/25/2016 01:57:35 PM,04/25/2016 01:57:35 PM,Other,07/22/2012 05:08:11 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,false,Alarm,1,CHIEF,3,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",122040292-B04 -133510360,E11,13119336,Structure Fire,12/17/2013,12/17/2013,12/17/2013 06:38:55 PM,12/17/2013 06:38:55 PM,12/17/2013 06:39:18 PM,12/17/2013 06:40:29 PM,12/17/2013 06:42:22 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Other,12/17/2013 06:42:32 PM,24TH ST/GUERRERO ST,SF,94110,B06,11,5524,3,3,3,true,Alarm,1,ENGINE,1,6,8,Mission,"(37.7519716270837, -122.422878832716)",133510360-E11 -131600269,E36,13054432,Medical Incident,06/09/2013,06/09/2013,06/09/2013 06:07:10 PM,06/09/2013 06:07:56 PM,06/09/2013 06:08:05 PM,06/09/2013 06:08:26 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 06:15:03 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,3,3,3,false,Potentially Life-Threatening,1,ENGINE,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",131600269-E36 -120200154,E41,12006659,Gas Leak (Natural and LP Gases),01/20/2012,01/20/2012,01/20/2012 12:08:40 PM,01/20/2012 12:08:40 PM,01/20/2012 12:08:40 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,04/25/2016 02:00:32 PM,Fire,01/20/2012 12:19:06 PM,1200 Block of WASHINGTON ST,SF,94108,B01,41,1466,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.7941609889234, -122.413818267559)",120200154-E41 -160150636,73,16005873,Medical Incident,01/15/2016,01/14/2016,01/15/2016 07:38:55 AM,01/15/2016 07:39:50 AM,01/15/2016 07:39:59 AM,01/15/2016 07:40:25 AM,01/15/2016 07:46:06 AM,01/15/2016 08:08:47 AM,01/15/2016 08:19:19 AM,Code 2 Transport,01/15/2016 09:12:44 AM,400 Block of ORIZABA AVE,San Francisco,94132,B09,33,8415,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7169955762334, -122.462698182843)",160150636-73 -122670296,83,12088319,Medical Incident,09/23/2012,09/23/2012,09/23/2012 07:05:50 PM,09/23/2012 07:11:28 PM,09/23/2012 07:12:15 PM,09/23/2012 07:12:46 PM,09/23/2012 07:30:51 PM,09/23/2012 07:48:35 PM,09/23/2012 07:58:39 PM,Code 2 Transport,09/23/2012 08:18:24 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",122670296-83 -160590054,KM03,16023338,Medical Incident,02/28/2016,02/27/2016,02/28/2016 12:18:47 AM,02/28/2016 12:21:11 AM,02/28/2016 12:21:29 AM,02/28/2016 12:21:54 AM,02/28/2016 12:27:51 AM,02/28/2016 12:41:42 AM,02/28/2016 01:00:52 AM,Code 2 Transport,02/28/2016 01:57:18 AM,1400 Block of 34TH AVE,San Francisco,94122,B08,23,7541,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.76005455178, -122.493071573034)",160590054-KM03 -160251796,AM14,16009935,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:58:40 PM,01/25/2016 12:59:17 PM,01/25/2016 12:59:28 PM,01/25/2016 01:00:42 PM,01/25/2016 01:02:42 PM,01/25/2016 01:19:21 PM,01/25/2016 01:37:14 PM,Code 2 Transport,01/25/2016 03:09:45 PM,300 Block of BEALE ST,San Francisco,94105,B03,35,2122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7881096580859, -122.391902165287)",160251796-AM14 -121080091,E21,12035691,Structure Fire,04/17/2012,04/17/2012,04/17/2012 09:36:49 AM,04/17/2012 09:37:27 AM,04/17/2012 09:37:41 AM,04/17/2012 09:38:54 AM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,Other,04/17/2012 09:53:23 AM,2800 Block of CALIFORNIA ST,SF,94115,B04,10,4233,3,3,3,true,Fire,1,ENGINE,10,4,2,Pacific Heights,"(37.7879071323042, -122.441263904457)",121080091-E21 -160223560,68,16008939,Medical Incident,01/22/2016,01/22/2016,01/22/2016 09:15:33 PM,01/22/2016 09:17:50 PM,01/22/2016 09:18:28 PM,01/22/2016 09:18:35 PM,01/22/2016 09:30:20 PM,01/22/2016 09:44:26 PM,01/22/2016 09:53:43 PM,Code 2 Transport,01/22/2016 10:46:17 PM,200 Block of 7TH ST,San Francisco,94103,B03,1,2314,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7773228349255, -122.408663553867)",160223560-68 -160493508,52,16019875,Medical Incident,02/18/2016,02/18/2016,02/18/2016 08:34:55 PM,02/18/2016 08:36:02 PM,02/18/2016 08:36:46 PM,02/18/2016 08:36:56 PM,02/18/2016 08:39:23 PM,02/18/2016 08:54:22 PM,02/18/2016 09:09:29 PM,Code 2 Transport,02/18/2016 09:46:27 PM,500 Block of VALENCIA ST,San Francisco,94103,B02,7,5247,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7641127383912, -122.421739995141)",160493508-52 -132020072,E13,13068377,Alarms,07/21/2013,07/21/2013,07/21/2013 08:17:17 AM,07/21/2013 08:27:13 AM,07/21/2013 08:30:39 AM,07/21/2013 08:31:49 AM,07/21/2013 09:23:07 AM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 12:05:04 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,2,2,2,true,Alarm,1,ENGINE,16,1,3,Financial District/South Beach,"(37.7891367799941, -122.40363527458)",132020072-E13 -130720254,E42,13024052,Medical Incident,03/13/2013,03/13/2013,03/13/2013 03:10:05 PM,03/13/2013 03:11:21 PM,03/13/2013 03:11:36 PM,03/13/2013 03:13:02 PM,03/13/2013 03:15:44 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,Other,03/13/2013 03:37:14 PM,200 Block of TOPEKA AVE,SF,94124,B10,42,6473,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7322677229752, -122.396274531139)",130720254-E42 -160043780,88,16001799,Medical Incident,01/04/2016,01/04/2016,01/04/2016 11:23:42 PM,01/04/2016 11:24:32 PM,01/04/2016 11:24:47 PM,01/04/2016 11:24:58 PM,01/04/2016 11:29:15 PM,01/04/2016 11:57:34 PM,01/05/2016 12:09:22 AM,Code 2 Transport,01/05/2016 12:50:39 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7839825587491, -122.411762530716)",160043780-88 -122150060,85,12071259,Medical Incident,08/02/2012,08/01/2012,08/02/2012 06:56:52 AM,08/02/2012 06:57:16 AM,08/02/2012 06:57:51 AM,08/02/2012 06:58:06 AM,08/02/2012 07:04:11 AM,08/02/2012 07:24:10 AM,08/02/2012 07:34:12 AM,Code 3 Transport,08/02/2012 08:06:04 AM,0 Block of MINERVA ST,SF,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7158849109873, -122.454797121611)",122150060-85 -102570146,B01,10081161,Traffic Collision,09/14/2010,09/14/2010,09/14/2010 11:32:50 AM,09/14/2010 11:33:48 AM,09/14/2010 11:33:57 AM,09/14/2010 11:35:09 AM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,04/25/2016 02:08:36 PM,Other,09/14/2010 11:36:55 AM,DAVIS ST/SACRAMENTO ST,SF,94111,B01,13,1134,3,3,3,false,,1,CHIEF,5,1,3,Financial District/South Beach,"(37.7944340060268, -122.397796258543)",102570146-B01 -130280320,E39,13009714,Alarms,01/28/2013,01/28/2013,01/28/2013 06:23:56 PM,01/28/2013 06:25:29 PM,01/28/2013 06:25:41 PM,01/28/2013 06:27:02 PM,01/28/2013 06:30:24 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Other,01/28/2013 06:35:41 PM,1600 Block of MONTEREY BLVD,SF,94127,B09,39,8551,3,3,3,true,Alarm,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7329687601567, -122.46632329381)",130280320-E39 -160223411,64,16008921,Medical Incident,01/22/2016,01/22/2016,01/22/2016 08:20:21 PM,01/22/2016 08:21:28 PM,01/22/2016 08:21:52 PM,01/22/2016 08:22:27 PM,01/22/2016 08:28:09 PM,01/22/2016 08:47:25 PM,01/22/2016 08:58:28 PM,Code 2 Transport,01/22/2016 09:28:01 PM,2700 Block of HYDE ST,San Francisco,94109,B01,28,1615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,2,Russian Hill,"(37.8061802322282, -122.420532847486)",160223411-64 -122090252,T09,12069505,Structure Fire,07/27/2012,07/27/2012,07/27/2012 04:52:18 PM,07/27/2012 04:52:18 PM,07/27/2012 04:52:26 PM,07/27/2012 04:53:50 PM,07/27/2012 04:54:20 PM,04/25/2016 01:57:31 PM,04/25/2016 01:57:31 PM,Other,07/27/2012 04:54:42 PM,24TH ST/UTAH ST,SF,94110,B10,9,2562,3,3,3,false,Alarm,1,TRUCK,1,10,10,Mission,"(37.7530638329046, -122.405331103731)",122090252-T09 -130490150,T06,13016679,Structure Fire,02/18/2013,02/18/2013,02/18/2013 11:18:52 AM,02/18/2013 11:18:58 AM,02/18/2013 11:19:24 AM,02/18/2013 11:20:06 AM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,04/25/2016 01:54:14 PM,Other,02/18/2013 11:28:00 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7741251002903, -122.418810211803)",130490150-T06 -133480398,AM22,13118298,Medical Incident,12/14/2013,12/14/2013,12/14/2013 10:08:14 PM,12/14/2013 10:09:28 PM,12/14/2013 10:10:05 PM,12/14/2013 10:10:34 PM,12/14/2013 10:20:50 PM,12/14/2013 10:26:42 PM,12/14/2013 10:40:26 PM,Code 2 Transport,12/14/2013 11:03:08 PM,300 Block of SOUTH VAN NESS AVE,SF,94103,B02,7,5225,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7676095145665, -122.417654819973)",133480398-AM22 -113510246,77,11116525,Medical Incident,12/17/2011,12/17/2011,12/17/2011 02:20:25 PM,12/17/2011 02:22:21 PM,12/17/2011 02:22:42 PM,12/17/2011 02:23:01 PM,12/17/2011 02:29:08 PM,12/17/2011 02:40:04 PM,12/17/2011 03:00:46 PM,Code 2 Transport,12/17/2011 03:38:28 PM,LARKIN ST/GOLDEN GATE AV,SF,94102,B02,3,1644,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",113510246-77 -112600379,T10,11085919,Structure Fire,09/17/2011,09/17/2011,09/17/2011 08:00:04 PM,09/17/2011 08:00:04 PM,09/17/2011 08:00:28 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,04/25/2016 02:02:37 PM,Other,04/25/2016 02:02:37 PM,1800 Block of HAYES ST,SF,94117,B05,21,446,3,3,3,false,,1,TRUCK,2,5,5,Lone Mountain/USF,"(37.7738883106104, -122.446900770021)",112600379-T10 -123450190,KM09,12115327,Medical Incident,12/10/2012,12/10/2012,12/10/2012 11:31:33 AM,12/10/2012 11:34:32 AM,12/10/2012 11:36:21 AM,12/10/2012 11:37:48 AM,12/10/2012 11:42:08 AM,12/10/2012 12:02:57 PM,12/10/2012 12:11:18 PM,Code 2 Transport,12/10/2012 12:38:18 PM,1600 Block of GEARY BLVD,SF,94115,B04,5,3432,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,5,Japantown,"(37.7848985640348, -122.429613639902)",123450190-KM09 -130070364,E42,13002528,Structure Fire,01/07/2013,01/07/2013,01/07/2013 08:40:29 PM,01/07/2013 08:41:42 PM,01/07/2013 08:41:57 PM,01/07/2013 08:43:07 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Other,01/07/2013 08:55:55 PM,3100 Block of SAN BRUNO AVE,SF,94134,B10,44,6277,3,3,3,true,Alarm,1,ENGINE,4,10,9,Portola,"(37.7220016138662, -122.401341444894)",130070364-E42 -102990331,92,10095581,Medical Incident,10/26/2010,10/26/2010,10/26/2010 07:51:57 PM,10/26/2010 07:53:01 PM,10/26/2010 07:53:13 PM,04/25/2016 02:07:54 PM,10/26/2010 08:03:51 PM,10/26/2010 08:13:38 PM,10/26/2010 08:27:55 PM,Code 2 Transport,10/26/2010 08:57:50 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,3,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",102990331-92 -110960273,B03,11031916,Structure Fire,04/06/2011,04/06/2011,04/06/2011 05:14:28 PM,04/06/2011 05:17:30 PM,04/06/2011 05:17:45 PM,04/06/2011 05:17:54 PM,04/06/2011 05:21:15 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/06/2011 05:34:42 PM,MARKET ST/CYRIL MAGNIN ST,SF,94103,B03,1,1366,3,3,3,false,,1,CHIEF,6,3,6,South of Market,"(37.7839914857614, -122.408066547804)",110960273-B03 -160080441,61,16003094,Medical Incident,01/08/2016,01/07/2016,01/08/2016 05:17:24 AM,01/08/2016 05:19:20 AM,01/08/2016 05:19:54 AM,01/08/2016 05:20:11 AM,01/08/2016 05:37:43 AM,01/08/2016 05:50:54 AM,01/08/2016 05:54:27 AM,Code 2 Transport,01/08/2016 06:27:35 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160080441-61 -160610551,AM02,16024199,Medical Incident,03/01/2016,02/29/2016,03/01/2016 07:20:54 AM,03/01/2016 07:24:21 AM,03/01/2016 07:24:52 AM,03/01/2016 07:25:29 AM,03/01/2016 07:39:10 AM,03/01/2016 08:04:27 AM,03/01/2016 08:20:52 AM,Code 2 Transport,03/01/2016 08:53:01 AM,0 Block of ENCANTO AVE,San Francisco,94115,B05,21,4344,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,2,Lone Mountain/USF,"(37.7804956564763, -122.443514803631)",160610551-AM02 -130850336,E43,13028505,Medical Incident,03/26/2013,03/26/2013,03/26/2013 08:34:08 PM,03/26/2013 08:34:28 PM,03/26/2013 08:35:02 PM,03/26/2013 08:36:28 PM,03/26/2013 08:37:49 PM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 08:49:42 PM,100 Block of DUBLIN ST,SF,94112,B09,43,6165,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7178073238376, -122.42704025216)",130850336-E43 -132550264,E35,13086248,Administrative,09/12/2013,09/12/2013,09/12/2013 04:01:11 PM,09/12/2013 04:01:15 PM,09/12/2013 04:02:00 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,04/25/2016 01:50:49 PM,Other,09/12/2013 04:02:28 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,900,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7978645381436, -122.396701274332)",132550264-E35 -160122281,AM16,16004817,Medical Incident,01/12/2016,01/12/2016,01/12/2016 03:18:53 PM,01/12/2016 03:20:20 PM,01/12/2016 03:20:31 PM,01/12/2016 03:21:37 PM,01/12/2016 03:25:16 PM,01/12/2016 03:40:25 PM,01/12/2016 04:08:20 PM,Code 2 Transport,01/12/2016 04:21:30 PM,1100 Block of MARKET ST,San Francisco,94103,B02,36,2316,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7795310846627, -122.413542548681)",160122281-AM16 -160393777,KM07,16015821,Medical Incident,02/08/2016,02/08/2016,02/08/2016 10:45:22 PM,02/08/2016 10:45:22 PM,02/08/2016 10:47:01 PM,02/08/2016 10:47:35 PM,02/08/2016 10:55:41 PM,02/08/2016 11:17:41 PM,02/08/2016 11:29:22 PM,Code 2 Transport,02/09/2016 12:20:24 AM,VALENCIA ST/19TH ST,San Francisco,94110,B06,7,5434,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Mission,"(37.7601012942817, -122.42142521264)",160393777-KM07 -160321681,87,16012579,Medical Incident,02/01/2016,02/01/2016,02/01/2016 12:55:03 PM,02/01/2016 12:56:32 PM,02/01/2016 12:57:12 PM,02/01/2016 12:57:24 PM,02/01/2016 01:05:33 PM,02/01/2016 01:18:31 PM,02/01/2016 01:30:06 PM,Code 2 Transport,02/01/2016 02:14:34 PM,600 Block of ASHBURY ST,San Francisco,94117,B05,12,4512,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7695322663147, -122.446907671607)",160321681-87 -160511055,KM05,16020410,Medical Incident,02/20/2016,02/20/2016,02/20/2016 10:08:44 AM,02/20/2016 10:09:06 AM,02/20/2016 10:09:34 AM,02/20/2016 10:10:36 AM,02/20/2016 10:14:48 AM,02/20/2016 10:25:45 AM,02/20/2016 10:35:47 AM,Code 2 Transport,02/20/2016 11:18:54 AM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160511055-KM05 -131540023,93,13052021,Medical Incident,06/03/2013,06/02/2013,06/03/2013 01:50:05 AM,06/03/2013 01:52:30 AM,06/03/2013 01:52:40 AM,06/03/2013 01:53:15 AM,06/03/2013 01:57:51 AM,06/03/2013 02:16:38 AM,06/03/2013 02:27:37 AM,Code 2 Transport,06/03/2013 02:51:46 AM,200 Block of WAWONA ST,SF,94127,B08,39,8612,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.739219088526, -122.468780182081)",131540023-93 -160480393,53,16019226,Medical Incident,02/17/2016,02/16/2016,02/17/2016 05:07:47 AM,02/17/2016 05:09:09 AM,02/17/2016 05:09:47 AM,02/17/2016 05:09:57 AM,02/17/2016 05:15:41 AM,02/17/2016 05:29:36 AM,02/17/2016 05:35:17 AM,Code 2 Transport,02/17/2016 06:21:26 AM,0 Block of FRONT ST,San Francisco,94111,B01,13,1136,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7920192720524, -122.39857867407)",160480393-53 -160590474,64,16023374,Medical Incident,02/28/2016,02/27/2016,02/28/2016 03:35:43 AM,02/28/2016 03:35:52 AM,02/28/2016 03:36:52 AM,02/28/2016 03:37:22 AM,02/28/2016 04:12:41 AM,02/28/2016 04:16:54 AM,02/28/2016 04:31:08 AM,Code 3 Transport,02/28/2016 05:45:55 AM,2600 Block of 24TH AVE,San Francisco,94116,B08,40,7462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,8,4,Sunset/Parkside,"(37.7381569778051, -122.480651762674)",160590474-64 -120400160,T10,12013316,Alarms,02/09/2012,02/09/2012,02/09/2012 12:39:17 PM,02/09/2012 12:40:40 PM,02/09/2012 12:40:54 PM,02/09/2012 12:42:08 PM,02/09/2012 12:45:58 PM,04/25/2016 02:00:13 PM,04/25/2016 02:00:13 PM,Other,02/09/2012 12:47:47 PM,2900 Block of PACIFIC AVE,SF,94115,B04,10,4266,3,3,3,false,Alarm,1,TRUCK,3,4,2,Pacific Heights,"(37.7921385761806, -122.443819429857)",120400160-T10 -160830735,71,16032858,Medical Incident,03/23/2016,03/23/2016,03/23/2016 08:08:54 AM,03/23/2016 08:09:56 AM,03/23/2016 08:11:26 AM,03/23/2016 08:11:51 AM,03/23/2016 08:23:00 AM,03/23/2016 08:39:35 AM,03/23/2016 08:51:59 AM,Code 2 Transport,03/23/2016 09:23:21 AM,2300 Block of FOLSOM ST,San Francisco,94110,B06,7,5447,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",160830735-71 -110290104,D3,11009483,Structure Fire,01/29/2011,01/29/2011,01/29/2011 08:34:23 AM,01/29/2011 08:34:57 AM,01/29/2011 08:35:06 AM,01/29/2011 08:35:23 AM,01/29/2011 08:38:57 AM,04/25/2016 02:06:22 PM,04/25/2016 02:06:22 PM,Other,01/29/2011 09:04:45 AM,3400 Block of MISSION ST,SF,94110,B06,32,5626,3,3,3,false,,1,CHIEF,4,6,9,Bernal Heights,"(37.741419043576, -122.422665047787)",110290104-D3 -140540235,E43,14018332,Medical Incident,02/23/2014,02/23/2014,02/23/2014 06:10:01 PM,02/23/2014 06:12:50 PM,02/23/2014 06:13:33 PM,02/23/2014 06:15:42 PM,02/23/2014 06:18:55 PM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Code 3 Transport,02/23/2014 06:27:38 PM,300 Block of WINDING WAY,SF,94112,B09,43,6217,2,2,2,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7093340295931, -122.437772842165)",140540235-E43 -121550198,KM10,12051332,Medical Incident,06/03/2012,06/03/2012,06/03/2012 01:38:09 PM,06/03/2012 01:39:57 PM,06/03/2012 01:40:17 PM,06/03/2012 01:40:56 PM,06/03/2012 01:47:34 PM,06/03/2012 02:00:55 PM,06/03/2012 02:21:42 PM,Code 2 Transport,06/03/2012 02:43:52 PM,2100 Block of LOMBARD ST,SF,94123,B04,16,3566,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7998548796266, -122.436893822331)",121550198-KM10 -110830444,E36,11027505,Medical Incident,03/24/2011,03/24/2011,03/24/2011 11:47:15 PM,03/24/2011 11:47:47 PM,03/24/2011 11:48:08 PM,03/24/2011 11:49:28 PM,03/24/2011 11:56:57 PM,04/25/2016 02:05:28 PM,04/25/2016 02:05:28 PM,Other,03/24/2011 11:57:15 PM,VAN NESS AV/MARKET ST,SF,94103,B02,36,3212,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7751470741622, -122.419255607214)",110830444-E36 -131780259,B07,13060497,Alarms,06/27/2013,06/27/2013,06/27/2013 03:45:12 PM,06/27/2013 03:46:26 PM,06/27/2013 03:46:52 PM,06/27/2013 03:47:57 PM,06/27/2013 03:51:44 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Other,06/27/2013 03:55:32 PM,0 Block of PRESIDIO TER,SF,94118,B07,10,4444,3,3,3,false,Alarm,1,CHIEF,3,7,2,Inner Richmond,"(37.7881859123819, -122.461502002981)",131780259-B07 -160432514,55,16017369,Medical Incident,02/12/2016,02/12/2016,02/12/2016 04:23:42 PM,02/12/2016 04:23:42 PM,02/12/2016 04:23:58 PM,02/12/2016 04:24:10 PM,02/12/2016 04:34:28 PM,02/12/2016 04:51:07 PM,02/12/2016 04:56:27 PM,Code 2 Transport,02/12/2016 05:29:22 PM,DUBOCE AV/MISSION ST,San Francisco,94103,B02,36,5124,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",160432514-55 -111280357,T03,11042507,Structure Fire,05/08/2011,05/08/2011,05/08/2011 11:48:22 PM,05/08/2011 11:48:22 PM,05/08/2011 11:48:32 PM,05/08/2011 11:50:20 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,04/25/2016 02:04:43 PM,Other,05/08/2011 11:51:13 PM,POLK ST/PINE ST,SF,94109,B04,3,3122,3,3,3,false,,1,TRUCK,2,4,3,Nob Hill,"(37.7896204362802, -122.420493444375)",111280357-T03 -110980231,62,11032530,Medical Incident,04/08/2011,04/08/2011,04/08/2011 01:48:24 PM,04/08/2011 01:49:17 PM,04/08/2011 01:49:28 PM,04/25/2016 02:05:12 PM,04/08/2011 01:58:19 PM,04/08/2011 02:13:26 PM,04/08/2011 02:22:08 PM,Code 2 Transport,04/08/2011 02:01:27 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.7776242389287, -122.39998111124)",110980231-62 -160851994,63,16033801,Medical Incident,03/25/2016,03/25/2016,03/25/2016 01:48:30 PM,03/25/2016 01:48:30 PM,03/25/2016 01:48:48 PM,03/25/2016 01:50:48 PM,03/25/2016 01:56:28 PM,03/25/2016 02:13:17 PM,03/25/2016 02:28:23 PM,Code 2 Transport,03/25/2016 03:02:47 PM,MARKET ST/POWELL ST,San Francisco,94103,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160851994-63 -122320241,E11,12076996,Medical Incident,08/19/2012,08/19/2012,08/19/2012 03:40:12 PM,08/19/2012 03:42:38 PM,08/19/2012 03:43:17 PM,08/19/2012 03:44:37 PM,08/19/2012 03:46:39 PM,04/25/2016 01:57:09 PM,04/25/2016 01:57:09 PM,Other,08/19/2012 03:46:52 PM,3200 Block of 24TH ST,SF,94110,B06,11,5525,3,3,3,true,Non Life-threatening,1,ENGINE,2,6,9,Mission,"(37.7523000618659, -122.416540231015)",122320241-E11 -122990126,T12,12099045,Alarms,10/25/2012,10/25/2012,10/25/2012 10:17:08 AM,10/25/2012 10:18:42 AM,10/25/2012 10:18:50 AM,10/25/2012 10:20:54 AM,10/25/2012 10:22:44 AM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/25/2012 10:23:28 AM,1700 Block of WALLER ST,SF,94117,B05,12,4552,3,3,3,false,Alarm,1,TRUCK,2,5,5,Haight Ashbury,"(37.7682837349171, -122.452502140464)",122990126-T12 -131770382,E06,13060254,Medical Incident,06/26/2013,06/26/2013,06/26/2013 10:23:21 PM,06/26/2013 10:23:58 PM,06/26/2013 10:24:10 PM,06/26/2013 10:24:45 PM,06/26/2013 10:26:55 PM,04/25/2016 01:52:05 PM,04/25/2016 01:52:05 PM,Other,06/26/2013 10:30:41 PM,0 Block of ROSA PARKS LN,SF,94103,B02,6,5214,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,8,Mission,"(37.7673544131267, -122.423185137118)",131770382-E06 -113640013,E36,11120755,Medical Incident,12/30/2011,12/29/2011,12/30/2011 12:26:08 AM,12/30/2011 12:26:47 AM,12/30/2011 12:27:18 AM,12/30/2011 12:28:51 AM,12/30/2011 12:30:29 AM,04/25/2016 02:00:54 PM,04/25/2016 02:00:54 PM,Other,12/30/2011 12:38:00 AM,0 Block of GROVE ST,SF,94102,B02,36,381,E,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.778539623098, -122.417393041314)",113640013-E36 -123200309,89,12106489,Medical Incident,11/15/2012,11/15/2012,11/15/2012 07:34:00 PM,11/15/2012 07:34:43 PM,11/15/2012 07:36:32 PM,11/15/2012 07:36:39 PM,11/15/2012 07:47:21 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 08:09:02 PM,1100 Block of MISSION ST,SF,94103,B02,1,2315,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7785895740312, -122.411626152299)",123200309-89 -131280052,84,13043171,Medical Incident,05/08/2013,05/07/2013,05/08/2013 04:53:17 AM,05/08/2013 04:55:29 AM,05/08/2013 05:12:36 AM,05/08/2013 05:12:40 AM,05/08/2013 05:21:49 AM,05/08/2013 05:40:15 AM,05/08/2013 06:00:40 AM,Code 2 Transport,05/08/2013 06:29:48 AM,HAYES ST/GOUGH ST,SF,94102,B02,36,3265,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7768835259362, -122.422978150089)",131280052-84 -160433086,58,16017430,Medical Incident,02/12/2016,02/12/2016,02/12/2016 06:51:31 PM,02/12/2016 06:52:05 PM,02/12/2016 06:52:26 PM,02/12/2016 06:52:42 PM,02/12/2016 07:04:59 PM,02/12/2016 07:05:00 PM,02/12/2016 07:07:27 PM,Code 2 Transport,02/12/2016 07:46:15 PM,400 Block of CASTRO ST,San Francisco,94114,B05,6,5416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7617848283165, -122.43501366672)",160433086-58 -103600136,60,10115504,Medical Incident,12/26/2010,12/26/2010,12/26/2010 01:35:01 PM,12/26/2010 01:35:01 PM,12/26/2010 01:36:04 PM,12/26/2010 01:36:38 PM,12/26/2010 01:56:18 PM,12/26/2010 02:05:58 PM,04/25/2016 02:06:55 PM,Code 2 Transport,12/26/2010 02:29:21 PM,0 Block of GEORGE CT,SF,94124,B10,17,6572,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7309025092294, -122.382609703047)",103600136-60 -120030280,B10,12001117,Other,01/03/2012,01/03/2012,01/03/2012 04:40:26 PM,01/03/2012 04:41:02 PM,01/03/2012 04:41:11 PM,04/25/2016 02:00:48 PM,01/03/2012 04:44:59 PM,04/25/2016 02:00:48 PM,04/25/2016 02:00:48 PM,Other,01/03/2012 04:59:44 PM,900 Block of MINNESOTA ST,SF,94107,B10,37,2535,3,3,3,false,Alarm,1,CHIEF,1,10,10,Potrero Hill,"(37.75912919157, -122.390263175071)",120030280-B10 -131230170,KM11,13041421,Medical Incident,05/03/2013,05/03/2013,05/03/2013 11:05:35 AM,05/03/2013 11:06:12 AM,05/03/2013 11:06:28 AM,05/03/2013 11:07:23 AM,05/03/2013 11:19:36 AM,04/25/2016 01:52:59 PM,04/25/2016 01:52:59 PM,No Merit,05/03/2013 11:29:07 AM,800 Block of BRYANT ST,SF,94103,B03,8,2255,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.775420706711, -122.403404791479)",131230170-KM11 -131320013,87,13044448,Medical Incident,05/12/2013,05/11/2013,05/12/2013 12:42:33 AM,05/12/2013 12:44:18 AM,05/12/2013 12:46:37 AM,05/12/2013 12:46:51 AM,05/12/2013 01:04:24 AM,05/12/2013 01:20:04 AM,05/12/2013 02:02:00 AM,Code 2 Transport,05/12/2013 02:28:38 AM,2800 Block of LEAVENWORTH ST,SF,94109,B01,28,1524,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,2,Russian Hill,"(37.8073249129151, -122.419065516897)",131320013-87 -112260005,E41,11074522,Medical Incident,08/14/2011,08/13/2011,08/14/2011 12:04:25 AM,08/14/2011 12:08:52 AM,08/14/2011 12:09:03 AM,08/14/2011 12:10:21 AM,08/14/2011 12:11:51 AM,04/25/2016 02:03:11 PM,04/25/2016 02:03:11 PM,Other,08/14/2011 12:27:38 AM,1300 Block of PINE ST,SF,94109,B04,41,1562,3,3,3,false,,1,ENGINE,1,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",112260005-E41 -160450536,AM24,16017986,Medical Incident,02/14/2016,02/13/2016,02/14/2016 03:29:47 AM,02/14/2016 03:29:47 AM,02/14/2016 03:30:27 AM,02/14/2016 03:30:52 AM,02/14/2016 03:41:20 AM,02/14/2016 03:47:36 AM,02/14/2016 04:00:52 AM,Code 2 Transport,02/14/2016 04:24:22 AM,300 Block of GRANT AVE,San Francisco,94108,B01,13,1315,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7903312930658, -122.405480762269)",160450536-AM24 -132480229,T17,13083717,Structure Fire,09/05/2013,09/05/2013,09/05/2013 02:18:45 PM,09/05/2013 02:19:36 PM,09/05/2013 02:19:50 PM,09/05/2013 02:20:41 PM,09/05/2013 02:23:22 PM,04/25/2016 01:50:57 PM,04/25/2016 01:50:57 PM,Other,09/05/2013 03:18:21 PM,1700 Block of OAKDALE AVE,SF,94124,B10,17,6471,3,3,3,false,Fire,1,TRUCK,3,10,10,Bayview Hunters Point,"(37.7362394819721, -122.393112998589)",132480229-T17 -111540028,E03,11050751,Outside Fire,06/03/2011,06/02/2011,06/03/2011 02:20:13 AM,06/03/2011 02:21:10 AM,06/03/2011 02:21:23 AM,06/03/2011 02:22:57 AM,06/03/2011 02:25:33 AM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Fire,06/03/2011 02:29:27 AM,LEAVENWORTH ST/OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7855824736087, -122.414617208836)",111540028-E03 -160161900,KM02,16006438,Medical Incident,01/16/2016,01/16/2016,01/16/2016 01:58:30 PM,01/16/2016 01:58:30 PM,01/16/2016 01:59:54 PM,01/16/2016 02:00:19 PM,01/16/2016 02:08:48 PM,01/16/2016 02:29:12 PM,01/16/2016 02:51:19 PM,Code 2 Transport,01/16/2016 03:17:03 PM,14TH ST/SANCHEZ ST,San Francisco,94114,B05,6,5213,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,8,Castro/Upper Market,"(37.7675952427988, -122.431191120963)",160161900-KM02 -130980317,AM08,13032960,Medical Incident,04/08/2013,04/08/2013,04/08/2013 03:59:28 PM,04/08/2013 04:00:25 PM,04/08/2013 04:01:05 PM,04/08/2013 04:01:25 PM,04/08/2013 04:05:11 PM,04/08/2013 04:17:55 PM,04/08/2013 04:35:48 PM,Code 2 Transport,04/08/2013 05:24:36 PM,200 Block of 3RD ST,SF,94105,B03,1,2177,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7846604121968, -122.39991472916)",130980317-AM08 -110050122,E21,11001592,Medical Incident,01/05/2011,01/05/2011,01/05/2011 09:50:08 AM,01/05/2011 09:51:18 AM,01/05/2011 09:52:14 AM,01/05/2011 09:52:57 AM,01/05/2011 09:53:30 AM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 10:13:58 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",110050122-E21 -160481600,62,16019320,Medical Incident,02/17/2016,02/17/2016,02/17/2016 11:51:15 AM,02/17/2016 11:51:15 AM,02/17/2016 11:51:55 AM,02/17/2016 11:52:42 AM,02/17/2016 12:04:29 PM,02/17/2016 12:14:22 PM,02/17/2016 12:36:27 PM,Code 2 Transport,02/17/2016 01:17:44 PM,400 Block of HAYES ST,San Francisco,94102,B02,36,3265,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7767313126338, -122.423734940751)",160481600-62 -141000095,AM26,14033693,Medical Incident,04/10/2014,04/10/2014,04/10/2014 09:06:41 AM,04/10/2014 09:08:15 AM,04/10/2014 09:10:54 AM,04/10/2014 09:11:23 AM,04/10/2014 09:19:28 AM,04/10/2014 09:32:37 AM,04/10/2014 09:37:56 AM,Code 2 Transport,04/10/2014 10:28:15 AM,500 Block of OFARRELL ST,SAN FRANCISCO,94102,B04,3,1544,,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",141000095-AM26 -120410028,79,12013528,Medical Incident,02/10/2012,02/09/2012,02/10/2012 02:06:47 AM,02/10/2012 02:07:54 AM,02/10/2012 02:08:14 AM,02/10/2012 02:09:05 AM,02/10/2012 02:13:25 AM,02/10/2012 02:31:08 AM,02/10/2012 02:39:44 AM,Code 2 Transport,02/10/2012 03:43:53 AM,600 Block of FULTON ST,SF,94102,B02,5,3412,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,5,Western Addition,"(37.7781781708138, -122.428256337547)",120410028-79 -123390102,E05,12112997,Medical Incident,12/04/2012,12/04/2012,12/04/2012 09:36:43 AM,12/04/2012 09:37:47 AM,12/04/2012 09:38:46 AM,04/25/2016 01:55:29 PM,12/04/2012 09:41:26 AM,04/25/2016 01:55:29 PM,04/25/2016 01:55:29 PM,Other,04/25/2016 01:55:29 PM,300 Block of GOLDEN GATE AVE,SF,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",123390102-E05 -103630107,E44,10116388,Medical Incident,12/29/2010,12/29/2010,12/29/2010 10:07:00 AM,12/29/2010 10:09:11 AM,12/29/2010 10:09:26 AM,12/29/2010 10:09:36 AM,12/29/2010 10:13:12 AM,04/25/2016 02:06:52 PM,04/25/2016 02:06:52 PM,Other,12/29/2010 10:25:26 AM,0 Block of HERITAGE LN,SF,94134,B09,44,6252,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7098510364224, -122.412232276093)",103630107-E44 -113130315,E05,11104119,Medical Incident,11/09/2011,11/09/2011,11/09/2011 06:42:37 PM,11/09/2011 06:43:15 PM,11/09/2011 06:43:33 PM,11/09/2011 06:44:33 PM,11/09/2011 06:46:21 PM,04/25/2016 02:01:43 PM,04/25/2016 02:01:43 PM,Other,11/09/2011 06:59:29 PM,1800 Block of ELLIS ST,SF,94115,B05,5,3644,3,2,2,true,,1,ENGINE,1,5,5,Western Addition,"(37.7817795068861, -122.436618848831)",113130315-E05 -122650145,E15,12087521,Medical Incident,09/21/2012,09/21/2012,09/21/2012 12:51:43 PM,09/21/2012 12:53:16 PM,09/21/2012 12:53:26 PM,09/21/2012 12:55:07 PM,09/21/2012 12:56:09 PM,04/25/2016 01:56:40 PM,04/25/2016 01:56:40 PM,Other,09/21/2012 01:10:48 PM,200 Block of LOUISBURG ST,SF,94112,B09,15,8315,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7199432625965, -122.450523622192)",122650145-E15 -133080180,KM04,13104710,Medical Incident,11/04/2013,11/04/2013,11/04/2013 12:04:46 PM,11/04/2013 12:04:47 PM,11/04/2013 12:05:18 PM,11/04/2013 12:05:53 PM,11/04/2013 12:10:05 PM,11/04/2013 12:26:19 PM,11/04/2013 12:37:22 PM,Code 2 Transport,11/04/2013 01:15:10 PM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",133080180-KM04 -132980357,E40,13101351,Structure Fire,10/25/2013,10/25/2013,10/25/2013 08:02:55 PM,10/25/2013 08:03:55 PM,10/25/2013 08:04:15 PM,10/25/2013 08:05:25 PM,10/25/2013 08:10:15 PM,04/25/2016 01:50:05 PM,04/25/2016 01:50:05 PM,Other,10/25/2013 08:24:04 PM,0 Block of GELLERT DR,SF,94132,B08,19,8814,3,3,3,true,Alarm,1,ENGINE,6,8,7,Sunset/Parkside,"(37.7325140251407, -122.493237980377)",132980357-E40 -112140227,E11,11070662,Medical Incident,08/02/2011,08/02/2011,08/02/2011 03:15:07 PM,08/02/2011 03:15:33 PM,08/02/2011 03:15:44 PM,08/02/2011 03:16:51 PM,08/02/2011 03:18:22 PM,04/25/2016 02:03:22 PM,04/25/2016 02:03:22 PM,Other,08/02/2011 03:24:11 PM,2900 Block of MISSION ST,SF,94110,B06,11,5613,3,2,2,true,,1,ENGINE,1,6,9,Mission,"(37.7498446220826, -122.418142583283)",112140227-E11 -111720223,KM04,11056763,Medical Incident,06/21/2011,06/21/2011,06/21/2011 02:14:55 PM,06/21/2011 02:15:22 PM,06/21/2011 02:15:37 PM,06/21/2011 02:18:55 PM,06/21/2011 02:24:51 PM,06/21/2011 02:36:49 PM,04/25/2016 02:04:03 PM,Code 2 Transport,06/21/2011 03:23:39 PM,CYRIL MAGNIN ST/MARKET ST,SF,94103,B03,1,1366,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7839914857614, -122.408066547804)",111720223-KM04 -112250076,E15,11074252,Aircraft Emergency,08/13/2011,08/12/2011,08/13/2011 06:40:33 AM,08/13/2011 06:40:40 AM,08/13/2011 06:41:48 AM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,04/25/2016 02:03:12 PM,Other,08/13/2011 06:45:46 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,true,,1,ENGINE,2,None,None,None,"(37.6168823239251, -122.384094238098)",112250076-E15 -123310388,E43,12110192,Medical Incident,11/26/2012,11/26/2012,11/26/2012 10:13:38 PM,11/26/2012 10:13:44 PM,11/26/2012 10:14:03 PM,11/26/2012 10:15:18 PM,11/26/2012 10:17:46 PM,04/25/2016 01:55:37 PM,04/25/2016 01:55:37 PM,Other,11/26/2012 10:26:08 PM,400 Block of EXCELSIOR AVE,SF,94112,B09,43,6133,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7244871327142, -122.430088195319)",123310388-E43 -140970186,E07,14032668,Medical Incident,04/07/2014,04/07/2014,04/07/2014 11:30:09 AM,04/07/2014 11:32:28 AM,04/07/2014 11:33:22 AM,04/07/2014 11:34:10 AM,04/07/2014 11:36:23 AM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,Unable to Locate,04/07/2014 11:37:49 AM,16TH ST/MISSION ST,SAN FRANCISCO,94103,B02,7,5236,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",140970186-E07 -160380844,AM24,16015114,Medical Incident,02/07/2016,02/06/2016,02/07/2016 06:50:16 AM,02/07/2016 06:51:06 AM,02/07/2016 06:51:15 AM,02/07/2016 06:51:43 AM,02/07/2016 06:55:06 AM,02/07/2016 07:07:07 AM,02/07/2016 07:26:50 AM,Code 2 Transport,02/07/2016 07:58:17 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160380844-AM24 -110770179,RS2,11025336,Medical Incident,03/18/2011,03/18/2011,03/18/2011 11:55:57 AM,03/18/2011 11:56:32 AM,03/18/2011 11:57:00 AM,03/18/2011 11:58:25 AM,03/18/2011 11:59:55 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 12:10:06 PM,16TH ST/FLORIDA ST,SF,94110,B02,29,5241,3,3,3,false,,1,RESCUE SQUAD,1,2,9,Mission,"(37.7655476063154, -122.411455264765)",110770179-RS2 -112210104,T03,11072940,Alarms,08/09/2011,08/09/2011,08/09/2011 10:20:53 AM,08/09/2011 10:21:49 AM,08/09/2011 10:22:00 AM,08/09/2011 10:23:06 AM,08/09/2011 10:27:08 AM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 10:33:34 AM,1700 Block of CALIFORNIA ST,SF,94109,B04,38,3155,3,3,3,false,,1,TRUCK,1,4,2,Pacific Heights,"(37.7903193034194, -122.4231629068)",112210104-T03 -121660279,RC2,12055135,Water Rescue,06/14/2012,06/14/2012,06/14/2012 04:49:51 PM,06/14/2012 04:51:43 PM,06/14/2012 04:52:58 PM,06/14/2012 04:53:44 PM,06/14/2012 05:12:46 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/14/2012 05:14:40 PM,600 Block of MASON ST,PR,94108,B99,51,4613,3,3,3,true,Fire,1,RESCUE CAPTAIN,4,1,3,Nob Hill,"(37.7894750995942, -122.410406163763)",121660279-RC2 -111690123,86,11055657,Medical Incident,06/18/2011,06/18/2011,06/18/2011 09:51:54 AM,06/18/2011 09:51:54 AM,06/18/2011 09:52:38 AM,06/18/2011 09:54:01 AM,06/18/2011 09:57:09 AM,06/18/2011 10:06:48 AM,06/18/2011 10:10:18 AM,Code 2 Transport,06/18/2011 10:42:11 AM,600 Block of IRVING ST,SF,94122,B08,22,7332,3,3,3,true,,1,MEDIC,2,8,5,Inner Sunset,"(37.7640524831749, -122.464704638953)",111690123-86 -112350289,73,11077634,Medical Incident,08/23/2011,08/23/2011,08/23/2011 04:59:28 PM,08/23/2011 05:00:04 PM,08/23/2011 05:00:24 PM,08/23/2011 05:01:07 PM,08/23/2011 05:03:35 PM,08/23/2011 05:32:32 PM,08/23/2011 06:10:06 PM,Code 2 Transport,08/23/2011 06:41:11 PM,0 Block of OCEAN AVE,SF,94112,B09,43,6121,3,2,2,true,,1,MEDIC,1,9,11,Outer Mission,"(37.7235851025068, -122.437887650131)",112350289-73 -160920348,AM18,16036306,Medical Incident,04/01/2016,03/31/2016,04/01/2016 04:01:11 AM,04/01/2016 04:01:17 AM,04/01/2016 04:01:49 AM,04/01/2016 04:03:21 AM,04/01/2016 04:31:31 AM,04/01/2016 04:35:16 AM,04/01/2016 04:43:34 AM,Code 2 Transport,04/01/2016 05:18:17 AM,200 Block of GALEWOOD CIR,San Francisco,94131,B08,20,5341,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,7,Inner Sunset,"(37.7524679814204, -122.456992921405)",160920348-AM18 -160400170,78,16015858,Medical Incident,02/09/2016,02/08/2016,02/09/2016 01:58:04 AM,02/09/2016 01:58:59 AM,02/09/2016 02:11:56 AM,02/09/2016 02:12:12 AM,02/09/2016 02:18:58 AM,02/09/2016 02:38:48 AM,02/09/2016 03:08:37 AM,Code 3 Transport,02/09/2016 03:55:32 AM,EVANS AV/3RD ST,San Francisco,94124,B10,25,6457,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7427031546231, -122.387926352265)",160400170-78 -160360203,52,16014076,Medical Incident,02/05/2016,02/04/2016,02/05/2016 01:18:36 AM,02/05/2016 01:21:29 AM,02/05/2016 01:22:07 AM,02/05/2016 01:22:16 AM,02/05/2016 01:29:40 AM,02/05/2016 01:48:54 AM,02/05/2016 02:08:32 AM,Code 2 Transport,02/05/2016 03:07:28 AM,3000 Block of SAN BRUNO AVE,San Francisco,94134,B10,44,6326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.723359097822, -122.401902489608)",160360203-52 -133600319,B02,13122475,Alarms,12/26/2013,12/26/2013,12/26/2013 08:43:34 PM,12/26/2013 08:44:32 PM,12/26/2013 08:45:00 PM,12/26/2013 08:46:46 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 08:50:34 PM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",133600319-B02 -113260311,KM14,11108335,Medical Incident,11/22/2011,11/22/2011,11/22/2011 06:14:12 PM,11/22/2011 06:14:32 PM,11/22/2011 06:14:42 PM,11/22/2011 06:15:22 PM,11/22/2011 06:19:47 PM,11/22/2011 06:28:44 PM,11/22/2011 06:37:53 PM,Code 2 Transport,11/22/2011 07:27:34 PM,400 Block of 29TH AVE,SF,94121,B07,14,7226,3,2,2,false,,1,PRIVATE,2,7,1,Outer Richmond,"(37.7808610214772, -122.489016145519)",113260311-KM14 -121400301,E01,12046610,Medical Incident,05/19/2012,05/19/2012,05/19/2012 07:41:31 PM,05/19/2012 07:43:46 PM,05/19/2012 07:59:13 PM,05/19/2012 08:00:08 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,04/25/2016 01:58:36 PM,Unable to Locate,05/19/2012 08:15:15 PM,900 Block of MISSION ST,SF,94103,B03,1,2251,1,1,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",121400301-E01 -160010113,KM08,16000017,Medical Incident,01/01/2016,12/31/2015,01/01/2016 12:23:39 AM,01/01/2016 12:25:56 AM,01/01/2016 12:36:37 AM,01/01/2016 12:38:02 AM,01/01/2016 12:42:01 AM,01/01/2016 12:53:45 AM,01/01/2016 01:18:32 AM,Code 2 Transport,01/01/2016 01:20:28 AM,MARKET ST/DRUMM ST,San Francisco,94105,B99,13,1113,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",160010113-KM08 -160300389,85,16011653,Medical Incident,01/30/2016,01/29/2016,01/30/2016 02:42:57 AM,01/30/2016 02:43:36 AM,01/30/2016 02:44:00 AM,01/30/2016 02:44:17 AM,01/30/2016 02:48:05 AM,01/30/2016 02:59:47 AM,01/30/2016 03:06:17 AM,Code 2 Transport,01/30/2016 03:38:49 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650413541786, -122.420746190588)",160300389-85 -160320232,53,16012420,Medical Incident,02/01/2016,01/31/2016,02/01/2016 02:13:50 AM,02/01/2016 02:13:50 AM,02/01/2016 02:14:40 AM,02/01/2016 02:14:43 AM,02/01/2016 02:27:07 AM,02/01/2016 02:38:11 AM,02/01/2016 02:43:21 AM,Code 2 Transport,02/01/2016 03:23:02 AM,EDDY ST/HYDE ST,San Francisco,94102,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7835156400829, -122.415882540669)",160320232-53 -110360277,E01,11011904,Traffic Collision,02/05/2011,02/05/2011,02/05/2011 03:28:31 PM,02/05/2011 03:28:32 PM,02/05/2011 03:29:37 PM,02/05/2011 03:30:01 PM,02/05/2011 03:32:52 PM,04/25/2016 02:06:14 PM,04/25/2016 02:06:14 PM,Other,02/05/2011 03:55:42 PM,STOCKTON ST/OFARRELL ST,SF,94108,B01,1,1321,2,2,2,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7866153472398, -122.406398878903)",110360277-E01 -130980310,E06,13032954,Medical Incident,04/08/2013,04/08/2013,04/08/2013 03:44:56 PM,04/08/2013 03:45:27 PM,04/08/2013 03:45:40 PM,04/08/2013 03:47:24 PM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,04/25/2016 01:53:25 PM,Other,04/08/2013 03:49:37 PM,100 Block of JULIAN AVE,SF,94103,B02,6,5226,3,2,2,true,Non Life-threatening,1,ENGINE,2,2,9,Mission,"(37.7657922226195, -122.420909958943)",130980310-E06 -160722484,50,16028679,Medical Incident,03/12/2016,03/12/2016,03/12/2016 05:27:59 PM,03/12/2016 05:27:59 PM,03/12/2016 05:28:24 PM,03/12/2016 05:28:51 PM,03/12/2016 05:35:40 PM,03/12/2016 06:07:58 PM,03/12/2016 06:09:53 PM,Code 2 Transport,03/12/2016 06:40:24 PM,POLK ST/BUSH ST,San Francisco,94109,B04,3,3121,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.788699045225, -122.420306883643)",160722484-50 -160211447,75,16008346,Medical Incident,01/21/2016,01/21/2016,01/21/2016 11:29:26 AM,01/21/2016 11:29:26 AM,01/21/2016 11:29:42 AM,01/21/2016 11:29:52 AM,01/21/2016 11:33:00 AM,01/21/2016 11:49:30 AM,01/21/2016 11:53:27 AM,Code 2 Transport,01/21/2016 12:48:42 PM,MCALLISTER ST/FILLMORE ST,San Francisco,94115,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.778632035975, -122.431763221514)",160211447-75 -102560202,B02,10080909,Structure Fire,09/13/2010,09/13/2010,09/13/2010 01:49:20 PM,09/13/2010 01:50:25 PM,09/13/2010 01:50:47 PM,09/13/2010 01:52:15 PM,09/13/2010 01:54:31 PM,04/25/2016 02:08:37 PM,04/25/2016 02:08:37 PM,Other,09/13/2010 02:04:49 PM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,,1,CHIEF,4,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",102560202-B02 -121320036,94,12043787,Medical Incident,05/11/2012,05/10/2012,05/11/2012 03:11:05 AM,05/11/2012 03:11:05 AM,05/11/2012 03:13:37 AM,05/11/2012 03:14:03 AM,05/11/2012 03:21:10 AM,05/11/2012 03:41:06 AM,05/11/2012 04:06:40 AM,Code 2 Transport,05/11/2012 04:38:36 AM,400 Block of PLYMOUTH AVE,SF,94112,B09,33,8372,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7144901597507, -122.456135851109)",121320036-94 -102350282,E07,10074027,Citizen Assist / Service Call,08/23/2010,08/23/2010,08/23/2010 04:08:13 PM,08/23/2010 04:08:28 PM,08/23/2010 04:08:44 PM,08/23/2010 04:09:46 PM,08/23/2010 04:12:11 PM,04/25/2016 02:08:56 PM,04/25/2016 02:08:56 PM,Other,08/23/2010 04:14:01 PM,26TH ST/TREAT AV,SF,94110,B06,7,5614,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7493698247737, -122.412687194015)",102350282-E07 -131600065,81,13054255,Medical Incident,06/09/2013,06/08/2013,06/09/2013 06:47:17 AM,06/09/2013 06:48:11 AM,06/09/2013 06:48:54 AM,06/09/2013 06:49:08 AM,06/09/2013 06:57:27 AM,06/09/2013 07:09:52 AM,06/09/2013 07:13:29 AM,Code 2 Transport,06/09/2013 07:44:10 AM,2100 Block of POST ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Japantown,"(37.7846877609559, -122.437204719428)",131600065-81 -112510014,57,11082629,Medical Incident,09/08/2011,09/07/2011,09/08/2011 12:56:18 AM,09/08/2011 12:56:18 AM,09/08/2011 12:56:18 AM,09/08/2011 12:57:06 AM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,04/25/2016 02:02:47 PM,Other,09/08/2011 12:57:33 AM,LARKIN ST/EDDY ST,SF,94109,B02,3,1643,3,3,3,true,,1,MEDIC,3,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",112510014-57 -132140265,T18,13072331,Alarms,08/02/2013,08/02/2013,08/02/2013 04:29:18 PM,08/02/2013 04:30:43 PM,08/02/2013 04:30:56 PM,08/02/2013 04:31:42 PM,08/02/2013 04:35:50 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 04:42:16 PM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,3,3,3,false,Alarm,1,TRUCK,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",132140265-T18 -110840324,AM18,11027786,Medical Incident,03/25/2011,03/25/2011,03/25/2011 06:43:34 PM,03/25/2011 06:44:00 PM,03/25/2011 06:44:14 PM,03/25/2011 06:47:31 PM,03/25/2011 06:48:43 PM,03/25/2011 06:56:50 PM,03/25/2011 07:07:32 PM,Code 3 Transport,03/25/2011 08:04:24 PM,600 Block of VICENTE ST,SF,94116,B08,40,7411,3,3,3,false,,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7393401076829, -122.473824610967)",110840324-AM18 -160091724,86,16003656,Medical Incident,01/09/2016,01/09/2016,01/09/2016 01:14:24 PM,01/09/2016 01:17:42 PM,01/09/2016 01:18:27 PM,01/09/2016 01:18:34 PM,01/09/2016 01:32:47 PM,01/09/2016 01:55:06 PM,01/09/2016 02:06:17 PM,Code 2 Transport,01/09/2016 02:41:39 PM,3500 Block of CESAR CHAVEZ ST,San Francisco,94110,B06,11,555,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Mission,"(37.748178766022, -122.4214039484)",160091724-86 -110250097,84,11008152,Medical Incident,01/25/2011,01/25/2011,01/25/2011 08:16:29 AM,01/25/2011 08:17:17 AM,01/25/2011 08:17:38 AM,01/25/2011 08:17:56 AM,01/25/2011 08:21:47 AM,01/25/2011 09:03:25 AM,01/25/2011 09:24:51 AM,Code 2 Transport,01/25/2011 09:53:15 AM,700 Block of COLE ST,SF,94117,B05,12,5144,3,2,2,true,,1,MEDIC,1,5,5,Haight Ashbury,"(37.7671882889192, -122.4503083982)",110250097-84 -160403682,KM07,16016228,Medical Incident,02/09/2016,02/09/2016,02/09/2016 09:52:57 PM,02/09/2016 09:55:35 PM,02/09/2016 09:55:44 PM,02/09/2016 09:56:12 PM,02/09/2016 10:05:28 PM,02/09/2016 10:18:00 PM,02/09/2016 10:23:32 PM,Code 2 Transport,02/09/2016 10:59:07 PM,1000 Block of VAN NESS AVE,San Francisco,94109,B04,3,3162,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,6,Tenderloin,"(37.7849996426672, -122.421092281879)",160403682-KM07 -160081064,63,16003155,Medical Incident,01/08/2016,01/08/2016,01/08/2016 09:27:54 AM,01/08/2016 09:32:55 AM,01/08/2016 09:33:30 AM,01/08/2016 09:33:38 AM,01/08/2016 09:55:47 AM,01/08/2016 10:05:56 AM,01/08/2016 10:32:18 AM,Code 2 Transport,01/08/2016 10:53:36 AM,1900 Block of POLK ST,San Francisco,94109,B04,41,3125,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,4,3,Russian Hill,"(37.7945943539551, -122.421425211776)",160081064-63 -160210541,64,16008259,Medical Incident,01/21/2016,01/20/2016,01/21/2016 06:49:59 AM,01/21/2016 06:49:59 AM,01/21/2016 06:50:16 AM,01/21/2016 06:50:25 AM,01/21/2016 06:55:48 AM,01/21/2016 07:13:06 AM,01/21/2016 07:19:03 AM,Code 2 Transport,01/21/2016 07:53:35 AM,100 Block of HANCOCK ST,San Francisco,94114,B06,6,5436,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7602356713797, -122.431601160803)",160210541-64 -160010226,SJ111,16000039,Medical Incident,01/01/2016,12/31/2015,01/01/2016 12:49:22 AM,01/01/2016 12:49:22 AM,01/01/2016 12:49:35 AM,01/01/2016 12:50:27 AM,01/01/2016 12:54:30 AM,01/01/2016 01:05:27 AM,01/01/2016 01:15:03 AM,Code 2 Transport,01/01/2016 01:55:16 AM,2000 Block of MISSION ST,San Francisco,94110,B02,7,5236,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",160010226-SJ111 -131270001,E32,13042779,Medical Incident,05/07/2013,05/06/2013,05/07/2013 12:00:55 AM,05/07/2013 12:01:24 AM,05/07/2013 12:02:22 AM,04/25/2016 01:52:55 PM,05/07/2013 12:09:21 AM,04/25/2016 01:52:55 PM,04/25/2016 01:52:55 PM,Other,05/07/2013 12:03:34 AM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",131270001-E32 -121020267,E05,12033888,Medical Incident,04/11/2012,04/11/2012,04/11/2012 05:57:37 PM,04/11/2012 05:59:31 PM,04/11/2012 06:00:56 PM,04/25/2016 01:59:13 PM,04/11/2012 06:03:55 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Other,04/11/2012 06:16:55 PM,1400 Block of FILLMORE ST,SF,94115,B05,5,3536,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7828298222555, -122.432542450973)",121020267-E05 -130330330,E19,13011415,Traffic Collision,02/02/2013,02/02/2013,02/02/2013 09:04:51 PM,02/02/2013 09:05:37 PM,02/02/2013 09:05:49 PM,02/02/2013 09:06:59 PM,02/02/2013 09:09:25 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/02/2013 09:32:39 PM,19TH AV/JUNIPERO SERRA BL,SF,94132,B08,19,8427,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,Lakeshore,"(37.71717386983, -122.472572451935)",130330330-E19 -111800316,E25,11059547,Medical Incident,06/29/2011,06/29/2011,06/29/2011 08:53:53 PM,06/29/2011 08:54:40 PM,06/29/2011 08:55:04 PM,06/29/2011 08:56:28 PM,06/29/2011 08:58:13 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/29/2011 09:07:19 PM,600 Block of MENDELL ST,SF,94124,B10,25,6521,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7392640592313, -122.386060486785)",111800316-E25 -130850147,E05,13028345,Medical Incident,03/26/2013,03/26/2013,03/26/2013 11:04:05 AM,03/26/2013 11:10:44 AM,03/26/2013 11:11:21 AM,03/26/2013 11:12:09 AM,03/26/2013 11:14:56 AM,04/25/2016 01:53:38 PM,04/25/2016 01:53:38 PM,Other,03/26/2013 11:36:34 AM,700 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7841866909462, -122.418546199767)",130850147-E05 -103140053,E02,10100577,Medical Incident,11/10/2010,11/09/2010,11/10/2010 06:35:20 AM,11/10/2010 06:37:23 AM,11/10/2010 06:37:38 AM,11/10/2010 06:39:25 AM,11/10/2010 06:41:57 AM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/10/2010 06:53:45 AM,800 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,true,,1,ENGINE,2,1,3,Chinatown,"(37.7932824231879, -122.407341354171)",103140053-E02 -160660702,79,16026303,Medical Incident,03/06/2016,03/05/2016,03/06/2016 07:48:15 AM,03/06/2016 07:50:46 AM,03/06/2016 07:51:09 AM,03/06/2016 07:51:18 AM,03/06/2016 07:58:01 AM,03/06/2016 08:40:40 AM,03/06/2016 09:08:23 AM,Code 2 Transport,03/06/2016 10:07:43 AM,500 Block of CARTER ST,San Francisco,94134,B09,43,6245,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,10,Excelsior,"(37.7088149053233, -122.423624096969)",160660702-79 -111810307,E16,11059832,Medical Incident,06/30/2011,06/30/2011,06/30/2011 06:15:50 PM,06/30/2011 06:16:37 PM,06/30/2011 06:17:13 PM,06/30/2011 06:18:53 PM,06/30/2011 06:19:28 PM,04/25/2016 02:03:54 PM,04/25/2016 02:03:54 PM,Other,06/30/2011 06:37:06 PM,3300 Block of FILLMORE ST,SF,94123,B04,16,3554,3,3,3,true,,1,ENGINE,1,4,2,Marina,"(37.8003405635687, -122.436077390303)",111810307-E16 -160430951,KM05,16017215,Medical Incident,02/12/2016,02/12/2016,02/12/2016 09:23:19 AM,02/12/2016 09:24:36 AM,02/12/2016 09:24:57 AM,02/12/2016 09:25:21 AM,02/12/2016 09:30:31 AM,02/12/2016 09:51:00 AM,02/12/2016 10:19:13 AM,Code 2 Transport,02/12/2016 10:35:34 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160430951-KM05 -122780290,E10,12091999,Medical Incident,10/04/2012,10/04/2012,10/04/2012 05:51:33 PM,10/04/2012 05:52:57 PM,10/04/2012 05:53:29 PM,10/04/2012 05:54:53 PM,10/04/2012 05:56:26 PM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/04/2012 06:08:59 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",122780290-E10 -130870210,82,13029036,Medical Incident,03/28/2013,03/28/2013,03/28/2013 02:27:18 PM,03/28/2013 02:29:47 PM,03/28/2013 02:30:00 PM,03/28/2013 02:30:09 PM,03/28/2013 02:51:35 PM,03/28/2013 03:11:50 PM,03/28/2013 03:23:23 PM,Code 2 Transport,03/28/2013 03:37:04 PM,700 Block of HARRISON ST,SF,94107,B03,8,2216,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7813340573864, -122.399027495005)",130870210-82 -160430475,79,16017169,Medical Incident,02/12/2016,02/11/2016,02/12/2016 06:26:11 AM,02/12/2016 06:26:57 AM,02/12/2016 06:27:15 AM,02/12/2016 06:27:25 AM,02/12/2016 06:35:39 AM,02/12/2016 06:48:30 AM,02/12/2016 07:09:28 AM,Code 2 Transport,02/12/2016 07:31:36 AM,700 Block of WASHINGTON ST,San Francisco,94108,B01,13,1245,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.795117116509, -122.406249619336)",160430475-79 -122750420,KM04,12090943,Medical Incident,10/01/2012,10/01/2012,10/01/2012 10:10:24 PM,10/01/2012 10:11:13 PM,10/01/2012 10:11:44 PM,10/01/2012 10:12:35 PM,10/01/2012 10:18:41 PM,10/01/2012 10:27:28 PM,10/01/2012 10:39:46 PM,Code 2 Transport,10/01/2012 11:13:24 PM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",122750420-KM04 -132350189,66,13079312,Medical Incident,08/23/2013,08/23/2013,08/23/2013 12:45:21 PM,08/23/2013 12:46:32 PM,08/23/2013 12:46:46 PM,08/23/2013 12:47:46 PM,08/23/2013 12:53:17 PM,08/23/2013 01:11:40 PM,08/23/2013 01:21:21 PM,Code 2 Transport,08/23/2013 02:20:27 PM,0 Block of DRUMM ST,SF,94111,B01,13,1113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7941169057941, -122.396556426173)",132350189-66 -120820320,E32,12027340,Medical Incident,03/22/2012,03/22/2012,03/22/2012 07:17:30 PM,03/22/2012 07:20:20 PM,03/22/2012 07:20:39 PM,03/22/2012 07:22:03 PM,03/22/2012 07:34:40 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/22/2012 07:44:48 PM,800 Block of ELLSWORTH ST,SF,94110,B06,32,5643,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",120820320-E32 -160780696,52,16030927,Medical Incident,03/18/2016,03/17/2016,03/18/2016 07:31:59 AM,03/18/2016 07:33:13 AM,03/18/2016 07:33:48 AM,03/18/2016 07:33:58 AM,03/18/2016 07:40:34 AM,03/18/2016 08:04:24 AM,03/18/2016 08:28:27 AM,Code 2 Transport,03/18/2016 09:20:14 AM,500 Block of MARKET ST,San Francisco,94105,B03,13,2143,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.790069767129, -122.400173175725)",160780696-52 -160662134,61,16026436,Medical Incident,03/06/2016,03/06/2016,03/06/2016 03:57:14 PM,03/06/2016 03:58:05 PM,03/06/2016 03:59:01 PM,03/06/2016 03:59:10 PM,03/06/2016 04:03:03 PM,03/06/2016 04:13:45 PM,03/06/2016 04:33:59 PM,Code 2 Transport,03/06/2016 05:03:39 PM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",160662134-61 -160661690,65,16026402,Medical Incident,03/06/2016,03/06/2016,03/06/2016 01:48:24 PM,03/06/2016 01:50:13 PM,03/06/2016 01:51:20 PM,03/06/2016 01:52:02 PM,03/06/2016 01:59:25 PM,03/06/2016 02:25:00 PM,03/06/2016 03:03:36 PM,Code 2 Transport,03/06/2016 03:28:25 PM,300 Block of MANGELS AVE,San Francisco,94127,B09,15,8242,3,3,3,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7331372687276, -122.445461089298)",160661690-65 -110890107,E36,11029328,Medical Incident,03/30/2011,03/30/2011,03/30/2011 09:43:52 AM,03/30/2011 09:45:15 AM,03/30/2011 09:45:44 AM,03/30/2011 09:47:37 AM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,04/25/2016 02:05:22 PM,Other,03/30/2011 09:56:45 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",110890107-E36 -160252926,54,16010042,Medical Incident,01/25/2016,01/25/2016,01/25/2016 06:06:10 PM,01/25/2016 06:07:50 PM,01/25/2016 06:08:26 PM,01/25/2016 06:08:37 PM,01/25/2016 06:14:04 PM,01/25/2016 06:38:15 PM,01/25/2016 06:55:15 PM,Code 2 Transport,01/25/2016 07:29:21 PM,2200 Block of JUDAH ST,San Francisco,94122,B08,18,7513,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7612443851836, -122.486100308846)",160252926-54 -132940078,66,13099916,Medical Incident,10/21/2013,10/21/2013,10/21/2013 08:18:15 AM,10/21/2013 08:19:14 AM,10/21/2013 08:19:58 AM,10/21/2013 08:22:19 AM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,04/25/2016 01:50:09 PM,Other,10/21/2013 08:28:22 AM,1600 Block of HOLLOWAY AVE,SF,94132,B08,19,8871,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Lakeshore,"(37.7209451616295, -122.478278206332)",132940078-66 -160363889,85,16014456,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:38:58 PM,02/05/2016 09:38:58 PM,02/05/2016 09:39:29 PM,02/05/2016 09:39:41 PM,02/05/2016 09:44:20 PM,02/05/2016 09:54:55 PM,02/05/2016 09:57:52 PM,Code 2 Transport,02/05/2016 10:47:06 PM,DIVISADERO ST/HAYES ST,San Francisco,94117,B05,21,4145,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Hayes Valley,"(37.7749919470007, -122.437798745964)",160363889-85 -103360014,B08,10107357,Alarms,12/02/2010,12/01/2010,12/02/2010 12:56:26 AM,12/02/2010 12:57:17 AM,12/02/2010 12:57:25 AM,12/02/2010 12:59:36 AM,12/02/2010 01:04:53 AM,04/25/2016 02:07:20 PM,04/25/2016 02:07:20 PM,Other,12/02/2010 01:06:53 AM,200 Block of BUCKINGHAM WAY,SF,94132,B08,19,8853,3,3,3,false,,1,CHIEF,3,8,7,Lakeshore,"(37.7258410889904, -122.478865104179)",103360014-B08 -130360038,E22,13012251,Structure Fire,02/05/2013,02/04/2013,02/05/2013 04:08:03 AM,02/05/2013 04:08:03 AM,02/05/2013 04:08:19 AM,02/05/2013 04:09:20 AM,02/05/2013 04:11:41 AM,04/25/2016 01:54:27 PM,04/25/2016 01:54:27 PM,Fire,02/05/2013 04:12:30 AM,21ST AV/JUDAH ST,SF,94122,B08,22,7426,3,3,3,false,Alarm,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7616059153788, -122.479136159549)",130360038-E22 -131930278,E02,13065735,Structure Fire,07/12/2013,07/12/2013,07/12/2013 06:33:42 PM,07/12/2013 06:35:23 PM,07/12/2013 06:36:25 PM,07/12/2013 06:37:35 PM,07/12/2013 06:38:51 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 06:43:37 PM,500 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,Alarm,1,ENGINE,1,1,3,North Beach,"(37.80526026245, -122.416053831859)",131930278-E02 -113400396,KM01,11112872,Medical Incident,12/06/2011,12/06/2011,12/06/2011 09:52:33 PM,12/06/2011 09:52:55 PM,12/06/2011 09:53:32 PM,12/06/2011 09:54:22 PM,12/06/2011 09:59:21 PM,12/06/2011 10:14:26 PM,12/06/2011 10:23:27 PM,Code 2 Transport,12/06/2011 11:05:46 PM,100 Block of CENTRAL AVE,SF,94117,B05,21,4355,3,3,3,false,,1,PRIVATE,2,5,5,Haight Ashbury,"(37.7708835966401, -122.443810948891)",113400396-KM01 -160763578,66,16030323,Medical Incident,03/16/2016,03/16/2016,03/16/2016 07:52:25 PM,03/16/2016 07:52:42 PM,03/16/2016 07:53:15 PM,03/16/2016 07:57:08 PM,03/16/2016 08:01:23 PM,03/16/2016 08:09:56 PM,03/16/2016 08:49:04 PM,Code 2 Transport,03/16/2016 09:15:26 PM,2200 Block of JERROLD AVE,San Francisco,94124,B10,9,6411,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7454233547174, -122.401209234394)",160763578-66 -111780391,E21,11058947,Medical Incident,06/27/2011,06/27/2011,06/27/2011 11:10:49 PM,06/27/2011 11:12:09 PM,06/27/2011 11:12:35 PM,06/27/2011 11:14:15 PM,06/27/2011 11:16:31 PM,04/25/2016 02:03:56 PM,04/25/2016 02:03:56 PM,Other,06/27/2011 11:17:45 PM,1600 Block of FULTON ST,SF,94117,B05,21,4346,3,3,3,false,,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7760670800915, -122.443945228823)",111780391-E21 -121720089,E01,12057033,Medical Incident,06/20/2012,06/20/2012,06/20/2012 08:51:16 AM,06/20/2012 08:52:48 AM,06/20/2012 08:53:09 AM,06/20/2012 08:55:43 AM,06/20/2012 09:01:43 AM,04/25/2016 01:58:07 PM,04/25/2016 01:58:07 PM,Other,06/20/2012 09:13:25 AM,STOCKTON ST/OFARRELL ST,SF,94108,B01,1,1321,2,2,2,true,Non Life-threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7866153472398, -122.406398878903)",121720089-E01 -160461662,KM08,16018510,Medical Incident,02/15/2016,02/15/2016,02/15/2016 12:59:45 PM,02/15/2016 01:02:56 PM,02/15/2016 01:04:03 PM,02/15/2016 01:04:33 PM,02/15/2016 01:14:36 PM,02/15/2016 01:38:37 PM,02/15/2016 02:07:39 PM,Code 2 Transport,02/15/2016 02:15:30 PM,1300 Block of 20TH AVE,San Francisco,94122,B08,22,7424,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7625809452391, -122.478195483155)",160461662-KM08 -102540339,RA48,10080423,Medical Incident,09/11/2010,09/11/2010,09/11/2010 08:15:59 PM,09/11/2010 08:17:56 PM,09/11/2010 08:18:15 PM,09/11/2010 08:20:14 PM,09/11/2010 08:21:51 PM,04/25/2016 02:08:38 PM,04/25/2016 02:08:38 PM,Other,09/11/2010 08:48:40 PM,1200 Block of NORTHPOINT DR,TI,94130,B03,48,2931,3,3,3,false,,1,MEDIC,2,None,6,Treasure Island,"(37.8316662305962, -122.373286136201)",102540339-RA48 -131810414,75,13061774,Traffic Collision,06/30/2013,06/30/2013,06/30/2013 07:57:40 PM,06/30/2013 07:58:54 PM,06/30/2013 08:04:54 PM,06/30/2013 08:05:05 PM,06/30/2013 08:16:22 PM,04/25/2016 01:52:01 PM,04/25/2016 01:52:01 PM,Other,06/30/2013 08:16:48 PM,MAYFAIR DR/IRIS AV,SF,94118,B05,10,4374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,6,5,2,Presidio Heights,"(37.7858717035436, -122.452069954299)",131810414-75 -113440288,66,11114216,Medical Incident,12/10/2011,12/10/2011,12/10/2011 07:13:46 PM,12/10/2011 07:15:13 PM,12/10/2011 07:15:54 PM,12/10/2011 07:16:05 PM,12/10/2011 07:26:33 PM,12/10/2011 07:36:47 PM,12/10/2011 08:08:06 PM,Code 2 Transport,12/10/2011 08:47:56 PM,0 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7107672954351, -122.417678812123)",113440288-66 -140510260,E17,14017328,Medical Incident,02/20/2014,02/20/2014,02/20/2014 03:00:09 PM,02/20/2014 03:01:44 PM,02/20/2014 03:03:02 PM,02/20/2014 03:04:54 PM,02/20/2014 03:07:20 PM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Code 2 Transport,02/20/2014 03:19:58 PM,2400 Block of KEITH ST,SF,94124,B10,17,6546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,10,10,Bayview Hunters Point,"(37.725881170284, -122.392457448025)",140510260-E17 -160202931,57,16008098,Medical Incident,01/20/2016,01/20/2016,01/20/2016 05:37:10 PM,01/20/2016 05:38:41 PM,01/20/2016 05:38:58 PM,01/20/2016 05:39:04 PM,01/20/2016 06:08:15 PM,01/20/2016 06:08:17 PM,01/20/2016 06:12:04 PM,Code 2 Transport,01/20/2016 06:40:11 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160202931-57 -133140140,E07,13106717,Medical Incident,11/10/2013,11/10/2013,11/10/2013 10:56:04 AM,11/10/2013 10:57:07 AM,11/10/2013 10:57:55 AM,11/10/2013 10:58:18 AM,11/10/2013 11:01:17 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Other,11/10/2013 11:07:43 AM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,2,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,9,Mission,"(37.7677331022924, -122.415606951318)",133140140-E07 -133230238,KM04,13109681,Medical Incident,11/19/2013,11/19/2013,11/19/2013 02:05:28 PM,11/19/2013 02:08:19 PM,11/19/2013 02:15:19 PM,11/19/2013 02:16:18 PM,11/19/2013 02:33:52 PM,11/19/2013 02:50:11 PM,11/19/2013 03:02:26 PM,Code 2 Transport,11/19/2013 03:31:06 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",133230238-KM04 -103030052,T01,10096693,Structure Fire,10/30/2010,10/29/2010,10/30/2010 02:49:06 AM,10/30/2010 02:49:06 AM,10/30/2010 02:49:21 AM,10/30/2010 02:51:24 AM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 02:53:38 AM,8TH ST/MISSION ST,SF,94103,B02,1,2318,3,3,3,false,,1,TRUCK,2,2,6,South of Market,"(37.7774574199485, -122.413157691577)",103030052-T01 -111380286,T01,11045966,Alarms,05/18/2011,05/18/2011,05/18/2011 06:06:39 PM,05/18/2011 06:07:44 PM,05/18/2011 06:08:12 PM,05/18/2011 06:10:41 PM,05/18/2011 06:12:07 PM,04/25/2016 02:04:34 PM,04/25/2016 02:04:34 PM,Other,05/18/2011 06:15:23 PM,0 Block of 5TH ST,SF,94103,B03,1,2246,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7829835080746, -122.406698577014)",111380286-T01 -160892702,KM13,16035411,Medical Incident,03/29/2016,03/29/2016,03/29/2016 04:45:57 PM,03/29/2016 04:48:02 PM,03/29/2016 04:48:29 PM,03/29/2016 04:49:13 PM,03/29/2016 05:01:10 PM,03/29/2016 05:16:02 PM,03/29/2016 05:28:41 PM,Code 2 Transport,03/29/2016 05:53:04 PM,9TH AV/IRVING ST,San Francisco,94122,B08,22,7333,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,3,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",160892702-KM13 -132220370,T03,13075122,Structure Fire,08/10/2013,08/10/2013,08/10/2013 09:36:31 PM,08/10/2013 09:36:32 PM,08/10/2013 09:36:42 PM,08/10/2013 09:37:39 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,04/25/2016 01:51:22 PM,Other,08/10/2013 09:41:00 PM,JONES ST/ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7848662437379, -122.412782128267)",132220370-T03 -160352407,AM08,16013875,Medical Incident,02/04/2016,02/04/2016,02/04/2016 03:31:17 PM,02/04/2016 03:32:06 PM,02/04/2016 03:32:26 PM,02/04/2016 03:33:04 PM,02/04/2016 03:38:36 PM,02/04/2016 03:52:04 PM,02/04/2016 04:09:17 PM,Code 2 Transport,02/04/2016 04:44:51 PM,100 Block of MASON ST,San Francisco,94102,B03,1,1366,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",160352407-AM08 -110030086,E17,11000900,Medical Incident,01/03/2011,01/03/2011,01/03/2011 09:19:13 AM,01/03/2011 09:20:10 AM,01/03/2011 09:20:22 AM,01/03/2011 09:22:48 AM,01/03/2011 09:24:41 AM,04/25/2016 02:06:47 PM,04/25/2016 02:06:47 PM,Other,01/03/2011 09:36:05 AM,0 Block of MATTHEW CT,SF,94124,B10,17,6641,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7312962281442, -122.380133847121)",110030086-E17 -160383576,62,16015407,Medical Incident,02/07/2016,02/07/2016,02/07/2016 10:19:04 PM,02/07/2016 10:21:34 PM,02/07/2016 10:21:52 PM,02/07/2016 10:22:42 PM,02/07/2016 10:42:15 PM,02/07/2016 10:53:01 PM,02/07/2016 11:00:14 PM,Code 2 Transport,02/07/2016 11:34:58 PM,400 Block of SILVER AVE,San Francisco,94112,B09,32,6113,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7284848824705, -122.428435902127)",160383576-62 -131190089,E03,13039963,Medical Incident,04/29/2013,04/28/2013,04/29/2013 07:20:05 AM,04/29/2013 07:21:50 AM,04/29/2013 07:22:54 AM,04/29/2013 07:24:50 AM,04/29/2013 07:31:44 AM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/29/2013 07:39:34 AM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",131190089-E03 -111060189,E01,11035084,Medical Incident,04/16/2011,04/16/2011,04/16/2011 02:00:21 PM,04/16/2011 02:01:21 PM,04/16/2011 02:01:56 PM,04/16/2011 02:03:54 PM,04/16/2011 02:06:58 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/16/2011 02:07:37 PM,SUTTER ST/JONES ST,SF,94109,B01,3,1463,3,3,3,true,,1,ENGINE,3,1,3,Nob Hill,"(37.7885982027896, -122.413541442382)",111060189-E01 -110850397,AM10,11028220,Medical Incident,03/26/2011,03/26/2011,03/26/2011 11:58:06 PM,03/26/2011 11:59:31 PM,03/27/2011 12:00:24 AM,03/27/2011 12:00:53 AM,03/27/2011 12:13:06 AM,03/27/2011 12:28:04 AM,03/27/2011 12:46:33 AM,Code 2 Transport,03/27/2011 01:11:14 AM,5700 Block of MISSION ST,SF,94112,B09,33,6212,1,1,2,false,,1,PRIVATE,1,9,11,Outer Mission,"(37.7098635927288, -122.449729173956)",110850397-AM10 -133230416,E18,13109834,Medical Incident,11/19/2013,11/19/2013,11/19/2013 10:26:17 PM,11/19/2013 10:29:11 PM,11/19/2013 10:30:12 PM,11/19/2013 10:31:11 PM,11/19/2013 10:35:18 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Other,11/19/2013 10:40:36 PM,1300 Block of 37TH AVE,SF,94122,B08,23,7571,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7617778269302, -122.496418264934)",133230416-E18 -160863829,KM07,16034383,Medical Incident,03/26/2016,03/26/2016,03/26/2016 10:41:21 PM,03/26/2016 10:42:06 PM,03/26/2016 10:43:01 PM,03/26/2016 10:44:17 PM,03/26/2016 10:59:01 PM,03/26/2016 11:08:17 PM,03/26/2016 11:28:00 PM,Code 2 Transport,03/26/2016 11:52:00 PM,300 Block of UNIVERSITY ST,San Francisco,94134,B09,42,6345,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,9,Portola,"(37.7257685961984, -122.413836028914)",160863829-KM07 -130210097,E21,13007190,Medical Incident,01/21/2013,01/21/2013,01/21/2013 09:03:05 AM,01/21/2013 09:04:20 AM,01/21/2013 09:04:43 AM,01/21/2013 09:06:35 AM,01/21/2013 09:10:08 AM,04/25/2016 01:54:41 PM,04/25/2016 01:54:41 PM,Other,01/21/2013 09:30:02 AM,2200 Block of TURK BLVD,SF,94115,B05,21,4363,3,2,2,true,Non Life-threatening,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7788473226523, -122.445701681014)",130210097-E21 -121620280,E13,12053711,Structure Fire,06/10/2012,06/10/2012,06/10/2012 04:23:52 PM,06/10/2012 04:23:52 PM,06/10/2012 04:24:07 PM,04/25/2016 01:58:16 PM,06/10/2012 04:25:04 PM,04/25/2016 01:58:16 PM,04/25/2016 01:58:16 PM,Other,06/10/2012 04:25:21 PM,0 Block of MONTGOMERY ST,SF,94104,B01,13,1236,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7895620432155, -122.402161869829)",121620280-E13 -111950335,E10,11064505,Structure Fire,07/14/2011,07/14/2011,07/14/2011 07:55:16 PM,07/14/2011 07:55:17 PM,07/14/2011 07:56:00 PM,07/14/2011 07:57:11 PM,07/14/2011 07:59:57 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Fire,07/14/2011 08:11:21 PM,3700 Block of CALIFORNIA ST,SF,94118,B07,10,449,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.786210973675, -122.455468425157)",111950335-E10 -120540199,E08,12017839,Medical Incident,02/23/2012,02/23/2012,02/23/2012 02:03:14 PM,02/23/2012 02:04:40 PM,02/23/2012 02:10:29 PM,02/23/2012 02:11:38 PM,02/23/2012 02:13:48 PM,04/25/2016 02:00:00 PM,04/25/2016 02:00:00 PM,Other,02/23/2012 02:14:58 PM,700 Block of BRANNAN ST,SF,94103,B03,8,2276,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,6,South of Market,"(37.7732232142847, -122.402889298062)",120540199-E08 -160721456,KM12,16028577,Medical Incident,03/12/2016,03/12/2016,03/12/2016 12:13:30 PM,03/12/2016 12:14:13 PM,03/12/2016 12:15:01 PM,03/12/2016 12:16:07 PM,03/12/2016 12:18:27 PM,03/12/2016 12:41:16 PM,03/12/2016 01:05:11 PM,Code 2 Transport,03/12/2016 01:37:37 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",160721456-KM12 -111670184,E36,11055131,Medical Incident,06/16/2011,06/16/2011,06/16/2011 03:34:11 PM,06/16/2011 03:35:02 PM,06/16/2011 03:35:17 PM,06/16/2011 03:36:48 PM,06/16/2011 03:37:56 PM,04/25/2016 02:04:08 PM,04/25/2016 02:04:08 PM,Other,06/16/2011 03:44:03 PM,0 Block of DR CARLTON B GOODLETT PL,SF,94102,B02,36,381,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7793825808027, -122.418484372284)",111670184-E36 -130810211,72,13027135,Structure Fire,03/22/2013,03/22/2013,03/22/2013 02:28:14 PM,03/22/2013 02:29:09 PM,03/22/2013 02:30:37 PM,03/22/2013 02:30:43 PM,03/22/2013 02:39:55 PM,04/25/2016 01:53:42 PM,04/25/2016 01:53:42 PM,Other,03/22/2013 02:49:43 PM,2000 Block of CHESTNUT ST,SF,94123,B04,16,3554,3,3,3,true,Fire,1,MEDIC,12,4,2,Marina,"(37.8006947037442, -122.436775838314)",130810211-72 -103200039,T03,10102454,Alarms,11/16/2010,11/15/2010,11/16/2010 03:03:16 AM,11/16/2010 03:05:09 AM,11/16/2010 03:05:53 AM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,04/25/2016 02:07:34 PM,Other,11/16/2010 03:07:40 AM,0 Block of CYRIL MAGNIN ST,SF,94102,B03,1,1366,3,3,3,false,,1,TRUCK,4,3,3,Tenderloin,"(37.7849124714135, -122.408648588965)",103200039-T03 -123030381,E08,12100670,Medical Incident,10/29/2012,10/29/2012,10/29/2012 06:55:06 PM,10/29/2012 06:57:24 PM,10/29/2012 06:57:32 PM,10/29/2012 06:58:48 PM,10/29/2012 07:01:42 PM,04/25/2016 01:56:03 PM,04/25/2016 01:56:03 PM,Other,10/29/2012 07:24:04 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",123030381-E08 -130080084,E03,13002659,Citizen Assist / Service Call,01/08/2013,01/08/2013,01/08/2013 08:04:40 AM,01/08/2013 08:04:40 AM,01/08/2013 08:04:40 AM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,04/25/2016 01:54:55 PM,Fire,01/08/2013 08:14:22 AM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",130080084-E03 -122600107,T17,12085875,Structure Fire,09/16/2012,09/16/2012,09/16/2012 09:29:58 AM,09/16/2012 09:29:58 AM,09/16/2012 09:30:10 AM,09/16/2012 09:31:27 AM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,04/25/2016 01:56:45 PM,Other,09/16/2012 09:34:45 AM,BLANKEN AV/NUEVA AV,SF,94134,B10,44,6273,3,3,3,false,Alarm,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.7111993962148, -122.397343720513)",122600107-T17 -160573905,55,16022932,Medical Incident,02/26/2016,02/26/2016,02/26/2016 11:39:47 PM,02/26/2016 11:41:34 PM,02/26/2016 11:42:06 PM,02/26/2016 11:42:24 PM,02/26/2016 11:51:44 PM,02/27/2016 12:13:04 AM,02/27/2016 12:16:28 AM,Code 2 Transport,02/27/2016 12:45:54 AM,4200 Block of 24TH ST,San Francisco,94114,B06,24,5521,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7511432503724, -122.437391428378)",160573905-55 -160540774,55,16021493,Medical Incident,02/23/2016,02/23/2016,02/23/2016 08:39:51 AM,02/23/2016 08:40:40 AM,02/23/2016 08:41:01 AM,02/23/2016 08:41:12 AM,02/23/2016 08:58:22 AM,02/23/2016 09:13:12 AM,02/23/2016 09:23:48 AM,Code 2 Transport,02/23/2016 10:00:02 AM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",160540774-55 -131830282,96,13062437,Medical Incident,07/02/2013,07/02/2013,07/02/2013 05:40:18 PM,07/02/2013 05:42:30 PM,07/02/2013 05:42:47 PM,07/02/2013 05:43:15 PM,07/02/2013 05:52:12 PM,07/02/2013 06:09:52 PM,07/02/2013 06:17:57 PM,Code 2 Transport,07/02/2013 06:55:12 PM,3400 Block of CALIFORNIA ST,SF,94118,B07,10,4431,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",131830282-96 -160250108,60,16009748,Medical Incident,01/25/2016,01/24/2016,01/25/2016 12:52:55 AM,01/25/2016 12:55:15 AM,01/25/2016 12:55:37 AM,01/25/2016 12:55:52 AM,01/25/2016 01:01:11 AM,01/25/2016 01:30:18 AM,01/25/2016 01:45:30 AM,Code 2 Transport,01/25/2016 02:30:22 AM,200 Block of STONECREST DR,San Francisco,94132,B08,19,8725,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7257458502025, -122.474261031081)",160250108-60 -160771995,56,16030602,Medical Incident,03/17/2016,03/17/2016,03/17/2016 01:19:24 PM,03/17/2016 01:23:07 PM,03/17/2016 01:48:59 PM,03/17/2016 01:49:01 PM,03/17/2016 02:03:45 PM,03/17/2016 02:12:04 PM,03/17/2016 02:33:33 PM,Code 2 Transport,03/17/2016 03:11:19 PM,600 Block of EDDY ST,San Francisco,94102,B02,3,1643,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7831519077536, -122.418344327593)",160771995-56 -120690415,RS1,12023096,Medical Incident,03/09/2012,03/09/2012,03/09/2012 11:32:13 PM,03/09/2012 11:34:44 PM,03/09/2012 11:35:35 PM,03/09/2012 11:36:48 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,04/25/2016 01:59:45 PM,Other,03/09/2012 11:37:19 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,3,3,6,South of Market,"(37.7776242389287, -122.39998111124)",120690415-RS1 -112670250,T15,11088280,Citizen Assist / Service Call,09/24/2011,09/24/2011,09/24/2011 03:58:29 PM,09/24/2011 04:00:39 PM,09/24/2011 04:00:55 PM,09/24/2011 04:03:03 PM,09/24/2011 04:09:14 PM,04/25/2016 02:02:30 PM,04/25/2016 02:02:30 PM,Fire,09/24/2011 04:18:24 PM,400 Block of ROLPH ST,SF,94112,B09,43,6226,3,3,3,false,,1,TRUCK,1,9,11,Excelsior,"(37.7122411987932, -122.433864119271)",112670250-T15 -160071248,71,16002787,Medical Incident,01/07/2016,01/07/2016,01/07/2016 10:41:43 AM,01/07/2016 10:43:14 AM,01/07/2016 10:45:00 AM,01/07/2016 10:47:55 AM,01/07/2016 10:50:48 AM,01/07/2016 11:03:54 AM,01/07/2016 11:24:30 AM,Code 2 Transport,01/07/2016 11:49:07 AM,900 Block of POLK ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.785672286426, -122.419620657238)",160071248-71 -121650032,E14,12054604,Medical Incident,06/13/2012,06/12/2012,06/13/2012 03:31:54 AM,06/13/2012 03:32:49 AM,06/13/2012 03:32:59 AM,06/13/2012 03:34:25 AM,06/13/2012 03:37:44 AM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/13/2012 03:50:57 AM,3100 Block of CABRILLO ST,SF,94121,B07,14,7242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7741241104031, -122.49236726249)",121650032-E14 -160442387,61,16017765,Medical Incident,02/13/2016,02/13/2016,02/13/2016 04:32:16 PM,02/13/2016 04:33:45 PM,02/13/2016 05:18:40 PM,02/13/2016 05:18:43 PM,02/13/2016 05:31:52 PM,02/13/2016 05:52:11 PM,02/13/2016 06:03:20 PM,Code 2 Transport,02/13/2016 06:32:49 PM,0 Block of FRANKLIN ST,San Francisco,94102,B02,36,3212,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",160442387-61 -160862682,53,16034260,Medical Incident,03/26/2016,03/26/2016,03/26/2016 05:13:51 PM,03/26/2016 05:16:29 PM,03/26/2016 05:18:00 PM,03/26/2016 05:18:08 PM,03/26/2016 05:22:53 PM,03/26/2016 05:53:25 PM,03/26/2016 06:24:12 PM,Code 2 Transport,03/26/2016 06:48:38 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7820387146172, -122.40232147638)",160862682-53 -103460300,E14,10111050,Water Rescue,12/12/2010,12/12/2010,12/12/2010 06:00:25 PM,12/12/2010 06:02:11 PM,12/12/2010 06:02:57 PM,12/12/2010 06:04:08 PM,12/12/2010 06:13:04 PM,04/25/2016 02:07:09 PM,04/25/2016 02:07:09 PM,Other,12/12/2010 06:33:34 PM,GREAT HY/TARAVAL ST,SF,94116,B08,23,7731,3,3,3,true,,1,ENGINE,9,8,4,Sunset/Parkside,"(37.7416730182637, -122.506865451052)",103460300-E14 -122960341,T05,12098290,Medical Incident,10/22/2012,10/22/2012,10/22/2012 08:41:08 PM,10/22/2012 08:41:50 PM,10/22/2012 08:42:01 PM,10/22/2012 08:43:04 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,04/25/2016 01:56:10 PM,Other,10/22/2012 08:43:10 PM,2000 Block of POST ST,SF,94115,B04,5,3622,3,3,3,true,Potentially Life-Threatening,1,TRUCK,3,4,5,Japantown,"(37.7848942765225, -122.435560105122)",122960341-T05 -132930273,T01,13099795,Structure Fire,10/20/2013,10/20/2013,10/20/2013 07:07:14 PM,10/20/2013 07:07:14 PM,10/20/2013 07:07:34 PM,10/20/2013 07:09:22 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/20/2013 07:12:05 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",132930273-T01 -113610046,T13,11119841,HazMat,12/27/2011,12/26/2011,12/27/2011 05:58:00 AM,12/27/2011 06:09:16 AM,12/27/2011 06:13:25 AM,12/27/2011 06:15:31 AM,12/27/2011 06:19:00 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 07:18:07 AM,500 Block of CALIFORNIA ST,SF,94104,B01,13,1234,3,3,3,false,,1,TRUCK,1,1,3,Financial District/South Beach,"(37.7927299343809, -122.40328650281)",113610046-T13 -112850348,E19,11094518,Medical Incident,10/12/2011,10/12/2011,10/12/2011 06:56:34 PM,10/12/2011 06:57:41 PM,10/12/2011 06:57:50 PM,10/12/2011 06:59:09 PM,10/12/2011 07:04:08 PM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 07:22:50 PM,500 Block of JOHN MUIR DR,SF,94132,B08,19,8714,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",112850348-E19 -160780483,85,16030902,Medical Incident,03/18/2016,03/17/2016,03/18/2016 04:37:38 AM,03/18/2016 04:38:34 AM,03/18/2016 04:41:09 AM,03/18/2016 04:41:20 AM,03/18/2016 04:57:39 AM,03/18/2016 05:07:24 AM,03/18/2016 05:20:47 AM,Code 2 Transport,03/18/2016 05:35:38 AM,100 Block of QUINTARA ST,San Francisco,94116,B08,40,7341,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7489965172611, -122.466853065424)",160780483-85 -131710105,E08,13057988,Medical Incident,06/20/2013,06/20/2013,06/20/2013 09:19:01 AM,06/20/2013 09:21:03 AM,06/20/2013 09:22:17 AM,06/20/2013 09:23:58 AM,06/20/2013 09:30:43 AM,04/25/2016 01:52:12 PM,04/25/2016 01:52:12 PM,Other,06/20/2013 09:47:20 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7816150265786, -122.40942036456)",131710105-E08 -160521995,55,16020847,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:43:58 PM,02/21/2016 02:45:36 PM,02/21/2016 02:45:53 PM,02/21/2016 02:46:07 PM,02/21/2016 03:01:04 PM,02/21/2016 04:02:07 PM,02/21/2016 04:02:12 PM,Code 2 Transport,02/21/2016 04:34:46 PM,0 Block of MARSTON AVE,San Francisco,94112,B09,15,8226,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7274123424876, -122.44593049272)",160521995-55 -113610020,B01,11119816,Alarms,12/27/2011,12/26/2011,12/27/2011 02:37:05 AM,12/27/2011 02:38:07 AM,12/27/2011 02:38:17 AM,12/27/2011 02:40:38 AM,12/27/2011 02:42:44 AM,04/25/2016 02:00:56 PM,04/25/2016 02:00:56 PM,Other,12/27/2011 02:54:29 AM,900 Block of GRANT AVE,SF,94108,B01,2,1312,3,3,3,false,,1,CHIEF,3,1,3,Chinatown,"(37.7955759617339, -122.406632308192)",113610020-B01 -140940329,E07,14031725,Medical Incident,04/04/2014,04/04/2014,04/04/2014 07:47:32 PM,04/04/2014 07:47:57 PM,04/04/2014 07:50:42 PM,04/04/2014 07:50:42 PM,04/04/2014 07:51:56 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Code 2 Transport,04/04/2014 08:20:35 PM,2200 Block of MISSION ST,SAN FRANCISCO,94110,B02,7,5423,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7610314429831, -122.419351642615)",140940329-E07 -121760195,AM04,12058505,Medical Incident,06/24/2012,06/24/2012,06/24/2012 12:17:05 PM,06/24/2012 12:18:33 PM,06/24/2012 12:19:02 PM,06/24/2012 12:29:45 PM,06/24/2012 12:50:02 PM,04/25/2016 01:58:03 PM,04/25/2016 01:58:03 PM,Patient Declined Transport,06/24/2012 01:14:30 PM,SACRAMENTO ST/DRUMM ST,SF,94111,B01,13,1115,2,2,2,false,Non Life-threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.7945882147944, -122.396585912894)",121760195-AM04 -103260162,KM05,10104466,Traffic Collision,11/22/2010,11/22/2010,11/22/2010 12:52:29 PM,11/22/2010 12:52:37 PM,11/22/2010 12:53:20 PM,11/22/2010 12:53:59 PM,11/22/2010 12:58:26 PM,04/25/2016 02:07:28 PM,04/25/2016 02:07:28 PM,Patient Declined Transport,11/22/2010 01:09:31 PM,19TH AV/WAWONA ST,SF,94132,B08,40,7414,2,2,2,false,,1,PRIVATE,2,8,7,West of Twin Peaks,"(37.7374547435254, -122.475288554879)",103260162-KM05 -120090301,E28,12003203,Structure Fire,01/09/2012,01/09/2012,01/09/2012 04:29:43 PM,01/09/2012 04:31:01 PM,01/09/2012 04:31:42 PM,01/09/2012 04:32:36 PM,01/09/2012 04:34:25 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/09/2012 05:30:22 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,false,Fire,1,ENGINE,2,1,3,North Beach,"(37.8069201392161, -122.407170160416)",120090301-E28 -110930140,RS2,11030834,Structure Fire,04/03/2011,04/03/2011,04/03/2011 10:46:32 AM,04/03/2011 10:46:50 AM,04/03/2011 10:47:11 AM,04/03/2011 10:47:48 AM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,04/25/2016 02:05:18 PM,Other,04/03/2011 10:53:19 AM,100 Block of COLE ST,SF,94117,B05,21,4535,3,3,3,false,,1,RESCUE SQUAD,8,5,5,Lone Mountain/USF,"(37.7737909326807, -122.451000209321)",110930140-RS2 -113270188,B09,11108566,Alarms,11/23/2011,11/23/2011,11/23/2011 01:40:50 PM,11/23/2011 01:41:41 PM,11/23/2011 01:42:15 PM,11/23/2011 01:44:00 PM,11/23/2011 01:47:26 PM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 01:49:47 PM,1800 Block of GENEVA AVE,SF,94134,B09,43,6245,3,3,3,false,,1,CHIEF,2,9,11,Excelsior,"(37.7095604503815, -122.424095747426)",113270188-B09 -121020184,KM05,12033820,Medical Incident,04/11/2012,04/11/2012,04/11/2012 01:25:29 PM,04/11/2012 01:26:54 PM,04/11/2012 01:27:30 PM,04/11/2012 01:28:01 PM,04/11/2012 01:36:01 PM,04/25/2016 01:59:13 PM,04/25/2016 01:59:13 PM,Patient Declined Transport,04/11/2012 01:57:11 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",121020184-KM05 -112150336,86,11071109,,08/03/2011,08/03/2011,08/03/2011 07:34:00 PM,08/03/2011 07:35:00 PM,08/03/2011 07:35:00 PM,08/03/2011 07:54:00 PM,08/03/2011 07:56:00 PM,04/25/2016 02:03:00 PM,04/25/2016 02:03:00 PM,SFPD,08/03/2011 08:07:00 PM,300 Block of BEALE ST,SF,94105,B03,35,2122,3,3,3,true,,1,MEDIC,4,3,6,Financial District/South Beach,"(37.7880321954757, -122.392000314933)",112150336-86 -110690200,RC1,11022708,Medical Incident,03/10/2011,03/10/2011,03/10/2011 01:41:13 PM,03/10/2011 01:41:56 PM,03/10/2011 01:42:13 PM,03/10/2011 01:44:02 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,04/25/2016 02:05:42 PM,Other,03/10/2011 01:46:47 PM,100 Block of 4TH ST,SF,94103,B03,1,2213,3,2,2,true,,1,RESCUE CAPTAIN,3,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",110690200-RC1 -122060204,E15,12068502,Medical Incident,07/24/2012,07/24/2012,07/24/2012 01:50:11 PM,07/24/2012 01:50:42 PM,07/24/2012 01:51:18 PM,07/24/2012 01:52:10 PM,07/24/2012 01:55:40 PM,04/25/2016 01:57:34 PM,04/25/2016 01:57:34 PM,Other,07/24/2012 02:11:17 PM,200 Block of CORDOVA ST,SF,94112,B09,43,6225,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Excelsior,"(37.711260086576, -122.435342741202)",122060204-E15 -132090135,AP,13070645,Other,07/28/2013,07/28/2013,07/28/2013 10:21:49 AM,07/28/2013 10:21:49 AM,07/28/2013 10:21:49 AM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,04/25/2016 01:51:35 PM,Fire,07/28/2013 10:22:39 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,Alarm,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",132090135-AP -160151126,AM06,16005921,Medical Incident,01/15/2016,01/15/2016,01/15/2016 10:05:33 AM,01/15/2016 10:06:04 AM,01/15/2016 10:06:52 AM,01/15/2016 10:07:22 AM,01/15/2016 10:19:36 AM,01/15/2016 10:35:06 AM,01/15/2016 10:48:19 AM,Code 2 Transport,01/15/2016 11:25:52 AM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160151126-AM06 -160102347,89,16004105,Medical Incident,01/10/2016,01/10/2016,01/10/2016 04:27:27 PM,01/10/2016 04:28:52 PM,01/10/2016 04:29:51 PM,01/10/2016 04:32:02 PM,01/10/2016 04:45:29 PM,01/10/2016 04:56:58 PM,01/10/2016 05:13:06 PM,Code 2 Transport,01/10/2016 05:31:32 PM,100 Block of 2ND ST,San Francisco,94105,B03,1,2146,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7874298723673, -122.398972966106)",160102347-89 -160190532,89,16007494,Medical Incident,01/19/2016,01/18/2016,01/19/2016 06:44:11 AM,01/19/2016 06:46:46 AM,01/19/2016 06:47:02 AM,01/19/2016 06:48:00 AM,01/19/2016 06:54:00 AM,01/19/2016 07:04:38 AM,01/19/2016 07:24:14 AM,Code 2 Transport,01/19/2016 07:45:39 AM,200 Block of 6TH ST,San Francisco,94103,B03,1,2253,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7786852295711, -122.405938165868)",160190532-89 -132310362,E11,13078152,Structure Fire,08/19/2013,08/19/2013,08/19/2013 07:39:39 PM,08/19/2013 07:39:40 PM,08/19/2013 07:40:06 PM,08/19/2013 07:41:29 PM,08/19/2013 07:44:07 PM,04/25/2016 01:51:13 PM,04/25/2016 01:51:13 PM,Other,08/19/2013 07:51:56 PM,800 Block of SHOTWELL ST,SF,94110,B06,7,544,3,3,3,true,Alarm,1,ENGINE,2,6,9,Mission,"(37.7548379824748, -122.415327726268)",132310362-E11 -121540163,KM01,12050960,Medical Incident,06/02/2012,06/02/2012,06/02/2012 12:12:04 PM,06/02/2012 12:13:06 PM,06/02/2012 12:13:22 PM,06/02/2012 12:14:02 PM,06/02/2012 12:18:05 PM,06/02/2012 12:38:41 PM,06/02/2012 12:45:22 PM,Code 3 Transport,06/02/2012 01:57:51 PM,2200 Block of 20TH AVE,SF,94116,B08,40,7433,E,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7457979821826, -122.477028812348)",121540163-KM01 -160501301,71,16020046,Medical Incident,02/19/2016,02/19/2016,02/19/2016 11:10:24 AM,02/19/2016 11:10:24 AM,02/19/2016 11:11:23 AM,02/19/2016 11:12:03 AM,02/19/2016 11:15:58 AM,02/19/2016 11:35:57 AM,02/19/2016 11:58:13 AM,Code 2 Transport,02/19/2016 12:48:18 PM,0 Block of PHELAN AVE,San Francisco,94112,B09,15,8225,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7256933575703, -122.452289660492)",160501301-71 -160483508,88,16019496,Medical Incident,02/17/2016,02/17/2016,02/17/2016 07:48:26 PM,02/17/2016 07:48:50 PM,02/17/2016 07:50:44 PM,02/17/2016 07:50:44 PM,02/17/2016 08:05:07 PM,02/17/2016 08:10:35 PM,02/17/2016 08:23:19 PM,Code 2 Transport,02/17/2016 09:05:27 PM,GOUGH ST/UNION ST,San Francisco,94123,B04,38,3246,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.7981345815713, -122.427268975305)",160483508-88 -133260270,B06,13110790,Confined Space / Structure Collapse,11/22/2013,11/22/2013,11/22/2013 04:41:58 PM,11/22/2013 04:43:25 PM,11/22/2013 04:43:37 PM,11/22/2013 04:44:38 PM,11/22/2013 04:48:14 PM,04/25/2016 01:49:38 PM,04/25/2016 01:49:38 PM,Other,11/22/2013 04:49:14 PM,RICHLAND AV/MIGUEL ST,SF,94110,B06,26,8133,3,3,3,false,Fire,1,CHIEF,5,6,8,Glen Park,"(37.7365283839787, -122.426990743386)",133260270-B06 -103130236,81,10100386,Medical Incident,11/09/2010,11/09/2010,11/09/2010 02:29:27 PM,11/09/2010 02:31:34 PM,11/09/2010 02:31:59 PM,11/09/2010 02:32:05 PM,11/09/2010 02:35:31 PM,04/25/2016 02:07:40 PM,04/25/2016 02:07:40 PM,Other,11/09/2010 02:52:43 PM,100 Block of SHIPLEY ST,SF,94107,B03,1,2215,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.7806691632498, -122.401678045598)",103130236-81 -111200398,E08,11039777,Structure Fire,04/30/2011,04/30/2011,04/30/2011 11:31:45 PM,04/30/2011 11:33:40 PM,04/30/2011 11:34:15 PM,04/30/2011 11:36:03 PM,04/30/2011 11:44:32 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 11:46:30 PM,200 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,8,3,6,South of Market,"(37.7791674218963, -122.406346425632)",111200398-E08 -132660300,79,13090346,Medical Incident,09/23/2013,09/23/2013,09/23/2013 04:57:42 PM,09/23/2013 04:57:58 PM,09/23/2013 05:00:50 PM,09/23/2013 05:01:00 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,04/25/2016 01:50:37 PM,Other,04/25/2016 01:50:37 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7815374331217, -122.409518341416)",132660300-79 -160433253,AM22,16017442,Medical Incident,02/12/2016,02/12/2016,02/12/2016 07:41:40 PM,02/12/2016 07:43:34 PM,02/12/2016 07:43:47 PM,02/12/2016 07:44:49 PM,02/12/2016 07:48:46 PM,02/12/2016 08:11:34 PM,02/12/2016 08:11:38 PM,Code 2 Transport,02/12/2016 08:35:04 PM,0 Block of MCALLISTER ST,San Francisco,94102,B03,1,1455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",160433253-AM22 -160040473,KM03,16001472,Medical Incident,01/04/2016,01/03/2016,01/04/2016 05:55:13 AM,01/04/2016 05:57:20 AM,01/04/2016 05:58:19 AM,01/04/2016 05:58:52 AM,01/04/2016 06:07:21 AM,01/04/2016 06:16:43 AM,01/04/2016 06:23:56 AM,Code 2 Transport,01/04/2016 06:51:43 AM,2800 Block of JONES ST,San Francisco,94133,B01,28,1521,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8075513993457, -122.417284885705)",160040473-KM03 -140830039,KM03,14027876,Medical Incident,03/24/2014,03/23/2014,03/24/2014 04:49:21 AM,03/24/2014 04:50:35 AM,03/24/2014 04:52:42 AM,03/24/2014 04:53:17 AM,03/24/2014 04:58:20 AM,03/24/2014 05:16:17 AM,03/24/2014 05:35:15 AM,Code 2 Transport,03/24/2014 06:01:55 AM,0 Block of 6TH ST,SAN FRANCISCO,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",140830039-KM03 -120650004,E29,12021336,Alarms,03/05/2012,03/04/2012,03/05/2012 12:11:55 AM,03/05/2012 12:12:58 AM,03/05/2012 12:13:04 AM,03/05/2012 12:14:38 AM,03/05/2012 12:15:47 AM,04/25/2016 01:59:50 PM,04/25/2016 01:59:50 PM,Fire,03/05/2012 12:24:51 AM,300 Block of DE HARO ST,SF,94103,B03,29,2413,3,3,3,true,Alarm,1,ENGINE,1,2,10,Mission Bay,"(37.7654817940477, -122.401728756227)",120650004-E29 -123160201,RB1,12105176,Water Rescue,11/11/2012,11/11/2012,11/11/2012 01:54:01 PM,11/11/2012 01:54:57 PM,11/11/2012 01:55:37 PM,11/11/2012 01:59:06 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,04/25/2016 01:55:51 PM,Other,11/11/2012 02:51:57 PM,600 Block of INNES AVE,SF,94124,B10,25,6663,3,3,3,false,Fire,1,SUPPORT,8,10,10,Bayview Hunters Point,"(37.7293845339796, -122.371035028973)",123160201-RB1 -160522196,87,16020863,Medical Incident,02/21/2016,02/21/2016,02/21/2016 03:48:50 PM,02/21/2016 03:49:28 PM,02/21/2016 03:49:58 PM,02/21/2016 03:50:08 PM,02/21/2016 03:54:56 PM,02/21/2016 04:16:23 PM,02/21/2016 04:31:21 PM,Code 2 Transport,02/21/2016 05:10:38 PM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160522196-87 -140860192,T02,14028956,Structure Fire,03/27/2014,03/27/2014,03/27/2014 02:08:58 PM,03/27/2014 02:08:58 PM,03/27/2014 02:09:08 PM,03/27/2014 02:11:25 PM,03/27/2014 02:11:43 PM,04/25/2016 01:47:32 PM,04/25/2016 01:47:32 PM,Fire,03/27/2014 02:12:01 PM,GRANT AV/JACKSON ST,SAN FRANCISCO,94133,B01,2,1312,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7960247500157, -122.4066523534)",140860192-T02 -133010159,E01,13102265,Alarms,10/28/2013,10/28/2013,10/28/2013 11:08:48 AM,10/28/2013 11:09:29 AM,10/28/2013 11:10:01 AM,10/28/2013 11:11:20 AM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/28/2013 11:13:54 AM,400 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Alarm,1,ENGINE,3,2,6,Tenderloin,"(37.7835654755497, -122.415051136249)",133010159-E01 -121190208,T11,12039499,Structure Fire,04/28/2012,04/28/2012,04/28/2012 02:08:13 PM,04/28/2012 02:08:14 PM,04/28/2012 02:08:28 PM,04/28/2012 02:10:37 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,04/25/2016 01:58:57 PM,Other,04/28/2012 02:11:31 PM,26TH ST/MISSION ST,SF,94110,B06,11,5613,3,3,3,false,Alarm,1,TRUCK,2,6,9,Mission,"(37.7490412884368, -122.418135251703)",121190208-T11 -131280075,AM02,13043189,Medical Incident,05/08/2013,05/07/2013,05/08/2013 06:51:47 AM,05/08/2013 06:55:29 AM,05/08/2013 06:56:10 AM,05/08/2013 06:57:03 AM,05/08/2013 07:06:13 AM,05/08/2013 07:20:49 AM,05/08/2013 07:45:31 AM,Code 2 Transport,05/08/2013 08:12:23 AM,MONTGOMERY ST/JACKSON ST,SF,94111,B01,13,1232,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Chinatown,"(37.7964174850191, -122.403496710989)",131280075-AM02 -103620109,T07,10116047,Structure Fire,12/28/2010,12/28/2010,12/28/2010 10:02:06 AM,12/28/2010 10:03:55 AM,12/28/2010 10:06:24 AM,12/28/2010 10:09:34 AM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,04/25/2016 02:06:53 PM,Other,12/28/2010 10:12:54 AM,400 Block of SANCHEZ ST,SF,94114,B05,6,5252,3,3,3,false,,1,TRUCK,8,5,8,Castro/Upper Market,"(37.7615507739315, -122.430680858737)",103620109-T07 -122740147,T06,12090355,Structure Fire,09/30/2012,09/30/2012,09/30/2012 11:38:49 AM,09/30/2012 11:39:02 AM,09/30/2012 11:39:12 AM,09/30/2012 11:40:42 AM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,04/25/2016 01:56:32 PM,Other,09/30/2012 11:42:08 AM,0 Block of SOUTH VAN NESS AVE,SF,94103,B02,36,5117,3,3,3,false,Alarm,1,TRUCK,3,2,6,Mission,"(37.7741251002903, -122.418810211803)",122740147-T06 -140230348,T11,14008003,Other,01/23/2014,01/23/2014,01/23/2014 10:49:55 PM,01/23/2014 10:52:02 PM,01/23/2014 10:52:19 PM,01/23/2014 10:54:35 PM,01/23/2014 11:03:59 PM,04/25/2016 01:48:34 PM,04/25/2016 01:48:34 PM,Other,01/23/2014 11:07:41 PM,4000 Block of 26TH ST,SF,94131,B06,11,5546,3,3,3,true,Alarm,1,TRUCK,2,6,8,Noe Valley,"(37.7482411052181, -122.430446357448)",140230348-T11 -160880830,82,16034857,Medical Incident,03/28/2016,03/28/2016,03/28/2016 08:22:17 AM,03/28/2016 08:24:43 AM,03/28/2016 08:25:08 AM,03/28/2016 08:25:40 AM,03/28/2016 08:43:01 AM,03/28/2016 08:55:35 AM,03/28/2016 09:44:29 AM,Code 2 Transport,03/28/2016 10:04:39 AM,200 Block of MONTGOMERY ST,San Francisco,94104,B01,13,1235,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7914426036611, -122.40240755277)",160880830-82 -121120059,B04,12037018,Alarms,04/21/2012,04/20/2012,04/21/2012 03:05:15 AM,04/21/2012 03:06:40 AM,04/21/2012 03:06:47 AM,04/21/2012 03:08:14 AM,04/21/2012 03:12:41 AM,04/25/2016 01:59:04 PM,04/25/2016 01:59:04 PM,Other,04/21/2012 03:19:26 AM,2000 Block of LOMBARD ST,SF,94123,B04,16,3461,3,3,3,false,Alarm,1,CHIEF,3,4,2,Marina,"(37.7998309235227, -122.435201947883)",121120059-B04 -140790316,E13,14026829,Structure Fire,03/20/2014,03/20/2014,03/20/2014 06:41:22 PM,03/20/2014 06:41:22 PM,03/20/2014 06:41:38 PM,03/20/2014 06:42:27 PM,03/20/2014 06:44:31 PM,04/25/2016 01:47:38 PM,04/25/2016 01:47:38 PM,Fire,03/20/2014 06:44:52 PM,GRANT AV/CALIFORNIA ST,SAN FRANCISCO,94108,B01,13,1314,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7924507523927, -122.405938120147)",140790316-E13 -140600425,96,14020475,Medical Incident,03/01/2014,03/01/2014,03/01/2014 11:54:34 PM,03/01/2014 11:54:49 PM,03/01/2014 11:56:21 PM,03/01/2014 11:56:35 PM,03/02/2014 12:05:16 AM,03/02/2014 12:28:48 AM,03/02/2014 12:49:23 AM,Code 2 Transport,03/02/2014 01:16:37 AM,MISSION ST/WASHBURN ST,SF,94103,B02,36,2336,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7758897020189, -122.415127954003)",140600425-96 -122030129,54,12067419,Medical Incident,07/21/2012,07/21/2012,07/21/2012 10:13:12 AM,07/21/2012 10:14:04 AM,07/21/2012 10:14:20 AM,07/21/2012 10:14:24 AM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,04/25/2016 01:57:37 PM,16TH ST/VALENCIA ST,SF,94103,B02,6,5226,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",122030129-54 -121820148,E17,12060572,Medical Incident,06/30/2012,06/30/2012,06/30/2012 11:15:07 AM,06/30/2012 11:17:29 AM,06/30/2012 11:18:11 AM,06/30/2012 11:19:59 AM,06/30/2012 11:23:06 AM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Other,06/30/2012 11:40:26 AM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",121820148-E17 -102240334,E18,10070677,Structure Fire,08/12/2010,08/12/2010,08/12/2010 09:39:19 PM,08/12/2010 09:39:19 PM,08/12/2010 09:39:41 PM,08/12/2010 09:40:27 PM,08/12/2010 09:42:48 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Fire,08/12/2010 09:43:29 PM,27TH AV/ORTEGA ST,SF,94116,B08,18,7473,3,3,3,true,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7519981922137, -122.48491484956)",102240334-E18 -122180223,E01,12072344,Structure Fire,08/05/2012,08/05/2012,08/05/2012 02:50:17 PM,08/05/2012 02:50:17 PM,08/05/2012 02:50:27 PM,08/05/2012 02:51:15 PM,08/05/2012 02:54:15 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/05/2012 02:54:28 PM,7TH ST/MISSION ST,SF,94103,B02,1,2315,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7792116845421, -122.4109365738)",122180223-E01 -140660306,KM10,14022401,Medical Incident,03/07/2014,03/07/2014,03/07/2014 05:15:44 PM,03/07/2014 05:15:51 PM,03/07/2014 05:23:47 PM,03/07/2014 05:25:13 PM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,04/25/2016 01:47:51 PM,Code 2 Transport,03/07/2014 05:26:02 PM,CYRIL MAGNIN ST/EDDY ST,SAN FRANCISCO,94102,B03,1,1453,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,3,6,Tenderloin,"(37.7844527288793, -122.408493159961)",140660306-KM10 -122120352,E36,12070514,Medical Incident,07/30/2012,07/30/2012,07/30/2012 08:53:48 PM,07/30/2012 08:55:58 PM,07/30/2012 08:56:14 PM,07/30/2012 08:58:19 PM,07/30/2012 09:00:09 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 09:01:38 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,South of Market,"(37.7762305177878, -122.414711004673)",122120352-E36 -131900265,87,13064780,Medical Incident,07/09/2013,07/09/2013,07/09/2013 04:00:17 PM,07/09/2013 04:02:02 PM,07/09/2013 04:02:18 PM,07/09/2013 04:02:38 PM,07/09/2013 04:09:59 PM,07/09/2013 04:45:21 PM,07/09/2013 04:57:06 PM,Code 2 Transport,07/09/2013 05:39:42 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",131900265-87 -160362195,AM02,16014280,Medical Incident,02/05/2016,02/05/2016,02/05/2016 02:02:24 PM,02/05/2016 02:04:11 PM,02/05/2016 02:04:57 PM,02/05/2016 02:05:27 PM,02/05/2016 02:11:07 PM,02/05/2016 02:46:20 PM,02/05/2016 02:46:22 PM,Code 2 Transport,02/05/2016 03:12:17 PM,1000 Block of EDDY ST,San Francisco,94109,B02,5,3262,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,5,Western Addition,"(37.7823212335968, -122.42576330376)",160362195-AM02 -121010368,E09,12033643,Traffic Collision,04/10/2012,04/10/2012,04/10/2012 09:33:12 PM,04/10/2012 09:35:21 PM,04/10/2012 09:35:41 PM,04/10/2012 09:47:20 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,04/25/2016 01:59:14 PM,Other,04/10/2012 10:06:02 PM,0 Block of 5TH ST,SF,94103,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,3,6,South of Market,"(37.7831860531538, -122.407149119811)",121010368-E09 -121200153,E03,12039802,Medical Incident,04/29/2012,04/29/2012,04/29/2012 10:20:44 AM,04/29/2012 10:22:47 AM,04/29/2012 10:22:57 AM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,04/25/2016 01:58:56 PM,Other,04/29/2012 10:28:53 AM,800 Block of SUTTER ST,SF,94109,B01,3,1463,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Nob Hill,"(37.7884388430214, -122.414352343522)",121200153-E03 -113320159,E51,11109948,Medical Incident,11/28/2011,11/28/2011,11/28/2011 11:37:54 AM,11/28/2011 11:39:21 AM,11/28/2011 11:39:36 AM,11/28/2011 11:40:33 AM,11/28/2011 11:41:23 AM,04/25/2016 02:01:26 PM,04/25/2016 02:01:26 PM,Other,11/28/2011 11:53:55 AM,1000 Block of GIRARD RD,PR,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8013251294544, -122.453498244358)",113320159-E51 -160241459,81,16009507,Medical Incident,01/24/2016,01/24/2016,01/24/2016 12:00:39 PM,01/24/2016 12:00:39 PM,01/24/2016 12:00:39 PM,01/24/2016 12:00:39 PM,01/24/2016 12:00:39 PM,01/24/2016 12:09:23 PM,01/24/2016 12:11:47 PM,Code 2 Transport,01/24/2016 01:03:22 PM,CALIFORNIA ST/HYDE ST,San Francisco,94109,B99,41,1541,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7909731905551, -122.41739133715)",160241459-81 -123050482,T14,12101443,Structure Fire,10/31/2012,10/31/2012,10/31/2012 09:33:16 PM,10/31/2012 09:34:27 PM,10/31/2012 09:34:59 PM,10/31/2012 09:36:28 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 09:39:33 PM,4700 Block of GEARY BLVD,SF,94118,B07,31,7146,3,3,3,false,Alarm,1,TRUCK,9,7,1,Inner Richmond,"(37.7806274376634, -122.470163577078)",123050482-T14 -160333375,93,16013163,Medical Incident,02/02/2016,02/02/2016,02/02/2016 09:37:46 PM,02/02/2016 09:38:51 PM,02/02/2016 09:39:08 PM,02/02/2016 09:39:47 PM,02/02/2016 09:42:30 PM,02/02/2016 10:00:10 PM,02/02/2016 10:07:58 PM,Code 2 Transport,02/02/2016 10:35:41 PM,100 Block of LINDA ST,San Francisco,94110,B06,7,5434,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Mission,"(37.7594094951426, -122.422887066133)",160333375-93 -160071518,55,16002818,Medical Incident,01/07/2016,01/07/2016,01/07/2016 11:52:46 AM,01/07/2016 11:54:29 AM,01/07/2016 11:54:59 AM,01/07/2016 11:55:13 AM,01/07/2016 12:00:49 PM,01/07/2016 12:29:15 PM,01/07/2016 12:47:42 PM,Code 2 Transport,01/07/2016 01:31:58 PM,3500 Block of FULTON ST,San Francisco,94118,B07,31,7144,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7732879538728, -122.469631432178)",160071518-55 -102720109,E17,10086307,Medical Incident,09/29/2010,09/29/2010,09/29/2010 09:12:58 AM,09/29/2010 09:15:38 AM,09/29/2010 09:16:04 AM,09/29/2010 09:16:58 AM,09/29/2010 09:18:42 AM,04/25/2016 02:08:21 PM,04/25/2016 02:08:21 PM,Unable to Locate,09/29/2010 09:23:43 AM,0 Block of ROSIE LEE LN,SF,94124,B10,17,6643,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7320281293955, -122.380006545606)",102720109-E17 -123570092,E03,12119434,Structure Fire,12/22/2012,12/22/2012,12/22/2012 08:22:45 AM,12/22/2012 08:22:45 AM,12/22/2012 08:23:07 AM,12/22/2012 08:24:00 AM,12/22/2012 08:26:53 AM,04/25/2016 01:55:11 PM,04/25/2016 01:55:11 PM,Other,12/22/2012 08:27:00 AM,JONES ST/TURK ST,SF,94102,B03,1,1456,3,3,3,true,Alarm,1,ENGINE,1,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",123570092-E03 -102420290,88,10076408,Medical Incident,08/30/2010,08/30/2010,08/30/2010 05:46:00 PM,08/30/2010 05:46:56 PM,08/30/2010 05:47:12 PM,08/30/2010 05:47:19 PM,08/30/2010 06:14:41 PM,08/30/2010 06:16:14 PM,08/30/2010 06:28:29 PM,Code 2 Transport,08/30/2010 07:03:02 PM,400 Block of 7TH ST,SF,94103,B03,8,231,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7746534767072, -122.405118197249)",102420290-88 -113030036,E43,11100430,Medical Incident,10/30/2011,10/29/2011,10/30/2011 01:01:13 AM,10/30/2011 01:01:38 AM,10/30/2011 01:07:19 AM,10/30/2011 01:09:13 AM,10/30/2011 01:11:10 AM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,10/30/2011 01:22:36 AM,300 Block of EDINBURGH ST,SF,94112,B09,43,6133,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.7235920979291, -122.430301878327)",113030036-E43 -130950358,E21,13031962,Structure Fire,04/05/2013,04/05/2013,04/05/2013 08:15:02 PM,04/05/2013 08:15:02 PM,04/05/2013 08:15:08 PM,04/05/2013 08:16:08 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,04/25/2016 01:53:28 PM,Other,04/05/2013 08:18:47 PM,400 Block of MASONIC AVE,SF,94118,B05,21,4462,3,3,3,true,Alarm,1,ENGINE,1,5,5,Lone Mountain/USF,"(37.7772140317398, -122.446684854006)",130950358-E21 -160572302,71,16022812,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:25:35 PM,02/26/2016 03:26:42 PM,02/26/2016 03:27:52 PM,02/26/2016 03:28:08 PM,02/26/2016 03:50:32 PM,02/26/2016 03:56:33 PM,02/26/2016 04:23:33 PM,Code 2 Transport,02/26/2016 04:34:22 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.7842371111665, -122.440760813886)",160572302-71 -102970241,E05,10094811,Alarms,10/24/2010,10/24/2010,10/24/2010 12:47:58 PM,10/24/2010 12:49:51 PM,10/24/2010 12:50:02 PM,10/24/2010 12:51:12 PM,10/24/2010 12:51:49 PM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 01:16:17 PM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",102970241-E05 -160230693,65,16009067,Medical Incident,01/23/2016,01/22/2016,01/23/2016 06:27:17 AM,01/23/2016 06:28:29 AM,01/23/2016 06:28:48 AM,01/23/2016 06:28:56 AM,01/23/2016 06:33:16 AM,01/23/2016 07:02:40 AM,01/23/2016 07:21:09 AM,Code 2 Transport,01/23/2016 08:09:32 AM,300 Block of ELLIS ST,San Francisco,94102,B03,3,1461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7850246606887, -122.411971890566)",160230693-65 -132890152,KM09,13098271,Medical Incident,10/16/2013,10/16/2013,10/16/2013 11:41:40 AM,10/16/2013 11:44:28 AM,10/16/2013 11:46:26 AM,10/16/2013 11:50:56 AM,10/16/2013 12:03:06 PM,10/16/2013 12:22:30 PM,10/16/2013 12:22:38 PM,Code 2 Transport,10/16/2013 12:46:37 PM,2600 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,1,1,2,false,Non Life-threatening,1,PRIVATE,1,10,9,Portola,"(37.7282520210187, -122.403780725663)",132890152-KM09 -160490366,77,16019609,Medical Incident,02/18/2016,02/17/2016,02/18/2016 05:51:36 AM,02/18/2016 05:53:55 AM,02/18/2016 05:54:28 AM,02/18/2016 05:54:55 AM,02/18/2016 06:03:57 AM,02/18/2016 06:19:48 AM,02/18/2016 06:29:18 AM,Code 2 Transport,02/18/2016 06:55:21 AM,2500 Block of MASON ST,San Francisco,94133,B01,28,1425,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.807027306345, -122.413812485246)",160490366-77 -131850445,E01,13063273,Watercraft in Distress,07/04/2013,07/04/2013,07/04/2013 11:54:03 PM,07/04/2013 11:57:21 PM,07/05/2013 12:01:49 AM,07/05/2013 12:04:36 AM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,04/25/2016 01:51:57 PM,Other,07/05/2013 12:06:26 AM,100 Block of CARGO WAY,SF,94124,B10,25,994,3,3,3,true,Fire,1,ENGINE,16,10,10,Bayview Hunters Point,"(37.7420919993497, -122.379931669849)",131850445-E01 -140500048,E07,14016877,Medical Incident,02/19/2014,02/18/2014,02/19/2014 06:51:54 AM,02/19/2014 06:53:50 AM,02/19/2014 06:55:43 AM,02/19/2014 06:56:35 AM,02/19/2014 07:00:08 AM,04/25/2016 01:48:08 PM,04/25/2016 01:48:08 PM,No Merit,02/19/2014 07:04:16 AM,17TH ST/MISSION ST,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,9,Mission,"(37.7634292740134, -122.419512736792)",140500048-E07 -160391531,KM05,16015595,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:03:47 PM,02/08/2016 12:05:22 PM,02/08/2016 12:07:08 PM,02/08/2016 12:07:42 PM,02/08/2016 12:19:20 PM,02/08/2016 12:23:22 PM,02/08/2016 12:41:00 PM,Code 2 Transport,02/08/2016 01:27:48 PM,600 Block of LOMBARD ST,San Francisco,94133,B01,28,1346,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,North Beach,"(37.8028765476121, -122.412200636927)",160391531-KM05 -112870278,RC1,11095217,Medical Incident,10/14/2011,10/14/2011,10/14/2011 03:06:48 PM,10/14/2011 03:07:20 PM,10/14/2011 03:08:02 PM,10/14/2011 03:08:33 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,04/25/2016 02:02:10 PM,Other,10/14/2011 03:12:40 PM,600 Block of POST ST,SF,94102,B01,3,1451,E,2,2,true,,1,RESCUE CAPTAIN,3,1,3,Tenderloin,"(37.7877243194386, -122.412426603479)",112870278-RC1 -160680511,82,16027005,Medical Incident,03/08/2016,03/07/2016,03/08/2016 07:16:05 AM,03/08/2016 07:17:42 AM,03/08/2016 07:18:35 AM,03/08/2016 07:21:58 AM,03/08/2016 07:45:18 AM,03/08/2016 07:47:27 AM,03/08/2016 08:02:12 AM,Code 3 Transport,03/08/2016 08:19:03 AM,0 Block of SANTA FE AVE,San Francisco,94124,B10,42,6363,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7340839384311, -122.400850244004)",160680511-82 -120450236,KM02,12015011,Medical Incident,02/14/2012,02/14/2012,02/14/2012 03:29:13 PM,02/14/2012 03:30:20 PM,02/14/2012 03:31:00 PM,02/14/2012 03:31:50 PM,02/14/2012 03:57:18 PM,02/14/2012 04:12:01 PM,02/14/2012 04:48:43 PM,Code 2 Transport,02/14/2012 05:24:21 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",120450236-KM02 -112180202,D3,11072073,Structure Fire,08/06/2011,08/06/2011,08/06/2011 12:36:25 PM,08/06/2011 12:38:29 PM,08/06/2011 12:38:53 PM,08/06/2011 12:39:48 PM,08/06/2011 12:41:19 PM,04/25/2016 02:03:18 PM,04/25/2016 02:03:18 PM,Other,08/06/2011 12:47:34 PM,900 Block of VALENCIA ST,SF,94110,B06,7,5456,3,3,3,false,,1,CHIEF,3,6,8,Mission,"(37.7580957160416, -122.421301773834)",112180202-D3 -110720230,96,11023757,Traffic Collision,03/13/2011,03/13/2011,03/13/2011 02:10:12 PM,03/13/2011 02:11:25 PM,03/13/2011 02:12:17 PM,03/13/2011 02:12:32 PM,03/13/2011 02:17:30 PM,03/13/2011 02:52:51 PM,03/13/2011 03:11:11 PM,Other,03/13/2011 04:01:36 PM,19TH AV/SANTIAGO ST,SF,94116,B08,40,7416,3,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7449187187769, -122.475773242641)",110720230-96 -121120071,88,12037030,Medical Incident,04/21/2012,04/20/2012,04/21/2012 03:45:02 AM,04/21/2012 03:47:12 AM,04/21/2012 03:47:22 AM,04/21/2012 03:47:33 AM,04/21/2012 04:00:49 AM,04/21/2012 04:04:56 AM,04/21/2012 04:06:55 AM,Code 2 Transport,04/21/2012 03:54:06 AM,0 Block of 7TH ST,SF,94103,B02,1,2315,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7795700115888, -122.411484015918)",121120071-88 -130010496,KM02,13000410,Medical Incident,01/01/2013,01/01/2013,01/01/2013 06:57:16 PM,01/01/2013 06:57:16 PM,01/01/2013 06:57:45 PM,01/01/2013 06:58:51 PM,01/01/2013 07:05:53 PM,01/01/2013 07:16:23 PM,01/01/2013 07:22:22 PM,Code 2 Transport,01/01/2013 07:44:14 PM,JONES ST/MARKET ST,SF,94102,B03,1,1455,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",130010496-KM02 -160900233,AM24,16035552,Medical Incident,03/30/2016,03/29/2016,03/30/2016 02:26:22 AM,03/30/2016 02:27:17 AM,03/30/2016 02:27:40 AM,03/30/2016 02:28:32 AM,03/30/2016 02:37:15 AM,03/30/2016 02:56:58 AM,03/30/2016 03:06:11 AM,Code 2 Transport,03/30/2016 03:34:49 AM,0 Block of EMERSON ST,San Francisco,94118,B05,10,4455,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,2,Presidio Heights,"(37.7830736887057, -122.448251712623)",160900233-AM24 -160563655,71,16022538,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:51:25 PM,02/25/2016 08:51:25 PM,02/25/2016 08:51:32 PM,02/25/2016 08:51:43 PM,02/25/2016 08:55:17 PM,02/25/2016 09:08:39 PM,02/25/2016 09:36:08 PM,Code 2 Transport,02/25/2016 10:05:31 PM,1300 Block of 9TH AVE,San Francisco,94122,B08,22,7334,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.763102976167, -122.466314668643)",160563655-71 -112850215,T15,11094401,Structure Fire,10/12/2011,10/12/2011,10/12/2011 01:04:18 PM,10/12/2011 01:04:18 PM,10/12/2011 01:04:31 PM,10/12/2011 01:05:43 PM,10/12/2011 01:08:21 PM,04/25/2016 02:02:12 PM,04/25/2016 02:02:12 PM,Other,10/12/2011 01:08:58 PM,GENEVA AV/MISSION ST,SF,94112,B09,43,6175,3,3,3,false,,1,TRUCK,1,9,11,Excelsior,"(37.7164595472961, -122.441019560156)",112850215-T15 -110540200,B02,11017828,Alarms,02/23/2011,02/23/2011,02/23/2011 01:24:28 PM,02/23/2011 01:25:29 PM,02/23/2011 01:25:57 PM,02/23/2011 01:26:35 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,Other,02/23/2011 01:44:53 PM,1800 Block of PINE ST,SF,94109,B04,38,3325,3,3,3,false,,1,CHIEF,3,4,2,Pacific Heights,"(37.7889450363259, -122.426252261665)",110540200-B02 -112080202,E08,11068704,Outside Fire,07/27/2011,07/27/2011,07/27/2011 02:05:22 PM,07/27/2011 02:05:23 PM,07/27/2011 02:05:38 PM,07/27/2011 02:06:47 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 02:11:01 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,true,,1,ENGINE,3,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",112080202-E08 -111200368,B04,11039748,Alarms,04/30/2011,04/30/2011,04/30/2011 09:39:25 PM,04/30/2011 09:41:19 PM,04/30/2011 09:41:45 PM,04/30/2011 09:43:24 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,04/25/2016 02:04:51 PM,Other,04/30/2011 09:50:08 PM,300 Block of LOWER FORT MASON ST,FM,94123,B99,51,3343,3,3,3,false,,1,CHIEF,2,4,2,Marina,"(37.8058923703038, -122.431246520303)",111200368-B04 -102960363,E08,10094589,Structure Fire,10/23/2010,10/23/2010,10/23/2010 11:32:22 PM,10/23/2010 11:32:22 PM,10/23/2010 11:32:30 PM,10/23/2010 11:33:38 PM,10/23/2010 11:36:08 PM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/23/2010 11:36:13 PM,4TH ST/FOLSOM ST,SF,94107,B03,1,2215,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7820242662358, -122.401159719509)",102960363-E08 -103490381,B01,10112093,Alarms,12/15/2010,12/15/2010,12/15/2010 11:43:57 PM,12/15/2010 11:44:50 PM,12/15/2010 11:46:20 PM,12/15/2010 11:47:48 PM,12/15/2010 11:50:03 PM,04/25/2016 02:07:05 PM,04/25/2016 02:07:05 PM,Fire,12/15/2010 11:58:09 PM,1300 Block of COLUMBUS AVE,SF,94133,B01,28,1525,B,B,2,false,,1,CHIEF,1,1,3,North Beach,"(37.8061515935611, -122.418537074676)",103490381-B01 -113400225,E02,11112725,Traffic Collision,12/06/2011,12/06/2011,12/06/2011 01:54:56 PM,12/06/2011 01:56:45 PM,12/06/2011 01:57:02 PM,12/06/2011 01:58:32 PM,12/06/2011 02:00:20 PM,04/25/2016 02:01:17 PM,04/25/2016 02:01:17 PM,Other,12/06/2011 02:01:07 PM,POLK ST/VALLEJO ST,SF,94109,B04,41,3126,3,3,3,true,,1,ENGINE,2,4,3,Russian Hill,"(37.7968997476834, -122.42196091068)",113400225-E02 -120440146,88,12014671,Medical Incident,02/13/2012,02/13/2012,02/13/2012 11:52:25 AM,02/13/2012 11:53:36 AM,02/13/2012 11:53:47 AM,02/13/2012 11:54:01 AM,02/13/2012 12:05:14 PM,02/13/2012 12:35:19 PM,02/13/2012 12:41:12 PM,Code 2 Transport,02/13/2012 01:28:31 PM,1300 Block of PIERCE ST,SF,94115,B05,5,3647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7823890366544, -122.435974644248)",120440146-88 -160822009,75,16032588,Medical Incident,03/22/2016,03/22/2016,03/22/2016 01:47:01 PM,03/22/2016 01:48:31 PM,03/22/2016 01:49:18 PM,03/22/2016 01:49:37 PM,03/22/2016 02:09:58 PM,03/22/2016 02:18:20 PM,03/22/2016 02:30:34 PM,Code 2 Transport,03/22/2016 03:06:26 PM,1300 Block of MASON ST,San Francisco,94133,B01,2,1416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Nob Hill,"(37.7960620679909, -122.411743045233)",160822009-75 -160803080,60,16031928,Medical Incident,03/20/2016,03/20/2016,03/20/2016 07:25:16 PM,03/20/2016 07:26:55 PM,03/20/2016 07:27:36 PM,03/20/2016 07:27:44 PM,03/20/2016 07:51:09 PM,03/20/2016 07:51:16 PM,03/20/2016 07:59:46 PM,Code 2 Transport,03/20/2016 08:43:40 PM,300 Block of POWELL ST,San Francisco,94102,B01,1,1362,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Tenderloin,"(37.7878181557706, -122.4083825986)",160803080-60 -130580163,77,13019432,Medical Incident,02/27/2013,02/27/2013,02/27/2013 11:43:53 AM,02/27/2013 11:46:34 AM,02/27/2013 11:48:12 AM,02/27/2013 11:49:04 AM,02/27/2013 12:00:55 PM,02/27/2013 12:18:51 PM,02/27/2013 12:33:15 PM,Code 2 Transport,02/27/2013 01:03:10 PM,400 Block of MARKET ST,SF,94105,B03,13,2143,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7912932514009, -122.398614610411)",130580163-77 -111180173,T13,11038915,Medical Incident,04/28/2011,04/28/2011,04/28/2011 12:54:00 PM,04/28/2011 12:54:20 PM,04/28/2011 12:54:43 PM,04/28/2011 12:55:34 PM,04/28/2011 12:58:11 PM,04/25/2016 02:04:53 PM,04/25/2016 02:04:53 PM,Other,04/28/2011 01:12:21 PM,500 Block of BATTERY ST,SF,94111,B01,13,1156,3,3,3,false,,1,TRUCK,1,1,3,Chinatown,"(37.7963165979031, -122.40065165037)",111180173-T13 -112890125,KM15,11095827,Medical Incident,10/16/2011,10/16/2011,10/16/2011 09:45:26 AM,10/16/2011 09:46:11 AM,10/16/2011 09:46:29 AM,10/16/2011 09:47:48 AM,10/16/2011 09:55:17 AM,10/16/2011 10:07:41 AM,10/16/2011 10:15:45 AM,Code 2 Transport,10/16/2011 10:33:46 AM,300 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,PRIVATE,2,3,6,Tenderloin,"(37.7849161843633, -122.411950042222)",112890125-KM15 -112210090,E03,11072932,Medical Incident,08/09/2011,08/09/2011,08/09/2011 09:41:01 AM,08/09/2011 09:42:25 AM,08/09/2011 09:43:22 AM,08/09/2011 09:44:44 AM,08/09/2011 09:48:25 AM,04/25/2016 02:03:15 PM,04/25/2016 02:03:15 PM,Other,08/09/2011 09:53:26 AM,1800 Block of BUSH ST,SF,94109,B04,38,3363,3,3,3,true,,1,ENGINE,2,4,5,Pacific Heights,"(37.787702273936, -122.42768384136)",112210090-E03 -111500063,78,11049603,Medical Incident,05/30/2011,05/29/2011,05/30/2011 05:39:40 AM,05/30/2011 05:40:29 AM,05/30/2011 05:40:45 AM,05/30/2011 05:41:40 AM,05/30/2011 05:44:50 AM,05/30/2011 06:22:49 AM,05/30/2011 06:39:24 AM,Code 2 Transport,05/30/2011 07:08:31 AM,3000 Block of PIERCE ST,SF,94123,B04,16,3656,2,2,2,true,,1,MEDIC,1,4,2,Marina,"(37.7980766457002, -122.438993733646)",111500063-78 -110150182,KM01,11004994,Medical Incident,01/15/2011,01/15/2011,01/15/2011 01:00:24 PM,01/15/2011 01:01:38 PM,01/15/2011 01:02:39 PM,01/15/2011 01:04:13 PM,01/15/2011 01:08:29 PM,01/15/2011 01:33:24 PM,01/15/2011 01:40:59 PM,Code 2 Transport,01/15/2011 02:10:46 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,2,2,2,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",110150182-KM01 -160240008,89,16009376,Medical Incident,01/24/2016,01/23/2016,01/24/2016 12:01:54 AM,01/24/2016 12:01:54 AM,01/24/2016 12:02:56 AM,01/24/2016 12:04:24 AM,01/24/2016 12:17:29 AM,01/24/2016 12:27:27 AM,01/24/2016 12:32:52 AM,Code 2 Transport,01/24/2016 01:09:59 AM,4300 Block of 20TH ST,San Francisco,94114,B06,24,5442,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Castro/Upper Market,"(37.7576446822798, -122.436352539083)",160240008-89 -112420077,AM02,11079746,Medical Incident,08/30/2011,08/30/2011,08/30/2011 08:37:07 AM,08/30/2011 08:37:37 AM,08/30/2011 08:38:05 AM,08/30/2011 08:38:40 AM,08/30/2011 08:47:04 AM,08/30/2011 08:55:41 AM,08/30/2011 09:25:40 AM,Code 2 Transport,08/30/2011 10:06:57 AM,300 Block of SAN FERNANDO WAY,SF,94127,B09,39,8554,3,3,3,false,,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7310473926289, -122.469631711708)",112420077-AM02 -160500935,53,16020012,Medical Incident,02/19/2016,02/19/2016,02/19/2016 09:16:27 AM,02/19/2016 09:19:13 AM,02/19/2016 09:19:37 AM,02/19/2016 09:20:01 AM,02/19/2016 09:33:37 AM,02/19/2016 10:02:10 AM,02/19/2016 10:16:03 AM,Code 2 Transport,02/19/2016 10:52:35 AM,900 Block of MISSION ST,San Francisco,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815842395421, -122.408030493992)",160500935-53 -131380043,E18,13046507,Medical Incident,05/18/2013,05/17/2013,05/18/2013 02:19:35 AM,05/18/2013 02:21:58 AM,05/18/2013 02:22:39 AM,05/18/2013 02:25:33 AM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,04/25/2016 01:52:45 PM,Other,05/18/2013 02:29:15 AM,2600 Block of 25TH AVE,SF,94116,B08,40,7462,3,3,3,true,Non Life-threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7384141711124, -122.481745348212)",131380043-E18 -112290271,E12,11075742,Alarms,08/17/2011,08/17/2011,08/17/2011 06:38:47 PM,08/17/2011 06:39:11 PM,08/17/2011 06:39:23 PM,08/17/2011 06:40:55 PM,08/17/2011 06:42:33 PM,04/25/2016 02:03:07 PM,04/25/2016 02:03:07 PM,Other,08/17/2011 06:51:50 PM,1400 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,true,,1,ENGINE,1,5,5,Inner Sunset,"(37.7614340333644, -122.46176630545)",112290271-E12 -103230033,B02,10103361,Structure Fire,11/19/2010,11/18/2010,11/19/2010 03:53:15 AM,11/19/2010 03:54:37 AM,11/19/2010 03:54:53 AM,11/19/2010 03:56:32 AM,11/19/2010 03:59:16 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,11/19/2010 04:08:43 AM,400 Block of BAKER ST,SF,94117,B05,21,4253,3,3,3,false,,1,CHIEF,4,5,5,Hayes Valley,"(37.7750447950502, -122.441136915225)",103230033-B02 -103390360,E17,10108675,Medical Incident,12/05/2010,12/05/2010,12/05/2010 10:46:03 PM,12/05/2010 10:46:03 PM,12/05/2010 10:46:19 PM,12/05/2010 10:47:23 PM,12/05/2010 10:49:34 PM,04/25/2016 02:07:16 PM,04/25/2016 02:07:16 PM,Other,12/05/2010 11:08:25 PM,JENNINGS ST/FITZGERALD AV,SF,94124,B10,17,6614,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7220347181097, -122.393171960162)",103390360-E17 -122530133,E12,12083612,Medical Incident,09/09/2012,09/09/2012,09/09/2012 09:45:30 AM,09/09/2012 09:46:04 AM,09/09/2012 09:46:21 AM,09/09/2012 09:47:18 AM,09/09/2012 09:49:09 AM,09/09/2012 10:19:55 AM,09/09/2012 10:22:36 AM,Other,09/09/2012 10:34:57 AM,700 Block of ASHBURY ST,SF,94117,B05,12,5143,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7681560288269, -122.44648875825)",122530133-E12 -160573560,AM16,16022912,Medical Incident,02/26/2016,02/26/2016,02/26/2016 09:36:14 PM,02/26/2016 09:38:31 PM,02/26/2016 09:39:08 PM,02/26/2016 09:39:59 PM,02/26/2016 09:53:11 PM,02/26/2016 10:17:37 PM,02/26/2016 10:37:11 PM,Code 2 Transport,02/26/2016 11:00:58 PM,200 Block of THE EMBARCADERO,San Francisco,94111,B01,13,901,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",160573560-AM16 -123530343,E43,12118237,Medical Incident,12/18/2012,12/18/2012,12/18/2012 08:33:50 PM,12/18/2012 08:34:02 PM,12/18/2012 08:34:10 PM,12/18/2012 08:35:14 PM,12/18/2012 08:36:31 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/18/2012 08:55:51 PM,700 Block of EDINBURGH ST,SF,94112,B09,43,6135,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,9,11,Excelsior,"(37.7173197736494, -122.434883626306)",123530343-E43 -130830308,79,13027882,Medical Incident,03/24/2013,03/24/2013,03/24/2013 09:39:34 PM,03/24/2013 09:42:30 PM,03/24/2013 09:46:15 PM,03/24/2013 09:48:01 PM,03/24/2013 09:55:13 PM,03/24/2013 10:11:26 PM,03/24/2013 10:21:07 PM,Code 2 Transport,03/24/2013 10:54:07 PM,500 Block of SOUTH VAN NESS AVE,SF,94110,B02,7,5246,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",130830308-79 -111370093,E10,11045513,Alarms,05/17/2011,05/17/2011,05/17/2011 09:20:48 AM,05/17/2011 09:23:29 AM,05/17/2011 09:23:39 AM,05/17/2011 09:24:27 AM,05/17/2011 09:27:47 AM,04/25/2016 02:04:35 PM,04/25/2016 02:04:35 PM,Fire,05/17/2011 09:42:17 AM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,true,,1,ENGINE,1,7,2,Presidio Heights,"(37.7814695250492, -122.457208629229)",111370093-E10 -113130275,59,11104083,Medical Incident,11/09/2011,11/09/2011,11/09/2011 05:06:42 PM,11/09/2011 05:07:17 PM,11/09/2011 05:07:28 PM,11/09/2011 05:07:39 PM,11/09/2011 05:07:44 PM,11/09/2011 05:21:57 PM,11/09/2011 05:34:08 PM,Code 2 Transport,11/09/2011 06:05:57 PM,3RD ST/OAKDALE AV,SF,94124,B10,17,6515,E,E,3,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",113130275-59 -160770477,88,16030450,Medical Incident,03/17/2016,03/16/2016,03/17/2016 06:24:07 AM,03/17/2016 06:25:41 AM,03/17/2016 06:26:00 AM,03/17/2016 06:26:32 AM,03/17/2016 06:31:06 AM,03/17/2016 06:49:13 AM,03/17/2016 06:53:43 AM,Code 2 Transport,03/17/2016 07:34:35 AM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7806168446664, -122.416562254293)",160770477-88 -160834265,KM03,16033188,Medical Incident,03/23/2016,03/23/2016,03/23/2016 11:17:16 PM,03/23/2016 11:19:06 PM,03/23/2016 11:19:36 PM,03/23/2016 11:23:05 PM,03/23/2016 11:27:07 PM,03/23/2016 11:32:38 PM,03/23/2016 11:52:40 PM,Code 2 Transport,03/24/2016 12:08:12 AM,TREAT AV/15TH ST,San Francisco,94103,B02,7,5245,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7667509342148, -122.412829955565)",160834265-KM03 -123430363,T08,12114780,Administrative,12/08/2012,12/08/2012,12/08/2012 09:17:39 PM,12/08/2012 09:18:01 PM,12/08/2012 09:18:06 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Fire,12/08/2012 09:18:35 PM,0 Block of BLUXOME ST,SF,94107,B03,8,2223,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7768587665468, -122.396905531975)",123430363-T08 -133500412,B03,13119007,Alarms,12/16/2013,12/16/2013,12/16/2013 09:55:21 PM,12/16/2013 09:55:24 PM,12/16/2013 09:56:10 PM,12/16/2013 09:58:13 PM,12/16/2013 10:00:54 PM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/16/2013 10:04:48 PM,0 Block of OFARRELL ST,SF,94108,B01,1,1321,3,3,3,false,Alarm,1,CHIEF,2,1,3,Financial District/South Beach,"(37.786735734759, -122.405883301385)",133500412-B03 -140630393,84,14021463,Medical Incident,03/04/2014,03/04/2014,03/04/2014 10:07:51 PM,03/04/2014 10:10:50 PM,03/04/2014 10:18:24 PM,03/04/2014 10:18:44 PM,03/04/2014 10:35:26 PM,03/04/2014 10:47:26 PM,03/04/2014 11:11:19 PM,Code 2 Transport,03/04/2014 11:17:40 PM,0 Block of SANTOS ST,SF,94134,B09,43,6244,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7113302525058, -122.418817616056)",140630393-84 -160320212,71,16012416,Medical Incident,02/01/2016,01/31/2016,02/01/2016 01:57:24 AM,02/01/2016 01:58:30 AM,02/01/2016 02:00:01 AM,02/01/2016 02:00:41 AM,02/01/2016 02:05:04 AM,02/01/2016 02:12:45 AM,02/01/2016 02:15:03 AM,Code 2 Transport,02/01/2016 03:01:37 AM,600 Block of ELLIS ST,San Francisco,94109,B02,3,1555,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",160320212-71 -140250173,89,14008561,Medical Incident,01/25/2014,01/25/2014,01/25/2014 01:15:34 PM,01/25/2014 01:17:13 PM,01/25/2014 01:20:02 PM,01/25/2014 01:20:10 PM,01/25/2014 01:41:32 PM,01/25/2014 02:00:04 PM,01/25/2014 02:14:27 PM,Code 2 Transport,01/25/2014 02:52:42 PM,1000 Block of LE CONTE AVE,SF,94124,B10,44,6575,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7190331787318, -122.39800417734)",140250173-89 -160810025,AM16,16031995,Medical Incident,03/21/2016,03/20/2016,03/21/2016 12:10:00 AM,03/21/2016 12:12:12 AM,03/21/2016 12:14:32 AM,03/21/2016 12:15:36 AM,03/21/2016 12:22:13 AM,03/21/2016 12:27:21 AM,03/21/2016 12:55:30 AM,Code 2 Transport,03/21/2016 01:17:14 AM,100 Block of BLYTHDALE AVE,San Francisco,94134,B09,43,6244,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7108919684651, -122.420540192981)",160810025-AM16 -140870097,88,14029208,Medical Incident,03/28/2014,03/28/2014,03/28/2014 09:02:46 AM,03/28/2014 09:06:33 AM,03/28/2014 09:07:12 AM,03/28/2014 09:07:37 AM,03/28/2014 09:25:38 AM,03/28/2014 09:40:37 AM,03/28/2014 09:49:39 AM,Code 2 Transport,03/28/2014 10:22:44 AM,400 Block of POST ST,SAN FRANCISCO,94102,B01,1,1362,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Nob Hill,"(37.7882419232657, -122.409240218448)",140870097-88 -110020187,T06,11000664,Alarms,01/02/2011,01/02/2011,01/02/2011 01:26:48 PM,01/02/2011 01:28:01 PM,01/02/2011 01:28:12 PM,01/02/2011 01:29:39 PM,01/02/2011 01:30:37 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 01:35:46 PM,700 Block of 14TH ST,SF,94114,B02,6,5213,3,3,3,false,,1,TRUCK,2,2,8,Castro/Upper Market,"(37.7676408778052, -122.429519876751)",110020187-T06 -102720026,66,10086237,Medical Incident,09/29/2010,09/28/2010,09/29/2010 01:46:31 AM,09/29/2010 01:47:21 AM,09/29/2010 01:47:53 AM,09/29/2010 01:48:27 AM,09/29/2010 01:55:03 AM,09/29/2010 02:06:33 AM,09/29/2010 02:13:21 AM,Code 2 Transport,09/29/2010 02:45:28 AM,2100 Block of MISSION ST,SF,94110,B02,7,5423,3,1,2,true,,1,MEDIC,1,2,9,Mission,"(37.7622701739914, -122.419470488515)",102720026-66 -160402570,89,16016119,Medical Incident,02/09/2016,02/09/2016,02/09/2016 04:14:23 PM,02/09/2016 04:14:23 PM,02/09/2016 04:19:48 PM,02/09/2016 04:20:08 PM,02/09/2016 04:33:08 PM,02/09/2016 04:42:13 PM,02/09/2016 04:57:28 PM,Code 2 Transport,02/09/2016 05:30:15 PM,200 Block of JEFFERSON ST,San Francisco,94133,B01,28,1521,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080594050547, -122.41661365069)",160402570-89 -160644235,61,16025741,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:33:52 PM,03/04/2016 11:37:22 PM,03/04/2016 11:37:57 PM,03/04/2016 11:38:17 PM,03/04/2016 11:55:23 PM,03/05/2016 12:07:00 AM,03/05/2016 12:23:34 AM,Code 2 Transport,03/05/2016 12:59:48 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7525060662321, -122.414086032423)",160644235-61 -132710040,81,13091947,Medical Incident,09/28/2013,09/27/2013,09/28/2013 02:42:46 AM,09/28/2013 02:43:09 AM,09/28/2013 02:53:02 AM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,04/25/2016 01:50:33 PM,Other,04/25/2016 01:50:33 PM,1800 Block of WALLER ST,SF,94122,B05,12,4552,2,2,2,true,Non Life-threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",132710040-81 -111950077,E48,11064290,Traffic Collision,07/14/2011,07/14/2011,07/14/2011 09:05:33 AM,07/14/2011 09:08:48 AM,07/14/2011 09:09:50 AM,07/14/2011 09:11:39 AM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,04/25/2016 02:03:40 PM,Other,07/14/2011 09:12:21 AM,CALL BOX: FS YB-BLDG 213,SF,94130,B03,48,2951,2,2,2,true,,1,ENGINE,3,None,6,Treasure Island,"(37.8105207225206, -122.365138272289)",111950077-E48 -112440040,B03,11080332,Alarms,09/01/2011,08/31/2011,09/01/2011 03:42:33 AM,09/01/2011 03:44:04 AM,09/01/2011 03:44:11 AM,04/25/2016 02:02:54 PM,09/01/2011 03:50:38 AM,04/25/2016 02:02:54 PM,04/25/2016 02:02:54 PM,Other,09/01/2011 03:47:27 AM,300 Block of HOWARD ST,SF,94105,B03,35,2124,3,3,3,false,,1,CHIEF,3,3,6,Financial District/South Beach,"(37.7895415524392, -122.394664735195)",112440040-B03 -140920198,77,14030922,Medical Incident,04/02/2014,04/02/2014,04/02/2014 12:54:04 PM,04/02/2014 12:55:28 PM,04/02/2014 12:55:42 PM,04/02/2014 12:56:14 PM,04/02/2014 01:01:07 PM,04/02/2014 01:14:15 PM,04/02/2014 01:21:06 PM,Code 2 Transport,04/02/2014 01:46:52 PM,500 Block of ELLIS ST,SAN FRANCISCO,94109,B02,3,1555,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.784476659022, -122.415414178631)",140920198-77 -130650265,AM18,13021823,Medical Incident,03/06/2013,03/06/2013,03/06/2013 06:50:42 PM,03/06/2013 06:50:56 PM,03/06/2013 06:51:17 PM,03/06/2013 06:52:17 PM,03/06/2013 06:56:20 PM,03/06/2013 07:04:50 PM,03/06/2013 07:14:17 PM,Code 2 Transport,03/06/2013 07:31:27 PM,CLAYTON ST/HAIGHT ST,SF,94117,B05,12,4525,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7697978509271, -122.448578814838)",130650265-AM18 -160422360,82,16016929,Medical Incident,02/11/2016,02/11/2016,02/11/2016 03:23:26 PM,02/11/2016 03:23:34 PM,02/11/2016 03:24:04 PM,02/11/2016 03:24:52 PM,02/11/2016 03:31:08 PM,02/11/2016 03:48:05 PM,02/11/2016 03:57:28 PM,Code 2 Transport,02/11/2016 04:33:41 PM,LYON ST/OAK ST,San Francisco,94117,B05,21,4352,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.7725043151661, -122.442377976273)",160422360-82 -103330270,72,10106654,Structure Fire,11/29/2010,11/29/2010,11/29/2010 05:58:27 PM,11/29/2010 05:59:32 PM,11/29/2010 06:00:01 PM,11/29/2010 06:00:24 PM,11/29/2010 06:08:03 PM,04/25/2016 02:07:22 PM,04/25/2016 02:07:22 PM,Other,11/29/2010 06:20:11 PM,2400 Block of 18TH AVE,SF,94116,B08,40,7376,3,3,3,true,,1,MEDIC,6,8,7,West of Twin Peaks,"(37.7421684750396, -122.474489961715)",103330270-72 -110500398,E08,11016708,Medical Incident,02/19/2011,02/19/2011,02/19/2011 10:58:20 PM,02/19/2011 10:59:51 PM,02/19/2011 11:00:26 PM,02/19/2011 11:01:49 PM,02/19/2011 11:03:46 PM,04/25/2016 02:06:00 PM,04/25/2016 02:06:00 PM,Other,02/19/2011 11:04:59 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7821372491619, -122.397814506334)",110500398-E08 -160900933,85,16035638,Medical Incident,03/30/2016,03/30/2016,03/30/2016 09:01:22 AM,03/30/2016 09:02:30 AM,03/30/2016 09:04:26 AM,03/30/2016 09:04:44 AM,03/30/2016 09:10:55 AM,03/30/2016 09:12:36 AM,03/30/2016 09:28:50 AM,Code 2 Transport,03/30/2016 10:14:03 AM,100 Block of KISKA RD,San Francisco,94124,B10,17,6625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7304008659736, -122.378478464786)",160900933-85 -122950087,AM16,12097763,Medical Incident,10/21/2012,10/20/2012,10/21/2012 07:43:26 AM,10/21/2012 07:44:33 AM,10/21/2012 07:45:07 AM,10/21/2012 07:45:51 AM,10/21/2012 07:47:32 AM,10/21/2012 07:54:17 AM,10/21/2012 08:25:47 AM,Code 2 Transport,10/21/2012 08:30:00 AM,VALENCIA ST/DUBOCE AV,SF,94103,B02,36,5126,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7698676980277, -122.422364819149)",122950087-AM16 -160543001,86,16021709,Medical Incident,02/23/2016,02/23/2016,02/23/2016 05:39:00 PM,02/23/2016 05:41:18 PM,02/23/2016 05:42:15 PM,02/23/2016 05:42:23 PM,02/23/2016 06:06:18 PM,02/23/2016 06:30:47 PM,02/23/2016 07:03:26 PM,Code 2 Transport,02/23/2016 07:15:25 PM,600 Block of LAGUNA ST,San Francisco,94102,B02,36,3413,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.777167946661, -122.426337322201)",160543001-86 -131530179,E16,13051830,Structure Fire,06/02/2013,06/02/2013,06/02/2013 01:19:35 PM,06/02/2013 01:20:27 PM,06/02/2013 01:20:48 PM,06/02/2013 01:21:24 PM,06/02/2013 01:25:37 PM,04/25/2016 01:52:29 PM,04/25/2016 01:52:29 PM,Other,06/02/2013 01:31:54 PM,2400 Block of HYDE ST,SF,94109,B01,28,1614,3,3,3,true,Alarm,1,ENGINE,7,1,2,Russian Hill,"(37.8040538571982, -122.420097105595)",131530179-E16 -112490204,T18,11082142,Alarms,09/06/2011,09/06/2011,09/06/2011 01:47:48 PM,09/06/2011 01:49:03 PM,09/06/2011 01:49:23 PM,09/06/2011 01:50:59 PM,09/06/2011 01:53:25 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Other,09/06/2011 02:19:50 PM,1800 Block of 30TH AVE,SF,94122,B08,18,7515,3,3,3,false,,1,TRUCK,3,8,4,Sunset/Parkside,"(37.7527846529683, -122.488272720267)",112490204-T18 -160823627,KM07,16032738,Medical Incident,03/22/2016,03/22/2016,03/22/2016 08:37:40 PM,03/22/2016 08:39:41 PM,03/22/2016 08:39:57 PM,03/22/2016 08:41:17 PM,03/22/2016 08:51:42 PM,03/22/2016 09:07:18 PM,03/22/2016 09:29:50 PM,Code 2 Transport,03/22/2016 10:01:50 PM,400 Block of EDDY ST,San Francisco,94109,B02,3,1545,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7836739523567, -122.415072980803)",160823627-KM07 -132610180,B01,13088364,Alarms,09/18/2013,09/18/2013,09/18/2013 11:45:26 AM,09/18/2013 11:45:30 AM,09/18/2013 11:46:42 AM,09/18/2013 11:48:19 AM,09/18/2013 11:50:59 AM,04/25/2016 01:50:43 PM,04/25/2016 01:50:43 PM,Other,09/18/2013 11:59:43 AM,600 Block of STOCKTON ST,SF,94108,B01,2,1325,3,3,3,false,Alarm,1,CHIEF,1,1,3,Financial District/South Beach,"(37.7917834962828, -122.407352629091)",132610180-B01 -113270018,E03,11108433,Medical Incident,11/23/2011,11/22/2011,11/23/2011 01:34:58 AM,11/23/2011 01:35:30 AM,11/23/2011 01:35:44 AM,11/23/2011 01:37:46 AM,11/23/2011 01:40:56 AM,04/25/2016 02:01:30 PM,04/25/2016 02:01:30 PM,Other,11/23/2011 01:54:37 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",113270018-E03 -140990080,E03,14033348,Medical Incident,04/09/2014,04/08/2014,04/09/2014 07:40:44 AM,04/09/2014 07:43:05 AM,04/09/2014 07:43:35 AM,04/09/2014 07:43:44 AM,04/09/2014 07:45:15 AM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Code 2 Transport,04/09/2014 07:56:33 AM,CEDAR ST/POLK ST,SAN FRANCISCO,94109,B04,3,1641,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,6,Tenderloin,"(37.7863589505026, -122.419833090702)",140990080-E03 -160601119,60,16023839,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:13:04 AM,02/29/2016 10:13:34 AM,02/29/2016 10:13:44 AM,02/29/2016 10:13:57 AM,02/29/2016 10:19:07 AM,02/29/2016 10:35:22 AM,02/29/2016 10:49:24 AM,Code 2 Transport,02/29/2016 11:27:06 AM,8TH ST/MARKET ST,San Francisco,94103,B02,1,2317,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",160601119-60 -160382527,66,16015300,Medical Incident,02/07/2016,02/07/2016,02/07/2016 04:22:32 PM,02/07/2016 04:23:32 PM,02/07/2016 04:25:04 PM,02/07/2016 04:25:11 PM,02/07/2016 04:33:51 PM,02/07/2016 04:52:03 PM,02/07/2016 05:13:08 PM,Code 2 Transport,02/07/2016 06:05:25 PM,0 Block of RIDGEWOOD AVE,San Francisco,94112,B09,15,8236,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7302535712103, -122.453470578976)",160382527-66 -103510305,T19,10112699,Citizen Assist / Service Call,12/17/2010,12/17/2010,12/17/2010 06:07:33 PM,12/17/2010 06:09:47 PM,12/17/2010 06:09:55 PM,12/17/2010 06:12:28 PM,12/17/2010 06:16:52 PM,04/25/2016 02:07:04 PM,04/25/2016 02:07:04 PM,Other,12/17/2010 06:44:44 PM,100 Block of FOREST VIEW DR,SF,94132,B08,19,8736,3,3,3,false,,1,TRUCK,1,8,7,Sunset/Parkside,"(37.7317142572882, -122.483658970173)",103510305-T19 -130470281,E05,13016078,Medical Incident,02/16/2013,02/16/2013,02/16/2013 03:31:06 PM,02/16/2013 03:33:22 PM,02/16/2013 03:33:39 PM,02/16/2013 03:34:00 PM,02/16/2013 03:52:04 PM,04/25/2016 01:54:15 PM,04/25/2016 01:54:15 PM,Other,02/16/2013 04:08:59 PM,300 Block of VAN NESS AVE,SF,94102,B02,36,3165,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.7791421967394, -122.420215389829)",130470281-E05 -102490223,E03,10078733,Structure Fire,09/06/2010,09/06/2010,09/06/2010 04:29:59 PM,09/06/2010 04:30:28 PM,09/06/2010 04:30:39 PM,09/06/2010 04:31:17 PM,09/06/2010 04:33:16 PM,04/25/2016 02:08:43 PM,04/25/2016 02:08:43 PM,Other,09/06/2010 05:59:17 PM,0 Block of CLEARY CT,SF,94109,B04,3,3323,3,3,3,true,,1,ENGINE,2,4,5,Western Addition,"(37.7841466012998, -122.426445754167)",102490223-E03 -120090228,E06,12003143,Medical Incident,01/09/2012,01/09/2012,01/09/2012 01:46:33 PM,01/09/2012 01:48:06 PM,01/09/2012 01:48:32 PM,01/09/2012 01:49:52 PM,01/09/2012 01:52:32 PM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/09/2012 02:00:39 PM,100 Block of OTIS ST,SF,94103,B02,36,5125,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Mission,"(37.7709133372974, -122.420304994325)",120090228-E06 -122180109,66,12072249,Traffic Collision,08/05/2012,08/05/2012,08/05/2012 08:34:30 AM,08/05/2012 08:35:23 AM,08/05/2012 08:35:42 AM,08/05/2012 08:36:32 AM,08/05/2012 08:40:13 AM,08/05/2012 08:57:16 AM,08/05/2012 09:08:59 AM,Other,08/05/2012 10:07:02 AM,MISSION ST/ALLISON ST,SF,94112,B09,43,6176,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7146606201137, -122.442564962687)",122180109-66 -132470014,94,13083195,Medical Incident,09/04/2013,09/03/2013,09/04/2013 01:08:14 AM,09/04/2013 01:11:03 AM,09/04/2013 01:11:13 AM,09/04/2013 01:11:23 AM,09/04/2013 01:16:40 AM,09/04/2013 01:33:18 AM,09/04/2013 01:37:20 AM,Code 2 Transport,09/04/2013 01:56:26 AM,7TH ST/MARKET ST,SF,94103,B03,1,1455,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",132470014-94 -131390099,E13,13046935,Medical Incident,05/19/2013,05/18/2013,05/19/2013 07:13:14 AM,05/19/2013 07:13:33 AM,05/19/2013 07:18:09 AM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,04/25/2016 01:52:43 PM,Other,05/19/2013 07:18:56 AM,MISSION ST/SPEAR ST,SF,94105,B03,35,2111,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,3,6,Financial District/South Beach,"(37.7925372164019, -122.394059624933)",131390099-E13 -122980176,RC3,12098759,Medical Incident,10/24/2012,10/24/2012,10/24/2012 12:49:17 PM,10/24/2012 12:50:28 PM,10/24/2012 12:50:44 PM,04/25/2016 01:56:08 PM,10/24/2012 12:53:55 PM,04/25/2016 01:56:08 PM,04/25/2016 01:56:08 PM,Other,10/24/2012 01:13:04 PM,HARRISON ST/11TH ST,SF,94103,B02,36,5112,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,2,6,Mission,"(37.7706298531325, -122.41247993514)",122980176-RC3 -122020381,KM07,12067279,Medical Incident,07/20/2012,07/20/2012,07/20/2012 09:59:54 PM,07/20/2012 10:03:01 PM,07/20/2012 10:06:37 PM,07/20/2012 10:08:26 PM,07/20/2012 10:19:46 PM,07/20/2012 10:33:56 PM,07/20/2012 10:57:52 PM,Code 2 Transport,07/20/2012 11:19:25 PM,400 Block of SAWYER ST,SF,94134,B09,44,6263,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,Visitacion Valley,"(37.7124692034838, -122.414790344433)",122020381-KM07 -110940055,RC1,11031104,Structure Fire,04/04/2011,04/03/2011,04/04/2011 06:05:59 AM,04/04/2011 06:07:01 AM,04/04/2011 06:07:16 AM,04/04/2011 06:26:15 AM,04/25/2016 02:05:17 PM,04/04/2011 06:35:35 AM,04/25/2016 02:05:17 PM,Other,04/04/2011 07:03:50 AM,700 Block of BUSH ST,SF,94108,B01,2,1361,3,3,3,true,,1,RESCUE CAPTAIN,11,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",110940055-RC1 -110280046,E36,11009119,Structure Fire,01/28/2011,01/27/2011,01/28/2011 06:24:20 AM,01/28/2011 06:24:20 AM,01/28/2011 06:24:58 AM,01/28/2011 06:26:42 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 06:29:34 AM,15TH ST/MISSION ST,SF,94103,B02,36,5279,3,3,3,true,,1,ENGINE,2,2,9,Mission,"(37.7666736014927, -122.419825235405)",110280046-E36 -160892537,76,16035395,Medical Incident,03/29/2016,03/29/2016,03/29/2016 04:00:37 PM,03/29/2016 04:02:12 PM,03/29/2016 04:02:41 PM,03/29/2016 04:02:48 PM,03/29/2016 04:12:12 PM,03/29/2016 04:35:15 PM,03/29/2016 05:15:44 PM,Code 2 Transport,03/29/2016 05:51:53 PM,700 Block of JERROLD AVE,San Francisco,94124,B10,17,6713,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7296708213986, -122.373440500902)",160892537-76 -160382139,71,16015253,Medical Incident,02/07/2016,02/07/2016,02/07/2016 02:27:44 PM,02/07/2016 02:29:09 PM,02/07/2016 02:29:40 PM,02/07/2016 02:30:04 PM,02/07/2016 02:45:01 PM,02/07/2016 02:55:51 PM,02/07/2016 03:34:57 PM,Code 2 Transport,02/07/2016 04:16:34 PM,1400 Block of HAIGHT ST,San Francisco,94117,B05,21,4466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,5,5,Haight Ashbury,"(37.7701631245604, -122.446150377215)",160382139-71 -160692136,64,16027509,Medical Incident,03/09/2016,03/09/2016,03/09/2016 02:32:06 PM,03/09/2016 02:33:26 PM,03/09/2016 02:33:58 PM,03/09/2016 02:34:05 PM,03/09/2016 03:00:54 PM,03/09/2016 03:00:58 PM,03/09/2016 03:30:58 PM,Code 2 Transport,03/09/2016 04:19:24 PM,600 Block of EDDY ST,San Francisco,94109,B02,3,1643,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7832603861296, -122.41836615418)",160692136-64 -102760167,E01,10087714,Structure Fire,10/03/2010,10/03/2010,10/03/2010 11:38:07 AM,10/03/2010 11:38:07 AM,10/03/2010 11:38:35 AM,10/03/2010 11:39:01 AM,10/03/2010 11:40:57 AM,04/25/2016 02:08:17 PM,04/25/2016 02:08:17 PM,Other,10/03/2010 11:41:11 AM,7TH ST/HOWARD ST,SF,94103,B03,1,2314,3,3,3,true,,1,ENGINE,1,2,6,South of Market,"(37.7779770860913, -122.409387007126)",102760167-E01 -130240201,E06,13008300,Medical Incident,01/24/2013,01/24/2013,01/24/2013 12:15:30 PM,01/24/2013 12:17:34 PM,01/24/2013 12:18:10 PM,04/25/2016 01:54:38 PM,01/24/2013 12:21:27 PM,04/25/2016 01:54:38 PM,04/25/2016 01:54:38 PM,Other,01/24/2013 12:28:42 PM,0 Block of CHURCH ST,SF,94114,B02,6,3525,2,2,2,true,Non Life-threatening,1,ENGINE,1,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",130240201-E06 -123050494,E01,12101455,Medical Incident,10/31/2012,10/31/2012,10/31/2012 09:59:26 PM,10/31/2012 09:59:26 PM,10/31/2012 09:59:26 PM,10/31/2012 09:59:49 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,04/25/2016 01:56:01 PM,Other,10/31/2012 10:03:27 PM,MASON ST/TURK ST,SF,94103,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",123050494-E01 -160442142,67,16017734,Medical Incident,02/13/2016,02/13/2016,02/13/2016 03:23:45 PM,02/13/2016 03:25:07 PM,02/13/2016 03:27:45 PM,02/13/2016 03:27:45 PM,02/13/2016 03:32:36 PM,02/13/2016 03:47:05 PM,02/13/2016 03:57:32 PM,Code 2 Transport,02/13/2016 04:36:35 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7650513381945, -122.419668973861)",160442142-67 -120260253,RC2,12008778,Medical Incident,01/26/2012,01/26/2012,01/26/2012 04:40:27 PM,01/26/2012 04:41:33 PM,01/26/2012 04:41:54 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,04/25/2016 02:00:26 PM,Other,01/26/2012 04:49:30 PM,3600 Block of CALIFORNIA ST,SF,94118,B07,10,4436,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,2,Presidio Heights,"(37.7862805335991, -122.454923065308)",120260253-RC2 -103600232,55,10115590,Medical Incident,12/26/2010,12/26/2010,12/26/2010 06:58:37 PM,12/26/2010 06:59:51 PM,12/26/2010 06:59:57 PM,12/26/2010 07:00:18 PM,12/26/2010 07:05:31 PM,12/26/2010 07:15:33 PM,12/26/2010 07:32:03 PM,Code 2 Transport,12/26/2010 07:52:43 PM,100 Block of DRUMM ST,SF,94111,B01,13,1115,3,3,3,true,,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7950362552473, -122.396610479798)",103600232-55 -160430821,KM06,16017202,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:46:11 AM,02/12/2016 08:47:48 AM,02/12/2016 08:48:06 AM,02/12/2016 08:48:25 AM,02/12/2016 09:05:13 AM,02/12/2016 09:19:31 AM,02/12/2016 09:31:15 AM,Code 2 Transport,02/12/2016 09:52:09 AM,0 Block of CORNWALL ST,San Francisco,94118,B07,10,7114,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7849777439165, -122.459697621782)",160430821-KM06 -122950102,T02,12097778,Alarms,10/21/2012,10/21/2012,10/21/2012 09:20:54 AM,10/21/2012 09:20:55 AM,10/21/2012 09:21:01 AM,10/21/2012 09:21:58 AM,10/21/2012 09:25:20 AM,04/25/2016 01:56:11 PM,04/25/2016 01:56:11 PM,Other,10/21/2012 09:29:08 AM,900 Block of CALIFORNIA ST,SF,94108,B01,41,1418,3,3,3,false,Alarm,1,TRUCK,2,1,3,Nob Hill,"(37.7918843297678, -122.40998357204)",122950102-T02 -160490338,AM02,16019604,Traffic Collision,02/18/2016,02/17/2016,02/18/2016 05:20:47 AM,02/18/2016 05:22:57 AM,02/18/2016 05:23:42 AM,02/18/2016 05:24:19 AM,02/18/2016 05:28:33 AM,02/18/2016 05:43:05 AM,02/18/2016 05:54:34 AM,Code 2 Transport,02/18/2016 06:15:13 AM,FRANKLIN ST/GOLDEN GATE AV,San Francisco,94102,B02,36,3215,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7808210471753, -122.422086793996)",160490338-AM02 -111730045,E31,11056963,Alarms,06/22/2011,06/21/2011,06/22/2011 03:36:52 AM,06/22/2011 03:37:09 AM,06/22/2011 03:37:16 AM,06/22/2011 03:37:39 AM,06/22/2011 03:38:48 AM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 03:39:02 AM,FUNSTON AV/BALBOA ST,SF,94118,B07,31,7145,3,3,3,false,,1,ENGINE,1,7,1,Inner Richmond,"(37.7768925553459, -122.471505993296)",111730045-E31 -160852798,AM10,16033877,Medical Incident,03/25/2016,03/25/2016,03/25/2016 05:12:56 PM,03/25/2016 05:12:56 PM,03/25/2016 05:13:14 PM,03/25/2016 05:13:53 PM,03/25/2016 05:19:01 PM,03/25/2016 05:36:35 PM,03/25/2016 05:50:07 PM,Code 2 Transport,03/25/2016 06:10:24 PM,2400 Block of MISSION ST,San Francisco,94110,B06,7,5446,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7576217212029, -122.418887293065)",160852798-AM10 -160840481,AM24,16033252,Medical Incident,03/24/2016,03/23/2016,03/24/2016 06:21:38 AM,03/24/2016 06:23:14 AM,03/24/2016 06:23:48 AM,03/24/2016 06:24:49 AM,03/24/2016 06:35:47 AM,03/24/2016 07:20:25 AM,03/24/2016 07:47:40 AM,Code 2 Transport,03/24/2016 08:37:15 AM,1400 Block of EDDY ST,San Francisco,94115,B05,5,3515,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Western Addition,"(37.7814827356164, -122.431458216164)",160840481-AM24 -160331110,KM02,16012912,Medical Incident,02/02/2016,02/02/2016,02/02/2016 10:08:55 AM,02/02/2016 10:09:04 AM,02/02/2016 10:09:36 AM,02/02/2016 10:10:22 AM,02/02/2016 10:17:06 AM,02/02/2016 10:31:12 AM,02/02/2016 10:41:27 AM,Code 2 Transport,02/02/2016 11:39:58 AM,200 Block of 2ND ST,San Francisco,94105,B03,1,2146,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Financial District/South Beach,"(37.7865975380738, -122.397931681706)",160331110-KM02 -133000254,T19,13102004,Medical Incident,10/27/2013,10/27/2013,10/27/2013 04:08:46 PM,10/27/2013 04:09:25 PM,10/27/2013 04:10:12 PM,10/27/2013 04:11:35 PM,10/27/2013 04:15:50 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 04:23:53 PM,2600 Block of 18TH AVE,SF,94116,B08,40,7411,E,E,3,false,Non Life-threatening,1,TRUCK,3,8,7,West of Twin Peaks,"(37.7384208110093, -122.474367707285)",133000254-T19 -112440256,E36,11080509,Traffic Collision,09/01/2011,09/01/2011,09/01/2011 04:27:00 PM,09/01/2011 04:29:30 PM,09/01/2011 04:30:14 PM,09/01/2011 04:31:24 PM,09/01/2011 04:34:08 PM,04/25/2016 02:02:53 PM,04/25/2016 02:02:53 PM,Other,09/01/2011 04:40:28 PM,DUBOCE AV/MISSION ST,SF,94103,B02,36,5124,2,2,2,true,,1,ENGINE,1,2,6,Mission,"(37.7701114489219, -122.420008323243)",112440256-E36 -130130047,E31,13004306,Medical Incident,01/13/2013,01/12/2013,01/13/2013 02:04:23 AM,01/13/2013 02:05:11 AM,01/13/2013 02:06:06 AM,01/13/2013 02:08:04 AM,01/13/2013 02:09:44 AM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/13/2013 02:12:28 AM,3RD AV/GEARY BL,SF,94118,B07,31,7116,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Inner Richmond,"(37.78116026165, -122.461062828563)",130130047-E31 -132000207,E03,13067807,Alarms,07/19/2013,07/19/2013,07/19/2013 01:44:51 PM,07/19/2013 01:46:10 PM,07/19/2013 01:46:40 PM,04/25/2016 01:51:44 PM,07/19/2013 01:48:21 PM,04/25/2016 01:51:44 PM,04/25/2016 01:51:44 PM,Other,07/19/2013 02:16:34 PM,1000 Block of POST ST,SF,94109,B04,3,1641,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7868785029278, -122.419088531104)",132000207-E03 -103590174,T11,10115224,Alarms,12/25/2010,12/25/2010,12/25/2010 01:27:07 PM,12/25/2010 01:28:07 PM,12/25/2010 01:28:13 PM,12/25/2010 01:31:56 PM,12/25/2010 01:34:03 PM,04/25/2016 02:06:56 PM,04/25/2016 02:06:56 PM,Other,12/25/2010 01:35:17 PM,200 Block of RED ROCK WAY,SF,94131,B06,26,8167,3,3,3,false,,1,TRUCK,3,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",103590174-T11 -133360376,RS1,13114057,Structure Fire,12/02/2013,12/02/2013,12/02/2013 10:40:56 PM,12/02/2013 10:41:38 PM,12/02/2013 10:41:56 PM,12/02/2013 10:43:32 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,04/25/2016 01:49:28 PM,Other,12/02/2013 10:48:53 PM,1900 Block of GROVE ST,SF,94117,B05,21,4515,3,3,3,false,Alarm,1,RESCUE SQUAD,11,5,5,Lone Mountain/USF,"(37.7746178646924, -122.448708472769)",133360376-RS1 -140290218,77,14009909,Medical Incident,01/29/2014,01/29/2014,01/29/2014 02:15:49 PM,01/29/2014 02:16:44 PM,01/29/2014 02:17:11 PM,01/29/2014 02:17:32 PM,01/29/2014 02:20:47 PM,01/29/2014 02:34:05 PM,01/29/2014 02:57:58 PM,Code 2 Transport,01/29/2014 03:32:02 PM,2100 Block of WEBSTER ST,SF,94115,B04,38,3466,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7904907937316, -122.432404755801)",140290218-77 -112530410,B06,11083655,Structure Fire,09/10/2011,09/10/2011,09/10/2011 10:55:40 PM,09/10/2011 10:55:40 PM,09/10/2011 10:55:56 PM,09/10/2011 10:58:33 PM,09/10/2011 11:01:07 PM,04/25/2016 02:02:44 PM,04/25/2016 02:02:44 PM,Other,09/10/2011 11:16:37 PM,3300 Block of 23RD ST,SF,94110,B06,11,552,3,3,3,false,,1,CHIEF,3,6,9,Mission,"(37.7536816295495, -122.420253564524)",112530410-B06 -160212444,82,16008448,Medical Incident,01/21/2016,01/21/2016,01/21/2016 03:33:47 PM,01/21/2016 03:35:06 PM,01/21/2016 03:35:21 PM,01/21/2016 03:35:43 PM,01/21/2016 03:44:03 PM,01/21/2016 03:55:19 PM,01/21/2016 04:05:14 PM,Code 2 Transport,01/21/2016 04:32:27 PM,100 Block of GRANT AVE,San Francisco,94108,B01,1,1316,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7879895530952, -122.405154804884)",160212444-82 -160620340,89,16024559,Medical Incident,03/02/2016,03/01/2016,03/02/2016 04:44:47 AM,03/02/2016 04:46:48 AM,03/02/2016 04:47:11 AM,03/02/2016 04:47:19 AM,03/02/2016 04:51:09 AM,03/02/2016 05:18:13 AM,03/02/2016 05:23:58 AM,Code 2 Transport,03/02/2016 05:41:30 AM,1400 Block of SUTTER ST,San Francisco,94109,B04,3,3223,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,2,Western Addition,"(37.7871805642867, -122.424214337818)",160620340-89 -132630141,RS1,13089072,Structure Fire,09/20/2013,09/20/2013,09/20/2013 10:05:21 AM,09/20/2013 10:07:33 AM,09/20/2013 10:09:06 AM,09/20/2013 10:12:10 AM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,04/25/2016 01:50:41 PM,Other,09/20/2013 10:14:37 AM,3600 Block of LYON ST,SF,94123,B04,16,4323,3,3,3,false,Fire,1,RESCUE SQUAD,12,4,2,Marina,"(37.8046076925873, -122.448191230185)",132630141-RS1 -132970318,75,13100988,Medical Incident,10/24/2013,10/24/2013,10/24/2013 07:10:24 PM,10/24/2013 07:14:20 PM,10/24/2013 07:16:41 PM,10/24/2013 07:17:05 PM,10/24/2013 07:30:55 PM,04/25/2016 01:50:06 PM,04/25/2016 01:50:06 PM,Other,10/24/2013 07:36:09 PM,700 Block of MARKET ST,SF,94103,B03,1,2212,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7864795345969, -122.404724351014)",132970318-75 -160250057,76,16009739,Medical Incident,01/25/2016,01/24/2016,01/25/2016 12:27:05 AM,01/25/2016 12:28:43 AM,01/25/2016 12:29:11 AM,01/25/2016 12:29:18 AM,01/25/2016 12:37:16 AM,01/25/2016 12:54:39 AM,01/25/2016 01:05:23 AM,Code 2 Transport,01/25/2016 01:42:13 AM,700 Block of NATOMA ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7760099210785, -122.412889415461)",160250057-76 -103030318,95,10096904,Medical Incident,10/30/2010,10/30/2010,10/30/2010 09:02:22 PM,10/30/2010 09:03:21 PM,10/30/2010 09:04:36 PM,10/30/2010 09:04:42 PM,10/30/2010 09:09:48 PM,10/30/2010 09:16:19 PM,10/30/2010 09:29:53 PM,Code 2 Transport,10/30/2010 09:58:32 PM,100 Block of FILLMORE ST,SF,94117,B02,6,3525,3,3,3,true,,1,MEDIC,2,2,5,Hayes Valley,"(37.7704847870776, -122.430052169451)",103030318-95 -160691531,KM04,16027451,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:54:36 AM,03/09/2016 11:56:53 AM,03/09/2016 11:57:06 AM,03/09/2016 11:57:56 AM,03/09/2016 12:03:36 PM,03/09/2016 12:36:40 PM,03/09/2016 01:04:44 PM,Code 2 Transport,03/09/2016 01:47:27 PM,0 Block of ACTON ST,San Francisco,94112,B09,33,6213,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,11,Excelsior,"(37.7084890025884, -122.452569346731)",160691531-KM04 -110780223,T03,11025702,Structure Fire,03/19/2011,03/19/2011,03/19/2011 04:05:10 PM,03/19/2011 04:05:48 PM,03/19/2011 04:06:17 PM,03/19/2011 04:06:45 PM,03/19/2011 04:09:49 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 04:15:20 PM,1800 Block of OCTAVIA ST,SF,94109,B04,38,3325,3,3,3,false,,1,TRUCK,5,4,2,Pacific Heights,"(37.789273905949, -122.427091769146)",110780223-T03 -120830202,T16,12027578,Structure Fire,03/23/2012,03/23/2012,03/23/2012 01:51:22 PM,03/23/2012 01:51:22 PM,03/23/2012 01:51:31 PM,03/23/2012 01:52:08 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 01:53:55 PM,POLK ST/CHESTNUT ST,SF,94109,B01,16,3133,3,3,3,false,Alarm,1,TRUCK,2,1,2,Russian Hill,"(37.8024897363832, -122.423087806458)",120830202-T16 -103080148,RS1,10098657,Medical Incident,11/04/2010,11/04/2010,11/04/2010 10:40:26 AM,11/04/2010 10:42:19 AM,11/04/2010 10:43:16 AM,11/04/2010 10:43:43 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 10:43:59 AM,0 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,false,,1,RESCUE SQUAD,5,3,6,South of Market,"(37.7811458612596, -122.409026046516)",103080148-RS1 -112490219,77,11082153,Medical Incident,09/06/2011,09/06/2011,09/06/2011 02:08:20 PM,09/06/2011 02:10:46 PM,09/06/2011 02:11:06 PM,09/06/2011 02:11:32 PM,09/06/2011 02:15:59 PM,09/06/2011 02:38:52 PM,09/06/2011 03:09:46 PM,Code 2 Transport,09/06/2011 03:33:56 PM,400 Block of MARKET ST,SF,94105,B03,13,2143,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7912932514009, -122.398614610411)",112490219-77 -160613539,68,16024499,Medical Incident,03/01/2016,03/01/2016,03/01/2016 10:05:51 PM,03/01/2016 10:07:41 PM,03/01/2016 10:08:00 PM,03/01/2016 10:08:31 PM,03/01/2016 10:24:27 PM,03/01/2016 10:31:22 PM,03/01/2016 10:58:04 PM,Code 2 Transport,03/01/2016 11:34:09 PM,1400 Block of HALIBUT CT,Treasure Isla,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8248190426844, -122.375030442219)",160613539-68 -110090279,62,11003079,Structure Fire,01/09/2011,01/09/2011,01/09/2011 06:34:15 PM,01/09/2011 06:35:01 PM,01/09/2011 06:35:06 PM,01/09/2011 06:35:37 PM,01/09/2011 06:40:20 PM,04/25/2016 02:06:40 PM,04/25/2016 02:06:40 PM,Other,01/09/2011 06:52:32 PM,1900 Block of PACIFIC AVE,SF,94109,B04,38,3332,3,3,3,true,,1,MEDIC,7,4,2,Pacific Heights,"(37.794238248299, -122.42732552674)",110090279-62 -113190038,88,11105838,Medical Incident,11/15/2011,11/14/2011,11/15/2011 05:39:22 AM,11/15/2011 05:41:24 AM,11/15/2011 05:41:45 AM,11/15/2011 05:41:56 AM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,04/25/2016 02:01:38 PM,Other,11/15/2011 05:46:24 AM,100 Block of MAXWELL CT,SF,94103,B02,6,5214,3,3,3,true,,1,MEDIC,3,2,8,Mission,"(37.7669025720969, -122.423141850936)",113190038-88 -113080308,65,11102416,Medical Incident,11/04/2011,11/04/2011,11/04/2011 05:32:46 PM,11/04/2011 05:34:00 PM,11/04/2011 05:34:32 PM,11/04/2011 05:35:01 PM,11/04/2011 05:42:49 PM,11/04/2011 06:03:10 PM,11/04/2011 06:22:54 PM,Code 2 Transport,11/04/2011 06:58:51 PM,2400 Block of POST ST,SF,94115,B05,10,4235,3,3,3,true,,1,MEDIC,2,5,5,Japantown,"(37.7840561914976, -122.442179800386)",113080308-65 -112470324,64,11081566,Medical Incident,09/04/2011,09/04/2011,09/04/2011 07:04:19 PM,09/04/2011 07:05:09 PM,09/04/2011 07:05:37 PM,09/04/2011 07:05:54 PM,09/04/2011 07:11:45 PM,04/25/2016 02:02:50 PM,04/25/2016 02:02:50 PM,Other,09/04/2011 07:12:55 PM,500 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,,1,MEDIC,2,2,8,Mission,"(37.7641044099588, -122.42187797405)",112470324-64 -160560735,61,16022281,Medical Incident,02/25/2016,02/25/2016,02/25/2016 08:11:26 AM,02/25/2016 08:13:09 AM,02/25/2016 08:14:35 AM,02/25/2016 08:15:12 AM,02/25/2016 08:29:17 AM,02/25/2016 08:39:10 AM,02/25/2016 08:57:53 AM,Code 2 Transport,02/25/2016 09:19:56 AM,1200 Block of MARINER DR,Treasure Isla,94130,B03,48,2931,2,2,2,true,Non Life-threatening,1,MEDIC,2,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",160560735-61 -132300259,T01,13077720,Structure Fire,08/18/2013,08/18/2013,08/18/2013 04:17:57 PM,08/18/2013 04:17:58 PM,08/18/2013 04:19:19 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,04/25/2016 01:51:14 PM,Other,08/18/2013 04:19:53 PM,MASON ST/MARKET ST,SF,94103,B03,1,1365,3,3,3,false,Alarm,1,TRUCK,2,3,6,South of Market,"(37.7832878520296, -122.408952160052)",132300259-T01 -112040228,RS1,11067427,Medical Incident,07/23/2011,07/23/2011,07/23/2011 03:18:28 PM,07/23/2011 03:19:06 PM,07/23/2011 03:19:41 PM,07/23/2011 03:20:48 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,04/25/2016 02:03:31 PM,Other,07/23/2011 03:22:07 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,false,,1,RESCUE SQUAD,4,2,6,South of Market,"(37.7804785121736, -122.412512257219)",112040228-RS1 -132280177,E08,13076943,Medical Incident,08/16/2013,08/16/2013,08/16/2013 11:45:20 AM,08/16/2013 11:46:29 AM,08/16/2013 11:47:40 AM,08/16/2013 11:49:13 AM,08/16/2013 11:50:37 AM,04/25/2016 01:51:16 PM,04/25/2016 01:51:16 PM,No Merit,08/16/2013 11:52:56 AM,KING ST/4TH ST,SF,94107,B03,8,2236,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",132280177-E08 -113480156,E01,11115431,Medical Incident,12/14/2011,12/14/2011,12/14/2011 10:52:28 AM,12/14/2011 10:53:21 AM,12/14/2011 10:53:57 AM,12/14/2011 10:54:09 AM,12/14/2011 10:56:26 AM,04/25/2016 02:01:09 PM,04/25/2016 02:01:09 PM,Other,12/14/2011 11:02:06 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",113480156-E01 -140060338,89,14002253,Medical Incident,01/06/2014,01/06/2014,01/06/2014 06:43:59 PM,01/06/2014 06:46:23 PM,01/06/2014 06:48:54 PM,01/06/2014 06:49:14 PM,01/06/2014 07:01:07 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Medical Examiner,01/06/2014 07:31:26 PM,1200 Block of MISSION ST,SF,94103,B02,36,2336,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7765080370233, -122.414457764634)",140060338-89 -160211904,AM14,16008392,Medical Incident,01/21/2016,01/21/2016,01/21/2016 01:21:45 PM,01/21/2016 01:21:45 PM,01/21/2016 01:22:36 PM,01/21/2016 01:23:39 PM,01/21/2016 01:43:53 PM,01/21/2016 01:43:55 PM,01/21/2016 02:00:07 PM,Code 2 Transport,01/21/2016 02:32:48 PM,1300 Block of HOWARD ST,San Francisco,94103,B02,36,2342,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7742496611166, -122.414204535023)",160211904-AM14 -103420213,E01,10109487,Structure Fire,12/08/2010,12/08/2010,12/08/2010 01:02:58 PM,12/08/2010 01:03:31 PM,12/08/2010 01:03:55 PM,12/08/2010 01:05:34 PM,12/08/2010 01:06:41 PM,04/25/2016 02:07:13 PM,04/25/2016 02:07:13 PM,Other,12/08/2010 01:11:23 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,3,3,3,true,,1,ENGINE,3,2,6,Tenderloin,"(37.7854364798696, -122.41533612902)",103420213-E01 -132510355,E07,13084960,Medical Incident,09/08/2013,09/08/2013,09/08/2013 07:14:58 PM,09/08/2013 07:16:27 PM,09/08/2013 07:19:42 PM,04/25/2016 01:50:53 PM,09/08/2013 07:20:30 PM,04/25/2016 01:50:53 PM,04/25/2016 01:50:53 PM,Other,09/08/2013 07:35:32 PM,500 Block of CAPP ST,SF,94110,B06,7,5446,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7578954435745, -122.417957286582)",132510355-E07 -120750111,KM10,12024849,Medical Incident,03/15/2012,03/15/2012,03/15/2012 09:24:25 AM,03/15/2012 09:26:22 AM,03/15/2012 09:26:31 AM,03/15/2012 09:27:26 AM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 09:32:26 AM,IRVING ST/9TH AV,SF,94122,B08,22,7333,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,5,Inner Sunset,"(37.7640369903775, -122.466310621016)",120750111-KM10 -160844006,AM18,16033559,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:31:53 PM,03/24/2016 09:31:53 PM,03/24/2016 09:32:25 PM,03/24/2016 09:33:17 PM,03/24/2016 09:40:47 PM,03/24/2016 10:07:11 PM,03/24/2016 10:34:38 PM,Code 2 Transport,03/24/2016 11:29:13 PM,300 Block of FAXON AVE,San Francisco,94112,B09,15,8463,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209277240745, -122.460290446387)",160844006-AM18 -110780300,E02,11025766,Gas Leak (Natural and LP Gases),03/19/2011,03/19/2011,03/19/2011 07:31:25 PM,03/19/2011 07:33:18 PM,03/19/2011 07:33:43 PM,03/19/2011 07:35:20 PM,03/19/2011 07:44:26 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Fire,03/19/2011 07:44:51 PM,WASHINGTON ST/MASON ST,SF,94108,B01,2,1415,3,3,3,true,,1,ENGINE,1,1,3,Nob Hill,"(37.7945266519311, -122.41136404552)",110780300-E02 -160430654,73,16017188,Traffic Collision,02/12/2016,02/11/2016,02/12/2016 07:54:40 AM,02/12/2016 07:56:40 AM,02/12/2016 07:57:42 AM,02/12/2016 07:57:59 AM,02/12/2016 08:02:04 AM,02/12/2016 08:06:30 AM,02/12/2016 08:20:38 AM,Code 3 Transport,02/12/2016 09:06:30 AM,GENEVA AV/ATHENS ST,San Francisco,94112,B09,43,6173,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7134759484794, -122.434541126439)",160430654-73 -111960086,RC1,11064625,Medical Incident,07/15/2011,07/15/2011,07/15/2011 09:40:30 AM,07/15/2011 09:41:07 AM,07/15/2011 09:41:17 AM,07/15/2011 09:42:35 AM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 09:48:02 AM,3200 Block of BAKER ST,SF,94123,B04,16,4315,3,3,3,true,,1,RESCUE CAPTAIN,4,4,2,Marina,"(37.8009437239624, -122.446507731772)",111960086-RC1 -103580098,E02,10114849,Medical Incident,12/24/2010,12/24/2010,12/24/2010 09:16:56 AM,12/24/2010 09:17:34 AM,12/24/2010 09:17:50 AM,12/24/2010 09:19:03 AM,12/24/2010 09:22:11 AM,04/25/2016 02:06:57 PM,04/25/2016 02:06:57 PM,Other,12/24/2010 09:39:32 AM,900 Block of GRANT AVE,SF,94108,B01,2,1312,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7955759617339, -122.406632308192)",103580098-E02 -132850023,E06,13096812,Medical Incident,10/12/2013,10/11/2013,10/12/2013 01:07:02 AM,10/12/2013 01:07:49 AM,10/12/2013 01:08:19 AM,10/12/2013 01:10:09 AM,10/12/2013 01:10:34 AM,04/25/2016 01:50:18 PM,04/25/2016 01:50:18 PM,Other,10/12/2013 01:23:21 AM,0 Block of SANCHEZ ST,SF,94114,B05,6,5131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7684539072982, -122.431342864403)",132850023-E06 -132140148,E34,13072232,Structure Fire,08/02/2013,08/02/2013,08/02/2013 11:46:11 AM,08/02/2013 11:46:35 AM,08/02/2013 11:48:55 AM,08/02/2013 11:50:13 AM,08/02/2013 11:53:27 AM,04/25/2016 01:51:31 PM,04/25/2016 01:51:31 PM,Other,08/02/2013 11:54:03 AM,800 Block of 28TH AVE,SF,94121,B10,14,7223,3,3,3,true,Alarm,1,ENGINE,4,7,1,Outer Richmond,"(37.7733597463577, -122.48739702419)",132140148-E34 -160453057,63,16018276,Medical Incident,02/14/2016,02/14/2016,02/14/2016 08:16:32 PM,02/14/2016 08:16:32 PM,02/14/2016 08:23:52 PM,02/14/2016 08:24:03 PM,02/14/2016 08:36:06 PM,02/14/2016 08:47:33 PM,02/14/2016 09:09:44 PM,Code 2 Transport,02/14/2016 09:35:08 PM,LAGUNA HONDA BL/DEWEY BL,San Francisco,94116,B08,39,8624,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,West of Twin Peaks,"(37.7472863214132, -122.459174374558)",160453057-63 -111230080,E33,11040545,Medical Incident,05/03/2011,05/02/2011,05/03/2011 06:52:39 AM,05/03/2011 06:53:24 AM,05/03/2011 06:55:24 AM,05/03/2011 07:05:00 AM,05/03/2011 07:06:25 AM,04/25/2016 02:04:49 PM,04/25/2016 02:04:49 PM,Fire,05/03/2011 07:15:03 AM,300 Block of CAPITOL AVE,SF,94112,B09,33,8374,2,2,2,true,,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7136131352586, -122.459099047791)",111230080-E33 -122610220,KM10,12086260,Medical Incident,09/17/2012,09/17/2012,09/17/2012 04:42:33 PM,09/17/2012 04:44:00 PM,09/17/2012 04:44:12 PM,09/17/2012 04:44:43 PM,09/17/2012 04:48:15 PM,09/17/2012 05:00:49 PM,09/17/2012 05:07:54 PM,Code 2 Transport,09/17/2012 05:31:00 PM,24TH ST/SOUTH VAN NESS AV,SF,94110,B06,7,5511,3,3,3,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7523727894276, -122.416265511485)",122610220-KM10 -120800319,57,12026683,Traffic Collision,03/20/2012,03/20/2012,03/20/2012 08:29:55 PM,03/20/2012 08:31:10 PM,03/20/2012 08:31:32 PM,04/25/2016 01:59:34 PM,03/20/2012 08:33:46 PM,03/20/2012 08:59:36 PM,03/20/2012 09:10:26 PM,Code 2 Transport,03/20/2012 09:40:30 PM,MARKET ST/TAYLOR ST,SF,94102,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",120800319-57 -112980152,E44,11098830,Medical Incident,10/25/2011,10/25/2011,10/25/2011 10:56:24 AM,10/25/2011 10:57:52 AM,10/25/2011 10:58:02 AM,10/25/2011 10:58:20 AM,10/25/2011 11:02:09 AM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/25/2011 11:15:03 AM,200 Block of REY ST,SF,94134,B09,44,6252,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7106489931744, -122.41246880128)",112980152-E44 -132420323,58,13081743,Medical Incident,08/30/2013,08/30/2013,08/30/2013 05:37:20 PM,08/30/2013 05:40:19 PM,08/30/2013 05:40:37 PM,08/30/2013 05:41:26 PM,08/30/2013 05:47:38 PM,08/30/2013 06:15:39 PM,08/30/2013 06:38:52 PM,Code 2 Transport,08/30/2013 07:05:11 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,2,2,2,true,Non Life-threatening,1,MEDIC,2,6,8,Glen Park,"(37.7442928064892, -122.439091578977)",132420323-58 -132780284,T02,13094585,Alarms,10/05/2013,10/05/2013,10/05/2013 05:11:27 PM,10/05/2013 05:11:44 PM,10/05/2013 05:11:59 PM,10/05/2013 05:13:55 PM,10/05/2013 05:16:34 PM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,Other,10/05/2013 05:21:37 PM,800 Block of WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,false,Alarm,1,TRUCK,2,1,3,Chinatown,"(37.7950840597861, -122.407386889304)",132780284-T02 -102950402,E29,10094271,Medical Incident,10/22/2010,10/22/2010,10/22/2010 11:38:53 PM,10/22/2010 11:40:15 PM,10/22/2010 11:40:26 PM,10/22/2010 11:41:51 PM,10/22/2010 11:45:15 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/22/2010 11:52:47 PM,600 Block of TERRY A FRANCOIS BLVD,SF,94158,B03,8,948,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7680422578711, -122.386146958131)",102950402-E29 -102480030,E21,10078234,Medical Incident,09/05/2010,09/04/2010,09/05/2010 01:58:03 AM,09/05/2010 02:01:15 AM,09/05/2010 02:01:32 AM,09/05/2010 02:02:31 AM,09/05/2010 02:05:40 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 02:09:05 AM,1100 Block of MASONIC AVE,SF,94117,B05,21,4466,3,3,3,false,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7706848433161, -122.445371829452)",102480030-E21 -120150261,E18,12005170,Traffic Collision,01/15/2012,01/15/2012,01/15/2012 06:34:56 PM,01/15/2012 06:35:28 PM,01/15/2012 06:35:59 PM,01/15/2012 06:37:08 PM,01/15/2012 06:40:18 PM,04/25/2016 02:00:37 PM,04/25/2016 02:00:37 PM,Other,01/15/2012 06:42:22 PM,41ST AV/KIRKHAM ST,SF,94122,B08,23,7631,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7587939684534, -122.500436025202)",120150261-E18 -131830142,KM11,13062328,Medical Incident,07/02/2013,07/02/2013,07/02/2013 11:25:57 AM,07/02/2013 11:27:30 AM,07/02/2013 11:27:44 AM,07/02/2013 11:28:39 AM,07/02/2013 11:45:19 AM,07/02/2013 12:03:15 PM,07/02/2013 12:29:46 PM,Code 2 Transport,07/02/2013 12:46:12 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",131830142-KM11 -110020097,E20,11000595,Structure Fire,01/02/2011,01/02/2011,01/02/2011 09:07:13 AM,01/02/2011 09:08:29 AM,01/02/2011 09:09:12 AM,01/02/2011 09:09:53 AM,01/02/2011 09:13:34 AM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 10:52:02 AM,300 Block of MARIETTA DR,SF,94127,B09,39,8654,3,3,3,true,,1,ENGINE,1,9,7,West of Twin Peaks,"(37.7393518542994, -122.444849892886)",110020097-E20 -123410221,E31,12113805,Other,12/06/2012,12/06/2012,12/06/2012 01:19:58 PM,12/06/2012 01:21:07 PM,12/06/2012 01:21:24 PM,12/06/2012 01:22:56 PM,12/06/2012 01:25:33 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/06/2012 02:08:37 PM,0 Block of 18TH AVE,SF,94121,B07,31,7163,3,3,3,true,Alarm,1,ENGINE,1,7,2,Seacliff,"(37.7864413627117, -122.477600959016)",123410221-E31 -120560197,RS1,12018500,Structure Fire,02/25/2012,02/25/2012,02/25/2012 02:44:40 PM,02/25/2012 02:44:59 PM,02/25/2012 02:45:23 PM,02/25/2012 02:46:54 PM,02/25/2012 02:49:33 PM,04/25/2016 01:59:58 PM,04/25/2016 01:59:58 PM,Other,02/25/2012 02:51:56 PM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,Fire,1,RESCUE SQUAD,5,2,6,Tenderloin,"(37.7842880919216, -122.416878028422)",120560197-RS1 -131100129,81,13036963,Medical Incident,04/20/2013,04/20/2013,04/20/2013 10:30:51 AM,04/20/2013 10:31:59 AM,04/20/2013 10:32:06 AM,04/20/2013 10:32:18 AM,04/20/2013 10:34:42 AM,04/20/2013 10:48:32 AM,04/20/2013 10:54:07 AM,Code 3 Transport,04/20/2013 11:42:33 AM,3RD ST/PALOU AV,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",131100129-81 -120450049,E15,12014874,Medical Incident,02/14/2012,02/13/2012,02/14/2012 06:10:44 AM,02/14/2012 06:11:45 AM,02/14/2012 06:12:19 AM,02/14/2012 06:13:55 AM,02/14/2012 06:16:43 AM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/14/2012 06:38:23 AM,0 Block of BANNOCK ST,SF,94112,B09,15,8332,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7187230468178, -122.442430562594)",120450049-E15 -122900185,B04,12095966,Structure Fire,10/16/2012,10/16/2012,10/16/2012 11:52:26 AM,10/16/2012 11:54:05 AM,10/16/2012 11:54:33 AM,10/16/2012 11:56:38 AM,10/16/2012 12:00:54 PM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Other,10/16/2012 12:05:52 PM,0 Block of LAGUNA ST,SF,94102,B02,36,3416,3,3,3,false,Alarm,1,CHIEF,8,2,8,Hayes Valley,"(37.7713406311126, -122.42516067223)",122900185-B04 -121090225,E40,12036082,Administrative,04/18/2012,04/18/2012,04/18/2012 03:14:20 PM,04/18/2012 03:14:24 PM,04/18/2012 03:14:39 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,04/25/2016 01:59:07 PM,Other,04/18/2012 03:15:06 PM,2100 Block of 18TH AVE,SF,94116,B08,40,7417,3,3,3,true,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7477565317249, -122.475021191856)",121090225-E40 -132490160,87,13084004,Medical Incident,09/06/2013,09/06/2013,09/06/2013 11:56:30 AM,09/06/2013 11:57:52 AM,09/06/2013 11:58:32 AM,09/06/2013 11:59:16 AM,09/06/2013 12:08:14 PM,09/06/2013 12:26:05 PM,09/06/2013 12:34:16 PM,Code 2 Transport,09/06/2013 01:11:05 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",132490160-87 -132110039,AM22,13071254,Medical Incident,07/30/2013,07/29/2013,07/30/2013 04:37:46 AM,07/30/2013 04:39:07 AM,07/30/2013 04:40:55 AM,07/30/2013 04:41:48 AM,07/30/2013 04:51:40 AM,07/30/2013 05:03:21 AM,07/30/2013 05:13:52 AM,Code 2 Transport,07/30/2013 05:36:59 AM,500 Block of EDNA ST,SF,94112,B09,15,8231,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7311244024886, -122.446506780022)",132110039-AM22 -110940294,B06,11031303,Structure Fire,04/04/2011,04/04/2011,04/04/2011 05:44:55 PM,04/04/2011 05:45:54 PM,04/04/2011 05:46:11 PM,04/04/2011 05:47:01 PM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,04/25/2016 02:05:16 PM,Other,04/04/2011 05:51:58 PM,0 Block of DUKES CT,SF,94124,B10,17,6517,3,3,3,false,,1,CHIEF,9,10,10,Bayview Hunters Point,"(37.736996286224, -122.3867841243)",110940294-B06 -121540019,RC3,12050845,Medical Incident,06/02/2012,06/01/2012,06/02/2012 01:05:53 AM,06/02/2012 01:07:08 AM,06/02/2012 01:07:22 AM,06/02/2012 01:07:30 AM,06/02/2012 01:13:29 AM,04/25/2016 01:58:24 PM,04/25/2016 01:58:24 PM,Other,06/02/2012 01:16:12 AM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",121540019-RC3 -113490345,AM18,11115946,Medical Incident,12/15/2011,12/15/2011,12/15/2011 10:10:46 PM,12/15/2011 10:12:07 PM,12/15/2011 10:13:36 PM,12/15/2011 10:14:12 PM,12/15/2011 10:17:03 PM,04/25/2016 02:01:08 PM,04/25/2016 02:01:08 PM,Unable to Locate,12/15/2011 10:20:44 PM,FRANKLIN ST/GEARY BL,SF,94109,B04,3,3222,3,3,3,false,,1,PRIVATE,2,4,5,Western Addition,"(37.7854822436864, -122.423027555652)",113490345-AM18 -131900058,E01,13064637,Medical Incident,07/09/2013,07/08/2013,07/09/2013 07:18:22 AM,07/09/2013 07:20:01 AM,07/09/2013 07:20:28 AM,07/09/2013 07:20:51 AM,07/09/2013 07:23:53 AM,04/25/2016 01:51:53 PM,04/25/2016 01:51:53 PM,Other,07/09/2013 07:31:30 AM,500 Block of 5TH ST,SF,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",131900058-E01 -131570187,AM20,13053225,Medical Incident,06/06/2013,06/06/2013,06/06/2013 12:07:14 PM,06/06/2013 12:08:16 PM,06/06/2013 12:08:36 PM,06/06/2013 12:09:13 PM,06/06/2013 12:15:41 PM,06/06/2013 12:43:03 PM,06/06/2013 01:01:35 PM,Code 2 Transport,06/06/2013 01:30:08 PM,3200 Block of 23RD ST,SF,94110,B06,7,5511,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7538801435979, -122.416954468807)",131570187-AM20 -130750315,79,13025148,Medical Incident,03/16/2013,03/16/2013,03/16/2013 08:07:10 PM,03/16/2013 08:08:24 PM,03/16/2013 08:15:47 PM,03/16/2013 08:18:13 PM,03/16/2013 08:20:25 PM,03/16/2013 08:36:40 PM,03/16/2013 09:07:05 PM,Code 2 Transport,03/16/2013 09:31:03 PM,0 Block of SAINT FRANCIS PL,SF,94107,B03,1,2176,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7831676638716, -122.397825495268)",130750315-79 -133390249,53,13114934,Medical Incident,12/05/2013,12/05/2013,12/05/2013 03:08:27 PM,12/05/2013 03:11:01 PM,12/05/2013 03:14:50 PM,12/05/2013 03:15:21 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Other,12/05/2013 03:29:11 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",133390249-53 -160291105,KM09,16011386,Medical Incident,01/29/2016,01/29/2016,01/29/2016 10:05:09 AM,01/29/2016 10:06:58 AM,01/29/2016 10:07:27 AM,01/29/2016 10:08:05 AM,01/29/2016 10:17:19 AM,01/29/2016 10:37:31 AM,01/29/2016 10:48:30 AM,Code 2 Transport,01/29/2016 11:27:43 AM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160291105-KM09 -140080075,88,14002731,Medical Incident,01/08/2014,01/07/2014,01/08/2014 07:33:49 AM,01/08/2014 07:35:45 AM,01/08/2014 07:36:19 AM,01/08/2014 07:36:32 AM,01/08/2014 07:52:54 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Unable to Locate,01/08/2014 07:55:08 AM,SHOTWELL ST/16TH ST,SF,94110,B02,7,5237,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7652494943866, -122.416387524486)",140080075-88 -160663232,KM03,16026540,Medical Incident,03/06/2016,03/06/2016,03/06/2016 10:48:55 PM,03/06/2016 10:49:20 PM,03/06/2016 10:49:40 PM,03/06/2016 10:50:13 PM,03/06/2016 10:53:57 PM,03/06/2016 11:19:16 PM,03/06/2016 11:28:35 PM,Code 2 Transport,03/07/2016 12:04:11 AM,TURK ST/VAN NESS AV,San Francisco,94102,B02,3,3114,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7819607659915, -122.420638249893)",160663232-KM03 -132890376,KM14,13098469,Medical Incident,10/16/2013,10/16/2013,10/16/2013 10:44:03 PM,10/16/2013 10:45:58 PM,10/16/2013 10:46:15 PM,10/16/2013 10:46:58 PM,10/16/2013 11:06:08 PM,10/16/2013 11:07:06 PM,10/16/2013 11:19:06 PM,Code 2 Transport,10/16/2013 11:41:48 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",132890376-KM14 -131280190,AM08,13043270,Medical Incident,05/08/2013,05/08/2013,05/08/2013 12:19:24 PM,05/08/2013 12:20:13 PM,05/08/2013 12:20:46 PM,05/08/2013 12:21:32 PM,05/08/2013 12:24:19 PM,05/08/2013 12:39:41 PM,05/08/2013 12:50:14 PM,Code 2 Transport,05/08/2013 01:25:25 PM,1500 Block of VALENCIA ST,SF,94110,B06,11,5611,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7473464894373, -122.420273560089)",131280190-AM08 -133500207,68,13118836,Medical Incident,12/16/2013,12/16/2013,12/16/2013 12:30:54 PM,12/16/2013 12:32:53 PM,12/16/2013 12:34:12 PM,12/16/2013 12:36:25 PM,12/16/2013 12:39:28 PM,12/16/2013 01:05:04 PM,12/16/2013 01:33:05 PM,Code 2 Transport,12/16/2013 02:15:11 PM,700 Block of 35TH AVE,SF,94121,B07,34,7252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Outer Richmond,"(37.7748832270511, -122.495037870754)",133500207-68 -160292918,KM02,16011534,Medical Incident,01/29/2016,01/29/2016,01/29/2016 06:43:01 PM,01/29/2016 06:45:02 PM,01/29/2016 06:45:43 PM,01/29/2016 06:46:42 PM,01/29/2016 06:58:57 PM,01/29/2016 07:20:23 PM,01/29/2016 07:48:23 PM,Code 2 Transport,01/29/2016 08:26:30 PM,1500 Block of GREEN ST,San Francisco,94123,B04,16,3233,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Marina,"(37.7975667094658, -122.4246258292)",160292918-KM02 -103440080,74,10110131,Medical Incident,12/10/2010,12/09/2010,12/10/2010 07:00:39 AM,12/10/2010 07:01:46 AM,12/10/2010 07:03:41 AM,12/10/2010 07:03:55 AM,12/10/2010 07:08:29 AM,12/10/2010 07:34:05 AM,12/10/2010 07:54:15 AM,Code 2 Transport,12/10/2010 08:10:35 AM,0 Block of GALILEE LN,SF,94115,B04,5,3365,3,3,3,true,,1,MEDIC,1,2,5,Western Addition,"(37.7837879620082, -122.428154523133)",103440080-74 -160200106,AM16,16007838,Medical Incident,01/20/2016,01/19/2016,01/20/2016 12:50:13 AM,01/20/2016 12:50:48 AM,01/20/2016 12:51:08 AM,01/20/2016 12:51:51 AM,01/20/2016 12:55:45 AM,01/20/2016 01:18:30 AM,01/20/2016 01:32:39 AM,Code 3 Transport,01/20/2016 01:54:51 AM,500 Block of 28TH ST,San Francisco,94131,B06,26,5557,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Noe Valley,"(37.7448696049938, -122.434578161654)",160200106-AM16 -160710320,78,16028078,Medical Incident,03/11/2016,03/10/2016,03/11/2016 03:20:58 AM,03/11/2016 03:21:55 AM,03/11/2016 03:22:48 AM,03/11/2016 03:26:21 AM,03/11/2016 03:30:03 AM,03/11/2016 03:38:31 AM,03/11/2016 03:54:33 AM,Code 2 Transport,03/11/2016 04:45:19 AM,PAGE ST/DIVISADERO ST,San Francisco,94117,B05,21,4144,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7722037126293, -122.437234929624)",160710320-78 -120330012,55,12010756,Medical Incident,02/02/2012,02/01/2012,02/02/2012 12:50:28 AM,02/02/2012 12:51:52 AM,02/02/2012 12:53:25 AM,02/02/2012 12:53:43 AM,02/02/2012 12:59:46 AM,02/02/2012 01:24:07 AM,02/02/2012 01:28:16 AM,Other,02/02/2012 02:06:28 AM,1000 Block of POLK ST,SF,94109,B04,3,3121,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",120330012-55 -160171300,55,16006812,Medical Incident,01/17/2016,01/17/2016,01/17/2016 11:26:18 AM,01/17/2016 11:27:25 AM,01/17/2016 11:28:13 AM,01/17/2016 11:29:05 AM,01/17/2016 11:35:34 AM,01/17/2016 11:57:52 AM,01/17/2016 12:11:53 PM,Code 2 Transport,01/17/2016 01:23:26 PM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",160171300-55 -103470302,RC1,10111362,Medical Incident,12/13/2010,12/13/2010,12/13/2010 05:16:35 PM,12/13/2010 05:16:56 PM,12/13/2010 05:17:28 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,04/25/2016 02:07:08 PM,Other,12/13/2010 05:23:19 PM,MARKET ST/2ND ST,SF,94105,B01,13,1236,3,3,3,false,,1,RESCUE CAPTAIN,3,3,3,Financial District/South Beach,"(37.7892643215998, -122.401375491221)",103470302-RC1 -160623678,55,16024848,Medical Incident,03/02/2016,03/02/2016,03/02/2016 08:03:24 PM,03/02/2016 08:05:08 PM,03/02/2016 08:05:42 PM,03/02/2016 08:06:04 PM,03/02/2016 08:10:10 PM,03/02/2016 08:36:28 PM,03/02/2016 08:54:42 PM,Code 2 Transport,03/02/2016 09:53:52 PM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160623678-55 -111000162,B01,11033199,Alarms,04/10/2011,04/10/2011,04/10/2011 12:38:05 PM,04/10/2011 12:38:42 PM,04/10/2011 12:38:51 PM,04/10/2011 12:39:56 PM,04/10/2011 12:42:24 PM,04/25/2016 02:05:10 PM,04/25/2016 02:05:10 PM,Other,04/10/2011 12:52:41 PM,300 Block of KEARNY ST,SF,94108,B01,13,1243,3,3,3,false,,1,CHIEF,1,1,3,Financial District/South Beach,"(37.7912165931534, -122.404193611761)",111000162-B01 -113420357,T18,11113544,Structure Fire,12/08/2011,12/08/2011,12/08/2011 08:48:45 PM,12/08/2011 08:50:02 PM,12/08/2011 08:50:16 PM,12/08/2011 08:51:13 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,04/25/2016 02:01:15 PM,Other,12/08/2011 08:55:31 PM,800 Block of LINCOLN WAY,SF,94122,B08,22,7333,3,3,3,false,,1,TRUCK,9,7,5,Inner Sunset,"(37.7657995781914, -122.466969885427)",113420357-T18 -133390123,E32,13114837,Outside Fire,12/05/2013,12/05/2013,12/05/2013 09:51:40 AM,12/05/2013 09:55:50 AM,12/05/2013 09:56:20 AM,12/05/2013 09:56:47 AM,12/05/2013 10:02:55 AM,04/25/2016 01:49:26 PM,04/25/2016 01:49:26 PM,Fire,12/05/2013 10:07:07 AM,100 Block of ALEMANY BLVD,SF,94110,B10,32,5746,3,3,3,true,Fire,1,ENGINE,1,10,9,Bernal Heights,"(37.7361473059375, -122.409079186815)",133390123-E32 -103450055,RC3,10110473,Medical Incident,12/11/2010,12/10/2010,12/11/2010 03:01:02 AM,12/11/2010 03:03:42 AM,12/11/2010 03:05:50 AM,04/25/2016 02:07:10 PM,12/11/2010 03:23:49 AM,04/25/2016 02:07:10 PM,04/25/2016 02:07:10 PM,Other,12/11/2010 04:00:12 AM,CESAR CHAVEZ ST/VALENCIA ST,SF,94110,B06,11,555,1,1,2,true,,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7481252844229, -122.420278831044)",103450055-RC3 -122600325,81,12086073,Traffic Collision,09/16/2012,09/16/2012,09/16/2012 10:41:35 PM,09/16/2012 10:45:05 PM,09/16/2012 10:47:02 PM,09/16/2012 10:47:30 PM,09/16/2012 10:51:27 PM,09/16/2012 10:56:51 PM,09/16/2012 11:09:13 PM,Code 2 Transport,09/16/2012 11:17:08 PM,16TH ST/VERMONT ST,SF,94103,B02,29,2422,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,10,Mission,"(37.7659581887586, -122.404623338223)",122600325-81 -140950100,AM04,14031876,Medical Incident,04/05/2014,04/05/2014,04/05/2014 08:03:46 AM,04/05/2014 08:04:08 AM,04/05/2014 08:07:42 AM,04/05/2014 08:07:42 AM,04/05/2014 08:12:32 AM,04/05/2014 08:31:32 AM,04/05/2014 08:49:03 AM,Code 2 Transport,04/05/2014 09:14:18 AM,GEARY ST/STOCKTON ST,SAN FRANCISCO,94108,B01,1,1323,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7875680237553, -122.40658988461)",140950100-AM04 -111260389,E03,11041870,Traffic Collision,05/06/2011,05/06/2011,05/06/2011 10:37:22 PM,05/06/2011 10:39:22 PM,05/06/2011 10:39:36 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 10:41:15 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,3,3,3,true,,1,ENGINE,6,2,6,South of Market,"(37.7804785121736, -122.412512257219)",111260389-E03 -111900019,55,11062694,Medical Incident,07/09/2011,07/08/2011,07/09/2011 01:18:43 AM,07/09/2011 01:19:55 AM,07/09/2011 01:20:04 AM,07/09/2011 01:20:29 AM,07/09/2011 01:23:47 AM,07/09/2011 01:30:44 AM,07/09/2011 01:57:09 AM,Code 2 Transport,07/09/2011 02:26:26 AM,5TH ST/MISSION ST,SF,94103,B03,1,2246,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",111900019-55 -160290638,61,16011344,Medical Incident,01/29/2016,01/28/2016,01/29/2016 07:48:54 AM,01/29/2016 07:49:14 AM,01/29/2016 07:49:41 AM,01/29/2016 07:49:49 AM,01/29/2016 07:56:19 AM,01/29/2016 08:15:30 AM,01/29/2016 08:36:49 AM,Other,01/29/2016 09:12:59 AM,1000 Block of HOWARD ST,San Francisco,94103,B03,1,2314,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7785992634984, -122.408503211368)",160290638-61 -160690238,78,16027309,Medical Incident,03/09/2016,03/08/2016,03/09/2016 02:30:05 AM,03/09/2016 02:31:50 AM,03/09/2016 02:31:58 AM,03/09/2016 02:32:21 AM,03/09/2016 02:35:55 AM,03/09/2016 02:54:33 AM,03/09/2016 02:57:58 AM,Code 2 Transport,03/09/2016 03:48:38 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160690238-78 -160851770,71,16033774,Medical Incident,03/25/2016,03/25/2016,03/25/2016 12:48:25 PM,03/25/2016 12:49:21 PM,03/25/2016 12:53:24 PM,03/25/2016 12:53:47 PM,03/25/2016 12:58:15 PM,03/25/2016 01:35:41 PM,03/25/2016 01:40:55 PM,Code 2 Transport,03/25/2016 02:11:46 PM,500 Block of ASHBURY ST,San Francisco,94117,B05,21,4513,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.7704623534305, -122.44709656531)",160851770-71 -110680024,E06,11022245,Medical Incident,03/09/2011,03/08/2011,03/09/2011 01:46:08 AM,03/09/2011 01:47:14 AM,03/09/2011 01:49:41 AM,03/09/2011 01:50:38 AM,03/09/2011 01:52:07 AM,04/25/2016 02:05:43 PM,04/25/2016 02:05:43 PM,Other,03/09/2011 01:58:38 AM,2300 Block of MARKET ST,SF,94114,B05,6,5233,3,3,3,true,,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7633099103603, -122.434016378768)",110680024-E06 -160230542,60,16009045,Medical Incident,01/23/2016,01/22/2016,01/23/2016 04:11:43 AM,01/23/2016 04:13:12 AM,01/23/2016 04:13:40 AM,01/23/2016 04:13:49 AM,01/23/2016 04:19:03 AM,01/23/2016 04:46:46 AM,01/23/2016 04:54:28 AM,Code 2 Transport,01/23/2016 05:31:19 AM,1000 Block of POST ST,San Francisco,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",160230542-60 -160201830,AM08,16008008,Medical Incident,01/20/2016,01/20/2016,01/20/2016 12:59:27 PM,01/20/2016 01:00:42 PM,01/20/2016 01:03:14 PM,01/20/2016 01:03:55 PM,01/20/2016 01:13:14 PM,01/20/2016 01:30:42 PM,01/20/2016 01:37:24 PM,Code 2 Transport,01/20/2016 02:00:33 PM,DIVISADERO ST/HAYES ST,San Francisco,94117,B05,21,4145,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Hayes Valley,"(37.7749919470007, -122.437798745964)",160201830-AM08 -120820306,E05,12027326,Medical Incident,03/22/2012,03/22/2012,03/22/2012 06:26:27 PM,03/22/2012 06:27:53 PM,03/22/2012 06:28:12 PM,03/22/2012 06:29:31 PM,03/22/2012 06:30:31 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/22/2012 06:47:18 PM,1300 Block of GOLDEN GATE AVE,SF,94115,B05,5,3625,3,2,2,true,Non Life-threatening,1,ENGINE,1,5,5,Western Addition,"(37.7794051372088, -122.432762898818)",120820306-E05 -140980454,94,14033260,Medical Incident,04/08/2014,04/08/2014,04/08/2014 09:56:17 PM,04/08/2014 09:57:33 PM,04/08/2014 09:57:44 PM,04/08/2014 09:57:51 PM,04/08/2014 10:00:57 PM,04/25/2016 01:47:19 PM,04/25/2016 01:47:19 PM,Patient Declined Transport,04/08/2014 10:53:21 PM,0 Block of GOLDEN GATE AVE,SAN FRANCISCO,94102,B03,1,1454,3,3,3,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7822500873167, -122.411268613368)",140980454-94 -112950305,E03,11097949,Structure Fire,10/22/2011,10/22/2011,10/22/2011 07:02:14 PM,10/22/2011 07:02:14 PM,10/22/2011 07:03:05 PM,10/22/2011 07:04:04 PM,10/22/2011 07:05:34 PM,04/25/2016 02:02:02 PM,04/25/2016 02:02:02 PM,Other,10/22/2011 07:06:30 PM,600 Block of JONES ST,SF,94102,B01,3,1462,3,3,3,true,,1,ENGINE,1,1,3,Tenderloin,"(37.7870654663911, -122.413159816666)",112950305-E03 -123320282,86,12110442,Structure Fire,11/27/2012,11/27/2012,11/27/2012 06:39:05 PM,11/27/2012 06:40:46 PM,11/27/2012 06:41:12 PM,11/27/2012 06:41:35 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,04/25/2016 01:55:36 PM,Other,11/27/2012 06:50:05 PM,500 Block of MARKET ST,SF,94104,B03,13,1164,3,3,3,true,Alarm,1,MEDIC,9,1,3,Financial District/South Beach,"(37.7905865694353, -122.399877480803)",123320282-86 -160443345,53,16017852,Medical Incident,02/13/2016,02/13/2016,02/13/2016 08:34:35 PM,02/13/2016 08:38:47 PM,02/13/2016 08:51:04 PM,02/13/2016 08:51:16 PM,02/13/2016 09:08:18 PM,02/13/2016 09:54:05 PM,02/13/2016 10:11:02 PM,Code 2 Transport,02/13/2016 10:35:33 PM,1400 Block of TURK ST,San Francisco,94115,B05,5,3535,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,5,Western Addition,"(37.7804457116988, -122.432973442897)",160443345-53 -102260061,E03,10071050,Medical Incident,08/14/2010,08/13/2010,08/14/2010 04:06:41 AM,08/14/2010 04:10:59 AM,08/14/2010 04:11:10 AM,08/14/2010 04:12:46 AM,08/14/2010 04:15:45 AM,04/25/2016 02:09:05 PM,04/25/2016 02:09:05 PM,Other,08/14/2010 04:18:10 AM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.783163427134, -122.411599278937)",102260061-E03 -133250227,83,13110415,Medical Incident,11/21/2013,11/21/2013,11/21/2013 03:07:01 PM,11/21/2013 03:07:55 PM,11/21/2013 03:09:34 PM,11/21/2013 03:12:04 PM,11/21/2013 03:15:06 PM,04/25/2016 01:49:39 PM,04/25/2016 01:49:39 PM,Unable to Locate,11/21/2013 03:17:18 PM,10TH ST/HOWARD ST,SF,94103,B02,36,2342,3,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7740433259374, -122.414367692219)",133250227-83 -111550307,RC2,11051330,Medical Incident,06/04/2011,06/04/2011,06/04/2011 06:13:58 PM,06/04/2011 06:16:15 PM,06/04/2011 06:16:59 PM,06/04/2011 06:17:50 PM,06/04/2011 06:20:39 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Other,06/04/2011 06:28:17 PM,3500 Block of GEARY BLVD,SF,94118,B07,10,4452,3,3,3,true,,1,RESCUE CAPTAIN,1,7,1,Lone Mountain/USF,"(37.7812170341948, -122.457001538533)",111550307-RC2 -120710230,88,12023654,Medical Incident,03/11/2012,03/11/2012,03/11/2012 03:31:49 PM,03/11/2012 03:33:10 PM,03/11/2012 03:33:17 PM,03/11/2012 03:33:24 PM,03/11/2012 03:41:19 PM,03/11/2012 03:45:33 PM,03/11/2012 04:19:53 PM,Code 2 Transport,03/11/2012 04:52:21 PM,1200 Block of LAGUNA ST,SF,94109,B02,5,3366,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,5,Western Addition,"(37.7827632279224, -122.427469164142)",120710230-88 -160813151,KM11,16032310,Medical Incident,03/21/2016,03/21/2016,03/21/2016 06:34:49 PM,03/21/2016 06:35:42 PM,03/21/2016 06:35:47 PM,03/21/2016 06:36:59 PM,03/21/2016 06:40:44 PM,03/21/2016 06:52:32 PM,03/21/2016 07:08:12 PM,Code 2 Transport,03/21/2016 07:40:30 PM,GEARY ST/LEAVENWORTH ST,San Francisco,94109,B01,3,1462,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7865198191132, -122.414806648229)",160813151-KM11 -130340179,E06,13011607,Fuel Spill,02/03/2013,02/03/2013,02/03/2013 01:23:38 PM,02/03/2013 01:25:55 PM,02/03/2013 01:26:04 PM,02/03/2013 01:27:00 PM,02/03/2013 01:28:17 PM,04/25/2016 01:54:29 PM,04/25/2016 01:54:29 PM,Other,02/03/2013 01:45:09 PM,400 Block of DUBOCE AVE,SF,94117,B02,6,3525,3,3,3,true,Alarm,1,ENGINE,1,5,8,Hayes Valley,"(37.7694113336686, -122.4308075817)",130340179-E06 -103190178,67,10102244,Traffic Collision,11/15/2010,11/15/2010,11/15/2010 12:18:21 PM,11/15/2010 12:18:48 PM,11/15/2010 12:19:02 PM,11/15/2010 12:19:06 PM,11/15/2010 12:23:54 PM,11/15/2010 12:38:04 PM,11/15/2010 01:03:28 PM,Code 2 Transport,11/15/2010 01:52:50 PM,PARK PRESIDIO BL/GEARY BL,SF,94118,B07,31,7146,3,3,3,true,,1,MEDIC,3,7,1,Outer Richmond,"(37.780655826905, -122.472312254938)",103190178-67 -160081454,KM08,16003199,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:27:05 AM,01/08/2016 11:27:05 AM,01/08/2016 11:27:19 AM,01/08/2016 11:28:19 AM,01/08/2016 11:31:24 AM,01/08/2016 11:54:14 AM,01/08/2016 12:06:18 PM,Code 2 Transport,01/08/2016 12:46:54 PM,500 Block of MASON ST,San Francisco,94102,B01,3,1412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7885578121115, -122.410081316773)",160081454-KM08 -140870155,AM16,14029251,Medical Incident,03/28/2014,03/28/2014,03/28/2014 11:17:13 AM,03/28/2014 11:19:27 AM,03/28/2014 11:19:38 AM,03/28/2014 11:20:26 AM,03/28/2014 11:23:41 AM,03/28/2014 11:45:52 AM,03/28/2014 11:59:37 AM,Code 2 Transport,03/28/2014 12:52:08 PM,1300 Block of 33RD AVE,SAN FRANCISCO,94122,B08,23,7541,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,4,Sunset/Parkside,"(37.7619730968336, -122.491993364367)",140870155-AM16 -140320171,E22,14010827,Medical Incident,02/01/2014,02/01/2014,02/01/2014 12:54:35 PM,02/01/2014 12:55:22 PM,02/01/2014 12:56:37 PM,02/01/2014 12:57:13 PM,02/01/2014 12:59:21 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,02/01/2014 01:23:46 PM,1300 Block of 21ST AVE,SF,94122,B08,22,7426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7625397133355, -122.479132257193)",140320171-E22 -130940276,58,13031535,Medical Incident,04/04/2013,04/04/2013,04/04/2013 05:16:28 PM,04/04/2013 05:17:12 PM,04/04/2013 05:17:28 PM,04/04/2013 05:17:34 PM,04/04/2013 05:19:16 PM,04/04/2013 05:40:48 PM,04/04/2013 05:47:32 PM,Code 3 Transport,04/04/2013 06:36:58 PM,1800 Block of 15TH AVE,SF,94122,B08,40,7363,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Inner Sunset,"(37.7533907167932, -122.472130727218)",130940276-58 -112100199,E01,11069348,Medical Incident,07/29/2011,07/29/2011,07/29/2011 03:38:50 PM,07/29/2011 03:40:13 PM,07/29/2011 03:40:23 PM,07/29/2011 03:41:25 PM,07/29/2011 03:44:28 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 03:44:42 PM,5TH ST/MISSION ST,SF,94103,B03,1,2246,3,3,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7827316349865, -122.406479403956)",112100199-E01 -160821655,57,16032551,Medical Incident,03/22/2016,03/22/2016,03/22/2016 12:19:43 PM,03/22/2016 12:20:55 PM,03/22/2016 12:22:06 PM,03/22/2016 12:22:14 PM,03/22/2016 12:31:07 PM,03/22/2016 12:50:38 PM,03/22/2016 01:02:23 PM,Code 2 Transport,03/22/2016 01:52:04 PM,1500 Block of 37TH AVE,San Francisco,94122,B08,18,7572,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7580458181971, -122.496156064465)",160821655-57 -121780049,E16,12059142,Medical Incident,06/26/2012,06/25/2012,06/26/2012 06:14:58 AM,06/26/2012 06:15:39 AM,06/26/2012 06:16:37 AM,06/26/2012 06:18:54 AM,06/26/2012 06:22:31 AM,04/25/2016 01:58:01 PM,04/25/2016 01:58:01 PM,Other,06/26/2012 06:36:29 AM,0 Block of PRADO ST,SF,94123,B04,16,4112,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8046583061667, -122.440840639593)",121780049-E16 -120450175,T02,12014960,Elevator / Escalator Rescue,02/14/2012,02/14/2012,02/14/2012 12:28:20 PM,02/14/2012 12:30:01 PM,02/14/2012 12:31:13 PM,02/14/2012 12:32:33 PM,02/14/2012 12:34:16 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,No Merit,02/14/2012 01:05:46 PM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,false,Alarm,1,TRUCK,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",120450175-T02 -123350079,T07,12111228,Citizen Assist / Service Call,11/30/2012,11/29/2012,11/30/2012 04:28:38 AM,11/30/2012 04:28:38 AM,11/30/2012 04:29:27 AM,11/30/2012 05:00:02 AM,11/30/2012 05:09:25 AM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/30/2012 06:55:10 AM,400 Block of HILL ST,SF,94114,B06,11,5461,3,3,3,false,Alarm,1,TRUCK,4,6,8,Noe Valley,"(37.7555441402201, -122.43115116258)",123350079-T07 -160811306,88,16032139,Medical Incident,03/21/2016,03/21/2016,03/21/2016 11:02:07 AM,03/21/2016 11:03:29 AM,03/21/2016 11:05:14 AM,03/21/2016 11:05:46 AM,03/21/2016 11:15:39 AM,03/21/2016 11:29:27 AM,03/21/2016 11:42:47 AM,Code 2 Transport,03/21/2016 12:16:09 PM,MISSION ST/11TH ST,San Francisco,94103,B02,36,2341,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7743252876501, -122.417104135862)",160811306-88 -133580343,81,13121858,Medical Incident,12/24/2013,12/24/2013,12/24/2013 09:45:15 PM,12/24/2013 09:45:32 PM,12/24/2013 09:45:46 PM,12/24/2013 09:46:28 PM,12/24/2013 09:57:23 PM,04/25/2016 01:49:04 PM,04/25/2016 01:49:04 PM,Other,12/24/2013 09:59:10 PM,1600 Block of BEACH ST,SF,94123,B04,16,3556,E,2,2,true,Non Life-threatening,1,MEDIC,3,4,2,Marina,"(37.804585259169, -122.436256553361)",133580343-81 -122300309,B01,12076329,Alarms,08/17/2012,08/17/2012,08/17/2012 05:08:01 PM,08/17/2012 05:09:08 PM,08/17/2012 05:09:36 PM,08/17/2012 05:11:18 PM,08/17/2012 05:15:15 PM,04/25/2016 01:57:11 PM,04/25/2016 01:57:11 PM,Other,08/17/2012 05:16:17 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,false,Alarm,1,CHIEF,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",122300309-B01 -122380286,E03,12078931,Medical Incident,08/25/2012,08/25/2012,08/25/2012 08:20:39 PM,08/25/2012 08:22:24 PM,08/25/2012 08:22:59 PM,08/25/2012 08:24:06 PM,08/25/2012 08:25:57 PM,04/25/2016 01:57:04 PM,04/25/2016 01:57:04 PM,Other,08/25/2012 08:26:15 PM,GOLDEN GATE AV/HYDE ST,SF,94102,B02,1,1546,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7816542606729, -122.415505179032)",122380286-E03 -121460039,FB1,12048348,Water Rescue,05/25/2012,05/24/2012,05/25/2012 05:46:02 AM,05/25/2012 05:48:14 AM,05/25/2012 05:49:41 AM,05/25/2012 05:52:42 AM,05/25/2012 06:20:55 AM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Other,05/25/2012 06:47:24 AM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,Fire,1,SUPPORT,10,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",121460039-FB1 -160423918,64,16017079,Medical Incident,02/11/2016,02/11/2016,02/11/2016 11:03:37 PM,02/11/2016 11:03:37 PM,02/11/2016 11:08:13 PM,02/11/2016 11:08:21 PM,02/11/2016 11:13:38 PM,02/11/2016 11:48:43 PM,02/12/2016 12:04:13 AM,Code 2 Transport,02/12/2016 12:43:13 AM,500 Block of 26TH AVE,San Francisco,94121,B07,14,7213,2,2,2,true,Non Life-threatening,1,MEDIC,1,7,1,Outer Richmond,"(37.7790807760318, -122.485668400335)",160423918-64 -112550007,66,11083988,Medical Incident,09/12/2011,09/11/2011,09/12/2011 12:54:13 AM,09/12/2011 12:54:28 AM,09/12/2011 12:56:18 AM,09/12/2011 12:56:38 AM,09/12/2011 01:06:17 AM,09/12/2011 01:29:03 AM,09/12/2011 01:35:56 AM,Code 2 Transport,09/12/2011 02:09:42 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,2,2,true,,1,MEDIC,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",112550007-66 -130030323,E31,13001129,Structure Fire,01/03/2013,01/03/2013,01/03/2013 07:08:55 PM,01/03/2013 07:10:32 PM,01/03/2013 07:10:46 PM,01/03/2013 07:12:20 PM,01/03/2013 07:13:33 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 07:19:25 PM,200 Block of 9TH AVE,SF,94118,B07,31,7136,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7837385900597, -122.467627586947)",130030323-E31 -132400332,KM15,13081089,Medical Incident,08/28/2013,08/28/2013,08/28/2013 08:43:34 PM,08/28/2013 08:45:40 PM,08/28/2013 08:46:13 PM,08/28/2013 08:46:46 PM,08/28/2013 08:53:58 PM,08/28/2013 09:02:10 PM,08/28/2013 09:13:38 PM,Code 2 Transport,08/28/2013 09:37:56 PM,21ST ST/YORK ST,SF,94110,B10,7,2553,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Mission,"(37.7576511179526, -122.408651271725)",132400332-KM15 -102950399,96,10094268,Medical Incident,10/22/2010,10/22/2010,10/22/2010 11:21:03 PM,10/22/2010 11:22:21 PM,10/22/2010 11:23:01 PM,10/22/2010 11:23:09 PM,10/22/2010 11:27:11 PM,10/22/2010 11:38:24 PM,10/22/2010 11:44:03 PM,Code 2 Transport,10/23/2010 12:13:36 AM,0 Block of SYCAMORE ST,SF,94110,B02,7,5423,3,1,2,true,,1,MEDIC,1,2,9,Mission,"(37.7627443612578, -122.419834318318)",102950399-96 -132780080,AM16,13094412,Medical Incident,10/05/2013,10/04/2013,10/05/2013 06:48:46 AM,10/05/2013 06:49:07 AM,10/05/2013 06:51:29 AM,10/05/2013 06:51:49 AM,10/05/2013 06:59:04 AM,04/25/2016 01:50:25 PM,04/25/2016 01:50:25 PM,No Merit,10/05/2013 07:14:45 AM,VAN DYKE AV/JENNINGS ST,SF,94124,B10,17,6651,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7270441476435, -122.388672813188)",132780080-AM16 -160141587,63,16005554,Medical Incident,01/14/2016,01/14/2016,01/14/2016 12:05:58 PM,01/14/2016 12:07:12 PM,01/14/2016 12:09:07 PM,01/14/2016 12:09:18 PM,01/14/2016 12:18:59 PM,01/14/2016 12:23:07 PM,01/14/2016 12:42:53 PM,Code 2 Transport,01/14/2016 01:14:38 PM,3600 Block of 22ND ST,San Francisco,94114,B06,11,5467,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,8,Noe Valley,"(37.7548096282044, -122.428287435263)",160141587-63 -111430356,79,11047665,Medical Incident,05/23/2011,05/23/2011,05/23/2011 08:22:50 PM,05/23/2011 08:23:46 PM,05/23/2011 08:24:06 PM,05/23/2011 08:25:15 PM,05/23/2011 08:33:18 PM,05/23/2011 09:01:43 PM,05/23/2011 09:01:49 PM,Code 2 Transport,05/23/2011 09:49:55 PM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,true,,1,MEDIC,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",111430356-79 -160250423,79,16009788,Medical Incident,01/25/2016,01/24/2016,01/25/2016 05:07:39 AM,01/25/2016 05:11:46 AM,01/25/2016 05:12:07 AM,01/25/2016 05:12:14 AM,01/25/2016 05:23:39 AM,01/25/2016 05:32:16 AM,01/25/2016 05:45:22 AM,Code 2 Transport,01/25/2016 06:08:08 AM,DUBOCE AV/VALENCIA ST,San Francisco,94103,B02,36,5126,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7698676980277, -122.422364819149)",160250423-79 -121510110,54,12049980,Medical Incident,05/30/2012,05/30/2012,05/30/2012 10:32:17 AM,05/30/2012 10:33:06 AM,05/30/2012 10:33:23 AM,05/30/2012 10:33:33 AM,05/30/2012 10:35:14 AM,05/30/2012 10:43:22 AM,05/30/2012 10:56:45 AM,Code 2 Transport,05/30/2012 11:22:16 AM,1800 Block of MARKET ST,SF,94103,B02,36,3416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7715743266843, -122.42361379771)",121510110-54 -130190275,E51,13006583,Alarms,01/19/2013,01/19/2013,01/19/2013 04:16:52 PM,01/19/2013 04:18:02 PM,01/19/2013 04:18:16 PM,01/19/2013 04:20:25 PM,01/19/2013 04:22:00 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,Other,01/19/2013 04:27:40 PM,0 Block of MESA ST,PR,94129,B99,51,4626,3,3,3,true,Alarm,1,ENGINE,1,7,2,Presidio,"(37.7976439600299, -122.457662375039)",130190275-E51 -120810350,E13,12027030,Alarms,03/21/2012,03/21/2012,03/21/2012 08:37:40 PM,03/21/2012 08:39:09 PM,03/21/2012 08:39:19 PM,03/21/2012 08:40:07 PM,03/21/2012 08:43:05 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,Fire,03/21/2012 09:08:20 PM,100 Block of MISSION ST,SF,94105,B03,35,2116,3,3,3,true,Alarm,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7921507122354, -122.394451120982)",120810350-E13 -110450359,59,11015078,Medical Incident,02/14/2011,02/14/2011,02/14/2011 09:22:00 PM,02/14/2011 09:23:43 PM,02/14/2011 09:24:05 PM,02/14/2011 09:24:51 PM,02/14/2011 09:28:24 PM,04/25/2016 02:06:05 PM,04/25/2016 02:06:05 PM,Other,02/14/2011 09:40:47 PM,1100 Block of COLUMBUS AVE,SF,94133,B01,28,1434,3,3,3,true,,1,MEDIC,2,1,3,Russian Hill,"(37.8050697823361, -122.416976744235)",110450359-59 -111060253,82,11035144,Medical Incident,04/16/2011,04/16/2011,04/16/2011 05:43:30 PM,04/16/2011 05:43:45 PM,04/16/2011 05:43:59 PM,04/16/2011 05:44:51 PM,04/16/2011 05:46:40 PM,04/16/2011 06:00:44 PM,04/16/2011 06:10:27 PM,Code 2 Transport,04/16/2011 06:32:21 PM,500 Block of 4TH AVE,SF,94118,B07,31,7117,3,3,3,true,,1,MEDIC,1,7,1,Inner Richmond,"(37.7782561065947, -122.46200439038)",111060253-82 -123370144,99,12112123,Medical Incident,12/02/2012,12/01/2012,12/02/2012 05:32:30 AM,12/02/2012 05:32:48 AM,12/02/2012 05:52:12 AM,12/02/2012 06:26:56 AM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,04/25/2016 01:55:31 PM,Other,12/02/2012 06:36:15 AM,200 Block of 8TH ST,SF,94103,B02,29,2322,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,South of Market,"(37.7760463471271, -122.41128875661)",123370144-99 -102960322,E02,10094553,Alarms,10/23/2010,10/23/2010,10/23/2010 09:22:13 PM,10/23/2010 09:24:48 PM,10/23/2010 09:26:14 PM,10/23/2010 09:26:36 PM,10/23/2010 09:27:51 PM,04/25/2016 02:07:58 PM,04/25/2016 02:07:58 PM,Other,10/23/2010 09:42:10 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7965221139071, -122.410303225414)",102960322-E02 -123340299,E15,12111068,Traffic Collision,11/29/2012,11/29/2012,11/29/2012 06:48:01 PM,11/29/2012 06:48:01 PM,11/29/2012 06:48:13 PM,11/29/2012 06:49:10 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,04/25/2016 01:55:34 PM,Other,11/29/2012 06:49:52 PM,200 Block of FARALLONES ST,SF,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,ENGINE,4,9,11,Oceanview/Merced/Ingleside,"(37.7139875097179, -122.460811423157)",123340299-E15 -140760049,E11,14025603,Medical Incident,03/17/2014,03/16/2014,03/17/2014 05:16:00 AM,03/17/2014 05:18:12 AM,03/17/2014 05:18:28 AM,03/17/2014 05:20:28 AM,03/17/2014 05:23:19 AM,04/25/2016 01:47:42 PM,04/25/2016 01:47:42 PM,Other,03/17/2014 05:37:20 AM,400 Block of ELIZABETH ST,SAN FRANCISCO,94114,B06,11,5514,2,2,2,false,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7523486311873, -122.430844394586)",140760049-E11 -111730260,RC1,11057137,Medical Incident,06/22/2011,06/22/2011,06/22/2011 05:16:39 PM,06/22/2011 05:19:15 PM,06/22/2011 05:20:19 PM,06/22/2011 05:21:05 PM,06/22/2011 05:22:00 PM,04/25/2016 02:04:02 PM,04/25/2016 02:04:02 PM,Other,06/22/2011 05:45:59 PM,400 Block of BROADWAY,SF,94133,B01,13,1231,3,3,3,true,,1,RESCUE CAPTAIN,1,1,3,North Beach,"(37.7982249345487, -122.404282497745)",111730260-RC1 -123290099,T15,12109349,Assist Police,11/24/2012,11/24/2012,11/24/2012 08:26:36 AM,11/24/2012 08:26:54 AM,11/24/2012 08:27:28 AM,11/24/2012 08:28:27 AM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,04/25/2016 01:55:39 PM,Fire,11/24/2012 08:47:35 AM,100 Block of BLYTHDALE AVE,SF,94134,B09,43,6244,3,3,3,false,Alarm,1,TRUCK,1,9,10,Visitacion Valley,"(37.7109997161115, -122.420513243692)",123290099-T15 -131950096,E01,13066180,Medical Incident,07/14/2013,07/14/2013,07/14/2013 09:07:08 AM,07/14/2013 09:07:44 AM,07/14/2013 09:07:57 AM,07/14/2013 09:09:05 AM,07/14/2013 09:11:48 AM,04/25/2016 01:51:48 PM,04/25/2016 01:51:48 PM,Other,07/14/2013 09:20:44 AM,0 Block of MCALLISTER ST,SF,94102,B03,1,1455,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7811192121542, -122.412596970637)",131950096-E01 -120060330,E01,12002204,Outside Fire,01/06/2012,01/06/2012,01/06/2012 08:03:53 PM,01/06/2012 08:06:01 PM,01/06/2012 08:06:25 PM,01/06/2012 08:06:38 PM,01/06/2012 08:08:11 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,Fire,01/06/2012 08:08:39 PM,5TH ST/HOWARD ST,SF,94103,B03,1,2245,3,3,3,true,Fire,1,ENGINE,1,3,6,South of Market,"(37.7814995076073, -122.404933347868)",120060330-E01 -160412759,88,16016555,Medical Incident,02/10/2016,02/10/2016,02/10/2016 05:03:13 PM,02/10/2016 05:04:11 PM,02/10/2016 05:05:54 PM,02/10/2016 05:06:10 PM,02/10/2016 05:12:17 PM,02/10/2016 05:32:56 PM,02/10/2016 05:44:17 PM,Code 2 Transport,02/10/2016 06:18:09 PM,BAYSHORE BL/CORTLAND AV,San Francisco,94124,B10,42,6374,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.739566273268, -122.406978585164)",160412759-88 -131790438,54,13061017,Medical Incident,06/28/2013,06/28/2013,06/28/2013 10:26:11 PM,06/28/2013 10:26:11 PM,06/28/2013 10:26:42 PM,06/28/2013 10:27:28 PM,06/28/2013 10:39:30 PM,06/28/2013 10:49:50 PM,06/28/2013 10:59:13 PM,Code 2 Transport,06/28/2013 11:34:17 PM,3300 Block of STEINER ST,SF,94123,B04,16,3566,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.800112737433, -122.437860447523)",131790438-54 -160084146,AM20,16003470,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:41:45 PM,01/08/2016 11:42:47 PM,01/08/2016 11:43:02 PM,01/08/2016 11:43:45 PM,01/08/2016 11:47:15 PM,01/09/2016 12:15:57 AM,01/09/2016 12:41:53 AM,Other,01/09/2016 01:16:25 AM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,3,E,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160084146-AM20 -131490012,T15,13050376,Traffic Collision,05/29/2013,05/28/2013,05/29/2013 01:08:53 AM,05/29/2013 01:08:59 AM,05/29/2013 01:09:53 AM,05/29/2013 01:11:26 AM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/29/2013 01:15:15 AM,PORTOLA DR/OSHAUGHNESSY BL,SF,94131,B08,39,8661,3,3,3,false,Potentially Life-Threatening,1,TRUCK,5,8,7,Twin Peaks,"(37.7455342374832, -122.451623985914)",131490012-T15 -113030262,58,11100619,Medical Incident,10/30/2011,10/30/2011,10/30/2011 02:13:35 PM,10/30/2011 02:14:32 PM,10/30/2011 02:14:54 PM,10/30/2011 02:16:04 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,04/25/2016 02:01:54 PM,Other,04/25/2016 02:01:54 PM,0 Block of MARSILY ST,SF,94112,B06,32,8134,3,3,3,true,,1,MEDIC,3,6,8,Outer Mission,"(37.7340767315361, -122.42784270538)",113030262-58 -123100259,E22,12103186,Medical Incident,11/05/2012,11/05/2012,11/05/2012 04:13:10 PM,11/05/2012 04:15:38 PM,11/05/2012 04:16:03 PM,11/05/2012 04:17:19 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,04/25/2016 01:55:56 PM,Other,11/05/2012 04:18:23 PM,300 Block of 25TH AVE,SF,94121,B07,14,7214,3,3,3,true,Non Life-threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7829570675264, -122.484873511385)",123100259-E22 -132140371,E42,13072428,Medical Incident,08/02/2013,08/02/2013,08/02/2013 10:51:20 PM,08/02/2013 10:54:23 PM,08/02/2013 10:55:27 PM,04/25/2016 01:51:30 PM,08/02/2013 11:00:36 PM,04/25/2016 01:51:30 PM,04/25/2016 01:51:30 PM,Other,08/02/2013 11:03:14 PM,300 Block of BAY SHORE BLVD,SF,94124,B10,42,6374,2,2,2,true,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.741057552813, -122.406479975864)",132140371-E42 -130890320,E01,13029881,Medical Incident,03/30/2013,03/30/2013,03/30/2013 08:00:06 PM,03/30/2013 08:01:58 PM,03/30/2013 08:02:15 PM,03/30/2013 08:03:42 PM,03/30/2013 08:06:12 PM,04/25/2016 01:53:34 PM,04/25/2016 01:53:34 PM,Other,03/30/2013 08:35:43 PM,200 Block of POWELL ST,SF,94102,B01,1,1363,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Tenderloin,"(37.7868758025819, -122.408199829992)",130890320-E01 -103110123,E38,10099683,Alarms,11/07/2010,11/07/2010,11/07/2010 08:05:43 AM,11/07/2010 08:06:29 AM,11/07/2010 08:06:42 AM,11/07/2010 08:07:21 AM,11/07/2010 08:10:32 AM,04/25/2016 02:07:42 PM,04/25/2016 02:07:42 PM,Other,11/07/2010 08:24:34 AM,1300 Block of GOUGH ST,SF,94109,B04,3,3256,3,3,3,false,,1,ENGINE,1,4,2,Western Addition,"(37.7857740861424, -122.424704369163)",103110123-E38 -121330305,T15,12044375,Structure Fire,05/12/2012,05/12/2012,05/12/2012 08:15:27 PM,05/12/2012 08:16:59 PM,05/12/2012 08:17:15 PM,05/12/2012 08:18:41 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,04/25/2016 01:58:43 PM,Other,05/12/2012 08:22:14 PM,100 Block of RICHLAND AVE,SF,94110,B06,32,5632,3,3,3,false,Fire,1,TRUCK,9,6,9,Bernal Heights,"(37.736063156695, -122.423797717702)",121330305-T15 -131570426,E22,13053446,Medical Incident,06/06/2013,06/06/2013,06/06/2013 11:18:50 PM,06/06/2013 11:20:15 PM,06/06/2013 11:20:48 PM,06/06/2013 11:22:17 PM,06/06/2013 11:24:34 PM,04/25/2016 01:52:25 PM,04/25/2016 01:52:25 PM,Other,06/06/2013 11:29:55 PM,LAWTON ST/17TH AV,SF,94122,B08,22,7372,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7580609284646, -122.474593730317)",131570426-E22 -122180237,59,12072358,Medical Incident,08/05/2012,08/05/2012,08/05/2012 03:17:16 PM,08/05/2012 03:19:58 PM,08/05/2012 03:21:16 PM,08/05/2012 03:21:32 PM,08/05/2012 03:25:05 PM,08/05/2012 03:47:44 PM,08/05/2012 03:54:35 PM,Code 2 Transport,08/05/2012 04:30:29 PM,600 Block of OFARRELL ST,SF,94109,B04,3,1544,1,1,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7854670505017, -122.415977627827)",122180237-59 -132830270,RC3,13096372,Medical Incident,10/10/2013,10/10/2013,10/10/2013 04:52:52 PM,10/10/2013 04:53:52 PM,10/10/2013 04:54:08 PM,10/10/2013 04:55:43 PM,10/10/2013 04:57:55 PM,04/25/2016 01:50:19 PM,04/25/2016 01:50:19 PM,Other,10/10/2013 05:55:36 PM,3400 Block of CESAR CHAVEZ ST,SF,94110,B06,11,5624,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,6,9,Mission,"(37.7482453835824, -122.418694905088)",132830270-RC3 -111260398,E03,11041879,Medical Incident,05/06/2011,05/06/2011,05/06/2011 11:13:01 PM,05/06/2011 11:14:55 PM,05/06/2011 11:17:30 PM,05/06/2011 11:21:06 PM,05/06/2011 11:30:21 PM,04/25/2016 02:04:45 PM,04/25/2016 02:04:45 PM,Other,05/06/2011 11:37:39 PM,400 Block of POWELL ST,SF,94108,B01,1,1362,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.788768328561, -122.408430006174)",111260398-E03 -160473376,AM20,16019096,Medical Incident,02/16/2016,02/16/2016,02/16/2016 07:59:55 PM,02/16/2016 07:59:55 PM,02/16/2016 08:03:24 PM,02/16/2016 08:03:58 PM,02/16/2016 08:13:36 PM,02/16/2016 08:13:38 PM,02/16/2016 08:17:50 PM,Code 3 Transport,02/16/2016 08:46:20 PM,1300 Block of 17TH ST,San Francisco,94107,B03,29,2425,3,3,3,false,Non Life-threatening,1,PRIVATE,5,3,10,Potrero Hill,"(37.765046584262, -122.397248896045)",160473376-AM20 -160031315,KM11,16001158,Medical Incident,01/03/2016,01/03/2016,01/03/2016 11:47:14 AM,01/03/2016 11:48:07 AM,01/03/2016 11:48:25 AM,01/03/2016 11:48:58 AM,01/03/2016 11:52:45 AM,01/03/2016 12:09:29 PM,01/03/2016 12:15:03 PM,Code 2 Transport,01/03/2016 12:35:04 PM,1000 Block of POLK ST,San Francisco,94109,B04,3,3121,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",160031315-KM11 -140850126,AM02,14028581,Medical Incident,03/26/2014,03/26/2014,03/26/2014 10:40:02 AM,03/26/2014 10:41:11 AM,03/26/2014 10:42:31 AM,03/26/2014 10:42:31 AM,03/26/2014 10:54:21 AM,03/26/2014 10:59:45 AM,03/26/2014 11:17:11 AM,Code 2 Transport,03/26/2014 12:07:57 PM,1500 Block of HAYES ST,SAN FRANCISCO,94117,B05,21,4351,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Lone Mountain/USF,"(37.7744089216996, -122.441921717893)",140850126-AM02 -120960144,E02,12031756,Medical Incident,04/05/2012,04/05/2012,04/05/2012 11:57:43 AM,04/05/2012 12:00:30 PM,04/05/2012 12:00:55 PM,04/05/2012 12:01:10 PM,04/05/2012 12:04:12 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Other,04/05/2012 12:18:52 PM,900 Block of GRANT AVE,SF,94108,B01,2,1312,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7955932512084, -122.406495596732)",120960144-E02 -160641617,KM04,16025487,Medical Incident,03/04/2016,03/04/2016,03/04/2016 11:51:36 AM,03/04/2016 11:53:49 AM,03/04/2016 11:55:47 AM,03/04/2016 11:56:36 AM,03/04/2016 12:09:16 PM,03/04/2016 12:32:36 PM,03/04/2016 01:02:04 PM,Code 2 Transport,03/04/2016 01:47:22 PM,2500 Block of 47TH AVE,San Francisco,94116,B08,23,7712,2,2,2,false,Non Life-threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.738934697003, -122.505425150748)",160641617-KM04 -102850447,T09,10090954,Structure Fire,10/12/2010,10/12/2010,10/12/2010 09:45:30 PM,10/12/2010 09:45:30 PM,10/12/2010 09:46:48 PM,10/12/2010 09:47:57 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,04/25/2016 02:08:08 PM,Other,10/12/2010 09:50:37 PM,0 Block of OGDEN AV,SF,94110,B10,42,6373,3,3,3,false,,1,TRUCK,2,10,9,Bernal Heights,"(37.7357223682795, -122.409678079531)",102850447-T09 -133440352,T05,13116800,Electrical Hazard,12/10/2013,12/10/2013,12/10/2013 07:24:55 PM,12/10/2013 07:26:24 PM,12/10/2013 07:26:54 PM,12/10/2013 07:27:49 PM,12/10/2013 07:30:35 PM,04/25/2016 01:49:20 PM,04/25/2016 01:49:20 PM,Other,12/10/2013 07:37:47 PM,2100 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,false,Alarm,1,TRUCK,6,5,5,Western Addition,"(37.783357968274, -122.438601387081)",133440352-T05 -160690446,62,16027340,Medical Incident,03/09/2016,03/08/2016,03/09/2016 06:07:06 AM,03/09/2016 06:09:14 AM,03/09/2016 06:10:29 AM,03/09/2016 06:10:29 AM,03/09/2016 06:15:28 AM,03/09/2016 06:27:02 AM,03/09/2016 06:32:43 AM,Code 2 Transport,03/09/2016 07:04:23 AM,GOLDEN GATE AV/LARKIN ST,San Francisco,94102,B02,3,1644,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7814474940022, -122.417145613411)",160690446-62 -160510147,63,16020310,Medical Incident,02/20/2016,02/19/2016,02/20/2016 01:00:31 AM,02/20/2016 01:01:39 AM,02/20/2016 01:02:14 AM,02/20/2016 01:02:29 AM,02/20/2016 01:20:44 AM,02/20/2016 01:20:45 AM,02/20/2016 01:36:13 AM,Code 2 Transport,02/20/2016 02:07:30 AM,0 Block of POTOMAC ST,San Francisco,94117,B05,6,3635,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,8,Haight Ashbury,"(37.7703856416755, -122.432551414901)",160510147-63 -140430038,T09,14014495,Traffic Collision,02/12/2014,02/11/2014,02/12/2014 04:02:15 AM,02/12/2014 04:02:15 AM,02/12/2014 04:02:47 AM,02/12/2014 04:05:25 AM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,04/25/2016 01:48:15 PM,Other,02/12/2014 04:08:36 AM,SAN BRUNO AV/GAVEN ST,SF,94134,B10,42,6366,3,3,3,true,Potentially Life-Threatening,1,TRUCK,5,10,9,Portola,"(37.7340177516286, -122.406515383742)",140430038-T09 -103630208,68,10116467,Medical Incident,12/29/2010,12/29/2010,12/29/2010 03:30:18 PM,12/29/2010 03:30:55 PM,12/29/2010 03:31:12 PM,12/29/2010 03:32:01 PM,12/29/2010 03:33:44 PM,12/29/2010 03:45:05 PM,12/29/2010 03:47:34 PM,Code 2 Transport,12/29/2010 04:08:49 PM,ELLIS ST/HYDE ST,SF,94109,B02,3,1555,3,3,3,true,,1,MEDIC,2,2,6,Tenderloin,"(37.784448840667, -122.416071735104)",103630208-68 -113200241,E19,11106321,Medical Incident,11/16/2011,11/16/2011,11/16/2011 02:28:03 PM,11/16/2011 02:29:05 PM,11/16/2011 02:29:52 PM,11/16/2011 02:30:35 PM,11/16/2011 02:35:13 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 03:04:22 PM,100 Block of CAMBON DR,SF,94132,B08,19,8428,E,3,3,true,,1,ENGINE,2,8,7,Lakeshore,"(37.7166731170808, -122.474173685372)",113200241-E19 -160193291,AM20,16007782,Medical Incident,01/19/2016,01/19/2016,01/19/2016 07:59:48 PM,01/19/2016 07:59:48 PM,01/19/2016 08:00:13 PM,01/19/2016 08:01:00 PM,01/19/2016 08:09:42 PM,01/19/2016 08:25:00 PM,01/19/2016 08:30:44 PM,Code 2 Transport,01/19/2016 09:01:00 PM,900 Block of BUSH ST,San Francisco,94109,B01,41,1446,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,1,3,Nob Hill,"(37.7895803828308, -122.412891156816)",160193291-AM20 -111630224,E21,11053860,Medical Incident,06/12/2011,06/12/2011,06/12/2011 04:54:58 PM,06/12/2011 04:56:19 PM,06/12/2011 04:57:05 PM,06/12/2011 04:58:04 PM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,Other,06/12/2011 04:59:09 PM,HAIGHT ST/MASONIC AV,SF,94117,B05,21,4466,3,3,3,false,,1,ENGINE,3,5,5,Haight Ashbury,"(37.7702101749203, -122.445344989178)",111630224-E21 -160601090,AM08,16023837,Medical Incident,02/29/2016,02/29/2016,02/29/2016 10:01:51 AM,02/29/2016 10:02:28 AM,02/29/2016 10:02:54 AM,02/29/2016 10:03:31 AM,02/29/2016 10:07:04 AM,02/29/2016 10:26:29 AM,02/29/2016 10:32:45 AM,Code 2 Transport,02/29/2016 10:59:13 AM,200 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7818654473304, -122.414285346421)",160601090-AM08 -160070188,52,16002670,Medical Incident,01/07/2016,01/06/2016,01/07/2016 01:56:01 AM,01/07/2016 01:56:01 AM,01/07/2016 01:56:17 AM,01/07/2016 01:56:25 AM,01/07/2016 02:03:15 AM,01/07/2016 02:18:23 AM,01/07/2016 02:28:42 AM,Code 2 Transport,01/07/2016 03:27:30 AM,200 Block of CHATTANOOGA ST,San Francisco,94114,B06,11,5513,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,8,Noe Valley,"(37.7525693952457, -122.426336372717)",160070188-52 -140070081,E07,14002411,Medical Incident,01/07/2014,01/06/2014,01/07/2014 07:55:54 AM,01/07/2014 07:57:28 AM,01/07/2014 07:58:08 AM,01/07/2014 08:00:02 AM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 08:03:13 AM,500 Block of VERMONT ST,SF,94107,B10,29,2512,,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,10,Potrero Hill,"(37.7627433423105, -122.404384264447)",140070081-E07 -102680284,71,10084979,Medical Incident,09/25/2010,09/25/2010,09/25/2010 03:32:37 PM,09/25/2010 03:33:20 PM,09/25/2010 03:34:34 PM,09/25/2010 03:41:12 PM,09/25/2010 03:46:51 PM,09/25/2010 04:16:58 PM,09/25/2010 04:27:13 PM,Code 2 Transport,09/25/2010 04:55:48 PM,100 Block of JASPER PL,SF,94133,B01,28,1265,3,3,3,true,,1,MEDIC,2,1,3,North Beach,"(37.8010178849645, -122.408387102079)",102680284-71 -111580108,E03,11052177,Medical Incident,06/07/2011,06/07/2011,06/07/2011 10:28:40 AM,06/07/2011 10:29:19 AM,06/07/2011 10:29:46 AM,06/07/2011 10:32:28 AM,06/07/2011 10:34:38 AM,04/25/2016 02:04:16 PM,04/25/2016 02:04:16 PM,Other,06/07/2011 10:43:51 AM,0 Block of JONES ST,SF,94102,B03,1,1455,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.7815955871561, -122.412190669917)",111580108-E03 -113090211,E09,11102712,Medical Incident,11/05/2011,11/05/2011,11/05/2011 03:21:22 PM,11/05/2011 03:21:55 PM,11/05/2011 03:22:08 PM,11/05/2011 03:24:08 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,04/25/2016 02:01:47 PM,Other,11/05/2011 03:46:55 PM,26TH ST/YORK ST,SF,94110,B06,9,5532,3,2,2,true,,1,ENGINE,2,6,9,Mission,"(37.7496572265458, -122.407884355924)",113090211-E09 -121610116,T12,12053249,Medical Incident,06/09/2012,06/09/2012,06/09/2012 10:09:10 AM,06/09/2012 10:09:10 AM,06/09/2012 10:09:10 AM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,04/25/2016 01:58:18 PM,Other,06/09/2012 10:22:58 AM,0 Block of HAGIWARA TEA GARDEN DR,SF,94118,B07,31,7742,2,2,2,true,Non Life-threatening,1,TRUCK,2,7,1,Golden Gate Park,"(37.7694537012686, -122.469609049655)",121610116-T12 -160260927,73,16010229,Medical Incident,01/26/2016,01/26/2016,01/26/2016 08:53:24 AM,01/26/2016 08:54:49 AM,01/26/2016 08:54:57 AM,01/26/2016 08:55:17 AM,01/26/2016 09:02:19 AM,01/26/2016 09:22:09 AM,01/26/2016 09:29:13 AM,Code 2 Transport,01/26/2016 10:27:23 AM,200 Block of POTRERO AVE,San Francisco,94103,B02,29,2351,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7664376828612, -122.407540732549)",160260927-73 -140740201,E48,14025028,Medical Incident,03/15/2014,03/15/2014,03/15/2014 01:43:38 PM,03/15/2014 01:45:17 PM,03/15/2014 01:45:40 PM,03/15/2014 01:47:00 PM,03/15/2014 01:50:54 PM,04/25/2016 01:47:43 PM,04/25/2016 01:47:43 PM,Code 2 Transport,03/15/2014 02:24:27 PM,1300 Block of GATEVIEW AVE,TREASURE ISLAN,94130,B03,48,2931,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",140740201-E48 -120880191,T10,12029191,Alarms,03/28/2012,03/28/2012,03/28/2012 02:27:19 PM,03/28/2012 02:29:44 PM,03/28/2012 02:29:54 PM,03/28/2012 02:31:14 PM,03/28/2012 02:33:58 PM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 02:42:47 PM,100 Block of 3RD AVE,SF,94118,B07,31,7115,3,3,3,false,Alarm,1,TRUCK,2,7,2,Inner Richmond,"(37.786106452065, -122.461488844398)",120880191-T10 -160323903,62,16012792,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:34:15 PM,02/01/2016 11:34:54 PM,02/01/2016 11:35:22 PM,02/01/2016 11:35:34 PM,02/01/2016 11:38:01 PM,02/01/2016 11:45:30 PM,02/01/2016 11:50:58 PM,Code 3 Transport,02/02/2016 12:48:11 AM,16TH ST/VALENCIA ST,San Francisco,94103,B02,6,5235,E,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7649173790256, -122.421886447232)",160323903-62 -160731001,87,16028938,Medical Incident,03/13/2016,03/13/2016,03/13/2016 11:26:09 AM,03/13/2016 11:26:09 AM,03/13/2016 11:26:09 AM,03/13/2016 11:26:09 AM,03/13/2016 11:26:09 AM,03/13/2016 12:00:13 PM,03/13/2016 12:08:26 PM,Code 2 Transport,03/13/2016 12:41:15 PM,LEAVENWORTH ST/ELLIS ST,San Francisco,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",160731001-87 -140090039,82,14003026,Medical Incident,01/09/2014,01/08/2014,01/09/2014 02:53:09 AM,01/09/2014 02:55:15 AM,01/09/2014 02:56:00 AM,01/09/2014 02:56:32 AM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,04/25/2016 01:48:49 PM,Other,01/09/2014 04:59:55 AM,200 Block of LAKE MERCED HILL ST,SF,94132,B08,19,8777,,2,2,false,Non Life-threatening,1,MEDIC,3,8,7,Lakeshore,"(37.7129923229789, -122.483521842134)",140090039-82 -132880175,E29,13097965,Structure Fire,10/15/2013,10/15/2013,10/15/2013 11:25:59 AM,10/15/2013 11:26:57 AM,10/15/2013 11:27:42 AM,10/15/2013 11:27:56 AM,10/15/2013 11:32:34 AM,04/25/2016 01:50:15 PM,04/25/2016 01:50:15 PM,Other,10/15/2013 11:42:55 AM,1900 Block of 18TH ST,SF,94107,B02,37,2455,3,3,3,true,Alarm,1,ENGINE,4,10,10,Potrero Hill,"(37.7622049152778, -122.401820320601)",132880175-E29 -160311052,60,16012110,Other,01/31/2016,01/31/2016,01/31/2016 09:52:14 AM,01/31/2016 09:52:14 AM,01/31/2016 09:54:45 AM,01/31/2016 09:54:58 AM,01/31/2016 10:00:14 AM,01/31/2016 10:31:15 AM,01/31/2016 10:37:43 AM,Code 2 Transport,01/31/2016 11:10:25 AM,GOUGH ST/OAK ST,San Francisco,94102,B02,36,3266,2,2,2,true,Alarm,1,MEDIC,2,2,5,Hayes Valley,"(37.7750206954016, -122.42259804367)",160311052-60 -160320400,62,16012443,Medical Incident,02/01/2016,01/31/2016,02/01/2016 05:06:18 AM,02/01/2016 05:07:34 AM,02/01/2016 05:08:18 AM,02/01/2016 05:08:28 AM,02/01/2016 05:16:33 AM,02/01/2016 05:30:14 AM,02/01/2016 05:49:23 AM,Code 2 Transport,02/01/2016 06:29:40 AM,BATTERY ST/CALIFORNIA ST,San Francisco,94111,B01,13,1162,2,3,3,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7932091009557, -122.399958736963)",160320400-62 -160693689,AM16,16027665,Medical Incident,03/09/2016,03/09/2016,03/09/2016 09:50:27 PM,03/09/2016 09:51:15 PM,03/09/2016 09:51:35 PM,03/09/2016 09:52:49 PM,03/09/2016 09:57:29 PM,03/09/2016 10:11:41 PM,03/09/2016 10:21:42 PM,Code 3 Transport,03/09/2016 11:17:11 PM,2000 Block of LARKIN ST,San Francisco,94109,B01,41,1632,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,4,4,3,Russian Hill,"(37.7965929265297, -122.420281529401)",160693689-AM16 -111210369,99,11040104,Medical Incident,05/01/2011,05/01/2011,05/01/2011 08:10:00 PM,05/01/2011 08:10:50 PM,05/01/2011 08:11:07 PM,04/25/2016 02:04:50 PM,05/01/2011 08:22:13 PM,05/01/2011 08:28:40 PM,05/01/2011 08:35:33 PM,Code 3 Transport,05/01/2011 09:12:28 PM,5TH ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,true,,1,MEDIC,3,3,6,South of Market,"(37.7839914857614, -122.408066547804)",111210369-99 -160232939,85,16009275,Medical Incident,01/23/2016,01/23/2016,01/23/2016 06:35:52 PM,01/23/2016 06:35:52 PM,01/23/2016 06:39:31 PM,01/23/2016 06:39:49 PM,01/23/2016 07:02:17 PM,01/23/2016 07:24:29 PM,01/23/2016 07:50:22 PM,Code 2 Transport,01/23/2016 08:14:29 PM,200 Block of FARALLONES ST,San Francisco,94112,B09,33,8374,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7139875097179, -122.460811423157)",160232939-85 -140120169,77,14004141,Medical Incident,01/12/2014,01/12/2014,01/12/2014 01:47:44 PM,01/12/2014 01:49:35 PM,01/12/2014 01:49:52 PM,01/12/2014 01:50:18 PM,01/12/2014 01:55:52 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 01:59:01 PM,26TH ST/YORK ST,SF,94110,B06,9,5532,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7496572265458, -122.407884355924)",140120169-77 -160170501,89,16006698,Medical Incident,01/17/2016,01/16/2016,01/17/2016 04:23:58 AM,01/17/2016 04:27:21 AM,01/17/2016 04:27:28 AM,01/17/2016 04:27:42 AM,01/17/2016 04:32:09 AM,01/17/2016 04:37:56 AM,01/17/2016 04:49:03 AM,Code 2 Transport,01/17/2016 05:46:58 AM,300 Block of LEAVENWORTH ST,San Francisco,94109,B02,3,1545,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",160170501-89 -132410327,E08,13081422,Structure Fire,08/29/2013,08/29/2013,08/29/2013 08:55:02 PM,08/29/2013 08:57:00 PM,08/29/2013 08:57:48 PM,08/29/2013 08:58:42 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,04/25/2016 01:51:03 PM,Other,08/29/2013 09:16:04 PM,1200 Block of EXPOSITION DR,TI,94130,B03,48,2931,3,3,3,true,Alarm,1,ENGINE,6,None,6,Treasure Island,"(37.829470112515, -122.371782476258)",132410327-E08 -160183310,85,16007404,Medical Incident,01/18/2016,01/18/2016,01/18/2016 09:58:22 PM,01/18/2016 10:00:15 PM,01/18/2016 10:00:50 PM,01/18/2016 10:01:09 PM,01/18/2016 10:12:30 PM,01/18/2016 10:25:40 PM,01/18/2016 10:42:14 PM,Code 2 Transport,01/18/2016 11:12:06 PM,0 Block of BEACH ST,San Francisco,94133,B01,28,939,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8080500969059, -122.409877282931)",160183310-85 -160820205,89,16032432,Medical Incident,03/22/2016,03/21/2016,03/22/2016 02:06:02 AM,03/22/2016 02:07:16 AM,03/22/2016 02:07:42 AM,03/22/2016 02:07:58 AM,03/22/2016 02:10:53 AM,03/22/2016 02:20:02 AM,03/22/2016 02:25:18 AM,Code 2 Transport,03/22/2016 02:51:19 AM,500 Block of 7TH AV,San Francisco,94118,B07,31,7131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,7,1,Inner Richmond,"(37.7781106106818, -122.465208632211)",160820205-89 -102870234,93,10091541,Medical Incident,10/14/2010,10/14/2010,10/14/2010 02:06:39 PM,10/14/2010 02:07:56 PM,10/14/2010 02:11:06 PM,10/14/2010 02:11:29 PM,04/25/2016 02:08:06 PM,10/14/2010 02:30:18 PM,10/14/2010 02:48:30 PM,Code 2 Transport,10/14/2010 03:06:19 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,2,2,2,true,,1,MEDIC,1,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",102870234-93 -110390187,E07,11012934,Structure Fire,02/08/2011,02/08/2011,02/08/2011 12:59:08 PM,02/08/2011 12:59:09 PM,02/08/2011 12:59:19 PM,02/08/2011 01:00:02 PM,02/08/2011 01:01:43 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 01:02:37 PM,22ND ST/MISSION ST,SF,94110,B06,7,5472,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7554369366673, -122.41874757536)",110390187-E07 -122670053,AM18,12088109,Medical Incident,09/23/2012,09/22/2012,09/23/2012 03:03:09 AM,09/23/2012 03:03:33 AM,09/23/2012 03:04:01 AM,09/23/2012 03:04:45 AM,09/23/2012 03:11:56 AM,04/25/2016 01:56:38 PM,04/25/2016 01:56:38 PM,Patient Declined Transport,09/23/2012 04:15:44 AM,1500 Block of 23RD AVE,SF,94122,B08,22,7447,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7587076180029, -122.481151284784)",122670053-AM18 -160522005,75,16020848,Medical Incident,02/21/2016,02/21/2016,02/21/2016 02:46:52 PM,02/21/2016 02:48:37 PM,02/21/2016 02:49:01 PM,02/21/2016 02:49:11 PM,02/21/2016 02:57:41 PM,02/21/2016 03:08:23 PM,02/21/2016 03:28:12 PM,Code 2 Transport,02/21/2016 04:00:10 PM,BRODERICK ST/BROADWAY,San Francisco,94123,B04,10,4226,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7932242412519, -122.443192237139)",160522005-75 -112330096,E15,11076871,Medical Incident,08/21/2011,08/21/2011,08/21/2011 08:39:50 AM,08/21/2011 08:41:00 AM,08/21/2011 08:41:25 AM,08/21/2011 08:43:02 AM,08/21/2011 08:43:38 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,Other,08/21/2011 08:56:41 AM,100 Block of HAROLD AVE,SF,94112,B09,15,8466,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.7209475450544, -122.453027122282)",112330096-E15 -131310232,KM14,13044264,Medical Incident,05/11/2013,05/11/2013,05/11/2013 01:55:49 PM,05/11/2013 02:01:04 PM,05/11/2013 02:01:32 PM,05/11/2013 02:02:07 PM,05/11/2013 02:03:45 PM,05/11/2013 02:24:50 PM,05/11/2013 02:29:42 PM,Code 2 Transport,05/11/2013 03:13:00 PM,600 Block of COLE ST,SF,94117,B05,12,4532,3,3,3,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.769068075766, -122.450547663909)",131310232-KM14 -160120380,KM03,16004643,Medical Incident,01/12/2016,01/11/2016,01/12/2016 04:53:29 AM,01/12/2016 04:54:12 AM,01/12/2016 04:54:23 AM,01/12/2016 04:56:43 AM,01/12/2016 05:00:44 AM,01/12/2016 05:21:09 AM,01/12/2016 05:56:57 AM,Code 2 Transport,01/12/2016 06:41:13 AM,1200 Block of ARGUELLO BL,San Francisco,94122,B05,12,7321,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Inner Sunset,"(37.7650790746821, -122.457806243838)",160120380-KM03 -140040176,E12,14001438,Medical Incident,01/04/2014,01/04/2014,01/04/2014 12:28:53 PM,01/04/2014 12:29:15 PM,01/04/2014 12:29:33 PM,01/04/2014 12:30:14 PM,01/04/2014 12:31:20 PM,04/25/2016 01:48:53 PM,04/25/2016 01:48:53 PM,Other,01/04/2014 12:41:41 PM,CARL ST/COLE ST,SF,94117,B05,12,5144,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7658000298196, -122.449958130403)",140040176-E12 -131650237,67,13056092,Medical Incident,06/14/2013,06/14/2013,06/14/2013 02:56:02 PM,06/14/2013 02:56:38 PM,06/14/2013 02:59:19 PM,06/14/2013 02:59:30 PM,06/14/2013 03:15:43 PM,04/25/2016 01:52:18 PM,04/25/2016 01:52:18 PM,Patient Declined Transport,06/14/2013 03:40:53 PM,0 Block of TURK ST,SF,94102,B03,1,1365,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",131650237-67 -121810023,RC1,12060131,Medical Incident,06/29/2012,06/28/2012,06/29/2012 01:31:47 AM,06/29/2012 01:31:47 AM,06/29/2012 01:32:00 AM,06/29/2012 01:33:09 AM,06/29/2012 01:39:28 AM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/29/2012 01:58:41 AM,MARKET ST/DRUMM ST,SF,94105,B01,13,1113,E,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",121810023-RC1 -111600026,E01,11052768,Medical Incident,06/09/2011,06/08/2011,06/09/2011 02:13:18 AM,06/09/2011 02:13:46 AM,06/09/2011 02:14:25 AM,06/09/2011 02:16:28 AM,06/09/2011 02:18:26 AM,04/25/2016 02:04:14 PM,04/25/2016 02:04:14 PM,Other,06/09/2011 02:26:33 AM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",111600026-E01 -131000376,75,13033772,Medical Incident,04/10/2013,04/10/2013,04/10/2013 09:15:15 PM,04/10/2013 09:15:36 PM,04/10/2013 09:16:30 PM,04/10/2013 09:16:53 PM,04/10/2013 09:22:05 PM,04/10/2013 09:36:00 PM,04/10/2013 10:01:58 PM,Code 2 Transport,04/10/2013 10:27:41 PM,700 Block of VALLEJO ST,SF,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7985110684501, -122.409769091125)",131000376-75 -120130233,83,12004492,Medical Incident,01/13/2012,01/13/2012,01/13/2012 04:42:13 PM,01/13/2012 04:43:24 PM,01/13/2012 04:51:00 PM,01/13/2012 04:51:27 PM,01/13/2012 05:02:51 PM,01/13/2012 05:24:17 PM,01/13/2012 05:49:35 PM,Code 2 Transport,01/13/2012 06:16:50 PM,1500 Block of CAYUGA AVE,SF,94112,B09,15,8335,1,1,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7165945100308, -122.446327405536)",120130233-83 -132670177,B02,13090630,Alarms,09/24/2013,09/24/2013,09/24/2013 12:38:52 PM,09/24/2013 12:39:58 PM,09/24/2013 12:40:32 PM,09/24/2013 12:42:50 PM,09/24/2013 12:44:34 PM,04/25/2016 01:50:36 PM,04/25/2016 01:50:36 PM,Other,09/24/2013 12:54:07 PM,600 Block of VAN NESS AVE,SF,94102,B02,36,3164,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.78147394156, -122.42068958116)",132670177-B02 -133550140,86,13120624,Medical Incident,12/21/2013,12/21/2013,12/21/2013 10:06:10 AM,12/21/2013 10:06:33 AM,12/21/2013 10:06:58 AM,12/21/2013 10:07:12 AM,12/21/2013 10:11:53 AM,04/25/2016 01:49:08 PM,04/25/2016 01:49:08 PM,Other,12/21/2013 10:12:25 AM,100 Block of 12TH ST,SF,94103,B02,36,5116,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7720804329053, -122.417575406744)",133550140-86 -140310247,T11,14010603,Structure Fire,01/31/2014,01/31/2014,01/31/2014 06:04:27 PM,01/31/2014 06:05:22 PM,01/31/2014 06:16:13 PM,01/31/2014 06:17:05 PM,01/31/2014 06:23:35 PM,04/25/2016 01:48:26 PM,04/25/2016 01:48:26 PM,Other,01/31/2014 08:32:49 PM,1300 Block of SHAFTER AVE,SF,94124,B10,17,6653,,3,3,false,Fire,2,TRUCK,17,10,10,Bayview Hunters Point,"(37.7283446395843, -122.386091726339)",140310247-T11 -132870289,B01,13097718,Structure Fire,10/14/2013,10/14/2013,10/14/2013 05:05:54 PM,10/14/2013 05:07:04 PM,10/14/2013 05:08:59 PM,10/14/2013 05:10:01 PM,10/14/2013 05:12:13 PM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 05:37:50 PM,700 Block of TAYLOR ST,SF,94108,B01,41,1446,3,3,3,false,Alarm,1,CHIEF,3,1,3,Nob Hill,"(37.7892825039082, -122.411912440084)",132870289-B01 -112260011,59,11074527,Medical Incident,08/14/2011,08/13/2011,08/14/2011 12:30:27 AM,08/14/2011 12:31:56 AM,08/14/2011 12:33:09 AM,08/14/2011 12:33:16 AM,08/14/2011 12:43:40 AM,08/14/2011 12:56:35 AM,08/14/2011 01:07:46 AM,Code 2 Transport,08/14/2011 01:37:15 AM,2ND ST/BRYANT ST,SF,94107,B03,8,2152,3,2,2,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7830778523618, -122.393618077491)",112260011-59 -130120270,B01,13004165,Alarms,01/12/2013,01/12/2013,01/12/2013 05:47:58 PM,01/12/2013 05:49:00 PM,01/12/2013 05:50:18 PM,01/12/2013 05:51:53 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,04/25/2016 01:54:50 PM,Other,01/12/2013 05:54:04 PM,300 Block of MASON ST,SF,94102,B01,3,1411,3,3,3,false,Alarm,1,CHIEF,2,1,3,Tenderloin,"(37.7864394524764, -122.409660751795)",130120270-B01 -160790726,71,16031329,Structure Fire,03/19/2016,03/18/2016,03/19/2016 07:08:27 AM,03/19/2016 07:08:27 AM,03/19/2016 07:12:52 AM,03/19/2016 07:12:59 AM,03/19/2016 07:14:29 AM,03/19/2016 07:34:58 AM,03/19/2016 08:11:17 AM,Code 2 Transport,03/19/2016 08:34:20 AM,24TH ST/FOLSOM ST,San Francisco,94110,B06,7,5526,3,3,3,true,Alarm,1,MEDIC,2,6,9,Mission,"(37.7525060662321, -122.414086032423)",160790726-71 -160560305,71,16022236,Medical Incident,02/25/2016,02/24/2016,02/25/2016 03:37:06 AM,02/25/2016 03:39:11 AM,02/25/2016 03:39:25 AM,02/25/2016 03:39:32 AM,02/25/2016 03:49:07 AM,02/25/2016 03:56:33 AM,02/25/2016 04:03:33 AM,Code 2 Transport,02/25/2016 05:14:39 AM,200 Block of 13TH ST,San Francisco,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",160560305-71 -132320044,KM15,13078251,Medical Incident,08/20/2013,08/19/2013,08/20/2013 05:42:27 AM,08/20/2013 05:42:48 AM,08/20/2013 05:43:50 AM,08/20/2013 05:44:44 AM,08/20/2013 05:56:44 AM,08/20/2013 06:08:03 AM,08/20/2013 06:33:37 AM,Code 2 Transport,08/20/2013 06:50:40 AM,15TH ST/CHURCH ST,SF,94114,B02,6,5227,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Castro/Upper Market,"(37.7661300154558, -122.428819146831)",132320044-KM15 -103360214,AM06,10107508,Traffic Collision,12/02/2010,12/02/2010,12/02/2010 02:05:11 PM,12/02/2010 02:06:04 PM,12/02/2010 02:06:57 PM,12/02/2010 02:11:42 PM,12/02/2010 02:14:34 PM,12/02/2010 02:30:23 PM,12/02/2010 02:56:19 PM,Code 2 Transport,12/02/2010 03:29:10 PM,25TH AV/MARTIN LUTHER KING DR,SF,94122,B08,22,7452,3,3,3,false,,1,PRIVATE,6,7,1,Golden Gate Park,"(37.76677018548, -122.482371855409)",103360214-AM06 -140440036,67,14014838,Medical Incident,02/13/2014,02/12/2014,02/13/2014 03:14:10 AM,02/13/2014 03:15:59 AM,02/13/2014 03:16:26 AM,02/13/2014 03:17:12 AM,02/13/2014 03:24:47 AM,02/13/2014 03:41:21 AM,02/13/2014 03:57:01 AM,Code 2 Transport,02/13/2014 04:38:14 AM,0 Block of WHEAT ST,SF,94124,B10,44,6323,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7230559060941, -122.400293769252)",140440036-67 -131690333,T15,13057498,Other,06/18/2013,06/18/2013,06/18/2013 06:06:39 PM,06/18/2013 06:07:44 PM,06/18/2013 06:08:12 PM,06/18/2013 06:09:36 PM,06/18/2013 06:13:56 PM,04/25/2016 01:52:13 PM,04/25/2016 01:52:13 PM,Other,06/18/2013 06:25:14 PM,0 Block of GREENWOOD AVE,SF,94112,B09,15,8521,2,2,2,false,Alarm,1,TRUCK,1,9,7,West of Twin Peaks,"(37.728729309645, -122.454389262605)",131690333-T15 -113040276,E01,11100991,Structure Fire,10/31/2011,10/31/2011,10/31/2011 04:22:37 PM,10/31/2011 04:22:38 PM,10/31/2011 04:22:54 PM,10/31/2011 04:24:08 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/31/2011 04:26:28 PM,400 Block of PINE ST,SF,94104,B01,13,1832,3,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7918712067867, -122.403230910204)",113040276-E01 -110520167,74,11017214,Medical Incident,02/21/2011,02/21/2011,02/21/2011 01:01:43 PM,02/21/2011 01:02:28 PM,02/21/2011 01:03:38 PM,02/21/2011 01:05:33 PM,02/21/2011 01:14:28 PM,02/21/2011 01:44:45 PM,02/21/2011 02:02:05 PM,Code 2 Transport,02/21/2011 02:28:20 PM,MASON ST/PACIFIC AV,SF,94133,B01,2,1416,3,3,3,true,,1,MEDIC,2,1,3,Chinatown,"(37.7962907638042, -122.411718940358)",110520167-74 -123200014,B02,12106248,Alarms,11/15/2012,11/14/2012,11/15/2012 02:02:33 AM,11/15/2012 02:04:11 AM,11/15/2012 02:04:15 AM,11/15/2012 02:05:56 AM,11/15/2012 02:09:21 AM,04/25/2016 01:55:48 PM,04/25/2016 01:55:48 PM,Fire,11/15/2012 02:11:50 AM,3300 Block of 17TH ST,SF,94103,B02,7,5247,3,3,3,false,Alarm,1,CHIEF,1,2,9,Mission,"(37.763392442414, -122.421087244049)",123200014-B02 -133280119,E03,13111412,Medical Incident,11/24/2013,11/24/2013,11/24/2013 09:40:51 AM,11/24/2013 09:40:57 AM,11/24/2013 09:41:09 AM,11/24/2013 09:42:17 AM,11/24/2013 09:45:11 AM,04/25/2016 01:49:36 PM,04/25/2016 01:49:36 PM,Other,11/24/2013 09:51:33 AM,PINE ST/OCTAVIA ST,SF,94109,B04,38,3325,3,3,3,true,Non Life-threatening,1,ENGINE,2,4,5,Pacific Heights,"(37.7887868948983, -122.427059673264)",133280119-E03 -121670035,E07,12055275,Medical Incident,06/15/2012,06/14/2012,06/15/2012 04:34:09 AM,06/15/2012 04:34:40 AM,06/15/2012 04:35:16 AM,06/15/2012 04:36:45 AM,06/15/2012 04:38:29 AM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/15/2012 04:50:09 AM,1200 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5511,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7531662445821, -122.416408491437)",121670035-E07 -160240324,53,16009409,Medical Incident,01/24/2016,01/23/2016,01/24/2016 02:05:32 AM,01/24/2016 02:05:42 AM,01/24/2016 02:06:52 AM,01/24/2016 02:07:04 AM,01/24/2016 02:12:58 AM,01/24/2016 02:31:23 AM,01/24/2016 02:50:57 AM,Code 2 Transport,01/24/2016 03:28:15 AM,BUCHANAN ST/UNION ST,San Francisco,94123,B04,16,3443,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Marina,"(37.7975069484154, -122.432204290819)",160240324-53 -160790949,AM08,16031350,Medical Incident,03/19/2016,03/19/2016,03/19/2016 08:46:00 AM,03/19/2016 08:48:16 AM,03/19/2016 08:49:15 AM,03/19/2016 08:51:23 AM,03/19/2016 08:56:40 AM,03/19/2016 09:10:05 AM,03/19/2016 09:31:08 AM,Code 2 Transport,03/19/2016 09:52:24 AM,200 Block of BLK LOOMIS ST,San Francisco,94124,B10,9,6377,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7406551031849, -122.405235331357)",160790949-AM08 -140460381,RC3,14015839,Medical Incident,02/15/2014,02/15/2014,02/15/2014 10:53:42 PM,02/15/2014 10:54:05 PM,02/15/2014 10:59:52 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,04/25/2016 01:48:11 PM,Other,02/15/2014 11:02:16 PM,1800 Block of FELTON ST,SF,94134,B09,43,6153,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,5,9,9,Excelsior,"(37.7253187899942, -122.422855621147)",140460381-RC3 -121970151,E03,12065486,Alarms,07/15/2012,07/15/2012,07/15/2012 11:24:47 AM,07/15/2012 11:27:06 AM,07/15/2012 11:27:13 AM,07/15/2012 11:27:21 AM,07/15/2012 11:29:34 AM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/15/2012 11:48:38 AM,1200 Block of TURK ST,SF,94115,B02,5,3426,3,3,3,true,Alarm,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",121970151-E03 -102530295,84,10080031,Medical Incident,09/10/2010,09/10/2010,09/10/2010 05:00:11 PM,09/10/2010 05:00:44 PM,09/10/2010 05:01:20 PM,09/10/2010 05:01:56 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,04/25/2016 02:08:39 PM,Other,09/10/2010 05:09:02 PM,100 Block of CRESCENT AVE,SF,94110,B06,32,5644,3,3,3,true,,1,MEDIC,2,6,9,Bernal Heights,"(37.7351603117505, -122.421167943113)",102530295-84 -160140391,88,16005438,Medical Incident,01/14/2016,01/13/2016,01/14/2016 05:08:57 AM,01/14/2016 05:10:39 AM,01/14/2016 05:10:50 AM,01/14/2016 05:10:57 AM,01/14/2016 05:21:37 AM,01/14/2016 05:30:31 AM,01/14/2016 05:38:32 AM,Code 2 Transport,01/14/2016 05:59:49 AM,1200 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7504662478532, -122.396271587329)",160140391-88 -112840365,99,11094170,Medical Incident,10/11/2011,10/11/2011,10/11/2011 08:45:31 PM,10/11/2011 08:49:56 PM,10/11/2011 08:51:31 PM,10/11/2011 08:51:49 PM,10/11/2011 08:57:55 PM,10/11/2011 09:16:22 PM,10/11/2011 09:34:22 PM,Code 2 Transport,10/11/2011 09:55:56 PM,1700 Block of LA SALLE AVE,SF,94124,B10,25,6467,3,3,3,true,,1,MEDIC,3,10,10,Bayview Hunters Point,"(37.7381169167757, -122.391416846144)",112840365-99 -131200186,E33,13040376,Medical Incident,04/30/2013,04/30/2013,04/30/2013 02:54:56 PM,04/30/2013 02:57:04 PM,04/30/2013 02:58:33 PM,04/30/2013 02:59:51 PM,04/30/2013 03:04:26 PM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,04/30/2013 03:23:37 PM,300 Block of ELLINGTON AVE,SF,94112,B09,33,8346,2,2,2,true,Non Life-threatening,1,ENGINE,1,9,11,Outer Mission,"(37.7124278313923, -122.44655558742)",131200186-E33 -112080327,AM10,11068814,Medical Incident,07/27/2011,07/27/2011,07/27/2011 08:34:37 PM,07/27/2011 08:37:01 PM,07/27/2011 08:40:10 PM,07/27/2011 08:40:53 PM,07/27/2011 08:50:05 PM,07/27/2011 09:05:24 PM,07/27/2011 09:22:49 PM,Code 2 Transport,07/27/2011 09:59:58 PM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,1,1,2,false,,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",112080327-AM10 -120250189,E03,12008397,Alarms,01/25/2012,01/25/2012,01/25/2012 12:41:02 PM,01/25/2012 12:42:13 PM,01/25/2012 12:42:47 PM,01/25/2012 12:44:45 PM,01/25/2012 12:47:52 PM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 12:51:54 PM,1500 Block of CLAY ST,SF,94109,B04,41,1634,3,3,3,true,Alarm,1,ENGINE,2,1,3,Nob Hill,"(37.7926970176404, -122.418156901165)",120250189-E03 -160060799,81,16002314,Medical Incident,01/06/2016,01/06/2016,01/06/2016 08:44:10 AM,01/06/2016 08:44:10 AM,01/06/2016 08:44:44 AM,01/06/2016 08:44:52 AM,01/06/2016 08:50:36 AM,01/06/2016 09:11:21 AM,01/06/2016 09:47:32 AM,Code 2 Transport,01/06/2016 10:30:41 AM,1200 Block of MISSION ST,San Francisco,94103,B02,36,2318,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,South of Market,"(37.7770436202636, -122.413583483648)",160060799-81 -132270154,84,13076583,Medical Incident,08/15/2013,08/15/2013,08/15/2013 11:47:12 AM,08/15/2013 11:48:59 AM,08/15/2013 11:50:29 AM,08/15/2013 11:50:36 AM,08/15/2013 11:57:46 AM,08/15/2013 12:11:04 PM,08/15/2013 12:39:37 PM,Code 2 Transport,08/15/2013 01:14:07 PM,100 Block of BERRY ST,SF,94158,B03,8,2171,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7766313854103, -122.392189450554)",132270154-84 -123000133,RC2,12099395,Medical Incident,10/26/2012,10/26/2012,10/26/2012 10:47:56 AM,10/26/2012 10:50:50 AM,10/26/2012 10:51:17 AM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,04/25/2016 01:56:07 PM,Other,10/26/2012 10:59:37 AM,600 Block of 45TH AVE,SF,94121,B07,34,7273,1,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7762535401496, -122.506022206848)",123000133-RC2 -160061566,78,16002380,Medical Incident,01/06/2016,01/06/2016,01/06/2016 12:01:51 PM,01/06/2016 12:03:20 PM,01/06/2016 12:04:17 PM,01/06/2016 12:04:46 PM,01/06/2016 12:08:51 PM,01/06/2016 12:31:27 PM,01/06/2016 12:43:45 PM,Code 2 Transport,01/06/2016 01:28:12 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160061566-78 -131080281,B09,13036390,Structure Fire,04/18/2013,04/18/2013,04/18/2013 05:44:50 PM,04/18/2013 05:45:53 PM,04/18/2013 05:46:12 PM,04/18/2013 05:46:55 PM,04/18/2013 05:50:35 PM,04/25/2016 01:53:15 PM,04/25/2016 01:53:15 PM,Other,04/18/2013 06:09:17 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,3,3,3,false,Alarm,1,CHIEF,3,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",131080281-B09 -110040248,E07,11001348,Medical Incident,01/04/2011,01/04/2011,01/04/2011 03:49:48 PM,01/04/2011 03:49:49 PM,01/04/2011 03:49:57 PM,01/04/2011 03:51:24 PM,01/04/2011 03:52:54 PM,04/25/2016 02:06:46 PM,04/25/2016 02:06:46 PM,Other,01/04/2011 04:05:09 PM,21ST ST/SOUTH VAN NESS AV,SF,94110,B06,7,5455,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7571666434801, -122.416719595074)",110040248-E07 -103610223,E02,10115837,Medical Incident,12/27/2010,12/27/2010,12/27/2010 03:13:10 PM,12/27/2010 03:14:19 PM,12/27/2010 03:15:17 PM,12/27/2010 03:18:41 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,04/25/2016 02:06:54 PM,Other,12/27/2010 03:20:58 PM,2000 Block of KEARNY ST,SF,94133,B01,28,939,3,3,3,true,,1,ENGINE,3,1,3,North Beach,"(37.8069201392161, -122.407170160416)",103610223-E02 -160301841,AM06,16011793,Medical Incident,01/30/2016,01/30/2016,01/30/2016 12:41:30 PM,01/30/2016 12:45:54 PM,01/30/2016 12:46:17 PM,01/30/2016 12:46:54 PM,01/30/2016 12:55:38 PM,01/30/2016 01:20:50 PM,01/30/2016 01:46:06 PM,Code 2 Transport,01/30/2016 02:17:07 PM,600 Block of VISITACION AVE,San Francisco,94134,B09,44,6256,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7107682684881, -122.405720151199)",160301841-AM06 -132290261,67,13077362,Medical Incident,08/17/2013,08/17/2013,08/17/2013 03:52:11 PM,08/17/2013 03:53:59 PM,08/17/2013 03:55:24 PM,08/17/2013 03:55:41 PM,08/17/2013 04:02:04 PM,08/17/2013 04:21:35 PM,08/17/2013 04:29:15 PM,Code 2 Transport,08/17/2013 05:02:13 PM,600 Block of POLK ST,SF,94102,B02,3,3114,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,2,6,Tenderloin,"(37.7826440356884, -122.419019157242)",132290261-67 -133600210,E01,13122373,Medical Incident,12/26/2013,12/26/2013,12/26/2013 02:41:09 PM,12/26/2013 02:43:16 PM,12/26/2013 02:44:02 PM,12/26/2013 02:44:31 PM,12/26/2013 02:50:16 PM,04/25/2016 01:49:03 PM,04/25/2016 01:49:03 PM,Other,12/26/2013 02:53:43 PM,100 Block of ELLIS ST,SF,94102,B03,1,1366,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7853898217787, -122.409093228545)",133600210-E01 -131530281,KM10,13051923,Medical Incident,06/02/2013,06/02/2013,06/02/2013 06:55:57 PM,06/02/2013 06:56:21 PM,06/02/2013 06:56:30 PM,06/02/2013 06:57:35 PM,06/02/2013 07:10:41 PM,06/02/2013 07:19:02 PM,06/02/2013 07:51:04 PM,Code 2 Transport,06/02/2013 08:31:42 PM,700 Block of MISSION ST,SF,94103,B03,1,2178,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.785734819878, -122.402822924972)",131530281-KM10 -160202473,76,16008067,Medical Incident,01/20/2016,01/20/2016,01/20/2016 03:47:32 PM,01/20/2016 03:48:32 PM,01/20/2016 03:49:11 PM,01/20/2016 03:49:17 PM,01/20/2016 03:50:38 PM,01/20/2016 04:01:06 PM,01/20/2016 04:07:17 PM,Code 2 Transport,01/20/2016 04:43:36 PM,700 Block of EDDY ST,San Francisco,94109,B02,3,3163,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",160202473-76 -113430191,AM08,11113749,Medical Incident,12/09/2011,12/09/2011,12/09/2011 12:12:24 PM,12/09/2011 12:18:00 PM,12/09/2011 12:18:34 PM,12/09/2011 12:19:05 PM,12/09/2011 12:25:42 PM,12/09/2011 12:44:25 PM,12/09/2011 12:51:24 PM,Code 2 Transport,12/09/2011 01:25:43 PM,1800 Block of FRANKLIN ST,SF,94109,B04,38,3225,3,3,3,false,,1,PRIVATE,3,4,2,Pacific Heights,"(37.7915320518223, -122.424182651752)",113430191-AM08 -131940226,E09,13065989,Vehicle Fire,07/13/2013,07/13/2013,07/13/2013 03:52:07 PM,07/13/2013 03:54:16 PM,07/13/2013 03:54:37 PM,07/13/2013 03:56:30 PM,07/13/2013 04:00:43 PM,04/25/2016 01:51:49 PM,04/25/2016 01:51:49 PM,Fire,07/13/2013 04:10:28 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,Fire,1,ENGINE,2,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",131940226-E09 -160041410,61,16001573,Medical Incident,01/04/2016,01/04/2016,01/04/2016 11:34:27 AM,01/04/2016 11:36:28 AM,01/04/2016 11:36:36 AM,01/04/2016 11:36:51 AM,01/04/2016 11:46:41 AM,01/04/2016 12:08:16 PM,01/04/2016 12:21:08 PM,Code 2 Transport,01/04/2016 01:08:50 PM,1400 Block of LEAVENWORTH ST,San Francisco,94109,B01,41,1535,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Russian Hill,"(37.7943258846738, -122.416450548399)",160041410-61 -160882735,62,16035040,Medical Incident,03/28/2016,03/28/2016,03/28/2016 04:59:14 PM,03/28/2016 04:59:51 PM,03/28/2016 05:00:04 PM,03/28/2016 05:00:15 PM,03/28/2016 05:04:44 PM,03/28/2016 05:23:04 PM,03/28/2016 05:39:38 PM,Code 2 Transport,03/28/2016 06:03:05 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7816150265786, -122.40942036456)",160882735-62 -122840213,E12,12093982,Citizen Assist / Service Call,10/10/2012,10/10/2012,10/10/2012 03:41:11 PM,10/10/2012 03:42:24 PM,10/10/2012 03:42:31 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,04/25/2016 01:56:22 PM,Unable to Locate,10/10/2012 03:55:43 PM,7TH AV/JUDAH ST,SF,94122,B08,12,7326,3,3,3,true,Alarm,1,ENGINE,1,8,5,Inner Sunset,"(37.7622688507499, -122.464042003168)",122840213-E12 -160470672,79,16018820,Traffic Collision,02/16/2016,02/15/2016,02/16/2016 07:55:44 AM,02/16/2016 07:55:44 AM,02/16/2016 07:56:38 AM,02/16/2016 07:56:45 AM,02/16/2016 08:01:35 AM,02/16/2016 08:13:51 AM,02/16/2016 08:32:39 AM,Code 2 Transport,02/16/2016 08:53:47 AM,2ND ST/FOLSOM ST,San Francisco,94107,B03,1,2147,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7855421300911, -122.396705179335)",160470672-79 -160020397,85,16000610,Medical Incident,01/02/2016,01/01/2016,01/02/2016 03:38:30 AM,01/02/2016 03:38:30 AM,01/02/2016 03:38:59 AM,01/02/2016 03:39:09 AM,01/02/2016 03:51:29 AM,01/02/2016 04:09:59 AM,01/02/2016 04:18:12 AM,Code 2 Transport,01/02/2016 04:42:06 AM,1200 Block of 3RD ST,San Francisco,94158,B03,4,2231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Mission Bay,"(37.7724775289824, -122.389518536028)",160020397-85 -140250165,54,14008553,Medical Incident,01/25/2014,01/25/2014,01/25/2014 12:32:00 PM,01/25/2014 12:33:18 PM,01/25/2014 12:33:29 PM,01/25/2014 12:35:46 PM,01/25/2014 12:35:48 PM,01/25/2014 12:50:36 PM,01/25/2014 12:54:37 PM,Code 2 Transport,01/25/2014 01:24:22 PM,800 Block of HYDE ST,SF,94109,B04,3,1557,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7886527895166, -122.416853689502)",140250165-54 -130700164,E03,13023315,Alarms,03/11/2013,03/11/2013,03/11/2013 11:25:44 AM,03/11/2013 11:25:44 AM,03/11/2013 11:26:18 AM,03/11/2013 11:26:31 AM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,04/25/2016 01:53:53 PM,Other,03/11/2013 11:27:36 AM,OFARRELL ST/TAYLOR ST,SF,94102,B01,1,1452,3,3,3,true,Alarm,1,ENGINE,2,3,3,Tenderloin,"(37.7859962359076, -122.411325582966)",130700164-E03 -130920266,AM02,13030869,Medical Incident,04/02/2013,04/02/2013,04/02/2013 04:40:43 PM,04/02/2013 04:42:06 PM,04/02/2013 04:42:28 PM,04/02/2013 04:43:06 PM,04/02/2013 04:44:57 PM,04/02/2013 04:53:50 PM,04/02/2013 05:14:05 PM,Code 2 Transport,04/02/2013 05:33:58 PM,MISSION ST/LASKIE ST,SF,94103,B02,36,2318,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,South of Market,"(37.7767076869648, -122.41410689559)",130920266-AM02 -120420220,E19,12014063,Medical Incident,02/11/2012,02/11/2012,02/11/2012 02:04:16 PM,02/11/2012 02:06:31 PM,02/11/2012 02:08:25 PM,02/11/2012 02:09:24 PM,02/11/2012 02:11:04 PM,04/25/2016 02:00:11 PM,04/25/2016 02:00:11 PM,Other,02/11/2012 02:25:08 PM,3200 Block of 20TH AVE,SF,94132,B08,19,8861,1,1,2,true,Non Life-threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7285444749244, -122.475646829327)",120420220-E19 -113460270,T07,11114863,Administrative,12/12/2011,12/12/2011,12/12/2011 04:39:22 PM,12/12/2011 04:39:24 PM,12/12/2011 04:39:55 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 04:40:17 PM,2300 Block of FOLSOM ST,SF,94110,B06,7,5447,3,3,3,true,,1,TRUCK,1,6,9,Mission,"(37.7596933117757, -122.414834950578)",113460270-T07 -130030347,E08,13001153,Medical Incident,01/03/2013,01/03/2013,01/03/2013 08:05:43 PM,01/03/2013 08:06:51 PM,01/03/2013 08:07:15 PM,01/03/2013 08:08:44 PM,01/03/2013 08:10:17 PM,04/25/2016 01:54:59 PM,04/25/2016 01:54:59 PM,Other,01/03/2013 08:21:31 PM,600 Block of 5TH ST,SF,94107,B03,8,2236,1,1,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7762935385036, -122.398313400287)",130030347-E08 -160492425,AM10,16019785,Medical Incident,02/18/2016,02/18/2016,02/18/2016 03:44:53 PM,02/18/2016 03:44:53 PM,02/18/2016 03:45:18 PM,02/18/2016 03:45:43 PM,02/18/2016 03:48:48 PM,02/18/2016 03:59:22 PM,02/18/2016 04:17:34 PM,Code 2 Transport,02/18/2016 04:39:24 PM,100 Block of PARNASSUS AVE,San Francisco,94117,B05,12,5153,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,5,Haight Ashbury,"(37.7647201806273, -122.450480413582)",160492425-AM10 -112200301,E34,11072795,Traffic Collision,08/08/2011,08/08/2011,08/08/2011 07:19:58 PM,08/08/2011 07:20:49 PM,08/08/2011 07:21:01 PM,04/25/2016 02:03:16 PM,08/08/2011 07:22:01 PM,04/25/2016 02:03:16 PM,04/25/2016 02:03:16 PM,Other,08/08/2011 07:22:43 PM,36TH AV/FULTON ST,SF,94121,B07,34,7253,3,3,3,false,,1,ENGINE,1,7,1,Outer Richmond,"(37.7720320135861, -122.495972014737)",112200301-E34 -111210367,B09,11040102,Alarms,05/01/2011,05/01/2011,05/01/2011 08:02:48 PM,05/01/2011 08:03:42 PM,05/01/2011 08:03:47 PM,05/01/2011 08:04:29 PM,05/01/2011 08:08:10 PM,04/25/2016 02:04:50 PM,04/25/2016 02:04:50 PM,Other,05/01/2011 08:14:11 PM,0 Block of APTOS AVE,SF,94127,B09,15,8535,3,3,3,false,,1,CHIEF,3,9,7,West of Twin Peaks,"(37.7311895009745, -122.466176536195)",111210367-B09 -113580376,75,11119200,Structure Fire,12/24/2011,12/24/2011,12/24/2011 10:53:12 PM,12/24/2011 10:54:47 PM,12/24/2011 10:55:03 PM,12/24/2011 10:56:00 PM,12/24/2011 10:57:22 PM,04/25/2016 02:00:58 PM,04/25/2016 02:00:58 PM,Other,12/24/2011 11:12:29 PM,700 Block of TAYLOR ST,SF,94109,B01,41,1446,3,3,3,true,,1,MEDIC,4,1,3,Nob Hill,"(37.7892649467456, -122.412049085376)",113580376-75 -140550096,72,14018507,Medical Incident,02/24/2014,02/24/2014,02/24/2014 09:36:27 AM,02/24/2014 09:37:02 AM,02/24/2014 09:37:19 AM,02/24/2014 09:37:56 AM,02/24/2014 09:43:30 AM,04/25/2016 01:48:03 PM,04/25/2016 01:48:03 PM,Patient Declined Transport,02/24/2014 10:15:32 AM,1400 Block of NEWCOMB AVE,SF,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",140550096-72 -132600061,AM22,13087866,Medical Incident,09/17/2013,09/16/2013,09/17/2013 03:56:14 AM,09/17/2013 03:57:30 AM,09/17/2013 03:57:51 AM,09/17/2013 03:58:28 AM,09/17/2013 04:01:31 AM,09/17/2013 04:17:09 AM,09/17/2013 04:39:54 AM,Code 3 Transport,09/17/2013 05:01:40 AM,0 Block of GRANADA AVE,SF,94112,B09,33,8465,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,9,11,Oceanview/Merced/Ingleside,"(37.7191321202701, -122.457082657075)",132600061-AM22 -123240368,E05,12107887,Medical Incident,11/19/2012,11/19/2012,11/19/2012 08:36:48 PM,11/19/2012 08:37:23 PM,11/19/2012 08:38:04 PM,11/19/2012 08:39:28 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,04/25/2016 01:55:43 PM,Other,11/19/2012 08:41:59 PM,400 Block of HYDE ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,2,6,Tenderloin,"(37.7849211326639, -122.416097390622)",123240368-E05 -160650580,AM22,16025831,Medical Incident,03/05/2016,03/04/2016,03/05/2016 05:48:31 AM,03/05/2016 05:50:08 AM,03/05/2016 05:51:37 AM,03/05/2016 05:52:20 AM,03/05/2016 05:58:50 AM,03/05/2016 06:25:35 AM,03/05/2016 06:34:40 AM,Code 2 Transport,03/05/2016 07:11:54 AM,2000 Block of FRANKLIN ST,San Francisco,94109,B04,38,3226,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Pacific Heights,"(37.7932922930477, -122.424537680646)",160650580-AM22 -140380320,E13,14012944,Medical Incident,02/07/2014,02/07/2014,02/07/2014 07:17:40 PM,02/07/2014 07:19:35 PM,02/07/2014 07:39:26 PM,02/07/2014 07:41:15 PM,02/07/2014 07:42:57 PM,04/25/2016 01:48:20 PM,04/25/2016 01:48:20 PM,Other,02/07/2014 07:55:27 PM,700 Block of GRANT AVE,SF,94108,B01,13,1313,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Chinatown,"(37.7935970643774, -122.406243333463)",140380320-E13 -120100149,T02,12003448,Structure Fire,01/10/2012,01/10/2012,01/10/2012 11:32:01 AM,01/10/2012 11:33:06 AM,01/10/2012 11:33:23 AM,01/10/2012 11:35:24 AM,01/10/2012 11:35:35 AM,04/25/2016 02:00:42 PM,04/25/2016 02:00:42 PM,Other,01/10/2012 11:44:35 AM,1600 Block of JONES ST,SF,94109,B01,41,1511,3,3,3,false,Fire,1,TRUCK,3,1,3,Nob Hill,"(37.7960882125241, -122.415118210717)",120100149-T02 -132050181,65,13069416,Medical Incident,07/24/2013,07/24/2013,07/24/2013 01:30:33 PM,07/24/2013 01:32:19 PM,07/24/2013 01:33:30 PM,07/24/2013 01:34:52 PM,07/24/2013 01:37:54 PM,07/24/2013 02:08:03 PM,07/24/2013 02:15:14 PM,Code 2 Transport,07/24/2013 02:43:34 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7981080745623, -122.408645127406)",132050181-65 -131740113,81,13058989,Medical Incident,06/23/2013,06/23/2013,06/23/2013 08:34:42 AM,06/23/2013 08:36:06 AM,06/23/2013 08:37:22 AM,06/23/2013 08:38:00 AM,06/23/2013 08:48:00 AM,06/23/2013 09:10:41 AM,06/23/2013 09:18:20 AM,Code 2 Transport,06/23/2013 09:58:17 AM,1000 Block of SHOTWELL ST,SF,94110,B06,7,5526,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7516425997951, -122.41502434397)",131740113-81 -103400317,E13,10108942,Alarms,12/06/2010,12/06/2010,12/06/2010 07:17:23 PM,12/06/2010 07:20:06 PM,12/06/2010 07:20:31 PM,12/06/2010 07:22:02 PM,12/06/2010 07:22:31 PM,04/25/2016 02:07:15 PM,04/25/2016 02:07:15 PM,Fire,12/06/2010 07:52:47 PM,300 Block of CLAY ST,SF,94111,B01,13,1161,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7950340354224, -122.399728412504)",103400317-E13 -133620095,B07,13122921,Medical Incident,12/28/2013,12/28/2013,12/28/2013 09:15:36 AM,12/28/2013 09:15:42 AM,12/28/2013 09:20:24 AM,12/28/2013 09:21:25 AM,12/28/2013 09:29:04 AM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 10:27:28 AM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,E,E,3,false,Potentially Life-Threatening,1,CHIEF,6,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",133620095-B07 -110540004,84,11017685,Medical Incident,02/23/2011,02/22/2011,02/23/2011 12:14:47 AM,02/23/2011 12:16:33 AM,02/23/2011 12:16:52 AM,02/23/2011 12:17:05 AM,02/23/2011 12:23:27 AM,04/25/2016 02:05:57 PM,04/25/2016 02:05:57 PM,Patient Declined Transport,02/23/2011 01:26:43 AM,500 Block of CIRCULAR AVE,SF,94112,B09,15,8222,1,3,3,true,,1,MEDIC,1,9,7,West of Twin Peaks,"(37.7279081274921, -122.444828658149)",110540004-84 -112740091,71,11090535,Medical Incident,10/01/2011,09/30/2011,10/01/2011 06:07:56 AM,10/01/2011 06:10:00 AM,10/01/2011 06:10:33 AM,04/25/2016 02:02:23 PM,10/01/2011 06:21:42 AM,10/01/2011 06:34:18 AM,10/01/2011 06:39:32 AM,Code 2 Transport,10/01/2011 06:15:59 AM,3RD ST/MARIN ST,SF,94124,B10,25,2641,E,E,3,true,,1,MEDIC,4,10,10,Bayview Hunters Point,"(37.7490047598095, -122.387456311596)",112740091-71 -132680341,65,13091124,Medical Incident,09/25/2013,09/25/2013,09/25/2013 06:32:47 PM,09/25/2013 06:36:14 PM,09/25/2013 06:56:46 PM,09/25/2013 07:09:00 PM,09/25/2013 07:16:35 PM,04/25/2016 01:50:35 PM,04/25/2016 01:50:35 PM,Unable to Locate,09/25/2013 07:20:07 PM,3300 Block of 19TH ST,SF,94110,B06,7,5433,2,2,2,false,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7603229790338, -122.418667330218)",132680341-65 -160430003,AM16,16017094,Medical Incident,02/12/2016,02/11/2016,02/12/2016 12:01:14 AM,02/12/2016 12:03:01 AM,02/12/2016 12:03:36 AM,02/12/2016 12:03:59 AM,02/12/2016 12:11:04 AM,02/12/2016 12:27:26 AM,02/12/2016 12:35:33 AM,Code 2 Transport,02/12/2016 01:10:45 AM,16TH ST/MARKET ST,San Francisco,94114,B05,6,5252,2,2,2,false,Non Life-threatening,1,PRIVATE,1,5,8,Castro/Upper Market,"(37.7641957141157, -122.433074471117)",160430003-AM16 -111520157,RC3,11050277,Medical Incident,06/01/2011,06/01/2011,06/01/2011 12:38:11 PM,06/01/2011 12:39:36 PM,06/01/2011 12:39:47 PM,04/25/2016 02:04:21 PM,06/01/2011 12:42:31 PM,04/25/2016 02:04:21 PM,04/25/2016 02:04:21 PM,Other,06/01/2011 12:46:58 PM,700 Block of ANDERSON ST,SF,94110,B06,32,5743,3,3,3,true,,1,RESCUE CAPTAIN,1,6,9,Bernal Heights,"(37.7340529990627, -122.415549507157)",111520157-RC3 -131470176,E42,13049881,Medical Incident,05/27/2013,05/27/2013,05/27/2013 02:21:55 PM,05/27/2013 02:23:31 PM,05/27/2013 02:23:56 PM,05/27/2013 02:25:09 PM,05/27/2013 02:26:18 PM,04/25/2016 01:52:35 PM,04/25/2016 01:52:35 PM,Other,05/27/2013 02:35:48 PM,2600 Block of SAN BRUNO AVE,SF,94134,B10,42,6337,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Portola,"(37.7282171063336, -122.403911865205)",131470176-E42 -122770013,T10,12091385,Structure Fire,10/03/2012,10/02/2012,10/03/2012 01:10:51 AM,10/03/2012 01:11:40 AM,10/03/2012 01:12:01 AM,10/03/2012 01:13:54 AM,10/03/2012 01:19:02 AM,04/25/2016 01:56:29 PM,04/25/2016 01:56:29 PM,Other,10/03/2012 01:20:16 AM,2500 Block of CHESTNUT ST,SF,94123,B04,16,4314,3,3,3,false,Alarm,1,TRUCK,6,4,2,Marina,"(37.7996189614584, -122.445229713515)",122770013-T10 -160320475,62,16012456,Medical Incident,02/01/2016,01/31/2016,02/01/2016 06:31:03 AM,02/01/2016 06:33:38 AM,02/01/2016 06:34:29 AM,02/01/2016 06:34:42 AM,02/01/2016 06:47:32 AM,02/01/2016 06:58:55 AM,02/01/2016 07:15:23 AM,Code 2 Transport,02/01/2016 07:53:28 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",160320475-62 -160400552,55,16015901,Medical Incident,02/09/2016,02/08/2016,02/09/2016 07:19:02 AM,02/09/2016 07:19:28 AM,02/09/2016 07:19:57 AM,02/09/2016 07:20:31 AM,02/09/2016 07:37:27 AM,02/09/2016 08:43:09 AM,02/09/2016 08:22:28 AM,Code 2 Transport,02/09/2016 08:58:34 AM,2700 Block of SAN BRUNO AVE,San Francisco,94134,B10,42,6333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,9,Portola,"(37.7270507466082, -122.403281820851)",160400552-55 -110820404,AM20,11027127,Medical Incident,03/23/2011,03/23/2011,03/23/2011 11:57:43 PM,03/23/2011 11:58:50 PM,03/23/2011 11:59:11 PM,03/23/2011 11:59:49 PM,03/24/2011 12:04:05 AM,03/24/2011 12:39:00 AM,03/24/2011 12:47:32 AM,Code 3 Transport,03/24/2011 01:53:11 AM,0 Block of PERRY ST,SF,94107,B03,8,2175,3,2,2,false,,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7827239702919, -122.396167865037)",110820404-AM20 -160541461,KM13,16021555,Traffic Collision,02/23/2016,02/23/2016,02/23/2016 11:35:42 AM,02/23/2016 11:35:42 AM,02/23/2016 11:41:59 AM,02/23/2016 11:42:51 AM,02/23/2016 11:57:30 AM,02/23/2016 12:21:28 PM,02/23/2016 12:41:10 PM,Code 2 Transport,02/23/2016 01:28:18 PM,OAK ST/BUCHANAN ST,San Francisco,94102,B02,36,3414,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7743884678082, -122.427546415857)",160541461-KM13 -122810342,81,12093128,Medical Incident,10/07/2012,10/07/2012,10/07/2012 08:08:54 PM,10/07/2012 08:09:53 PM,10/07/2012 08:10:05 PM,10/07/2012 08:10:35 PM,10/07/2012 08:16:30 PM,10/07/2012 08:35:42 PM,10/07/2012 09:22:49 PM,Code 3 Transport,10/07/2012 09:50:22 PM,0 Block of WHITTIER ST,SF,94112,B09,33,6214,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7092579223953, -122.447850030971)",122810342-81 -130400103,RC1,13013597,Medical Incident,02/09/2013,02/09/2013,02/09/2013 08:14:20 AM,02/09/2013 08:15:49 AM,02/09/2013 08:31:51 AM,02/09/2013 08:31:56 AM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,04/25/2016 01:54:23 PM,Other,02/09/2013 08:37:36 AM,0 Block of 12TH ST,SF,94103,B02,36,3212,1,1,2,true,Non Life-threatening,1,RESCUE CAPTAIN,2,2,6,Mission,"(37.7740948566882, -122.420001436964)",130400103-RC1 -112100214,E01,11069360,Medical Incident,07/29/2011,07/29/2011,07/29/2011 04:52:18 PM,07/29/2011 04:53:13 PM,07/29/2011 04:53:48 PM,07/29/2011 04:54:03 PM,07/29/2011 04:57:51 PM,04/25/2016 02:03:26 PM,04/25/2016 02:03:26 PM,Other,07/29/2011 05:05:53 PM,200 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",112100214-E01 -120330060,E08,12010801,Medical Incident,02/02/2012,02/01/2012,02/02/2012 07:11:20 AM,02/02/2012 07:13:48 AM,02/02/2012 07:14:28 AM,02/02/2012 07:16:17 AM,02/02/2012 07:19:18 AM,04/25/2016 02:00:20 PM,04/25/2016 02:00:20 PM,Other,02/02/2012 07:32:56 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2244,3,3,3,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7811617395427, -122.403433976322)",120330060-E08 -120450281,T11,12015049,Other,02/14/2012,02/14/2012,02/14/2012 05:36:19 PM,02/14/2012 05:36:58 PM,02/14/2012 05:37:11 PM,02/14/2012 05:38:15 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,04/25/2016 02:00:08 PM,Other,02/14/2012 05:45:36 PM,0 Block of MIRABEL AVE,SF,94110,B06,11,5657,3,3,3,false,Alarm,1,TRUCK,1,6,9,Bernal Heights,"(37.7464196657942, -122.416456065811)",120450281-T11 -160472445,68,16018995,Medical Incident,02/16/2016,02/16/2016,02/16/2016 03:45:33 PM,02/16/2016 03:46:21 PM,02/16/2016 03:48:00 PM,02/16/2016 03:48:06 PM,02/16/2016 03:50:35 PM,02/16/2016 04:07:50 PM,02/16/2016 04:16:18 PM,Code 2 Transport,02/16/2016 04:59:38 PM,0 Block of GEARY ST,San Francisco,94108,B01,1,1241,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879185264229, -122.404277568186)",160472445-68 -130290321,E32,13010026,Traffic Collision,01/29/2013,01/29/2013,01/29/2013 07:29:22 PM,01/29/2013 07:29:57 PM,01/29/2013 07:30:21 PM,01/29/2013 07:32:38 PM,01/29/2013 07:35:13 PM,04/25/2016 01:54:33 PM,04/25/2016 01:54:33 PM,Other,01/29/2013 08:19:02 PM,0 Block of CAYUGA AVE,SF,94112,B09,32,8136,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,8,Outer Mission,"(37.7315204759574, -122.429336724752)",130290321-E32 -103490297,T03,10112018,Alarms,12/15/2010,12/15/2010,12/15/2010 06:51:30 PM,12/15/2010 06:53:36 PM,12/15/2010 06:54:10 PM,12/15/2010 06:54:24 PM,12/15/2010 06:57:02 PM,04/25/2016 02:07:06 PM,04/25/2016 02:07:06 PM,Other,12/15/2010 07:00:25 PM,1700 Block of BUSH ST,SF,94109,B04,38,3255,3,3,3,false,,1,TRUCK,3,4,5,Pacific Heights,"(37.7880205484715, -122.426061561298)",103490297-T03 -103040092,E10,10097048,Medical Incident,10/31/2010,10/30/2010,10/31/2010 03:27:39 AM,10/31/2010 03:32:28 AM,10/31/2010 03:32:40 AM,10/31/2010 03:34:30 AM,10/31/2010 03:37:06 AM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Medical Examiner,10/31/2010 04:26:15 AM,2200 Block of DIVISADERO ST,SF,94115,B04,10,4162,3,3,3,true,,1,ENGINE,1,4,2,Pacific Heights,"(37.7903051652143, -122.440963312466)",103040092-E10 -102930037,93,10093328,Structure Fire,10/20/2010,10/19/2010,10/20/2010 05:10:10 AM,10/20/2010 05:11:31 AM,10/20/2010 05:12:18 AM,10/20/2010 05:12:45 AM,10/20/2010 05:17:39 AM,04/25/2016 02:08:01 PM,04/25/2016 02:08:01 PM,Other,10/20/2010 05:20:32 AM,EDDY ST/JONES ST,SF,94102,B03,3,1461,3,3,3,true,,1,MEDIC,4,2,6,Tenderloin,"(37.7839325770086, -122.412595277567)",102930037-93 -160092242,85,16003698,Medical Incident,01/09/2016,01/09/2016,01/09/2016 03:45:47 PM,01/09/2016 03:45:47 PM,01/09/2016 03:45:55 PM,01/09/2016 03:46:19 PM,01/09/2016 03:58:20 PM,01/09/2016 04:24:25 PM,01/09/2016 04:31:42 PM,Code 2 Transport,01/09/2016 05:28:59 PM,4700 Block of MISSION ST,San Francisco,94112,B09,43,6121,2,3,3,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7220486455317, -122.436867932617)",160092242-85 -113360047,68,11111114,Medical Incident,12/02/2011,12/01/2011,12/02/2011 03:51:35 AM,12/02/2011 03:53:32 AM,12/02/2011 03:54:02 AM,12/02/2011 03:56:56 AM,12/02/2011 04:00:07 AM,12/02/2011 04:18:51 AM,04/25/2016 02:01:22 PM,Code 2 Transport,12/02/2011 04:26:28 AM,900 Block of MARKET ST,SF,94103,B03,1,2248,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",113360047-68 -121640287,E01,12054484,Medical Incident,06/12/2012,06/12/2012,06/12/2012 05:54:23 PM,06/12/2012 05:54:57 PM,06/12/2012 05:55:49 PM,06/12/2012 05:56:51 PM,06/12/2012 05:59:19 PM,04/25/2016 01:58:14 PM,04/25/2016 01:58:14 PM,Other,06/12/2012 06:14:15 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",121640287-E01 -140450009,E19,14015175,Water Rescue,02/14/2014,02/13/2014,02/14/2014 12:41:48 AM,02/14/2014 12:45:41 AM,02/14/2014 12:46:18 AM,02/14/2014 12:47:51 AM,02/14/2014 12:51:28 AM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,Other,02/14/2014 02:59:12 AM,SKYLINE BL/GREAT HY,SF,94132,B08,19,8713,,E,3,true,Fire,1,ENGINE,1,8,7,Lakeshore,"(37.7252595509479, -122.503040635623)",140450009-E19 -103120332,68,10100168,Structure Fire,11/08/2010,11/08/2010,11/08/2010 09:32:52 PM,11/08/2010 09:34:37 PM,11/08/2010 09:34:56 PM,04/25/2016 02:07:41 PM,11/08/2010 09:40:18 PM,04/25/2016 02:07:41 PM,04/25/2016 02:07:41 PM,Other,11/08/2010 09:44:33 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,3,3,true,,1,MEDIC,9,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",103120332-68 -160881463,88,16034921,Medical Incident,03/28/2016,03/28/2016,03/28/2016 11:24:29 AM,03/28/2016 11:27:58 AM,03/28/2016 11:28:08 AM,03/28/2016 11:28:36 AM,03/28/2016 11:33:47 AM,03/28/2016 11:51:19 AM,03/28/2016 12:09:53 PM,Code 2 Transport,03/28/2016 12:35:03 PM,600 Block of 6TH AVE,San Francisco,94118,B07,31,7123,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,7,1,Inner Richmond,"(37.7763050234828, -122.463873976155)",160881463-88 -160921142,54,16036384,Medical Incident,04/01/2016,04/01/2016,04/01/2016 10:14:12 AM,04/01/2016 10:14:12 AM,04/01/2016 10:15:23 AM,04/01/2016 10:16:01 AM,04/01/2016 10:29:14 AM,04/01/2016 10:39:31 AM,04/01/2016 10:59:20 AM,Code 2 Transport,04/01/2016 11:44:45 AM,800 Block of BUENA VISTA AVE,San Francisco,94117,B05,21,4354,2,3,3,true,Potentially Life-Threatening,1,MEDIC,4,5,8,Haight Ashbury,"(37.7693036365974, -122.442610806275)",160921142-54 -120660288,T16,12021913,Medical Incident,03/06/2012,03/06/2012,03/06/2012 04:24:52 PM,03/06/2012 04:26:12 PM,03/06/2012 04:26:32 PM,03/06/2012 04:26:52 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 04:27:57 PM,2000 Block of UNION ST,SF,94123,B04,16,3443,3,3,3,false,Potentially Life-Threatening,1,TRUCK,5,4,2,Marina,"(37.7974567249549, -122.433036469991)",120660288-T16 -140650036,78,14021852,Medical Incident,03/06/2014,03/05/2014,03/06/2014 03:45:30 AM,03/06/2014 03:48:23 AM,03/06/2014 03:49:13 AM,03/06/2014 03:49:44 AM,03/06/2014 04:00:20 AM,03/06/2014 04:12:10 AM,03/06/2014 04:31:10 AM,Code 2 Transport,03/06/2014 05:27:33 AM,MISSION ST/EXCELSIOR AV,SAN FRANCISCO,94112,B09,43,6116,2,2,2,true,Non Life-threatening,1,MEDIC,2,9,11,Excelsior,"(37.7262362449736, -122.433623592293)",140650036-78 -103550237,RC1,10114002,Medical Incident,12/21/2010,12/21/2010,12/21/2010 04:09:44 PM,12/21/2010 04:11:58 PM,12/21/2010 04:12:17 PM,12/21/2010 04:13:12 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,04/25/2016 02:07:00 PM,Other,12/21/2010 04:19:34 PM,200 Block of BUSH ST,SF,94104,B01,13,1235,E,E,3,true,,1,RESCUE CAPTAIN,3,1,3,Financial District/South Beach,"(37.7910179625716, -122.401556724229)",103550237-RC1 -111790061,AM16,11059009,Medical Incident,06/28/2011,06/27/2011,06/28/2011 07:38:04 AM,06/28/2011 07:40:20 AM,06/28/2011 07:40:53 AM,06/28/2011 07:41:39 AM,06/28/2011 07:43:09 AM,06/28/2011 07:50:51 AM,06/28/2011 08:06:05 AM,Code 2 Transport,06/28/2011 08:46:41 AM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,,1,PRIVATE,1,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",111790061-AM16 -133240149,E06,13109991,Medical Incident,11/20/2013,11/20/2013,11/20/2013 10:28:09 AM,11/20/2013 10:29:43 AM,11/20/2013 10:32:03 AM,11/20/2013 10:34:13 AM,11/20/2013 10:38:12 AM,04/25/2016 01:49:40 PM,04/25/2016 01:49:40 PM,Fire,11/20/2013 10:45:45 AM,100 Block of ALPINE TER,SF,94117,B05,6,5134,2,2,2,true,Non Life-threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7681326738343, -122.437454372806)",133240149-E06 -121870270,D3,12062364,Structure Fire,07/05/2012,07/05/2012,07/05/2012 03:36:41 PM,07/05/2012 03:38:58 PM,07/05/2012 03:39:20 PM,07/05/2012 03:41:49 PM,07/05/2012 03:47:41 PM,04/25/2016 01:57:51 PM,04/25/2016 01:57:51 PM,Other,07/05/2012 04:11:22 PM,0 Block of RED ROCK WAY,SF,94131,B06,26,8167,3,3,3,false,Fire,1,CHIEF,8,6,8,Noe Valley,"(37.7460366754487, -122.442196632445)",121870270-D3 -121000280,KM04,12033215,Medical Incident,04/09/2012,04/09/2012,04/09/2012 03:55:55 PM,04/09/2012 03:57:14 PM,04/09/2012 03:59:24 PM,04/09/2012 04:00:28 PM,04/09/2012 04:05:09 PM,04/09/2012 04:23:09 PM,04/09/2012 04:32:27 PM,Code 2 Transport,04/09/2012 05:04:51 PM,1300 Block of HOWARD ST,SF,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7742496611166, -122.414204535023)",121000280-KM04 -160881936,52,16034973,Medical Incident,03/28/2016,03/28/2016,03/28/2016 01:32:53 PM,03/28/2016 01:33:37 PM,03/28/2016 01:36:27 PM,03/28/2016 01:36:43 PM,03/28/2016 01:40:10 PM,03/28/2016 01:58:29 PM,03/28/2016 02:26:07 PM,Code 3 Transport,03/28/2016 02:32:09 PM,1800 Block of HAIGHT ST,San Francisco,94117,B05,12,4545,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Haight Ashbury,"(37.769326176588, -122.45271229374)",160881936-52 -133080092,81,13104643,Medical Incident,11/04/2013,11/04/2013,11/04/2013 08:25:36 AM,11/04/2013 08:27:15 AM,11/04/2013 08:30:18 AM,11/04/2013 08:30:25 AM,11/04/2013 08:48:41 AM,11/04/2013 08:57:51 AM,11/04/2013 09:21:23 AM,Code 2 Transport,11/04/2013 09:44:45 AM,400 Block of LONDON ST,SF,94112,B09,43,6121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Excelsior,"(37.7219582737449, -122.435737208827)",133080092-81 -123220342,E10,12107186,Medical Incident,11/17/2012,11/17/2012,11/17/2012 07:59:06 PM,11/17/2012 07:59:24 PM,11/17/2012 07:59:35 PM,11/17/2012 08:01:12 PM,11/17/2012 08:05:09 PM,04/25/2016 01:55:45 PM,04/25/2016 01:55:45 PM,Other,11/17/2012 08:28:51 PM,2100 Block of BAKER ST,SF,94115,B04,10,4265,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7907758773739, -122.444320991453)",123220342-E10 -120890067,T14,12029379,Alarms,03/29/2012,03/29/2012,03/29/2012 08:17:35 AM,03/29/2012 08:17:40 AM,03/29/2012 08:17:46 AM,03/29/2012 08:19:29 AM,03/29/2012 08:22:41 AM,04/25/2016 01:59:26 PM,04/25/2016 01:59:26 PM,Other,03/29/2012 08:29:05 AM,700 Block of 20TH AVE,SF,94121,B07,31,7166,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.7737509765237, -122.478835238462)",120890067-T14 -130520329,B04,13017706,Structure Fire,02/21/2013,02/21/2013,02/21/2013 07:40:42 PM,02/21/2013 07:41:47 PM,02/21/2013 07:42:08 PM,02/21/2013 07:43:29 PM,02/21/2013 07:46:42 PM,04/25/2016 01:54:11 PM,04/25/2016 01:54:11 PM,Other,02/21/2013 07:58:33 PM,1800 Block of TURK ST,SF,94115,B05,5,4152,3,3,3,false,Alarm,1,CHIEF,2,5,5,Western Addition,"(37.7796033022954, -122.439579939229)",130520329-B04 -120950180,71,12031470,Medical Incident,04/04/2012,04/04/2012,04/04/2012 02:13:36 PM,04/04/2012 02:13:51 PM,04/04/2012 02:14:40 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,04/25/2016 01:59:20 PM,Other,04/04/2012 02:16:29 PM,300 Block of EDDY ST,SF,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",120950180-71 -160521023,AM08,16020748,Medical Incident,02/21/2016,02/21/2016,02/21/2016 09:36:50 AM,02/21/2016 09:37:19 AM,02/21/2016 09:38:49 AM,02/21/2016 09:39:22 AM,02/21/2016 09:48:44 AM,02/21/2016 09:58:15 AM,02/21/2016 10:15:13 AM,Code 2 Transport,02/21/2016 10:41:18 AM,MISSION ST/25TH ST,San Francisco,94110,B06,11,5525,2,2,2,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7506396511688, -122.418287870978)",160521023-AM08 -121110191,E51,12036723,Medical Incident,04/20/2012,04/20/2012,04/20/2012 12:24:55 PM,04/20/2012 12:25:58 PM,04/20/2012 12:26:18 PM,04/20/2012 12:26:44 PM,04/20/2012 12:31:43 PM,04/25/2016 01:59:05 PM,04/25/2016 01:59:05 PM,Other,04/20/2012 12:41:48 PM,LAGUNA ST/MARINA BL,SF,94123,B04,16,3452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.8051995453814, -122.432090718256)",121110191-E51 -132850172,83,13096933,Medical Incident,10/12/2013,10/12/2013,10/12/2013 12:28:08 PM,10/12/2013 12:30:02 PM,10/12/2013 12:30:32 PM,10/12/2013 12:30:40 PM,10/12/2013 12:34:00 PM,10/12/2013 12:53:28 PM,10/12/2013 01:13:49 PM,Code 2 Transport,10/12/2013 01:35:33 PM,100 Block of HAHN ST,SF,94134,B09,43,6241,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7127277704943, -122.415710728503)",132850172-83 -113340127,E42,11110562,Medical Incident,11/30/2011,11/30/2011,11/30/2011 11:27:07 AM,11/30/2011 11:27:52 AM,11/30/2011 11:28:08 AM,11/30/2011 11:29:27 AM,11/30/2011 11:31:31 AM,04/25/2016 02:01:24 PM,04/25/2016 02:01:24 PM,Other,11/30/2011 11:36:44 AM,300 Block of TOPEKA AVE,SF,94124,B10,42,6473,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7315055399966, -122.39541036642)",113340127-E42 -122350299,87,12077975,Medical Incident,08/22/2012,08/22/2012,08/22/2012 07:31:25 PM,08/22/2012 07:33:08 PM,08/22/2012 07:35:50 PM,08/22/2012 07:50:39 PM,04/25/2016 01:57:06 PM,08/22/2012 08:11:07 PM,08/22/2012 09:01:37 PM,Code 2 Transport,08/22/2012 09:09:15 PM,MARY ST/MINNA ST,SF,94103,B03,1,2246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7816802649177, -122.406711167532)",122350299-87 -133180267,E01,13108145,Medical Incident,11/14/2013,11/14/2013,11/14/2013 04:26:36 PM,11/14/2013 04:28:28 PM,11/14/2013 04:30:28 PM,04/25/2016 01:49:46 PM,11/14/2013 04:32:54 PM,04/25/2016 01:49:46 PM,04/25/2016 01:49:46 PM,Other,11/14/2013 04:42:10 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",133180267-E01 -160233721,85,16009353,Medical Incident,01/23/2016,01/23/2016,01/23/2016 10:37:16 PM,01/23/2016 10:37:16 PM,01/23/2016 10:38:03 PM,01/23/2016 10:38:16 PM,01/23/2016 10:45:16 PM,01/23/2016 10:59:14 PM,01/23/2016 11:18:57 PM,Code 2 Transport,01/24/2016 12:05:38 AM,500 Block of JONES ST,San Francisco,94102,B01,3,1462,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",160233721-85 -123380249,E48,12112743,Medical Incident,12/03/2012,12/03/2012,12/03/2012 02:33:01 PM,12/03/2012 02:33:45 PM,12/03/2012 02:34:05 PM,12/03/2012 02:35:12 PM,12/03/2012 02:37:08 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Other,12/03/2012 03:02:22 PM,1400 Block of STURGEON ST,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,None,6,Treasure Island,"(37.8263703736705, -122.375421941102)",123380249-E48 -123380136,E41,12112650,Administrative,12/03/2012,12/03/2012,12/03/2012 10:06:30 AM,12/03/2012 10:06:36 AM,12/03/2012 10:06:40 AM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,04/25/2016 01:55:30 PM,Fire,12/03/2012 10:07:46 AM,1300 Block of LEAVENWORTH ST,SF,94109,B01,41,1536,3,3,3,false,,1,ENGINE,1,1,3,Russian Hill,"(37.793444092579, -122.416270691231)",123380136-E41 -160741715,AM02,16029334,Medical Incident,03/14/2016,03/14/2016,03/14/2016 12:41:43 PM,03/14/2016 12:44:41 PM,03/14/2016 12:45:41 PM,03/14/2016 12:46:23 PM,03/14/2016 12:54:58 PM,03/14/2016 01:18:31 PM,03/14/2016 01:34:27 PM,Code 2 Transport,03/14/2016 02:14:19 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B02,1,1546,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160741715-AM02 -120760046,E36,12025115,Structure Fire,03/16/2012,03/15/2012,03/16/2012 07:24:50 AM,03/16/2012 07:24:50 AM,03/16/2012 07:24:57 AM,03/16/2012 07:26:50 AM,03/16/2012 07:30:25 AM,04/25/2016 01:59:39 PM,04/25/2016 01:59:39 PM,Other,03/16/2012 07:56:43 AM,0 Block of DUBOCE AVE,SF,94103,B02,36,5124,3,3,3,false,Alarm,1,ENGINE,1,2,9,Mission,"(37.7698769653623, -122.420425746328)",120760046-E36 -131610007,68,13054536,Medical Incident,06/10/2013,06/09/2013,06/10/2013 12:25:38 AM,06/10/2013 12:26:39 AM,06/10/2013 12:26:47 AM,06/10/2013 12:27:10 AM,06/10/2013 12:37:56 AM,06/10/2013 12:50:03 AM,06/10/2013 01:01:28 AM,Code 2 Transport,06/10/2013 01:29:21 AM,MOUNT VERNON AV/ELLINGTON AV,SF,94112,B09,43,6176,3,3,3,false,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7150420552704, -122.443255963332)",131610007-68 -130780192,E01,13026028,Administrative,03/19/2013,03/19/2013,03/19/2013 12:04:07 PM,03/19/2013 12:04:10 PM,03/19/2013 12:04:30 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 12:04:54 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",130780192-E01 -112950394,E28,11098033,Medical Incident,10/22/2011,10/22/2011,10/22/2011 11:26:11 PM,10/22/2011 11:26:57 PM,10/22/2011 11:28:24 PM,10/22/2011 11:29:39 PM,10/22/2011 11:31:24 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/22/2011 11:41:03 PM,1000 Block of COLUMBUS AVE,SF,94133,B01,28,1434,3,3,3,true,,1,ENGINE,1,1,3,Russian Hill,"(37.8036980388406, -122.41520685226)",112950394-E28 -122130004,B01,12070554,Alarms,07/31/2012,07/30/2012,07/31/2012 12:12:47 AM,07/31/2012 12:15:28 AM,07/31/2012 12:15:38 AM,07/31/2012 12:17:56 AM,07/31/2012 12:21:02 AM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Fire,07/31/2012 12:21:29 AM,1400 Block of PACIFIC AVE,SF,94109,B01,41,1565,3,3,3,false,Alarm,1,CHIEF,3,1,3,Russian Hill,"(37.7954660831968, -122.418715545845)",122130004-B01 -140050135,E03,14001760,Medical Incident,01/05/2014,01/05/2014,01/05/2014 10:21:12 AM,01/05/2014 10:21:13 AM,01/05/2014 10:21:51 AM,01/05/2014 10:22:49 AM,01/05/2014 10:25:05 AM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,No Merit,01/05/2014 10:29:33 AM,200 Block of JONES ST,SF,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",140050135-E03 -131550060,81,13052431,Medical Incident,06/04/2013,06/03/2013,06/04/2013 06:16:58 AM,06/04/2013 06:18:50 AM,06/04/2013 06:21:37 AM,06/04/2013 06:21:42 AM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,04/25/2016 01:52:28 PM,Other,06/04/2013 06:30:35 AM,400 Block of TURK ST,SF,94102,B02,3,1554,E,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7824484982183, -122.416327441768)",131550060-81 -120300284,AM10,12010087,Medical Incident,01/30/2012,01/30/2012,01/30/2012 08:28:28 PM,01/30/2012 08:31:35 PM,01/30/2012 08:32:47 PM,01/30/2012 08:33:29 PM,01/30/2012 08:40:32 PM,01/30/2012 08:42:47 PM,01/30/2012 08:47:27 PM,Code 2 Transport,01/30/2012 09:13:28 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",120300284-AM10 -160093096,AM22,16003771,Medical Incident,01/09/2016,01/09/2016,01/09/2016 07:38:36 PM,01/09/2016 07:39:56 PM,01/09/2016 07:41:04 PM,01/09/2016 07:41:52 PM,01/09/2016 08:04:37 PM,01/09/2016 08:04:44 PM,01/09/2016 08:15:07 PM,Code 2 Transport,01/09/2016 08:58:30 PM,0 Block of DORE ST,San Francisco,94103,B02,36,2342,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7738617771611, -122.413045971966)",160093096-AM22 -122790008,E13,12092083,Alarms,10/05/2012,10/04/2012,10/05/2012 12:32:18 AM,10/05/2012 12:33:34 AM,10/05/2012 12:33:56 AM,10/05/2012 12:35:38 AM,10/05/2012 12:38:15 AM,04/25/2016 01:56:27 PM,04/25/2016 01:56:27 PM,Other,10/05/2012 12:51:42 AM,300 Block of GRANT AVE,SF,94108,B01,13,1315,3,3,3,true,Alarm,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7903312930658, -122.405480762269)",122790008-E13 -130870312,T02,13029129,Structure Fire,03/28/2013,03/28/2013,03/28/2013 06:56:44 PM,03/28/2013 06:56:44 PM,03/28/2013 06:57:37 PM,03/28/2013 06:58:29 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,03/28/2013 07:01:13 PM,POWELL ST/POST ST,SF,94108,B01,1,1362,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7882931920047, -122.408401551902)",130870312-T02 -130320063,E44,13010823,Medical Incident,02/01/2013,01/31/2013,02/01/2013 07:38:13 AM,02/01/2013 07:39:44 AM,02/01/2013 07:40:02 AM,02/01/2013 07:40:52 AM,02/01/2013 07:45:08 AM,04/25/2016 01:54:31 PM,04/25/2016 01:54:31 PM,Other,02/01/2013 07:52:12 AM,300 Block of LELAND AVE,SF,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.7132669181456, -122.409797388672)",130320063-E44 -130570244,E24,13019224,Medical Incident,02/26/2013,02/26/2013,02/26/2013 04:46:04 PM,02/26/2013 04:46:04 PM,02/26/2013 04:46:18 PM,02/26/2013 04:50:13 PM,02/26/2013 04:50:25 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 05:04:40 PM,17TH ST/CASTRO ST,SF,94114,B05,6,5253,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,5,8,Castro/Upper Market,"(37.7626707090454, -122.435187962298)",130570244-E24 -140050243,AR1,14001858,Structure Fire,01/05/2014,01/05/2014,01/05/2014 04:23:35 PM,01/05/2014 04:24:36 PM,01/05/2014 04:38:31 PM,01/05/2014 04:38:50 PM,01/05/2014 04:49:25 PM,04/25/2016 01:48:52 PM,04/25/2016 01:48:52 PM,Other,01/05/2014 06:22:49 PM,0 Block of TURK ST,SF,94102,B03,1,1365,,3,3,false,Alarm,1,INVESTIGATION,9,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",140050243-AR1 -140400327,88,14013699,Medical Incident,02/09/2014,02/09/2014,02/09/2014 06:47:54 PM,02/09/2014 06:49:54 PM,02/09/2014 07:06:54 PM,02/09/2014 07:07:44 PM,02/09/2014 07:24:15 PM,02/09/2014 07:40:42 PM,02/09/2014 07:59:40 PM,Code 2 Transport,02/09/2014 08:19:53 PM,300 Block of 17TH AVE,SF,94121,B07,31,7161,,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7814378040814, -122.476306962783)",140400327-88 -111040309,E33,11034581,Administrative,04/14/2011,04/14/2011,04/14/2011 08:12:11 PM,04/14/2011 08:12:16 PM,04/14/2011 08:12:36 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,04/25/2016 02:05:06 PM,Other,04/14/2011 08:13:23 PM,0 Block of CAPITOL AVE,SF,94112,B09,33,8374,3,3,3,true,,1,ENGINE,1,9,11,Oceanview/Merced/Ingleside,"(37.710896081508, -122.458931105722)",111040309-E33 -133140031,B02,13106628,Alarms,11/10/2013,11/09/2013,11/10/2013 02:08:01 AM,11/10/2013 02:09:58 AM,11/10/2013 02:10:38 AM,04/25/2016 01:49:50 PM,11/10/2013 02:10:59 AM,04/25/2016 01:49:50 PM,04/25/2016 01:49:50 PM,Fire,11/10/2013 02:20:15 AM,1300 Block of FULTON ST,SF,94117,B05,21,4243,3,3,3,false,Alarm,1,CHIEF,1,5,5,Hayes Valley,"(37.7766957145874, -122.438999700924)",133140031-B02 -112460041,B03,11080997,Medical Incident,09/03/2011,09/02/2011,09/03/2011 02:26:57 AM,09/03/2011 02:27:28 AM,09/03/2011 02:27:52 AM,09/03/2011 02:28:51 AM,09/03/2011 02:31:10 AM,04/25/2016 02:02:52 PM,04/25/2016 02:02:52 PM,Other,09/03/2011 02:39:14 AM,1000 Block of HARRISON ST,SF,94103,B03,8,2254,E,E,3,false,,1,CHIEF,1,3,6,South of Market,"(37.7770983962506, -122.404388964595)",112460041-B03 -121170357,E21,12038932,Administrative,04/26/2012,04/26/2012,04/26/2012 11:11:42 PM,04/26/2012 11:12:00 PM,04/26/2012 11:12:11 PM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,04/25/2016 01:58:59 PM,Other,04/26/2012 11:12:39 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",121170357-E21 -160152936,KM11,16006089,Medical Incident,01/15/2016,01/15/2016,01/15/2016 05:37:07 PM,01/15/2016 05:41:25 PM,01/15/2016 05:41:46 PM,01/15/2016 05:42:37 PM,01/15/2016 05:46:12 PM,01/15/2016 06:13:10 PM,01/15/2016 06:21:46 PM,Code 2 Transport,01/15/2016 06:56:50 PM,400 Block of ELLIS ST,San Francisco,94102,B03,3,1461,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7848073886774, -122.413615438263)",160152936-KM11 -113080216,KM11,11102337,Medical Incident,11/04/2011,11/04/2011,11/04/2011 01:43:57 PM,11/04/2011 01:44:18 PM,11/04/2011 01:45:15 PM,11/04/2011 01:45:57 PM,11/04/2011 01:59:38 PM,11/04/2011 02:03:18 PM,11/04/2011 02:33:47 PM,Code 2 Transport,11/04/2011 03:03:16 PM,100 Block of HARKNESS AVE,SF,94134,B10,44,6317,3,2,2,false,,1,PRIVATE,2,10,10,Visitacion Valley,"(37.7176973826684, -122.401132258156)",113080216-KM11 -160580849,65,16023042,Medical Incident,02/27/2016,02/27/2016,02/27/2016 08:07:48 AM,02/27/2016 08:09:24 AM,02/27/2016 08:10:08 AM,02/27/2016 08:10:15 AM,02/27/2016 08:20:18 AM,02/27/2016 08:30:13 AM,02/27/2016 08:48:07 AM,Code 2 Transport,02/27/2016 09:29:23 AM,ANNIE ST/MISSION ST,San Francisco,94105,B03,1,2145,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7868517146448, -122.401261502084)",160580849-65 -120880061,KM10,12029090,Medical Incident,03/28/2012,03/27/2012,03/28/2012 07:20:25 AM,03/28/2012 07:21:19 AM,03/28/2012 07:21:27 AM,03/28/2012 07:22:04 AM,03/28/2012 07:25:41 AM,03/28/2012 07:37:16 AM,03/28/2012 07:42:48 AM,Code 2 Transport,03/28/2012 08:06:58 AM,400 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7858903312278, -122.411725719434)",120880061-KM10 -103430009,94,10109700,Medical Incident,12/09/2010,12/08/2010,12/09/2010 12:28:02 AM,12/09/2010 12:32:14 AM,12/09/2010 12:32:33 AM,12/09/2010 12:32:41 AM,12/09/2010 12:37:04 AM,12/09/2010 12:56:12 AM,12/09/2010 01:07:05 AM,Code 2 Transport,12/09/2010 01:32:41 AM,800 Block of 33RD AVE,SF,94121,B07,14,7243,3,3,3,true,,1,MEDIC,2,7,1,Outer Richmond,"(37.7731148603785, -122.492763022617)",103430009-94 -160600041,70,16023716,Medical Incident,02/29/2016,02/28/2016,02/29/2016 12:14:29 AM,02/29/2016 12:18:54 AM,02/29/2016 12:19:30 AM,02/29/2016 12:19:53 AM,02/29/2016 12:27:48 AM,02/29/2016 12:35:05 AM,02/29/2016 12:49:17 AM,Code 2 Transport,02/29/2016 01:33:50 AM,900 Block of CONNECTICUT ST,San Francisco,94107,B10,37,2615,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",160600041-70 -132580247,KM02,13087333,Medical Incident,09/15/2013,09/15/2013,09/15/2013 04:02:07 PM,09/15/2013 04:03:49 PM,09/15/2013 04:04:13 PM,09/15/2013 04:04:53 PM,09/15/2013 04:11:57 PM,09/15/2013 04:28:58 PM,09/15/2013 04:54:22 PM,Code 2 Transport,09/15/2013 05:23:44 PM,600 Block of POINT LOBOS AVE,SF,94121,B07,34,7313,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7798433146326, -122.510504603354)",132580247-KM02 -132640378,54,13089678,Medical Incident,09/21/2013,09/21/2013,09/21/2013 08:29:28 PM,09/21/2013 08:30:39 PM,09/21/2013 08:31:30 PM,09/21/2013 08:31:42 PM,09/21/2013 08:37:41 PM,09/21/2013 09:03:22 PM,09/21/2013 09:35:23 PM,Other,09/21/2013 10:03:17 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",132640378-54 -140970221,72,14032698,Medical Incident,04/07/2014,04/07/2014,04/07/2014 01:16:19 PM,04/07/2014 01:16:57 PM,04/07/2014 01:17:11 PM,04/07/2014 01:17:22 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,04/25/2016 01:47:21 PM,Other,04/07/2014 01:19:18 PM,100 Block of CAPP ST,SAN FRANCISCO,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7642993402288, -122.418551435984)",140970221-72 -160600179,55,16023734,Medical Incident,02/29/2016,02/28/2016,02/29/2016 01:45:14 AM,02/29/2016 01:48:55 AM,02/29/2016 01:49:04 AM,02/29/2016 01:49:20 AM,02/29/2016 01:54:24 AM,02/29/2016 02:01:27 AM,02/29/2016 02:14:53 AM,Code 2 Transport,02/29/2016 02:41:00 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7360788249591, -122.3897231033)",160600179-55 -103010134,KM15,10096065,Medical Incident,10/28/2010,10/28/2010,10/28/2010 09:31:06 AM,10/28/2010 09:33:12 AM,10/28/2010 09:33:48 AM,10/28/2010 09:34:35 AM,10/28/2010 09:39:08 AM,10/28/2010 09:52:19 AM,10/28/2010 10:15:06 AM,Code 2 Transport,10/28/2010 10:36:52 AM,2000 Block of 45TH AVE,SF,94116,B08,23,7663,3,3,3,false,,1,PRIVATE,3,8,4,Sunset/Parkside,"(37.7483516879009, -122.50393869562)",103010134-KM15 -132040271,B04,13069169,Alarms,07/23/2013,07/23/2013,07/23/2013 04:58:33 PM,07/23/2013 04:59:29 PM,07/23/2013 04:59:41 PM,07/23/2013 05:00:29 PM,07/23/2013 05:03:55 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Fire,07/23/2013 05:05:48 PM,2600 Block of BROADWAY,SF,94115,B04,16,4122,3,3,3,false,Alarm,1,CHIEF,2,4,2,Pacific Heights,"(37.793435951268, -122.441087562851)",132040271-B04 -102290340,89,10072195,Traffic Collision,08/17/2010,08/17/2010,08/17/2010 08:43:13 PM,08/17/2010 08:44:44 PM,08/17/2010 08:48:37 PM,08/17/2010 08:49:09 PM,08/17/2010 08:51:32 PM,08/17/2010 09:19:56 PM,08/17/2010 09:27:16 PM,Code 2 Transport,08/17/2010 09:55:06 PM,GOUGH ST/EDDY ST,SF,94109,B02,5,3262,2,2,2,true,,1,MEDIC,1,2,5,Western Addition,"(37.7824770505897, -122.424108201912)",102290340-89 -122350232,AM04,12077913,Medical Incident,08/22/2012,08/22/2012,08/22/2012 04:24:21 PM,08/22/2012 04:25:08 PM,08/22/2012 04:26:01 PM,08/22/2012 04:26:51 PM,08/22/2012 04:31:52 PM,08/22/2012 04:45:47 PM,08/22/2012 05:35:17 PM,Code 2 Transport,08/22/2012 05:55:47 PM,300 Block of MORAGA AVE,PR,94129,B99,51,4626,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Presidio,"(37.7986237777426, -122.460634690165)",122350232-AM04 -121250299,T05,12041609,Vehicle Fire,05/04/2012,05/04/2012,05/04/2012 06:28:57 PM,05/04/2012 06:30:10 PM,05/04/2012 06:30:27 PM,05/04/2012 06:31:26 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,04/25/2016 01:58:51 PM,Other,05/04/2012 06:33:11 PM,OAK ST/LAGUNA ST,SF,94102,B02,36,3414,3,3,3,false,Fire,1,TRUCK,2,2,5,Hayes Valley,"(37.7745987844772, -122.425888499442)",121250299-T05 -160472461,79,16018996,Medical Incident,02/16/2016,02/16/2016,02/16/2016 03:50:18 PM,02/16/2016 03:50:45 PM,02/16/2016 03:50:55 PM,02/16/2016 03:51:03 PM,02/16/2016 03:59:50 PM,02/16/2016 04:07:43 PM,02/16/2016 04:31:12 PM,Code 2 Transport,02/16/2016 04:40:07 PM,1600 Block of 48TH AVE,San Francisco,94122,B08,23,7724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7556644793089, -122.507808351695)",160472461-79 -113250153,KM05,11107898,Medical Incident,11/21/2011,11/21/2011,11/21/2011 11:40:22 AM,11/21/2011 11:43:39 AM,11/21/2011 11:44:06 AM,11/21/2011 11:44:46 AM,11/21/2011 11:57:23 AM,11/21/2011 12:02:02 PM,11/21/2011 12:12:31 PM,Code 2 Transport,11/21/2011 12:34:10 PM,1200 Block of 19TH AVE,SF,94122,B08,22,7424,3,3,3,false,,1,PRIVATE,2,7,4,Inner Sunset,"(37.7645085780924, -122.477112517357)",113250153-KM05 -160120990,81,16004706,Medical Incident,01/12/2016,01/12/2016,01/12/2016 09:32:19 AM,01/12/2016 09:35:14 AM,01/12/2016 09:36:44 AM,01/12/2016 09:36:50 AM,01/12/2016 09:47:38 AM,01/12/2016 10:13:07 AM,01/12/2016 10:34:57 AM,Code 2 Transport,01/12/2016 11:35:14 AM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160120990-81 -132020146,E38,13068439,Alarms,07/21/2013,07/21/2013,07/21/2013 12:42:01 PM,07/21/2013 12:43:36 PM,07/21/2013 12:45:13 PM,07/21/2013 12:55:49 PM,07/21/2013 01:11:35 PM,04/25/2016 01:51:42 PM,04/25/2016 01:51:42 PM,Other,07/21/2013 05:34:57 PM,100 Block of KEARNY ST,SF,94104,B01,13,1242,3,3,3,false,Alarm,1,ENGINE,15,1,3,Financial District/South Beach,"(37.7891367799941, -122.40363527458)",132020146-E38 -160041101,65,16001538,Medical Incident,01/04/2016,01/04/2016,01/04/2016 09:57:15 AM,01/04/2016 09:59:19 AM,01/04/2016 09:59:34 AM,01/04/2016 09:59:44 AM,01/04/2016 10:14:26 AM,01/04/2016 10:37:03 AM,01/04/2016 10:57:13 AM,Code 2 Transport,01/04/2016 11:32:35 AM,600 Block of MARKET ST,San Francisco,94104,B03,1,2211,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",160041101-65 -160330275,AM22,16012830,Medical Incident,02/02/2016,02/01/2016,02/02/2016 03:06:20 AM,02/02/2016 03:07:17 AM,02/02/2016 03:07:30 AM,02/02/2016 03:08:15 AM,02/02/2016 03:20:48 AM,02/02/2016 03:29:48 AM,02/02/2016 04:04:54 AM,Code 2 Transport,02/02/2016 04:15:44 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160330275-AM22 -132590381,89,13087780,Medical Incident,09/16/2013,09/16/2013,09/16/2013 09:42:05 PM,09/16/2013 09:42:33 PM,09/16/2013 09:42:42 PM,09/16/2013 09:42:55 PM,09/16/2013 09:51:15 PM,09/16/2013 10:00:44 PM,09/16/2013 10:11:32 PM,Code 2 Transport,09/16/2013 10:43:28 PM,1700 Block of QUINT ST,SF,94124,B10,42,6445,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7350748815594, -122.398827357293)",132590381-89 -120020072,92,12000645,Medical Incident,01/02/2012,01/01/2012,01/02/2012 07:24:59 AM,01/02/2012 07:25:56 AM,01/02/2012 07:26:05 AM,01/02/2012 07:27:02 AM,01/02/2012 07:31:54 AM,01/02/2012 07:49:21 AM,01/02/2012 08:09:58 AM,Code 2 Transport,01/02/2012 08:42:46 AM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7819536537257, -122.410041631816)",120020072-92 -123400395,E18,12113592,Alarms,12/05/2012,12/05/2012,12/05/2012 09:59:52 PM,12/05/2012 10:00:38 PM,12/05/2012 10:01:09 PM,12/05/2012 10:03:21 PM,12/05/2012 10:08:11 PM,04/25/2016 01:55:27 PM,04/25/2016 01:55:27 PM,Other,12/05/2012 10:14:23 PM,0 Block of ZOO RD,SF,94132,B08,19,8716,3,3,3,true,Alarm,1,ENGINE,1,8,7,Lakeshore,"(37.7308647517951, -122.500820231868)",123400395-E18 -103600145,E21,10115512,Medical Incident,12/26/2010,12/26/2010,12/26/2010 01:53:23 PM,12/26/2010 01:56:23 PM,12/26/2010 01:57:45 PM,12/26/2010 01:58:23 PM,12/26/2010 01:58:26 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 02:14:04 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",103600145-E21 -140650041,T10,14021856,Alarms,03/06/2014,03/05/2014,03/06/2014 05:19:04 AM,03/06/2014 05:21:06 AM,03/06/2014 05:21:31 AM,03/06/2014 05:23:37 AM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,04/25/2016 01:47:53 PM,Fire,03/06/2014 05:39:34 AM,2300 Block of POST ST,SAN FRANCISCO,94115,B05,10,4235,3,3,3,false,Alarm,1,TRUCK,3,5,5,Japantown,"(37.784128648418, -122.440738860354)",140650041-T10 -111190149,T07,11039223,Alarms,04/29/2011,04/29/2011,04/29/2011 12:29:11 PM,04/29/2011 12:30:14 PM,04/29/2011 12:31:27 PM,04/29/2011 12:34:15 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 12:41:13 PM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,3,3,false,,1,TRUCK,3,2,6,Mission,"(37.7720650956074, -122.416549895826)",111190149-T07 -112910358,75,11096712,Medical Incident,10/18/2011,10/18/2011,10/18/2011 09:15:01 PM,10/18/2011 09:17:05 PM,10/18/2011 09:17:11 PM,10/18/2011 09:17:36 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,04/25/2016 02:02:05 PM,Other,10/18/2011 09:47:02 PM,5200 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8163,3,3,3,true,,1,MEDIC,2,6,8,Noe Valley,"(37.7444741036498, -122.438864927633)",112910358-75 -111790117,58,11059055,Medical Incident,06/28/2011,06/28/2011,06/28/2011 10:37:10 AM,06/28/2011 10:38:19 AM,06/28/2011 10:40:44 AM,06/28/2011 10:41:25 AM,06/28/2011 10:47:53 AM,06/28/2011 11:15:25 AM,06/28/2011 11:36:52 AM,Code 2 Transport,06/28/2011 12:05:01 PM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,true,,1,MEDIC,1,3,6,South of Market,"(37.781960649289, -122.402224095303)",111790117-58 -132540405,94,13085999,Medical Incident,09/11/2013,09/11/2013,09/11/2013 09:31:22 PM,09/11/2013 09:33:24 PM,09/11/2013 09:33:32 PM,09/11/2013 09:33:41 PM,09/11/2013 09:38:08 PM,09/11/2013 10:00:59 PM,09/11/2013 10:11:41 PM,Code 2 Transport,09/11/2013 10:31:31 PM,400 Block of BAY ST,SF,94133,B01,28,1425,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8054635492679, -122.41441222701)",132540405-94 -122690094,66,12088784,Medical Incident,09/25/2012,09/25/2012,09/25/2012 10:26:57 AM,09/25/2012 10:28:32 AM,09/25/2012 10:30:31 AM,09/25/2012 10:30:46 AM,09/25/2012 10:42:31 AM,09/25/2012 10:47:49 AM,09/25/2012 11:02:24 AM,Code 2 Transport,09/25/2012 11:29:00 AM,200 Block of EDDY ST,SF,94102,B03,1,1453,1,1,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",122690094-66 -160250553,85,16009801,Medical Incident,01/25/2016,01/24/2016,01/25/2016 06:37:01 AM,01/25/2016 06:37:58 AM,01/25/2016 06:38:08 AM,01/25/2016 06:38:16 AM,01/25/2016 06:59:49 AM,01/25/2016 07:03:13 AM,01/25/2016 07:15:08 AM,Code 2 Transport,01/25/2016 07:54:56 AM,1800 Block of 15TH ST,San Francisco,94103,B02,6,5227,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Mission,"(37.7662536102334, -122.425864046062)",160250553-85 -103570059,55,10114469,Medical Incident,12/23/2010,12/22/2010,12/23/2010 06:25:18 AM,12/23/2010 06:26:13 AM,12/23/2010 06:26:25 AM,12/23/2010 06:26:37 AM,12/23/2010 06:38:22 AM,04/25/2016 02:06:58 PM,04/25/2016 02:06:58 PM,Patient Declined Transport,12/23/2010 07:08:07 AM,1300 Block of 32ND AVE,SF,94122,B08,23,7536,3,2,2,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7620143804393, -122.491057300284)",103570059-55 -132460347,66,13083140,Medical Incident,09/03/2013,09/03/2013,09/03/2013 07:55:03 PM,09/03/2013 07:55:34 PM,09/03/2013 07:55:52 PM,09/03/2013 07:56:07 PM,09/03/2013 08:01:10 PM,09/03/2013 08:22:55 PM,09/03/2013 08:45:10 PM,Code 2 Transport,09/03/2013 09:16:18 PM,600 Block of DAVIS ST,SF,94111,B01,13,1131,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7979952301231, -122.398446080847)",132460347-66 -160623284,67,16024808,Medical Incident,03/02/2016,03/02/2016,03/02/2016 06:15:06 PM,03/02/2016 06:15:06 PM,03/02/2016 06:16:38 PM,03/02/2016 06:16:38 PM,03/02/2016 06:17:27 PM,03/02/2016 06:29:17 PM,03/02/2016 07:01:01 PM,Code 2 Transport,03/02/2016 07:01:22 PM,16TH ST/MISSION ST,San Francisco,94103,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7650513381945, -122.419668973861)",160623284-67 -160131518,KM09,16005171,Medical Incident,01/13/2016,01/13/2016,01/13/2016 11:26:55 AM,01/13/2016 11:28:30 AM,01/13/2016 11:29:45 AM,01/13/2016 11:30:11 AM,01/13/2016 11:50:06 AM,01/13/2016 12:20:09 PM,01/13/2016 12:41:10 PM,Code 2 Transport,01/13/2016 01:18:15 PM,1300 Block of MISSION ST,San Francisco,94103,B02,36,2341,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7754785492962, -122.415745332716)",160131518-KM09 -111760182,E37,11058012,Alarms,06/25/2011,06/25/2011,06/25/2011 01:08:29 PM,06/25/2011 01:10:29 PM,06/25/2011 01:11:19 PM,06/25/2011 01:13:13 PM,06/25/2011 01:14:17 PM,04/25/2016 02:03:59 PM,04/25/2016 02:03:59 PM,Other,06/25/2011 01:16:58 PM,900 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,true,,1,ENGINE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",111760182-E37 -160600499,AM04,16023770,Medical Incident,02/29/2016,02/28/2016,02/29/2016 06:52:47 AM,02/29/2016 06:54:39 AM,02/29/2016 06:56:43 AM,02/29/2016 06:57:11 AM,02/29/2016 06:59:53 AM,02/29/2016 07:07:27 AM,02/29/2016 08:02:42 AM,Code 2 Transport,02/29/2016 08:02:57 AM,3000 Block of 16TH ST,San Francisco,94103,B02,7,5236,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,9,Mission,"(37.7650413541786, -122.420746190588)",160600499-AM04 -102310047,E21,10072599,Medical Incident,08/19/2010,08/18/2010,08/19/2010 07:23:01 AM,08/19/2010 07:24:06 AM,08/19/2010 07:24:17 AM,08/19/2010 07:25:24 AM,08/19/2010 07:25:54 AM,04/25/2016 02:09:01 PM,04/25/2016 02:09:01 PM,Other,08/19/2010 07:56:02 AM,1400 Block of GROVE ST,SF,94117,B05,21,4253,E,3,3,false,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",102310047-E21 -132590305,E05,13087712,Other,09/16/2013,09/16/2013,09/16/2013 05:07:42 PM,09/16/2013 05:10:32 PM,09/16/2013 05:12:23 PM,09/16/2013 05:13:17 PM,09/16/2013 05:16:23 PM,04/25/2016 01:50:45 PM,04/25/2016 01:50:45 PM,Other,09/16/2013 05:26:26 PM,0 Block of FRANKLIN ST,SF,94102,B02,36,3212,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7745362770935, -122.420741294553)",132590305-E05 -123470326,D2,12116131,Structure Fire,12/12/2012,12/12/2012,12/12/2012 07:13:53 PM,12/12/2012 07:15:09 PM,12/12/2012 07:15:29 PM,12/12/2012 07:17:15 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,04/25/2016 01:55:20 PM,Other,12/12/2012 07:24:50 PM,1500 Block of PERSHING DR,PR,94129,B99,51,4617,3,3,3,false,Alarm,1,CHIEF,9,7,2,Presidio,"(37.7928087460135, -122.477653715778)",123470326-D2 -160083910,82,16003448,Medical Incident,01/08/2016,01/08/2016,01/08/2016 10:26:59 PM,01/08/2016 10:30:29 PM,01/08/2016 10:30:51 PM,01/08/2016 10:31:01 PM,01/08/2016 10:42:37 PM,01/08/2016 10:54:49 PM,01/08/2016 11:06:18 PM,Code 2 Transport,01/08/2016 11:36:08 PM,500 Block of BROADWAY,San Francisco,94133,B01,2,1311,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,North Beach,"(37.7980228452184, -122.405863212632)",160083910-82 -160011403,65,16000251,Medical Incident,01/01/2016,01/01/2016,01/01/2016 08:53:57 AM,01/01/2016 08:54:43 AM,01/01/2016 08:56:34 AM,01/01/2016 08:56:47 AM,01/01/2016 09:04:35 AM,01/01/2016 09:25:53 AM,01/01/2016 09:46:12 AM,Code 3 Transport,01/01/2016 10:33:03 AM,400 Block of GEARY ST,San Francisco,94102,B01,3,1411,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Tenderloin,"(37.7869901974862, -122.410683910107)",160011403-65 -121370294,87,12045603,Medical Incident,05/16/2012,05/16/2012,05/16/2012 04:38:26 PM,05/16/2012 04:40:18 PM,05/16/2012 04:40:32 PM,05/16/2012 04:40:55 PM,05/16/2012 04:48:13 PM,05/16/2012 05:02:07 PM,05/16/2012 05:18:59 PM,Code 2 Transport,05/16/2012 05:58:09 PM,1300 Block of 5TH AVE,SF,94122,B08,12,7326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,5,Inner Sunset,"(37.7632907518666, -122.462034637217)",121370294-87 -112080025,E13,11068562,Alarms,07/27/2011,07/26/2011,07/27/2011 01:58:58 AM,07/27/2011 02:00:35 AM,07/27/2011 02:00:42 AM,07/27/2011 02:02:14 AM,07/27/2011 02:04:05 AM,04/25/2016 02:03:28 PM,04/25/2016 02:03:28 PM,Other,07/27/2011 02:20:50 AM,200 Block of CALIFORNIA ST,SF,94111,B01,13,1162,3,3,3,true,,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7933383335289, -122.399381167233)",112080025-E13 -160373994,AM16,16014962,Medical Incident,02/06/2016,02/06/2016,02/06/2016 10:16:09 PM,02/06/2016 10:17:55 PM,02/06/2016 10:18:24 PM,02/06/2016 10:18:52 PM,02/06/2016 10:21:47 PM,02/06/2016 10:35:12 PM,02/06/2016 10:37:11 PM,Code 2 Transport,02/06/2016 11:05:40 PM,1000 Block of SUTTER ST,San Francisco,94109,B04,3,1557,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7880178777455, -122.417634971659)",160373994-AM16 -122420050,T08,12079945,Alarms,08/29/2012,08/28/2012,08/29/2012 05:54:44 AM,08/29/2012 05:56:27 AM,08/29/2012 05:56:35 AM,08/29/2012 05:59:07 AM,08/29/2012 06:04:30 AM,04/25/2016 01:57:01 PM,04/25/2016 01:57:01 PM,Other,08/29/2012 06:18:21 AM,500 Block of 18TH ST,SF,94107,B03,29,2466,3,3,3,false,Alarm,1,TRUCK,3,3,10,Potrero Hill,"(37.7631325072007, -122.388271828178)",122420050-T08 -113440094,KM11,11114051,Medical Incident,12/10/2011,12/10/2011,12/10/2011 08:33:35 AM,12/10/2011 08:38:09 AM,12/10/2011 08:39:41 AM,12/10/2011 08:51:42 AM,12/10/2011 08:54:02 AM,04/25/2016 02:01:13 PM,04/25/2016 02:01:13 PM,Patient Declined Transport,12/10/2011 09:21:54 AM,800 Block of GEARY ST,SF,94109,B04,3,1556,2,2,2,false,,1,PRIVATE,4,4,6,Tenderloin,"(37.7861514014659, -122.417257623805)",113440094-KM11 -112110353,82,11069792,Medical Incident,07/30/2011,07/30/2011,07/30/2011 11:06:20 PM,07/30/2011 11:08:06 PM,07/30/2011 11:10:02 PM,07/30/2011 11:14:05 PM,07/30/2011 11:23:22 PM,07/30/2011 11:38:40 PM,07/30/2011 11:54:58 PM,Code 2 Transport,07/31/2011 12:10:53 AM,300 Block of SCHWERIN ST,SF,94134,B09,44,6252,3,3,3,true,,1,MEDIC,2,9,10,Visitacion Valley,"(37.7089307928645, -122.412165670748)",112110353-82 -140520072,55,14017530,Medical Incident,02/21/2014,02/20/2014,02/21/2014 07:57:31 AM,02/21/2014 07:58:36 AM,02/21/2014 08:00:09 AM,02/21/2014 08:00:17 AM,02/21/2014 08:04:59 AM,04/25/2016 01:48:06 PM,04/25/2016 01:48:06 PM,Against Medical Advice,02/21/2014 08:38:10 AM,500 Block of GEARY ST,SF,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,1,6,Tenderloin,"(37.7868328798047, -122.41191705116)",140520072-55 -160261710,54,16010296,Medical Incident,01/26/2016,01/26/2016,01/26/2016 12:19:43 PM,01/26/2016 12:22:06 PM,01/26/2016 12:22:46 PM,01/26/2016 12:24:13 PM,01/26/2016 12:28:42 PM,01/26/2016 12:48:48 PM,01/26/2016 01:15:52 PM,Code 2 Transport,01/26/2016 02:37:04 PM,300 Block of GRANADA AVE,San Francisco,94112,B09,15,8474,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7246905524598, -122.457340768264)",160261710-54 -121300303,66,12043368,Medical Incident,05/09/2012,05/09/2012,05/09/2012 07:37:11 PM,05/09/2012 07:38:46 PM,05/09/2012 07:39:53 PM,04/25/2016 01:58:46 PM,05/09/2012 07:54:32 PM,05/09/2012 08:10:59 PM,05/09/2012 08:14:35 PM,Code 3 Transport,05/09/2012 08:45:45 PM,1500 Block of 9TH AVE,SF,94122,B08,22,7335,3,3,3,false,Potentially Life-Threatening,1,MEDIC,3,8,7,Inner Sunset,"(37.7593811185693, -122.465916106738)",121300303-66 -123470236,E05,12116050,Medical Incident,12/12/2012,12/12/2012,12/12/2012 02:27:54 PM,12/12/2012 02:28:47 PM,12/12/2012 02:30:06 PM,12/12/2012 02:30:17 PM,12/12/2012 02:38:08 PM,04/25/2016 01:55:21 PM,04/25/2016 01:55:21 PM,Other,12/12/2012 02:41:15 PM,700 Block of GEARY ST,SF,94109,B04,3,1556,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7863607914644, -122.415616900247)",123470236-E05 -110390283,T03,11013016,Structure Fire,02/08/2011,02/08/2011,02/08/2011 06:55:31 PM,02/08/2011 06:56:18 PM,02/08/2011 06:56:47 PM,02/08/2011 06:57:20 PM,02/08/2011 06:59:45 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 07:40:54 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,false,,1,TRUCK,3,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",110390283-T03 -130300027,AM18,13010098,Medical Incident,01/30/2013,01/29/2013,01/30/2013 03:05:26 AM,01/30/2013 03:05:58 AM,01/30/2013 03:06:36 AM,01/30/2013 03:07:04 AM,01/30/2013 03:11:53 AM,01/30/2013 03:39:23 AM,01/30/2013 03:47:04 AM,Code 2 Transport,01/30/2013 04:19:28 AM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,8,Mission,"(37.7627436601147, -122.421747650463)",130300027-AM18 -133030278,AM06,13103005,Medical Incident,10/30/2013,10/30/2013,10/30/2013 05:11:32 PM,10/30/2013 05:13:13 PM,10/30/2013 05:13:26 PM,10/30/2013 05:14:33 PM,10/30/2013 05:19:10 PM,10/30/2013 05:45:12 PM,10/30/2013 05:53:37 PM,Code 2 Transport,10/30/2013 06:38:20 PM,3300 Block of SACRAMENTO ST,SF,94118,B04,10,4412,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",133030278-AM06 -160193056,58,16007759,Medical Incident,01/19/2016,01/19/2016,01/19/2016 06:52:40 PM,01/19/2016 06:54:15 PM,01/19/2016 06:56:24 PM,01/19/2016 06:56:42 PM,01/19/2016 07:04:12 PM,01/19/2016 07:11:35 PM,01/19/2016 07:17:18 PM,Code 2 Transport,01/19/2016 07:49:21 PM,200 Block of HAIGHT ST,San Francisco,94102,B02,36,3415,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7726838520121, -122.426346200623)",160193056-58 -103060356,KM12,10098041,Medical Incident,11/02/2010,11/02/2010,11/02/2010 06:13:26 PM,11/02/2010 06:13:48 PM,11/02/2010 06:14:17 PM,11/02/2010 06:15:02 PM,11/02/2010 06:21:13 PM,11/02/2010 06:34:21 PM,11/02/2010 06:49:20 PM,Code 3 Transport,11/02/2010 07:04:24 PM,200 Block of GARCES DR,SF,94132,B08,19,8483,3,3,3,false,,1,PRIVATE,2,8,7,Lakeshore,"(37.7155492963432, -122.480858470106)",103060356-KM12 -110940105,89,11031140,Medical Incident,04/04/2011,04/04/2011,04/04/2011 09:48:35 AM,04/04/2011 09:50:13 AM,04/04/2011 09:50:22 AM,04/04/2011 09:51:21 AM,04/04/2011 09:55:17 AM,04/04/2011 10:08:09 AM,04/04/2011 10:23:27 AM,Code 2 Transport,04/04/2011 11:04:40 AM,1500 Block of HOWARD ST,SF,94103,B02,36,5114,3,1,2,true,,1,MEDIC,2,2,6,Mission,"(37.772123277472, -122.416667284185)",110940105-89 -160320014,72,16012397,Medical Incident,02/01/2016,01/31/2016,02/01/2016 12:05:42 AM,02/01/2016 12:06:04 AM,02/01/2016 12:06:37 AM,02/01/2016 12:08:22 AM,02/01/2016 12:10:38 AM,02/01/2016 12:21:07 AM,02/01/2016 12:31:17 AM,Code 2 Transport,02/01/2016 01:16:56 AM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160320014-72 -160453253,71,16018299,Medical Incident,02/14/2016,02/14/2016,02/14/2016 09:23:43 PM,02/14/2016 09:24:52 PM,02/14/2016 09:25:09 PM,02/14/2016 09:25:14 PM,02/14/2016 09:31:11 PM,02/14/2016 09:49:06 PM,02/14/2016 10:15:14 PM,Code 2 Transport,02/14/2016 10:40:20 PM,3500 Block of 19TH ST,San Francisco,94110,B06,7,5434,3,3,3,true,Non Life-threatening,1,MEDIC,2,6,8,Mission,"(37.7600451698328, -122.423265598657)",160453253-71 -102420150,AP,10076290,Other,08/30/2010,08/30/2010,08/30/2010 11:16:23 AM,08/30/2010 11:16:24 AM,08/30/2010 11:16:24 AM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Fire,08/30/2010 11:16:42 AM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",102420150-AP -160191691,KM05,16007633,Medical Incident,01/19/2016,01/19/2016,01/19/2016 12:43:20 PM,01/19/2016 12:44:56 PM,01/19/2016 12:45:15 PM,01/19/2016 12:47:07 PM,01/19/2016 12:54:51 PM,01/19/2016 01:12:08 PM,01/19/2016 01:29:47 PM,Code 2 Transport,01/19/2016 02:02:18 PM,1500 Block of OFARRELL ST,San Francisco,94115,B04,5,3514,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,5,Western Addition,"(37.7834972119133, -122.430603323889)",160191691-KM05 -160131847,59,16005196,Medical Incident,01/13/2016,01/13/2016,01/13/2016 12:42:31 PM,01/13/2016 12:44:41 PM,01/13/2016 12:45:45 PM,01/13/2016 12:45:55 PM,01/13/2016 12:49:04 PM,01/13/2016 01:12:07 PM,01/13/2016 01:14:39 PM,Code 2 Transport,01/13/2016 02:07:18 PM,1700 Block of FRANKLIN ST,San Francisco,94109,B04,38,3225,2,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7906296028558, -122.423999876648)",160131847-59 -110060116,RS2,11001922,Medical Incident,01/06/2011,01/06/2011,01/06/2011 09:28:40 AM,01/06/2011 09:28:40 AM,01/06/2011 09:28:49 AM,01/06/2011 09:30:20 AM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,04/25/2016 02:06:44 PM,Other,01/06/2011 09:32:01 AM,3600 Block of 20TH ST,SF,94110,B06,7,5445,3,3,3,false,,1,RESCUE SQUAD,2,6,8,Mission,"(37.7584863037287, -122.422385383463)",110060116-RS2 -132060032,KM07,13069630,Medical Incident,07/25/2013,07/24/2013,07/25/2013 05:24:15 AM,07/25/2013 05:25:58 AM,07/25/2013 05:26:19 AM,07/25/2013 05:26:55 AM,07/25/2013 05:38:06 AM,07/25/2013 05:46:59 AM,07/25/2013 06:00:02 AM,Code 2 Transport,07/25/2013 06:32:19 AM,1300 Block of UNDERWOOD AVE,SF,94124,B10,17,6653,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7271809770545, -122.387135707387)",132060032-KM07 -113390033,E05,11112239,Medical Incident,12/05/2011,12/04/2011,12/05/2011 04:33:40 AM,12/05/2011 04:34:01 AM,12/05/2011 04:34:52 AM,12/05/2011 04:36:44 AM,12/05/2011 04:38:04 AM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/05/2011 04:52:54 AM,1100 Block of WEBSTER ST,SF,94115,B05,5,3515,3,3,3,true,,1,ENGINE,1,2,5,Western Addition,"(37.7811999939528, -122.430364888226)",113390033-E05 -132740230,79,13093145,Medical Incident,10/01/2013,10/01/2013,10/01/2013 03:42:47 PM,10/01/2013 03:43:48 PM,10/01/2013 03:44:36 PM,10/01/2013 03:48:18 PM,10/01/2013 04:03:58 PM,10/01/2013 04:04:17 PM,10/01/2013 04:29:12 PM,Code 2 Transport,10/01/2013 04:58:24 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7803475492385, -122.406487967809)",132740230-79 -130750360,E22,13025187,Outside Fire,03/16/2013,03/16/2013,03/16/2013 09:55:21 PM,03/16/2013 09:56:27 PM,03/16/2013 09:57:15 PM,03/16/2013 09:57:52 PM,03/16/2013 10:02:07 PM,04/25/2016 01:53:48 PM,04/25/2016 01:53:48 PM,Other,03/16/2013 10:02:30 PM,25TH AV/LINCOLN WY,SF,94122,B08,22,7452,3,3,3,false,Fire,1,ENGINE,1,8,1,Golden Gate Park,"(37.7651601782916, -122.48368543575)",130750360-E22 -111030137,D2,11034094,HazMat,04/13/2011,04/13/2011,04/13/2011 10:51:39 AM,04/13/2011 10:53:58 AM,04/13/2011 10:55:03 AM,04/13/2011 10:55:22 AM,04/13/2011 11:01:52 AM,04/25/2016 02:05:08 PM,04/25/2016 02:05:08 PM,Other,04/13/2011 11:03:39 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,false,,1,CHIEF,7,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",111030137-D2 -160372328,58,16014745,Medical Incident,02/06/2016,02/06/2016,02/06/2016 02:52:54 PM,02/06/2016 02:53:35 PM,02/06/2016 02:53:58 PM,02/06/2016 02:54:20 PM,02/06/2016 03:07:44 PM,02/06/2016 03:07:47 PM,02/06/2016 03:09:34 PM,Code 2 Transport,02/06/2016 03:56:58 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160372328-58 -160460324,KM07,16018373,Medical Incident,02/15/2016,02/14/2016,02/15/2016 02:55:04 AM,02/15/2016 02:56:41 AM,02/15/2016 02:56:54 AM,02/15/2016 02:57:28 AM,02/15/2016 03:03:52 AM,02/15/2016 03:17:44 AM,02/15/2016 03:26:50 AM,Code 2 Transport,02/15/2016 03:55:44 AM,1100 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3516,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Western Addition,"(37.7800421538713, -122.428635981835)",160460324-KM07 -131200247,AM18,13040430,Medical Incident,04/30/2013,04/30/2013,04/30/2013 06:13:12 PM,04/30/2013 06:18:16 PM,04/30/2013 06:19:48 PM,04/30/2013 06:23:15 PM,04/30/2013 06:36:25 PM,04/30/2013 07:04:32 PM,04/30/2013 07:04:38 PM,Code 2 Transport,04/30/2013 07:39:30 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,false,Non Life-threatening,1,PRIVATE,2,3,6,South of Market,"(37.7811458612596, -122.409026046516)",131200247-AM18 -131770004,94,13059934,Medical Incident,06/26/2013,06/25/2013,06/26/2013 12:19:29 AM,06/26/2013 12:20:23 AM,06/26/2013 12:21:03 AM,06/26/2013 12:21:26 AM,06/26/2013 12:23:55 AM,06/26/2013 12:38:48 AM,06/26/2013 12:52:29 AM,Code 2 Transport,06/26/2013 01:12:52 AM,0 Block of MASON ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",131770004-94 -131720324,54,13058512,Medical Incident,06/21/2013,06/21/2013,06/21/2013 08:43:28 PM,06/21/2013 08:45:31 PM,06/21/2013 08:59:29 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,04/25/2016 01:52:10 PM,Other,06/21/2013 08:59:35 PM,1600 Block of HAYES ST,SF,94117,B05,21,4351,3,3,3,true,Potentially Life-Threatening,1,MEDIC,4,5,5,Lone Mountain/USF,"(37.7743083992665, -122.443590663405)",131720324-54 -160051430,61,16001965,Medical Incident,01/05/2016,01/05/2016,01/05/2016 11:39:12 AM,01/05/2016 11:39:58 AM,01/05/2016 11:40:04 AM,01/05/2016 11:40:11 AM,01/05/2016 11:45:27 AM,01/05/2016 12:04:16 PM,01/05/2016 12:20:34 PM,Code 2 Transport,01/05/2016 01:05:41 PM,300 Block of TEHAMA ST,San Francisco,94103,B03,1,2214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7821103331421, -122.403196436662)",160051430-61 -102290266,79,10072128,Medical Incident,08/17/2010,08/17/2010,08/17/2010 05:23:08 PM,08/17/2010 05:25:34 PM,08/17/2010 05:27:07 PM,08/17/2010 05:27:15 PM,08/17/2010 05:29:28 PM,08/17/2010 05:40:47 PM,08/17/2010 05:46:28 PM,Code 2 Transport,08/17/2010 05:57:25 PM,GOUGH ST/MCALLISTER ST,SF,94102,B02,5,3316,3,3,3,true,,1,MEDIC,2,2,5,Western Addition,"(37.7796735861193, -122.423541306846)",102290266-79 -160600718,62,16023796,Medical Incident,02/29/2016,02/29/2016,02/29/2016 08:16:35 AM,02/29/2016 08:18:08 AM,02/29/2016 08:19:10 AM,02/29/2016 08:19:58 AM,02/29/2016 08:30:31 AM,02/29/2016 08:58:00 AM,02/29/2016 09:09:07 AM,Code 3 Transport,02/29/2016 09:33:25 AM,1000 Block of GRIFFITH ST,San Francisco,94124,B10,17,6647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7286187865041, -122.378914700059)",160600718-62 -102640321,E13,10083672,Medical Incident,09/21/2010,09/21/2010,09/21/2010 07:22:35 PM,09/21/2010 07:24:05 PM,09/21/2010 07:27:05 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,04/25/2016 02:08:29 PM,Other,09/21/2010 07:41:59 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,true,,1,ENGINE,4,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",102640321-E13 -160823426,AM10,16032717,Medical Incident,03/22/2016,03/22/2016,03/22/2016 07:37:19 PM,03/22/2016 07:38:19 PM,03/22/2016 07:38:34 PM,03/22/2016 07:39:21 PM,03/22/2016 07:43:59 PM,03/22/2016 08:01:57 PM,03/22/2016 08:15:35 PM,Code 2 Transport,03/22/2016 08:53:35 PM,1500 Block of GRANT AVE,San Francisco,94133,B01,28,1265,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,1,3,North Beach,"(37.8012484334227, -122.407775929611)",160823426-AM10 -133000202,T16,13101962,Medical Incident,10/27/2013,10/27/2013,10/27/2013 12:34:34 PM,10/27/2013 12:34:47 PM,10/27/2013 12:34:57 PM,10/27/2013 12:35:14 PM,10/27/2013 12:36:43 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 12:54:40 PM,CAPRA WY/MALLORCA WY,SF,94123,B04,16,3662,E,E,3,false,Potentially Life-Threatening,1,TRUCK,2,4,2,Marina,"(37.8028908454146, -122.438618493884)",133000202-T16 -131930080,T07,13065567,Alarms,07/12/2013,07/12/2013,07/12/2013 09:11:10 AM,07/12/2013 09:12:16 AM,07/12/2013 09:12:34 AM,07/12/2013 09:13:05 AM,07/12/2013 09:16:19 AM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 09:20:31 AM,100 Block of CAPP ST,SF,94110,B02,7,5236,3,3,3,false,Alarm,1,TRUCK,2,2,9,Mission,"(37.7642993402288, -122.418551435984)",131930080-T07 -121140097,AM02,12037778,Medical Incident,04/23/2012,04/23/2012,04/23/2012 09:13:13 AM,04/23/2012 09:15:07 AM,04/23/2012 09:16:16 AM,04/23/2012 09:17:23 AM,04/23/2012 09:27:25 AM,04/23/2012 09:48:24 AM,04/23/2012 10:10:39 AM,Code 2 Transport,04/23/2012 10:47:21 AM,0 Block of ENCLINE CT,SF,94127,B09,39,8655,1,1,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7417408917771, -122.447444505272)",121140097-AM02 -112980308,AP,11098955,Other,10/25/2011,10/25/2011,10/25/2011 06:11:09 PM,10/25/2011 06:11:10 PM,10/25/2011 06:11:10 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Fire,10/25/2011 06:11:35 PM,CALL BOX: SF INTERNATIONAL AIRPORT,SFO,,B09,44,6913,3,3,3,false,,1,AIRPORT,1,None,None,None,"(37.6168823239251, -122.384094238098)",112980308-AP -133120341,E33,13106164,Structure Fire,11/08/2013,11/08/2013,11/08/2013 07:52:49 PM,11/08/2013 07:52:50 PM,11/08/2013 07:53:55 PM,11/08/2013 07:55:05 PM,11/08/2013 07:56:52 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 07:57:03 PM,MISSION ST/SICKLES AV,SF,94112,B09,33,6213,3,3,3,true,Alarm,1,ENGINE,1,9,11,Outer Mission,"(37.7088063383308, -122.452664722246)",133120341-E33 -111730325,AM10,11057201,Medical Incident,06/22/2011,06/22/2011,06/22/2011 08:40:35 PM,06/22/2011 08:41:13 PM,06/22/2011 08:41:28 PM,06/22/2011 08:42:10 PM,06/22/2011 08:46:13 PM,06/22/2011 08:58:39 PM,06/22/2011 09:10:50 PM,Code 2 Transport,06/22/2011 09:39:40 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,3,3,3,false,,1,PRIVATE,2,3,6,South of Market,"(37.7842056749338, -122.407612731809)",111730325-AM10 -140630057,77,14021183,Medical Incident,03/04/2014,03/03/2014,03/04/2014 06:12:37 AM,03/04/2014 06:14:04 AM,03/04/2014 06:22:32 AM,03/04/2014 06:22:32 AM,03/04/2014 06:29:36 AM,03/04/2014 06:34:57 AM,03/04/2014 06:45:37 AM,Code 3 Transport,03/04/2014 07:22:15 AM,500 Block of EDDY ST,SF,94109,B02,3,1643,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7834675310494, -122.416716373273)",140630057-77 -160550057,70,16021829,Medical Incident,02/24/2016,02/23/2016,02/24/2016 12:29:02 AM,02/24/2016 12:30:27 AM,02/24/2016 12:30:36 AM,02/24/2016 12:30:44 AM,02/24/2016 12:41:26 AM,02/24/2016 01:06:39 AM,02/24/2016 01:18:33 AM,Code 2 Transport,02/24/2016 02:05:02 AM,5TH ST/MISSION ST,San Francisco,94103,B03,1,2246,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7827316349865, -122.406479403956)",160550057-70 -160702375,KM13,16027918,Medical Incident,03/10/2016,03/10/2016,03/10/2016 04:07:31 PM,03/10/2016 04:07:45 PM,03/10/2016 04:08:41 PM,03/10/2016 04:09:16 PM,03/10/2016 04:14:15 PM,03/10/2016 04:38:45 PM,03/10/2016 05:10:31 PM,Code 2 Transport,03/10/2016 05:44:00 PM,FILLMORE ST/GEARY BL,San Francisco,94115,B04,5,3541,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,5,Western Addition,"(37.7843550554153, -122.432914248043)",160702375-KM13 -133090165,T15,13105045,Alarms,11/05/2013,11/05/2013,11/05/2013 11:39:24 AM,11/05/2013 11:40:50 AM,11/05/2013 11:41:05 AM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,04/25/2016 01:49:54 PM,Other,11/05/2013 11:43:48 AM,500 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,false,Alarm,1,TRUCK,4,8,7,Lakeshore,"(37.7301293750144, -122.478455492849)",133090165-T15 -160210456,71,16008251,Medical Incident,01/21/2016,01/20/2016,01/21/2016 05:21:01 AM,01/21/2016 05:21:45 AM,01/21/2016 05:22:37 AM,01/21/2016 05:22:58 AM,01/21/2016 05:31:02 AM,01/21/2016 05:39:36 AM,01/21/2016 05:47:34 AM,Code 2 Transport,01/21/2016 06:14:10 AM,1100 Block of MISSION ST,San Francisco,94103,B02,36,2318,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,South of Market,"(37.7777124404316, -122.412736707425)",160210456-71 -160350211,64,16013653,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:44:02 AM,02/04/2016 01:45:53 AM,02/04/2016 01:50:55 AM,02/04/2016 01:51:10 AM,02/04/2016 02:00:14 AM,02/04/2016 02:28:57 AM,02/04/2016 02:45:01 AM,Code 2 Transport,02/04/2016 03:53:30 AM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.796699717573, -122.408014703843)",160350211-64 -123540380,E09,12118620,Medical Incident,12/19/2012,12/19/2012,12/19/2012 09:24:36 PM,12/19/2012 09:25:12 PM,12/19/2012 09:25:55 PM,12/19/2012 09:27:20 PM,12/19/2012 09:29:45 PM,04/25/2016 01:55:13 PM,04/25/2016 01:55:13 PM,Other,12/19/2012 09:31:47 PM,1200 Block of YORK ST,SF,94110,B06,9,5531,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7520587497197, -122.408043927259)",123540380-E09 -123200262,E03,12106442,Alarms,11/15/2012,11/15/2012,11/15/2012 04:38:28 PM,11/15/2012 04:40:39 PM,11/15/2012 04:40:46 PM,11/15/2012 04:42:07 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 04:43:10 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,Alarm,1,ENGINE,4,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",123200262-E03 -160901483,56,16035685,Medical Incident,03/30/2016,03/30/2016,03/30/2016 11:15:08 AM,03/30/2016 11:15:08 AM,03/30/2016 11:40:22 AM,03/30/2016 11:41:04 AM,03/30/2016 11:49:09 AM,03/30/2016 11:59:24 AM,03/30/2016 12:17:30 PM,Code 2 Transport,03/30/2016 01:20:55 PM,EDDY ST/POLK ST,San Francisco,94109,B02,3,3115,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7831013992769, -122.419181705035)",160901483-56 -120190238,T05,12006392,Alarms,01/19/2012,01/19/2012,01/19/2012 03:06:17 PM,01/19/2012 03:06:41 PM,01/19/2012 03:07:07 PM,01/19/2012 03:09:28 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,04/25/2016 02:00:33 PM,Other,01/19/2012 03:11:21 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,Alarm,1,TRUCK,3,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",120190238-T05 -120390161,B08,12012971,Structure Fire,02/08/2012,02/08/2012,02/08/2012 12:15:49 PM,02/08/2012 12:16:47 PM,02/08/2012 12:17:12 PM,02/08/2012 12:18:38 PM,02/08/2012 12:25:09 PM,04/25/2016 02:00:14 PM,04/25/2016 02:00:14 PM,Other,02/08/2012 12:27:11 PM,300 Block of ARBALLO DR,SF,94132,B08,19,8582,3,3,3,false,Fire,1,CHIEF,8,8,7,Lakeshore,"(37.7208318410205, -122.483066441234)",120390161-B08 -133230247,E10,13109687,Medical Incident,11/19/2013,11/19/2013,11/19/2013 02:27:53 PM,11/19/2013 02:28:45 PM,11/19/2013 02:29:45 PM,11/19/2013 02:31:30 PM,11/19/2013 02:41:26 PM,04/25/2016 01:49:41 PM,04/25/2016 01:49:41 PM,Patient Declined Transport,11/19/2013 02:45:41 PM,3400 Block of CALIFORNIA ST,SF,94118,B07,10,4431,2,2,2,true,Non Life-threatening,1,ENGINE,2,7,2,Presidio Heights,"(37.786671063822, -122.450926258331)",133230247-E10 -113620205,E36,11120270,Medical Incident,12/28/2011,12/28/2011,12/28/2011 01:46:58 PM,12/28/2011 01:47:24 PM,12/28/2011 01:47:30 PM,12/28/2011 01:49:20 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,04/25/2016 02:00:55 PM,Other,12/28/2011 01:50:51 PM,1100 Block of MISSION ST,SF,94103,B02,36,2318,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7777124404316, -122.412736707425)",113620205-E36 -133110268,E08,13105784,Medical Incident,11/07/2013,11/07/2013,11/07/2013 05:11:40 PM,11/07/2013 05:13:25 PM,11/07/2013 05:13:57 PM,11/07/2013 05:16:02 PM,11/07/2013 05:17:36 PM,04/25/2016 01:49:52 PM,04/25/2016 01:49:52 PM,Other,11/07/2013 05:36:57 PM,200 Block of BERRY ST,SF,94158,B03,8,2225,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7748701729732, -122.394417071752)",133110268-E08 -160552115,50,16022037,Medical Incident,02/24/2016,02/24/2016,02/24/2016 02:10:57 PM,02/24/2016 02:11:48 PM,02/24/2016 02:12:00 PM,02/24/2016 02:12:26 PM,02/24/2016 02:13:41 PM,02/24/2016 02:26:34 PM,02/24/2016 02:58:36 PM,Code 2 Transport,02/24/2016 03:29:06 PM,200 Block of FOLSOM ST,San Francisco,94105,B03,35,2117,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7890669034935, -122.392339379759)",160552115-50 -120160034,T14,12005281,Alarms,01/16/2012,01/15/2012,01/16/2012 04:01:47 AM,01/16/2012 04:03:19 AM,01/16/2012 04:04:30 AM,01/16/2012 04:07:46 AM,01/16/2012 04:11:39 AM,04/25/2016 02:00:36 PM,04/25/2016 02:00:36 PM,Other,01/16/2012 04:11:43 AM,700 Block of 31ST AVE,SF,94121,B07,14,7242,3,3,3,false,Alarm,1,TRUCK,2,7,1,Outer Richmond,"(37.7750727521737, -122.490888168522)",120160034-T14 -130350216,E26,13012003,Medical Incident,02/04/2013,02/04/2013,02/04/2013 12:58:53 PM,02/04/2013 01:00:38 PM,02/04/2013 01:03:05 PM,02/04/2013 01:04:02 PM,02/04/2013 01:07:37 PM,04/25/2016 01:54:28 PM,04/25/2016 01:54:28 PM,Other,02/04/2013 01:15:10 PM,200 Block of AMBER DR,SF,94131,B06,26,8164,2,2,2,true,Non Life-threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7442850026971, -122.444610369759)",130350216-E26 -120940243,T06,12031204,Alarms,04/03/2012,04/03/2012,04/03/2012 04:40:36 PM,04/03/2012 04:42:39 PM,04/03/2012 04:43:04 PM,04/03/2012 04:44:14 PM,04/03/2012 04:46:47 PM,04/25/2016 01:59:21 PM,04/25/2016 01:59:21 PM,Other,04/03/2012 04:52:30 PM,0 Block of PIERCE ST,SF,94117,B05,6,3635,3,3,3,false,Alarm,1,TRUCK,1,5,8,Haight Ashbury,"(37.7702879508133, -122.433383131974)",120940243-T06 -103600201,E02,10115559,Structure Fire,12/26/2010,12/26/2010,12/26/2010 04:42:44 PM,12/26/2010 04:42:44 PM,12/26/2010 04:42:56 PM,12/26/2010 04:44:51 PM,12/26/2010 04:45:21 PM,04/25/2016 02:06:55 PM,04/25/2016 02:06:55 PM,Other,12/26/2010 04:46:15 PM,STOCKTON ST/WASHINGTON ST,SF,94108,B01,2,1331,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7949406864422, -122.408079102295)",103600201-E02 -122630323,88,12086987,Medical Incident,09/19/2012,09/19/2012,09/19/2012 08:14:32 PM,09/19/2012 08:14:32 PM,09/19/2012 08:16:38 PM,09/19/2012 08:16:43 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,04/25/2016 01:56:42 PM,Other,04/25/2016 01:56:42 PM,1800 Block of 21ST AVE,SF,94122,B08,40,7431,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7532107927328, -122.478619949457)",122630323-88 -133000261,E33,13102012,Medical Incident,10/27/2013,10/27/2013,10/27/2013 04:25:12 PM,10/27/2013 04:26:45 PM,10/27/2013 04:27:08 PM,10/27/2013 04:28:32 PM,10/27/2013 04:32:40 PM,04/25/2016 01:50:03 PM,04/25/2016 01:50:03 PM,Other,10/27/2013 04:40:19 PM,300 Block of SERRANO DR,SF,94132,B08,19,8581,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Lakeshore,"(37.7191183780763, -122.480484610594)",133000261-E33 -120880325,E42,12029307,Medical Incident,03/28/2012,03/28/2012,03/28/2012 11:00:27 PM,03/28/2012 11:00:41 PM,03/28/2012 11:00:55 PM,03/28/2012 11:02:20 PM,03/28/2012 11:03:20 PM,04/25/2016 01:59:27 PM,04/25/2016 01:59:27 PM,Other,03/28/2012 11:14:40 PM,BAYSHORE BL/SILVER AV,SF,94134,B10,42,6362,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Portola,"(37.7329487834835, -122.404657098442)",120880325-E42 -160900058,85,16035537,Medical Incident,03/30/2016,03/29/2016,03/30/2016 12:29:03 AM,03/30/2016 12:29:03 AM,03/30/2016 12:29:42 AM,03/30/2016 12:29:51 AM,03/30/2016 12:31:25 AM,03/30/2016 12:44:01 AM,03/30/2016 12:50:31 AM,Code 2 Transport,03/30/2016 01:18:03 AM,BUSH ST/STEINER ST,San Francisco,94115,B04,38,3621,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,5,Pacific Heights,"(37.7868105416223, -122.435105769551)",160900058-85 -103290272,T07,10105453,Alarms,11/25/2010,11/25/2010,11/25/2010 08:03:53 PM,11/25/2010 08:04:41 PM,11/25/2010 08:05:01 PM,11/25/2010 08:06:32 PM,11/25/2010 08:08:10 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,11/25/2010 08:13:15 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,false,,1,TRUCK,2,2,8,Mission,"(37.7621357066004, -122.421689426887)",103290272-T07 -112490265,E44,11082189,Structure Fire,09/06/2011,09/06/2011,09/06/2011 04:01:04 PM,09/06/2011 04:01:04 PM,09/06/2011 04:02:57 PM,09/06/2011 04:04:07 PM,09/06/2011 04:06:22 PM,04/25/2016 02:02:48 PM,04/25/2016 02:02:48 PM,Fire,09/06/2011 04:06:58 PM,PAUL AV/EXETER ST,SF,94124,B10,44,6323,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7230361592834, -122.398348115685)",112490265-E44 -113600060,55,11119545,Medical Incident,12/26/2011,12/25/2011,12/26/2011 05:26:58 AM,12/26/2011 05:31:59 AM,12/26/2011 05:32:54 AM,12/26/2011 05:35:34 AM,12/26/2011 05:38:21 AM,12/26/2011 06:15:14 AM,12/26/2011 06:26:44 AM,Code 2 Transport,12/26/2011 06:47:06 AM,1200 Block of TARAVAL ST,SF,94116,B08,40,7461,3,3,3,true,,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7428302290801, -122.479437396722)",113600060-55 -120510125,E39,12016820,Medical Incident,02/20/2012,02/20/2012,02/20/2012 10:47:01 AM,02/20/2012 10:47:44 AM,02/20/2012 10:48:03 AM,02/20/2012 10:49:23 AM,02/20/2012 10:52:35 AM,04/25/2016 02:00:03 PM,04/25/2016 02:00:03 PM,Other,02/20/2012 11:03:32 AM,0 Block of MARIETTA DR,SF,94127,B09,39,8653,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,7,West of Twin Peaks,"(37.74161827663, -122.448658031568)",120510125-E39 -110280129,T03,11009175,Structure Fire,01/28/2011,01/28/2011,01/28/2011 11:17:13 AM,01/28/2011 11:18:22 AM,01/28/2011 11:18:51 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 11:23:33 AM,100 Block of HYDE ST,SF,94102,B02,3,1554,3,3,3,false,,1,TRUCK,12,2,6,Tenderloin,"(37.7821109211194, -122.415667851674)",110280129-T03 -160231159,53,16009098,Medical Incident,01/23/2016,01/23/2016,01/23/2016 10:09:45 AM,01/23/2016 10:10:43 AM,01/23/2016 10:11:08 AM,01/23/2016 10:11:21 AM,01/23/2016 10:16:33 AM,01/23/2016 10:29:24 AM,01/23/2016 10:49:21 AM,Code 2 Transport,01/23/2016 11:26:15 AM,900 Block of KEARNY ST,San Francisco,94133,B01,13,1246,2,2,2,true,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",160231159-53 -102740073,E37,10086930,Medical Incident,10/01/2010,10/01/2010,10/01/2010 08:29:54 AM,10/01/2010 08:31:14 AM,10/01/2010 08:31:31 AM,10/01/2010 08:32:06 AM,10/01/2010 08:33:18 AM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 08:45:53 AM,1700 Block of 20TH ST,SF,94107,B10,37,2521,3,3,3,false,,1,ENGINE,1,10,10,Potrero Hill,"(37.7598249684422, -122.398693333701)",102740073-E37 -81910363,E03,8059003,Alarms,07/09/2008,07/09/2008,07/09/2008 08:28:24 PM,07/09/2008 08:29:27 PM,07/09/2008 08:29:58 PM,07/09/2008 08:31:23 PM,07/09/2008 08:33:47 PM,04/25/2016 03:33:21 PM,04/25/2016 03:33:21 PM,Other,07/09/2008 08:47:34 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,3,3,3,false,,1,ENGINE,1,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",081910363-E03 -122230037,66,12073810,Medical Incident,08/10/2012,08/09/2012,08/10/2012 03:24:02 AM,08/10/2012 03:26:09 AM,08/10/2012 03:26:31 AM,08/10/2012 03:26:44 AM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,04/25/2016 01:57:18 PM,Other,08/10/2012 03:41:26 AM,400 Block of POWELL ST,SF,94102,B01,1,1362,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7887504772357, -122.40856658917)",122230037-66 -112950323,67,11097965,Medical Incident,10/22/2011,10/22/2011,10/22/2011 07:42:46 PM,10/22/2011 07:44:25 PM,10/22/2011 07:44:54 PM,10/22/2011 07:45:01 PM,10/22/2011 07:54:41 PM,04/25/2016 02:02:01 PM,04/25/2016 02:02:01 PM,Other,10/22/2011 07:56:42 PM,700 Block of LARKIN ST,SF,94109,B04,3,1642,2,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.7844637837491, -122.417824560275)",112950323-67 -131090104,AM16,13036560,Medical Incident,04/19/2013,04/19/2013,04/19/2013 09:03:06 AM,04/19/2013 09:04:09 AM,04/19/2013 09:04:35 AM,04/19/2013 09:05:47 AM,04/19/2013 09:09:39 AM,04/19/2013 09:37:24 AM,04/19/2013 10:00:28 AM,Code 2 Transport,04/19/2013 10:50:25 AM,200 Block of FOERSTER ST,SF,94112,B09,15,823,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,9,7,West of Twin Peaks,"(37.7302865471422, -122.448788546393)",131090104-AM16 -132810343,E01,13095740,Medical Incident,10/08/2013,10/08/2013,10/08/2013 07:40:48 PM,10/08/2013 07:40:54 PM,10/08/2013 07:41:48 PM,10/08/2013 07:42:32 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,04/25/2016 01:50:21 PM,Other,10/08/2013 07:44:21 PM,1100 Block of MISSION ST,SF,94103,B02,1,2315,3,2,2,true,Potentially Life-Threatening,1,ENGINE,2,2,6,South of Market,"(37.7785895740312, -122.411626152299)",132810343-E01 -110390057,E01,11012835,Medical Incident,02/08/2011,02/07/2011,02/08/2011 05:38:21 AM,02/08/2011 05:40:11 AM,02/08/2011 05:40:27 AM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Fire,02/08/2011 05:53:06 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,,1,ENGINE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",110390057-E01 -110810215,E06,11026679,Medical Incident,03/22/2011,03/22/2011,03/22/2011 03:16:41 PM,03/22/2011 03:18:13 PM,03/22/2011 03:18:37 PM,03/22/2011 03:19:48 PM,03/22/2011 03:23:19 PM,04/25/2016 02:05:30 PM,04/25/2016 02:05:30 PM,Other,03/22/2011 03:24:04 PM,1500 Block of MARKET ST,SF,94102,B02,36,3212,3,3,3,true,,1,ENGINE,2,2,5,Hayes Valley,"(37.7748226184309, -122.419842305148)",110810215-E06 -120010104,E09,12000081,Outside Fire,01/01/2012,12/31/2011,01/01/2012 01:15:38 AM,01/01/2012 01:16:25 AM,01/01/2012 01:19:12 AM,01/01/2012 01:21:19 AM,01/01/2012 01:24:56 AM,04/25/2016 02:00:51 PM,04/25/2016 02:00:51 PM,Other,01/01/2012 01:25:23 AM,SOUTH VAN NES AV/CESAR CHAVEZ ST,SF,94110,B06,11,5623,3,3,3,true,Fire,1,ENGINE,1,6,9,Mission,"(37.7482121503815, -122.41586279408)",120010104-E09 -111490022,RC3,11049265,Medical Incident,05/29/2011,05/28/2011,05/29/2011 01:26:18 AM,05/29/2011 01:27:48 AM,05/29/2011 01:28:10 AM,05/29/2011 01:29:25 AM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,04/25/2016 02:04:24 PM,Other,05/29/2011 01:29:36 AM,16TH ST/VALENCIA ST,SF,94103,B02,6,5226,E,E,3,true,,1,RESCUE CAPTAIN,3,2,8,Mission,"(37.7649173790256, -122.421886447232)",111490022-RC3 -120300196,AM08,12010010,Medical Incident,01/30/2012,01/30/2012,01/30/2012 02:42:10 PM,01/30/2012 02:44:12 PM,01/30/2012 02:46:46 PM,01/30/2012 02:47:20 PM,01/30/2012 02:54:13 PM,01/30/2012 03:05:53 PM,01/30/2012 03:30:38 PM,Code 2 Transport,01/30/2012 03:59:55 PM,100 Block of EDDY ST,SF,94102,B03,1,1453,2,2,2,false,Non Life-threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",120300196-AM08 -133160027,E15,13107307,Structure Fire,11/12/2013,11/11/2013,11/12/2013 03:57:24 AM,11/12/2013 03:57:24 AM,11/12/2013 03:57:35 AM,11/12/2013 03:59:02 AM,11/12/2013 03:59:04 AM,04/25/2016 01:49:48 PM,04/25/2016 01:49:48 PM,Fire,11/12/2013 04:01:13 AM,OCEAN AV/ASHTON AV,SF,94112,B09,15,8456,3,3,3,true,Alarm,1,ENGINE,1,9,7,Oceanview/Merced/Ingleside,"(37.7252657076417, -122.462212503643)",133160027-E15 -160303945,60,16011983,Medical Incident,01/30/2016,01/30/2016,01/30/2016 10:40:07 PM,01/30/2016 10:41:35 PM,01/30/2016 10:42:16 PM,01/30/2016 10:42:41 PM,01/30/2016 10:45:44 PM,01/30/2016 11:00:18 PM,01/30/2016 11:19:53 PM,Code 2 Transport,01/30/2016 11:48:59 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.779911669335, -122.407474439624)",160303945-60 -130420213,E05,13014346,Alarms,02/11/2013,02/11/2013,02/11/2013 02:38:03 PM,02/11/2013 02:39:19 PM,02/11/2013 02:39:35 PM,02/11/2013 02:41:13 PM,02/11/2013 02:43:15 PM,04/25/2016 01:54:21 PM,04/25/2016 01:54:21 PM,Other,02/11/2013 02:49:34 PM,1600 Block of GEARY BLVD,SF,94115,B04,5,3432,3,3,3,true,Alarm,1,ENGINE,2,4,5,Japantown,"(37.7848985640348, -122.429613639902)",130420213-E05 -160673172,52,16026911,Medical Incident,03/07/2016,03/07/2016,03/07/2016 08:55:25 PM,03/07/2016 08:56:08 PM,03/07/2016 08:56:22 PM,03/07/2016 08:56:52 PM,03/07/2016 09:02:40 PM,03/07/2016 09:20:25 PM,03/07/2016 09:51:46 PM,Code 2 Transport,03/07/2016 10:24:26 PM,600 Block of GEARY ST,San Francisco,94102,B01,3,1462,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,6,Tenderloin,"(37.7865705542086, -122.413973061638)",160673172-52 -112220248,E03,11073381,Medical Incident,08/10/2011,08/10/2011,08/10/2011 04:10:58 PM,08/10/2011 04:11:37 PM,08/10/2011 04:14:04 PM,08/10/2011 04:14:43 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,04/25/2016 02:03:14 PM,Other,08/10/2011 04:18:24 PM,0 Block of UNITED NATIONS PLZ,SF,94102,B02,1,1551,3,3,3,true,,1,ENGINE,2,2,6,Tenderloin,"(37.7798358670927, -122.414296503337)",112220248-E03 -131490078,KM09,13050434,Medical Incident,05/29/2013,05/29/2013,05/29/2013 08:31:13 AM,05/29/2013 08:32:57 AM,05/29/2013 08:33:54 AM,05/29/2013 08:34:58 AM,05/29/2013 08:45:22 AM,05/29/2013 08:53:54 AM,05/29/2013 08:58:23 AM,Code 2 Transport,05/29/2013 09:27:36 AM,EDDY ST/LARKIN ST,SF,94109,B02,3,1643,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7833108888132, -122.417528774391)",131490078-KM09 -103030075,E16,10096710,Medical Incident,10/30/2010,10/29/2010,10/30/2010 04:54:19 AM,10/30/2010 04:54:34 AM,10/30/2010 04:54:47 AM,10/30/2010 04:56:17 AM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,04/25/2016 02:07:51 PM,Other,10/30/2010 04:57:51 AM,900 Block of CHESTNUT ST,SF,94109,B01,28,1613,3,3,3,true,,1,ENGINE,4,1,2,Russian Hill,"(37.8031326741336, -122.418611626628)",103030075-E16 -123130346,B02,12104271,Alarms,11/08/2012,11/08/2012,11/08/2012 07:19:23 PM,11/08/2012 07:21:53 PM,11/08/2012 07:22:22 PM,11/08/2012 07:22:43 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,04/25/2016 01:55:53 PM,Other,11/08/2012 07:26:54 PM,800 Block of ELLIS ST,SF,94109,B02,3,3115,3,3,3,false,Alarm,1,CHIEF,3,2,6,Tenderloin,"(37.7839808800942, -122.420197005525)",123130346-B02 -160502555,KM09,16020169,Medical Incident,02/19/2016,02/19/2016,02/19/2016 04:40:31 PM,02/19/2016 04:41:18 PM,02/19/2016 04:42:57 PM,02/19/2016 04:43:27 PM,02/19/2016 04:50:53 PM,02/19/2016 05:07:45 PM,02/19/2016 05:23:08 PM,Code 2 Transport,02/19/2016 05:57:03 PM,4300 Block of CALIFORNIA ST,San Francisco,94118,B07,31,7125,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,2,Inner Richmond,"(37.7851164846517, -122.464048583692)",160502555-KM09 -122940305,B04,12097616,Structure Fire,10/20/2012,10/20/2012,10/20/2012 07:40:44 PM,10/20/2012 07:41:44 PM,10/20/2012 07:44:17 PM,10/20/2012 07:45:47 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,04/25/2016 01:56:12 PM,Other,10/20/2012 07:53:57 PM,100 Block of TURK ST,SF,94102,B03,1,1456,3,3,3,false,Alarm,1,CHIEF,7,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",122940305-B04 -160102138,KM04,16004088,Medical Incident,01/10/2016,01/10/2016,01/10/2016 03:24:39 PM,01/10/2016 03:28:52 PM,01/10/2016 03:29:07 PM,01/10/2016 03:29:58 PM,01/10/2016 03:36:59 PM,01/10/2016 03:56:14 PM,01/10/2016 04:52:08 PM,Code 2 Transport,01/10/2016 04:58:10 PM,0 Block of GROVE ST,San Francisco,94102,B02,36,1552,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7786480902245, -122.417414963644)",160102138-KM04 -120630368,E01,12020908,Medical Incident,03/03/2012,03/03/2012,03/03/2012 08:40:45 PM,03/03/2012 08:41:23 PM,03/03/2012 08:41:39 PM,03/03/2012 08:41:56 PM,03/03/2012 08:43:35 PM,04/25/2016 01:59:51 PM,04/25/2016 01:59:51 PM,Other,03/03/2012 08:48:54 PM,0 Block of TURK ST,SF,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7833862379382, -122.409853729941)",120630368-E01 -120550330,E15,12018288,Traffic Collision,02/24/2012,02/24/2012,02/24/2012 09:08:44 PM,02/24/2012 09:09:45 PM,02/24/2012 09:10:06 PM,02/24/2012 09:11:05 PM,02/24/2012 09:13:40 PM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 10:36:26 PM,200 Block of GENEVA AVE,SF,94112,B09,26,8261,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7214896351344, -122.448909722363)",120550330-E15 -133540288,KM01,13120345,Medical Incident,12/20/2013,12/20/2013,12/20/2013 03:39:57 PM,12/20/2013 03:40:30 PM,12/20/2013 03:40:46 PM,12/20/2013 03:42:47 PM,12/20/2013 03:53:39 PM,04/25/2016 01:49:09 PM,04/25/2016 01:49:09 PM,Patient Declined Transport,12/20/2013 04:24:55 PM,300 Block of HARRISON ST,SF,94105,B03,35,2123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,Financial District/South Beach,"(37.7870714019354, -122.391567493465)",133540288-KM01 -112160307,D3,11071440,Structure Fire,08/04/2011,08/04/2011,08/04/2011 05:51:21 PM,08/04/2011 05:52:41 PM,08/04/2011 05:53:07 PM,04/25/2016 02:03:20 PM,08/04/2011 05:56:47 PM,04/25/2016 02:03:20 PM,04/25/2016 02:03:20 PM,Other,08/04/2011 05:58:44 PM,1800 Block of FOLSOM ST,SF,94103,B02,7,5216,3,3,3,false,,1,CHIEF,3,2,9,Mission,"(37.7677331022924, -122.415606951318)",112160307-D3 -130900100,KM04,13030043,Medical Incident,03/31/2013,03/31/2013,03/31/2013 08:51:29 AM,03/31/2013 08:52:09 AM,03/31/2013 08:52:25 AM,03/31/2013 08:53:19 AM,03/31/2013 08:55:56 AM,03/31/2013 09:06:49 AM,03/31/2013 09:16:09 AM,Code 2 Transport,03/31/2013 09:44:21 AM,SHOTWELL ST/23RD ST,SF,94110,B06,7,5511,3,3,3,false,Non Life-threatening,1,PRIVATE,2,6,9,Mission,"(37.7540335346403, -122.415320140499)",130900100-KM04 -121080035,T02,12035653,Structure Fire,04/17/2012,04/16/2012,04/17/2012 05:34:25 AM,04/17/2012 05:36:16 AM,04/17/2012 05:36:39 AM,04/17/2012 05:38:02 AM,04/17/2012 05:39:05 AM,04/25/2016 01:59:08 PM,04/25/2016 01:59:08 PM,Other,04/17/2012 06:07:42 AM,800 Block of JACKSON ST,SF,94108,B01,2,1354,3,3,3,false,Fire,1,TRUCK,2,1,3,Chinatown,"(37.7956489966113, -122.409198681465)",121080035-T02 -111660101,E17,11054722,Medical Incident,06/15/2011,06/15/2011,06/15/2011 09:46:42 AM,06/15/2011 09:49:12 AM,06/15/2011 09:49:44 AM,06/15/2011 09:51:39 AM,06/15/2011 09:53:22 AM,04/25/2016 02:04:09 PM,04/25/2016 02:04:09 PM,Other,06/15/2011 10:00:45 AM,1000 Block of FITZGERALD AVE,SF,94124,B10,17,6613,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7197633069078, -122.389347613957)",111660101-E17 -160921079,88,16036379,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:53:43 AM,04/01/2016 09:56:00 AM,04/01/2016 09:56:24 AM,04/01/2016 09:56:49 AM,04/01/2016 10:03:12 AM,04/01/2016 10:19:29 AM,04/01/2016 10:29:13 AM,Code 3 Transport,04/01/2016 10:58:39 AM,1400 Block of HAMPSHIRE ST,San Francisco,94110,B06,9,5616,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7493153346241, -122.406755512994)",160921079-88 -120320083,KM12,12010496,Medical Incident,02/01/2012,02/01/2012,02/01/2012 09:26:39 AM,02/01/2012 09:27:11 AM,02/01/2012 09:27:34 AM,02/01/2012 09:28:06 AM,02/01/2012 09:33:40 AM,02/01/2012 09:55:15 AM,02/01/2012 10:02:47 AM,Code 2 Transport,02/01/2012 10:41:48 AM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",120320083-KM12 -140830114,E02,14027934,Structure Fire,03/24/2014,03/24/2014,03/24/2014 10:42:11 AM,03/24/2014 10:42:11 AM,03/24/2014 10:42:18 AM,03/24/2014 10:42:30 AM,03/24/2014 10:46:25 AM,04/25/2016 01:47:35 PM,04/25/2016 01:47:35 PM,Fire,03/24/2014 10:47:21 AM,STOCKTON ST/MARKET ST,SAN FRANCISCO,94103,B03,1,1322,3,3,3,true,Alarm,1,ENGINE,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",140830114-E02 -110620315,AM12,11020481,Medical Incident,03/03/2011,03/03/2011,03/03/2011 07:20:36 PM,03/03/2011 07:21:38 PM,03/03/2011 07:21:57 PM,03/03/2011 07:22:40 PM,03/03/2011 07:24:57 PM,03/03/2011 07:42:42 PM,03/03/2011 08:26:46 PM,Code 2 Transport,03/03/2011 08:26:47 PM,900 Block of GEARY ST,SF,94109,B04,3,3116,3,3,3,false,,1,PRIVATE,1,4,6,Tenderloin,"(37.7859427265455, -122.418902557609)",110620315-AM12 -111190210,E28,11039275,Other,04/29/2011,04/29/2011,04/29/2011 03:10:25 PM,04/29/2011 03:11:26 PM,04/29/2011 03:11:34 PM,04/29/2011 03:12:46 PM,04/29/2011 03:15:24 PM,04/25/2016 02:04:52 PM,04/25/2016 02:04:52 PM,Other,04/29/2011 03:24:24 PM,BAY ST/HYDE ST,SF,94109,B01,28,1614,3,3,3,true,,1,ENGINE,1,1,2,Russian Hill,"(37.8047903067381, -122.420178127211)",111190210-E28 -160580613,60,16023018,Medical Incident,02/27/2016,02/26/2016,02/27/2016 05:52:42 AM,02/27/2016 05:53:01 AM,02/27/2016 05:53:14 AM,02/27/2016 05:53:27 AM,02/27/2016 05:59:16 AM,02/27/2016 06:26:39 AM,02/27/2016 06:34:25 AM,Code 2 Transport,02/27/2016 07:15:21 AM,300 Block of BRIGHT ST,San Francisco,94132,B09,33,8414,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7170320586442, -122.463600622981)",160580613-60 -160391622,87,16015607,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:26:29 PM,02/08/2016 12:27:40 PM,02/08/2016 12:27:59 PM,02/08/2016 12:28:09 PM,02/08/2016 12:42:56 PM,02/08/2016 01:04:51 PM,02/08/2016 01:17:15 PM,Code 2 Transport,02/08/2016 01:58:28 PM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7643732096664, -122.417478491468)",160391622-87 -110430124,54,11014221,Medical Incident,02/12/2011,02/12/2011,02/12/2011 09:02:09 AM,02/12/2011 09:04:16 AM,02/12/2011 09:04:31 AM,02/12/2011 09:16:25 AM,02/12/2011 09:25:32 AM,02/12/2011 10:04:06 AM,02/12/2011 10:18:23 AM,Code 2 Transport,02/12/2011 09:16:28 AM,1000 Block of FILBERT ST,SF,94133,B01,28,1532,3,3,3,true,,1,MEDIC,2,1,2,Russian Hill,"(37.8003669599542, -122.416935841335)",110430124-54 -120790040,E22,12026120,Medical Incident,03/19/2012,03/18/2012,03/19/2012 05:39:24 AM,03/19/2012 05:41:19 AM,03/19/2012 05:41:37 AM,03/19/2012 05:44:00 AM,03/19/2012 05:51:09 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 06:03:40 AM,1300 Block of 28TH AVE,SF,94122,B08,22,7511,2,2,2,false,Non Life-threatening,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7622093018809, -122.48663607976)",120790040-E22 -140390171,E13,14013172,Alarms,02/08/2014,02/08/2014,02/08/2014 11:59:11 AM,02/08/2014 12:00:04 PM,02/08/2014 12:00:10 PM,02/08/2014 12:00:59 PM,02/08/2014 12:03:28 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/08/2014 12:16:28 PM,700 Block of THE EMBARCADERO,SF,94111,B01,13,915,3,3,3,true,Alarm,1,ENGINE,1,1,3,Financial District/South Beach,"(37.8025675142519, -122.400381980995)",140390171-E13 -110310280,E06,11010237,Medical Incident,01/31/2011,01/31/2011,01/31/2011 04:52:40 PM,01/31/2011 04:54:27 PM,01/31/2011 04:56:22 PM,01/31/2011 04:57:33 PM,01/31/2011 04:58:51 PM,04/25/2016 02:06:19 PM,04/25/2016 02:06:19 PM,Other,01/31/2011 05:12:54 PM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,,1,ENGINE,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",110310280-E06 -160871609,52,16034562,Medical Incident,03/27/2016,03/27/2016,03/27/2016 12:12:35 PM,03/27/2016 12:14:39 PM,03/27/2016 12:15:30 PM,03/27/2016 12:15:41 PM,03/27/2016 12:21:52 PM,03/27/2016 12:36:37 PM,03/27/2016 01:12:50 PM,Code 2 Transport,03/27/2016 01:38:00 PM,300 Block of CLEMENTINA ST,San Francisco,94103,B03,1,2215,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387148047, -122.40232147586)",160871609-52 -160022405,KM08,16000817,Medical Incident,01/02/2016,01/02/2016,01/02/2016 05:05:31 PM,01/02/2016 05:06:01 PM,01/02/2016 05:06:18 PM,01/02/2016 05:06:58 PM,01/02/2016 05:21:50 PM,01/02/2016 05:21:52 PM,01/02/2016 05:32:08 PM,Code 2 Transport,01/02/2016 05:50:29 PM,100 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,Tenderloin,"(37.7830549681708, -122.411577299279)",160022405-KM08 -160482942,67,16019437,Medical Incident,02/17/2016,02/17/2016,02/17/2016 05:21:28 PM,02/17/2016 05:22:43 PM,02/17/2016 05:23:06 PM,02/17/2016 05:23:29 PM,02/17/2016 05:28:46 PM,02/17/2016 05:43:42 PM,02/17/2016 06:14:31 PM,Code 2 Transport,02/17/2016 06:57:20 PM,600 Block of 32ND AVE,San Francisco,94121,B07,14,724,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7768945401189, -122.491958078183)",160482942-67 -122510243,KM11,12083045,Medical Incident,09/07/2012,09/07/2012,09/07/2012 03:38:16 PM,09/07/2012 03:39:49 PM,09/07/2012 03:40:49 PM,09/07/2012 03:41:26 PM,09/07/2012 03:57:44 PM,09/07/2012 04:09:16 PM,09/07/2012 04:15:22 PM,Code 2 Transport,09/07/2012 04:42:32 PM,7TH ST/MARKET ST,SF,94103,B03,1,1455,1,1,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",122510243-KM11 -102260060,66,10071049,Medical Incident,08/14/2010,08/13/2010,08/14/2010 03:50:59 AM,08/14/2010 03:51:36 AM,08/14/2010 03:51:58 AM,08/14/2010 03:52:19 AM,04/25/2016 02:09:05 PM,08/14/2010 04:26:13 AM,08/14/2010 04:31:04 AM,Code 2 Transport,08/14/2010 05:00:43 AM,1200 Block of CONNECTICUT ST,SF,94107,B10,37,2615,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7504662478532, -122.396271587329)",102260060-66 -113380264,AM16,11112080,Medical Incident,12/04/2011,12/04/2011,12/04/2011 04:03:45 PM,12/04/2011 04:04:22 PM,12/04/2011 04:04:54 PM,04/25/2016 02:01:19 PM,12/04/2011 04:16:30 PM,12/04/2011 05:14:45 PM,12/04/2011 05:14:50 PM,Code 2 Transport,12/04/2011 06:17:56 PM,1400 Block of MCALLISTER ST,SF,94115,B05,5,3642,3,3,3,false,,1,PRIVATE,2,5,5,Western Addition,"(37.7781638388054, -122.435885318986)",113380264-AM16 -160761067,73,16030067,Medical Incident,03/16/2016,03/16/2016,03/16/2016 09:44:46 AM,03/16/2016 09:48:44 AM,03/16/2016 10:05:37 AM,03/16/2016 10:05:48 AM,03/16/2016 10:12:54 AM,03/16/2016 10:30:55 AM,03/16/2016 10:43:18 AM,Code 2 Transport,03/16/2016 11:19:49 AM,2400 Block of 16TH ST,San Francisco,94103,B02,29,5241,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7656314935844, -122.410976201723)",160761067-73 -111770216,T03,11058398,Medical Incident,06/26/2011,06/26/2011,06/26/2011 02:14:43 PM,06/26/2011 02:15:56 PM,06/26/2011 02:16:12 PM,06/26/2011 02:17:14 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,04/25/2016 02:03:58 PM,Other,06/26/2011 02:18:04 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,false,,1,TRUCK,3,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",111770216-T03 -122920022,87,12096608,Medical Incident,10/18/2012,10/17/2012,10/18/2012 01:53:33 AM,10/18/2012 01:53:52 AM,10/18/2012 01:54:21 AM,10/18/2012 01:54:31 AM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,04/25/2016 01:56:14 PM,Other,10/18/2012 01:56:27 AM,100 Block of 6TH ST,SF,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7807920802753, -122.408385745499)",122920022-87 -160551700,AM02,16021998,Medical Incident,02/24/2016,02/24/2016,02/24/2016 12:28:53 PM,02/24/2016 12:30:41 PM,02/24/2016 12:30:57 PM,02/24/2016 12:31:32 PM,02/24/2016 12:38:56 PM,02/24/2016 12:46:26 PM,02/24/2016 12:55:22 PM,Code 2 Transport,02/24/2016 01:30:38 PM,100 Block of JOHN F KENNEDY DR,San Francisco,94122,B07,31,7111,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7711332354432, -122.457507583541)",160551700-AM02 -113460337,B01,11114919,Alarms,12/12/2011,12/12/2011,12/12/2011 08:31:54 PM,12/12/2011 08:33:16 PM,12/12/2011 08:33:38 PM,12/12/2011 08:35:02 PM,12/12/2011 08:37:25 PM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 09:21:44 PM,0 Block of MILES ST,SF,94108,B01,2,1356,3,3,3,false,,1,CHIEF,2,1,3,Chinatown,"(37.7923023746985, -122.408839372481)",113460337-B01 -133520243,E40,13119608,Vehicle Fire,12/18/2013,12/18/2013,12/18/2013 01:24:53 PM,12/18/2013 01:27:11 PM,12/18/2013 01:27:32 PM,04/25/2016 01:49:12 PM,12/18/2013 01:28:37 PM,04/25/2016 01:49:12 PM,04/25/2016 01:49:12 PM,Fire,12/18/2013 01:38:43 PM,19TH AV/RIVERA ST,SF,94116,B08,40,7433,3,3,3,false,Fire,1,ENGINE,1,8,4,West of Twin Peaks,"(37.7467820382349, -122.475902020366)",133520243-E40 -103560133,AM06,10114221,Traffic Collision,12/22/2010,12/22/2010,12/22/2010 10:56:07 AM,12/22/2010 10:57:58 AM,12/22/2010 11:02:28 AM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,04/25/2016 02:06:59 PM,Other,04/25/2016 02:06:59 PM,3RD ST/PALOU AV,SF,94124,B10,17,6515,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7340138741487, -122.390967890284)",103560133-AM06 -111560196,E23,11051582,Structure Fire,06/05/2011,06/05/2011,06/05/2011 12:20:07 PM,06/05/2011 12:20:07 PM,06/05/2011 12:20:40 PM,06/05/2011 12:21:57 PM,06/05/2011 12:26:11 PM,04/25/2016 02:04:18 PM,04/25/2016 02:04:18 PM,Fire,06/05/2011 12:27:08 PM,1000 Block of POINT LOBOS AVE,SF,94121,B07,34,7314,3,3,3,true,,1,ENGINE,1,7,1,Outer Richmond,"(37.7784851093699, -122.513648358636)",111560196-E23 -112330121,82,11076889,Medical Incident,08/21/2011,08/21/2011,08/21/2011 10:06:16 AM,08/21/2011 10:06:46 AM,08/21/2011 10:06:56 AM,08/21/2011 10:07:47 AM,08/21/2011 10:11:35 AM,04/25/2016 02:03:04 PM,04/25/2016 02:03:04 PM,No Merit,08/21/2011 10:22:31 AM,STEVENSON ST/7TH ST,SF,94103,B02,1,2316,3,3,3,true,,1,MEDIC,2,2,6,South of Market,"(37.7800058680664, -122.411933410089)",112330121-82 -121550063,E43,12051216,Medical Incident,06/03/2012,06/02/2012,06/03/2012 03:50:12 AM,06/03/2012 03:50:13 AM,06/03/2012 03:50:13 AM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,04/25/2016 01:58:23 PM,Other,06/03/2012 04:08:18 AM,900 Block of NAPLES ST,SF,94112,B09,43,6136,2,2,2,true,Non Life-threatening,1,ENGINE,2,9,11,Excelsior,"(37.714767275004, -122.435700868993)",121550063-E43 -160720917,79,16028523,Medical Incident,03/12/2016,03/12/2016,03/12/2016 09:02:20 AM,03/12/2016 09:03:17 AM,03/12/2016 09:03:27 AM,03/12/2016 09:03:44 AM,03/12/2016 09:10:12 AM,03/12/2016 09:32:24 AM,03/12/2016 09:46:53 AM,Code 2 Transport,03/12/2016 10:29:05 AM,2400 Block of SACRAMENTO ST,San Francisco,94115,B04,38,3544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Pacific Heights,"(37.7898100005704, -122.433800051784)",160720917-79 -112720043,B04,11089834,Structure Fire,09/29/2011,09/28/2011,09/29/2011 05:31:42 AM,09/29/2011 05:33:38 AM,09/29/2011 05:33:48 AM,09/29/2011 05:39:53 AM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,04/25/2016 02:02:25 PM,Other,09/29/2011 05:40:59 AM,VAN NESS AV/GOLDEN GATE AV,SF,94102,B02,36,3164,3,3,3,false,,1,CHIEF,3,2,6,Tenderloin,"(37.7810308423516, -122.420439517991)",112720043-B04 -130570202,E10,13019185,Alarms,02/26/2013,02/26/2013,02/26/2013 02:19:14 PM,02/26/2013 02:20:16 PM,02/26/2013 02:20:26 PM,02/26/2013 02:21:40 PM,02/26/2013 02:23:11 PM,04/25/2016 01:54:06 PM,04/25/2016 01:54:06 PM,Other,02/26/2013 02:49:33 PM,2600 Block of GEARY BLVD,SF,94115,B05,10,4365,3,3,3,true,Alarm,1,ENGINE,2,5,2,Lone Mountain/USF,"(37.7822483679158, -122.446592481498)",130570202-E10 -140620341,E17,14021084,Medical Incident,03/03/2014,03/03/2014,03/03/2014 08:12:37 PM,03/03/2014 08:14:07 PM,03/03/2014 08:14:57 PM,03/03/2014 08:16:35 PM,03/03/2014 08:20:06 PM,04/25/2016 01:47:55 PM,04/25/2016 01:47:55 PM,Code 2 Transport,03/03/2014 08:50:25 PM,3RD ST/OAKDALE AV,SF,94124,B10,17,6515,2,2,2,false,Non Life-threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7347973599626, -122.390693773715)",140620341-E17 -160202851,KM08,16008092,Medical Incident,01/20/2016,01/20/2016,01/20/2016 05:13:11 PM,01/20/2016 05:13:11 PM,01/20/2016 05:13:44 PM,01/20/2016 05:15:12 PM,01/20/2016 05:19:57 PM,01/20/2016 05:42:49 PM,01/20/2016 05:59:41 PM,Code 2 Transport,01/20/2016 06:15:14 PM,100 Block of PHELAN AVE,San Francisco,94112,B09,15,8233,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,7,West of Twin Peaks,"(37.7256924480483, -122.452427961322)",160202851-KM08 -122910052,E36,12096239,Structure Fire,10/17/2012,10/16/2012,10/17/2012 06:14:57 AM,10/17/2012 06:16:04 AM,10/17/2012 06:16:35 AM,10/17/2012 06:18:17 AM,10/17/2012 06:20:17 AM,04/25/2016 01:56:16 PM,04/25/2016 01:56:16 PM,Other,10/17/2012 06:57:07 AM,100 Block of JULIAN AVE,SF,94103,B02,6,5226,3,3,3,true,Alarm,1,ENGINE,5,2,9,Mission,"(37.7657922226195, -122.420909958943)",122910052-E36 -131750066,E03,13059284,Medical Incident,06/24/2013,06/23/2013,06/24/2013 07:44:39 AM,06/24/2013 07:45:09 AM,06/24/2013 07:45:29 AM,06/24/2013 07:46:47 AM,06/24/2013 07:49:03 AM,04/25/2016 01:52:08 PM,04/25/2016 01:52:08 PM,Other,06/24/2013 08:27:39 AM,ELLIS ST/LARKIN ST,SF,94109,B02,3,1555,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7842357377781, -122.417706750783)",131750066-E03 -113240239,E01,11107667,Medical Incident,11/20/2011,11/20/2011,11/20/2011 04:31:52 PM,11/20/2011 04:34:47 PM,11/20/2011 04:35:18 PM,11/20/2011 04:36:07 PM,11/20/2011 04:41:56 PM,04/25/2016 02:01:33 PM,04/25/2016 02:01:33 PM,Other,11/20/2011 04:47:02 PM,100 Block of 6TH ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",113240239-E01 -123210247,E10,12106736,Medical Incident,11/16/2012,11/16/2012,11/16/2012 04:01:49 PM,11/16/2012 04:02:54 PM,11/16/2012 04:03:15 PM,11/16/2012 04:04:24 PM,11/16/2012 04:07:13 PM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,Other,11/16/2012 04:20:26 PM,2800 Block of WASHINGTON ST,SF,94115,B04,10,4162,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Pacific Heights,"(37.7909180945745, -122.440158054843)",123210247-E10 -131830069,85,13062271,Medical Incident,07/02/2013,07/02/2013,07/02/2013 08:16:44 AM,07/02/2013 08:18:48 AM,07/02/2013 08:20:40 AM,07/02/2013 08:20:47 AM,07/02/2013 08:24:47 AM,07/02/2013 08:51:48 AM,07/02/2013 08:59:17 AM,Code 2 Transport,07/02/2013 09:26:38 AM,700 Block of EDDY ST,SF,94102,B02,3,3163,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.782943523582, -122.419988441304)",131830069-85 -120970150,E08,12032090,Medical Incident,04/06/2012,04/06/2012,04/06/2012 11:39:40 AM,04/06/2012 11:40:15 AM,04/06/2012 11:40:28 AM,04/06/2012 11:40:49 AM,04/06/2012 11:43:20 AM,04/25/2016 01:59:18 PM,04/25/2016 01:59:18 PM,Other,04/06/2012 11:51:48 AM,400 Block of TOWNSEND ST,SF,94107,B03,8,2236,3,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Mission Bay,"(37.7744917897257, -122.398368544424)",120970150-E08 -160830346,93,16032832,Medical Incident,03/23/2016,03/22/2016,03/23/2016 04:14:18 AM,03/23/2016 04:14:18 AM,03/23/2016 04:14:59 AM,03/23/2016 04:16:09 AM,03/23/2016 04:32:08 AM,03/23/2016 04:50:45 AM,03/23/2016 05:00:07 AM,Code 2 Transport,03/23/2016 05:59:55 AM,2200 Block of 17TH ST,San Francisco,94103,B02,29,2421,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,10,Mission,"(37.7646315810414, -122.405951536611)",160830346-93 -113410198,E32,11113052,Medical Incident,12/07/2011,12/07/2011,12/07/2011 12:18:07 PM,12/07/2011 12:18:41 PM,12/07/2011 12:20:07 PM,12/07/2011 12:21:00 PM,12/07/2011 12:31:08 PM,04/25/2016 02:01:16 PM,04/25/2016 02:01:16 PM,Other,12/07/2011 12:45:02 PM,900 Block of ELLSWORTH ST,SF,94110,B06,32,5645,3,3,3,true,,1,ENGINE,2,6,9,Bernal Heights,"(37.7330187798698, -122.416499862337)",113410198-E32 -160902244,55,16035753,Medical Incident,03/30/2016,03/30/2016,03/30/2016 02:35:09 PM,03/30/2016 02:35:43 PM,03/30/2016 02:35:56 PM,03/30/2016 02:36:05 PM,03/30/2016 02:40:29 PM,03/30/2016 03:02:53 PM,03/30/2016 03:22:16 PM,Code 2 Transport,03/30/2016 03:51:17 PM,1100 Block of BURROWS ST,San Francisco,94134,B09,42,6345,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,9,Portola,"(37.7263897099962, -122.41477811799)",160902244-55 -122120253,KM01,12070423,Medical Incident,07/30/2012,07/30/2012,07/30/2012 03:47:26 PM,07/30/2012 03:48:58 PM,07/30/2012 03:49:47 PM,07/30/2012 03:49:55 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,04/25/2016 01:57:28 PM,Other,07/30/2012 03:59:27 PM,1000 Block of GREAT HWY,SF,94122,B07,34,7316,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Golden Gate Park,"(37.7672442209616, -122.510225749052)",122120253-KM01 -111180168,57,11038910,Medical Incident,04/28/2011,04/28/2011,04/28/2011 12:43:19 PM,04/28/2011 12:46:08 PM,04/28/2011 12:46:23 PM,04/28/2011 12:47:07 PM,04/28/2011 01:01:50 PM,04/28/2011 01:06:47 PM,04/28/2011 01:27:46 PM,Code 2 Transport,04/28/2011 01:54:36 PM,0 Block of HUDSON AVE,SF,94124,B10,17,6626,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7324208265708, -122.379091692307)",111180168-57 -160043114,55,16001735,Traffic Collision,01/04/2016,01/04/2016,01/04/2016 07:21:43 PM,01/04/2016 07:21:43 PM,01/04/2016 07:21:59 PM,01/04/2016 07:22:45 PM,01/04/2016 07:29:18 PM,01/04/2016 07:39:11 PM,01/04/2016 07:52:33 PM,Code 2 Transport,01/04/2016 08:24:27 PM,GRAFTON AV/JULES AV,San Francisco,94112,B09,15,8464,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7200179940664, -122.46123396929)",160043114-55 -103150238,68,10101042,Medical Incident,11/11/2010,11/11/2010,11/11/2010 04:29:47 PM,11/11/2010 04:30:35 PM,11/11/2010 04:31:01 PM,11/11/2010 04:31:26 PM,11/11/2010 04:37:38 PM,11/11/2010 04:56:00 PM,11/11/2010 05:15:52 PM,Code 2 Transport,11/11/2010 05:34:08 PM,200 Block of CAMERON WAY,SF,94124,B10,17,6613,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.720440433346, -122.388366313776)",103150238-68 -120780343,72,12026010,Medical Incident,03/18/2012,03/18/2012,03/18/2012 07:19:06 PM,03/18/2012 07:19:20 PM,03/18/2012 07:20:07 PM,03/18/2012 07:20:19 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,04/25/2016 01:59:36 PM,400 Block of CONGO ST,SF,94131,B09,26,8216,E,1,2,true,Non Life-threatening,1,MEDIC,2,9,8,West of Twin Peaks,"(37.732729716582, -122.441960992477)",120780343-72 -160562645,67,16022463,Medical Incident,02/25/2016,02/25/2016,02/25/2016 04:09:06 PM,02/25/2016 04:11:35 PM,02/25/2016 04:13:30 PM,02/25/2016 04:13:39 PM,02/25/2016 04:22:09 PM,02/25/2016 04:48:20 PM,02/25/2016 05:00:22 PM,Code 2 Transport,02/25/2016 05:26:00 PM,200 Block of EDDY ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7840910361755, -122.411784369455)",160562645-67 -121750170,E03,12058093,Medical Incident,06/23/2012,06/23/2012,06/23/2012 12:13:16 PM,06/23/2012 12:14:21 PM,06/23/2012 12:14:43 PM,06/23/2012 12:16:41 PM,06/23/2012 12:17:12 PM,04/25/2016 01:58:04 PM,04/25/2016 01:58:04 PM,Other,06/23/2012 12:19:43 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",121750170-E03 -130680310,T01,13022785,Medical Incident,03/09/2013,03/09/2013,03/09/2013 06:02:09 PM,03/09/2013 06:02:09 PM,03/09/2013 06:02:51 PM,03/09/2013 06:04:14 PM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,04/25/2016 01:53:55 PM,Other,03/09/2013 06:17:11 PM,9TH ST/MISSION ST,SF,94103,B02,36,2336,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,South of Market,"(37.7762305177878, -122.414711004673)",130680310-T01 -113040344,E05,11101050,Medical Incident,10/31/2011,10/31/2011,10/31/2011 07:52:30 PM,10/31/2011 07:53:27 PM,10/31/2011 07:53:57 PM,10/31/2011 07:55:28 PM,10/31/2011 07:59:45 PM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,10/31/2011 08:11:54 PM,1500 Block of EDDY ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,1,5,5,Western Addition,"(37.7813778205986, -122.433162045522)",113040344-E05 -122170258,E36,12072094,Medical Incident,08/04/2012,08/04/2012,08/04/2012 07:35:13 PM,08/04/2012 07:38:02 PM,08/04/2012 07:38:27 PM,08/04/2012 07:40:18 PM,08/04/2012 07:42:09 PM,04/25/2016 01:57:23 PM,04/25/2016 01:57:23 PM,Other,08/04/2012 07:48:49 PM,1600 Block of MARKET ST,SF,94102,B02,36,3212,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Hayes Valley,"(37.773955543025, -122.420958448413)",122170258-E36 -160854097,71,16034003,Medical Incident,03/25/2016,03/25/2016,03/25/2016 10:47:04 PM,03/25/2016 10:48:17 PM,03/25/2016 10:53:28 PM,03/25/2016 10:53:33 PM,03/25/2016 11:04:44 PM,03/25/2016 11:06:45 PM,03/25/2016 11:33:34 PM,Code 2 Transport,03/25/2016 11:58:37 PM,DIVISADERO ST/MCALLISTER ST,San Francisco,94115,B05,21,4151,2,2,2,true,Non Life-threatening,1,MEDIC,2,5,5,Western Addition,"(37.777794188731, -122.438365500073)",160854097-71 -112860473,84,11094983,Medical Incident,10/13/2011,10/13/2011,10/13/2011 11:20:27 PM,10/13/2011 11:21:27 PM,10/13/2011 11:21:52 PM,10/13/2011 11:22:08 PM,10/13/2011 11:26:52 PM,10/13/2011 11:55:57 PM,10/14/2011 12:14:16 AM,Code 2 Transport,10/14/2011 12:41:03 AM,1000 Block of SOUTH VAN NESS AVE,SF,94110,B06,7,5455,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7563633001161, -122.416712100806)",112860473-84 -122470219,E05,12081751,Medical Incident,09/03/2012,09/03/2012,09/03/2012 06:05:22 PM,09/03/2012 06:06:07 PM,09/03/2012 06:06:19 PM,09/03/2012 06:07:13 PM,09/03/2012 06:08:24 PM,04/25/2016 01:56:56 PM,04/25/2016 01:56:56 PM,Other,09/03/2012 06:16:01 PM,1100 Block of FILLMORE ST,SF,94115,B05,5,3535,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7800214949422, -122.432114423941)",122470219-E05 -111790304,E43,11059216,Medical Incident,06/28/2011,06/28/2011,06/28/2011 07:37:45 PM,06/28/2011 07:38:09 PM,06/28/2011 07:38:23 PM,06/28/2011 07:39:28 PM,06/28/2011 07:41:38 PM,04/25/2016 02:03:55 PM,04/25/2016 02:03:55 PM,Other,06/28/2011 07:44:42 PM,200 Block of PARQUE DR,SF,94134,B09,43,6245,E,E,3,false,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7099618824886, -122.422461821952)",111790304-E43 -160622470,AM16,16024752,Medical Incident,03/02/2016,03/02/2016,03/02/2016 03:17:04 PM,03/02/2016 03:20:05 PM,03/02/2016 03:20:18 PM,03/02/2016 03:20:41 PM,03/02/2016 03:32:10 PM,03/02/2016 03:42:06 PM,03/02/2016 03:51:46 PM,Code 2 Transport,03/02/2016 04:07:56 PM,1000 Block of POTRERO AVE,San Francisco,94110,B10,37,2552,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,10,10,Potrero Hill,"(37.7565080013216, -122.40654101432)",160622470-AM16 -121930208,KM14,12064266,Medical Incident,07/11/2012,07/11/2012,07/11/2012 01:48:38 PM,07/11/2012 01:49:20 PM,07/11/2012 01:51:46 PM,07/11/2012 01:52:19 PM,07/11/2012 01:59:00 PM,07/11/2012 02:15:30 PM,07/11/2012 02:25:26 PM,Code 3 Transport,07/11/2012 03:03:02 PM,3500 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Bernal Heights,"(37.7479996809997, -122.420821864913)",121930208-KM14 -132370072,E36,13079857,Medical Incident,08/25/2013,08/24/2013,08/25/2013 05:17:30 AM,08/25/2013 05:18:32 AM,08/25/2013 05:19:21 AM,08/25/2013 05:22:17 AM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,04/25/2016 01:51:08 PM,Other,08/25/2013 05:22:38 AM,100 Block of FELL ST,SF,94102,B02,36,3213,2,2,2,false,Potentially Life-Threatening,1,ENGINE,2,2,5,Hayes Valley,"(37.7762095925877, -122.420316347942)",132370072-E36 -132070227,86,13070115,Medical Incident,07/26/2013,07/26/2013,07/26/2013 03:23:29 PM,07/26/2013 03:27:01 PM,07/26/2013 03:29:53 PM,04/25/2016 01:51:37 PM,07/26/2013 03:31:24 PM,04/25/2016 01:51:37 PM,04/25/2016 01:51:37 PM,Medical Examiner,07/26/2013 04:30:54 PM,400 Block of VALENCIA ST,SF,94103,B02,6,5226,E,E,3,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7661343875141, -122.421935077177)",132070227-86 -160130061,79,16005005,Medical Incident,01/13/2016,01/12/2016,01/13/2016 12:32:14 AM,01/13/2016 12:33:28 AM,01/13/2016 12:33:35 AM,01/13/2016 12:34:04 AM,01/13/2016 12:35:36 AM,01/13/2016 12:45:14 AM,01/13/2016 12:53:23 AM,Code 2 Transport,01/13/2016 01:17:13 AM,18TH ST/GUERRERO ST,San Francisco,94110,B02,7,5422,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Mission,"(37.7615656740721, -122.42380067092)",160130061-79 -103000223,E44,10095800,Other,10/27/2010,10/27/2010,10/27/2010 03:20:21 PM,10/27/2010 03:20:21 PM,10/27/2010 03:20:21 PM,04/25/2016 02:07:54 PM,10/27/2010 03:25:32 PM,04/25/2016 02:07:54 PM,04/25/2016 02:07:54 PM,Other,10/27/2010 10:43:08 PM,800 Block of 3RD ST,SF,94107,B03,8,2150,3,3,3,true,,1,ENGINE,1,3,6,Mission Bay,"(37.7777952144617, -122.391523076807)",103000223-E44 -113030357,E36,11100702,Medical Incident,10/30/2011,10/30/2011,10/30/2011 06:53:31 PM,10/30/2011 06:54:22 PM,10/30/2011 06:54:34 PM,10/30/2011 06:55:50 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Other,10/30/2011 07:05:34 PM,MARKET ST/VAN NESS AV,SF,94103,B02,36,3211,3,3,3,true,,1,ENGINE,2,2,6,Mission,"(37.7751470741622, -122.419255607214)",113030357-E36 -111530143,T12,11050558,Medical Incident,06/02/2011,06/02/2011,06/02/2011 12:13:53 PM,06/02/2011 12:16:10 PM,06/02/2011 12:17:44 PM,06/02/2011 12:18:31 PM,06/02/2011 12:20:03 PM,04/25/2016 02:04:20 PM,04/25/2016 02:04:20 PM,Other,06/02/2011 12:33:59 PM,400 Block of PARNASSUS AVE,SF,94122,B05,12,5155,3,3,3,false,,1,TRUCK,1,5,5,Inner Sunset,"(37.7634200573276, -122.458252507171)",111530143-T12 -133510171,E08,13119176,Medical Incident,12/17/2013,12/17/2013,12/17/2013 11:22:41 AM,12/17/2013 11:24:23 AM,12/17/2013 11:25:03 AM,12/17/2013 11:26:15 AM,12/17/2013 11:28:44 AM,04/25/2016 01:49:13 PM,04/25/2016 01:49:13 PM,Other,12/17/2013 11:39:32 AM,800 Block of 22ND ST,SF,94107,B03,8,2155,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7577999936324, -122.38972393411)",133510171-E08 -111050223,E03,11034801,Medical Incident,04/15/2011,04/15/2011,04/15/2011 03:39:50 PM,04/15/2011 03:40:37 PM,04/15/2011 03:40:47 PM,04/15/2011 03:42:04 PM,04/15/2011 03:44:19 PM,04/25/2016 02:05:05 PM,04/25/2016 02:05:05 PM,Other,04/15/2011 03:52:52 PM,500 Block of LEAVENWORTH ST,SF,94102,B04,3,1544,3,3,3,true,,1,ENGINE,1,1,6,Tenderloin,"(37.7860598457137, -122.414643592857)",111050223-E03 -122900097,E03,12095901,Medical Incident,10/16/2012,10/16/2012,10/16/2012 08:30:30 AM,10/16/2012 08:33:17 AM,10/16/2012 08:33:38 AM,10/16/2012 08:36:47 AM,10/16/2012 08:39:15 AM,04/25/2016 01:56:17 PM,04/25/2016 01:56:17 PM,Other,10/16/2012 08:50:11 AM,300 Block of EDDY ST,SF,94102,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7838385180026, -122.41377551206)",122900097-E03 -160512605,KM04,16020551,Traffic Collision,02/20/2016,02/20/2016,02/20/2016 06:18:56 PM,02/20/2016 06:19:14 PM,02/20/2016 06:20:04 PM,02/20/2016 06:20:36 PM,02/20/2016 06:24:58 PM,02/20/2016 06:32:58 PM,02/20/2016 06:40:38 PM,Code 3 Transport,02/20/2016 07:30:16 PM,MISSION ST/30TH ST,San Francisco,94110,B06,32,5625,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,9,Bernal Heights,"(37.7423753990809, -122.421968761697)",160512605-KM04 -130440331,CO2,13015039,Explosion,02/13/2013,02/13/2013,02/13/2013 06:36:24 PM,02/13/2013 06:37:05 PM,02/13/2013 06:44:28 PM,02/13/2013 06:45:25 PM,02/13/2013 06:51:14 PM,04/25/2016 01:54:19 PM,04/25/2016 01:54:19 PM,Other,02/13/2013 07:37:59 PM,SPEAR ST/MISSION ST,SF,94105,B03,35,2111,3,3,3,false,Fire,1,SUPPORT,5,3,6,Financial District/South Beach,"(37.7925372164019, -122.394059624933)",130440331-CO2 -160691388,53,16027442,Medical Incident,03/09/2016,03/09/2016,03/09/2016 11:22:41 AM,03/09/2016 11:23:14 AM,03/09/2016 11:24:47 AM,03/09/2016 11:25:13 AM,03/09/2016 11:31:23 AM,03/09/2016 11:57:59 AM,03/09/2016 12:07:44 PM,Code 2 Transport,03/09/2016 01:04:19 PM,400 Block of FILLMORE ST,San Francisco,94117,B05,6,3531,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.773514924854, -122.430658639831)",160691388-53 -140090204,D2,14003151,Structure Fire,01/09/2014,01/09/2014,01/09/2014 12:55:51 PM,01/09/2014 12:56:22 PM,01/09/2014 12:56:52 PM,01/09/2014 12:59:20 PM,01/09/2014 01:09:39 PM,04/25/2016 01:48:48 PM,04/25/2016 01:48:48 PM,Other,01/09/2014 02:16:44 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,,3,3,false,Alarm,1,CHIEF,9,2,6,Mission,"(37.7740948566882, -122.420001436964)",140090204-D2 -160391711,62,16015615,Medical Incident,02/08/2016,02/08/2016,02/08/2016 12:50:43 PM,02/08/2016 12:51:06 PM,02/08/2016 12:51:20 PM,02/08/2016 12:51:48 PM,02/08/2016 12:55:25 PM,02/08/2016 01:14:17 PM,02/08/2016 01:20:18 PM,Code 3 Transport,02/08/2016 02:28:33 PM,1100 Block of PAGE ST,San Francisco,94117,B05,21,4251,2,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Haight Ashbury,"(37.7718305398142, -122.43971161435)",160391711-62 -120550370,E17,12018327,Medical Incident,02/24/2012,02/24/2012,02/24/2012 11:25:42 PM,02/24/2012 11:26:06 PM,02/24/2012 11:26:36 PM,02/24/2012 11:27:55 PM,02/24/2012 11:31:26 PM,04/25/2016 01:59:59 PM,04/25/2016 01:59:59 PM,Other,02/24/2012 11:52:30 PM,KIRKWOOD AV/EARL ST,SF,94124,B10,17,6713,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7286385385109, -122.373157916576)",120550370-E17 -121430190,94,12047541,Structure Fire,05/22/2012,05/22/2012,05/22/2012 01:06:16 PM,05/22/2012 01:06:39 PM,05/22/2012 01:07:41 PM,05/22/2012 01:09:58 PM,05/22/2012 01:20:37 PM,04/25/2016 01:58:34 PM,04/25/2016 01:58:34 PM,Other,05/22/2012 03:20:07 PM,2300 Block of 3RD ST,SF,94107,B10,25,2533,3,3,3,true,Fire,2,MEDIC,10,10,10,Potrero Hill,"(37.7592069260893, -122.388577089603)",121430190-94 -140610261,E01,14020711,Medical Incident,03/02/2014,03/02/2014,03/02/2014 05:54:36 PM,03/02/2014 05:55:55 PM,03/02/2014 05:59:00 PM,03/02/2014 05:59:00 PM,03/02/2014 06:03:07 PM,04/25/2016 01:47:56 PM,04/25/2016 01:47:56 PM,No Merit,03/02/2014 06:07:02 PM,900 Block of MARKET ST,SF,94103,B03,1,2248,2,2,2,false,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7826911213472, -122.409536662692)",140610261-E01 -122310225,E48,12076641,Medical Incident,08/18/2012,08/18/2012,08/18/2012 05:06:00 PM,08/18/2012 05:06:23 PM,08/18/2012 05:06:54 PM,08/18/2012 05:08:31 PM,08/18/2012 05:11:04 PM,04/25/2016 01:57:10 PM,04/25/2016 01:57:10 PM,Other,08/18/2012 05:32:36 PM,1200 Block of MARINER DR,TI,94130,B03,48,2931,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,None,6,Treasure Island,"(37.8290324578504, -122.374357960888)",122310225-E48 -160101648,89,16004045,Medical Incident,01/10/2016,01/10/2016,01/10/2016 01:09:53 PM,01/10/2016 01:16:01 PM,01/10/2016 01:16:59 PM,01/10/2016 01:19:38 PM,01/10/2016 01:26:32 PM,01/10/2016 01:36:53 PM,01/10/2016 02:05:19 PM,Code 2 Transport,01/10/2016 02:51:55 PM,3200 Block of 25TH ST,San Francisco,94110,B06,11,5534,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7507333784902, -122.415819362041)",160101648-89 -160592349,57,16023597,Medical Incident,02/28/2016,02/28/2016,02/28/2016 05:02:16 PM,02/28/2016 05:02:53 PM,02/28/2016 05:03:36 PM,02/28/2016 05:03:49 PM,02/28/2016 05:05:00 PM,02/28/2016 05:26:02 PM,02/28/2016 05:32:38 PM,Code 2 Transport,02/28/2016 06:16:43 PM,100 Block of JONES ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7825474000421, -122.412247935495)",160592349-57 -132490407,E03,13084223,Alarms,09/06/2013,09/06/2013,09/06/2013 11:29:12 PM,09/06/2013 11:31:27 PM,09/06/2013 11:32:03 PM,09/06/2013 11:32:53 PM,09/06/2013 11:39:38 PM,04/25/2016 01:50:55 PM,04/25/2016 01:50:55 PM,Other,09/06/2013 11:46:25 PM,500 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,true,Alarm,1,ENGINE,2,4,6,Tenderloin,"(37.7860096412795, -122.416458282406)",132490407-E03 -140230299,84,14007961,Medical Incident,01/23/2014,01/23/2014,01/23/2014 08:04:37 PM,01/23/2014 08:05:26 PM,01/23/2014 08:05:43 PM,01/23/2014 08:05:53 PM,01/23/2014 08:11:04 PM,01/23/2014 08:30:40 PM,01/23/2014 08:41:37 PM,Code 3 Transport,01/23/2014 09:04:46 PM,300 Block of FULTON ST,SF,94102,B02,36,3264,,3,3,false,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7787978872845, -122.422520702169)",140230299-84 -131660147,RC1,13056356,Structure Fire,06/15/2013,06/15/2013,06/15/2013 12:03:27 PM,06/15/2013 12:03:30 PM,06/15/2013 12:11:12 PM,06/15/2013 12:11:17 PM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,04/25/2016 01:52:17 PM,Other,06/15/2013 12:17:33 PM,2800 Block of LAGUNA ST,SF,94123,B04,16,3354,3,3,3,true,Fire,1,RESCUE CAPTAIN,14,4,2,Marina,"(37.7972584259781, -122.430396417051)",131660147-RC1 -130480110,55,13016324,Medical Incident,02/17/2013,02/17/2013,02/17/2013 08:30:26 AM,02/17/2013 08:33:47 AM,02/17/2013 08:33:59 AM,02/17/2013 08:34:21 AM,02/17/2013 08:44:01 AM,02/17/2013 08:50:36 AM,02/17/2013 09:15:29 AM,Code 2 Transport,02/17/2013 09:45:15 AM,100 Block of THRIFT ST,SF,94112,B09,33,8465,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7174111105122, -122.45758260608)",130480110-55 -123590029,T10,12120045,Alarms,12/24/2012,12/23/2012,12/24/2012 02:22:54 AM,12/24/2012 02:22:54 AM,12/24/2012 02:23:13 AM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,04/25/2016 01:55:09 PM,Other,04/25/2016 01:55:09 PM,45TH AV/GEARY BL,SF,94121,B07,34,7274,3,3,3,false,Alarm,1,TRUCK,3,7,1,Outer Richmond,"(37.7791109530291, -122.506164795541)",123590029-T10 -120680376,77,12022743,Medical Incident,03/08/2012,03/08/2012,03/08/2012 11:40:09 PM,03/08/2012 11:42:59 PM,03/08/2012 11:44:31 PM,03/08/2012 11:44:48 PM,03/08/2012 11:56:43 PM,04/25/2016 01:59:46 PM,04/25/2016 01:59:46 PM,Against Medical Advice,03/09/2012 12:23:47 AM,1200 Block of 17TH ST,SF,94107,B03,29,2431,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,10,Potrero Hill,"(37.7651047966858, -122.396283594618)",120680376-77 -160840535,88,16033258,Medical Incident,03/24/2016,03/23/2016,03/24/2016 06:58:24 AM,03/24/2016 06:59:25 AM,03/24/2016 06:59:33 AM,03/24/2016 06:59:39 AM,03/24/2016 07:04:30 AM,03/24/2016 07:21:04 AM,03/24/2016 07:29:02 AM,Code 2 Transport,03/24/2016 08:11:51 AM,700 Block of PACIFIC AVE,San Francisco,94133,B01,2,1332,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7968082637513, -122.408035995184)",160840535-88 -103080104,E37,10098626,Medical Incident,11/04/2010,11/04/2010,11/04/2010 09:13:58 AM,11/04/2010 09:14:27 AM,11/04/2010 09:14:53 AM,11/04/2010 09:15:11 AM,11/04/2010 09:17:20 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 09:27:05 AM,500 Block of CONNECTICUT ST,SF,94107,B10,37,2566,3,3,3,false,,1,ENGINE,1,10,10,Potrero Hill,"(37.7586882172106, -122.397195060892)",103080104-E37 -102420252,E01,10076376,Medical Incident,08/30/2010,08/30/2010,08/30/2010 04:08:52 PM,08/30/2010 04:09:06 PM,08/30/2010 04:09:32 PM,08/30/2010 04:11:08 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,04/25/2016 02:08:49 PM,Other,08/30/2010 04:21:11 PM,MARKET ST/7TH ST,SF,94103,B03,1,1455,3,3,3,true,,1,ENGINE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",102420252-E01 -122530299,T03,12083757,Structure Fire,09/09/2012,09/09/2012,09/09/2012 07:15:50 PM,09/09/2012 07:16:48 PM,09/09/2012 07:17:05 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,04/25/2016 01:56:51 PM,Other,09/09/2012 07:23:51 PM,1600 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,Fire,1,TRUCK,10,4,5,Japantown,"(37.78676442656, -122.427490271072)",122530299-T03 -121960333,E41,12065322,Medical Incident,07/14/2012,07/14/2012,07/14/2012 09:13:34 PM,07/14/2012 09:15:01 PM,07/14/2012 09:15:42 PM,07/14/2012 09:16:28 PM,07/14/2012 09:17:56 PM,04/25/2016 01:57:43 PM,04/25/2016 01:57:43 PM,Other,07/14/2012 09:21:56 PM,900 Block of BUSH ST,SF,94109,B01,41,1446,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,Nob Hill,"(37.7896888465146, -122.412913104115)",121960333-E41 -110020156,T13,11000642,Alarms,01/02/2011,01/02/2011,01/02/2011 12:07:37 PM,01/02/2011 12:08:41 PM,01/02/2011 12:08:53 PM,01/02/2011 12:10:41 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,04/25/2016 02:06:48 PM,Other,01/02/2011 12:19:15 PM,700 Block of KEARNY ST,SF,94111,B01,13,1245,3,3,3,false,,1,TRUCK,3,1,3,Chinatown,"(37.7951006528052, -122.404847847867)",110020156-T13 -132390341,T12,13080756,Structure Fire,08/27/2013,08/27/2013,08/27/2013 08:10:51 PM,08/27/2013 08:10:52 PM,08/27/2013 08:11:37 PM,08/27/2013 08:12:16 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,04/25/2016 01:51:05 PM,No Merit,08/27/2013 08:16:14 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,3,3,false,Alarm,1,TRUCK,2,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",132390341-T12 -110770176,T12,11025332,Administrative,03/18/2011,03/18/2011,03/18/2011 11:51:16 AM,03/18/2011 11:51:35 AM,03/18/2011 11:51:52 AM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,04/25/2016 02:05:34 PM,Other,03/18/2011 11:52:21 AM,1100 Block of STANYAN ST,SF,94117,B05,12,5261,3,3,3,false,,1,TRUCK,1,5,5,Inner Sunset,"(37.763247335315, -122.4523847829)",110770176-T12 -160282984,79,16011188,Medical Incident,01/28/2016,01/28/2016,01/28/2016 05:39:00 PM,01/28/2016 05:40:40 PM,01/28/2016 05:40:56 PM,01/28/2016 05:41:06 PM,01/28/2016 05:49:56 PM,01/28/2016 06:14:47 PM,01/28/2016 06:45:02 PM,Code 2 Transport,01/28/2016 07:18:54 PM,0 Block of ESSEX ST,San Francisco,94105,B03,35,2136,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7860048266227, -122.39507725881)",160282984-79 -120070054,85,12002309,Medical Incident,01/07/2012,01/06/2012,01/07/2012 03:43:30 AM,01/07/2012 03:44:22 AM,01/07/2012 03:44:48 AM,01/07/2012 03:46:53 AM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,04/25/2016 02:00:45 PM,Other,01/07/2012 03:48:19 AM,3900 Block of 24TH ST,SF,94114,B06,11,5522,3,2,2,true,Non Life-threatening,1,MEDIC,3,6,8,Noe Valley,"(37.7514492433399, -122.430762462292)",120070054-85 -121450377,B01,12048303,Alarms,05/24/2012,05/24/2012,05/24/2012 10:50:40 PM,05/24/2012 10:52:34 PM,05/24/2012 10:52:40 PM,05/24/2012 10:54:14 PM,05/24/2012 10:58:03 PM,04/25/2016 01:58:31 PM,04/25/2016 01:58:31 PM,Fire,05/24/2012 11:10:14 PM,900 Block of NORTH POINT ST,SF,94109,B01,28,1623,3,3,3,false,Alarm,1,CHIEF,3,1,2,Russian Hill,"(37.8054460529292, -122.422841909406)",121450377-B01 -160662882,58,16026504,Medical Incident,03/06/2016,03/06/2016,03/06/2016 08:02:23 PM,03/06/2016 08:02:23 PM,03/06/2016 08:02:48 PM,03/06/2016 08:03:04 PM,03/06/2016 08:14:39 PM,03/06/2016 08:19:06 PM,03/06/2016 08:32:02 PM,Code 2 Transport,03/06/2016 09:08:50 PM,400 Block of 41ST AVE,San Francisco,94121,B07,34,7264,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7794073233347, -122.501948173003)",160662882-58 -113040310,KM11,11101021,Medical Incident,10/31/2011,10/31/2011,10/31/2011 06:01:41 PM,10/31/2011 06:03:31 PM,10/31/2011 06:04:15 PM,10/31/2011 06:04:59 PM,10/31/2011 06:14:49 PM,10/31/2011 06:38:38 PM,10/31/2011 06:48:41 PM,Code 2 Transport,10/31/2011 07:04:56 PM,800 Block of MARKET ST,SF,94103,B03,1,2247,2,2,2,false,,1,PRIVATE,1,3,6,South of Market,"(37.7842056749338, -122.407612731809)",113040310-KM11 -131040048,88,13034811,Medical Incident,04/14/2013,04/13/2013,04/14/2013 01:54:16 AM,04/14/2013 01:54:34 AM,04/14/2013 01:59:24 AM,04/14/2013 01:59:50 AM,04/14/2013 02:06:39 AM,04/14/2013 02:14:29 AM,04/14/2013 02:32:30 AM,Code 2 Transport,04/14/2013 02:48:23 AM,1100 Block of FOLSOM ST,SF,94103,B02,29,2322,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7752603293476, -122.409820946894)",131040048-88 -160151399,57,16005954,Medical Incident,01/15/2016,01/15/2016,01/15/2016 11:16:44 AM,01/15/2016 11:16:44 AM,01/15/2016 11:17:17 AM,01/15/2016 11:17:26 AM,01/15/2016 11:31:56 AM,01/15/2016 11:32:39 AM,01/15/2016 11:51:58 AM,Code 3 Transport,01/15/2016 12:20:03 PM,2000 Block of POLK ST,San Francisco,94109,B04,41,3125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,3,Russian Hill,"(37.7954950654489, -122.421607115084)",160151399-57 -133640356,94,13123752,Medical Incident,12/30/2013,12/30/2013,12/30/2013 09:31:22 PM,12/30/2013 09:31:47 PM,12/30/2013 09:33:38 PM,12/30/2013 09:34:54 PM,04/25/2016 01:48:59 PM,12/30/2013 09:50:12 PM,12/30/2013 10:14:19 PM,Code 2 Transport,12/30/2013 10:52:35 PM,1800 Block of WALLER ST,SF,94122,B05,12,4552,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,5,5,Golden Gate Park,"(37.768154162945, -122.454311620171)",133640356-94 -160460326,78,16018374,Medical Incident,02/15/2016,02/14/2016,02/15/2016 02:52:57 AM,02/15/2016 02:58:13 AM,02/15/2016 03:06:14 AM,02/15/2016 03:11:15 AM,02/15/2016 03:20:06 AM,02/15/2016 03:42:16 AM,02/15/2016 03:52:48 AM,Code 2 Transport,02/15/2016 04:28:23 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160460326-78 -123540295,E11,12118540,Medical Incident,12/19/2012,12/19/2012,12/19/2012 05:38:50 PM,12/19/2012 05:39:27 PM,12/19/2012 05:40:11 PM,12/19/2012 05:41:11 PM,12/19/2012 05:43:45 PM,04/25/2016 01:55:14 PM,04/25/2016 01:55:14 PM,Other,12/19/2012 05:55:51 PM,1000 Block of CASTRO ST,SF,94114,B06,24,5515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7532862863105, -122.434347185392)",123540295-E11 -140390314,E03,14013303,Medical Incident,02/08/2014,02/08/2014,02/08/2014 07:33:49 PM,02/08/2014 07:35:43 PM,02/08/2014 07:36:45 PM,02/08/2014 07:37:47 PM,02/08/2014 07:41:50 PM,04/25/2016 01:48:19 PM,04/25/2016 01:48:19 PM,Other,02/08/2014 07:50:05 PM,200 Block of JONES ST,SF,94102,B03,1,1456,2,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7834768403875, -122.412435140728)",140390314-E03 -130430172,KM04,13014622,Medical Incident,02/12/2013,02/12/2013,02/12/2013 12:58:23 PM,02/12/2013 01:00:07 PM,02/12/2013 01:00:36 PM,02/12/2013 01:01:50 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,04/25/2016 01:54:20 PM,Other,02/12/2013 01:04:18 PM,GOUGH ST/HAYES ST,SF,94102,B02,36,3265,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,5,Hayes Valley,"(37.7768835259362, -122.422978150089)",130430172-KM04 -110870237,T01,11028763,Alarms,03/28/2011,03/28/2011,03/28/2011 02:45:06 PM,03/28/2011 02:45:06 PM,03/28/2011 02:47:51 PM,03/28/2011 02:49:06 PM,03/28/2011 02:51:26 PM,04/25/2016 02:05:24 PM,04/25/2016 02:05:24 PM,Other,03/28/2011 02:51:54 PM,STOCKTON ST/MARKET ST,SF,94103,B03,1,1322,3,3,3,false,,1,TRUCK,1,1,6,South of Market,"(37.7857439877905, -122.405831012392)",110870237-T01 -131930314,E40,13065769,Structure Fire,07/12/2013,07/12/2013,07/12/2013 08:40:13 PM,07/12/2013 08:41:04 PM,07/12/2013 08:41:18 PM,07/12/2013 08:43:19 PM,07/12/2013 08:43:54 PM,04/25/2016 01:51:50 PM,04/25/2016 01:51:50 PM,Other,07/12/2013 08:51:45 PM,900 Block of RIVERA ST,SF,94116,B08,40,7433,3,3,3,false,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7467024373676, -122.476459114973)",131930314-E40 -120310316,T06,12010385,Medical Incident,01/31/2012,01/31/2012,01/31/2012 08:09:35 PM,01/31/2012 08:09:36 PM,01/31/2012 08:09:42 PM,01/31/2012 08:11:08 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,04/25/2016 02:00:21 PM,Other,01/31/2012 08:12:43 PM,100 Block of DUBOCE AVE,SF,94103,B02,36,5126,3,3,3,false,Non Life-threatening,1,TRUCK,3,2,8,Mission,"(37.7698990326822, -122.422760608099)",120310316-T06 -123310068,87,12109938,Medical Incident,11/26/2012,11/25/2012,11/26/2012 06:49:41 AM,11/26/2012 06:50:07 AM,11/26/2012 06:53:36 AM,11/26/2012 06:54:18 AM,11/26/2012 07:07:14 AM,11/26/2012 07:25:05 AM,11/26/2012 07:28:38 AM,Code 2 Transport,11/26/2012 07:59:23 AM,CASTRO ST/14TH ST,SF,94114,B05,6,5133,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7673279605818, -122.435624140662)",123310068-87 -110050002,E01,11001496,Medical Incident,01/05/2011,01/04/2011,01/05/2011 12:00:25 AM,01/05/2011 12:02:51 AM,01/05/2011 12:03:44 AM,01/05/2011 12:06:13 AM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,04/25/2016 02:06:45 PM,Other,01/05/2011 12:08:42 AM,0 Block of CAMPTON PL,SF,94108,B01,1,1316,2,3,3,true,,1,ENGINE,2,1,3,Financial District/South Beach,"(37.7890244222967, -122.406081237999)",110050002-E01 -160293897,89,16011608,Medical Incident,01/29/2016,01/29/2016,01/29/2016 11:24:57 PM,01/29/2016 11:27:07 PM,01/29/2016 11:27:42 PM,01/29/2016 11:27:58 PM,01/29/2016 11:32:35 PM,01/29/2016 11:48:30 PM,01/29/2016 11:57:22 PM,Code 2 Transport,01/30/2016 12:27:18 AM,0 Block of UNITED NATIONS PLZ,San Francisco,94102,B02,1,1551,3,3,3,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7799444052046, -122.414317857881)",160293897-89 -160203962,70,16008202,Medical Incident,01/20/2016,01/20/2016,01/20/2016 11:06:34 PM,01/20/2016 11:08:58 PM,01/20/2016 11:09:11 PM,01/20/2016 11:09:49 PM,01/20/2016 11:12:07 PM,01/20/2016 11:22:54 PM,01/20/2016 11:29:03 PM,Code 2 Transport,01/21/2016 12:02:37 AM,100 Block of TAYLOR ST,San Francisco,94102,B03,1,1453,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Tenderloin,"(37.7836689847285, -122.410926562132)",160203962-70 -160462904,53,16018614,Medical Incident,02/15/2016,02/15/2016,02/15/2016 06:02:09 PM,02/15/2016 06:02:31 PM,02/15/2016 06:03:22 PM,02/15/2016 06:04:30 PM,02/15/2016 06:09:08 PM,02/15/2016 06:25:38 PM,02/15/2016 06:51:08 PM,Code 2 Transport,02/15/2016 07:11:42 PM,500 Block of MARKET ST,San Francisco,94104,B01,13,1236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7898275380016, -122.400837514889)",160462904-53 -112120050,T15,11069845,Alarms,07/31/2011,07/30/2011,07/31/2011 02:55:04 AM,07/31/2011 02:55:08 AM,07/31/2011 02:55:16 AM,07/31/2011 02:57:49 AM,07/31/2011 03:01:39 AM,04/25/2016 02:03:24 PM,04/25/2016 02:03:24 PM,Other,07/31/2011 03:11:32 AM,400 Block of ATHENS ST,SF,94112,B09,43,615,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7208342283008, -122.428956362457)",112120050-T15 -110350246,73,11011537,Medical Incident,02/04/2011,02/04/2011,02/04/2011 03:18:55 PM,02/04/2011 03:19:58 PM,02/04/2011 03:20:26 PM,02/04/2011 03:20:36 PM,02/04/2011 03:23:12 PM,02/04/2011 03:43:15 PM,02/04/2011 04:02:16 PM,Code 2 Transport,02/04/2011 04:05:24 PM,500 Block of OFARRELL ST,SF,94102,B04,3,1544,3,2,2,true,,1,MEDIC,1,2,6,Tenderloin,"(37.785631781088, -122.413782612492)",110350246-73 -102840099,E06,10090350,Traffic Collision,10/11/2010,10/11/2010,10/11/2010 09:08:16 AM,10/11/2010 09:10:13 AM,10/11/2010 09:15:13 AM,10/11/2010 09:16:17 AM,10/11/2010 09:17:47 AM,04/25/2016 02:08:09 PM,04/25/2016 02:08:09 PM,Patient Declined Transport,10/11/2010 09:54:22 AM,DUBOCE AV/CHURCH ST,SF,94114,B02,6,3525,2,2,2,true,,1,ENGINE,1,2,8,Hayes Valley,"(37.7694561276975, -122.429127986942)",102840099-E06 -111590170,T03,11052574,Medical Incident,06/08/2011,06/08/2011,06/08/2011 12:51:16 PM,06/08/2011 12:52:24 PM,06/08/2011 12:52:38 PM,06/08/2011 12:54:50 PM,06/08/2011 12:56:28 PM,04/25/2016 02:04:15 PM,04/25/2016 02:04:15 PM,Other,06/08/2011 01:05:31 PM,1000 Block of SUTTER ST,SF,94109,B04,3,1557,3,2,2,false,,1,TRUCK,1,4,3,Nob Hill,"(37.7881263034393, -122.417657214041)",111590170-T03 -123510137,E31,12117350,Medical Incident,12/16/2012,12/16/2012,12/16/2012 10:22:41 AM,12/16/2012 10:23:15 AM,12/16/2012 10:24:22 AM,12/16/2012 10:24:53 AM,12/16/2012 10:26:34 AM,04/25/2016 01:55:17 PM,04/25/2016 01:55:17 PM,Other,12/16/2012 10:33:33 AM,15TH AV/BALBOA ST,SF,94118,B07,31,7145,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7767927203433, -122.473698120609)",123510137-E31 -120580207,B04,12019139,Administrative,02/27/2012,02/27/2012,02/27/2012 02:22:27 PM,02/27/2012 02:22:29 PM,02/27/2012 02:22:48 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,04/25/2016 01:59:56 PM,Other,02/27/2012 02:23:24 PM,2100 Block of CALIFORNIA ST,SF,94115,B04,38,3362,3,3,3,false,,1,CHIEF,1,4,2,Pacific Heights,"(37.7894833564244, -122.429739105673)",120580207-B04 -140140097,B01,14004731,Alarms,01/14/2014,01/14/2014,01/14/2014 09:17:08 AM,01/14/2014 09:18:26 AM,01/14/2014 09:18:32 AM,01/14/2014 09:19:36 AM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Fire,01/14/2014 09:23:33 AM,2600 Block of JONES ST,SF,94133,B01,28,1521,3,3,3,false,Alarm,1,CHIEF,3,1,3,North Beach,"(37.8056853345021, -122.416914137852)",140140097-B01 -160012294,KM01,16000363,Medical Incident,01/01/2016,01/01/2016,01/01/2016 02:30:44 PM,01/01/2016 02:30:44 PM,01/01/2016 02:32:42 PM,01/01/2016 02:34:41 PM,01/01/2016 02:52:37 PM,01/01/2016 02:57:38 PM,01/01/2016 03:27:59 PM,Code 2 Transport,01/01/2016 03:40:18 PM,100 Block of 6TH ST,San Francisco,94103,B03,1,2251,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7807920802753, -122.408385745499)",160012294-KM01 -123490100,E13,12116627,Outside Fire,12/14/2012,12/14/2012,12/14/2012 08:50:35 AM,12/14/2012 08:52:39 AM,12/14/2012 08:52:51 AM,12/14/2012 08:53:55 AM,12/14/2012 08:55:36 AM,04/25/2016 01:55:19 PM,04/25/2016 01:55:19 PM,Fire,12/14/2012 09:00:49 AM,1ST ST/MARKET ST,SF,94105,B03,13,2143,3,3,3,true,Fire,1,ENGINE,1,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",123490100-E13 -120960112,KM01,12031730,Medical Incident,04/05/2012,04/05/2012,04/05/2012 10:24:11 AM,04/05/2012 10:25:09 AM,04/05/2012 10:25:43 AM,04/05/2012 10:27:08 AM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,04/25/2016 01:59:19 PM,Other,04/05/2012 10:29:24 AM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7822305756448, -122.410292026777)",120960112-KM01 -130410030,55,13013890,Other,02/10/2013,02/09/2013,02/10/2013 01:42:31 AM,02/10/2013 01:42:31 AM,02/10/2013 01:43:33 AM,02/10/2013 01:43:50 AM,02/10/2013 01:49:03 AM,02/10/2013 02:08:52 AM,02/10/2013 02:18:43 AM,Code 2 Transport,02/10/2013 03:01:32 AM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,true,Alarm,1,MEDIC,1,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",130410030-55 -110270390,64,11009057,Structure Fire,01/27/2011,01/27/2011,01/27/2011 09:51:23 PM,01/27/2011 09:52:25 PM,01/27/2011 09:53:00 PM,01/27/2011 09:54:57 PM,01/27/2011 09:57:52 PM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/27/2011 09:58:59 PM,4400 Block of 3RD ST,SF,94124,B10,25,6467,3,3,3,true,,1,MEDIC,5,10,10,Bayview Hunters Point,"(37.737593919819, -122.389860953099)",110270390-64 -110800369,87,11026518,Medical Incident,03/21/2011,03/21/2011,03/21/2011 10:49:50 PM,03/21/2011 10:50:21 PM,03/21/2011 10:50:40 PM,03/21/2011 10:51:20 PM,03/21/2011 10:54:47 PM,04/25/2016 02:05:31 PM,04/25/2016 02:05:31 PM,Patient Declined Transport,03/21/2011 11:21:40 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,MEDIC,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",110800369-87 -160451601,67,16018111,Medical Incident,02/14/2016,02/14/2016,02/14/2016 12:40:41 PM,02/14/2016 12:41:14 PM,02/14/2016 12:42:23 PM,02/14/2016 12:42:48 PM,02/14/2016 12:45:36 PM,02/14/2016 01:00:30 PM,02/14/2016 01:16:44 PM,Code 2 Transport,02/14/2016 01:48:27 PM,800 Block of GEARY ST,San Francisco,94109,B04,3,1556,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7862598612958, -122.41727960137)",160451601-67 -131100004,RC1,13036855,Medical Incident,04/20/2013,04/19/2013,04/20/2013 12:04:51 AM,04/20/2013 12:06:47 AM,04/20/2013 12:06:58 AM,04/20/2013 12:09:31 AM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,04/25/2016 01:53:13 PM,Other,04/20/2013 12:10:19 AM,COLUMBUS AV/VALLEJO ST,SF,94133,B01,2,1333,E,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,1,3,Chinatown,"(37.7986968604086, -122.407869497502)",131100004-RC1 -122080242,E12,12069208,Traffic Collision,07/26/2012,07/26/2012,07/26/2012 05:10:13 PM,07/26/2012 05:11:35 PM,07/26/2012 05:12:09 PM,07/26/2012 05:12:57 PM,07/26/2012 05:24:15 PM,04/25/2016 01:57:32 PM,07/26/2012 05:44:02 PM,Other,07/26/2012 06:15:48 PM,CLAYTON ST/ASHBURY ST,SF,94117,B05,12,5151,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Haight Ashbury,"(37.7627222355861, -122.446994343129)",122080242-E12 -160571628,64,16022742,Medical Incident,02/26/2016,02/26/2016,02/26/2016 12:27:18 PM,02/26/2016 12:29:12 PM,02/26/2016 12:29:24 PM,02/26/2016 12:29:36 PM,02/26/2016 12:36:50 PM,02/26/2016 12:44:56 PM,02/26/2016 12:59:28 PM,Code 2 Transport,02/26/2016 01:31:58 PM,1000 Block of MISSION ST,San Francisco,94103,B03,1,2251,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7801303744947, -122.409871449933)",160571628-64 -133110355,82,13105865,Medical Incident,11/07/2013,11/07/2013,11/07/2013 10:57:54 PM,11/07/2013 10:59:51 PM,11/07/2013 11:00:05 PM,11/07/2013 11:00:11 PM,11/07/2013 11:04:17 PM,11/07/2013 11:23:05 PM,11/07/2013 11:45:20 PM,Code 2 Transport,11/08/2013 12:35:08 AM,300 Block of CLEMENTINA ST,SF,94103,B03,1,2215,3,3,3,false,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7820387146172, -122.40232147638)",133110355-82 -111350076,T10,11044809,Alarms,05/15/2011,05/14/2011,05/15/2011 05:58:16 AM,05/15/2011 05:59:37 AM,05/15/2011 06:00:02 AM,05/15/2011 06:02:37 AM,05/15/2011 06:04:12 AM,04/25/2016 02:04:37 PM,04/25/2016 02:04:37 PM,Other,05/15/2011 06:16:25 AM,2400 Block of GEARY BLVD,SF,94115,B05,10,4261,3,3,3,false,,1,TRUCK,1,5,2,Lone Mountain/USF,"(37.7826460260755, -122.443580987451)",111350076-T10 -160350175,55,16013645,Medical Incident,02/04/2016,02/03/2016,02/04/2016 01:21:36 AM,02/04/2016 01:23:24 AM,02/04/2016 01:23:49 AM,02/04/2016 01:24:26 AM,02/04/2016 01:41:04 AM,02/04/2016 01:41:05 AM,02/04/2016 01:54:32 AM,Code 2 Transport,02/04/2016 02:35:35 AM,2000 Block of MARKET ST,San Francisco,94114,B02,6,5213,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",160350175-55 -122070342,88,12068968,Medical Incident,07/25/2012,07/25/2012,07/25/2012 08:51:31 PM,07/25/2012 08:53:17 PM,07/25/2012 08:54:17 PM,07/25/2012 08:54:24 PM,07/25/2012 09:05:05 PM,04/25/2016 01:57:32 PM,04/25/2016 01:57:32 PM,Patient Declined Transport,07/25/2012 09:32:43 PM,700 Block of EDDY ST,SF,94109,B02,3,3163,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7830520025585, -122.420010270255)",122070342-88 -140440375,E20,14015112,Outside Fire,02/13/2014,02/13/2014,02/13/2014 07:19:31 PM,02/13/2014 07:24:35 PM,02/13/2014 07:26:48 PM,02/13/2014 07:31:28 PM,02/13/2014 07:33:52 PM,04/25/2016 01:48:13 PM,04/25/2016 01:48:13 PM,No Merit,02/13/2014 07:41:30 PM,0 Block of LA AVANZADA,SF,94131,B08,20,5365,3,3,3,true,Fire,1,ENGINE,1,8,7,Twin Peaks,"(37.7559493215982, -122.452288235801)",140440375-E20 -120600165,B04,12019736,Alarms,02/29/2012,02/29/2012,02/29/2012 12:40:40 PM,02/29/2012 12:42:09 PM,02/29/2012 12:42:24 PM,02/29/2012 12:43:49 PM,02/29/2012 12:46:28 PM,04/25/2016 01:59:55 PM,04/25/2016 01:59:55 PM,Fire,02/29/2012 12:52:45 PM,1700 Block of DIVISADERO ST,SF,94115,B05,10,4155,3,3,3,false,Alarm,1,CHIEF,3,5,2,Pacific Heights,"(37.7857001632116, -122.440081147256)",120600165-B04 -111870219,E42,11061849,Administrative,07/06/2011,07/06/2011,07/06/2011 02:02:51 PM,07/06/2011 02:05:46 PM,07/06/2011 02:07:26 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,04/25/2016 02:03:48 PM,Other,07/06/2011 02:07:58 PM,2400 Block of SAN BRUNO AVE,SF,94134,B10,42,6362,3,3,3,true,,1,ENGINE,1,10,9,Portola,"(37.7318198889718, -122.405412091734)",111870219-E42 -160450456,62,16017973,Medical Incident,02/14/2016,02/13/2016,02/14/2016 02:43:39 AM,02/14/2016 02:45:01 AM,02/14/2016 02:47:12 AM,02/14/2016 02:47:21 AM,02/14/2016 03:04:17 AM,02/14/2016 03:26:42 AM,02/14/2016 03:45:00 AM,Code 2 Transport,02/14/2016 04:00:10 AM,DRUMM ST/MARKET ST,San Francisco,94105,B01,13,1113,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,Financial District/South Beach,"(37.793256349048, -122.396302004306)",160450456-62 -160870344,85,16034437,Medical Incident,03/27/2016,03/26/2016,03/27/2016 02:06:18 AM,03/27/2016 02:08:07 AM,03/27/2016 02:08:30 AM,03/27/2016 02:08:44 AM,03/27/2016 02:12:40 AM,03/27/2016 02:24:40 AM,03/27/2016 02:32:13 AM,Code 2 Transport,03/27/2016 03:01:55 AM,1500 Block of FOLSOM ST,San Francisco,94103,B02,36,5121,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7715982798716, -122.414224026965)",160870344-85 -131300178,58,13043906,Medical Incident,05/10/2013,05/10/2013,05/10/2013 01:34:18 PM,05/10/2013 01:34:58 PM,05/10/2013 01:35:29 PM,05/10/2013 01:35:36 PM,05/10/2013 01:37:47 PM,05/10/2013 01:49:33 PM,05/10/2013 02:00:21 PM,Code 2 Transport,05/10/2013 02:34:26 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",131300178-58 -120310154,B09,12010257,Structure Fire,01/31/2012,01/31/2012,01/31/2012 11:45:38 AM,01/31/2012 11:47:11 AM,01/31/2012 11:47:35 AM,01/31/2012 11:48:16 AM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Other,01/31/2012 11:55:07 AM,2100 Block of 33RD AVE,SF,94116,B08,18,7545,3,3,3,false,Fire,1,CHIEF,5,8,4,Sunset/Parkside,"(37.7470473149304, -122.491085954607)",120310154-B09 -140960115,E05,14032255,Medical Incident,04/06/2014,04/06/2014,04/06/2014 08:37:11 AM,04/06/2014 08:37:52 AM,04/06/2014 08:38:19 AM,04/06/2014 08:39:16 AM,04/06/2014 08:40:34 AM,04/25/2016 01:47:22 PM,04/25/2016 01:47:22 PM,Fire,04/06/2014 08:52:30 AM,1200 Block of TURK ST,SAN FRANCISCO,94115,B02,5,3426,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,5,Western Addition,"(37.7808662105665, -122.428803238005)",140960115-E05 -121790105,82,12059544,Medical Incident,06/27/2012,06/27/2012,06/27/2012 09:00:04 AM,06/27/2012 09:00:04 AM,06/27/2012 09:00:15 AM,06/27/2012 09:00:46 AM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,No Merit,06/27/2012 09:04:07 AM,UNIVERSITY ST/WOOLSEY ST,SF,94134,B09,42,6344,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,9,9,McLaren Park,"(37.7226584556741, -122.412468270392)",121790105-82 -102760344,T08,10087873,Medical Incident,10/03/2010,10/03/2010,10/03/2010 08:19:36 PM,10/03/2010 08:20:59 PM,10/03/2010 08:23:27 PM,10/03/2010 08:24:38 PM,10/03/2010 08:26:33 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/03/2010 08:31:08 PM,500 Block of 5TH ST,SF,94107,B03,8,2242,3,3,3,false,,1,TRUCK,1,3,6,South of Market,"(37.7776242389287, -122.39998111124)",102760344-T08 -160670864,57,16026667,Medical Incident,03/07/2016,03/07/2016,03/07/2016 09:54:07 AM,03/07/2016 09:54:31 AM,03/07/2016 09:54:58 AM,03/07/2016 09:56:54 AM,03/07/2016 09:58:41 AM,03/07/2016 10:06:28 AM,03/07/2016 10:06:28 AM,Code 2 Transport,03/07/2016 10:40:20 AM,16TH ST/SHOTWELL ST,San Francisco,94110,B02,7,5237,3,E,3,true,Potentially Life-Threatening,1,MEDIC,1,2,9,Mission,"(37.7652494943866, -122.416387524486)",160670864-57 -140440097,94,14014891,Medical Incident,02/13/2014,02/13/2014,02/13/2014 08:29:28 AM,02/13/2014 08:30:36 AM,02/13/2014 08:31:07 AM,02/13/2014 08:31:23 AM,02/13/2014 08:36:09 AM,02/13/2014 08:54:08 AM,02/13/2014 09:15:52 AM,Code 2 Transport,02/13/2014 09:59:15 AM,0 Block of MORNINGSIDE DR,SF,94132,B08,19,8814,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,Sunset/Parkside,"(37.7331813512189, -122.492299907368)",140440097-94 -130410038,E03,13013898,Medical Incident,02/10/2013,02/09/2013,02/10/2013 02:09:32 AM,02/10/2013 02:09:47 AM,02/10/2013 02:11:10 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 02:11:36 AM,POWELL ST/ELLIS ST,SF,94102,B03,1,1322,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7854915584389, -122.407852521361)",130410038-E03 -122350046,AM16,12077765,Medical Incident,08/22/2012,08/21/2012,08/22/2012 05:56:47 AM,08/22/2012 05:57:36 AM,08/22/2012 05:58:19 AM,08/22/2012 05:59:15 AM,08/22/2012 06:08:18 AM,04/25/2016 01:57:07 PM,04/25/2016 01:57:07 PM,Medical Examiner,08/22/2012 07:17:33 AM,700 Block of 22ND AVE,SF,94121,B07,14,7177,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Outer Richmond,"(37.7736529566581, -122.480976726995)",122350046-AM16 -121350357,89,12045040,Medical Incident,05/14/2012,05/14/2012,05/14/2012 10:00:55 PM,05/14/2012 10:02:56 PM,05/14/2012 10:05:56 PM,05/14/2012 10:07:31 PM,05/14/2012 10:18:12 PM,05/14/2012 10:41:02 PM,05/14/2012 10:45:31 PM,Code 2 Transport,05/14/2012 11:16:05 PM,1200 Block of WEBSTER ST,SF,94115,B05,5,3515,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7820874529721, -122.430855608926)",121350357-89 -103080054,E02,10098586,Electrical Hazard,11/04/2010,11/03/2010,11/04/2010 05:04:11 AM,11/04/2010 05:10:20 AM,11/04/2010 05:10:41 AM,11/04/2010 05:12:40 AM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,04/25/2016 02:07:45 PM,Other,11/04/2010 05:24:11 AM,800 Block of PACIFIC AVE,SF,94133,B01,2,1332,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7966786637547, -122.409061067118)",103080054-E02 -160691106,57,16027411,Medical Incident,03/09/2016,03/09/2016,03/09/2016 10:05:39 AM,03/09/2016 10:09:54 AM,03/09/2016 10:14:23 AM,03/09/2016 10:14:29 AM,03/09/2016 10:29:39 AM,03/09/2016 10:35:23 AM,03/09/2016 10:59:13 AM,Code 2 Transport,03/09/2016 11:43:19 AM,1900 Block of LOMBARD ST,San Francisco,94123,B04,16,3461,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8002723548355, -122.433605968659)",160691106-57 -130510111,KM06,13017207,Medical Incident,02/20/2013,02/20/2013,02/20/2013 09:59:41 AM,02/20/2013 10:00:56 AM,02/20/2013 10:02:16 AM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,04/25/2016 01:54:12 PM,Other,04/25/2016 01:54:12 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,2,2,2,false,Non Life-threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",130510111-KM06 -160551368,85,16021959,Medical Incident,02/24/2016,02/24/2016,02/24/2016 11:07:32 AM,02/24/2016 11:09:50 AM,02/24/2016 11:10:45 AM,02/24/2016 11:11:25 AM,02/24/2016 11:18:03 AM,02/24/2016 11:36:28 AM,02/24/2016 11:43:47 AM,Code 2 Transport,02/24/2016 12:24:56 PM,2100 Block of MISSION ST,San Francisco,94110,B02,7,5423,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7632442446227, -122.419425525666)",160551368-85 -113050018,E06,11101132,Medical Incident,11/01/2011,10/31/2011,11/01/2011 01:15:20 AM,11/01/2011 01:15:34 AM,11/01/2011 01:15:58 AM,11/01/2011 01:17:37 AM,11/01/2011 01:19:31 AM,04/25/2016 02:01:52 PM,04/25/2016 02:01:52 PM,Other,11/01/2011 01:20:41 AM,2000 Block of MARKET ST,SF,94114,B02,6,5127,3,3,3,true,,1,ENGINE,2,2,8,Castro/Upper Market,"(37.769247063207, -122.426955631709)",113050018-E06 -130740213,E39,13024695,Other,03/15/2013,03/15/2013,03/15/2013 01:56:44 PM,03/15/2013 01:57:28 PM,03/15/2013 01:57:36 PM,03/15/2013 01:59:18 PM,03/15/2013 02:01:29 PM,04/25/2016 01:53:49 PM,04/25/2016 01:53:49 PM,Fire,03/15/2013 02:04:47 PM,TARAVAL ST/LENOX WY,SF,94127,B08,39,8617,3,3,3,true,Alarm,1,ENGINE,1,8,7,West of Twin Peaks,"(37.7436586273809, -122.464736797618)",130740213-E39 -131630321,75,13055494,Medical Incident,06/12/2013,06/12/2013,06/12/2013 06:12:40 PM,06/12/2013 06:13:48 PM,06/12/2013 06:14:40 PM,06/12/2013 06:14:53 PM,06/12/2013 06:25:24 PM,06/12/2013 06:43:47 PM,06/12/2013 06:56:40 PM,Code 3 Transport,06/12/2013 07:51:48 PM,300 Block of MOLIMO DR,SF,94127,B09,39,8664,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,West of Twin Peaks,"(37.7372019706313, -122.451879408593)",131630321-75 -102480076,E36,10078275,Structure Fire,09/05/2010,09/04/2010,09/05/2010 06:47:05 AM,09/05/2010 06:48:10 AM,09/05/2010 06:48:26 AM,09/05/2010 06:50:08 AM,09/05/2010 06:51:44 AM,04/25/2016 02:08:44 PM,04/25/2016 02:08:44 PM,Other,09/05/2010 06:55:51 AM,GOUGH ST/MARKET ST,SF,94103,B02,36,3311,3,3,3,true,,1,ENGINE,4,2,5,Hayes Valley,"(37.7729091225192, -122.422186439998)",102480076-E36 -110280031,E43,11009105,Medical Incident,01/28/2011,01/27/2011,01/28/2011 04:03:57 AM,01/28/2011 04:04:46 AM,01/28/2011 04:05:09 AM,01/28/2011 04:06:38 AM,01/28/2011 04:10:16 AM,04/25/2016 02:06:23 PM,04/25/2016 02:06:23 PM,Other,01/28/2011 04:19:09 AM,200 Block of HAHN ST,SF,94134,B09,43,6241,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.7112123454185, -122.416389483879)",110280031-E43 -121790201,E32,12059620,Medical Incident,06/27/2012,06/27/2012,06/27/2012 01:12:58 PM,06/27/2012 01:14:02 PM,06/27/2012 01:14:37 PM,06/27/2012 01:15:44 PM,06/27/2012 01:20:56 PM,04/25/2016 01:57:59 PM,04/25/2016 01:57:59 PM,Other,06/27/2012 01:42:00 PM,900 Block of PERALTA AVE,SF,94110,B10,32,5735,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,9,Bernal Heights,"(37.7372532773995, -122.409169345865)",121790201-E32 -120180061,76,12005930,Medical Incident,01/18/2012,01/17/2012,01/18/2012 07:34:28 AM,01/18/2012 07:35:45 AM,01/18/2012 07:36:33 AM,01/18/2012 07:37:11 AM,01/18/2012 07:43:42 AM,01/18/2012 08:05:28 AM,01/18/2012 08:21:23 AM,Code 2 Transport,01/18/2012 08:54:52 AM,2700 Block of CALIFORNIA ST,SF,94115,B04,38,4125,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7882270245748, -122.439617640821)",120180061-76 -110740014,E38,11024218,Medical Incident,03/15/2011,03/14/2011,03/15/2011 01:00:28 AM,03/15/2011 01:01:28 AM,03/15/2011 01:01:45 AM,03/15/2011 01:03:03 AM,03/15/2011 01:04:58 AM,04/25/2016 02:05:37 PM,04/25/2016 02:05:37 PM,Other,03/15/2011 01:13:30 AM,1500 Block of SUTTER ST,SF,94109,B04,38,3324,3,3,3,false,,1,ENGINE,2,4,5,Pacific Heights,"(37.7870817886663, -122.425867820141)",110740014-E38 -160553652,50,16022139,Medical Incident,02/24/2016,02/24/2016,02/24/2016 08:07:46 PM,02/24/2016 08:08:29 PM,02/24/2016 08:09:01 PM,02/24/2016 08:09:11 PM,02/24/2016 08:14:24 PM,02/24/2016 08:31:26 PM,02/24/2016 08:34:39 PM,Code 2 Transport,02/24/2016 09:26:32 PM,900 Block of POTRERO AVE,San Francisco,94110,B10,7,2553,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7573076100175, -122.406619802694)",160553652-50 -140340035,B02,14011376,Structure Fire,02/03/2014,02/02/2014,02/03/2014 04:03:47 AM,02/03/2014 04:04:50 AM,02/03/2014 04:05:37 AM,02/03/2014 04:07:07 AM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,04/25/2016 01:48:24 PM,Other,02/03/2014 04:07:48 AM,900 Block of KEARNY ST,SF,94133,B01,13,1246,,3,3,false,Alarm,1,CHIEF,12,1,3,Chinatown,"(37.7965510480789, -122.405283980519)",140340035-B02 -121300156,60,12043237,Medical Incident,05/09/2012,05/09/2012,05/09/2012 11:54:13 AM,05/09/2012 11:56:25 AM,05/09/2012 11:56:31 AM,05/09/2012 12:03:03 PM,05/09/2012 12:03:06 PM,05/09/2012 12:17:30 PM,05/09/2012 12:48:12 PM,Code 2 Transport,05/09/2012 01:03:25 PM,2600 Block of 40TH AVE,SF,94116,B08,18,7637,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7373954262715, -122.497932145338)",121300156-60 -121670140,85,12055358,Medical Incident,06/15/2012,06/15/2012,06/15/2012 11:58:08 AM,06/15/2012 12:00:58 PM,06/15/2012 12:01:40 PM,06/15/2012 12:02:26 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,04/25/2016 01:58:12 PM,Other,06/15/2012 12:07:43 PM,100 Block of HARRIET ST,SF,94103,B03,1,2253,2,2,2,true,Potentially Life-Threatening,1,MEDIC,3,3,6,South of Market,"(37.7775031290282, -122.405324803022)",121670140-85 -130780402,T06,13026219,Structure Fire,03/19/2013,03/19/2013,03/19/2013 09:41:21 PM,03/19/2013 09:42:06 PM,03/19/2013 09:42:22 PM,03/19/2013 09:43:31 PM,03/19/2013 09:46:56 PM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 10:25:34 PM,700 Block of FULTON ST,SF,94102,B05,5,3521,3,3,3,false,Alarm,1,TRUCK,8,2,5,Western Addition,"(37.7781781708138, -122.428256337547)",130780402-T06 -110760017,95,11024859,Medical Incident,03/17/2011,03/16/2011,03/17/2011 01:12:53 AM,03/17/2011 01:13:24 AM,03/17/2011 01:14:50 AM,03/17/2011 01:14:58 AM,03/17/2011 01:17:22 AM,03/17/2011 01:41:45 AM,03/17/2011 02:08:53 AM,Other,03/17/2011 02:13:40 AM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,,1,MEDIC,1,2,9,Mission,"(37.7642444942899, -122.419521866555)",110760017-95 -90230233,B04,9006931,Alarms,01/23/2009,01/23/2009,01/23/2009 02:10:38 PM,01/23/2009 02:12:45 PM,01/23/2009 02:12:54 PM,01/23/2009 02:15:01 PM,04/25/2016 03:30:26 PM,04/25/2016 03:30:26 PM,04/25/2016 03:30:26 PM,Other,01/23/2009 02:21:05 PM,3100 Block of LAGUNA ST,SF,94123,B04,16,3352,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.8000153923728, -122.431093553081)",090230233-B04 -112970425,E03,11098717,Medical Incident,10/24/2011,10/24/2011,10/24/2011 11:45:48 PM,10/24/2011 11:46:28 PM,10/24/2011 11:46:43 PM,10/24/2011 11:48:34 PM,10/24/2011 11:49:41 PM,04/25/2016 02:01:59 PM,04/25/2016 02:01:59 PM,Other,10/24/2011 11:55:27 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,3,3,3,true,,1,ENGINE,1,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",112970425-E03 -112020158,T05,11066617,Alarms,07/21/2011,07/21/2011,07/21/2011 10:52:53 AM,07/21/2011 10:54:19 AM,07/21/2011 10:54:27 AM,07/21/2011 10:56:05 AM,07/21/2011 10:59:21 AM,04/25/2016 02:03:34 PM,04/25/2016 02:03:34 PM,Other,07/21/2011 11:00:05 AM,600 Block of ELLIS ST,SF,94109,B02,3,1555,3,3,3,false,,1,TRUCK,2,2,6,Tenderloin,"(37.7843964930924, -122.41690045985)",112020158-T05 -110610136,B02,11019961,Traffic Collision,03/02/2011,03/02/2011,03/02/2011 10:09:35 AM,03/02/2011 10:10:39 AM,03/02/2011 10:11:30 AM,03/02/2011 10:14:22 AM,03/02/2011 10:18:06 AM,04/25/2016 02:05:50 PM,04/25/2016 02:05:50 PM,Other,03/02/2011 10:44:29 AM,CHURCH ST/17TH ST,SF,94114,B02,6,5251,2,3,3,false,,1,CHIEF,3,2,8,Castro/Upper Market,"(37.7628898668395, -122.428508749574)",110610136-B02 -132640146,AM02,13089477,Medical Incident,09/21/2013,09/21/2013,09/21/2013 09:54:01 AM,09/21/2013 09:54:01 AM,09/21/2013 09:54:29 AM,09/21/2013 09:55:09 AM,09/21/2013 09:59:33 AM,09/21/2013 10:04:44 AM,09/21/2013 10:34:26 AM,Code 2 Transport,09/21/2013 11:08:56 AM,0 Block of MARINA BLVD,SF,94123,B04,16,3452,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,2,Marina,"(37.8050541399653, -122.432935196734)",132640146-AM02 -102810014,T19,10089177,Traffic Collision,10/08/2010,10/07/2010,10/08/2010 01:16:42 AM,10/08/2010 01:17:27 AM,10/08/2010 01:19:03 AM,10/08/2010 01:27:27 AM,10/08/2010 01:32:19 AM,04/25/2016 02:08:13 PM,04/25/2016 02:08:13 PM,Other,10/08/2010 01:55:38 AM,SLOAT BL/GREAT HY,SF,94132,B08,19,8713,2,3,3,false,,1,TRUCK,3,8,7,Lakeshore,"(37.7354697597682, -122.506717427482)",102810014-T19 -112840027,E09,11093882,Structure Fire,10/11/2011,10/10/2011,10/11/2011 02:53:10 AM,10/11/2011 02:53:11 AM,10/11/2011 02:53:53 AM,10/11/2011 02:55:23 AM,10/11/2011 02:56:12 AM,04/25/2016 02:02:14 PM,04/25/2016 02:02:14 PM,Other,10/11/2011 02:57:54 AM,OAKDALE AV/BARNEVELD AV,SF,94124,B10,9,6377,3,3,3,true,,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.742036221716, -122.403451320675)",112840027-E09 -131970052,E37,13066726,Medical Incident,07/16/2013,07/15/2013,07/16/2013 06:33:44 AM,07/16/2013 06:36:21 AM,07/16/2013 06:36:47 AM,07/16/2013 06:38:45 AM,07/16/2013 06:40:28 AM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/16/2013 07:00:09 AM,900 Block of CONNECTICUT ST,SF,94107,B10,37,2615,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,10,10,Potrero Hill,"(37.7536098398255, -122.397099082289)",131970052-E37 -160411635,KM08,16016438,Medical Incident,02/10/2016,02/10/2016,02/10/2016 12:11:41 PM,02/10/2016 12:12:48 PM,02/10/2016 12:14:22 PM,02/10/2016 12:17:59 PM,02/10/2016 12:17:59 PM,02/10/2016 12:51:59 PM,02/10/2016 01:11:50 PM,Code 2 Transport,02/10/2016 01:41:38 PM,400 Block of DUBOCE AVE,San Francisco,94114,B02,6,3525,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,8,Castro/Upper Market,"(37.7693772648223, -122.429511429052)",160411635-KM08 -103390062,RS1,10108425,Structure Fire,12/05/2010,12/04/2010,12/05/2010 03:58:07 AM,12/05/2010 03:59:03 AM,12/05/2010 03:59:20 AM,12/05/2010 04:00:52 AM,12/05/2010 04:07:42 AM,04/25/2016 02:07:17 PM,04/25/2016 02:07:17 PM,Other,12/05/2010 04:47:10 AM,2000 Block of GOLDEN GATE AVE,SF,94115,B05,21,4345,3,3,3,false,,1,RESCUE SQUAD,9,5,5,Lone Mountain/USF,"(37.7780421419704, -122.444341928002)",103390062-RS1 -133020248,E20,13102672,Gas Leak (Natural and LP Gases),10/29/2013,10/29/2013,10/29/2013 03:06:40 PM,10/29/2013 03:08:32 PM,10/29/2013 03:08:49 PM,10/29/2013 03:09:53 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,04/25/2016 01:50:01 PM,Other,04/25/2016 01:50:01 PM,0 Block of KNOLLVIEW WAY,SF,94131,B08,20,5361,3,3,3,true,Alarm,1,ENGINE,2,8,7,Twin Peaks,"(37.7500309334752, -122.451132948475)",133020248-E20 -132070192,RC3,13070084,Medical Incident,07/26/2013,07/26/2013,07/26/2013 01:43:00 PM,07/26/2013 01:43:58 PM,07/26/2013 01:45:25 PM,04/25/2016 01:51:37 PM,07/26/2013 01:49:15 PM,07/26/2013 02:00:57 PM,07/26/2013 02:05:51 PM,Other,07/26/2013 02:38:19 PM,1100 Block of PALOU AVE,SF,94124,B10,17,6647,A,A,2,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,1,10,10,Bayview Hunters Point,"(37.7291630976058, -122.382538001818)",132070192-RC3 -131640153,72,13055696,Medical Incident,06/13/2013,06/13/2013,06/13/2013 11:04:18 AM,06/13/2013 11:05:00 AM,06/13/2013 11:05:11 AM,06/13/2013 11:05:37 AM,06/13/2013 11:24:45 AM,06/13/2013 11:38:26 AM,06/13/2013 11:48:23 AM,Code 2 Transport,06/13/2013 12:34:05 PM,700 Block of HOWARD ST,SF,94103,B03,1,2214,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7841058563108, -122.401539484586)",131640153-72 -160113184,60,16004545,Medical Incident,01/11/2016,01/11/2016,01/11/2016 08:16:48 PM,01/11/2016 08:18:36 PM,01/11/2016 08:19:09 PM,01/11/2016 08:19:18 PM,01/11/2016 08:22:58 PM,01/11/2016 08:42:36 PM,01/11/2016 08:47:03 PM,Code 2 Transport,01/11/2016 09:14:30 PM,200 Block of TURK ST,San Francisco,94102,B03,1,1456,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.782845034474, -122.413221766738)",160113184-60 -110140102,E38,11004586,Medical Incident,01/14/2011,01/14/2011,01/14/2011 10:14:11 AM,01/14/2011 10:15:07 AM,01/14/2011 10:15:25 AM,01/14/2011 10:15:43 AM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,04/25/2016 02:06:36 PM,Other,01/14/2011 10:18:12 AM,2100 Block of SUTTER ST,SF,94115,B04,38,3646,3,3,3,false,,1,ENGINE,2,4,5,Japantown,"(37.7857177627023, -122.435726535083)",110140102-E38 -112890200,55,11095889,Medical Incident,10/16/2011,10/16/2011,10/16/2011 01:51:50 PM,10/16/2011 01:52:07 PM,10/16/2011 01:53:09 PM,10/16/2011 01:55:27 PM,10/16/2011 02:03:14 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Patient Declined Transport,10/16/2011 02:29:41 PM,400 Block of 6TH AVE,SF,94118,B07,31,7124,2,2,2,true,,1,MEDIC,1,7,1,Inner Richmond,"(37.7800517942286, -122.464281166863)",112890200-55 -121050194,KM11,12034771,Medical Incident,04/14/2012,04/14/2012,04/14/2012 12:56:23 PM,04/14/2012 12:56:41 PM,04/14/2012 12:56:54 PM,04/14/2012 12:57:24 PM,04/14/2012 01:24:27 PM,04/25/2016 01:59:10 PM,04/25/2016 01:59:10 PM,Against Medical Advice,04/14/2012 01:49:53 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",121050194-KM11 -120380025,B01,12012554,Alarms,02/07/2012,02/06/2012,02/07/2012 01:43:38 AM,02/07/2012 01:45:17 AM,02/07/2012 01:45:26 AM,02/07/2012 01:47:07 AM,02/07/2012 01:48:48 AM,04/25/2016 02:00:15 PM,04/25/2016 02:00:15 PM,Fire,02/07/2012 01:54:04 AM,400 Block of PACIFIC AVE,SF,94133,B01,13,1212,3,3,3,false,Alarm,1,CHIEF,1,1,3,North Beach,"(37.7974015545937, -122.403291978554)",120380025-B01 -102420060,B01,10076229,Alarms,08/30/2010,08/30/2010,08/30/2010 07:59:21 AM,08/30/2010 08:00:16 AM,08/30/2010 08:00:27 AM,08/30/2010 08:01:27 AM,08/30/2010 08:04:47 AM,04/25/2016 02:08:50 PM,04/25/2016 02:08:50 PM,Fire,08/30/2010 08:09:41 AM,0 Block of KEARNY ST,SF,94104,B01,1,1241,3,3,3,false,,1,CHIEF,2,1,3,Financial District/South Beach,"(37.7886683138088, -122.403551710381)",102420060-B01 -160153088,76,16006102,Medical Incident,01/15/2016,01/15/2016,01/15/2016 06:15:54 PM,01/15/2016 06:17:01 PM,01/15/2016 06:17:43 PM,01/15/2016 06:17:52 PM,01/15/2016 06:21:37 PM,01/15/2016 06:43:36 PM,01/15/2016 06:58:02 PM,Code 2 Transport,01/15/2016 07:35:25 PM,700 Block of BROADWAY,San Francisco,94133,B01,2,1353,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7975061057448, -122.409143124942)",160153088-76 -122160177,78,12071669,Medical Incident,08/03/2012,08/03/2012,08/03/2012 12:25:14 PM,08/03/2012 12:26:54 PM,08/03/2012 12:27:33 PM,08/03/2012 12:27:58 PM,08/03/2012 12:34:40 PM,08/03/2012 12:52:41 PM,08/03/2012 01:28:45 PM,Code 2 Transport,08/03/2012 01:51:28 PM,200 Block of SADOWA ST,SF,94112,B09,33,8374,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7123395683606, -122.460798752041)",122160177-78 -102500158,T11,10078977,Structure Fire,09/07/2010,09/07/2010,09/07/2010 01:00:37 PM,09/07/2010 01:00:58 PM,09/07/2010 01:01:11 PM,09/07/2010 01:04:12 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,04/25/2016 02:08:42 PM,Other,09/07/2010 01:13:17 PM,3100 Block of 22ND ST,SF,94110,B06,7,5472,3,3,3,false,,1,TRUCK,8,6,9,Mission,"(37.755524488206, -122.418208517373)",102500158-T11 -160872707,71,16034661,Medical Incident,03/27/2016,03/27/2016,03/27/2016 05:36:00 PM,03/27/2016 05:36:00 PM,03/27/2016 05:45:10 PM,03/27/2016 05:45:16 PM,03/27/2016 05:59:25 PM,03/27/2016 06:07:14 PM,03/27/2016 06:35:05 PM,Code 2 Transport,03/27/2016 07:08:46 PM,5TH ST/BRYANT ST,San Francisco,94107,B03,8,2242,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,South of Market,"(37.7777990101501, -122.40029776053)",160872707-71 -160620326,82,16024558,Medical Incident,03/02/2016,03/01/2016,03/02/2016 04:28:57 AM,03/02/2016 04:28:57 AM,03/02/2016 04:30:23 AM,03/02/2016 04:30:23 AM,03/02/2016 04:33:22 AM,03/02/2016 04:45:05 AM,03/02/2016 05:02:17 AM,Code 2 Transport,03/02/2016 05:45:31 AM,0 Block of MASON ST,San Francisco,94102,B03,1,1365,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7837892969292, -122.409266307301)",160620326-82 -103040323,E02,10097242,Structure Fire,10/31/2010,10/31/2010,10/31/2010 06:15:16 PM,10/31/2010 06:15:49 PM,10/31/2010 06:16:54 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,04/25/2016 02:07:50 PM,Other,10/31/2010 06:42:15 PM,1900 Block of POWELL ST,SF,94133,B01,28,1346,3,3,3,true,,1,ENGINE,10,1,3,North Beach,"(37.8025758890573, -122.411227184973)",103040323-E02 -121400157,67,12046475,Medical Incident,05/19/2012,05/19/2012,05/19/2012 12:01:04 PM,05/19/2012 12:01:27 PM,05/19/2012 12:01:51 PM,05/19/2012 12:02:42 PM,05/19/2012 12:05:50 PM,05/19/2012 12:19:34 PM,05/19/2012 12:22:37 PM,Code 2 Transport,05/19/2012 01:02:55 PM,900 Block of SACRAMENTO ST,SF,94108,B01,2,1326,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7930721329454, -122.408125184867)",121400157-67 -120720150,E11,12023885,Medical Incident,03/12/2012,03/12/2012,03/12/2012 11:19:02 AM,03/12/2012 11:21:28 AM,03/12/2012 11:22:38 AM,03/12/2012 11:23:41 AM,03/12/2012 11:25:19 AM,04/25/2016 01:59:43 PM,04/25/2016 01:59:43 PM,Other,03/12/2012 11:33:21 AM,3300 Block of 26TH ST,SF,94110,B06,11,5613,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,9,Mission,"(37.7490361654123, -122.417303028119)",120720150-E11 -113040304,KM07,11101015,Traffic Collision,10/31/2011,10/31/2011,10/31/2011 05:40:03 PM,10/31/2011 05:40:03 PM,10/31/2011 05:40:27 PM,10/31/2011 05:41:01 PM,10/31/2011 05:47:58 PM,04/25/2016 02:01:53 PM,04/25/2016 02:01:53 PM,Against Medical Advice,10/31/2011 06:12:51 PM,2300 Block of 44TH AVE,SF,94116,B08,18,7644,3,3,3,false,,1,PRIVATE,2,8,4,Sunset/Parkside,"(37.7428027049025, -122.502473625162)",113040304-KM07 -110300230,84,11009889,Medical Incident,01/30/2011,01/30/2011,01/30/2011 02:49:19 PM,01/30/2011 02:49:36 PM,01/30/2011 02:50:26 PM,01/30/2011 02:52:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/30/2011 02:57:11 PM,RUSSIA AV/MOSCOW ST,SF,94112,B09,43,6156,3,3,3,true,,1,MEDIC,2,9,11,Excelsior,"(37.7181475597429, -122.429978026376)",110300230-84 -140020033,E40,14000544,Structure Fire,01/02/2014,01/01/2014,01/02/2014 02:02:31 AM,01/02/2014 02:03:07 AM,01/02/2014 02:03:25 AM,01/02/2014 02:06:40 AM,01/02/2014 02:07:59 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/02/2014 02:16:46 AM,19TH AV/QUINTARA ST,SF,94116,B08,40,7417,,3,3,false,Fire,1,ENGINE,2,8,4,West of Twin Peaks,"(37.748647508509, -122.476033097726)",140020033-E40 -160462247,AM08,16018560,Medical Incident,02/15/2016,02/15/2016,02/15/2016 03:24:34 PM,02/15/2016 03:26:27 PM,02/15/2016 03:26:50 PM,02/15/2016 03:27:19 PM,02/15/2016 03:37:39 PM,02/15/2016 04:01:42 PM,02/15/2016 04:18:56 PM,Code 2 Transport,02/15/2016 05:09:02 PM,500 Block of RAYMOND AVE,San Francisco,94134,B09,44,629,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,10,McLaren Park,"(37.7152821393105, -122.414476160628)",160462247-AM08 -121950129,E17,12064859,Medical Incident,07/13/2012,07/13/2012,07/13/2012 10:56:45 AM,07/13/2012 10:56:45 AM,07/13/2012 10:56:45 AM,07/13/2012 10:58:08 AM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,04/25/2016 01:57:44 PM,Other,07/13/2012 10:59:32 AM,NEWCOMB AV/3RD ST,SF,94124,B10,17,6515,3,3,3,true,Potentially Life-Threatening,1,ENGINE,5,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",121950129-E17 -113460065,D2,11114700,Structure Fire,12/12/2011,12/11/2011,12/12/2011 06:07:16 AM,12/12/2011 06:07:53 AM,12/12/2011 06:08:16 AM,12/12/2011 06:10:27 AM,12/12/2011 06:15:20 AM,04/25/2016 02:01:11 PM,04/25/2016 02:01:11 PM,Other,12/12/2011 06:26:45 AM,2600 Block of BAKER ST,SF,94123,B04,16,4312,3,3,3,false,,1,CHIEF,6,4,2,Marina,"(37.7953709247119, -122.445248651792)",113460065-D2 -130400358,79,13013824,Medical Incident,02/09/2013,02/09/2013,02/09/2013 08:57:07 PM,02/09/2013 08:59:30 PM,02/09/2013 09:15:58 PM,04/25/2016 01:54:22 PM,02/09/2013 09:20:34 PM,02/09/2013 09:31:46 PM,02/09/2013 09:54:32 PM,Code 2 Transport,02/09/2013 10:25:18 PM,400 Block of ELLIS ST,SF,94102,B03,3,1461,1,1,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7846989219759, -122.413593512877)",130400358-79 -160123786,AM24,16004983,Medical Incident,01/12/2016,01/12/2016,01/12/2016 10:45:54 PM,01/12/2016 10:47:44 PM,01/12/2016 11:25:47 PM,01/12/2016 11:26:21 PM,01/12/2016 11:29:46 PM,01/12/2016 11:47:07 PM,01/12/2016 11:52:15 PM,Code 3 Transport,01/13/2016 12:36:47 AM,500 Block of SOUTH VAN NESS AVE,San Francisco,94110,B02,7,5246,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,9,Mission,"(37.7643732096664, -122.417478491468)",160123786-AM24 -160661645,82,16026396,Medical Incident,03/06/2016,03/06/2016,03/06/2016 01:36:39 PM,03/06/2016 01:39:10 PM,03/06/2016 01:40:10 PM,03/06/2016 01:41:06 PM,03/06/2016 01:48:35 PM,03/06/2016 02:04:43 PM,03/06/2016 02:42:21 PM,Code 2 Transport,03/06/2016 03:10:04 PM,1000 Block of BUSH ST,San Francisco,94109,B01,41,1542,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.7894788173025, -122.414561133158)",160661645-82 -102600188,E01,10082174,Medical Incident,09/17/2010,09/17/2010,09/17/2010 01:26:50 PM,09/17/2010 01:27:06 PM,09/17/2010 01:27:23 PM,09/17/2010 01:28:46 PM,09/17/2010 01:31:43 PM,04/25/2016 02:08:33 PM,04/25/2016 02:08:33 PM,Other,09/17/2010 01:36:14 PM,6TH ST/HOWARD ST,SF,94103,B03,1,2252,E,E,3,true,,1,ENGINE,2,3,6,South of Market,"(37.7797389055689, -122.407159489165)",102600188-E01 -160260499,75,16010202,Medical Incident,01/26/2016,01/25/2016,01/26/2016 05:45:12 AM,01/26/2016 05:47:01 AM,01/26/2016 05:47:20 AM,01/26/2016 05:53:19 AM,01/26/2016 05:59:05 AM,01/26/2016 06:32:57 AM,01/26/2016 06:45:57 AM,Code 2 Transport,01/26/2016 07:40:34 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",160260499-75 -111120019,E16,11036862,Water Rescue,04/22/2011,04/21/2011,04/22/2011 01:08:56 AM,04/22/2011 01:09:09 AM,04/22/2011 01:10:14 AM,04/22/2011 01:13:22 AM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,04/25/2016 02:04:59 PM,Other,04/22/2011 01:14:07 AM,2800 Block of HYDE ST,SF,94109,B03,28,1616,3,3,3,true,,1,ENGINE,7,1,2,Russian Hill,"(37.8071154533997, -122.420720018434)",111120019-E16 -160084161,72,16003474,Medical Incident,01/08/2016,01/08/2016,01/08/2016 11:44:07 PM,01/08/2016 11:45:16 PM,01/08/2016 11:45:59 PM,01/08/2016 11:46:17 PM,01/09/2016 12:04:23 AM,01/09/2016 12:27:50 AM,01/09/2016 12:44:37 AM,Code 2 Transport,01/09/2016 01:59:37 AM,1600 Block of 19TH AVE,San Francisco,94122,B08,40,7422,2,2,2,true,Non Life-threatening,1,MEDIC,2,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",160084161-72 -140760116,72,14025658,Medical Incident,03/17/2014,03/17/2014,03/17/2014 09:49:08 AM,03/17/2014 09:49:29 AM,03/17/2014 09:50:11 AM,03/17/2014 09:50:45 AM,03/17/2014 09:54:36 AM,03/17/2014 10:05:30 AM,03/17/2014 10:19:36 AM,Code 2 Transport,03/17/2014 10:39:25 AM,3RD ST/INNES AV,SAN FRANCISCO,94124,B10,25,6467,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7395334481561, -122.38903096939)",140760116-72 -102690268,E40,10085377,Traffic Collision,09/26/2010,09/26/2010,09/26/2010 04:08:30 PM,09/26/2010 04:08:30 PM,09/26/2010 04:08:59 PM,09/26/2010 04:10:03 PM,09/26/2010 04:12:32 PM,04/25/2016 02:08:24 PM,04/25/2016 02:08:24 PM,Other,09/26/2010 04:23:29 PM,19TH AV/VICENTE ST,SF,94116,B08,40,7415,3,3,3,false,,1,ENGINE,1,8,7,West of Twin Peaks,"(37.739325432683, -122.475409073617)",102690268-E40 -111960164,B06,11064682,Alarms,07/15/2011,07/15/2011,07/15/2011 12:58:11 PM,07/15/2011 12:59:33 PM,07/15/2011 01:00:40 PM,07/15/2011 01:01:49 PM,07/15/2011 01:04:23 PM,04/25/2016 02:03:39 PM,04/25/2016 02:03:39 PM,Other,07/15/2011 01:12:07 PM,500 Block of HILL ST,SF,94114,B06,24,5466,3,3,3,false,,1,CHIEF,2,6,8,Noe Valley,"(37.7554105525414, -122.433367007382)",111960164-B06 -160640145,57,16025326,Medical Incident,03/04/2016,03/03/2016,03/04/2016 01:21:53 AM,03/04/2016 01:22:55 AM,03/04/2016 01:23:05 AM,03/04/2016 01:23:26 AM,03/04/2016 01:29:22 AM,03/04/2016 01:33:22 AM,03/04/2016 01:39:58 AM,Code 2 Transport,03/04/2016 01:58:51 AM,100 Block of EDDY ST,San Francisco,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Tenderloin,"(37.7841909047888, -122.410119483452)",160640145-57 -132770440,E22,13094296,Traffic Collision,10/04/2013,10/04/2013,10/04/2013 09:12:48 PM,10/04/2013 09:14:15 PM,10/04/2013 09:14:40 PM,10/04/2013 09:15:40 PM,10/04/2013 09:18:51 PM,04/25/2016 01:50:26 PM,04/25/2016 01:50:26 PM,Other,10/04/2013 09:20:58 PM,20TH AV/LINCOLN WY,SF,94122,B08,22,7425,2,2,2,true,Non Life-threatening,1,ENGINE,1,8,1,Golden Gate Park,"(37.7653991358311, -122.478324821151)",132770440-E22 -133120377,AM04,13106196,Medical Incident,11/08/2013,11/08/2013,11/08/2013 09:50:28 PM,11/08/2013 09:52:55 PM,11/08/2013 09:53:50 PM,11/08/2013 09:54:31 PM,11/08/2013 09:57:22 PM,04/25/2016 01:49:51 PM,04/25/2016 01:49:51 PM,Other,11/08/2013 10:03:38 PM,100 Block of OFARRELL ST,SF,94102,B01,1,1363,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,1,3,Financial District/South Beach,"(37.786566734333, -122.407228381756)",133120377-AM04 -121840132,T03,12061250,Medical Incident,07/02/2012,07/02/2012,07/02/2012 11:34:16 AM,07/02/2012 11:34:27 AM,07/02/2012 11:34:52 AM,07/02/2012 11:36:42 AM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,04/25/2016 01:57:54 PM,Other,07/02/2012 11:36:44 AM,TURK ST/JONES ST,SF,94102,B03,1,1456,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,2,6,Tenderloin,"(37.783004077677, -122.412411747482)",121840132-T03 -133620301,RC2,13123105,Medical Incident,12/28/2013,12/28/2013,12/28/2013 07:49:26 PM,12/28/2013 07:50:53 PM,12/28/2013 07:52:20 PM,04/25/2016 01:49:01 PM,12/28/2013 07:53:41 PM,04/25/2016 01:49:01 PM,04/25/2016 01:49:01 PM,Other,12/28/2013 08:10:24 PM,1100 Block of CABRILLO ST,SF,94118,B07,31,7143,3,3,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,2,7,1,Inner Richmond,"(37.7751069099178, -122.470839441788)",133620301-RC2 -160150684,AM24,16005879,Medical Incident,01/15/2016,01/14/2016,01/15/2016 07:56:45 AM,01/15/2016 07:58:25 AM,01/15/2016 07:58:53 AM,01/15/2016 08:11:19 AM,01/15/2016 08:11:19 AM,01/15/2016 08:14:43 AM,01/15/2016 08:31:32 AM,Code 2 Transport,01/15/2016 08:50:22 AM,800 Block of SOUTH VAN NESS AVE,San Francisco,94110,B06,7,5433,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,6,9,Mission,"(37.7595697859376, -122.416880161863)",160150684-AM24 -160263738,60,16010487,Medical Incident,01/26/2016,01/26/2016,01/26/2016 10:08:57 PM,01/26/2016 10:08:57 PM,01/26/2016 10:09:14 PM,01/26/2016 10:09:24 PM,01/26/2016 10:15:16 PM,01/26/2016 10:33:22 PM,01/26/2016 10:42:38 PM,Code 2 Transport,01/26/2016 11:07:13 PM,4800 Block of MISSION ST,San Francisco,94112,B09,43,6123,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Outer Mission,"(37.7206322139604, -122.437984003995)",160263738-60 -132450228,72,13082712,Medical Incident,09/02/2013,09/02/2013,09/02/2013 03:07:26 PM,09/02/2013 03:08:05 PM,09/02/2013 03:09:18 PM,09/02/2013 03:09:47 PM,09/02/2013 03:21:40 PM,09/02/2013 03:32:59 PM,09/02/2013 03:55:43 PM,Code 2 Transport,09/02/2013 04:38:46 PM,2200 Block of 19TH AVE,SF,94116,B08,40,7416,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7458449403096, -122.475965779113)",132450228-72 -160540484,53,16021473,Medical Incident,02/23/2016,02/22/2016,02/23/2016 07:00:57 AM,02/23/2016 07:04:05 AM,02/23/2016 07:04:23 AM,02/23/2016 07:04:45 AM,02/23/2016 07:15:44 AM,02/23/2016 07:43:33 AM,02/23/2016 07:54:32 AM,Code 3 Transport,02/23/2016 08:48:16 AM,1700 Block of PACIFIC AVE,San Francisco,94109,B04,38,3231,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Pacific Heights,"(37.7947665561905, -122.424060519207)",160540484-53 -133570255,E18,13121430,Alarms,12/23/2013,12/23/2013,12/23/2013 04:57:27 PM,12/23/2013 04:58:42 PM,12/23/2013 05:00:14 PM,12/23/2013 05:00:57 PM,12/23/2013 05:04:27 PM,04/25/2016 01:49:06 PM,04/25/2016 01:49:06 PM,Other,12/23/2013 05:50:19 PM,1800 Block of VICENTE ST,SF,94116,B08,18,7523,3,3,3,true,Alarm,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7388214326705, -122.48560378101)",133570255-E18 -120170263,AM14,12005771,Medical Incident,01/17/2012,01/17/2012,01/17/2012 05:30:11 PM,01/17/2012 05:30:48 PM,01/17/2012 05:31:34 PM,01/17/2012 05:32:43 PM,01/17/2012 05:39:44 PM,01/17/2012 06:02:19 PM,01/17/2012 06:22:06 PM,Code 2 Transport,01/17/2012 06:54:09 PM,0 Block of LECH WALESA ST,SF,94102,B02,36,381,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7779246419176, -122.418936072128)",120170263-AM14 -103300045,RS2,10105539,Structure Fire,11/26/2010,11/25/2010,11/26/2010 04:28:28 AM,11/26/2010 04:29:22 AM,11/26/2010 04:29:47 AM,11/26/2010 04:31:02 AM,11/26/2010 04:32:49 AM,04/25/2016 02:07:25 PM,04/25/2016 02:07:25 PM,Other,11/26/2010 04:35:44 AM,22ND ST/POTRERO AV,SF,94110,B10,7,2553,3,3,3,false,,1,RESCUE SQUAD,4,10,9,Potrero Hill,"(37.7568337347519, -122.406699001604)",103300045-RS2 -123140339,E38,12104626,Medical Incident,11/09/2012,11/09/2012,11/09/2012 07:37:22 PM,11/09/2012 07:39:00 PM,11/09/2012 07:39:37 PM,04/25/2016 01:55:52 PM,11/09/2012 07:42:24 PM,04/25/2016 01:55:52 PM,04/25/2016 01:55:52 PM,Other,11/09/2012 08:18:05 PM,2100 Block of PINE ST,SF,94115,B04,38,3434,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,4,2,Pacific Heights,"(37.7883179320882, -122.43119056038)",123140339-E38 -110780155,E19,11025647,Administrative,03/19/2011,03/19/2011,03/19/2011 12:28:24 PM,03/19/2011 12:28:27 PM,03/19/2011 12:28:36 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,04/25/2016 02:05:33 PM,Other,03/19/2011 12:29:22 PM,300 Block of BUCKINGHAM WAY,SF,94132,B08,19,8854,3,3,3,true,,1,ENGINE,1,8,7,Lakeshore,"(37.7259492571366, -122.478840965775)",110780155-E19 -121610151,AM06,12053274,Medical Incident,06/09/2012,06/09/2012,06/09/2012 11:34:54 AM,06/09/2012 11:36:33 AM,06/09/2012 11:37:40 AM,06/09/2012 11:38:22 AM,06/09/2012 11:39:36 AM,06/09/2012 11:54:43 AM,06/09/2012 12:10:13 PM,Code 2 Transport,06/09/2012 12:56:06 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",121610151-AM06 -111800173,AM04,11059421,Medical Incident,06/29/2011,06/29/2011,06/29/2011 01:57:02 PM,06/29/2011 01:59:19 PM,06/29/2011 01:59:37 PM,06/29/2011 02:00:52 PM,06/29/2011 02:14:40 PM,06/29/2011 02:22:55 PM,06/29/2011 02:32:43 PM,Code 2 Transport,06/29/2011 03:15:41 PM,1200 Block of LA SALLE AVE,SF,94124,B10,17,668,1,1,2,false,,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7320922809256, -122.382788331866)",111800173-AM04 -103230031,KM15,10103360,Traffic Collision,11/19/2010,11/18/2010,11/19/2010 03:21:05 AM,11/19/2010 03:22:28 AM,11/19/2010 03:22:54 AM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,04/25/2016 02:07:32 PM,Other,04/25/2016 02:07:32 PM,2500 Block of FILBERT ST,SF,94123,B04,16,4116,3,3,3,false,,1,PRIVATE,4,4,2,Marina,"(37.7972331586419, -122.441433723722)",103230031-KM15 -132870063,T03,13097518,Alarms,10/14/2013,10/13/2013,10/14/2013 06:05:43 AM,10/14/2013 06:08:20 AM,10/14/2013 06:08:34 AM,10/14/2013 06:10:13 AM,10/14/2013 06:12:25 AM,04/25/2016 01:50:16 PM,04/25/2016 01:50:16 PM,Other,10/14/2013 06:16:41 AM,200 Block of GOLDEN GATE AVE,SF,94102,B02,1,1548,3,3,3,true,Alarm,1,TRUCK,2,2,6,Tenderloin,"(37.7817609081004, -122.415105135014)",132870063-T03 -140690331,67,14023414,Traffic Collision,03/10/2014,03/10/2014,03/10/2014 08:07:30 PM,03/10/2014 08:09:33 PM,03/10/2014 08:09:52 PM,03/10/2014 08:10:18 PM,03/10/2014 08:14:37 PM,04/25/2016 01:47:48 PM,04/25/2016 01:47:48 PM,Patient Declined Transport,03/10/2014 08:17:33 PM,9TH ST/HARRISON ST,SAN FRANCISCO,94103,B03,29,2333,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7725264425971, -122.410076850083)",140690331-67 -160482264,KM05,16019383,Medical Incident,02/17/2016,02/17/2016,02/17/2016 02:25:26 PM,02/17/2016 02:27:53 PM,02/17/2016 02:28:39 PM,02/17/2016 02:29:03 PM,02/17/2016 02:42:20 PM,02/17/2016 03:00:28 PM,02/17/2016 03:05:45 PM,Code 2 Transport,02/17/2016 03:49:42 PM,1300 Block of LARKIN ST,San Francisco,94109,B04,41,1635,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7903002987672, -122.41900777325)",160482264-KM05 -110420182,KM12,11013905,Medical Incident,02/11/2011,02/11/2011,02/11/2011 11:57:00 AM,02/11/2011 11:58:29 AM,02/11/2011 11:58:56 AM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,04/25/2016 02:06:08 PM,Other,02/11/2011 12:02:16 PM,OAK ST/FRANKLIN ST,SF,94102,B02,36,3266,3,3,3,false,,1,PRIVATE,2,2,5,Hayes Valley,"(37.775232334473, -122.420959921668)",110420182-KM12 -122100198,E19,12069778,Traffic Collision,07/28/2012,07/28/2012,07/28/2012 02:14:17 PM,07/28/2012 02:15:00 PM,07/28/2012 02:15:30 PM,07/28/2012 02:16:46 PM,07/28/2012 02:19:17 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 02:47:53 PM,OCEAN AV/JUNIPERO SERRA BL,SF,94127,B08,19,8452,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,7,West of Twin Peaks,"(37.7312055048522, -122.472160323543)",122100198-E19 -120750144,T08,12024876,Alarms,03/15/2012,03/15/2012,03/15/2012 11:11:54 AM,03/15/2012 11:13:53 AM,03/15/2012 11:14:03 AM,03/15/2012 11:16:25 AM,03/15/2012 11:17:56 AM,04/25/2016 01:59:40 PM,04/25/2016 01:59:40 PM,Other,03/15/2012 11:32:54 AM,100 Block of BERRY ST,SF,94107,B03,8,2171,3,3,3,false,Alarm,1,TRUCK,2,3,6,Mission Bay,"(37.7767092171499, -122.392287121307)",120750144-T08 -110410322,T07,11013679,Structure Fire,02/10/2011,02/10/2011,02/10/2011 06:15:03 PM,02/10/2011 06:15:03 PM,02/10/2011 06:15:27 PM,02/10/2011 06:17:30 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,04/25/2016 02:06:09 PM,Other,02/10/2011 06:18:04 PM,22ND ST/FOLSOM ST,SF,94110,B06,7,5473,3,3,3,false,,1,TRUCK,2,6,9,Mission,"(37.7556994645677, -122.414387602502)",110410322-T07 -103320175,E36,10106280,Medical Incident,11/28/2010,11/28/2010,11/28/2010 01:50:47 PM,11/28/2010 01:52:18 PM,11/28/2010 01:52:36 PM,11/28/2010 01:54:00 PM,11/28/2010 01:54:43 PM,04/25/2016 02:07:23 PM,04/25/2016 02:07:23 PM,Other,11/28/2010 01:57:56 PM,FRANKLIN ST/FELL ST,SF,94102,B02,36,3213,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7761587640112, -122.421148424067)",103320175-E36 -160841117,57,16033310,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:38:18 AM,03/24/2016 09:38:18 AM,03/24/2016 09:38:35 AM,03/24/2016 09:39:19 AM,03/24/2016 09:49:49 AM,03/24/2016 10:09:01 AM,03/24/2016 10:37:30 AM,Code 2 Transport,03/24/2016 11:12:17 AM,300 Block of EDDY ST,San Francisco,94102,B02,3,1540,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7838344374141, -122.412930522059)",160841117-57 -160632441,57,16025139,Medical Incident,03/03/2016,03/03/2016,03/03/2016 03:57:02 PM,03/03/2016 03:58:20 PM,03/03/2016 03:58:34 PM,03/03/2016 03:59:01 PM,03/03/2016 04:22:43 PM,03/03/2016 04:22:46 PM,03/03/2016 04:38:18 PM,Code 2 Transport,03/03/2016 05:05:38 PM,2200 Block of GEARY BLVD,San Francisco,94115,B05,10,4154,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",160632441-57 -120180167,E06,12006022,Structure Fire,01/18/2012,01/18/2012,01/18/2012 12:56:54 PM,01/18/2012 12:58:06 PM,01/18/2012 12:59:02 PM,01/18/2012 12:59:58 PM,01/18/2012 01:01:40 PM,04/25/2016 02:00:34 PM,04/25/2016 02:00:34 PM,Other,01/18/2012 01:12:51 PM,500 Block of VALENCIA ST,SF,94103,B02,7,5247,3,3,3,true,Fire,1,ENGINE,3,2,9,Mission,"(37.7641127383912, -122.421739995141)",120180167-E06 -130710340,T03,13023827,Medical Incident,03/12/2013,03/12/2013,03/12/2013 08:33:25 PM,03/12/2013 08:33:48 PM,03/12/2013 08:34:14 PM,03/12/2013 08:35:15 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,04/25/2016 01:53:52 PM,Other,03/12/2013 08:35:33 PM,900 Block of LARKIN ST,SF,94109,B04,3,1641,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,4,6,Tenderloin,"(37.7863419196668, -122.418065082006)",130710340-T03 -110880362,AM18,11029208,Medical Incident,03/29/2011,03/29/2011,03/29/2011 09:06:03 PM,03/29/2011 09:07:20 PM,03/29/2011 09:07:56 PM,03/29/2011 09:08:10 PM,03/29/2011 09:21:43 PM,03/29/2011 09:27:58 PM,03/29/2011 09:39:17 PM,Code 3 Transport,03/29/2011 10:47:31 PM,HOWARD ST/3RD ST,SF,94105,B03,1,2177,3,3,3,false,,1,PRIVATE,3,3,6,Financial District/South Beach,"(37.7850302848881, -122.400468484412)",110880362-AM18 -121040019,KM07,12034325,Medical Incident,04/13/2012,04/12/2012,04/13/2012 02:38:08 AM,04/13/2012 02:39:52 AM,04/13/2012 02:41:50 AM,04/13/2012 02:42:32 AM,04/13/2012 02:49:25 AM,04/13/2012 02:53:16 AM,04/13/2012 03:14:37 AM,Other,04/13/2012 03:27:59 AM,100 Block of 6TH ST,SF,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.779911669335, -122.407474439624)",121040019-KM07 -130170157,E05,13005751,Medical Incident,01/17/2013,01/17/2013,01/17/2013 11:37:55 AM,01/17/2013 11:40:08 AM,01/17/2013 11:40:27 AM,01/17/2013 11:41:16 AM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,04/25/2016 01:54:46 PM,Other,01/17/2013 11:42:54 AM,1600 Block of SCOTT ST,SF,94115,B04,10,4131,3,3,3,true,Potentially Life-Threatening,1,ENGINE,3,5,5,Japantown,"(37.7849864733147, -122.438181369407)",130170157-E05 -132780413,B06,13094705,Structure Fire,10/05/2013,10/05/2013,10/05/2013 10:53:53 PM,10/05/2013 10:54:48 PM,10/05/2013 10:55:17 PM,04/25/2016 01:50:24 PM,10/05/2013 11:00:00 PM,04/25/2016 01:50:24 PM,04/25/2016 01:50:24 PM,Other,10/05/2013 11:02:34 PM,3000 Block of MARKET ST,SF,94114,B05,24,5413,3,3,3,false,Alarm,1,CHIEF,3,5,8,Castro/Upper Market,"(37.7609714706558, -122.442343287264)",132780413-B06 -122910106,KM02,12096284,Medical Incident,10/17/2012,10/17/2012,10/17/2012 09:31:18 AM,10/17/2012 09:32:23 AM,10/17/2012 09:32:39 AM,04/25/2016 01:56:15 PM,10/17/2012 09:36:24 AM,04/25/2016 01:56:15 PM,04/25/2016 01:56:15 PM,Other,10/17/2012 09:37:41 AM,5TH ST/FOLSOM ST,SF,94107,B03,1,2244,3,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7802649718101, -122.40338721034)",122910106-KM02 -102770152,E01,10088048,Medical Incident,10/04/2010,10/04/2010,10/04/2010 12:55:51 PM,10/04/2010 12:57:54 PM,10/04/2010 12:58:07 PM,04/25/2016 02:08:16 PM,10/04/2010 01:01:28 PM,04/25/2016 02:08:16 PM,04/25/2016 02:08:16 PM,Other,10/04/2010 01:04:32 PM,100 Block of 2ND ST,SF,94105,B03,1,2146,3,3,3,true,,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7869524495987, -122.398572324987)",102770152-E01 -131130160,T06,13038072,Medical Incident,04/23/2013,04/23/2013,04/23/2013 12:09:16 PM,04/23/2013 12:11:23 PM,04/23/2013 12:13:40 PM,04/23/2013 12:14:03 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,04/25/2016 01:53:09 PM,Other,04/23/2013 12:19:32 PM,300 Block of ROOSEVELT WAY,SF,94114,B05,6,5175,3,3,3,false,Potentially Life-Threatening,1,TRUCK,3,5,8,Castro/Upper Market,"(37.7649962448676, -122.442980543264)",131130160-T06 -160850626,AM24,16033662,Medical Incident,03/25/2016,03/24/2016,03/25/2016 07:18:27 AM,03/25/2016 07:18:27 AM,03/25/2016 07:22:52 AM,03/25/2016 07:23:34 AM,03/25/2016 07:32:04 AM,03/25/2016 07:44:12 AM,03/25/2016 07:58:16 AM,Code 2 Transport,03/25/2016 08:23:10 AM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160850626-AM24 -133640049,84,13123489,Medical Incident,12/30/2013,12/29/2013,12/30/2013 04:11:29 AM,12/30/2013 04:12:47 AM,12/30/2013 04:20:09 AM,12/30/2013 04:20:22 AM,12/30/2013 04:28:03 AM,04/25/2016 01:49:00 PM,04/25/2016 01:49:00 PM,Other,12/30/2013 04:40:32 AM,600 Block of JACKSON ST,SF,94133,B01,2,1312,2,2,2,false,Non Life-threatening,1,MEDIC,2,1,3,Chinatown,"(37.7961541141813, -122.406054327479)",133640049-84 -130700101,54,13023268,Medical Incident,03/11/2013,03/11/2013,03/11/2013 09:28:19 AM,03/11/2013 09:29:04 AM,03/11/2013 09:29:24 AM,03/11/2013 09:31:43 AM,03/11/2013 09:35:12 AM,03/11/2013 09:55:47 AM,03/11/2013 10:11:03 AM,Code 2 Transport,03/11/2013 11:04:56 AM,400 Block of MCALLISTER ST,SF,94102,B02,3,3112,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7802111696279, -122.419432395449)",130700101-54 -110640329,E07,11021195,Medical Incident,03/05/2011,03/05/2011,03/05/2011 06:09:23 PM,03/05/2011 06:09:53 PM,03/05/2011 06:11:04 PM,03/05/2011 06:11:45 PM,03/05/2011 06:14:36 PM,04/25/2016 02:05:46 PM,04/25/2016 02:05:46 PM,Other,03/05/2011 06:25:06 PM,TREAT AV/25TH ST,SF,94110,B06,7,5533,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.750968088623, -122.412838555624)",110640329-E07 -140120332,E22,14004297,Medical Incident,01/12/2014,01/12/2014,01/12/2014 11:10:03 PM,01/12/2014 11:11:40 PM,01/12/2014 11:12:04 PM,01/12/2014 11:13:52 PM,01/12/2014 11:16:23 PM,04/25/2016 01:48:45 PM,04/25/2016 01:48:45 PM,Other,01/12/2014 11:26:57 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,,3,3,true,Potentially Life-Threatening,1,ENGINE,1,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",140120332-E22 -132760187,RC3,13093738,Medical Incident,10/03/2013,10/03/2013,10/03/2013 01:49:56 PM,10/03/2013 01:50:35 PM,10/03/2013 01:51:58 PM,10/03/2013 01:54:51 PM,10/03/2013 02:03:10 PM,04/25/2016 01:50:27 PM,04/25/2016 01:50:27 PM,Medical Examiner,10/03/2013 02:27:52 PM,400 Block of GONZALEZ DR,SF,94132,B08,19,8481,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,8,7,Lakeshore,"(37.7162110914239, -122.47657722537)",132760187-RC3 -102860240,74,10091170,Medical Incident,10/13/2010,10/13/2010,10/13/2010 01:52:19 PM,10/13/2010 01:52:22 PM,10/13/2010 01:54:11 PM,10/13/2010 01:58:24 PM,10/13/2010 02:10:09 PM,10/13/2010 02:38:52 PM,10/13/2010 02:59:39 PM,Code 2 Transport,10/13/2010 03:30:30 PM,800 Block of BRYANT ST,SF,94103,B03,8,2255,3,2,2,true,,1,MEDIC,2,3,6,South of Market,"(37.775420706711, -122.403404791479)",102860240-74 -112330359,RC3,11077101,Medical Incident,08/21/2011,08/21/2011,08/21/2011 10:00:00 PM,08/21/2011 10:01:04 PM,08/21/2011 10:01:25 PM,08/21/2011 10:04:52 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,04/25/2016 02:03:03 PM,Other,08/21/2011 10:10:14 PM,200 Block of MAYNARD ST,SF,94112,B09,32,5683,3,E,3,true,,1,RESCUE CAPTAIN,3,9,11,Excelsior,"(37.7295080178827, -122.424915560486)",112330359-RC3 -130310389,85,13010749,Medical Incident,01/31/2013,01/31/2013,01/31/2013 10:09:40 PM,01/31/2013 10:11:13 PM,01/31/2013 10:11:24 PM,01/31/2013 10:12:30 PM,01/31/2013 10:16:59 PM,01/31/2013 10:32:23 PM,01/31/2013 10:39:59 PM,Code 2 Transport,01/31/2013 11:04:34 PM,HALLECK ST/FRONT ST,SF,94111,B01,13,1141,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7938436808993, -122.398880419272)",130310389-85 -122970323,E43,12098611,Structure Fire,10/23/2012,10/23/2012,10/23/2012 11:00:09 PM,10/23/2012 11:01:09 PM,10/23/2012 11:02:06 PM,10/23/2012 11:03:17 PM,10/23/2012 11:04:53 PM,04/25/2016 01:56:09 PM,04/25/2016 01:56:09 PM,Other,10/24/2012 12:09:41 AM,700 Block of BRAZIL AVE,SF,94112,B09,43,6141,3,3,3,false,Fire,1,ENGINE,1,9,11,Excelsior,"(37.7218773777782, -122.428805087546)",122970323-E43 -130900335,75,13030255,Medical Incident,03/31/2013,03/31/2013,03/31/2013 09:57:23 PM,03/31/2013 09:57:46 PM,03/31/2013 09:58:30 PM,03/31/2013 09:58:51 PM,03/31/2013 10:04:15 PM,03/31/2013 10:28:05 PM,03/31/2013 10:35:19 PM,Code 2 Transport,03/31/2013 11:04:20 PM,300 Block of BUCHANAN ST,SF,94102,B02,36,3422,E,3,3,true,Non Life-threatening,1,MEDIC,2,2,5,Hayes Valley,"(37.7727724965726, -122.42714120155)",130900335-75 -112660253,D3,11087937,Structure Fire,09/23/2011,09/23/2011,09/23/2011 03:42:17 PM,09/23/2011 03:42:52 PM,09/23/2011 03:43:16 PM,09/23/2011 03:44:15 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,04/25/2016 02:02:31 PM,Other,09/23/2011 03:47:52 PM,1400 Block of NOE ST,SF,94131,B06,11,5561,3,3,3,false,,1,CHIEF,6,6,8,Noe Valley,"(37.746224292878, -122.431437413776)",112660253-D3 -131210071,E14,13040560,Medical Incident,05/01/2013,04/30/2013,05/01/2013 05:32:22 AM,05/01/2013 05:33:13 AM,05/01/2013 05:33:36 AM,05/01/2013 05:35:12 AM,05/01/2013 05:38:20 AM,04/25/2016 01:53:02 PM,04/25/2016 01:53:02 PM,Other,05/01/2013 05:43:27 AM,600 Block of 33RD AVE,SF,94121,B07,14,7244,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,7,1,Outer Richmond,"(37.7768451560253, -122.493036901379)",131210071-E14 -133430358,T15,13116466,Structure Fire,12/09/2013,12/09/2013,12/09/2013 08:31:44 PM,12/09/2013 08:33:54 PM,12/09/2013 08:47:46 PM,12/09/2013 08:48:57 PM,12/09/2013 08:56:27 PM,04/25/2016 01:49:21 PM,04/25/2016 01:49:21 PM,Other,12/10/2013 02:00:13 AM,400 Block of TUNNEL AVE,SF,94134,B10,44,6271,3,3,3,false,Fire,2,TRUCK,16,10,10,Bayview Hunters Point,"(37.7091116111849, -122.401261222882)",133430358-T15 -103410291,E40,10109198,Medical Incident,12/07/2010,12/07/2010,12/07/2010 05:19:26 PM,12/07/2010 05:20:17 PM,12/07/2010 05:21:10 PM,12/07/2010 05:22:11 PM,12/07/2010 05:24:53 PM,04/25/2016 02:07:14 PM,04/25/2016 02:07:14 PM,Other,12/07/2010 05:41:04 PM,1600 Block of 19TH AVE,SF,94122,B08,40,7422,3,2,2,false,,1,ENGINE,1,8,4,Sunset/Parkside,"(37.7570337296554, -122.476758437009)",103410291-E40 -102970420,E44,10094960,Medical Incident,10/24/2010,10/24/2010,10/24/2010 08:28:55 PM,10/24/2010 08:31:10 PM,10/24/2010 08:31:24 PM,10/24/2010 08:32:20 PM,10/24/2010 08:35:28 PM,04/25/2016 02:07:56 PM,04/25/2016 02:07:56 PM,Other,10/24/2010 08:52:43 PM,800 Block of RUTLAND ST,SF,94134,B09,44,6256,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.712002001307, -122.407607975966)",102970420-E44 -160572231,AM08,16022807,Medical Incident,02/26/2016,02/26/2016,02/26/2016 03:09:17 PM,02/26/2016 03:10:32 PM,02/26/2016 03:20:51 PM,02/26/2016 03:21:09 PM,02/26/2016 03:37:12 PM,02/26/2016 03:44:11 PM,02/26/2016 04:23:36 PM,Code 2 Transport,02/26/2016 04:52:37 PM,200 Block of HARBOR RD,San Francisco,94124,B10,17,6627,2,2,2,false,Non Life-threatening,1,PRIVATE,1,10,10,Bayview Hunters Point,"(37.7323221031776, -122.378384992247)",160572231-AM08 -102750266,RC3,10087433,Medical Incident,10/02/2010,10/02/2010,10/02/2010 05:10:00 PM,10/02/2010 05:11:07 PM,10/02/2010 05:11:25 PM,10/02/2010 05:12:10 PM,10/02/2010 05:20:29 PM,04/25/2016 02:08:18 PM,04/25/2016 02:08:18 PM,Other,10/02/2010 05:32:30 PM,700 Block of COLBY ST,SF,94134,B09,42,6321,3,3,3,true,,1,RESCUE CAPTAIN,2,9,9,Portola,"(37.7208522281711, -122.41069801237)",102750266-RC3 -160743695,66,16029490,Medical Incident,03/14/2016,03/14/2016,03/14/2016 09:11:20 PM,03/14/2016 09:12:41 PM,03/14/2016 09:17:12 PM,03/14/2016 09:17:23 PM,03/14/2016 09:50:32 PM,03/14/2016 09:51:05 PM,03/14/2016 09:51:43 PM,Code 2 Transport,03/14/2016 10:29:15 PM,2300 Block of POST ST,San Francisco,94115,B05,10,4235,2,2,2,false,Non Life-threatening,1,MEDIC,1,5,5,Japantown,"(37.784128648418, -122.440738860354)",160743695-66 -160591017,85,16023452,Medical Incident,02/28/2016,02/28/2016,02/28/2016 09:47:03 AM,02/28/2016 09:48:20 AM,02/28/2016 09:48:32 AM,02/28/2016 09:48:51 AM,02/28/2016 09:55:51 AM,02/28/2016 10:20:51 AM,02/28/2016 10:33:42 AM,Code 2 Transport,02/28/2016 11:11:08 AM,0 Block of STANLEY ST,San Francisco,94132,B09,33,8375,2,2,2,true,Non Life-threatening,1,MEDIC,1,9,11,Oceanview/Merced/Ingleside,"(37.7125743442401, -122.463030494503)",160591017-85 -160910691,64,16035987,Medical Incident,03/31/2016,03/31/2016,03/31/2016 08:08:25 AM,03/31/2016 08:09:25 AM,03/31/2016 08:09:38 AM,03/31/2016 08:09:47 AM,03/31/2016 08:18:43 AM,03/31/2016 08:34:00 AM,03/31/2016 08:51:12 AM,Code 2 Transport,03/31/2016 09:24:04 AM,500 Block of MARKET ST,San Francisco,94104,B03,1,2109,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7890636112201, -122.40180312648)",160910691-64 -123200260,E06,12106440,Medical Incident,11/15/2012,11/15/2012,11/15/2012 04:35:02 PM,11/15/2012 04:36:17 PM,11/15/2012 04:36:28 PM,11/15/2012 04:37:13 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,04/25/2016 01:55:47 PM,Other,11/15/2012 04:39:53 PM,600 Block of VALENCIA ST,SF,94110,B02,7,5247,3,3,3,true,Non Life-threatening,1,ENGINE,3,2,8,Mission,"(37.7621357066004, -122.421689426887)",123200260-E06 -130280285,AM04,13009685,Medical Incident,01/28/2013,01/28/2013,01/28/2013 04:28:16 PM,01/28/2013 04:29:37 PM,01/28/2013 04:30:13 PM,01/28/2013 04:30:35 PM,01/28/2013 04:40:19 PM,04/25/2016 01:54:34 PM,04/25/2016 01:54:34 PM,Patient Declined Transport,01/28/2013 05:19:59 PM,0 Block of DEVONSHIRE WAY,SF,94131,B08,20,5375,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,8,7,Inner Sunset,"(37.7548014466049, -122.460926386356)",130280285-AM04 -103640006,KM15,10116615,Medical Incident,12/30/2010,12/29/2010,12/30/2010 12:44:13 AM,12/30/2010 12:44:43 AM,12/30/2010 12:45:15 AM,12/30/2010 12:48:23 AM,12/30/2010 12:50:30 AM,12/30/2010 01:06:07 AM,12/30/2010 01:11:20 AM,Code 2 Transport,12/30/2010 01:27:52 AM,300 Block of TURK ST,SF,94102,B02,3,1554,3,2,2,false,,1,PRIVATE,2,2,6,Tenderloin,"(37.7826355124294, -122.414862827314)",103640006-KM15 -120610374,54,12020218,Medical Incident,03/01/2012,03/01/2012,03/01/2012 11:13:17 PM,03/01/2012 11:14:06 PM,03/01/2012 11:14:44 PM,03/01/2012 11:14:51 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,04/25/2016 01:59:53 PM,Other,03/01/2012 11:15:30 PM,300 Block of OFARRELL ST,SF,94102,B01,1,1452,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,3,6,Tenderloin,"(37.7860452016122, -122.410493503888)",120610374-54 -112350306,RC2,11077649,Medical Incident,08/23/2011,08/23/2011,08/23/2011 05:41:42 PM,08/23/2011 05:42:43 PM,08/23/2011 05:43:24 PM,04/25/2016 02:03:02 PM,08/23/2011 05:52:20 PM,04/25/2016 02:03:02 PM,04/25/2016 02:03:02 PM,Other,08/23/2011 05:52:22 PM,3200 Block of BALBOA ST,SF,94121,B07,14,7244,3,1,2,true,,1,RESCUE CAPTAIN,3,7,1,Outer Richmond,"(37.7758315059397, -122.493570130284)",112350306-RC2 -160160323,64,16006272,Medical Incident,01/16/2016,01/15/2016,01/16/2016 02:31:13 AM,01/16/2016 02:31:13 AM,01/16/2016 02:35:20 AM,01/16/2016 02:35:28 AM,01/16/2016 02:52:49 AM,01/16/2016 03:41:51 AM,01/16/2016 03:41:51 AM,Code 2 Transport,01/16/2016 04:14:14 AM,600 Block of GREENWICH ST,San Francisco,94133,B01,28,1335,2,2,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8022928848666, -122.410091524049)",160160323-64 -120840346,81,12028043,Medical Incident,03/24/2012,03/24/2012,03/24/2012 09:00:07 PM,03/24/2012 09:01:20 PM,03/24/2012 09:01:40 PM,03/24/2012 09:01:50 PM,03/24/2012 09:10:42 PM,04/25/2016 01:59:30 PM,04/25/2016 01:59:30 PM,Other,03/24/2012 09:12:16 PM,100 Block of COLUMBUS AVE,SF,94133,B01,13,1246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Chinatown,"(37.7969454448277, -122.405446187756)",120840346-81 -123220046,99,12106919,Medical Incident,11/17/2012,11/16/2012,11/17/2012 02:16:19 AM,11/17/2012 02:17:02 AM,11/17/2012 02:17:14 AM,11/17/2012 02:17:40 AM,11/17/2012 02:23:36 AM,04/25/2016 01:55:46 PM,04/25/2016 01:55:46 PM,No Merit,11/17/2012 02:49:19 AM,2200 Block of MARKET ST,SF,94114,B05,6,5231,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,8,Castro/Upper Market,"(37.7651266166274, -122.432177660654)",123220046-99 -111940258,T13,11064114,Explosion,07/13/2011,07/13/2011,07/13/2011 05:10:28 PM,07/13/2011 05:11:50 PM,07/13/2011 05:13:48 PM,07/13/2011 05:14:58 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,04/25/2016 02:03:41 PM,Other,07/13/2011 06:00:50 PM,THE EMBARCADERO/WASHINGTON ST,SF,94111,B01,13,903,3,3,3,false,,1,TRUCK,4,1,3,Financial District/South Beach,"(37.7966828949467, -122.395405269908)",111940258-T13 -120250013,E36,12008258,Structure Fire,01/25/2012,01/24/2012,01/25/2012 12:50:25 AM,01/25/2012 12:50:25 AM,01/25/2012 12:50:34 AM,01/25/2012 12:52:14 AM,01/25/2012 12:53:39 AM,04/25/2016 02:00:27 PM,04/25/2016 02:00:27 PM,Other,01/25/2012 12:53:41 AM,0 Block of HAIGHT ST,SF,94102,B02,36,3311,3,3,3,true,Alarm,1,ENGINE,1,2,5,Hayes Valley,"(37.7730976142378, -122.42211684621)",120250013-E36 -132920274,B03,13099448,Alarms,10/19/2013,10/19/2013,10/19/2013 05:24:28 PM,10/19/2013 05:25:34 PM,10/19/2013 05:26:06 PM,10/19/2013 05:26:26 PM,10/19/2013 05:28:42 PM,04/25/2016 01:50:11 PM,04/25/2016 01:50:11 PM,Other,10/19/2013 05:34:18 PM,100 Block of 4TH ST,SF,94103,B03,1,2213,3,3,3,false,Alarm,1,CHIEF,1,3,6,Financial District/South Beach,"(37.7843007072344, -122.4039407276)",132920274-B03 -131800290,T15,13061295,Structure Fire,06/29/2013,06/29/2013,06/29/2013 04:17:48 PM,06/29/2013 04:17:48 PM,06/29/2013 04:17:56 PM,06/29/2013 04:19:12 PM,06/29/2013 04:21:03 PM,04/25/2016 01:52:03 PM,04/25/2016 01:52:03 PM,Other,06/29/2013 04:30:53 PM,200 Block of ONEIDA AVE,SF,94112,B09,15,828,3,3,3,false,Alarm,1,TRUCK,2,9,11,Outer Mission,"(37.7218642111521, -122.442994070235)",131800290-T15 -160832567,KM01,16033019,Medical Incident,03/23/2016,03/23/2016,03/23/2016 03:36:57 PM,03/23/2016 03:41:14 PM,03/23/2016 03:42:32 PM,03/23/2016 03:42:52 PM,03/23/2016 04:00:36 PM,03/23/2016 04:09:16 PM,03/23/2016 04:35:27 PM,Code 2 Transport,03/23/2016 04:58:43 PM,7TH ST/MARKET ST,San Francisco,94103,B02,36,2316,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,South of Market,"(37.7804785121736, -122.412512257219)",160832567-KM01 -102730168,E26,10086668,Explosion,09/30/2010,09/30/2010,09/30/2010 12:01:45 PM,09/30/2010 12:04:11 PM,09/30/2010 12:04:54 PM,09/30/2010 12:05:58 PM,09/30/2010 12:08:05 PM,04/25/2016 02:08:20 PM,04/25/2016 02:08:20 PM,Other,09/30/2010 12:17:22 PM,5300 Block of DIAMOND HEIGHTS BLVD,SF,94131,B06,26,8162,3,3,3,true,,1,ENGINE,1,6,8,Noe Valley,"(37.7427922572896, -122.436288012893)",102730168-E26 -122140327,B02,12071141,Alarms,08/01/2012,08/01/2012,08/01/2012 07:40:44 PM,08/01/2012 07:43:23 PM,08/01/2012 07:43:42 PM,08/01/2012 07:44:46 PM,08/01/2012 07:46:03 PM,04/25/2016 01:57:26 PM,04/25/2016 01:57:26 PM,Other,08/01/2012 07:52:46 PM,400 Block of FULTON ST,SF,94102,B02,36,3264,3,3,3,false,Alarm,1,CHIEF,2,2,5,Western Addition,"(37.7784874810642, -122.425830802433)",122140327-B02 -160362656,KM08,16014332,Medical Incident,02/05/2016,02/05/2016,02/05/2016 03:53:55 PM,02/05/2016 03:53:55 PM,02/05/2016 04:03:13 PM,02/05/2016 04:03:43 PM,02/05/2016 04:16:34 PM,02/05/2016 04:33:41 PM,02/05/2016 05:12:04 PM,Code 2 Transport,02/05/2016 06:42:40 PM,SACRAMENTO ST/FRONT ST,San Francisco,94111,B99,13,1141,2,2,2,false,Non Life-threatening,1,PRIVATE,2,1,3,Financial District/South Beach,"(37.7942844147597, -122.398970255404)",160362656-KM08 -132430085,E18,13081912,Medical Incident,08/31/2013,08/30/2013,08/31/2013 05:41:20 AM,08/31/2013 05:42:01 AM,08/31/2013 05:42:20 AM,08/31/2013 05:44:07 AM,08/31/2013 05:48:36 AM,04/25/2016 01:51:02 PM,04/25/2016 01:51:02 PM,Other,08/31/2013 06:00:09 AM,2300 Block of 26TH AVE,SF,94116,B08,40,7471,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7436566730271, -122.483188286669)",132430085-E18 -140880056,82,14029534,Medical Incident,03/29/2014,03/28/2014,03/29/2014 03:24:39 AM,03/29/2014 03:25:06 AM,03/29/2014 03:25:46 AM,03/29/2014 03:26:04 AM,03/29/2014 03:30:26 AM,03/29/2014 03:40:38 AM,03/29/2014 03:46:49 AM,Code 3 Transport,03/29/2014 05:00:01 AM,700 Block of 9TH AVE,SAN FRANCISCO,94118,B07,31,7133,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,7,1,Inner Richmond,"(37.7742900963357, -122.466949914852)",140880056-82 -131840019,B02,13062553,Structure Fire,07/03/2013,07/02/2013,07/03/2013 01:51:12 AM,07/03/2013 01:51:12 AM,07/03/2013 01:51:29 AM,07/03/2013 01:53:24 AM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,04/25/2016 01:51:59 PM,Fire,07/03/2013 01:56:50 AM,FRANKLIN ST/MCALLISTER ST,SF,94102,B02,36,3215,3,3,3,false,Alarm,1,CHIEF,3,2,5,Western Addition,"(37.7798901049166, -122.42189157233)",131840019-B02 -110220128,E44,11007223,Medical Incident,01/22/2011,01/22/2011,01/22/2011 11:12:25 AM,01/22/2011 11:13:41 AM,01/22/2011 11:13:53 AM,01/22/2011 11:14:52 AM,01/22/2011 11:17:40 AM,04/25/2016 02:06:28 PM,04/25/2016 02:06:28 PM,Other,01/22/2011 11:33:47 AM,0 Block of RAYMOND AVE,SF,94134,B10,44,6255,3,3,3,true,,1,ENGINE,1,9,10,Visitacion Valley,"(37.712247130223, -122.404227071159)",110220128-E44 -160762718,58,16030237,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:30:51 PM,03/16/2016 04:31:42 PM,03/16/2016 04:32:02 PM,03/16/2016 04:34:28 PM,03/16/2016 04:36:28 PM,03/16/2016 04:57:42 PM,03/16/2016 05:04:28 PM,Code 2 Transport,03/16/2016 05:43:47 PM,1200 Block of 15TH ST,San Francisco,94103,B02,29,5217,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7668153988578, -122.412689745025)",160762718-58 -112400260,E03,11079266,Medical Incident,08/28/2011,08/28/2011,08/28/2011 05:27:08 PM,08/28/2011 05:27:35 PM,08/28/2011 05:27:44 PM,08/28/2011 05:29:02 PM,08/28/2011 05:29:50 PM,04/25/2016 02:02:57 PM,04/25/2016 02:02:57 PM,Other,08/28/2011 05:40:37 PM,1300 Block of POLK ST,SF,94109,B04,3,3122,3,2,2,true,,1,ENGINE,1,4,3,Nob Hill,"(37.7889233553137, -122.420422400634)",112400260-E03 -122400215,59,12079466,Medical Incident,08/27/2012,08/27/2012,08/27/2012 02:14:35 PM,08/27/2012 02:16:16 PM,08/27/2012 02:34:28 PM,08/27/2012 02:35:09 PM,08/27/2012 02:46:26 PM,08/27/2012 03:01:45 PM,08/27/2012 03:11:40 PM,Code 2 Transport,08/27/2012 03:30:33 PM,500 Block of GATES ST,SF,94110,B06,32,5737,1,1,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7365134852854, -122.414087632815)",122400215-59 -132620328,E31,13088868,Alarms,09/19/2013,09/19/2013,09/19/2013 07:28:17 PM,09/19/2013 07:31:17 PM,09/19/2013 07:31:25 PM,09/19/2013 07:32:48 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,04/25/2016 01:50:42 PM,Other,09/19/2013 08:02:06 PM,700 Block of 6TH AVE,SF,94118,B07,31,7132,3,3,3,false,Alarm,1,ENGINE,3,7,1,Inner Richmond,"(37.7744933641566, -122.463881451148)",132620328-E31 -130390342,83,13013442,Medical Incident,02/08/2013,02/08/2013,02/08/2013 07:35:40 PM,02/08/2013 07:37:13 PM,02/08/2013 07:37:45 PM,02/08/2013 07:37:59 PM,02/08/2013 07:48:29 PM,02/08/2013 08:07:42 PM,02/08/2013 08:17:52 PM,Code 2 Transport,02/08/2013 08:37:04 PM,FILLMORE ST/CHESTNUT ST,SF,94123,B04,16,3554,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Marina,"(37.800814143599, -122.436273910168)",130390342-83 -102460046,94,10077622,Medical Incident,09/03/2010,09/02/2010,09/03/2010 02:48:26 AM,09/03/2010 02:50:33 AM,09/03/2010 02:51:08 AM,09/03/2010 02:51:16 AM,09/03/2010 02:53:31 AM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,No Merit,09/03/2010 02:55:40 AM,MASONIC AV/TURK BL,SF,94118,B05,10,4461,3,3,3,true,,1,MEDIC,1,5,2,Lone Mountain/USF,"(37.7786223076413, -122.447039805009)",102460046-94 -110540149,T15,11017789,Administrative,02/23/2011,02/23/2011,02/23/2011 11:16:07 AM,02/23/2011 11:16:11 AM,02/23/2011 11:17:05 AM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,04/25/2016 02:05:56 PM,Other,02/23/2011 11:17:42 AM,1000 Block of OCEAN AVE,SF,94112,B09,15,8224,3,3,3,false,,1,TRUCK,1,9,7,West of Twin Peaks,"(37.7234296370586, -122.453582402345)",110540149-T15 -160363804,63,16014443,Medical Incident,02/05/2016,02/05/2016,02/05/2016 09:14:17 PM,02/05/2016 09:14:17 PM,02/05/2016 09:22:05 PM,02/05/2016 09:22:05 PM,02/05/2016 09:38:07 PM,02/05/2016 09:41:22 PM,02/05/2016 10:11:43 PM,Code 2 Transport,02/05/2016 10:31:14 PM,0 Block of THE EMBARCADERO,San Francisco,94105,B99,35,902,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7930284747689, -122.39192878449)",160363804-63 -160772047,65,16030607,Medical Incident,03/17/2016,03/17/2016,03/17/2016 01:32:47 PM,03/17/2016 01:34:01 PM,03/17/2016 02:20:20 PM,03/17/2016 02:20:29 PM,03/17/2016 02:31:48 PM,03/17/2016 02:37:41 PM,03/17/2016 02:55:12 PM,Code 2 Transport,03/17/2016 03:29:39 PM,LINCOLN WY/MARTIN LUTHER KING DR,San Francisco,94122,B08,23,7722,2,2,2,true,Non Life-threatening,1,MEDIC,3,7,4,Sunset/Parkside,"(37.7640327352749, -122.509402191592)",160772047-65 -160473744,AM20,16019137,Medical Incident,02/16/2016,02/16/2016,02/16/2016 09:37:55 PM,02/16/2016 09:39:14 PM,02/16/2016 10:09:13 PM,02/16/2016 10:10:07 PM,02/16/2016 10:17:23 PM,02/16/2016 10:30:35 PM,02/16/2016 11:08:12 PM,Code 2 Transport,02/16/2016 11:08:24 PM,300 Block of GOLDEN GATE AVE,San Francisco,94102,B02,3,1644,2,2,2,false,Non Life-threatening,1,PRIVATE,3,2,6,Tenderloin,"(37.7816051272704, -122.416336251796)",160473744-AM20 -160763668,89,16030338,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:22:36 PM,03/16/2016 08:22:36 PM,03/16/2016 08:23:01 PM,03/16/2016 08:23:24 PM,03/16/2016 08:26:55 PM,03/16/2016 08:44:18 PM,03/16/2016 08:51:56 PM,Code 2 Transport,03/16/2016 09:08:48 PM,0 Block of HOFF ST,San Francisco,94110,B02,7,5236,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7641898782543, -122.420437704275)",160763668-89 -103070242,T08,10098284,Structure Fire,11/03/2010,11/03/2010,11/03/2010 12:35:55 PM,11/03/2010 12:35:55 PM,11/03/2010 12:36:53 PM,11/03/2010 12:37:18 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,04/25/2016 02:07:46 PM,Other,11/03/2010 12:38:51 PM,4TH ST/BRYANT ST,SF,94107,B03,8,2217,3,3,3,false,,1,TRUCK,2,3,6,South of Market,"(37.7795669099357, -122.398059940086)",103070242-T08 -160313041,53,16012299,Medical Incident,01/31/2016,01/31/2016,01/31/2016 06:41:06 PM,01/31/2016 06:42:19 PM,01/31/2016 06:45:58 PM,01/31/2016 06:46:10 PM,01/31/2016 06:56:35 PM,01/31/2016 07:15:56 PM,01/31/2016 07:26:02 PM,Code 2 Transport,01/31/2016 08:19:37 PM,900 Block of ELLSWORTH ST,San Francisco,94110,B06,32,5645,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7329246461891, -122.416428557838)",160313041-53 -132190197,B03,13073958,Alarms,08/07/2013,08/07/2013,08/07/2013 01:14:07 PM,08/07/2013 01:15:31 PM,08/07/2013 01:15:42 PM,08/07/2013 01:17:06 PM,08/07/2013 01:19:58 PM,04/25/2016 01:51:25 PM,04/25/2016 01:51:25 PM,Other,08/07/2013 01:28:34 PM,0 Block of BAYSIDE VILLAGE PL,SF,94107,B03,8,2134,3,3,3,false,Alarm,1,CHIEF,2,3,6,Financial District/South Beach,"(37.784851966461, -122.389795266719)",132190197-B03 -133380084,B01,13114468,Alarms,12/04/2013,12/04/2013,12/04/2013 09:06:08 AM,12/04/2013 09:07:20 AM,12/04/2013 09:07:36 AM,12/04/2013 09:08:59 AM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,04/25/2016 01:49:27 PM,Other,12/04/2013 09:13:58 AM,100 Block of PINE ST,SF,94111,B01,13,1136,3,3,3,false,Alarm,1,CHIEF,3,1,3,Financial District/South Beach,"(37.792387312641, -122.399186604536)",133380084-B01 -112900194,KM04,11096222,Traffic Collision,10/17/2011,10/17/2011,10/17/2011 01:31:24 PM,10/17/2011 01:31:27 PM,10/17/2011 01:32:02 PM,10/17/2011 01:32:38 PM,10/17/2011 01:48:30 PM,10/17/2011 01:57:08 PM,10/17/2011 02:06:50 PM,Code 2 Transport,10/17/2011 02:43:30 PM,16TH ST/VERMONT ST,SF,94103,B02,29,2421,3,3,3,false,,1,PRIVATE,2,2,10,Mission,"(37.7659581887586, -122.404623338223)",112900194-KM04 -110680392,65,11022477,Traffic Collision,03/09/2011,03/09/2011,03/09/2011 07:04:48 PM,03/09/2011 07:04:52 PM,03/09/2011 07:05:07 PM,03/09/2011 07:05:22 PM,03/09/2011 07:14:24 PM,03/09/2011 07:26:20 PM,03/09/2011 07:40:13 PM,Code 2 Transport,03/09/2011 08:05:40 PM,MANSELL ST/GIRARD ST,SF,94134,B10,44,6277,3,3,3,true,,1,MEDIC,2,10,9,Portola,"(37.7212774521739, -122.402056471876)",110680392-65 -140730280,85,14024723,Medical Incident,03/14/2014,03/14/2014,03/14/2014 04:42:55 PM,03/14/2014 04:43:17 PM,03/14/2014 04:43:53 PM,03/14/2014 04:44:52 PM,03/14/2014 04:53:51 PM,04/25/2016 01:47:44 PM,04/25/2016 01:47:44 PM,Patient Declined Transport,03/14/2014 05:35:39 PM,0 Block of MINERVA ST,SAN FRANCISCO,94112,B09,33,8372,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7156899151892, -122.454796659779)",140730280-85 -160433477,AM18,16017469,Medical Incident,02/12/2016,02/12/2016,02/12/2016 08:55:49 PM,02/12/2016 08:55:49 PM,02/12/2016 08:56:13 PM,02/12/2016 08:56:54 PM,02/12/2016 09:10:23 PM,02/12/2016 09:18:57 PM,02/12/2016 09:36:03 PM,Code 2 Transport,02/12/2016 10:16:37 PM,13TH ST/HARRISON ST,San Francisco,94103,B05,36,5112,2,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Mission,"(37.7695020049208, -122.413385239835)",160433477-AM18 -111030317,E36,11034249,Medical Incident,04/13/2011,04/13/2011,04/13/2011 07:11:54 PM,04/13/2011 07:12:25 PM,04/13/2011 07:12:52 PM,04/13/2011 07:14:15 PM,04/13/2011 07:16:15 PM,04/25/2016 02:05:07 PM,04/25/2016 02:05:07 PM,Other,04/13/2011 07:27:59 PM,1800 Block of MARKET ST,SF,94102,B02,36,3416,3,2,2,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7718686531861, -122.423577776472)",111030317-E36 -111430114,E12,11047475,Medical Incident,05/23/2011,05/23/2011,05/23/2011 09:52:11 AM,05/23/2011 09:53:53 AM,05/23/2011 09:54:05 AM,05/23/2011 09:54:50 AM,05/23/2011 09:58:33 AM,04/25/2016 02:04:29 PM,04/25/2016 02:04:29 PM,Other,05/23/2011 10:05:05 AM,600 Block of CLAYTON ST,SF,94117,B05,12,4525,3,3,3,true,,1,ENGINE,1,5,5,Haight Ashbury,"(37.7693399647388, -122.448415933543)",111430114-E12 -121820325,E01,12060728,Outside Fire,06/30/2012,06/30/2012,06/30/2012 07:48:14 PM,06/30/2012 07:49:02 PM,06/30/2012 07:49:57 PM,06/30/2012 07:51:06 PM,06/30/2012 07:52:58 PM,04/25/2016 01:57:56 PM,04/25/2016 01:57:56 PM,Fire,06/30/2012 07:55:22 PM,MARKET ST/NEW MONTGOMERY ST,SF,94105,B01,13,1236,3,3,3,true,Fire,1,ENGINE,1,3,6,Financial District/South Beach,"(37.7887211505214, -122.402065731707)",121820325-E01 -112020410,93,11066829,Medical Incident,07/21/2011,07/21/2011,07/21/2011 09:30:20 PM,07/21/2011 09:31:41 PM,07/21/2011 09:32:10 PM,07/21/2011 09:32:23 PM,07/21/2011 09:34:06 PM,07/21/2011 09:51:14 PM,07/21/2011 09:55:04 PM,Code 3 Transport,07/21/2011 10:31:43 PM,0 Block of 7TH AVE,SF,94118,B07,31,7126,3,3,3,true,,1,MEDIC,1,7,2,Inner Richmond,"(37.7874460327418, -122.465750262786)",112020410-93 -122460378,87,12081524,Medical Incident,09/02/2012,09/02/2012,09/02/2012 09:49:44 PM,09/02/2012 09:49:59 PM,09/02/2012 09:50:16 PM,09/02/2012 09:50:21 PM,04/25/2016 01:56:57 PM,09/02/2012 10:04:34 PM,09/02/2012 10:14:44 PM,Code 2 Transport,09/02/2012 10:43:31 PM,700 Block of HARRISON ST,SF,94107,B03,8,2175,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,South of Market,"(37.7821372491619, -122.397814506334)",122460378-87 -120830072,T09,12027478,Structure Fire,03/23/2012,03/23/2012,03/23/2012 08:05:27 AM,03/23/2012 08:05:27 AM,03/23/2012 08:05:47 AM,03/23/2012 08:06:19 AM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,04/25/2016 01:59:32 PM,Other,03/23/2012 08:10:49 AM,2700 Block of BRYANT ST,SF,94110,B06,9,553,3,3,3,false,Alarm,1,TRUCK,3,6,9,Mission,"(37.750396573149, -122.408970541511)",120830072-T09 -103530100,T13,10113252,Alarms,12/19/2010,12/18/2010,12/19/2010 04:34:16 AM,12/19/2010 04:38:28 AM,12/19/2010 04:38:41 AM,12/19/2010 04:40:38 AM,12/19/2010 04:44:04 AM,04/25/2016 02:07:02 PM,04/25/2016 02:07:02 PM,Other,12/19/2010 04:49:03 AM,700 Block of COMMERCIAL ST,SF,94108,B01,13,1244,3,3,3,false,,1,TRUCK,2,1,3,Chinatown,"(37.793872317337, -122.405454714295)",103530100-T13 -121320223,AM12,12043946,Structure Fire,05/11/2012,05/11/2012,05/11/2012 02:08:20 PM,05/11/2012 02:09:07 PM,05/11/2012 02:09:19 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,04/25/2016 01:58:44 PM,Other,05/11/2012 02:14:50 PM,400 Block of 1ST ST,SF,94105,B03,35,2136,3,3,3,false,Fire,1,PRIVATE,12,3,6,Financial District/South Beach,"(37.7858304240068, -122.392540509434)",121320223-AM12 -110880153,KM04,11029023,Medical Incident,03/29/2011,03/29/2011,03/29/2011 11:20:29 AM,03/29/2011 11:20:50 AM,03/29/2011 11:21:15 AM,03/29/2011 11:21:44 AM,03/29/2011 11:25:18 AM,04/25/2016 02:05:23 PM,04/25/2016 02:05:23 PM,Patient Declined Transport,03/29/2011 11:28:59 AM,800 Block of MARKET ST,SF,94103,B03,1,2212,3,3,3,false,,1,PRIVATE,3,3,6,South of Market,"(37.7842056749338, -122.407612731809)",110880153-KM04 -132990275,54,13101667,Medical Incident,10/26/2013,10/26/2013,10/26/2013 04:40:45 PM,10/26/2013 04:42:39 PM,10/26/2013 04:42:57 PM,10/26/2013 04:46:18 PM,10/26/2013 04:52:12 PM,10/26/2013 04:54:10 PM,10/26/2013 05:16:03 PM,Code 2 Transport,10/26/2013 05:29:58 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,1,1,2,true,Non Life-threatening,1,MEDIC,1,2,9,Mission,"(37.7697208630457, -122.417949217834)",132990275-54 -160762688,52,16030234,Medical Incident,03/16/2016,03/16/2016,03/16/2016 04:25:39 PM,03/16/2016 04:27:19 PM,03/16/2016 04:30:25 PM,03/16/2016 04:30:31 PM,03/16/2016 04:52:14 PM,03/16/2016 05:01:00 PM,03/16/2016 05:30:08 PM,Code 2 Transport,03/16/2016 06:04:06 PM,2500 Block of 3RD ST,San Francisco,94107,B10,25,2533,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Potrero Hill,"(37.7566800066504, -122.387999428154)",160762688-52 -160912166,71,16036115,Medical Incident,03/31/2016,03/31/2016,03/31/2016 03:03:22 PM,03/31/2016 03:03:22 PM,03/31/2016 03:04:14 PM,03/31/2016 03:05:42 PM,03/31/2016 03:11:25 PM,03/31/2016 03:23:01 PM,03/31/2016 03:43:07 PM,Code 2 Transport,03/31/2016 04:07:13 PM,1400 Block of OAKDALE AV,San Francisco,94124,B10,17,6534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7329556345708, -122.387590806567)",160912166-71 -160822108,KM09,16032596,Medical Incident,03/22/2016,03/22/2016,03/22/2016 02:13:38 PM,03/22/2016 02:16:02 PM,03/22/2016 02:16:13 PM,03/22/2016 02:16:49 PM,03/22/2016 02:25:46 PM,03/22/2016 02:45:08 PM,03/22/2016 03:15:41 PM,Code 2 Transport,03/22/2016 03:46:07 PM,1500 Block of VISITACION AV,San Francisco,94134,B09,44,6263,2,2,2,false,Non Life-threatening,1,PRIVATE,2,9,10,Visitacion Valley,"(37.7130646230493, -122.413927298654)",160822108-KM09 -102240318,E01,10070662,Medical Incident,08/12/2010,08/12/2010,08/12/2010 08:14:03 PM,08/12/2010 08:16:11 PM,08/12/2010 08:16:22 PM,08/12/2010 08:17:12 PM,08/12/2010 08:18:42 PM,04/25/2016 02:09:06 PM,04/25/2016 02:09:06 PM,Other,08/12/2010 08:29:03 PM,900 Block of HOWARD ST,SF,94103,B03,1,2252,3,3,3,true,,1,ENGINE,1,3,6,South of Market,"(37.7803475492385, -122.406487967809)",102240318-E01 -103640233,D2,10116805,Smoke Investigation (Outside),12/30/2010,12/30/2010,12/30/2010 02:54:17 PM,12/30/2010 02:55:09 PM,12/30/2010 02:55:39 PM,12/30/2010 02:59:09 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,04/25/2016 02:06:51 PM,Other,12/30/2010 03:01:36 PM,1300 Block of STOCKTON ST,SF,94133,B01,2,1333,3,3,3,false,,1,CHIEF,7,1,3,Chinatown,"(37.7980908086732, -122.408781847072)",103640233-D2 -160233353,71,16009314,Medical Incident,01/23/2016,01/23/2016,01/23/2016 08:37:10 PM,01/23/2016 08:37:10 PM,01/23/2016 08:37:42 PM,01/23/2016 08:37:47 PM,01/23/2016 08:56:05 PM,01/23/2016 09:17:32 PM,01/23/2016 09:33:23 PM,Code 2 Transport,01/23/2016 09:45:05 PM,18TH ST/CASTRO ST,San Francisco,94114,B05,6,5415,2,2,2,true,Non Life-threatening,1,MEDIC,1,5,8,Castro/Upper Market,"(37.7608889330375, -122.435000702713)",160233353-71 -110940245,E13,11031257,Medical Incident,04/04/2011,04/04/2011,04/04/2011 03:46:20 PM,04/04/2011 03:47:05 PM,04/04/2011 03:47:51 PM,04/04/2011 03:48:52 PM,04/04/2011 03:50:27 PM,04/04/2011 04:06:08 PM,04/25/2016 02:05:16 PM,Other,04/04/2011 04:22:04 PM,800 Block of MONTGOMERY ST,SF,94133,B01,13,1232,3,3,3,true,,1,ENGINE,1,1,3,Chinatown,"(37.7969934198176, -122.40354422656)",110940245-E13 -131290255,T09,13043659,Other,05/09/2013,05/09/2013,05/09/2013 04:31:25 PM,05/09/2013 04:32:04 PM,05/09/2013 04:32:26 PM,05/09/2013 04:34:15 PM,05/09/2013 04:37:31 PM,04/25/2016 01:52:53 PM,04/25/2016 01:52:53 PM,Other,05/09/2013 04:49:30 PM,700 Block of PENNSYLVANIA AVE,SF,94107,B10,37,2536,3,3,3,false,Alarm,1,TRUCK,3,10,10,Potrero Hill,"(37.7563691529514, -122.393072356473)",131290255-T09 -110590343,E36,11019517,Structure Fire,02/28/2011,02/28/2011,02/28/2011 08:47:46 PM,02/28/2011 08:47:46 PM,02/28/2011 08:48:04 PM,02/28/2011 08:49:07 PM,02/28/2011 08:50:53 PM,04/25/2016 02:05:51 PM,04/25/2016 02:05:51 PM,Other,02/28/2011 08:51:33 PM,8TH ST/MARKET ST,SF,94103,B02,1,2317,3,3,3,true,,1,ENGINE,1,2,6,Tenderloin,"(37.778719428853, -122.414741223022)",110590343-E36 -160473550,55,16019116,Medical Incident,02/16/2016,02/16/2016,02/16/2016 08:40:27 PM,02/16/2016 08:42:00 PM,02/16/2016 08:42:46 PM,02/16/2016 08:43:38 PM,02/16/2016 08:56:40 PM,02/16/2016 09:01:49 PM,02/16/2016 09:10:38 PM,Code 2 Transport,02/16/2016 09:51:23 PM,300 Block of 5TH ST,San Francisco,94107,B03,8,2243,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7792067028319, -122.402159463556)",160473550-55 -140890024,85,14029836,Medical Incident,03/30/2014,03/29/2014,03/30/2014 01:27:44 AM,03/30/2014 01:28:46 AM,03/30/2014 01:28:56 AM,03/30/2014 01:29:24 AM,03/30/2014 01:41:05 AM,03/30/2014 01:44:42 AM,04/25/2016 01:47:29 PM,Code 2 Transport,03/30/2014 02:17:28 AM,500 Block of JACKSON ST,SAN FRANCISCO,94133,B03,13,1232,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Chinatown,"(37.7964140386351, -122.403965295719)",140890024-85 -160021144,52,16000698,Medical Incident,01/02/2016,01/02/2016,01/02/2016 10:52:18 AM,01/02/2016 10:53:05 AM,01/02/2016 10:53:26 AM,01/02/2016 10:53:39 AM,01/02/2016 10:57:32 AM,01/02/2016 11:18:56 AM,01/02/2016 11:35:52 AM,Code 2 Transport,01/02/2016 12:29:01 PM,400 Block of LEAVENWORTH ST,San Francisco,94109,B04,3,1544,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7851111081788, -122.414592038343)",160021144-52 -112000302,E09,11066048,Medical Incident,07/19/2011,07/19/2011,07/19/2011 07:05:19 PM,07/19/2011 07:06:04 PM,07/19/2011 07:07:08 PM,07/19/2011 07:09:15 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,04/25/2016 02:03:35 PM,Other,07/19/2011 07:10:47 PM,0 Block of NORTHRIDGE RD,SF,94124,B10,17,6633,3,3,3,true,,1,ENGINE,3,10,10,Bayview Hunters Point,"(37.730806609582, -122.375512968635)",112000302-E09 -112710212,75,11089554,Structure Fire,09/28/2011,09/28/2011,09/28/2011 01:07:13 PM,09/28/2011 01:07:43 PM,09/28/2011 01:07:59 PM,09/28/2011 01:09:05 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,04/25/2016 02:02:26 PM,Other,09/28/2011 01:14:21 PM,100 Block of TAYLOR ST,SF,94102,B03,1,1453,3,3,3,true,,1,MEDIC,8,3,6,Tenderloin,"(37.7836863385082, -122.410789885334)",112710212-75 -140940348,T03,14031743,Medical Incident,04/04/2014,04/04/2014,04/04/2014 09:01:27 PM,04/04/2014 09:02:47 PM,04/04/2014 09:03:15 PM,04/04/2014 09:04:47 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,04/25/2016 01:47:23 PM,Code 2 Transport,04/04/2014 09:05:18 PM,1300 Block of PINE ST,SAN FRANCISCO,94109,B04,41,1562,,3,3,false,Potentially Life-Threatening,1,TRUCK,2,4,3,Nob Hill,"(37.7898833513674, -122.418012422783)",140940348-T03 -160461995,71,16018543,Medical Incident,02/15/2016,02/15/2016,02/15/2016 02:17:44 PM,02/15/2016 02:20:34 PM,02/15/2016 02:21:19 PM,02/15/2016 02:21:28 PM,02/15/2016 02:27:55 PM,02/15/2016 02:51:06 PM,02/15/2016 03:00:43 PM,Code 2 Transport,02/15/2016 04:26:04 PM,400 Block of 7TH ST,San Francisco,94103,B03,8,231,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7746534767072, -122.405118197249)",160461995-71 -160280379,62,16010958,Medical Incident,01/28/2016,01/27/2016,01/28/2016 05:00:07 AM,01/28/2016 05:03:52 AM,01/28/2016 05:07:30 AM,01/28/2016 05:07:30 AM,01/28/2016 05:18:57 AM,01/28/2016 05:38:04 AM,01/28/2016 05:51:38 AM,Code 2 Transport,01/28/2016 06:40:11 AM,200 Block of WOODSIDE AVE,San Francisco,94131,B08,39,8645,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,7,Twin Peaks,"(37.7459562953856, -122.454239907613)",160280379-62 -110470283,73,11015610,Medical Incident,02/16/2011,02/16/2011,02/16/2011 05:10:18 PM,02/16/2011 05:11:18 PM,02/16/2011 05:11:33 PM,02/16/2011 05:11:38 PM,02/16/2011 05:19:06 PM,02/16/2011 05:32:52 PM,02/16/2011 05:51:08 PM,Code 2 Transport,02/16/2011 06:04:43 PM,500 Block of BEACH ST,SF,94133,B01,28,1521,3,3,3,true,,1,MEDIC,3,1,3,North Beach,"(37.8070220097095, -122.418095295202)",110470283-73 -130620166,93,13020755,Medical Incident,03/03/2013,03/03/2013,03/03/2013 11:19:34 AM,03/03/2013 11:20:58 AM,03/03/2013 11:21:55 AM,03/03/2013 11:22:18 AM,03/03/2013 11:27:25 AM,03/03/2013 11:39:37 AM,03/03/2013 12:04:34 PM,Code 2 Transport,03/03/2013 12:30:01 PM,0 Block of 12TH ST,SF,94103,B02,36,3212,2,2,2,false,Potentially Life-Threatening,1,MEDIC,1,2,6,Mission,"(37.7740948566882, -122.420001436964)",130620166-93 -110200359,64,11006747,Medical Incident,01/20/2011,01/20/2011,01/20/2011 08:05:01 PM,01/20/2011 08:05:53 PM,01/20/2011 08:06:58 PM,04/25/2016 02:06:30 PM,01/20/2011 08:07:11 PM,04/25/2016 02:06:30 PM,04/25/2016 02:06:30 PM,Patient Declined Transport,01/20/2011 08:41:35 PM,200 Block of WILLIAMS AVE,SF,94124,B10,42,6474,2,2,2,true,,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",110200359-64 -113060143,54,11101613,Medical Incident,11/02/2011,11/02/2011,11/02/2011 10:39:38 AM,11/02/2011 10:40:18 AM,11/02/2011 10:41:54 AM,11/02/2011 10:44:29 AM,11/02/2011 10:51:07 AM,11/02/2011 11:19:05 AM,11/02/2011 11:39:44 AM,Code 2 Transport,11/02/2011 12:14:47 PM,600 Block of ALABAMA ST,SF,94110,B02,7,5426,3,3,3,true,,1,MEDIC,2,6,9,Mission,"(37.7610105720239, -122.411919466827)",113060143-54 -131980142,78,13067109,Medical Incident,07/17/2013,07/17/2013,07/17/2013 12:05:08 PM,07/17/2013 12:05:58 PM,07/17/2013 12:07:08 PM,07/17/2013 12:07:19 PM,07/17/2013 12:11:50 PM,04/25/2016 01:51:46 PM,04/25/2016 01:51:46 PM,Against Medical Advice,07/17/2013 12:45:31 PM,900 Block of FILLMORE ST,SF,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",131980142-78 -160873106,85,16034713,Medical Incident,03/27/2016,03/27/2016,03/27/2016 07:44:20 PM,03/27/2016 07:45:22 PM,03/27/2016 07:46:21 PM,03/27/2016 07:46:31 PM,03/27/2016 07:59:59 PM,03/27/2016 08:25:16 PM,03/27/2016 08:45:31 PM,Code 2 Transport,03/27/2016 09:17:36 PM,1200 Block of CAYUGA AVE,San Francisco,94112,B09,15,8332,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Outer Mission,"(37.7194539615998, -122.442784699149)",160873106-85 -140920136,KM02,14030868,Medical Incident,04/02/2014,04/02/2014,04/02/2014 11:02:31 AM,04/02/2014 11:04:23 AM,04/02/2014 11:04:54 AM,04/02/2014 11:05:24 AM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,No Merit,04/02/2014 11:12:09 AM,800 Block of VAN NESS AVE,SAN FRANCISCO,94109,B02,3,3163,3,2,2,false,Non Life-threatening,1,PRIVATE,2,2,6,Tenderloin,"(37.7831362095396, -122.420713503363)",140920136-KM02 -113010186,KM05,11099840,Medical Incident,10/28/2011,10/28/2011,10/28/2011 12:39:27 PM,10/28/2011 12:41:53 PM,10/28/2011 12:43:41 PM,10/28/2011 12:45:34 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,04/25/2016 02:01:56 PM,Other,10/28/2011 12:52:27 PM,0 Block of CAMEO WAY,SF,94131,B06,26,8167,3,3,3,false,,1,PRIVATE,2,6,8,Noe Valley,"(37.7451004204518, -122.44437393249)",113010186-KM05 -110390220,T18,11012958,Structure Fire,02/08/2011,02/08/2011,02/08/2011 02:18:39 PM,02/08/2011 02:19:26 PM,02/08/2011 02:20:07 PM,02/08/2011 02:21:55 PM,02/08/2011 02:29:07 PM,04/25/2016 02:06:11 PM,04/25/2016 02:06:11 PM,Other,02/08/2011 02:46:17 PM,600 Block of JOHN MUIR DR,SF,94132,B08,19,8714,3,3,3,false,,1,TRUCK,4,8,7,Lakeshore,"(37.714334813698, -122.492047871678)",110390220-T18 -160762933,76,16030255,Medical Incident,03/16/2016,03/16/2016,03/16/2016 05:14:48 PM,03/16/2016 05:16:19 PM,03/16/2016 05:16:48 PM,03/16/2016 05:17:33 PM,03/16/2016 05:27:26 PM,03/16/2016 05:46:15 PM,03/16/2016 06:03:11 PM,Code 2 Transport,03/16/2016 06:56:46 PM,4TH ST/KING ST,San Francisco,94107,B03,8,2224,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,Mission Bay,"(37.7763329756243, -122.394035065186)",160762933-76 -133200266,E13,13108798,Medical Incident,11/16/2013,11/16/2013,11/16/2013 05:28:46 PM,11/16/2013 05:31:33 PM,11/16/2013 05:32:18 PM,11/16/2013 05:32:58 PM,11/16/2013 05:36:31 PM,04/25/2016 01:49:44 PM,04/25/2016 01:49:44 PM,Other,11/16/2013 05:54:21 PM,900 Block of PACIFIC AVE,SF,94133,B01,2,1416,3,E,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Chinatown,"(37.7963970008301, -122.411316466798)",133200266-E13 -130870331,55,13029147,Structure Fire,03/28/2013,03/28/2013,03/28/2013 07:47:54 PM,03/28/2013 07:50:52 PM,03/28/2013 07:51:40 PM,03/28/2013 07:51:56 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,04/25/2016 01:53:36 PM,Other,04/25/2016 01:53:36 PM,1000 Block of BUSH ST,SF,94109,B01,41,1542,3,3,3,true,Alarm,1,MEDIC,5,1,3,Nob Hill,"(37.7893703539397, -122.414539182379)",130870331-55 -122030076,67,12067376,Medical Incident,07/21/2012,07/20/2012,07/21/2012 06:23:07 AM,07/21/2012 06:24:05 AM,07/21/2012 06:24:31 AM,04/25/2016 01:57:37 PM,07/21/2012 06:33:48 AM,07/21/2012 06:50:53 AM,07/21/2012 06:58:37 AM,Code 3 Transport,07/21/2012 07:43:13 AM,300 Block of JULES AVE,SF,94112,B09,15,8457,3,2,2,true,Potentially Life-Threatening,1,MEDIC,2,9,7,Oceanview/Merced/Ingleside,"(37.7242985678955, -122.461322675836)",122030076-67 -122790352,E05,12092375,Medical Incident,10/05/2012,10/05/2012,10/05/2012 08:32:25 PM,10/05/2012 08:33:12 PM,10/05/2012 08:33:24 PM,10/05/2012 08:34:01 PM,10/05/2012 08:35:59 PM,04/25/2016 01:56:26 PM,04/25/2016 01:56:26 PM,Other,10/05/2012 08:46:56 PM,800 Block of BRODERICK ST,SF,94115,B05,21,4242,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,5,5,Western Addition,"(37.7780577934564, -122.440051794058)",122790352-E05 -160691585,63,16027457,Medical Incident,03/09/2016,03/09/2016,03/09/2016 12:10:28 PM,03/09/2016 12:12:30 PM,03/09/2016 12:12:42 PM,03/09/2016 12:12:49 PM,03/09/2016 12:25:52 PM,03/09/2016 12:34:28 PM,03/09/2016 01:15:13 PM,Patient Declined Transport,03/09/2016 01:26:49 PM,900 Block of HOWARD ST,San Francisco,94103,B02,1,2252,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.78026973391, -122.406390271833)",160691585-63 -160501820,AM10,16020102,Medical Incident,02/19/2016,02/19/2016,02/19/2016 01:25:36 PM,02/19/2016 01:28:44 PM,02/19/2016 01:30:19 PM,02/19/2016 01:31:15 PM,02/19/2016 01:37:56 PM,02/19/2016 01:57:44 PM,02/19/2016 02:20:17 PM,Code 2 Transport,02/19/2016 02:38:47 PM,200 Block of 6TH ST,San Francisco,94103,B03,1,2252,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.7791674218963, -122.406346425632)",160501820-AM10 -160070185,71,16002668,Medical Incident,01/07/2016,01/06/2016,01/07/2016 01:52:13 AM,01/07/2016 01:52:49 AM,01/07/2016 01:53:06 AM,01/07/2016 01:53:37 AM,01/07/2016 02:02:08 AM,01/07/2016 02:27:13 AM,01/07/2016 02:35:57 AM,Code 2 Transport,01/07/2016 03:05:30 AM,2000 Block of 9TH AV,San Francisco,94116,B08,40,7337,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,8,7,West of Twin Peaks,"(37.7506578941331, -122.465459894563)",160070185-71 -131510178,E21,13051120,Administrative,05/31/2013,05/31/2013,05/31/2013 12:49:34 PM,05/31/2013 12:49:36 PM,05/31/2013 12:51:28 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,04/25/2016 01:52:31 PM,Other,05/31/2013 12:51:52 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,3,3,true,,1,ENGINE,1,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",131510178-E21 -160832580,73,16033020,Medical Incident,03/23/2016,03/23/2016,03/23/2016 03:43:40 PM,03/23/2016 03:45:20 PM,03/23/2016 03:45:52 PM,03/23/2016 03:46:20 PM,03/23/2016 03:54:14 PM,03/23/2016 04:10:16 PM,03/23/2016 04:19:03 PM,Code 2 Transport,03/23/2016 04:56:22 PM,100 Block of BAYSHORE BL,San Francisco,94124,B10,9,6375,2,2,2,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7442404125332, -122.404295624531)",160832580-73 -160700389,79,16027721,Medical Incident,03/10/2016,03/09/2016,03/10/2016 05:29:13 AM,03/10/2016 05:29:51 AM,03/10/2016 05:30:11 AM,03/10/2016 05:30:21 AM,03/10/2016 05:33:06 AM,03/10/2016 05:42:42 AM,03/10/2016 05:52:13 AM,Code 2 Transport,03/10/2016 06:18:16 AM,3RD ST/NEWCOMB AV,San Francisco,94124,B10,17,6516,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.735590521652, -122.390416266224)",160700389-79 -140140078,RC2,14004715,Medical Incident,01/14/2014,01/14/2014,01/14/2014 08:06:36 AM,01/14/2014 08:07:37 AM,01/14/2014 08:09:33 AM,01/14/2014 08:11:13 AM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,04/25/2016 01:48:44 PM,Other,01/14/2014 08:14:13 AM,1600 Block of DIVISADERO ST,SF,94115,B04,10,4131,,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,5,5,Japantown,"(37.7847979838284, -122.439663867351)",140140078-RC2 -140810303,T03,14027468,Medical Incident,03/22/2014,03/22/2014,03/22/2014 07:24:36 PM,03/22/2014 07:26:14 PM,03/22/2014 07:26:55 PM,03/22/2014 07:28:12 PM,03/22/2014 07:32:15 PM,04/25/2016 01:47:36 PM,04/25/2016 01:47:36 PM,No Merit,03/22/2014 07:33:21 PM,500 Block of JONES ST,SAN FRANCISCO,94102,B01,3,1462,2,2,2,false,Non Life-threatening,1,TRUCK,1,1,6,Tenderloin,"(37.7862684417162, -122.412997235896)",140810303-T03 -120910312,RS1,12030244,Medical Incident,03/31/2012,03/31/2012,03/31/2012 08:17:34 PM,03/31/2012 08:17:34 PM,03/31/2012 08:17:34 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,04/25/2016 01:59:24 PM,No Merit,03/31/2012 08:19:20 PM,600 Block of HOWARD ST,SF,94105,B03,1,2177,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,3,6,Financial District/South Beach,"(37.7855036769789, -122.399967861076)",120910312-RS1 -110990262,E37,11032947,Traffic Collision,04/09/2011,04/09/2011,04/09/2011 04:50:39 PM,04/09/2011 04:52:47 PM,04/09/2011 04:55:01 PM,04/09/2011 04:56:01 PM,04/09/2011 05:02:11 PM,04/25/2016 02:05:11 PM,04/25/2016 02:05:11 PM,Other,04/09/2011 05:10:13 PM,100 Block of AVENUE C,SF,94130,B10,9,2626,3,3,3,true,,1,ENGINE,3,None,6,Treasure Island,"(37.8191759206681, -122.371099890575)",110990262-E37 -123010172,T10,12099781,Alarms,10/27/2012,10/27/2012,10/27/2012 12:15:43 PM,10/27/2012 12:15:52 PM,10/27/2012 12:16:04 PM,10/27/2012 12:17:32 PM,10/27/2012 12:20:20 PM,04/25/2016 01:56:06 PM,04/25/2016 01:56:06 PM,Other,10/27/2012 12:24:16 PM,100 Block of PALM AVE,SF,94118,B07,10,4446,3,3,3,false,Alarm,1,TRUCK,2,7,2,Presidio Heights,"(37.7825976745462, -122.457758842214)",123010172-T10 -130530015,D2,13017778,Structure Fire,02/22/2013,02/21/2013,02/22/2013 01:46:08 AM,02/22/2013 01:46:55 AM,02/22/2013 01:47:27 AM,02/22/2013 01:50:05 AM,02/22/2013 01:50:59 AM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Other,02/22/2013 01:54:28 AM,1000 Block of FRANKLIN ST,SF,94109,B02,3,3221,3,3,3,false,Alarm,1,CHIEF,6,2,5,Western Addition,"(37.7843237549349, -122.422723433199)",130530015-D2 -122030185,E03,12067468,Structure Fire,07/21/2012,07/21/2012,07/21/2012 01:06:30 PM,07/21/2012 01:06:31 PM,07/21/2012 01:07:24 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,04/25/2016 01:57:37 PM,Other,07/21/2012 01:11:02 PM,10TH ST/MISSION ST,SF,94103,B02,36,2341,3,3,3,true,Alarm,1,ENGINE,1,2,6,South of Market,"(37.7752720593077, -122.415908181241)",122030185-E03 -110470152,E18,11015505,Medical Incident,02/16/2011,02/16/2011,02/16/2011 10:33:00 AM,02/16/2011 10:35:29 AM,02/16/2011 10:35:49 AM,02/16/2011 10:36:07 AM,02/16/2011 10:39:56 AM,04/25/2016 02:06:03 PM,04/25/2016 02:06:03 PM,Other,02/16/2011 10:48:11 AM,1500 Block of 20TH AVE,SF,94122,B08,22,7423,3,3,3,true,,1,ENGINE,2,8,4,Sunset/Parkside,"(37.7588490098905, -122.47794097509)",110470152-E18 -132170030,E32,13073183,Medical Incident,08/05/2013,08/04/2013,08/05/2013 02:17:11 AM,08/05/2013 02:20:17 AM,08/05/2013 02:20:46 AM,08/05/2013 02:22:03 AM,08/05/2013 02:25:13 AM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/05/2013 02:36:20 AM,1300 Block of VALENCIA ST,SF,94110,B06,11,5535,E,E,3,true,Potentially Life-Threatening,1,ENGINE,2,6,9,Mission,"(37.7513090308287, -122.420516937429)",132170030-E32 -103350187,96,10107185,Structure Fire,12/01/2010,12/01/2010,12/01/2010 01:28:28 PM,12/01/2010 01:30:34 PM,12/01/2010 01:31:31 PM,12/01/2010 01:31:42 PM,12/01/2010 01:33:33 PM,04/25/2016 02:07:21 PM,04/25/2016 02:07:21 PM,Other,12/01/2010 01:37:57 PM,2100 Block of CABRILLO ST,SF,94121,B07,14,7177,3,3,3,true,,1,MEDIC,1,7,1,Outer Richmond,"(37.7746137705422, -122.481652291086)",103350187-96 -102820229,88,10089716,Medical Incident,10/09/2010,10/09/2010,10/09/2010 01:48:32 PM,10/09/2010 01:49:31 PM,10/09/2010 01:49:55 PM,10/09/2010 01:50:17 PM,10/09/2010 01:53:38 PM,10/09/2010 02:10:46 PM,10/09/2010 02:22:08 PM,Code 2 Transport,10/09/2010 02:32:59 PM,3RD ST/MISSION ROCK ST,SF,94158,B03,8,2162,3,3,3,true,,1,MEDIC,1,3,6,Mission Bay,"(37.7729307948812, -122.389716741449)",102820229-88 -160374302,70,16015004,Medical Incident,02/06/2016,02/06/2016,02/06/2016 11:48:29 PM,02/06/2016 11:49:35 PM,02/06/2016 11:50:37 PM,02/06/2016 11:50:51 PM,02/06/2016 11:59:31 PM,02/07/2016 12:16:46 AM,02/07/2016 12:35:37 AM,Code 2 Transport,02/07/2016 01:01:28 AM,PENNSYLVANIA AV/CESAR CHAVEZ ST,San Francisco,94124,B10,25,2635,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7500215081488, -122.392381993965)",160374302-70 -131070008,E01,13035822,Medical Incident,04/17/2013,04/16/2013,04/17/2013 01:08:55 AM,04/17/2013 01:10:21 AM,04/17/2013 01:10:37 AM,04/17/2013 01:12:50 AM,04/17/2013 01:16:17 AM,04/25/2016 01:53:16 PM,04/25/2016 01:53:16 PM,Other,04/17/2013 01:22:10 AM,900 Block of MARKET ST,SF,94102,B03,1,2247,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7837069301545, -122.408595110869)",131070008-E01 -121800257,E16,12059983,Medical Incident,06/28/2012,06/28/2012,06/28/2012 04:00:42 PM,06/28/2012 04:01:09 PM,06/28/2012 04:01:26 PM,06/28/2012 04:02:30 PM,06/28/2012 04:03:42 PM,04/25/2016 01:57:58 PM,04/25/2016 01:57:58 PM,Other,06/28/2012 04:06:29 PM,LOMBARD ST/PIERCE ST,SF,94123,B04,16,3656,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,2,Marina,"(37.7994253119327, -122.439336652409)",121800257-E16 -130820327,E05,13027577,Medical Incident,03/23/2013,03/23/2013,03/23/2013 09:35:52 PM,03/23/2013 09:37:05 PM,03/23/2013 09:37:20 PM,03/23/2013 09:38:42 PM,03/23/2013 09:40:44 PM,04/25/2016 01:53:40 PM,04/25/2016 01:53:40 PM,Other,03/23/2013 09:51:04 PM,900 Block of FILLMORE ST,SF,94117,B05,5,3534,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,5,5,Western Addition,"(37.7781746893869, -122.431600604901)",130820327-E05 -140250191,T02,14008577,Alarms,01/25/2014,01/25/2014,01/25/2014 02:16:08 PM,01/25/2014 02:17:03 PM,01/25/2014 02:17:19 PM,01/25/2014 02:18:25 PM,01/25/2014 02:21:13 PM,04/25/2016 01:48:32 PM,04/25/2016 01:48:32 PM,Other,01/25/2014 02:28:46 PM,2600 Block of JONES ST,SF,94133,B01,28,1521,3,3,3,false,Alarm,1,TRUCK,2,1,3,North Beach,"(37.8056853345021, -122.416914137852)",140250191-T02 -160012489,81,16000382,Medical Incident,01/01/2016,01/01/2016,01/01/2016 03:28:33 PM,01/01/2016 03:28:53 PM,01/01/2016 03:29:49 PM,01/01/2016 03:30:10 PM,01/01/2016 03:36:33 PM,01/01/2016 03:52:28 PM,01/01/2016 04:12:57 PM,Code 2 Transport,01/01/2016 04:58:18 PM,POLK ST/GEARY ST,San Francisco,94109,B04,3,3116,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,6,Tenderloin,"(37.7858929010786, -122.419738734781)",160012489-81 -160481638,67,16019323,Medical Incident,02/17/2016,02/17/2016,02/17/2016 11:59:25 AM,02/17/2016 12:00:34 PM,02/17/2016 12:01:16 PM,02/17/2016 12:01:31 PM,02/17/2016 12:06:53 PM,02/17/2016 12:18:18 PM,02/17/2016 12:41:03 PM,Code 3 Transport,02/17/2016 01:37:18 PM,300 Block of BAY ST,San Francisco,94133,B01,28,1425,2,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,North Beach,"(37.8057759671113, -122.412787887195)",160481638-67 -132170309,T03,13073407,Elevator / Escalator Rescue,08/05/2013,08/05/2013,08/05/2013 07:31:46 PM,08/05/2013 07:33:23 PM,08/05/2013 07:44:04 PM,04/25/2016 01:51:27 PM,08/05/2013 07:36:45 PM,04/25/2016 01:51:27 PM,04/25/2016 01:51:27 PM,Other,08/05/2013 07:42:05 PM,400 Block of TURK ST,SF,94102,B02,3,1554,3,3,3,true,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",132170309-T03 -130410082,67,13013938,Structure Fire,02/10/2013,02/09/2013,02/10/2013 07:22:43 AM,02/10/2013 07:23:27 AM,02/10/2013 07:23:46 AM,02/10/2013 07:24:09 AM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,04/25/2016 01:54:22 PM,Other,02/10/2013 07:33:32 AM,PINE ST/LYON ST,SF,94115,B05,10,4263,3,3,3,true,Alarm,1,MEDIC,9,5,2,Presidio Heights,"(37.7864809020092, -122.44520849167)",130410082-67 -160692284,67,16027523,Medical Incident,03/09/2016,03/09/2016,03/09/2016 03:10:15 PM,03/09/2016 03:11:47 PM,03/09/2016 03:12:16 PM,03/09/2016 03:12:22 PM,03/09/2016 03:17:11 PM,03/09/2016 03:35:13 PM,03/09/2016 03:40:03 PM,Code 2 Transport,03/09/2016 04:18:31 PM,1300 Block of GOLDEN GATE AVE,San Francisco,94115,B05,5,3625,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7795136005399, -122.432784844959)",160692284-67 -120300122,B10,12009939,Alarms,01/30/2012,01/30/2012,01/30/2012 10:49:42 AM,01/30/2012 10:50:38 AM,01/30/2012 10:50:55 AM,01/30/2012 10:51:27 AM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,04/25/2016 02:00:23 PM,Other,01/30/2012 10:55:48 AM,1100 Block of GILMAN AVE,SF,94124,B10,17,6613,3,3,3,false,Alarm,1,CHIEF,3,10,10,Bayview Hunters Point,"(37.7197791000327, -122.390985214053)",120300122-B10 -160840973,63,16033294,Medical Incident,03/24/2016,03/24/2016,03/24/2016 09:03:51 AM,03/24/2016 09:05:43 AM,03/24/2016 09:06:09 AM,03/24/2016 09:06:26 AM,03/24/2016 09:11:45 AM,03/24/2016 09:26:53 AM,03/24/2016 09:45:59 AM,Code 2 Transport,03/24/2016 10:05:35 AM,2700 Block of 20TH ST,San Francisco,94110,B06,7,5451,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7592211417293, -122.408416599356)",160840973-63 -160832381,81,16033005,Medical Incident,03/23/2016,03/23/2016,03/23/2016 02:52:54 PM,03/23/2016 02:54:26 PM,03/23/2016 02:54:49 PM,03/23/2016 02:55:26 PM,03/23/2016 03:03:35 PM,03/23/2016 03:14:54 PM,03/23/2016 03:42:47 PM,Code 2 Transport,03/23/2016 04:05:27 PM,100 Block of GOLDEN GATE AVE,San Francisco,94102,B99,51,4616,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",160832381-81 -113470196,E07,11115113,Medical Incident,12/13/2011,12/13/2011,12/13/2011 12:09:18 PM,12/13/2011 12:11:16 PM,12/13/2011 12:11:28 PM,12/13/2011 12:12:13 PM,12/13/2011 12:13:15 PM,04/25/2016 02:01:10 PM,04/25/2016 02:01:10 PM,Other,12/13/2011 12:21:59 PM,2800 Block of 22ND ST,SF,94110,B06,7,5474,3,3,3,true,,1,ENGINE,1,6,9,Mission,"(37.7559148150977, -122.411740426812)",113470196-E07 -130450360,E42,13015399,Medical Incident,02/14/2013,02/14/2013,02/14/2013 07:21:43 PM,02/14/2013 07:22:29 PM,02/14/2013 07:22:35 PM,04/25/2016 01:54:18 PM,02/14/2013 07:25:51 PM,04/25/2016 01:54:18 PM,04/25/2016 01:54:18 PM,Other,02/14/2013 07:44:53 PM,2100 Block of QUESADA AVE,SF,94124,B10,42,6431,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,10,10,Bayview Hunters Point,"(37.7380740515754, -122.399915418902)",130450360-E42 -112720268,71,11090008,Medical Incident,09/29/2011,09/29/2011,09/29/2011 05:23:57 PM,09/29/2011 05:26:07 PM,09/29/2011 05:26:36 PM,09/29/2011 05:26:43 PM,09/29/2011 05:43:41 PM,09/29/2011 05:56:57 PM,09/29/2011 06:07:23 PM,Code 2 Transport,09/29/2011 06:35:24 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,1,1,2,true,,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",112720268-71 -131280075,E13,13043189,Medical Incident,05/08/2013,05/07/2013,05/08/2013 06:51:47 AM,05/08/2013 06:55:29 AM,05/08/2013 06:56:10 AM,05/08/2013 06:57:31 AM,05/08/2013 07:11:03 AM,04/25/2016 01:52:54 PM,04/25/2016 01:52:54 PM,Other,05/08/2013 07:13:14 AM,MONTGOMERY ST/JACKSON ST,SF,94111,B01,13,1232,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,1,3,Chinatown,"(37.7964174850191, -122.403496710989)",131280075-E13 -112320142,RS1,11076559,Water Rescue,08/20/2011,08/20/2011,08/20/2011 11:29:06 AM,08/20/2011 11:29:51 AM,08/20/2011 11:30:37 AM,08/20/2011 11:32:09 AM,08/20/2011 11:45:47 AM,04/25/2016 02:03:05 PM,04/25/2016 02:03:05 PM,Other,08/20/2011 12:05:50 PM,100 Block of GOLDEN GATE AVE,SF,94102,B99,51,4616,3,3,3,false,,1,RESCUE SQUAD,6,2,6,Tenderloin,"(37.7820224371777, -122.413054148253)",112320142-RS1 -102740039,95,10086902,Medical Incident,10/01/2010,09/30/2010,10/01/2010 06:19:52 AM,10/01/2010 06:21:56 AM,10/01/2010 06:22:34 AM,10/01/2010 06:24:31 AM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,04/25/2016 02:08:19 PM,Other,10/01/2010 06:27:12 AM,2200 Block of 29TH AVE,SF,94116,B08,18,7521,3,3,3,true,,1,MEDIC,3,8,4,Sunset/Parkside,"(37.7453793393915, -122.486530653618)",102740039-95 -131360431,E01,13046084,Medical Incident,05/16/2013,05/16/2013,05/16/2013 10:07:23 PM,05/16/2013 10:08:47 PM,05/16/2013 10:09:35 PM,05/16/2013 10:10:33 PM,05/16/2013 10:13:14 PM,04/25/2016 01:52:46 PM,04/25/2016 01:52:46 PM,Other,05/16/2013 10:20:43 PM,100 Block of MASON ST,SF,94102,B03,1,1366,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7848074092563, -122.409471690917)",131360431-E01 -160380813,84,16015111,Medical Incident,02/07/2016,02/06/2016,02/07/2016 06:28:48 AM,02/07/2016 06:29:45 AM,02/07/2016 06:29:51 AM,02/07/2016 06:30:01 AM,02/07/2016 06:33:43 AM,02/07/2016 06:38:39 AM,02/07/2016 07:03:05 AM,Code 2 Transport,02/07/2016 07:43:05 AM,800 Block of HOWARD ST,San Francisco,94103,B03,1,2214,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,3,6,South of Market,"(37.7823404680537, -122.40377191669)",160380813-84 -113380306,E33,11112117,Medical Incident,12/04/2011,12/04/2011,12/04/2011 05:30:50 PM,12/04/2011 05:33:31 PM,12/04/2011 05:33:58 PM,12/04/2011 05:35:50 PM,12/04/2011 05:38:33 PM,04/25/2016 02:01:19 PM,04/25/2016 02:01:19 PM,Other,12/04/2011 06:01:15 PM,600 Block of HURON AVE,SF,94112,B09,33,8347,3,3,3,true,,1,ENGINE,1,9,11,Outer Mission,"(37.7128899249347, -122.448417920722)",113380306-E33 -113110348,T05,11103481,Structure Fire,11/07/2011,11/07/2011,11/07/2011 09:40:09 PM,11/07/2011 09:40:09 PM,11/07/2011 09:41:25 PM,11/07/2011 09:42:59 PM,11/07/2011 09:45:34 PM,04/25/2016 02:01:45 PM,04/25/2016 02:01:45 PM,Other,11/07/2011 09:51:59 PM,2300 Block of BUCHANAN ST,SF,94115,B04,38,343,3,3,3,false,,1,TRUCK,2,4,2,Pacific Heights,"(37.7915602793959, -122.43107146433)",113110348-T05 -160811875,KM04,16032186,Medical Incident,03/21/2016,03/21/2016,03/21/2016 01:28:03 PM,03/21/2016 01:28:03 PM,03/21/2016 01:28:22 PM,03/21/2016 01:30:05 PM,03/21/2016 01:36:03 PM,03/21/2016 01:50:26 PM,03/21/2016 02:04:00 PM,Code 2 Transport,03/21/2016 02:40:24 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,false,Non Life-threatening,1,PRIVATE,1,3,6,South of Market,"(37.7819536537257, -122.410041631816)",160811875-KM04 -133050427,54,13103826,Medical Incident,11/01/2013,11/01/2013,11/01/2013 08:41:11 PM,11/01/2013 08:44:23 PM,11/01/2013 08:47:40 PM,11/01/2013 08:48:03 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,04/25/2016 01:49:58 PM,Other,11/01/2013 08:58:48 PM,200 Block of 13TH ST,SF,94103,B02,36,5123,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,9,Mission,"(37.7697208630457, -122.417949217834)",133050427-54 -120140042,AM18,12004646,Medical Incident,01/14/2012,01/13/2012,01/14/2012 02:33:18 AM,01/14/2012 02:34:04 AM,01/14/2012 02:34:43 AM,01/14/2012 02:35:20 AM,01/14/2012 02:38:59 AM,01/14/2012 02:57:43 AM,01/14/2012 03:06:27 AM,Code 2 Transport,01/14/2012 03:44:45 AM,2400 Block of MISSION ST,SF,94110,B06,7,5446,1,1,2,false,Non Life-threatening,1,PRIVATE,1,6,9,Mission,"(37.7576217212029, -122.418887293065)",120140042-AM18 -160491284,61,16019697,Traffic Collision,02/18/2016,02/18/2016,02/18/2016 11:00:43 AM,02/18/2016 11:01:06 AM,02/18/2016 11:01:52 AM,02/18/2016 11:02:22 AM,02/18/2016 11:06:42 AM,02/18/2016 11:19:39 AM,02/18/2016 11:28:32 AM,Code 2 Transport,02/18/2016 12:09:48 PM,BROADWAY/BATTERY ST,San Francisco,94111,B01,13,1155,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7985800532877, -122.401051292992)",160491284-61 -130690162,83,13023027,Medical Incident,03/10/2013,03/10/2013,03/10/2013 12:47:56 PM,03/10/2013 12:49:23 PM,03/10/2013 12:49:40 PM,03/10/2013 12:50:51 PM,03/10/2013 01:00:51 PM,03/10/2013 01:18:00 PM,03/10/2013 01:45:02 PM,Code 2 Transport,03/10/2013 02:07:49 PM,100 Block of BRITTON ST,SF,94134,B09,44,6257,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,9,10,Visitacion Valley,"(37.7123293046258, -122.412607842955)",130690162-83 -130190380,E07,13006679,Citizen Assist / Service Call,01/19/2013,01/19/2013,01/19/2013 09:54:52 PM,01/19/2013 09:54:52 PM,01/19/2013 09:54:52 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,04/25/2016 01:54:43 PM,No Merit,01/19/2013 10:00:07 PM,2100 Block of FOLSOM ST,SF,94110,B02,7,5424,3,3,3,true,Alarm,1,ENGINE,1,2,9,Mission,"(37.7629022227561, -122.415007871815)",130190380-E07 -113340214,KM10,11110627,Medical Incident,11/30/2011,11/30/2011,11/30/2011 03:04:40 PM,11/30/2011 03:06:05 PM,11/30/2011 03:06:23 PM,11/30/2011 03:09:22 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,04/25/2016 02:01:23 PM,Other,11/30/2011 03:15:23 PM,600 Block of SAN JOSE AVE,SF,94110,B06,11,5577,3,3,3,false,,1,PRIVATE,2,6,8,Bernal Heights,"(37.7459390289798, -122.421805189275)",113340214-KM10 -160083461,82,16003399,Medical Incident,01/08/2016,01/08/2016,01/08/2016 08:11:35 PM,01/08/2016 08:11:35 PM,01/08/2016 08:13:04 PM,01/08/2016 08:13:28 PM,01/08/2016 08:24:57 PM,01/08/2016 08:52:35 PM,01/08/2016 09:00:38 PM,Code 2 Transport,01/08/2016 09:54:58 PM,MARKET ST/JONES ST,San Francisco,94102,B03,1,1454,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7809517634188, -122.411985370521)",160083461-82 -120790002,E11,12026083,Medical Incident,03/19/2012,03/18/2012,03/19/2012 12:01:07 AM,03/19/2012 12:02:24 AM,03/19/2012 12:03:08 AM,03/19/2012 12:04:09 AM,03/19/2012 12:06:25 AM,04/25/2016 01:59:36 PM,04/25/2016 01:59:36 PM,Other,03/19/2012 12:21:00 AM,3700 Block of CESAR CHAVEZ ST,SF,94110,B06,11,555,2,2,2,true,Potentially Life-Threatening,1,ENGINE,1,6,8,Noe Valley,"(37.7478492013456, -122.423619315765)",120790002-E11 -122410301,AM10,12079861,Medical Incident,08/28/2012,08/28/2012,08/28/2012 08:17:11 PM,08/28/2012 08:17:11 PM,08/28/2012 08:17:36 PM,08/28/2012 08:18:30 PM,08/28/2012 08:22:23 PM,08/28/2012 08:38:36 PM,08/28/2012 08:45:25 PM,Code 2 Transport,08/28/2012 09:11:46 PM,1700 Block of GOLDEN GATE AVE,SF,94115,B05,21,4242,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,5,5,Western Addition,"(37.778563562888, -122.439371787013)",122410301-AM10 -103290249,RC1,10105436,Alarms,11/25/2010,11/25/2010,11/25/2010 06:44:14 PM,11/25/2010 06:45:32 PM,11/25/2010 06:46:16 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,04/25/2016 02:07:26 PM,Other,04/25/2016 02:07:26 PM,0 Block of 6TH ST,SF,94103,B03,1,2248,3,3,3,true,,1,RESCUE CAPTAIN,5,3,6,South of Market,"(37.7815374331217, -122.409518341416)",103290249-RC1 -120660342,83,12021966,Medical Incident,03/06/2012,03/06/2012,03/06/2012 06:30:26 PM,03/06/2012 06:32:05 PM,03/06/2012 06:33:18 PM,03/06/2012 06:36:59 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,04/25/2016 01:59:48 PM,Other,03/06/2012 06:40:17 PM,GENEVA AV/SAN JOSE AV,SF,94112,B09,15,8311,1,3,3,true,Potentially Life-Threatening,1,MEDIC,4,9,11,Outer Mission,"(37.7207242250469, -122.446608647925)",120660342-83 -140070215,T06,14002510,Citizen Assist / Service Call,01/07/2014,01/07/2014,01/07/2014 01:44:12 PM,01/07/2014 01:44:12 PM,01/07/2014 01:45:11 PM,01/07/2014 01:46:27 PM,01/07/2014 01:50:59 PM,04/25/2016 01:48:50 PM,04/25/2016 01:48:50 PM,Other,01/07/2014 01:51:28 PM,3700 Block of 22ND ST,SF,94114,B06,24,5466,3,3,3,false,Alarm,1,TRUCK,1,6,8,Noe Valley,"(37.7546396842742, -122.431064347786)",140070215-T06 -110860068,E01,11028279,Medical Incident,03/27/2011,03/26/2011,03/27/2011 03:19:28 AM,03/27/2011 03:20:23 AM,03/27/2011 03:20:49 AM,03/27/2011 03:23:08 AM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,04/25/2016 02:05:25 PM,Other,03/27/2011 03:26:54 AM,MARKET ST/3RD ST,SF,94103,B01,1,1241,3,3,3,true,,1,ENGINE,2,3,6,Financial District/South Beach,"(37.7876418476067, -122.403430803415)",110860068-E01 -160763690,53,16030340,Medical Incident,03/16/2016,03/16/2016,03/16/2016 08:30:38 PM,03/16/2016 08:30:38 PM,03/16/2016 08:30:58 PM,03/16/2016 08:37:46 PM,03/16/2016 08:59:41 PM,03/16/2016 08:59:43 PM,03/16/2016 09:27:39 PM,Code 2 Transport,03/16/2016 09:55:53 PM,200 Block of MCALLISTER ST,San Francisco,94102,B02,3,1553,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.780721312022, -122.415737767164)",160763690-53 -130720251,KM04,13024049,Medical Incident,03/13/2013,03/13/2013,03/13/2013 02:58:45 PM,03/13/2013 03:00:09 PM,03/13/2013 03:01:29 PM,03/13/2013 03:02:02 PM,03/13/2013 03:04:31 PM,04/25/2016 01:53:51 PM,04/25/2016 01:53:51 PM,No Merit,03/13/2013 03:07:15 PM,SUTTER ST/POLK ST,SF,94109,B04,3,3121,2,2,2,false,Non Life-threatening,1,PRIVATE,1,4,3,Nob Hill,"(37.7877566525283, -122.420116076828)",130720251-KM04 -160824117,58,16032788,Medical Incident,03/22/2016,03/22/2016,03/22/2016 11:24:24 PM,03/22/2016 11:25:39 PM,03/22/2016 11:25:52 PM,03/22/2016 11:27:49 PM,03/22/2016 11:49:46 PM,03/22/2016 11:49:48 PM,03/22/2016 11:58:17 PM,Code 2 Transport,03/23/2016 12:42:27 AM,300 Block of CALIFORNIA ST,San Francisco,94104,B01,13,1162,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,1,3,Financial District/South Beach,"(37.7930804700514, -122.400531565134)",160824117-58 -160100395,AM20,16003901,Medical Incident,01/10/2016,01/09/2016,01/10/2016 02:56:46 AM,01/10/2016 02:59:08 AM,01/10/2016 02:59:34 AM,01/10/2016 03:00:12 AM,01/10/2016 03:06:46 AM,01/10/2016 03:16:42 AM,01/10/2016 03:27:18 AM,Code 2 Transport,01/10/2016 04:04:42 AM,1000 Block of FOLSOM ST,San Francisco,94103,B03,1,2253,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,3,6,South of Market,"(37.778254811523, -122.405834032593)",160100395-AM20 -160921049,55,16036378,Medical Incident,04/01/2016,04/01/2016,04/01/2016 09:43:24 AM,04/01/2016 09:45:54 AM,04/01/2016 09:46:22 AM,04/01/2016 09:46:30 AM,04/01/2016 09:52:00 AM,04/01/2016 10:13:13 AM,04/01/2016 10:54:38 AM,Code 2 Transport,04/01/2016 11:09:59 AM,0 Block of MEGAN DR,San Francisco,94134,B10,44,6271,3,3,3,true,Non Life-threatening,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7139716122376, -122.39845777297)",160921049-55 -120440178,E03,12014696,Medical Incident,02/13/2012,02/13/2012,02/13/2012 01:19:47 PM,02/13/2012 01:22:39 PM,02/13/2012 01:22:52 PM,04/25/2016 02:00:09 PM,02/13/2012 01:25:59 PM,04/25/2016 02:00:09 PM,04/25/2016 02:00:09 PM,Other,02/13/2012 01:41:25 PM,300 Block of LEAVENWORTH ST,SF,94109,B02,3,1545,3,3,3,true,Potentially Life-Threatening,1,ENGINE,2,2,6,Tenderloin,"(37.784181762981, -122.414404220696)",120440178-E03 -140020017,T13,14000529,Alarms,01/02/2014,01/01/2014,01/02/2014 12:55:54 AM,01/02/2014 12:57:35 AM,01/02/2014 12:57:40 AM,01/02/2014 01:00:13 AM,01/02/2014 01:01:23 AM,04/25/2016 01:48:56 PM,04/25/2016 01:48:56 PM,Other,01/02/2014 01:30:02 AM,200 Block of SANSOME ST,SF,94104,B01,13,1165,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7925930872395, -122.400961378591)",140020017-T13 -131320300,66,13044694,Medical Incident,05/12/2013,05/12/2013,05/12/2013 10:51:04 PM,05/12/2013 10:52:54 PM,05/12/2013 10:53:55 PM,05/12/2013 10:54:04 PM,05/12/2013 11:00:27 PM,05/12/2013 11:17:01 PM,05/12/2013 11:33:50 PM,Code 2 Transport,05/13/2013 12:06:48 AM,700 Block of BUSH ST,SF,94108,B01,2,1361,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,1,3,Nob Hill,"(37.79010970853, -122.409620558661)",131320300-66 -121210284,B04,12040275,Alarms,04/30/2012,04/30/2012,04/30/2012 07:13:54 PM,04/30/2012 07:14:44 PM,04/30/2012 07:14:58 PM,04/30/2012 07:16:03 PM,04/30/2012 07:19:46 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 07:34:53 PM,2600 Block of GEARY BLVD,SF,94115,B05,10,4365,3,3,3,false,Alarm,1,CHIEF,3,5,2,Lone Mountain/USF,"(37.7822483679158, -122.446592481498)",121210284-B04 -160523596,AM14,16021014,Medical Incident,02/21/2016,02/21/2016,02/21/2016 10:47:12 PM,02/21/2016 10:50:15 PM,02/21/2016 10:50:30 PM,02/21/2016 10:51:15 PM,02/21/2016 10:54:19 PM,02/21/2016 11:12:48 PM,02/21/2016 11:30:52 PM,Code 2 Transport,02/21/2016 11:51:33 PM,100 Block of COLLINGWOOD ST,San Francisco,94114,B05,6,5415,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,6,8,Castro/Upper Market,"(37.7600276030747, -122.435966427502)",160523596-AM14 -102450337,E51,10077436,Administrative,09/02/2010,09/02/2010,09/02/2010 04:27:28 PM,09/02/2010 04:27:38 PM,09/02/2010 04:28:53 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,04/25/2016 02:08:46 PM,Other,09/02/2010 04:29:21 PM,200 Block of LINCOLN BLVD,PR,94129,B99,51,4612,3,3,3,true,,1,ENGINE,1,7,2,Presidio,"(37.8016003147368, -122.456408426343)",102450337-E51 -110700295,E28,11023110,Medical Incident,03/11/2011,03/11/2011,03/11/2011 05:36:12 PM,03/11/2011 05:38:16 PM,03/11/2011 05:40:31 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,04/25/2016 02:05:41 PM,Other,03/11/2011 05:43:50 PM,400 Block of UNION ST,SF,94133,B01,28,1252,1,1,2,false,,1,ENGINE,2,1,3,North Beach,"(37.8008450193266, -122.406384274278)",110700295-E28 -123160021,88,12105026,Medical Incident,11/11/2012,11/10/2012,11/11/2012 01:12:58 AM,11/11/2012 01:14:48 AM,11/11/2012 01:15:59 AM,11/11/2012 01:16:09 AM,11/11/2012 01:23:00 AM,11/11/2012 01:41:42 AM,11/11/2012 01:51:57 AM,Code 2 Transport,11/11/2012 02:11:39 AM,1000 Block of POST ST,SF,94109,B04,3,1641,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,4,3,Nob Hill,"(37.7869869759052, -122.419110401756)",123160021-88 -140440393,KM15,14015131,Medical Incident,02/13/2014,02/13/2014,02/13/2014 08:24:32 PM,02/13/2014 08:25:22 PM,02/13/2014 08:25:42 PM,02/13/2014 08:27:03 PM,02/13/2014 08:32:00 PM,02/13/2014 08:53:11 PM,04/25/2016 01:48:13 PM,Code 2 Transport,02/13/2014 09:36:00 PM,600 Block of FUNSTON AVE,SF,94118,B07,31,7145,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,7,1,Inner Richmond,"(37.7759631712363, -122.471370431266)",140440393-KM15 -160262126,63,16010332,Medical Incident,01/26/2016,01/26/2016,01/26/2016 02:13:12 PM,01/26/2016 02:15:14 PM,01/26/2016 02:16:00 PM,01/26/2016 02:17:01 PM,01/26/2016 02:23:02 PM,01/26/2016 02:35:40 PM,01/26/2016 02:37:58 PM,Code 2 Transport,01/26/2016 03:15:50 PM,0 Block of CHURCH ST,San Francisco,94114,B02,6,3525,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,8,Hayes Valley,"(37.7699074186482, -122.429110885513)",160262126-63 -103060129,E02,10097858,Medical Incident,11/02/2010,11/01/2010,11/02/2010 06:56:03 AM,11/02/2010 06:56:50 AM,11/02/2010 06:57:17 AM,11/02/2010 07:00:47 AM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,04/25/2016 02:07:48 PM,Other,11/02/2010 07:04:00 AM,800 Block of LEAVENWORTH ST,SF,94109,B01,41,1542,3,3,3,true,,1,ENGINE,2,4,3,Nob Hill,"(37.7888452670377, -122.415346949189)",103060129-E02 -130630132,RA48,13021044,Medical Incident,03/04/2013,03/04/2013,03/04/2013 10:03:00 AM,03/04/2013 10:05:02 AM,03/04/2013 10:05:27 AM,03/04/2013 10:06:05 AM,03/04/2013 10:07:28 AM,04/25/2016 01:54:00 PM,04/25/2016 01:54:00 PM,Other,03/04/2013 10:39:27 AM,1300 Block of GATEVIEW AVE,TI,94130,B03,48,2931,2,2,2,false,Non Life-threatening,1,MEDIC,1,None,6,Treasure Island,"(37.8260212934788, -122.377066487993)",130630132-RA48 -131600239,E01,13054404,Medical Incident,06/09/2013,06/09/2013,06/09/2013 04:37:34 PM,06/09/2013 04:37:34 PM,06/09/2013 04:38:23 PM,06/09/2013 04:39:23 PM,06/09/2013 04:40:29 PM,04/25/2016 01:52:22 PM,04/25/2016 01:52:22 PM,Other,06/09/2013 04:56:53 PM,800 Block of HOWARD ST,SF,94103,B03,1,2214,E,E,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,South of Market,"(37.7824182864419, -122.403869611535)",131600239-E01 -132040147,RS1,13069063,Medical Incident,07/23/2013,07/23/2013,07/23/2013 11:26:15 AM,07/23/2013 11:27:22 AM,07/23/2013 11:27:36 AM,07/23/2013 11:28:46 AM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,04/25/2016 01:51:40 PM,Other,07/23/2013 11:30:26 AM,MARKET ST/4TH ST,SF,94103,B03,1,1322,3,3,3,false,Potentially Life-Threatening,1,RESCUE SQUAD,2,1,6,South of Market,"(37.7857439877905, -122.405831012392)",132040147-RS1 -120570129,E10,12018763,Alarms,02/26/2012,02/26/2012,02/26/2012 10:01:26 AM,02/26/2012 10:02:38 AM,02/26/2012 10:02:54 AM,02/26/2012 10:04:57 AM,02/26/2012 10:06:28 AM,04/25/2016 01:59:57 PM,04/25/2016 01:59:57 PM,Other,02/26/2012 10:26:07 AM,3100 Block of WASHINGTON ST,SF,94115,B04,10,4265,3,3,3,true,Alarm,1,ENGINE,1,4,2,Pacific Heights,"(37.7901683360744, -122.445106098836)",120570129-E10 -123430336,92,12114755,Medical Incident,12/08/2012,12/08/2012,12/08/2012 07:44:55 PM,12/08/2012 07:45:25 PM,12/08/2012 07:45:38 PM,12/08/2012 07:46:31 PM,12/08/2012 07:50:00 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,Other,12/08/2012 09:28:01 PM,3600 Block of WASHINGTON ST,SF,94118,B07,10,4433,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,7,2,Presidio Heights,"(37.7891489677203, -122.453112381719)",123430336-92 -123430356,78,12114774,Medical Incident,12/08/2012,12/08/2012,12/08/2012 09:02:29 PM,12/08/2012 09:05:22 PM,12/08/2012 09:05:27 PM,04/25/2016 01:55:24 PM,04/25/2016 01:55:24 PM,12/08/2012 09:14:44 PM,12/08/2012 09:32:46 PM,Code 2 Transport,12/08/2012 09:55:49 PM,2000 Block of MISSION ST,SF,94110,B02,7,5236,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,9,Mission,"(37.7642361189447, -122.419659842408)",123430356-78 -123450412,E03,12115520,Medical Incident,12/10/2012,12/10/2012,12/10/2012 09:26:03 PM,12/10/2012 09:26:37 PM,12/10/2012 09:26:53 PM,12/10/2012 09:33:49 PM,12/10/2012 09:35:52 PM,04/25/2016 01:55:22 PM,04/25/2016 01:55:22 PM,Other,12/10/2012 09:41:29 PM,400 Block of TURK ST,SF,94102,B02,3,1554,2,3,3,true,Potentially Life-Threatening,1,ENGINE,1,2,6,Tenderloin,"(37.7825569563078, -122.416349428183)",123450412-E03 -122110202,E44,12070105,Medical Incident,07/29/2012,07/29/2012,07/29/2012 03:36:42 PM,07/29/2012 03:38:29 PM,07/29/2012 03:38:38 PM,07/29/2012 03:39:47 PM,07/29/2012 03:44:27 PM,04/25/2016 01:57:29 PM,04/25/2016 01:57:29 PM,Other,07/29/2012 04:19:54 PM,100 Block of LOEHR ST,SF,94134,B09,44,6263,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,9,10,Visitacion Valley,"(37.71262387882, -122.413673241478)",122110202-E44 -110310155,RWC1,11010139,Water Rescue,01/31/2011,01/31/2011,01/31/2011 10:47:57 AM,01/31/2011 10:49:42 AM,01/31/2011 10:51:08 AM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,04/25/2016 02:06:20 PM,Other,01/31/2011 11:00:21 AM,1600 Block of BATTERY CHAMBERLIN RD,PR,94129,B07,51,4630,3,3,3,false,,1,SUPPORT,10,7,2,Presidio,"(37.7915253713789, -122.483480228628)",110310155-RWC1 -133170344,89,13107871,Medical Incident,11/13/2013,11/13/2013,11/13/2013 08:05:07 PM,11/13/2013 08:09:12 PM,11/13/2013 08:12:30 PM,11/13/2013 08:12:35 PM,11/13/2013 08:41:48 PM,11/13/2013 09:04:25 PM,11/13/2013 09:25:04 PM,Code 2 Transport,11/13/2013 10:00:59 PM,400 Block of SERRANO DR,SF,94132,B08,19,8581,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7190118676786, -122.480450749459)",133170344-89 -160063288,91,16002569,Medical Incident,01/06/2016,01/06/2016,01/06/2016 07:48:36 PM,01/06/2016 07:49:49 PM,01/06/2016 07:50:07 PM,01/06/2016 07:51:06 PM,01/06/2016 08:12:25 PM,01/06/2016 08:12:31 PM,01/06/2016 08:24:17 PM,Code 2 Transport,01/06/2016 09:06:09 PM,500 Block of MISSION ST,San Francisco,94105,B03,1,2145,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7890403116514, -122.398391248059)",160063288-91 -160431658,79,16017289,Medical Incident,02/12/2016,02/12/2016,02/12/2016 12:37:14 PM,02/12/2016 12:38:55 PM,02/12/2016 12:39:28 PM,02/12/2016 12:39:40 PM,02/12/2016 12:53:14 PM,02/12/2016 01:09:26 PM,02/12/2016 01:29:18 PM,Code 2 Transport,02/12/2016 02:01:24 PM,0 Block of SPEAR ST,San Francisco,94105,B03,13,2115,2,2,2,true,Non Life-threatening,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7931846001381, -122.394772478974)",160431658-79 -160680991,77,16027058,Medical Incident,03/08/2016,03/08/2016,03/08/2016 09:33:59 AM,03/08/2016 09:35:42 AM,03/08/2016 09:35:58 AM,03/08/2016 09:36:17 AM,03/08/2016 09:48:57 AM,03/08/2016 10:03:53 AM,03/08/2016 10:13:13 AM,Code 2 Transport,03/08/2016 10:51:48 AM,1600 Block of MCKINNON AVE,San Francisco,94124,B10,17,6515,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.736603270893, -122.39065556089)",160680991-77 -120590344,72,12019563,Medical Incident,02/28/2012,02/28/2012,02/28/2012 09:09:41 PM,02/28/2012 09:10:53 PM,02/28/2012 09:11:29 PM,02/28/2012 09:11:40 PM,02/28/2012 09:18:11 PM,02/28/2012 09:27:16 PM,02/28/2012 09:40:22 PM,Code 2 Transport,02/28/2012 10:07:54 PM,9TH ST/HOWARD ST,SF,94103,B02,36,2335,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,South of Market,"(37.7749917496069, -122.413161109659)",120590344-72 -120520236,E16,12017219,Structure Fire,02/21/2012,02/21/2012,02/21/2012 03:17:29 PM,02/21/2012 03:18:12 PM,02/21/2012 03:18:32 PM,02/21/2012 03:20:10 PM,02/21/2012 03:21:04 PM,04/25/2016 02:00:02 PM,04/25/2016 02:00:02 PM,Other,02/21/2012 03:25:38 PM,2900 Block of PIERCE ST,SF,94123,B04,16,3655,3,3,3,true,Fire,1,ENGINE,1,4,2,Marina,"(37.7971277939768, -122.438942016524)",120520236-E16 -133210144,KM02,13109009,Medical Incident,11/17/2013,11/17/2013,11/17/2013 11:17:01 AM,11/17/2013 11:18:27 AM,11/17/2013 11:18:36 AM,11/17/2013 11:19:23 AM,11/17/2013 11:26:20 AM,11/17/2013 11:42:07 AM,11/17/2013 11:59:45 AM,Code 2 Transport,11/17/2013 12:28:43 PM,500 Block of 4TH ST,SF,94107,B03,8,2217,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7789803526172, -122.397251222589)",133210144-KM02 -160590598,KM03,16023395,Medical Incident,02/28/2016,02/27/2016,02/28/2016 05:47:17 AM,02/28/2016 05:47:51 AM,02/28/2016 05:48:51 AM,02/28/2016 05:49:27 AM,02/28/2016 05:52:58 AM,02/28/2016 06:27:52 AM,02/28/2016 06:52:36 AM,Code 3 Transport,02/28/2016 06:53:10 AM,1600 Block of GREENWICH ST,San Francisco,94123,B04,16,3234,2,2,2,false,Non Life-threatening,1,PRIVATE,2,4,2,Marina,"(37.8002105050498, -122.426405370482)",160590598-KM03 -131430384,79,13048672,Medical Incident,05/23/2013,05/23/2013,05/23/2013 11:49:27 PM,05/23/2013 11:51:55 PM,05/23/2013 11:52:09 PM,05/23/2013 11:52:38 PM,05/24/2013 12:01:24 AM,05/24/2013 12:15:59 AM,05/24/2013 12:36:22 AM,Code 2 Transport,05/24/2013 01:04:57 AM,1700 Block of GREAT HWY,SF,94122,B08,23,7725,2,2,2,true,Non Life-threatening,1,MEDIC,1,8,4,Sunset/Parkside,"(37.7537667335741, -122.508487039053)",131430384-79 -111110110,T11,11036600,Citizen Assist / Service Call,04/21/2011,04/21/2011,04/21/2011 09:33:18 AM,04/21/2011 09:35:59 AM,04/21/2011 09:36:08 AM,04/21/2011 09:37:36 AM,04/21/2011 09:42:46 AM,04/25/2016 02:05:00 PM,04/25/2016 02:05:00 PM,Fire,04/21/2011 09:49:13 AM,500 Block of 29TH ST,SF,94131,B06,26,5565,3,3,3,false,,1,TRUCK,1,6,8,Noe Valley,"(37.7433086065189, -122.432204663379)",111110110-T11 -160492910,83,16019819,Medical Incident,02/18/2016,02/18/2016,02/18/2016 05:41:41 PM,02/18/2016 05:42:13 PM,02/18/2016 05:42:36 PM,02/18/2016 05:43:34 PM,02/18/2016 05:47:51 PM,02/18/2016 06:15:01 PM,02/18/2016 06:37:22 PM,Code 2 Transport,02/18/2016 06:56:33 PM,FOLSOM ST/23RD ST,San Francisco,94110,B06,7,5473,2,2,2,true,Potentially Life-Threatening,1,MEDIC,2,6,9,Mission,"(37.7540988828495, -122.414233510441)",160492910-83 -160282743,56,16011171,Medical Incident,01/28/2016,01/28/2016,01/28/2016 04:49:53 PM,01/28/2016 04:49:53 PM,01/28/2016 04:50:22 PM,01/28/2016 04:50:58 PM,01/28/2016 04:58:15 PM,01/28/2016 05:07:58 PM,01/28/2016 05:07:59 PM,Code 2 Transport,01/28/2016 06:36:15 PM,STOCKTON ST/OFARRELL ST,San Francisco,94108,B03,1,1322,3,3,3,true,Non Life-threatening,1,MEDIC,2,1,3,Financial District/South Beach,"(37.7866153472398, -122.406398878903)",160282743-56 -102290256,E29,10072121,Gas Leak (Natural and LP Gases),08/17/2010,08/17/2010,08/17/2010 05:06:43 PM,08/17/2010 05:08:49 PM,08/17/2010 05:12:40 PM,08/17/2010 05:13:33 PM,08/17/2010 05:15:53 PM,04/25/2016 02:09:02 PM,04/25/2016 02:09:02 PM,Other,08/17/2010 05:18:48 PM,500 Block of INDIANA ST,SF,94107,B03,29,2436,3,3,3,true,,1,ENGINE,1,3,10,Potrero Hill,"(37.7628635743307, -122.391728300741)",102290256-E29 -160160507,KM07,16006295,Medical Incident,01/16/2016,01/15/2016,01/16/2016 04:03:54 AM,01/16/2016 04:15:22 AM,01/16/2016 04:16:09 AM,01/16/2016 04:16:44 AM,01/16/2016 04:23:09 AM,01/16/2016 04:37:20 AM,01/16/2016 04:49:13 AM,Code 2 Transport,01/16/2016 05:25:16 AM,0 Block of RUSSIA AVE,San Francisco,94112,B09,43,6126,2,2,2,false,Non Life-threatening,1,PRIVATE,1,9,11,Excelsior,"(37.7214392698455, -122.436731381634)",160160507-KM07 -131120114,T13,13037631,Alarms,04/22/2013,04/22/2013,04/22/2013 09:37:11 AM,04/22/2013 09:41:30 AM,04/22/2013 09:41:51 AM,04/22/2013 09:43:39 AM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,04/25/2016 01:53:11 PM,Other,04/22/2013 09:45:18 AM,600 Block of MARKET ST,SF,94104,B01,1,1241,B,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7879269004511, -122.403246158601)",131120114-T13 -103440409,B02,10110399,Medical Incident,12/10/2010,12/10/2010,12/10/2010 09:58:01 PM,12/10/2010 09:59:12 PM,12/10/2010 09:59:52 PM,12/10/2010 10:00:17 PM,12/10/2010 10:06:14 PM,04/25/2016 02:07:11 PM,04/25/2016 02:07:11 PM,Other,12/10/2010 10:09:23 PM,200 Block of JONES ST,SF,94102,B03,1,1456,E,E,3,false,,1,CHIEF,2,2,6,Tenderloin,"(37.7834598143872, -122.412571882023)",103440409-B02 -140060376,E36,14002289,Medical Incident,01/06/2014,01/06/2014,01/06/2014 08:43:25 PM,01/06/2014 08:44:17 PM,01/06/2014 08:44:54 PM,01/06/2014 08:46:18 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,04/25/2016 01:48:51 PM,Other,01/06/2014 08:48:35 PM,1000 Block of POLK ST,SF,94109,B04,3,3121,,3,3,true,Potentially Life-Threatening,1,ENGINE,2,4,6,Tenderloin,"(37.7861172118379, -122.419854245692)",140060376-E36 -160172019,85,16006882,Medical Incident,01/17/2016,01/17/2016,01/17/2016 02:53:58 PM,01/17/2016 02:56:32 PM,01/17/2016 03:03:33 PM,01/17/2016 03:03:42 PM,01/17/2016 03:15:15 PM,01/17/2016 03:35:38 PM,01/17/2016 03:39:22 PM,Code 3 Transport,01/17/2016 05:04:39 PM,3300 Block of SACRAMENTO ST,San Francisco,94118,B04,10,4412,2,2,2,true,Non Life-threatening,1,MEDIC,2,4,2,Presidio Heights,"(37.7880275510814, -122.447804473979)",160172019-85 -160793879,AM22,16031588,Medical Incident,03/19/2016,03/19/2016,03/19/2016 09:25:19 PM,03/19/2016 09:28:42 PM,03/19/2016 09:29:48 PM,03/19/2016 09:33:11 PM,03/19/2016 09:38:23 PM,03/19/2016 09:48:21 PM,03/19/2016 10:18:48 PM,Code 2 Transport,03/19/2016 10:35:24 PM,100 Block of HYDE ST,San Francisco,94102,B02,3,1554,2,2,2,false,Non Life-threatening,1,PRIVATE,1,2,6,Tenderloin,"(37.7821283720084, -122.415531198246)",160793879-AM22 -121210184,E37,12040185,Alarms,04/30/2012,04/30/2012,04/30/2012 01:44:43 PM,04/30/2012 01:46:44 PM,04/30/2012 01:47:33 PM,04/30/2012 01:48:50 PM,04/30/2012 01:50:55 PM,04/25/2016 01:58:55 PM,04/25/2016 01:58:55 PM,Other,04/30/2012 02:01:27 PM,600 Block of TEXAS ST,SF,94107,B10,37,2541,3,3,3,false,Alarm,1,ENGINE,1,10,10,Potrero Hill,"(37.7582036208434, -122.395067693235)",121210184-E37 -131490155,KM04,13050491,Medical Incident,05/29/2013,05/29/2013,05/29/2013 11:57:19 AM,05/29/2013 11:58:48 AM,05/29/2013 11:59:42 AM,05/29/2013 12:00:30 PM,05/29/2013 12:13:12 PM,04/25/2016 01:52:33 PM,04/25/2016 01:52:33 PM,Other,05/29/2013 12:13:27 PM,MARKET ST/7TH ST,SF,94103,B03,1,1455,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,2,2,6,South of Market,"(37.7804785121736, -122.412512257219)",131490155-KM04 -160881065,56,16034883,Medical Incident,03/28/2016,03/28/2016,03/28/2016 09:37:09 AM,03/28/2016 09:38:02 AM,03/28/2016 09:38:19 AM,03/28/2016 09:38:29 AM,03/28/2016 09:46:35 AM,03/28/2016 09:58:03 AM,03/28/2016 10:22:55 AM,Code 2 Transport,03/28/2016 10:53:35 AM,100 Block of THRIFT ST,San Francisco,94112,B09,33,8465,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,9,11,Oceanview/Merced/Ingleside,"(37.7174111105122, -122.45758260608)",160881065-56 -111070062,E03,11035296,Alarms,04/17/2011,04/16/2011,04/17/2011 05:18:05 AM,04/17/2011 05:19:10 AM,04/17/2011 05:19:16 AM,04/17/2011 05:20:46 AM,04/17/2011 05:23:10 AM,04/25/2016 02:05:04 PM,04/25/2016 02:05:04 PM,Other,04/17/2011 05:27:40 AM,600 Block of HYDE ST,SF,94109,B04,3,1556,3,3,3,true,,1,ENGINE,2,4,6,Tenderloin,"(37.7867689878846, -122.416612241888)",111070062-E03 -120170346,83,12005849,Medical Incident,01/17/2012,01/17/2012,01/17/2012 09:58:49 PM,01/17/2012 10:01:56 PM,01/17/2012 10:02:08 PM,01/17/2012 10:02:20 PM,01/17/2012 10:22:17 PM,01/17/2012 10:32:28 PM,04/25/2016 02:00:35 PM,No Merit,01/17/2012 11:00:24 PM,600 Block of FRANCISCO ST,SF,94133,B01,28,1434,1,1,2,true,Non Life-threatening,1,MEDIC,1,1,3,North Beach,"(37.8044727215137, -122.415562636307)",120170346-83 -160021244,74,16000704,Medical Incident,01/02/2016,01/02/2016,01/02/2016 11:21:46 AM,01/02/2016 11:23:48 AM,01/02/2016 11:24:42 AM,01/02/2016 11:25:05 AM,01/02/2016 11:28:54 AM,01/02/2016 11:45:49 AM,01/02/2016 11:52:08 AM,Code 2 Transport,01/02/2016 12:23:05 PM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",160021244-74 -132430370,T13,13082152,Outside Fire,08/31/2013,08/31/2013,08/31/2013 09:52:46 PM,08/31/2013 09:52:47 PM,08/31/2013 09:53:09 PM,08/31/2013 09:54:22 PM,04/25/2016 01:51:01 PM,04/25/2016 01:51:01 PM,04/25/2016 01:51:01 PM,Other,08/31/2013 09:57:28 PM,300 Block of THE EMBARCADERO,SF,94111,B03,35,2112,3,3,3,false,Alarm,1,TRUCK,2,1,3,Financial District/South Beach,"(37.7980449492818, -122.396367084385)",132430370-T13 -111300081,67,11042892,Traffic Collision,05/10/2011,05/10/2011,05/10/2011 08:34:19 AM,05/10/2011 08:39:53 AM,05/10/2011 08:40:49 AM,05/10/2011 08:45:26 AM,04/25/2016 02:04:42 PM,05/10/2011 09:28:15 AM,05/10/2011 10:00:28 AM,Other,05/10/2011 11:28:17 AM,MARTIN LUTHER KING DR/25TH AV,SF,94122,B08,22,7452,2,2,2,true,,1,MEDIC,5,7,1,Golden Gate Park,"(37.76677018548, -122.482371855409)",111300081-67 -160250646,55,16009813,Medical Incident,01/25/2016,01/24/2016,01/25/2016 07:26:17 AM,01/25/2016 07:29:11 AM,01/25/2016 07:33:11 AM,01/25/2016 07:33:18 AM,01/25/2016 07:48:07 AM,01/25/2016 08:16:59 AM,01/25/2016 08:36:48 AM,Code 2 Transport,01/25/2016 09:22:16 AM,300 Block of WINFIELD ST,San Francisco,94110,B06,32,5654,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Bernal Heights,"(37.7406338647579, -122.419932449492)",160250646-55 -121860008,87,12061815,Medical Incident,07/04/2012,07/03/2012,07/04/2012 12:22:10 AM,07/04/2012 12:22:21 AM,07/04/2012 12:22:59 AM,07/04/2012 12:23:06 AM,07/04/2012 12:39:00 AM,04/25/2016 01:57:53 PM,04/25/2016 01:57:53 PM,No Merit,07/04/2012 12:44:02 AM,3100 Block of 16TH ST,SF,94110,B02,6,5235,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,8,Mission,"(37.7647586086861, -122.423602301722)",121860008-87 -130140182,KM02,13004772,Medical Incident,01/14/2013,01/14/2013,01/14/2013 12:01:49 PM,01/14/2013 12:02:36 PM,01/14/2013 12:03:24 PM,01/14/2013 12:04:05 PM,01/14/2013 12:07:32 PM,01/14/2013 12:26:49 PM,01/14/2013 12:31:10 PM,Code 2 Transport,01/14/2013 01:01:04 PM,2200 Block of GEARY BLVD,SF,94115,B05,10,4154,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,5,5,Japantown,"(37.7833263288474, -122.44032487616)",130140182-KM02 -120040126,95,12001352,Medical Incident,01/04/2012,01/04/2012,01/04/2012 10:32:46 AM,01/04/2012 10:33:35 AM,01/04/2012 10:33:54 AM,04/25/2016 02:00:47 PM,01/04/2012 10:35:44 AM,01/04/2012 10:45:36 AM,01/04/2012 10:59:16 AM,Code 2 Transport,01/04/2012 11:22:48 AM,18TH ST/SOUTH VAN NESS AV,SF,94110,B02,7,5246,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,6,9,Mission,"(37.7619675295768, -122.417178937573)",120040126-95 -102970194,B02,10094764,Alarms,10/24/2010,10/24/2010,10/24/2010 10:53:44 AM,10/24/2010 10:55:41 AM,10/24/2010 10:56:36 AM,10/24/2010 10:57:39 AM,10/24/2010 11:05:16 AM,04/25/2016 02:07:57 PM,04/25/2016 02:07:57 PM,Other,10/24/2010 11:07:03 AM,2600 Block of FRANKLIN ST,SF,94123,B04,16,3233,3,3,3,false,,1,CHIEF,3,4,2,Marina,"(37.7988009211892, -122.425787869807)",102970194-B02 -130530190,E03,13017913,Medical Incident,02/22/2013,02/22/2013,02/22/2013 01:01:38 PM,02/22/2013 01:02:27 PM,02/22/2013 01:04:19 PM,04/25/2016 01:54:10 PM,02/22/2013 01:04:56 PM,04/25/2016 01:54:10 PM,04/25/2016 01:54:10 PM,Patient Declined Transport,02/22/2013 01:17:37 PM,6TH ST/MARKET ST,SF,94102,B03,1,2248,3,2,2,true,Non Life-threatening,1,ENGINE,1,3,6,South of Market,"(37.7822305756448, -122.410292026777)",130530190-E03 -122570266,RC3,12085029,Medical Incident,09/13/2012,09/13/2012,09/13/2012 06:04:18 PM,09/13/2012 06:04:58 PM,09/13/2012 06:05:31 PM,09/13/2012 06:06:30 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,04/25/2016 01:56:47 PM,Other,09/13/2012 06:08:46 PM,1400 Block of GROVE ST,SF,94117,B05,21,4253,3,E,3,true,Potentially Life-Threatening,1,RESCUE CAPTAIN,3,5,5,Hayes Valley,"(37.7755549059479, -122.440467342038)",122570266-RC3 -133420399,E31,13116154,Structure Fire,12/08/2013,12/08/2013,12/08/2013 10:57:11 PM,12/08/2013 10:57:12 PM,12/08/2013 10:57:28 PM,12/08/2013 10:58:42 PM,12/08/2013 10:59:43 PM,04/25/2016 01:49:22 PM,04/25/2016 01:49:22 PM,Other,12/08/2013 11:00:01 PM,9TH AV/BALBOA ST,SF,94118,B07,31,7134,3,3,3,false,Alarm,1,ENGINE,1,7,1,Inner Richmond,"(37.7770878590645, -122.467220402796)",133420399-E31 -121150320,E28,12038267,Alarms,04/24/2012,04/24/2012,04/24/2012 09:26:05 PM,04/24/2012 09:28:59 PM,04/24/2012 09:29:24 PM,04/24/2012 09:29:56 PM,04/24/2012 09:32:25 PM,04/25/2016 01:59:01 PM,04/25/2016 01:59:01 PM,Other,04/24/2012 09:46:39 PM,2100 Block of TAYLOR ST,SF,94133,B01,28,1435,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.8021635809782, -122.414518425213)",121150320-E28 -102350179,T05,10073943,Alarms,08/23/2010,08/23/2010,08/23/2010 12:49:34 PM,08/23/2010 12:51:07 PM,08/23/2010 12:51:17 PM,08/23/2010 12:55:50 PM,08/23/2010 12:55:52 PM,04/25/2016 02:08:57 PM,04/25/2016 02:08:57 PM,Other,08/23/2010 01:00:15 PM,1700 Block of MCALLISTER ST,SF,94115,B05,21,4254,3,3,3,false,,1,TRUCK,1,5,5,Western Addition,"(37.7775342405103, -122.44086368266)",102350179-T05 -120300214,E41,12010022,Citizen Assist / Service Call,01/30/2012,01/30/2012,01/30/2012 03:22:00 PM,01/30/2012 03:24:43 PM,01/30/2012 03:24:51 PM,01/30/2012 03:25:39 PM,01/30/2012 03:27:22 PM,04/25/2016 02:00:22 PM,04/25/2016 02:00:22 PM,Fire,01/30/2012 03:41:04 PM,0 Block of FLORENCE ST,SF,94133,B01,41,1512,3,3,3,false,Alarm,1,ENGINE,1,1,3,Nob Hill,"(37.79744733744, -122.414804526986)",120300214-E41 -140680120,B10,14022954,Structure Fire,03/09/2014,03/09/2014,03/09/2014 10:50:39 AM,03/09/2014 10:51:44 AM,03/09/2014 10:54:13 AM,03/09/2014 10:54:13 AM,03/09/2014 10:55:06 AM,04/25/2016 01:47:50 PM,04/25/2016 01:47:50 PM,Fire,03/09/2014 11:43:21 AM,2700 Block of 24TH ST,SAN FRANCISCO,94110,B06,9,5531,3,3,3,false,Fire,1,CHIEF,5,6,9,Mission,"(37.7529342790976, -122.407745321325)",140680120-B10 -140630288,E28,14021361,Alarms,03/04/2014,03/04/2014,03/04/2014 04:41:35 PM,03/04/2014 04:43:10 PM,03/04/2014 04:43:14 PM,03/04/2014 04:44:10 PM,03/04/2014 04:46:09 PM,04/25/2016 01:47:54 PM,04/25/2016 01:47:54 PM,Fire,03/04/2014 04:54:46 PM,1000 Block of UNION ST,SF,94133,B01,28,1513,3,3,3,false,Alarm,1,ENGINE,1,1,3,Russian Hill,"(37.7995166094732, -122.416115614367)",140630288-E28 -111630248,E36,11053882,Medical Incident,06/12/2011,06/12/2011,06/12/2011 06:15:13 PM,06/12/2011 06:16:09 PM,06/12/2011 06:17:41 PM,06/12/2011 06:18:07 PM,06/12/2011 06:18:56 PM,04/25/2016 02:04:11 PM,04/25/2016 02:04:11 PM,No Merit,06/12/2011 06:35:16 PM,1600 Block of MARKET ST,SF,94102,B02,36,3311,3,3,3,true,,1,ENGINE,1,2,5,Hayes Valley,"(37.7734563328786, -122.421591110968)",111630248-E36 -123400345,58,12113551,Traffic Collision,12/05/2012,12/05/2012,12/05/2012 07:07:12 PM,12/05/2012 07:08:49 PM,12/05/2012 07:09:04 PM,12/05/2012 07:09:12 PM,12/05/2012 07:11:55 PM,12/05/2012 07:27:56 PM,12/05/2012 07:56:28 PM,Code 2 Transport,12/05/2012 08:16:15 PM,LEAVENWORTH ST/ELLIS ST,SF,94109,B04,3,1544,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7846571393065, -122.41443019938)",123400345-58 -160760431,AM02,16030004,Medical Incident,03/16/2016,03/15/2016,03/16/2016 05:33:23 AM,03/16/2016 05:35:11 AM,03/16/2016 05:37:21 AM,03/16/2016 05:38:49 AM,03/16/2016 05:44:13 AM,03/16/2016 06:10:43 AM,03/16/2016 06:20:04 AM,Code 3 Transport,03/16/2016 07:33:06 AM,1500 Block of INNES AVE,San Francisco,94124,B10,25,6532,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,10,10,Bayview Hunters Point,"(37.7388457005863, -122.387938322138)",160760431-AM02 -121970344,T11,12065658,Structure Fire,07/15/2012,07/15/2012,07/15/2012 11:34:43 PM,07/15/2012 11:35:30 PM,07/15/2012 11:36:04 PM,07/15/2012 11:38:19 PM,07/15/2012 11:42:27 PM,04/25/2016 01:57:42 PM,04/25/2016 01:57:42 PM,Other,07/16/2012 12:16:31 AM,200 Block of NEY ST,SF,94112,B09,32,5682,3,3,3,false,Fire,1,TRUCK,3,9,11,Excelsior,"(37.7301647306275, -122.424431106443)",121970344-T11 -160133071,68,16005286,Medical Incident,01/13/2016,01/13/2016,01/13/2016 05:25:39 PM,01/13/2016 05:27:05 PM,01/13/2016 05:27:34 PM,01/13/2016 05:27:52 PM,01/13/2016 05:36:39 PM,01/13/2016 06:01:39 PM,01/13/2016 06:17:33 PM,Code 2 Transport,01/13/2016 06:49:32 PM,0 Block of 6TH ST,San Francisco,94103,B02,1,2248,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7815374331217, -122.409518341416)",160133071-68 -130520013,75,13017438,Medical Incident,02/21/2013,02/20/2013,02/21/2013 12:48:36 AM,02/21/2013 12:52:47 AM,02/21/2013 12:53:06 AM,02/21/2013 12:53:16 AM,02/21/2013 01:02:24 AM,02/21/2013 01:04:29 AM,02/21/2013 01:10:55 AM,Other,02/21/2013 01:28:23 AM,1ST ST/MARKET ST,SF,94105,B03,13,2143,1,1,2,true,Non Life-threatening,1,MEDIC,2,1,6,Financial District/South Beach,"(37.7910166481298, -122.399148598133)",130520013-75 -140600270,E28,14020333,Medical Incident,03/01/2014,03/01/2014,03/01/2014 05:02:58 PM,03/01/2014 05:04:10 PM,03/01/2014 05:04:49 PM,03/01/2014 05:05:32 PM,03/01/2014 05:07:01 PM,04/25/2016 01:47:57 PM,04/25/2016 01:47:57 PM,Code 2 Transport,03/01/2014 05:31:09 PM,600 Block of UNION ST,SF,94133,B01,28,1334,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,1,3,North Beach,"(37.8003260482415, -122.40968720575)",140600270-E28 -160280359,85,16010955,Medical Incident,01/28/2016,01/27/2016,01/28/2016 04:37:34 AM,01/28/2016 04:41:11 AM,01/28/2016 04:41:41 AM,01/28/2016 04:41:53 AM,01/28/2016 04:47:14 AM,01/28/2016 05:07:43 AM,01/28/2016 05:10:33 AM,Code 2 Transport,01/28/2016 05:28:19 AM,800 Block of OFARRELL ST,San Francisco,94109,B04,3,1642,2,2,2,true,Non Life-threatening,1,MEDIC,1,4,6,Tenderloin,"(37.7851179904712, -122.418735460998)",160280359-85 -113200259,E32,11106335,Medical Incident,11/16/2011,11/16/2011,11/16/2011 03:27:51 PM,11/16/2011 03:29:22 PM,11/16/2011 03:29:36 PM,11/16/2011 03:30:32 PM,11/16/2011 03:33:01 PM,04/25/2016 02:01:37 PM,04/25/2016 02:01:37 PM,Other,11/16/2011 03:50:26 PM,300 Block of SILVER AVE,SF,94112,B09,32,6114,3,3,3,true,,1,ENGINE,1,9,11,Excelsior,"(37.728489442639, -122.429995375728)",113200259-E32 -110490087,E36,11016108,Medical Incident,02/18/2011,02/18/2011,02/18/2011 08:08:50 AM,02/18/2011 08:09:16 AM,02/18/2011 08:09:54 AM,02/18/2011 08:11:20 AM,02/18/2011 08:13:06 AM,04/25/2016 02:06:02 PM,04/25/2016 02:06:02 PM,Other,02/18/2011 08:38:23 AM,9TH ST/MARKET ST,SF,94103,B02,1,2317,3,2,2,true,,1,ENGINE,1,2,6,South of Market,"(37.7774938436091, -122.41629170277)",110490087-E36 -132060182,67,13069743,Medical Incident,07/25/2013,07/25/2013,07/25/2013 01:57:47 PM,07/25/2013 01:59:49 PM,07/25/2013 02:01:05 PM,07/25/2013 02:01:35 PM,04/25/2016 01:51:38 PM,07/25/2013 02:15:44 PM,07/25/2013 02:24:24 PM,Code 2 Transport,07/25/2013 02:51:33 PM,1200 Block of 19TH AVE,SF,94122,B08,22,7424,1,1,2,true,Non Life-threatening,1,MEDIC,1,7,4,Inner Sunset,"(37.7645085780924, -122.477112517357)",132060182-67 -160462663,AM12,16018597,Medical Incident,02/15/2016,02/15/2016,02/15/2016 05:07:12 PM,02/15/2016 05:07:52 PM,02/15/2016 05:08:54 PM,02/15/2016 05:10:10 PM,02/15/2016 05:11:41 PM,02/15/2016 05:32:21 PM,02/15/2016 05:37:50 PM,Code 2 Transport,02/15/2016 06:20:59 PM,600 Block of 6TH AVE,San Francisco,94118,B07,31,7123,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,1,7,1,Inner Richmond,"(37.7763050234828, -122.463873976155)",160462663-AM12 -140920209,T17,14030931,Medical Incident,04/02/2014,04/02/2014,04/02/2014 01:13:00 PM,04/02/2014 01:14:03 PM,04/02/2014 01:15:48 PM,04/02/2014 01:15:48 PM,04/02/2014 01:17:46 PM,04/25/2016 01:47:26 PM,04/25/2016 01:47:26 PM,No Merit,04/02/2014 01:18:16 PM,1400 Block of NEWCOMB AVE,SAN FRANCISCO,94124,B10,17,6516,3,3,3,false,Potentially Life-Threatening,1,TRUCK,1,10,10,Bayview Hunters Point,"(37.7335924152271, -122.38701801742)",140920209-T17 -133640097,AM16,13123528,Medical Incident,12/30/2013,12/30/2013,12/30/2013 08:21:17 AM,12/30/2013 08:23:20 AM,12/30/2013 08:25:58 AM,12/30/2013 08:26:31 AM,12/30/2013 08:40:00 AM,12/30/2013 09:07:50 AM,12/30/2013 09:24:36 AM,Code 2 Transport,12/30/2013 09:57:40 AM,0 Block of SKYVIEW WAY,SF,94131,B08,20,5352,2,2,2,false,Non Life-threatening,1,PRIVATE,1,8,7,Twin Peaks,"(37.7493307598868, -122.450432551712)",133640097-AM16 -102900042,T09,10092397,Structure Fire,10/17/2010,10/16/2010,10/17/2010 02:42:30 AM,10/17/2010 02:42:31 AM,10/17/2010 02:42:42 AM,10/17/2010 02:44:16 AM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,04/25/2016 02:08:04 PM,Other,10/17/2010 02:47:10 AM,HUNTERS POINT BL/EVANS AV,SF,94124,B10,25,6555,3,3,3,false,,1,TRUCK,2,10,10,Bayview Hunters Point,"(37.736712152386, -122.377404251731)",102900042-T09 -132930072,E21,13099628,Medical Incident,10/20/2013,10/19/2013,10/20/2013 07:01:47 AM,10/20/2013 07:03:38 AM,10/20/2013 07:05:13 AM,10/20/2013 07:07:29 AM,10/20/2013 07:09:31 AM,04/25/2016 01:50:10 PM,04/25/2016 01:50:10 PM,Other,10/20/2013 07:17:55 AM,0 Block of CENTRAL AV,SF,94117,B05,21,4354,2,2,2,false,Non Life-threatening,1,ENGINE,1,5,5,Haight Ashbury,"(37.7692123967678, -122.443477161593)",132930072-E21 -131040223,E21,13034954,Medical Incident,04/14/2013,04/14/2013,04/14/2013 01:53:55 PM,04/14/2013 01:55:02 PM,04/14/2013 01:55:21 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,04/25/2016 01:53:19 PM,Other,04/25/2016 01:53:19 PM,8TH AV/JOHN F KENNEDY DR,SF,94122,B07,31,7111,3,3,3,false,Potentially Life-Threatening,1,ENGINE,1,7,1,Golden Gate Park,"(37.7726085222072, -122.465824685868)",131040223-E21 -131180308,T14,13039807,Structure Fire,04/28/2013,04/28/2013,04/28/2013 07:04:57 PM,04/28/2013 07:06:41 PM,04/28/2013 07:07:06 PM,04/28/2013 07:09:19 PM,04/28/2013 07:12:16 PM,04/25/2016 01:53:04 PM,04/25/2016 01:53:04 PM,Other,04/28/2013 07:18:45 PM,700 Block of LA PLAYA,SF,94121,B07,34,7312,3,3,3,false,Alarm,1,TRUCK,4,7,1,Outer Richmond,"(37.774196568977, -122.510033790907)",131180308-T14 -120230228,T03,12007831,Alarms,01/23/2012,01/23/2012,01/23/2012 03:00:13 PM,01/23/2012 03:02:26 PM,01/23/2012 03:02:37 PM,01/23/2012 03:04:26 PM,01/23/2012 03:05:38 PM,04/25/2016 02:00:29 PM,04/25/2016 02:00:29 PM,Other,01/23/2012 03:08:51 PM,800 Block of OFARRELL ST,SF,94109,B04,3,1642,3,3,3,false,Alarm,1,TRUCK,1,2,6,Tenderloin,"(37.7850094895368, -122.418713807613)",120230228-T03 -160251612,56,16009914,Medical Incident,01/25/2016,01/25/2016,01/25/2016 12:02:46 PM,01/25/2016 12:06:16 PM,01/25/2016 12:06:29 PM,01/25/2016 12:06:56 PM,01/25/2016 12:16:05 PM,01/25/2016 12:26:37 PM,01/25/2016 12:47:33 PM,Code 2 Transport,01/25/2016 01:28:43 PM,0 Block of DIAZ AVE,San Francisco,94132,B08,19,8424,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,8,7,Lakeshore,"(37.7181624969759, -122.476290287585)",160251612-56 -131480254,E36,13050226,Medical Incident,05/28/2013,05/28/2013,05/28/2013 02:51:44 PM,05/28/2013 02:52:27 PM,05/28/2013 02:52:51 PM,05/28/2013 02:53:10 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,04/25/2016 01:52:34 PM,Other,05/28/2013 02:53:50 PM,MARKET ST/7TH ST,SF,94103,B03,1,1455,2,2,2,false,Non Life-threatening,1,ENGINE,3,2,6,South of Market,"(37.7804785121736, -122.412512257219)",131480254-E36 -160622630,AM16,16024765,Medical Incident,03/02/2016,03/02/2016,03/02/2016 03:57:29 PM,03/02/2016 03:57:29 PM,03/02/2016 04:17:08 PM,03/02/2016 04:18:00 PM,03/02/2016 04:28:05 PM,03/02/2016 04:35:30 PM,03/02/2016 05:00:57 PM,Code 2 Transport,03/02/2016 05:18:12 PM,MARKET ST/15TH ST,San Francisco,94114,B02,6,5213,2,3,3,false,Potentially Life-Threatening,1,PRIVATE,3,2,8,Castro/Upper Market,"(37.7660137310169, -122.430824395878)",160622630-AM16 -122420352,E22,12080195,Structure Fire,08/29/2012,08/29/2012,08/29/2012 10:12:05 PM,08/29/2012 10:13:28 PM,08/29/2012 10:13:36 PM,08/29/2012 10:16:37 PM,08/29/2012 10:20:52 PM,04/25/2016 01:57:00 PM,04/25/2016 01:57:00 PM,Other,08/29/2012 10:21:45 PM,400 Block of 24TH AVE,SF,94121,B07,14,7175,3,3,3,false,Fire,1,ENGINE,6,7,1,Outer Richmond,"(37.7811066581474, -122.483801924911)",122420352-E22 -130780033,E33,13025906,Odor (Strange / Unknown),03/19/2013,03/18/2013,03/19/2013 03:01:31 AM,03/19/2013 03:03:50 AM,03/19/2013 03:04:10 AM,03/19/2013 03:06:34 AM,03/19/2013 03:09:11 AM,04/25/2016 01:53:45 PM,04/25/2016 01:53:45 PM,Other,03/19/2013 03:11:58 AM,CAPITOL AV/THRIFT ST,SF,94112,B09,33,8373,3,3,3,true,Alarm,1,ENGINE,2,9,11,Oceanview/Merced/Ingleside,"(37.7174547388771, -122.459072288803)",130780033-E33 -132380392,E13,13080475,Medical Incident,08/26/2013,08/26/2013,08/26/2013 10:06:11 PM,08/26/2013 10:08:15 PM,08/26/2013 10:08:43 PM,08/26/2013 10:10:33 PM,08/26/2013 10:12:14 PM,04/25/2016 01:51:06 PM,04/25/2016 01:51:06 PM,Other,08/26/2013 10:29:47 PM,0 Block of CALIFORNIA ST,SF,94111,B01,13,1134,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,1,3,Financial District/South Beach,"(37.7936404234689, -122.397010347798)",132380392-E13 -110960287,E05,11031926,Structure Fire,04/06/2011,04/06/2011,04/06/2011 06:06:25 PM,04/06/2011 06:07:06 PM,04/06/2011 06:07:39 PM,04/06/2011 06:08:48 PM,04/06/2011 06:10:30 PM,04/25/2016 02:05:14 PM,04/25/2016 02:05:14 PM,Other,04/06/2011 06:17:26 PM,1200 Block of STEINER ST,SF,94115,B05,5,3624,3,3,3,true,,1,ENGINE,3,5,5,Western Addition,"(37.7807440381763, -122.433947180627)",110960287-E05 -160323859,88,16012790,Medical Incident,02/01/2016,02/01/2016,02/01/2016 11:13:49 PM,02/01/2016 11:16:38 PM,02/01/2016 11:16:50 PM,02/01/2016 11:17:03 PM,02/01/2016 11:24:38 PM,02/01/2016 11:32:31 PM,02/01/2016 11:46:42 PM,Code 2 Transport,02/02/2016 12:16:14 AM,400 Block of 39TH AVE,San Francisco,94121,B07,34,7256,2,2,2,true,Non Life-threatening,1,MEDIC,2,7,1,Outer Richmond,"(37.7803684793126, -122.499731430722)",160323859-88 -130500138,93,13016971,Medical Incident,02/19/2013,02/19/2013,02/19/2013 01:11:18 PM,02/19/2013 01:11:47 PM,02/19/2013 01:12:01 PM,02/19/2013 01:12:12 PM,02/19/2013 01:14:09 PM,02/19/2013 02:09:23 PM,02/19/2013 02:09:57 PM,Code 2 Transport,02/19/2013 02:14:01 PM,1500 Block of GREENWICH ST,SF,94123,B04,16,3234,3,3,3,true,Potentially Life-Threatening,1,MEDIC,1,4,2,Marina,"(37.8002564054218, -122.425169010729)",130500138-93 -160310551,72,16012072,Medical Incident,01/31/2016,01/30/2016,01/31/2016 04:25:30 AM,01/31/2016 04:25:30 AM,01/31/2016 04:26:15 AM,01/31/2016 04:28:11 AM,01/31/2016 04:30:27 AM,01/31/2016 05:05:40 AM,01/31/2016 05:09:28 AM,Code 2 Transport,01/31/2016 05:54:35 AM,GEARY BL/SCOTT ST,San Francisco,94115,B04,5,3645,3,3,3,true,Potentially Life-Threatening,1,MEDIC,2,5,5,Western Addition,"(37.7837176369493, -122.437847942301)",160310551-72 -102570045,81,10081093,Medical Incident,09/14/2010,09/13/2010,09/14/2010 06:46:17 AM,09/14/2010 06:49:56 AM,09/14/2010 06:50:57 AM,04/25/2016 02:08:36 PM,09/14/2010 06:53:15 AM,09/14/2010 07:46:44 AM,09/14/2010 07:46:58 AM,Code 2 Transport,09/14/2010 07:47:08 AM,1500 Block of BROADWAY,SF,94109,B04,41,3152,3,3,3,true,,1,MEDIC,1,4,3,Russian Hill,"(37.7958954987191, -122.422601519723)",102570045-81 -122210171,KM04,12073257,Medical Incident,08/08/2012,08/08/2012,08/08/2012 12:17:24 PM,08/08/2012 12:18:27 PM,08/08/2012 12:18:38 PM,08/08/2012 12:19:25 PM,08/08/2012 12:20:56 PM,08/08/2012 12:27:49 PM,08/08/2012 12:33:50 PM,Code 2 Transport,08/08/2012 12:56:13 PM,1300 Block of POLK ST,SF,94109,B04,3,3122,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,4,3,Nob Hill,"(37.7893840503369, -122.420515681408)",122210171-KM04 -131240403,E03,13042007,Medical Incident,05/04/2013,05/04/2013,05/04/2013 08:39:29 PM,05/04/2013 08:41:24 PM,05/04/2013 08:42:12 PM,05/04/2013 08:43:09 PM,05/04/2013 08:49:25 PM,04/25/2016 01:52:58 PM,04/25/2016 01:52:58 PM,Other,05/04/2013 08:50:52 PM,POWELL ST/MARKET ST,SF,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,ENGINE,2,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",131240403-E03 -120820209,AM06,12027242,Traffic Collision,03/22/2012,03/22/2012,03/22/2012 02:25:32 PM,03/22/2012 02:26:59 PM,03/22/2012 02:29:34 PM,03/22/2012 02:30:21 PM,03/22/2012 02:34:22 PM,04/25/2016 01:59:33 PM,04/25/2016 01:59:33 PM,No Merit,03/22/2012 02:38:47 PM,9TH ST/DIVISION ST,SF,94103,B03,29,2331,3,3,3,false,Potentially Life-Threatening,1,PRIVATE,2,2,10,Mission,"(37.7694625463697, -122.406213364615)",120820209-AM06 -110370340,E05,11012340,Medical Incident,02/06/2011,02/06/2011,02/06/2011 06:32:18 PM,02/06/2011 06:34:25 PM,02/06/2011 06:35:38 PM,02/06/2011 06:45:11 PM,02/06/2011 06:48:02 PM,04/25/2016 02:06:13 PM,04/25/2016 02:06:13 PM,Other,02/06/2011 07:03:47 PM,1700 Block of EDDY ST,SF,94115,B05,5,4133,2,2,2,true,,1,ENGINE,2,5,5,Western Addition,"(37.7809598043894, -122.436449035039)",110370340-E05 -123440205,94,12115005,Medical Incident,12/09/2012,12/09/2012,12/09/2012 01:21:29 PM,12/09/2012 01:23:05 PM,12/09/2012 01:23:42 PM,12/09/2012 01:23:51 PM,12/09/2012 01:44:48 PM,12/09/2012 02:07:28 PM,12/09/2012 02:24:44 PM,Code 2 Transport,12/09/2012 02:51:30 PM,0 Block of 6TH ST,SF,94103,B03,1,2251,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,6,South of Market,"(37.7811458612596, -122.409026046516)",123440205-94 -122100281,T13,12069848,Alarms,07/28/2012,07/28/2012,07/28/2012 06:44:04 PM,07/28/2012 06:45:50 PM,07/28/2012 06:46:25 PM,07/28/2012 06:50:12 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,04/25/2016 01:57:30 PM,Other,07/28/2012 06:58:10 PM,300 Block of MISSION ST,SF,94105,B03,35,2126,3,3,3,false,Alarm,1,TRUCK,3,3,6,Financial District/South Beach,"(37.7907679966526, -122.39620274948)",122100281-T13 -122930096,T16,12097066,Alarms,10/19/2012,10/18/2012,10/19/2012 07:45:50 AM,10/19/2012 07:47:13 AM,10/19/2012 07:47:19 AM,10/19/2012 07:49:02 AM,10/19/2012 07:53:12 AM,04/25/2016 01:56:13 PM,04/25/2016 01:56:13 PM,Other,10/19/2012 08:00:23 AM,2100 Block of BROADWAY,SF,94123,B04,38,3464,3,3,3,false,Alarm,1,TRUCK,2,4,2,Pacific Heights,"(37.7946334153717, -122.432465079407)",122930096-T16 -121460355,79,12048619,Medical Incident,05/25/2012,05/25/2012,05/25/2012 10:32:51 PM,05/25/2012 10:35:18 PM,05/25/2012 10:37:16 PM,04/25/2016 01:58:31 PM,05/25/2012 10:41:56 PM,05/25/2012 10:52:10 PM,05/25/2012 10:59:27 PM,Code 2 Transport,05/25/2012 11:13:01 PM,100 Block of FELL ST,SF,94102,B02,36,3213,2,2,2,true,Potentially Life-Threatening,1,MEDIC,1,2,5,Hayes Valley,"(37.7762095925877, -122.420316347942)",121460355-79 -111630030,E03,11053691,Structure Fire,06/12/2011,06/11/2011,06/12/2011 01:35:52 AM,06/12/2011 01:35:52 AM,06/12/2011 01:37:59 AM,06/12/2011 01:40:16 AM,06/12/2011 01:41:40 AM,04/25/2016 02:04:12 PM,04/25/2016 02:04:12 PM,Fire,06/12/2011 01:44:14 AM,900 Block of MARKET ST,SF,94102,B03,1,1454,3,3,3,true,,1,ENGINE,1,3,6,Tenderloin,"(37.7828276498838, -122.409708423721)",111630030-E03 -130210049,E01,13007146,Medical Incident,01/21/2013,01/20/2013,01/21/2013 03:00:04 AM,01/21/2013 03:00:32 AM,01/21/2013 03:02:46 AM,01/21/2013 03:04:09 AM,01/21/2013 03:08:08 AM,04/25/2016 01:54:42 PM,04/25/2016 01:54:42 PM,Other,01/21/2013 03:19:19 AM,100 Block of EDDY ST,SF,94102,B03,1,1453,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,3,6,Tenderloin,"(37.7842993825154, -122.410141319852)",130210049-E01 -120460122,AM06,12015250,Alarms,02/15/2012,02/15/2012,02/15/2012 10:47:33 AM,02/15/2012 10:48:26 AM,02/15/2012 10:49:11 AM,02/15/2012 10:53:48 AM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,04/25/2016 02:00:07 PM,Other,02/15/2012 10:58:30 AM,4000 Block of MISSION ST,SF,94112,B06,32,5633,3,3,3,false,Alarm,1,PRIVATE,4,9,8,Outer Mission,"(37.7322426255479, -122.4279021087)",120460122-AM06 -160880587,85,16034834,Medical Incident,03/28/2016,03/27/2016,03/28/2016 07:08:42 AM,03/28/2016 07:08:42 AM,03/28/2016 07:10:25 AM,03/28/2016 07:10:45 AM,03/28/2016 07:22:47 AM,03/28/2016 07:24:25 AM,03/28/2016 07:52:18 AM,Code 2 Transport,03/28/2016 08:31:30 AM,POLK ST/MCALLISTER ST,San Francisco,94102,B02,3,3113,2,2,2,true,Non Life-threatening,1,MEDIC,1,2,6,Tenderloin,"(37.7802601311974, -122.418598510275)",160880587-85 -112880287,T15,11095629,Structure Fire,10/15/2011,10/15/2011,10/15/2011 06:19:00 PM,10/15/2011 06:19:00 PM,10/15/2011 06:19:11 PM,10/15/2011 06:20:20 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,04/25/2016 02:02:08 PM,Other,10/15/2011 06:21:53 PM,PARIS ST/RUSSIA AV,SF,94112,B09,43,6126,3,3,3,false,,1,TRUCK,2,9,11,Excelsior,"(37.7208271455735, -122.435584713371)",112880287-T15 -110870015,89,11028578,Medical Incident,03/28/2011,03/27/2011,03/28/2011 01:00:48 AM,03/28/2011 01:02:31 AM,03/28/2011 01:03:48 AM,03/28/2011 01:04:19 AM,03/28/2011 01:15:48 AM,03/28/2011 01:23:28 AM,03/28/2011 02:01:16 AM,Code 2 Transport,03/28/2011 02:27:57 AM,NEW MONTGOMERY ST/MISSION ST,SF,94105,B01,1,2145,3,3,3,true,,1,MEDIC,2,3,6,Financial District/South Beach,"(37.7874504989109, -122.400503098169)",110870015-89 -121900215,KM12,12063335,Medical Incident,07/08/2012,07/08/2012,07/08/2012 03:39:21 PM,07/08/2012 03:41:56 PM,07/08/2012 03:47:04 PM,07/08/2012 03:49:27 PM,07/08/2012 04:01:13 PM,07/08/2012 04:20:41 PM,07/08/2012 04:32:33 PM,Code 2 Transport,07/08/2012 04:59:47 PM,1000 Block of HOWARD ST,SF,94103,B03,1,2314,2,2,2,false,Potentially Life-Threatening,1,PRIVATE,1,3,6,South of Market,"(37.7785992634984, -122.408503211368)",121900215-KM12 -160851815,86,16033779,Medical Incident,03/25/2016,03/25/2016,03/25/2016 12:59:13 PM,03/25/2016 01:01:51 PM,03/25/2016 01:26:18 PM,03/25/2016 01:27:27 PM,03/25/2016 01:55:11 PM,03/25/2016 01:55:13 PM,03/25/2016 02:16:59 PM,Code 2 Transport,03/25/2016 02:45:35 PM,100 Block of LARKIN ST,San Francisco,94102,B02,36,1647,2,2,2,true,Non Life-threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7791298669797, -122.416605894296)",160851815-86 -112870439,59,11095369,Medical Incident,10/14/2011,10/14/2011,10/14/2011 11:29:02 PM,10/14/2011 11:29:37 PM,10/14/2011 11:30:01 PM,10/14/2011 11:30:19 PM,10/14/2011 11:39:26 PM,10/15/2011 12:08:44 AM,10/15/2011 12:22:09 AM,Code 2 Transport,10/15/2011 01:00:58 AM,1600 Block of PALOU AVE,SF,94124,B10,17,6471,3,3,3,true,,1,MEDIC,2,10,10,Bayview Hunters Point,"(37.7345707092334, -122.391831743022)",112870439-59 -102430291,83,10076718,Medical Incident,08/31/2010,08/31/2010,08/31/2010 04:24:07 PM,08/31/2010 04:24:50 PM,08/31/2010 04:25:21 PM,08/31/2010 04:26:26 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,04/25/2016 02:08:48 PM,Other,04/25/2016 02:08:48 PM,1500 Block of 7TH AVE,SF,94122,B08,22,7331,3,E,3,true,,1,MEDIC,4,8,7,Inner Sunset,"(37.7594687247156, -122.463915785907)",102430291-83 -160223426,65,16008922,Medical Incident,01/22/2016,01/22/2016,01/22/2016 08:23:24 PM,01/22/2016 08:25:17 PM,01/22/2016 08:25:40 PM,01/22/2016 08:25:50 PM,01/22/2016 08:33:26 PM,01/22/2016 08:53:19 PM,01/22/2016 09:28:28 PM,Code 2 Transport,01/22/2016 09:50:53 PM,3100 Block of 24TH ST,San Francisco,94110,B06,7,5526,2,2,2,true,Non Life-threatening,1,MEDIC,1,6,9,Mission,"(37.7524180928571, -122.414623849785)",160223426-65 -131960332,E16,13066665,Medical Incident,07/15/2013,07/15/2013,07/15/2013 10:38:08 PM,07/15/2013 10:38:55 PM,07/15/2013 10:39:16 PM,07/15/2013 10:41:02 PM,07/15/2013 10:42:22 PM,04/25/2016 01:51:47 PM,04/25/2016 01:51:47 PM,Other,07/15/2013 10:57:49 PM,3300 Block of SCOTT ST,SF,94123,B04,16,4114,3,3,3,true,Potentially Life-Threatening,1,ENGINE,1,4,2,Marina,"(37.800666721108, -122.441204489098)",131960332-E16 -132550152,AM16,13086158,Medical Incident,09/12/2013,09/12/2013,09/12/2013 11:28:39 AM,09/12/2013 11:29:36 AM,09/12/2013 11:29:53 AM,09/12/2013 11:30:51 AM,09/12/2013 11:35:36 AM,09/12/2013 11:55:52 AM,09/12/2013 12:12:42 PM,Code 2 Transport,09/12/2013 01:01:37 PM,300 Block of WOODSIDE AVE,SF,94131,B08,39,8661,3,2,2,false,Non Life-threatening,1,PRIVATE,3,8,7,Twin Peaks,"(37.7457450601581, -122.452739454597)",132550152-AM16 -132160306,B03,13073100,Alarms,08/04/2013,08/04/2013,08/04/2013 08:12:47 PM,08/04/2013 08:14:34 PM,08/04/2013 08:14:53 PM,08/04/2013 08:16:15 PM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,04/25/2016 01:51:28 PM,Other,08/04/2013 08:23:13 PM,600 Block of COMMERCIAL ST,SF,94111,B01,13,1233,3,3,3,false,Alarm,1,CHIEF,3,1,3,Chinatown,"(37.7941730504914, -122.403888830265)",132160306-B03 -160463773,KM03,16018717,Medical Incident,02/15/2016,02/15/2016,02/15/2016 10:10:54 PM,02/15/2016 10:13:02 PM,02/15/2016 10:13:43 PM,02/15/2016 10:14:10 PM,02/15/2016 10:24:42 PM,02/15/2016 10:38:27 PM,02/15/2016 10:51:19 PM,Code 2 Transport,02/15/2016 11:35:20 PM,1000 Block of NOE ST,San Francisco,94114,B06,11,5522,2,2,2,false,Non Life-threatening,1,PRIVATE,1,6,8,Noe Valley,"(37.7518275738203, -122.431980748524)",160463773-KM03 -160480240,85,16019200,Medical Incident,02/17/2016,02/16/2016,02/17/2016 02:36:18 AM,02/17/2016 02:36:18 AM,02/17/2016 02:36:44 AM,02/17/2016 02:37:18 AM,02/17/2016 02:40:53 AM,02/17/2016 02:51:35 AM,02/17/2016 03:01:07 AM,Code 3 Transport,02/17/2016 03:54:10 AM,EDDY ST/LEAVENWORTH ST,San Francisco,94102,B02,3,1545,3,E,3,true,Potentially Life-Threatening,1,MEDIC,2,2,6,Tenderloin,"(37.7837237829964, -122.414241575227)",160480240-85 -130530315,72,13018021,Medical Incident,02/22/2013,02/22/2013,02/22/2013 06:49:02 PM,02/22/2013 06:49:47 PM,02/22/2013 06:50:09 PM,02/22/2013 06:50:21 PM,02/22/2013 06:58:05 PM,02/22/2013 07:13:02 PM,02/22/2013 07:46:43 PM,Code 3 Transport,02/22/2013 08:09:57 PM,300 Block of RUSSIA AVE,SF,94112,B09,43,6126,3,3,3,true,Potentially Life-Threatening,1,MEDIC,3,9,11,Excelsior,"(37.7203009310959, -122.434349394708)",130530315-72 -160880373,89,16034813,Medical Incident,03/28/2016,03/27/2016,03/28/2016 04:32:14 AM,03/28/2016 04:32:59 AM,03/28/2016 04:33:19 AM,03/28/2016 04:33:40 AM,03/28/2016 04:42:40 AM,03/28/2016 04:58:33 AM,03/28/2016 05:12:38 AM,Code 2 Transport,03/28/2016 05:36:04 AM,200 Block of WILLIAMS AVE,San Francisco,94124,B10,42,6474,2,2,2,true,Non Life-threatening,1,MEDIC,1,10,10,Bayview Hunters Point,"(37.7299346936044, -122.397744427103)",160880373-89 -160710245,65,16028070,Medical Incident,03/11/2016,03/10/2016,03/11/2016 02:17:03 AM,03/11/2016 02:17:38 AM,03/11/2016 02:18:29 AM,03/11/2016 02:18:36 AM,03/11/2016 02:26:29 AM,03/11/2016 02:26:30 AM,03/11/2016 02:42:23 AM,Code 2 Transport,03/11/2016 03:28:40 AM,POWELL ST/MARKET ST,San Francisco,94103,B03,1,1364,2,2,2,true,Non Life-threatening,1,MEDIC,1,3,3,Financial District/South Beach,"(37.7845601421794, -122.407337041666)",160710245-65 From b8a0f32c4da04835852be1ea3eb6aace08913de1 Mon Sep 17 00:00:00 2001 From: chris warth Date: Tue, 23 Feb 2021 17:02:21 -0800 Subject: [PATCH 3/7] convert CSV row to avro schema --- java/kafka-avro/build.gradle.kts | 1 + .../src/main/avro/LendingClubRow.avsc | 5 +- .../csv/avro/CsvToAvroGenericWriter.java | 481 ++++++++++++++++++ .../com/whylogs/examples/ProducerDemo.java | 15 +- 4 files changed, 489 insertions(+), 13 deletions(-) create mode 100644 java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java diff --git a/java/kafka-avro/build.gradle.kts b/java/kafka-avro/build.gradle.kts index 2336c19..5951cc2 100644 --- a/java/kafka-avro/build.gradle.kts +++ b/java/kafka-avro/build.gradle.kts @@ -22,6 +22,7 @@ dependencies { implementation("org.apache.avro:avro:1.8.2") implementation("org.apache.kafka:kafka-clients:2.7.0") implementation("io.confluent:kafka-avro-serializer:6.1.0") + implementation("joda-time:joda-time:2.10.10") } // /Volumes/Workspace/whylogs-examples/java/kafka-avro/build/generated-main-avro-java/com/whylabs/value_lending_club.java diff --git a/java/kafka-avro/src/main/avro/LendingClubRow.avsc b/java/kafka-avro/src/main/avro/LendingClubRow.avsc index 9bda8d6..0c00107 100644 --- a/java/kafka-avro/src/main/avro/LendingClubRow.avsc +++ b/java/kafka-avro/src/main/avro/LendingClubRow.avsc @@ -113,10 +113,7 @@ "name": "issue_d", "type": [ "null", - { - "type": "long", - "logicalType": "timestamp-micros" - } + "string" ] }, { diff --git a/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java b/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java new file mode 100644 index 0000000..523d1bb --- /dev/null +++ b/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java @@ -0,0 +1,481 @@ +package com.datamelt.csv.avro; + +import org.apache.avro.LogicalType; +import org.apache.avro.LogicalTypes; +import org.apache.avro.Schema; +import org.apache.avro.file.CodecFactory; +import org.apache.avro.file.DataFileWriter; +import org.apache.avro.generic.GenericData; +import org.apache.avro.generic.GenericDatumWriter; +import org.apache.avro.generic.GenericRecord; +import org.apache.avro.io.DatumWriter; + +import java.io.File; +import java.text.SimpleDateFormat; +import java.util.*; + +import org.joda.time.DateTime; + +public class CsvToAvroGenericWriter { + // constants which define the type of separator used in the csv file + // to separate the individual columns + public static final String SEPARATOR_TAB = "\t"; + public static final String SEPARATOR_SEMICOLON = ";"; + public static final String SEPARATOR_COMMA = ","; + public static final String SEPARATOR_AT = "@"; + public static final String SEPARATOR_AT_AT = "@@"; + public static final String SEPARATOR_PIPE = "|"; + + // we can write to a new file respectively overwrite an existing one + // or append to an existing one + public static final int MODE_WRITE = 0; + public static final int MODE_APPEND = 1; + + // the default mode is write + private static int mode = MODE_WRITE; + + // default compression factor + public static final int DEFAULT_COMPRESSION = 6; + private static Schema NULL_SCHEMA = Schema.create(Schema.Type.NULL); + private Schema avroSchema = null; + private String[] csvHeaderFields = null; + private Map fieldMap = null; + private String separator = SEPARATOR_SEMICOLON; + + private String csvDateTimeFormat; + private String csvDateFormat; + + /** + * Constructor to accept the Avro schema file and the output file name + * to write the avro data to. Default compression of 6 will be used. + *

+ * Pass the Avro schema and the path and name of the output file and the + * mode (write or append). + *

+ * An Avro DataFileWriter object will be created for the given output file, + * using the default compression. + * + * @param schema avro schema to use + * @throws Exception + */ + public CsvToAvroGenericWriter(Schema schema) throws Exception { + this.avroSchema = schema; + this.populateFieldMap(); + } + + + /** + * add all fields and their positions from the Avro schema to a map + * for easy retrieval + */ + private void populateFieldMap() { + // populate the map of avro field names and positions + fieldMap = new HashMap(); + List avroFields = avroSchema.getFields(); + for (int i = 0; i < avroFields.size(); i++) { + Schema.Field avroField = avroFields.get(i); + fieldMap.put(avroField.name(), avroField.pos()); + } + } + + + /** + * sets the format of datetime fields as it is used in the CSV file. + *

+ * if the relevant field is defined as "long" with a logical type "timestamp-millis" this + * format will be used to parse the csv value and convert it to milliseconds from the unix epoch + * + * @param format + */ + public void setCsvDateTimeFormat(String format) { + this.csvDateTimeFormat = format; + } + + + public String getCsvDateTimeFormat() { + return csvDateTimeFormat; + } + + /** + * sets the format of date fields as it is used in the CSV file. + *

+ * if the relevant field is defined as "int" with a logical type "date" this + * format will be used to parse the csv value and convert it to days from the unix epoch + * + * @param format + */ + public void setCsvDateFormat(String format) { + this.csvDateFormat = format; + } + + + public String getCsvDateFormat() { + return csvDateFormat; + } + + /** + * sets the header row taken from the csv file.The given + * separatorCharacter is used to divide the header into individual fields. + *

+ * if the header row is defined, the append() method will + * correctly add the correct values from the CSV file to the + * Avro record, even if the CSV files has a different sequence + * of fields. + * + * @param header + * @param separatorCharacter + */ + public void setCsvHeader(String header, String separatorCharacter) { + this.csvHeaderFields = header.split(separatorCharacter); + } + + public void setCsvHeader(String[] fields) { + this.csvHeaderFields = fields; + } + + /** + * sets the header row taken from the csv file. The default + * separator is used to divide the header into individual fields. + *

+ * if the header row is defined, the append() method will + * correctly add the correct values from the CSV file to the + * Avro record, even if the CSV files has a different sequence + * of fields. + * + * @param header + */ + public void setCsvHeader(String header) { + setCsvHeader(header, separator); + } + + + /** + * returns a list of fields that can be null based on + * the Avro schema. + * + * @param record + * @return + */ + private ArrayList getInvalidNullFields(GenericRecord record) { + List avroFields = avroSchema.getFields(); + ArrayList nullFields = new ArrayList(); + for (int i = 0; i < avroFields.size(); i++) { + Schema.Field field = avroFields.get(i); + Object value = record.get(field.pos()); + + if (value == null && !getFieldAllowsNull(field)) { + nullFields.add(field); + } + } + return nullFields; + } + + private String[] getSplitLine(String line, String separatorCharacter) { + return line.split(separatorCharacter); + } + + /** + * populates an Avro Generic record with the values from a row of CSV data. + *

+ * If the header row of the CSV is undefined, then it is assumed that the fields + * in the CSV file are present in the same sequence as they are defined in the + * Avro schema, + *

+ * If the header row is defined, then this method will locate the corresponding Avro + * field with the same name in the schema. In this case the sequence of fields in the + * CSV file is not relevant - the method will update the correct Avro field. + * + * @param fields a line/row of data from a CSV file as an array of Strings + * @return a record with the data of a line from the CSV file + */ + public GenericRecord populate(String[] fields) throws Exception { + return this.populate(Arrays.asList(fields).iterator()); + } + + public GenericRecord populate(Iterator fields) throws Exception { + + GenericRecord record = new GenericData.Record(avroSchema); + // if the names of the fields are defined (header row was specified) + if (csvHeaderFields != null) { + int i = 0; + // loop of the header fields + while (fields.hasNext()) { + // name of the csv field as defined in the header + String csvFieldName = csvHeaderFields[i]; + + // if the field name from the CSV file is present in the Avro schema. + // if the equivalent field is not found in the avro schema, then we + // ignore it + if (fieldMap.containsKey(csvFieldName)) { + // get the position of the field with the same name + // in the avro schema + int avroPosition = fieldMap.get(csvFieldName); + + // retrieve the field + Schema.Field field = avroSchema.getField(csvFieldName); + + // retrieve a field from the Avro SpecificRecord + Object object = getObject(field, fields.next()); + // add the object to the corresponding field + record.put(avroPosition, object); + } + i++; + } + } else { + List avroFields = avroSchema.getFields(); + int i = 0; + while (fields.hasNext()) { + Schema.Field field = avroFields.get(i); + // retrieve a field from the Avro SpecificRecord + String csf = fields.next(); + System.out.format("getObject avro:%s csv:%s\n", field, csf); + Object object = getObject(field, csf); + // add the object to the corresponding field + record.put(i, object); + i++; + } + } + return record; + } + + /** + * converts the String value from the CSV file into the correct + * object (type) according to the Avro schema definition. + *

+ * if the value is null and null is allowed per schema definition then + * null is returned + *

+ * if the string value can not be converted to the appropriate type in + * the schema, an exception is thrown. + *

+ * if the value is an empty string, 0 respectively 0.0 is returned for fields + * of type Integer, Long, Float or Double. + * + * @param field a field from the Avro record + * @param value the value from a CSV + * @return the correct object according to the schema + */ + private Object getObject(Schema.Field field, String value) throws Exception { + // retrieve the field type + Schema.Type fieldType = getFieldType(field); + + // retrieve the logical type of the field. relevant for some date and time types + // read the documentation at: avro.apache.org + LogicalType logicalFieldType = getFieldLogicalType(field); + + boolean nullAllowed = getFieldAllowsNull(field); + + if (value != null && !value.equals("")) { + if (fieldType == Schema.Type.INT) { + try { + if (logicalFieldType != null && logicalFieldType.getClass() == LogicalTypes.Date.class) { + return convertToDays(value); + } else { + return Integer.parseInt(value); + } + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] could not be converted to an integer"); + } + } else if (fieldType == Schema.Type.LONG) { + try { + if (logicalFieldType != null && logicalFieldType.getClass() == LogicalTypes.TimestampMillis.class) { + return convertToTimestampMilliseconds(value); + } else { + return Long.parseLong(value); + } + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] could not be converted to a long"); + } + } else if (fieldType == Schema.Type.FLOAT) { + try { + return Float.parseFloat(value); + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] could not be converted to a float"); + } + } else if (fieldType == Schema.Type.DOUBLE) { + try { + return Double.parseDouble(value); + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] can not be converted to a double"); + } + } else if (fieldType == Schema.Type.BOOLEAN) { + try { + return Boolean.parseBoolean(value); + } catch (Exception ex) { + throw new Exception("value [" + value + "] of field [" + field.name() + "] can not be converted to a boolean"); + } + } else if (fieldType == Schema.Type.STRING) { + return value; + } else { + throw new Exception("type [" + fieldType + "] not supported. field: [" + field.name() + "]"); + } + } + // the value is either null or an empty string + else { + if (value != null && value.equals("")) { + if (fieldType == Schema.Type.STRING) { + return value; + } else if (fieldType == Schema.Type.INT) { + return new Integer(0); + } else if (fieldType == Schema.Type.LONG) { + return new Long(0); + } else if (fieldType == Schema.Type.DOUBLE) { + return new Double(0); + } else if (fieldType == Schema.Type.FLOAT) { + return new Float(0.0); + } else if (fieldType == Schema.Type.BOOLEAN) { + return Boolean.FALSE; + } else { + throw new Exception("empty field value is not defined in the schema for field: [" + field.name() + "]"); + } + + } + // must be null if we arrive here + else { + if (nullAllowed) { + return null; + } else { + throw new Exception("field value of [null] is not defined in the schema for field: [" + field.name() + "]"); + } + } + } + } + + /** + * converts the given value to milliseconds from the unix epoch using the + * defined format. + *

+ * Note: datetime in an avro schema is defined in number of days + * from the unix epoche + * + * @param value the value to convert + * @throws Exception when the value can not be parsed to a long + * @return milliseconds from the unix epoch as a long value + */ + private long convertToTimestampMilliseconds(String value) throws Exception { + SimpleDateFormat sdf = new SimpleDateFormat(csvDateTimeFormat); + try { + Date date = sdf.parse(value); + return new DateTime(date.getTime()).getMillis(); + } catch (Exception ex) { + throw new Exception("the value [" + value + "] cannot be converted to milliseconds from the unix epoch using the specified format [" + csvDateTimeFormat + "]"); + } + } + + /** + * converts the given value to days from the unix epoch using the + * defined format. + *

+ * Note: dates in an avro schema are defined in number of days + * from the unix epoche + * + * @param value the value to convert + * @throws Exception when the value can not be parsed to a long + * @return milliseconds from the unix epoch as a long value + */ + private int convertToDays(String value) throws Exception { + SimpleDateFormat sdf = new SimpleDateFormat(csvDateFormat); + try { + Date date = sdf.parse(value); + + long currentMilli = date.getTime(); + long seconds = currentMilli / 1000; + long minutes = seconds / 60; + long hours = minutes / 60; + long days = hours / 24; + return (int) days; + } catch (Exception ex) { + throw new Exception("the value [" + value + "] cannot be converted to days from the unix epoch using the specified format [" + csvDateFormat + "]"); + } + } + + + /** + * returns the type of the avro schema field + * + * @param field the avro schema field + * @return the type that is defined for the field + */ + private Schema.Type getFieldType(Schema.Field field) { + Schema.Type fieldType = field.schema().getType(); + + Schema.Type type = null; + + // if the field is of type union, we must loop to get the correct type + // if not then there is only one definition + if (fieldType == Schema.Type.UNION) { + List types = field.schema().getTypes(); + + for (int i = 0; i < types.size(); i++) { + // get the type that does NOT define null as the + // possible type + if (!types.get(i).equals(NULL_SCHEMA)) { + type = types.get(i).getType(); + break; + } + } + return type; + } else { + return fieldType; + } + } + + /** + * returns the logical field type of an avro schema field + *

+ * logical type definitions can help to further define which type + * of field is used in the schema. e.g. a date or time field. + *

+ * Note: there is a bug in avro 1.8.2. and datetime fields. + * it is not clear when that will be fixed. + * + * @param field the avro schema field + * @return a logical type definition if one was specified in the avro schema + */ + private LogicalType getFieldLogicalType(Schema.Field field) { + Schema.Type type = field.schema().getType(); + + LogicalType logicalFieldType = null; + + if (type == Schema.Type.UNION) { + List types = field.schema().getTypes(); + + if (types.get(0).equals(NULL_SCHEMA)) { + logicalFieldType = types.get(1).getLogicalType(); + } else { + logicalFieldType = types.get(0).getLogicalType(); + } + return logicalFieldType; + } else { + return logicalFieldType; + } + } + + /** + * determines if the definition of the field allows null as value + * + * @param field and avro schema field + * @return if the specified field allows null + */ + private boolean getFieldAllowsNull(Schema.Field field) { + Schema.Type type = field.schema().getType(); + + boolean nullAllowed = false; + + // the null is allowed we have two fields (maybe more): one for + // the field type and one defining null + if (type == Schema.Type.UNION) { + List types = field.schema().getTypes(); + + for (int i = 0; i < types.size(); i++) { + if (types.get(i).equals(NULL_SCHEMA)) { + nullAllowed = true; + break; + } + } + return nullAllowed; + } else { + return nullAllowed; + } + } +} diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java index b455342..ddad29d 100644 --- a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java @@ -1,5 +1,6 @@ package com.whylogs.examples; +import com.datamelt.csv.avro.CsvToAvroGenericWriter; import com.whylogs.LendingClubRow; import com.whylogs.core.DatasetProfile; import org.apache.avro.Schema; @@ -65,6 +66,7 @@ public static void main(String[] args) throws Exception { final Map result = new HashMap<>(); System.out.println("opening " + INPUT_FILE_NAME); + try (KafkaProducer producer = new KafkaProducer(props)) { try (final InputStreamReader is = new InputStreamReader(ProducerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { @@ -74,20 +76,15 @@ public static void main(String[] args) throws Exception { // iterate through records for (final CSVRecord record : parser) { - + System.out.println(record); final String orderId = "id" + Long.toString(1); final LendingClubRow value = new LendingClubRow(); final Schema schema = value.getSchema(); - GenericRecord avroRecord = new GenericData.Record(schema); + CsvToAvroGenericWriter csv2avro = new CsvToAvroGenericWriter(schema); + + GenericRecord avroRecord = csv2avro.populate(record.iterator()); - // iterate iver headermap - // for each header, get vakkue from CSV record - // and put to avrorecord - for (Map.Entry entry : record.toMap().entrySet()) { - System.out.println("setting field " + entry.getKey()); - avroRecord.put(entry.getKey(), entry.getValue()); - } final ProducerRecord precord = new ProducerRecord<>(TOPIC, "", avroRecord); System.out.println("sending event "); From 90655c83356bf0cbab65e421af0eaeb7c3ea2e3f Mon Sep 17 00:00:00 2001 From: chris warth Date: Tue, 23 Feb 2021 17:16:44 -0800 Subject: [PATCH 4/7] remove debugging messages --- .../main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java | 1 - .../src/main/java/com/whylogs/examples/ProducerDemo.java | 1 - 2 files changed, 2 deletions(-) diff --git a/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java b/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java index 523d1bb..7896a0b 100644 --- a/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java +++ b/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java @@ -228,7 +228,6 @@ public GenericRecord populate(Iterator fields) throws Exception { Schema.Field field = avroFields.get(i); // retrieve a field from the Avro SpecificRecord String csf = fields.next(); - System.out.format("getObject avro:%s csv:%s\n", field, csf); Object object = getObject(field, csf); // add the object to the corresponding field record.put(i, object); diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java index ddad29d..7d8e240 100644 --- a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java @@ -76,7 +76,6 @@ public static void main(String[] args) throws Exception { // iterate through records for (final CSVRecord record : parser) { - System.out.println(record); final String orderId = "id" + Long.toString(1); final LendingClubRow value = new LendingClubRow(); final Schema schema = value.getSchema(); From 1d4ba3ebf428f881e43406e69f805f3efbd698c4 Mon Sep 17 00:00:00 2001 From: chris warth Date: Tue, 23 Feb 2021 21:30:44 -0800 Subject: [PATCH 5/7] add consumer demo --- java/kafka-avro/build.gradle.kts | 2 +- java/kafka-avro/docker-compose.yml | 76 +++++++++++++ .../com/whylogs/examples/ConsumerDemo.java | 101 +++++++++++++----- .../com/whylogs/examples/ProducerDemo.java | 32 +----- 4 files changed, 159 insertions(+), 52 deletions(-) create mode 100644 java/kafka-avro/docker-compose.yml diff --git a/java/kafka-avro/build.gradle.kts b/java/kafka-avro/build.gradle.kts index 5951cc2..433b863 100644 --- a/java/kafka-avro/build.gradle.kts +++ b/java/kafka-avro/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } application { - mainClassName = "com.whylogs.examples.ProducerDemo" + mainClassName = "com.whylogs.examples.ConsumerDemo" } group = "com.whylogs.example" diff --git a/java/kafka-avro/docker-compose.yml b/java/kafka-avro/docker-compose.yml new file mode 100644 index 0000000..069fb18 --- /dev/null +++ b/java/kafka-avro/docker-compose.yml @@ -0,0 +1,76 @@ + +version: "3" + +services: + zookeeper: + image: confluentinc/cp-zookeeper:5.4.0 + hostname: zookeeper + container_name: zookeeper + ports: + - "2181:2181" + environment: + ZOOKEEPER_CLIENT_PORT: 2181 + ZOOKEEPER_TICK_TIME: 2000 + + broker: + image: confluentinc/cp-server:5.4.0 + hostname: broker + container_name: broker + depends_on: + - zookeeper + ports: + - "9092:9092" + environment: + KAFKA_BROKER_ID: 1 + KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181" + KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT + KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:29092,PLAINTEXT_HOST://localhost:9092 + KAFKA_METRIC_REPORTERS: io.confluent.metrics.reporter.ConfluentMetricsReporter + KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 + KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0 + KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1 + CONFLUENT_METRICS_REPORTER_BOOTSTRAP_SERVERS: broker:29092 + CONFLUENT_METRICS_REPORTER_ZOOKEEPER_CONNECT: zookeeper:2181 + CONFLUENT_METRICS_REPORTER_TOPIC_REPLICAS: 1 + CONFLUENT_METRICS_ENABLE: "true" + CONFLUENT_SUPPORT_CUSTOMER_ID: "anonymous" + + kafka-tools: + image: confluentinc/cp-kafka:5.4.0 + hostname: kafka-tools + container_name: kafka-tools + command: ["tail", "-f", "/dev/null"] + network_mode: "host" + + schema-registry: + image: confluentinc/cp-schema-registry:5.4.0 + hostname: schema-registry + container_name: schema-registry + depends_on: + - zookeeper + - broker + ports: + - "8081:8081" + environment: + SCHEMA_REGISTRY_HOST_NAME: schema-registry + SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: "zookeeper:2181" + + control-center: + image: confluentinc/cp-enterprise-control-center:5.4.0 + hostname: control-center + container_name: control-center + depends_on: + - zookeeper + - broker + - schema-registry + ports: + - "9021:9021" + environment: + CONTROL_CENTER_BOOTSTRAP_SERVERS: 'broker:29092' + CONTROL_CENTER_ZOOKEEPER_CONNECT: 'zookeeper:2181' + CONTROL_CENTER_SCHEMA_REGISTRY_URL: "http://schema-registry:8081" + CONTROL_CENTER_REPLICATION_FACTOR: 1 + CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS: 1 + CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS: 1 + CONFLUENT_METRICS_TOPIC_REPLICATION: 1 + PORT: 9021 diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java index e6304b6..3d22488 100644 --- a/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java @@ -1,24 +1,30 @@ package com.whylogs.examples; +import com.whylogs.LendingClubRow; import com.whylogs.core.DatasetProfile; +import io.confluent.kafka.serializers.AbstractKafkaSchemaSerDeConfig; +import io.confluent.kafka.serializers.KafkaAvroDeserializer; +import io.confluent.kafka.serializers.KafkaAvroDeserializerConfig; import org.apache.commons.csv.CSVFormat; import org.apache.commons.csv.CSVParser; import org.apache.commons.csv.CSVRecord; +import org.apache.kafka.clients.consumer.ConsumerConfig; +import org.apache.kafka.clients.consumer.ConsumerRecord; +import org.apache.kafka.clients.consumer.ConsumerRecords; +import org.apache.kafka.clients.consumer.KafkaConsumer; +import org.apache.kafka.common.serialization.StringDeserializer; -import java.io.InputStreamReader; -import java.io.OutputStream; +import java.io.*; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardOpenOption; +import java.time.Duration; import java.time.Instant; import java.time.LocalDate; import java.time.ZoneOffset; import java.time.format.DateTimeFormatter; -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import java.util.UUID; +import java.util.*; /** * An example of processing a CSV dataset. @@ -31,40 +37,87 @@ * guarantee constant memory usage. */ public class ConsumerDemo { - public static final String DATE_COLUMN = "Call Date"; public static final CSVFormat CSV_FORMAT = CSVFormat.DEFAULT .withFirstRecordAsHeader() .withNullString("") .withDelimiter(','); - public static final String INPUT_FILE_NAME = "Fire_Department_Calls_for_Service.csv"; public static final DateTimeFormatter DATE_TIME_FORMAT = DateTimeFormatter.ofPattern("MM/dd/yyyy"); + private static final String TOPIC = "whylogs-events"; + //private static final String TOPIC = "transactions"; + + private static final Properties props = new Properties(); + private static String configFile; + public static void main(String[] args) throws Exception { + if (args.length < 1) { + // Backwards compatibility, assume localhost + props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092"); + props.put(AbstractKafkaSchemaSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, "http://localhost:8081"); + } else { + // Load properties from a local configuration file + // Create the configuration file (e.g. at '$HOME/.confluent/java.config') with configuration parameters + // to connect to your Kafka cluster, which can be on your local host, Confluent Cloud, or any other cluster. + // Documentation at https://docs.confluent.io/platform/current/tutorials/examples/clients/docs/java.html + configFile = args[0]; + if (!Files.exists(Paths.get(configFile))) { + throw new IOException(configFile + " not found."); + } else { + try (InputStream inputStream = new FileInputStream(configFile)) { + props.load(inputStream); + } + } + } + + props.put(ConsumerConfig.GROUP_ID_CONFIG, "ctest-payments"); + props.put(ConsumerConfig.ENABLE_AUTO_COMMIT_CONFIG, "false"); + props.put(ConsumerConfig.AUTO_COMMIT_INTERVAL_MS_CONFIG, "1000"); + props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest"); + props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class); + props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, KafkaAvroDeserializer.class); + props.put(KafkaAvroDeserializerConfig.SPECIFIC_AVRO_READER_CONFIG, true); + final String sessionId = UUID.randomUUID().toString(); final Instant now = Instant.now(); // map for storing the result final Map result = new HashMap<>(); - System.out.println("opening " + INPUT_FILE_NAME); - - try (final InputStreamReader is = new InputStreamReader(ConsumerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { - final CSVParser parser = new CSVParser(is, CSV_FORMAT); - - // iterate through records - for (final CSVRecord record : parser) { - // extract date time - final Instant dataTime = parseAndTruncateToYear(record.get(DATE_COLUMN)); - - // create new dataset profile - final DatasetProfile profile = result.computeIfAbsent(dataTime, - t -> new DatasetProfile(sessionId, now, t, Collections.emptyMap(), Collections.emptyMap())); - - // track multiple features - profile.track(record.toMap()); + + try (final KafkaConsumer consumer = new KafkaConsumer<>(props)) { + consumer.subscribe(Collections.singletonList(TOPIC)); + + while (true) { + final ConsumerRecords records = consumer.poll(Duration.ofMillis(1000)); + System.out.format("Read %d records\n", records.count()); + for (final ConsumerRecord record : records) { + final String key = record.key(); + final LendingClubRow value = record.value(); + System.out.printf("key = %s, value = %s%n", key, value); + } + if (records.count() == 0) + break; } + } +// try (final InputStreamReader is = new InputStreamReader(ConsumerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { +// final CSVParser parser = new CSVParser(is, CSV_FORMAT); +// +// // iterate through records +// for (final CSVRecord record : parser) { +// // extract date time +// final Instant dataTime = parseAndTruncateToYear(record.get(DATE_COLUMN)); +// +// // create new dataset profile +// final DatasetProfile profile = result.computeIfAbsent(dataTime, +// t -> new DatasetProfile(sessionId, now, t, Collections.emptyMap(), Collections.emptyMap())); +// +// // track multiple features +// profile.track(record.toMap()); +// } +// } + System.out.println("Number of profiles: " + result.size()); // write to a folder called "output" diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java index 7d8e240..b9db07b 100644 --- a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java @@ -71,25 +71,20 @@ public static void main(String[] args) throws Exception { try (final InputStreamReader is = new InputStreamReader(ProducerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { final CSVParser parser = new CSVParser(is, CSV_FORMAT); + final LendingClubRow value = new LendingClubRow(); + final Schema schema = value.getSchema(); + final CsvToAvroGenericWriter csv2avro = new CsvToAvroGenericWriter(schema); - // m = parser.getHeaderMap(); - - // iterate through records + // iterate through records for (final CSVRecord record : parser) { final String orderId = "id" + Long.toString(1); - final LendingClubRow value = new LendingClubRow(); - final Schema schema = value.getSchema(); - - CsvToAvroGenericWriter csv2avro = new CsvToAvroGenericWriter(schema); GenericRecord avroRecord = csv2avro.populate(record.iterator()); final ProducerRecord precord = new ProducerRecord<>(TOPIC, "", avroRecord); - System.out.println("sending event "); producer.send(precord); - - // Thread.sleep(1000L); + System.out.println("Sent event..."); } } @@ -97,23 +92,6 @@ public static void main(String[] args) throws Exception { e.printStackTrace(); } - System.out.println("Number of profiles: " + result.size()); - - // write to a folder called "output" - final Path output = Paths.get("output"); - Files.createDirectories(output); - - for (Map.Entry entry : result.entrySet()) { - final DatasetProfile profile = entry.getValue(); - // associate the year with filename - final String fileName = String.format("profile_%s.bin", entry.getKey().atZone(ZoneOffset.UTC).getYear()); - - // write out the output - try (final OutputStream os = - Files.newOutputStream(output.resolve(fileName), StandardOpenOption.WRITE, StandardOpenOption.CREATE)) { - profile.toProtobuf().build().writeDelimitedTo(os); - } - } } /** From a367f6e2ba301e38493528815e74aabeec37e9cd Mon Sep 17 00:00:00 2001 From: chris warth Date: Wed, 24 Feb 2021 09:51:55 -0800 Subject: [PATCH 6/7] make whylogs profile from consumed events --- java/kafka-avro/README.md | 12 +++ java/kafka-avro/build.gradle.kts | 21 ++++-- .../com/whylogs/examples/ConsumerDemo.java | 74 ++++++------------- 3 files changed, 48 insertions(+), 59 deletions(-) diff --git a/java/kafka-avro/README.md b/java/kafka-avro/README.md index 1d7224c..6ef192f 100644 --- a/java/kafka-avro/README.md +++ b/java/kafka-avro/README.md @@ -19,5 +19,17 @@ gradle wrapper --gradle-version 6.3 I upgraded from 6.1 to 6.3. IntelliJ warns me that Gradle 6.3 is incompatible with amazon-corretto-15.jdk but I have not seen ill-effects yet. +## start kafka + +``` +% docker-compose up -d +Starting kafka-tools ... done +Starting zookeeper ... done +Starting broker ... done +Starting schema-registry ... done +Starting control-center ... done +``` + +Visit http://127.0.0.1:9021 to see the kafka health dashboard. From the dashboard you can see assess the health f the kefka cluster and see any active topics. diff --git a/java/kafka-avro/build.gradle.kts b/java/kafka-avro/build.gradle.kts index 433b863..e32a0ba 100644 --- a/java/kafka-avro/build.gradle.kts +++ b/java/kafka-avro/build.gradle.kts @@ -25,11 +25,7 @@ dependencies { implementation("joda-time:joda-time:2.10.10") } -// /Volumes/Workspace/whylogs-examples/java/kafka-avro/build/generated-main-avro-java/com/whylabs/value_lending_club.java -//sourceSets.main { -// java.srcDirs("build/generated-main-avro-java/**") -//} - +// configuration of avro class generation plugin avro { isCreateSetters.set(false) isCreateOptionalGetters.set(false) @@ -40,4 +36,17 @@ avro { stringType.set("String") templateDirectory.set(null as String?) isEnableDecimalLogicalType.set(true) -} \ No newline at end of file +} + +task("consumer") { + dependsOn("build") + // description("Run the whylogs consumer class with ExecTask") + commandLine( "java", "-classpath", sourceSets["main"].runtimeClasspath.getAsPath(), "com.whylogs.examples.ConsumerDemo") +} + +task("producer") { + dependsOn("build") + // description("Run the whylogs producer class with ExecTask") + commandLine( "java", "-classpath", sourceSets["main"].runtimeClasspath.getAsPath(), "com.whylogs.examples.ProducerDemo") +} + diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java index 3d22488..99b8d26 100644 --- a/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ConsumerDemo.java @@ -19,13 +19,12 @@ import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardOpenOption; -import java.time.Duration; -import java.time.Instant; -import java.time.LocalDate; -import java.time.ZoneOffset; +import java.time.*; import java.time.format.DateTimeFormatter; import java.util.*; +import static java.time.Instant.now; + /** * An example of processing a CSV dataset. * @@ -79,76 +78,45 @@ public static void main(String[] args) throws Exception { props.put(KafkaAvroDeserializerConfig.SPECIFIC_AVRO_READER_CONFIG, true); final String sessionId = UUID.randomUUID().toString(); - final Instant now = Instant.now(); - - // map for storing the result - final Map result = new HashMap<>(); + final Instant now = now(); + final DatasetProfile profile = new DatasetProfile(sessionId, now, null, Collections.emptyMap(), Collections.emptyMap()); try (final KafkaConsumer consumer = new KafkaConsumer<>(props)) { consumer.subscribe(Collections.singletonList(TOPIC)); - + int count = 0; while (true) { final ConsumerRecords records = consumer.poll(Duration.ofMillis(1000)); System.out.format("Read %d records\n", records.count()); + count += records.count(); for (final ConsumerRecord record : records) { final String key = record.key(); final LendingClubRow value = record.value(); - System.out.printf("key = %s, value = %s%n", key, value); + Map map = new HashMap<>(); + value.getClassSchema().getFields().forEach(field -> + map.put(field.name(), value.get(field.name()))); + + // track multiple features + profile.track(map); } if (records.count() == 0) break; } - + System.out.format("Received %d events\n", count); } -// try (final InputStreamReader is = new InputStreamReader(ConsumerDemo.class.getResourceAsStream(INPUT_FILE_NAME))) { -// final CSVParser parser = new CSVParser(is, CSV_FORMAT); -// -// // iterate through records -// for (final CSVRecord record : parser) { -// // extract date time -// final Instant dataTime = parseAndTruncateToYear(record.get(DATE_COLUMN)); -// -// // create new dataset profile -// final DatasetProfile profile = result.computeIfAbsent(dataTime, -// t -> new DatasetProfile(sessionId, now, t, Collections.emptyMap(), Collections.emptyMap())); -// -// // track multiple features -// profile.track(record.toMap()); -// } -// } - - System.out.println("Number of profiles: " + result.size()); - // write to a folder called "output" final Path output = Paths.get("output"); Files.createDirectories(output); - for (Map.Entry entry : result.entrySet()) { - final DatasetProfile profile = entry.getValue(); - // associate the year with filename - final String fileName = String.format("profile_%s.bin", entry.getKey().atZone(ZoneOffset.UTC).getYear()); + // associate the year with filename + final String fileName = String.format("profile_%s.bin", Instant.now().atZone(ZoneOffset.UTC).getYear()); - // write out the output - try (final OutputStream os = - Files.newOutputStream(output.resolve(fileName), StandardOpenOption.WRITE, StandardOpenOption.CREATE)) { - profile.toProtobuf().build().writeDelimitedTo(os); - } + // write out the output + System.out.format("Writing profile to %s\n", fileName); + try (final OutputStream os = + Files.newOutputStream(output.resolve(fileName), StandardOpenOption.WRITE, StandardOpenOption.CREATE)) { + profile.toProtobuf().build().writeDelimitedTo(os); } - } - /** - * Parse a text to an Instant object. This is used to extract data from the CSV and map - * them into DatasetProfile's dataset_timestamp - * - * @param text input text - * @return time in UTC as {@link Instant} - */ - private static Instant parseAndTruncateToYear(String text) { - return LocalDate.parse(text, DATE_TIME_FORMAT) - .atStartOfDay() - .withDayOfMonth(1) - .withMonth(1) - .atZone(ZoneOffset.UTC).toInstant(); } } From 6eb9c0ac6eaf049385899a09a2faa88f09a4d378 Mon Sep 17 00:00:00 2001 From: chris warth Date: Wed, 24 Feb 2021 14:53:22 -0800 Subject: [PATCH 7/7] eliminate some warnings, update readme --- java/kafka-avro/README.md | 54 +++++++++++++++---- java/kafka-avro/build.gradle.kts | 8 +++ .../csv/avro/CsvToAvroGenericWriter.java | 8 +-- .../com/whylogs/examples/ProducerDemo.java | 15 ------ 4 files changed, 56 insertions(+), 29 deletions(-) diff --git a/java/kafka-avro/README.md b/java/kafka-avro/README.md index 6ef192f..8aeb72a 100644 --- a/java/kafka-avro/README.md +++ b/java/kafka-avro/README.md @@ -1,7 +1,24 @@ -## Build +## Environment Setup -These java examples are build using `gradle`. +Clone the whylogs-examples repo from GitHub and work in the java/kafka-avro/ subdirectory + +Use docker-compose to bring up a basic Kafka cluster and control dashboard. +``` +% docker-compose up -d +Creating network "kafka-avro_default" with the default driver +Creating zookeeper ... done +Creating kafka-tools ... done +Creating broker ... done +Creating schema-registry ... done +Creating control-center ... done +``` + +Visit http://127.0.0.1:9021 to see the kafka health dashboard. From the dashboard you can see assess the health f the kefka cluster and see any active topics. + +## Schema Definition + +These java examples are built using `gradle`. If you already have your Java environment set up, you should not need to install anything more to build these examples. ``` @@ -19,17 +36,34 @@ gradle wrapper --gradle-version 6.3 I upgraded from 6.1 to 6.3. IntelliJ warns me that Gradle 6.3 is incompatible with amazon-corretto-15.jdk but I have not seen ill-effects yet. -## start kafka +## Run the demos + +There are two separate demos that carry out the duties of a Kafka Producer and Consumer. +The Producer and Consumer demos can be run sequentially in the same window as the events written are persistent in Kafka. ``` -% docker-compose up -d -Starting kafka-tools ... done -Starting zookeeper ... done -Starting broker ... done -Starting schema-registry ... done -Starting control-center ... done +% gradle producer + +> Task :producer +opening lending_club_1000.csv +Sent event... +Sent event... +Sent event... +Sent event... ``` -Visit http://127.0.0.1:9021 to see the kafka health dashboard. From the dashboard you can see assess the health f the kefka cluster and see any active topics. +``` +% gradle consumer + +> Task :consumer +Read 500 records +Read 444 records +Read 56 records +Read 0 records +Received 1000 events +Writing profile to profile_2021.bin +``` + + diff --git a/java/kafka-avro/build.gradle.kts b/java/kafka-avro/build.gradle.kts index e32a0ba..c5b4c4d 100644 --- a/java/kafka-avro/build.gradle.kts +++ b/java/kafka-avro/build.gradle.kts @@ -44,6 +44,14 @@ task("consumer") { commandLine( "java", "-classpath", sourceSets["main"].runtimeClasspath.getAsPath(), "com.whylogs.examples.ConsumerDemo") } + +tasks.withType().configureEach { + // warn about deprecated code. + options.setDeprecation(true) + // Sets any additional arguments to be passed to the compiler. + options.setCompilerArgs(listOf("-Xlint:unchecked")) +} + task("producer") { dependsOn("build") // description("Run the whylogs producer class with ExecTask") diff --git a/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java b/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java index 7896a0b..ad5886d 100644 --- a/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java +++ b/java/kafka-avro/src/main/java/com/datamelt/csv/avro/CsvToAvroGenericWriter.java @@ -315,13 +315,13 @@ private Object getObject(Schema.Field field, String value) throws Exception { if (fieldType == Schema.Type.STRING) { return value; } else if (fieldType == Schema.Type.INT) { - return new Integer(0); + return 0; } else if (fieldType == Schema.Type.LONG) { - return new Long(0); + return (long) 0; } else if (fieldType == Schema.Type.DOUBLE) { - return new Double(0); + return (double) 0; } else if (fieldType == Schema.Type.FLOAT) { - return new Float(0.0); + return (float) 0; } else if (fieldType == Schema.Type.BOOLEAN) { return Boolean.FALSE; } else { diff --git a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java index b9db07b..cb6ef43 100644 --- a/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java +++ b/java/kafka-avro/src/main/java/com/whylogs/examples/ProducerDemo.java @@ -44,7 +44,6 @@ public class ProducerDemo { .withNullString("") .withDelimiter(','); public static final String INPUT_FILE_NAME = "lending_club_1000.csv"; - public static final DateTimeFormatter DATE_TIME_FORMAT = DateTimeFormatter.ofPattern("MM/dd/yyyy"); private static final String TOPIC = "whylogs-events"; private static final Properties props = new Properties(); @@ -94,18 +93,4 @@ public static void main(String[] args) throws Exception { } - /** - * Parse a text to an Instant object. This is used to extract data from the CSV and map - * them into DatasetProfile's dataset_timestamp - * - * @param text input text - * @return time in UTC as {@link Instant} - */ - private static Instant parseAndTruncateToYear(String text) { - return LocalDate.parse(text, DATE_TIME_FORMAT) - .atStartOfDay() - .withDayOfMonth(1) - .withMonth(1) - .atZone(ZoneOffset.UTC).toInstant(); - } }